diff --git a/.gitignore b/.gitignore index 46b558f19..1325e5cb1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ pyvale-env/ .venv/ .pytest_cache/ +temp/ # Output files *.npy @@ -19,9 +20,11 @@ pyvale-env/ *.blend *.csv *.json +*.bmp pyvale-output/ pyvale-input/ test-output/ +render-fails/ test-input/ # MOOSE / gmsh @@ -32,10 +35,13 @@ test-input/ # Keep these as they are used for examples !src/pyvale/data/*.tiff !src/pyvale/data/*.e +!src/pyvale/data/**/ +!src/pyvale/data/** !reports/images/*.png !reports/images/*.svg !images/*.png !images/*.svg +!images/*.yaml !docs/source/_static/*.png # Keep these as they are gold output for regression tests @@ -50,6 +56,8 @@ test-input/ !tests/dataio/txt_gold/*.npy !tests/blender/2D_gold/*.npy !tests/blender/3D_gold/*.npy +!tests/render/gold_riley/*.npy +!tests/render/gold_blender/*.npy # Image deformation test cases *.pkl @@ -57,6 +65,7 @@ test-input/ imdefcase*_*/ deformed_images/ src/deformed_images/ +src/pyvale/examples/render/out-riley-py # Cython diagnostics src/pyvale/cython/*.html @@ -69,11 +78,14 @@ src/pyvale/cython/*.html # restructured text files for API documentation. pyvale.rst pyvale.*.rst +!docs/source/pyvale.render.uvtools.rst -# files generated by sphinx-gallery extension -docs/source/examples/*/ -# keep the gallery layouts +# Files generated by sphinx-gallery. Keep the hand-written navigation files. +docs/source/examples/** +!docs/source/examples/examples.rst !docs/source/examples/examples_*.rst +docs/source/sg_execution_times.rst +docs/source/sg_execution_times.rst # doxygen folder generated when compiling docs docs/source/doxygen @@ -259,10 +271,17 @@ cpp/Makefile #.idea/ -# files generated by sphinx-gallery extension -docs/source/examples/ - # doxygen folder generated when compiling docs docs/source/doxygen .DS_Store + +# Legacy temporary output from strain tests. +/tests/strain/test/ + +# Example scratch output written relative to the example source directories +# (sphinx-gallery and manual example runs); never commit these. +src/pyvale/examples/**/pyvale-output/ +src/pyvale/examples/**/out-riley-py/ +src/pyvale/examples/**/deformed_images/ +src/pyvale/examples/**/tmp_dic/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f105b3a0b..0db3213b6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -80,7 +80,7 @@ git switch -c branchname ### Developer Guidance -Much of Pyvale is written in Python. See our [Pyvale Developer Guide](https://github.com/Computer-Aided-Validation-Laboratory/pyvale/blob/main/designspec/README.md) for guidance on how to write Python code that best aligns with Pyvale's code values. +Much of Pyvale is written in Python. See our [Pyvale Developer Guide](https://github.com/Computer-Aided-Validation-Laboratory/pyvale/blob/main/dev/README.md) for guidance on how to write Python code that best aligns with Pyvale's code values. ### Docstrings diff --git a/dev/ABBREVIATIONS.md b/dev/ABBREVIATIONS.md new file mode 100644 index 000000000..3b5c1a0a6 --- /dev/null +++ b/dev/ABBREVIATIONS.md @@ -0,0 +1,91 @@ +# Pyvale Common Abbreviations + +A glossary of abbreviations used across the `pyvale` source code, grouped by +usage. Keep new abbreviations consistent with these forms where possible. + +## Loop Iterators + +Double-letter iterators are the numpy-style convention sanctioned in +`dev/README.md`. The letters hint at what is being iterated over: + +- `ii`, `jj`, `kk`, `ll`: generic first, second, third, fourth loop indices; + `kk` is also the key half of key/value pairs (`for kk, vv in ...`) +- `vv`: value half of key/value pairs (`for kk, vv in sens_vars`) +- `mm`: mapper/key half of function-table pairs (`for kk, mm in sens_funcs`) +- `ff`: frame index (`for ff in range(num_frames)`) +- `ee`: element index (`for ee in range(elem_coords.shape[0])`) +- `ss`: sensor or set entry (`for ss in sens_data_dict`); note this collides + with exodus *side sets* terminology, so prefer it only for sensors +- `bb`: element-variable block tuples (`(field, block)` pairs) +- `pp`: process/frame record dictionaries in parallel loading loops +- `dd`, `tt`, `nn`: occasional data/time/node indices in local scopes + +## Sensors & Simulation + +- `sens`: sensor(s); the most common abbreviation in the codebase + (`sens_data`, `SensDesc`, `sens_pos`) +- `sim`: simulation (`SimData`, `sim_case_*`, `SimLoaderByTime`) +- `exp`: experiment or experimental data (`ExpData`, `ExpLoadOpts`, + `expsim`) +- `disp`: displacement, never display (`disp_x`, `field_disp_keys`) +- `coords`: nodal coordinates, shape `(nodes, spatial_dims)` +- `dims`: dimensionality or the simulation-dimension dictionary + (`get_sim_dims`); also `num_spat_dims` +- `temp`: temperature in thermomechanical simulations, but temporary in + `temp_mask`/`temp_dir`; ambiguous, prefer spelling out one of the two in + new code +- `calc`: calculate (`calc_first_surface_metric`) +- `gen`: generator (`AnalyticSimDataGen`, `gen_gold_measurements`) +- `ref`: reference, usually the undeformed reference image/frame/config +- `seed`, `rng`: random-number seed and `np.random.default_rng` generator +- `glob`: exodus *global* variables (`glob_vars`), alongside `node_vars`, + `elem_vars`, and `side_sets` + +## Cameras & Rendering + +- `cam`: camera; `cam0`/`cam1` are stereo camera pairs +- `roi`: region of interest (`roi_cent_world`) +- `px`: pixel (`mm_per_px`); spelled `pixels_` in field names + (`pixels_num`, `pixels_size`, `pixels_count`) +- `leng`: length (`leng_per_px`, field-of-view extents) +- `pos`: position (`pos_world`) +- `rot`: rotation, normally a scipy `Rotation` (`rot_world`) +- `fov`: field of view (`field_of_view`) +- `psf`: point-spread function (`EPSFType`, `GaussianPSF`) +- `trans`: transformation (`trans_mat`, `tensor_trans`); the `mat` fragment + appears only inside `trans_mat` - materials are always spelled out +- `sub_sample` vs `subsample`: historical inconsistency - the 3D `Camera` + uses `sub_sample`, while `Camera2D` and `PxInt2DOpts` use `subsample` + +## DIC & Images + +- `dic`: digital image correlation (`pyvale.dic`, `DIC2D`) +- `img`/`image`: images; field names spell out `image` +- `mask`: validity/specimen mask applied to image pixels + +## Data Structures & Options + +- `opts`: options dataclass instances (`ImageDefOpts`, `VisOpts*`, + `SimLoadOpts`) +- `num`: number-of counter prefix (`num_frames`, `num_spat_dims`) +- `arr`: array +- `err`: sensor error models (`ErrChain`, error calculators); raised + exceptions use `error`/`exception` instead +- `chain`: error-model chain applied to synthetic sensor data (`err_chain`, + `set_error_chain`) +- `vars`: exodus variable groups (`node_vars`, `elem_vars`, `glob_vars`) +- `config`: renderer/backend configuration objects, spelled out unlike + `opts` + +## Files & Libraries + +- `np`: numpy; `plt`: matplotlib.pyplot; `pv`: pyvista; `nc`: netCDF4 +- Format tokens in names: `csv`, `yaml`, `tiff`, `bmp`, `npy`, and exodus + `.e` files + +## Naming Conventions + +- `E` prefix: enumerations (`EMeshType`, `ELightType`, `EElementType`) +- `I` prefix: abstract-base-class interfaces (`ISensor`, `IRenderer3D`, + `IImageWarp2D`) +- `_` leading underscore: private/internal members and modules diff --git a/dev/MESHCONVENTION.md b/dev/MESHCONVENTION.md new file mode 100644 index 000000000..c82ce265c --- /dev/null +++ b/dev/MESHCONVENTION.md @@ -0,0 +1,75 @@ +# Mesh Convention + +Pyvale uses one finite-element mesh convention across DataIO, SensorSim, and +the render APIs. The common implementation is in +`pyvale.dataio.meshconv`. + +## Required representation + +- `coords` has one node per row. Three columns are `[x, y, z]`; planar meshes + use `z = 0`. +- Connectivity has one element per row and contains zero-based node indices. +- Every connectivity index refers to a row in `coords`. +- Element connectivity is row-major. Legacy transposed and one-based tables + are detected and normalised by `enforce_mesh_convention`. + +## Mesh topology + +`SimData.mesh_type` explicitly records the topology as `EMeshType.VOL` or +`EMeshType.SURF`. `SimData.__post_init__` infers it whenever both coordinates +and connectivity are supplied. The Exodus and CSV/array loaders call +`refresh_mesh_type()` after loading their fields, so their returned objects +carry the same value. + +Use `is_volume_mesh(sim_data)` where code needs to distinguish a volume mesh +from a surface mesh. It resolves the ambiguous four- and eight-node tables by +their signed cell volume (TET4 versus QUAD4, and HEX8 versus QUAD8). A +`SimData` containing both surface and volume connectivity tables is rejected: +it cannot have one unambiguous `EMeshType`. + +## Winding and handedness + +For a planar face, list corner nodes counter-clockwise when viewing its +outward/visible side. The right-hand rule then gives the face normal: curl the +fingers from the first edge to the second, and the thumb points outward. + +For a volume element, corner order must give a positive signed volume. Surface +extraction orients each exposed face outward from its parent element. + +`check_mesh_convention(mesh)` reports zero-based indexing, row-major layout, +valid indices, counter-clockwise winding, and right-handed geometry. +`enforce_mesh_convention(mesh)` normalises supported input and should be +idempotent. + +## Element node order + +The first nodes are always the corner nodes. Higher-order edge nodes follow +the perimeter in the same direction as the corners. + +| Element | Corner order | Extra-node order | +| --- | --- | --- | +| TRI3 | `0, 1, 2` | — | +| TRI6 | `0, 1, 2` | edges `01, 12, 20` | +| QUAD4 | `0, 1, 2, 3` | — | +| QUAD8 | `0, 1, 2, 3` | edges `01, 12, 23, 30` | +| QUAD9 | QUAD8 order | QUAD8 edges, then centre | +| TET4 | `0, 1, 2, 3` | — | +| TET10 | TET4 corners | canonical tetrahedral edge nodes | +| HEX8 | `0, 1, 2, 3, 4, 5, 6, 7` | — | +| HEX20 | HEX8 corners | canonical hexahedral edge nodes | +| HEX27 | HEX20 order | face centres, then volume centre | + +TET14 is packaged as a cube fixture but is not yet supported by the common +convention checker or surface extractor. + +## Verification + +The cube fixtures provide regression coverage for TET4, TET10, HEX8, HEX20, +and HEX27: + +```bash +python -m pytest tests/dataio/meshtools_test.py -k cube +``` + +The suite verifies raw legacy layout, successful enforcement, idempotence, and +the local outward orientation of extracted closed surfaces. diff --git a/designspec/README.md b/dev/README.md similarity index 79% rename from designspec/README.md rename to dev/README.md index 8e9d664b4..ef50ee264 100644 --- a/designspec/README.md +++ b/dev/README.md @@ -23,7 +23,14 @@ We have non-software engineers and scientists working on the project so these gu - Prioritise an easy to remember and intuitive user API and performant code under the hood. - Work in your own 'feature' branch, merge into 'dev' - don't push to main (it should be protected and yell at you)! - Follow the PEP8 style guide: https://peps.python.org/pep-0008/ +- Format your code so it is readable, use an 80 character line length and put blank lines around logical groups of statements - Use descriptive variable names, no single letter variables (double letters for iterators in numpy style are ok) single letter variables for indices / iterators are ok. +- Abbreviations are ok in variable names as long as they are not ambiguous for examples `calc` for `calculate`. +- Functions should have a verb as the first word in the function name that indicates what the function actually does. +- Avoid using magic numbers in code. If you need to use magic numbers, make them a named module constant with a descriptive name and add a comment when the name is not self-explanatory. +- Keep comprehensions to one line with one `for` loop and at most one function call. Split comprehensions containing filters, nested loops, nested comprehensions or multiple function calls into explicit statements and loops. +- Keep `if` conditions to at most two lines and avoid nested function calls in conditions. Calculate complex predicates in clearly named intermediate statements before the `if`. +- Don't nest `def` statements. - Use major function first variable names: e.g. `FieldScalar`, `FieldVector` and `FieldTensor` instead of `ScalarField`, `VectorField` and `TensorField`. - Type hint everything: e.g. `def add_ints(a: int, b: int) -> int:`. This makes your code easier to understand and you have the possibility of compiling things if you need. - `pylint` is a slow linter but will help you if you have type hinted everything. `Ruff` is another good option, it is faster but doesn't pick up type hints as well. @@ -33,7 +40,7 @@ We have non-software engineers and scientists working on the project so these gu - `numpy` and `scipy` are your friend - avoid for/while loops. Push everything you can down into C. Unless you are writing Cython then loops are great! - Minimise dependencies as much as possible. - Avoid decorators unless absolutely necessary (`@dataclass`, `@abstractmethod` and `@staticmethod` are examples that are ok) -- Don't use `@property` to hide complicated variable initialisation behind the `.` notation - in fact just avoid `@property` altogether and just use a `@dataclass` for data only classes. +- Don't use `@property`. It is normally used to hide complicated variable initialisation behind the `.` notation - just avoid `@property` altogether and just use a `@dataclass` for data only classes. - No inheritance unless it is a purely abstract interface (python abstract base class `ABC`) - use composition / dependency injection. See this [video](https://www.youtube.com/watch?v=hxGOiiR9ZKg&t=3s) and thie [video](https://www.youtube.com/watch?v=J1f5b4vcxCQ&t=2s). - Only use one layer of abstraction - don't inherit from multiple interfaces and don't use mix-ins. - For interfaces (abstract base classes) prefix the name of the class with a capital `I` e.g. `ISensor` diff --git a/dev/TESTING.md b/dev/TESTING.md new file mode 100644 index 000000000..d0492e824 --- /dev/null +++ b/dev/TESTING.md @@ -0,0 +1,125 @@ +# Testing Guide + +Run the full test suite from the repository root with: + +```bash +python -m pytest +``` + +If the project environment is managed with uv, use the equivalent command: + +```bash +uv run --no-sync -- python -m pytest +``` + +Run one test module or directory by passing its path. The main test areas are +listed below. + +| Area | Command | +| --- | --- | +| Dataset helpers | `python -m pytest tests/data` | +| Data I/O | `python -m pytest tests/dataio` | +| DIC | `python -m pytest tests/dic` | +| MOOSE and Gmsh integration | `python -m pytest tests/mooseherder` | +| Rendering | `python -m pytest tests/render` | +| Sensor simulation | `python -m pytest tests/sensorsim` | +| Strain | `python -m pytest tests/strain` | +| Documented examples | `python -m pytest tests/examples` | + +Use ordinary pytest selectors for a smaller target, for example +`python -m pytest tests/render/test_pxint2d.py -k newton`. + +## Documented examples + +Example smoke tests execute examples in a temporary working directory. Their +normal `pyvale-output` files are therefore checked without modifying the +source tree. Run every supported example with: + +```bash +python -m pytest tests/examples +``` + +Use `--example-module` to run examples in one example directory. The value is +the directory below `src/pyvale/examples`, for example: + +```bash +python -m pytest tests/examples --example-module=render3d +python -m pytest tests/examples --example-module=render2d +python -m pytest tests/examples --example-module=dic +python -m pytest tests/examples --example-module=basicsensorsim +python -m pytest tests/examples --example-module=extsensorsim +``` + +Run render implementation tests and its examples together with: + +```bash +python -m pytest tests/render tests/examples --example-module=render3d +``` + +The `example_slow` marker labels longer tests; select it explicitly with +`python -m pytest tests/examples -m example_slow`. It is not excluded from a +normal example run. + +To add an example test, place the runnable example below +`src/pyvale/examples//`, then add it to the appropriate parameter list +in `tests/examples/test__examples.py`. Use the `run_example` fixture +from `tests/examples/conftest.py`, declare expected output paths, and provide +any input files through `support_files`. For a non-parameterized example test, +add `@pytest.mark.example_module("")` so the module filter includes it. + +## Gold regression data + +Generate gold data only after deliberately reviewing a known-good result. Gold +is a committed regression baseline, not test output to refresh after a failure. +Run generators from the repository root and inspect the resulting diff before +committing it. + +Generators belong in `scripts/`, even when they support a single test module. +Generated files belong beside the tests that consume them: + +| Area | Generator | Gold location | +| --- | --- | --- | +| Render conformance | `python scripts/gengold_render_conformance.py --write` | `tests/render/gold_/` | +| PixInt2D render | `python scripts/gengold_pxint2d.py --write` | `tests/render/gold_pxint2d/` | +| Riley render | `python scripts/gengold_riley_rabbits.py --write` | `tests/render/gold_riley/` | +| Blender triangle | `python scripts/gengold_blender_triangle.py` | `tests/render/gold_blender/` | +| Legacy Blender | `python scripts/gengold_blender.py` | `tests/blender/2D_gold/`, `tests/blender/3D_gold/` | +| Simulation text I/O | `python scripts/gengold_sim_txt.py` | `tests/dataio/txt_gold/` | +| Sensor simulation | `python scripts/gengold_sensorsim_scalar.py` | `tests/sensorsim/gold/` | + +The vector, tensor, and combined sensor-simulation generators are +`gengold_sensorsim_vector.py`, `gengold_sensorsim_tensor.py`, and +`gengold_sensorsim_all.py`. They follow the same convention. MOOSE herd output +is committed under `tests/mooseherder/output_gold/`; no dedicated generator is +currently provided, so update it only from an independently reviewed run. + +## Module-specific conditions and skips + +### Blender + +Blender rendering integration tests and legacy Blender regression tests skip +unless Blender is available. Availability requires Python 3.13 and the optional +`pyvale[blender]` dependency. Blender rendering examples use the same +condition. The availability boundary tests still run without Blender and +verify the diagnostic behaviour. + +The Blender adapter is verified for Tri3 input. It warns when given another +render surface topology, then tessellates that surface to Tri3 for the legacy +Blender scene path. + +### MOOSE and Gmsh + +Tests that execute MOOSE skip unless the configured MOOSE checkout and Proteus +application exist. The current test helper expects `~/moose`, `~/proteus`, and +the `proteus-opt` executable. Gmsh-runner tests skip when `gmsh` is not on +`PATH`. Tests that require both tools skip if either is unavailable. Availability +tests remain runnable and verify the missing-tool diagnostics. + +### Examples + +The example suite skips Blender-backed examples when Blender is unavailable. +It intentionally does not include DIC examples requiring interaction or +unbundled local files: `ex01_region_of_interest.py`, `ex06_hrdic.py`, +`ex08_calibration.py`, `ex09_stereo.py`, `ex10_stereo_platehole.py`, and +`ex11_dic_chal.py`. The `valid` example module is also excluded while it is +under active development. diff --git a/designspec/dic_engine_spec.md b/dev/designspecs/dic_engine_spec.md similarity index 100% rename from designspec/dic_engine_spec.md rename to dev/designspecs/dic_engine_spec.md diff --git a/designspec/pyvale_design_spec.md b/dev/designspecs/pyvale_design_spec.md similarity index 100% rename from designspec/pyvale_design_spec.md rename to dev/designspecs/pyvale_design_spec.md diff --git a/designspec/rasteriser_spec.md b/dev/designspecs/rasteriser_spec.md similarity index 100% rename from designspec/rasteriser_spec.md rename to dev/designspecs/rasteriser_spec.md diff --git a/designspec/raytracing_spec.md b/dev/designspecs/raytracing_spec.md similarity index 100% rename from designspec/raytracing_spec.md rename to dev/designspecs/raytracing_spec.md diff --git a/designspec/visualisation_ spec.md b/dev/designspecs/visualisation_ spec.md similarity index 100% rename from designspec/visualisation_ spec.md rename to dev/designspecs/visualisation_ spec.md diff --git a/docs/apidoc.sh b/docs/apidoc.sh index aa37b2bd5..d2e42806c 100644 --- a/docs/apidoc.sh +++ b/docs/apidoc.sh @@ -13,7 +13,7 @@ error_exit() { } # Python API documentation -sphinx-apidoc -f -o ./source --separate ../src/pyvale/ ../src/pyvale/data/* ../src/pyvale/examples/* || error_exit "sphinx-apidoc failed" +sphinx-apidoc -f -o ./source --separate ../src/pyvale/ ../src/pyvale/examples/* || error_exit "sphinx-apidoc failed" # Remove autogenerated TOC file rm -f source/modules.rst || error_exit "Failed to remove modules.rst" @@ -21,7 +21,7 @@ rm -f source/modules.rst || error_exit "Failed to remove modules.rst" echo "Updating generated RST files..." # Modules to process -modules=("dic" "blender" "mooseherder" "sensorsim" "verif" "dataset" "strain") +modules=("dic" "blender" "mooseherder" "sensorsim" "verif" "data" "strain" "render") for mod in "${modules[@]}"; do rst="source/pyvale.${mod}.rst" @@ -33,7 +33,7 @@ for mod in "${modules[@]}"; do sed -i '/^\.\. toctree::/a \ :caption: Python Source Files' "$rst" || error_exit "Failed adding caption in $rst" # Remove "package" word - sed -i 's/package//g' "$rst" || error_exit "Failed removing 'package' in $rst" + sed -i 's/ package$//' "$rst" || error_exit "Failed removing 'package' in $rst" # Remove 'Module contents' section sed -i '/^Module contents$/,/^ *:undoc-members:/d' "$rst" || error_exit "Failed trimming module contents in $rst" @@ -41,15 +41,17 @@ for mod in "${modules[@]}"; do # Change toctree level from 4 to 1 sed -i 's/4/1/g' "$rst" || error_exit "Failed updating toctree level in $rst" - sed -i "0,/\\b${mod}\.\([a-zA-Z0-9_]\+\)/s//\1.py/" source/pyvale.${mod}.*.rst || error_exit "Failed replacing '${mod}.*' with '*.py' in $rst" - done -# Tweak module titles across all rst files -sed -i 's/^pyvale\.\(.*\) module$/\1/' source/pyvale.*.rst || error_exit "Failed fixing module titles" +# Append '.py' to bare module-name titles on the first line of each page. +# This must not touch '.. automodule::' directives, so it is anchored to the +# title on line one only. +sed -i '1s/^\([a-z][a-z0-9_]*\)$/\1.py/' source/pyvale.*.*.rst || error_exit "Failed fixing module titles" -# Remove unneeded file +# Remove unneeded files: the cython extension module is not importable for +# autodoc and its toctree entry would dangle. rm -f ./source/pyvale.dic.dic2dcpp.rst || error_exit "Failed to remove dic2dcpp.rst" +sed -i '/pyvale\.dic\.dic2dcpp/d' ./source/pyvale.dic.rst || error_exit "Failed removing dic2dcpp toctree entry" echo "PYTHON API DOCUMENTATION GENERATED SUCCESSFULLY!" @@ -61,7 +63,11 @@ echo " GENERATING C++ API DOCUMENTATION..." echo "==========================================" # Run Doxygen (optional, if you still want it) -( cd ./source && doxygen Doxyfile ) || error_exit "doxygen generation failed" +if command -v doxygen >/dev/null 2>&1; then + ( cd ./source && doxygen Doxyfile ) || error_exit "doxygen generation failed" +else + echo "doxygen not found: skipping C++ XML generation" +fi # Create RST files for each C++ header for mod in "${modules[@]}"; do @@ -79,14 +85,16 @@ for mod in "${modules[@]}"; do echo "Generating $rst_file" - cat > "$rst_file" <, - ..., - ) + roi, + reference="ref.tiff", + deformed="def.tiff", + num_threads=4, + ) Alternatively, those on UNIX operating systems (MacoS, Linux) can set the number of threads using the :code:`OMP_NUM_THREADS` environment variable. diff --git a/docs/source/guide_user/guide_sensorsim.rst b/docs/source/guide_user/guide_sensorsim.rst index 9cb3ca4bf..77e4e8633 100644 --- a/docs/source/guide_user/guide_sensorsim.rst +++ b/docs/source/guide_user/guide_sensorsim.rst @@ -64,7 +64,7 @@ While we have built and tested pyvale primarily with thermal and solid mechanics Bring your own simulation data ------------------------------ -To use pyvale with your own input physics simulation you will first need to parse the simulation data into a ``SimData`` object. To help users input arbitrary simulation data we have developed tools that allow users to directly load the data as either plain text delimited files (e.g. *.csv) or numpy arrays (i.e. *.npy). An example of loading arbitrary simulation data can be found in the :ref:`extended examples `. +To use pyvale with your own input physics simulation you will first need to parse the simulation data into a ``SimData`` object. To help users input arbitrary simulation data we have developed tools that allow users to directly load the data as either plain text delimited files (e.g. ``*.csv``) or numpy arrays (i.e. ``*.npy``). An example of loading arbitrary simulation data can be found in the :ref:`extended examples `. For mesh-based simulations it is essential that the element connectivity tables conform to the node winding (i.e. node ordering) specified for exodus output files which can be found `here `_. diff --git a/docs/source/guide_user/guide_strain.rst b/docs/source/guide_user/guide_strain.rst index e69de29bb..32b4f0e94 100644 --- a/docs/source/guide_user/guide_strain.rst +++ b/docs/source/guide_user/guide_strain.rst @@ -0,0 +1,5 @@ +Strain Calculation +================== + +.. note:: + The strain calculation user guide is currently under development. diff --git a/docs/source/guide_user/guide_user.rst b/docs/source/guide_user/guide_user.rst index b5f3f8acc..88ab9cfe3 100644 --- a/docs/source/guide_user/guide_user.rst +++ b/docs/source/guide_user/guide_user.rst @@ -12,6 +12,7 @@ Module Specific Guides guide_sensorsim.rst guide_dic.rst guide_blender.rst + guide_strain.rst What is pyvale? diff --git a/docs/source/index.rst b/docs/source/index.rst index a49ad591a..868d723f3 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -93,6 +93,7 @@ Getting Started examples/examples guide_user/guide_user guide_theory/guide_theory + guide_dev/dev_guide api_py api_cpp cite diff --git a/docs/source/install/install.rst b/docs/source/install/install.rst index 3a4d71684..2df289fd4 100644 --- a/docs/source/install/install.rst +++ b/docs/source/install/install.rst @@ -3,7 +3,9 @@ Installation =================== -If you have **Python 3.13** installed you can setup ``pyvale`` using your preferred package manager: +If you have **Python 3.11 or newer** installed, you can set up ``pyvale`` +using your preferred package manager. Blender is optional and currently +requires Python 3.13. .. tab-set:: @@ -11,8 +13,8 @@ If you have **Python 3.13** installed you can setup ``pyvale`` using your prefe .. code-block:: bash - # Create a virtual environment with Python 3.13 - python3.13 -m venv venv-pyvale + # Create a virtual environment with a supported Python version + python -m venv venv-pyvale # Activate the environment source venv-pyvale/bin/activate # On Windows: .\venv-pyvale\Scripts\Activate.ps1 @@ -24,8 +26,8 @@ If you have **Python 3.13** installed you can setup ``pyvale`` using your prefe .. code-block:: bash - # Initialize a new project with Python 3.13 - uv init --python 3.13 try-pyvale + # Initialize a new project with a supported Python version + uv init try-pyvale cd try-pyvale # Add pyvale as a dependency @@ -37,7 +39,7 @@ If you have **Python 3.13** installed you can setup ``pyvale`` using your prefe .. code-block:: bash # Create a conda environment with Python 3.13 - conda create -n pyvale-env python=3.13 + conda create -n pyvale-env python=3.11 # Activate the environment conda activate pyvale-env @@ -48,6 +50,16 @@ If you have **Python 3.13** installed you can setup ``pyvale`` using your prefe **We have detailed install guides for non-specialist python users for the common operating systems below. This includes walkthroughs on how to install the correct python version for your operating system and how to setup a virtual environment.** +Blender backend +---------------- + +The default rendering backend is Riley. Blender is an optional backend and is +available only with Python 3.13: + +.. code-block:: bash + + pip install "pyvale[blender]" + .. toctree:: :maxdepth: 1 diff --git a/docs/source/install/install_linux.rst b/docs/source/install/install_linux.rst index 981055864..0666206f9 100644 --- a/docs/source/install/install_linux.rst +++ b/docs/source/install/install_linux.rst @@ -3,28 +3,31 @@ Ubuntu Linux ############ -Configuring Python3.13 ------------------------- +Configuring Python +------------------ -To be compatible with ``bpy`` (the Blender python interface), ``pyvale`` uses python 3.13. To install python 3.13 without corrupting your operating systems python installation first add the deadsnakes repository to apt: +``pyvale`` supports Python 3.11 and newer. The optional Blender backend +requires Python 3.13; install it with ``pip install "pyvale[blender]"``. +To install a specific Python version without changing your operating system +Python, first add the deadsnakes repository to apt: .. code-block:: bash sudo add-apt-repository ppa:deadsnakes/ppa && sudo apt update -Install python 3.13: +For example, install Python 3.13 for Blender: .. code-block:: bash sudo apt install python3.13 python3.13-dev python3.13-venv -Check your python 3.13 install is working using the following command which should open an interactive python interpreter: +Check the selected Python installation using the following command: .. code-block:: bash python3.13 -If everything has worked you should see an interactive python console with Python 3.13.xx in the header. You can now exit the interpreter using ``quit()``. +If everything has worked you should see an interactive Python console. You can now exit it using ``quit()``. Interactive ROI Dependencies ---------------------------- @@ -43,7 +46,7 @@ We recommend installing ``pyvale`` in a virtual environment using ``venv`` or `` .. code-block:: bash - python3.13 -m venv pyvale-env + python -m venv pyvale-env Now activate the virtual environment: @@ -61,7 +64,8 @@ Installation from PyPI pip install pyvale -You should now be able to start a python 3.13 interpreter in your terminal using (again make sure your pyvale-env is active): +You should now be able to start a Python interpreter in your terminal using +(again make sure your pyvale-env is active): .. code-block:: bash @@ -110,5 +114,3 @@ This will create an editable/developer installation of ``pyvale``. Now check tha If there are no errors then everything has worked and you can now move on to looking at some of our examples to get you started in the basics section. - - diff --git a/docs/source/install/install_mac.rst b/docs/source/install/install_mac.rst index 28d4a8415..9e18421c3 100644 --- a/docs/source/install/install_mac.rst +++ b/docs/source/install/install_mac.rst @@ -3,10 +3,11 @@ MacOS ###### -Configuring Python 3.13 -*********************** +Configuring Python +****************** -To be compatible with ``bpy`` (the Blender python interface), ``pyvale`` requires python 3.13. +``pyvale`` supports Python 3.11 and newer. The optional Blender backend +requires Python 3.13 and ``pip install "pyvale[blender]"``. Homebrew is a free and open-source commonly used package manager for macOS that often simplifies the process of installing, updating, and managing software. Install via Homebrew @@ -41,11 +42,12 @@ Virtual Environment ******************** We recommend installing ``pyvale`` in a virtual environment using ``venv`` or ``pyvale`` can be installed into an existing environment of your choice. -To create a specific virtual environment for ``pyvale`` first open a terminal Then navigate to the folder you want to install the environment in (using ``cd``) and use: +To create a virtual environment for ``pyvale`` first open a terminal, navigate +to the folder in which to install it (using ``cd``), and use: .. code-block:: batch - python3.13 -m venv pyvale-env + python -m venv pyvale-env This will create a virtual environment called 'pyvale-env' in a folder of the same name. To activate the virtual environment from your current location type this into your terminal: @@ -72,7 +74,8 @@ Installation from PyPI pip install pyvale -You should now be able to start a python 3.13 interpreter in your terminal using (again make sure your pyvale-env is active): +You should now be able to start a Python interpreter in your terminal using +(again make sure your pyvale-env is active): .. code-block:: bash @@ -155,5 +158,3 @@ Now check that you can import pyvale in the interpreter: If there are no errors then everything has worked and you can now move on to looking at some of our examples to get you started in the basics section. - - diff --git a/docs/source/install/install_windows.rst b/docs/source/install/install_windows.rst index 7705796c7..584fce4cc 100644 --- a/docs/source/install/install_windows.rst +++ b/docs/source/install/install_windows.rst @@ -6,20 +6,26 @@ Windows 11 Installing python ----------------- -To be compatible with ``bpy`` (the Blender python interface), ``pyvale`` uses python 3.13. To install python 3.13 for windows grab the correct installer for your system (most likely windows 64 bit) from the python website here: https://www.python.org/downloads/release/python-3130/. +``pyvale`` supports Python 3.11 and newer. The optional Blender backend +requires Python 3.13 and ``pip install "pyvale[blender]"``. Install a supported +Python release for your system from https://www.python.org/downloads/. Launch the installer, select 'custom installation' and make sure the 'py launcher' option is checked. Then click next and finish the installation. If you are prompted to disable the maximum path length then click this to confirm you want to disable the path length. Starting Python with the py Launcher ------------------------------------- -To confirm your installation has worked you should open a windows command line using 'windows-key+r' and then type 'cmd'. From here enter the following to start an interactive python 3.11 interpreter: +To confirm your installation has worked, open a Windows command line using +'windows-key+r' and then type 'cmd'. From here enter the following to start an +interactive Python interpreter: .. code-block:: batch - py -3.13 + py -3.11 -If you see prompt with Python 3.13 in the header and the starting cursor has '>>>' then everything has worked. If you install other python versions on windows you can start them using the py launcher using this syntax ``py -#.#``. Where the '\#' is the version you want to start. For pyvale we will stick with python 3.13. +If you see a Python prompt with ``>>>`` then everything has worked. If you +install other Python versions on Windows, start them with ``py -#.#``. Use +Python 3.13 when you need the optional Blender backend. Troubleshooting the py launcher ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -41,7 +47,7 @@ We recommend installing ``pyvale`` in a virtual environment using ``venv`` or `` .. code-block:: batch - py -3.13 -m venv pyvale-env + py -3.11 -m venv pyvale-env This will create a virtual environment called 'pyvale-env' in a folder of the same name. To activate the virtual environment from your current location type this into the command prompt: @@ -60,7 +66,8 @@ Installation from PyPI pip install pyvale -You should now be able to start a python 3.11 interpreter in your terminal using (again make sure your pyvale-env is active): +You should now be able to start a Python interpreter in your terminal using +(again make sure your pyvale-env is active): .. code-block:: bash diff --git a/docs/source/pyvale.render.uvtools.rst b/docs/source/pyvale.render.uvtools.rst new file mode 100644 index 000000000..31931a425 --- /dev/null +++ b/docs/source/pyvale.render.uvtools.rst @@ -0,0 +1,7 @@ +pyvale.render.uvtools module +============================ + +.. automodule:: pyvale.render.uvtools + :members: + :show-inheritance: + :undoc-members: diff --git a/docs/source/sg_execution_times.rst b/docs/source/sg_execution_times.rst index 59bf07c4c..352f333aa 100644 --- a/docs/source/sg_execution_times.rst +++ b/docs/source/sg_execution_times.rst @@ -6,7 +6,7 @@ Computation times ================= -**00:00.000** total execution time for 44 files **from all galleries**: +**00:00.000** total execution time for 64 files **from all galleries**: .. container:: @@ -32,76 +32,100 @@ Computation times * - Example - Time - Mem (MB) - * - :ref:`sphx_glr_examples_basics_ex1a_basicscalars_therm2d.py` (``../../src/pyvale/examples/basics/ex1a_basicscalars_therm2d.py``) + * - :ref:`sphx_glr_examples_basicsensorsim_ex0_quickstart.py` (``../../src/pyvale/examples/basicsensorsim/ex0_quickstart.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1b_sensormodel_therm2d.py` (``../../src/pyvale/examples/basics/ex1b_sensormodel_therm2d.py``) + * - :ref:`sphx_glr_examples_basicsensorsim_ex1_scalar_sensors.py` (``../../src/pyvale/examples/basicsensorsim/ex1_scalar_sensors.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1c_customsens_therm3d.py` (``../../src/pyvale/examples/basics/ex1c_customsens_therm3d.py``) + * - :ref:`sphx_glr_examples_basicsensorsim_ex2_vector_tensor_sensors.py` (``../../src/pyvale/examples/basicsensorsim/ex2_vector_tensor_sensors.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1d_basicerrors_therm3d.py` (``../../src/pyvale/examples/basics/ex1d_basicerrors_therm3d.py``) + * - :ref:`sphx_glr_examples_basicsensorsim_ex3_experiment_simulator.py` (``../../src/pyvale/examples/basicsensorsim/ex3_experiment_simulator.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1e_fielderrs_therm3d.py` (``../../src/pyvale/examples/basics/ex1e_fielderrs_therm3d.py``) + * - :ref:`sphx_glr_examples_dic_ex01_region_of_interest.py` (``../../src/pyvale/examples/dic/ex01_region_of_interest.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1f_caliberrs_therm2d.py` (``../../src/pyvale/examples/basics/ex1f_caliberrs_therm2d.py``) + * - :ref:`sphx_glr_examples_dic_ex02_plate_with_hole.py` (``../../src/pyvale/examples/dic/ex02_plate_with_hole.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex1g_spatavg_therm2d.py` (``../../src/pyvale/examples/basics/ex1g_spatavg_therm2d.py``) + * - :ref:`sphx_glr_examples_dic_ex03_plate_with_hole_strain.py` (``../../src/pyvale/examples/dic/ex03_plate_with_hole_strain.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex2a_basicvectors_disp2d.py` (``../../src/pyvale/examples/basics/ex2a_basicvectors_disp2d.py``) + * - :ref:`sphx_glr_examples_dic_ex04_dic_blender.py` (``../../src/pyvale/examples/dic/ex04_dic_blender.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex2b_vectorsens_disp2d.py` (``../../src/pyvale/examples/basics/ex2b_vectorsens_disp2d.py``) + * - :ref:`sphx_glr_examples_dic_ex05_dic_challenge.py` (``../../src/pyvale/examples/dic/ex05_dic_challenge.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex2c_sensangle_disp2d.py` (``../../src/pyvale/examples/basics/ex2c_sensangle_disp2d.py``) + * - :ref:`sphx_glr_examples_dic_ex06_hrdic.py` (``../../src/pyvale/examples/dic/ex06_hrdic.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex2d_chainfielderrs_disp2d.py` (``../../src/pyvale/examples/basics/ex2d_chainfielderrs_disp2d.py``) + * - :ref:`sphx_glr_examples_dic_ex07_incremental.py` (``../../src/pyvale/examples/dic/ex07_incremental.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex2e_vectorfields3d_disp3d.py` (``../../src/pyvale/examples/basics/ex2e_vectorfields3d_disp3d.py``) + * - :ref:`sphx_glr_examples_dic_ex08_calibration.py` (``../../src/pyvale/examples/dic/ex08_calibration.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex3a_basictensors_strain2d.py` (``../../src/pyvale/examples/basics/ex3a_basictensors_strain2d.py``) + * - :ref:`sphx_glr_examples_dic_ex09_stereo.py` (``../../src/pyvale/examples/dic/ex09_stereo.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex3b_tensorsens2d_strain2d.py` (``../../src/pyvale/examples/basics/ex3b_tensorsens2d_strain2d.py``) + * - :ref:`sphx_glr_examples_dic_ex10_stereo_platehole.py` (``../../src/pyvale/examples/dic/ex10_stereo_platehole.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex3c_tensorsens3d_strain3d.py` (``../../src/pyvale/examples/basics/ex3c_tensorsens3d_strain3d.py``) + * - :ref:`sphx_glr_examples_dic_ex11_dic_chal.py` (``../../src/pyvale/examples/dic/ex11_dic_chal.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex4a_expsim2d_thermmech2d.py` (``../../src/pyvale/examples/basics/ex4a_expsim2d_thermmech2d.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex1_byosimdata.py` (``../../src/pyvale/examples/extsensorsim/ex1_byosimdata.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex4b_expsim3d_thermmech3d.py` (``../../src/pyvale/examples/basics/ex4b_expsim3d_thermmech3d.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex2_meshfreesensors.py` (``../../src/pyvale/examples/extsensorsim/ex2_meshfreesensors.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_basics_ex5_nomesh.py` (``../../src/pyvale/examples/basics/ex5_nomesh.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3a_scal2d.py` (``../../src/pyvale/examples/extsensorsim/ex3a_scal2d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex1_2_blenderdeformed.py` (``../../src/pyvale/examples/dic/ex1_2_blenderdeformed.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3b_scal3d.py` (``../../src/pyvale/examples/extsensorsim/ex3b_scal3d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex1_region_of_interest.py` (``../../src/pyvale/examples/dic/ex1_region_of_interest.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3c_vec2d.py` (``../../src/pyvale/examples/extsensorsim/ex3c_vec2d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex2_plate_with_hole.py` (``../../src/pyvale/examples/dic/ex2_plate_with_hole.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3d_vec3d.py` (``../../src/pyvale/examples/extsensorsim/ex3d_vec3d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex3_plate_with_hole_strain.py` (``../../src/pyvale/examples/dic/ex3_plate_with_hole_strain.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3e_tens2d.py` (``../../src/pyvale/examples/extsensorsim/ex3e_tens2d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex4_dic_blender.py` (``../../src/pyvale/examples/dic/ex4_dic_blender.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex3f_tens3d.py` (``../../src/pyvale/examples/extsensorsim/ex3f_tens3d.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_dic_ex5_dic_challenge.py` (``../../src/pyvale/examples/dic/ex5_dic_challenge.py``) + * - :ref:`sphx_glr_examples_extsensorsim_ex4a_basicerrs_scal2d.py` (``../../src/pyvale/examples/extsensorsim/ex4a_basicerrs_scal2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4b_fielderrs_scal3d.py` (``../../src/pyvale/examples/extsensorsim/ex4b_fielderrs_scal3d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4c_angleerrs_vec2d.py` (``../../src/pyvale/examples/extsensorsim/ex4c_angleerrs_vec2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4d_fieldlockerrs_vec3d.py` (``../../src/pyvale/examples/extsensorsim/ex4d_fieldlockerrs_vec3d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4e_chainfielderrs_vec2d.py` (``../../src/pyvale/examples/extsensorsim/ex4e_chainfielderrs_vec2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4f_caliberrs_scal2d.py` (``../../src/pyvale/examples/extsensorsim/ex4f_caliberrs_scal2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex4g_spatavgerrs_scal2d.py` (``../../src/pyvale/examples/extsensorsim/ex4g_spatavgerrs_scal2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex5a_expsim_thermmech2d.py` (``../../src/pyvale/examples/extsensorsim/ex5a_expsim_thermmech2d.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_extsensorsim_ex5b_expsim_thermmech3d.py` (``../../src/pyvale/examples/extsensorsim/ex5b_expsim_thermmech3d.py``) - 00:00.000 - 0.0 * - :ref:`sphx_glr_examples_mooseherder_ex0_create_moose_config.py` (``../../src/pyvale/examples/mooseherder/ex0_create_moose_config.py``) @@ -149,18 +173,54 @@ Computation times * - :ref:`sphx_glr_examples_mooseherder_ex8_read_existing_sweep_output.py` (``../../src/pyvale/examples/mooseherder/ex8_read_existing_sweep_output.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_renderblender_ex1_1_blenderscene.py` (``../../src/pyvale/examples/renderblender/ex1_1_blenderscene.py``) + * - :ref:`sphx_glr_examples_render2d_ex1a_pixint_grid_one_elem_types.py` (``../../src/pyvale/examples/render2d/ex1a_pixint_grid_one_elem_types.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render2d_ex1b_pixint_grid_mesh.py` (``../../src/pyvale/examples/render2d/ex1b_pixint_grid_mesh.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render2d_ex1c_pixint_speck_newton.py` (``../../src/pyvale/examples/render2d/ex1c_pixint_speck_newton.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render2d_ex2a_imagedef2d_planar_deformation.py` (``../../src/pyvale/examples/render2d/ex2a_imagedef2d_planar_deformation.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1a_riley_quickstart.py` (``../../src/pyvale/examples/render3d/ex1a_riley_quickstart.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1b_riley_sphere200.py` (``../../src/pyvale/examples/render3d/ex1b_riley_sphere200.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1c_riley_psf.py` (``../../src/pyvale/examples/render3d/ex1c_riley_psf.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1d_riley_rabbits.py` (``../../src/pyvale/examples/render3d/ex1d_riley_rabbits.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1e_riley_dicuq.py` (``../../src/pyvale/examples/render3d/ex1e_riley_dicuq.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1f_riley_dic_from_exodus.py` (``../../src/pyvale/examples/render3d/ex1f_riley_dic_from_exodus.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex1g_riley_stereocal.py` (``../../src/pyvale/examples/render3d/ex1g_riley_stereocal.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex2a_blender_scene.py` (``../../src/pyvale/examples/render3d/ex2a_blender_scene.py``) + - 00:00.000 + - 0.0 + * - :ref:`sphx_glr_examples_render3d_ex2b_blender_deformation.py` (``../../src/pyvale/examples/render3d/ex2b_blender_deformation.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_renderblender_ex1_2_blenderdeformed.py` (``../../src/pyvale/examples/renderblender/ex1_2_blenderdeformed.py``) + * - :ref:`sphx_glr_examples_render3d_ex2c_blender_stereo.py` (``../../src/pyvale/examples/render3d/ex2c_blender_stereo.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_renderblender_ex2_1_stereoscene.py` (``../../src/pyvale/examples/renderblender/ex2_1_stereoscene.py``) + * - :ref:`sphx_glr_examples_render3d_ex2d_blender_calibration.py` (``../../src/pyvale/examples/render3d/ex2d_blender_calibration.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_renderblender_ex2_2_stereodeformed.py` (``../../src/pyvale/examples/renderblender/ex2_2_stereodeformed.py``) + * - :ref:`sphx_glr_examples_render3d_ex2e_blender_stereo_deformation.py` (``../../src/pyvale/examples/render3d/ex2e_blender_stereo_deformation.py``) - 00:00.000 - 0.0 - * - :ref:`sphx_glr_examples_renderblender_ex3_1_blendercalibration.py` (``../../src/pyvale/examples/renderblender/ex3_1_blendercalibration.py``) + * - :ref:`sphx_glr_examples_render3d_ex2f_blender_calibration_target.py` (``../../src/pyvale/examples/render3d/ex2f_blender_calibration_target.py``) - 00:00.000 - 0.0 diff --git a/images/dic_ex04_render_to_dic.png b/images/dic_ex04_render_to_dic.png new file mode 100644 index 000000000..8ee87d7c7 Binary files /dev/null and b/images/dic_ex04_render_to_dic.png differ diff --git a/images/render3d_ex1a_riley_quickstart.png b/images/render3d_ex1a_riley_quickstart.png new file mode 100644 index 000000000..b2bbcf9e4 Binary files /dev/null and b/images/render3d_ex1a_riley_quickstart.png differ diff --git a/images/render3d_ex1b_riley_sphere200.png b/images/render3d_ex1b_riley_sphere200.png new file mode 100644 index 000000000..814088c70 Binary files /dev/null and b/images/render3d_ex1b_riley_sphere200.png differ diff --git a/images/render3d_ex1c_riley_rabbits.png b/images/render3d_ex1c_riley_rabbits.png new file mode 100644 index 000000000..56395f0a3 Binary files /dev/null and b/images/render3d_ex1c_riley_rabbits.png differ diff --git a/images/render3d_ex1d_riley_dicuq.png b/images/render3d_ex1d_riley_dicuq.png new file mode 100644 index 000000000..bcee72aca Binary files /dev/null and b/images/render3d_ex1d_riley_dicuq.png differ diff --git a/images/render3d_ex1e_riley_dic_from_exodus.png b/images/render3d_ex1e_riley_dic_from_exodus.png new file mode 100644 index 000000000..bcee72aca Binary files /dev/null and b/images/render3d_ex1e_riley_dic_from_exodus.png differ diff --git a/images/render3d_ex1f_riley_stereocal.png b/images/render3d_ex1f_riley_stereocal.png new file mode 100644 index 000000000..f414ee48c Binary files /dev/null and b/images/render3d_ex1f_riley_stereocal.png differ diff --git a/images/render3d_ex1g_riley_psf.png b/images/render3d_ex1g_riley_psf.png new file mode 100644 index 000000000..34cc50d11 Binary files /dev/null and b/images/render3d_ex1g_riley_psf.png differ diff --git a/images/render3d_ex2a_blender_scene.png b/images/render3d_ex2a_blender_scene.png new file mode 100644 index 000000000..239460ac3 Binary files /dev/null and b/images/render3d_ex2a_blender_scene.png differ diff --git a/images/render3d_ex2b_blender_deformation.png b/images/render3d_ex2b_blender_deformation.png new file mode 100644 index 000000000..239460ac3 Binary files /dev/null and b/images/render3d_ex2b_blender_deformation.png differ diff --git a/images/render3d_ex2c_blender_stereo.png b/images/render3d_ex2c_blender_stereo.png new file mode 100644 index 000000000..95d86e7b7 Binary files /dev/null and b/images/render3d_ex2c_blender_stereo.png differ diff --git a/images/render3d_ex2d_blender_calibration.yaml b/images/render3d_ex2d_blender_calibration.yaml new file mode 100644 index 000000000..f1f73bb35 --- /dev/null +++ b/images/render3d_ex2d_blender_calibration.yaml @@ -0,0 +1,26 @@ +Cam0_Cx [pixels]: 770.0 +Cam0_Cy [pixels]: 520.0 +Cam0_Fs [pixels]: 0.0 +Cam0_Fx [pixels]: 4347.826086956522 +Cam0_Fy [pixels]: 4347.826086956522 +Cam0_Kappa 1: 0.0 +Cam0_Kappa 2: 0.0 +Cam0_Kappa 3: 0.0 +Cam0_P1: 0.0 +Cam0_P2: 0.0 +Cam1_Cx [pixels]: 770.0 +Cam1_Cy [pixels]: 520.0 +Cam1_Fs [pixels]: 0.0 +Cam1_Fx [pixels]: 4347.826086956522 +Cam1_Fy [pixels]: 4347.826086956522 +Cam1_Kappa 1: 0.0 +Cam1_Kappa 2: 0.0 +Cam1_Kappa 3: 0.0 +Cam1_P1: 0.0 +Cam1_P2: 0.0 +Phi [deg]: -14.999999999999996 +Psi [deg]: 0.0 +Theta [deg]: 0.0 +Tx [mm]: -103.52761804100828 +Ty [mm]: 0.0 +Tz [mm]: -27.7401416484059 diff --git a/images/render3d_ex2e_blender_stereo_deformation.png b/images/render3d_ex2e_blender_stereo_deformation.png new file mode 100644 index 000000000..cd3ecbb31 Binary files /dev/null and b/images/render3d_ex2e_blender_stereo_deformation.png differ diff --git a/images/render3d_ex2f_blender_calibration_target.png b/images/render3d_ex2f_blender_calibration_target.png new file mode 100644 index 000000000..a11a4f4e7 Binary files /dev/null and b/images/render3d_ex2f_blender_calibration_target.png differ diff --git a/images/renderuvs_ex1a_uv_planar_axes_axes.png b/images/renderuvs_ex1a_uv_planar_axes_axes.png new file mode 100644 index 000000000..106acf7bd Binary files /dev/null and b/images/renderuvs_ex1a_uv_planar_axes_axes.png differ diff --git a/images/renderuvs_ex1a_uv_planar_axes_speckle.png b/images/renderuvs_ex1a_uv_planar_axes_speckle.png new file mode 100644 index 000000000..75273b9dd Binary files /dev/null and b/images/renderuvs_ex1a_uv_planar_axes_speckle.png differ diff --git a/images/renderuvs_ex1b_uv_texture_aspect_aligned.png b/images/renderuvs_ex1b_uv_texture_aspect_aligned.png new file mode 100644 index 000000000..fd46f0f28 Binary files /dev/null and b/images/renderuvs_ex1b_uv_texture_aspect_aligned.png differ diff --git a/images/renderuvs_ex1b_uv_texture_aspect_physical_pitch.png b/images/renderuvs_ex1b_uv_texture_aspect_physical_pitch.png new file mode 100644 index 000000000..d462a433d Binary files /dev/null and b/images/renderuvs_ex1b_uv_texture_aspect_physical_pitch.png differ diff --git a/images/renderuvs_ex1b_uv_texture_aspect_rotated.png b/images/renderuvs_ex1b_uv_texture_aspect_rotated.png new file mode 100644 index 000000000..79ea2985a Binary files /dev/null and b/images/renderuvs_ex1b_uv_texture_aspect_rotated.png differ diff --git a/images/renderuvs_ex1c_uv_pixel_region.png b/images/renderuvs_ex1c_uv_pixel_region.png new file mode 100644 index 000000000..51b4433fc Binary files /dev/null and b/images/renderuvs_ex1c_uv_pixel_region.png differ diff --git a/images/renderuvs_ex1d_uv_arbitrary_plane.png b/images/renderuvs_ex1d_uv_arbitrary_plane.png new file mode 100644 index 000000000..b1231bf77 Binary files /dev/null and b/images/renderuvs_ex1d_uv_arbitrary_plane.png differ diff --git a/images/renderuvs_ex1e_uv_transform.png b/images/renderuvs_ex1e_uv_transform.png new file mode 100644 index 000000000..9ba9c6d8f Binary files /dev/null and b/images/renderuvs_ex1e_uv_transform.png differ diff --git a/pyproject.toml b/pyproject.toml index 3db6d2269..503d0bb46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,16 +5,17 @@ build-backend = "scikit_build_core.build" [project] name = "pyvale" -version = "2026.7.0" +version = "2026.9.0" description = "Your virtual engineering lab: An all-in-one package for sensor simulation, uncertainty quantification, sensor placement optimisation and simulation calibration or validation." authors = [ { name = "scepticalrabbit et al.", email = "thescepticalrabbit@gmail.com" }, ] license = { file = "LICENSE" } readme = "README.md" -requires-python = "==3.13.*" +requires-python = ">=3.11" dependencies = [ "numpy>=2.0.0", + "numba>=0.60", "scipy>=1.14.0", "matplotlib>=3.8", "pyvista>=0.43.3", @@ -25,10 +26,15 @@ dependencies = [ "imageio>=2.36.1", "imageio-ffmpeg>=0.5.1", "pyyaml>=6.0.0", - "bpy==5.1.2", "pyqtgraph>=0.13.7", "opencv-python>=4.13.0.92", "pandas>=2.3.1", + "riley-raster>=2026.8.0", +] + +[project.optional-dependencies] +blender = [ + "bpy==5.1.2; python_version == '3.13'", ] [dependency-groups] @@ -80,7 +86,15 @@ pythonpath = [ "tests" ] filterwarnings = [ - "ignore:This process .* is multi-threaded, use of fork:DeprecationWarning" + "ignore:This process .* is multi-threaded, use of fork:DeprecationWarning", + "ignore:Setting the shape on a NumPy array:DeprecationWarning:vtkmodules.util.numpy_support", +] +markers = [ + "example: smoke test for a documented gallery example", + "example_module(name): documented example sub-module for filtering", + "example_slow: longer-running documented gallery example", + "blender: requires the optional Blender renderer backend", + "riley: native Riley demonstration parity test", ] [project.urls] @@ -92,6 +106,7 @@ build.verbose = true logging.level = "INFO" ninja.make-fallback = false build-dir = "build" +wheel.packages = ["src/pyvale"] [tool.uv] required-version = ">=0.9.17" diff --git a/src/pyvale/simcases/run_build_case.py b/scripts/build_simcase.py similarity index 95% rename from src/pyvale/simcases/run_build_case.py rename to scripts/build_simcase.py index 4bb1a1899..5d33785ce 100644 --- a/src/pyvale/simcases/run_build_case.py +++ b/scripts/build_simcase.py @@ -19,7 +19,9 @@ #=============================================================================== CASE_FILES = (CASE_STR+'.geo',CASE_STR+'.i') -CASE_DIR = Path(files("pyvale.simcases").joinpath(CASE_FILES[1])).parent +CASE_DIR = Path( + files("pyvale.data").joinpath("simulation", "simcases", CASE_FILES[1]), +).parent USER_DIR = Path.home() @@ -61,4 +63,3 @@ def main() -> None: if __name__ == '__main__': main() - diff --git a/scripts/gengold_blender.py b/scripts/gengold_blender.py index f5e510ce0..60812b216 100644 --- a/scripts/gengold_blender.py +++ b/scripts/gengold_blender.py @@ -3,178 +3,80 @@ # License: MIT # Copyright (C) 2026 The Computer Aided Validation Team # ============================================================================== -import os +"""Generate committed Blender 2D gold outputs for legacy regression tests.""" + import tempfile from pathlib import Path + import numpy as np -import yaml from scipy.spatial.transform import Rotation -import pyvale.blender as blender -import pyvale.dataset as dataset -import pyvale.mooseherder as mh -import pyvale.sensorsim as sens - - -def get_sample_scene_2d(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - cam_data = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - camera = scene.add_camera(cam_data) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, - ) - light = scene.add_light(light_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - return render_mesh, part, cam_data, scene - - -def get_sample_scene_2d_no_light(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - cam_data = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - camera = scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - return cam_data, scene - +import pyvale.data as dataset +import pyvale.render as render +import pyvale.verif.renderverif as renderverif -def get_sample_scene_2d_no_cam(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=2, - field_disp_keys=disp_comps, - ) - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, +def _camera(pixels: tuple[int, int] = (20, 20)) -> render.Camera: + return render.Camera( + pixels_num=np.asarray(pixels), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 500.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, ) - light = scene.add_light(light_data) - - return part, scene - -def get_sample_scene_3d_no_cam(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, +def _mesh(camera: render.Camera) -> render.Mesh3D: + sim_data = renderverif.scaled_mechanical_2d() + resolution = ( + camera.pixels_size[0] * camera.pos_world[2] / camera.focal_length ) - light = scene.add_light(light_data) - cam_data_0 = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=np.array([0, 0, 500]), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, + shader = render.BlenderTextureShader( + dataset.dic_pattern_5mpx_path(), resolution ) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data_0) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, + return render.mesh3d_from_simdata(sim_data, shader, ("disp_x", "disp_y")) + + +def _render( + tmp_path: Path, + camera: render.Camera, + light_energy: float = 1.0, + samples: int = 2, + bounces: int = 12, + engine: render.EBlenderEngine = render.EBlenderEngine.CYCLES, +) -> np.ndarray: + renderer = render.Blender( + render.BlenderConfig( + tmp_path, + engine=engine, + samples=samples, + max_bounces=bounces, + threads=1, + ) ) - return cam_data_0, part, render_mesh, scene - - -def get_sample_stereo_scene(): - cam_data_0, part, render_mesh, scene = get_sample_scene_3d_no_cam() - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 + result = renderer.render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + light_energy, + ), + ), + ) ) - cam0, cam1 = scene.add_stereo_system(stereo_system) - return (stereo_system, part, render_mesh, scene) + assert result.images is not None + return result.images[0, 0, :, :, 0] -def main(): +def main() -> None: repo_root = Path(__file__).resolve().parents[1] gold_2d_dir = repo_root / "tests" / "blender" / "2D_gold" - gold_3d_dir = repo_root / "tests" / "blender" / "3D_gold" - - os.makedirs(gold_2d_dir, exist_ok=True) - os.makedirs(gold_3d_dir, exist_ok=True) + gold_2d_dir.mkdir(parents=True, exist_ok=True) print("Generating 2D Blender Gold Outputs...") @@ -182,212 +84,86 @@ def main(): tmp_path = Path(tmp_dir) # 1. half_watt_lighting & three_watt_lighting - for energy, name in [ + for energy, name in ( (0.5, "half_watt_lighting"), (3.0, "three_watt_lighting"), - ]: - cam_data, scene = get_sample_scene_2d_no_light() - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=energy, - ) - scene.add_light(light_data) - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_2d_dir / f"{name}.npy", image_array) + ): + print(f"Generating {name}...") + img = _render(tmp_path / name, _camera(), light_energy=energy) + np.save(gold_2d_dir / f"{name}.npy", img) # 2. vertical_cam & horizontal_cam - for pixels, name in [ - (np.array([10, 20]), "vertical_cam"), - (np.array([20, 10]), "horizontal_cam"), - ]: - part, scene = get_sample_scene_2d_no_cam() - cam_data = sens.CameraData( - pixels_num=pixels, - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_res = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_res, - ) - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_2d_dir / f"{name}.npy", image_array) - - # 3. cam_from_resolution - part, scene = get_sample_scene_2d_no_cam() - pixels_num = np.array([20, 20]) - pixels_size = np.array([0.00345, 0.00345]) - cam_data = sens.CameraTools.blender_camera_from_resolution( - pixels_num, pixels_size, 500, 0.1 - ) - scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_res = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_res, + for pixels, name in ( + ((10, 20), "vertical_cam"), + ((20, 10), "horizontal_cam"), + ): + print(f"Generating {name}...") + img = _render(tmp_path / name, _camera(pixels)) + np.save(gold_2d_dir / f"{name}.npy", img) + + # 3. samples_four & samples_twelve + for samples, name in ((4, "samples_four"), (12, "samples_twelve")): + print(f"Generating {name}...") + img = _render(tmp_path / name, _camera(), samples=samples) + np.save(gold_2d_dir / f"{name}.npy", img) + + # 4. bounces_two & bounces_hundred + for bounces, name in ((2, "bounces_two"), (100, "bounces_hundred")): + print(f"Generating {name}...") + img = _render(tmp_path / name, _camera(), bounces=bounces) + np.save(gold_2d_dir / f"{name}.npy", img) + + # 5. cycles_engine & eevee_engine + for engine, name in ( + (render.EBlenderEngine.CYCLES, "cycles_engine"), + (render.EBlenderEngine.EEVEE, "eevee_engine"), + ): + print(f"Generating {name}...") + img = _render(tmp_path / name, _camera(), engine=engine) + np.save(gold_2d_dir / f"{name}.npy", img) + + # 6. cam_from_resolution + print("Generating cam_from_resolution...") + cam_res = render.blender_camera_from_resolution( + np.array((20, 20)), + np.array((0.00345, 0.00345)), + 500.0, + 0.1, ) - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_2d_dir / "cam_from_resolution.npy", image_array) - - # 4. deformed_images - render_mesh, part, cam_data, scene = get_sample_scene_2d() - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_arrays = scene.render_deformed_images( - render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=True, - ) - np.save(gold_2d_dir / "deformed_images.npy", image_arrays[:, :, 10]) - - # 5. samples_four & samples_twelve - for s_val, name in [(4, "samples_four"), (12, "samples_twelve")]: - render_mesh, part, cam_data, scene = get_sample_scene_2d() - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, samples=s_val - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_2d_dir / f"{name}.npy", image_array) - - # 6. bounces_two & bounces_hundred - for b_val, name in [(2, "bounces_two"), (100, "bounces_hundred")]: - render_mesh, part, cam_data, scene = get_sample_scene_2d() - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, max_bounces=b_val - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_2d_dir / f"{name}.npy", image_array) - - # 7. cycles_engine & eevee_engine - for engine, name in [ - (blender.RenderEngine.CYCLES, "cycles_engine"), - (blender.RenderEngine.EEVEE, "eevee_engine"), - ]: - render_mesh, part, cam_data, scene = get_sample_scene_2d() - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, engine=engine - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data + img_res = _render(tmp_path / "cam_res", cam_res) + np.save(gold_2d_dir / "cam_from_resolution.npy", img_res) + + # 7. deformed_images + print("Generating deformed_images...") + camera = _camera() + renderer = render.Blender( + render.BlenderConfig( + tmp_path / "deformed", + threads=1, + render_deformed=True, ) - np.save(gold_2d_dir / f"{name}.npy", image_array) - - print("Generating 3D Blender Gold Outputs...") - - with tempfile.TemporaryDirectory() as tmp_dir: - tmp_path = Path(tmp_dir) - - # 1. stereo_symmetric - cam_data_0, part, render_mesh, scene = get_sample_scene_3d_no_cam() - stereo_system = sens.CameraTools.symmetric_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 - ) - scene.add_stereo_system(stereo_system) - render_data = blender.RenderData( - cam_data=(stereo_system.cam_data_0, stereo_system.cam_data_1), - base_dir=tmp_path, - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data ) - np.save(gold_3d_dir / "stereo_symmetric.npy", image_array) - - # 2. stereo_faceon - cam_data_0, part, render_mesh, scene = get_sample_scene_3d_no_cam() - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 - ) - scene.add_stereo_system(stereo_system) - render_data = blender.RenderData( - cam_data=(stereo_system.cam_data_0, stereo_system.cam_data_1), - base_dir=tmp_path, - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - np.save(gold_3d_dir / "stereo_faceon.npy", image_array) - - # 3. deformed_images - stereo_system, part, render_mesh, scene = get_sample_stereo_scene() - render_data = blender.RenderData( - cam_data=(stereo_system.cam_data_0, stereo_system.cam_data_1), - base_dir=tmp_path, + result = renderer.render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ), + ), + ) ) - image_arrays = scene.render_deformed_images( - render_mesh=render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=True, + assert result.images is not None + np.save( + gold_2d_dir / "deformed_images.npy", + result.images[10, 0, :, :, 0], ) - np.save(gold_3d_dir / "deformed_images.npy", image_arrays[:, :, 120:]) - - # 4. calib_dict - calib_dict_data = { - "Cam0_Fx [pixels]": 4347.826086956522, - "Cam0_Fy [pixels]": 4347.826086956522, - "Cam0_Fs [pixels]": 0, - "Cam0_Kappa 1": 0.0, - "Cam0_Kappa 2": 0.0, - "Cam0_Kappa 3": 0.0, - "Cam0_P1": 0.0, - "Cam0_P2": 0.0, - "Cam0_Cx [pixels]": 10.0, - "Cam0_Cy [pixels]": 10.0, - "Cam1_Fx [pixels]": 4347.826086956522, - "Cam1_Fy [pixels]": 4347.826086956522, - "Cam1_Fs [pixels]": 0, - "Cam1_Kappa 1": 0.0, - "Cam1_Kappa 2": 0.0, - "Cam1_Kappa 3": 0.0, - "Cam1_P1": 0.0, - "Cam1_P2": 0.0, - "Cam1_Cx [pixels]": 10.0, - "Cam1_Cy [pixels]": 10.0, - "Tx [mm]": -128.46813489644606, - "Ty [mm]": 0.0, - "Tz [mm]": 34.42293299863527, - "Theta [deg]": 0.0, - "Phi [deg]": 15.000000000000009, - "Psi [deg]": 0.0, - } - with open(gold_3d_dir / "calib_dict.yaml", "w") as f: - yaml.safe_dump(calib_dict_data, f) - print("Gold generation complete.") + print("Finished generating 2D Blender Gold Outputs.") if __name__ == "__main__": diff --git a/scripts/gengold_blender_triangle.py b/scripts/gengold_blender_triangle.py new file mode 100644 index 000000000..1bdf50587 --- /dev/null +++ b/scripts/gengold_blender_triangle.py @@ -0,0 +1,19 @@ +"""Generate the committed Blender triangle image regression array.""" + +from pathlib import Path + +import numpy as np + +import pyvale.verif.renderverif as renderverif + + +def main() -> None: + """Write the trusted Blender regression image.""" + repository_root = Path(__file__).resolve().parents[1] + path = repository_root / "tests" / "render" / "gold_blender" / "triangle.npy" + path.parent.mkdir(parents=True, exist_ok=True) + np.save(path, renderverif.render_triangle(path.parent / "output")) + + +if __name__ == "__main__": + main() diff --git a/scripts/gengold_render_conformance.py b/scripts/gengold_render_conformance.py new file mode 100644 index 000000000..19a7a9e36 --- /dev/null +++ b/scripts/gengold_render_conformance.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python3 +"""Generate the committed 32-pixel render conformance gold data.""" + +import argparse +from pathlib import Path +from tempfile import TemporaryDirectory + +import numpy as np +from PIL import Image + +import pyvale.render as render +from pyvale.verif.renderconformance import ( + conformance_cases, + preview_range, + render_backend_case, +) + + +BACKENDS = ( + "blender", + "feebee", + "riley", +) +GOLD_DIRECTORIES = { + backend: f"gold_{backend}" + for backend in BACKENDS +} + + +def main() -> None: + """Render and deliberately write selected conformance baselines.""" + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--write", + action="store_true", + help="write committed NumPy gold arrays", + ) + parser.add_argument( + "--tiff", + action=argparse.BooleanOptionalAction, + default=True, + help="write scaled 8-bit TIFF previews (default: enabled)", + ) + parser.add_argument( + "--backend", + action="append", + choices=BACKENDS, + help="generate only this backend; may be supplied more than once", + ) + arguments = parser.parse_args() + if not arguments.write: + parser.error("choose --write to refresh committed gold data") + + repository_root = Path(__file__).resolve().parents[1] + render_root = repository_root / "tests" / "render" + selected = tuple(arguments.backend or BACKENDS) + + for backend in selected: + if backend == "blender" and not render.blender_available(): + print( + "Skipping Blender because its optional backend is unavailable.", + ) + continue + + gold_dir = render_root / GOLD_DIRECTORIES[backend] + gold_dir.mkdir(parents=True, exist_ok=True) + + for case in conformance_cases(): + with TemporaryDirectory() as temporary_dir: + images = render_backend_case( + backend, + case, + Path(temporary_dir), + ) + array_path = gold_dir / f"{case.name}.npy" + np.save(array_path, images) + print(array_path) + + if arguments.tiff: + _write_tiffs( + gold_dir, + case.name, + images, + preview_range(backend), + ) + + +def _write_tiffs( + output_dir: Path, + case_name: str, + images: np.ndarray, + intensity_range: tuple[float, float], +) -> None: + """Write every frame, camera, and channel as a scaled 8-bit TIFF.""" + lower, upper = intensity_range + scaled = np.clip((images - lower) / (upper - lower), 0.0, 1.0) + scaled = np.rint(255.0 * scaled).astype(np.uint8) + + for frame in range(scaled.shape[0]): + for camera in range(scaled.shape[1]): + for channel in range(scaled.shape[4]): + name = ( + f"{case_name}_f{frame:03d}_c{camera:02d}" + f"_ch{channel:02d}.tiff" + ) + Image.fromarray( + scaled[frame, camera, :, :, channel], + ).save(output_dir / name) + + +if __name__ == "__main__": + main() diff --git a/scripts/gengold_riley_rabbits.py b/scripts/gengold_riley_rabbits.py new file mode 100644 index 000000000..df5adc6a4 --- /dev/null +++ b/scripts/gengold_riley_rabbits.py @@ -0,0 +1,39 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Generate committed Riley rabbit multi-mesh image gold data.""" + +import argparse +import hashlib +from pathlib import Path + +import numpy as np + +import pyvale.render as render +import pyvale.verif.renderverif as renderverif + + +def main() -> None: + """Print a hash or write the trusted rabbit image array.""" + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--write", action="store_true") + arguments = parser.parse_args() + + result = render.Riley(renderverif.riley_memory_config()).render( + renderverif.riley_rabbit_scene(), + ) + assert result.images is not None + digest = hashlib.sha256(result.images.tobytes()).hexdigest() + if arguments.write: + repository_root = Path(__file__).resolve().parents[1] + path = repository_root / "tests" / "render" / "gold_riley" / "rabbits.npy" + np.save(path, result.images) + print(path) + else: + print(digest) + + +if __name__ == "__main__": + main() diff --git a/scripts/gengold_sim_txt.py b/scripts/gengold_sim_txt.py index 5fd114ae8..2db6cd173 100644 --- a/scripts/gengold_sim_txt.py +++ b/scripts/gengold_sim_txt.py @@ -5,7 +5,7 @@ #=============================================================================== from pathlib import Path -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.mooseherder as mh from pyvale.dataio.simsaver import (SimDataSaveOpts, ESaveFieldOpt, diff --git a/scripts/loadgold_sim_txt_byfield.py b/scripts/loadgold_sim_txt_byfield.py index c7bbe1085..8e59602cb 100644 --- a/scripts/loadgold_sim_txt_byfield.py +++ b/scripts/loadgold_sim_txt_byfield.py @@ -6,7 +6,7 @@ from pathlib import Path import pyvale.sensorsim as sens -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dataio as io import pyvale.mooseherder as mh import pyvale.verif.matchsimdata as verif diff --git a/scripts/loadgold_sim_txt_bytime.py b/scripts/loadgold_sim_txt_bytime.py index 84ec4b399..ebb32f435 100644 --- a/scripts/loadgold_sim_txt_bytime.py +++ b/scripts/loadgold_sim_txt_bytime.py @@ -7,7 +7,7 @@ from pathlib import Path import pyvale.sensorsim as sens import pyvale.dataio as io -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.mooseherder as mh import pyvale.verif.matchsimdata as verif diff --git a/scripts/render_docs_images.py b/scripts/render_docs_images.py new file mode 100644 index 000000000..8655e78b9 --- /dev/null +++ b/scripts/render_docs_images.py @@ -0,0 +1,308 @@ +#!/usr/bin/env python3 +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Build documentation artifacts from rendered examples. + +Run the render examples first so their standard directories exist below +``pyvale-output``. This script selects the documented first-frame outputs, +converts them to PNG, combines stereo pairs and comparison variants side by +side, and links the artifacts into the Sphinx ``_static`` directory. +""" + +from __future__ import annotations + +import os +import shutil +from dataclasses import dataclass +from pathlib import Path + +import imageio.v3 as iio +import numpy as np + + +REPO_ROOT = Path(__file__).resolve().parents[1] +OUTPUT_ROOT = REPO_ROOT / "pyvale-output" +IMAGES_ROOT = REPO_ROOT / "images" +STATIC_ROOT = REPO_ROOT / "docs" / "source" / "_static" +STEREO_GAP_PX = 16 + + +@dataclass(frozen=True, slots=True) +class ImageArtifact: + """One documentation image selected from an example output directory.""" + + example: str + sources: tuple[str, ...] + output_stem: str | None = None + + @property + def filename(self) -> str: + """Return the canonical documentation image filename.""" + return f"{self.output_stem or self.example}.png" + + +# Sources are explicit by design: this records the representative variant, +# first frame, and stereo camera ordering used in the documentation. +IMAGE_ARTIFACTS = ( + ImageArtifact( + "render3d_ex1a_riley_quickstart", + ("cam0_frame0_field0.bmp",), + ), + ImageArtifact( + "render3d_ex1b_riley_sphere200", + ("cam0_frame0_field0.bmp",), + ), + ImageArtifact( + "render3d_ex1c_riley_rabbits", + ("cam0_frame0_field0.bmp",), + ), + ImageArtifact( + "render3d_ex1d_riley_dicuq", + ("cam0_frame0_field0.bmp", "cam1_frame0_field0.bmp"), + ), + ImageArtifact( + "render3d_ex1e_riley_dic_from_exodus", + ("cam0_frame0_field0.bmp", "cam1_frame0_field0.bmp"), + ), + ImageArtifact( + "render3d_ex1f_riley_stereocal", + ("cam0_frame0_field0.bmp", "cam1_frame0_field0.bmp"), + ), + ImageArtifact( + "render3d_ex1g_riley_psf", + ("global_subpx_full/cam0_frame0_field0.bmp",), + ), + ImageArtifact( + "render3d_ex2a_blender_scene", + ("images/blenderimage_0.tiff",), + ), + ImageArtifact( + "render3d_ex2b_blender_deformation", + ("images/blenderimage_0.tiff",), + ), + ImageArtifact( + "render3d_ex2c_blender_stereo", + ( + "images/blenderimage_0_0.tiff", + "images/blenderimage_0_1.tiff", + ), + ), + ImageArtifact( + "render3d_ex2e_blender_stereo_deformation", + ( + "images/blenderimage_0_0.tiff", + "images/blenderimage_0_1.tiff", + ), + ), + ImageArtifact( + "render3d_ex2f_blender_calibration_target", + ( + "calimages/blendercal_0_0.tiff", + "calimages/blendercal_1_1.tiff", + ), + ), + ImageArtifact( + "renderuvs_ex1a_uv_planar_axes", + ( + "xy/cam0_frame0_field0.bmp", + "yz/cam0_frame0_field0.bmp", + "xz/cam0_frame0_field0.bmp", + ), + "renderuvs_ex1a_uv_planar_axes_axes", + ), + ImageArtifact( + "renderuvs_ex1a_uv_planar_axes", + ("speckle/cam0_frame0_field0.bmp",), + "renderuvs_ex1a_uv_planar_axes_speckle", + ), + ImageArtifact( + "renderuvs_ex1b_uv_texture_aspect", + ( + "aligned/contain/cam0_frame0_field0.bmp", + "aligned/fit_u/cam0_frame0_field0.bmp", + "aligned/fit_v/cam0_frame0_field0.bmp", + ), + "renderuvs_ex1b_uv_texture_aspect_aligned", + ), + ImageArtifact( + "renderuvs_ex1b_uv_texture_aspect", + ( + "rotated/contain/cam0_frame0_field0.bmp", + "rotated/fit_u/cam0_frame0_field0.bmp", + "rotated/fit_v/cam0_frame0_field0.bmp", + ), + "renderuvs_ex1b_uv_texture_aspect_rotated", + ), + ImageArtifact( + "renderuvs_ex1b_uv_texture_aspect", + ("physical_pitch/cam0_frame0_field0.bmp",), + "renderuvs_ex1b_uv_texture_aspect_physical_pitch", + ), + ImageArtifact( + "renderuvs_ex1c_uv_pixel_region", + ( + "seamless/cam0_frame0_field0.bmp", + "tiled_seam/cam0_frame0_field0.bmp", + "saturated/cam0_frame0_field0.bmp", + ), + ), + ImageArtifact( + "renderuvs_ex1d_uv_arbitrary_plane", + ("tilted/cam0_frame0_field0.bmp",), + ), + ImageArtifact( + "renderuvs_ex1e_uv_transform", + ( + "original/cam0_frame0_field0.bmp", + "transformed/cam0_frame0_field0.bmp", + ), + ), + ImageArtifact( + "dic_ex04_render_to_dic", + ("dic_ex04_render_to_dic.png",), + ), +) + +CALIBRATION_EXAMPLE = "render3d_ex2d_blender_calibration" +CALIBRATION_SOURCE = Path("calibration") / "calibration.yaml" +CALIBRATION_FILENAME = f"{CALIBRATION_EXAMPLE}.yaml" + + +def load_first_frame(path: Path) -> np.ndarray: + """Load one persisted image or the first canonical frame from NumPy.""" + if path.suffix.lower() == ".npy": + image = np.load(path) + if image.ndim == 5: + image = image[0, 0, :, :, 0] + elif image.ndim != 2: + raise ValueError( + f"Unsupported NumPy image shape {image.shape} in {path}." + ) + return image + + image = np.asarray(iio.imread(path)) + if image.ndim == 3 and image.shape[2] == 1: + image = image[:, :, 0] + if image.ndim not in (2, 3): + raise ValueError(f"Unsupported image shape {image.shape} in {path}.") + return image + + +def image_to_uint8(image: np.ndarray) -> np.ndarray: + """Convert one finite greyscale or colour image to documentation PNG data.""" + image = np.asarray(image) + if image.dtype == np.uint8: + return image + if image.dtype == np.bool_: + return image.astype(np.uint8) * 255 + + finite = np.isfinite(image) + if not np.any(finite): + raise ValueError("Cannot scale an image containing no finite values.") + + values = image.astype(np.float64) + value_min = float(np.min(values[finite])) + value_max = float(np.max(values[finite])) + values[~finite] = value_min + + if value_min >= 0.0 and value_max <= 1.0: + scaled = values * 255.0 + elif value_max > value_min: + scaled = 255.0 * (values - value_min) / (value_max - value_min) + else: + scaled = np.zeros_like(values) + return np.clip(np.rint(scaled), 0.0, 255.0).astype(np.uint8) + + +def combine_images(images: tuple[np.ndarray, ...]) -> np.ndarray: + """Return one image or combine comparison images with white separators.""" + if len(images) == 1: + return images[0] + first = images[0] + if any(image.ndim != first.ndim for image in images[1:]): + raise ValueError("Combined images must have matching channel layouts.") + if any(image.shape[0] != first.shape[0] for image in images[1:]): + raise ValueError("Combined images must have matching heights.") + + separator_shape = list(first.shape) + separator_shape[1] = STEREO_GAP_PX + separator = np.full(separator_shape, 255, dtype=np.uint8) + combined: list[np.ndarray] = [first] + for image in images[1:]: + combined.extend((separator, image)) + return np.concatenate(combined, axis=1) + + +def replace_static_link(artifact: Path) -> Path: + """Create the Sphinx static symlink for one generated artifact.""" + link = STATIC_ROOT / artifact.name + if link.is_symlink(): + link.unlink() + elif link.exists(): + raise FileExistsError(f"Refusing to replace non-symlink: {link}") + + target = Path(os.path.relpath(artifact, start=STATIC_ROOT)) + link.symlink_to(target) + return link + + +def validate_sources() -> None: + """Fail before writing anything when an expected example output is absent.""" + missing: list[Path] = [] + for artifact in IMAGE_ARTIFACTS: + example_dir = OUTPUT_ROOT / artifact.example + for source in artifact.sources: + path = example_dir / source + if not path.is_file(): + missing.append(path) + + calibration = OUTPUT_ROOT / CALIBRATION_EXAMPLE / CALIBRATION_SOURCE + if not calibration.is_file(): + missing.append(calibration) + + if missing: + paths = "\n".join(f" - {path}" for path in missing) + raise FileNotFoundError( + "Run the documented render and DIC examples before " + "generating " + f"documentation artifacts. Missing:\n{paths}" + ) + + +def main() -> None: + """Generate documentation images, calibration text, and static links.""" + validate_sources() + IMAGES_ROOT.mkdir(parents=True, exist_ok=True) + STATIC_ROOT.mkdir(parents=True, exist_ok=True) + + generated: list[Path] = [] + for artifact in IMAGE_ARTIFACTS: + example_dir = OUTPUT_ROOT / artifact.example + images = tuple( + image_to_uint8(load_first_frame(example_dir / source)) + for source in artifact.sources + ) + output_path = IMAGES_ROOT / artifact.filename + iio.imwrite(output_path, combine_images(images)) + replace_static_link(output_path) + generated.append(output_path) + + calibration_source = ( + OUTPUT_ROOT / CALIBRATION_EXAMPLE / CALIBRATION_SOURCE + ) + calibration_output = IMAGES_ROOT / CALIBRATION_FILENAME + shutil.copy2(calibration_source, calibration_output) + replace_static_link(calibration_output) + generated.append(calibration_output) + + print(f"Generated {len(generated)} documentation artifacts:") + for path in generated: + print(f" {path.relative_to(REPO_ROOT)}") + print(f"Static links: {STATIC_ROOT.relative_to(REPO_ROOT)}") + + +if __name__ == "__main__": + main() diff --git a/scripts/run_all_examples.py b/scripts/run_all_examples.py new file mode 100644 index 000000000..9cc21130f --- /dev/null +++ b/scripts/run_all_examples.py @@ -0,0 +1,204 @@ +#!/usr/bin/env python3 +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Run all pyvale gallery examples. + +Discovers example scripts in the sub-directories of ``src/pyvale/examples`` +listed in ``EXAMPLE_DIRS`` and executes each one in an isolated temporary +working directory. Each working directory links its standard +``pyvale-output`` path to the repository-level output directory, matching the +location used when examples are run standalone from the repository root. A +summary is printed at the end and the exit code is non-zero if any example +failed. +""" + +from __future__ import annotations + +import os +import shutil +import subprocess +import sys +import tempfile +import time +from pathlib import Path + + +REPO_ROOT = Path(__file__).resolve().parents[1] +EXAMPLES_ROOT = REPO_ROOT / "src" / "pyvale" / "examples" +OUTPUT_ROOT = REPO_ROOT / "pyvale-output" + +#: Sub-directories of ``src/pyvale/examples`` that contain examples to run. +EXAMPLE_DIRS = [ +# "basicsensorsim", +# "extsensorsim", +# "dic", +# "mooseherder", + "render3d", + "renderuvs", +] + +#: Examples that cannot run unattended because they open interactive GUI +#: windows or require unbundled local input files. +EXCLUDED_EXAMPLES = { + "ex01_region_of_interest.py", + "ex05_dic_challenge.py", + "ex06_hrdic.py", + "ex08_calibration.py", + "ex09_stereo.py", + "ex10_stereo_platehole.py", + "ex11_dic_chal.py", +} + +#: Maximum wall-clock time allowed per example. +TIMEOUT_S = 600.0 + +#: Non-script sibling files copied next to each example before it runs +#: (ROI definitions, calibration data, solver configuration files). +SUPPORT_FILE_GLOBS = ("*.txt", "*.yaml", "*.json") + + +def copy_support_files(script: Path, work_dir: Path) -> None: + """Copy an example's sibling support files into the working directory.""" + for pattern in SUPPORT_FILE_GLOBS: + for support_file in script.parent.glob(pattern): + shutil.copy2(support_file, work_dir / support_file.name) + + +def link_output_directory(work_dir: Path) -> None: + """Link an example working directory to the standard output directory.""" + OUTPUT_ROOT.mkdir(parents=True, exist_ok=True) + (work_dir / "pyvale-output").symlink_to( + OUTPUT_ROOT, + target_is_directory=True, + ) + + +def find_examples() -> list[Path]: + """Return the runnable example scripts in a stable run order.""" + examples: list[Path] = [] + for dir_name in EXAMPLE_DIRS: + directory = EXAMPLES_ROOT / dir_name + if not directory.is_dir(): + print(f"WARNING: example directory not found: {directory}") + continue + for script in sorted(directory.glob("ex*.py")): + if script.name not in EXCLUDED_EXAMPLES: + examples.append(script) + return examples + + +def run_example(script: Path, work_dir: Path) -> tuple[bool, float, str]: + """Run one example in ``work_dir``. + + Parameters + ---------- + script : pathlib.Path + The example script to execute. + work_dir : pathlib.Path + Temporary working directory the example runs in. + + Returns + ------- + tuple[bool, float, str] + Success flag, elapsed seconds, and a short status message. + """ + environment = os.environ.copy() + environment["MPLBACKEND"] = "Agg" + environment["PYVISTA_OFF_SCREEN"] = "true" + environment["QT_QPA_PLATFORM"] = "offscreen" + environment["PYTHONPATH"] = os.pathsep.join( + (str(REPO_ROOT / "src"), environment.get("PYTHONPATH", "")), + ).rstrip(os.pathsep) + + start_time = time.perf_counter() + try: + completed = subprocess.run( + (sys.executable, str(script)), + cwd=work_dir, + env=environment, + capture_output=True, + text=True, + timeout=TIMEOUT_S, + check=False, + ) + except subprocess.TimeoutExpired: + message = f"timed out after {TIMEOUT_S:.0f} s" + return False, time.perf_counter() - start_time, message + + elapsed = time.perf_counter() - start_time + if completed.returncode != 0: + message = f"exit code {completed.returncode}" + print("-" * 70) + print(f"FAILED: {script.name} ({message})") + if completed.stdout: + print("stdout:\n" + completed.stdout) + if completed.stderr: + print("stderr:\n" + completed.stderr) + print("-" * 70) + return False, elapsed, message + return True, elapsed, "ok" + + +def main() -> None: + """Run every discovered example and print a pass/fail summary.""" + examples = find_examples() + print(f"Running {len(examples)} examples from {len(EXAMPLE_DIRS)} " + f"directories (timeout {TIMEOUT_S:.0f} s each).\n") + + session_dir = Path(tempfile.mkdtemp(prefix="pyvale-examples-")) + passed: list[str] = [] + failed: list[tuple[str, str]] = [] + work_dirs: dict[str, Path] = {} + + for number, script in enumerate(examples, start=1): + label = f"{script.parent.name}/{script.name}" + print(f"[{number:>2}/{len(examples)}] RUN {label}", flush=True) + dir_name = script.parent.name + if dir_name not in work_dirs: + work_dirs[dir_name] = session_dir / dir_name + work_dirs[dir_name].mkdir(parents=True) + link_output_directory(work_dirs[dir_name]) + work_dir = work_dirs[dir_name] + copy_support_files(script, work_dir) + + success, elapsed, message = run_example(script, work_dir) + minutes = elapsed / 60.0 + if success: + passed.append(label) + print(f" PASS {label} ({minutes:.1f} min)") + else: + failed.append((label, message)) + print(f" FAIL {label} ({message})") + + skipped = sorted( + f"{directory.name}/{name}" + for directory in (EXAMPLES_ROOT / name for name in EXAMPLE_DIRS) + if directory.is_dir() + for name in EXCLUDED_EXAMPLES + if (directory / name).is_file() + ) + + print("\n" + "=" * 70) + print(f"EXAMPLE RUN COMPLETE: {len(passed)} passed, {len(failed)} failed, " + f"{len(skipped)} excluded") + if skipped: + print("\nExcluded (interactive GUI or unbundled input):") + for label in skipped: + print(f" SKIP {label}") + if failed: + print("\nFailed examples:") + for label, message in failed: + print(f" FAIL {label} ({message})") + print("=" * 70) + print(f"Example output kept for inspection: {OUTPUT_ROOT}") + print(f"Session support files kept for inspection: {session_dir}") + + if failed: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/src/pyvale/simcases/run_all_cases.py b/scripts/run_all_simcases.py similarity index 93% rename from src/pyvale/simcases/run_all_cases.py rename to scripts/run_all_simcases.py index 4d566c75a..beb5e4c40 100644 --- a/src/pyvale/simcases/run_all_cases.py +++ b/scripts/run_all_simcases.py @@ -7,6 +7,7 @@ ================================================================================ ''' import time +from importlib.resources import files from pathlib import Path from pyvale.mooseherder import (MooseConfig, MooseRunner, @@ -16,7 +17,7 @@ NUM_CASES = 23 USER_DIR = Path.home() FORCE_GMSH = False -CASES_DIR = Path('src/simcases/') +CASES_DIR = Path(files("pyvale.data").joinpath("simulation", "simcases")) def run_one_case(case_str: str) -> None: print(80*'=') @@ -24,7 +25,7 @@ def run_one_case(case_str: str) -> None: print(80*'=') case_files = (case_str+'.geo',case_str+'.i') - case_dir = CASES_DIR / case_str + case_dir = CASES_DIR gmsh_run_time = 0.0 if (case_dir / case_files[0]).is_file(): @@ -66,4 +67,3 @@ def main() -> None: if __name__ == '__main__': main() - diff --git a/src/pyvale/simcases/run_example_cases.py b/scripts/run_example_simcases.py similarity index 93% rename from src/pyvale/simcases/run_example_cases.py rename to scripts/run_example_simcases.py index 3a230ecec..abdae95f4 100644 --- a/src/pyvale/simcases/run_example_cases.py +++ b/scripts/run_example_simcases.py @@ -7,6 +7,7 @@ ================================================================================ ''' import time +from importlib.resources import files from pathlib import Path from pyvale.mooseherder import (MooseConfig, MooseRunner, @@ -16,7 +17,7 @@ EXAMPLE_CASES = [13,16,17] USER_DIR = Path.home() FORCE_GMSH = False -CASES_DIR = Path('src/simcases/') +CASES_DIR = Path(files("pyvale.data").joinpath("simulation", "simcases")) def run_one_case(case_str: str) -> None: print(80*'=') @@ -24,7 +25,7 @@ def run_one_case(case_str: str) -> None: print(80*'=') case_files = (case_str+'.geo',case_str+'.i') - case_dir = CASES_DIR / case_str + case_dir = CASES_DIR gmsh_run_time = 0.0 if (case_dir / case_files[0]).is_file(): @@ -66,4 +67,3 @@ def main() -> None: if __name__ == '__main__': main() - diff --git a/src/pyvale/simcases/run_1case.py b/scripts/run_simcase.py similarity index 95% rename from src/pyvale/simcases/run_1case.py rename to scripts/run_simcase.py index 201e6e72a..af8e6e25e 100644 --- a/src/pyvale/simcases/run_1case.py +++ b/scripts/run_simcase.py @@ -18,7 +18,9 @@ #=============================================================================== CASE_FILES = (CASE_STR+'.geo',CASE_STR+'.i') -CASE_DIR = Path(files("pyvale.simcases").joinpath(CASE_FILES[1])).parent +CASE_DIR = Path( + files("pyvale.data").joinpath("simulation", "simcases", CASE_FILES[1]), +).parent USER_DIR = Path.home() @@ -57,4 +59,3 @@ def main() -> None: if __name__ == '__main__': main() - diff --git a/src/pyvale/__init__.py b/src/pyvale/__init__.py index 371a5c8ca..a56656d5b 100644 --- a/src/pyvale/__init__.py +++ b/src/pyvale/__init__.py @@ -14,10 +14,17 @@ virtually testing digital shadows/twins. """ -from . import dic -from . import strain -from . import blender -from . import sensorsim -from . import mooseherder -from . import dataset -from . import calib +__version__ = "2026.9.0" + +from . import data, dataio, dic, mooseherder, render, sensorsim, strain + +__all__ = [ + "__version__", + "data", + "dataio", + "dic", + "mooseherder", + "render", + "sensorsim", + "strain", +] diff --git a/src/pyvale/blender/blendercalibrationdata.py b/src/pyvale/blender/blendercalibrationdata.py index b8c6e9be8..3a0c7d9b4 100644 --- a/src/pyvale/blender/blendercalibrationdata.py +++ b/src/pyvale/blender/blendercalibrationdata.py @@ -14,4 +14,5 @@ class CalibrationData: plunge_lims: tuple = (-5, 5) plunge_step: int = 5 x_limit: float | None = None - y_limit: float | None = None \ No newline at end of file + y_limit: float | None = None + max_images: int | None = None diff --git a/src/pyvale/blender/blenderrenderdata.py b/src/pyvale/blender/blenderrenderdata.py index e6e88f1b5..caf85ab1b 100644 --- a/src/pyvale/blender/blenderrenderdata.py +++ b/src/pyvale/blender/blenderrenderdata.py @@ -9,7 +9,7 @@ from pathlib import Path # Pyvale -from pyvale.sensorsim.cameradata import CameraData +from pyvale.render.camera import Camera class RenderEngine(Enum): @@ -21,14 +21,18 @@ class RenderEngine(Enum): @dataclass(slots=True) class RenderData: - cam_data: CameraData | tuple[CameraData, CameraData] + cam_data: Camera | tuple[Camera, Camera] base_dir: Path | None = None dir_name: str = "images" samples: int = 2 engine: RenderEngine = RenderEngine.CYCLES + device: str = "CPU" max_bounces: int = 12 bit_size: int = 8 threads:int = 4 + seed: int = 0 + use_denoising: bool = True + use_adaptive_sampling: bool = True def __post_init__(self) -> None: if self.base_dir is None: diff --git a/src/pyvale/blender/blenderscene.py b/src/pyvale/blender/blenderscene.py index 632589d1e..93811635e 100644 --- a/src/pyvale/blender/blenderscene.py +++ b/src/pyvale/blender/blenderscene.py @@ -5,13 +5,13 @@ # ============================================================================== import numpy as np from pathlib import Path +import warnings + import bpy # Pyvale -from pyvale.sensorsim.cameradata import CameraData import pyvale.sensorsim.simtools as simtools -from pyvale.sensorsim.camerastereo import CameraStereo -from pyvale.sensorsim.rendermesh import RenderMesh +from pyvale.render import Camera, Mesh3D from pyvale.blender.blenderexceptions import BlenderError from pyvale.blender.blendertools import Tools @@ -49,7 +49,7 @@ def reset_scene(self) -> None: bg_node.inputs[0].default_value = [0.5, 0.5, 0.5, 1] bg_node.inputs[1].default_value = 0 - def add_camera(self, cam_data:CameraData) -> bpy.data.objects: + def add_camera(self, cam_data: Camera) -> bpy.data.objects: """Method to add a camera object within Blender. Parameters @@ -77,24 +77,27 @@ def add_camera(self, cam_data:CameraData) -> bpy.data.objects: pixels_num = (int(cam_data.pixels_num[0]), int(cam_data.pixels_num[1])) camera['sensor_px'] = pixels_num camera['px_size'] = cam_data.pixels_size - camera['k1'] = cam_data.k1 - camera['k2'] = cam_data.k2 - camera['k3'] = cam_data.k3 - camera['p1'] = cam_data.p1 - camera['p2'] = cam_data.p2 - camera['c0'] = cam_data.c0 - camera['c1'] = cam_data.c1 + camera['k1'] = cam_data.distortion_k1 + camera['k2'] = cam_data.distortion_k2 + camera['k3'] = cam_data.distortion_k3 + camera['p1'] = cam_data.distortion_p1 + camera['p2'] = cam_data.distortion_p2 new_cam.lens_unit = 'MILLIMETERS' new_cam.lens = cam_data.focal_length new_cam.sensor_fit = 'HORIZONTAL' - new_cam.sensor_width = cam_data.sensor_size[0] - new_cam.sensor_height = cam_data.sensor_size[1] - - if cam_data.fstop is not None: - new_cam.dof.focus_distance = cam_data.image_dist - new_cam.dof.use_dof = True - new_cam.dof.aperture_fstop = cam_data.fstop + new_cam.sensor_width = cam_data.pixels_num[0] * cam_data.pixels_size[0] + new_cam.sensor_height = cam_data.pixels_num[1] * cam_data.pixels_size[1] + if new_cam.sensor_width < 1.0 or new_cam.sensor_height < 1.0: + warnings.warn( + "Camera sensor size " + f"({new_cam.sensor_width:.4f} x {new_cam.sensor_height:.4f}) " + "mm is below Blender's 1 mm minimum and has been clamped, so " + "the rendered field of view is wider than the requested " + "camera definition.", + RuntimeWarning, + stacklevel=2, + ) new_cam.clip_end = ((cam_data.pos_world[2] - cam_data.roi_cent_world[2]) + 100) @@ -102,23 +105,24 @@ def add_camera(self, cam_data:CameraData) -> bpy.data.objects: bpy.context.scene.camera = camera return camera - def add_stereo_system(self, stereo_system: CameraStereo) -> tuple[bpy.data.objects, - bpy.data.objects]: - """A method to add a stereo camera system within Blender, given an - instance of the CameraStereo class (that describes a stereo system). + def add_stereo_system( + self, + cameras: tuple[Camera, Camera], + ) -> tuple[bpy.data.objects, bpy.data.objects]: + """Add an ordered pair of stereo cameras to the Blender scene. Parameters ---------- - stereo_system: CameraStereo - An instance of the CameraStereo class, describing a stereo system. + cameras : tuple[Camera, Camera] + The ordered stereo camera pair. Returns ------- tuple[bpy.data.objects, bpy.data.objects] A tuple of the Blender camera objects: camera 0 and camera 1. """ - cam0 = self.add_camera(stereo_system.cam_data_0) - cam1 = self.add_camera(stereo_system.cam_data_1) + cam0 = self.add_camera(cameras[0]) + cam1 = self.add_camera(cameras[1]) return cam0, cam1 def add_light(self, light_data: LightData) -> bpy.data.objects: @@ -156,17 +160,17 @@ def add_light(self, light_data: LightData) -> bpy.data.objects: return light_ob def add_part(self, - render_mesh: RenderMesh, + render_mesh: Mesh3D, sim_spat_dim: int) -> bpy.data.objects: - """A method to add a part mesh into Blender, given a RenderMeshData object. - This is done by taking the mesh information from the RenderMeshData + """Add a part mesh to Blender from a ``render.Mesh3D`` object. + This is done by taking the mesh information from the common mesh object and converting it into a form that is accepted by Blender. It should be noted that the object is placed at the origin and centred around its geometric centroid. Parameters ---------- - render_mesh: RenderMeshData + render_mesh: render.Mesh3D A dataclass containing the mesh information of the skinned simulation mesh. sim_spat_dim: int @@ -177,9 +181,9 @@ def add_part(self, bpy.data.objects The Blender part object that is created. """ - nodes_centred = simtools.centre_mesh_nodes(render_mesh.coords, - sim_spat_dim) - vertices = np.delete(nodes_centred, 3, axis=1) + nodes_centred = simtools.centre_mesh_nodes(render_mesh.coords.copy(), + sim_spat_dim) + vertices = nodes_centred[:, :3] faces = render_mesh.connectivity mesh = bpy.data.meshes.new("Part") @@ -262,7 +266,7 @@ def add_speckle(self, Tools.uv_unwrap_part(part, mm_px_resolution, cal) def _debug_deform(self, - render_mesh: RenderMesh, + render_mesh: Mesh3D, sim_spat_dim:int, part: bpy.data.objects) -> None: """A method to deform the Blender mesh object using the simulation results. @@ -279,15 +283,14 @@ def _debug_deform(self, The Blender part object which is to be deformed, normally as sample object. """ - render_mesh.coords = simtools.centre_mesh_nodes(render_mesh.coords, - sim_spat_dim) - timesteps = render_mesh.fields_render.shape[1] + timesteps = 0 if render_mesh.displacements is None else \ + render_mesh.displacements.shape[0] for timestep in range(1, timesteps): - deformed_nodes = simtools.get_deformed_nodes(timestep, - render_mesh) - if deformed_nodes is not None: + if render_mesh.displacements is not None: + deformed_nodes = render_mesh.coords + \ + render_mesh.displacements[timestep] Tools.deform_single_timestep(part, deformed_nodes) Tools.set_new_frame(part) @@ -326,8 +329,15 @@ def render_single_image(self, bpy.context.scene.render.image_settings.file_format = "TIFF" if render_data.engine == RenderEngine.CYCLES: + bpy.context.scene.cycles.device = render_data.device bpy.context.scene.cycles.samples = render_data.samples bpy.context.scene.cycles.max_bounces = render_data.max_bounces + bpy.context.scene.cycles.seed = render_data.seed + bpy.context.scene.cycles.use_animated_seed = False + bpy.context.scene.cycles.use_denoising = render_data.use_denoising + bpy.context.scene.cycles.use_adaptive_sampling = ( + render_data.use_adaptive_sampling + ) elif render_data.engine == RenderEngine.EEVEE: bpy.context.scene.eevee.taa_render_samples = render_data.samples @@ -375,7 +385,7 @@ def render_single_image(self, bpy.ops.render.render(write_still=True) def render_deformed_images(self, - render_mesh: RenderMesh, + render_mesh: Mesh3D, sim_spat_dim: int, render_data: RenderData, part: bpy.data.objects, @@ -385,7 +395,7 @@ def render_deformed_images(self, Parameters ---------- - render_mesh : RenderMeshData + render_mesh : render.Mesh3D A dataclass containing the skimmed mesh and simulation information needed to deform the sample. sim_spat_dim: int @@ -411,9 +421,8 @@ def render_deformed_images(self, 3D setups, the images in the stack alternate between camera 0 and camera 1. """ - render_mesh.coords = simtools.centre_mesh_nodes(render_mesh.coords, - sim_spat_dim) - timesteps = render_mesh.fields_render.shape[1] + timesteps = 0 if render_mesh.displacements is None else \ + render_mesh.displacements.shape[0] # Render parameters bpy.context.scene.render.engine = render_data.engine.value @@ -424,8 +433,15 @@ def render_deformed_images(self, bpy.context.scene.render.image_settings.file_format = "TIFF" if render_data.engine == RenderEngine.CYCLES: + bpy.context.scene.cycles.device = render_data.device bpy.context.scene.cycles.samples = render_data.samples bpy.context.scene.cycles.max_bounces = render_data.max_bounces + bpy.context.scene.cycles.seed = render_data.seed + bpy.context.scene.cycles.use_animated_seed = False + bpy.context.scene.cycles.use_denoising = render_data.use_denoising + bpy.context.scene.cycles.use_adaptive_sampling = ( + render_data.use_adaptive_sampling + ) elif render_data.engine == RenderEngine.EEVEE: bpy.context.scene.eevee.taa_render_samples = render_data.samples @@ -438,9 +454,9 @@ def render_deformed_images(self, image_arrays = [] for timestep in range(0, timesteps): - deformed_nodes = simtools.get_deformed_nodes(timestep, - render_mesh) - if deformed_nodes is not None: + if render_mesh.displacements is not None: + deformed_nodes = render_mesh.coords + \ + render_mesh.displacements[timestep] Tools.deform_single_timestep(part, deformed_nodes) Tools.set_new_frame(part) @@ -482,11 +498,3 @@ def render_deformed_images(self, - - - - - - - - diff --git a/src/pyvale/blender/blendertools.py b/src/pyvale/blender/blendertools.py index 01807435d..69deda254 100644 --- a/src/pyvale/blender/blendertools.py +++ b/src/pyvale/blender/blendertools.py @@ -359,8 +359,15 @@ def render_calibration_images(render_data: RenderData, bpy.context.scene.render.image_settings.file_format = "TIFF" if render_data.engine == RenderEngine.CYCLES: + bpy.context.scene.cycles.device = render_data.device bpy.context.scene.cycles.samples = render_data.samples bpy.context.scene.cycles.max_bounces = render_data.max_bounces + bpy.context.scene.cycles.seed = render_data.seed + bpy.context.scene.cycles.use_animated_seed = False + bpy.context.scene.cycles.use_denoising = render_data.use_denoising + bpy.context.scene.cycles.use_adaptive_sampling = ( + render_data.use_adaptive_sampling + ) elif render_data.engine == RenderEngine.EEVEE: bpy.context.scene.eevee.taa_render_samples = render_data.samples @@ -412,7 +419,16 @@ def render_calibration_images(render_data: RenderData, if isinstance(render_data.cam_data, tuple): cam_count = 0 - for cam in [obj for obj in bpy.data.objects if obj.type == "CAMERA"]: + cameras = [ + obj for obj in bpy.data.objects + if obj.type == "CAMERA" + ] + for cam in cameras: + if ( + calibration_data.max_images is not None + and render_counter >= calibration_data.max_images + ): + break bpy.context.scene.camera = cam cam_data_render = render_data.cam_data[cam_count] bpy.context.scene.render.resolution_x = cam_data_render.pixels_num[0] @@ -421,7 +437,13 @@ def render_calibration_images(render_data: RenderData, bpy.context.scene.render.filepath = str(save_dir / filename) bpy.ops.render.render(write_still=True) cam_count += 1 - render_counter += 1 + render_counter += 1 + + if ( + calibration_data.max_images is not None + and render_counter >= calibration_data.max_images + ): + return render_counter print('Total number of calibration images = ' + str(render_counter)) return render_counter @@ -442,7 +464,3 @@ def check_for_GPU() -> bool: if device.type in accepted_gpus: return True return False - - - - diff --git a/src/pyvale/data/__init__.py b/src/pyvale/data/__init__.py index 1f166ab71..37e20462f 100644 --- a/src/pyvale/data/__init__.py +++ b/src/pyvale/data/__init__.py @@ -1,5 +1,3 @@ -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== \ No newline at end of file +"""Packaged example and regression data for :mod:`pyvale`.""" + +from .dataset import * diff --git a/src/pyvale/data/cal_target.tiff b/src/pyvale/data/calibration/cal_target.tiff similarity index 100% rename from src/pyvale/data/cal_target.tiff rename to src/pyvale/data/calibration/cal_target.tiff diff --git a/src/pyvale/data/calib.caldat b/src/pyvale/data/calibration/calib.caldat similarity index 100% rename from src/pyvale/data/calib.caldat rename to src/pyvale/data/calibration/calib.caldat diff --git a/src/pyvale/dataset/dataset.py b/src/pyvale/data/dataset.py similarity index 72% rename from src/pyvale/dataset/dataset.py rename to src/pyvale/data/dataset.py index 0f648dd3e..8a661c2fa 100644 --- a/src/pyvale/dataset/dataset.py +++ b/src/pyvale/data/dataset.py @@ -5,15 +5,20 @@ #=============================================================================== """ -Accesors for data that comes pre-packaged with pyvale for demonstrating its +Accessors for data that comes pre-packaged with pyvale for demonstrating its functionality. This includes moose simulation outputs as exodus files, input files for moose and gmsh for additional simulation cases, and images required for testing the image deformation and digital image correlation modules. """ from enum import Enum -from pathlib import Path from importlib.resources import files +from pathlib import Path + +import numpy as np +import riley + +from pyvale.render.mesh import EElementType SIM_CASE_COUNT = 26 """Constant describing the number of simulation test case input files for moose @@ -59,8 +64,13 @@ class DataSetError(Exception): """ +def _data_path(*parts: str) -> Path: + """Return an installed path below the :mod:`pyvale.data` package.""" + return Path(files("pyvale.data").joinpath(*parts)) + + def sim_case_input_file_path(case_num: int) -> Path: - """Gets the path to MOOSE input file (*.i) for a particular simulation + """Gets the path to MOOSE input file (``*.i``) for a particular simulation case. Parameters @@ -72,7 +82,7 @@ def sim_case_input_file_path(case_num: int) -> Path: Returns ------- Path - Path object to the MOOSE *.i file for the selected simulation case. + Path object to the MOOSE ``*.i`` file for the selected simulation case. Raises ------ @@ -87,14 +97,14 @@ def sim_case_input_file_path(case_num: int) -> Path: case_num_str = str(case_num).zfill(2) case_file = f"case{case_num_str}.i" - return Path(files("pyvale.simcases").joinpath(case_file)) + return _data_path("simulation", "simcases", case_file) def sim_case_gmsh_file_path(case_num: int) -> Path | None: - """Gets the path to Gmsh input file (*.geo) for a particular simulation + """Gets the path to Gmsh input file (``*.geo``) for a particular simulation case. Note that not all simulation cases use Gmsh for geometry and mesh generation. If the specified simulation case does not have an associated - Gmsh *.geo file. In this case 'None' is returned + Gmsh ``*.geo`` file, 'None' is returned. Parameters ---------- @@ -105,8 +115,8 @@ def sim_case_gmsh_file_path(case_num: int) -> Path | None: Returns ------- Path | None - Path object to the Gmsh *.geo file for the selected simulation case. - Returns None if there is no *.geo for this simulation case. + Path object to the Gmsh ``*.geo`` file for the selected simulation case. + Returns None if there is no ``*.geo`` for this simulation case. Raises ------ @@ -121,7 +131,7 @@ def sim_case_gmsh_file_path(case_num: int) -> Path | None: case_num_str = str(case_num).zfill(2) case_file = f"case{case_num_str}.geo" - case_path = Path(files("pyvale.simcases").joinpath(case_file)) + case_path = _data_path("simulation", "simcases", case_file) if case_path.is_file(): return case_path @@ -131,15 +141,16 @@ def sim_case_gmsh_file_path(case_num: int) -> Path | None: def dic_pattern_5mpx_path() -> Path: """Path to a 5 mega-pixel speckle pattern image (2464 x 2056 pixels) - with 8 bit resolution stored as a *.tiff. Speckles are sampled by + with 8 bit resolution stored as a ``*.tiff``. Speckles are sampled by 5 pixels. A gaussian blur has been applied to the image to remove sharp transitions from black to white. Path - Path to the *.tiff file containing the speckle pattern. + Path to the ``*.tiff`` file containing the speckle pattern. """ - return Path(files("pyvale.data") - .joinpath("optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff")) + return _data_path( + "render", "patterns", "optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff", + ) def thermal_2d_path() -> Path: @@ -158,7 +169,7 @@ def thermal_2d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case18_out.e")) + return _data_path("simulation", "exodus", "case18_out.e") def thermal_3d_path() -> Path: @@ -173,7 +184,7 @@ def thermal_3d_path() -> Path: The simulation parameters can be found in the corresponding MOOSE input file: case16.i which can be retrieved using `sim_case_input_file_path` - in this class. Note that this case uses a Gmsh *.geo file for geometry + in this class. Note that this case uses a Gmsh ``*.geo`` file for geometry and mesh creation. Returns @@ -181,7 +192,7 @@ def thermal_3d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case16_out.e")) + return _data_path("simulation", "exodus", "case16_out.e") def mechanical_2d_path() -> Path: @@ -192,7 +203,7 @@ def mechanical_2d_path() -> Path: The simulation parameters can be found in the corresponding MOOSE input file: case17.i which can be retrieved using `sim_case_input_file_path` - in this class. Note that this case uses a Gmsh *.geo file for geometry + in this class. Note that this case uses a Gmsh ``*.geo`` file for geometry and mesh creation. Returns @@ -200,7 +211,7 @@ def mechanical_2d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case17_out.e")) + return _data_path("simulation", "exodus", "case17_out.e") def thermomechanical_2d_path() -> Path: @@ -220,7 +231,7 @@ def thermomechanical_2d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case18_out.e")) + return _data_path("simulation", "exodus", "case18_out.e") def thermomechanical_3d_path() -> Path: @@ -241,7 +252,7 @@ def thermomechanical_3d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case16_out.e")) + return _data_path("simulation", "exodus", "case16_out.e") def thermomechanical_2d_experiment_paths() -> list[Path]: @@ -264,8 +275,10 @@ def thermomechanical_2d_experiment_paths() -> list[Path]: list[Path] Paths to the exodus (``*.e``) output files for this simulated experiment. """ - return [Path(files("pyvale.data").joinpath("case18_out.e")), - Path(files("pyvale.data").joinpath("case18_d_out.e"))] + return [ + _data_path("simulation", "exodus", "case18_out.e"), + _data_path("simulation", "exodus", "case18_d_out.e"), + ] def thermomechanical_3d_experiment_paths() -> list[Path]: """List of paths to MOOSE simulation output in exodus format. This case is a @@ -290,8 +303,10 @@ def thermomechanical_3d_experiment_paths() -> list[Path]: Paths to the exodus (``*.e``) output files for this simulated experiment. """ - return [Path(files("pyvale.data").joinpath("case16_out.e")), - Path(files("pyvale.data").joinpath("case16_d_out.e"))] + return [ + _data_path("simulation", "exodus", "case16_out.e"), + _data_path("simulation", "exodus", "case16_d_out.e"), + ] def render_mechanical_3d_path() -> Path: @@ -306,7 +321,7 @@ def render_mechanical_3d_path() -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data").joinpath("case26_out.e")) + return _data_path("simulation", "exodus", "case26_out.e") def element_case_input_path(elem_type: EElemTest) -> Path: @@ -327,8 +342,7 @@ def element_case_input_path(elem_type: EElemTest) -> Path: Path Path to the moose input file (.i) for this simulation case. """ - return Path(files("pyvale.simcases") - .joinpath(f"case00_{elem_type.value}.i")) + return _data_path("simulation", "simcases", f"case00_{elem_type.value}.i") @@ -350,8 +364,9 @@ def element_case_output_path(elem_type: EElemTest) -> Path: Path Path to the exodus (``*.e``) output file for this simulation case. """ - return Path(files("pyvale.data") - .joinpath(f"case00_{elem_type.value}_out.e")) + return _data_path( + "simulation", "exodus", f"case00_{elem_type.value}_out.e", + ) def dic_plate_with_hole_cam0_ref() -> Path: @@ -369,8 +384,7 @@ def dic_plate_with_hole_cam0_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hole_cam0_frame00.tiff")) + return _data_path("dic", "plate_hole", "hole_cam0_frame00.tiff") def dic_plate_with_hole_cam1_ref() -> Path: """ @@ -387,8 +401,7 @@ def dic_plate_with_hole_cam1_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hole_cam1_frame00.tiff")) + return _data_path("dic", "plate_hole", "hole_cam1_frame00.tiff") def dic_plate_with_hole_cam0_def() -> Path: @@ -406,8 +419,7 @@ def dic_plate_with_hole_cam0_def() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hole_cam0_frame*.tiff")) + return _data_path("dic", "plate_hole", "hole_cam0_frame*.tiff") def dic_plate_with_hole_cam1_def() -> Path: """ @@ -424,8 +436,7 @@ def dic_plate_with_hole_cam1_def() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hole_cam1_frame*.tiff")) + return _data_path("dic", "plate_hole", "hole_cam1_frame*.tiff") @@ -444,8 +455,7 @@ def dic_plate_with_hydro_cam0_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hydro_cam0_frame00.tiff")) + return _data_path("dic", "plate_hydro", "hydro_cam0_frame00.tiff") def dic_plate_with_hydro_cam1_ref() -> Path: """ @@ -462,8 +472,7 @@ def dic_plate_with_hydro_cam1_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hydro_cam1_frame00.tiff")) + return _data_path("dic", "plate_hydro", "hydro_cam1_frame00.tiff") def dic_plate_with_hydro_cam0_def() -> Path: @@ -481,8 +490,7 @@ def dic_plate_with_hydro_cam0_def() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hydro_cam0_frame*.tiff")) + return _data_path("dic", "plate_hydro", "hydro_cam0_frame*.tiff") def dic_plate_with_hydro_cam1_def() -> Path: """ @@ -499,8 +507,7 @@ def dic_plate_with_hydro_cam1_def() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("hydro_cam1_frame*.tiff")) + return _data_path("dic", "plate_hydro", "hydro_cam1_frame*.tiff") @@ -519,8 +526,7 @@ def dic_plate_rigid_cam0_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("rigid_cam0_frame00.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam0_frame00.tiff") def dic_plate_rigid_cam0_def() -> Path: @@ -533,8 +539,7 @@ def dic_plate_rigid_cam0_def() -> Path: Path Path to the deformation images (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("rigid_cam0_frame*.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam0_frame*.tiff") def dic_plate_rigid_cam1_ref() -> Path: @@ -552,8 +557,7 @@ def dic_plate_rigid_cam1_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("rigid_cam1_frame00.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam1_frame00.tiff") def dic_plate_rigid_cam1_def() -> Path: @@ -566,14 +570,13 @@ def dic_plate_rigid_cam1_def() -> Path: Path Path to the deformation images (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("rigid_cam1_frame*.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam1_frame*.tiff") def dic_plate_rigid_cam0_def_small() -> list[Path]: """ Returns rigid_cam0_frame0000.tiff to rigid_cam1_frame0010.tiff. """ - data_dir = files("pyvale.data") + data_dir = files("pyvale.data").joinpath("dic", "plate_rigid") return [ Path(data_dir.joinpath(f"rigid_cam0_frame{i:02d}.tiff")) @@ -584,7 +587,7 @@ def dic_plate_rigid_cam1_def_small() -> list[Path]: """ Returns rigid_cam1_frame0000.tiff to rigid_cam1_frame0010.tiff. """ - data_dir = files("pyvale.data") + data_dir = files("pyvale.data").joinpath("dic", "plate_rigid") return [ Path(data_dir.joinpath(f"rigid_cam1_frame{i:02d}.tiff")) @@ -601,7 +604,7 @@ def dic_plate_rigid_cam0_def_10px() -> Path: Path Path to the 25 px deformed image (``.tiff``). """ - return Path(files("pyvale.data").joinpath("rigid_cam0_frame11.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam0_frame11.tiff") def dic_plate_rigid_cam0_def_25px() -> Path: @@ -614,7 +617,7 @@ def dic_plate_rigid_cam0_def_25px() -> Path: Path Path to the 25 px deformed image (``.tiff``). """ - return Path(files("pyvale.data").joinpath("rigid_cam0_frame12.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam0_frame12.tiff") def dic_plate_rigid_cam0_def_50px() -> Path: @@ -627,7 +630,7 @@ def dic_plate_rigid_cam0_def_50px() -> Path: Path Path to the 50px deformed image (``.tiff``). """ - return Path(files("pyvale.data").joinpath("rigid_cam0_frame13.tiff")) + return _data_path("dic", "plate_rigid", "rigid_cam0_frame13.tiff") def dic_chal_2d_ref() -> Path: @@ -642,8 +645,9 @@ def dic_chal_2d_ref() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("DIC_Challenge_Star_Noise_Ref.tiff")) + return _data_path( + "dic", "challenge", "DIC_Challenge_Star_Noise_Ref.tiff", + ) def dic_chal_2d_def() -> Path: @@ -658,8 +662,9 @@ def dic_chal_2d_def() -> Path: Path Path to the deformed image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("DIC_Challenge_Star_Noise_Def.tiff")) + return _data_path( + "dic", "challenge", "DIC_Challenge_Star_Noise_Def.tiff", + ) def dic_chal_3d_cam0() -> Path: @@ -680,8 +685,9 @@ def dic_chal_3d_cam0() -> Path: Path Path to the reference image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("Step01_00,00-sys1-0000_0.tif")) + return _data_path( + "dic", "stereo_challenge", "Step01_00,00-sys1-0000_0.tif", + ) def dic_chal_3d_cam1() -> Path: @@ -702,8 +708,9 @@ def dic_chal_3d_cam1() -> Path: Path Path to the deformed image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("Step01_00,00-sys1-0000_1.tif")) + return _data_path( + "dic", "stereo_challenge", "Step01_00,00-sys1-0000_1.tif", + ) def cal_target() -> Path: """ @@ -714,15 +721,117 @@ def cal_target() -> Path: Path Path to the image (``.tiff``). """ - return Path(files("pyvale.data") - .joinpath("cal_target.tiff")) + return _data_path("calibration", "cal_target.tiff") + + +def riley_speckle_texture_path() -> Path: + """Return the texture packaged for the Riley parity examples.""" + return _data_path("render", "riley", "textures", "speckle.bmp") + + +def riley_cal_target_texture_path() -> Path: + """Return the Riley stereo-calibration target texture.""" + return _data_path( + "render", + "riley", + "textures", + "cal_target-simple.tiff", + ) + + +def riley_sphere200_case_path() -> Path: + """Return the Riley Tri6 sphere demonstration data directory.""" + return _data_path("render", "riley", "min", "tri6_sphere200") + + +def riley_platehole_csv_case_path() -> Path: + """Return the Riley plate-with-hole CSV demonstration data directory.""" + return _data_path("render", "riley", "fe", "platehole3d_2mr_63f") + + +def riley_platehole_exodus_path() -> Path: + """Return the Riley plate-with-hole Exodus demonstration file.""" + return _data_path( + "render", + "riley", + "fe", + "platehole3d_2mr_63f.e", + ) + + +def riley_stereocal_case_path() -> Path: + """Return the Riley stereo-calibration mesh data directory.""" + return _data_path("render", "riley", "calplate", "tri3_calplate3d") + + +def riley_rabbit_case_path( + rabbit_name: str, + topology: EElementType, +) -> Path: + """Return one Riley rabbit mesh case packaged with pyvale. + + Parameters + ---------- + rabbit_name : str + One of ``"riley"`` or ``"feebs"``. + topology : EElementType + One of the supported Riley surface topologies. + """ + path = _data_path( + "render", + "riley", + "rabbits", + f"{rabbit_name}_{topology.value}", + ) + if not path.is_dir(): + raise DataSetError( + f"Unknown Riley rabbit case: {rabbit_name}_{topology.value}." + ) + return path + + +def riley_rabbit_meshes() -> list[riley.Mesh]: + """Load the packaged Riley TRI3 rabbit meshes with the speckle texture. + + Returns + ------- + list[riley.Mesh] + The ``"riley"`` and ``"feebs"`` TRI3 surface meshes normalised to + the shared mesh convention and textured with the packaged speckle + image. + """ + from pyvale.dataio import SimData, enforce_mesh_convention + + texture = riley.load_texture_u8(str(riley_speckle_texture_path())) + meshes: list[riley.Mesh] = [] + for rabbit_name in ("riley", "feebs"): + data_path = riley_rabbit_case_path(rabbit_name, EElementType.TRI3) + mesh_data = enforce_mesh_convention(SimData( + coords=np.loadtxt(data_path / "coords.csv", delimiter=","), + connect={ + "connect1": np.loadtxt( + data_path / "connectivity.csv", + delimiter=",", + dtype=np.uintp, + ), + }, + )) + assert mesh_data.coords is not None and mesh_data.connect is not None + uvs = np.loadtxt(data_path / "uvs.csv", delimiter=",") + meshes.append(riley.Mesh( + riley.MeshType.tri3, + mesh_data.coords, + mesh_data.connect["connect1"], + shader_type=riley.ShaderType.tex, uvs=uvs, texture=texture, + )) + return meshes #TODO def valid_data_dir() -> Path: - return Path(str(files("pyvale.data.valid"))) + return _data_path("valid") def valid_data_csvs() -> list[Path]: - data_dir = files("pyvale.data.valid") + data_dir = files("pyvale.data").joinpath("valid") return [Path(str(ff)) for ff in data_dir.glob("*.csv")] diff --git a/src/pyvale/data/DIC_Challenge_Star_Noise_Def.tiff b/src/pyvale/data/dic/challenge/DIC_Challenge_Star_Noise_Def.tiff similarity index 100% rename from src/pyvale/data/DIC_Challenge_Star_Noise_Def.tiff rename to src/pyvale/data/dic/challenge/DIC_Challenge_Star_Noise_Def.tiff diff --git a/src/pyvale/data/DIC_Challenge_Star_Noise_Ref.tiff b/src/pyvale/data/dic/challenge/DIC_Challenge_Star_Noise_Ref.tiff similarity index 100% rename from src/pyvale/data/DIC_Challenge_Star_Noise_Ref.tiff rename to src/pyvale/data/dic/challenge/DIC_Challenge_Star_Noise_Ref.tiff diff --git a/src/pyvale/data/hole_cam0_frame00.tiff b/src/pyvale/data/dic/plate_hole/hole_cam0_frame00.tiff similarity index 100% rename from src/pyvale/data/hole_cam0_frame00.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam0_frame00.tiff diff --git a/src/pyvale/data/hole_cam0_frame05.tiff b/src/pyvale/data/dic/plate_hole/hole_cam0_frame05.tiff similarity index 100% rename from src/pyvale/data/hole_cam0_frame05.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam0_frame05.tiff diff --git a/src/pyvale/data/hole_cam0_frame10.tiff b/src/pyvale/data/dic/plate_hole/hole_cam0_frame10.tiff similarity index 100% rename from src/pyvale/data/hole_cam0_frame10.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam0_frame10.tiff diff --git a/src/pyvale/data/hole_cam1_frame00.tiff b/src/pyvale/data/dic/plate_hole/hole_cam1_frame00.tiff similarity index 100% rename from src/pyvale/data/hole_cam1_frame00.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam1_frame00.tiff diff --git a/src/pyvale/data/hole_cam1_frame05.tiff b/src/pyvale/data/dic/plate_hole/hole_cam1_frame05.tiff similarity index 100% rename from src/pyvale/data/hole_cam1_frame05.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam1_frame05.tiff diff --git a/src/pyvale/data/hole_cam1_frame10.tiff b/src/pyvale/data/dic/plate_hole/hole_cam1_frame10.tiff similarity index 100% rename from src/pyvale/data/hole_cam1_frame10.tiff rename to src/pyvale/data/dic/plate_hole/hole_cam1_frame10.tiff diff --git a/src/pyvale/data/hydro_cam0_frame00.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam0_frame00.tiff similarity index 100% rename from src/pyvale/data/hydro_cam0_frame00.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam0_frame00.tiff diff --git a/src/pyvale/data/hydro_cam0_frame05.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam0_frame05.tiff similarity index 100% rename from src/pyvale/data/hydro_cam0_frame05.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam0_frame05.tiff diff --git a/src/pyvale/data/hydro_cam0_frame10.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam0_frame10.tiff similarity index 100% rename from src/pyvale/data/hydro_cam0_frame10.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam0_frame10.tiff diff --git a/src/pyvale/data/hydro_cam1_frame00.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam1_frame00.tiff similarity index 100% rename from src/pyvale/data/hydro_cam1_frame00.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam1_frame00.tiff diff --git a/src/pyvale/data/hydro_cam1_frame05.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam1_frame05.tiff similarity index 100% rename from src/pyvale/data/hydro_cam1_frame05.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam1_frame05.tiff diff --git a/src/pyvale/data/hydro_cam1_frame10.tiff b/src/pyvale/data/dic/plate_hydro/hydro_cam1_frame10.tiff similarity index 100% rename from src/pyvale/data/hydro_cam1_frame10.tiff rename to src/pyvale/data/dic/plate_hydro/hydro_cam1_frame10.tiff diff --git a/src/pyvale/data/rigid_cam0_frame00.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame00.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame00.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame00.tiff diff --git a/src/pyvale/data/rigid_cam0_frame01.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame01.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame01.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame01.tiff diff --git a/src/pyvale/data/rigid_cam0_frame02.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame02.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame02.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame02.tiff diff --git a/src/pyvale/data/rigid_cam0_frame03.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame03.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame03.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame03.tiff diff --git a/src/pyvale/data/rigid_cam0_frame04.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame04.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame04.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame04.tiff diff --git a/src/pyvale/data/rigid_cam0_frame05.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame05.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame05.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame05.tiff diff --git a/src/pyvale/data/rigid_cam0_frame06.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame06.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame06.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame06.tiff diff --git a/src/pyvale/data/rigid_cam0_frame07.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame07.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame07.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame07.tiff diff --git a/src/pyvale/data/rigid_cam0_frame08.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame08.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame08.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame08.tiff diff --git a/src/pyvale/data/rigid_cam0_frame09.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame09.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame09.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame09.tiff diff --git a/src/pyvale/data/rigid_cam0_frame10.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame10.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame10.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame10.tiff diff --git a/src/pyvale/data/rigid_cam0_frame11.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame11.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame11.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame11.tiff diff --git a/src/pyvale/data/rigid_cam0_frame12.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame12.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame12.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame12.tiff diff --git a/src/pyvale/data/rigid_cam0_frame13.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam0_frame13.tiff similarity index 100% rename from src/pyvale/data/rigid_cam0_frame13.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam0_frame13.tiff diff --git a/src/pyvale/data/rigid_cam1_frame00.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame00.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame00.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame00.tiff diff --git a/src/pyvale/data/rigid_cam1_frame01.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame01.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame01.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame01.tiff diff --git a/src/pyvale/data/rigid_cam1_frame02.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame02.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame02.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame02.tiff diff --git a/src/pyvale/data/rigid_cam1_frame03.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame03.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame03.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame03.tiff diff --git a/src/pyvale/data/rigid_cam1_frame04.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame04.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame04.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame04.tiff diff --git a/src/pyvale/data/rigid_cam1_frame05.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame05.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame05.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame05.tiff diff --git a/src/pyvale/data/rigid_cam1_frame06.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame06.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame06.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame06.tiff diff --git a/src/pyvale/data/rigid_cam1_frame07.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame07.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame07.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame07.tiff diff --git a/src/pyvale/data/rigid_cam1_frame08.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame08.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame08.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame08.tiff diff --git a/src/pyvale/data/rigid_cam1_frame09.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame09.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame09.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame09.tiff diff --git a/src/pyvale/data/rigid_cam1_frame10.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame10.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame10.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame10.tiff diff --git a/src/pyvale/data/rigid_cam1_frame11.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame11.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame11.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame11.tiff diff --git a/src/pyvale/data/rigid_cam1_frame12.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame12.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame12.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame12.tiff diff --git a/src/pyvale/data/rigid_cam1_frame13.tiff b/src/pyvale/data/dic/plate_rigid/rigid_cam1_frame13.tiff similarity index 100% rename from src/pyvale/data/rigid_cam1_frame13.tiff rename to src/pyvale/data/dic/plate_rigid/rigid_cam1_frame13.tiff diff --git a/src/pyvale/data/Step01_00,00-sys1-0000_0.tif b/src/pyvale/data/dic/stereo_challenge/Step01_00,00-sys1-0000_0.tif similarity index 100% rename from src/pyvale/data/Step01_00,00-sys1-0000_0.tif rename to src/pyvale/data/dic/stereo_challenge/Step01_00,00-sys1-0000_0.tif diff --git a/src/pyvale/data/Step01_00,00-sys1-0000_1.tif b/src/pyvale/data/dic/stereo_challenge/Step01_00,00-sys1-0000_1.tif similarity index 100% rename from src/pyvale/data/Step01_00,00-sys1-0000_1.tif rename to src/pyvale/data/dic/stereo_challenge/Step01_00,00-sys1-0000_1.tif diff --git a/src/pyvale/data/optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff b/src/pyvale/data/render/patterns/optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff similarity index 100% rename from src/pyvale/data/optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff rename to src/pyvale/data/render/patterns/optspeckle_2464x2056px_spec5px_8bit_gblur1px.tiff diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/connect.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/connect.csv new file mode 100644 index 000000000..070f84829 --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/connect.csv @@ -0,0 +1,12 @@ +4,5,6 +4,6,7 +0,3,2 +0,2,1 +0,1,5 +0,5,4 +1,2,6 +1,6,5 +2,3,7 +2,7,6 +3,0,4 +3,4,7 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/coords.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/coords.csv new file mode 100644 index 000000000..09b824906 --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/coords.csv @@ -0,0 +1,8 @@ +-0.0093750000,-0.0062523496,-0.0006252350 +0.0093750000,-0.0062523496,-0.0006252350 +0.0093750000,0.0062523496,-0.0006252350 +-0.0093750000,0.0062523496,-0.0006252350 +-0.0093750000,-0.0062523496,0.0006252350 +0.0093750000,-0.0062523496,0.0006252350 +0.0093750000,0.0062523496,0.0006252350 +-0.0093750000,0.0062523496,0.0006252350 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_x.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_x.csv new file mode 100644 index 000000000..bde483330 --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_x.csv @@ -0,0 +1,8 @@ +0.0000000000,0.0027045722,0.0016599228,0.0028907468,-0.0007159708,-0.0014232152,0.0009284174,-0.0032876184,-0.0028061296,-0.0022101700,0.0009057434,0.0032046468,-0.0016893459,0.0019717087,-0.0015342183,-0.0016934646,0.0030076133,0.0007294418,-0.0037355289,0.0008044403,-0.0007887104,-0.0014251878,0.0043042718,0.0021844917,0.0015333626,-0.0004679588,0.0024070372,0.0024250061,0.0034711079,-0.0045325533,0.0004147509,-0.0033382816,0.0030935970,0.0003430441,0.0007653137,0.0029638435,-0.0034170878,-0.0010310412,-0.0035192129,-0.0011309317,0.0017686756,-0.0032759313,-0.0009728200,-0.0009047997,0.0002853442,-0.0013829276,-0.0020768251,-0.0025015259,0.0028006719,0.0001151604,-0.0036442685,0.0005560940,-0.0026626355,0.0005347027,0.0025408820,-0.0044962396,-0.0025314673,0.0023131302,-0.0018462169,-0.0045016586,0.0001933696,0.0012400906,-0.0015164658,0.0004998339,0.0025512756,-0.0024931233,0.0026135767,-0.0044813561,0.0049510684,0.0037037349,0.0026004212,-0.0020704670,0.0006967874,-0.0007367286,0.0035268815,0.0025253619,0.0014534656,0.0036877234,-0.0009711952,-0.0028044554,0.0048407230,-0.0005958224,-0.0036380369,0.0003013868,0.0013710205,-0.0003795309,0.0021582077,-0.0043780304,-0.0001659385,0.0036567351,0.0051356549,0.0013215555,0.0035244067,-0.0034843322,-0.0033803968,-0.0021590672,0.0018414453,-0.0005821883,0.0014904617,0.0040939087 +0.0000000000,0.0027017165,0.0013276293,0.0028764709,-0.0009496350,-0.0017555087,0.0007346328,-0.0033589261,-0.0030937965,-0.0023525973,0.0006640349,0.0031333391,-0.0022015371,0.0017295837,-0.0015599145,-0.0019811316,0.0027513898,0.0004763130,-0.0037469509,0.0007758922,-0.0009398069,-0.0014993820,0.0041305988,0.0021473892,0.0012491740,-0.0005848085,0.0020968767,0.0022825788,0.0031412731,-0.0047746783,0.0002098847,-0.0036591549,0.0028998125,-0.0000120760,0.0005715292,0.0029153207,-0.0036447911,-0.0011821377,-0.0037240792,-0.0013247162,0.0017658199,-0.0034240696,-0.0011666045,-0.0009504738,-0.0000835384,-0.0014542353,-0.0022050950,-0.0025300739,0.0024683784,0.0000409661,-0.0039004919,0.0003710007,-0.0028479371,0.0004605085,0.0024240323,-0.0046900241,-0.0025828245,0.0018009389,-0.0020400014,-0.0046954431,-0.0002711866,0.0010549974,-0.0016077027,-0.0000123574,0.0022670870,-0.0027037005,0.0022275680,-0.0047344848,0.0045650597,0.0036923129,0.0025889992,-0.0020847430,0.0003669526,-0.0010209172,0.0034555738,0.0024284141,0.0012485993,0.0036049955,-0.0013936862,-0.0031253287,0.0046070589,-0.0006215187,-0.0036437479,-0.0002108044,0.0009064643,-0.0007093657,0.0018030876,-0.0045886077,-0.0003085326,0.0034146101,0.0047245842,0.0008093643,0.0033393135,-0.0037179964,-0.0038028879,-0.0023441605,0.0016761810,-0.0008663768,0.0013935139,0.0039428122 +0.0000000000,0.0029166381,0.0000205323,0.0026892030,-0.0009622327,-0.0006589270,-0.0009806823,-0.0023865279,-0.0009223783,-0.0035155340,-0.0007656935,0.0025096929,0.0000031716,0.0036929743,-0.0022044174,-0.0018387973,0.0007126983,-0.0005523743,-0.0038076871,0.0010055160,-0.0012418147,-0.0004223975,0.0030636336,0.0016242028,0.0024004493,0.0005490323,0.0030107106,0.0033141199,0.0042352005,-0.0028975381,0.0015832238,-0.0021157232,0.0027097097,-0.0022981110,0.0012746438,0.0025778275,-0.0042669704,-0.0026625262,-0.0022111083,-0.0009187292,0.0019832265,-0.0040816372,-0.0028412831,-0.0010567784,0.0017544017,-0.0024179082,-0.0034763373,-0.0031530812,0.0046024183,-0.0000041190,-0.0019229590,0.0011625265,-0.0010967834,-0.0005750383,0.0012901915,-0.0029575137,-0.0031653704,-0.0002308076,-0.0037146800,-0.0029551254,-0.0022605863,0.0025938147,-0.0023331243,-0.0021819878,0.0010211898,-0.0013897726,0.0009204710,-0.0029231217,0.0024164377,0.0037530491,0.0030253404,-0.0016562128,0.0013882130,-0.0029060077,0.0040635331,0.0029855121,0.0024374255,0.0039251609,0.0008287860,-0.0048484194,0.0026445620,-0.0012734737,-0.0038379810,0.0017844500,-0.0015063298,0.0001629180,-0.0003867316,-0.0032526507,0.0000154613,0.0036442767,0.0024996544,0.0026526860,0.0019888675,-0.0042063139,-0.0024725883,-0.0033203651,0.0000766701,0.0007291081,0.0021581390,0.0035598227 +0.0000000000,0.0029194938,0.0003528258,0.0027034790,-0.0007285685,-0.0003266335,-0.0007868978,-0.0023152202,-0.0006347113,-0.0033731067,-0.0005239850,0.0025810006,0.0005153628,0.0039350993,-0.0021787212,-0.0015511303,0.0009689218,-0.0002992456,-0.0037962651,0.0010340640,-0.0010907182,-0.0003482032,0.0032373066,0.0016613054,0.0026846379,0.0006658820,0.0033208711,0.0034565472,0.0045650353,-0.0026554131,0.0017880900,-0.0017948500,0.0029034943,-0.0019429910,0.0014684284,0.0026263503,-0.0040392671,-0.0025114297,-0.0020062421,-0.0007249447,0.0019860822,-0.0039334989,-0.0026474986,-0.0010111044,0.0021232843,-0.0023466005,-0.0033480674,-0.0031245332,0.0049347118,0.0000700753,-0.0016667356,0.0013476197,-0.0009114817,-0.0005008440,0.0014070412,-0.0027637291,-0.0031140131,0.0002813836,-0.0035208955,-0.0027613408,-0.0017960301,0.0027789080,-0.0022418874,-0.0016697966,0.0013053783,-0.0011791954,0.0013064797,-0.0026699929,0.0028024463,0.0037644711,0.0030367624,-0.0016419369,0.0017180478,-0.0026218191,0.0041348407,0.0030824599,0.0026422917,0.0040078888,0.0012512770,-0.0045275462,0.0028782262,-0.0012477775,-0.0038322700,0.0022966412,-0.0010417736,0.0004927528,-0.0000316115,-0.0030420735,0.0001580554,0.0038864017,0.0029107252,0.0031648772,0.0021739607,-0.0039726497,-0.0020500973,-0.0031352718,0.0002419344,0.0010132967,0.0022550869,0.0037109192 +0.0000000000,0.0027083619,0.0018544677,0.0029357970,-0.0009127673,-0.0012160730,0.0009806823,-0.0032384721,-0.0028276217,-0.0021094660,0.0007656935,0.0031153071,-0.0018781716,0.0019320257,-0.0015455826,-0.0019112027,0.0030373017,0.0005523743,-0.0036923129,0.0008694840,-0.0006331853,-0.0014526025,0.0044363664,0.0021257972,0.0013495507,-0.0005490323,0.0026142894,0.0023108801,0.0032647995,-0.0046024619,0.0002917762,-0.0035092768,0.0029152903,0.0004231110,0.0006003562,0.0030471725,-0.0032330296,-0.0010874738,-0.0034138917,-0.0009562708,0.0017667735,-0.0034183628,-0.0009087169,-0.0008182216,0.0001205983,-0.0013320918,-0.0021486627,-0.0024719188,0.0028975817,0.0000041190,-0.0037020410,0.0007124735,-0.0026532166,0.0005750383,0.0024598085,-0.0045424863,-0.0024596296,0.0021058076,-0.0019103200,-0.0045448746,0.0003855863,0.0011561853,-0.0014168757,0.0003069878,0.0027288102,-0.0023602274,0.0028295290,-0.0045768783,0.0050835623,0.0037469509,0.0025996596,-0.0020937872,0.0004867870,-0.0008439923,0.0034364669,0.0026394879,0.0013125745,0.0035748391,-0.0008287860,-0.0026515806,0.0048554380,-0.0006015263,-0.0036620190,0.0000905500,0.0015063298,-0.0001629180,0.0022617316,-0.0042473493,-0.0000154613,0.0038557233,0.0050003456,0.0010973140,0.0036361325,-0.0032936861,-0.0031524117,-0.0023046349,0.0017983299,-0.0007291081,0.0015918610,0.0039401773 +0.0000000000,0.0027055062,0.0015221742,0.0029215210,-0.0011464315,-0.0015483665,0.0007868978,-0.0033097798,-0.0031152887,-0.0022518933,0.0005239850,0.0030439994,-0.0023903628,0.0016899007,-0.0015712788,-0.0021988697,0.0027810782,0.0002992456,-0.0037037349,0.0008409360,-0.0007842818,-0.0015267968,0.0042626934,0.0020886946,0.0010653621,-0.0006658820,0.0023041289,0.0021684528,0.0029349647,-0.0048445869,0.0000869100,-0.0038301500,0.0027215057,0.0000679910,0.0004065716,0.0029986497,-0.0034607329,-0.0012385703,-0.0036187579,-0.0011500553,0.0017639178,-0.0035665011,-0.0011025014,-0.0008638956,-0.0002482843,-0.0014033995,-0.0022769326,-0.0025004668,0.0025652882,-0.0000700753,-0.0039582644,0.0005273803,-0.0028385183,0.0005008440,0.0023429588,-0.0047362709,-0.0025109869,0.0015936164,-0.0021041045,-0.0047386592,-0.0000789699,0.0009710920,-0.0015081126,-0.0002052034,0.0024446217,-0.0025708046,0.0024435203,-0.0048300071,0.0046975537,0.0037355289,0.0025882376,-0.0021080631,0.0001569522,-0.0011281809,0.0033651593,0.0025425401,0.0011077083,0.0034921112,-0.0012512770,-0.0029724538,0.0046217738,-0.0006272225,-0.0036677300,-0.0004216412,0.0010417736,-0.0004927528,0.0019066115,-0.0044579265,-0.0001580554,0.0036135983,0.0045892748,0.0005851228,0.0034510393,-0.0035273503,-0.0035749027,-0.0024897282,0.0016330656,-0.0010132967,0.0014949131,0.0037890808 +0.0000000000,0.0029204278,0.0002150772,0.0027342532,-0.0011590292,-0.0004517848,-0.0009284174,-0.0023373816,-0.0009438704,-0.0034148300,-0.0009057434,0.0024203532,-0.0001856541,0.0036532913,-0.0022157817,-0.0020565354,0.0007423867,-0.0007294418,-0.0037644711,0.0010705597,-0.0010862896,-0.0004498122,0.0031957282,0.0015655083,0.0022166374,0.0004679588,0.0032179628,0.0031999939,0.0040288921,-0.0029674467,0.0014602491,-0.0022867184,0.0025314030,-0.0022180441,0.0011096863,0.0026611565,-0.0040829122,-0.0027189588,-0.0021057871,-0.0007440683,0.0019813244,-0.0042240687,-0.0027771800,-0.0009702003,0.0015896558,-0.0023670724,-0.0035481749,-0.0031234741,0.0046993281,-0.0001151604,-0.0019807315,0.0013189060,-0.0010873645,-0.0005347027,0.0012091180,-0.0030037604,-0.0030935327,-0.0004381302,-0.0037787831,-0.0029983414,-0.0020683696,0.0025099094,-0.0022335342,-0.0023748339,0.0011987244,-0.0012568767,0.0011364233,-0.0030186439,0.0025489316,0.0037962651,0.0030245788,-0.0016795330,0.0011782126,-0.0030132714,0.0039731185,0.0030996381,0.0022965344,0.0038122766,0.0009711952,-0.0046955446,0.0026592770,-0.0012791776,-0.0038619631,0.0015736132,-0.0013710205,0.0003795309,-0.0002832077,-0.0031219696,0.0001659385,0.0038432649,0.0023643451,0.0024284445,0.0021005933,-0.0040156678,-0.0022446032,-0.0034659328,0.0000335547,0.0005821883,0.0022595383,0.0034060913 +0.0000000000,0.0029232835,0.0005473707,0.0027485291,-0.0009253650,-0.0001194913,-0.0007346328,-0.0022660739,-0.0006562035,-0.0032724027,-0.0006640349,0.0024916609,0.0003265371,0.0038954163,-0.0021900855,-0.0017688684,0.0009986102,-0.0004763130,-0.0037530491,0.0010991078,-0.0009351931,-0.0003756180,0.0033694012,0.0016026108,0.0025008260,0.0005848085,0.0035281233,0.0033424212,0.0043587269,-0.0027253217,0.0016651153,-0.0019658451,0.0027251875,-0.0018629240,0.0013034708,0.0027096793,-0.0038552089,-0.0025678623,-0.0019009208,-0.0005502838,0.0019841801,-0.0040759304,-0.0025833955,-0.0009245262,0.0019585384,-0.0022957647,-0.0034199050,-0.0030949261,0.0050316216,-0.0000409661,-0.0017245081,0.0015039993,-0.0009020629,-0.0004605085,0.0013259677,-0.0028099759,-0.0030421755,0.0000740611,-0.0035849986,-0.0028045569,-0.0016038134,0.0026950026,-0.0021422973,-0.0018626426,0.0014829130,-0.0010462995,0.0015224320,-0.0027655152,0.0029349403,0.0038076871,0.0030360008,-0.0016652570,0.0015080474,-0.0027290828,0.0040444262,0.0031965859,0.0025014007,0.0038950045,0.0013936862,-0.0043746713,0.0028929411,-0.0012534813,-0.0038562521,0.0020858044,-0.0009064643,0.0007093657,0.0000719124,-0.0029113923,0.0003085326,0.0040853899,0.0027754158,0.0029406357,0.0022856865,-0.0037820036,-0.0018221121,-0.0032808395,0.0001988190,0.0008663768,0.0023564861,0.0035571878 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_y.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_y.csv new file mode 100644 index 000000000..0f0860197 --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_y.csv @@ -0,0 +1,8 @@ +0.0000000000,0.0010884870,-0.0028188622,-0.0019793743,-0.0011293354,-0.0009043119,0.0006681615,-0.0009974250,0.0017207961,0.0010551157,0.0007595551,-0.0014348881,0.0007415703,0.0015300023,-0.0023706460,0.0011226532,-0.0023346551,-0.0007983517,0.0009113315,0.0020518773,-0.0002476648,-0.0000570610,0.0001538128,0.0017025678,0.0029405362,0.0008130184,0.0025019615,0.0018091732,0.0006286185,0.0026180685,0.0009815690,0.0014540266,-0.0012850616,-0.0024912730,-0.0006287602,0.0007493756,-0.0023743276,-0.0020628655,0.0002923704,-0.0015546397,0.0011803415,-0.0025335637,0.0007467853,0.0018454071,-0.0007044598,-0.0025323048,-0.0000292560,-0.0012981363,0.0036092404,-0.0020584182,0.0033954208,0.0006427541,0.0023637427,0.0003445270,-0.0026193834,0.0023104828,-0.0013229324,-0.0015357789,-0.0022105972,-0.0005132364,-0.0021874661,0.0030470739,-0.0014080484,-0.0012342917,0.0009520579,0.0010258548,-0.0000046644,0.0003927476,-0.0015256901,0.0001478633,0.0012803484,0.0022310418,0.0025036754,-0.0010950343,0.0005357833,0.0023420479,0.0020114337,0.0023004125,-0.0001211147,-0.0011117762,-0.0004707730,-0.0023877396,0.0016812521,0.0036232694,-0.0024664230,0.0016043356,-0.0024818876,0.0020977757,-0.0016505611,0.0021707052,-0.0011372287,-0.0000433185,-0.0009055613,-0.0020611288,0.0020804489,-0.0024411507,-0.0018755950,0.0005010309,0.0006026379,-0.0022122063 +0.0000000000,0.0007612543,-0.0008830832,-0.0016523410,-0.0008061316,-0.0028400909,0.0032760675,-0.0023035664,-0.0015346113,0.0026830673,0.0030320875,-0.0004559793,-0.0024742474,-0.0014013571,-0.0013893468,0.0008003919,0.0005944713,0.0008199148,0.0009113315,0.0017250932,0.0004018232,-0.0016909822,0.0017790308,0.0023560366,0.0009997012,-0.0008171710,0.0015355705,0.0001812215,-0.0006594449,-0.0003132909,-0.0009676031,-0.0011360183,-0.0006370643,0.0007522407,-0.0012767575,0.0010758111,-0.0010791224,0.0002207927,-0.0016568017,-0.0022026371,0.0008531089,-0.0012327948,0.0033546913,0.0018454071,-0.0029613772,-0.0012261634,0.0019279667,-0.0003169866,0.0006921623,-0.0017324308,0.0004662944,-0.0006554306,-0.0002453555,0.0019784482,-0.0009891940,-0.0002974233,-0.0003429781,0.0016800388,0.0003973088,-0.0031211424,0.0003823854,0.0007675900,-0.0001033006,0.0016542935,0.0028928928,-0.0005961345,0.0019254689,-0.0022068181,0.0017123770,0.0001478633,0.0006259829,0.0015767759,0.0012156120,0.0015001663,-0.0004431255,0.0013644829,0.0000622616,0.0016485370,-0.0033527490,0.0011510361,0.0024619265,-0.0014064404,0.0020084349,0.0004074516,0.0007577941,0.0003162722,0.0007616261,-0.0001785792,-0.0019753546,0.0015243960,0.0017673723,-0.0032591362,0.0013739226,-0.0017379250,-0.0001698863,-0.0011429660,0.0004063236,-0.0020941697,-0.0003749271,-0.0015627183 +0.0000000000,0.0005694043,-0.0009515853,-0.0016841704,-0.0008729591,-0.0029553463,0.0031405808,-0.0025314663,-0.0017245858,0.0025985123,0.0029197575,-0.0004791304,-0.0026720258,-0.0015583832,-0.0015961982,0.0007921936,0.0002351044,0.0007700356,0.0007896367,0.0017210851,0.0003512858,-0.0017546430,0.0017315375,0.0022236197,0.0008997304,-0.0008858060,0.0014115032,0.0001215366,-0.0007740739,-0.0005779399,-0.0010602992,-0.0013241668,-0.0007578497,0.0004474101,-0.0014477361,0.0009501116,-0.0012140863,0.0000849905,-0.0019379628,-0.0022110980,0.0008036275,-0.0014025708,0.0031480972,0.0017521990,-0.0032845410,-0.0014173443,0.0018460014,-0.0004258123,0.0003541636,-0.0018852900,0.0003012441,-0.0006974234,-0.0003993334,0.0017449154,-0.0010578290,-0.0004199441,-0.0004249433,0.0014837615,0.0001907147,-0.0032428373,0.0001315602,0.0006706362,-0.0002778213,0.0013971745,0.0028231637,-0.0008178641,0.0018569669,-0.0023692580,0.0015244882,0.0000261685,0.0006164620,0.0015618113,0.0011441985,0.0012640008,-0.0004749873,0.0013047979,-0.0000416560,0.0015764349,-0.0035594607,0.0009394671,0.0022992577,-0.0014710966,0.0019384369,0.0002002213,0.0003689300,0.0002858114,0.0005664731,-0.0004038157,-0.0020095706,0.0014554542,0.0013785082,-0.0035475870,0.0011106156,-0.0018662572,-0.0002872599,-0.0012112288,0.0001812277,-0.0022646849,-0.0004664347,-0.0015760926 +0.0000000000,0.0008966369,-0.0028873643,-0.0020112037,-0.0011961630,-0.0010195673,0.0005326748,-0.0012253249,0.0015308217,0.0009705606,0.0006472250,-0.0014580392,0.0005437920,0.0013729762,-0.0025774974,0.0011144548,-0.0026940220,-0.0008482309,0.0007896367,0.0020478692,-0.0002982022,-0.0001207217,0.0001063195,0.0015701509,0.0028405654,0.0007443834,0.0023778942,0.0017494883,0.0005139895,0.0023534196,0.0008888729,0.0012658781,-0.0014058470,-0.0027961035,-0.0007997388,0.0006236761,-0.0025092914,-0.0021986677,0.0000112093,-0.0015631006,0.0011308601,-0.0027033397,0.0005401912,0.0017521990,-0.0010276235,-0.0027234857,-0.0001112213,-0.0014069620,0.0032712417,-0.0022112774,0.0032303706,0.0006007614,0.0022097648,0.0001109941,-0.0026880184,0.0021879619,-0.0014048977,-0.0017320563,-0.0024171913,-0.0006349312,-0.0024382913,0.0029501202,-0.0015825692,-0.0014914106,0.0008823287,0.0008041252,-0.0000731664,0.0002303078,-0.0017135789,0.0000261685,0.0012708275,0.0022160772,0.0024322620,-0.0013311998,0.0005039215,0.0022823630,0.0019075161,0.0022283104,-0.0003278264,-0.0013233451,-0.0006334418,-0.0024523958,0.0016112541,0.0034160391,-0.0028552871,0.0015738748,-0.0026770405,0.0018725392,-0.0016847771,0.0021017635,-0.0015260929,-0.0003317693,-0.0011688683,-0.0021894610,0.0019630752,-0.0025094136,-0.0021006909,0.0003305157,0.0005111303,-0.0022255806 +0.0000000000,0.0013055957,-0.0027984147,-0.0020658296,-0.0010020409,-0.0007946537,0.0006094192,-0.0012185337,0.0017245858,0.0011514877,0.0008302425,-0.0013958696,0.0007970258,0.0015583832,-0.0021538018,0.0010828064,-0.0021101044,-0.0007700356,0.0010853633,0.0020289149,-0.0003512858,-0.0001203570,0.0001434625,0.0015263803,0.0028502696,0.0008858060,0.0023384968,0.0017534634,0.0007740739,0.0024529399,0.0010602992,0.0013241668,-0.0011171503,-0.0023224101,-0.0004272639,0.0009248884,-0.0025359137,-0.0019599905,0.0000629628,-0.0015389020,0.0010713725,-0.0023474292,0.0006019028,0.0019978010,-0.0004654590,-0.0023326557,0.0000289986,-0.0014491877,0.0033958364,-0.0018647100,0.0034487559,0.0006974234,0.0022743334,0.0001300846,-0.0026921710,0.0022949441,-0.0014500567,-0.0014837615,-0.0020657147,-0.0005071627,-0.0020065602,0.0030793638,-0.0015971787,-0.0013971745,0.0009268363,0.0008178641,0.0000180331,0.0004942580,-0.0015244882,-0.0000261685,0.0012585380,0.0021881887,0.0026058015,-0.0012640008,0.0004749873,0.0024452021,0.0019166560,0.0021735651,-0.0001905393,-0.0009394671,-0.0004242577,-0.0022789034,0.0018115631,0.0035497787,-0.0022439300,0.0015891886,-0.0024414731,0.0022788157,-0.0017404294,0.0022945458,-0.0013785082,-0.0002024130,-0.0011106156,-0.0018837428,0.0021622599,-0.0025387712,-0.0020562277,0.0003896849,0.0004664347,-0.0021739074 +0.0000000000,0.0009783631,-0.0008626357,-0.0017387963,-0.0006788370,-0.0027304327,0.0032173252,-0.0025246751,-0.0015308217,0.0027794394,0.0031027750,-0.0004169608,-0.0024187920,-0.0013729762,-0.0011725026,0.0007605452,0.0008190220,0.0008482309,0.0010853633,0.0017021308,0.0002982022,-0.0017542783,0.0017686805,0.0021798491,0.0009094346,-0.0007443834,0.0013721058,0.0001255117,-0.0005139895,-0.0004784196,-0.0008888729,-0.0012658781,-0.0004691530,0.0009211035,-0.0010752612,0.0012513239,-0.0012407086,0.0003236677,-0.0018862093,-0.0021868994,0.0007441399,-0.0010466603,0.0032098088,0.0019978010,-0.0027223765,-0.0010265143,0.0019862213,-0.0004680380,0.0004787583,-0.0015387226,0.0005196294,-0.0006007614,-0.0003347648,0.0017640059,-0.0010619816,-0.0003129619,-0.0004701023,0.0017320563,0.0005421913,-0.0031150688,0.0005632913,0.0007998798,-0.0002924308,0.0014914106,0.0028676713,-0.0008041252,0.0019481664,-0.0021053078,0.0017135789,-0.0000261685,0.0006041725,0.0015339228,0.0013177380,0.0013311998,-0.0005039215,0.0014676370,-0.0000325161,0.0015216896,-0.0034221736,0.0013233451,0.0025084418,-0.0012976042,0.0021387459,0.0003339609,0.0009802871,0.0003011252,0.0008020405,0.0000024608,-0.0020652229,0.0016482365,0.0015260929,-0.0034182307,0.0011688683,-0.0015605390,-0.0000880752,-0.0012405864,0.0002256909,-0.0022055157,-0.0005111303,-0.0015244194 +0.0000000000,0.0007865130,-0.0009311378,-0.0017706257,-0.0007456646,-0.0028456881,0.0030818385,-0.0027525750,-0.0017207961,0.0026948843,0.0029904449,-0.0004401119,-0.0026165703,-0.0015300023,-0.0013793540,0.0007523468,0.0004596551,0.0007983517,0.0009636685,0.0016981227,0.0002476648,-0.0018179390,0.0017211872,0.0020474322,0.0008094638,-0.0008130184,0.0012480385,0.0000658268,-0.0006286185,-0.0007430685,-0.0009815690,-0.0014540266,-0.0005899384,0.0006162730,-0.0012462398,0.0011256244,-0.0013756724,0.0001878655,-0.0021673704,-0.0021953603,0.0006946585,-0.0012164363,0.0030032147,0.0019045929,-0.0030455402,-0.0012176952,0.0019042560,-0.0005768637,0.0001407596,-0.0016915818,0.0003545792,-0.0006427541,-0.0004887427,0.0015304730,-0.0011306166,-0.0004354828,-0.0005520676,0.0015357789,0.0003355972,-0.0032367636,0.0003124661,0.0007029261,-0.0004669516,0.0012342917,0.0027979421,-0.0010258548,0.0018796644,-0.0022677476,0.0015256901,-0.0001478633,0.0005946516,0.0015189582,0.0012463246,0.0010950343,-0.0005357833,0.0014079521,-0.0001364337,0.0014495875,-0.0036288853,0.0011117762,0.0023457730,-0.0013622604,0.0020687479,0.0001267306,0.0005914230,0.0002706644,0.0006068876,-0.0002227757,-0.0020994389,0.0015792948,0.0011372287,-0.0037066815,0.0009055613,-0.0016888712,-0.0002054489,-0.0013088493,0.0000005950,-0.0023760309,-0.0006026379,-0.0015377937 +0.0000000000,0.0011137457,-0.0028669168,-0.0020976590,-0.0010688684,-0.0009099091,0.0004739325,-0.0014464336,0.0015346113,0.0010669327,0.0007179125,-0.0014190207,0.0005992474,0.0014013571,-0.0023606532,0.0010746081,-0.0024694713,-0.0008199148,0.0009636685,0.0020249068,-0.0004018232,-0.0001840178,0.0000959692,0.0013939634,0.0027502988,0.0008171710,0.0022144295,0.0016937785,0.0006594449,0.0021882909,0.0009676031,0.0011360183,-0.0012379357,-0.0026272407,-0.0005982425,0.0007991889,-0.0026708776,-0.0020957927,-0.0002181983,-0.0015473629,0.0010218911,-0.0025172052,0.0003953087,0.0019045929,-0.0007886228,-0.0025238366,-0.0000529667,-0.0015580134,0.0030578377,-0.0020175692,0.0032837056,0.0006554306,0.0021203555,-0.0001034482,-0.0027608060,0.0021724233,-0.0015320219,-0.0016800388,-0.0022723088,-0.0006288576,-0.0022573854,0.0029824100,-0.0017716994,-0.0016542935,0.0008571072,0.0005961345,-0.0000504689,0.0003318181,-0.0017123770,-0.0001478633,0.0012490171,0.0021732241,0.0025343880,-0.0015001663,0.0004431255,0.0023855171,0.0018127384,0.0021014630,-0.0003972510,-0.0011510361,-0.0005869265,-0.0023435596,0.0017415651,0.0033425484,-0.0026327941,0.0015587278,-0.0026366261,0.0020535792,-0.0017746454,0.0022256040,-0.0017673723,-0.0004908638,-0.0013739226,-0.0020120750,0.0020448863,-0.0026070340,-0.0022813236,0.0002191697,0.0003749271,-0.0021872817 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_z.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_z.csv new file mode 100644 index 000000000..48aa292bc --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/field_disp_z.csv @@ -0,0 +1,8 @@ +0.0000000000,0.0048452078,-0.0022757292,-0.0010442904,0.0010650097,0.0030606560,0.0018763966,-0.0043332290,0.0007739789,0.0040679638,0.0032087381,-0.0023093916,0.0005239937,0.0035323453,-0.0026547922,0.0000420333,0.0053352134,-0.0020197056,0.0002657735,0.0022576325,-0.0031413194,0.0032601628,0.0036874534,0.0005223173,0.0009765680,-0.0022001635,-0.0000458537,-0.0048898298,0.0009035398,-0.0049403497,-0.0015877469,-0.0028270292,0.0023815530,-0.0021668228,0.0015525240,0.0024670991,0.0042051675,-0.0035298279,-0.0019619354,-0.0013935165,-0.0033550490,0.0037538512,-0.0004292843,-0.0004547473,-0.0031896514,-0.0013365639,-0.0020371628,0.0003440175,0.0009558100,0.0029798236,-0.0040215076,-0.0013396804,0.0006666589,-0.0009123349,-0.0019155147,-0.0032482588,0.0026547740,-0.0029015989,0.0004393612,-0.0012643019,0.0052049337,-0.0042934962,-0.0021875315,-0.0013211995,0.0048451294,0.0029965333,0.0016374504,-0.0003787064,0.0036874534,-0.0024109841,0.0008284767,0.0024311891,-0.0039999372,-0.0017296900,-0.0028530147,0.0041771890,0.0022338939,-0.0014623554,0.0028059861,-0.0007424981,0.0022572630,0.0042973074,-0.0013816475,-0.0048072447,0.0032245197,0.0016374504,-0.0000092375,0.0018014938,-0.0011591937,-0.0016268440,-0.0014268999,0.0013326863,0.0005194012,0.0023397264,-0.0006360571,0.0003057561,-0.0022901827,-0.0044355912,0.0001718148,-0.0018584093 +0.0000000000,0.0048452078,-0.0052088754,-0.0016986560,0.0039981560,0.0001275097,0.0012220311,-0.0053145282,0.0011012115,0.0024337936,0.0051686468,-0.0010014577,0.0034571400,0.0041867109,-0.0026547922,0.0032979366,0.0043539142,0.0005897900,-0.0003885921,0.0012763334,-0.0054263696,0.0035873954,0.0017275447,0.0015036165,0.0035860636,-0.0008922296,-0.0033017570,-0.0032556596,0.0041594431,-0.0042859841,0.0003721618,-0.0005419790,0.0049910487,-0.0038009930,0.0041620197,0.0011591652,0.0015956719,-0.0028754624,-0.0039218440,-0.0040030122,-0.0033550490,0.0057137599,-0.0010836499,-0.0017626812,-0.0002565052,-0.0023178631,-0.0010558636,0.0000167849,-0.0010040987,0.0046139938,-0.0030402084,-0.0036247306,0.0003394263,-0.0012395676,-0.0006075808,-0.0025938932,0.0016734748,0.0000315473,0.0010937268,-0.0006099363,0.0019490304,-0.0029855623,-0.0034954654,0.0019347038,0.0022356338,0.0007114831,-0.0016184529,0.0012554638,0.0017275447,-0.0030653497,0.0008284767,0.0027584217,-0.0007440338,0.0002302187,-0.0015450808,0.0025430188,0.0041938026,0.0001718148,0.0005209360,-0.0033519937,0.0019300304,0.0042973074,-0.0010544149,-0.0018740985,0.0006150240,-0.0016184529,-0.0016434077,0.0001673236,-0.0034442439,-0.0045599903,0.0011825958,0.0042658326,-0.0007885327,-0.0005934198,-0.0038919604,0.0025908063,-0.0013088835,-0.0024756825,-0.0014623554,0.0004266409 +0.0000000000,0.0026737896,-0.0052088754,-0.0008269036,0.0027071515,-0.0011634947,0.0018760778,-0.0031460858,0.0011012115,0.0015648292,0.0043011415,-0.0014368024,0.0032415897,0.0039686068,-0.0048262104,0.0037277143,0.0021854718,0.0001576294,-0.0021278497,0.0014942714,-0.0043446369,0.0042417411,0.0019445862,0.0032415492,0.0046653136,-0.0015450808,-0.0018009696,-0.0026037046,0.0028722038,-0.0025467265,-0.0002786985,0.0009706013,0.0032676675,-0.0053191334,0.0022248910,-0.0005769132,0.0033190530,-0.0039646548,-0.0017623211,-0.0042191254,-0.0022651926,0.0037683100,0.0004393612,-0.0032829085,-0.0024011897,-0.0042713481,-0.0017094121,0.0015404923,0.0009413512,0.0026652716,-0.0034760180,-0.0042742978,0.0012115772,0.0009315200,0.0000452704,-0.0023757891,0.0029787805,-0.0008299972,-0.0004292843,-0.0006099363,0.0004482430,-0.0032032678,-0.0015440646,0.0032219431,0.0026677944,0.0026530681,-0.0016184529,0.0003864993,0.0019445862,-0.0013260921,0.0010467138,0.0031947630,-0.0016030656,0.0017458099,-0.0008922296,0.0014573097,0.0052776886,0.0014739379,0.0009540907,-0.0048611023,0.0014936891,0.0032074510,-0.0023613128,-0.0007976601,-0.0013221046,-0.0016184529,-0.0018608143,-0.0017813986,-0.0025784621,-0.0058509947,0.0033328819,0.0061979148,0.0013775961,-0.0023123114,-0.0049652594,0.0034565881,0.0004290492,-0.0011757459,-0.0001602323,-0.0000065139 +0.0000000000,0.0026737896,-0.0022757292,-0.0001725381,-0.0002259947,0.0017696515,0.0025304434,-0.0021647866,0.0007739789,0.0031989993,0.0023412328,-0.0027447363,0.0003084435,0.0033142412,-0.0048262104,0.0004718110,0.0031667710,-0.0024518662,-0.0014734841,0.0024755706,-0.0020595867,0.0039145085,0.0039044949,0.0022602500,0.0020558179,-0.0028530147,0.0014549337,-0.0042378748,-0.0003836995,-0.0032010921,-0.0022386072,-0.0013144489,0.0006581719,-0.0036849633,-0.0003846046,0.0007310207,0.0059285487,-0.0046190204,0.0001975876,-0.0016096297,-0.0022651926,0.0018084013,0.0010937268,-0.0019749746,-0.0053343359,-0.0032900490,-0.0026907113,0.0018677249,0.0029012599,0.0010311014,-0.0044573172,-0.0019892477,0.0015388098,0.0012587526,-0.0012626635,-0.0030301547,0.0039600797,-0.0037631434,-0.0010836499,-0.0012643019,0.0037041463,-0.0045112016,-0.0002361307,-0.0000339602,0.0052772900,0.0049381183,0.0016374504,-0.0012476708,0.0039044949,-0.0006717265,0.0010467138,0.0028675304,-0.0048589689,-0.0002140988,-0.0022001635,0.0030914799,0.0033177799,-0.0001602323,0.0032391409,-0.0022516067,0.0018209217,0.0032074510,-0.0026885455,-0.0037308063,0.0012873910,0.0016374504,-0.0002266442,-0.0001472284,-0.0002934119,-0.0029178485,0.0007233863,0.0032647686,0.0026855300,0.0006208348,-0.0017093560,0.0011715379,-0.0005522500,-0.0031356546,0.0014739379,-0.0022915640 +0.0000000000,0.0048262104,-0.0022911246,-0.0010480964,0.0010428485,0.0030384947,0.0018739222,-0.0043539142,0.0007737885,0.0040601708,0.0031988585,-0.0023131976,0.0005084103,0.0035313932,-0.0026737896,0.0000222857,0.0053145282,-0.0020326294,0.0002528497,0.0022557286,-0.0031553631,0.0032582589,0.0036804138,0.0005084508,0.0009596864,-0.0022049192,-0.0000740304,-0.0048962954,0.0008777962,-0.0049532735,-0.0015963015,-0.0028456013,0.0023573325,-0.0021808666,0.0015251090,0.0024519132,0.0041809470,-0.0035353452,-0.0019876789,-0.0014058746,-0.0033598074,0.0037316900,-0.0004393612,-0.0004670915,-0.0032238103,-0.0013536519,-0.0020405879,0.0003345077,0.0009336488,0.0029597284,-0.0040239820,-0.0013507022,0.0006634228,-0.0009315200,-0.0019202704,-0.0032492109,0.0026462195,-0.0029200028,0.0004292843,-0.0012650637,0.0051767570,-0.0042967322,-0.0022059354,-0.0013469431,0.0048322056,0.0029719319,0.0016184529,-0.0003864993,0.0036804138,-0.0024239079,0.0008282862,0.0024302370,-0.0040219344,-0.0017458099,-0.0028577704,0.0041676903,0.0022223114,-0.0014739379,0.0027959093,-0.0007638977,0.0022563109,0.0042925490,-0.0013886872,-0.0048273399,0.0031971046,0.0016184529,-0.0000141857,0.0017813986,-0.0011715379,-0.0016490053,-0.0014578819,0.0013020852,0.0004974039,0.0023123114,-0.0006597406,0.0002934119,-0.0023040492,-0.0044492541,0.0001602323,-0.0018684861 +0.0000000000,0.0048262104,-0.0052242708,-0.0017024619,0.0039759947,0.0001053485,0.0012195566,-0.0053352134,0.0011010211,0.0024260007,0.0051587672,-0.0010052637,0.0034415565,0.0041857588,-0.0026737896,0.0032781890,0.0043332290,0.0005768662,-0.0004015159,0.0012744294,-0.0054404133,0.0035854915,0.0017205051,0.0014897500,0.0035691821,-0.0008969853,-0.0033299337,-0.0032621252,0.0041336995,-0.0042989079,0.0003636072,-0.0005605511,0.0049668281,-0.0038150367,0.0041346046,0.0011439793,0.0015714513,-0.0028809796,-0.0039475876,-0.0040153703,-0.0033598074,0.0056915987,-0.0010937268,-0.0017750254,-0.0002906641,-0.0023349510,-0.0010592887,0.0000072751,-0.0010262599,0.0045938986,-0.0030426828,-0.0036357523,0.0003361902,-0.0012587526,-0.0006123365,-0.0025948453,0.0016649203,0.0000131434,0.0010836499,-0.0006106981,0.0019208537,-0.0029887984,-0.0035138693,0.0019089602,0.0022227100,0.0006868817,-0.0016374504,0.0012476708,0.0017205051,-0.0030782735,0.0008282862,0.0027574696,-0.0007660311,0.0002140988,-0.0015498365,0.0025335201,0.0041822201,0.0001602323,0.0005108591,-0.0033733933,0.0019290783,0.0042925490,-0.0010614545,-0.0018941937,0.0005876090,-0.0016374504,-0.0016483558,0.0001472284,-0.0034565881,-0.0045821515,0.0011516137,0.0042352314,-0.0008105300,-0.0006208348,-0.0039156440,0.0025784621,-0.0013227500,-0.0024893454,-0.0014739379,0.0004165640 +0.0000000000,0.0026547922,-0.0052242708,-0.0008307096,0.0026849903,-0.0011856560,0.0018736034,-0.0031667710,0.0011010211,0.0015570362,0.0042912619,-0.0014406084,0.0032260063,0.0039676547,-0.0048452078,0.0037079667,0.0021647866,0.0001447056,-0.0021407735,0.0014923675,-0.0043586806,0.0042398372,0.0019375466,0.0032276827,0.0046484320,-0.0015498365,-0.0018291463,-0.0026101702,0.0028464602,-0.0025596503,-0.0002872531,0.0009520292,0.0032434470,-0.0053331772,0.0021974760,-0.0005920991,0.0032948325,-0.0039701721,-0.0017880646,-0.0042314835,-0.0022699510,0.0037461488,0.0004292843,-0.0032952527,-0.0024353486,-0.0042884361,-0.0017128372,0.0015309825,0.0009191900,0.0026451764,-0.0034784924,-0.0042853196,0.0012083411,0.0009123349,0.0000405147,-0.0023767412,0.0029702260,-0.0008484011,-0.0004393612,-0.0006106981,0.0004200663,-0.0032065038,-0.0015624685,0.0031961995,0.0026548706,0.0026284667,-0.0016374504,0.0003787064,0.0019375466,-0.0013390159,0.0010465233,0.0031938109,-0.0016250628,0.0017296900,-0.0008969853,0.0014478110,0.0052661061,0.0014623554,0.0009440139,-0.0048825019,0.0014927370,0.0032026926,-0.0023683525,-0.0008177553,-0.0013495197,-0.0016374504,-0.0018657625,-0.0018014938,-0.0025908063,-0.0058731560,0.0033018999,0.0061673137,0.0013555988,-0.0023397264,-0.0049889429,0.0034442439,0.0004151827,-0.0011894088,-0.0001718148,-0.0000165907 +0.0000000000,0.0026547922,-0.0022911246,-0.0001763440,-0.0002481560,0.0017474903,0.0025279689,-0.0021854718,0.0007737885,0.0031912064,0.0023313532,-0.0027485423,0.0002928600,0.0033132891,-0.0048452078,0.0004520634,0.0031460858,-0.0024647900,-0.0014864079,0.0024736666,-0.0020736304,0.0039126046,0.0038974553,0.0022463835,0.0020389364,-0.0028577704,0.0014267570,-0.0042443404,-0.0004094431,-0.0032140159,-0.0022471618,-0.0013330210,0.0006339513,-0.0036990070,-0.0004120197,0.0007158348,0.0059043281,-0.0046245376,0.0001718440,-0.0016219878,-0.0022699510,0.0017862401,0.0010836499,-0.0019873188,-0.0053684948,-0.0033071369,-0.0026941364,0.0018582151,0.0028790987,0.0010110062,-0.0044597916,-0.0020002694,0.0015355737,0.0012395676,-0.0012674192,-0.0030311068,0.0039515252,-0.0037815473,-0.0010937268,-0.0012650637,0.0036759696,-0.0045144377,-0.0002545346,-0.0000597038,0.0052643662,0.0049135169,0.0016184529,-0.0012554638,0.0038974553,-0.0006846503,0.0010465233,0.0028665783,-0.0048809662,-0.0002302187,-0.0022049192,0.0030819812,0.0033061974,-0.0001718148,0.0032290640,-0.0022730063,0.0018199696,0.0032026926,-0.0026955851,-0.0037509015,0.0012599760,0.0016184529,-0.0002315923,-0.0001673236,-0.0003057561,-0.0029400097,0.0006924042,0.0032341674,0.0026635327,0.0005934198,-0.0017330396,0.0011591937,-0.0005661165,-0.0031493175,0.0014623554,-0.0023016409 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/states.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/states.csv new file mode 100644 index 000000000..f521445bb --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/states.csv @@ -0,0 +1,101 @@ +frame_idx,x_trans_mul,y_trans_mul,z_trans_mul,x_trans,y_trans,z_trans,x_rot_deg,y_rot_deg,z_rot_deg +0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000 +1.0000000000,0.1500000000,0.0500000000,0.2000000000,0.0028125000,0.0009375000,0.0037500000,-10.0000000000,0.0000000000,-1.0000000000 +2.0000000000,0.0500000000,-0.1000000000,-0.2000000000,0.0009375000,-0.0018750000,-0.0037500000,0.0000000000,9.0000000000,6.0000000000 +3.0000000000,0.1500000000,-0.1000000000,-0.0500000000,0.0028125000,-0.0018750000,-0.0009375000,4.0000000000,2.0000000000,1.0000000000 +4.0000000000,-0.0500000000,-0.0500000000,0.1000000000,-0.0009375000,-0.0009375000,0.0018750000,-6.0000000000,-9.0000000000,1.0000000000 +5.0000000000,-0.0500000000,-0.1000000000,0.0500000000,-0.0009375000,-0.0018750000,0.0009375000,-6.0000000000,9.0000000000,-6.0000000000 +6.0000000000,-0.0000000000,0.1000000000,0.1000000000,-0.0000000000,0.0018750000,0.0018750000,3.0000000000,2.0000000000,8.0000000000 +7.0000000000,-0.1500000000,-0.1000000000,-0.2000000000,-0.0028125000,-0.0018750000,-0.0037500000,10.0000000000,3.0000000000,-4.0000000000 +8.0000000000,-0.1000000000,0.0000000000,0.0500000000,-0.0018750000,0.0000000000,0.0009375000,0.0000000000,-1.0000000000,-10.0000000000 +9.0000000000,-0.1500000000,0.1000000000,0.1500000000,-0.0028125000,0.0018750000,0.0028125000,-4.0000000000,5.0000000000,5.0000000000 +10.0000000000,-0.0000000000,0.1000000000,0.2000000000,-0.0000000000,0.0018750000,0.0037500000,-4.0000000000,-6.0000000000,7.0000000000 +11.0000000000,0.1500000000,-0.0500000000,-0.1000000000,0.0028125000,-0.0009375000,-0.0018750000,-2.0000000000,-4.0000000000,3.0000000000 +12.0000000000,-0.0500000000,-0.0500000000,0.1000000000,-0.0009375000,-0.0009375000,0.0018750000,-1.0000000000,-9.0000000000,-10.0000000000 +13.0000000000,0.1500000000,0.0000000000,0.2000000000,0.0028125000,0.0000000000,0.0037500000,-1.0000000000,-2.0000000000,-9.0000000000 +14.0000000000,-0.1000000000,-0.1000000000,-0.2000000000,-0.0018750000,-0.0018750000,-0.0037500000,-10.0000000000,0.0000000000,3.0000000000 +15.0000000000,-0.1000000000,0.0500000000,0.1000000000,-0.0018750000,0.0009375000,0.0018750000,2.0000000000,-10.0000000000,-1.0000000000 +16.0000000000,0.1000000000,-0.0500000000,0.2000000000,0.0018750000,-0.0009375000,0.0037500000,-10.0000000000,3.0000000000,9.0000000000 +17.0000000000,-0.0000000000,0.0000000000,-0.0500000000,-0.0000000000,0.0000000000,-0.0009375000,-2.0000000000,-8.0000000000,5.0000000000 +18.0000000000,-0.2000000000,0.0500000000,-0.0500000000,-0.0037500000,0.0009375000,-0.0009375000,-8.0000000000,2.0000000000,0.0000000000 +19.0000000000,0.0500000000,0.1000000000,0.1000000000,0.0009375000,0.0018750000,0.0018750000,1.0000000000,3.0000000000,-1.0000000000 +20.0000000000,-0.0500000000,0.0000000000,-0.2000000000,-0.0009375000,0.0000000000,-0.0037500000,5.0000000000,7.0000000000,2.0000000000 +21.0000000000,-0.0500000000,-0.0500000000,0.2000000000,-0.0009375000,-0.0009375000,0.0037500000,3.0000000000,-1.0000000000,-5.0000000000 +22.0000000000,0.2000000000,0.0500000000,0.1500000000,0.0037500000,0.0009375000,0.0028125000,1.0000000000,6.0000000000,5.0000000000 +23.0000000000,0.1000000000,0.1000000000,0.1000000000,0.0018750000,0.0018750000,0.0018750000,8.0000000000,-3.0000000000,2.0000000000 +24.0000000000,0.1000000000,0.1000000000,0.1500000000,0.0018750000,0.0018750000,0.0028125000,5.0000000000,-8.0000000000,-6.0000000000 +25.0000000000,-0.0000000000,0.0000000000,-0.1000000000,-0.0000000000,0.0000000000,-0.0018750000,-3.0000000000,-4.0000000000,-5.0000000000 +26.0000000000,0.1500000000,0.1000000000,-0.0500000000,0.0028125000,0.0018750000,-0.0009375000,7.0000000000,10.0000000000,-3.0000000000 +27.0000000000,0.1500000000,0.0500000000,-0.2000000000,0.0028125000,0.0009375000,-0.0037500000,3.0000000000,-5.0000000000,-5.0000000000 +28.0000000000,0.2000000000,0.0000000000,0.1000000000,0.0037500000,0.0000000000,0.0018750000,-6.0000000000,-10.0000000000,-4.0000000000 +29.0000000000,-0.2000000000,0.0500000000,-0.2000000000,-0.0037500000,0.0009375000,-0.0037500000,8.0000000000,-2.0000000000,-9.0000000000 +30.0000000000,0.0500000000,0.0000000000,-0.0500000000,0.0009375000,0.0000000000,-0.0009375000,-3.0000000000,-6.0000000000,-6.0000000000 +31.0000000000,-0.1500000000,0.0000000000,-0.0500000000,-0.0028125000,0.0000000000,-0.0009375000,7.0000000000,-7.0000000000,-8.0000000000 +32.0000000000,0.1500000000,-0.0500000000,0.1500000000,0.0028125000,-0.0009375000,0.0028125000,-8.0000000000,-8.0000000000,2.0000000000 +33.0000000000,-0.0500000000,-0.0500000000,-0.2000000000,-0.0009375000,-0.0009375000,-0.0037500000,-7.0000000000,5.0000000000,10.0000000000 +34.0000000000,0.0500000000,-0.0500000000,0.1000000000,0.0009375000,-0.0009375000,0.0018750000,-9.0000000000,-8.0000000000,-2.0000000000 +35.0000000000,0.1500000000,0.0500000000,0.0500000000,0.0028125000,0.0009375000,0.0009375000,-8.0000000000,4.0000000000,1.0000000000 +36.0000000000,-0.2000000000,-0.1000000000,0.2000000000,-0.0037500000,-0.0018750000,0.0037500000,8.0000000000,8.0000000000,4.0000000000 +37.0000000000,-0.1000000000,-0.0500000000,-0.2000000000,-0.0018750000,-0.0009375000,-0.0037500000,-5.0000000000,-2.0000000000,7.0000000000 +38.0000000000,-0.1500000000,-0.0500000000,-0.1000000000,-0.0028125000,-0.0009375000,-0.0018750000,10.0000000000,6.0000000000,-6.0000000000 +39.0000000000,-0.0500000000,-0.1000000000,-0.1500000000,-0.0009375000,-0.0018750000,-0.0028125000,-1.0000000000,8.0000000000,-2.0000000000 +40.0000000000,0.1000000000,0.0500000000,-0.1500000000,0.0018750000,0.0009375000,-0.0028125000,5.0000000000,0.0000000000,-1.0000000000 +41.0000000000,-0.2000000000,-0.1000000000,0.2000000000,-0.0037500000,-0.0018750000,0.0037500000,-9.0000000000,-6.0000000000,4.0000000000 +42.0000000000,-0.1000000000,0.1000000000,-0.0000000000,-0.0018750000,0.0018750000,-0.0000000000,7.0000000000,2.0000000000,8.0000000000 +43.0000000000,-0.0500000000,0.1000000000,-0.1000000000,-0.0009375000,0.0018750000,-0.0018750000,-7.0000000000,4.0000000000,0.0000000000 +44.0000000000,0.0500000000,-0.1000000000,-0.1500000000,0.0009375000,-0.0018750000,-0.0028125000,-10.0000000000,-9.0000000000,-7.0000000000 +45.0000000000,-0.1000000000,-0.1000000000,-0.1500000000,-0.0018750000,-0.0018750000,-0.0028125000,-9.0000000000,3.0000000000,4.0000000000 +46.0000000000,-0.1500000000,0.0500000000,-0.1000000000,-0.0028125000,0.0009375000,-0.0018750000,-3.0000000000,-3.0000000000,6.0000000000 +47.0000000000,-0.1500000000,-0.0500000000,0.0500000000,-0.0028125000,-0.0009375000,0.0009375000,7.0000000000,1.0000000000,3.0000000000 +48.0000000000,0.2000000000,0.1000000000,0.0500000000,0.0037500000,0.0018750000,0.0009375000,9.0000000000,6.0000000000,-9.0000000000 +49.0000000000,-0.0000000000,-0.1000000000,0.1500000000,-0.0000000000,-0.0018750000,0.0028125000,-9.0000000000,-5.0000000000,1.0000000000 +50.0000000000,-0.1500000000,0.1000000000,-0.2000000000,-0.0028125000,0.0018750000,-0.0037500000,-2.0000000000,-3.0000000000,-9.0000000000 +51.0000000000,0.0500000000,0.0000000000,-0.1500000000,0.0009375000,0.0000000000,-0.0028125000,-3.0000000000,7.0000000000,-4.0000000000 +52.0000000000,-0.1000000000,0.0500000000,0.0500000000,-0.0018750000,0.0009375000,0.0009375000,4.0000000000,1.0000000000,-8.0000000000 +53.0000000000,-0.0000000000,0.0500000000,-0.0000000000,-0.0000000000,0.0009375000,-0.0000000000,10.0000000000,1.0000000000,5.0000000000 +54.0000000000,0.1000000000,-0.1000000000,-0.0500000000,0.0018750000,-0.0018750000,-0.0009375000,3.0000000000,-4.0000000000,5.0000000000 +55.0000000000,-0.2000000000,0.0500000000,-0.1500000000,-0.0037500000,0.0009375000,-0.0028125000,1.0000000000,-2.0000000000,-8.0000000000 +56.0000000000,-0.1500000000,-0.0500000000,0.1500000000,-0.0028125000,-0.0009375000,0.0028125000,6.0000000000,3.0000000000,3.0000000000 +57.0000000000,0.0500000000,0.0000000000,-0.1000000000,0.0009375000,0.0000000000,-0.0018750000,-4.0000000000,-9.0000000000,10.0000000000 +58.0000000000,-0.1500000000,-0.0500000000,-0.0000000000,-0.0028125000,-0.0009375000,-0.0000000000,-7.0000000000,-2.0000000000,8.0000000000 +59.0000000000,-0.2000000000,-0.1000000000,-0.0500000000,-0.0037500000,-0.0018750000,-0.0009375000,0.0000000000,-2.0000000000,-8.0000000000 +60.0000000000,-0.0500000000,-0.0500000000,0.1500000000,-0.0009375000,-0.0009375000,0.0028125000,-7.0000000000,10.0000000000,8.0000000000 +61.0000000000,0.1000000000,0.1000000000,-0.2000000000,0.0018750000,0.0018750000,-0.0037500000,-1.0000000000,-4.0000000000,-7.0000000000 +62.0000000000,-0.1000000000,-0.0500000000,-0.1000000000,-0.0018750000,-0.0009375000,-0.0018750000,9.0000000000,4.0000000000,4.0000000000 +63.0000000000,-0.0500000000,0.0000000000,0.0500000000,-0.0009375000,0.0000000000,0.0009375000,6.0000000000,-10.0000000000,9.0000000000 +64.0000000000,0.1000000000,0.1000000000,0.2000000000,0.0018750000,0.0018750000,0.0037500000,2.0000000000,8.0000000000,6.0000000000 +65.0000000000,-0.1000000000,0.0000000000,0.1500000000,-0.0018750000,0.0000000000,0.0028125000,9.0000000000,7.0000000000,-5.0000000000 +66.0000000000,0.1000000000,0.0500000000,-0.0000000000,0.0018750000,0.0009375000,-0.0000000000,0.0000000000,10.0000000000,6.0000000000 +67.0000000000,-0.2000000000,-0.0500000000,-0.0000000000,-0.0037500000,-0.0009375000,-0.0000000000,-4.0000000000,-5.0000000000,-8.0000000000 +68.0000000000,0.2000000000,0.0000000000,0.1500000000,0.0037500000,0.0000000000,0.0028125000,1.0000000000,6.0000000000,10.0000000000 +69.0000000000,0.2000000000,0.0000000000,-0.1000000000,0.0037500000,0.0000000000,-0.0018750000,8.0000000000,2.0000000000,0.0000000000 +70.0000000000,0.1500000000,0.0500000000,0.0500000000,0.0028125000,0.0009375000,0.0009375000,1.0000000000,0.0000000000,-2.0000000000 +71.0000000000,-0.1000000000,0.1000000000,0.1500000000,-0.0018750000,0.0018750000,0.0028125000,2.0000000000,-1.0000000000,-2.0000000000 +72.0000000000,0.0500000000,0.1000000000,-0.1500000000,0.0009375000,0.0018750000,-0.0028125000,-4.0000000000,-10.0000000000,-4.0000000000 +73.0000000000,-0.1000000000,0.0000000000,-0.0000000000,-0.0018750000,0.0000000000,-0.0000000000,7.0000000000,-6.0000000000,8.0000000000 +74.0000000000,0.2000000000,0.0000000000,-0.1000000000,0.0037500000,0.0000000000,-0.0018750000,3.0000000000,-4.0000000000,-3.0000000000 +75.0000000000,0.1500000000,0.1000000000,0.1500000000,0.0028125000,0.0018750000,0.0028125000,-5.0000000000,5.0000000000,-3.0000000000 +76.0000000000,0.1000000000,0.0500000000,0.2000000000,0.0018750000,0.0009375000,0.0037500000,5.0000000000,-6.0000000000,-6.0000000000 +77.0000000000,0.2000000000,0.1000000000,-0.0000000000,0.0037500000,0.0018750000,-0.0000000000,6.0000000000,-5.0000000000,-2.0000000000 +78.0000000000,-0.0000000000,-0.1000000000,0.1000000000,-0.0000000000,-0.0018750000,0.0018750000,2.0000000000,7.0000000000,-10.0000000000 +79.0000000000,-0.2000000000,0.0000000000,-0.1500000000,-0.0037500000,0.0000000000,-0.0028125000,-7.0000000000,8.0000000000,7.0000000000 +80.0000000000,0.2000000000,0.0500000000,0.1000000000,0.0037500000,0.0009375000,0.0018750000,-2.0000000000,1.0000000000,9.0000000000 +81.0000000000,-0.0500000000,-0.1000000000,0.2000000000,-0.0009375000,-0.0018750000,0.0037500000,-5.0000000000,0.0000000000,3.0000000000 +82.0000000000,-0.2000000000,0.1000000000,-0.1000000000,-0.0037500000,0.0018750000,-0.0018750000,-6.0000000000,-1.0000000000,1.0000000000 +83.0000000000,0.0500000000,0.1000000000,-0.1500000000,0.0009375000,0.0018750000,-0.0028125000,5.0000000000,-9.0000000000,-10.0000000000 +84.0000000000,-0.0000000000,-0.0500000000,0.0500000000,-0.0000000000,-0.0009375000,0.0009375000,-9.0000000000,8.0000000000,10.0000000000 +85.0000000000,-0.0000000000,0.0500000000,-0.0000000000,-0.0000000000,0.0009375000,-0.0000000000,0.0000000000,10.0000000000,-4.0000000000 +86.0000000000,0.0500000000,-0.0500000000,-0.0500000000,0.0009375000,-0.0009375000,-0.0009375000,-1.0000000000,5.0000000000,10.0000000000 +87.0000000000,-0.2000000000,0.0500000000,-0.0000000000,-0.0037500000,0.0009375000,-0.0000000000,-9.0000000000,5.0000000000,-7.0000000000 +88.0000000000,-0.0000000000,-0.1000000000,-0.1000000000,-0.0000000000,-0.0018750000,-0.0018750000,4.0000000000,7.0000000000,-1.0000000000 +89.0000000000,0.2000000000,0.1000000000,-0.2000000000,0.0037500000,0.0018750000,-0.0037500000,-6.0000000000,9.0000000000,-2.0000000000 +90.0000000000,0.2000000000,0.0000000000,0.0500000000,0.0037500000,0.0000000000,0.0009375000,10.0000000000,-8.0000000000,9.0000000000 +91.0000000000,0.1000000000,-0.1000000000,0.2000000000,0.0018750000,-0.0018750000,0.0037500000,9.0000000000,-9.0000000000,-10.0000000000 +92.0000000000,0.1500000000,0.0000000000,0.0500000000,0.0028125000,0.0000000000,0.0009375000,10.0000000000,4.0000000000,7.0000000000 +93.0000000000,-0.2000000000,-0.1000000000,-0.0000000000,-0.0037500000,-0.0018750000,-0.0000000000,-8.0000000000,9.0000000000,1.0000000000 +94.0000000000,-0.1500000000,0.0500000000,-0.1500000000,-0.0028125000,0.0009375000,-0.0028125000,-5.0000000000,10.0000000000,-7.0000000000 +95.0000000000,-0.1500000000,-0.1000000000,0.1000000000,-0.0028125000,-0.0018750000,0.0018750000,4.0000000000,-7.0000000000,4.0000000000 +96.0000000000,0.0500000000,-0.0500000000,-0.0500000000,0.0009375000,-0.0009375000,-0.0009375000,8.0000000000,-3.0000000000,7.0000000000 +97.0000000000,-0.0000000000,-0.0500000000,-0.1500000000,-0.0000000000,-0.0009375000,-0.0028125000,6.0000000000,-6.0000000000,-8.0000000000 +98.0000000000,0.1000000000,0.0000000000,-0.0000000000,0.0018750000,0.0000000000,-0.0000000000,6.0000000000,5.0000000000,-3.0000000000 +99.0000000000,0.2000000000,-0.1000000000,-0.0500000000,0.0037500000,-0.0018750000,-0.0009375000,-2.0000000000,-7.0000000000,2.0000000000 diff --git a/src/pyvale/data/render/riley/calplate/tri3_calplate3d/uvs.csv b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/uvs.csv new file mode 100644 index 000000000..26d96cc6b --- /dev/null +++ b/src/pyvale/data/render/riley/calplate/tri3_calplate3d/uvs.csv @@ -0,0 +1,8 @@ +0.0000000000,0.0000000000 +1.0000000000,0.0000000000 +1.0000000000,1.0000000000 +0.0000000000,1.0000000000 +0.0000000000,0.0000000000 +1.0000000000,0.0000000000 +1.0000000000,1.0000000000 +0.0000000000,1.0000000000 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f.e b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f.e new file mode 100644 index 000000000..6b34b3613 Binary files /dev/null and b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f.e differ diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/connect.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/connect.csv new file mode 100644 index 000000000..e0212660e --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/connect.csv @@ -0,0 +1,840 @@ +0.000000000000000000e+00,3.000000000000000000e+00,2.000000000000000000e+00,1.000000000000000000e+00,1.000000000000000000e+01,9.000000000000000000e+00,8.000000000000000000e+00,7.000000000000000000e+00 +0.000000000000000000e+00,1.000000000000000000e+00,5.000000000000000000e+00,4.000000000000000000e+00,7.000000000000000000e+00,1.200000000000000000e+01,1.400000000000000000e+01,1.100000000000000000e+01 +0.000000000000000000e+00,4.000000000000000000e+00,6.000000000000000000e+00,3.000000000000000000e+00,1.100000000000000000e+01,1.500000000000000000e+01,1.300000000000000000e+01,1.000000000000000000e+01 +1.000000000000000000e+00,2.000000000000000000e+00,8.400000000000000000e+01,8.300000000000000000e+01,8.000000000000000000e+00,8.800000000000000000e+01,8.700000000000000000e+01,8.600000000000000000e+01 +1.000000000000000000e+00,8.300000000000000000e+01,8.500000000000000000e+01,5.000000000000000000e+00,8.600000000000000000e+01,8.900000000000000000e+01,9.000000000000000000e+01,1.200000000000000000e+01 +3.000000000000000000e+00,2.800000000000000000e+01,2.700000000000000000e+01,2.000000000000000000e+00,3.200000000000000000e+01,3.100000000000000000e+01,3.000000000000000000e+01,9.000000000000000000e+00 +2.000000000000000000e+00,2.700000000000000000e+01,9.700000000000000000e+01,8.400000000000000000e+01,3.000000000000000000e+01,9.900000000000000000e+01,9.800000000000000000e+01,8.800000000000000000e+01 +3.000000000000000000e+00,6.000000000000000000e+00,2.900000000000000000e+01,2.800000000000000000e+01,1.300000000000000000e+01,3.400000000000000000e+01,3.300000000000000000e+01,3.200000000000000000e+01 +4.000000000000000000e+00,5.000000000000000000e+00,1.700000000000000000e+01,1.600000000000000000e+01,1.400000000000000000e+01,2.100000000000000000e+01,2.300000000000000000e+01,2.000000000000000000e+01 +4.000000000000000000e+00,1.600000000000000000e+01,1.900000000000000000e+01,6.000000000000000000e+00,2.000000000000000000e+01,2.600000000000000000e+01,2.200000000000000000e+01,1.500000000000000000e+01 +5.000000000000000000e+00,8.500000000000000000e+01,9.100000000000000000e+01,1.700000000000000000e+01,9.000000000000000000e+01,9.300000000000000000e+01,9.400000000000000000e+01,2.100000000000000000e+01 +6.000000000000000000e+00,1.900000000000000000e+01,3.600000000000000000e+01,2.900000000000000000e+01,2.200000000000000000e+01,4.000000000000000000e+01,3.700000000000000000e+01,3.400000000000000000e+01 +1.600000000000000000e+01,1.700000000000000000e+01,1.800000000000000000e+01,1.900000000000000000e+01,2.300000000000000000e+01,2.400000000000000000e+01,2.500000000000000000e+01,2.600000000000000000e+01 +1.700000000000000000e+01,9.100000000000000000e+01,9.200000000000000000e+01,1.800000000000000000e+01,9.400000000000000000e+01,9.500000000000000000e+01,9.600000000000000000e+01,2.400000000000000000e+01 +1.900000000000000000e+01,1.800000000000000000e+01,3.500000000000000000e+01,3.600000000000000000e+01,2.500000000000000000e+01,3.800000000000000000e+01,3.900000000000000000e+01,4.000000000000000000e+01 +1.800000000000000000e+01,9.200000000000000000e+01,1.000000000000000000e+02,3.500000000000000000e+01,9.600000000000000000e+01,1.010000000000000000e+02,1.020000000000000000e+02,3.800000000000000000e+01 +2.800000000000000000e+01,4.200000000000000000e+01,4.100000000000000000e+01,2.700000000000000000e+01,4.600000000000000000e+01,4.500000000000000000e+01,4.400000000000000000e+01,3.100000000000000000e+01 +2.700000000000000000e+01,4.100000000000000000e+01,1.030000000000000000e+02,9.700000000000000000e+01,4.400000000000000000e+01,1.050000000000000000e+02,1.040000000000000000e+02,9.900000000000000000e+01 +2.800000000000000000e+01,2.900000000000000000e+01,4.300000000000000000e+01,4.200000000000000000e+01,3.300000000000000000e+01,4.800000000000000000e+01,4.700000000000000000e+01,4.600000000000000000e+01 +2.900000000000000000e+01,3.600000000000000000e+01,5.000000000000000000e+01,4.300000000000000000e+01,3.700000000000000000e+01,5.400000000000000000e+01,5.100000000000000000e+01,4.800000000000000000e+01 +3.600000000000000000e+01,3.500000000000000000e+01,4.900000000000000000e+01,5.000000000000000000e+01,3.900000000000000000e+01,5.200000000000000000e+01,5.300000000000000000e+01,5.400000000000000000e+01 +3.500000000000000000e+01,1.000000000000000000e+02,1.060000000000000000e+02,4.900000000000000000e+01,1.020000000000000000e+02,1.070000000000000000e+02,1.080000000000000000e+02,5.200000000000000000e+01 +4.200000000000000000e+01,5.600000000000000000e+01,5.500000000000000000e+01,4.100000000000000000e+01,6.000000000000000000e+01,5.900000000000000000e+01,5.800000000000000000e+01,4.500000000000000000e+01 +4.100000000000000000e+01,5.500000000000000000e+01,1.090000000000000000e+02,1.030000000000000000e+02,5.800000000000000000e+01,1.110000000000000000e+02,1.100000000000000000e+02,1.050000000000000000e+02 +4.200000000000000000e+01,4.300000000000000000e+01,5.700000000000000000e+01,5.600000000000000000e+01,4.700000000000000000e+01,6.200000000000000000e+01,6.100000000000000000e+01,6.000000000000000000e+01 +4.300000000000000000e+01,5.000000000000000000e+01,6.400000000000000000e+01,5.700000000000000000e+01,5.100000000000000000e+01,6.800000000000000000e+01,6.500000000000000000e+01,6.200000000000000000e+01 +5.000000000000000000e+01,4.900000000000000000e+01,6.300000000000000000e+01,6.400000000000000000e+01,5.300000000000000000e+01,6.600000000000000000e+01,6.700000000000000000e+01,6.800000000000000000e+01 +4.900000000000000000e+01,1.060000000000000000e+02,1.120000000000000000e+02,6.300000000000000000e+01,1.080000000000000000e+02,1.130000000000000000e+02,1.140000000000000000e+02,6.600000000000000000e+01 +5.600000000000000000e+01,7.000000000000000000e+01,6.900000000000000000e+01,5.500000000000000000e+01,7.400000000000000000e+01,7.300000000000000000e+01,7.200000000000000000e+01,5.900000000000000000e+01 +5.500000000000000000e+01,6.900000000000000000e+01,1.150000000000000000e+02,1.090000000000000000e+02,7.200000000000000000e+01,1.170000000000000000e+02,1.160000000000000000e+02,1.110000000000000000e+02 +5.600000000000000000e+01,5.700000000000000000e+01,7.100000000000000000e+01,7.000000000000000000e+01,6.100000000000000000e+01,7.600000000000000000e+01,7.500000000000000000e+01,7.400000000000000000e+01 +5.700000000000000000e+01,6.400000000000000000e+01,7.800000000000000000e+01,7.100000000000000000e+01,6.500000000000000000e+01,8.200000000000000000e+01,7.900000000000000000e+01,7.600000000000000000e+01 +6.400000000000000000e+01,6.300000000000000000e+01,7.700000000000000000e+01,7.800000000000000000e+01,6.700000000000000000e+01,8.000000000000000000e+01,8.100000000000000000e+01,8.200000000000000000e+01 +6.300000000000000000e+01,1.120000000000000000e+02,1.180000000000000000e+02,7.700000000000000000e+01,1.140000000000000000e+02,1.190000000000000000e+02,1.200000000000000000e+02,8.000000000000000000e+01 +6.900000000000000000e+01,7.000000000000000000e+01,6.330000000000000000e+02,6.880000000000000000e+02,7.300000000000000000e+01,6.390000000000000000e+02,6.900000000000000000e+02,6.940000000000000000e+02 +1.150000000000000000e+02,6.900000000000000000e+01,6.880000000000000000e+02,7.400000000000000000e+02,1.170000000000000000e+02,6.940000000000000000e+02,7.420000000000000000e+02,7.460000000000000000e+02 +7.000000000000000000e+01,7.100000000000000000e+01,5.800000000000000000e+02,5.790000000000000000e+02,7.500000000000000000e+01,6.410000000000000000e+02,5.830000000000000000e+02,6.400000000000000000e+02 +7.000000000000000000e+01,5.790000000000000000e+02,5.730000000000000000e+02,6.330000000000000000e+02,6.400000000000000000e+02,5.810000000000000000e+02,6.350000000000000000e+02,6.390000000000000000e+02 +7.100000000000000000e+01,7.800000000000000000e+01,5.850000000000000000e+02,5.800000000000000000e+02,7.900000000000000000e+01,6.430000000000000000e+02,5.860000000000000000e+02,6.410000000000000000e+02 +7.700000000000000000e+01,6.910000000000000000e+02,6.360000000000000000e+02,7.800000000000000000e+01,6.950000000000000000e+02,6.930000000000000000e+02,6.420000000000000000e+02,8.100000000000000000e+01 +1.180000000000000000e+02,7.430000000000000000e+02,6.910000000000000000e+02,7.700000000000000000e+01,7.470000000000000000e+02,7.450000000000000000e+02,6.950000000000000000e+02,1.200000000000000000e+02 +7.800000000000000000e+01,6.360000000000000000e+02,5.760000000000000000e+02,5.850000000000000000e+02,6.420000000000000000e+02,6.380000000000000000e+02,5.870000000000000000e+02,6.430000000000000000e+02 +8.300000000000000000e+01,8.400000000000000000e+01,1.220000000000000000e+02,1.210000000000000000e+02,8.700000000000000000e+01,1.260000000000000000e+02,1.250000000000000000e+02,1.240000000000000000e+02 +8.300000000000000000e+01,1.210000000000000000e+02,1.230000000000000000e+02,8.500000000000000000e+01,1.240000000000000000e+02,1.270000000000000000e+02,1.280000000000000000e+02,8.900000000000000000e+01 +8.400000000000000000e+01,9.700000000000000000e+01,1.350000000000000000e+02,1.220000000000000000e+02,9.800000000000000000e+01,1.370000000000000000e+02,1.360000000000000000e+02,1.260000000000000000e+02 +8.500000000000000000e+01,1.230000000000000000e+02,1.290000000000000000e+02,9.100000000000000000e+01,1.280000000000000000e+02,1.310000000000000000e+02,1.320000000000000000e+02,9.300000000000000000e+01 +9.100000000000000000e+01,1.290000000000000000e+02,1.300000000000000000e+02,9.200000000000000000e+01,1.320000000000000000e+02,1.330000000000000000e+02,1.340000000000000000e+02,9.500000000000000000e+01 +9.200000000000000000e+01,1.300000000000000000e+02,1.380000000000000000e+02,1.000000000000000000e+02,1.340000000000000000e+02,1.390000000000000000e+02,1.400000000000000000e+02,1.010000000000000000e+02 +9.700000000000000000e+01,1.030000000000000000e+02,1.410000000000000000e+02,1.350000000000000000e+02,1.040000000000000000e+02,1.430000000000000000e+02,1.420000000000000000e+02,1.370000000000000000e+02 +1.000000000000000000e+02,1.380000000000000000e+02,1.440000000000000000e+02,1.060000000000000000e+02,1.400000000000000000e+02,1.450000000000000000e+02,1.460000000000000000e+02,1.070000000000000000e+02 +1.030000000000000000e+02,1.090000000000000000e+02,1.470000000000000000e+02,1.410000000000000000e+02,1.100000000000000000e+02,1.490000000000000000e+02,1.480000000000000000e+02,1.430000000000000000e+02 +1.060000000000000000e+02,1.440000000000000000e+02,1.500000000000000000e+02,1.120000000000000000e+02,1.460000000000000000e+02,1.510000000000000000e+02,1.520000000000000000e+02,1.130000000000000000e+02 +1.090000000000000000e+02,1.150000000000000000e+02,1.530000000000000000e+02,1.470000000000000000e+02,1.160000000000000000e+02,1.550000000000000000e+02,1.540000000000000000e+02,1.490000000000000000e+02 +1.120000000000000000e+02,1.500000000000000000e+02,1.560000000000000000e+02,1.180000000000000000e+02,1.520000000000000000e+02,1.570000000000000000e+02,1.580000000000000000e+02,1.190000000000000000e+02 +1.530000000000000000e+02,1.150000000000000000e+02,7.400000000000000000e+02,7.920000000000000000e+02,1.550000000000000000e+02,7.460000000000000000e+02,7.940000000000000000e+02,7.980000000000000000e+02 +1.560000000000000000e+02,7.950000000000000000e+02,7.430000000000000000e+02,1.180000000000000000e+02,7.990000000000000000e+02,7.970000000000000000e+02,7.470000000000000000e+02,1.580000000000000000e+02 +1.210000000000000000e+02,1.220000000000000000e+02,1.600000000000000000e+02,1.590000000000000000e+02,1.250000000000000000e+02,1.640000000000000000e+02,1.630000000000000000e+02,1.620000000000000000e+02 +1.210000000000000000e+02,1.590000000000000000e+02,1.610000000000000000e+02,1.230000000000000000e+02,1.620000000000000000e+02,1.650000000000000000e+02,1.660000000000000000e+02,1.270000000000000000e+02 +1.220000000000000000e+02,1.350000000000000000e+02,1.730000000000000000e+02,1.600000000000000000e+02,1.360000000000000000e+02,1.750000000000000000e+02,1.740000000000000000e+02,1.640000000000000000e+02 +1.230000000000000000e+02,1.610000000000000000e+02,1.670000000000000000e+02,1.290000000000000000e+02,1.660000000000000000e+02,1.690000000000000000e+02,1.700000000000000000e+02,1.310000000000000000e+02 +1.290000000000000000e+02,1.670000000000000000e+02,1.680000000000000000e+02,1.300000000000000000e+02,1.700000000000000000e+02,1.710000000000000000e+02,1.720000000000000000e+02,1.330000000000000000e+02 +1.300000000000000000e+02,1.680000000000000000e+02,1.760000000000000000e+02,1.380000000000000000e+02,1.720000000000000000e+02,1.770000000000000000e+02,1.780000000000000000e+02,1.390000000000000000e+02 +1.350000000000000000e+02,1.410000000000000000e+02,1.790000000000000000e+02,1.730000000000000000e+02,1.420000000000000000e+02,1.810000000000000000e+02,1.800000000000000000e+02,1.750000000000000000e+02 +1.380000000000000000e+02,1.760000000000000000e+02,1.820000000000000000e+02,1.440000000000000000e+02,1.780000000000000000e+02,1.830000000000000000e+02,1.840000000000000000e+02,1.450000000000000000e+02 +1.410000000000000000e+02,1.470000000000000000e+02,1.850000000000000000e+02,1.790000000000000000e+02,1.480000000000000000e+02,1.870000000000000000e+02,1.860000000000000000e+02,1.810000000000000000e+02 +1.440000000000000000e+02,1.820000000000000000e+02,1.880000000000000000e+02,1.500000000000000000e+02,1.840000000000000000e+02,1.890000000000000000e+02,1.900000000000000000e+02,1.510000000000000000e+02 +1.470000000000000000e+02,1.530000000000000000e+02,1.910000000000000000e+02,1.850000000000000000e+02,1.540000000000000000e+02,1.930000000000000000e+02,1.920000000000000000e+02,1.870000000000000000e+02 +1.500000000000000000e+02,1.880000000000000000e+02,1.940000000000000000e+02,1.560000000000000000e+02,1.900000000000000000e+02,1.950000000000000000e+02,1.960000000000000000e+02,1.570000000000000000e+02 +1.910000000000000000e+02,1.530000000000000000e+02,7.920000000000000000e+02,8.440000000000000000e+02,1.930000000000000000e+02,7.980000000000000000e+02,8.460000000000000000e+02,8.500000000000000000e+02 +1.940000000000000000e+02,8.470000000000000000e+02,7.950000000000000000e+02,1.560000000000000000e+02,8.510000000000000000e+02,8.490000000000000000e+02,7.990000000000000000e+02,1.960000000000000000e+02 +1.590000000000000000e+02,1.600000000000000000e+02,1.980000000000000000e+02,1.970000000000000000e+02,1.630000000000000000e+02,2.020000000000000000e+02,2.010000000000000000e+02,2.000000000000000000e+02 +1.590000000000000000e+02,1.970000000000000000e+02,1.990000000000000000e+02,1.610000000000000000e+02,2.000000000000000000e+02,2.030000000000000000e+02,2.040000000000000000e+02,1.650000000000000000e+02 +1.600000000000000000e+02,1.730000000000000000e+02,2.110000000000000000e+02,1.980000000000000000e+02,1.740000000000000000e+02,2.130000000000000000e+02,2.120000000000000000e+02,2.020000000000000000e+02 +1.610000000000000000e+02,1.990000000000000000e+02,2.050000000000000000e+02,1.670000000000000000e+02,2.040000000000000000e+02,2.070000000000000000e+02,2.080000000000000000e+02,1.690000000000000000e+02 +1.670000000000000000e+02,2.050000000000000000e+02,2.060000000000000000e+02,1.680000000000000000e+02,2.080000000000000000e+02,2.090000000000000000e+02,2.100000000000000000e+02,1.710000000000000000e+02 +1.680000000000000000e+02,2.060000000000000000e+02,2.140000000000000000e+02,1.760000000000000000e+02,2.100000000000000000e+02,2.150000000000000000e+02,2.160000000000000000e+02,1.770000000000000000e+02 +1.730000000000000000e+02,1.790000000000000000e+02,2.170000000000000000e+02,2.110000000000000000e+02,1.800000000000000000e+02,2.190000000000000000e+02,2.180000000000000000e+02,2.130000000000000000e+02 +1.760000000000000000e+02,2.140000000000000000e+02,2.200000000000000000e+02,1.820000000000000000e+02,2.160000000000000000e+02,2.210000000000000000e+02,2.220000000000000000e+02,1.830000000000000000e+02 +1.790000000000000000e+02,1.850000000000000000e+02,2.230000000000000000e+02,2.170000000000000000e+02,1.860000000000000000e+02,2.250000000000000000e+02,2.240000000000000000e+02,2.190000000000000000e+02 +1.820000000000000000e+02,2.200000000000000000e+02,2.260000000000000000e+02,1.880000000000000000e+02,2.220000000000000000e+02,2.270000000000000000e+02,2.280000000000000000e+02,1.890000000000000000e+02 +1.850000000000000000e+02,1.910000000000000000e+02,2.290000000000000000e+02,2.230000000000000000e+02,1.920000000000000000e+02,2.310000000000000000e+02,2.300000000000000000e+02,2.250000000000000000e+02 +1.880000000000000000e+02,2.260000000000000000e+02,2.320000000000000000e+02,1.940000000000000000e+02,2.280000000000000000e+02,2.330000000000000000e+02,2.340000000000000000e+02,1.950000000000000000e+02 +2.290000000000000000e+02,1.910000000000000000e+02,8.440000000000000000e+02,8.960000000000000000e+02,2.310000000000000000e+02,8.500000000000000000e+02,8.980000000000000000e+02,9.020000000000000000e+02 +2.320000000000000000e+02,8.990000000000000000e+02,8.470000000000000000e+02,1.940000000000000000e+02,9.030000000000000000e+02,9.010000000000000000e+02,8.510000000000000000e+02,2.340000000000000000e+02 +1.970000000000000000e+02,1.980000000000000000e+02,2.360000000000000000e+02,2.350000000000000000e+02,2.010000000000000000e+02,2.400000000000000000e+02,2.390000000000000000e+02,2.380000000000000000e+02 +1.970000000000000000e+02,2.350000000000000000e+02,2.370000000000000000e+02,1.990000000000000000e+02,2.380000000000000000e+02,2.410000000000000000e+02,2.420000000000000000e+02,2.030000000000000000e+02 +1.980000000000000000e+02,2.110000000000000000e+02,2.490000000000000000e+02,2.360000000000000000e+02,2.120000000000000000e+02,2.510000000000000000e+02,2.500000000000000000e+02,2.400000000000000000e+02 +1.990000000000000000e+02,2.370000000000000000e+02,2.430000000000000000e+02,2.050000000000000000e+02,2.420000000000000000e+02,2.450000000000000000e+02,2.460000000000000000e+02,2.070000000000000000e+02 +2.050000000000000000e+02,2.430000000000000000e+02,2.440000000000000000e+02,2.060000000000000000e+02,2.460000000000000000e+02,2.470000000000000000e+02,2.480000000000000000e+02,2.090000000000000000e+02 +2.060000000000000000e+02,2.440000000000000000e+02,2.520000000000000000e+02,2.140000000000000000e+02,2.480000000000000000e+02,2.530000000000000000e+02,2.540000000000000000e+02,2.150000000000000000e+02 +2.110000000000000000e+02,2.170000000000000000e+02,2.550000000000000000e+02,2.490000000000000000e+02,2.180000000000000000e+02,2.570000000000000000e+02,2.560000000000000000e+02,2.510000000000000000e+02 +2.140000000000000000e+02,2.520000000000000000e+02,2.580000000000000000e+02,2.200000000000000000e+02,2.540000000000000000e+02,2.590000000000000000e+02,2.600000000000000000e+02,2.210000000000000000e+02 +2.170000000000000000e+02,2.230000000000000000e+02,2.610000000000000000e+02,2.550000000000000000e+02,2.240000000000000000e+02,2.630000000000000000e+02,2.620000000000000000e+02,2.570000000000000000e+02 +2.200000000000000000e+02,2.580000000000000000e+02,2.640000000000000000e+02,2.260000000000000000e+02,2.600000000000000000e+02,2.650000000000000000e+02,2.660000000000000000e+02,2.270000000000000000e+02 +2.230000000000000000e+02,2.290000000000000000e+02,2.670000000000000000e+02,2.610000000000000000e+02,2.300000000000000000e+02,2.690000000000000000e+02,2.680000000000000000e+02,2.630000000000000000e+02 +2.260000000000000000e+02,2.640000000000000000e+02,2.700000000000000000e+02,2.320000000000000000e+02,2.660000000000000000e+02,2.710000000000000000e+02,2.720000000000000000e+02,2.330000000000000000e+02 +2.670000000000000000e+02,2.290000000000000000e+02,8.960000000000000000e+02,9.480000000000000000e+02,2.690000000000000000e+02,9.020000000000000000e+02,9.500000000000000000e+02,9.540000000000000000e+02 +2.700000000000000000e+02,9.510000000000000000e+02,8.990000000000000000e+02,2.320000000000000000e+02,9.550000000000000000e+02,9.530000000000000000e+02,9.030000000000000000e+02,2.720000000000000000e+02 +2.350000000000000000e+02,2.360000000000000000e+02,2.740000000000000000e+02,2.730000000000000000e+02,2.390000000000000000e+02,2.780000000000000000e+02,2.770000000000000000e+02,2.760000000000000000e+02 +2.350000000000000000e+02,2.730000000000000000e+02,2.750000000000000000e+02,2.370000000000000000e+02,2.760000000000000000e+02,2.790000000000000000e+02,2.800000000000000000e+02,2.410000000000000000e+02 +2.360000000000000000e+02,2.490000000000000000e+02,2.870000000000000000e+02,2.740000000000000000e+02,2.500000000000000000e+02,2.890000000000000000e+02,2.880000000000000000e+02,2.780000000000000000e+02 +2.370000000000000000e+02,2.750000000000000000e+02,2.810000000000000000e+02,2.430000000000000000e+02,2.800000000000000000e+02,2.830000000000000000e+02,2.840000000000000000e+02,2.450000000000000000e+02 +2.430000000000000000e+02,2.810000000000000000e+02,2.820000000000000000e+02,2.440000000000000000e+02,2.840000000000000000e+02,2.850000000000000000e+02,2.860000000000000000e+02,2.470000000000000000e+02 +2.440000000000000000e+02,2.820000000000000000e+02,2.900000000000000000e+02,2.520000000000000000e+02,2.860000000000000000e+02,2.910000000000000000e+02,2.920000000000000000e+02,2.530000000000000000e+02 +2.490000000000000000e+02,2.550000000000000000e+02,2.930000000000000000e+02,2.870000000000000000e+02,2.560000000000000000e+02,2.950000000000000000e+02,2.940000000000000000e+02,2.890000000000000000e+02 +2.520000000000000000e+02,2.900000000000000000e+02,2.960000000000000000e+02,2.580000000000000000e+02,2.920000000000000000e+02,2.970000000000000000e+02,2.980000000000000000e+02,2.590000000000000000e+02 +2.550000000000000000e+02,2.610000000000000000e+02,2.990000000000000000e+02,2.930000000000000000e+02,2.620000000000000000e+02,3.010000000000000000e+02,3.000000000000000000e+02,2.950000000000000000e+02 +2.580000000000000000e+02,2.960000000000000000e+02,3.020000000000000000e+02,2.640000000000000000e+02,2.980000000000000000e+02,3.030000000000000000e+02,3.040000000000000000e+02,2.650000000000000000e+02 +2.610000000000000000e+02,2.670000000000000000e+02,3.050000000000000000e+02,2.990000000000000000e+02,2.680000000000000000e+02,3.070000000000000000e+02,3.060000000000000000e+02,3.010000000000000000e+02 +2.640000000000000000e+02,3.020000000000000000e+02,3.080000000000000000e+02,2.700000000000000000e+02,3.040000000000000000e+02,3.090000000000000000e+02,3.100000000000000000e+02,2.710000000000000000e+02 +3.050000000000000000e+02,2.670000000000000000e+02,9.480000000000000000e+02,1.000000000000000000e+03,3.070000000000000000e+02,9.540000000000000000e+02,1.002000000000000000e+03,1.006000000000000000e+03 +3.080000000000000000e+02,1.003000000000000000e+03,9.510000000000000000e+02,2.700000000000000000e+02,1.007000000000000000e+03,1.005000000000000000e+03,9.550000000000000000e+02,3.100000000000000000e+02 +2.730000000000000000e+02,2.740000000000000000e+02,3.120000000000000000e+02,3.110000000000000000e+02,2.770000000000000000e+02,3.170000000000000000e+02,3.160000000000000000e+02,3.150000000000000000e+02 +2.730000000000000000e+02,3.110000000000000000e+02,3.130000000000000000e+02,2.750000000000000000e+02,3.150000000000000000e+02,3.180000000000000000e+02,3.200000000000000000e+02,2.790000000000000000e+02 +2.740000000000000000e+02,2.870000000000000000e+02,3.290000000000000000e+02,3.120000000000000000e+02,2.880000000000000000e+02,3.320000000000000000e+02,3.310000000000000000e+02,3.170000000000000000e+02 +2.750000000000000000e+02,3.130000000000000000e+02,3.220000000000000000e+02,2.810000000000000000e+02,3.200000000000000000e+02,3.240000000000000000e+02,3.260000000000000000e+02,2.830000000000000000e+02 +2.810000000000000000e+02,3.220000000000000000e+02,3.230000000000000000e+02,2.820000000000000000e+02,3.260000000000000000e+02,3.270000000000000000e+02,3.280000000000000000e+02,2.850000000000000000e+02 +2.820000000000000000e+02,3.230000000000000000e+02,3.350000000000000000e+02,2.900000000000000000e+02,3.280000000000000000e+02,3.370000000000000000e+02,3.380000000000000000e+02,2.910000000000000000e+02 +2.870000000000000000e+02,2.930000000000000000e+02,3.390000000000000000e+02,3.290000000000000000e+02,2.940000000000000000e+02,3.420000000000000000e+02,3.410000000000000000e+02,3.320000000000000000e+02 +2.900000000000000000e+02,3.350000000000000000e+02,3.450000000000000000e+02,2.960000000000000000e+02,3.380000000000000000e+02,3.470000000000000000e+02,3.480000000000000000e+02,2.970000000000000000e+02 +2.930000000000000000e+02,2.990000000000000000e+02,3.490000000000000000e+02,3.390000000000000000e+02,3.000000000000000000e+02,3.520000000000000000e+02,3.510000000000000000e+02,3.420000000000000000e+02 +2.960000000000000000e+02,3.450000000000000000e+02,3.550000000000000000e+02,3.020000000000000000e+02,3.480000000000000000e+02,3.570000000000000000e+02,3.580000000000000000e+02,3.030000000000000000e+02 +2.990000000000000000e+02,3.050000000000000000e+02,3.590000000000000000e+02,3.490000000000000000e+02,3.060000000000000000e+02,3.620000000000000000e+02,3.610000000000000000e+02,3.520000000000000000e+02 +3.020000000000000000e+02,3.550000000000000000e+02,3.650000000000000000e+02,3.080000000000000000e+02,3.580000000000000000e+02,3.670000000000000000e+02,3.680000000000000000e+02,3.090000000000000000e+02 +3.590000000000000000e+02,3.050000000000000000e+02,1.000000000000000000e+03,1.052000000000000000e+03,3.620000000000000000e+02,1.006000000000000000e+03,1.054000000000000000e+03,1.058000000000000000e+03 +3.650000000000000000e+02,1.055000000000000000e+03,1.003000000000000000e+03,3.080000000000000000e+02,1.059000000000000000e+03,1.057000000000000000e+03,1.007000000000000000e+03,3.680000000000000000e+02 +3.110000000000000000e+02,3.120000000000000000e+02,3.140000000000000000e+02,3.130000000000000000e+02,3.160000000000000000e+02,3.190000000000000000e+02,3.210000000000000000e+02,3.180000000000000000e+02 +3.120000000000000000e+02,3.290000000000000000e+02,3.300000000000000000e+02,3.140000000000000000e+02,3.310000000000000000e+02,3.330000000000000000e+02,3.340000000000000000e+02,3.190000000000000000e+02 +3.130000000000000000e+02,3.140000000000000000e+02,3.230000000000000000e+02,3.220000000000000000e+02,3.210000000000000000e+02,3.250000000000000000e+02,3.270000000000000000e+02,3.240000000000000000e+02 +3.140000000000000000e+02,3.300000000000000000e+02,3.350000000000000000e+02,3.230000000000000000e+02,3.340000000000000000e+02,3.360000000000000000e+02,3.370000000000000000e+02,3.250000000000000000e+02 +3.290000000000000000e+02,3.390000000000000000e+02,3.400000000000000000e+02,3.300000000000000000e+02,3.410000000000000000e+02,3.430000000000000000e+02,3.440000000000000000e+02,3.330000000000000000e+02 +3.300000000000000000e+02,3.400000000000000000e+02,3.450000000000000000e+02,3.350000000000000000e+02,3.440000000000000000e+02,3.460000000000000000e+02,3.470000000000000000e+02,3.360000000000000000e+02 +3.390000000000000000e+02,3.490000000000000000e+02,3.500000000000000000e+02,3.400000000000000000e+02,3.510000000000000000e+02,3.530000000000000000e+02,3.540000000000000000e+02,3.430000000000000000e+02 +3.400000000000000000e+02,3.500000000000000000e+02,3.550000000000000000e+02,3.450000000000000000e+02,3.540000000000000000e+02,3.560000000000000000e+02,3.570000000000000000e+02,3.460000000000000000e+02 +3.490000000000000000e+02,3.590000000000000000e+02,3.600000000000000000e+02,3.500000000000000000e+02,3.610000000000000000e+02,3.630000000000000000e+02,3.640000000000000000e+02,3.530000000000000000e+02 +3.500000000000000000e+02,3.600000000000000000e+02,3.650000000000000000e+02,3.550000000000000000e+02,3.640000000000000000e+02,3.660000000000000000e+02,3.670000000000000000e+02,3.560000000000000000e+02 +1.110000000000000000e+03,1.111000000000000000e+03,3.600000000000000000e+02,3.590000000000000000e+02,1.114000000000000000e+03,1.115000000000000000e+03,3.630000000000000000e+02,1.113000000000000000e+03 +1.110000000000000000e+03,3.590000000000000000e+02,1.052000000000000000e+03,1.104000000000000000e+03,1.113000000000000000e+03,1.058000000000000000e+03,1.106000000000000000e+03,1.112000000000000000e+03 +1.111000000000000000e+03,1.116000000000000000e+03,3.650000000000000000e+02,3.600000000000000000e+02,1.117000000000000000e+03,1.119000000000000000e+03,3.660000000000000000e+02,1.115000000000000000e+03 +1.116000000000000000e+03,1.107000000000000000e+03,1.055000000000000000e+03,3.650000000000000000e+02,1.118000000000000000e+03,1.109000000000000000e+03,1.059000000000000000e+03,1.119000000000000000e+03 +3.690000000000000000e+02,3.720000000000000000e+02,3.710000000000000000e+02,3.700000000000000000e+02,3.780000000000000000e+02,3.770000000000000000e+02,3.760000000000000000e+02,3.750000000000000000e+02 +4.690000000000000000e+02,3.690000000000000000e+02,3.700000000000000000e+02,4.700000000000000000e+02,4.740000000000000000e+02,3.750000000000000000e+02,4.730000000000000000e+02,4.720000000000000000e+02 +3.920000000000000000e+02,3.930000000000000000e+02,3.720000000000000000e+02,3.690000000000000000e+02,3.960000000000000000e+02,3.950000000000000000e+02,3.780000000000000000e+02,3.940000000000000000e+02 +4.830000000000000000e+02,3.920000000000000000e+02,3.690000000000000000e+02,4.690000000000000000e+02,4.850000000000000000e+02,3.940000000000000000e+02,4.740000000000000000e+02,4.840000000000000000e+02 +3.700000000000000000e+02,3.710000000000000000e+02,3.740000000000000000e+02,3.730000000000000000e+02,3.760000000000000000e+02,3.800000000000000000e+02,3.810000000000000000e+02,3.790000000000000000e+02 +4.700000000000000000e+02,3.700000000000000000e+02,3.730000000000000000e+02,4.710000000000000000e+02,4.730000000000000000e+02,3.790000000000000000e+02,4.760000000000000000e+02,4.750000000000000000e+02 +3.710000000000000000e+02,3.720000000000000000e+02,1.301000000000000000e+03,1.300000000000000000e+03,3.770000000000000000e+02,1.305000000000000000e+03,1.304000000000000000e+03,1.303000000000000000e+03 +3.710000000000000000e+02,1.300000000000000000e+03,1.302000000000000000e+03,3.740000000000000000e+02,1.303000000000000000e+03,1.306000000000000000e+03,1.307000000000000000e+03,3.800000000000000000e+02 +3.720000000000000000e+02,3.930000000000000000e+02,1.314000000000000000e+03,1.301000000000000000e+03,3.950000000000000000e+02,1.316000000000000000e+03,1.315000000000000000e+03,1.305000000000000000e+03 +3.730000000000000000e+02,3.740000000000000000e+02,3.840000000000000000e+02,3.830000000000000000e+02,3.810000000000000000e+02,3.870000000000000000e+02,3.890000000000000000e+02,3.860000000000000000e+02 +4.710000000000000000e+02,3.730000000000000000e+02,3.830000000000000000e+02,4.780000000000000000e+02,4.760000000000000000e+02,3.860000000000000000e+02,4.810000000000000000e+02,4.790000000000000000e+02 +3.740000000000000000e+02,1.302000000000000000e+03,1.308000000000000000e+03,3.840000000000000000e+02,1.307000000000000000e+03,1.310000000000000000e+03,1.311000000000000000e+03,3.870000000000000000e+02 +3.820000000000000000e+02,3.830000000000000000e+02,3.840000000000000000e+02,3.850000000000000000e+02,3.880000000000000000e+02,3.890000000000000000e+02,3.900000000000000000e+02,3.910000000000000000e+02 +4.770000000000000000e+02,4.780000000000000000e+02,3.830000000000000000e+02,3.820000000000000000e+02,4.800000000000000000e+02,4.810000000000000000e+02,3.880000000000000000e+02,4.820000000000000000e+02 +3.970000000000000000e+02,3.820000000000000000e+02,3.850000000000000000e+02,3.980000000000000000e+02,3.990000000000000000e+02,3.910000000000000000e+02,4.000000000000000000e+02,4.010000000000000000e+02 +4.860000000000000000e+02,4.770000000000000000e+02,3.820000000000000000e+02,3.970000000000000000e+02,4.870000000000000000e+02,4.820000000000000000e+02,3.990000000000000000e+02,4.880000000000000000e+02 +3.840000000000000000e+02,1.308000000000000000e+03,1.309000000000000000e+03,3.850000000000000000e+02,1.311000000000000000e+03,1.312000000000000000e+03,1.313000000000000000e+03,3.900000000000000000e+02 +3.850000000000000000e+02,1.309000000000000000e+03,1.317000000000000000e+03,3.980000000000000000e+02,1.313000000000000000e+03,1.318000000000000000e+03,1.319000000000000000e+03,4.000000000000000000e+02 +4.020000000000000000e+02,4.030000000000000000e+02,3.930000000000000000e+02,3.920000000000000000e+02,4.060000000000000000e+02,4.050000000000000000e+02,3.960000000000000000e+02,4.040000000000000000e+02 +4.890000000000000000e+02,4.020000000000000000e+02,3.920000000000000000e+02,4.830000000000000000e+02,4.910000000000000000e+02,4.040000000000000000e+02,4.850000000000000000e+02,4.900000000000000000e+02 +3.930000000000000000e+02,4.030000000000000000e+02,1.320000000000000000e+03,1.314000000000000000e+03,4.050000000000000000e+02,1.322000000000000000e+03,1.321000000000000000e+03,1.316000000000000000e+03 +4.070000000000000000e+02,3.970000000000000000e+02,3.980000000000000000e+02,4.080000000000000000e+02,4.090000000000000000e+02,4.010000000000000000e+02,4.100000000000000000e+02,4.110000000000000000e+02 +4.920000000000000000e+02,4.860000000000000000e+02,3.970000000000000000e+02,4.070000000000000000e+02,4.930000000000000000e+02,4.880000000000000000e+02,4.090000000000000000e+02,4.940000000000000000e+02 +3.980000000000000000e+02,1.317000000000000000e+03,1.323000000000000000e+03,4.080000000000000000e+02,1.319000000000000000e+03,1.324000000000000000e+03,1.325000000000000000e+03,4.100000000000000000e+02 +4.120000000000000000e+02,4.130000000000000000e+02,4.030000000000000000e+02,4.020000000000000000e+02,4.160000000000000000e+02,4.150000000000000000e+02,4.060000000000000000e+02,4.140000000000000000e+02 +4.950000000000000000e+02,4.120000000000000000e+02,4.020000000000000000e+02,4.890000000000000000e+02,4.970000000000000000e+02,4.140000000000000000e+02,4.910000000000000000e+02,4.960000000000000000e+02 +4.030000000000000000e+02,4.130000000000000000e+02,1.326000000000000000e+03,1.320000000000000000e+03,4.150000000000000000e+02,1.328000000000000000e+03,1.327000000000000000e+03,1.322000000000000000e+03 +4.170000000000000000e+02,4.070000000000000000e+02,4.080000000000000000e+02,4.180000000000000000e+02,4.190000000000000000e+02,4.110000000000000000e+02,4.200000000000000000e+02,4.210000000000000000e+02 +4.980000000000000000e+02,4.920000000000000000e+02,4.070000000000000000e+02,4.170000000000000000e+02,4.990000000000000000e+02,4.940000000000000000e+02,4.190000000000000000e+02,5.000000000000000000e+02 +4.080000000000000000e+02,1.323000000000000000e+03,1.329000000000000000e+03,4.180000000000000000e+02,1.325000000000000000e+03,1.330000000000000000e+03,1.331000000000000000e+03,4.200000000000000000e+02 +4.220000000000000000e+02,4.230000000000000000e+02,4.130000000000000000e+02,4.120000000000000000e+02,4.260000000000000000e+02,4.250000000000000000e+02,4.160000000000000000e+02,4.240000000000000000e+02 +5.010000000000000000e+02,4.220000000000000000e+02,4.120000000000000000e+02,4.950000000000000000e+02,5.030000000000000000e+02,4.240000000000000000e+02,4.970000000000000000e+02,5.020000000000000000e+02 +4.130000000000000000e+02,4.230000000000000000e+02,1.332000000000000000e+03,1.326000000000000000e+03,4.250000000000000000e+02,1.334000000000000000e+03,1.333000000000000000e+03,1.328000000000000000e+03 +4.270000000000000000e+02,4.170000000000000000e+02,4.180000000000000000e+02,4.280000000000000000e+02,4.290000000000000000e+02,4.210000000000000000e+02,4.300000000000000000e+02,4.310000000000000000e+02 +5.040000000000000000e+02,4.980000000000000000e+02,4.170000000000000000e+02,4.270000000000000000e+02,5.050000000000000000e+02,5.000000000000000000e+02,4.290000000000000000e+02,5.060000000000000000e+02 +4.180000000000000000e+02,1.329000000000000000e+03,1.335000000000000000e+03,4.280000000000000000e+02,1.331000000000000000e+03,1.336000000000000000e+03,1.337000000000000000e+03,4.300000000000000000e+02 +4.320000000000000000e+02,4.330000000000000000e+02,4.230000000000000000e+02,4.220000000000000000e+02,4.360000000000000000e+02,4.350000000000000000e+02,4.260000000000000000e+02,4.340000000000000000e+02 +5.070000000000000000e+02,4.320000000000000000e+02,4.220000000000000000e+02,5.010000000000000000e+02,5.090000000000000000e+02,4.340000000000000000e+02,5.030000000000000000e+02,5.080000000000000000e+02 +4.230000000000000000e+02,4.330000000000000000e+02,1.338000000000000000e+03,1.332000000000000000e+03,4.350000000000000000e+02,1.340000000000000000e+03,1.339000000000000000e+03,1.334000000000000000e+03 +4.370000000000000000e+02,4.270000000000000000e+02,4.280000000000000000e+02,4.380000000000000000e+02,4.390000000000000000e+02,4.310000000000000000e+02,4.400000000000000000e+02,4.410000000000000000e+02 +5.100000000000000000e+02,5.040000000000000000e+02,4.270000000000000000e+02,4.370000000000000000e+02,5.110000000000000000e+02,5.060000000000000000e+02,4.390000000000000000e+02,5.120000000000000000e+02 +4.280000000000000000e+02,1.335000000000000000e+03,1.341000000000000000e+03,4.380000000000000000e+02,1.337000000000000000e+03,1.342000000000000000e+03,1.343000000000000000e+03,4.400000000000000000e+02 +4.420000000000000000e+02,4.430000000000000000e+02,4.330000000000000000e+02,4.320000000000000000e+02,4.460000000000000000e+02,4.450000000000000000e+02,4.360000000000000000e+02,4.440000000000000000e+02 +5.130000000000000000e+02,4.420000000000000000e+02,4.320000000000000000e+02,5.070000000000000000e+02,5.150000000000000000e+02,4.440000000000000000e+02,5.090000000000000000e+02,5.140000000000000000e+02 +4.330000000000000000e+02,4.430000000000000000e+02,1.344000000000000000e+03,1.338000000000000000e+03,4.450000000000000000e+02,1.346000000000000000e+03,1.345000000000000000e+03,1.340000000000000000e+03 +4.470000000000000000e+02,4.370000000000000000e+02,4.380000000000000000e+02,4.480000000000000000e+02,4.490000000000000000e+02,4.410000000000000000e+02,4.500000000000000000e+02,4.510000000000000000e+02 +5.160000000000000000e+02,5.100000000000000000e+02,4.370000000000000000e+02,4.470000000000000000e+02,5.170000000000000000e+02,5.120000000000000000e+02,4.490000000000000000e+02,5.180000000000000000e+02 +4.380000000000000000e+02,1.341000000000000000e+03,1.347000000000000000e+03,4.480000000000000000e+02,1.343000000000000000e+03,1.348000000000000000e+03,1.349000000000000000e+03,4.500000000000000000e+02 +4.520000000000000000e+02,4.530000000000000000e+02,4.430000000000000000e+02,4.420000000000000000e+02,4.580000000000000000e+02,4.570000000000000000e+02,4.460000000000000000e+02,4.560000000000000000e+02 +5.190000000000000000e+02,4.520000000000000000e+02,4.420000000000000000e+02,5.130000000000000000e+02,5.220000000000000000e+02,4.560000000000000000e+02,5.150000000000000000e+02,5.210000000000000000e+02 +4.430000000000000000e+02,4.530000000000000000e+02,1.350000000000000000e+03,1.344000000000000000e+03,4.570000000000000000e+02,1.353000000000000000e+03,1.352000000000000000e+03,1.346000000000000000e+03 +4.620000000000000000e+02,4.470000000000000000e+02,4.480000000000000000e+02,4.630000000000000000e+02,4.660000000000000000e+02,4.510000000000000000e+02,4.670000000000000000e+02,4.680000000000000000e+02 +5.250000000000000000e+02,5.160000000000000000e+02,4.470000000000000000e+02,4.620000000000000000e+02,5.270000000000000000e+02,5.180000000000000000e+02,4.660000000000000000e+02,5.280000000000000000e+02 +4.480000000000000000e+02,1.347000000000000000e+03,1.356000000000000000e+03,4.630000000000000000e+02,1.349000000000000000e+03,1.358000000000000000e+03,1.359000000000000000e+03,4.670000000000000000e+02 +4.520000000000000000e+02,4.540000000000000000e+02,4.550000000000000000e+02,4.530000000000000000e+02,4.590000000000000000e+02,4.610000000000000000e+02,4.600000000000000000e+02,4.580000000000000000e+02 +5.190000000000000000e+02,5.200000000000000000e+02,4.540000000000000000e+02,4.520000000000000000e+02,5.230000000000000000e+02,5.240000000000000000e+02,4.590000000000000000e+02,5.220000000000000000e+02 +1.350000000000000000e+03,4.530000000000000000e+02,4.550000000000000000e+02,1.351000000000000000e+03,1.353000000000000000e+03,4.600000000000000000e+02,1.355000000000000000e+03,1.354000000000000000e+03 +4.540000000000000000e+02,4.620000000000000000e+02,4.630000000000000000e+02,4.550000000000000000e+02,4.640000000000000000e+02,4.680000000000000000e+02,4.650000000000000000e+02,4.610000000000000000e+02 +5.200000000000000000e+02,5.250000000000000000e+02,4.620000000000000000e+02,4.540000000000000000e+02,5.260000000000000000e+02,5.280000000000000000e+02,4.640000000000000000e+02,5.240000000000000000e+02 +1.351000000000000000e+03,4.550000000000000000e+02,4.630000000000000000e+02,1.356000000000000000e+03,1.355000000000000000e+03,4.650000000000000000e+02,1.359000000000000000e+03,1.357000000000000000e+03 +5.290000000000000000e+02,4.690000000000000000e+02,4.700000000000000000e+02,5.300000000000000000e+02,5.340000000000000000e+02,4.720000000000000000e+02,5.330000000000000000e+02,5.320000000000000000e+02 +5.430000000000000000e+02,4.830000000000000000e+02,4.690000000000000000e+02,5.290000000000000000e+02,5.450000000000000000e+02,4.840000000000000000e+02,5.340000000000000000e+02,5.440000000000000000e+02 +5.300000000000000000e+02,4.700000000000000000e+02,4.710000000000000000e+02,5.310000000000000000e+02,5.330000000000000000e+02,4.750000000000000000e+02,5.360000000000000000e+02,5.350000000000000000e+02 +5.310000000000000000e+02,4.710000000000000000e+02,4.780000000000000000e+02,5.380000000000000000e+02,5.360000000000000000e+02,4.790000000000000000e+02,5.410000000000000000e+02,5.390000000000000000e+02 +5.370000000000000000e+02,5.380000000000000000e+02,4.780000000000000000e+02,4.770000000000000000e+02,5.400000000000000000e+02,5.410000000000000000e+02,4.800000000000000000e+02,5.420000000000000000e+02 +5.460000000000000000e+02,5.370000000000000000e+02,4.770000000000000000e+02,4.860000000000000000e+02,5.470000000000000000e+02,5.420000000000000000e+02,4.870000000000000000e+02,5.480000000000000000e+02 +5.490000000000000000e+02,4.890000000000000000e+02,4.830000000000000000e+02,5.430000000000000000e+02,5.510000000000000000e+02,4.900000000000000000e+02,5.450000000000000000e+02,5.500000000000000000e+02 +5.520000000000000000e+02,5.460000000000000000e+02,4.860000000000000000e+02,4.920000000000000000e+02,5.530000000000000000e+02,5.480000000000000000e+02,4.930000000000000000e+02,5.540000000000000000e+02 +5.550000000000000000e+02,4.950000000000000000e+02,4.890000000000000000e+02,5.490000000000000000e+02,5.570000000000000000e+02,4.960000000000000000e+02,5.510000000000000000e+02,5.560000000000000000e+02 +5.580000000000000000e+02,5.520000000000000000e+02,4.920000000000000000e+02,4.980000000000000000e+02,5.590000000000000000e+02,5.540000000000000000e+02,4.990000000000000000e+02,5.600000000000000000e+02 +5.610000000000000000e+02,5.010000000000000000e+02,4.950000000000000000e+02,5.550000000000000000e+02,5.630000000000000000e+02,5.020000000000000000e+02,5.570000000000000000e+02,5.620000000000000000e+02 +5.640000000000000000e+02,5.580000000000000000e+02,4.980000000000000000e+02,5.040000000000000000e+02,5.650000000000000000e+02,5.600000000000000000e+02,5.050000000000000000e+02,5.660000000000000000e+02 +5.670000000000000000e+02,5.070000000000000000e+02,5.010000000000000000e+02,5.610000000000000000e+02,5.690000000000000000e+02,5.080000000000000000e+02,5.630000000000000000e+02,5.680000000000000000e+02 +5.700000000000000000e+02,5.640000000000000000e+02,5.040000000000000000e+02,5.100000000000000000e+02,5.710000000000000000e+02,5.660000000000000000e+02,5.110000000000000000e+02,5.720000000000000000e+02 +5.730000000000000000e+02,5.130000000000000000e+02,5.070000000000000000e+02,5.670000000000000000e+02,5.750000000000000000e+02,5.140000000000000000e+02,5.690000000000000000e+02,5.740000000000000000e+02 +5.760000000000000000e+02,5.700000000000000000e+02,5.100000000000000000e+02,5.160000000000000000e+02,5.770000000000000000e+02,5.720000000000000000e+02,5.170000000000000000e+02,5.780000000000000000e+02 +5.790000000000000000e+02,5.190000000000000000e+02,5.130000000000000000e+02,5.730000000000000000e+02,5.820000000000000000e+02,5.210000000000000000e+02,5.750000000000000000e+02,5.810000000000000000e+02 +5.850000000000000000e+02,5.760000000000000000e+02,5.160000000000000000e+02,5.250000000000000000e+02,5.870000000000000000e+02,5.780000000000000000e+02,5.270000000000000000e+02,5.880000000000000000e+02 +5.790000000000000000e+02,5.800000000000000000e+02,5.200000000000000000e+02,5.190000000000000000e+02,5.830000000000000000e+02,5.840000000000000000e+02,5.230000000000000000e+02,5.820000000000000000e+02 +5.800000000000000000e+02,5.850000000000000000e+02,5.250000000000000000e+02,5.200000000000000000e+02,5.860000000000000000e+02,5.880000000000000000e+02,5.260000000000000000e+02,5.840000000000000000e+02 +5.890000000000000000e+02,5.290000000000000000e+02,5.300000000000000000e+02,5.900000000000000000e+02,5.940000000000000000e+02,5.320000000000000000e+02,5.930000000000000000e+02,5.920000000000000000e+02 +6.030000000000000000e+02,5.430000000000000000e+02,5.290000000000000000e+02,5.890000000000000000e+02,6.050000000000000000e+02,5.440000000000000000e+02,5.940000000000000000e+02,6.040000000000000000e+02 +5.900000000000000000e+02,5.300000000000000000e+02,5.310000000000000000e+02,5.910000000000000000e+02,5.930000000000000000e+02,5.350000000000000000e+02,5.960000000000000000e+02,5.950000000000000000e+02 +5.910000000000000000e+02,5.310000000000000000e+02,5.380000000000000000e+02,5.980000000000000000e+02,5.960000000000000000e+02,5.390000000000000000e+02,6.010000000000000000e+02,5.990000000000000000e+02 +5.970000000000000000e+02,5.980000000000000000e+02,5.380000000000000000e+02,5.370000000000000000e+02,6.000000000000000000e+02,6.010000000000000000e+02,5.400000000000000000e+02,6.020000000000000000e+02 +6.060000000000000000e+02,5.970000000000000000e+02,5.370000000000000000e+02,5.460000000000000000e+02,6.070000000000000000e+02,6.020000000000000000e+02,5.470000000000000000e+02,6.080000000000000000e+02 +6.090000000000000000e+02,5.490000000000000000e+02,5.430000000000000000e+02,6.030000000000000000e+02,6.110000000000000000e+02,5.500000000000000000e+02,6.050000000000000000e+02,6.100000000000000000e+02 +6.120000000000000000e+02,6.060000000000000000e+02,5.460000000000000000e+02,5.520000000000000000e+02,6.130000000000000000e+02,6.080000000000000000e+02,5.530000000000000000e+02,6.140000000000000000e+02 +6.150000000000000000e+02,5.550000000000000000e+02,5.490000000000000000e+02,6.090000000000000000e+02,6.170000000000000000e+02,5.560000000000000000e+02,6.110000000000000000e+02,6.160000000000000000e+02 +6.180000000000000000e+02,6.120000000000000000e+02,5.520000000000000000e+02,5.580000000000000000e+02,6.190000000000000000e+02,6.140000000000000000e+02,5.590000000000000000e+02,6.200000000000000000e+02 +6.210000000000000000e+02,5.610000000000000000e+02,5.550000000000000000e+02,6.150000000000000000e+02,6.230000000000000000e+02,5.620000000000000000e+02,6.170000000000000000e+02,6.220000000000000000e+02 +6.240000000000000000e+02,6.180000000000000000e+02,5.580000000000000000e+02,5.640000000000000000e+02,6.250000000000000000e+02,6.200000000000000000e+02,5.650000000000000000e+02,6.260000000000000000e+02 +6.270000000000000000e+02,5.670000000000000000e+02,5.610000000000000000e+02,6.210000000000000000e+02,6.290000000000000000e+02,5.680000000000000000e+02,6.230000000000000000e+02,6.280000000000000000e+02 +6.300000000000000000e+02,6.240000000000000000e+02,5.640000000000000000e+02,5.700000000000000000e+02,6.310000000000000000e+02,6.260000000000000000e+02,5.710000000000000000e+02,6.320000000000000000e+02 +6.330000000000000000e+02,5.730000000000000000e+02,5.670000000000000000e+02,6.270000000000000000e+02,6.350000000000000000e+02,5.740000000000000000e+02,6.290000000000000000e+02,6.340000000000000000e+02 +6.360000000000000000e+02,6.300000000000000000e+02,5.700000000000000000e+02,5.760000000000000000e+02,6.370000000000000000e+02,6.320000000000000000e+02,5.770000000000000000e+02,6.380000000000000000e+02 +6.440000000000000000e+02,5.890000000000000000e+02,5.900000000000000000e+02,6.450000000000000000e+02,6.490000000000000000e+02,5.920000000000000000e+02,6.480000000000000000e+02,6.470000000000000000e+02 +6.580000000000000000e+02,6.030000000000000000e+02,5.890000000000000000e+02,6.440000000000000000e+02,6.600000000000000000e+02,6.040000000000000000e+02,6.490000000000000000e+02,6.590000000000000000e+02 +6.450000000000000000e+02,5.900000000000000000e+02,5.910000000000000000e+02,6.460000000000000000e+02,6.480000000000000000e+02,5.950000000000000000e+02,6.510000000000000000e+02,6.500000000000000000e+02 +6.460000000000000000e+02,5.910000000000000000e+02,5.980000000000000000e+02,6.530000000000000000e+02,6.510000000000000000e+02,5.990000000000000000e+02,6.560000000000000000e+02,6.540000000000000000e+02 +6.520000000000000000e+02,6.530000000000000000e+02,5.980000000000000000e+02,5.970000000000000000e+02,6.550000000000000000e+02,6.560000000000000000e+02,6.000000000000000000e+02,6.570000000000000000e+02 +6.610000000000000000e+02,6.520000000000000000e+02,5.970000000000000000e+02,6.060000000000000000e+02,6.620000000000000000e+02,6.570000000000000000e+02,6.070000000000000000e+02,6.630000000000000000e+02 +6.640000000000000000e+02,6.090000000000000000e+02,6.030000000000000000e+02,6.580000000000000000e+02,6.660000000000000000e+02,6.100000000000000000e+02,6.600000000000000000e+02,6.650000000000000000e+02 +6.670000000000000000e+02,6.610000000000000000e+02,6.060000000000000000e+02,6.120000000000000000e+02,6.680000000000000000e+02,6.630000000000000000e+02,6.130000000000000000e+02,6.690000000000000000e+02 +6.700000000000000000e+02,6.150000000000000000e+02,6.090000000000000000e+02,6.640000000000000000e+02,6.720000000000000000e+02,6.160000000000000000e+02,6.660000000000000000e+02,6.710000000000000000e+02 +6.730000000000000000e+02,6.670000000000000000e+02,6.120000000000000000e+02,6.180000000000000000e+02,6.740000000000000000e+02,6.690000000000000000e+02,6.190000000000000000e+02,6.750000000000000000e+02 +6.760000000000000000e+02,6.210000000000000000e+02,6.150000000000000000e+02,6.700000000000000000e+02,6.780000000000000000e+02,6.220000000000000000e+02,6.720000000000000000e+02,6.770000000000000000e+02 +6.790000000000000000e+02,6.730000000000000000e+02,6.180000000000000000e+02,6.240000000000000000e+02,6.800000000000000000e+02,6.750000000000000000e+02,6.250000000000000000e+02,6.810000000000000000e+02 +6.820000000000000000e+02,6.270000000000000000e+02,6.210000000000000000e+02,6.760000000000000000e+02,6.840000000000000000e+02,6.280000000000000000e+02,6.780000000000000000e+02,6.830000000000000000e+02 +6.850000000000000000e+02,6.790000000000000000e+02,6.240000000000000000e+02,6.300000000000000000e+02,6.860000000000000000e+02,6.810000000000000000e+02,6.310000000000000000e+02,6.870000000000000000e+02 +6.880000000000000000e+02,6.330000000000000000e+02,6.270000000000000000e+02,6.820000000000000000e+02,6.900000000000000000e+02,6.340000000000000000e+02,6.840000000000000000e+02,6.890000000000000000e+02 +6.910000000000000000e+02,6.850000000000000000e+02,6.300000000000000000e+02,6.360000000000000000e+02,6.920000000000000000e+02,6.870000000000000000e+02,6.370000000000000000e+02,6.930000000000000000e+02 +6.960000000000000000e+02,6.440000000000000000e+02,6.450000000000000000e+02,6.970000000000000000e+02,7.010000000000000000e+02,6.470000000000000000e+02,7.000000000000000000e+02,6.990000000000000000e+02 +7.100000000000000000e+02,6.580000000000000000e+02,6.440000000000000000e+02,6.960000000000000000e+02,7.120000000000000000e+02,6.590000000000000000e+02,7.010000000000000000e+02,7.110000000000000000e+02 +6.970000000000000000e+02,6.450000000000000000e+02,6.460000000000000000e+02,6.980000000000000000e+02,7.000000000000000000e+02,6.500000000000000000e+02,7.030000000000000000e+02,7.020000000000000000e+02 +6.980000000000000000e+02,6.460000000000000000e+02,6.530000000000000000e+02,7.050000000000000000e+02,7.030000000000000000e+02,6.540000000000000000e+02,7.080000000000000000e+02,7.060000000000000000e+02 +7.040000000000000000e+02,7.050000000000000000e+02,6.530000000000000000e+02,6.520000000000000000e+02,7.070000000000000000e+02,7.080000000000000000e+02,6.550000000000000000e+02,7.090000000000000000e+02 +7.130000000000000000e+02,7.040000000000000000e+02,6.520000000000000000e+02,6.610000000000000000e+02,7.140000000000000000e+02,7.090000000000000000e+02,6.620000000000000000e+02,7.150000000000000000e+02 +7.160000000000000000e+02,6.640000000000000000e+02,6.580000000000000000e+02,7.100000000000000000e+02,7.180000000000000000e+02,6.650000000000000000e+02,7.120000000000000000e+02,7.170000000000000000e+02 +7.190000000000000000e+02,7.130000000000000000e+02,6.610000000000000000e+02,6.670000000000000000e+02,7.200000000000000000e+02,7.150000000000000000e+02,6.680000000000000000e+02,7.210000000000000000e+02 +7.220000000000000000e+02,6.700000000000000000e+02,6.640000000000000000e+02,7.160000000000000000e+02,7.240000000000000000e+02,6.710000000000000000e+02,7.180000000000000000e+02,7.230000000000000000e+02 +7.250000000000000000e+02,7.190000000000000000e+02,6.670000000000000000e+02,6.730000000000000000e+02,7.260000000000000000e+02,7.210000000000000000e+02,6.740000000000000000e+02,7.270000000000000000e+02 +7.280000000000000000e+02,6.760000000000000000e+02,6.700000000000000000e+02,7.220000000000000000e+02,7.300000000000000000e+02,6.770000000000000000e+02,7.240000000000000000e+02,7.290000000000000000e+02 +7.310000000000000000e+02,7.250000000000000000e+02,6.730000000000000000e+02,6.790000000000000000e+02,7.320000000000000000e+02,7.270000000000000000e+02,6.800000000000000000e+02,7.330000000000000000e+02 +7.340000000000000000e+02,6.820000000000000000e+02,6.760000000000000000e+02,7.280000000000000000e+02,7.360000000000000000e+02,6.830000000000000000e+02,7.300000000000000000e+02,7.350000000000000000e+02 +7.370000000000000000e+02,7.310000000000000000e+02,6.790000000000000000e+02,6.850000000000000000e+02,7.380000000000000000e+02,7.330000000000000000e+02,6.860000000000000000e+02,7.390000000000000000e+02 +7.400000000000000000e+02,6.880000000000000000e+02,6.820000000000000000e+02,7.340000000000000000e+02,7.420000000000000000e+02,6.890000000000000000e+02,7.360000000000000000e+02,7.410000000000000000e+02 +7.430000000000000000e+02,7.370000000000000000e+02,6.850000000000000000e+02,6.910000000000000000e+02,7.440000000000000000e+02,7.390000000000000000e+02,6.920000000000000000e+02,7.450000000000000000e+02 +7.480000000000000000e+02,6.960000000000000000e+02,6.970000000000000000e+02,7.490000000000000000e+02,7.530000000000000000e+02,6.990000000000000000e+02,7.520000000000000000e+02,7.510000000000000000e+02 +7.620000000000000000e+02,7.100000000000000000e+02,6.960000000000000000e+02,7.480000000000000000e+02,7.640000000000000000e+02,7.110000000000000000e+02,7.530000000000000000e+02,7.630000000000000000e+02 +7.490000000000000000e+02,6.970000000000000000e+02,6.980000000000000000e+02,7.500000000000000000e+02,7.520000000000000000e+02,7.020000000000000000e+02,7.550000000000000000e+02,7.540000000000000000e+02 +7.500000000000000000e+02,6.980000000000000000e+02,7.050000000000000000e+02,7.570000000000000000e+02,7.550000000000000000e+02,7.060000000000000000e+02,7.600000000000000000e+02,7.580000000000000000e+02 +7.560000000000000000e+02,7.570000000000000000e+02,7.050000000000000000e+02,7.040000000000000000e+02,7.590000000000000000e+02,7.600000000000000000e+02,7.070000000000000000e+02,7.610000000000000000e+02 +7.650000000000000000e+02,7.560000000000000000e+02,7.040000000000000000e+02,7.130000000000000000e+02,7.660000000000000000e+02,7.610000000000000000e+02,7.140000000000000000e+02,7.670000000000000000e+02 +7.680000000000000000e+02,7.160000000000000000e+02,7.100000000000000000e+02,7.620000000000000000e+02,7.700000000000000000e+02,7.170000000000000000e+02,7.640000000000000000e+02,7.690000000000000000e+02 +7.710000000000000000e+02,7.650000000000000000e+02,7.130000000000000000e+02,7.190000000000000000e+02,7.720000000000000000e+02,7.670000000000000000e+02,7.200000000000000000e+02,7.730000000000000000e+02 +7.740000000000000000e+02,7.220000000000000000e+02,7.160000000000000000e+02,7.680000000000000000e+02,7.760000000000000000e+02,7.230000000000000000e+02,7.700000000000000000e+02,7.750000000000000000e+02 +7.770000000000000000e+02,7.710000000000000000e+02,7.190000000000000000e+02,7.250000000000000000e+02,7.780000000000000000e+02,7.730000000000000000e+02,7.260000000000000000e+02,7.790000000000000000e+02 +7.800000000000000000e+02,7.280000000000000000e+02,7.220000000000000000e+02,7.740000000000000000e+02,7.820000000000000000e+02,7.290000000000000000e+02,7.760000000000000000e+02,7.810000000000000000e+02 +7.830000000000000000e+02,7.770000000000000000e+02,7.250000000000000000e+02,7.310000000000000000e+02,7.840000000000000000e+02,7.790000000000000000e+02,7.320000000000000000e+02,7.850000000000000000e+02 +7.860000000000000000e+02,7.340000000000000000e+02,7.280000000000000000e+02,7.800000000000000000e+02,7.880000000000000000e+02,7.350000000000000000e+02,7.820000000000000000e+02,7.870000000000000000e+02 +7.890000000000000000e+02,7.830000000000000000e+02,7.310000000000000000e+02,7.370000000000000000e+02,7.900000000000000000e+02,7.850000000000000000e+02,7.380000000000000000e+02,7.910000000000000000e+02 +7.920000000000000000e+02,7.400000000000000000e+02,7.340000000000000000e+02,7.860000000000000000e+02,7.940000000000000000e+02,7.410000000000000000e+02,7.880000000000000000e+02,7.930000000000000000e+02 +7.950000000000000000e+02,7.890000000000000000e+02,7.370000000000000000e+02,7.430000000000000000e+02,7.960000000000000000e+02,7.910000000000000000e+02,7.440000000000000000e+02,7.970000000000000000e+02 +8.000000000000000000e+02,7.480000000000000000e+02,7.490000000000000000e+02,8.010000000000000000e+02,8.050000000000000000e+02,7.510000000000000000e+02,8.040000000000000000e+02,8.030000000000000000e+02 +8.140000000000000000e+02,7.620000000000000000e+02,7.480000000000000000e+02,8.000000000000000000e+02,8.160000000000000000e+02,7.630000000000000000e+02,8.050000000000000000e+02,8.150000000000000000e+02 +8.010000000000000000e+02,7.490000000000000000e+02,7.500000000000000000e+02,8.020000000000000000e+02,8.040000000000000000e+02,7.540000000000000000e+02,8.070000000000000000e+02,8.060000000000000000e+02 +8.020000000000000000e+02,7.500000000000000000e+02,7.570000000000000000e+02,8.090000000000000000e+02,8.070000000000000000e+02,7.580000000000000000e+02,8.120000000000000000e+02,8.100000000000000000e+02 +8.080000000000000000e+02,8.090000000000000000e+02,7.570000000000000000e+02,7.560000000000000000e+02,8.110000000000000000e+02,8.120000000000000000e+02,7.590000000000000000e+02,8.130000000000000000e+02 +8.170000000000000000e+02,8.080000000000000000e+02,7.560000000000000000e+02,7.650000000000000000e+02,8.180000000000000000e+02,8.130000000000000000e+02,7.660000000000000000e+02,8.190000000000000000e+02 +8.200000000000000000e+02,7.680000000000000000e+02,7.620000000000000000e+02,8.140000000000000000e+02,8.220000000000000000e+02,7.690000000000000000e+02,8.160000000000000000e+02,8.210000000000000000e+02 +8.230000000000000000e+02,8.170000000000000000e+02,7.650000000000000000e+02,7.710000000000000000e+02,8.240000000000000000e+02,8.190000000000000000e+02,7.720000000000000000e+02,8.250000000000000000e+02 +8.260000000000000000e+02,7.740000000000000000e+02,7.680000000000000000e+02,8.200000000000000000e+02,8.280000000000000000e+02,7.750000000000000000e+02,8.220000000000000000e+02,8.270000000000000000e+02 +8.290000000000000000e+02,8.230000000000000000e+02,7.710000000000000000e+02,7.770000000000000000e+02,8.300000000000000000e+02,8.250000000000000000e+02,7.780000000000000000e+02,8.310000000000000000e+02 +8.320000000000000000e+02,7.800000000000000000e+02,7.740000000000000000e+02,8.260000000000000000e+02,8.340000000000000000e+02,7.810000000000000000e+02,8.280000000000000000e+02,8.330000000000000000e+02 +8.350000000000000000e+02,8.290000000000000000e+02,7.770000000000000000e+02,7.830000000000000000e+02,8.360000000000000000e+02,8.310000000000000000e+02,7.840000000000000000e+02,8.370000000000000000e+02 +8.380000000000000000e+02,7.860000000000000000e+02,7.800000000000000000e+02,8.320000000000000000e+02,8.400000000000000000e+02,7.870000000000000000e+02,8.340000000000000000e+02,8.390000000000000000e+02 +8.410000000000000000e+02,8.350000000000000000e+02,7.830000000000000000e+02,7.890000000000000000e+02,8.420000000000000000e+02,8.370000000000000000e+02,7.900000000000000000e+02,8.430000000000000000e+02 +8.440000000000000000e+02,7.920000000000000000e+02,7.860000000000000000e+02,8.380000000000000000e+02,8.460000000000000000e+02,7.930000000000000000e+02,8.400000000000000000e+02,8.450000000000000000e+02 +8.470000000000000000e+02,8.410000000000000000e+02,7.890000000000000000e+02,7.950000000000000000e+02,8.480000000000000000e+02,8.430000000000000000e+02,7.960000000000000000e+02,8.490000000000000000e+02 +8.520000000000000000e+02,8.000000000000000000e+02,8.010000000000000000e+02,8.530000000000000000e+02,8.570000000000000000e+02,8.030000000000000000e+02,8.560000000000000000e+02,8.550000000000000000e+02 +8.660000000000000000e+02,8.140000000000000000e+02,8.000000000000000000e+02,8.520000000000000000e+02,8.680000000000000000e+02,8.150000000000000000e+02,8.570000000000000000e+02,8.670000000000000000e+02 +8.530000000000000000e+02,8.010000000000000000e+02,8.020000000000000000e+02,8.540000000000000000e+02,8.560000000000000000e+02,8.060000000000000000e+02,8.590000000000000000e+02,8.580000000000000000e+02 +8.540000000000000000e+02,8.020000000000000000e+02,8.090000000000000000e+02,8.610000000000000000e+02,8.590000000000000000e+02,8.100000000000000000e+02,8.640000000000000000e+02,8.620000000000000000e+02 +8.600000000000000000e+02,8.610000000000000000e+02,8.090000000000000000e+02,8.080000000000000000e+02,8.630000000000000000e+02,8.640000000000000000e+02,8.110000000000000000e+02,8.650000000000000000e+02 +8.690000000000000000e+02,8.600000000000000000e+02,8.080000000000000000e+02,8.170000000000000000e+02,8.700000000000000000e+02,8.650000000000000000e+02,8.180000000000000000e+02,8.710000000000000000e+02 +8.720000000000000000e+02,8.200000000000000000e+02,8.140000000000000000e+02,8.660000000000000000e+02,8.740000000000000000e+02,8.210000000000000000e+02,8.680000000000000000e+02,8.730000000000000000e+02 +8.750000000000000000e+02,8.690000000000000000e+02,8.170000000000000000e+02,8.230000000000000000e+02,8.760000000000000000e+02,8.710000000000000000e+02,8.240000000000000000e+02,8.770000000000000000e+02 +8.780000000000000000e+02,8.260000000000000000e+02,8.200000000000000000e+02,8.720000000000000000e+02,8.800000000000000000e+02,8.270000000000000000e+02,8.740000000000000000e+02,8.790000000000000000e+02 +8.810000000000000000e+02,8.750000000000000000e+02,8.230000000000000000e+02,8.290000000000000000e+02,8.820000000000000000e+02,8.770000000000000000e+02,8.300000000000000000e+02,8.830000000000000000e+02 +8.840000000000000000e+02,8.320000000000000000e+02,8.260000000000000000e+02,8.780000000000000000e+02,8.860000000000000000e+02,8.330000000000000000e+02,8.800000000000000000e+02,8.850000000000000000e+02 +8.870000000000000000e+02,8.810000000000000000e+02,8.290000000000000000e+02,8.350000000000000000e+02,8.880000000000000000e+02,8.830000000000000000e+02,8.360000000000000000e+02,8.890000000000000000e+02 +8.900000000000000000e+02,8.380000000000000000e+02,8.320000000000000000e+02,8.840000000000000000e+02,8.920000000000000000e+02,8.390000000000000000e+02,8.860000000000000000e+02,8.910000000000000000e+02 +8.930000000000000000e+02,8.870000000000000000e+02,8.350000000000000000e+02,8.410000000000000000e+02,8.940000000000000000e+02,8.890000000000000000e+02,8.420000000000000000e+02,8.950000000000000000e+02 +8.960000000000000000e+02,8.440000000000000000e+02,8.380000000000000000e+02,8.900000000000000000e+02,8.980000000000000000e+02,8.450000000000000000e+02,8.920000000000000000e+02,8.970000000000000000e+02 +8.990000000000000000e+02,8.930000000000000000e+02,8.410000000000000000e+02,8.470000000000000000e+02,9.000000000000000000e+02,8.950000000000000000e+02,8.480000000000000000e+02,9.010000000000000000e+02 +9.040000000000000000e+02,8.520000000000000000e+02,8.530000000000000000e+02,9.050000000000000000e+02,9.090000000000000000e+02,8.550000000000000000e+02,9.080000000000000000e+02,9.070000000000000000e+02 +9.180000000000000000e+02,8.660000000000000000e+02,8.520000000000000000e+02,9.040000000000000000e+02,9.200000000000000000e+02,8.670000000000000000e+02,9.090000000000000000e+02,9.190000000000000000e+02 +9.050000000000000000e+02,8.530000000000000000e+02,8.540000000000000000e+02,9.060000000000000000e+02,9.080000000000000000e+02,8.580000000000000000e+02,9.110000000000000000e+02,9.100000000000000000e+02 +9.060000000000000000e+02,8.540000000000000000e+02,8.610000000000000000e+02,9.130000000000000000e+02,9.110000000000000000e+02,8.620000000000000000e+02,9.160000000000000000e+02,9.140000000000000000e+02 +9.120000000000000000e+02,9.130000000000000000e+02,8.610000000000000000e+02,8.600000000000000000e+02,9.150000000000000000e+02,9.160000000000000000e+02,8.630000000000000000e+02,9.170000000000000000e+02 +9.210000000000000000e+02,9.120000000000000000e+02,8.600000000000000000e+02,8.690000000000000000e+02,9.220000000000000000e+02,9.170000000000000000e+02,8.700000000000000000e+02,9.230000000000000000e+02 +9.240000000000000000e+02,8.720000000000000000e+02,8.660000000000000000e+02,9.180000000000000000e+02,9.260000000000000000e+02,8.730000000000000000e+02,9.200000000000000000e+02,9.250000000000000000e+02 +9.270000000000000000e+02,9.210000000000000000e+02,8.690000000000000000e+02,8.750000000000000000e+02,9.280000000000000000e+02,9.230000000000000000e+02,8.760000000000000000e+02,9.290000000000000000e+02 +9.300000000000000000e+02,8.780000000000000000e+02,8.720000000000000000e+02,9.240000000000000000e+02,9.320000000000000000e+02,8.790000000000000000e+02,9.260000000000000000e+02,9.310000000000000000e+02 +9.330000000000000000e+02,9.270000000000000000e+02,8.750000000000000000e+02,8.810000000000000000e+02,9.340000000000000000e+02,9.290000000000000000e+02,8.820000000000000000e+02,9.350000000000000000e+02 +9.360000000000000000e+02,8.840000000000000000e+02,8.780000000000000000e+02,9.300000000000000000e+02,9.380000000000000000e+02,8.850000000000000000e+02,9.320000000000000000e+02,9.370000000000000000e+02 +9.390000000000000000e+02,9.330000000000000000e+02,8.810000000000000000e+02,8.870000000000000000e+02,9.400000000000000000e+02,9.350000000000000000e+02,8.880000000000000000e+02,9.410000000000000000e+02 +9.420000000000000000e+02,8.900000000000000000e+02,8.840000000000000000e+02,9.360000000000000000e+02,9.440000000000000000e+02,8.910000000000000000e+02,9.380000000000000000e+02,9.430000000000000000e+02 +9.450000000000000000e+02,9.390000000000000000e+02,8.870000000000000000e+02,8.930000000000000000e+02,9.460000000000000000e+02,9.410000000000000000e+02,8.940000000000000000e+02,9.470000000000000000e+02 +9.480000000000000000e+02,8.960000000000000000e+02,8.900000000000000000e+02,9.420000000000000000e+02,9.500000000000000000e+02,8.970000000000000000e+02,9.440000000000000000e+02,9.490000000000000000e+02 +9.510000000000000000e+02,9.450000000000000000e+02,8.930000000000000000e+02,8.990000000000000000e+02,9.520000000000000000e+02,9.470000000000000000e+02,9.000000000000000000e+02,9.530000000000000000e+02 +9.560000000000000000e+02,9.040000000000000000e+02,9.050000000000000000e+02,9.570000000000000000e+02,9.610000000000000000e+02,9.070000000000000000e+02,9.600000000000000000e+02,9.590000000000000000e+02 +9.700000000000000000e+02,9.180000000000000000e+02,9.040000000000000000e+02,9.560000000000000000e+02,9.720000000000000000e+02,9.190000000000000000e+02,9.610000000000000000e+02,9.710000000000000000e+02 +9.570000000000000000e+02,9.050000000000000000e+02,9.060000000000000000e+02,9.580000000000000000e+02,9.600000000000000000e+02,9.100000000000000000e+02,9.630000000000000000e+02,9.620000000000000000e+02 +9.580000000000000000e+02,9.060000000000000000e+02,9.130000000000000000e+02,9.650000000000000000e+02,9.630000000000000000e+02,9.140000000000000000e+02,9.680000000000000000e+02,9.660000000000000000e+02 +9.640000000000000000e+02,9.650000000000000000e+02,9.130000000000000000e+02,9.120000000000000000e+02,9.670000000000000000e+02,9.680000000000000000e+02,9.150000000000000000e+02,9.690000000000000000e+02 +9.730000000000000000e+02,9.640000000000000000e+02,9.120000000000000000e+02,9.210000000000000000e+02,9.740000000000000000e+02,9.690000000000000000e+02,9.220000000000000000e+02,9.750000000000000000e+02 +9.760000000000000000e+02,9.240000000000000000e+02,9.180000000000000000e+02,9.700000000000000000e+02,9.780000000000000000e+02,9.250000000000000000e+02,9.720000000000000000e+02,9.770000000000000000e+02 +9.790000000000000000e+02,9.730000000000000000e+02,9.210000000000000000e+02,9.270000000000000000e+02,9.800000000000000000e+02,9.750000000000000000e+02,9.280000000000000000e+02,9.810000000000000000e+02 +9.820000000000000000e+02,9.300000000000000000e+02,9.240000000000000000e+02,9.760000000000000000e+02,9.840000000000000000e+02,9.310000000000000000e+02,9.780000000000000000e+02,9.830000000000000000e+02 +9.850000000000000000e+02,9.790000000000000000e+02,9.270000000000000000e+02,9.330000000000000000e+02,9.860000000000000000e+02,9.810000000000000000e+02,9.340000000000000000e+02,9.870000000000000000e+02 +9.880000000000000000e+02,9.360000000000000000e+02,9.300000000000000000e+02,9.820000000000000000e+02,9.900000000000000000e+02,9.370000000000000000e+02,9.840000000000000000e+02,9.890000000000000000e+02 +9.910000000000000000e+02,9.850000000000000000e+02,9.330000000000000000e+02,9.390000000000000000e+02,9.920000000000000000e+02,9.870000000000000000e+02,9.400000000000000000e+02,9.930000000000000000e+02 +9.940000000000000000e+02,9.420000000000000000e+02,9.360000000000000000e+02,9.880000000000000000e+02,9.960000000000000000e+02,9.430000000000000000e+02,9.900000000000000000e+02,9.950000000000000000e+02 +9.970000000000000000e+02,9.910000000000000000e+02,9.390000000000000000e+02,9.450000000000000000e+02,9.980000000000000000e+02,9.930000000000000000e+02,9.460000000000000000e+02,9.990000000000000000e+02 +1.000000000000000000e+03,9.480000000000000000e+02,9.420000000000000000e+02,9.940000000000000000e+02,1.002000000000000000e+03,9.490000000000000000e+02,9.960000000000000000e+02,1.001000000000000000e+03 +1.003000000000000000e+03,9.970000000000000000e+02,9.450000000000000000e+02,9.510000000000000000e+02,1.004000000000000000e+03,9.990000000000000000e+02,9.520000000000000000e+02,1.005000000000000000e+03 +1.008000000000000000e+03,9.560000000000000000e+02,9.570000000000000000e+02,1.009000000000000000e+03,1.013000000000000000e+03,9.590000000000000000e+02,1.012000000000000000e+03,1.011000000000000000e+03 +1.022000000000000000e+03,9.700000000000000000e+02,9.560000000000000000e+02,1.008000000000000000e+03,1.024000000000000000e+03,9.710000000000000000e+02,1.013000000000000000e+03,1.023000000000000000e+03 +1.009000000000000000e+03,9.570000000000000000e+02,9.580000000000000000e+02,1.010000000000000000e+03,1.012000000000000000e+03,9.620000000000000000e+02,1.015000000000000000e+03,1.014000000000000000e+03 +1.010000000000000000e+03,9.580000000000000000e+02,9.650000000000000000e+02,1.017000000000000000e+03,1.015000000000000000e+03,9.660000000000000000e+02,1.020000000000000000e+03,1.018000000000000000e+03 +1.016000000000000000e+03,1.017000000000000000e+03,9.650000000000000000e+02,9.640000000000000000e+02,1.019000000000000000e+03,1.020000000000000000e+03,9.670000000000000000e+02,1.021000000000000000e+03 +1.025000000000000000e+03,1.016000000000000000e+03,9.640000000000000000e+02,9.730000000000000000e+02,1.026000000000000000e+03,1.021000000000000000e+03,9.740000000000000000e+02,1.027000000000000000e+03 +1.028000000000000000e+03,9.760000000000000000e+02,9.700000000000000000e+02,1.022000000000000000e+03,1.030000000000000000e+03,9.770000000000000000e+02,1.024000000000000000e+03,1.029000000000000000e+03 +1.031000000000000000e+03,1.025000000000000000e+03,9.730000000000000000e+02,9.790000000000000000e+02,1.032000000000000000e+03,1.027000000000000000e+03,9.800000000000000000e+02,1.033000000000000000e+03 +1.034000000000000000e+03,9.820000000000000000e+02,9.760000000000000000e+02,1.028000000000000000e+03,1.036000000000000000e+03,9.830000000000000000e+02,1.030000000000000000e+03,1.035000000000000000e+03 +1.037000000000000000e+03,1.031000000000000000e+03,9.790000000000000000e+02,9.850000000000000000e+02,1.038000000000000000e+03,1.033000000000000000e+03,9.860000000000000000e+02,1.039000000000000000e+03 +1.040000000000000000e+03,9.880000000000000000e+02,9.820000000000000000e+02,1.034000000000000000e+03,1.042000000000000000e+03,9.890000000000000000e+02,1.036000000000000000e+03,1.041000000000000000e+03 +1.043000000000000000e+03,1.037000000000000000e+03,9.850000000000000000e+02,9.910000000000000000e+02,1.044000000000000000e+03,1.039000000000000000e+03,9.920000000000000000e+02,1.045000000000000000e+03 +1.046000000000000000e+03,9.940000000000000000e+02,9.880000000000000000e+02,1.040000000000000000e+03,1.048000000000000000e+03,9.950000000000000000e+02,1.042000000000000000e+03,1.047000000000000000e+03 +1.049000000000000000e+03,1.043000000000000000e+03,9.910000000000000000e+02,9.970000000000000000e+02,1.050000000000000000e+03,1.045000000000000000e+03,9.980000000000000000e+02,1.051000000000000000e+03 +1.052000000000000000e+03,1.000000000000000000e+03,9.940000000000000000e+02,1.046000000000000000e+03,1.054000000000000000e+03,1.001000000000000000e+03,1.048000000000000000e+03,1.053000000000000000e+03 +1.055000000000000000e+03,1.049000000000000000e+03,9.970000000000000000e+02,1.003000000000000000e+03,1.056000000000000000e+03,1.051000000000000000e+03,1.004000000000000000e+03,1.057000000000000000e+03 +1.060000000000000000e+03,1.008000000000000000e+03,1.009000000000000000e+03,1.061000000000000000e+03,1.065000000000000000e+03,1.011000000000000000e+03,1.064000000000000000e+03,1.063000000000000000e+03 +1.074000000000000000e+03,1.022000000000000000e+03,1.008000000000000000e+03,1.060000000000000000e+03,1.076000000000000000e+03,1.023000000000000000e+03,1.065000000000000000e+03,1.075000000000000000e+03 +1.061000000000000000e+03,1.009000000000000000e+03,1.010000000000000000e+03,1.062000000000000000e+03,1.064000000000000000e+03,1.014000000000000000e+03,1.067000000000000000e+03,1.066000000000000000e+03 +1.062000000000000000e+03,1.010000000000000000e+03,1.017000000000000000e+03,1.069000000000000000e+03,1.067000000000000000e+03,1.018000000000000000e+03,1.072000000000000000e+03,1.070000000000000000e+03 +1.068000000000000000e+03,1.069000000000000000e+03,1.017000000000000000e+03,1.016000000000000000e+03,1.071000000000000000e+03,1.072000000000000000e+03,1.019000000000000000e+03,1.073000000000000000e+03 +1.077000000000000000e+03,1.068000000000000000e+03,1.016000000000000000e+03,1.025000000000000000e+03,1.078000000000000000e+03,1.073000000000000000e+03,1.026000000000000000e+03,1.079000000000000000e+03 +1.080000000000000000e+03,1.028000000000000000e+03,1.022000000000000000e+03,1.074000000000000000e+03,1.082000000000000000e+03,1.029000000000000000e+03,1.076000000000000000e+03,1.081000000000000000e+03 +1.083000000000000000e+03,1.077000000000000000e+03,1.025000000000000000e+03,1.031000000000000000e+03,1.084000000000000000e+03,1.079000000000000000e+03,1.032000000000000000e+03,1.085000000000000000e+03 +1.086000000000000000e+03,1.034000000000000000e+03,1.028000000000000000e+03,1.080000000000000000e+03,1.088000000000000000e+03,1.035000000000000000e+03,1.082000000000000000e+03,1.087000000000000000e+03 +1.089000000000000000e+03,1.083000000000000000e+03,1.031000000000000000e+03,1.037000000000000000e+03,1.090000000000000000e+03,1.085000000000000000e+03,1.038000000000000000e+03,1.091000000000000000e+03 +1.092000000000000000e+03,1.040000000000000000e+03,1.034000000000000000e+03,1.086000000000000000e+03,1.094000000000000000e+03,1.041000000000000000e+03,1.088000000000000000e+03,1.093000000000000000e+03 +1.095000000000000000e+03,1.089000000000000000e+03,1.037000000000000000e+03,1.043000000000000000e+03,1.096000000000000000e+03,1.091000000000000000e+03,1.044000000000000000e+03,1.097000000000000000e+03 +1.098000000000000000e+03,1.046000000000000000e+03,1.040000000000000000e+03,1.092000000000000000e+03,1.100000000000000000e+03,1.047000000000000000e+03,1.094000000000000000e+03,1.099000000000000000e+03 +1.101000000000000000e+03,1.095000000000000000e+03,1.043000000000000000e+03,1.049000000000000000e+03,1.102000000000000000e+03,1.097000000000000000e+03,1.050000000000000000e+03,1.103000000000000000e+03 +1.104000000000000000e+03,1.052000000000000000e+03,1.046000000000000000e+03,1.098000000000000000e+03,1.106000000000000000e+03,1.053000000000000000e+03,1.100000000000000000e+03,1.105000000000000000e+03 +1.107000000000000000e+03,1.101000000000000000e+03,1.049000000000000000e+03,1.055000000000000000e+03,1.108000000000000000e+03,1.103000000000000000e+03,1.056000000000000000e+03,1.109000000000000000e+03 +1.120000000000000000e+03,1.060000000000000000e+03,1.061000000000000000e+03,1.121000000000000000e+03,1.125000000000000000e+03,1.063000000000000000e+03,1.124000000000000000e+03,1.123000000000000000e+03 +1.134000000000000000e+03,1.074000000000000000e+03,1.060000000000000000e+03,1.120000000000000000e+03,1.136000000000000000e+03,1.075000000000000000e+03,1.125000000000000000e+03,1.135000000000000000e+03 +1.121000000000000000e+03,1.061000000000000000e+03,1.062000000000000000e+03,1.122000000000000000e+03,1.124000000000000000e+03,1.066000000000000000e+03,1.127000000000000000e+03,1.126000000000000000e+03 +1.122000000000000000e+03,1.062000000000000000e+03,1.069000000000000000e+03,1.129000000000000000e+03,1.127000000000000000e+03,1.070000000000000000e+03,1.132000000000000000e+03,1.130000000000000000e+03 +1.128000000000000000e+03,1.129000000000000000e+03,1.069000000000000000e+03,1.068000000000000000e+03,1.131000000000000000e+03,1.132000000000000000e+03,1.071000000000000000e+03,1.133000000000000000e+03 +1.137000000000000000e+03,1.128000000000000000e+03,1.068000000000000000e+03,1.077000000000000000e+03,1.138000000000000000e+03,1.133000000000000000e+03,1.078000000000000000e+03,1.139000000000000000e+03 +1.140000000000000000e+03,1.080000000000000000e+03,1.074000000000000000e+03,1.134000000000000000e+03,1.142000000000000000e+03,1.081000000000000000e+03,1.136000000000000000e+03,1.141000000000000000e+03 +1.143000000000000000e+03,1.137000000000000000e+03,1.077000000000000000e+03,1.083000000000000000e+03,1.144000000000000000e+03,1.139000000000000000e+03,1.084000000000000000e+03,1.145000000000000000e+03 +1.146000000000000000e+03,1.086000000000000000e+03,1.080000000000000000e+03,1.140000000000000000e+03,1.148000000000000000e+03,1.087000000000000000e+03,1.142000000000000000e+03,1.147000000000000000e+03 +1.149000000000000000e+03,1.143000000000000000e+03,1.083000000000000000e+03,1.089000000000000000e+03,1.150000000000000000e+03,1.145000000000000000e+03,1.090000000000000000e+03,1.151000000000000000e+03 +1.152000000000000000e+03,1.092000000000000000e+03,1.086000000000000000e+03,1.146000000000000000e+03,1.154000000000000000e+03,1.093000000000000000e+03,1.148000000000000000e+03,1.153000000000000000e+03 +1.155000000000000000e+03,1.149000000000000000e+03,1.089000000000000000e+03,1.095000000000000000e+03,1.156000000000000000e+03,1.151000000000000000e+03,1.096000000000000000e+03,1.157000000000000000e+03 +1.158000000000000000e+03,1.098000000000000000e+03,1.092000000000000000e+03,1.152000000000000000e+03,1.160000000000000000e+03,1.099000000000000000e+03,1.154000000000000000e+03,1.159000000000000000e+03 +1.161000000000000000e+03,1.155000000000000000e+03,1.095000000000000000e+03,1.101000000000000000e+03,1.162000000000000000e+03,1.157000000000000000e+03,1.102000000000000000e+03,1.163000000000000000e+03 +1.164000000000000000e+03,1.104000000000000000e+03,1.098000000000000000e+03,1.158000000000000000e+03,1.166000000000000000e+03,1.105000000000000000e+03,1.160000000000000000e+03,1.165000000000000000e+03 +1.167000000000000000e+03,1.161000000000000000e+03,1.101000000000000000e+03,1.107000000000000000e+03,1.168000000000000000e+03,1.163000000000000000e+03,1.108000000000000000e+03,1.169000000000000000e+03 +1.170000000000000000e+03,1.110000000000000000e+03,1.104000000000000000e+03,1.164000000000000000e+03,1.173000000000000000e+03,1.112000000000000000e+03,1.166000000000000000e+03,1.172000000000000000e+03 +1.176000000000000000e+03,1.167000000000000000e+03,1.107000000000000000e+03,1.116000000000000000e+03,1.178000000000000000e+03,1.169000000000000000e+03,1.118000000000000000e+03,1.179000000000000000e+03 +1.170000000000000000e+03,1.171000000000000000e+03,1.111000000000000000e+03,1.110000000000000000e+03,1.174000000000000000e+03,1.175000000000000000e+03,1.114000000000000000e+03,1.173000000000000000e+03 +1.171000000000000000e+03,1.176000000000000000e+03,1.116000000000000000e+03,1.111000000000000000e+03,1.177000000000000000e+03,1.179000000000000000e+03,1.117000000000000000e+03,1.175000000000000000e+03 +1.180000000000000000e+03,1.120000000000000000e+03,1.121000000000000000e+03,1.181000000000000000e+03,1.185000000000000000e+03,1.123000000000000000e+03,1.184000000000000000e+03,1.183000000000000000e+03 +1.194000000000000000e+03,1.134000000000000000e+03,1.120000000000000000e+03,1.180000000000000000e+03,1.196000000000000000e+03,1.135000000000000000e+03,1.185000000000000000e+03,1.195000000000000000e+03 +1.181000000000000000e+03,1.121000000000000000e+03,1.122000000000000000e+03,1.182000000000000000e+03,1.184000000000000000e+03,1.126000000000000000e+03,1.187000000000000000e+03,1.186000000000000000e+03 +1.182000000000000000e+03,1.122000000000000000e+03,1.129000000000000000e+03,1.189000000000000000e+03,1.187000000000000000e+03,1.130000000000000000e+03,1.192000000000000000e+03,1.190000000000000000e+03 +1.188000000000000000e+03,1.189000000000000000e+03,1.129000000000000000e+03,1.128000000000000000e+03,1.191000000000000000e+03,1.192000000000000000e+03,1.131000000000000000e+03,1.193000000000000000e+03 +1.197000000000000000e+03,1.188000000000000000e+03,1.128000000000000000e+03,1.137000000000000000e+03,1.198000000000000000e+03,1.193000000000000000e+03,1.138000000000000000e+03,1.199000000000000000e+03 +1.200000000000000000e+03,1.140000000000000000e+03,1.134000000000000000e+03,1.194000000000000000e+03,1.202000000000000000e+03,1.141000000000000000e+03,1.196000000000000000e+03,1.201000000000000000e+03 +1.203000000000000000e+03,1.197000000000000000e+03,1.137000000000000000e+03,1.143000000000000000e+03,1.204000000000000000e+03,1.199000000000000000e+03,1.144000000000000000e+03,1.205000000000000000e+03 +1.206000000000000000e+03,1.146000000000000000e+03,1.140000000000000000e+03,1.200000000000000000e+03,1.208000000000000000e+03,1.147000000000000000e+03,1.202000000000000000e+03,1.207000000000000000e+03 +1.209000000000000000e+03,1.203000000000000000e+03,1.143000000000000000e+03,1.149000000000000000e+03,1.210000000000000000e+03,1.205000000000000000e+03,1.150000000000000000e+03,1.211000000000000000e+03 +1.212000000000000000e+03,1.152000000000000000e+03,1.146000000000000000e+03,1.206000000000000000e+03,1.214000000000000000e+03,1.153000000000000000e+03,1.208000000000000000e+03,1.213000000000000000e+03 +1.215000000000000000e+03,1.209000000000000000e+03,1.149000000000000000e+03,1.155000000000000000e+03,1.216000000000000000e+03,1.211000000000000000e+03,1.156000000000000000e+03,1.217000000000000000e+03 +1.218000000000000000e+03,1.158000000000000000e+03,1.152000000000000000e+03,1.212000000000000000e+03,1.220000000000000000e+03,1.159000000000000000e+03,1.214000000000000000e+03,1.219000000000000000e+03 +1.221000000000000000e+03,1.215000000000000000e+03,1.155000000000000000e+03,1.161000000000000000e+03,1.222000000000000000e+03,1.217000000000000000e+03,1.162000000000000000e+03,1.223000000000000000e+03 +1.224000000000000000e+03,1.164000000000000000e+03,1.158000000000000000e+03,1.218000000000000000e+03,1.226000000000000000e+03,1.165000000000000000e+03,1.220000000000000000e+03,1.225000000000000000e+03 +1.227000000000000000e+03,1.221000000000000000e+03,1.161000000000000000e+03,1.167000000000000000e+03,1.228000000000000000e+03,1.223000000000000000e+03,1.168000000000000000e+03,1.229000000000000000e+03 +1.230000000000000000e+03,1.170000000000000000e+03,1.164000000000000000e+03,1.224000000000000000e+03,1.233000000000000000e+03,1.172000000000000000e+03,1.226000000000000000e+03,1.232000000000000000e+03 +1.236000000000000000e+03,1.227000000000000000e+03,1.167000000000000000e+03,1.176000000000000000e+03,1.238000000000000000e+03,1.229000000000000000e+03,1.178000000000000000e+03,1.239000000000000000e+03 +1.230000000000000000e+03,1.231000000000000000e+03,1.171000000000000000e+03,1.170000000000000000e+03,1.234000000000000000e+03,1.235000000000000000e+03,1.174000000000000000e+03,1.233000000000000000e+03 +1.231000000000000000e+03,1.236000000000000000e+03,1.176000000000000000e+03,1.171000000000000000e+03,1.237000000000000000e+03,1.239000000000000000e+03,1.177000000000000000e+03,1.235000000000000000e+03 +1.240000000000000000e+03,1.180000000000000000e+03,1.181000000000000000e+03,1.241000000000000000e+03,1.245000000000000000e+03,1.183000000000000000e+03,1.244000000000000000e+03,1.243000000000000000e+03 +1.254000000000000000e+03,1.194000000000000000e+03,1.180000000000000000e+03,1.240000000000000000e+03,1.256000000000000000e+03,1.195000000000000000e+03,1.245000000000000000e+03,1.255000000000000000e+03 +1.241000000000000000e+03,1.181000000000000000e+03,1.182000000000000000e+03,1.242000000000000000e+03,1.244000000000000000e+03,1.186000000000000000e+03,1.247000000000000000e+03,1.246000000000000000e+03 +1.242000000000000000e+03,1.182000000000000000e+03,1.189000000000000000e+03,1.249000000000000000e+03,1.247000000000000000e+03,1.190000000000000000e+03,1.252000000000000000e+03,1.250000000000000000e+03 +1.248000000000000000e+03,1.249000000000000000e+03,1.189000000000000000e+03,1.188000000000000000e+03,1.251000000000000000e+03,1.252000000000000000e+03,1.191000000000000000e+03,1.253000000000000000e+03 +1.257000000000000000e+03,1.248000000000000000e+03,1.188000000000000000e+03,1.197000000000000000e+03,1.258000000000000000e+03,1.253000000000000000e+03,1.198000000000000000e+03,1.259000000000000000e+03 +1.260000000000000000e+03,1.200000000000000000e+03,1.194000000000000000e+03,1.254000000000000000e+03,1.262000000000000000e+03,1.201000000000000000e+03,1.256000000000000000e+03,1.261000000000000000e+03 +1.263000000000000000e+03,1.257000000000000000e+03,1.197000000000000000e+03,1.203000000000000000e+03,1.264000000000000000e+03,1.259000000000000000e+03,1.204000000000000000e+03,1.265000000000000000e+03 +1.266000000000000000e+03,1.206000000000000000e+03,1.200000000000000000e+03,1.260000000000000000e+03,1.268000000000000000e+03,1.207000000000000000e+03,1.262000000000000000e+03,1.267000000000000000e+03 +1.269000000000000000e+03,1.263000000000000000e+03,1.203000000000000000e+03,1.209000000000000000e+03,1.270000000000000000e+03,1.265000000000000000e+03,1.210000000000000000e+03,1.271000000000000000e+03 +1.272000000000000000e+03,1.212000000000000000e+03,1.206000000000000000e+03,1.266000000000000000e+03,1.274000000000000000e+03,1.213000000000000000e+03,1.268000000000000000e+03,1.273000000000000000e+03 +1.275000000000000000e+03,1.269000000000000000e+03,1.209000000000000000e+03,1.215000000000000000e+03,1.276000000000000000e+03,1.271000000000000000e+03,1.216000000000000000e+03,1.277000000000000000e+03 +1.278000000000000000e+03,1.218000000000000000e+03,1.212000000000000000e+03,1.272000000000000000e+03,1.280000000000000000e+03,1.219000000000000000e+03,1.274000000000000000e+03,1.279000000000000000e+03 +1.281000000000000000e+03,1.275000000000000000e+03,1.215000000000000000e+03,1.221000000000000000e+03,1.282000000000000000e+03,1.277000000000000000e+03,1.222000000000000000e+03,1.283000000000000000e+03 +1.284000000000000000e+03,1.224000000000000000e+03,1.218000000000000000e+03,1.278000000000000000e+03,1.286000000000000000e+03,1.225000000000000000e+03,1.280000000000000000e+03,1.285000000000000000e+03 +1.287000000000000000e+03,1.281000000000000000e+03,1.221000000000000000e+03,1.227000000000000000e+03,1.288000000000000000e+03,1.283000000000000000e+03,1.228000000000000000e+03,1.289000000000000000e+03 +1.290000000000000000e+03,1.230000000000000000e+03,1.224000000000000000e+03,1.284000000000000000e+03,1.293000000000000000e+03,1.232000000000000000e+03,1.286000000000000000e+03,1.292000000000000000e+03 +1.296000000000000000e+03,1.287000000000000000e+03,1.227000000000000000e+03,1.236000000000000000e+03,1.298000000000000000e+03,1.289000000000000000e+03,1.238000000000000000e+03,1.299000000000000000e+03 +1.290000000000000000e+03,1.291000000000000000e+03,1.231000000000000000e+03,1.230000000000000000e+03,1.294000000000000000e+03,1.295000000000000000e+03,1.234000000000000000e+03,1.293000000000000000e+03 +1.291000000000000000e+03,1.296000000000000000e+03,1.236000000000000000e+03,1.231000000000000000e+03,1.297000000000000000e+03,1.299000000000000000e+03,1.237000000000000000e+03,1.295000000000000000e+03 +1.764000000000000000e+03,1.240000000000000000e+03,1.241000000000000000e+03,1.765000000000000000e+03,1.769000000000000000e+03,1.243000000000000000e+03,1.768000000000000000e+03,1.767000000000000000e+03 +1.778000000000000000e+03,1.254000000000000000e+03,1.240000000000000000e+03,1.764000000000000000e+03,1.780000000000000000e+03,1.255000000000000000e+03,1.769000000000000000e+03,1.779000000000000000e+03 +1.765000000000000000e+03,1.241000000000000000e+03,1.242000000000000000e+03,1.766000000000000000e+03,1.768000000000000000e+03,1.246000000000000000e+03,1.771000000000000000e+03,1.770000000000000000e+03 +1.766000000000000000e+03,1.242000000000000000e+03,1.249000000000000000e+03,1.773000000000000000e+03,1.771000000000000000e+03,1.250000000000000000e+03,1.776000000000000000e+03,1.774000000000000000e+03 +1.772000000000000000e+03,1.773000000000000000e+03,1.249000000000000000e+03,1.248000000000000000e+03,1.775000000000000000e+03,1.776000000000000000e+03,1.251000000000000000e+03,1.777000000000000000e+03 +1.781000000000000000e+03,1.772000000000000000e+03,1.248000000000000000e+03,1.257000000000000000e+03,1.782000000000000000e+03,1.777000000000000000e+03,1.258000000000000000e+03,1.783000000000000000e+03 +1.784000000000000000e+03,1.260000000000000000e+03,1.254000000000000000e+03,1.778000000000000000e+03,1.786000000000000000e+03,1.261000000000000000e+03,1.780000000000000000e+03,1.785000000000000000e+03 +1.787000000000000000e+03,1.781000000000000000e+03,1.257000000000000000e+03,1.263000000000000000e+03,1.788000000000000000e+03,1.783000000000000000e+03,1.264000000000000000e+03,1.789000000000000000e+03 +1.790000000000000000e+03,1.266000000000000000e+03,1.260000000000000000e+03,1.784000000000000000e+03,1.792000000000000000e+03,1.267000000000000000e+03,1.786000000000000000e+03,1.791000000000000000e+03 +1.793000000000000000e+03,1.787000000000000000e+03,1.263000000000000000e+03,1.269000000000000000e+03,1.794000000000000000e+03,1.789000000000000000e+03,1.270000000000000000e+03,1.795000000000000000e+03 +1.796000000000000000e+03,1.272000000000000000e+03,1.266000000000000000e+03,1.790000000000000000e+03,1.798000000000000000e+03,1.273000000000000000e+03,1.792000000000000000e+03,1.797000000000000000e+03 +1.799000000000000000e+03,1.793000000000000000e+03,1.269000000000000000e+03,1.275000000000000000e+03,1.800000000000000000e+03,1.795000000000000000e+03,1.276000000000000000e+03,1.801000000000000000e+03 +1.802000000000000000e+03,1.278000000000000000e+03,1.272000000000000000e+03,1.796000000000000000e+03,1.804000000000000000e+03,1.279000000000000000e+03,1.798000000000000000e+03,1.803000000000000000e+03 +1.805000000000000000e+03,1.799000000000000000e+03,1.275000000000000000e+03,1.281000000000000000e+03,1.806000000000000000e+03,1.801000000000000000e+03,1.282000000000000000e+03,1.807000000000000000e+03 +1.808000000000000000e+03,1.284000000000000000e+03,1.278000000000000000e+03,1.802000000000000000e+03,1.810000000000000000e+03,1.285000000000000000e+03,1.804000000000000000e+03,1.809000000000000000e+03 +1.811000000000000000e+03,1.805000000000000000e+03,1.281000000000000000e+03,1.287000000000000000e+03,1.812000000000000000e+03,1.807000000000000000e+03,1.288000000000000000e+03,1.813000000000000000e+03 +1.814000000000000000e+03,1.290000000000000000e+03,1.284000000000000000e+03,1.808000000000000000e+03,1.817000000000000000e+03,1.292000000000000000e+03,1.810000000000000000e+03,1.816000000000000000e+03 +1.820000000000000000e+03,1.811000000000000000e+03,1.287000000000000000e+03,1.296000000000000000e+03,1.822000000000000000e+03,1.813000000000000000e+03,1.298000000000000000e+03,1.823000000000000000e+03 +1.814000000000000000e+03,1.815000000000000000e+03,1.291000000000000000e+03,1.290000000000000000e+03,1.818000000000000000e+03,1.819000000000000000e+03,1.294000000000000000e+03,1.817000000000000000e+03 +1.815000000000000000e+03,1.820000000000000000e+03,1.296000000000000000e+03,1.291000000000000000e+03,1.821000000000000000e+03,1.823000000000000000e+03,1.297000000000000000e+03,1.819000000000000000e+03 +1.300000000000000000e+03,1.301000000000000000e+03,1.361000000000000000e+03,1.360000000000000000e+03,1.304000000000000000e+03,1.365000000000000000e+03,1.364000000000000000e+03,1.363000000000000000e+03 +1.300000000000000000e+03,1.360000000000000000e+03,1.362000000000000000e+03,1.302000000000000000e+03,1.363000000000000000e+03,1.366000000000000000e+03,1.367000000000000000e+03,1.306000000000000000e+03 +1.301000000000000000e+03,1.314000000000000000e+03,1.374000000000000000e+03,1.361000000000000000e+03,1.315000000000000000e+03,1.376000000000000000e+03,1.375000000000000000e+03,1.365000000000000000e+03 +1.302000000000000000e+03,1.362000000000000000e+03,1.368000000000000000e+03,1.308000000000000000e+03,1.367000000000000000e+03,1.370000000000000000e+03,1.371000000000000000e+03,1.310000000000000000e+03 +1.308000000000000000e+03,1.368000000000000000e+03,1.369000000000000000e+03,1.309000000000000000e+03,1.371000000000000000e+03,1.372000000000000000e+03,1.373000000000000000e+03,1.312000000000000000e+03 +1.309000000000000000e+03,1.369000000000000000e+03,1.377000000000000000e+03,1.317000000000000000e+03,1.373000000000000000e+03,1.378000000000000000e+03,1.379000000000000000e+03,1.318000000000000000e+03 +1.314000000000000000e+03,1.320000000000000000e+03,1.380000000000000000e+03,1.374000000000000000e+03,1.321000000000000000e+03,1.382000000000000000e+03,1.381000000000000000e+03,1.376000000000000000e+03 +1.317000000000000000e+03,1.377000000000000000e+03,1.383000000000000000e+03,1.323000000000000000e+03,1.379000000000000000e+03,1.384000000000000000e+03,1.385000000000000000e+03,1.324000000000000000e+03 +1.320000000000000000e+03,1.326000000000000000e+03,1.386000000000000000e+03,1.380000000000000000e+03,1.327000000000000000e+03,1.388000000000000000e+03,1.387000000000000000e+03,1.382000000000000000e+03 +1.323000000000000000e+03,1.383000000000000000e+03,1.389000000000000000e+03,1.329000000000000000e+03,1.385000000000000000e+03,1.390000000000000000e+03,1.391000000000000000e+03,1.330000000000000000e+03 +1.326000000000000000e+03,1.332000000000000000e+03,1.392000000000000000e+03,1.386000000000000000e+03,1.333000000000000000e+03,1.394000000000000000e+03,1.393000000000000000e+03,1.388000000000000000e+03 +1.329000000000000000e+03,1.389000000000000000e+03,1.395000000000000000e+03,1.335000000000000000e+03,1.391000000000000000e+03,1.396000000000000000e+03,1.397000000000000000e+03,1.336000000000000000e+03 +1.332000000000000000e+03,1.338000000000000000e+03,1.398000000000000000e+03,1.392000000000000000e+03,1.339000000000000000e+03,1.400000000000000000e+03,1.399000000000000000e+03,1.394000000000000000e+03 +1.335000000000000000e+03,1.395000000000000000e+03,1.401000000000000000e+03,1.341000000000000000e+03,1.397000000000000000e+03,1.402000000000000000e+03,1.403000000000000000e+03,1.342000000000000000e+03 +1.338000000000000000e+03,1.344000000000000000e+03,1.404000000000000000e+03,1.398000000000000000e+03,1.345000000000000000e+03,1.406000000000000000e+03,1.405000000000000000e+03,1.400000000000000000e+03 +1.341000000000000000e+03,1.401000000000000000e+03,1.407000000000000000e+03,1.347000000000000000e+03,1.403000000000000000e+03,1.408000000000000000e+03,1.409000000000000000e+03,1.348000000000000000e+03 +1.344000000000000000e+03,1.350000000000000000e+03,1.410000000000000000e+03,1.404000000000000000e+03,1.352000000000000000e+03,1.413000000000000000e+03,1.412000000000000000e+03,1.406000000000000000e+03 +1.347000000000000000e+03,1.407000000000000000e+03,1.416000000000000000e+03,1.356000000000000000e+03,1.409000000000000000e+03,1.418000000000000000e+03,1.419000000000000000e+03,1.358000000000000000e+03 +1.410000000000000000e+03,1.350000000000000000e+03,1.351000000000000000e+03,1.411000000000000000e+03,1.413000000000000000e+03,1.354000000000000000e+03,1.415000000000000000e+03,1.414000000000000000e+03 +1.411000000000000000e+03,1.351000000000000000e+03,1.356000000000000000e+03,1.416000000000000000e+03,1.415000000000000000e+03,1.357000000000000000e+03,1.419000000000000000e+03,1.417000000000000000e+03 +1.360000000000000000e+03,1.361000000000000000e+03,1.421000000000000000e+03,1.420000000000000000e+03,1.364000000000000000e+03,1.425000000000000000e+03,1.424000000000000000e+03,1.423000000000000000e+03 +1.360000000000000000e+03,1.420000000000000000e+03,1.422000000000000000e+03,1.362000000000000000e+03,1.423000000000000000e+03,1.426000000000000000e+03,1.427000000000000000e+03,1.366000000000000000e+03 +1.361000000000000000e+03,1.374000000000000000e+03,1.434000000000000000e+03,1.421000000000000000e+03,1.375000000000000000e+03,1.436000000000000000e+03,1.435000000000000000e+03,1.425000000000000000e+03 +1.362000000000000000e+03,1.422000000000000000e+03,1.428000000000000000e+03,1.368000000000000000e+03,1.427000000000000000e+03,1.430000000000000000e+03,1.431000000000000000e+03,1.370000000000000000e+03 +1.368000000000000000e+03,1.428000000000000000e+03,1.429000000000000000e+03,1.369000000000000000e+03,1.431000000000000000e+03,1.432000000000000000e+03,1.433000000000000000e+03,1.372000000000000000e+03 +1.369000000000000000e+03,1.429000000000000000e+03,1.437000000000000000e+03,1.377000000000000000e+03,1.433000000000000000e+03,1.438000000000000000e+03,1.439000000000000000e+03,1.378000000000000000e+03 +1.374000000000000000e+03,1.380000000000000000e+03,1.440000000000000000e+03,1.434000000000000000e+03,1.381000000000000000e+03,1.442000000000000000e+03,1.441000000000000000e+03,1.436000000000000000e+03 +1.377000000000000000e+03,1.437000000000000000e+03,1.443000000000000000e+03,1.383000000000000000e+03,1.439000000000000000e+03,1.444000000000000000e+03,1.445000000000000000e+03,1.384000000000000000e+03 +1.380000000000000000e+03,1.386000000000000000e+03,1.446000000000000000e+03,1.440000000000000000e+03,1.387000000000000000e+03,1.448000000000000000e+03,1.447000000000000000e+03,1.442000000000000000e+03 +1.383000000000000000e+03,1.443000000000000000e+03,1.449000000000000000e+03,1.389000000000000000e+03,1.445000000000000000e+03,1.450000000000000000e+03,1.451000000000000000e+03,1.390000000000000000e+03 +1.386000000000000000e+03,1.392000000000000000e+03,1.452000000000000000e+03,1.446000000000000000e+03,1.393000000000000000e+03,1.454000000000000000e+03,1.453000000000000000e+03,1.448000000000000000e+03 +1.389000000000000000e+03,1.449000000000000000e+03,1.455000000000000000e+03,1.395000000000000000e+03,1.451000000000000000e+03,1.456000000000000000e+03,1.457000000000000000e+03,1.396000000000000000e+03 +1.392000000000000000e+03,1.398000000000000000e+03,1.458000000000000000e+03,1.452000000000000000e+03,1.399000000000000000e+03,1.460000000000000000e+03,1.459000000000000000e+03,1.454000000000000000e+03 +1.395000000000000000e+03,1.455000000000000000e+03,1.461000000000000000e+03,1.401000000000000000e+03,1.457000000000000000e+03,1.462000000000000000e+03,1.463000000000000000e+03,1.402000000000000000e+03 +1.398000000000000000e+03,1.404000000000000000e+03,1.464000000000000000e+03,1.458000000000000000e+03,1.405000000000000000e+03,1.466000000000000000e+03,1.465000000000000000e+03,1.460000000000000000e+03 +1.401000000000000000e+03,1.461000000000000000e+03,1.467000000000000000e+03,1.407000000000000000e+03,1.463000000000000000e+03,1.468000000000000000e+03,1.469000000000000000e+03,1.408000000000000000e+03 +1.404000000000000000e+03,1.410000000000000000e+03,1.470000000000000000e+03,1.464000000000000000e+03,1.412000000000000000e+03,1.473000000000000000e+03,1.472000000000000000e+03,1.466000000000000000e+03 +1.407000000000000000e+03,1.467000000000000000e+03,1.476000000000000000e+03,1.416000000000000000e+03,1.469000000000000000e+03,1.478000000000000000e+03,1.479000000000000000e+03,1.418000000000000000e+03 +1.470000000000000000e+03,1.410000000000000000e+03,1.411000000000000000e+03,1.471000000000000000e+03,1.473000000000000000e+03,1.414000000000000000e+03,1.475000000000000000e+03,1.474000000000000000e+03 +1.471000000000000000e+03,1.411000000000000000e+03,1.416000000000000000e+03,1.476000000000000000e+03,1.475000000000000000e+03,1.417000000000000000e+03,1.479000000000000000e+03,1.477000000000000000e+03 +1.420000000000000000e+03,1.421000000000000000e+03,1.481000000000000000e+03,1.480000000000000000e+03,1.424000000000000000e+03,1.485000000000000000e+03,1.484000000000000000e+03,1.483000000000000000e+03 +1.420000000000000000e+03,1.480000000000000000e+03,1.482000000000000000e+03,1.422000000000000000e+03,1.483000000000000000e+03,1.486000000000000000e+03,1.487000000000000000e+03,1.426000000000000000e+03 +1.421000000000000000e+03,1.434000000000000000e+03,1.494000000000000000e+03,1.481000000000000000e+03,1.435000000000000000e+03,1.496000000000000000e+03,1.495000000000000000e+03,1.485000000000000000e+03 +1.422000000000000000e+03,1.482000000000000000e+03,1.488000000000000000e+03,1.428000000000000000e+03,1.487000000000000000e+03,1.490000000000000000e+03,1.491000000000000000e+03,1.430000000000000000e+03 +1.428000000000000000e+03,1.488000000000000000e+03,1.489000000000000000e+03,1.429000000000000000e+03,1.491000000000000000e+03,1.492000000000000000e+03,1.493000000000000000e+03,1.432000000000000000e+03 +1.429000000000000000e+03,1.489000000000000000e+03,1.497000000000000000e+03,1.437000000000000000e+03,1.493000000000000000e+03,1.498000000000000000e+03,1.499000000000000000e+03,1.438000000000000000e+03 +1.434000000000000000e+03,1.440000000000000000e+03,1.500000000000000000e+03,1.494000000000000000e+03,1.441000000000000000e+03,1.502000000000000000e+03,1.501000000000000000e+03,1.496000000000000000e+03 +1.437000000000000000e+03,1.497000000000000000e+03,1.503000000000000000e+03,1.443000000000000000e+03,1.499000000000000000e+03,1.504000000000000000e+03,1.505000000000000000e+03,1.444000000000000000e+03 +1.440000000000000000e+03,1.446000000000000000e+03,1.506000000000000000e+03,1.500000000000000000e+03,1.447000000000000000e+03,1.508000000000000000e+03,1.507000000000000000e+03,1.502000000000000000e+03 +1.443000000000000000e+03,1.503000000000000000e+03,1.509000000000000000e+03,1.449000000000000000e+03,1.505000000000000000e+03,1.510000000000000000e+03,1.511000000000000000e+03,1.450000000000000000e+03 +1.446000000000000000e+03,1.452000000000000000e+03,1.512000000000000000e+03,1.506000000000000000e+03,1.453000000000000000e+03,1.514000000000000000e+03,1.513000000000000000e+03,1.508000000000000000e+03 +1.449000000000000000e+03,1.509000000000000000e+03,1.515000000000000000e+03,1.455000000000000000e+03,1.511000000000000000e+03,1.516000000000000000e+03,1.517000000000000000e+03,1.456000000000000000e+03 +1.452000000000000000e+03,1.458000000000000000e+03,1.518000000000000000e+03,1.512000000000000000e+03,1.459000000000000000e+03,1.520000000000000000e+03,1.519000000000000000e+03,1.514000000000000000e+03 +1.455000000000000000e+03,1.515000000000000000e+03,1.521000000000000000e+03,1.461000000000000000e+03,1.517000000000000000e+03,1.522000000000000000e+03,1.523000000000000000e+03,1.462000000000000000e+03 +1.458000000000000000e+03,1.464000000000000000e+03,1.524000000000000000e+03,1.518000000000000000e+03,1.465000000000000000e+03,1.526000000000000000e+03,1.525000000000000000e+03,1.520000000000000000e+03 +1.461000000000000000e+03,1.521000000000000000e+03,1.527000000000000000e+03,1.467000000000000000e+03,1.523000000000000000e+03,1.528000000000000000e+03,1.529000000000000000e+03,1.468000000000000000e+03 +1.464000000000000000e+03,1.470000000000000000e+03,1.530000000000000000e+03,1.524000000000000000e+03,1.472000000000000000e+03,1.533000000000000000e+03,1.532000000000000000e+03,1.526000000000000000e+03 +1.467000000000000000e+03,1.527000000000000000e+03,1.536000000000000000e+03,1.476000000000000000e+03,1.529000000000000000e+03,1.538000000000000000e+03,1.539000000000000000e+03,1.478000000000000000e+03 +1.530000000000000000e+03,1.470000000000000000e+03,1.471000000000000000e+03,1.531000000000000000e+03,1.533000000000000000e+03,1.474000000000000000e+03,1.535000000000000000e+03,1.534000000000000000e+03 +1.531000000000000000e+03,1.471000000000000000e+03,1.476000000000000000e+03,1.536000000000000000e+03,1.535000000000000000e+03,1.477000000000000000e+03,1.539000000000000000e+03,1.537000000000000000e+03 +1.480000000000000000e+03,1.481000000000000000e+03,1.541000000000000000e+03,1.540000000000000000e+03,1.484000000000000000e+03,1.545000000000000000e+03,1.544000000000000000e+03,1.543000000000000000e+03 +1.480000000000000000e+03,1.540000000000000000e+03,1.542000000000000000e+03,1.482000000000000000e+03,1.543000000000000000e+03,1.546000000000000000e+03,1.547000000000000000e+03,1.486000000000000000e+03 +1.481000000000000000e+03,1.494000000000000000e+03,1.554000000000000000e+03,1.541000000000000000e+03,1.495000000000000000e+03,1.556000000000000000e+03,1.555000000000000000e+03,1.545000000000000000e+03 +1.482000000000000000e+03,1.542000000000000000e+03,1.548000000000000000e+03,1.488000000000000000e+03,1.547000000000000000e+03,1.550000000000000000e+03,1.551000000000000000e+03,1.490000000000000000e+03 +1.488000000000000000e+03,1.548000000000000000e+03,1.549000000000000000e+03,1.489000000000000000e+03,1.551000000000000000e+03,1.552000000000000000e+03,1.553000000000000000e+03,1.492000000000000000e+03 +1.489000000000000000e+03,1.549000000000000000e+03,1.557000000000000000e+03,1.497000000000000000e+03,1.553000000000000000e+03,1.558000000000000000e+03,1.559000000000000000e+03,1.498000000000000000e+03 +1.494000000000000000e+03,1.500000000000000000e+03,1.560000000000000000e+03,1.554000000000000000e+03,1.501000000000000000e+03,1.562000000000000000e+03,1.561000000000000000e+03,1.556000000000000000e+03 +1.497000000000000000e+03,1.557000000000000000e+03,1.563000000000000000e+03,1.503000000000000000e+03,1.559000000000000000e+03,1.564000000000000000e+03,1.565000000000000000e+03,1.504000000000000000e+03 +1.500000000000000000e+03,1.506000000000000000e+03,1.566000000000000000e+03,1.560000000000000000e+03,1.507000000000000000e+03,1.568000000000000000e+03,1.567000000000000000e+03,1.562000000000000000e+03 +1.503000000000000000e+03,1.563000000000000000e+03,1.569000000000000000e+03,1.509000000000000000e+03,1.565000000000000000e+03,1.570000000000000000e+03,1.571000000000000000e+03,1.510000000000000000e+03 +1.506000000000000000e+03,1.512000000000000000e+03,1.572000000000000000e+03,1.566000000000000000e+03,1.513000000000000000e+03,1.574000000000000000e+03,1.573000000000000000e+03,1.568000000000000000e+03 +1.509000000000000000e+03,1.569000000000000000e+03,1.575000000000000000e+03,1.515000000000000000e+03,1.571000000000000000e+03,1.576000000000000000e+03,1.577000000000000000e+03,1.516000000000000000e+03 +1.512000000000000000e+03,1.518000000000000000e+03,1.578000000000000000e+03,1.572000000000000000e+03,1.519000000000000000e+03,1.580000000000000000e+03,1.579000000000000000e+03,1.574000000000000000e+03 +1.515000000000000000e+03,1.575000000000000000e+03,1.581000000000000000e+03,1.521000000000000000e+03,1.577000000000000000e+03,1.582000000000000000e+03,1.583000000000000000e+03,1.522000000000000000e+03 +1.518000000000000000e+03,1.524000000000000000e+03,1.584000000000000000e+03,1.578000000000000000e+03,1.525000000000000000e+03,1.586000000000000000e+03,1.585000000000000000e+03,1.580000000000000000e+03 +1.521000000000000000e+03,1.581000000000000000e+03,1.587000000000000000e+03,1.527000000000000000e+03,1.583000000000000000e+03,1.588000000000000000e+03,1.589000000000000000e+03,1.528000000000000000e+03 +1.524000000000000000e+03,1.530000000000000000e+03,1.590000000000000000e+03,1.584000000000000000e+03,1.532000000000000000e+03,1.592000000000000000e+03,1.591000000000000000e+03,1.586000000000000000e+03 +1.527000000000000000e+03,1.587000000000000000e+03,1.593000000000000000e+03,1.536000000000000000e+03,1.589000000000000000e+03,1.594000000000000000e+03,1.595000000000000000e+03,1.538000000000000000e+03 +1.530000000000000000e+03,1.531000000000000000e+03,2.193000000000000000e+03,2.192000000000000000e+03,1.534000000000000000e+03,2.198000000000000000e+03,2.197000000000000000e+03,2.196000000000000000e+03 +1.530000000000000000e+03,2.192000000000000000e+03,2.191000000000000000e+03,1.590000000000000000e+03,2.196000000000000000e+03,2.195000000000000000e+03,2.194000000000000000e+03,1.592000000000000000e+03 +1.531000000000000000e+03,1.536000000000000000e+03,2.200000000000000000e+03,2.193000000000000000e+03,1.537000000000000000e+03,2.204000000000000000e+03,2.201000000000000000e+03,2.198000000000000000e+03 +1.536000000000000000e+03,1.593000000000000000e+03,2.199000000000000000e+03,2.200000000000000000e+03,1.595000000000000000e+03,2.202000000000000000e+03,2.203000000000000000e+03,2.204000000000000000e+03 +1.540000000000000000e+03,1.541000000000000000e+03,1.597000000000000000e+03,1.596000000000000000e+03,1.544000000000000000e+03,1.601000000000000000e+03,1.600000000000000000e+03,1.599000000000000000e+03 +1.540000000000000000e+03,1.596000000000000000e+03,1.598000000000000000e+03,1.542000000000000000e+03,1.599000000000000000e+03,1.602000000000000000e+03,1.603000000000000000e+03,1.546000000000000000e+03 +1.541000000000000000e+03,1.554000000000000000e+03,1.610000000000000000e+03,1.597000000000000000e+03,1.555000000000000000e+03,1.612000000000000000e+03,1.611000000000000000e+03,1.601000000000000000e+03 +1.542000000000000000e+03,1.598000000000000000e+03,1.604000000000000000e+03,1.548000000000000000e+03,1.603000000000000000e+03,1.606000000000000000e+03,1.607000000000000000e+03,1.550000000000000000e+03 +1.548000000000000000e+03,1.604000000000000000e+03,1.605000000000000000e+03,1.549000000000000000e+03,1.607000000000000000e+03,1.608000000000000000e+03,1.609000000000000000e+03,1.552000000000000000e+03 +1.549000000000000000e+03,1.605000000000000000e+03,1.613000000000000000e+03,1.557000000000000000e+03,1.609000000000000000e+03,1.614000000000000000e+03,1.615000000000000000e+03,1.558000000000000000e+03 +1.554000000000000000e+03,1.560000000000000000e+03,1.616000000000000000e+03,1.610000000000000000e+03,1.561000000000000000e+03,1.618000000000000000e+03,1.617000000000000000e+03,1.612000000000000000e+03 +1.557000000000000000e+03,1.613000000000000000e+03,1.619000000000000000e+03,1.563000000000000000e+03,1.615000000000000000e+03,1.620000000000000000e+03,1.621000000000000000e+03,1.564000000000000000e+03 +1.560000000000000000e+03,1.566000000000000000e+03,1.622000000000000000e+03,1.616000000000000000e+03,1.567000000000000000e+03,1.624000000000000000e+03,1.623000000000000000e+03,1.618000000000000000e+03 +1.563000000000000000e+03,1.619000000000000000e+03,1.625000000000000000e+03,1.569000000000000000e+03,1.621000000000000000e+03,1.626000000000000000e+03,1.627000000000000000e+03,1.570000000000000000e+03 +1.566000000000000000e+03,1.572000000000000000e+03,1.628000000000000000e+03,1.622000000000000000e+03,1.573000000000000000e+03,1.630000000000000000e+03,1.629000000000000000e+03,1.624000000000000000e+03 +1.569000000000000000e+03,1.625000000000000000e+03,1.631000000000000000e+03,1.575000000000000000e+03,1.627000000000000000e+03,1.632000000000000000e+03,1.633000000000000000e+03,1.576000000000000000e+03 +1.572000000000000000e+03,1.578000000000000000e+03,1.634000000000000000e+03,1.628000000000000000e+03,1.579000000000000000e+03,1.636000000000000000e+03,1.635000000000000000e+03,1.630000000000000000e+03 +1.575000000000000000e+03,1.631000000000000000e+03,1.637000000000000000e+03,1.581000000000000000e+03,1.633000000000000000e+03,1.638000000000000000e+03,1.639000000000000000e+03,1.582000000000000000e+03 +1.578000000000000000e+03,1.584000000000000000e+03,1.640000000000000000e+03,1.634000000000000000e+03,1.585000000000000000e+03,1.642000000000000000e+03,1.641000000000000000e+03,1.636000000000000000e+03 +1.581000000000000000e+03,1.637000000000000000e+03,1.643000000000000000e+03,1.587000000000000000e+03,1.639000000000000000e+03,1.644000000000000000e+03,1.645000000000000000e+03,1.588000000000000000e+03 +1.584000000000000000e+03,1.590000000000000000e+03,1.646000000000000000e+03,1.640000000000000000e+03,1.591000000000000000e+03,1.648000000000000000e+03,1.647000000000000000e+03,1.642000000000000000e+03 +1.587000000000000000e+03,1.643000000000000000e+03,1.649000000000000000e+03,1.593000000000000000e+03,1.645000000000000000e+03,1.650000000000000000e+03,1.651000000000000000e+03,1.594000000000000000e+03 +1.590000000000000000e+03,2.191000000000000000e+03,2.265000000000000000e+03,1.646000000000000000e+03,2.194000000000000000e+03,2.267000000000000000e+03,2.266000000000000000e+03,1.648000000000000000e+03 +1.593000000000000000e+03,1.649000000000000000e+03,2.268000000000000000e+03,2.199000000000000000e+03,1.651000000000000000e+03,2.269000000000000000e+03,2.270000000000000000e+03,2.202000000000000000e+03 +1.596000000000000000e+03,1.597000000000000000e+03,1.653000000000000000e+03,1.652000000000000000e+03,1.600000000000000000e+03,1.657000000000000000e+03,1.656000000000000000e+03,1.655000000000000000e+03 +1.596000000000000000e+03,1.652000000000000000e+03,1.654000000000000000e+03,1.598000000000000000e+03,1.655000000000000000e+03,1.658000000000000000e+03,1.659000000000000000e+03,1.602000000000000000e+03 +1.597000000000000000e+03,1.610000000000000000e+03,1.666000000000000000e+03,1.653000000000000000e+03,1.611000000000000000e+03,1.668000000000000000e+03,1.667000000000000000e+03,1.657000000000000000e+03 +1.598000000000000000e+03,1.654000000000000000e+03,1.660000000000000000e+03,1.604000000000000000e+03,1.659000000000000000e+03,1.662000000000000000e+03,1.663000000000000000e+03,1.606000000000000000e+03 +1.604000000000000000e+03,1.660000000000000000e+03,1.661000000000000000e+03,1.605000000000000000e+03,1.663000000000000000e+03,1.664000000000000000e+03,1.665000000000000000e+03,1.608000000000000000e+03 +1.605000000000000000e+03,1.661000000000000000e+03,1.669000000000000000e+03,1.613000000000000000e+03,1.665000000000000000e+03,1.670000000000000000e+03,1.671000000000000000e+03,1.614000000000000000e+03 +1.610000000000000000e+03,1.616000000000000000e+03,1.672000000000000000e+03,1.666000000000000000e+03,1.617000000000000000e+03,1.674000000000000000e+03,1.673000000000000000e+03,1.668000000000000000e+03 +1.613000000000000000e+03,1.669000000000000000e+03,1.675000000000000000e+03,1.619000000000000000e+03,1.671000000000000000e+03,1.676000000000000000e+03,1.677000000000000000e+03,1.620000000000000000e+03 +1.616000000000000000e+03,1.622000000000000000e+03,1.678000000000000000e+03,1.672000000000000000e+03,1.623000000000000000e+03,1.680000000000000000e+03,1.679000000000000000e+03,1.674000000000000000e+03 +1.619000000000000000e+03,1.675000000000000000e+03,1.681000000000000000e+03,1.625000000000000000e+03,1.677000000000000000e+03,1.682000000000000000e+03,1.683000000000000000e+03,1.626000000000000000e+03 +1.622000000000000000e+03,1.628000000000000000e+03,1.684000000000000000e+03,1.678000000000000000e+03,1.629000000000000000e+03,1.686000000000000000e+03,1.685000000000000000e+03,1.680000000000000000e+03 +1.625000000000000000e+03,1.681000000000000000e+03,1.687000000000000000e+03,1.631000000000000000e+03,1.683000000000000000e+03,1.688000000000000000e+03,1.689000000000000000e+03,1.632000000000000000e+03 +1.628000000000000000e+03,1.634000000000000000e+03,1.690000000000000000e+03,1.684000000000000000e+03,1.635000000000000000e+03,1.692000000000000000e+03,1.691000000000000000e+03,1.686000000000000000e+03 +1.631000000000000000e+03,1.687000000000000000e+03,1.693000000000000000e+03,1.637000000000000000e+03,1.689000000000000000e+03,1.694000000000000000e+03,1.695000000000000000e+03,1.638000000000000000e+03 +1.634000000000000000e+03,1.640000000000000000e+03,1.696000000000000000e+03,1.690000000000000000e+03,1.641000000000000000e+03,1.698000000000000000e+03,1.697000000000000000e+03,1.692000000000000000e+03 +1.637000000000000000e+03,1.693000000000000000e+03,1.699000000000000000e+03,1.643000000000000000e+03,1.695000000000000000e+03,1.700000000000000000e+03,1.701000000000000000e+03,1.644000000000000000e+03 +1.640000000000000000e+03,1.646000000000000000e+03,1.702000000000000000e+03,1.696000000000000000e+03,1.647000000000000000e+03,1.704000000000000000e+03,1.703000000000000000e+03,1.698000000000000000e+03 +1.643000000000000000e+03,1.699000000000000000e+03,1.705000000000000000e+03,1.649000000000000000e+03,1.701000000000000000e+03,1.706000000000000000e+03,1.707000000000000000e+03,1.650000000000000000e+03 +1.646000000000000000e+03,2.265000000000000000e+03,2.299000000000000000e+03,1.702000000000000000e+03,2.266000000000000000e+03,2.301000000000000000e+03,2.300000000000000000e+03,1.704000000000000000e+03 +1.649000000000000000e+03,1.705000000000000000e+03,2.302000000000000000e+03,2.268000000000000000e+03,1.707000000000000000e+03,2.303000000000000000e+03,2.304000000000000000e+03,2.269000000000000000e+03 +1.652000000000000000e+03,1.653000000000000000e+03,1.709000000000000000e+03,1.708000000000000000e+03,1.656000000000000000e+03,1.713000000000000000e+03,1.712000000000000000e+03,1.711000000000000000e+03 +1.652000000000000000e+03,1.708000000000000000e+03,1.710000000000000000e+03,1.654000000000000000e+03,1.711000000000000000e+03,1.714000000000000000e+03,1.715000000000000000e+03,1.658000000000000000e+03 +1.653000000000000000e+03,1.666000000000000000e+03,1.722000000000000000e+03,1.709000000000000000e+03,1.667000000000000000e+03,1.724000000000000000e+03,1.723000000000000000e+03,1.713000000000000000e+03 +1.654000000000000000e+03,1.710000000000000000e+03,1.716000000000000000e+03,1.660000000000000000e+03,1.715000000000000000e+03,1.718000000000000000e+03,1.719000000000000000e+03,1.662000000000000000e+03 +1.660000000000000000e+03,1.716000000000000000e+03,1.717000000000000000e+03,1.661000000000000000e+03,1.719000000000000000e+03,1.720000000000000000e+03,1.721000000000000000e+03,1.664000000000000000e+03 +1.661000000000000000e+03,1.717000000000000000e+03,1.725000000000000000e+03,1.669000000000000000e+03,1.721000000000000000e+03,1.726000000000000000e+03,1.727000000000000000e+03,1.670000000000000000e+03 +1.666000000000000000e+03,1.672000000000000000e+03,1.728000000000000000e+03,1.722000000000000000e+03,1.673000000000000000e+03,1.730000000000000000e+03,1.729000000000000000e+03,1.724000000000000000e+03 +1.669000000000000000e+03,1.725000000000000000e+03,1.731000000000000000e+03,1.675000000000000000e+03,1.727000000000000000e+03,1.732000000000000000e+03,1.733000000000000000e+03,1.676000000000000000e+03 +1.672000000000000000e+03,1.678000000000000000e+03,1.734000000000000000e+03,1.728000000000000000e+03,1.679000000000000000e+03,1.736000000000000000e+03,1.735000000000000000e+03,1.730000000000000000e+03 +1.675000000000000000e+03,1.731000000000000000e+03,1.737000000000000000e+03,1.681000000000000000e+03,1.733000000000000000e+03,1.738000000000000000e+03,1.739000000000000000e+03,1.682000000000000000e+03 +1.678000000000000000e+03,1.684000000000000000e+03,1.740000000000000000e+03,1.734000000000000000e+03,1.685000000000000000e+03,1.742000000000000000e+03,1.741000000000000000e+03,1.736000000000000000e+03 +1.681000000000000000e+03,1.737000000000000000e+03,1.743000000000000000e+03,1.687000000000000000e+03,1.739000000000000000e+03,1.744000000000000000e+03,1.745000000000000000e+03,1.688000000000000000e+03 +1.684000000000000000e+03,1.690000000000000000e+03,1.746000000000000000e+03,1.740000000000000000e+03,1.691000000000000000e+03,1.748000000000000000e+03,1.747000000000000000e+03,1.742000000000000000e+03 +1.687000000000000000e+03,1.743000000000000000e+03,1.749000000000000000e+03,1.693000000000000000e+03,1.745000000000000000e+03,1.750000000000000000e+03,1.751000000000000000e+03,1.694000000000000000e+03 +1.690000000000000000e+03,1.696000000000000000e+03,1.752000000000000000e+03,1.746000000000000000e+03,1.697000000000000000e+03,1.754000000000000000e+03,1.753000000000000000e+03,1.748000000000000000e+03 +1.693000000000000000e+03,1.749000000000000000e+03,1.755000000000000000e+03,1.699000000000000000e+03,1.751000000000000000e+03,1.756000000000000000e+03,1.757000000000000000e+03,1.700000000000000000e+03 +1.696000000000000000e+03,1.702000000000000000e+03,1.758000000000000000e+03,1.752000000000000000e+03,1.703000000000000000e+03,1.760000000000000000e+03,1.759000000000000000e+03,1.754000000000000000e+03 +1.699000000000000000e+03,1.755000000000000000e+03,1.761000000000000000e+03,1.705000000000000000e+03,1.757000000000000000e+03,1.762000000000000000e+03,1.763000000000000000e+03,1.706000000000000000e+03 +1.702000000000000000e+03,2.299000000000000000e+03,2.333000000000000000e+03,1.758000000000000000e+03,2.300000000000000000e+03,2.335000000000000000e+03,2.334000000000000000e+03,1.760000000000000000e+03 +1.705000000000000000e+03,1.761000000000000000e+03,2.336000000000000000e+03,2.302000000000000000e+03,1.763000000000000000e+03,2.337000000000000000e+03,2.338000000000000000e+03,2.303000000000000000e+03 +1.709000000000000000e+03,2.116000000000000000e+03,2.117000000000000000e+03,1.708000000000000000e+03,2.173000000000000000e+03,2.119000000000000000e+03,2.172000000000000000e+03,1.712000000000000000e+03 +1.708000000000000000e+03,2.117000000000000000e+03,2.118000000000000000e+03,1.710000000000000000e+03,2.172000000000000000e+03,2.122000000000000000e+03,2.174000000000000000e+03,1.714000000000000000e+03 +1.722000000000000000e+03,2.130000000000000000e+03,2.116000000000000000e+03,1.709000000000000000e+03,2.177000000000000000e+03,2.131000000000000000e+03,2.173000000000000000e+03,1.723000000000000000e+03 +1.710000000000000000e+03,2.118000000000000000e+03,2.125000000000000000e+03,1.716000000000000000e+03,2.174000000000000000e+03,2.126000000000000000e+03,2.175000000000000000e+03,1.718000000000000000e+03 +1.717000000000000000e+03,1.716000000000000000e+03,2.125000000000000000e+03,2.124000000000000000e+03,1.720000000000000000e+03,2.175000000000000000e+03,2.127000000000000000e+03,2.176000000000000000e+03 +1.725000000000000000e+03,1.717000000000000000e+03,2.124000000000000000e+03,2.133000000000000000e+03,1.726000000000000000e+03,2.176000000000000000e+03,2.134000000000000000e+03,2.178000000000000000e+03 +1.728000000000000000e+03,2.136000000000000000e+03,2.130000000000000000e+03,1.722000000000000000e+03,2.179000000000000000e+03,2.137000000000000000e+03,2.177000000000000000e+03,1.729000000000000000e+03 +1.731000000000000000e+03,1.725000000000000000e+03,2.133000000000000000e+03,2.139000000000000000e+03,1.732000000000000000e+03,2.178000000000000000e+03,2.140000000000000000e+03,2.180000000000000000e+03 +1.734000000000000000e+03,2.142000000000000000e+03,2.136000000000000000e+03,1.728000000000000000e+03,2.181000000000000000e+03,2.143000000000000000e+03,2.179000000000000000e+03,1.735000000000000000e+03 +1.737000000000000000e+03,1.731000000000000000e+03,2.139000000000000000e+03,2.145000000000000000e+03,1.738000000000000000e+03,2.180000000000000000e+03,2.146000000000000000e+03,2.182000000000000000e+03 +1.740000000000000000e+03,2.148000000000000000e+03,2.142000000000000000e+03,1.734000000000000000e+03,2.183000000000000000e+03,2.149000000000000000e+03,2.181000000000000000e+03,1.741000000000000000e+03 +1.743000000000000000e+03,1.737000000000000000e+03,2.145000000000000000e+03,2.151000000000000000e+03,1.744000000000000000e+03,2.182000000000000000e+03,2.152000000000000000e+03,2.184000000000000000e+03 +1.746000000000000000e+03,2.154000000000000000e+03,2.148000000000000000e+03,1.740000000000000000e+03,2.185000000000000000e+03,2.155000000000000000e+03,2.183000000000000000e+03,1.747000000000000000e+03 +1.749000000000000000e+03,1.743000000000000000e+03,2.151000000000000000e+03,2.157000000000000000e+03,1.750000000000000000e+03,2.184000000000000000e+03,2.158000000000000000e+03,2.186000000000000000e+03 +1.752000000000000000e+03,2.160000000000000000e+03,2.154000000000000000e+03,1.746000000000000000e+03,2.187000000000000000e+03,2.161000000000000000e+03,2.185000000000000000e+03,1.753000000000000000e+03 +1.755000000000000000e+03,1.749000000000000000e+03,2.157000000000000000e+03,2.163000000000000000e+03,1.756000000000000000e+03,2.186000000000000000e+03,2.164000000000000000e+03,2.188000000000000000e+03 +1.758000000000000000e+03,2.166000000000000000e+03,2.160000000000000000e+03,1.752000000000000000e+03,2.189000000000000000e+03,2.167000000000000000e+03,2.187000000000000000e+03,1.759000000000000000e+03 +1.761000000000000000e+03,1.755000000000000000e+03,2.163000000000000000e+03,2.169000000000000000e+03,1.762000000000000000e+03,2.188000000000000000e+03,2.170000000000000000e+03,2.190000000000000000e+03 +1.758000000000000000e+03,2.333000000000000000e+03,2.367000000000000000e+03,2.166000000000000000e+03,2.334000000000000000e+03,2.369000000000000000e+03,2.368000000000000000e+03,2.189000000000000000e+03 +1.761000000000000000e+03,2.169000000000000000e+03,2.370000000000000000e+03,2.336000000000000000e+03,2.190000000000000000e+03,2.371000000000000000e+03,2.372000000000000000e+03,2.337000000000000000e+03 +1.824000000000000000e+03,1.764000000000000000e+03,1.765000000000000000e+03,1.825000000000000000e+03,1.829000000000000000e+03,1.767000000000000000e+03,1.828000000000000000e+03,1.827000000000000000e+03 +1.838000000000000000e+03,1.778000000000000000e+03,1.764000000000000000e+03,1.824000000000000000e+03,1.840000000000000000e+03,1.779000000000000000e+03,1.829000000000000000e+03,1.839000000000000000e+03 +1.825000000000000000e+03,1.765000000000000000e+03,1.766000000000000000e+03,1.826000000000000000e+03,1.828000000000000000e+03,1.770000000000000000e+03,1.831000000000000000e+03,1.830000000000000000e+03 +1.826000000000000000e+03,1.766000000000000000e+03,1.773000000000000000e+03,1.833000000000000000e+03,1.831000000000000000e+03,1.774000000000000000e+03,1.836000000000000000e+03,1.834000000000000000e+03 +1.832000000000000000e+03,1.833000000000000000e+03,1.773000000000000000e+03,1.772000000000000000e+03,1.835000000000000000e+03,1.836000000000000000e+03,1.775000000000000000e+03,1.837000000000000000e+03 +1.841000000000000000e+03,1.832000000000000000e+03,1.772000000000000000e+03,1.781000000000000000e+03,1.842000000000000000e+03,1.837000000000000000e+03,1.782000000000000000e+03,1.843000000000000000e+03 +1.844000000000000000e+03,1.784000000000000000e+03,1.778000000000000000e+03,1.838000000000000000e+03,1.846000000000000000e+03,1.785000000000000000e+03,1.840000000000000000e+03,1.845000000000000000e+03 +1.847000000000000000e+03,1.841000000000000000e+03,1.781000000000000000e+03,1.787000000000000000e+03,1.848000000000000000e+03,1.843000000000000000e+03,1.788000000000000000e+03,1.849000000000000000e+03 +1.850000000000000000e+03,1.790000000000000000e+03,1.784000000000000000e+03,1.844000000000000000e+03,1.852000000000000000e+03,1.791000000000000000e+03,1.846000000000000000e+03,1.851000000000000000e+03 +1.853000000000000000e+03,1.847000000000000000e+03,1.787000000000000000e+03,1.793000000000000000e+03,1.854000000000000000e+03,1.849000000000000000e+03,1.794000000000000000e+03,1.855000000000000000e+03 +1.856000000000000000e+03,1.796000000000000000e+03,1.790000000000000000e+03,1.850000000000000000e+03,1.858000000000000000e+03,1.797000000000000000e+03,1.852000000000000000e+03,1.857000000000000000e+03 +1.859000000000000000e+03,1.853000000000000000e+03,1.793000000000000000e+03,1.799000000000000000e+03,1.860000000000000000e+03,1.855000000000000000e+03,1.800000000000000000e+03,1.861000000000000000e+03 +1.862000000000000000e+03,1.802000000000000000e+03,1.796000000000000000e+03,1.856000000000000000e+03,1.864000000000000000e+03,1.803000000000000000e+03,1.858000000000000000e+03,1.863000000000000000e+03 +1.865000000000000000e+03,1.859000000000000000e+03,1.799000000000000000e+03,1.805000000000000000e+03,1.866000000000000000e+03,1.861000000000000000e+03,1.806000000000000000e+03,1.867000000000000000e+03 +1.868000000000000000e+03,1.808000000000000000e+03,1.802000000000000000e+03,1.862000000000000000e+03,1.870000000000000000e+03,1.809000000000000000e+03,1.864000000000000000e+03,1.869000000000000000e+03 +1.871000000000000000e+03,1.865000000000000000e+03,1.805000000000000000e+03,1.811000000000000000e+03,1.872000000000000000e+03,1.867000000000000000e+03,1.812000000000000000e+03,1.873000000000000000e+03 +1.874000000000000000e+03,1.814000000000000000e+03,1.808000000000000000e+03,1.868000000000000000e+03,1.877000000000000000e+03,1.816000000000000000e+03,1.870000000000000000e+03,1.876000000000000000e+03 +1.880000000000000000e+03,1.871000000000000000e+03,1.811000000000000000e+03,1.820000000000000000e+03,1.882000000000000000e+03,1.873000000000000000e+03,1.822000000000000000e+03,1.883000000000000000e+03 +1.874000000000000000e+03,1.875000000000000000e+03,1.815000000000000000e+03,1.814000000000000000e+03,1.878000000000000000e+03,1.879000000000000000e+03,1.818000000000000000e+03,1.877000000000000000e+03 +1.875000000000000000e+03,1.880000000000000000e+03,1.820000000000000000e+03,1.815000000000000000e+03,1.881000000000000000e+03,1.883000000000000000e+03,1.821000000000000000e+03,1.879000000000000000e+03 +1.884000000000000000e+03,1.824000000000000000e+03,1.825000000000000000e+03,1.885000000000000000e+03,1.889000000000000000e+03,1.827000000000000000e+03,1.888000000000000000e+03,1.887000000000000000e+03 +1.898000000000000000e+03,1.838000000000000000e+03,1.824000000000000000e+03,1.884000000000000000e+03,1.900000000000000000e+03,1.839000000000000000e+03,1.889000000000000000e+03,1.899000000000000000e+03 +1.885000000000000000e+03,1.825000000000000000e+03,1.826000000000000000e+03,1.886000000000000000e+03,1.888000000000000000e+03,1.830000000000000000e+03,1.891000000000000000e+03,1.890000000000000000e+03 +1.886000000000000000e+03,1.826000000000000000e+03,1.833000000000000000e+03,1.893000000000000000e+03,1.891000000000000000e+03,1.834000000000000000e+03,1.896000000000000000e+03,1.894000000000000000e+03 +1.892000000000000000e+03,1.893000000000000000e+03,1.833000000000000000e+03,1.832000000000000000e+03,1.895000000000000000e+03,1.896000000000000000e+03,1.835000000000000000e+03,1.897000000000000000e+03 +1.901000000000000000e+03,1.892000000000000000e+03,1.832000000000000000e+03,1.841000000000000000e+03,1.902000000000000000e+03,1.897000000000000000e+03,1.842000000000000000e+03,1.903000000000000000e+03 +1.904000000000000000e+03,1.844000000000000000e+03,1.838000000000000000e+03,1.898000000000000000e+03,1.906000000000000000e+03,1.845000000000000000e+03,1.900000000000000000e+03,1.905000000000000000e+03 +1.907000000000000000e+03,1.901000000000000000e+03,1.841000000000000000e+03,1.847000000000000000e+03,1.908000000000000000e+03,1.903000000000000000e+03,1.848000000000000000e+03,1.909000000000000000e+03 +1.910000000000000000e+03,1.850000000000000000e+03,1.844000000000000000e+03,1.904000000000000000e+03,1.912000000000000000e+03,1.851000000000000000e+03,1.906000000000000000e+03,1.911000000000000000e+03 +1.913000000000000000e+03,1.907000000000000000e+03,1.847000000000000000e+03,1.853000000000000000e+03,1.914000000000000000e+03,1.909000000000000000e+03,1.854000000000000000e+03,1.915000000000000000e+03 +1.916000000000000000e+03,1.856000000000000000e+03,1.850000000000000000e+03,1.910000000000000000e+03,1.918000000000000000e+03,1.857000000000000000e+03,1.912000000000000000e+03,1.917000000000000000e+03 +1.919000000000000000e+03,1.913000000000000000e+03,1.853000000000000000e+03,1.859000000000000000e+03,1.920000000000000000e+03,1.915000000000000000e+03,1.860000000000000000e+03,1.921000000000000000e+03 +1.922000000000000000e+03,1.862000000000000000e+03,1.856000000000000000e+03,1.916000000000000000e+03,1.924000000000000000e+03,1.863000000000000000e+03,1.918000000000000000e+03,1.923000000000000000e+03 +1.925000000000000000e+03,1.919000000000000000e+03,1.859000000000000000e+03,1.865000000000000000e+03,1.926000000000000000e+03,1.921000000000000000e+03,1.866000000000000000e+03,1.927000000000000000e+03 +1.928000000000000000e+03,1.868000000000000000e+03,1.862000000000000000e+03,1.922000000000000000e+03,1.930000000000000000e+03,1.869000000000000000e+03,1.924000000000000000e+03,1.929000000000000000e+03 +1.931000000000000000e+03,1.925000000000000000e+03,1.865000000000000000e+03,1.871000000000000000e+03,1.932000000000000000e+03,1.927000000000000000e+03,1.872000000000000000e+03,1.933000000000000000e+03 +1.934000000000000000e+03,1.874000000000000000e+03,1.868000000000000000e+03,1.928000000000000000e+03,1.937000000000000000e+03,1.876000000000000000e+03,1.930000000000000000e+03,1.936000000000000000e+03 +1.940000000000000000e+03,1.931000000000000000e+03,1.871000000000000000e+03,1.880000000000000000e+03,1.942000000000000000e+03,1.933000000000000000e+03,1.882000000000000000e+03,1.943000000000000000e+03 +1.934000000000000000e+03,1.935000000000000000e+03,1.875000000000000000e+03,1.874000000000000000e+03,1.938000000000000000e+03,1.939000000000000000e+03,1.878000000000000000e+03,1.937000000000000000e+03 +1.935000000000000000e+03,1.940000000000000000e+03,1.880000000000000000e+03,1.875000000000000000e+03,1.941000000000000000e+03,1.943000000000000000e+03,1.881000000000000000e+03,1.939000000000000000e+03 +1.944000000000000000e+03,1.884000000000000000e+03,1.885000000000000000e+03,1.945000000000000000e+03,1.949000000000000000e+03,1.887000000000000000e+03,1.948000000000000000e+03,1.947000000000000000e+03 +1.958000000000000000e+03,1.898000000000000000e+03,1.884000000000000000e+03,1.944000000000000000e+03,1.960000000000000000e+03,1.899000000000000000e+03,1.949000000000000000e+03,1.959000000000000000e+03 +1.945000000000000000e+03,1.885000000000000000e+03,1.886000000000000000e+03,1.946000000000000000e+03,1.948000000000000000e+03,1.890000000000000000e+03,1.951000000000000000e+03,1.950000000000000000e+03 +1.946000000000000000e+03,1.886000000000000000e+03,1.893000000000000000e+03,1.953000000000000000e+03,1.951000000000000000e+03,1.894000000000000000e+03,1.956000000000000000e+03,1.954000000000000000e+03 +1.952000000000000000e+03,1.953000000000000000e+03,1.893000000000000000e+03,1.892000000000000000e+03,1.955000000000000000e+03,1.956000000000000000e+03,1.895000000000000000e+03,1.957000000000000000e+03 +1.961000000000000000e+03,1.952000000000000000e+03,1.892000000000000000e+03,1.901000000000000000e+03,1.962000000000000000e+03,1.957000000000000000e+03,1.902000000000000000e+03,1.963000000000000000e+03 +1.964000000000000000e+03,1.904000000000000000e+03,1.898000000000000000e+03,1.958000000000000000e+03,1.966000000000000000e+03,1.905000000000000000e+03,1.960000000000000000e+03,1.965000000000000000e+03 +1.967000000000000000e+03,1.961000000000000000e+03,1.901000000000000000e+03,1.907000000000000000e+03,1.968000000000000000e+03,1.963000000000000000e+03,1.908000000000000000e+03,1.969000000000000000e+03 +1.970000000000000000e+03,1.910000000000000000e+03,1.904000000000000000e+03,1.964000000000000000e+03,1.972000000000000000e+03,1.911000000000000000e+03,1.966000000000000000e+03,1.971000000000000000e+03 +1.973000000000000000e+03,1.967000000000000000e+03,1.907000000000000000e+03,1.913000000000000000e+03,1.974000000000000000e+03,1.969000000000000000e+03,1.914000000000000000e+03,1.975000000000000000e+03 +1.976000000000000000e+03,1.916000000000000000e+03,1.910000000000000000e+03,1.970000000000000000e+03,1.978000000000000000e+03,1.917000000000000000e+03,1.972000000000000000e+03,1.977000000000000000e+03 +1.979000000000000000e+03,1.973000000000000000e+03,1.913000000000000000e+03,1.919000000000000000e+03,1.980000000000000000e+03,1.975000000000000000e+03,1.920000000000000000e+03,1.981000000000000000e+03 +1.982000000000000000e+03,1.922000000000000000e+03,1.916000000000000000e+03,1.976000000000000000e+03,1.984000000000000000e+03,1.923000000000000000e+03,1.978000000000000000e+03,1.983000000000000000e+03 +1.985000000000000000e+03,1.979000000000000000e+03,1.919000000000000000e+03,1.925000000000000000e+03,1.986000000000000000e+03,1.981000000000000000e+03,1.926000000000000000e+03,1.987000000000000000e+03 +1.988000000000000000e+03,1.928000000000000000e+03,1.922000000000000000e+03,1.982000000000000000e+03,1.990000000000000000e+03,1.929000000000000000e+03,1.984000000000000000e+03,1.989000000000000000e+03 +1.991000000000000000e+03,1.985000000000000000e+03,1.925000000000000000e+03,1.931000000000000000e+03,1.992000000000000000e+03,1.987000000000000000e+03,1.932000000000000000e+03,1.993000000000000000e+03 +1.994000000000000000e+03,1.934000000000000000e+03,1.928000000000000000e+03,1.988000000000000000e+03,1.997000000000000000e+03,1.936000000000000000e+03,1.990000000000000000e+03,1.996000000000000000e+03 +2.000000000000000000e+03,1.991000000000000000e+03,1.931000000000000000e+03,1.940000000000000000e+03,2.002000000000000000e+03,1.993000000000000000e+03,1.942000000000000000e+03,2.003000000000000000e+03 +1.994000000000000000e+03,1.995000000000000000e+03,1.935000000000000000e+03,1.934000000000000000e+03,1.998000000000000000e+03,1.999000000000000000e+03,1.938000000000000000e+03,1.997000000000000000e+03 +1.995000000000000000e+03,2.000000000000000000e+03,1.940000000000000000e+03,1.935000000000000000e+03,2.001000000000000000e+03,2.003000000000000000e+03,1.941000000000000000e+03,1.999000000000000000e+03 +2.004000000000000000e+03,1.944000000000000000e+03,1.945000000000000000e+03,2.005000000000000000e+03,2.009000000000000000e+03,1.947000000000000000e+03,2.008000000000000000e+03,2.007000000000000000e+03 +2.018000000000000000e+03,1.958000000000000000e+03,1.944000000000000000e+03,2.004000000000000000e+03,2.020000000000000000e+03,1.959000000000000000e+03,2.009000000000000000e+03,2.019000000000000000e+03 +2.005000000000000000e+03,1.945000000000000000e+03,1.946000000000000000e+03,2.006000000000000000e+03,2.008000000000000000e+03,1.950000000000000000e+03,2.011000000000000000e+03,2.010000000000000000e+03 +2.006000000000000000e+03,1.946000000000000000e+03,1.953000000000000000e+03,2.013000000000000000e+03,2.011000000000000000e+03,1.954000000000000000e+03,2.016000000000000000e+03,2.014000000000000000e+03 +2.012000000000000000e+03,2.013000000000000000e+03,1.953000000000000000e+03,1.952000000000000000e+03,2.015000000000000000e+03,2.016000000000000000e+03,1.955000000000000000e+03,2.017000000000000000e+03 +2.021000000000000000e+03,2.012000000000000000e+03,1.952000000000000000e+03,1.961000000000000000e+03,2.022000000000000000e+03,2.017000000000000000e+03,1.962000000000000000e+03,2.023000000000000000e+03 +2.024000000000000000e+03,1.964000000000000000e+03,1.958000000000000000e+03,2.018000000000000000e+03,2.026000000000000000e+03,1.965000000000000000e+03,2.020000000000000000e+03,2.025000000000000000e+03 +2.027000000000000000e+03,2.021000000000000000e+03,1.961000000000000000e+03,1.967000000000000000e+03,2.028000000000000000e+03,2.023000000000000000e+03,1.968000000000000000e+03,2.029000000000000000e+03 +2.030000000000000000e+03,1.970000000000000000e+03,1.964000000000000000e+03,2.024000000000000000e+03,2.032000000000000000e+03,1.971000000000000000e+03,2.026000000000000000e+03,2.031000000000000000e+03 +2.033000000000000000e+03,2.027000000000000000e+03,1.967000000000000000e+03,1.973000000000000000e+03,2.034000000000000000e+03,2.029000000000000000e+03,1.974000000000000000e+03,2.035000000000000000e+03 +2.036000000000000000e+03,1.976000000000000000e+03,1.970000000000000000e+03,2.030000000000000000e+03,2.038000000000000000e+03,1.977000000000000000e+03,2.032000000000000000e+03,2.037000000000000000e+03 +2.039000000000000000e+03,2.033000000000000000e+03,1.973000000000000000e+03,1.979000000000000000e+03,2.040000000000000000e+03,2.035000000000000000e+03,1.980000000000000000e+03,2.041000000000000000e+03 +2.042000000000000000e+03,1.982000000000000000e+03,1.976000000000000000e+03,2.036000000000000000e+03,2.044000000000000000e+03,1.983000000000000000e+03,2.038000000000000000e+03,2.043000000000000000e+03 +2.045000000000000000e+03,2.039000000000000000e+03,1.979000000000000000e+03,1.985000000000000000e+03,2.046000000000000000e+03,2.041000000000000000e+03,1.986000000000000000e+03,2.047000000000000000e+03 +2.048000000000000000e+03,1.988000000000000000e+03,1.982000000000000000e+03,2.042000000000000000e+03,2.050000000000000000e+03,1.989000000000000000e+03,2.044000000000000000e+03,2.049000000000000000e+03 +2.051000000000000000e+03,2.045000000000000000e+03,1.985000000000000000e+03,1.991000000000000000e+03,2.052000000000000000e+03,2.047000000000000000e+03,1.992000000000000000e+03,2.053000000000000000e+03 +2.054000000000000000e+03,1.994000000000000000e+03,1.988000000000000000e+03,2.048000000000000000e+03,2.056000000000000000e+03,1.996000000000000000e+03,2.050000000000000000e+03,2.055000000000000000e+03 +2.057000000000000000e+03,2.051000000000000000e+03,1.991000000000000000e+03,2.000000000000000000e+03,2.058000000000000000e+03,2.053000000000000000e+03,2.002000000000000000e+03,2.059000000000000000e+03 +1.994000000000000000e+03,2.469000000000000000e+03,2.470000000000000000e+03,1.995000000000000000e+03,2.471000000000000000e+03,2.473000000000000000e+03,2.474000000000000000e+03,1.998000000000000000e+03 +2.054000000000000000e+03,2.435000000000000000e+03,2.469000000000000000e+03,1.994000000000000000e+03,2.436000000000000000e+03,2.472000000000000000e+03,2.471000000000000000e+03,2.056000000000000000e+03 +1.995000000000000000e+03,2.470000000000000000e+03,2.475000000000000000e+03,2.000000000000000000e+03,2.474000000000000000e+03,2.476000000000000000e+03,2.477000000000000000e+03,2.001000000000000000e+03 +2.057000000000000000e+03,2.000000000000000000e+03,2.475000000000000000e+03,2.438000000000000000e+03,2.059000000000000000e+03,2.477000000000000000e+03,2.478000000000000000e+03,2.439000000000000000e+03 +2.060000000000000000e+03,2.004000000000000000e+03,2.005000000000000000e+03,2.061000000000000000e+03,2.065000000000000000e+03,2.007000000000000000e+03,2.064000000000000000e+03,2.063000000000000000e+03 +2.074000000000000000e+03,2.018000000000000000e+03,2.004000000000000000e+03,2.060000000000000000e+03,2.076000000000000000e+03,2.019000000000000000e+03,2.065000000000000000e+03,2.075000000000000000e+03 +2.061000000000000000e+03,2.005000000000000000e+03,2.006000000000000000e+03,2.062000000000000000e+03,2.064000000000000000e+03,2.010000000000000000e+03,2.067000000000000000e+03,2.066000000000000000e+03 +2.062000000000000000e+03,2.006000000000000000e+03,2.013000000000000000e+03,2.069000000000000000e+03,2.067000000000000000e+03,2.014000000000000000e+03,2.072000000000000000e+03,2.070000000000000000e+03 +2.068000000000000000e+03,2.069000000000000000e+03,2.013000000000000000e+03,2.012000000000000000e+03,2.071000000000000000e+03,2.072000000000000000e+03,2.015000000000000000e+03,2.073000000000000000e+03 +2.077000000000000000e+03,2.068000000000000000e+03,2.012000000000000000e+03,2.021000000000000000e+03,2.078000000000000000e+03,2.073000000000000000e+03,2.022000000000000000e+03,2.079000000000000000e+03 +2.080000000000000000e+03,2.024000000000000000e+03,2.018000000000000000e+03,2.074000000000000000e+03,2.082000000000000000e+03,2.025000000000000000e+03,2.076000000000000000e+03,2.081000000000000000e+03 +2.083000000000000000e+03,2.077000000000000000e+03,2.021000000000000000e+03,2.027000000000000000e+03,2.084000000000000000e+03,2.079000000000000000e+03,2.028000000000000000e+03,2.085000000000000000e+03 +2.086000000000000000e+03,2.030000000000000000e+03,2.024000000000000000e+03,2.080000000000000000e+03,2.088000000000000000e+03,2.031000000000000000e+03,2.082000000000000000e+03,2.087000000000000000e+03 +2.089000000000000000e+03,2.083000000000000000e+03,2.027000000000000000e+03,2.033000000000000000e+03,2.090000000000000000e+03,2.085000000000000000e+03,2.034000000000000000e+03,2.091000000000000000e+03 +2.092000000000000000e+03,2.036000000000000000e+03,2.030000000000000000e+03,2.086000000000000000e+03,2.094000000000000000e+03,2.037000000000000000e+03,2.088000000000000000e+03,2.093000000000000000e+03 +2.095000000000000000e+03,2.089000000000000000e+03,2.033000000000000000e+03,2.039000000000000000e+03,2.096000000000000000e+03,2.091000000000000000e+03,2.040000000000000000e+03,2.097000000000000000e+03 +2.098000000000000000e+03,2.042000000000000000e+03,2.036000000000000000e+03,2.092000000000000000e+03,2.100000000000000000e+03,2.043000000000000000e+03,2.094000000000000000e+03,2.099000000000000000e+03 +2.101000000000000000e+03,2.095000000000000000e+03,2.039000000000000000e+03,2.045000000000000000e+03,2.102000000000000000e+03,2.097000000000000000e+03,2.046000000000000000e+03,2.103000000000000000e+03 +2.104000000000000000e+03,2.048000000000000000e+03,2.042000000000000000e+03,2.098000000000000000e+03,2.106000000000000000e+03,2.049000000000000000e+03,2.100000000000000000e+03,2.105000000000000000e+03 +2.107000000000000000e+03,2.101000000000000000e+03,2.045000000000000000e+03,2.051000000000000000e+03,2.108000000000000000e+03,2.103000000000000000e+03,2.052000000000000000e+03,2.109000000000000000e+03 +2.110000000000000000e+03,2.054000000000000000e+03,2.048000000000000000e+03,2.104000000000000000e+03,2.112000000000000000e+03,2.055000000000000000e+03,2.106000000000000000e+03,2.111000000000000000e+03 +2.113000000000000000e+03,2.107000000000000000e+03,2.051000000000000000e+03,2.057000000000000000e+03,2.114000000000000000e+03,2.109000000000000000e+03,2.058000000000000000e+03,2.115000000000000000e+03 +2.110000000000000000e+03,2.401000000000000000e+03,2.435000000000000000e+03,2.054000000000000000e+03,2.402000000000000000e+03,2.437000000000000000e+03,2.436000000000000000e+03,2.112000000000000000e+03 +2.113000000000000000e+03,2.057000000000000000e+03,2.438000000000000000e+03,2.404000000000000000e+03,2.115000000000000000e+03,2.439000000000000000e+03,2.440000000000000000e+03,2.405000000000000000e+03 +2.116000000000000000e+03,2.060000000000000000e+03,2.061000000000000000e+03,2.117000000000000000e+03,2.121000000000000000e+03,2.063000000000000000e+03,2.120000000000000000e+03,2.119000000000000000e+03 +2.130000000000000000e+03,2.074000000000000000e+03,2.060000000000000000e+03,2.116000000000000000e+03,2.132000000000000000e+03,2.075000000000000000e+03,2.121000000000000000e+03,2.131000000000000000e+03 +2.117000000000000000e+03,2.061000000000000000e+03,2.062000000000000000e+03,2.118000000000000000e+03,2.120000000000000000e+03,2.066000000000000000e+03,2.123000000000000000e+03,2.122000000000000000e+03 +2.118000000000000000e+03,2.062000000000000000e+03,2.069000000000000000e+03,2.125000000000000000e+03,2.123000000000000000e+03,2.070000000000000000e+03,2.128000000000000000e+03,2.126000000000000000e+03 +2.124000000000000000e+03,2.125000000000000000e+03,2.069000000000000000e+03,2.068000000000000000e+03,2.127000000000000000e+03,2.128000000000000000e+03,2.071000000000000000e+03,2.129000000000000000e+03 +2.133000000000000000e+03,2.124000000000000000e+03,2.068000000000000000e+03,2.077000000000000000e+03,2.134000000000000000e+03,2.129000000000000000e+03,2.078000000000000000e+03,2.135000000000000000e+03 +2.136000000000000000e+03,2.080000000000000000e+03,2.074000000000000000e+03,2.130000000000000000e+03,2.138000000000000000e+03,2.081000000000000000e+03,2.132000000000000000e+03,2.137000000000000000e+03 +2.139000000000000000e+03,2.133000000000000000e+03,2.077000000000000000e+03,2.083000000000000000e+03,2.140000000000000000e+03,2.135000000000000000e+03,2.084000000000000000e+03,2.141000000000000000e+03 +2.142000000000000000e+03,2.086000000000000000e+03,2.080000000000000000e+03,2.136000000000000000e+03,2.144000000000000000e+03,2.087000000000000000e+03,2.138000000000000000e+03,2.143000000000000000e+03 +2.145000000000000000e+03,2.139000000000000000e+03,2.083000000000000000e+03,2.089000000000000000e+03,2.146000000000000000e+03,2.141000000000000000e+03,2.090000000000000000e+03,2.147000000000000000e+03 +2.148000000000000000e+03,2.092000000000000000e+03,2.086000000000000000e+03,2.142000000000000000e+03,2.150000000000000000e+03,2.093000000000000000e+03,2.144000000000000000e+03,2.149000000000000000e+03 +2.151000000000000000e+03,2.145000000000000000e+03,2.089000000000000000e+03,2.095000000000000000e+03,2.152000000000000000e+03,2.147000000000000000e+03,2.096000000000000000e+03,2.153000000000000000e+03 +2.154000000000000000e+03,2.098000000000000000e+03,2.092000000000000000e+03,2.148000000000000000e+03,2.156000000000000000e+03,2.099000000000000000e+03,2.150000000000000000e+03,2.155000000000000000e+03 +2.157000000000000000e+03,2.151000000000000000e+03,2.095000000000000000e+03,2.101000000000000000e+03,2.158000000000000000e+03,2.153000000000000000e+03,2.102000000000000000e+03,2.159000000000000000e+03 +2.160000000000000000e+03,2.104000000000000000e+03,2.098000000000000000e+03,2.154000000000000000e+03,2.162000000000000000e+03,2.105000000000000000e+03,2.156000000000000000e+03,2.161000000000000000e+03 +2.163000000000000000e+03,2.157000000000000000e+03,2.101000000000000000e+03,2.107000000000000000e+03,2.164000000000000000e+03,2.159000000000000000e+03,2.108000000000000000e+03,2.165000000000000000e+03 +2.166000000000000000e+03,2.110000000000000000e+03,2.104000000000000000e+03,2.160000000000000000e+03,2.168000000000000000e+03,2.111000000000000000e+03,2.162000000000000000e+03,2.167000000000000000e+03 +2.169000000000000000e+03,2.163000000000000000e+03,2.107000000000000000e+03,2.113000000000000000e+03,2.170000000000000000e+03,2.165000000000000000e+03,2.114000000000000000e+03,2.171000000000000000e+03 +2.166000000000000000e+03,2.367000000000000000e+03,2.401000000000000000e+03,2.110000000000000000e+03,2.368000000000000000e+03,2.403000000000000000e+03,2.402000000000000000e+03,2.168000000000000000e+03 +2.169000000000000000e+03,2.113000000000000000e+03,2.404000000000000000e+03,2.370000000000000000e+03,2.171000000000000000e+03,2.405000000000000000e+03,2.406000000000000000e+03,2.371000000000000000e+03 +2.192000000000000000e+03,2.206000000000000000e+03,2.205000000000000000e+03,2.191000000000000000e+03,2.210000000000000000e+03,2.209000000000000000e+03,2.208000000000000000e+03,2.195000000000000000e+03 +2.191000000000000000e+03,2.205000000000000000e+03,2.271000000000000000e+03,2.265000000000000000e+03,2.208000000000000000e+03,2.273000000000000000e+03,2.272000000000000000e+03,2.267000000000000000e+03 +2.192000000000000000e+03,2.193000000000000000e+03,2.207000000000000000e+03,2.206000000000000000e+03,2.197000000000000000e+03,2.212000000000000000e+03,2.211000000000000000e+03,2.210000000000000000e+03 +2.193000000000000000e+03,2.200000000000000000e+03,2.214000000000000000e+03,2.207000000000000000e+03,2.201000000000000000e+03,2.218000000000000000e+03,2.215000000000000000e+03,2.212000000000000000e+03 +2.200000000000000000e+03,2.199000000000000000e+03,2.213000000000000000e+03,2.214000000000000000e+03,2.203000000000000000e+03,2.216000000000000000e+03,2.217000000000000000e+03,2.218000000000000000e+03 +2.199000000000000000e+03,2.268000000000000000e+03,2.274000000000000000e+03,2.213000000000000000e+03,2.270000000000000000e+03,2.275000000000000000e+03,2.276000000000000000e+03,2.216000000000000000e+03 +2.206000000000000000e+03,2.220000000000000000e+03,2.219000000000000000e+03,2.205000000000000000e+03,2.224000000000000000e+03,2.223000000000000000e+03,2.222000000000000000e+03,2.209000000000000000e+03 +2.205000000000000000e+03,2.219000000000000000e+03,2.277000000000000000e+03,2.271000000000000000e+03,2.222000000000000000e+03,2.279000000000000000e+03,2.278000000000000000e+03,2.273000000000000000e+03 +2.206000000000000000e+03,2.207000000000000000e+03,2.221000000000000000e+03,2.220000000000000000e+03,2.211000000000000000e+03,2.226000000000000000e+03,2.225000000000000000e+03,2.224000000000000000e+03 +2.207000000000000000e+03,2.214000000000000000e+03,2.228000000000000000e+03,2.221000000000000000e+03,2.215000000000000000e+03,2.232000000000000000e+03,2.229000000000000000e+03,2.226000000000000000e+03 +2.214000000000000000e+03,2.213000000000000000e+03,2.227000000000000000e+03,2.228000000000000000e+03,2.217000000000000000e+03,2.230000000000000000e+03,2.231000000000000000e+03,2.232000000000000000e+03 +2.213000000000000000e+03,2.274000000000000000e+03,2.280000000000000000e+03,2.227000000000000000e+03,2.276000000000000000e+03,2.281000000000000000e+03,2.282000000000000000e+03,2.230000000000000000e+03 +2.220000000000000000e+03,2.234000000000000000e+03,2.233000000000000000e+03,2.219000000000000000e+03,2.238000000000000000e+03,2.237000000000000000e+03,2.236000000000000000e+03,2.223000000000000000e+03 +2.219000000000000000e+03,2.233000000000000000e+03,2.283000000000000000e+03,2.277000000000000000e+03,2.236000000000000000e+03,2.285000000000000000e+03,2.284000000000000000e+03,2.279000000000000000e+03 +2.220000000000000000e+03,2.221000000000000000e+03,2.235000000000000000e+03,2.234000000000000000e+03,2.225000000000000000e+03,2.240000000000000000e+03,2.239000000000000000e+03,2.238000000000000000e+03 +2.221000000000000000e+03,2.228000000000000000e+03,2.242000000000000000e+03,2.235000000000000000e+03,2.229000000000000000e+03,2.246000000000000000e+03,2.243000000000000000e+03,2.240000000000000000e+03 +2.228000000000000000e+03,2.227000000000000000e+03,2.241000000000000000e+03,2.242000000000000000e+03,2.231000000000000000e+03,2.244000000000000000e+03,2.245000000000000000e+03,2.246000000000000000e+03 +2.227000000000000000e+03,2.280000000000000000e+03,2.286000000000000000e+03,2.241000000000000000e+03,2.282000000000000000e+03,2.287000000000000000e+03,2.288000000000000000e+03,2.244000000000000000e+03 +2.234000000000000000e+03,2.248000000000000000e+03,2.247000000000000000e+03,2.233000000000000000e+03,2.253000000000000000e+03,2.252000000000000000e+03,2.251000000000000000e+03,2.237000000000000000e+03 +2.233000000000000000e+03,2.247000000000000000e+03,2.289000000000000000e+03,2.283000000000000000e+03,2.251000000000000000e+03,2.292000000000000000e+03,2.291000000000000000e+03,2.285000000000000000e+03 +2.234000000000000000e+03,2.235000000000000000e+03,2.250000000000000000e+03,2.248000000000000000e+03,2.239000000000000000e+03,2.257000000000000000e+03,2.255000000000000000e+03,2.253000000000000000e+03 +2.235000000000000000e+03,2.242000000000000000e+03,2.259000000000000000e+03,2.250000000000000000e+03,2.243000000000000000e+03,2.264000000000000000e+03,2.261000000000000000e+03,2.257000000000000000e+03 +2.242000000000000000e+03,2.241000000000000000e+03,2.258000000000000000e+03,2.259000000000000000e+03,2.245000000000000000e+03,2.262000000000000000e+03,2.263000000000000000e+03,2.264000000000000000e+03 +2.241000000000000000e+03,2.286000000000000000e+03,2.295000000000000000e+03,2.258000000000000000e+03,2.288000000000000000e+03,2.297000000000000000e+03,2.298000000000000000e+03,2.262000000000000000e+03 +2.247000000000000000e+03,2.248000000000000000e+03,2.250000000000000000e+03,2.249000000000000000e+03,2.252000000000000000e+03,2.255000000000000000e+03,2.256000000000000000e+03,2.254000000000000000e+03 +2.289000000000000000e+03,2.247000000000000000e+03,2.249000000000000000e+03,2.290000000000000000e+03,2.292000000000000000e+03,2.254000000000000000e+03,2.294000000000000000e+03,2.293000000000000000e+03 +2.249000000000000000e+03,2.250000000000000000e+03,2.259000000000000000e+03,2.258000000000000000e+03,2.256000000000000000e+03,2.261000000000000000e+03,2.263000000000000000e+03,2.260000000000000000e+03 +2.290000000000000000e+03,2.249000000000000000e+03,2.258000000000000000e+03,2.295000000000000000e+03,2.294000000000000000e+03,2.260000000000000000e+03,2.298000000000000000e+03,2.296000000000000000e+03 +2.265000000000000000e+03,2.271000000000000000e+03,2.305000000000000000e+03,2.299000000000000000e+03,2.272000000000000000e+03,2.307000000000000000e+03,2.306000000000000000e+03,2.301000000000000000e+03 +2.268000000000000000e+03,2.302000000000000000e+03,2.308000000000000000e+03,2.274000000000000000e+03,2.304000000000000000e+03,2.309000000000000000e+03,2.310000000000000000e+03,2.275000000000000000e+03 +2.271000000000000000e+03,2.277000000000000000e+03,2.311000000000000000e+03,2.305000000000000000e+03,2.278000000000000000e+03,2.313000000000000000e+03,2.312000000000000000e+03,2.307000000000000000e+03 +2.274000000000000000e+03,2.308000000000000000e+03,2.314000000000000000e+03,2.280000000000000000e+03,2.310000000000000000e+03,2.315000000000000000e+03,2.316000000000000000e+03,2.281000000000000000e+03 +2.277000000000000000e+03,2.283000000000000000e+03,2.317000000000000000e+03,2.311000000000000000e+03,2.284000000000000000e+03,2.319000000000000000e+03,2.318000000000000000e+03,2.313000000000000000e+03 +2.280000000000000000e+03,2.314000000000000000e+03,2.320000000000000000e+03,2.286000000000000000e+03,2.316000000000000000e+03,2.321000000000000000e+03,2.322000000000000000e+03,2.287000000000000000e+03 +2.283000000000000000e+03,2.289000000000000000e+03,2.323000000000000000e+03,2.317000000000000000e+03,2.291000000000000000e+03,2.326000000000000000e+03,2.325000000000000000e+03,2.319000000000000000e+03 +2.286000000000000000e+03,2.320000000000000000e+03,2.329000000000000000e+03,2.295000000000000000e+03,2.322000000000000000e+03,2.331000000000000000e+03,2.332000000000000000e+03,2.297000000000000000e+03 +2.323000000000000000e+03,2.289000000000000000e+03,2.290000000000000000e+03,2.324000000000000000e+03,2.326000000000000000e+03,2.293000000000000000e+03,2.328000000000000000e+03,2.327000000000000000e+03 +2.324000000000000000e+03,2.290000000000000000e+03,2.295000000000000000e+03,2.329000000000000000e+03,2.328000000000000000e+03,2.296000000000000000e+03,2.332000000000000000e+03,2.330000000000000000e+03 +2.299000000000000000e+03,2.305000000000000000e+03,2.339000000000000000e+03,2.333000000000000000e+03,2.306000000000000000e+03,2.341000000000000000e+03,2.340000000000000000e+03,2.335000000000000000e+03 +2.302000000000000000e+03,2.336000000000000000e+03,2.342000000000000000e+03,2.308000000000000000e+03,2.338000000000000000e+03,2.343000000000000000e+03,2.344000000000000000e+03,2.309000000000000000e+03 +2.305000000000000000e+03,2.311000000000000000e+03,2.345000000000000000e+03,2.339000000000000000e+03,2.312000000000000000e+03,2.347000000000000000e+03,2.346000000000000000e+03,2.341000000000000000e+03 +2.308000000000000000e+03,2.342000000000000000e+03,2.348000000000000000e+03,2.314000000000000000e+03,2.344000000000000000e+03,2.349000000000000000e+03,2.350000000000000000e+03,2.315000000000000000e+03 +2.311000000000000000e+03,2.317000000000000000e+03,2.351000000000000000e+03,2.345000000000000000e+03,2.318000000000000000e+03,2.353000000000000000e+03,2.352000000000000000e+03,2.347000000000000000e+03 +2.314000000000000000e+03,2.348000000000000000e+03,2.354000000000000000e+03,2.320000000000000000e+03,2.350000000000000000e+03,2.355000000000000000e+03,2.356000000000000000e+03,2.321000000000000000e+03 +2.317000000000000000e+03,2.323000000000000000e+03,2.357000000000000000e+03,2.351000000000000000e+03,2.325000000000000000e+03,2.360000000000000000e+03,2.359000000000000000e+03,2.353000000000000000e+03 +2.320000000000000000e+03,2.354000000000000000e+03,2.363000000000000000e+03,2.329000000000000000e+03,2.356000000000000000e+03,2.365000000000000000e+03,2.366000000000000000e+03,2.331000000000000000e+03 +2.357000000000000000e+03,2.323000000000000000e+03,2.324000000000000000e+03,2.358000000000000000e+03,2.360000000000000000e+03,2.327000000000000000e+03,2.362000000000000000e+03,2.361000000000000000e+03 +2.358000000000000000e+03,2.324000000000000000e+03,2.329000000000000000e+03,2.363000000000000000e+03,2.362000000000000000e+03,2.330000000000000000e+03,2.366000000000000000e+03,2.364000000000000000e+03 +2.333000000000000000e+03,2.339000000000000000e+03,2.373000000000000000e+03,2.367000000000000000e+03,2.340000000000000000e+03,2.375000000000000000e+03,2.374000000000000000e+03,2.369000000000000000e+03 +2.336000000000000000e+03,2.370000000000000000e+03,2.376000000000000000e+03,2.342000000000000000e+03,2.372000000000000000e+03,2.377000000000000000e+03,2.378000000000000000e+03,2.343000000000000000e+03 +2.339000000000000000e+03,2.345000000000000000e+03,2.379000000000000000e+03,2.373000000000000000e+03,2.346000000000000000e+03,2.381000000000000000e+03,2.380000000000000000e+03,2.375000000000000000e+03 +2.342000000000000000e+03,2.376000000000000000e+03,2.382000000000000000e+03,2.348000000000000000e+03,2.378000000000000000e+03,2.383000000000000000e+03,2.384000000000000000e+03,2.349000000000000000e+03 +2.345000000000000000e+03,2.351000000000000000e+03,2.385000000000000000e+03,2.379000000000000000e+03,2.352000000000000000e+03,2.387000000000000000e+03,2.386000000000000000e+03,2.381000000000000000e+03 +2.348000000000000000e+03,2.382000000000000000e+03,2.388000000000000000e+03,2.354000000000000000e+03,2.384000000000000000e+03,2.389000000000000000e+03,2.390000000000000000e+03,2.355000000000000000e+03 +2.351000000000000000e+03,2.357000000000000000e+03,2.391000000000000000e+03,2.385000000000000000e+03,2.359000000000000000e+03,2.394000000000000000e+03,2.393000000000000000e+03,2.387000000000000000e+03 +2.354000000000000000e+03,2.388000000000000000e+03,2.397000000000000000e+03,2.363000000000000000e+03,2.390000000000000000e+03,2.399000000000000000e+03,2.400000000000000000e+03,2.365000000000000000e+03 +2.391000000000000000e+03,2.357000000000000000e+03,2.358000000000000000e+03,2.392000000000000000e+03,2.394000000000000000e+03,2.361000000000000000e+03,2.396000000000000000e+03,2.395000000000000000e+03 +2.392000000000000000e+03,2.358000000000000000e+03,2.363000000000000000e+03,2.397000000000000000e+03,2.396000000000000000e+03,2.364000000000000000e+03,2.400000000000000000e+03,2.398000000000000000e+03 +2.367000000000000000e+03,2.373000000000000000e+03,2.407000000000000000e+03,2.401000000000000000e+03,2.374000000000000000e+03,2.409000000000000000e+03,2.408000000000000000e+03,2.403000000000000000e+03 +2.370000000000000000e+03,2.404000000000000000e+03,2.410000000000000000e+03,2.376000000000000000e+03,2.406000000000000000e+03,2.411000000000000000e+03,2.412000000000000000e+03,2.377000000000000000e+03 +2.373000000000000000e+03,2.379000000000000000e+03,2.413000000000000000e+03,2.407000000000000000e+03,2.380000000000000000e+03,2.415000000000000000e+03,2.414000000000000000e+03,2.409000000000000000e+03 +2.376000000000000000e+03,2.410000000000000000e+03,2.416000000000000000e+03,2.382000000000000000e+03,2.412000000000000000e+03,2.417000000000000000e+03,2.418000000000000000e+03,2.383000000000000000e+03 +2.379000000000000000e+03,2.385000000000000000e+03,2.419000000000000000e+03,2.413000000000000000e+03,2.386000000000000000e+03,2.421000000000000000e+03,2.420000000000000000e+03,2.415000000000000000e+03 +2.382000000000000000e+03,2.416000000000000000e+03,2.422000000000000000e+03,2.388000000000000000e+03,2.418000000000000000e+03,2.423000000000000000e+03,2.424000000000000000e+03,2.389000000000000000e+03 +2.385000000000000000e+03,2.391000000000000000e+03,2.425000000000000000e+03,2.419000000000000000e+03,2.393000000000000000e+03,2.428000000000000000e+03,2.427000000000000000e+03,2.421000000000000000e+03 +2.388000000000000000e+03,2.422000000000000000e+03,2.431000000000000000e+03,2.397000000000000000e+03,2.424000000000000000e+03,2.433000000000000000e+03,2.434000000000000000e+03,2.399000000000000000e+03 +2.425000000000000000e+03,2.391000000000000000e+03,2.392000000000000000e+03,2.426000000000000000e+03,2.428000000000000000e+03,2.395000000000000000e+03,2.430000000000000000e+03,2.429000000000000000e+03 +2.426000000000000000e+03,2.392000000000000000e+03,2.397000000000000000e+03,2.431000000000000000e+03,2.430000000000000000e+03,2.398000000000000000e+03,2.434000000000000000e+03,2.432000000000000000e+03 +2.401000000000000000e+03,2.407000000000000000e+03,2.441000000000000000e+03,2.435000000000000000e+03,2.408000000000000000e+03,2.443000000000000000e+03,2.442000000000000000e+03,2.437000000000000000e+03 +2.404000000000000000e+03,2.438000000000000000e+03,2.444000000000000000e+03,2.410000000000000000e+03,2.440000000000000000e+03,2.445000000000000000e+03,2.446000000000000000e+03,2.411000000000000000e+03 +2.407000000000000000e+03,2.413000000000000000e+03,2.447000000000000000e+03,2.441000000000000000e+03,2.414000000000000000e+03,2.449000000000000000e+03,2.448000000000000000e+03,2.443000000000000000e+03 +2.410000000000000000e+03,2.444000000000000000e+03,2.450000000000000000e+03,2.416000000000000000e+03,2.446000000000000000e+03,2.451000000000000000e+03,2.452000000000000000e+03,2.417000000000000000e+03 +2.413000000000000000e+03,2.419000000000000000e+03,2.453000000000000000e+03,2.447000000000000000e+03,2.420000000000000000e+03,2.455000000000000000e+03,2.454000000000000000e+03,2.449000000000000000e+03 +2.416000000000000000e+03,2.450000000000000000e+03,2.456000000000000000e+03,2.422000000000000000e+03,2.452000000000000000e+03,2.457000000000000000e+03,2.458000000000000000e+03,2.423000000000000000e+03 +2.419000000000000000e+03,2.425000000000000000e+03,2.459000000000000000e+03,2.453000000000000000e+03,2.427000000000000000e+03,2.462000000000000000e+03,2.461000000000000000e+03,2.455000000000000000e+03 +2.422000000000000000e+03,2.456000000000000000e+03,2.465000000000000000e+03,2.431000000000000000e+03,2.458000000000000000e+03,2.467000000000000000e+03,2.468000000000000000e+03,2.433000000000000000e+03 +2.459000000000000000e+03,2.425000000000000000e+03,2.426000000000000000e+03,2.460000000000000000e+03,2.462000000000000000e+03,2.429000000000000000e+03,2.464000000000000000e+03,2.463000000000000000e+03 +2.460000000000000000e+03,2.426000000000000000e+03,2.431000000000000000e+03,2.465000000000000000e+03,2.464000000000000000e+03,2.432000000000000000e+03,2.468000000000000000e+03,2.466000000000000000e+03 +2.435000000000000000e+03,2.441000000000000000e+03,2.479000000000000000e+03,2.469000000000000000e+03,2.442000000000000000e+03,2.482000000000000000e+03,2.481000000000000000e+03,2.472000000000000000e+03 +2.438000000000000000e+03,2.475000000000000000e+03,2.485000000000000000e+03,2.444000000000000000e+03,2.478000000000000000e+03,2.487000000000000000e+03,2.488000000000000000e+03,2.445000000000000000e+03 +2.441000000000000000e+03,2.447000000000000000e+03,2.489000000000000000e+03,2.479000000000000000e+03,2.448000000000000000e+03,2.492000000000000000e+03,2.491000000000000000e+03,2.482000000000000000e+03 +2.444000000000000000e+03,2.485000000000000000e+03,2.495000000000000000e+03,2.450000000000000000e+03,2.488000000000000000e+03,2.497000000000000000e+03,2.498000000000000000e+03,2.451000000000000000e+03 +2.447000000000000000e+03,2.453000000000000000e+03,2.499000000000000000e+03,2.489000000000000000e+03,2.454000000000000000e+03,2.502000000000000000e+03,2.501000000000000000e+03,2.492000000000000000e+03 +2.450000000000000000e+03,2.495000000000000000e+03,2.505000000000000000e+03,2.456000000000000000e+03,2.498000000000000000e+03,2.507000000000000000e+03,2.508000000000000000e+03,2.457000000000000000e+03 +2.453000000000000000e+03,2.459000000000000000e+03,2.509000000000000000e+03,2.499000000000000000e+03,2.461000000000000000e+03,2.512000000000000000e+03,2.511000000000000000e+03,2.502000000000000000e+03 +2.456000000000000000e+03,2.505000000000000000e+03,2.516000000000000000e+03,2.465000000000000000e+03,2.508000000000000000e+03,2.518000000000000000e+03,2.519000000000000000e+03,2.467000000000000000e+03 +2.509000000000000000e+03,2.459000000000000000e+03,2.460000000000000000e+03,2.510000000000000000e+03,2.512000000000000000e+03,2.463000000000000000e+03,2.515000000000000000e+03,2.513000000000000000e+03 +2.510000000000000000e+03,2.460000000000000000e+03,2.465000000000000000e+03,2.516000000000000000e+03,2.515000000000000000e+03,2.466000000000000000e+03,2.519000000000000000e+03,2.517000000000000000e+03 +2.469000000000000000e+03,2.479000000000000000e+03,2.480000000000000000e+03,2.470000000000000000e+03,2.481000000000000000e+03,2.483000000000000000e+03,2.484000000000000000e+03,2.473000000000000000e+03 +2.470000000000000000e+03,2.480000000000000000e+03,2.485000000000000000e+03,2.475000000000000000e+03,2.484000000000000000e+03,2.486000000000000000e+03,2.487000000000000000e+03,2.476000000000000000e+03 +2.479000000000000000e+03,2.489000000000000000e+03,2.490000000000000000e+03,2.480000000000000000e+03,2.491000000000000000e+03,2.493000000000000000e+03,2.494000000000000000e+03,2.483000000000000000e+03 +2.480000000000000000e+03,2.490000000000000000e+03,2.495000000000000000e+03,2.485000000000000000e+03,2.494000000000000000e+03,2.496000000000000000e+03,2.497000000000000000e+03,2.486000000000000000e+03 +2.489000000000000000e+03,2.499000000000000000e+03,2.500000000000000000e+03,2.490000000000000000e+03,2.501000000000000000e+03,2.503000000000000000e+03,2.504000000000000000e+03,2.493000000000000000e+03 +2.490000000000000000e+03,2.500000000000000000e+03,2.505000000000000000e+03,2.495000000000000000e+03,2.504000000000000000e+03,2.506000000000000000e+03,2.507000000000000000e+03,2.496000000000000000e+03 +2.499000000000000000e+03,2.509000000000000000e+03,2.510000000000000000e+03,2.500000000000000000e+03,2.511000000000000000e+03,2.513000000000000000e+03,2.514000000000000000e+03,2.503000000000000000e+03 +2.500000000000000000e+03,2.510000000000000000e+03,2.516000000000000000e+03,2.505000000000000000e+03,2.514000000000000000e+03,2.517000000000000000e+03,2.518000000000000000e+03,2.506000000000000000e+03 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/coords.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/coords.csv new file mode 100644 index 000000000..2ee18063c --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/coords.csv @@ -0,0 +1,2520 @@ +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +3.125000000000005811e-03,0.000000000000000000e+00,0.000000000000000000e+00 +3.125000000000004944e-03,1.000000000000000021e-03,0.000000000000000000e+00 +0.000000000000000000e+00,1.000000000000000021e-03,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,5.000000000000000104e-04 +3.125000000000005811e-03,0.000000000000000000e+00,5.000000000000000104e-04 +0.000000000000000000e+00,1.000000000000000021e-03,5.000000000000000104e-04 +1.562500000000002906e-03,0.000000000000000000e+00,0.000000000000000000e+00 +3.125000000000004944e-03,5.000000000000000104e-04,0.000000000000000000e+00 +1.562500000000002038e-03,1.000000000000000021e-03,0.000000000000000000e+00 +0.000000000000000000e+00,4.999999999999995767e-04,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,2.500000000000000052e-04 +3.125000000000005811e-03,0.000000000000000000e+00,2.500000000000000052e-04 +0.000000000000000000e+00,1.000000000000000021e-03,2.500000000000000052e-04 +1.562500000000002906e-03,0.000000000000000000e+00,5.000000000000000104e-04 +0.000000000000000000e+00,5.000000000000004441e-04,5.000000000000000104e-04 +0.000000000000000000e+00,0.000000000000000000e+00,1.000000000000000021e-03 +3.125000000000005811e-03,0.000000000000000000e+00,1.000000000000000021e-03 +3.125000000000004944e-03,1.000000000000000021e-03,1.000000000000000021e-03 +0.000000000000000000e+00,1.000000000000000021e-03,1.000000000000000021e-03 +0.000000000000000000e+00,0.000000000000000000e+00,7.500000000000000156e-04 +3.125000000000005811e-03,0.000000000000000000e+00,7.500000000000000156e-04 +0.000000000000000000e+00,1.000000000000000021e-03,7.500000000000000156e-04 +1.562500000000002906e-03,0.000000000000000000e+00,1.000000000000000021e-03 +3.125000000000004944e-03,5.000000000000000104e-04,1.000000000000000021e-03 +1.562500000000002038e-03,1.000000000000000021e-03,1.000000000000000021e-03 +0.000000000000000000e+00,4.999999999999995767e-04,1.000000000000000021e-03 +3.125000000000001041e-03,2.000000000000000909e-03,0.000000000000000000e+00 +0.000000000000000000e+00,2.000000000000000909e-03,0.000000000000000000e+00 +0.000000000000000000e+00,2.000000000000000909e-03,5.000000000000000104e-04 +3.125000000000003209e-03,1.500000000000000031e-03,0.000000000000000000e+00 +1.562500000000000954e-03,2.000000000000000909e-03,0.000000000000000000e+00 +0.000000000000000000e+00,1.500000000000000031e-03,0.000000000000000000e+00 +0.000000000000000000e+00,2.000000000000000909e-03,2.500000000000000052e-04 +0.000000000000000000e+00,1.500000000000000031e-03,5.000000000000000104e-04 +3.125000000000001041e-03,2.000000000000000909e-03,1.000000000000000021e-03 +0.000000000000000000e+00,2.000000000000000909e-03,1.000000000000000021e-03 +0.000000000000000000e+00,2.000000000000000909e-03,7.500000000000000156e-04 +3.125000000000003209e-03,1.500000000000000031e-03,1.000000000000000021e-03 +1.562500000000000954e-03,2.000000000000000909e-03,1.000000000000000021e-03 +0.000000000000000000e+00,1.500000000000000031e-03,1.000000000000000021e-03 +3.125000000000000173e-03,3.000000000000000930e-03,0.000000000000000000e+00 +0.000000000000000000e+00,3.000000000000000930e-03,0.000000000000000000e+00 +0.000000000000000000e+00,3.000000000000000930e-03,5.000000000000000104e-04 +3.125000000000001041e-03,2.500000000000000919e-03,0.000000000000000000e+00 +1.562500000000000087e-03,3.000000000000000930e-03,0.000000000000000000e+00 +0.000000000000000000e+00,2.500000000000000919e-03,0.000000000000000000e+00 +0.000000000000000000e+00,3.000000000000000930e-03,2.500000000000000052e-04 +0.000000000000000000e+00,2.500000000000000919e-03,5.000000000000000104e-04 +3.125000000000000173e-03,3.000000000000000930e-03,1.000000000000000021e-03 +0.000000000000000000e+00,3.000000000000000930e-03,1.000000000000000021e-03 +0.000000000000000000e+00,3.000000000000000930e-03,7.500000000000000156e-04 +3.125000000000001041e-03,2.500000000000000919e-03,1.000000000000000021e-03 +1.562500000000000087e-03,3.000000000000000930e-03,1.000000000000000021e-03 +0.000000000000000000e+00,2.500000000000000919e-03,1.000000000000000021e-03 +3.124999999999998005e-03,4.000000000000000951e-03,0.000000000000000000e+00 +0.000000000000000000e+00,4.000000000000000951e-03,0.000000000000000000e+00 +0.000000000000000000e+00,4.000000000000000951e-03,5.000000000000000104e-04 +3.124999999999998872e-03,3.500000000000000940e-03,0.000000000000000000e+00 +1.562499999999999003e-03,4.000000000000000951e-03,0.000000000000000000e+00 +0.000000000000000000e+00,3.500000000000000940e-03,0.000000000000000000e+00 +0.000000000000000000e+00,4.000000000000000951e-03,2.500000000000000052e-04 +0.000000000000000000e+00,3.500000000000000940e-03,5.000000000000000104e-04 +3.124999999999998005e-03,4.000000000000000951e-03,1.000000000000000021e-03 +0.000000000000000000e+00,4.000000000000000951e-03,1.000000000000000021e-03 +0.000000000000000000e+00,4.000000000000000951e-03,7.500000000000000156e-04 +3.124999999999998872e-03,3.500000000000000940e-03,1.000000000000000021e-03 +1.562499999999999003e-03,4.000000000000000951e-03,1.000000000000000021e-03 +0.000000000000000000e+00,3.500000000000000940e-03,1.000000000000000021e-03 +3.124999999999995837e-03,5.000000000000000971e-03,0.000000000000000000e+00 +0.000000000000000000e+00,5.000000000000000971e-03,0.000000000000000000e+00 +0.000000000000000000e+00,5.000000000000000971e-03,5.000000000000000104e-04 +3.124999999999997138e-03,4.500000000000001395e-03,0.000000000000000000e+00 +1.562499999999997918e-03,5.000000000000000971e-03,0.000000000000000000e+00 +0.000000000000000000e+00,4.500000000000001395e-03,0.000000000000000000e+00 +0.000000000000000000e+00,5.000000000000000971e-03,2.500000000000000052e-04 +0.000000000000000000e+00,4.500000000000001395e-03,5.000000000000000104e-04 +3.124999999999995837e-03,5.000000000000000971e-03,1.000000000000000021e-03 +0.000000000000000000e+00,5.000000000000000971e-03,1.000000000000000021e-03 +0.000000000000000000e+00,5.000000000000000971e-03,7.500000000000000156e-04 +3.124999999999997138e-03,4.500000000000001395e-03,1.000000000000000021e-03 +1.562499999999997918e-03,5.000000000000000971e-03,1.000000000000000021e-03 +0.000000000000000000e+00,4.500000000000001395e-03,1.000000000000000021e-03 +6.250000000000004684e-03,0.000000000000000000e+00,0.000000000000000000e+00 +6.250000000000002949e-03,1.000000000000000021e-03,0.000000000000000000e+00 +6.250000000000004684e-03,0.000000000000000000e+00,5.000000000000000104e-04 +4.687500000000005898e-03,0.000000000000000000e+00,0.000000000000000000e+00 +6.250000000000003816e-03,5.000000000000000104e-04,0.000000000000000000e+00 +4.687500000000004163e-03,1.000000000000000021e-03,0.000000000000000000e+00 +6.250000000000004684e-03,0.000000000000000000e+00,2.500000000000000052e-04 +4.687500000000005898e-03,0.000000000000000000e+00,5.000000000000000104e-04 +6.250000000000004684e-03,0.000000000000000000e+00,1.000000000000000021e-03 +6.250000000000002949e-03,1.000000000000000021e-03,1.000000000000000021e-03 +6.250000000000004684e-03,0.000000000000000000e+00,7.500000000000000156e-04 +4.687500000000005898e-03,0.000000000000000000e+00,1.000000000000000021e-03 +6.250000000000003816e-03,5.000000000000000104e-04,1.000000000000000021e-03 +4.687500000000004163e-03,1.000000000000000021e-03,1.000000000000000021e-03 +6.250000000000001214e-03,2.000000000000000042e-03,0.000000000000000000e+00 +6.250000000000002082e-03,1.500000000000000031e-03,0.000000000000000000e+00 +4.687500000000002429e-03,2.000000000000000909e-03,0.000000000000000000e+00 +6.250000000000001214e-03,2.000000000000000042e-03,1.000000000000000021e-03 +6.250000000000002082e-03,1.500000000000000031e-03,1.000000000000000021e-03 +4.687500000000002429e-03,2.000000000000000909e-03,1.000000000000000021e-03 +6.249999999999998612e-03,3.000000000000000062e-03,0.000000000000000000e+00 +6.250000000000000347e-03,2.500000000000000052e-03,0.000000000000000000e+00 +4.687499999999999827e-03,3.000000000000000930e-03,0.000000000000000000e+00 +6.249999999999998612e-03,3.000000000000000062e-03,1.000000000000000021e-03 +6.250000000000000347e-03,2.500000000000000052e-03,1.000000000000000021e-03 +4.687499999999999827e-03,3.000000000000000930e-03,1.000000000000000021e-03 +6.249999999999997745e-03,4.000000000000000951e-03,0.000000000000000000e+00 +6.249999999999998612e-03,3.500000000000000940e-03,0.000000000000000000e+00 +4.687499999999997224e-03,4.000000000000000951e-03,0.000000000000000000e+00 +6.249999999999997745e-03,4.000000000000000951e-03,1.000000000000000021e-03 +6.249999999999998612e-03,3.500000000000000940e-03,1.000000000000000021e-03 +4.687499999999997224e-03,4.000000000000000951e-03,1.000000000000000021e-03 +6.249999999999996010e-03,5.000000000000000971e-03,0.000000000000000000e+00 +6.249999999999996877e-03,4.500000000000001395e-03,0.000000000000000000e+00 +4.687499999999994622e-03,5.000000000000000971e-03,0.000000000000000000e+00 +6.249999999999996010e-03,5.000000000000000971e-03,1.000000000000000021e-03 +6.249999999999996877e-03,4.500000000000001395e-03,1.000000000000000021e-03 +4.687499999999994622e-03,5.000000000000000971e-03,1.000000000000000021e-03 +9.375000000000004857e-03,0.000000000000000000e+00,0.000000000000000000e+00 +9.375000000000004857e-03,9.999999999999995871e-04,0.000000000000000000e+00 +9.375000000000004857e-03,0.000000000000000000e+00,5.000000000000000104e-04 +7.812500000000005204e-03,0.000000000000000000e+00,0.000000000000000000e+00 +9.375000000000004857e-03,4.999999999999995767e-04,0.000000000000000000e+00 +7.812500000000003469e-03,9.999999999999998040e-04,0.000000000000000000e+00 +9.375000000000004857e-03,0.000000000000000000e+00,2.500000000000000052e-04 +7.812500000000005204e-03,0.000000000000000000e+00,5.000000000000000104e-04 +9.375000000000004857e-03,0.000000000000000000e+00,1.000000000000000021e-03 +9.375000000000004857e-03,9.999999999999995871e-04,1.000000000000000021e-03 +9.375000000000004857e-03,0.000000000000000000e+00,7.500000000000000156e-04 +7.812500000000005204e-03,0.000000000000000000e+00,1.000000000000000021e-03 +9.375000000000004857e-03,4.999999999999995767e-04,1.000000000000000021e-03 +7.812500000000003469e-03,9.999999999999998040e-04,1.000000000000000021e-03 +9.375000000000001388e-03,2.000000000000000042e-03,0.000000000000000000e+00 +9.375000000000003123e-03,1.500000000000000031e-03,0.000000000000000000e+00 +7.812500000000001735e-03,2.000000000000000042e-03,0.000000000000000000e+00 +9.375000000000001388e-03,2.000000000000000042e-03,1.000000000000000021e-03 +9.375000000000003123e-03,1.500000000000000031e-03,1.000000000000000021e-03 +7.812500000000001735e-03,2.000000000000000042e-03,1.000000000000000021e-03 +9.374999999999999653e-03,3.000000000000000062e-03,0.000000000000000000e+00 +9.375000000000001388e-03,2.500000000000000052e-03,0.000000000000000000e+00 +7.812499999999999133e-03,3.000000000000000062e-03,0.000000000000000000e+00 +9.374999999999999653e-03,3.000000000000000062e-03,1.000000000000000021e-03 +9.375000000000001388e-03,2.500000000000000052e-03,1.000000000000000021e-03 +7.812500000000000000e-03,3.000000000000000062e-03,1.000000000000000021e-03 +9.374999999999996184e-03,4.000000000000000951e-03,0.000000000000000000e+00 +9.374999999999997918e-03,3.500000000000000940e-03,0.000000000000000000e+00 +7.812499999999997398e-03,4.000000000000000951e-03,0.000000000000000000e+00 +9.374999999999996184e-03,4.000000000000000951e-03,1.000000000000000021e-03 +9.374999999999997918e-03,3.500000000000000940e-03,1.000000000000000021e-03 +7.812499999999997398e-03,4.000000000000000951e-03,1.000000000000000021e-03 +9.374999999999994449e-03,5.000000000000000971e-03,0.000000000000000000e+00 +9.374999999999994449e-03,4.500000000000001395e-03,0.000000000000000000e+00 +7.812499999999994796e-03,5.000000000000000971e-03,0.000000000000000000e+00 +9.374999999999994449e-03,5.000000000000000971e-03,1.000000000000000021e-03 +9.374999999999994449e-03,4.500000000000001395e-03,1.000000000000000021e-03 +7.812499999999994796e-03,5.000000000000000971e-03,1.000000000000000021e-03 +1.250000000000000069e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.250000000000000069e-02,9.999999999999998040e-04,0.000000000000000000e+00 +1.250000000000000069e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.093749999999999931e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.250000000000000069e-02,4.999999999999999020e-04,0.000000000000000000e+00 +1.093749999999999931e-02,9.999999999999995871e-04,0.000000000000000000e+00 +1.250000000000000069e-02,0.000000000000000000e+00,2.500000000000000052e-04 +1.093749999999999931e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.250000000000000069e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.250000000000000069e-02,9.999999999999998040e-04,1.000000000000000021e-03 +1.250000000000000069e-02,0.000000000000000000e+00,7.500000000000000156e-04 +1.093749999999999931e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.250000000000000069e-02,4.999999999999999020e-04,1.000000000000000021e-03 +1.093749999999999931e-02,9.999999999999995871e-04,1.000000000000000021e-03 +1.250000000000000069e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.250000000000000069e-02,1.500000000000000031e-03,0.000000000000000000e+00 +1.093749999999999931e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.250000000000000069e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.250000000000000069e-02,1.500000000000000031e-03,1.000000000000000021e-03 +1.093749999999999931e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.250000000000000069e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.250000000000000069e-02,2.500000000000000052e-03,0.000000000000000000e+00 +1.093749999999999931e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.250000000000000069e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.250000000000000069e-02,2.500000000000000052e-03,1.000000000000000021e-03 +1.093749999999999931e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.250000000000000069e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.250000000000000069e-02,3.500000000000000940e-03,0.000000000000000000e+00 +1.093749999999999931e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.250000000000000069e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.250000000000000069e-02,3.500000000000000940e-03,1.000000000000000021e-03 +1.093749999999999931e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.250000000000000069e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.250000000000000069e-02,4.500000000000001395e-03,0.000000000000000000e+00 +1.093749999999999931e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.250000000000000069e-02,5.000000000000000971e-03,1.000000000000000021e-03 +1.250000000000000069e-02,4.500000000000001395e-03,1.000000000000000021e-03 +1.093749999999999931e-02,5.000000000000000971e-03,1.000000000000000021e-03 +1.562500000000001041e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.562500000000001041e-02,1.000000000000000021e-03,0.000000000000000000e+00 +1.562500000000001041e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.406250000000000035e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.562500000000001041e-02,5.000000000000000104e-04,0.000000000000000000e+00 +1.406250000000000035e-02,1.000000000000000021e-03,0.000000000000000000e+00 +1.562500000000001041e-02,0.000000000000000000e+00,2.500000000000000052e-04 +1.406250000000000035e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.562500000000001041e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.562500000000001041e-02,1.000000000000000021e-03,1.000000000000000021e-03 +1.562500000000001041e-02,0.000000000000000000e+00,7.500000000000000156e-04 +1.406250000000000035e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.562500000000001041e-02,5.000000000000000104e-04,1.000000000000000021e-03 +1.406250000000000035e-02,1.000000000000000021e-03,1.000000000000000021e-03 +1.562500000000000000e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.562500000000000000e-02,1.500000000000000031e-03,0.000000000000000000e+00 +1.406250000000000035e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.562500000000000000e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.562500000000001041e-02,1.500000000000000031e-03,1.000000000000000021e-03 +1.406250000000000035e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.562500000000000000e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.562500000000000000e-02,2.500000000000000052e-03,0.000000000000000000e+00 +1.406250000000000035e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.562500000000000000e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.562500000000000000e-02,2.500000000000000052e-03,1.000000000000000021e-03 +1.406250000000000035e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.562500000000000000e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.562500000000000000e-02,3.500000000000000940e-03,0.000000000000000000e+00 +1.406250000000000035e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.562500000000000000e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.562500000000000000e-02,3.500000000000000940e-03,1.000000000000000021e-03 +1.406250000000000035e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.562500000000000000e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.562500000000000000e-02,4.500000000000001395e-03,0.000000000000000000e+00 +1.406250000000000035e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.562500000000000000e-02,5.000000000000000971e-03,1.000000000000000021e-03 +1.562500000000000000e-02,4.500000000000001395e-03,1.000000000000000021e-03 +1.406250000000000035e-02,5.000000000000000971e-03,1.000000000000000021e-03 +1.875000000000000971e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.874999999999999931e-02,9.999999999999995871e-04,0.000000000000000000e+00 +1.875000000000000971e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.718750000000000833e-02,0.000000000000000000e+00,0.000000000000000000e+00 +1.874999999999999931e-02,4.999999999999995767e-04,0.000000000000000000e+00 +1.718750000000000139e-02,9.999999999999998040e-04,0.000000000000000000e+00 +1.875000000000000971e-02,0.000000000000000000e+00,2.500000000000000052e-04 +1.718750000000000833e-02,0.000000000000000000e+00,5.000000000000000104e-04 +1.875000000000000971e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.874999999999999931e-02,9.999999999999995871e-04,1.000000000000000021e-03 +1.875000000000000971e-02,0.000000000000000000e+00,7.500000000000000156e-04 +1.718750000000000833e-02,0.000000000000000000e+00,1.000000000000000021e-03 +1.874999999999999931e-02,4.999999999999995767e-04,1.000000000000000021e-03 +1.718750000000000139e-02,9.999999999999998040e-04,1.000000000000000021e-03 +1.874999999999999931e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.874999999999999931e-02,1.500000000000000031e-03,0.000000000000000000e+00 +1.718750000000000139e-02,2.000000000000000042e-03,0.000000000000000000e+00 +1.874999999999999931e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.874999999999999931e-02,1.500000000000000031e-03,1.000000000000000021e-03 +1.718750000000000139e-02,2.000000000000000042e-03,1.000000000000000021e-03 +1.874999999999999931e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.874999999999999931e-02,2.500000000000000052e-03,0.000000000000000000e+00 +1.718750000000000139e-02,3.000000000000000062e-03,0.000000000000000000e+00 +1.874999999999999931e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.874999999999999931e-02,2.500000000000000052e-03,1.000000000000000021e-03 +1.718750000000000139e-02,3.000000000000000062e-03,1.000000000000000021e-03 +1.874999999999999931e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.874999999999999931e-02,3.500000000000000940e-03,0.000000000000000000e+00 +1.718750000000000139e-02,4.000000000000000951e-03,0.000000000000000000e+00 +1.874999999999999931e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.874999999999999931e-02,3.500000000000000940e-03,1.000000000000000021e-03 +1.718750000000000139e-02,4.000000000000000951e-03,1.000000000000000021e-03 +1.874999999999999931e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.874999999999999931e-02,4.500000000000001395e-03,0.000000000000000000e+00 +1.718749999999999098e-02,5.000000000000000971e-03,0.000000000000000000e+00 +1.874999999999999931e-02,5.000000000000000971e-03,1.000000000000000021e-03 +1.874999999999999931e-02,4.500000000000001395e-03,1.000000000000000021e-03 +1.718749999999999098e-02,5.000000000000000971e-03,1.000000000000000021e-03 +2.187500000000000902e-02,0.000000000000000000e+00,0.000000000000000000e+00 +2.187499999999999861e-02,9.999999999999995871e-04,0.000000000000000000e+00 +2.187500000000000902e-02,0.000000000000000000e+00,5.000000000000000104e-04 +2.031250000000000069e-02,0.000000000000000000e+00,0.000000000000000000e+00 +2.187500000000000902e-02,4.999999999999995767e-04,0.000000000000000000e+00 +2.031250000000000069e-02,9.999999999999995871e-04,0.000000000000000000e+00 +2.187500000000000902e-02,0.000000000000000000e+00,2.500000000000000052e-04 +2.031250000000000069e-02,0.000000000000000000e+00,5.000000000000000104e-04 +2.187500000000000902e-02,0.000000000000000000e+00,1.000000000000000021e-03 +2.187499999999999861e-02,9.999999999999995871e-04,1.000000000000000021e-03 +2.187500000000000902e-02,0.000000000000000000e+00,7.500000000000000156e-04 +2.031250000000000069e-02,0.000000000000000000e+00,1.000000000000000021e-03 +2.187500000000000902e-02,4.999999999999995767e-04,1.000000000000000021e-03 +2.031250000000000069e-02,9.999999999999995871e-04,1.000000000000000021e-03 +2.187499999999999861e-02,2.000000000000000042e-03,0.000000000000000000e+00 +2.187499999999999861e-02,1.500000000000000031e-03,0.000000000000000000e+00 +2.031250000000000069e-02,2.000000000000000042e-03,0.000000000000000000e+00 +2.187499999999999861e-02,2.000000000000000042e-03,1.000000000000000021e-03 +2.187499999999999861e-02,1.500000000000000031e-03,1.000000000000000021e-03 +2.031250000000000069e-02,2.000000000000000042e-03,1.000000000000000021e-03 +2.187499999999999861e-02,3.000000000000000062e-03,0.000000000000000000e+00 +2.187499999999999861e-02,2.500000000000000052e-03,0.000000000000000000e+00 +2.031250000000000069e-02,3.000000000000000062e-03,0.000000000000000000e+00 +2.187499999999999861e-02,3.000000000000000062e-03,1.000000000000000021e-03 +2.187499999999999861e-02,2.500000000000000052e-03,1.000000000000000021e-03 +2.031250000000000069e-02,3.000000000000000062e-03,1.000000000000000021e-03 +2.187499999999999861e-02,4.000000000000000951e-03,0.000000000000000000e+00 +2.187499999999999861e-02,3.500000000000000940e-03,0.000000000000000000e+00 +2.031250000000000069e-02,4.000000000000000951e-03,0.000000000000000000e+00 +2.187499999999999861e-02,4.000000000000000951e-03,1.000000000000000021e-03 +2.187499999999999861e-02,3.500000000000000940e-03,1.000000000000000021e-03 +2.031250000000000069e-02,4.000000000000000951e-03,1.000000000000000021e-03 +2.187499999999999861e-02,5.000000000000000971e-03,0.000000000000000000e+00 +2.187499999999999861e-02,4.500000000000001395e-03,0.000000000000000000e+00 +2.031250000000000069e-02,5.000000000000000971e-03,0.000000000000000000e+00 +2.187499999999999861e-02,5.000000000000000971e-03,1.000000000000000021e-03 +2.187499999999999861e-02,4.500000000000001395e-03,1.000000000000000021e-03 +2.031250000000000069e-02,5.000000000000000971e-03,1.000000000000000021e-03 +2.500000000000000139e-02,0.000000000000000000e+00,0.000000000000000000e+00 +2.500000000000000139e-02,9.999999999999998040e-04,0.000000000000000000e+00 +2.500000000000000139e-02,0.000000000000000000e+00,5.000000000000000104e-04 +2.500000000000000139e-02,9.999999999999998040e-04,5.000000000000000104e-04 +2.343750000000000000e-02,0.000000000000000000e+00,0.000000000000000000e+00 +2.500000000000000139e-02,4.999999999999999020e-04,0.000000000000000000e+00 +2.343750000000000000e-02,9.999999999999995871e-04,0.000000000000000000e+00 +2.500000000000000139e-02,0.000000000000000000e+00,2.500000000000000052e-04 +2.500000000000000139e-02,9.999999999999998040e-04,2.500000000000000052e-04 +2.343750000000000000e-02,0.000000000000000000e+00,5.000000000000000104e-04 +2.500000000000000139e-02,4.999999999999999020e-04,5.000000000000000104e-04 +2.500000000000000139e-02,0.000000000000000000e+00,1.000000000000000021e-03 +2.500000000000000139e-02,9.999999999999998040e-04,1.000000000000000021e-03 +2.500000000000000139e-02,0.000000000000000000e+00,7.500000000000000156e-04 +2.500000000000000139e-02,9.999999999999998040e-04,7.500000000000000156e-04 +2.343750000000000000e-02,0.000000000000000000e+00,1.000000000000000021e-03 +2.500000000000000139e-02,4.999999999999999020e-04,1.000000000000000021e-03 +2.343750000000000000e-02,9.999999999999995871e-04,1.000000000000000021e-03 +2.500000000000000139e-02,2.000000000000000042e-03,0.000000000000000000e+00 +2.500000000000000139e-02,2.000000000000000042e-03,5.000000000000000104e-04 +2.500000000000000139e-02,1.500000000000000031e-03,0.000000000000000000e+00 +2.343750000000000000e-02,2.000000000000000042e-03,0.000000000000000000e+00 +2.500000000000000139e-02,2.000000000000000042e-03,2.500000000000000052e-04 +2.500000000000000139e-02,1.500000000000000031e-03,5.000000000000000104e-04 +2.500000000000000139e-02,2.000000000000000042e-03,1.000000000000000021e-03 +2.500000000000000139e-02,2.000000000000000042e-03,7.500000000000000156e-04 +2.500000000000000139e-02,1.500000000000000031e-03,1.000000000000000021e-03 +2.343750000000000000e-02,2.000000000000000042e-03,1.000000000000000021e-03 +2.500000000000000139e-02,3.000000000000000062e-03,0.000000000000000000e+00 +2.500000000000000139e-02,3.000000000000000062e-03,5.000000000000000104e-04 +2.500000000000000139e-02,2.500000000000000052e-03,0.000000000000000000e+00 +2.343750000000000000e-02,3.000000000000000062e-03,0.000000000000000000e+00 +2.500000000000000139e-02,3.000000000000000062e-03,2.500000000000000052e-04 +2.500000000000000139e-02,2.500000000000000052e-03,5.000000000000000104e-04 +2.500000000000000139e-02,3.000000000000000062e-03,1.000000000000000021e-03 +2.500000000000000139e-02,3.000000000000000062e-03,7.500000000000000156e-04 +2.500000000000000139e-02,2.500000000000000052e-03,1.000000000000000021e-03 +2.343750000000000000e-02,3.000000000000000062e-03,1.000000000000000021e-03 +2.500000000000000139e-02,4.000000000000000951e-03,0.000000000000000000e+00 +2.500000000000000139e-02,4.000000000000000951e-03,5.000000000000000104e-04 +2.500000000000000139e-02,3.500000000000000940e-03,0.000000000000000000e+00 +2.343750000000000000e-02,4.000000000000000951e-03,0.000000000000000000e+00 +2.500000000000000139e-02,4.000000000000000951e-03,2.500000000000000052e-04 +2.500000000000000139e-02,3.500000000000000940e-03,5.000000000000000104e-04 +2.500000000000000139e-02,4.000000000000000951e-03,1.000000000000000021e-03 +2.500000000000000139e-02,4.000000000000000951e-03,7.500000000000000156e-04 +2.500000000000000139e-02,3.500000000000000940e-03,1.000000000000000021e-03 +2.343750000000000000e-02,4.000000000000000951e-03,1.000000000000000021e-03 +2.500000000000000139e-02,5.000000000000000971e-03,0.000000000000000000e+00 +2.500000000000000139e-02,5.000000000000000971e-03,5.000000000000000104e-04 +2.500000000000000139e-02,4.500000000000001395e-03,0.000000000000000000e+00 +2.343750000000000000e-02,5.000000000000000971e-03,0.000000000000000000e+00 +2.500000000000000139e-02,5.000000000000000971e-03,2.500000000000000052e-04 +2.500000000000000139e-02,4.500000000000001395e-03,5.000000000000000104e-04 +2.500000000000000139e-02,5.000000000000000971e-03,1.000000000000000021e-03 +2.500000000000000139e-02,5.000000000000000971e-03,7.500000000000000156e-04 +2.500000000000000139e-02,4.500000000000001395e-03,1.000000000000000021e-03 +2.343750000000000000e-02,5.000000000000000971e-03,1.000000000000000021e-03 +8.255665248897408465e-03,1.657592490073713995e-02,0.000000000000000000e+00 +9.435045998739908027e-03,1.689034274369959066e-02,0.000000000000000000e+00 +9.375000000000001388e-03,1.749999999999974840e-02,0.000000000000000000e+00 +8.203125000000002082e-03,1.750000000000000167e-02,0.000000000000000000e+00 +9.435045998739908027e-03,1.689034274369959066e-02,5.000000000000000104e-04 +9.375000000000001388e-03,1.749999999999974840e-02,5.000000000000000104e-04 +8.845355623818659113e-03,1.673313382221836010e-02,0.000000000000000000e+00 +9.390047729149385292e-03,1.719369643647011836e-02,0.000000000000000000e+00 +8.789062500000001735e-03,1.750000000000000167e-02,0.000000000000000000e+00 +8.229395124448705273e-03,1.703796245036856907e-02,0.000000000000000000e+00 +9.435045998739908027e-03,1.689034274369959066e-02,2.500000000000000052e-04 +9.375000000000001388e-03,1.749999999999974840e-02,2.500000000000000052e-04 +9.390047729149397435e-03,1.719369643647000040e-02,5.000000000000000104e-04 +8.255665248897408465e-03,1.657592490073713995e-02,1.000000000000000021e-03 +9.435045998739908027e-03,1.689034274369959066e-02,1.000000000000000021e-03 +9.375000000000001388e-03,1.749999999999974840e-02,1.000000000000000021e-03 +8.203125000000002082e-03,1.750000000000000167e-02,1.000000000000000021e-03 +9.435045998739908027e-03,1.689034274369959066e-02,7.500000000000000156e-04 +9.375000000000001388e-03,1.749999999999974840e-02,7.500000000000000156e-04 +8.845355623818659113e-03,1.673313382221836010e-02,1.000000000000000021e-03 +9.390047729149385292e-03,1.719369643647011836e-02,1.000000000000000021e-03 +8.789062500000001735e-03,1.750000000000000167e-02,1.000000000000000021e-03 +8.229395124448705273e-03,1.703796245036856907e-02,1.000000000000000021e-03 +7.076284499054925382e-03,1.626150705777468924e-02,0.000000000000000000e+00 +7.031250000000005378e-03,1.750000000000000167e-02,0.000000000000000000e+00 +7.665974873976167357e-03,1.641871597925590939e-02,0.000000000000000000e+00 +7.617187500000004163e-03,1.750000000000000167e-02,0.000000000000000000e+00 +7.053767249527465380e-03,1.688075352888734892e-02,0.000000000000000000e+00 +7.076284499054925382e-03,1.626150705777468924e-02,1.000000000000000021e-03 +7.031250000000005378e-03,1.750000000000000167e-02,1.000000000000000021e-03 +7.665974873976165622e-03,1.641871597925590939e-02,1.000000000000000021e-03 +7.617187500000004163e-03,1.750000000000000167e-02,1.000000000000000021e-03 +7.053767249527465380e-03,1.688075352888734892e-02,1.000000000000000021e-03 +5.896903749212438831e-03,1.594708921481223854e-02,0.000000000000000000e+00 +5.859375000000005204e-03,1.750000000000000167e-02,0.000000000000000000e+00 +6.486594124133681673e-03,1.610429813629346910e-02,0.000000000000000000e+00 +6.445312500000005725e-03,1.750000000000000167e-02,0.000000000000000000e+00 +5.878139374606222017e-03,1.672354460740611837e-02,0.000000000000000000e+00 +5.896903749212438831e-03,1.594708921481223854e-02,1.000000000000000021e-03 +5.859375000000005204e-03,1.750000000000000167e-02,1.000000000000000021e-03 +6.486594124133683407e-03,1.610429813629346910e-02,1.000000000000000021e-03 +6.445312500000005725e-03,1.750000000000000167e-02,1.000000000000000021e-03 +5.878139374606222017e-03,1.672354460740611837e-02,1.000000000000000021e-03 +4.717522999369951411e-03,1.563267137184979130e-02,0.000000000000000000e+00 +4.687500000000005031e-03,1.750000000000000167e-02,0.000000000000000000e+00 +5.307213374291195121e-03,1.578988029333101145e-02,0.000000000000000000e+00 +5.273437500000006418e-03,1.750000000000000167e-02,0.000000000000000000e+00 +4.702511499684978655e-03,1.656633568592489128e-02,0.000000000000000000e+00 +4.717522999369951411e-03,1.563267137184979130e-02,1.000000000000000021e-03 +4.687500000000005031e-03,1.750000000000000167e-02,1.000000000000000021e-03 +5.307213374291195121e-03,1.578988029333101145e-02,1.000000000000000021e-03 +5.273437500000006418e-03,1.750000000000000167e-02,1.000000000000000021e-03 +4.702511499684978655e-03,1.656633568592489128e-02,1.000000000000000021e-03 +3.538142249527464860e-03,1.531825352888734060e-02,0.000000000000000000e+00 +3.515625000000004857e-03,1.750000000000000167e-02,0.000000000000000000e+00 +4.127832624448707702e-03,1.547546245036856075e-02,0.000000000000000000e+00 +4.101562500000005378e-03,1.750000000000000167e-02,0.000000000000000000e+00 +3.526883624763734858e-03,1.640912676444367113e-02,0.000000000000000000e+00 +3.538142249527464860e-03,1.531825352888734060e-02,1.000000000000000021e-03 +3.515625000000004857e-03,1.750000000000000167e-02,1.000000000000000021e-03 +4.127832624448707702e-03,1.547546245036856075e-02,1.000000000000000021e-03 +4.101562500000005378e-03,1.750000000000000167e-02,1.000000000000000021e-03 +3.526883624763734858e-03,1.640912676444367113e-02,1.000000000000000021e-03 +2.358761499684974838e-03,1.500383568592488989e-02,0.000000000000000000e+00 +2.343750000000002082e-03,1.750000000000000167e-02,0.000000000000000000e+00 +2.948451874606219849e-03,1.516104460740612045e-02,0.000000000000000000e+00 +2.929687500000003036e-03,1.750000000000000167e-02,0.000000000000000000e+00 +2.351255749842488026e-03,1.625191784296245098e-02,0.000000000000000000e+00 +2.358761499684974838e-03,1.500383568592488989e-02,1.000000000000000021e-03 +2.343750000000002082e-03,1.750000000000000167e-02,1.000000000000000021e-03 +2.948451874606219849e-03,1.516104460740612045e-02,1.000000000000000021e-03 +2.929687500000003036e-03,1.750000000000000167e-02,1.000000000000000021e-03 +2.351255749842488026e-03,1.625191784296245098e-02,1.000000000000000021e-03 +1.179380749842486985e-03,1.468941784296243919e-02,0.000000000000000000e+00 +1.171875000000001041e-03,1.750000000000000167e-02,0.000000000000000000e+00 +1.769071124763730912e-03,1.484662676444366974e-02,0.000000000000000000e+00 +1.757812500000000911e-03,1.750000000000000167e-02,0.000000000000000000e+00 +1.175627874921244013e-03,1.609470892148122043e-02,0.000000000000000000e+00 +1.179380749842486985e-03,1.468941784296243919e-02,1.000000000000000021e-03 +1.171875000000001041e-03,1.750000000000000167e-02,1.000000000000000021e-03 +1.769071124763730912e-03,1.484662676444366974e-02,1.000000000000000021e-03 +1.757812500000000911e-03,1.750000000000000167e-02,1.000000000000000021e-03 +1.175627874921244013e-03,1.609470892148122043e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.437500000000000062e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.750000000000000167e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.437500000000000062e-02,5.000000000000000104e-04 +0.000000000000000000e+00,1.750000000000000167e-02,5.000000000000000104e-04 +5.896903749212437096e-04,1.453220892148122077e-02,0.000000000000000000e+00 +5.859375000000013878e-04,1.750000000000000167e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.593750000000000028e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.437500000000000062e-02,2.500000000000000052e-04 +0.000000000000000000e+00,1.750000000000000167e-02,2.500000000000000052e-04 +0.000000000000000000e+00,1.593750000000000028e-02,5.000000000000000104e-04 +0.000000000000000000e+00,1.437500000000000062e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.750000000000000167e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.437500000000000062e-02,7.500000000000000156e-04 +0.000000000000000000e+00,1.750000000000000167e-02,7.500000000000000156e-04 +5.896903749212437096e-04,1.453220892148122077e-02,1.000000000000000021e-03 +5.859375000000013878e-04,1.750000000000000167e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.593750000000000028e-02,1.000000000000000021e-03 +8.411266903289436880e-03,1.567234998962668130e-02,0.000000000000000000e+00 +9.612876460902241085e-03,1.630411427385906886e-02,0.000000000000000000e+00 +9.612876460902241085e-03,1.630411427385906886e-02,5.000000000000000104e-04 +9.012071682095839850e-03,1.598823213174287855e-02,0.000000000000000000e+00 +9.509561450836853669e-03,1.659286038357979040e-02,0.000000000000000000e+00 +8.333466076093424407e-03,1.612413744518190889e-02,0.000000000000000000e+00 +9.612876460902241085e-03,1.630411427385906886e-02,2.500000000000000052e-04 +9.509561450836853669e-03,1.659286038357979040e-02,5.000000000000000104e-04 +8.411266903289436880e-03,1.567234998962668130e-02,1.000000000000000021e-03 +9.612876460902241085e-03,1.630411427385906886e-02,1.000000000000000021e-03 +9.612876460902241085e-03,1.630411427385906886e-02,7.500000000000000156e-04 +9.012071682095838115e-03,1.598823213174287855e-02,1.000000000000000021e-03 +9.509561450836853669e-03,1.659286038357979040e-02,1.000000000000000021e-03 +8.333466076093422673e-03,1.612413744518190889e-02,1.000000000000000021e-03 +7.209657345676664768e-03,1.504058570539430068e-02,0.000000000000000000e+00 +7.810462124483051258e-03,1.535646784751048925e-02,0.000000000000000000e+00 +7.142970922365795075e-03,1.565104638158449149e-02,0.000000000000000000e+00 +7.209657345676664768e-03,1.504058570539430068e-02,1.000000000000000021e-03 +7.810462124483051258e-03,1.535646784751048925e-02,1.000000000000000021e-03 +7.142970922365795075e-03,1.565104638158449149e-02,1.000000000000000021e-03 +6.008047788063886584e-03,1.440882142116192005e-02,0.000000000000000000e+00 +6.608852566870275676e-03,1.472470356327811036e-02,0.000000000000000000e+00 +5.952475768638162273e-03,1.517795531798707930e-02,0.000000000000000000e+00 +6.008047788063886584e-03,1.440882142116192005e-02,1.000000000000000021e-03 +6.608852566870275676e-03,1.472470356327811036e-02,1.000000000000000021e-03 +5.952475768638162273e-03,1.517795531798707930e-02,1.000000000000000021e-03 +4.806438230451110134e-03,1.377705713692953075e-02,0.000000000000000000e+00 +5.407243009257498359e-03,1.409293927904571933e-02,0.000000000000000000e+00 +4.761980614910531207e-03,1.470486425438966016e-02,0.000000000000000000e+00 +4.806438230451110134e-03,1.377705713692953075e-02,1.000000000000000021e-03 +5.407243009257498359e-03,1.409293927904571933e-02,1.000000000000000021e-03 +4.761980614910531207e-03,1.470486425438966016e-02,1.000000000000000021e-03 +3.604828672838332818e-03,1.314529285269715013e-02,0.000000000000000000e+00 +4.205633451644721910e-03,1.346117499481334044e-02,0.000000000000000000e+00 +3.571485461182898839e-03,1.423177319079223929e-02,0.000000000000000000e+00 +3.604828672838332818e-03,1.314529285269715013e-02,1.000000000000000021e-03 +4.205633451644721910e-03,1.346117499481334044e-02,1.000000000000000021e-03 +3.571485461182898839e-03,1.423177319079223929e-02,1.000000000000000021e-03 +2.403219115225554200e-03,1.251352856846476083e-02,0.000000000000000000e+00 +3.004023894031944159e-03,1.282941071058095982e-02,0.000000000000000000e+00 +2.380990307455265170e-03,1.375868212719483057e-02,0.000000000000000000e+00 +2.403219115225554200e-03,1.251352856846476083e-02,1.000000000000000021e-03 +3.004023894031944159e-03,1.282941071058095982e-02,1.000000000000000021e-03 +2.380990307455265170e-03,1.375868212719483057e-02,1.000000000000000021e-03 +1.201609557612776016e-03,1.188176428423238021e-02,0.000000000000000000e+00 +1.802414336419165975e-03,1.219764642634857052e-02,0.000000000000000000e+00 +1.190495153727631934e-03,1.328559106359740970e-02,0.000000000000000000e+00 +1.201609557612776016e-03,1.188176428423238021e-02,1.000000000000000021e-03 +1.802414336419165975e-03,1.219764642634857052e-02,1.000000000000000021e-03 +1.190495153727631934e-03,1.328559106359740970e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.124999999999999958e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.124999999999999958e-02,5.000000000000000104e-04 +6.008047788063882247e-04,1.156588214211618990e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.281249999999999924e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.124999999999999958e-02,2.500000000000000052e-04 +0.000000000000000000e+00,1.281249999999999924e-02,5.000000000000000104e-04 +0.000000000000000000e+00,1.124999999999999958e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.124999999999999958e-02,7.500000000000000156e-04 +6.008047788063882247e-04,1.156588214211618990e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.281249999999999924e-02,1.000000000000000021e-03 +8.663950278860212822e-03,1.480898764408699990e-02,0.000000000000000000e+00 +9.901657461554570078e-03,1.576384302181371017e-02,0.000000000000000000e+00 +9.901657461554570078e-03,1.576384302181371017e-02,5.000000000000000104e-04 +9.282803870207391450e-03,1.528641533295035070e-02,0.000000000000000000e+00 +9.743996048911407470e-03,1.602688519741872833e-02,0.000000000000000000e+00 +8.537608591074826586e-03,1.524066881685683973e-02,0.000000000000000000e+00 +9.901657461554570078e-03,1.576384302181371017e-02,2.500000000000000052e-04 +9.743996048911407470e-03,1.602688519741872833e-02,5.000000000000000104e-04 +8.663950278860212822e-03,1.480898764408699990e-02,1.000000000000000021e-03 +9.901657461554570078e-03,1.576384302181371017e-02,1.000000000000000021e-03 +9.901657461554570078e-03,1.576384302181371017e-02,7.500000000000000156e-04 +9.282803870207391450e-03,1.528641533295035070e-02,1.000000000000000021e-03 +9.743996048911407470e-03,1.602688519741872833e-02,1.000000000000000021e-03 +8.537608591074824851e-03,1.524066881685683973e-02,1.000000000000000021e-03 +7.426243096165900670e-03,1.385413226636027922e-02,0.000000000000000000e+00 +8.045096687513056746e-03,1.433155995522364043e-02,0.000000000000000000e+00 +7.317950220921282285e-03,1.444735898587728995e-02,0.000000000000000000e+00 +7.426243096165900670e-03,1.385413226636027922e-02,1.000000000000000021e-03 +8.045096687513056746e-03,1.433155995522364043e-02,1.000000000000000021e-03 +7.317950220921283153e-03,1.444735898587728995e-02,1.000000000000000021e-03 +6.188535913471583313e-03,1.289927688863357069e-02,0.000000000000000000e+00 +6.807389504818741992e-03,1.337670457749691975e-02,0.000000000000000000e+00 +6.098291850767735382e-03,1.365404915489774017e-02,0.000000000000000000e+00 +6.188535913471583313e-03,1.289927688863357069e-02,1.000000000000000021e-03 +6.807389504818741992e-03,1.337670457749691975e-02,1.000000000000000021e-03 +6.098291850767735382e-03,1.365404915489774017e-02,1.000000000000000021e-03 +4.950828730777266824e-03,1.194442151090685002e-02,0.000000000000000000e+00 +5.569682322124426370e-03,1.242184919977020949e-02,0.000000000000000000e+00 +4.878633480614187612e-03,1.286073932391819039e-02,0.000000000000000000e+00 +4.950828730777266824e-03,1.194442151090685002e-02,1.000000000000000021e-03 +5.569682322124426370e-03,1.242184919977020949e-02,1.000000000000000021e-03 +4.878633480614187612e-03,1.286073932391819039e-02,1.000000000000000021e-03 +3.713121548082952070e-03,1.098956613318013975e-02,0.000000000000000000e+00 +4.331975139430109013e-03,1.146699382204349055e-02,0.000000000000000000e+00 +3.658975110460642010e-03,1.206742949293864060e-02,0.000000000000000000e+00 +3.713121548082952070e-03,1.098956613318013975e-02,1.000000000000000021e-03 +4.331975139430109013e-03,1.146699382204349055e-02,1.000000000000000021e-03 +3.658975110460642010e-03,1.206742949293864060e-02,1.000000000000000021e-03 +2.475414365388632111e-03,1.003471075545342081e-02,0.000000000000000000e+00 +3.094267956735792090e-03,1.051213844431678028e-02,0.000000000000000000e+00 +2.439316740307092939e-03,1.127411966195909082e-02,0.000000000000000000e+00 +2.475414365388632111e-03,1.003471075545342081e-02,1.000000000000000021e-03 +3.094267956735792090e-03,1.051213844431678028e-02,1.000000000000000021e-03 +2.439316740307092939e-03,1.127411966195909082e-02,1.000000000000000021e-03 +1.237707182694316056e-03,9.079855377726708809e-03,0.000000000000000000e+00 +1.856560774041474083e-03,9.557283066590066545e-03,0.000000000000000000e+00 +1.219658370153546903e-03,1.048080983097953930e-02,0.000000000000000000e+00 +1.237707182694316056e-03,9.079855377726708809e-03,1.000000000000000021e-03 +1.856560774041474083e-03,9.557283066590066545e-03,1.000000000000000021e-03 +1.219658370153546903e-03,1.048080983097953930e-02,1.000000000000000021e-03 +0.000000000000000000e+00,8.124999999999996808e-03,0.000000000000000000e+00 +0.000000000000000000e+00,8.124999999999996808e-03,5.000000000000000104e-04 +6.188535913471578109e-04,8.602427688863352809e-03,0.000000000000000000e+00 +0.000000000000000000e+00,9.687499999999996461e-03,0.000000000000000000e+00 +0.000000000000000000e+00,8.124999999999996808e-03,2.500000000000000052e-04 +0.000000000000000000e+00,9.687499999999996461e-03,5.000000000000000104e-04 +0.000000000000000000e+00,8.124999999999996808e-03,1.000000000000000021e-03 +0.000000000000000000e+00,8.124999999999996808e-03,7.500000000000000156e-04 +6.188535913471578109e-04,8.602427688863352809e-03,1.000000000000000021e-03 +0.000000000000000000e+00,9.687499999999996461e-03,1.000000000000000021e-03 +9.004004895193021621e-03,1.400400489519300004e-02,0.000000000000000000e+00 +1.029029130879208047e-02,1.529029130879199991e-02,0.000000000000000000e+00 +1.029029130879208047e-02,1.529029130879199991e-02,5.000000000000000104e-04 +9.647148101992551045e-03,1.464714810199249997e-02,0.000000000000000000e+00 +1.008434233324147916e-02,1.551752098698857066e-02,0.000000000000000000e+00 +8.833977587026618089e-03,1.440649626964000084e-02,0.000000000000000000e+00 +1.029029130879208047e-02,1.529029130879199991e-02,2.500000000000000052e-04 +1.008434233324147916e-02,1.551752098698857066e-02,5.000000000000000104e-04 +9.004004895193021621e-03,1.400400489519300004e-02,1.000000000000000021e-03 +1.029029130879208047e-02,1.529029130879199991e-02,1.000000000000000021e-03 +1.029029130879208047e-02,1.529029130879199991e-02,7.500000000000000156e-04 +9.647148101992551045e-03,1.464714810199249997e-02,1.000000000000000021e-03 +1.008434233324147916e-02,1.551752098698857066e-02,1.000000000000000021e-03 +8.833977587026618089e-03,1.440649626964000084e-02,1.000000000000000021e-03 +7.717718481594021754e-03,1.271771848159400017e-02,0.000000000000000000e+00 +8.360861688393521687e-03,1.336086168839350011e-02,0.000000000000000000e+00 +7.571980788879960345e-03,1.328592537397713970e-02,0.000000000000000000e+00 +7.717718481594021754e-03,1.271771848159400017e-02,1.000000000000000021e-03 +8.360861688393521687e-03,1.336086168839350011e-02,1.000000000000000021e-03 +7.571980788879961212e-03,1.328592537397713970e-02,1.000000000000000021e-03 +6.431432067995016683e-03,1.143143206799500031e-02,0.000000000000000000e+00 +7.074575274794519218e-03,1.207457527479450024e-02,0.000000000000000000e+00 +6.309983990733300865e-03,1.216535447831428030e-02,0.000000000000000000e+00 +6.431432067995016683e-03,1.143143206799500031e-02,1.000000000000000021e-03 +7.074575274794519218e-03,1.207457527479450024e-02,1.000000000000000021e-03 +6.309983990733299998e-03,1.216535447831428030e-02,1.000000000000000021e-03 +5.145145654396013346e-03,1.014514565439600044e-02,0.000000000000000000e+00 +5.788288861195515014e-03,1.078828886119550037e-02,0.000000000000000000e+00 +5.047987192586639651e-03,1.104478358265142957e-02,0.000000000000000000e+00 +5.145145654396013346e-03,1.014514565439600044e-02,1.000000000000000021e-03 +5.788288861195515014e-03,1.078828886119550037e-02,1.000000000000000021e-03 +5.047987192586639651e-03,1.104478358265142957e-02,1.000000000000000021e-03 +3.858859240797010877e-03,8.858859240796998838e-03,0.000000000000000000e+00 +4.502002447596513413e-03,9.502002447596498771e-03,0.000000000000000000e+00 +3.785990394439981040e-03,9.924212686988568427e-03,0.000000000000000000e+00 +3.858859240797010877e-03,8.858859240796998838e-03,1.000000000000000021e-03 +4.502002447596513413e-03,9.502002447596498771e-03,1.000000000000000021e-03 +3.785990394439981040e-03,9.924212686988568427e-03,1.000000000000000021e-03 +2.572572827198004938e-03,7.572572827197997236e-03,0.000000000000000000e+00 +3.215716033997507908e-03,8.215716033997497170e-03,0.000000000000000000e+00 +2.523993596293318958e-03,8.803641791325710758e-03,0.000000000000000000e+00 +2.572572827198004938e-03,7.572572827197997236e-03,1.000000000000000021e-03 +3.215716033997507908e-03,8.215716033997497170e-03,1.000000000000000021e-03 +2.523993596293318958e-03,8.803641791325710758e-03,1.000000000000000021e-03 +1.286286413599002903e-03,6.286286413598999104e-03,0.000000000000000000e+00 +1.929429620398503921e-03,6.929429620398498170e-03,0.000000000000000000e+00 +1.261996798146659046e-03,7.683070895662853957e-03,0.000000000000000000e+00 +1.286286413599002903e-03,6.286286413598999104e-03,1.000000000000000021e-03 +1.929429620398503921e-03,6.929429620398498170e-03,1.000000000000000021e-03 +1.261996798146659046e-03,7.683070895662853957e-03,1.000000000000000021e-03 +6.431432067995016683e-04,5.643143206799500038e-03,0.000000000000000000e+00 +0.000000000000000000e+00,6.562499999999998890e-03,0.000000000000000000e+00 +0.000000000000000000e+00,6.562499999999998890e-03,5.000000000000000104e-04 +6.431432067995016683e-04,5.643143206799500038e-03,1.000000000000000021e-03 +0.000000000000000000e+00,6.562499999999998890e-03,1.000000000000000021e-03 +9.808987644087016275e-03,1.366395027886019992e-02,0.000000000000000000e+00 +1.076384302181379940e-02,1.490165746155451033e-02,0.000000000000000000e+00 +1.076384302181379940e-02,1.490165746155451033e-02,5.000000000000000104e-04 +1.028641533295041044e-02,1.428280387020735079e-02,0.000000000000000000e+00 +1.051752098698865989e-02,1.508434233324141074e-02,0.000000000000000000e+00 +9.406496269640018948e-03,1.383397758702659998e-02,0.000000000000000000e+00 +1.076384302181379940e-02,1.490165746155451033e-02,2.500000000000000052e-04 +1.051752098698865989e-02,1.508434233324141074e-02,5.000000000000000104e-04 +9.808987644087016275e-03,1.366395027886019992e-02,1.000000000000000021e-03 +1.076384302181379940e-02,1.490165746155451033e-02,1.000000000000000021e-03 +1.076384302181379940e-02,1.490165746155451033e-02,7.500000000000000156e-04 +1.028641533295041044e-02,1.428280387020735079e-02,1.000000000000000021e-03 +1.051752098698865989e-02,1.508434233324141074e-02,1.000000000000000021e-03 +9.406496269640018948e-03,1.383397758702659998e-02,1.000000000000000021e-03 +8.854132266360302539e-03,1.242624309616588082e-02,0.000000000000000000e+00 +9.331559955223658540e-03,1.304509668751304037e-02,0.000000000000000000e+00 +8.285925373977161279e-03,1.257198078887994050e-02,0.000000000000000000e+00 +8.854132266360302539e-03,1.242624309616588082e-02,1.000000000000000021e-03 +9.331559955223660274e-03,1.304509668751304037e-02,1.000000000000000021e-03 +8.285925373977161279e-03,1.257198078887994050e-02,1.000000000000000021e-03 +7.899276888633583599e-03,1.118853591347157041e-02,0.000000000000000000e+00 +8.376704577496941334e-03,1.180738950481871954e-02,0.000000000000000000e+00 +7.165354478314300141e-03,1.130998399073327929e-02,0.000000000000000000e+00 +7.899276888633583599e-03,1.118853591347157041e-02,1.000000000000000021e-03 +8.376704577496943069e-03,1.180738950481871954e-02,1.000000000000000021e-03 +7.165354478314300141e-03,1.130998399073327929e-02,1.000000000000000021e-03 +6.944421510906867261e-03,9.950828730777253051e-03,0.000000000000000000e+00 +7.421849199770224996e-03,1.056968232212441086e-02,0.000000000000000000e+00 +6.044783582651440737e-03,1.004798719258663021e-02,0.000000000000000000e+00 +6.944421510906867261e-03,9.950828730777253051e-03,1.000000000000000021e-03 +7.421849199770225863e-03,1.056968232212441086e-02,1.000000000000000021e-03 +6.044783582651440737e-03,1.004798719258663021e-02,1.000000000000000021e-03 +5.989566133180148320e-03,8.713121548082939163e-03,0.000000000000000000e+00 +6.466993822043507791e-03,9.331975139430095240e-03,0.000000000000000000e+00 +4.924212686988579599e-03,8.785990394439969001e-03,0.000000000000000000e+00 +5.989566133180148320e-03,8.713121548082939163e-03,1.000000000000000021e-03 +6.466993822043507791e-03,9.331975139430095240e-03,1.000000000000000021e-03 +4.924212686988579599e-03,8.785990394439969001e-03,1.000000000000000021e-03 +5.034710755453430248e-03,7.475414365388624409e-03,0.000000000000000000e+00 +5.512138444316789718e-03,8.094267956735781352e-03,0.000000000000000000e+00 +3.803641791325718027e-03,7.523993596293310389e-03,0.000000000000000000e+00 +5.034710755453430248e-03,7.475414365388624409e-03,1.000000000000000021e-03 +5.512138444316789718e-03,8.094267956735781352e-03,1.000000000000000021e-03 +3.803641791325718027e-03,7.523993596293310389e-03,1.000000000000000021e-03 +4.079855377726713042e-03,6.237707182694313124e-03,0.000000000000000000e+00 +4.557283066590071645e-03,6.856560774041468333e-03,0.000000000000000000e+00 +2.683070895662858189e-03,6.261996798146656114e-03,0.000000000000000000e+00 +4.079855377726713042e-03,6.237707182694313124e-03,1.000000000000000021e-03 +4.557283066590071645e-03,6.856560774041468333e-03,1.000000000000000021e-03 +2.683070895662858189e-03,6.261996798146656114e-03,1.000000000000000021e-03 +3.602427688863354006e-03,5.618853591347157048e-03,0.000000000000000000e+00 +3.602427688863354006e-03,5.618853591347157048e-03,1.000000000000000021e-03 +1.067234998962669941e-02,1.341126690328942050e-02,0.000000000000000000e+00 +1.130411427385917024e-02,1.461287646090220042e-02,0.000000000000000000e+00 +1.130411427385917024e-02,1.461287646090220042e-02,5.000000000000000104e-04 +1.098823213174294003e-02,1.401207168209580960e-02,0.000000000000000000e+00 +1.102688519741882971e-02,1.474399604891135987e-02,0.000000000000000000e+00 +1.024066881685685958e-02,1.353760859107481021e-02,0.000000000000000000e+00 +1.130411427385917024e-02,1.461287646090220042e-02,2.500000000000000052e-04 +1.102688519741882971e-02,1.474399604891135987e-02,5.000000000000000104e-04 +1.067234998962669941e-02,1.341126690328942050e-02,1.000000000000000021e-03 +1.130411427385917024e-02,1.461287646090220042e-02,1.000000000000000021e-03 +1.130411427385917024e-02,1.461287646090220042e-02,7.500000000000000156e-04 +1.098823213174294003e-02,1.401207168209580960e-02,1.000000000000000021e-03 +1.102688519741882971e-02,1.474399604891135987e-02,1.000000000000000021e-03 +1.024066881685685958e-02,1.353760859107481021e-02,1.000000000000000021e-03 +1.004058570539432052e-02,1.220965734567664926e-02,0.000000000000000000e+00 +1.035646784751051083e-02,1.281046212448304009e-02,0.000000000000000000e+00 +9.447358985877309795e-03,1.231795022092127025e-02,0.000000000000000000e+00 +1.004058570539432052e-02,1.220965734567664926e-02,1.000000000000000021e-03 +1.035646784751051083e-02,1.281046212448304009e-02,1.000000000000000021e-03 +9.447358985877309795e-03,1.231795022092127025e-02,1.000000000000000021e-03 +9.408821421161929488e-03,1.100804778806386934e-02,0.000000000000000000e+00 +9.724703563278123269e-03,1.160885256687026017e-02,0.000000000000000000e+00 +8.654049154897756543e-03,1.109829185076771987e-02,0.000000000000000000e+00 +9.408821421161929488e-03,1.100804778806386934e-02,1.000000000000000021e-03 +9.724703563278123269e-03,1.160885256687026017e-02,1.000000000000000021e-03 +8.654049154897756543e-03,1.109829185076771987e-02,1.000000000000000021e-03 +8.777057136929543660e-03,9.806438230451096361e-03,0.000000000000000000e+00 +9.092939279045735707e-03,1.040724300925748025e-02,0.000000000000000000e+00 +7.860739323918205027e-03,9.878633480614174706e-03,0.000000000000000000e+00 +8.777057136929543660e-03,9.806438230451096361e-03,1.000000000000000021e-03 +9.092939279045735707e-03,1.040724300925748025e-02,1.000000000000000021e-03 +7.860739323918205027e-03,9.878633480614174706e-03,1.000000000000000021e-03 +8.145292852697157832e-03,8.604828672838321646e-03,0.000000000000000000e+00 +8.461174994813349878e-03,9.205633451644709003e-03,0.000000000000000000e+00 +7.067429492938652642e-03,8.658975110460629537e-03,0.000000000000000000e+00 +8.145292852697157832e-03,8.604828672838321646e-03,1.000000000000000021e-03 +8.461174994813351613e-03,9.205633451644709003e-03,1.000000000000000021e-03 +7.067429492938654377e-03,8.658975110460629537e-03,1.000000000000000021e-03 +7.513528568464769401e-03,7.403219115225545197e-03,0.000000000000000000e+00 +7.829410710580964050e-03,8.004023894031934289e-03,0.000000000000000000e+00 +6.274119661959100258e-03,7.439316740307084369e-03,0.000000000000000000e+00 +7.513528568464769401e-03,7.403219115225545197e-03,1.000000000000000021e-03 +7.829410710580964050e-03,8.004023894031934289e-03,1.000000000000000021e-03 +6.274119661959100258e-03,7.439316740307084369e-03,1.000000000000000021e-03 +6.881764284232383573e-03,6.201609557612773084e-03,0.000000000000000000e+00 +7.197646426348575620e-03,6.802414336419159574e-03,0.000000000000000000e+00 +5.480809830979547874e-03,6.219658370153542670e-03,0.000000000000000000e+00 +6.881764284232383573e-03,6.201609557612773084e-03,1.000000000000000021e-03 +7.197646426348575620e-03,6.802414336419159574e-03,1.000000000000000021e-03 +5.480809830979548741e-03,6.219658370153542670e-03,1.000000000000000021e-03 +6.565882142116189792e-03,5.600804778806386594e-03,0.000000000000000000e+00 +6.565882142116189792e-03,5.600804778806386594e-03,1.000000000000000021e-03 +1.157592490073714939e-02,1.325566524889740076e-02,0.000000000000000000e+00 +1.189034274369969030e-02,1.443504599873988992e-02,0.000000000000000000e+00 +1.189034274369969030e-02,1.443504599873988992e-02,5.000000000000000104e-04 +1.173313382221841984e-02,1.384535562381864968e-02,0.000000000000000000e+00 +1.159286038357989004e-02,1.450956145083681995e-02,0.000000000000000000e+00 +1.112413744518193047e-02,1.333346607609340977e-02,0.000000000000000000e+00 +1.189034274369969030e-02,1.443504599873988992e-02,2.500000000000000052e-04 +1.159286038357989004e-02,1.450956145083681995e-02,5.000000000000000104e-04 +1.157592490073714939e-02,1.325566524889740076e-02,1.000000000000000021e-03 +1.189034274369969030e-02,1.443504599873988992e-02,1.000000000000000021e-03 +1.189034274369969030e-02,1.443504599873988992e-02,7.500000000000000156e-04 +1.173313382221841984e-02,1.384535562381864968e-02,1.000000000000000021e-03 +1.159286038357989004e-02,1.450956145083681995e-02,1.000000000000000021e-03 +1.112413744518193047e-02,1.333346607609340977e-02,1.000000000000000021e-03 +1.126150705777470042e-02,1.207628449905492028e-02,0.000000000000000000e+00 +1.141871597925592056e-02,1.266597487397616052e-02,0.000000000000000000e+00 +1.065104638158450960e-02,1.214297092236578043e-02,0.000000000000000000e+00 +1.126150705777470042e-02,1.207628449905492028e-02,1.000000000000000021e-03 +1.141871597925592056e-02,1.266597487397616052e-02,1.000000000000000021e-03 +1.065104638158450960e-02,1.214297092236578043e-02,1.000000000000000021e-03 +1.094708921481224971e-02,1.089690374921242939e-02,0.000000000000000000e+00 +1.110429813629346986e-02,1.148659412413366963e-02,0.000000000000000000e+00 +1.017795531798709047e-02,1.095247576863814937e-02,0.000000000000000000e+00 +1.094708921481224971e-02,1.089690374921242939e-02,1.000000000000000021e-03 +1.110429813629346986e-02,1.148659412413366963e-02,1.000000000000000021e-03 +1.017795531798709047e-02,1.095247576863814937e-02,1.000000000000000021e-03 +1.063267137184980074e-02,9.717522999369941974e-03,0.000000000000000000e+00 +1.078988029333101915e-02,1.030721337429118048e-02,0.000000000000000000e+00 +9.704864254389669598e-03,9.761980614910518300e-03,0.000000000000000000e+00 +1.063267137184980074e-02,9.717522999369941974e-03,1.000000000000000021e-03 +1.078988029333101915e-02,1.030721337429118048e-02,1.000000000000000021e-03 +9.704864254389669598e-03,9.761980614910518300e-03,1.000000000000000021e-03 +1.031825352888733963e-02,8.538142249527454555e-03,0.000000000000000000e+00 +1.047546245036857018e-02,9.127832624448698265e-03,0.000000000000000000e+00 +9.231773190792250464e-03,8.571485461182887233e-03,0.000000000000000000e+00 +1.031825352888733963e-02,8.538142249527454555e-03,1.000000000000000021e-03 +1.047546245036857018e-02,9.127832624448698265e-03,1.000000000000000021e-03 +9.231773190792252198e-03,8.571485461182887233e-03,1.000000000000000021e-03 +1.000383568592489933e-02,7.358761499684967136e-03,0.000000000000000000e+00 +1.016104460740611948e-02,7.948451874606210846e-03,0.000000000000000000e+00 +8.758682127194831329e-03,7.380990307455256166e-03,0.000000000000000000e+00 +1.000383568592489933e-02,7.358761499684967136e-03,1.000000000000000021e-03 +1.016104460740611948e-02,7.948451874606210846e-03,1.000000000000000021e-03 +8.758682127194833064e-03,7.380990307455256166e-03,1.000000000000000021e-03 +9.689417842962446889e-03,6.179380749842484054e-03,0.000000000000000000e+00 +9.846626764443670507e-03,6.769071124763726029e-03,0.000000000000000000e+00 +8.285591063597415665e-03,6.190495153727628569e-03,0.000000000000000000e+00 +9.689417842962446889e-03,6.179380749842484054e-03,1.000000000000000021e-03 +9.846626764443672242e-03,6.769071124763725161e-03,1.000000000000000021e-03 +8.285591063597415665e-03,6.190495153727628569e-03,1.000000000000000021e-03 +9.532208921481221536e-03,5.589690374921242946e-03,0.000000000000000000e+00 +9.532208921481221536e-03,5.589690374921242946e-03,1.000000000000000021e-03 +1.250000000000000069e-02,1.320312499999999958e-02,0.000000000000000000e+00 +1.250000000000010998e-02,1.437500000000000062e-02,0.000000000000000000e+00 +1.250000000000010998e-02,1.437500000000000062e-02,5.000000000000000104e-04 +1.250000000000000069e-02,1.378906249999999924e-02,0.000000000000000000e+00 +1.219369643647023015e-02,1.439004772914937932e-02,0.000000000000000000e+00 +1.203796245036856984e-02,1.322939512444869931e-02,0.000000000000000000e+00 +1.250000000000010998e-02,1.437500000000000062e-02,2.500000000000000052e-04 +1.219369643647023015e-02,1.439004772914937932e-02,5.000000000000000104e-04 +1.250000000000000069e-02,1.320312499999999958e-02,1.000000000000000021e-03 +1.250000000000010998e-02,1.437500000000000062e-02,1.000000000000000021e-03 +1.250000000000010998e-02,1.437500000000000062e-02,7.500000000000000156e-04 +1.250000000000000069e-02,1.378906249999999924e-02,1.000000000000000021e-03 +1.219369643647023015e-02,1.439004772914937932e-02,1.000000000000000021e-03 +1.203796245036856984e-02,1.322939512444869931e-02,1.000000000000000021e-03 +1.250000000000000069e-02,1.203125000000000028e-02,0.000000000000000000e+00 +1.250000000000000069e-02,1.261718749999999993e-02,0.000000000000000000e+00 +1.188075352888734969e-02,1.205376724952745941e-02,0.000000000000000000e+00 +1.250000000000000069e-02,1.203125000000000028e-02,1.000000000000000021e-03 +1.250000000000000069e-02,1.261718749999999993e-02,1.000000000000000021e-03 +1.188075352888734969e-02,1.205376724952745941e-02,1.000000000000000021e-03 +1.250000000000000069e-02,1.085937499999999924e-02,0.000000000000000000e+00 +1.250000000000000069e-02,1.144531250000000062e-02,0.000000000000000000e+00 +1.172354460740612087e-02,1.087813937460621085e-02,0.000000000000000000e+00 +1.250000000000000069e-02,1.085937499999999924e-02,1.000000000000000021e-03 +1.250000000000000069e-02,1.144531250000000062e-02,1.000000000000000021e-03 +1.172354460740612087e-02,1.087813937460621085e-02,1.000000000000000021e-03 +1.250000000000000069e-02,9.687499999999998196e-03,0.000000000000000000e+00 +1.250000000000000069e-02,1.027343749999999958e-02,0.000000000000000000e+00 +1.156633568592490072e-02,9.702511499684969218e-03,0.000000000000000000e+00 +1.250000000000000069e-02,9.687499999999998196e-03,1.000000000000000021e-03 +1.250000000000000069e-02,1.027343749999999958e-02,1.000000000000000021e-03 +1.156633568592490072e-02,9.702511499684969218e-03,1.000000000000000021e-03 +1.250000000000000069e-02,8.515624999999997155e-03,0.000000000000000000e+00 +1.250000000000000069e-02,9.101562499999996808e-03,0.000000000000000000e+00 +1.140912676444367016e-02,8.526883624763725855e-03,0.000000000000000000e+00 +1.250000000000000069e-02,8.515624999999997155e-03,1.000000000000000021e-03 +1.250000000000000069e-02,9.101562499999996808e-03,1.000000000000000021e-03 +1.140912676444367016e-02,8.526883624763725855e-03,1.000000000000000021e-03 +1.250000000000000069e-02,7.343749999999996114e-03,0.000000000000000000e+00 +1.250000000000000069e-02,7.929687499999997502e-03,0.000000000000000000e+00 +1.125191784296245001e-02,7.351255749842481625e-03,0.000000000000000000e+00 +1.250000000000000069e-02,7.343749999999996114e-03,1.000000000000000021e-03 +1.250000000000000069e-02,7.929687499999997502e-03,1.000000000000000021e-03 +1.125191784296245001e-02,7.351255749842481625e-03,1.000000000000000021e-03 +1.250000000000000069e-02,6.171874999999999410e-03,0.000000000000000000e+00 +1.250000000000000069e-02,6.757812499999997329e-03,0.000000000000000000e+00 +1.109470892148121945e-02,6.175627874921240865e-03,0.000000000000000000e+00 +1.250000000000000069e-02,6.171874999999999410e-03,1.000000000000000021e-03 +1.250000000000000069e-02,6.757812499999997329e-03,1.000000000000000021e-03 +1.109470892148121945e-02,6.175627874921240865e-03,1.000000000000000021e-03 +1.250000000000000069e-02,5.585937499999999757e-03,0.000000000000000000e+00 +1.250000000000000069e-02,5.585937499999999757e-03,1.000000000000000021e-03 +1.342407509926294047e-02,1.325566524889744066e-02,0.000000000000000000e+00 +1.310965725630050017e-02,1.443504599873991941e-02,0.000000000000000000e+00 +1.310965725630050017e-02,1.443504599873991941e-02,5.000000000000000104e-04 +1.326686617778172032e-02,1.384535562381867917e-02,0.000000000000000000e+00 +1.280630356352997941e-02,1.439004772914940014e-02,0.000000000000000000e+00 +1.296203754963146972e-02,1.322939512444872012e-02,0.000000000000000000e+00 +1.310965725630050017e-02,1.443504599873991941e-02,2.500000000000000052e-04 +1.280630356352997941e-02,1.439004772914940014e-02,5.000000000000000104e-04 +1.342407509926294047e-02,1.325566524889744066e-02,1.000000000000000021e-03 +1.310965725630050017e-02,1.443504599873991941e-02,1.000000000000000021e-03 +1.310965725630050017e-02,1.443504599873991941e-02,7.500000000000000156e-04 +1.326686617778172032e-02,1.384535562381867917e-02,1.000000000000000021e-03 +1.280630356352997941e-02,1.439004772914940014e-02,1.000000000000000021e-03 +1.296203754963146972e-02,1.322939512444872012e-02,1.000000000000000021e-03 +1.373849294222537036e-02,1.207628449905493936e-02,0.000000000000000000e+00 +1.358128402074415021e-02,1.266597487397619001e-02,0.000000000000000000e+00 +1.311924647111268986e-02,1.205376724952746982e-02,0.000000000000000000e+00 +1.373849294222537036e-02,1.207628449905493936e-02,1.000000000000000021e-03 +1.358128402074415021e-02,1.266597487397619001e-02,1.000000000000000021e-03 +1.311924647111268986e-02,1.205376724952746982e-02,1.000000000000000021e-03 +1.405291078518781066e-02,1.089690374921245021e-02,0.000000000000000000e+00 +1.389570186370659051e-02,1.148659412413370086e-02,0.000000000000000000e+00 +1.327645539259389960e-02,1.087813937460621952e-02,0.000000000000000000e+00 +1.405291078518781066e-02,1.089690374921245021e-02,1.000000000000000021e-03 +1.389570186370659051e-02,1.148659412413370086e-02,1.000000000000000021e-03 +1.327645539259389960e-02,1.087813937460621952e-02,1.000000000000000021e-03 +1.436732862815024922e-02,9.717522999369959322e-03,0.000000000000000000e+00 +1.421011970666903081e-02,1.030721337429119956e-02,0.000000000000000000e+00 +1.343366431407511975e-02,9.702511499684977891e-03,0.000000000000000000e+00 +1.436732862815024922e-02,9.717522999369959322e-03,1.000000000000000021e-03 +1.421011970666903081e-02,1.030721337429119956e-02,1.000000000000000021e-03 +1.343366431407511975e-02,9.702511499684977891e-03,1.000000000000000021e-03 +1.468174647111268952e-02,8.538142249527468433e-03,0.000000000000000000e+00 +1.452453754963146937e-02,9.127832624448713877e-03,0.000000000000000000e+00 +1.359087323555633990e-02,8.526883624763732794e-03,0.000000000000000000e+00 +1.468174647111268952e-02,8.538142249527468433e-03,1.000000000000000021e-03 +1.452453754963146937e-02,9.127832624448713877e-03,1.000000000000000021e-03 +1.359087323555633990e-02,8.526883624763732794e-03,1.000000000000000021e-03 +1.499616431407511941e-02,7.358761499684976677e-03,0.000000000000000000e+00 +1.483895539259389926e-02,7.948451874606222989e-03,0.000000000000000000e+00 +1.374808215703756005e-02,7.351255749842485962e-03,0.000000000000000000e+00 +1.499616431407511941e-02,7.358761499684976677e-03,1.000000000000000021e-03 +1.483895539259389926e-02,7.948451874606222989e-03,1.000000000000000021e-03 +1.374808215703756005e-02,7.351255749842485962e-03,1.000000000000000021e-03 +1.531058215703755970e-02,6.179380749842489258e-03,0.000000000000000000e+00 +1.515337323555633955e-02,6.769071124763732968e-03,0.000000000000000000e+00 +1.390529107851878020e-02,6.175627874921244334e-03,0.000000000000000000e+00 +1.531058215703755970e-02,6.179380749842489258e-03,1.000000000000000021e-03 +1.515337323555633955e-02,6.769071124763732968e-03,1.000000000000000021e-03 +1.390529107851878020e-02,6.175627874921244334e-03,1.000000000000000021e-03 +1.546779107851877985e-02,5.589690374921244681e-03,0.000000000000000000e+00 +1.546779107851877985e-02,5.589690374921244681e-03,1.000000000000000021e-03 +1.432765001037335922e-02,1.341126690328947949e-02,0.000000000000000000e+00 +1.369588572614098033e-02,1.461287646090225940e-02,0.000000000000000000e+00 +1.369588572614098033e-02,1.461287646090225940e-02,5.000000000000000104e-04 +1.401176786825717065e-02,1.401207168209587031e-02,0.000000000000000000e+00 +1.340713961642027961e-02,1.450956145083688066e-02,0.000000000000000000e+00 +1.387586255481815072e-02,1.333346607609346007e-02,0.000000000000000000e+00 +1.369588572614098033e-02,1.461287646090225940e-02,2.500000000000000052e-04 +1.340713961642027961e-02,1.450956145083688066e-02,5.000000000000000104e-04 +1.432765001037335922e-02,1.341126690328947949e-02,1.000000000000000021e-03 +1.369588572614098033e-02,1.461287646090225940e-02,1.000000000000000021e-03 +1.369588572614098033e-02,1.461287646090225940e-02,7.500000000000000156e-04 +1.401176786825717065e-02,1.401207168209587031e-02,1.000000000000000021e-03 +1.340713961642027961e-02,1.450956145083688066e-02,1.000000000000000021e-03 +1.387586255481815072e-02,1.333346607609346007e-02,1.000000000000000021e-03 +1.495941429460573985e-02,1.220965734567669957e-02,0.000000000000000000e+00 +1.464353215248954954e-02,1.281046212448309039e-02,0.000000000000000000e+00 +1.434895361841555944e-02,1.214297092236582033e-02,0.000000000000000000e+00 +1.495941429460573985e-02,1.220965734567669957e-02,1.000000000000000021e-03 +1.464353215248954954e-02,1.281046212448309039e-02,1.000000000000000021e-03 +1.434895361841555944e-02,1.214297092236582033e-02,1.000000000000000021e-03 +1.559117857883812047e-02,1.100804778806390924e-02,0.000000000000000000e+00 +1.527529643672193016e-02,1.160885256687030007e-02,0.000000000000000000e+00 +1.482204468201295949e-02,1.095247576863818059e-02,0.000000000000000000e+00 +1.559117857883812047e-02,1.100804778806390924e-02,1.000000000000000021e-03 +1.527529643672193016e-02,1.160885256687030007e-02,1.000000000000000021e-03 +1.482204468201295949e-02,1.095247576863818059e-02,1.000000000000000021e-03 +1.622294286307049069e-02,9.806438230451127586e-03,0.000000000000000000e+00 +1.590706072095430038e-02,1.040724300925752015e-02,0.000000000000000000e+00 +1.529513574561036995e-02,9.761980614910544321e-03,0.000000000000000000e+00 +1.622294286307049069e-02,9.806438230451127586e-03,1.000000000000000021e-03 +1.590706072095430038e-02,1.040724300925752015e-02,1.000000000000000021e-03 +1.529513574561036995e-02,9.761980614910542586e-03,1.000000000000000021e-03 +1.685470714730287131e-02,8.604828672838344197e-03,0.000000000000000000e+00 +1.653882500518668100e-02,9.205633451644736759e-03,0.000000000000000000e+00 +1.576822680920778041e-02,8.571485461182906315e-03,0.000000000000000000e+00 +1.685470714730287131e-02,8.604828672838344197e-03,1.000000000000000021e-03 +1.653882500518668100e-02,9.205633451644736759e-03,1.000000000000000021e-03 +1.576822680920778041e-02,8.571485461182906315e-03,1.000000000000000021e-03 +1.748647143153524847e-02,7.403219115225561676e-03,0.000000000000000000e+00 +1.717058928941906162e-02,8.004023894031951636e-03,0.000000000000000000e+00 +1.624131787280518047e-02,7.380990307455269177e-03,0.000000000000000000e+00 +1.748647143153524847e-02,7.403219115225561676e-03,1.000000000000000021e-03 +1.717058928941906162e-02,8.004023894031953371e-03,1.000000000000000021e-03 +1.624131787280519088e-02,7.380990307455269177e-03,1.000000000000000021e-03 +1.811823571576761868e-02,6.201609557612782625e-03,0.000000000000000000e+00 +1.780235357365143878e-02,6.802414336419171717e-03,0.000000000000000000e+00 +1.671440893640259093e-02,6.190495153727636375e-03,0.000000000000000000e+00 +1.811823571576761868e-02,6.201609557612782625e-03,1.000000000000000021e-03 +1.780235357365143878e-02,6.802414336419171717e-03,1.000000000000000021e-03 +1.671440893640259093e-02,6.190495153727636375e-03,1.000000000000000021e-03 +1.843411785788380899e-02,5.600804778806391798e-03,0.000000000000000000e+00 +1.843411785788380899e-02,5.600804778806391798e-03,1.000000000000000021e-03 +1.519101235591303022e-02,1.366395027886026063e-02,0.000000000000000000e+00 +1.423615697818631995e-02,1.490165746155459013e-02,0.000000000000000000e+00 +1.423615697818631995e-02,1.490165746155459013e-02,5.000000000000000104e-04 +1.471358466704967075e-02,1.428280387020743059e-02,0.000000000000000000e+00 +1.397311480258131046e-02,1.474399604891142926e-02,0.000000000000000000e+00 +1.475933118314319038e-02,1.353760859107486919e-02,0.000000000000000000e+00 +1.423615697818631995e-02,1.490165746155459013e-02,2.500000000000000052e-04 +1.397311480258131046e-02,1.474399604891142926e-02,5.000000000000000104e-04 +1.519101235591303022e-02,1.366395027886026063e-02,1.000000000000000021e-03 +1.423615697818631995e-02,1.490165746155459013e-02,1.000000000000000021e-03 +1.423615697818631995e-02,1.490165746155459013e-02,7.500000000000000156e-04 +1.471358466704967075e-02,1.428280387020743059e-02,1.000000000000000021e-03 +1.397311480258131046e-02,1.474399604891142926e-02,1.000000000000000021e-03 +1.475933118314319038e-02,1.353760859107486919e-02,1.000000000000000021e-03 +1.614586773363974048e-02,1.242624309616593981e-02,0.000000000000000000e+00 +1.566844004477637928e-02,1.304509668751309935e-02,0.000000000000000000e+00 +1.555264101412274017e-02,1.231795022092132055e-02,0.000000000000000000e+00 +1.614586773363974048e-02,1.242624309616593981e-02,1.000000000000000021e-03 +1.566844004477637928e-02,1.304509668751309935e-02,1.000000000000000021e-03 +1.555264101412274017e-02,1.231795022092132055e-02,1.000000000000000021e-03 +1.710072311136644901e-02,1.118853591347162071e-02,0.000000000000000000e+00 +1.662329542250309128e-02,1.180738950481878026e-02,0.000000000000000000e+00 +1.634595084510228127e-02,1.109829185076775977e-02,0.000000000000000000e+00 +1.710072311136644901e-02,1.118853591347162071e-02,1.000000000000000021e-03 +1.662329542250309128e-02,1.180738950481878026e-02,1.000000000000000021e-03 +1.634595084510228127e-02,1.109829185076775977e-02,1.000000000000000021e-03 +1.805557848909316102e-02,9.950828730777291214e-03,0.000000000000000000e+00 +1.757815080022979981e-02,1.056968232212445076e-02,0.000000000000000000e+00 +1.713926067608182932e-02,9.878633480614209400e-03,0.000000000000000000e+00 +1.805557848909316102e-02,9.950828730777291214e-03,1.000000000000000021e-03 +1.757815080022979981e-02,1.056968232212445076e-02,1.000000000000000021e-03 +1.713926067608182932e-02,9.878633480614209400e-03,1.000000000000000021e-03 +1.901043386681986955e-02,8.713121548082965184e-03,0.000000000000000000e+00 +1.853300617795650834e-02,9.331975139430128199e-03,0.000000000000000000e+00 +1.793257050706137043e-02,8.658975110460653823e-03,0.000000000000000000e+00 +1.901043386681986955e-02,8.713121548082965184e-03,1.000000000000000021e-03 +1.853300617795651875e-02,9.331975139430128199e-03,1.000000000000000021e-03 +1.793257050706137043e-02,8.658975110460653823e-03,1.000000000000000021e-03 +1.996528924454658155e-02,7.475414365388642624e-03,0.000000000000000000e+00 +1.948786155568322034e-02,8.094267956735803904e-03,0.000000000000000000e+00 +1.872588033804091154e-02,7.439316740307101716e-03,0.000000000000000000e+00 +1.996528924454658155e-02,7.475414365388642624e-03,1.000000000000000021e-03 +1.948786155568322034e-02,8.094267956735803904e-03,1.000000000000000021e-03 +1.872588033804091848e-02,7.439316740307101716e-03,1.000000000000000021e-03 +2.092014462227329008e-02,6.237707182694321797e-03,0.000000000000000000e+00 +2.044271693340992888e-02,6.856560774041482210e-03,0.000000000000000000e+00 +1.951919016902044918e-02,6.219658370153552211e-03,0.000000000000000000e+00 +2.092014462227329008e-02,6.237707182694321797e-03,1.000000000000000021e-03 +2.044271693340992888e-02,6.856560774041482210e-03,1.000000000000000021e-03 +1.951919016902045959e-02,6.219658370153552211e-03,1.000000000000000021e-03 +2.139757231113664088e-02,5.618853591347161384e-03,0.000000000000000000e+00 +2.139757231113664088e-02,5.618853591347161384e-03,1.000000000000000021e-03 +1.599599510480699885e-02,1.400400489519306943e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.529029130879207971e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.529029130879207971e-02,5.000000000000000104e-04 +1.535285189800750065e-02,1.464714810199256936e-02,0.000000000000000000e+00 +1.448247901301144037e-02,1.508434233324149054e-02,0.000000000000000000e+00 +1.559350373036001020e-02,1.383397758702666937e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.529029130879207971e-02,2.500000000000000052e-04 +1.448247901301144037e-02,1.508434233324149054e-02,5.000000000000000104e-04 +1.599599510480699885e-02,1.400400489519306943e-02,1.000000000000000021e-03 +1.470970869120800072e-02,1.529029130879207971e-02,1.000000000000000021e-03 +1.470970869120800072e-02,1.529029130879207971e-02,7.500000000000000156e-04 +1.535285189800750065e-02,1.464714810199256936e-02,1.000000000000000021e-03 +1.448247901301144037e-02,1.508434233324149054e-02,1.000000000000000021e-03 +1.559350373036002060e-02,1.383397758702666937e-02,1.000000000000000021e-03 +1.728228151840599872e-02,1.271771848159405915e-02,0.000000000000000000e+00 +1.663913831160649878e-02,1.336086168839356082e-02,0.000000000000000000e+00 +1.671407462602287133e-02,1.257198078887999948e-02,0.000000000000000000e+00 +1.728228151840599872e-02,1.271771848159405915e-02,1.000000000000000021e-03 +1.663913831160649878e-02,1.336086168839356082e-02,1.000000000000000021e-03 +1.671407462602287133e-02,1.257198078887999948e-02,1.000000000000000021e-03 +1.856856793200500899e-02,1.143143206799505061e-02,0.000000000000000000e+00 +1.792542472520549865e-02,1.207457527479455055e-02,0.000000000000000000e+00 +1.783464552168572900e-02,1.130998399073332959e-02,0.000000000000000000e+00 +1.856856793200500899e-02,1.143143206799505061e-02,1.000000000000000021e-03 +1.792542472520549865e-02,1.207457527479455055e-02,1.000000000000000021e-03 +1.783464552168572900e-02,1.130998399073332959e-02,1.000000000000000021e-03 +1.985485434560400886e-02,1.014514565439604034e-02,0.000000000000000000e+00 +1.921171113880450892e-02,1.078828886119554027e-02,0.000000000000000000e+00 +1.895521641734857973e-02,1.004798719258665970e-02,0.000000000000000000e+00 +1.985485434560400886e-02,1.014514565439604034e-02,1.000000000000000021e-03 +1.921171113880450892e-02,1.078828886119554027e-02,1.000000000000000021e-03 +1.895521641734857973e-02,1.004798719258665970e-02,1.000000000000000021e-03 +2.114114075920300873e-02,8.858859240797024859e-03,0.000000000000000000e+00 +2.049799755240350879e-02,9.502002447596531731e-03,0.000000000000000000e+00 +2.007578731301144087e-02,8.785990394439995022e-03,0.000000000000000000e+00 +2.114114075920300873e-02,8.858859240797024859e-03,1.000000000000000021e-03 +2.049799755240350879e-02,9.502002447596531731e-03,1.000000000000000021e-03 +2.007578731301144087e-02,8.785990394439995022e-03,1.000000000000000021e-03 +2.242742717280200859e-02,7.572572827198014583e-03,0.000000000000000000e+00 +2.178428396600250866e-02,8.215716033997519721e-03,0.000000000000000000e+00 +2.119635820867429160e-02,7.523993596293328603e-03,0.000000000000000000e+00 +2.242742717280200859e-02,7.572572827198014583e-03,1.000000000000000021e-03 +2.178428396600250866e-02,8.215716033997519721e-03,1.000000000000000021e-03 +2.119635820867429160e-02,7.523993596293328603e-03,1.000000000000000021e-03 +2.371371358640100152e-02,6.286286413599010379e-03,0.000000000000000000e+00 +2.307057037960150853e-02,6.929429620398512048e-03,0.000000000000000000e+00 +2.231692910433714927e-02,6.261996798146665655e-03,0.000000000000000000e+00 +2.371371358640100152e-02,6.286286413599010379e-03,1.000000000000000021e-03 +2.307057037960150853e-02,6.929429620398512048e-03,1.000000000000000021e-03 +2.231692910433713886e-02,6.261996798146665655e-03,1.000000000000000021e-03 +2.435685679320050145e-02,5.643143206799505242e-03,0.000000000000000000e+00 +2.435685679320050145e-02,5.643143206799505242e-03,1.000000000000000021e-03 +1.633604972113978857e-02,1.480898764408706061e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.576384302181377955e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.576384302181377955e-02,5.000000000000000104e-04 +1.571719612979263075e-02,1.528641533295042008e-02,0.000000000000000000e+00 +1.491565766675857947e-02,1.551752098698865046e-02,0.000000000000000000e+00 +1.616602241297340065e-02,1.440649626964005982e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.576384302181377955e-02,2.500000000000000052e-04 +1.491565766675857947e-02,1.551752098698865046e-02,5.000000000000000104e-04 +1.633604972113978857e-02,1.480898764408706061e-02,1.000000000000000021e-03 +1.509834253844547988e-02,1.576384302181377955e-02,1.000000000000000021e-03 +1.509834253844547988e-02,1.576384302181377955e-02,7.500000000000000156e-04 +1.571719612979263075e-02,1.528641533295042008e-02,1.000000000000000021e-03 +1.491565766675857947e-02,1.551752098698865046e-02,1.000000000000000021e-03 +1.616602241297340065e-02,1.440649626964005982e-02,1.000000000000000021e-03 +1.757375690383411113e-02,1.385413226636033994e-02,0.000000000000000000e+00 +1.695490331248694985e-02,1.433155995522369941e-02,0.000000000000000000e+00 +1.742801921112005145e-02,1.328592537397720041e-02,0.000000000000000000e+00 +1.757375690383411113e-02,1.385413226636033994e-02,1.000000000000000021e-03 +1.695490331248694985e-02,1.433155995522369941e-02,1.000000000000000021e-03 +1.742801921112005145e-02,1.328592537397720041e-02,1.000000000000000021e-03 +1.881146408652843022e-02,1.289927688863361059e-02,0.000000000000000000e+00 +1.819261049518126894e-02,1.337670457749697006e-02,0.000000000000000000e+00 +1.869001600926671960e-02,1.216535447831433060e-02,0.000000000000000000e+00 +1.881146408652843022e-02,1.289927688863361059e-02,1.000000000000000021e-03 +1.819261049518126894e-02,1.337670457749697006e-02,1.000000000000000021e-03 +1.869001600926671960e-02,1.216535447831433060e-02,1.000000000000000021e-03 +2.004917126922273890e-02,1.194442151090688992e-02,0.000000000000000000e+00 +1.943031767787558109e-02,1.242184919977024939e-02,0.000000000000000000e+00 +1.995201280741337041e-02,1.104478358265146079e-02,0.000000000000000000e+00 +2.004917126922273890e-02,1.194442151090688992e-02,1.000000000000000021e-03 +1.943031767787558109e-02,1.242184919977024939e-02,1.000000000000000021e-03 +1.995201280741337041e-02,1.104478358265146079e-02,1.000000000000000021e-03 +2.128687845191706146e-02,1.098956613318016924e-02,0.000000000000000000e+00 +2.066802486056990018e-02,1.146699382204353045e-02,0.000000000000000000e+00 +2.121400960556003162e-02,9.924212686988596183e-03,0.000000000000000000e+00 +2.128687845191706146e-02,1.098956613318016924e-02,1.000000000000000021e-03 +2.066802486056990018e-02,1.146699382204353045e-02,1.000000000000000021e-03 +2.121400960556003162e-02,9.924212686988596183e-03,1.000000000000000021e-03 +2.252458563461138055e-02,1.003471075545345030e-02,0.000000000000000000e+00 +2.190573204326421927e-02,1.051213844431680977e-02,0.000000000000000000e+00 +2.247600640370668937e-02,8.803641791325731575e-03,0.000000000000000000e+00 +2.252458563461138055e-02,1.003471075545345030e-02,1.000000000000000021e-03 +2.190573204326421927e-02,1.051213844431680977e-02,1.000000000000000021e-03 +2.247600640370668937e-02,8.803641791325731575e-03,1.000000000000000021e-03 +2.376229281730568924e-02,9.079855377726727891e-03,0.000000000000000000e+00 +2.314343922595853142e-02,9.557283066590087361e-03,0.000000000000000000e+00 +2.373800320185335058e-02,7.683070895662868702e-03,0.000000000000000000e+00 +2.376229281730568924e-02,9.079855377726727891e-03,1.000000000000000021e-03 +2.314343922595853142e-02,9.557283066590087361e-03,1.000000000000000021e-03 +2.373800320185334017e-02,7.683070895662868702e-03,1.000000000000000021e-03 +2.500000000000000139e-02,8.125000000000007216e-03,0.000000000000000000e+00 +2.500000000000000139e-02,8.125000000000007216e-03,5.000000000000000104e-04 +2.438114640865284011e-02,8.602427688863368421e-03,0.000000000000000000e+00 +2.500000000000000139e-02,6.562500000000004094e-03,0.000000000000000000e+00 +2.500000000000000139e-02,8.125000000000007216e-03,2.500000000000000052e-04 +2.500000000000000139e-02,6.562500000000004094e-03,5.000000000000000104e-04 +2.500000000000000139e-02,8.125000000000007216e-03,1.000000000000000021e-03 +2.500000000000000139e-02,8.125000000000007216e-03,7.500000000000000156e-04 +2.438114640865284011e-02,8.602427688863368421e-03,1.000000000000000021e-03 +2.500000000000000139e-02,6.562500000000004094e-03,1.000000000000000021e-03 +1.658873309671056104e-02,1.567234998962672987e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.630411427385912090e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.630411427385912090e-02,5.000000000000000104e-04 +1.598792831790417021e-02,1.598823213174293059e-02,0.000000000000000000e+00 +1.525600395108863035e-02,1.602688519741879078e-02,0.000000000000000000e+00 +1.646239140892517827e-02,1.524066881685690045e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.630411427385912090e-02,2.500000000000000052e-04 +1.525600395108863035e-02,1.602688519741879078e-02,5.000000000000000104e-04 +1.658873309671056104e-02,1.567234998962672987e-02,1.000000000000000021e-03 +1.538712353909777938e-02,1.630411427385912090e-02,1.000000000000000021e-03 +1.538712353909777938e-02,1.630411427385912090e-02,7.500000000000000156e-04 +1.598792831790417021e-02,1.598823213174293059e-02,1.000000000000000021e-03 +1.525600395108863035e-02,1.602688519741879078e-02,1.000000000000000021e-03 +1.646239140892517827e-02,1.524066881685690045e-02,1.000000000000000021e-03 +1.779034265432333922e-02,1.504058570539434057e-02,0.000000000000000000e+00 +1.718953787551694840e-02,1.535646784751053956e-02,0.000000000000000000e+00 +1.768204977907871997e-02,1.444735898587734026e-02,0.000000000000000000e+00 +1.779034265432333922e-02,1.504058570539434057e-02,1.000000000000000021e-03 +1.718953787551694840e-02,1.535646784751053956e-02,1.000000000000000021e-03 +1.768204977907871997e-02,1.444735898587734026e-02,1.000000000000000021e-03 +1.899195221193612088e-02,1.440882142116194954e-02,0.000000000000000000e+00 +1.839114743312973005e-02,1.472470356327815026e-02,0.000000000000000000e+00 +1.890170814923226861e-02,1.365404915489778007e-02,0.000000000000000000e+00 +1.899195221193612088e-02,1.440882142116194954e-02,1.000000000000000021e-03 +1.839114743312973005e-02,1.472470356327815026e-02,1.000000000000000021e-03 +1.890170814923226861e-02,1.365404915489778007e-02,1.000000000000000021e-03 +2.019356176954889906e-02,1.377705713692956024e-02,0.000000000000000000e+00 +1.959275699074251170e-02,1.409293927904575923e-02,0.000000000000000000e+00 +2.012136651938582071e-02,1.286073932391823028e-02,0.000000000000000000e+00 +2.019356176954889906e-02,1.377705713692956024e-02,1.000000000000000021e-03 +1.959275699074250129e-02,1.409293927904575923e-02,1.000000000000000021e-03 +2.012136651938582071e-02,1.286073932391823028e-02,1.000000000000000021e-03 +2.139517132716167030e-02,1.314529285269716921e-02,0.000000000000000000e+00 +2.079436654835528989e-02,1.346117499481336993e-02,0.000000000000000000e+00 +2.134102488953936935e-02,1.206742949293867009e-02,0.000000000000000000e+00 +2.139517132716167030e-02,1.314529285269716921e-02,1.000000000000000021e-03 +2.079436654835528989e-02,1.346117499481336993e-02,1.000000000000000021e-03 +2.134102488953936935e-02,1.206742949293867009e-02,1.000000000000000021e-03 +2.259678088477444849e-02,1.251352856846477991e-02,0.000000000000000000e+00 +2.199597610596806113e-02,1.282941071058098063e-02,0.000000000000000000e+00 +2.256068325969291105e-02,1.127411966195912031e-02,0.000000000000000000e+00 +2.259678088477444849e-02,1.251352856846477991e-02,1.000000000000000021e-03 +2.199597610596806113e-02,1.282941071058098063e-02,1.000000000000000021e-03 +2.256068325969291105e-02,1.127411966195912031e-02,1.000000000000000021e-03 +2.379839044238723014e-02,1.188176428423239062e-02,0.000000000000000000e+00 +2.319758566358083932e-02,1.219764642634858960e-02,0.000000000000000000e+00 +2.378034162984645969e-02,1.048080983097956012e-02,0.000000000000000000e+00 +2.379839044238723014e-02,1.188176428423239062e-02,1.000000000000000021e-03 +2.319758566358083932e-02,1.219764642634858960e-02,1.000000000000000021e-03 +2.378034162984645969e-02,1.048080983097956012e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.125000000000000999e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.125000000000000999e-02,5.000000000000000104e-04 +2.439919522119361056e-02,1.156588214211620030e-02,0.000000000000000000e+00 +2.500000000000000139e-02,9.687500000000006870e-03,0.000000000000000000e+00 +2.500000000000000139e-02,1.125000000000000999e-02,2.500000000000000052e-04 +2.500000000000000139e-02,9.687500000000006870e-03,5.000000000000000104e-04 +2.500000000000000139e-02,1.125000000000000999e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.125000000000000999e-02,7.500000000000000156e-04 +2.439919522119361056e-02,1.156588214211620030e-02,1.000000000000000021e-03 +2.500000000000000139e-02,9.687500000000006870e-03,1.000000000000000021e-03 +1.674433475110258945e-02,1.657592490073716077e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.689034274369961147e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.689034274369961147e-02,5.000000000000000104e-04 +1.615464437618133881e-02,1.673313382221839132e-02,0.000000000000000000e+00 +1.549043854916315986e-02,1.659286038357982856e-02,0.000000000000000000e+00 +1.666653392390657004e-02,1.612413744518195052e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.689034274369961147e-02,2.500000000000000052e-04 +1.549043854916315986e-02,1.659286038357982163e-02,5.000000000000000104e-04 +1.674433475110258945e-02,1.657592490073716077e-02,1.000000000000000021e-03 +1.556495400126010030e-02,1.689034274369961147e-02,1.000000000000000021e-03 +1.556495400126010030e-02,1.689034274369961147e-02,7.500000000000000156e-04 +1.615464437618133881e-02,1.673313382221839132e-02,1.000000000000000021e-03 +1.549043854916315986e-02,1.659286038357982856e-02,1.000000000000000021e-03 +1.666653392390657004e-02,1.612413744518195052e-02,1.000000000000000021e-03 +1.792371550094508034e-02,1.626150705777471006e-02,0.000000000000000000e+00 +1.733402512602382969e-02,1.641871597925594062e-02,0.000000000000000000e+00 +1.785702907763421152e-02,1.565104638158452965e-02,0.000000000000000000e+00 +1.792371550094508034e-02,1.626150705777471006e-02,1.000000000000000021e-03 +1.733402512602382969e-02,1.641871597925594062e-02,1.000000000000000021e-03 +1.785702907763421152e-02,1.565104638158452965e-02,1.000000000000000021e-03 +1.910309625078756082e-02,1.594708921481225936e-02,0.000000000000000000e+00 +1.851340587586632058e-02,1.610429813629348991e-02,0.000000000000000000e+00 +1.904752423136183911e-02,1.517795531798711052e-02,0.000000000000000000e+00 +1.910309625078756082e-02,1.594708921481225936e-02,1.000000000000000021e-03 +1.851340587586632058e-02,1.610429813629348991e-02,1.000000000000000021e-03 +1.904752423136183911e-02,1.517795531798711052e-02,1.000000000000000021e-03 +2.028247700063005865e-02,1.563267137184980865e-02,0.000000000000000000e+00 +1.969278662570881147e-02,1.578988029333103921e-02,0.000000000000000000e+00 +2.023801938508947018e-02,1.470486425438968965e-02,0.000000000000000000e+00 +2.028247700063005865e-02,1.563267137184980865e-02,1.000000000000000021e-03 +1.969278662570881147e-02,1.578988029333102880e-02,1.000000000000000021e-03 +2.023801938508948059e-02,1.470486425438968965e-02,1.000000000000000021e-03 +2.146185775047253913e-02,1.531825352888735968e-02,0.000000000000000000e+00 +2.087216737555129889e-02,1.547546245036859024e-02,0.000000000000000000e+00 +2.142851453881711166e-02,1.423177319079227052e-02,0.000000000000000000e+00 +2.146185775047253913e-02,1.531825352888735968e-02,1.000000000000000021e-03 +2.087216737555129889e-02,1.547546245036857983e-02,1.000000000000000021e-03 +2.142851453881711166e-02,1.423177319079227052e-02,1.000000000000000021e-03 +2.264123850031503002e-02,1.500383568592491071e-02,0.000000000000000000e+00 +2.205154812539378978e-02,1.516104460740613086e-02,0.000000000000000000e+00 +2.261900969254473925e-02,1.375868212719483924e-02,0.000000000000000000e+00 +2.264123850031503002e-02,1.500383568592491071e-02,1.000000000000000021e-03 +2.205154812539378978e-02,1.516104460740613086e-02,1.000000000000000021e-03 +2.261900969254473925e-02,1.375868212719483924e-02,1.000000000000000021e-03 +2.382061925015751050e-02,1.468941784296246000e-02,0.000000000000000000e+00 +2.323092887523627026e-02,1.484662676444368015e-02,0.000000000000000000e+00 +2.380950484627237032e-02,1.328559106359743051e-02,0.000000000000000000e+00 +2.382061925015751050e-02,1.468941784296246000e-02,1.000000000000000021e-03 +2.323092887523627026e-02,1.484662676444368015e-02,1.000000000000000021e-03 +2.380950484627237032e-02,1.328559106359743051e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.437500000000000930e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.437500000000000930e-02,5.000000000000000104e-04 +2.441030962507876115e-02,1.453220892148122945e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.281250000000000965e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.437500000000000930e-02,2.500000000000000052e-04 +2.500000000000000139e-02,1.281250000000000965e-02,5.000000000000000104e-04 +2.500000000000000139e-02,1.437500000000000930e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.437500000000000930e-02,7.500000000000000156e-04 +2.441030962507876115e-02,1.453220892148122945e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.281250000000000965e-02,1.000000000000000021e-03 +1.679687499999999931e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.562500000000000000e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.562500000000000000e-02,1.750000000000000167e-02,5.000000000000000104e-04 +1.621093750000000139e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.560995227085061957e-02,1.719369643647012877e-02,0.000000000000000000e+00 +1.677060487555128918e-02,1.703796245036857948e-02,0.000000000000000000e+00 +1.562500000000000000e-02,1.750000000000000167e-02,2.500000000000000052e-04 +1.560995227085061957e-02,1.719369643647012877e-02,5.000000000000000104e-04 +1.679687499999999931e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.562500000000000000e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.562500000000000000e-02,1.750000000000000167e-02,7.500000000000000156e-04 +1.621093750000000139e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.560995227085061957e-02,1.719369643647012877e-02,1.000000000000000021e-03 +1.677060487555128918e-02,1.703796245036857948e-02,1.000000000000000021e-03 +1.796874999999999861e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.738281250000000069e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.794623275047254121e-02,1.688075352888735933e-02,0.000000000000000000e+00 +1.796874999999999861e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.738281250000000069e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.794623275047254121e-02,1.688075352888735933e-02,1.000000000000000021e-03 +1.914062500000000139e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.855468750000000000e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.912186062539377937e-02,1.672354460740612878e-02,0.000000000000000000e+00 +1.914062500000000139e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.855468750000000000e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.912186062539377937e-02,1.672354460740612878e-02,1.000000000000000021e-03 +2.031250000000000069e-02,1.750000000000000167e-02,0.000000000000000000e+00 +1.972656249999999931e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.029748850031503141e-02,1.656633568592490863e-02,0.000000000000000000e+00 +2.031250000000000069e-02,1.750000000000000167e-02,1.000000000000000021e-03 +1.972656249999999931e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.029748850031503141e-02,1.656633568592490863e-02,1.000000000000000021e-03 +2.148437500000001041e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.089843750000000902e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.147311637523626957e-02,1.640912676444368154e-02,0.000000000000000000e+00 +2.148437500000001041e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.089843750000000902e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.147311637523626957e-02,1.640912676444368154e-02,1.000000000000000021e-03 +2.265625000000000971e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.207031250000000139e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.264874425015752160e-02,1.625191784296245098e-02,0.000000000000000000e+00 +2.265625000000000971e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.207031250000000139e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.264874425015752160e-02,1.625191784296245098e-02,1.000000000000000021e-03 +2.382812499999999861e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.324218750000000069e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.382437212507875976e-02,1.609470892148123083e-02,0.000000000000000000e+00 +2.382812499999999861e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.324218750000000069e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.382437212507875976e-02,1.609470892148123083e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.750000000000000167e-02,5.000000000000000104e-04 +2.441406250000000000e-02,1.750000000000000167e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.593750000000000028e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.750000000000000167e-02,2.500000000000000052e-04 +2.500000000000000139e-02,1.593750000000000028e-02,5.000000000000000104e-04 +2.500000000000000139e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.750000000000000167e-02,7.500000000000000156e-04 +2.441406250000000000e-02,1.750000000000000167e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.593750000000000028e-02,1.000000000000000021e-03 +9.435045998739908027e-03,1.810965725630041961e-02,0.000000000000000000e+00 +8.255665248897422343e-03,1.842407509926285991e-02,0.000000000000000000e+00 +9.435045998739908027e-03,1.810965725630041961e-02,5.000000000000000104e-04 +9.390047729149385292e-03,1.780630356352988150e-02,0.000000000000000000e+00 +8.845355623818666052e-03,1.826686617778163976e-02,0.000000000000000000e+00 +8.229395124448712212e-03,1.796203754963143079e-02,0.000000000000000000e+00 +9.435045998739908027e-03,1.810965725630041961e-02,2.500000000000000052e-04 +9.390047729149373149e-03,1.780630356352976007e-02,5.000000000000000104e-04 +9.435045998739908027e-03,1.810965725630041961e-02,1.000000000000000021e-03 +8.255665248897422343e-03,1.842407509926285991e-02,1.000000000000000021e-03 +9.435045998739908027e-03,1.810965725630041961e-02,7.500000000000000156e-04 +9.390047729149385292e-03,1.780630356352988150e-02,1.000000000000000021e-03 +8.845355623818666052e-03,1.826686617778163976e-02,1.000000000000000021e-03 +8.229395124448712212e-03,1.796203754963143079e-02,1.000000000000000021e-03 +7.076284499054936658e-03,1.873849294222531062e-02,0.000000000000000000e+00 +7.665974873976178633e-03,1.858128402074409047e-02,0.000000000000000000e+00 +7.053767249527470584e-03,1.811924647111265094e-02,0.000000000000000000e+00 +7.076284499054936658e-03,1.873849294222531062e-02,1.000000000000000021e-03 +7.665974873976180368e-03,1.858128402074409047e-02,1.000000000000000021e-03 +7.053767249527470584e-03,1.811924647111265094e-02,1.000000000000000021e-03 +5.896903749212448372e-03,1.905291078518776132e-02,0.000000000000000000e+00 +6.486594124133692081e-03,1.889570186370653077e-02,0.000000000000000000e+00 +5.878139374606226354e-03,1.827645539259388149e-02,0.000000000000000000e+00 +5.896903749212448372e-03,1.905291078518776132e-02,1.000000000000000021e-03 +6.486594124133692081e-03,1.889570186370653077e-02,1.000000000000000021e-03 +5.878139374606226354e-03,1.827645539259388149e-02,1.000000000000000021e-03 +4.717522999369959218e-03,1.936732862815020856e-02,0.000000000000000000e+00 +5.307213374291203795e-03,1.921011970666898147e-02,0.000000000000000000e+00 +4.702511499684982124e-03,1.843366431407510858e-02,0.000000000000000000e+00 +4.717522999369959218e-03,1.936732862815020856e-02,1.000000000000000021e-03 +5.307213374291203795e-03,1.921011970666898147e-02,1.000000000000000021e-03 +4.702511499684982124e-03,1.843366431407510858e-02,1.000000000000000021e-03 +3.538142249527470931e-03,1.968174647111265926e-02,0.000000000000000000e+00 +4.127832624448714641e-03,1.952453754963142871e-02,0.000000000000000000e+00 +3.526883624763737894e-03,1.859087323555632873e-02,0.000000000000000000e+00 +3.538142249527470931e-03,1.968174647111265926e-02,1.000000000000000021e-03 +4.127832624448714641e-03,1.952453754963142871e-02,1.000000000000000021e-03 +3.526883624763737894e-03,1.859087323555632873e-02,1.000000000000000021e-03 +2.358761499684979175e-03,1.999616431407509956e-02,0.000000000000000000e+00 +2.948451874606225053e-03,1.983895539259387941e-02,0.000000000000000000e+00 +2.351255749842491062e-03,1.874808215703754888e-02,0.000000000000000000e+00 +2.358761499684979175e-03,1.999616431407509956e-02,1.000000000000000021e-03 +2.948451874606225053e-03,1.983895539259387941e-02,1.000000000000000021e-03 +2.351255749842491062e-03,1.874808215703754888e-02,1.000000000000000021e-03 +1.179380749842488937e-03,2.031058215703755027e-02,0.000000000000000000e+00 +1.769071124763735032e-03,2.015337323555633012e-02,0.000000000000000000e+00 +1.175627874921245097e-03,1.890529107851877944e-02,0.000000000000000000e+00 +1.179380749842488937e-03,2.031058215703755027e-02,1.000000000000000021e-03 +1.769071124763735032e-03,2.015337323555633012e-02,1.000000000000000021e-03 +1.175627874921245097e-03,1.890529107851877944e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.062500000000000097e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.062500000000000097e-02,5.000000000000000104e-04 +5.896903749212445769e-04,2.046779107851877041e-02,0.000000000000000000e+00 +0.000000000000000000e+00,1.906249999999999958e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.062500000000000097e-02,2.500000000000000052e-04 +0.000000000000000000e+00,1.906249999999999958e-02,5.000000000000000104e-04 +0.000000000000000000e+00,2.062500000000000097e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.062500000000000097e-02,7.500000000000000156e-04 +5.896903749212445769e-04,2.046779107851877041e-02,1.000000000000000021e-03 +0.000000000000000000e+00,1.906249999999999958e-02,1.000000000000000021e-03 +9.612876460902239351e-03,1.869588572614093100e-02,0.000000000000000000e+00 +8.411266903289461166e-03,1.932765001037331856e-02,0.000000000000000000e+00 +9.612876460902239351e-03,1.869588572614093100e-02,5.000000000000000104e-04 +9.509561450836853669e-03,1.840713961642021987e-02,0.000000000000000000e+00 +9.012071682095851993e-03,1.901176786825712131e-02,0.000000000000000000e+00 +8.333466076093441754e-03,1.887586255481809097e-02,0.000000000000000000e+00 +9.612876460902241085e-03,1.869588572614093100e-02,2.500000000000000052e-04 +9.509561450836853669e-03,1.840713961642021987e-02,5.000000000000000104e-04 +9.612876460902239351e-03,1.869588572614093100e-02,1.000000000000000021e-03 +8.411266903289461166e-03,1.932765001037331856e-02,1.000000000000000021e-03 +9.612876460902241085e-03,1.869588572614093100e-02,7.500000000000000156e-04 +9.509561450836853669e-03,1.840713961642021987e-02,1.000000000000000021e-03 +9.012071682095851993e-03,1.901176786825712131e-02,1.000000000000000021e-03 +8.333466076093441754e-03,1.887586255481809097e-02,1.000000000000000021e-03 +7.209657345676685584e-03,1.995941429460569919e-02,0.000000000000000000e+00 +7.810462124483073809e-03,1.964353215248950887e-02,0.000000000000000000e+00 +7.142970922365810688e-03,1.934895361841550143e-02,0.000000000000000000e+00 +7.209657345676685584e-03,1.995941429460569919e-02,1.000000000000000021e-03 +7.810462124483073809e-03,1.964353215248950887e-02,1.000000000000000021e-03 +7.142970922365812422e-03,1.934895361841550143e-02,1.000000000000000021e-03 +6.008047788063904798e-03,2.059117857883807981e-02,0.000000000000000000e+00 +6.608852566870295625e-03,2.027529643672188950e-02,0.000000000000000000e+00 +5.952475768638176151e-03,1.982204468201291883e-02,0.000000000000000000e+00 +6.008047788063904798e-03,2.059117857883807981e-02,1.000000000000000021e-03 +6.608852566870295625e-03,2.027529643672188950e-02,1.000000000000000021e-03 +5.952475768638176151e-03,1.982204468201291883e-02,1.000000000000000021e-03 +4.806438230451124879e-03,2.122294286307046043e-02,0.000000000000000000e+00 +5.407243009257514839e-03,2.090706072095427012e-02,0.000000000000000000e+00 +4.761980614910541615e-03,2.029513574561033970e-02,0.000000000000000000e+00 +4.806438230451124879e-03,2.122294286307046043e-02,1.000000000000000021e-03 +5.407243009257514839e-03,2.090706072095427012e-02,1.000000000000000021e-03 +4.761980614910541615e-03,2.029513574561033970e-02,1.000000000000000021e-03 +3.604828672838344961e-03,2.185470714730284106e-02,0.000000000000000000e+00 +4.205633451644734920e-03,2.153882500518665075e-02,0.000000000000000000e+00 +3.571485461182907946e-03,2.076822680920775016e-02,0.000000000000000000e+00 +3.604828672838344961e-03,2.185470714730284106e-02,1.000000000000000021e-03 +4.205633451644734920e-03,2.153882500518665075e-02,1.000000000000000021e-03 +3.571485461182907946e-03,2.076822680920775016e-02,1.000000000000000021e-03 +2.403219115225562006e-03,2.248647143153522862e-02,0.000000000000000000e+00 +3.004023894031954134e-03,2.217058928941903831e-02,0.000000000000000000e+00 +2.380990307455270807e-03,2.124131787280516062e-02,0.000000000000000000e+00 +2.403219115225562006e-03,2.248647143153522862e-02,1.000000000000000021e-03 +3.004023894031954134e-03,2.217058928941903831e-02,1.000000000000000021e-03 +2.380990307455270807e-03,2.124131787280517103e-02,1.000000000000000021e-03 +1.201609557612779919e-03,2.311823571576760925e-02,0.000000000000000000e+00 +1.802414336419170962e-03,2.280235357365141893e-02,0.000000000000000000e+00 +1.190495153727634970e-03,2.171440893640258149e-02,0.000000000000000000e+00 +1.201609557612779919e-03,2.311823571576760925e-02,1.000000000000000021e-03 +1.802414336419170962e-03,2.280235357365141893e-02,1.000000000000000021e-03 +1.190495153727634970e-03,2.171440893640258149e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.375000000000000028e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.375000000000000028e-02,5.000000000000000104e-04 +6.008047788063899594e-04,2.343411785788380997e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.218749999999999889e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.375000000000000028e-02,2.500000000000000052e-04 +0.000000000000000000e+00,2.218749999999999889e-02,5.000000000000000104e-04 +0.000000000000000000e+00,2.375000000000000028e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.375000000000000028e-02,7.500000000000000156e-04 +6.008047788063899594e-04,2.343411785788380997e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.218749999999999889e-02,1.000000000000000021e-03 +9.901657461554570078e-03,1.923615697818628970e-02,0.000000000000000000e+00 +8.663950278860250986e-03,2.019101235591300864e-02,0.000000000000000000e+00 +9.901657461554570078e-03,1.923615697818628970e-02,5.000000000000000104e-04 +9.743996048911407470e-03,1.897311480258127847e-02,0.000000000000000000e+00 +9.282803870207410532e-03,1.971358466704965090e-02,0.000000000000000000e+00 +8.537608591074856076e-03,1.975933118314315839e-02,0.000000000000000000e+00 +9.901657461554570078e-03,1.923615697818628970e-02,2.500000000000000052e-04 +9.743996048911407470e-03,1.897311480258127847e-02,5.000000000000000104e-04 +9.901657461554570078e-03,1.923615697818628970e-02,1.000000000000000021e-03 +8.663950278860250986e-03,2.019101235591300864e-02,1.000000000000000021e-03 +9.901657461554570078e-03,1.923615697818628970e-02,7.500000000000000156e-04 +9.743996048911407470e-03,1.897311480258127847e-02,1.000000000000000021e-03 +9.282803870207410532e-03,1.971358466704965090e-02,1.000000000000000021e-03 +8.537608591074856076e-03,1.975933118314315839e-02,1.000000000000000021e-03 +7.426243096165933630e-03,2.114586773363972064e-02,0.000000000000000000e+00 +8.045096687513091441e-03,2.066844004477635943e-02,0.000000000000000000e+00 +7.317950220921309173e-03,2.055264101412270991e-02,0.000000000000000000e+00 +7.426243096165933630e-03,2.114586773363972064e-02,1.000000000000000021e-03 +8.045096687513093175e-03,2.066844004477635943e-02,1.000000000000000021e-03 +7.317950220921310041e-03,2.055264101412270991e-02,1.000000000000000021e-03 +6.188535913471611069e-03,2.210072311136642917e-02,0.000000000000000000e+00 +6.807389504818772349e-03,2.162329542250307143e-02,0.000000000000000000e+00 +6.098291850767757934e-03,2.134595084510225102e-02,0.000000000000000000e+00 +6.188535913471611069e-03,2.210072311136642917e-02,1.000000000000000021e-03 +6.807389504818772349e-03,2.162329542250307143e-02,1.000000000000000021e-03 +6.098291850767757934e-03,2.134595084510225102e-02,1.000000000000000021e-03 +4.950828730777290243e-03,2.305557848909314117e-02,0.000000000000000000e+00 +5.569682322124449789e-03,2.257815080022979037e-02,0.000000000000000000e+00 +4.878633480614208429e-03,2.213926067608179907e-02,0.000000000000000000e+00 +4.950828730777290243e-03,2.305557848909314117e-02,1.000000000000000021e-03 +5.569682322124450656e-03,2.257815080022977997e-02,1.000000000000000021e-03 +4.878633480614208429e-03,2.213926067608179907e-02,1.000000000000000021e-03 +3.713121548082968116e-03,2.401043386681984970e-02,0.000000000000000000e+00 +4.331975139430128963e-03,2.353300617795649891e-02,0.000000000000000000e+00 +3.658975110460655888e-03,2.293257050706135058e-02,0.000000000000000000e+00 +3.713121548082968116e-03,2.401043386681984970e-02,1.000000000000000021e-03 +4.331975139430128963e-03,2.353300617795649891e-02,1.000000000000000021e-03 +3.658975110460655888e-03,2.293257050706135058e-02,1.000000000000000021e-03 +2.475414365388645122e-03,2.496528924454656864e-02,0.000000000000000000e+00 +3.094267956735805968e-03,2.448786155568321091e-02,0.000000000000000000e+00 +2.439316740307104214e-03,2.372588033804089863e-02,0.000000000000000000e+00 +2.475414365388645122e-03,2.496528924454656864e-02,1.000000000000000021e-03 +3.094267956735805968e-03,2.448786155568321091e-02,1.000000000000000021e-03 +2.439316740307104214e-03,2.372588033804089863e-02,1.000000000000000021e-03 +1.237707182694321910e-03,2.592014462227328064e-02,0.000000000000000000e+00 +1.856560774041484058e-03,2.544271693340992985e-02,0.000000000000000000e+00 +1.219658370153549939e-03,2.451919016902045015e-02,0.000000000000000000e+00 +1.237707182694321910e-03,2.592014462227328064e-02,1.000000000000000021e-03 +1.856560774041484058e-03,2.544271693340992985e-02,1.000000000000000021e-03 +1.219658370153549939e-03,2.451919016902045015e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.687499999999999958e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.687499999999999958e-02,5.000000000000000104e-04 +6.188535913471612804e-04,2.639757231113663838e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.531249999999999126e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.687499999999999958e-02,2.500000000000000052e-04 +0.000000000000000000e+00,2.531249999999999126e-02,5.000000000000000104e-04 +0.000000000000000000e+00,2.687499999999999958e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.687499999999999958e-02,7.500000000000000156e-04 +6.188535913471612804e-04,2.639757231113663838e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.531249999999999126e-02,1.000000000000000021e-03 +1.029029130879208047e-02,1.970970869120799995e-02,0.000000000000000000e+00 +9.004004895193070193e-03,2.099599510480699982e-02,0.000000000000000000e+00 +1.029029130879208047e-02,1.970970869120799995e-02,5.000000000000000104e-04 +1.008434233324147916e-02,1.948247901301142920e-02,0.000000000000000000e+00 +9.647148101992575331e-03,2.035285189800749989e-02,0.000000000000000000e+00 +8.833977587026659722e-03,2.059350373036000076e-02,0.000000000000000000e+00 +1.029029130879208047e-02,1.970970869120799995e-02,2.500000000000000052e-04 +1.008434233324147916e-02,1.948247901301142920e-02,5.000000000000000104e-04 +1.029029130879208047e-02,1.970970869120799995e-02,1.000000000000000021e-03 +9.004004895193070193e-03,2.099599510480699982e-02,1.000000000000000021e-03 +1.029029130879208047e-02,1.970970869120799995e-02,7.500000000000000156e-04 +1.008434233324147916e-02,1.948247901301142920e-02,1.000000000000000021e-03 +9.647148101992575331e-03,2.035285189800749989e-02,1.000000000000000021e-03 +8.833977587026659722e-03,2.059350373036000076e-02,1.000000000000000021e-03 +7.717718481594063387e-03,2.228228151840599969e-02,0.000000000000000000e+00 +8.360861688393566790e-03,2.163913831160649975e-02,0.000000000000000000e+00 +7.571980788879999376e-03,2.171407462602285149e-02,0.000000000000000000e+00 +7.717718481594063387e-03,2.228228151840599969e-02,1.000000000000000021e-03 +8.360861688393566790e-03,2.163913831160649975e-02,1.000000000000000021e-03 +7.571980788879999376e-03,2.171407462602285843e-02,1.000000000000000021e-03 +6.431432067995054846e-03,2.356856793200499955e-02,0.000000000000000000e+00 +7.074575274794559117e-03,2.292542472520549962e-02,0.000000000000000000e+00 +6.309983990733332090e-03,2.283464552168570916e-02,0.000000000000000000e+00 +6.431432067995054846e-03,2.356856793200499955e-02,1.000000000000000021e-03 +7.074575274794559117e-03,2.292542472520549962e-02,1.000000000000000021e-03 +6.309983990733332958e-03,2.283464552168571957e-02,1.000000000000000021e-03 +5.145145654396044571e-03,2.485485434560399942e-02,0.000000000000000000e+00 +5.788288861195549709e-03,2.421171113880449949e-02,0.000000000000000000e+00 +5.047987192586667407e-03,2.395521641734857030e-02,0.000000000000000000e+00 +5.145145654396044571e-03,2.485485434560399942e-02,1.000000000000000021e-03 +5.788288861195549709e-03,2.421171113880449949e-02,1.000000000000000021e-03 +5.047987192586667407e-03,2.395521641734857030e-02,1.000000000000000021e-03 +3.858859240797033862e-03,2.614114075920299929e-02,0.000000000000000000e+00 +4.502002447596539433e-03,2.549799755240349936e-02,0.000000000000000000e+00 +3.785990394440000989e-03,2.507578731301142103e-02,0.000000000000000000e+00 +3.858859240797033862e-03,2.614114075920299929e-02,1.000000000000000021e-03 +4.502002447596539433e-03,2.549799755240349936e-02,1.000000000000000021e-03 +3.785990394440000989e-03,2.507578731301142103e-02,1.000000000000000021e-03 +2.572572827198021852e-03,2.742742717280199916e-02,0.000000000000000000e+00 +3.215716033997527857e-03,2.678428396600249922e-02,0.000000000000000000e+00 +2.523993596293334137e-03,2.619635820867428910e-02,0.000000000000000000e+00 +2.572572827198021852e-03,2.742742717280199916e-02,1.000000000000000021e-03 +3.215716033997527857e-03,2.678428396600249922e-02,1.000000000000000021e-03 +2.523993596293334137e-03,2.619635820867427869e-02,1.000000000000000021e-03 +1.286286413599008974e-03,2.871371358640099902e-02,0.000000000000000000e+00 +1.929429620398514979e-03,2.807057037960149909e-02,0.000000000000000000e+00 +1.261996798146665984e-03,2.731692910433713983e-02,0.000000000000000000e+00 +1.286286413599008974e-03,2.871371358640099902e-02,1.000000000000000021e-03 +1.929429620398514979e-03,2.807057037960149909e-02,1.000000000000000021e-03 +1.261996798146665984e-03,2.731692910433713983e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.999999999999999889e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.999999999999999889e-02,5.000000000000000104e-04 +6.431432067995051377e-04,2.935685679320049896e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.843750000000000097e-02,0.000000000000000000e+00 +0.000000000000000000e+00,2.999999999999999889e-02,2.500000000000000052e-04 +0.000000000000000000e+00,2.843750000000000097e-02,5.000000000000000104e-04 +0.000000000000000000e+00,2.999999999999999889e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.999999999999999889e-02,7.500000000000000156e-04 +6.431432067995051377e-04,2.935685679320049896e-02,1.000000000000000021e-03 +0.000000000000000000e+00,2.843750000000000097e-02,1.000000000000000021e-03 +1.076384302181379940e-02,2.009834253844549126e-02,0.000000000000000000e+00 +9.808987644087076990e-03,2.133604972113979995e-02,0.000000000000000000e+00 +1.076384302181379940e-02,2.009834253844549126e-02,5.000000000000000104e-04 +1.051752098698865989e-02,1.991565766675858912e-02,0.000000000000000000e+00 +1.028641533295043993e-02,2.071719612979264907e-02,0.000000000000000000e+00 +9.406496269640074459e-03,2.116602241297340162e-02,0.000000000000000000e+00 +1.076384302181379940e-02,2.009834253844549126e-02,2.500000000000000052e-04 +1.051752098698865989e-02,1.991565766675859953e-02,5.000000000000000104e-04 +1.076384302181379940e-02,2.009834253844549126e-02,1.000000000000000021e-03 +9.808987644087076990e-03,2.133604972113979995e-02,1.000000000000000021e-03 +1.076384302181379940e-02,2.009834253844549126e-02,7.500000000000000156e-04 +1.051752098698865989e-02,1.991565766675858912e-02,1.000000000000000021e-03 +1.028641533295043993e-02,2.071719612979264907e-02,1.000000000000000021e-03 +9.406496269640074459e-03,2.116602241297340162e-02,1.000000000000000021e-03 +8.854132266360354581e-03,2.257375690383411904e-02,0.000000000000000000e+00 +9.331559955223715785e-03,2.195490331248696123e-02,0.000000000000000000e+00 +8.285925373977208117e-03,2.242801921112005936e-02,0.000000000000000000e+00 +8.854132266360354581e-03,2.257375690383411904e-02,1.000000000000000021e-03 +9.331559955223715785e-03,2.195490331248696123e-02,1.000000000000000021e-03 +8.285925373977209851e-03,2.242801921112005936e-02,1.000000000000000021e-03 +7.899276888633628702e-03,2.381146408652843119e-02,0.000000000000000000e+00 +8.376704577496989906e-03,2.319261049518126991e-02,0.000000000000000000e+00 +7.165354478314340907e-03,2.369001600926671017e-02,0.000000000000000000e+00 +7.899276888633628702e-03,2.381146408652843119e-02,1.000000000000000021e-03 +8.376704577496991641e-03,2.319261049518126991e-02,1.000000000000000021e-03 +7.165354478314341774e-03,2.369001600926671017e-02,1.000000000000000021e-03 +6.944421510906902822e-03,2.504917126922273987e-02,0.000000000000000000e+00 +7.421849199770265762e-03,2.443031767787558900e-02,0.000000000000000000e+00 +6.044783582651473697e-03,2.495201280741337138e-02,0.000000000000000000e+00 +6.944421510906902822e-03,2.504917126922273987e-02,1.000000000000000021e-03 +7.421849199770265762e-03,2.443031767787558900e-02,1.000000000000000021e-03 +6.044783582651473697e-03,2.495201280741337138e-02,1.000000000000000021e-03 +5.989566133180176076e-03,2.628687845191705896e-02,0.000000000000000000e+00 +6.466993822043539883e-03,2.566802486056990115e-02,0.000000000000000000e+00 +4.924212686988605620e-03,2.621400960556002913e-02,0.000000000000000000e+00 +5.989566133180176076e-03,2.628687845191705896e-02,1.000000000000000021e-03 +6.466993822043539883e-03,2.566802486056990115e-02,1.000000000000000021e-03 +4.924212686988605620e-03,2.621400960556002913e-02,1.000000000000000021e-03 +5.034710755453450197e-03,2.752458563461137112e-02,0.000000000000000000e+00 +5.512138444316813136e-03,2.690573204326420984e-02,0.000000000000000000e+00 +3.803641791325735808e-03,2.747600640370669034e-02,0.000000000000000000e+00 +5.034710755453450197e-03,2.752458563461137112e-02,1.000000000000000021e-03 +5.512138444316813136e-03,2.690573204326422024e-02,1.000000000000000021e-03 +3.803641791325735808e-03,2.747600640370669034e-02,1.000000000000000021e-03 +4.079855377726721716e-03,2.876229281730569021e-02,0.000000000000000000e+00 +4.557283066590086390e-03,2.814343922595852893e-02,0.000000000000000000e+00 +2.683070895662865128e-03,2.873800320185334115e-02,0.000000000000000000e+00 +4.079855377726721716e-03,2.876229281730569021e-02,1.000000000000000021e-03 +4.557283066590086390e-03,2.814343922595852893e-02,1.000000000000000021e-03 +2.683070895662865996e-03,2.873800320185334115e-02,1.000000000000000021e-03 +3.124999999999995837e-03,2.999999999999999889e-02,0.000000000000000000e+00 +3.602427688863359210e-03,2.938114640865284108e-02,0.000000000000000000e+00 +1.562499999999997918e-03,2.999999999999999889e-02,0.000000000000000000e+00 +3.124999999999995837e-03,2.999999999999999889e-02,1.000000000000000021e-03 +3.602427688863359210e-03,2.938114640865284108e-02,1.000000000000000021e-03 +1.562499999999997918e-03,2.999999999999999889e-02,1.000000000000000021e-03 +1.130411427385917024e-02,2.038712353909780117e-02,0.000000000000000000e+00 +1.067234998962677053e-02,2.158873309671057936e-02,0.000000000000000000e+00 +1.130411427385917024e-02,2.038712353909780117e-02,5.000000000000000104e-04 +1.102688519741881930e-02,2.025600395108865040e-02,0.000000000000000000e+00 +1.098823213174296952e-02,2.098792831790418853e-02,0.000000000000000000e+00 +1.024066881685693070e-02,2.146239140892518965e-02,0.000000000000000000e+00 +1.130411427385917024e-02,2.038712353909780117e-02,2.500000000000000052e-04 +1.102688519741881930e-02,2.025600395108865040e-02,5.000000000000000104e-04 +1.130411427385917024e-02,2.038712353909780117e-02,1.000000000000000021e-03 +1.067234998962677053e-02,2.158873309671057936e-02,1.000000000000000021e-03 +1.130411427385917024e-02,2.038712353909780117e-02,7.500000000000000156e-04 +1.102688519741881930e-02,2.025600395108865040e-02,1.000000000000000021e-03 +1.098823213174296952e-02,2.098792831790418853e-02,1.000000000000000021e-03 +1.024066881685693070e-02,2.146239140892518965e-02,1.000000000000000021e-03 +1.004058570539437950e-02,2.279034265432335060e-02,0.000000000000000000e+00 +1.035646784751058022e-02,2.218953787551695978e-02,0.000000000000000000e+00 +9.447358985877367041e-03,2.268204977907873135e-02,0.000000000000000000e+00 +1.004058570539437950e-02,2.279034265432335060e-02,1.000000000000000021e-03 +1.035646784751058022e-02,2.218953787551695978e-02,1.000000000000000021e-03 +9.447358985877367041e-03,2.268204977907873135e-02,1.000000000000000021e-03 +9.408821421161981530e-03,2.399195221193612879e-02,0.000000000000000000e+00 +9.724703563278180515e-03,2.339114743312974143e-02,0.000000000000000000e+00 +8.654049154897805116e-03,2.390170814923227999e-02,0.000000000000000000e+00 +9.408821421161981530e-03,2.399195221193612879e-02,1.000000000000000021e-03 +9.724703563278180515e-03,2.339114743312974143e-02,1.000000000000000021e-03 +8.654049154897805116e-03,2.390170814923227999e-02,1.000000000000000021e-03 +8.777057136929587028e-03,2.519356176954890003e-02,0.000000000000000000e+00 +9.092939279045784279e-03,2.459275699074250920e-02,0.000000000000000000e+00 +7.860739323918244925e-03,2.512136651938582169e-02,0.000000000000000000e+00 +8.777057136929587028e-03,2.519356176954890003e-02,1.000000000000000021e-03 +9.092939279045784279e-03,2.459275699074250920e-02,1.000000000000000021e-03 +7.860739323918244925e-03,2.512136651938582169e-02,1.000000000000000021e-03 +8.145292852697189057e-03,2.639517132716167128e-02,0.000000000000000000e+00 +8.461174994813388042e-03,2.579436654835529086e-02,0.000000000000000000e+00 +7.067429492938683000e-03,2.634102488953937032e-02,0.000000000000000000e+00 +8.145292852697189057e-03,2.639517132716167128e-02,1.000000000000000021e-03 +8.461174994813388042e-03,2.579436654835529086e-02,1.000000000000000021e-03 +7.067429492938683000e-03,2.634102488953937032e-02,1.000000000000000021e-03 +7.513528568464791953e-03,2.759678088477444946e-02,0.000000000000000000e+00 +7.829410710580991806e-03,2.699597610596805863e-02,0.000000000000000000e+00 +6.274119661959121075e-03,2.756068325969290855e-02,0.000000000000000000e+00 +7.513528568464791953e-03,2.759678088477444946e-02,1.000000000000000021e-03 +7.829410710580990071e-03,2.699597610596805863e-02,1.000000000000000021e-03 +6.274119661959121075e-03,2.756068325969290855e-02,1.000000000000000021e-03 +6.881764284232392247e-03,2.879839044238723111e-02,0.000000000000000000e+00 +7.197646426348592100e-03,2.819758566358084029e-02,0.000000000000000000e+00 +5.480809830979557415e-03,2.878034162984646066e-02,0.000000000000000000e+00 +6.881764284232392247e-03,2.879839044238723111e-02,1.000000000000000021e-03 +7.197646426348592100e-03,2.819758566358084029e-02,1.000000000000000021e-03 +5.480809830979557415e-03,2.878034162984646066e-02,1.000000000000000021e-03 +6.249999999999996010e-03,2.999999999999999889e-02,0.000000000000000000e+00 +6.565882142116194128e-03,2.939919522119361847e-02,0.000000000000000000e+00 +4.687499999999994622e-03,2.999999999999999889e-02,0.000000000000000000e+00 +6.249999999999996010e-03,2.999999999999999889e-02,1.000000000000000021e-03 +6.565882142116194128e-03,2.939919522119361847e-02,1.000000000000000021e-03 +4.687499999999994622e-03,2.999999999999999889e-02,1.000000000000000021e-03 +1.189034274369969030e-02,2.056495400126012035e-02,0.000000000000000000e+00 +1.157592490073722918e-02,2.174433475110260083e-02,0.000000000000000000e+00 +1.189034274369969030e-02,2.056495400126012035e-02,5.000000000000000104e-04 +1.159286038357989004e-02,2.049043854916317992e-02,0.000000000000000000e+00 +1.173313382221845974e-02,2.115464437618136059e-02,0.000000000000000000e+00 +1.112413744518199986e-02,2.166653392390658836e-02,0.000000000000000000e+00 +1.189034274369969030e-02,2.056495400126012035e-02,2.500000000000000052e-04 +1.159286038357989004e-02,2.049043854916317992e-02,5.000000000000000104e-04 +1.189034274369969030e-02,2.056495400126012035e-02,1.000000000000000021e-03 +1.157592490073722918e-02,2.174433475110260083e-02,1.000000000000000021e-03 +1.189034274369969030e-02,2.056495400126012035e-02,7.500000000000000156e-04 +1.159286038357989004e-02,2.049043854916317992e-02,1.000000000000000021e-03 +1.173313382221845974e-02,2.115464437618136059e-02,1.000000000000000021e-03 +1.112413744518199986e-02,2.166653392390658836e-02,1.000000000000000021e-03 +1.126150705777476980e-02,2.292371550094508131e-02,0.000000000000000000e+00 +1.141871597925600036e-02,2.233402512602384107e-02,0.000000000000000000e+00 +1.065104638158458072e-02,2.285702907763421943e-02,0.000000000000000000e+00 +1.126150705777476980e-02,2.292371550094508131e-02,1.000000000000000021e-03 +1.141871597925600036e-02,2.233402512602384107e-02,1.000000000000000021e-03 +1.065104638158458072e-02,2.285702907763421943e-02,1.000000000000000021e-03 +1.094708921481231043e-02,2.410309625078756873e-02,0.000000000000000000e+00 +1.110429813629353925e-02,2.351340587586632849e-02,0.000000000000000000e+00 +1.017795531798714945e-02,2.404752423136185049e-02,0.000000000000000000e+00 +1.094708921481231043e-02,2.410309625078756873e-02,1.000000000000000021e-03 +1.110429813629353925e-02,2.351340587586632849e-02,1.000000000000000021e-03 +1.017795531798714077e-02,2.404752423136185049e-02,1.000000000000000021e-03 +1.063267137184984931e-02,2.528247700063004921e-02,0.000000000000000000e+00 +1.078988029333107987e-02,2.469278662570880897e-02,0.000000000000000000e+00 +9.704864254389716435e-03,2.523801938508947115e-02,0.000000000000000000e+00 +1.063267137184984931e-02,2.528247700063004921e-02,1.000000000000000021e-03 +1.078988029333107987e-02,2.469278662570880897e-02,1.000000000000000021e-03 +9.704864254389716435e-03,2.523801938508947115e-02,1.000000000000000021e-03 +1.031825352888737952e-02,2.646185775047254010e-02,0.000000000000000000e+00 +1.047546245036862049e-02,2.587216737555129986e-02,0.000000000000000000e+00 +9.231773190792286893e-03,2.642851453881710916e-02,0.000000000000000000e+00 +1.031825352888737952e-02,2.646185775047254010e-02,1.000000000000000021e-03 +1.047546245036861008e-02,2.587216737555129986e-02,1.000000000000000021e-03 +9.231773190792285158e-03,2.642851453881710916e-02,1.000000000000000021e-03 +1.000383568592492015e-02,2.764123850031503099e-02,0.000000000000000000e+00 +1.016104460740615070e-02,2.705154812539378034e-02,0.000000000000000000e+00 +8.758682127194855616e-03,2.761900969254474023e-02,0.000000000000000000e+00 +1.000383568592492015e-02,2.764123850031503099e-02,1.000000000000000021e-03 +1.016104460740615070e-02,2.705154812539378034e-02,1.000000000000000021e-03 +8.758682127194855616e-03,2.761900969254474023e-02,1.000000000000000021e-03 +9.689417842962459032e-03,2.882061925015751147e-02,0.000000000000000000e+00 +9.846626764443689589e-03,2.823092887523627123e-02,0.000000000000000000e+00 +8.285591063597424338e-03,2.880950484627237129e-02,0.000000000000000000e+00 +9.689417842962459032e-03,2.882061925015751147e-02,1.000000000000000021e-03 +9.846626764443689589e-03,2.823092887523627123e-02,1.000000000000000021e-03 +8.285591063597426073e-03,2.880950484627237129e-02,1.000000000000000021e-03 +9.374999999999994449e-03,2.999999999999999889e-02,0.000000000000000000e+00 +9.532208921481226740e-03,2.941030962507875865e-02,0.000000000000000000e+00 +7.812499999999994796e-03,2.999999999999999889e-02,0.000000000000000000e+00 +9.374999999999994449e-03,2.999999999999999889e-02,1.000000000000000021e-03 +9.532208921481226740e-03,2.941030962507875865e-02,1.000000000000000021e-03 +7.812499999999994796e-03,2.999999999999999889e-02,1.000000000000000021e-03 +1.250000000000010998e-02,2.062500000000000097e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.179687500000000028e-02,0.000000000000000000e+00 +1.250000000000010998e-02,2.062500000000000097e-02,5.000000000000000104e-04 +1.219369643647023015e-02,2.060995227085063095e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.121093749999999889e-02,0.000000000000000000e+00 +1.203796245036862014e-02,2.177060487555130056e-02,0.000000000000000000e+00 +1.250000000000010998e-02,2.062500000000000097e-02,2.500000000000000052e-04 +1.219369643647023015e-02,2.060995227085063095e-02,5.000000000000000104e-04 +1.250000000000010998e-02,2.062500000000000097e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.179687500000000028e-02,1.000000000000000021e-03 +1.250000000000010998e-02,2.062500000000000097e-02,7.500000000000000156e-04 +1.219369643647023015e-02,2.060995227085063095e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.121093749999999889e-02,1.000000000000000021e-03 +1.203796245036862014e-02,2.177060487555130056e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.296874999999999958e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.238281250000000167e-02,0.000000000000000000e+00 +1.188075352888738959e-02,2.294623275047253871e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.296874999999999958e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.238281250000000167e-02,1.000000000000000021e-03 +1.188075352888738959e-02,2.294623275047253871e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.414062499999999889e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.355468750000000097e-02,0.000000000000000000e+00 +1.172354460740615036e-02,2.412186062539378034e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.414062499999999889e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.355468750000000097e-02,1.000000000000000021e-03 +1.172354460740615036e-02,2.412186062539378034e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.531250000000000167e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.472656250000000028e-02,0.000000000000000000e+00 +1.156633568592491980e-02,2.529748850031502891e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.531250000000000167e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.472656250000000028e-02,1.000000000000000021e-03 +1.156633568592491980e-02,2.529748850031502891e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.648437500000000097e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.589843749999999958e-02,0.000000000000000000e+00 +1.140912676444368924e-02,2.647311637523627054e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.648437500000000097e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.589843749999999958e-02,1.000000000000000021e-03 +1.140912676444368924e-02,2.647311637523627054e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.765625000000000028e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.707031249999999889e-02,0.000000000000000000e+00 +1.125191784296246042e-02,2.764874425015751910e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.765625000000000028e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.707031249999999889e-02,1.000000000000000021e-03 +1.125191784296246042e-02,2.764874425015751910e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.882812499999999958e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.824218750000000167e-02,0.000000000000000000e+00 +1.109470892148122986e-02,2.882437212507876073e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.882812499999999958e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.824218750000000167e-02,1.000000000000000021e-03 +1.109470892148122986e-02,2.882437212507876073e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.941406250000000097e-02,0.000000000000000000e+00 +1.093749999999999931e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.250000000000000069e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.250000000000000069e-02,2.941406250000000097e-02,1.000000000000000021e-03 +1.093749999999999931e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.674433475110258945e-02,1.842407509926283909e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.810965725630038839e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.810965725630038839e-02,5.000000000000000104e-04 +1.615464437618133881e-02,1.826686617778161895e-02,0.000000000000000000e+00 +1.560995227085061957e-02,1.780630356352987109e-02,0.000000000000000000e+00 +1.677060487555128918e-02,1.796203754963142038e-02,0.000000000000000000e+00 +1.556495400126010030e-02,1.810965725630038839e-02,2.500000000000000052e-04 +1.560995227085061957e-02,1.780630356352987109e-02,5.000000000000000104e-04 +1.674433475110258945e-02,1.842407509926283909e-02,1.000000000000000021e-03 +1.556495400126010030e-02,1.810965725630038839e-02,1.000000000000000021e-03 +1.556495400126010030e-02,1.810965725630038839e-02,7.500000000000000156e-04 +1.615464437618133881e-02,1.826686617778161895e-02,1.000000000000000021e-03 +1.560995227085061957e-02,1.780630356352987109e-02,1.000000000000000021e-03 +1.677060487555128918e-02,1.796203754963142038e-02,1.000000000000000021e-03 +1.792371550094506993e-02,1.873849294222528980e-02,0.000000000000000000e+00 +1.733402512602382969e-02,1.858128402074406965e-02,0.000000000000000000e+00 +1.794623275047254121e-02,1.811924647111265094e-02,0.000000000000000000e+00 +1.792371550094506993e-02,1.873849294222528980e-02,1.000000000000000021e-03 +1.733402512602382969e-02,1.858128402074406965e-02,1.000000000000000021e-03 +1.794623275047254121e-02,1.811924647111265094e-02,1.000000000000000021e-03 +1.910309625078756082e-02,1.905291078518775091e-02,0.000000000000000000e+00 +1.851340587586632058e-02,1.889570186370652036e-02,0.000000000000000000e+00 +1.912186062539377937e-02,1.827645539259387109e-02,0.000000000000000000e+00 +1.910309625078756082e-02,1.905291078518775091e-02,1.000000000000000021e-03 +1.851340587586632058e-02,1.889570186370652036e-02,1.000000000000000021e-03 +1.912186062539377937e-02,1.827645539259387109e-02,1.000000000000000021e-03 +2.028247700063005171e-02,1.936732862815020162e-02,0.000000000000000000e+00 +1.969278662570881147e-02,1.921011970666897106e-02,0.000000000000000000e+00 +2.029748850031503141e-02,1.843366431407510164e-02,0.000000000000000000e+00 +2.028247700063005171e-02,1.936732862815020162e-02,1.000000000000000021e-03 +1.969278662570881147e-02,1.921011970666897106e-02,1.000000000000000021e-03 +2.029748850031503141e-02,1.843366431407510164e-02,1.000000000000000021e-03 +2.146185775047253913e-02,1.968174647111264886e-02,0.000000000000000000e+00 +2.087216737555129889e-02,1.952453754963142871e-02,0.000000000000000000e+00 +2.147311637523626957e-02,1.859087323555632873e-02,0.000000000000000000e+00 +2.146185775047253913e-02,1.968174647111264886e-02,1.000000000000000021e-03 +2.087216737555129889e-02,1.952453754963142871e-02,1.000000000000000021e-03 +2.147311637523626957e-02,1.859087323555632873e-02,1.000000000000000021e-03 +2.264123850031503002e-02,1.999616431407509956e-02,0.000000000000000000e+00 +2.205154812539378978e-02,1.983895539259387941e-02,0.000000000000000000e+00 +2.264874425015752160e-02,1.874808215703754888e-02,0.000000000000000000e+00 +2.264123850031503002e-02,1.999616431407509956e-02,1.000000000000000021e-03 +2.205154812539378978e-02,1.983895539259387941e-02,1.000000000000000021e-03 +2.264874425015752160e-02,1.874808215703754888e-02,1.000000000000000021e-03 +2.382061925015751050e-02,2.031058215703756067e-02,0.000000000000000000e+00 +2.323092887523627026e-02,2.015337323555633012e-02,0.000000000000000000e+00 +2.382437212507875976e-02,1.890529107851877944e-02,0.000000000000000000e+00 +2.382061925015751050e-02,2.031058215703756067e-02,1.000000000000000021e-03 +2.323092887523627026e-02,2.015337323555633012e-02,1.000000000000000021e-03 +2.382437212507875976e-02,1.890529107851877944e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.062500000000001138e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.062500000000001138e-02,5.000000000000000104e-04 +2.441030962507876115e-02,2.046779107851878082e-02,0.000000000000000000e+00 +2.500000000000000139e-02,1.906249999999999958e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.062500000000001138e-02,2.500000000000000052e-04 +2.500000000000000139e-02,1.906249999999999958e-02,5.000000000000000104e-04 +2.500000000000000139e-02,2.062500000000001138e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.062500000000001138e-02,7.500000000000000156e-04 +2.441030962507876115e-02,2.046779107851878082e-02,1.000000000000000021e-03 +2.500000000000000139e-02,1.906249999999999958e-02,1.000000000000000021e-03 +1.658873309671056104e-02,1.932765001037326999e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.869588572614087896e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.869588572614087896e-02,5.000000000000000104e-04 +1.598792831790417021e-02,1.901176786825707968e-02,0.000000000000000000e+00 +1.549043854916315986e-02,1.840713961642018170e-02,0.000000000000000000e+00 +1.666653392390657004e-02,1.887586255481805975e-02,0.000000000000000000e+00 +1.538712353909777938e-02,1.869588572614087896e-02,2.500000000000000052e-04 +1.549043854916315986e-02,1.840713961642018170e-02,5.000000000000000104e-04 +1.658873309671056104e-02,1.932765001037326999e-02,1.000000000000000021e-03 +1.538712353909777938e-02,1.869588572614087896e-02,1.000000000000000021e-03 +1.538712353909777938e-02,1.869588572614087896e-02,7.500000000000000156e-04 +1.598792831790417021e-02,1.901176786825707968e-02,1.000000000000000021e-03 +1.549043854916315986e-02,1.840713961642018170e-02,1.000000000000000021e-03 +1.666653392390657004e-02,1.887586255481805975e-02,1.000000000000000021e-03 +1.779034265432333922e-02,1.995941429460566102e-02,0.000000000000000000e+00 +1.718953787551694840e-02,1.964353215248947071e-02,0.000000000000000000e+00 +1.785702907763420111e-02,1.934895361841547021e-02,0.000000000000000000e+00 +1.779034265432333922e-02,1.995941429460566102e-02,1.000000000000000021e-03 +1.718953787551694840e-02,1.964353215248947071e-02,1.000000000000000021e-03 +1.785702907763421152e-02,1.934895361841548062e-02,1.000000000000000021e-03 +1.899195221193612088e-02,2.059117857883804859e-02,0.000000000000000000e+00 +1.839114743312973005e-02,2.027529643672185827e-02,0.000000000000000000e+00 +1.904752423136183911e-02,1.982204468201290148e-02,0.000000000000000000e+00 +1.899195221193612088e-02,2.059117857883804859e-02,1.000000000000000021e-03 +1.839114743312973005e-02,2.027529643672185827e-02,1.000000000000000021e-03 +1.904752423136183911e-02,1.982204468201290148e-02,1.000000000000000021e-03 +2.019356176954889906e-02,2.122294286307043962e-02,0.000000000000000000e+00 +1.959275699074250129e-02,2.090706072095424931e-02,0.000000000000000000e+00 +2.023801938508947018e-02,2.029513574561031888e-02,0.000000000000000000e+00 +2.019356176954889906e-02,2.122294286307043962e-02,1.000000000000000021e-03 +1.959275699074250129e-02,2.090706072095424931e-02,1.000000000000000021e-03 +2.023801938508947018e-02,2.029513574561031888e-02,1.000000000000000021e-03 +2.139517132716167030e-02,2.185470714730283065e-02,0.000000000000000000e+00 +2.079436654835527948e-02,2.153882500518664034e-02,0.000000000000000000e+00 +2.142851453881711166e-02,2.076822680920773975e-02,0.000000000000000000e+00 +2.139517132716167030e-02,2.185470714730283065e-02,1.000000000000000021e-03 +2.079436654835528989e-02,2.153882500518664034e-02,1.000000000000000021e-03 +2.142851453881711166e-02,2.076822680920773975e-02,1.000000000000000021e-03 +2.259678088477444849e-02,2.248647143153522862e-02,0.000000000000000000e+00 +2.199597610596806113e-02,2.217058928941903137e-02,0.000000000000000000e+00 +2.261900969254473925e-02,2.124131787280516062e-02,0.000000000000000000e+00 +2.259678088477444849e-02,2.248647143153522862e-02,1.000000000000000021e-03 +2.199597610596806113e-02,2.217058928941903137e-02,1.000000000000000021e-03 +2.261900969254473925e-02,2.124131787280516062e-02,1.000000000000000021e-03 +2.379839044238723014e-02,2.311823571576761965e-02,0.000000000000000000e+00 +2.319758566358083932e-02,2.280235357365141893e-02,0.000000000000000000e+00 +2.380950484627237032e-02,2.171440893640258149e-02,0.000000000000000000e+00 +2.379839044238723014e-02,2.311823571576761965e-02,1.000000000000000021e-03 +2.319758566358083932e-02,2.280235357365141893e-02,1.000000000000000021e-03 +2.380950484627237032e-02,2.171440893640258149e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.375000000000001069e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.375000000000001069e-02,5.000000000000000104e-04 +2.439919522119361056e-02,2.343411785788380997e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.218750000000000930e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.375000000000001069e-02,2.500000000000000052e-04 +2.500000000000000139e-02,2.218750000000000930e-02,5.000000000000000104e-04 +2.500000000000000139e-02,2.375000000000001069e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.375000000000001069e-02,7.500000000000000156e-04 +2.439919522119361056e-02,2.343411785788380997e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.218750000000000930e-02,1.000000000000000021e-03 +1.633604972113978857e-02,2.019101235591294966e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.923615697818622031e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.923615697818622031e-02,5.000000000000000104e-04 +1.571719612979263075e-02,1.971358466704958151e-02,0.000000000000000000e+00 +1.525600395108863035e-02,1.897311480258121949e-02,0.000000000000000000e+00 +1.646239140892517827e-02,1.975933118314310982e-02,0.000000000000000000e+00 +1.509834253844547988e-02,1.923615697818622031e-02,2.500000000000000052e-04 +1.525600395108863035e-02,1.897311480258121949e-02,5.000000000000000104e-04 +1.633604972113978857e-02,2.019101235591294966e-02,1.000000000000000021e-03 +1.509834253844547988e-02,1.923615697818622031e-02,1.000000000000000021e-03 +1.509834253844547988e-02,1.923615697818622031e-02,7.500000000000000156e-04 +1.571719612979263075e-02,1.971358466704958151e-02,1.000000000000000021e-03 +1.525600395108863035e-02,1.897311480258121949e-02,1.000000000000000021e-03 +1.646239140892517827e-02,1.975933118314310982e-02,1.000000000000000021e-03 +1.757375690383411113e-02,2.114586773363966860e-02,0.000000000000000000e+00 +1.695490331248694985e-02,2.066844004477631086e-02,0.000000000000000000e+00 +1.768204977907871997e-02,2.055264101412266134e-02,0.000000000000000000e+00 +1.757375690383411113e-02,2.114586773363966860e-02,1.000000000000000021e-03 +1.695490331248694985e-02,2.066844004477631086e-02,1.000000000000000021e-03 +1.768204977907871997e-02,2.055264101412266134e-02,1.000000000000000021e-03 +1.881146408652843022e-02,2.210072311136639100e-02,0.000000000000000000e+00 +1.819261049518126894e-02,2.162329542250302980e-02,0.000000000000000000e+00 +1.890170814923226861e-02,2.134595084510221980e-02,0.000000000000000000e+00 +1.881146408652843022e-02,2.210072311136639100e-02,1.000000000000000021e-03 +1.819261049518126894e-02,2.162329542250302980e-02,1.000000000000000021e-03 +1.890170814923226861e-02,2.134595084510221980e-02,1.000000000000000021e-03 +2.004917126922273890e-02,2.305557848909310995e-02,0.000000000000000000e+00 +1.943031767787558109e-02,2.257815080022974874e-02,0.000000000000000000e+00 +2.012136651938582071e-02,2.213926067608178172e-02,0.000000000000000000e+00 +2.004917126922273890e-02,2.305557848909310995e-02,1.000000000000000021e-03 +1.943031767787558109e-02,2.257815080022974874e-02,1.000000000000000021e-03 +2.012136651938582071e-02,2.213926067608178172e-02,1.000000000000000021e-03 +2.128687845191706146e-02,2.401043386681983929e-02,0.000000000000000000e+00 +2.066802486056990018e-02,2.353300617795647115e-02,0.000000000000000000e+00 +2.134102488953936935e-02,2.293257050706134018e-02,0.000000000000000000e+00 +2.128687845191706146e-02,2.401043386681983929e-02,1.000000000000000021e-03 +2.066802486056990018e-02,2.353300617795647115e-02,1.000000000000000021e-03 +2.134102488953936935e-02,2.293257050706134018e-02,1.000000000000000021e-03 +2.252458563461137014e-02,2.496528924454656170e-02,0.000000000000000000e+00 +2.190573204326421927e-02,2.448786155568320050e-02,0.000000000000000000e+00 +2.256068325969291105e-02,2.372588033804089169e-02,0.000000000000000000e+00 +2.252458563461137014e-02,2.496528924454656170e-02,1.000000000000000021e-03 +2.190573204326421927e-02,2.448786155568320050e-02,1.000000000000000021e-03 +2.256068325969291105e-02,2.372588033804089169e-02,1.000000000000000021e-03 +2.376229281730568924e-02,2.592014462227328064e-02,0.000000000000000000e+00 +2.314343922595853142e-02,2.544271693340991944e-02,0.000000000000000000e+00 +2.378034162984645969e-02,2.451919016902045015e-02,0.000000000000000000e+00 +2.376229281730568924e-02,2.592014462227328064e-02,1.000000000000000021e-03 +2.314343922595853142e-02,2.544271693340991944e-02,1.000000000000000021e-03 +2.378034162984645969e-02,2.451919016902045015e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.687500000000000999e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.687500000000000999e-02,5.000000000000000104e-04 +2.438114640865284011e-02,2.639757231113664879e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.531250000000000860e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.687500000000000999e-02,2.500000000000000052e-04 +2.500000000000000139e-02,2.531250000000000860e-02,5.000000000000000104e-04 +2.500000000000000139e-02,2.687500000000000999e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.687500000000000999e-02,7.500000000000000156e-04 +2.438114640865284011e-02,2.639757231113664879e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.531250000000000860e-02,1.000000000000000021e-03 +1.599599510480699885e-02,2.099599510480693043e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.970970869120792016e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.970970869120792016e-02,5.000000000000000104e-04 +1.535285189800750065e-02,2.035285189800743050e-02,0.000000000000000000e+00 +1.491565766675857947e-02,1.948247901301135981e-02,0.000000000000000000e+00 +1.616602241297340065e-02,2.059350373035993831e-02,0.000000000000000000e+00 +1.470970869120800072e-02,1.970970869120792016e-02,2.500000000000000052e-04 +1.491565766675857947e-02,1.948247901301135981e-02,5.000000000000000104e-04 +1.599599510480699885e-02,2.099599510480693043e-02,1.000000000000000021e-03 +1.470970869120800072e-02,1.970970869120792016e-02,1.000000000000000021e-03 +1.470970869120800072e-02,1.970970869120792016e-02,7.500000000000000156e-04 +1.535285189800750065e-02,2.035285189800743050e-02,1.000000000000000021e-03 +1.491565766675857947e-02,1.948247901301135981e-02,1.000000000000000021e-03 +1.616602241297340065e-02,2.059350373035993831e-02,1.000000000000000021e-03 +1.728228151840599872e-02,2.228228151840594071e-02,0.000000000000000000e+00 +1.663913831160649878e-02,2.163913831160644077e-02,0.000000000000000000e+00 +1.742801921112005145e-02,2.171407462602279945e-02,0.000000000000000000e+00 +1.728228151840599872e-02,2.228228151840594071e-02,1.000000000000000021e-03 +1.663913831160649878e-02,2.163913831160644077e-02,1.000000000000000021e-03 +1.742801921112005145e-02,2.171407462602279945e-02,1.000000000000000021e-03 +1.856856793200499858e-02,2.356856793200495098e-02,0.000000000000000000e+00 +1.792542472520549865e-02,2.292542472520544064e-02,0.000000000000000000e+00 +1.869001600926671960e-02,2.283464552168567099e-02,0.000000000000000000e+00 +1.856856793200499858e-02,2.356856793200495098e-02,1.000000000000000021e-03 +1.792542472520549865e-02,2.292542472520544064e-02,1.000000000000000021e-03 +1.869001600926671960e-02,2.283464552168567099e-02,1.000000000000000021e-03 +1.985485434560399845e-02,2.485485434560396126e-02,0.000000000000000000e+00 +1.921171113880449852e-02,2.421171113880446132e-02,0.000000000000000000e+00 +1.995201280741337041e-02,2.395521641734853907e-02,0.000000000000000000e+00 +1.985485434560399845e-02,2.485485434560396126e-02,1.000000000000000021e-03 +1.921171113880449852e-02,2.421171113880446132e-02,1.000000000000000021e-03 +1.995201280741337041e-02,2.395521641734853907e-02,1.000000000000000021e-03 +2.114114075920299832e-02,2.614114075920297153e-02,0.000000000000000000e+00 +2.049799755240349838e-02,2.549799755240346119e-02,0.000000000000000000e+00 +2.121400960556003162e-02,2.507578731301140021e-02,0.000000000000000000e+00 +2.114114075920299832e-02,2.614114075920297153e-02,1.000000000000000021e-03 +2.049799755240349838e-02,2.549799755240346119e-02,1.000000000000000021e-03 +2.121400960556003162e-02,2.507578731301140021e-02,1.000000000000000021e-03 +2.242742717280200859e-02,2.742742717280198875e-02,0.000000000000000000e+00 +2.178428396600250866e-02,2.678428396600247841e-02,0.000000000000000000e+00 +2.247600640370668937e-02,2.619635820867426829e-02,0.000000000000000000e+00 +2.242742717280200859e-02,2.742742717280198875e-02,1.000000000000000021e-03 +2.178428396600250172e-02,2.678428396600247841e-02,1.000000000000000021e-03 +2.247600640370668937e-02,2.619635820867427869e-02,1.000000000000000021e-03 +2.371371358640100152e-02,2.871371358640098861e-02,0.000000000000000000e+00 +2.307057037960150853e-02,2.807057037960148868e-02,0.000000000000000000e+00 +2.373800320185335058e-02,2.731692910433713983e-02,0.000000000000000000e+00 +2.371371358640100152e-02,2.871371358640098861e-02,1.000000000000000021e-03 +2.307057037960150159e-02,2.807057037960148868e-02,1.000000000000000021e-03 +2.373800320185334017e-02,2.731692910433713983e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.999999999999999889e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.999999999999999889e-02,5.000000000000000104e-04 +2.435685679320050145e-02,2.935685679320049896e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.843750000000000097e-02,0.000000000000000000e+00 +2.500000000000000139e-02,2.999999999999999889e-02,2.500000000000000052e-04 +2.500000000000000139e-02,2.843750000000000097e-02,5.000000000000000104e-04 +2.500000000000000139e-02,2.999999999999999889e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.999999999999999889e-02,7.500000000000000156e-04 +2.435685679320050145e-02,2.935685679320049896e-02,1.000000000000000021e-03 +2.500000000000000139e-02,2.843750000000000097e-02,1.000000000000000021e-03 +1.519101235591303022e-02,2.133604972113974096e-02,0.000000000000000000e+00 +1.423615697818630954e-02,2.009834253844541840e-02,0.000000000000000000e+00 +1.423615697818630954e-02,2.009834253844541840e-02,5.000000000000000104e-04 +1.471358466704967075e-02,2.071719612979257968e-02,0.000000000000000000e+00 +1.448247901301144037e-02,1.991565766675851973e-02,0.000000000000000000e+00 +1.559350373036001020e-02,2.116602241297333917e-02,0.000000000000000000e+00 +1.423615697818630954e-02,2.009834253844541840e-02,2.500000000000000052e-04 +1.448247901301144037e-02,1.991565766675851973e-02,5.000000000000000104e-04 +1.519101235591303022e-02,2.133604972113974096e-02,1.000000000000000021e-03 +1.423615697818630954e-02,2.009834253844541840e-02,1.000000000000000021e-03 +1.423615697818630954e-02,2.009834253844541840e-02,7.500000000000000156e-04 +1.471358466704967075e-02,2.071719612979257968e-02,1.000000000000000021e-03 +1.448247901301144037e-02,1.991565766675851973e-02,1.000000000000000021e-03 +1.559350373036001020e-02,2.116602241297333917e-02,1.000000000000000021e-03 +1.614586773363973007e-02,2.257375690383406006e-02,0.000000000000000000e+00 +1.566844004477637928e-02,2.195490331248689878e-02,0.000000000000000000e+00 +1.671407462602287133e-02,2.242801921112000038e-02,0.000000000000000000e+00 +1.614586773363973007e-02,2.257375690383406006e-02,1.000000000000000021e-03 +1.566844004477637928e-02,2.195490331248689878e-02,1.000000000000000021e-03 +1.671407462602287133e-02,2.242801921112000038e-02,1.000000000000000021e-03 +1.710072311136644901e-02,2.381146408652838956e-02,0.000000000000000000e+00 +1.662329542250309128e-02,2.319261049518122134e-02,0.000000000000000000e+00 +1.783464552168572900e-02,2.369001600926666853e-02,0.000000000000000000e+00 +1.710072311136644901e-02,2.381146408652838956e-02,1.000000000000000021e-03 +1.662329542250309128e-02,2.319261049518122134e-02,1.000000000000000021e-03 +1.783464552168572900e-02,2.369001600926666853e-02,1.000000000000000021e-03 +1.805557848909316102e-02,2.504917126922270865e-02,0.000000000000000000e+00 +1.757815080022979981e-02,2.443031767787554043e-02,0.000000000000000000e+00 +1.895521641734857973e-02,2.495201280741332975e-02,0.000000000000000000e+00 +1.805557848909316102e-02,2.504917126922270865e-02,1.000000000000000021e-03 +1.757815080022979981e-02,2.443031767787555084e-02,1.000000000000000021e-03 +1.895521641734857973e-02,2.495201280741332975e-02,1.000000000000000021e-03 +1.901043386681986955e-02,2.628687845191703121e-02,0.000000000000000000e+00 +1.853300617795650834e-02,2.566802486056986993e-02,0.000000000000000000e+00 +2.007578731301143046e-02,2.621400960556000137e-02,0.000000000000000000e+00 +1.901043386681986955e-02,2.628687845191703121e-02,1.000000000000000021e-03 +1.853300617795650834e-02,2.566802486056986993e-02,1.000000000000000021e-03 +2.007578731301143046e-02,2.621400960556000137e-02,1.000000000000000021e-03 +1.996528924454658155e-02,2.752458563461136071e-02,0.000000000000000000e+00 +1.948786155568322034e-02,2.690573204326418902e-02,0.000000000000000000e+00 +2.119635820867429160e-02,2.747600640370666952e-02,0.000000000000000000e+00 +1.996528924454658155e-02,2.752458563461136071e-02,1.000000000000000021e-03 +1.948786155568322034e-02,2.690573204326418902e-02,1.000000000000000021e-03 +2.119635820867429160e-02,2.747600640370666952e-02,1.000000000000000021e-03 +2.092014462227329008e-02,2.876229281730567980e-02,0.000000000000000000e+00 +2.044271693340992888e-02,2.814343922595851852e-02,0.000000000000000000e+00 +2.231692910433714927e-02,2.873800320185334115e-02,0.000000000000000000e+00 +2.092014462227329008e-02,2.876229281730567980e-02,1.000000000000000021e-03 +2.044271693340992888e-02,2.814343922595851852e-02,1.000000000000000021e-03 +2.231692910433713886e-02,2.873800320185334115e-02,1.000000000000000021e-03 +2.187499999999999861e-02,2.999999999999999889e-02,0.000000000000000000e+00 +2.139757231113664088e-02,2.938114640865284108e-02,0.000000000000000000e+00 +2.343750000000000000e-02,2.999999999999999889e-02,0.000000000000000000e+00 +2.187499999999999861e-02,2.999999999999999889e-02,1.000000000000000021e-03 +2.139757231113664088e-02,2.938114640865284108e-02,1.000000000000000021e-03 +2.343750000000000000e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.432765001037335922e-02,2.158873309671052038e-02,0.000000000000000000e+00 +1.369588572614098033e-02,2.038712353909773872e-02,0.000000000000000000e+00 +1.369588572614098033e-02,2.038712353909773872e-02,5.000000000000000104e-04 +1.401176786825717065e-02,2.098792831790412955e-02,0.000000000000000000e+00 +1.397311480258131046e-02,2.025600395108858101e-02,0.000000000000000000e+00 +1.475933118314319038e-02,2.146239140892513067e-02,0.000000000000000000e+00 +1.369588572614098033e-02,2.038712353909773872e-02,2.500000000000000052e-04 +1.397311480258131046e-02,2.025600395108858101e-02,5.000000000000000104e-04 +1.432765001037335922e-02,2.158873309671052038e-02,1.000000000000000021e-03 +1.369588572614098033e-02,2.038712353909773872e-02,1.000000000000000021e-03 +1.369588572614098033e-02,2.038712353909773872e-02,7.500000000000000156e-04 +1.401176786825717065e-02,2.098792831790412955e-02,1.000000000000000021e-03 +1.397311480258131046e-02,2.025600395108858101e-02,1.000000000000000021e-03 +1.475933118314319038e-02,2.146239140892513067e-02,1.000000000000000021e-03 +1.495941429460573985e-02,2.279034265432329856e-02,0.000000000000000000e+00 +1.464353215248954954e-02,2.218953787551691120e-02,0.000000000000000000e+00 +1.555264101412274017e-02,2.268204977907867931e-02,0.000000000000000000e+00 +1.495941429460573985e-02,2.279034265432329856e-02,1.000000000000000021e-03 +1.464353215248954954e-02,2.218953787551691120e-02,1.000000000000000021e-03 +1.555264101412272976e-02,2.268204977907867931e-02,1.000000000000000021e-03 +1.559117857883811006e-02,2.399195221193609062e-02,0.000000000000000000e+00 +1.527529643672191975e-02,2.339114743312968939e-02,0.000000000000000000e+00 +1.634595084510228127e-02,2.390170814923223142e-02,0.000000000000000000e+00 +1.559117857883811006e-02,2.399195221193609062e-02,1.000000000000000021e-03 +1.527529643672191975e-02,2.339114743312968939e-02,1.000000000000000021e-03 +1.634595084510228127e-02,2.390170814923223835e-02,1.000000000000000021e-03 +1.622294286307049069e-02,2.519356176954886881e-02,0.000000000000000000e+00 +1.590706072095430038e-02,2.459275699074248145e-02,0.000000000000000000e+00 +1.713926067608181891e-02,2.512136651938579046e-02,0.000000000000000000e+00 +1.622294286307049069e-02,2.519356176954886881e-02,1.000000000000000021e-03 +1.590706072095430038e-02,2.459275699074248145e-02,1.000000000000000021e-03 +1.713926067608182932e-02,2.512136651938579046e-02,1.000000000000000021e-03 +1.685470714730287131e-02,2.639517132716165046e-02,0.000000000000000000e+00 +1.653882500518668100e-02,2.579436654835525963e-02,0.000000000000000000e+00 +1.793257050706137043e-02,2.634102488953933910e-02,0.000000000000000000e+00 +1.685470714730287131e-02,2.639517132716165046e-02,1.000000000000000021e-03 +1.653882500518668100e-02,2.579436654835525963e-02,1.000000000000000021e-03 +1.793257050706137043e-02,2.634102488953933910e-02,1.000000000000000021e-03 +1.748647143153524153e-02,2.759678088477443905e-02,0.000000000000000000e+00 +1.717058928941905122e-02,2.699597610596804129e-02,0.000000000000000000e+00 +1.872588033804091154e-02,2.756068325969289121e-02,0.000000000000000000e+00 +1.748647143153524153e-02,2.759678088477443905e-02,1.000000000000000021e-03 +1.717058928941906162e-02,2.699597610596804129e-02,1.000000000000000021e-03 +1.872588033804091154e-02,2.756068325969289121e-02,1.000000000000000021e-03 +1.811823571576761868e-02,2.879839044238722071e-02,0.000000000000000000e+00 +1.780235357365142837e-02,2.819758566358082988e-02,0.000000000000000000e+00 +1.951919016902044918e-02,2.878034162984645025e-02,0.000000000000000000e+00 +1.811823571576761868e-02,2.879839044238722071e-02,1.000000000000000021e-03 +1.780235357365142837e-02,2.819758566358082988e-02,1.000000000000000021e-03 +1.951919016902045959e-02,2.878034162984645025e-02,1.000000000000000021e-03 +1.874999999999999931e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.843411785788380899e-02,2.939919522119361153e-02,0.000000000000000000e+00 +2.031250000000000069e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.874999999999999931e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.843411785788380899e-02,2.939919522119361153e-02,1.000000000000000021e-03 +2.031250000000000069e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.342407509926293006e-02,2.174433475110256961e-02,0.000000000000000000e+00 +1.310965725630050017e-02,2.056495400126007872e-02,0.000000000000000000e+00 +1.310965725630050017e-02,2.056495400126007872e-02,5.000000000000000104e-04 +1.326686617778172032e-02,2.115464437618131896e-02,0.000000000000000000e+00 +1.340713961642027961e-02,2.049043854916313134e-02,0.000000000000000000e+00 +1.387586255481815072e-02,2.166653392390653979e-02,0.000000000000000000e+00 +1.310965725630050017e-02,2.056495400126007872e-02,2.500000000000000052e-04 +1.340713961642027961e-02,2.049043854916313134e-02,5.000000000000000104e-04 +1.342407509926293006e-02,2.174433475110256961e-02,1.000000000000000021e-03 +1.310965725630050017e-02,2.056495400126007872e-02,1.000000000000000021e-03 +1.310965725630050017e-02,2.056495400126007872e-02,7.500000000000000156e-04 +1.326686617778170992e-02,2.115464437618131896e-02,1.000000000000000021e-03 +1.340713961642027961e-02,2.049043854916313134e-02,1.000000000000000021e-03 +1.387586255481815072e-02,2.166653392390653979e-02,1.000000000000000021e-03 +1.373849294222537036e-02,2.292371550094505009e-02,0.000000000000000000e+00 +1.358128402074415021e-02,2.233402512602380985e-02,0.000000000000000000e+00 +1.434895361841555077e-02,2.285702907763418126e-02,0.000000000000000000e+00 +1.373849294222537036e-02,2.292371550094505009e-02,1.000000000000000021e-03 +1.358128402074415021e-02,2.233402512602380985e-02,1.000000000000000021e-03 +1.434895361841555077e-02,2.285702907763418126e-02,1.000000000000000021e-03 +1.405291078518781066e-02,2.410309625078754098e-02,0.000000000000000000e+00 +1.389570186370659051e-02,2.351340587586630074e-02,0.000000000000000000e+00 +1.482204468201295949e-02,2.404752423136181927e-02,0.000000000000000000e+00 +1.405291078518781066e-02,2.410309625078754098e-02,1.000000000000000021e-03 +1.389570186370659051e-02,2.351340587586630074e-02,1.000000000000000021e-03 +1.482204468201295949e-02,2.404752423136181927e-02,1.000000000000000021e-03 +1.436732862815024922e-02,2.528247700063003880e-02,0.000000000000000000e+00 +1.421011970666903081e-02,2.469278662570879163e-02,0.000000000000000000e+00 +1.529513574561036995e-02,2.523801938508945034e-02,0.000000000000000000e+00 +1.436732862815024922e-02,2.528247700063003880e-02,1.000000000000000021e-03 +1.421011970666903081e-02,2.469278662570879163e-02,1.000000000000000021e-03 +1.529513574561036995e-02,2.523801938508945034e-02,1.000000000000000021e-03 +1.468174647111268084e-02,2.646185775047252969e-02,0.000000000000000000e+00 +1.452453754963146937e-02,2.587216737555127904e-02,0.000000000000000000e+00 +1.576822680920778041e-02,2.642851453881708834e-02,0.000000000000000000e+00 +1.468174647111268084e-02,2.646185775047252969e-02,1.000000000000000021e-03 +1.452453754963146937e-02,2.587216737555127904e-02,1.000000000000000021e-03 +1.576822680920778041e-02,2.642851453881708834e-02,1.000000000000000021e-03 +1.499616431407511941e-02,2.764123850031502058e-02,0.000000000000000000e+00 +1.483895539259389926e-02,2.705154812539376993e-02,0.000000000000000000e+00 +1.624131787280518047e-02,2.761900969254472982e-02,0.000000000000000000e+00 +1.499616431407511941e-02,2.764123850031502058e-02,1.000000000000000021e-03 +1.483895539259389926e-02,2.705154812539376993e-02,1.000000000000000021e-03 +1.624131787280518047e-02,2.761900969254472982e-02,1.000000000000000021e-03 +1.531058215703755970e-02,2.882061925015751147e-02,0.000000000000000000e+00 +1.515337323555633955e-02,2.823092887523627123e-02,0.000000000000000000e+00 +1.671440893640259093e-02,2.880950484627236088e-02,0.000000000000000000e+00 +1.531058215703755970e-02,2.882061925015751147e-02,1.000000000000000021e-03 +1.515337323555633955e-02,2.823092887523627123e-02,1.000000000000000021e-03 +1.671440893640259093e-02,2.880950484627236088e-02,1.000000000000000021e-03 +1.562500000000000000e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.546779107851877985e-02,2.941030962507875865e-02,0.000000000000000000e+00 +1.718749999999999098e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.562500000000000000e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.546779107851877985e-02,2.941030962507875865e-02,1.000000000000000021e-03 +1.718749999999999098e-02,2.999999999999999889e-02,1.000000000000000021e-03 +1.280630356352997941e-02,2.060995227085061013e-02,0.000000000000000000e+00 +1.296203754963146972e-02,2.177060487555127974e-02,0.000000000000000000e+00 +1.280630356352997941e-02,2.060995227085061013e-02,5.000000000000000104e-04 +1.280630356352997941e-02,2.060995227085061013e-02,1.000000000000000021e-03 +1.296203754963146972e-02,2.177060487555127974e-02,1.000000000000000021e-03 +1.311924647111267946e-02,2.294623275047252137e-02,0.000000000000000000e+00 +1.311924647111267946e-02,2.294623275047252137e-02,1.000000000000000021e-03 +1.327645539259389960e-02,2.412186062539376993e-02,0.000000000000000000e+00 +1.327645539259389960e-02,2.412186062539376993e-02,1.000000000000000021e-03 +1.343366431407511975e-02,2.529748850031501850e-02,0.000000000000000000e+00 +1.343366431407511975e-02,2.529748850031501850e-02,1.000000000000000021e-03 +1.359087323555633990e-02,2.647311637523626013e-02,0.000000000000000000e+00 +1.359087323555633990e-02,2.647311637523626013e-02,1.000000000000000021e-03 +1.374808215703756005e-02,2.764874425015750870e-02,0.000000000000000000e+00 +1.374808215703756005e-02,2.764874425015750870e-02,1.000000000000000021e-03 +1.390529107851878020e-02,2.882437212507876073e-02,0.000000000000000000e+00 +1.390529107851878020e-02,2.882437212507876073e-02,1.000000000000000021e-03 +1.406250000000000035e-02,2.999999999999999889e-02,0.000000000000000000e+00 +1.406250000000000035e-02,2.999999999999999889e-02,1.000000000000000021e-03 +3.124999999999994969e-03,3.099999999999999978e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.099999999999999978e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.099999999999999978e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.049999999999999933e-02,0.000000000000000000e+00 +1.562499999999997918e-03,3.099999999999999978e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.049999999999999933e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.099999999999999978e-02,2.500000000000000052e-04 +0.000000000000000000e+00,3.049999999999999933e-02,5.000000000000000104e-04 +3.124999999999994969e-03,3.099999999999999978e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.099999999999999978e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.099999999999999978e-02,7.500000000000000156e-04 +3.124999999999995837e-03,3.049999999999999933e-02,1.000000000000000021e-03 +1.562499999999997918e-03,3.099999999999999978e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.049999999999999933e-02,1.000000000000000021e-03 +3.124999999999995837e-03,3.200000000000000067e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.200000000000000067e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.200000000000000067e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.150000000000000022e-02,0.000000000000000000e+00 +1.562499999999997918e-03,3.200000000000000067e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.150000000000000022e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.200000000000000067e-02,2.500000000000000052e-04 +0.000000000000000000e+00,3.150000000000000022e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.200000000000000067e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.200000000000000067e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.200000000000000067e-02,7.500000000000000156e-04 +3.124999999999995837e-03,3.150000000000000022e-02,1.000000000000000021e-03 +1.562499999999997918e-03,3.200000000000000067e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.150000000000000022e-02,1.000000000000000021e-03 +3.124999999999995837e-03,3.300000000000000155e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.300000000000000155e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.300000000000000155e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.250000000000000111e-02,0.000000000000000000e+00 +1.562499999999997918e-03,3.300000000000000155e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.250000000000000111e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.300000000000000155e-02,2.500000000000000052e-04 +0.000000000000000000e+00,3.250000000000000111e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.300000000000000155e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.300000000000000155e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.300000000000000155e-02,7.500000000000000156e-04 +3.124999999999995837e-03,3.250000000000000111e-02,1.000000000000000021e-03 +1.562499999999997918e-03,3.300000000000000155e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.250000000000000111e-02,1.000000000000000021e-03 +3.124999999999994969e-03,3.400000000000000244e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.400000000000000244e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.400000000000000244e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.350000000000000200e-02,0.000000000000000000e+00 +1.562499999999997918e-03,3.400000000000000244e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.350000000000000200e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.400000000000000244e-02,2.500000000000000052e-04 +0.000000000000000000e+00,3.350000000000000200e-02,5.000000000000000104e-04 +3.124999999999994969e-03,3.400000000000000244e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.400000000000000244e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.400000000000000244e-02,7.500000000000000156e-04 +3.124999999999995837e-03,3.350000000000000200e-02,1.000000000000000021e-03 +1.562499999999997918e-03,3.400000000000000244e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.350000000000000200e-02,1.000000000000000021e-03 +3.124999999999995837e-03,3.500000000000000333e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.500000000000000333e-02,0.000000000000000000e+00 +3.124999999999995837e-03,3.500000000000000333e-02,5.000000000000000104e-04 +0.000000000000000000e+00,3.500000000000000333e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.450000000000000289e-02,0.000000000000000000e+00 +1.562499999999997918e-03,3.500000000000000333e-02,0.000000000000000000e+00 +0.000000000000000000e+00,3.450000000000000289e-02,0.000000000000000000e+00 +3.124999999999995837e-03,3.500000000000000333e-02,2.500000000000000052e-04 +0.000000000000000000e+00,3.500000000000000333e-02,2.500000000000000052e-04 +1.562499999999997918e-03,3.500000000000000333e-02,5.000000000000000104e-04 +0.000000000000000000e+00,3.450000000000000289e-02,5.000000000000000104e-04 +3.124999999999995837e-03,3.500000000000000333e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.500000000000000333e-02,1.000000000000000021e-03 +3.124999999999995837e-03,3.500000000000000333e-02,7.500000000000000156e-04 +0.000000000000000000e+00,3.500000000000000333e-02,7.500000000000000156e-04 +3.124999999999995837e-03,3.450000000000000289e-02,1.000000000000000021e-03 +1.562499999999997918e-03,3.500000000000000333e-02,1.000000000000000021e-03 +0.000000000000000000e+00,3.450000000000000289e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.099999999999999978e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.049999999999999933e-02,0.000000000000000000e+00 +4.687499999999994622e-03,3.099999999999999978e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.099999999999999978e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.049999999999999933e-02,1.000000000000000021e-03 +4.687499999999994622e-03,3.099999999999999978e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.200000000000000067e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.150000000000000022e-02,0.000000000000000000e+00 +4.687499999999996357e-03,3.200000000000000067e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.200000000000000067e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.150000000000000022e-02,1.000000000000000021e-03 +4.687499999999994622e-03,3.200000000000000067e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.300000000000000155e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.250000000000000111e-02,0.000000000000000000e+00 +4.687499999999996357e-03,3.300000000000000155e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.300000000000000155e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.250000000000000111e-02,1.000000000000000021e-03 +4.687499999999994622e-03,3.300000000000000155e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.400000000000000244e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.350000000000000200e-02,0.000000000000000000e+00 +4.687499999999994622e-03,3.400000000000000244e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.400000000000000244e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.350000000000000200e-02,1.000000000000000021e-03 +4.687499999999994622e-03,3.400000000000000244e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.500000000000000333e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.500000000000000333e-02,5.000000000000000104e-04 +6.249999999999996010e-03,3.450000000000000289e-02,0.000000000000000000e+00 +4.687499999999994622e-03,3.500000000000000333e-02,0.000000000000000000e+00 +6.249999999999996010e-03,3.500000000000000333e-02,2.500000000000000052e-04 +4.687499999999994622e-03,3.500000000000000333e-02,5.000000000000000104e-04 +6.249999999999996010e-03,3.500000000000000333e-02,1.000000000000000021e-03 +6.249999999999996010e-03,3.500000000000000333e-02,7.500000000000000156e-04 +6.249999999999996010e-03,3.450000000000000289e-02,1.000000000000000021e-03 +4.687499999999994622e-03,3.500000000000000333e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.099999999999999978e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.049999999999999933e-02,0.000000000000000000e+00 +7.812499999999994796e-03,3.099999999999999978e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.099999999999999978e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.049999999999999933e-02,1.000000000000000021e-03 +7.812499999999994796e-03,3.099999999999999978e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.200000000000000067e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.150000000000000022e-02,0.000000000000000000e+00 +7.812499999999994796e-03,3.200000000000000067e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.200000000000000067e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.150000000000000022e-02,1.000000000000000021e-03 +7.812499999999994796e-03,3.200000000000000067e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.300000000000000155e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.250000000000000111e-02,0.000000000000000000e+00 +7.812499999999994796e-03,3.300000000000000155e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.300000000000000155e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.250000000000000111e-02,1.000000000000000021e-03 +7.812499999999994796e-03,3.300000000000000155e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.400000000000000244e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.350000000000000200e-02,0.000000000000000000e+00 +7.812499999999994796e-03,3.400000000000000244e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.400000000000000244e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.350000000000000200e-02,1.000000000000000021e-03 +7.812499999999994796e-03,3.400000000000000244e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.500000000000000333e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.500000000000000333e-02,5.000000000000000104e-04 +9.374999999999994449e-03,3.450000000000000289e-02,0.000000000000000000e+00 +7.812499999999994796e-03,3.500000000000000333e-02,0.000000000000000000e+00 +9.374999999999994449e-03,3.500000000000000333e-02,2.500000000000000052e-04 +7.812499999999994796e-03,3.500000000000000333e-02,5.000000000000000104e-04 +9.374999999999994449e-03,3.500000000000000333e-02,1.000000000000000021e-03 +9.374999999999994449e-03,3.500000000000000333e-02,7.500000000000000156e-04 +9.374999999999994449e-03,3.450000000000000289e-02,1.000000000000000021e-03 +7.812499999999994796e-03,3.500000000000000333e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.049999999999999933e-02,0.000000000000000000e+00 +1.093749999999999931e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.049999999999999933e-02,1.000000000000000021e-03 +1.093749999999999931e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.150000000000000022e-02,0.000000000000000000e+00 +1.093749999999999931e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.150000000000000022e-02,1.000000000000000021e-03 +1.093749999999999931e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.250000000000000111e-02,0.000000000000000000e+00 +1.093749999999999931e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.250000000000000111e-02,1.000000000000000021e-03 +1.093749999999999931e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.350000000000000200e-02,0.000000000000000000e+00 +1.093749999999999931e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.350000000000000200e-02,1.000000000000000021e-03 +1.093749999999999931e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.250000000000000069e-02,3.450000000000000289e-02,0.000000000000000000e+00 +1.093749999999999931e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.250000000000000069e-02,3.500000000000000333e-02,2.500000000000000052e-04 +1.093749999999999931e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.250000000000000069e-02,3.500000000000000333e-02,1.000000000000000021e-03 +1.250000000000000069e-02,3.500000000000000333e-02,7.500000000000000156e-04 +1.250000000000000069e-02,3.450000000000000289e-02,1.000000000000000021e-03 +1.093749999999999931e-02,3.500000000000000333e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.049999999999999933e-02,0.000000000000000000e+00 +1.406250000000000035e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.049999999999999933e-02,1.000000000000000021e-03 +1.406250000000000035e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.150000000000000022e-02,0.000000000000000000e+00 +1.406250000000000035e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.150000000000000022e-02,1.000000000000000021e-03 +1.406250000000000035e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.250000000000000111e-02,0.000000000000000000e+00 +1.406250000000000035e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.250000000000000111e-02,1.000000000000000021e-03 +1.406250000000000035e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.350000000000000200e-02,0.000000000000000000e+00 +1.406250000000000035e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.350000000000000200e-02,1.000000000000000021e-03 +1.406250000000000035e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.562500000000000000e-02,3.450000000000000289e-02,0.000000000000000000e+00 +1.406250000000000035e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.562500000000000000e-02,3.500000000000000333e-02,2.500000000000000052e-04 +1.406250000000000035e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.562500000000000000e-02,3.500000000000000333e-02,1.000000000000000021e-03 +1.562500000000000000e-02,3.500000000000000333e-02,7.500000000000000156e-04 +1.562500000000000000e-02,3.450000000000000289e-02,1.000000000000000021e-03 +1.406250000000000035e-02,3.500000000000000333e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.049999999999999933e-02,0.000000000000000000e+00 +1.718750000000000139e-02,3.099999999999999978e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.049999999999999933e-02,1.000000000000000021e-03 +1.718749999999999098e-02,3.099999999999999978e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.150000000000000022e-02,0.000000000000000000e+00 +1.718750000000000139e-02,3.200000000000000067e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.150000000000000022e-02,1.000000000000000021e-03 +1.718749999999999098e-02,3.200000000000000067e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.250000000000000111e-02,0.000000000000000000e+00 +1.718750000000000139e-02,3.300000000000000155e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.250000000000000111e-02,1.000000000000000021e-03 +1.718749999999999098e-02,3.300000000000000155e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.350000000000000200e-02,0.000000000000000000e+00 +1.718749999999999098e-02,3.400000000000000244e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.350000000000000200e-02,1.000000000000000021e-03 +1.718749999999999098e-02,3.400000000000000244e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.874999999999999931e-02,3.450000000000000289e-02,0.000000000000000000e+00 +1.718749999999999098e-02,3.500000000000000333e-02,0.000000000000000000e+00 +1.874999999999999931e-02,3.500000000000000333e-02,2.500000000000000052e-04 +1.718749999999999098e-02,3.500000000000000333e-02,5.000000000000000104e-04 +1.874999999999999931e-02,3.500000000000000333e-02,1.000000000000000021e-03 +1.874999999999999931e-02,3.500000000000000333e-02,7.500000000000000156e-04 +1.874999999999999931e-02,3.450000000000000289e-02,1.000000000000000021e-03 +1.718749999999999098e-02,3.500000000000000333e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.099999999999999978e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.049999999999999933e-02,0.000000000000000000e+00 +2.031250000000000069e-02,3.099999999999999978e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.099999999999999978e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.049999999999999933e-02,1.000000000000000021e-03 +2.031250000000000069e-02,3.099999999999999978e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.200000000000000067e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.150000000000000022e-02,0.000000000000000000e+00 +2.031250000000000069e-02,3.200000000000000067e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.200000000000000067e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.150000000000000022e-02,1.000000000000000021e-03 +2.031250000000000069e-02,3.200000000000000067e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.300000000000000155e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.250000000000000111e-02,0.000000000000000000e+00 +2.031250000000000069e-02,3.300000000000000155e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.300000000000000155e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.250000000000000111e-02,1.000000000000000021e-03 +2.031250000000000069e-02,3.300000000000000155e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.400000000000000244e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.350000000000000200e-02,0.000000000000000000e+00 +2.031250000000000069e-02,3.400000000000000244e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.400000000000000244e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.350000000000000200e-02,1.000000000000000021e-03 +2.031250000000000069e-02,3.400000000000000244e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.500000000000000333e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.500000000000000333e-02,5.000000000000000104e-04 +2.187499999999999861e-02,3.450000000000000289e-02,0.000000000000000000e+00 +2.031250000000000069e-02,3.500000000000000333e-02,0.000000000000000000e+00 +2.187499999999999861e-02,3.500000000000000333e-02,2.500000000000000052e-04 +2.031250000000000069e-02,3.500000000000000333e-02,5.000000000000000104e-04 +2.187499999999999861e-02,3.500000000000000333e-02,1.000000000000000021e-03 +2.187499999999999861e-02,3.500000000000000333e-02,7.500000000000000156e-04 +2.187499999999999861e-02,3.450000000000000289e-02,1.000000000000000021e-03 +2.031250000000000069e-02,3.500000000000000333e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.099999999999999978e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.099999999999999978e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.049999999999999933e-02,0.000000000000000000e+00 +2.343750000000000000e-02,3.099999999999999978e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.099999999999999978e-02,2.500000000000000052e-04 +2.500000000000000139e-02,3.049999999999999933e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.099999999999999978e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.099999999999999978e-02,7.500000000000000156e-04 +2.500000000000000139e-02,3.049999999999999933e-02,1.000000000000000021e-03 +2.343750000000000000e-02,3.099999999999999978e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.200000000000000067e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.200000000000000067e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.150000000000000022e-02,0.000000000000000000e+00 +2.343750000000000000e-02,3.200000000000000067e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.200000000000000067e-02,2.500000000000000052e-04 +2.500000000000000139e-02,3.150000000000000022e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.200000000000000067e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.200000000000000067e-02,7.500000000000000156e-04 +2.500000000000000139e-02,3.150000000000000022e-02,1.000000000000000021e-03 +2.343750000000000000e-02,3.200000000000000067e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.300000000000000155e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.300000000000000155e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.250000000000000111e-02,0.000000000000000000e+00 +2.343750000000000000e-02,3.300000000000000155e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.300000000000000155e-02,2.500000000000000052e-04 +2.500000000000000139e-02,3.250000000000000111e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.300000000000000155e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.300000000000000155e-02,7.500000000000000156e-04 +2.500000000000000139e-02,3.250000000000000111e-02,1.000000000000000021e-03 +2.343750000000000000e-02,3.300000000000000155e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.400000000000000244e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.400000000000000244e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.350000000000000200e-02,0.000000000000000000e+00 +2.343750000000000000e-02,3.400000000000000244e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.400000000000000244e-02,2.500000000000000052e-04 +2.500000000000000139e-02,3.350000000000000200e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.400000000000000244e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.400000000000000244e-02,7.500000000000000156e-04 +2.500000000000000139e-02,3.350000000000000200e-02,1.000000000000000021e-03 +2.343750000000000000e-02,3.400000000000000244e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.500000000000000333e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.500000000000000333e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.450000000000000289e-02,0.000000000000000000e+00 +2.343750000000000000e-02,3.500000000000000333e-02,0.000000000000000000e+00 +2.500000000000000139e-02,3.500000000000000333e-02,2.500000000000000052e-04 +2.500000000000000139e-02,3.450000000000000289e-02,5.000000000000000104e-04 +2.343750000000000000e-02,3.500000000000000333e-02,5.000000000000000104e-04 +2.500000000000000139e-02,3.500000000000000333e-02,1.000000000000000021e-03 +2.500000000000000139e-02,3.500000000000000333e-02,7.500000000000000156e-04 +2.500000000000000139e-02,3.450000000000000289e-02,1.000000000000000021e-03 +2.343750000000000000e-02,3.500000000000000333e-02,1.000000000000000021e-03 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_x.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_x.csv new file mode 100644 index 000000000..fd45ec5d7 --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_x.csv @@ -0,0 +1,2520 @@ +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.429228554218846312e-09,2.858457108437692624e-09,4.287685662656539144e-09,5.716914216875386076e-09,7.146142771094233009e-09,8.575371325313079941e-09,1.000459987953192770e-08,1.143382843375077546e-08,1.286305698796962322e-08,1.429228554218847098e-08,1.572151409640731874e-08,1.715074265062616650e-08,1.857997120484501426e-08,2.000919975906386202e-08,2.143842831328270978e-08,2.286765686750155754e-08,2.429688542172040530e-08,2.572611397593925306e-08,2.715534253015810082e-08,2.858457108437694858e-08,3.001379963859579965e-08,3.144302819281465072e-08,3.287225674703350178e-08,3.430148530125235285e-08,3.573071385547120392e-08,3.715994240969005499e-08,3.858917096390890606e-08,4.001839951812775713e-08,4.144762807234660820e-08,4.287685662656545926e-08,4.430608518078431033e-08,4.573531373500316140e-08,4.716454228922201247e-08,4.859377084344086354e-08,5.002299939765971461e-08,5.145222795187856567e-08,5.288145650609741674e-08,5.431068506031626781e-08,5.573991361453511888e-08,5.716914216875396995e-08,5.859837072297282102e-08,6.002759927719167870e-08,6.145682783141053639e-08,6.288605638562939408e-08,6.431528493984825176e-08,6.574451349406710945e-08,6.717374204828596713e-08,6.860297060250482482e-08,7.003219915672368251e-08,7.146142771094254019e-08,7.289065626516139788e-08,7.431988481938025556e-08,7.574911337359911325e-08,7.717834192781797094e-08,7.860757048203682862e-08,8.003679903625568631e-08,8.146602759047454399e-08,8.289525614469340168e-08,8.432448469891225937e-08,8.575371325313111705e-08,8.718294180734997474e-08,8.861217036156883242e-08,9.004139891578769011e-08 +0.000000000000000000e+00,4.026552183940707576e-09,8.053104367881415153e-09,1.207965655182212190e-08,1.610620873576282700e-08,2.013276091970353209e-08,2.415931310364423719e-08,2.818586528758494228e-08,3.221241747152564738e-08,3.623896965546635247e-08,4.026552183940705757e-08,4.429207402334776266e-08,4.831862620728846776e-08,5.234517839122917285e-08,5.637173057516987795e-08,6.039828275911058304e-08,6.442483494305128152e-08,6.845138712699198000e-08,7.247793931093267847e-08,7.650449149487337695e-08,8.053104367881407543e-08,8.455759586275477391e-08,8.858414804669547238e-08,9.261070023063617086e-08,9.663725241457686934e-08,1.006638045985175678e-07,1.046903567824582663e-07,1.087169089663989648e-07,1.127434611503396632e-07,1.167700133342803617e-07,1.207965655182210602e-07,1.248231177021617587e-07,1.288496698861024572e-07,1.328762220700431556e-07,1.369027742539838541e-07,1.409293264379245526e-07,1.449558786218652511e-07,1.489824308058059495e-07,1.530089829897466480e-07,1.570355351736873465e-07,1.610620873576280450e-07,1.650886395415687435e-07,1.691151917255094419e-07,1.731417439094501404e-07,1.771682960933908389e-07,1.811948482773315374e-07,1.852214004612722358e-07,1.892479526452129343e-07,1.932745048291536328e-07,1.973010570130943313e-07,2.013276091970350298e-07,2.053541613809757282e-07,2.093807135649164267e-07,2.134072657488571252e-07,2.174338179327978237e-07,2.214603701167385221e-07,2.254869223006792206e-07,2.295134744846199191e-07,2.335400266685606176e-07,2.375665788525013160e-07,2.415931310364420145e-07,2.456196832203826865e-07,2.496462354043233585e-07,2.536727875882640305e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.071345218863090927e-09,8.142690437726181855e-09,1.221403565658927278e-08,1.628538087545236371e-08,2.035672609431545464e-08,2.442807131317854556e-08,2.849941653204163649e-08,3.257076175090472742e-08,3.664210696976781504e-08,4.071345218863090266e-08,4.478479740749399027e-08,4.885614262635707789e-08,5.292748784522016551e-08,5.699883306408325313e-08,6.107017828294634075e-08,6.514152350180942837e-08,6.921286872067251599e-08,7.328421393953560360e-08,7.735555915839869122e-08,8.142690437726177884e-08,8.549824959612486646e-08,8.956959481498795408e-08,9.364094003385104170e-08,9.771228525271412932e-08,1.017836304715772169e-07,1.058549756904403046e-07,1.099263209093033922e-07,1.139976661281664798e-07,1.180690113470295674e-07,1.221403565658926550e-07,1.262117017847557426e-07,1.302830470036188303e-07,1.343543922224819179e-07,1.384257374413450055e-07,1.424970826602080931e-07,1.465684278790711807e-07,1.506397730979342684e-07,1.547111183167973560e-07,1.587824635356604436e-07,1.628538087545235312e-07,1.669251539733866188e-07,1.709964991922497065e-07,1.750678444111127941e-07,1.791391896299758817e-07,1.832105348488389693e-07,1.872818800677020569e-07,1.913532252865651445e-07,1.954245705054282322e-07,1.994959157242913198e-07,2.035672609431544074e-07,2.076386061620174950e-07,2.117099513808805826e-07,2.157812965997436703e-07,2.198526418186067579e-07,2.239239870374698455e-07,2.279953322563329331e-07,2.320666774751960207e-07,2.361380226940591083e-07,2.402093679129221960e-07,2.442807131317852571e-07,2.483520583506483183e-07,2.524234035695113794e-07,2.564947487883744406e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.294722333261721419e-10,1.258944466652344284e-09,1.888416699978516219e-09,2.517888933304688154e-09,3.147361166630860089e-09,3.776833399957032438e-09,4.406305633283204786e-09,5.035777866609377135e-09,5.665250099935549484e-09,6.294722333261721832e-09,6.924194566587894181e-09,7.553666799914066529e-09,8.183139033240238878e-09,8.812611266566411227e-09,9.442083499892583575e-09,1.007155573321875592e-08,1.070102796654492827e-08,1.133050019987110062e-08,1.195997243319727297e-08,1.258944466652344532e-08,1.321891689984961767e-08,1.384838913317579002e-08,1.447786136650196236e-08,1.510733359982813637e-08,1.573680583315431037e-08,1.636627806648048437e-08,1.699575029980665838e-08,1.762522253313283238e-08,1.825469476645900638e-08,1.888416699978518039e-08,1.951363923311135439e-08,2.014311146643752839e-08,2.077258369976370239e-08,2.140205593308987640e-08,2.203152816641605040e-08,2.266100039974222440e-08,2.329047263306839841e-08,2.391994486639457241e-08,2.454941709972074641e-08,2.517888933304692042e-08,2.580836156637309442e-08,2.643783379969926842e-08,2.706730603302544242e-08,2.769677826635161643e-08,2.832625049967779043e-08,2.895572273300396443e-08,2.958519496633013844e-08,3.021466719965631244e-08,3.084413943298248644e-08,3.147361166630866045e-08,3.210308389963483445e-08,3.273255613296100845e-08,3.336202836628718246e-08,3.399150059961335646e-08,3.462097283293953046e-08,3.525044506626570446e-08,3.587991729959187847e-08,3.650938953291805247e-08,3.713886176624422647e-08,3.776833399957040048e-08,3.839780623289657448e-08,3.902727846622274848e-08,3.965675069954892249e-08 +0.000000000000000000e+00,2.119465504167890690e-09,4.238931008335781381e-09,6.358396512503672485e-09,8.477862016671564416e-09,1.059732752083945635e-08,1.271679302500734828e-08,1.483625852917524021e-08,1.695572403334313214e-08,1.907518953751102242e-08,2.119465504167891269e-08,2.331412054584680297e-08,2.543358605001469325e-08,2.755305155418258352e-08,2.967251705835047380e-08,3.179198256251836408e-08,3.391144806668625766e-08,3.603091357085415125e-08,3.815037907502204483e-08,4.026984457918993842e-08,4.238931008335783201e-08,4.450877558752572559e-08,4.662824109169361918e-08,4.874770659586151276e-08,5.086717210002940635e-08,5.298663760419729993e-08,5.510610310836519352e-08,5.722556861253308710e-08,5.934503411670098069e-08,6.146449962086887427e-08,6.358396512503676786e-08,6.570343062920466145e-08,6.782289613337255503e-08,6.994236163754044862e-08,7.206182714170834220e-08,7.418129264587623579e-08,7.630075815004412937e-08,7.842022365421202296e-08,8.053968915837991654e-08,8.265915466254781013e-08,8.477862016671570372e-08,8.689808567088359730e-08,8.901755117505149089e-08,9.113701667921938447e-08,9.325648218338727806e-08,9.537594768755517164e-08,9.749541319172306523e-08,9.961487869589095881e-08,1.017343442000588524e-07,1.038538097042267460e-07,1.059732752083946396e-07,1.080927407125625332e-07,1.102122062167304267e-07,1.123316717208983203e-07,1.144511372250662139e-07,1.165706027292341075e-07,1.186900682334020011e-07,1.208095337375699079e-07,1.229289992417378280e-07,1.250484647459057480e-07,1.271679302500736681e-07,1.292873957542415881e-07,1.314068612584095082e-07,1.335263267625774282e-07 +0.000000000000000000e+00,2.193320912055225514e-09,4.386641824110451028e-09,6.579962736165676129e-09,8.773283648220900402e-09,1.096660456027612468e-08,1.315992547233134895e-08,1.535324638438657322e-08,1.754656729644179750e-08,1.973988820849702177e-08,2.193320912055224604e-08,2.412653003260747032e-08,2.631985094466269459e-08,2.851317185671791886e-08,3.070649276877314645e-08,3.289981368082837403e-08,3.509313459288360161e-08,3.728645550493882919e-08,3.947977641699405677e-08,4.167309732904928436e-08,4.386641824110451194e-08,4.605973915315973952e-08,4.825306006521496710e-08,5.044638097727019468e-08,5.263970188932542227e-08,5.483302280138064985e-08,5.702634371343587743e-08,5.921966462549110501e-08,6.141298553754633259e-08,6.360630644960156018e-08,6.579962736165678776e-08,6.799294827371201534e-08,7.018626918576724292e-08,7.237959009782247051e-08,7.457291100987769809e-08,7.676623192193292567e-08,7.895955283398815325e-08,8.115287374604338083e-08,8.334619465809860842e-08,8.553951557015383600e-08,8.773283648220906358e-08,8.992615739426429116e-08,9.211947830631951874e-08,9.431279921837474633e-08,9.650612013042997391e-08,9.869944104248520149e-08,1.008927619545404291e-07,1.030860828665956567e-07,1.052794037786508842e-07,1.074727246907061118e-07,1.096660456027613394e-07,1.118593665148165670e-07,1.140526874268717946e-07,1.162460083389270221e-07,1.184393292509822497e-07,1.206326501630374773e-07,1.228259710750926917e-07,1.250192919871479060e-07,1.272126128992031204e-07,1.294059338112583347e-07,1.315992547233135490e-07,1.337925756353687634e-07,1.359858965474239777e-07,1.381792174594791921e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.057028258938794382e-09,8.114056517877588765e-09,1.217108477681638315e-08,1.622811303575517753e-08,2.028514129469397357e-08,2.434216955363276960e-08,2.839919781257156564e-08,3.245622607151036168e-08,3.651325433044915771e-08,4.057028258938795375e-08,4.462731084832674979e-08,4.868433910726554582e-08,5.274136736620434186e-08,5.679839562514313790e-08,6.085542388408192731e-08,6.491245214302071012e-08,6.896948040195949292e-08,7.302650866089827572e-08,7.708353691983705852e-08,8.114056517877584132e-08,8.519759343771462412e-08,8.925462169665340693e-08,9.331164995559218973e-08,9.736867821453097253e-08,1.014257064734697553e-07,1.054827347324085381e-07,1.095397629913473209e-07,1.135967912502861037e-07,1.176538195092248865e-07,1.217108477681636693e-07,1.257678760271024521e-07,1.298249042860412349e-07,1.338819325449800177e-07,1.379389608039188005e-07,1.419959890628575833e-07,1.460530173217963662e-07,1.501100455807351490e-07,1.541670738396739318e-07,1.582241020986127146e-07,1.622811303575514974e-07,1.663381586164902802e-07,1.703951868754290630e-07,1.744522151343678458e-07,1.785092433933066286e-07,1.825662716522454114e-07,1.866232999111841942e-07,1.906803281701229770e-07,1.947373564290617598e-07,1.987943846880005426e-07,2.028514129469393254e-07,2.069084412058781082e-07,2.109654694648168910e-07,2.150224977237556738e-07,2.190795259826944566e-07,2.231365542416332394e-07,2.271935825005720222e-07,2.312506107595108050e-07,2.353076390184495878e-07,2.393646672773883971e-07,2.434216955363271799e-07,2.474787237952659627e-07,2.515357520542047455e-07,2.555927803131435283e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.230509586221175936e-09,4.461019172442351872e-09,6.691528758663528222e-09,8.922038344884705399e-09,1.115254793110588258e-08,1.338305751732705975e-08,1.561356710354823693e-08,1.784407668976941411e-08,2.007458627599059128e-08,2.230509586221176846e-08,2.453560544843294564e-08,2.676611503465412282e-08,2.899662462087529999e-08,3.122713420709647386e-08,3.345764379331764773e-08,3.568815337953882160e-08,3.791866296575999547e-08,4.014917255198116933e-08,4.237968213820234320e-08,4.461019172442351707e-08,4.684070131064469094e-08,4.907121089686586481e-08,5.130172048308703868e-08,5.353223006930821254e-08,5.576273965552938641e-08,5.799324924175056028e-08,6.022375882797173415e-08,6.245426841419290802e-08,6.468477800041408188e-08,6.691528758663525575e-08,6.914579717285642962e-08,7.137630675907760349e-08,7.360681634529877736e-08,7.583732593151995123e-08,7.806783551774112509e-08,8.029834510396229896e-08,8.252885469018347283e-08,8.475936427640464670e-08,8.698987386262582057e-08,8.922038344884699444e-08,9.145089303506816830e-08,9.368140262128934217e-08,9.591191220751051604e-08,9.814242179373168991e-08,1.003729313799528638e-07,1.026034409661740376e-07,1.048339505523952115e-07,1.070644601386163854e-07,1.092949697248375593e-07,1.115254793110587331e-07,1.137559888972799070e-07,1.159864984835010809e-07,1.182170080697222547e-07,1.204475176559434154e-07,1.226780272421645760e-07,1.249085368283857366e-07,1.271390464146068973e-07,1.293695560008280579e-07,1.316000655870492185e-07,1.338305751732703792e-07,1.360610847594915398e-07,1.382915943457127004e-07,1.405221039319338611e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.429228554219088263e-09,2.858457108438176525e-09,4.287685662657264581e-09,5.716914216876352223e-09,7.146142771095439865e-09,8.575371325314527507e-09,1.000459987953361515e-08,1.143382843375270279e-08,1.286305698797179043e-08,1.429228554219087808e-08,1.572151409640996572e-08,1.715074265062905171e-08,1.857997120484813769e-08,2.000919975906722368e-08,2.143842831328630967e-08,2.286765686750539566e-08,2.429688542172448165e-08,2.572611397594356763e-08,2.715534253016265362e-08,2.858457108438173961e-08,3.001379963860082891e-08,3.144302819281991820e-08,3.287225674703900750e-08,3.430148530125809679e-08,3.573071385547718609e-08,3.715994240969627539e-08,3.858917096391536468e-08,4.001839951813445398e-08,4.144762807235354328e-08,4.287685662657263257e-08,4.430608518079172187e-08,4.573531373501081117e-08,4.716454228922990046e-08,4.859377084344898976e-08,5.002299939766807906e-08,5.145222795188716835e-08,5.288145650610625765e-08,5.431068506032534695e-08,5.573991361454443624e-08,5.716914216876352554e-08,5.859837072298261484e-08,6.002759927720171075e-08,6.145682783142080666e-08,6.288605638563990258e-08,6.431528493985899849e-08,6.574451349407809441e-08,6.717374204829719032e-08,6.860297060251628623e-08,7.003219915673538215e-08,7.146142771095447806e-08,7.289065626517357398e-08,7.431988481939266989e-08,7.574911337361176580e-08,7.717834192783086172e-08,7.860757048204995763e-08,8.003679903626905355e-08,8.146602759048814946e-08,8.289525614470724537e-08,8.432448469892634129e-08,8.575371325314543720e-08,8.718294180736453312e-08,8.861217036158362903e-08,9.004139891580272494e-08 +0.000000000000000000e+00,4.026552183940566129e-09,8.053104367881132257e-09,1.207965655182169839e-08,1.610620873576226451e-08,2.013276091970283064e-08,2.415931310364339677e-08,2.818586528758396290e-08,3.221241747152452903e-08,3.623896965546509516e-08,4.026552183940566129e-08,4.429207402334622741e-08,4.831862620728679354e-08,5.234517839122735967e-08,5.637173057516792580e-08,6.039828275910849193e-08,6.442483494304905806e-08,6.845138712698962419e-08,7.247793931093019031e-08,7.650449149487075644e-08,8.053104367881132257e-08,8.455759586275188870e-08,8.858414804669245483e-08,9.261070023063302096e-08,9.663725241457358709e-08,1.006638045985141532e-07,1.046903567824547193e-07,1.087169089663952855e-07,1.127434611503358516e-07,1.167700133342764177e-07,1.207965655182169839e-07,1.248231177021575500e-07,1.288496698860981161e-07,1.328762220700386822e-07,1.369027742539792484e-07,1.409293264379198145e-07,1.449558786218603806e-07,1.489824308058009468e-07,1.530089829897415129e-07,1.570355351736820790e-07,1.610620873576226451e-07,1.650886395415632113e-07,1.691151917255037774e-07,1.731417439094443435e-07,1.771682960933849097e-07,1.811948482773254758e-07,1.852214004612660419e-07,1.892479526452066080e-07,1.932745048291471742e-07,1.973010570130877403e-07,2.013276091970283064e-07,2.053541613809688726e-07,2.093807135649094387e-07,2.134072657488500048e-07,2.174338179327905709e-07,2.214603701167311371e-07,2.254869223006717032e-07,2.295134744846122693e-07,2.335400266685528355e-07,2.375665788524934016e-07,2.415931310364339677e-07,2.456196832203745338e-07,2.496462354043151000e-07,2.536727875882556661e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.057028258938708355e-09,8.114056517877416711e-09,1.217108477681612507e-08,1.622811303575483342e-08,2.028514129469354343e-08,2.434216955363225344e-08,2.839919781257096345e-08,3.245622607150967346e-08,3.651325433044838347e-08,4.057028258938709348e-08,4.462731084832580349e-08,4.868433910726451350e-08,5.274136736620322351e-08,5.679839562514193352e-08,6.085542388408064353e-08,6.491245214301936016e-08,6.896948040195807678e-08,7.302650866089679341e-08,7.708353691983551004e-08,8.114056517877422667e-08,8.519759343771294329e-08,8.925462169665165992e-08,9.331164995559037655e-08,9.736867821452909318e-08,1.014257064734678098e-07,1.054827347324065264e-07,1.095397629913452431e-07,1.135967912502839597e-07,1.176538195092226763e-07,1.217108477681613929e-07,1.257678760271000963e-07,1.298249042860387997e-07,1.338819325449775031e-07,1.379389608039162065e-07,1.419959890628549099e-07,1.460530173217936133e-07,1.501100455807323167e-07,1.541670738396710201e-07,1.582241020986097235e-07,1.622811303575484269e-07,1.663381586164871303e-07,1.703951868754258336e-07,1.744522151343645370e-07,1.785092433933032404e-07,1.825662716522419438e-07,1.866232999111806472e-07,1.906803281701193506e-07,1.947373564290580540e-07,1.987943846879967574e-07,2.028514129469354608e-07,2.069084412058741642e-07,2.109654694648128676e-07,2.150224977237515710e-07,2.190795259826902744e-07,2.231365542416289777e-07,2.271935825005676811e-07,2.312506107595063845e-07,2.353076390184450879e-07,2.393646672773837913e-07,2.434216955363225212e-07,2.474787237952612510e-07,2.515357520541999809e-07,2.555927803131387108e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.294722333263122456e-10,1.258944466652624491e-09,1.888416699978936840e-09,2.517888933305249396e-09,3.147361166631561952e-09,3.776833399957874507e-09,4.406305633284187477e-09,5.035777866610500446e-09,5.665250099936813415e-09,6.294722333263126385e-09,6.924194566589439354e-09,7.553666799915752324e-09,8.183139033242065293e-09,8.812611266568378262e-09,9.442083499894691232e-09,1.007155573322100420e-08,1.070102796654731717e-08,1.133050019987363014e-08,1.195997243319994311e-08,1.258944466652625608e-08,1.321891689985256905e-08,1.384838913317888202e-08,1.447786136650519499e-08,1.510733359983150796e-08,1.573680583315782093e-08,1.636627806648413389e-08,1.699575029981044686e-08,1.762522253313675983e-08,1.825469476646307280e-08,1.888416699978938577e-08,1.951363923311569874e-08,2.014311146644201171e-08,2.077258369976832468e-08,2.140205593309463765e-08,2.203152816642095062e-08,2.266100039974726359e-08,2.329047263307357656e-08,2.391994486639988953e-08,2.454941709972620250e-08,2.517888933305251547e-08,2.580836156637882843e-08,2.643783379970514140e-08,2.706730603303145437e-08,2.769677826635776734e-08,2.832625049968408031e-08,2.895572273301039328e-08,2.958519496633670625e-08,3.021466719966302253e-08,3.084413943298934212e-08,3.147361166631566170e-08,3.210308389964198129e-08,3.273255613296830088e-08,3.336202836629462046e-08,3.399150059962094005e-08,3.462097283294725964e-08,3.525044506627357922e-08,3.587991729959989881e-08,3.650938953292621840e-08,3.713886176625253798e-08,3.776833399957885757e-08,3.839780623290517716e-08,3.902727846623149674e-08,3.965675069955781633e-08 +0.000000000000000000e+00,2.119465504168160351e-09,4.238931008336320702e-09,6.358396512504481467e-09,8.477862016672643059e-09,1.059732752084080465e-08,1.271679302500896624e-08,1.483625852917712784e-08,1.695572403334528943e-08,1.907518953751345102e-08,2.119465504168161261e-08,2.331412054584977420e-08,2.543358605001793580e-08,2.755305155418609739e-08,2.967251705835425898e-08,3.179198256252242057e-08,3.391144806669058547e-08,3.603091357085875037e-08,3.815037907502691527e-08,4.026984457919508017e-08,4.238931008336324508e-08,4.450877558753140998e-08,4.662824109169957488e-08,4.874770659586773978e-08,5.086717210003590468e-08,5.298663760420406958e-08,5.510610310837223448e-08,5.722556861254039938e-08,5.934503411670856428e-08,6.146449962087672256e-08,6.358396512504488085e-08,6.570343062921303913e-08,6.782289613338119741e-08,6.994236163754935570e-08,7.206182714171751398e-08,7.418129264588567226e-08,7.630075815005383055e-08,7.842022365422198883e-08,8.053968915839014711e-08,8.265915466255830540e-08,8.477862016672646368e-08,8.689808567089462196e-08,8.901755117506278025e-08,9.113701667923093853e-08,9.325648218339909681e-08,9.537594768756725510e-08,9.749541319173541338e-08,9.961487869590357166e-08,1.017343442000717299e-07,1.038538097042398882e-07,1.059732752084080465e-07,1.080927407125762048e-07,1.102122062167443631e-07,1.123316717209125214e-07,1.144511372250806796e-07,1.165706027292488379e-07,1.186900682334169962e-07,1.208095337375851545e-07,1.229289992417533128e-07,1.250484647459214711e-07,1.271679302500896293e-07,1.292873957542577876e-07,1.314068612584259459e-07,1.335263267625941042e-07 +0.000000000000000000e+00,2.193320912055034849e-09,4.386641824110069698e-09,6.579962736165104547e-09,8.773283648220139396e-09,1.096660456027517507e-08,1.315992547233021075e-08,1.535324638438524642e-08,1.754656729644028210e-08,1.973988820849531778e-08,2.193320912055035345e-08,2.412653003260538913e-08,2.631985094466042481e-08,2.851317185671546048e-08,3.070649276877049947e-08,3.289981368082554176e-08,3.509313459288058405e-08,3.728645550493562635e-08,3.947977641699066864e-08,4.167309732904571094e-08,4.386641824110075323e-08,4.605973915315579552e-08,4.825306006521083782e-08,5.044638097726588011e-08,5.263970188932092240e-08,5.483302280137596470e-08,5.702634371343100699e-08,5.921966462548604928e-08,6.141298553754109158e-08,6.360630644959613387e-08,6.579962736165117617e-08,6.799294827370621846e-08,7.018626918576126075e-08,7.237959009781630305e-08,7.457291100987134534e-08,7.676623192192638763e-08,7.895955283398142993e-08,8.115287374603647222e-08,8.334619465809151452e-08,8.553951557014655681e-08,8.773283648220159910e-08,8.992615739425664140e-08,9.211947830631168369e-08,9.431279921836672598e-08,9.650612013042176828e-08,9.869944104247681057e-08,1.008927619545318529e-07,1.030860828665868952e-07,1.052794037786419375e-07,1.074727246906969797e-07,1.096660456027520220e-07,1.118593665148070643e-07,1.140526874268621066e-07,1.162460083389171489e-07,1.184393292509721912e-07,1.206326501630272335e-07,1.228259710750822626e-07,1.250192919871372916e-07,1.272126128991923207e-07,1.294059338112473497e-07,1.315992547233023788e-07,1.337925756353574079e-07,1.359858965474124369e-07,1.381792174594674660e-07 +0.000000000000000000e+00,2.834396831372749029e-09,5.668793662745498059e-09,8.503190494118247502e-09,1.133758732549099777e-08,1.417198415686374804e-08,1.700638098823649831e-08,1.984077781960924693e-08,2.267517465098199554e-08,2.550957148235474416e-08,2.834396831372749278e-08,3.117836514510024139e-08,3.401276197647299001e-08,3.684715880784573862e-08,3.968155563921848724e-08,4.251595247059123586e-08,4.535034930196398447e-08,4.818474613333673309e-08,5.101914296470948170e-08,5.385353979608223032e-08,5.668793662745497894e-08,5.952233345882772755e-08,6.235673029020048278e-08,6.519112712157323802e-08,6.802552395294599325e-08,7.085992078431874848e-08,7.369431761569150372e-08,7.652871444706425895e-08,7.936311127843701418e-08,8.219750810980976942e-08,8.503190494118252465e-08,8.786630177255527988e-08,9.070069860392803512e-08,9.353509543530079035e-08,9.636949226667354558e-08,9.920388909804630082e-08,1.020382859294190561e-07,1.048726827607918113e-07,1.077070795921645665e-07,1.105414764235373218e-07,1.133758732549100770e-07,1.162102700862828322e-07,1.190446669176555875e-07,1.218790637490283427e-07,1.247134605804010979e-07,1.275478574117738532e-07,1.303822542431466084e-07,1.332166510745193636e-07,1.360510479058921189e-07,1.388854447372648741e-07,1.417198415686376293e-07,1.445542384000103846e-07,1.473886352313831398e-07,1.502230320627558950e-07,1.530574288941286503e-07,1.558918257255014055e-07,1.587262225568741607e-07,1.615606193882469160e-07,1.643950162196196712e-07,1.672294130509924264e-07,1.700638098823651817e-07,1.728982067137379369e-07,1.757326035451106921e-07,1.785670003764834474e-07 +0.000000000000000000e+00,6.360790571504087085e-09,1.272158114300817417e-08,1.908237171451226125e-08,2.544316228601634834e-08,3.180395285752043542e-08,3.816474342902452251e-08,4.452553400052860959e-08,5.088632457203269668e-08,5.724711514353678376e-08,6.360790571504087085e-08,6.996869628654496455e-08,7.632948685804905825e-08,8.269027742955315195e-08,8.905106800105724565e-08,9.541185857256133936e-08,1.017726491440654331e-07,1.081334397155695268e-07,1.144942302870736205e-07,1.208550208585777142e-07,1.272158114300818211e-07,1.335766020015859280e-07,1.399373925730900350e-07,1.462981831445941419e-07,1.526589737160982488e-07,1.590197642876023558e-07,1.653805548591064627e-07,1.717413454306105697e-07,1.781021360021146766e-07,1.844629265736187835e-07,1.908237171451228905e-07,1.971845077166269974e-07,2.035452982881311043e-07,2.099060888596352113e-07,2.162668794311393182e-07,2.226276700026434252e-07,2.289884605741475321e-07,2.353492511456516390e-07,2.417100417171557460e-07,2.480708322886598529e-07,2.544316228601639598e-07,2.607924134316680668e-07,2.671532040031721737e-07,2.735139945746762806e-07,2.798747851461803876e-07,2.862355757176844945e-07,2.925963662891886015e-07,2.989571568606927084e-07,3.053179474321968153e-07,3.116787380037009223e-07,3.180395285752050292e-07,3.244003191467091361e-07,3.307611097182132431e-07,3.371219002897173500e-07,3.434826908612214570e-07,3.498434814327255639e-07,3.562042720042296708e-07,3.625650625757337778e-07,3.689258531472378847e-07,3.752866437187419916e-07,3.816474342902460986e-07,3.880082248617502055e-07,3.943690154332543125e-07,4.007298060047584194e-07 +0.000000000000000000e+00,6.341097292112793072e-09,1.268219458422558614e-08,1.902329187633837922e-08,2.536438916845117229e-08,3.170548646056396867e-08,3.804658375267676505e-08,4.438768104478956143e-08,5.072877833690235781e-08,5.706987562901515419e-08,6.341097292112795057e-08,6.975207021324074695e-08,7.609316750535354333e-08,8.243426479746633971e-08,8.877536208957913609e-08,9.511645938169193247e-08,1.014575566738047289e-07,1.077986539659175252e-07,1.141397512580303216e-07,1.204808485501431180e-07,1.268219458422559276e-07,1.331630431343687372e-07,1.395041404264815468e-07,1.458452377185943565e-07,1.521863350107071661e-07,1.585274323028199757e-07,1.648685295949327853e-07,1.712096268870455949e-07,1.775507241791584045e-07,1.838918214712712141e-07,1.902329187633840238e-07,1.965740160554968334e-07,2.029151133476096430e-07,2.092562106397224526e-07,2.155973079318352622e-07,2.219384052239480718e-07,2.282795025160608815e-07,2.346205998081736911e-07,2.409616971002865007e-07,2.473027943923993103e-07,2.536438916845121199e-07,2.599849889766249295e-07,2.663260862687377391e-07,2.726671835608505488e-07,2.790082808529633584e-07,2.853493781450761680e-07,2.916904754371889776e-07,2.980315727293017872e-07,3.043726700214145968e-07,3.107137673135274065e-07,3.170548646056402161e-07,3.233959618977530257e-07,3.297370591898658353e-07,3.360781564819786449e-07,3.424192537740914545e-07,3.487603510662042641e-07,3.551014483583170738e-07,3.614425456504298834e-07,3.677836429425426930e-07,3.741247402346555026e-07,3.804658375267683122e-07,3.868069348188811218e-07,3.931480321109939315e-07,3.994891294031067411e-07 +0.000000000000000000e+00,2.120432870934291043e-09,4.240865741868582086e-09,6.361298612802873129e-09,8.481731483737164173e-09,1.060216435467145604e-08,1.272259722560574791e-08,1.484303009654003978e-08,1.696346296747433165e-08,1.908389583840862352e-08,2.120432870934291539e-08,2.332476158027720726e-08,2.544519445121149914e-08,2.756562732214579101e-08,2.968606019308008288e-08,3.180649306401437144e-08,3.392692593494865669e-08,3.604735880588294194e-08,3.816779167681722720e-08,4.028822454775151245e-08,4.240865741868579770e-08,4.452909028962008295e-08,4.664952316055436821e-08,4.876995603148865346e-08,5.089038890242293871e-08,5.301082177335722397e-08,5.513125464429150922e-08,5.725168751522579447e-08,5.937212038616007972e-08,6.149255325709436498e-08,6.361298612802865023e-08,6.573341899896293548e-08,6.785385186989722074e-08,6.997428474083150599e-08,7.209471761176579124e-08,7.421515048270007650e-08,7.633558335363436175e-08,7.845601622456864700e-08,8.057644909550293225e-08,8.269688196643721751e-08,8.481731483737150276e-08,8.693774770830578801e-08,8.905818057924007327e-08,9.117861345017435852e-08,9.329904632110864377e-08,9.541947919204292902e-08,9.753991206297721428e-08,9.966034493391149953e-08,1.017807778048457848e-07,1.039012106757800700e-07,1.060216435467143553e-07,1.081420764176486405e-07,1.102625092885829258e-07,1.123829421595172110e-07,1.145033750304514963e-07,1.166238079013857816e-07,1.187442407723200668e-07,1.208646736432543388e-07,1.229851065141885976e-07,1.251055393851228564e-07,1.272259722560571152e-07,1.293464051269913740e-07,1.314668379979256327e-07,1.335872708688598915e-07 +0.000000000000000000e+00,4.308827514987218501e-09,8.617655029974437001e-09,1.292648254496165633e-08,1.723531005994887731e-08,2.154413757493609829e-08,2.585296508992331928e-08,3.016179260491054026e-08,3.447062011989776124e-08,3.877944763488498222e-08,4.308827514987220321e-08,4.739710266485942419e-08,5.170593017984664517e-08,5.601475769483386615e-08,6.032358520982108052e-08,6.463241272480829488e-08,6.894124023979550925e-08,7.325006775478272361e-08,7.755889526976993798e-08,8.186772278475715234e-08,8.617655029974436671e-08,9.048537781473158107e-08,9.479420532971879544e-08,9.910303284470600980e-08,1.034118603596932242e-07,1.077206878746804385e-07,1.120295153896676529e-07,1.163383429046548673e-07,1.206471704196420816e-07,1.249559979346292960e-07,1.292648254496165104e-07,1.335736529646037247e-07,1.378824804795909391e-07,1.421913079945781534e-07,1.465001355095653678e-07,1.508089630245525822e-07,1.551177905395397965e-07,1.594266180545270109e-07,1.637354455695142253e-07,1.680442730845014396e-07,1.723531005994886540e-07,1.766619281144758684e-07,1.809707556294630827e-07,1.852795831444502971e-07,1.895884106594375115e-07,1.938972381744247258e-07,1.982060656894119402e-07,2.025148932043991546e-07,2.068237207193863689e-07,2.111325482343735833e-07,2.154413757493607977e-07,2.197502032643480120e-07,2.240590307793352264e-07,2.283678582943224407e-07,2.326766858093096551e-07,2.369855133242968695e-07,2.412943408392841103e-07,2.456031683542713511e-07,2.499119958692585920e-07,2.542208233842458328e-07,2.585296508992330736e-07,2.628384784142203145e-07,2.671473059292075553e-07,2.714561334441947962e-07 +0.000000000000000000e+00,5.298208974352754055e-09,1.059641794870550811e-08,1.589462692305826134e-08,2.119283589741101291e-08,2.649104487176376448e-08,3.178925384611651606e-08,3.708746282046926763e-08,4.238567179482201920e-08,4.768388076917477078e-08,5.298208974352752235e-08,5.828029871788027392e-08,6.357850769223301888e-08,6.887671666658576384e-08,7.417492564093850879e-08,7.947313461529125375e-08,8.477134358964399870e-08,9.006955256399674366e-08,9.536776153834948861e-08,1.006659705127022336e-07,1.059641794870549785e-07,1.112623884614077235e-07,1.165605974357604684e-07,1.218588064101132002e-07,1.271570153844659319e-07,1.324552243588186636e-07,1.377534333331713953e-07,1.430516423075241270e-07,1.483498512818768588e-07,1.536480602562295905e-07,1.589462692305823222e-07,1.642444782049350539e-07,1.695426871792877856e-07,1.748408961536405174e-07,1.801391051279932491e-07,1.854373141023459808e-07,1.907355230766987125e-07,1.960337320510514443e-07,2.013319410254041760e-07,2.066301499997569077e-07,2.119283589741096394e-07,2.172265679484623711e-07,2.225247769228151029e-07,2.278229858971678346e-07,2.331211948715205663e-07,2.384194038458732980e-07,2.437176128202260297e-07,2.490158217945787615e-07,2.543140307689314932e-07,2.596122397432842249e-07,2.649104487176369566e-07,2.702086576919896883e-07,2.755068666663424201e-07,2.808050756406951518e-07,2.861032846150478835e-07,2.914014935894006152e-07,2.966997025637533470e-07,3.019979115381060787e-07,3.072961205124588104e-07,3.125943294868115421e-07,3.178925384611642738e-07,3.231907474355170056e-07,3.284889564098697373e-07,3.337871653842224690e-07 +0.000000000000000000e+00,6.345291972152813647e-09,1.269058394430562729e-08,1.903587591645844012e-08,2.538116788861125128e-08,3.172645986076406576e-08,3.807175183291688023e-08,4.441704380506969470e-08,5.076233577722250918e-08,5.710762774937532365e-08,6.345291972152813151e-08,6.979821169368093937e-08,7.614350366583374723e-08,8.248879563798655508e-08,8.883408761013936294e-08,9.517937958229217080e-08,1.015246715544449787e-07,1.078699635265977865e-07,1.142152554987505944e-07,1.205605474709034022e-07,1.269058394430562101e-07,1.332511314152090179e-07,1.395964233873618258e-07,1.459417153595146337e-07,1.522870073316674415e-07,1.586322993038202494e-07,1.649775912759730572e-07,1.713228832481258651e-07,1.776681752202786729e-07,1.840134671924314808e-07,1.903587591645842887e-07,1.967040511367370965e-07,2.030493431088899044e-07,2.093946350810427122e-07,2.157399270531955201e-07,2.220852190253483279e-07,2.284305109975011358e-07,2.347758029696539437e-07,2.411210949418067515e-07,2.474663869139595594e-07,2.538116788861123672e-07,2.601569708582651751e-07,2.665022628304179829e-07,2.728475548025707908e-07,2.791928467747235987e-07,2.855381387468764065e-07,2.918834307190292144e-07,2.982287226911820222e-07,3.045740146633348301e-07,3.109193066354876379e-07,3.172645986076404458e-07,3.236098905797932537e-07,3.299551825519460615e-07,3.363004745240988694e-07,3.426457664962516772e-07,3.489910584684044851e-07,3.553363504405572929e-07,3.616816424127101008e-07,3.680269343848629087e-07,3.743722263570157165e-07,3.807175183291685244e-07,3.870628103013213322e-07,3.934081022734741401e-07,3.997533942456269479e-07 +0.000000000000000000e+00,5.301630404218748247e-09,1.060326080843749649e-08,1.590489121265624474e-08,2.120652161687499299e-08,2.650815202109374124e-08,3.180978242531248948e-08,3.711141282953124104e-08,4.241304323374999260e-08,4.771467363796874415e-08,5.301630404218749571e-08,5.831793444640624726e-08,6.361956485062499220e-08,6.892119525484373714e-08,7.422282565906248208e-08,7.952445606328122702e-08,8.482608646749997196e-08,9.012771687171871690e-08,9.542934727593746183e-08,1.007309776801562068e-07,1.060326080843749517e-07,1.113342384885936967e-07,1.166358688928124416e-07,1.219374992970311865e-07,1.272391297012499315e-07,1.325407601054686764e-07,1.378423905096874213e-07,1.431440209139061663e-07,1.484456513181249112e-07,1.537472817223436562e-07,1.590489121265624011e-07,1.643505425307811460e-07,1.696521729349998910e-07,1.749538033392186359e-07,1.802554337434373809e-07,1.855570641476561258e-07,1.908586945518748707e-07,1.961603249560936157e-07,2.014619553603123606e-07,2.067635857645311055e-07,2.120652161687498505e-07,2.173668465729685954e-07,2.226684769771873404e-07,2.279701073814060853e-07,2.332717377856248302e-07,2.385733681898435752e-07,2.438749985940623201e-07,2.491766289982810651e-07,2.544782594024998100e-07,2.597798898067185549e-07,2.650815202109372999e-07,2.703831506151560448e-07,2.756847810193747897e-07,2.809864114235935347e-07,2.862880418278122796e-07,2.915896722320310246e-07,2.968913026362497695e-07,3.021929330404685144e-07,3.074945634446872594e-07,3.127961938489060043e-07,3.180978242531247493e-07,3.233994546573434942e-07,3.287010850615622391e-07,3.340027154657809841e-07 +0.000000000000000000e+00,2.834396831373471158e-09,5.668793662746942316e-09,8.503190494120413061e-09,1.133758732549388298e-08,1.417198415686735290e-08,1.700638098824082281e-08,1.984077781961429273e-08,2.267517465098776265e-08,2.550957148236123257e-08,2.834396831373470248e-08,3.117836514510816909e-08,3.401276197648163901e-08,3.684715880785510893e-08,3.968155563922857884e-08,4.251595247060204876e-08,4.535034930197551868e-08,4.818474613334898860e-08,5.101914296472245851e-08,5.385353979609592843e-08,5.668793662746939835e-08,5.952233345884286827e-08,6.235673029021633818e-08,6.519112712158980810e-08,6.802552395296327802e-08,7.085992078433674793e-08,7.369431761571021785e-08,7.652871444708368777e-08,7.936311127845715769e-08,8.219750810983062760e-08,8.503190494120409752e-08,8.786630177257756744e-08,9.070069860395103736e-08,9.353509543532450727e-08,9.636949226669797719e-08,9.920388909807144711e-08,1.020382859294449170e-07,1.048726827608183869e-07,1.077070795921918569e-07,1.105414764235653268e-07,1.133758732549387967e-07,1.162102700863122666e-07,1.190446669176857365e-07,1.218790637490592064e-07,1.247134605804326764e-07,1.275478574118061463e-07,1.303822542431796162e-07,1.332166510745530861e-07,1.360510479059265560e-07,1.388854447373000260e-07,1.417198415686734959e-07,1.445542384000469658e-07,1.473886352314204357e-07,1.502230320627939056e-07,1.530574288941673755e-07,1.558918257255408455e-07,1.587262225569143154e-07,1.615606193882877853e-07,1.643950162196612552e-07,1.672294130510347251e-07,1.700638098824081950e-07,1.728982067137816650e-07,1.757326035451551349e-07,1.785670003765286048e-07 +0.000000000000000000e+00,6.360790571504551133e-09,1.272158114300910227e-08,1.908237171451365423e-08,2.544316228601820784e-08,3.180395285752275815e-08,3.816474342902730845e-08,4.452553400053185876e-08,5.088632457203640906e-08,5.724711514354095937e-08,6.360790571504551629e-08,6.996869628655007322e-08,7.632948685805463014e-08,8.269027742955918706e-08,8.905106800106374398e-08,9.541185857256830091e-08,1.017726491440728578e-07,1.081334397155774148e-07,1.144942302870819717e-07,1.208550208585865286e-07,1.272158114300910855e-07,1.335766020015956424e-07,1.399373925731001994e-07,1.462981831446047563e-07,1.526589737161093132e-07,1.590197642876138701e-07,1.653805548591184271e-07,1.717413454306229840e-07,1.781021360021275409e-07,1.844629265736320978e-07,1.908237171451366548e-07,1.971845077166412117e-07,2.035452982881457686e-07,2.099060888596503255e-07,2.162668794311548824e-07,2.226276700026594394e-07,2.289884605741639963e-07,2.353492511456685532e-07,2.417100417171731101e-07,2.480708322886776935e-07,2.544316228601822769e-07,2.607924134316868603e-07,2.671532040031914437e-07,2.735139945746960271e-07,2.798747851462006105e-07,2.862355757177051939e-07,2.925963662892097773e-07,2.989571568607143607e-07,3.053179474322189441e-07,3.116787380037235275e-07,3.180395285752281109e-07,3.244003191467326942e-07,3.307611097182372776e-07,3.371219002897418610e-07,3.434826908612464444e-07,3.498434814327510278e-07,3.562042720042556112e-07,3.625650625757601946e-07,3.689258531472647780e-07,3.752866437187693614e-07,3.816474342902739448e-07,3.880082248617785282e-07,3.943690154332831116e-07,4.007298060047876950e-07 +0.000000000000000000e+00,6.345291972153025406e-09,1.269058394430605081e-08,1.903587591645907539e-08,2.538116788861209831e-08,3.172645986076512455e-08,3.807175183291815078e-08,4.441704380507117701e-08,5.076233577722420325e-08,5.710762774937722948e-08,6.345291972153024909e-08,6.979821169368326871e-08,7.614350366583628832e-08,8.248879563798930794e-08,8.883408761014232756e-08,9.517937958229534717e-08,1.015246715544483668e-07,1.078699635266013864e-07,1.142152554987544060e-07,1.205605474709074256e-07,1.269058394430604452e-07,1.332511314152134649e-07,1.395964233873664845e-07,1.459417153595195041e-07,1.522870073316725237e-07,1.586322993038255433e-07,1.649775912759785629e-07,1.713228832481315826e-07,1.776681752202846022e-07,1.840134671924376218e-07,1.903587591645906414e-07,1.967040511367436610e-07,2.030493431088966806e-07,2.093946350810497002e-07,2.157399270532027199e-07,2.220852190253557395e-07,2.284305109975087591e-07,2.347758029696617787e-07,2.411210949418147983e-07,2.474663869139678179e-07,2.538116788861208376e-07,2.601569708582738572e-07,2.665022628304268768e-07,2.728475548025798964e-07,2.791928467747329160e-07,2.855381387468859356e-07,2.918834307190389552e-07,2.982287226911919749e-07,3.045740146633449945e-07,3.109193066354980141e-07,3.172645986076510337e-07,3.236098905798040533e-07,3.299551825519570729e-07,3.363004745241100926e-07,3.426457664962631122e-07,3.489910584684161318e-07,3.553363504405691514e-07,3.616816424127221710e-07,3.680269343848751906e-07,3.743722263570282102e-07,3.807175183291812299e-07,3.870628103013342495e-07,3.934081022734872691e-07,3.997533942456402887e-07 +0.000000000000000000e+00,2.120432870934744752e-09,4.240865741869489503e-09,6.361298612804233842e-09,8.481731483738977352e-09,1.060216435467372086e-08,1.272259722560846437e-08,1.484303009654320789e-08,1.696346296747795140e-08,1.908389583841269656e-08,2.120432870934744173e-08,2.332476158028218689e-08,2.544519445121693206e-08,2.756562732215167722e-08,2.968606019308642239e-08,3.180649306402116755e-08,3.392692593495590941e-08,3.604735880589065127e-08,3.816779167682539312e-08,4.028822454776013498e-08,4.240865741869487684e-08,4.452909028962961869e-08,4.664952316056436055e-08,4.876995603149910241e-08,5.089038890243384426e-08,5.301082177336858612e-08,5.513125464430332798e-08,5.725168751523806983e-08,5.937212038617281169e-08,6.149255325710756016e-08,6.361298612804230864e-08,6.573341899897705711e-08,6.785385186991180558e-08,6.997428474084655406e-08,7.209471761178130253e-08,7.421515048271605101e-08,7.633558335365079948e-08,7.845601622458554796e-08,8.057644909552029643e-08,8.269688196645504490e-08,8.481731483738979338e-08,8.693774770832454185e-08,8.905818057925929033e-08,9.117861345019403880e-08,9.329904632112878727e-08,9.541947919206353575e-08,9.753991206299828422e-08,9.966034493393303270e-08,1.017807778048677812e-07,1.039012106758025296e-07,1.060216435467372781e-07,1.081420764176720266e-07,1.102625092886067751e-07,1.123829421595415235e-07,1.145033750304762720e-07,1.166238079014110205e-07,1.187442407723457690e-07,1.208646736432805174e-07,1.229851065142152791e-07,1.251055393851500409e-07,1.272259722560848026e-07,1.293464051270195643e-07,1.314668379979543260e-07,1.335872708688890877e-07 +0.000000000000000000e+00,4.308827514987912505e-09,8.617655029975825011e-09,1.292648254496373752e-08,1.723531005995165002e-08,2.154413757493956253e-08,2.585296508992747503e-08,3.016179260491538423e-08,3.447062011990329342e-08,3.877944763489120262e-08,4.308827514987911182e-08,4.739710266486702101e-08,5.170593017985493021e-08,5.601475769484283941e-08,6.032358520983074199e-08,6.463241272481864457e-08,6.894124023980654714e-08,7.325006775479444972e-08,7.755889526978235230e-08,8.186772278477025488e-08,8.617655029975815746e-08,9.048537781474606004e-08,9.479420532973396262e-08,9.910303284472186520e-08,1.034118603597097678e-07,1.077206878746976704e-07,1.120295153896855729e-07,1.163383429046734755e-07,1.206471704196613781e-07,1.249559979346492807e-07,1.292648254496371833e-07,1.335736529646250858e-07,1.378824804796129884e-07,1.421913079946008910e-07,1.465001355095887936e-07,1.508089630245766961e-07,1.551177905395645987e-07,1.594266180545525013e-07,1.637354455695404039e-07,1.680442730845283065e-07,1.723531005995162090e-07,1.766619281145041116e-07,1.809707556294920142e-07,1.852795831444799168e-07,1.895884106594678194e-07,1.938972381744557219e-07,1.982060656894436245e-07,2.025148932044315271e-07,2.068237207194194297e-07,2.111325482344073323e-07,2.154413757493952348e-07,2.197502032643831374e-07,2.240590307793710400e-07,2.283678582943589426e-07,2.326766858093468451e-07,2.369855133243347477e-07,2.412943408393226503e-07,2.456031683543105794e-07,2.499119958692985084e-07,2.542208233842864375e-07,2.585296508992743665e-07,2.628384784142622956e-07,2.671473059292502246e-07,2.714561334442381536e-07 +0.000000000000000000e+00,5.298208974352883922e-09,1.059641794870576784e-08,1.589462692305865177e-08,2.119283589741153569e-08,2.649104487176441961e-08,3.178925384611730353e-08,3.708746282047018746e-08,4.238567179482307138e-08,4.768388076917595530e-08,5.298208974352883922e-08,5.828029871788172314e-08,6.357850769223460707e-08,6.887671666658749761e-08,7.417492564094038815e-08,7.947313461529327869e-08,8.477134358964616923e-08,9.006955256399905976e-08,9.536776153835195030e-08,1.006659705127048408e-07,1.059641794870577314e-07,1.112623884614106219e-07,1.165605974357635125e-07,1.218588064101164030e-07,1.271570153844692935e-07,1.324552243588221841e-07,1.377534333331750746e-07,1.430516423075279652e-07,1.483498512818808557e-07,1.536480602562337462e-07,1.589462692305866368e-07,1.642444782049395273e-07,1.695426871792924179e-07,1.748408961536453084e-07,1.801391051279981989e-07,1.854373141023510895e-07,1.907355230767039800e-07,1.960337320510568706e-07,2.013319410254097611e-07,2.066301499997626516e-07,2.119283589741155422e-07,2.172265679484684327e-07,2.225247769228213233e-07,2.278229858971742138e-07,2.331211948715271043e-07,2.384194038458800213e-07,2.437176128202329648e-07,2.490158217945859083e-07,2.543140307689388518e-07,2.596122397432917953e-07,2.649104487176447387e-07,2.702086576919976822e-07,2.755068666663506257e-07,2.808050756407035692e-07,2.861032846150565127e-07,2.914014935894094561e-07,2.966997025637623996e-07,3.019979115381153431e-07,3.072961205124682866e-07,3.125943294868212301e-07,3.178925384611741735e-07,3.231907474355271170e-07,3.284889564098800605e-07,3.337871653842330040e-07 +0.000000000000000000e+00,4.260719875568749235e-09,8.521439751137498469e-09,1.278215962670624688e-08,1.704287950227499363e-08,2.130359937784374038e-08,2.556431925341248714e-08,2.982503912898123389e-08,3.408575900454998064e-08,3.834647888011872739e-08,4.260719875568747415e-08,4.686791863125622090e-08,5.112863850682496765e-08,5.538935838239371441e-08,5.965007825796245454e-08,6.391079813353120130e-08,6.817151800909994805e-08,7.243223788466869480e-08,7.669295776023744155e-08,8.095367763580618831e-08,8.521439751137493506e-08,8.947511738694368181e-08,9.373583726251242857e-08,9.799655713808117532e-08,1.022572770136499221e-07,1.065179968892186688e-07,1.107787167647874156e-07,1.150394366403561623e-07,1.193001565159249091e-07,1.235608763914936558e-07,1.278215962670624026e-07,1.320823161426311493e-07,1.363430360181998961e-07,1.406037558937686429e-07,1.448644757693373896e-07,1.491251956449061364e-07,1.533859155204748831e-07,1.576466353960436299e-07,1.619073552716123766e-07,1.661680751471811234e-07,1.704287950227498701e-07,1.746895148983186169e-07,1.789502347738873636e-07,1.832109546494561104e-07,1.874716745250248571e-07,1.917323944005936039e-07,1.959931142761623506e-07,2.002538341517310974e-07,2.045145540272998441e-07,2.087752739028685909e-07,2.130359937784373377e-07,2.172967136540060844e-07,2.215574335295748312e-07,2.258181534051435779e-07,2.300788732807123247e-07,2.343395931562810714e-07,2.386003130318498182e-07,2.428610329074185914e-07,2.471217527829873646e-07,2.513824726585561378e-07,2.556431925341249111e-07,2.599039124096936843e-07,2.641646322852624575e-07,2.684253521608312307e-07 +0.000000000000000000e+00,8.188985361816735825e-09,1.637797072363347165e-08,2.456695608545020913e-08,3.275594144726694992e-08,4.094492680908369071e-08,4.913391217090043149e-08,5.732289753271717228e-08,6.551188289453391307e-08,7.370086825635066048e-08,8.188985361816740788e-08,9.007883897998415529e-08,9.826782434180090269e-08,1.064568097036176501e-07,1.146457950654343975e-07,1.228347804272511449e-07,1.310237657890679056e-07,1.392127511508846662e-07,1.474017365127014268e-07,1.555907218745181875e-07,1.637797072363349481e-07,1.719686925981517088e-07,1.801576779599684694e-07,1.883466633217852300e-07,1.965356486836019907e-07,2.047246340454187513e-07,2.129136194072355120e-07,2.211026047690522726e-07,2.292915901308690332e-07,2.374805754926857939e-07,2.456695608545025545e-07,2.538585462163192887e-07,2.620475315781360229e-07,2.702365169399527570e-07,2.784255023017694912e-07,2.866144876635862254e-07,2.948034730254029595e-07,3.029924583872196937e-07,3.111814437490364279e-07,3.193704291108531621e-07,3.275594144726698962e-07,3.357483998344866304e-07,3.439373851963033646e-07,3.521263705581200987e-07,3.603153559199368329e-07,3.685043412817535671e-07,3.766933266435703013e-07,3.848823120053870354e-07,3.930712973672037696e-07,4.012602827290205038e-07,4.094492680908372379e-07,4.176382534526539721e-07,4.258272388144707063e-07,4.340162241762874405e-07,4.422052095381041746e-07,4.503941948999209088e-07,4.585831802617376430e-07,4.667721656235543771e-07,4.749611509853711113e-07,4.831501363471878455e-07,4.913391217090045796e-07,4.995281070708213138e-07,5.077170924326380480e-07,5.159060777944547822e-07 +0.000000000000000000e+00,8.173039976096451609e-09,1.634607995219290322e-08,2.451911992828935483e-08,3.269215990438580644e-08,4.086519988048226135e-08,4.903823985657871627e-08,5.721127983267517119e-08,6.538431980877162611e-08,7.355735978486808103e-08,8.173039976096453594e-08,8.990343973706099086e-08,9.807647971315744578e-08,1.062495196892539007e-07,1.144225596653503556e-07,1.225955996414467973e-07,1.307686396175432257e-07,1.389416795936396542e-07,1.471147195697360826e-07,1.552877595458325111e-07,1.634607995219289395e-07,1.716338394980253680e-07,1.798068794741217964e-07,1.879799194502182249e-07,1.961529594263146533e-07,2.043259994024110818e-07,2.124990393785075102e-07,2.206720793546039387e-07,2.288451193307003671e-07,2.370181593067967956e-07,2.451911992828932240e-07,2.533642392589896525e-07,2.615372792350860809e-07,2.697103192111825094e-07,2.778833591872789378e-07,2.860563991633753663e-07,2.942294391394717947e-07,3.024024791155682232e-07,3.105755190916646516e-07,3.187485590677610801e-07,3.269215990438575085e-07,3.350946390199539370e-07,3.432676789960503654e-07,3.514407189721467938e-07,3.596137589482432223e-07,3.677867989243396507e-07,3.759598389004360792e-07,3.841328788765325076e-07,3.923059188526289361e-07,4.004789588287253645e-07,4.086519988048217930e-07,4.168250387809182214e-07,4.249980787570146499e-07,4.331711187331110783e-07,4.413441587092075068e-07,4.495171986853039352e-07,4.576902386614003637e-07,4.658632786374967921e-07,4.740363186135932206e-07,4.822093585896895961e-07,4.903823985657859186e-07,4.985554385418822412e-07,5.067284785179785638e-07,5.149015184940748864e-07 +0.000000000000000000e+00,3.560796949527845521e-09,7.121593899055691042e-09,1.068239084858353656e-08,1.424318779811138208e-08,1.780398474763922926e-08,2.136478169716707643e-08,2.492557864669492361e-08,2.848637559622277078e-08,3.204717254575061796e-08,3.560796949527846513e-08,3.916876644480631231e-08,4.272956339433415949e-08,4.629036034386200666e-08,4.985115729338985384e-08,5.341195424291770101e-08,5.697275119244554819e-08,6.053354814197339536e-08,6.409434509150123592e-08,6.765514204102907648e-08,7.121593899055691703e-08,7.477673594008475759e-08,7.833753288961259815e-08,8.189832983914043871e-08,8.545912678866827927e-08,8.901992373819611982e-08,9.258072068772396038e-08,9.614151763725180094e-08,9.970231458677964150e-08,1.032631115363074821e-07,1.068239084858353226e-07,1.103847054353631632e-07,1.139455023848910037e-07,1.175062993344188443e-07,1.210670962839466848e-07,1.246278932334745254e-07,1.281886901830023660e-07,1.317494871325302065e-07,1.353102840820580471e-07,1.388710810315858876e-07,1.424318779811137282e-07,1.459926749306415687e-07,1.495534718801694093e-07,1.531142688296972499e-07,1.566750657792250904e-07,1.602358627287529310e-07,1.637966596782807715e-07,1.673574566278086121e-07,1.709182535773364527e-07,1.744790505268642932e-07,1.780398474763921338e-07,1.816006444259199743e-07,1.851614413754478149e-07,1.887222383249756554e-07,1.922830352745034960e-07,1.958438322240313366e-07,1.994046291735591771e-07,2.029654261230870177e-07,2.065262230726148582e-07,2.100870200221426988e-07,2.136478169716705393e-07,2.172086139211983799e-07,2.207694108707262205e-07,2.243302078202540610e-07 +0.000000000000000000e+00,6.063138102466288241e-09,1.212627620493257648e-08,1.818941430739886555e-08,2.425255240986515627e-08,3.031569051233144369e-08,3.637882861479773110e-08,4.244196671726401852e-08,4.850510481973030593e-08,5.456824292219659334e-08,6.063138102466288738e-08,6.669451912712918141e-08,7.275765722959547544e-08,7.882079533206176947e-08,8.488393343452806350e-08,9.094707153699435753e-08,9.701020963946065156e-08,1.030733477419269456e-07,1.091364858443932396e-07,1.151996239468595337e-07,1.212627620493258277e-07,1.273259001517921350e-07,1.333890382542584422e-07,1.394521763567247495e-07,1.455153144591910568e-07,1.515784525616573640e-07,1.576415906641236713e-07,1.637047287665899786e-07,1.697678668690562858e-07,1.758310049715225931e-07,1.818941430739889004e-07,1.879572811764552076e-07,1.940204192789215149e-07,2.000835573813878222e-07,2.061466954838541294e-07,2.122098335863204367e-07,2.182729716887867440e-07,2.243361097912530512e-07,2.303992478937193585e-07,2.364623859961856658e-07,2.425255240986519730e-07,2.485886622011182803e-07,2.546518003035845876e-07,2.607149384060508948e-07,2.667780765085172021e-07,2.728412146109835094e-07,2.789043527134498166e-07,2.849674908159161239e-07,2.910306289183824312e-07,2.970937670208487384e-07,3.031569051233150457e-07,3.092200432257813529e-07,3.152831813282476602e-07,3.213463194307139675e-07,3.274094575331802747e-07,3.334725956356465820e-07,3.395357337381128893e-07,3.455988718405791965e-07,3.516620099430455038e-07,3.577251480455118111e-07,3.637882861479781183e-07,3.698514242504444256e-07,3.759145623529107329e-07,3.819777004553770401e-07 +0.000000000000000000e+00,7.342542375100935982e-09,1.468508475020187196e-08,2.202762712530280877e-08,2.937016950040374724e-08,3.671271187550468570e-08,4.405525425060562416e-08,5.139779662570656263e-08,5.874033900080750109e-08,6.608288137590844617e-08,7.342542375100938464e-08,8.076796612611032310e-08,8.811050850121126156e-08,9.545305087631220003e-08,1.027955932514131385e-07,1.101381356265140770e-07,1.174806780016150154e-07,1.248232203767159539e-07,1.321657627518168923e-07,1.395083051269178308e-07,1.468508475020187693e-07,1.541933898771197077e-07,1.615359322522206462e-07,1.688784746273215847e-07,1.762210170024225231e-07,1.835635593775234616e-07,1.909061017526244001e-07,1.982486441277253385e-07,2.055911865028262770e-07,2.129337288779272154e-07,2.202762712530281539e-07,2.276188136281290924e-07,2.349613560032300308e-07,2.423038983783309693e-07,2.496464407534319078e-07,2.569889831285328462e-07,2.643315255036337847e-07,2.716740678787347232e-07,2.790166102538356616e-07,2.863591526289366001e-07,2.937016950040375385e-07,3.010442373791384770e-07,3.083867797542394155e-07,3.157293221293403539e-07,3.230718645044412924e-07,3.304144068795422309e-07,3.377569492546431693e-07,3.450994916297441078e-07,3.524420340048450463e-07,3.597845763799459847e-07,3.671271187550469232e-07,3.744696611301478616e-07,3.818122035052488001e-07,3.891547458803497386e-07,3.964972882554506770e-07,4.038398306305516155e-07,4.111823730056525540e-07,4.185249153807534924e-07,4.258674577558544309e-07,4.332100001309553694e-07,4.405525425060563078e-07,4.478950848811572463e-07,4.552376272562581847e-07,4.625801696313591232e-07 +0.000000000000000000e+00,8.177431690004474881e-09,1.635486338000894976e-08,2.453229507001342299e-08,3.270972676001789291e-08,4.088715845002236282e-08,4.906459014002683274e-08,5.724202183003130266e-08,6.541945352003577258e-08,7.359688521004024250e-08,8.177431690004471241e-08,8.995174859004918233e-08,9.812918028005365225e-08,1.063066119700581222e-07,1.144840436600625921e-07,1.226614753500670620e-07,1.308389070400715187e-07,1.390163387300759754e-07,1.471937704200804321e-07,1.553712021100848887e-07,1.635486338000893454e-07,1.717260654900938021e-07,1.799034971800982588e-07,1.880809288701027155e-07,1.962583605601071722e-07,2.044357922501116288e-07,2.126132239401160855e-07,2.207906556301205422e-07,2.289680873201249989e-07,2.371455190101294556e-07,2.453229507001339122e-07,2.535003823901383954e-07,2.616778140801428786e-07,2.698552457701473617e-07,2.780326774601518449e-07,2.862101091501563280e-07,2.943875408401608112e-07,3.025649725301652943e-07,3.107424042201697775e-07,3.189198359101742606e-07,3.270972676001787438e-07,3.352746992901832269e-07,3.434521309801877101e-07,3.516295626701921932e-07,3.598069943601966764e-07,3.679844260502011595e-07,3.761618577402056427e-07,3.843392894302101258e-07,3.925167211202146090e-07,4.006941528102190922e-07,4.088715845002235753e-07,4.170490161902280585e-07,4.252264478802325416e-07,4.334038795702370248e-07,4.415813112602415079e-07,4.497587429502459911e-07,4.579361746402504742e-07,4.661136063302549574e-07,4.742910380202594405e-07,4.824684697102639237e-07,4.906459014002683539e-07,4.988233330902727841e-07,5.070007647802772143e-07,5.151781964702816445e-07 +0.000000000000000000e+00,7.323008909193462331e-09,1.464601781838692466e-08,2.196902672758038865e-08,2.929203563677385263e-08,3.661504454596731662e-08,4.393805345516077729e-08,5.126106236435423797e-08,5.858407127354769865e-08,6.590708018274115932e-08,7.323008909193462000e-08,8.055309800112808068e-08,8.787610691032154135e-08,9.519911581951500203e-08,1.025221247287084627e-07,1.098451336379019234e-07,1.171681425470953841e-07,1.244911514562888315e-07,1.318141603654822922e-07,1.391371692746757529e-07,1.464601781838692135e-07,1.537831870930626742e-07,1.611061960022561349e-07,1.684292049114495956e-07,1.757522138206430562e-07,1.830752227298365169e-07,1.903982316390299776e-07,1.977212405482234383e-07,2.050442494574168989e-07,2.123672583666103596e-07,2.196902672758038203e-07,2.270132761849972810e-07,2.343362850941907416e-07,2.416592940033842023e-07,2.489823029125776630e-07,2.563053118217711237e-07,2.636283207309645844e-07,2.709513296401580450e-07,2.782743385493515057e-07,2.855973474585449664e-07,2.929203563677384271e-07,3.002433652769318877e-07,3.075663741861253484e-07,3.148893830953188091e-07,3.222123920045122698e-07,3.295354009137057304e-07,3.368584098228991911e-07,3.441814187320926518e-07,3.515044276412861125e-07,3.588274365504795731e-07,3.661504454596730338e-07,3.734734543688664945e-07,3.807964632780599552e-07,3.881194721872534159e-07,3.954424810964468765e-07,4.027654900056403372e-07,4.100884989148337979e-07,4.174115078240272586e-07,4.247345167332207192e-07,4.320575256424141799e-07,4.393805345516076406e-07,4.467035434608011013e-07,4.540265523699945619e-07,4.613495612791880226e-07 +0.000000000000000000e+00,4.260719875569995796e-09,8.521439751139991592e-09,1.278215962670998739e-08,1.704287950227998318e-08,2.130359937784998063e-08,2.556431925341997808e-08,2.982503912898997553e-08,3.408575900455997298e-08,3.834647888012997043e-08,4.260719875569996788e-08,4.686791863126996533e-08,5.112863850683996278e-08,5.538935838240996023e-08,5.965007825797995107e-08,6.391079813354994190e-08,6.817151800911993273e-08,7.243223788468992356e-08,7.669295776025991440e-08,8.095367763582990523e-08,8.521439751139989606e-08,8.947511738696988690e-08,9.373583726253987773e-08,9.799655713810986856e-08,1.022572770136798594e-07,1.065179968892498502e-07,1.107787167648198411e-07,1.150394366403898319e-07,1.193001565159598227e-07,1.235608763915298136e-07,1.278215962670998044e-07,1.320823161426697952e-07,1.363430360182397861e-07,1.406037558938097769e-07,1.448644757693797677e-07,1.491251956449497586e-07,1.533859155205197494e-07,1.576466353960897402e-07,1.619073552716597311e-07,1.661680751472297219e-07,1.704287950227997127e-07,1.746895148983697035e-07,1.789502347739396944e-07,1.832109546495096852e-07,1.874716745250796760e-07,1.917323944006496669e-07,1.959931142762196577e-07,2.002538341517896485e-07,2.045145540273596394e-07,2.087752739029296302e-07,2.130359937784996210e-07,2.172967136540696119e-07,2.215574335296396027e-07,2.258181534052095935e-07,2.300788732807795844e-07,2.343395931563495752e-07,2.386003130319195925e-07,2.428610329074896363e-07,2.471217527830596801e-07,2.513824726586297238e-07,2.556431925341997676e-07,2.599039124097698114e-07,2.641646322853398551e-07,2.684253521609098989e-07 +0.000000000000000000e+00,8.188985361817822741e-09,1.637797072363564548e-08,2.456695608545346822e-08,3.275594144727129096e-08,4.094492680908911039e-08,4.913391217090692983e-08,5.732289753272474926e-08,6.551188289454256869e-08,7.370086825636038812e-08,8.188985361817820755e-08,9.007883897999602698e-08,9.826782434181384642e-08,1.064568097036316658e-07,1.146457950654494853e-07,1.228347804272673179e-07,1.310237657890851638e-07,1.392127511509030097e-07,1.474017365127208557e-07,1.555907218745387016e-07,1.637797072363565475e-07,1.719686925981743934e-07,1.801576779599922393e-07,1.883466633218100852e-07,1.965356486836279311e-07,2.047246340454457770e-07,2.129136194072636229e-07,2.211026047690814688e-07,2.292915901308993147e-07,2.374805754927171606e-07,2.456695608545350065e-07,2.538585462163528524e-07,2.620475315781706983e-07,2.702365169399885442e-07,2.784255023018063901e-07,2.866144876636242360e-07,2.948034730254420819e-07,3.029924583872599278e-07,3.111814437490777737e-07,3.193704291108956196e-07,3.275594144727134655e-07,3.357483998345313114e-07,3.439373851963491573e-07,3.521263705581670032e-07,3.603153559199848491e-07,3.685043412818026950e-07,3.766933266436205409e-07,3.848823120054383868e-07,3.930712973672562327e-07,4.012602827290740786e-07,4.094492680908919245e-07,4.176382534527097704e-07,4.258272388145276163e-07,4.340162241763454622e-07,4.422052095381633081e-07,4.503941948999811540e-07,4.585831802617989999e-07,4.667721656236168458e-07,4.749611509854346917e-07,4.831501363472525376e-07,4.913391217090703306e-07,4.995281070708881235e-07,5.077170924327059165e-07,5.159060777945237095e-07 +0.000000000000000000e+00,8.177431690005007585e-09,1.635486338001001517e-08,2.453229507001502441e-08,3.270972676002003696e-08,4.088715845002504951e-08,4.906459014003006206e-08,5.724202183003507460e-08,6.541945352004008715e-08,7.359688521004509970e-08,8.177431690005011225e-08,8.995174859005512480e-08,9.812918028006013735e-08,1.063066119700651499e-07,1.144840436600701624e-07,1.226614753500751882e-07,1.308389070400802008e-07,1.390163387300852133e-07,1.471937704200902259e-07,1.553712021100952384e-07,1.635486338001002510e-07,1.717260654901052635e-07,1.799034971801102761e-07,1.880809288701152886e-07,1.962583605601203012e-07,2.044357922501253137e-07,2.126132239401303263e-07,2.207906556301353388e-07,2.289680873201403514e-07,2.371455190101453639e-07,2.453229507001503765e-07,2.535003823901553890e-07,2.616778140801604015e-07,2.698552457701654141e-07,2.780326774601704266e-07,2.862101091501754392e-07,2.943875408401804517e-07,3.025649725301854643e-07,3.107424042201904768e-07,3.189198359101954894e-07,3.270972676002005019e-07,3.352746992902055145e-07,3.434521309802105270e-07,3.516295626702155396e-07,3.598069943602205521e-07,3.679844260502255647e-07,3.761618577402305772e-07,3.843392894302355898e-07,3.925167211202406023e-07,4.006941528102456149e-07,4.088715845002506274e-07,4.170490161902556400e-07,4.252264478802606525e-07,4.334038795702656651e-07,4.415813112602706776e-07,4.497587429502756902e-07,4.579361746402807027e-07,4.661136063302857153e-07,4.742910380202907278e-07,4.824684697102956874e-07,4.906459014003006470e-07,4.988233330903056066e-07,5.070007647803105662e-07,5.151781964703155259e-07 +0.000000000000000000e+00,3.560796949528814563e-09,7.121593899057629126e-09,1.068239084858644328e-08,1.424318779811525660e-08,1.780398474764406992e-08,2.136478169717288324e-08,2.492557864670169656e-08,2.848637559623050989e-08,3.204717254575932652e-08,3.560796949528814646e-08,3.916876644481696640e-08,4.272956339434578634e-08,4.629036034387460628e-08,4.985115729340342622e-08,5.341195424293224615e-08,5.697275119246106609e-08,6.053354814198988603e-08,6.409434509151870597e-08,6.765514204104752591e-08,7.121593899057634585e-08,7.477673594010516579e-08,7.833753288963398573e-08,8.189832983916280567e-08,8.545912678869162561e-08,8.901992373822044555e-08,9.258072068774926549e-08,9.614151763727808543e-08,9.970231458680690537e-08,1.032631115363357253e-07,1.068239084858645452e-07,1.103847054353933652e-07,1.139455023849221851e-07,1.175062993344510051e-07,1.210670962839798250e-07,1.246278932335086449e-07,1.281886901830374649e-07,1.317494871325662848e-07,1.353102840820951048e-07,1.388710810316239247e-07,1.424318779811527446e-07,1.459926749306815646e-07,1.495534718802103845e-07,1.531142688297392045e-07,1.566750657792680244e-07,1.602358627287968443e-07,1.637966596783256643e-07,1.673574566278544842e-07,1.709182535773833042e-07,1.744790505269121241e-07,1.780398474764409440e-07,1.816006444259697640e-07,1.851614413754985839e-07,1.887222383250274039e-07,1.922830352745562238e-07,1.958438322240850437e-07,1.994046291736138637e-07,2.029654261231426836e-07,2.065262230726715036e-07,2.100870200222003235e-07,2.136478169717291434e-07,2.172086139212579634e-07,2.207694108707867833e-07,2.243302078203156033e-07 +0.000000000000000000e+00,6.063138102467594359e-09,1.212627620493518872e-08,1.818941430740278308e-08,2.425255240987037744e-08,3.031569051233796849e-08,3.637882861480555954e-08,4.244196671727315059e-08,4.850510481974074164e-08,5.456824292220833269e-08,6.063138102467592374e-08,6.669451912714351479e-08,7.275765722961110584e-08,7.882079533207869689e-08,8.488393343454628794e-08,9.094707153701387900e-08,9.701020963948147005e-08,1.030733477419490611e-07,1.091364858444166521e-07,1.151996239468842432e-07,1.212627620493518210e-07,1.273259001518193988e-07,1.333890382542869766e-07,1.394521763567545545e-07,1.455153144592221323e-07,1.515784525616897101e-07,1.576415906641572879e-07,1.637047287666248657e-07,1.697678668690924435e-07,1.758310049715600214e-07,1.818941430740275992e-07,1.879572811764951770e-07,1.940204192789627548e-07,2.000835573814303326e-07,2.061466954838979104e-07,2.122098335863654883e-07,2.182729716888330661e-07,2.243361097913006439e-07,2.303992478937682217e-07,2.364623859962357995e-07,2.425255240987033773e-07,2.485886622011709551e-07,2.546518003036385330e-07,2.607149384061061108e-07,2.667780765085736886e-07,2.728412146110412664e-07,2.789043527135088442e-07,2.849674908159764220e-07,2.910306289184439999e-07,2.970937670209115777e-07,3.031569051233791555e-07,3.092200432258467333e-07,3.152831813283143111e-07,3.213463194307818889e-07,3.274094575332494668e-07,3.334725956357170446e-07,3.395357337381846224e-07,3.455988718406522002e-07,3.516620099431197780e-07,3.577251480455873558e-07,3.637882861480549336e-07,3.698514242505225115e-07,3.759145623529900893e-07,3.819777004554576671e-07 +0.000000000000000000e+00,7.342542375101712705e-09,1.468508475020342541e-08,2.202762712530513811e-08,2.937016950040685082e-08,3.671271187550856352e-08,4.405525425061027623e-08,5.139779662571198893e-08,5.874033900081370164e-08,6.608288137591540772e-08,7.342542375101711381e-08,8.076796612611881990e-08,8.811050850122052599e-08,9.545305087632223207e-08,1.027955932514239382e-07,1.101381356265256442e-07,1.174806780016273503e-07,1.248232203767290564e-07,1.321657627518307625e-07,1.395083051269324686e-07,1.468508475020341747e-07,1.541933898771358808e-07,1.615359322522375869e-07,1.688784746273392929e-07,1.762210170024409990e-07,1.835635593775427051e-07,1.909061017526444112e-07,1.982486441277461173e-07,2.055911865028478234e-07,2.129337288779495295e-07,2.202762712530512356e-07,2.276188136281529416e-07,2.349613560032546477e-07,2.423038983783563273e-07,2.496464407534580070e-07,2.569889831285596866e-07,2.643315255036613662e-07,2.716740678787630458e-07,2.790166102538647254e-07,2.863591526289664051e-07,2.937016950040680847e-07,3.010442373791697643e-07,3.083867797542714439e-07,3.157293221293731235e-07,3.230718645044748031e-07,3.304144068795764828e-07,3.377569492546781624e-07,3.450994916297798420e-07,3.524420340048815216e-07,3.597845763799832012e-07,3.671271187550848808e-07,3.744696611301865605e-07,3.818122035052882401e-07,3.891547458803899197e-07,3.964972882554915993e-07,4.038398306305932789e-07,4.111823730056949585e-07,4.185249153807966382e-07,4.258674577558983178e-07,4.332100001309999974e-07,4.405525425061016770e-07,4.478950848812033566e-07,4.552376272563050363e-07,4.625801696314067159e-07 +0.000000000000000000e+00,5.549221516921844779e-09,1.109844303384368956e-08,1.664766455076553517e-08,2.219688606768738243e-08,2.774610758460922969e-08,3.329532910153107695e-08,3.884455061845292421e-08,4.439377213537477147e-08,4.994299365229661873e-08,5.549221516921846599e-08,6.104143668614031325e-08,6.659065820306216713e-08,7.213987971998402101e-08,7.768910123690587489e-08,8.323832275382772876e-08,8.878754427074958264e-08,9.433676578767143652e-08,9.988598730459329040e-08,1.054352088215151443e-07,1.109844303384369982e-07,1.165336518553588520e-07,1.220828733722807059e-07,1.276320948892025466e-07,1.331813164061243872e-07,1.387305379230462278e-07,1.442797594399680685e-07,1.498289809568899091e-07,1.553782024738117498e-07,1.609274239907335904e-07,1.664766455076554311e-07,1.720258670245772717e-07,1.775750885414991123e-07,1.831243100584209530e-07,1.886735315753427936e-07,1.942227530922646343e-07,1.997719746091864749e-07,2.053211961261083156e-07,2.108704176430301562e-07,2.164196391599519969e-07,2.219688606768738375e-07,2.275180821937956781e-07,2.330673037107175188e-07,2.386165252276393594e-07,2.441657467445612001e-07,2.497149682614830407e-07,2.552641897784048814e-07,2.608134112953267220e-07,2.663626328122485626e-07,2.719118543291704033e-07,2.774610758460922439e-07,2.830102973630140846e-07,2.885595188799359252e-07,2.941087403968577659e-07,2.996579619137796065e-07,3.052071834307014471e-07,3.107564049476232878e-07,3.163056264645451284e-07,3.218548479814669691e-07,3.274040694983888097e-07,3.329532910153106504e-07,3.385025125322324910e-07,3.440517340491543316e-07,3.496009555660761723e-07 +0.000000000000000000e+00,9.661110214540720138e-09,1.932222042908144028e-08,2.898333064362216207e-08,3.864444085816288717e-08,4.830555107270361227e-08,5.796666128724433737e-08,6.762777150178506248e-08,7.728888171632578758e-08,8.694999193086651268e-08,9.661110214540723778e-08,1.062722123599479629e-07,1.159333225744886880e-07,1.255944327890294131e-07,1.352555430035701250e-07,1.449166532181108368e-07,1.545777634326515487e-07,1.642388736471922605e-07,1.738999838617329724e-07,1.835610940762736843e-07,1.932222042908143961e-07,2.028833145053551080e-07,2.125444247198958199e-07,2.222055349344365317e-07,2.318666451489772436e-07,2.415277553635179820e-07,2.511888655780587203e-07,2.608499757925994586e-07,2.705110860071401970e-07,2.801721962216809353e-07,2.898333064362216736e-07,2.994944166507624120e-07,3.091555268653031503e-07,3.188166370798438886e-07,3.284777472943846270e-07,3.381388575089253653e-07,3.477999677234661037e-07,3.574610779380068420e-07,3.671221881525475803e-07,3.767832983670883187e-07,3.864444085816290570e-07,3.961055187961697953e-07,4.057666290107105337e-07,4.154277392252512720e-07,4.250888494397920103e-07,4.347499596543327487e-07,4.444110698688734870e-07,4.540721800834142254e-07,4.637332902979549637e-07,4.733944005124957020e-07,4.830555107270363874e-07,4.927166209415770728e-07,5.023777311561177582e-07,5.120388413706584436e-07,5.216999515851991290e-07,5.313610617997398144e-07,5.410221720142804998e-07,5.506832822288211852e-07,5.603443924433618706e-07,5.700055026579025560e-07,5.796666128724432414e-07,5.893277230869839268e-07,5.989888333015246122e-07,6.086499435160652976e-07 +0.000000000000000000e+00,9.649054360980361924e-09,1.929810872196072385e-08,2.894716308294108577e-08,3.859621744392144769e-08,4.824527180490180962e-08,5.789432616588217154e-08,6.754338052686252685e-08,7.719243488784288215e-08,8.684148924882323746e-08,9.649054360980359277e-08,1.061395979707839481e-07,1.157886523317643034e-07,1.254377066927446587e-07,1.350867610537250008e-07,1.447358154147053428e-07,1.543848697756856849e-07,1.640339241366660270e-07,1.736829784976463690e-07,1.833320328586267111e-07,1.929810872196070532e-07,2.026301415805873953e-07,2.122791959415677373e-07,2.219282503025480794e-07,2.315773046635284215e-07,2.412263590245087635e-07,2.508754133854891056e-07,2.605244677464694477e-07,2.701735221074497898e-07,2.798225764684301318e-07,2.894716308294104739e-07,2.991206851903908160e-07,3.087697395513711580e-07,3.184187939123515001e-07,3.280678482733318422e-07,3.377169026343121843e-07,3.473659569952925263e-07,3.570150113562728684e-07,3.666640657172532105e-07,3.763131200782335525e-07,3.859621744392138946e-07,3.956112288001942367e-07,4.052602831611745788e-07,4.149093375221549208e-07,4.245583918831352629e-07,4.342074462441156050e-07,4.438565006050959470e-07,4.535055549660762891e-07,4.631546093270566312e-07,4.728036636880369733e-07,4.824527180490173153e-07,4.921017724099976045e-07,5.017508267709778936e-07,5.113998811319581827e-07,5.210489354929384718e-07,5.306979898539187610e-07,5.403470442148990501e-07,5.499960985758793392e-07,5.596451529368596284e-07,5.692942072978399175e-07,5.789432616588202066e-07,5.885923160198004958e-07,5.982413703807807849e-07,6.078904247417610740e-07 +0.000000000000000000e+00,4.922478308382697566e-09,9.844956616765395131e-09,1.476743492514809270e-08,1.968991323353079026e-08,2.461239154191348617e-08,2.953486985029618208e-08,3.445734815867887800e-08,3.937982646706157391e-08,4.430230477544426982e-08,4.922478308382696573e-08,5.414726139220966164e-08,5.906973970059235755e-08,6.399221800897506008e-08,6.891469631735776923e-08,7.383717462574047837e-08,7.875965293412318752e-08,8.368213124250589666e-08,8.860460955088860581e-08,9.352708785927131496e-08,9.844956616765402410e-08,1.033720444760367332e-07,1.082945227844194424e-07,1.132170010928021515e-07,1.181394794011848607e-07,1.230619577095675698e-07,1.279844360179502790e-07,1.329069143263329881e-07,1.378293926347156973e-07,1.427518709430984064e-07,1.476743492514811156e-07,1.525968275598638247e-07,1.575193058682465339e-07,1.624417841766292430e-07,1.673642624850119521e-07,1.722867407933946613e-07,1.772092191017773704e-07,1.821316974101600796e-07,1.870541757185427887e-07,1.919766540269254979e-07,1.968991323353082070e-07,2.018216106436909162e-07,2.067440889520736253e-07,2.116665672604563345e-07,2.165890455688390436e-07,2.215115238772217528e-07,2.264340021856044619e-07,2.313564804939871710e-07,2.362789588023698802e-07,2.412014371107525629e-07,2.461239154191352455e-07,2.510463937275179282e-07,2.559688720359006109e-07,2.608913503442832936e-07,2.658138286526659762e-07,2.707363069610486589e-07,2.756587852694313416e-07,2.805812635778140243e-07,2.855037418861967070e-07,2.904262201945793896e-07,2.953486985029620723e-07,3.002711768113447550e-07,3.051936551197274377e-07,3.101161334281101203e-07 +0.000000000000000000e+00,7.517098757229281902e-09,1.503419751445856380e-08,2.255129627168784571e-08,3.006839502891712761e-08,3.758549378614640951e-08,4.510259254337569141e-08,5.261969130060497332e-08,6.013679005783425522e-08,6.765388881506353712e-08,7.517098757229281902e-08,8.268808632952210093e-08,9.020518508675138283e-08,9.772228384398066473e-08,1.052393826012099466e-07,1.127564813584392285e-07,1.202735801156685104e-07,1.277906788728977923e-07,1.353077776301270742e-07,1.428248763873563561e-07,1.503419751445856380e-07,1.578590739018149200e-07,1.653761726590442019e-07,1.728932714162734838e-07,1.804103701735027657e-07,1.879274689307320476e-07,1.954445676879613295e-07,2.029616664451906114e-07,2.104787652024198933e-07,2.179958639596491752e-07,2.255129627168784571e-07,2.330300614741077390e-07,2.405471602313370209e-07,2.480642589885662763e-07,2.555813577457955317e-07,2.630984565030247872e-07,2.706155552602540426e-07,2.781326540174832980e-07,2.856497527747125535e-07,2.931668515319418089e-07,3.006839502891710643e-07,3.082010490464003198e-07,3.157181478036295752e-07,3.232352465608588306e-07,3.307523453180880861e-07,3.382694440753173415e-07,3.457865428325465969e-07,3.533036415897758524e-07,3.608207403470051078e-07,3.683378391042343632e-07,3.758549378614636187e-07,3.833720366186928741e-07,3.908891353759221295e-07,3.984062341331513850e-07,4.059233328903806404e-07,4.134404316476098958e-07,4.209575304048391513e-07,4.284746291620684067e-07,4.359917279192976621e-07,4.435088266765269176e-07,4.510259254337561730e-07,4.585430241909854284e-07,4.660601229482146839e-07,4.735772217054439393e-07 +0.000000000000000000e+00,8.963500815258381781e-09,1.792700163051676356e-08,2.689050244577514534e-08,3.585400326103352712e-08,4.481750407629191221e-08,5.378100489155029730e-08,6.274450570680868239e-08,7.170800652206706748e-08,8.067150733732545257e-08,8.963500815258383766e-08,9.859850896784222275e-08,1.075620097831006078e-07,1.165255105983589929e-07,1.254890114136173648e-07,1.344525122288757366e-07,1.434160130441341085e-07,1.523795138593924804e-07,1.613430146746508522e-07,1.703065154899092241e-07,1.792700163051675959e-07,1.882335171204259678e-07,1.971970179356843396e-07,2.061605187509427115e-07,2.151240195662010833e-07,2.240875203814594552e-07,2.330510211967178270e-07,2.420145220119762254e-07,2.509780228272346237e-07,2.599415236424930220e-07,2.689050244577514203e-07,2.778685252730098187e-07,2.868320260882682170e-07,2.957955269035266153e-07,3.047590277187850136e-07,3.137225285340434120e-07,3.226860293493018103e-07,3.316495301645602086e-07,3.406130309798186069e-07,3.495765317950770053e-07,3.585400326103354036e-07,3.675035334255938019e-07,3.764670342408522002e-07,3.854305350561105986e-07,3.943940358713689969e-07,4.033575366866273952e-07,4.123210375018857935e-07,4.212845383171441919e-07,4.302480391324025902e-07,4.392115399476609885e-07,4.481750407629193868e-07,4.571385415781777852e-07,4.661020423934361835e-07,4.750655432086945818e-07,4.840290440239529801e-07,4.929925448392113785e-07,5.019560456544697768e-07,5.109195464697281751e-07,5.198830472849865734e-07,5.288465481002449718e-07,5.378100489155033701e-07,5.467735497307617684e-07,5.557370505460201667e-07,5.647005513612785651e-07 +0.000000000000000000e+00,9.652291555640386242e-09,1.930458311128077248e-08,2.895687466692115707e-08,3.860916622256153835e-08,4.826145777820191963e-08,5.791374933384230091e-08,6.756604088948268881e-08,7.721833244512307670e-08,8.687062400076346460e-08,9.652291555640385249e-08,1.061752071120442404e-07,1.158274986676846283e-07,1.254797902233250162e-07,1.351320817789654041e-07,1.447843733346057920e-07,1.544366648902461799e-07,1.640889564458865678e-07,1.737412480015269557e-07,1.833935395571673436e-07,1.930458311128077315e-07,2.026981226684481194e-07,2.123504142240885073e-07,2.220027057797288951e-07,2.316549973353692830e-07,2.413072888910096709e-07,2.509595804466500324e-07,2.606118720022903938e-07,2.702641635579307552e-07,2.799164551135711166e-07,2.895687466692114781e-07,2.992210382248518395e-07,3.088733297804922009e-07,3.185256213361325624e-07,3.281779128917729238e-07,3.378302044474132852e-07,3.474824960030536466e-07,3.571347875586940081e-07,3.667870791143343695e-07,3.764393706699747309e-07,3.860916622256150923e-07,3.957439537812554538e-07,4.053962453368958152e-07,4.150485368925361766e-07,4.247008284481765380e-07,4.343531200038168995e-07,4.440054115594572609e-07,4.536577031150976223e-07,4.633099946707379838e-07,4.729622862263783452e-07,4.826145777820187066e-07,4.922668693376590151e-07,5.019191608932993236e-07,5.115714524489396321e-07,5.212237440045799406e-07,5.308760355602202490e-07,5.405283271158605575e-07,5.501806186715008660e-07,5.598329102271411745e-07,5.694852017827814830e-07,5.791374933384217915e-07,5.887897848940621000e-07,5.984420764497024085e-07,6.080943680053427169e-07 +0.000000000000000000e+00,8.949147910763870124e-09,1.789829582152774025e-08,2.684744373229160872e-08,3.579659164305547388e-08,4.474573955381933904e-08,5.369488746458320420e-08,6.264403537534706936e-08,7.159318328611093452e-08,8.054233119687479968e-08,8.949147910763866484e-08,9.844062701840253001e-08,1.073897749291663952e-07,1.163389228399302603e-07,1.252880707506941387e-07,1.342372186614580171e-07,1.431863665722218955e-07,1.521355144829857739e-07,1.610846623937496523e-07,1.700338103045135307e-07,1.789829582152774091e-07,1.879321061260412875e-07,1.968812540368051659e-07,2.058304019475690443e-07,2.147795498583329227e-07,2.237286977690968011e-07,2.326778456798606795e-07,2.416269935906245579e-07,2.505761415013884363e-07,2.595252894121523147e-07,2.684744373229161931e-07,2.774235852336800715e-07,2.863727331444439498e-07,2.953218810552078282e-07,3.042710289659717066e-07,3.132201768767355850e-07,3.221693247874994634e-07,3.311184726982633418e-07,3.400676206090272202e-07,3.490167685197910986e-07,3.579659164305549770e-07,3.669150643413188554e-07,3.758642122520827338e-07,3.848133601628466122e-07,3.937625080736104906e-07,4.027116559843743690e-07,4.116608038951382474e-07,4.206099518059021258e-07,4.295590997166660042e-07,4.385082476274298826e-07,4.474573955381937610e-07,4.564065434489576394e-07,4.653556913597215178e-07,4.743048392704853962e-07,4.832539871812493275e-07,4.922031350920132588e-07,5.011522830027771902e-07,5.101014309135411215e-07,5.190505788243050528e-07,5.279997267350689842e-07,5.369488746458329155e-07,5.458980225565968468e-07,5.548471704673607782e-07,5.637963183781247095e-07 +0.000000000000000000e+00,5.549221516923815124e-09,1.109844303384763025e-08,1.664766455077144454e-08,2.219688606769525719e-08,2.774610758461906983e-08,3.329532910154288247e-08,3.884455061846669511e-08,4.439377213539050775e-08,4.994299365231432040e-08,5.549221516923813304e-08,6.104143668616195230e-08,6.659065820308577817e-08,7.213987972000960405e-08,7.768910123693342993e-08,8.323832275385725580e-08,8.878754427078108168e-08,9.433676578770490756e-08,9.988598730462873343e-08,1.054352088215525593e-07,1.109844303384763852e-07,1.165336518554002111e-07,1.220828733723240369e-07,1.276320948892478628e-07,1.331813164061716887e-07,1.387305379230955146e-07,1.442797594400193404e-07,1.498289809569431663e-07,1.553782024738669922e-07,1.609274239907908181e-07,1.664766455077146440e-07,1.720258670246384698e-07,1.775750885415622957e-07,1.831243100584861216e-07,1.886735315754099475e-07,1.942227530923337733e-07,1.997719746092575992e-07,2.053211961261814251e-07,2.108704176431052510e-07,2.164196391600290768e-07,2.219688606769529027e-07,2.275180821938767286e-07,2.330673037108005545e-07,2.386165252277243804e-07,2.441657467446482327e-07,2.497149682615720850e-07,2.552641897784959374e-07,2.608134112954197897e-07,2.663626328123436421e-07,2.719118543292674944e-07,2.774610758461913468e-07,2.830102973631151991e-07,2.885595188800390515e-07,2.941087403969629038e-07,2.996579619138867562e-07,3.052071834308106085e-07,3.107564049477344609e-07,3.163056264646583132e-07,3.218548479815821656e-07,3.274040694985060179e-07,3.329532910154298702e-07,3.385025125323537226e-07,3.440517340492775749e-07,3.496009555662014273e-07 +0.000000000000000000e+00,9.661110214542541590e-09,1.932222042908508318e-08,2.898333064362762477e-08,3.864444085817016636e-08,4.830555107271270464e-08,5.796666128725524292e-08,6.762777150179778120e-08,7.728888171634031949e-08,8.694999193088285777e-08,9.661110214542539605e-08,1.062722123599679343e-07,1.159333225745104726e-07,1.255944327890529977e-07,1.352555430035955359e-07,1.449166532181380742e-07,1.545777634326806125e-07,1.642388736472231508e-07,1.738999838617656891e-07,1.835610940763082273e-07,1.932222042908507656e-07,2.028833145053933039e-07,2.125444247199358422e-07,2.222055349344783805e-07,2.318666451490209188e-07,2.415277553635634570e-07,2.511888655781059953e-07,2.608499757926485336e-07,2.705110860071910719e-07,2.801721962217336102e-07,2.898333064362761484e-07,2.994944166508186867e-07,3.091555268653612250e-07,3.188166370799037633e-07,3.284777472944463016e-07,3.381388575089888398e-07,3.477999677235313781e-07,3.574610779380739164e-07,3.671221881526164547e-07,3.767832983671589930e-07,3.864444085817015313e-07,3.961055187962440695e-07,4.057666290107866078e-07,4.154277392253291461e-07,4.250888494398716844e-07,4.347499596544142227e-07,4.444110698689567609e-07,4.540721800834992992e-07,4.637332902980418375e-07,4.733944005125843758e-07,4.830555107271269141e-07,4.927166209416695053e-07,5.023777311562120965e-07,5.120388413707546877e-07,5.216999515852972789e-07,5.313610617998398702e-07,5.410221720143824614e-07,5.506832822289250526e-07,5.603443924434676438e-07,5.700055026580102351e-07,5.796666128725528263e-07,5.893277230870954175e-07,5.989888333016380087e-07,6.086499435161805999e-07 +0.000000000000000000e+00,9.652291555641281251e-09,1.930458311128256250e-08,2.895687466692384375e-08,3.860916622256512501e-08,4.826145777820640626e-08,5.791374933384768751e-08,6.756604088948896214e-08,7.721833244513023678e-08,8.687062400077151141e-08,9.652291555641278604e-08,1.061752071120540607e-07,1.158274986676953353e-07,1.254797902233366099e-07,1.351320817789778713e-07,1.447843733346191327e-07,1.544366648902603941e-07,1.640889564459016555e-07,1.737412480015429169e-07,1.833935395571841783e-07,1.930458311128254397e-07,2.026981226684667011e-07,2.123504142241079625e-07,2.220027057797492239e-07,2.316549973353904853e-07,2.413072888910317467e-07,2.509595804466730081e-07,2.606118720023142695e-07,2.702641635579555309e-07,2.799164551135967923e-07,2.895687466692380537e-07,2.992210382248793151e-07,3.088733297805205765e-07,3.185256213361618379e-07,3.281779128918030993e-07,3.378302044474443607e-07,3.474824960030856221e-07,3.571347875587268835e-07,3.667870791143681449e-07,3.764393706700094063e-07,3.860916622256506677e-07,3.957439537812919291e-07,4.053962453369331905e-07,4.150485368925744519e-07,4.247008284482157133e-07,4.343531200038569747e-07,4.440054115594982361e-07,4.536577031151394975e-07,4.633099946707807589e-07,4.729622862264220203e-07,4.826145777820632817e-07,4.922668693377045431e-07,5.019191608933458045e-07,5.115714524489870659e-07,5.212237440046283273e-07,5.308760355602695887e-07,5.405283271159108501e-07,5.501806186715521115e-07,5.598329102271933729e-07,5.694852017828346343e-07,5.791374933384758957e-07,5.887897848941171571e-07,5.984420764497584185e-07,6.080943680053996799e-07 +0.000000000000000000e+00,4.922478308384308086e-09,9.844956616768616172e-09,1.476743492515292509e-08,1.968991323353723565e-08,2.461239154192154622e-08,2.953486985030585679e-08,3.445734815869016736e-08,3.937982646707447792e-08,4.430230477545878849e-08,4.922478308384309906e-08,5.414726139222740963e-08,5.906973970061172019e-08,6.399221800899602415e-08,6.891469631738032148e-08,7.383717462576461881e-08,7.875965293414891614e-08,8.368213124253321348e-08,8.860460955091751081e-08,9.352708785930180814e-08,9.844956616768610547e-08,1.033720444760704028e-07,1.082945227844547001e-07,1.132170010928389975e-07,1.181394794012232948e-07,1.230619577096075921e-07,1.279844360179918895e-07,1.329069143263761868e-07,1.378293926347604841e-07,1.427518709431447815e-07,1.476743492515290788e-07,1.525968275599133761e-07,1.575193058682976735e-07,1.624417841766819708e-07,1.673642624850662681e-07,1.722867407934505655e-07,1.772092191018348628e-07,1.821316974102191601e-07,1.870541757186034575e-07,1.919766540269877548e-07,1.968991323353720521e-07,2.018216106437563495e-07,2.067440889521406468e-07,2.116665672605249441e-07,2.165890455689092415e-07,2.215115238772935388e-07,2.264340021856778361e-07,2.313564804940621335e-07,2.362789588024464308e-07,2.412014371108307017e-07,2.461239154192149725e-07,2.510463937275992434e-07,2.559688720359835142e-07,2.608913503443677851e-07,2.658138286527520560e-07,2.707363069611363268e-07,2.756587852695205977e-07,2.805812635779048686e-07,2.855037418862891394e-07,2.904262201946734103e-07,2.953486985030576812e-07,3.002711768114419520e-07,3.051936551198262229e-07,3.101161334282104937e-07 +0.000000000000000000e+00,7.517098757231255555e-09,1.503419751446251111e-08,2.255129627169376832e-08,3.006839502892502884e-08,3.758549378615628936e-08,4.510259254338754988e-08,5.261969130061881039e-08,6.013679005785007091e-08,6.765388881508132481e-08,7.517098757231257871e-08,8.268808632954383262e-08,9.020518508677508652e-08,9.772228384400634042e-08,1.052393826012375943e-07,1.127564813584688482e-07,1.202735801157001154e-07,1.277906788729313825e-07,1.353077776301626496e-07,1.428248763873939168e-07,1.503419751446251839e-07,1.578590739018564510e-07,1.653761726590877182e-07,1.728932714163189853e-07,1.804103701735502524e-07,1.879274689307815196e-07,1.954445676880127867e-07,2.029616664452440539e-07,2.104787652024753210e-07,2.179958639597065881e-07,2.255129627169378553e-07,2.330300614741691224e-07,2.405471602314003895e-07,2.480642589886316567e-07,2.555813577458629238e-07,2.630984565030941909e-07,2.706155552603254581e-07,2.781326540175567252e-07,2.856497527747879923e-07,2.931668515320192595e-07,3.006839502892505266e-07,3.082010490464817938e-07,3.157181478037130609e-07,3.232352465609443280e-07,3.307523453181755952e-07,3.382694440754068623e-07,3.457865428326381294e-07,3.533036415898693966e-07,3.608207403471006637e-07,3.683378391043319308e-07,3.758549378615631980e-07,3.833720366187944651e-07,3.908891353760257322e-07,3.984062341332569994e-07,4.059233328904882665e-07,4.134404316477195337e-07,4.209575304049508008e-07,4.284746291621820679e-07,4.359917279194133351e-07,4.435088266766446022e-07,4.510259254338758693e-07,4.585430241911071365e-07,4.660601229483384036e-07,4.735772217055696707e-07 +0.000000000000000000e+00,8.963500815259855817e-09,1.792700163051971163e-08,2.689050244577956911e-08,3.585400326103942989e-08,4.481750407629929067e-08,5.378100489155915145e-08,6.274450570681900561e-08,7.170800652207885977e-08,8.067150733733871393e-08,8.963500815259856810e-08,9.859850896785842226e-08,1.075620097831182764e-07,1.165255105983781306e-07,1.254890114136379847e-07,1.344525122288978389e-07,1.434160130441576931e-07,1.523795138594175472e-07,1.613430146746774014e-07,1.703065154899372556e-07,1.792700163051971097e-07,1.882335171204569639e-07,1.971970179357168180e-07,2.061605187509766722e-07,2.151240195662365264e-07,2.240875203814963805e-07,2.330510211967562347e-07,2.420145220120160889e-07,2.509780228272759166e-07,2.599415236425357442e-07,2.689050244577955719e-07,2.778685252730553996e-07,2.868320260883152273e-07,2.957955269035750550e-07,3.047590277188348827e-07,3.137225285340947104e-07,3.226860293493545381e-07,3.316495301646143658e-07,3.406130309798741935e-07,3.495765317951340212e-07,3.585400326103938489e-07,3.675035334256536766e-07,3.764670342409135043e-07,3.854305350561733319e-07,3.943940358714331596e-07,4.033575366866929873e-07,4.123210375019528150e-07,4.212845383172126427e-07,4.302480391324724704e-07,4.392115399477322981e-07,4.481750407629921258e-07,4.571385415782519535e-07,4.661020423935117812e-07,4.750655432087716089e-07,4.840290440240314366e-07,4.929925448392913172e-07,5.019560456545511978e-07,5.109195464698110785e-07,5.198830472850709591e-07,5.288465481003308397e-07,5.378100489155907204e-07,5.467735497308506010e-07,5.557370505461104816e-07,5.647005513613703623e-07 +0.000000000000000000e+00,6.714679657350886625e-09,1.342935931470177325e-08,2.014403897205265822e-08,2.685871862940354319e-08,3.357339828675442816e-08,4.028807794410531644e-08,4.700275760145620472e-08,5.371743725880709300e-08,6.043211691615797466e-08,6.714679657350885633e-08,7.386147623085973799e-08,8.057615588821061965e-08,8.729083554556150131e-08,9.400551520291238297e-08,1.007201948602632646e-07,1.074348745176141463e-07,1.141495541749650280e-07,1.208642338323158964e-07,1.275789134896667648e-07,1.342935931470176332e-07,1.410082728043685017e-07,1.477229524617193701e-07,1.544376321190702385e-07,1.611523117764211070e-07,1.678669914337719754e-07,1.745816710911228438e-07,1.812963507484737122e-07,1.880110304058245807e-07,1.947257100631754491e-07,2.014403897205263175e-07,2.081550693778771859e-07,2.148697490352280544e-07,2.215844286925789228e-07,2.282991083499297912e-07,2.350137880072806597e-07,2.417284676646315281e-07,2.484431473219823700e-07,2.551578269793332120e-07,2.618725066366840540e-07,2.685871862940348959e-07,2.753018659513857379e-07,2.820165456087365798e-07,2.887312252660874218e-07,2.954459049234382637e-07,3.021605845807891057e-07,3.088752642381399477e-07,3.155899438954907896e-07,3.223046235528416316e-07,3.290193032101924735e-07,3.357339828675433155e-07,3.424486625248941574e-07,3.491633421822449994e-07,3.558780218395958414e-07,3.625927014969466833e-07,3.693073811542975253e-07,3.760220608116483672e-07,3.827367404689992092e-07,3.894514201263500511e-07,3.961660997837008931e-07,4.028807794410517351e-07,4.095954590984025770e-07,4.163101387557534190e-07,4.230248184131042609e-07 +0.000000000000000000e+00,1.094217344081531356e-08,2.188434688163062711e-08,3.282652032244594067e-08,4.376869376326125422e-08,5.471086720407656778e-08,6.565304064489188134e-08,7.659521408570720151e-08,8.753738752652252168e-08,9.847956096733784186e-08,1.094217344081531620e-07,1.203639078489684822e-07,1.313060812897837891e-07,1.422482547305990961e-07,1.531904281714144030e-07,1.641326016122297100e-07,1.750747750530450169e-07,1.860169484938603238e-07,1.969591219346756043e-07,2.079012953754909377e-07,2.188434688163062447e-07,2.297856422571215516e-07,2.407278156979368585e-07,2.516699891387521919e-07,2.626121625795675253e-07,2.735543360203828588e-07,2.844965094611981922e-07,2.954386829020135256e-07,3.063808563428288590e-07,3.173230297836441924e-07,3.282652032244595258e-07,3.392073766652748592e-07,3.501495501060901926e-07,3.610917235469055790e-07,3.720338969877208594e-07,3.829760704285361928e-07,3.939182438693515262e-07,4.048604173101668067e-07,4.158025907509821931e-07,4.267447641917975265e-07,4.376869376326128599e-07,4.486291110734282462e-07,4.595712845142435267e-07,4.705134579550588601e-07,4.814556313958742465e-07,4.923978048366896328e-07,5.033399782775050192e-07,5.142821517183204055e-07,5.252243251591357918e-07,5.361664985999511782e-07,5.471086720407665645e-07,5.580508454815819509e-07,5.689930189223973372e-07,5.799351923632127236e-07,5.908773658040281099e-07,6.018195392448434963e-07,6.127617126856588826e-07,6.237038861264742690e-07,6.346460595672896553e-07,6.455882330081050417e-07,6.565304064489203221e-07,6.674725798897358144e-07,6.784147533305513066e-07,6.893569267713665871e-07 +0.000000000000000000e+00,1.093683553462475418e-08,2.187367106924950835e-08,3.281050660387426253e-08,4.374734213849901671e-08,5.468417767312377089e-08,6.562101320774852506e-08,7.655784874237328586e-08,8.749468427699804665e-08,9.843151981162280745e-08,1.093683553462475682e-07,1.203051908808723290e-07,1.312420264154970766e-07,1.421788619501218242e-07,1.531156974847465717e-07,1.640525330193713193e-07,1.749893685539960668e-07,1.859262040886208144e-07,1.968630396232455355e-07,2.077998751578703095e-07,2.187367106924950571e-07,2.296735462271198046e-07,2.406103817617445522e-07,2.515472172963693262e-07,2.624840528309941003e-07,2.734208883656188743e-07,2.843577239002436483e-07,2.952945594348684223e-07,3.062313949694931964e-07,3.171682305041179704e-07,3.281050660387427444e-07,3.390419015733675185e-07,3.499787371079922925e-07,3.609155726426170136e-07,3.718524081772418406e-07,3.827892437118666146e-07,3.937260792464913886e-07,4.046629147811162156e-07,4.155997503157409367e-07,4.265365858503657107e-07,4.374734213849904847e-07,4.484102569196152058e-07,4.593470924542400328e-07,4.702839279888648068e-07,4.812207635234896338e-07,4.921575990581144608e-07,5.030944345927392877e-07,5.140312701273641147e-07,5.249681056619889417e-07,5.359049411966137686e-07,5.468417767312385956e-07,5.577786122658634226e-07,5.687154478004882495e-07,5.796522833351130765e-07,5.905891188697379035e-07,6.015259544043627304e-07,6.124627899389875574e-07,6.233996254736123844e-07,6.343364610082372114e-07,6.452732965428621442e-07,6.562101320774867594e-07,6.671469676121117981e-07,6.780838031467364134e-07,6.890206386813614521e-07 +0.000000000000000000e+00,6.145880106826534559e-09,1.229176021365306912e-08,1.843764032047960450e-08,2.458352042730614154e-08,3.072940053413268189e-08,3.687528064095922224e-08,4.302116074778576259e-08,4.916704085461230294e-08,5.531292096143884329e-08,6.145880106826539025e-08,6.760468117509193722e-08,7.375056128191848419e-08,7.989644138874503115e-08,8.604232149557157812e-08,9.218820160239812508e-08,9.833408170922467205e-08,1.044799618160512190e-07,1.106258419228777660e-07,1.167717220297043129e-07,1.229176021365308599e-07,1.290634822433574069e-07,1.352093623501839538e-07,1.413552424570105008e-07,1.475011225638370478e-07,1.536470026706635947e-07,1.597928827774901417e-07,1.659387628843166887e-07,1.720846429911432356e-07,1.782305230979697826e-07,1.843764032047963296e-07,1.905222833116228765e-07,1.966681634184494235e-07,2.028140435252759705e-07,2.089599236321025174e-07,2.151058037389290644e-07,2.212516838457556114e-07,2.273975639525821583e-07,2.335434440594087053e-07,2.396893241662352258e-07,2.458352042730617728e-07,2.519810843798883197e-07,2.581269644867148667e-07,2.642728445935414137e-07,2.704187247003679606e-07,2.765646048071945076e-07,2.827104849140210546e-07,2.888563650208476015e-07,2.950022451276741485e-07,3.011481252345006955e-07,3.072940053413272424e-07,3.134398854481537894e-07,3.195857655549803364e-07,3.257316456618068833e-07,3.318775257686334303e-07,3.380234058754599773e-07,3.441692859822865242e-07,3.503151660891130712e-07,3.564610461959396182e-07,3.626069263027661651e-07,3.687528064095927121e-07,3.748986865164192591e-07,3.810445666232458060e-07,3.871904467300723530e-07 +0.000000000000000000e+00,8.770260148512578209e-09,1.754052029702515642e-08,2.631078044553773463e-08,3.508104059405031284e-08,4.385130074256289104e-08,5.262156089107546925e-08,6.139182103958805408e-08,7.016208118810063891e-08,7.893234133661322373e-08,8.770260148512580856e-08,9.647286163363839338e-08,1.052431217821509782e-07,1.140133819306635630e-07,1.227836420791761611e-07,1.315539022276887592e-07,1.403241623762013572e-07,1.490944225247139553e-07,1.578646826732265533e-07,1.666349428217391514e-07,1.754052029702517495e-07,1.841754631187643475e-07,1.929457232672769456e-07,2.017159834157895436e-07,2.104862435643021417e-07,2.192565037128147398e-07,2.280267638613273378e-07,2.367970240098399359e-07,2.455672841583525340e-07,2.543375443068651320e-07,2.631078044553777301e-07,2.718780646038903281e-07,2.806483247524029262e-07,2.894185849009155243e-07,2.981888450494281223e-07,3.069591051979407204e-07,3.157293653464533184e-07,3.244996254949659165e-07,3.332698856434785146e-07,3.420401457919911126e-07,3.508104059405037107e-07,3.595806660890163088e-07,3.683509262375289068e-07,3.771211863860415049e-07,3.858914465345541029e-07,3.946617066830667010e-07,4.034319668315792991e-07,4.122022269800918971e-07,4.209724871286044952e-07,4.297427472771170932e-07,4.385130074256296913e-07,4.472832675741422894e-07,4.560535277226548874e-07,4.648237878711674855e-07,4.735940480196800835e-07,4.823643081681927345e-07,4.911345683167053855e-07,4.999048284652180365e-07,5.086750886137306875e-07,5.174453487622433386e-07,5.262156089107559896e-07,5.349858690592686406e-07,5.437561292077812916e-07,5.525263893562939426e-07 +0.000000000000000000e+00,1.032148854305689869e-08,2.064297708611379738e-08,3.096446562917069773e-08,4.128595417222760139e-08,5.160744271528450504e-08,6.192893125834140870e-08,7.225041980139831897e-08,8.257190834445522924e-08,9.289339688751213951e-08,1.032148854305690498e-07,1.135363739736259601e-07,1.238578625166828703e-07,1.341793510597397806e-07,1.445008396027966909e-07,1.548223281458536012e-07,1.651438166889105114e-07,1.754653052319674217e-07,1.857867937750243320e-07,1.961082823180812422e-07,2.064297708611381525e-07,2.167512594041950628e-07,2.270727479472519731e-07,2.373942364903088833e-07,2.477157250333657936e-07,2.580372135764227039e-07,2.683587021194796142e-07,2.786801906625365244e-07,2.890016792055934347e-07,2.993231677486503450e-07,3.096446562917072552e-07,3.199661448347641655e-07,3.302876333778210758e-07,3.406091219208779861e-07,3.509306104639348963e-07,3.612520990069918066e-07,3.715735875500487169e-07,3.818950760931056272e-07,3.922165646361625374e-07,4.025380531792194477e-07,4.128595417222763580e-07,4.231810302653332682e-07,4.335025188083901785e-07,4.438240073514470888e-07,4.541454958945039991e-07,4.644669844375609093e-07,4.747884729806178196e-07,4.851099615236747828e-07,4.954314500667316931e-07,5.057529386097886034e-07,5.160744271528455136e-07,5.263959156959024239e-07,5.367174042389593342e-07,5.470388927820162445e-07,5.573603813250731547e-07,5.676818698681300650e-07,5.780033584111869753e-07,5.883248469542438855e-07,5.986463354973007958e-07,6.089678240403577061e-07,6.192893125834146164e-07,6.296108011264715266e-07,6.399322896695284369e-07,6.502537782125853472e-07 +0.000000000000000000e+00,1.093834403206479341e-08,2.187668806412958682e-08,3.281503209619437858e-08,4.375337612825916041e-08,5.469172016032395547e-08,6.563006419238874392e-08,7.656840822445353898e-08,8.750675225651832081e-08,9.844509628858311588e-08,1.093834403206479109e-07,1.203217843527127192e-07,1.312601283847775143e-07,1.421984724168423094e-07,1.531368164489071044e-07,1.640751604809718995e-07,1.750135045130366946e-07,1.859518485451014896e-07,1.968901925771662847e-07,2.078285366092310798e-07,2.187668806412958748e-07,2.297052246733606699e-07,2.406435687054254914e-07,2.515819127374902865e-07,2.625202567695550816e-07,2.734586008016198766e-07,2.843969448336846717e-07,2.953352888657494668e-07,3.062736328978142618e-07,3.172119769298790569e-07,3.281503209619438519e-07,3.390886649940086470e-07,3.500270090260734421e-07,3.609653530581382371e-07,3.719036970902030322e-07,3.828420411222678273e-07,3.937803851543326223e-07,4.047187291863974174e-07,4.156570732184622125e-07,4.265954172505270075e-07,4.375337612825918026e-07,4.484721053146565977e-07,4.594104493467213927e-07,4.703487933787861878e-07,4.812871374108509829e-07,4.922254814429157779e-07,5.031638254749805730e-07,5.141021695070453681e-07,5.250405135391101631e-07,5.359788575711749582e-07,5.469172016032397532e-07,5.578555456353045483e-07,5.687938896673693434e-07,5.797322336994341384e-07,5.906705777314989335e-07,6.016089217635637286e-07,6.125472657956285236e-07,6.234856098276933187e-07,6.344239538597581138e-07,6.453622978918229088e-07,6.563006419238877039e-07,6.672389859559524990e-07,6.781773299880172940e-07,6.891156740200820891e-07 +0.000000000000000000e+00,1.031259603800063071e-08,2.062519207600126143e-08,3.093778811400189380e-08,4.125038415200252947e-08,5.156298019000316515e-08,6.187557622800380083e-08,7.218817226600443650e-08,8.250076830400507218e-08,9.281336434200570786e-08,1.031259603800063435e-07,1.134385564180069792e-07,1.237511524560076281e-07,1.340637484940082638e-07,1.443763445320088995e-07,1.546889405700095352e-07,1.650015366080101708e-07,1.753141326460108065e-07,1.856267286840114422e-07,1.959393247220120779e-07,2.062519207600127135e-07,2.165645167980133492e-07,2.268771128360139849e-07,2.371897088740146206e-07,2.475023049120152562e-07,2.578149009500158919e-07,2.681274969880165276e-07,2.784400930260171633e-07,2.887526890640177990e-07,2.990652851020184346e-07,3.093778811400190703e-07,3.196904771780197060e-07,3.300030732160203417e-07,3.403156692540209773e-07,3.506282652920216130e-07,3.609408613300222487e-07,3.712534573680228844e-07,3.815660534060235200e-07,3.918786494440241557e-07,4.021912454820247914e-07,4.125038415200254271e-07,4.228164375580260627e-07,4.331290335960266984e-07,4.434416296340273341e-07,4.537542256720279698e-07,4.640668217100286055e-07,4.743794177480292411e-07,4.846920137860298768e-07,4.950046098240305125e-07,5.053172058620311482e-07,5.156298019000317838e-07,5.259423979380324195e-07,5.362549939760330552e-07,5.465675900140336909e-07,5.568801860520343265e-07,5.671927820900349622e-07,5.775053781280355979e-07,5.878179741660362336e-07,5.981305702040368693e-07,6.084431662420375049e-07,6.187557622800381406e-07,6.290683583180387763e-07,6.393809543560394120e-07,6.496935503940400476e-07 +0.000000000000000000e+00,6.714679657353696558e-09,1.342935931470739312e-08,2.014403897206108885e-08,2.685871862941478292e-08,3.357339828676847700e-08,4.028807794412217107e-08,4.700275760147586515e-08,5.371743725882955923e-08,6.043211691618325330e-08,6.714679657353695400e-08,7.386147623089065469e-08,8.057615588824435538e-08,8.729083554559805608e-08,9.400551520295175677e-08,1.007201948603054575e-07,1.074348745176591582e-07,1.141495541750128589e-07,1.208642338323665595e-07,1.275789134897202602e-07,1.342935931470739609e-07,1.410082728044276616e-07,1.477229524617813623e-07,1.544376321191350630e-07,1.611523117764887637e-07,1.678669914338424644e-07,1.745816710911961651e-07,1.812963507485498658e-07,1.880110304059035665e-07,1.947257100632572672e-07,2.014403897206109679e-07,2.081550693779646686e-07,2.148697490353183693e-07,2.215844286926720700e-07,2.282991083500257706e-07,2.350137880073794713e-07,2.417284676647331720e-07,2.484431473220868727e-07,2.551578269794405734e-07,2.618725066367942741e-07,2.685871862941479748e-07,2.753018659515016755e-07,2.820165456088553762e-07,2.887312252662090769e-07,2.954459049235627776e-07,3.021605845809164783e-07,3.088752642382701790e-07,3.155899438956238797e-07,3.223046235529775804e-07,3.290193032103312811e-07,3.357339828676849817e-07,3.424486625250386824e-07,3.491633421823923831e-07,3.558780218397460838e-07,3.625927014970997845e-07,3.693073811544534852e-07,3.760220608118071859e-07,3.827367404691608866e-07,3.894514201265145873e-07,3.961660997838682880e-07,4.028807794412219887e-07,4.095954590985756894e-07,4.163101387559293901e-07,4.230248184132830908e-07 +0.000000000000000000e+00,1.094217344081787947e-08,2.188434688163575894e-08,3.282652032245363676e-08,4.376869376327151788e-08,5.471086720408939901e-08,6.565304064490727351e-08,7.659521408572514802e-08,8.753738752654303576e-08,9.847956096736088380e-08,1.094217344081787848e-07,1.203639078489966461e-07,1.313060812898145206e-07,1.422482547306323951e-07,1.531904281714502696e-07,1.641326016122681441e-07,1.750747750530860186e-07,1.860169484939038931e-07,1.969591219347217676e-07,2.079012953755396421e-07,2.188434688163575166e-07,2.297856422571753911e-07,2.407278156979932392e-07,2.516699891388110607e-07,2.626121625796288823e-07,2.735543360204467039e-07,2.844965094612645254e-07,2.954386829020823470e-07,3.063808563429001686e-07,3.173230297837179901e-07,3.282652032245358646e-07,3.392073766653536333e-07,3.501495501061714019e-07,3.610917235469892764e-07,3.720338969878071509e-07,3.829760704286249195e-07,3.939182438694426882e-07,4.048604173102605627e-07,4.158025907510784372e-07,4.267447641918962058e-07,4.376869376327139744e-07,4.486291110735318489e-07,4.595712845143497235e-07,4.705134579551674921e-07,4.814556313959853137e-07,4.923978048368031352e-07,5.033399782776209568e-07,5.142821517184387784e-07,5.252243251592565999e-07,5.361664986000744215e-07,5.471086720408922431e-07,5.580508454817100646e-07,5.689930189225278862e-07,5.799351923633457078e-07,5.908773658041635293e-07,6.018195392449813509e-07,6.127617126857991725e-07,6.237038861266169940e-07,6.346460595674348156e-07,6.455882330082525313e-07,6.565304064490704587e-07,6.674725798898882803e-07,6.784147533307061019e-07,6.893569267715240293e-07 +0.000000000000000000e+00,1.093834403206607719e-08,2.187668806413215439e-08,3.281503209619822993e-08,4.375337612826429554e-08,5.469172016033037439e-08,6.563006419239644663e-08,7.656840822446251224e-08,8.750675225652857785e-08,9.844509628859464347e-08,1.093834403206607091e-07,1.203217843527267747e-07,1.312601283847928403e-07,1.421984724168589059e-07,1.531368164489249715e-07,1.640751604809910636e-07,1.750135045130571292e-07,1.859518485451231949e-07,1.968901925771892605e-07,2.078285366092553261e-07,2.187668806413213917e-07,2.297052246733874573e-07,2.406435687054534965e-07,2.515819127375195621e-07,2.625202567695856277e-07,2.734586008016516933e-07,2.843969448337177589e-07,2.953352888657838245e-07,3.062736328978498901e-07,3.172119769299159558e-07,3.281503209619820214e-07,3.390886649940480870e-07,3.500270090261141526e-07,3.609653530581802182e-07,3.719036970902462838e-07,3.828420411223123494e-07,3.937803851543784151e-07,4.047187291864444807e-07,4.156570732185105463e-07,4.265954172505766119e-07,4.375337612826426775e-07,4.484721053147087431e-07,4.594104493467748087e-07,4.703487933788408744e-07,4.812871374109068870e-07,4.922254814429729526e-07,5.031638254750390183e-07,5.141021695071050839e-07,5.250405135391711495e-07,5.359788575712372151e-07,5.469172016033032807e-07,5.578555456353693463e-07,5.687938896674354119e-07,5.797322336995014776e-07,5.906705777315675432e-07,6.016089217636336088e-07,6.125472657956996744e-07,6.234856098277657400e-07,6.344239538598318056e-07,6.453622978918978712e-07,6.563006419239639369e-07,6.672389859560300025e-07,6.781773299880960681e-07,6.891156740201621337e-07 +0.000000000000000000e+00,6.145880106828920975e-09,1.229176021365784195e-08,1.843764032048676127e-08,2.458352042731568059e-08,3.072940053414459991e-08,3.687528064097352254e-08,4.302116074780244517e-08,4.916704085463136780e-08,5.531292096146029043e-08,6.145880106828921305e-08,6.760468117511814230e-08,7.375056128194707155e-08,7.989644138877600079e-08,8.604232149560493004e-08,9.218820160243385929e-08,9.833408170926278853e-08,1.044799618160917178e-07,1.106258419229206470e-07,1.167717220297495763e-07,1.229176021365785055e-07,1.290634822434074348e-07,1.352093623502363640e-07,1.413552424570652933e-07,1.475011225638942225e-07,1.536470026707231518e-07,1.597928827775520810e-07,1.659387628843810102e-07,1.720846429912099395e-07,1.782305230980388687e-07,1.843764032048677980e-07,1.905222833116967272e-07,1.966681634185256565e-07,2.028140435253545857e-07,2.089599236321835150e-07,2.151058037390124442e-07,2.212516838458413735e-07,2.273975639526703027e-07,2.335434440594992320e-07,2.396893241663281877e-07,2.458352042731571699e-07,2.519810843799861520e-07,2.581269644868151342e-07,2.642728445936441164e-07,2.704187247004730986e-07,2.765646048073020808e-07,2.827104849141310630e-07,2.888563650209600452e-07,2.950022451277890273e-07,3.011481252346180095e-07,3.072940053414469917e-07,3.134398854482759739e-07,3.195857655551049561e-07,3.257316456619339383e-07,3.318775257687629205e-07,3.380234058755919026e-07,3.441692859824208848e-07,3.503151660892498670e-07,3.564610461960788492e-07,3.626069263029078314e-07,3.687528064097368136e-07,3.748986865165657958e-07,3.810445666233947779e-07,3.871904467302237601e-07 +0.000000000000000000e+00,8.770260148515211952e-09,1.754052029703042390e-08,2.631078044554563586e-08,3.508104059406084781e-08,4.385130074257605976e-08,5.262156089109127171e-08,6.139182103960647705e-08,7.016208118812168238e-08,7.893234133663688772e-08,8.770260148515209305e-08,9.647286163366729838e-08,1.052431217821825037e-07,1.140133819306977091e-07,1.227836420792129012e-07,1.315539022277280933e-07,1.403241623762432854e-07,1.490944225247584775e-07,1.578646826732736696e-07,1.666349428217888617e-07,1.754052029703040538e-07,1.841754631188192458e-07,1.929457232673344379e-07,2.017159834158496300e-07,2.104862435643648221e-07,2.192565037128800142e-07,2.280267638613952063e-07,2.367970240099103984e-07,2.455672841584255905e-07,2.543375443069407826e-07,2.631078044554559747e-07,2.718780646039711668e-07,2.806483247524863589e-07,2.894185849010015510e-07,2.981888450495167431e-07,3.069591051980319352e-07,3.157293653465471273e-07,3.244996254950623194e-07,3.332698856435775115e-07,3.420401457920927036e-07,3.508104059406078957e-07,3.595806660891230878e-07,3.683509262376382799e-07,3.771211863861534720e-07,3.858914465346686641e-07,3.946617066831838562e-07,4.034319668316990483e-07,4.122022269802142404e-07,4.209724871287294325e-07,4.297427472772446246e-07,4.385130074257598167e-07,4.472832675742750088e-07,4.560535277227902009e-07,4.648237878713053930e-07,4.735940480198205851e-07,4.823643081683357772e-07,4.911345683168509693e-07,4.999048284653661614e-07,5.086750886138813535e-07,5.174453487623965456e-07,5.262156089109117377e-07,5.349858690594269298e-07,5.437561292079421219e-07,5.525263893564573140e-07 +0.000000000000000000e+00,1.032148854305908079e-08,2.064297708611816159e-08,3.096446562917724238e-08,4.128595417223632318e-08,5.160744271529540397e-08,6.192893125835448477e-08,7.225041980141356556e-08,8.257190834447264636e-08,9.289339688753172715e-08,1.032148854305908079e-07,1.135363739736498887e-07,1.238578625167089695e-07,1.341793510597680503e-07,1.445008396028271311e-07,1.548223281458862119e-07,1.651438166889452927e-07,1.754653052320043735e-07,1.857867937750634543e-07,1.961082823181225351e-07,2.064297708611816159e-07,2.167512594042406967e-07,2.270727479472997775e-07,2.373942364903588583e-07,2.477157250334179391e-07,2.580372135764770199e-07,2.683587021195361007e-07,2.786801906625951815e-07,2.890016792056542622e-07,2.993231677487133430e-07,3.096446562917724238e-07,3.199661448348315046e-07,3.302876333778905854e-07,3.406091219209496662e-07,3.509306104640087470e-07,3.612520990070678278e-07,3.715735875501269086e-07,3.818950760931859894e-07,3.922165646362450702e-07,4.025380531793041510e-07,4.128595417223632318e-07,4.231810302654223126e-07,4.335025188084813934e-07,4.438240073515404742e-07,4.541454958945995550e-07,4.644669844376586358e-07,4.747884729807177166e-07,4.851099615237768503e-07,4.954314500668359840e-07,5.057529386098951178e-07,5.160744271529542515e-07,5.263959156960133852e-07,5.367174042390725190e-07,5.470388927821316527e-07,5.573603813251907864e-07,5.676818698682499202e-07,5.780033584113090539e-07,5.883248469543681876e-07,5.986463354974273214e-07,6.089678240404864551e-07,6.192893125835455888e-07,6.296108011266047226e-07,6.399322896696638563e-07,6.502537782127229900e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.285333045103093594e-10,1.057066609020618719e-09,1.585599913530928182e-09,2.114133218041237851e-09,2.642666522551547521e-09,3.171199827061857190e-09,3.699733131572166860e-09,4.228266436082476529e-09,4.756799740592786613e-09,5.285333045103096696e-09,5.813866349613406779e-09,6.342399654123716862e-09,6.870932958634026945e-09,7.399466263144337029e-09,7.927999567654647112e-09,8.456532872164958022e-09,8.985066176675268932e-09,9.513599481185579843e-09,1.004213278569589075e-08,1.057066609020620166e-08,1.109919939471651257e-08,1.162773269922682348e-08,1.215626600373713439e-08,1.268479930824744530e-08,1.321333261275775622e-08,1.374186591726806713e-08,1.427039922177837804e-08,1.479893252628868895e-08,1.532746583079899986e-08,1.585599913530931077e-08,1.638453243981962168e-08,1.691306574432993259e-08,1.744159904884024350e-08,1.797013235335055441e-08,1.849866565786086532e-08,1.902719896237117623e-08,1.955573226688148714e-08,2.008426557139179805e-08,2.061279887590210896e-08,2.114133218041241987e-08,2.166986548492273078e-08,2.219839878943304169e-08,2.272693209394335260e-08,2.325546539845366351e-08,2.378399870296397442e-08,2.431253200747428533e-08,2.484106531198459624e-08,2.536959861649490715e-08,2.589813192100521806e-08,2.642666522551552897e-08,2.695519853002583988e-08,2.748373183453615079e-08,2.801226513904646171e-08,2.854079844355677262e-08,2.906933174806708353e-08,2.959786505257739444e-08,3.012639835708770535e-08,3.065493166159801295e-08,3.118346496610832055e-08,3.171199827061862815e-08,3.224053157512893575e-08,3.276906487963924335e-08,3.329759818414955096e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657542079957e-10,5.111155315084159913e-10,7.666732972626240387e-10,1.022231063016832189e-09,1.277788828771040340e-09,1.533346594525248491e-09,1.788904360279456642e-09,2.044462126033664792e-09,2.300019891787872943e-09,2.555577657542081094e-09,2.811135423296289245e-09,3.066693189050497395e-09,3.322250954804705546e-09,3.577808720558913697e-09,3.833366486313121848e-09,4.088924252067330412e-09,4.344482017821538976e-09,4.600039783575747541e-09,4.855597549329956105e-09,5.111155315084164669e-09,5.366713080838373234e-09,5.622270846592581798e-09,5.877828612346790362e-09,6.133386378100998927e-09,6.388944143855207491e-09,6.644501909609416055e-09,6.900059675363624620e-09,7.155617441117833184e-09,7.411175206872041748e-09,7.666732972626250313e-09,7.922290738380458877e-09,8.177848504134667442e-09,8.433406269888876006e-09,8.688964035643084570e-09,8.944521801397293135e-09,9.200079567151501699e-09,9.455637332905710263e-09,9.711195098659918828e-09,9.966752864414127392e-09,1.022231063016833596e-08,1.047786839592254452e-08,1.073342616167675308e-08,1.098898392743096165e-08,1.124454169318517021e-08,1.150009945893937878e-08,1.175565722469358734e-08,1.201121499044779591e-08,1.226677275620200447e-08,1.252233052195621304e-08,1.277788828771042160e-08,1.303344605346463016e-08,1.328900381921883873e-08,1.354456158497304729e-08,1.380011935072725586e-08,1.405567711648146442e-08,1.431123488223567299e-08,1.456679264798988155e-08,1.482235041374409011e-08,1.507790817949830033e-08,1.533346594525251055e-08,1.558902371100672077e-08,1.584458147676093099e-08,1.610013924251514121e-08 +0.000000000000000000e+00,8.832056515523313423e-10,1.766411303104662685e-09,2.649616954656993820e-09,3.532822606209324955e-09,4.416028257761656091e-09,5.299233909313987640e-09,6.182439560866319189e-09,7.065645212418650738e-09,7.948850863970981460e-09,8.832056515523312182e-09,9.715262167075642904e-09,1.059846781862797363e-08,1.148167347018030435e-08,1.236487912173263507e-08,1.324808477328496579e-08,1.413129042483729651e-08,1.501449607638962723e-08,1.589770172794195630e-08,1.678090737949428537e-08,1.766411303104661444e-08,1.854731868259894350e-08,1.943052433415127257e-08,2.031372998570360164e-08,2.119693563725593071e-08,2.208014128880825977e-08,2.296334694036058884e-08,2.384655259191291791e-08,2.472975824346524698e-08,2.561296389501757604e-08,2.649616954656990511e-08,2.737937519812223418e-08,2.826258084967456325e-08,2.914578650122689231e-08,3.002899215277922138e-08,3.091219780433154714e-08,3.179540345588387290e-08,3.267860910743619866e-08,3.356181475898852442e-08,3.444502041054085018e-08,3.532822606209317594e-08,3.621143171364550169e-08,3.709463736519782745e-08,3.797784301675015321e-08,3.886104866830247897e-08,3.974425431985480473e-08,4.062745997140713049e-08,4.151066562295945625e-08,4.239387127451178201e-08,4.327707692606410776e-08,4.416028257761643352e-08,4.504348822916875928e-08,4.592669388072108504e-08,4.680989953227341080e-08,4.769310518382573656e-08,4.857631083537806232e-08,4.945951648693038808e-08,5.034272213848271383e-08,5.122592779003503959e-08,5.210913344158736535e-08,5.299233909313969111e-08,5.387554474469201687e-08,5.475875039624434263e-08,5.564195604779666839e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.285333045105365239e-10,1.057066609021073048e-09,1.585599913531609572e-09,2.114133218042146095e-09,2.642666522552682826e-09,3.171199827063219557e-09,3.699733131573756287e-09,4.228266436084293018e-09,4.756799740594829749e-09,5.285333045105366479e-09,5.813866349615903210e-09,6.342399654126439941e-09,6.870932958636976671e-09,7.399466263147513402e-09,7.927999567658050133e-09,8.456532872168587691e-09,8.985066176679125248e-09,9.513599481189662806e-09,1.004213278570020036e-08,1.057066609021073792e-08,1.109919939472127548e-08,1.162773269923181304e-08,1.215626600374235060e-08,1.268479930825288815e-08,1.321333261276342571e-08,1.374186591727396327e-08,1.427039922178450083e-08,1.479893252629503838e-08,1.532746583080557760e-08,1.585599913531611681e-08,1.638453243982665602e-08,1.691306574433719523e-08,1.744159904884773445e-08,1.797013235335827366e-08,1.849866565786881287e-08,1.902719896237935208e-08,1.955573226688989129e-08,2.008426557140043051e-08,2.061279887591096972e-08,2.114133218042150893e-08,2.166986548493204814e-08,2.219839878944258736e-08,2.272693209395312657e-08,2.325546539846366578e-08,2.378399870297420499e-08,2.431253200748474420e-08,2.484106531199528342e-08,2.536959861650582263e-08,2.589813192101636184e-08,2.642666522552690105e-08,2.695519853003744027e-08,2.748373183454797948e-08,2.801226513905851869e-08,2.854079844356905790e-08,2.906933174807959711e-08,2.959786505259013633e-08,3.012639835710067554e-08,3.065493166161121475e-08,3.118346496612175396e-08,3.171199827063229318e-08,3.224053157514283239e-08,3.276906487965337160e-08,3.329759818416391081e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657543071539e-10,5.111155315086143079e-10,7.666732972629214101e-10,1.022231063017228409e-09,1.277788828771535408e-09,1.533346594525842407e-09,1.788904360280149405e-09,2.044462126034456404e-09,2.300019891788763403e-09,2.555577657543070402e-09,2.811135423297377401e-09,3.066693189051684400e-09,3.322250954805991398e-09,3.577808720560298397e-09,3.833366486314605810e-09,4.088924252068913636e-09,4.344482017823221462e-09,4.600039783577529288e-09,4.855597549331837114e-09,5.111155315086144940e-09,5.366713080840452766e-09,5.622270846594760592e-09,5.877828612349068418e-09,6.133386378103376244e-09,6.388944143857684070e-09,6.644501909611991896e-09,6.900059675366299722e-09,7.155617441120607548e-09,7.411175206874915374e-09,7.666732972629223200e-09,7.922290738383531026e-09,8.177848504137838852e-09,8.433406269892146678e-09,8.688964035646454504e-09,8.944521801400762330e-09,9.200079567155070156e-09,9.455637332909377982e-09,9.711195098663685808e-09,9.966752864417993634e-09,1.022231063017230146e-08,1.047786839592660929e-08,1.073342616168091711e-08,1.098898392743522494e-08,1.124454169318953276e-08,1.150009945894384059e-08,1.175565722469814842e-08,1.201121499045245624e-08,1.226677275620676407e-08,1.252233052196107189e-08,1.277788828771537972e-08,1.303344605346968755e-08,1.328900381922399537e-08,1.354456158497830320e-08,1.380011935073261102e-08,1.405567711648691885e-08,1.431123488224122668e-08,1.456679264799553450e-08,1.482235041374984233e-08,1.507790817950415015e-08,1.533346594525845633e-08,1.558902371101276250e-08,1.584458147676706867e-08,1.610013924252137484e-08 +0.000000000000000000e+00,8.832056515525465126e-10,1.766411303105093025e-09,2.649616954657639434e-09,3.532822606210185637e-09,4.416028257762732253e-09,5.299233909315278869e-09,6.182439560867825485e-09,7.065645212420372101e-09,7.948850863972918717e-09,8.832056515525464506e-09,9.715262167078010295e-09,1.059846781863055608e-08,1.148167347018310187e-08,1.236487912173564766e-08,1.324808477328819345e-08,1.413129042484073924e-08,1.501449607639328337e-08,1.589770172794582751e-08,1.678090737949837164e-08,1.766411303105091578e-08,1.854731868260345991e-08,1.943052433415600405e-08,2.031372998570854818e-08,2.119693563726109231e-08,2.208014128881363645e-08,2.296334694036618058e-08,2.384655259191872472e-08,2.472975824347126885e-08,2.561296389502381299e-08,2.649616954657635712e-08,2.737937519812890126e-08,2.826258084968144539e-08,2.914578650123398952e-08,3.002899215278653366e-08,3.091219780433907779e-08,3.179540345589162193e-08,3.267860910744416606e-08,3.356181475899671020e-08,3.444502041054925433e-08,3.532822606210179847e-08,3.621143171365434260e-08,3.709463736520688673e-08,3.797784301675943087e-08,3.886104866831197500e-08,3.974425431986451914e-08,4.062745997141706327e-08,4.151066562296960741e-08,4.239387127452215154e-08,4.327707692607469568e-08,4.416028257762723981e-08,4.504348822917978394e-08,4.592669388073232808e-08,4.680989953228487221e-08,4.769310518383741635e-08,4.857631083538996048e-08,4.945951648694250462e-08,5.034272213849504875e-08,5.122592779004759289e-08,5.210913344160013702e-08,5.299233909315268116e-08,5.387554474470522529e-08,5.475875039625776942e-08,5.564195604781031356e-08 +0.000000000000000000e+00,1.187870811536319081e-09,2.375741623072638162e-09,3.563612434608957450e-09,4.751483246145277152e-09,5.939354057681596853e-09,7.127224869217916555e-09,8.315095680754236257e-09,9.502966492290555958e-09,1.069083730382687566e-08,1.187870811536319536e-08,1.306657892689951506e-08,1.425444973843583476e-08,1.544232054997215612e-08,1.663019136150847582e-08,1.781806217304479552e-08,1.900593298458111522e-08,2.019380379611743493e-08,2.138167460765375463e-08,2.256954541919007433e-08,2.375741623072639403e-08,2.494528704226271373e-08,2.613315785379903343e-08,2.732102866533535314e-08,2.850889947687167284e-08,2.969677028840799254e-08,3.088464109994431224e-08,3.207251191148063194e-08,3.326038272301695164e-08,3.444825353455327135e-08,3.563612434608959105e-08,3.682399515762591075e-08,3.801186596916223045e-08,3.919973678069855015e-08,4.038760759223486985e-08,4.157547840377118955e-08,4.276334921530750926e-08,4.395122002684382896e-08,4.513909083838014866e-08,4.632696164991646836e-08,4.751483246145278806e-08,4.870270327298910776e-08,4.989057408452542747e-08,5.107844489606174717e-08,5.226631570759806687e-08,5.345418651913438657e-08,5.464205733067070627e-08,5.582992814220702597e-08,5.701779895374334567e-08,5.820566976527966538e-08,5.939354057681598508e-08,6.058141138835231140e-08,6.176928219988863772e-08,6.295715301142496403e-08,6.414502382296129035e-08,6.533289463449761667e-08,6.652076544603394299e-08,6.770863625757026931e-08,6.889650706910659563e-08,7.008437788064292195e-08,7.127224869217924827e-08,7.246011950371557459e-08,7.364799031525190091e-08,7.483586112678822722e-08 +0.000000000000000000e+00,8.498432584838712833e-10,1.699686516967742567e-09,2.549529775451614057e-09,3.399373033935485547e-09,4.249216292419357037e-09,5.099059550903228113e-09,5.948902809387099190e-09,6.798746067870970266e-09,7.648589326354842170e-09,8.498432584838714073e-09,9.348275843322585977e-09,1.019811910180645788e-08,1.104796236029032978e-08,1.189780561877420169e-08,1.274764887725807359e-08,1.359749213574194550e-08,1.444733539422581740e-08,1.529717865270969096e-08,1.614702191119356451e-08,1.699686516967743807e-08,1.784670842816131163e-08,1.869655168664518519e-08,1.954639494512905875e-08,2.039623820361293230e-08,2.124608146209680586e-08,2.209592472058067942e-08,2.294576797906455298e-08,2.379561123754842654e-08,2.464545449603230010e-08,2.549529775451617365e-08,2.634514101300004721e-08,2.719498427148392077e-08,2.804482752996779433e-08,2.889467078845166789e-08,2.974451404693554144e-08,3.059435730541941500e-08,3.144420056390328856e-08,3.229404382238716212e-08,3.314388708087103568e-08,3.399373033935490923e-08,3.484357359783878279e-08,3.569341685632265635e-08,3.654326011480652991e-08,3.739310337329040347e-08,3.824294663177427702e-08,3.909278989025815058e-08,3.994263314874202414e-08,4.079247640722589770e-08,4.164231966570977126e-08,4.249216292419364481e-08,4.334200618267751837e-08,4.419184944116139193e-08,4.504169269964526549e-08,4.589153595812913905e-08,4.674137921661301260e-08,4.759122247509688616e-08,4.844106573358075972e-08,4.929090899206463328e-08,5.014075225054850684e-08,5.099059550903238039e-08,5.184043876751625395e-08,5.269028202600012751e-08,5.354012528448400107e-08 +0.000000000000000000e+00,1.886330231066534039e-09,3.772660462133068078e-09,5.658990693199602531e-09,7.545320924266137811e-09,9.431651155332673091e-09,1.131798138639920837e-08,1.320431161746574365e-08,1.509064184853227893e-08,1.697697207959881421e-08,1.886330231066534949e-08,2.074963254173188477e-08,2.263596277279842005e-08,2.452229300386495533e-08,2.640862323493149061e-08,2.829495346599802589e-08,3.018128369706456448e-08,3.206761392813110307e-08,3.395394415919764166e-08,3.584027439026418025e-08,3.772660462133071883e-08,3.961293485239725742e-08,4.149926508346379601e-08,4.338559531453033460e-08,4.527192554559687319e-08,4.715825577666341178e-08,4.904458600772995037e-08,5.093091623879648896e-08,5.281724646986302754e-08,5.470357670092956613e-08,5.658990693199610472e-08,5.847623716306264331e-08,6.036256739412918190e-08,6.224889762519572049e-08,6.413522785626225908e-08,6.602155808732879767e-08,6.790788831839533625e-08,6.979421854946187484e-08,7.168054878052841343e-08,7.356687901159495202e-08,7.545320924266149061e-08,7.733953947372802920e-08,7.922586970479456779e-08,8.111219993586110638e-08,8.299853016692764496e-08,8.488486039799418355e-08,8.677119062906072214e-08,8.865752086012726073e-08,9.054385109119379932e-08,9.243018132226033791e-08,9.431651155332687650e-08,9.620284178439341508e-08,9.808917201545995367e-08,9.997550224652649226e-08,1.018618324775930309e-07,1.037481627086595694e-07,1.056344929397261080e-07,1.075208231707926466e-07,1.094071534018591852e-07,1.112934836329257238e-07,1.131798138639922624e-07,1.150661440950588010e-07,1.169524743261253396e-07,1.188388045571918781e-07 +0.000000000000000000e+00,1.187870811536967591e-09,2.375741623073935182e-09,3.563612434610902979e-09,4.751483246147871190e-09,5.939354057684839401e-09,7.127224869221807613e-09,8.315095680758775824e-09,9.502966492295744035e-09,1.069083730383271225e-08,1.187870811536968046e-08,1.306657892690664867e-08,1.425444973844361688e-08,1.544232054998058675e-08,1.663019136151755496e-08,1.781806217305452317e-08,1.900593298459149138e-08,2.019380379612845959e-08,2.138167460766542780e-08,2.256954541920239601e-08,2.375741623073936422e-08,2.494528704227633243e-08,2.613315785381330065e-08,2.732102866535026886e-08,2.850889947688723707e-08,2.969677028842420528e-08,3.088464109996117349e-08,3.207251191149814170e-08,3.326038272303510991e-08,3.444825353457207812e-08,3.563612434610904633e-08,3.682399515764601455e-08,3.801186596918298276e-08,3.919973678071995097e-08,4.038760759225691918e-08,4.157547840379388739e-08,4.276334921533085560e-08,4.395122002686782381e-08,4.513909083840479202e-08,4.632696164994176024e-08,4.751483246147872845e-08,4.870270327301569666e-08,4.989057408455266487e-08,5.107844489608963308e-08,5.226631570762660129e-08,5.345418651916356950e-08,5.464205733070053771e-08,5.582992814223750592e-08,5.701779895377447414e-08,5.820566976531144235e-08,5.939354057684841056e-08,6.058141138838537215e-08,6.176928219992233375e-08,6.295715301145929534e-08,6.414502382299625693e-08,6.533289463453321853e-08,6.652076544607018012e-08,6.770863625760714171e-08,6.889650706914410331e-08,7.008437788068106490e-08,7.127224869221802649e-08,7.246011950375498809e-08,7.364799031529194968e-08,7.483586112682891128e-08 +0.000000000000000000e+00,8.498432584842837362e-10,1.699686516968567472e-09,2.549529775452851105e-09,3.399373033937134531e-09,4.249216292421417544e-09,5.099059550905700556e-09,5.948902809389983568e-09,6.798746067874266581e-09,7.648589326358549593e-09,8.498432584842831778e-09,9.348275843327113964e-09,1.019811910181139615e-08,1.104796236029567833e-08,1.189780561877996052e-08,1.274764887726424270e-08,1.359749213574852489e-08,1.444733539423280708e-08,1.529717865271708926e-08,1.614702191120137310e-08,1.699686516968565694e-08,1.784670842816994078e-08,1.869655168665422462e-08,1.954639494513850846e-08,2.039623820362279230e-08,2.124608146210707614e-08,2.209592472059135998e-08,2.294576797907564382e-08,2.379561123755992766e-08,2.464545449604421150e-08,2.549529775452849534e-08,2.634514101301277918e-08,2.719498427149706301e-08,2.804482752998134685e-08,2.889467078846563069e-08,2.974451404694991453e-08,3.059435730543419837e-08,3.144420056391848221e-08,3.229404382240276605e-08,3.314388708088704989e-08,3.399373033937133373e-08,3.484357359785561757e-08,3.569341685633990141e-08,3.654326011482418525e-08,3.739310337330846909e-08,3.824294663179275293e-08,3.909278989027703677e-08,3.994263314876132061e-08,4.079247640724560445e-08,4.164231966572988829e-08,4.249216292421417213e-08,4.334200618269845597e-08,4.419184944118273981e-08,4.504169269966702365e-08,4.589153595815130749e-08,4.674137921663559133e-08,4.759122247511987516e-08,4.844106573360415900e-08,4.929090899208844284e-08,5.014075225057272668e-08,5.099059550905701052e-08,5.184043876754129436e-08,5.269028202602557820e-08,5.354012528450986204e-08 +0.000000000000000000e+00,1.886330231067171382e-09,3.772660462134342764e-09,5.658990693201514146e-09,7.545320924268685528e-09,9.431651155335856082e-09,1.131798138640302664e-08,1.320431161747019719e-08,1.509064184853736775e-08,1.697697207960453830e-08,1.886330231067170886e-08,2.074963254173887941e-08,2.263596277280604997e-08,2.452229300387322052e-08,2.640862323494039107e-08,2.829495346600756163e-08,3.018128369707472888e-08,3.206761392814189612e-08,3.395394415920906337e-08,3.584027439027623061e-08,3.772660462134339786e-08,3.961293485241056511e-08,4.149926508347773235e-08,4.338559531454489960e-08,4.527192554561206684e-08,4.715825577667923409e-08,4.904458600774640134e-08,5.093091623881356858e-08,5.281724646988073583e-08,5.470357670094790307e-08,5.658990693201507032e-08,5.847623716308223756e-08,6.036256739414940481e-08,6.224889762521657867e-08,6.413522785628375254e-08,6.602155808735092640e-08,6.790788831841810026e-08,6.979421854948527413e-08,7.168054878055244799e-08,7.356687901161962185e-08,7.545320924268679572e-08,7.733953947375396958e-08,7.922586970482114345e-08,8.111219993588831731e-08,8.299853016695549117e-08,8.488486039802266504e-08,8.677119062908983890e-08,8.865752086015701276e-08,9.054385109122418663e-08,9.243018132229136049e-08,9.431651155335853435e-08,9.620284178442570822e-08,9.808917201549288208e-08,9.997550224656005594e-08,1.018618324776272298e-07,1.037481627086944037e-07,1.056344929397615775e-07,1.075208231708287514e-07,1.094071534018959253e-07,1.112934836329630991e-07,1.131798138640302730e-07,1.150661440950974469e-07,1.169524743261646207e-07,1.188388045572317946e-07 +0.000000000000000000e+00,1.913210363561128554e-09,3.826420727122257107e-09,5.739631090683385661e-09,7.652841454244514214e-09,9.566051817805642768e-09,1.147926218136677132e-08,1.339247254492789988e-08,1.530568290848902843e-08,1.721889327205015698e-08,1.913210363561128554e-08,2.104531399917241409e-08,2.295852436273354264e-08,2.487173472629467120e-08,2.678494508985579975e-08,2.869815545341692830e-08,3.061136581697805686e-08,3.252457618053918872e-08,3.443778654410032058e-08,3.635099690766145244e-08,3.826420727122258431e-08,4.017741763478371617e-08,4.209062799834484803e-08,4.400383836190597989e-08,4.591704872546711176e-08,4.783025908902824362e-08,4.974346945258937548e-08,5.165667981615050734e-08,5.356989017971163921e-08,5.548310054327277107e-08,5.739631090683390293e-08,5.930952127039503479e-08,6.122273163395616665e-08,6.313594199751729852e-08,6.504915236107843038e-08,6.696236272463956224e-08,6.887557308820069410e-08,7.078878345176182597e-08,7.270199381532295783e-08,7.461520417888408969e-08,7.652841454244522155e-08,7.844162490600635341e-08,8.035483526956748528e-08,8.226804563312861714e-08,8.418125599668974900e-08,8.609446636025088086e-08,8.800767672381201273e-08,8.992088708737314459e-08,9.183409745093427645e-08,9.374730781449540831e-08,9.566051817805654018e-08,9.757372854161767204e-08,9.948693890517880390e-08,1.014001492687399358e-07,1.033133596323010676e-07,1.052265699958621995e-07,1.071397803594233313e-07,1.090529907229844632e-07,1.109662010865455951e-07,1.128794114501067269e-07,1.147926218136678588e-07,1.167058321772289907e-07,1.186190425407901225e-07,1.205322529043512412e-07 +0.000000000000000000e+00,1.544364335742369584e-09,3.088728671484739169e-09,4.633093007227109167e-09,6.177457342969479165e-09,7.721821678711849163e-09,9.266186014454218334e-09,1.081055035019658750e-08,1.235491468593895668e-08,1.389927902168132585e-08,1.544364335742369502e-08,1.698800769316606253e-08,1.853237202890843005e-08,2.007673636465079757e-08,2.162110070039316508e-08,2.316546503613553260e-08,2.470982937187790012e-08,2.625419370762026763e-08,2.779855804336263515e-08,2.934292237910500267e-08,3.088728671484737018e-08,3.243165105058973770e-08,3.397601538633210522e-08,3.552037972207447273e-08,3.706474405781684025e-08,3.860910839355920776e-08,4.015347272930157528e-08,4.169783706504394280e-08,4.324220140078631031e-08,4.478656573652867783e-08,4.633093007227104535e-08,4.787529440801341286e-08,4.941965874375578038e-08,5.096402307949814790e-08,5.250838741524051541e-08,5.405275175098288293e-08,5.559711608672525045e-08,5.714148042246761796e-08,5.868584475820998548e-08,6.023020909395235961e-08,6.177457342969472713e-08,6.331893776543709465e-08,6.486330210117946216e-08,6.640766643692182968e-08,6.795203077266419720e-08,6.949639510840656471e-08,7.104075944414893223e-08,7.258512377989129975e-08,7.412948811563366726e-08,7.567385245137603478e-08,7.721821678711840229e-08,7.876258112286076981e-08,8.030694545860313733e-08,8.185130979434550484e-08,8.339567413008787236e-08,8.494003846583023988e-08,8.648440280157260739e-08,8.802876713731497491e-08,8.957313147305734243e-08,9.111749580879970994e-08,9.266186014454207746e-08,9.420622448028444498e-08,9.575058881602681249e-08,9.729495315176918001e-08 +0.000000000000000000e+00,2.918693885278145082e-09,5.837387770556290164e-09,8.756081655834435246e-09,1.167477554111258033e-08,1.459346942639072541e-08,1.751216331166887049e-08,2.043085719694701557e-08,2.334955108222516066e-08,2.626824496750330574e-08,2.918693885278145082e-08,3.210563273805959590e-08,3.502432662333774098e-08,3.794302050861588607e-08,4.086171439389403115e-08,4.378040827917217623e-08,4.669910216445032131e-08,4.961779604972846639e-08,5.253648993500661148e-08,5.545518382028475656e-08,5.837387770556290164e-08,6.129257159084105334e-08,6.421126547611920504e-08,6.712995936139735674e-08,7.004865324667550844e-08,7.296734713195366014e-08,7.588604101723181184e-08,7.880473490250996354e-08,8.172342878778811524e-08,8.464212267306626694e-08,8.756081655834441863e-08,9.047951044362257033e-08,9.339820432890072203e-08,9.631689821417887373e-08,9.923559209945702543e-08,1.021542859847351771e-07,1.050729798700133288e-07,1.079916737552914805e-07,1.109103676405696322e-07,1.138290615258477839e-07,1.167477554111259356e-07,1.196664492964040873e-07,1.225851431816822390e-07,1.255038370669603907e-07,1.284225309522385424e-07,1.313412248375166941e-07,1.342599187227948458e-07,1.371786126080729975e-07,1.400973064933511492e-07,1.430160003786293009e-07,1.459346942639074526e-07,1.488533881491856043e-07,1.517720820344637560e-07,1.546907759197419077e-07,1.576094698050200594e-07,1.605281636902982111e-07,1.634468575755763628e-07,1.663655514608545145e-07,1.692842453461326662e-07,1.722029392314108179e-07,1.751216331166889696e-07,1.780403270019671213e-07,1.809590208872452730e-07,1.838777147725234247e-07 +0.000000000000000000e+00,1.913210363562418542e-09,3.826420727124837083e-09,5.739631090687255212e-09,7.652841454249672513e-09,9.566051817812089814e-09,1.147926218137450711e-08,1.339247254493692442e-08,1.530568290849934172e-08,1.721889327206176067e-08,1.913210363562417963e-08,2.104531399918659858e-08,2.295852436274901754e-08,2.487173472631143649e-08,2.678494508987385545e-08,2.869815545343627440e-08,3.061136581699869005e-08,3.252457618056110570e-08,3.443778654412352134e-08,3.635099690768593699e-08,3.826420727124835264e-08,4.017741763481076828e-08,4.209062799837318393e-08,4.400383836193559958e-08,4.591704872549801522e-08,4.783025908906043087e-08,4.974346945262284652e-08,5.165667981618526216e-08,5.356989017974767781e-08,5.548310054331009346e-08,5.739631090687250910e-08,5.930952127043492475e-08,6.122273163399734040e-08,6.313594199755975604e-08,6.504915236112217169e-08,6.696236272468458734e-08,6.887557308824700298e-08,7.078878345180941863e-08,7.270199381537183428e-08,7.461520417893424992e-08,7.652841454249666557e-08,7.844162490605908122e-08,8.035483526962149686e-08,8.226804563318391251e-08,8.418125599674632816e-08,8.609446636030874380e-08,8.800767672387115945e-08,8.992088708743357510e-08,9.183409745099599074e-08,9.374730781455840639e-08,9.566051817812082204e-08,9.757372854168323768e-08,9.948693890524565333e-08,1.014001492688080690e-07,1.033133596323704846e-07,1.052265699959329003e-07,1.071397803594953159e-07,1.090529907230577316e-07,1.109662010866201472e-07,1.128794114501825629e-07,1.147926218137449785e-07,1.167058321773073941e-07,1.186190425408698098e-07,1.205322529044322387e-07 +0.000000000000000000e+00,1.544364335743318154e-09,3.088728671486636308e-09,4.633093007229954668e-09,6.177457342973273442e-09,7.721821678716592217e-09,9.266186014459910991e-09,1.081055035020322977e-08,1.235491468594654854e-08,1.389927902168986731e-08,1.544364335743318443e-08,1.698800769317650155e-08,1.853237202891981867e-08,2.007673636466313579e-08,2.162110070040645291e-08,2.316546503614977003e-08,2.470982937189308715e-08,2.625419370763640427e-08,2.779855804337972139e-08,2.934292237912303851e-08,3.088728671486635563e-08,3.243165105060967606e-08,3.397601538635299649e-08,3.552037972209631692e-08,3.706474405783963735e-08,3.860910839358295777e-08,4.015347272932627820e-08,4.169783706506959863e-08,4.324220140081291906e-08,4.478656573655623949e-08,4.633093007229955992e-08,4.787529440804288035e-08,4.941965874378620077e-08,5.096402307952952120e-08,5.250838741527284163e-08,5.405275175101616206e-08,5.559711608675948249e-08,5.714148042250280292e-08,5.868584475824612335e-08,6.023020909398944377e-08,6.177457342973276420e-08,6.331893776547608463e-08,6.486330210121940506e-08,6.640766643696272549e-08,6.795203077270604592e-08,6.949639510844936635e-08,7.104075944419268677e-08,7.258512377993600720e-08,7.412948811567932763e-08,7.567385245142264806e-08,7.721821678716596849e-08,7.876258112290928892e-08,8.030694545865260935e-08,8.185130979439592977e-08,8.339567413013925020e-08,8.494003846588257063e-08,8.648440280162589106e-08,8.802876713736921149e-08,8.957313147311253192e-08,9.111749580885585235e-08,9.266186014459917277e-08,9.420622448034249320e-08,9.575058881608581363e-08,9.729495315182913406e-08 +0.000000000000000000e+00,2.918693885279397433e-09,5.837387770558794867e-09,8.756081655838192300e-09,1.167477554111758973e-08,1.459346942639698717e-08,1.751216331167638460e-08,2.043085719695578369e-08,2.334955108223518278e-08,2.626824496751458186e-08,2.918693885279398095e-08,3.210563273807338004e-08,3.502432662335277582e-08,3.794302050863217160e-08,4.086171439391156738e-08,4.378040827919096316e-08,4.669910216447035894e-08,4.961779604974975471e-08,5.253648993502915049e-08,5.545518382030854627e-08,5.837387770558794205e-08,6.129257159086733783e-08,6.421126547614673361e-08,6.712995936142612939e-08,7.004865324670552517e-08,7.296734713198492095e-08,7.588604101726431673e-08,7.880473490254371251e-08,8.172342878782310828e-08,8.464212267310250406e-08,8.756081655838189984e-08,9.047951044366129562e-08,9.339820432894069140e-08,9.631689821422008718e-08,9.923559209949948296e-08,1.021542859847788787e-07,1.050729798700582745e-07,1.079916737553376703e-07,1.109103676406170661e-07,1.138290615258964619e-07,1.167477554111758576e-07,1.196664492964552534e-07,1.225851431817346492e-07,1.255038370670140450e-07,1.284225309522934408e-07,1.313412248375728365e-07,1.342599187228522323e-07,1.371786126081316281e-07,1.400973064934110239e-07,1.430160003786904196e-07,1.459346942639698154e-07,1.488533881492492112e-07,1.517720820345286070e-07,1.546907759198080028e-07,1.576094698050873985e-07,1.605281636903667943e-07,1.634468575756461901e-07,1.663655514609255859e-07,1.692842453462049817e-07,1.722029392314843774e-07,1.751216331167637732e-07,1.780403270020431690e-07,1.809590208873225648e-07,1.838777147726019606e-07 +0.000000000000000000e+00,2.644333645642747575e-09,5.288667291285495150e-09,7.933000936928241898e-09,1.057733458257098865e-08,1.322166822821373539e-08,1.586600187385648380e-08,1.851033551949923220e-08,2.115466916514198060e-08,2.379900281078472900e-08,2.644333645642747741e-08,2.908767010207022581e-08,3.173200374771297421e-08,3.437633739335572261e-08,3.702067103899847102e-08,3.966500468464121942e-08,4.230933833028396782e-08,4.495367197592671622e-08,4.759800562156946462e-08,5.024233926721221303e-08,5.288667291285496143e-08,5.553100655849770983e-08,5.817534020414045823e-08,6.081967384978320002e-08,6.346400749542593519e-08,6.610834114106867035e-08,6.875267478671140552e-08,7.139700843235414069e-08,7.404134207799687586e-08,7.668567572363961102e-08,7.933000936928234619e-08,8.197434301492508136e-08,8.461867666056781653e-08,8.726301030621055169e-08,8.990734395185328686e-08,9.255167759749602203e-08,9.519601124313875720e-08,9.784034488878149236e-08,1.004846785344242275e-07,1.031290121800669627e-07,1.057733458257096979e-07,1.084176794713524330e-07,1.110620131169951682e-07,1.137063467626379034e-07,1.163506804082806385e-07,1.189950140539233737e-07,1.216393476995661089e-07,1.242836813452088440e-07,1.269280149908515792e-07,1.295723486364943144e-07,1.322166822821370495e-07,1.348610159277797847e-07,1.375053495734225199e-07,1.401496832190652550e-07,1.427940168647079902e-07,1.454383505103507254e-07,1.480826841559934605e-07,1.507270178016361957e-07,1.533713514472789309e-07,1.560156850929216660e-07,1.586600187385644012e-07,1.613043523842071364e-07,1.639486860298498716e-07,1.665930196754926067e-07 +0.000000000000000000e+00,2.276980632185902362e-09,4.553961264371804724e-09,6.830941896557707500e-09,9.107922528743611102e-09,1.138490316092951471e-08,1.366188379311541831e-08,1.593886442530132191e-08,1.821584505748722551e-08,2.049282568967312912e-08,2.276980632185903272e-08,2.504678695404493632e-08,2.732376758623083992e-08,2.960074821841674353e-08,3.187772885060264382e-08,3.415470948278854412e-08,3.643169011497444441e-08,3.870867074716034470e-08,4.098565137934624500e-08,4.326263201153214529e-08,4.553961264371804559e-08,4.781659327590394588e-08,5.009357390808984617e-08,5.237055454027574647e-08,5.464753517246164676e-08,5.692451580464754706e-08,5.920149643683344735e-08,6.147847706901934103e-08,6.375545770120523470e-08,6.603243833339112838e-08,6.830941896557702206e-08,7.058639959776291573e-08,7.286338022994880941e-08,7.514036086213470309e-08,7.741734149432059676e-08,7.969432212650649044e-08,8.197130275869238412e-08,8.424828339087827779e-08,8.652526402306417147e-08,8.880224465525006515e-08,9.107922528743595882e-08,9.335620591962185250e-08,9.563318655180774617e-08,9.791016718399363985e-08,1.001871478161795335e-07,1.024641284483654272e-07,1.047411090805513209e-07,1.070180897127372146e-07,1.092950703449231082e-07,1.115720509771090019e-07,1.138490316092948956e-07,1.161260122414807893e-07,1.184029928736666829e-07,1.206799735058525766e-07,1.229569541380384703e-07,1.252339347702243640e-07,1.275109154024102576e-07,1.297878960345961513e-07,1.320648766667820450e-07,1.343418572989679387e-07,1.366188379311538324e-07,1.388958185633397260e-07,1.411727991955256197e-07,1.434497798277115134e-07 +0.000000000000000000e+00,3.932875710630436827e-09,7.865751421260873655e-09,1.179862713189131048e-08,1.573150284252174731e-08,1.966437855315218414e-08,2.359725426378262096e-08,2.753012997441305779e-08,3.146300568504349462e-08,3.539588139567393145e-08,3.932875710630436827e-08,4.326163281693480510e-08,4.719450852756524193e-08,5.112738423819567875e-08,5.506025994882611558e-08,5.899313565945655241e-08,6.292601137008698924e-08,6.685888708071742606e-08,7.079176279134786289e-08,7.472463850197829972e-08,7.865751421260873655e-08,8.259038992323917337e-08,8.652326563386961020e-08,9.045614134450004703e-08,9.438901705513048385e-08,9.832189276576092068e-08,1.022547684763913575e-07,1.061876441870217943e-07,1.101205198976522312e-07,1.140533956082826680e-07,1.179862713189131048e-07,1.219191470295435549e-07,1.258520227401740049e-07,1.297848984508044550e-07,1.337177741614349051e-07,1.376506498720653551e-07,1.415835255826958052e-07,1.455164012933262553e-07,1.494492770039567053e-07,1.533821527145871554e-07,1.573150284252176054e-07,1.612479041358480555e-07,1.651807798464785056e-07,1.691136555571089556e-07,1.730465312677394057e-07,1.769794069783698558e-07,1.809122826890003058e-07,1.848451583996307559e-07,1.887780341102612059e-07,1.927109098208916560e-07,1.966437855315221061e-07,2.005766612421525561e-07,2.045095369527830062e-07,2.084424126634134562e-07,2.123752883740439063e-07,2.163081640846743564e-07,2.202410397953048064e-07,2.241739155059352565e-07,2.281067912165657066e-07,2.320396669271961566e-07,2.359725426378266067e-07,2.399054183484570567e-07,2.438382940590875333e-07,2.477711697697180098e-07 +0.000000000000000000e+00,2.644333645644786575e-09,5.288667291289573151e-09,7.933000936934359726e-09,1.057733458257914630e-08,1.322166822822393288e-08,1.586600187386871945e-08,1.851033551951350603e-08,2.115466916515829260e-08,2.379900281080307918e-08,2.644333645644786575e-08,2.908767010209265233e-08,3.173200374773743890e-08,3.437633739338222548e-08,3.702067103902701206e-08,3.966500468467179863e-08,4.230933833031658521e-08,4.495367197596137178e-08,4.759800562160615836e-08,5.024233926725094493e-08,5.288667291289573151e-08,5.553100655854051808e-08,5.817534020418530466e-08,6.081967384983009123e-08,6.346400749547487781e-08,6.610834114111966438e-08,6.875267478676445096e-08,7.139700843240923754e-08,7.404134207805402411e-08,7.668567572369881069e-08,7.933000936934359726e-08,8.197434301498838384e-08,8.461867666063317041e-08,8.726301030627795699e-08,8.990734395192274356e-08,9.255167759756753014e-08,9.519601124321231671e-08,9.784034488885710329e-08,1.004846785345018899e-07,1.031290121801466764e-07,1.057733458257914630e-07,1.084176794714362496e-07,1.110620131170810362e-07,1.137063467627258227e-07,1.163506804083706093e-07,1.189950140540153959e-07,1.216393476996601825e-07,1.242836813453049558e-07,1.269280149909497291e-07,1.295723486365945025e-07,1.322166822822392758e-07,1.348610159278840492e-07,1.375053495735288225e-07,1.401496832191735959e-07,1.427940168648183692e-07,1.454383505104631425e-07,1.480826841561079159e-07,1.507270178017526892e-07,1.533713514473974626e-07,1.560156850930422359e-07,1.586600187386870092e-07,1.613043523843317826e-07,1.639486860299765559e-07,1.665930196756213293e-07 +0.000000000000000000e+00,2.276980632187548451e-09,4.553961264375096903e-09,6.830941896562645768e-09,9.107922528750195460e-09,1.138490316093774515e-08,1.366188379312529484e-08,1.593886442531284288e-08,1.821584505750039092e-08,2.049282568968793896e-08,2.276980632187548700e-08,2.504678695406303503e-08,2.732376758625058307e-08,2.960074821843813111e-08,3.187772885062567915e-08,3.415470948281322718e-08,3.643169011500077522e-08,3.870867074718832326e-08,4.098565137937587130e-08,4.326263201156341934e-08,4.553961264375096737e-08,4.781659327593851541e-08,5.009357390812606345e-08,5.237055454031361149e-08,5.464753517250115952e-08,5.692451580468870756e-08,5.920149643687625560e-08,6.147847706906381026e-08,6.375545770125137153e-08,6.603243833343893280e-08,6.830941896562649407e-08,7.058639959781405535e-08,7.286338023000161662e-08,7.514036086218917789e-08,7.741734149437673916e-08,7.969432212656430044e-08,8.197130275875186171e-08,8.424828339093942298e-08,8.652526402312698426e-08,8.880224465531454553e-08,9.107922528750210680e-08,9.335620591968966807e-08,9.563318655187722935e-08,9.791016718406479062e-08,1.001871478162523519e-07,1.024641284484399132e-07,1.047411090806274744e-07,1.070180897128150357e-07,1.092950703450025970e-07,1.115720509771901583e-07,1.138490316093777195e-07,1.161260122415652808e-07,1.184029928737528421e-07,1.206799735059404033e-07,1.229569541381279646e-07,1.252339347703155259e-07,1.275109154025030872e-07,1.297878960346906484e-07,1.320648766668782097e-07,1.343418572990657710e-07,1.366188379312533323e-07,1.388958185634408935e-07,1.411727991956284548e-07,1.434497798278160161e-07 +0.000000000000000000e+00,3.932875710632440259e-09,7.865751421264880517e-09,1.179862713189732078e-08,1.573150284252976103e-08,1.966437855316220295e-08,2.359725426379464486e-08,2.753012997442708677e-08,3.146300568505952869e-08,3.539588139569197060e-08,3.932875710632441251e-08,4.326163281695685443e-08,4.719450852758929634e-08,5.112738423822173825e-08,5.506025994885418017e-08,5.899313565948662208e-08,6.292601137011907061e-08,6.685888708075151914e-08,7.079176279138396767e-08,7.472463850201641620e-08,7.865751421264886473e-08,8.259038992328131326e-08,8.652326563391376179e-08,9.045614134454621032e-08,9.438901705517865885e-08,9.832189276581110738e-08,1.022547684764435559e-07,1.061876441870760044e-07,1.101205198977084530e-07,1.140533956083409015e-07,1.179862713189733500e-07,1.219191470296058118e-07,1.258520227402382736e-07,1.297848984508707353e-07,1.337177741615031971e-07,1.376506498721356589e-07,1.415835255827681206e-07,1.455164012934005824e-07,1.494492770040330442e-07,1.533821527146655059e-07,1.573150284252979677e-07,1.612479041359304295e-07,1.651807798465628912e-07,1.691136555571953530e-07,1.730465312678278148e-07,1.769794069784602765e-07,1.809122826890927383e-07,1.848451583997252000e-07,1.887780341103576618e-07,1.927109098209901236e-07,1.966437855316225853e-07,2.005766612422550471e-07,2.045095369528875089e-07,2.084424126635199706e-07,2.123752883741524324e-07,2.163081640847848942e-07,2.202410397954173559e-07,2.241739155060498177e-07,2.281067912166822795e-07,2.320396669273147412e-07,2.359725426379472030e-07,2.399054183485796648e-07,2.438382940592121530e-07,2.477711697698446412e-07 +0.000000000000000000e+00,3.365407980569924506e-09,6.730815961139849012e-09,1.009622394170977352e-08,1.346163192227969802e-08,1.682703990284962419e-08,2.019244788341955035e-08,2.355785586398947651e-08,2.692326384455940267e-08,3.028867182512932883e-08,3.365407980569925499e-08,3.701948778626918115e-08,4.038489576683910731e-08,4.375030374740903347e-08,4.711571172797895963e-08,5.048111970854888579e-08,5.384652768911881195e-08,5.721193566968873811e-08,6.057734365025867089e-08,6.394275163082861028e-08,6.730815961139854968e-08,7.067356759196848908e-08,7.403897557253842847e-08,7.740438355310836787e-08,8.076979153367830726e-08,8.413519951424824666e-08,8.750060749481818605e-08,9.086601547538812545e-08,9.423142345595806484e-08,9.759683143652800424e-08,1.009622394170979436e-07,1.043276473976678830e-07,1.076930553782378224e-07,1.110584633588077618e-07,1.144238713393777012e-07,1.177892793199476406e-07,1.211546873005175800e-07,1.245200952810875194e-07,1.278855032616574588e-07,1.312509112422273982e-07,1.346163192227973376e-07,1.379817272033672770e-07,1.413471351839372164e-07,1.447125431645071558e-07,1.480779511450770952e-07,1.514433591256470346e-07,1.548087671062169740e-07,1.581741750867869134e-07,1.615395830673568528e-07,1.649049910479267921e-07,1.682703990284967315e-07,1.716358070090666709e-07,1.750012149896366103e-07,1.783666229702065497e-07,1.817320309507764891e-07,1.850974389313464285e-07,1.884628469119163679e-07,1.918282548924863073e-07,1.951936628730562467e-07,1.985590708536261861e-07,2.019244788341961255e-07,2.052898868147660649e-07,2.086552947953360043e-07,2.120207027759059437e-07 +0.000000000000000000e+00,3.005526085019551132e-09,6.011052170039102263e-09,9.016578255058653808e-09,1.202210434007820618e-08,1.502763042509776021e-08,1.803315651011731423e-08,2.103868259513686826e-08,2.404420868015642229e-08,2.704973476517597631e-08,3.005526085019553365e-08,3.306078693521509099e-08,3.606631302023464832e-08,3.907183910525420566e-08,4.207736519027376299e-08,4.508289127529332033e-08,4.808841736031287766e-08,5.109394344533243500e-08,5.409946953035199233e-08,5.710499561537154967e-08,6.011052170039110700e-08,6.311604778541067096e-08,6.612157387043023491e-08,6.912709995544979886e-08,7.213262604046936282e-08,7.513815212548892677e-08,7.814367821050849072e-08,8.114920429552805468e-08,8.415473038054761863e-08,8.716025646556718258e-08,9.016578255058674653e-08,9.317130863560631049e-08,9.617683472062587444e-08,9.918236080564543839e-08,1.021878868906650023e-07,1.051934129756845663e-07,1.081989390607041303e-07,1.112044651457236942e-07,1.142099912307432582e-07,1.172155173157628221e-07,1.202210434007823993e-07,1.232265694858019765e-07,1.262320955708215537e-07,1.292376216558411309e-07,1.322431477408607080e-07,1.352486738258802852e-07,1.382541999108998624e-07,1.412597259959194396e-07,1.442652520809390168e-07,1.472707781659585940e-07,1.502763042509781712e-07,1.532818303359977484e-07,1.562873564210173256e-07,1.592928825060369027e-07,1.622984085910564799e-07,1.653039346760760571e-07,1.683094607610956343e-07,1.713149868461152115e-07,1.743205129311347887e-07,1.773260390161543659e-07,1.803315651011739431e-07,1.833370911861935202e-07,1.863426172712130974e-07,1.893481433562326746e-07 +0.000000000000000000e+00,4.900253822900036050e-09,9.800507645800072100e-09,1.470076146870010815e-08,1.960101529160014420e-08,2.450126911450017860e-08,2.940152293740021299e-08,3.430177676030024739e-08,3.920203058320028178e-08,4.410228440610031618e-08,4.900253822900035057e-08,5.390279205190038497e-08,5.880304587480041937e-08,6.370329969770045376e-08,6.860355352060049478e-08,7.350380734350053579e-08,7.840406116640057680e-08,8.330431498930061781e-08,8.820456881220065883e-08,9.310482263510069984e-08,9.800507645800074085e-08,1.029053302809007819e-07,1.078055841038008229e-07,1.127058379267008639e-07,1.176060917496009049e-07,1.225063455725009459e-07,1.274065993954009869e-07,1.323068532183010279e-07,1.372071070412010690e-07,1.421073608641011100e-07,1.470076146870011510e-07,1.519078685099011920e-07,1.568081223328012330e-07,1.617083761557012740e-07,1.666086299786013150e-07,1.715088838015013561e-07,1.764091376244013971e-07,1.813093914473014381e-07,1.862096452702014791e-07,1.911098990931015201e-07,1.960101529160015611e-07,2.009104067389016021e-07,2.058106605618016431e-07,2.107109143847016842e-07,2.156111682076017252e-07,2.205114220305017662e-07,2.254116758534018072e-07,2.303119296763018482e-07,2.352121834992018892e-07,2.401124373221019038e-07,2.450126911450019448e-07,2.499129449679019858e-07,2.548131987908020268e-07,2.597134526137020678e-07,2.646137064366021088e-07,2.695139602595021498e-07,2.744142140824021909e-07,2.793144679053022319e-07,2.842147217282022729e-07,2.891149755511023139e-07,2.940152293740023549e-07,2.989154831969023959e-07,3.038157370198024369e-07,3.087159908427024780e-07 +0.000000000000000000e+00,3.365407980572878368e-09,6.730815961145756736e-09,1.009622394171863593e-08,1.346163192229151513e-08,1.682703990286439432e-08,2.019244788343727186e-08,2.355785586401014940e-08,2.692326384458302694e-08,3.028867182515590449e-08,3.365407980572878203e-08,3.701948778630165957e-08,4.038489576687453711e-08,4.375030374744741465e-08,4.711571172802029219e-08,5.048111970859316973e-08,5.384652768916604727e-08,5.721193566973892481e-08,6.057734365031179574e-08,6.394275163088467328e-08,6.730815961145755082e-08,7.067356759203042836e-08,7.403897557260330590e-08,7.740438355317618344e-08,8.076979153374906098e-08,8.413519951432193852e-08,8.750060749489481606e-08,9.086601547546769361e-08,9.423142345604057115e-08,9.759683143661344869e-08,1.009622394171863262e-07,1.043276473977592038e-07,1.076930553783320813e-07,1.110584633589049589e-07,1.144238713394778364e-07,1.177892793200507139e-07,1.211546873006235915e-07,1.245200952811964690e-07,1.278855032617693466e-07,1.312509112423422241e-07,1.346163192229151016e-07,1.379817272034879792e-07,1.413471351840608567e-07,1.447125431646337343e-07,1.480779511452066118e-07,1.514433591257794893e-07,1.548087671063523669e-07,1.581741750869252444e-07,1.615395830674981220e-07,1.649049910480709995e-07,1.682703990286438770e-07,1.716358070092167546e-07,1.750012149897896321e-07,1.783666229703625097e-07,1.817320309509353872e-07,1.850974389315082648e-07,1.884628469120811423e-07,1.918282548926540198e-07,1.951936628732268974e-07,1.985590708537997749e-07,2.019244788343726525e-07,2.052898868149455300e-07,2.086552947955184075e-07,2.120207027760912851e-07 +0.000000000000000000e+00,3.005526085022029778e-09,6.011052170044059557e-09,9.016578255066090162e-09,1.202210434008812077e-08,1.502763042511015137e-08,1.803315651013218032e-08,2.103868259515420928e-08,2.404420868017623823e-08,2.704973476519826718e-08,3.005526085022029613e-08,3.306078693524232177e-08,3.606631302026434741e-08,3.907183910528637306e-08,4.207736519030839870e-08,4.508289127533042434e-08,4.808841736035244998e-08,5.109394344537447563e-08,5.409946953039650127e-08,5.710499561541852691e-08,6.011052170044055255e-08,6.311604778546257820e-08,6.612157387048460384e-08,6.912709995550662948e-08,7.213262604052865512e-08,7.513815212555068077e-08,7.814367821057270641e-08,8.114920429559473205e-08,8.415473038061675769e-08,8.716025646563878333e-08,9.016578255066080898e-08,9.317130863568283462e-08,9.617683472070486026e-08,9.918236080572688590e-08,1.021878868907489115e-07,1.051934129757709372e-07,1.081989390607929628e-07,1.112044651458149885e-07,1.142099912308370141e-07,1.172155173158590398e-07,1.202210434008810786e-07,1.232265694859031175e-07,1.262320955709251564e-07,1.292376216559471953e-07,1.322431477409692341e-07,1.352486738259912730e-07,1.382541999110133119e-07,1.412597259960353508e-07,1.442652520810573897e-07,1.472707781660794285e-07,1.502763042511014674e-07,1.532818303361235063e-07,1.562873564211455452e-07,1.592928825061675840e-07,1.622984085911896229e-07,1.653039346762116618e-07,1.683094607612337007e-07,1.713149868462557396e-07,1.743205129312777784e-07,1.773260390162998173e-07,1.803315651013218562e-07,1.833370911863438951e-07,1.863426172713659339e-07,1.893481433563879728e-07 +0.000000000000000000e+00,4.900253822902902231e-09,9.800507645805804462e-09,1.470076146870870587e-08,1.960101529161160561e-08,2.450126911451450536e-08,2.940152293741740511e-08,3.430177676032030486e-08,3.920203058322320461e-08,4.410228440612610436e-08,4.900253822902900411e-08,5.390279205193190386e-08,5.880304587483480361e-08,6.370329969773769674e-08,6.860355352064059649e-08,7.350380734354349624e-08,7.840406116644639599e-08,8.330431498934929574e-08,8.820456881225219549e-08,9.310482263515509524e-08,9.800507645805799499e-08,1.029053302809608947e-07,1.078055841038637945e-07,1.127058379267666942e-07,1.176060917496695940e-07,1.225063455725724937e-07,1.274065993954753935e-07,1.323068532183782932e-07,1.372071070412811930e-07,1.421073608641840927e-07,1.470076146870869925e-07,1.519078685099898922e-07,1.568081223328927920e-07,1.617083761557956917e-07,1.666086299786985915e-07,1.715088838016014912e-07,1.764091376245043910e-07,1.813093914474072907e-07,1.862096452703101905e-07,1.911098990932130902e-07,1.960101529161159900e-07,2.009104067390188897e-07,2.058106605619217895e-07,2.107109143848246892e-07,2.156111682077275890e-07,2.205114220306304887e-07,2.254116758535333885e-07,2.303119296764362882e-07,2.352121834993391880e-07,2.401124373222420877e-07,2.450126911451449875e-07,2.499129449680478872e-07,2.548131987909507870e-07,2.597134526138536867e-07,2.646137064367565865e-07,2.695139602596594862e-07,2.744142140825623860e-07,2.793144679054652857e-07,2.842147217283681855e-07,2.891149755512710852e-07,2.940152293741739850e-07,2.989154831970768847e-07,3.038157370199797845e-07,3.087159908428826842e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.445214012640587827e-10,2.890428025281175654e-10,4.335642037921763223e-10,5.780856050562350275e-10,7.226070063202937327e-10,8.671284075843524378e-10,1.011649808848411246e-09,1.156171210112470055e-09,1.300692611376528864e-09,1.445214012640587672e-09,1.589735413904646481e-09,1.734256815168705289e-09,1.878778216432764098e-09,2.023299617696822906e-09,2.167821018960881715e-09,2.312342420224940524e-09,2.456863821488999332e-09,2.601385222753058141e-09,2.745906624017116949e-09,2.890428025281175758e-09,3.034949426545234566e-09,3.179470827809293375e-09,3.323992229073352184e-09,3.468513630337410992e-09,3.613035031601469801e-09,3.757556432865529023e-09,3.902077834129588659e-09,4.046599235393648294e-09,4.191120636657707930e-09,4.335642037921767566e-09,4.480163439185827202e-09,4.624684840449886837e-09,4.769206241713946473e-09,4.913727642978006109e-09,5.058249044242065745e-09,5.202770445506125380e-09,5.347291846770185016e-09,5.491813248034244652e-09,5.636334649298304288e-09,5.780856050562363923e-09,5.925377451826423559e-09,6.069898853090483195e-09,6.214420254354542831e-09,6.358941655618602466e-09,6.503463056882662102e-09,6.647984458146721738e-09,6.792505859410781374e-09,6.937027260674841009e-09,7.081548661938900645e-09,7.226070063202960281e-09,7.370591464467019917e-09,7.515112865731079552e-09,7.659634266995139188e-09,7.804155668259198824e-09,7.948677069523258460e-09,8.093198470787318095e-09,8.237719872051377731e-09,8.382241273315437367e-09,8.526762674579497003e-09,8.671284075843556638e-09,8.815805477107616274e-09,8.960326878371675910e-09,9.104848279635735546e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.648128197715372887e-11,1.129625639543074577e-10,1.694438459314611801e-10,2.259251279086148896e-10,2.824064098857686249e-10,3.388876918629223603e-10,3.953689738400760956e-10,4.518502558172298309e-10,5.083315377943835663e-10,5.648128197715372499e-10,6.212941017486909335e-10,6.777753837258446172e-10,7.342566657029983008e-10,7.907379476801519844e-10,8.472192296573056680e-10,9.037005116344593517e-10,9.601817936116130353e-10,1.016663075588766719e-09,1.073144357565920403e-09,1.129625639543074086e-09,1.186106921520227770e-09,1.242588203497381453e-09,1.299069485474535137e-09,1.355550767451688821e-09,1.412032049428842504e-09,1.468513331405996188e-09,1.524994613383149872e-09,1.581475895360303555e-09,1.637957177337457239e-09,1.694438459314610923e-09,1.750919741291764606e-09,1.807401023268918290e-09,1.863882305246071973e-09,1.920363587223225657e-09,1.976844869200379341e-09,2.033326151177533024e-09,2.089807433154686708e-09,2.146288715131840392e-09,2.202769997108994075e-09,2.259251279086147759e-09,2.315732561063301442e-09,2.372213843040455126e-09,2.428695125017608810e-09,2.485176406994762493e-09,2.541657688971916177e-09,2.598138970949069861e-09,2.654620252926223544e-09,2.711101534903377228e-09,2.767582816880530911e-09,2.824064098857684595e-09,2.880545380834838279e-09,2.937026662811991962e-09,2.993507944789145646e-09,3.049989226766299330e-09,3.106470508743453013e-09,3.162951790720606697e-09,3.219433072697760381e-09,3.275914354674914064e-09,3.332395636652067748e-09,3.388876918629221431e-09,3.445358200606375115e-09,3.501839482583528799e-09,3.558320764560682482e-09 +0.000000000000000000e+00,2.954569915788005646e-10,5.909139831576011292e-10,8.863709747364017455e-10,1.181827966315202465e-09,1.477284957894003185e-09,1.772741949472803905e-09,2.068198941051604418e-09,2.363655932630404930e-09,2.659112924209205443e-09,2.954569915788005956e-09,3.250026907366806469e-09,3.545483898945606982e-09,3.840940890524407495e-09,4.136397882103208008e-09,4.431854873682008521e-09,4.727311865260809034e-09,5.022768856839609547e-09,5.318225848418410060e-09,5.613682839997210572e-09,5.909139831576011085e-09,6.204596823154811598e-09,6.500053814733612111e-09,6.795510806312412624e-09,7.090967797891213137e-09,7.386424789470013650e-09,7.681881781048813336e-09,7.977338772627612194e-09,8.272795764206411053e-09,8.568252755785209911e-09,8.863709747364008770e-09,9.159166738942807628e-09,9.454623730521606487e-09,9.750080722100405345e-09,1.004553771367920420e-08,1.034099470525800306e-08,1.063645169683680192e-08,1.093190868841560078e-08,1.122736567999439964e-08,1.152282267157319850e-08,1.181827966315199736e-08,1.211373665473079621e-08,1.240919364630959507e-08,1.270465063788839393e-08,1.300010762946719279e-08,1.329556462104599165e-08,1.359102161262479051e-08,1.388647860420358937e-08,1.418193559578238822e-08,1.447739258736118708e-08,1.477284957893998594e-08,1.506830657051878480e-08,1.536376356209758366e-08,1.565922055367638252e-08,1.595467754525518137e-08,1.625013453683398023e-08,1.654559152841277909e-08,1.684104851999157795e-08,1.713650551157037681e-08,1.743196250314917567e-08,1.772741949472797453e-08,1.802287648630677338e-08,1.831833347788557224e-08,1.861379046946437110e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.445214012642474833e-10,2.890428025284949666e-10,4.335642037927424240e-10,5.780856050569898298e-10,7.226070063212372355e-10,8.671284075854846413e-10,1.011649808849732047e-09,1.156171210113979453e-09,1.300692611378226859e-09,1.445214012642474264e-09,1.589735413906721670e-09,1.734256815170969076e-09,1.878778216435216275e-09,2.023299617699463680e-09,2.167821018963711086e-09,2.312342420227958492e-09,2.456863821492205898e-09,2.601385222756453303e-09,2.745906624020700709e-09,2.890428025284948115e-09,3.034949426549195521e-09,3.179470827813442926e-09,3.323992229077690332e-09,3.468513630341937738e-09,3.613035031606185144e-09,3.757556432870432549e-09,3.902077834134679955e-09,4.046599235398927361e-09,4.191120636663174767e-09,4.335642037927422172e-09,4.480163439191669578e-09,4.624684840455916984e-09,4.769206241720164390e-09,4.913727642984411795e-09,5.058249044248659201e-09,5.202770445512906607e-09,5.347291846777154013e-09,5.491813248041401418e-09,5.636334649305648824e-09,5.780856050569896230e-09,5.925377451834143636e-09,6.069898853098391041e-09,6.214420254362638447e-09,6.358941655626885853e-09,6.503463056891133259e-09,6.647984458155380664e-09,6.792505859419628070e-09,6.937027260683875476e-09,7.081548661948122882e-09,7.226070063212370287e-09,7.370591464476617693e-09,7.515112865740865099e-09,7.659634267005113332e-09,7.804155668269361565e-09,7.948677069533609798e-09,8.093198470797858031e-09,8.237719872062106264e-09,8.382241273326354497e-09,8.526762674590602729e-09,8.671284075854850962e-09,8.815805477119099195e-09,8.960326878383347428e-09,9.104848279647595661e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.648128197724270248e-11,1.129625639544854050e-10,1.694438459317281010e-10,2.259251279089707841e-10,2.824064098862134413e-10,3.388876918634560986e-10,3.953689738406987558e-10,4.518502558179414131e-10,5.083315377951840703e-10,5.648128197724266759e-10,6.212941017496692814e-10,6.777753837269118869e-10,7.342566657041544925e-10,7.907379476813970980e-10,8.472192296586397036e-10,9.037005116358823091e-10,9.601817936131249147e-10,1.016663075590367520e-09,1.073144357567610126e-09,1.129625639544852731e-09,1.186106921522095337e-09,1.242588203499337942e-09,1.299069485476580548e-09,1.355550767453823154e-09,1.412032049431065759e-09,1.468513331408308365e-09,1.524994613385550970e-09,1.581475895362793576e-09,1.637957177340036181e-09,1.694438459317278787e-09,1.750919741294521392e-09,1.807401023271763998e-09,1.863882305249006810e-09,1.920363587226249416e-09,1.976844869203492021e-09,2.033326151180734627e-09,2.089807433157977232e-09,2.146288715135219838e-09,2.202769997112462443e-09,2.259251279089705049e-09,2.315732561066947655e-09,2.372213843044190260e-09,2.428695125021432866e-09,2.485176406998675471e-09,2.541657688975918077e-09,2.598138970953160682e-09,2.654620252930403288e-09,2.711101534907645893e-09,2.767582816884888499e-09,2.824064098862131105e-09,2.880545380839373710e-09,2.937026662816616316e-09,2.993507944793858921e-09,3.049989226771101527e-09,3.106470508748344132e-09,3.162951790725586738e-09,3.219433072702829343e-09,3.275914354680071949e-09,3.332395636657314554e-09,3.388876918634557160e-09,3.445358200611799766e-09,3.501839482589042371e-09,3.558320764566284977e-09 +0.000000000000000000e+00,2.954569915790135636e-10,5.909139831580271272e-10,8.863709747370407425e-10,1.181827966316054461e-09,1.477284957895068180e-09,1.772741949474081899e-09,2.068198941053095824e-09,2.363655932632109750e-09,2.659112924211123675e-09,2.954569915790137601e-09,3.250026907369151526e-09,3.545483898948165452e-09,3.840940890527179377e-09,4.136397882106193303e-09,4.431854873685207228e-09,4.727311865264221154e-09,5.022768856843235079e-09,5.318225848422249005e-09,5.613682840001262930e-09,5.909139831580276856e-09,6.204596823159290781e-09,6.500053814738304707e-09,6.795510806317318632e-09,7.090967797896332558e-09,7.386424789475346483e-09,7.681881781054360409e-09,7.977338772633374334e-09,8.272795764212388260e-09,8.568252755791402185e-09,8.863709747370416111e-09,9.159166738949430036e-09,9.454623730528443962e-09,9.750080722107457887e-09,1.004553771368647181e-08,1.034099470526548574e-08,1.063645169684449966e-08,1.093190868842351359e-08,1.122736568000252751e-08,1.152282267158154144e-08,1.181827966316055537e-08,1.211373665473956929e-08,1.240919364631858322e-08,1.270465063789759714e-08,1.300010762947661107e-08,1.329556462105562499e-08,1.359102161263463892e-08,1.388647860421365284e-08,1.418193559579266677e-08,1.447739258737168070e-08,1.477284957895069462e-08,1.506830657052970689e-08,1.536376356210871751e-08,1.565922055368772813e-08,1.595467754526673874e-08,1.625013453684574936e-08,1.654559152842475998e-08,1.684104852000377059e-08,1.713650551158278121e-08,1.743196250316179183e-08,1.772741949474080244e-08,1.802287648631981306e-08,1.831833347789882368e-08,1.861379046947783429e-08 +0.000000000000000000e+00,3.661149537244902747e-10,7.322299074489805493e-10,1.098344861173470772e-09,1.464459814897960892e-09,1.830574768622451011e-09,2.196689722346941131e-09,2.562804676071431044e-09,2.928919629795920956e-09,3.295034583520410869e-09,3.661149537244900782e-09,4.027264490969390695e-09,4.393379444693880608e-09,4.759494398418370520e-09,5.125609352142860433e-09,5.491724305867350346e-09,5.857839259591840259e-09,6.223954213316330171e-09,6.590069167040820084e-09,6.956184120765309997e-09,7.322299074489799910e-09,7.688414028214288995e-09,8.054528981938778081e-09,8.420643935663267166e-09,8.786758889387756252e-09,9.152873843112245338e-09,9.518988796836734423e-09,9.885103750561223509e-09,1.025121870428571259e-08,1.061733365801020168e-08,1.098344861173469077e-08,1.134956356545917985e-08,1.171567851918366894e-08,1.208179347290815802e-08,1.244790842663264711e-08,1.281402338035713619e-08,1.318013833408162528e-08,1.354625328780611436e-08,1.391236824153060345e-08,1.427848319525509254e-08,1.464459814897958162e-08,1.501071310270407071e-08,1.537682805642855814e-08,1.574294301015304557e-08,1.610905796387753300e-08,1.647517291760202043e-08,1.684128787132650786e-08,1.720740282505099529e-08,1.757351777877548273e-08,1.793963273249997016e-08,1.830574768622445759e-08,1.867186263994894502e-08,1.903797759367343245e-08,1.940409254739791988e-08,1.977020750112240731e-08,2.013632245484689474e-08,2.050243740857138218e-08,2.086855236229586961e-08,2.123466731602035704e-08,2.160078226974484447e-08,2.196689722346933190e-08,2.233301217719381933e-08,2.269912713091830676e-08,2.306524208464279419e-08 +0.000000000000000000e+00,2.467514285811478091e-10,4.935028571622956182e-10,7.402542857434434273e-10,9.870057143245912365e-10,1.233757142905739046e-09,1.480508571486886855e-09,1.727260000068034664e-09,1.974011428649182473e-09,2.220762857230330489e-09,2.467514285811478505e-09,2.714265714392626521e-09,2.961017142973774537e-09,3.207768571554922552e-09,3.454520000136070568e-09,3.701271428717218584e-09,3.948022857298366600e-09,4.194774285879514616e-09,4.441525714460662632e-09,4.688277143041810648e-09,4.935028571622958664e-09,5.181780000204106680e-09,5.428531428785254696e-09,5.675282857366402712e-09,5.922034285947550727e-09,6.168785714528698743e-09,6.415537143109846759e-09,6.662288571690994775e-09,6.909040000272142791e-09,7.155791428853290807e-09,7.402542857434438823e-09,7.649294286015586012e-09,7.896045714596733200e-09,8.142797143177880389e-09,8.389548571759027578e-09,8.636300000340174767e-09,8.883051428921321955e-09,9.129802857502469144e-09,9.376554286083616333e-09,9.623305714664763521e-09,9.870057143245910710e-09,1.011680857182705790e-08,1.036356000040820509e-08,1.061031142898935228e-08,1.085706285757049947e-08,1.110381428615164665e-08,1.135056571473279384e-08,1.159731714331394103e-08,1.184406857189508822e-08,1.209082000047623541e-08,1.233757142905738260e-08,1.258432285763852979e-08,1.283107428621967697e-08,1.307782571480082416e-08,1.332457714338197135e-08,1.357132857196311854e-08,1.381808000054426573e-08,1.406483142912541292e-08,1.431158285770656011e-08,1.455833428628770730e-08,1.480508571486885448e-08,1.505183714345000167e-08,1.529858857203114886e-08,1.554534000061229605e-08 +0.000000000000000000e+00,7.007489299789555686e-10,1.401497859957911137e-09,2.102246789936866912e-09,2.802995719915822688e-09,3.503744649894778463e-09,4.204493579873733825e-09,4.905242509852689187e-09,5.605991439831644549e-09,6.306740369810599910e-09,7.007489299789555272e-09,7.708238229768511461e-09,8.408987159747467650e-09,9.109736089726423839e-09,9.810485019705380028e-09,1.051123394968433622e-08,1.121198287966329241e-08,1.191273180964224859e-08,1.261348073962120478e-08,1.331422966960016097e-08,1.401497859957911716e-08,1.471572752955807335e-08,1.541647645953702954e-08,1.611722538951598573e-08,1.681797431949494192e-08,1.751872324947389811e-08,1.821947217945285430e-08,1.892022110943181048e-08,1.962097003941076667e-08,2.032171896938972286e-08,2.102246789936867905e-08,2.172321682934763524e-08,2.242396575932659143e-08,2.312471468930554762e-08,2.382546361928450381e-08,2.452621254926346000e-08,2.522696147924241618e-08,2.592771040922137237e-08,2.662845933920032856e-08,2.732920826917928475e-08,2.802995719915824094e-08,2.873070612913719713e-08,2.943145505911615332e-08,3.013220398909510620e-08,3.083295291907405908e-08,3.153370184905301196e-08,3.223445077903196484e-08,3.293519970901091772e-08,3.363594863898987060e-08,3.433669756896882348e-08,3.503744649894777636e-08,3.573819542892672924e-08,3.643894435890568212e-08,3.713969328888463500e-08,3.784044221886358788e-08,3.854119114884254076e-08,3.924194007882149364e-08,3.994268900880044652e-08,4.064343793877939940e-08,4.134418686875835228e-08,4.204493579873730516e-08,4.274568472871625804e-08,4.344643365869521092e-08,4.414718258867416380e-08 +0.000000000000000000e+00,3.661149537250171887e-10,7.322299074500343774e-10,1.098344861175051514e-09,1.464459814900068548e-09,1.830574768625085582e-09,2.196689722350102615e-09,2.562804676075119442e-09,2.928919629800136269e-09,3.295034583525153096e-09,3.661149537250169922e-09,4.027264490975186749e-09,4.393379444700203576e-09,4.759494398425220403e-09,5.125609352150237230e-09,5.491724305875254057e-09,5.857839259600270883e-09,6.223954213325287710e-09,6.590069167050304537e-09,6.956184120775321364e-09,7.322299074500338191e-09,7.688414028225355017e-09,8.054528981950371844e-09,8.420643935675388671e-09,8.786758889400405498e-09,9.152873843125422325e-09,9.518988796850439152e-09,9.885103750575455978e-09,1.025121870430047281e-08,1.061733365802548963e-08,1.098344861175050646e-08,1.134956356547552329e-08,1.171567851920054011e-08,1.208179347292555694e-08,1.244790842665057377e-08,1.281402338037559059e-08,1.318013833410060742e-08,1.354625328782562425e-08,1.391236824155064107e-08,1.427848319527565790e-08,1.464459814900067473e-08,1.501071310272569321e-08,1.537682805645071334e-08,1.574294301017573348e-08,1.610905796390075361e-08,1.647517291762577375e-08,1.684128787135079389e-08,1.720740282507581402e-08,1.757351777880083416e-08,1.793963273252585429e-08,1.830574768625087443e-08,1.867186263997589456e-08,1.903797759370091470e-08,1.940409254742593483e-08,1.977020750115095497e-08,2.013632245487597511e-08,2.050243740860099524e-08,2.086855236232601538e-08,2.123466731605103551e-08,2.160078226977605565e-08,2.196689722350107578e-08,2.233301217722609592e-08,2.269912713095111605e-08,2.306524208467613619e-08 +0.000000000000000000e+00,2.467514285814825588e-10,4.935028571629651175e-10,7.402542857444476246e-10,9.870057143259300283e-10,1.233757142907412432e-09,1.480508571488894836e-09,1.727260000070377239e-09,1.974011428651859643e-09,2.220762857233342253e-09,2.467514285814824864e-09,2.714265714396307474e-09,2.961017142977790085e-09,3.207768571559272695e-09,3.454520000140755306e-09,3.701271428722237916e-09,3.948022857303720113e-09,4.194774285885202310e-09,4.441525714466684507e-09,4.688277143048166704e-09,4.935028571629648901e-09,5.181780000211131097e-09,5.428531428792613294e-09,5.675282857374095491e-09,5.922034285955577688e-09,6.168785714537059885e-09,6.415537143118542082e-09,6.662288571700024279e-09,6.909040000281506476e-09,7.155791428862988673e-09,7.402542857444470869e-09,7.649294286025952239e-09,7.896045714607433609e-09,8.142797143188914978e-09,8.389548571770396348e-09,8.636300000351877718e-09,8.883051428933359088e-09,9.129802857514840457e-09,9.376554286096321827e-09,9.623305714677803197e-09,9.870057143259284566e-09,1.011680857184076594e-08,1.036356000042224731e-08,1.061031142900372868e-08,1.085706285758521005e-08,1.110381428616669141e-08,1.135056571474817278e-08,1.159731714332965415e-08,1.184406857191113552e-08,1.209082000049261689e-08,1.233757142907409826e-08,1.258432285765557963e-08,1.283107428623706100e-08,1.307782571481854237e-08,1.332457714340002374e-08,1.357132857198150511e-08,1.381808000056298648e-08,1.406483142914446785e-08,1.431158285772594922e-08,1.455833428630743059e-08,1.480508571488891196e-08,1.505183714347039333e-08,1.529858857205187470e-08,1.554534000063335607e-08 +0.000000000000000000e+00,7.007489299795749200e-10,1.401497859959149840e-09,2.102246789938724760e-09,2.802995719918299680e-09,3.503744649897874600e-09,4.204493579877449520e-09,4.905242509857024440e-09,5.605991439836599360e-09,6.306740369816174280e-09,7.007489299795749200e-09,7.708238229775324121e-09,8.408987159754899041e-09,9.109736089734473961e-09,9.810485019714048881e-09,1.051123394969362380e-08,1.121198287967319872e-08,1.191273180965277364e-08,1.261348073963234856e-08,1.331422966961192348e-08,1.401497859959149840e-08,1.471572752957107332e-08,1.541647645955064824e-08,1.611722538953022316e-08,1.681797431950979808e-08,1.751872324948937300e-08,1.821947217946894792e-08,1.892022110944852284e-08,1.962097003942809776e-08,2.032171896940767268e-08,2.102246789938724760e-08,2.172321682936682252e-08,2.242396575934639744e-08,2.312471468932597236e-08,2.382546361930554728e-08,2.452621254928512220e-08,2.522696147926469712e-08,2.592771040924427204e-08,2.662845933922384696e-08,2.732920826920342188e-08,2.802995719918299680e-08,2.873070612916257172e-08,2.943145505914214664e-08,3.013220398912172156e-08,3.083295291910129648e-08,3.153370184908087140e-08,3.223445077906044632e-08,3.293519970904002124e-08,3.363594863901959616e-08,3.433669756899917108e-08,3.503744649897874600e-08,3.573819542895832092e-08,3.643894435893789584e-08,3.713969328891747076e-08,3.784044221889704568e-08,3.854119114887662060e-08,3.924194007885619552e-08,3.994268900883577044e-08,4.064343793881534536e-08,4.134418686879492028e-08,4.204493579877449520e-08,4.274568472875407012e-08,4.344643365873364504e-08,4.414718258871321996e-08 +0.000000000000000000e+00,6.309454368071499736e-10,1.261890873614299947e-09,1.892836310421449921e-09,2.523781747228599894e-09,3.154727184035749868e-09,3.785672620842899842e-09,4.416618057650049815e-09,5.047563494457199789e-09,5.678508931264349762e-09,6.309454368071499736e-09,6.940399804878649710e-09,7.571345241685799683e-09,8.202290678492949657e-09,8.833236115300099630e-09,9.464181552107249604e-09,1.009512698891439958e-08,1.072607242572154955e-08,1.135701786252869952e-08,1.198796329933584950e-08,1.261890873614299947e-08,1.324985417295014945e-08,1.388079960975729942e-08,1.451174504656444939e-08,1.514269048337159937e-08,1.577363592017874769e-08,1.640458135698589600e-08,1.703552679379304432e-08,1.766647223060019264e-08,1.829741766740734096e-08,1.892836310421448928e-08,1.955930854102163760e-08,2.019025397782878592e-08,2.082119941463593424e-08,2.145214485144308256e-08,2.208309028825023088e-08,2.271403572505737920e-08,2.334498116186452752e-08,2.397592659867167584e-08,2.460687203547882415e-08,2.523781747228597247e-08,2.586876290909312079e-08,2.649970834590026911e-08,2.713065378270741743e-08,2.776159921951456575e-08,2.839254465632171407e-08,2.902349009312886239e-08,2.965443552993601071e-08,3.028538096674315903e-08,3.091632640355030735e-08,3.154727184035745567e-08,3.217821727716460399e-08,3.280916271397175231e-08,3.344010815077890062e-08,3.407105358758604894e-08,3.470199902439319726e-08,3.533294446120034558e-08,3.596388989800749390e-08,3.659483533481464222e-08,3.722578077162179054e-08,3.785672620842893886e-08,3.848767164523608718e-08,3.911861708204323550e-08,3.974956251885038382e-08 +0.000000000000000000e+00,4.947615692833046814e-10,9.895231385666093628e-10,1.484284707849914044e-09,1.979046277133218726e-09,2.473807846416523200e-09,2.968569415699827675e-09,3.463330984983132149e-09,3.958092554266436624e-09,4.452854123549741099e-09,4.947615692833045573e-09,5.442377262116350048e-09,5.937138831399654523e-09,6.431900400682958997e-09,6.926661969966263472e-09,7.421423539249567946e-09,7.916185108532871594e-09,8.410946677816175241e-09,8.905708247099478889e-09,9.400469816382782536e-09,9.895231385666086183e-09,1.038999295494938983e-08,1.088475452423269348e-08,1.137951609351599713e-08,1.187427766279930077e-08,1.236903923208260442e-08,1.286380080136590807e-08,1.335856237064921172e-08,1.385332393993251536e-08,1.434808550921581901e-08,1.484284707849912266e-08,1.533760864778242465e-08,1.583237021706572664e-08,1.632713178634902864e-08,1.682189335563233063e-08,1.731665492491563262e-08,1.781141649419893462e-08,1.830617806348223661e-08,1.880093963276553860e-08,1.929570120204884060e-08,1.979046277133214259e-08,2.028522434061544458e-08,2.077998590989874657e-08,2.127474747918204857e-08,2.176950904846535056e-08,2.226427061774865255e-08,2.275903218703195455e-08,2.325379375631525654e-08,2.374855532559855853e-08,2.424331689488186053e-08,2.473807846416516252e-08,2.523284003344846451e-08,2.572760160273176651e-08,2.622236317201506850e-08,2.671712474129837049e-08,2.721188631058167248e-08,2.770664787986497448e-08,2.820140944914827647e-08,2.869617101843157846e-08,2.919093258771488046e-08,2.968569415699818245e-08,3.018045572628148444e-08,3.067521729556478313e-08,3.116997886484808181e-08 +0.000000000000000000e+00,1.161998438047032776e-09,2.323996876094065552e-09,3.485995314141098327e-09,4.647993752188131103e-09,5.809992190235163879e-09,6.971990628282196655e-09,8.133989066329229431e-09,9.295987504376262206e-09,1.045798594242329498e-08,1.161998438047032776e-08,1.278198281851736053e-08,1.394398125656439331e-08,1.510597969461142609e-08,1.626797813265845886e-08,1.742997657070549164e-08,1.859197500875252441e-08,1.975397344679955719e-08,2.091597188484658996e-08,2.207797032289362274e-08,2.323996876094065552e-08,2.440196719898768829e-08,2.556396563703472107e-08,2.672596407508175384e-08,2.788796251312878662e-08,2.904996095117581940e-08,3.021195938922285217e-08,3.137395782726988495e-08,3.253595626531691772e-08,3.369795470336395050e-08,3.485995314141098327e-08,3.602195157945801605e-08,3.718395001750504883e-08,3.834594845555208160e-08,3.950794689359911438e-08,4.066994533164614715e-08,4.183194376969317993e-08,4.299394220774021270e-08,4.415594064578724548e-08,4.531793908383427826e-08,4.647993752188131103e-08,4.764193595992834381e-08,4.880393439797537658e-08,4.996593283602240936e-08,5.112793127406944214e-08,5.228992971211647491e-08,5.345192815016350769e-08,5.461392658821054046e-08,5.577592502625757324e-08,5.693792346430460601e-08,5.809992190235163879e-08,5.926192034039867157e-08,6.042391877844570434e-08,6.158591721649273712e-08,6.274791565453976989e-08,6.390991409258680267e-08,6.507191253063383545e-08,6.623391096868086822e-08,6.739590940672790100e-08,6.855790784477493377e-08,6.971990628282196655e-08,7.088190472086899932e-08,7.204390315891603210e-08,7.320590159696306488e-08 +0.000000000000000000e+00,6.309454368082070070e-10,1.261890873616414014e-09,1.892836310424620918e-09,2.523781747232827615e-09,3.154727184041034311e-09,3.785672620849241008e-09,4.416618057657448119e-09,5.047563494465655229e-09,5.678508931273862339e-09,6.309454368082069450e-09,6.940399804890276560e-09,7.571345241698483671e-09,8.202290678506690781e-09,8.833236115314897892e-09,9.464181552123105002e-09,1.009512698893131211e-08,1.072607242573951922e-08,1.135701786254772633e-08,1.198796329935593344e-08,1.261890873616414055e-08,1.324985417297234766e-08,1.388079960978055477e-08,1.451174504658876189e-08,1.514269048339697065e-08,1.577363592020517776e-08,1.640458135701338487e-08,1.703552679382159198e-08,1.766647223062979909e-08,1.829741766743800620e-08,1.892836310424621331e-08,1.955930854105442042e-08,2.019025397786262753e-08,2.082119941467083464e-08,2.145214485147904175e-08,2.208309028828724886e-08,2.271403572509545598e-08,2.334498116190366309e-08,2.397592659871187020e-08,2.460687203552007731e-08,2.523781747232828442e-08,2.586876290913649153e-08,2.649970834594469864e-08,2.713065378275290575e-08,2.776159921956111286e-08,2.839254465636931997e-08,2.902349009317752708e-08,2.965443552998573419e-08,3.028538096679394130e-08,3.091632640360214841e-08,3.154727184041035552e-08,3.217821727721856263e-08,3.280916271402676974e-08,3.344010815083497685e-08,3.407105358764318396e-08,3.470199902445139107e-08,3.533294446125959818e-08,3.596388989806780529e-08,3.659483533487601240e-08,3.722578077168421951e-08,3.785672620849242663e-08,3.848767164530063374e-08,3.911861708210884085e-08,3.974956251891704796e-08 +0.000000000000000000e+00,4.947615692840756137e-10,9.895231385681512275e-10,1.484284707852226841e-09,1.979046277136302455e-09,2.473807846420377862e-09,2.968569415704453269e-09,3.463330984988528676e-09,3.958092554272604083e-09,4.452854123556679490e-09,4.947615692840754897e-09,5.442377262124830304e-09,5.937138831408905710e-09,6.431900400692981117e-09,6.926661969977056524e-09,7.421423539261131931e-09,7.916185108545206511e-09,8.410946677829281091e-09,8.905708247113355671e-09,9.400469816397430250e-09,9.895231385681504830e-09,1.038999295496557941e-08,1.088475452424965399e-08,1.137951609353372857e-08,1.187427766281780315e-08,1.236903923210187773e-08,1.286380080138595231e-08,1.335856237067002689e-08,1.385332393995410147e-08,1.434808550923817605e-08,1.484284707852225063e-08,1.533760864780632686e-08,1.583237021709040310e-08,1.632713178637447933e-08,1.682189335565855556e-08,1.731665492494263180e-08,1.781141649422670803e-08,1.830617806351078427e-08,1.880093963279486050e-08,1.929570120207893673e-08,1.979046277136301297e-08,2.028522434064708920e-08,2.077998590993116544e-08,2.127474747921524167e-08,2.176950904849931791e-08,2.226427061778339414e-08,2.275903218706747037e-08,2.325379375635154661e-08,2.374855532563562284e-08,2.424331689491969908e-08,2.473807846420377531e-08,2.523284003348785154e-08,2.572760160277192778e-08,2.622236317205600401e-08,2.671712474134008025e-08,2.721188631062415648e-08,2.770664787990823271e-08,2.820140944919230895e-08,2.869617101847638518e-08,2.919093258776046142e-08,2.968569415704453765e-08,3.018045572632861389e-08,3.067521729561269343e-08,3.116997886489677297e-08 +0.000000000000000000e+00,1.161998438048231154e-09,2.323996876096462307e-09,3.485995314144693254e-09,4.647993752192923788e-09,5.809992190241154321e-09,6.971990628289384854e-09,8.133989066337615388e-09,9.295987504385845921e-09,1.045798594243407645e-08,1.161998438048230699e-08,1.278198281853053752e-08,1.394398125657876805e-08,1.510597969462699693e-08,1.626797813267522747e-08,1.742997657072345800e-08,1.859197500877168853e-08,1.975397344681991907e-08,2.091597188486814960e-08,2.207797032291638013e-08,2.323996876096461067e-08,2.440196719901284120e-08,2.556396563706107173e-08,2.672596407510930227e-08,2.788796251315753280e-08,2.904996095120576333e-08,3.021195938925399387e-08,3.137395782730222440e-08,3.253595626535045493e-08,3.369795470339868547e-08,3.485995314144691600e-08,3.602195157949514653e-08,3.718395001754337707e-08,3.834594845559160760e-08,3.950794689363983813e-08,4.066994533168806867e-08,4.183194376973629920e-08,4.299394220778452973e-08,4.415594064583276027e-08,4.531793908388099080e-08,4.647993752192922133e-08,4.764193595997745187e-08,4.880393439802568240e-08,4.996593283607391293e-08,5.112793127412214347e-08,5.228992971217037400e-08,5.345192815021860453e-08,5.461392658826683507e-08,5.577592502631506560e-08,5.693792346436329613e-08,5.809992190241152667e-08,5.926192034045975720e-08,6.042391877850798773e-08,6.158591721655622488e-08,6.274791565460446203e-08,6.390991409265269919e-08,6.507191253070093634e-08,6.623391096874917349e-08,6.739590940679741064e-08,6.855790784484564779e-08,6.971990628289388494e-08,7.088190472094212209e-08,7.204390315899035924e-08,7.320590159703859639e-08 +0.000000000000000000e+00,9.121967939707985196e-10,1.824393587941597039e-09,2.736590381912395662e-09,3.648787175883194492e-09,4.560983969853993322e-09,5.473180763824792151e-09,6.385377557795590981e-09,7.297574351766389811e-09,8.209771145737188641e-09,9.121967939707986643e-09,1.003416473367878465e-08,1.094636152764958265e-08,1.185855832162038065e-08,1.277075511559117865e-08,1.368295190956197666e-08,1.459514870353277466e-08,1.550734549750357266e-08,1.641954229147437066e-08,1.733173908544516867e-08,1.824393587941596667e-08,1.915613267338676467e-08,2.006832946735756267e-08,2.098052626132836068e-08,2.189272305529915868e-08,2.280491984926995668e-08,2.371711664324075468e-08,2.462931343721155269e-08,2.554151023118235069e-08,2.645370702515314869e-08,2.736590381912394669e-08,2.827810061309474470e-08,2.919029740706554270e-08,3.010249420103634070e-08,3.101469099500713871e-08,3.192688778897793671e-08,3.283908458294873471e-08,3.375128137691953271e-08,3.466347817089033072e-08,3.557567496486112872e-08,3.648787175883192672e-08,3.740006855280272472e-08,3.831226534677352273e-08,3.922446214074432073e-08,4.013665893471511873e-08,4.104885572868591673e-08,4.196105252265671474e-08,4.287324931662751274e-08,4.378544611059831074e-08,4.469764290456910874e-08,4.560983969853990675e-08,4.652203649251070475e-08,4.743423328648150275e-08,4.834643008045230075e-08,4.925862687442309876e-08,5.017082366839389676e-08,5.108302046236469476e-08,5.199521725633549276e-08,5.290741405030629077e-08,5.381961084427708877e-08,5.473180763824788677e-08,5.564400443221868477e-08,5.655620122618948278e-08,5.746839802016028078e-08 +0.000000000000000000e+00,7.709891758576301522e-10,1.541978351715260304e-09,2.312967527572890457e-09,3.083956703430520609e-09,3.854945879288150761e-09,4.625935055145780913e-09,5.396924231003411065e-09,6.167913406861041218e-09,6.938902582718671370e-09,7.709891758576301522e-09,8.480880934433932501e-09,9.251870110291563481e-09,1.002285928614919446e-08,1.079384846200682544e-08,1.156483763786445642e-08,1.233582681372208740e-08,1.310681598957971838e-08,1.387780516543734936e-08,1.464879434129498034e-08,1.541978351715261297e-08,1.619077269301024560e-08,1.696176186886787824e-08,1.773275104472551087e-08,1.850374022058314350e-08,1.927472939644077614e-08,2.004571857229840877e-08,2.081670774815604141e-08,2.158769692401367404e-08,2.235868609987130667e-08,2.312967527572893931e-08,2.390066445158657194e-08,2.467165362744420457e-08,2.544264280330183721e-08,2.621363197915946984e-08,2.698462115501710248e-08,2.775561033087473511e-08,2.852659950673236774e-08,2.929758868259000038e-08,3.006857785844763301e-08,3.083956703430526564e-08,3.161055621016289828e-08,3.238154538602053091e-08,3.315253456187816355e-08,3.392352373773579618e-08,3.469451291359342881e-08,3.546550208945106145e-08,3.623649126530869408e-08,3.700748044116632671e-08,3.777846961702395935e-08,3.854945879288159198e-08,3.932044796873922462e-08,4.009143714459685725e-08,4.086242632045448988e-08,4.163341549631212252e-08,4.240440467216975515e-08,4.317539384802738778e-08,4.394638302388502042e-08,4.471737219974265305e-08,4.548836137560028569e-08,4.625935055145791832e-08,4.703033972731555095e-08,4.780132890317318359e-08,4.857231807903081622e-08 +0.000000000000000000e+00,1.646541906197859984e-09,3.293083812395719968e-09,4.939625718593579745e-09,6.586167624791439108e-09,8.232709530989299299e-09,9.879251437187159490e-09,1.152579334338501968e-08,1.317233524958287987e-08,1.481887715578074006e-08,1.646541906197859860e-08,1.811196096817645713e-08,1.975850287437431567e-08,2.140504478057217421e-08,2.305158668677003274e-08,2.469812859296789128e-08,2.634467049916574982e-08,2.799121240536360835e-08,2.963775431156146689e-08,3.128429621775932543e-08,3.293083812395718396e-08,3.457738003015504250e-08,3.622392193635290103e-08,3.787046384255075957e-08,3.951700574874861811e-08,4.116354765494647664e-08,4.281008956114433518e-08,4.445663146734219372e-08,4.610317337354005225e-08,4.774971527973791079e-08,4.939625718593576932e-08,5.104279909213362786e-08,5.268934099833148640e-08,5.433588290452934493e-08,5.598242481072720347e-08,5.762896671692506201e-08,5.927550862312292054e-08,6.092205052932077908e-08,6.256859243551863762e-08,6.421513434171649615e-08,6.586167624791435469e-08,6.750821815411221322e-08,6.915476006031007176e-08,7.080130196650793030e-08,7.244784387270578883e-08,7.409438577890364737e-08,7.574092768510150591e-08,7.738746959129936444e-08,7.903401149749722298e-08,8.068055340369508151e-08,8.232709530989294005e-08,8.397363721609079859e-08,8.562017912228865712e-08,8.726672102848651566e-08,8.891326293468437420e-08,9.055980484088223273e-08,9.220634674708009127e-08,9.385288865327794981e-08,9.549943055947580834e-08,9.714597246567366688e-08,9.879251437187152541e-08,1.004390562780693840e-07,1.020855981842672425e-07,1.037321400904651010e-07 +0.000000000000000000e+00,9.121967939725097495e-10,1.824393587945019499e-09,2.736590381917529145e-09,3.648787175890038584e-09,4.560983969862548024e-09,5.473180763835057463e-09,6.385377557807566902e-09,7.297574351780076341e-09,8.209771145752585781e-09,9.121967939725096047e-09,1.003416473369760631e-08,1.094636152767011658e-08,1.185855832164262685e-08,1.277075511561513711e-08,1.368295190958764738e-08,1.459514870356015765e-08,1.550734549753266957e-08,1.641954229150518149e-08,1.733173908547769341e-08,1.824393587945020533e-08,1.915613267342271725e-08,2.006832946739522917e-08,2.098052626136774109e-08,2.189272305534025301e-08,2.280491984931276493e-08,2.371711664328527685e-08,2.462931343725778877e-08,2.554151023123030070e-08,2.645370702520281262e-08,2.736590381917532454e-08,2.827810061314783646e-08,2.919029740712034838e-08,3.010249420109286030e-08,3.101469099506537222e-08,3.192688778903788414e-08,3.283908458301039606e-08,3.375128137698290798e-08,3.466347817095541990e-08,3.557567496492793182e-08,3.648787175890044375e-08,3.740006855287295567e-08,3.831226534684546759e-08,3.922446214081797951e-08,4.013665893479049143e-08,4.104885572876300335e-08,4.196105252273551527e-08,4.287324931670802719e-08,4.378544611068053911e-08,4.469764290465305103e-08,4.560983969862556295e-08,4.652203649259807487e-08,4.743423328657058679e-08,4.834643008054309872e-08,4.925862687451561064e-08,5.017082366848812256e-08,5.108302046246063448e-08,5.199521725643314640e-08,5.290741405040565832e-08,5.381961084437817024e-08,5.473180763835068216e-08,5.564400443232319408e-08,5.655620122629570600e-08,5.746839802026821792e-08 +0.000000000000000000e+00,7.709891758589991361e-10,1.541978351717998272e-09,2.312967527576997408e-09,3.083956703435996544e-09,3.854945879294995681e-09,4.625935055153994817e-09,5.396924231012993953e-09,6.167913406871993089e-09,6.938902582730992225e-09,7.709891758589991361e-09,8.480880934448990497e-09,9.251870110307989633e-09,1.002285928616698877e-08,1.079384846202598791e-08,1.156483763788498704e-08,1.233582681374398618e-08,1.310681598960298531e-08,1.387780516546198445e-08,1.464879434132098359e-08,1.541978351717998272e-08,1.619077269303898186e-08,1.696176186889798099e-08,1.773275104475698013e-08,1.850374022061597927e-08,1.927472939647497840e-08,2.004571857233397754e-08,2.081670774819297667e-08,2.158769692405197581e-08,2.235868609991097495e-08,2.312967527576997408e-08,2.390066445162897322e-08,2.467165362748797236e-08,2.544264280334697149e-08,2.621363197920597063e-08,2.698462115506496976e-08,2.775561033092396890e-08,2.852659950678296804e-08,2.929758868264196717e-08,3.006857785850096962e-08,3.083956703435997206e-08,3.161055621021897451e-08,3.238154538607797695e-08,3.315253456193697940e-08,3.392352373779598184e-08,3.469451291365498429e-08,3.546550208951398673e-08,3.623649126537298918e-08,3.700748044123199162e-08,3.777846961709099407e-08,3.854945879294999651e-08,3.932044796880899895e-08,4.009143714466800140e-08,4.086242632052700384e-08,4.163341549638600629e-08,4.240440467224500873e-08,4.317539384810401118e-08,4.394638302396301362e-08,4.471737219982201607e-08,4.548836137568101851e-08,4.625935055154002096e-08,4.703033972739902340e-08,4.780132890325802585e-08,4.857231807911702829e-08 +0.000000000000000000e+00,1.646541906199793725e-09,3.293083812399587451e-09,4.939625718599380763e-09,6.586167624799174074e-09,8.232709530998967386e-09,9.879251437198761525e-09,1.152579334339855566e-08,1.317233524959834980e-08,1.481887715579814394e-08,1.646541906199793808e-08,1.811196096819773222e-08,1.975850287439752636e-08,2.140504478059732050e-08,2.305158668679711464e-08,2.469812859299690878e-08,2.634467049919670291e-08,2.799121240539649705e-08,2.963775431159629119e-08,3.128429621779608533e-08,3.293083812399588278e-08,3.457738003019568023e-08,3.622392193639547767e-08,3.787046384259527512e-08,3.951700574879507257e-08,4.116354765499487002e-08,4.281008956119466747e-08,4.445663146739446491e-08,4.610317337359426236e-08,4.774971527979405981e-08,4.939625718599385726e-08,5.104279909219365470e-08,5.268934099839345215e-08,5.433588290459324960e-08,5.598242481079304705e-08,5.762896671699284449e-08,5.927550862319264194e-08,6.092205052939243277e-08,6.256859243559222360e-08,6.421513434179201443e-08,6.586167624799180526e-08,6.750821815419159609e-08,6.915476006039138692e-08,7.080130196659117775e-08,7.244784387279096858e-08,7.409438577899075941e-08,7.574092768519055024e-08,7.738746959139034107e-08,7.903401149759013190e-08,8.068055340378992274e-08,8.232709530998971357e-08,8.397363721618950440e-08,8.562017912238929523e-08,8.726672102858908606e-08,8.891326293478887689e-08,9.055980484098866772e-08,9.220634674718845855e-08,9.385288865338824938e-08,9.549943055958804021e-08,9.714597246578783104e-08,9.879251437198762187e-08,1.004390562781874127e-07,1.020855981843872035e-07,1.037321400905869944e-07 +0.000000000000000000e+00,1.192043978374591232e-09,2.384087956749182463e-09,3.576131935123773695e-09,4.768175913498364926e-09,5.960219891872956158e-09,7.152263870247547389e-09,8.344307848622138621e-09,9.536351826996729852e-09,1.072839580537132108e-08,1.192043978374591232e-08,1.311248376212050355e-08,1.430452774049509478e-08,1.549657171886968436e-08,1.668861569724427393e-08,1.788065967561886351e-08,1.907270365399345309e-08,2.026474763236804266e-08,2.145679161074263224e-08,2.264883558911722182e-08,2.384087956749181140e-08,2.503292354586640097e-08,2.622496752424099055e-08,2.741701150261558013e-08,2.860905548099016970e-08,2.980109945936475928e-08,3.099314343773934886e-08,3.218518741611393844e-08,3.337723139448852801e-08,3.456927537286311759e-08,3.576131935123770717e-08,3.695336332961229674e-08,3.814540730798688632e-08,3.933745128636147590e-08,4.052949526473606548e-08,4.172153924311065505e-08,4.291358322148524463e-08,4.410562719985983421e-08,4.529767117823442378e-08,4.648971515660901336e-08,4.768175913498360294e-08,4.887380311335819252e-08,5.006584709173278209e-08,5.125789107010737167e-08,5.244993504848196125e-08,5.364197902685655082e-08,5.483402300523114040e-08,5.602606698360572998e-08,5.721811096198031956e-08,5.841015494035490913e-08,5.960219891872949871e-08,6.079424289710409490e-08,6.198628687547868448e-08,6.317833085385327406e-08,6.437037483222786364e-08,6.556241881060245321e-08,6.675446278897704279e-08,6.794650676735163237e-08,6.913855074572622195e-08,7.033059472410081152e-08,7.152263870247540110e-08,7.271468268084999068e-08,7.390672665922458025e-08,7.509877063759916983e-08 +0.000000000000000000e+00,1.053644537174444140e-09,2.107289074348888280e-09,3.160933611523332420e-09,4.214578148697776560e-09,5.268222685872221113e-09,6.321867223046665667e-09,7.375511760221110220e-09,8.429156297395554773e-09,9.482800834569999327e-09,1.053644537174444388e-08,1.159008990891888843e-08,1.264373444609333299e-08,1.369737898326777754e-08,1.475102352044222209e-08,1.580466805761666499e-08,1.685831259479110624e-08,1.791195713196554748e-08,1.896560166913998873e-08,2.001924620631442997e-08,2.107289074348887122e-08,2.212653528066331246e-08,2.318017981783775371e-08,2.423382435501219495e-08,2.528746889218663620e-08,2.634111342936107744e-08,2.739475796653551869e-08,2.844840250370995993e-08,2.950204704088440118e-08,3.055569157805884242e-08,3.160933611523328366e-08,3.266298065240772491e-08,3.371662518958216615e-08,3.477026972675660740e-08,3.582391426393104864e-08,3.687755880110548989e-08,3.793120333827993113e-08,3.898484787545437238e-08,4.003849241262881362e-08,4.109213694980325487e-08,4.214578148697769611e-08,4.319942602415213736e-08,4.425307056132657860e-08,4.530671509850101985e-08,4.636035963567546109e-08,4.741400417284990234e-08,4.846764871002434358e-08,4.952129324719878483e-08,5.057493778437322607e-08,5.162858232154766732e-08,5.268222685872210856e-08,5.373587139589654980e-08,5.478951593307099105e-08,5.584316047024543229e-08,5.689680500741987354e-08,5.795044954459431478e-08,5.900409408176875603e-08,6.005773861894319727e-08,6.111138315611763190e-08,6.216502769329206653e-08,6.321867223046650116e-08,6.427231676764093578e-08,6.532596130481537041e-08,6.637960584198980504e-08 +0.000000000000000000e+00,2.128728641665082820e-09,4.257457283330165640e-09,6.386185924995248873e-09,8.514914566660332934e-09,1.064364320832541699e-08,1.277237184999050106e-08,1.490110049165558512e-08,1.702982913332066918e-08,1.915855777498575489e-08,2.128728641665084061e-08,2.341601505831592632e-08,2.554474369998101204e-08,2.767347234164609775e-08,2.980220098331118347e-08,3.193092962497626918e-08,3.405965826664135821e-08,3.618838690830644723e-08,3.831711554997153625e-08,4.044584419163662528e-08,4.257457283330171430e-08,4.470330147496680333e-08,4.683203011663189235e-08,4.896075875829698137e-08,5.108948739996207040e-08,5.321821604162715942e-08,5.534694468329224844e-08,5.747567332495733747e-08,5.960440196662242649e-08,6.173313060828750890e-08,6.386185924995259130e-08,6.599058789161767371e-08,6.811931653328275612e-08,7.024804517494783852e-08,7.237677381661292093e-08,7.450550245827800334e-08,7.663423109994308574e-08,7.876295974160816815e-08,8.089168838327325056e-08,8.302041702493833296e-08,8.514914566660341537e-08,8.727787430826849777e-08,8.940660294993358018e-08,9.153533159159866259e-08,9.366406023326374499e-08,9.579278887492882740e-08,9.792151751659390981e-08,1.000502461582589922e-07,1.021789747999240746e-07,1.043077034415891570e-07,1.064364320832542394e-07,1.085651607249193218e-07,1.106938893665844042e-07,1.128226180082494867e-07,1.149513466499145691e-07,1.170800752915796515e-07,1.192088039332447339e-07,1.213375325749098163e-07,1.234662612165749119e-07,1.255949898582400076e-07,1.277237184999051032e-07,1.298524471415701988e-07,1.319811757832352945e-07,1.341099044249003901e-07 +0.000000000000000000e+00,1.192043978377104413e-09,2.384087956754208826e-09,3.576131935131313446e-09,4.768175913508418479e-09,5.960219891885523513e-09,7.152263870262628546e-09,8.344307848639732752e-09,9.536351827016836959e-09,1.072839580539394116e-08,1.192043978377104537e-08,1.311248376214814958e-08,1.430452774052525378e-08,1.549657171890235799e-08,1.668861569727946220e-08,1.788065967565656640e-08,1.907270365403367061e-08,2.026474763241077481e-08,2.145679161078787902e-08,2.264883558916498323e-08,2.384087956754208743e-08,2.503292354591919164e-08,2.622496752429629585e-08,2.741701150267340005e-08,2.860905548105050426e-08,2.980109945942760846e-08,3.099314343780470936e-08,3.218518741618181357e-08,3.337723139455891777e-08,3.456927537293602198e-08,3.576131935131312619e-08,3.695336332969023039e-08,3.814540730806733460e-08,3.933745128644443881e-08,4.052949526482154301e-08,4.172153924319864722e-08,4.291358322157575142e-08,4.410562719995285563e-08,4.529767117832995984e-08,4.648971515670706404e-08,4.768175913508416825e-08,4.887380311346127246e-08,5.006584709183837666e-08,5.125789107021548087e-08,5.244993504859258507e-08,5.364197902696968928e-08,5.483402300534679349e-08,5.602606698372389769e-08,5.721811096210100190e-08,5.841015494047810610e-08,5.960219891885521031e-08,6.079424289723231452e-08,6.198628687560941872e-08,6.317833085398652293e-08,6.437037483236362714e-08,6.556241881074073134e-08,6.675446278911783555e-08,6.794650676749493975e-08,6.913855074587204396e-08,7.033059472424914817e-08,7.152263870262625237e-08,7.271468268100335658e-08,7.390672665938046079e-08,7.509877063775756499e-08 +0.000000000000000000e+00,1.053644537176536080e-09,2.107289074353072159e-09,3.160933611529608239e-09,4.214578148706144319e-09,5.268222685882679985e-09,6.321867223059215651e-09,7.375511760235751317e-09,8.429156297412286983e-09,9.482800834588822649e-09,1.053644537176535832e-08,1.159008990894189398e-08,1.264373444611842965e-08,1.369737898329496531e-08,1.475102352047150098e-08,1.580466805764803830e-08,1.685831259482457727e-08,1.791195713200111625e-08,1.896560166917765522e-08,2.001924620635419420e-08,2.107289074353073317e-08,2.212653528070727215e-08,2.318017981788381112e-08,2.423382435506035010e-08,2.528746889223688907e-08,2.634111342941342805e-08,2.739475796658996702e-08,2.844840250376650600e-08,2.950204704094304497e-08,3.055569157811958395e-08,3.160933611529612292e-08,3.266298065247266190e-08,3.371662518964920087e-08,3.477026972682573985e-08,3.582391426400227882e-08,3.687755880117881780e-08,3.793120333835535677e-08,3.898484787553189575e-08,4.003849241270843472e-08,4.109213694988497369e-08,4.214578148706151267e-08,4.319942602423805164e-08,4.425307056141459062e-08,4.530671509859112959e-08,4.636035963576766857e-08,4.741400417294420754e-08,4.846764871012074652e-08,4.952129324729728549e-08,5.057493778447382447e-08,5.162858232165036344e-08,5.268222685882690242e-08,5.373587139600344139e-08,5.478951593317998037e-08,5.584316047035651934e-08,5.689680500753305832e-08,5.795044954470959729e-08,5.900409408188613627e-08,6.005773861906268186e-08,6.111138315623923407e-08,6.216502769341578628e-08,6.321867223059233849e-08,6.427231676776889070e-08,6.532596130494544291e-08,6.637960584212199512e-08 +0.000000000000000000e+00,2.128728641667845603e-09,4.257457283335691206e-09,6.386185925003537223e-09,8.514914566671384067e-09,1.064364320833923091e-08,1.277237185000707776e-08,1.490110049167492460e-08,1.702982913334277144e-08,1.915855777501061663e-08,2.128728641667846182e-08,2.341601505834630701e-08,2.554474370001415220e-08,2.767347234168199739e-08,2.980220098334984258e-08,3.193092962501768777e-08,3.405965826668553627e-08,3.618838690835338477e-08,3.831711555002123327e-08,4.044584419168908176e-08,4.257457283335693026e-08,4.470330147502477876e-08,4.683203011669262726e-08,4.896075875836047576e-08,5.108948740002832425e-08,5.321821604169617275e-08,5.534694468336402125e-08,5.747567332503186975e-08,5.960440196669971825e-08,6.173313060836756675e-08,6.386185925003541524e-08,6.599058789170326374e-08,6.811931653337111224e-08,7.024804517503896074e-08,7.237677381670680924e-08,7.450550245837465774e-08,7.663423110004250623e-08,7.876295974171035473e-08,8.089168838337820323e-08,8.302041702504605173e-08,8.514914566671390023e-08,8.727787430838174873e-08,8.940660295004959722e-08,9.153533159171744572e-08,9.366406023338529422e-08,9.579278887505314272e-08,9.792151751672099122e-08,1.000502461583888397e-07,1.021789748000566882e-07,1.043077034417245367e-07,1.064364320833923852e-07,1.085651607250602337e-07,1.106938893667280822e-07,1.128226180083959307e-07,1.149513466500637792e-07,1.170800752917316277e-07,1.192088039333994762e-07,1.213375325750673379e-07,1.234662612167352129e-07,1.255949898584030879e-07,1.277237185000709628e-07,1.298524471417388378e-07,1.319811757834067128e-07,1.341099044250745877e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.070233603520670731e-22,-4.140467207041341461e-22,-6.210700810562012427e-22,-8.280934414082683863e-22,-1.035116801760335624e-21,-1.242140162112402862e-21,-1.449163522464470099e-21,-1.656186882816537337e-21,-1.863210243168604575e-21,-2.070233603520672000e-21,-2.277256963872739426e-21,-2.484280324224806852e-21,-2.691303684576874277e-21,-2.898327044928941703e-21,-3.105350405281009129e-21,-3.312373765633076555e-21,-3.519397125985143980e-21,-3.726420486337211406e-21,-3.933443846689278832e-21,-4.140467207041346257e-21,-4.347490567393413683e-21,-4.554513927745481109e-21,-4.761537288097548535e-21,-4.968560648449615960e-21,-5.175584008801683386e-21,-5.382607369153750812e-21,-5.589630729505818238e-21,-5.796654089857885663e-21,-6.003677450209953089e-21,-6.210700810562020515e-21,-6.417724170914087940e-21,-6.624747531266155366e-21,-6.831770891618222792e-21,-7.038794251970290970e-21,-7.245817612322359148e-21,-7.452840972674427326e-21,-7.659864333026495504e-21,-7.866887693378563682e-21,-8.073911053730631860e-21,-8.280934414082700038e-21,-8.487957774434768216e-21,-8.694981134786836394e-21,-8.902004495138904572e-21,-9.109027855490972750e-21,-9.316051215843040928e-21,-9.523074576195109106e-21,-9.730097936547177284e-21,-9.937121296899245462e-21,-1.014414465725131364e-20,-1.035116801760338182e-20,-1.055819137795545000e-20,-1.076521473830751817e-20,-1.097223809865958635e-20,-1.117926145901165453e-20,-1.138628481936372271e-20,-1.159330817971579089e-20,-1.180033154006785906e-20,-1.200735490041992724e-20,-1.221437826077199542e-20,-1.242140162112406360e-20,-1.262842498147613178e-20,-1.283544834182819996e-20,-1.304247170218026813e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.054280447986991557e-22,-2.108560895973983114e-22,-3.162841343960974788e-22,-4.217121791947966697e-22,-5.271402239934958607e-22,-6.325682687921950516e-22,-7.379963135908942426e-22,-8.434243583895934335e-22,-9.488524031882925304e-22,-1.054280447986991533e-21,-1.159708492785690536e-21,-1.265136537584389539e-21,-1.370564582383088542e-21,-1.475992627181787545e-21,-1.581420671980486548e-21,-1.686848716779185550e-21,-1.792276761577884553e-21,-1.897704806376583556e-21,-2.003132851175282559e-21,-2.108560895973981562e-21,-2.213988940772680565e-21,-2.319416985571379568e-21,-2.424845030370078571e-21,-2.530273075168777573e-21,-2.635701119967476576e-21,-2.741129164766175579e-21,-2.846557209564874582e-21,-2.951985254363573585e-21,-3.057413299162272588e-21,-3.162841343960971591e-21,-3.268269388759670593e-21,-3.373697433558369596e-21,-3.479125478357068599e-21,-3.584553523155767602e-21,-3.689981567954466605e-21,-3.795409612753165608e-21,-3.900837657551864611e-21,-4.006265702350563614e-21,-4.111693747149262616e-21,-4.217121791947961619e-21,-4.322549836746660622e-21,-4.427977881545359625e-21,-4.533405926344058628e-21,-4.638833971142757631e-21,-4.744262015941456634e-21,-4.849690060740155636e-21,-4.955118105538854639e-21,-5.060546150337553642e-21,-5.165974195136252645e-21,-5.271402239934951648e-21,-5.376830284733650651e-21,-5.482258329532349654e-21,-5.587686374331048657e-21,-5.693114419129747659e-21,-5.798542463928446662e-21,-5.903970508727145665e-21,-6.009398553525844668e-21,-6.114826598324543671e-21,-6.220254643123242674e-21,-6.325682687921941677e-21,-6.431110732720640679e-21,-6.536538777519339682e-21,-6.641966822318038685e-21 +0.000000000000000000e+00,5.424247167212435604e-11,1.084849433442487121e-10,1.627274150163730616e-10,2.169698866884973983e-10,2.712123583606217091e-10,3.254548300327460199e-10,3.796973017048703307e-10,4.339397733769946415e-10,4.881822450491189523e-10,5.424247167212432114e-10,5.966671883933674705e-10,6.509096600654917296e-10,7.051521317376159887e-10,7.593946034097402478e-10,8.136370750818645069e-10,8.678795467539887660e-10,9.221220184261130251e-10,9.763644900982372842e-10,1.030606961770361440e-09,1.084849433442485596e-09,1.139091905114609751e-09,1.193334376786733907e-09,1.247576848458858063e-09,1.301819320130982218e-09,1.356061791803106374e-09,1.410304263475230530e-09,1.464546735147354686e-09,1.518789206819478841e-09,1.573031678491602997e-09,1.627274150163727153e-09,1.681516621835851308e-09,1.735759093507975464e-09,1.790001565180099620e-09,1.844244036852223775e-09,1.898486508524347931e-09,1.952728980196472087e-09,2.006971451868596243e-09,2.061213923540720398e-09,2.115456395212844554e-09,2.169698866884968710e-09,2.223941338557092865e-09,2.278183810229217021e-09,2.332426281901341177e-09,2.386668753573465332e-09,2.440911225245589488e-09,2.495153696917713644e-09,2.549396168589837800e-09,2.603638640261961955e-09,2.657881111934086111e-09,2.712123583606210267e-09,2.766366055278334422e-09,2.820608526950458578e-09,2.874850998622582734e-09,2.929093470294706889e-09,2.983335941966831045e-09,3.037578413638955201e-09,3.091820885311079357e-09,3.146063356983203512e-09,3.200305828655327668e-09,3.254548300327451824e-09,3.308790771999575979e-09,3.363033243671700135e-09,3.417275715343824291e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.026973968170126017e-22,-2.053947936340252035e-22,-3.080921904510377935e-22,-4.107895872680503600e-22,-5.134869840850629735e-22,-6.161843809020755870e-22,-7.188817777190882005e-22,-8.215791745361008140e-22,-9.242765713531134275e-22,-1.026973968170125947e-21,-1.129671364987138466e-21,-1.232368761804150986e-21,-1.335066158621163505e-21,-1.437763555438176025e-21,-1.540460952255188544e-21,-1.643158349072201064e-21,-1.745855745889213771e-21,-1.848553142706226479e-21,-1.951250539523239186e-21,-2.053947936340251894e-21,-2.156645333157264601e-21,-2.259342729974277309e-21,-2.362040126791290016e-21,-2.464737523608302724e-21,-2.567434920425315432e-21,-2.670132317242328139e-21,-2.772829714059340847e-21,-2.875527110876353554e-21,-2.978224507693366262e-21,-3.080921904510378969e-21,-3.183619301327391677e-21,-3.286316698144404384e-21,-3.389014094961417092e-21,-3.491711491778429799e-21,-3.594408888595442507e-21,-3.697106285412455214e-21,-3.799803682229467922e-21,-3.902501079046480630e-21,-4.005198475863493337e-21,-4.107895872680506045e-21,-4.210593269497518752e-21,-4.313290666314531460e-21,-4.415988063131544167e-21,-4.518685459948556875e-21,-4.621382856765569582e-21,-4.724080253582582290e-21,-4.826777650399594997e-21,-4.929475047216607705e-21,-5.032172444033620412e-21,-5.134869840850633120e-21,-5.237567237667645828e-21,-5.340264634484658535e-21,-5.442962031301671243e-21,-5.545659428118683950e-21,-5.648356824935696658e-21,-5.751054221752709365e-21,-5.853751618569722073e-21,-5.956449015386734780e-21,-6.059146412203747488e-21,-6.161843809020760195e-21,-6.264541205837772903e-21,-6.367238602654785611e-21,-6.469935999471798318e-21 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.791499488152333348e-23,-1.158299897630466670e-22,-1.737449846445699887e-22,-2.316599795260932869e-22,-2.895749744076165851e-22,-3.474899692891398834e-22,-4.054049641706631816e-22,-4.633199590521864798e-22,-5.212349539337097780e-22,-5.791499488152330762e-22,-6.370649436967563745e-22,-6.949799385782796727e-22,-7.528949334598029709e-22,-8.108099283413262691e-22,-8.687249232228495673e-22,-9.266399181043727715e-22,-9.845549129858959757e-22,-1.042469907867419180e-21,-1.100384902748942384e-21,-1.158299897630465588e-21,-1.216214892511988792e-21,-1.274129887393511997e-21,-1.332044882275035201e-21,-1.389959877156558405e-21,-1.447874872038081609e-21,-1.505789866919604813e-21,-1.563704861801128017e-21,-1.621619856682651222e-21,-1.679534851564174426e-21,-1.737449846445697630e-21,-1.795364841327220646e-21,-1.853279836208743662e-21,-1.911194831090266678e-21,-1.969109825971789694e-21,-2.027024820853312711e-21,-2.084939815734835727e-21,-2.142854810616358743e-21,-2.200769805497881759e-21,-2.258684800379404775e-21,-2.316599795260927791e-21,-2.374514790142450807e-21,-2.432429785023973823e-21,-2.490344779905496839e-21,-2.548259774787019855e-21,-2.606174769668542872e-21,-2.664089764550065888e-21,-2.722004759431588904e-21,-2.779919754313111920e-21,-2.837834749194634936e-21,-2.895749744076157952e-21,-2.953664738957680968e-21,-3.011579733839203984e-21,-3.069494728720727000e-21,-3.127409723602250016e-21,-3.185324718483773033e-21,-3.243239713365296049e-21,-3.301154708246819065e-21,-3.359069703128342081e-21,-3.416984698009865097e-21,-3.474899692891388489e-21,-3.532814687772911881e-21,-3.590729682654435274e-21,-3.648644677535958666e-21 +0.000000000000000000e+00,5.424247167226542910e-11,1.084849433445308582e-10,1.627274150167962938e-10,2.169698866890617423e-10,2.712123583613271908e-10,3.254548300335926392e-10,3.796973017058580877e-10,4.339397733781235362e-10,4.881822450503889847e-10,5.424247167226543815e-10,5.966671883949197783e-10,6.509096600671851751e-10,7.051521317394505719e-10,7.593946034117159687e-10,8.136370750839813655e-10,8.678795467562467623e-10,9.221220184285121591e-10,9.763644901007775558e-10,1.030606961773042953e-09,1.084849433445308349e-09,1.139091905117573746e-09,1.193334376789839143e-09,1.247576848462104540e-09,1.301819320134369937e-09,1.356061791806635333e-09,1.410304263478900730e-09,1.464546735151166127e-09,1.518789206823431524e-09,1.573031678495696921e-09,1.627274150167962317e-09,1.681516621840227714e-09,1.735759093512493111e-09,1.790001565184758508e-09,1.844244036857023905e-09,1.898486508529289508e-09,1.952728980201555112e-09,2.006971451873820715e-09,2.061213923546086319e-09,2.115456395218351922e-09,2.169698866890617526e-09,2.223941338562883130e-09,2.278183810235148733e-09,2.332426281907414337e-09,2.386668753579679940e-09,2.440911225251945544e-09,2.495153696924211148e-09,2.549396168596476751e-09,2.603638640268742355e-09,2.657881111941007958e-09,2.712123583613273562e-09,2.766366055285539165e-09,2.820608526957804769e-09,2.874850998630070373e-09,2.929093470302335976e-09,2.983335941974601580e-09,3.037578413646867183e-09,3.091820885319132787e-09,3.146063356991398391e-09,3.200305828663663994e-09,3.254548300335929598e-09,3.308790772008195201e-09,3.363033243680460805e-09,3.417275715352726409e-09 +0.000000000000000000e+00,-4.317628719044712066e-22,-8.635257438089424132e-22,-1.295288615713413714e-21,-1.727051487617885203e-21,-2.158814359522356691e-21,-2.590577231426828180e-21,-3.022340103331299669e-21,-3.454102975235771158e-21,-3.885865847140242646e-21,-4.317628719044714135e-21,-4.749391590949185624e-21,-5.181154462853657113e-21,-5.612917334758128601e-21,-6.044680206662600090e-21,-6.476443078567071579e-21,-6.908205950471543820e-21,-7.339968822376015309e-21,-7.771731694280486797e-21,-8.203494566184958286e-21,-8.635257438089429775e-21,-9.067020309993901264e-21,-9.498783181898372752e-21,-9.930546053802844241e-21,-1.036230892570731573e-20,-1.079407179761178722e-20,-1.122583466951625871e-20,-1.165759754142073020e-20,-1.208936041332520168e-20,-1.252112328522967317e-20,-1.295288615713414466e-20,-1.338464902903861615e-20,-1.381641190094308764e-20,-1.424817477284755913e-20,-1.467993764475203062e-20,-1.511170051665650211e-20,-1.554346338856097359e-20,-1.597522626046544508e-20,-1.640698913236991657e-20,-1.683875200427438806e-20,-1.727051487617885955e-20,-1.770227774808333104e-20,-1.813404061998780253e-20,-1.856580349189227402e-20,-1.899756636379674550e-20,-1.942932923570121699e-20,-1.986109210760568848e-20,-2.029285497951015997e-20,-2.072461785141463146e-20,-2.115638072331910295e-20,-2.158814359522357444e-20,-2.201990646712804593e-20,-2.245166933903251741e-20,-2.288343221093698890e-20,-2.331519508284146039e-20,-2.374695795474593188e-20,-2.417872082665040337e-20,-2.461048369855487486e-20,-2.504224657045934635e-20,-2.547400944236381784e-20,-2.590577231426828932e-20,-2.633753518617276081e-20,-2.676929805807723230e-20,-2.720106092998170379e-20 +0.000000000000000000e+00,-3.165070827317186032e-22,-6.330141654634372065e-22,-9.495212481951557157e-22,-1.266028330926874225e-21,-1.582535413658592734e-21,-1.899042496390311431e-21,-2.215549579122030129e-21,-2.532056661853748826e-21,-2.848563744585467523e-21,-3.165070827317186220e-21,-3.481577910048904918e-21,-3.798084992780623615e-21,-4.114592075512342312e-21,-4.431099158244061009e-21,-4.747606240975779707e-21,-5.064113323707498404e-21,-5.380620406439217101e-21,-5.697127489170935799e-21,-6.013634571902654496e-21,-6.330141654634373193e-21,-6.646648737366091890e-21,-6.963155820097809835e-21,-7.279662902829527780e-21,-7.596169985561245725e-21,-7.912677068292963670e-21,-8.229184151024681615e-21,-8.545691233756399560e-21,-8.862198316488117505e-21,-9.178705399219835450e-21,-9.495212481951553395e-21,-9.811719564683271340e-21,-1.012822664741498928e-20,-1.044473373014670723e-20,-1.076124081287842517e-20,-1.107774789561014312e-20,-1.139425497834186106e-20,-1.171076206107357901e-20,-1.202726914380529695e-20,-1.234377622653701490e-20,-1.266028330926873284e-20,-1.297679039200045079e-20,-1.329329747473216873e-20,-1.360980455746388668e-20,-1.392631164019560462e-20,-1.424281872292732257e-20,-1.455932580565904051e-20,-1.487583288839075846e-20,-1.519233997112247640e-20,-1.550884705385419435e-20,-1.582535413658591229e-20,-1.614186121931763024e-20,-1.645836830204934818e-20,-1.677487538478106613e-20,-1.709138246751278407e-20,-1.740788955024450202e-20,-1.772439663297621996e-20,-1.804090371570793791e-20,-1.835741079843965585e-20,-1.867391788117137380e-20,-1.899042496390309174e-20,-1.930693204663480969e-20,-1.962343912936652763e-20,-1.993994621209824558e-20 +0.000000000000000000e+00,1.502263350286344517e-10,3.004526700572689033e-10,4.506790050859033808e-10,6.009053401145379101e-10,7.511316751431724393e-10,9.013580101718069685e-10,1.051584345200441601e-09,1.201810680229076234e-09,1.352037015257710866e-09,1.502263350286345499e-09,1.652489685314980132e-09,1.802716020343614764e-09,1.952942355372249397e-09,2.103168690400884029e-09,2.253395025429518662e-09,2.403621360458153295e-09,2.553847695486787927e-09,2.704074030515422560e-09,2.854300365544057192e-09,3.004526700572691825e-09,3.154753035601326458e-09,3.304979370629961090e-09,3.455205705658595723e-09,3.605432040687230356e-09,3.755658375715864988e-09,3.905884710744499621e-09,4.056111045773134253e-09,4.206337380801768886e-09,4.356563715830403519e-09,4.506790050859038151e-09,4.657016385887672784e-09,4.807242720916307416e-09,4.957469055944942049e-09,5.107695390973576682e-09,5.257921726002211314e-09,5.408148061030845947e-09,5.558374396059480579e-09,5.708600731088115212e-09,5.858827066116749845e-09,6.009053401145384477e-09,6.159279736174019110e-09,6.309506071202653743e-09,6.459732406231288375e-09,6.609958741259923008e-09,6.760185076288557640e-09,6.910411411317192273e-09,7.060637746345826906e-09,7.210864081374461538e-09,7.361090416403096171e-09,7.511316751431731631e-09,7.661543086460367918e-09,7.811769421489004205e-09,7.961995756517640492e-09,8.112222091546276778e-09,8.262448426574913065e-09,8.412674761603549352e-09,8.562901096632185639e-09,8.713127431660821926e-09,8.863353766689458213e-09,9.013580101718094500e-09,9.163806436746730787e-09,9.314032771775367074e-09,9.464259106804003361e-09 +0.000000000000000000e+00,-1.247423063732635386e-22,-2.494846127465270771e-22,-3.742269191197906392e-22,-4.989692254930542482e-22,-6.237115318663178573e-22,-7.484538382395814664e-22,-8.731961446128449814e-22,-9.979384509861084965e-22,-1.122680757359372012e-21,-1.247423063732635527e-21,-1.372165370105899042e-21,-1.496907676479162557e-21,-1.621649982852426072e-21,-1.746392289225689587e-21,-1.871134595598953102e-21,-1.995876901972216617e-21,-2.120619208345480132e-21,-2.245361514718743647e-21,-2.370103821092007162e-21,-2.494846127465270677e-21,-2.619588433838534192e-21,-2.744330740211797707e-21,-2.869073046585061222e-21,-2.993815352958324737e-21,-3.118557659331588252e-21,-3.243299965704851767e-21,-3.368042272078115282e-21,-3.492784578451378421e-21,-3.617526884824641184e-21,-3.742269191197903947e-21,-3.867011497571166709e-21,-3.991753803944429472e-21,-4.116496110317692235e-21,-4.241238416690954998e-21,-4.365980723064217760e-21,-4.490723029437480523e-21,-4.615465335810743286e-21,-4.740207642184006048e-21,-4.864949948557268811e-21,-4.989692254930531574e-21,-5.114434561303794337e-21,-5.239176867677057099e-21,-5.363919174050319862e-21,-5.488661480423582625e-21,-5.613403786796845387e-21,-5.738146093170108150e-21,-5.862888399543370913e-21,-5.987630705916633676e-21,-6.112373012289896438e-21,-6.237115318663159201e-21,-6.361857625036421964e-21,-6.486599931409684727e-21,-6.611342237782947489e-21,-6.736084544156210252e-21,-6.860826850529473015e-21,-6.985569156902735777e-21,-7.110311463275998540e-21,-7.235053769649261303e-21,-7.359796076022524066e-21,-7.484538382395786828e-21,-7.609280688769049591e-21,-7.734022995142312354e-21,-7.858765301515575117e-21 +0.000000000000000000e+00,-1.252715040392723423e-22,-2.505430080785446846e-22,-3.758145121178170034e-22,-5.010860161570892751e-22,-6.263575201963615469e-22,-7.516290242356338187e-22,-8.769005282749061845e-22,-1.002172032314178550e-21,-1.127443536353450916e-21,-1.252715040392723282e-21,-1.377986544431995648e-21,-1.503258048471268013e-21,-1.628529552510540379e-21,-1.753801056549812745e-21,-1.879072560589085111e-21,-2.004344064628357477e-21,-2.129615568667629843e-21,-2.254887072706902208e-21,-2.380158576746174574e-21,-2.505430080785446940e-21,-2.630701584824719306e-21,-2.755973088863991672e-21,-2.881244592903264037e-21,-3.006516096942536403e-21,-3.131787600981808769e-21,-3.257059105021081135e-21,-3.382330609060353501e-21,-3.507602113099626243e-21,-3.632873617138898608e-21,-3.758145121178170974e-21,-3.883416625217443340e-21,-4.008688129256715706e-21,-4.133959633295988072e-21,-4.259231137335260437e-21,-4.384502641374532803e-21,-4.509774145413805169e-21,-4.635045649453077535e-21,-4.760317153492349901e-21,-4.885588657531622266e-21,-5.010860161570894632e-21,-5.136131665610166998e-21,-5.261403169649439364e-21,-5.386674673688711730e-21,-5.511946177727984095e-21,-5.637217681767256461e-21,-5.762489185806528827e-21,-5.887760689845801193e-21,-6.013032193885073559e-21,-6.138303697924345924e-21,-6.263575201963618290e-21,-6.388846706002890656e-21,-6.514118210042163022e-21,-6.639389714081435388e-21,-6.764661218120707753e-21,-6.889932722159980119e-21,-7.015204226199252485e-21,-7.140475730238524851e-21,-7.265747234277797217e-21,-7.391018738317069582e-21,-7.516290242356341948e-21,-7.641561746395614314e-21,-7.766833250434886680e-21,-7.892104754474159046e-21 +0.000000000000000000e+00,1.502263350290492569e-10,3.004526700580985138e-10,4.506790050871477707e-10,6.009053401161970276e-10,7.511316751452462845e-10,9.013580101742955414e-10,1.051584345203344798e-09,1.201810680232394055e-09,1.352037015261443312e-09,1.502263350290492569e-09,1.652489685319541826e-09,1.802716020348591083e-09,1.952942355377640133e-09,2.103168690406689183e-09,2.253395025435738233e-09,2.403621360464787283e-09,2.553847695493836333e-09,2.704074030522885383e-09,2.854300365551934433e-09,3.004526700580983484e-09,3.154753035610032534e-09,3.304979370639081584e-09,3.455205705668130634e-09,3.605432040697179684e-09,3.755658375726228734e-09,3.905884710755277784e-09,4.056111045784326834e-09,4.206337380813375884e-09,4.356563715842424934e-09,4.506790050871473985e-09,4.657016385900523035e-09,4.807242720929572085e-09,4.957469055958621135e-09,5.107695390987670185e-09,5.257921726016719235e-09,5.408148061045768285e-09,5.558374396074817335e-09,5.708600731103866385e-09,5.858827066132915435e-09,6.009053401161964485e-09,6.159279736191013536e-09,6.309506071220062586e-09,6.459732406249111636e-09,6.609958741278160686e-09,6.760185076307209736e-09,6.910411411336258786e-09,7.060637746365307836e-09,7.210864081394356886e-09,7.361090416423405936e-09,7.511316751452454159e-09,7.661543086481502382e-09,7.811769421510550605e-09,7.961995756539598828e-09,8.112222091568647051e-09,8.262448426597695274e-09,8.412674761626743497e-09,8.562901096655791720e-09,8.713127431684839943e-09,8.863353766713888166e-09,9.013580101742936388e-09,9.163806436771984611e-09,9.314032771801032834e-09,9.464259106830081057e-09 +0.000000000000000000e+00,-6.852705330125219838e-22,-1.370541066025043968e-21,-2.055811599037566045e-21,-2.741082132050088311e-21,-3.426352665062610577e-21,-4.111623198075132843e-21,-4.796893731087655109e-21,-5.482164264100177375e-21,-6.167434797112699641e-21,-6.852705330125222659e-21,-7.537975863137744925e-21,-8.223246396150267191e-21,-8.908516929162789457e-21,-9.593787462175311723e-21,-1.027905799518783399e-20,-1.096432852820035625e-20,-1.164959906121287852e-20,-1.233486959422540079e-20,-1.302014012723792305e-20,-1.370541066025044532e-20,-1.439068119326296758e-20,-1.507595172627548985e-20,-1.576122225928801212e-20,-1.644649279230053438e-20,-1.713176332531305665e-20,-1.781703385832557891e-20,-1.850230439133810118e-20,-1.918757492435062345e-20,-1.987284545736314571e-20,-2.055811599037566798e-20,-2.124338652338819024e-20,-2.192865705640071251e-20,-2.261392758941323477e-20,-2.329919812242575704e-20,-2.398446865543827931e-20,-2.466973918845080157e-20,-2.535500972146332384e-20,-2.604028025447584610e-20,-2.672555078748836837e-20,-2.741082132050089064e-20,-2.809609185351341290e-20,-2.878136238652593517e-20,-2.946663291953845743e-20,-3.015190345255097970e-20,-3.083717398556350197e-20,-3.152244451857602423e-20,-3.220771505158854650e-20,-3.289298558460106876e-20,-3.357825611761359103e-20,-3.426352665062611330e-20,-3.494879718363863556e-20,-3.563406771665115783e-20,-3.631933824966368009e-20,-3.700460878267620236e-20,-3.768987931568872462e-20,-3.837514984870124689e-20,-3.906042038171376916e-20,-3.974569091472629142e-20,-4.043096144773881369e-20,-4.111623198075133595e-20,-4.180150251376385822e-20,-4.248677304677638049e-20,-4.317204357978890275e-20 +0.000000000000000000e+00,-5.568638439434647965e-22,-1.113727687886929593e-21,-1.670591531830394296e-21,-2.227455375773858810e-21,-2.784319219717323324e-21,-3.341183063660787839e-21,-3.898046907604252729e-21,-4.454910751547717620e-21,-5.011774595491182510e-21,-5.568638439434647401e-21,-6.125502283378112292e-21,-6.682366127321577182e-21,-7.239229971265042073e-21,-7.796093815208506963e-21,-8.352957659151971854e-21,-8.909821503095436744e-21,-9.466685347038901635e-21,-1.002354919098236653e-20,-1.058041303492583142e-20,-1.113727687886929631e-20,-1.169414072281276120e-20,-1.225100456675622609e-20,-1.280786841069969098e-20,-1.336473225464315587e-20,-1.392159609858662226e-20,-1.447845994253008715e-20,-1.503532378647355205e-20,-1.559218763041701694e-20,-1.614905147436048183e-20,-1.670591531830394672e-20,-1.726277916224741161e-20,-1.781964300619087650e-20,-1.837650685013434139e-20,-1.893337069407780628e-20,-1.949023453802127117e-20,-2.004709838196473606e-20,-2.060396222590820095e-20,-2.116082606985166584e-20,-2.171768991379513073e-20,-2.227455375773859562e-20,-2.283141760168206051e-20,-2.338828144562552540e-20,-2.394514528956899029e-20,-2.450200913351245518e-20,-2.505887297745592008e-20,-2.561573682139938497e-20,-2.617260066534284986e-20,-2.672946450928631475e-20,-2.728632835322977964e-20,-2.784319219717324453e-20,-2.840005604111670942e-20,-2.895691988506017431e-20,-2.951378372900363920e-20,-3.007064757294710409e-20,-3.062751141689056898e-20,-3.118437526083403387e-20,-3.174123910477749876e-20,-3.229810294872096365e-20,-3.285496679266442854e-20,-3.341183063660789343e-20,-3.396869448055135832e-20,-3.452555832449482322e-20,-3.508242216843828811e-20 +0.000000000000000000e+00,2.689926037222255098e-10,5.379852074444510197e-10,8.069778111666765295e-10,1.075970414888902039e-09,1.344963018611127446e-09,1.613955622333352852e-09,1.882948226055578259e-09,2.151940829777803665e-09,2.420933433500029071e-09,2.689926037222254478e-09,2.958918640944479884e-09,3.227911244666705291e-09,3.496903848388930697e-09,3.765896452111156517e-09,4.034889055833382337e-09,4.303881659555608157e-09,4.572874263277833977e-09,4.841866867000059797e-09,5.110859470722285617e-09,5.379852074444511437e-09,5.648844678166737257e-09,5.917837281888963077e-09,6.186829885611188897e-09,6.455822489333414717e-09,6.724815093055640537e-09,6.993807696777866357e-09,7.262800300500092177e-09,7.531792904222317998e-09,7.800785507944544645e-09,8.069778111666771292e-09,8.338770715388997939e-09,8.607763319111224586e-09,8.876755922833451234e-09,9.145748526555677881e-09,9.414741130277904528e-09,9.683733734000131175e-09,9.952726337722357822e-09,1.022171894144458447e-08,1.049071154516681112e-08,1.075970414888903776e-08,1.102869675261126441e-08,1.129768935633349106e-08,1.156668196005571771e-08,1.183567456377794435e-08,1.210466716750017100e-08,1.237365977122239765e-08,1.264265237494462429e-08,1.291164497866685094e-08,1.318063758238907759e-08,1.344963018611130424e-08,1.371862278983353088e-08,1.398761539355575753e-08,1.425660799727798418e-08,1.452560060100021082e-08,1.479459320472243747e-08,1.506358580844466577e-08,1.533257841216689408e-08,1.560157101588912238e-08,1.587056361961135068e-08,1.613955622333357898e-08,1.640854882705580728e-08,1.667754143077803558e-08,1.694653403450026388e-08 +0.000000000000000000e+00,-5.741993733714962807e-23,-1.148398746742992561e-22,-1.722598120114488725e-22,-2.296797493485984653e-22,-2.870996866857480581e-22,-3.445196240228976509e-22,-4.019395613600472437e-22,-4.593594986971968365e-22,-5.167794360343464763e-22,-5.741993733714961162e-22,-6.316193107086457560e-22,-6.890392480457953958e-22,-7.464591853829450356e-22,-8.038791227200946755e-22,-8.612990600572443153e-22,-9.187189973943938611e-22,-9.761389347315434069e-22,-1.033558872068692953e-21,-1.090978809405842498e-21,-1.148398746742992044e-21,-1.205818684080141590e-21,-1.263238621417291136e-21,-1.320658558754440682e-21,-1.378078496091590227e-21,-1.435498433428739773e-21,-1.492918370765889319e-21,-1.550338308103038865e-21,-1.607758245440188411e-21,-1.665178182777337956e-21,-1.722598120114487502e-21,-1.780018057451637236e-21,-1.837437994788786970e-21,-1.894857932125936704e-21,-1.952277869463086438e-21,-2.009697806800236171e-21,-2.067117744137385905e-21,-2.124537681474535639e-21,-2.181957618811685373e-21,-2.239377556148835107e-21,-2.296797493485984841e-21,-2.354217430823134575e-21,-2.411637368160284309e-21,-2.469057305497434042e-21,-2.526477242834583776e-21,-2.583897180171733510e-21,-2.641317117508883244e-21,-2.698737054846032978e-21,-2.756156992183182712e-21,-2.813576929520332446e-21,-2.870996866857482179e-21,-2.928416804194631913e-21,-2.985836741531781647e-21,-3.043256678868931381e-21,-3.100676616206081115e-21,-3.158096553543230849e-21,-3.215516490880380583e-21,-3.272936428217530317e-21,-3.330356365554680050e-21,-3.387776302891829784e-21,-3.445196240228979518e-21,-3.502616177566129252e-21,-3.560036114903278986e-21,-3.617456052240428720e-21 +0.000000000000000000e+00,-1.003786206608978830e-22,-2.007572413217957661e-22,-3.011358619826936609e-22,-4.015144826435915792e-22,-5.018931033044894504e-22,-6.022717239653873217e-22,-7.026503446262851930e-22,-8.030289652871830643e-22,-9.034075859480809356e-22,-1.003786206608978901e-21,-1.104164827269876866e-21,-1.204543447930774832e-21,-1.304922068591672797e-21,-1.405300689252570762e-21,-1.505679309913468727e-21,-1.606057930574366693e-21,-1.706436551235264846e-21,-1.806815171896163000e-21,-1.907193792557061153e-21,-2.007572413217959306e-21,-2.107951033878857460e-21,-2.208329654539755613e-21,-2.308708275200653767e-21,-2.409086895861551920e-21,-2.509465516522450073e-21,-2.609844137183348227e-21,-2.710222757844246380e-21,-2.810601378505144534e-21,-2.910979999166042687e-21,-3.011358619826940840e-21,-3.111737240487838994e-21,-3.212115861148737147e-21,-3.312494481809635301e-21,-3.412873102470533454e-21,-3.513251723131431607e-21,-3.613630343792329761e-21,-3.714008964453227914e-21,-3.814387585114126068e-21,-3.914766205775024221e-21,-4.015144826435922374e-21,-4.115523447096820528e-21,-4.215902067757718681e-21,-4.316280688418616835e-21,-4.416659309079514988e-21,-4.517037929740413141e-21,-4.617416550401311295e-21,-4.717795171062209448e-21,-4.818173791723107602e-21,-4.918552412384005755e-21,-5.018931033044903908e-21,-5.119309653705802062e-21,-5.219688274366700215e-21,-5.320066895027598369e-21,-5.420445515688496522e-21,-5.520824136349394675e-21,-5.621202757010292829e-21,-5.721581377671190982e-21,-5.821959998332089136e-21,-5.922338618992987289e-21,-6.022717239653885442e-21,-6.123095860314783596e-21,-6.223474480975681749e-21,-6.323853101636579903e-21 +0.000000000000000000e+00,2.689926037230598249e-10,5.379852074461196497e-10,8.069778111691794746e-10,1.075970414892239299e-09,1.344963018615299124e-09,1.613955622338358949e-09,1.882948226061418981e-09,2.151940829784479013e-09,2.420933433507539044e-09,2.689926037230599076e-09,2.958918640953659108e-09,3.227911244676719139e-09,3.496903848399779171e-09,3.765896452122839616e-09,4.034889055845900061e-09,4.303881659568960507e-09,4.572874263292020952e-09,4.841866867015081397e-09,5.110859470738141842e-09,5.379852074461202288e-09,5.648844678184262733e-09,5.917837281907323178e-09,6.186829885630383624e-09,6.455822489353444069e-09,6.724815093076504514e-09,6.993807696799564959e-09,7.262800300522625405e-09,7.531792904245685850e-09,7.800785507968746295e-09,8.069778111691806740e-09,8.338770715414867186e-09,8.607763319137927631e-09,8.876755922860988076e-09,9.145748526584048521e-09,9.414741130307108967e-09,9.683733734030169412e-09,9.952726337753229857e-09,1.022171894147629030e-08,1.049071154519935075e-08,1.075970414892241119e-08,1.102869675264547164e-08,1.129768935636853208e-08,1.156668196009159253e-08,1.183567456381465297e-08,1.210466716753771342e-08,1.237365977126077386e-08,1.264265237498383431e-08,1.291164497870689476e-08,1.318063758242995520e-08,1.344963018615301565e-08,1.371862278987607609e-08,1.398761539359913654e-08,1.425660799732219698e-08,1.452560060104525743e-08,1.479459320476831787e-08,1.506358580849137832e-08,1.533257841221444042e-08,1.560157101593750252e-08,1.587056361966056462e-08,1.613955622338362672e-08,1.640854882710668882e-08,1.667754143082975091e-08,1.694653403455281301e-08 +0.000000000000000000e+00,-9.670820013017057595e-22,-1.934164002603411519e-21,-2.901246003905117090e-21,-3.868328005206822286e-21,-4.835410006508527481e-21,-5.802492007810232676e-21,-6.769574009111937871e-21,-7.736656010413643067e-21,-8.703738011715347510e-21,-9.670820013017051953e-21,-1.063790201431875640e-20,-1.160498401562046084e-20,-1.257206601692216528e-20,-1.353914801822386972e-20,-1.450623001952557417e-20,-1.547331202082727711e-20,-1.644039402212898004e-20,-1.740747602343068298e-20,-1.837455802473238592e-20,-1.934164002603408886e-20,-2.030872202733579180e-20,-2.127580402863749474e-20,-2.224288602993919767e-20,-2.320996803124090061e-20,-2.417705003254260355e-20,-2.514413203384430649e-20,-2.611121403514600943e-20,-2.707829603644771237e-20,-2.804537803774941530e-20,-2.901246003905111824e-20,-2.997954204035282118e-20,-3.094662404165452412e-20,-3.191370604295622706e-20,-3.288078804425793000e-20,-3.384787004555963293e-20,-3.481495204686133587e-20,-3.578203404816303881e-20,-3.674911604946474175e-20,-3.771619805076644469e-20,-3.868328005206814763e-20,-3.965036205336985056e-20,-4.061744405467155350e-20,-4.158452605597325644e-20,-4.255160805727495938e-20,-4.351869005857666232e-20,-4.448577205987836526e-20,-4.545285406118006819e-20,-4.641993606248177113e-20,-4.738701806378347407e-20,-4.835410006508517701e-20,-4.932118206638687995e-20,-5.028826406768858288e-20,-5.125534606899028582e-20,-5.222242807029198876e-20,-5.318951007159369170e-20,-5.415659207289539464e-20,-5.512367407419709758e-20,-5.609075607549880653e-20,-5.705783807680051549e-20,-5.802492007810222445e-20,-5.899200207940393340e-20,-5.995908408070564236e-20,-6.092616608200735132e-20 +0.000000000000000000e+00,-8.246699378481528678e-22,-1.649339875696305736e-21,-2.474009813544458509e-21,-3.298679751392611095e-21,-4.123349689240763681e-21,-4.948019627088916266e-21,-5.772689564937068852e-21,-6.597359502785221438e-21,-7.422029440633374023e-21,-8.246699378481527361e-21,-9.071369316329680699e-21,-9.896039254177834037e-21,-1.072070919202598738e-20,-1.154537912987414071e-20,-1.237004906772229405e-20,-1.319471900557044739e-20,-1.401938894341860073e-20,-1.484405888126675406e-20,-1.566872881911490740e-20,-1.649339875696306074e-20,-1.731806869481121408e-20,-1.814273863265936742e-20,-1.896740857050752075e-20,-1.979207850835567409e-20,-2.061674844620382743e-20,-2.144141838405198077e-20,-2.226608832190013411e-20,-2.309075825974828744e-20,-2.391542819759644078e-20,-2.474009813544459412e-20,-2.556476807329274746e-20,-2.638943801114090080e-20,-2.721410794898905714e-20,-2.803877788683721349e-20,-2.886344782468536984e-20,-2.968811776253352619e-20,-3.051278770038168253e-20,-3.133745763822983888e-20,-3.216212757607799523e-20,-3.298679751392615157e-20,-3.381146745177430792e-20,-3.463613738962246427e-20,-3.546080732747062062e-20,-3.628547726531877696e-20,-3.711014720316693331e-20,-3.793481714101508966e-20,-3.875948707886324600e-20,-3.958415701671140235e-20,-4.040882695455955870e-20,-4.123349689240771505e-20,-4.205816683025587139e-20,-4.288283676810402774e-20,-4.370750670595218409e-20,-4.453217664380034044e-20,-4.535684658164849678e-20,-4.618151651949665313e-20,-4.700618645734480948e-20,-4.783085639519296582e-20,-4.865552633304112217e-20,-4.948019627088927852e-20,-5.030486620873743487e-20,-5.112953614658559121e-20,-5.195420608443374756e-20 +0.000000000000000000e+00,3.955009641678012824e-10,7.910019283356025649e-10,1.186502892503403847e-09,1.582003856671205130e-09,1.977504820839006205e-09,2.373005785006807281e-09,2.768506749174608357e-09,3.164007713342409432e-09,3.559508677510210508e-09,3.955009641678011584e-09,4.350510605845812659e-09,4.746011570013613735e-09,5.141512534181414811e-09,5.537013498349215886e-09,5.932514462517016962e-09,6.328015426684818037e-09,6.723516390852619113e-09,7.119017355020420189e-09,7.514518319188221264e-09,7.910019283356021513e-09,8.305520247523821761e-09,8.701021211691622010e-09,9.096522175859422258e-09,9.492023140027222507e-09,9.887524104195022755e-09,1.028302506836282300e-08,1.067852603253062325e-08,1.107402699669842350e-08,1.146952796086622375e-08,1.186502892503402400e-08,1.226052988920182425e-08,1.265603085336962449e-08,1.305153181753742474e-08,1.344703278170522499e-08,1.384253374587302524e-08,1.423803471004082549e-08,1.463353567420862574e-08,1.502903663837642599e-08,1.542453760254422789e-08,1.582003856671202979e-08,1.621553953087983169e-08,1.661104049504763360e-08,1.700654145921543550e-08,1.740204242338323740e-08,1.779754338755103930e-08,1.819304435171884121e-08,1.858854531588664311e-08,1.898404628005444501e-08,1.937954724422224692e-08,1.977504820839004882e-08,2.017054917255785072e-08,2.056605013672565262e-08,2.096155110089345453e-08,2.135705206506125643e-08,2.175255302922905833e-08,2.214805399339686024e-08,2.254355495756466214e-08,2.293905592173246404e-08,2.333455688590026594e-08,2.373005785006806785e-08,2.412555881423586975e-08,2.452105977840367165e-08,2.491656074257147356e-08 +0.000000000000000000e+00,9.389713508472770138e-23,1.877942701694554028e-22,2.816914052541830924e-22,3.755885403389107585e-22,4.694856754236384716e-22,5.633828105083661848e-22,6.572799455930938979e-22,7.511770806778216110e-22,8.450742157625493242e-22,9.389713508472769433e-22,1.032868485932004562e-21,1.126765621016732181e-21,1.220662756101459801e-21,1.314559891186187420e-21,1.408457026270915039e-21,1.502354161355642658e-21,1.596251296440370277e-21,1.690148431525097896e-21,1.784045566609825515e-21,1.877942701694553134e-21,1.971839836779280753e-21,2.065736971864008372e-21,2.159634106948735992e-21,2.253531242033463611e-21,2.347428377118191230e-21,2.441325512202918849e-21,2.535222647287646468e-21,2.629119782372374087e-21,2.723016917457101706e-21,2.816914052541829325e-21,2.910811187626556944e-21,3.004708322711284563e-21,3.098605457796012182e-21,3.192502592880739802e-21,3.286399727965467421e-21,3.380296863050195040e-21,3.474193998134922659e-21,3.568091133219650278e-21,3.661988268304377897e-21,3.755885403389105516e-21,3.849782538473833135e-21,3.943679673558560754e-21,4.037576808643288373e-21,4.131473943728015993e-21,4.225371078812743612e-21,4.319268213897471231e-21,4.413165348982198850e-21,4.507062484066926469e-21,4.600959619151654088e-21,4.694856754236381707e-21,4.788753889321109326e-21,4.882651024405836945e-21,4.976548159490564564e-21,5.070445294575292183e-21,5.164342429660019803e-21,5.258239564744747422e-21,5.352136699829475041e-21,5.446033834914202660e-21,5.539930969998930279e-21,5.633828105083657898e-21,5.727725240168385517e-21,5.821622375253113136e-21,5.915519510337840755e-21 +0.000000000000000000e+00,6.802479918674678240e-24,1.360495983734935648e-23,2.040743975602403619e-23,2.720991967469871884e-23,3.401239959337340149e-23,4.081487951204808414e-23,4.761735943072276679e-23,5.441983934939744943e-23,6.122231926807212620e-23,6.802479918674680298e-23,7.482727910542147975e-23,8.162975902409615652e-23,8.843223894277083329e-23,9.523471886144551006e-23,1.020371987801201868e-22,1.088396786987948754e-22,1.156421586174695639e-22,1.224446385361442524e-22,1.292471184548189409e-22,1.360495983734936295e-22,1.428520782921683180e-22,1.496545582108430065e-22,1.564570381295176950e-22,1.632595180481923836e-22,1.700619979668670721e-22,1.768644778855417606e-22,1.836669578042164491e-22,1.904694377228911377e-22,1.972719176415658262e-22,2.040743975602405147e-22,2.108768774789152032e-22,2.176793573975898918e-22,2.244818373162645568e-22,2.312843172349392218e-22,2.380867971536138868e-22,2.448892770722885518e-22,2.516917569909632169e-22,2.584942369096378819e-22,2.652967168283125469e-22,2.720991967469872119e-22,2.789016766656618769e-22,2.857041565843365419e-22,2.925066365030112070e-22,2.993091164216858720e-22,3.061115963403605370e-22,3.129140762590352020e-22,3.197165561777098670e-22,3.265190360963845320e-22,3.333215160150591970e-22,3.401239959337338621e-22,3.469264758524085271e-22,3.537289557710831921e-22,3.605314356897578571e-22,3.673339156084325221e-22,3.741363955271071871e-22,3.809388754457818522e-22,3.877413553644565172e-22,3.945438352831311822e-22,4.013463152018058472e-22,4.081487951204805122e-22,4.149512750391551772e-22,4.217537549578298423e-22,4.285562348765045073e-22 +0.000000000000000000e+00,3.955009641691895500e-10,7.910019283383791000e-10,1.186502892507568702e-09,1.582003856676758407e-09,1.977504820845947905e-09,2.373005785015137403e-09,2.768506749184326902e-09,3.164007713353516400e-09,3.559508677522705898e-09,3.955009641691895810e-09,4.350510605861085722e-09,4.746011570030275634e-09,5.141512534199465546e-09,5.537013498368655458e-09,5.932514462537845370e-09,6.328015426707035282e-09,6.723516390876225193e-09,7.119017355045415105e-09,7.514518319214605017e-09,7.910019283383794929e-09,8.305520247552984841e-09,8.701021211722174753e-09,9.096522175891364665e-09,9.492023140060554577e-09,9.887524104229744489e-09,1.028302506839893440e-08,1.067852603256812431e-08,1.107402699673731422e-08,1.146952796090650414e-08,1.186502892507569405e-08,1.226052988924488396e-08,1.265603085341407387e-08,1.305153181758326378e-08,1.344703278175245370e-08,1.384253374592164361e-08,1.423803471009083352e-08,1.463353567426002343e-08,1.502903663842921334e-08,1.542453760259840491e-08,1.582003856676759648e-08,1.621553953093678804e-08,1.661104049510597961e-08,1.700654145927517117e-08,1.740204242344436274e-08,1.779754338761355431e-08,1.819304435178274587e-08,1.858854531595193744e-08,1.898404628012112901e-08,1.937954724429032057e-08,1.977504820845951214e-08,2.017054917262870370e-08,2.056605013679789527e-08,2.096155110096708684e-08,2.135705206513627840e-08,2.175255302930546997e-08,2.214805399347466154e-08,2.254355495764385310e-08,2.293905592181304467e-08,2.333455688598223623e-08,2.373005785015142780e-08,2.412555881432061937e-08,2.452105977848981093e-08,2.491656074265900250e-08 +0.000000000000000000e+00,-1.319576859254863518e-21,-2.639153718509727035e-21,-3.958730577764590741e-21,-5.278307437019454823e-21,-6.597884296274318905e-21,-7.917461155529182987e-21,-9.237038014784046317e-21,-1.055661487403890965e-20,-1.187619173329377298e-20,-1.319576859254863631e-20,-1.451534545180349964e-20,-1.583492231105836296e-20,-1.715449917031322629e-20,-1.847407602956808962e-20,-1.979365288882295295e-20,-2.111322974807781628e-20,-2.243280660733267961e-20,-2.375238346658754294e-20,-2.507196032584240627e-20,-2.639153718509726960e-20,-2.771111404435213594e-20,-2.903069090360700529e-20,-3.035026776286187464e-20,-3.166984462211674399e-20,-3.298942148137161333e-20,-3.430899834062648268e-20,-3.562857519988135203e-20,-3.694815205913622138e-20,-3.826772891839109073e-20,-3.958730577764596007e-20,-4.090688263690082942e-20,-4.222645949615569877e-20,-4.354603635541056812e-20,-4.486561321466543747e-20,-4.618519007392030682e-20,-4.750476693317517616e-20,-4.882434379243004551e-20,-5.014392065168491486e-20,-5.146349751093978421e-20,-5.278307437019465356e-20,-5.410265122944952290e-20,-5.542222808870439225e-20,-5.674180494795926160e-20,-5.806138180721413095e-20,-5.938095866646900030e-20,-6.070053552572386965e-20,-6.202011238497873899e-20,-6.333968924423360834e-20,-6.465926610348847769e-20,-6.597884296274334704e-20,-6.729841982199821639e-20,-6.861799668125308573e-20,-6.993757354050795508e-20,-7.125715039976282443e-20,-7.257672725901769378e-20,-7.389630411827256313e-20,-7.521588097752743248e-20,-7.653545783678230182e-20,-7.785503469603717117e-20,-7.917461155529204052e-20,-8.049418841454690987e-20,-8.181376527380177922e-20,-8.313334213305664856e-20 +0.000000000000000000e+00,-1.138565412945567465e-21,-2.277130825891134929e-21,-3.415696238836702206e-21,-4.554261651782269106e-21,-5.692827064727836006e-21,-6.831392477673402907e-21,-7.969957890618969054e-21,-9.108523303564535202e-21,-1.024708871651010135e-20,-1.138565412945566750e-20,-1.252421954240123365e-20,-1.366278495534679979e-20,-1.480135036829236594e-20,-1.593991578123793209e-20,-1.707848119418349824e-20,-1.821704660712906439e-20,-1.935561202007463053e-20,-2.049417743302019668e-20,-2.163274284596576283e-20,-2.277130825891132898e-20,-2.390987367185689513e-20,-2.504843908480246127e-20,-2.618700449774802742e-20,-2.732556991069359357e-20,-2.846413532363915671e-20,-2.960270073658471985e-20,-3.074126614953028299e-20,-3.187983156247584613e-20,-3.301839697542140926e-20,-3.415696238836697240e-20,-3.529552780131253554e-20,-3.643409321425809868e-20,-3.757265862720366182e-20,-3.871122404014922496e-20,-3.984978945309478810e-20,-4.098835486604035124e-20,-4.212692027898591437e-20,-4.326548569193147751e-20,-4.440405110487704065e-20,-4.554261651782260379e-20,-4.668118193076816693e-20,-4.781974734371373007e-20,-4.895831275665929321e-20,-5.009687816960485635e-20,-5.123544358255041948e-20,-5.237400899549598262e-20,-5.351257440844154576e-20,-5.465113982138710288e-20,-5.578970523433266000e-20,-5.692827064727821712e-20,-5.806683606022377424e-20,-5.920540147316933136e-20,-6.034396688611488848e-20,-6.148253229906044560e-20,-6.262109771200600272e-20,-6.375966312495155984e-20,-6.489822853789711696e-20,-6.603679395084267408e-20,-6.717535936378823120e-20,-6.831392477673378832e-20,-6.945249018967934544e-20,-7.059105560262490256e-20,-7.172962101557045968e-20 +0.000000000000000000e+00,5.183002024950725693e-10,1.036600404990145139e-09,1.554900607485217604e-09,2.073200809980289864e-09,2.591501012475362123e-09,3.109801214970434382e-09,3.628101417465506641e-09,4.146401619960578900e-09,4.664701822455650745e-09,5.183002024950722591e-09,5.701302227445794436e-09,6.219602429940866282e-09,6.737902632435938127e-09,7.256202834931009973e-09,7.774503037426081818e-09,8.292803239921152837e-09,8.811103442416223855e-09,9.329403644911294873e-09,9.847703847406365892e-09,1.036600404990143691e-08,1.088430425239650793e-08,1.140260445489157895e-08,1.192090465738664997e-08,1.243920485988172098e-08,1.295750506237679200e-08,1.347580526487186302e-08,1.399410546736693404e-08,1.451240566986200506e-08,1.503070587235707442e-08,1.554900607485214378e-08,1.606730627734721315e-08,1.658560647984228251e-08,1.710390668233735188e-08,1.762220688483242124e-08,1.814050708732749060e-08,1.865880728982255997e-08,1.917710749231762933e-08,1.969540769481269870e-08,2.021370789730776806e-08,2.073200809980283742e-08,2.125030830229790679e-08,2.176860850479297615e-08,2.228690870728804552e-08,2.280520890978311488e-08,2.332350911227818424e-08,2.384180931477325361e-08,2.436010951726832297e-08,2.487840971976339234e-08,2.539670992225846170e-08,2.591501012475353106e-08,2.643331032724860043e-08,2.695161052974366979e-08,2.746991073223873916e-08,2.798821093473380852e-08,2.850651113722887788e-08,2.902481133972394725e-08,2.954311154221901661e-08,3.006141174471408267e-08,3.057971194720914872e-08,3.109801214970421478e-08,3.161631235219928083e-08,3.213461255469434689e-08,3.265291275718941294e-08 +0.000000000000000000e+00,3.120616838433539056e-22,6.241233676867078112e-22,9.361850515300616228e-22,1.248246735373415434e-21,1.560308419216769246e-21,1.872370103060123246e-21,2.184431786903477245e-21,2.496493470746831245e-21,2.808555154590185245e-21,3.120616838433539244e-21,3.432678522276893620e-21,3.744740206120247996e-21,4.056801889963602372e-21,4.368863573806956747e-21,4.680925257650311123e-21,4.992986941493665499e-21,5.305048625337019875e-21,5.617110309180374251e-21,5.929171993023728626e-21,6.241233676867083002e-21,6.553295360710437378e-21,6.865357044553791754e-21,7.177418728397146130e-21,7.489480412240500505e-21,7.801542096083854881e-21,8.113603779927209257e-21,8.425665463770563633e-21,8.737727147613918009e-21,9.049788831457272384e-21,9.361850515300626760e-21,9.673912199143981136e-21,9.985973882987335512e-21,1.029803556683068989e-20,1.061009725067404426e-20,1.092215893451739864e-20,1.123422061836075302e-20,1.154628230220410739e-20,1.185834398604746177e-20,1.217040566989081614e-20,1.248246735373417052e-20,1.279452903757752489e-20,1.310659072142087927e-20,1.341865240526423365e-20,1.373071408910758652e-20,1.404277577295094089e-20,1.435483745679429527e-20,1.466689914063764964e-20,1.497896082448100402e-20,1.529102250832435840e-20,1.560308419216771277e-20,1.591514587601106715e-20,1.622720755985442152e-20,1.653926924369777590e-20,1.685133092754113027e-20,1.716339261138448465e-20,1.747545429522783903e-20,1.778751597907119340e-20,1.809957766291454778e-20,1.841163934675790215e-20,1.872370103060125653e-20,1.903576271444461091e-20,1.934782439828796528e-20,1.965988608213131966e-20 +0.000000000000000000e+00,1.961474053841928614e-22,3.922948107683857228e-22,5.884422161525785607e-22,7.845896215367713515e-22,9.807370269209641424e-22,1.176884432305156933e-21,1.373031837689349724e-21,1.569179243073542515e-21,1.765326648457735118e-21,1.961474053841927909e-21,2.157621459226120699e-21,2.353768864610313490e-21,2.549916269994506281e-21,2.746063675378699072e-21,2.942211080762891863e-21,3.138358486147084654e-21,3.334505891531277445e-21,3.530653296915470235e-21,3.726800702299663026e-21,3.922948107683855817e-21,4.119095513068048608e-21,4.315242918452241399e-21,4.511390323836434190e-21,4.707537729220626981e-21,4.903685134604819771e-21,5.099832539989012562e-21,5.295979945373205353e-21,5.492127350757398144e-21,5.688274756141590935e-21,5.884422161525783726e-21,6.080569566909976517e-21,6.276716972294169307e-21,6.472864377678362098e-21,6.669011783062554889e-21,6.865159188446747680e-21,7.061306593830940471e-21,7.257453999215133262e-21,7.453601404599326053e-21,7.649748809983518843e-21,7.845896215367711634e-21,8.042043620751904425e-21,8.238191026136097216e-21,8.434338431520290007e-21,8.630485836904482798e-21,8.826633242288675589e-21,9.022780647672868379e-21,9.218928053057061170e-21,9.415075458441253961e-21,9.611222863825446752e-21,9.807370269209639543e-21,1.000351767459383233e-20,1.019966507997802512e-20,1.039581248536221792e-20,1.059195989074641071e-20,1.078810729613060350e-20,1.098425470151479629e-20,1.118040210689898908e-20,1.137654951228318187e-20,1.157269691766737466e-20,1.176884432305156745e-20,1.196499172843576024e-20,1.216113913381995303e-20,1.235728653920414582e-20 +0.000000000000000000e+00,5.183002024971027807e-10,1.036600404994205561e-09,1.554900607491308342e-09,2.073200809988411123e-09,2.591501012485513697e-09,3.109801214982616271e-09,3.628101417479718845e-09,4.146401619976821418e-09,4.664701822473923992e-09,5.183002024971026566e-09,5.701302227468129140e-09,6.219602429965231714e-09,6.737902632462334288e-09,7.256202834959436862e-09,7.774503037456540263e-09,8.292803239953644491e-09,8.811103442450748720e-09,9.329403644947852948e-09,9.847703847444957176e-09,1.036600404994206140e-08,1.088430425243916563e-08,1.140260445493626986e-08,1.192090465743337409e-08,1.243920485993047832e-08,1.295750506242758255e-08,1.347580526492468677e-08,1.399410546742179100e-08,1.451240566991889523e-08,1.503070587241599946e-08,1.554900607491310369e-08,1.606730627741020792e-08,1.658560647990731214e-08,1.710390668240441637e-08,1.762220688490152060e-08,1.814050708739862483e-08,1.865880728989572906e-08,1.917710749239283328e-08,1.969540769488993751e-08,2.021370789738704174e-08,2.073200809988414597e-08,2.125030830238125020e-08,2.176860850487835443e-08,2.228690870737545865e-08,2.280520890987256288e-08,2.332350911236966711e-08,2.384180931486677134e-08,2.436010951736387557e-08,2.487840971986097980e-08,2.539670992235808402e-08,2.591501012485518825e-08,2.643331032735229248e-08,2.695161052984939671e-08,2.746991073234650094e-08,2.798821093484360517e-08,2.850651113734070939e-08,2.902481133983781362e-08,2.954311154233491785e-08,3.006141174483201877e-08,3.057971194732912300e-08,3.109801214982622723e-08,3.161631235232333145e-08,3.213461255482043568e-08,3.265291275731753991e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.445214012644643339e-10,-2.890428025289286677e-10,-4.335642037933930016e-10,-5.780856050578573355e-10,-7.226070063223216693e-10,-8.671284075867860032e-10,-1.011649808851250337e-09,-1.156171210115714671e-09,-1.300692611380179005e-09,-1.445214012644643339e-09,-1.589735413909107673e-09,-1.734256815173572006e-09,-1.878778216438036133e-09,-2.023299617702500261e-09,-2.167821018966964388e-09,-2.312342420231428515e-09,-2.456863821495892642e-09,-2.601385222760356769e-09,-2.745906624024820896e-09,-2.890428025289285023e-09,-3.034949426553749150e-09,-3.179470827818213277e-09,-3.323992229082677404e-09,-3.468513630347141531e-09,-3.613035031611605658e-09,-3.757556432876069785e-09,-3.902077834140533912e-09,-4.046599235404998039e-09,-4.191120636669462167e-09,-4.335642037933926294e-09,-4.480163439198390421e-09,-4.624684840462854548e-09,-4.769206241727318675e-09,-4.913727642991782802e-09,-5.058249044256246929e-09,-5.202770445520711056e-09,-5.347291846785175183e-09,-5.491813248049639310e-09,-5.636334649314103437e-09,-5.780856050578567564e-09,-5.925377451843031691e-09,-6.069898853107495818e-09,-6.214420254371959946e-09,-6.358941655636424073e-09,-6.503463056900888200e-09,-6.647984458165352327e-09,-6.792505859429816454e-09,-6.937027260694280581e-09,-7.081548661958744708e-09,-7.226070063223208835e-09,-7.370591464487672962e-09,-7.515112865752137916e-09,-7.659634267016602871e-09,-7.804155668281067825e-09,-7.948677069545532779e-09,-8.093198470809997733e-09,-8.237719872074462688e-09,-8.382241273338927642e-09,-8.526762674603392596e-09,-8.671284075867857550e-09,-8.815805477132322505e-09,-8.960326878396787459e-09,-9.104848279661252413e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.648128197735863701e-11,-1.129625639547172740e-10,-1.694438459320759046e-10,-2.259251279094345222e-10,-2.824064098867931398e-10,-3.388876918641517575e-10,-3.953689738415103751e-10,-4.518502558188689927e-10,-5.083315377962275586e-10,-5.648128197735861763e-10,-6.212941017509447939e-10,-6.777753837283034115e-10,-7.342566657056620292e-10,-7.907379476830206468e-10,-8.472192296603792644e-10,-9.037005116377378820e-10,-9.601817936150964997e-10,-1.016663075592455117e-09,-1.073144357569813735e-09,-1.129625639547172353e-09,-1.186106921524530970e-09,-1.242588203501889588e-09,-1.299069485479248205e-09,-1.355550767456606823e-09,-1.412032049433965441e-09,-1.468513331411324058e-09,-1.524994613388682676e-09,-1.581475895366041294e-09,-1.637957177343399911e-09,-1.694438459320758529e-09,-1.750919741298117146e-09,-1.807401023275475764e-09,-1.863882305252834175e-09,-1.920363587230192586e-09,-1.976844869207550997e-09,-2.033326151184909407e-09,-2.089807433162267818e-09,-2.146288715139626229e-09,-2.202769997116984640e-09,-2.259251279094343051e-09,-2.315732561071701462e-09,-2.372213843049059872e-09,-2.428695125026418283e-09,-2.485176407003776694e-09,-2.541657688981135105e-09,-2.598138970958493516e-09,-2.654620252935851927e-09,-2.711101534913210337e-09,-2.767582816890568748e-09,-2.824064098867927159e-09,-2.880545380845285570e-09,-2.937026662822643981e-09,-2.993507944800002392e-09,-3.049989226777360802e-09,-3.106470508754719213e-09,-3.162951790732077624e-09,-3.219433072709436035e-09,-3.275914354686794446e-09,-3.332395636664152857e-09,-3.388876918641511267e-09,-3.445358200618869678e-09,-3.501839482596228089e-09,-3.558320764573586500e-09 +0.000000000000000000e+00,-5.424247167254287711e-11,-1.084849433450857542e-10,-1.627274150176286443e-10,-2.169698866901715343e-10,-2.712123583627144243e-10,-3.254548300352572885e-10,-3.796973017078001527e-10,-4.339397733803430169e-10,-4.881822450528858294e-10,-5.424247167254286419e-10,-5.966671883979714544e-10,-6.509096600705142669e-10,-7.051521317430570794e-10,-7.593946034155998918e-10,-8.136370750881427043e-10,-8.678795467606855168e-10,-9.221220184332283293e-10,-9.763644901057712452e-10,-1.030606961778314161e-09,-1.084849433450857077e-09,-1.139091905123399993e-09,-1.193334376795942909e-09,-1.247576848468485825e-09,-1.301819320141028741e-09,-1.356061791813571656e-09,-1.410304263486114572e-09,-1.464546735158657488e-09,-1.518789206831200404e-09,-1.573031678503743320e-09,-1.627274150176286236e-09,-1.681516621848829152e-09,-1.735759093521372068e-09,-1.790001565193914984e-09,-1.844244036866457899e-09,-1.898486508539000608e-09,-1.952728980211543318e-09,-2.006971451884086027e-09,-2.061213923556628736e-09,-2.115456395229171445e-09,-2.169698866901714154e-09,-2.223941338574256863e-09,-2.278183810246799572e-09,-2.332426281919342281e-09,-2.386668753591884990e-09,-2.440911225264427699e-09,-2.495153696936970409e-09,-2.549396168609513118e-09,-2.603638640282055827e-09,-2.657881111954598536e-09,-2.712123583627141245e-09,-2.766366055299683954e-09,-2.820608526972226663e-09,-2.874850998644769372e-09,-2.929093470317312081e-09,-2.983335941989854790e-09,-3.037578413662397499e-09,-3.091820885334940209e-09,-3.146063357007482918e-09,-3.200305828680025627e-09,-3.254548300352568336e-09,-3.308790772025111045e-09,-3.363033243697653754e-09,-3.417275715370196463e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.445214012644069999e-10,-2.890428025288139998e-10,-4.335642037932209997e-10,-5.780856050576279996e-10,-7.226070063220350512e-10,-8.671284075864421028e-10,-1.011649808850849154e-09,-1.156171210115256206e-09,-1.300692611379663258e-09,-1.445214012644070309e-09,-1.589735413908477361e-09,-1.734256815172884412e-09,-1.878778216437291671e-09,-2.023299617701698722e-09,-2.167821018966105774e-09,-2.312342420230512826e-09,-2.456863821494919877e-09,-2.601385222759326929e-09,-2.745906624023733981e-09,-2.890428025288141032e-09,-3.034949426552548084e-09,-3.179470827816955135e-09,-3.323992229081362187e-09,-3.468513630345769239e-09,-3.613035031610176290e-09,-3.757556432874583342e-09,-3.902077834138990393e-09,-4.046599235403397445e-09,-4.191120636667804497e-09,-4.335642037932211548e-09,-4.480163439196618600e-09,-4.624684840461025651e-09,-4.769206241725432703e-09,-4.913727642989839755e-09,-5.058249044254246806e-09,-5.202770445518653858e-09,-5.347291846783060909e-09,-5.491813248047467961e-09,-5.636334649311875013e-09,-5.780856050576282064e-09,-5.925377451840689116e-09,-6.069898853105096167e-09,-6.214420254369503219e-09,-6.358941655633910271e-09,-6.503463056898317322e-09,-6.647984458162724374e-09,-6.792505859427131426e-09,-6.937027260691538477e-09,-7.081548661955945529e-09,-7.226070063220352580e-09,-7.370591464484759632e-09,-7.515112865749166684e-09,-7.659634267013573735e-09,-7.804155668277980787e-09,-7.948677069542387838e-09,-8.093198470806794890e-09,-8.237719872071201942e-09,-8.382241273335608993e-09,-8.526762674600016045e-09,-8.671284075864423096e-09,-8.815805477128830148e-09,-8.960326878393237200e-09,-9.104848279657644251e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.648128197733266484e-11,-1.129625639546653297e-10,-1.694438459319979945e-10,-2.259251279093306593e-10,-2.824064098866633242e-10,-3.388876918639959890e-10,-3.953689738413286538e-10,-4.518502558186613187e-10,-5.083315377959939835e-10,-5.648128197733266484e-10,-6.212941017506593132e-10,-6.777753837279919780e-10,-7.342566657053246429e-10,-7.907379476826573077e-10,-8.472192296599899725e-10,-9.037005116373226374e-10,-9.601817936146554056e-10,-1.016663075591988174e-09,-1.073144357569320942e-09,-1.129625639546653710e-09,-1.186106921523986479e-09,-1.242588203501319247e-09,-1.299069485478652015e-09,-1.355550767455984783e-09,-1.412032049433317551e-09,-1.468513331410650320e-09,-1.524994613387983088e-09,-1.581475895365315856e-09,-1.637957177342648624e-09,-1.694438459319981393e-09,-1.750919741297314161e-09,-1.807401023274646929e-09,-1.863882305251979697e-09,-1.920363587229312466e-09,-1.976844869206645234e-09,-2.033326151183978002e-09,-2.089807433161310770e-09,-2.146288715138643539e-09,-2.202769997115976307e-09,-2.259251279093309075e-09,-2.315732561070641843e-09,-2.372213843047974611e-09,-2.428695125025307380e-09,-2.485176407002640148e-09,-2.541657688979972916e-09,-2.598138970957305684e-09,-2.654620252934638453e-09,-2.711101534911971221e-09,-2.767582816889303989e-09,-2.824064098866636757e-09,-2.880545380843969526e-09,-2.937026662821302294e-09,-2.993507944798635062e-09,-3.049989226775967830e-09,-3.106470508753300598e-09,-3.162951790730633367e-09,-3.219433072707966135e-09,-3.275914354685298903e-09,-3.332395636662631671e-09,-3.388876918639964440e-09,-3.445358200617297208e-09,-3.501839482594629976e-09,-3.558320764571962744e-09 +0.000000000000000000e+00,-5.424247167246158077e-11,-1.084849433449231615e-10,-1.627274150173847294e-10,-2.169698866898462972e-10,-2.712123583623078651e-10,-3.254548300347694588e-10,-3.796973017072310525e-10,-4.339397733796926462e-10,-4.881822450521541881e-10,-5.424247167246157301e-10,-5.966671883970772721e-10,-6.509096600695388141e-10,-7.051521317420003561e-10,-7.593946034144618981e-10,-8.136370750869234401e-10,-8.678795467593849821e-10,-9.221220184318465241e-10,-9.763644901043079627e-10,-1.030606961776769401e-09,-1.084849433449230840e-09,-1.139091905121692278e-09,-1.193334376794153717e-09,-1.247576848466615156e-09,-1.301819320139076594e-09,-1.356061791811538033e-09,-1.410304263483999471e-09,-1.464546735156460910e-09,-1.518789206828922349e-09,-1.573031678501383787e-09,-1.627274150173845226e-09,-1.681516621846306664e-09,-1.735759093518768103e-09,-1.790001565191229542e-09,-1.844244036863690980e-09,-1.898486508536152626e-09,-1.952728980208614271e-09,-2.006971451881075916e-09,-2.061213923553537562e-09,-2.115456395225999207e-09,-2.169698866898460853e-09,-2.223941338570922498e-09,-2.278183810243384143e-09,-2.332426281915845789e-09,-2.386668753588307434e-09,-2.440911225260769080e-09,-2.495153696933230725e-09,-2.549396168605692370e-09,-2.603638640278154016e-09,-2.657881111950615661e-09,-2.712123583623077307e-09,-2.766366055295538952e-09,-2.820608526968000597e-09,-2.874850998640462243e-09,-2.929093470312923888e-09,-2.983335941985385533e-09,-3.037578413657847179e-09,-3.091820885330308824e-09,-3.146063357002770470e-09,-3.200305828675232115e-09,-3.254548300347693760e-09,-3.308790772020155406e-09,-3.363033243692617051e-09,-3.417275715365078697e-09 +0.000000000000000000e+00,-3.661149537253766504e-10,-7.322299074507533008e-10,-1.098344861176129951e-09,-1.464459814901506602e-09,-1.830574768626883252e-09,-2.196689722352259902e-09,-2.562804676077636553e-09,-2.928919629803013203e-09,-3.295034583528389853e-09,-3.661149537253766504e-09,-4.027264490979143154e-09,-4.393379444704519805e-09,-4.759494398429896455e-09,-5.125609352155273105e-09,-5.491724305880649756e-09,-5.857839259606026406e-09,-6.223954213331403056e-09,-6.590069167056779707e-09,-6.956184120782156357e-09,-7.322299074507533008e-09,-7.688414028232910485e-09,-8.054528981958287963e-09,-8.420643935683665440e-09,-8.786758889409042918e-09,-9.152873843134420395e-09,-9.518988796859797873e-09,-9.885103750585175351e-09,-1.025121870431055283e-08,-1.061733365803593031e-08,-1.098344861176130778e-08,-1.134956356548668526e-08,-1.171567851921206274e-08,-1.208179347293744022e-08,-1.244790842666281769e-08,-1.281402338038819517e-08,-1.318013833411357265e-08,-1.354625328783895013e-08,-1.391236824156432760e-08,-1.427848319528970508e-08,-1.464459814901508256e-08,-1.501071310274046004e-08,-1.537682805646583751e-08,-1.574294301019121499e-08,-1.610905796391659247e-08,-1.647517291764196995e-08,-1.684128787136734742e-08,-1.720740282509272490e-08,-1.757351777881810238e-08,-1.793963273254347986e-08,-1.830574768626885733e-08,-1.867186263999423481e-08,-1.903797759371961229e-08,-1.940409254744498977e-08,-1.977020750117036724e-08,-2.013632245489574472e-08,-2.050243740862112220e-08,-2.086855236234649968e-08,-2.123466731607187715e-08,-2.160078226979725463e-08,-2.196689722352263211e-08,-2.233301217724800959e-08,-2.269912713097338707e-08,-2.306524208469876454e-08 +0.000000000000000000e+00,-2.467514285817806023e-10,-4.935028571635612046e-10,-7.402542857453418068e-10,-9.870057143271224091e-10,-1.233757142908903011e-09,-1.480508571490683614e-09,-1.727260000072464216e-09,-1.974011428654244818e-09,-2.220762857236025627e-09,-2.467514285817806436e-09,-2.714265714399587245e-09,-2.961017142981368055e-09,-3.207768571563148864e-09,-3.454520000144929673e-09,-3.701271428726710482e-09,-3.948022857308491291e-09,-4.194774285890272100e-09,-4.441525714472052909e-09,-4.688277143053833718e-09,-4.935028571635614527e-09,-5.181780000217395336e-09,-5.428531428799176145e-09,-5.675282857380956954e-09,-5.922034285962737764e-09,-6.168785714544518573e-09,-6.415537143126299382e-09,-6.662288571708080191e-09,-6.909040000289861000e-09,-7.155791428871641809e-09,-7.402542857453422618e-09,-7.649294286035203427e-09,-7.896045714616984236e-09,-8.142797143198765045e-09,-8.389548571780545854e-09,-8.636300000362326663e-09,-8.883051428944107472e-09,-9.129802857525888282e-09,-9.376554286107669091e-09,-9.623305714689449900e-09,-9.870057143271230709e-09,-1.011680857185301152e-08,-1.036356000043479233e-08,-1.061031142901657314e-08,-1.085706285759835395e-08,-1.110381428618013475e-08,-1.135056571476191556e-08,-1.159731714334369637e-08,-1.184406857192547718e-08,-1.209082000050725799e-08,-1.233757142908903880e-08,-1.258432285767081961e-08,-1.283107428625260042e-08,-1.307782571483438123e-08,-1.332457714341616204e-08,-1.357132857199794284e-08,-1.381808000057972365e-08,-1.406483142916150446e-08,-1.431158285774328527e-08,-1.455833428632506608e-08,-1.480508571490684689e-08,-1.505183714348862770e-08,-1.529858857207040685e-08,-1.554534000065218601e-08 +0.000000000000000000e+00,-1.502263350295260490e-10,-3.004526700590520979e-10,-4.506790050885781728e-10,-6.009053401181042993e-10,-7.511316751476304258e-10,-9.013580101771565523e-10,-1.051584345206682679e-09,-1.201810680236208805e-09,-1.352037015265734932e-09,-1.502263350295261058e-09,-1.652489685324787185e-09,-1.802716020354313311e-09,-1.952942355383839438e-09,-2.103168690413365358e-09,-2.253395025442891277e-09,-2.403621360472417197e-09,-2.553847695501943117e-09,-2.704074030531469037e-09,-2.854300365560994956e-09,-3.004526700590520876e-09,-3.154753035620046796e-09,-3.304979370649572715e-09,-3.455205705679098635e-09,-3.605432040708624555e-09,-3.755658375738150061e-09,-3.905884710767675567e-09,-4.056111045797201073e-09,-4.206337380826726579e-09,-4.356563715856252086e-09,-4.506790050885777592e-09,-4.657016385915303098e-09,-4.807242720944828604e-09,-4.957469055974354110e-09,-5.107695391003879616e-09,-5.257921726033405122e-09,-5.408148061062930628e-09,-5.558374396092456135e-09,-5.708600731121981641e-09,-5.858827066151507147e-09,-6.009053401181032653e-09,-6.159279736210558159e-09,-6.309506071240083665e-09,-6.459732406269609171e-09,-6.609958741299134678e-09,-6.760185076328660184e-09,-6.910411411358185690e-09,-7.060637746387711196e-09,-7.210864081417236702e-09,-7.361090416446762208e-09,-7.511316751476286887e-09,-7.661543086505811566e-09,-7.811769421535336245e-09,-7.961995756564860924e-09,-8.112222091594385603e-09,-8.262448426623910282e-09,-8.412674761653434961e-09,-8.562901096682959640e-09,-8.713127431712484319e-09,-8.863353766742008998e-09,-9.013580101771533677e-09,-9.163806436801058356e-09,-9.314032771830583035e-09,-9.464259106860107713e-09 +0.000000000000000000e+00,-3.661149537251893457e-10,-7.322299074503786913e-10,-1.098344861175568089e-09,-1.464459814900757589e-09,-1.830574768625947090e-09,-2.196689722351136591e-09,-2.562804676076326299e-09,-2.928919629801516006e-09,-3.295034583526705714e-09,-3.661149537251895421e-09,-4.027264490977085129e-09,-4.393379444702274836e-09,-4.759494398427464544e-09,-5.125609352152654252e-09,-5.491724305877843959e-09,-5.857839259603033667e-09,-6.223954213328223374e-09,-6.590069167053413082e-09,-6.956184120778602789e-09,-7.322299074503792497e-09,-7.688414028228983032e-09,-8.054528981954173566e-09,-8.420643935679364101e-09,-8.786758889404554636e-09,-9.152873843129745171e-09,-9.518988796854935705e-09,-9.885103750580126240e-09,-1.025121870430531677e-08,-1.061733365803050731e-08,-1.098344861175569784e-08,-1.134956356548088838e-08,-1.171567851920607891e-08,-1.208179347293126945e-08,-1.244790842665645998e-08,-1.281402338038165052e-08,-1.318013833410684105e-08,-1.354625328783203159e-08,-1.391236824155722212e-08,-1.427848319528241266e-08,-1.464459814900760319e-08,-1.501071310273279373e-08,-1.537682805645798592e-08,-1.574294301018317810e-08,-1.610905796390837029e-08,-1.647517291763356248e-08,-1.684128787135875467e-08,-1.720740282508394686e-08,-1.757351777880913905e-08,-1.793963273253433124e-08,-1.830574768625952343e-08,-1.867186263998471562e-08,-1.903797759370990781e-08,-1.940409254743510000e-08,-1.977020750116029218e-08,-2.013632245488548437e-08,-2.050243740861067656e-08,-2.086855236233586875e-08,-2.123466731606106094e-08,-2.160078226978625313e-08,-2.196689722351144532e-08,-2.233301217723663751e-08,-2.269912713096182970e-08,-2.306524208468702189e-08 +0.000000000000000000e+00,-2.467514285816703805e-10,-4.935028571633407609e-10,-7.402542857450111414e-10,-9.870057143266815219e-10,-1.233757142908351902e-09,-1.480508571490022283e-09,-1.727260000071692663e-09,-1.974011428653363044e-09,-2.220762857235033424e-09,-2.467514285816703805e-09,-2.714265714398374185e-09,-2.961017142980044566e-09,-3.207768571561714946e-09,-3.454520000143385327e-09,-3.701271428725055707e-09,-3.948022857306726087e-09,-4.194774285888396054e-09,-4.441525714470066021e-09,-4.688277143051735988e-09,-4.935028571633405955e-09,-5.181780000215075922e-09,-5.428531428796745889e-09,-5.675282857378415856e-09,-5.922034285960085822e-09,-6.168785714541755789e-09,-6.415537143123425756e-09,-6.662288571705095723e-09,-6.909040000286765690e-09,-7.155791428868435657e-09,-7.402542857450105624e-09,-7.649294286031775591e-09,-7.896045714613445557e-09,-8.142797143195115524e-09,-8.389548571776785491e-09,-8.636300000358455458e-09,-8.883051428940125425e-09,-9.129802857521795392e-09,-9.376554286103465359e-09,-9.623305714685135326e-09,-9.870057143266805292e-09,-1.011680857184847526e-08,-1.036356000043014523e-08,-1.061031142901181519e-08,-1.085706285759348516e-08,-1.110381428617515513e-08,-1.135056571475682509e-08,-1.159731714333849506e-08,-1.184406857192016503e-08,-1.209082000050183499e-08,-1.233757142908350496e-08,-1.258432285766517493e-08,-1.283107428624684489e-08,-1.307782571482851486e-08,-1.332457714341018483e-08,-1.357132857199185480e-08,-1.381808000057352476e-08,-1.406483142915519473e-08,-1.431158285773686470e-08,-1.455833428631853466e-08,-1.480508571490020463e-08,-1.505183714348187460e-08,-1.529858857206354456e-08,-1.554534000064521453e-08 +0.000000000000000000e+00,-1.502263350292718977e-10,-3.004526700585437955e-10,-4.506790050878157190e-10,-6.009053401170876943e-10,-7.511316751463596696e-10,-9.013580101756316448e-10,-1.051584345204903620e-09,-1.201810680234175595e-09,-1.352037015263447571e-09,-1.502263350292719546e-09,-1.652489685321991521e-09,-1.802716020351263496e-09,-1.952942355380535265e-09,-2.103168690409806827e-09,-2.253395025439078388e-09,-2.403621360468349950e-09,-2.553847695497621512e-09,-2.704074030526893073e-09,-2.854300365556164635e-09,-3.004526700585436197e-09,-3.154753035614707758e-09,-3.304979370643979320e-09,-3.455205705673250882e-09,-3.605432040702522443e-09,-3.755658375731794005e-09,-3.905884710761065567e-09,-4.056111045790337129e-09,-4.206337380819608690e-09,-4.356563715848880252e-09,-4.506790050878151814e-09,-4.657016385907423375e-09,-4.807242720936694937e-09,-4.957469055965966499e-09,-5.107695390995238060e-09,-5.257921726024509622e-09,-5.408148061053781184e-09,-5.558374396083052745e-09,-5.708600731112324307e-09,-5.858827066141595869e-09,-6.009053401170867430e-09,-6.159279736200138992e-09,-6.309506071229410554e-09,-6.459732406258682115e-09,-6.609958741287953677e-09,-6.760185076317225239e-09,-6.910411411346496801e-09,-7.060637746375768362e-09,-7.210864081405039924e-09,-7.361090416434311486e-09,-7.511316751463583047e-09,-7.661543086492854609e-09,-7.811769421522126171e-09,-7.961995756551397732e-09,-8.112222091580669294e-09,-8.262448426609940856e-09,-8.412674761639212417e-09,-8.562901096668483979e-09,-8.713127431697755541e-09,-8.863353766727027102e-09,-9.013580101756298664e-09,-9.163806436785570226e-09,-9.314032771814841787e-09,-9.464259106844113349e-09 +0.000000000000000000e+00,-6.309454368086238027e-10,-1.261890873617247605e-09,-1.892836310425871201e-09,-2.523781747234494797e-09,-3.154727184043118393e-09,-3.785672620851742402e-09,-4.416618057660366412e-09,-5.047563494468990421e-09,-5.678508931277614431e-09,-6.309454368086238440e-09,-6.940399804894862450e-09,-7.571345241703486459e-09,-8.202290678512110469e-09,-8.833236115320734478e-09,-9.464181552129358487e-09,-1.009512698893798250e-08,-1.072607242574660651e-08,-1.135701786255523052e-08,-1.198796329936385453e-08,-1.261890873617247853e-08,-1.324985417298110254e-08,-1.388079960978972655e-08,-1.451174504659835056e-08,-1.514269048340697623e-08,-1.577363592021560024e-08,-1.640458135702422425e-08,-1.703552679383284826e-08,-1.766647223064147226e-08,-1.829741766745009627e-08,-1.892836310425872028e-08,-1.955930854106734429e-08,-2.019025397787596830e-08,-2.082119941468459231e-08,-2.145214485149321632e-08,-2.208309028830184033e-08,-2.271403572511046434e-08,-2.334498116191908835e-08,-2.397592659872771236e-08,-2.460687203553633637e-08,-2.523781747234496038e-08,-2.586876290915358439e-08,-2.649970834596220840e-08,-2.713065378277083241e-08,-2.776159921957945642e-08,-2.839254465638808043e-08,-2.902349009319670443e-08,-2.965443553000532844e-08,-3.028538096681395245e-08,-3.091632640362257646e-08,-3.154727184043120047e-08,-3.217821727723982448e-08,-3.280916271404844849e-08,-3.344010815085707250e-08,-3.407105358766569651e-08,-3.470199902447432052e-08,-3.533294446128294453e-08,-3.596388989809156854e-08,-3.659483533490019255e-08,-3.722578077170881656e-08,-3.785672620851744057e-08,-3.848767164532606458e-08,-3.911861708213468859e-08,-3.974956251894331260e-08 +0.000000000000000000e+00,-4.947615692844731774e-10,-9.895231385689463548e-10,-1.484284707853419429e-09,-1.979046277137892296e-09,-2.473807846422365163e-09,-2.968569415706838031e-09,-3.463330984991310898e-09,-3.958092554275783765e-09,-4.452854123560256219e-09,-4.947615692844728672e-09,-5.442377262129201126e-09,-5.937138831413673580e-09,-6.431900400698146033e-09,-6.926661969982618487e-09,-7.421423539267090940e-09,-7.916185108551562567e-09,-8.410946677836034193e-09,-8.905708247120505820e-09,-9.400469816404977446e-09,-9.895231385689449073e-09,-1.038999295497392070e-08,-1.088475452425839233e-08,-1.137951609354286395e-08,-1.187427766282733558e-08,-1.236903923211180720e-08,-1.286380080139627883e-08,-1.335856237068075046e-08,-1.385332393996522208e-08,-1.434808550924969371e-08,-1.484284707853416534e-08,-1.533760864781863531e-08,-1.583237021710310528e-08,-1.632713178638757525e-08,-1.682189335567204523e-08,-1.731665492495651520e-08,-1.781141649424098517e-08,-1.830617806352545514e-08,-1.880093963280992511e-08,-1.929570120209439509e-08,-1.979046277137886506e-08,-2.028522434066333503e-08,-2.077998590994780500e-08,-2.127474747923227497e-08,-2.176950904851674495e-08,-2.226427061780121492e-08,-2.275903218708568489e-08,-2.325379375637015486e-08,-2.374855532565462483e-08,-2.424331689493909481e-08,-2.473807846422356478e-08,-2.523284003350803475e-08,-2.572760160279250472e-08,-2.622236317207697470e-08,-2.671712474136144467e-08,-2.721188631064591464e-08,-2.770664787993038461e-08,-2.820140944921485458e-08,-2.869617101849932456e-08,-2.919093258778379453e-08,-2.968569415706826450e-08,-3.018045572635273447e-08,-3.067521729563720444e-08,-3.116997886492167442e-08 +0.000000000000000000e+00,-2.689926037236615471e-10,-5.379852074473230941e-10,-8.069778111709845895e-10,-1.075970414894645981e-09,-1.344963018618307373e-09,-1.613955622341968765e-09,-1.882948226065630157e-09,-2.151940829789291549e-09,-2.420933433512952941e-09,-2.689926037236614333e-09,-2.958918640960275725e-09,-3.227911244683937117e-09,-3.496903848407598509e-09,-3.765896452131260315e-09,-4.034889055854922120e-09,-4.303881659578583926e-09,-4.572874263302245732e-09,-4.841866867025907537e-09,-5.110859470749569343e-09,-5.379852074473231148e-09,-5.648844678196892954e-09,-5.917837281920554759e-09,-6.186829885644216565e-09,-6.455822489367878370e-09,-6.724815093091540176e-09,-6.993807696815201982e-09,-7.262800300538863787e-09,-7.531792904262525593e-09,-7.800785507986188225e-09,-8.069778111709850858e-09,-8.338770715433513491e-09,-8.607763319157176124e-09,-8.876755922880838756e-09,-9.145748526604501389e-09,-9.414741130328164022e-09,-9.683733734051826655e-09,-9.952726337775489287e-09,-1.022171894149915192e-08,-1.049071154522281455e-08,-1.075970414894647719e-08,-1.102869675267013982e-08,-1.129768935639380245e-08,-1.156668196011746508e-08,-1.183567456384112772e-08,-1.210466716756479035e-08,-1.237365977128845298e-08,-1.264265237501211561e-08,-1.291164497873577825e-08,-1.318063758245944088e-08,-1.344963018618310351e-08,-1.371862278990676615e-08,-1.398761539363042878e-08,-1.425660799735409141e-08,-1.452560060107775404e-08,-1.479459320480141668e-08,-1.506358580852508096e-08,-1.533257841224874525e-08,-1.560157101597240954e-08,-1.587056361969607383e-08,-1.613955622341973811e-08,-1.640854882714340240e-08,-1.667754143086706669e-08,-1.694653403459073097e-08 +0.000000000000000000e+00,-6.309454368082117633e-10,-1.261890873616423527e-09,-1.892836310424635393e-09,-2.523781747232847467e-09,-3.154727184041059540e-09,-3.785672620849271614e-09,-4.416618057657483687e-09,-5.047563494465695761e-09,-5.678508931273907834e-09,-6.309454368082119908e-09,-6.940399804890331981e-09,-7.571345241698544882e-09,-8.202290678506758610e-09,-8.833236115314972338e-09,-9.464181552123186066e-09,-1.009512698893139979e-08,-1.072607242573961352e-08,-1.135701786254782725e-08,-1.198796329935604098e-08,-1.261890873616425471e-08,-1.324985417297246843e-08,-1.388079960978068216e-08,-1.451174504658889589e-08,-1.514269048339710962e-08,-1.577363592020532334e-08,-1.640458135701353707e-08,-1.703552679382175080e-08,-1.766647223062996453e-08,-1.829741766743817826e-08,-1.892836310424639198e-08,-1.955930854105460571e-08,-2.019025397786281944e-08,-2.082119941467103317e-08,-2.145214485147924690e-08,-2.208309028828746062e-08,-2.271403572509567435e-08,-2.334498116190388808e-08,-2.397592659871210181e-08,-2.460687203552031553e-08,-2.523781747232852926e-08,-2.586876290913674299e-08,-2.649970834594495672e-08,-2.713065378275317045e-08,-2.776159921956138417e-08,-2.839254465636959790e-08,-2.902349009317781163e-08,-2.965443552998602536e-08,-3.028538096679423909e-08,-3.091632640360245281e-08,-3.154727184041066654e-08,-3.217821727721888027e-08,-3.280916271402709400e-08,-3.344010815083530772e-08,-3.407105358764352145e-08,-3.470199902445173518e-08,-3.533294446125994891e-08,-3.596388989806816264e-08,-3.659483533487637636e-08,-3.722578077168459009e-08,-3.785672620849280382e-08,-3.848767164530101755e-08,-3.911861708210923128e-08,-3.974956251891744500e-08 +0.000000000000000000e+00,-4.947615692841846982e-10,-9.895231385683693964e-10,-1.484284707852554198e-09,-1.979046277136739206e-09,-2.473807846420924215e-09,-2.968569415705109223e-09,-3.463330984989294231e-09,-3.958092554273479240e-09,-4.452854123557663835e-09,-4.947615692841848429e-09,-5.442377262126033024e-09,-5.937138831410217619e-09,-6.431900400694402214e-09,-6.926661969978586808e-09,-7.421423539262771403e-09,-7.916185108546956825e-09,-8.410946677831142247e-09,-8.905708247115327669e-09,-9.400469816399513091e-09,-9.895231385683698513e-09,-1.038999295496788394e-08,-1.088475452425206936e-08,-1.137951609353625478e-08,-1.187427766282044020e-08,-1.236903923210462562e-08,-1.286380080138881104e-08,-1.335856237067299647e-08,-1.385332393995718189e-08,-1.434808550924136731e-08,-1.484284707852555273e-08,-1.533760864780973815e-08,-1.583237021709392358e-08,-1.632713178637810900e-08,-1.682189335566229442e-08,-1.731665492494647984e-08,-1.781141649423066526e-08,-1.830617806351485069e-08,-1.880093963279903611e-08,-1.929570120208322153e-08,-1.979046277136740695e-08,-2.028522434065159237e-08,-2.077998590993577780e-08,-2.127474747921996322e-08,-2.176950904850414864e-08,-2.226427061778833406e-08,-2.275903218707251948e-08,-2.325379375635670491e-08,-2.374855532564089033e-08,-2.424331689492507575e-08,-2.473807846420926117e-08,-2.523284003349344659e-08,-2.572760160277763202e-08,-2.622236317206181744e-08,-2.671712474134600286e-08,-2.721188631063018828e-08,-2.770664787991437370e-08,-2.820140944919855913e-08,-2.869617101848274455e-08,-2.919093258776692997e-08,-2.968569415705111539e-08,-3.018045572633529750e-08,-3.067521729561948293e-08,-3.116997886490366835e-08 +0.000000000000000000e+00,-2.689926037231458517e-10,-5.379852074462917033e-10,-8.069778111694375550e-10,-1.075970414892583407e-09,-1.344963018615729258e-09,-1.613955622338875110e-09,-1.882948226062021168e-09,-2.151940829785167227e-09,-2.420933433508313285e-09,-2.689926037231459344e-09,-2.958918640954605402e-09,-3.227911244677751461e-09,-3.496903848400897519e-09,-3.765896452124043991e-09,-4.034889055847190463e-09,-4.303881659570336935e-09,-4.572874263293483407e-09,-4.841866867016629879e-09,-5.110859470739776351e-09,-5.379852074462922823e-09,-5.648844678186069295e-09,-5.917837281909215768e-09,-6.186829885632362240e-09,-6.455822489355508712e-09,-6.724815093078655184e-09,-6.993807696801801656e-09,-7.262800300524948128e-09,-7.531792904248094600e-09,-7.800785507971241072e-09,-8.069778111694387544e-09,-8.338770715417534016e-09,-8.607763319140680488e-09,-8.876755922863826960e-09,-9.145748526586973432e-09,-9.414741130310119904e-09,-9.683733734033266376e-09,-9.952726337756412848e-09,-1.022171894147955932e-08,-1.049071154520270579e-08,-1.075970414892585226e-08,-1.102869675264899874e-08,-1.129768935637214521e-08,-1.156668196009529168e-08,-1.183567456381843815e-08,-1.210466716754158462e-08,-1.237365977126473110e-08,-1.264265237498787757e-08,-1.291164497871102404e-08,-1.318063758243417051e-08,-1.344963018615731698e-08,-1.371862278988046346e-08,-1.398761539360360993e-08,-1.425660799732675640e-08,-1.452560060104990287e-08,-1.479459320477304934e-08,-1.506358580849619582e-08,-1.533257841221934394e-08,-1.560157101594249207e-08,-1.587056361966564020e-08,-1.613955622338878832e-08,-1.640854882711193645e-08,-1.667754143083508458e-08,-1.694653403455823270e-08 +0.000000000000000000e+00,-9.121967939729553930e-10,-1.824393587945910786e-09,-2.736590381918866282e-09,-3.648787175891821986e-09,-4.560983969864778102e-09,-5.473180763837734219e-09,-6.385377557810690336e-09,-7.297574351783646453e-09,-8.209771145756602570e-09,-9.121967939729559514e-09,-1.003416473370251646e-08,-1.094636152767547340e-08,-1.185855832164843035e-08,-1.277075511562138729e-08,-1.368295190959434423e-08,-1.459514870356730118e-08,-1.550734549754025978e-08,-1.641954229151321837e-08,-1.733173908548617697e-08,-1.824393587945913557e-08,-1.915613267343209417e-08,-2.006832946740505277e-08,-2.098052626137801137e-08,-2.189272305535096996e-08,-2.280491984932392856e-08,-2.371711664329688716e-08,-2.462931343726984576e-08,-2.554151023124280436e-08,-2.645370702521576296e-08,-2.736590381918872155e-08,-2.827810061316168015e-08,-2.919029740713463875e-08,-3.010249420110759735e-08,-3.101469099508055926e-08,-3.192688778905352116e-08,-3.283908458302648307e-08,-3.375128137699944498e-08,-3.466347817097240688e-08,-3.557567496494536879e-08,-3.648787175891833070e-08,-3.740006855289129261e-08,-3.831226534686425451e-08,-3.922446214083721642e-08,-4.013665893481017833e-08,-4.104885572878314023e-08,-4.196105252275610214e-08,-4.287324931672906405e-08,-4.378544611070202596e-08,-4.469764290467498786e-08,-4.560983969864794977e-08,-4.652203649262091168e-08,-4.743423328659387358e-08,-4.834643008056683549e-08,-4.925862687453979740e-08,-5.017082366851275930e-08,-5.108302046248572121e-08,-5.199521725645868312e-08,-5.290741405043164503e-08,-5.381961084440460693e-08,-5.473180763837756884e-08,-5.564400443235053075e-08,-5.655620122632349265e-08,-5.746839802029645456e-08 +0.000000000000000000e+00,-7.709891758594357841e-10,-1.541978351718871568e-09,-2.312967527578307249e-09,-3.083956703437742723e-09,-3.854945879297177783e-09,-4.625935055156612843e-09,-5.396924231016047904e-09,-6.167913406875482964e-09,-6.938902582734918024e-09,-7.709891758594352257e-09,-8.480880934453786490e-09,-9.251870110313220723e-09,-1.002285928617265496e-08,-1.079384846203208919e-08,-1.156483763789152342e-08,-1.233582681375095766e-08,-1.310681598961039189e-08,-1.387780516546982612e-08,-1.464879434132926036e-08,-1.541978351718869459e-08,-1.619077269304813048e-08,-1.696176186890756636e-08,-1.773275104476700225e-08,-1.850374022062643814e-08,-1.927472939648587403e-08,-2.004571857234530991e-08,-2.081670774820474580e-08,-2.158769692406418169e-08,-2.235868609992361758e-08,-2.312967527578305346e-08,-2.390066445164248935e-08,-2.467165362750192524e-08,-2.544264280336136113e-08,-2.621363197922079701e-08,-2.698462115508023290e-08,-2.775561033093966879e-08,-2.852659950679910468e-08,-2.929758868265854056e-08,-3.006857785851797645e-08,-3.083956703437740903e-08,-3.161055621023684161e-08,-3.238154538609627419e-08,-3.315253456195570677e-08,-3.392352373781513934e-08,-3.469451291367457192e-08,-3.546550208953400450e-08,-3.623649126539343708e-08,-3.700748044125286966e-08,-3.777846961711230224e-08,-3.854945879297173482e-08,-3.932044796883116740e-08,-4.009143714469059997e-08,-4.086242632055003255e-08,-4.163341549640946513e-08,-4.240440467226889771e-08,-4.317539384812833029e-08,-4.394638302398776287e-08,-4.471737219984719545e-08,-4.548836137570662803e-08,-4.625935055156606060e-08,-4.703033972742549318e-08,-4.780132890328492576e-08,-4.857231807914435834e-08 +0.000000000000000000e+00,-3.955009641698556372e-10,-7.910019283397112744e-10,-1.186502892509566963e-09,-1.582003856679422756e-09,-1.977504820849278548e-09,-2.373005785019134340e-09,-2.768506749188990132e-09,-3.164007713358845925e-09,-3.559508677528701717e-09,-3.955009641698557923e-09,-4.350510605868414542e-09,-4.746011570038271162e-09,-5.141512534208127781e-09,-5.537013498377984401e-09,-5.932514462547841020e-09,-6.328015426717697640e-09,-6.723516390887554259e-09,-7.119017355057410879e-09,-7.514518319227267498e-09,-7.910019283397124117e-09,-8.305520247566980737e-09,-8.701021211736837356e-09,-9.096522175906693976e-09,-9.492023140076550595e-09,-9.887524104246407215e-09,-1.028302506841626383e-08,-1.067852603258612045e-08,-1.107402699675597707e-08,-1.146952796092583369e-08,-1.186502892509569031e-08,-1.226052988926554693e-08,-1.265603085343540355e-08,-1.305153181760526017e-08,-1.344703278177511679e-08,-1.384253374594497341e-08,-1.423803471011483003e-08,-1.463353567428468665e-08,-1.502903663845454492e-08,-1.542453760262440485e-08,-1.582003856679426478e-08,-1.621553953096412471e-08,-1.661104049513398463e-08,-1.700654145930384456e-08,-1.740204242347370449e-08,-1.779754338764356442e-08,-1.819304435181342435e-08,-1.858854531598328428e-08,-1.898404628015314420e-08,-1.937954724432300413e-08,-1.977504820849286406e-08,-2.017054917266272399e-08,-2.056605013683258392e-08,-2.096155110100244384e-08,-2.135705206517230377e-08,-2.175255302934216370e-08,-2.214805399351202363e-08,-2.254355495768188356e-08,-2.293905592185174349e-08,-2.333455688602160341e-08,-2.373005785019146334e-08,-2.412555881436132327e-08,-2.452105977853118320e-08,-2.491656074270104313e-08 +0.000000000000000000e+00,-9.121967939722213736e-10,-1.824393587944442747e-09,-2.736590381916663914e-09,-3.648787175888885081e-09,-4.560983969861106248e-09,-5.473180763833327828e-09,-6.385377557805549409e-09,-7.297574351777770989e-09,-8.209771145749993397e-09,-9.121967939722215804e-09,-1.003416473369443821e-08,-1.094636152766666062e-08,-1.185855832163888303e-08,-1.277075511561110543e-08,-1.368295190958332784e-08,-1.459514870355555025e-08,-1.550734549752777266e-08,-1.641954229149999341e-08,-1.733173908547221416e-08,-1.824393587944443492e-08,-1.915613267341665567e-08,-2.006832946738887642e-08,-2.098052626136109718e-08,-2.189272305533331793e-08,-2.280491984930553868e-08,-2.371711664327775944e-08,-2.462931343724998019e-08,-2.554151023122220094e-08,-2.645370702519442170e-08,-2.736590381916664245e-08,-2.827810061313886320e-08,-2.919029740711108396e-08,-3.010249420108330471e-08,-3.101469099505552546e-08,-3.192688778902774622e-08,-3.283908458299996697e-08,-3.375128137697218772e-08,-3.466347817094440848e-08,-3.557567496491662923e-08,-3.648787175888884998e-08,-3.740006855286107073e-08,-3.831226534683329149e-08,-3.922446214080551224e-08,-4.013665893477773299e-08,-4.104885572874995375e-08,-4.196105252272217450e-08,-4.287324931669439525e-08,-4.378544611066661601e-08,-4.469764290463883676e-08,-4.560983969861105751e-08,-4.652203649258327827e-08,-4.743423328655549902e-08,-4.834643008052771977e-08,-4.925862687449994053e-08,-5.017082366847216128e-08,-5.108302046244438203e-08,-5.199521725641660279e-08,-5.290741405038882354e-08,-5.381961084436104429e-08,-5.473180763833326505e-08,-5.564400443230548580e-08,-5.655620122627770655e-08,-5.746839802024992731e-08 +0.000000000000000000e+00,-7.709891758588757828e-10,-1.541978351717751566e-09,-2.312967527576627245e-09,-3.083956703435502718e-09,-3.854945879294378604e-09,-4.625935055153254490e-09,-5.396924231012130376e-09,-6.167913406871006262e-09,-6.938902582729882149e-09,-7.709891758588757208e-09,-8.480880934447632267e-09,-9.251870110306507326e-09,-1.002285928616538238e-08,-1.079384846202425744e-08,-1.156483763788313250e-08,-1.233582681374200756e-08,-1.310681598960088262e-08,-1.387780516545975768e-08,-1.464879434131863274e-08,-1.541978351717750780e-08,-1.619077269303638451e-08,-1.696176186889526122e-08,-1.773275104475413794e-08,-1.850374022061301465e-08,-1.927472939647189136e-08,-2.004571857233076808e-08,-2.081670774818964479e-08,-2.158769692404852150e-08,-2.235868609990739822e-08,-2.312967527576627493e-08,-2.390066445162515164e-08,-2.467165362748402836e-08,-2.544264280334290507e-08,-2.621363197920178178e-08,-2.698462115506065850e-08,-2.775561033091953521e-08,-2.852659950677841193e-08,-2.929758868263728864e-08,-3.006857785849616535e-08,-3.083956703435504207e-08,-3.161055621021391878e-08,-3.238154538607279549e-08,-3.315253456193167221e-08,-3.392352373779054892e-08,-3.469451291364942563e-08,-3.546550208950830235e-08,-3.623649126536717906e-08,-3.700748044122605577e-08,-3.777846961708493249e-08,-3.854945879294380920e-08,-3.932044796880268591e-08,-4.009143714466156263e-08,-4.086242632052043934e-08,-4.163341549637931605e-08,-4.240440467223819277e-08,-4.317539384809706948e-08,-4.394638302395594619e-08,-4.471737219981482291e-08,-4.548836137567369962e-08,-4.625935055153257633e-08,-4.703033972739145305e-08,-4.780132890325032976e-08,-4.857231807910920647e-08 +0.000000000000000000e+00,-3.955009641689773265e-10,-7.910019283379546529e-10,-1.186502892506931979e-09,-1.582003856675909306e-09,-1.977504820844886632e-09,-2.373005785013863959e-09,-2.768506749182841285e-09,-3.164007713351818612e-09,-3.559508677520795938e-09,-3.955009641689773265e-09,-4.350510605858750591e-09,-4.746011570027727918e-09,-5.141512534196705244e-09,-5.537013498365682571e-09,-5.932514462534659897e-09,-6.328015426703637224e-09,-6.723516390872614550e-09,-7.119017355041591876e-09,-7.514518319210570030e-09,-7.910019283379548184e-09,-8.305520247548526337e-09,-8.701021211717504491e-09,-9.096522175886482645e-09,-9.492023140055460798e-09,-9.887524104224438952e-09,-1.028302506839341711e-08,-1.067852603256239526e-08,-1.107402699673137341e-08,-1.146952796090035157e-08,-1.186502892506932972e-08,-1.226052988923830787e-08,-1.265603085340728603e-08,-1.305153181757626418e-08,-1.344703278174524233e-08,-1.384253374591422049e-08,-1.423803471008319864e-08,-1.463353567425217680e-08,-1.502903663842115330e-08,-1.542453760259012979e-08,-1.582003856675910629e-08,-1.621553953092808279e-08,-1.661104049509705929e-08,-1.700654145926603579e-08,-1.740204242343501229e-08,-1.779754338760398879e-08,-1.819304435177296529e-08,-1.858854531594194179e-08,-1.898404628011091829e-08,-1.937954724427989479e-08,-1.977504820844887129e-08,-2.017054917261784779e-08,-2.056605013678682429e-08,-2.096155110095580078e-08,-2.135705206512477728e-08,-2.175255302929375378e-08,-2.214805399346273028e-08,-2.254355495763170678e-08,-2.293905592180068328e-08,-2.333455688596965978e-08,-2.373005785013863628e-08,-2.412555881430761278e-08,-2.452105977847658928e-08,-2.491656074264556578e-08 +0.000000000000000000e+00,-1.192043978377520071e-09,-2.384087956755040143e-09,-3.576131935132560007e-09,-4.768175913510079458e-09,-5.960219891887598909e-09,-7.152263870265118360e-09,-8.344307848642637811e-09,-9.536351827020157261e-09,-1.072839580539767671e-08,-1.192043978377519616e-08,-1.311248376215271561e-08,-1.430452774053023507e-08,-1.549657171890775452e-08,-1.668861569728527562e-08,-1.788065967566279673e-08,-1.907270365404031783e-08,-2.026474763241783894e-08,-2.145679161079536004e-08,-2.264883558917288115e-08,-2.384087956755040225e-08,-2.503292354592792336e-08,-2.622496752430544446e-08,-2.741701150268296557e-08,-2.860905548106048667e-08,-2.980109945943800778e-08,-3.099314343781552888e-08,-3.218518741619304999e-08,-3.337723139457057109e-08,-3.456927537294809220e-08,-3.576131935132561331e-08,-3.695336332970313441e-08,-3.814540730808065552e-08,-3.933745128645817662e-08,-4.052949526483569773e-08,-4.172153924321321883e-08,-4.291358322159073994e-08,-4.410562719996826104e-08,-4.529767117834578215e-08,-4.648971515672330325e-08,-4.768175913510082436e-08,-4.887380311347834546e-08,-5.006584709185586657e-08,-5.125789107023338767e-08,-5.244993504861090878e-08,-5.364197902698842988e-08,-5.483402300536595099e-08,-5.602606698374347209e-08,-5.721811096212099320e-08,-5.841015494049851431e-08,-5.960219891887603541e-08,-6.079424289725355652e-08,-6.198628687563107100e-08,-6.317833085400858549e-08,-6.437037483238609998e-08,-6.556241881076361447e-08,-6.675446278914112895e-08,-6.794650676751864344e-08,-6.913855074589615793e-08,-7.033059472427367242e-08,-7.152263870265118691e-08,-7.271468268102870139e-08,-7.390672665940621588e-08,-7.509877063778373037e-08 +0.000000000000000000e+00,-1.053644537176980896e-09,-2.107289074353961792e-09,-3.160933611530942895e-09,-4.214578148707924411e-09,-5.268222685884905928e-09,-6.321867223061887444e-09,-7.375511760238868961e-09,-8.429156297415850477e-09,-9.482800834592831166e-09,-1.053644537176981186e-08,-1.159008990894679254e-08,-1.264373444612377323e-08,-1.369737898330075392e-08,-1.475102352047773461e-08,-1.580466805765471530e-08,-1.685831259483169765e-08,-1.791195713200867999e-08,-1.896560166918566233e-08,-2.001924620636264468e-08,-2.107289074353962702e-08,-2.212653528071660936e-08,-2.318017981789359171e-08,-2.423382435507057405e-08,-2.528746889224755639e-08,-2.634111342942453874e-08,-2.739475796660152108e-08,-2.844840250377850342e-08,-2.950204704095548577e-08,-3.055569157813246811e-08,-3.160933611530945046e-08,-3.266298065248643280e-08,-3.371662518966341514e-08,-3.477026972684039749e-08,-3.582391426401737983e-08,-3.687755880119436217e-08,-3.793120333837134452e-08,-3.898484787554832686e-08,-4.003849241272530920e-08,-4.109213694990229155e-08,-4.214578148707927389e-08,-4.319942602425625624e-08,-4.425307056143323858e-08,-4.530671509861022092e-08,-4.636035963578720327e-08,-4.741400417296418561e-08,-4.846764871014116795e-08,-4.952129324731815030e-08,-5.057493778449513264e-08,-5.162858232167211498e-08,-5.268222685884909733e-08,-5.373587139602607967e-08,-5.478951593320306201e-08,-5.584316047038004436e-08,-5.689680500755702670e-08,-5.795044954473400905e-08,-5.900409408191099139e-08,-6.005773861908797373e-08,-6.111138315626496269e-08,-6.216502769344195165e-08,-6.321867223061894062e-08,-6.427231676779592958e-08,-6.532596130497291854e-08,-6.637960584214990750e-08 +0.000000000000000000e+00,-5.183002024977801382e-10,-1.036600404995560276e-09,-1.554900607493340518e-09,-2.073200809991120967e-09,-2.591501012488901415e-09,-3.109801214986681863e-09,-3.628101417484462312e-09,-4.146401619982242760e-09,-4.664701822480022795e-09,-5.183002024977802830e-09,-5.701302227475582865e-09,-6.219602429973362900e-09,-6.737902632471142934e-09,-7.256202834968922969e-09,-7.774503037466703004e-09,-8.292803239964483866e-09,-8.811103442462264728e-09,-9.329403644960045590e-09,-9.847703847457826452e-09,-1.036600404995560731e-08,-1.088430425245338818e-08,-1.140260445495116904e-08,-1.192090465744894990e-08,-1.243920485994673076e-08,-1.295750506244451162e-08,-1.347580526494229249e-08,-1.399410546744007335e-08,-1.451240566993785421e-08,-1.503070587243563673e-08,-1.554900607493341924e-08,-1.606730627743120176e-08,-1.658560647992898428e-08,-1.710390668242676679e-08,-1.762220688492454931e-08,-1.814050708742233182e-08,-1.865880728992011434e-08,-1.917710749241789686e-08,-1.969540769491567937e-08,-2.021370789741346189e-08,-2.073200809991124441e-08,-2.125030830240902692e-08,-2.176860850490680944e-08,-2.228690870740459196e-08,-2.280520890990237447e-08,-2.332350911240015699e-08,-2.384180931489793950e-08,-2.436010951739572202e-08,-2.487840971989350454e-08,-2.539670992239128705e-08,-2.591501012488906957e-08,-2.643331032738685209e-08,-2.695161052988463460e-08,-2.746991073238241712e-08,-2.798821093488019964e-08,-2.850651113737798215e-08,-2.902481133987576467e-08,-2.954311154237354718e-08,-3.006141174487132639e-08,-3.057971194736910560e-08,-3.109801214986688481e-08,-3.161631235236466402e-08,-3.213461255486244322e-08,-3.265291275736022243e-08 +0.000000000000000000e+00,-1.192043978376356642e-09,-2.384087956752713283e-09,-3.576131935129070132e-09,-4.768175913505427394e-09,-5.960219891881784656e-09,-7.152263870258141918e-09,-8.344307848634498353e-09,-9.536351827010854788e-09,-1.072839580538721122e-08,-1.192043978376356766e-08,-1.311248376213992409e-08,-1.430452774051628053e-08,-1.549657171889263696e-08,-1.668861569726899340e-08,-1.788065967564534983e-08,-1.907270365402170627e-08,-2.026474763239806270e-08,-2.145679161077441914e-08,-2.264883558915077557e-08,-2.384087956752713201e-08,-2.503292354590348844e-08,-2.622496752427984488e-08,-2.741701150265620131e-08,-2.860905548103255775e-08,-2.980109945940891418e-08,-3.099314343778526731e-08,-3.218518741616161713e-08,-3.337723139453796694e-08,-3.456927537291431676e-08,-3.576131935129066658e-08,-3.695336332966701640e-08,-3.814540730804336621e-08,-3.933745128641971603e-08,-4.052949526479606585e-08,-4.172153924317241567e-08,-4.291358322154876548e-08,-4.410562719992511530e-08,-4.529767117830146512e-08,-4.648971515667781494e-08,-4.768175913505416475e-08,-4.887380311343051457e-08,-5.006584709180686439e-08,-5.125789107018321421e-08,-5.244993504855956402e-08,-5.364197902693591384e-08,-5.483402300531226366e-08,-5.602606698368861348e-08,-5.721811096206496329e-08,-5.841015494044131311e-08,-5.960219891881766293e-08,-6.079424289719401275e-08,-6.198628687557036256e-08,-6.317833085394671238e-08,-6.437037483232306220e-08,-6.556241881069941202e-08,-6.675446278907576183e-08,-6.794650676745211165e-08,-6.913855074582846147e-08,-7.033059472420481129e-08,-7.152263870258116110e-08,-7.271468268095751092e-08,-7.390672665933386074e-08,-7.509877063771021056e-08 +0.000000000000000000e+00,-1.053644537176048663e-09,-2.107289074352097327e-09,-3.160933611528146197e-09,-4.214578148704195481e-09,-5.268222685880244765e-09,-6.321867223056294049e-09,-7.375511760232343333e-09,-8.429156297408392617e-09,-9.482800834584441900e-09,-1.053644537176049118e-08,-1.159008990893654047e-08,-1.264373444611258975e-08,-1.369737898328863904e-08,-1.475102352046468832e-08,-1.580466805764073926e-08,-1.685831259481678854e-08,-1.791195713199283783e-08,-1.896560166916888711e-08,-2.001924620634493639e-08,-2.107289074352098568e-08,-2.212653528069703496e-08,-2.318017981787308425e-08,-2.423382435504913353e-08,-2.528746889222518281e-08,-2.634111342940123210e-08,-2.739475796657728138e-08,-2.844840250375333066e-08,-2.950204704092937995e-08,-3.055569157810542923e-08,-3.160933611528147852e-08,-3.266298065245752780e-08,-3.371662518963357708e-08,-3.477026972680962637e-08,-3.582391426398567565e-08,-3.687755880116172494e-08,-3.793120333833777422e-08,-3.898484787551382350e-08,-4.003849241268987279e-08,-4.109213694986592207e-08,-4.214578148704197135e-08,-4.319942602421802064e-08,-4.425307056139406992e-08,-4.530671509857011921e-08,-4.636035963574616849e-08,-4.741400417292221777e-08,-4.846764871009826706e-08,-4.952129324727431634e-08,-5.057493778445036563e-08,-5.162858232162641491e-08,-5.268222685880246419e-08,-5.373587139597851348e-08,-5.478951593315456276e-08,-5.584316047033061204e-08,-5.689680500750666133e-08,-5.795044954468271061e-08,-5.900409408185875990e-08,-6.005773861903480918e-08,-6.111138315621085846e-08,-6.216502769338690775e-08,-6.321867223056295703e-08,-6.427231676773900632e-08,-6.532596130491505560e-08,-6.637960584209110488e-08 +0.000000000000000000e+00,-5.183002024964164276e-10,-1.036600404992832855e-09,-1.554900607489249283e-09,-2.073200809985665710e-09,-2.591501012482082138e-09,-3.109801214978498566e-09,-3.628101417474914993e-09,-4.146401619971331421e-09,-4.664701822467747435e-09,-5.183002024964163449e-09,-5.701302227460579463e-09,-6.219602429956995477e-09,-6.737902632453411491e-09,-7.256202834949827505e-09,-7.774503037446243519e-09,-8.292803239942659533e-09,-8.811103442439075547e-09,-9.329403644935491561e-09,-9.847703847431907575e-09,-1.036600404992832359e-08,-1.088430425242473960e-08,-1.140260445492115562e-08,-1.192090465741757163e-08,-1.243920485991398764e-08,-1.295750506241040366e-08,-1.347580526490681967e-08,-1.399410546740323569e-08,-1.451240566989965170e-08,-1.503070587239606771e-08,-1.554900607489248373e-08,-1.606730627738889974e-08,-1.658560647988531576e-08,-1.710390668238173177e-08,-1.762220688487814778e-08,-1.814050708737456380e-08,-1.865880728987097981e-08,-1.917710749236739583e-08,-1.969540769486381184e-08,-2.021370789736022785e-08,-2.073200809985664387e-08,-2.125030830235305988e-08,-2.176860850484947590e-08,-2.228690870734589191e-08,-2.280520890984230792e-08,-2.332350911233872394e-08,-2.384180931483513995e-08,-2.436010951733155597e-08,-2.487840971982797198e-08,-2.539670992232438799e-08,-2.591501012482080401e-08,-2.643331032731722002e-08,-2.695161052981363604e-08,-2.746991073231005205e-08,-2.798821093480646806e-08,-2.850651113730288408e-08,-2.902481133979930009e-08,-2.954311154229571611e-08,-3.006141174479212881e-08,-3.057971194728854483e-08,-3.109801214978496084e-08,-3.161631235228137685e-08,-3.213461255477779287e-08,-3.265291275727420888e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.285333045106364059e-10,-1.057066609021272812e-09,-1.585599913531909218e-09,-2.114133218042545624e-09,-2.642666522553182030e-09,-3.171199827063818436e-09,-3.699733131574454841e-09,-4.228266436085091247e-09,-4.756799740595728067e-09,-5.285333045106364886e-09,-5.813866349617001706e-09,-6.342399654127638525e-09,-6.870932958638275345e-09,-7.399466263148912164e-09,-7.927999567659548984e-09,-8.456532872170185804e-09,-8.985066176680822623e-09,-9.513599481191459443e-09,-1.004213278570209626e-08,-1.057066609021273308e-08,-1.109919939472336990e-08,-1.162773269923400672e-08,-1.215626600374464354e-08,-1.268479930825528036e-08,-1.321333261276591718e-08,-1.374186591727655400e-08,-1.427039922178719082e-08,-1.479893252629782764e-08,-1.532746583080846280e-08,-1.585599913531909797e-08,-1.638453243982973313e-08,-1.691306574434036830e-08,-1.744159904885100346e-08,-1.797013235336163863e-08,-1.849866565787227379e-08,-1.902719896238290896e-08,-1.955573226689354412e-08,-2.008426557140417929e-08,-2.061279887591481445e-08,-2.114133218042544962e-08,-2.166986548493608478e-08,-2.219839878944671995e-08,-2.272693209395735512e-08,-2.325546539846799028e-08,-2.378399870297862545e-08,-2.431253200748926061e-08,-2.484106531199989578e-08,-2.536959861651053094e-08,-2.589813192102116611e-08,-2.642666522553180127e-08,-2.695519853004243644e-08,-2.748373183455307160e-08,-2.801226513906370677e-08,-2.854079844357434193e-08,-2.906933174808497710e-08,-2.959786505259561226e-08,-3.012639835710624743e-08,-3.065493166161688590e-08,-3.118346496612752437e-08,-3.171199827063816285e-08,-3.224053157514880132e-08,-3.276906487965943980e-08,-3.329759818417007827e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657543626784e-10,-5.111155315087253569e-10,-7.666732972630880870e-10,-1.022231063017450921e-09,-1.277788828771813754e-09,-1.533346594526176588e-09,-1.788904360280539421e-09,-2.044462126034902255e-09,-2.300019891789265088e-09,-2.555577657543627922e-09,-2.811135423297990755e-09,-3.066693189052353589e-09,-3.322250954806716422e-09,-3.577808720561079256e-09,-3.833366486315442089e-09,-4.088924252069805336e-09,-4.344482017824168584e-09,-4.600039783578531831e-09,-4.855597549332895078e-09,-5.111155315087258325e-09,-5.366713080841621572e-09,-5.622270846595984819e-09,-5.877828612350348066e-09,-6.133386378104711313e-09,-6.388944143859074560e-09,-6.644501909613437808e-09,-6.900059675367801055e-09,-7.155617441122164302e-09,-7.411175206876527549e-09,-7.666732972630890796e-09,-7.922290738385254870e-09,-8.177848504139618945e-09,-8.433406269893983019e-09,-8.688964035648347093e-09,-8.944521801402711168e-09,-9.200079567157075242e-09,-9.455637332911439316e-09,-9.711195098665803390e-09,-9.966752864420167465e-09,-1.022231063017453154e-08,-1.047786839592889561e-08,-1.073342616168325969e-08,-1.098898392743762376e-08,-1.124454169319198784e-08,-1.150009945894635191e-08,-1.175565722470071598e-08,-1.201121499045508006e-08,-1.226677275620944413e-08,-1.252233052196380821e-08,-1.277788828771817228e-08,-1.303344605347253636e-08,-1.328900381922690043e-08,-1.354456158498126450e-08,-1.380011935073562858e-08,-1.405567711648999265e-08,-1.431123488224435673e-08,-1.456679264799872080e-08,-1.482235041375308488e-08,-1.507790817950744895e-08,-1.533346594526181137e-08,-1.558902371101617379e-08,-1.584458147677053621e-08,-1.610013924252489863e-08 +0.000000000000000000e+00,-2.954569915791782760e-10,-5.909139831583565519e-10,-8.863709747375347762e-10,-1.181827966316712897e-09,-1.477284957895891018e-09,-1.772741949475069139e-09,-2.068198941054247260e-09,-2.363655932633425380e-09,-2.659112924212603501e-09,-2.954569915791781622e-09,-3.250026907370959743e-09,-3.545483898950137864e-09,-3.840940890529315985e-09,-4.136397882108494519e-09,-4.431854873687673054e-09,-4.727311865266851588e-09,-5.022768856846030123e-09,-5.318225848425208657e-09,-5.613682840004387191e-09,-5.909139831583565726e-09,-6.204596823162744260e-09,-6.500053814741922795e-09,-6.795510806321101329e-09,-7.090967797900279864e-09,-7.386424789479458398e-09,-7.681881781058636933e-09,-7.977338772637816294e-09,-8.272795764216995656e-09,-8.568252755796175017e-09,-8.863709747375354379e-09,-9.159166738954533741e-09,-9.454623730533713102e-09,-9.750080722112892464e-09,-1.004553771369207183e-08,-1.034099470527125119e-08,-1.063645169685043055e-08,-1.093190868842960991e-08,-1.122736568000878927e-08,-1.152282267158796863e-08,-1.181827966316714800e-08,-1.211373665474632736e-08,-1.240919364632550672e-08,-1.270465063790468608e-08,-1.300010762948386544e-08,-1.329556462106304480e-08,-1.359102161264222417e-08,-1.388647860422140353e-08,-1.418193559580058289e-08,-1.447739258737976225e-08,-1.477284957895894161e-08,-1.506830657053812097e-08,-1.536376356211730033e-08,-1.565922055369647970e-08,-1.595467754527565906e-08,-1.625013453685483842e-08,-1.654559152843401778e-08,-1.684104852001319714e-08,-1.713650551159237650e-08,-1.743196250317155587e-08,-1.772741949475073523e-08,-1.802287648632991459e-08,-1.831833347790909395e-08,-1.861379046948827331e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.285333045105745742e-10,-1.057066609021149148e-09,-1.585599913531723723e-09,-2.114133218042298297e-09,-2.642666522552873078e-09,-3.171199827063447859e-09,-3.699733131574022640e-09,-4.228266436084597421e-09,-4.756799740595172202e-09,-5.285333045105746983e-09,-5.813866349616321763e-09,-6.342399654126896544e-09,-6.870932958637471325e-09,-7.399466263148046106e-09,-7.927999567658620887e-09,-8.456532872169196496e-09,-8.985066176679772104e-09,-9.513599481190347712e-09,-1.004213278570092332e-08,-1.057066609021149893e-08,-1.109919939472207454e-08,-1.162773269923265014e-08,-1.215626600374322575e-08,-1.268479930825380136e-08,-1.321333261276437697e-08,-1.374186591727495258e-08,-1.427039922178552819e-08,-1.479893252629610379e-08,-1.532746583080667940e-08,-1.585599913531725501e-08,-1.638453243982783062e-08,-1.691306574433840623e-08,-1.744159904884898183e-08,-1.797013235335955744e-08,-1.849866565787013305e-08,-1.902719896238070866e-08,-1.955573226689128427e-08,-2.008426557140185987e-08,-2.061279887591243548e-08,-2.114133218042301109e-08,-2.166986548493358670e-08,-2.219839878944416231e-08,-2.272693209395473792e-08,-2.325546539846531352e-08,-2.378399870297588913e-08,-2.431253200748646474e-08,-2.484106531199704035e-08,-2.536959861650761596e-08,-2.589813192101819156e-08,-2.642666522552876717e-08,-2.695519853003934278e-08,-2.748373183454991839e-08,-2.801226513906049400e-08,-2.854079844357106961e-08,-2.906933174808164521e-08,-2.959786505259222082e-08,-3.012639835710279312e-08,-3.065493166161336542e-08,-3.118346496612393772e-08,-3.171199827063451002e-08,-3.224053157514508232e-08,-3.276906487965565462e-08,-3.329759818416622692e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657543398793e-10,-5.111155315086797585e-10,-7.666732972630196378e-10,-1.022231063017359517e-09,-1.277788828771699396e-09,-1.533346594526039276e-09,-1.788904360280379155e-09,-2.044462126034719034e-09,-2.300019891789059120e-09,-2.555577657543399206e-09,-2.811135423297739292e-09,-3.066693189052079378e-09,-3.322250954806419464e-09,-3.577808720560759550e-09,-3.833366486315099637e-09,-4.088924252069439723e-09,-4.344482017823779809e-09,-4.600039783578119895e-09,-4.855597549332459981e-09,-5.111155315086800067e-09,-5.366713080841140153e-09,-5.622270846595480239e-09,-5.877828612349820325e-09,-6.133386378104160411e-09,-6.388944143858500497e-09,-6.644501909612840583e-09,-6.900059675367180669e-09,-7.155617441121520755e-09,-7.411175206875860841e-09,-7.666732972630200927e-09,-7.922290738384540186e-09,-8.177848504138879445e-09,-8.433406269893218704e-09,-8.688964035647557963e-09,-8.944521801401897222e-09,-9.200079567156236481e-09,-9.455637332910575740e-09,-9.711195098664914998e-09,-9.966752864419254257e-09,-1.022231063017359352e-08,-1.047786839592793278e-08,-1.073342616168227203e-08,-1.098898392743661129e-08,-1.124454169319095055e-08,-1.150009945894528981e-08,-1.175565722469962907e-08,-1.201121499045396833e-08,-1.226677275620830759e-08,-1.252233052196264685e-08,-1.277788828771698611e-08,-1.303344605347132536e-08,-1.328900381922566462e-08,-1.354456158498000388e-08,-1.380011935073434314e-08,-1.405567711648868240e-08,-1.431123488224302166e-08,-1.456679264799736092e-08,-1.482235041375170018e-08,-1.507790817950603943e-08,-1.533346594526037869e-08,-1.558902371101471795e-08,-1.584458147676905721e-08,-1.610013924252339647e-08 +0.000000000000000000e+00,-2.954569915791240439e-10,-5.909139831582480878e-10,-8.863709747373721318e-10,-1.181827966316496176e-09,-1.477284957895620116e-09,-1.772741949474744057e-09,-2.068198941053867997e-09,-2.363655932632991938e-09,-2.659112924212115878e-09,-2.954569915791239819e-09,-3.250026907370363759e-09,-3.545483898949487700e-09,-3.840940890528612054e-09,-4.136397882107736822e-09,-4.431854873686861589e-09,-4.727311865265986357e-09,-5.022768856845111125e-09,-5.318225848424235893e-09,-5.613682840003360660e-09,-5.909139831582485428e-09,-6.204596823161610196e-09,-6.500053814740734963e-09,-6.795510806319859731e-09,-7.090967797898984499e-09,-7.386424789478109267e-09,-7.681881781057234034e-09,-7.977338772636358802e-09,-8.272795764215483570e-09,-8.568252755794608337e-09,-8.863709747373733105e-09,-9.159166738952857873e-09,-9.454623730531982640e-09,-9.750080722111107408e-09,-1.004553771369023218e-08,-1.034099470526935694e-08,-1.063645169684848171e-08,-1.093190868842760648e-08,-1.122736568000673125e-08,-1.152282267158585601e-08,-1.181827966316498078e-08,-1.211373665474410555e-08,-1.240919364632323032e-08,-1.270465063790235509e-08,-1.300010762948147985e-08,-1.329556462106060462e-08,-1.359102161263972939e-08,-1.388647860421885416e-08,-1.418193559579797892e-08,-1.447739258737710369e-08,-1.477284957895622846e-08,-1.506830657053535157e-08,-1.536376356211447469e-08,-1.565922055369359780e-08,-1.595467754527272091e-08,-1.625013453685184403e-08,-1.654559152843096714e-08,-1.684104852001009025e-08,-1.713650551158921337e-08,-1.743196250316833648e-08,-1.772741949474745959e-08,-1.802287648632658271e-08,-1.831833347790570582e-08,-1.861379046948482893e-08 +0.000000000000000000e+00,-1.187870811537105937e-09,-2.375741623074211873e-09,-3.563612434611317810e-09,-4.751483246148423747e-09,-5.939354057685529270e-09,-7.127224869222634793e-09,-8.315095680759740316e-09,-9.502966492296845839e-09,-1.069083730383395136e-08,-1.187870811537105689e-08,-1.306657892690816241e-08,-1.425444973844526793e-08,-1.544232054998237346e-08,-1.663019136151948063e-08,-1.781806217305658781e-08,-1.900593298459369499e-08,-2.019380379613080217e-08,-2.138167460766790934e-08,-2.256954541920501652e-08,-2.375741623074212370e-08,-2.494528704227923088e-08,-2.613315785381633805e-08,-2.732102866535344523e-08,-2.850889947689055241e-08,-2.969677028842765959e-08,-3.088464109996476676e-08,-3.207251191150187394e-08,-3.326038272303898112e-08,-3.444825353457608830e-08,-3.563612434611319547e-08,-3.682399515765030265e-08,-3.801186596918740983e-08,-3.919973678072451701e-08,-4.038760759226162418e-08,-4.157547840379873136e-08,-4.276334921533583854e-08,-4.395122002687294572e-08,-4.513909083841005289e-08,-4.632696164994716007e-08,-4.751483246148426725e-08,-4.870270327302137443e-08,-4.989057408455848160e-08,-5.107844489609558878e-08,-5.226631570763269596e-08,-5.345418651916980314e-08,-5.464205733070691031e-08,-5.582992814224401749e-08,-5.701779895378112467e-08,-5.820566976531823185e-08,-5.939354057685533902e-08,-6.058141138839243958e-08,-6.176928219992954676e-08,-6.295715301146665394e-08,-6.414502382300376112e-08,-6.533289463454086829e-08,-6.652076544607797547e-08,-6.770863625761508265e-08,-6.889650706915218983e-08,-7.008437788068929700e-08,-7.127224869222640418e-08,-7.246011950376351136e-08,-7.364799031530061854e-08,-7.483586112683772571e-08 +0.000000000000000000e+00,-8.498432584844118458e-10,-1.699686516968823692e-09,-2.549529775453235331e-09,-3.399373033937646970e-09,-4.249216292422058609e-09,-5.099059550906470661e-09,-5.948902809390882714e-09,-6.798746067875294766e-09,-7.648589326359705992e-09,-8.498432584844117217e-09,-9.348275843328528443e-09,-1.019811910181293967e-08,-1.104796236029735089e-08,-1.189780561878176212e-08,-1.274764887726617334e-08,-1.359749213575058457e-08,-1.444733539423499580e-08,-1.529717865271940537e-08,-1.614702191120381494e-08,-1.699686516968822451e-08,-1.784670842817263408e-08,-1.869655168665704365e-08,-1.954639494514145322e-08,-2.039623820362586279e-08,-2.124608146211027236e-08,-2.209592472059468193e-08,-2.294576797907909151e-08,-2.379561123756350108e-08,-2.464545449604791065e-08,-2.549529775453232022e-08,-2.634514101301672979e-08,-2.719498427150113936e-08,-2.804482752998554893e-08,-2.889467078846995850e-08,-2.974451404695436807e-08,-3.059435730543877764e-08,-3.144420056392318722e-08,-3.229404382240759679e-08,-3.314388708089200636e-08,-3.399373033937641593e-08,-3.484357359786082550e-08,-3.569341685634523507e-08,-3.654326011482964464e-08,-3.739310337331405421e-08,-3.824294663179846378e-08,-3.909278989028287336e-08,-3.994263314876728293e-08,-4.079247640725169250e-08,-4.164231966573610207e-08,-4.249216292422051164e-08,-4.334200618270492121e-08,-4.419184944118933078e-08,-4.504169269967374035e-08,-4.589153595815814992e-08,-4.674137921664255949e-08,-4.759122247512696907e-08,-4.844106573361137864e-08,-4.929090899209578821e-08,-5.014075225058019778e-08,-5.099059550906460735e-08,-5.184043876754901692e-08,-5.269028202603342649e-08,-5.354012528451783606e-08 +0.000000000000000000e+00,-7.007489299798124243e-10,-1.401497859959624849e-09,-2.102246789939437376e-09,-2.802995719919250111e-09,-3.503744649899062845e-09,-4.204493579878875580e-09,-4.905242509858688728e-09,-5.605991439838501876e-09,-6.306740369818315024e-09,-7.007489299798128172e-09,-7.708238229777941320e-09,-8.408987159757754468e-09,-9.109736089737567616e-09,-9.810485019717380764e-09,-1.051123394969719391e-08,-1.121198287967700706e-08,-1.191273180965682021e-08,-1.261348073963663336e-08,-1.331422966961644650e-08,-1.401497859959625965e-08,-1.471572752957607280e-08,-1.541647645955588595e-08,-1.611722538953569910e-08,-1.681797431951551224e-08,-1.751872324949532539e-08,-1.821947217947513854e-08,-1.892022110945495169e-08,-1.962097003943476484e-08,-2.032171896941457799e-08,-2.102246789939439113e-08,-2.172321682937420428e-08,-2.242396575935401743e-08,-2.312471468933383058e-08,-2.382546361931364373e-08,-2.452621254929345687e-08,-2.522696147927327002e-08,-2.592771040925308317e-08,-2.662845933923289632e-08,-2.732920826921270947e-08,-2.802995719919252261e-08,-2.873070612917233576e-08,-2.943145505915214891e-08,-3.013220398913196537e-08,-3.083295291911177851e-08,-3.153370184909159166e-08,-3.223445077907140481e-08,-3.293519970905121796e-08,-3.363594863903103111e-08,-3.433669756901084426e-08,-3.503744649899065740e-08,-3.573819542897047055e-08,-3.643894435895028370e-08,-3.713969328893009685e-08,-3.784044221890991000e-08,-3.854119114888972314e-08,-3.924194007886953629e-08,-3.994268900884934944e-08,-4.064343793882916259e-08,-4.134418686880897574e-08,-4.204493579878878888e-08,-4.274568472876860203e-08,-4.344643365874841518e-08,-4.414718258872822833e-08 +0.000000000000000000e+00,-1.187870811536914651e-09,-2.375741623073829302e-09,-3.563612434610744160e-09,-4.751483246147659432e-09,-5.939354057684574704e-09,-7.127224869221489975e-09,-8.315095680758405247e-09,-9.502966492295320518e-09,-1.069083730383223579e-08,-1.187870811536915106e-08,-1.306657892690606633e-08,-1.425444973844298160e-08,-1.544232054997989853e-08,-1.663019136151681380e-08,-1.781806217305372907e-08,-1.900593298459064435e-08,-2.019380379612755962e-08,-2.138167460766447489e-08,-2.256954541920139016e-08,-2.375741623073830543e-08,-2.494528704227522070e-08,-2.613315785381213598e-08,-2.732102866534905125e-08,-2.850889947688596652e-08,-2.969677028842288179e-08,-3.088464109995979706e-08,-3.207251191149671233e-08,-3.326038272303362760e-08,-3.444825353457054288e-08,-3.563612434610745815e-08,-3.682399515764437342e-08,-3.801186596918128869e-08,-3.919973678071820396e-08,-4.038760759225511923e-08,-4.157547840379203451e-08,-4.276334921532894978e-08,-4.395122002686586505e-08,-4.513909083840278032e-08,-4.632696164993969559e-08,-4.751483246147661086e-08,-4.870270327301352614e-08,-4.989057408455044141e-08,-5.107844489608735668e-08,-5.226631570762427195e-08,-5.345418651916118722e-08,-5.464205733069810249e-08,-5.582992814223501777e-08,-5.701779895377193304e-08,-5.820566976530884831e-08,-5.939354057684576358e-08,-6.058141138838267223e-08,-6.176928219991958089e-08,-6.295715301145648954e-08,-6.414502382299339820e-08,-6.533289463453030685e-08,-6.652076544606721550e-08,-6.770863625760412416e-08,-6.889650706914103281e-08,-7.008437788067794147e-08,-7.127224869221485012e-08,-7.246011950375175878e-08,-7.364799031528866743e-08,-7.483586112682557608e-08 +0.000000000000000000e+00,-8.498432584842926284e-10,-1.699686516968585257e-09,-2.549529775452877989e-09,-3.399373033937170927e-09,-4.249216292421463866e-09,-5.099059550905756804e-09,-5.948902809390049743e-09,-6.798746067874342681e-09,-7.648589326358635620e-09,-8.498432584842927731e-09,-9.348275843327219843e-09,-1.019811910181151195e-08,-1.104796236029580407e-08,-1.189780561878009618e-08,-1.274764887726438829e-08,-1.359749213574868040e-08,-1.444733539423297251e-08,-1.529717865271726462e-08,-1.614702191120155839e-08,-1.699686516968585215e-08,-1.784670842817014592e-08,-1.869655168665443969e-08,-1.954639494513873345e-08,-2.039623820362302722e-08,-2.124608146210732098e-08,-2.209592472059161475e-08,-2.294576797907590851e-08,-2.379561123756020228e-08,-2.464545449604449605e-08,-2.549529775452878981e-08,-2.634514101301308358e-08,-2.719498427149737734e-08,-2.804482752998167111e-08,-2.889467078846596487e-08,-2.974451404695025864e-08,-3.059435730543454910e-08,-3.144420056391883955e-08,-3.229404382240313001e-08,-3.314388708088742047e-08,-3.399373033937171093e-08,-3.484357359785600138e-08,-3.569341685634029184e-08,-3.654326011482458230e-08,-3.739310337330887275e-08,-3.824294663179316321e-08,-3.909278989027745367e-08,-3.994263314876174413e-08,-4.079247640724603458e-08,-4.164231966573032504e-08,-4.249216292421461550e-08,-4.334200618269890595e-08,-4.419184944118319641e-08,-4.504169269966748687e-08,-4.589153595815177732e-08,-4.674137921663606778e-08,-4.759122247512035824e-08,-4.844106573360464870e-08,-4.929090899208893915e-08,-5.014075225057322961e-08,-5.099059550905752007e-08,-5.184043876754181052e-08,-5.269028202602610098e-08,-5.354012528451039144e-08 +0.000000000000000000e+00,-7.007489299796302378e-10,-1.401497859959260476e-09,-2.102246789938890610e-09,-2.802995719918520537e-09,-3.503744649898150465e-09,-4.204493579877780393e-09,-4.905242509857409906e-09,-5.605991439837039420e-09,-6.306740369816668934e-09,-7.007489299796298448e-09,-7.708238229775927962e-09,-8.408987159755557476e-09,-9.109736089735186990e-09,-9.810485019714816504e-09,-1.051123394969444602e-08,-1.121198287967407553e-08,-1.191273180965370505e-08,-1.261348073963333456e-08,-1.331422966961296407e-08,-1.401497859959259359e-08,-1.471572752957222310e-08,-1.541647645955185262e-08,-1.611722538953148048e-08,-1.681797431951110834e-08,-1.751872324949073619e-08,-1.821947217947036405e-08,-1.892022110944999191e-08,-1.962097003942961977e-08,-2.032171896940924763e-08,-2.102246789938887549e-08,-2.172321682936850335e-08,-2.242396575934813121e-08,-2.312471468932775907e-08,-2.382546361930738693e-08,-2.452621254928701479e-08,-2.522696147926664265e-08,-2.592771040924627051e-08,-2.662845933922589837e-08,-2.732920826920552623e-08,-2.802995719918515409e-08,-2.873070612916478195e-08,-2.943145505914440981e-08,-3.013220398912403767e-08,-3.083295291910366553e-08,-3.153370184908329339e-08,-3.223445077906292125e-08,-3.293519970904254911e-08,-3.363594863902217697e-08,-3.433669756900180483e-08,-3.503744649898143269e-08,-3.573819542896106054e-08,-3.643894435894068840e-08,-3.713969328892031626e-08,-3.784044221889994412e-08,-3.854119114887957198e-08,-3.924194007885919984e-08,-3.994268900883882770e-08,-4.064343793881845556e-08,-4.134418686879808342e-08,-4.204493579877771128e-08,-4.274568472875733914e-08,-4.344643365873696700e-08,-4.414718258871659486e-08 +0.000000000000000000e+00,-1.913210363562509945e-09,-3.826420727125019890e-09,-5.739631090687529836e-09,-7.652841454250039781e-09,-9.566051817812549726e-09,-1.147926218137505967e-08,-1.339247254493756962e-08,-1.530568290850007956e-08,-1.721889327206258785e-08,-1.913210363562509614e-08,-2.104531399918760443e-08,-2.295852436275011273e-08,-2.487173472631262102e-08,-2.678494508987512931e-08,-2.869815545343763760e-08,-3.061136581700014589e-08,-3.252457618056265418e-08,-3.443778654412516247e-08,-3.635099690768767076e-08,-3.826420727125017905e-08,-4.017741763481268734e-08,-4.209062799837519563e-08,-4.400383836193770392e-08,-4.591704872550021222e-08,-4.783025908906272051e-08,-4.974346945262522880e-08,-5.165667981618773709e-08,-5.356989017975024538e-08,-5.548310054331275367e-08,-5.739631090687526196e-08,-5.930952127043777025e-08,-6.122273163400027854e-08,-6.313594199756278683e-08,-6.504915236112529512e-08,-6.696236272468780341e-08,-6.887557308825031171e-08,-7.078878345181282000e-08,-7.270199381537532829e-08,-7.461520417893783658e-08,-7.652841454250034487e-08,-7.844162490606285316e-08,-8.035483526962536145e-08,-8.226804563318786974e-08,-8.418125599675037803e-08,-8.609446636031288632e-08,-8.800767672387539461e-08,-8.992088708743790290e-08,-9.183409745100041120e-08,-9.374730781456291949e-08,-9.566051817812542778e-08,-9.757372854168793607e-08,-9.948693890525044436e-08,-1.014001492688129526e-07,-1.033133596323754609e-07,-1.052265699959379692e-07,-1.071397803595004775e-07,-1.090529907230629858e-07,-1.109662010866254941e-07,-1.128794114501880024e-07,-1.147926218137505107e-07,-1.167058321773130190e-07,-1.186190425408755273e-07,-1.205322529044380356e-07 +0.000000000000000000e+00,-1.544364335743440783e-09,-3.088728671486881567e-09,-4.633093007230321936e-09,-6.177457342973762306e-09,-7.721821678717202676e-09,-9.266186014460643873e-09,-1.081055035020408507e-08,-1.235491468594752627e-08,-1.389927902169096746e-08,-1.544364335743440866e-08,-1.698800769317784820e-08,-1.853237202892128775e-08,-2.007673636466472729e-08,-2.162110070040816683e-08,-2.316546503615160637e-08,-2.470982937189504592e-08,-2.625419370763848546e-08,-2.779855804338192500e-08,-2.934292237912536454e-08,-3.088728671486880409e-08,-3.243165105061224363e-08,-3.397601538635568317e-08,-3.552037972209912271e-08,-3.706474405784256226e-08,-3.860910839358600180e-08,-4.015347272932944134e-08,-4.169783706507288088e-08,-4.324220140081632043e-08,-4.478656573655975997e-08,-4.633093007230319951e-08,-4.787529440804663905e-08,-4.941965874379007860e-08,-5.096402307953351814e-08,-5.250838741527695768e-08,-5.405275175102039722e-08,-5.559711608676383677e-08,-5.714148042250727631e-08,-5.868584475825071585e-08,-6.023020909399415540e-08,-6.177457342973759494e-08,-6.331893776548103448e-08,-6.486330210122447402e-08,-6.640766643696791357e-08,-6.795203077271135311e-08,-6.949639510845479265e-08,-7.104075944419823219e-08,-7.258512377994167174e-08,-7.412948811568511128e-08,-7.567385245142855082e-08,-7.721821678717199036e-08,-7.876258112291542991e-08,-8.030694545865886945e-08,-8.185130979440230899e-08,-8.339567413014574853e-08,-8.494003846588918808e-08,-8.648440280163262762e-08,-8.802876713737606716e-08,-8.957313147311950670e-08,-9.111749580886294625e-08,-9.266186014460638579e-08,-9.420622448034982533e-08,-9.575058881609326487e-08,-9.729495315183670442e-08 +0.000000000000000000e+00,-1.161998438048475379e-09,-2.323996876096950758e-09,-3.485995314145426136e-09,-4.647993752193901515e-09,-5.809992190242376894e-09,-6.971990628290852273e-09,-8.133989066339327652e-09,-9.295987504387803030e-09,-1.045798594243627841e-08,-1.161998438048475379e-08,-1.278198281853322917e-08,-1.394398125658170455e-08,-1.510597969463017992e-08,-1.626797813267865530e-08,-1.742997657072713068e-08,-1.859197500877560606e-08,-1.975397344682408144e-08,-2.091597188487255682e-08,-2.207797032292103220e-08,-2.323996876096950758e-08,-2.440196719901798295e-08,-2.556396563706645833e-08,-2.672596407511493371e-08,-2.788796251316340909e-08,-2.904996095121188447e-08,-3.021195938926035985e-08,-3.137395782730883523e-08,-3.253595626535731061e-08,-3.369795470340578599e-08,-3.485995314145426136e-08,-3.602195157950273674e-08,-3.718395001755121212e-08,-3.834594845559968750e-08,-3.950794689364816288e-08,-4.066994533169663826e-08,-4.183194376974511364e-08,-4.299394220779358902e-08,-4.415594064584206439e-08,-4.531793908389053977e-08,-4.647993752193901515e-08,-4.764193595998749053e-08,-4.880393439803596591e-08,-4.996593283608444129e-08,-5.112793127413291667e-08,-5.228992971218139205e-08,-5.345192815022986742e-08,-5.461392658827834280e-08,-5.577592502632681818e-08,-5.693792346437529356e-08,-5.809992190242376894e-08,-5.926192034047224432e-08,-6.042391877852071970e-08,-6.158591721656919508e-08,-6.274791565461767045e-08,-6.390991409266614583e-08,-6.507191253071462121e-08,-6.623391096876309659e-08,-6.739590940681157197e-08,-6.855790784486004735e-08,-6.971990628290852273e-08,-7.088190472095699811e-08,-7.204390315900547349e-08,-7.320590159705394886e-08 +0.000000000000000000e+00,-1.913210363562087256e-09,-3.826420727124174512e-09,-5.739631090686261768e-09,-7.652841454248349024e-09,-9.566051817810437107e-09,-1.147926218137252519e-08,-1.339247254493461327e-08,-1.530568290849670136e-08,-1.721889327205878944e-08,-1.913210363562087752e-08,-2.104531399918296561e-08,-2.295852436274505369e-08,-2.487173472630714177e-08,-2.678494508986922985e-08,-2.869815545343131794e-08,-3.061136581699340933e-08,-3.252457618055550072e-08,-3.443778654411759211e-08,-3.635099690767968350e-08,-3.826420727124177490e-08,-4.017741763480386629e-08,-4.209062799836595768e-08,-4.400383836192804907e-08,-4.591704872549014046e-08,-4.783025908905223186e-08,-4.974346945261432325e-08,-5.165667981617641464e-08,-5.356989017973850603e-08,-5.548310054330059742e-08,-5.739631090686268881e-08,-5.930952127042478021e-08,-6.122273163398687160e-08,-6.313594199754896961e-08,-6.504915236111106762e-08,-6.696236272467316563e-08,-6.887557308823526364e-08,-7.078878345179736164e-08,-7.270199381535945965e-08,-7.461520417892155766e-08,-7.652841454248365567e-08,-7.844162490604575368e-08,-8.035483526960785169e-08,-8.226804563316994970e-08,-8.418125599673204771e-08,-8.609446636029414572e-08,-8.800767672385624373e-08,-8.992088708741834174e-08,-9.183409745098043975e-08,-9.374730781454253776e-08,-9.566051817810463577e-08,-9.757372854166673377e-08,-9.948693890522883178e-08,-1.014001492687909298e-07,-1.033133596323530278e-07,-1.052265699959151258e-07,-1.071397803594772238e-07,-1.090529907230393218e-07,-1.109662010866014198e-07,-1.128794114501635178e-07,-1.147926218137256159e-07,-1.167058321772877139e-07,-1.186190425408498119e-07,-1.205322529044119099e-07 +0.000000000000000000e+00,-1.544364335743138035e-09,-3.088728671486276070e-09,-4.633093007229413692e-09,-6.177457342972551314e-09,-7.721821678715688935e-09,-9.266186014458827384e-09,-1.081055035020196583e-08,-1.235491468594510428e-08,-1.389927902168824273e-08,-1.544364335743138118e-08,-1.698800769317451963e-08,-1.853237202891765808e-08,-2.007673636466079653e-08,-2.162110070040393497e-08,-2.316546503614707342e-08,-2.470982937189021187e-08,-2.625419370763335032e-08,-2.779855804337648877e-08,-2.934292237911962722e-08,-3.088728671486276898e-08,-3.243165105060591073e-08,-3.397601538634905249e-08,-3.552037972209219425e-08,-3.706474405783533601e-08,-3.860910839357847776e-08,-4.015347272932161952e-08,-4.169783706506476128e-08,-4.324220140080790304e-08,-4.478656573655104479e-08,-4.633093007229418655e-08,-4.787529440803732831e-08,-4.941965874378047007e-08,-5.096402307952361182e-08,-5.250838741526675358e-08,-5.405275175100989534e-08,-5.559711608675303710e-08,-5.714148042249617885e-08,-5.868584475823932061e-08,-6.023020909398245575e-08,-6.177457342972559089e-08,-6.331893776546872603e-08,-6.486330210121186117e-08,-6.640766643695499631e-08,-6.795203077269813145e-08,-6.949639510844126659e-08,-7.104075944418440173e-08,-7.258512377992753687e-08,-7.412948811567067201e-08,-7.567385245141380715e-08,-7.721821678715694229e-08,-7.876258112290007743e-08,-8.030694545864321257e-08,-8.185130979438634771e-08,-8.339567413012948285e-08,-8.494003846587261799e-08,-8.648440280161575313e-08,-8.802876713735888827e-08,-8.957313147310202341e-08,-9.111749580884515855e-08,-9.266186014458829369e-08,-9.420622448033142883e-08,-9.575058881607456397e-08,-9.729495315181769911e-08 +0.000000000000000000e+00,-1.161998438048083709e-09,-2.323996876096167418e-09,-3.485995314144251126e-09,-4.647993752192334835e-09,-5.809992190240418130e-09,-6.971990628288501425e-09,-8.133989066336584721e-09,-9.295987504384668016e-09,-1.045798594243275131e-08,-1.161998438048083461e-08,-1.278198281852891790e-08,-1.394398125657700120e-08,-1.510597969462508449e-08,-1.626797813267316944e-08,-1.742997657072125439e-08,-1.859197500876933934e-08,-1.975397344681742429e-08,-2.091597188486550924e-08,-2.207797032291359419e-08,-2.323996876096167914e-08,-2.440196719900976409e-08,-2.556396563705784904e-08,-2.672596407510593399e-08,-2.788796251315401894e-08,-2.904996095120210389e-08,-3.021195938925018884e-08,-3.137395782729827379e-08,-3.253595626534635873e-08,-3.369795470339444368e-08,-3.485995314144252863e-08,-3.602195157949061358e-08,-3.718395001753869853e-08,-3.834594845558678348e-08,-3.950794689363486843e-08,-4.066994533168295338e-08,-4.183194376973103833e-08,-4.299394220777912328e-08,-4.415594064582720823e-08,-4.531793908387529318e-08,-4.647993752192337813e-08,-4.764193595997146308e-08,-4.880393439801954803e-08,-4.996593283606763298e-08,-5.112793127411571793e-08,-5.228992971216380288e-08,-5.345192815021188783e-08,-5.461392658825997278e-08,-5.577592502630805773e-08,-5.693792346435614268e-08,-5.809992190240422763e-08,-5.926192034045231257e-08,-6.042391877850039091e-08,-6.158591721654846924e-08,-6.274791565459654757e-08,-6.390991409264462590e-08,-6.507191253069270424e-08,-6.623391096874078257e-08,-6.739590940678886090e-08,-6.855790784483693923e-08,-6.971990628288501756e-08,-7.088190472093309590e-08,-7.204390315898117423e-08,-7.320590159702925256e-08 +0.000000000000000000e+00,-2.644333645644888732e-09,-5.288667291289777464e-09,-7.933000936934665783e-09,-1.057733458257955327e-08,-1.322166822822444077e-08,-1.586600187386932826e-08,-1.851033551951421409e-08,-2.115466916515909993e-08,-2.379900281080398577e-08,-2.644333645644887161e-08,-2.908767010209375744e-08,-3.173200374773864328e-08,-3.437633739338352912e-08,-3.702067103902841495e-08,-3.966500468467330079e-08,-4.230933833031818663e-08,-4.495367197596307246e-08,-4.759800562160795830e-08,-5.024233926725284414e-08,-5.288667291289772998e-08,-5.553100655854261581e-08,-5.817534020418750165e-08,-6.081967384983238087e-08,-6.346400749547726009e-08,-6.610834114112213931e-08,-6.875267478676701853e-08,-7.139700843241189775e-08,-7.404134207805677697e-08,-7.668567572370165619e-08,-7.933000936934653541e-08,-8.197434301499141463e-08,-8.461867666063629385e-08,-8.726301030628117307e-08,-8.990734395192605229e-08,-9.255167759757093151e-08,-9.519601124321581072e-08,-9.784034488886068994e-08,-1.004846785345055692e-07,-1.031290121801504484e-07,-1.057733458257953276e-07,-1.084176794714402068e-07,-1.110620131170850860e-07,-1.137063467627299653e-07,-1.163506804083748445e-07,-1.189950140540197237e-07,-1.216393476996646029e-07,-1.242836813453094821e-07,-1.269280149909543614e-07,-1.295723486365992406e-07,-1.322166822822441198e-07,-1.348610159278889990e-07,-1.375053495735338782e-07,-1.401496832191787575e-07,-1.427940168648236367e-07,-1.454383505104685159e-07,-1.480826841561133951e-07,-1.507270178017582743e-07,-1.533713514474031536e-07,-1.560156850930480328e-07,-1.586600187386929120e-07,-1.613043523843377912e-07,-1.639486860299826704e-07,-1.665930196756275497e-07 +0.000000000000000000e+00,-2.276980632187648954e-09,-4.553961264375297908e-09,-6.830941896562946862e-09,-9.107922528750595815e-09,-1.138490316093824477e-08,-1.366188379312589372e-08,-1.593886442531354433e-08,-1.821584505750119494e-08,-2.049282568968884555e-08,-2.276980632187649616e-08,-2.504678695406414676e-08,-2.732376758625179737e-08,-2.960074821843944798e-08,-3.187772885062710190e-08,-3.415470948281475581e-08,-3.643169011500240973e-08,-3.870867074719006365e-08,-4.098565137937771757e-08,-4.326263201156537148e-08,-4.553961264375302540e-08,-4.781659327594067932e-08,-5.009357390812833323e-08,-5.237055454031598715e-08,-5.464753517250364107e-08,-5.692451580469129498e-08,-5.920149643687894890e-08,-6.147847706906660282e-08,-6.375545770125425673e-08,-6.603243833344191065e-08,-6.830941896562956457e-08,-7.058639959781721849e-08,-7.286338023000487240e-08,-7.514036086219252632e-08,-7.741734149438018024e-08,-7.969432212656783415e-08,-8.197130275875548807e-08,-8.424828339094314199e-08,-8.652526402313079590e-08,-8.880224465531844982e-08,-9.107922528750610374e-08,-9.335620591969375765e-08,-9.563318655188141157e-08,-9.791016718406906549e-08,-1.001871478162567194e-07,-1.024641284484443733e-07,-1.047411090806320272e-07,-1.070180897128196812e-07,-1.092950703450073351e-07,-1.115720509771949890e-07,-1.138490316093826429e-07,-1.161260122415702968e-07,-1.184029928737579507e-07,-1.206799735059455914e-07,-1.229569541381332321e-07,-1.252339347703208728e-07,-1.275109154025085135e-07,-1.297878960346961542e-07,-1.320648766668837948e-07,-1.343418572990714355e-07,-1.366188379312590762e-07,-1.388958185634467169e-07,-1.411727991956343576e-07,-1.434497798278219982e-07 +0.000000000000000000e+00,-1.646541906200032781e-09,-3.293083812400065561e-09,-4.939625718600098755e-09,-6.586167624800131949e-09,-8.232709531000165144e-09,-9.879251437200197511e-09,-1.152579334340022988e-08,-1.317233524960026224e-08,-1.481887715580029461e-08,-1.646541906200032698e-08,-1.811196096820035935e-08,-1.975850287440039171e-08,-2.140504478060042408e-08,-2.305158668680045645e-08,-2.469812859300048881e-08,-2.634467049920052118e-08,-2.799121240540055355e-08,-2.963775431160058591e-08,-3.128429621780061828e-08,-3.293083812400064734e-08,-3.457738003020067640e-08,-3.622392193640070546e-08,-3.787046384260073451e-08,-3.951700574880076357e-08,-4.116354765500079263e-08,-4.281008956120082169e-08,-4.445663146740085075e-08,-4.610317337360087981e-08,-4.774971527980090886e-08,-4.939625718600093792e-08,-5.104279909220096698e-08,-5.268934099840099604e-08,-5.433588290460102510e-08,-5.598242481080105416e-08,-5.762896671700108321e-08,-5.927550862320111227e-08,-6.092205052940114133e-08,-6.256859243560117039e-08,-6.421513434180119945e-08,-6.586167624800122850e-08,-6.750821815420125756e-08,-6.915476006040128662e-08,-7.080130196660131568e-08,-7.244784387280134474e-08,-7.409438577900137380e-08,-7.574092768520140285e-08,-7.738746959140143191e-08,-7.903401149760146097e-08,-8.068055340380149003e-08,-8.232709531000151909e-08,-8.397363721620154815e-08,-8.562017912240157720e-08,-8.726672102860160626e-08,-8.891326293480163532e-08,-9.055980484100166438e-08,-9.220634674720169344e-08,-9.385288865340172249e-08,-9.549943055960175155e-08,-9.714597246580178061e-08,-9.879251437200180967e-08,-1.004390562782018387e-07,-1.020855981844018678e-07,-1.037321400906018968e-07 +0.000000000000000000e+00,-2.644333645644156264e-09,-5.288667291288312528e-09,-7.933000936932468791e-09,-1.057733458257662506e-08,-1.322166822822078132e-08,-1.586600187386493758e-08,-1.851033551950909219e-08,-2.115466916515324680e-08,-2.379900281079740141e-08,-2.644333645644155602e-08,-2.908767010208571063e-08,-3.173200374772986855e-08,-3.437633739337402647e-08,-3.702067103901818438e-08,-3.966500468466234230e-08,-4.230933833030650022e-08,-4.495367197595065814e-08,-4.759800562159481606e-08,-5.024233926723897397e-08,-5.288667291288313189e-08,-5.553100655852728981e-08,-5.817534020417144773e-08,-6.081967384981559903e-08,-6.346400749545975033e-08,-6.610834114110390163e-08,-6.875267478674805293e-08,-7.139700843239220423e-08,-7.404134207803635553e-08,-7.668567572368050683e-08,-7.933000936932465813e-08,-8.197434301496880943e-08,-8.461867666061296074e-08,-8.726301030625711204e-08,-8.990734395190126334e-08,-9.255167759754541464e-08,-9.519601124318956594e-08,-9.784034488883371724e-08,-1.004846785344778685e-07,-1.031290121801220198e-07,-1.057733458257661711e-07,-1.084176794714103224e-07,-1.110620131170544737e-07,-1.137063467626986250e-07,-1.163506804083427763e-07,-1.189950140539869276e-07,-1.216393476996310922e-07,-1.242836813452752567e-07,-1.269280149909194213e-07,-1.295723486365635858e-07,-1.322166822822077503e-07,-1.348610159278519149e-07,-1.375053495734960794e-07,-1.401496832191402439e-07,-1.427940168647844085e-07,-1.454383505104285730e-07,-1.480826841560727375e-07,-1.507270178017169021e-07,-1.533713514473610666e-07,-1.560156850930052311e-07,-1.586600187386493957e-07,-1.613043523842935602e-07,-1.639486860299377247e-07,-1.665930196755818893e-07 +0.000000000000000000e+00,-2.276980632187077372e-09,-4.553961264374154744e-09,-6.830941896561232116e-09,-9.107922528748309488e-09,-1.138490316093538769e-08,-1.366188379312246589e-08,-1.593886442530954409e-08,-1.821584505749662229e-08,-2.049282568968370048e-08,-2.276980632187077868e-08,-2.504678695405785688e-08,-2.732376758624493508e-08,-2.960074821843201328e-08,-3.187772885061909479e-08,-3.415470948280617961e-08,-3.643169011499326442e-08,-3.870867074718034924e-08,-4.098565137936743406e-08,-4.326263201155451887e-08,-4.553961264374160369e-08,-4.781659327592868851e-08,-5.009357390811577332e-08,-5.237055454030285814e-08,-5.464753517248994296e-08,-5.692451580467702777e-08,-5.920149643686411259e-08,-6.147847706905119741e-08,-6.375545770123828222e-08,-6.603243833342536704e-08,-6.830941896561245186e-08,-7.058639959779953667e-08,-7.286338022998662149e-08,-7.514036086217370631e-08,-7.741734149436079112e-08,-7.969432212654787594e-08,-8.197130275873496076e-08,-8.424828339092204557e-08,-8.652526402310913039e-08,-8.880224465529621521e-08,-9.107922528748330002e-08,-9.335620591967038484e-08,-9.563318655185746966e-08,-9.791016718404455447e-08,-1.001871478162316393e-07,-1.024641284484187241e-07,-1.047411090806058089e-07,-1.070180897127928937e-07,-1.092950703449799786e-07,-1.115720509771670634e-07,-1.138490316093541482e-07,-1.161260122415412330e-07,-1.184029928737283178e-07,-1.206799735059154159e-07,-1.229569541381025272e-07,-1.252339347702896384e-07,-1.275109154024767497e-07,-1.297878960346638610e-07,-1.320648766668509723e-07,-1.343418572990380836e-07,-1.366188379312251949e-07,-1.388958185634123062e-07,-1.411727991955994175e-07,-1.434497798277865287e-07 +0.000000000000000000e+00,-1.646541906199352838e-09,-3.293083812398705676e-09,-4.939625718598058928e-09,-6.586167624797412180e-09,-8.232709530996765431e-09,-9.879251437196117856e-09,-1.152579334339547028e-08,-1.317233524959482270e-08,-1.481887715579417513e-08,-1.646541906199352755e-08,-1.811196096819288163e-08,-1.975850287439223571e-08,-2.140504478059158979e-08,-2.305158668679094387e-08,-2.469812859299029795e-08,-2.634467049918965203e-08,-2.799121240538900611e-08,-2.963775431158836018e-08,-3.128429621778771426e-08,-3.293083812398706834e-08,-3.457738003018642242e-08,-3.622392193638577650e-08,-3.787046384258513058e-08,-3.951700574878448466e-08,-4.116354765498383874e-08,-4.281008956118319282e-08,-4.445663146738254689e-08,-4.610317337358190097e-08,-4.774971527978125505e-08,-4.939625718598060913e-08,-5.104279909217996321e-08,-5.268934099837931729e-08,-5.433588290457867137e-08,-5.598242481077802545e-08,-5.762896671697737953e-08,-5.927550862317673360e-08,-6.092205052937608768e-08,-6.256859243557544176e-08,-6.421513434177479584e-08,-6.586167624797414992e-08,-6.750821815417350400e-08,-6.915476006037285808e-08,-7.080130196657221216e-08,-7.244784387277156624e-08,-7.409438577897092031e-08,-7.574092768517027439e-08,-7.738746959136962847e-08,-7.903401149756898255e-08,-8.068055340376833663e-08,-8.232709530996769071e-08,-8.397363721616704479e-08,-8.562017912236639887e-08,-8.726672102856575295e-08,-8.891326293476510702e-08,-9.055980484096446110e-08,-9.220634674716381518e-08,-9.385288865336316926e-08,-9.549943055956252334e-08,-9.714597246576187742e-08,-9.879251437196123150e-08,-1.004390562781605856e-07,-1.020855981843599397e-07,-1.037321400905592937e-07 +0.000000000000000000e+00,-3.365407980572784897e-09,-6.730815961145569793e-09,-1.009622394171835469e-08,-1.346163192229113959e-08,-1.682703990286392448e-08,-2.019244788343670938e-08,-2.355785586400949428e-08,-2.692326384458227917e-08,-3.028867182515506407e-08,-3.365407980572784897e-08,-3.701948778630063386e-08,-4.038489576687341876e-08,-4.375030374744620366e-08,-4.711571172801898855e-08,-5.048111970859177345e-08,-5.384652768916455835e-08,-5.721193566973734324e-08,-6.057734365031012814e-08,-6.394275163088291304e-08,-6.730815961145569793e-08,-7.067356759202848283e-08,-7.403897557260126773e-08,-7.740438355317405262e-08,-8.076979153374683752e-08,-8.413519951431962242e-08,-8.750060749489240731e-08,-9.086601547546519221e-08,-9.423142345603797711e-08,-9.759683143661076200e-08,-1.009622394171835469e-07,-1.043276473977563318e-07,-1.076930553783291167e-07,-1.110584633589019016e-07,-1.144238713394746865e-07,-1.177892793200474714e-07,-1.211546873006202563e-07,-1.245200952811930544e-07,-1.278855032617658525e-07,-1.312509112423386507e-07,-1.346163192229114488e-07,-1.379817272034842469e-07,-1.413471351840570451e-07,-1.447125431646298432e-07,-1.480779511452026413e-07,-1.514433591257754395e-07,-1.548087671063482376e-07,-1.581741750869210357e-07,-1.615395830674938339e-07,-1.649049910480666320e-07,-1.682703990286394301e-07,-1.716358070092122283e-07,-1.750012149897850264e-07,-1.783666229703578245e-07,-1.817320309509306226e-07,-1.850974389315034208e-07,-1.884628469120762189e-07,-1.918282548926490170e-07,-1.951936628732218152e-07,-1.985590708537946133e-07,-2.019244788343674114e-07,-2.052898868149402096e-07,-2.086552947955130077e-07,-2.120207027760858058e-07 +0.000000000000000000e+00,-3.005526085022038877e-09,-6.011052170044077755e-09,-9.016578255066116632e-09,-1.202210434008815551e-08,-1.502763042511019439e-08,-1.803315651013223326e-08,-2.103868259515427214e-08,-2.404420868017631102e-08,-2.704973476519834990e-08,-3.005526085022038877e-08,-3.306078693524242765e-08,-3.606631302026446653e-08,-3.907183910528650541e-08,-4.207736519030854428e-08,-4.508289127533058316e-08,-4.808841736035262204e-08,-5.109394344537466091e-08,-5.409946953039669979e-08,-5.710499561541873867e-08,-6.011052170044077755e-08,-6.311604778546281642e-08,-6.612157387048485530e-08,-6.912709995550689418e-08,-7.213262604052893306e-08,-7.513815212555097193e-08,-7.814367821057301081e-08,-8.114920429559504969e-08,-8.415473038061708856e-08,-8.716025646563912744e-08,-9.016578255066116632e-08,-9.317130863568320520e-08,-9.617683472070524407e-08,-9.918236080572728295e-08,-1.021878868907493218e-07,-1.051934129757713607e-07,-1.081989390607933996e-07,-1.112044651458154385e-07,-1.142099912308374773e-07,-1.172155173158595162e-07,-1.202210434008815551e-07,-1.232265694859035940e-07,-1.262320955709256328e-07,-1.292376216559476717e-07,-1.322431477409697106e-07,-1.352486738259917495e-07,-1.382541999110137884e-07,-1.412597259960358272e-07,-1.442652520810578661e-07,-1.472707781660799050e-07,-1.502763042511019439e-07,-1.532818303361239827e-07,-1.562873564211460216e-07,-1.592928825061680605e-07,-1.622984085911900994e-07,-1.653039346762121383e-07,-1.683094607612341771e-07,-1.713149868462562160e-07,-1.743205129312782549e-07,-1.773260390163002938e-07,-1.803315651013223326e-07,-1.833370911863443715e-07,-1.863426172713664104e-07,-1.893481433563884493e-07 +0.000000000000000000e+00,-2.128728641668059429e-09,-4.257457283336118859e-09,-6.386185925004178288e-09,-8.514914566672237718e-09,-1.064364320834029797e-08,-1.277237185000835823e-08,-1.490110049167641849e-08,-1.702982913334447874e-08,-1.915855777501253900e-08,-2.128728641668059926e-08,-2.341601505834865951e-08,-2.554474370001671977e-08,-2.767347234168478003e-08,-2.980220098335284028e-08,-3.193092962502090385e-08,-3.405965826668896410e-08,-3.618838690835702436e-08,-3.831711555002508462e-08,-4.044584419169314487e-08,-4.257457283336120513e-08,-4.470330147502926539e-08,-4.683203011669732564e-08,-4.896075875836538590e-08,-5.108948740003344616e-08,-5.321821604170150641e-08,-5.534694468336956667e-08,-5.747567332503762693e-08,-5.960440196670568718e-08,-6.173313060837374744e-08,-6.386185925004180770e-08,-6.599058789170986795e-08,-6.811931653337792821e-08,-7.024804517504598847e-08,-7.237677381671404872e-08,-7.450550245838210898e-08,-7.663423110005016924e-08,-7.876295974171822949e-08,-8.089168838338628975e-08,-8.302041702505435001e-08,-8.514914566672241026e-08,-8.727787430839047052e-08,-8.940660295005853078e-08,-9.153533159172659103e-08,-9.366406023339465129e-08,-9.579278887506271155e-08,-9.792151751673077180e-08,-1.000502461583988321e-07,-1.021789748000668923e-07,-1.043077034417349526e-07,-1.064364320834030128e-07,-1.085651607250710731e-07,-1.106938893667391333e-07,-1.128226180084071936e-07,-1.149513466500752539e-07,-1.170800752917433141e-07,-1.192088039334113744e-07,-1.213375325750794346e-07,-1.234662612167474949e-07,-1.255949898584155551e-07,-1.277237185000836154e-07,-1.298524471417516756e-07,-1.319811757834197359e-07,-1.341099044250877962e-07 +0.000000000000000000e+00,-3.365407980571704185e-09,-6.730815961143408370e-09,-1.009622394171511214e-08,-1.346163192228681509e-08,-1.682703990285851803e-08,-2.019244788343022098e-08,-2.355785586400192392e-08,-2.692326384457362686e-08,-3.028867182514532981e-08,-3.365407980571703606e-08,-3.701948778628874232e-08,-4.038489576686044857e-08,-4.375030374743215482e-08,-4.711571172800386107e-08,-5.048111970857556733e-08,-5.384652768914727358e-08,-5.721193566971897983e-08,-6.057734365029068609e-08,-6.394275163086238572e-08,-6.730815961143408536e-08,-7.067356759200578499e-08,-7.403897557257748463e-08,-7.740438355314918427e-08,-8.076979153372088390e-08,-8.413519951429258354e-08,-8.750060749486428317e-08,-9.086601547543598281e-08,-9.423142345600768244e-08,-9.759683143657938208e-08,-1.009622394171510817e-07,-1.043276473977227814e-07,-1.076930553782944810e-07,-1.110584633588661806e-07,-1.144238713394378803e-07,-1.177892793200095799e-07,-1.211546873005812928e-07,-1.245200952811530056e-07,-1.278855032617247185e-07,-1.312509112422964314e-07,-1.346163192228681442e-07,-1.379817272034398571e-07,-1.413471351840115700e-07,-1.447125431645832829e-07,-1.480779511451549957e-07,-1.514433591257267086e-07,-1.548087671062984215e-07,-1.581741750868701343e-07,-1.615395830674418472e-07,-1.649049910480135601e-07,-1.682703990285852730e-07,-1.716358070091569858e-07,-1.750012149897286987e-07,-1.783666229703004116e-07,-1.817320309508721244e-07,-1.850974389314438373e-07,-1.884628469120155502e-07,-1.918282548925872630e-07,-1.951936628731589759e-07,-1.985590708537306888e-07,-2.019244788343024017e-07,-2.052898868148741145e-07,-2.086552947954458274e-07,-2.120207027760175403e-07 +0.000000000000000000e+00,-3.005526085021136837e-09,-6.011052170042273674e-09,-9.016578255063410097e-09,-1.202210434008454569e-08,-1.502763042510568129e-08,-1.803315651012681689e-08,-2.103868259514795248e-08,-2.404420868016908808e-08,-2.704973476519022367e-08,-3.005526085021136258e-08,-3.306078693523250148e-08,-3.606631302025364039e-08,-3.907183910527477929e-08,-4.207736519029591820e-08,-4.508289127531705710e-08,-4.808841736033819601e-08,-5.109394344535933491e-08,-5.409946953038047382e-08,-5.710499561540161272e-08,-6.011052170042275163e-08,-6.311604778544389053e-08,-6.612157387046502944e-08,-6.912709995548616834e-08,-7.213262604050730725e-08,-7.513815212552844615e-08,-7.814367821054958506e-08,-8.114920429557072396e-08,-8.415473038059186286e-08,-8.716025646561300177e-08,-9.016578255063414067e-08,-9.317130863565527958e-08,-9.617683472067641848e-08,-9.918236080569755739e-08,-1.021878868907186963e-07,-1.051934129757398352e-07,-1.081989390607609741e-07,-1.112044651457821130e-07,-1.142099912308032519e-07,-1.172155173158243908e-07,-1.202210434008455297e-07,-1.232265694858666686e-07,-1.262320955708878075e-07,-1.292376216559089464e-07,-1.322431477409300853e-07,-1.352486738259512242e-07,-1.382541999109723632e-07,-1.412597259959935021e-07,-1.442652520810146410e-07,-1.472707781660357799e-07,-1.502763042510569188e-07,-1.532818303360780577e-07,-1.562873564210991966e-07,-1.592928825061203355e-07,-1.622984085911414744e-07,-1.653039346761626133e-07,-1.683094607611837522e-07,-1.713149868462048911e-07,-1.743205129312260300e-07,-1.773260390162471689e-07,-1.803315651012683078e-07,-1.833370911862894467e-07,-1.863426172713105856e-07,-1.893481433563317245e-07 +0.000000000000000000e+00,-2.128728641667007669e-09,-4.257457283334015338e-09,-6.386185925001022594e-09,-8.514914566668029023e-09,-1.064364320833503545e-08,-1.277237185000204188e-08,-1.490110049166904831e-08,-1.702982913333605474e-08,-1.915855777500305951e-08,-2.128728641667006428e-08,-2.341601505833706906e-08,-2.554474370000407383e-08,-2.767347234167107861e-08,-2.980220098333808338e-08,-3.193092962500508816e-08,-3.405965826667208962e-08,-3.618838690833909109e-08,-3.831711555000609255e-08,-4.044584419167309402e-08,-4.257457283334009548e-08,-4.470330147500709695e-08,-4.683203011667409841e-08,-4.896075875834109988e-08,-5.108948740000810134e-08,-5.321821604167510281e-08,-5.534694468334210427e-08,-5.747567332500910574e-08,-5.960440196667610720e-08,-6.173313060834310867e-08,-6.386185925001011014e-08,-6.599058789167711160e-08,-6.811931653334411307e-08,-7.024804517501111453e-08,-7.237677381667811600e-08,-7.450550245834511746e-08,-7.663423110001211893e-08,-7.876295974167912039e-08,-8.089168838334612186e-08,-8.302041702501312332e-08,-8.514914566668012479e-08,-8.727787430834712625e-08,-8.940660295001412772e-08,-9.153533159168112919e-08,-9.366406023334813065e-08,-9.579278887501513212e-08,-9.792151751668213358e-08,-1.000502461583491350e-07,-1.021789748000161365e-07,-1.043077034416831380e-07,-1.064364320833501394e-07,-1.085651607250171409e-07,-1.106938893666841424e-07,-1.128226180083511438e-07,-1.149513466500181453e-07,-1.170800752916851468e-07,-1.192088039333521482e-07,-1.213375325750191629e-07,-1.234662612166861909e-07,-1.255949898583532188e-07,-1.277237185000202467e-07,-1.298524471416872747e-07,-1.319811757833543026e-07,-1.341099044250213305e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.429228554219150301e-09,-2.858457108438300602e-09,-4.287685662657450697e-09,-5.716914216876600377e-09,-7.146142771095750058e-09,-8.575371325314899739e-09,-1.000459987953404859e-08,-1.143382843375319745e-08,-1.286305698797234630e-08,-1.429228554219149515e-08,-1.572151409641064401e-08,-1.715074265062979286e-08,-1.857997120484894171e-08,-2.000919975906809057e-08,-2.143842831328723942e-08,-2.286765686750638827e-08,-2.429688542172553713e-08,-2.572611397594468598e-08,-2.715534253016383483e-08,-2.858457108438298369e-08,-3.001379963860213254e-08,-3.144302819282128140e-08,-3.287225674704043025e-08,-3.430148530125957910e-08,-3.573071385547872796e-08,-3.715994240969787681e-08,-3.858917096391702566e-08,-4.001839951813617452e-08,-4.144762807235532337e-08,-4.287685662657447222e-08,-4.430608518079362108e-08,-4.573531373501276993e-08,-4.716454228923191878e-08,-4.859377084345106764e-08,-5.002299939767021649e-08,-5.145222795188936535e-08,-5.288145650610851420e-08,-5.431068506032766305e-08,-5.573991361454681191e-08,-5.716914216876596076e-08,-5.859837072298510961e-08,-6.002759927720425185e-08,-6.145682783142340070e-08,-6.288605638564254956e-08,-6.431528493986169841e-08,-6.574451349408084726e-08,-6.717374204829999612e-08,-6.860297060251914497e-08,-7.003219915673829382e-08,-7.146142771095744268e-08,-7.289065626517659153e-08,-7.431988481939574038e-08,-7.574911337361488924e-08,-7.717834192783403809e-08,-7.860757048205318694e-08,-8.003679903627233580e-08,-8.146602759049148465e-08,-8.289525614471063351e-08,-8.432448469892978236e-08,-8.575371325314893121e-08,-8.718294180736808007e-08,-8.861217036158722892e-08,-9.004139891580637777e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.294722333263342693e-10,-1.258944466652668539e-09,-1.888416699979002601e-09,-2.517888933305336663e-09,-3.147361166631670726e-09,-3.776833399958005202e-09,-4.406305633284339678e-09,-5.035777866610674154e-09,-5.665250099937008630e-09,-6.294722333263343106e-09,-6.924194566589677582e-09,-7.553666799916012058e-09,-8.183139033242346534e-09,-8.812611266568681010e-09,-9.442083499895015486e-09,-1.007155573322134996e-08,-1.070102796654768444e-08,-1.133050019987401891e-08,-1.195997243320035339e-08,-1.258944466652668787e-08,-1.321891689985302234e-08,-1.384838913317935682e-08,-1.447786136650569129e-08,-1.510733359983202743e-08,-1.573680583315836356e-08,-1.636627806648469969e-08,-1.699575029981103582e-08,-1.762522253313737195e-08,-1.825469476646370808e-08,-1.888416699979004421e-08,-1.951363923311638034e-08,-2.014311146644271647e-08,-2.077258369976905260e-08,-2.140205593309538873e-08,-2.203152816642172486e-08,-2.266100039974806099e-08,-2.329047263307439712e-08,-2.391994486640073325e-08,-2.454941709972706938e-08,-2.517888933305340551e-08,-2.580836156637974164e-08,-2.643783379970607777e-08,-2.706730603303241390e-08,-2.769677826635875003e-08,-2.832625049968508616e-08,-2.895572273301142229e-08,-2.958519496633775842e-08,-3.021466719966409456e-08,-3.084413943299042738e-08,-3.147361166631676020e-08,-3.210308389964309302e-08,-3.273255613296942584e-08,-3.336202836629575866e-08,-3.399150059962209149e-08,-3.462097283294842431e-08,-3.525044506627475713e-08,-3.587991729960108995e-08,-3.650938953292742277e-08,-3.713886176625375559e-08,-3.776833399958008842e-08,-3.839780623290642124e-08,-3.902727846623275406e-08,-3.965675069955908688e-08 +0.000000000000000000e+00,-8.832056515526068968e-10,-1.766411303105213794e-09,-2.649616954657820587e-09,-3.532822606210427174e-09,-4.416028257763033347e-09,-5.299233909315639520e-09,-6.182439560868245693e-09,-7.065645212420851866e-09,-7.948850863973458039e-09,-8.832056515526063384e-09,-9.715262167078668730e-09,-1.059846781863127408e-08,-1.148167347018387942e-08,-1.236487912173648477e-08,-1.324808477328909011e-08,-1.413129042484169546e-08,-1.501449607639430246e-08,-1.589770172794690946e-08,-1.678090737949951646e-08,-1.766411303105212346e-08,-1.854731868260473046e-08,-1.943052433415733746e-08,-2.031372998570994446e-08,-2.119693563726255146e-08,-2.208014128881515846e-08,-2.296334694036776546e-08,-2.384655259192037246e-08,-2.472975824347297946e-08,-2.561296389502558646e-08,-2.649616954657819346e-08,-2.737937519813080046e-08,-2.826258084968340746e-08,-2.914578650123601446e-08,-3.002899215278861815e-08,-3.091219780434122185e-08,-3.179540345589382554e-08,-3.267860910744642923e-08,-3.356181475899903292e-08,-3.444502041055163661e-08,-3.532822606210424030e-08,-3.621143171365684399e-08,-3.709463736520944769e-08,-3.797784301676205138e-08,-3.886104866831465507e-08,-3.974425431986725876e-08,-4.062745997141986245e-08,-4.151066562297246614e-08,-4.239387127452506983e-08,-4.327707692607767353e-08,-4.416028257763027722e-08,-4.504348822918288091e-08,-4.592669388073548460e-08,-4.680989953228808829e-08,-4.769310518384069198e-08,-4.857631083539329567e-08,-4.945951648694589937e-08,-5.034272213849850306e-08,-5.122592779005110675e-08,-5.210913344160371044e-08,-5.299233909315631413e-08,-5.387554474470891782e-08,-5.475875039626152152e-08,-5.564195604781412521e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.429228554219006578e-09,-2.858457108438013157e-09,-4.287685662657019735e-09,-5.716914216876026314e-09,-7.146142771095032892e-09,-8.575371325314039471e-09,-1.000459987953304605e-08,-1.143382843375205263e-08,-1.286305698797105921e-08,-1.429228554219006578e-08,-1.572151409640907236e-08,-1.715074265062807894e-08,-1.857997120484708552e-08,-2.000919975906609210e-08,-2.143842831328509868e-08,-2.286765686750410526e-08,-2.429688542172311183e-08,-2.572611397594211841e-08,-2.715534253016112499e-08,-2.858457108438013157e-08,-3.001379963859913484e-08,-3.144302819281813811e-08,-3.287225674703714138e-08,-3.430148530125614465e-08,-3.573071385547514792e-08,-3.715994240969415119e-08,-3.858917096391315446e-08,-4.001839951813215773e-08,-4.144762807235116100e-08,-4.287685662657016427e-08,-4.430608518078916754e-08,-4.573531373500817081e-08,-4.716454228922717408e-08,-4.859377084344617735e-08,-5.002299939766518062e-08,-5.145222795188418389e-08,-5.288145650610318716e-08,-5.431068506032219043e-08,-5.573991361454119369e-08,-5.716914216876019696e-08,-5.859837072297920023e-08,-6.002759927719820350e-08,-6.145682783141720677e-08,-6.288605638563621004e-08,-6.431528493985521331e-08,-6.574451349407421658e-08,-6.717374204829321985e-08,-6.860297060251222312e-08,-7.003219915673122639e-08,-7.146142771095022966e-08,-7.289065626516923293e-08,-7.431988481938823620e-08,-7.574911337360723947e-08,-7.717834192782624274e-08,-7.860757048204524601e-08,-8.003679903626424928e-08,-8.146602759048325255e-08,-8.289525614470225582e-08,-8.432448469892125909e-08,-8.575371325314026236e-08,-8.718294180735926563e-08,-8.861217036157826890e-08,-9.004139891579727217e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.294722333262468983e-10,-1.258944466652493797e-09,-1.888416699978740798e-09,-2.517888933304988007e-09,-3.147361166631235215e-09,-3.776833399957482424e-09,-4.406305633283729219e-09,-5.035777866609976014e-09,-5.665250099936222809e-09,-6.294722333262469603e-09,-6.924194566588716398e-09,-7.553666799914963193e-09,-8.183139033241209988e-09,-8.812611266567456783e-09,-9.442083499893703578e-09,-1.007155573321995037e-08,-1.070102796654619717e-08,-1.133050019987244396e-08,-1.195997243319869076e-08,-1.258944466652493755e-08,-1.321891689985118435e-08,-1.384838913317743114e-08,-1.447786136650367794e-08,-1.510733359982992308e-08,-1.573680583315616987e-08,-1.636627806648241667e-08,-1.699575029980866346e-08,-1.762522253313491026e-08,-1.825469476646115705e-08,-1.888416699978740385e-08,-1.951363923311365064e-08,-2.014311146643989744e-08,-2.077258369976614423e-08,-2.140205593309239103e-08,-2.203152816641863782e-08,-2.266100039974488462e-08,-2.329047263307113141e-08,-2.391994486639737821e-08,-2.454941709972362500e-08,-2.517888933304987180e-08,-2.580836156637611859e-08,-2.643783379970236539e-08,-2.706730603302861218e-08,-2.769677826635485898e-08,-2.832625049968110577e-08,-2.895572273300735257e-08,-2.958519496633359936e-08,-3.021466719965984616e-08,-3.084413943298609295e-08,-3.147361166631233975e-08,-3.210308389963858654e-08,-3.273255613296483334e-08,-3.336202836629108013e-08,-3.399150059961732693e-08,-3.462097283294357372e-08,-3.525044506626982051e-08,-3.587991729959606731e-08,-3.650938953292231410e-08,-3.713886176624856090e-08,-3.776833399957480769e-08,-3.839780623290105449e-08,-3.902727846622730128e-08,-3.965675069955354808e-08 +0.000000000000000000e+00,-8.832056515525162171e-10,-1.766411303105032434e-09,-2.649616954657548858e-09,-3.532822606210065282e-09,-4.416028257762581706e-09,-5.299233909315097716e-09,-6.182439560867613727e-09,-7.065645212420129737e-09,-7.948850863972645747e-09,-8.832056515525161758e-09,-9.715262167077677768e-09,-1.059846781863019378e-08,-1.148167347018270979e-08,-1.236487912173522580e-08,-1.324808477328774181e-08,-1.413129042484025782e-08,-1.501449607639277383e-08,-1.589770172794529149e-08,-1.678090737949780916e-08,-1.766411303105032682e-08,-1.854731868260284449e-08,-1.943052433415536215e-08,-2.031372998570787982e-08,-2.119693563726039748e-08,-2.208014128881291515e-08,-2.296334694036543281e-08,-2.384655259191795048e-08,-2.472975824347046814e-08,-2.561296389502298581e-08,-2.649616954657550347e-08,-2.737937519812802114e-08,-2.826258084968053880e-08,-2.914578650123305646e-08,-3.002899215278557413e-08,-3.091219780433809179e-08,-3.179540345589060946e-08,-3.267860910744312712e-08,-3.356181475899564479e-08,-3.444502041054816245e-08,-3.532822606210068012e-08,-3.621143171365319778e-08,-3.709463736520571545e-08,-3.797784301675823311e-08,-3.886104866831075078e-08,-3.974425431986326844e-08,-4.062745997141578611e-08,-4.151066562296830377e-08,-4.239387127452082144e-08,-4.327707692607333910e-08,-4.416028257762585676e-08,-4.504348822917837443e-08,-4.592669388073089209e-08,-4.680989953228340976e-08,-4.769310518383592742e-08,-4.857631083538844509e-08,-4.945951648694096275e-08,-5.034272213849348042e-08,-5.122592779004599808e-08,-5.210913344159851575e-08,-5.299233909315103341e-08,-5.387554474470355108e-08,-5.475875039625606874e-08,-5.564195604780858641e-08 +0.000000000000000000e+00,-2.834396831373543536e-09,-5.668793662747087073e-09,-8.503190494120631437e-09,-1.133758732549417580e-08,-1.417198415686772016e-08,-1.700638098824126287e-08,-1.984077781961480558e-08,-2.267517465098834829e-08,-2.550957148236189100e-08,-2.834396831373543371e-08,-3.117836514510897642e-08,-3.401276197648251913e-08,-3.684715880785606184e-08,-3.968155563922960455e-08,-4.251595247060314726e-08,-4.535034930197668997e-08,-4.818474613335023268e-08,-5.101914296472377538e-08,-5.385353979609731809e-08,-5.668793662747086080e-08,-5.952233345884440351e-08,-6.235673029021795284e-08,-6.519112712159150217e-08,-6.802552395296505149e-08,-7.085992078433860082e-08,-7.369431761571215015e-08,-7.652871444708569947e-08,-7.936311127845924880e-08,-8.219750810983279813e-08,-8.503190494120634745e-08,-8.786630177257989678e-08,-9.070069860395344611e-08,-9.353509543532699543e-08,-9.636949226670054476e-08,-9.920388909807409409e-08,-1.020382859294476434e-07,-1.048726827608211927e-07,-1.077070795921947421e-07,-1.105414764235682914e-07,-1.133758732549418407e-07,-1.162102700863153900e-07,-1.190446669176889394e-07,-1.218790637490624887e-07,-1.247134605804360380e-07,-1.275478574118095874e-07,-1.303822542431831367e-07,-1.332166510745566860e-07,-1.360510479059302353e-07,-1.388854447373037847e-07,-1.417198415686773340e-07,-1.445542384000508833e-07,-1.473886352314244326e-07,-1.502230320627979820e-07,-1.530574288941715313e-07,-1.558918257255450806e-07,-1.587262225569186299e-07,-1.615606193882921793e-07,-1.643950162196657286e-07,-1.672294130510392779e-07,-1.700638098824128273e-07,-1.728982067137863766e-07,-1.757326035451599259e-07,-1.785670003765334752e-07 +0.000000000000000000e+00,-2.120432870934817130e-09,-4.240865741869634260e-09,-6.361298612804451390e-09,-8.481731483739268520e-09,-1.060216435467408648e-08,-1.272259722560890443e-08,-1.484303009654372239e-08,-1.696346296747854035e-08,-1.908389583841335831e-08,-2.120432870934817626e-08,-2.332476158028299422e-08,-2.544519445121781218e-08,-2.756562732215263013e-08,-2.968606019308744809e-08,-3.180649306402226605e-08,-3.392692593495708732e-08,-3.604735880589190858e-08,-3.816779167682672985e-08,-4.028822454776155111e-08,-4.240865741869637238e-08,-4.452909028963119364e-08,-4.664952316056601491e-08,-4.876995603150083618e-08,-5.089038890243565744e-08,-5.301082177337047871e-08,-5.513125464430529997e-08,-5.725168751524012124e-08,-5.937212038617494251e-08,-6.149255325710975715e-08,-6.361298612804457180e-08,-6.573341899897938645e-08,-6.785385186991420110e-08,-6.997428474084901575e-08,-7.209471761178383040e-08,-7.421515048271864505e-08,-7.633558335365345969e-08,-7.845601622458827434e-08,-8.057644909552308899e-08,-8.269688196645790364e-08,-8.481731483739271829e-08,-8.693774770832753294e-08,-8.905818057926234758e-08,-9.117861345019716223e-08,-9.329904632113197688e-08,-9.541947919206679153e-08,-9.753991206300160618e-08,-9.966034493393642083e-08,-1.017807778048712355e-07,-1.039012106758060501e-07,-1.060216435467408648e-07,-1.081420764176756794e-07,-1.102625092886104941e-07,-1.123829421595453087e-07,-1.145033750304801234e-07,-1.166238079014149380e-07,-1.187442407723497527e-07,-1.208646736432845673e-07,-1.229851065142193820e-07,-1.251055393851541966e-07,-1.272259722560890113e-07,-1.293464051270238259e-07,-1.314668379979586406e-07,-1.335872708688934552e-07 +0.000000000000000000e+00,-1.886330231067251618e-09,-3.772660462134503237e-09,-5.658990693201754855e-09,-7.545320924269006474e-09,-9.431651155336258092e-09,-1.131798138640350971e-08,-1.320431161747076133e-08,-1.509064184853801295e-08,-1.697697207960526622e-08,-1.886330231067251949e-08,-2.074963254173977277e-08,-2.263596277280702604e-08,-2.452229300387427931e-08,-2.640862323494153258e-08,-2.829495346600878586e-08,-3.018128369707603913e-08,-3.206761392814329240e-08,-3.395394415921054567e-08,-3.584027439027779895e-08,-3.772660462134505222e-08,-3.961293485241230549e-08,-4.149926508347955877e-08,-4.338559531454681204e-08,-4.527192554561406531e-08,-4.715825577668131858e-08,-4.904458600774857186e-08,-5.093091623881582513e-08,-5.281724646988307840e-08,-5.470357670095033168e-08,-5.658990693201758495e-08,-5.847623716308483822e-08,-6.036256739415209149e-08,-6.224889762521934477e-08,-6.413522785628659804e-08,-6.602155808735385131e-08,-6.790788831842110458e-08,-6.979421854948835786e-08,-7.168054878055561113e-08,-7.356687901162286440e-08,-7.545320924269011768e-08,-7.733953947375737095e-08,-7.922586970482462422e-08,-8.111219993589187749e-08,-8.299853016695913077e-08,-8.488486039802638404e-08,-8.677119062909363731e-08,-8.865752086016089058e-08,-9.054385109122814386e-08,-9.243018132229539713e-08,-9.431651155336265040e-08,-9.620284178442990368e-08,-9.808917201549715695e-08,-9.997550224656441022e-08,-1.018618324776316635e-07,-1.037481627086989168e-07,-1.056344929397661700e-07,-1.075208231708334233e-07,-1.094071534019006766e-07,-1.112934836329679299e-07,-1.131798138640351831e-07,-1.150661440951024364e-07,-1.169524743261696897e-07,-1.188388045572369429e-07 +0.000000000000000000e+00,-2.834396831373152694e-09,-5.668793662746305387e-09,-8.503190494119458494e-09,-1.133758732549261243e-08,-1.417198415686576636e-08,-1.700638098823892030e-08,-1.984077781961207258e-08,-2.267517465098522486e-08,-2.550957148235837714e-08,-2.834396831373152942e-08,-3.117836514510468170e-08,-3.401276197647783398e-08,-3.684715880785098626e-08,-3.968155563922413854e-08,-4.251595247059729082e-08,-4.535034930197044310e-08,-4.818474613334359538e-08,-5.101914296471674766e-08,-5.385353979608989994e-08,-5.668793662746305222e-08,-5.952233345883620450e-08,-6.235673029020935016e-08,-6.519112712158250244e-08,-6.802552395295565472e-08,-7.085992078432880700e-08,-7.369431761570195928e-08,-7.652871444707511156e-08,-7.936311127844826384e-08,-8.219750810982141612e-08,-8.503190494119456840e-08,-8.786630177256772068e-08,-9.070069860394087296e-08,-9.353509543531402524e-08,-9.636949226668717752e-08,-9.920388909806032980e-08,-1.020382859294334821e-07,-1.048726827608066344e-07,-1.077070795921797866e-07,-1.105414764235529389e-07,-1.133758732549260912e-07,-1.162102700862992435e-07,-1.190446669176723958e-07,-1.218790637490455480e-07,-1.247134605804187003e-07,-1.275478574117918526e-07,-1.303822542431650049e-07,-1.332166510745381572e-07,-1.360510479059113094e-07,-1.388854447372844617e-07,-1.417198415686576140e-07,-1.445542384000307663e-07,-1.473886352314039186e-07,-1.502230320627770708e-07,-1.530574288941502231e-07,-1.558918257255233754e-07,-1.587262225568965277e-07,-1.615606193882696800e-07,-1.643950162196428322e-07,-1.672294130510159845e-07,-1.700638098823891368e-07,-1.728982067137622891e-07,-1.757326035451354414e-07,-1.785670003765085936e-07 +0.000000000000000000e+00,-2.120432870934563599e-09,-4.240865741869127198e-09,-6.361298612803691211e-09,-8.481731483738256051e-09,-1.060216435467282089e-08,-1.272259722560738573e-08,-1.484303009654195057e-08,-1.696346296747651541e-08,-1.908389583841108190e-08,-2.120432870934564840e-08,-2.332476158028021489e-08,-2.544519445121478139e-08,-2.756562732214934788e-08,-2.968606019308391438e-08,-3.180649306401848087e-08,-3.392692593495305067e-08,-3.604735880588762048e-08,-3.816779167682219028e-08,-4.028822454775676008e-08,-4.240865741869132989e-08,-4.452909028962589969e-08,-4.664952316056046949e-08,-4.876995603149503929e-08,-5.089038890242960910e-08,-5.301082177336417890e-08,-5.513125464429874870e-08,-5.725168751523331851e-08,-5.937212038616788831e-08,-6.149255325710245150e-08,-6.361298612803701468e-08,-6.573341899897157787e-08,-6.785385186990614105e-08,-6.997428474084070424e-08,-7.209471761177526742e-08,-7.421515048270983061e-08,-7.633558335364439379e-08,-7.845601622457895698e-08,-8.057644909551352017e-08,-8.269688196644808335e-08,-8.481731483738264654e-08,-8.693774770831720972e-08,-8.905818057925177291e-08,-9.117861345018633609e-08,-9.329904632112089928e-08,-9.541947919205546246e-08,-9.753991206299002565e-08,-9.966034493392458884e-08,-1.017807778048591520e-07,-1.039012106757937152e-07,-1.060216435467282784e-07,-1.081420764176628416e-07,-1.102625092885974048e-07,-1.123829421595319679e-07,-1.145033750304665311e-07,-1.166238079014010943e-07,-1.187442407723356575e-07,-1.208646736432702207e-07,-1.229851065142047971e-07,-1.251055393851393735e-07,-1.272259722560739500e-07,-1.293464051270085264e-07,-1.314668379979431028e-07,-1.335872708688776792e-07 +0.000000000000000000e+00,-1.886330231066988161e-09,-3.772660462133976323e-09,-5.658990693200964071e-09,-7.545320924267950991e-09,-9.431651155334937912e-09,-1.131798138640192483e-08,-1.320431161746891175e-08,-1.509064184853589867e-08,-1.697697207960288394e-08,-1.886330231066986921e-08,-2.074963254173685447e-08,-2.263596277280383974e-08,-2.452229300387082500e-08,-2.640862323493781027e-08,-2.829495346600479554e-08,-3.018128369707177749e-08,-3.206761392813875945e-08,-3.395394415920574141e-08,-3.584027439027272337e-08,-3.772660462133970532e-08,-3.961293485240668728e-08,-4.149926508347366924e-08,-4.338559531454065120e-08,-4.527192554560763315e-08,-4.715825577667461511e-08,-4.904458600774159707e-08,-5.093091623880857903e-08,-5.281724646987556099e-08,-5.470357670094254294e-08,-5.658990693200952490e-08,-5.847623716307650686e-08,-6.036256739414348882e-08,-6.224889762521046416e-08,-6.413522785627743950e-08,-6.602155808734441484e-08,-6.790788831841139018e-08,-6.979421854947836552e-08,-7.168054878054534086e-08,-7.356687901161231620e-08,-7.545320924267929154e-08,-7.733953947374626688e-08,-7.922586970481324222e-08,-8.111219993588021756e-08,-8.299853016694719290e-08,-8.488486039801416824e-08,-8.677119062908114358e-08,-8.865752086014811892e-08,-9.054385109121509426e-08,-9.243018132228206960e-08,-9.431651155334904494e-08,-9.620284178441602028e-08,-9.808917201548299562e-08,-9.997550224654997096e-08,-1.018618324776169463e-07,-1.037481627086839216e-07,-1.056344929397508970e-07,-1.075208231708178723e-07,-1.094071534018848477e-07,-1.112934836329518230e-07,-1.131798138640187983e-07,-1.150661440950857737e-07,-1.169524743261527490e-07,-1.188388045572197244e-07 +0.000000000000000000e+00,-4.260719875570031365e-09,-8.521439751140062729e-09,-1.278215962671009492e-08,-1.704287950228012877e-08,-2.130359937785016261e-08,-2.556431925342019646e-08,-2.982503912899022700e-08,-3.408575900456025753e-08,-3.834647888013028807e-08,-4.260719875570031861e-08,-4.686791863127034915e-08,-5.112863850684037968e-08,-5.538935838241041022e-08,-5.965007825798044076e-08,-6.391079813355047130e-08,-6.817151800912050183e-08,-7.243223788469053237e-08,-7.669295776026056291e-08,-8.095367763583059344e-08,-8.521439751140062398e-08,-8.947511738697065452e-08,-9.373583726254068506e-08,-9.799655713811071559e-08,-1.022572770136807461e-07,-1.065179968892507767e-07,-1.107787167648208072e-07,-1.150394366403908377e-07,-1.193001565159608550e-07,-1.235608763915308723e-07,-1.278215962671008897e-07,-1.320823161426709070e-07,-1.363430360182409243e-07,-1.406037558938109416e-07,-1.448644757693809589e-07,-1.491251956449509762e-07,-1.533859155205209935e-07,-1.576466353960910108e-07,-1.619073552716610281e-07,-1.661680751472310454e-07,-1.704287950228010627e-07,-1.746895148983710800e-07,-1.789502347739410973e-07,-1.832109546495111146e-07,-1.874716745250811319e-07,-1.917323944006511492e-07,-1.959931142762211665e-07,-2.002538341517911838e-07,-2.045145540273612011e-07,-2.087752739029312184e-07,-2.130359937785012357e-07,-2.172967136540712530e-07,-2.215574335296412703e-07,-2.258181534052112876e-07,-2.300788732807813049e-07,-2.343395931563513222e-07,-2.386003130319213395e-07,-2.428610329074913303e-07,-2.471217527830613212e-07,-2.513824726586313120e-07,-2.556431925342013028e-07,-2.599039124097712937e-07,-2.641646322853412845e-07,-2.684253521609112753e-07 +0.000000000000000000e+00,-3.560796949528877842e-09,-7.121593899057755685e-09,-1.068239084858663353e-08,-1.424318779811551137e-08,-1.780398474764439087e-08,-2.136478169717327036e-08,-2.492557864670214986e-08,-2.848637559623102936e-08,-3.204717254575990885e-08,-3.560796949528878835e-08,-3.916876644481766785e-08,-4.272956339434654734e-08,-4.629036034387542684e-08,-4.985115729340430634e-08,-5.341195424293318583e-08,-5.697275119246206533e-08,-6.053354814199094483e-08,-6.409434509151981770e-08,-6.765514204104869058e-08,-7.121593899057756346e-08,-7.477673594010643634e-08,-7.833753288963530922e-08,-8.189832983916418210e-08,-8.545912678869305498e-08,-8.901992373822192786e-08,-9.258072068775080074e-08,-9.614151763727967362e-08,-9.970231458680854650e-08,-1.032631115363374194e-07,-1.068239084858662923e-07,-1.103847054353951651e-07,-1.139455023849240380e-07,-1.175062993344529109e-07,-1.210670962839817838e-07,-1.246278932335106567e-07,-1.281886901830395295e-07,-1.317494871325684024e-07,-1.353102840820972753e-07,-1.388710810316261482e-07,-1.424318779811550210e-07,-1.459926749306838939e-07,-1.495534718802127668e-07,-1.531142688297416397e-07,-1.566750657792705126e-07,-1.602358627287993854e-07,-1.637966596783282583e-07,-1.673574566278571312e-07,-1.709182535773860041e-07,-1.744790505269148770e-07,-1.780398474764437498e-07,-1.816006444259726227e-07,-1.851614413755014956e-07,-1.887222383250303685e-07,-1.922830352745592414e-07,-1.958438322240881142e-07,-1.994046291736169871e-07,-2.029654261231458600e-07,-2.065262230726747329e-07,-2.100870200222036058e-07,-2.136478169717324786e-07,-2.172086139212613515e-07,-2.207694108707902244e-07,-2.243302078203190973e-07 +0.000000000000000000e+00,-2.918693885279449546e-09,-5.837387770558899092e-09,-8.756081655838349465e-09,-1.167477554111779984e-08,-1.459346942639725021e-08,-1.751216331167669893e-08,-2.043085719695614765e-08,-2.334955108223559637e-08,-2.626824496751504509e-08,-2.918693885279449380e-08,-3.210563273807394252e-08,-3.502432662335339124e-08,-3.794302050863283996e-08,-4.086171439391228868e-08,-4.378040827919173740e-08,-4.669910216447118612e-08,-4.961779604975063483e-08,-5.253648993503008355e-08,-5.545518382030953227e-08,-5.837387770558898099e-08,-6.129257159086842309e-08,-6.421126547614787181e-08,-6.712995936142732053e-08,-7.004865324670676925e-08,-7.296734713198621797e-08,-7.588604101726566669e-08,-7.880473490254511540e-08,-8.172342878782456412e-08,-8.464212267310401284e-08,-8.756081655838346156e-08,-9.047951044366291028e-08,-9.339820432894235900e-08,-9.631689821422180772e-08,-9.923559209950125643e-08,-1.021542859847807052e-07,-1.050729798700601539e-07,-1.079916737553396026e-07,-1.109103676406190513e-07,-1.138290615258985000e-07,-1.167477554111779487e-07,-1.196664492964573975e-07,-1.225851431817368462e-07,-1.255038370670162949e-07,-1.284225309522957436e-07,-1.313412248375751923e-07,-1.342599187228546411e-07,-1.371786126081340898e-07,-1.400973064934135385e-07,-1.430160003786929872e-07,-1.459346942639724359e-07,-1.488533881492518847e-07,-1.517720820345313334e-07,-1.546907759198107821e-07,-1.576094698050902308e-07,-1.605281636903696795e-07,-1.634468575756491282e-07,-1.663655514609285770e-07,-1.692842453462080257e-07,-1.722029392314874744e-07,-1.751216331167669231e-07,-1.780403270020463718e-07,-1.809590208873258206e-07,-1.838777147726052693e-07 +0.000000000000000000e+00,-4.260719875569361348e-09,-8.521439751138722696e-09,-1.278215962670808322e-08,-1.704287950227744208e-08,-2.130359937784680095e-08,-2.556431925341615982e-08,-2.982503912898551538e-08,-3.408575900455487093e-08,-3.834647888012422649e-08,-4.260719875569358205e-08,-4.686791863126293761e-08,-5.112863850683229317e-08,-5.538935838240164872e-08,-5.965007825797100428e-08,-6.391079813354035984e-08,-6.817151800910971540e-08,-7.243223788467907096e-08,-7.669295776024842651e-08,-8.095367763581778207e-08,-8.521439751138713763e-08,-8.947511738695649319e-08,-9.373583726252584875e-08,-9.799655713809520430e-08,-1.022572770136645599e-07,-1.065179968892339154e-07,-1.107787167648032710e-07,-1.150394366403726265e-07,-1.193001565159419821e-07,-1.235608763915113377e-07,-1.278215962670806932e-07,-1.320823161426500488e-07,-1.363430360182194043e-07,-1.406037558937887599e-07,-1.448644757693581154e-07,-1.491251956449274710e-07,-1.533859155204968266e-07,-1.576466353960661821e-07,-1.619073552716355377e-07,-1.661680751472048932e-07,-1.704287950227742488e-07,-1.746895148983436043e-07,-1.789502347739129599e-07,-1.832109546494823155e-07,-1.874716745250516710e-07,-1.917323944006210266e-07,-1.959931142761903821e-07,-2.002538341517597377e-07,-2.045145540273290933e-07,-2.087752739028984488e-07,-2.130359937784678044e-07,-2.172967136540371599e-07,-2.215574335296065155e-07,-2.258181534051758710e-07,-2.300788732807452266e-07,-2.343395931563145822e-07,-2.386003130318839112e-07,-2.428610329074532139e-07,-2.471217527830225165e-07,-2.513824726585918191e-07,-2.556431925341611217e-07,-2.599039124097304243e-07,-2.641646322852997270e-07,-2.684253521608690296e-07 +0.000000000000000000e+00,-3.560796949528359614e-09,-7.121593899056719227e-09,-1.068239084858507843e-08,-1.424318779811343680e-08,-1.780398474764179683e-08,-2.136478169717015685e-08,-2.492557864669851688e-08,-2.848637559622687691e-08,-3.204717254575523694e-08,-3.560796949528359365e-08,-3.916876644481195037e-08,-4.272956339434030709e-08,-4.629036034386866381e-08,-4.985115729339702053e-08,-5.341195424292537725e-08,-5.697275119245373397e-08,-6.053354814198209068e-08,-6.409434509151044740e-08,-6.765514204103880412e-08,-7.121593899056716084e-08,-7.477673594009551756e-08,-7.833753288962387428e-08,-8.189832983915223099e-08,-8.545912678868058771e-08,-8.901992373820894443e-08,-9.258072068773730115e-08,-9.614151763726565787e-08,-9.970231458679401459e-08,-1.032631115363223713e-07,-1.068239084858507280e-07,-1.103847054353790847e-07,-1.139455023849074415e-07,-1.175062993344357982e-07,-1.210670962839641549e-07,-1.246278932334925249e-07,-1.281886901830208948e-07,-1.317494871325492648e-07,-1.353102840820776347e-07,-1.388710810316060047e-07,-1.424318779811343746e-07,-1.459926749306627446e-07,-1.495534718801911145e-07,-1.531142688297194845e-07,-1.566750657792478544e-07,-1.602358627287762244e-07,-1.637966596783045943e-07,-1.673574566278329643e-07,-1.709182535773613342e-07,-1.744790505268897042e-07,-1.780398474764180742e-07,-1.816006444259464441e-07,-1.851614413754748141e-07,-1.887222383250031840e-07,-1.922830352745315540e-07,-1.958438322240599239e-07,-1.994046291735882939e-07,-2.029654261231166638e-07,-2.065262230726450338e-07,-2.100870200221734037e-07,-2.136478169717017737e-07,-2.172086139212301436e-07,-2.207694108707585136e-07,-2.243302078202868835e-07 +0.000000000000000000e+00,-2.918693885278932144e-09,-5.837387770557864289e-09,-8.756081655836796020e-09,-1.167477554111572692e-08,-1.459346942639465783e-08,-1.751216331167358873e-08,-2.043085719695252129e-08,-2.334955108223145385e-08,-2.626824496751038640e-08,-2.918693885278931896e-08,-3.210563273806825152e-08,-3.502432662334718408e-08,-3.794302050862611664e-08,-4.086171439390504919e-08,-4.378040827918398175e-08,-4.669910216446291431e-08,-4.961779604974184687e-08,-5.253648993502077943e-08,-5.545518382029971198e-08,-5.837387770557864454e-08,-6.129257159085757048e-08,-6.421126547613648981e-08,-6.712995936141540913e-08,-7.004865324669432845e-08,-7.296734713197324777e-08,-7.588604101725216710e-08,-7.880473490253108642e-08,-8.172342878781000574e-08,-8.464212267308892507e-08,-8.756081655836784439e-08,-9.047951044364676371e-08,-9.339820432892568304e-08,-9.631689821420460236e-08,-9.923559209948352168e-08,-1.021542859847624410e-07,-1.050729798700413603e-07,-1.079916737553202797e-07,-1.109103676405991990e-07,-1.138290615258781183e-07,-1.167477554111570376e-07,-1.196664492964359569e-07,-1.225851431817148763e-07,-1.255038370669937956e-07,-1.284225309522727149e-07,-1.313412248375516342e-07,-1.342599187228305536e-07,-1.371786126081094729e-07,-1.400973064933883922e-07,-1.430160003786673115e-07,-1.459346942639462309e-07,-1.488533881492251502e-07,-1.517720820345040695e-07,-1.546907759197829888e-07,-1.576094698050619081e-07,-1.605281636903408275e-07,-1.634468575756197468e-07,-1.663655514608986661e-07,-1.692842453461775854e-07,-1.722029392314565048e-07,-1.751216331167354241e-07,-1.780403270020143434e-07,-1.809590208872932627e-07,-1.838777147725721821e-07 +0.000000000000000000e+00,-5.549221516923730751e-09,-1.109844303384746150e-08,-1.664766455077119308e-08,-2.219688606769492631e-08,-2.774610758461865955e-08,-3.329532910154239278e-08,-3.884455061846612601e-08,-4.439377213538985924e-08,-4.994299365231359248e-08,-5.549221516923732571e-08,-6.104143668616105232e-08,-6.659065820308477232e-08,-7.213987972000849232e-08,-7.768910123693221232e-08,-8.323832275385593231e-08,-8.878754427077965231e-08,-9.433676578770337231e-08,-9.988598730462709231e-08,-1.054352088215508123e-07,-1.109844303384745323e-07,-1.165336518553982523e-07,-1.220828733723219723e-07,-1.276320948892456923e-07,-1.331813164061694123e-07,-1.387305379230931323e-07,-1.442797594400168523e-07,-1.498289809569405723e-07,-1.553782024738642923e-07,-1.609274239907880123e-07,-1.664766455077117323e-07,-1.720258670246354523e-07,-1.775750885415591723e-07,-1.831243100584828923e-07,-1.886735315754066123e-07,-1.942227530923303323e-07,-1.997719746092540523e-07,-2.053211961261777723e-07,-2.108704176431014923e-07,-2.164196391600252123e-07,-2.219688606769489323e-07,-2.275180821938726523e-07,-2.330673037107963723e-07,-2.386165252277200923e-07,-2.441657467446437858e-07,-2.497149682615674793e-07,-2.552641897784911728e-07,-2.608134112954148664e-07,-2.663626328123385599e-07,-2.719118543292622534e-07,-2.774610758461859469e-07,-2.830102973631096405e-07,-2.885595188800333340e-07,-2.941087403969570275e-07,-2.996579619138807211e-07,-3.052071834308044146e-07,-3.107564049477281081e-07,-3.163056264646518016e-07,-3.218548479815754952e-07,-3.274040694984991887e-07,-3.329532910154228822e-07,-3.385025125323465758e-07,-3.440517340492702693e-07,-3.496009555661939628e-07 +0.000000000000000000e+00,-4.922478308384278308e-09,-9.844956616768556615e-09,-1.476743492515283575e-08,-1.968991323353711654e-08,-2.461239154192139733e-08,-2.953486985030567812e-08,-3.445734815868996222e-08,-3.937982646707424631e-08,-4.430230477545853041e-08,-4.922478308384281451e-08,-5.414726139222709861e-08,-5.906973970061138271e-08,-6.399221800899566680e-08,-6.891469631737995090e-08,-7.383717462576423500e-08,-7.875965293414851910e-08,-8.368213124253280319e-08,-8.860460955091708729e-08,-9.352708785930137139e-08,-9.844956616768565549e-08,-1.033720444760699396e-07,-1.082945227844542237e-07,-1.132170010928385078e-07,-1.181394794012227919e-07,-1.230619577096070892e-07,-1.279844360179913865e-07,-1.329069143263756839e-07,-1.378293926347599812e-07,-1.427518709431442785e-07,-1.476743492515285759e-07,-1.525968275599128732e-07,-1.575193058682971705e-07,-1.624417841766814679e-07,-1.673642624850657652e-07,-1.722867407934500625e-07,-1.772092191018343599e-07,-1.821316974102186572e-07,-1.870541757186029545e-07,-1.919766540269872519e-07,-1.968991323353715492e-07,-2.018216106437558465e-07,-2.067440889521401439e-07,-2.116665672605244412e-07,-2.165890455689087385e-07,-2.215115238772930359e-07,-2.264340021856773332e-07,-2.313564804940616305e-07,-2.362789588024459279e-07,-2.412014371108302252e-07,-2.461239154192144961e-07,-2.510463937275987669e-07,-2.559688720359830378e-07,-2.608913503443673087e-07,-2.658138286527515795e-07,-2.707363069611358504e-07,-2.756587852695201212e-07,-2.805812635779043921e-07,-2.855037418862886630e-07,-2.904262201946729338e-07,-2.953486985030572047e-07,-3.002711768114414756e-07,-3.051936551198257464e-07,-3.101161334282100173e-07 +0.000000000000000000e+00,-3.932875710632425369e-09,-7.865751421264850739e-09,-1.179862713189727611e-08,-1.573150284252970148e-08,-1.966437855316212685e-08,-2.359725426379455222e-08,-2.753012997442697759e-08,-3.146300568505940296e-08,-3.539588139569182502e-08,-3.932875710632424708e-08,-4.326163281695666914e-08,-4.719450852758909120e-08,-5.112738423822151326e-08,-5.506025994885393532e-08,-5.899313565948635738e-08,-6.292601137011877944e-08,-6.685888708075120150e-08,-7.079176279138362356e-08,-7.472463850201604562e-08,-7.865751421264846768e-08,-8.259038992328088975e-08,-8.652326563391331181e-08,-9.045614134454573387e-08,-9.438901705517815593e-08,-9.832189276581057799e-08,-1.022547684764430000e-07,-1.061876441870754221e-07,-1.101205198977078442e-07,-1.140533956083402662e-07,-1.179862713189726883e-07,-1.219191470296051236e-07,-1.258520227402375589e-07,-1.297848984508699942e-07,-1.337177741615024295e-07,-1.376506498721348648e-07,-1.415835255827673001e-07,-1.455164012933997354e-07,-1.494492770040321707e-07,-1.533821527146646060e-07,-1.573150284252970412e-07,-1.612479041359294765e-07,-1.651807798465619118e-07,-1.691136555571943471e-07,-1.730465312678267824e-07,-1.769794069784592177e-07,-1.809122826890916530e-07,-1.848451583997240883e-07,-1.887780341103565236e-07,-1.927109098209889589e-07,-1.966437855316213942e-07,-2.005766612422538295e-07,-2.045095369528862648e-07,-2.084424126635187001e-07,-2.123752883741511354e-07,-2.163081640847835707e-07,-2.202410397954160060e-07,-2.241739155060484413e-07,-2.281067912166808766e-07,-2.320396669273133119e-07,-2.359725426379457472e-07,-2.399054183485781825e-07,-2.438382940592106178e-07,-2.477711697698430530e-07 +0.000000000000000000e+00,-5.549221516922779493e-09,-1.109844303384555899e-08,-1.664766455076833765e-08,-2.219688606769111466e-08,-2.774610758461389168e-08,-3.329532910153666869e-08,-3.884455061845944901e-08,-4.439377213538222933e-08,-4.994299365230500965e-08,-5.549221516922778997e-08,-6.104143668615057029e-08,-6.659065820307335061e-08,-7.213987971999613093e-08,-7.768910123691891125e-08,-8.323832275384169157e-08,-8.878754427076447189e-08,-9.433676578768725221e-08,-9.988598730461003254e-08,-1.054352088215328129e-07,-1.109844303384555932e-07,-1.165336518553783735e-07,-1.220828733723011406e-07,-1.276320948892239077e-07,-1.331813164061466748e-07,-1.387305379230694418e-07,-1.442797594399922089e-07,-1.498289809569149760e-07,-1.553782024738377431e-07,-1.609274239907605102e-07,-1.664766455076832773e-07,-1.720258670246060444e-07,-1.775750885415288114e-07,-1.831243100584515785e-07,-1.886735315753743456e-07,-1.942227530922971127e-07,-1.997719746092198798e-07,-2.053211961261426469e-07,-2.108704176430654140e-07,-2.164196391599881810e-07,-2.219688606769109481e-07,-2.275180821938337152e-07,-2.330673037107564823e-07,-2.386165252276792229e-07,-2.441657467446019635e-07,-2.497149682615247041e-07,-2.552641897784474448e-07,-2.608134112953701854e-07,-2.663626328122929260e-07,-2.719118543292156666e-07,-2.774610758461384072e-07,-2.830102973630611478e-07,-2.885595188799838885e-07,-2.941087403969066291e-07,-2.996579619138293697e-07,-3.052071834307521103e-07,-3.107564049476748509e-07,-3.163056264645975915e-07,-3.218548479815203322e-07,-3.274040694984430728e-07,-3.329532910153658134e-07,-3.385025125322885540e-07,-3.440517340492112946e-07,-3.496009555661340352e-07 +0.000000000000000000e+00,-4.922478308383481733e-09,-9.844956616766963465e-09,-1.476743492515044520e-08,-1.968991323353392693e-08,-2.461239154191741032e-08,-2.953486985030089371e-08,-3.445734815868437709e-08,-3.937982646706786048e-08,-4.430230477545134387e-08,-4.922478308383482725e-08,-5.414726139221831064e-08,-5.906973970060179403e-08,-6.399221800898527741e-08,-6.891469631736875418e-08,-7.383717462575223095e-08,-7.875965293413570772e-08,-8.368213124251918449e-08,-8.860460955090266126e-08,-9.352708785928613803e-08,-9.844956616766961480e-08,-1.033720444760530916e-07,-1.082945227844365683e-07,-1.132170010928200451e-07,-1.181394794012035219e-07,-1.230619577095869987e-07,-1.279844360179704754e-07,-1.329069143263539522e-07,-1.378293926347374290e-07,-1.427518709431209057e-07,-1.476743492515043825e-07,-1.525968275598878593e-07,-1.575193058682713360e-07,-1.624417841766548128e-07,-1.673642624850382896e-07,-1.722867407934217663e-07,-1.772092191018052431e-07,-1.821316974101887199e-07,-1.870541757185721967e-07,-1.919766540269556734e-07,-1.968991323353391502e-07,-2.018216106437226270e-07,-2.067440889521061037e-07,-2.116665672604895805e-07,-2.165890455688730573e-07,-2.215115238772565340e-07,-2.264340021856400108e-07,-2.313564804940234876e-07,-2.362789588024069644e-07,-2.412014371107904676e-07,-2.461239154191739444e-07,-2.510463937275574211e-07,-2.559688720359408979e-07,-2.608913503443243747e-07,-2.658138286527078514e-07,-2.707363069610913282e-07,-2.756587852694748050e-07,-2.805812635778582817e-07,-2.855037418862417585e-07,-2.904262201946252353e-07,-2.953486985030087121e-07,-3.002711768113921888e-07,-3.051936551197756656e-07,-3.101161334281591424e-07 +0.000000000000000000e+00,-3.932875710631589090e-09,-7.865751421263178180e-09,-1.179862713189476810e-08,-1.573150284252635967e-08,-1.966437855315795124e-08,-2.359725426378954281e-08,-2.753012997442113438e-08,-3.146300568505272595e-08,-3.539588139568432083e-08,-3.932875710631591571e-08,-4.326163281694751059e-08,-4.719450852757910547e-08,-5.112738423821070035e-08,-5.506025994884229523e-08,-5.899313565947389011e-08,-6.292601137010549161e-08,-6.685888708073709311e-08,-7.079176279136869461e-08,-7.472463850200029611e-08,-7.865751421263189760e-08,-8.259038992326349910e-08,-8.652326563389510060e-08,-9.045614134452670210e-08,-9.438901705515830359e-08,-9.832189276578990509e-08,-1.022547684764215066e-07,-1.061876441870531081e-07,-1.101205198976847096e-07,-1.140533956083163111e-07,-1.179862713189479126e-07,-1.219191470295795008e-07,-1.258520227402110891e-07,-1.297848984508426774e-07,-1.337177741614742656e-07,-1.376506498721058539e-07,-1.415835255827374422e-07,-1.455164012933690304e-07,-1.494492770040006187e-07,-1.533821527146322069e-07,-1.573150284252637952e-07,-1.612479041358953835e-07,-1.651807798465269717e-07,-1.691136555571585600e-07,-1.730465312677901483e-07,-1.769794069784217365e-07,-1.809122826890533248e-07,-1.848451583996849130e-07,-1.887780341103165013e-07,-1.927109098209480896e-07,-1.966437855315796778e-07,-2.005766612422112661e-07,-2.045095369528428544e-07,-2.084424126634744426e-07,-2.123752883741060309e-07,-2.163081640847376191e-07,-2.202410397953692074e-07,-2.241739155060007957e-07,-2.281067912166323839e-07,-2.320396669272639722e-07,-2.359725426378955605e-07,-2.399054183485271487e-07,-2.438382940591587370e-07,-2.477711697697903252e-07 +0.000000000000000000e+00,-6.714679657353404563e-09,-1.342935931470680913e-08,-2.014403897206021534e-08,-2.685871862941362156e-08,-3.357339828676702778e-08,-4.028807794412043069e-08,-4.700275760147383360e-08,-5.371743725882723650e-08,-6.043211691618063280e-08,-6.714679657353402909e-08,-7.386147623088742538e-08,-8.057615588824082167e-08,-8.729083554559421796e-08,-9.400551520294761425e-08,-1.007201948603010105e-07,-1.074348745176544068e-07,-1.141495541750078031e-07,-1.208642338323612127e-07,-1.275789134897146222e-07,-1.342935931470680317e-07,-1.410082728044214412e-07,-1.477229524617748508e-07,-1.544376321191282603e-07,-1.611523117764816698e-07,-1.678669914338350793e-07,-1.745816710911884889e-07,-1.812963507485418984e-07,-1.880110304058953079e-07,-1.947257100632487174e-07,-2.014403897206021270e-07,-2.081550693779555365e-07,-2.148697490353089460e-07,-2.215844286926623555e-07,-2.282991083500157651e-07,-2.350137880073691746e-07,-2.417284676647225841e-07,-2.484431473220759672e-07,-2.551578269794293502e-07,-2.618725066367827333e-07,-2.685871862941361163e-07,-2.753018659514894994e-07,-2.820165456088428825e-07,-2.887312252661962655e-07,-2.954459049235496486e-07,-3.021605845809030316e-07,-3.088752642382564147e-07,-3.155899438956097977e-07,-3.223046235529631808e-07,-3.290193032103165639e-07,-3.357339828676699469e-07,-3.424486625250233300e-07,-3.491633421823767130e-07,-3.558780218397300961e-07,-3.625927014970834791e-07,-3.693073811544368622e-07,-3.760220608117902452e-07,-3.827367404691436283e-07,-3.894514201264970114e-07,-3.961660997838503944e-07,-4.028807794412037775e-07,-4.095954590985571605e-07,-4.163101387559105436e-07,-4.230248184132639266e-07 +0.000000000000000000e+00,-6.145880106828741476e-09,-1.229176021365748295e-08,-1.843764032048622526e-08,-2.458352042731496921e-08,-3.072940053414371317e-08,-3.687528064097245713e-08,-4.302116074780120109e-08,-4.916704085462994505e-08,-5.531292096145868900e-08,-6.145880106828743958e-08,-6.760468117511618354e-08,-7.375056128194492750e-08,-7.989644138877367145e-08,-8.604232149560241541e-08,-9.218820160243115937e-08,-9.833408170925990333e-08,-1.044799618160886473e-07,-1.106258419229173912e-07,-1.167717220297461352e-07,-1.229176021365748792e-07,-1.290634822434036231e-07,-1.352093623502323671e-07,-1.413552424570611110e-07,-1.475011225638898550e-07,-1.536470026707185989e-07,-1.597928827775473429e-07,-1.659387628843760869e-07,-1.720846429912048308e-07,-1.782305230980335748e-07,-1.843764032048623187e-07,-1.905222833116910627e-07,-1.966681634185198067e-07,-2.028140435253485506e-07,-2.089599236321772946e-07,-2.151058037390060385e-07,-2.212516838458347825e-07,-2.273975639526635264e-07,-2.335434440594922704e-07,-2.396893241663209879e-07,-2.458352042731497054e-07,-2.519810843799784229e-07,-2.581269644868071404e-07,-2.642728445936358578e-07,-2.704187247004645753e-07,-2.765646048072932928e-07,-2.827104849141220103e-07,-2.888563650209507278e-07,-2.950022451277794453e-07,-3.011481252346081628e-07,-3.072940053414368803e-07,-3.134398854482655977e-07,-3.195857655550943152e-07,-3.257316456619230327e-07,-3.318775257687517502e-07,-3.380234058755804677e-07,-3.441692859824091852e-07,-3.503151660892379027e-07,-3.564610461960666202e-07,-3.626069263028953377e-07,-3.687528064097240551e-07,-3.748986865165527726e-07,-3.810445666233814901e-07,-3.871904467302102076e-07 +0.000000000000000000e+00,-4.900253822902785598e-09,-9.800507645805571197e-09,-1.470076146870835680e-08,-1.960101529161114239e-08,-2.450126911451392965e-08,-2.940152293741671690e-08,-3.430177676031950415e-08,-3.920203058322229140e-08,-4.410228440612507866e-08,-4.900253822902786591e-08,-5.390279205193065316e-08,-5.880304587483344042e-08,-6.370329969773622767e-08,-6.860355352063900830e-08,-7.350380734354178894e-08,-7.840406116644456958e-08,-8.330431498934735021e-08,-8.820456881225013085e-08,-9.310482263515291148e-08,-9.800507645805569212e-08,-1.029053302809584728e-07,-1.078055841038612534e-07,-1.127058379267640340e-07,-1.176060917496668147e-07,-1.225063455725695821e-07,-1.274065993954723495e-07,-1.323068532183751169e-07,-1.372071070412778843e-07,-1.421073608641806517e-07,-1.470076146870834191e-07,-1.519078685099861865e-07,-1.568081223328889539e-07,-1.617083761557917213e-07,-1.666086299786944887e-07,-1.715088838015972561e-07,-1.764091376245000235e-07,-1.813093914474027909e-07,-1.862096452703055583e-07,-1.911098990932083257e-07,-1.960101529161110931e-07,-2.009104067390138605e-07,-2.058106605619166279e-07,-2.107109143848193953e-07,-2.156111682077221627e-07,-2.205114220306249301e-07,-2.254116758535276975e-07,-2.303119296764304649e-07,-2.352121834993332323e-07,-2.401124373222359997e-07,-2.450126911451387406e-07,-2.499129449680414815e-07,-2.548131987909442225e-07,-2.597134526138469634e-07,-2.646137064367497043e-07,-2.695139602596524453e-07,-2.744142140825551862e-07,-2.793144679054579271e-07,-2.842147217283606680e-07,-2.891149755512634090e-07,-2.940152293741661499e-07,-2.989154831970688908e-07,-3.038157370199716318e-07,-3.087159908428743727e-07 +0.000000000000000000e+00,-6.714679657352111680e-09,-1.342935931470422336e-08,-2.014403897205633421e-08,-2.685871862940844341e-08,-3.357339828676054930e-08,-4.028807794411265519e-08,-4.700275760146476108e-08,-5.371743725881686697e-08,-6.043211691616897286e-08,-6.714679657352107213e-08,-7.386147623087317140e-08,-8.057615588822527067e-08,-8.729083554557736995e-08,-9.400551520292946922e-08,-1.007201948602815685e-07,-1.074348745176336678e-07,-1.141495541749857670e-07,-1.208642338323378663e-07,-1.275789134896899788e-07,-1.342935931470420913e-07,-1.410082728043942038e-07,-1.477229524617463163e-07,-1.544376321190984288e-07,-1.611523117764505413e-07,-1.678669914338026539e-07,-1.745816710911547664e-07,-1.812963507485068789e-07,-1.880110304058589914e-07,-1.947257100632111039e-07,-2.014403897205632164e-07,-2.081550693779153289e-07,-2.148697490352674414e-07,-2.215844286926195539e-07,-2.282991083499716664e-07,-2.350137880073237789e-07,-2.417284676646758914e-07,-2.484431473220280039e-07,-2.551578269793801164e-07,-2.618725066367322290e-07,-2.685871862940843415e-07,-2.753018659514364540e-07,-2.820165456087885665e-07,-2.887312252661406790e-07,-2.954459049234927915e-07,-3.021605845808449040e-07,-3.088752642381970165e-07,-3.155899438955491290e-07,-3.223046235529012415e-07,-3.290193032102533540e-07,-3.357339828676054665e-07,-3.424486625249575790e-07,-3.491633421823096915e-07,-3.558780218396618040e-07,-3.625927014970139166e-07,-3.693073811543660291e-07,-3.760220608117181416e-07,-3.827367404690702541e-07,-3.894514201264223666e-07,-3.961660997837744791e-07,-4.028807794411265916e-07,-4.095954590984787041e-07,-4.163101387558308166e-07,-4.230248184131829291e-07 +0.000000000000000000e+00,-6.145880106827626437e-09,-1.229176021365525287e-08,-1.843764032048288014e-08,-2.458352042731050906e-08,-3.072940053413813467e-08,-3.687528064096576028e-08,-4.302116074779338589e-08,-4.916704085462101150e-08,-5.531292096144863711e-08,-6.145880106827626933e-08,-6.760468117510390156e-08,-7.375056128193153379e-08,-7.989644138875916601e-08,-8.604232149558679824e-08,-9.218820160241443047e-08,-9.833408170924206270e-08,-1.044799618160696949e-07,-1.106258419228973272e-07,-1.167717220297249594e-07,-1.229176021365525916e-07,-1.290634822433802238e-07,-1.352093623502078561e-07,-1.413552424570354883e-07,-1.475011225638631205e-07,-1.536470026706907527e-07,-1.597928827775183850e-07,-1.659387628843460172e-07,-1.720846429911736494e-07,-1.782305230980012816e-07,-1.843764032048289139e-07,-1.905222833116565461e-07,-1.966681634184841783e-07,-2.028140435253118106e-07,-2.089599236321394428e-07,-2.151058037389670750e-07,-2.212516838457947072e-07,-2.273975639526223395e-07,-2.335434440594499717e-07,-2.396893241662775775e-07,-2.458352042731051832e-07,-2.519810843799327890e-07,-2.581269644867603947e-07,-2.642728445935880005e-07,-2.704187247004156062e-07,-2.765646048072432120e-07,-2.827104849140708178e-07,-2.888563650208984235e-07,-2.950022451277260293e-07,-3.011481252345536350e-07,-3.072940053413812408e-07,-3.134398854482088465e-07,-3.195857655550364523e-07,-3.257316456618640581e-07,-3.318775257686916638e-07,-3.380234058755192696e-07,-3.441692859823468753e-07,-3.503151660891744811e-07,-3.564610461960020868e-07,-3.626069263028296926e-07,-3.687528064096572984e-07,-3.748986865164849041e-07,-3.810445666233125099e-07,-3.871904467301401156e-07 +0.000000000000000000e+00,-4.900253822901572124e-09,-9.800507645803144249e-09,-1.470076146870471555e-08,-1.960101529160628519e-08,-2.450126911450785483e-08,-2.940152293740942448e-08,-3.430177676031099412e-08,-3.920203058321256376e-08,-4.410228440611413340e-08,-4.900253822901570305e-08,-5.390279205191727269e-08,-5.880304587481884233e-08,-6.370329969772041198e-08,-6.860355352062198824e-08,-7.350380734352356450e-08,-7.840406116642514076e-08,-8.330431498932671702e-08,-8.820456881222829328e-08,-9.310482263512986954e-08,-9.800507645803144580e-08,-1.029053302809330221e-07,-1.078055841038345983e-07,-1.127058379267361746e-07,-1.176060917496377508e-07,-1.225063455725393271e-07,-1.274065993954409034e-07,-1.323068532183424796e-07,-1.372071070412440559e-07,-1.421073608641456321e-07,-1.470076146870472084e-07,-1.519078685099487847e-07,-1.568081223328503609e-07,-1.617083761557519372e-07,-1.666086299786535134e-07,-1.715088838015550897e-07,-1.764091376244566660e-07,-1.813093914473582422e-07,-1.862096452702598185e-07,-1.911098990931613947e-07,-1.960101529160629710e-07,-2.009104067389645473e-07,-2.058106605618661235e-07,-2.107109143847676998e-07,-2.156111682076692760e-07,-2.205114220305708523e-07,-2.254116758534724286e-07,-2.303119296763740048e-07,-2.352121834992755811e-07,-2.401124373221771838e-07,-2.450126911450788130e-07,-2.499129449679804422e-07,-2.548131987908820714e-07,-2.597134526137837006e-07,-2.646137064366853298e-07,-2.695139602595869590e-07,-2.744142140824885882e-07,-2.793144679053902174e-07,-2.842147217282918466e-07,-2.891149755511934758e-07,-2.940152293740951050e-07,-2.989154831969967342e-07,-3.038157370198983634e-07,-3.087159908427999926e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.026552183940495818e-09,-8.053104367880991636e-09,-1.207965655182148663e-08,-1.610620873576197996e-08,-2.013276091970247330e-08,-2.415931310364296664e-08,-2.818586528758345997e-08,-3.221241747152395331e-08,-3.623896965546444665e-08,-4.026552183940493998e-08,-4.429207402334543332e-08,-4.831862620728592666e-08,-5.234517839122641999e-08,-5.637173057516691333e-08,-6.039828275910740667e-08,-6.442483494304789339e-08,-6.845138712698838011e-08,-7.247793931092886682e-08,-7.650449149486935354e-08,-8.053104367880984026e-08,-8.455759586275032698e-08,-8.858414804669081370e-08,-9.261070023063130042e-08,-9.663725241457178714e-08,-1.006638045985122739e-07,-1.046903567824527606e-07,-1.087169089663932473e-07,-1.127434611503337340e-07,-1.167700133342742207e-07,-1.207965655182147075e-07,-1.248231177021551942e-07,-1.288496698860956809e-07,-1.328762220700361676e-07,-1.369027742539766543e-07,-1.409293264379171411e-07,-1.449558786218576278e-07,-1.489824308057981145e-07,-1.530089829897386012e-07,-1.570355351736790879e-07,-1.610620873576195746e-07,-1.650886395415600614e-07,-1.691151917255005481e-07,-1.731417439094410348e-07,-1.771682960933815215e-07,-1.811948482773220082e-07,-1.852214004612624950e-07,-1.892479526452029817e-07,-1.932745048291434684e-07,-1.973010570130839551e-07,-2.013276091970244418e-07,-2.053541613809649286e-07,-2.093807135649054153e-07,-2.134072657488459020e-07,-2.174338179327863887e-07,-2.214603701167268754e-07,-2.254869223006673622e-07,-2.295134744846078489e-07,-2.335400266685483356e-07,-2.375665788524888223e-07,-2.415931310364293090e-07,-2.456196832203697693e-07,-2.496462354043102295e-07,-2.536727875882506898e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.071345218863114916e-09,-8.142690437726229831e-09,-1.221403565658934557e-08,-1.628538087545246297e-08,-2.035672609431558037e-08,-2.442807131317869777e-08,-2.849941653204181516e-08,-3.257076175090493256e-08,-3.664210696976805327e-08,-4.071345218863117397e-08,-4.478479740749429468e-08,-4.885614262635741538e-08,-5.292748784522053609e-08,-5.699883306408365679e-08,-6.107017828294677750e-08,-6.514152350180990482e-08,-6.921286872067303215e-08,-7.328421393953615947e-08,-7.735555915839928679e-08,-8.142690437726241412e-08,-8.549824959612554144e-08,-8.956959481498866876e-08,-9.364094003385179609e-08,-9.771228525271492341e-08,-1.017836304715780507e-07,-1.058549756904411781e-07,-1.099263209093043054e-07,-1.139976661281674327e-07,-1.180690113470305600e-07,-1.221403565658936873e-07,-1.262117017847568014e-07,-1.302830470036199155e-07,-1.343543922224830296e-07,-1.384257374413461437e-07,-1.424970826602092578e-07,-1.465684278790723719e-07,-1.506397730979354860e-07,-1.547111183167986001e-07,-1.587824635356617141e-07,-1.628538087545248282e-07,-1.669251539733879423e-07,-1.709964991922510564e-07,-1.750678444111141705e-07,-1.791391896299772846e-07,-1.832105348488403987e-07,-1.872818800677035128e-07,-1.913532252865666269e-07,-1.954245705054297409e-07,-1.994959157242928550e-07,-2.035672609431559691e-07,-2.076386061620190832e-07,-2.117099513808821973e-07,-2.157812965997453114e-07,-2.198526418186084255e-07,-2.239239870374715396e-07,-2.279953322563346536e-07,-2.320666774751977677e-07,-2.361380226940608818e-07,-2.402093679129239959e-07,-2.442807131317871100e-07,-2.483520583506502241e-07,-2.524234035695133382e-07,-2.564947487883764523e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055000935e-09,-4.386641824110001869e-09,-6.579962736165002804e-09,-8.773283648220003739e-09,-1.096660456027500467e-08,-1.315992547233000561e-08,-1.535324638438500489e-08,-1.754656729644000417e-08,-1.973988820849500345e-08,-2.193320912055000273e-08,-2.412653003260500201e-08,-2.631985094466000129e-08,-2.851317185671500057e-08,-3.070649276876999654e-08,-3.289981368082499251e-08,-3.509313459287998848e-08,-3.728645550493498446e-08,-3.947977641698998043e-08,-4.167309732904497640e-08,-4.386641824109997237e-08,-4.605973915315496834e-08,-4.825306006520996431e-08,-5.044638097726496029e-08,-5.263970188931995626e-08,-5.483302280137495223e-08,-5.702634371342994820e-08,-5.921966462548494417e-08,-6.141298553753994014e-08,-6.360630644959494273e-08,-6.579962736164994532e-08,-6.799294827370494791e-08,-7.018626918575995050e-08,-7.237959009781495309e-08,-7.457291100986995568e-08,-7.676623192192495827e-08,-7.895955283397996086e-08,-8.115287374603496344e-08,-8.334619465808996603e-08,-8.553951557014496862e-08,-8.773283648219997121e-08,-8.992615739425497380e-08,-9.211947830630997639e-08,-9.431279921836497898e-08,-9.650612013041998157e-08,-9.869944104247498416e-08,-1.008927619545299867e-07,-1.030860828665849893e-07,-1.052794037786399919e-07,-1.074727246906949945e-07,-1.096660456027499971e-07,-1.118593665148049997e-07,-1.140526874268600023e-07,-1.162460083389150049e-07,-1.184393292509700075e-07,-1.206326501630250100e-07,-1.228259710750800126e-07,-1.250192919871350152e-07,-1.272126128991900178e-07,-1.294059338112450204e-07,-1.315992547233000230e-07,-1.337925756353550256e-07,-1.359858965474100282e-07,-1.381792174594650308e-07 +0.000000000000000000e+00,-2.119465504168162833e-09,-4.238931008336325666e-09,-6.358396512504488085e-09,-8.477862016672649677e-09,-1.059732752084081127e-08,-1.271679302500897286e-08,-1.483625852917713445e-08,-1.695572403334529604e-08,-1.907518953751345764e-08,-2.119465504168161923e-08,-2.331412054584978082e-08,-2.543358605001794241e-08,-2.755305155418610400e-08,-2.967251705835426560e-08,-3.179198256252242719e-08,-3.391144806669058547e-08,-3.603091357085874376e-08,-3.815037907502690204e-08,-4.026984457919506032e-08,-4.238931008336321861e-08,-4.450877558753137689e-08,-4.662824109169953517e-08,-4.874770659586769346e-08,-5.086717210003585174e-08,-5.298663760420401002e-08,-5.510610310837216831e-08,-5.722556861254032659e-08,-5.934503411670848487e-08,-6.146449962087664316e-08,-6.358396512504480144e-08,-6.570343062921295972e-08,-6.782289613338111801e-08,-6.994236163754927629e-08,-7.206182714171743457e-08,-7.418129264588559285e-08,-7.630075815005375114e-08,-7.842022365422190942e-08,-8.053968915839006770e-08,-8.265915466255822599e-08,-8.477862016672638427e-08,-8.689808567089454255e-08,-8.901755117506270084e-08,-9.113701667923085912e-08,-9.325648218339901740e-08,-9.537594768756717569e-08,-9.749541319173533397e-08,-9.961487869590349225e-08,-1.017343442000716505e-07,-1.038538097042398088e-07,-1.059732752084079671e-07,-1.080927407125761254e-07,-1.102122062167442837e-07,-1.123316717209124420e-07,-1.144511372250806002e-07,-1.165706027292487585e-07,-1.186900682334169168e-07,-1.208095337375850751e-07,-1.229289992417532334e-07,-1.250484647459213917e-07,-1.271679302500895499e-07,-1.292873957542577082e-07,-1.314068612584258665e-07,-1.335263267625940248e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.057028258938689330e-09,-8.114056517877378661e-09,-1.217108477681606716e-08,-1.622811303575475401e-08,-2.028514129469344086e-08,-2.434216955363212771e-08,-2.839919781257081456e-08,-3.245622607150950141e-08,-3.651325433044818495e-08,-4.057028258938686849e-08,-4.462731084832555203e-08,-4.868433910726423557e-08,-5.274136736620291911e-08,-5.679839562514160265e-08,-6.085542388408028619e-08,-6.491245214301896311e-08,-6.896948040195764003e-08,-7.302650866089631696e-08,-7.708353691983499388e-08,-8.114056517877367080e-08,-8.519759343771234772e-08,-8.925462169665102465e-08,-9.331164995558970157e-08,-9.736867821452837849e-08,-1.014257064734670554e-07,-1.054827347324057323e-07,-1.095397629913444093e-07,-1.135967912502830862e-07,-1.176538195092217631e-07,-1.217108477681604400e-07,-1.257678760270991169e-07,-1.298249042860377939e-07,-1.338819325449764708e-07,-1.379389608039151477e-07,-1.419959890628538246e-07,-1.460530173217925016e-07,-1.501100455807311785e-07,-1.541670738396698554e-07,-1.582241020986085323e-07,-1.622811303575472093e-07,-1.663381586164858862e-07,-1.703951868754245631e-07,-1.744522151343632400e-07,-1.785092433933019169e-07,-1.825662716522405939e-07,-1.866232999111792708e-07,-1.906803281701179477e-07,-1.947373564290566246e-07,-1.987943846879953016e-07,-2.028514129469339785e-07,-2.069084412058726554e-07,-2.109654694648113323e-07,-2.150224977237500092e-07,-2.190795259826886862e-07,-2.231365542416273631e-07,-2.271935825005660400e-07,-2.312506107595047169e-07,-2.353076390184433939e-07,-2.393646672773820443e-07,-2.434216955363207212e-07,-2.474787237952593982e-07,-2.515357520541980751e-07,-2.555927803131367520e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.230509586221175109e-09,-4.461019172442350218e-09,-6.691528758663524914e-09,-8.922038344884698782e-09,-1.115254793110587265e-08,-1.338305751732704652e-08,-1.561356710354822039e-08,-1.784407668976939425e-08,-2.007458627599056812e-08,-2.230509586221174199e-08,-2.453560544843291586e-08,-2.676611503465408973e-08,-2.899662462087526360e-08,-3.122713420709643416e-08,-3.345764379331760802e-08,-3.568815337953878189e-08,-3.791866296575995576e-08,-4.014917255198112963e-08,-4.237968213820230350e-08,-4.461019172442347737e-08,-4.684070131064465123e-08,-4.907121089686582510e-08,-5.130172048308699897e-08,-5.353223006930817284e-08,-5.576273965552934671e-08,-5.799324924175052058e-08,-6.022375882797169444e-08,-6.245426841419286831e-08,-6.468477800041404218e-08,-6.691528758663521605e-08,-6.914579717285638992e-08,-7.137630675907756378e-08,-7.360681634529873765e-08,-7.583732593151991152e-08,-7.806783551774108539e-08,-8.029834510396225926e-08,-8.252885469018343313e-08,-8.475936427640460699e-08,-8.698987386262578086e-08,-8.922038344884695473e-08,-9.145089303506812860e-08,-9.368140262128930247e-08,-9.591191220751047634e-08,-9.814242179373165020e-08,-1.003729313799528241e-07,-1.026034409661739979e-07,-1.048339505523951718e-07,-1.070644601386163457e-07,-1.092949697248375195e-07,-1.115254793110586934e-07,-1.137559888972798673e-07,-1.159864984835010412e-07,-1.182170080697222150e-07,-1.204475176559433889e-07,-1.226780272421645760e-07,-1.249085368283857631e-07,-1.271390464146069502e-07,-1.293695560008281373e-07,-1.316000655870493244e-07,-1.338305751732705115e-07,-1.360610847594916986e-07,-1.382915943457128857e-07,-1.405221039319340728e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.026552183940815937e-09,-8.053104367881631874e-09,-1.207965655182244781e-08,-1.610620873576326375e-08,-2.013276091970408134e-08,-2.415931310364489893e-08,-2.818586528758571652e-08,-3.221241747152653411e-08,-3.623896965546735171e-08,-4.026552183940816930e-08,-4.429207402334898689e-08,-4.831862620728980448e-08,-5.234517839123062207e-08,-5.637173057517143966e-08,-6.039828275911225064e-08,-6.442483494305305499e-08,-6.845138712699385935e-08,-7.247793931093466371e-08,-7.650449149487546806e-08,-8.053104367881627242e-08,-8.455759586275707678e-08,-8.858414804669788113e-08,-9.261070023063868549e-08,-9.663725241457948985e-08,-1.006638045985202942e-07,-1.046903567824610986e-07,-1.087169089664019029e-07,-1.127434611503427073e-07,-1.167700133342835116e-07,-1.207965655182243160e-07,-1.248231177021651203e-07,-1.288496698861059247e-07,-1.328762220700467291e-07,-1.369027742539875334e-07,-1.409293264379283378e-07,-1.449558786218691421e-07,-1.489824308058099465e-07,-1.530089829897507508e-07,-1.570355351736915552e-07,-1.610620873576323596e-07,-1.650886395415731639e-07,-1.691151917255139683e-07,-1.731417439094547726e-07,-1.771682960933955770e-07,-1.811948482773363813e-07,-1.852214004612771857e-07,-1.892479526452179900e-07,-1.932745048291587944e-07,-1.973010570130995988e-07,-2.013276091970404031e-07,-2.053541613809812075e-07,-2.093807135649220118e-07,-2.134072657488628162e-07,-2.174338179328036205e-07,-2.214603701167444249e-07,-2.254869223006852293e-07,-2.295134744846260336e-07,-2.335400266685668380e-07,-2.375665788525076423e-07,-2.415931310364484732e-07,-2.456196832203893040e-07,-2.496462354043301348e-07,-2.536727875882709656e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.057028258938862211e-09,-8.114056517877724422e-09,-1.217108477681658663e-08,-1.622811303575544884e-08,-2.028514129469431106e-08,-2.434216955363317327e-08,-2.839919781257203548e-08,-3.245622607151089769e-08,-3.651325433044975990e-08,-4.057028258938862211e-08,-4.462731084832748432e-08,-4.868433910726634653e-08,-5.274136736620520874e-08,-5.679839562514407096e-08,-6.085542388408293317e-08,-6.491245214302179538e-08,-6.896948040196065759e-08,-7.302650866089951980e-08,-7.708353691983838201e-08,-8.114056517877724422e-08,-8.519759343771610643e-08,-8.925462169665496864e-08,-9.331164995559383085e-08,-9.736867821453269307e-08,-1.014257064734715553e-07,-1.054827347324104175e-07,-1.095397629913492797e-07,-1.135967912502881419e-07,-1.176538195092270041e-07,-1.217108477681658663e-07,-1.257678760271047285e-07,-1.298249042860435908e-07,-1.338819325449824530e-07,-1.379389608039213152e-07,-1.419959890628601774e-07,-1.460530173217990396e-07,-1.501100455807379018e-07,-1.541670738396767640e-07,-1.582241020986156262e-07,-1.622811303575544884e-07,-1.663381586164933507e-07,-1.703951868754322129e-07,-1.744522151343710751e-07,-1.785092433933099373e-07,-1.825662716522487995e-07,-1.866232999111876617e-07,-1.906803281701265239e-07,-1.947373564290653861e-07,-1.987943846880042483e-07,-2.028514129469431106e-07,-2.069084412058819728e-07,-2.109654694648208350e-07,-2.150224977237596972e-07,-2.190795259826985594e-07,-2.231365542416374216e-07,-2.271935825005762838e-07,-2.312506107595151460e-07,-2.353076390184540082e-07,-2.393646672773928440e-07,-2.434216955363316797e-07,-2.474787237952705155e-07,-2.515357520542093512e-07,-2.555927803131481869e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055260256e-09,-4.386641824110520512e-09,-6.579962736165780354e-09,-8.773283648221039369e-09,-1.096660456027629838e-08,-1.315992547233155740e-08,-1.535324638438681807e-08,-1.754656729644207874e-08,-1.973988820849733941e-08,-2.193320912055260008e-08,-2.412653003260786075e-08,-2.631985094466312141e-08,-2.851317185671838208e-08,-3.070649276877364275e-08,-3.289981368082890342e-08,-3.509313459288416409e-08,-3.728645550493942476e-08,-3.947977641699468543e-08,-4.167309732904994610e-08,-4.386641824110520677e-08,-4.605973915316046744e-08,-4.825306006521572811e-08,-5.044638097727098878e-08,-5.263970188932624945e-08,-5.483302280138151012e-08,-5.702634371343677079e-08,-5.921966462549203146e-08,-6.141298553754729874e-08,-6.360630644960256603e-08,-6.579962736165783332e-08,-6.799294827371310060e-08,-7.018626918576836789e-08,-7.237959009782363518e-08,-7.457291100987890246e-08,-7.676623192193416975e-08,-7.895955283398943704e-08,-8.115287374604470432e-08,-8.334619465809997161e-08,-8.553951557015523890e-08,-8.773283648221050618e-08,-8.992615739426577347e-08,-9.211947830632104076e-08,-9.431279921837630804e-08,-9.650612013043157533e-08,-9.869944104248684262e-08,-1.008927619545421099e-07,-1.030860828665973772e-07,-1.052794037786526445e-07,-1.074727246907079118e-07,-1.096660456027631791e-07,-1.118593665148184463e-07,-1.140526874268737136e-07,-1.162460083389289809e-07,-1.184393292509842482e-07,-1.206326501630395155e-07,-1.228259710750947828e-07,-1.250192919871500501e-07,-1.272126128992053173e-07,-1.294059338112605846e-07,-1.315992547233158519e-07,-1.337925756353711192e-07,-1.359858965474263865e-07,-1.381792174594816538e-07 +0.000000000000000000e+00,-2.119465504168072257e-09,-4.238931008336144513e-09,-6.358396512504216770e-09,-8.477862016672289026e-09,-1.059732752084036128e-08,-1.271679302500843354e-08,-1.483625852917650580e-08,-1.695572403334457805e-08,-1.907518953751265031e-08,-2.119465504168072257e-08,-2.331412054584879482e-08,-2.543358605001686708e-08,-2.755305155418493933e-08,-2.967251705835301159e-08,-3.179198256252108385e-08,-3.391144806668915610e-08,-3.603091357085722836e-08,-3.815037907502530062e-08,-4.026984457919337287e-08,-4.238931008336144513e-08,-4.450877558752951739e-08,-4.662824109169758964e-08,-4.874770659586566190e-08,-5.086717210003373416e-08,-5.298663760420180641e-08,-5.510610310836987867e-08,-5.722556861253795093e-08,-5.934503411670602318e-08,-6.146449962087410206e-08,-6.358396512504218093e-08,-6.570343062921025980e-08,-6.782289613337833868e-08,-6.994236163754641755e-08,-7.206182714171449643e-08,-7.418129264588257530e-08,-7.630075815005065417e-08,-7.842022365421873305e-08,-8.053968915838681192e-08,-8.265915466255489080e-08,-8.477862016672296967e-08,-8.689808567089104854e-08,-8.901755117505912742e-08,-9.113701667922720629e-08,-9.325648218339528517e-08,-9.537594768756336404e-08,-9.749541319173144291e-08,-9.961487869589952179e-08,-1.017343442000676007e-07,-1.038538097042356795e-07,-1.059732752084037584e-07,-1.080927407125718373e-07,-1.102122062167399162e-07,-1.123316717209079950e-07,-1.144511372250760739e-07,-1.165706027292441528e-07,-1.186900682334122317e-07,-1.208095337375803105e-07,-1.229289992417483894e-07,-1.250484647459164683e-07,-1.271679302500845471e-07,-1.292873957542526260e-07,-1.314068612584207049e-07,-1.335263267625887838e-07 +0.000000000000000000e+00,-6.360790571504338547e-09,-1.272158114300867709e-08,-1.908237171451301564e-08,-2.544316228601735419e-08,-3.180395285752169274e-08,-3.816474342902603128e-08,-4.452553400053036983e-08,-5.088632457203470838e-08,-5.724711514353904693e-08,-6.360790571504338547e-08,-6.996869628654771740e-08,-7.632948685805204933e-08,-8.269027742955638126e-08,-8.905106800106071319e-08,-9.541185857256504512e-08,-1.017726491440693771e-07,-1.081334397155737090e-07,-1.144942302870780409e-07,-1.208550208585823728e-07,-1.272158114300866915e-07,-1.335766020015910102e-07,-1.399373925730953289e-07,-1.462981831445996476e-07,-1.526589737161039663e-07,-1.590197642876082850e-07,-1.653805548591126037e-07,-1.717413454306169224e-07,-1.781021360021212411e-07,-1.844629265736255598e-07,-1.908237171451298785e-07,-1.971845077166341972e-07,-2.035452982881385159e-07,-2.099060888596428346e-07,-2.162668794311471533e-07,-2.226276700026514720e-07,-2.289884605741557907e-07,-2.353492511456601094e-07,-2.417100417171644281e-07,-2.480708322886687467e-07,-2.544316228601730654e-07,-2.607924134316773841e-07,-2.671532040031817028e-07,-2.735139945746860215e-07,-2.798747851461903402e-07,-2.862355757176946589e-07,-2.925963662891989776e-07,-2.989571568607032963e-07,-3.053179474322076150e-07,-3.116787380037119337e-07,-3.180395285752162524e-07,-3.244003191467205711e-07,-3.307611097182248898e-07,-3.371219002897292085e-07,-3.434826908612335272e-07,-3.498434814327378459e-07,-3.562042720042421646e-07,-3.625650625757464833e-07,-3.689258531472508020e-07,-3.752866437187551207e-07,-3.816474342902594393e-07,-3.880082248617637580e-07,-3.943690154332680767e-07,-4.007298060047723954e-07 +0.000000000000000000e+00,-6.341097292112865036e-09,-1.268219458422573007e-08,-1.902329187633859428e-08,-2.536438916845145684e-08,-3.170548646056431939e-08,-3.804658375267718195e-08,-4.438768104479004450e-08,-5.072877833690290706e-08,-5.706987562901576961e-08,-6.341097292112862555e-08,-6.975207021324148810e-08,-7.609316750535435066e-08,-8.243426479746721321e-08,-8.877536208958007577e-08,-9.511645938169293832e-08,-1.014575566738058009e-07,-1.077986539659186634e-07,-1.141397512580315260e-07,-1.204808485501443885e-07,-1.268219458422572511e-07,-1.331630431343701137e-07,-1.395041404264829762e-07,-1.458452377185958388e-07,-1.521863350107087013e-07,-1.585274323028215639e-07,-1.648685295949344264e-07,-1.712096268870472890e-07,-1.775507241791601515e-07,-1.838918214712730141e-07,-1.902329187633858766e-07,-1.965740160554987392e-07,-2.029151133476116018e-07,-2.092562106397244643e-07,-2.155973079318373269e-07,-2.219384052239501894e-07,-2.282795025160630520e-07,-2.346205998081759145e-07,-2.409616971002887771e-07,-2.473027943924016396e-07,-2.536438916845145022e-07,-2.599849889766273648e-07,-2.663260862687402273e-07,-2.726671835608530899e-07,-2.790082808529659524e-07,-2.853493781450788150e-07,-2.916904754371916775e-07,-2.980315727293045401e-07,-3.043726700214174026e-07,-3.107137673135302652e-07,-3.170548646056431277e-07,-3.233959618977559903e-07,-3.297370591898688529e-07,-3.360781564819817154e-07,-3.424192537740945780e-07,-3.487603510662074405e-07,-3.551014483583203031e-07,-3.614425456504331656e-07,-3.677836429425460282e-07,-3.741247402346588907e-07,-3.804658375267717533e-07,-3.868069348188846158e-07,-3.931480321109974784e-07,-3.994891294031103410e-07 +0.000000000000000000e+00,-5.298208974352760672e-09,-1.059641794870552134e-08,-1.589462692305828119e-08,-2.119283589741103938e-08,-2.649104487176379757e-08,-3.178925384611655576e-08,-3.708746282046931395e-08,-4.238567179482207214e-08,-4.768388076917483033e-08,-5.298208974352758853e-08,-5.828029871788034672e-08,-6.357850769223309829e-08,-6.887671666658585648e-08,-7.417492564093861467e-08,-7.947313461529137286e-08,-8.477134358964413105e-08,-9.006955256399688924e-08,-9.536776153834964743e-08,-1.006659705127024056e-07,-1.059641794870551638e-07,-1.112623884614079220e-07,-1.165605974357606802e-07,-1.218588064101134384e-07,-1.271570153844661966e-07,-1.324552243588189548e-07,-1.377534333331717130e-07,-1.430516423075244712e-07,-1.483498512818772293e-07,-1.536480602562299875e-07,-1.589462692305827457e-07,-1.642444782049355039e-07,-1.695426871792882621e-07,-1.748408961536410203e-07,-1.801391051279937785e-07,-1.854373141023465367e-07,-1.907355230766992949e-07,-1.960337320510520531e-07,-2.013319410254048112e-07,-2.066301499997575694e-07,-2.119283589741103276e-07,-2.172265679484630858e-07,-2.225247769228158440e-07,-2.278229858971686022e-07,-2.331211948715213604e-07,-2.384194038458740921e-07,-2.437176128202268238e-07,-2.490158217945795556e-07,-2.543140307689322873e-07,-2.596122397432850190e-07,-2.649104487176377507e-07,-2.702086576919904824e-07,-2.755068666663432142e-07,-2.808050756406959459e-07,-2.861032846150486776e-07,-2.914014935894014093e-07,-2.966997025637541410e-07,-3.019979115381068728e-07,-3.072961205124596045e-07,-3.125943294868123362e-07,-3.178925384611650679e-07,-3.231907474355177997e-07,-3.284889564098705314e-07,-3.337871653842232631e-07 +0.000000000000000000e+00,-4.308827514987895134e-09,-8.617655029975790269e-09,-1.292648254496368458e-08,-1.723531005995157723e-08,-2.154413757493946988e-08,-2.585296508992736253e-08,-3.016179260491525188e-08,-3.447062011990314122e-08,-3.877944763489103057e-08,-4.308827514987891991e-08,-4.739710266486680926e-08,-5.170593017985469860e-08,-5.601475769484258794e-08,-6.032358520983047729e-08,-6.463241272481836663e-08,-6.894124023980625598e-08,-7.325006775479414532e-08,-7.755889526978203467e-08,-8.186772278476992401e-08,-8.617655029975781335e-08,-9.048537781474570270e-08,-9.479420532973359204e-08,-9.910303284472148139e-08,-1.034118603597093707e-07,-1.077206878746972601e-07,-1.120295153896851494e-07,-1.163383429046730388e-07,-1.206471704196609281e-07,-1.249559979346488307e-07,-1.292648254496367333e-07,-1.335736529646246358e-07,-1.378824804796125384e-07,-1.421913079946004410e-07,-1.465001355095883436e-07,-1.508089630245762462e-07,-1.551177905395641487e-07,-1.594266180545520513e-07,-1.637354455695399539e-07,-1.680442730845278565e-07,-1.723531005995157591e-07,-1.766619281145036616e-07,-1.809707556294915642e-07,-1.852795831444794668e-07,-1.895884106594673694e-07,-1.938972381744552720e-07,-1.982060656894431745e-07,-2.025148932044310771e-07,-2.068237207194189797e-07,-2.111325482344068823e-07,-2.154413757493947848e-07,-2.197502032643826874e-07,-2.240590307793705900e-07,-2.283678582943584926e-07,-2.326766858093463952e-07,-2.369855133243342977e-07,-2.412943408393222268e-07,-2.456031683543101558e-07,-2.499119958692980849e-07,-2.542208233842860139e-07,-2.585296508992739430e-07,-2.628384784142618720e-07,-2.671473059292498011e-07,-2.714561334442377301e-07 +0.000000000000000000e+00,-6.345291972152956750e-09,-1.269058394430591350e-08,-1.903587591645887025e-08,-2.538116788861182700e-08,-3.172645986076478044e-08,-3.807175183291773388e-08,-4.441704380507068732e-08,-5.076233577722364076e-08,-5.710762774937659420e-08,-6.345291972152954764e-08,-6.979821169368250109e-08,-7.614350366583545453e-08,-8.248879563798840797e-08,-8.883408761014136141e-08,-9.517937958229431485e-08,-1.015246715544472683e-07,-1.078699635266002217e-07,-1.142152554987531752e-07,-1.205605474709061286e-07,-1.269058394430590688e-07,-1.332511314152120090e-07,-1.395964233873649492e-07,-1.459417153595178894e-07,-1.522870073316708296e-07,-1.586322993038237698e-07,-1.649775912759767101e-07,-1.713228832481296503e-07,-1.776681752202825905e-07,-1.840134671924355307e-07,-1.903587591645884709e-07,-1.967040511367414111e-07,-2.030493431088943513e-07,-2.093946350810472915e-07,-2.157399270532002317e-07,-2.220852190253531719e-07,-2.284305109975061121e-07,-2.347758029696590523e-07,-2.411210949418119925e-07,-2.474663869139649592e-07,-2.538116788861179259e-07,-2.601569708582708926e-07,-2.665022628304238592e-07,-2.728475548025768259e-07,-2.791928467747297926e-07,-2.855381387468827593e-07,-2.918834307190357259e-07,-2.982287226911886926e-07,-3.045740146633416593e-07,-3.109193066354946260e-07,-3.172645986076475926e-07,-3.236098905798005593e-07,-3.299551825519535260e-07,-3.363004745241064927e-07,-3.426457664962594593e-07,-3.489910584684124260e-07,-3.553363504405653927e-07,-3.616816424127183594e-07,-3.680269343848713260e-07,-3.743722263570242927e-07,-3.807175183291772594e-07,-3.870628103013302261e-07,-3.934081022734831927e-07,-3.997533942456361594e-07 +0.000000000000000000e+00,-5.301630404218794569e-09,-1.060326080843758914e-08,-1.590489121265638371e-08,-2.120652161687517828e-08,-2.650815202109397285e-08,-3.180978242531276742e-08,-3.711141282953155868e-08,-4.241304323375034994e-08,-4.771467363796914120e-08,-5.301630404218793246e-08,-5.831793444640672372e-08,-6.361956485062552160e-08,-6.892119525484431948e-08,-7.422282565906311735e-08,-7.952445606328191523e-08,-8.482608646750071311e-08,-9.012771687171951099e-08,-9.542934727593830887e-08,-1.007309776801571067e-07,-1.060326080843759046e-07,-1.113342384885947025e-07,-1.166358688928135004e-07,-1.219374992970322983e-07,-1.272391297012510961e-07,-1.325407601054698940e-07,-1.378423905096886919e-07,-1.431440209139074898e-07,-1.484456513181262876e-07,-1.537472817223450855e-07,-1.590489121265638834e-07,-1.643505425307826813e-07,-1.696521729350014792e-07,-1.749538033392202770e-07,-1.802554337434390749e-07,-1.855570641476578728e-07,-1.908586945518766707e-07,-1.961603249560954686e-07,-2.014619553603142664e-07,-2.067635857645330643e-07,-2.120652161687518622e-07,-2.173668465729706601e-07,-2.226684769771894579e-07,-2.279701073814082558e-07,-2.332717377856270537e-07,-2.385733681898458516e-07,-2.438749985940646495e-07,-2.491766289982834473e-07,-2.544782594025022452e-07,-2.597798898067210431e-07,-2.650815202109398410e-07,-2.703831506151586388e-07,-2.756847810193774367e-07,-2.809864114235962346e-07,-2.862880418278150325e-07,-2.915896722320338304e-07,-2.968913026362526282e-07,-3.021929330404714261e-07,-3.074945634446902240e-07,-3.127961938489090219e-07,-3.180978242531278198e-07,-3.233994546573466176e-07,-3.287010850615654155e-07,-3.340027154657842134e-07 +0.000000000000000000e+00,-6.360790571504363363e-09,-1.272158114300872673e-08,-1.908237171451308843e-08,-2.544316228601745014e-08,-3.180395285752181185e-08,-3.816474342902617687e-08,-4.452553400053054189e-08,-5.088632457203490690e-08,-5.724711514353927192e-08,-6.360790571504363694e-08,-6.996869628654800857e-08,-7.632948685805238021e-08,-8.269027742955675184e-08,-8.905106800106112348e-08,-9.541185857256549511e-08,-1.017726491440698667e-07,-1.081334397155742384e-07,-1.144942302870786100e-07,-1.208550208585829816e-07,-1.272158114300873533e-07,-1.335766020015917249e-07,-1.399373925730960966e-07,-1.462981831446004682e-07,-1.526589737161048398e-07,-1.590197642876092115e-07,-1.653805548591135831e-07,-1.717413454306179547e-07,-1.781021360021223264e-07,-1.844629265736266980e-07,-1.908237171451310696e-07,-1.971845077166354413e-07,-2.035452982881398129e-07,-2.099060888596441845e-07,-2.162668794311485562e-07,-2.226276700026529278e-07,-2.289884605741572994e-07,-2.353492511456616711e-07,-2.417100417171660162e-07,-2.480708322886703879e-07,-2.544316228601747595e-07,-2.607924134316791311e-07,-2.671532040031835028e-07,-2.735139945746878744e-07,-2.798747851461922460e-07,-2.862355757176966177e-07,-2.925963662892009893e-07,-2.989571568607053610e-07,-3.053179474322097326e-07,-3.116787380037141042e-07,-3.180395285752184759e-07,-3.244003191467228475e-07,-3.307611097182272191e-07,-3.371219002897315908e-07,-3.434826908612359624e-07,-3.498434814327403340e-07,-3.562042720042447057e-07,-3.625650625757490773e-07,-3.689258531472534489e-07,-3.752866437187578206e-07,-3.816474342902621922e-07,-3.880082248617665638e-07,-3.943690154332709355e-07,-4.007298060047753071e-07 +0.000000000000000000e+00,-6.345291972152976602e-09,-1.269058394430595320e-08,-1.903587591645892981e-08,-2.538116788861190641e-08,-3.172645986076488632e-08,-3.807175183291786623e-08,-4.441704380507084614e-08,-5.076233577722382605e-08,-5.710762774937680596e-08,-6.345291972152978587e-08,-6.979821169368276578e-08,-7.614350366583574569e-08,-8.248879563798872560e-08,-8.883408761014170552e-08,-9.517937958229468543e-08,-1.015246715544476653e-07,-1.078699635266006452e-07,-1.142152554987536252e-07,-1.205605474709066051e-07,-1.269058394430595982e-07,-1.332511314152125914e-07,-1.395964233873655845e-07,-1.459417153595185777e-07,-1.522870073316715708e-07,-1.586322993038245639e-07,-1.649775912759775571e-07,-1.713228832481305502e-07,-1.776681752202835434e-07,-1.840134671924365365e-07,-1.903587591645895297e-07,-1.967040511367425228e-07,-2.030493431088955160e-07,-2.093946350810485091e-07,-2.157399270532015023e-07,-2.220852190253544954e-07,-2.284305109975074885e-07,-2.347758029696604817e-07,-2.411210949418134748e-07,-2.474663869139664415e-07,-2.538116788861194082e-07,-2.601569708582723749e-07,-2.665022628304253415e-07,-2.728475548025783082e-07,-2.791928467747312749e-07,-2.855381387468842416e-07,-2.918834307190372082e-07,-2.982287226911901749e-07,-3.045740146633431416e-07,-3.109193066354961083e-07,-3.172645986076490749e-07,-3.236098905798020416e-07,-3.299551825519550083e-07,-3.363004745241079750e-07,-3.426457664962609416e-07,-3.489910584684139083e-07,-3.553363504405668750e-07,-3.616816424127198417e-07,-3.680269343848728084e-07,-3.743722263570257750e-07,-3.807175183291787417e-07,-3.870628103013317084e-07,-3.934081022734846751e-07,-3.997533942456376417e-07 +0.000000000000000000e+00,-5.298208974352948442e-09,-1.059641794870589688e-08,-1.589462692305884367e-08,-2.119283589741179046e-08,-2.649104487176473725e-08,-3.178925384611768735e-08,-3.708746282047063744e-08,-4.238567179482358754e-08,-4.768388076917653764e-08,-5.298208974352948773e-08,-5.828029871788243783e-08,-6.357850769223538793e-08,-6.887671666658834464e-08,-7.417492564094130135e-08,-7.947313461529425807e-08,-8.477134358964721478e-08,-9.006955256400017150e-08,-9.536776153835312821e-08,-1.006659705127060849e-07,-1.059641794870590416e-07,-1.112623884614119984e-07,-1.165605974357649551e-07,-1.218588064101179118e-07,-1.271570153844708553e-07,-1.324552243588237987e-07,-1.377534333331767422e-07,-1.430516423075296857e-07,-1.483498512818826292e-07,-1.536480602562355727e-07,-1.589462692305885161e-07,-1.642444782049414596e-07,-1.695426871792944031e-07,-1.748408961536473466e-07,-1.801391051280002901e-07,-1.854373141023532335e-07,-1.907355230767061770e-07,-1.960337320510591205e-07,-2.013319410254120640e-07,-2.066301499997650074e-07,-2.119283589741179509e-07,-2.172265679484708944e-07,-2.225247769228238379e-07,-2.278229858971767814e-07,-2.331211948715297248e-07,-2.384194038458826683e-07,-2.437176128202356118e-07,-2.490158217945885553e-07,-2.543140307689414988e-07,-2.596122397432944422e-07,-2.649104487176473857e-07,-2.702086576920003292e-07,-2.755068666663532727e-07,-2.808050756407062162e-07,-2.861032846150591596e-07,-2.914014935894121031e-07,-2.966997025637650466e-07,-3.019979115381179901e-07,-3.072961205124709336e-07,-3.125943294868238770e-07,-3.178925384611768205e-07,-3.231907474355297640e-07,-3.284889564098827075e-07,-3.337871653842356509e-07 +0.000000000000000000e+00,-4.308827514987575016e-09,-8.617655029975150031e-09,-1.292648254496272505e-08,-1.723531005995030006e-08,-2.154413757493787508e-08,-2.585296508992545009e-08,-3.016179260491302842e-08,-3.447062011990060674e-08,-3.877944763488818507e-08,-4.308827514987576339e-08,-4.739710266486334171e-08,-5.170593017985092004e-08,-5.601475769483849836e-08,-6.032358520982608331e-08,-6.463241272481366825e-08,-6.894124023980125319e-08,-7.325006775478883813e-08,-7.755889526977642307e-08,-8.186772278476400801e-08,-8.617655029975159296e-08,-9.048537781473917790e-08,-9.479420532972676284e-08,-9.910303284471434778e-08,-1.034118603597019327e-07,-1.077206878746895177e-07,-1.120295153896771026e-07,-1.163383429046646875e-07,-1.206471704196522725e-07,-1.249559979346398574e-07,-1.292648254496274424e-07,-1.335736529646150273e-07,-1.378824804796026123e-07,-1.421913079945901972e-07,-1.465001355095777821e-07,-1.508089630245653671e-07,-1.551177905395529520e-07,-1.594266180545405370e-07,-1.637354455695281219e-07,-1.680442730845157068e-07,-1.723531005995032918e-07,-1.766619281144908767e-07,-1.809707556294784617e-07,-1.852795831444660466e-07,-1.895884106594536316e-07,-1.938972381744412165e-07,-1.982060656894288014e-07,-2.025148932044163864e-07,-2.068237207194039713e-07,-2.111325482343915563e-07,-2.154413757493791412e-07,-2.197502032643667261e-07,-2.240590307793543111e-07,-2.283678582943418960e-07,-2.326766858093294810e-07,-2.369855133243170659e-07,-2.412943408393046509e-07,-2.456031683542922623e-07,-2.499119958692798737e-07,-2.542208233842674851e-07,-2.585296508992550965e-07,-2.628384784142427079e-07,-2.671473059292303193e-07,-2.714561334442179307e-07 +0.000000000000000000e+00,-8.188985361817579549e-09,-1.637797072363515910e-08,-2.456695608545273699e-08,-3.275594144727031158e-08,-4.094492680908788617e-08,-4.913391217090546075e-08,-5.732289753272303534e-08,-6.551188289454060993e-08,-7.370086825635817789e-08,-8.188985361817574586e-08,-9.007883897999331383e-08,-9.826782434181088180e-08,-1.064568097036284498e-07,-1.146457950654460177e-07,-1.228347804272635857e-07,-1.310237657890811404e-07,-1.392127511508986952e-07,-1.474017365127162499e-07,-1.555907218745338046e-07,-1.637797072363513594e-07,-1.719686925981689141e-07,-1.801576779599864688e-07,-1.883466633218040236e-07,-1.965356486836215783e-07,-2.047246340454391330e-07,-2.129136194072566878e-07,-2.211026047690742425e-07,-2.292915901308917972e-07,-2.374805754927093520e-07,-2.456695608545269067e-07,-2.538585462163444879e-07,-2.620475315781620691e-07,-2.702365169399796503e-07,-2.784255023017972315e-07,-2.866144876636148127e-07,-2.948034730254323939e-07,-3.029924583872499751e-07,-3.111814437490675563e-07,-3.193704291108851376e-07,-3.275594144727027188e-07,-3.357483998345203000e-07,-3.439373851963378812e-07,-3.521263705581554624e-07,-3.603153559199730436e-07,-3.685043412817906248e-07,-3.766933266436082060e-07,-3.848823120054257872e-07,-3.930712973672433684e-07,-4.012602827290609496e-07,-4.094492680908785308e-07,-4.176382534526961120e-07,-4.258272388145136932e-07,-4.340162241763312744e-07,-4.422052095381488556e-07,-4.503941948999664368e-07,-4.585831802617840180e-07,-4.667721656236015992e-07,-4.749611509854191804e-07,-4.831501363472367616e-07,-4.913391217090543428e-07,-4.995281070708719240e-07,-5.077170924326895052e-07,-5.159060777945070864e-07 +0.000000000000000000e+00,-8.173039976096578995e-09,-1.634607995219315799e-08,-2.451911992828973533e-08,-3.269215990438630936e-08,-4.086519988048288339e-08,-4.903823985657945743e-08,-5.721127983267603146e-08,-6.538431980877260549e-08,-7.355735978486917952e-08,-8.173039976096575355e-08,-8.990343973706232759e-08,-9.807647971315890162e-08,-1.062495196892554757e-07,-1.144225596653520497e-07,-1.225955996414486237e-07,-1.307686396175451845e-07,-1.389416795936417453e-07,-1.471147195697383061e-07,-1.552877595458348669e-07,-1.634607995219314277e-07,-1.716338394980279885e-07,-1.798068794741245493e-07,-1.879799194502211101e-07,-1.961529594263176709e-07,-2.043259994024142317e-07,-2.124990393785107925e-07,-2.206720793546073533e-07,-2.288451193307039141e-07,-2.370181593068004749e-07,-2.451911992828970357e-07,-2.533642392589936229e-07,-2.615372792350902102e-07,-2.697103192111867975e-07,-2.778833591872833847e-07,-2.860563991633799720e-07,-2.942294391394765593e-07,-3.024024791155731465e-07,-3.105755190916697338e-07,-3.187485590677663211e-07,-3.269215990438629083e-07,-3.350946390199594956e-07,-3.432676789960560829e-07,-3.514407189721526701e-07,-3.596137589482492574e-07,-3.677867989243458447e-07,-3.759598389004424319e-07,-3.841328788765390192e-07,-3.923059188526356065e-07,-4.004789588287321937e-07,-4.086519988048287810e-07,-4.168250387809253683e-07,-4.249980787570219555e-07,-4.331711187331185428e-07,-4.413441587092151301e-07,-4.495171986853117173e-07,-4.576902386614083046e-07,-4.658632786375048919e-07,-4.740363186136014791e-07,-4.822093585896980664e-07,-4.903823985657946007e-07,-4.985554385418911351e-07,-5.067284785179876694e-07,-5.149015184940842037e-07 +0.000000000000000000e+00,-7.342542375101491020e-09,-1.468508475020298204e-08,-2.202762712530447306e-08,-2.937016950040596408e-08,-3.671271187550745841e-08,-4.405525425060895274e-08,-5.139779662571044707e-08,-5.874033900081194140e-08,-6.608288137591343573e-08,-7.342542375101493005e-08,-8.076796612611642438e-08,-8.811050850121791871e-08,-9.545305087631941304e-08,-1.027955932514209074e-07,-1.101381356265224017e-07,-1.174806780016238960e-07,-1.248232203767253771e-07,-1.321657627518268450e-07,-1.395083051269283128e-07,-1.468508475020297807e-07,-1.541933898771312486e-07,-1.615359322522327164e-07,-1.688784746273341843e-07,-1.762210170024356521e-07,-1.835635593775371200e-07,-1.909061017526385879e-07,-1.982486441277400557e-07,-2.055911865028415236e-07,-2.129337288779429914e-07,-2.202762712530444593e-07,-2.276188136281459272e-07,-2.349613560032473950e-07,-2.423038983783488629e-07,-2.496464407534503307e-07,-2.569889831285517986e-07,-2.643315255036532664e-07,-2.716740678787547343e-07,-2.790166102538562022e-07,-2.863591526289576700e-07,-2.937016950040591379e-07,-3.010442373791606057e-07,-3.083867797542620736e-07,-3.157293221293635415e-07,-3.230718645044650093e-07,-3.304144068795664772e-07,-3.377569492546679450e-07,-3.450994916297694129e-07,-3.524420340048708808e-07,-3.597845763799723486e-07,-3.671271187550738165e-07,-3.744696611301752843e-07,-3.818122035052767522e-07,-3.891547458803782201e-07,-3.964972882554796879e-07,-4.038398306305811558e-07,-4.111823730056826236e-07,-4.185249153807840915e-07,-4.258674577558855593e-07,-4.332100001309870272e-07,-4.405525425060884951e-07,-4.478950848811899629e-07,-4.552376272562914308e-07,-4.625801696313928986e-07 +0.000000000000000000e+00,-6.063138102467490135e-09,-1.212627620493498027e-08,-1.818941430740246875e-08,-2.425255240986995723e-08,-3.031569051233744571e-08,-3.637882861480493750e-08,-4.244196671727242929e-08,-4.850510481973992108e-08,-5.456824292220741287e-08,-6.063138102467490466e-08,-6.669451912714240306e-08,-7.275765722960990147e-08,-7.882079533207739988e-08,-8.488393343454489828e-08,-9.094707153701239669e-08,-9.701020963947989509e-08,-1.030733477419473935e-07,-1.091364858444148919e-07,-1.151996239468823903e-07,-1.212627620493498887e-07,-1.273259001518173871e-07,-1.333890382542848855e-07,-1.394521763567523839e-07,-1.455153144592198823e-07,-1.515784525616873808e-07,-1.576415906641548792e-07,-1.637047287666223776e-07,-1.697678668690898760e-07,-1.758310049715573744e-07,-1.818941430740248728e-07,-1.879572811764923712e-07,-1.940204192789598696e-07,-2.000835573814273680e-07,-2.061466954838948664e-07,-2.122098335863623648e-07,-2.182729716888298632e-07,-2.243361097912973616e-07,-2.303992478937648600e-07,-2.364623859962323584e-07,-2.425255240986998304e-07,-2.485886622011673023e-07,-2.546518003036347743e-07,-2.607149384061022462e-07,-2.667780765085697181e-07,-2.728412146110371901e-07,-2.789043527135046620e-07,-2.849674908159721339e-07,-2.910306289184396059e-07,-2.970937670209070778e-07,-3.031569051233745497e-07,-3.092200432258420217e-07,-3.152831813283094936e-07,-3.213463194307769656e-07,-3.274094575332444375e-07,-3.334725956357119094e-07,-3.395357337381793814e-07,-3.455988718406468533e-07,-3.516620099431143252e-07,-3.577251480455817972e-07,-3.637882861480492691e-07,-3.698514242505167411e-07,-3.759145623529842130e-07,-3.819777004554516849e-07 +0.000000000000000000e+00,-8.177431690004952991e-09,-1.635486338000990598e-08,-2.453229507001485897e-08,-3.270972676001981197e-08,-4.088715845002476496e-08,-4.906459014002971795e-08,-5.724202183003467094e-08,-6.541945352003962393e-08,-7.359688521004458354e-08,-8.177431690004954315e-08,-8.995174859005450276e-08,-9.812918028005946237e-08,-1.063066119700644220e-07,-1.144840436600693816e-07,-1.226614753500743412e-07,-1.308389070400793008e-07,-1.390163387300842604e-07,-1.471937704200892200e-07,-1.553712021100941796e-07,-1.635486338000991392e-07,-1.717260654901040988e-07,-1.799034971801090585e-07,-1.880809288701140181e-07,-1.962583605601189777e-07,-2.044357922501239373e-07,-2.126132239401288969e-07,-2.207906556301338565e-07,-2.289680873201388161e-07,-2.371455190101437757e-07,-2.453229507001487353e-07,-2.535003823901536949e-07,-2.616778140801586545e-07,-2.698552457701636142e-07,-2.780326774601685738e-07,-2.862101091501735334e-07,-2.943875408401784930e-07,-3.025649725301834526e-07,-3.107424042201884122e-07,-3.189198359101933718e-07,-3.270972676001983314e-07,-3.352746992902032910e-07,-3.434521309802082506e-07,-3.516295626702132102e-07,-3.598069943602181698e-07,-3.679844260502231295e-07,-3.761618577402280891e-07,-3.843392894302330487e-07,-3.925167211202380083e-07,-4.006941528102429679e-07,-4.088715845002479275e-07,-4.170490161902528871e-07,-4.252264478802578467e-07,-4.334038795702628063e-07,-4.415813112602677659e-07,-4.497587429502727255e-07,-4.579361746402776852e-07,-4.661136063302826448e-07,-4.742910380202876044e-07,-4.824684697102925110e-07,-4.906459014002973648e-07,-4.988233330903022185e-07,-5.070007647803070722e-07,-5.151781964703119260e-07 +0.000000000000000000e+00,-7.323008909193561593e-09,-1.464601781838712319e-08,-2.196902672758068643e-08,-2.929203563677424968e-08,-3.661504454596781293e-08,-4.393805345516137286e-08,-5.126106236435493280e-08,-5.858407127354849274e-08,-6.590708018274204606e-08,-7.323008909193559938e-08,-8.055309800112915270e-08,-8.787610691032270602e-08,-9.519911581951625934e-08,-1.025221247287098127e-07,-1.098451336379033660e-07,-1.171681425470969193e-07,-1.244911514562904726e-07,-1.318141603654840392e-07,-1.391371692746776057e-07,-1.464601781838711723e-07,-1.537831870930647388e-07,-1.611061960022583054e-07,-1.684292049114518720e-07,-1.757522138206454385e-07,-1.830752227298390051e-07,-1.903982316390325716e-07,-1.977212405482261382e-07,-2.050442494574197047e-07,-2.123672583666132713e-07,-2.196902672758068378e-07,-2.270132761850004044e-07,-2.343362850941939710e-07,-2.416592940033875375e-07,-2.489823029125811041e-07,-2.563053118217746706e-07,-2.636283207309682372e-07,-2.709513296401618037e-07,-2.782743385493553703e-07,-2.855973474585489369e-07,-2.929203563677425034e-07,-3.002433652769360700e-07,-3.075663741861296365e-07,-3.148893830953232031e-07,-3.222123920045167696e-07,-3.295354009137103362e-07,-3.368584098229039027e-07,-3.441814187320974693e-07,-3.515044276412910359e-07,-3.588274365504846024e-07,-3.661504454596781690e-07,-3.734734543688717355e-07,-3.807964632780653021e-07,-3.881194721872588686e-07,-3.954424810964524352e-07,-4.027654900056460017e-07,-4.100884989148395683e-07,-4.174115078240331349e-07,-4.247345167332267014e-07,-4.320575256424202680e-07,-4.393805345516138345e-07,-4.467035434608074011e-07,-4.540265523700009676e-07,-4.613495612791945342e-07 +0.000000000000000000e+00,-8.188985361817199046e-09,-1.637797072363439809e-08,-2.456695608545159879e-08,-3.275594144726880280e-08,-4.094492680908600681e-08,-4.913391217090321082e-08,-5.732289753272041483e-08,-6.551188289453761884e-08,-7.370086825635481623e-08,-8.188985361817201362e-08,-9.007883897998921102e-08,-9.826782434180640841e-08,-1.064568097036236058e-07,-1.146457950654408032e-07,-1.228347804272580006e-07,-1.310237657890752112e-07,-1.392127511508924218e-07,-1.474017365127096325e-07,-1.555907218745268431e-07,-1.637797072363440537e-07,-1.719686925981612643e-07,-1.801576779599784750e-07,-1.883466633217956856e-07,-1.965356486836128962e-07,-2.047246340454301069e-07,-2.129136194072473175e-07,-2.211026047690645281e-07,-2.292915901308817387e-07,-2.374805754926989494e-07,-2.456695608545161600e-07,-2.538585462163333706e-07,-2.620475315781505812e-07,-2.702365169399677919e-07,-2.784255023017850025e-07,-2.866144876636022131e-07,-2.948034730254194237e-07,-3.029924583872366344e-07,-3.111814437490538450e-07,-3.193704291108710556e-07,-3.275594144726882663e-07,-3.357483998345054769e-07,-3.439373851963226875e-07,-3.521263705581398981e-07,-3.603153559199571088e-07,-3.685043412817743194e-07,-3.766933266435915300e-07,-3.848823120054087406e-07,-3.930712973672259513e-07,-4.012602827290431619e-07,-4.094492680908603725e-07,-4.176382534526775832e-07,-4.258272388144947938e-07,-4.340162241763120044e-07,-4.422052095381292150e-07,-4.503941948999464257e-07,-4.585831802617636363e-07,-4.667721656235808469e-07,-4.749611509853980575e-07,-4.831501363472152682e-07,-4.913391217090324259e-07,-4.995281070708495835e-07,-5.077170924326667412e-07,-5.159060777944838989e-07 +0.000000000000000000e+00,-8.177431690004764394e-09,-1.635486338000952879e-08,-2.453229507001429318e-08,-3.270972676001905758e-08,-4.088715845002381866e-08,-4.906459014002857975e-08,-5.724202183003334083e-08,-6.541945352003810192e-08,-7.359688521004286300e-08,-8.177431690004762409e-08,-8.995174859005238518e-08,-9.812918028005714626e-08,-1.063066119700619073e-07,-1.144840436600666684e-07,-1.226614753500714295e-07,-1.308389070400761774e-07,-1.390163387300809252e-07,-1.471937704200856731e-07,-1.553712021100904209e-07,-1.635486338000951688e-07,-1.717260654900999166e-07,-1.799034971801046645e-07,-1.880809288701094123e-07,-1.962583605601141602e-07,-2.044357922501189080e-07,-2.126132239401236559e-07,-2.207906556301284037e-07,-2.289680873201331516e-07,-2.371455190101378994e-07,-2.453229507001426473e-07,-2.535003823901473951e-07,-2.616778140801521430e-07,-2.698552457701568908e-07,-2.780326774601616387e-07,-2.862101091501663865e-07,-2.943875408401711344e-07,-3.025649725301758822e-07,-3.107424042201806301e-07,-3.189198359101853779e-07,-3.270972676001901258e-07,-3.352746992901948736e-07,-3.434521309801996215e-07,-3.516295626702043693e-07,-3.598069943602091172e-07,-3.679844260502138650e-07,-3.761618577402186129e-07,-3.843392894302233607e-07,-3.925167211202281086e-07,-4.006941528102328564e-07,-4.088715845002376043e-07,-4.170490161902423521e-07,-4.252264478802471000e-07,-4.334038795702518478e-07,-4.415813112602565957e-07,-4.497587429502613435e-07,-4.579361746402660914e-07,-4.661136063302708392e-07,-4.742910380202755871e-07,-4.824684697102803349e-07,-4.906459014002850828e-07,-4.988233330902898306e-07,-5.070007647802945785e-07,-5.151781964702993263e-07 +0.000000000000000000e+00,-7.342542375101329720e-09,-1.468508475020265944e-08,-2.202762712530398999e-08,-2.937016950040532219e-08,-3.671271187550665108e-08,-4.405525425060797997e-08,-5.139779662570930887e-08,-5.874033900081063776e-08,-6.608288137591196665e-08,-7.342542375101330216e-08,-8.076796612611463767e-08,-8.811050850121597318e-08,-9.545305087631730869e-08,-1.027955932514186442e-07,-1.101381356265199797e-07,-1.174806780016213152e-07,-1.248232203767226507e-07,-1.321657627518239862e-07,-1.395083051269253218e-07,-1.468508475020266573e-07,-1.541933898771279928e-07,-1.615359322522293283e-07,-1.688784746273306638e-07,-1.762210170024319993e-07,-1.835635593775333348e-07,-1.909061017526346703e-07,-1.982486441277360058e-07,-2.055911865028373413e-07,-2.129337288779386769e-07,-2.202762712530400124e-07,-2.276188136281413479e-07,-2.349613560032426834e-07,-2.423038983783440454e-07,-2.496464407534454073e-07,-2.569889831285467693e-07,-2.643315255036481313e-07,-2.716740678787494933e-07,-2.790166102538508553e-07,-2.863591526289522172e-07,-2.937016950040535792e-07,-3.010442373791549412e-07,-3.083867797542563032e-07,-3.157293221293576652e-07,-3.230718645044590271e-07,-3.304144068795603891e-07,-3.377569492546617511e-07,-3.450994916297631131e-07,-3.524420340048644751e-07,-3.597845763799658370e-07,-3.671271187550671990e-07,-3.744696611301685610e-07,-3.818122035052699230e-07,-3.891547458803712850e-07,-3.964972882554726470e-07,-4.038398306305740089e-07,-4.111823730056753709e-07,-4.185249153807767329e-07,-4.258674577558780949e-07,-4.332100001309794569e-07,-4.405525425060808188e-07,-4.478950848811821808e-07,-4.552376272562835428e-07,-4.625801696313849048e-07 +0.000000000000000000e+00,-6.063138102466849897e-09,-1.212627620493369979e-08,-1.818941430740054969e-08,-2.425255240986739959e-08,-3.031569051233424948e-08,-3.637882861480109938e-08,-4.244196671726794928e-08,-4.850510481973479918e-08,-5.456824292220164907e-08,-6.063138102466849897e-08,-6.669451912713534887e-08,-7.275765722960219876e-08,-7.882079533206904866e-08,-8.488393343453589856e-08,-9.094707153700274845e-08,-9.701020963946959835e-08,-1.030733477419364482e-07,-1.091364858444032981e-07,-1.151996239468701480e-07,-1.212627620493369979e-07,-1.273259001518038346e-07,-1.333890382542706713e-07,-1.394521763567375079e-07,-1.455153144592043446e-07,-1.515784525616711812e-07,-1.576415906641380179e-07,-1.637047287666048546e-07,-1.697678668690716912e-07,-1.758310049715385279e-07,-1.818941430740053646e-07,-1.879572811764722012e-07,-1.940204192789390379e-07,-2.000835573814058745e-07,-2.061466954838727112e-07,-2.122098335863395479e-07,-2.182729716888063845e-07,-2.243361097912732212e-07,-2.303992478937400579e-07,-2.364623859962068945e-07,-2.425255240986737312e-07,-2.485886622011405678e-07,-2.546518003036074045e-07,-2.607149384060742412e-07,-2.667780765085410778e-07,-2.728412146110079145e-07,-2.789043527134747511e-07,-2.849674908159415878e-07,-2.910306289184084245e-07,-2.970937670208752611e-07,-3.031569051233420978e-07,-3.092200432258089345e-07,-3.152831813282757711e-07,-3.213463194307426078e-07,-3.274094575332094444e-07,-3.334725956356762811e-07,-3.395357337381431178e-07,-3.455988718406099544e-07,-3.516620099430767911e-07,-3.577251480455436278e-07,-3.637882861480104644e-07,-3.698514242504773011e-07,-3.759145623529441377e-07,-3.819777004554109744e-07 +0.000000000000000000e+00,-9.661110214542177631e-09,-1.932222042908435526e-08,-2.898333064362653289e-08,-3.864444085816871052e-08,-4.830555107271089146e-08,-5.796666128725307240e-08,-6.762777150179525334e-08,-7.728888171633743428e-08,-8.694999193087961522e-08,-9.661110214542179616e-08,-1.062722123599639771e-07,-1.159333225745061580e-07,-1.255944327890483390e-07,-1.352555430035905067e-07,-1.449166532181326744e-07,-1.545777634326748421e-07,-1.642388736472170098e-07,-1.738999838617591775e-07,-1.835610940763013452e-07,-1.932222042908435129e-07,-2.028833145053856806e-07,-2.125444247199278483e-07,-2.222055349344700160e-07,-2.318666451490121837e-07,-2.415277553635543514e-07,-2.511888655780965191e-07,-2.608499757926386868e-07,-2.705110860071808545e-07,-2.801721962217230222e-07,-2.898333064362651900e-07,-2.994944166508073577e-07,-3.091555268653495254e-07,-3.188166370798916931e-07,-3.284777472944338608e-07,-3.381388575089760285e-07,-3.477999677235181962e-07,-3.574610779380603639e-07,-3.671221881526025316e-07,-3.767832983671446993e-07,-3.864444085816868670e-07,-3.961055187962290347e-07,-4.057666290107712024e-07,-4.154277392253133701e-07,-4.250888494398555378e-07,-4.347499596543977055e-07,-4.444110698689398732e-07,-4.540721800834820409e-07,-4.637332902980242086e-07,-4.733944005125663763e-07,-4.830555107271085970e-07,-4.927166209416508706e-07,-5.023777311561931441e-07,-5.120388413707354177e-07,-5.216999515852776913e-07,-5.313610617998199649e-07,-5.410221720143622385e-07,-5.506832822289045121e-07,-5.603443924434467856e-07,-5.700055026579890592e-07,-5.796666128725313328e-07,-5.893277230870736064e-07,-5.989888333016158800e-07,-6.086499435161581536e-07 +0.000000000000000000e+00,-9.649054360980517434e-09,-1.929810872196103487e-08,-2.894716308294155230e-08,-3.859621744392206973e-08,-4.824527180490258386e-08,-5.789432616588309798e-08,-6.754338052686361211e-08,-7.719243488784412623e-08,-8.684148924882464036e-08,-9.649054360980515448e-08,-1.061395979707856686e-07,-1.157886523317661827e-07,-1.254377066927466969e-07,-1.350867610537272242e-07,-1.447358154147077516e-07,-1.543848697756882789e-07,-1.640339241366688063e-07,-1.736829784976493337e-07,-1.833320328586298610e-07,-1.929810872196103884e-07,-2.026301415805909157e-07,-2.122791959415714431e-07,-2.219282503025519705e-07,-2.315773046635324978e-07,-2.412263590245130516e-07,-2.508754133854936055e-07,-2.605244677464741593e-07,-2.701735221074547131e-07,-2.798225764684352670e-07,-2.894716308294158208e-07,-2.991206851903963746e-07,-3.087697395513769285e-07,-3.184187939123574823e-07,-3.280678482733380361e-07,-3.377169026343185899e-07,-3.473659569952991438e-07,-3.570150113562796976e-07,-3.666640657172602514e-07,-3.763131200782408053e-07,-3.859621744392213591e-07,-3.956112288002019129e-07,-4.052602831611824667e-07,-4.149093375221630206e-07,-4.245583918831435744e-07,-4.342074462441241282e-07,-4.438565006051046821e-07,-4.535055549660852359e-07,-4.631546093270657897e-07,-4.728036636880463436e-07,-4.824527180490269503e-07,-4.921017724100075571e-07,-5.017508267709881639e-07,-5.113998811319687706e-07,-5.210489354929493774e-07,-5.306979898539299842e-07,-5.403470442149105909e-07,-5.499960985758911977e-07,-5.596451529368718045e-07,-5.692942072978524112e-07,-5.789432616588330180e-07,-5.885923160198136248e-07,-5.982413703807942316e-07,-6.078904247417748383e-07 +0.000000000000000000e+00,-8.963500815259541488e-09,-1.792700163051908298e-08,-2.689050244577862281e-08,-3.585400326103815934e-08,-4.481750407629769586e-08,-5.378100489155723239e-08,-6.274450570681676891e-08,-7.170800652207630544e-08,-8.067150733733584196e-08,-8.963500815259537849e-08,-9.859850896785491501e-08,-1.075620097831144515e-07,-1.165255105983739881e-07,-1.254890114136335114e-07,-1.344525122288930214e-07,-1.434160130441525315e-07,-1.523795138594120415e-07,-1.613430146746715516e-07,-1.703065154899310616e-07,-1.792700163051905717e-07,-1.882335171204500817e-07,-1.971970179357095918e-07,-2.061605187509691019e-07,-2.151240195662286119e-07,-2.240875203814881220e-07,-2.330510211967476320e-07,-2.420145220120071421e-07,-2.509780228272666521e-07,-2.599415236425261622e-07,-2.689050244577856722e-07,-2.778685252730451823e-07,-2.868320260883046924e-07,-2.957955269035642024e-07,-3.047590277188237125e-07,-3.137225285340832225e-07,-3.226860293493427326e-07,-3.316495301646022426e-07,-3.406130309798617527e-07,-3.495765317951212627e-07,-3.585400326103807728e-07,-3.675035334256402829e-07,-3.764670342408997929e-07,-3.854305350561593030e-07,-3.943940358714188130e-07,-4.033575366866783231e-07,-4.123210375019378331e-07,-4.212845383171973432e-07,-4.302480391324568532e-07,-4.392115399477163633e-07,-4.481750407629758734e-07,-4.571385415782353834e-07,-4.661020423934948935e-07,-4.750655432087544035e-07,-4.840290440240138606e-07,-4.929925448392733178e-07,-5.019560456545327749e-07,-5.109195464697922320e-07,-5.198830472850516891e-07,-5.288465481003111462e-07,-5.378100489155706033e-07,-5.467735497308300604e-07,-5.557370505460895176e-07,-5.647005513613489747e-07 +0.000000000000000000e+00,-7.517098757231068613e-09,-1.503419751446213723e-08,-2.255129627169320584e-08,-3.006839502892427445e-08,-3.758549378615534306e-08,-4.510259254338641168e-08,-5.261969130061748029e-08,-6.013679005784854890e-08,-6.765388881507961751e-08,-7.517098757231068613e-08,-8.268808632954175474e-08,-9.020518508677282335e-08,-9.772228384400389196e-08,-1.052393826012349606e-07,-1.127564813584660292e-07,-1.202735801156970978e-07,-1.277906788729281532e-07,-1.353077776301592086e-07,-1.428248763873902639e-07,-1.503419751446213193e-07,-1.578590739018523747e-07,-1.653761726590834301e-07,-1.728932714163144854e-07,-1.804103701735455408e-07,-1.879274689307765962e-07,-1.954445676880076516e-07,-2.029616664452387070e-07,-2.104787652024697623e-07,-2.179958639597008177e-07,-2.255129627169318731e-07,-2.330300614741629285e-07,-2.405471602313939838e-07,-2.480642589886250392e-07,-2.555813577458560946e-07,-2.630984565030871500e-07,-2.706155552603182054e-07,-2.781326540175492607e-07,-2.856497527747803161e-07,-2.931668515320113715e-07,-3.006839502892424269e-07,-3.082010490464734822e-07,-3.157181478037045376e-07,-3.232352465609355930e-07,-3.307523453181666484e-07,-3.382694440753977038e-07,-3.457865428326287591e-07,-3.533036415898598145e-07,-3.608207403470908699e-07,-3.683378391043219253e-07,-3.758549378615529806e-07,-3.833720366187840360e-07,-3.908891353760150914e-07,-3.984062341332461468e-07,-4.059233328904772022e-07,-4.134404316477082575e-07,-4.209575304049393129e-07,-4.284746291621703683e-07,-4.359917279194014237e-07,-4.435088266766324790e-07,-4.510259254338635344e-07,-4.585430241910945898e-07,-4.660601229483256452e-07,-4.735772217055567006e-07 +0.000000000000000000e+00,-9.652291555641183644e-09,-1.930458311128236729e-08,-2.895687466692355259e-08,-3.860916622256474119e-08,-4.826145777820592980e-08,-5.791374933384711841e-08,-6.756604088948830040e-08,-7.721833244512948239e-08,-8.687062400077066438e-08,-9.652291555641184637e-08,-1.061752071120530284e-07,-1.158274986676942103e-07,-1.254797902233353923e-07,-1.351320817789765743e-07,-1.447843733346177563e-07,-1.544366648902589383e-07,-1.640889564459001203e-07,-1.737412480015413023e-07,-1.833935395571824843e-07,-1.930458311128236663e-07,-2.026981226684648483e-07,-2.123504142241060302e-07,-2.220027057797472122e-07,-2.316549973353883942e-07,-2.413072888910295762e-07,-2.509595804466707847e-07,-2.606118720023119931e-07,-2.702641635579532016e-07,-2.799164551135944101e-07,-2.895687466692356185e-07,-2.992210382248768270e-07,-3.088733297805180354e-07,-3.185256213361592439e-07,-3.281779128918004524e-07,-3.378302044474416608e-07,-3.474824960030828693e-07,-3.571347875587240777e-07,-3.667870791143652862e-07,-3.764393706700064946e-07,-3.860916622256477031e-07,-3.957439537812889116e-07,-4.053962453369301200e-07,-4.150485368925713285e-07,-4.247008284482125369e-07,-4.343531200038537454e-07,-4.440054115594949539e-07,-4.536577031151361623e-07,-4.633099946707773708e-07,-4.729622862264185792e-07,-4.826145777820597877e-07,-4.922668693377009432e-07,-5.019191608933420987e-07,-5.115714524489832543e-07,-5.212237440046244098e-07,-5.308760355602655653e-07,-5.405283271159067208e-07,-5.501806186715478763e-07,-5.598329102271890319e-07,-5.694852017828301874e-07,-5.791374933384713429e-07,-5.887897848941124984e-07,-5.984420764497536539e-07,-6.080943680053948095e-07 +0.000000000000000000e+00,-8.949147910764010745e-09,-1.789829582152802149e-08,-2.684744373229203223e-08,-3.579659164305604298e-08,-4.474573955382005372e-08,-5.369488746458406447e-08,-6.264403537534807521e-08,-7.159318328611208596e-08,-8.054233119687609670e-08,-8.949147910764010745e-08,-9.844062701840411819e-08,-1.073897749291681289e-07,-1.163389228399321397e-07,-1.252880707506961504e-07,-1.342372186614601612e-07,-1.431863665722241719e-07,-1.521355144829881827e-07,-1.610846623937521934e-07,-1.700338103045162041e-07,-1.789829582152802149e-07,-1.879321061260442256e-07,-1.968812540368082364e-07,-2.058304019475722471e-07,-2.147795498583362579e-07,-2.237286977691002686e-07,-2.326778456798642794e-07,-2.416269935906282636e-07,-2.505761415013922479e-07,-2.595252894121562322e-07,-2.684744373229202165e-07,-2.774235852336842007e-07,-2.863727331444481850e-07,-2.953218810552121693e-07,-3.042710289659761536e-07,-3.132201768767401378e-07,-3.221693247875041221e-07,-3.311184726982681064e-07,-3.400676206090320907e-07,-3.490167685197960749e-07,-3.579659164305600592e-07,-3.669150643413240435e-07,-3.758642122520880278e-07,-3.848133601628520120e-07,-3.937625080736159963e-07,-4.027116559843799806e-07,-4.116608038951439649e-07,-4.206099518059079491e-07,-4.295590997166719334e-07,-4.385082476274359177e-07,-4.474573955381999020e-07,-4.564065434489638862e-07,-4.653556913597278705e-07,-4.743048392704918548e-07,-4.832539871812558920e-07,-4.922031350920199292e-07,-5.011522830027839664e-07,-5.101014309135480036e-07,-5.190505788243120409e-07,-5.279997267350760781e-07,-5.369488746458401153e-07,-5.458980225566041525e-07,-5.548471704673681897e-07,-5.637963183781322269e-07 +0.000000000000000000e+00,-9.661110214541396772e-09,-1.932222042908279354e-08,-2.898333064362419032e-08,-3.864444085816558709e-08,-4.830555107270698717e-08,-5.796666128724838725e-08,-6.762777150178978733e-08,-7.728888171633118741e-08,-8.694999193087258749e-08,-9.661110214541398757e-08,-1.062722123599553877e-07,-1.159333225744967877e-07,-1.255944327890381746e-07,-1.352555430035795482e-07,-1.449166532181209218e-07,-1.545777634326622954e-07,-1.642388736472036690e-07,-1.738999838617450426e-07,-1.835610940762864162e-07,-1.932222042908277899e-07,-2.028833145053691635e-07,-2.125444247199105371e-07,-2.222055349344519107e-07,-2.318666451489932843e-07,-2.415277553635346579e-07,-2.511888655780760315e-07,-2.608499757926174051e-07,-2.705110860071587787e-07,-2.801721962217001524e-07,-2.898333064362415260e-07,-2.994944166507828996e-07,-3.091555268653242732e-07,-3.188166370798656468e-07,-3.284777472944070204e-07,-3.381388575089483940e-07,-3.477999677234897676e-07,-3.574610779380311412e-07,-3.671221881525725149e-07,-3.767832983671138885e-07,-3.864444085816552621e-07,-3.961055187961966357e-07,-4.057666290107380093e-07,-4.154277392252793829e-07,-4.250888494398207565e-07,-4.347499596543621301e-07,-4.444110698689035037e-07,-4.540721800834448774e-07,-4.637332902979862510e-07,-4.733944005125276246e-07,-4.830555107270689982e-07,-4.927166209416104247e-07,-5.023777311561518513e-07,-5.120388413706932778e-07,-5.216999515852347044e-07,-5.313610617997761309e-07,-5.410221720143175575e-07,-5.506832822288589840e-07,-5.603443924434004106e-07,-5.700055026579418371e-07,-5.796666128724832637e-07,-5.893277230870246902e-07,-5.989888333015661168e-07,-6.086499435161075433e-07 +0.000000000000000000e+00,-9.652291555640801487e-09,-1.930458311128160297e-08,-2.895687466692240446e-08,-3.860916622256320595e-08,-4.826145777820400412e-08,-5.791374933384480230e-08,-6.756604088948560048e-08,-7.721833244512639866e-08,-8.687062400076719684e-08,-9.652291555640799501e-08,-1.061752071120487932e-07,-1.158274986676895914e-07,-1.254797902233303895e-07,-1.351320817789712010e-07,-1.447843733346120124e-07,-1.544366648902528238e-07,-1.640889564458936352e-07,-1.737412480015344466e-07,-1.833935395571752580e-07,-1.930458311128160694e-07,-2.026981226684568809e-07,-2.123504142240976923e-07,-2.220027057797385037e-07,-2.316549973353793151e-07,-2.413072888910201000e-07,-2.509595804466608850e-07,-2.606118720023016699e-07,-2.702641635579424549e-07,-2.799164551135832398e-07,-2.895687466692240247e-07,-2.992210382248648097e-07,-3.088733297805055946e-07,-3.185256213361463796e-07,-3.281779128917871645e-07,-3.378302044474279495e-07,-3.474824960030687344e-07,-3.571347875587095194e-07,-3.667870791143503043e-07,-3.764393706699910892e-07,-3.860916622256318742e-07,-3.957439537812726591e-07,-4.053962453369134441e-07,-4.150485368925542290e-07,-4.247008284481950140e-07,-4.343531200038357989e-07,-4.440054115594765838e-07,-4.536577031151173688e-07,-4.633099946707581537e-07,-4.729622862263989387e-07,-4.826145777820397766e-07,-4.922668693376806144e-07,-5.019191608933214523e-07,-5.115714524489622902e-07,-5.212237440046031281e-07,-5.308760355602439660e-07,-5.405283271158848038e-07,-5.501806186715256417e-07,-5.598329102271664796e-07,-5.694852017828073175e-07,-5.791374933384481554e-07,-5.887897848940889933e-07,-5.984420764497298311e-07,-6.080943680053706690e-07 +0.000000000000000000e+00,-8.963500815258962462e-09,-1.792700163051792492e-08,-2.689050244577688904e-08,-3.585400326103585647e-08,-4.481750407629482389e-08,-5.378100489155379132e-08,-6.274450570681275874e-08,-7.170800652207172617e-08,-8.067150733733069359e-08,-8.963500815258966102e-08,-9.859850896784862844e-08,-1.075620097831075959e-07,-1.165255105983665633e-07,-1.254890114136255175e-07,-1.344525122288844717e-07,-1.434160130441434259e-07,-1.523795138594023801e-07,-1.613430146746613342e-07,-1.703065154899202884e-07,-1.792700163051792426e-07,-1.882335171204381968e-07,-1.971970179356971510e-07,-2.061605187509561052e-07,-2.151240195662150594e-07,-2.240875203814740136e-07,-2.330510211967329678e-07,-2.420145220119918955e-07,-2.509780228272508232e-07,-2.599415236425097509e-07,-2.689050244577686786e-07,-2.778685252730276064e-07,-2.868320260882865341e-07,-2.957955269035454618e-07,-3.047590277188043895e-07,-3.137225285340633172e-07,-3.226860293493222450e-07,-3.316495301645811727e-07,-3.406130309798401004e-07,-3.495765317950990281e-07,-3.585400326103579558e-07,-3.675035334256168836e-07,-3.764670342408758113e-07,-3.854305350561347390e-07,-3.943940358713936667e-07,-4.033575366866525945e-07,-4.123210375019115222e-07,-4.212845383171704499e-07,-4.302480391324293776e-07,-4.392115399476883053e-07,-4.481750407629472331e-07,-4.571385415782061608e-07,-4.661020423934650885e-07,-4.750655432087240162e-07,-4.840290440239829439e-07,-4.929925448392418717e-07,-5.019560456545007994e-07,-5.109195464697597271e-07,-5.198830472850186548e-07,-5.288465481002775825e-07,-5.378100489155365103e-07,-5.467735497307954380e-07,-5.557370505460543657e-07,-5.647005513613132934e-07 +0.000000000000000000e+00,-7.517098757230041254e-09,-1.503419751446008251e-08,-2.255129627169012211e-08,-3.006839502892015840e-08,-3.758549378615019469e-08,-4.510259254338023098e-08,-5.261969130061026727e-08,-6.013679005784030356e-08,-6.765388881507033986e-08,-7.517098757230037615e-08,-8.268808632953041244e-08,-9.020518508676044873e-08,-9.772228384399048502e-08,-1.052393826012205213e-07,-1.127564813584505576e-07,-1.202735801156805807e-07,-1.277906788729106037e-07,-1.353077776301406268e-07,-1.428248763873706498e-07,-1.503419751446006729e-07,-1.578590739018306959e-07,-1.653761726590607190e-07,-1.728932714162907421e-07,-1.804103701735207651e-07,-1.879274689307507882e-07,-1.954445676879808112e-07,-2.029616664452108343e-07,-2.104787652024408573e-07,-2.179958639596708804e-07,-2.255129627169009034e-07,-2.330300614741309265e-07,-2.405471602313609496e-07,-2.480642589885909461e-07,-2.555813577458209427e-07,-2.630984565030509393e-07,-2.706155552602809359e-07,-2.781326540175109325e-07,-2.856497527747409291e-07,-2.931668515319709257e-07,-3.006839502892009222e-07,-3.082010490464309188e-07,-3.157181478036609154e-07,-3.232352465608909120e-07,-3.307523453181209086e-07,-3.382694440753509052e-07,-3.457865428325809018e-07,-3.533036415898108984e-07,-3.608207403470408949e-07,-3.683378391042708915e-07,-3.758549378615008881e-07,-3.833720366187308847e-07,-3.908891353759608813e-07,-3.984062341331908779e-07,-4.059233328904208745e-07,-4.134404316476508710e-07,-4.209575304048808676e-07,-4.284746291621108642e-07,-4.359917279193408608e-07,-4.435088266765708574e-07,-4.510259254338008540e-07,-4.585430241910308506e-07,-4.660601229482608472e-07,-4.735772217054908437e-07 +0.000000000000000000e+00,-1.094217344081767764e-08,-2.188434688163535528e-08,-3.282652032245303457e-08,-4.376869376327072379e-08,-5.471086720408839977e-08,-6.565304064490608237e-08,-7.659521408572377159e-08,-8.753738752654146081e-08,-9.847956096735916326e-08,-1.094217344081768392e-07,-1.203639078489945285e-07,-1.313060812898122177e-07,-1.422482547306299069e-07,-1.531904281714475961e-07,-1.641326016122652853e-07,-1.750747750530829481e-07,-1.860169484939006638e-07,-1.969591219347183530e-07,-2.079012953755360422e-07,-2.188434688163537579e-07,-2.297856422571714207e-07,-2.407278156979891099e-07,-2.516699891388068256e-07,-2.626121625796245413e-07,-2.735543360204422569e-07,-2.844965094612599726e-07,-2.954386829020776883e-07,-3.063808563428954040e-07,-3.173230297837131197e-07,-3.282652032245308354e-07,-3.392073766653485511e-07,-3.501495501061662668e-07,-3.610917235469839824e-07,-3.720338969878016981e-07,-3.829760704286194138e-07,-3.939182438694371295e-07,-4.048604173102548452e-07,-4.158025907510725609e-07,-4.267447641918902766e-07,-4.376869376327079923e-07,-4.486291110735257080e-07,-4.595712845143434236e-07,-4.705134579551611393e-07,-4.814556313959788550e-07,-4.923978048367965707e-07,-5.033399782776142864e-07,-5.142821517184320021e-07,-5.252243251592497178e-07,-5.361664986000674335e-07,-5.471086720408851492e-07,-5.580508454817028648e-07,-5.689930189225205805e-07,-5.799351923633382962e-07,-5.908773658041560119e-07,-6.018195392449737276e-07,-6.127617126857914433e-07,-6.237038861266091590e-07,-6.346460595674268747e-07,-6.455882330082446962e-07,-6.565304064490624119e-07,-6.674725798898801276e-07,-6.784147533306978433e-07,-6.893569267715155590e-07 +0.000000000000000000e+00,-1.093683553462494608e-08,-2.187367106924989217e-08,-3.281050660387483825e-08,-4.374734213849978433e-08,-5.468417767312473703e-08,-6.562101320774967650e-08,-7.655784874237462258e-08,-8.749468427699956867e-08,-9.843151981162451475e-08,-1.093683553462494741e-07,-1.203051908808744202e-07,-1.312420264154993795e-07,-1.421788619501243388e-07,-1.531156974847492981e-07,-1.640525330193742310e-07,-1.749893685539992167e-07,-1.859262040886241761e-07,-1.968630396232491354e-07,-2.077998751578741212e-07,-2.187367106924990540e-07,-2.296735462271240133e-07,-2.406103817617489462e-07,-2.515472172963738790e-07,-2.624840528309988119e-07,-2.734208883656237447e-07,-2.843577239002486776e-07,-2.952945594348736104e-07,-3.062313949694985433e-07,-3.171682305041234761e-07,-3.281050660387484090e-07,-3.390419015733732889e-07,-3.499787371079982747e-07,-3.609155726426232605e-07,-3.718524081772481404e-07,-3.827892437118730203e-07,-3.937260792464980061e-07,-4.046629147811229918e-07,-4.155997503157478718e-07,-4.265365858503727517e-07,-4.374734213849977374e-07,-4.484102569196227232e-07,-4.593470924542476031e-07,-4.702839279888724831e-07,-4.812207635234974688e-07,-4.921575990581224017e-07,-5.030944345927473345e-07,-5.140312701273722674e-07,-5.249681056619972002e-07,-5.359049411966221331e-07,-5.468417767312470659e-07,-5.577786122658719988e-07,-5.687154478004969316e-07,-5.796522833351218645e-07,-5.905891188697467973e-07,-6.015259544043717302e-07,-6.124627899389966630e-07,-6.233996254736215959e-07,-6.343364610082465287e-07,-6.452732965428714616e-07,-6.562101320774963944e-07,-6.671469676121213273e-07,-6.780838031467463660e-07,-6.890206386813711930e-07 +0.000000000000000000e+00,-1.032148854305876977e-08,-2.064297708611753955e-08,-3.096446562917630932e-08,-4.128595417223507910e-08,-5.160744271529384887e-08,-6.192893125835261865e-08,-7.225041980141139504e-08,-8.257190834447017143e-08,-9.289339688752894782e-08,-1.032148854305877242e-07,-1.135363739736465006e-07,-1.238578625167052638e-07,-1.341793510597640269e-07,-1.445008396028227901e-07,-1.548223281458815532e-07,-1.651438166889403164e-07,-1.754653052319990796e-07,-1.857867937750578427e-07,-1.961082823181166059e-07,-2.064297708611753690e-07,-2.167512594042341322e-07,-2.270727479472928953e-07,-2.373942364903516585e-07,-2.477157250334104217e-07,-2.580372135764691848e-07,-2.683587021195279480e-07,-2.786801906625867111e-07,-2.890016792056454743e-07,-2.993231677487042374e-07,-3.096446562917630006e-07,-3.199661448348217638e-07,-3.302876333778805269e-07,-3.406091219209392901e-07,-3.509306104639980532e-07,-3.612520990070568164e-07,-3.715735875501155795e-07,-3.818950760931743427e-07,-3.922165646362331059e-07,-4.025380531792918690e-07,-4.128595417223506322e-07,-4.231810302654093953e-07,-4.335025188084681585e-07,-4.438240073515269216e-07,-4.541454958945856848e-07,-4.644669844376444480e-07,-4.747884729807032111e-07,-4.851099615237620272e-07,-4.954314500668208433e-07,-5.057529386098796594e-07,-5.160744271529384755e-07,-5.263959156959972916e-07,-5.367174042390561077e-07,-5.470388927821149238e-07,-5.573603813251737399e-07,-5.676818698682325560e-07,-5.780033584112913721e-07,-5.883248469543501882e-07,-5.986463354974090043e-07,-6.089678240404678204e-07,-6.192893125835266365e-07,-6.296108011265854526e-07,-6.399322896696442687e-07,-6.502537782127030848e-07 +0.000000000000000000e+00,-8.770260148514932365e-09,-1.754052029702986473e-08,-2.631078044554479544e-08,-3.508104059405972284e-08,-4.385130074257465024e-08,-5.262156089108957765e-08,-6.139182103960450505e-08,-7.016208118811943245e-08,-7.893234133663435985e-08,-8.770260148514928725e-08,-9.647286163366421465e-08,-1.052431217821791421e-07,-1.140133819306940695e-07,-1.227836420792089836e-07,-1.315539022277239110e-07,-1.403241623762388384e-07,-1.490944225247537658e-07,-1.578646826732686932e-07,-1.666349428217836206e-07,-1.754052029702985480e-07,-1.841754631188134754e-07,-1.929457232673284028e-07,-2.017159834158433302e-07,-2.104862435643582576e-07,-2.192565037128731850e-07,-2.280267638613881124e-07,-2.367970240099030398e-07,-2.455672841584179673e-07,-2.543375443069328947e-07,-2.631078044554478221e-07,-2.718780646039627495e-07,-2.806483247524776769e-07,-2.894185849009926043e-07,-2.981888450495075317e-07,-3.069591051980224591e-07,-3.157293653465373865e-07,-3.244996254950523139e-07,-3.332698856435672413e-07,-3.420401457920821687e-07,-3.508104059405970961e-07,-3.595806660891120235e-07,-3.683509262376269509e-07,-3.771211863861418783e-07,-3.858914465346568057e-07,-3.946617066831717331e-07,-4.034319668316866605e-07,-4.122022269802015879e-07,-4.209724871287165153e-07,-4.297427472772314427e-07,-4.385130074257463701e-07,-4.472832675742612975e-07,-4.560535277227762249e-07,-4.648237878712911523e-07,-4.735940480198060797e-07,-4.823643081683210600e-07,-4.911345683168360404e-07,-4.999048284653510207e-07,-5.086750886138660011e-07,-5.174453487623809814e-07,-5.262156089108959617e-07,-5.349858690594109421e-07,-5.437561292079259224e-07,-5.525263893564409028e-07 +0.000000000000000000e+00,-1.093834403206606065e-08,-2.187668806413212130e-08,-3.281503209619818361e-08,-4.375337612826424261e-08,-5.469172016033030822e-08,-6.563006419239638045e-08,-7.656840822446244607e-08,-8.750675225652851168e-08,-9.844509628859457729e-08,-1.093834403206606429e-07,-1.203217843527267218e-07,-1.312601283847927874e-07,-1.421984724168588530e-07,-1.531368164489249186e-07,-1.640751604809909842e-07,-1.750135045130570498e-07,-1.859518485451231154e-07,-1.968901925771891811e-07,-2.078285366092552467e-07,-2.187668806413213123e-07,-2.297052246733873779e-07,-2.406435687054534435e-07,-2.515819127375195091e-07,-2.625202567695855747e-07,-2.734586008016516404e-07,-2.843969448337177060e-07,-2.953352888657837716e-07,-3.062736328978498372e-07,-3.172119769299159028e-07,-3.281503209619819684e-07,-3.390886649940480340e-07,-3.500270090261140997e-07,-3.609653530581801653e-07,-3.719036970902462309e-07,-3.828420411223122965e-07,-3.937803851543783621e-07,-4.047187291864444277e-07,-4.156570732185104933e-07,-4.265954172505765590e-07,-4.375337612826426246e-07,-4.484721053147086902e-07,-4.594104493467747558e-07,-4.703487933788408214e-07,-4.812871374109068870e-07,-4.922254814429729526e-07,-5.031638254750390183e-07,-5.141021695071050839e-07,-5.250405135391711495e-07,-5.359788575712372151e-07,-5.469172016033032807e-07,-5.578555456353693463e-07,-5.687938896674354119e-07,-5.797322336995014776e-07,-5.906705777315675432e-07,-6.016089217636336088e-07,-6.125472657956996744e-07,-6.234856098277657400e-07,-6.344239538598318056e-07,-6.453622978918978712e-07,-6.563006419239639369e-07,-6.672389859560300025e-07,-6.781773299880960681e-07,-6.891156740201621337e-07 +0.000000000000000000e+00,-1.031259603800082097e-08,-2.062519207600164193e-08,-3.093778811400246290e-08,-4.125038415200328386e-08,-5.156298019000410483e-08,-6.187557622800492579e-08,-7.218817226600574676e-08,-8.250076830400656772e-08,-9.281336434200738869e-08,-1.031259603800082097e-07,-1.134385564180090306e-07,-1.237511524560098516e-07,-1.340637484940106725e-07,-1.443763445320114935e-07,-1.546889405700123145e-07,-1.650015366080131354e-07,-1.753141326460139564e-07,-1.856267286840147774e-07,-1.959393247220155983e-07,-2.062519207600164193e-07,-2.165645167980172403e-07,-2.268771128360180612e-07,-2.371897088740188822e-07,-2.475023049120197032e-07,-2.578149009500205506e-07,-2.681274969880213980e-07,-2.784400930260222455e-07,-2.887526890640230929e-07,-2.990652851020239403e-07,-3.093778811400247878e-07,-3.196904771780256352e-07,-3.300030732160264826e-07,-3.403156692540273301e-07,-3.506282652920281775e-07,-3.609408613300290250e-07,-3.712534573680298724e-07,-3.815660534060307198e-07,-3.918786494440315673e-07,-4.021912454820324147e-07,-4.125038415200332621e-07,-4.228164375580341096e-07,-4.331290335960349570e-07,-4.434416296340358044e-07,-4.537542256720366519e-07,-4.640668217100374993e-07,-4.743794177480383467e-07,-4.846920137860391942e-07,-4.950046098240400416e-07,-5.053172058620408890e-07,-5.156298019000417365e-07,-5.259423979380425839e-07,-5.362549939760434313e-07,-5.465675900140442788e-07,-5.568801860520451262e-07,-5.671927820900459737e-07,-5.775053781280468211e-07,-5.878179741660476685e-07,-5.981305702040485160e-07,-6.084431662420493634e-07,-6.187557622800502108e-07,-6.290683583180510583e-07,-6.393809543560519057e-07,-6.496935503940527531e-07 +0.000000000000000000e+00,-1.094217344081613577e-08,-2.188434688163227155e-08,-3.282652032244840898e-08,-4.376869376326454309e-08,-5.471086720408067060e-08,-6.565304064489681795e-08,-7.659521408571295869e-08,-8.753738752652908619e-08,-9.847956096734524016e-08,-1.094217344081613809e-07,-1.203639078489775084e-07,-1.313060812897936359e-07,-1.422482547306097634e-07,-1.531904281714258909e-07,-1.641326016122420184e-07,-1.750747750530581459e-07,-1.860169484938742734e-07,-1.969591219346904009e-07,-2.079012953755065284e-07,-2.188434688163226559e-07,-2.297856422571387834e-07,-2.407278156979549109e-07,-2.516699891387710384e-07,-2.626121625795871659e-07,-2.735543360204032934e-07,-2.844965094612194209e-07,-2.954386829020355484e-07,-3.063808563428516759e-07,-3.173230297836678034e-07,-3.282652032244838780e-07,-3.392073766653000584e-07,-3.501495501061162389e-07,-3.610917235469323134e-07,-3.720338969877483880e-07,-3.829760704285645684e-07,-3.939182438693807489e-07,-4.048604173101968234e-07,-4.158025907510128980e-07,-4.267447641918290785e-07,-4.376869376326452589e-07,-4.486291110734613335e-07,-4.595712845142774080e-07,-4.705134579550935885e-07,-4.814556313959097160e-07,-4.923978048367258435e-07,-5.033399782775419710e-07,-5.142821517183580985e-07,-5.252243251591742260e-07,-5.361664985999903535e-07,-5.471086720408064810e-07,-5.580508454816226085e-07,-5.689930189224387360e-07,-5.799351923632548635e-07,-5.908773658040709910e-07,-6.018195392448871185e-07,-6.127617126857032460e-07,-6.237038861265193735e-07,-6.346460595673355010e-07,-6.455882330081516285e-07,-6.565304064489677560e-07,-6.674725798897837776e-07,-6.784147533306000110e-07,-6.893569267714161385e-07 +0.000000000000000000e+00,-1.093834403206531784e-08,-2.187668806413063569e-08,-3.281503209619595353e-08,-4.375337612826127137e-08,-5.469172016032658922e-08,-6.563006419239190706e-08,-7.656840822445721828e-08,-8.750675225652252951e-08,-9.844509628858785397e-08,-1.093834403206531520e-07,-1.203217843527184632e-07,-1.312601283847837876e-07,-1.421984724168491121e-07,-1.531368164489144366e-07,-1.640751604809797610e-07,-1.750135045130450855e-07,-1.859518485451104099e-07,-1.968901925771757344e-07,-2.078285366092410589e-07,-2.187668806413063833e-07,-2.297052246733717078e-07,-2.406435687054370323e-07,-2.515819127375023567e-07,-2.625202567695676812e-07,-2.734586008016330056e-07,-2.843969448336983301e-07,-2.953352888657636546e-07,-3.062736328978289790e-07,-3.172119769298943035e-07,-3.281503209619596809e-07,-3.390886649940249524e-07,-3.500270090260902239e-07,-3.609653530581556013e-07,-3.719036970902209787e-07,-3.828420411222862502e-07,-3.937803851543515218e-07,-4.047187291864168992e-07,-4.156570732184822766e-07,-4.265954172505475481e-07,-4.375337612826128196e-07,-4.484721053146781970e-07,-4.594104493467435744e-07,-4.703487933788088459e-07,-4.812871374108741704e-07,-4.922254814429394948e-07,-5.031638254750048193e-07,-5.141021695070701438e-07,-5.250405135391354682e-07,-5.359788575712007927e-07,-5.469172016032661171e-07,-5.578555456353314416e-07,-5.687938896673967661e-07,-5.797322336994620905e-07,-5.906705777315274150e-07,-6.016089217635927394e-07,-6.125472657956580639e-07,-6.234856098277233884e-07,-6.344239538597887128e-07,-6.453622978918539314e-07,-6.563006419239193618e-07,-6.672389859559846862e-07,-6.781773299880500107e-07,-6.891156740201154410e-07 +0.000000000000000000e+00,-1.032148854305762661e-08,-2.064297708611525322e-08,-3.096446562917288149e-08,-4.128595417223051306e-08,-5.160744271528814464e-08,-6.192893125834577621e-08,-7.225041980140340117e-08,-8.257190834446102612e-08,-9.289339688751865108e-08,-1.032148854305762760e-07,-1.135363739736339010e-07,-1.238578625166915260e-07,-1.341793510597491509e-07,-1.445008396028067759e-07,-1.548223281458644008e-07,-1.651438166889220258e-07,-1.754653052319796507e-07,-1.857867937750372757e-07,-1.961082823180949006e-07,-2.064297708611525256e-07,-2.167512594042101506e-07,-2.270727479472677755e-07,-2.373942364903254005e-07,-2.477157250333829990e-07,-2.580372135764405974e-07,-2.683587021194981959e-07,-2.786801906625557944e-07,-2.890016792056133929e-07,-2.993231677486709914e-07,-3.096446562917285899e-07,-3.199661448347861884e-07,-3.302876333778437869e-07,-3.406091219209013853e-07,-3.509306104639589838e-07,-3.612520990070165823e-07,-3.715735875500741808e-07,-3.818950760931317793e-07,-3.922165646361893778e-07,-4.025380531792469763e-07,-4.128595417223045748e-07,-4.231810302653621732e-07,-4.335025188084197717e-07,-4.438240073514773702e-07,-4.541454958945349687e-07,-4.644669844375925672e-07,-4.747884729806501657e-07,-4.851099615237078171e-07,-4.954314500667654685e-07,-5.057529386098231200e-07,-5.160744271528807714e-07,-5.263959156959384228e-07,-5.367174042389960742e-07,-5.470388927820537257e-07,-5.573603813251113771e-07,-5.676818698681690285e-07,-5.780033584112266799e-07,-5.883248469542843314e-07,-5.986463354973419828e-07,-6.089678240403996342e-07,-6.192893125834572856e-07,-6.296108011265149371e-07,-6.399322896695725885e-07,-6.502537782126302399e-07 +0.000000000000000000e+00,-8.770260148513529467e-09,-1.754052029702705893e-08,-2.631078044554058675e-08,-3.508104059405411125e-08,-4.385130074256763575e-08,-5.262156089108116026e-08,-6.139182103959468476e-08,-7.016208118810820926e-08,-7.893234133662173377e-08,-8.770260148513525827e-08,-9.647286163364878277e-08,-1.052431217821623073e-07,-1.140133819306758318e-07,-1.227836420791893430e-07,-1.315539022277028411e-07,-1.403241623762163391e-07,-1.490944225247298372e-07,-1.578646826732433352e-07,-1.666349428217568332e-07,-1.754052029702703313e-07,-1.841754631187838293e-07,-1.929457232672973273e-07,-2.017159834158108254e-07,-2.104862435643243234e-07,-2.192565037128378214e-07,-2.280267638613513195e-07,-2.367970240098648175e-07,-2.455672841583783155e-07,-2.543375443068918136e-07,-2.631078044554053116e-07,-2.718780646039188096e-07,-2.806483247524323077e-07,-2.894185849009458057e-07,-2.981888450494593037e-07,-3.069591051979728018e-07,-3.157293653464862998e-07,-3.244996254949997978e-07,-3.332698856435132959e-07,-3.420401457920267939e-07,-3.508104059405402919e-07,-3.595806660890537900e-07,-3.683509262375672880e-07,-3.771211863860807860e-07,-3.858914465345942841e-07,-3.946617066831077821e-07,-4.034319668316212801e-07,-4.122022269801347782e-07,-4.209724871286482762e-07,-4.297427472771617742e-07,-4.385130074256752723e-07,-4.472832675741887703e-07,-4.560535277227022683e-07,-4.648237878712157664e-07,-4.735940480197292644e-07,-4.823643081682427095e-07,-4.911345683167561016e-07,-4.999048284652694938e-07,-5.086750886137828860e-07,-5.174453487622962781e-07,-5.262156089108096703e-07,-5.349858690593230624e-07,-5.437561292078364546e-07,-5.525263893563498467e-07 +0.000000000000000000e+00,1.695423086864106678e-08,3.390846173728213356e-08,5.086269260592319703e-08,6.781692347456425388e-08,8.477115434320531074e-08,1.017253852118463676e-07,1.186796160804874244e-07,1.356338469491284813e-07,1.525880778177695249e-07,1.695423086864105685e-07,1.864965395550516122e-07,2.034507704236926558e-07,2.204050012923336994e-07,2.373592321609747430e-07,2.543134630296157866e-07,2.712676938982568038e-07,2.882219247668978209e-07,3.051761556355388381e-07,3.221303865041798552e-07,3.390846173728208724e-07,3.560388482414618895e-07,3.729930791101029067e-07,3.899473099787439238e-07,4.069015408473849410e-07,4.238557717160259581e-07,4.408100025846669753e-07,4.577642334533079924e-07,4.747184643219490096e-07,4.916726951905900796e-07,5.086269260592311497e-07,5.255811569278722198e-07,5.425353877965132899e-07,5.594896186651543600e-07,5.764438495337954301e-07,5.933980804024365002e-07,6.103523112710775703e-07,6.273065421397186404e-07,6.442607730083597104e-07,6.612150038770007805e-07,6.781692347456418506e-07,6.951234656142829207e-07,7.120776964829239908e-07,7.290319273515650609e-07,7.459861582202061310e-07,7.629403890888472011e-07,7.798946199574882711e-07,7.968488508261293412e-07,8.138030816947704113e-07,8.307573125634114814e-07,8.477115434320525515e-07,8.646657743006936216e-07,8.816200051693346917e-07,8.985742360379757618e-07,9.155284669066168319e-07,9.324826977752579019e-07,9.494369286438989720e-07,9.663911595125400421e-07,9.833453903811810063e-07,1.000299621249821971e-06,1.017253852118462935e-06,1.034208082987103899e-06,1.051162313855744863e-06,1.068116544724385827e-06 +0.000000000000000000e+00,1.568792229698416365e-08,3.137584459396832729e-08,4.706376689095249425e-08,6.275168918793666782e-08,7.843961148492084139e-08,9.412753378190501496e-08,1.098154560788891885e-07,1.255033783758733621e-07,1.411913006728575224e-07,1.568792229698416828e-07,1.725671452668258431e-07,1.882550675638100035e-07,2.039429898607941638e-07,2.196309121577783241e-07,2.353188344547624845e-07,2.510067567517466713e-07,2.666946790487308581e-07,2.823826013457150449e-07,2.980705236426992317e-07,3.137584459396834185e-07,3.294463682366676053e-07,3.451342905336517921e-07,3.608222128306359789e-07,3.765101351276201657e-07,3.921980574246043525e-07,4.078859797215885393e-07,4.235739020185727262e-07,4.392618243155569130e-07,4.549497466125410998e-07,4.706376689095252866e-07,4.863255912065094734e-07,5.020135135034936602e-07,5.177014358004778470e-07,5.333893580974620338e-07,5.490772803944462206e-07,5.647652026914304074e-07,5.804531249884145942e-07,5.961410472853987810e-07,6.118289695823829678e-07,6.275168918793671546e-07,6.432048141763513415e-07,6.588927364733355283e-07,6.745806587703197151e-07,6.902685810673039019e-07,7.059565033642880887e-07,7.216444256612722755e-07,7.373323479582564623e-07,7.530202702552406491e-07,7.687081925522248359e-07,7.843961148492090227e-07,8.000840371461932095e-07,8.157719594431773963e-07,8.314598817401615831e-07,8.471478040371457699e-07,8.628357263341299567e-07,8.785236486311141436e-07,8.942115709280983304e-07,9.098994932250825172e-07,9.255874155220667040e-07,9.412753378190508908e-07,9.569632601160350776e-07,9.726511824130193703e-07,9.883391047100036630e-07 +0.000000000000000000e+00,1.605365086323860357e-08,3.210730172647720715e-08,4.816095258971581403e-08,6.421460345295442753e-08,8.026825431619304103e-08,9.632190517943165454e-08,1.123755560426702680e-07,1.284292069059088815e-07,1.444828577691474950e-07,1.605365086323861085e-07,1.765901594956247220e-07,1.926438103588633355e-07,2.086974612221019490e-07,2.247511120853405625e-07,2.408047629485791760e-07,2.568584138118178160e-07,2.729120646750564560e-07,2.889657155382950960e-07,3.050193664015337359e-07,3.210730172647723759e-07,3.371266681280110159e-07,3.531803189912496558e-07,3.692339698544882958e-07,3.852876207177269358e-07,4.013412715809655757e-07,4.173949224442042157e-07,4.334485733074428557e-07,4.495022241706814957e-07,4.655558750339201356e-07,4.816095258971587756e-07,4.976631767603974156e-07,5.137168276236360555e-07,5.297704784868746955e-07,5.458241293501133355e-07,5.618777802133519755e-07,5.779314310765906154e-07,5.939850819398292554e-07,6.100387328030678954e-07,6.260923836663065353e-07,6.421460345295451753e-07,6.581996853927838153e-07,6.742533362560224552e-07,6.903069871192610952e-07,7.063606379824997352e-07,7.224142888457383752e-07,7.384679397089770151e-07,7.545215905722156551e-07,7.705752414354542951e-07,7.866288922986929350e-07,8.026825431619315750e-07,8.187361940251702150e-07,8.347898448884088550e-07,8.508434957516474949e-07,8.668971466148861349e-07,8.829507974781247749e-07,8.990044483413634148e-07,9.150580992046020548e-07,9.311117500678406948e-07,9.471654009310793347e-07,9.632190517943179747e-07,9.792727026575567206e-07,9.953263535207954664e-07,1.011380004384034212e-06 +0.000000000000000000e+00,1.798676380522715117e-08,3.597352761045430234e-08,5.396029141568145681e-08,7.194705522090861791e-08,8.993381902613577900e-08,1.079205828313629401e-07,1.259073466365901012e-07,1.438941104418172623e-07,1.618808742470444234e-07,1.798676380522715845e-07,1.978544018574987456e-07,2.158411656627259067e-07,2.338279294679530678e-07,2.518146932731802024e-07,2.698014570784073370e-07,2.877882208836344716e-07,3.057749846888616063e-07,3.237617484940887409e-07,3.417485122993158755e-07,3.597352761045430101e-07,3.777220399097701447e-07,3.957088037149972794e-07,4.136955675202244140e-07,4.316823313254515486e-07,4.496690951306786832e-07,4.676558589359058179e-07,4.856426227411329525e-07,5.036293865463600871e-07,5.216161503515872217e-07,5.396029141568143564e-07,5.575896779620414910e-07,5.755764417672686256e-07,5.935632055724957602e-07,6.115499693777228949e-07,6.295367331829500295e-07,6.475234969881771641e-07,6.655102607934042987e-07,6.834970245986314334e-07,7.014837884038585680e-07,7.194705522090857026e-07,7.374573160143128372e-07,7.554440798195399719e-07,7.734308436247671065e-07,7.914176074299942411e-07,8.094043712352213757e-07,8.273911350404485104e-07,8.453778988456756450e-07,8.633646626509027796e-07,8.813514264561299142e-07,8.993381902613570489e-07,9.173249540665841835e-07,9.353117178718113181e-07,9.532984816770384527e-07,9.712852454822654815e-07,9.892720092874925102e-07,1.007258773092719539e-06,1.025245536897946568e-06,1.043232300703173596e-06,1.061219064508400625e-06,1.079205828313627654e-06,1.097192592118854683e-06,1.115179355924081711e-06,1.133166119729308740e-06 +0.000000000000000000e+00,1.546690225667711265e-08,3.093380451335422530e-08,4.640070677003133795e-08,6.186760902670845061e-08,7.733451128338556326e-08,9.280141354006267591e-08,1.082683157967397886e-07,1.237352180534169012e-07,1.392021203100940139e-07,1.546690225667711265e-07,1.701359248234482392e-07,1.856028270801253518e-07,2.010697293368024645e-07,2.165366315934795771e-07,2.320035338501566898e-07,2.474704361068338024e-07,2.629373383635109415e-07,2.784042406201880807e-07,2.938711428768652198e-07,3.093380451335423589e-07,3.248049473902194980e-07,3.402718496468966372e-07,3.557387519035737763e-07,3.712056541602509154e-07,3.866725564169280545e-07,4.021394586736051936e-07,4.176063609302823328e-07,4.330732631869594719e-07,4.485401654436366110e-07,4.640070677003137501e-07,4.794739699569908892e-07,4.949408722136680284e-07,5.104077744703451675e-07,5.258746767270223066e-07,5.413415789836994457e-07,5.568084812403765848e-07,5.722753834970537240e-07,5.877422857537308631e-07,6.032091880104080022e-07,6.186760902670851413e-07,6.341429925237622805e-07,6.496098947804394196e-07,6.650767970371165587e-07,6.805436992937936978e-07,6.960106015504708369e-07,7.114775038071479761e-07,7.269444060638251152e-07,7.424113083205022543e-07,7.578782105771793934e-07,7.733451128338565325e-07,7.888120150905336717e-07,8.042789173472108108e-07,8.197458196038879499e-07,8.352127218605650890e-07,8.506796241172422282e-07,8.661465263739193673e-07,8.816134286305965064e-07,8.970803308872736455e-07,9.125472331439507846e-07,9.280141354006279238e-07,9.434810376573050629e-07,9.589479399139822020e-07,9.744148421706593411e-07 +0.000000000000000000e+00,1.579633906679511587e-08,3.159267813359023174e-08,4.738901720038534760e-08,6.318535626718046347e-08,7.898169533397557934e-08,9.477803440077069521e-08,1.105743734675658111e-07,1.263707125343609269e-07,1.421670516011560428e-07,1.579633906679511587e-07,1.737597297347462745e-07,1.895560688015413904e-07,2.053524078683365063e-07,2.211487469351316222e-07,2.369450860019267380e-07,2.527414250687218539e-07,2.685377641355169433e-07,2.843341032023120327e-07,3.001304422691071221e-07,3.159267813359022115e-07,3.317231204026973009e-07,3.475194594694923903e-07,3.633157985362874797e-07,3.791121376030825691e-07,3.949084766698776585e-07,4.107048157366727479e-07,4.265011548034678373e-07,4.422974938702629267e-07,4.580938329370580161e-07,4.738901720038531055e-07,4.896865110706481949e-07,5.054828501374432843e-07,5.212791892042383737e-07,5.370755282710334631e-07,5.528718673378285525e-07,5.686682064046236419e-07,5.844645454714187313e-07,6.002608845382138207e-07,6.160572236050089100e-07,6.318535626718039994e-07,6.476499017385990888e-07,6.634462408053941782e-07,6.792425798721892676e-07,6.950389189389843570e-07,7.108352580057794464e-07,7.266315970725745358e-07,7.424279361393696252e-07,7.582242752061647146e-07,7.740206142729598040e-07,7.898169533397548934e-07,8.056132924065499828e-07,8.214096314733450722e-07,8.372059705401401616e-07,8.530023096069352510e-07,8.687986486737303404e-07,8.845949877405254298e-07,9.003913268073205192e-07,9.161876658741156086e-07,9.319840049409106980e-07,9.477803440077057874e-07,9.635766830745009827e-07,9.793730221412961780e-07,9.951693612080913732e-07 +0.000000000000000000e+00,1.669099521212633096e-08,3.338199042425266192e-08,5.007298563637898957e-08,6.676398084850531061e-08,8.345497606063163164e-08,1.001459712727579527e-07,1.168369664848842737e-07,1.335279616970105947e-07,1.502189569091369290e-07,1.669099521212632633e-07,1.836009473333895976e-07,2.002919425455159318e-07,2.169829377576422661e-07,2.336739329697686004e-07,2.503649281818949346e-07,2.670559233940212424e-07,2.837469186061475502e-07,3.004379138182738580e-07,3.171289090304001658e-07,3.338199042425264736e-07,3.505108994546527814e-07,3.672018946667790892e-07,3.838928898789053970e-07,4.005838850910317048e-07,4.172748803031580126e-07,4.339658755152843204e-07,4.506568707274106282e-07,4.673478659395369360e-07,4.840388611516632438e-07,5.007298563637895516e-07,5.174208515759158594e-07,5.341118467880421672e-07,5.508028420001684750e-07,5.674938372122947828e-07,5.841848324244210906e-07,6.008758276365473984e-07,6.175668228486737062e-07,6.342578180608000140e-07,6.509488132729263218e-07,6.676398084850526296e-07,6.843308036971789374e-07,7.010217989093052452e-07,7.177127941214315530e-07,7.344037893335578608e-07,7.510947845456841686e-07,7.677857797578104764e-07,7.844767749699367842e-07,8.011677701820630920e-07,8.178587653941893998e-07,8.345497606063157076e-07,8.512407558184420154e-07,8.679317510305683232e-07,8.846227462426946310e-07,9.013137414548209388e-07,9.180047366669472466e-07,9.346957318790735544e-07,9.513867270911998622e-07,9.680777223033262759e-07,9.847687175154527954e-07,1.001459712727579315e-06,1.018150707939705835e-06,1.034841703151832354e-06,1.051532698363958874e-06 +0.000000000000000000e+00,1.597361178495759811e-08,3.194722356991519621e-08,4.792083535487279763e-08,6.389444713983040566e-08,7.986805892478801370e-08,9.584167070974562173e-08,1.118152824947032298e-07,1.277888942796608378e-07,1.437625060646184458e-07,1.597361178495760539e-07,1.757097296345336619e-07,1.916833414194912699e-07,2.076569532044488780e-07,2.236305649894064860e-07,2.396041767743640940e-07,2.555777885593217285e-07,2.715514003442793630e-07,2.875250121292369975e-07,3.034986239141946320e-07,3.194722356991522665e-07,3.354458474841099010e-07,3.514194592690675355e-07,3.673930710540251700e-07,3.833666828389828045e-07,3.993402946239404391e-07,4.153139064088980736e-07,4.312875181938557081e-07,4.472611299788133426e-07,4.632347417637709771e-07,4.792083535487286116e-07,4.951819653336862461e-07,5.111555771186438806e-07,5.271291889036015151e-07,5.431028006885591496e-07,5.590764124735167841e-07,5.750500242584744186e-07,5.910236360434320531e-07,6.069972478283896876e-07,6.229708596133473221e-07,6.389444713983049566e-07,6.549180831832625911e-07,6.708916949682202256e-07,6.868653067531778601e-07,7.028389185381354946e-07,7.188125303230931291e-07,7.347861421080507636e-07,7.507597538930083981e-07,7.667333656779660326e-07,7.827069774629236671e-07,7.986805892478813016e-07,8.146542010328389361e-07,8.306278128177965706e-07,8.466014246027542051e-07,8.625750363877118396e-07,8.785486481726694741e-07,8.945222599576271086e-07,9.104958717425847431e-07,9.264694835275423776e-07,9.424430953125000121e-07,9.584167070974576466e-07,9.743903188824153870e-07,9.903639306673731274e-07,1.006337542452330868e-06 +0.000000000000000000e+00,1.747815025653468233e-08,3.495630051306936465e-08,5.243445076960404698e-08,6.991260102613872930e-08,8.739075128267341163e-08,1.048689015392080940e-07,1.223470517957427763e-07,1.398252020522774586e-07,1.573033523088121409e-07,1.747815025653468233e-07,1.922596528218815056e-07,2.097378030784161879e-07,2.272159533349508702e-07,2.446941035914855526e-07,2.621722538480202084e-07,2.796504041045548643e-07,2.971285543610895201e-07,3.146067046176241760e-07,3.320848548741588318e-07,3.495630051306934877e-07,3.670411553872281436e-07,3.845193056437627994e-07,4.019974559002974553e-07,4.194756061568321111e-07,4.369537564133667670e-07,4.544319066699014228e-07,4.719100569264360787e-07,4.893882071829707875e-07,5.068663574395054963e-07,5.243445076960402051e-07,5.418226579525749139e-07,5.593008082091096227e-07,5.767789584656443315e-07,5.942571087221790403e-07,6.117352589787137490e-07,6.292134092352484578e-07,6.466915594917831666e-07,6.641697097483178754e-07,6.816478600048525842e-07,6.991260102613872930e-07,7.166041605179220018e-07,7.340823107744567106e-07,7.515604610309914194e-07,7.690386112875261282e-07,7.865167615440608370e-07,8.039949118005955458e-07,8.214730620571302546e-07,8.389512123136649634e-07,8.564293625701996722e-07,8.739075128267343810e-07,8.913856630832690898e-07,9.088638133398037986e-07,9.263419635963385074e-07,9.438201138528732162e-07,9.612982641094079250e-07,9.787764143659426338e-07,9.962545646224773425e-07,1.013732714879012051e-06,1.031210865135546760e-06,1.048689015392081469e-06,1.066167165648616178e-06,1.083645315905150887e-06,1.101123466161685595e-06 +0.000000000000000000e+00,1.772374883326651400e-08,3.544749766653302800e-08,5.317124649979954531e-08,7.089499533306606923e-08,8.861874416633259316e-08,1.063424929995991171e-07,1.240662418328656278e-07,1.417899906661321385e-07,1.595137394993986492e-07,1.772374883326651598e-07,1.949612371659316705e-07,2.126849859991981812e-07,2.304087348324646919e-07,2.481324836657312026e-07,2.658562324989977133e-07,2.835799813322642240e-07,3.013037301655307347e-07,3.190274789987972454e-07,3.367512278320637561e-07,3.544749766653302668e-07,3.721987254985967774e-07,3.899224743318632881e-07,4.076462231651297988e-07,4.253699719983963095e-07,4.430937208316628202e-07,4.608174696649293309e-07,4.785412184981958416e-07,4.962649673314622993e-07,5.139887161647287571e-07,5.317124649979952148e-07,5.494362138312616726e-07,5.671599626645281303e-07,5.848837114977945881e-07,6.026074603310610458e-07,6.203312091643275036e-07,6.380549579975939613e-07,6.557787068308604191e-07,6.735024556641268768e-07,6.912262044973933346e-07,7.089499533306597923e-07,7.266737021639262501e-07,7.443974509971927079e-07,7.621211998304591656e-07,7.798449486637256234e-07,7.975686974969920811e-07,8.152924463302585389e-07,8.330161951635249966e-07,8.507399439967914544e-07,8.684636928300579121e-07,8.861874416633243699e-07,9.039111904965908276e-07,9.216349393298572854e-07,9.393586881631237431e-07,9.570824369963902009e-07,9.748061858296567645e-07,9.925299346629233281e-07,1.010253683496189892e-06,1.027977432329456455e-06,1.045701181162723019e-06,1.063424929995989583e-06,1.081148678829256146e-06,1.098872427662522710e-06,1.116596176495789274e-06 +0.000000000000000000e+00,1.552028247062172935e-08,3.104056494124345870e-08,4.656084741186518805e-08,6.208112988248691740e-08,7.760141235310865337e-08,9.312169482373038934e-08,1.086419772943521253e-07,1.241622597649738613e-07,1.396825422355955972e-07,1.552028247062173332e-07,1.707231071768390692e-07,1.862433896474608051e-07,2.017636721180825411e-07,2.172839545887042771e-07,2.328042370593260130e-07,2.483245195299477755e-07,2.638448020005695379e-07,2.793650844711913004e-07,2.948853669418130628e-07,3.104056494124348252e-07,3.259259318830565877e-07,3.414462143536783501e-07,3.569664968243001125e-07,3.724867792949218750e-07,3.880070617655436374e-07,4.035273442361653999e-07,4.190476267067871623e-07,4.345679091774089247e-07,4.500881916480306872e-07,4.656084741186524496e-07,4.811287565892742120e-07,4.966490390598959745e-07,5.121693215305177369e-07,5.276896040011394994e-07,5.432098864717612618e-07,5.587301689423830242e-07,5.742504514130047867e-07,5.897707338836265491e-07,6.052910163542483115e-07,6.208112988248700740e-07,6.363315812954918364e-07,6.518518637661135989e-07,6.673721462367353613e-07,6.828924287073571237e-07,6.984127111779788862e-07,7.139329936486006486e-07,7.294532761192224110e-07,7.449735585898441735e-07,7.604938410604659359e-07,7.760141235310876984e-07,7.915344060017094608e-07,8.070546884723312232e-07,8.225749709429529857e-07,8.380952534135747481e-07,8.536155358841965105e-07,8.691358183548182730e-07,8.846561008254400354e-07,9.001763832960617979e-07,9.156966657666835603e-07,9.312169482373053227e-07,9.467372307079270852e-07,9.622575131785488476e-07,9.777777956491705042e-07 +0.000000000000000000e+00,1.585746451401167376e-08,3.171492902802334751e-08,4.757239354203502458e-08,6.342985805604670826e-08,7.928732257005839195e-08,9.514478708407007563e-08,1.110022515980817593e-07,1.268597161120934430e-07,1.427171806261051399e-07,1.585746451401168368e-07,1.744321096541285338e-07,1.902895741681402307e-07,2.061470386821519276e-07,2.220045031961636245e-07,2.378619677101753214e-07,2.537194322241870448e-07,2.695768967381987682e-07,2.854343612522104916e-07,3.012918257662222150e-07,3.171492902802339384e-07,3.330067547942456618e-07,3.488642193082573851e-07,3.647216838222691085e-07,3.805791483362808319e-07,3.964366128502925553e-07,4.122940773643042787e-07,4.281515418783160021e-07,4.440090063923277255e-07,4.598664709063394489e-07,4.757239354203511723e-07,4.915813999343629486e-07,5.074388644483747249e-07,5.232963289623865012e-07,5.391537934763982776e-07,5.550112579904100539e-07,5.708687225044218302e-07,5.867261870184336065e-07,6.025836515324453829e-07,6.184411160464571592e-07,6.342985805604689355e-07,6.501560450744807119e-07,6.660135095884924882e-07,6.818709741025042645e-07,6.977284386165160408e-07,7.135859031305278172e-07,7.294433676445395935e-07,7.453008321585513698e-07,7.611582966725631462e-07,7.770157611865749225e-07,7.928732257005866988e-07,8.087306902145984751e-07,8.245881547286102515e-07,8.404456192426220278e-07,8.563030837566338041e-07,8.721605482706455805e-07,8.880180127846573568e-07,9.038754772986691331e-07,9.197329418126809094e-07,9.355904063266926858e-07,9.514478708407044621e-07,9.673053353547162384e-07,9.831627998687280147e-07,9.990202643827397911e-07 +0.000000000000000000e+00,1.572404758726161147e-08,3.144809517452322293e-08,4.717214276178483109e-08,6.289619034904643263e-08,7.862023793630803417e-08,9.434428552356963571e-08,1.100683331108312372e-07,1.257923806980928388e-07,1.415164282853544403e-07,1.572404758726160419e-07,1.729645234598776434e-07,1.886885710471392449e-07,2.044126186344008465e-07,2.201366662216624480e-07,2.358607138089240496e-07,2.515847613961856246e-07,2.673088089834472262e-07,2.830328565707088277e-07,2.987569041579704293e-07,3.144809517452320308e-07,3.302049993324936323e-07,3.459290469197552339e-07,3.616530945070168354e-07,3.773771420942784369e-07,3.931011896815400385e-07,4.088252372688016400e-07,4.245492848560632416e-07,4.402733324433248431e-07,4.559973800305864446e-07,4.717214276178480462e-07,4.874454752051096477e-07,5.031695227923712493e-07,5.188935703796328508e-07,5.346176179668944523e-07,5.503416655541560539e-07,5.660657131414176554e-07,5.817897607286792570e-07,5.975138083159408585e-07,6.132378559032024600e-07,6.289619034904640616e-07,6.446859510777256631e-07,6.604099986649872647e-07,6.761340462522488662e-07,6.918580938395104677e-07,7.075821414267720693e-07,7.233061890140336708e-07,7.390302366012952724e-07,7.547542841885568739e-07,7.704783317758184754e-07,7.862023793630800770e-07,8.019264269503416785e-07,8.176504745376032801e-07,8.333745221248648816e-07,8.490985697121264831e-07,8.648226172993880847e-07,8.805466648866496862e-07,8.962707124739112878e-07,9.119947600611728893e-07,9.277188076484344908e-07,9.434428552356960924e-07,9.591669028229577998e-07,9.748909504102195072e-07,9.906149979974812146e-07 +0.000000000000000000e+00,1.695423086865548619e-08,3.390846173731097238e-08,5.086269260596646188e-08,6.781692347462195800e-08,8.477115434327745412e-08,1.017253852119329502e-07,1.186796160805884464e-07,1.356338469492439425e-07,1.525880778178994386e-07,1.695423086865549347e-07,1.864965395552104308e-07,2.034507704238659269e-07,2.204050012925214231e-07,2.373592321611769192e-07,2.543134630298324153e-07,2.712676938984879379e-07,2.882219247671434605e-07,3.051761556357989831e-07,3.221303865044545057e-07,3.390846173731100282e-07,3.560388482417655508e-07,3.729930791104210734e-07,3.899473099790765960e-07,4.069015408477321186e-07,4.238557717163876412e-07,4.408100025850431638e-07,4.577642334536986864e-07,4.747184643223542089e-07,4.916726951910097845e-07,5.086269260596653600e-07,5.255811569283209355e-07,5.425353877969765111e-07,5.594896186656320866e-07,5.764438495342876621e-07,5.933980804029432376e-07,6.103523112715988132e-07,6.273065421402543887e-07,6.442607730089099642e-07,6.612150038775655397e-07,6.781692347462211153e-07,6.951234656148766908e-07,7.120776964835322663e-07,7.290319273521878419e-07,7.459861582208434174e-07,7.629403890894989929e-07,7.798946199581545684e-07,7.968488508268101440e-07,8.138030816954657195e-07,8.307573125641212950e-07,8.477115434327768705e-07,8.646657743014324461e-07,8.816200051700880216e-07,8.985742360387435971e-07,9.155284669073991727e-07,9.324826977760547482e-07,9.494369286447103237e-07,9.663911595133658992e-07,9.833453903820214748e-07,1.000299621250677050e-06,1.017253852119332626e-06,1.034208082987988201e-06,1.051162313856643777e-06,1.068116544725299352e-06 +0.000000000000000000e+00,1.568792229699890070e-08,3.137584459399780139e-08,4.706376689099669878e-08,6.275168918799558955e-08,7.843961148499448032e-08,9.412753378199337109e-08,1.098154560789922619e-07,1.255033783759911526e-07,1.411913006729900302e-07,1.568792229699889077e-07,1.725671452669877852e-07,1.882550675639866628e-07,2.039429898609855403e-07,2.196309121579844178e-07,2.353188344549832954e-07,2.510067567519821464e-07,2.666946790489809975e-07,2.823826013459798486e-07,2.980705236429786996e-07,3.137584459399775507e-07,3.294463682369764018e-07,3.451342905339752528e-07,3.608222128309741039e-07,3.765101351279729550e-07,3.921980574249718060e-07,4.078859797219706571e-07,4.235739020189695081e-07,4.392618243159683592e-07,4.549497466129672103e-07,4.706376689099660613e-07,4.863255912069649653e-07,5.020135135039638694e-07,5.177014358009627734e-07,5.333893580979616774e-07,5.490772803949605814e-07,5.647652026919594854e-07,5.804531249889583894e-07,5.961410472859572934e-07,6.118289695829561974e-07,6.275168918799551014e-07,6.432048141769540054e-07,6.588927364739529094e-07,6.745806587709518134e-07,6.902685810679507174e-07,7.059565033649496214e-07,7.216444256619485254e-07,7.373323479589474294e-07,7.530202702559463334e-07,7.687081925529452374e-07,7.843961148499441414e-07,8.000840371469430454e-07,8.157719594439419494e-07,8.314598817409408534e-07,8.471478040379397575e-07,8.628357263349386615e-07,8.785236486319375655e-07,8.942115709289364695e-07,9.098994932259353735e-07,9.255874155229342775e-07,9.412753378199331815e-07,9.569632601169320855e-07,9.726511824139309895e-07,9.883391047109298935e-07 +0.000000000000000000e+00,1.605365086325439280e-08,3.210730172650878560e-08,4.816095258976318170e-08,6.421460345301758443e-08,8.026825431627198715e-08,9.632190517952638988e-08,1.123755560427807926e-07,1.284292069060351953e-07,1.444828577692895848e-07,1.605365086325439743e-07,1.765901594957983638e-07,1.926438103590527533e-07,2.086974612223071428e-07,2.247511120855615323e-07,2.408047629488159218e-07,2.568584138120703377e-07,2.729120646753247537e-07,2.889657155385791696e-07,3.050193664018335856e-07,3.210730172650880015e-07,3.371266681283424175e-07,3.531803189915968335e-07,3.692339698548512494e-07,3.852876207181056654e-07,4.013412715813600813e-07,4.173949224446144973e-07,4.334485733078689133e-07,4.495022241711233292e-07,4.655558750343777452e-07,4.816095258976321611e-07,4.976631767608865771e-07,5.137168276241409931e-07,5.297704784873954090e-07,5.458241293506498250e-07,5.618777802139042409e-07,5.779314310771586569e-07,5.939850819404130729e-07,6.100387328036674888e-07,6.260923836669219048e-07,6.421460345301763207e-07,6.581996853934307367e-07,6.742533362566851527e-07,6.903069871199395686e-07,7.063606379831939846e-07,7.224142888464484005e-07,7.384679397097028165e-07,7.545215905729572324e-07,7.705752414362116484e-07,7.866288922994660644e-07,8.026825431627204803e-07,8.187361940259748963e-07,8.347898448892293122e-07,8.508434957524837282e-07,8.668971466157381442e-07,8.829507974789925601e-07,8.990044483422469761e-07,9.150580992055013920e-07,9.311117500687558080e-07,9.471654009320102240e-07,9.632190517952645340e-07,9.792727026585189500e-07,9.953263535217733660e-07,1.011380004385027782e-06 +0.000000000000000000e+00,1.798676380524275179e-08,3.597352761048550359e-08,5.396029141572825538e-08,7.194705522097100718e-08,8.993381902621375897e-08,1.079205828314565108e-07,1.259073466366992626e-07,1.438941104419420144e-07,1.618808742471847661e-07,1.798676380524275179e-07,1.978544018576702697e-07,2.158411656629130215e-07,2.338279294681557733e-07,2.518146932733985251e-07,2.698014570786412769e-07,2.877882208838840287e-07,3.057749846891267805e-07,3.237617484943695323e-07,3.417485122996122841e-07,3.597352761048550359e-07,3.777220399100977877e-07,3.957088037153405395e-07,4.136955675205832913e-07,4.316823313258260431e-07,4.496690951310687949e-07,4.676558589363115467e-07,4.856426227415543514e-07,5.036293865467971561e-07,5.216161503520399609e-07,5.396029141572827656e-07,5.575896779625255703e-07,5.755764417677683751e-07,5.935632055730111798e-07,6.115499693782539845e-07,6.295367331834967893e-07,6.475234969887395940e-07,6.655102607939823987e-07,6.834970245992252035e-07,7.014837884044680082e-07,7.194705522097108129e-07,7.374573160149536177e-07,7.554440798201964224e-07,7.734308436254392271e-07,7.914176074306820319e-07,8.094043712359248366e-07,8.273911350411676413e-07,8.453778988464104461e-07,8.633646626516532508e-07,8.813514264568960555e-07,8.993381902621388603e-07,9.173249540673816650e-07,9.353117178726244697e-07,9.532984816778672745e-07,9.712852454831099733e-07,9.892720092883526722e-07,1.007258773093595371e-06,1.025245536898838070e-06,1.043232300704080769e-06,1.061219064509323468e-06,1.079205828314566166e-06,1.097192592119808865e-06,1.115179355925051564e-06,1.133166119730294263e-06 +0.000000000000000000e+00,1.552028247062902508e-08,3.104056494125805017e-08,4.656084741188707194e-08,6.208112988251608710e-08,7.760141235314510225e-08,9.312169482377411741e-08,1.086419772944031326e-07,1.241622597650321477e-07,1.396825422356611629e-07,1.552028247062901780e-07,1.707231071769191932e-07,1.862433896475482084e-07,2.017636721181772235e-07,2.172839545888062387e-07,2.328042370594352538e-07,2.483245195300642425e-07,2.638448020006932047e-07,2.793650844713221669e-07,2.948853669419511292e-07,3.104056494125800914e-07,3.259259318832090536e-07,3.414462143538380158e-07,3.569664968244669780e-07,3.724867792950959403e-07,3.880070617657249025e-07,4.035273442363538647e-07,4.190476267069828269e-07,4.345679091776117891e-07,4.500881916482407513e-07,4.656084741188697136e-07,4.811287565894986758e-07,4.966490390601276380e-07,5.121693215307566002e-07,5.276896040013855624e-07,5.432098864720145246e-07,5.587301689426434869e-07,5.742504514132724491e-07,5.897707338839014113e-07,6.052910163545303735e-07,6.208112988251593357e-07,6.363315812957882979e-07,6.518518637664172602e-07,6.673721462370462224e-07,6.828924287076751846e-07,6.984127111783041468e-07,7.139329936489331090e-07,7.294532761195620713e-07,7.449735585901910335e-07,7.604938410608199957e-07,7.760141235314489579e-07,7.915344060020779201e-07,8.070546884727068823e-07,8.225749709433358446e-07,8.380952534139648068e-07,8.536155358845937690e-07,8.691358183552227312e-07,8.846561008258516934e-07,9.001763832964806556e-07,9.156966657671096179e-07,9.312169482377385801e-07,9.467372307083675423e-07,9.622575131789965045e-07,9.777777956496253609e-07 +0.000000000000000000e+00,1.585746451401956837e-08,3.171492902803913674e-08,4.757239354205870180e-08,6.342985805607826024e-08,7.928732257009781869e-08,9.514478708411737713e-08,1.110022515981369356e-07,1.268597161121564940e-07,1.427171806261760525e-07,1.585746451401956109e-07,1.744321096542151693e-07,1.902895741682347278e-07,2.061470386822542862e-07,2.220045031962738447e-07,2.378619677102934031e-07,2.537194322243129351e-07,2.695768967383324406e-07,2.854343612523519461e-07,3.012918257663714516e-07,3.171492902803909571e-07,3.330067547944104626e-07,3.488642193084299681e-07,3.647216838224494736e-07,3.805791483364689791e-07,3.964366128504884846e-07,4.122940773645079901e-07,4.281515418785274956e-07,4.440090063925470011e-07,4.598664709065665066e-07,4.757239354205860121e-07,4.915813999346055176e-07,5.074388644486250231e-07,5.232963289626445286e-07,5.391537934766640342e-07,5.550112579906835397e-07,5.708687225047030452e-07,5.867261870187225507e-07,6.025836515327420562e-07,6.184411160467615617e-07,6.342985805607810672e-07,6.501560450748005727e-07,6.660135095888200782e-07,6.818709741028395837e-07,6.977284386168590892e-07,7.135859031308785947e-07,7.294433676448981002e-07,7.453008321589176057e-07,7.611582966729371112e-07,7.770157611869566167e-07,7.928732257009761222e-07,8.087306902149956277e-07,8.245881547290151332e-07,8.404456192430346387e-07,8.563030837570541442e-07,8.721605482710736497e-07,8.880180127850931552e-07,9.038754772991126607e-07,9.197329418131321662e-07,9.355904063271516717e-07,9.514478708411711772e-07,9.673053353551905769e-07,9.831627998692099765e-07,9.990202643832293761e-07 +0.000000000000000000e+00,1.669099521214095220e-08,3.338199042428190441e-08,5.007298563642285661e-08,6.676398084856380882e-08,8.345497606070475441e-08,1.001459712728457000e-07,1.168369664849866456e-07,1.335279616971275912e-07,1.502189569092685368e-07,1.669099521214094823e-07,1.836009473335504279e-07,2.002919425456913735e-07,2.169829377578323191e-07,2.336739329699732647e-07,2.503649281821142103e-07,2.670559233942551294e-07,2.837469186063960485e-07,3.004379138185369676e-07,3.171289090306778868e-07,3.338199042428188059e-07,3.505108994549597250e-07,3.672018946671006441e-07,3.838928898792415632e-07,4.005838850913824823e-07,4.172748803035234015e-07,4.339658755156643206e-07,4.506568707278052397e-07,4.673478659399461588e-07,4.840388611520870779e-07,5.007298563642279970e-07,5.174208515763689162e-07,5.341118467885098353e-07,5.508028420006507544e-07,5.674938372127916735e-07,5.841848324249325926e-07,6.008758276370735118e-07,6.175668228492144309e-07,6.342578180613553500e-07,6.509488132734962691e-07,6.676398084856371882e-07,6.843308036977781073e-07,7.010217989099190265e-07,7.177127941220599456e-07,7.344037893342008647e-07,7.510947845463417838e-07,7.677857797584827029e-07,7.844767749706236220e-07,8.011677701827645412e-07,8.178587653949054603e-07,8.345497606070463794e-07,8.512407558191872985e-07,8.679317510313282176e-07,8.846227462434691368e-07,9.013137414556100559e-07,9.180047366677509750e-07,9.346957318798918941e-07,9.513867270920328132e-07,9.680777223041737323e-07,9.847687175163146515e-07,1.001459712728455571e-06,1.018150707940596490e-06,1.034841703152737409e-06,1.051532698364878328e-06 +0.000000000000000000e+00,1.597361178497286455e-08,3.194722356994572910e-08,4.792083535491859035e-08,6.389444713989144497e-08,7.986805892486429960e-08,9.584167070983715423e-08,1.118152824948100089e-07,1.277888942797828635e-07,1.437625060647557181e-07,1.597361178497285727e-07,1.757097296347014274e-07,1.916833414196742820e-07,2.076569532046471366e-07,2.236305649896199912e-07,2.396041767745928459e-07,2.555777885595656740e-07,2.715514003445385022e-07,2.875250121295113303e-07,3.034986239144841585e-07,3.194722356994569866e-07,3.354458474844298148e-07,3.514194592694026430e-07,3.673930710543754711e-07,3.833666828393482993e-07,3.993402946243211274e-07,4.153139064092939556e-07,4.312875181942667837e-07,4.472611299792396119e-07,4.632347417642124400e-07,4.792083535491852682e-07,4.951819653341581493e-07,5.111555771191310304e-07,5.271291889041039115e-07,5.431028006890767926e-07,5.590764124740496737e-07,5.750500242590225548e-07,5.910236360439954359e-07,6.069972478289683170e-07,6.229708596139411981e-07,6.389444713989140792e-07,6.549180831838869603e-07,6.708916949688598414e-07,6.868653067538327224e-07,7.028389185388056035e-07,7.188125303237784846e-07,7.347861421087513657e-07,7.507597538937242468e-07,7.667333656786971279e-07,7.827069774636700090e-07,7.986805892486428901e-07,8.146542010336157712e-07,8.306278128185886523e-07,8.466014246035615334e-07,8.625750363885344145e-07,8.785486481735072956e-07,8.945222599584801767e-07,9.104958717434530578e-07,9.264694835284259389e-07,9.424430953133988200e-07,9.584167070983715952e-07,9.743903188833443704e-07,9.903639306683171456e-07,1.006337542453289921e-06 +0.000000000000000000e+00,1.747815025655037890e-08,3.495630051310075781e-08,5.243445076965113671e-08,6.991260102620151562e-08,8.739075128275189452e-08,1.048689015393022734e-07,1.223470517958526523e-07,1.398252020524030312e-07,1.573033523089534101e-07,1.747815025655037890e-07,1.922596528220541680e-07,2.097378030786045469e-07,2.272159533351549258e-07,2.446941035917053047e-07,2.621722538482556836e-07,2.796504041048060625e-07,2.971285543613564414e-07,3.146067046179068203e-07,3.320848548744571992e-07,3.495630051310075781e-07,3.670411553875579570e-07,3.845193056441083359e-07,4.019974559006587148e-07,4.194756061572090937e-07,4.369537564137594726e-07,4.544319066703098515e-07,4.719100569268602304e-07,4.893882071834106093e-07,5.068663574399609882e-07,5.243445076965113671e-07,5.418226579530617461e-07,5.593008082096121250e-07,5.767789584661625039e-07,5.942571087227128828e-07,6.117352589792632617e-07,6.292134092358136406e-07,6.466915594923640195e-07,6.641697097489143984e-07,6.816478600054647773e-07,6.991260102620151562e-07,7.166041605185655351e-07,7.340823107751159140e-07,7.515604610316662929e-07,7.690386112882166718e-07,7.865167615447670507e-07,8.039949118013174296e-07,8.214730620578678085e-07,8.389512123144181874e-07,8.564293625709685663e-07,8.739075128275189452e-07,8.913856630840693242e-07,9.088638133406197031e-07,9.263419635971700820e-07,9.438201138537204609e-07,9.612982641102708398e-07,9.787764143668212187e-07,9.962545646233715976e-07,1.013732714879921976e-06,1.031210865136472355e-06,1.048689015393022734e-06,1.066167165649573113e-06,1.083645315906123492e-06,1.101123466162673871e-06 +0.000000000000000000e+00,1.772374883328158854e-08,3.544749766656317708e-08,5.317124649984476893e-08,7.089499533312636739e-08,8.861874416640796586e-08,1.063424929996895643e-07,1.240662418329711628e-07,1.417899906662527613e-07,1.595137394995343597e-07,1.772374883328159582e-07,1.949612371660975566e-07,2.126849859993791551e-07,2.304087348326607536e-07,2.481324836659423785e-07,2.658562324992239770e-07,2.835799813325055754e-07,3.013037301657871739e-07,3.190274789990687724e-07,3.367512278323503708e-07,3.544749766656319693e-07,3.721987254989135678e-07,3.899224743321951662e-07,4.076462231654767647e-07,4.253699719987583632e-07,4.430937208320399616e-07,4.608174696653215601e-07,4.785412184986031586e-07,4.962649673318847570e-07,5.139887161651663555e-07,5.317124649984479539e-07,5.494362138317295524e-07,5.671599626650111509e-07,5.848837114982927493e-07,6.026074603315743478e-07,6.203312091648559463e-07,6.380549579981375447e-07,6.557787068314191432e-07,6.735024556647007417e-07,6.912262044979823401e-07,7.089499533312639386e-07,7.266737021645455371e-07,7.443974509978271355e-07,7.621211998311087340e-07,7.798449486643903325e-07,7.975686974976719309e-07,8.152924463309535294e-07,8.330161951642351279e-07,8.507399439975167263e-07,8.684636928307983248e-07,8.861874416640799232e-07,9.039111904973615217e-07,9.216349393306431202e-07,9.393586881639247186e-07,9.570824369972063171e-07,9.748061858304879156e-07,9.925299346637695140e-07,1.010253683497051113e-06,1.027977432330332711e-06,1.045701181163614309e-06,1.063424929996895908e-06,1.081148678830177506e-06,1.098872427663459105e-06,1.116596176496740703e-06 +0.000000000000000000e+00,1.727474744806728314e-08,3.454949489613456627e-08,5.182424234420184941e-08,6.909898979226913255e-08,8.637373724033641568e-08,1.036484846884036988e-07,1.209232321364709820e-07,1.381979795845382651e-07,1.554727270326055482e-07,1.727474744806728314e-07,1.900222219287401145e-07,2.072969693768073976e-07,2.245717168248746808e-07,2.418464642729419639e-07,2.591212117210092206e-07,2.763959591690764772e-07,2.936707066171437339e-07,3.109454540652109906e-07,3.282202015132782472e-07,3.454949489613455039e-07,3.627696964094127606e-07,3.800444438574800172e-07,3.973191913055472739e-07,4.145939387536145306e-07,4.318686862016817872e-07,4.491434336497490439e-07,4.664181810978163006e-07,4.836929285458836102e-07,5.009676759939509198e-07,5.182424234420182294e-07,5.355171708900855390e-07,5.527919183381528486e-07,5.700666657862201582e-07,5.873414132342874678e-07,6.046161606823547774e-07,6.218909081304220870e-07,6.391656555784893966e-07,6.564404030265567062e-07,6.737151504746240158e-07,6.909898979226913255e-07,7.082646453707586351e-07,7.255393928188259447e-07,7.428141402668932543e-07,7.600888877149605639e-07,7.773636351630278735e-07,7.946383826110951831e-07,8.119131300591624927e-07,8.291878775072298023e-07,8.464626249552971119e-07,8.637373724033644215e-07,8.810121198514317311e-07,8.982868672994990407e-07,9.155616147475663503e-07,9.328363621956336599e-07,9.501111096437009695e-07,9.673858570917682792e-07,9.846606045398355888e-07,1.001935351987902898e-06,1.019210099435970208e-06,1.036484846884037518e-06,1.053759594332104827e-06,1.071034341780172137e-06,1.088309089228239446e-06 +0.000000000000000000e+00,1.849837045389785147e-08,3.699674090779570295e-08,5.549511136169355111e-08,7.399348181559139266e-08,9.249185226948923420e-08,1.109902227233870758e-07,1.294885931772849041e-07,1.479869636311827324e-07,1.664853340850805607e-07,1.849837045389783890e-07,2.034820749928762173e-07,2.219804454467740456e-07,2.404788159006718739e-07,2.589771863545697022e-07,2.774755568084675306e-07,2.959739272623653589e-07,3.144722977162631872e-07,3.329706681701610155e-07,3.514690386240588438e-07,3.699674090779566721e-07,3.884657795318545004e-07,4.069641499857523287e-07,4.254625204396501571e-07,4.439608908935479854e-07,4.624592613474458137e-07,4.809576318013436420e-07,4.994560022552414174e-07,5.179543727091391927e-07,5.364527431630369681e-07,5.549511136169347435e-07,5.734494840708325189e-07,5.919478545247302942e-07,6.104462249786280696e-07,6.289445954325258450e-07,6.474429658864236203e-07,6.659413363403213957e-07,6.844397067942191711e-07,7.029380772481169465e-07,7.214364477020147218e-07,7.399348181559124972e-07,7.584331886098102726e-07,7.769315590637080480e-07,7.954299295176058233e-07,8.139282999715035987e-07,8.324266704254013741e-07,8.509250408792991494e-07,8.694234113331969248e-07,8.879217817870947002e-07,9.064201522409924756e-07,9.249185226948902509e-07,9.434168931487880263e-07,9.619152636026858017e-07,9.804136340565835771e-07,9.989120045104813524e-07,1.017410374964379128e-06,1.035908745418276903e-06,1.054407115872174679e-06,1.072905486326072454e-06,1.091403856779970229e-06,1.109902227233868005e-06,1.128400597687765780e-06,1.146898968141663555e-06,1.165397338595561331e-06 +0.000000000000000000e+00,1.711417634589794125e-08,3.422835269179588250e-08,5.134252903769382375e-08,6.845670538359176500e-08,8.557088172948970625e-08,1.026850580753876475e-07,1.197992344212855755e-07,1.369134107671835035e-07,1.540275871130814316e-07,1.711417634589793596e-07,1.882559398048772876e-07,2.053701161507752156e-07,2.224842924966731436e-07,2.395984688425710452e-07,2.567126451884689467e-07,2.738268215343668483e-07,2.909409978802647498e-07,3.080551742261626513e-07,3.251693505720605529e-07,3.422835269179584544e-07,3.593977032638563560e-07,3.765118796097542575e-07,3.936260559556521591e-07,4.107402323015500606e-07,4.278544086474479622e-07,4.449685849933458637e-07,4.620827613392437653e-07,4.791969376851416668e-07,4.963111140310396213e-07,5.134252903769375758e-07,5.305394667228355303e-07,5.476536430687334847e-07,5.647678194146314392e-07,5.818819957605293937e-07,5.989961721064273482e-07,6.161103484523253027e-07,6.332245247982232572e-07,6.503387011441212117e-07,6.674528774900191661e-07,6.845670538359171206e-07,7.016812301818150751e-07,7.187954065277130296e-07,7.359095828736109841e-07,7.530237592195089386e-07,7.701379355654068931e-07,7.872521119113048475e-07,8.043662882572028020e-07,8.214804646031007565e-07,8.385946409489987110e-07,8.557088172948966655e-07,8.728229936407946200e-07,8.899371699866925745e-07,9.070513463325905289e-07,9.241655226784884834e-07,9.412796990243864379e-07,9.583938753702843924e-07,9.755080517161823469e-07,9.926222280620803014e-07,1.009736404407978256e-06,1.026850580753876210e-06,1.043964757099774165e-06,1.061078933445672119e-06,1.078193109791570074e-06 +0.000000000000000000e+00,1.827388010324733759e-08,3.654776020649467518e-08,5.482164030974201276e-08,7.309552041298935035e-08,9.136940051623669456e-08,1.096432806194840388e-07,1.279171607227313830e-07,1.461910408259787272e-07,1.644649209292260714e-07,1.827388010324734156e-07,2.010126811357207598e-07,2.192865612389681040e-07,2.375604413422154482e-07,2.558343214454628189e-07,2.741082015487102160e-07,2.923820816519576132e-07,3.106559617552050103e-07,3.289298418584524075e-07,3.472037219616998046e-07,3.654776020649472018e-07,3.837514821681945989e-07,4.020253622714419960e-07,4.202992423746893932e-07,4.385731224779367903e-07,4.568470025811841875e-07,4.751208826844315846e-07,4.933947627876789818e-07,5.116686428909263789e-07,5.299425229941737761e-07,5.482164030974211732e-07,5.664902832006685703e-07,5.847641633039159675e-07,6.030380434071633646e-07,6.213119235104107618e-07,6.395858036136581589e-07,6.578596837169055561e-07,6.761335638201529532e-07,6.944074439234003504e-07,7.126813240266477475e-07,7.309552041298951447e-07,7.492290842331425418e-07,7.675029643363899389e-07,7.857768444396373361e-07,8.040507245428847332e-07,8.223246046461321304e-07,8.405984847493795275e-07,8.588723648526269247e-07,8.771462449558743218e-07,8.954201250591217190e-07,9.136940051623691161e-07,9.319678852656165133e-07,9.502417653688639104e-07,9.685156454721112017e-07,9.867895255753585988e-07,1.005063405678605996e-06,1.023337285781853393e-06,1.041611165885100790e-06,1.059885045988348187e-06,1.078158926091595585e-06,1.096432806194842982e-06,1.114706686298090379e-06,1.132980566401337776e-06,1.151254446504585173e-06 +0.000000000000000000e+00,1.817187531310620083e-08,3.634375062621240166e-08,5.451562593931860249e-08,7.268750125242480332e-08,9.085937656553100415e-08,1.090312518786372050e-07,1.272031271917434191e-07,1.453750025048496331e-07,1.635468778179558472e-07,1.817187531310620612e-07,1.998906284441682753e-07,2.180625037572744894e-07,2.362343790703807034e-07,2.544062543834869440e-07,2.725781296965931845e-07,2.907500050096994251e-07,3.089218803228056656e-07,3.270937556359119061e-07,3.452656309490181467e-07,3.634375062621243872e-07,3.816093815752306277e-07,3.997812568883368683e-07,4.179531322014431088e-07,4.361250075145493493e-07,4.542968828276555899e-07,4.724687581407618304e-07,4.906406334538681239e-07,5.088125087669744174e-07,5.269843840800807108e-07,5.451562593931870043e-07,5.633281347062932978e-07,5.815000100193995913e-07,5.996718853325058847e-07,6.178437606456121782e-07,6.360156359587184717e-07,6.541875112718247652e-07,6.723593865849310586e-07,6.905312618980373521e-07,7.087031372111436456e-07,7.268750125242499391e-07,7.450468878373562325e-07,7.632187631504625260e-07,7.813906384635688195e-07,7.995625137766751130e-07,8.177343890897814064e-07,8.359062644028876999e-07,8.540781397159939934e-07,8.722500150291002869e-07,8.904218903422065803e-07,9.085937656553128738e-07,9.267656409684191673e-07,9.449375162815254608e-07,9.631093915946317542e-07,9.812812669077379418e-07,9.994531422208441294e-07,1.017625017533950317e-06,1.035796892847056505e-06,1.053968768160162692e-06,1.072140643473268880e-06,1.090312518786375067e-06,1.108484394099481255e-06,1.126656269412587443e-06,1.144828144725693630e-06 +0.000000000000000000e+00,1.727474744808113676e-08,3.454949489616227351e-08,5.182424234424340696e-08,6.909898979232453379e-08,8.637373724040566063e-08,1.036484846884867875e-07,1.209232321365679143e-07,1.381979795846490411e-07,1.554727270327301679e-07,1.727474744808112948e-07,1.900222219288924216e-07,2.072969693769735484e-07,2.245717168250546753e-07,2.418464642731357756e-07,2.591212117212168495e-07,2.763959591692979234e-07,2.936707066173789973e-07,3.109454540654600712e-07,3.282202015135411451e-07,3.454949489616222190e-07,3.627696964097032929e-07,3.800444438577843668e-07,3.973191913058654407e-07,4.145939387539465146e-07,4.318686862020275884e-07,4.491434336501086623e-07,4.664181810981897362e-07,4.836929285462708101e-07,5.009676759943518840e-07,5.182424234424329579e-07,5.355171708905140318e-07,5.527919183385951057e-07,5.700666657866761796e-07,5.873414132347572535e-07,6.046161606828383274e-07,6.218909081309194012e-07,6.391656555790004751e-07,6.564404030270815490e-07,6.737151504751626229e-07,6.909898979232436968e-07,7.082646453713247707e-07,7.255393928194058446e-07,7.428141402674869185e-07,7.600888877155679924e-07,7.773636351636490663e-07,7.946383826117301402e-07,8.119131300598112141e-07,8.291878775078922879e-07,8.464626249559733618e-07,8.637373724040544357e-07,8.810121198521355096e-07,8.982868673002165835e-07,9.155616147482976574e-07,9.328363621963787313e-07,9.501111096444598052e-07,9.673858570925409850e-07,9.846606045406220589e-07,1.001935351988703133e-06,1.019210099436784207e-06,1.036484846884865281e-06,1.053759594332946354e-06,1.071034341781027428e-06,1.088309089229108502e-06 +0.000000000000000000e+00,1.849837045391264808e-08,3.699674090782529616e-08,5.549511136173794093e-08,7.399348181565057908e-08,9.249185226956321724e-08,1.109902227234758554e-07,1.294885931773885068e-07,1.479869636313011582e-07,1.664853340852138096e-07,1.849837045391264609e-07,2.034820749930391123e-07,2.219804454469517637e-07,2.404788159008644151e-07,2.589771863547770665e-07,2.774755568086897179e-07,2.959739272626023693e-07,3.144722977165150207e-07,3.329706681704276721e-07,3.514690386243403234e-07,3.699674090782529748e-07,3.884657795321656262e-07,4.069641499860782776e-07,4.254625204399909290e-07,4.439608908939035804e-07,4.624592613478162318e-07,4.809576318017288302e-07,4.994560022556414287e-07,5.179543727095540271e-07,5.364527431634666256e-07,5.549511136173792240e-07,5.734494840712918225e-07,5.919478545252044209e-07,6.104462249791170194e-07,6.289445954330296178e-07,6.474429658869422163e-07,6.659413363408548147e-07,6.844397067947674132e-07,7.029380772486800116e-07,7.214364477025926101e-07,7.399348181565052085e-07,7.584331886104178070e-07,7.769315590643304054e-07,7.954299295182430039e-07,8.139282999721556023e-07,8.324266704260682008e-07,8.509250408799807992e-07,8.694234113338933977e-07,8.879217817878059961e-07,9.064201522417185946e-07,9.249185226956311930e-07,9.434168931495437915e-07,9.619152636034563899e-07,9.804136340573689884e-07,9.989120045112815868e-07,1.017410374965194185e-06,1.035908745419106784e-06,1.054407115873019382e-06,1.072905486326931981e-06,1.091403856780844579e-06,1.109902227234757177e-06,1.128400597688669776e-06,1.146898968142582374e-06,1.165397338596494973e-06 +0.000000000000000000e+00,1.711417634591210920e-08,3.422835269182421840e-08,5.134252903773632760e-08,6.845670538364843680e-08,8.557088172956055262e-08,1.026850580754726684e-07,1.197992344213847843e-07,1.369134107672969001e-07,1.540275871132090159e-07,1.711417634591211317e-07,1.882559398050332475e-07,2.053701161509453633e-07,2.224842924968574792e-07,2.395984688427695685e-07,2.567126451886816579e-07,2.738268215345937472e-07,2.909409978805058365e-07,3.080551742264179259e-07,3.251693505723300152e-07,3.422835269182421046e-07,3.593977032641541939e-07,3.765118796100662833e-07,3.936260559559783726e-07,4.107402323018904620e-07,4.278544086478025513e-07,4.449685849937146407e-07,4.620827613396267300e-07,4.791969376855388194e-07,4.963111140314508558e-07,5.134252903773628922e-07,5.305394667232749286e-07,5.476536430691869650e-07,5.647678194150990014e-07,5.818819957610110378e-07,5.989961721069230742e-07,6.161103484528351106e-07,6.332245247987471470e-07,6.503387011446591835e-07,6.674528774905712199e-07,6.845670538364832563e-07,7.016812301823952927e-07,7.187954065283073291e-07,7.359095828742193655e-07,7.530237592201314019e-07,7.701379355660434383e-07,7.872521119119554747e-07,8.043662882578675111e-07,8.214804646037795475e-07,8.385946409496915839e-07,8.557088172956036204e-07,8.728229936415156568e-07,8.899371699874276932e-07,9.070513463333397296e-07,9.241655226792517660e-07,9.412796990251638024e-07,9.583938753710757329e-07,9.755080517169876635e-07,9.926222280628995940e-07,1.009736404408811525e-06,1.026850580754723455e-06,1.043964757100635386e-06,1.061078933446547316e-06,1.078193109792459247e-06 +0.000000000000000000e+00,1.827388010326257095e-08,3.654776020652514189e-08,5.482164030978771284e-08,7.309552041305028379e-08,9.136940051631284811e-08,1.096432806195754124e-07,1.279171607228379768e-07,1.461910408261005411e-07,1.644649209293631054e-07,1.827388010326256698e-07,2.010126811358882341e-07,2.192865612391507984e-07,2.375604413424133627e-07,2.558343214456759535e-07,2.741082015489385443e-07,2.923820816522011351e-07,3.106559617554637259e-07,3.289298418587263167e-07,3.472037219619889075e-07,3.654776020652514983e-07,3.837514821685140891e-07,4.020253622717766799e-07,4.202992423750392707e-07,4.385731224783018615e-07,4.568470025815644523e-07,4.751208826848270431e-07,4.933947627880896869e-07,5.116686428913523306e-07,5.299425229946149743e-07,5.482164030978776181e-07,5.664902832011402618e-07,5.847641633044029056e-07,6.030380434076655493e-07,6.213119235109281930e-07,6.395858036141908368e-07,6.578596837174534805e-07,6.761335638207161243e-07,6.944074439239787680e-07,7.126813240272414117e-07,7.309552041305040555e-07,7.492290842337666992e-07,7.675029643370293429e-07,7.857768444402919867e-07,8.040507245435546304e-07,8.223246046468172742e-07,8.405984847500799179e-07,8.588723648533425616e-07,8.771462449566052054e-07,8.954201250598678491e-07,9.136940051631304929e-07,9.319678852663931366e-07,9.502417653696557803e-07,9.685156454729184241e-07,9.867895255761810678e-07,1.005063405679443712e-06,1.023337285782706355e-06,1.041611165885968999e-06,1.059885045989231643e-06,1.078158926092494286e-06,1.096432806195756930e-06,1.114706686299019574e-06,1.132980566402282218e-06,1.151254446505544861e-06 +0.000000000000000000e+00,1.817187531312059708e-08,3.634375062624119416e-08,5.451562593936178794e-08,7.268750125248237509e-08,9.085937656560296225e-08,1.090312518787235494e-07,1.272031271918441366e-07,1.453750025049647237e-07,1.635468778180853109e-07,1.817187531312058980e-07,1.998906284443264852e-07,2.180625037574470723e-07,2.362343790705676595e-07,2.544062543836882202e-07,2.725781296968088073e-07,2.907500050099293945e-07,3.089218803230499817e-07,3.270937556361705688e-07,3.452656309492911560e-07,3.634375062624117431e-07,3.816093815755323303e-07,3.997812568886529174e-07,4.179531322017735046e-07,4.361250075148940917e-07,4.542968828280146789e-07,4.724687581411352661e-07,4.906406334542558532e-07,5.088125087673764404e-07,5.269843840804970275e-07,5.451562593936176147e-07,5.633281347067382018e-07,5.815000100198587890e-07,5.996718853329793762e-07,6.178437606460999633e-07,6.360156359592205505e-07,6.541875112723411376e-07,6.723593865854617248e-07,6.905312618985823119e-07,7.087031372117028991e-07,7.268750125248234862e-07,7.450468878379440734e-07,7.632187631510646606e-07,7.813906384641852477e-07,7.995625137773058349e-07,8.177343890904264220e-07,8.359062644035470092e-07,8.540781397166675963e-07,8.722500150297881835e-07,8.904218903429087706e-07,9.085937656560293578e-07,9.267656409691499450e-07,9.449375162822705321e-07,9.631093915953911193e-07,9.812812669085117064e-07,9.994531422216322936e-07,1.017625017534752881e-06,1.035796892847873468e-06,1.053968768160994055e-06,1.072140643474114642e-06,1.090312518787235229e-06,1.108484394100355817e-06,1.126656269413476404e-06,1.144828144726596991e-06 +0.000000000000000000e+00,1.780446295711224084e-08,3.560892591422448167e-08,5.341338887133672581e-08,7.121785182844897658e-08,8.902231478556122734e-08,1.068267777426734781e-07,1.246312406997857156e-07,1.424357036568979532e-07,1.602401666140101907e-07,1.780446295711224282e-07,1.958490925282346657e-07,2.136535554853469033e-07,2.314580184424591408e-07,2.492624813995713783e-07,2.670669443566836158e-07,2.848714073137958534e-07,3.026758702709080909e-07,3.204803332280203284e-07,3.382847961851325659e-07,3.560892591422448035e-07,3.738937220993570410e-07,3.916981850564692785e-07,4.095026480135815160e-07,4.273071109706937536e-07,4.451115739278059911e-07,4.629160368849182286e-07,4.807204998420304132e-07,4.985249627991426507e-07,5.163294257562548883e-07,5.341338887133671258e-07,5.519383516704793633e-07,5.697428146275916008e-07,5.875472775847038384e-07,6.053517405418160759e-07,6.231562034989283134e-07,6.409606664560405510e-07,6.587651294131527885e-07,6.765695923702650260e-07,6.943740553273772635e-07,7.121785182844895011e-07,7.299829812416017386e-07,7.477874441987139761e-07,7.655919071558262136e-07,7.833963701129384512e-07,8.012008330700506887e-07,8.190052960271629262e-07,8.368097589842751637e-07,8.546142219413874013e-07,8.724186848984996388e-07,8.902231478556118763e-07,9.080276108127241138e-07,9.258320737698363514e-07,9.436365367269485889e-07,9.614409996840608264e-07,9.792454626411730640e-07,9.970499255982853015e-07,1.014854388555397539e-06,1.032658851512509777e-06,1.050463314469622014e-06,1.068267777426734252e-06,1.086072240383846489e-06,1.103876703340958727e-06,1.121681166298070964e-06 +0.000000000000000000e+00,1.908552144193331825e-08,3.817104288386663650e-08,5.725656432579995475e-08,7.634208576773327300e-08,9.542760720966659786e-08,1.145131286515999227e-07,1.335986500935332476e-07,1.526841715354665725e-07,1.717696929773998973e-07,1.908552144193332222e-07,2.099407358612665471e-07,2.290262573031998719e-07,2.481117787451331968e-07,2.671973001870664952e-07,2.862828216289997936e-07,3.053683430709330920e-07,3.244538645128663904e-07,3.435393859547996888e-07,3.626249073967329872e-07,3.817104288386662856e-07,4.007959502805995840e-07,4.198814717225328824e-07,4.389669931644661808e-07,4.580525146063994792e-07,4.771380360483327246e-07,4.962235574902659701e-07,5.153090789321992155e-07,5.343946003741324610e-07,5.534801218160657064e-07,5.725656432579989519e-07,5.916511646999321974e-07,6.107366861418654428e-07,6.298222075837986883e-07,6.489077290257319337e-07,6.679932504676651792e-07,6.870787719095984246e-07,7.061642933515316701e-07,7.252498147934649155e-07,7.443353362353981610e-07,7.634208576773314065e-07,7.825063791192646519e-07,8.015919005611978974e-07,8.206774220031311428e-07,8.397629434450643883e-07,8.588484648869976337e-07,8.779339863289308792e-07,8.970195077708641247e-07,9.161050292127973701e-07,9.351905506547306156e-07,9.542760720966637552e-07,9.733615935385968947e-07,9.924471149805300343e-07,1.011532636422463174e-06,1.030618157864396313e-06,1.049703679306329453e-06,1.068789200748262593e-06,1.087874722190195732e-06,1.106960243632128872e-06,1.126045765074062011e-06,1.145131286515995151e-06,1.164216807957928291e-06,1.183302329399861430e-06,1.202387850841794570e-06 +0.000000000000000000e+00,1.750416491418971470e-08,3.500832982837942940e-08,5.251249474256914741e-08,7.001665965675887203e-08,8.752082457094859666e-08,1.050249894851383213e-07,1.225291543993280459e-07,1.400333193135177705e-07,1.575374842277074952e-07,1.750416491418972198e-07,1.925458140560869444e-07,2.100499789702766690e-07,2.275541438844663937e-07,2.450583087986560918e-07,2.625624737128457900e-07,2.800666386270354881e-07,2.975708035412251863e-07,3.150749684554148844e-07,3.325791333696045826e-07,3.500832982837942808e-07,3.675874631979839789e-07,3.850916281121736771e-07,4.025957930263633752e-07,4.200999579405530734e-07,4.376041228547427715e-07,4.551082877689324697e-07,4.726124526831221679e-07,4.901166175973118660e-07,5.076207825115016171e-07,5.251249474256913682e-07,5.426291123398811193e-07,5.601332772540708704e-07,5.776374421682606215e-07,5.951416070824503726e-07,6.126457719966401237e-07,6.301499369108298748e-07,6.476541018250196259e-07,6.651582667392093770e-07,6.826624316533991281e-07,7.001665965675888792e-07,7.176707614817786303e-07,7.351749263959683814e-07,7.526790913101581324e-07,7.701832562243478835e-07,7.876874211385376346e-07,8.051915860527273857e-07,8.226957509669171368e-07,8.401999158811068879e-07,8.577040807952966390e-07,8.752082457094863901e-07,8.927124106236761412e-07,9.102165755378658923e-07,9.277207404520556434e-07,9.452249053662453945e-07,9.627290702804351456e-07,9.802332351946247908e-07,9.977374001088144360e-07,1.015241565023004081e-06,1.032745729937193726e-06,1.050249894851383372e-06,1.067754059765573017e-06,1.085258224679762662e-06,1.102762389593952307e-06 +0.000000000000000000e+00,1.876371911434304044e-08,3.752743822868608087e-08,5.629115734302912462e-08,7.505487645737217498e-08,9.381859557171522534e-08,1.125823146860582757e-07,1.313460338004013261e-07,1.501097529147443764e-07,1.688734720290874268e-07,1.876371911434304772e-07,2.064009102577735275e-07,2.251646293721165779e-07,2.439283484864596282e-07,2.626920676008026521e-07,2.814557867151456760e-07,3.002195058294886999e-07,3.189832249438317238e-07,3.377469440581747477e-07,3.565106631725177716e-07,3.752743822868607955e-07,3.940381014012038194e-07,4.128018205155468433e-07,4.315655396298898672e-07,4.503292587442328911e-07,4.690929778585759150e-07,4.878566969729189388e-07,5.066204160872619627e-07,5.253841352016049866e-07,5.441478543159480105e-07,5.629115734302910344e-07,5.816752925446340583e-07,6.004390116589770822e-07,6.192027307733201061e-07,6.379664498876631300e-07,6.567301690020061539e-07,6.754938881163491778e-07,6.942576072306922017e-07,7.130213263450352256e-07,7.317850454593782494e-07,7.505487645737212733e-07,7.693124836880642972e-07,7.880762028024073211e-07,8.068399219167503450e-07,8.256036410310933689e-07,8.443673601454363928e-07,8.631310792597794167e-07,8.818947983741224406e-07,9.006585174884654645e-07,9.194222366028084884e-07,9.381859557171515123e-07,9.569496748314946420e-07,9.757133939458376659e-07,9.944771130601806898e-07,1.013240832174523714e-06,1.032004551288866738e-06,1.050768270403209762e-06,1.069531989517552785e-06,1.088295708631895809e-06,1.107059427746238833e-06,1.125823146860581857e-06,1.144586865974924881e-06,1.163350585089267905e-06,1.182114304203610929e-06 +0.000000000000000000e+00,1.874121356497236277e-08,3.748242712994472554e-08,5.622364069491708500e-08,7.496485425988943784e-08,9.370606782486179069e-08,1.124472813898341435e-07,1.311884949548064964e-07,1.499297085197788492e-07,1.686709220847512021e-07,1.874121356497235549e-07,2.061533492146959077e-07,2.248945627796682606e-07,2.436357763446406134e-07,2.623769899096129927e-07,2.811182034745853721e-07,2.998594170395577514e-07,3.186006306045301307e-07,3.373418441695025100e-07,3.560830577344748893e-07,3.748242712994472686e-07,3.935654848644196479e-07,4.123066984293920273e-07,4.310479119943644066e-07,4.497891255593367859e-07,4.685303391243091652e-07,4.872715526892815445e-07,5.060127662542539238e-07,5.247539798192263031e-07,5.434951933841986824e-07,5.622364069491710618e-07,5.809776205141434411e-07,5.997188340791158204e-07,6.184600476440881997e-07,6.372012612090605790e-07,6.559424747740329583e-07,6.746836883390053376e-07,6.934249019039777170e-07,7.121661154689500963e-07,7.309073290339224756e-07,7.496485425988948549e-07,7.683897561638672342e-07,7.871309697288396135e-07,8.058721832938119928e-07,8.246133968587843721e-07,8.433546104237567515e-07,8.620958239887291308e-07,8.808370375537015101e-07,8.995782511186738894e-07,9.183194646836462687e-07,9.370606782486186480e-07,9.558018918135910273e-07,9.745431053785633008e-07,9.932843189435355742e-07,1.012025532508507848e-06,1.030766746073480121e-06,1.049507959638452395e-06,1.068249173203424668e-06,1.086990386768396941e-06,1.105731600333369215e-06,1.124472813898341488e-06,1.143214027463313762e-06,1.161955241028286035e-06,1.180696454593258309e-06 +0.000000000000000000e+00,1.780446295712565440e-08,3.560892591425130879e-08,5.341338887137695988e-08,7.121785182850260435e-08,8.902231478562824882e-08,1.068267777427538933e-07,1.246312406998795245e-07,1.424357036570051558e-07,1.602401666141307870e-07,1.780446295712564182e-07,1.958490925283820495e-07,2.136535554855076807e-07,2.314580184426333119e-07,2.492624813997589432e-07,2.670669443568845744e-07,2.848714073140102056e-07,3.026758702711358369e-07,3.204803332282614681e-07,3.382847961853870993e-07,3.560892591425127306e-07,3.738937220996383618e-07,3.916981850567639930e-07,4.095026480138896243e-07,4.273071109710152555e-07,4.451115739281408868e-07,4.629160368852665180e-07,4.807204998423920963e-07,4.985249627995176746e-07,5.163294257566432529e-07,5.341338887137688312e-07,5.519383516708944095e-07,5.697428146280199878e-07,5.875472775851455661e-07,6.053517405422711444e-07,6.231562034993967226e-07,6.409606664565223009e-07,6.587651294136478792e-07,6.765695923707734575e-07,6.943740553278990358e-07,7.121785182850246141e-07,7.299829812421501924e-07,7.477874441992757707e-07,7.655919071564013490e-07,7.833963701135269273e-07,8.012008330706525056e-07,8.190052960277780839e-07,8.368097589849036622e-07,8.546142219420292405e-07,8.724186848991548188e-07,8.902231478562803971e-07,9.080276108134059754e-07,9.258320737705315537e-07,9.436365367276571320e-07,9.614409996847827103e-07,9.792454626419082886e-07,9.970499255990338668e-07,1.014854388556159445e-06,1.032658851513285023e-06,1.050463314470410602e-06,1.068267777427536180e-06,1.086072240384661758e-06,1.103876703341787337e-06,1.121681166298912915e-06 +0.000000000000000000e+00,1.908552144194727113e-08,3.817104288389454226e-08,5.725656432584181009e-08,7.634208576778907129e-08,9.542760720973633250e-08,1.145131286516835937e-07,1.335986500936308681e-07,1.526841715355781426e-07,1.717696929775254170e-07,1.908552144194726915e-07,2.099407358614199659e-07,2.290262573033672403e-07,2.481117787453145148e-07,2.671973001872617892e-07,2.862828216292090637e-07,3.053683430711563381e-07,3.244538645131036125e-07,3.435393859550508870e-07,3.626249073969981614e-07,3.817104288389454359e-07,4.007959502808927103e-07,4.198814717228399847e-07,4.389669931647872592e-07,4.580525146067345336e-07,4.771380360486818081e-07,4.962235574906290296e-07,5.153090789325762511e-07,5.343946003745234726e-07,5.534801218164706941e-07,5.725656432584179156e-07,5.916511647003651371e-07,6.107366861423123586e-07,6.298222075842595801e-07,6.489077290262068016e-07,6.679932504681540231e-07,6.870787719101012446e-07,7.061642933520484661e-07,7.252498147939956876e-07,7.443353362359429091e-07,7.634208576778901306e-07,7.825063791198373521e-07,8.015919005617845736e-07,8.206774220037317951e-07,8.397629434456790166e-07,8.588484648876262381e-07,8.779339863295734596e-07,8.970195077715206811e-07,9.161050292134679026e-07,9.351905506554151241e-07,9.542760720973623456e-07,9.733615935393094612e-07,9.924471149812565768e-07,1.011532636423203692e-06,1.030618157865150808e-06,1.049703679307097924e-06,1.068789200749045039e-06,1.087874722190992155e-06,1.106960243632939271e-06,1.126045765074886386e-06,1.145131286516833502e-06,1.164216807958780617e-06,1.183302329400727733e-06,1.202387850842674849e-06 +0.000000000000000000e+00,1.750416491420330031e-08,3.500832982840660063e-08,5.251249474260989763e-08,7.001665965681318802e-08,8.752082457101647841e-08,1.050249894852197688e-07,1.225291543994230724e-07,1.400333193136263760e-07,1.575374842278296797e-07,1.750416491420329833e-07,1.925458140562362869e-07,2.100499789704395905e-07,2.275541438846428942e-07,2.450583087988461978e-07,2.625624737130495014e-07,2.800666386272528050e-07,2.975708035414561087e-07,3.150749684556594123e-07,3.325791333698627159e-07,3.500832982840660195e-07,3.675874631982693231e-07,3.850916281124726268e-07,4.025957930266759304e-07,4.200999579408792340e-07,4.376041228550825376e-07,4.551082877692858413e-07,4.726124526834891449e-07,4.901166175976925014e-07,5.076207825118959109e-07,5.251249474260993204e-07,5.426291123403027299e-07,5.601332772545061395e-07,5.776374421687095490e-07,5.951416070829129585e-07,6.126457719971163680e-07,6.301499369113197775e-07,6.476541018255231870e-07,6.651582667397265965e-07,6.826624316539300060e-07,7.001665965681334155e-07,7.176707614823368250e-07,7.351749263965402345e-07,7.526790913107436440e-07,7.701832562249470535e-07,7.876874211391504630e-07,8.051915860533538725e-07,8.226957509675572820e-07,8.401999158817606915e-07,8.577040807959641010e-07,8.752082457101675105e-07,8.927124106243709200e-07,9.102165755385743295e-07,9.277207404527777390e-07,9.452249053669811485e-07,9.627290702811845580e-07,9.802332351953879675e-07,9.977374001095913770e-07,1.015241565023794787e-06,1.032745729937998196e-06,1.050249894852201606e-06,1.067754059766405015e-06,1.085258224680608425e-06,1.102762389594811834e-06 +0.000000000000000000e+00,1.876371911435745654e-08,3.752743822871491308e-08,5.629115734307236962e-08,7.505487645742982616e-08,9.381859557178727608e-08,1.125823146861447260e-07,1.313460338005021759e-07,1.501097529148596258e-07,1.688734720292170758e-07,1.876371911435745257e-07,2.064009102579319756e-07,2.251646293722894255e-07,2.439283484866468755e-07,2.626920676010043519e-07,2.814557867153618282e-07,3.002195058297193046e-07,3.189832249440767810e-07,3.377469440584342574e-07,3.565106631727917338e-07,3.752743822871492102e-07,3.940381014015066866e-07,4.128018205158641630e-07,4.315655396302216394e-07,4.503292587445791158e-07,4.690929778589365922e-07,4.878566969732940686e-07,5.066204160876514920e-07,5.253841352020089155e-07,5.441478543163663389e-07,5.629115734307237624e-07,5.816752925450811858e-07,6.004390116594386093e-07,6.192027307737960327e-07,6.379664498881534562e-07,6.567301690025108796e-07,6.754938881168683031e-07,6.942576072312257265e-07,7.130213263455831500e-07,7.317850454599405734e-07,7.505487645742979969e-07,7.693124836886554204e-07,7.880762028030128438e-07,8.068399219173702673e-07,8.256036410317276907e-07,8.443673601460851142e-07,8.631310792604425376e-07,8.818947983747999611e-07,9.006585174891573845e-07,9.194222366035148080e-07,9.381859557178722314e-07,9.569496748322296549e-07,9.757133939465870783e-07,9.944771130609445018e-07,1.013240832175301925e-06,1.032004551289659349e-06,1.050768270404016772e-06,1.069531989518374196e-06,1.088295708632731619e-06,1.107059427747089043e-06,1.125823146861446466e-06,1.144586865975803889e-06,1.163350585090161313e-06,1.182114304204518736e-06 +0.000000000000000000e+00,1.874121356498602779e-08,3.748242712997205559e-08,5.622364069495808669e-08,7.496485425994412441e-08,9.370606782493016213e-08,1.124472813899161998e-07,1.311884949549022376e-07,1.499297085198882753e-07,1.686709220848743130e-07,1.874121356498603507e-07,2.061533492148463884e-07,2.248945627798324262e-07,2.436357763448184904e-07,2.623769899098045281e-07,2.811182034747905658e-07,2.998594170397766035e-07,3.186006306047626412e-07,3.373418441697486790e-07,3.560830577347347167e-07,3.748242712997207544e-07,3.935654848647067921e-07,4.123066984296928298e-07,4.310479119946788675e-07,4.497891255596649053e-07,4.685303391246509430e-07,4.872715526896369807e-07,5.060127662546230184e-07,5.247539798196090561e-07,5.434951933845950939e-07,5.622364069495811316e-07,5.809776205145671693e-07,5.997188340795532070e-07,6.184600476445392447e-07,6.372012612095252825e-07,6.559424747745113202e-07,6.746836883394973579e-07,6.934249019044833956e-07,7.121661154694694333e-07,7.309073290344554711e-07,7.496485425994415088e-07,7.683897561644275465e-07,7.871309697294135842e-07,8.058721832943996219e-07,8.246133968593856597e-07,8.433546104243716974e-07,8.620958239893577351e-07,8.808370375543437728e-07,8.995782511193298105e-07,9.183194646843158483e-07,9.370606782493018860e-07,9.558018918142879237e-07,9.745431053792739614e-07,9.932843189442599991e-07,1.012025532509246037e-06,1.030766746074232075e-06,1.049507959639218112e-06,1.068249173204204150e-06,1.086990386769190188e-06,1.105731600334176225e-06,1.124472813899162263e-06,1.143214027464148301e-06,1.161955241029134339e-06,1.180696454594120376e-06 +0.000000000000000000e+00,1.860610488769032826e-08,3.721220977538065652e-08,5.581831466307098808e-08,7.442441955076132627e-08,9.303052443845166445e-08,1.116366293261420026e-07,1.302427342138323541e-07,1.488488391015227055e-07,1.674549439892130569e-07,1.860610488769034083e-07,2.046671537645937597e-07,2.232732586522841112e-07,2.418793635399744626e-07,2.604854684276648140e-07,2.790915733153551654e-07,2.976976782030455168e-07,3.163037830907358683e-07,3.349098879784262197e-07,3.535159928661165711e-07,3.721220977538069225e-07,3.907282026414972739e-07,4.093343075291876254e-07,4.279404124168779768e-07,4.465465173045683282e-07,4.651526221922586796e-07,4.837587270799490310e-07,5.023648319676393825e-07,5.209709368553297339e-07,5.395770417430200853e-07,5.581831466307104367e-07,5.767892515184007881e-07,5.953953564060911395e-07,6.140014612937814910e-07,6.326075661814718424e-07,6.512136710691621938e-07,6.698197759568525452e-07,6.884258808445428966e-07,7.070319857322332481e-07,7.256380906199235995e-07,7.442441955076139509e-07,7.628503003953043023e-07,7.814564052829946537e-07,8.000625101706850052e-07,8.186686150583753566e-07,8.372747199460657080e-07,8.558808248337560594e-07,8.744869297214464108e-07,8.930930346091367623e-07,9.116991394968271137e-07,9.303052443845174651e-07,9.489113492722078165e-07,9.675174541598982738e-07,9.861235590475886252e-07,1.004729663935278977e-06,1.023335768822969328e-06,1.041941873710659679e-06,1.060547978598350031e-06,1.079154083486040382e-06,1.097760188373730734e-06,1.116366293261421085e-06,1.134972398149111437e-06,1.153578503036801788e-06,1.172184607924492139e-06 +0.000000000000000000e+00,1.993264611082674724e-08,3.986529222165349447e-08,5.979793833248023510e-08,7.973058444330697572e-08,9.966323055413371634e-08,1.195958766649604702e-07,1.395285227757872240e-07,1.594611688866139779e-07,1.793938149974407318e-07,1.993264611082674856e-07,2.192591072190942395e-07,2.391917533299209933e-07,2.591243994407477472e-07,2.790570455515745010e-07,2.989896916624012549e-07,3.189223377732280087e-07,3.388549838840547626e-07,3.587876299948815164e-07,3.787202761057082703e-07,3.986529222165350242e-07,4.185855683273617780e-07,4.385182144381885319e-07,4.584508605490152857e-07,4.783835066598420925e-07,4.983161527706688993e-07,5.182487988814957061e-07,5.381814449923225129e-07,5.581140911031493197e-07,5.780467372139761265e-07,5.979793833248029333e-07,6.179120294356297401e-07,6.378446755464565469e-07,6.577773216572833537e-07,6.777099677681101605e-07,6.976426138789369673e-07,7.175752599897637741e-07,7.375079061005905808e-07,7.574405522114173876e-07,7.773731983222441944e-07,7.973058444330710012e-07,8.172384905438978080e-07,8.371711366547246148e-07,8.571037827655514216e-07,8.770364288763782284e-07,8.969690749872050352e-07,9.169017210980318420e-07,9.368343672088586488e-07,9.567670133196854556e-07,9.766996594305121565e-07,9.966323055413388574e-07,1.016564951652165558e-06,1.036497597762992259e-06,1.056430243873818960e-06,1.076362889984645661e-06,1.096295536095472362e-06,1.116228182206299063e-06,1.136160828317125764e-06,1.156093474427952465e-06,1.176026120538779166e-06,1.195958766649605867e-06,1.215891412760432567e-06,1.235824058871259268e-06,1.255756704982085969e-06 +0.000000000000000000e+00,1.817584708807079097e-08,3.635169417614158194e-08,5.452754126421237291e-08,7.270338835228316388e-08,9.087923544035396147e-08,1.090550825284247591e-07,1.272309296164955566e-07,1.454067767045663542e-07,1.635826237926371518e-07,1.817584708807079494e-07,1.999343179687787470e-07,2.181101650568495446e-07,2.362860121449203422e-07,2.544618592329911133e-07,2.726377063210618844e-07,2.908135534091326555e-07,3.089894004972034267e-07,3.271652475852741978e-07,3.453410946733449689e-07,3.635169417614157400e-07,3.816927888494865111e-07,3.998686359375572822e-07,4.180444830256280534e-07,4.362203301136988245e-07,4.543961772017695956e-07,4.725720242898403667e-07,4.907478713779110849e-07,5.089237184659818031e-07,5.270995655540525213e-07,5.452754126421232394e-07,5.634512597301939576e-07,5.816271068182646758e-07,5.998029539063353940e-07,6.179788009944061122e-07,6.361546480824768303e-07,6.543304951705475485e-07,6.725063422586182667e-07,6.906821893466889849e-07,7.088580364347597031e-07,7.270338835228304212e-07,7.452097306109011394e-07,7.633855776989718576e-07,7.815614247870425758e-07,7.997372718751132939e-07,8.179131189631840121e-07,8.360889660512547303e-07,8.542648131393254485e-07,8.724406602273961667e-07,8.906165073154668848e-07,9.087923544035376030e-07,9.269682014916083212e-07,9.451440485796790394e-07,9.633198956677497576e-07,9.814957427558204757e-07,9.996715898438911939e-07,1.017847436931961912e-06,1.036023284020032630e-06,1.054199131108103348e-06,1.072374978196174067e-06,1.090550825284244785e-06,1.108726672372315503e-06,1.126902519460386221e-06,1.145078366548456939e-06 +0.000000000000000000e+00,1.947718176219020089e-08,3.895436352438040179e-08,5.843154528657060268e-08,7.790872704876080357e-08,9.738590881095100446e-08,1.168630905731412054e-07,1.363402723353313930e-07,1.558174540975215807e-07,1.752946358597117683e-07,1.947718176219019560e-07,2.142489993840921436e-07,2.337261811462823313e-07,2.532033629084725190e-07,2.726805446706626801e-07,2.921577264328528413e-07,3.116349081950430025e-07,3.311120899572331637e-07,3.505892717194233249e-07,3.700664534816134861e-07,3.895436352438036473e-07,4.090208170059938085e-07,4.284979987681839697e-07,4.479751805303741308e-07,4.674523622925642920e-07,4.869295440547545062e-07,5.064067258169447203e-07,5.258839075791349344e-07,5.453610893413251485e-07,5.648382711035153627e-07,5.843154528657055768e-07,6.037926346278957909e-07,6.232698163900860050e-07,6.427469981522762192e-07,6.622241799144664333e-07,6.817013616766566474e-07,7.011785434388468616e-07,7.206557252010370757e-07,7.401329069632272898e-07,7.596100887254175039e-07,7.790872704876077181e-07,7.985644522497979322e-07,8.180416340119881463e-07,8.375188157741783605e-07,8.569959975363685746e-07,8.764731792985587887e-07,8.959503610607490028e-07,9.154275428229392170e-07,9.349047245851294311e-07,9.543819063473196452e-07,9.738590881095098593e-07,9.933362698717000735e-07,1.012813451633890288e-06,1.032290633396080502e-06,1.051767815158270716e-06,1.071244996920460930e-06,1.090722178682651144e-06,1.110199360444841358e-06,1.129676542207031572e-06,1.149153723969221786e-06,1.168630905731412001e-06,1.188108087493602215e-06,1.207585269255792429e-06,1.227062451017982643e-06 +0.000000000000000000e+00,1.957340279765121932e-08,3.914680559530243864e-08,5.872020839295365796e-08,7.829361119060487728e-08,9.786701398825609660e-08,1.174404167859073159e-07,1.370138195835585485e-07,1.565872223812097810e-07,1.761606251788610136e-07,1.957340279765122461e-07,2.153074307741634787e-07,2.348808335718147112e-07,2.544542363694659438e-07,2.740276391671172028e-07,2.936010419647684618e-07,3.131744447624197209e-07,3.327478475600709799e-07,3.523212503577222389e-07,3.718946531553734979e-07,3.914680559530247570e-07,4.110414587506760160e-07,4.306148615483272750e-07,4.501882643459785340e-07,4.697616671436297931e-07,4.893350699412809992e-07,5.089084727389322052e-07,5.284818755365834113e-07,5.480552783342346174e-07,5.676286811318858235e-07,5.872020839295370296e-07,6.067754867271882357e-07,6.263488895248394417e-07,6.459222923224906478e-07,6.654956951201418539e-07,6.850690979177930600e-07,7.046425007154442661e-07,7.242159035130954722e-07,7.437893063107466783e-07,7.633627091083978843e-07,7.829361119060490904e-07,8.025095147037002965e-07,8.220829175013515026e-07,8.416563202990027087e-07,8.612297230966539148e-07,8.808031258943051208e-07,9.003765286919563269e-07,9.199499314896075330e-07,9.395233342872587391e-07,9.590967370849099452e-07,9.786701398825611513e-07,9.982435426802123574e-07,1.017816945477863563e-06,1.037390348275514770e-06,1.056963751073165976e-06,1.076537153870817182e-06,1.096110556668468388e-06,1.115683959466119594e-06,1.135257362263770800e-06,1.154830765061422006e-06,1.174404167859073212e-06,1.193977570656724418e-06,1.213550973454375624e-06,1.233124376252026830e-06 +0.000000000000000000e+00,1.860610488770268303e-08,3.721220977540536606e-08,5.581831466310804578e-08,7.442441955081071888e-08,9.303052443851339198e-08,1.116366293262160651e-07,1.302427342139187514e-07,1.488488391016214378e-07,1.674549439893241241e-07,1.860610488770268104e-07,2.046671537647294968e-07,2.232732586524321831e-07,2.418793635401348694e-07,2.604854684278375558e-07,2.790915733155402421e-07,2.976976782032429285e-07,3.163037830909456148e-07,3.349098879786483011e-07,3.535159928663509875e-07,3.721220977540536738e-07,3.907282026417563601e-07,4.093343075294590465e-07,4.279404124171617328e-07,4.465465173048644191e-07,4.651526221925671055e-07,4.837587270802697389e-07,5.023648319679723723e-07,5.209709368556750057e-07,5.395770417433776391e-07,5.581831466310802725e-07,5.767892515187829059e-07,5.953953564064855393e-07,6.140014612941881727e-07,6.326075661818908061e-07,6.512136710695934395e-07,6.698197759572960729e-07,6.884258808449987063e-07,7.070319857327013396e-07,7.256380906204039730e-07,7.442441955081066064e-07,7.628503003958092398e-07,7.814564052835118732e-07,8.000625101712145066e-07,8.186686150589171400e-07,8.372747199466197734e-07,8.558808248343224068e-07,8.744869297220250402e-07,8.930930346097276736e-07,9.116991394974303070e-07,9.303052443851329404e-07,9.489113492728355738e-07,9.675174541605382072e-07,9.861235590482408406e-07,1.004729663935943474e-06,1.023335768823646107e-06,1.041941873711348741e-06,1.060547978599051374e-06,1.079154083486754008e-06,1.097760188374456641e-06,1.116366293262159274e-06,1.134972398149861908e-06,1.153578503037564541e-06,1.172184607925267175e-06 +0.000000000000000000e+00,1.993264611083967772e-08,3.986529222167935545e-08,5.979793833251903979e-08,7.973058444335872413e-08,9.966323055419840848e-08,1.195958766650380796e-07,1.395285227758777507e-07,1.594611688867174218e-07,1.793938149975570929e-07,1.993264611083967640e-07,2.192591072192364351e-07,2.391917533300761062e-07,2.591243994409157773e-07,2.790570455517554484e-07,2.989896916625951196e-07,3.189223377734347907e-07,3.388549838842744618e-07,3.587876299951141329e-07,3.787202761059538040e-07,3.986529222167934751e-07,4.185855683276331462e-07,4.385182144384728173e-07,4.584508605493124884e-07,4.783835066601521066e-07,4.983161527709917247e-07,5.182487988818313429e-07,5.381814449926709611e-07,5.581140911035105792e-07,5.780467372143501974e-07,5.979793833251898156e-07,6.179120294360294338e-07,6.378446755468690519e-07,6.577773216577086701e-07,6.777099677685482883e-07,6.976426138793879064e-07,7.175752599902275246e-07,7.375079061010671428e-07,7.574405522119067609e-07,7.773731983227463791e-07,7.973058444335859973e-07,8.172384905444256154e-07,8.371711366552652336e-07,8.571037827661048518e-07,8.770364288769444699e-07,8.969690749877840881e-07,9.169017210986237063e-07,9.368343672094633244e-07,9.567670133203029426e-07,9.766996594311425608e-07,9.966323055419821789e-07,1.016564951652821797e-06,1.036497597763661415e-06,1.056430243874501033e-06,1.076362889985340652e-06,1.096295536096180270e-06,1.116228182207019888e-06,1.136160828317859506e-06,1.156093474428699124e-06,1.176026120539538742e-06,1.195958766650378361e-06,1.215891412761217979e-06,1.235824058872057597e-06,1.255756704982897215e-06 +0.000000000000000000e+00,1.817584708808362220e-08,3.635169417616724439e-08,5.452754126425086659e-08,7.270338835233448879e-08,9.087923544041811098e-08,1.090550825285017332e-07,1.272309296165853421e-07,1.454067767046689511e-07,1.635826237927525601e-07,1.817584708808361690e-07,1.999343179689197780e-07,2.181101650570033870e-07,2.362860121450869959e-07,2.544618592331705784e-07,2.726377063212541609e-07,2.908135534093377434e-07,3.089894004974213259e-07,3.271652475855049084e-07,3.453410946735884909e-07,3.635169417616720734e-07,3.816927888497556558e-07,3.998686359378392383e-07,4.180444830259228208e-07,4.362203301140064033e-07,4.543961772020899858e-07,4.725720242901735683e-07,4.907478713782570979e-07,5.089237184663406274e-07,5.270995655544241570e-07,5.452754126425076865e-07,5.634512597305912161e-07,5.816271068186747456e-07,5.998029539067582752e-07,6.179788009948418047e-07,6.361546480829253343e-07,6.543304951710088638e-07,6.725063422590923934e-07,6.906821893471759229e-07,7.088580364352594525e-07,7.270338835233429820e-07,7.452097306114265116e-07,7.633855776995100411e-07,7.815614247875935707e-07,7.997372718756771003e-07,8.179131189637606298e-07,8.360889660518441594e-07,8.542648131399276889e-07,8.724406602280112185e-07,8.906165073160947480e-07,9.087923544041782776e-07,9.269682014922618071e-07,9.451440485803453367e-07,9.633198956684288662e-07,9.814957427565125017e-07,9.996715898445961371e-07,1.017847436932679773e-06,1.036023284020763408e-06,1.054199131108847043e-06,1.072374978196930679e-06,1.090550825285014314e-06,1.108726672373097950e-06,1.126902519461181585e-06,1.145078366549265221e-06 +0.000000000000000000e+00,1.947718176220366078e-08,3.895436352440732155e-08,5.843154528661098233e-08,7.790872704881464310e-08,9.738590881101830388e-08,1.168630905732219647e-07,1.363402723354256254e-07,1.558174540976292862e-07,1.752946358598329470e-07,1.947718176220366078e-07,2.142489993842402685e-07,2.337261811464439293e-07,2.532033629086475901e-07,2.726805446708512509e-07,2.921577264330549116e-07,3.116349081952585724e-07,3.311120899574622332e-07,3.505892717196658940e-07,3.700664534818695547e-07,3.895436352440732155e-07,4.090208170062768763e-07,4.284979987684805371e-07,4.479751805306841978e-07,4.674523622928878586e-07,4.869295440550915194e-07,5.064067258172951802e-07,5.258839075794988409e-07,5.453610893417025017e-07,5.648382711039061625e-07,5.843154528661098233e-07,6.037926346283134840e-07,6.232698163905171448e-07,6.427469981527208056e-07,6.622241799149244664e-07,6.817013616771281271e-07,7.011785434393317879e-07,7.206557252015354487e-07,7.401329069637391095e-07,7.596100887259427702e-07,7.790872704881464310e-07,7.985644522503500918e-07,8.180416340125537526e-07,8.375188157747574133e-07,8.569959975369610741e-07,8.764731792991647349e-07,8.959503610613683957e-07,9.154275428235720565e-07,9.349047245857757172e-07,9.543819063479792721e-07,9.738590881101828270e-07,9.933362698723863819e-07,1.012813451634589937e-06,1.032290633396793492e-06,1.051767815158997047e-06,1.071244996921200602e-06,1.090722178683404156e-06,1.110199360445607711e-06,1.129676542207811266e-06,1.149153723970014821e-06,1.168630905732218376e-06,1.188108087494421931e-06,1.207585269256625486e-06,1.227062451018829041e-06 +0.000000000000000000e+00,1.957340279766390496e-08,3.914680559532780992e-08,5.872020839299171488e-08,7.829361119065561985e-08,9.786701398831953142e-08,1.174404167859834430e-07,1.370138195836473546e-07,1.565872223813112662e-07,1.761606251789751777e-07,1.957340279766390893e-07,2.153074307743030009e-07,2.348808335719669125e-07,2.544542363696308505e-07,2.740276391672947621e-07,2.936010419649586737e-07,3.131744447626225853e-07,3.327478475602864968e-07,3.523212503579504084e-07,3.718946531556143200e-07,3.914680559532782316e-07,4.110414587509421432e-07,4.306148615486060547e-07,4.501882643462699663e-07,4.697616671439338779e-07,4.893350699415977895e-07,5.089084727392617011e-07,5.284818755369256126e-07,5.480552783345895242e-07,5.676286811322534358e-07,5.872020839299173474e-07,6.067754867275812589e-07,6.263488895252451705e-07,6.459222923229090821e-07,6.654956951205729937e-07,6.850690979182369053e-07,7.046425007159008168e-07,7.242159035135647284e-07,7.437893063112286400e-07,7.633627091088925516e-07,7.829361119065564632e-07,8.025095147042203747e-07,8.220829175018842863e-07,8.416563202995481979e-07,8.612297230972121095e-07,8.808031258948760211e-07,9.003765286925399326e-07,9.199499314902038442e-07,9.395233342878677558e-07,9.590967370855316674e-07,9.786701398831955789e-07,9.982435426808594905e-07,1.017816945478523402e-06,1.037390348276187314e-06,1.056963751073851225e-06,1.076537153871515137e-06,1.096110556669179048e-06,1.115683959466842960e-06,1.135257362264506872e-06,1.154830765062170783e-06,1.174404167859834695e-06,1.193977570657498606e-06,1.213550973455162518e-06,1.233124376252826429e-06 +0.000000000000000000e+00,1.959679180156581305e-08,3.919358360313162611e-08,5.879037540469743585e-08,7.838716720626323898e-08,9.798395900782904211e-08,1.175807508093948452e-07,1.371775426109606484e-07,1.567743344125264515e-07,1.763711262140922546e-07,1.959679180156580577e-07,2.155647098172238609e-07,2.351615016187896640e-07,2.547582934203554407e-07,2.743550852219212438e-07,2.939518770234870469e-07,3.135486688250528500e-07,3.331454606266186532e-07,3.527422524281844563e-07,3.723390442297502594e-07,3.919358360313160625e-07,4.115326278328818657e-07,4.311294196344476688e-07,4.507262114360134719e-07,4.703230032375792751e-07,4.899197950391450782e-07,5.095165868407108813e-07,5.291133786422766844e-07,5.487101704438424876e-07,5.683069622454082907e-07,5.879037540469740938e-07,6.075005458485398969e-07,6.270973376501057001e-07,6.466941294516715032e-07,6.662909212532373063e-07,6.858877130548031095e-07,7.054845048563689126e-07,7.250812966579347157e-07,7.446780884595005188e-07,7.642748802610663220e-07,7.838716720626321251e-07,8.034684638641979282e-07,8.230652556657637313e-07,8.426620474673295345e-07,8.622588392688953376e-07,8.818556310704611407e-07,9.014524228720269439e-07,9.210492146735927470e-07,9.406460064751585501e-07,9.602427982767243532e-07,9.798395900782901564e-07,9.994363818798559595e-07,1.019033173681421763e-06,1.038629965482987566e-06,1.058226757284553369e-06,1.077823549086119172e-06,1.097420340887684975e-06,1.117017132689250778e-06,1.136613924490816581e-06,1.156210716292382385e-06,1.175807508093948188e-06,1.195404299895513991e-06,1.215001091697079794e-06,1.234597883498645597e-06 +0.000000000000000000e+00,2.100778482395841572e-08,4.201556964791683145e-08,6.302335447187524717e-08,8.403113929583366290e-08,1.050389241197920786e-07,1.260467089437504943e-07,1.470544937677089233e-07,1.680622785916673523e-07,1.890700634156257812e-07,2.100778482395842102e-07,2.310856330635426391e-07,2.520934178875010416e-07,2.731012027114594441e-07,2.941089875354178466e-07,3.151167723593762491e-07,3.361245571833346516e-07,3.571323420072930541e-07,3.781401268312514566e-07,3.991479116552098591e-07,4.201556964791682615e-07,4.411634813031266640e-07,4.621712661270850665e-07,4.831790509510434161e-07,5.041868357750017656e-07,5.251946205989601152e-07,5.462024054229184647e-07,5.672101902468768143e-07,5.882179750708351638e-07,6.092257598947935134e-07,6.302335447187518629e-07,6.512413295427102125e-07,6.722491143666685620e-07,6.932568991906269116e-07,7.142646840145852611e-07,7.352724688385436107e-07,7.562802536625019602e-07,7.772880384864603098e-07,7.982958233104186593e-07,8.193036081343770089e-07,8.403113929583353584e-07,8.613191777822937080e-07,8.823269626062520575e-07,9.033347474302104071e-07,9.243425322541687566e-07,9.453503170781271062e-07,9.663581019020855616e-07,9.873658867260440170e-07,1.008373671550002472e-06,1.029381456373960928e-06,1.050389241197919383e-06,1.071397026021877839e-06,1.092404810845836294e-06,1.113412595669794750e-06,1.134420380493753205e-06,1.155428165317711660e-06,1.176435950141670116e-06,1.197443734965628571e-06,1.218451519789587027e-06,1.239459304613545482e-06,1.260467089437503938e-06,1.281474874261462393e-06,1.302482659085420848e-06,1.323490443909379304e-06 +0.000000000000000000e+00,1.908266174715076323e-08,3.816532349430152647e-08,5.724798524145228970e-08,7.633064698860305294e-08,9.541330873575382279e-08,1.144959704829045926e-07,1.335786322300553625e-07,1.526612939772061323e-07,1.717439557243569022e-07,1.908266174715076720e-07,2.099092792186584419e-07,2.289919409658092117e-07,2.480746027129600081e-07,2.671572644601107779e-07,2.862399262072615478e-07,3.053225879544123176e-07,3.244052497015630875e-07,3.434879114487138573e-07,3.625705731958646272e-07,3.816532349430153970e-07,4.007358966901661669e-07,4.198185584373169367e-07,4.389012201844677066e-07,4.579838819316184764e-07,4.770665436787692463e-07,4.961492054259200161e-07,5.152318671730707860e-07,5.343145289202215558e-07,5.533971906673723257e-07,5.724798524145230955e-07,5.915625141616738654e-07,6.106451759088246352e-07,6.297278376559754051e-07,6.488104994031261749e-07,6.678931611502769448e-07,6.869758228974277147e-07,7.060584846445784845e-07,7.251411463917292544e-07,7.442238081388800242e-07,7.633064698860307941e-07,7.823891316331815639e-07,8.014717933803323338e-07,8.205544551274831036e-07,8.396371168746338735e-07,8.587197786217846433e-07,8.778024403689354132e-07,8.968851021160861830e-07,9.159677638632369529e-07,9.350504256103877227e-07,9.541330873575384926e-07,9.732157491046891565e-07,9.922984108518398205e-07,1.011381072598990484e-06,1.030463734346141148e-06,1.049546396093291812e-06,1.068629057840442476e-06,1.087711719587593140e-06,1.106794381334743804e-06,1.125877043081894468e-06,1.144959704829045132e-06,1.164042366576195796e-06,1.183125028323346460e-06,1.202207690070497124e-06 +0.000000000000000000e+00,2.044405248721899362e-08,4.088810497443798724e-08,6.133215746165698747e-08,8.177620994887598771e-08,1.022202624360949879e-07,1.226643149233139749e-07,1.431083674105329619e-07,1.635524198977519489e-07,1.839964723849709359e-07,2.044405248721899229e-07,2.248845773594089099e-07,2.453286298466278969e-07,2.657726823338468839e-07,2.862167348210658709e-07,3.066607873082848579e-07,3.271048397955038450e-07,3.475488922827228320e-07,3.679929447699418190e-07,3.884369972571608060e-07,4.088810497443797930e-07,4.293251022315987800e-07,4.497691547188177670e-07,4.702132072060367540e-07,4.906572596932556880e-07,5.111013121804746221e-07,5.315453646676935561e-07,5.519894171549124902e-07,5.724334696421314243e-07,5.928775221293503583e-07,6.133215746165692924e-07,6.337656271037882264e-07,6.542096795910071605e-07,6.746537320782260946e-07,6.950977845654450286e-07,7.155418370526639627e-07,7.359858895398828967e-07,7.564299420271018308e-07,7.768739945143207649e-07,7.973180470015396989e-07,8.177620994887586330e-07,8.382061519759775671e-07,8.586502044631965011e-07,8.790942569504154352e-07,8.995383094376343692e-07,9.199823619248533033e-07,9.404264144120722374e-07,9.608704668992912773e-07,9.813145193865103172e-07,1.001758571873729357e-06,1.022202624360948397e-06,1.042646676848167437e-06,1.063090729335386477e-06,1.083534781822605517e-06,1.103978834309824557e-06,1.124422886797043597e-06,1.144866939284262637e-06,1.165310991771481677e-06,1.185755044258700717e-06,1.206199096745919757e-06,1.226643149233138797e-06,1.247087201720357836e-06,1.267531254207576876e-06,1.287975306694795916e-06 +0.000000000000000000e+00,2.062566161596459925e-08,4.125132323192919850e-08,6.187698484789379775e-08,8.250264646385839700e-08,1.031283080798229962e-07,1.237539696957875955e-07,1.443796313117521815e-07,1.650052929277167675e-07,1.856309545436813535e-07,2.062566161596459396e-07,2.268822777756105256e-07,2.475079393915751381e-07,2.681336010075397505e-07,2.887592626235043630e-07,3.093849242394689755e-07,3.300105858554335880e-07,3.506362474713982005e-07,3.712619090873628130e-07,3.918875707033274255e-07,4.125132323192920379e-07,4.331388939352566504e-07,4.537645555512212629e-07,4.743902171671858754e-07,4.950158787831504879e-07,5.156415403991150474e-07,5.362672020150796070e-07,5.568928636310441665e-07,5.775185252470087261e-07,5.981441868629732856e-07,6.187698484789378451e-07,6.393955100949024047e-07,6.600211717108669642e-07,6.806468333268315238e-07,7.012724949427960833e-07,7.218981565587606429e-07,7.425238181747252024e-07,7.631494797906897620e-07,7.837751414066543215e-07,8.044008030226188811e-07,8.250264646385834406e-07,8.456521262545480001e-07,8.662777878705125597e-07,8.869034494864771192e-07,9.075291111024416788e-07,9.281547727184062383e-07,9.487804343343707979e-07,9.694060959503353574e-07,9.900317575662999170e-07,1.010657419182264477e-06,1.031283080798229036e-06,1.051908742414193596e-06,1.072534404030158155e-06,1.093160065646122715e-06,1.113785727262087274e-06,1.134411388878051834e-06,1.155037050494016393e-06,1.175662712109980953e-06,1.196288373725945512e-06,1.216914035341910072e-06,1.237539696957874632e-06,1.258165358573839191e-06,1.278791020189803751e-06,1.299416681805768310e-06 +0.000000000000000000e+00,1.959679180157697668e-08,3.919358360315395337e-08,5.879037540473093336e-08,7.838716720630791997e-08,9.798395900788490658e-08,1.175807508094618932e-07,1.371775426110388666e-07,1.567743344126158399e-07,1.763711262141928133e-07,1.959679180157697867e-07,2.155647098173467601e-07,2.351615016189237334e-07,2.547582934205007068e-07,2.743550852220776802e-07,2.939518770236546536e-07,3.135486688252316269e-07,3.331454606268086003e-07,3.527422524283855737e-07,3.723390442299625471e-07,3.919358360315395204e-07,4.115326278331164938e-07,4.311294196346934672e-07,4.507262114362704405e-07,4.703230032378474139e-07,4.899197950394243873e-07,5.095165868410014136e-07,5.291133786425784399e-07,5.487101704441554662e-07,5.683069622457324926e-07,5.879037540473095189e-07,6.075005458488865452e-07,6.270973376504635715e-07,6.466941294520405978e-07,6.662909212536176241e-07,6.858877130551946504e-07,7.054845048567716768e-07,7.250812966583487031e-07,7.446780884599257294e-07,7.642748802615027557e-07,7.838716720630797820e-07,8.034684638646568083e-07,8.230652556662338346e-07,8.426620474678108609e-07,8.622588392693878873e-07,8.818556310709649136e-07,9.014524228725419399e-07,9.210492146741189662e-07,9.406460064756959925e-07,9.602427982772730188e-07,9.798395900788500451e-07,9.994363818804270715e-07,1.019033173682004098e-06,1.038629965483581124e-06,1.058226757285158150e-06,1.077823549086735177e-06,1.097420340888312203e-06,1.117017132689889229e-06,1.136613924491466256e-06,1.156210716293043282e-06,1.175807508094620308e-06,1.195404299896197335e-06,1.215001091697774361e-06,1.234597883499351387e-06 +0.000000000000000000e+00,2.100778482397053227e-08,4.201556964794106453e-08,6.302335447191160341e-08,8.403113929588214230e-08,1.050389241198526812e-07,1.260467089438232068e-07,1.470544937677937325e-07,1.680622785917642581e-07,1.890700634157347838e-07,2.100778482397053094e-07,2.310856330636758351e-07,2.520934178876463607e-07,2.731012027116168864e-07,2.941089875355874120e-07,3.151167723595579377e-07,3.361245571835284633e-07,3.571323420074989890e-07,3.781401268314695146e-07,3.991479116554400403e-07,4.201556964794105659e-07,4.411634813033810916e-07,4.621712661273516172e-07,4.831790509513220899e-07,5.041868357752926156e-07,5.251946205992631412e-07,5.462024054232336669e-07,5.672101902472041925e-07,5.882179750711747182e-07,6.092257598951452438e-07,6.302335447191157694e-07,6.512413295430862951e-07,6.722491143670568207e-07,6.932568991910273464e-07,7.142646840149978720e-07,7.352724688389683977e-07,7.562802536629389233e-07,7.772880384869094490e-07,7.982958233108799746e-07,8.193036081348505003e-07,8.403113929588210259e-07,8.613191777827915516e-07,8.823269626067620772e-07,9.033347474307326029e-07,9.243425322547031285e-07,9.453503170786736542e-07,9.663581019026441798e-07,9.873658867266147055e-07,1.008373671550585231e-06,1.029381456374555757e-06,1.050389241198526282e-06,1.071397026022496808e-06,1.092404810846467334e-06,1.113412595670437859e-06,1.134420380494408385e-06,1.155428165318378911e-06,1.176435950142349436e-06,1.197443734966319962e-06,1.218451519790290488e-06,1.239459304614261013e-06,1.260467089438231539e-06,1.281474874262202065e-06,1.302482659086172590e-06,1.323490443910143116e-06 +0.000000000000000000e+00,1.908266174716255221e-08,3.816532349432510442e-08,5.724798524148765995e-08,7.633064698865022208e-08,9.541330873581278422e-08,1.144959704829753464e-07,1.335786322301379217e-07,1.526612939773004971e-07,1.717439557244630725e-07,1.908266174716256479e-07,2.099092792187882232e-07,2.289919409659507986e-07,2.480746027131133740e-07,2.671572644602759493e-07,2.862399262074385247e-07,3.053225879546011001e-07,3.244052497017636755e-07,3.434879114489262508e-07,3.625705731960888262e-07,3.816532349432514016e-07,4.007358966904139770e-07,4.198185584375765523e-07,4.389012201847391277e-07,4.579838819319017031e-07,4.770665436790643314e-07,4.961492054262269597e-07,5.152318671733895880e-07,5.343145289205522163e-07,5.533971906677148446e-07,5.724798524148774730e-07,5.915625141620401013e-07,6.106451759092027296e-07,6.297278376563653579e-07,6.488104994035279862e-07,6.678931611506906145e-07,6.869758228978532428e-07,7.060584846450158711e-07,7.251411463921784995e-07,7.442238081393411278e-07,7.633064698865037561e-07,7.823891316336663844e-07,8.014717933808290127e-07,8.205544551279916410e-07,8.396371168751542693e-07,8.587197786223168976e-07,8.778024403694795260e-07,8.968851021166421543e-07,9.159677638638047826e-07,9.350504256109674109e-07,9.541330873581299333e-07,9.732157491052924558e-07,9.922984108524549782e-07,1.011381072599617501e-06,1.030463734346780023e-06,1.049546396093942545e-06,1.068629057841105068e-06,1.087711719588267590e-06,1.106794381335430113e-06,1.125877043082592635e-06,1.144959704829755158e-06,1.164042366576917680e-06,1.183125028324080203e-06,1.202207690071242725e-06 +0.000000000000000000e+00,2.044405248723148405e-08,4.088810497446296809e-08,6.133215746169445544e-08,8.177620994892594942e-08,1.022202624361574434e-07,1.226643149233889374e-07,1.431083674106204181e-07,1.635524198978518988e-07,1.839964723850833796e-07,2.044405248723148603e-07,2.248845773595463410e-07,2.453286298467778218e-07,2.657726823340093025e-07,2.862167348212407833e-07,3.066607873084722640e-07,3.271048397957037447e-07,3.475488922829352255e-07,3.679929447701667062e-07,3.884369972573981869e-07,4.088810497446296677e-07,4.293251022318611484e-07,4.497691547190926291e-07,4.702132072063241099e-07,4.906572596935555377e-07,5.111013121807869655e-07,5.315453646680183933e-07,5.519894171552498211e-07,5.724334696424812489e-07,5.928775221297126767e-07,6.133215746169441045e-07,6.337656271041755323e-07,6.542096795914069601e-07,6.746537320786383879e-07,6.950977845658698157e-07,7.155418370531012434e-07,7.359858895403326712e-07,7.564299420275640990e-07,7.768739945147955268e-07,7.973180470020269546e-07,8.177620994892583824e-07,8.382061519764898102e-07,8.586502044637212380e-07,8.790942569509526658e-07,8.995383094381840936e-07,9.199823619254155214e-07,9.404264144126469492e-07,9.608704668998782711e-07,9.813145193871095931e-07,1.001758571874340915e-06,1.022202624361572237e-06,1.042646676848803559e-06,1.063090729336034881e-06,1.083534781823266203e-06,1.103978834310497525e-06,1.124422886797728846e-06,1.144866939284960168e-06,1.165310991772191490e-06,1.185755044259422812e-06,1.206199096746654134e-06,1.226643149233885456e-06,1.247087201721116778e-06,1.267531254208348100e-06,1.287975306695579422e-06 +0.000000000000000000e+00,2.062566161597642462e-08,4.125132323195284925e-08,6.187698484792928049e-08,8.250264646390571173e-08,1.031283080798821430e-07,1.237539696958585610e-07,1.443796313118349790e-07,1.650052929278113970e-07,1.856309545437878150e-07,2.062566161597642330e-07,2.268822777757406510e-07,2.475079393917170690e-07,2.681336010076934870e-07,2.887592626236699050e-07,3.093849242396463230e-07,3.300105858556227410e-07,3.506362474715991591e-07,3.712619090875755771e-07,3.918875707035519951e-07,4.125132323195284131e-07,4.331388939355048311e-07,4.537645555514812491e-07,4.743902171674576671e-07,4.950158787834340322e-07,5.156415403994104502e-07,5.362672020153868682e-07,5.568928636313632862e-07,5.775185252473397042e-07,5.981441868633161222e-07,6.187698484792925402e-07,6.393955100952689582e-07,6.600211717112453762e-07,6.806468333272217942e-07,7.012724949431982122e-07,7.218981565591746302e-07,7.425238181751510482e-07,7.631494797911274662e-07,7.837751414071038842e-07,8.044008030230803023e-07,8.250264646390567203e-07,8.456521262550331383e-07,8.662777878710095563e-07,8.869034494869859743e-07,9.075291111029623923e-07,9.281547727189388103e-07,9.487804343349152283e-07,9.694060959508916463e-07,9.900317575668680643e-07,1.010657419182844482e-06,1.031283080798820900e-06,1.051908742414797318e-06,1.072534404030773736e-06,1.093160065646750154e-06,1.113785727262726572e-06,1.134411388878702990e-06,1.155037050494679408e-06,1.175662712110655826e-06,1.196288373726632244e-06,1.216914035342608662e-06,1.237539696958585080e-06,1.258165358574561498e-06,1.278791020190537916e-06,1.299416681806514334e-06 +0.000000000000000000e+00,2.069199564610760273e-08,4.138399129221520546e-08,6.207598693832280488e-08,8.276798258443039769e-08,1.034599782305379905e-07,1.241519738766455833e-07,1.448439695227531761e-07,1.655359651688607689e-07,1.862279608149683617e-07,2.069199564610759545e-07,2.276119521071835473e-07,2.483039477532911137e-07,2.689959433993986800e-07,2.896879390455062463e-07,3.103799346916138127e-07,3.310719303377213790e-07,3.517639259838289453e-07,3.724559216299365117e-07,3.931479172760440780e-07,4.138399129221516443e-07,4.345319085682592107e-07,4.552239042143667770e-07,4.759158998604743433e-07,4.966078955065819097e-07,5.172998911526894760e-07,5.379918867987970423e-07,5.586838824449046087e-07,5.793758780910121750e-07,6.000678737371197413e-07,6.207598693832273077e-07,6.414518650293348740e-07,6.621438606754424403e-07,6.828358563215500067e-07,7.035278519676575730e-07,7.242198476137651393e-07,7.449118432598727057e-07,7.656038389059802720e-07,7.862958345520878383e-07,8.069878301981954047e-07,8.276798258443029710e-07,8.483718214904105374e-07,8.690638171365181037e-07,8.897558127826256700e-07,9.104478084287332364e-07,9.311398040748408027e-07,9.518317997209483690e-07,9.725237953670558295e-07,9.932157910131631841e-07,1.013907786659270539e-06,1.034599782305377893e-06,1.055291777951485248e-06,1.075983773597592602e-06,1.096675769243699957e-06,1.117367764889807312e-06,1.138059760535914666e-06,1.158751756182022021e-06,1.179443751828129375e-06,1.200135747474236730e-06,1.220827743120344084e-06,1.241519738766451439e-06,1.262211734412558794e-06,1.282903730058666148e-06,1.303595725704773503e-06 +0.000000000000000000e+00,2.225274913185808563e-08,4.450549826371617127e-08,6.675824739557425028e-08,8.901099652743232930e-08,1.112637456592904083e-07,1.335164947911485006e-07,1.557692439230065928e-07,1.780219930548646851e-07,2.002747421867227773e-07,2.225274913185808696e-07,2.447802404504389618e-07,2.670329895822970541e-07,2.892857387141551463e-07,3.115384878460132386e-07,3.337912369778713308e-07,3.560439861097294231e-07,3.782967352415875153e-07,4.005494843734456076e-07,4.228022335053036998e-07,4.450549826371617921e-07,4.673077317690198843e-07,4.895604809008779236e-07,5.118132300327359630e-07,5.340659791645940023e-07,5.563187282964520416e-07,5.785714774283100809e-07,6.008242265601681202e-07,6.230769756920261595e-07,6.453297248238841988e-07,6.675824739557422381e-07,6.898352230876002774e-07,7.120879722194583168e-07,7.343407213513163561e-07,7.565934704831743954e-07,7.788462196150324347e-07,8.010989687468904740e-07,8.233517178787485133e-07,8.456044670106065526e-07,8.678572161424645919e-07,8.901099652743226312e-07,9.123627144061806706e-07,9.346154635380387099e-07,9.568682126698967492e-07,9.791209618017547885e-07,1.001373710933612828e-06,1.023626460065470867e-06,1.045879209197328906e-06,1.068131958329186946e-06,1.090384707461044985e-06,1.112637456592903024e-06,1.134890205724761064e-06,1.157142954856619103e-06,1.179395703988477142e-06,1.201648453120335182e-06,1.223901202252193221e-06,1.246153951384051260e-06,1.268406700515909300e-06,1.290659449647767339e-06,1.312912198779625378e-06,1.335164947911483417e-06,1.357417697043341457e-06,1.379670446175199496e-06,1.401923195307057535e-06 +0.000000000000000000e+00,2.013617202558388341e-08,4.027234405116776682e-08,6.040851607675165354e-08,8.054468810233554688e-08,1.006808601279194402e-07,1.208170321535033336e-07,1.409532041790872269e-07,1.610893762046711202e-07,1.812255482302550136e-07,2.013617202558389069e-07,2.214978922814228002e-07,2.416340643070067200e-07,2.617702363325906663e-07,2.819064083581746126e-07,3.020425803837585589e-07,3.221787524093425052e-07,3.423149244349264514e-07,3.624510964605103977e-07,3.825872684860943440e-07,4.027234405116782903e-07,4.228596125372622365e-07,4.429957845628461828e-07,4.631319565884301291e-07,4.832681286140140754e-07,5.034043006395980217e-07,5.235404726651819679e-07,5.436766446907659142e-07,5.638128167163498605e-07,5.839489887419338068e-07,6.040851607675177530e-07,6.242213327931016993e-07,6.443575048186856456e-07,6.644936768442695919e-07,6.846298488698535381e-07,7.047660208954374844e-07,7.249021929210214307e-07,7.450383649466053770e-07,7.651745369721893233e-07,7.853107089977732695e-07,8.054468810233572158e-07,8.255830530489411621e-07,8.457192250745251084e-07,8.658553971001090546e-07,8.859915691256930009e-07,9.061277411512769472e-07,9.262639131768608935e-07,9.464000852024448397e-07,9.665362572280287860e-07,9.866724292536127323e-07,1.006808601279196679e-06,1.026944773304780625e-06,1.047080945330364571e-06,1.067217117355948517e-06,1.087353289381532464e-06,1.107489461407116410e-06,1.127625633432700356e-06,1.147761805458284303e-06,1.167897977483868249e-06,1.188034149509452195e-06,1.208170321535036141e-06,1.228306493560620088e-06,1.248442665586204034e-06,1.268578837611787980e-06 +0.000000000000000000e+00,2.161185475421596860e-08,4.322370950843193721e-08,6.483556426264790251e-08,8.644741901686386118e-08,1.080592737710798199e-07,1.296711285252957785e-07,1.512829832795117505e-07,1.728948380337277224e-07,1.945066927879436943e-07,2.161185475421596662e-07,2.377304022963756381e-07,2.593422570505916100e-07,2.809541118048075819e-07,3.025659665590235539e-07,3.241778213132395258e-07,3.457896760674554977e-07,3.674015308216714696e-07,3.890133855758874415e-07,4.106252403301034134e-07,4.322370950843193853e-07,4.538489498385353572e-07,4.754608045927513292e-07,4.970726593469672481e-07,5.186845141011831142e-07,5.402963688553989802e-07,5.619082236096148462e-07,5.835200783638307123e-07,6.051319331180465783e-07,6.267437878722624443e-07,6.483556426264783104e-07,6.699674973806941764e-07,6.915793521349100424e-07,7.131912068891259085e-07,7.348030616433417745e-07,7.564149163975576405e-07,7.780267711517735066e-07,7.996386259059893726e-07,8.212504806602052387e-07,8.428623354144211047e-07,8.644741901686369707e-07,8.860860449228528368e-07,9.076978996770687028e-07,9.293097544312845688e-07,9.509216091855004349e-07,9.725334639397163009e-07,9.941453186939321669e-07,1.015757173448148033e-06,1.037369028202363899e-06,1.058980882956579765e-06,1.080592737710795631e-06,1.102204592465011497e-06,1.123816447219227363e-06,1.145428301973443229e-06,1.167040156727659095e-06,1.188652011481874961e-06,1.210263866236090827e-06,1.231875720990306693e-06,1.253487575744522559e-06,1.275099430498738425e-06,1.296711285252954291e-06,1.318323140007170157e-06,1.339934994761386023e-06,1.361546849515601890e-06 +0.000000000000000000e+00,2.182914589102855291e-08,4.365829178205710582e-08,6.548743767308565872e-08,8.731658356411421163e-08,1.091457294551427645e-07,1.309748753461713174e-07,1.528040212371998704e-07,1.746331671282284233e-07,1.964623130192569762e-07,2.182914589102855291e-07,2.401206048013140555e-07,2.619497506923425820e-07,2.837788965833711084e-07,3.056080424743996348e-07,3.274371883654281613e-07,3.492663342564566877e-07,3.710954801474852141e-07,3.929246260385137406e-07,4.147537719295422670e-07,4.365829178205707935e-07,4.584120637115993199e-07,4.802412096026278993e-07,5.020703554936564787e-07,5.238995013846850580e-07,5.457286472757136374e-07,5.675577931667422168e-07,5.893869390577707962e-07,6.112160849487993755e-07,6.330452308398279549e-07,6.548743767308565343e-07,6.767035226218851137e-07,6.985326685129136930e-07,7.203618144039422724e-07,7.421909602949708518e-07,7.640201061859994312e-07,7.858492520770280106e-07,8.076783979680565899e-07,8.295075438590851693e-07,8.513366897501137487e-07,8.731658356411423281e-07,8.949949815321709074e-07,9.168241274231994868e-07,9.386532733142280662e-07,9.604824192052566456e-07,9.823115650962852250e-07,1.004140710987313804e-06,1.025969856878342384e-06,1.047799002769370963e-06,1.069628148660399542e-06,1.091457294551428122e-06,1.113286440442456701e-06,1.135115586333485281e-06,1.156944732224513860e-06,1.178773878115542439e-06,1.200603024006571019e-06,1.222432169897599598e-06,1.244261315788628177e-06,1.266090461679656757e-06,1.287919607570685336e-06,1.309748753461713916e-06,1.331577899352742495e-06,1.353407045243771074e-06,1.375236191134799654e-06 +0.000000000000000000e+00,2.069199564611813770e-08,4.138399129223627541e-08,6.207598693835440980e-08,8.276798258447253758e-08,1.034599782305906654e-07,1.241519738767087931e-07,1.448439695228269209e-07,1.655359651689450487e-07,1.862279608150631765e-07,2.069199564611813042e-07,2.276119521072994320e-07,2.483039477534175333e-07,2.689959433995356346e-07,2.896879390456537359e-07,3.103799346917718372e-07,3.310719303378899385e-07,3.517639259840080399e-07,3.724559216301261412e-07,3.931479172762442425e-07,4.138399129223623438e-07,4.345319085684804451e-07,4.552239042145985464e-07,4.759158998607166477e-07,4.966078955068347490e-07,5.172998911529527974e-07,5.379918867990708457e-07,5.586838824451888941e-07,5.793758780913069425e-07,6.000678737374249908e-07,6.207598693835430392e-07,6.414518650296610876e-07,6.621438606757791359e-07,6.828358563218971843e-07,7.035278519680152327e-07,7.242198476141332810e-07,7.449118432602513294e-07,7.656038389063693778e-07,7.862958345524874261e-07,8.069878301986054745e-07,8.276798258447235229e-07,8.483718214908415712e-07,8.690638171369596196e-07,8.897558127830776680e-07,9.104478084291957163e-07,9.311398040753137647e-07,9.518317997214318131e-07,9.725237953675498614e-07,9.932157910136680157e-07,1.013907786659786170e-06,1.034599782305904324e-06,1.055291777952022478e-06,1.075983773598140633e-06,1.096675769244258787e-06,1.117367764890376941e-06,1.138059760536495095e-06,1.158751756182613250e-06,1.179443751828731404e-06,1.200135747474849558e-06,1.220827743120967712e-06,1.241519738767085867e-06,1.262211734413204021e-06,1.282903730059322175e-06,1.303595725705440329e-06 +0.000000000000000000e+00,2.225274913186948418e-08,4.450549826373896836e-08,6.675824739560844924e-08,8.901099652747792349e-08,1.112637456593473978e-07,1.335164947912168720e-07,1.557692439230863463e-07,1.780219930549558205e-07,2.002747421868252948e-07,2.225274913186947690e-07,2.447802404505642168e-07,2.670329895824336911e-07,2.892857387143031653e-07,3.115384878461726396e-07,3.337912369780421138e-07,3.560439861099115881e-07,3.782967352417810624e-07,4.005494843736505366e-07,4.228022335055200109e-07,4.450549826373894851e-07,4.673077317692589594e-07,4.895604809011284336e-07,5.118132300329979079e-07,5.340659791648673821e-07,5.563187282967368564e-07,5.785714774286063307e-07,6.008242265604758049e-07,6.230769756923452792e-07,6.453297248242147534e-07,6.675824739560842277e-07,6.898352230879537019e-07,7.120879722198231762e-07,7.343407213516926505e-07,7.565934704835621247e-07,7.788462196154315990e-07,8.010989687473010732e-07,8.233517178791705475e-07,8.456044670110400217e-07,8.678572161429094960e-07,8.901099652747789702e-07,9.123627144066484445e-07,9.346154635385179188e-07,9.568682126703873930e-07,9.791209618022568673e-07,1.001373710934126342e-06,1.023626460065995816e-06,1.045879209197865290e-06,1.068131958329734764e-06,1.090384707461604239e-06,1.112637456593473713e-06,1.134890205725343187e-06,1.157142954857212661e-06,1.179395703989082136e-06,1.201648453120951610e-06,1.223901202252821084e-06,1.246153951384690558e-06,1.268406700516560033e-06,1.290659449648429507e-06,1.312912198780298981e-06,1.335164947912168455e-06,1.357417697044037930e-06,1.379670446175907404e-06,1.401923195307776878e-06 +0.000000000000000000e+00,2.013617202559473602e-08,4.027234405118947204e-08,6.040851607678421137e-08,8.054468810237895732e-08,1.006808601279737033e-07,1.208170321535684492e-07,1.409532041791631952e-07,1.610893762047579411e-07,1.812255482303526871e-07,2.013617202559474330e-07,2.214978922815421789e-07,2.416340643071369514e-07,2.617702363327316973e-07,2.819064083583264433e-07,3.020425803839211892e-07,3.221787524095159352e-07,3.423149244351106811e-07,3.624510964607054270e-07,3.825872684863001730e-07,4.027234405118949189e-07,4.228596125374896649e-07,4.429957845630844108e-07,4.631319565886791568e-07,4.832681286142739027e-07,5.034043006398686487e-07,5.235404726654633946e-07,5.436766446910581406e-07,5.638128167166528865e-07,5.839489887422476325e-07,6.040851607678423784e-07,6.242213327934371244e-07,6.443575048190318703e-07,6.644936768446266163e-07,6.846298488702213622e-07,7.047660208958161081e-07,7.249021929214108541e-07,7.450383649470056000e-07,7.651745369726003460e-07,7.853107089981950919e-07,8.054468810237898379e-07,8.255830530493845838e-07,8.457192250749793298e-07,8.658553971005740757e-07,8.859915691261688217e-07,9.061277411517635676e-07,9.262639131773583136e-07,9.464000852029530595e-07,9.665362572285478055e-07,9.866724292541425514e-07,1.006808601279737297e-06,1.026944773305332043e-06,1.047080945330926789e-06,1.067217117356521535e-06,1.087353289382116281e-06,1.107489461407711027e-06,1.127625633433305773e-06,1.147761805458900519e-06,1.167897977484495265e-06,1.188034149510090011e-06,1.208170321535684757e-06,1.228306493561279503e-06,1.248442665586874249e-06,1.268578837612468995e-06 +0.000000000000000000e+00,2.161185475422769472e-08,4.322370950845538943e-08,6.483556426268308084e-08,8.644741901691076563e-08,1.080592737711384504e-07,1.296711285253661352e-07,1.512829832795938068e-07,1.728948380338214783e-07,1.945066927880491499e-07,2.161185475422768214e-07,2.377304022965044930e-07,2.593422570507321646e-07,2.809541118049598361e-07,3.025659665591875077e-07,3.241778213134151792e-07,3.457896760676428508e-07,3.674015308218705223e-07,3.890133855760981939e-07,4.106252403303258654e-07,4.322370950845535370e-07,4.538489498387812086e-07,4.754608045930088801e-07,4.970726593472366046e-07,5.186845141014643291e-07,5.402963688556920536e-07,5.619082236099197781e-07,5.835200783641475026e-07,6.051319331183752271e-07,6.267437878726029516e-07,6.483556426268306761e-07,6.699674973810584006e-07,6.915793521352861251e-07,7.131912068895138496e-07,7.348030616437415741e-07,7.564149163979692986e-07,7.780267711521970231e-07,7.996386259064247476e-07,8.212504806606524720e-07,8.428623354148801965e-07,8.644741901691079210e-07,8.860860449233356455e-07,9.076978996775633700e-07,9.293097544317910945e-07,9.509216091860188190e-07,9.725334639402465435e-07,9.941453186944742680e-07,1.015757173448701993e-06,1.037369028202929717e-06,1.058980882957157442e-06,1.080592737711385166e-06,1.102204592465612890e-06,1.123816447219840615e-06,1.145428301974068339e-06,1.167040156728296064e-06,1.188652011482523788e-06,1.210263866236751513e-06,1.231875720990979237e-06,1.253487575745206962e-06,1.275099430499434686e-06,1.296711285253662411e-06,1.318323140007890135e-06,1.339934994762117860e-06,1.361546849516345584e-06 +0.000000000000000000e+00,2.182914589103970661e-08,4.365829178207941322e-08,6.548743767311911652e-08,8.731658356415881321e-08,1.091457294551985099e-07,1.309748753462382066e-07,1.528040212372779033e-07,1.746331671283175999e-07,1.964623130193572966e-07,2.182914589103969933e-07,2.401206048014366635e-07,2.619497506924763602e-07,2.837788965835160569e-07,3.056080424745557536e-07,3.274371883655954503e-07,3.492663342566351470e-07,3.710954801476748436e-07,3.929246260387145403e-07,4.147537719297542370e-07,4.365829178207939337e-07,4.584120637118336304e-07,4.802412096028733271e-07,5.020703554939130238e-07,5.238995013849527204e-07,5.457286472759924171e-07,5.675577931670321138e-07,5.893869390580718105e-07,6.112160849491115072e-07,6.330452308401512039e-07,6.548743767311909006e-07,6.767035226222305972e-07,6.985326685132702939e-07,7.203618144043099906e-07,7.421909602953496873e-07,7.640201061863893840e-07,7.858492520774290807e-07,8.076783979684687773e-07,8.295075438595084740e-07,8.513366897505481707e-07,8.731658356415878674e-07,8.949949815326275641e-07,9.168241274236672608e-07,9.386532733147069575e-07,9.604824192057466541e-07,9.823115650967864567e-07,1.004140710987826259e-06,1.025969856878866062e-06,1.047799002769905864e-06,1.069628148660945667e-06,1.091457294551985470e-06,1.113286440443025272e-06,1.135115586334065075e-06,1.156944732225104877e-06,1.178773878116144680e-06,1.200603024007184482e-06,1.222432169898224285e-06,1.244261315789264087e-06,1.266090461680303890e-06,1.287919607571343693e-06,1.309748753462383495e-06,1.331577899353423298e-06,1.353407045244463100e-06,1.375236191135502903e-06 +0.000000000000000000e+00,2.181042690264336832e-08,4.362085380528673664e-08,6.543128070793010827e-08,8.724170761057348652e-08,1.090521345132168648e-07,1.308625614158602430e-07,1.526729883185036213e-07,1.744834152211469995e-07,1.962938421237903778e-07,2.181042690264337560e-07,2.399146959290771607e-07,2.617251228317205390e-07,2.835355497343639172e-07,3.053459766370072955e-07,3.271564035396506737e-07,3.489668304422940520e-07,3.707772573449374302e-07,3.925876842475808085e-07,4.143981111502241867e-07,4.362085380528675650e-07,4.580189649555109432e-07,4.798293918581543214e-07,5.016398187607976997e-07,5.234502456634410779e-07,5.452606725660844562e-07,5.670710994687278344e-07,5.888815263713712127e-07,6.106919532740145909e-07,6.325023801766579692e-07,6.543128070793013474e-07,6.761232339819447257e-07,6.979336608845881039e-07,7.197440877872314822e-07,7.415545146898748604e-07,7.633649415925182387e-07,7.851753684951616169e-07,8.069857953978049952e-07,8.287962223004483734e-07,8.506066492030917517e-07,8.724170761057351299e-07,8.942275030083785081e-07,9.160379299110218864e-07,9.378483568136652646e-07,9.596587837163086429e-07,9.814692106189521270e-07,1.003279637521595611e-06,1.025090064424239095e-06,1.046900491326882579e-06,1.068710918229526064e-06,1.090521345132169548e-06,1.112331772034813032e-06,1.134142198937456516e-06,1.155952625840100000e-06,1.177763052742743484e-06,1.199573479645386968e-06,1.221383906548030452e-06,1.243194333450673937e-06,1.265004760353317421e-06,1.286815187255960905e-06,1.308625614158604389e-06,1.330436041061247873e-06,1.352246467963891357e-06,1.374056894866534841e-06 +0.000000000000000000e+00,2.359176680938617280e-08,4.718353361877234559e-08,7.077530042815851839e-08,9.436706723754469119e-08,1.179588340469308640e-07,1.415506008563170368e-07,1.651423676657032228e-07,1.887341344750894088e-07,2.123259012844755949e-07,2.359176680938617809e-07,2.595094349032479669e-07,2.831012017126341265e-07,3.066929685220202861e-07,3.302847353314064456e-07,3.538765021407926052e-07,3.774682689501787648e-07,4.010600357595649243e-07,4.246518025689510839e-07,4.482435693783372434e-07,4.718353361877234030e-07,4.954271029971096155e-07,5.190188698064958280e-07,5.426106366158820405e-07,5.662024034252682530e-07,5.897941702346544655e-07,6.133859370440406780e-07,6.369777038534268905e-07,6.605694706628131030e-07,6.841612374721993155e-07,7.077530042815855280e-07,7.313447710909717405e-07,7.549365379003579530e-07,7.785283047097441655e-07,8.021200715191303780e-07,8.257118383285165905e-07,8.493036051379028030e-07,8.728953719472890155e-07,8.964871387566752280e-07,9.200789055660614405e-07,9.436706723754476530e-07,9.672624391848338655e-07,9.908542059942200780e-07,1.014445972803606291e-06,1.038037739612992503e-06,1.061629506422378716e-06,1.085221273231764928e-06,1.108813040041151141e-06,1.132404806850537353e-06,1.155996573659923566e-06,1.179588340469309778e-06,1.203180107278695991e-06,1.226771874088082203e-06,1.250363640897468416e-06,1.273955407706854628e-06,1.297547174516240841e-06,1.321138941325627053e-06,1.344730708135013266e-06,1.368322474944399478e-06,1.391914241753785691e-06,1.415506008563171903e-06,1.439097775372558116e-06,1.462689542181944328e-06,1.486281308991330541e-06 +0.000000000000000000e+00,2.125303106135985922e-08,4.250606212271971844e-08,6.375909318407958427e-08,8.501212424543945011e-08,1.062651553067993159e-07,1.275181863681591685e-07,1.487712174295190211e-07,1.700242484908788737e-07,1.912772795522387263e-07,2.125303106135985789e-07,2.337833416749584315e-07,2.550363727363182841e-07,2.762894037976781367e-07,2.975424348590379893e-07,3.187954659203978419e-07,3.400484969817576945e-07,3.613015280431175471e-07,3.825545591044773997e-07,4.038075901658372523e-07,4.250606212271971049e-07,4.463136522885569575e-07,4.675666833499168102e-07,4.888197144112766628e-07,5.100727454726364624e-07,5.313257765339962621e-07,5.525788075953560617e-07,5.738318386567158614e-07,5.950848697180756611e-07,6.163379007794354607e-07,6.375909318407952604e-07,6.588439629021550600e-07,6.800969939635148597e-07,7.013500250248746594e-07,7.226030560862344590e-07,7.438560871475942587e-07,7.651091182089540583e-07,7.863621492703138580e-07,8.076151803316736577e-07,8.288682113930334573e-07,8.501212424543932570e-07,8.713742735157530566e-07,8.926273045771128563e-07,9.138803356384726560e-07,9.351333666998324556e-07,9.563863977611922553e-07,9.776394288225520550e-07,9.988924598839118546e-07,1.020145490945271654e-06,1.041398522006631454e-06,1.062651553067991254e-06,1.083904584129351053e-06,1.105157615190710853e-06,1.126410646252070653e-06,1.147663677313430452e-06,1.168916708374790252e-06,1.190169739436150052e-06,1.211422770497509851e-06,1.232675801558869651e-06,1.253928832620229451e-06,1.275181863681589250e-06,1.296434894742949050e-06,1.317687925804308850e-06,1.338940956865668649e-06 +0.000000000000000000e+00,2.291455351896973828e-08,4.582910703793947655e-08,6.874366055690921483e-08,9.165821407587895311e-08,1.145727675948486914e-07,1.374873211138184297e-07,1.604018746327881679e-07,1.833164281517579062e-07,2.062309816707276445e-07,2.291455351896973828e-07,2.520600887086670946e-07,2.749746422276368064e-07,2.978891957466065182e-07,3.208037492655762300e-07,3.437183027845459418e-07,3.666328563035156536e-07,3.895474098224853654e-07,4.124619633414550772e-07,4.353765168604247890e-07,4.582910703793945008e-07,4.812056238983642126e-07,5.041201774173339774e-07,5.270347309363037421e-07,5.499492844552735069e-07,5.728638379742432716e-07,5.957783914932130364e-07,6.186929450121828011e-07,6.416074985311525659e-07,6.645220520501223306e-07,6.874366055690920953e-07,7.103511590880618601e-07,7.332657126070316248e-07,7.561802661260013896e-07,7.790948196449711543e-07,8.020093731639409191e-07,8.249239266829106838e-07,8.478384802018804486e-07,8.707530337208502133e-07,8.936675872398199781e-07,9.165821407587897428e-07,9.394966942777595076e-07,9.624112477967292723e-07,9.853258013156989312e-07,1.008240354834668590e-06,1.031154908353638249e-06,1.054069461872607908e-06,1.076984015391577567e-06,1.099898568910547226e-06,1.122813122429516884e-06,1.145727675948486543e-06,1.168642229467456202e-06,1.191556782986425861e-06,1.214471336505395520e-06,1.237385890024365179e-06,1.260300443543334838e-06,1.283214997062304496e-06,1.306129550581274155e-06,1.329044104100243814e-06,1.351958657619213473e-06,1.374873211138183132e-06,1.397787764657152791e-06,1.420702318176122450e-06,1.443616871695092109e-06 +0.000000000000000000e+00,2.310799309630369742e-08,4.621598619260739484e-08,6.932397928891108895e-08,9.243197238521477644e-08,1.155399654815184639e-07,1.386479585778221514e-07,1.617559516741258521e-07,1.848639447704295529e-07,2.079719378667332536e-07,2.310799309630369543e-07,2.541879240593406551e-07,2.772959171556443558e-07,3.004039102519480565e-07,3.235119033482517572e-07,3.466198964445554580e-07,3.697278895408591587e-07,3.928358826371628594e-07,4.159438757334665601e-07,4.390518688297702609e-07,4.621598619260739616e-07,4.852678550223776623e-07,5.083758481186813101e-07,5.314838412149849579e-07,5.545918343112886057e-07,5.776998274075922535e-07,6.008078205038959013e-07,6.239158136001995491e-07,6.470238066965031968e-07,6.701317997928068446e-07,6.932397928891104924e-07,7.163477859854141402e-07,7.394557790817177880e-07,7.625637721780214358e-07,7.856717652743250836e-07,8.087797583706287314e-07,8.318877514669323791e-07,8.549957445632360269e-07,8.781037376595396747e-07,9.012117307558433225e-07,9.243197238521469703e-07,9.474277169484506181e-07,9.705357100447542659e-07,9.936437031410580195e-07,1.016751696237361773e-06,1.039859689333665527e-06,1.062967682429969281e-06,1.086075675526273034e-06,1.109183668622576788e-06,1.132291661718880542e-06,1.155399654815184295e-06,1.178507647911488049e-06,1.201615641007791803e-06,1.224723634104095556e-06,1.247831627200399310e-06,1.270939620296703064e-06,1.294047613393006817e-06,1.317155606489310571e-06,1.340263599585614325e-06,1.363371592681918078e-06,1.386479585778221832e-06,1.409587578874525586e-06,1.432695571970829339e-06,1.455803565067133093e-06 +0.000000000000000000e+00,2.181042690265391984e-08,4.362085380530783967e-08,6.543128070796176613e-08,8.724170761061569258e-08,1.090521345132696190e-07,1.308625614159235323e-07,1.526729883185774455e-07,1.744834152212313587e-07,1.962938421238852719e-07,2.181042690265391851e-07,2.399146959291930984e-07,2.617251228318470116e-07,2.835355497345009248e-07,3.053459766371548380e-07,3.271564035398087512e-07,3.489668304424626645e-07,3.707772573451165777e-07,3.925876842477704909e-07,4.143981111504244041e-07,4.362085380530783173e-07,4.580189649557322306e-07,4.798293918583861967e-07,5.016398187610401629e-07,5.234502456636941290e-07,5.452606725663480952e-07,5.670710994690020614e-07,5.888815263716560275e-07,6.106919532743099937e-07,6.325023801769639598e-07,6.543128070796179260e-07,6.761232339822718921e-07,6.979336608849258583e-07,7.197440877875798245e-07,7.415545146902337906e-07,7.633649415928877568e-07,7.851753684955417229e-07,8.069857953981956891e-07,8.287962223008496553e-07,8.506066492035036214e-07,8.724170761061575876e-07,8.942275030088115537e-07,9.160379299114655199e-07,9.378483568141194861e-07,9.596587837167734522e-07,9.814692106194273125e-07,1.003279637522081173e-06,1.025090064424735033e-06,1.046900491327388893e-06,1.068710918230042754e-06,1.090521345132696614e-06,1.112331772035350474e-06,1.134142198938004334e-06,1.155952625840658195e-06,1.177763052743312055e-06,1.199573479645965915e-06,1.221383906548619776e-06,1.243194333451273636e-06,1.265004760353927496e-06,1.286815187256581356e-06,1.308625614159235217e-06,1.330436041061889077e-06,1.352246467964542937e-06,1.374056894867196798e-06 +0.000000000000000000e+00,2.359176680939706511e-08,4.718353361879413022e-08,7.077530042819119533e-08,9.436706723758826045e-08,1.179588340469853256e-07,1.415506008563823907e-07,1.651423676657794558e-07,1.887341344751765209e-07,2.123259012845735860e-07,2.359176680939706511e-07,2.595094349033677162e-07,2.831012017127647813e-07,3.066929685221618464e-07,3.302847353315589116e-07,3.538765021409559767e-07,3.774682689503530418e-07,4.010600357597501069e-07,4.246518025691471720e-07,4.482435693785442371e-07,4.718353361879413022e-07,4.954271029973383144e-07,5.190188698067353266e-07,5.426106366161323387e-07,5.662024034255293509e-07,5.897941702349263631e-07,6.133859370443233753e-07,6.369777038537203874e-07,6.605694706631173996e-07,6.841612374725144118e-07,7.077530042819114239e-07,7.313447710913084361e-07,7.549365379007054483e-07,7.785283047101024605e-07,8.021200715194994726e-07,8.257118383288964848e-07,8.493036051382934970e-07,8.728953719476905092e-07,8.964871387570875213e-07,9.200789055664845335e-07,9.436706723758815457e-07,9.672624391852785578e-07,9.908542059946755700e-07,1.014445972804072582e-06,1.038037739613469594e-06,1.061629506422866607e-06,1.085221273232263619e-06,1.108813040041660631e-06,1.132404806851057643e-06,1.155996573660454655e-06,1.179588340469851667e-06,1.203180107279248680e-06,1.226771874088645692e-06,1.250363640898042704e-06,1.273955407707439716e-06,1.297547174516836728e-06,1.321138941326233740e-06,1.344730708135630753e-06,1.368322474945027765e-06,1.391914241754424777e-06,1.415506008563821789e-06,1.439097775373218801e-06,1.462689542182615813e-06,1.486281308992012826e-06 +0.000000000000000000e+00,2.125303106137038096e-08,4.250606212274076191e-08,6.375909318411113625e-08,8.501212424548151059e-08,1.062651553068518849e-07,1.275181863682222725e-07,1.487712174295926601e-07,1.700242484909630476e-07,1.912772795523334352e-07,2.125303106137038228e-07,2.337833416750742104e-07,2.550363727364445979e-07,2.762894037978149855e-07,2.975424348591853731e-07,3.187954659205557607e-07,3.400484969819261482e-07,3.613015280432965358e-07,3.825545591046669234e-07,4.038075901660373109e-07,4.250606212274076985e-07,4.463136522887780861e-07,4.675666833501484737e-07,4.888197144115189142e-07,5.100727454728893017e-07,5.313257765342596893e-07,5.525788075956300769e-07,5.738318386570004645e-07,5.950848697183708520e-07,6.163379007797412396e-07,6.375909318411116272e-07,6.588439629024820148e-07,6.800969939638524023e-07,7.013500250252227899e-07,7.226030560865931775e-07,7.438560871479635650e-07,7.651091182093339526e-07,7.863621492707043402e-07,8.076151803320747278e-07,8.288682113934451153e-07,8.501212424548155029e-07,8.713742735161858905e-07,8.926273045775562781e-07,9.138803356389266656e-07,9.351333667002970532e-07,9.563863977616674408e-07,9.776394288230378283e-07,9.988924598844082159e-07,1.020145490945778603e-06,1.041398522007148991e-06,1.062651553068519379e-06,1.083904584129889766e-06,1.105157615191260154e-06,1.126410646252630541e-06,1.147663677314000929e-06,1.168916708375371317e-06,1.190169739436741704e-06,1.211422770498112092e-06,1.232675801559482479e-06,1.253928832620852867e-06,1.275181863682223254e-06,1.296434894743593642e-06,1.317687925804964030e-06,1.338940956866334417e-06 +0.000000000000000000e+00,2.291455351898079272e-08,4.582910703796158544e-08,6.874366055694238146e-08,9.165821407592318411e-08,1.145727675949039868e-07,1.374873211138847894e-07,1.604018746328655920e-07,1.833164281518463947e-07,2.062309816708271973e-07,2.291455351898080000e-07,2.520600887087888026e-07,2.749746422277696317e-07,2.978891957467504608e-07,3.208037492657312900e-07,3.437183027847121191e-07,3.666328563036929482e-07,3.895474098226737773e-07,4.124619633416546064e-07,4.353765168606354355e-07,4.582910703796162646e-07,4.812056238985970408e-07,5.041201774175778170e-07,5.270347309365585932e-07,5.499492844555393693e-07,5.728638379745201455e-07,5.957783914935009217e-07,6.186929450124816979e-07,6.416074985314624740e-07,6.645220520504432502e-07,6.874366055694240264e-07,7.103511590884048026e-07,7.332657126073855787e-07,7.561802661263663549e-07,7.790948196453471311e-07,8.020093731643279073e-07,8.249239266833086834e-07,8.478384802022894596e-07,8.707530337212702358e-07,8.936675872402510120e-07,9.165821407592317881e-07,9.394966942782125643e-07,9.624112477971932346e-07,9.853258013161739049e-07,1.008240354835154575e-06,1.031154908354135245e-06,1.054069461873115916e-06,1.076984015392096586e-06,1.099898568911077256e-06,1.122813122430057927e-06,1.145727675949038597e-06,1.168642229468019267e-06,1.191556782986999938e-06,1.214471336505980608e-06,1.237385890024961278e-06,1.260300443543941948e-06,1.283214997062922619e-06,1.306129550581903289e-06,1.329044104100883959e-06,1.351958657619864630e-06,1.374873211138845300e-06,1.397787764657825970e-06,1.420702318176806641e-06,1.443616871695787311e-06 +0.000000000000000000e+00,2.310799309631461289e-08,4.621598619262922579e-08,6.932397928894384530e-08,9.243197238525846481e-08,1.155399654815730843e-07,1.386479585778876906e-07,1.617559516742022969e-07,1.848639447705169031e-07,2.079719378668315094e-07,2.310799309631461157e-07,2.541879240594607220e-07,2.772959171557753283e-07,3.004039102520899345e-07,3.235119033484045408e-07,3.466198964447191471e-07,3.697278895410337534e-07,3.928358826373483596e-07,4.159438757336629659e-07,4.390518688299775722e-07,4.621598619262921785e-07,4.852678550226067847e-07,5.083758481189214440e-07,5.314838412152361032e-07,5.545918343115507624e-07,5.776998274078654216e-07,6.008078205041800808e-07,6.239158136004947400e-07,6.470238066968093992e-07,6.701317997931240585e-07,6.932397928894387177e-07,7.163477859857533769e-07,7.394557790820680361e-07,7.625637721783826953e-07,7.856717652746973545e-07,8.087797583710120138e-07,8.318877514673266730e-07,8.549957445636413322e-07,8.781037376599559914e-07,9.012117307562706506e-07,9.243197238525853098e-07,9.474277169488999691e-07,9.705357100452146283e-07,9.936437031415293934e-07,1.016751696237844158e-06,1.039859689334158924e-06,1.062967682430473689e-06,1.086075675526788454e-06,1.109183668623103219e-06,1.132291661719417984e-06,1.155399654815732749e-06,1.178507647912047514e-06,1.201615641008362279e-06,1.224723634104677044e-06,1.247831627200991809e-06,1.270939620297306575e-06,1.294047613393621340e-06,1.317155606489936105e-06,1.340263599586250870e-06,1.363371592682565635e-06,1.386479585778880400e-06,1.409587578875195165e-06,1.432695571971509930e-06,1.455803565067824695e-06 +0.000000000000000000e+00,2.287856799556039313e-08,4.575713599112078627e-08,6.863570398668117940e-08,9.151427198224157254e-08,1.143928399778019657e-07,1.372714079733623588e-07,1.601499759689227652e-07,1.830285439644831715e-07,2.059071119600435779e-07,2.287856799556039843e-07,2.516642479511643907e-07,2.745428159467247706e-07,2.974213839422851505e-07,3.202999519378455304e-07,3.431785199334059103e-07,3.660570879289662902e-07,3.889356559245266701e-07,4.118142239200870500e-07,4.346927919156474299e-07,4.575713599112078098e-07,4.804499279067681897e-07,5.033284959023285696e-07,5.262070638978889495e-07,5.490856318934493294e-07,5.719641998890097093e-07,5.948427678845700892e-07,6.177213358801304691e-07,6.405999038756908490e-07,6.634784718712512289e-07,6.863570398668116088e-07,7.092356078623719887e-07,7.321141758579323686e-07,7.549927438534927485e-07,7.778713118490531284e-07,8.007498798446135083e-07,8.236284478401738882e-07,8.465070158357342681e-07,8.693855838312946480e-07,8.922641518268550279e-07,9.151427198224154078e-07,9.380212878179757877e-07,9.608998558135361676e-07,9.837784238090964416e-07,1.006656991804656716e-06,1.029535559800216990e-06,1.052414127795777264e-06,1.075292695791337538e-06,1.098171263786897812e-06,1.121049831782458086e-06,1.143928399778018360e-06,1.166806967773578634e-06,1.189685535769138908e-06,1.212564103764699182e-06,1.235442671760259456e-06,1.258321239755819730e-06,1.281199807751380004e-06,1.304078375746940278e-06,1.326956943742500552e-06,1.349835511738060826e-06,1.372714079733621100e-06,1.395592647729181374e-06,1.418471215724741648e-06,1.441349783720301922e-06 +0.000000000000000000e+00,2.491109329834920110e-08,4.982218659669840220e-08,7.473327989504760991e-08,9.964437319339681763e-08,1.245554664917460253e-07,1.494665597900952198e-07,1.743776530884444143e-07,1.992887463867936088e-07,2.241998396851428033e-07,2.491109329834919977e-07,2.740220262818412187e-07,2.989331195801904396e-07,3.238442128785396606e-07,3.487553061768888815e-07,3.736663994752381025e-07,3.985774927735873234e-07,4.234885860719365444e-07,4.483996793702857653e-07,4.733107726686349863e-07,4.982218659669842072e-07,5.231329592653334282e-07,5.480440525636826491e-07,5.729551458620318701e-07,5.978662391603810910e-07,6.227773324587303120e-07,6.476884257570795329e-07,6.725995190554287539e-07,6.975106123537779748e-07,7.224217056521271958e-07,7.473327989504764167e-07,7.722438922488256377e-07,7.971549855471748586e-07,8.220660788455240796e-07,8.469771721438733005e-07,8.718882654422225215e-07,8.967993587405717424e-07,9.217104520389209634e-07,9.466215453372701843e-07,9.715326386356194053e-07,9.964437319339686262e-07,1.021354825232317847e-06,1.046265918530667068e-06,1.071177011829016289e-06,1.096088105127365510e-06,1.120999198425714731e-06,1.145910291724063952e-06,1.170821385022413173e-06,1.195732478320762394e-06,1.220643571619111615e-06,1.245554664917460836e-06,1.270465758215810057e-06,1.295376851514159278e-06,1.320287944812508499e-06,1.345199038110857720e-06,1.370110131409206940e-06,1.395021224707556161e-06,1.419932318005905382e-06,1.444843411304254603e-06,1.469754504602603824e-06,1.494665597900953045e-06,1.519576691199302266e-06,1.544487784497651487e-06,1.569398877796000708e-06 +0.000000000000000000e+00,2.286950248613918019e-08,4.573900497227836038e-08,6.860850745841754057e-08,9.147800994455672077e-08,1.143475124306959010e-07,1.372170149168350811e-07,1.600865174029742481e-07,1.829560198891134151e-07,2.058255223752525820e-07,2.286950248613917490e-07,2.515645273475309159e-07,2.744340298336701094e-07,2.973035323198093028e-07,3.201730348059484962e-07,3.430425372920876896e-07,3.659120397782268831e-07,3.887815422643660765e-07,4.116510447505052699e-07,4.345205472366444633e-07,4.573900497227836568e-07,4.802595522089229031e-07,5.031290546950621495e-07,5.259985571812013959e-07,5.488680596673406422e-07,5.717375621534798886e-07,5.946070646396191350e-07,6.174765671257583813e-07,6.403460696118976277e-07,6.632155720980368741e-07,6.860850745841761204e-07,7.089545770703153668e-07,7.318240795564546132e-07,7.546935820425938595e-07,7.775630845287331059e-07,8.004325870148723523e-07,8.233020895010115986e-07,8.461715919871508450e-07,8.690410944732900914e-07,8.919105969594293377e-07,9.147800994455685841e-07,9.376496019317078305e-07,9.605191044178470768e-07,9.833886069039863232e-07,1.006258109390125570e-06,1.029127611876264816e-06,1.051997114362404062e-06,1.074866616848543309e-06,1.097736119334682555e-06,1.120605621820821801e-06,1.143475124306961048e-06,1.166344626793100294e-06,1.189214129279239540e-06,1.212083631765378787e-06,1.234953134251518033e-06,1.257822636737657280e-06,1.280692139223796526e-06,1.303561641709935772e-06,1.326431144196075019e-06,1.349300646682214265e-06,1.372170149168353511e-06,1.395039651654492758e-06,1.417909154140632004e-06,1.440778656626771251e-06 +0.000000000000000000e+00,2.489276734169403570e-08,4.978553468338807139e-08,7.467830202508211371e-08,9.957106936677615602e-08,1.244638367084701983e-07,1.493566040501642274e-07,1.742493713918582565e-07,1.991421387335522856e-07,2.240349060752463147e-07,2.489276734169403437e-07,2.738204407586343728e-07,2.987132081003284019e-07,3.236059754420224310e-07,3.484987427837164601e-07,3.733915101254104891e-07,3.982842774671045182e-07,4.231770448087985473e-07,4.480698121504925764e-07,4.729625794921866055e-07,4.978553468338805816e-07,5.227481141755746107e-07,5.476408815172686398e-07,5.725336488589626688e-07,5.974264162006566979e-07,6.223191835423507270e-07,6.472119508840447561e-07,6.721047182257387852e-07,6.969974855674328142e-07,7.218902529091268433e-07,7.467830202508208724e-07,7.716757875925149015e-07,7.965685549342089306e-07,8.214613222759029596e-07,8.463540896175969887e-07,8.712468569592910178e-07,8.961396243009850469e-07,9.210323916426790759e-07,9.459251589843731050e-07,9.708179263260671341e-07,9.957106936677611632e-07,1.020603461009455192e-06,1.045496228351149221e-06,1.070388995692843250e-06,1.095281763034537280e-06,1.120174530376231309e-06,1.145067297717925338e-06,1.169960065059619367e-06,1.194852832401313396e-06,1.219745599743007425e-06,1.244638367084701454e-06,1.269531134426395483e-06,1.294423901768089512e-06,1.319316669109783541e-06,1.344209436451477570e-06,1.369102203793171599e-06,1.393994971134865628e-06,1.418887738476559658e-06,1.443780505818253687e-06,1.468673273159947716e-06,1.493566040501641745e-06,1.518458807843335774e-06,1.543351575185029803e-06,1.568244342526723832e-06 +0.000000000000000000e+00,2.235361211034870770e-08,4.470722422069741541e-08,6.706083633104611980e-08,8.941444844139481758e-08,1.117680605517435154e-07,1.341216726620922131e-07,1.564752847724409242e-07,1.788288968827896352e-07,2.011825089931383462e-07,2.235361211034870572e-07,2.458897332138357682e-07,2.682433453241844792e-07,2.905969574345331902e-07,3.129505695448819012e-07,3.353041816552306123e-07,3.576577937655793233e-07,3.800114058759280343e-07,4.023650179862767453e-07,4.247186300966254563e-07,4.470722422069741673e-07,4.694258543173228783e-07,4.917794664276715364e-07,5.141330785380201945e-07,5.364866906483688526e-07,5.588403027587175106e-07,5.811939148690661687e-07,6.035475269794148268e-07,6.259011390897634848e-07,6.482547512001121429e-07,6.706083633104608010e-07,6.929619754208094591e-07,7.153155875311581171e-07,7.376691996415067752e-07,7.600228117518554333e-07,7.823764238622040914e-07,8.047300359725527494e-07,8.270836480829014075e-07,8.494372601932500656e-07,8.717908723035987237e-07,8.941444844139473817e-07,9.164980965242960398e-07,9.388517086346446979e-07,9.612053207449934618e-07,9.835589328553422258e-07,1.005912544965690990e-06,1.028266157076039754e-06,1.050619769186388518e-06,1.072973381296737282e-06,1.095326993407086046e-06,1.117680605517434809e-06,1.140034217627783573e-06,1.162387829738132337e-06,1.184741441848481101e-06,1.207095053958829865e-06,1.229448666069178629e-06,1.251802278179527393e-06,1.274155890289876157e-06,1.296509502400224921e-06,1.318863114510573685e-06,1.341216726620922449e-06,1.363570338731271213e-06,1.385923950841619977e-06,1.408277562951968741e-06 +0.000000000000000000e+00,2.426248332062637327e-08,4.852496664125274654e-08,7.278744996187911651e-08,9.704993328250547985e-08,1.213124166031318432e-07,1.455748999237582065e-07,1.698373832443845699e-07,1.940998665650109332e-07,2.183623498856372966e-07,2.426248332062636335e-07,2.668873165268899439e-07,2.911497998475162543e-07,3.154122831681425647e-07,3.396747664887688751e-07,3.639372498093951855e-07,3.881997331300214959e-07,4.124622164506478063e-07,4.367246997712741167e-07,4.609871830919004271e-07,4.852496664125267375e-07,5.095121497331530479e-07,5.337746330537793583e-07,5.580371163744056687e-07,5.822995996950319791e-07,6.065620830156582895e-07,6.308245663362845999e-07,6.550870496569109104e-07,6.793495329775372208e-07,7.036120162981635312e-07,7.278744996187898416e-07,7.521369829394161520e-07,7.763994662600424624e-07,8.006619495806687728e-07,8.249244329012950832e-07,8.491869162219213936e-07,8.734493995425477040e-07,8.977118828631740144e-07,9.219743661838003248e-07,9.462368495044266352e-07,9.704993328250528397e-07,9.947618161456790443e-07,1.019024299466305249e-06,1.043286782786931453e-06,1.067549266107557658e-06,1.091811749428183862e-06,1.116074232748810067e-06,1.140336716069436271e-06,1.164599199390062476e-06,1.188861682710688680e-06,1.213124166031314885e-06,1.237386649351941090e-06,1.261649132672567294e-06,1.285911615993193499e-06,1.310174099313819703e-06,1.334436582634445908e-06,1.358699065955072112e-06,1.382961549275698317e-06,1.407224032596324521e-06,1.431486515916950726e-06,1.455748999237576930e-06,1.480011482558203135e-06,1.504273965878829339e-06,1.528536449199455544e-06 +0.000000000000000000e+00,2.436993314047641835e-08,4.873986628095283670e-08,7.310979942142926167e-08,9.747973256190568664e-08,1.218496657023821116e-07,1.462195988428585233e-07,1.705895319833349351e-07,1.949594651238113468e-07,2.193293982642877585e-07,2.436993314047641703e-07,2.680692645452405820e-07,2.924391976857169938e-07,3.168091308261934055e-07,3.411790639666698172e-07,3.655489971071462290e-07,3.899189302476226407e-07,4.142888633880990524e-07,4.386587965285754642e-07,4.630287296690518759e-07,4.873986628095282347e-07,5.117685959500046464e-07,5.361385290904810582e-07,5.605084622309574699e-07,5.848783953714338816e-07,6.092483285119102934e-07,6.336182616523867051e-07,6.579881947928631168e-07,6.823581279333395286e-07,7.067280610738159403e-07,7.310979942142923520e-07,7.554679273547687638e-07,7.798378604952451755e-07,8.042077936357215872e-07,8.285777267761979990e-07,8.529476599166744107e-07,8.773175930571508224e-07,9.016875261976272342e-07,9.260574593381036459e-07,9.504273924785800576e-07,9.747973256190564694e-07,9.991672587595328811e-07,1.023537191900009293e-06,1.047907125040485705e-06,1.072277058180962116e-06,1.096646991321438528e-06,1.121016924461914940e-06,1.145386857602391352e-06,1.169756790742867763e-06,1.194126723883344175e-06,1.218496657023820587e-06,1.242866590164296998e-06,1.267236523304773410e-06,1.291606456445249822e-06,1.315976389585726234e-06,1.340346322726202645e-06,1.364716255866679057e-06,1.389086189007155469e-06,1.413456122147631881e-06,1.437826055288108292e-06,1.462195988428584704e-06,1.486565921569061116e-06,1.510935854709537528e-06,1.535305787850013939e-06 +0.000000000000000000e+00,2.287169685301189174e-08,4.574339370602378348e-08,6.861509055903567522e-08,9.148678741204756696e-08,1.143584842650594587e-07,1.372301811180713504e-07,1.601018779710832422e-07,1.829735748240951339e-07,2.058452716771070257e-07,2.287169685301189174e-07,2.515886653831308091e-07,2.744603622361427009e-07,2.973320590891545926e-07,3.202037559421664844e-07,3.430754527951783761e-07,3.659471496481902678e-07,3.888188465012021596e-07,4.116905433542140513e-07,4.345622402072259431e-07,4.574339370602378348e-07,4.803056339132497266e-07,5.031773307662616183e-07,5.260490276192735100e-07,5.489207244722854018e-07,5.717924213252972935e-07,5.946641181783091853e-07,6.175358150313210770e-07,6.404075118843329687e-07,6.632792087373448605e-07,6.861509055903567522e-07,7.090226024433686440e-07,7.318942992963805357e-07,7.547659961493924274e-07,7.776376930024043192e-07,8.005093898554162109e-07,8.233810867084281027e-07,8.462527835614399944e-07,8.691244804144518861e-07,8.919961772674637779e-07,9.148678741204756696e-07,9.377395709734875614e-07,9.606112678264994531e-07,9.834829646795114507e-07,1.006354661532523448e-06,1.029226358385535446e-06,1.052098055238547444e-06,1.074969752091559441e-06,1.097841448944571439e-06,1.120713145797583436e-06,1.143584842650595434e-06,1.166456539503607432e-06,1.189328236356619429e-06,1.212199933209631427e-06,1.235071630062643425e-06,1.257943326915655422e-06,1.280815023768667420e-06,1.303686720621679417e-06,1.326558417474691415e-06,1.349430114327703413e-06,1.372301811180715410e-06,1.395173508033727408e-06,1.418045204886739405e-06,1.440916901739751403e-06 +0.000000000000000000e+00,2.489702165654368254e-08,4.979404331308736508e-08,7.469106496963105094e-08,9.958808662617474340e-08,1.244851082827184359e-07,1.493821299392621283e-07,1.742791515958058208e-07,1.991761732523495133e-07,2.240731949088932057e-07,2.489702165654368717e-07,2.738672382219805377e-07,2.987642598785242037e-07,3.236612815350678697e-07,3.485583031916115357e-07,3.734553248481552017e-07,3.983523465046988677e-07,4.232493681612425337e-07,4.481463898177861997e-07,4.730434114743298657e-07,4.979404331308735317e-07,5.228374547874171977e-07,5.477344764439608637e-07,5.726314981005045297e-07,5.975285197570481957e-07,6.224255414135918617e-07,6.473225630701355277e-07,6.722195847266791937e-07,6.971166063832228597e-07,7.220136280397665257e-07,7.469106496963101917e-07,7.718076713528538577e-07,7.967046930093975237e-07,8.216017146659411897e-07,8.464987363224848557e-07,8.713957579790285217e-07,8.962927796355721877e-07,9.211898012921158537e-07,9.460868229486595197e-07,9.709838446052032916e-07,9.958808662617470635e-07,1.020777887918290835e-06,1.045674909574834607e-06,1.070571931231378379e-06,1.095468952887922151e-06,1.120365974544465923e-06,1.145262996201009695e-06,1.170160017857553467e-06,1.195057039514097238e-06,1.219954061170641010e-06,1.244851082827184782e-06,1.269748104483728554e-06,1.294645126140272326e-06,1.319542147796816098e-06,1.344439169453359870e-06,1.369336191109903642e-06,1.394233212766447414e-06,1.419130234422991185e-06,1.444027256079534957e-06,1.468924277736078729e-06,1.493821299392622501e-06,1.518718321049166273e-06,1.543615342705710045e-06,1.568512364362253817e-06 +0.000000000000000000e+00,2.435498878951910063e-08,4.870997757903820125e-08,7.306496636855730519e-08,9.741995515807641574e-08,1.217749439475955263e-07,1.461299327371146368e-07,1.704849215266337474e-07,1.948399103161528579e-07,2.191948991056719685e-07,2.435498878951911055e-07,2.679048766847102161e-07,2.922598654742293266e-07,3.166148542637484372e-07,3.409698430532675477e-07,3.653248318427866583e-07,3.896798206323057688e-07,4.140348094218248794e-07,4.383897982113439899e-07,4.627447870008631005e-07,4.870997757903822110e-07,5.114547645799013216e-07,5.358097533694204321e-07,5.601647421589395427e-07,5.845197309484586532e-07,6.088747197379777638e-07,6.332297085274968744e-07,6.575846973170159849e-07,6.819396861065350955e-07,7.062946748960542060e-07,7.306496636855733166e-07,7.550046524750924271e-07,7.793596412646115377e-07,8.037146300541306482e-07,8.280696188436497588e-07,8.524246076331688693e-07,8.767795964226879799e-07,9.011345852122070904e-07,9.254895740017262010e-07,9.498445627912453115e-07,9.741995515807644221e-07,9.985545403702835326e-07,1.022909529159802643e-06,1.047264517949321754e-06,1.071619506738840864e-06,1.095974495528359975e-06,1.120329484317879085e-06,1.144684473107398196e-06,1.169039461896917306e-06,1.193394450686436417e-06,1.217749439475955528e-06,1.242104428265474638e-06,1.266459417054993749e-06,1.290814405844512859e-06,1.315169394634031970e-06,1.339524383423551080e-06,1.363879372213070191e-06,1.388234361002589301e-06,1.412589349792108412e-06,1.436944338581627523e-06,1.461299327371146633e-06,1.485654316160665744e-06,1.510009304950184854e-06,1.534364293739703965e-06 +0.000000000000000000e+00,2.287856799557123251e-08,4.575713599114246502e-08,6.863570398671369753e-08,9.151427198228493004e-08,1.143928399778561625e-07,1.372714079734273951e-07,1.601499759689986276e-07,1.830285439645698601e-07,2.059071119601410926e-07,2.287856799557123251e-07,2.516642479512835576e-07,2.745428159468547901e-07,2.974213839424260226e-07,3.202999519379972551e-07,3.431785199335684876e-07,3.660570879291397202e-07,3.889356559247109527e-07,4.118142239202821852e-07,4.346927919158534177e-07,4.575713599114246502e-07,4.804499279069959356e-07,5.033284959025672211e-07,5.262070638981385065e-07,5.490856318937097920e-07,5.719641998892810774e-07,5.948427678848523629e-07,6.177213358804236483e-07,6.405999038759949338e-07,6.634784718715662192e-07,6.863570398671375047e-07,7.092356078627087901e-07,7.321141758582800756e-07,7.549927438538513610e-07,7.778713118494226465e-07,8.007498798449939319e-07,8.236284478405652174e-07,8.465070158361365028e-07,8.693855838317077883e-07,8.922641518272790737e-07,9.151427198228503592e-07,9.380212878184216446e-07,9.608998558139929301e-07,9.837784238095642155e-07,1.006656991805135501e-06,1.029535559800706786e-06,1.052414127796278072e-06,1.075292695791849357e-06,1.098171263787420643e-06,1.121049831782991928e-06,1.143928399778563214e-06,1.166806967774134499e-06,1.189685535769705785e-06,1.212564103765277070e-06,1.235442671760848355e-06,1.258321239756419641e-06,1.281199807751990926e-06,1.304078375747562212e-06,1.326956943743133497e-06,1.349835511738704783e-06,1.372714079734276068e-06,1.395592647729847354e-06,1.418471215725418639e-06,1.441349783720989925e-06 +0.000000000000000000e+00,2.491109329836066582e-08,4.982218659672133164e-08,7.473327989508199415e-08,9.964437319344265005e-08,1.245554664918033059e-07,1.494665597901639618e-07,1.743776530885246177e-07,1.992887463868852736e-07,2.241998396852459295e-07,2.491109329836065589e-07,2.740220262819672148e-07,2.989331195803278707e-07,3.238442128786885266e-07,3.487553061770491825e-07,3.736663994754098384e-07,3.985774927737704943e-07,4.234885860721311502e-07,4.483996793704918061e-07,4.733107726688524620e-07,4.982218659672131179e-07,5.231329592655737738e-07,5.480440525639344297e-07,5.729551458622950856e-07,5.978662391606557415e-07,6.227773324590163974e-07,6.476884257573770533e-07,6.725995190557377092e-07,6.975106123540983651e-07,7.224217056524590209e-07,7.473327989508196768e-07,7.722438922491803327e-07,7.971549855475409886e-07,8.220660788459016445e-07,8.469771721442623004e-07,8.718882654426229563e-07,8.967993587409836122e-07,9.217104520393442681e-07,9.466215453377049240e-07,9.715326386360655799e-07,9.964437319344262358e-07,1.021354825232786892e-06,1.046265918531147548e-06,1.071177011829508203e-06,1.096088105127868859e-06,1.120999198426229515e-06,1.145910291724590171e-06,1.170821385022950827e-06,1.195732478321311483e-06,1.220643571619672139e-06,1.245554664918032795e-06,1.270465758216393451e-06,1.295376851514754107e-06,1.320287944813114762e-06,1.345199038111475418e-06,1.370110131409836074e-06,1.395021224708196730e-06,1.419932318006557386e-06,1.444843411304918042e-06,1.469754504603278698e-06,1.494665597901639354e-06,1.519576691200000010e-06,1.544487784498360665e-06,1.569398877796721321e-06 +0.000000000000000000e+00,2.287169685301730481e-08,4.574339370603460962e-08,6.861509055905191443e-08,9.148678741206921924e-08,1.143584842650865241e-07,1.372301811181038289e-07,1.601018779711211469e-07,1.829735748241384650e-07,2.058452716771557830e-07,2.287169685301731010e-07,2.515886653831904191e-07,2.744603622362077107e-07,2.973320590892250022e-07,3.202037559422422938e-07,3.430754527952595854e-07,3.659471496482768770e-07,3.888188465012941685e-07,4.116905433543114601e-07,4.345622402073287517e-07,4.574339370603460433e-07,4.803056339133633348e-07,5.031773307663806264e-07,5.260490276193979180e-07,5.489207244724152096e-07,5.717924213254325011e-07,5.946641181784497927e-07,6.175358150314670843e-07,6.404075118844843759e-07,6.632792087375016674e-07,6.861509055905189590e-07,7.090226024435362506e-07,7.318942992965535422e-07,7.547659961495708338e-07,7.776376930025881253e-07,8.005093898556054169e-07,8.233810867086227085e-07,8.462527835616400001e-07,8.691244804146572916e-07,8.919961772676745832e-07,9.148678741206918748e-07,9.377395709737091664e-07,9.606112678267264579e-07,9.834829646797437495e-07,1.006354661532761041e-06,1.029226358385778333e-06,1.052098055238795624e-06,1.074969752091812916e-06,1.097841448944830207e-06,1.120713145797847499e-06,1.143584842650864791e-06,1.166456539503882082e-06,1.189328236356899374e-06,1.212199933209916665e-06,1.235071630062933957e-06,1.257943326915951248e-06,1.280815023768968540e-06,1.303686720621985832e-06,1.326558417475003123e-06,1.349430114328020415e-06,1.372301811181037706e-06,1.395173508034054998e-06,1.418045204887072289e-06,1.440916901740089581e-06 +0.000000000000000000e+00,2.489702165654943972e-08,4.979404331309887944e-08,7.469106496964832247e-08,9.958808662619777211e-08,1.244851082827472350e-07,1.493821299392966979e-07,1.742791515958461608e-07,1.991761732523956236e-07,2.240731949089450865e-07,2.489702165654945759e-07,2.738672382220440652e-07,2.987642598785935546e-07,3.236612815351430439e-07,3.485583031916925333e-07,3.734553248482420226e-07,3.983523465047915120e-07,4.232493681613410013e-07,4.481463898178904907e-07,4.730434114744399800e-07,4.979404331309894694e-07,5.228374547875389587e-07,5.477344764440884481e-07,5.726314981006379374e-07,5.975285197571874268e-07,6.224255414137369161e-07,6.473225630702864055e-07,6.722195847268358948e-07,6.971166063833853842e-07,7.220136280399348735e-07,7.469106496964843629e-07,7.718076713530338522e-07,7.967046930095833416e-07,8.216017146661328309e-07,8.464987363226823203e-07,8.713957579792318096e-07,8.962927796357812990e-07,9.211898012923307883e-07,9.460868229488802777e-07,9.709838446054298729e-07,9.958808662619795740e-07,1.020777887918529275e-06,1.045674909575078976e-06,1.070571931231628677e-06,1.095468952888178378e-06,1.120365974544728080e-06,1.145262996201277781e-06,1.170160017857827482e-06,1.195057039514377183e-06,1.219954061170926884e-06,1.244851082827476585e-06,1.269748104484026286e-06,1.294645126140575987e-06,1.319542147797125688e-06,1.344439169453675390e-06,1.369336191110225091e-06,1.394233212766774792e-06,1.419130234423324493e-06,1.444027256079874194e-06,1.468924277736423895e-06,1.493821299392973596e-06,1.518718321049523297e-06,1.543615342706072998e-06,1.568512364362622699e-06 +0.000000000000000000e+00,2.235361211035936510e-08,4.470722422071873020e-08,6.706083633107809530e-08,8.941444844143746040e-08,1.117680605517968255e-07,1.341216726621561906e-07,1.564752847725155689e-07,1.788288968828749473e-07,2.011825089932343256e-07,2.235361211035937039e-07,2.458897332139530823e-07,2.682433453243124341e-07,2.905969574346717860e-07,3.129505695450311379e-07,3.353041816553904897e-07,3.576577937657498416e-07,3.800114058761091935e-07,4.023650179864685453e-07,4.247186300968278972e-07,4.470722422071872490e-07,4.694258543175466009e-07,4.917794664279059528e-07,5.141330785382653046e-07,5.364866906486246565e-07,5.588403027589840084e-07,5.811939148693433602e-07,6.035475269797027121e-07,6.259011390900620640e-07,6.482547512004214158e-07,6.706083633107807677e-07,6.929619754211401196e-07,7.153155875314994714e-07,7.376691996418588233e-07,7.600228117522181751e-07,7.823764238625775270e-07,8.047300359729368789e-07,8.270836480832962307e-07,8.494372601936555826e-07,8.717908723040149345e-07,8.941444844143742863e-07,9.164980965247336382e-07,9.388517086350929901e-07,9.612053207454523419e-07,9.835589328558116938e-07,1.005912544966171046e-06,1.028266157076530398e-06,1.050619769186889749e-06,1.072973381297249101e-06,1.095326993407608453e-06,1.117680605517967805e-06,1.140034217628327157e-06,1.162387829738686509e-06,1.184741441849045861e-06,1.207095053959405212e-06,1.229448666069764564e-06,1.251802278180123916e-06,1.274155890290483268e-06,1.296509502400842620e-06,1.318863114511201972e-06,1.341216726621561324e-06,1.363570338731920675e-06,1.385923950842280027e-06,1.408277562952639379e-06 +0.000000000000000000e+00,2.426248332063752697e-08,4.852496664127505395e-08,7.278744996191257431e-08,9.704993328255009466e-08,1.213124166031876150e-07,1.455748999238251486e-07,1.698373832444626822e-07,1.940998665651002158e-07,2.183623498857377494e-07,2.426248332063752830e-07,2.668873165270128166e-07,2.911497998476503502e-07,3.154122831682878838e-07,3.396747664889254174e-07,3.639372498095629509e-07,3.881997331302004845e-07,4.124622164508380181e-07,4.367246997714755517e-07,4.609871830921130853e-07,4.852496664127506718e-07,5.095121497333883113e-07,5.337746330540259508e-07,5.580371163746635903e-07,5.822995996953012297e-07,6.065620830159388692e-07,6.308245663365765087e-07,6.550870496572141481e-07,6.793495329778517876e-07,7.036120162984894271e-07,7.278744996191270666e-07,7.521369829397647060e-07,7.763994662604023455e-07,8.006619495810399850e-07,8.249244329016776244e-07,8.491869162223152639e-07,8.734493995429529034e-07,8.977118828635905429e-07,9.219743661842281823e-07,9.462368495048658218e-07,9.704993328255034613e-07,9.947618161461411007e-07,1.019024299466778740e-06,1.043286782787416380e-06,1.067549266108054019e-06,1.091811749428691659e-06,1.116074232749329298e-06,1.140336716069966938e-06,1.164599199390604577e-06,1.188861682711242217e-06,1.213124166031879856e-06,1.237386649352517495e-06,1.261649132673155135e-06,1.285911615993792774e-06,1.310174099314430414e-06,1.334436582635068053e-06,1.358699065955705693e-06,1.382961549276343332e-06,1.407224032596980972e-06,1.431486515917618611e-06,1.455748999238256251e-06,1.480011482558893890e-06,1.504273965879531530e-06,1.528536449200169169e-06 +0.000000000000000000e+00,2.436993314048775734e-08,4.873986628097551469e-08,7.310979942146327534e-08,9.747973256195104261e-08,1.218496657024388099e-07,1.462195988429265771e-07,1.705895319834143444e-07,1.949594651239021117e-07,2.193293982643898790e-07,2.436993314048776198e-07,2.680692645453653606e-07,2.924391976858531014e-07,3.168091308263408422e-07,3.411790639668285830e-07,3.655489971073163238e-07,3.899189302478040646e-07,4.142888633882918054e-07,4.386587965287795462e-07,4.630287296692672870e-07,4.873986628097550278e-07,5.117685959502427686e-07,5.361385290907305094e-07,5.605084622312182502e-07,5.848783953717059910e-07,6.092483285121937318e-07,6.336182616526814726e-07,6.579881947931692134e-07,6.823581279336569542e-07,7.067280610741446950e-07,7.310979942146324358e-07,7.554679273551201766e-07,7.798378604956079174e-07,8.042077936360956582e-07,8.285777267765833990e-07,8.529476599170711398e-07,8.773175930575588806e-07,9.016875261980466214e-07,9.260574593385343622e-07,9.504273924790221030e-07,9.747973256195098438e-07,9.991672587599974787e-07,1.023537191900485114e-06,1.047907125040972749e-06,1.072277058181460383e-06,1.096646991321948018e-06,1.121016924462435653e-06,1.145386857602923288e-06,1.169756790743410923e-06,1.194126723883898558e-06,1.218496657024386193e-06,1.242866590164873828e-06,1.267236523305361463e-06,1.291606456445849098e-06,1.315976389586336733e-06,1.340346322726824368e-06,1.364716255867312002e-06,1.389086189007799637e-06,1.413456122148287272e-06,1.437826055288774907e-06,1.462195988429262542e-06,1.486565921569750177e-06,1.510935854710237812e-06,1.535305787850725447e-06 +0.000000000000000000e+00,1.423028508270501221e-08,2.846057016541002442e-08,4.269085524811503333e-08,5.692114033082004223e-08,7.115142541352505113e-08,8.538171049623006665e-08,9.961199557893508218e-08,1.138422806616400977e-07,1.280725657443451265e-07,1.423028508270501552e-07,1.565331359097551840e-07,1.707634209924602127e-07,1.849937060751652415e-07,1.992239911578702702e-07,2.134542762405752990e-07,2.276845613232803277e-07,2.419148464059853565e-07,2.561451314886903588e-07,2.703754165713953611e-07,2.846057016541003634e-07,2.988359867368053656e-07,3.130662718195103679e-07,3.272965569022153702e-07,3.415268419849203725e-07,3.557571270676253748e-07,3.699874121503303771e-07,3.842176972330353794e-07,3.984479823157403816e-07,4.126782673984453839e-07,4.269085524811503862e-07,4.411388375638553885e-07,4.553691226465603908e-07,4.695994077292653931e-07,4.838296928119703954e-07,4.980599778946753976e-07,5.122902629773803999e-07,5.265205480600854022e-07,5.407508331427904045e-07,5.549811182254954068e-07,5.692114033082004091e-07,5.834416883909054114e-07,5.976719734736104136e-07,6.119022585563154159e-07,6.261325436390204182e-07,6.403628287217254205e-07,6.545931138044304228e-07,6.688233988871354251e-07,6.830536839698404274e-07,6.972839690525454296e-07,7.115142541352504319e-07,7.257445392179554342e-07,7.399748243006604365e-07,7.542051093833654388e-07,7.684353944660704411e-07,7.826656795487754434e-07,7.968959646314804456e-07,8.111262497141854479e-07,8.253565347968904502e-07,8.395868198795954525e-07,8.538171049623004548e-07,8.680473900450054571e-07,8.822776751277104594e-07,8.965079602104154616e-07 +0.000000000000000000e+00,1.461728284829821598e-08,2.923456569659643195e-08,4.385184854489464628e-08,5.846913139319285729e-08,7.308641424149106831e-08,8.770369708978927932e-08,1.023209799380874903e-07,1.169382627863857013e-07,1.315555456346839124e-07,1.461728284829821366e-07,1.607901113312803609e-07,1.754073941795785851e-07,1.900246770278768094e-07,2.046419598761750336e-07,2.192592427244732579e-07,2.338765255727714821e-07,2.484938084210697328e-07,2.631110912693679835e-07,2.777283741176662343e-07,2.923456569659644850e-07,3.069629398142627357e-07,3.215802226625609864e-07,3.361975055108592371e-07,3.508147883591574879e-07,3.654320712074557386e-07,3.800493540557539893e-07,3.946666369040522400e-07,4.092839197523504907e-07,4.239012026006487414e-07,4.385184854489469922e-07,4.531357682972452429e-07,4.677530511455434936e-07,4.823703339938417443e-07,4.969876168421399950e-07,5.116048996904382458e-07,5.262221825387364965e-07,5.408394653870347472e-07,5.554567482353329979e-07,5.700740310836312486e-07,5.846913139319294994e-07,5.993085967802277501e-07,6.139258796285260008e-07,6.285431624768242515e-07,6.431604453251225022e-07,6.577777281734207530e-07,6.723950110217190037e-07,6.870122938700172544e-07,7.016295767183155051e-07,7.162468595666137558e-07,7.308641424149120065e-07,7.454814252632102573e-07,7.600987081115085080e-07,7.747159909598067587e-07,7.893332738081050094e-07,8.039505566564032601e-07,8.185678395047015109e-07,8.331851223529997616e-07,8.478024052012980123e-07,8.624196880495962630e-07,8.770369708978945137e-07,8.916542537461927645e-07,9.062715365944910152e-07,9.208888194427892659e-07 +0.000000000000000000e+00,1.449929842613958779e-08,2.899859685227917558e-08,4.349789527841876336e-08,5.799719370455835115e-08,7.249649213069793894e-08,8.699579055683752673e-08,1.014950889829771145e-07,1.159943874091167023e-07,1.304936858352563033e-07,1.449929842613959043e-07,1.594922826875355054e-07,1.739915811136751064e-07,1.884908795398147074e-07,2.029901779659543084e-07,2.174894763920939095e-07,2.319887748182335105e-07,2.464880732443731115e-07,2.609873716705127125e-07,2.754866700966523135e-07,2.899859685227919146e-07,3.044852669489315156e-07,3.189845653750711166e-07,3.334838638012107176e-07,3.479831622273503187e-07,3.624824606534899197e-07,3.769817590796295207e-07,3.914810575057691217e-07,4.059803559319087228e-07,4.204796543580483238e-07,4.349789527841879248e-07,4.494782512103275258e-07,4.639775496364671268e-07,4.784768480626067808e-07,4.929761464887464348e-07,5.074754449148860887e-07,5.219747433410257427e-07,5.364740417671653967e-07,5.509733401933050506e-07,5.654726386194447046e-07,5.799719370455843585e-07,5.944712354717240125e-07,6.089705338978636665e-07,6.234698323240033204e-07,6.379691307501429744e-07,6.524684291762826284e-07,6.669677276024222823e-07,6.814670260285619363e-07,6.959663244547015902e-07,7.104656228808412442e-07,7.249649213069808982e-07,7.394642197331205521e-07,7.539635181592602061e-07,7.684628165853998600e-07,7.829621150115395140e-07,7.974614134376791680e-07,8.119607118638188219e-07,8.264600102899584759e-07,8.409593087160981299e-07,8.554586071422377838e-07,8.699579055683774378e-07,8.844572039945170917e-07,8.989565024206567457e-07,9.134558008467963997e-07 +0.000000000000000000e+00,1.449621354610150669e-08,2.899242709220301338e-08,4.348864063830451841e-08,5.798485418440602014e-08,7.248106773050752848e-08,8.697728127660903683e-08,1.014734948227105452e-07,1.159697083688120535e-07,1.304659219149135619e-07,1.449621354610150570e-07,1.594583490071165521e-07,1.739545625532180472e-07,1.884507760993195423e-07,2.029469896454210374e-07,2.174432031915225325e-07,2.319394167376240276e-07,2.464356302837254963e-07,2.609318438298269649e-07,2.754280573759284335e-07,2.899242709220299022e-07,3.044204844681313708e-07,3.189166980142328395e-07,3.334129115603343081e-07,3.479091251064357767e-07,3.624053386525372454e-07,3.769015521986387140e-07,3.913977657447401827e-07,4.058939792908416513e-07,4.203901928369431199e-07,4.348864063830445886e-07,4.493826199291460572e-07,4.638788334752475259e-07,4.783750470213489945e-07,4.928712605674504631e-07,5.073674741135519318e-07,5.218636876596534004e-07,5.363599012057548690e-07,5.508561147518563377e-07,5.653523282979578063e-07,5.798485418440592750e-07,5.943447553901607436e-07,6.088409689362622122e-07,6.233371824823636809e-07,6.378333960284651495e-07,6.523296095745666182e-07,6.668258231206680868e-07,6.813220366667695554e-07,6.958182502128710241e-07,7.103144637589724927e-07,7.248106773050739614e-07,7.393068908511754300e-07,7.538031043972768986e-07,7.682993179433783673e-07,7.827955314894798359e-07,7.972917450355813046e-07,8.117879585816827732e-07,8.262841721277842418e-07,8.407803856738857105e-07,8.552765992199871791e-07,8.697728127660886477e-07,8.842690263121901164e-07,8.987652398582915850e-07,9.132614534043930537e-07 +0.000000000000000000e+00,1.525579962299970406e-08,3.051159924599940812e-08,4.576739886899910887e-08,6.102319849199880301e-08,7.627899811499849714e-08,9.153479773799819128e-08,1.067905973609978854e-07,1.220463969839975795e-07,1.373021966069972737e-07,1.525579962299969678e-07,1.678137958529966619e-07,1.830695954759963561e-07,1.983253950989960502e-07,2.135811947219957444e-07,2.288369943449954385e-07,2.440927939679951062e-07,2.593485935909947738e-07,2.746043932139944415e-07,2.898601928369941091e-07,3.051159924599937768e-07,3.203717920829934445e-07,3.356275917059931121e-07,3.508833913289927798e-07,3.661391909519924475e-07,3.813949905749921151e-07,3.966507901979917828e-07,4.119065898209914505e-07,4.271623894439911181e-07,4.424181890669907858e-07,4.576739886899904535e-07,4.729297883129901211e-07,4.881855879359897888e-07,5.034413875589894565e-07,5.186971871819891241e-07,5.339529868049887918e-07,5.492087864279884594e-07,5.644645860509881271e-07,5.797203856739877948e-07,5.949761852969874624e-07,6.102319849199871301e-07,6.254877845429867978e-07,6.407435841659864654e-07,6.559993837889861331e-07,6.712551834119858008e-07,6.865109830349854684e-07,7.017667826579851361e-07,7.170225822809848038e-07,7.322783819039844714e-07,7.475341815269841391e-07,7.627899811499838067e-07,7.780457807729834744e-07,7.933015803959831421e-07,8.085573800189828097e-07,8.238131796419824774e-07,8.390689792649821451e-07,8.543247788879818127e-07,8.695805785109814804e-07,8.848363781339811481e-07,9.000921777569808157e-07,9.153479773799804834e-07,9.306037770029801511e-07,9.458595766259798187e-07,9.611153762489794864e-07 +0.000000000000000000e+00,1.575803619391817061e-08,3.151607238783634121e-08,4.727410858175450851e-08,6.303214477567266919e-08,7.879018096959082987e-08,9.454821716350899055e-08,1.103062533574271512e-07,1.260642895513453119e-07,1.418223257452634726e-07,1.575803619391816333e-07,1.733383981330997940e-07,1.890964343270179546e-07,2.048544705209361153e-07,2.206125067148542760e-07,2.363705429087724367e-07,2.521285791026905709e-07,2.678866152966087051e-07,2.836446514905268393e-07,2.994026876844449735e-07,3.151607238783631077e-07,3.309187600722812419e-07,3.466767962661993761e-07,3.624348324601175104e-07,3.781928686540356446e-07,3.939509048479537788e-07,4.097089410418719130e-07,4.254669772357900472e-07,4.412250134297081814e-07,4.569830496236263156e-07,4.727410858175444498e-07,4.884991220114625311e-07,5.042571582053806124e-07,5.200151943992986936e-07,5.357732305932167749e-07,5.515312667871348562e-07,5.672893029810529375e-07,5.830473391749710187e-07,5.988053753688891000e-07,6.145634115628071813e-07,6.303214477567252625e-07,6.460794839506433438e-07,6.618375201445614251e-07,6.775955563384795063e-07,6.933535925323975876e-07,7.091116287263156689e-07,7.248696649202337502e-07,7.406277011141518314e-07,7.563857373080699127e-07,7.721437735019879940e-07,7.879018096959060752e-07,8.036598458898241565e-07,8.194178820837422378e-07,8.351759182776603191e-07,8.509339544715784003e-07,8.666919906654964816e-07,8.824500268594145629e-07,8.982080630533326441e-07,9.139660992472507254e-07,9.297241354411688067e-07,9.454821716350868879e-07,9.612402078290049692e-07,9.769982440229229446e-07,9.927562802168409200e-07 +0.000000000000000000e+00,1.452979731437490018e-08,2.905959462874980035e-08,4.358939194312470218e-08,5.811918925749960732e-08,7.264898657187451246e-08,8.717878388624941760e-08,1.017085812006243227e-07,1.162383785149992279e-07,1.307681758293741330e-07,1.452979731437490249e-07,1.598277704581239168e-07,1.743575677724988087e-07,1.888873650868737006e-07,2.034171624012485925e-07,2.179469597156234844e-07,2.324767570299983763e-07,2.470065543443732947e-07,2.615363516587482131e-07,2.760661489731231315e-07,2.905959462874980498e-07,3.051257436018729682e-07,3.196555409162478866e-07,3.341853382306228050e-07,3.487151355449977233e-07,3.632449328593726417e-07,3.777747301737475601e-07,3.923045274881224785e-07,4.068343248024973968e-07,4.213641221168723152e-07,4.358939194312472336e-07,4.504237167456221519e-07,4.649535140599970703e-07,4.794833113743719887e-07,4.940131086887469071e-07,5.085429060031218254e-07,5.230727033174967438e-07,5.376025006318716622e-07,5.521322979462465806e-07,5.666620952606214989e-07,5.811918925749964173e-07,5.957216898893713357e-07,6.102514872037462541e-07,6.247812845181211724e-07,6.393110818324960908e-07,6.538408791468710092e-07,6.683706764612459276e-07,6.829004737756208459e-07,6.974302710899957643e-07,7.119600684043706827e-07,7.264898657187456010e-07,7.410196630331205194e-07,7.555494603474954378e-07,7.700792576618703562e-07,7.846090549762452745e-07,7.991388522906201929e-07,8.136686496049951113e-07,8.281984469193700297e-07,8.427282442337449480e-07,8.572580415481198664e-07,8.717878388624947848e-07,8.863176361768697032e-07,9.008474334912446215e-07,9.153772308056195399e-07 +0.000000000000000000e+00,1.508004092658902745e-08,3.016008185317805491e-08,4.524012277976708236e-08,6.032016370635610981e-08,7.540020463294513065e-08,9.048024555953415149e-08,1.055602864861231723e-07,1.206403274127121932e-07,1.357203683393012140e-07,1.508004092658902348e-07,1.658804501924792557e-07,1.809604911190682765e-07,1.960405320456572973e-07,2.111205729722463182e-07,2.262006138988353390e-07,2.412806548254243334e-07,2.563606957520133542e-07,2.714407366786023751e-07,2.865207776051913959e-07,3.016008185317804167e-07,3.166808594583694376e-07,3.317609003849584584e-07,3.468409413115474792e-07,3.619209822381365001e-07,3.770010231647255209e-07,3.920810640913145417e-07,4.071611050179035626e-07,4.222411459444925834e-07,4.373211868710816042e-07,4.524012277976706251e-07,4.674812687242596459e-07,4.825613096508486668e-07,4.976413505774376876e-07,5.127213915040267084e-07,5.278014324306157293e-07,5.428814733572047501e-07,5.579615142837937709e-07,5.730415552103827918e-07,5.881215961369718126e-07,6.032016370635608334e-07,6.182816779901498543e-07,6.333617189167388751e-07,6.484417598433278960e-07,6.635218007699169168e-07,6.786018416965059376e-07,6.936818826230949585e-07,7.087619235496839793e-07,7.238419644762730001e-07,7.389220054028620210e-07,7.540020463294510418e-07,7.690820872560400626e-07,7.841621281826290835e-07,7.992421691092181043e-07,8.143222100358071252e-07,8.294022509623961460e-07,8.444822918889851668e-07,8.595623328155741877e-07,8.746423737421632085e-07,8.897224146687522293e-07,9.048024555953412502e-07,9.198824965219302710e-07,9.349625374485192918e-07,9.500425783751083127e-07 +0.000000000000000000e+00,1.423028508271816438e-08,2.846057016543632877e-08,4.269085524815449315e-08,5.692114033087265753e-08,7.115142541359081530e-08,8.538171049630897307e-08,9.961199557902713083e-08,1.138422806617452886e-07,1.280725657444634464e-07,1.423028508271816041e-07,1.565331359098997619e-07,1.707634209926179197e-07,1.849937060753360774e-07,1.992239911580542352e-07,2.134542762407723930e-07,2.276845613234905507e-07,2.419148464062087085e-07,2.561451314889268927e-07,2.703754165716450770e-07,2.846057016543632612e-07,2.988359867370814454e-07,3.130662718197996297e-07,3.272965569025178139e-07,3.415268419852359981e-07,3.557571270679541824e-07,3.699874121506723666e-07,3.842176972333905509e-07,3.984479823161087351e-07,4.126782673988269193e-07,4.269085524815451036e-07,4.411388375642632878e-07,4.553691226469814720e-07,4.695994077296996563e-07,4.838296928124178405e-07,4.980599778951360777e-07,5.122902629778543149e-07,5.265205480605725520e-07,5.407508331432907892e-07,5.549811182260090264e-07,5.692114033087272636e-07,5.834416883914455007e-07,5.976719734741637379e-07,6.119022585568819751e-07,6.261325436396002123e-07,6.403628287223184494e-07,6.545931138050366866e-07,6.688233988877549238e-07,6.830536839704731610e-07,6.972839690531913981e-07,7.115142541359096353e-07,7.257445392186278725e-07,7.399748243013461097e-07,7.542051093840643468e-07,7.684353944667825840e-07,7.826656795495008212e-07,7.968959646322190584e-07,8.111262497149372955e-07,8.253565347976555327e-07,8.395868198803737699e-07,8.538171049630920071e-07,8.680473900458102443e-07,8.822776751285284814e-07,8.965079602112467186e-07 +0.000000000000000000e+00,1.461728284831177016e-08,2.923456569662354032e-08,4.385184854493531048e-08,5.846913139324708063e-08,7.308641424155885741e-08,8.770369708987063419e-08,1.023209799381824110e-07,1.169382627864941877e-07,1.315555456348059645e-07,1.461728284831177413e-07,1.607901113314295181e-07,1.754073941797412948e-07,1.900246770280530716e-07,2.046419598763648484e-07,2.192592427246766252e-07,2.338765255729884019e-07,2.484938084213001787e-07,2.631110912696119290e-07,2.777283741179236793e-07,2.923456569662354296e-07,3.069629398145471800e-07,3.215802226628589303e-07,3.361975055111706806e-07,3.508147883594824309e-07,3.654320712077941812e-07,3.800493540561059315e-07,3.946666369044176818e-07,4.092839197527294321e-07,4.239012026010411824e-07,4.385184854493529327e-07,4.531357682976646830e-07,4.677530511459764333e-07,4.823703339942882366e-07,4.969876168426000398e-07,5.116048996909118431e-07,5.262221825392236463e-07,5.408394653875354496e-07,5.554567482358472528e-07,5.700740310841590560e-07,5.846913139324708593e-07,5.993085967807826625e-07,6.139258796290944658e-07,6.285431624774062690e-07,6.431604453257180723e-07,6.577777281740298755e-07,6.723950110223416788e-07,6.870122938706534820e-07,7.016295767189652853e-07,7.162468595672770885e-07,7.308641424155888917e-07,7.454814252639006950e-07,7.600987081122124982e-07,7.747159909605243015e-07,7.893332738088361047e-07,8.039505566571479080e-07,8.185678395054597112e-07,8.331851223537715145e-07,8.478024052020833177e-07,8.624196880503951210e-07,8.770369708987069242e-07,8.916542537470187275e-07,9.062715365953305307e-07,9.208888194436423339e-07 +0.000000000000000000e+00,1.452979731438166817e-08,2.905959462876333634e-08,4.358939194314500450e-08,5.811918925752667267e-08,7.264898657190834084e-08,8.717878388629000901e-08,1.017085812006716772e-07,1.162383785150533453e-07,1.307681758294350135e-07,1.452979731438166817e-07,1.598277704581983498e-07,1.743575677725800180e-07,1.888873650869616862e-07,2.034171624013433543e-07,2.179469597157250225e-07,2.324767570301066907e-07,2.470065543444883853e-07,2.615363516588700800e-07,2.760661489732517746e-07,2.905959462876334692e-07,3.051257436020151639e-07,3.196555409163968585e-07,3.341853382307785531e-07,3.487151355451602478e-07,3.632449328595419424e-07,3.777747301739236371e-07,3.923045274883053317e-07,4.068343248026870263e-07,4.213641221170687210e-07,4.358939194314504156e-07,4.504237167458321102e-07,4.649535140602138049e-07,4.794833113745954995e-07,4.940131086889771942e-07,5.085429060033588888e-07,5.230727033177405834e-07,5.376025006321222781e-07,5.521322979465039727e-07,5.666620952608856673e-07,5.811918925752673620e-07,5.957216898896490566e-07,6.102514872040307513e-07,6.247812845184124459e-07,6.393110818327941405e-07,6.538408791471758352e-07,6.683706764615575298e-07,6.829004737759392244e-07,6.974302710903209191e-07,7.119600684047026137e-07,7.264898657190843083e-07,7.410196630334660030e-07,7.555494603478476976e-07,7.700792576622293923e-07,7.846090549766110869e-07,7.991388522909927815e-07,8.136686496053744762e-07,8.281984469197561708e-07,8.427282442341378654e-07,8.572580415485195601e-07,8.717878388629012547e-07,8.863176361772829494e-07,9.008474334916646440e-07,9.153772308060463386e-07 +0.000000000000000000e+00,1.449621354611490702e-08,2.899242709222981403e-08,4.348864063834471939e-08,5.798485418445962144e-08,7.248106773057452350e-08,8.697728127668942555e-08,1.014734948228043276e-07,1.159697083689192297e-07,1.304659219150341317e-07,1.449621354611490470e-07,1.594583490072639623e-07,1.739545625533788776e-07,1.884507760994937929e-07,2.029469896456087081e-07,2.174432031917236234e-07,2.319394167378385387e-07,2.464356302839534540e-07,2.609318438300683693e-07,2.754280573761832846e-07,2.899242709222981999e-07,3.044204844684131152e-07,3.189166980145280304e-07,3.334129115606429457e-07,3.479091251067578610e-07,3.624053386528727763e-07,3.769015521989876916e-07,3.913977657451026069e-07,4.058939792912175222e-07,4.203901928373324375e-07,4.348864063834473527e-07,4.493826199295622680e-07,4.638788334756771833e-07,4.783750470217920986e-07,4.928712605679070139e-07,5.073674741140219292e-07,5.218636876601368445e-07,5.363599012062517598e-07,5.508561147523666750e-07,5.653523282984815903e-07,5.798485418445965056e-07,5.943447553907114209e-07,6.088409689368263362e-07,6.233371824829412515e-07,6.378333960290561668e-07,6.523296095751710820e-07,6.668258231212859973e-07,6.813220366674009126e-07,6.958182502135158279e-07,7.103144637596307432e-07,7.248106773057456585e-07,7.393068908518605738e-07,7.538031043979754891e-07,7.682993179440904043e-07,7.827955314902053196e-07,7.972917450363202349e-07,8.117879585824351502e-07,8.262841721285500655e-07,8.407803856746649808e-07,8.552765992207798961e-07,8.697728127668948114e-07,8.842690263130097266e-07,8.987652398591246419e-07,9.132614534052395572e-07 +0.000000000000000000e+00,1.525579962301385216e-08,3.051159924602770432e-08,4.576739886904155316e-08,6.102319849205539540e-08,7.627899811506923763e-08,9.153479773808307986e-08,1.067905973610969221e-07,1.220463969841107643e-07,1.373021966071245933e-07,1.525579962301384223e-07,1.678137958531522513e-07,1.830695954761660803e-07,1.983253950991799093e-07,2.135811947221937383e-07,2.288369943452075673e-07,2.440927939682213698e-07,2.593485935912351724e-07,2.746043932142489749e-07,2.898601928372627774e-07,3.051159924602765799e-07,3.203717920832903825e-07,3.356275917063041850e-07,3.508833913293179875e-07,3.661391909523317900e-07,3.813949905753455926e-07,3.966507901983593951e-07,4.119065898213731976e-07,4.271623894443870002e-07,4.424181890674008027e-07,4.576739886904146052e-07,4.729297883134284077e-07,4.881855879364422103e-07,5.034413875594559598e-07,5.186971871824697094e-07,5.339529868054834590e-07,5.492087864284972086e-07,5.644645860515109582e-07,5.797203856745247078e-07,5.949761852975384574e-07,6.102319849205522070e-07,6.254877845435659565e-07,6.407435841665797061e-07,6.559993837895934557e-07,6.712551834126072053e-07,6.865109830356209549e-07,7.017667826586347045e-07,7.170225822816484541e-07,7.322783819046622037e-07,7.475341815276759532e-07,7.627899811506897028e-07,7.780457807737034524e-07,7.933015803967172020e-07,8.085573800197309516e-07,8.238131796427447012e-07,8.390689792657584508e-07,8.543247788887722004e-07,8.695805785117859499e-07,8.848363781347996995e-07,9.000921777578134491e-07,9.153479773808271987e-07,9.306037770038409483e-07,9.458595766268546979e-07,9.611153762498684475e-07 +0.000000000000000000e+00,1.575803619393199776e-08,3.151607238786399551e-08,4.727410858179599327e-08,6.303214477572799103e-08,7.879018096965999540e-08,9.454821716359199978e-08,1.103062533575240042e-07,1.260642895514560085e-07,1.418223257453880129e-07,1.575803619393200173e-07,1.733383981332520217e-07,1.890964343271840260e-07,2.048544705211160304e-07,2.206125067150480348e-07,2.363705429089800392e-07,2.521285791029120700e-07,2.678866152968441273e-07,2.836446514907761846e-07,2.994026876847082419e-07,3.151607238786402993e-07,3.309187600725723566e-07,3.466767962665044139e-07,3.624348324604364712e-07,3.781928686543685285e-07,3.939509048483005858e-07,4.097089410422326431e-07,4.254669772361647005e-07,4.412250134300967578e-07,4.569830496240288151e-07,4.727410858179608724e-07,4.884991220118929297e-07,5.042571582058249870e-07,5.200151943997570443e-07,5.357732305936891017e-07,5.515312667876211590e-07,5.672893029815532163e-07,5.830473391754852736e-07,5.988053753694173309e-07,6.145634115633493882e-07,6.303214477572814455e-07,6.460794839512135029e-07,6.618375201451455602e-07,6.775955563390776175e-07,6.933535925330096748e-07,7.091116287269417321e-07,7.248696649208737894e-07,7.406277011148058467e-07,7.563857373087379041e-07,7.721437735026699614e-07,7.879018096966020187e-07,8.036598458905340760e-07,8.194178820844661333e-07,8.351759182783981906e-07,8.509339544723302479e-07,8.666919906662623053e-07,8.824500268601943626e-07,8.982080630541264199e-07,9.139660992480584772e-07,9.297241354419905345e-07,9.454821716359225918e-07,9.612402078298547550e-07,9.769982440237869182e-07,9.927562802177190814e-07 +0.000000000000000000e+00,1.425660972233698793e-08,2.851321944467397587e-08,4.276982916701096215e-08,5.702643888934794512e-08,7.128304861168492809e-08,8.553965833402191106e-08,9.979626805635889403e-08,1.140528777786958770e-07,1.283094875010328600e-07,1.425660972233698562e-07,1.568227069457068524e-07,1.710793166680438486e-07,1.853359263903808448e-07,1.995925361127178410e-07,2.138491458350548372e-07,2.281057555573918334e-07,2.423623652797288296e-07,2.566189750020658258e-07,2.708755847244028220e-07,2.851321944467398182e-07,2.993888041690768144e-07,3.136454138914138107e-07,3.279020236137508069e-07,3.421586333360878031e-07,3.564152430584247993e-07,3.706718527807617955e-07,3.849284625030987917e-07,3.991850722254357879e-07,4.134416819477727841e-07,4.276982916701097803e-07,4.419549013924467765e-07,4.562115111147837727e-07,4.704681208371207689e-07,4.847247305594577651e-07,4.989813402817948143e-07,5.132379500041318634e-07,5.274945597264689126e-07,5.417511694488059617e-07,5.560077791711430108e-07,5.702643888934800600e-07,5.845209986158171091e-07,5.987776083381541583e-07,6.130342180604912074e-07,6.272908277828282566e-07,6.415474375051653057e-07,6.558040472275023549e-07,6.700606569498394040e-07,6.843172666721764532e-07,6.985738763945135023e-07,7.128304861168505515e-07,7.270870958391876006e-07,7.413437055615246497e-07,7.556003152838616989e-07,7.698569250061987480e-07,7.841135347285357972e-07,7.983701444508728463e-07,8.126267541732098955e-07,8.268833638955469446e-07,8.411399736178839938e-07,8.553965833402210429e-07,8.696531930625580921e-07,8.839098027848951412e-07,8.981664125072321903e-07 +0.000000000000000000e+00,1.417049511818924125e-08,2.834099023637848251e-08,4.251148535456772211e-08,5.668198047275695840e-08,7.085247559094620131e-08,8.502297070913544422e-08,9.919346582732468713e-08,1.133639609455139300e-07,1.275344560637031729e-07,1.417049511818924026e-07,1.558754463000816323e-07,1.700459414182708620e-07,1.842164365364600916e-07,1.983869316546493213e-07,2.125574267728385510e-07,2.267279218910277807e-07,2.408984170092170103e-07,2.550689121274062400e-07,2.692394072455954697e-07,2.834099023637846994e-07,2.975803974819739290e-07,3.117508926001631587e-07,3.259213877183523884e-07,3.400918828365416180e-07,3.542623779547308477e-07,3.684328730729200774e-07,3.826033681911093071e-07,3.967738633092985367e-07,4.109443584274877664e-07,4.251148535456769961e-07,4.392853486638662258e-07,4.534558437820554554e-07,4.676263389002446851e-07,4.817968340184339148e-07,4.959673291366231974e-07,5.101378242548124800e-07,5.243083193730017626e-07,5.384788144911910452e-07,5.526493096093803279e-07,5.668198047275696105e-07,5.809902998457588931e-07,5.951607949639481757e-07,6.093312900821374583e-07,6.235017852003267409e-07,6.376722803185160235e-07,6.518427754367053061e-07,6.660132705548945888e-07,6.801837656730838714e-07,6.943542607912731540e-07,7.085247559094624366e-07,7.226952510276517192e-07,7.368657461458410018e-07,7.510362412640302844e-07,7.652067363822195671e-07,7.793772315004088497e-07,7.935477266185981323e-07,8.077182217367874149e-07,8.218887168549766975e-07,8.360592119731659801e-07,8.502297070913552627e-07,8.644002022095445453e-07,8.785706973277338280e-07,8.927411924459231106e-07 +0.000000000000000000e+00,1.589809662985415153e-08,3.179619325970830306e-08,4.769428988956245128e-08,6.359238651941659289e-08,7.949048314927073449e-08,9.538857977912487609e-08,1.112866764089790177e-07,1.271847730388331593e-07,1.430828696686873141e-07,1.589809662985414690e-07,1.748790629283956238e-07,1.907771595582497787e-07,2.066752561881039335e-07,2.225733528179580883e-07,2.384714494478122432e-07,2.543695460776663715e-07,2.702676427075204999e-07,2.861657393373746283e-07,3.020638359672287566e-07,3.179619325970828850e-07,3.338600292269370134e-07,3.497581258567911418e-07,3.656562224866452701e-07,3.815543191164993985e-07,3.974524157463535269e-07,4.133505123762076552e-07,4.292486090060617836e-07,4.451467056359159120e-07,4.610448022657700403e-07,4.769428988956241687e-07,4.928409955254782971e-07,5.087390921553324254e-07,5.246371887851865538e-07,5.405352854150406822e-07,5.564333820448948106e-07,5.723314786747489389e-07,5.882295753046030673e-07,6.041276719344571957e-07,6.200257685643113240e-07,6.359238651941654524e-07,6.518219618240195808e-07,6.677200584538737091e-07,6.836181550837278375e-07,6.995162517135819659e-07,7.154143483434360942e-07,7.313124449732902226e-07,7.472105416031443510e-07,7.631086382329984793e-07,7.790067348628526077e-07,7.949048314927067361e-07,8.108029281225608645e-07,8.267010247524149928e-07,8.425991213822691212e-07,8.584972180121232496e-07,8.743953146419773779e-07,8.902934112718315063e-07,9.061915079016856347e-07,9.220896045315397630e-07,9.379877011613938914e-07,9.538857977912481257e-07,9.697838944211022540e-07,9.856819910509563824e-07,1.001580087680810511e-06 +0.000000000000000000e+00,1.425660972234959582e-08,2.851321944469919164e-08,4.276982916704878746e-08,5.702643888939838328e-08,7.128304861174797911e-08,8.553965833409757493e-08,9.979626805644717075e-08,1.140528777787967666e-07,1.283094875011463624e-07,1.425660972234959582e-07,1.568227069458455540e-07,1.710793166681951499e-07,1.853359263905447457e-07,1.995925361128943415e-07,2.138491458352439373e-07,2.281057555575935331e-07,2.423623652799431290e-07,2.566189750022927248e-07,2.708755847246423206e-07,2.851321944469919164e-07,2.993888041693415122e-07,3.136454138916911081e-07,3.279020236140407039e-07,3.421586333363902997e-07,3.564152430587398955e-07,3.706718527810894913e-07,3.849284625034390872e-07,3.991850722257886830e-07,4.134416819481382788e-07,4.276982916704878746e-07,4.419549013928374705e-07,4.562115111151870663e-07,4.704681208375366621e-07,4.847247305598862579e-07,4.989813402822359067e-07,5.132379500045855554e-07,5.274945597269352042e-07,5.417511694492848530e-07,5.560077791716345017e-07,5.702643888939841505e-07,5.845209986163337992e-07,5.987776083386834480e-07,6.130342180610330968e-07,6.272908277833827455e-07,6.415474375057323943e-07,6.558040472280820430e-07,6.700606569504316918e-07,6.843172666727813406e-07,6.985738763951309893e-07,7.128304861174806381e-07,7.270870958398302868e-07,7.413437055621799356e-07,7.556003152845295844e-07,7.698569250068792331e-07,7.841135347292288819e-07,7.983701444515785306e-07,8.126267541739281794e-07,8.268833638962778282e-07,8.411399736186274769e-07,8.553965833409771257e-07,8.696531930633267745e-07,8.839098027856764232e-07,8.981664125080260720e-07 +0.000000000000000000e+00,1.417049511820225777e-08,2.834099023640451554e-08,4.251148535460677165e-08,5.668198047280902446e-08,7.085247559101127726e-08,8.502297070921353007e-08,9.919346582741578287e-08,1.133639609456180357e-07,1.275344560638202752e-07,1.417049511820225281e-07,1.558754463002247809e-07,1.700459414184270337e-07,1.842164365366292865e-07,1.983869316548315393e-07,2.125574267730337921e-07,2.267279218912360449e-07,2.408984170094382977e-07,2.550689121276405505e-07,2.692394072458428033e-07,2.834099023640450561e-07,2.975803974822473089e-07,3.117508926004495617e-07,3.259213877186518145e-07,3.400918828368540673e-07,3.542623779550563201e-07,3.684328730732585729e-07,3.826033681914608257e-07,3.967738633096630785e-07,4.109443584278653314e-07,4.251148535460675842e-07,4.392853486642698370e-07,4.534558437824720898e-07,4.676263389006743426e-07,4.817968340188765954e-07,4.959673291370789011e-07,5.101378242552812069e-07,5.243083193734835126e-07,5.384788144916858184e-07,5.526493096098881241e-07,5.668198047280904299e-07,5.809902998462927356e-07,5.951607949644950413e-07,6.093312900826973471e-07,6.235017852008996528e-07,6.376722803191019586e-07,6.518427754373042643e-07,6.660132705555065701e-07,6.801837656737088758e-07,6.943542607919111816e-07,7.085247559101134873e-07,7.226952510283157930e-07,7.368657461465180988e-07,7.510362412647204045e-07,7.652067363829227103e-07,7.793772315011250160e-07,7.935477266193273218e-07,8.077182217375296275e-07,8.218887168557319333e-07,8.360592119739342390e-07,8.502297070921365447e-07,8.644002022103388505e-07,8.785706973285411562e-07,8.927411924467434620e-07 +0.000000000000000000e+00,1.589809662986739965e-08,3.179619325973479931e-08,4.769428988960219566e-08,6.359238651946958538e-08,7.949048314933697511e-08,9.538857977920436484e-08,1.112866764090717546e-07,1.271847730389391443e-07,1.430828696688065340e-07,1.589809662986739238e-07,1.748790629285413135e-07,1.907771595584087032e-07,2.066752561882760929e-07,2.225733528181434827e-07,2.384714494480108724e-07,2.543695460778782357e-07,2.702676427077455989e-07,2.861657393376129622e-07,3.020638359674803254e-07,3.179619325973476887e-07,3.338600292272150520e-07,3.497581258570824152e-07,3.656562224869497785e-07,3.815543191168171417e-07,3.974524157466845050e-07,4.133505123765518682e-07,4.292486090064192315e-07,4.451467056362865948e-07,4.610448022661539580e-07,4.769428988960213213e-07,4.928409955258886845e-07,5.087390921557560478e-07,5.246371887856234111e-07,5.405352854154907743e-07,5.564333820453581376e-07,5.723314786752255008e-07,5.882295753050928641e-07,6.041276719349602273e-07,6.200257685648275906e-07,6.359238651946949539e-07,6.518219618245623171e-07,6.677200584544296804e-07,6.836181550842970436e-07,6.995162517141644069e-07,7.154143483440317702e-07,7.313124449738991334e-07,7.472105416037664967e-07,7.631086382336338599e-07,7.790067348635012232e-07,7.949048314933685865e-07,8.108029281232359497e-07,8.267010247531033130e-07,8.425991213829706762e-07,8.584972180128380395e-07,8.743953146427054027e-07,8.902934112725727660e-07,9.061915079024401293e-07,9.220896045323074925e-07,9.379877011621748558e-07,9.538857977920422190e-07,9.697838944219094764e-07,9.856819910517767338e-07,1.001580087681643991e-06 +0.000000000000000000e+00,1.475123889226755626e-08,2.950247778453511251e-08,4.425371667680266711e-08,5.900495556907021841e-08,7.375619446133776970e-08,8.850743335360532099e-08,1.032586722458728723e-07,1.180099111381404236e-07,1.327611500304079749e-07,1.475123889226755394e-07,1.622636278149431039e-07,1.770148667072106685e-07,1.917661055994782330e-07,2.065173444917457975e-07,2.212685833840133620e-07,2.360198222762809266e-07,2.507710611685484911e-07,2.655223000608160556e-07,2.802735389530836201e-07,2.950247778453511847e-07,3.097760167376187492e-07,3.245272556298863137e-07,3.392784945221538783e-07,3.540297334144214428e-07,3.687809723066890073e-07,3.835322111989565718e-07,3.982834500912241364e-07,4.130346889834917009e-07,4.277859278757592654e-07,4.425371667680268300e-07,4.572884056602943945e-07,4.720396445525619590e-07,4.867908834448295235e-07,5.015421223370970881e-07,5.162933612293646526e-07,5.310446001216322171e-07,5.457958390138997816e-07,5.605470779061673462e-07,5.752983167984349107e-07,5.900495556907024752e-07,6.048007945829700398e-07,6.195520334752376043e-07,6.343032723675051688e-07,6.490545112597727333e-07,6.638057501520402979e-07,6.785569890443078624e-07,6.933082279365754269e-07,7.080594668288429914e-07,7.228107057211105560e-07,7.375619446133781205e-07,7.523131835056456850e-07,7.670644223979132496e-07,7.818156612901808141e-07,7.965669001824483786e-07,8.113181390747159431e-07,8.260693779669835077e-07,8.408206168592510722e-07,8.555718557515186367e-07,8.703230946437862013e-07,8.850743335360537658e-07,8.998255724283213303e-07,9.145768113205888948e-07,9.293280502128564594e-07 +0.000000000000000000e+00,1.445870886242704169e-08,2.891741772485408338e-08,4.337612658728112673e-08,5.783483544970817338e-08,7.229354431213522666e-08,8.675225317456227993e-08,1.012109620369893332e-07,1.156696708994163865e-07,1.301283797618434397e-07,1.445870886242705062e-07,1.590457974866975728e-07,1.735045063491246393e-07,1.879632152115517058e-07,2.024219240739787723e-07,2.168806329364058388e-07,2.313393417988329053e-07,2.457980506612599453e-07,2.602567595236869854e-07,2.747154683861140254e-07,2.891741772485410654e-07,3.036328861109681055e-07,3.180915949733951455e-07,3.325503038358221856e-07,3.470090126982492256e-07,3.614677215606762656e-07,3.759264304231033057e-07,3.903851392855303457e-07,4.048438481479573857e-07,4.193025570103844258e-07,4.337612658728114658e-07,4.482199747352385058e-07,4.626786835976655459e-07,4.771373924600925859e-07,4.915961013225196789e-07,5.060548101849467719e-07,5.205135190473738649e-07,5.349722279098009578e-07,5.494309367722280508e-07,5.638896456346551438e-07,5.783483544970822368e-07,5.928070633595093297e-07,6.072657722219364227e-07,6.217244810843635157e-07,6.361831899467906087e-07,6.506418988092177016e-07,6.651006076716447946e-07,6.795593165340718876e-07,6.940180253964989806e-07,7.084767342589260735e-07,7.229354431213531665e-07,7.373941519837802595e-07,7.518528608462073525e-07,7.663115697086344455e-07,7.807702785710615384e-07,7.952289874334886314e-07,8.096876962959157244e-07,8.241464051583428174e-07,8.386051140207699103e-07,8.530638228831970033e-07,8.675225317456240963e-07,8.819812406080511893e-07,8.964399494704782822e-07,9.108986583329053752e-07 +0.000000000000000000e+00,1.639544564301376773e-08,3.279089128602753545e-08,4.918633692904130318e-08,6.558178257205507090e-08,8.197722821506883863e-08,9.837267385808260635e-08,1.147681195010963741e-07,1.311635651441101418e-07,1.475590107871239095e-07,1.639544564301376773e-07,1.803499020731514450e-07,1.967453477161652127e-07,2.131407933591789804e-07,2.295362390021927482e-07,2.459316846452064894e-07,2.623271302882202307e-07,2.787225759312339719e-07,2.951180215742477132e-07,3.115134672172614544e-07,3.279089128602751957e-07,3.443043585032889369e-07,3.606998041463026782e-07,3.770952497893164195e-07,3.934906954323301607e-07,4.098861410753439020e-07,4.262815867183576432e-07,4.426770323613713845e-07,4.590724780043851257e-07,4.754679236473988670e-07,4.918633692904125553e-07,5.082588149334262436e-07,5.246542605764399319e-07,5.410497062194536202e-07,5.574451518624673086e-07,5.738405975054809969e-07,5.902360431484946852e-07,6.066314887915083735e-07,6.230269344345220618e-07,6.394223800775357501e-07,6.558178257205494385e-07,6.722132713635631268e-07,6.886087170065768151e-07,7.050041626495905034e-07,7.213996082926041917e-07,7.377950539356178800e-07,7.541904995786315684e-07,7.705859452216452567e-07,7.869813908646589450e-07,8.033768365076726333e-07,8.197722821506863216e-07,8.361677277937000099e-07,8.525631734367136983e-07,8.689586190797273866e-07,8.853540647227410749e-07,9.017495103657547632e-07,9.181449560087684515e-07,9.345404016517821398e-07,9.509358472947958281e-07,9.673312929378095165e-07,9.837267385808232048e-07,1.000122184223836893e-06,1.016517629866850581e-06,1.032913075509864270e-06 +0.000000000000000000e+00,1.475123889227914836e-08,2.950247778455829673e-08,4.425371667683744840e-08,5.900495556911660008e-08,7.375619446139575175e-08,8.850743335367489681e-08,1.032586722459540419e-07,1.180099111382331869e-07,1.327611500305123187e-07,1.475123889227914506e-07,1.622636278150705824e-07,1.770148667073497142e-07,1.917661055996288460e-07,2.065173444919079778e-07,2.212685833841871097e-07,2.360198222764662415e-07,2.507710611687453733e-07,2.655223000610245316e-07,2.802735389533036899e-07,2.950247778455828482e-07,3.097760167378620065e-07,3.245272556301411648e-07,3.392784945224203231e-07,3.540297334146994813e-07,3.687809723069786396e-07,3.835322111992577979e-07,3.982834500915369562e-07,4.130346889838161145e-07,4.277859278760952728e-07,4.425371667683744311e-07,4.572884056606535894e-07,4.720396445529327477e-07,4.867908834452119589e-07,5.015421223374911701e-07,5.162933612297703814e-07,5.310446001220495926e-07,5.457958390143288038e-07,5.605470779066080151e-07,5.752983167988872263e-07,5.900495556911664375e-07,6.048007945834456488e-07,6.195520334757248600e-07,6.343032723680040712e-07,6.490545112602832824e-07,6.638057501525624937e-07,6.785569890448417049e-07,6.933082279371209161e-07,7.080594668294001274e-07,7.228107057216793386e-07,7.375619446139585498e-07,7.523131835062377611e-07,7.670644223985169723e-07,7.818156612907961835e-07,7.965669001830753948e-07,8.113181390753546060e-07,8.260693779676338172e-07,8.408206168599130284e-07,8.555718557521922397e-07,8.703230946444714509e-07,8.850743335367506621e-07,8.998255724290298734e-07,9.145768113213090846e-07,9.293280502135882958e-07 +0.000000000000000000e+00,1.445870886243921614e-08,2.891741772487843227e-08,4.337612658731764841e-08,5.783483544975686454e-08,7.229354431219608068e-08,8.675225317463529681e-08,1.012109620370745129e-07,1.156696708995137291e-07,1.301283797619529452e-07,1.445870886243921614e-07,1.590457974868313775e-07,1.735045063492705936e-07,1.879632152117098098e-07,2.024219240741490259e-07,2.168806329365882420e-07,2.313393417990274582e-07,2.457980506614666743e-07,2.602567595239058904e-07,2.747154683863451066e-07,2.891741772487843227e-07,3.036328861112235388e-07,3.180915949736627550e-07,3.325503038361019711e-07,3.470090126985411873e-07,3.614677215609804034e-07,3.759264304234196195e-07,3.903851392858588357e-07,4.048438481482980518e-07,4.193025570107372679e-07,4.337612658731764841e-07,4.482199747356157002e-07,4.626786835980549163e-07,4.771373924604940795e-07,4.915961013229332427e-07,5.060548101853724059e-07,5.205135190478115691e-07,5.349722279102507323e-07,5.494309367726898955e-07,5.638896456351290587e-07,5.783483544975682219e-07,5.928070633600073851e-07,6.072657722224465483e-07,6.217244810848857115e-07,6.361831899473248747e-07,6.506418988097640379e-07,6.651006076722032011e-07,6.795593165346423643e-07,6.940180253970815275e-07,7.084767342595206907e-07,7.229354431219598539e-07,7.373941519843990171e-07,7.518528608468381803e-07,7.663115697092773435e-07,7.807702785717165067e-07,7.952289874341556699e-07,8.096876962965948330e-07,8.241464051590339962e-07,8.386051140214731594e-07,8.530638228839123226e-07,8.675225317463514858e-07,8.819812406087906490e-07,8.964399494712298122e-07,9.108986583336689754e-07 +0.000000000000000000e+00,1.639544564302625815e-08,3.279089128605251630e-08,4.918633692907877115e-08,6.558178257210501938e-08,8.197722821513126760e-08,9.837267385815751583e-08,1.147681195011837641e-07,1.311635651442100123e-07,1.475590107872362737e-07,1.639544564302625352e-07,1.803499020732887967e-07,1.967453477163150581e-07,2.131407933593413196e-07,2.295362390023675810e-07,2.459316846453938425e-07,2.623271302884200775e-07,2.787225759314463125e-07,2.951180215744725475e-07,3.115134672174987825e-07,3.279089128605250175e-07,3.443043585035512525e-07,3.606998041465774874e-07,3.770952497896037224e-07,3.934906954326299574e-07,4.098861410756561924e-07,4.262815867186824274e-07,4.426770323617086624e-07,4.590724780047348974e-07,4.754679236477611324e-07,4.918633692907873674e-07,5.082588149338135494e-07,5.246542605768397315e-07,5.410497062198659135e-07,5.574451518628920956e-07,5.738405975059182776e-07,5.902360431489444597e-07,6.066314887919706417e-07,6.230269344349968238e-07,6.394223800780230058e-07,6.558178257210491879e-07,6.722132713640753700e-07,6.886087170071015520e-07,7.050041626501277341e-07,7.213996082931539161e-07,7.377950539361800982e-07,7.541904995792062802e-07,7.705859452222324623e-07,7.869813908652586443e-07,8.033768365082848264e-07,8.197722821513110084e-07,8.361677277943371905e-07,8.525631734373633725e-07,8.689586190803895546e-07,8.853540647234157366e-07,9.017495103664419187e-07,9.181449560094681007e-07,9.345404016524942828e-07,9.509358472955204648e-07,9.673312929385466469e-07,9.837267385815728289e-07,1.000122184224599011e-06,1.016517629867625193e-06,1.032913075510651375e-06 +0.000000000000000000e+00,1.549357891876008513e-08,3.098715783752017025e-08,4.648073675628025538e-08,6.197431567504034051e-08,7.746789459380043225e-08,9.296147351256052399e-08,1.084550524313206157e-07,1.239486313500807075e-07,1.394422102688407992e-07,1.549357891876008910e-07,1.704293681063609827e-07,1.859229470251210745e-07,2.014165259438811662e-07,2.169101048626412579e-07,2.324036837814013497e-07,2.478972627001614679e-07,2.633908416189215861e-07,2.788844205376817043e-07,2.943779994564418225e-07,3.098715783752019408e-07,3.253651572939620590e-07,3.408587362127221772e-07,3.563523151314822954e-07,3.718458940502424136e-07,3.873394729690025318e-07,4.028330518877626500e-07,4.183266308065227683e-07,4.338202097252828865e-07,4.493137886440430047e-07,4.648073675628031229e-07,4.803009464815632411e-07,4.957945254003233593e-07,5.112881043190834775e-07,5.267816832378435957e-07,5.422752621566037140e-07,5.577688410753638322e-07,5.732624199941239504e-07,5.887559989128840686e-07,6.042495778316441868e-07,6.197431567504043050e-07,6.352367356691644232e-07,6.507303145879245415e-07,6.662238935066846597e-07,6.817174724254447779e-07,6.972110513442048961e-07,7.127046302629650143e-07,7.281982091817251325e-07,7.436917881004852507e-07,7.591853670192453690e-07,7.746789459380054872e-07,7.901725248567656054e-07,8.056661037755257236e-07,8.211596826942858418e-07,8.366532616130459600e-07,8.521468405318060782e-07,8.676404194505661964e-07,8.831339983693263147e-07,8.986275772880864329e-07,9.141211562068465511e-07,9.296147351256066693e-07,9.451083140443667875e-07,9.606018929631269057e-07,9.760954718818871298e-07 +0.000000000000000000e+00,1.510307396990612384e-08,3.020614793981224767e-08,4.530922190971836820e-08,6.041229587962448211e-08,7.551536984953059601e-08,9.061844381943670992e-08,1.057215177893428238e-07,1.208245917592489377e-07,1.359276657291550516e-07,1.510307396990611656e-07,1.661338136689672795e-07,1.812368876388733934e-07,1.963399616087795073e-07,2.114430355786856212e-07,2.265461095485917351e-07,2.416491835184978225e-07,2.567522574884039100e-07,2.718553314583099974e-07,2.869584054282160849e-07,3.020614793981221723e-07,3.171645533680282597e-07,3.322676273379343472e-07,3.473707013078404346e-07,3.624737752777465221e-07,3.775768492476526095e-07,3.926799232175586969e-07,4.077829971874647844e-07,4.228860711573708718e-07,4.379891451272769592e-07,4.530922190971830467e-07,4.681952930670891341e-07,4.832983670369952216e-07,4.984014410069013090e-07,5.135045149768073964e-07,5.286075889467134839e-07,5.437106629166195713e-07,5.588137368865256588e-07,5.739168108564317462e-07,5.890198848263378336e-07,6.041229587962439211e-07,6.192260327661500085e-07,6.343291067360560960e-07,6.494321807059621834e-07,6.645352546758682708e-07,6.796383286457743583e-07,6.947414026156804457e-07,7.098444765855865332e-07,7.249475505554926206e-07,7.400506245253987080e-07,7.551536984953047955e-07,7.702567724652108829e-07,7.853598464351169703e-07,8.004629204050230578e-07,8.155659943749291452e-07,8.306690683448352327e-07,8.457721423147413201e-07,8.608752162846474075e-07,8.759782902545534950e-07,8.910813642244595824e-07,9.061844381943656699e-07,9.212875121642717573e-07,9.363905861341778447e-07,9.514936601040839322e-07 +0.000000000000000000e+00,1.716194458457997096e-08,3.432388916915994192e-08,5.148583375373990957e-08,6.864777833831987060e-08,8.580972292289983164e-08,1.029716675074797927e-07,1.201336120920597537e-07,1.372955566766397147e-07,1.544575012612196758e-07,1.716194458457996368e-07,1.887813904303795978e-07,2.059433350149595589e-07,2.231052795995395199e-07,2.402672241841195074e-07,2.574291687686994949e-07,2.745911133532794824e-07,2.917530579378594699e-07,3.089150025224394574e-07,3.260769471070194449e-07,3.432388916915994324e-07,3.604008362761794199e-07,3.775627808607594074e-07,3.947247254453393949e-07,4.118866700299193824e-07,4.290486146144993699e-07,4.462105591990793575e-07,4.633725037836593450e-07,4.805344483682393325e-07,4.976963929528192670e-07,5.148583375373992016e-07,5.320202821219791362e-07,5.491822267065590707e-07,5.663441712911390053e-07,5.835061158757189398e-07,6.006680604602988744e-07,6.178300050448788090e-07,6.349919496294587435e-07,6.521538942140386781e-07,6.693158387986186127e-07,6.864777833831985472e-07,7.036397279677784818e-07,7.208016725523584164e-07,7.379636171369383509e-07,7.551255617215182855e-07,7.722875063060982200e-07,7.894494508906781546e-07,8.066113954752580892e-07,8.237733400598380237e-07,8.409352846444179583e-07,8.580972292289978929e-07,8.752591738135778274e-07,8.924211183981577620e-07,9.095830629827376966e-07,9.267450075673176311e-07,9.439069521518975657e-07,9.610688967364776061e-07,9.782308413210576466e-07,9.953927859056376870e-07,1.012554730490217727e-06,1.029716675074797768e-06,1.046878619659377808e-06,1.064040564243957849e-06,1.081202508828537889e-06 +0.000000000000000000e+00,1.549357891877079215e-08,3.098715783754158430e-08,4.648073675631237646e-08,6.197431567508316861e-08,7.746789459385395414e-08,9.296147351262473968e-08,1.084550524313955252e-07,1.239486313501663107e-07,1.394422102689370963e-07,1.549357891877078818e-07,1.704293681064786674e-07,1.859229470252494529e-07,2.014165259440202384e-07,2.169101048627910240e-07,2.324036837815618095e-07,2.478972627003325686e-07,2.633908416191033276e-07,2.788844205378740867e-07,2.943779994566448458e-07,3.098715783754156048e-07,3.253651572941863639e-07,3.408587362129571229e-07,3.563523151317278820e-07,3.718458940504986411e-07,3.873394729692694001e-07,4.028330518880401592e-07,4.183266308068109183e-07,4.338202097255816773e-07,4.493137886443524364e-07,4.648073675631231955e-07,4.803009464818939016e-07,4.957945254006646077e-07,5.112881043194353138e-07,5.267816832382060200e-07,5.422752621569767261e-07,5.577688410757474322e-07,5.732624199945181383e-07,5.887559989132888445e-07,6.042495778320595506e-07,6.197431567508302567e-07,6.352367356696009628e-07,6.507303145883716690e-07,6.662238935071423751e-07,6.817174724259130812e-07,6.972110513446837873e-07,7.127046302634544935e-07,7.281982091822251996e-07,7.436917881009959057e-07,7.591853670197666119e-07,7.746789459385373180e-07,7.901725248573080241e-07,8.056661037760787302e-07,8.211596826948494364e-07,8.366532616136201425e-07,8.521468405323908486e-07,8.676404194511615547e-07,8.831339983699322609e-07,8.986275772887029670e-07,9.141211562074736731e-07,9.296147351262443792e-07,9.451083140450150854e-07,9.606018929637856856e-07,9.760954718825562858e-07 +0.000000000000000000e+00,1.510307396991732386e-08,3.020614793983464772e-08,4.530922190975197158e-08,6.041229587966929544e-08,7.551536984958661930e-08,9.061844381950394316e-08,1.057215177894212670e-07,1.208245917593385909e-07,1.359276657292559015e-07,1.510307396991732121e-07,1.661338136690905228e-07,1.812368876390078334e-07,1.963399616089251440e-07,2.114430355788424546e-07,2.265461095487597653e-07,2.416491835186770759e-07,2.567522574885943865e-07,2.718553314585116971e-07,2.869584054284290078e-07,3.020614793983463184e-07,3.171645533682636290e-07,3.322676273381809396e-07,3.473707013080982503e-07,3.624737752780155609e-07,3.775768492479328715e-07,3.926799232178501821e-07,4.077829971877674928e-07,4.228860711576848034e-07,4.379891451276021140e-07,4.530922190975194246e-07,4.681952930674367353e-07,4.832983670373540459e-07,4.984014410072713565e-07,5.135045149771886671e-07,5.286075889471059778e-07,5.437106629170232884e-07,5.588137368869405990e-07,5.739168108568579097e-07,5.890198848267752203e-07,6.041229587966925309e-07,6.192260327666098415e-07,6.343291067365271522e-07,6.494321807064444628e-07,6.645352546763617734e-07,6.796383286462790840e-07,6.947414026161963947e-07,7.098444765861137053e-07,7.249475505560310159e-07,7.400506245259483265e-07,7.551536984958656372e-07,7.702567724657829478e-07,7.853598464357002584e-07,8.004629204056175690e-07,8.155659943755348797e-07,8.306690683454521903e-07,8.457721423153695009e-07,8.608752162852868115e-07,8.759782902552041222e-07,8.910813642251214328e-07,9.061844381950387434e-07,9.212875121649560540e-07,9.363905861348733647e-07,9.514936601047906753e-07 +0.000000000000000000e+00,1.716194458459151509e-08,3.432388916918303018e-08,5.148583375377454528e-08,6.864777833836606037e-08,8.580972292295757546e-08,1.029716675075490906e-07,1.201336120921405924e-07,1.372955566767320943e-07,1.544575012613235961e-07,1.716194458459150980e-07,1.887813904305065998e-07,2.059433350150981017e-07,2.231052795996896036e-07,2.402672241842810789e-07,2.574291687688725543e-07,2.745911133534640297e-07,2.917530579380555051e-07,3.089150025226469805e-07,3.260769471072384559e-07,3.432388916918299313e-07,3.604008362764214067e-07,3.775627808610128820e-07,3.947247254456043574e-07,4.118866700301958328e-07,4.290486146147873082e-07,4.462105591993787836e-07,4.633725037839702590e-07,4.805344483685617344e-07,4.976963929531532098e-07,5.148583375377446852e-07,5.320202821223361605e-07,5.491822267069276359e-07,5.663441712915191113e-07,5.835061158761105867e-07,6.006680604607020621e-07,6.178300050452935375e-07,6.349919496298850129e-07,6.521538942144764883e-07,6.693158387990679636e-07,6.864777833836594390e-07,7.036397279682509144e-07,7.208016725528423898e-07,7.379636171374338652e-07,7.551255617220253406e-07,7.722875063066168160e-07,7.894494508912082914e-07,8.066113954757997667e-07,8.237733400603912421e-07,8.409352846449827175e-07,8.580972292295741929e-07,8.752591738141656683e-07,8.924211183987571437e-07,9.095830629833486191e-07,9.267450075679400945e-07,9.439069521525315698e-07,9.610688967371230452e-07,9.782308413217145206e-07,9.953927859063059960e-07,1.012554730490897471e-06,1.029716675075488947e-06,1.046878619660080422e-06,1.064040564244671898e-06,1.081202508829263373e-06 +0.000000000000000000e+00,1.631855879203762930e-08,3.263711758407525859e-08,4.895567637611289120e-08,6.527423516815053042e-08,8.159279396018816965e-08,9.791135275222580887e-08,1.142299115442634481e-07,1.305484703363010873e-07,1.468670291283387398e-07,1.631855879203763922e-07,1.795041467124140447e-07,1.958227055044516972e-07,2.121412642964893496e-07,2.284598230885270021e-07,2.447783818805646545e-07,2.610969406726023335e-07,2.774154994646400124e-07,2.937340582566776913e-07,3.100526170487153702e-07,3.263711758407530492e-07,3.426897346327907281e-07,3.590082934248284070e-07,3.753268522168660860e-07,3.916454110089037649e-07,4.079639698009414438e-07,4.242825285929791227e-07,4.406010873850168017e-07,4.569196461770544806e-07,4.732382049690921595e-07,4.895567637611298385e-07,5.058753225531675174e-07,5.221938813452051963e-07,5.385124401372428752e-07,5.548309989292805542e-07,5.711495577213182331e-07,5.874681165133559120e-07,6.037866753053935910e-07,6.201052340974312699e-07,6.364237928894689488e-07,6.527423516815066277e-07,6.690609104735443067e-07,6.853794692655819856e-07,7.016980280576196645e-07,7.180165868496573434e-07,7.343351456416950224e-07,7.506537044337327013e-07,7.669722632257703802e-07,7.832908220178080592e-07,7.996093808098457381e-07,8.159279396018834170e-07,8.322464983939210959e-07,8.485650571859587749e-07,8.648836159779964538e-07,8.812021747700341327e-07,8.975207335620718117e-07,9.138392923541094906e-07,9.301578511461471695e-07,9.464764099381848484e-07,9.627949687302225274e-07,9.791135275222603122e-07,9.954320863142980970e-07,1.011750645106335882e-06,1.028069203898373667e-06 +0.000000000000000000e+00,1.590351524614052730e-08,3.180703049228105459e-08,4.771054573842157858e-08,6.361406098456209595e-08,7.951757623070261331e-08,9.542109147684313068e-08,1.113246067229836481e-07,1.272281219691241654e-07,1.431316372152646828e-07,1.590351524614052002e-07,1.749386677075457175e-07,1.908421829536862349e-07,2.067456981998267523e-07,2.226492134459672696e-07,2.385527286921077870e-07,2.544562439382482779e-07,2.703597591843887688e-07,2.862632744305292597e-07,3.021667896766697506e-07,3.180703049228102415e-07,3.339738201689507324e-07,3.498773354150912233e-07,3.657808506612317142e-07,3.816843659073722051e-07,3.975878811535126960e-07,4.134913963996531869e-07,4.293949116457936778e-07,4.452984268919341687e-07,4.612019421380746596e-07,4.771054573842151505e-07,4.930089726303556943e-07,5.089124878764962382e-07,5.248160031226367820e-07,5.407195183687773258e-07,5.566230336149178697e-07,5.725265488610584135e-07,5.884300641071989574e-07,6.043335793533395012e-07,6.202370945994800450e-07,6.361406098456205889e-07,6.520441250917611327e-07,6.679476403379016766e-07,6.838511555840422204e-07,6.997546708301827642e-07,7.156581860763233081e-07,7.315617013224638519e-07,7.474652165686043957e-07,7.633687318147449396e-07,7.792722470608854834e-07,7.951757623070260273e-07,8.110792775531665711e-07,8.269827927993071149e-07,8.428863080454476588e-07,8.587898232915882026e-07,8.746933385377287465e-07,8.905968537838692903e-07,9.065003690300098341e-07,9.224038842761503780e-07,9.383073995222909218e-07,9.542109147684313598e-07,9.701144300145717977e-07,9.860179452607122357e-07,1.001921460506852674e-06 +0.000000000000000000e+00,1.807153424899801550e-08,3.614306849799603100e-08,5.421460274699404650e-08,7.228613699599206200e-08,9.035767124499008412e-08,1.084292054939881062e-07,1.265007397429861284e-07,1.445722739919841505e-07,1.626438082409821726e-07,1.807153424899801947e-07,1.987868767389782168e-07,2.168584109879762390e-07,2.349299452369742611e-07,2.530014794859722567e-07,2.710730137349702524e-07,2.891445479839682480e-07,3.072160822329662437e-07,3.252876164819642393e-07,3.433591507309622350e-07,3.614306849799602306e-07,3.795022192289582263e-07,3.975737534779562219e-07,4.156452877269542176e-07,4.337168219759522132e-07,4.517883562249502089e-07,4.698598904739482045e-07,4.879314247229462002e-07,5.060029589719441958e-07,5.240744932209421914e-07,5.421460274699401871e-07,5.602175617189381827e-07,5.782890959679361784e-07,5.963606302169341740e-07,6.144321644659321697e-07,6.325036987149301653e-07,6.505752329639281610e-07,6.686467672129261566e-07,6.867183014619241523e-07,7.047898357109221479e-07,7.228613699599201436e-07,7.409329042089181392e-07,7.590044384579161349e-07,7.770759727069141305e-07,7.951475069559121262e-07,8.132190412049101218e-07,8.312905754539081175e-07,8.493621097029061131e-07,8.674336439519041088e-07,8.855051782009021044e-07,9.035767124499001001e-07,9.216482466988980957e-07,9.397197809478960914e-07,9.577913151968939811e-07,9.758628494458917650e-07,9.939343836948895489e-07,1.012005917943887333e-06,1.030077452192885117e-06,1.048148986441882901e-06,1.066220520690880684e-06,1.084292054939878468e-06,1.102363589188876252e-06,1.120435123437874036e-06,1.138506657686871820e-06 +0.000000000000000000e+00,1.631855879204745289e-08,3.263711758409490579e-08,4.895567637614235868e-08,6.527423516818981158e-08,8.159279396023725785e-08,9.791135275228470413e-08,1.142299115443321504e-07,1.305484703363795967e-07,1.468670291284270430e-07,1.631855879204744892e-07,1.795041467125219355e-07,1.958227055045693818e-07,2.121412642966168281e-07,2.284598230886642743e-07,2.447783818807117206e-07,2.610969406727591404e-07,2.774154994648065602e-07,2.937340582568539800e-07,3.100526170489013999e-07,3.263711758409488197e-07,3.426897346329962395e-07,3.590082934250436593e-07,3.753268522170910791e-07,3.916454110091384989e-07,4.079639698011859187e-07,4.242825285932333385e-07,4.406010873852807583e-07,4.569196461773281781e-07,4.732382049693755979e-07,4.895567637614230177e-07,5.058753225534704375e-07,5.221938813455178573e-07,5.385124401375652772e-07,5.548309989296126970e-07,5.711495577216601168e-07,5.874681165137075366e-07,6.037866753057549564e-07,6.201052340978023762e-07,6.364237928898497960e-07,6.527423516818972158e-07,6.690609104739446356e-07,6.853794692659920554e-07,7.016980280580394752e-07,7.180165868500868950e-07,7.343351456421343148e-07,7.506537044341817346e-07,7.669722632262291545e-07,7.832908220182765743e-07,7.996093808103239941e-07,8.159279396023714139e-07,8.322464983944188337e-07,8.485650571864662535e-07,8.648836159785136733e-07,8.812021747705610931e-07,8.975207335626085129e-07,9.138392923546559327e-07,9.301578511467033525e-07,9.464764099387507723e-07,9.627949687307982980e-07,9.791135275228458237e-07,9.954320863148933494e-07,1.011750645106940875e-06,1.028069203898988401e-06 +0.000000000000000000e+00,1.590351524615072809e-08,3.180703049230145617e-08,4.771054573845218426e-08,6.361406098460291235e-08,7.951757623075364705e-08,9.542109147690438175e-08,1.113246067230551165e-07,1.272281219692058512e-07,1.431316372153565859e-07,1.590351524615073206e-07,1.749386677076580553e-07,1.908421829538087900e-07,2.067456981999595247e-07,2.226492134461102594e-07,2.385527286922609941e-07,2.544562439384117553e-07,2.703597591845625164e-07,2.862632744307132776e-07,3.021667896768640388e-07,3.180703049230148000e-07,3.339738201691655611e-07,3.498773354153163223e-07,3.657808506614670835e-07,3.816843659076178447e-07,3.975878811537686058e-07,4.134913963999193670e-07,4.293949116460701282e-07,4.452984268922208893e-07,4.612019421383716505e-07,4.771054573845224117e-07,4.930089726306731199e-07,5.089124878768238282e-07,5.248160031229745364e-07,5.407195183691252446e-07,5.566230336152759529e-07,5.725265488614266611e-07,5.884300641075773693e-07,6.043335793537280776e-07,6.202370945998787858e-07,6.361406098460294940e-07,6.520441250921802023e-07,6.679476403383309105e-07,6.838511555844816187e-07,6.997546708306323270e-07,7.156581860767830352e-07,7.315617013229337434e-07,7.474652165690844517e-07,7.633687318152351599e-07,7.792722470613858681e-07,7.951757623075365764e-07,8.110792775536872846e-07,8.269827927998379928e-07,8.428863080459887011e-07,8.587898232921394093e-07,8.746933385382901175e-07,8.905968537844408258e-07,9.065003690305915340e-07,9.224038842767422422e-07,9.383073995228929505e-07,9.542109147690437646e-07,9.701144300151945787e-07,9.860179452613453928e-07,1.001921460507496207e-06 +0.000000000000000000e+00,1.807153424900869275e-08,3.614306849801738550e-08,5.421460274702608155e-08,7.228613699603478423e-08,9.035767124504348690e-08,1.084292054940521896e-07,1.265007397430608790e-07,1.445722739920695685e-07,1.626438082410782579e-07,1.807153424900869473e-07,1.987868767390956368e-07,2.168584109881043262e-07,2.349299452371130157e-07,2.530014794861217051e-07,2.710730137351303945e-07,2.891445479841390840e-07,3.072160822331477734e-07,3.252876164821564629e-07,3.433591507311651523e-07,3.614306849801738417e-07,3.795022192291825312e-07,3.975737534781912206e-07,4.156452877271999100e-07,4.337168219762085995e-07,4.517883562252172889e-07,4.698598904742259784e-07,4.879314247232347207e-07,5.060029589722435161e-07,5.240744932212523114e-07,5.421460274702611067e-07,5.602175617192699020e-07,5.782890959682786973e-07,5.963606302172874927e-07,6.144321644662962880e-07,6.325036987153050833e-07,6.505752329643138786e-07,6.686467672133226739e-07,6.867183014623314693e-07,7.047898357113402646e-07,7.228613699603490599e-07,7.409329042093578552e-07,7.590044384583666505e-07,7.770759727073754458e-07,7.951475069563842412e-07,8.132190412053930365e-07,8.312905754544018318e-07,8.493621097034106271e-07,8.674336439524194224e-07,8.855051782014282178e-07,9.035767124504370131e-07,9.216482466994458084e-07,9.397197809484546037e-07,9.577913151974633990e-07,9.758628494464721944e-07,9.939343836954809897e-07,1.012005917944489785e-06,1.030077452193498580e-06,1.048148986442507376e-06,1.066220520691516171e-06,1.084292054940524966e-06,1.102363589189533762e-06,1.120435123438542557e-06,1.138506657687551352e-06 +0.000000000000000000e+00,1.712592247169967044e-08,3.425184494339934087e-08,5.137776741509901131e-08,6.850368988679868175e-08,8.562961235849835880e-08,1.027555348301980359e-07,1.198814573018977129e-07,1.370073797735973900e-07,1.541333022452970670e-07,1.712592247169967441e-07,1.883851471886964211e-07,2.055110696603960982e-07,2.226369921320957752e-07,2.397629146037954258e-07,2.568888370754950764e-07,2.740147595471947270e-07,2.911406820188943776e-07,3.082666044905940282e-07,3.253925269622936787e-07,3.425184494339933293e-07,3.596443719056929799e-07,3.767702943773926305e-07,3.938962168490922811e-07,4.110221393207919317e-07,4.281480617924915823e-07,4.452739842641912328e-07,4.623999067358908834e-07,4.795258292075905340e-07,4.966517516792901846e-07,5.137776741509898352e-07,5.309035966226894858e-07,5.480295190943891363e-07,5.651554415660887869e-07,5.822813640377884375e-07,5.994072865094880881e-07,6.165332089811877387e-07,6.336591314528873893e-07,6.507850539245870399e-07,6.679109763962866904e-07,6.850368988679863410e-07,7.021628213396859916e-07,7.192887438113856422e-07,7.364146662830852928e-07,7.535405887547849434e-07,7.706665112264845939e-07,7.877924336981842445e-07,8.049183561698838951e-07,8.220442786415835457e-07,8.391702011132831963e-07,8.562961235849828469e-07,8.734220460566824975e-07,8.905479685283821480e-07,9.076738910000817986e-07,9.247998134717814492e-07,9.419257359434810998e-07,9.590516584151808563e-07,9.761775808868806127e-07,9.933035033585803692e-07,1.010429425830280126e-06,1.027555348301979882e-06,1.044681270773679639e-06,1.061807193245379395e-06,1.078933115717079152e-06 +0.000000000000000000e+00,1.672941203178529128e-08,3.345882406357058255e-08,5.018823609535587383e-08,6.691764812714116511e-08,8.364706015892644977e-08,1.003764721907117344e-07,1.171058842224970191e-07,1.338352962542823037e-07,1.505647082860675884e-07,1.672941203178528731e-07,1.840235323496381577e-07,2.007529443814234424e-07,2.174823564132087270e-07,2.342117684449940117e-07,2.509411804767792699e-07,2.676705925085645546e-07,2.844000045403498392e-07,3.011294165721351239e-07,3.178588286039204085e-07,3.345882406357056932e-07,3.513176526674909779e-07,3.680470646992762625e-07,3.847764767310615472e-07,4.015058887628468318e-07,4.182353007946321165e-07,4.349647128264174012e-07,4.516941248582026858e-07,4.684235368899879705e-07,4.851529489217732551e-07,5.018823609535585398e-07,5.186117729853438245e-07,5.353411850171291091e-07,5.520705970489143938e-07,5.688000090806996784e-07,5.855294211124849631e-07,6.022588331442702478e-07,6.189882451760555324e-07,6.357176572078408171e-07,6.524470692396261017e-07,6.691764812714113864e-07,6.859058933031966711e-07,7.026353053349819557e-07,7.193647173667672404e-07,7.360941293985525250e-07,7.528235414303378097e-07,7.695529534621230944e-07,7.862823654939083790e-07,8.030117775256936637e-07,8.197411895574789483e-07,8.364706015892642330e-07,8.532000136210495177e-07,8.699294256528348023e-07,8.866588376846200870e-07,9.033882497164053716e-07,9.201176617481906563e-07,9.368470737799759410e-07,9.535764858117612256e-07,9.703058978435465103e-07,9.870353098753317949e-07,1.003764721907117080e-06,1.020494133938902364e-06,1.037223545970687649e-06,1.053952958002472934e-06 +0.000000000000000000e+00,1.902357538812226787e-08,3.804715077624453574e-08,5.707072616436680362e-08,7.609430155248907149e-08,9.511787694061133936e-08,1.141414523287336072e-07,1.331650277168558751e-07,1.521886031049781430e-07,1.712121784931004108e-07,1.902357538812226787e-07,2.092593292693449466e-07,2.282829046574672145e-07,2.473064800455894823e-07,2.663300554337117502e-07,2.853536308218340181e-07,3.043772062099562860e-07,3.234007815980785538e-07,3.424243569862008217e-07,3.614479323743230896e-07,3.804715077624453574e-07,3.994950831505676253e-07,4.185186585386898932e-07,4.375422339268121611e-07,4.565658093149344289e-07,4.755893847030566968e-07,4.946129600911789647e-07,5.136365354793012325e-07,5.326601108674235004e-07,5.516836862555457683e-07,5.707072616436680362e-07,5.897308370317903040e-07,6.087544124199125719e-07,6.277779878080348398e-07,6.468015631961571076e-07,6.658251385842793755e-07,6.848487139724016434e-07,7.038722893605239113e-07,7.228958647486461791e-07,7.419194401367684470e-07,7.609430155248907149e-07,7.799665909130129828e-07,7.989901663011352506e-07,8.180137416892575185e-07,8.370373170773797864e-07,8.560608924655020542e-07,8.750844678536243221e-07,8.941080432417465900e-07,9.131316186298688579e-07,9.321551940179911257e-07,9.511787694061133936e-07,9.702023447942357673e-07,9.892259201823581411e-07,1.008249495570480515e-06,1.027273070958602889e-06,1.046296646346725262e-06,1.065320221734847636e-06,1.084343797122970010e-06,1.103367372511092384e-06,1.122390947899214757e-06,1.141414523287337131e-06,1.160438098675459505e-06,1.179461674063581879e-06,1.198485249451704252e-06 +0.000000000000000000e+00,1.712592247170918963e-08,3.425184494341837926e-08,5.137776741512756559e-08,6.850368988683674529e-08,8.562961235854592500e-08,1.027555348302551047e-07,1.198814573019642844e-07,1.370073797736734641e-07,1.541333022453826438e-07,1.712592247170918235e-07,1.883851471888010032e-07,2.055110696605101829e-07,2.226369921322193626e-07,2.397629146039285159e-07,2.568888370756376956e-07,2.740147595473468753e-07,2.911406820190560550e-07,3.082666044907652347e-07,3.253925269624744144e-07,3.425184494341835941e-07,3.596443719058927738e-07,3.767702943776019535e-07,3.938962168493111332e-07,4.110221393210203129e-07,4.281480617927294926e-07,4.452739842644386723e-07,4.623999067361478520e-07,4.795258292078570318e-07,4.966517516795662115e-07,5.137776741512753912e-07,5.309035966229845709e-07,5.480295190946937506e-07,5.651554415664029303e-07,5.822813640381121100e-07,5.994072865098212897e-07,6.165332089815304694e-07,6.336591314532396491e-07,6.507850539249488288e-07,6.679109763966580085e-07,6.850368988683671882e-07,7.021628213400763679e-07,7.192887438117855476e-07,7.364146662834947273e-07,7.535405887552039070e-07,7.706665112269130867e-07,7.877924336986222664e-07,8.049183561703314462e-07,8.220442786420406259e-07,8.391702011137498056e-07,8.562961235854589853e-07,8.734220460571681650e-07,8.905479685288773447e-07,9.076738910005865244e-07,9.247998134722957041e-07,9.419257359440048838e-07,9.590516584157140635e-07,9.761775808874233491e-07,9.933035033591326347e-07,1.010429425830841920e-06,1.027555348302551206e-06,1.044681270774260491e-06,1.061807193245969777e-06,1.078933115717679063e-06 +0.000000000000000000e+00,1.672941203179491966e-08,3.345882406358983932e-08,5.018823609538475898e-08,6.691764812717967864e-08,8.364706015897459830e-08,1.003764721907695180e-07,1.171058842225644376e-07,1.338352962543593573e-07,1.505647082861542769e-07,1.672941203179491966e-07,1.840235323497441163e-07,2.007529443815390359e-07,2.174823564133339556e-07,2.342117684451288752e-07,2.509411804769237949e-07,2.676705925087187146e-07,2.844000045405136342e-07,3.011294165723085539e-07,3.178588286041034735e-07,3.345882406358983932e-07,3.513176526676933129e-07,3.680470646994882325e-07,3.847764767312831522e-07,4.015058887630780718e-07,4.182353007948729915e-07,4.349647128266679112e-07,4.516941248584628308e-07,4.684235368902577505e-07,4.851529489220526701e-07,5.018823609538475898e-07,5.186117729856425094e-07,5.353411850174374291e-07,5.520705970492323488e-07,5.688000090810272684e-07,5.855294211128221881e-07,6.022588331446171077e-07,6.189882451764120274e-07,6.357176572082069471e-07,6.524470692400018667e-07,6.691764812717967864e-07,6.859058933035917060e-07,7.026353053353866257e-07,7.193647173671815454e-07,7.360941293989764650e-07,7.528235414307713847e-07,7.695529534625663043e-07,7.862823654943612240e-07,8.030117775261561437e-07,8.197411895579510633e-07,8.364706015897459830e-07,8.532000136215409026e-07,8.699294256533358223e-07,8.866588376851307420e-07,9.033882497169256616e-07,9.201176617487205813e-07,9.368470737805155009e-07,9.535764858123104206e-07,9.703058978441053403e-07,9.870353098759003658e-07,1.003764721907695391e-06,1.020494133939490417e-06,1.037223545971285442e-06,1.053952958003080468e-06 +0.000000000000000000e+00,1.902357538813251829e-08,3.804715077626503659e-08,5.707072616439755488e-08,7.609430155253007318e-08,9.511787694066258485e-08,1.141414523287950965e-07,1.331650277169276082e-07,1.521886031050601199e-07,1.712121784931926316e-07,1.902357538813251432e-07,2.092593292694576549e-07,2.282829046575901666e-07,2.473064800457226783e-07,2.663300554338552164e-07,2.853536308219877546e-07,3.043772062101202927e-07,3.234007815982528309e-07,3.424243569863853690e-07,3.614479323745179071e-07,3.804715077626504453e-07,3.994950831507829834e-07,4.185186585389155216e-07,4.375422339270480597e-07,4.565658093151805979e-07,4.755893847033131360e-07,4.946129600914456742e-07,5.136365354795782123e-07,5.326601108677107505e-07,5.516836862558432886e-07,5.707072616439758268e-07,5.897308370321083649e-07,6.087544124202409030e-07,6.277779878083734412e-07,6.468015631965059793e-07,6.658251385846385175e-07,6.848487139727710556e-07,7.038722893609035938e-07,7.228958647490361319e-07,7.419194401371686701e-07,7.609430155253012082e-07,7.799665909134337464e-07,7.989901663015662845e-07,8.180137416896988227e-07,8.370373170778313608e-07,8.560608924659638990e-07,8.750844678540964371e-07,8.941080432422289752e-07,9.131316186303615134e-07,9.321551940184940515e-07,9.511787694066265897e-07,9.702023447947592337e-07,9.892259201828919836e-07,1.008249495571024734e-06,1.027273070959157483e-06,1.046296646347290233e-06,1.065320221735422983e-06,1.084343797123555733e-06,1.103367372511688483e-06,1.122390947899821233e-06,1.141414523287953983e-06,1.160438098676086733e-06,1.179461674064219483e-06,1.198485249452352233e-06 +0.000000000000000000e+00,1.787497508500262316e-08,3.574995017000524631e-08,5.362492525500786947e-08,7.149990034001049262e-08,8.937487542501311578e-08,1.072498505100157389e-07,1.251248255950183621e-07,1.429998006800209852e-07,1.608747757650236084e-07,1.787497508500262316e-07,1.966247259350288547e-07,2.144997010200314779e-07,2.323746761050341010e-07,2.502496511900367242e-07,2.681246262750393209e-07,2.859996013600419176e-07,3.038745764450445142e-07,3.217495515300471109e-07,3.396245266150497076e-07,3.574995017000523043e-07,3.753744767850549010e-07,3.932494518700574977e-07,4.111244269550600944e-07,4.289994020400626910e-07,4.468743771250652877e-07,4.647493522100678844e-07,4.826243272950704811e-07,5.004993023800731307e-07,5.183742774650757803e-07,5.362492525500784300e-07,5.541242276350810796e-07,5.719992027200837292e-07,5.898741778050863788e-07,6.077491528900890285e-07,6.256241279750916781e-07,6.434991030600943277e-07,6.613740781450969774e-07,6.792490532300996270e-07,6.971240283151022766e-07,7.149990034001049262e-07,7.328739784851075759e-07,7.507489535701102255e-07,7.686239286551128751e-07,7.864989037401155247e-07,8.043738788251181744e-07,8.222488539101208240e-07,8.401238289951234736e-07,8.579988040801261232e-07,8.758737791651287729e-07,8.937487542501314225e-07,9.116237293351340721e-07,9.294987044201367217e-07,9.473736795051393714e-07,9.652486545901420210e-07,9.831236296751445647e-07,1.000998604760147108e-06,1.018873579845149652e-06,1.036748554930152196e-06,1.054623530015154740e-06,1.072498505100157283e-06,1.090373480185159827e-06,1.108248455270162371e-06,1.126123430355164915e-06 +0.000000000000000000e+00,1.750865367107350914e-08,3.501730734214701828e-08,5.252596101322052411e-08,7.003461468429402332e-08,8.754326835536752253e-08,1.050519220264410217e-07,1.225605756975145077e-07,1.400692293685879937e-07,1.575778830396614797e-07,1.750865367107349656e-07,1.925951903818084516e-07,2.101038440528819376e-07,2.276124977239554236e-07,2.451211513950289096e-07,2.626298050661023955e-07,2.801384587371758815e-07,2.976471124082493675e-07,3.151557660793228535e-07,3.326644197503963394e-07,3.501730734214698254e-07,3.676817270925433114e-07,3.851903807636167974e-07,4.026990344346902834e-07,4.202076881057637693e-07,4.377163417768372553e-07,4.552249954479107413e-07,4.727336491189842273e-07,4.902423027900577132e-07,5.077509564611311992e-07,5.252596101322046852e-07,5.427682638032781712e-07,5.602769174743516571e-07,5.777855711454251431e-07,5.952942248164986291e-07,6.128028784875721151e-07,6.303115321586456011e-07,6.478201858297190870e-07,6.653288395007925730e-07,6.828374931718660590e-07,7.003461468429395450e-07,7.178548005140130309e-07,7.353634541850865169e-07,7.528721078561600029e-07,7.703807615272334889e-07,7.878894151983069748e-07,8.053980688693804608e-07,8.229067225404539468e-07,8.404153762115274328e-07,8.579240298826009188e-07,8.754326835536744047e-07,8.929413372247478907e-07,9.104499908958213767e-07,9.279586445668948627e-07,9.454672982379683486e-07,9.629759519090417287e-07,9.804846055801152147e-07,9.979932592511887007e-07,1.015501912922262187e-06,1.033010566593335673e-06,1.050519220264409159e-06,1.068027873935482645e-06,1.085536527606556131e-06,1.103045181277629617e-06 +0.000000000000000000e+00,1.994878615010569646e-08,3.989757230021139292e-08,5.984635845031709270e-08,7.979514460042279908e-08,9.974393075052850547e-08,1.196927169006342119e-07,1.396415030507399182e-07,1.595902892008456246e-07,1.795390753509513310e-07,1.994878615010570374e-07,2.194366476511627438e-07,2.393854338012684767e-07,2.593342199513742095e-07,2.792830061014799424e-07,2.992317922515856752e-07,3.191805784016914081e-07,3.391293645517971410e-07,3.590781507019028738e-07,3.790269368520086067e-07,3.989757230021143395e-07,4.189245091522200724e-07,4.388732953023258052e-07,4.588220814524315381e-07,4.787708676025372710e-07,4.987196537526430038e-07,5.186684399027487367e-07,5.386172260528544695e-07,5.585660122029602024e-07,5.785147983530659352e-07,5.984635845031716681e-07,6.184123706532774010e-07,6.383611568033831338e-07,6.583099429534888667e-07,6.782587291035945995e-07,6.982075152537003324e-07,7.181563014038060653e-07,7.381050875539117981e-07,7.580538737040175310e-07,7.780026598541232638e-07,7.979514460042289967e-07,8.179002321543347295e-07,8.378490183044404624e-07,8.577978044545461953e-07,8.777465906046519281e-07,8.976953767547576610e-07,9.176441629048633938e-07,9.375929490549691267e-07,9.575417352050747537e-07,9.774905213551803807e-07,9.974393075052860076e-07,1.017388093655391635e-06,1.037336879805497262e-06,1.057285665955602889e-06,1.077234452105708516e-06,1.097183238255814143e-06,1.117132024405919770e-06,1.137080810556025396e-06,1.157029596706131023e-06,1.176978382856236650e-06,1.196927169006342277e-06,1.216875955156447904e-06,1.236824741306553531e-06,1.256773527456659158e-06 +0.000000000000000000e+00,1.787497508501175854e-08,3.574995017002351708e-08,5.362492525503527892e-08,7.149990034004704739e-08,8.937487542505881585e-08,1.072498505100705843e-07,1.251248255950823395e-07,1.429998006800940948e-07,1.608747757651058500e-07,1.787497508501176052e-07,1.966247259351293605e-07,2.144997010201411157e-07,2.323746761051528709e-07,2.502496511901646262e-07,2.681246262751763814e-07,2.859996013601881366e-07,3.038745764451998918e-07,3.217495515302116471e-07,3.396245266152234023e-07,3.574995017002351575e-07,3.753744767852469128e-07,3.932494518702586680e-07,4.111244269552704232e-07,4.289994020402821785e-07,4.468743771252939337e-07,4.647493522103056889e-07,4.826243272953174971e-07,5.004993023803293582e-07,5.183742774653412193e-07,5.362492525503530804e-07,5.541242276353649415e-07,5.719992027203768026e-07,5.898741778053886637e-07,6.077491528904005248e-07,6.256241279754123859e-07,6.434991030604242471e-07,6.613740781454361082e-07,6.792490532304479693e-07,6.971240283154598304e-07,7.149990034004716915e-07,7.328739784854835526e-07,7.507489535704954137e-07,7.686239286555072748e-07,7.864989037405191359e-07,8.043738788255309970e-07,8.222488539105428581e-07,8.401238289955547193e-07,8.579988040805665804e-07,8.758737791655784415e-07,8.937487542505903026e-07,9.116237293356021637e-07,9.294987044206140248e-07,9.473736795056258859e-07,9.652486545906377470e-07,9.831236296756496081e-07,1.000998604760661469e-06,1.018873579845673330e-06,1.036748554930685191e-06,1.054623530015697053e-06,1.072498505100708914e-06,1.090373480185720775e-06,1.108248455270732636e-06,1.126123430355744497e-06 +0.000000000000000000e+00,1.750865367108277687e-08,3.501730734216555374e-08,5.252596101324833061e-08,7.003461468433110748e-08,8.754326835541388435e-08,1.050519220264966612e-07,1.225605756975794381e-07,1.400692293686622150e-07,1.575778830397449918e-07,1.750865367108277687e-07,1.925951903819105456e-07,2.101038440529933224e-07,2.276124977240760993e-07,2.451211513951588762e-07,2.626298050662416266e-07,2.801384587373243770e-07,2.976471124084071274e-07,3.151557660794898778e-07,3.326644197505726282e-07,3.501730734216553786e-07,3.676817270927381290e-07,3.851903807638208794e-07,4.026990344349036298e-07,4.202076881059863802e-07,4.377163417770691306e-07,4.552249954481518810e-07,4.727336491192346314e-07,4.902423027903174347e-07,5.077509564614002381e-07,5.252596101324830414e-07,5.427682638035658447e-07,5.602769174746486481e-07,5.777855711457314514e-07,5.952942248168142547e-07,6.128028784878970581e-07,6.303115321589798614e-07,6.478201858300626648e-07,6.653288395011454681e-07,6.828374931722282714e-07,7.003461468433110748e-07,7.178548005143938781e-07,7.353634541854766815e-07,7.528721078565594848e-07,7.703807615276422881e-07,7.878894151987250915e-07,8.053980688698078948e-07,8.229067225408906982e-07,8.404153762119735015e-07,8.579240298830563048e-07,8.754326835541391082e-07,8.929413372252219115e-07,9.104499908963047149e-07,9.279586445673875182e-07,9.454672982384703215e-07,9.629759519095531249e-07,9.804846055806359282e-07,9.979932592517187316e-07,1.015501912922801535e-06,1.033010566593884338e-06,1.050519220264967142e-06,1.068027873936049945e-06,1.085536527607132748e-06,1.103045181278215552e-06 +0.000000000000000000e+00,1.994878615011569211e-08,3.989757230023138423e-08,5.984635845034708296e-08,7.979514460046278169e-08,9.974393075057848042e-08,1.196927169006941659e-07,1.396415030508098514e-07,1.595902892009255369e-07,1.795390753510412224e-07,1.994878615011569079e-07,2.194366476512725934e-07,2.393854338013882789e-07,2.593342199515039644e-07,2.792830061016196499e-07,2.992317922517353354e-07,3.191805784018510209e-07,3.391293645519667064e-07,3.590781507020823919e-07,3.790269368521980774e-07,3.989757230023137628e-07,4.189245091524294483e-07,4.388732953025451338e-07,4.588220814526608193e-07,4.787708676027764519e-07,4.987196537528920315e-07,5.186684399030076111e-07,5.386172260531231907e-07,5.585660122032387704e-07,5.785147983533543500e-07,5.984635845034699296e-07,6.184123706535855092e-07,6.383611568037010888e-07,6.583099429538166684e-07,6.782587291039322480e-07,6.982075152540478277e-07,7.181563014041634073e-07,7.381050875542789869e-07,7.580538737043945665e-07,7.780026598545101461e-07,7.979514460046257257e-07,8.179002321547413054e-07,8.378490183048568850e-07,8.577978044549724646e-07,8.777465906050880442e-07,8.976953767552036238e-07,9.176441629053192034e-07,9.375929490554347831e-07,9.575417352055503627e-07,9.774905213556659423e-07,9.974393075057815219e-07,1.017388093655897102e-06,1.037336879806012681e-06,1.057285665956128261e-06,1.077234452106243840e-06,1.097183238256359420e-06,1.117132024406475000e-06,1.137080810556590579e-06,1.157029596706706159e-06,1.176978382856821738e-06,1.196927169006937318e-06,1.216875955157052898e-06,1.236824741307168477e-06,1.256773527457284057e-06 +0.000000000000000000e+00,1.859364391097579494e-08,3.718728782195158988e-08,5.578093173292738151e-08,7.437457564390316653e-08,9.296821955487895154e-08,1.115618634658547366e-07,1.301555073768305083e-07,1.487491512878062801e-07,1.673427951987820519e-07,1.859364391097578237e-07,2.045300830207335955e-07,2.231237269317093672e-07,2.417173708426851390e-07,2.603110147536609108e-07,2.789046586646366826e-07,2.974983025756124544e-07,3.160919464865882261e-07,3.346855903975639979e-07,3.532792343085397697e-07,3.718728782195155415e-07,3.904665221304913133e-07,4.090601660414670850e-07,4.276538099524428568e-07,4.462474538634186286e-07,4.648410977743944004e-07,4.834347416853701722e-07,5.020283855963458910e-07,5.206220295073216098e-07,5.392156734182973287e-07,5.578093173292730475e-07,5.764029612402487664e-07,5.949966051512244852e-07,6.135902490622002040e-07,6.321838929731759229e-07,6.507775368841516417e-07,6.693711807951273606e-07,6.879648247061030794e-07,7.065584686170787982e-07,7.251521125280545171e-07,7.437457564390302359e-07,7.623394003500059548e-07,7.809330442609816736e-07,7.995266881719573924e-07,8.181203320829331113e-07,8.367139759939088301e-07,8.553076199048845490e-07,8.739012638158602678e-07,8.924949077268359866e-07,9.110885516378117055e-07,9.296821955487874243e-07,9.482758394597631432e-07,9.668694833707388620e-07,9.854631272817145808e-07,1.004056771192690300e-06,1.022650415103666019e-06,1.041244059014641737e-06,1.059837702925617456e-06,1.078431346836593175e-06,1.097024990747568894e-06,1.115618634658544613e-06,1.134212278569520332e-06,1.152805922480496050e-06,1.171399566391471769e-06 +0.000000000000000000e+00,1.859667712780757120e-08,3.719335425561514240e-08,5.579003138342271690e-08,7.438670851123029803e-08,9.298338563903787915e-08,1.115800627668454603e-07,1.301767398946530282e-07,1.487734170224605961e-07,1.673700941502681639e-07,1.859667712780757318e-07,2.045634484058832997e-07,2.231601255336908676e-07,2.417568026614984355e-07,2.603534797893060034e-07,2.789501569171135713e-07,2.975468340449211392e-07,3.161435111727287071e-07,3.347401883005362749e-07,3.533368654283438428e-07,3.719335425561514107e-07,3.905302196839589786e-07,4.091268968117665465e-07,4.277235739395741144e-07,4.463202510673816823e-07,4.649169281951892502e-07,4.835136053229967651e-07,5.021102824508043330e-07,5.207069595786119009e-07,5.393036367064194688e-07,5.579003138342270367e-07,5.764969909620346046e-07,5.950936680898421724e-07,6.136903452176497403e-07,6.322870223454573082e-07,6.508836994732648761e-07,6.694803766010724440e-07,6.880770537288800119e-07,7.066737308566875798e-07,7.252704079844951477e-07,7.438670851123027156e-07,7.624637622401102835e-07,7.810604393679178513e-07,7.996571164957254192e-07,8.182537936235329871e-07,8.368504707513405550e-07,8.554471478791481229e-07,8.740438250069556908e-07,8.926405021347632587e-07,9.112371792625708266e-07,9.298338563903783945e-07,9.484305335181859623e-07,9.670272106459935302e-07,9.856238877738010981e-07,1.004220564901608666e-06,1.022817242029416234e-06,1.041413919157223802e-06,1.060010596285031370e-06,1.078607273412838938e-06,1.097203950540646505e-06,1.115800627668454073e-06,1.134397304796261641e-06,1.152993981924069209e-06,1.171590659051876777e-06 +0.000000000000000000e+00,1.823125525423814497e-08,3.646251050847628994e-08,5.469376576271443822e-08,7.292502101695259312e-08,9.115627627119074801e-08,1.093875315254289029e-07,1.276187867796670578e-07,1.458500420339052127e-07,1.640812972881433676e-07,1.823125525423815225e-07,2.005438077966196774e-07,2.187750630508578323e-07,2.370063183050959872e-07,2.552375735593341156e-07,2.734688288135722440e-07,2.917000840678103725e-07,3.099313393220485009e-07,3.281625945762866293e-07,3.463938498305247577e-07,3.646251050847628862e-07,3.828563603390010146e-07,4.010876155932391430e-07,4.193188708474772715e-07,4.375501261017153999e-07,4.557813813559535283e-07,4.740126366101916567e-07,4.922438918644297322e-07,5.104751471186678077e-07,5.287064023729058832e-07,5.469376576271439587e-07,5.651689128813820342e-07,5.834001681356201097e-07,6.016314233898581851e-07,6.198626786440962606e-07,6.380939338983343361e-07,6.563251891525724116e-07,6.745564444068104871e-07,6.927876996610485626e-07,7.110189549152866381e-07,7.292502101695247136e-07,7.474814654237627890e-07,7.657127206780008645e-07,7.839439759322389400e-07,8.021752311864770155e-07,8.204064864407150910e-07,8.386377416949531665e-07,8.568689969491912420e-07,8.751002522034293174e-07,8.933315074576673929e-07,9.115627627119054684e-07,9.297940179661435439e-07,9.480252732203816194e-07,9.662565284746196949e-07,9.844877837288577704e-07,1.002719038983095846e-06,1.020950294237333921e-06,1.039181549491571997e-06,1.057412804745810072e-06,1.075644060000048148e-06,1.093875315254286223e-06,1.112106570508524299e-06,1.130337825762762374e-06,1.148569081017000450e-06 +0.000000000000000000e+00,2.083090753581502960e-08,4.166181507163005920e-08,6.249272260744508549e-08,8.332363014326010517e-08,1.041545376790751248e-07,1.249854452148901445e-07,1.458163527507051510e-07,1.666472602865201574e-07,1.874781678223351638e-07,2.083090753581501703e-07,2.291399828939651767e-07,2.499708904297801832e-07,2.708017979655951896e-07,2.916327055014101960e-07,3.124636130372252025e-07,3.332945205730402089e-07,3.541254281088552154e-07,3.749563356446702218e-07,3.957872431804852282e-07,4.166181507163002347e-07,4.374490582521152411e-07,4.582799657879302476e-07,4.791108733237452540e-07,4.999417808595602604e-07,5.207726883953752669e-07,5.416035959311902733e-07,5.624345034670052798e-07,5.832654110028202862e-07,6.040963185386352926e-07,6.249272260744502991e-07,6.457581336102653055e-07,6.665890411460803120e-07,6.874199486818953184e-07,7.082508562177103248e-07,7.290817637535253313e-07,7.499126712893403377e-07,7.707435788251553442e-07,7.915744863609703506e-07,8.124053938967853570e-07,8.332363014326003635e-07,8.540672089684153699e-07,8.748981165042303764e-07,8.957290240400453828e-07,9.165599315758603892e-07,9.373908391116753957e-07,9.582217466474905080e-07,9.790526541833056203e-07,9.998835617191207326e-07,1.020714469254935845e-06,1.041545376790750957e-06,1.062376284326566070e-06,1.083207191862381182e-06,1.104038099398196294e-06,1.124869006934011407e-06,1.145699914469826519e-06,1.166530822005641631e-06,1.187361729541456744e-06,1.208192637077271856e-06,1.229023544613086968e-06,1.249854452148902080e-06,1.270685359684717193e-06,1.291516267220532305e-06,1.312347174756347417e-06 +0.000000000000000000e+00,1.859603345945293878e-08,3.719206691890587755e-08,5.578810037835881964e-08,7.438413383781176834e-08,9.298016729726471704e-08,1.115762007567176657e-07,1.301722342161706012e-07,1.487682676756235367e-07,1.673643011350764721e-07,1.859603345945294076e-07,2.045563680539823431e-07,2.231524015134352785e-07,2.417484349728882140e-07,2.603444684323411495e-07,2.789405018917940850e-07,2.975365353512470204e-07,3.161325688106999559e-07,3.347286022701528914e-07,3.533246357296058268e-07,3.719206691890587623e-07,3.905167026485116978e-07,4.091127361079646332e-07,4.277087695674175687e-07,4.463048030268705042e-07,4.649008364863234396e-07,4.834968699457763222e-07,5.020929034052292576e-07,5.206889368646821931e-07,5.392849703241351286e-07,5.578810037835880640e-07,5.764770372430409995e-07,5.950730707024939350e-07,6.136691041619468704e-07,6.322651376213998059e-07,6.508611710808527414e-07,6.694572045403056768e-07,6.880532379997586123e-07,7.066492714592115478e-07,7.252453049186644832e-07,7.438413383781174187e-07,7.624373718375703542e-07,7.810334052970232896e-07,7.996294387564762251e-07,8.182254722159291606e-07,8.368215056753820960e-07,8.554175391348350315e-07,8.740135725942879670e-07,8.926096060537409024e-07,9.112056395131938379e-07,9.298016729726467734e-07,9.483977064320997088e-07,9.669937398915526443e-07,9.855897733510055798e-07,1.004185806810458515e-06,1.022781840269911451e-06,1.041377873729364386e-06,1.059973907188817322e-06,1.078569940648270257e-06,1.097165974107723193e-06,1.115762007567176128e-06,1.134358041026629064e-06,1.152954074486081999e-06,1.171550107945534934e-06 +0.000000000000000000e+00,2.082824449191953711e-08,4.165648898383907421e-08,6.248473347575861132e-08,8.331297796767814842e-08,1.041412224595976855e-07,1.249694669515172226e-07,1.457977114434367597e-07,1.666259559353562968e-07,1.874542004272758339e-07,2.082824449191953711e-07,2.291106894111149082e-07,2.499389339030344453e-07,2.707671783949539559e-07,2.915954228868734665e-07,3.124236673787929772e-07,3.332519118707124878e-07,3.540801563626319984e-07,3.749084008545515091e-07,3.957366453464710197e-07,4.165648898383905304e-07,4.373931343303100410e-07,4.582213788222295516e-07,4.790496233141490623e-07,4.998778678060685729e-07,5.207061122979880835e-07,5.415343567899075942e-07,5.623626012818271048e-07,5.831908457737466154e-07,6.040190902656661261e-07,6.248473347575856367e-07,6.456755792495051473e-07,6.665038237414246580e-07,6.873320682333441686e-07,7.081603127252636793e-07,7.289885572171831899e-07,7.498168017091027005e-07,7.706450462010222112e-07,7.914732906929417218e-07,8.123015351848612324e-07,8.331297796767807431e-07,8.539580241687002537e-07,8.747862686606197643e-07,8.956145131525392750e-07,9.164427576444587856e-07,9.372710021363782962e-07,9.580992466282979128e-07,9.789274911202176352e-07,9.997557356121373575e-07,1.020583980104057080e-06,1.041412224595976802e-06,1.062240469087896525e-06,1.083068713579816247e-06,1.103896958071735970e-06,1.124725202563655692e-06,1.145553447055575414e-06,1.166381691547495137e-06,1.187209936039414859e-06,1.208038180531334581e-06,1.228866425023254304e-06,1.249694669515174026e-06,1.270522914007093749e-06,1.291351158499013471e-06,1.312179402990933193e-06 +0.000000000000000000e+00,1.859364391098468879e-08,3.718728782196937757e-08,5.578093173295406305e-08,7.437457564393874191e-08,9.296821955492342077e-08,1.115618634659080996e-07,1.301555073768927653e-07,1.487491512878774309e-07,1.673427951988620965e-07,1.859364391098467621e-07,2.045300830208314278e-07,2.231237269318160934e-07,2.417173708428007590e-07,2.603110147537854246e-07,2.789046586647700903e-07,2.974983025757547559e-07,3.160919464867394215e-07,3.346855903977240871e-07,3.532792343087087528e-07,3.718728782196934184e-07,3.904665221306780840e-07,4.090601660416627496e-07,4.276538099526474153e-07,4.462474538636320809e-07,4.648410977746167465e-07,4.834347416856014122e-07,5.020283855965860248e-07,5.206220295075706375e-07,5.392156734185552502e-07,5.578093173295398629e-07,5.764029612405244756e-07,5.949966051515090883e-07,6.135902490624937010e-07,6.321838929734783136e-07,6.507775368844629263e-07,6.693711807954475390e-07,6.879648247064321517e-07,7.065584686174167644e-07,7.251521125284013771e-07,7.437457564393859898e-07,7.623394003503706024e-07,7.809330442613552151e-07,7.995266881723398278e-07,8.181203320833244405e-07,8.367139759943090532e-07,8.553076199052936659e-07,8.739012638162782786e-07,8.924949077272628913e-07,9.110885516382475039e-07,9.296821955492321166e-07,9.482758394602167293e-07,9.668694833712013420e-07,9.854631272821859547e-07,1.004056771193170567e-06,1.022650415104155180e-06,1.041244059015139793e-06,1.059837702926124405e-06,1.078431346837109018e-06,1.097024990748093631e-06,1.115618634659078243e-06,1.134212278570062856e-06,1.152805922481047469e-06,1.171399566392032082e-06 +0.000000000000000000e+00,1.859603345945739893e-08,3.719206691891479787e-08,5.578810037837220011e-08,7.438413383782960897e-08,9.298016729728701783e-08,1.115762007567444267e-07,1.301722342162018356e-07,1.487682676756592444e-07,1.673643011351166533e-07,1.859603345945740621e-07,2.045563680540314710e-07,2.231524015134888799e-07,2.417484349729462887e-07,2.603444684324036711e-07,2.789405018918610535e-07,2.975365353513184359e-07,3.161325688107758183e-07,3.347286022702332007e-07,3.533246357296905831e-07,3.719206691891479654e-07,3.905167026486053478e-07,4.091127361080627302e-07,4.277087695675201126e-07,4.463048030269774950e-07,4.649008364864348774e-07,4.834968699458922598e-07,5.020929034053496422e-07,5.206889368648070246e-07,5.392849703242644070e-07,5.578810037837217894e-07,5.764770372431791717e-07,5.950730707026365541e-07,6.136691041620939365e-07,6.322651376215513189e-07,6.508611710810087013e-07,6.694572045404660837e-07,6.880532379999234661e-07,7.066492714593808485e-07,7.252453049188382309e-07,7.438413383782956133e-07,7.624373718377529956e-07,7.810334052972103780e-07,7.996294387566677604e-07,8.182254722161251428e-07,8.368215056755825252e-07,8.554175391350399076e-07,8.740135725944972900e-07,8.926096060539546724e-07,9.112056395134120548e-07,9.298016729728694372e-07,9.483977064323268196e-07,9.669937398917843078e-07,9.855897733512416902e-07,1.004185806810699073e-06,1.022781840270156455e-06,1.041377873729613837e-06,1.059973907189071220e-06,1.078569940648528602e-06,1.097165974107985985e-06,1.115762007567443367e-06,1.134358041026900749e-06,1.152954074486358132e-06,1.171550107945815514e-06 +0.000000000000000000e+00,1.823125525424719763e-08,3.646251050849439527e-08,5.469376576274159621e-08,7.292502101698880377e-08,9.115627627123601134e-08,1.093875315254832189e-07,1.276187867797304265e-07,1.458500420339776340e-07,1.640812972882248416e-07,1.823125525424720491e-07,2.005438077967192567e-07,2.187750630509664643e-07,2.370063183052136718e-07,2.552375735594608529e-07,2.734688288137080340e-07,2.917000840679552151e-07,3.099313393222023962e-07,3.281625945764495773e-07,3.463938498306967584e-07,3.646251050849439395e-07,3.828563603391911206e-07,4.010876155934383016e-07,4.193188708476854827e-07,4.375501261019326638e-07,4.557813813561798449e-07,4.740126366104270260e-07,4.922438918646742071e-07,5.104751471189213882e-07,5.287064023731685693e-07,5.469376576274157504e-07,5.651689128816629315e-07,5.834001681359101126e-07,6.016314233901572936e-07,6.198626786444044747e-07,6.380939338986516558e-07,6.563251891528988369e-07,6.745564444071460180e-07,6.927876996613931991e-07,7.110189549156403802e-07,7.292502101698875613e-07,7.474814654241347424e-07,7.657127206783819235e-07,7.839439759326291046e-07,8.021752311868762857e-07,8.204064864411234667e-07,8.386377416953706478e-07,8.568689969496178289e-07,8.751002522038650100e-07,8.933315074581121911e-07,9.115627627123593722e-07,9.297940179666065533e-07,9.480252732208537344e-07,9.662565284751010214e-07,9.844877837293482024e-07,1.002719038983595384e-06,1.020950294237842565e-06,1.039181549492089746e-06,1.057412804746336927e-06,1.075644060000584108e-06,1.093875315254831289e-06,1.112106570509078470e-06,1.130337825763325651e-06,1.148569081017572832e-06 +0.000000000000000000e+00,2.083090753582507488e-08,4.166181507165014976e-08,6.249272260747522134e-08,8.332363014330028629e-08,1.041545376791253513e-07,1.249854452149504162e-07,1.458163527507754812e-07,1.666472602866005461e-07,1.874781678224256111e-07,2.083090753582506760e-07,2.291399828940757410e-07,2.499708904299007795e-07,2.708017979657258444e-07,2.916327055015509094e-07,3.124636130373759743e-07,3.332945205732010393e-07,3.541254281090261043e-07,3.749563356448511692e-07,3.957872431806762342e-07,4.166181507165012991e-07,4.374490582523263641e-07,4.582799657881514290e-07,4.791108733239764940e-07,4.999417808598015589e-07,5.207726883956266239e-07,5.416035959314516889e-07,5.624345034672767538e-07,5.832654110031018188e-07,6.040963185389268837e-07,6.249272260747519487e-07,6.457581336105770136e-07,6.665890411464020786e-07,6.874199486822271436e-07,7.082508562180522085e-07,7.290817637538772735e-07,7.499126712897023384e-07,7.707435788255274034e-07,7.915744863613524683e-07,8.124053938971775333e-07,8.332363014330025982e-07,8.540672089688276632e-07,8.748981165046527282e-07,8.957290240404777931e-07,9.165599315763028581e-07,9.373908391121279230e-07,9.582217466479529880e-07,9.790526541837780529e-07,9.998835617196031179e-07,1.020714469255428183e-06,1.041545376791253248e-06,1.062376284327078313e-06,1.083207191862903378e-06,1.104038099398728443e-06,1.124869006934553508e-06,1.145699914470378573e-06,1.166530822006203638e-06,1.187361729542028703e-06,1.208192637077853767e-06,1.229023544613678832e-06,1.249854452149503897e-06,1.270685359685328962e-06,1.291516267221154027e-06,1.312347174756979092e-06 +0.000000000000000000e+00,1.072066736069789826e-08,2.144133472139579652e-08,3.216200208209369313e-08,4.288266944279158643e-08,5.360333680348947973e-08,6.432400416418737303e-08,7.504467152488526633e-08,8.576533888558315963e-08,9.648600624628105292e-08,1.072066736069789462e-07,1.179273409676768395e-07,1.286480083283747196e-07,1.393686756890725996e-07,1.500893430497704797e-07,1.608100104104683598e-07,1.715306777711662398e-07,1.822513451318641199e-07,1.929720124925620000e-07,2.036926798532598800e-07,2.144133472139577601e-07,2.251340145746556402e-07,2.358546819353535202e-07,2.465753492960514003e-07,2.572960166567492804e-07,2.680166840174471604e-07,2.787373513781450405e-07,2.894580187388429205e-07,3.001786860995408006e-07,3.108993534602386807e-07,3.216200208209365607e-07,3.323406881816344408e-07,3.430613555423323209e-07,3.537820229030302009e-07,3.645026902637280810e-07,3.752233576244259611e-07,3.859440249851238411e-07,3.966646923458217212e-07,4.073853597065196012e-07,4.181060270672174813e-07,4.288266944279153614e-07,4.395473617886132414e-07,4.502680291493111215e-07,4.609886965100090016e-07,4.717093638707068816e-07,4.824300312314047617e-07,4.931506985921025888e-07,5.038713659528004159e-07,5.145920333134982431e-07,5.253127006741960702e-07,5.360333680348938973e-07,5.467540353955917244e-07,5.574747027562895516e-07,5.681953701169873787e-07,5.789160374776852058e-07,5.896367048383830329e-07,6.003573721990808601e-07,6.110780395597786872e-07,6.217987069204765143e-07,6.325193742811743414e-07,6.432400416418721686e-07,6.539607090025699957e-07,6.646813763632678228e-07,6.754020437239656499e-07 +0.000000000000000000e+00,1.292807672934220695e-08,2.585615345868441390e-08,3.878423018802662251e-08,5.171230691736883442e-08,6.464038364671104633e-08,7.756846037605325825e-08,9.049653710539547016e-08,1.034246138347376821e-07,1.163526905640798940e-07,1.292807672934220927e-07,1.422088440227642913e-07,1.551369207521064900e-07,1.680649974814486887e-07,1.809930742107908874e-07,1.939211509401330861e-07,2.068492276694752847e-07,2.197773043988174834e-07,2.327053811281596821e-07,2.456334578575019073e-07,2.585615345868441324e-07,2.714896113161863575e-07,2.844176880455285827e-07,2.973457647748708078e-07,3.102738415042130330e-07,3.232019182335552581e-07,3.361299949628974833e-07,3.490580716922397084e-07,3.619861484215819336e-07,3.749142251509241587e-07,3.878423018802663839e-07,4.007703786096086090e-07,4.136984553389508342e-07,4.266265320682930593e-07,4.395546087976352845e-07,4.524826855269775096e-07,4.654107622563197348e-07,4.783388389856619599e-07,4.912669157150042380e-07,5.041949924443465161e-07,5.171230691736887942e-07,5.300511459030310723e-07,5.429792226323733504e-07,5.559072993617156285e-07,5.688353760910579065e-07,5.817634528204001846e-07,5.946915295497424627e-07,6.076196062790847408e-07,6.205476830084270189e-07,6.334757597377692970e-07,6.464038364671115751e-07,6.593319131964538532e-07,6.722599899257961313e-07,6.851880666551384093e-07,6.981161433844806874e-07,7.110442201138229655e-07,7.239722968431652436e-07,7.369003735725075217e-07,7.498284503018497998e-07,7.627565270311920779e-07,7.756846037605343560e-07,7.886126804898766340e-07,8.015407572192189121e-07,8.144688339485611902e-07 +0.000000000000000000e+00,1.294641797345664913e-08,2.589283594691329825e-08,3.883925392036994572e-08,5.178567189382658989e-08,6.473208986728323405e-08,7.767850784073987821e-08,9.062492581419652237e-08,1.035713437876531665e-07,1.165177617611098107e-07,1.294641797345664681e-07,1.424105977080231255e-07,1.553570156814797829e-07,1.683034336549364403e-07,1.812498516283930977e-07,1.941962696018497551e-07,2.071426875753064125e-07,2.200891055487630699e-07,2.330355235222197273e-07,2.459819414956763582e-07,2.589283594691329891e-07,2.718747774425896201e-07,2.848211954160462510e-07,2.977676133895028819e-07,3.107140313629595128e-07,3.236604493364161438e-07,3.366068673098727747e-07,3.495532852833294056e-07,3.624997032567860366e-07,3.754461212302426675e-07,3.883925392036992984e-07,4.013389571771559293e-07,4.142853751506125603e-07,4.272317931240691912e-07,4.401782110975258221e-07,4.531246290709824531e-07,4.660710470444390840e-07,4.790174650178957149e-07,4.919638829913522929e-07,5.049103009648088709e-07,5.178567189382654489e-07,5.308031369117220269e-07,5.437495548851786049e-07,5.566959728586351828e-07,5.696423908320917608e-07,5.825888088055483388e-07,5.955352267790049168e-07,6.084816447524614948e-07,6.214280627259180728e-07,6.343744806993746508e-07,6.473208986728312288e-07,6.602673166462878067e-07,6.732137346197443847e-07,6.861601525932009627e-07,6.991065705666575407e-07,7.120529885401141187e-07,7.249994065135706967e-07,7.379458244870272747e-07,7.508922424604838527e-07,7.638386604339404307e-07,7.767850784073970086e-07,7.897314963808535866e-07,8.026779143543101646e-07,8.156243323277667426e-07 +0.000000000000000000e+00,1.139203556082971588e-08,2.278407112165943175e-08,3.417610668248914928e-08,4.556814224331887012e-08,5.696017780414859096e-08,6.835221336497831180e-08,7.974424892580803264e-08,9.113628448663775348e-08,1.025283200474674743e-07,1.139203556082971952e-07,1.253123911691269028e-07,1.367044267299565971e-07,1.480964622907862915e-07,1.594884978516159859e-07,1.708805334124456802e-07,1.822725689732753746e-07,1.936646045341050690e-07,2.050566400949347633e-07,2.164486756557644577e-07,2.278407112165941521e-07,2.392327467774238465e-07,2.506247823382535408e-07,2.620168178990832352e-07,2.734088534599129296e-07,2.848008890207426239e-07,2.961929245815723183e-07,3.075849601424020127e-07,3.189769957032317070e-07,3.303690312640614014e-07,3.417610668248910958e-07,3.531531023857207901e-07,3.645451379465504845e-07,3.759371735073801789e-07,3.873292090682098733e-07,3.987212446290395676e-07,4.101132801898692620e-07,4.215053157506989564e-07,4.328973513115286507e-07,4.442893868723583451e-07,4.556814224331880395e-07,4.670734579940177338e-07,4.784654935548474812e-07,4.898575291156772285e-07,5.012495646765069758e-07,5.126416002373367231e-07,5.240336357981664704e-07,5.354256713589962177e-07,5.468177069198259650e-07,5.582097424806557123e-07,5.696017780414854596e-07,5.809938136023152069e-07,5.923858491631449542e-07,6.037778847239747015e-07,6.151699202848044489e-07,6.265619558456341962e-07,6.379539914064639435e-07,6.493460269672936908e-07,6.607380625281234381e-07,6.721300980889531854e-07,6.835221336497829327e-07,6.949141692106126800e-07,7.063062047714424273e-07,7.176982403322721746e-07 +0.000000000000000000e+00,1.386229091981970614e-08,2.772458183963941227e-08,4.158687275945911675e-08,5.544916367927881793e-08,6.931145459909852572e-08,8.317374551891823351e-08,9.703603643873794130e-08,1.108983273585576491e-07,1.247606182783773569e-07,1.386229091981970514e-07,1.524852001180167460e-07,1.663474910378364405e-07,1.802097819576561351e-07,1.940720728774758297e-07,2.079343637972955242e-07,2.217966547171152188e-07,2.356589456369349133e-07,2.495212365567546079e-07,2.633835274765743024e-07,2.772458183963939970e-07,2.911081093162136915e-07,3.049704002360333861e-07,3.188326911558530806e-07,3.326949820756727752e-07,3.465572729954924698e-07,3.604195639153121643e-07,3.742818548351318589e-07,3.881441457549515534e-07,4.020064366747712480e-07,4.158687275945909425e-07,4.297310185144106371e-07,4.435933094342303316e-07,4.574556003540500262e-07,4.713178912738697208e-07,4.851801821936894682e-07,4.990424731135092157e-07,5.129047640333289632e-07,5.267670549531487107e-07,5.406293458729684582e-07,5.544916367927882057e-07,5.683539277126079532e-07,5.822162186324277007e-07,5.960785095522474482e-07,6.099408004720671957e-07,6.238030913918869432e-07,6.376653823117066907e-07,6.515276732315264382e-07,6.653899641513461857e-07,6.792522550711659332e-07,6.931145459909856807e-07,7.069768369108054282e-07,7.208391278306251757e-07,7.347014187504449232e-07,7.485637096702646706e-07,7.624260005900844181e-07,7.762882915099041656e-07,7.901505824297239131e-07,8.040128733495436606e-07,8.178751642693634081e-07,8.317374551891831556e-07,8.455997461090029031e-07,8.594620370288226506e-07,8.733243279486423981e-07 +0.000000000000000000e+00,1.251121813965706718e-08,2.502243627931413436e-08,3.753365441897120154e-08,5.004487255862826872e-08,6.255609069828533590e-08,7.506730883794240308e-08,8.757852697759947026e-08,1.000897451172565374e-07,1.126009632569136046e-07,1.251121813965706718e-07,1.376233995362277390e-07,1.501346176758848062e-07,1.626458358155418733e-07,1.751570539551989405e-07,1.876682720948560077e-07,2.001794902345130749e-07,2.126907083741701421e-07,2.252019265138272092e-07,2.377131446534842764e-07,2.502243627931413436e-07,2.627355809327984108e-07,2.752467990724554780e-07,2.877580172121125452e-07,3.002692353517696123e-07,3.127804534914266795e-07,3.252916716310837467e-07,3.378028897707408139e-07,3.503141079103978811e-07,3.628253260500549482e-07,3.753365441897120154e-07,3.878477623293690826e-07,4.003589804690261498e-07,4.128701986086832170e-07,4.253814167483402841e-07,4.378926348879973513e-07,4.504038530276544185e-07,4.629150711673114857e-07,4.754262893069685529e-07,4.879375074466256730e-07,5.004487255862827931e-07,5.129599437259399132e-07,5.254711618655970333e-07,5.379823800052541535e-07,5.504935981449112736e-07,5.630048162845683937e-07,5.755160344242255138e-07,5.880272525638826339e-07,6.005384707035397541e-07,6.130496888431968742e-07,6.255609069828539943e-07,6.380721251225111144e-07,6.505833432621682345e-07,6.630945614018253547e-07,6.756057795414824748e-07,6.881169976811395949e-07,7.006282158207967150e-07,7.131394339604538351e-07,7.256506521001109553e-07,7.381618702397680754e-07,7.506730883794251955e-07,7.631843065190823156e-07,7.756955246587394357e-07,7.882067427983965559e-07 +0.000000000000000000e+00,1.294361446415899479e-08,2.588722892831798958e-08,3.883084339247698272e-08,5.177445785663597255e-08,6.471807232079496899e-08,7.766168678495396544e-08,9.060530124911296188e-08,1.035489157132719583e-07,1.164925301774309548e-07,1.294361446415899380e-07,1.423797591057489212e-07,1.553233735699079044e-07,1.682669880340668876e-07,1.812106024982258708e-07,1.941542169623848540e-07,2.070978314265438373e-07,2.200414458907028205e-07,2.329850603548618037e-07,2.459286748190208134e-07,2.588722892831798230e-07,2.718159037473388327e-07,2.847595182114978424e-07,2.977031326756568521e-07,3.106467471398158618e-07,3.235903616039748714e-07,3.365339760681338811e-07,3.494775905322928908e-07,3.624212049964519005e-07,3.753648194606109102e-07,3.883084339247699198e-07,4.012520483889289295e-07,4.141956628530879392e-07,4.271392773172469489e-07,4.400828917814059586e-07,4.530265062455649682e-07,4.659701207097239779e-07,4.789137351738829876e-07,4.918573496380420502e-07,5.048009641022011128e-07,5.177445785663601755e-07,5.306881930305192381e-07,5.436318074946783007e-07,5.565754219588373633e-07,5.695190364229964259e-07,5.824626508871554886e-07,5.954062653513145512e-07,6.083498798154736138e-07,6.212934942796326764e-07,6.342371087437917390e-07,6.471807232079508017e-07,6.601243376721098643e-07,6.730679521362689269e-07,6.860115666004279895e-07,6.989551810645870521e-07,7.118987955287461148e-07,7.248424099929051774e-07,7.377860244570642400e-07,7.507296389212233026e-07,7.636732533853823652e-07,7.766168678495414279e-07,7.895604823137004905e-07,8.025040967778595531e-07,8.154477112420186157e-07 +0.000000000000000000e+00,1.381387132738495650e-08,2.762774265476991300e-08,4.144161398215486620e-08,5.525548530953981939e-08,6.906935663692477258e-08,8.288322796430973239e-08,9.669709929169469220e-08,1.105109706190796520e-07,1.243248419464646118e-07,1.381387132738495716e-07,1.519525846012345314e-07,1.657664559286194912e-07,1.795803272560044511e-07,1.933941985833894109e-07,2.072080699107743707e-07,2.210219412381593305e-07,2.348358125655442903e-07,2.486496838929292766e-07,2.624635552203142893e-07,2.762774265476993021e-07,2.900912978750843148e-07,3.039051692024693276e-07,3.177190405298543403e-07,3.315329118572393531e-07,3.453467831846243658e-07,3.591606545120093786e-07,3.729745258393943913e-07,3.867883971667794041e-07,4.006022684941644168e-07,4.144161398215494296e-07,4.282300111489344423e-07,4.420438824763194551e-07,4.558577538037044678e-07,4.696716251310894806e-07,4.834854964584744933e-07,4.972993677858595061e-07,5.111132391132445188e-07,5.249271104406295316e-07,5.387409817680145443e-07,5.525548530953995571e-07,5.663687244227845698e-07,5.801825957501695826e-07,5.939964670775545953e-07,6.078103384049396081e-07,6.216242097323246208e-07,6.354380810597096336e-07,6.492519523870946463e-07,6.630658237144796591e-07,6.768796950418646718e-07,6.906935663692496846e-07,7.045074376966346973e-07,7.183213090240197101e-07,7.321351803514047228e-07,7.459490516787897356e-07,7.597629230061747483e-07,7.735767943335597611e-07,7.873906656609447738e-07,8.012045369883297866e-07,8.150184083157147993e-07,8.288322796430998121e-07,8.426461509704848248e-07,8.564600222978698376e-07,8.702738936252548503e-07 +0.000000000000000000e+00,1.072066736071014881e-08,2.144133472142029761e-08,3.216200208213044642e-08,4.288266944284059523e-08,5.360333680355074403e-08,6.432400416426089284e-08,7.504467152497104165e-08,8.576533888568119045e-08,9.648600624639133926e-08,1.072066736071014881e-07,1.179273409678116369e-07,1.286480083285217857e-07,1.393686756892319477e-07,1.500893430499421098e-07,1.608100104106522718e-07,1.715306777713624338e-07,1.822513451320725959e-07,1.929720124927827579e-07,2.036926798534929200e-07,2.144133472142030820e-07,2.251340145749132441e-07,2.358546819356234061e-07,2.465753492963335681e-07,2.572960166570437302e-07,2.680166840177538922e-07,2.787373513784640543e-07,2.894580187391742163e-07,3.001786860998843783e-07,3.108993534605945404e-07,3.216200208213047024e-07,3.323406881820148645e-07,3.430613555427250265e-07,3.537820229034351886e-07,3.645026902641453506e-07,3.752233576248555126e-07,3.859440249855656747e-07,3.966646923462758367e-07,4.073853597069859988e-07,4.181060270676961608e-07,4.288266944284063228e-07,4.395473617891164849e-07,4.502680291498266469e-07,4.609886965105368090e-07,4.717093638712469710e-07,4.824300312319571331e-07,4.931506985926673480e-07,5.038713659533775630e-07,5.145920333140877780e-07,5.253127006747979930e-07,5.360333680355082080e-07,5.467540353962184229e-07,5.574747027569286379e-07,5.681953701176388529e-07,5.789160374783490679e-07,5.896367048390592829e-07,6.003573721997694978e-07,6.110780395604797128e-07,6.217987069211899278e-07,6.325193742819001428e-07,6.432400416426103578e-07,6.539607090033205728e-07,6.646813763640307877e-07,6.754020437247410027e-07 +0.000000000000000000e+00,1.292807672935464940e-08,2.585615345870929880e-08,3.878423018806394490e-08,5.171230691741859099e-08,6.464038364677323708e-08,7.756846037612788979e-08,9.049653710548254250e-08,1.034246138348371952e-07,1.163526905641918479e-07,1.292807672935465006e-07,1.422088440229011666e-07,1.551369207522558325e-07,1.680649974816104985e-07,1.809930742109651644e-07,1.939211509403198304e-07,2.068492276696744963e-07,2.197773043990291623e-07,2.327053811283838282e-07,2.456334578577384941e-07,2.585615345870931601e-07,2.714896113164478260e-07,2.844176880458024920e-07,2.973457647751571579e-07,3.102738415045118239e-07,3.232019182338664898e-07,3.361299949632211558e-07,3.490580716925758217e-07,3.619861484219304876e-07,3.749142251512851536e-07,3.878423018806398195e-07,4.007703786099944855e-07,4.136984553393491514e-07,4.266265320687038174e-07,4.395546087980584833e-07,4.524826855274131493e-07,4.654107622567678152e-07,4.783388389861225341e-07,4.912669157154773059e-07,5.041949924448320777e-07,5.171230691741868496e-07,5.300511459035416214e-07,5.429792226328963932e-07,5.559072993622511650e-07,5.688353760916059369e-07,5.817634528209607087e-07,5.946915295503154805e-07,6.076196062796702523e-07,6.205476830090250242e-07,6.334757597383797960e-07,6.464038364677345678e-07,6.593319131970893396e-07,6.722599899264441115e-07,6.851880666557988833e-07,6.981161433851536551e-07,7.110442201145084269e-07,7.239722968438631988e-07,7.369003735732179706e-07,7.498284503025727424e-07,7.627565270319275142e-07,7.756846037612822861e-07,7.886126804906370579e-07,8.015407572199918297e-07,8.144688339493466015e-07 +0.000000000000000000e+00,1.294361446416525986e-08,2.588722892833051971e-08,3.883084339249578288e-08,5.177445785666104605e-08,6.471807232082630921e-08,7.766168678499156576e-08,9.060530124915682231e-08,1.035489157133220789e-07,1.164925301774873354e-07,1.294361446416525920e-07,1.423797591058178485e-07,1.553233735699831051e-07,1.682669880341483616e-07,1.812106024983136181e-07,1.941542169624788747e-07,2.070978314266441312e-07,2.200414458908093878e-07,2.329850603549746443e-07,2.459286748191399274e-07,2.588722892833052368e-07,2.718159037474705463e-07,2.847595182116358558e-07,2.977031326758011653e-07,3.106467471399664748e-07,3.235903616041317843e-07,3.365339760682970938e-07,3.494775905324624033e-07,3.624212049966277128e-07,3.753648194607930222e-07,3.883084339249583317e-07,4.012520483891236412e-07,4.141956628532889507e-07,4.271392773174542602e-07,4.400828917816195697e-07,4.530265062457848792e-07,4.659701207099501887e-07,4.789137351741154981e-07,4.918573496382808076e-07,5.048009641024461171e-07,5.177445785666114266e-07,5.306881930307767361e-07,5.436318074949420456e-07,5.565754219591073551e-07,5.695190364232726646e-07,5.824626508874379740e-07,5.954062653516032835e-07,6.083498798157685930e-07,6.212934942799339025e-07,6.342371087440992120e-07,6.471807232082645215e-07,6.601243376724298310e-07,6.730679521365951405e-07,6.860115666007604500e-07,6.989551810649257594e-07,7.118987955290910689e-07,7.248424099932563784e-07,7.377860244574216879e-07,7.507296389215869974e-07,7.636732533857523069e-07,7.766168678499176164e-07,7.895604823140829259e-07,8.025040967782482353e-07,8.154477112424135448e-07 +0.000000000000000000e+00,1.139203556084209215e-08,2.278407112168418430e-08,3.417610668252627315e-08,4.556814224336836199e-08,5.696017780421045084e-08,6.835221336505254630e-08,7.974424892589464176e-08,9.113628448673673722e-08,1.025283200475788327e-07,1.139203556084209281e-07,1.253123911692630104e-07,1.367044267301050926e-07,1.480964622909471748e-07,1.594884978517892570e-07,1.708805334126313393e-07,1.822725689734734215e-07,1.936646045343155037e-07,2.050566400951575860e-07,2.164486756559996682e-07,2.278407112168417504e-07,2.392327467776838326e-07,2.506247823385259149e-07,2.620168178993679971e-07,2.734088534602100793e-07,2.848008890210521615e-07,2.961929245818942438e-07,3.075849601427363260e-07,3.189769957035784082e-07,3.303690312644204904e-07,3.417610668252625727e-07,3.531531023861046549e-07,3.645451379469467371e-07,3.759371735077888193e-07,3.873292090686309016e-07,3.987212446294729838e-07,4.101132801903150660e-07,4.215053157511571482e-07,4.328973513119992305e-07,4.442893868728413127e-07,4.556814224336833949e-07,4.670734579945254772e-07,4.784654935553675594e-07,4.898575291162096945e-07,5.012495646770518297e-07,5.126416002378939649e-07,5.240336357987361000e-07,5.354256713595782352e-07,5.468177069204203704e-07,5.582097424812625055e-07,5.696017780421046407e-07,5.809938136029467759e-07,5.923858491637889110e-07,6.037778847246310462e-07,6.151699202854731814e-07,6.265619558463153165e-07,6.379539914071574517e-07,6.493460269679995869e-07,6.607380625288417220e-07,6.721300980896838572e-07,6.835221336505259924e-07,6.949141692113681275e-07,7.063062047722102627e-07,7.176982403330523979e-07 +0.000000000000000000e+00,1.386229091983270776e-08,2.772458183966541552e-08,4.158687275949812659e-08,5.544916367933083766e-08,6.931145459916354873e-08,8.317374551899625318e-08,9.703603643882895763e-08,1.108983273586616621e-07,1.247606182784943533e-07,1.386229091983270445e-07,1.524852001181597357e-07,1.663474910379924270e-07,1.802097819578251182e-07,1.940720728776578094e-07,2.079343637974905006e-07,2.217966547173231918e-07,2.356589456371558830e-07,2.495212365569886007e-07,2.633835274768213184e-07,2.772458183966540361e-07,2.911081093164867538e-07,3.049704002363194715e-07,3.188326911561521892e-07,3.326949820759849068e-07,3.465572729958176245e-07,3.604195639156503422e-07,3.742818548354830599e-07,3.881441457553157776e-07,4.020064366751484953e-07,4.158687275949812130e-07,4.297310185148139307e-07,4.435933094346466483e-07,4.574556003544793660e-07,4.713178912743120837e-07,4.851801821941447485e-07,4.990424731139774132e-07,5.129047640338100780e-07,5.267670549536427427e-07,5.406293458734754074e-07,5.544916367933080722e-07,5.683539277131407369e-07,5.822162186329734017e-07,5.960785095528060664e-07,6.099408004726387312e-07,6.238030913924713959e-07,6.376653823123040607e-07,6.515276732321367254e-07,6.653899641519693902e-07,6.792522550718020549e-07,6.931145459916347197e-07,7.069768369114673844e-07,7.208391278313000492e-07,7.347014187511327139e-07,7.485637096709653787e-07,7.624260005907980434e-07,7.762882915106307081e-07,7.901505824304633729e-07,8.040128733502960376e-07,8.178751642701287024e-07,8.317374551899613671e-07,8.455997461097940319e-07,8.594620370296266966e-07,8.733243279494593614e-07 +0.000000000000000000e+00,1.251121813966975117e-08,2.502243627933950234e-08,3.753365441900925185e-08,5.004487255867899805e-08,6.255609069834874426e-08,7.506730883801849046e-08,8.757852697768823667e-08,1.000897451173579829e-07,1.126009632570277291e-07,1.251121813966974620e-07,1.376233995363671818e-07,1.501346176760369015e-07,1.626458358157066213e-07,1.751570539553763410e-07,1.876682720950460607e-07,2.001794902347157805e-07,2.126907083743855002e-07,2.252019265140552199e-07,2.377131446537249397e-07,2.502243627933946594e-07,2.627355809330643791e-07,2.752467990727340989e-07,2.877580172124038186e-07,3.002692353520735383e-07,3.127804534917432581e-07,3.252916716314129778e-07,3.378028897710826975e-07,3.503141079107524173e-07,3.628253260504221370e-07,3.753365441900918568e-07,3.878477623297615765e-07,4.003589804694312962e-07,4.128701986091010160e-07,4.253814167487707357e-07,4.378926348884404554e-07,4.504038530281101752e-07,4.629150711677798949e-07,4.754262893074496146e-07,4.879375074471192814e-07,5.004487255867890012e-07,5.129599437264587209e-07,5.254711618661284406e-07,5.379823800057981604e-07,5.504935981454678801e-07,5.630048162851375998e-07,5.755160344248073196e-07,5.880272525644770393e-07,6.005384707041467590e-07,6.130496888438164788e-07,6.255609069834861985e-07,6.380721251231559182e-07,6.505833432628256380e-07,6.630945614024953577e-07,6.756057795421650775e-07,6.881169976818347972e-07,7.006282158215045169e-07,7.131394339611742367e-07,7.256506521008439564e-07,7.381618702405136761e-07,7.506730883801833959e-07,7.631843065198531156e-07,7.756955246595228353e-07,7.882067427991925551e-07 +0.000000000000000000e+00,1.075490257224984878e-08,2.150980514449969756e-08,3.226470771674954634e-08,4.301961028899939512e-08,5.377451286124924390e-08,6.452941543349909267e-08,7.528431800574893484e-08,8.603922057799877700e-08,9.679412315024861916e-08,1.075490257224984613e-07,1.183039282947483035e-07,1.290588308669981589e-07,1.398137334392480143e-07,1.505686360114978697e-07,1.613235385837477251e-07,1.720784411559975805e-07,1.828333437282474359e-07,1.935882463004972913e-07,2.043431488727471467e-07,2.150980514449970021e-07,2.258529540172468574e-07,2.366078565894967128e-07,2.473627591617465682e-07,2.581176617339964236e-07,2.688725643062462790e-07,2.796274668784961344e-07,2.903823694507459898e-07,3.011372720229958452e-07,3.118921745952457006e-07,3.226470771674955560e-07,3.334019797397454114e-07,3.441568823119952668e-07,3.549117848842451222e-07,3.656666874564949776e-07,3.764215900287448330e-07,3.871764926009946884e-07,3.979313951732445438e-07,4.086862977454943992e-07,4.194412003177442546e-07,4.301961028899941100e-07,4.409510054622439654e-07,4.517059080344938208e-07,4.624608106067436762e-07,4.732157131789935316e-07,4.839706157512434399e-07,4.947255183234933482e-07,5.054804208957432566e-07,5.162353234679931649e-07,5.269902260402430733e-07,5.377451286124929816e-07,5.485000311847428899e-07,5.592549337569927983e-07,5.700098363292427066e-07,5.807647389014926149e-07,5.915196414737425233e-07,6.022745440459924316e-07,6.130294466182423399e-07,6.237843491904922483e-07,6.345392517627421566e-07,6.452941543349920650e-07,6.560490569072419733e-07,6.668039594794918816e-07,6.775588620517417900e-07 +0.000000000000000000e+00,1.062082650448464627e-08,2.124165300896929255e-08,3.186247951345393717e-08,4.248330601793857848e-08,5.310413252242321979e-08,6.372495902690786111e-08,7.434578553139250904e-08,8.496661203587715696e-08,9.558743854036180489e-08,1.062082650448464528e-07,1.168290915493311008e-07,1.274499180538157487e-07,1.380707445583003966e-07,1.486915710627850445e-07,1.593123975672696925e-07,1.699332240717543404e-07,1.805540505762389883e-07,1.911748770807236363e-07,2.017957035852082842e-07,2.124165300896929321e-07,2.230373565941775800e-07,2.336581830986622280e-07,2.442790096031468759e-07,2.548998361076315503e-07,2.655206626121162247e-07,2.761414891166008991e-07,2.867623156210855735e-07,2.973831421255702479e-07,3.080039686300549223e-07,3.186247951345395967e-07,3.292456216390242711e-07,3.398664481435089455e-07,3.504872746479936199e-07,3.611081011524782943e-07,3.717289276569629687e-07,3.823497541614476431e-07,3.929705806659323175e-07,4.035914071704169919e-07,4.142122336749016663e-07,4.248330601793863407e-07,4.354538866838710151e-07,4.460747131883556895e-07,4.566955396928403639e-07,4.673163661973250383e-07,4.779371927018097127e-07,4.885580192062943871e-07,4.991788457107790615e-07,5.097996722152637359e-07,5.204204987197484103e-07,5.310413252242330847e-07,5.416621517287177591e-07,5.522829782332024335e-07,5.629038047376871079e-07,5.735246312421717823e-07,5.841454577466564567e-07,5.947662842511411311e-07,6.053871107556258055e-07,6.160079372601104799e-07,6.266287637645951543e-07,6.372495902690798287e-07,6.478704167735645031e-07,6.584912432780491775e-07,6.691120697825338519e-07 +0.000000000000000000e+00,1.247917697155230974e-08,2.495835394310461949e-08,3.743753091465693088e-08,4.991670788620924559e-08,6.239588485776156029e-08,7.487506182931387500e-08,8.735423880086618971e-08,9.983341577241850441e-08,1.123125927439708191e-07,1.247917697155231471e-07,1.372709466870754882e-07,1.497501236586278294e-07,1.622293006301801706e-07,1.747084776017325118e-07,1.871876545732848529e-07,1.996668315448371941e-07,2.121460085163895353e-07,2.246251854879418765e-07,2.371043624594942176e-07,2.495835394310465588e-07,2.620627164025989000e-07,2.745418933741512412e-07,2.870210703457035823e-07,2.995002473172559235e-07,3.119794242888082647e-07,3.244586012603606059e-07,3.369377782319129470e-07,3.494169552034652882e-07,3.618961321750176294e-07,3.743753091465699706e-07,3.868544861181223117e-07,3.993336630896746529e-07,4.118128400612269941e-07,4.242920170327793353e-07,4.367711940043316764e-07,4.492503709758840176e-07,4.617295479474363588e-07,4.742087249189887000e-07,4.866879018905409882e-07,4.991670788620932235e-07,5.116462558336454588e-07,5.241254328051976941e-07,5.366046097767499294e-07,5.490837867483021647e-07,5.615629637198544000e-07,5.740421406914066353e-07,5.865213176629588706e-07,5.990004946345111059e-07,6.114796716060633412e-07,6.239588485776155765e-07,6.364380255491678118e-07,6.489172025207200471e-07,6.613963794922722824e-07,6.738755564638245177e-07,6.863547334353767529e-07,6.988339104069289882e-07,7.113130873784812235e-07,7.237922643500334588e-07,7.362714413215856941e-07,7.487506182931379294e-07,7.612297952646901647e-07,7.737089722362424000e-07,7.861881492077946353e-07 +0.000000000000000000e+00,1.075490257226124071e-08,2.150980514452248142e-08,3.226470771678372544e-08,4.301961028904496946e-08,5.377451286130621348e-08,6.452941543356745088e-08,7.528431800582868828e-08,8.603922057808992568e-08,9.679412315035116309e-08,1.075490257226124005e-07,1.183039282948736379e-07,1.290588308671348753e-07,1.398137334393961127e-07,1.505686360116573501e-07,1.613235385839185875e-07,1.720784411561798249e-07,1.828333437284410623e-07,1.935882463007022997e-07,2.043431488729635371e-07,2.150980514452247745e-07,2.258529540174860119e-07,2.366078565897472493e-07,2.473627591620084602e-07,2.581176617342696976e-07,2.688725643065309350e-07,2.796274668787921724e-07,2.903823694510534098e-07,3.011372720233146473e-07,3.118921745955758847e-07,3.226470771678371221e-07,3.334019797400983595e-07,3.441568823123595969e-07,3.549117848846208343e-07,3.656666874568820717e-07,3.764215900291433091e-07,3.871764926014045465e-07,3.979313951736657839e-07,4.086862977459270213e-07,4.194412003181882587e-07,4.301961028904494961e-07,4.409510054627107335e-07,4.517059080349719709e-07,4.624608106072332083e-07,4.732157131794944457e-07,4.839706157517556831e-07,4.947255183240169205e-07,5.054804208962781579e-07,5.162353234685393953e-07,5.269902260408006327e-07,5.377451286130618701e-07,5.485000311853231075e-07,5.592549337575843449e-07,5.700098363298455823e-07,5.807647389021068197e-07,5.915196414743680571e-07,6.022745440466292945e-07,6.130294466188905319e-07,6.237843491911517693e-07,6.345392517634130067e-07,6.452941543356742441e-07,6.560490569079354815e-07,6.668039594801967189e-07,6.775588620524579563e-07 +0.000000000000000000e+00,1.062082650449649316e-08,2.124165300899298631e-08,3.186247951348947947e-08,4.248330601798597262e-08,5.310413252248246578e-08,6.372495902697895893e-08,7.434578553147545209e-08,8.496661203597194525e-08,9.558743854046843840e-08,1.062082650449649316e-07,1.168290915494614247e-07,1.274499180539579179e-07,1.380707445584543978e-07,1.486915710629508777e-07,1.593123975674473576e-07,1.699332240719438376e-07,1.805540505764403175e-07,1.911748770809367974e-07,2.017957035854332773e-07,2.124165300899297572e-07,2.230373565944262372e-07,2.336581830989227171e-07,2.442790096034191970e-07,2.548998361079156769e-07,2.655206626124121568e-07,2.761414891169086368e-07,2.867623156214051167e-07,2.973831421259015966e-07,3.080039686303980765e-07,3.186247951348945564e-07,3.292456216393910364e-07,3.398664481438875163e-07,3.504872746483839962e-07,3.611081011528804761e-07,3.717289276573769560e-07,3.823497541618734360e-07,3.929705806663699159e-07,4.035914071708663958e-07,4.142122336753628757e-07,4.248330601798593556e-07,4.354538866843558356e-07,4.460747131888523155e-07,4.566955396933487954e-07,4.673163661978452753e-07,4.779371927023417553e-07,4.885580192068381822e-07,4.991788457113346092e-07,5.097996722158310362e-07,5.204204987203274632e-07,5.310413252248238902e-07,5.416621517293203171e-07,5.522829782338167441e-07,5.629038047383131711e-07,5.735246312428095981e-07,5.841454577473060251e-07,5.947662842518024520e-07,6.053871107562988790e-07,6.160079372607953060e-07,6.266287637652917330e-07,6.372495902697881600e-07,6.478704167742845870e-07,6.584912432787810139e-07,6.691120697832774409e-07 +0.000000000000000000e+00,1.247917697156421949e-08,2.495835394312843898e-08,3.743753091469265847e-08,4.991670788625687796e-08,6.239588485782110406e-08,7.487506182938533017e-08,8.735423880094955628e-08,9.983341577251378238e-08,1.123125927440780085e-07,1.247917697156422346e-07,1.372709466872064607e-07,1.497501236587706868e-07,1.622293006303349129e-07,1.747084776018991390e-07,1.871876545734633651e-07,1.996668315450275912e-07,2.121460085165918173e-07,2.246251854881560434e-07,2.371043624597202696e-07,2.495835394312845221e-07,2.620627164028487747e-07,2.745418933744130273e-07,2.870210703459772799e-07,2.995002473175415324e-07,3.119794242891057850e-07,3.244586012606700376e-07,3.369377782322342902e-07,3.494169552037985427e-07,3.618961321753627953e-07,3.743753091469270479e-07,3.868544861184913005e-07,3.993336630900555530e-07,4.118128400616198056e-07,4.242920170331840582e-07,4.367711940047483108e-07,4.492503709763125634e-07,4.617295479478768159e-07,4.742087249194410685e-07,4.866879018910053740e-07,4.991670788625696795e-07,5.116462558341339851e-07,5.241254328056982906e-07,5.366046097772625961e-07,5.490837867488269016e-07,5.615629637203912071e-07,5.740421406919555126e-07,5.865213176635198181e-07,5.990004946350841237e-07,6.114796716066484292e-07,6.239588485782127347e-07,6.364380255497770402e-07,6.489172025213413457e-07,6.613963794929056512e-07,6.738755564644699568e-07,6.863547334360342623e-07,6.988339104075985678e-07,7.113130873791628733e-07,7.237922643507271788e-07,7.362714413222914843e-07,7.487506182938557899e-07,7.612297952654200954e-07,7.737089722369844009e-07,7.861881492085487064e-07 +0.000000000000000000e+00,1.137515183147303087e-08,2.275030366294606173e-08,3.412545549441909260e-08,4.550060732589212347e-08,5.687575915736515434e-08,6.825091098883818520e-08,7.962606282031121607e-08,9.100121465178424694e-08,1.023763664832572778e-07,1.137515183147303087e-07,1.251266701462033395e-07,1.365018219776763704e-07,1.478769738091494013e-07,1.592521256406224321e-07,1.706272774720954630e-07,1.820024293035684939e-07,1.933775811350415247e-07,2.047527329665145556e-07,2.161278847979875865e-07,2.275030366294606173e-07,2.388781884609336482e-07,2.502533402924066791e-07,2.616284921238797099e-07,2.730036439553527408e-07,2.843787957868257717e-07,2.957539476182988025e-07,3.071290994497718334e-07,3.185042512812448643e-07,3.298794031127178952e-07,3.412545549441909260e-07,3.526297067756639569e-07,3.640048586071369878e-07,3.753800104386100186e-07,3.867551622700830495e-07,3.981303141015560804e-07,4.095054659330291112e-07,4.208806177645021421e-07,4.322557695959751730e-07,4.436309214274482038e-07,4.550060732589212347e-07,4.663812250903942656e-07,4.777563769218672964e-07,4.891315287533403273e-07,5.005066805848133582e-07,5.118818324162863890e-07,5.232569842477594199e-07,5.346321360792324508e-07,5.460072879107054816e-07,5.573824397421785125e-07,5.687575915736515434e-07,5.801327434051245742e-07,5.915078952365976051e-07,6.028830470680706360e-07,6.142581988995436668e-07,6.256333507310166977e-07,6.370085025624897286e-07,6.483836543939627594e-07,6.597588062254357903e-07,6.711339580569088212e-07,6.825091098883818520e-07,6.938842617198548829e-07,7.052594135513279138e-07,7.166345653828009446e-07 +0.000000000000000000e+00,1.103351110919131770e-08,2.206702221838263539e-08,3.310053332757395143e-08,4.413404443676526416e-08,5.516755554595657690e-08,6.620106665514788963e-08,7.723457776433920236e-08,8.826808887353051510e-08,9.930159998272182783e-08,1.103351110919131406e-07,1.213686222011044533e-07,1.324021333102957528e-07,1.434356444194870523e-07,1.544691555286783518e-07,1.655026666378696513e-07,1.765361777470609508e-07,1.875696888562522503e-07,1.986031999654435498e-07,2.096367110746348493e-07,2.206702221838261488e-07,2.317037332930174483e-07,2.427372444022087478e-07,2.537707555114000737e-07,2.648042666205913997e-07,2.758377777297827257e-07,2.868712888389740516e-07,2.979047999481653776e-07,3.089383110573567036e-07,3.199718221665480295e-07,3.310053332757393555e-07,3.420388443849306815e-07,3.530723554941220074e-07,3.641058666033133334e-07,3.751393777125046594e-07,3.861728888216959853e-07,3.972063999308873113e-07,4.082399110400786373e-07,4.192734221492699632e-07,4.303069332584612892e-07,4.413404443676526152e-07,4.523739554768439411e-07,4.634074665860352671e-07,4.744409776952265931e-07,4.854744888044179190e-07,4.965079999136092450e-07,5.075415110228005710e-07,5.185750221319918970e-07,5.296085332411832229e-07,5.406420443503745489e-07,5.516755554595658749e-07,5.627090665687572008e-07,5.737425776779485268e-07,5.847760887871398528e-07,5.958095998963311787e-07,6.068431110055225047e-07,6.178766221147138307e-07,6.289101332239051566e-07,6.399436443330964826e-07,6.509771554422878086e-07,6.620106665514791345e-07,6.730441776606704605e-07,6.840776887698617865e-07,6.951111998790531124e-07 +0.000000000000000000e+00,1.302046262938828160e-08,2.604092525877656320e-08,3.906138788816484314e-08,5.208185051755311977e-08,6.510231314694138979e-08,7.812277577632965981e-08,9.114323840571792983e-08,1.041637010351061998e-07,1.171841636644944699e-07,1.302046262938827266e-07,1.432250889232709834e-07,1.562455515526592402e-07,1.692660141820474970e-07,1.822864768114357538e-07,1.953069394408240106e-07,2.083274020702122673e-07,2.213478646996005241e-07,2.343683273289887809e-07,2.473887899583770642e-07,2.604092525877653474e-07,2.734297152171536307e-07,2.864501778465419139e-07,2.994706404759301972e-07,3.124911031053184804e-07,3.255115657347067637e-07,3.385320283640950469e-07,3.515524909934833302e-07,3.645729536228716134e-07,3.775934162522598967e-07,3.906138788816481799e-07,4.036343415110364632e-07,4.166548041404247464e-07,4.296752667698130297e-07,4.426957293992013129e-07,4.557161920285895962e-07,4.687366546579778794e-07,4.817571172873661627e-07,4.947775799167544460e-07,5.077980425461427292e-07,5.208185051755310125e-07,5.338389678049192957e-07,5.468594304343075790e-07,5.598798930636958622e-07,5.729003556930841455e-07,5.859208183224724287e-07,5.989412809518607120e-07,6.119617435812489952e-07,6.249822062106372785e-07,6.380026688400255617e-07,6.510231314694138450e-07,6.640435940988021282e-07,6.770640567281904115e-07,6.900845193575786947e-07,7.031049819869669780e-07,7.161254446163552612e-07,7.291459072457435445e-07,7.421663698751318277e-07,7.551868325045201110e-07,7.682072951339083942e-07,7.812277577632966775e-07,7.942482203926849608e-07,8.072686830220732440e-07,8.202891456514615273e-07 +0.000000000000000000e+00,1.137515183148324820e-08,2.275030366296649640e-08,3.412545549444974461e-08,4.550060732593299281e-08,5.687575915741624101e-08,6.825091098889948921e-08,7.962606282038273742e-08,9.100121465186598562e-08,1.023763664833492338e-07,1.137515183148324820e-07,1.251266701463157302e-07,1.365018219777989784e-07,1.478769738092822266e-07,1.592521256407654748e-07,1.706272774722487230e-07,1.820024293037319712e-07,1.933775811352152194e-07,2.047527329666984676e-07,2.161278847981817158e-07,2.275030366296649640e-07,2.388781884611482122e-07,2.502533402926314604e-07,2.616284921241147087e-07,2.730036439555979569e-07,2.843787957870812051e-07,2.957539476185644533e-07,3.071290994500477015e-07,3.185042512815309497e-07,3.298794031130141979e-07,3.412545549444974461e-07,3.526297067759806943e-07,3.640048586074639425e-07,3.753800104389471907e-07,3.867551622704304389e-07,3.981303141019136871e-07,4.095054659333969353e-07,4.208806177648801835e-07,4.322557695963634317e-07,4.436309214278466799e-07,4.550060732593299281e-07,4.663812250908131763e-07,4.777563769222964245e-07,4.891315287537796198e-07,5.005066805852628150e-07,5.118818324167460103e-07,5.232569842482292055e-07,5.346321360797124008e-07,5.460072879111955961e-07,5.573824397426787913e-07,5.687575915741619866e-07,5.801327434056451819e-07,5.915078952371283771e-07,6.028830470686115724e-07,6.142581989000947676e-07,6.256333507315779629e-07,6.370085025630611582e-07,6.483836543945443534e-07,6.597588062260275487e-07,6.711339580575107440e-07,6.825091098889939392e-07,6.938842617204771345e-07,7.052594135519603297e-07,7.166345653834435250e-07 +0.000000000000000000e+00,1.103351110920213225e-08,2.206702221840426451e-08,3.310053332760639676e-08,4.413404443680852902e-08,5.516755554601066127e-08,6.620106665521279353e-08,7.723457776441493240e-08,8.826808887361707127e-08,9.930159998281921015e-08,1.103351110920213490e-07,1.213686222012234879e-07,1.324021333104256135e-07,1.434356444196277392e-07,1.544691555288298648e-07,1.655026666380319904e-07,1.765361777472341161e-07,1.875696888564362417e-07,1.986031999656383674e-07,2.096367110748404930e-07,2.206702221840426186e-07,2.317037332932447443e-07,2.427372444024468699e-07,2.537707555116489955e-07,2.648042666208511212e-07,2.758377777300532468e-07,2.868712888392553725e-07,2.979047999484574981e-07,3.089383110576596237e-07,3.199718221668617494e-07,3.310053332760638750e-07,3.420388443852660006e-07,3.530723554944681263e-07,3.641058666036702519e-07,3.751393777128723776e-07,3.861728888220745032e-07,3.972063999312766288e-07,4.082399110404787545e-07,4.192734221496808801e-07,4.303069332588830057e-07,4.413404443680851314e-07,4.523739554772872570e-07,4.634074665864893827e-07,4.744409776956915083e-07,4.854744888048936339e-07,4.965079999140957596e-07,5.075415110232978852e-07,5.185750221325000108e-07,5.296085332417021365e-07,5.406420443509042621e-07,5.516755554601063878e-07,5.627090665693085134e-07,5.737425776785106390e-07,5.847760887877127647e-07,5.958095998969148903e-07,6.068431110061170159e-07,6.178766221153191416e-07,6.289101332245212672e-07,6.399436443337233929e-07,6.509771554429255185e-07,6.620106665521276441e-07,6.730441776613297698e-07,6.840776887705318954e-07,6.951111998797340210e-07 +0.000000000000000000e+00,1.302046262939927979e-08,2.604092525879855958e-08,3.906138788819783772e-08,5.208185051759711255e-08,6.510231314699639399e-08,7.812277577639567544e-08,9.114323840579495689e-08,1.041637010351942383e-07,1.171841636645935198e-07,1.302046262939927880e-07,1.432250889233920562e-07,1.562455515527913244e-07,1.692660141821905926e-07,1.822864768115898608e-07,1.953069394409891290e-07,2.083274020703883973e-07,2.213478646997876655e-07,2.343683273291869337e-07,2.473887899585861754e-07,2.604092525879854172e-07,2.734297152173846589e-07,2.864501778467839006e-07,2.994706404761831424e-07,3.124911031055823841e-07,3.255115657349816259e-07,3.385320283643808676e-07,3.515524909937801093e-07,3.645729536231793511e-07,3.775934162525785928e-07,3.906138788819778346e-07,4.036343415113770763e-07,4.166548041407763180e-07,4.296752667701755598e-07,4.426957293995748015e-07,4.557161920289740433e-07,4.687366546583732850e-07,4.817571172877725268e-07,4.947775799171717156e-07,5.077980425465709044e-07,5.208185051759700932e-07,5.338389678053692820e-07,5.468594304347684708e-07,5.598798930641676596e-07,5.729003556935668484e-07,5.859208183229660372e-07,5.989412809523652260e-07,6.119617435817644148e-07,6.249822062111636036e-07,6.380026688405627924e-07,6.510231314699619812e-07,6.640435940993611700e-07,6.770640567287603588e-07,6.900845193581595476e-07,7.031049819875587364e-07,7.161254446169579252e-07,7.291459072463571140e-07,7.421663698757563028e-07,7.551868325051554916e-07,7.682072951345546804e-07,7.812277577639538692e-07,7.942482203933530580e-07,8.072686830227522468e-07,8.202891456521514356e-07 +0.000000000000000000e+00,1.211222979656184694e-08,2.422445959312369388e-08,3.633668938968554082e-08,4.844891918624738776e-08,6.056114898280923470e-08,7.267337877937108164e-08,8.478560857593292858e-08,9.689783837249477552e-08,1.090100681690566225e-07,1.211222979656184694e-07,1.332345277621803031e-07,1.453467575587421368e-07,1.574589873553039705e-07,1.695712171518658042e-07,1.816834469484276379e-07,1.937956767449894716e-07,2.059079065415513053e-07,2.180201363381131390e-07,2.301323661346749727e-07,2.422445959312367800e-07,2.543568257277985872e-07,2.664690555243603945e-07,2.785812853209222017e-07,2.906935151174840089e-07,3.028057449140458162e-07,3.149179747106076234e-07,3.270302045071694306e-07,3.391424343037312379e-07,3.512546641002930451e-07,3.633668938968548523e-07,3.754791236934166596e-07,3.875913534899784668e-07,3.997035832865402740e-07,4.118158130831020813e-07,4.239280428796638885e-07,4.360402726762256958e-07,4.481525024727875030e-07,4.602647322693493102e-07,4.723769620659111175e-07,4.844891918624729247e-07,4.966014216590347319e-07,5.087136514555965392e-07,5.208258812521583464e-07,5.329381110487201536e-07,5.450503408452819609e-07,5.571625706418437681e-07,5.692748004384055753e-07,5.813870302349673826e-07,5.934992600315291898e-07,6.056114898280909970e-07,6.177237196246528043e-07,6.298359494212146115e-07,6.419481792177764188e-07,6.540604090143382260e-07,6.661726388109000332e-07,6.782848686074618405e-07,6.903970984040236477e-07,7.025093282005854549e-07,7.146215579971472622e-07,7.267337877937090694e-07,7.388460175902708766e-07,7.509582473868326839e-07,7.630704771833944911e-07 +0.000000000000000000e+00,1.174338299727823763e-08,2.348676599455647526e-08,3.523014899183471124e-08,4.697353198911294391e-08,5.871691498639117658e-08,7.046029798366940925e-08,8.220368098094764192e-08,9.394706397822587459e-08,1.056904469755041073e-07,1.174338299727823399e-07,1.291772129700605594e-07,1.409205959673387920e-07,1.526639789646170247e-07,1.644073619618952574e-07,1.761507449591734900e-07,1.878941279564517227e-07,1.996375109537299554e-07,2.113808939510081880e-07,2.231242769482864207e-07,2.348676599455646534e-07,2.466110429428428860e-07,2.583544259401211187e-07,2.700978089373993514e-07,2.818411919346775841e-07,2.935845749319558167e-07,3.053279579292340494e-07,3.170713409265122821e-07,3.288147239237905147e-07,3.405581069210687474e-07,3.523014899183469801e-07,3.640448729156252127e-07,3.757882559129034454e-07,3.875316389101816781e-07,3.992750219074599107e-07,4.110184049047381434e-07,4.227617879020163761e-07,4.345051708992946087e-07,4.462485538965728414e-07,4.579919368938510741e-07,4.697353198911293068e-07,4.814787028884075394e-07,4.932220858856857721e-07,5.049654688829640048e-07,5.167088518802422374e-07,5.284522348775204701e-07,5.401956178747987028e-07,5.519390008720769354e-07,5.636823838693551681e-07,5.754257668666334008e-07,5.871691498639116334e-07,5.989125328611898661e-07,6.106559158584680988e-07,6.223992988557463315e-07,6.341426818530245641e-07,6.458860648503027968e-07,6.576294478475810295e-07,6.693728308448592621e-07,6.811162138421374948e-07,6.928595968394157275e-07,7.046029798366939601e-07,7.163463628339721928e-07,7.280897458312504255e-07,7.398331288285286581e-07 +0.000000000000000000e+00,1.375771765205118955e-08,2.751543530410237910e-08,4.127315295615356533e-08,5.503087060820475157e-08,6.878858826025593781e-08,8.254630591230713067e-08,9.630402356435832352e-08,1.100617412164095164e-07,1.238194588684607092e-07,1.375771765205119021e-07,1.513348941725630949e-07,1.650926118246142878e-07,1.788503294766654807e-07,1.926080471287166735e-07,2.063657647807678664e-07,2.201234824328190592e-07,2.338812000848702521e-07,2.476389177369214185e-07,2.613966353889725849e-07,2.751543530410237512e-07,2.889120706930749176e-07,3.026697883451260840e-07,3.164275059971772504e-07,3.301852236492284168e-07,3.439429413012795832e-07,3.577006589533307496e-07,3.714583766053819160e-07,3.852160942574330823e-07,3.989738119094842487e-07,4.127315295615354151e-07,4.264892472135865815e-07,4.402469648656377479e-07,4.540046825176889143e-07,4.677624001697400807e-07,4.815201178217912470e-07,4.952778354738424134e-07,5.090355531258935798e-07,5.227932707779447462e-07,5.365509884299959126e-07,5.503087060820470790e-07,5.640664237340982454e-07,5.778241413861494117e-07,5.915818590382005781e-07,6.053395766902517445e-07,6.190972943423029109e-07,6.328550119943540773e-07,6.466127296464052437e-07,6.603704472984564101e-07,6.741281649505075765e-07,6.878858826025587428e-07,7.016436002546099092e-07,7.154013179066610756e-07,7.291590355587122420e-07,7.429167532107634084e-07,7.566744708628145748e-07,7.704321885148657412e-07,7.841899061669169075e-07,7.979476238189680739e-07,8.117053414710192403e-07,8.254630591230704067e-07,8.392207767751215731e-07,8.529784944271727395e-07,8.667362120792239059e-07 +0.000000000000000000e+00,1.211222979657077056e-08,2.422445959314154113e-08,3.633668938971231500e-08,4.844891918628308888e-08,6.056114898285386275e-08,7.267337877942463001e-08,8.478560857599539726e-08,9.689783837256616452e-08,1.090100681691369318e-07,1.211222979657076990e-07,1.332345277622784530e-07,1.453467575588492071e-07,1.574589873554199611e-07,1.695712171519907151e-07,1.816834469485614691e-07,1.937956767451322232e-07,2.059079065417029772e-07,2.180201363382737312e-07,2.301323661348444852e-07,2.422445959314152392e-07,2.543568257279859933e-07,2.664690555245567473e-07,2.785812853211275013e-07,2.906935151176982553e-07,3.028057449142690093e-07,3.149179747108397634e-07,3.270302045074105174e-07,3.391424343039812714e-07,3.512546641005520254e-07,3.633668938971227794e-07,3.754791236936935335e-07,3.875913534902642875e-07,3.997035832868350415e-07,4.118158130834057955e-07,4.239280428799765496e-07,4.360402726765473036e-07,4.481525024731180576e-07,4.602647322696888116e-07,4.723769620662595656e-07,4.844891918628303726e-07,4.966014216594011796e-07,5.087136514559719865e-07,5.208258812525427935e-07,5.329381110491136004e-07,5.450503408456844074e-07,5.571625706422552144e-07,5.692748004388260213e-07,5.813870302353968283e-07,5.934992600319676352e-07,6.056114898285384422e-07,6.177237196251092492e-07,6.298359494216800561e-07,6.419481792182508631e-07,6.540604090148216700e-07,6.661726388113924770e-07,6.782848686079632840e-07,6.903970984045340909e-07,7.025093282011048979e-07,7.146215579976757048e-07,7.267337877942465118e-07,7.388460175908173188e-07,7.509582473873881257e-07,7.630704771839589327e-07 +0.000000000000000000e+00,1.174338299728783127e-08,2.348676599457566255e-08,3.523014899186349713e-08,4.697353198915133171e-08,5.871691498643916629e-08,7.046029798372699425e-08,8.220368098101482222e-08,9.394706397830265018e-08,1.056904469755904781e-07,1.174338299728783061e-07,1.291772129701661208e-07,1.409205959674539356e-07,1.526639789647417503e-07,1.644073619620295650e-07,1.761507449593173798e-07,1.878941279566051945e-07,1.996375109538930092e-07,2.113808939511808239e-07,2.231242769484686387e-07,2.348676599457564534e-07,2.466110429430442681e-07,2.583544259403320829e-07,2.700978089376198976e-07,2.818411919349077123e-07,2.935845749321955270e-07,3.053279579294833418e-07,3.170713409267711565e-07,3.288147239240589712e-07,3.405581069213467860e-07,3.523014899186346007e-07,3.640448729159224154e-07,3.757882559132102302e-07,3.875316389104980449e-07,3.992750219077858596e-07,4.110184049050736743e-07,4.227617879023614891e-07,4.345051708996493038e-07,4.462485538969371185e-07,4.579919368942249333e-07,4.697353198915127480e-07,4.814787028888005627e-07,4.932220858860883245e-07,5.049654688833760863e-07,5.167088518806638481e-07,5.284522348779516099e-07,5.401956178752393717e-07,5.519390008725271334e-07,5.636823838698148952e-07,5.754257668671026570e-07,5.871691498643904188e-07,5.989125328616781806e-07,6.106559158589659424e-07,6.223992988562537042e-07,6.341426818535414660e-07,6.458860648508292278e-07,6.576294478481169896e-07,6.693728308454047513e-07,6.811162138426925131e-07,6.928595968399802749e-07,7.046029798372680367e-07,7.163463628345557985e-07,7.280897458318435603e-07,7.398331288291313221e-07 +0.000000000000000000e+00,1.375771765206105616e-08,2.751543530412211232e-08,4.127315295618317178e-08,5.503087060824423125e-08,6.878858826030529072e-08,8.254630591236634356e-08,9.630402356442739641e-08,1.100617412164884493e-07,1.238194588685494889e-07,1.375771765206105285e-07,1.513348941726715681e-07,1.650926118247326077e-07,1.788503294767936473e-07,1.926080471288546869e-07,2.063657647809157266e-07,2.201234824329767662e-07,2.338812000850378058e-07,2.476389177370988719e-07,2.613966353891599380e-07,2.751543530412210040e-07,2.889120706932820701e-07,3.026697883453431362e-07,3.164275059974042023e-07,3.301852236494652684e-07,3.439429413015263345e-07,3.577006589535874005e-07,3.714583766056484666e-07,3.852160942577095327e-07,3.989738119097705988e-07,4.127315295618316649e-07,4.264892472138927310e-07,4.402469648659537971e-07,4.540046825180148631e-07,4.677624001700759292e-07,4.815201178221369424e-07,4.952778354741979555e-07,5.090355531262589687e-07,5.227932707783199818e-07,5.365509884303809949e-07,5.503087060824420081e-07,5.640664237345030212e-07,5.778241413865640344e-07,5.915818590386250475e-07,6.053395766906860607e-07,6.190972943427470738e-07,6.328550119948080870e-07,6.466127296468691001e-07,6.603704472989301132e-07,6.741281649509911264e-07,6.878858826030521395e-07,7.016436002551131527e-07,7.154013179071741658e-07,7.291590355592351790e-07,7.429167532112961921e-07,7.566744708633572053e-07,7.704321885154182184e-07,7.841899061674792315e-07,7.979476238195402447e-07,8.117053414716012578e-07,8.254630591236622710e-07,8.392207767757232841e-07,8.529784944277842973e-07,8.667362120798453104e-07 +0.000000000000000000e+00,1.279910676129699036e-08,2.559821352259398072e-08,3.839732028389097274e-08,5.119642704518796806e-08,6.399553380648496339e-08,7.679464056778195871e-08,8.959374732907895403e-08,1.023928540903759494e-07,1.151919608516729447e-07,1.279910676129699268e-07,1.407901743742669089e-07,1.535892811355638909e-07,1.663883878968608730e-07,1.791874946581578551e-07,1.919866014194548372e-07,2.047857081807518193e-07,2.175848149420488014e-07,2.303839217033457835e-07,2.431830284646427920e-07,2.559821352259398006e-07,2.687812419872368092e-07,2.815803487485338177e-07,2.943794555098308263e-07,3.071785622711278348e-07,3.199776690324248434e-07,3.327767757937218520e-07,3.455758825550188605e-07,3.583749893163158691e-07,3.711740960776128776e-07,3.839732028389098862e-07,3.967723096002068947e-07,4.095714163615039033e-07,4.223705231228009119e-07,4.351696298840979204e-07,4.479687366453949290e-07,4.607678434066919375e-07,4.735669501679889461e-07,4.863660569292860076e-07,4.991651636905830691e-07,5.119642704518801306e-07,5.247633772131771921e-07,5.375624839744742536e-07,5.503615907357713151e-07,5.631606974970683766e-07,5.759598042583654381e-07,5.887589110196624996e-07,6.015580177809595611e-07,6.143571245422566226e-07,6.271562313035536841e-07,6.399553380648507456e-07,6.527544448261478071e-07,6.655535515874448686e-07,6.783526583487419301e-07,6.911517651100389916e-07,7.039508718713360531e-07,7.167499786326331146e-07,7.295490853939301761e-07,7.423481921552272376e-07,7.551472989165242991e-07,7.679464056778213606e-07,7.807455124391184221e-07,7.935446192004154836e-07,8.063437259617125451e-07 +0.000000000000000000e+00,1.246702375666711398e-08,2.493404751333422796e-08,3.740107127000134525e-08,4.986809502666846253e-08,6.233511878333557982e-08,7.480214254000269049e-08,8.726916629666980116e-08,9.973619005333691183e-08,1.122032138100040225e-07,1.246702375666711332e-07,1.371372613233382438e-07,1.496042850800053545e-07,1.620713088366724652e-07,1.745383325933395759e-07,1.870053563500066865e-07,1.994723801066737972e-07,2.119394038633409079e-07,2.244064276200080185e-07,2.368734513766751292e-07,2.493404751333422134e-07,2.618074988900092976e-07,2.742745226466763818e-07,2.867415464033434660e-07,2.992085701600105502e-07,3.116755939166776344e-07,3.241426176733447186e-07,3.366096414300118028e-07,3.490766651866788870e-07,3.615436889433459712e-07,3.740107127000130554e-07,3.864777364566801396e-07,3.989447602133472238e-07,4.114117839700143080e-07,4.238788077266813922e-07,4.363458314833484764e-07,4.488128552400155606e-07,4.612798789966826448e-07,4.737469027533497290e-07,4.862139265100167603e-07,4.986809502666837915e-07,5.111479740233508228e-07,5.236149977800178541e-07,5.360820215366848853e-07,5.485490452933519166e-07,5.610160690500189478e-07,5.734830928066859791e-07,5.859501165633530104e-07,5.984171403200200416e-07,6.108841640766870729e-07,6.233511878333541041e-07,6.358182115900211354e-07,6.482852353466881667e-07,6.607522591033551979e-07,6.732192828600222292e-07,6.856863066166892604e-07,6.981533303733562917e-07,7.106203541300233230e-07,7.230873778866903542e-07,7.355544016433573855e-07,7.480214254000244168e-07,7.604884491566914480e-07,7.729554729133584793e-07,7.854224966700255105e-07 +0.000000000000000000e+00,1.451068604373254850e-08,2.902137208746509700e-08,4.353205813119764219e-08,5.804274417493018738e-08,7.255343021866273257e-08,8.706411626239528438e-08,1.015748023061278362e-07,1.160854883498603880e-07,1.305961743935929266e-07,1.451068604373254651e-07,1.596175464810580037e-07,1.741282325247905423e-07,1.886389185685230809e-07,2.031496046122556194e-07,2.176602906559881580e-07,2.321709766997206966e-07,2.466816627434532352e-07,2.611923487871857473e-07,2.757030348309182594e-07,2.902137208746507715e-07,3.047244069183832836e-07,3.192350929621157957e-07,3.337457790058483078e-07,3.482564650495808199e-07,3.627671510933133320e-07,3.772778371370458441e-07,3.917885231807783562e-07,4.062992092245108683e-07,4.208098952682433804e-07,4.353205813119758925e-07,4.498312673557084046e-07,4.643419533994409167e-07,4.788526394431733759e-07,4.933633254869058351e-07,5.078740115306382942e-07,5.223846975743707534e-07,5.368953836181032126e-07,5.514060696618356717e-07,5.659167557055681309e-07,5.804274417493005900e-07,5.949381277930330492e-07,6.094488138367655084e-07,6.239594998804979675e-07,6.384701859242304267e-07,6.529808719679628859e-07,6.674915580116953450e-07,6.820022440554278042e-07,6.965129300991602634e-07,7.110236161428927225e-07,7.255343021866251817e-07,7.400449882303576409e-07,7.545556742740901000e-07,7.690663603178225592e-07,7.835770463615550184e-07,7.980877324052874775e-07,8.125984184490199367e-07,8.271091044927523958e-07,8.416197905364848550e-07,8.561304765802173142e-07,8.706411626239497733e-07,8.851518486676822325e-07,8.996625347114146917e-07,9.141732207551471508e-07 +0.000000000000000000e+00,1.279910676130509011e-08,2.559821352261018023e-08,3.839732028391527199e-08,5.119642704522036707e-08,6.399553380652546215e-08,7.679464056783055722e-08,8.959374732913565230e-08,1.023928540904407474e-07,1.151919608517458425e-07,1.279910676130509243e-07,1.407901743743560061e-07,1.535892811356610880e-07,1.663883878969661698e-07,1.791874946582712517e-07,1.919866014195763335e-07,2.047857081808814153e-07,2.175848149421864972e-07,2.303839217034915790e-07,2.431830284647966344e-07,2.559821352261016898e-07,2.687812419874067451e-07,2.815803487487118005e-07,2.943794555100168559e-07,3.071785622713219113e-07,3.199776690326269666e-07,3.327767757939320220e-07,3.455758825552370774e-07,3.583749893165421327e-07,3.711740960778471881e-07,3.839732028391522435e-07,3.967723096004572989e-07,4.095714163617623542e-07,4.223705231230674096e-07,4.351696298843724650e-07,4.479687366456775204e-07,4.607678434069825757e-07,4.735669501682876311e-07,4.863660569295926335e-07,4.991651636908976360e-07,5.119642704522026384e-07,5.247633772135076408e-07,5.375624839748126433e-07,5.503615907361176457e-07,5.631606974974226481e-07,5.759598042587276506e-07,5.887589110200326530e-07,6.015580177813376554e-07,6.143571245426426579e-07,6.271562313039476603e-07,6.399553380652526627e-07,6.527544448265576651e-07,6.655535515878626676e-07,6.783526583491676700e-07,6.911517651104726724e-07,7.039508718717776749e-07,7.167499786330826773e-07,7.295490853943876797e-07,7.423481921556926822e-07,7.551472989169976846e-07,7.679464056783026870e-07,7.807455124396076895e-07,7.935446192009126919e-07,8.063437259622176943e-07 +0.000000000000000000e+00,1.246702375667559589e-08,2.493404751335119178e-08,3.740107127002678932e-08,4.986809502670239017e-08,6.233511878337798441e-08,7.480214254005357864e-08,8.726916629672917288e-08,9.973619005340476711e-08,1.122032138100803613e-07,1.246702375667559688e-07,1.371372613234315763e-07,1.496042850801071838e-07,1.620713088367827912e-07,1.745383325934583987e-07,1.870053563501340062e-07,1.994723801068096136e-07,2.119394038634852211e-07,2.244064276201608286e-07,2.368734513768364360e-07,2.493404751335120435e-07,2.618074988901876510e-07,2.742745226468632584e-07,2.867415464035388659e-07,2.992085701602144734e-07,3.116755939168900809e-07,3.241426176735656883e-07,3.366096414302412958e-07,3.490766651869169033e-07,3.615436889435925107e-07,3.740107127002681182e-07,3.864777364569437257e-07,3.989447602136193331e-07,4.114117839702949406e-07,4.238788077269705481e-07,4.363458314836461556e-07,4.488128552403217630e-07,4.612798789969973705e-07,4.737469027536729780e-07,4.862139265103485854e-07,4.986809502670241929e-07,5.111479740236998004e-07,5.236149977803754078e-07,5.360820215370510153e-07,5.485490452937266228e-07,5.610160690504022302e-07,5.734830928070778377e-07,5.859501165637534452e-07,5.984171403204290527e-07,6.108841640771046601e-07,6.233511878337802676e-07,6.358182115904558751e-07,6.482852353471314825e-07,6.607522591038070900e-07,6.732192828604826975e-07,6.856863066171583049e-07,6.981533303738339124e-07,7.106203541305095199e-07,7.230873778871851274e-07,7.355544016438607348e-07,7.480214254005363423e-07,7.604884491572119498e-07,7.729554729138875572e-07,7.854224966705631647e-07 +0.000000000000000000e+00,1.451068604374155153e-08,2.902137208748310307e-08,4.353205813122465460e-08,5.804274417496620614e-08,7.255343021870775767e-08,8.706411626244930920e-08,1.015748023061908607e-07,1.160854883499324123e-07,1.305961743936739770e-07,1.451068604374155418e-07,1.596175464811571066e-07,1.741282325248986713e-07,1.886389185686402361e-07,2.031496046123818009e-07,2.176602906561233657e-07,2.321709766998649304e-07,2.466816627436064952e-07,2.611923487873480600e-07,2.757030348310896247e-07,2.902137208748311895e-07,3.047244069185727543e-07,3.192350929623143190e-07,3.337457790060558838e-07,3.482564650497974486e-07,3.627671510935390133e-07,3.772778371372805781e-07,3.917885231810221429e-07,4.062992092247637076e-07,4.208098952685052724e-07,4.353205813122468372e-07,4.498312673559884020e-07,4.643419533997299667e-07,4.788526394434715315e-07,4.933633254872130963e-07,5.078740115309546610e-07,5.223846975746962258e-07,5.368953836184377906e-07,5.514060696621793553e-07,5.659167557059209201e-07,5.804274417496624849e-07,5.949381277934040496e-07,6.094488138371456144e-07,6.239594998808871792e-07,6.384701859246287439e-07,6.529808719683703087e-07,6.674915580121118735e-07,6.820022440558534383e-07,6.965129300995950030e-07,7.110236161433365678e-07,7.255343021870781326e-07,7.400449882308196973e-07,7.545556742745612621e-07,7.690663603183028269e-07,7.835770463620443916e-07,7.980877324057859564e-07,8.125984184495275212e-07,8.271091044932690859e-07,8.416197905370106507e-07,8.561304765807522155e-07,8.706411626244937803e-07,8.851518486682353450e-07,8.996625347119769098e-07,9.141732207557184746e-07 +0.000000000000000000e+00,1.339512449217620994e-08,2.679024898435241987e-08,4.018537347652862815e-08,5.358049796870483312e-08,6.697562246088103810e-08,8.037074695305724307e-08,9.376587144523344804e-08,1.071609959374096530e-07,1.205561204295858580e-07,1.339512449217620762e-07,1.473463694139382944e-07,1.607414939061145126e-07,1.741366183982907308e-07,1.875317428904669490e-07,2.009268673826431672e-07,2.143219918748193854e-07,2.277171163669956036e-07,2.411122408591718218e-07,2.545073653513480401e-07,2.679024898435242583e-07,2.812976143357004765e-07,2.946927388278766947e-07,3.080878633200529129e-07,3.214829878122291311e-07,3.348781123044053493e-07,3.482732367965815675e-07,3.616683612887577857e-07,3.750634857809340039e-07,3.884586102731102221e-07,4.018537347652864403e-07,4.152488592574626585e-07,4.286439837496388767e-07,4.420391082418150950e-07,4.554342327339913132e-07,4.688293572261675314e-07,4.822244817183437496e-07,4.956196062105200207e-07,5.090147307026962919e-07,5.224098551948725630e-07,5.358049796870488342e-07,5.492001041792251053e-07,5.625952286714013765e-07,5.759903531635776476e-07,5.893854776557539187e-07,6.027806021479301899e-07,6.161757266401064610e-07,6.295708511322827322e-07,6.429659756244590033e-07,6.563611001166352745e-07,6.697562246088115456e-07,6.831513491009878168e-07,6.965464735931640879e-07,7.099415980853403591e-07,7.233367225775166302e-07,7.367318470696929014e-07,7.501269715618691725e-07,7.635220960540454437e-07,7.769172205462217148e-07,7.903123450383979859e-07,8.037074695305742571e-07,8.171025940227505282e-07,8.304977185149267994e-07,8.438928430071030705e-07 +0.000000000000000000e+00,1.310706354115224530e-08,2.621412708230449060e-08,3.932119062345673425e-08,5.242825416460897458e-08,6.553531770576121492e-08,7.864238124691345526e-08,9.174944478806569559e-08,1.048565083292179359e-07,1.179635718703701763e-07,1.310706354115224298e-07,1.441776989526746834e-07,1.572847624938269370e-07,1.703918260349791906e-07,1.834988895761314441e-07,1.966059531172836977e-07,2.097130166584359513e-07,2.228200801995882048e-07,2.359271437407404584e-07,2.490342072818927385e-07,2.621412708230450185e-07,2.752483343641972985e-07,2.883553979053495786e-07,3.014624614465018586e-07,3.145695249876541387e-07,3.276765885288064187e-07,3.407836520699586987e-07,3.538907156111109788e-07,3.669977791522632588e-07,3.801048426934155389e-07,3.932119062345678189e-07,4.063189697757200990e-07,4.194260333168723790e-07,4.325330968580246590e-07,4.456401603991769391e-07,4.587472239403292191e-07,4.718542874814814992e-07,4.849613510226337792e-07,4.980684145637861122e-07,5.111754781049384452e-07,5.242825416460907781e-07,5.373896051872431111e-07,5.504966687283954441e-07,5.636037322695477771e-07,5.767107958107001101e-07,5.898178593518524430e-07,6.029249228930047760e-07,6.160319864341571090e-07,6.291390499753094420e-07,6.422461135164617750e-07,6.553531770576141080e-07,6.684602405987664409e-07,6.815673041399187739e-07,6.946743676810711069e-07,7.077814312222234399e-07,7.208884947633757729e-07,7.339955583045281058e-07,7.471026218456804388e-07,7.602096853868327718e-07,7.733167489279851048e-07,7.864238124691374378e-07,7.995308760102897707e-07,8.126379395514421037e-07,8.257450030925944367e-07 +0.000000000000000000e+00,1.520124295280679467e-08,3.040248590561358933e-08,4.560372885842038730e-08,6.080497181122719190e-08,7.600621476403399649e-08,9.120745771684080108e-08,1.064087006696476057e-07,1.216099436224544103e-07,1.368111865752612149e-07,1.520124295280680194e-07,1.672136724808748240e-07,1.824149154336816286e-07,1.976161583864884332e-07,2.128174013392952378e-07,2.280186442921020424e-07,2.432198872449088735e-07,2.584211301977157310e-07,2.736223731505225885e-07,2.888236161033294461e-07,3.040248590561363036e-07,3.192261020089431611e-07,3.344273449617500186e-07,3.496285879145568762e-07,3.648298308673637337e-07,3.800310738201705912e-07,3.952323167729774488e-07,4.104335597257843063e-07,4.256348026785911638e-07,4.408360456313980214e-07,4.560372885842048789e-07,4.712385315370117364e-07,4.864397744898185940e-07,5.016410174426254515e-07,5.168422603954323090e-07,5.320435033482391665e-07,5.472447463010460241e-07,5.624459892538528816e-07,5.776472322066597391e-07,5.928484751594665967e-07,6.080497181122734542e-07,6.232509610650803117e-07,6.384522040178871693e-07,6.536534469706940268e-07,6.688546899235008843e-07,6.840559328763077419e-07,6.992571758291145994e-07,7.144584187819214569e-07,7.296596617347283145e-07,7.448609046875351720e-07,7.600621476403420295e-07,7.752633905931488870e-07,7.904646335459557446e-07,8.056658764987626021e-07,8.208671194515694596e-07,8.360683624043763172e-07,8.512696053571831747e-07,8.664708483099900322e-07,8.816720912627968898e-07,8.968733342156037473e-07,9.120745771684106048e-07,9.272758201212174624e-07,9.424770630740243199e-07,9.576783060268310715e-07 +0.000000000000000000e+00,1.339512449218351063e-08,2.679024898436702126e-08,4.018537347655053189e-08,5.358049796873404253e-08,6.697562246091755316e-08,8.037074695310106379e-08,9.376587144528457442e-08,1.071609959374680851e-07,1.205561204296516089e-07,1.339512449218351328e-07,1.473463694140186566e-07,1.607414939062021805e-07,1.741366183983857044e-07,1.875317428905692282e-07,2.009268673827527521e-07,2.143219918749362760e-07,2.277171163671197998e-07,2.411122408593033237e-07,2.545073653514868476e-07,2.679024898436703714e-07,2.812976143358538953e-07,2.946927388280374192e-07,3.080878633202209430e-07,3.214829878124044669e-07,3.348781123045879908e-07,3.482732367967715146e-07,3.616683612889550385e-07,3.750634857811385624e-07,3.884586102733220862e-07,4.018537347655056101e-07,4.152488592576891340e-07,4.286439837498726578e-07,4.420391082420561817e-07,4.554342327342397056e-07,4.688293572264232294e-07,4.822244817186067533e-07,4.956196062107902242e-07,5.090147307029736952e-07,5.224098551951571661e-07,5.358049796873406370e-07,5.492001041795241079e-07,5.625952286717075789e-07,5.759903531638910498e-07,5.893854776560745207e-07,6.027806021482579916e-07,6.161757266404414626e-07,6.295708511326249335e-07,6.429659756248084044e-07,6.563611001169918754e-07,6.697562246091753463e-07,6.831513491013588172e-07,6.965464735935422881e-07,7.099415980857257591e-07,7.233367225779092300e-07,7.367318470700927009e-07,7.501269715622761718e-07,7.635220960544596428e-07,7.769172205466431137e-07,7.903123450388265846e-07,8.037074695310100555e-07,8.171025940231935265e-07,8.304977185153769974e-07,8.438928430075604683e-07 +0.000000000000000000e+00,1.310706354115994139e-08,2.621412708231988278e-08,3.932119062347982251e-08,5.242825416463975894e-08,6.553531770579970198e-08,7.864238124695964502e-08,9.174944478811958806e-08,1.048565083292795311e-07,1.179635718704394741e-07,1.310706354115994040e-07,1.441776989527593338e-07,1.572847624939192636e-07,1.703918260350791934e-07,1.834988895762391232e-07,1.966059531173990530e-07,2.097130166585589828e-07,2.228200801997189126e-07,2.359271437408788424e-07,2.490342072820387458e-07,2.621412708231986491e-07,2.752483343643585524e-07,2.883553979055184558e-07,3.014624614466783591e-07,3.145695249878382624e-07,3.276765885289981658e-07,3.407836520701580691e-07,3.538907156113179725e-07,3.669977791524778758e-07,3.801048426936377791e-07,3.932119062347976825e-07,4.063189697759575858e-07,4.194260333171174892e-07,4.325330968582773925e-07,4.456401603994372958e-07,4.587472239405971992e-07,4.718542874817571025e-07,4.849613510229170058e-07,4.980684145640768562e-07,5.111754781052367066e-07,5.242825416463965570e-07,5.373896051875564074e-07,5.504966687287162578e-07,5.636037322698761082e-07,5.767107958110359586e-07,5.898178593521958090e-07,6.029249228933556594e-07,6.160319864345155098e-07,6.291390499756753602e-07,6.422461135168352106e-07,6.553531770579950610e-07,6.684602405991549114e-07,6.815673041403147618e-07,6.946743676814746122e-07,7.077814312226344626e-07,7.208884947637943130e-07,7.339955583049541634e-07,7.471026218461140138e-07,7.602096853872738642e-07,7.733167489284337146e-07,7.864238124695935650e-07,7.995308760107534154e-07,8.126379395519132658e-07,8.257450030930731162e-07 +0.000000000000000000e+00,1.520124295281519551e-08,3.040248590563039102e-08,4.560372885844558653e-08,6.080497181126078205e-08,7.600621476407597756e-08,9.120745771689117307e-08,1.064087006697063686e-07,1.216099436225215641e-07,1.368111865753367596e-07,1.520124295281519551e-07,1.672136724809671506e-07,1.824149154337823461e-07,1.976161583865975416e-07,2.128174013394127372e-07,2.280186442922279327e-07,2.432198872450431282e-07,2.584211301978583502e-07,2.736223731506735721e-07,2.888236161034887941e-07,3.040248590563040161e-07,3.192261020091192381e-07,3.344273449619344601e-07,3.496285879147496821e-07,3.648298308675649040e-07,3.800310738203801260e-07,3.952323167731953480e-07,4.104335597260105700e-07,4.256348026788257920e-07,4.408360456316410139e-07,4.560372885844562359e-07,4.712385315372714579e-07,4.864397744900866799e-07,5.016410174429019019e-07,5.168422603957171238e-07,5.320435033485323458e-07,5.472447463013475678e-07,5.624459892541627898e-07,5.776472322069780118e-07,5.928484751597932338e-07,6.080497181126084557e-07,6.232509610654236777e-07,6.384522040182388997e-07,6.536534469710541217e-07,6.688546899238693437e-07,6.840559328766845656e-07,6.992571758294997876e-07,7.144584187823150096e-07,7.296596617351302316e-07,7.448609046879454536e-07,7.600621476407606755e-07,7.752633905935758975e-07,7.904646335463911195e-07,8.056658764992063415e-07,8.208671194520215635e-07,8.360683624048367855e-07,8.512696053576520074e-07,8.664708483104672294e-07,8.816720912632824514e-07,8.968733342160976734e-07,9.120745771689128954e-07,9.272758201217281173e-07,9.424770630745433393e-07,9.576783060273585613e-07 +0.000000000000000000e+00,1.394370230540566341e-08,2.788740461081132681e-08,4.183110691621699022e-08,5.577480922162265362e-08,6.971851152702831041e-08,8.366221383243396720e-08,9.760591613783962399e-08,1.115496184432452808e-07,1.254933207486509376e-07,1.394370230540565943e-07,1.533807253594622511e-07,1.673244276648679079e-07,1.812681299702735647e-07,1.952118322756792215e-07,2.091555345810848783e-07,2.230992368864905351e-07,2.370429391918961919e-07,2.509866414973018751e-07,2.649303438027075584e-07,2.788740461081132416e-07,2.928177484135189249e-07,3.067614507189246082e-07,3.207051530243302914e-07,3.346488553297359747e-07,3.485925576351416579e-07,3.625362599405473412e-07,3.764799622459530244e-07,3.904236645513587077e-07,4.043673668567643910e-07,4.183110691621700742e-07,4.322547714675757575e-07,4.461984737729814407e-07,4.601421760783871240e-07,4.740858783837928072e-07,4.880295806891984905e-07,5.019732829946041738e-07,5.159169853000098570e-07,5.298606876054155403e-07,5.438043899108212235e-07,5.577480922162269068e-07,5.716917945216325901e-07,5.856354968270382733e-07,5.995791991324439566e-07,6.135229014378496398e-07,6.274666037432553231e-07,6.414103060486610063e-07,6.553540083540666896e-07,6.692977106594723729e-07,6.832414129648780561e-07,6.971851152702837394e-07,7.111288175756894226e-07,7.250725198810951059e-07,7.390162221865007891e-07,7.529599244919064724e-07,7.669036267973121557e-07,7.808473291027178389e-07,7.947910314081235222e-07,8.087347337135292054e-07,8.226784360189348887e-07,8.366221383243405720e-07,8.505658406297462552e-07,8.645095429351519385e-07,8.784532452405576217e-07 +0.000000000000000000e+00,1.366965482339696919e-08,2.733930964679393838e-08,4.100896447019090922e-08,5.467861929358788337e-08,6.834827411698485752e-08,8.201792894038183167e-08,9.568758376377880582e-08,1.093572385871757800e-07,1.230268934105727674e-07,1.366965482339697415e-07,1.503662030573667157e-07,1.640358578807636898e-07,1.777055127041606640e-07,1.913751675275576381e-07,2.050448223509546123e-07,2.187144771743515864e-07,2.323841319977485606e-07,2.460537868211455347e-07,2.597234416445425089e-07,2.733930964679394830e-07,2.870627512913364572e-07,3.007324061147334313e-07,3.144020609381304055e-07,3.280717157615273796e-07,3.417413705849243538e-07,3.554110254083213279e-07,3.690806802317183021e-07,3.827503350551152762e-07,3.964199898785122504e-07,4.100896447019092245e-07,4.237592995253061987e-07,4.374289543487031728e-07,4.510986091721001470e-07,4.647682639954971211e-07,4.784379188188941482e-07,4.921075736422911753e-07,5.057772284656882024e-07,5.194468832890852295e-07,5.331165381124822566e-07,5.467861929358792837e-07,5.604558477592763108e-07,5.741255025826733379e-07,5.877951574060703649e-07,6.014648122294673920e-07,6.151344670528644191e-07,6.288041218762614462e-07,6.424737766996584733e-07,6.561434315230555004e-07,6.698130863464525275e-07,6.834827411698495546e-07,6.971523959932465817e-07,7.108220508166436088e-07,7.244917056400406358e-07,7.381613604634376629e-07,7.518310152868346900e-07,7.655006701102317171e-07,7.791703249336287442e-07,7.928399797570257713e-07,8.065096345804227984e-07,8.201792894038198255e-07,8.338489442272168526e-07,8.475185990506138797e-07,8.611882538740109067e-07 +0.000000000000000000e+00,1.582903562571943787e-08,3.165807125143887575e-08,4.748710687715831693e-08,6.331614250287776473e-08,7.914517812859721253e-08,9.497421375431666034e-08,1.108032493800361081e-07,1.266322850057555559e-07,1.424613206314750170e-07,1.582903562571944780e-07,1.741193918829139390e-07,1.899484275086334001e-07,2.057774631343528611e-07,2.216064987600723222e-07,2.374355343857917832e-07,2.532645700115112707e-07,2.690936056372307582e-07,2.849226412629502457e-07,3.007516768886697332e-07,3.165807125143892207e-07,3.324097481401087082e-07,3.482387837658281957e-07,3.640678193915476832e-07,3.798968550172671707e-07,3.957258906429866582e-07,4.115549262687061458e-07,4.273839618944256333e-07,4.432129975201451208e-07,4.590420331458646083e-07,4.748710687715840958e-07,4.907001043973035303e-07,5.065291400230229649e-07,5.223581756487423995e-07,5.381872112744618340e-07,5.540162469001812686e-07,5.698452825259007032e-07,5.856743181516201377e-07,6.015033537773395723e-07,6.173323894030590069e-07,6.331614250287784414e-07,6.489904606544978760e-07,6.648194962802173106e-07,6.806485319059367451e-07,6.964775675316561797e-07,7.123066031573756143e-07,7.281356387830950488e-07,7.439646744088144834e-07,7.597937100345339180e-07,7.756227456602533525e-07,7.914517812859727871e-07,8.072808169116922217e-07,8.231098525374116562e-07,8.389388881631310908e-07,8.547679237888505254e-07,8.705969594145699599e-07,8.864259950402893945e-07,9.022550306660088291e-07,9.180840662917282636e-07,9.339131019174476982e-07,9.497421375431671328e-07,9.655711731688865673e-07,9.814002087946060019e-07,9.972292444203254365e-07 +0.000000000000000000e+00,1.394370230541199961e-08,2.788740461082399922e-08,4.183110691623600214e-08,5.577480922164800505e-08,6.971851152706000797e-08,8.366221383247200427e-08,9.760591613788400057e-08,1.115496184432959969e-07,1.254933207487080064e-07,1.394370230541200159e-07,1.533807253595320255e-07,1.673244276649440350e-07,1.812681299703560445e-07,1.952118322757680541e-07,2.091555345811800636e-07,2.230992368865920732e-07,2.370429391920040827e-07,2.509866414974161187e-07,2.649303438028281547e-07,2.788740461082401907e-07,2.928177484136522267e-07,3.067614507190642627e-07,3.207051530244762987e-07,3.346488553298883347e-07,3.485925576353003707e-07,3.625362599407124067e-07,3.764799622461244427e-07,3.904236645515364787e-07,4.043673668569485147e-07,4.183110691623605508e-07,4.322547714677725868e-07,4.461984737731846228e-07,4.601421760785966588e-07,4.740858783840086948e-07,4.880295806894207308e-07,5.019732829948327668e-07,5.159169853002448028e-07,5.298606876056568388e-07,5.438043899110688748e-07,5.577480922164809108e-07,5.716917945218929468e-07,5.856354968273049828e-07,5.995791991327170188e-07,6.135229014381290548e-07,6.274666037435410908e-07,6.414103060489531268e-07,6.553540083543651628e-07,6.692977106597771988e-07,6.832414129651892348e-07,6.971851152706012708e-07,7.111288175760133069e-07,7.250725198814253429e-07,7.390162221868373789e-07,7.529599244922494149e-07,7.669036267976614509e-07,7.808473291030734869e-07,7.947910314084855229e-07,8.087347337138975589e-07,8.226784360193095949e-07,8.366221383247216309e-07,8.505658406301336669e-07,8.645095429355457029e-07,8.784532452409577389e-07 +0.000000000000000000e+00,1.366965482340381990e-08,2.733930964680763980e-08,4.100896447021146300e-08,5.467861929361528621e-08,6.834827411701910941e-08,8.201792894042292600e-08,9.568758376382674259e-08,1.093572385872305592e-07,1.230268934106343890e-07,1.366965482340382188e-07,1.503662030574420487e-07,1.640358578808458785e-07,1.777055127042497083e-07,1.913751675276535381e-07,2.050448223510573679e-07,2.187144771744611978e-07,2.323841319978650276e-07,2.460537868212688839e-07,2.597234416446727402e-07,2.733930964680765965e-07,2.870627512914804528e-07,3.007324061148843091e-07,3.144020609382881654e-07,3.280717157616920216e-07,3.417413705850958779e-07,3.554110254084997342e-07,3.690806802319035905e-07,3.827503350553074468e-07,3.964199898787113031e-07,4.100896447021151594e-07,4.237592995255190157e-07,4.374289543489228720e-07,4.510986091723267283e-07,4.647682639957305846e-07,4.784379188191344938e-07,4.921075736425384030e-07,5.057772284659423123e-07,5.194468832893462215e-07,5.331165381127501307e-07,5.467861929361540400e-07,5.604558477595579492e-07,5.741255025829618584e-07,5.877951574063657677e-07,6.014648122297696769e-07,6.151344670531735861e-07,6.288041218765774954e-07,6.424737766999814046e-07,6.561434315233853138e-07,6.698130863467892231e-07,6.834827411701931323e-07,6.971523959935970415e-07,7.108220508170009508e-07,7.244917056404048600e-07,7.381613604638087692e-07,7.518310152872126785e-07,7.655006701106165877e-07,7.791703249340204969e-07,7.928399797574244062e-07,8.065096345808283154e-07,8.201792894042322246e-07,8.338489442276361339e-07,8.475185990510400431e-07,8.611882538744439523e-07 +0.000000000000000000e+00,1.582903562572722330e-08,3.165807125145444660e-08,4.748710687718166990e-08,6.331614250290889319e-08,7.914517812863610988e-08,9.497421375436332656e-08,1.108032493800905432e-07,1.266322850058177599e-07,1.424613206315449766e-07,1.582903562572721933e-07,1.741193918829994100e-07,1.899484275087266266e-07,2.057774631344538433e-07,2.216064987601810600e-07,2.374355343859082767e-07,2.532645700116354669e-07,2.690936056373626306e-07,2.849226412630897944e-07,3.007516768888169581e-07,3.165807125145441219e-07,3.324097481402712856e-07,3.482387837659984494e-07,3.640678193917256131e-07,3.798968550174527768e-07,3.957258906431799406e-07,4.115549262689071043e-07,4.273839618946342681e-07,4.432129975203614318e-07,4.590420331460885955e-07,4.748710687718157593e-07,4.907001043975429230e-07,5.065291400232700868e-07,5.223581756489972505e-07,5.381872112747244143e-07,5.540162469004515780e-07,5.698452825261787417e-07,5.856743181519059055e-07,6.015033537776330692e-07,6.173323894033602330e-07,6.331614250290873967e-07,6.489904606548145604e-07,6.648194962805417242e-07,6.806485319062688879e-07,6.964775675319960517e-07,7.123066031577232154e-07,7.281356387834503792e-07,7.439646744091775429e-07,7.597937100349047066e-07,7.756227456606318704e-07,7.914517812863590341e-07,8.072808169120861979e-07,8.231098525378133616e-07,8.389388881635405253e-07,8.547679237892676891e-07,8.705969594149948528e-07,8.864259950407220166e-07,9.022550306664491803e-07,9.180840662921763441e-07,9.339131019179035078e-07,9.497421375436306715e-07,9.655711731693579412e-07,9.814002087950852108e-07,9.972292444208124804e-07 +0.000000000000000000e+00,1.452586011208892594e-08,2.905172022417785187e-08,4.357758033626677946e-08,5.810344044835571036e-08,7.262930056044464126e-08,8.715516067253357216e-08,1.016810207846225031e-07,1.162068808967114340e-07,1.307327410088003516e-07,1.452586011208892560e-07,1.597844612329781605e-07,1.743103213450670649e-07,1.888361814571559693e-07,2.033620415692448738e-07,2.178879016813337782e-07,2.324137617934226826e-07,2.469396219055115870e-07,2.614654820176004915e-07,2.759913421296893959e-07,2.905172022417783003e-07,3.050430623538672048e-07,3.195689224659561092e-07,3.340947825780450136e-07,3.486206426901339180e-07,3.631465028022228225e-07,3.776723629143117269e-07,3.921982230264006313e-07,4.067240831384895358e-07,4.212499432505784402e-07,4.357758033626673446e-07,4.503016634747562491e-07,4.648275235868451535e-07,4.793533836989341108e-07,4.938792438110230682e-07,5.084051039231120256e-07,5.229309640352009830e-07,5.374568241472899403e-07,5.519826842593788977e-07,5.665085443714678551e-07,5.810344044835568124e-07,5.955602645956457698e-07,6.100861247077347272e-07,6.246119848198236845e-07,6.391378449319126419e-07,6.536637050440015993e-07,6.681895651560905566e-07,6.827154252681795140e-07,6.972412853802684714e-07,7.117671454923574287e-07,7.262930056044463861e-07,7.408188657165353435e-07,7.553447258286243008e-07,7.698705859407132582e-07,7.843964460528022156e-07,7.989223061648911730e-07,8.134481662769801303e-07,8.279740263890690877e-07,8.424998865011580451e-07,8.570257466132470024e-07,8.715516067253359598e-07,8.860774668374249172e-07,9.006033269495138745e-07,9.151291870616028319e-07 +0.000000000000000000e+00,1.452871964817838921e-08,2.905743929635677842e-08,4.358615894453516928e-08,5.811487859271356346e-08,7.264359824089195763e-08,8.717231788907035180e-08,1.017010375372487460e-07,1.162297571854271401e-07,1.307584768336055343e-07,1.452871964817839153e-07,1.598159161299622962e-07,1.743446357781406771e-07,1.888733554263190581e-07,2.034020750744974390e-07,2.179307947226758199e-07,2.324595143708542009e-07,2.469882340190325818e-07,2.615169536672109628e-07,2.760456733153893437e-07,2.905743929635677246e-07,3.051031126117461056e-07,3.196318322599244865e-07,3.341605519081028674e-07,3.486892715562812484e-07,3.632179912044596293e-07,3.777467108526380103e-07,3.922754305008163912e-07,4.068041501489947721e-07,4.213328697971731531e-07,4.358615894453515340e-07,4.503903090935299149e-07,4.649190287417082959e-07,4.794477483898867298e-07,4.939764680380651636e-07,5.085051876862435975e-07,5.230339073344220314e-07,5.375626269826004653e-07,5.520913466307788991e-07,5.666200662789573330e-07,5.811487859271357669e-07,5.956775055753142008e-07,6.102062252234926347e-07,6.247349448716710685e-07,6.392636645198495024e-07,6.537923841680279363e-07,6.683211038162063702e-07,6.828498234643848040e-07,6.973785431125632379e-07,7.119072627607416718e-07,7.264359824089201057e-07,7.409647020570985395e-07,7.554934217052769734e-07,7.700221413534554073e-07,7.845508610016338412e-07,7.990795806498122751e-07,8.136083002979907089e-07,8.281370199461691428e-07,8.426657395943475767e-07,8.571944592425260106e-07,8.717231788907044444e-07,8.862518985388828783e-07,9.007806181870613122e-07,9.153093378352397461e-07 +0.000000000000000000e+00,1.422573416965001617e-08,2.845146833930003235e-08,4.267720250895004687e-08,5.690293667860005808e-08,7.112867084825007591e-08,8.535440501790009374e-08,9.958013918755011157e-08,1.138058733572001294e-07,1.280316075268501472e-07,1.422573416965001518e-07,1.564830758661501564e-07,1.707088100358001610e-07,1.849345442054501656e-07,1.991602783751001702e-07,2.133860125447501748e-07,2.276117467144001794e-07,2.418374808840501575e-07,2.560632150537001356e-07,2.702889492233501138e-07,2.845146833930000919e-07,2.987404175626500700e-07,3.129661517323000481e-07,3.271918859019500263e-07,3.414176200716000044e-07,3.556433542412499825e-07,3.698690884108999606e-07,3.840948225805499388e-07,3.983205567501999169e-07,4.125462909198498950e-07,4.267720250894998731e-07,4.409977592591498513e-07,4.552234934287998294e-07,4.694492275984498075e-07,4.836749617680997856e-07,4.979006959377497638e-07,5.121264301073997419e-07,5.263521642770497200e-07,5.405778984466996981e-07,5.548036326163496763e-07,5.690293667859996544e-07,5.832551009556496325e-07,5.974808351252996106e-07,6.117065692949495888e-07,6.259323034645995669e-07,6.401580376342495450e-07,6.543837718038995231e-07,6.686095059735495013e-07,6.828352401431994794e-07,6.970609743128494575e-07,7.112867084824994356e-07,7.255124426521494138e-07,7.397381768217993919e-07,7.539639109914493700e-07,7.681896451610993481e-07,7.824153793307493263e-07,7.966411135003993044e-07,8.108668476700492825e-07,8.250925818396992606e-07,8.393183160093492388e-07,8.535440501789992169e-07,8.677697843486491950e-07,8.819955185182991731e-07,8.962212526879491513e-07 +0.000000000000000000e+00,1.646292753003569398e-08,3.292585506007138795e-08,4.938878259010708524e-08,6.585171012014278914e-08,8.231463765017849304e-08,9.877756518021419694e-08,1.152404927102499008e-07,1.317034202402856047e-07,1.481663477703213219e-07,1.646292753003570390e-07,1.810922028303927562e-07,1.975551303604284733e-07,2.140180578904641904e-07,2.304809854204999076e-07,2.469439129505356247e-07,2.634068404805713683e-07,2.798697680106071119e-07,2.963326955406428555e-07,3.127956230706785991e-07,3.292585506007143427e-07,3.457214781307500863e-07,3.621844056607858300e-07,3.786473331908215736e-07,3.951102607208573172e-07,4.115731882508930608e-07,4.280361157809288044e-07,4.444990433109645480e-07,4.609619708410002916e-07,4.774248983710359823e-07,4.938878259010716729e-07,5.103507534311073636e-07,5.268136809611430543e-07,5.432766084911787449e-07,5.597395360212144356e-07,5.762024635512501263e-07,5.926653910812858169e-07,6.091283186113215076e-07,6.255912461413571983e-07,6.420541736713928889e-07,6.585171012014285796e-07,6.749800287314642703e-07,6.914429562614999609e-07,7.079058837915356516e-07,7.243688113215713423e-07,7.408317388516070329e-07,7.572946663816427236e-07,7.737575939116784143e-07,7.902205214417141049e-07,8.066834489717497956e-07,8.231463765017854863e-07,8.396093040318211769e-07,8.560722315618568676e-07,8.725351590918925583e-07,8.889980866219282489e-07,9.054610141519639396e-07,9.219239416819996303e-07,9.383868692120353209e-07,9.548497967420711175e-07,9.713127242721069140e-07,9.877756518021427106e-07,1.004238579332178507e-06,1.020701506862214304e-06,1.037164434392250100e-06 +0.000000000000000000e+00,1.452814172473821096e-08,2.905628344947642191e-08,4.358442517421463453e-08,5.811256689895285045e-08,7.264070862369106637e-08,8.716885034842928229e-08,1.016969920731674982e-07,1.162251337979057141e-07,1.307532755226439433e-07,1.452814172473821592e-07,1.598095589721203751e-07,1.743377006968585910e-07,1.888658424215968070e-07,2.033939841463350229e-07,2.179221258710732388e-07,2.324502675958114547e-07,2.469784093205496706e-07,2.615065510452878866e-07,2.760346927700261025e-07,2.905628344947643184e-07,3.050909762195025343e-07,3.196191179442407502e-07,3.341472596689789662e-07,3.486754013937171821e-07,3.632035431184553980e-07,3.777316848431936139e-07,3.922598265679318298e-07,4.067879682926700458e-07,4.213161100174082617e-07,4.358442517421464776e-07,4.503723934668846935e-07,4.649005351916229094e-07,4.794286769163611783e-07,4.939568186410994472e-07,5.084849603658377160e-07,5.230131020905759849e-07,5.375412438153142537e-07,5.520693855400525226e-07,5.665975272647907915e-07,5.811256689895290603e-07,5.956538107142673292e-07,6.101819524390055980e-07,6.247100941637438669e-07,6.392382358884821358e-07,6.537663776132204046e-07,6.682945193379586735e-07,6.828226610626969423e-07,6.973508027874352112e-07,7.118789445121734801e-07,7.264070862369117489e-07,7.409352279616500178e-07,7.554633696863882866e-07,7.699915114111265555e-07,7.845196531358648244e-07,7.990477948606030932e-07,8.135759365853413621e-07,8.281040783100796309e-07,8.426322200348178998e-07,8.571603617595561686e-07,8.716885034842944375e-07,8.862166452090327064e-07,9.007447869337709752e-07,9.152729286585092441e-07 +0.000000000000000000e+00,1.646633251004065092e-08,3.293266502008130184e-08,4.939899753012195607e-08,6.586533004016261692e-08,8.233166255020327777e-08,9.879799506024393862e-08,1.152643275702845995e-07,1.317306600803252603e-07,1.481969925903659344e-07,1.646633251004066085e-07,1.811296576104472826e-07,1.975959901204879566e-07,2.140623226305286307e-07,2.305286551405693048e-07,2.469949876506099789e-07,2.634613201606506794e-07,2.799276526706913800e-07,2.963939851807320806e-07,3.128603176907727811e-07,3.293266502008134817e-07,3.457929827108541822e-07,3.622593152208948828e-07,3.787256477309355833e-07,3.951919802409762839e-07,4.116583127510169844e-07,4.281246452610576850e-07,4.445909777710983855e-07,4.610573102811390861e-07,4.775236427911797866e-07,4.939899753012204872e-07,5.104563078112611877e-07,5.269226403213018883e-07,5.433889728313425888e-07,5.598553053413832894e-07,5.763216378514239899e-07,5.927879703614646905e-07,6.092543028715053911e-07,6.257206353815460916e-07,6.421869678915867922e-07,6.586533004016274927e-07,6.751196329116681933e-07,6.915859654217088938e-07,7.080522979317495944e-07,7.245186304417902949e-07,7.409849629518309955e-07,7.574512954618716960e-07,7.739176279719123966e-07,7.903839604819530971e-07,8.068502929919937977e-07,8.233166255020344982e-07,8.397829580120751988e-07,8.562492905221158993e-07,8.727156230321565999e-07,8.891819555421973004e-07,9.056482880522380010e-07,9.221146205622787016e-07,9.385809530723194021e-07,9.550472855823602085e-07,9.715136180924011208e-07,9.879799506024420332e-07,1.004446283112482945e-06,1.020912615622523858e-06,1.037378948132564770e-06 +0.000000000000000000e+00,1.452586011209409416e-08,2.905172022418818832e-08,4.357758033628228413e-08,5.810344044837638326e-08,7.262930056047048900e-08,8.715516067256459474e-08,1.016810207846587005e-07,1.162068808967528062e-07,1.307327410088469120e-07,1.452586011209410309e-07,1.597844612330351499e-07,1.743103213451292689e-07,1.888361814572233879e-07,2.033620415693175068e-07,2.178879016814116258e-07,2.324137617935057448e-07,2.469396219055998373e-07,2.614654820176939298e-07,2.759913421297880223e-07,2.905172022418821148e-07,3.050430623539762073e-07,3.195689224660702998e-07,3.340947825781643923e-07,3.486206426902584848e-07,3.631465028023525773e-07,3.776723629144466698e-07,3.921982230265407623e-07,4.067240831386348549e-07,4.212499432507289474e-07,4.357758033628230399e-07,4.503016634749171324e-07,4.648275235870112249e-07,4.793533836991053174e-07,4.938792438111994628e-07,5.084051039232936083e-07,5.229309640353877537e-07,5.374568241474818992e-07,5.519826842595760446e-07,5.665085443716701901e-07,5.810344044837643355e-07,5.955602645958584809e-07,6.100861247079526264e-07,6.246119848200467718e-07,6.391378449321409173e-07,6.536637050442350627e-07,6.681895651563292082e-07,6.827154252684233536e-07,6.972412853805174991e-07,7.117671454926116445e-07,7.262930056047057900e-07,7.408188657167999354e-07,7.553447258288940808e-07,7.698705859409882263e-07,7.843964460530823717e-07,7.989223061651765172e-07,8.134481662772706626e-07,8.279740263893648081e-07,8.424998865014589535e-07,8.570257466135530990e-07,8.715516067256472444e-07,8.860774668377413898e-07,9.006033269498355353e-07,9.151291870619296807e-07 +0.000000000000000000e+00,1.452814172474080665e-08,2.905628344948161330e-08,4.358442517422241664e-08,5.811256689896321998e-08,7.264070862370402332e-08,8.716885034844483328e-08,1.016969920731856432e-07,1.162251337979264532e-07,1.307532755226672632e-07,1.452814172474080731e-07,1.598095589721488831e-07,1.743377006968896930e-07,1.888658424216305030e-07,2.033939841463713129e-07,2.179221258711121229e-07,2.324502675958529329e-07,2.469784093205937693e-07,2.615065510453345793e-07,2.760346927700753892e-07,2.905628344948161992e-07,3.050909762195570091e-07,3.196191179442978191e-07,3.341472596690386290e-07,3.486754013937794390e-07,3.632035431185202490e-07,3.777316848432610589e-07,3.922598265680018689e-07,4.067879682927426788e-07,4.213161100174834888e-07,4.358442517422242988e-07,4.503723934669651087e-07,4.649005351917059187e-07,4.794286769164467286e-07,4.939568186411875386e-07,5.084849603659283485e-07,5.230131020906691585e-07,5.375412438154099685e-07,5.520693855401507784e-07,5.665975272648915884e-07,5.811256689896323983e-07,5.956538107143732083e-07,6.101819524391140183e-07,6.247100941638548282e-07,6.392382358885956382e-07,6.537663776133364481e-07,6.682945193380772581e-07,6.828226610628180680e-07,6.973508027875588780e-07,7.118789445122996880e-07,7.264070862370404979e-07,7.409352279617813079e-07,7.554633696865221178e-07,7.699915114112629278e-07,7.845196531360037378e-07,7.990477948607445477e-07,8.135759365854853577e-07,8.281040783102261676e-07,8.426322200349669776e-07,8.571603617597077875e-07,8.716885034844485975e-07,8.862166452091894075e-07,9.007447869339302174e-07,9.152729286586710274e-07 +0.000000000000000000e+00,1.422573416965579486e-08,2.845146833931158972e-08,4.267720250896738458e-08,5.690293667862317944e-08,7.112867084827898091e-08,8.535440501793478239e-08,9.958013918759058386e-08,1.138058733572463853e-07,1.280316075269021868e-07,1.422573416965579883e-07,1.564830758662137898e-07,1.707088100358695912e-07,1.849345442055253927e-07,1.991602783751811942e-07,2.133860125448369957e-07,2.276117467144927971e-07,2.418374808841486251e-07,2.560632150538044266e-07,2.702889492234602280e-07,2.845146833931160295e-07,2.987404175627718310e-07,3.129661517324276325e-07,3.271918859020834340e-07,3.414176200717392354e-07,3.556433542413950369e-07,3.698690884110508384e-07,3.840948225807066399e-07,3.983205567503624413e-07,4.125462909200182428e-07,4.267720250896740443e-07,4.409977592593298458e-07,4.552234934289856472e-07,4.694492275986414487e-07,4.836749617682972502e-07,4.979006959379530517e-07,5.121264301076088531e-07,5.263521642772646546e-07,5.405778984469204561e-07,5.548036326165762576e-07,5.690293667862320590e-07,5.832551009558878605e-07,5.974808351255436620e-07,6.117065692951994635e-07,6.259323034648552650e-07,6.401580376345110664e-07,6.543837718041668679e-07,6.686095059738226694e-07,6.828352401434784709e-07,6.970609743131342723e-07,7.112867084827900738e-07,7.255124426524458753e-07,7.397381768221016768e-07,7.539639109917574782e-07,7.681896451614132797e-07,7.824153793310690812e-07,7.966411135007248827e-07,8.108668476703806841e-07,8.250925818400364856e-07,8.393183160096922871e-07,8.535440501793480886e-07,8.677697843490038900e-07,8.819955185186596915e-07,8.962212526883154930e-07 +0.000000000000000000e+00,1.646292753004266545e-08,3.292585506008533091e-08,4.938878259012799636e-08,6.585171012017066182e-08,8.231463765021332727e-08,9.877756518025599272e-08,1.152404927102986582e-07,1.317034202403413236e-07,1.481663477703840023e-07,1.646292753004266810e-07,1.810922028304693597e-07,1.975551303605120384e-07,2.140180578905547171e-07,2.304809854205973958e-07,2.469439129506400745e-07,2.634068404806827531e-07,2.798697680107254318e-07,2.963326955407681105e-07,3.127956230708107892e-07,3.292585506008534679e-07,3.457214781308961466e-07,3.621844056609388253e-07,3.786473331909815040e-07,3.951102607210241827e-07,4.115731882510668613e-07,4.280361157811095400e-07,4.444990433111522187e-07,4.609619708411948974e-07,4.774248983712375761e-07,4.938878259012802548e-07,5.103507534313229335e-07,5.268136809613656122e-07,5.432766084914082909e-07,5.597395360214509695e-07,5.762024635514936482e-07,5.926653910815363269e-07,6.091283186115790056e-07,6.255912461416216843e-07,6.420541736716643630e-07,6.585171012017070417e-07,6.749800287317497204e-07,6.914429562617923991e-07,7.079058837918350777e-07,7.243688113218777564e-07,7.408317388519204351e-07,7.572946663819631138e-07,7.737575939120057925e-07,7.902205214420484712e-07,8.066834489720911499e-07,8.231463765021338286e-07,8.396093040321765073e-07,8.560722315622191859e-07,8.725351590922618646e-07,8.889980866223045433e-07,9.054610141523472220e-07,9.219239416823899007e-07,9.383868692124325794e-07,9.548497967424751522e-07,9.713127242725177250e-07,9.877756518025602978e-07,1.004238579332602871e-06,1.020701506862645443e-06,1.037164434392688016e-06 +0.000000000000000000e+00,7.420605537100992582e-09,1.484121107420198516e-08,2.226181661130297857e-08,2.968242214840397364e-08,3.710302768550497201e-08,4.452363322260597038e-08,5.194423875970696875e-08,5.936484429680796713e-08,6.678544983390896550e-08,7.420605537100997049e-08,8.162666090811097548e-08,8.904726644521198047e-08,9.646787198231298546e-08,1.038884775194139904e-07,1.113090830565149954e-07,1.187296885936160004e-07,1.261502941307169922e-07,1.335708996678179839e-07,1.409915052049189757e-07,1.484121107420199674e-07,1.558327162791209592e-07,1.632533218162219510e-07,1.706739273533229427e-07,1.780945328904239345e-07,1.855151384275249262e-07,1.929357439646259180e-07,2.003563495017269097e-07,2.077769550388279015e-07,2.151975605759288932e-07,2.226181661130298850e-07,2.300387716501308767e-07,2.374593771872318685e-07,2.448799827243328603e-07,2.523005882614338785e-07,2.597211937985348967e-07,2.671417993356359149e-07,2.745624048727369332e-07,2.819830104098379514e-07,2.894036159469389696e-07,2.968242214840399878e-07,3.042448270211410061e-07,3.116654325582420243e-07,3.190860380953430425e-07,3.265066436324440607e-07,3.339272491695450790e-07,3.413478547066460972e-07,3.487684602437471154e-07,3.561890657808481336e-07,3.636096713179491519e-07,3.710302768550501701e-07,3.784508823921511883e-07,3.858714879292522065e-07,3.932920934663532248e-07,4.007126990034542430e-07,4.081333045405552612e-07,4.155539100776562794e-07,4.229745156147572976e-07,4.303951211518583159e-07,4.378157266889593341e-07,4.452363322260603523e-07,4.526569377631613705e-07,4.600775433002623888e-07,4.674981488373634070e-07 +0.000000000000000000e+00,1.080474823819874303e-08,2.160949647639748607e-08,3.241424471459622910e-08,4.321899295279497214e-08,5.402374119099371517e-08,6.482848942919245821e-08,7.563323766739119462e-08,8.643798590558993104e-08,9.724273414378866746e-08,1.080474823819874039e-07,1.188522306201861403e-07,1.296569788583848899e-07,1.404617270965836396e-07,1.512664753347823892e-07,1.620712235729811389e-07,1.728759718111798885e-07,1.836807200493786382e-07,1.944854682875773879e-07,2.052902165257761375e-07,2.160949647639748872e-07,2.268997130021736368e-07,2.377044612403723865e-07,2.485092094785711626e-07,2.593139577167699387e-07,2.701187059549687148e-07,2.809234541931674909e-07,2.917282024313662671e-07,3.025329506695650432e-07,3.133376989077638193e-07,3.241424471459625954e-07,3.349471953841613716e-07,3.457519436223601477e-07,3.565566918605589238e-07,3.673614400987576999e-07,3.781661883369564760e-07,3.889709365751552522e-07,3.997756848133540283e-07,4.105804330515528044e-07,4.213851812897515805e-07,4.321899295279503566e-07,4.429946777661491328e-07,4.537994260043479089e-07,4.646041742425466850e-07,4.754089224807454611e-07,4.862136707189442373e-07,4.970184189571429604e-07,5.078231671953416836e-07,5.186279154335404068e-07,5.294326636717391300e-07,5.402374119099378532e-07,5.510421601481365763e-07,5.618469083863352995e-07,5.726516566245340227e-07,5.834564048627327459e-07,5.942611531009314691e-07,6.050659013391301923e-07,6.158706495773289154e-07,6.266753978155276386e-07,6.374801460537263618e-07,6.482848942919250850e-07,6.590896425301238082e-07,6.698943907683225313e-07,6.806991390065212545e-07 +0.000000000000000000e+00,1.092809819106613028e-08,2.185619638213226055e-08,3.278429457319839083e-08,4.371239276426452111e-08,5.464049095533065138e-08,6.556858914639678166e-08,7.649668733746290532e-08,8.742478552852902898e-08,9.835288371959515264e-08,1.092809819106612763e-07,1.202090801017274000e-07,1.311371782927935368e-07,1.420652764838596737e-07,1.529933746749258106e-07,1.639214728659919475e-07,1.748495710570580844e-07,1.857776692481242213e-07,1.967057674391903582e-07,2.076338656302564951e-07,2.185619638213226320e-07,2.294900620123887689e-07,2.404181602034549058e-07,2.513462583945210692e-07,2.622743565855872325e-07,2.732024547766533959e-07,2.841305529677195592e-07,2.950586511587857226e-07,3.059867493498518860e-07,3.169148475409180493e-07,3.278429457319842127e-07,3.387710439230503761e-07,3.496991421141165394e-07,3.606272403051827028e-07,3.715553384962488662e-07,3.824834366873150295e-07,3.934115348783811929e-07,4.043396330694473562e-07,4.152677312605135196e-07,4.261958294515796830e-07,4.371239276426458463e-07,4.480520258337120097e-07,4.589801240247781731e-07,4.699082222158443364e-07,4.808363204069105527e-07,4.917644185979767690e-07,5.026925167890429853e-07,5.136206149801092016e-07,5.245487131711754179e-07,5.354768113622416342e-07,5.464049095533078506e-07,5.573330077443740669e-07,5.682611059354402832e-07,5.791892041265064995e-07,5.901173023175727158e-07,6.010454005086389321e-07,6.119734986997051484e-07,6.229015968907713647e-07,6.338296950818375810e-07,6.447577932729037973e-07,6.556858914639700136e-07,6.666139896550362299e-07,6.775420878461024462e-07,6.884701860371686625e-07 +0.000000000000000000e+00,8.039384278483257272e-09,1.607876855696651454e-08,2.411815283544977182e-08,3.215753711393302909e-08,4.019692139241628636e-08,4.823630567089954363e-08,5.627568994938280091e-08,6.431507422786605818e-08,7.235445850634931545e-08,8.039384278483257272e-08,8.843322706331583000e-08,9.647261134179908727e-08,1.045119956202823445e-07,1.125513798987656018e-07,1.205907641772488591e-07,1.286301484557321164e-07,1.366695327342153736e-07,1.447089170126986309e-07,1.527483012911818882e-07,1.607876855696651454e-07,1.688270698481484027e-07,1.768664541266316600e-07,1.849058384051149173e-07,1.929452226835981745e-07,2.009846069620814318e-07,2.090239912405646891e-07,2.170633755190479464e-07,2.251027597975312036e-07,2.331421440760144609e-07,2.411815283544977182e-07,2.492209126329809754e-07,2.572602969114642327e-07,2.652996811899474900e-07,2.733390654684307473e-07,2.813784497469140045e-07,2.894178340253972618e-07,2.974572183038805191e-07,3.054966025823637763e-07,3.135359868608470336e-07,3.215753711393302909e-07,3.296147554178135482e-07,3.376541396962968054e-07,3.456935239747800627e-07,3.537329082532633200e-07,3.617722925317465773e-07,3.698116768102298345e-07,3.778510610887130918e-07,3.858904453671963491e-07,3.939298296456796063e-07,4.019692139241628636e-07,4.100085982026461209e-07,4.180479824811293782e-07,4.260873667596126354e-07,4.341267510380958927e-07,4.421661353165791500e-07,4.502055195950624073e-07,4.582449038735456645e-07,4.662842881520289218e-07,4.743236724305121791e-07,4.823630567089954363e-07,4.904024409874786936e-07,4.984418252659619509e-07,5.064812095444452082e-07 +0.000000000000000000e+00,1.192677513642100156e-08,2.385355027284200312e-08,3.578032540926300799e-08,4.770710054568401286e-08,5.963387568210501773e-08,7.156065081852601598e-08,8.348742595494701424e-08,9.541420109136801249e-08,1.073409762277890107e-07,1.192677513642100090e-07,1.311945265006309940e-07,1.431213016370519790e-07,1.550480767734729640e-07,1.669748519098939491e-07,1.789016270463149341e-07,1.908284021827359191e-07,2.027551773191569041e-07,2.146819524555778891e-07,2.266087275919988742e-07,2.385355027284198592e-07,2.504622778648408442e-07,2.623890530012618292e-07,2.743158281376828142e-07,2.862426032741037992e-07,2.981693784105247843e-07,3.100961535469457693e-07,3.220229286833667543e-07,3.339497038197877393e-07,3.458764789562087243e-07,3.578032540926297093e-07,3.697300292290506944e-07,3.816568043654716794e-07,3.935835795018926644e-07,4.055103546383136494e-07,4.174371297747346344e-07,4.293639049111556194e-07,4.412906800475766045e-07,4.532174551839975895e-07,4.651442303204185745e-07,4.770710054568396125e-07,4.889977805932607034e-07,5.009245557296817942e-07,5.128513308661028851e-07,5.247781060025239760e-07,5.367048811389450669e-07,5.486316562753661578e-07,5.605584314117872487e-07,5.724852065482083396e-07,5.844119816846294305e-07,5.963387568210505214e-07,6.082655319574716123e-07,6.201923070938927032e-07,6.321190822303137941e-07,6.440458573667348850e-07,6.559726325031559759e-07,6.678994076395770668e-07,6.798261827759981577e-07,6.917529579124192486e-07,7.036797330488403395e-07,7.156065081852614304e-07,7.275332833216825213e-07,7.394600584581036122e-07,7.513868335945247031e-07 +0.000000000000000000e+00,8.996588814416000194e-09,1.799317762883200039e-08,2.698976644324800058e-08,3.598635525766400078e-08,4.498294407207999766e-08,5.397953288649599455e-08,6.297612170091199144e-08,7.197271051532798832e-08,8.096929932974398521e-08,8.996588814415998209e-08,9.896247695857597898e-08,1.079590657729919759e-07,1.169556545874079727e-07,1.259522434018239829e-07,1.349488322162399930e-07,1.439454210306560031e-07,1.529420098450720132e-07,1.619385986594880234e-07,1.709351874739040335e-07,1.799317762883200436e-07,1.889283651027360537e-07,1.979249539171520638e-07,2.069215427315680740e-07,2.159181315459840841e-07,2.249147203604000942e-07,2.339113091748161043e-07,2.429078979892320880e-07,2.519044868036480716e-07,2.609010756180640553e-07,2.698976644324800389e-07,2.788942532468960226e-07,2.878908420613120062e-07,2.968874308757279899e-07,3.058840196901439735e-07,3.148806085045599572e-07,3.238771973189759408e-07,3.328737861333919245e-07,3.418703749478079081e-07,3.508669637622238918e-07,3.598635525766398754e-07,3.688601413910558591e-07,3.778567302054718427e-07,3.868533190198878264e-07,3.958499078343038100e-07,4.048464966487197937e-07,4.138430854631357773e-07,4.228396742775517610e-07,4.318362630919677446e-07,4.408328519063837283e-07,4.498294407207997119e-07,4.588260295352156956e-07,4.678226183496316792e-07,4.768192071640476629e-07,4.858157959784636465e-07,4.948123847928796302e-07,5.038089736072956138e-07,5.128055624217115975e-07,5.218021512361275811e-07,5.307987400505435648e-07,5.397953288649595484e-07,5.487919176793755321e-07,5.577885064937915157e-07,5.667850953082074994e-07 +0.000000000000000000e+00,1.089890737915590299e-08,2.179781475831180598e-08,3.269672213746770566e-08,4.359562951662360535e-08,5.449453689577950503e-08,6.539344427493541133e-08,7.629235165409131763e-08,8.719125903324722393e-08,9.809016641240313023e-08,1.089890737915590365e-07,1.198879811707149428e-07,1.307868885498708491e-07,1.416857959290267554e-07,1.525847033081826617e-07,1.634836106873385680e-07,1.743825180664944743e-07,1.852814254456503806e-07,1.961803328248062869e-07,2.070792402039621932e-07,2.179781475831180995e-07,2.288770549622740058e-07,2.397759623414299386e-07,2.506748697205858449e-07,2.615737770997417512e-07,2.724726844788976575e-07,2.833715918580535638e-07,2.942704992372094701e-07,3.051694066163653764e-07,3.160683139955212827e-07,3.269672213746771890e-07,3.378661287538330953e-07,3.487650361329890016e-07,3.596639435121449079e-07,3.705628508913008142e-07,3.814617582704567205e-07,3.923606656496126268e-07,4.032595730287685331e-07,4.141584804079244394e-07,4.250573877870803457e-07,4.359562951662362520e-07,4.468552025453921583e-07,4.577541099245480646e-07,4.686530173037039709e-07,4.795519246828598772e-07,4.904508320620157835e-07,5.013497394411716898e-07,5.122486468203275961e-07,5.231475541994835024e-07,5.340464615786394087e-07,5.449453689577953150e-07,5.558442763369512213e-07,5.667431837161071276e-07,5.776420910952630339e-07,5.885409984744189402e-07,5.994399058535748465e-07,6.103388132327307528e-07,6.212377206118866591e-07,6.321366279910425654e-07,6.430355353701984717e-07,6.539344427493543780e-07,6.648333501285102843e-07,6.757322575076661906e-07,6.866311648868220969e-07 +0.000000000000000000e+00,1.200237455137424973e-08,2.400474910274849947e-08,3.600712365412275086e-08,4.800949820549700555e-08,6.001187275687126025e-08,7.201424730824551495e-08,8.401662185961976964e-08,9.601899641099402434e-08,1.080213709623682790e-07,1.200237455137425470e-07,1.320261200651168281e-07,1.440284946164911093e-07,1.560308691678653905e-07,1.680332437192396716e-07,1.800356182706139528e-07,1.920379928219882340e-07,2.040403673733625151e-07,2.160427419247367963e-07,2.280451164761110775e-07,2.400474910274853586e-07,2.520498655788596398e-07,2.640522401302339210e-07,2.760546146816082021e-07,2.880569892329824833e-07,3.000593637843567645e-07,3.120617383357310456e-07,3.240641128871053268e-07,3.360664874384796080e-07,3.480688619898538891e-07,3.600712365412281703e-07,3.720736110926024515e-07,3.840759856439767326e-07,3.960783601953510138e-07,4.080807347467252950e-07,4.200831092980995761e-07,4.320854838494738573e-07,4.440878584008481385e-07,4.560902329522224196e-07,4.680926075035967008e-07,4.800949820549710349e-07,4.920973566063454220e-07,5.040997311577198090e-07,5.161021057090941960e-07,5.281044802604685831e-07,5.401068548118429701e-07,5.521092293632173572e-07,5.641116039145917442e-07,5.761139784659661313e-07,5.881163530173405183e-07,6.001187275687149054e-07,6.121211021200892924e-07,6.241234766714636795e-07,6.361258512228380665e-07,6.481282257742124536e-07,6.601306003255868406e-07,6.721329748769612276e-07,6.841353494283356147e-07,6.961377239797100017e-07,7.081400985310843888e-07,7.201424730824587758e-07,7.321448476338331629e-07,7.441472221852075499e-07,7.561495967365819370e-07 +0.000000000000000000e+00,7.420605537112262918e-09,1.484121107422452584e-08,2.226181661133679041e-08,2.968242214844905498e-08,3.710302768556131955e-08,4.452363322267358082e-08,5.194423875978584208e-08,5.936484429689810334e-08,6.678544983401035799e-08,7.420605537112261263e-08,8.162666090823486728e-08,8.904726644534712193e-08,9.646787198245937657e-08,1.038884775195716312e-07,1.113090830566838859e-07,1.187296885937961405e-07,1.261502941309083952e-07,1.335708996680206630e-07,1.409915052051329309e-07,1.484121107422451988e-07,1.558327162793574667e-07,1.632533218164697346e-07,1.706739273535820024e-07,1.780945328906942703e-07,1.855151384278065382e-07,1.929357439649188061e-07,2.003563495020310740e-07,2.077769550391433418e-07,2.151975605762556097e-07,2.226181661133678776e-07,2.300387716504801455e-07,2.374593771875924134e-07,2.448799827247046548e-07,2.523005882618168962e-07,2.597211937989291376e-07,2.671417993360413790e-07,2.745624048731536204e-07,2.819830104102658618e-07,2.894036159473781032e-07,2.968242214844903447e-07,3.042448270216025861e-07,3.116654325587148275e-07,3.190860380958270689e-07,3.265066436329393103e-07,3.339272491700515517e-07,3.413478547071637931e-07,3.487684602442760345e-07,3.561890657813882759e-07,3.636096713185005174e-07,3.710302768556127588e-07,3.784508823927250002e-07,3.858714879298372416e-07,3.932920934669494830e-07,4.007126990040617244e-07,4.081333045411739658e-07,4.155539100782862072e-07,4.229745156153984487e-07,4.303951211525106901e-07,4.378157266896229315e-07,4.452363322267351729e-07,4.526569377638474143e-07,4.600775433009596557e-07,4.674981488380718971e-07 +0.000000000000000000e+00,1.080474823821053036e-08,2.160949647642106072e-08,3.241424471463159273e-08,4.321899295284212805e-08,5.402374119105266337e-08,6.482848942926319869e-08,7.563323766747372740e-08,8.643798590568425610e-08,9.724273414389478480e-08,1.080474823821053135e-07,1.188522306203158422e-07,1.296569788585263709e-07,1.404617270967368996e-07,1.512664753349474283e-07,1.620712235731579570e-07,1.728759718113684857e-07,1.836807200495790144e-07,1.944854682877895431e-07,2.052902165260000718e-07,2.160949647642106005e-07,2.268997130024211292e-07,2.377044612406316579e-07,2.485092094788422131e-07,2.593139577170527948e-07,2.701187059552633764e-07,2.809234541934739581e-07,2.917282024316845397e-07,3.025329506698951213e-07,3.133376989081057030e-07,3.241424471463162846e-07,3.349471953845268663e-07,3.457519436227374479e-07,3.565566918609480296e-07,3.673614400991586112e-07,3.781661883373691928e-07,3.889709365755797745e-07,3.997756848137903561e-07,4.105804330520009378e-07,4.213851812902115194e-07,4.321899295284221011e-07,4.429946777666326827e-07,4.537994260048432643e-07,4.646041742430538460e-07,4.754089224812644276e-07,4.862136707194750093e-07,4.970184189576855909e-07,5.078231671958961726e-07,5.186279154341067542e-07,5.294326636723173358e-07,5.402374119105279175e-07,5.510421601487384991e-07,5.618469083869490808e-07,5.726516566251596624e-07,5.834564048633702441e-07,5.942611531015808257e-07,6.050659013397914073e-07,6.158706495780019890e-07,6.266753978162125706e-07,6.374801460544231523e-07,6.482848942926337339e-07,6.590896425308443156e-07,6.698943907690548972e-07,6.806991390072654788e-07 +0.000000000000000000e+00,1.089890737916178259e-08,2.179781475832356518e-08,3.269672213748534777e-08,4.359562951664713036e-08,5.449453689580891296e-08,6.539344427497069555e-08,7.629235165413247814e-08,8.719125903329426073e-08,9.809016641245604332e-08,1.089890737916178259e-07,1.198879811707796085e-07,1.307868885499413911e-07,1.416857959291031737e-07,1.525847033082649563e-07,1.634836106874267389e-07,1.743825180665885215e-07,1.852814254457503040e-07,1.961803328249120866e-07,2.070792402040738692e-07,2.179781475832356518e-07,2.288770549623974344e-07,2.397759623415592170e-07,2.506748697207209996e-07,2.615737770998827822e-07,2.724726844790445648e-07,2.833715918582063474e-07,2.942704992373681300e-07,3.051694066165299125e-07,3.160683139956916951e-07,3.269672213748534777e-07,3.378661287540152603e-07,3.487650361331770429e-07,3.596639435123388255e-07,3.705628508915006081e-07,3.814617582706623907e-07,3.923606656498241733e-07,4.032595730289859559e-07,4.141584804081477385e-07,4.250573877873095210e-07,4.359562951664713036e-07,4.468552025456330862e-07,4.577541099247948688e-07,4.686530173039566514e-07,4.795519246831184340e-07,4.904508320622801637e-07,5.013497394414418933e-07,5.122486468206036230e-07,5.231475541997653526e-07,5.340464615789270823e-07,5.449453689580888119e-07,5.558442763372505416e-07,5.667431837164122712e-07,5.776420910955740009e-07,5.885409984747357305e-07,5.994399058538974602e-07,6.103388132330591898e-07,6.212377206122209195e-07,6.321366279913826491e-07,6.430355353705443788e-07,6.539344427497061084e-07,6.648333501288678381e-07,6.757322575080295677e-07,6.866311648871912974e-07 +0.000000000000000000e+00,8.039384278494803059e-09,1.607876855698960612e-08,2.411815283548440752e-08,3.215753711397920562e-08,4.019692139247400372e-08,4.823630567096880181e-08,5.627568994946359991e-08,6.431507422795839800e-08,7.235445850645319610e-08,8.039384278494799420e-08,8.843322706344279229e-08,9.647261134193759039e-08,1.045119956204323885e-07,1.125513798989271866e-07,1.205907641774219714e-07,1.286301484559167695e-07,1.366695327344115676e-07,1.447089170129063657e-07,1.527483012914011638e-07,1.607876855698959619e-07,1.688270698483907600e-07,1.768664541268855581e-07,1.849058384053803562e-07,1.929452226838751543e-07,2.009846069623699524e-07,2.090239912408647505e-07,2.170633755193595486e-07,2.251027597978543467e-07,2.331421440763491448e-07,2.411815283548439429e-07,2.492209126333387410e-07,2.572602969118335391e-07,2.652996811903283372e-07,2.733390654688231353e-07,2.813784497473179334e-07,2.894178340258127315e-07,2.974572183043075296e-07,3.054966025828023277e-07,3.135359868612971258e-07,3.215753711397919239e-07,3.296147554182867219e-07,3.376541396967815200e-07,3.456935239752763181e-07,3.537329082537711162e-07,3.617722925322659143e-07,3.698116768107607124e-07,3.778510610892555105e-07,3.858904453677503086e-07,3.939298296462451067e-07,4.019692139247399048e-07,4.100085982032347029e-07,4.180479824817295010e-07,4.260873667602242991e-07,4.341267510387190972e-07,4.421661353172138953e-07,4.502055195957086934e-07,4.582449038742034915e-07,4.662842881526982896e-07,4.743236724311930877e-07,4.823630567096878858e-07,4.904024409881826839e-07,4.984418252666774820e-07,5.064812095451722801e-07 +0.000000000000000000e+00,1.192677513643306682e-08,2.385355027286613363e-08,3.578032540929919880e-08,4.770710054573226065e-08,5.963387568216532912e-08,7.156065081859839760e-08,8.348742595503146607e-08,9.541420109146453454e-08,1.073409762278976030e-07,1.192677513643306582e-07,1.311945265007637135e-07,1.431213016371967687e-07,1.550480767736298240e-07,1.669748519100628792e-07,1.789016270464959344e-07,1.908284021829289897e-07,2.027551773193620449e-07,2.146819524557951001e-07,2.266087275922281554e-07,2.385355027286612106e-07,2.504622778650942659e-07,2.623890530015273211e-07,2.743158281379603763e-07,2.862426032743934316e-07,2.981693784108264868e-07,3.100961535472595420e-07,3.220229286836925973e-07,3.339497038201256525e-07,3.458764789565587078e-07,3.578032540929917630e-07,3.697300292294248182e-07,3.816568043658578735e-07,3.935835795022909287e-07,4.055103546387239839e-07,4.174371297751570392e-07,4.293639049115900944e-07,4.412906800480231496e-07,4.532174551844562049e-07,4.651442303208892601e-07,4.770710054573223154e-07,4.889977805937553706e-07,5.009245557301884258e-07,5.128513308666214811e-07,5.247781060030545363e-07,5.367048811394875915e-07,5.486316562759206468e-07,5.605584314123537020e-07,5.724852065487867573e-07,5.844119816852198125e-07,5.963387568216528677e-07,6.082655319580859230e-07,6.201923070945189782e-07,6.321190822309520334e-07,6.440458573673850887e-07,6.559726325038181439e-07,6.678994076402511991e-07,6.798261827766842544e-07,6.917529579131173096e-07,7.036797330495503649e-07,7.156065081859834201e-07,7.275332833224164753e-07,7.394600584588495306e-07,7.513868335952825858e-07 +0.000000000000000000e+00,8.996588814427772629e-09,1.799317762885554526e-08,2.698976644328331789e-08,3.598635525771109052e-08,4.498294407213886645e-08,5.397953288656664239e-08,6.297612170099441833e-08,7.197271051542219427e-08,8.096929932984997020e-08,8.996588814427774614e-08,9.896247695870552208e-08,1.079590657731332980e-07,1.169556545875610740e-07,1.259522434019888367e-07,1.349488322164165994e-07,1.439454210308443621e-07,1.529420098452721248e-07,1.619385986596998875e-07,1.709351874741276502e-07,1.799317762885554129e-07,1.889283651029831756e-07,1.979249539174109383e-07,2.069215427318387010e-07,2.159181315462664637e-07,2.249147203606942264e-07,2.339113091751219891e-07,2.429078979895497253e-07,2.519044868039774616e-07,2.609010756184051978e-07,2.698976644328329340e-07,2.788942532472606703e-07,2.878908420616884065e-07,2.968874308761161427e-07,3.058840196905438790e-07,3.148806085049716152e-07,3.238771973193993514e-07,3.328737861338270877e-07,3.418703749482548239e-07,3.508669637626825601e-07,3.598635525771102964e-07,3.688601413915380326e-07,3.778567302059657688e-07,3.868533190203935051e-07,3.958499078348212413e-07,4.048464966492489775e-07,4.138430854636767138e-07,4.228396742781044500e-07,4.318362630925321862e-07,4.408328519069599225e-07,4.498294407213876587e-07,4.588260295358153949e-07,4.678226183502431311e-07,4.768192071646708674e-07,4.858157959790986036e-07,4.948123847935263398e-07,5.038089736079540761e-07,5.128055624223818123e-07,5.218021512368095485e-07,5.307987400512372848e-07,5.397953288656650210e-07,5.487919176800927572e-07,5.577885064945204935e-07,5.667850953089482297e-07 +0.000000000000000000e+00,7.748242027792837136e-09,1.549648405558567427e-08,2.324472608337851141e-08,3.099296811117134854e-08,3.874121013896418237e-08,4.648945216675701620e-08,5.423769419454985003e-08,6.198593622234268385e-08,6.973417825013551768e-08,7.748242027792835151e-08,8.523066230572118534e-08,9.297890433351401916e-08,1.007271463613068530e-07,1.084753883890996868e-07,1.162236304168925206e-07,1.239718724446853412e-07,1.317201144724781618e-07,1.394683565002709824e-07,1.472165985280638030e-07,1.549648405558566236e-07,1.627130825836494442e-07,1.704613246114422648e-07,1.782095666392350854e-07,1.859578086670279060e-07,1.937060506948207266e-07,2.014542927226135472e-07,2.092025347504063678e-07,2.169507767781991883e-07,2.246990188059920089e-07,2.324472608337848295e-07,2.401955028615776501e-07,2.479437448893704707e-07,2.556919869171632913e-07,2.634402289449561119e-07,2.711884709727489325e-07,2.789367130005417531e-07,2.866849550283345737e-07,2.944331970561273943e-07,3.021814390839202149e-07,3.099296811117130355e-07,3.176779231395058560e-07,3.254261651672986766e-07,3.331744071950914972e-07,3.409226492228843178e-07,3.486708912506771384e-07,3.564191332784699590e-07,3.641673753062627796e-07,3.719156173340556002e-07,3.796638593618484208e-07,3.874121013896412414e-07,3.951603434174340620e-07,4.029085854452268826e-07,4.106568274730197032e-07,4.184050695008125237e-07,4.261533115286053443e-07,4.339015535563981649e-07,4.416497955841909855e-07,4.493980376119838061e-07,4.571462796397766267e-07,4.648945216675694473e-07,4.726427636953622679e-07,4.803910057231550885e-07,4.881392477509478561e-07 +0.000000000000000000e+00,7.431674515349512132e-09,1.486334903069902426e-08,2.229502354604853722e-08,2.972669806139805184e-08,3.715837257674756645e-08,4.459004709209708107e-08,5.202172160744659568e-08,5.945339612279611029e-08,6.688507063814561829e-08,7.431674515349511967e-08,8.174841966884462105e-08,8.918009418419412243e-08,9.661176869954362381e-08,1.040434432148931252e-07,1.114751177302426266e-07,1.189067922455921279e-07,1.263384667609416293e-07,1.337701412762911307e-07,1.412018157916406321e-07,1.486334903069901335e-07,1.560651648223396348e-07,1.634968393376891362e-07,1.709285138530386376e-07,1.783601883683881390e-07,1.857918628837376404e-07,1.932235373990871417e-07,2.006552119144366431e-07,2.080868864297861445e-07,2.155185609451356459e-07,2.229502354604851473e-07,2.303819099758346486e-07,2.378135844911841500e-07,2.452452590065336514e-07,2.526769335218831528e-07,2.601086080372326541e-07,2.675402825525821555e-07,2.749719570679316569e-07,2.824036315832811583e-07,2.898353060986306597e-07,2.972669806139801610e-07,3.046986551293296624e-07,3.121303296446791638e-07,3.195620041600286652e-07,3.269936786753781666e-07,3.344253531907276679e-07,3.418570277060771693e-07,3.492887022214266707e-07,3.567203767367761721e-07,3.641520512521256735e-07,3.715837257674751748e-07,3.790154002828246762e-07,3.864470747981741776e-07,3.938787493135236790e-07,4.013104238288731803e-07,4.087420983442226817e-07,4.161737728595721831e-07,4.236054473749216845e-07,4.310371218902711859e-07,4.384687964056206872e-07,4.459004709209701886e-07,4.533321454363196900e-07,4.607638199516691914e-07,4.681954944670186928e-07 +0.000000000000000000e+00,9.155951166615583128e-09,1.831190233323116626e-08,2.746785349984674938e-08,3.662380466646233251e-08,4.577975583307791564e-08,5.493570699969349877e-08,6.409165816630908851e-08,7.324760933292467826e-08,8.240356049954026800e-08,9.155951166615585775e-08,1.007154628327714475e-07,1.098714139993870372e-07,1.190273651660026270e-07,1.281833163326182300e-07,1.373392674992338329e-07,1.464952186658494359e-07,1.556511698324650389e-07,1.648071209990806419e-07,1.739630721656962449e-07,1.831190233323118478e-07,1.922749744989274508e-07,2.014309256655430538e-07,2.105868768321586568e-07,2.197428279987742598e-07,2.288987791653898627e-07,2.380547303320054657e-07,2.472106814986210687e-07,2.563666326652366717e-07,2.655225838318522747e-07,2.746785349984678776e-07,2.838344861650834806e-07,2.929904373316990836e-07,3.021463884983146866e-07,3.113023396649302896e-07,3.204582908315458925e-07,3.296142419981614955e-07,3.387701931647770985e-07,3.479261443313927015e-07,3.570820954980083045e-07,3.662380466646239074e-07,3.753939978312395104e-07,3.845499489978551134e-07,3.937059001644707164e-07,4.028618513310863194e-07,4.120178024977019223e-07,4.211737536643175253e-07,4.303297048309331283e-07,4.394856559975487313e-07,4.486416071641643343e-07,4.577975583307799372e-07,4.669535094973955402e-07,4.761094606640111432e-07,4.852654118306267991e-07,4.944213629972424550e-07,5.035773141638581110e-07,5.127332653304737669e-07,5.218892164970894228e-07,5.310451676637050787e-07,5.402011188303207346e-07,5.493570699969363906e-07,5.585130211635520465e-07,5.676689723301677024e-07,5.768249234967833583e-07 +0.000000000000000000e+00,7.748242027802912196e-09,1.549648405560582439e-08,2.324472608340873659e-08,3.099296811121164878e-08,3.874121013901456098e-08,4.648945216681747318e-08,5.423769419462038537e-08,6.198593622242329757e-08,6.973417825022620315e-08,7.748242027802910872e-08,8.523066230583201430e-08,9.297890433363491988e-08,1.007271463614378255e-07,1.084753883892407310e-07,1.162236304170436366e-07,1.239718724448465422e-07,1.317201144726494478e-07,1.394683565004523534e-07,1.472165985282552589e-07,1.549648405560581645e-07,1.627130825838610701e-07,1.704613246116639757e-07,1.782095666394668812e-07,1.859578086672697868e-07,1.937060506950726924e-07,2.014542927228755980e-07,2.092025347506785036e-07,2.169507767784814091e-07,2.246990188062843147e-07,2.324472608340872203e-07,2.401955028618901523e-07,2.479437448896930844e-07,2.556919869174960164e-07,2.634402289452989485e-07,2.711884709731018805e-07,2.789367130009048126e-07,2.866849550287077446e-07,2.944331970565106767e-07,3.021814390843136087e-07,3.099296811121165408e-07,3.176779231399194728e-07,3.254261651677224049e-07,3.331744071955253369e-07,3.409226492233282690e-07,3.486708912511312010e-07,3.564191332789341331e-07,3.641673753067370651e-07,3.719156173345399972e-07,3.796638593623429292e-07,3.874121013901458613e-07,3.951603434179487933e-07,4.029085854457517254e-07,4.106568274735546574e-07,4.184050695013575895e-07,4.261533115291605215e-07,4.339015535569634535e-07,4.416497955847663856e-07,4.493980376125693176e-07,4.571462796403722497e-07,4.648945216681751817e-07,4.726427636959781138e-07,4.803910057237810458e-07,4.881392477515839779e-07 +0.000000000000000000e+00,7.431674515360213368e-09,1.486334903072042674e-08,2.229502354608063845e-08,2.972669806144085016e-08,3.715837257680106188e-08,4.459004709216127690e-08,5.202172160752149192e-08,5.945339612288170694e-08,6.688507063824191535e-08,7.431674515360212375e-08,8.174841966896233216e-08,8.918009418432254056e-08,9.661176869968274897e-08,1.040434432150429574e-07,1.114751177304031658e-07,1.189067922457633742e-07,1.263384667611235826e-07,1.337701412764837778e-07,1.412018157918439729e-07,1.486334903072041681e-07,1.560651648225643633e-07,1.634968393379245584e-07,1.709285138532847536e-07,1.783601883686449488e-07,1.857918628840051439e-07,1.932235373993653391e-07,2.006552119147255343e-07,2.080868864300857295e-07,2.155185609454459246e-07,2.229502354608061198e-07,2.303819099761663150e-07,2.378135844915265101e-07,2.452452590068867053e-07,2.526769335222469005e-07,2.601086080376070956e-07,2.675402825529672908e-07,2.749719570683274860e-07,2.824036315836876812e-07,2.898353060990478763e-07,2.972669806144080715e-07,3.046986551297682667e-07,3.121303296451284618e-07,3.195620041604886570e-07,3.269936786758488522e-07,3.344253531912090473e-07,3.418570277065692425e-07,3.492887022219294377e-07,3.567203767372896329e-07,3.641520512526498280e-07,3.715837257680100232e-07,3.790154002833702184e-07,3.864470747987304135e-07,3.938787493140906087e-07,4.013104238294508039e-07,4.087420983448109990e-07,4.161737728601711942e-07,4.236054473755313894e-07,4.310371218908915846e-07,4.384687964062517797e-07,4.459004709216119749e-07,4.533321454369721701e-07,4.607638199523323652e-07,4.681954944676925604e-07 +0.000000000000000000e+00,9.155951166626328204e-09,1.831190233325265641e-08,2.746785349987898296e-08,3.662380466650530620e-08,4.577975583313162944e-08,5.493570699975795268e-08,6.409165816638427592e-08,7.324760933301059916e-08,8.240356049963692240e-08,9.155951166626324564e-08,1.007154628328895689e-07,1.098714139995158921e-07,1.190273651661422154e-07,1.281833163327685254e-07,1.373392674993948221e-07,1.464952186660211189e-07,1.556511698326474157e-07,1.648071209992737125e-07,1.739630721659000092e-07,1.831190233325263060e-07,1.922749744991526028e-07,2.014309256657788995e-07,2.105868768324051963e-07,2.197428279990314931e-07,2.288987791656577899e-07,2.380547303322840866e-07,2.472106814989103834e-07,2.563666326655366802e-07,2.655225838321629769e-07,2.746785349987892737e-07,2.838344861654155705e-07,2.929904373320418672e-07,3.021463884986681640e-07,3.113023396652944608e-07,3.204582908319207576e-07,3.296142419985470543e-07,3.387701931651733511e-07,3.479261443317996479e-07,3.570820954984259446e-07,3.662380466650522414e-07,3.753939978316785382e-07,3.845499489983048350e-07,3.937059001649311317e-07,4.028618513315574285e-07,4.120178024981837253e-07,4.211737536648100220e-07,4.303297048314363188e-07,4.394856559980626156e-07,4.486416071646889124e-07,4.577975583313152091e-07,4.669535094979415059e-07,4.761094606645678027e-07,4.852654118311940994e-07,4.944213629978203433e-07,5.035773141644465871e-07,5.127332653310728309e-07,5.218892164976990748e-07,5.310451676643253186e-07,5.402011188309515624e-07,5.493570699975778063e-07,5.585130211642040501e-07,5.676689723308302939e-07,5.768249234974565378e-07 +0.000000000000000000e+00,8.550895250996112863e-09,1.710179050199222573e-08,2.565268575298833859e-08,3.420358100398445145e-08,4.275447625498056101e-08,5.130537150597667056e-08,5.985626675697278012e-08,6.840716200796888967e-08,7.695805725896499922e-08,8.550895250996110878e-08,9.405984776095721833e-08,1.026107430119533279e-07,1.111616382629494374e-07,1.197125335139455338e-07,1.282634287649416433e-07,1.368143240159377529e-07,1.453652192669338624e-07,1.539161145179299720e-07,1.624670097689260815e-07,1.710179050199221911e-07,1.795688002709183006e-07,1.881196955219144102e-07,1.966705907729105198e-07,2.052214860239066293e-07,2.137723812749027389e-07,2.223232765258988484e-07,2.308741717768949580e-07,2.394250670278910675e-07,2.479759622788871771e-07,2.565268575298832866e-07,2.650777527808793962e-07,2.736286480318755057e-07,2.821795432828716153e-07,2.907304385338677249e-07,2.992813337848638344e-07,3.078322290358599440e-07,3.163831242868560535e-07,3.249340195378521631e-07,3.334849147888482726e-07,3.420358100398443822e-07,3.505867052908404917e-07,3.591376005418366013e-07,3.676884957928327108e-07,3.762393910438288204e-07,3.847902862948249299e-07,3.933411815458210395e-07,4.018920767968171491e-07,4.104429720478132586e-07,4.189938672988093682e-07,4.275447625498054777e-07,4.360956578008015873e-07,4.446465530517976968e-07,4.531974483027938064e-07,4.617483435537899159e-07,4.702992388047860255e-07,4.788501340557821350e-07,4.874010293067781917e-07,4.959519245577742483e-07,5.045028198087703049e-07,5.130537150597663615e-07,5.216046103107624181e-07,5.301555055617584747e-07,5.387064008127545314e-07 +0.000000000000000000e+00,8.137806457099833628e-09,1.627561291419966726e-08,2.441341937129949923e-08,3.255122582839932789e-08,4.068903228549915656e-08,4.882683874259898522e-08,5.696464519969881389e-08,6.510245165679864255e-08,7.324025811389847784e-08,8.137806457099831312e-08,8.951587102809814840e-08,9.765367748519798368e-08,1.057914839422978190e-07,1.139292903993976542e-07,1.220670968564974895e-07,1.302049033135973116e-07,1.383427097706971336e-07,1.464805162277969557e-07,1.546183226848967777e-07,1.627561291419965998e-07,1.708939355990964218e-07,1.790317420561962439e-07,1.871695485132960659e-07,1.953073549703958880e-07,2.034451614274957100e-07,2.115829678845955320e-07,2.197207743416953541e-07,2.278585807987951761e-07,2.359963872558949982e-07,2.441341937129948202e-07,2.522720001700946688e-07,2.604098066271945173e-07,2.685476130842943658e-07,2.766854195413942143e-07,2.848232259984940628e-07,2.929610324555939113e-07,3.010988389126937599e-07,3.092366453697936084e-07,3.173744518268934569e-07,3.255122582839933054e-07,3.336500647410931539e-07,3.417878711981930024e-07,3.499256776552928510e-07,3.580634841123926995e-07,3.662012905694925480e-07,3.743390970265923965e-07,3.824769034836922450e-07,3.906147099407920935e-07,3.987525163978919421e-07,4.068903228549917906e-07,4.150281293120916391e-07,4.231659357691914876e-07,4.313037422262913361e-07,4.394415486833911847e-07,4.475793551404910332e-07,4.557171615975908817e-07,4.638549680546907302e-07,4.719927745117905787e-07,4.801305809688904272e-07,4.882683874259902758e-07,4.964061938830901243e-07,5.045440003401899728e-07,5.126818067972898213e-07 +0.000000000000000000e+00,9.866881018563633690e-09,1.973376203712726738e-08,2.960064305569090107e-08,3.946752407425453476e-08,4.933440509281817176e-08,5.920128611138180876e-08,6.906816712994544576e-08,7.893504814850908276e-08,8.880192916707271976e-08,9.866881018563635676e-08,1.085356912041999938e-07,1.184025722227636308e-07,1.282694532413272545e-07,1.381363342598908650e-07,1.480032152784544756e-07,1.578700962970180861e-07,1.677369773155816966e-07,1.776038583341453072e-07,1.874707393527089177e-07,1.973376203712725282e-07,2.072045013898361388e-07,2.170713824083997493e-07,2.269382634269633598e-07,2.368051444455269703e-07,2.466720254640905809e-07,2.565389064826541914e-07,2.664057875012178019e-07,2.762726685197814125e-07,2.861395495383450230e-07,2.960064305569086335e-07,3.058733115754722440e-07,3.157401925940358546e-07,3.256070736125994651e-07,3.354739546311630756e-07,3.453408356497266862e-07,3.552077166682902967e-07,3.650745976868539072e-07,3.749414787054175177e-07,3.848083597239811283e-07,3.946752407425447388e-07,4.045421217611083493e-07,4.144090027796719599e-07,4.242758837982355704e-07,4.341427648167991809e-07,4.440096458353627915e-07,4.538765268539264020e-07,4.637434078724900125e-07,4.736102888910536230e-07,4.834771699096172336e-07,4.933440509281808441e-07,5.032109319467444546e-07,5.130778129653080652e-07,5.229446939838716757e-07,5.328115750024352862e-07,5.426784560209988967e-07,5.525453370395625073e-07,5.624122180581261178e-07,5.722790990766897283e-07,5.821459800952533389e-07,5.920128611138169494e-07,6.018797421323805599e-07,6.117466231509441704e-07,6.216135041695077810e-07 +0.000000000000000000e+00,8.550895251004912410e-09,1.710179050200982482e-08,2.565268575301473889e-08,3.420358100401965626e-08,4.275447625502457363e-08,5.130537150602949101e-08,5.985626675703441500e-08,6.840716200803933899e-08,7.695805725904426298e-08,8.550895251004918697e-08,9.405984776105411096e-08,1.026107430120590350e-07,1.111616382630639589e-07,1.197125335140688829e-07,1.282634287650738069e-07,1.368143240160787309e-07,1.453652192670836549e-07,1.539161145180885789e-07,1.624670097690935029e-07,1.710179050200984269e-07,1.795688002711033509e-07,1.881196955221082749e-07,1.966705907731131989e-07,2.052214860241181228e-07,2.137723812751230468e-07,2.223232765261279708e-07,2.308741717771328948e-07,2.394250670281378188e-07,2.479759622791427163e-07,2.565268575301476139e-07,2.650777527811525114e-07,2.736286480321574089e-07,2.821795432831623064e-07,2.907304385341672039e-07,2.992813337851721015e-07,3.078322290361769990e-07,3.163831242871818965e-07,3.249340195381867940e-07,3.334849147891916915e-07,3.420358100401965891e-07,3.505867052912014866e-07,3.591376005422063841e-07,3.676884957932112816e-07,3.762393910442161791e-07,3.847902862952210767e-07,3.933411815462259742e-07,4.018920767972308717e-07,4.104429720482357692e-07,4.189938672992406668e-07,4.275447625502455643e-07,4.360956578012504618e-07,4.446465530522553593e-07,4.531974483032602568e-07,4.617483435542651544e-07,4.702992388052700519e-07,4.788501340562748965e-07,4.874010293072797410e-07,4.959519245582845856e-07,5.045028198092894302e-07,5.130537150602942748e-07,5.216046103112991194e-07,5.301555055623039640e-07,5.387064008133088085e-07 +0.000000000000000000e+00,8.137806457109232054e-09,1.627561291421846411e-08,2.441341937132769616e-08,3.255122582843692822e-08,4.068903228554616027e-08,4.882683874265539232e-08,5.696464519976462438e-08,6.510245165687385643e-08,7.324025811398308849e-08,8.137806457109232054e-08,8.951587102820155259e-08,9.765367748531078465e-08,1.057914839424200167e-07,1.139292903995292488e-07,1.220670968566384940e-07,1.302049033137477393e-07,1.383427097708569846e-07,1.464805162279662299e-07,1.546183226850754752e-07,1.627561291421847205e-07,1.708939355992939658e-07,1.790317420564032111e-07,1.871695485135124564e-07,1.953073549706217016e-07,2.034451614277309469e-07,2.115829678848401922e-07,2.197207743419494375e-07,2.278585807990586828e-07,2.359963872561679281e-07,2.441341937132771998e-07,2.522720001703864716e-07,2.604098066274957434e-07,2.685476130846050151e-07,2.766854195417142869e-07,2.848232259988235586e-07,2.929610324559328304e-07,3.010988389130421022e-07,3.092366453701513739e-07,3.173744518272606457e-07,3.255122582843699174e-07,3.336500647414791892e-07,3.417878711985884610e-07,3.499256776556977327e-07,3.580634841128070045e-07,3.662012905699162762e-07,3.743390970270255480e-07,3.824769034841348197e-07,3.906147099412440915e-07,3.987525163983533633e-07,4.068903228554626350e-07,4.150281293125719068e-07,4.231659357696811785e-07,4.313037422267904503e-07,4.394415486838997221e-07,4.475793551410089938e-07,4.557171615981182656e-07,4.638549680552275373e-07,4.719927745123368091e-07,4.801305809694460808e-07,4.882683874265553526e-07,4.964061938836646244e-07,5.045440003407738961e-07,5.126818067978831679e-07 +0.000000000000000000e+00,9.866881018573162811e-09,1.973376203714632562e-08,2.960064305571948843e-08,3.946752407429265124e-08,4.933440509286581736e-08,5.920128611143898348e-08,6.906816713001214960e-08,7.893504814858531572e-08,8.880192916715848184e-08,9.866881018573164796e-08,1.085356912043048141e-07,1.184025722228779802e-07,1.282694532414511331e-07,1.381363342600242727e-07,1.480032152785974124e-07,1.578700962971705520e-07,1.677369773157436917e-07,1.776038583343168313e-07,1.874707393528899710e-07,1.973376203714631106e-07,2.072045013900362503e-07,2.170713824086093899e-07,2.269382634271825296e-07,2.368051444457556692e-07,2.466720254643288089e-07,2.565389064829019485e-07,2.664057875014750882e-07,2.762726685200482278e-07,2.861395495386213675e-07,2.960064305571945071e-07,3.058733115757676468e-07,3.157401925943407864e-07,3.256070736129139261e-07,3.354739546314870657e-07,3.453408356500602054e-07,3.552077166686333450e-07,3.650745976872064847e-07,3.749414787057796243e-07,3.848083597243527640e-07,3.946752407429259036e-07,4.045421217614990433e-07,4.144090027800721829e-07,4.242758837986453226e-07,4.341427648172184622e-07,4.440096458357916019e-07,4.538765268543647415e-07,4.637434078729378812e-07,4.736102888915110208e-07,4.834771699100841605e-07,4.933440509286573001e-07,5.032109319472304398e-07,5.130778129658035794e-07,5.229446939843767191e-07,5.328115750029498587e-07,5.426784560215229984e-07,5.525453370400961380e-07,5.624122180586692777e-07,5.722790990772424173e-07,5.821459800958155570e-07,5.920128611143886966e-07,6.018797421329618363e-07,6.117466231515349759e-07,6.216135041701081156e-07 +0.000000000000000000e+00,9.277426047619644134e-09,1.855485209523928827e-08,2.783227814285893240e-08,3.710970419047857654e-08,4.638713023809822067e-08,5.566455628571786480e-08,6.494198233333750894e-08,7.421940838095715307e-08,8.349683442857679720e-08,9.277426047619644134e-08,1.020516865238160855e-07,1.113291125714357296e-07,1.206065386190553605e-07,1.298839646666749914e-07,1.391613907142946223e-07,1.484388167619142532e-07,1.577162428095338841e-07,1.669936688571535150e-07,1.762710949047731459e-07,1.855485209523927768e-07,1.948259470000124077e-07,2.041033730476320386e-07,2.133807990952516695e-07,2.226582251428713004e-07,2.319356511904909313e-07,2.412130772381105622e-07,2.504905032857301931e-07,2.597679293333498240e-07,2.690453553809694549e-07,2.783227814285890858e-07,2.876002074762087167e-07,2.968776335238283476e-07,3.061550595714479785e-07,3.154324856190676094e-07,3.247099116666872403e-07,3.339873377143068712e-07,3.432647637619265021e-07,3.525421898095461330e-07,3.618196158571657639e-07,3.710970419047853948e-07,3.803744679524050257e-07,3.896518940000246566e-07,3.989293200476442875e-07,4.082067460952639184e-07,4.174841721428835493e-07,4.267615981905031802e-07,4.360390242381228111e-07,4.453164502857424420e-07,4.545938763333620729e-07,4.638713023809817038e-07,4.731487284286013347e-07,4.824261544762210185e-07,4.917035805238407023e-07,5.009810065714603862e-07,5.102584326190800700e-07,5.195358586666997539e-07,5.288132847143194377e-07,5.380907107619391215e-07,5.473681368095588054e-07,5.566455628571784892e-07,5.659229889047981730e-07,5.752004149524178569e-07,5.844778410000375407e-07 +0.000000000000000000e+00,8.933557884430315646e-09,1.786711576886063129e-08,2.680067365329094694e-08,3.573423153772126258e-08,4.466778942215157492e-08,5.360134730658188726e-08,6.253490519101219959e-08,7.146846307544251193e-08,8.040202095987282427e-08,8.933557884430313660e-08,9.826913672873344894e-08,1.072026946131637613e-07,1.161362524975940736e-07,1.250698103820243992e-07,1.340033682664547248e-07,1.429369261508850503e-07,1.518704840353153759e-07,1.608040419197457015e-07,1.697375998041760270e-07,1.786711576886063526e-07,1.876047155730366782e-07,1.965382734574670038e-07,2.054718313418973293e-07,2.144053892263276549e-07,2.233389471107579805e-07,2.322725049951883060e-07,2.412060628796186051e-07,2.501396207640489043e-07,2.590731786484792034e-07,2.680067365329095025e-07,2.769402944173398016e-07,2.858738523017701007e-07,2.948074101862003998e-07,3.037409680706306989e-07,3.126745259550609980e-07,3.216080838394912971e-07,3.305416417239215962e-07,3.394751996083518953e-07,3.484087574927821944e-07,3.573423153772124935e-07,3.662758732616427926e-07,3.752094311460730917e-07,3.841429890305033908e-07,3.930765469149336899e-07,4.020101047993639890e-07,4.109436626837942881e-07,4.198772205682245872e-07,4.288107784526548863e-07,4.377443363370851854e-07,4.466778942215154845e-07,4.556114521059457836e-07,4.645450099903760827e-07,4.734785678748063818e-07,4.824121257592366809e-07,4.913456836436669800e-07,5.002792415280972791e-07,5.092127994125275782e-07,5.181463572969578773e-07,5.270799151813881764e-07,5.360134730658184755e-07,5.449470309502487746e-07,5.538805888346790737e-07,5.628141467191093728e-07 +0.000000000000000000e+00,1.060781295213975629e-08,2.121562590427951259e-08,3.182343885641927054e-08,4.243125180855903179e-08,5.303906476069879305e-08,6.364687771283855431e-08,7.425469066497831556e-08,8.486250361711807682e-08,9.547031656925783808e-08,1.060781295213975993e-07,1.166859424735373606e-07,1.272937554256771351e-07,1.379015683778169096e-07,1.485093813299566841e-07,1.591171942820964586e-07,1.697250072342362330e-07,1.803328201863760075e-07,1.909406331385157820e-07,2.015484460906555565e-07,2.121562590427953310e-07,2.227640719949351055e-07,2.333718849470748800e-07,2.439796978992146810e-07,2.545875108513544819e-07,2.651953238034942829e-07,2.758031367556340838e-07,2.864109497077738848e-07,2.970187626599136858e-07,3.076265756120534867e-07,3.182343885641932877e-07,3.288422015163330887e-07,3.394500144684728896e-07,3.500578274206126906e-07,3.606656403727524915e-07,3.712734533248922925e-07,3.818812662770320935e-07,3.924890792291718944e-07,4.030968921813116954e-07,4.137047051334514963e-07,4.243125180855912973e-07,4.349203310377310983e-07,4.455281439898708992e-07,4.561359569420107002e-07,4.667437698941505011e-07,4.773515828462903021e-07,4.879593957984301031e-07,4.985672087505699040e-07,5.091750217027097050e-07,5.197828346548495060e-07,5.303906476069893069e-07,5.409984605591291079e-07,5.516062735112689088e-07,5.622140864634087098e-07,5.728218994155485108e-07,5.834297123676883117e-07,5.940375253198281127e-07,6.046453382719679136e-07,6.152531512241077146e-07,6.258609641762475156e-07,6.364687771283873165e-07,6.470765900805271175e-07,6.576844030326669185e-07,6.682922159848067194e-07 +0.000000000000000000e+00,9.277426047627024239e-09,1.855485209525404848e-08,2.783227814288107437e-08,3.710970419050810357e-08,4.638713023813513278e-08,5.566455628576216198e-08,6.494198233338919118e-08,7.421940838101622038e-08,8.349683442864324959e-08,9.277426047627027879e-08,1.020516865238973080e-07,1.113291125715243372e-07,1.206065386191513664e-07,1.298839646667783824e-07,1.391613907144053983e-07,1.484388167620324143e-07,1.577162428096594303e-07,1.669936688572864462e-07,1.762710949049134622e-07,1.855485209525404782e-07,1.948259470001674941e-07,2.041033730477945101e-07,2.133807990954215261e-07,2.226582251430485420e-07,2.319356511906755580e-07,2.412130772383025740e-07,2.504905032859295635e-07,2.597679293335565530e-07,2.690453553811835425e-07,2.783227814288105320e-07,2.876002074764375215e-07,2.968776335240645110e-07,3.061550595716915005e-07,3.154324856193184900e-07,3.247099116669454795e-07,3.339873377145724689e-07,3.432647637621994584e-07,3.525421898098264479e-07,3.618196158574534374e-07,3.710970419050804269e-07,3.803744679527074164e-07,3.896518940003344059e-07,3.989293200479613954e-07,4.082067460955883849e-07,4.174841721432153744e-07,4.267615981908423639e-07,4.360390242384693534e-07,4.453164502860963429e-07,4.545938763337233324e-07,4.638713023813503219e-07,4.731487284289773114e-07,4.824261544766043009e-07,4.917035805242312904e-07,5.009810065718582799e-07,5.102584326194852694e-07,5.195358586671122589e-07,5.288132847147392484e-07,5.380907107623662379e-07,5.473681368099932274e-07,5.566455628576202169e-07,5.659229889052472064e-07,5.752004149528741959e-07,5.844778410005011854e-07 +0.000000000000000000e+00,8.933557884438357496e-09,1.786711576887671499e-08,2.680067365331507083e-08,3.573423153775342336e-08,4.466778942219177590e-08,5.360134730663012843e-08,6.253490519106847434e-08,7.146846307550682026e-08,8.040202095994516617e-08,8.933557884438351209e-08,9.826913672882185800e-08,1.072026946132602039e-07,1.161362524976985498e-07,1.250698103821368957e-07,1.340033682665752417e-07,1.429369261510135876e-07,1.518704840354519335e-07,1.608040419198902794e-07,1.697375998043286253e-07,1.786711576887669712e-07,1.876047155732053172e-07,1.965382734576436631e-07,2.054718313420820090e-07,2.144053892265203549e-07,2.233389471109587008e-07,2.322725049953970467e-07,2.412060628798353926e-07,2.501396207642737386e-07,2.590731786487120845e-07,2.680067365331504304e-07,2.769402944175887763e-07,2.858738523020271222e-07,2.948074101864654681e-07,3.037409680709038140e-07,3.126745259553421600e-07,3.216080838397805059e-07,3.305416417242188518e-07,3.394751996086571977e-07,3.484087574930955436e-07,3.573423153775338895e-07,3.662758732619722355e-07,3.752094311464105814e-07,3.841429890308489273e-07,3.930765469152872732e-07,4.020101047997256191e-07,4.109436626841639650e-07,4.198772205686023109e-07,4.288107784530406569e-07,4.377443363374790028e-07,4.466778942219173487e-07,4.556114521063556946e-07,4.645450099907940405e-07,4.734785678752323864e-07,4.824121257596706794e-07,4.913456836441089194e-07,5.002792415285471595e-07,5.092127994129853995e-07,5.181463572974236396e-07,5.270799151818618796e-07,5.360134730663001196e-07,5.449470309507383597e-07,5.538805888351765997e-07,5.628141467196148397e-07 +0.000000000000000000e+00,1.060781295214792884e-08,2.121562590429585768e-08,3.182343885644378817e-08,4.243125180859172197e-08,5.303906476073965577e-08,6.364687771288758957e-08,7.425469066503551676e-08,8.486250361718344394e-08,9.547031656933137112e-08,1.060781295214792983e-07,1.166859424736272255e-07,1.272937554257751527e-07,1.379015683779230799e-07,1.485093813300710070e-07,1.591171942822189342e-07,1.697250072343668614e-07,1.803328201865147886e-07,1.909406331386627158e-07,2.015484460908106430e-07,2.121562590429585701e-07,2.227640719951064973e-07,2.333718849472544245e-07,2.439796978994023517e-07,2.545875108515502524e-07,2.651953238036981531e-07,2.758031367558460538e-07,2.864109497079939546e-07,2.970187626601418553e-07,3.076265756122897560e-07,3.182343885644376567e-07,3.288422015165855574e-07,3.394500144687334581e-07,3.500578274208813588e-07,3.606656403730292596e-07,3.712734533251771603e-07,3.818812662773250610e-07,3.924890792294729617e-07,4.030968921816208624e-07,4.137047051337687631e-07,4.243125180859166638e-07,4.349203310380645645e-07,4.455281439902124653e-07,4.561359569423603660e-07,4.667437698945082667e-07,4.773515828466562203e-07,4.879593957988041740e-07,4.985672087509521277e-07,5.091750217031000813e-07,5.197828346552480350e-07,5.303906476073959886e-07,5.409984605595439423e-07,5.516062735116918959e-07,5.622140864638398496e-07,5.728218994159878032e-07,5.834297123681357569e-07,5.940375253202837105e-07,6.046453382724316642e-07,6.152531512245796178e-07,6.258609641767275715e-07,6.364687771288755251e-07,6.470765900810234788e-07,6.576844030331714325e-07,6.682922159853193861e-07 +0.000000000000000000e+00,9.832332546056127834e-09,1.966466509211225567e-08,2.949699763816838516e-08,3.932933018422451795e-08,4.916166273028065075e-08,5.899399527633678355e-08,6.882632782239292296e-08,7.865866036844906238e-08,8.849099291450520179e-08,9.832332546056134121e-08,1.081556580066174806e-07,1.179879905526736200e-07,1.278203230987297595e-07,1.376526556447858989e-07,1.474849881908420383e-07,1.573173207368981777e-07,1.671496532829543171e-07,1.769819858290104565e-07,1.868143183750665959e-07,1.966466509211227354e-07,2.064789834671788748e-07,2.163113160132350142e-07,2.261436485592911536e-07,2.359759811053472930e-07,2.458083136514034060e-07,2.556406461974595189e-07,2.654729787435156318e-07,2.753053112895717448e-07,2.851376438356278577e-07,2.949699763816839707e-07,3.048023089277400836e-07,3.146346414737961966e-07,3.244669740198523095e-07,3.342993065659084225e-07,3.441316391119645354e-07,3.539639716580206483e-07,3.637963042040767613e-07,3.736286367501328742e-07,3.834609692961889872e-07,3.932933018422451001e-07,4.031256343883012131e-07,4.129579669343573260e-07,4.227902994804134390e-07,4.326226320264695519e-07,4.424549645725256649e-07,4.522872971185817778e-07,4.621196296646378907e-07,4.719519622106940037e-07,4.817842947567501166e-07,4.916166273028061766e-07,5.014489598488622366e-07,5.112812923949182966e-07,5.211136249409743567e-07,5.309459574870304167e-07,5.407782900330864767e-07,5.506106225791425367e-07,5.604429551251985967e-07,5.702752876712546567e-07,5.801076202173107167e-07,5.899399527633667767e-07,5.997722853094228367e-07,6.096046178554788967e-07,6.194369504015349567e-07 +0.000000000000000000e+00,9.575141054973679039e-09,1.915028210994735808e-08,2.872542316492103712e-08,3.830056421989471616e-08,4.787570527486839850e-08,5.745084632984208085e-08,6.702598738481576320e-08,7.660112843978944555e-08,8.617626949476312789e-08,9.575141054973681024e-08,1.053265516047104926e-07,1.149016926596841749e-07,1.244768337146578573e-07,1.340519747696315264e-07,1.436271158246051955e-07,1.532022568795788646e-07,1.627773979345525337e-07,1.723525389895262028e-07,1.819276800444998720e-07,1.915028210994735411e-07,2.010779621544472102e-07,2.106531032094208793e-07,2.202282442643945484e-07,2.298033853193682175e-07,2.393785263743418866e-07,2.489536674293155558e-07,2.585288084842892249e-07,2.681039495392628940e-07,2.776790905942365631e-07,2.872542316492102322e-07,2.968293727041839013e-07,3.064045137591575704e-07,3.159796548141312395e-07,3.255547958691049087e-07,3.351299369240785778e-07,3.447050779790522469e-07,3.542802190340259160e-07,3.638553600889995851e-07,3.734305011439732542e-07,3.830056421989469233e-07,3.925807832539205924e-07,4.021559243088942616e-07,4.117310653638679307e-07,4.213062064188415998e-07,4.308813474738152689e-07,4.404564885287889380e-07,4.500316295837626071e-07,4.596067706387362762e-07,4.691819116937099453e-07,4.787570527486835615e-07,4.883321938036571777e-07,4.979073348586307939e-07,5.074824759136044100e-07,5.170576169685780262e-07,5.266327580235516424e-07,5.362078990785252586e-07,5.457830401334988747e-07,5.553581811884724909e-07,5.649333222434461071e-07,5.745084632984197233e-07,5.840836043533933394e-07,5.936587454083669556e-07,6.032338864633405718e-07 +0.000000000000000000e+00,1.123528937485002408e-08,2.247057874970004816e-08,3.370586812455007555e-08,4.494115749940010294e-08,5.617644687425013033e-08,6.741173624910015110e-08,7.864702562395017187e-08,8.988231499880019265e-08,1.011176043736502134e-07,1.123528937485002342e-07,1.235881831233502682e-07,1.348234724982003022e-07,1.460587618730503362e-07,1.572940512479003702e-07,1.685293406227504042e-07,1.797646299976004382e-07,1.909999193724504722e-07,2.022352087473005062e-07,2.134704981221505403e-07,2.247057874970005743e-07,2.359410768718506083e-07,2.471763662467006423e-07,2.584116556215506763e-07,2.696469449964007103e-07,2.808822343712507443e-07,2.921175237461007783e-07,3.033528131209508123e-07,3.145881024958008463e-07,3.258233918706508803e-07,3.370586812455009143e-07,3.482939706203509483e-07,3.595292599952009823e-07,3.707645493700510163e-07,3.819998387449010504e-07,3.932351281197510844e-07,4.044704174946011184e-07,4.157057068694511524e-07,4.269409962443011864e-07,4.381762856191512204e-07,4.494115749940012544e-07,4.606468643688512884e-07,4.718821537437013224e-07,4.831174431185513035e-07,4.943527324934012845e-07,5.055880218682512656e-07,5.168233112431012467e-07,5.280586006179512277e-07,5.392938899928012088e-07,5.505291793676511899e-07,5.617644687425011709e-07,5.729997581173511520e-07,5.842350474922011331e-07,5.954703368670511142e-07,6.067056262419010952e-07,6.179409156167510763e-07,6.291762049916010574e-07,6.404114943664510384e-07,6.516467837413010195e-07,6.628820731161510006e-07,6.741173624910009816e-07,6.853526518658509627e-07,6.965879412407009438e-07,7.078232306155509248e-07 +0.000000000000000000e+00,9.832332546062148055e-09,1.966466509212429611e-08,2.949699763818644416e-08,3.932933018424859222e-08,4.916166273031074027e-08,5.899399527637288833e-08,6.882632782243503638e-08,7.865866036849718444e-08,8.849099291455933249e-08,9.832332546062148055e-08,1.081556580066836286e-07,1.179879905527457767e-07,1.278203230988079247e-07,1.376526556448700728e-07,1.474849881909322208e-07,1.573173207369943689e-07,1.671496532830565169e-07,1.769819858291186650e-07,1.868143183751808130e-07,1.966466509212429611e-07,2.064789834673051091e-07,2.163113160133672572e-07,2.261436485594294053e-07,2.359759811054915533e-07,2.458083136515537014e-07,2.556406461976158494e-07,2.654729787436779975e-07,2.753053112897401455e-07,2.851376438358022936e-07,2.949699763818644416e-07,3.048023089279265897e-07,3.146346414739887377e-07,3.244669740200508858e-07,3.342993065661130339e-07,3.441316391121751819e-07,3.539639716582373300e-07,3.637963042042994780e-07,3.736286367503616261e-07,3.834609692964237741e-07,3.932933018424859222e-07,4.031256343885480702e-07,4.129579669346102183e-07,4.227902994806723663e-07,4.326226320267345144e-07,4.424549645727966625e-07,4.522872971188588105e-07,4.621196296649209586e-07,4.719519622109831066e-07,4.817842947570452017e-07,4.916166273031072968e-07,5.014489598491693920e-07,5.112812923952314871e-07,5.211136249412935822e-07,5.309459574873556773e-07,5.407782900334177724e-07,5.506106225794798675e-07,5.604429551255419627e-07,5.702752876716040578e-07,5.801076202176661529e-07,5.899399527637282480e-07,5.997722853097903431e-07,6.096046178558524382e-07,6.194369504019145333e-07 +0.000000000000000000e+00,9.575141054980382511e-09,1.915028210996076502e-08,2.872542316494114753e-08,3.830056421992153004e-08,4.787570527490190924e-08,5.745084632988228845e-08,6.702598738486266765e-08,7.660112843984304685e-08,8.617626949482342605e-08,9.575141054980380525e-08,1.053265516047841845e-07,1.149016926597645637e-07,1.244768337147449429e-07,1.340519747697253353e-07,1.436271158247057277e-07,1.532022568796861202e-07,1.627773979346665126e-07,1.723525389896469050e-07,1.819276800446272975e-07,1.915028210996076899e-07,2.010779621545880824e-07,2.106531032095684748e-07,2.202282442645488672e-07,2.298033853195292597e-07,2.393785263745096521e-07,2.489536674294900445e-07,2.585288084844704370e-07,2.681039495394508294e-07,2.776790905944312219e-07,2.872542316494116143e-07,2.968293727043920067e-07,3.064045137593723992e-07,3.159796548143527916e-07,3.255547958693331840e-07,3.351299369243135765e-07,3.447050779792939689e-07,3.542802190342743613e-07,3.638553600892547538e-07,3.734305011442351462e-07,3.830056421992155387e-07,3.925807832541959311e-07,4.021559243091763235e-07,4.117310653641567160e-07,4.213062064191371084e-07,4.308813474741175008e-07,4.404564885290978933e-07,4.500316295840782857e-07,4.596067706390586782e-07,4.691819116940390706e-07,4.787570527490194101e-07,4.883321938039996966e-07,4.979073348589799832e-07,5.074824759139602698e-07,5.170576169689405563e-07,5.266327580239208429e-07,5.362078990789011294e-07,5.457830401338814160e-07,5.553581811888617025e-07,5.649333222438419891e-07,5.745084632988222757e-07,5.840836043538025622e-07,5.936587454087828488e-07,6.032338864637631353e-07 +0.000000000000000000e+00,1.123528937485711798e-08,2.247057874971423596e-08,3.370586812457135725e-08,4.494115749942847854e-08,5.617644687428559983e-08,6.741173624914271451e-08,7.864702562399982918e-08,8.988231499885694385e-08,1.011176043737140585e-07,1.123528937485711732e-07,1.235881831234283011e-07,1.348234724982854290e-07,1.460587618731425569e-07,1.572940512479996848e-07,1.685293406228568127e-07,1.797646299977139406e-07,1.909999193725710686e-07,2.022352087474281965e-07,2.134704981222853244e-07,2.247057874971424523e-07,2.359410768719995802e-07,2.471763662468567081e-07,2.584116556217138360e-07,2.696469449965709639e-07,2.808822343714280918e-07,2.921175237462852197e-07,3.033528131211423476e-07,3.145881024959994755e-07,3.258233918708566034e-07,3.370586812457137314e-07,3.482939706205708593e-07,3.595292599954279872e-07,3.707645493702851151e-07,3.819998387451422430e-07,3.932351281199993709e-07,4.044704174948564988e-07,4.157057068697136267e-07,4.269409962445707546e-07,4.381762856194278825e-07,4.494115749942850104e-07,4.606468643691421383e-07,4.718821537439992662e-07,4.831174431188564471e-07,4.943527324937136279e-07,5.055880218685708088e-07,5.168233112434279896e-07,5.280586006182851705e-07,5.392938899931423513e-07,5.505291793679995322e-07,5.617644687428567130e-07,5.729997581177138939e-07,5.842350474925710747e-07,5.954703368674282556e-07,6.067056262422854364e-07,6.179409156171426173e-07,6.291762049919997981e-07,6.404114943668569790e-07,6.516467837417141598e-07,6.628820731165713407e-07,6.741173624914285215e-07,6.853526518662857023e-07,6.965879412411428832e-07,7.078232306160000640e-07 +0.000000000000000000e+00,1.025723839086685602e-08,2.051447678173371204e-08,3.077171517260056971e-08,4.102895356346743069e-08,5.128619195433429168e-08,6.154343034520115266e-08,7.180066873606801364e-08,8.205790712693487462e-08,9.231514551780173561e-08,1.025723839086685966e-07,1.128296222995354576e-07,1.230868606904023318e-07,1.333440990812692060e-07,1.436013374721360802e-07,1.538585758630029544e-07,1.641158142538698287e-07,1.743730526447367029e-07,1.846302910356035771e-07,1.948875294264704513e-07,2.051447678173373255e-07,2.154020062082041997e-07,2.256592445990710740e-07,2.359164829899379482e-07,2.461737213808048224e-07,2.564309597716716966e-07,2.666881981625385708e-07,2.769454365534054450e-07,2.872026749442723193e-07,2.974599133351391935e-07,3.077171517260060677e-07,3.179743901168729419e-07,3.282316285077398161e-07,3.384888668986066904e-07,3.487461052894735646e-07,3.590033436803404388e-07,3.692605820712073130e-07,3.795178204620741872e-07,3.897750588529410614e-07,4.000322972438079357e-07,4.102895356346748099e-07,4.205467740255416841e-07,4.308040124164085583e-07,4.410612508072754325e-07,4.513184891981423067e-07,4.615757275890091810e-07,4.718329659798760552e-07,4.820902043707429823e-07,4.923474427616099624e-07,5.026046811524769425e-07,5.128619195433439226e-07,5.231191579342109027e-07,5.333763963250778828e-07,5.436336347159448629e-07,5.538908731068118430e-07,5.641481114976788231e-07,5.744053498885458032e-07,5.846625882794127833e-07,5.949198266702797634e-07,6.051770650611467435e-07,6.154343034520137236e-07,6.256915418428807037e-07,6.359487802337476838e-07,6.462060186246146639e-07 +0.000000000000000000e+00,1.005561850489609528e-08,2.011123700979219056e-08,3.016685551468828584e-08,4.022247401958438112e-08,5.027809252448047640e-08,6.033371102937657168e-08,7.038932953427266035e-08,8.044494803916874901e-08,9.050056654406483767e-08,1.005561850489609263e-07,1.106118035538570150e-07,1.206674220587531169e-07,1.307230405636492188e-07,1.407786590685453207e-07,1.508342775734414226e-07,1.608898960783375245e-07,1.709455145832336264e-07,1.810011330881297283e-07,1.910567515930258302e-07,2.011123700979219321e-07,2.111679886028180340e-07,2.212236071077141359e-07,2.312792256126102378e-07,2.413348441175063397e-07,2.513904626224024151e-07,2.614460811272984905e-07,2.715016996321945660e-07,2.815573181370906414e-07,2.916129366419867168e-07,3.016685551468827922e-07,3.117241736517788677e-07,3.217797921566749431e-07,3.318354106615710185e-07,3.418910291664670940e-07,3.519466476713631694e-07,3.620022661762592448e-07,3.720578846811553202e-07,3.821135031860513957e-07,3.921691216909474711e-07,4.022247401958435465e-07,4.122803587007396220e-07,4.223359772056356974e-07,4.323915957105317728e-07,4.424472142154278482e-07,4.525028327203239237e-07,4.625584512252199991e-07,4.726140697301160745e-07,4.826696882350121500e-07,4.927253067399082254e-07,5.027809252448043008e-07,5.128365437497003762e-07,5.228921622545964517e-07,5.329477807594925271e-07,5.430033992643886025e-07,5.530590177692846780e-07,5.631146362741807534e-07,5.731702547790768288e-07,5.832258732839729042e-07,5.932814917888689797e-07,6.033371102937650551e-07,6.133927287986611305e-07,6.234483473035572060e-07,6.335039658084532814e-07 +0.000000000000000000e+00,1.175557988562060782e-08,2.351115977124121565e-08,3.526673965686182182e-08,4.702231954248242468e-08,5.877789942810302754e-08,7.053347931372363040e-08,8.228905919934423326e-08,9.404463908496483612e-08,1.058002189705854390e-07,1.175557988562060418e-07,1.293113787418266447e-07,1.410669586274472343e-07,1.528225385130678240e-07,1.645781183986884136e-07,1.763336982843090032e-07,1.880892781699295928e-07,1.998448580555501825e-07,2.116004379411707721e-07,2.233560178267913617e-07,2.351115977124119513e-07,2.468671775980325410e-07,2.586227574836531306e-07,2.703783373692737202e-07,2.821339172548943098e-07,2.938894971405148995e-07,3.056450770261354891e-07,3.174006569117560787e-07,3.291562367973766683e-07,3.409118166829972580e-07,3.526673965686178476e-07,3.644229764542384372e-07,3.761785563398590268e-07,3.879341362254796165e-07,3.996897161111002061e-07,4.114452959967207957e-07,4.232008758823413853e-07,4.349564557679619750e-07,4.467120356535825646e-07,4.584676155392031542e-07,4.702231954248237439e-07,4.819787753104443335e-07,4.937343551960648702e-07,5.054899350816854069e-07,5.172455149673059435e-07,5.290010948529264802e-07,5.407566747385470169e-07,5.525122546241675536e-07,5.642678345097880903e-07,5.760234143954086270e-07,5.877789942810291637e-07,5.995345741666497003e-07,6.112901540522702370e-07,6.230457339378907737e-07,6.348013138235113104e-07,6.465568937091318471e-07,6.583124735947523838e-07,6.700680534803729205e-07,6.818236333659934571e-07,6.935792132516139938e-07,7.053347931372345305e-07,7.170903730228550672e-07,7.288459529084756039e-07,7.406015327940961406e-07 +0.000000000000000000e+00,1.025723839087187370e-08,2.051447678174374739e-08,3.077171517261561778e-08,4.102895356348748817e-08,5.128619195435935856e-08,6.154343034523123556e-08,7.180066873610311257e-08,8.205790712697498957e-08,9.231514551784686658e-08,1.025723839087187436e-07,1.128296222995906206e-07,1.230868606904624976e-07,1.333440990813343746e-07,1.436013374722062516e-07,1.538585758630781286e-07,1.641158142539500056e-07,1.743730526448218826e-07,1.846302910356937596e-07,1.948875294265656366e-07,2.051447678174375136e-07,2.154020062083093906e-07,2.256592445991812677e-07,2.359164829900531447e-07,2.461737213809250481e-07,2.564309597717969516e-07,2.666881981626688551e-07,2.769454365535407586e-07,2.872026749444126620e-07,2.974599133352845655e-07,3.077171517261564690e-07,3.179743901170283725e-07,3.282316285079002759e-07,3.384888668987721794e-07,3.487461052896440829e-07,3.590033436805159864e-07,3.692605820713878898e-07,3.795178204622597933e-07,3.897750588531316968e-07,4.000322972440036003e-07,4.102895356348755037e-07,4.205467740257474072e-07,4.308040124166193107e-07,4.410612508074912142e-07,4.513184891983631176e-07,4.615757275892350211e-07,4.718329659801069246e-07,4.820902043709788810e-07,4.923474427618508374e-07,5.026046811527227938e-07,5.128619195435947503e-07,5.231191579344667067e-07,5.333763963253386631e-07,5.436336347162106195e-07,5.538908731070825759e-07,5.641481114979545323e-07,5.744053498888264887e-07,5.846625882796984452e-07,5.949198266705704016e-07,6.051770650614423580e-07,6.154343034523143144e-07,6.256915418431862708e-07,6.359487802340582272e-07,6.462060186249301836e-07 +0.000000000000000000e+00,1.005561850490163077e-08,2.011123700980326155e-08,3.016685551470488901e-08,4.022247401960651648e-08,5.027809252450814394e-08,6.033371102940977802e-08,7.038932953431141211e-08,8.044494803921304619e-08,9.050056654411468027e-08,1.005561850490163144e-07,1.106118035539179484e-07,1.206674220588195825e-07,1.307230405637212166e-07,1.407786590686228507e-07,1.508342775735244848e-07,1.608898960784261188e-07,1.709455145833277529e-07,1.810011330882293870e-07,1.910567515931310211e-07,2.011123700980326552e-07,2.111679886029342893e-07,2.212236071078359233e-07,2.312792256127375574e-07,2.413348441176392180e-07,2.513904626225409050e-07,2.614460811274425920e-07,2.715016996323442790e-07,2.815573181372459661e-07,2.916129366421476531e-07,3.016685551470493401e-07,3.117241736519510271e-07,3.217797921568527141e-07,3.318354106617544012e-07,3.418910291666560882e-07,3.519466476715577752e-07,3.620022661764594622e-07,3.720578846813611493e-07,3.821135031862628363e-07,3.921691216911645233e-07,4.022247401960662103e-07,4.122803587009678973e-07,4.223359772058695844e-07,4.323915957107712714e-07,4.424472142156729584e-07,4.525028327205746454e-07,4.625584512254763324e-07,4.726140697303780195e-07,4.826696882352797065e-07,4.927253067401813935e-07,5.027809252450830805e-07,5.128365437499847676e-07,5.228921622548864546e-07,5.329477807597881416e-07,5.430033992646898286e-07,5.530590177695915156e-07,5.631146362744932027e-07,5.731702547793948897e-07,5.832258732842965767e-07,5.932814917891982637e-07,6.033371102940999508e-07,6.133927287990016378e-07,6.234483473039033248e-07,6.335039658088050118e-07 +0.000000000000000000e+00,1.175557988562666775e-08,2.351115977125333550e-08,3.526673965688000656e-08,4.702231954250667761e-08,5.877789942813334867e-08,7.053347931376001311e-08,8.228905919938667755e-08,9.404463908501334199e-08,1.058002189706400064e-07,1.175557988562666709e-07,1.293113787418933485e-07,1.410669586275200262e-07,1.528225385131467039e-07,1.645781183987733816e-07,1.763336982844000592e-07,1.880892781700267369e-07,1.998448580556534146e-07,2.116004379412800923e-07,2.233560178269067699e-07,2.351115977125334476e-07,2.468671775981601253e-07,2.586227574837868030e-07,2.703783373694134806e-07,2.821339172550401583e-07,2.938894971406668360e-07,3.056450770262935137e-07,3.174006569119201914e-07,3.291562367975468690e-07,3.409118166831735467e-07,3.526673965688002244e-07,3.644229764544269021e-07,3.761785563400535797e-07,3.879341362256802574e-07,3.996897161113069351e-07,4.114452959969336128e-07,4.232008758825602904e-07,4.349564557681869681e-07,4.467120356538136458e-07,4.584676155394403235e-07,4.702231954250670011e-07,4.819787753106936788e-07,4.937343551963203565e-07,5.054899350819470342e-07,5.172455149675737118e-07,5.290010948532003895e-07,5.407566747388270672e-07,5.525122546244537449e-07,5.642678345100804225e-07,5.760234143957071002e-07,5.877789942813337779e-07,5.995345741669604556e-07,6.112901540525871332e-07,6.230457339382138109e-07,6.348013138238404886e-07,6.465568937094671663e-07,6.583124735950938439e-07,6.700680534807205216e-07,6.818236333663471993e-07,6.935792132519738770e-07,7.053347931376005546e-07,7.170903730232272323e-07,7.288459529088539100e-07,7.406015327944805877e-07 +0.000000000000000000e+00,1.062221113799776588e-08,2.124442227599553176e-08,3.186663341399329764e-08,4.248884455199106351e-08,5.311105568998882939e-08,6.373326682798659527e-08,7.435547796598436777e-08,8.497768910398214026e-08,9.559990024197991276e-08,1.062221113799776853e-07,1.168443225179754577e-07,1.274665336559732170e-07,1.380887447939709763e-07,1.487109559319687355e-07,1.593331670699664948e-07,1.699553782079642541e-07,1.805775893459620133e-07,1.911998004839597726e-07,2.018220116219575318e-07,2.124442227599552911e-07,2.230664338979530504e-07,2.336886450359508096e-07,2.443108561739485689e-07,2.549330673119463281e-07,2.655552784499440874e-07,2.761774895879418467e-07,2.867997007259396059e-07,2.974219118639373652e-07,3.080441230019351244e-07,3.186663341399328837e-07,3.292885452779306430e-07,3.399107564159284022e-07,3.505329675539261615e-07,3.611551786919239208e-07,3.717773898299216800e-07,3.823996009679194393e-07,3.930218121059171985e-07,4.036440232439149578e-07,4.142662343819127171e-07,4.248884455199104763e-07,4.355106566579082356e-07,4.461328677959059948e-07,4.567550789339037541e-07,4.673772900719015134e-07,4.779995012098993256e-07,4.886217123478971378e-07,4.992439234858949500e-07,5.098661346238927622e-07,5.204883457618905744e-07,5.311105568998883866e-07,5.417327680378861988e-07,5.523549791758840110e-07,5.629771903138818232e-07,5.735994014518796354e-07,5.842216125898774476e-07,5.948438237278752598e-07,6.054660348658730720e-07,6.160882460038708842e-07,6.267104571418686964e-07,6.373326682798665086e-07,6.479548794178643208e-07,6.585770905558621330e-07,6.691993016938599452e-07 +0.000000000000000000e+00,1.044282843123517323e-08,2.088565686247034646e-08,3.132848529370551804e-08,4.177131372494068631e-08,5.221414215617585457e-08,6.265697058741102284e-08,7.309979901864618449e-08,8.354262744988134614e-08,9.398545588111650779e-08,1.044282843123516694e-07,1.148711127435868311e-07,1.253139411748219927e-07,1.357567696060571544e-07,1.461995980372923160e-07,1.566424264685274777e-07,1.670852548997626393e-07,1.775280833309978010e-07,1.879709117622329626e-07,1.984137401934681243e-07,2.088565686247032859e-07,2.192993970559384476e-07,2.297422254871736092e-07,2.401850539184087444e-07,2.506278823496438796e-07,2.610707107808790148e-07,2.715135392121141500e-07,2.819563676433492851e-07,2.923991960745844203e-07,3.028420245058195555e-07,3.132848529370546907e-07,3.237276813682898259e-07,3.341705097995249611e-07,3.446133382307600962e-07,3.550561666619952314e-07,3.654989950932303666e-07,3.759418235244655018e-07,3.863846519557006370e-07,3.968274803869357721e-07,4.072703088181709073e-07,4.177131372494060425e-07,4.281559656806411777e-07,4.385987941118763129e-07,4.490416225431114480e-07,4.594844509743465832e-07,4.699272794055817184e-07,4.803701078368168536e-07,4.908129362680519888e-07,5.012557646992871239e-07,5.116985931305222591e-07,5.221414215617573943e-07,5.325842499929925295e-07,5.430270784242276647e-07,5.534699068554627998e-07,5.639127352866979350e-07,5.743555637179330702e-07,5.847983921491682054e-07,5.952412205804033406e-07,6.056840490116384757e-07,6.161268774428736109e-07,6.265697058741087461e-07,6.370125343053438813e-07,6.474553627365790165e-07,6.578981911678141516e-07 +0.000000000000000000e+00,1.223701273382190786e-08,2.447402546764381572e-08,3.671103820146572359e-08,4.894805093528763145e-08,6.118506366910953931e-08,7.342207640293144717e-08,8.565908913675335504e-08,9.789610187057526290e-08,1.101331146043971708e-07,1.223701273382190786e-07,1.346071400720409865e-07,1.468441528058628943e-07,1.590811655396848022e-07,1.713181782735067101e-07,1.835551910073286179e-07,1.957922037411505258e-07,2.080292164749724337e-07,2.202662292087943415e-07,2.325032419426162494e-07,2.447402546764381572e-07,2.569772674102600386e-07,2.692142801440819200e-07,2.814512928779038014e-07,2.936883056117256828e-07,3.059253183455475642e-07,3.181623310793694456e-07,3.303993438131913270e-07,3.426363565470132084e-07,3.548733692808350898e-07,3.671103820146569712e-07,3.793473947484788526e-07,3.915844074823007340e-07,4.038214202161226153e-07,4.160584329499444967e-07,4.282954456837663781e-07,4.405324584175882595e-07,4.527694711514101409e-07,4.650064838852320223e-07,4.772434966190539037e-07,4.894805093528757851e-07,5.017175220866976665e-07,5.139545348205195479e-07,5.261915475543414293e-07,5.384285602881633107e-07,5.506655730219851921e-07,5.629025857558070735e-07,5.751395984896289548e-07,5.873766112234508362e-07,5.996136239572727176e-07,6.118506366910945990e-07,6.240876494249164804e-07,6.363246621587383618e-07,6.485616748925602432e-07,6.607986876263821246e-07,6.730357003602040060e-07,6.852727130940258874e-07,6.975097258278477688e-07,7.097467385616696502e-07,7.219837512954915316e-07,7.342207640293134129e-07,7.464577767631352943e-07,7.586947894969571757e-07,7.709318022307790571e-07 +0.000000000000000000e+00,1.062221113800119371e-08,2.124442227600238743e-08,3.186663341400358114e-08,4.248884455200477486e-08,5.311105569000596857e-08,6.373326682800716229e-08,7.435547796600834939e-08,8.497768910400953648e-08,9.559990024201072358e-08,1.062221113800119107e-07,1.168443225180130978e-07,1.274665336560142981e-07,1.380887447940154984e-07,1.487109559320166988e-07,1.593331670700178991e-07,1.699553782080190994e-07,1.805775893460202998e-07,1.911998004840215001e-07,2.018220116220227004e-07,2.124442227600239008e-07,2.230664338980251011e-07,2.336886450360263014e-07,2.443108561740275018e-07,2.549330673120287021e-07,2.655552784500299024e-07,2.761774895880311028e-07,2.867997007260323031e-07,2.974219118640335034e-07,3.080441230020347038e-07,3.186663341400359041e-07,3.292885452780371044e-07,3.399107564160383048e-07,3.505329675540395051e-07,3.611551786920407054e-07,3.717773898300419058e-07,3.823996009680431061e-07,3.930218121060443064e-07,4.036440232440455067e-07,4.142662343820467071e-07,4.248884455200479074e-07,4.355106566580491077e-07,4.461328677960503081e-07,4.567550789340515084e-07,4.673772900720527087e-07,4.779995012100539091e-07,4.886217123480551094e-07,4.992439234860563097e-07,5.098661346240575101e-07,5.204883457620587104e-07,5.311105569000599107e-07,5.417327680380611111e-07,5.523549791760623114e-07,5.629771903140635117e-07,5.735994014520647121e-07,5.842216125900659124e-07,5.948438237280671127e-07,6.054660348660683131e-07,6.160882460040695134e-07,6.267104571420707137e-07,6.373326682800719141e-07,6.479548794180731144e-07,6.585770905560743147e-07,6.691993016940755151e-07 +0.000000000000000000e+00,1.044282843123940840e-08,2.088565686247881679e-08,3.132848529371822353e-08,4.177131372495762696e-08,5.221414215619703040e-08,6.265697058743643383e-08,7.309979901867583064e-08,8.354262744991522746e-08,9.398545588115462428e-08,1.044282843123940211e-07,1.148711127436334179e-07,1.253139411748728147e-07,1.357567696061122115e-07,1.461995980373516084e-07,1.566424264685910052e-07,1.670852548998304020e-07,1.775280833310697988e-07,1.879709117623091956e-07,1.984137401935485924e-07,2.088565686247879892e-07,2.192993970560273861e-07,2.297422254872667829e-07,2.401850539185061532e-07,2.506278823497455236e-07,2.610707107809848939e-07,2.715135392122242643e-07,2.819563676434636346e-07,2.923991960747030049e-07,3.028420245059423753e-07,3.132848529371817456e-07,3.237276813684211160e-07,3.341705097996604863e-07,3.446133382308998567e-07,3.550561666621392270e-07,3.654989950933785974e-07,3.759418235246179677e-07,3.863846519558573380e-07,3.968274803870967084e-07,4.072703088183360787e-07,4.177131372495754491e-07,4.281559656808148194e-07,4.385987941120541898e-07,4.490416225432935601e-07,4.594844509745329305e-07,4.699272794057723008e-07,4.803701078370116712e-07,4.908129362682510415e-07,5.012557646994904118e-07,5.116985931307297822e-07,5.221414215619691525e-07,5.325842499932085229e-07,5.430270784244478932e-07,5.534699068556872636e-07,5.639127352869266339e-07,5.743555637181660043e-07,5.847983921494053746e-07,5.952412205806447450e-07,6.056840490118841153e-07,6.161268774431234856e-07,6.265697058743628560e-07,6.370125343056022263e-07,6.474553627368415967e-07,6.578981911680809670e-07 +0.000000000000000000e+00,1.223701273382673198e-08,2.447402546765346396e-08,3.671103820148019594e-08,4.894805093530692792e-08,6.118506366913365328e-08,7.342207640296037864e-08,8.565908913678710400e-08,9.789610187061382937e-08,1.101331146044405547e-07,1.223701273382672801e-07,1.346071400720940055e-07,1.468441528059207308e-07,1.590811655397474562e-07,1.713181782735741815e-07,1.835551910074009069e-07,1.957922037412276323e-07,2.080292164750543576e-07,2.202662292088810830e-07,2.325032419427078084e-07,2.447402546765345072e-07,2.569772674103612061e-07,2.692142801441879050e-07,2.814512928780146039e-07,2.936883056118413028e-07,3.059253183456680017e-07,3.181623310794947006e-07,3.303993438133213995e-07,3.426363565471480984e-07,3.548733692809747973e-07,3.671103820148014962e-07,3.793473947486281951e-07,3.915844074824548940e-07,4.038214202162815928e-07,4.160584329501082917e-07,4.282954456839349906e-07,4.405324584177616895e-07,4.527694711515883884e-07,4.650064838854150873e-07,4.772434966192417333e-07,4.894805093530683792e-07,5.017175220868950252e-07,5.139545348207216711e-07,5.261915475545483171e-07,5.384285602883749630e-07,5.506655730222016090e-07,5.629025857560282549e-07,5.751395984898549009e-07,5.873766112236815468e-07,5.996136239575081928e-07,6.118506366913348387e-07,6.240876494251614847e-07,6.363246621589881306e-07,6.485616748928147766e-07,6.607986876266414226e-07,6.730357003604680685e-07,6.852727130942947145e-07,6.975097258281213604e-07,7.097467385619480064e-07,7.219837512957746523e-07,7.342207640296012983e-07,7.464577767634279442e-07,7.586947894972545902e-07,7.709318022310812361e-07 +0.000000000000000000e+00,1.079125097959887505e-08,2.158250195919775011e-08,3.237375293879662847e-08,4.316500391839550683e-08,5.395625489799438520e-08,6.474750587759325694e-08,7.553875685719212869e-08,8.633000783679100043e-08,9.712125881638987218e-08,1.079125097959887439e-07,1.187037607755876157e-07,1.294950117551864874e-07,1.402862627347853459e-07,1.510775137143842044e-07,1.618687646939830629e-07,1.726600156735819215e-07,1.834512666531807800e-07,1.942425176327796385e-07,2.050337686123784970e-07,2.158250195919773555e-07,2.266162705715762140e-07,2.374075215511750725e-07,2.481987725307739310e-07,2.589900235103728160e-07,2.697812744899717010e-07,2.805725254695705860e-07,2.913637764491694710e-07,3.021550274287683559e-07,3.129462784083672409e-07,3.237375293879661259e-07,3.345287803675650109e-07,3.453200313471638959e-07,3.561112823267627808e-07,3.669025333063616658e-07,3.776937842859605508e-07,3.884850352655594358e-07,3.992762862451583208e-07,4.100675372247572057e-07,4.208587882043560907e-07,4.316500391839549757e-07,4.424412901635538607e-07,4.532325411431527457e-07,4.640237921227516306e-07,4.748150431023505156e-07,4.856062940819494006e-07,4.963975450615482856e-07,5.071887960411471706e-07,5.179800470207460555e-07,5.287712980003449405e-07,5.395625489799438255e-07,5.503537999595427105e-07,5.611450509391415955e-07,5.719363019187404804e-07,5.827275528983393654e-07,5.935188038779382504e-07,6.043100548575371354e-07,6.151013058371360204e-07,6.258925568167349053e-07,6.366838077963337903e-07,6.474750587759326753e-07,6.582663097555315603e-07,6.690575607351304453e-07,6.798488117147293302e-07 +0.000000000000000000e+00,1.272469615680030943e-08,2.544939231360061887e-08,3.817408847040092830e-08,5.089878462720123774e-08,6.362348078400155379e-08,7.634817694080186984e-08,8.907287309760218590e-08,1.017975692544025019e-07,1.145222654112028180e-07,1.272469615680031341e-07,1.399716577248034501e-07,1.526963538816037662e-07,1.654210500384040822e-07,1.781457461952043983e-07,1.908704423520047143e-07,2.035951385088050304e-07,2.163198346656053464e-07,2.290445308224056625e-07,2.417692269792060050e-07,2.544939231360063210e-07,2.672186192928066371e-07,2.799433154496069531e-07,2.926680116064072692e-07,3.053927077632075853e-07,3.181174039200079013e-07,3.308421000768082174e-07,3.435667962336085334e-07,3.562914923904088495e-07,3.690161885472091655e-07,3.817408847040094816e-07,3.944655808608097976e-07,4.071902770176101137e-07,4.199149731744104297e-07,4.326396693312107458e-07,4.453643654880110618e-07,4.580890616448113779e-07,4.708137578016116939e-07,4.835384539584120100e-07,4.962631501152123260e-07,5.089878462720126421e-07,5.217125424288129581e-07,5.344372385856132742e-07,5.471619347424135902e-07,5.598866308992139063e-07,5.726113270560142223e-07,5.853360232128145384e-07,5.980607193696148544e-07,6.107854155264151705e-07,6.235101116832154866e-07,6.362348078400158026e-07,6.489595039968161187e-07,6.616842001536164347e-07,6.744088963104167508e-07,6.871335924672170668e-07,6.998582886240173829e-07,7.125829847808176989e-07,7.253076809376180150e-07,7.380323770944183310e-07,7.507570732512186471e-07,7.634817694080189631e-07,7.762064655648192792e-07,7.889311617216195952e-07,8.016558578784199113e-07 +0.000000000000000000e+00,1.272444210047635243e-08,2.544888420095270486e-08,3.817332630142906060e-08,5.089776840190541634e-08,6.362221050238177208e-08,7.634665260285812121e-08,8.907109470333447033e-08,1.017955368038108195e-07,1.145199789042871686e-07,1.272444210047635177e-07,1.399688631052398801e-07,1.526933052057162424e-07,1.654177473061926048e-07,1.781421894066689671e-07,1.908666315071453295e-07,2.035910736076216918e-07,2.163155157080980542e-07,2.290399578085744166e-07,2.417643999090507789e-07,2.544888420095271413e-07,2.672132841100035036e-07,2.799377262104798660e-07,2.926621683109562283e-07,3.053866104114325907e-07,3.181110525119089531e-07,3.308354946123853154e-07,3.435599367128616778e-07,3.562843788133380401e-07,3.690088209138144025e-07,3.817332630142907648e-07,3.944577051147671272e-07,4.071821472152434896e-07,4.199065893157198519e-07,4.326310314161962143e-07,4.453554735166725766e-07,4.580799156171489390e-07,4.708043577176253013e-07,4.835287998181016637e-07,4.962532419185780261e-07,5.089776840190543884e-07,5.217021261195307508e-07,5.344265682200071131e-07,5.471510103204834755e-07,5.598754524209598379e-07,5.725998945214362002e-07,5.853243366219125626e-07,5.980487787223889249e-07,6.107732208228652873e-07,6.234976629233416496e-07,6.362221050238180120e-07,6.489465471242943744e-07,6.616709892247707367e-07,6.743954313252470991e-07,6.871198734257234614e-07,6.998443155261998238e-07,7.125687576266761861e-07,7.252931997271525485e-07,7.380176418276289109e-07,7.507420839281052732e-07,7.634665260285816356e-07,7.761909681290579979e-07,7.889154102295343603e-07,8.016398523300107226e-07 +0.000000000000000000e+00,1.079125097960185952e-08,2.158250195920371904e-08,3.237375293880557526e-08,4.316500391840743147e-08,5.395625489800928768e-08,6.474750587761115051e-08,7.553875685721301334e-08,8.633000783681487617e-08,9.712125881641673901e-08,1.079125097960186018e-07,1.187037607756204647e-07,1.294950117552223275e-07,1.402862627348242036e-07,1.510775137144260796e-07,1.618687646940279557e-07,1.726600156736298318e-07,1.834512666532317078e-07,1.942425176328335839e-07,2.050337686124354600e-07,2.158250195920373360e-07,2.266162705716392121e-07,2.374075215512410882e-07,2.481987725308429642e-07,2.589900235104448138e-07,2.697812744900466634e-07,2.805725254696485130e-07,2.913637764492503626e-07,3.021550274288522122e-07,3.129462784084540618e-07,3.237375293880559114e-07,3.345287803676577610e-07,3.453200313472596106e-07,3.561112823268614602e-07,3.669025333064633098e-07,3.776937842860651594e-07,3.884850352656670090e-07,3.992762862452688586e-07,4.100675372248707082e-07,4.208587882044725577e-07,4.316500391840744073e-07,4.424412901636762569e-07,4.532325411432781065e-07,4.640237921228799561e-07,4.748150431024818057e-07,4.856062940820836553e-07,4.963975450616855049e-07,5.071887960412873545e-07,5.179800470208892041e-07,5.287712980004910537e-07,5.395625489800929033e-07,5.503537999596947529e-07,5.611450509392966025e-07,5.719363019188984521e-07,5.827275528985003017e-07,5.935188038781021513e-07,6.043100548577040009e-07,6.151013058373058505e-07,6.258925568169077001e-07,6.366838077965095497e-07,6.474750587761113993e-07,6.582663097557132489e-07,6.690575607353150984e-07,6.798488117149169480e-07 +0.000000000000000000e+00,1.272469615680385142e-08,2.544939231360770284e-08,3.817408847041155592e-08,5.089878462721541231e-08,6.362348078401926207e-08,7.634817694082311184e-08,8.907287309762696161e-08,1.017975692544308114e-07,1.145222654112346611e-07,1.272469615680385241e-07,1.399716577248423871e-07,1.526963538816462502e-07,1.654210500384501132e-07,1.781457461952539762e-07,1.908704423520578392e-07,2.035951385088617022e-07,2.163198346656655652e-07,2.290445308224694282e-07,2.417692269792732912e-07,2.544939231360771542e-07,2.672186192928810172e-07,2.799433154496848802e-07,2.926680116064887432e-07,3.053927077632926062e-07,3.181174039200964692e-07,3.308421000769003322e-07,3.435667962337041952e-07,3.562914923905080582e-07,3.690161885473119212e-07,3.817408847041157842e-07,3.944655808609196472e-07,4.071902770177235102e-07,4.199149731745273732e-07,4.326396693313312362e-07,4.453643654881350992e-07,4.580890616449389622e-07,4.708137578017428252e-07,4.835384539585466882e-07,4.962631501153506042e-07,5.089878462721545201e-07,5.217125424289584360e-07,5.344372385857623520e-07,5.471619347425662679e-07,5.598866308993701839e-07,5.726113270561740998e-07,5.853360232129780158e-07,5.980607193697819317e-07,6.107854155265858476e-07,6.235101116833897636e-07,6.362348078401936795e-07,6.489595039969975955e-07,6.616842001538015114e-07,6.744088963106054274e-07,6.871335924674093433e-07,6.998582886242132592e-07,7.125829847810171752e-07,7.253076809378210911e-07,7.380323770946250071e-07,7.507570732514289230e-07,7.634817694082328389e-07,7.762064655650367549e-07,7.889311617218406708e-07,8.016558578786445868e-07 +0.000000000000000000e+00,4.609942474019829716e-09,9.219884948039659432e-09,1.382982742205948915e-08,1.843976989607931886e-08,2.304971237009914693e-08,2.765965484411897499e-08,3.226959731813880305e-08,3.687953979215863111e-08,4.148948226617845917e-08,4.609942474019828723e-08,5.070936721421811530e-08,5.531930968823794336e-08,5.992925216225777142e-08,6.453919463627760610e-08,6.914913711029744078e-08,7.375907958431727546e-08,7.836902205833711014e-08,8.297896453235694482e-08,8.758890700637677949e-08,9.219884948039661417e-08,9.680879195441644885e-08,1.014187344284362835e-07,1.060286769024561182e-07,1.106386193764759529e-07,1.152485618504957876e-07,1.198585043245156222e-07,1.244684467985354702e-07,1.290783892725553181e-07,1.336883317465751660e-07,1.382982742205950139e-07,1.429082166946148618e-07,1.475181591686347097e-07,1.521281016426545576e-07,1.567380441166744056e-07,1.613479865906942535e-07,1.659579290647141014e-07,1.705678715387339493e-07,1.751778140127537972e-07,1.797877564867736451e-07,1.843976989607934930e-07,1.890076414348133410e-07,1.936175839088331889e-07,1.982275263828530368e-07,2.028374688568728847e-07,2.074474113308927326e-07,2.120573538049125805e-07,2.166672962789324284e-07,2.212772387529522764e-07,2.258871812269721243e-07,2.304971237009919722e-07,2.351070661750118201e-07,2.397170086490316680e-07,2.443269511230515159e-07,2.489368935970713638e-07,2.535468360710912118e-07,2.581567785451110597e-07,2.627667210191309076e-07,2.673766634931507555e-07,2.719866059671706034e-07,2.765965484411904513e-07,2.812064909152102992e-07,2.858164333892301472e-07,2.904263758632499951e-07 +0.000000000000000000e+00,8.433392720839959819e-09,1.686678544167991964e-08,2.530017816251987946e-08,3.373357088335983928e-08,4.216696360419979909e-08,5.060035632503975891e-08,5.903374904587971873e-08,6.746714176671967855e-08,7.590053448755964499e-08,8.433392720839961142e-08,9.276731992923957786e-08,1.012007126500795443e-07,1.096341053709195107e-07,1.180674980917594772e-07,1.265008908125994436e-07,1.349342835334394100e-07,1.433676762542793765e-07,1.518010689751193429e-07,1.602344616959593094e-07,1.686678544167992758e-07,1.771012471376392422e-07,1.855346398584792087e-07,1.939680325793191751e-07,2.024014253001591415e-07,2.108348180209991080e-07,2.192682107418390744e-07,2.277016034626790408e-07,2.361349961835190073e-07,2.445683889043589737e-07,2.530017816251989402e-07,2.614351743460389066e-07,2.698685670668788730e-07,2.783019597877188395e-07,2.867353525085588059e-07,2.951687452293987723e-07,3.036021379502387388e-07,3.120355306710787052e-07,3.204689233919186716e-07,3.289023161127586381e-07,3.373357088335986045e-07,3.457691015544385710e-07,3.542024942752785374e-07,3.626358869961185038e-07,3.710692797169584703e-07,3.795026724377984367e-07,3.879360651586384031e-07,3.963694578794783696e-07,4.048028506003183360e-07,4.132362433211583024e-07,4.216696360419982689e-07,4.301030287628382353e-07,4.385364214836782018e-07,4.469698142045181682e-07,4.554032069253581346e-07,4.638365996461981011e-07,4.722699923670380675e-07,4.807033850878779810e-07,4.891367778087178416e-07,4.975701705295577021e-07,5.060035632503975627e-07,5.144369559712374232e-07,5.228703486920772838e-07,5.313037414129171443e-07 +0.000000000000000000e+00,8.611898799419772958e-09,1.722379759883954592e-08,2.583569639825931722e-08,3.444759519767908522e-08,4.305949399709885321e-08,5.167139279651862121e-08,6.028329159593838920e-08,6.889519039535815720e-08,7.750708919477792519e-08,8.611898799419769319e-08,9.473088679361746118e-08,1.033427855930372292e-07,1.119546843924569972e-07,1.205665831918767519e-07,1.291784819912965199e-07,1.377903807907162879e-07,1.464022795901360559e-07,1.550141783895558239e-07,1.636260771889755919e-07,1.722379759883953599e-07,1.808498747878151279e-07,1.894617735872348959e-07,1.980736723866546639e-07,2.066855711860744319e-07,2.152974699854941999e-07,2.239093687849139679e-07,2.325212675843337359e-07,2.411331663837535039e-07,2.497450651831732719e-07,2.583569639825930399e-07,2.669688627820128078e-07,2.755807615814325758e-07,2.841926603808523438e-07,2.928045591802721118e-07,3.014164579796918798e-07,3.100283567791116478e-07,3.186402555785314158e-07,3.272521543779511838e-07,3.358640531773709518e-07,3.444759519767907198e-07,3.530878507762104878e-07,3.616997495756302558e-07,3.703116483750500238e-07,3.789235471744697918e-07,3.875354459738895598e-07,3.961473447733093278e-07,4.047592435727290958e-07,4.133711423721488638e-07,4.219830411715686318e-07,4.305949399709883998e-07,4.392068387704081677e-07,4.478187375698279357e-07,4.564306363692477037e-07,4.650425351686674717e-07,4.736544339680872397e-07,4.822663327675070077e-07,4.908782315669267228e-07,4.994901303663464378e-07,5.081020291657661529e-07,5.167139279651858679e-07,5.253258267646055830e-07,5.339377255640252981e-07,5.425496243634450131e-07 +0.000000000000000000e+00,5.440772488559828248e-09,1.088154497711965650e-08,1.632231746567948474e-08,2.176308995423931299e-08,2.720386244279914124e-08,3.264463493135896949e-08,3.808540741991880105e-08,4.352617990847863260e-08,4.896695239703846416e-08,5.440772488559829572e-08,5.984849737415812728e-08,6.528926986271795221e-08,7.073004235127777715e-08,7.617081483983760209e-08,8.161158732839742703e-08,8.705235981695725197e-08,9.249313230551707691e-08,9.793390479407690185e-08,1.033746772826367268e-07,1.088154497711965517e-07,1.142562222597563767e-07,1.196969947483162016e-07,1.251377672368760133e-07,1.305785397254358250e-07,1.360193122139956367e-07,1.414600847025554484e-07,1.469008571911152601e-07,1.523416296796750718e-07,1.577824021682348835e-07,1.632231746567946952e-07,1.686639471453545070e-07,1.741047196339143187e-07,1.795454921224741304e-07,1.849862646110339421e-07,1.904270370995937538e-07,1.958678095881535655e-07,2.013085820767133772e-07,2.067493545652731889e-07,2.121901270538330006e-07,2.176308995423928123e-07,2.230716720309526240e-07,2.285124445195124357e-07,2.339532170080722474e-07,2.393939894966320326e-07,2.448347619851918179e-07,2.502755344737516031e-07,2.557163069623113883e-07,2.611570794508711736e-07,2.665978519394309588e-07,2.720386244279907441e-07,2.774793969165505293e-07,2.829201694051103145e-07,2.883609418936700998e-07,2.938017143822298850e-07,2.992424868707896702e-07,3.046832593593494555e-07,3.101240318479092407e-07,3.155648043364690259e-07,3.210055768250288112e-07,3.264463493135885964e-07,3.318871218021483816e-07,3.373278942907081669e-07,3.427686667792679521e-07 +0.000000000000000000e+00,9.637893447786458024e-09,1.927578689557291605e-08,2.891368034335937407e-08,3.855157379114583210e-08,4.818946723893229343e-08,5.782736068671875476e-08,6.746525413450521610e-08,7.710314758229167743e-08,8.674104103007813876e-08,9.637893447786460010e-08,1.060168279256510614e-07,1.156547213734375228e-07,1.252926148212239973e-07,1.349305082690104587e-07,1.445684017167969200e-07,1.542062951645833813e-07,1.638441886123698427e-07,1.734820820601563040e-07,1.831199755079427653e-07,1.927578689557292267e-07,2.023957624035156880e-07,2.120336558513021493e-07,2.216715492990886107e-07,2.313094427468750720e-07,2.409473361946615333e-07,2.505852296424479947e-07,2.602231230902344560e-07,2.698610165380209173e-07,2.794989099858073787e-07,2.891368034335938400e-07,2.987746968813803013e-07,3.084125903291667627e-07,3.180504837769532240e-07,3.276883772247396853e-07,3.373262706725261467e-07,3.469641641203126080e-07,3.566020575680990693e-07,3.662399510158855307e-07,3.758778444636719920e-07,3.855157379114584533e-07,3.951536313592449147e-07,4.047915248070313760e-07,4.144294182548178373e-07,4.240673117026042987e-07,4.337052051503907600e-07,4.433430985981772213e-07,4.529809920459636827e-07,4.626188854937501440e-07,4.722567789415366053e-07,4.818946723893230667e-07,4.915325658371094751e-07,5.011704592848958834e-07,5.108083527326822918e-07,5.204462461804687002e-07,5.300841396282551086e-07,5.397220330760415170e-07,5.493599265238279254e-07,5.589978199716143338e-07,5.686357134194007422e-07,5.782736068671871506e-07,5.879115003149735590e-07,5.975493937627599674e-07,6.071872872105463758e-07 +0.000000000000000000e+00,5.955464104459118192e-09,1.191092820891823638e-08,1.786639231337735375e-08,2.382185641783646946e-08,2.977732052229558517e-08,3.573278462675470088e-08,4.168824873121381328e-08,4.764371283567292569e-08,5.359917694013203809e-08,5.955464104459115049e-08,6.551010514905026289e-08,7.146556925350937529e-08,7.742103335796848769e-08,8.337649746242760010e-08,8.933196156688671250e-08,9.528742567134582490e-08,1.012428897758049373e-07,1.071983538802640497e-07,1.131538179847231621e-07,1.191092820891822745e-07,1.250647461936413869e-07,1.310202102981004993e-07,1.369756744025596117e-07,1.429311385070187241e-07,1.488866026114778365e-07,1.548420667159369489e-07,1.607975308203960613e-07,1.667529949248551737e-07,1.727084590293142861e-07,1.786639231337733985e-07,1.846193872382325109e-07,1.905748513426916233e-07,1.965303154471507357e-07,2.024857795516098481e-07,2.084412436560689605e-07,2.143967077605280729e-07,2.203521718649871853e-07,2.263076359694462977e-07,2.322631000739054101e-07,2.382185641783645225e-07,2.441740282828236085e-07,2.501294923872827209e-07,2.560849564917418333e-07,2.620404205962009457e-07,2.679958847006600581e-07,2.739513488051191705e-07,2.799068129095782829e-07,2.858622770140373953e-07,2.918177411184965077e-07,2.977732052229556201e-07,3.037286693274147325e-07,3.096841334318738449e-07,3.156395975363329573e-07,3.215950616407920697e-07,3.275505257452511821e-07,3.335059898497102945e-07,3.394614539541694069e-07,3.454169180586285193e-07,3.513723821630876317e-07,3.573278462675467441e-07,3.632833103720058565e-07,3.692387744764649689e-07,3.751942385809240813e-07 +0.000000000000000000e+00,8.569148099989957759e-09,1.713829619997991552e-08,2.570744429996987162e-08,3.427659239995982442e-08,4.284574049994977721e-08,5.141488859993973001e-08,5.998403669992967619e-08,6.855318479991962237e-08,7.712233289990956854e-08,8.569148099989951472e-08,9.426062909988946090e-08,1.028297771998794071e-07,1.113989252998693533e-07,1.199680733998592994e-07,1.285372214998492456e-07,1.371063695998391918e-07,1.456755176998291380e-07,1.542446657998190841e-07,1.628138138998090303e-07,1.713829619997989765e-07,1.799521100997889227e-07,1.885212581997788689e-07,1.970904062997688150e-07,2.056595543997587612e-07,2.142287024997487074e-07,2.227978505997386536e-07,2.313669986997285998e-07,2.399361467997185459e-07,2.485052948997085186e-07,2.570744429996984912e-07,2.656435910996884639e-07,2.742127391996784365e-07,2.827818872996684092e-07,2.913510353996583818e-07,2.999201834996483545e-07,3.084893315996383271e-07,3.170584796996282998e-07,3.256276277996182724e-07,3.341967758996082451e-07,3.427659239995982177e-07,3.513350720995881904e-07,3.599042201995781630e-07,3.684733682995681357e-07,3.770425163995581083e-07,3.856116644995480809e-07,3.941808125995380536e-07,4.027499606995280262e-07,4.113191087995179989e-07,4.198882568995079715e-07,4.284574049994979442e-07,4.370265530994879168e-07,4.455957011994778895e-07,4.541648492994678621e-07,4.627339973994578348e-07,4.713031454994478074e-07,4.798722935994378330e-07,4.884414416994278586e-07,4.970105897994178842e-07,5.055797378994079098e-07,5.141488859993979354e-07,5.227180340993879610e-07,5.312871821993779865e-07,5.398563302993680121e-07 +0.000000000000000000e+00,9.793865668696238199e-09,1.958773133739247640e-08,2.938159700608871625e-08,3.917546267478495941e-08,4.896932834348120258e-08,5.876319401217744574e-08,6.855705968087369552e-08,7.835092534956994530e-08,8.814479101826619508e-08,9.793865668696244486e-08,1.077325223556586946e-07,1.175263880243549444e-07,1.273202536930511942e-07,1.371141193617474440e-07,1.469079850304436938e-07,1.567018506991399435e-07,1.664957163678361933e-07,1.762895820365324431e-07,1.860834477052286929e-07,1.958773133739249426e-07,2.056711790426211924e-07,2.154650447113174422e-07,2.252589103800136920e-07,2.350527760487099418e-07,2.448466417174061651e-07,2.546405073861023884e-07,2.644343730547986117e-07,2.742282387234948350e-07,2.840221043921910583e-07,2.938159700608872816e-07,3.036098357295835049e-07,3.134037013982797282e-07,3.231975670669759516e-07,3.329914327356721749e-07,3.427852984043683982e-07,3.525791640730646215e-07,3.623730297417608448e-07,3.721668954104570681e-07,3.819607610791532914e-07,3.917546267478495147e-07,4.015484924165457380e-07,4.113423580852419613e-07,4.211362237539381847e-07,4.309300894226344080e-07,4.407239550913306313e-07,4.505178207600268546e-07,4.603116864287230779e-07,4.701055520974193012e-07,4.798994177661155245e-07,4.896932834348116949e-07,4.994871491035078652e-07,5.092810147722040356e-07,5.190748804409002060e-07,5.288687461095963764e-07,5.386626117782925467e-07,5.484564774469887171e-07,5.582503431156848875e-07,5.680442087843810578e-07,5.778380744530772282e-07,5.876319401217733986e-07,5.974258057904695690e-07,6.072196714591657393e-07,6.170135371278619097e-07 +0.000000000000000000e+00,4.609942474030401911e-09,9.219884948060803823e-09,1.382982742209120491e-08,1.843976989612160434e-08,2.304971237015200377e-08,2.765965484418240320e-08,3.226959731821279932e-08,3.687953979224319544e-08,4.148948226627359156e-08,4.609942474030398768e-08,5.070936721433438380e-08,5.531930968836477992e-08,5.992925216239517605e-08,6.453919463642557217e-08,6.914913711045596829e-08,7.375907958448636441e-08,7.836902205851676053e-08,8.297896453254715665e-08,8.758890700657755277e-08,9.219884948060794889e-08,9.680879195463834502e-08,1.014187344286687411e-07,1.060286769026991373e-07,1.106386193767295334e-07,1.152485618507599295e-07,1.198585043247903256e-07,1.244684467988207085e-07,1.290783892728510914e-07,1.336883317468814743e-07,1.382982742209118572e-07,1.429082166949422401e-07,1.475181591689726229e-07,1.521281016430030058e-07,1.567380441170333887e-07,1.613479865910637716e-07,1.659579290650941545e-07,1.705678715391245374e-07,1.751778140131549203e-07,1.797877564871853031e-07,1.843976989612156860e-07,1.890076414352460689e-07,1.936175839092764518e-07,1.982275263833068347e-07,2.028374688573372176e-07,2.074474113313676005e-07,2.120573538053979833e-07,2.166672962794283662e-07,2.212772387534587491e-07,2.258871812274891320e-07,2.304971237015195149e-07,2.351070661755498978e-07,2.397170086495802807e-07,2.443269511236106636e-07,2.489368935976410464e-07,2.535468360716714293e-07,2.581567785457018122e-07,2.627667210197321951e-07,2.673766634937625780e-07,2.719866059677929609e-07,2.765965484418233438e-07,2.812064909158537266e-07,2.858164333898841095e-07,2.904263758639144924e-07 +0.000000000000000000e+00,8.433392720851088707e-09,1.686678544170217741e-08,2.530017816255326447e-08,3.373357088340434821e-08,4.216696360425543195e-08,5.060035632510651570e-08,5.903374904595759944e-08,6.746714176680868319e-08,7.590053448765976693e-08,8.433392720851085067e-08,9.276731992936193442e-08,1.012007126502130182e-07,1.096341053710641019e-07,1.180674980919151856e-07,1.265008908127662562e-07,1.349342835336173399e-07,1.433676762544684236e-07,1.518010689753195074e-07,1.602344616961705911e-07,1.686678544170216749e-07,1.771012471378727586e-07,1.855346398587238424e-07,1.939680325795749261e-07,2.024014253004260099e-07,2.108348180212770936e-07,2.192682107421281773e-07,2.277016034629792611e-07,2.361349961838303448e-07,2.445683889046814286e-07,2.530017816255325123e-07,2.614351743463835961e-07,2.698685670672346798e-07,2.783019597880857635e-07,2.867353525089368473e-07,2.951687452297879310e-07,3.036021379506390148e-07,3.120355306714900985e-07,3.204689233923411823e-07,3.289023161131922660e-07,3.373357088340433498e-07,3.457691015548944335e-07,3.542024942757455172e-07,3.626358869965966010e-07,3.710692797174476847e-07,3.795026724382987685e-07,3.879360651591498522e-07,3.963694578800009360e-07,4.048028506008520197e-07,4.132362433217031034e-07,4.216696360425541872e-07,4.301030287634052709e-07,4.385364214842563547e-07,4.469698142051074384e-07,4.554032069259585222e-07,4.638365996468096059e-07,4.722699923676606897e-07,4.807033850885117734e-07,4.891367778093628571e-07,4.975701705302139409e-07,5.060035632510650246e-07,5.144369559719161084e-07,5.228703486927671921e-07,5.313037414136182759e-07 +0.000000000000000000e+00,8.569148099995518067e-09,1.713829619999103613e-08,2.570744429998655420e-08,3.427659239998207227e-08,4.284574049997759033e-08,5.141488859997310840e-08,5.998403669996862647e-08,6.855318479996414454e-08,7.712233289995966260e-08,8.569148099995518067e-08,9.426062909995069874e-08,1.028297771999462168e-07,1.113989252999417349e-07,1.199680733999372529e-07,1.285372214999327578e-07,1.371063695999282626e-07,1.456755176999237674e-07,1.542446657999192723e-07,1.628138138999147771e-07,1.713829619999102819e-07,1.799521100999057868e-07,1.885212581999012916e-07,1.970904062998967964e-07,2.056595543998923013e-07,2.142287024998878061e-07,2.227978505998833109e-07,2.313669986998788158e-07,2.399361467998743471e-07,2.485052948998698784e-07,2.570744429998654097e-07,2.656435910998609410e-07,2.742127391998564723e-07,2.827818872998520036e-07,2.913510353998475349e-07,2.999201834998430662e-07,3.084893315998385975e-07,3.170584796998341288e-07,3.256276277998296601e-07,3.341967758998251914e-07,3.427659239998207227e-07,3.513350720998162540e-07,3.599042201998117853e-07,3.684733682998073166e-07,3.770425163998028479e-07,3.856116644997983792e-07,3.941808125997939105e-07,4.027499606997894418e-07,4.113191087997849731e-07,4.198882568997805044e-07,4.284574049997760357e-07,4.370265530997715670e-07,4.455957011997670983e-07,4.541648492997626296e-07,4.627339973997581609e-07,4.713031454997536922e-07,4.798722935997492235e-07,4.884414416997447548e-07,4.970105897997402861e-07,5.055797378997358174e-07,5.141488859997313487e-07,5.227180340997268800e-07,5.312871821997224113e-07,5.398563302997179426e-07 +0.000000000000000000e+00,5.440772488570693266e-09,1.088154497714138653e-08,1.632231746571207897e-08,2.176308995428276975e-08,2.720386244285346054e-08,3.264463493142415132e-08,3.808540741999484211e-08,4.352617990856553289e-08,4.896695239713622367e-08,5.440772488570691446e-08,5.984849737427759863e-08,6.528926986284828941e-08,7.073004235141898019e-08,7.617081483998967098e-08,8.161158732856036176e-08,8.705235981713105255e-08,9.249313230570174333e-08,9.793390479427243411e-08,1.033746772828431249e-07,1.088154497714138157e-07,1.142562222599845065e-07,1.196969947485551973e-07,1.251377672371258880e-07,1.305785397256965788e-07,1.360193122142672696e-07,1.414600847028379604e-07,1.469008571914086512e-07,1.523416296799793420e-07,1.577824021685500327e-07,1.632231746571207235e-07,1.686639471456914143e-07,1.741047196342621051e-07,1.795454921228327959e-07,1.849862646114034867e-07,1.904270370999741774e-07,1.958678095885448682e-07,2.013085820771155590e-07,2.067493545656862498e-07,2.121901270542569406e-07,2.176308995428276314e-07,2.230716720313983221e-07,2.285124445199690129e-07,2.339532170085397037e-07,2.393939894971103945e-07,2.448347619856810853e-07,2.502755344742517761e-07,2.557163069628224669e-07,2.611570794513931576e-07,2.665978519399638484e-07,2.720386244285345392e-07,2.774793969171052300e-07,2.829201694056759208e-07,2.883609418942466116e-07,2.938017143828173023e-07,2.992424868713879931e-07,3.046832593599586839e-07,3.101240318485293747e-07,3.155648043371000655e-07,3.210055768256707563e-07,3.264463493142414470e-07,3.318871218028121378e-07,3.373278942913828286e-07,3.427686667799535194e-07 +0.000000000000000000e+00,9.637893447797884697e-09,1.927578689559576939e-08,2.891368034339365575e-08,3.855157379119154541e-08,4.818946723898943507e-08,5.782736068678732473e-08,6.746525413458522101e-08,7.710314758238311728e-08,8.674104103018101356e-08,9.637893447797890984e-08,1.060168279257768061e-07,1.156547213735747024e-07,1.252926148213725987e-07,1.349305082691704950e-07,1.445684017169683912e-07,1.542062951647662875e-07,1.638441886125641838e-07,1.734820820603620801e-07,1.831199755081599763e-07,1.927578689559578726e-07,2.023957624037557689e-07,2.120336558515536652e-07,2.216715492993515615e-07,2.313094427471494577e-07,2.409473361949473540e-07,2.505852296427452503e-07,2.602231230905431466e-07,2.698610165383410428e-07,2.794989099861389391e-07,2.891368034339368354e-07,2.987746968817347317e-07,3.084125903295326280e-07,3.180504837773305242e-07,3.276883772251284205e-07,3.373262706729263168e-07,3.469641641207242131e-07,3.566020575685221093e-07,3.662399510163200056e-07,3.758778444641179019e-07,3.855157379119157982e-07,3.951536313597136945e-07,4.047915248075115907e-07,4.144294182553094870e-07,4.240673117031073833e-07,4.337052051509052796e-07,4.433430985987031758e-07,4.529809920465010721e-07,4.626188854942989684e-07,4.722567789420968647e-07,4.818946723898947080e-07,4.915325658376925514e-07,5.011704592854903947e-07,5.108083527332882380e-07,5.204462461810860814e-07,5.300841396288839247e-07,5.397220330766817680e-07,5.493599265244796114e-07,5.589978199722774547e-07,5.686357134200752981e-07,5.782736068678731414e-07,5.879115003156709847e-07,5.975493937634688281e-07,6.071872872112666714e-07 +0.000000000000000000e+00,5.955464104470063446e-09,1.191092820894012689e-08,1.786639231341018951e-08,2.382185641788025048e-08,2.977732052235031144e-08,3.573278462682037240e-08,4.168824873129043006e-08,4.764371283576048772e-08,5.359917694023054537e-08,5.955464104470060303e-08,6.551010514917066068e-08,7.146556925364071834e-08,7.742103335811077599e-08,8.337649746258083365e-08,8.933196156705089131e-08,9.528742567152094896e-08,1.012428897759910066e-07,1.071983538804610643e-07,1.131538179849311219e-07,1.191092820894011796e-07,1.250647461938712240e-07,1.310202102983412684e-07,1.369756744028113128e-07,1.429311385072813573e-07,1.488866026117514017e-07,1.548420667162214461e-07,1.607975308206914905e-07,1.667529949251615350e-07,1.727084590296315794e-07,1.786639231341016238e-07,1.846193872385716682e-07,1.905748513430417126e-07,1.965303154475117571e-07,2.024857795519818015e-07,2.084412436564518459e-07,2.143967077609218903e-07,2.203521718653919347e-07,2.263076359698619792e-07,2.322631000743320236e-07,2.382185641788020680e-07,2.441740282832721124e-07,2.501294923877421304e-07,2.560849564922121483e-07,2.620404205966821663e-07,2.679958847011521842e-07,2.739513488056222022e-07,2.799068129100922201e-07,2.858622770145622381e-07,2.918177411190322560e-07,2.977732052235022740e-07,3.037286693279722919e-07,3.096841334324423099e-07,3.156395975369123278e-07,3.215950616413823458e-07,3.275505257458523637e-07,3.335059898503223817e-07,3.394614539547923996e-07,3.454169180592624176e-07,3.513723821637324355e-07,3.573278462682024535e-07,3.632833103726724714e-07,3.692387744771424894e-07,3.751942385816125073e-07 +0.000000000000000000e+00,4.734455659576624879e-09,9.468911319153249758e-09,1.420336697872987381e-08,1.893782263830649621e-08,2.367227829788311861e-08,2.840673395745974100e-08,3.314118961703636009e-08,3.787564527661297918e-08,4.261010093618959827e-08,4.734455659576621736e-08,5.207901225534283645e-08,5.681346791491945554e-08,6.154792357449607463e-08,6.628237923407269371e-08,7.101683489364931280e-08,7.575129055322593189e-08,8.048574621280255098e-08,8.522020187237917007e-08,8.995465753195578916e-08,9.468911319153240825e-08,9.942356885110902734e-08,1.041580245106856464e-07,1.088924801702622655e-07,1.136269358298388846e-07,1.183613914894155037e-07,1.230958471489921228e-07,1.278303028085687419e-07,1.325647584681453610e-07,1.372992141277219800e-07,1.420336697872985991e-07,1.467681254468752182e-07,1.515025811064518373e-07,1.562370367660284564e-07,1.609714924256050755e-07,1.657059480851816946e-07,1.704404037447583137e-07,1.751748594043349328e-07,1.799093150639115518e-07,1.846437707234881709e-07,1.893782263830647900e-07,1.941126820426414091e-07,1.988471377022180282e-07,2.035815933617946473e-07,2.083160490213712664e-07,2.130505046809478855e-07,2.177849603405245046e-07,2.225194160001011236e-07,2.272538716596777427e-07,2.319883273192543618e-07,2.367227829788309809e-07,2.414572386384076000e-07,2.461916942979841926e-07,2.509261499575607852e-07,2.556606056171373779e-07,2.603950612767139705e-07,2.651295169362905631e-07,2.698639725958671557e-07,2.745984282554437483e-07,2.793328839150203410e-07,2.840673395745969336e-07,2.888017952341735262e-07,2.935362508937501188e-07,2.982707065533267114e-07 +0.000000000000000000e+00,4.534399875262036692e-09,9.068799750524073383e-09,1.360319962578611007e-08,1.813759950104814677e-08,2.267199937631018511e-08,2.720639925157222346e-08,3.174079912683426180e-08,3.627519900209630015e-08,4.080959887735833850e-08,4.534399875262037684e-08,4.987839862788241519e-08,5.441279850314445353e-08,5.894719837840649188e-08,6.348159825366853684e-08,6.801599812893057519e-08,7.255039800419261353e-08,7.708479787945465188e-08,8.161919775471669023e-08,8.615359762997872857e-08,9.068799750524076692e-08,9.522239738050280526e-08,9.975679725576484361e-08,1.042911971310268820e-07,1.088255970062889203e-07,1.133599968815509586e-07,1.178943967568129970e-07,1.224287966320750353e-07,1.269631965073370737e-07,1.314975963825991120e-07,1.360319962578611504e-07,1.405663961331231887e-07,1.451007960083852271e-07,1.496351958836472654e-07,1.541695957589093038e-07,1.587039956341713421e-07,1.632383955094333805e-07,1.677727953846954188e-07,1.723071952599574571e-07,1.768415951352194955e-07,1.813759950104815338e-07,1.859103948857435722e-07,1.904447947610056105e-07,1.949791946362676489e-07,1.995135945115296872e-07,2.040479943867917256e-07,2.085823942620537639e-07,2.131167941373158023e-07,2.176511940125778406e-07,2.221855938878398789e-07,2.267199937631019173e-07,2.312543936383639556e-07,2.357887935136259940e-07,2.403231933888880323e-07,2.448575932641500707e-07,2.493919931394121090e-07,2.539263930146741474e-07,2.584607928899361857e-07,2.629951927651982241e-07,2.675295926404602624e-07,2.720639925157223008e-07,2.765983923909843391e-07,2.811327922662463774e-07,2.856671921415084158e-07 +0.000000000000000000e+00,6.209781339707480613e-09,1.241956267941496123e-08,1.862934401912244184e-08,2.483912535882992245e-08,3.104890669853740306e-08,3.725868803824488368e-08,4.346846937795236429e-08,4.967825071765984490e-08,5.588803205736732551e-08,6.209781339707480613e-08,6.830759473678228012e-08,7.451737607648975412e-08,8.072715741619722811e-08,8.693693875590470211e-08,9.314672009561217610e-08,9.935650143531965010e-08,1.055662827750271241e-07,1.117760641147345981e-07,1.179858454544420721e-07,1.241956267941495328e-07,1.304054081338569936e-07,1.366151894735644544e-07,1.428249708132719151e-07,1.490347521529793759e-07,1.552445334926868366e-07,1.614543148323942974e-07,1.676640961721017582e-07,1.738738775118092189e-07,1.800836588515166797e-07,1.862934401912241404e-07,1.925032215309316012e-07,1.987130028706390620e-07,2.049227842103465227e-07,2.111325655500539835e-07,2.173423468897614442e-07,2.235521282294689050e-07,2.297619095691763658e-07,2.359716909088838265e-07,2.421814722485912608e-07,2.483912535882986951e-07,2.546010349280061294e-07,2.608108162677135637e-07,2.670205976074209980e-07,2.732303789471284323e-07,2.794401602868358666e-07,2.856499416265433009e-07,2.918597229662507351e-07,2.980695043059581694e-07,3.042792856456656037e-07,3.104890669853730380e-07,3.166988483250804723e-07,3.229086296647879066e-07,3.291184110044953409e-07,3.353281923442027752e-07,3.415379736839102095e-07,3.477477550236176438e-07,3.539575363633250780e-07,3.601673177030325123e-07,3.663770990427399466e-07,3.725868803824473809e-07,3.787966617221548152e-07,3.850064430618622495e-07,3.912162244015696838e-07 +0.000000000000000000e+00,4.734455659586407944e-09,9.468911319172815888e-09,1.420336697875922383e-08,1.893782263834563178e-08,2.367227829793203807e-08,2.840673395751844436e-08,3.314118961710485065e-08,3.787564527669125694e-08,4.261010093627766323e-08,4.734455659586406952e-08,5.207901225545047581e-08,5.681346791503688210e-08,6.154792357462328839e-08,6.628237923420970129e-08,7.101683489379611420e-08,7.575129055338252711e-08,8.048574621296894002e-08,8.522020187255535292e-08,8.995465753214176583e-08,9.468911319172817874e-08,9.942356885131459164e-08,1.041580245109010046e-07,1.088924801704874175e-07,1.136269358300738304e-07,1.183613914896602433e-07,1.230958471492466562e-07,1.278303028088330691e-07,1.325647584684194820e-07,1.372992141280058949e-07,1.420336697875923078e-07,1.467681254471787207e-07,1.515025811067651336e-07,1.562370367663515465e-07,1.609714924259379594e-07,1.657059480855243723e-07,1.704404037451107853e-07,1.751748594046971982e-07,1.799093150642836111e-07,1.846437707238700240e-07,1.893782263834564369e-07,1.941126820430428498e-07,1.988471377026292627e-07,2.035815933622156756e-07,2.083160490218020885e-07,2.130505046813885014e-07,2.177849603409749143e-07,2.225194160005613272e-07,2.272538716601477401e-07,2.319883273197341530e-07,2.367227829793205660e-07,2.414572386389069789e-07,2.461916942984933653e-07,2.509261499580797517e-07,2.556606056176661382e-07,2.603950612772525246e-07,2.651295169368389111e-07,2.698639725964252975e-07,2.745984282560116839e-07,2.793328839155980704e-07,2.840673395751844568e-07,2.888017952347708432e-07,2.935362508943572297e-07,2.982707065539436161e-07 +0.000000000000000000e+00,4.534399875272187025e-09,9.068799750544374050e-09,1.360319962581656190e-08,1.813759950108875141e-08,2.267199937636094091e-08,2.720639925163313042e-08,3.174079912690531993e-08,3.627519900217750943e-08,4.080959887744969894e-08,4.534399875272188845e-08,4.987839862799407795e-08,5.441279850326626746e-08,5.894719837853845696e-08,6.348159825381065309e-08,6.801599812908285583e-08,7.255039800435505857e-08,7.708479787962726131e-08,8.161919775489946405e-08,8.615359763017166679e-08,9.068799750544386954e-08,9.522239738071607228e-08,9.975679725598827502e-08,1.042911971312604778e-07,1.088255970065326805e-07,1.133599968818048832e-07,1.178943967570770860e-07,1.224287966323492887e-07,1.269631965076214915e-07,1.314975963828936942e-07,1.360319962581658969e-07,1.405663961334380997e-07,1.451007960087103024e-07,1.496351958839825052e-07,1.541695957592547079e-07,1.587039956345269107e-07,1.632383955097991134e-07,1.677727953850713161e-07,1.723071952603435189e-07,1.768415951356157216e-07,1.813759950108879244e-07,1.859103948861601271e-07,1.904447947614323298e-07,1.949791946367045326e-07,1.995135945119767353e-07,2.040479943872489381e-07,2.085823942625211408e-07,2.131167941377933435e-07,2.176511940130655463e-07,2.221855938883377490e-07,2.267199937636099518e-07,2.312543936388821545e-07,2.357887935141543573e-07,2.403231933894265865e-07,2.448575932646988421e-07,2.493919931399710978e-07,2.539263930152433535e-07,2.584607928905156092e-07,2.629951927657878649e-07,2.675295926410601206e-07,2.720639925163323762e-07,2.765983923916046319e-07,2.811327922668768876e-07,2.856671921421491433e-07 +0.000000000000000000e+00,6.209781339717474609e-09,1.241956267943494922e-08,1.862934401915242548e-08,2.483912535886990174e-08,3.104890669858737801e-08,3.725868803830485096e-08,4.346846937802232392e-08,4.967825071773979687e-08,5.588803205745726982e-08,6.209781339717474278e-08,6.830759473689220912e-08,7.451737607660967545e-08,8.072715741632714179e-08,8.693693875604460813e-08,9.314672009576207446e-08,9.935650143547954080e-08,1.055662827751970071e-07,1.117760641149144735e-07,1.179858454546319398e-07,1.241956267943494061e-07,1.304054081340668725e-07,1.366151894737843388e-07,1.428249708135018052e-07,1.490347521532192715e-07,1.552445334929367378e-07,1.614543148326542042e-07,1.676640961723716705e-07,1.738738775120891368e-07,1.800836588518066032e-07,1.862934401915240695e-07,1.925032215312415359e-07,1.987130028709590022e-07,2.049227842106764685e-07,2.111325655503939349e-07,2.173423468901114012e-07,2.235521282298288675e-07,2.297619095695463339e-07,2.359716909092638002e-07,2.421814722489812666e-07,2.483912535886987594e-07,2.546010349284162522e-07,2.608108162681337450e-07,2.670205976078512378e-07,2.732303789475687306e-07,2.794401602872862234e-07,2.856499416270037162e-07,2.918597229667212090e-07,2.980695043064387018e-07,3.042792856461561946e-07,3.104890669858736874e-07,3.166988483255911802e-07,3.229086296653086730e-07,3.291184110050261658e-07,3.353281923447436587e-07,3.415379736844611515e-07,3.477477550241786443e-07,3.539575363638961371e-07,3.601673177036136299e-07,3.663770990433311227e-07,3.725868803830486155e-07,3.787966617227661083e-07,3.850064430624836011e-07,3.912162244022010939e-07 +0.000000000000000000e+00,5.390427751634874166e-09,1.078085550326974833e-08,1.617128325490462332e-08,2.156171100653949997e-08,2.695213875817437662e-08,3.234256650980925327e-08,3.773299426144413322e-08,4.312342201307901318e-08,4.851384976471389313e-08,5.390427751634877309e-08,5.929470526798365305e-08,6.468513301961853300e-08,7.007556077125341296e-08,7.546598852288829291e-08,8.085641627452317287e-08,8.624684402615805283e-08,9.163727177779293278e-08,9.702769952942781274e-08,1.024181272810626927e-07,1.078085550326975726e-07,1.131989827843324526e-07,1.185894105359673326e-07,1.239798382876022258e-07,1.293702660392371189e-07,1.347606937908720121e-07,1.401511215425069053e-07,1.455415492941417985e-07,1.509319770457766917e-07,1.563224047974115849e-07,1.617128325490464781e-07,1.671032603006813713e-07,1.724936880523162645e-07,1.778841158039511577e-07,1.832745435555860509e-07,1.886649713072209440e-07,1.940553990588558372e-07,1.994458268104907304e-07,2.048362545621256236e-07,2.102266823137605168e-07,2.156171100653954100e-07,2.210075378170303032e-07,2.263979655686651964e-07,2.317883933203000896e-07,2.371788210719349828e-07,2.425692488235698759e-07,2.479596765752047691e-07,2.533501043268396623e-07,2.587405320784745555e-07,2.641309598301094487e-07,2.695213875817443419e-07,2.749118153333792351e-07,2.803022430850141283e-07,2.856926708366490215e-07,2.910830985882839147e-07,2.964735263399188079e-07,3.018639540915537010e-07,3.072543818431885942e-07,3.126448095948234874e-07,3.180352373464583806e-07,3.234256650980932738e-07,3.288160928497281670e-07,3.342065206013630602e-07,3.395969483529979534e-07 +0.000000000000000000e+00,5.053850644183025716e-09,1.010770128836605143e-08,1.516155193254907549e-08,2.021540257673209955e-08,2.526925322091512362e-08,3.032310386509815099e-08,3.537695450928117836e-08,4.043080515346420573e-08,4.548465579764723310e-08,5.053850644183026047e-08,5.559235708601328784e-08,6.064620773019631521e-08,6.570005837437933596e-08,7.075390901856235671e-08,7.580775966274537747e-08,8.086161030692839822e-08,8.591546095111141897e-08,9.096931159529443972e-08,9.602316223947746048e-08,1.010770128836604812e-07,1.061308635278435020e-07,1.111847141720265227e-07,1.162385648162095435e-07,1.212924154603925510e-07,1.263462661045755585e-07,1.314001167487585660e-07,1.364539673929415736e-07,1.415078180371245811e-07,1.465616686813075886e-07,1.516155193254905961e-07,1.566693699696736036e-07,1.617232206138566112e-07,1.667770712580396187e-07,1.718309219022226262e-07,1.768847725464056337e-07,1.819386231905886412e-07,1.869924738347716487e-07,1.920463244789546563e-07,1.971001751231376638e-07,2.021540257673206713e-07,2.072078764115036788e-07,2.122617270556866863e-07,2.173155776998696938e-07,2.223694283440527014e-07,2.274232789882357089e-07,2.324771296324187164e-07,2.375309802766017239e-07,2.425848309207847314e-07,2.476386815649677390e-07,2.526925322091507465e-07,2.577463828533337540e-07,2.628002334975167615e-07,2.678540841416997690e-07,2.729079347858827765e-07,2.779617854300657841e-07,2.830156360742487916e-07,2.880694867184317991e-07,2.931233373626148066e-07,2.981771880067978141e-07,3.032310386509808217e-07,3.082848892951638292e-07,3.133387399393468367e-07,3.183925905835298442e-07 +0.000000000000000000e+00,6.949356181441280762e-09,1.389871236288256152e-08,2.084806854432384394e-08,2.779742472576512636e-08,3.474678090720640877e-08,4.169613708864768788e-08,4.864549327008896699e-08,5.559484945153024610e-08,6.254420563297153182e-08,6.949356181441281754e-08,7.644291799585410327e-08,8.339227417729538899e-08,9.034163035873667472e-08,9.729098654017796044e-08,1.042403427216192462e-07,1.111896989030605319e-07,1.181390550845018176e-07,1.250884112659431166e-07,1.320377674473844155e-07,1.389871236288257145e-07,1.459364798102670135e-07,1.528858359917083124e-07,1.598351921731496114e-07,1.667845483545909103e-07,1.737339045360322093e-07,1.806832607174735083e-07,1.876326168989148072e-07,1.945819730803561062e-07,2.015313292617974051e-07,2.084806854432387041e-07,2.154300416246800031e-07,2.223793978061213020e-07,2.293287539875626010e-07,2.362781101690038999e-07,2.432274663504452254e-07,2.501768225318865508e-07,2.571261787133278762e-07,2.640755348947692017e-07,2.710248910762105271e-07,2.779742472576518525e-07,2.849236034390931779e-07,2.918729596205345034e-07,2.988223158019758288e-07,3.057716719834171542e-07,3.127210281648584797e-07,3.196703843462998051e-07,3.266197405277411305e-07,3.335690967091824560e-07,3.405184528906237814e-07,3.474678090720651068e-07,3.544171652535064322e-07,3.613665214349477577e-07,3.683158776163890831e-07,3.752652337978304085e-07,3.822145899792717340e-07,3.891639461607130594e-07,3.961133023421543848e-07,4.030626585235957102e-07,4.100120147050370357e-07,4.169613708864783611e-07,4.239107270679196865e-07,4.308600832493610120e-07,4.378094394308023374e-07 +0.000000000000000000e+00,5.390427751643404052e-09,1.078085550328680810e-08,1.617128325493021298e-08,2.156171100657361952e-08,2.695213875821702605e-08,3.234256650986043258e-08,3.773299426150383581e-08,4.312342201314723903e-08,4.851384976479064226e-08,5.390427751643404548e-08,5.929470526807744871e-08,6.468513301972085193e-08,7.007556077136425516e-08,7.546598852300765838e-08,8.085641627465106161e-08,8.624684402629446483e-08,9.163727177793786806e-08,9.702769952958127128e-08,1.024181272812246745e-07,1.078085550328680777e-07,1.131989827845114810e-07,1.185894105361548842e-07,1.239798382877982874e-07,1.293702660394416774e-07,1.347606937910850674e-07,1.401511215427284574e-07,1.455415492943718474e-07,1.509319770460152374e-07,1.563224047976586273e-07,1.617128325493020173e-07,1.671032603009454073e-07,1.724936880525887973e-07,1.778841158042321873e-07,1.832745435558755773e-07,1.886649713075189673e-07,1.940553990591623573e-07,1.994458268108057473e-07,2.048362545624491373e-07,2.102266823140925273e-07,2.156171100657359172e-07,2.210075378173793072e-07,2.263979655690226972e-07,2.317883933206660872e-07,2.371788210723094772e-07,2.425692488239528407e-07,2.479596765755962042e-07,2.533501043272395678e-07,2.587405320788829313e-07,2.641309598305262948e-07,2.695213875821696583e-07,2.749118153338130218e-07,2.803022430854563854e-07,2.856926708370997489e-07,2.910830985887431124e-07,2.964735263403864759e-07,3.018639540920298394e-07,3.072543818436732030e-07,3.126448095953165665e-07,3.180352373469599300e-07,3.234256650986032935e-07,3.288160928502466570e-07,3.342065206018900206e-07,3.395969483535333841e-07 +0.000000000000000000e+00,5.053850644192169370e-09,1.010770128838433874e-08,1.516155193257650811e-08,2.021540257676867748e-08,2.526925322096084685e-08,3.032310386515301622e-08,3.537695450934518890e-08,4.043080515353736158e-08,4.548465579772953426e-08,5.053850644192170694e-08,5.559235708611387962e-08,6.064620773030604568e-08,6.570005837449821174e-08,7.075390901869037780e-08,7.580775966288254386e-08,8.086161030707470993e-08,8.591546095126687599e-08,9.096931159545904205e-08,9.602316223965120811e-08,1.010770128838433742e-07,1.061308635280355402e-07,1.111847141722277063e-07,1.162385648164198724e-07,1.212924154606120384e-07,1.263462661048042045e-07,1.314001167489963705e-07,1.364539673931885366e-07,1.415078180373807027e-07,1.465616686815728687e-07,1.516155193257650348e-07,1.566693699699572009e-07,1.617232206141493669e-07,1.667770712583415330e-07,1.718309219025336990e-07,1.768847725467258651e-07,1.819386231909180312e-07,1.869924738351101972e-07,1.920463244793023633e-07,1.971001751234945293e-07,2.021540257676866954e-07,2.072078764118788615e-07,2.122617270560710275e-07,2.173155777002631936e-07,2.223694283444553597e-07,2.274232789886475257e-07,2.324771296328396918e-07,2.375309802770318578e-07,2.425848309212240239e-07,2.476386815654161900e-07,2.526925322096083560e-07,2.577463828538005221e-07,2.628002334979926881e-07,2.678540841421848542e-07,2.729079347863770203e-07,2.779617854305691863e-07,2.830156360747613524e-07,2.880694867189535185e-07,2.931233373631456845e-07,2.981771880073378506e-07,3.032310386515300166e-07,3.082848892957221827e-07,3.133387399399143488e-07,3.183925905841065148e-07 +0.000000000000000000e+00,6.949356181449949615e-09,1.389871236289989923e-08,2.084806854434985050e-08,2.779742472579980177e-08,3.474678090724975304e-08,4.169613708869970100e-08,4.864549327014964896e-08,5.559484945159959692e-08,6.254420563304953826e-08,6.949356181449947960e-08,7.644291799594942095e-08,8.339227417739936229e-08,9.034163035884930363e-08,9.729098654029924497e-08,1.042403427217491863e-07,1.111896989031991277e-07,1.181390550846490690e-07,1.250884112660990236e-07,1.320377674475489782e-07,1.389871236289989327e-07,1.459364798104488873e-07,1.528858359918988419e-07,1.598351921733487965e-07,1.667845483547987510e-07,1.737339045362487056e-07,1.806832607176986602e-07,1.876326168991486148e-07,1.945819730805985694e-07,2.015313292620485239e-07,2.084806854434984785e-07,2.154300416249484331e-07,2.223793978063983877e-07,2.293287539878483422e-07,2.362781101692982968e-07,2.432274663507482514e-07,2.501768225321982060e-07,2.571261787136481606e-07,2.640755348950981151e-07,2.710248910765480697e-07,2.779742472579980243e-07,2.849236034394479789e-07,2.918729596208979334e-07,2.988223158023478880e-07,3.057716719837978426e-07,3.127210281652477972e-07,3.196703843466977518e-07,3.266197405281477063e-07,3.335690967095976609e-07,3.405184528910476155e-07,3.474678090724975701e-07,3.544171652539475246e-07,3.613665214353974792e-07,3.683158776168474338e-07,3.752652337982973884e-07,3.822145899797473430e-07,3.891639461611972975e-07,3.961133023426472521e-07,4.030626585240972067e-07,4.100120147055471613e-07,4.169613708869971158e-07,4.239107270684470704e-07,4.308600832498970250e-07,4.378094394313469796e-07 +0.000000000000000000e+00,6.004423498750288615e-09,1.200884699750057723e-08,1.801327049625086585e-08,2.401769399500115446e-08,3.002211749375144308e-08,3.602654099250173169e-08,4.203096449125202031e-08,4.803538799000230892e-08,5.403981148875259754e-08,6.004423498750288615e-08,6.604865848625317477e-08,7.205308198500346338e-08,7.805750548375375200e-08,8.406192898250404061e-08,9.006635248125432923e-08,9.607077598000461784e-08,1.020751994787549065e-07,1.080796229775051951e-07,1.140840464762554837e-07,1.200884699750057723e-07,1.260928934737560609e-07,1.320973169725063495e-07,1.381017404712566381e-07,1.441061639700069268e-07,1.501105874687572154e-07,1.561150109675075040e-07,1.621194344662577926e-07,1.681238579650080812e-07,1.741282814637583698e-07,1.801327049625086585e-07,1.861371284612589471e-07,1.921415519600092357e-07,1.981459754587595243e-07,2.041503989575098129e-07,2.101548224562601015e-07,2.161592459550103901e-07,2.221636694537606788e-07,2.281680929525109674e-07,2.341725164512612560e-07,2.401769399500115446e-07,2.461813634487618332e-07,2.521857869475121218e-07,2.581902104462624104e-07,2.641946339450126991e-07,2.701990574437629877e-07,2.762034809425132763e-07,2.822079044412635649e-07,2.882123279400138535e-07,2.942167514387641421e-07,3.002211749375144308e-07,3.062255984362647194e-07,3.122300219350150080e-07,3.182344454337652966e-07,3.242388689325155852e-07,3.302432924312658738e-07,3.362477159300161624e-07,3.422521394287664511e-07,3.482565629275167397e-07,3.542609864262670283e-07,3.602654099250173169e-07,3.662698334237676055e-07,3.722742569225178941e-07,3.782786804212681827e-07 +0.000000000000000000e+00,5.715447614092030695e-09,1.143089522818406139e-08,1.714634284227609291e-08,2.286179045636812609e-08,2.857723807046015927e-08,3.429268568455219244e-08,4.000813329864422562e-08,4.572358091273625880e-08,5.143902852682829198e-08,5.715447614092032515e-08,6.286992375501236495e-08,6.858537136910439812e-08,7.430081898319643130e-08,8.001626659728846448e-08,8.573171421138049765e-08,9.144716182547253083e-08,9.716260943956456401e-08,1.028780570536565972e-07,1.085935046677486304e-07,1.143089522818406635e-07,1.200243998959326967e-07,1.257398475100247299e-07,1.314552951241167631e-07,1.371707427382087962e-07,1.428861903523008294e-07,1.486016379663928626e-07,1.543170855804848958e-07,1.600325331945769290e-07,1.657479808086689621e-07,1.714634284227609953e-07,1.771788760368530285e-07,1.828943236509450617e-07,1.886097712650370948e-07,1.943252188791291280e-07,2.000406664932211612e-07,2.057561141073131944e-07,2.114715617214052275e-07,2.171870093354972607e-07,2.229024569495892939e-07,2.286179045636813271e-07,2.343333521777733603e-07,2.400487997918653934e-07,2.457642474059574266e-07,2.514796950200494598e-07,2.571951426341414930e-07,2.629105902482335261e-07,2.686260378623255593e-07,2.743414854764175925e-07,2.800569330905096257e-07,2.857723807046016588e-07,2.914878283186936920e-07,2.972032759327857252e-07,3.029187235468777584e-07,3.086341711609697916e-07,3.143496187750618247e-07,3.200650663891538579e-07,3.257805140032458911e-07,3.314959616173379243e-07,3.372114092314299574e-07,3.429268568455219906e-07,3.486423044596140238e-07,3.543577520737060570e-07,3.600731996877980902e-07 +0.000000000000000000e+00,7.628752145150962621e-09,1.525750429030192524e-08,2.288625643545288786e-08,3.051500858060385048e-08,3.814376072575481310e-08,4.577251287090577572e-08,5.340126501605673835e-08,6.103001716120770097e-08,6.865876930635866359e-08,7.628752145150962621e-08,8.391627359666058883e-08,9.154502574181155145e-08,9.917377788696251407e-08,1.068025300321134767e-07,1.144312821772644393e-07,1.220600343224154019e-07,1.296887864675663513e-07,1.373175386127173007e-07,1.449462907578682501e-07,1.525750429030191995e-07,1.602037950481701489e-07,1.678325471933210982e-07,1.754612993384720476e-07,1.830900514836229970e-07,1.907188036287739464e-07,1.983475557739248958e-07,2.059763079190758452e-07,2.136050600642267946e-07,2.212338122093777439e-07,2.288625643545286933e-07,2.364913164996796427e-07,2.441200686448305921e-07,2.517488207899815415e-07,2.593775729351324909e-07,2.670063250802834403e-07,2.746350772254343897e-07,2.822638293705853390e-07,2.898925815157362884e-07,2.975213336608872378e-07,3.051500858060381872e-07,3.127788379511891366e-07,3.204075900963400860e-07,3.280363422414910354e-07,3.356650943866419847e-07,3.432938465317929341e-07,3.509225986769438835e-07,3.585513508220948329e-07,3.661801029672457823e-07,3.738088551123967317e-07,3.814376072575476811e-07,3.890663594026986304e-07,3.966951115478495798e-07,4.043238636930005292e-07,4.119526158381514786e-07,4.195813679833024280e-07,4.272101201284533774e-07,4.348388722736043268e-07,4.424676244187552761e-07,4.500963765639062255e-07,4.577251287090571749e-07,4.653538808542081243e-07,4.729826329993590737e-07,4.806113851445099701e-07 +0.000000000000000000e+00,6.004423498757472679e-09,1.200884699751494536e-08,1.801327049627241886e-08,2.401769399502989402e-08,3.002211749378736918e-08,3.602654099254484434e-08,4.203096449130231950e-08,4.803538799005979466e-08,5.403981148881726982e-08,6.004423498757475160e-08,6.604865848633224000e-08,7.205308198508972839e-08,7.805750548384721679e-08,8.406192898260470518e-08,9.006635248136219358e-08,9.607077598011968197e-08,1.020751994788771704e-07,1.080796229776346588e-07,1.140840464763921472e-07,1.200884699751496356e-07,1.260928934739071239e-07,1.320973169726646123e-07,1.381017404714221007e-07,1.441061639701795891e-07,1.501105874689370775e-07,1.561150109676945659e-07,1.621194344664520543e-07,1.681238579652095427e-07,1.741282814639670311e-07,1.801327049627245195e-07,1.861371284614820079e-07,1.921415519602394963e-07,1.981459754589969847e-07,2.041503989577544731e-07,2.101548224565119615e-07,2.161592459552694499e-07,2.221636694540269383e-07,2.281680929527844267e-07,2.341725164515419151e-07,2.401769399502994299e-07,2.461813634490569713e-07,2.521857869478145126e-07,2.581902104465720539e-07,2.641946339453295953e-07,2.701990574440871366e-07,2.762034809428446779e-07,2.822079044416022193e-07,2.882123279403597606e-07,2.942167514391173019e-07,3.002211749378748433e-07,3.062255984366323846e-07,3.122300219353899259e-07,3.182344454341474673e-07,3.242388689329050086e-07,3.302432924316625499e-07,3.362477159304200913e-07,3.422521394291776326e-07,3.482565629279351739e-07,3.542609864266927153e-07,3.602654099254502566e-07,3.662698334242077979e-07,3.722742569229653393e-07,3.782786804217228806e-07 +0.000000000000000000e+00,5.715447614099901319e-09,1.143089522819980264e-08,1.714634284229970396e-08,2.286179045639960528e-08,2.857723807049950659e-08,3.429268568459940791e-08,4.000813329869930923e-08,4.572358091279921055e-08,5.143902852689911187e-08,5.715447614099901319e-08,6.286992375509892113e-08,6.858537136919882906e-08,7.430081898329873700e-08,8.001626659739864494e-08,8.573171421149855287e-08,9.144716182559846081e-08,9.716260943969836874e-08,1.028780570537982767e-07,1.085935046678981846e-07,1.143089522819980926e-07,1.200243998960980005e-07,1.257398475101978952e-07,1.314552951242977899e-07,1.371707427383976846e-07,1.428861903524975793e-07,1.486016379665974740e-07,1.543170855806973687e-07,1.600325331947972634e-07,1.657479808088971581e-07,1.714634284229970528e-07,1.771788760370969475e-07,1.828943236511968422e-07,1.886097712652967369e-07,1.943252188793966316e-07,2.000406664934965263e-07,2.057561141075964210e-07,2.114715617216963157e-07,2.171870093357962104e-07,2.229024569498961051e-07,2.286179045639959998e-07,2.343333521780958945e-07,2.400487997921957892e-07,2.457642474062957104e-07,2.514796950203956316e-07,2.571951426344955527e-07,2.629105902485954739e-07,2.686260378626953951e-07,2.743414854767953163e-07,2.800569330908952374e-07,2.857723807049951586e-07,2.914878283190950798e-07,2.972032759331950009e-07,3.029187235472949221e-07,3.086341711613948433e-07,3.143496187754947644e-07,3.200650663895946856e-07,3.257805140036946068e-07,3.314959616177945280e-07,3.372114092318944491e-07,3.429268568459943703e-07,3.486423044600942915e-07,3.543577520741942126e-07,3.600731996882941338e-07 +0.000000000000000000e+00,7.628752145158203760e-09,1.525750429031640752e-08,2.288625643547461293e-08,3.051500858063282166e-08,3.814376072579103038e-08,4.577251287094923910e-08,5.340126501610744783e-08,6.103001716126565655e-08,6.865876930642387189e-08,7.628752145158208723e-08,8.391627359674030257e-08,9.154502574189851791e-08,9.917377788705673325e-08,1.068025300322149486e-07,1.144312821773731639e-07,1.220600343225313925e-07,1.296887864676896211e-07,1.373175386128478497e-07,1.449462907580060782e-07,1.525750429031643068e-07,1.602037950483225354e-07,1.678325471934807640e-07,1.754612993386389925e-07,1.830900514837972211e-07,1.907188036289554497e-07,1.983475557741136783e-07,2.059763079192719068e-07,2.136050600644301354e-07,2.212338122095883640e-07,2.288625643547465926e-07,2.364913164999048211e-07,2.441200686450630497e-07,2.517488207902213048e-07,2.593775729353795598e-07,2.670063250805378148e-07,2.746350772256960699e-07,2.822638293708543249e-07,2.898925815160125800e-07,2.975213336611708350e-07,3.051500858063290901e-07,3.127788379514873451e-07,3.204075900966456002e-07,3.280363422418038552e-07,3.356650943869621103e-07,3.432938465321203653e-07,3.509225986772786203e-07,3.585513508224368754e-07,3.661801029675951304e-07,3.738088551127533855e-07,3.814376072579116405e-07,3.890663594030698956e-07,3.966951115482281506e-07,4.043238636933864057e-07,4.119526158385446607e-07,4.195813679837029157e-07,4.272101201288611708e-07,4.348388722740194258e-07,4.424676244191776809e-07,4.500963765643359359e-07,4.577251287094941910e-07,4.653538808546524460e-07,4.729826329998107011e-07,4.806113851449689561e-07 +0.000000000000000000e+00,6.451833985999186110e-09,1.290366797199837222e-08,1.935550195799755999e-08,2.580733594399674775e-08,3.225916992999593552e-08,3.871100391599511997e-08,4.516283790199430443e-08,5.161467188799348888e-08,5.806650587399267334e-08,6.451833985999185780e-08,7.097017384599104225e-08,7.742200783199022671e-08,8.387384181798941116e-08,9.032567580398859562e-08,9.677750978998778008e-08,1.032293437759869645e-07,1.096811777619861490e-07,1.161330117479853334e-07,1.225848457339845179e-07,1.290366797199836891e-07,1.354885137059828603e-07,1.419403476919820316e-07,1.483921816779812028e-07,1.548440156639803740e-07,1.612958496499795452e-07,1.677476836359787164e-07,1.741995176219778877e-07,1.806513516079770589e-07,1.871031855939762301e-07,1.935550195799754013e-07,2.000068535659745726e-07,2.064586875519737438e-07,2.129105215379729150e-07,2.193623555239720862e-07,2.258141895099712574e-07,2.322660234959704287e-07,2.387178574819695999e-07,2.451696914679687711e-07,2.516215254539679423e-07,2.580733594399671135e-07,2.645251934259662848e-07,2.709770274119654560e-07,2.774288613979646272e-07,2.838806953839637984e-07,2.903325293699629696e-07,2.967843633559621409e-07,3.032361973419613121e-07,3.096880313279604833e-07,3.161398653139596545e-07,3.225916992999588258e-07,3.290435332859579970e-07,3.354953672719571682e-07,3.419472012579563394e-07,3.483990352439555106e-07,3.548508692299546819e-07,3.613027032159538531e-07,3.677545372019530243e-07,3.742063711879521955e-07,3.806582051739513667e-07,3.871100391599505380e-07,3.935618731459497092e-07,4.000137071319488804e-07,4.064655411179480516e-07 +0.000000000000000000e+00,6.251931039122374625e-09,1.250386207824474925e-08,1.875579311736712470e-08,2.500772415648950181e-08,3.125965519561187892e-08,3.751158623473425602e-08,4.376351727385663313e-08,5.001544831297901024e-08,5.626737935210138734e-08,6.251931039122375783e-08,6.877124143034612832e-08,7.502317246946849881e-08,8.127510350859086930e-08,8.752703454771323979e-08,9.377896558683561028e-08,1.000308966259579808e-07,1.062828276650803513e-07,1.125347587042027217e-07,1.187866897433250922e-07,1.250386207824474627e-07,1.312905518215698332e-07,1.375424828606922037e-07,1.437944138998145742e-07,1.500463449389369447e-07,1.562982759780593152e-07,1.625502070171816857e-07,1.688021380563040562e-07,1.750540690954264266e-07,1.813060001345487971e-07,1.875579311736711676e-07,1.938098622127935381e-07,2.000617932519159086e-07,2.063137242910382791e-07,2.125656553301606496e-07,2.188175863692830201e-07,2.250695174084053906e-07,2.313214484475277610e-07,2.375733794866501315e-07,2.438253105257725285e-07,2.500772415648949255e-07,2.563291726040173224e-07,2.625811036431397194e-07,2.688330346822621163e-07,2.750849657213845133e-07,2.813368967605069103e-07,2.875888277996293072e-07,2.938407588387517042e-07,3.000926898778741011e-07,3.063446209169964981e-07,3.125965519561188950e-07,3.188484829952412920e-07,3.251004140343636890e-07,3.313523450734860859e-07,3.376042761126084829e-07,3.438562071517308798e-07,3.501081381908532768e-07,3.563600692299756738e-07,3.626120002690980707e-07,3.688639313082204677e-07,3.751158623473428646e-07,3.813677933864652616e-07,3.876197244255876586e-07,3.938716554647100555e-07 +0.000000000000000000e+00,8.131784723371545319e-09,1.626356944674309064e-08,2.439535417011463761e-08,3.252713889348618790e-08,4.065892361685773818e-08,4.879070834022928846e-08,5.692249306360083874e-08,6.505427778697238903e-08,7.318606251034393269e-08,8.131784723371547636e-08,8.944963195708702002e-08,9.758141668045856369e-08,1.057132014038301074e-07,1.138449861272016510e-07,1.219767708505731947e-07,1.301085555739447516e-07,1.382403402973163085e-07,1.463721250206878654e-07,1.545039097440594223e-07,1.626356944674309792e-07,1.707674791908025361e-07,1.788992639141740930e-07,1.870310486375456499e-07,1.951628333609172068e-07,2.032946180842887637e-07,2.114264028076603206e-07,2.195581875310318775e-07,2.276899722544034344e-07,2.358217569777749913e-07,2.439535417011465482e-07,2.520853264245181051e-07,2.602171111478896620e-07,2.683488958712612189e-07,2.764806805946327758e-07,2.846124653180043327e-07,2.927442500413758896e-07,3.008760347647474465e-07,3.090078194881190034e-07,3.171396042114905603e-07,3.252713889348621172e-07,3.334031736582336741e-07,3.415349583816052310e-07,3.496667431049767879e-07,3.577985278283483448e-07,3.659303125517199017e-07,3.740620972750914586e-07,3.821938819984630155e-07,3.903256667218345724e-07,3.984574514452061293e-07,4.065892361685776862e-07,4.147210208919492431e-07,4.228528056153208000e-07,4.309845903386923569e-07,4.391163750620639138e-07,4.472481597854354707e-07,4.553799445088070276e-07,4.635117292321785845e-07,4.716435139555501414e-07,4.797752986789216983e-07,4.879070834022932022e-07,4.960388681256647062e-07,5.041706528490362102e-07,5.123024375724077141e-07 +0.000000000000000000e+00,6.451833986005253480e-09,1.290366797201050696e-08,1.935550195801576127e-08,2.580733594402101723e-08,3.225916993002626988e-08,3.871100391603152254e-08,4.516283790203677519e-08,5.161467188804202784e-08,5.806650587404728049e-08,6.451833986005253976e-08,7.097017384605779904e-08,7.742200783206305831e-08,8.387384181806831758e-08,9.032567580407357685e-08,9.677750979007883612e-08,1.032293437760840954e-07,1.096811777620893547e-07,1.161330117480946139e-07,1.225848457340998732e-07,1.290366797201051325e-07,1.354885137061103917e-07,1.419403476921156510e-07,1.483921816781209103e-07,1.548440156641261696e-07,1.612958496501314288e-07,1.677476836361366881e-07,1.741995176221419474e-07,1.806513516081472066e-07,1.871031855941524659e-07,1.935550195801577252e-07,2.000068535661629844e-07,2.064586875521682437e-07,2.129105215381735030e-07,2.193623555241787623e-07,2.258141895101840215e-07,2.322660234961892808e-07,2.387178574821945401e-07,2.451696914681997993e-07,2.516215254542050586e-07,2.580733594402103179e-07,2.645251934262155771e-07,2.709770274122208364e-07,2.774288613982260957e-07,2.838806953842313550e-07,2.903325293702366142e-07,2.967843633562418735e-07,3.032361973422471328e-07,3.096880313282523920e-07,3.161398653142576513e-07,3.225916993002629106e-07,3.290435332862681699e-07,3.354953672722734291e-07,3.419472012582786884e-07,3.483990352442839477e-07,3.548508692302892069e-07,3.613027032162944662e-07,3.677545372022997255e-07,3.742063711883049847e-07,3.806582051743102440e-07,3.871100391603155033e-07,3.935618731463207626e-07,4.000137071323260218e-07,4.064655411183312811e-07 +0.000000000000000000e+00,6.251931039128981317e-09,1.250386207825796263e-08,1.875579311738694395e-08,2.500772415651592527e-08,3.125965519564490658e-08,3.751158623477388790e-08,4.376351727390286922e-08,5.001544831303185053e-08,5.626737935216083185e-08,6.251931039128981317e-08,6.877124143041878787e-08,7.502317246954776257e-08,8.127510350867673727e-08,8.752703454780571197e-08,9.377896558693468667e-08,1.000308966260636614e-07,1.062828276651926361e-07,1.125347587043216108e-07,1.187866897434505855e-07,1.250386207825795469e-07,1.312905518217085084e-07,1.375424828608374699e-07,1.437944138999664313e-07,1.500463449390953928e-07,1.562982759782243543e-07,1.625502070173533157e-07,1.688021380564822772e-07,1.750540690956112386e-07,1.813060001347402001e-07,1.875579311738691616e-07,1.938098622129981230e-07,2.000617932521270845e-07,2.063137242912560460e-07,2.125656553303850074e-07,2.188175863695139689e-07,2.250695174086429304e-07,2.313214484477718918e-07,2.375733794869008533e-07,2.438253105260298148e-07,2.500772415651587762e-07,2.563291726042877377e-07,2.625811036434166991e-07,2.688330346825456606e-07,2.750849657216746221e-07,2.813368967608035835e-07,2.875888277999325450e-07,2.938407588390615065e-07,3.000926898781904679e-07,3.063446209173194294e-07,3.125965519564483909e-07,3.188484829955773523e-07,3.251004140347063138e-07,3.313523450738352753e-07,3.376042761129642367e-07,3.438562071520931982e-07,3.501081381912221596e-07,3.563600692303511211e-07,3.626120002694800826e-07,3.688639313086090440e-07,3.751158623477380055e-07,3.813677933868669670e-07,3.876197244259959284e-07,3.938716554651248899e-07 +0.000000000000000000e+00,8.131784723377573812e-09,1.626356944675514762e-08,2.439535417013272309e-08,3.252713889351030186e-08,4.065892361688788064e-08,4.879070834026545941e-08,5.692249306364303819e-08,6.505427778702061696e-08,7.318606251039819574e-08,8.131784723377577451e-08,8.944963195715335329e-08,9.758141668053093206e-08,1.057132014039085108e-07,1.138449861272860896e-07,1.219767708506636684e-07,1.301085555740412604e-07,1.382403402974188524e-07,1.463721250207964444e-07,1.545039097441740364e-07,1.626356944675516284e-07,1.707674791909292204e-07,1.788992639143068125e-07,1.870310486376844045e-07,1.951628333610619965e-07,2.032946180844395885e-07,2.114264028078171805e-07,2.195581875311947725e-07,2.276899722545723645e-07,2.358217569779499565e-07,2.439535417013275485e-07,2.520853264247051405e-07,2.602171111480827326e-07,2.683488958714603246e-07,2.764806805948379166e-07,2.846124653182155086e-07,2.927442500415931006e-07,3.008760347649706926e-07,3.090078194883482846e-07,3.171396042117258766e-07,3.252713889351034686e-07,3.334031736584810606e-07,3.415349583818586526e-07,3.496667431052362447e-07,3.577985278286138367e-07,3.659303125519914287e-07,3.740620972753690207e-07,3.821938819987466127e-07,3.903256667221242047e-07,3.984574514455017967e-07,4.065892361688793887e-07,4.147210208922569807e-07,4.228528056156345727e-07,4.309845903390121648e-07,4.391163750623897568e-07,4.472481597857673488e-07,4.553799445091449408e-07,4.635117292325225328e-07,4.716435139559001248e-07,4.797752986792776639e-07,4.879070834026552029e-07,4.960388681260327420e-07,5.041706528494102811e-07,5.123024375727878202e-07 +0.000000000000000000e+00,6.715394397243681238e-09,1.343078879448736248e-08,2.014618319173104537e-08,2.686157758897472826e-08,3.357697198621841116e-08,4.029236638346209074e-08,4.700776078070577032e-08,5.372315517794944991e-08,6.043854957519313611e-08,6.715394397243682231e-08,7.386933836968050851e-08,8.058473276692419471e-08,8.730012716416788092e-08,9.401552156141156712e-08,1.007309159586552533e-07,1.074463103558989395e-07,1.141617047531426257e-07,1.208770991503863252e-07,1.275924935476300246e-07,1.343078879448737240e-07,1.410232823421174235e-07,1.477386767393611229e-07,1.544540711366048223e-07,1.611694655338485218e-07,1.678848599310922212e-07,1.746002543283359206e-07,1.813156487255796201e-07,1.880310431228233195e-07,1.947464375200670190e-07,2.014618319173107184e-07,2.081772263145544178e-07,2.148926207117981173e-07,2.216080151090418167e-07,2.283234095062855161e-07,2.350388039035292156e-07,2.417541983007729150e-07,2.484695926980166145e-07,2.551849870952603139e-07,2.619003814925040133e-07,2.686157758897477128e-07,2.753311702869914122e-07,2.820465646842351116e-07,2.887619590814788111e-07,2.954773534787225105e-07,3.021927478759662099e-07,3.089081422732099094e-07,3.156235366704536088e-07,3.223389310676973083e-07,3.290543254649410077e-07,3.357697198621847071e-07,3.424851142594284066e-07,3.492005086566721060e-07,3.559159030539158054e-07,3.626312974511595049e-07,3.693466918484032043e-07,3.760620862456469037e-07,3.827774806428906032e-07,3.894928750401343026e-07,3.962082694373780021e-07,4.029236638346217015e-07,4.096390582318654009e-07,4.163544526291091004e-07,4.230698470263527998e-07 +0.000000000000000000e+00,6.607181854600460204e-09,1.321436370920092041e-08,1.982154556380137978e-08,2.642872741840183751e-08,3.303590927300229854e-08,3.964309112760275957e-08,4.625027298220322060e-08,5.285745483680368163e-08,5.946463669140414266e-08,6.607181854600459707e-08,7.267900040060505149e-08,7.928618225520550590e-08,8.589336410980596031e-08,9.250054596440641473e-08,9.910772781900686914e-08,1.057149096736073236e-07,1.123220915282077780e-07,1.189292733828082324e-07,1.255364552374086736e-07,1.321436370920091147e-07,1.387508189466095559e-07,1.453580008012099971e-07,1.519651826558104383e-07,1.585723645104108795e-07,1.651795463650113206e-07,1.717867282196117618e-07,1.783939100742122030e-07,1.850010919288126442e-07,1.916082737834130853e-07,1.982154556380135265e-07,2.048226374926139677e-07,2.114298193472144089e-07,2.180370012018148501e-07,2.246441830564152912e-07,2.312513649110157324e-07,2.378585467656161736e-07,2.444657286202166148e-07,2.510729104748170295e-07,2.576800923294174442e-07,2.642872741840178589e-07,2.708944560386182736e-07,2.775016378932186883e-07,2.841088197478191030e-07,2.907160016024195177e-07,2.973231834570199324e-07,3.039303653116203472e-07,3.105375471662207619e-07,3.171447290208211766e-07,3.237519108754215913e-07,3.303590927300220060e-07,3.369662745846224207e-07,3.435734564392228354e-07,3.501806382938232501e-07,3.567878201484236648e-07,3.633950020030240795e-07,3.700021838576244942e-07,3.766093657122249090e-07,3.832165475668253237e-07,3.898237294214257384e-07,3.964309112760261531e-07,4.030380931306265678e-07,4.096452749852269825e-07,4.162524568398273972e-07 +0.000000000000000000e+00,8.466938569677968417e-09,1.693387713935593683e-08,2.540081570903390360e-08,3.386775427871186705e-08,4.233469284838983050e-08,5.080163141806779396e-08,5.926856998774575741e-08,6.773550855742372087e-08,7.620244712710167770e-08,8.466938569677963454e-08,9.313632426645759137e-08,1.016032628361355482e-07,1.100702014058135050e-07,1.185371399754914619e-07,1.270040785451694187e-07,1.354710171148473623e-07,1.439379556845253059e-07,1.524048942542032495e-07,1.608718328238811931e-07,1.693387713935591367e-07,1.778057099632370803e-07,1.862726485329150239e-07,1.947395871025929675e-07,2.032065256722709111e-07,2.116734642419488547e-07,2.201404028116267983e-07,2.286073413813047419e-07,2.370742799509826855e-07,2.455412185206606027e-07,2.540081570903385198e-07,2.624750956600164369e-07,2.709420342296943541e-07,2.794089727993722712e-07,2.878759113690501883e-07,2.963428499387281055e-07,3.048097885084060226e-07,3.132767270780839397e-07,3.217436656477618569e-07,3.302106042174397740e-07,3.386775427871176911e-07,3.471444813567956083e-07,3.556114199264735254e-07,3.640783584961514425e-07,3.725452970658293596e-07,3.810122356355072768e-07,3.894791742051851939e-07,3.979461127748631110e-07,4.064130513445410282e-07,4.148799899142189453e-07,4.233469284838968624e-07,4.318138670535747796e-07,4.402808056232526967e-07,4.487477441929306138e-07,4.572146827626085310e-07,4.656816213322864481e-07,4.741485599019643652e-07,4.826154984716422824e-07,4.910824370413201465e-07,4.995493756109980107e-07,5.080163141806758749e-07,5.164832527503537391e-07,5.249501913200316033e-07,5.334171298897094675e-07 +0.000000000000000000e+00,6.715394397248652594e-09,1.343078879449730519e-08,2.014618319174595778e-08,2.686157758899461038e-08,3.357697198624325966e-08,4.029236638349190895e-08,4.700776078074055823e-08,5.372315517798920752e-08,6.043854957523785680e-08,6.715394397248650609e-08,7.386933836973515537e-08,8.058473276698380466e-08,8.730012716423245394e-08,9.401552156148110323e-08,1.007309159587297525e-07,1.074463103559784018e-07,1.141617047532270511e-07,1.208770991504756871e-07,1.275924935477243099e-07,1.343078879449729328e-07,1.410232823422215556e-07,1.477386767394701784e-07,1.544540711367188012e-07,1.611694655339674240e-07,1.678848599312160468e-07,1.746002543284646697e-07,1.813156487257132925e-07,1.880310431229619153e-07,1.947464375202105381e-07,2.014618319174591609e-07,2.081772263147077837e-07,2.148926207119564066e-07,2.216080151092050294e-07,2.283234095064536522e-07,2.350388039037022750e-07,2.417541983009508978e-07,2.484695926981995206e-07,2.551849870954481434e-07,2.619003814926967663e-07,2.686157758899453891e-07,2.753311702871940119e-07,2.820465646844426347e-07,2.887619590816912575e-07,2.954773534789398803e-07,3.021927478761885032e-07,3.089081422734371260e-07,3.156235366706857488e-07,3.223389310679343716e-07,3.290543254651829944e-07,3.357697198624316172e-07,3.424851142596802400e-07,3.492005086569288629e-07,3.559159030541774857e-07,3.626312974514261085e-07,3.693466918486747313e-07,3.760620862459233541e-07,3.827774806431719769e-07,3.894928750404205998e-07,3.962082694376692226e-07,4.029236638349178454e-07,4.096390582321664682e-07,4.163544526294150910e-07,4.230698470266637138e-07 +0.000000000000000000e+00,6.607181854605946893e-09,1.321436370921189379e-08,1.982154556381784068e-08,2.642872741842378757e-08,3.303590927302973446e-08,3.964309112763568136e-08,4.625027298224162825e-08,5.285745483684757514e-08,5.946463669145352203e-08,6.607181854605946893e-08,7.267900040066541582e-08,7.928618225527136271e-08,8.589336410987730961e-08,9.250054596448325650e-08,9.910772781908920339e-08,1.057149096736951503e-07,1.123220915283010972e-07,1.189292733829070441e-07,1.255364552375129910e-07,1.321436370921189379e-07,1.387508189467248847e-07,1.453580008013308316e-07,1.519651826559367785e-07,1.585723645105427254e-07,1.651795463651486723e-07,1.717867282197546192e-07,1.783939100743605661e-07,1.850010919289665130e-07,1.916082737835724599e-07,1.982154556381784068e-07,2.048226374927843537e-07,2.114298193473903006e-07,2.180370012019962475e-07,2.246441830566021944e-07,2.312513649112081412e-07,2.378585467658140881e-07,2.444657286204200086e-07,2.510729104750259290e-07,2.576800923296318494e-07,2.642872741842377698e-07,2.708944560388436903e-07,2.775016378934496107e-07,2.841088197480555311e-07,2.907160016026614515e-07,2.973231834572673719e-07,3.039303653118732924e-07,3.105375471664792128e-07,3.171447290210851332e-07,3.237519108756910536e-07,3.303590927302969741e-07,3.369662745849028945e-07,3.435734564395088149e-07,3.501806382941147353e-07,3.567878201487206558e-07,3.633950020033265762e-07,3.700021838579324966e-07,3.766093657125384170e-07,3.832165475671443374e-07,3.898237294217502579e-07,3.964309112763561783e-07,4.030380931309620987e-07,4.096452749855680191e-07,4.162524568401739396e-07 +0.000000000000000000e+00,8.466938569682888487e-09,1.693387713936577697e-08,2.540081570904866712e-08,3.386775427873156057e-08,4.233469284841445402e-08,5.080163141809734747e-08,5.926856998778024092e-08,6.773550855746313437e-08,7.620244712714602782e-08,8.466938569682892127e-08,9.313632426651181472e-08,1.016032628361947082e-07,1.100702014058776016e-07,1.185371399755604951e-07,1.270040785452434018e-07,1.354710171149262952e-07,1.439379556846091887e-07,1.524048942542920821e-07,1.608718328239749756e-07,1.693387713936578690e-07,1.778057099633407625e-07,1.862726485330236559e-07,1.947395871027065494e-07,2.032065256723894428e-07,2.116734642420723363e-07,2.201404028117552297e-07,2.286073413814381232e-07,2.370742799511210166e-07,2.455412185208039101e-07,2.540081570904868035e-07,2.624750956601696970e-07,2.709420342298525904e-07,2.794089727995354839e-07,2.878759113692183773e-07,2.963428499389012708e-07,3.048097885085841642e-07,3.132767270782670577e-07,3.217436656479499511e-07,3.302106042176328446e-07,3.386775427873157380e-07,3.471444813569986315e-07,3.556114199266815249e-07,3.640783584963644184e-07,3.725452970660473118e-07,3.810122356357302053e-07,3.894791742054130987e-07,3.979461127750959922e-07,4.064130513447788856e-07,4.148799899144617791e-07,4.233469284841446725e-07,4.318138670538275660e-07,4.402808056235104594e-07,4.487477441931933529e-07,4.572146827628762463e-07,4.656816213325591398e-07,4.741485599022420332e-07,4.826154984719249796e-07,4.910824370416079260e-07,4.995493756112908724e-07,5.080163141809738188e-07,5.164832527506567652e-07,5.249501913203397116e-07,5.334171298900226579e-07 +0.000000000000000000e+00,6.803800468269801866e-09,1.360760093653960373e-08,2.041140140480940560e-08,2.721520187307920746e-08,3.401900234134901264e-08,4.082280280961881781e-08,4.762660327788862299e-08,5.443040374615842816e-08,6.123420421442823333e-08,6.803800468269803851e-08,7.484180515096784368e-08,8.164560561923764886e-08,8.844940608750745403e-08,9.525320655577725921e-08,1.020570070240470644e-07,1.088608074923168696e-07,1.156646079605866747e-07,1.224684084288564931e-07,1.292722088971263248e-07,1.360760093653961564e-07,1.428798098336659881e-07,1.496836103019358197e-07,1.564874107702056514e-07,1.632912112384754830e-07,1.700950117067453146e-07,1.768988121750151463e-07,1.837026126432849779e-07,1.905064131115548096e-07,1.973102135798246412e-07,2.041140140480944729e-07,2.109178145163643045e-07,2.177216149846341362e-07,2.245254154529039678e-07,2.313292159211737994e-07,2.381330163894436311e-07,2.449368168577134627e-07,2.517406173259832944e-07,2.585444177942531260e-07,2.653482182625229577e-07,2.721520187307927893e-07,2.789558191990626210e-07,2.857596196673324526e-07,2.925634201356022842e-07,2.993672206038721159e-07,3.061710210721419475e-07,3.129748215404117792e-07,3.197786220086816108e-07,3.265824224769514425e-07,3.333862229452212741e-07,3.401900234134911057e-07,3.469938238817609374e-07,3.537976243500307690e-07,3.606014248183006007e-07,3.674052252865704323e-07,3.742090257548402640e-07,3.810128262231100956e-07,3.878166266913799273e-07,3.946204271596497589e-07,4.014242276279195905e-07,4.082280280961894222e-07,4.150318285644592538e-07,4.218356290327290855e-07,4.286394295009989171e-07 +0.000000000000000000e+00,6.782639143391807319e-09,1.356527828678361464e-08,2.034791743017542113e-08,2.713055657356722597e-08,3.391319571695903411e-08,4.069583486035084226e-08,4.747847400374265041e-08,5.426111314713445855e-08,6.104375229052626670e-08,6.782639143391806823e-08,7.460903057730986976e-08,8.139166972070167128e-08,8.817430886409347281e-08,9.495694800748527434e-08,1.017395871508770759e-07,1.085222262942688774e-07,1.153048654376606789e-07,1.220875045810524805e-07,1.288701437244442820e-07,1.356527828678360835e-07,1.424354220112278850e-07,1.492180611546196866e-07,1.560007002980114881e-07,1.627833394414032896e-07,1.695659785847950912e-07,1.763486177281868927e-07,1.831312568715786942e-07,1.899138960149704957e-07,1.966965351583622973e-07,2.034791743017540988e-07,2.102618134451459003e-07,2.170444525885377019e-07,2.238270917319295034e-07,2.306097308753213049e-07,2.373923700187131064e-07,2.441750091621049080e-07,2.509576483054967360e-07,2.577402874488885640e-07,2.645229265922803920e-07,2.713055657356722200e-07,2.780882048790640480e-07,2.848708440224558760e-07,2.916534831658477040e-07,2.984361223092395320e-07,3.052187614526313600e-07,3.120014005960231880e-07,3.187840397394150160e-07,3.255666788828068440e-07,3.323493180261986720e-07,3.391319571695905000e-07,3.459145963129823279e-07,3.526972354563741559e-07,3.594798745997659839e-07,3.662625137431578119e-07,3.730451528865496399e-07,3.798277920299414679e-07,3.866104311733332959e-07,3.933930703167251239e-07,4.001757094601169519e-07,4.069583486035087799e-07,4.137409877469006079e-07,4.205236268902924359e-07,4.273062660336842639e-07 +0.000000000000000000e+00,8.673111800867075742e-09,1.734622360173415148e-08,2.601933540260122557e-08,3.469244720346829635e-08,4.336555900433536713e-08,5.203867080520243791e-08,6.071178260606951531e-08,6.938489440693659270e-08,7.805800620780367010e-08,8.673111800867074750e-08,9.540422980953782489e-08,1.040773416104049023e-07,1.127504534112719797e-07,1.214235652121390571e-07,1.300966770130061345e-07,1.387697888138732119e-07,1.474429006147402893e-07,1.561160124156073667e-07,1.647891242164744441e-07,1.734622360173415215e-07,1.821353478182085989e-07,1.908084596190756763e-07,1.994815714199427536e-07,2.081546832208098310e-07,2.168277950216769084e-07,2.255009068225439858e-07,2.341740186234110632e-07,2.428471304242781671e-07,2.515202422251452710e-07,2.601933540260123748e-07,2.688664658268794787e-07,2.775395776277465826e-07,2.862126894286136864e-07,2.948858012294807903e-07,3.035589130303478942e-07,3.122320248312149980e-07,3.209051366320821019e-07,3.295782484329492058e-07,3.382513602338163096e-07,3.469244720346834135e-07,3.555975838355505174e-07,3.642706956364176212e-07,3.729438074372847251e-07,3.816169192381518290e-07,3.902900310390189328e-07,3.989631428398860367e-07,4.076362546407531406e-07,4.163093664416202444e-07,4.249824782424873483e-07,4.336555900433544522e-07,4.423287018442215560e-07,4.510018136450886599e-07,4.596749254459557638e-07,4.683480372468228676e-07,4.770211490476899715e-07,4.856942608485570754e-07,4.943673726494241792e-07,5.030404844502912831e-07,5.117135962511583870e-07,5.203867080520254908e-07,5.290598198528925947e-07,5.377329316537596986e-07,5.464060434546268024e-07 +0.000000000000000000e+00,6.803800468273679688e-09,1.360760093654735938e-08,2.041140140482103906e-08,2.721520187309471875e-08,3.401900234136840175e-08,4.082280280964208475e-08,4.762660327791576774e-08,5.443040374618945074e-08,6.123420421446313374e-08,6.803800468273681674e-08,7.484180515101049973e-08,8.164560561928418273e-08,8.844940608755786573e-08,9.525320655583154872e-08,1.020570070241052317e-07,1.088608074923789147e-07,1.156646079606525977e-07,1.224684084289262675e-07,1.292722088971999372e-07,1.360760093654736070e-07,1.428798098337472768e-07,1.496836103020209465e-07,1.564874107702946163e-07,1.632912112385682860e-07,1.700950117068419558e-07,1.768988121751156256e-07,1.837026126433892953e-07,1.905064131116629651e-07,1.973102135799366349e-07,2.041140140482103046e-07,2.109178145164839744e-07,2.177216149847576441e-07,2.245254154530313139e-07,2.313292159213049837e-07,2.381330163895786534e-07,2.449368168578523232e-07,2.517406173261260194e-07,2.585444177943997157e-07,2.653482182626734119e-07,2.721520187309471081e-07,2.789558191992208044e-07,2.857596196674945006e-07,2.925634201357681968e-07,2.993672206040418931e-07,3.061710210723155893e-07,3.129748215405892855e-07,3.197786220088629817e-07,3.265824224771366780e-07,3.333862229454103742e-07,3.401900234136840704e-07,3.469938238819577667e-07,3.537976243502314629e-07,3.606014248185051591e-07,3.674052252867788554e-07,3.742090257550525516e-07,3.810128262233262478e-07,3.878166266915999441e-07,3.946204271598736403e-07,4.014242276281473365e-07,4.082280280964210328e-07,4.150318285646947290e-07,4.218356290329684252e-07,4.286394295012421215e-07 +0.000000000000000000e+00,6.782639143396242661e-09,1.356527828679248532e-08,2.034791743018872881e-08,2.713055657358497395e-08,3.391319571698121579e-08,4.069583486037745762e-08,4.747847400377369946e-08,5.426111314716994129e-08,6.104375229056618313e-08,6.782639143396243158e-08,7.460903057735868003e-08,8.139166972075492848e-08,8.817430886415117693e-08,9.495694800754742538e-08,1.017395871509436738e-07,1.085222262943399223e-07,1.153048654377361707e-07,1.220875045811324192e-07,1.288701437245286676e-07,1.356527828679249161e-07,1.424354220113211645e-07,1.492180611547174130e-07,1.560007002981136614e-07,1.627833394415099099e-07,1.695659785849061584e-07,1.763486177283024068e-07,1.831312568716986553e-07,1.899138960150949037e-07,1.966965351584911522e-07,2.034791743018874006e-07,2.102618134452836491e-07,2.170444525886798975e-07,2.238270917320761460e-07,2.306097308754723944e-07,2.373923700188686429e-07,2.441750091622648913e-07,2.509576483056611662e-07,2.577402874490574412e-07,2.645229265924537161e-07,2.713055657358499910e-07,2.780882048792462659e-07,2.848708440226425408e-07,2.916534831660388158e-07,2.984361223094350907e-07,3.052187614528313656e-07,3.120014005962276405e-07,3.187840397396239155e-07,3.255666788830201904e-07,3.323493180264164653e-07,3.391319571698127402e-07,3.459145963132090151e-07,3.526972354566052901e-07,3.594798746000015650e-07,3.662625137433978399e-07,3.730451528867941148e-07,3.798277920301903897e-07,3.866104311735866647e-07,3.933930703169829396e-07,4.001757094603792145e-07,4.069583486037754894e-07,4.137409877471717644e-07,4.205236268905680393e-07,4.273062660339643142e-07 +0.000000000000000000e+00,8.673111800870814599e-09,1.734622360174162920e-08,2.601933540261244214e-08,3.469244720348325178e-08,4.336555900435406141e-08,5.203867080522487105e-08,6.071178260609568068e-08,6.938489440696649032e-08,7.805800620783729995e-08,8.673111800870810959e-08,9.540422980957891922e-08,1.040773416104497289e-07,1.127504534113205385e-07,1.214235652121913349e-07,1.300966770130621445e-07,1.387697888139329542e-07,1.474429006148037638e-07,1.561160124156745734e-07,1.647891242165453831e-07,1.734622360174161927e-07,1.821353478182870023e-07,1.908084596191578120e-07,1.994815714200286216e-07,2.081546832208994313e-07,2.168277950217702409e-07,2.255009068226410505e-07,2.341740186235118602e-07,2.428471304243826698e-07,2.515202422252534794e-07,2.601933540261242891e-07,2.688664658269950987e-07,2.775395776278659083e-07,2.862126894287367180e-07,2.948858012296075276e-07,3.035589130304783372e-07,3.122320248313491469e-07,3.209051366322199565e-07,3.295782484330907661e-07,3.382513602339615758e-07,3.469244720348323854e-07,3.555975838357031951e-07,3.642706956365740047e-07,3.729438074374448143e-07,3.816169192383156240e-07,3.902900310391864336e-07,3.989631428400572432e-07,4.076362546409280529e-07,4.163093664417988625e-07,4.249824782426696721e-07,4.336555900435404818e-07,4.423287018444112914e-07,4.510018136452821010e-07,4.596749254461529107e-07,4.683480372470237203e-07,4.770211490478945299e-07,4.856942608487653396e-07,4.943673726496361492e-07,5.030404844505069589e-07,5.117135962513777685e-07,5.203867080522485781e-07,5.290598198531193878e-07,5.377329316539901974e-07,5.464060434548610070e-07 +0.000000000000000000e+00,6.784380187525248813e-09,1.356876037505049763e-08,2.035314056257574727e-08,2.713752075010099856e-08,3.392190093762624986e-08,4.070628112515150115e-08,4.749066131267675244e-08,5.427504150020200374e-08,6.105942168772726165e-08,6.784380187525251295e-08,7.462818206277776424e-08,8.141256225030301553e-08,8.819694243782826683e-08,9.498132262535351812e-08,1.017657028128787694e-07,1.085500830004040207e-07,1.153344631879292720e-07,1.221188433754545233e-07,1.289032235629797746e-07,1.356876037505050259e-07,1.424719839380302772e-07,1.492563641255555285e-07,1.560407443130807798e-07,1.628251245006060311e-07,1.696095046881312824e-07,1.763938848756565337e-07,1.831782650631817850e-07,1.899626452507070362e-07,1.967470254382322875e-07,2.035314056257575388e-07,2.103157858132827901e-07,2.171001660008080414e-07,2.238845461883332927e-07,2.306689263758585440e-07,2.374533065633837953e-07,2.442376867509090466e-07,2.510220669384342714e-07,2.578064471259594963e-07,2.645908273134847211e-07,2.713752075010099459e-07,2.781595876885351707e-07,2.849439678760603956e-07,2.917283480635856204e-07,2.985127282511108452e-07,3.052971084386360700e-07,3.120814886261612949e-07,3.188658688136865197e-07,3.256502490012117445e-07,3.324346291887369693e-07,3.392190093762621942e-07,3.460033895637874190e-07,3.527877697513126438e-07,3.595721499388378686e-07,3.663565301263630934e-07,3.731409103138883183e-07,3.799252905014135431e-07,3.867096706889387679e-07,3.934940508764639927e-07,4.002784310639892176e-07,4.070628112515144424e-07,4.138471914390396672e-07,4.206315716265648920e-07,4.274159518140901169e-07 +0.000000000000000000e+00,6.784380187528553400e-09,1.356876037505710680e-08,2.035314056258566020e-08,2.713752075011421360e-08,3.392190093764276700e-08,4.070628112517132040e-08,4.749066131269987380e-08,5.427504150022842720e-08,6.105942168775698721e-08,6.784380187528554723e-08,7.462818206281410725e-08,8.141256225034266726e-08,8.819694243787122728e-08,9.498132262539978730e-08,1.017657028129283473e-07,1.085500830004569073e-07,1.153344631879854673e-07,1.221188433755140274e-07,1.289032235630425874e-07,1.356876037505711474e-07,1.424719839380997074e-07,1.492563641256282674e-07,1.560407443131568275e-07,1.628251245006853875e-07,1.696095046882139475e-07,1.763938848757425075e-07,1.831782650632710675e-07,1.899626452507996275e-07,1.967470254383281876e-07,2.035314056258567476e-07,2.103157858133853076e-07,2.171001660009138676e-07,2.238845461884424276e-07,2.306689263759709876e-07,2.374533065634995477e-07,2.442376867510281077e-07,2.510220669385566677e-07,2.578064471260852277e-07,2.645908273136137877e-07,2.713752075011423477e-07,2.781595876886709078e-07,2.849439678761994678e-07,2.917283480637280278e-07,2.985127282512565878e-07,3.052971084387851478e-07,3.120814886263137078e-07,3.188658688138422679e-07,3.256502490013708279e-07,3.324346291888993879e-07,3.392190093764279479e-07,3.460033895639565079e-07,3.527877697514850679e-07,3.595721499390136280e-07,3.663565301265421880e-07,3.731409103140707480e-07,3.799252905015993080e-07,3.867096706891278680e-07,3.934940508766564280e-07,4.002784310641849881e-07,4.070628112517135481e-07,4.138471914392421081e-07,4.206315716267706681e-07,4.274159518142992281e-07 +0.000000000000000000e+00,2.414484179832485306e-09,4.828968359664970612e-09,7.243452539497455918e-09,9.657936719329941223e-09,1.207242089916242736e-08,1.448690507899491349e-08,1.690138925882739962e-08,1.931587343865988576e-08,2.173035761849237189e-08,2.414484179832485802e-08,2.655932597815734415e-08,2.897381015798983029e-08,3.138829433782231973e-08,3.380277851765480586e-08,3.621726269748729200e-08,3.863174687731977813e-08,4.104623105715226426e-08,4.346071523698475039e-08,4.587519941681723653e-08,4.828968359664972266e-08,5.070416777648220879e-08,5.311865195631469493e-08,5.553313613614718106e-08,5.794762031597966719e-08,6.036210449581215333e-08,6.277658867564463946e-08,6.519107285547712559e-08,6.760555703530961173e-08,7.002004121514209786e-08,7.243452539497458399e-08,7.484900957480707012e-08,7.726349375463955626e-08,7.967797793447204239e-08,8.209246211430452852e-08,8.450694629413701466e-08,8.692143047396950079e-08,8.933591465380198692e-08,9.175039883363447306e-08,9.416488301346695919e-08,9.657936719329944532e-08,9.899385137313193146e-08,1.014083355529644176e-07,1.038228197327969037e-07,1.062373039126293899e-07,1.086517880924618760e-07,1.110662722722943621e-07,1.134807564521268483e-07,1.158952406319593344e-07,1.183097248117918205e-07,1.207242089916243067e-07,1.231386931714567796e-07,1.255531773512892524e-07,1.279676615311217253e-07,1.303821457109541982e-07,1.327966298907866711e-07,1.352111140706191440e-07,1.376255982504516169e-07,1.400400824302840898e-07,1.424545666101165627e-07,1.448690507899490356e-07,1.472835349697815085e-07,1.496980191496139814e-07,1.521125033294464543e-07 +0.000000000000000000e+00,5.756729679317724116e-09,1.151345935863544823e-08,1.727018903795317318e-08,2.302691871727089977e-08,2.878364839658862637e-08,3.454037807590635297e-08,4.029710775522407626e-08,4.605383743454179955e-08,5.181056711385952283e-08,5.756729679317724612e-08,6.332402647249496941e-08,6.908075615181269270e-08,7.483748583113041599e-08,8.059421551044813928e-08,8.635094518976586257e-08,9.210767486908358586e-08,9.786440454840130915e-08,1.036211342277190324e-07,1.093778639070367557e-07,1.151345935863544790e-07,1.208913232656722023e-07,1.266480529449899388e-07,1.324047826243076753e-07,1.381615123036254119e-07,1.439182419829431484e-07,1.496749716622608849e-07,1.554317013415786214e-07,1.611884310208963580e-07,1.669451607002140945e-07,1.727018903795318310e-07,1.784586200588495675e-07,1.842153497381673041e-07,1.899720794174850406e-07,1.957288090968027771e-07,2.014855387761205136e-07,2.072422684554382502e-07,2.129989981347559867e-07,2.187557278140737232e-07,2.245124574933914597e-07,2.302691871727091963e-07,2.360259168520269328e-07,2.417826465313446693e-07,2.475393762106624058e-07,2.532961058899801423e-07,2.590528355692978789e-07,2.648095652486156154e-07,2.705662949279333519e-07,2.763230246072510884e-07,2.820797542865688250e-07,2.878364839658865615e-07,2.935932136452042980e-07,2.993499433245220345e-07,3.051066730038397711e-07,3.108634026831575076e-07,3.166201323624752441e-07,3.223768620417929806e-07,3.281335917211107172e-07,3.338903214004284537e-07,3.396470510797461902e-07,3.454037807590639267e-07,3.511605104383816633e-07,3.569172401176993998e-07,3.626739697970171363e-07 +0.000000000000000000e+00,5.935467635279957923e-09,1.187093527055991585e-08,1.780640290583987377e-08,2.374187054111983169e-08,2.967733817639978961e-08,3.561280581167974754e-08,4.154827344695970546e-08,4.748374108223966338e-08,5.341920871751962130e-08,5.935467635279957923e-08,6.529014398807953715e-08,7.122561162335949507e-08,7.716107925863945299e-08,8.309654689391941092e-08,8.903201452919936884e-08,9.496748216447932676e-08,1.009029497997592847e-07,1.068384174350392426e-07,1.127738850703192005e-07,1.187093527055991585e-07,1.246448203408791164e-07,1.305802879761590743e-07,1.365157556114390322e-07,1.424512232467189901e-07,1.483866908819989481e-07,1.543221585172789060e-07,1.602576261525588639e-07,1.661930937878388218e-07,1.721285614231187798e-07,1.780640290583987377e-07,1.839994966936786956e-07,1.899349643289586535e-07,1.958704319642386114e-07,2.018058995995185694e-07,2.077413672347985273e-07,2.136768348700784852e-07,2.196123025053584431e-07,2.255477701406384011e-07,2.314832377759183590e-07,2.374187054111983169e-07,2.433541730464782484e-07,2.492896406817581798e-07,2.552251083170381113e-07,2.611605759523180427e-07,2.670960435875979742e-07,2.730315112228779056e-07,2.789669788581578371e-07,2.849024464934377685e-07,2.908379141287177000e-07,2.967733817639976314e-07,3.027088493992775629e-07,3.086443170345574943e-07,3.145797846698374258e-07,3.205152523051173572e-07,3.264507199403972887e-07,3.323861875756772201e-07,3.383216552109571516e-07,3.442571228462370831e-07,3.501925904815170145e-07,3.561280581167969460e-07,3.620635257520768774e-07,3.679989933873568089e-07,3.739344610226367403e-07 +0.000000000000000000e+00,3.296671962250132680e-09,6.593343924500265359e-09,9.890015886750397625e-09,1.318668784900052906e-08,1.648335981125066050e-08,1.978003177350079194e-08,2.307670373575092338e-08,2.637337569800105482e-08,2.967004766025118626e-08,3.296671962250131439e-08,3.626339158475144583e-08,3.956006354700157727e-08,4.285673550925170871e-08,4.615340747150184014e-08,4.945007943375197158e-08,5.274675139600210302e-08,5.604342335825223446e-08,5.934009532050236590e-08,6.263676728275249734e-08,6.593343924500262878e-08,6.923011120725276022e-08,7.252678316950289165e-08,7.582345513175302309e-08,7.912012709400315453e-08,8.241679905625328597e-08,8.571347101850341741e-08,8.901014298075354885e-08,9.230681494300368029e-08,9.560348690525381173e-08,9.890015886750394317e-08,1.021968308297540746e-07,1.054935027920042060e-07,1.087901747542543375e-07,1.120868467165044689e-07,1.153835186787546004e-07,1.186801906410047318e-07,1.219768626032548632e-07,1.252735345655049947e-07,1.285702065277551261e-07,1.318668784900052576e-07,1.351635504522553890e-07,1.384602224145055204e-07,1.417568943767556519e-07,1.450535663390057833e-07,1.483502383012559147e-07,1.516469102635060462e-07,1.549435822257561776e-07,1.582402541880063091e-07,1.615369261502564405e-07,1.648335981125065719e-07,1.681302700747567034e-07,1.714269420370068348e-07,1.747236139992569663e-07,1.780202859615070977e-07,1.813169579237572291e-07,1.846136298860073606e-07,1.879103018482574920e-07,1.912069738105076235e-07,1.945036457727577549e-07,1.978003177350078863e-07,2.010969896972580178e-07,2.043936616595081492e-07,2.076903336217582806e-07 +0.000000000000000000e+00,7.118084007210642509e-09,1.423616801442128502e-08,2.135425202163192587e-08,2.847233602884256673e-08,3.559042003605320758e-08,4.270850404326385175e-08,4.982658805047449591e-08,5.694467205768514007e-08,6.406275606489578424e-08,7.118084007210642840e-08,7.829892407931707257e-08,8.541700808652771673e-08,9.253509209373836089e-08,9.965317610094900506e-08,1.067712601081596492e-07,1.138893441153702934e-07,1.210074281225809508e-07,1.281255121297915949e-07,1.352435961370022391e-07,1.423616801442128833e-07,1.494797641514235274e-07,1.565978481586341716e-07,1.637159321658448158e-07,1.708340161730554599e-07,1.779521001802661041e-07,1.850701841874767483e-07,1.921882681946873924e-07,1.993063522018980366e-07,2.064244362091086807e-07,2.135425202163193249e-07,2.206606042235299691e-07,2.277786882307406132e-07,2.348967722379512574e-07,2.420148562451619016e-07,2.491329402523725457e-07,2.562510242595831899e-07,2.633691082667938341e-07,2.704871922740044782e-07,2.776052762812151224e-07,2.847233602884257665e-07,2.918414442956364107e-07,2.989595283028470549e-07,3.060776123100576990e-07,3.131956963172683432e-07,3.203137803244789874e-07,3.274318643316896315e-07,3.345499483389002757e-07,3.416680323461109199e-07,3.487861163533215640e-07,3.559042003605322082e-07,3.630222843677428524e-07,3.701403683749534965e-07,3.772584523821641407e-07,3.843765363893747848e-07,3.914946203965854290e-07,3.986127044037960732e-07,4.057307884110067173e-07,4.128488724182173615e-07,4.199669564254280057e-07,4.270850404326386498e-07,4.342031244398492940e-07,4.413212084470599382e-07,4.484392924542705823e-07 +0.000000000000000000e+00,3.420395230232822335e-09,6.840790460465644671e-09,1.026118569069846618e-08,1.368158092093128769e-08,1.710197615116410920e-08,2.052237138139693236e-08,2.394276661162975552e-08,2.736316184186257868e-08,3.078355707209540185e-08,3.420395230232822501e-08,3.762434753256104817e-08,4.104474276279387133e-08,4.446513799302669450e-08,4.788553322325951766e-08,5.130592845349234082e-08,5.472632368372516398e-08,5.814671891395798715e-08,6.156711414419081693e-08,6.498750937442365332e-08,6.840790460465648972e-08,7.182829983488932612e-08,7.524869506512216252e-08,7.866909029535499891e-08,8.208948552558783531e-08,8.550988075582067171e-08,8.893027598605350811e-08,9.235067121628634450e-08,9.577106644651918090e-08,9.919146167675201730e-08,1.026118569069848537e-07,1.060322521372176901e-07,1.094526473674505265e-07,1.128730425976833629e-07,1.162934378279161993e-07,1.197138330581490357e-07,1.231342282883818721e-07,1.265546235186147085e-07,1.299750187488475449e-07,1.333954139790803813e-07,1.368158092093132177e-07,1.402362044395460541e-07,1.436565996697788905e-07,1.470769949000117269e-07,1.504973901302445633e-07,1.539177853604773997e-07,1.573381805907102361e-07,1.607585758209430725e-07,1.641789710511759088e-07,1.675993662814087452e-07,1.710197615116415816e-07,1.744401567418744180e-07,1.778605519721072544e-07,1.812809472023400908e-07,1.847013424325729272e-07,1.881217376628057636e-07,1.915421328930386000e-07,1.949625281232714364e-07,1.983829233535042728e-07,2.018033185837371092e-07,2.052237138139699456e-07,2.086441090442027820e-07,2.120645042744356184e-07,2.154848995046684548e-07 +0.000000000000000000e+00,5.894464220438409977e-09,1.178892844087681995e-08,1.768339266131522910e-08,2.357785688175363660e-08,2.947232110219204410e-08,3.536678532263045159e-08,4.126124954306885909e-08,4.715571376350726658e-08,5.305017798394567408e-08,5.894464220438408157e-08,6.483910642482249569e-08,7.073357064526091642e-08,7.662803486569933715e-08,8.252249908613775788e-08,8.841696330657617861e-08,9.431142752701459934e-08,1.002058917474530201e-07,1.061003559678914408e-07,1.119948201883298615e-07,1.178892844087682823e-07,1.237837486292067030e-07,1.296782128496451237e-07,1.355726770700835445e-07,1.414671412905219652e-07,1.473616055109603859e-07,1.532560697313988066e-07,1.591505339518372274e-07,1.650449981722756481e-07,1.709394623927140688e-07,1.768339266131524896e-07,1.827283908335909103e-07,1.886228550540293310e-07,1.945173192744677518e-07,2.004117834949061725e-07,2.063062477153445932e-07,2.122007119357830140e-07,2.180951761562214347e-07,2.239896403766598554e-07,2.298841045970982761e-07,2.357785688175366969e-07,2.416730330379750911e-07,2.475674972584134589e-07,2.534619614788518267e-07,2.593564256992901945e-07,2.652508899197285623e-07,2.711453541401669301e-07,2.770398183606052979e-07,2.829342825810436657e-07,2.888287468014820335e-07,2.947232110219204013e-07,3.006176752423587690e-07,3.065121394627971368e-07,3.124066036832355046e-07,3.183010679036738724e-07,3.241955321241122402e-07,3.300899963445506080e-07,3.359844605649889758e-07,3.418789247854273436e-07,3.477733890058657114e-07,3.536678532263040792e-07,3.595623174467424470e-07,3.654567816671808148e-07,3.713512458876191825e-07 +0.000000000000000000e+00,7.304908992324690201e-09,1.460981798464938040e-08,2.191472697697407143e-08,2.921963596929876411e-08,3.652454496162346010e-08,4.382945395394815609e-08,5.113436294627285208e-08,5.843927193859754807e-08,6.574418093092224407e-08,7.304908992324694667e-08,8.035399891557164928e-08,8.765890790789635189e-08,9.496381690022105450e-08,1.022687258925457571e-07,1.095736348848704597e-07,1.168785438771951623e-07,1.241834528695198649e-07,1.314883618618445675e-07,1.387932708541692701e-07,1.460981798464939728e-07,1.534030888388186754e-07,1.607079978311433780e-07,1.680129068234680806e-07,1.753178158157927832e-07,1.826227248081174858e-07,1.899276338004421884e-07,1.972325427927668910e-07,2.045374517850915936e-07,2.118423607774162962e-07,2.191472697697409988e-07,2.264521787620657014e-07,2.337570877543904041e-07,2.410619967467151331e-07,2.483669057390398887e-07,2.556718147313646442e-07,2.629767237236893998e-07,2.702816327160141553e-07,2.775865417083389109e-07,2.848914507006636664e-07,2.921963596929884220e-07,2.995012686853131775e-07,3.068061776776379331e-07,3.141110866699626886e-07,3.214159956622874442e-07,3.287209046546121997e-07,3.360258136469369553e-07,3.433307226392617108e-07,3.506356316315864664e-07,3.579405406239112219e-07,3.652454496162359775e-07,3.725503586085607330e-07,3.798552676008854885e-07,3.871601765932102441e-07,3.944650855855349996e-07,4.017699945778597552e-07,4.090749035701845107e-07,4.163798125625092663e-07,4.236847215548340218e-07,4.309896305471587774e-07,4.382945395394835329e-07,4.455994485318082885e-07,4.529043575241330440e-07,4.602092665164577996e-07 +0.000000000000000000e+00,2.414484179842402788e-09,4.828968359684805576e-09,7.243452539527208777e-09,9.657936719369612806e-09,1.207242089921201683e-08,1.448690507905442086e-08,1.690138925889682655e-08,1.931587343873923223e-08,2.173035761858163791e-08,2.414484179842404359e-08,2.655932597826644928e-08,2.897381015810885496e-08,3.138829433795126064e-08,3.380277851779366633e-08,3.621726269763607201e-08,3.863174687747847769e-08,4.104623105732088338e-08,4.346071523716328906e-08,4.587519941700569474e-08,4.828968359684810042e-08,5.070416777669050611e-08,5.311865195653291179e-08,5.553313613637531747e-08,5.794762031621772316e-08,6.036210449606013546e-08,6.277658867590254776e-08,6.519107285574496006e-08,6.760555703558737236e-08,7.002004121542978466e-08,7.243452539527219696e-08,7.484900957511460926e-08,7.726349375495702156e-08,7.967797793479943386e-08,8.209246211464184616e-08,8.450694629448425846e-08,8.692143047432667076e-08,8.933591465416908306e-08,9.175039883401149536e-08,9.416488301385390766e-08,9.657936719369631996e-08,9.899385137353873226e-08,1.014083355533811446e-07,1.038228197332235569e-07,1.062373039130659692e-07,1.086517880929083815e-07,1.110662722727507938e-07,1.134807564525932061e-07,1.158952406324356184e-07,1.183097248122780307e-07,1.207242089921204297e-07,1.231386931719628288e-07,1.255531773518052279e-07,1.279676615316476269e-07,1.303821457114900260e-07,1.327966298913324251e-07,1.352111140711748241e-07,1.376255982510172232e-07,1.400400824308596223e-07,1.424545666107020213e-07,1.448690507905444204e-07,1.472835349703868195e-07,1.496980191502292185e-07,1.521125033300716176e-07 +0.000000000000000000e+00,5.756729679328128394e-09,1.151345935865625679e-08,1.727018903798438435e-08,2.302691871731251027e-08,2.878364839664063618e-08,3.454037807596876209e-08,4.029710775529688800e-08,4.605383743462501392e-08,5.181056711395313983e-08,5.756729679328126574e-08,6.332402647260939827e-08,6.908075615193753742e-08,7.483748583126567656e-08,8.059421551059381571e-08,8.635094518992195486e-08,9.210767486925009401e-08,9.786440454857823315e-08,1.036211342279063723e-07,1.093778639072345114e-07,1.151345935865626506e-07,1.208913232658907897e-07,1.266480529452189289e-07,1.324047826245470680e-07,1.381615123038752072e-07,1.439182419832033463e-07,1.496749716625314855e-07,1.554317013418596246e-07,1.611884310211877638e-07,1.669451607005159029e-07,1.727018903798440421e-07,1.784586200591721812e-07,1.842153497385003204e-07,1.899720794178284595e-07,1.957288090971565987e-07,2.014855387764847378e-07,2.072422684558128769e-07,2.129989981351410161e-07,2.187557278144691552e-07,2.245124574937972944e-07,2.302691871731254335e-07,2.360259168524535727e-07,2.417826465317816854e-07,2.475393762111097980e-07,2.532961058904379107e-07,2.590528355697660234e-07,2.648095652490941361e-07,2.705662949284222487e-07,2.763230246077503614e-07,2.820797542870784741e-07,2.878364839664065868e-07,2.935932136457346995e-07,2.993499433250628121e-07,3.051066730043909248e-07,3.108634026837190375e-07,3.166201323630471502e-07,3.223768620423752628e-07,3.281335917217033755e-07,3.338903214010314882e-07,3.396470510803596009e-07,3.454037807596877136e-07,3.511605104390158262e-07,3.569172401183439389e-07,3.626739697976720516e-07 +0.000000000000000000e+00,5.894464220443594745e-09,1.178892844088718949e-08,1.768339266133078341e-08,2.357785688177437567e-08,2.947232110221796794e-08,3.536678532266156020e-08,4.126124954310515577e-08,4.715571376354875135e-08,5.305017798399234692e-08,5.894464220443594249e-08,6.483910642487953806e-08,7.073357064532313364e-08,7.662803486576672921e-08,8.252249908621032478e-08,8.841696330665392035e-08,9.431142752709751593e-08,1.002058917475411115e-07,1.061003559679847071e-07,1.119948201884283026e-07,1.178892844088718982e-07,1.237837486293154938e-07,1.296782128497590761e-07,1.355726770702026585e-07,1.414671412906462408e-07,1.473616055110898231e-07,1.532560697315334055e-07,1.591505339519769878e-07,1.650449981724205702e-07,1.709394623928641525e-07,1.768339266133077348e-07,1.827283908337513172e-07,1.886228550541948995e-07,1.945173192746384818e-07,2.004117834950820642e-07,2.063062477155256465e-07,2.122007119359692289e-07,2.180951761564128112e-07,2.239896403768563935e-07,2.298841045972999759e-07,2.357785688177435582e-07,2.416730330381871670e-07,2.475674972586307758e-07,2.534619614790743846e-07,2.593564256995179934e-07,2.652508899199616022e-07,2.711453541404052110e-07,2.770398183608488199e-07,2.829342825812924287e-07,2.888287468017360375e-07,2.947232110221796463e-07,3.006176752426232551e-07,3.065121394630668639e-07,3.124066036835104727e-07,3.183010679039540815e-07,3.241955321243976903e-07,3.300899963448412991e-07,3.359844605652849079e-07,3.418789247857285167e-07,3.477733890061721255e-07,3.536678532266157344e-07,3.595623174470593432e-07,3.654567816675029520e-07,3.713512458879465608e-07 +0.000000000000000000e+00,3.296671962260402541e-09,6.593343924520805081e-09,9.890015886781208449e-09,1.318668784904161182e-08,1.648335981130201518e-08,1.978003177356241690e-08,2.307670373582281861e-08,2.637337569808322032e-08,2.967004766034362204e-08,3.296671962260402375e-08,3.626339158486442546e-08,3.956006354712482718e-08,4.285673550938522889e-08,4.615340747164563060e-08,4.945007943390603232e-08,5.274675139616643403e-08,5.604342335842683574e-08,5.934009532068723746e-08,6.263676728294763255e-08,6.593343924520803427e-08,6.923011120746843598e-08,7.252678316972883769e-08,7.582345513198923941e-08,7.912012709424964112e-08,8.241679905651004283e-08,8.571347101877044455e-08,8.901014298103084626e-08,9.230681494329124797e-08,9.560348690555164969e-08,9.890015886781205140e-08,1.021968308300724531e-07,1.054935027923328548e-07,1.087901747545932565e-07,1.120868467168536583e-07,1.153835186791140600e-07,1.186801906413744617e-07,1.219768626036348634e-07,1.252735345658952651e-07,1.285702065281556668e-07,1.318668784904160685e-07,1.351635504526764702e-07,1.384602224149368720e-07,1.417568943771972737e-07,1.450535663394576754e-07,1.483502383017180771e-07,1.516469102639784788e-07,1.549435822262388805e-07,1.582402541884992822e-07,1.615369261507596840e-07,1.648335981130200857e-07,1.681302700752804874e-07,1.714269420375408891e-07,1.747236139998012908e-07,1.780202859620616925e-07,1.813169579243220942e-07,1.846136298865824959e-07,1.879103018488428977e-07,1.912069738111032994e-07,1.945036457733637011e-07,1.978003177356241028e-07,2.010969896978845045e-07,2.043936616601449062e-07,2.076903336224053079e-07 +0.000000000000000000e+00,7.118084007221387586e-09,1.423616801444277517e-08,2.135425202166416276e-08,2.847233602888555034e-08,3.559042003610694124e-08,4.270850404332833213e-08,4.982658805054972302e-08,5.694467205777111392e-08,6.406275606499250481e-08,7.118084007221389571e-08,7.829892407943528660e-08,8.541700808665667750e-08,9.253509209387806839e-08,9.965317610109945928e-08,1.067712601083208502e-07,1.138893441155422411e-07,1.210074281227636452e-07,1.281255121299850361e-07,1.352435961372064270e-07,1.423616801444278179e-07,1.494797641516492088e-07,1.565978481588705997e-07,1.637159321660919906e-07,1.708340161733133815e-07,1.779521001805347724e-07,1.850701841877561633e-07,1.921882681949775541e-07,1.993063522021989450e-07,2.064244362094203359e-07,2.135425202166417268e-07,2.206606042238631177e-07,2.277786882310845086e-07,2.348967722383058995e-07,2.420148562455272904e-07,2.491329402527486813e-07,2.562510242599700722e-07,2.633691082671914631e-07,2.704871922744128540e-07,2.776052762816342449e-07,2.847233602888556358e-07,2.918414442960770267e-07,2.989595283032984176e-07,3.060776123105198085e-07,3.131956963177411993e-07,3.203137803249625902e-07,3.274318643321839811e-07,3.345499483394053720e-07,3.416680323466267629e-07,3.487861163538481538e-07,3.559042003610695447e-07,3.630222843682909356e-07,3.701403683755123265e-07,3.772584523827337174e-07,3.843765363899551083e-07,3.914946203971764992e-07,3.986127044043978901e-07,4.057307884116192810e-07,4.128488724188406719e-07,4.199669564260620628e-07,4.270850404332834537e-07,4.342031244405048445e-07,4.413212084477262354e-07,4.484392924549476263e-07 +0.000000000000000000e+00,3.420395230243042565e-09,6.840790460486085131e-09,1.026118569072912811e-08,1.368158092097217192e-08,1.710197615121521572e-08,2.052237138145825953e-08,2.394276661170130333e-08,2.736316184194434714e-08,3.078355707218739095e-08,3.420395230243043144e-08,3.762434753267347194e-08,4.104474276291651244e-08,4.446513799315955294e-08,4.788553322340259343e-08,5.130592845364563393e-08,5.472632368388867443e-08,5.814671891413171493e-08,6.156711414437475542e-08,6.498750937461779592e-08,6.840790460486083642e-08,7.182829983510387692e-08,7.524869506534691741e-08,7.866909029558995791e-08,8.208948552583299841e-08,8.550988075607603891e-08,8.893027598631907940e-08,9.235067121656211990e-08,9.577106644680516040e-08,9.919146167704820090e-08,1.026118569072912414e-07,1.060322521375342819e-07,1.094526473677773224e-07,1.128730425980203629e-07,1.162934378282634034e-07,1.197138330585064571e-07,1.231342282887495108e-07,1.265546235189925646e-07,1.299750187492356183e-07,1.333954139794786720e-07,1.368158092097217258e-07,1.402362044399647795e-07,1.436565996702078332e-07,1.470769949004508870e-07,1.504973901306939407e-07,1.539177853609369944e-07,1.573381805911800482e-07,1.607585758214231019e-07,1.641789710516661556e-07,1.675993662819092094e-07,1.710197615121522631e-07,1.744401567423953168e-07,1.778605519726383706e-07,1.812809472028814243e-07,1.847013424331244780e-07,1.881217376633675318e-07,1.915421328936105855e-07,1.949625281238536392e-07,1.983829233540966930e-07,2.018033185843397467e-07,2.052237138145828004e-07,2.086441090448258542e-07,2.120645042750689079e-07,2.154848995053119616e-07 +0.000000000000000000e+00,2.260547190834229131e-09,4.521094381668458262e-09,6.781641572502687394e-09,9.042188763336916525e-09,1.130273595417114566e-08,1.356328314500537479e-08,1.582383033583960557e-08,1.808437752667383636e-08,2.034492471750806714e-08,2.260547190834229793e-08,2.486601909917652872e-08,2.712656629001075950e-08,2.938711348084499029e-08,3.164766067167922438e-08,3.390820786251345848e-08,3.616875505334769257e-08,3.842930224418192666e-08,4.068984943501616076e-08,4.295039662585039485e-08,4.521094381668462895e-08,4.747149100751886304e-08,4.973203819835309714e-08,5.199258538918733123e-08,5.425313258002156532e-08,5.651367977085579942e-08,5.877422696169003351e-08,6.103477415252426099e-08,6.329532134335848847e-08,6.555586853419271594e-08,6.781641572502694342e-08,7.007696291586117090e-08,7.233751010669539837e-08,7.459805729752962585e-08,7.685860448836385333e-08,7.911915167919808080e-08,8.137969887003230828e-08,8.364024606086653576e-08,8.590079325170076324e-08,8.816134044253499071e-08,9.042188763336921819e-08,9.268243482420344567e-08,9.494298201503767314e-08,9.720352920587190062e-08,9.946407639670612810e-08,1.017246235875403556e-07,1.039851707783745831e-07,1.062457179692088105e-07,1.085062651600430380e-07,1.107668123508772655e-07,1.130273595417114930e-07,1.152879067325457204e-07,1.175484539233799479e-07,1.198090011142141754e-07,1.220695483050484161e-07,1.243300954958826568e-07,1.265906426867168975e-07,1.288511898775511382e-07,1.311117370683853789e-07,1.333722842592196197e-07,1.356328314500538604e-07,1.378933786408881011e-07,1.401539258317223418e-07,1.424144730225565825e-07 +0.000000000000000000e+00,2.201258714859131214e-09,4.402517429718262428e-09,6.603776144577394056e-09,8.805034859436526511e-09,1.100629357429565897e-08,1.320755228915479142e-08,1.540881100401392222e-08,1.761006971887305302e-08,1.981132843373218382e-08,2.201258714859131462e-08,2.421384586345044542e-08,2.641510457830957622e-08,2.861636329316870703e-08,3.081762200802783783e-08,3.301888072288696863e-08,3.522013943774609943e-08,3.742139815260523023e-08,3.962265686746436103e-08,4.182391558232349183e-08,4.402517429718262263e-08,4.622643301204175343e-08,4.842769172690088423e-08,5.062895044176001503e-08,5.283020915661914583e-08,5.503146787147827663e-08,5.723272658633740743e-08,5.943398530119653823e-08,6.163524401605566242e-08,6.383650273091478660e-08,6.603776144577391078e-08,6.823902016063303497e-08,7.044027887549215915e-08,7.264153759035128333e-08,7.484279630521040752e-08,7.704405502006953170e-08,7.924531373492865588e-08,8.144657244978778007e-08,8.364783116464690425e-08,8.584908987950602843e-08,8.805034859436515262e-08,9.025160730922427680e-08,9.245286602408340098e-08,9.465412473894252517e-08,9.685538345380164935e-08,9.905664216866077353e-08,1.012579008835198977e-07,1.034591595983790219e-07,1.056604183132381461e-07,1.078616770280972703e-07,1.100629357429563944e-07,1.122641944578155186e-07,1.144654531726746428e-07,1.166667118875337670e-07,1.188679706023928912e-07,1.210692293172520286e-07,1.232704880321111660e-07,1.254717467469703034e-07,1.276730054618294409e-07,1.298742641766885783e-07,1.320755228915477157e-07,1.342767816064068531e-07,1.364780403212659905e-07,1.386792990361251279e-07 +0.000000000000000000e+00,3.394751885016420474e-09,6.789503770032840949e-09,1.018425565504926101e-08,1.357900754006568024e-08,1.697375942508209782e-08,2.036851131009851540e-08,2.376326319511493298e-08,2.715801508013135056e-08,3.055276696514776814e-08,3.394751885016418241e-08,3.734227073518059668e-08,4.073702262019701095e-08,4.413177450521342522e-08,4.752652639022983949e-08,5.092127827524625376e-08,5.431603016026266803e-08,5.771078204527908231e-08,6.110553393029549658e-08,6.450028581531191085e-08,6.789503770032832512e-08,7.128978958534473939e-08,7.468454147036115366e-08,7.807929335537756793e-08,8.147404524039398220e-08,8.486879712541039647e-08,8.826354901042681074e-08,9.165830089544322501e-08,9.505305278045963928e-08,9.844780466547605355e-08,1.018425565504924678e-07,1.052373084355088821e-07,1.086320603205252964e-07,1.120268122055417106e-07,1.154215640905581249e-07,1.188163159755745392e-07,1.222110678605909667e-07,1.256058197456073942e-07,1.290005716306238217e-07,1.323953235156402492e-07,1.357900754006566767e-07,1.391848272856731042e-07,1.425795791706895317e-07,1.459743310557059592e-07,1.493690829407223867e-07,1.527638348257388142e-07,1.561585867107552417e-07,1.595533385957716692e-07,1.629480904807880967e-07,1.663428423658045243e-07,1.697375942508209518e-07,1.731323461358373793e-07,1.765270980208538068e-07,1.799218499058702343e-07,1.833166017908866618e-07,1.867113536759030893e-07,1.901061055609195168e-07,1.935008574459359443e-07,1.968956093309523718e-07,2.002903612159687993e-07,2.036851131009852268e-07,2.070798649860016543e-07,2.104746168710180818e-07,2.138693687560345093e-07 +0.000000000000000000e+00,2.260547190843328532e-09,4.521094381686657063e-09,6.781641572529986008e-09,9.042188763373315781e-09,1.130273595421664555e-08,1.356328314505997533e-08,1.582383033590330510e-08,1.808437752674663487e-08,2.034492471758996464e-08,2.260547190843329441e-08,2.486601909927662419e-08,2.712656629011995396e-08,2.938711348096328373e-08,3.164766067180661020e-08,3.390820786264993666e-08,3.616875505349326312e-08,3.842930224433658959e-08,4.068984943517991605e-08,4.295039662602324251e-08,4.521094381686656898e-08,4.747149100770989544e-08,4.973203819855322190e-08,5.199258538939654837e-08,5.425313258023987483e-08,5.651367977108320129e-08,5.877422696192652776e-08,6.103477415276984760e-08,6.329532134361316745e-08,6.555586853445648730e-08,6.781641572529980714e-08,7.007696291614312699e-08,7.233751010698644684e-08,7.459805729782976668e-08,7.685860448867308653e-08,7.911915167951640637e-08,8.137969887035972622e-08,8.364024606120304607e-08,8.590079325204636591e-08,8.816134044288968576e-08,9.042188763373300560e-08,9.268243482457632545e-08,9.494298201541964530e-08,9.720352920626296514e-08,9.946407639710628499e-08,1.017246235879496048e-07,1.039851707787929247e-07,1.062457179696362445e-07,1.085062651604795644e-07,1.107668123513228842e-07,1.130273595421662041e-07,1.152879067330095239e-07,1.175484539238528438e-07,1.198090011146961636e-07,1.220695483055394835e-07,1.243300954963828033e-07,1.265906426872261231e-07,1.288511898780694430e-07,1.311117370689127628e-07,1.333722842597560827e-07,1.356328314505994025e-07,1.378933786414427224e-07,1.401539258322860422e-07,1.424144730231293621e-07 +0.000000000000000000e+00,2.201258714868687218e-09,4.402517429737374436e-09,6.603776144606061655e-09,8.805034859474748873e-09,1.100629357434343526e-08,1.320755228921212166e-08,1.540881100408080805e-08,1.761006971894949444e-08,1.981132843381818083e-08,2.201258714868686722e-08,2.421384586355555361e-08,2.641510457842424000e-08,2.861636329329292639e-08,3.081762200816160947e-08,3.301888072303028925e-08,3.522013943789896902e-08,3.742139815276764880e-08,3.962265686763632857e-08,4.182391558250500834e-08,4.402517429737368812e-08,4.622643301224236789e-08,4.842769172711104766e-08,5.062895044197972744e-08,5.283020915684840721e-08,5.503146787171708698e-08,5.723272658658576676e-08,5.943398530145444653e-08,6.163524401632312631e-08,6.383650273119180608e-08,6.603776144606048585e-08,6.823902016092916563e-08,7.044027887579784540e-08,7.264153759066652517e-08,7.484279630553520495e-08,7.704405502040388472e-08,7.924531373527256449e-08,8.144657245014124427e-08,8.364783116500992404e-08,8.584908987987860382e-08,8.805034859474728359e-08,9.025160730961596336e-08,9.245286602448464314e-08,9.465412473935332291e-08,9.685538345422200268e-08,9.905664216909068246e-08,1.012579008839593622e-07,1.034591595988280420e-07,1.056604183136967218e-07,1.078616770285654016e-07,1.100629357434340813e-07,1.122641944583027611e-07,1.144654531731714409e-07,1.166667118880401206e-07,1.188679706029088004e-07,1.210692293177774802e-07,1.232704880326461732e-07,1.254717467475148662e-07,1.276730054623835592e-07,1.298742641772522522e-07,1.320755228921209452e-07,1.342767816069896382e-07,1.364780403218583313e-07,1.386792990367270243e-07 +0.000000000000000000e+00,3.394751885025879698e-09,6.789503770051759397e-09,1.018425565507763827e-08,1.357900754010351714e-08,1.697375942512939601e-08,2.036851131015527654e-08,2.376326319518115706e-08,2.715801508020703759e-08,3.055276696523292142e-08,3.394751885025880526e-08,3.734227073528468909e-08,4.073702262031057292e-08,4.413177450533645676e-08,4.752652639036234059e-08,5.092127827538822443e-08,5.431603016041410826e-08,5.771078204543999210e-08,6.110553393046586931e-08,6.450028581549174653e-08,6.789503770051762375e-08,7.128978958554350096e-08,7.468454147056937818e-08,7.807929335559525540e-08,8.147404524062113261e-08,8.486879712564700983e-08,8.826354901067288705e-08,9.165830089569876426e-08,9.505305278072464148e-08,9.844780466575051870e-08,1.018425565507763959e-07,1.052373084358022731e-07,1.086320603208281503e-07,1.120268122058540276e-07,1.154215640908799048e-07,1.188163159759057820e-07,1.222110678609316592e-07,1.256058197459575364e-07,1.290005716309834136e-07,1.323953235160092909e-07,1.357900754010351681e-07,1.391848272860610453e-07,1.425795791710869225e-07,1.459743310561127997e-07,1.493690829411386770e-07,1.527638348261645542e-07,1.561585867111904314e-07,1.595533385962163086e-07,1.629480904812421858e-07,1.663428423662680630e-07,1.697375942512939403e-07,1.731323461363198175e-07,1.765270980213456947e-07,1.799218499063715719e-07,1.833166017913974491e-07,1.867113536764233263e-07,1.901061055614492036e-07,1.935008574464750808e-07,1.968956093315009580e-07,2.002903612165268352e-07,2.036851131015527124e-07,2.070798649865785896e-07,2.104746168716044669e-07,2.138693687566303441e-07 +0.000000000000000000e+00,2.657553701167350502e-09,5.315107402334701004e-09,7.972661103502051920e-09,1.063021480466940366e-08,1.328776850583675541e-08,1.594532220700410715e-08,1.860287590817145889e-08,2.126042960933881063e-08,2.391798331050616238e-08,2.657553701167351412e-08,2.923309071284086586e-08,3.189064441400822092e-08,3.454819811517557266e-08,3.720575181634292440e-08,3.986330551751027614e-08,4.252085921867762789e-08,4.517841291984497963e-08,4.783596662101233137e-08,5.049352032217968312e-08,5.315107402334703486e-08,5.580862772451438660e-08,5.846618142568173835e-08,6.112373512684909009e-08,6.378128882801644183e-08,6.643884252918379357e-08,6.909639623035114532e-08,7.175394993151849706e-08,7.441150363268584880e-08,7.706905733385320055e-08,7.972661103502055229e-08,8.238416473618790403e-08,8.504171843735525577e-08,8.769927213852260752e-08,9.035682583968995926e-08,9.301437954085731100e-08,9.567193324202466275e-08,9.832948694319201449e-08,1.009870406443593662e-07,1.036445943455267180e-07,1.063021480466940697e-07,1.089597017478614215e-07,1.116172554490287732e-07,1.142748091501961249e-07,1.169323628513634767e-07,1.195899165525308284e-07,1.222474702536981802e-07,1.249050239548655319e-07,1.275625776560328837e-07,1.302201313572002354e-07,1.328776850583675871e-07,1.355352387595349389e-07,1.381927924607022906e-07,1.408503461618696424e-07,1.435078998630369941e-07,1.461654535642043459e-07,1.488230072653716976e-07,1.514805609665390493e-07,1.541381146677064011e-07,1.567956683688737528e-07,1.594532220700411046e-07,1.621107757712084563e-07,1.647683294723758081e-07,1.674258831735431598e-07 +0.000000000000000000e+00,2.437179326304029811e-09,4.874358652608059622e-09,7.311537978912089433e-09,9.748717305216119243e-09,1.218589663152014823e-08,1.462307595782417721e-08,1.706025528412820619e-08,1.949743461043223518e-08,2.193461393673626416e-08,2.437179326304029315e-08,2.680897258934432213e-08,2.924615191564835111e-08,3.168333124195238340e-08,3.412051056825641901e-08,3.655768989456045461e-08,3.899486922086449021e-08,4.143204854716852581e-08,4.386922787347256141e-08,4.630640719977659701e-08,4.874358652608063261e-08,5.118076585238466821e-08,5.361794517868870381e-08,5.605512450499273942e-08,5.849230383129677502e-08,6.092948315760081062e-08,6.336666248390484622e-08,6.580384181020888182e-08,6.824102113651291742e-08,7.067820046281695302e-08,7.311537978912098862e-08,7.555255911542502422e-08,7.798973844172905983e-08,8.042691776803309543e-08,8.286409709433713103e-08,8.530127642064116663e-08,8.773845574694520223e-08,9.017563507324923783e-08,9.261281439955327343e-08,9.504999372585730903e-08,9.748717305216134463e-08,9.992435237846538024e-08,1.023615317047694158e-07,1.047987110310734514e-07,1.072358903573774870e-07,1.096730696836815226e-07,1.121102490099855582e-07,1.145474283362895938e-07,1.169846076625936294e-07,1.194217869888976650e-07,1.218589663152017006e-07,1.242961456415057362e-07,1.267333249678097718e-07,1.291705042941138074e-07,1.316076836204178430e-07,1.340448629467218787e-07,1.364820422730259143e-07,1.389192215993299499e-07,1.413564009256339855e-07,1.437935802519380211e-07,1.462307595782420567e-07,1.486679389045460923e-07,1.511051182308501279e-07,1.535422975571541635e-07 +0.000000000000000000e+00,3.932122449919550294e-09,7.864244899839100589e-09,1.179636734975865088e-08,1.572848979967820118e-08,1.966061224959775147e-08,2.359273469951730177e-08,2.752485714943685206e-08,3.145697959935640236e-08,3.538910204927595596e-08,3.932122449919550956e-08,4.325334694911506316e-08,4.718546939903461677e-08,5.111759184895417037e-08,5.504971429887372397e-08,5.898183674879327758e-08,6.291395919871283118e-08,6.684608164863238478e-08,7.077820409855193839e-08,7.471032654847149199e-08,7.864244899839104559e-08,8.257457144831059920e-08,8.650669389823015280e-08,9.043881634814970640e-08,9.437093879806926001e-08,9.830306124798881361e-08,1.022351836979083672e-07,1.061673061478279208e-07,1.100994285977474744e-07,1.140315510476670280e-07,1.179636734975865816e-07,1.218957959475061352e-07,1.258279183974256888e-07,1.297600408473452424e-07,1.336921632972647960e-07,1.376242857471843496e-07,1.415564081971039032e-07,1.454885306470234568e-07,1.494206530969430104e-07,1.533527755468625641e-07,1.572848979967821177e-07,1.612170204467016713e-07,1.651491428966212249e-07,1.690812653465407785e-07,1.730133877964603321e-07,1.769455102463798857e-07,1.808776326962994393e-07,1.848097551462189929e-07,1.887418775961385465e-07,1.926740000460581001e-07,1.966061224959776537e-07,2.005382449458972073e-07,2.044703673958167609e-07,2.084024898457363145e-07,2.123346122956558681e-07,2.162667347455754217e-07,2.201988571954949753e-07,2.241309796454145289e-07,2.280631020953340825e-07,2.319952245452536361e-07,2.359273469951731897e-07,2.398594694450927433e-07,2.437915918950122705e-07,2.477237143449317976e-07 +0.000000000000000000e+00,2.657553701175510639e-09,5.315107402351021278e-09,7.972661103526531503e-09,1.063021480470204090e-08,1.328776850587755030e-08,1.594532220705305970e-08,1.860287590822857075e-08,2.126042960940408180e-08,2.391798331057959286e-08,2.657553701175510391e-08,2.923309071293061496e-08,3.189064441410612601e-08,3.454819811528163707e-08,3.720575181645714812e-08,3.986330551763265917e-08,4.252085921880817022e-08,4.517841291998368128e-08,4.783596662115919233e-08,5.049352032233470338e-08,5.315107402351021443e-08,5.580862772468572549e-08,5.846618142586123654e-08,6.112373512703674759e-08,6.378128882821226526e-08,6.643884252938778293e-08,6.909639623056330060e-08,7.175394993173881827e-08,7.441150363291433594e-08,7.706905733408985361e-08,7.972661103526537128e-08,8.238416473644088895e-08,8.504171843761640662e-08,8.769927213879192429e-08,9.035682583996744196e-08,9.301437954114295963e-08,9.567193324231847730e-08,9.832948694349399497e-08,1.009870406446695126e-07,1.036445943458450303e-07,1.063021480470205480e-07,1.089597017481960656e-07,1.116172554493715833e-07,1.142748091505471010e-07,1.169323628517226187e-07,1.195899165528981496e-07,1.222474702540736805e-07,1.249050239552492114e-07,1.275625776564247423e-07,1.302201313576002732e-07,1.328776850587758041e-07,1.355352387599513350e-07,1.381927924611268659e-07,1.408503461623023968e-07,1.435078998634779277e-07,1.461654535646534586e-07,1.488230072658289895e-07,1.514805609670045204e-07,1.541381146681800513e-07,1.567956683693555822e-07,1.594532220705311131e-07,1.621107757717066440e-07,1.647683294728821749e-07,1.674258831740577059e-07 +0.000000000000000000e+00,2.437179326312690805e-09,4.874358652625381611e-09,7.311537978938072003e-09,9.748717305250761567e-09,1.218589663156345113e-08,1.462307595787614070e-08,1.706025528418883192e-08,1.949743461050152313e-08,2.193461393681421435e-08,2.437179326312690557e-08,2.680897258943959679e-08,2.924615191575228801e-08,3.168333124206497923e-08,3.412051056837767045e-08,3.655768989469036167e-08,3.899486922100305289e-08,4.143204854731574411e-08,4.386922787362843533e-08,4.630640719994112654e-08,4.874358652625381776e-08,5.118076585256650898e-08,5.361794517887920020e-08,5.605512450519189142e-08,5.849230383150458264e-08,6.092948315781728048e-08,6.336666248412997169e-08,6.580384181044266291e-08,6.824102113675535413e-08,7.067820046306804535e-08,7.311537978938073657e-08,7.555255911569342779e-08,7.798973844200611901e-08,8.042691776831881023e-08,8.286409709463150145e-08,8.530127642094419267e-08,8.773845574725688389e-08,9.017563507356957510e-08,9.261281439988226632e-08,9.504999372619495754e-08,9.748717305250764876e-08,9.992435237882033998e-08,1.023615317051330312e-07,1.047987110314457224e-07,1.072358903577584136e-07,1.096730696840711049e-07,1.121102490103837961e-07,1.145474283366964873e-07,1.169846076630091785e-07,1.194217869893218697e-07,1.218589663156345610e-07,1.242961456419472522e-07,1.267333249682599434e-07,1.291705042945726346e-07,1.316076836208853258e-07,1.340448629471980170e-07,1.364820422735107083e-07,1.389192215998233995e-07,1.413564009261360907e-07,1.437935802524487819e-07,1.462307595787614731e-07,1.486679389050741644e-07,1.511051182313868556e-07,1.535422975576995468e-07 +0.000000000000000000e+00,3.932122449927917226e-09,7.864244899855834453e-09,1.179636734978375085e-08,1.572848979971166560e-08,1.966061224963958034e-08,2.359273469956749509e-08,2.752485714949540983e-08,3.145697959942332458e-08,3.538910204935123601e-08,3.932122449927914745e-08,4.325334694920705888e-08,4.718546939913497032e-08,5.111759184906288176e-08,5.504971429899079319e-08,5.898183674891870463e-08,6.291395919884660945e-08,6.684608164877451426e-08,7.077820409870241908e-08,7.471032654863032390e-08,7.864244899855822872e-08,8.257457144848613354e-08,8.650669389841403836e-08,9.043881634834194318e-08,9.437093879826984799e-08,9.830306124819775281e-08,1.022351836981256576e-07,1.061673061480535625e-07,1.100994285979814673e-07,1.140315510479093721e-07,1.179636734978372769e-07,1.218957959477651685e-07,1.258279183976930601e-07,1.297600408476209517e-07,1.336921632975488432e-07,1.376242857474767348e-07,1.415564081974046264e-07,1.454885306473325180e-07,1.494206530972604096e-07,1.533527755471883012e-07,1.572848979971161927e-07,1.612170204470440843e-07,1.651491428969719759e-07,1.690812653468998675e-07,1.730133877968277591e-07,1.769455102467556507e-07,1.808776326966835422e-07,1.848097551466114338e-07,1.887418775965393254e-07,1.926740000464672170e-07,1.966061224963951086e-07,2.005382449463230002e-07,2.044703673962508917e-07,2.084024898461787833e-07,2.123346122961066749e-07,2.162667347460345665e-07,2.201988571959624581e-07,2.241309796458903497e-07,2.280631020958182412e-07,2.319952245457461328e-07,2.359273469956740244e-07,2.398594694456019160e-07,2.437915918955298076e-07,2.477237143454576992e-07 +0.000000000000000000e+00,3.087074258957901036e-09,6.174148517915802071e-09,9.261222776873703520e-09,1.234829703583160580e-08,1.543537129478950973e-08,1.852244555374741366e-08,2.160951981270531759e-08,2.469659407166322152e-08,2.778366833062112545e-08,3.087074258957903269e-08,3.395781684853693993e-08,3.704489110749484717e-08,4.013196536645275441e-08,4.321903962541066165e-08,4.630611388436856889e-08,4.939318814332647613e-08,5.248026240228438337e-08,5.556733666124229061e-08,5.865441092020019784e-08,6.174148517915810508e-08,6.482855943811600571e-08,6.791563369707390633e-08,7.100270795603180695e-08,7.408978221498970757e-08,7.717685647394760819e-08,8.026393073290550882e-08,8.335100499186340944e-08,8.643807925082131006e-08,8.952515350977921068e-08,9.261222776873711130e-08,9.569930202769501193e-08,9.878637628665291255e-08,1.018734505456108132e-07,1.049605248045687138e-07,1.080475990635266144e-07,1.111346733224845150e-07,1.142217475814424157e-07,1.173088218404003163e-07,1.203958960993582169e-07,1.234829703583161308e-07,1.265700446172740446e-07,1.296571188762319585e-07,1.327441931351898723e-07,1.358312673941477862e-07,1.389183416531057000e-07,1.420054159120636139e-07,1.450924901710215278e-07,1.481795644299794416e-07,1.512666386889373555e-07,1.543537129478952693e-07,1.574407872068531832e-07,1.605278614658110970e-07,1.636149357247690109e-07,1.667020099837269248e-07,1.697890842426848386e-07,1.728761585016427525e-07,1.759632327606006663e-07,1.790503070195585802e-07,1.821373812785164940e-07,1.852244555374744079e-07,1.883115297964323218e-07,1.913986040553902356e-07,1.944856783143481495e-07 +0.000000000000000000e+00,2.880911006492689975e-09,5.761822012985379950e-09,8.642733019478069512e-09,1.152364402597075825e-08,1.440455503246344698e-08,1.728546603895613571e-08,2.016637704544882445e-08,2.304728805194151318e-08,2.592819905843420192e-08,2.880911006492689065e-08,3.169002107141957939e-08,3.457093207791226481e-08,3.745184308440495024e-08,4.033275409089763566e-08,4.321366509739032109e-08,4.609457610388300651e-08,4.897548711037569194e-08,5.185639811686837737e-08,5.473730912336106279e-08,5.761822012985374822e-08,6.049913113634643364e-08,6.338004214283911907e-08,6.626095314933180449e-08,6.914186415582448992e-08,7.202277516231717535e-08,7.490368616880986077e-08,7.778459717530254620e-08,8.066550818179523162e-08,8.354641918828791705e-08,8.642733019478060247e-08,8.930824120127328790e-08,9.218915220776597332e-08,9.507006321425865875e-08,9.795097422075134418e-08,1.008318852272440296e-07,1.037127962337367150e-07,1.065937072402294005e-07,1.094746182467220859e-07,1.123555292532147713e-07,1.152364402597074567e-07,1.181173512662001422e-07,1.209982622726928143e-07,1.238791732791854865e-07,1.267600842856781587e-07,1.296409952921708309e-07,1.325219062986635031e-07,1.354028173051561753e-07,1.382837283116488475e-07,1.411646393181415197e-07,1.440455503246341919e-07,1.469264613311268641e-07,1.498073723376195363e-07,1.526882833441122084e-07,1.555691943506048806e-07,1.584501053570975528e-07,1.613310163635902250e-07,1.642119273700828972e-07,1.670928383765755694e-07,1.699737493830682416e-07,1.728546603895609138e-07,1.757355713960535860e-07,1.786164824025462582e-07,1.814973934090389304e-07 +0.000000000000000000e+00,4.463654782176886029e-09,8.927309564353772057e-09,1.339096434653065726e-08,1.785461912870754081e-08,2.231827391088442435e-08,2.678192869306130790e-08,3.124558347523819476e-08,3.570923825741508161e-08,4.017289303959196847e-08,4.463654782176885532e-08,4.910020260394574218e-08,5.356385738612262904e-08,5.802751216829951589e-08,6.249116695047640275e-08,6.695482173265328960e-08,7.141847651483017646e-08,7.588213129700706331e-08,8.034578607918395017e-08,8.480944086136083703e-08,8.927309564353772388e-08,9.373675042571461074e-08,9.820040520789149759e-08,1.026640599900683844e-07,1.071277147722452713e-07,1.115913695544221582e-07,1.160550243365990450e-07,1.205186791187759319e-07,1.249823339009528320e-07,1.294459886831297321e-07,1.339096434653066321e-07,1.383732982474835322e-07,1.428369530296604323e-07,1.473006078118373324e-07,1.517642625940142325e-07,1.562279173761911326e-07,1.606915721583680327e-07,1.651552269405449328e-07,1.696188817227218329e-07,1.740825365048987330e-07,1.785461912870756331e-07,1.830098460692525331e-07,1.874735008514294332e-07,1.919371556336063333e-07,1.964008104157832334e-07,2.008644651979601335e-07,2.053281199801370336e-07,2.097917747623139337e-07,2.142554295444908338e-07,2.187190843266677339e-07,2.231827391088446340e-07,2.276463938910215340e-07,2.321100486731984341e-07,2.365737034553753342e-07,2.410373582375522343e-07,2.455010130197291344e-07,2.499646678019060345e-07,2.544283225840829346e-07,2.588919773662598347e-07,2.633556321484367348e-07,2.678192869306136349e-07,2.722829417127905350e-07,2.767465964949674350e-07,2.812102512771443351e-07 +0.000000000000000000e+00,3.087074258964920077e-09,6.174148517929840153e-09,9.261222776894760230e-09,1.234829703585968031e-08,1.543537129482460204e-08,1.852244555378952377e-08,2.160951981275444550e-08,2.469659407171936723e-08,2.778366833068428896e-08,3.087074258964921069e-08,3.395781684861413242e-08,3.704489110757905415e-08,4.013196536654397589e-08,4.321903962550889762e-08,4.630611388447381935e-08,4.939318814343874108e-08,5.248026240240366281e-08,5.556733666136858454e-08,5.865441092033350627e-08,6.174148517929843462e-08,6.482855943826336297e-08,6.791563369722829132e-08,7.100270795619321967e-08,7.408978221515814801e-08,7.717685647412307636e-08,8.026393073308800471e-08,8.335100499205293306e-08,8.643807925101786141e-08,8.952515350998278976e-08,9.261222776894771811e-08,9.569930202791264645e-08,9.878637628687757480e-08,1.018734505458425032e-07,1.049605248048074315e-07,1.080475990637723598e-07,1.111346733227372882e-07,1.142217475817022165e-07,1.173088218406671449e-07,1.203958960996320732e-07,1.234829703585970016e-07,1.265700446175619299e-07,1.296571188765268583e-07,1.327441931354917866e-07,1.358312673944567150e-07,1.389183416534216433e-07,1.420054159123865717e-07,1.450924901713515000e-07,1.481795644303164284e-07,1.512666386892813567e-07,1.543537129482462851e-07,1.574407872072112134e-07,1.605278614661761418e-07,1.636149357251410701e-07,1.667020099841059985e-07,1.697890842430709268e-07,1.728761585020358552e-07,1.759632327610007835e-07,1.790503070199657119e-07,1.821373812789306402e-07,1.852244555378955686e-07,1.883115297968604969e-07,1.913986040558254253e-07,1.944856783147903536e-07 +0.000000000000000000e+00,2.880911006500315340e-09,5.761822013000630679e-09,8.642733019500946019e-09,1.152364402600126136e-08,1.440455503250157670e-08,1.728546603900189204e-08,2.016637704550220738e-08,2.304728805200252272e-08,2.592819905850283806e-08,2.880911006500315340e-08,3.169002107150346874e-08,3.457093207800378408e-08,3.745184308450409941e-08,4.033275409100441475e-08,4.321366509750473009e-08,4.609457610400504543e-08,4.897548711050536077e-08,5.185639811700567611e-08,5.473730912350599145e-08,5.761822013000630679e-08,6.049913113650662875e-08,6.338004214300695071e-08,6.626095314950727266e-08,6.914186415600759462e-08,7.202277516250791658e-08,7.490368616900823853e-08,7.778459717550856049e-08,8.066550818200888245e-08,8.354641918850920441e-08,8.642733019500952636e-08,8.930824120150984832e-08,9.218915220801017028e-08,9.507006321451049223e-08,9.795097422101081419e-08,1.008318852275111361e-07,1.037127962340114581e-07,1.065937072405117801e-07,1.094746182470121020e-07,1.123555292535124240e-07,1.152364402600127459e-07,1.181173512665130679e-07,1.209982622730133898e-07,1.238791732795137118e-07,1.267600842860140338e-07,1.296409952925143557e-07,1.325219062990146777e-07,1.354028173055149996e-07,1.382837283120153216e-07,1.411646393185156435e-07,1.440455503250159655e-07,1.469264613315162875e-07,1.498073723380166094e-07,1.526882833445169314e-07,1.555691943510172533e-07,1.584501053575175753e-07,1.613310163640178972e-07,1.642119273705182192e-07,1.670928383770185412e-07,1.699737493835188631e-07,1.728546603900191851e-07,1.757355713965195070e-07,1.786164824030198290e-07,1.814973934095201509e-07 +0.000000000000000000e+00,4.463654782183987374e-09,8.927309564367974748e-09,1.339096434655196212e-08,1.785461912873594950e-08,2.231827391091993687e-08,2.678192869310392425e-08,3.124558347528791162e-08,3.570923825747189899e-08,4.017289303965588637e-08,4.463654782183987374e-08,4.910020260402386112e-08,5.356385738620784849e-08,5.802751216839183586e-08,6.249116695057582324e-08,6.695482173275980400e-08,7.141847651494378475e-08,7.588213129712776551e-08,8.034578607931174627e-08,8.480944086149572702e-08,8.927309564367970778e-08,9.373675042586368854e-08,9.820040520804766929e-08,1.026640599902316500e-07,1.071277147724156308e-07,1.115913695545996116e-07,1.160550243367835923e-07,1.205186791189675731e-07,1.249823339011515671e-07,1.294459886833355611e-07,1.339096434655195551e-07,1.383732982477035490e-07,1.428369530298875430e-07,1.473006078120715370e-07,1.517642625942555310e-07,1.562279173764395250e-07,1.606915721586235190e-07,1.651552269408075130e-07,1.696188817229915070e-07,1.740825365051755010e-07,1.785461912873594950e-07,1.830098460695434890e-07,1.874735008517274830e-07,1.919371556339114769e-07,1.964008104160954709e-07,2.008644651982794649e-07,2.053281199804634589e-07,2.097917747626474529e-07,2.142554295448314469e-07,2.187190843270154409e-07,2.231827391091994349e-07,2.276463938913834289e-07,2.321100486735674229e-07,2.365737034557514169e-07,2.410373582379354109e-07,2.455010130201194048e-07,2.499646678023033988e-07,2.544283225844873928e-07,2.588919773666713868e-07,2.633556321488553808e-07,2.678192869310393748e-07,2.722829417132233688e-07,2.767465964954073628e-07,2.812102512775913568e-07 +0.000000000000000000e+00,3.405814428569166483e-09,6.811628857138332966e-09,1.021744328570749904e-08,1.362325771427666428e-08,1.702907214284582952e-08,2.043488657141499476e-08,2.384070099998416000e-08,2.724651542855332525e-08,3.065232985712249049e-08,3.405814428569165904e-08,3.746395871426082759e-08,4.086977314282999614e-08,4.427558757139916469e-08,4.768140199996833324e-08,5.108721642853750179e-08,5.449303085710667034e-08,5.789884528567583890e-08,6.130465971424500745e-08,6.471047414281417600e-08,6.811628857138334455e-08,7.152210299995251310e-08,7.492791742852168165e-08,7.833373185709085020e-08,8.173954628566001875e-08,8.514536071422918730e-08,8.855117514279835585e-08,9.195698957136752440e-08,9.536280399993669296e-08,9.876861842850586151e-08,1.021744328570750301e-07,1.055802472856441986e-07,1.089860617142133672e-07,1.123918761427825357e-07,1.157976905713517043e-07,1.192035049999208728e-07,1.226093194284900414e-07,1.260151338570592099e-07,1.294209482856283785e-07,1.328267627141975470e-07,1.362325771427667156e-07,1.396383915713358841e-07,1.430442059999050527e-07,1.464500204284742212e-07,1.498558348570433898e-07,1.532616492856125583e-07,1.566674637141817269e-07,1.600732781427508954e-07,1.634790925713200640e-07,1.668849069998892325e-07,1.702907214284584011e-07,1.736965358570275696e-07,1.771023502855967382e-07,1.805081647141659067e-07,1.839139791427350753e-07,1.873197935713042438e-07,1.907256079998734124e-07,1.941314224284425809e-07,1.975372368570117495e-07,2.009430512855809180e-07,2.043488657141500866e-07,2.077546801427192551e-07,2.111604945712884237e-07,2.145663089998575922e-07 +0.000000000000000000e+00,3.264382716976882305e-09,6.528765433953764610e-09,9.793148150930646502e-09,1.305753086790752757e-08,1.632191358488441028e-08,1.958629630186129300e-08,2.285067901883817572e-08,2.611506173581505844e-08,2.937944445279194116e-08,3.264382716976882057e-08,3.590820988674569998e-08,3.917259260372257939e-08,4.243697532069945880e-08,4.570135803767633821e-08,4.896574075465321762e-08,5.223012347163009703e-08,5.549450618860697644e-08,5.875888890558385585e-08,6.202327162256073526e-08,6.528765433953761467e-08,6.855203705651449408e-08,7.181641977349137349e-08,7.508080249046825290e-08,7.834518520744513231e-08,8.160956792442201172e-08,8.487395064139889113e-08,8.813833335837577054e-08,9.140271607535264995e-08,9.466709879232952936e-08,9.793148150930640877e-08,1.011958642262832882e-07,1.044602469432601676e-07,1.077246296602370470e-07,1.109890123772139264e-07,1.142533950941908058e-07,1.175177778111676852e-07,1.207821605281445779e-07,1.240465432451214705e-07,1.273109259620983632e-07,1.305753086790752558e-07,1.338396913960521485e-07,1.371040741130290411e-07,1.403684568300059337e-07,1.436328395469828264e-07,1.468972222639597190e-07,1.501616049809366117e-07,1.534259876979135043e-07,1.566903704148903970e-07,1.599547531318672896e-07,1.632191358488441823e-07,1.664835185658210749e-07,1.697479012827979675e-07,1.730122839997748602e-07,1.762766667167517528e-07,1.795410494337286455e-07,1.828054321507055381e-07,1.860698148676824308e-07,1.893341975846593234e-07,1.925985803016362161e-07,1.958629630186131087e-07,1.991273457355900013e-07,2.023917284525668940e-07,2.056561111695437866e-07 +0.000000000000000000e+00,4.852258596290998152e-09,9.704517192581996304e-09,1.455677578887299528e-08,1.940903438516399592e-08,2.426129298145499655e-08,2.911355157774599719e-08,3.396581017403700113e-08,3.881806877032800507e-08,4.367032736661900901e-08,4.852258596291001296e-08,5.337484455920101690e-08,5.822710315549202084e-08,6.307936175178302478e-08,6.793162034807402873e-08,7.278387894436503267e-08,7.763613754065603661e-08,8.248839613694704055e-08,8.734065473323804449e-08,9.219291332952904844e-08,9.704517192582005238e-08,1.018974305221110563e-07,1.067496891184020603e-07,1.116019477146930642e-07,1.164542063109840681e-07,1.213064649072750721e-07,1.261587235035660760e-07,1.310109820998570800e-07,1.358632406961480839e-07,1.407154992924390879e-07,1.455677578887300918e-07,1.504200164850210957e-07,1.552722750813120997e-07,1.601245336776031036e-07,1.649767922738941076e-07,1.698290508701851115e-07,1.746813094664761155e-07,1.795335680627671194e-07,1.843858266590581233e-07,1.892380852553491273e-07,1.940903438516401312e-07,1.989426024479311352e-07,2.037948610442221391e-07,2.086471196405131431e-07,2.134993782368041470e-07,2.183516368330951509e-07,2.232038954293861549e-07,2.280561540256771588e-07,2.329084126219681628e-07,2.377606712182591667e-07,2.426129298145501971e-07,2.474651884108412540e-07,2.523174470071323109e-07,2.571697056034233678e-07,2.620219641997144247e-07,2.668742227960054815e-07,2.717264813922965384e-07,2.765787399885875953e-07,2.814309985848786522e-07,2.862832571811697091e-07,2.911355157774607659e-07,2.959877743737518228e-07,3.008400329700428797e-07,3.056922915663339366e-07 +0.000000000000000000e+00,3.405814428575010928e-09,6.811628857150021855e-09,1.021744328572503196e-08,1.362325771430004206e-08,1.702907214287505216e-08,2.043488657145006391e-08,2.384070100002507567e-08,2.724651542860008742e-08,3.065232985717509918e-08,3.405814428575011093e-08,3.746395871432512268e-08,4.086977314290013444e-08,4.427558757147514619e-08,4.768140200005015795e-08,5.108721642862516970e-08,5.449303085720018146e-08,5.789884528577519321e-08,6.130465971435019835e-08,6.471047414292520349e-08,6.811628857150020863e-08,7.152210300007521376e-08,7.492791742865021890e-08,7.833373185722522404e-08,8.173954628580022917e-08,8.514536071437523431e-08,8.855117514295023945e-08,9.195698957152524459e-08,9.536280400010024972e-08,9.876861842867525486e-08,1.021744328572502600e-07,1.055802472858252651e-07,1.089860617144002703e-07,1.123918761429752754e-07,1.157976905715502805e-07,1.192035050001252857e-07,1.226093194287002908e-07,1.260151338572753092e-07,1.294209482858503276e-07,1.328267627144253459e-07,1.362325771430003643e-07,1.396383915715753827e-07,1.430442060001504011e-07,1.464500204287254194e-07,1.498558348573004378e-07,1.532616492858754562e-07,1.566674637144504745e-07,1.600732781430254929e-07,1.634790925716005113e-07,1.668849070001755297e-07,1.702907214287505480e-07,1.736965358573255664e-07,1.771023502859005848e-07,1.805081647144756032e-07,1.839139791430506215e-07,1.873197935716256399e-07,1.907256080002006583e-07,1.941314224287756766e-07,1.975372368573506950e-07,2.009430512859257134e-07,2.043488657145007318e-07,2.077546801430757501e-07,2.111604945716507685e-07,2.145663090002257869e-07 +0.000000000000000000e+00,3.264382716983317357e-09,6.528765433966634713e-09,9.793148150949951243e-09,1.305753086793326777e-08,1.632191358491658430e-08,1.958629630189990249e-08,2.285067901888322067e-08,2.611506173586653885e-08,2.937944445284985704e-08,3.264382716983317522e-08,3.590820988681649340e-08,3.917259260379981159e-08,4.243697532078312977e-08,4.570135803776644796e-08,4.896574075474976614e-08,5.223012347173308432e-08,5.549450618871640251e-08,5.875888890569972069e-08,6.202327162268303888e-08,6.528765433966636368e-08,6.855203705664968848e-08,7.181641977363301328e-08,7.508080249061633808e-08,7.834518520759966288e-08,8.160956792458298768e-08,8.487395064156631248e-08,8.813833335854963729e-08,9.140271607553296209e-08,9.466709879251628689e-08,9.793148150949961169e-08,1.011958642264829365e-07,1.044602469434662613e-07,1.077246296604495861e-07,1.109890123774329109e-07,1.142533950944162357e-07,1.175177778113995605e-07,1.207821605283828853e-07,1.240465432453662101e-07,1.273109259623495349e-07,1.305753086793328597e-07,1.338396913963161845e-07,1.371040741132995093e-07,1.403684568302828341e-07,1.436328395472661589e-07,1.468972222642494837e-07,1.501616049812328085e-07,1.534259876982161333e-07,1.566903704151994581e-07,1.599547531321827829e-07,1.632191358491661077e-07,1.664835185661494325e-07,1.697479012831327573e-07,1.730122840001160821e-07,1.762766667170994069e-07,1.795410494340827317e-07,1.828054321510660565e-07,1.860698148680493813e-07,1.893341975850327061e-07,1.925985803020160309e-07,1.958629630189993557e-07,1.991273457359826805e-07,2.023917284529660053e-07,2.056561111699493301e-07 +0.000000000000000000e+00,4.852258596296950544e-09,9.704517192593901088e-09,1.455677578889085246e-08,1.940903438518780548e-08,2.426129298148475851e-08,2.911355157778171154e-08,3.396581017407866456e-08,3.881806877037561759e-08,4.367032736667257061e-08,4.852258596296952364e-08,5.337484455926647666e-08,5.822710315556342969e-08,6.307936175186038271e-08,6.793162034815732912e-08,7.278387894445427553e-08,7.763613754075122194e-08,8.248839613704816835e-08,8.734065473334511475e-08,9.219291332964206116e-08,9.704517192593900757e-08,1.018974305222359540e-07,1.067496891185329004e-07,1.116019477148298468e-07,1.164542063111267932e-07,1.213064649074237528e-07,1.261587235037207125e-07,1.310109821000176721e-07,1.358632406963146318e-07,1.407154992926115914e-07,1.455677578889085511e-07,1.504200164852055107e-07,1.552722750815024703e-07,1.601245336777994300e-07,1.649767922740963896e-07,1.698290508703933493e-07,1.746813094666903089e-07,1.795335680629872686e-07,1.843858266592842282e-07,1.892380852555811878e-07,1.940903438518781475e-07,1.989426024481751071e-07,2.037948610444720668e-07,2.086471196407690264e-07,2.134993782370659861e-07,2.183516368333629457e-07,2.232038954296599053e-07,2.280561540259568650e-07,2.329084126222538246e-07,2.377606712185507843e-07,2.426129298148477174e-07,2.474651884111446506e-07,2.523174470074415838e-07,2.571697056037385170e-07,2.620219642000354501e-07,2.668742227963323833e-07,2.717264813926293165e-07,2.765787399889262497e-07,2.814309985852231828e-07,2.862832571815201160e-07,2.911355157778170492e-07,2.959877743741139824e-07,3.008400329704109155e-07,3.056922915667078487e-07 +0.000000000000000000e+00,3.569528177309299275e-09,7.139056354618598550e-09,1.070858453192789782e-08,1.427811270923719710e-08,1.784764088654649803e-08,2.141716906385579896e-08,2.498669724116509989e-08,2.855622541847440082e-08,3.212575359578370175e-08,3.569528177309300268e-08,3.926480995040230361e-08,4.283433812771160453e-08,4.640386630502090546e-08,4.997339448233020639e-08,5.354292265963950732e-08,5.711245083694880825e-08,6.068197901425810918e-08,6.425150719156740349e-08,6.782103536887669780e-08,7.139056354618599212e-08,7.496009172349528643e-08,7.852961990080458074e-08,8.209914807811387505e-08,8.566867625542316936e-08,8.923820443273246368e-08,9.280773261004175799e-08,9.637726078735105230e-08,9.994678896466034661e-08,1.035163171419696409e-07,1.070858453192789352e-07,1.106553734965882295e-07,1.142249016738975239e-07,1.177944298512068182e-07,1.213639580285161125e-07,1.249334862058253936e-07,1.285030143831346746e-07,1.320725425604439557e-07,1.356420707377532368e-07,1.392115989150625179e-07,1.427811270923717989e-07,1.463506552696810800e-07,1.499201834469903611e-07,1.534897116242996422e-07,1.570592398016089233e-07,1.606287679789182043e-07,1.641982961562274854e-07,1.677678243335367665e-07,1.713373525108460476e-07,1.749068806881553286e-07,1.784764088654646097e-07,1.820459370427738908e-07,1.856154652200831719e-07,1.891849933973924529e-07,1.927545215747017340e-07,1.963240497520110151e-07,1.998935779293202962e-07,2.034631061066295773e-07,2.070326342839388583e-07,2.106021624612481394e-07,2.141716906385574205e-07,2.177412188158667016e-07,2.213107469931759826e-07,2.248802751704852637e-07 +0.000000000000000000e+00,3.509030496008513556e-09,7.018060992017027113e-09,1.052709148802554150e-08,1.403612198403405588e-08,1.754515248004257026e-08,2.105418297605108299e-08,2.456321347205959572e-08,2.807224396806810845e-08,3.158127446407661787e-08,3.509030496008512729e-08,3.859933545609363671e-08,4.210836595210214613e-08,4.561739644811065555e-08,4.912642694411916498e-08,5.263545744012767440e-08,5.614448793613618382e-08,5.965351843214469324e-08,6.316254892815320927e-08,6.667157942416172531e-08,7.018060992017024135e-08,7.368964041617875739e-08,7.719867091218727343e-08,8.070770140819578946e-08,8.421673190420430550e-08,8.772576240021282154e-08,9.123479289622133758e-08,9.474382339222985362e-08,9.825285388823836965e-08,1.017618843842468857e-07,1.052709148802554017e-07,1.087799453762639178e-07,1.122889758722724338e-07,1.157980063682809498e-07,1.193070368642894659e-07,1.228160673602979687e-07,1.263250978563064715e-07,1.298341283523149743e-07,1.333431588483234771e-07,1.368521893443319799e-07,1.403612198403404827e-07,1.438702503363489855e-07,1.473792808323574883e-07,1.508883113283659911e-07,1.543973418243744939e-07,1.579063723203829967e-07,1.614154028163914995e-07,1.649244333124000023e-07,1.684334638084085051e-07,1.719424943044170079e-07,1.754515248004255107e-07,1.789605552964340135e-07,1.824695857924425163e-07,1.859786162884510191e-07,1.894876467844595219e-07,1.929966772804680247e-07,1.965057077764765276e-07,2.000147382724850304e-07,2.035237687684935332e-07,2.070327992645020360e-07,2.105418297605105388e-07,2.140508602565190416e-07,2.175598907525275444e-07,2.210689212485360472e-07 +0.000000000000000000e+00,5.062080754754501180e-09,1.012416150950900236e-08,1.518624226426350520e-08,2.024832301901800803e-08,2.531040377377251086e-08,3.037248452852701039e-08,3.543456528328150992e-08,4.049664603803600944e-08,4.555872679279050897e-08,5.062080754754500849e-08,5.568288830229950802e-08,6.074496905705400755e-08,6.580704981180850707e-08,7.086913056656300660e-08,7.593121132131750612e-08,8.099329207607200565e-08,8.605537283082650518e-08,9.111745358558100470e-08,9.617953434033550423e-08,1.012416150950900038e-07,1.063036958498445033e-07,1.113657766045990028e-07,1.164278573593535023e-07,1.214899381141079886e-07,1.265520188688624617e-07,1.316140996236169347e-07,1.366761803783714078e-07,1.417382611331258808e-07,1.468003418878803539e-07,1.518624226426348270e-07,1.569245033973893000e-07,1.619865841521437731e-07,1.670486649068982461e-07,1.721107456616527192e-07,1.771728264164071922e-07,1.822349071711616653e-07,1.872969879259161384e-07,1.923590686806706114e-07,1.974211494354250845e-07,2.024832301901795575e-07,2.075453109449340306e-07,2.126073916996885036e-07,2.176694724544429767e-07,2.227315532091974497e-07,2.277936339639519228e-07,2.328557147187063959e-07,2.379177954734608689e-07,2.429798762282153420e-07,2.480419569829698150e-07,2.531040377377242881e-07,2.581661184924787611e-07,2.632281992472332342e-07,2.682902800019877073e-07,2.733523607567421803e-07,2.784144415114966534e-07,2.834765222662511264e-07,2.885386030210055995e-07,2.936006837757600725e-07,2.986627645305145456e-07,3.037248452852690186e-07,3.087869260400234917e-07,3.138490067947779648e-07,3.189110875495324378e-07 +0.000000000000000000e+00,3.569528177314083274e-09,7.139056354628166548e-09,1.070858453194224941e-08,1.427811270925633144e-08,1.784764088657041348e-08,2.141716906388449551e-08,2.498669724119857754e-08,2.855622541851265957e-08,3.212575359582674161e-08,3.569528177314082695e-08,3.926480995045491229e-08,4.283433812776899763e-08,4.640386630508308298e-08,4.997339448239716832e-08,5.354292265971125366e-08,5.711245083702533900e-08,6.068197901433942434e-08,6.425150719165350969e-08,6.782103536896759503e-08,7.139056354628168037e-08,7.496009172359576571e-08,7.852961990090985105e-08,8.209914807822393640e-08,8.566867625553802174e-08,8.923820443285210708e-08,9.280773261016619242e-08,9.637726078748027776e-08,9.994678896479436311e-08,1.035163171421084484e-07,1.070858453194225338e-07,1.106553734967366191e-07,1.142249016740507045e-07,1.177944298513647898e-07,1.213639580286788752e-07,1.249334862059929473e-07,1.285030143833070194e-07,1.320725425606210915e-07,1.356420707379351636e-07,1.392115989152492357e-07,1.427811270925633078e-07,1.463506552698773799e-07,1.499201834471914520e-07,1.534897116245055241e-07,1.570592398018195962e-07,1.606287679791336683e-07,1.641982961564477404e-07,1.677678243337618125e-07,1.713373525110758847e-07,1.749068806883899568e-07,1.784764088657040289e-07,1.820459370430181010e-07,1.856154652203321731e-07,1.891849933976462452e-07,1.927545215749603173e-07,1.963240497522743894e-07,1.998935779295884615e-07,2.034631061069025336e-07,2.070326342842166057e-07,2.106021624615306778e-07,2.141716906388447499e-07,2.177412188161588220e-07,2.213107469934728942e-07,2.248802751707869663e-07 +0.000000000000000000e+00,3.509030496013808753e-09,7.018060992027617506e-09,1.052709148804142667e-08,1.403612198405523667e-08,1.754515248006904666e-08,2.105418297608285665e-08,2.456321347209666665e-08,2.807224396811047664e-08,3.158127446412428995e-08,3.509030496013809994e-08,3.859933545615190993e-08,4.210836595216571993e-08,4.561739644817952992e-08,4.912642694419333991e-08,5.263545744020714991e-08,5.614448793622095990e-08,5.965351843223476990e-08,6.316254892824857989e-08,6.667157942426238988e-08,7.018060992027619988e-08,7.368964041629000987e-08,7.719867091230381987e-08,8.070770140831762986e-08,8.421673190433143985e-08,8.772576240034524985e-08,9.123479289635905984e-08,9.474382339237286984e-08,9.825285388838667983e-08,1.017618843844004898e-07,1.052709148804142998e-07,1.087799453764281098e-07,1.122889758724419198e-07,1.157980063684557298e-07,1.193070368644695398e-07,1.228160673604833630e-07,1.263250978564971863e-07,1.298341283525110095e-07,1.333431588485248327e-07,1.368521893445386559e-07,1.403612198405524792e-07,1.438702503365663024e-07,1.473792808325801256e-07,1.508883113285939489e-07,1.543973418246077721e-07,1.579063723206215953e-07,1.614154028166354185e-07,1.649244333126492418e-07,1.684334638086630650e-07,1.719424943046768882e-07,1.754515248006907115e-07,1.789605552967045347e-07,1.824695857927183579e-07,1.859786162887321811e-07,1.894876467847460044e-07,1.929966772807598276e-07,1.965057077767736508e-07,2.000147382727874741e-07,2.035237687688012973e-07,2.070327992648151205e-07,2.105418297608289437e-07,2.140508602568427670e-07,2.175598907528565902e-07,2.210689212488704134e-07 +0.000000000000000000e+00,5.062080754759370793e-09,1.012416150951874159e-08,1.518624226427811321e-08,2.024832301903748648e-08,2.531040377379685975e-08,3.037248452855623303e-08,3.543456528331560299e-08,4.049664603807497296e-08,4.555872679283434292e-08,5.062080754759371289e-08,5.568288830235308285e-08,6.074496905711245282e-08,6.580704981187182279e-08,7.086913056663119275e-08,7.593121132139056272e-08,8.099329207614993268e-08,8.605537283090930265e-08,9.111745358566867261e-08,9.617953434042804258e-08,1.012416150951874125e-07,1.063036958499467825e-07,1.113657766047061525e-07,1.164278573594655224e-07,1.214899381142248792e-07,1.265520188689842227e-07,1.316140996237435662e-07,1.366761803785029097e-07,1.417382611332622532e-07,1.468003418880215966e-07,1.518624226427809401e-07,1.569245033975402836e-07,1.619865841522996271e-07,1.670486649070589706e-07,1.721107456618183141e-07,1.771728264165776576e-07,1.822349071713370011e-07,1.872969879260963446e-07,1.923590686808556881e-07,1.974211494356150316e-07,2.024832301903743751e-07,2.075453109451337186e-07,2.126073916998930621e-07,2.176694724546524056e-07,2.227315532094117491e-07,2.277936339641710926e-07,2.328557147189304361e-07,2.379177954736897796e-07,2.429798762284491231e-07,2.480419569832084666e-07,2.531040377379678101e-07,2.581661184927271536e-07,2.632281992474864970e-07,2.682902800022458405e-07,2.733523607570051840e-07,2.784144415117645275e-07,2.834765222665238710e-07,2.885386030212832145e-07,2.936006837760425580e-07,2.986627645308019015e-07,3.037248452855612450e-07,3.087869260403205885e-07,3.138490067950799320e-07,3.189110875498392755e-07 +0.000000000000000000e+00,3.560759658732484420e-09,7.121519317464968840e-09,1.068227897619745326e-08,1.424303863492993768e-08,1.780379829366242210e-08,2.136455795239490652e-08,2.492531761112739094e-08,2.848607726985987536e-08,3.204683692859235647e-08,3.560759658732483758e-08,3.916835624605731870e-08,4.272911590478979981e-08,4.628987556352228092e-08,4.985063522225476203e-08,5.341139488098724314e-08,5.697215453971972425e-08,6.053291419845220537e-08,6.409367385718468648e-08,6.765443351591716759e-08,7.121519317464964870e-08,7.477595283338212981e-08,7.833671249211461092e-08,8.189747215084709203e-08,8.545823180957957315e-08,8.901899146831205426e-08,9.257975112704453537e-08,9.614051078577701648e-08,9.970127044450949759e-08,1.032620301032419787e-07,1.068227897619744598e-07,1.103835494207069409e-07,1.139443090794394220e-07,1.175050687381719031e-07,1.210658283969043843e-07,1.246265880556368654e-07,1.281873477143693465e-07,1.317481073731018276e-07,1.353088670318343087e-07,1.388696266905667898e-07,1.424303863492992709e-07,1.459911460080317520e-07,1.495519056667642332e-07,1.531126653254967143e-07,1.566734249842291954e-07,1.602341846429616765e-07,1.637949443016941576e-07,1.673557039604266387e-07,1.709164636191591198e-07,1.744772232778916009e-07,1.780379829366240820e-07,1.815987425953565632e-07,1.851595022540890443e-07,1.887202619128215254e-07,1.922810215715540065e-07,1.958417812302864876e-07,1.994025408890189687e-07,2.029633005477514498e-07,2.065240602064839309e-07,2.100848198652164120e-07,2.136455795239488932e-07,2.172063391826813743e-07,2.207670988414138554e-07,2.243278585001463365e-07 +0.000000000000000000e+00,3.588419072630385642e-09,7.176838145260771285e-09,1.076525721789115734e-08,1.435367629052154422e-08,1.794209536315193276e-08,2.153051443578232130e-08,2.511893350841270984e-08,2.870735258104309837e-08,3.229577165367348691e-08,3.588419072630387876e-08,3.947260979893427060e-08,4.306102887156466245e-08,4.664944794419505430e-08,5.023786701682544614e-08,5.382628608945583799e-08,5.741470516208622983e-08,6.100312423471662168e-08,6.459154330734701353e-08,6.817996237997740537e-08,7.176838145260779722e-08,7.535680052523818906e-08,7.894521959786858091e-08,8.253363867049897276e-08,8.612205774312936460e-08,8.971047681575975645e-08,9.329889588839014830e-08,9.688731496102054014e-08,1.004757340336509320e-07,1.040641531062813238e-07,1.076525721789117157e-07,1.112409912515421075e-07,1.148294103241724994e-07,1.184178293968028912e-07,1.220062484694332963e-07,1.255946675420637014e-07,1.291830866146941065e-07,1.327715056873245115e-07,1.363599247599549166e-07,1.399483438325853217e-07,1.435367629052157268e-07,1.471251819778461319e-07,1.507136010504765369e-07,1.543020201231069420e-07,1.578904391957373471e-07,1.614788582683677522e-07,1.650672773409981573e-07,1.686556964136285624e-07,1.722441154862589674e-07,1.758325345588893725e-07,1.794209536315197776e-07,1.830093727041501827e-07,1.865977917767805878e-07,1.901862108494109928e-07,1.937746299220413979e-07,1.973630489946718030e-07,2.009514680673022081e-07,2.045398871399326132e-07,2.081283062125630182e-07,2.117167252851934233e-07,2.153051443578238284e-07,2.188935634304542335e-07,2.224819825030846386e-07,2.260704015757150436e-07 +0.000000000000000000e+00,5.084016613109591520e-09,1.016803322621918304e-08,1.525204983932877456e-08,2.033606645243836608e-08,2.542008306554795760e-08,3.050409967865754912e-08,3.558811629176714064e-08,4.067213290487673216e-08,4.575614951798632368e-08,5.084016613109591520e-08,5.592418274420550672e-08,6.100819935731509824e-08,6.609221597042468976e-08,7.117623258353428128e-08,7.626024919664387280e-08,8.134426580975346432e-08,8.642828242286305584e-08,9.151229903597264736e-08,9.659631564908223888e-08,1.016803322621918304e-07,1.067643488753014219e-07,1.118483654884110134e-07,1.169323821015206050e-07,1.220163987146301965e-07,1.271004153277398012e-07,1.321844319408494060e-07,1.372684485539590107e-07,1.423524651670686155e-07,1.474364817801782203e-07,1.525204983932878250e-07,1.576045150063974298e-07,1.626885316195070345e-07,1.677725482326166393e-07,1.728565648457262440e-07,1.779405814588358488e-07,1.830245980719454535e-07,1.881086146850550583e-07,1.931926312981646630e-07,1.982766479112742678e-07,2.033606645243838726e-07,2.084446811374934773e-07,2.135286977506030821e-07,2.186127143637126868e-07,2.236967309768222916e-07,2.287807475899318963e-07,2.338647642030415011e-07,2.389487808161511058e-07,2.440327974292607106e-07,2.491168140423703153e-07,2.542008306554799201e-07,2.592848472685895249e-07,2.643688638816991296e-07,2.694528804948087344e-07,2.745368971079183391e-07,2.796209137210279439e-07,2.847049303341375486e-07,2.897889469472471534e-07,2.948729635603567581e-07,2.999569801734663629e-07,3.050409967865759676e-07,3.101250133996855724e-07,3.152090300127951772e-07,3.202930466259047819e-07 +0.000000000000000000e+00,3.560759658736329983e-09,7.121519317472659966e-09,1.068227897620899078e-08,1.424303863494532159e-08,1.780379829368165240e-08,2.136455795241798155e-08,2.492531761115431071e-08,2.848607726989063986e-08,3.204683692862696571e-08,3.560759658736329156e-08,3.916835624609961740e-08,4.272911590483594325e-08,4.628987556357226910e-08,4.985063522230859495e-08,5.341139488104492079e-08,5.697215453978124664e-08,6.053291419851757249e-08,6.409367385725390495e-08,6.765443351599023741e-08,7.121519317472656988e-08,7.477595283346290234e-08,7.833671249219923481e-08,8.189747215093556727e-08,8.545823180967189974e-08,8.901899146840823220e-08,9.257975112714456467e-08,9.614051078588089713e-08,9.970127044461722959e-08,1.032620301033535621e-07,1.068227897620898945e-07,1.103835494208262270e-07,1.139443090795625595e-07,1.175050687382988919e-07,1.210658283970352244e-07,1.246265880557715436e-07,1.281873477145078628e-07,1.317481073732441821e-07,1.353088670319805013e-07,1.388696266907168205e-07,1.424303863494531398e-07,1.459911460081894590e-07,1.495519056669257782e-07,1.531126653256620974e-07,1.566734249843984167e-07,1.602341846431347359e-07,1.637949443018710551e-07,1.673557039606073744e-07,1.709164636193436936e-07,1.744772232780800128e-07,1.780379829368163321e-07,1.815987425955526513e-07,1.851595022542889705e-07,1.887202619130252897e-07,1.922810215717616090e-07,1.958417812304979282e-07,1.994025408892342474e-07,2.029633005479705667e-07,2.065240602067068859e-07,2.100848198654432051e-07,2.136455795241795243e-07,2.172063391829158436e-07,2.207670988416521628e-07,2.243278585003884820e-07 +0.000000000000000000e+00,3.588419072634681605e-09,7.176838145269363210e-09,1.076525721790404481e-08,1.435367629053872642e-08,1.794209536317340637e-08,2.153051443580808632e-08,2.511893350844276627e-08,2.870735258107744622e-08,3.229577165371212617e-08,3.588419072634680612e-08,3.947260979898148607e-08,4.306102887161616602e-08,4.664944794425084597e-08,5.023786701688552592e-08,5.382628608952020587e-08,5.741470516215488582e-08,6.100312423478957239e-08,6.459154330742426558e-08,6.817996238005895876e-08,7.176838145269365195e-08,7.535680052532834513e-08,7.894521959796303832e-08,8.253363867059773150e-08,8.612205774323242469e-08,8.971047681586711787e-08,9.329889588850181106e-08,9.688731496113650425e-08,1.004757340337711974e-07,1.040641531064058906e-07,1.076525721790405838e-07,1.112409912516752770e-07,1.148294103243099702e-07,1.184178293969446634e-07,1.220062484695793565e-07,1.255946675422140497e-07,1.291830866148487429e-07,1.327715056874834361e-07,1.363599247601181293e-07,1.399483438327528225e-07,1.435367629053875157e-07,1.471251819780222088e-07,1.507136010506569020e-07,1.543020201232915952e-07,1.578904391959262884e-07,1.614788582685609816e-07,1.650672773411956748e-07,1.686556964138303680e-07,1.722441154864650611e-07,1.758325345590997543e-07,1.794209536317344475e-07,1.830093727043691407e-07,1.865977917770038339e-07,1.901862108496385271e-07,1.937746299222732202e-07,1.973630489949079134e-07,2.009514680675426066e-07,2.045398871401772998e-07,2.081283062128119930e-07,2.117167252854466862e-07,2.153051443580813794e-07,2.188935634307160725e-07,2.224819825033507657e-07,2.260704015759854589e-07 +0.000000000000000000e+00,5.084016613113497467e-09,1.016803322622699493e-08,1.525204983934049405e-08,2.033606645245399318e-08,2.542008306556749230e-08,3.050409967868098811e-08,3.558811629179448392e-08,4.067213290490797973e-08,4.575614951802147555e-08,5.084016613113497136e-08,5.592418274424846717e-08,6.100819935736196298e-08,6.609221597047545880e-08,7.117623258358895461e-08,7.626024919670245042e-08,8.134426580981594623e-08,8.642828242292944204e-08,9.151229903604293786e-08,9.659631564915643367e-08,1.016803322622699295e-07,1.067643488753834253e-07,1.118483654884969211e-07,1.169323821016104169e-07,1.220163987147238995e-07,1.271004153278373688e-07,1.321844319409508382e-07,1.372684485540643075e-07,1.423524651671777769e-07,1.474364817802912462e-07,1.525204983934047156e-07,1.576045150065181849e-07,1.626885316196316542e-07,1.677725482327451236e-07,1.728565648458585929e-07,1.779405814589720623e-07,1.830245980720855316e-07,1.881086146851990009e-07,1.931926312983124703e-07,1.982766479114259396e-07,2.033606645245394090e-07,2.084446811376528783e-07,2.135286977507663477e-07,2.186127143638798170e-07,2.236967309769932863e-07,2.287807475901067557e-07,2.338647642032202250e-07,2.389487808163336944e-07,2.440327974294471637e-07,2.491168140425606331e-07,2.542008306556741024e-07,2.592848472687875717e-07,2.643688638819010411e-07,2.694528804950145104e-07,2.745368971081279798e-07,2.796209137212414491e-07,2.847049303343549185e-07,2.897889469474683878e-07,2.948729635605818571e-07,2.999569801736953265e-07,3.050409967868087958e-07,3.101250133999222652e-07,3.152090300130357345e-07,3.202930466261492039e-07 +0.000000000000000000e+00,3.489011322350124156e-09,6.978022644700248313e-09,1.046703396705037330e-08,1.395604528940049828e-08,1.744505661175062326e-08,2.093406793410074659e-08,2.442307925645086992e-08,2.791209057880099325e-08,3.140110190115111327e-08,3.489011322350123329e-08,3.837912454585135331e-08,4.186813586820147333e-08,4.535714719055159335e-08,4.884615851290171337e-08,5.233516983525183339e-08,5.582418115760195341e-08,5.931319247995207343e-08,6.280220380230220007e-08,6.629121512465232671e-08,6.978022644700245335e-08,7.326923776935257999e-08,7.675824909170270662e-08,8.024726041405283326e-08,8.373627173640295990e-08,8.722528305875308654e-08,9.071429438110321317e-08,9.420330570345333981e-08,9.769231702580346645e-08,1.011813283481535931e-07,1.046703396705037197e-07,1.081593509928538464e-07,1.116483623152039730e-07,1.151373736375540996e-07,1.186263849599042263e-07,1.221153962822543661e-07,1.256044076046045060e-07,1.290934189269546459e-07,1.325824302493047858e-07,1.360714415716549256e-07,1.395604528940050655e-07,1.430494642163552054e-07,1.465384755387053453e-07,1.500274868610554851e-07,1.535164981834056250e-07,1.570055095057557649e-07,1.604945208281059047e-07,1.639835321504560446e-07,1.674725434728061845e-07,1.709615547951563244e-07,1.744505661175064642e-07,1.779395774398566041e-07,1.814285887622067440e-07,1.849176000845568839e-07,1.884066114069070237e-07,1.918956227292571636e-07,1.953846340516073035e-07,1.988736453739574433e-07,2.023626566963075832e-07,2.058516680186577231e-07,2.093406793410078630e-07,2.128296906633580028e-07,2.163187019857081427e-07,2.198077133080582826e-07 +0.000000000000000000e+00,3.489011322353528005e-09,6.978022644707056009e-09,1.046703396706058401e-08,1.395604528941411202e-08,1.744505661176764002e-08,2.093406793412116803e-08,2.442307925647469603e-08,2.791209057882822404e-08,3.140110190118175204e-08,3.489011322353528005e-08,3.837912454588880805e-08,4.186813586824233605e-08,4.535714719059586406e-08,4.884615851294939206e-08,5.233516983530292007e-08,5.582418115765644807e-08,5.931319248000997608e-08,6.280220380236350408e-08,6.629121512471703209e-08,6.978022644707056009e-08,7.326923776942408809e-08,7.675824909177761610e-08,8.024726041413114410e-08,8.373627173648467211e-08,8.722528305883820011e-08,9.071429438119172812e-08,9.420330570354525612e-08,9.769231702589878413e-08,1.011813283482523121e-07,1.046703396706058401e-07,1.081593509929593681e-07,1.116483623153128961e-07,1.151373736376664241e-07,1.186263849600199522e-07,1.221153962823734802e-07,1.256044076047270082e-07,1.290934189270805362e-07,1.325824302494340642e-07,1.360714415717875922e-07,1.395604528941411202e-07,1.430494642164946482e-07,1.465384755388481762e-07,1.500274868612017042e-07,1.535164981835552322e-07,1.570055095059087602e-07,1.604945208282622882e-07,1.639835321506158162e-07,1.674725434729693442e-07,1.709615547953228722e-07,1.744505661176764002e-07,1.779395774400299282e-07,1.814285887623834562e-07,1.849176000847369842e-07,1.884066114070905122e-07,1.918956227294440402e-07,1.953846340517975683e-07,1.988736453741510963e-07,2.023626566965046243e-07,2.058516680188581523e-07,2.093406793412116803e-07,2.128296906635652083e-07,2.163187019859187363e-07,2.198077133082722643e-07 +0.000000000000000000e+00,9.647082149484903060e-10,1.929416429896980612e-09,2.894124644845470918e-09,3.858832859793961224e-09,4.823541074742451944e-09,5.788249289690942663e-09,6.752957504639433383e-09,7.717665719587924102e-09,8.682373934536414822e-09,9.647082149484905542e-09,1.061179036443339626e-08,1.157649857938188698e-08,1.254120679433037770e-08,1.350591500927886842e-08,1.447062322422735914e-08,1.543533143917585151e-08,1.640003965412434389e-08,1.736474786907283626e-08,1.832945608402132864e-08,1.929416429896982101e-08,2.025887251391831338e-08,2.122358072886680576e-08,2.218828894381529813e-08,2.315299715876379051e-08,2.411770537371228288e-08,2.508241358866077525e-08,2.604712180360926763e-08,2.701183001855776000e-08,2.797653823350625238e-08,2.894124644845474475e-08,2.990595466340324043e-08,3.087066287835173611e-08,3.183537109330023180e-08,3.280007930824872748e-08,3.376478752319722316e-08,3.472949573814571885e-08,3.569420395309421453e-08,3.665891216804271021e-08,3.762362038299120589e-08,3.858832859793970158e-08,3.955303681288819726e-08,4.051774502783669294e-08,4.148245324278518862e-08,4.244716145773368431e-08,4.341186967268217999e-08,4.437657788763067567e-08,4.534128610257917135e-08,4.630599431752766704e-08,4.727070253247616272e-08,4.823541074742465840e-08,4.920011896237315409e-08,5.016482717732164977e-08,5.112953539227014545e-08,5.209424360721864113e-08,5.305895182216713682e-08,5.402366003711563250e-08,5.498836825206412818e-08,5.595307646701262386e-08,5.691778468196111955e-08,5.788249289690961523e-08,5.884720111185811091e-08,5.981190932680661321e-08,6.077661754175511551e-08 +0.000000000000000000e+00,2.918452434525794497e-09,5.836904869051588994e-09,8.755357303577383491e-09,1.167380973810317799e-08,1.459226217262897248e-08,1.751071460715476698e-08,2.042916704168055982e-08,2.334761947620635267e-08,2.626607191073214551e-08,2.918452434525793835e-08,3.210297677978373119e-08,3.502142921430952734e-08,3.793988164883532350e-08,4.085833408336111965e-08,4.377678651788691580e-08,4.669523895241271195e-08,4.961369138693850810e-08,5.253214382146430425e-08,5.545059625599010040e-08,5.836904869051589655e-08,6.128750112504169271e-08,6.420595355956748886e-08,6.712440599409328501e-08,7.004285842861908116e-08,7.296131086314487731e-08,7.587976329767067346e-08,7.879821573219646961e-08,8.171666816672226576e-08,8.463512060124806192e-08,8.755357303577385807e-08,9.047202547029965422e-08,9.339047790482545037e-08,9.630893033935124652e-08,9.922738277387704267e-08,1.021458352084028388e-07,1.050642876429286350e-07,1.079827400774544311e-07,1.109011925119802273e-07,1.138196449465060234e-07,1.167380973810318196e-07,1.196565498155576025e-07,1.225750022500833854e-07,1.254934546846091683e-07,1.284119071191349512e-07,1.313303595536607342e-07,1.342488119881865171e-07,1.371672644227123000e-07,1.400857168572380829e-07,1.430041692917638658e-07,1.459226217262896487e-07,1.488410741608154317e-07,1.517595265953412146e-07,1.546779790298669975e-07,1.575964314643927804e-07,1.605148838989185633e-07,1.634333363334443462e-07,1.663517887679701292e-07,1.692702412024959121e-07,1.721886936370216950e-07,1.751071460715474779e-07,1.780255985060732608e-07,1.809440509405990437e-07,1.838625033751248267e-07 +0.000000000000000000e+00,3.024877559840481827e-09,6.049755119680963654e-09,9.074632679521445480e-09,1.209951023936192731e-08,1.512438779920241079e-08,1.814926535904289427e-08,2.117414291888337775e-08,2.419902047872386123e-08,2.722389803856434471e-08,3.024877559840482819e-08,3.327365315824531168e-08,3.629853071808579516e-08,3.932340827792627864e-08,4.234828583776676212e-08,4.537316339760724560e-08,4.839804095744772908e-08,5.142291851728821256e-08,5.444779607712869604e-08,5.747267363696917952e-08,6.049755119680966962e-08,6.352242875665015972e-08,6.654730631649064982e-08,6.957218387633113992e-08,7.259706143617163002e-08,7.562193899601212012e-08,7.864681655585261021e-08,8.167169411569310031e-08,8.469657167553359041e-08,8.772144923537408051e-08,9.074632679521457061e-08,9.377120435505506071e-08,9.679608191489555081e-08,9.982095947473604090e-08,1.028458370345765310e-07,1.058707145944170211e-07,1.088955921542575112e-07,1.119204697140980013e-07,1.149453472739384914e-07,1.179702248337789815e-07,1.209951023936194716e-07,1.240199799534599617e-07,1.270448575133004518e-07,1.300697350731409419e-07,1.330946126329814320e-07,1.361194901928219221e-07,1.391443677526624122e-07,1.421692453125029023e-07,1.451941228723433924e-07,1.482190004321838825e-07,1.512438779920243726e-07,1.542687555518648627e-07,1.572936331117053528e-07,1.603185106715458429e-07,1.633433882313863330e-07,1.663682657912268231e-07,1.693931433510673132e-07,1.724180209109078033e-07,1.754428984707482934e-07,1.784677760305887835e-07,1.814926535904292736e-07,1.845175311502697637e-07,1.875424087101102538e-07,1.905672862699507439e-07 +0.000000000000000000e+00,1.547559318507720318e-09,3.095118637015440636e-09,4.642677955523160747e-09,6.190237274030880445e-09,7.737796592538600142e-09,9.285355911046319840e-09,1.083291522955403954e-08,1.238047454806175924e-08,1.392803386656947893e-08,1.547559318507720028e-08,1.702315250358492164e-08,1.857071182209264299e-08,2.011827114060036434e-08,2.166583045910808569e-08,2.321338977761580704e-08,2.476094909612352840e-08,2.630850841463124975e-08,2.785606773313897110e-08,2.940362705164669245e-08,3.095118637015441380e-08,3.249874568866213185e-08,3.404630500716984989e-08,3.559386432567756793e-08,3.714142364418528598e-08,3.868898296269300402e-08,4.023654228120072206e-08,4.178410159970844011e-08,4.333166091821615815e-08,4.487922023672387619e-08,4.642677955523159424e-08,4.797433887373931228e-08,4.952189819224703032e-08,5.106945751075474837e-08,5.261701682926246641e-08,5.416457614777018445e-08,5.571213546627790250e-08,5.725969478478562054e-08,5.880725410329333858e-08,6.035481342180105663e-08,6.190237274030877467e-08,6.344993205881649271e-08,6.499749137732421076e-08,6.654505069583192880e-08,6.809261001433964684e-08,6.964016933284736489e-08,7.118772865135508293e-08,7.273528796986280097e-08,7.428284728837051902e-08,7.583040660687823706e-08,7.737796592538595510e-08,7.892552524389367315e-08,8.047308456240139119e-08,8.202064388090910923e-08,8.356820319941682728e-08,8.511576251792454532e-08,8.666332183643226336e-08,8.821088115493998140e-08,8.975844047344769945e-08,9.130599979195541749e-08,9.285355911046313553e-08,9.440111842897085358e-08,9.594867774747857162e-08,9.749623706598628966e-08 +0.000000000000000000e+00,4.360629430778086419e-09,8.721258861556172839e-09,1.308188829233425926e-08,1.744251772311234568e-08,2.180314715389043210e-08,2.616377658466851852e-08,3.052440601544660494e-08,3.488503544622469135e-08,3.924566487700277777e-08,4.360629430778086419e-08,4.796692373855895061e-08,5.232755316933703703e-08,5.668818260011512345e-08,6.104881203089320987e-08,6.540944146167129629e-08,6.977007089244938271e-08,7.413070032322746913e-08,7.849132975400555555e-08,8.285195918478364197e-08,8.721258861556172839e-08,9.157321804633981481e-08,9.593384747711790123e-08,1.002944769078959876e-07,1.046551063386740741e-07,1.090157357694521605e-07,1.133763652002302469e-07,1.177369946310083333e-07,1.220976240617864197e-07,1.264582534925645062e-07,1.308188829233425926e-07,1.351795123541206790e-07,1.395401417848987654e-07,1.439007712156768518e-07,1.482614006464549383e-07,1.526220300772330247e-07,1.569826595080111111e-07,1.613432889387891975e-07,1.657039183695672839e-07,1.700645478003453704e-07,1.744251772311234568e-07,1.787858066619015432e-07,1.831464360926796296e-07,1.875070655234577160e-07,1.918676949542358025e-07,1.962283243850138889e-07,2.005889538157919753e-07,2.049495832465700617e-07,2.093102126773481481e-07,2.136708421081262345e-07,2.180314715389043210e-07,2.223921009696824074e-07,2.267527304004604938e-07,2.311133598312385802e-07,2.354739892620166666e-07,2.398346186927947266e-07,2.441952481235727865e-07,2.485558775543508465e-07,2.529165069851289064e-07,2.572771364159069664e-07,2.616377658466850263e-07,2.659983952774630863e-07,2.703590247082411462e-07,2.747196541390192062e-07 +0.000000000000000000e+00,1.613526283417496167e-09,3.227052566834992333e-09,4.840578850252488500e-09,6.454105133669984666e-09,8.067631417087481660e-09,9.681157700504978654e-09,1.129468398392247565e-08,1.290821026733997264e-08,1.452173655075746963e-08,1.613526283417496663e-08,1.774878911759246362e-08,1.936231540100996062e-08,2.097584168442745761e-08,2.258936796784495460e-08,2.420289425126245160e-08,2.581642053467994859e-08,2.742994681809744558e-08,2.904347310151494258e-08,3.065699938493243957e-08,3.227052566834993987e-08,3.388405195176744018e-08,3.549757823518494048e-08,3.711110451860244078e-08,3.872463080201994108e-08,4.033815708543744139e-08,4.195168336885494169e-08,4.356520965227244199e-08,4.517873593568994229e-08,4.679226221910744260e-08,4.840578850252494290e-08,5.001931478594244320e-08,5.163284106935994350e-08,5.324636735277744381e-08,5.485989363619494411e-08,5.647341991961244441e-08,5.808694620302994471e-08,5.970047248644745163e-08,6.131399876986495855e-08,6.292752505328246547e-08,6.454105133669997239e-08,6.615457762011747931e-08,6.776810390353498623e-08,6.938163018695249315e-08,7.099515647037000007e-08,7.260868275378750699e-08,7.422220903720501391e-08,7.583573532062252083e-08,7.744926160404002775e-08,7.906278788745753467e-08,8.067631417087504159e-08,8.228984045429254851e-08,8.390336673771005543e-08,8.551689302112756235e-08,8.713041930454506927e-08,8.874394558796257619e-08,9.035747187138008311e-08,9.197099815479759003e-08,9.358452443821509695e-08,9.519805072163260387e-08,9.681157700505011079e-08,9.842510328846761771e-08,1.000386295718851246e-07,1.016521558553026316e-07 +0.000000000000000000e+00,3.001377637723715651e-09,6.002755275447431303e-09,9.004132913171147368e-09,1.200551055089486426e-08,1.500688818861858115e-08,1.800826582634229804e-08,2.100964346406601494e-08,2.401102110178973183e-08,2.701239873951344872e-08,3.001377637723716230e-08,3.301515401496087589e-08,3.601653165268458947e-08,3.901790929040830305e-08,4.201928692813201664e-08,4.502066456585573022e-08,4.802204220357944380e-08,5.102341984130315739e-08,5.402479747902687097e-08,5.702617511675058455e-08,6.002755275447429814e-08,6.302893039219801172e-08,6.603030802992172530e-08,6.903168566764543889e-08,7.203306330536915247e-08,7.503444094309286606e-08,7.803581858081657964e-08,8.103719621854029322e-08,8.403857385626400681e-08,8.703995149398772039e-08,9.004132913171143397e-08,9.304270676943514756e-08,9.604408440715886114e-08,9.904546204488257472e-08,1.020468396826062883e-07,1.050482173203300019e-07,1.080495949580537155e-07,1.110509725957774291e-07,1.140523502335011426e-07,1.170537278712248562e-07,1.200551055089485698e-07,1.230564831466722702e-07,1.260578607843959705e-07,1.290592384221196709e-07,1.320606160598433712e-07,1.350619936975670715e-07,1.380633713352907719e-07,1.410647489730144722e-07,1.440661266107381726e-07,1.470675042484618729e-07,1.500688818861855733e-07,1.530702595239092736e-07,1.560716371616329740e-07,1.590730147993566743e-07,1.620743924370803747e-07,1.650757700748040750e-07,1.680771477125277754e-07,1.710785253502514757e-07,1.740799029879751761e-07,1.770812806256988764e-07,1.800826582634225768e-07,1.830840359011462771e-07,1.860854135388699775e-07,1.890867911765936778e-07 +0.000000000000000000e+00,4.510577346632115041e-09,9.021154693264230083e-09,1.353173203989634595e-08,1.804230938652846347e-08,2.255288673316058100e-08,2.706346407979269852e-08,3.157404142642481935e-08,3.608461877305694018e-08,4.059519611968906101e-08,4.510577346632118185e-08,4.961635081295330268e-08,5.412692815958542351e-08,5.863750550621754434e-08,6.314808285284966517e-08,6.765866019948178600e-08,7.216923754611390684e-08,7.667981489274602767e-08,8.119039223937814850e-08,8.570096958601026933e-08,9.021154693264239016e-08,9.472212427927451099e-08,9.923270162590663182e-08,1.037432789725387527e-07,1.082538563191708735e-07,1.127644336658029943e-07,1.172750110124351152e-07,1.217855883590672360e-07,1.262961657056993568e-07,1.308067430523314776e-07,1.353173203989635985e-07,1.398278977455957193e-07,1.443384750922278401e-07,1.488490524388599610e-07,1.533596297854920818e-07,1.578702071321242026e-07,1.623807844787563235e-07,1.668913618253884443e-07,1.714019391720205651e-07,1.759125165186526860e-07,1.804230938652848068e-07,1.849336712119169276e-07,1.894442485585490485e-07,1.939548259051811693e-07,1.984654032518132901e-07,2.029759805984454110e-07,2.074865579450775318e-07,2.119971352917096526e-07,2.165077126383417734e-07,2.210182899849738943e-07,2.255288673316060151e-07,2.300394446782381359e-07,2.345500220248702568e-07,2.390605993715023776e-07,2.435711767181344720e-07,2.480817540647665663e-07,2.525923314113986607e-07,2.571029087580307550e-07,2.616134861046628494e-07,2.661240634512949438e-07,2.706346407979270381e-07,2.751452181445591325e-07,2.796557954911912269e-07,2.841663728378233212e-07 +0.000000000000000000e+00,9.647082149579695890e-10,1.929416429915939178e-09,2.894124644873908974e-09,3.858832859831879183e-09,4.823541074789849393e-09,5.788249289747819602e-09,6.752957504705789812e-09,7.717665719663760021e-09,8.682373934621730230e-09,9.647082149579700440e-09,1.061179036453767065e-08,1.157649857949564086e-08,1.254120679445361107e-08,1.350591500941158128e-08,1.447062322436955149e-08,1.543533143932752335e-08,1.640003965428549521e-08,1.736474786924346708e-08,1.832945608420143894e-08,1.929416429915941081e-08,2.025887251411738267e-08,2.122358072907535453e-08,2.218828894403332640e-08,2.315299715899129826e-08,2.411770537394927012e-08,2.508241358890724199e-08,2.604712180386521385e-08,2.701183001882318572e-08,2.797653823378115758e-08,2.894124644873912944e-08,2.990595466369710131e-08,3.087066287865507317e-08,3.183537109361304504e-08,3.280007930857101690e-08,3.376478752352898876e-08,3.472949573848696063e-08,3.569420395344493249e-08,3.665891216840290435e-08,3.762362038336087622e-08,3.858832859831884808e-08,3.955303681327681995e-08,4.051774502823479181e-08,4.148245324319276367e-08,4.244716145815073554e-08,4.341186967310870740e-08,4.437657788806667926e-08,4.534128610302465113e-08,4.630599431798262299e-08,4.727070253294059486e-08,4.823541074789856672e-08,4.920011896285653858e-08,5.016482717781451045e-08,5.112953539277248231e-08,5.209424360773045417e-08,5.305895182268842604e-08,5.402366003764639790e-08,5.498836825260436977e-08,5.595307646756234163e-08,5.691778468252031349e-08,5.788249289747828536e-08,5.884720111243625722e-08,5.981190932739422909e-08,6.077661754235220757e-08 +0.000000000000000000e+00,2.918452434535861699e-09,5.836904869071723397e-09,8.755357303607585509e-09,1.167380973814344845e-08,1.459226217267931139e-08,1.751071460721517433e-08,2.042916704175103561e-08,2.334761947628689690e-08,2.626607191082275818e-08,2.918452434535861947e-08,3.210297677989448075e-08,3.502142921443034204e-08,3.793988164896620332e-08,4.085833408350206461e-08,4.377678651803792589e-08,4.669523895257378718e-08,4.961369138710964846e-08,5.253214382164550975e-08,5.545059625618137103e-08,5.836904869071723232e-08,6.128750112525309360e-08,6.420595355978896150e-08,6.712440599432482941e-08,7.004285842886069731e-08,7.296131086339656521e-08,7.587976329793243311e-08,7.879821573246830101e-08,8.171666816700416892e-08,8.463512060154003682e-08,8.755357303607590472e-08,9.047202547061177262e-08,9.339047790514764053e-08,9.630893033968350843e-08,9.922738277421937633e-08,1.021458352087552442e-07,1.050642876432911121e-07,1.079827400778269800e-07,1.109011925123628479e-07,1.138196449468987158e-07,1.167380973814345837e-07,1.196565498159704516e-07,1.225750022505063196e-07,1.254934546850421875e-07,1.284119071195780554e-07,1.313303595541139233e-07,1.342488119886497912e-07,1.371672644231856591e-07,1.400857168577215270e-07,1.430041692922573949e-07,1.459226217267932628e-07,1.488410741613291307e-07,1.517595265958649986e-07,1.546779790304008665e-07,1.575964314649367344e-07,1.605148838994726023e-07,1.634333363340084702e-07,1.663517887685443381e-07,1.692702412030802060e-07,1.721886936376160739e-07,1.751071460721519418e-07,1.780255985066878097e-07,1.809440509412236776e-07,1.838625033757595455e-07 +0.000000000000000000e+00,3.001377637728718026e-09,6.002755275457436052e-09,9.004132913186154078e-09,1.200551055091487210e-08,1.500688818864358848e-08,1.800826582637230485e-08,2.100964346410102122e-08,2.401102110182973759e-08,2.701239873955845396e-08,3.001377637728717033e-08,3.301515401501588671e-08,3.601653165274460308e-08,3.901790929047331945e-08,4.201928692820203582e-08,4.502066456593075219e-08,4.802204220365946857e-08,5.102341984138818494e-08,5.402479747911690131e-08,5.702617511684561768e-08,6.002755275457432744e-08,6.302893039230303057e-08,6.603030803003173371e-08,6.903168566776043685e-08,7.203306330548913998e-08,7.503444094321784312e-08,7.803581858094654626e-08,8.103719621867524939e-08,8.403857385640395253e-08,8.703995149413265567e-08,9.004132913186135880e-08,9.304270676959006194e-08,9.604408440731876508e-08,9.904546204504746821e-08,1.020468396827761714e-07,1.050482173205048745e-07,1.080495949582335776e-07,1.110509725959622808e-07,1.140523502336909839e-07,1.170537278714196870e-07,1.200551055091483902e-07,1.230564831468770933e-07,1.260578607846057964e-07,1.290592384223344996e-07,1.320606160600632027e-07,1.350619936977919059e-07,1.380633713355206090e-07,1.410647489732493121e-07,1.440661266109780153e-07,1.470675042487067184e-07,1.500688818864354215e-07,1.530702595241641247e-07,1.560716371618928278e-07,1.590730147996215310e-07,1.620743924373502341e-07,1.650757700750789372e-07,1.680771477128076404e-07,1.710785253505363435e-07,1.740799029882650466e-07,1.770812806259937498e-07,1.800826582637224529e-07,1.830840359014511560e-07,1.860854135391798592e-07,1.890867911769085623e-07 +0.000000000000000000e+00,1.547559318517666338e-09,3.095118637035332675e-09,4.642677955552998806e-09,6.190237274070664524e-09,7.737796592588330241e-09,9.285355911105995958e-09,1.083291522962366168e-08,1.238047454814132739e-08,1.392803386665899311e-08,1.547559318517666048e-08,1.702315250369432785e-08,1.857071182221199523e-08,2.011827114072966260e-08,2.166583045924732997e-08,2.321338977776499734e-08,2.476094909628266471e-08,2.630850841480033208e-08,2.785606773331799945e-08,2.940362705183566683e-08,3.095118637035333420e-08,3.249874568887100488e-08,3.404630500738867556e-08,3.559386432590634624e-08,3.714142364442401692e-08,3.868898296294168760e-08,4.023654228145935828e-08,4.178410159997702896e-08,4.333166091849469964e-08,4.487922023701237032e-08,4.642677955553004100e-08,4.797433887404771168e-08,4.952189819256538236e-08,5.106945751108305304e-08,5.261701682960072372e-08,5.416457614811839440e-08,5.571213546663606508e-08,5.725969478515373576e-08,5.880725410367140645e-08,6.035481342218907713e-08,6.190237274070674781e-08,6.344993205922441849e-08,6.499749137774208917e-08,6.654505069625975985e-08,6.809261001477743053e-08,6.964016933329510121e-08,7.118772865181277189e-08,7.273528797033044257e-08,7.428284728884811325e-08,7.583040660736578393e-08,7.737796592588345461e-08,7.892552524440112529e-08,8.047308456291879597e-08,8.202064388143646665e-08,8.356820319995413733e-08,8.511576251847180801e-08,8.666332183698947869e-08,8.821088115550714937e-08,8.975844047402482005e-08,9.130599979254249073e-08,9.285355911106016141e-08,9.440111842957783209e-08,9.594867774809550277e-08,9.749623706661317345e-08 +0.000000000000000000e+00,4.360629430788250815e-09,8.721258861576501629e-09,1.308188829236475244e-08,1.744251772315300326e-08,2.180314715394125407e-08,2.616377658472950489e-08,3.052440601551775570e-08,3.488503544630600652e-08,3.924566487709425733e-08,4.360629430788250815e-08,4.796692373867075896e-08,5.232755316945900978e-08,5.668818260024726059e-08,6.104881203103551141e-08,6.540944146182376222e-08,6.977007089261201304e-08,7.413070032340026385e-08,7.849132975418851466e-08,8.285195918497676548e-08,8.721258861576501629e-08,9.157321804655326711e-08,9.593384747734151792e-08,1.002944769081297687e-07,1.046551063389180196e-07,1.090157357697062704e-07,1.133763652004945212e-07,1.177369946312827720e-07,1.220976240620710228e-07,1.264582534928592736e-07,1.308188829236475244e-07,1.351795123544357753e-07,1.395401417852240261e-07,1.439007712160122769e-07,1.482614006468005277e-07,1.526220300775887785e-07,1.569826595083770293e-07,1.613432889391652801e-07,1.657039183699535310e-07,1.700645478007417818e-07,1.744251772315300326e-07,1.787858066623182834e-07,1.831464360931065342e-07,1.875070655238947850e-07,1.918676949546830358e-07,1.962283243854712867e-07,2.005889538162595375e-07,2.049495832470477883e-07,2.093102126778360391e-07,2.136708421086242899e-07,2.180314715394125407e-07,2.223921009702007916e-07,2.267527304009890424e-07,2.311133598317772932e-07,2.354739892625655440e-07,2.398346186933537683e-07,2.441952481241419927e-07,2.485558775549302170e-07,2.529165069857184414e-07,2.572771364165066657e-07,2.616377658472948901e-07,2.659983952780831144e-07,2.703590247088713388e-07,2.747196541396595631e-07 +0.000000000000000000e+00,1.613526283427190930e-09,3.227052566854381860e-09,4.840578850281572997e-09,6.454105133708764548e-09,8.067631417135956098e-09,9.681157700563147649e-09,1.129468398399033920e-08,1.290821026741753075e-08,1.452173655084472230e-08,1.613526283427191550e-08,1.774878911769911036e-08,1.936231540112630522e-08,2.097584168455350008e-08,2.258936796798069494e-08,2.420289425140788980e-08,2.581642053483508466e-08,2.742994681826227952e-08,2.904347310168947438e-08,3.065699938511666924e-08,3.227052566854386410e-08,3.388405195197105896e-08,3.549757823539825382e-08,3.711110451882544867e-08,3.872463080225264353e-08,4.033815708567983839e-08,4.195168336910703325e-08,4.356520965253422811e-08,4.517873593596142297e-08,4.679226221938861783e-08,4.840578850281581269e-08,5.001931478624300755e-08,5.163284106967020241e-08,5.324636735309739727e-08,5.485989363652459213e-08,5.647341991995178699e-08,5.808694620337898184e-08,5.970047248680617009e-08,6.131399877023335171e-08,6.292752505366053333e-08,6.454105133708771496e-08,6.615457762051489658e-08,6.776810390394207821e-08,6.938163018736925983e-08,7.099515647079644146e-08,7.260868275422362308e-08,7.422220903765080471e-08,7.583573532107798633e-08,7.744926160450516795e-08,7.906278788793234958e-08,8.067631417135953120e-08,8.228984045478671283e-08,8.390336673821389445e-08,8.551689302164107608e-08,8.713041930506825770e-08,8.874394558849543932e-08,9.035747187192262095e-08,9.197099815534980257e-08,9.358452443877698420e-08,9.519805072220416582e-08,9.681157700563134745e-08,9.842510328905852907e-08,1.000386295724857107e-07,1.016521558559128923e-07 +0.000000000000000000e+00,7.321474841337977257e-10,1.464294968267595451e-09,2.196442452401393280e-09,2.928589936535191316e-09,3.660737420668989352e-09,4.392884904802787388e-09,5.125032388936585010e-09,5.857179873070382632e-09,6.589327357204180255e-09,7.321474841337977877e-09,8.053622325471775499e-09,8.785769809605573121e-09,9.517917293739370744e-09,1.025006477787316837e-08,1.098221226200696599e-08,1.171435974614076361e-08,1.244650723027456123e-08,1.317865471440835885e-08,1.391080219854215648e-08,1.464294968267595410e-08,1.537509716680975007e-08,1.610724465094354769e-08,1.683939213507734531e-08,1.757153961921114293e-08,1.830368710334494056e-08,1.903583458747873818e-08,1.976798207161253580e-08,2.050012955574633342e-08,2.123227703988013105e-08,2.196442452401392867e-08,2.269657200814772629e-08,2.342871949228152391e-08,2.416086697641532153e-08,2.489301446054911916e-08,2.562516194468291678e-08,2.635730942881671440e-08,2.708945691295051202e-08,2.782160439708430965e-08,2.855375188121810727e-08,2.928589936535190489e-08,3.001804684948570251e-08,3.075019433361950013e-08,3.148234181775329776e-08,3.221448930188709538e-08,3.294663678602089300e-08,3.367878427015469062e-08,3.441093175428848825e-08,3.514307923842228587e-08,3.587522672255608349e-08,3.660737420668988111e-08,3.733952169082367873e-08,3.807166917495747636e-08,3.880381665909127398e-08,3.953596414322507160e-08,4.026811162735886922e-08,4.100025911149266685e-08,4.173240659562646447e-08,4.246455407976026209e-08,4.319670156389405971e-08,4.392884904802785734e-08,4.466099653216165496e-08,4.539314401629545258e-08,4.612529150042925020e-08 +0.000000000000000000e+00,7.600330015879731935e-10,1.520066003175946387e-09,2.280099004763919787e-09,3.040132006351893188e-09,3.800165007939866588e-09,4.560198009527839575e-09,5.320231011115812561e-09,6.080264012703785548e-09,6.840297014291758535e-09,7.600330015879731521e-09,8.360363017467705335e-09,9.120396019055679149e-09,9.880429020643652963e-09,1.064046202223162678e-08,1.140049502381960059e-08,1.216052802540757440e-08,1.292056102699554822e-08,1.368059402858352203e-08,1.444062703017149585e-08,1.520066003175946966e-08,1.596069303334744347e-08,1.672072603493541729e-08,1.748075903652339110e-08,1.824079203811136492e-08,1.900082503969933873e-08,1.976085804128731254e-08,2.052089104287528636e-08,2.128092404446326017e-08,2.204095704605123398e-08,2.280099004763920780e-08,2.356102304922718161e-08,2.432105605081515543e-08,2.508108905240312924e-08,2.584112205399110305e-08,2.660115505557907687e-08,2.736118805716705068e-08,2.812122105875502450e-08,2.888125406034299831e-08,2.964128706193097212e-08,3.040132006351894594e-08,3.116135306510691644e-08,3.192138606669488695e-08,3.268141906828285745e-08,3.344145206987082796e-08,3.420148507145879846e-08,3.496151807304676897e-08,3.572155107463473947e-08,3.648158407622270998e-08,3.724161707781068048e-08,3.800165007939865099e-08,3.876168308098662149e-08,3.952171608257459200e-08,4.028174908416256250e-08,4.104178208575053301e-08,4.180181508733850351e-08,4.256184808892647402e-08,4.332188109051444452e-08,4.408191409210241503e-08,4.484194709369038554e-08,4.560198009527835604e-08,4.636201309686632655e-08,4.712204609845429705e-08,4.788207910004226756e-08 +0.000000000000000000e+00,1.363856029984601184e-09,2.727712059969202368e-09,4.091568089953803759e-09,5.455424119938405564e-09,6.819280149923007368e-09,8.183136179907609173e-09,9.546992209892210150e-09,1.091084823987681113e-08,1.227470426986141210e-08,1.363856029984601308e-08,1.500241632983061406e-08,1.636627235981521504e-08,1.773012838979981601e-08,1.909398441978441699e-08,2.045784044976901797e-08,2.182169647975361895e-08,2.318555250973821992e-08,2.454940853972282090e-08,2.591326456970742188e-08,2.727712059969202285e-08,2.864097662967662383e-08,3.000483265966122150e-08,3.136868868964582248e-08,3.273254471963042346e-08,3.409640074961502443e-08,3.546025677959962541e-08,3.682411280958422639e-08,3.818796883956882736e-08,3.955182486955342834e-08,4.091568089953802932e-08,4.227953692952263030e-08,4.364339295950723127e-08,4.500724898949183225e-08,4.637110501947643323e-08,4.773496104946103421e-08,4.909881707944563518e-08,5.046267310943023616e-08,5.182652913941483714e-08,5.319038516939943811e-08,5.455424119938403909e-08,5.591809722936864007e-08,5.728195325935324105e-08,5.864580928933784202e-08,6.000966531932244300e-08,6.137352134930704398e-08,6.273737737929164496e-08,6.410123340927624593e-08,6.546508943926084691e-08,6.682894546924544789e-08,6.819280149923004887e-08,6.955665752921464984e-08,7.092051355919925082e-08,7.228436958918385180e-08,7.364822561916845277e-08,7.501208164915305375e-08,7.637593767913765473e-08,7.773979370912225571e-08,7.910364973910685668e-08,8.046750576909145766e-08,8.183136179907605864e-08,8.319521782906065962e-08,8.455907385904526059e-08,8.592292988902986157e-08 +0.000000000000000000e+00,7.321474841422710537e-10,1.464294968284542107e-09,2.196442452426812954e-09,2.928589936569083801e-09,3.660737420711354648e-09,4.392884904853625908e-09,5.125032388995897169e-09,5.857179873138168429e-09,6.589327357280439690e-09,7.321474841422710950e-09,8.053622325564982211e-09,8.785769809707253471e-09,9.517917293849524731e-09,1.025006477799179599e-08,1.098221226213406725e-08,1.171435974627633851e-08,1.244650723041860977e-08,1.317865471456088103e-08,1.391080219870315229e-08,1.464294968284542355e-08,1.537509716698769316e-08,1.610724465112996111e-08,1.683939213527222906e-08,1.757153961941449702e-08,1.830368710355676497e-08,1.903583458769903292e-08,1.976798207184130087e-08,2.050012955598356882e-08,2.123227704012583677e-08,2.196442452426810473e-08,2.269657200841037268e-08,2.342871949255264063e-08,2.416086697669490858e-08,2.489301446083717653e-08,2.562516194497944448e-08,2.635730942912171244e-08,2.708945691326398039e-08,2.782160439740624834e-08,2.855375188154851629e-08,2.928589936569078424e-08,3.001804684983305220e-08,3.075019433397532015e-08,3.148234181811758810e-08,3.221448930225985605e-08,3.294663678640212400e-08,3.367878427054439195e-08,3.441093175468665991e-08,3.514307923882892786e-08,3.587522672297119581e-08,3.660737420711346376e-08,3.733952169125573171e-08,3.807166917539799966e-08,3.880381665954026762e-08,3.953596414368253557e-08,4.026811162782480352e-08,4.100025911196707147e-08,4.173240659610933942e-08,4.246455408025160737e-08,4.319670156439387533e-08,4.392884904853614328e-08,4.466099653267841123e-08,4.539314401682067918e-08,4.612529150096294713e-08 +0.000000000000000000e+00,7.600330015969666113e-10,1.520066003193933223e-09,2.280099004790899937e-09,3.040132006387866859e-09,3.800165007984833780e-09,4.560198009581800702e-09,5.320231011178767623e-09,6.080264012775734545e-09,6.840297014372701466e-09,7.600330015969669215e-09,8.360363017566636136e-09,9.120396019163603058e-09,9.880429020760569979e-09,1.064046202235753690e-08,1.140049502395450382e-08,1.216052802555147074e-08,1.292056102714843767e-08,1.368059402874540459e-08,1.444062703034237151e-08,1.520066003193933843e-08,1.596069303353630535e-08,1.672072603513327227e-08,1.748075903673023919e-08,1.824079203832720612e-08,1.900082503992417304e-08,1.976085804152113996e-08,2.052089104311810688e-08,2.128092404471507380e-08,2.204095704631204072e-08,2.280099004790900764e-08,2.356102304950597457e-08,2.432105605110294149e-08,2.508108905269990841e-08,2.584112205429687533e-08,2.660115505589384225e-08,2.736118805749080917e-08,2.812122105908777610e-08,2.888125406068474302e-08,2.964128706228170994e-08,3.040132006387867686e-08,3.116135306547564047e-08,3.192138606707260409e-08,3.268141906866956770e-08,3.344145207026653131e-08,3.420148507186349492e-08,3.496151807346045854e-08,3.572155107505742215e-08,3.648158407665438576e-08,3.724161707825134937e-08,3.800165007984831299e-08,3.876168308144527660e-08,3.952171608304224021e-08,4.028174908463920383e-08,4.104178208623616744e-08,4.180181508783313105e-08,4.256184808943009466e-08,4.332188109102705828e-08,4.408191409262402189e-08,4.484194709422098550e-08,4.560198009581794911e-08,4.636201309741491273e-08,4.712204609901187634e-08,4.788207910060883995e-08 +0.000000000000000000e+00,1.363856029993403006e-09,2.727712059986806012e-09,4.091568089980209019e-09,5.455424119973612025e-09,6.819280149967015031e-09,8.183136179960418037e-09,9.546992209953821871e-09,1.091084823994722570e-08,1.227470426994062954e-08,1.363856029993403337e-08,1.500241632992743720e-08,1.636627235992083938e-08,1.773012838991424156e-08,1.909398441990764374e-08,2.045784044990104592e-08,2.182169647989444810e-08,2.318555250988785028e-08,2.454940853988125246e-08,2.591326456987465464e-08,2.727712059986805682e-08,2.864097662986145899e-08,3.000483265985486117e-08,3.136868868984826335e-08,3.273254471984166553e-08,3.409640074983506771e-08,3.546025677982846989e-08,3.682411280982187207e-08,3.818796883981527425e-08,3.955182486980867643e-08,4.091568089980207861e-08,4.227953692979548078e-08,4.364339295978888296e-08,4.500724898978228514e-08,4.637110501977568732e-08,4.773496104976908950e-08,4.909881707976249168e-08,5.046267310975589386e-08,5.182652913974929604e-08,5.319038516974269822e-08,5.455424119973610040e-08,5.591809722972950257e-08,5.728195325972290475e-08,5.864580928971630693e-08,6.000966531970970911e-08,6.137352134970311129e-08,6.273737737969651347e-08,6.410123340968991565e-08,6.546508943968331783e-08,6.682894546967672001e-08,6.819280149967012219e-08,6.955665752966352436e-08,7.092051355965692654e-08,7.228436958965032872e-08,7.364822561964373090e-08,7.501208164963713308e-08,7.637593767963053526e-08,7.773979370962393744e-08,7.910364973961733962e-08,8.046750576961074180e-08,8.183136179960414398e-08,8.319521782959754616e-08,8.455907385959094833e-08,8.592292988958435051e-08 +0.000000000000000000e+00,8.752474339156068533e-10,1.750494867831213707e-09,2.625742301746820560e-09,3.500989735662427413e-09,4.376237169578034267e-09,5.251484603493641120e-09,6.126732037409247973e-09,7.001979471324854827e-09,7.877226905240461680e-09,8.752474339156068533e-09,9.627721773071675386e-09,1.050296920698728224e-08,1.137821664090288909e-08,1.225346407481849595e-08,1.312871150873410280e-08,1.400395894264970965e-08,1.487920637656531651e-08,1.575445381048092336e-08,1.662970124439653187e-08,1.750494867831214038e-08,1.838019611222774888e-08,1.925544354614335739e-08,2.013069098005896590e-08,2.100593841397457441e-08,2.188118584789018291e-08,2.275643328180579142e-08,2.363168071572139993e-08,2.450692814963700844e-08,2.538217558355261694e-08,2.625742301746822545e-08,2.713267045138383396e-08,2.800791788529944247e-08,2.888316531921505097e-08,2.975841275313065948e-08,3.063366018704626799e-08,3.150890762096187981e-08,3.238415505487749162e-08,3.325940248879310344e-08,3.413464992270871526e-08,3.500989735662432707e-08,3.588514479053993889e-08,3.676039222445555071e-08,3.763563965837116252e-08,3.851088709228677434e-08,3.938613452620238615e-08,4.026138196011799797e-08,4.113662939403360979e-08,4.201187682794922160e-08,4.288712426186483342e-08,4.376237169578044524e-08,4.463761912969605705e-08,4.551286656361166887e-08,4.638811399752728069e-08,4.726336143144289250e-08,4.813860886535850432e-08,4.901385629927411613e-08,4.988910373318972795e-08,5.076435116710533977e-08,5.163959860102095158e-08,5.251484603493656340e-08,5.339009346885217522e-08,5.426534090276778703e-08,5.514058833668339885e-08 +0.000000000000000000e+00,7.843233781655176101e-10,1.568646756331035220e-09,2.352970134496552934e-09,3.137293512662070854e-09,3.921616890827588361e-09,4.705940268993105868e-09,5.490263647158623374e-09,6.274587025324140881e-09,7.058910403489658388e-09,7.843233781655176722e-09,8.627557159820695056e-09,9.411880537986213389e-09,1.019620391615173172e-08,1.098052729431725006e-08,1.176485067248276839e-08,1.254917405064828673e-08,1.333349742881380506e-08,1.411782080697932339e-08,1.490214418514484173e-08,1.568646756331036006e-08,1.647079094147587839e-08,1.725511431964139673e-08,1.803943769780691506e-08,1.882376107597243340e-08,1.960808445413795173e-08,2.039240783230347006e-08,2.117673121046898840e-08,2.196105458863450673e-08,2.274537796680002507e-08,2.352970134496554340e-08,2.431402472313106173e-08,2.509834810129658007e-08,2.588267147946209840e-08,2.666699485762761674e-08,2.745131823579313507e-08,2.823564161395865340e-08,2.901996499212417174e-08,2.980428837028969007e-08,3.058861174845520840e-08,3.137293512662072674e-08,3.215725850478624507e-08,3.294158188295176341e-08,3.372590526111728174e-08,3.451022863928280007e-08,3.529455201744831841e-08,3.607887539561383674e-08,3.686319877377935508e-08,3.764752215194487341e-08,3.843184553011039174e-08,3.921616890827591008e-08,4.000049228644142841e-08,4.078481566460694675e-08,4.156913904277246508e-08,4.235346242093798341e-08,4.313778579910350175e-08,4.392210917726902008e-08,4.470643255543453842e-08,4.549075593360005675e-08,4.627507931176557508e-08,4.705940268993109342e-08,4.784372606809661175e-08,4.862804944626213008e-08,4.941237282442764842e-08 +0.000000000000000000e+00,1.626880189247784377e-09,3.253760378495568754e-09,4.880640567743352924e-09,6.507520756991136681e-09,8.134400946238920438e-09,9.761281135486704194e-09,1.138816132473448795e-08,1.301504151398227171e-08,1.464192170323005546e-08,1.626880189247783757e-08,1.789568208172561801e-08,1.952256227097339846e-08,2.114944246022117891e-08,2.277632264946895936e-08,2.440320283871673981e-08,2.603008302796452025e-08,2.765696321721230070e-08,2.928384340646008115e-08,3.091072359570786160e-08,3.253760378495564205e-08,3.416448397420342249e-08,3.579136416345120294e-08,3.741824435269898339e-08,3.904512454194676384e-08,4.067200473119454429e-08,4.229888492044232473e-08,4.392576510969010518e-08,4.555264529893788563e-08,4.717952548818566608e-08,4.880640567743344652e-08,5.043328586668122697e-08,5.206016605592900742e-08,5.368704624517678787e-08,5.531392643442456832e-08,5.694080662367234876e-08,5.856768681292012921e-08,6.019456700216790966e-08,6.182144719141569673e-08,6.344832738066348379e-08,6.507520756991127086e-08,6.670208775915905792e-08,6.832896794840684499e-08,6.995584813765463205e-08,7.158272832690241912e-08,7.320960851615020618e-08,7.483648870539799325e-08,7.646336889464578031e-08,7.809024908389356738e-08,7.971712927314135444e-08,8.134400946238914151e-08,8.297088965163692858e-08,8.459776984088471564e-08,8.622465003013250271e-08,8.785153021938028977e-08,8.947841040862807684e-08,9.110529059787586390e-08,9.273217078712365097e-08,9.435905097637143803e-08,9.598593116561922510e-08,9.761281135486701216e-08,9.923969154411479923e-08,1.008665717333625863e-07,1.024934519226103734e-07 +0.000000000000000000e+00,8.752474339231010063e-10,1.750494867846202013e-09,2.625742301769302915e-09,3.500989735692403611e-09,4.376237169615503894e-09,5.251484603538604176e-09,6.126732037461704459e-09,7.001979471384804741e-09,7.877226905307905024e-09,8.752474339231004479e-09,9.627721773154103935e-09,1.050296920707720339e-08,1.137821664100030285e-08,1.225346407492340230e-08,1.312871150884650176e-08,1.400395894276960121e-08,1.487920637669270067e-08,1.575445381061580012e-08,1.662970124453889958e-08,1.750494867846199903e-08,1.838019611238509849e-08,1.925544354630819794e-08,2.013069098023129740e-08,2.100593841415439685e-08,2.188118584807749631e-08,2.275643328200059576e-08,2.363168071592369522e-08,2.450692814984679467e-08,2.538217558376989413e-08,2.625742301769299359e-08,2.713267045161609304e-08,2.800791788553919250e-08,2.888316531946229195e-08,2.975841275338539141e-08,3.063366018730849086e-08,3.150890762123159363e-08,3.238415505515469639e-08,3.325940248907779915e-08,3.413464992300090192e-08,3.500989735692400468e-08,3.588514479084710745e-08,3.676039222477021021e-08,3.763563965869331297e-08,3.851088709261641574e-08,3.938613452653951850e-08,4.026138196046262127e-08,4.113662939438572403e-08,4.201187682830882679e-08,4.288712426223192956e-08,4.376237169615503232e-08,4.463761913007813509e-08,4.551286656400123785e-08,4.638811399792434061e-08,4.726336143184744338e-08,4.813860886577054614e-08,4.901385629969364891e-08,4.988910373361675167e-08,5.076435116753985443e-08,5.163959860146295720e-08,5.251484603538605996e-08,5.339009346930916273e-08,5.426534090323226549e-08,5.514058833715536825e-08 +0.000000000000000000e+00,7.843233781735055899e-10,1.568646756347011180e-09,2.352970134520516770e-09,3.137293512694022360e-09,3.921616890867527949e-09,4.705940269041033539e-09,5.490263647214539129e-09,6.274587025388044719e-09,7.058910403561550309e-09,7.843233781735055899e-09,8.627557159908561489e-09,9.411880538082067079e-09,1.019620391625557267e-08,1.098052729442907826e-08,1.176485067260258385e-08,1.254917405077608944e-08,1.333349742894959503e-08,1.411782080712310062e-08,1.490214418529660621e-08,1.568646756347011180e-08,1.647079094164361739e-08,1.725511431981712298e-08,1.803943769799062857e-08,1.882376107616413416e-08,1.960808445433763975e-08,2.039240783251114534e-08,2.117673121068465093e-08,2.196105458885815652e-08,2.274537796703166211e-08,2.352970134520516770e-08,2.431402472337867329e-08,2.509834810155217888e-08,2.588267147972568447e-08,2.666699485789919006e-08,2.745131823607269565e-08,2.823564161424620124e-08,2.901996499241970683e-08,2.980428837059321242e-08,3.058861174876671801e-08,3.137293512694022360e-08,3.215725850511372919e-08,3.294158188328723478e-08,3.372590526146074037e-08,3.451022863963424596e-08,3.529455201780775155e-08,3.607887539598125714e-08,3.686319877415476273e-08,3.764752215232826832e-08,3.843184553050177391e-08,3.921616890867527949e-08,4.000049228684878508e-08,4.078481566502229067e-08,4.156913904319579626e-08,4.235346242136930185e-08,4.313778579954280744e-08,4.392210917771631303e-08,4.470643255588981862e-08,4.549075593406332421e-08,4.627507931223682980e-08,4.705940269041033539e-08,4.784372606858384098e-08,4.862804944675734657e-08,4.941237282493085216e-08 +0.000000000000000000e+00,1.626880189255649831e-09,3.253760378511299661e-09,4.880640567766949078e-09,6.507520757022598496e-09,8.134400946278247913e-09,9.761281135533898157e-09,1.138816132478954840e-08,1.301504151404519865e-08,1.464192170330084889e-08,1.626880189255649913e-08,1.789568208181214772e-08,1.952256227106779631e-08,2.114944246032344490e-08,2.277632264957909349e-08,2.440320283883474208e-08,2.603008302809039067e-08,2.765696321734603926e-08,2.928384340660168785e-08,3.091072359585733644e-08,3.253760378511298503e-08,3.416448397436863362e-08,3.579136416362428221e-08,3.741824435287993080e-08,3.904512454213557939e-08,4.067200473139122798e-08,4.229888492064687657e-08,4.392576510990252516e-08,4.555264529915817375e-08,4.717952548841382234e-08,4.880640567766947093e-08,5.043328586692511952e-08,5.206016605618076811e-08,5.368704624543641670e-08,5.531392643469206529e-08,5.694080662394771388e-08,5.856768681320336247e-08,6.019456700245901106e-08,6.182144719171465965e-08,6.344832738097030824e-08,6.507520757022595683e-08,6.670208775948160542e-08,6.832896794873725401e-08,6.995584813799290260e-08,7.158272832724855119e-08,7.320960851650419978e-08,7.483648870575984837e-08,7.646336889501549696e-08,7.809024908427114555e-08,7.971712927352679414e-08,8.134400946278244273e-08,8.297088965203809132e-08,8.459776984129373991e-08,8.622465003054938850e-08,8.785153021980503709e-08,8.947841040906068568e-08,9.110529059831633427e-08,9.273217078757198286e-08,9.435905097682763145e-08,9.598593116608328004e-08,9.761281135533892863e-08,9.923969154459457722e-08,1.008665717338502258e-07,1.024934519231058744e-07 +0.000000000000000000e+00,1.078649995471476479e-09,2.157299990942952958e-09,3.235949986414429230e-09,4.314599981885905089e-09,5.393249977357380947e-09,6.471899972828856806e-09,7.550549968300332665e-09,8.629199963771808523e-09,9.707849959243284382e-09,1.078649995471476024e-08,1.186514995018623610e-08,1.294379994565771196e-08,1.402244994112918782e-08,1.510109993660066533e-08,1.617974993207214284e-08,1.725839992754362035e-08,1.833704992301509787e-08,1.941569991848657538e-08,2.049434991395805289e-08,2.157299990942953041e-08,2.265164990490100792e-08,2.373029990037248543e-08,2.480894989584396295e-08,2.588759989131544046e-08,2.696624988678691797e-08,2.804489988225839548e-08,2.912354987772987300e-08,3.020219987320135051e-08,3.128084986867282802e-08,3.235949986414430554e-08,3.343814985961578305e-08,3.451679985508726056e-08,3.559544985055873808e-08,3.667409984603021559e-08,3.775274984150169310e-08,3.883139983697317061e-08,3.991004983244464813e-08,4.098869982791612564e-08,4.206734982338760315e-08,4.314599981885908067e-08,4.422464981433055818e-08,4.530329980980203569e-08,4.638194980527351320e-08,4.746059980074499072e-08,4.853924979621646823e-08,4.961789979168794574e-08,5.069654978715942326e-08,5.177519978263090077e-08,5.285384977810237828e-08,5.393249977357385580e-08,5.501114976904533331e-08,5.608979976451681082e-08,5.716844975998828833e-08,5.824709975545976585e-08,5.932574975093124336e-08,6.040439974640271426e-08,6.148304974187419177e-08,6.256169973734566928e-08,6.364034973281714679e-08,6.471899972828862431e-08,6.579764972376010182e-08,6.687629971923157933e-08,6.795494971470305685e-08 +0.000000000000000000e+00,9.781588457177969213e-10,1.956317691435593843e-09,2.934476537153390971e-09,3.912635382871188512e-09,4.890794228588986054e-09,5.868953074306783596e-09,6.847111920024581137e-09,7.825270765742378679e-09,8.803429611460176221e-09,9.781588457177973762e-09,1.075974730289577130e-08,1.173790614861356885e-08,1.271606499433136639e-08,1.369422384004916393e-08,1.467238268576696147e-08,1.565054153148476067e-08,1.662870037720255821e-08,1.760685922292035575e-08,1.858501806863815329e-08,1.956317691435595083e-08,2.054133576007374837e-08,2.151949460579154592e-08,2.249765345150934346e-08,2.347581229722714100e-08,2.445397114294493854e-08,2.543212998866273608e-08,2.641028883438053362e-08,2.738844768009833117e-08,2.836660652581612871e-08,2.934476537153392625e-08,3.032292421725172379e-08,3.130108306296952133e-08,3.227924190868731887e-08,3.325740075440511642e-08,3.423555960012291396e-08,3.521371844584071150e-08,3.619187729155850904e-08,3.717003613727630658e-08,3.814819498299410412e-08,3.912635382871190167e-08,4.010451267442969921e-08,4.108267152014749675e-08,4.206083036586529429e-08,4.303898921158309183e-08,4.401714805730088937e-08,4.499530690301868692e-08,4.597346574873648446e-08,4.695162459445428200e-08,4.792978344017207954e-08,4.890794228588987708e-08,4.988610113160767462e-08,5.086425997732547217e-08,5.184241882304326971e-08,5.282057766876106725e-08,5.379873651447886479e-08,5.477689536019666233e-08,5.575505420591445987e-08,5.673321305163225742e-08,5.771137189735005496e-08,5.868953074306785250e-08,5.966768958878565004e-08,6.064584843450344758e-08,6.162400728022124512e-08 +0.000000000000000000e+00,1.944183282499232266e-09,3.888366564998464531e-09,5.832549847497697210e-09,7.776733129996930717e-09,9.720916412496164223e-09,1.166509969499539773e-08,1.360928297749463124e-08,1.555346625999386474e-08,1.749764954249309659e-08,1.944183282499232845e-08,2.138601610749156030e-08,2.333019938999079215e-08,2.527438267249002400e-08,2.721856595498925585e-08,2.916274923748848771e-08,3.110693251998772287e-08,3.305111580248695803e-08,3.499529908498619319e-08,3.693948236748542835e-08,3.888366564998466351e-08,4.082784893248389867e-08,4.277203221498313383e-08,4.471621549748236899e-08,4.666039877998160415e-08,4.860458206248083931e-08,5.054876534498007448e-08,5.249294862747930964e-08,5.443713190997854480e-08,5.638131519247777996e-08,5.832549847497701512e-08,6.026968175747625028e-08,6.221386503997548544e-08,6.415804832247472060e-08,6.610223160497395576e-08,6.804641488747319092e-08,6.999059816997242608e-08,7.193478145247166124e-08,7.387896473497089640e-08,7.582314801747013157e-08,7.776733129996936673e-08,7.971151458246860189e-08,8.165569786496783705e-08,8.359988114746707221e-08,8.554406442996630737e-08,8.748824771246554253e-08,8.943243099496477769e-08,9.137661427746401285e-08,9.332079755996324801e-08,9.526498084246248317e-08,9.720916412496171833e-08,9.915334740746095349e-08,1.010975306899601887e-07,1.030417139724594238e-07,1.049858972549586590e-07,1.069300805374578941e-07,1.088742638199571293e-07,1.108184471024563645e-07,1.127626303849555996e-07,1.147068136674548348e-07,1.166509969499540699e-07,1.185951802324533051e-07,1.205393635149525270e-07,1.224835467974517357e-07 +0.000000000000000000e+00,1.078649995477996110e-09,2.157299990955992220e-09,3.235949986433988329e-09,4.314599981911984439e-09,5.393249977389980135e-09,6.471899972867975831e-09,7.550549968345971528e-09,8.629199963823967224e-09,9.707849959301962920e-09,1.078649995477995862e-08,1.186514995025795431e-08,1.294379994573595001e-08,1.402244994121394570e-08,1.510109993669193975e-08,1.617974993216993544e-08,1.725839992764793114e-08,1.833704992312592684e-08,1.941569991860392253e-08,2.049434991408191823e-08,2.157299990955991392e-08,2.265164990503790962e-08,2.373029990051590532e-08,2.480894989599390101e-08,2.588759989147189671e-08,2.696624988694989240e-08,2.804489988242788810e-08,2.912354987790588380e-08,3.020219987338387949e-08,3.128084986886187519e-08,3.235949986433987089e-08,3.343814985981786658e-08,3.451679985529586228e-08,3.559544985077385797e-08,3.667409984625185367e-08,3.775274984172984937e-08,3.883139983720784506e-08,3.991004983268584076e-08,4.098869982816383645e-08,4.206734982364183215e-08,4.314599981911982785e-08,4.422464981459782354e-08,4.530329981007581924e-08,4.638194980555381494e-08,4.746059980103181063e-08,4.853924979650980633e-08,4.961789979198780202e-08,5.069654978746579772e-08,5.177519978294379342e-08,5.285384977842178911e-08,5.393249977389978481e-08,5.501114976937778051e-08,5.608979976485577620e-08,5.716844976033377190e-08,5.824709975581176759e-08,5.932574975128976329e-08,6.040439974676775899e-08,6.148304974224574806e-08,6.256169973772373714e-08,6.364034973320172622e-08,6.471899972867971530e-08,6.579764972415770438e-08,6.687629971963569346e-08,6.795494971511368254e-08 +0.000000000000000000e+00,9.781588457248138944e-10,1.956317691449627789e-09,2.934476537174441890e-09,3.912635382899256405e-09,4.890794228624070920e-09,5.868953074348885434e-09,6.847111920073699949e-09,7.825270765798514464e-09,8.803429611523328152e-09,9.781588457248141839e-09,1.075974730297295553e-08,1.173790614869776921e-08,1.271606499442258290e-08,1.369422384014739659e-08,1.467238268587221028e-08,1.565054153159702562e-08,1.662870037732184096e-08,1.760685922304665630e-08,1.858501806877147165e-08,1.956317691449628699e-08,2.054133576022110233e-08,2.151949460594591767e-08,2.249765345167073301e-08,2.347581229739554836e-08,2.445397114312036370e-08,2.543212998884517904e-08,2.641028883456999438e-08,2.738844768029480972e-08,2.836660652601962506e-08,2.934476537174444041e-08,3.032292421746925244e-08,3.130108306319406447e-08,3.227924190891887651e-08,3.325740075464368854e-08,3.423555960036850057e-08,3.521371844609331261e-08,3.619187729181812464e-08,3.717003613754293667e-08,3.814819498326774871e-08,3.912635382899256074e-08,4.010451267471737277e-08,4.108267152044218481e-08,4.206083036616699684e-08,4.303898921189180887e-08,4.401714805761662091e-08,4.499530690334143294e-08,4.597346574906624497e-08,4.695162459479105701e-08,4.792978344051586904e-08,4.890794228624068107e-08,4.988610113196549311e-08,5.086425997769030514e-08,5.184241882341511717e-08,5.282057766913992920e-08,5.379873651486474124e-08,5.477689536058955327e-08,5.575505420631436530e-08,5.673321305203917734e-08,5.771137189776398937e-08,5.868953074348880140e-08,5.966768958921361344e-08,6.064584843493842547e-08,6.162400728066323750e-08 +0.000000000000000000e+00,1.944183282506018042e-09,3.888366565012036084e-09,5.832549847518054125e-09,7.776733130024072167e-09,9.720916412530090209e-09,1.166509969503610825e-08,1.360928297754212629e-08,1.555346626004814433e-08,1.749764954255416238e-08,1.944183282506018042e-08,2.138601610756619846e-08,2.333019939007221650e-08,2.527438267257823454e-08,2.721856595508425259e-08,2.916274923759027063e-08,3.110693252009628867e-08,3.305111580260230671e-08,3.499529908510832475e-08,3.693948236761434279e-08,3.888366565012036084e-08,4.082784893262637888e-08,4.277203221513239692e-08,4.471621549763841496e-08,4.666039878014443300e-08,4.860458206265045104e-08,5.054876534515646909e-08,5.249294862766248713e-08,5.443713191016850517e-08,5.638131519267452321e-08,5.832549847518054125e-08,6.026968175768656591e-08,6.221386504019259057e-08,6.415804832269861523e-08,6.610223160520463989e-08,6.804641488771066455e-08,6.999059817021668921e-08,7.193478145272271387e-08,7.387896473522873853e-08,7.582314801773476319e-08,7.776733130024078785e-08,7.971151458274681251e-08,8.165569786525283716e-08,8.359988114775886182e-08,8.554406443026488648e-08,8.748824771277091114e-08,8.943243099527693580e-08,9.137661427778296046e-08,9.332079756028898512e-08,9.526498084279500978e-08,9.720916412530103444e-08,9.915334740780705910e-08,1.010975306903130838e-07,1.030417139728191084e-07,1.049858972553251331e-07,1.069300805378311577e-07,1.088742638203371824e-07,1.108184471028432071e-07,1.127626303853492317e-07,1.147068136678552564e-07,1.166509969503612810e-07,1.185951802328673057e-07,1.205393635153733436e-07,1.224835467978793815e-07 +0.000000000000000000e+00,1.238862490234450829e-09,2.477724980468901657e-09,3.716587470703352486e-09,4.955449960937803315e-09,6.194312451172254143e-09,7.433174941406704972e-09,8.672037431641155801e-09,9.910899921875606629e-09,1.114976241211005746e-08,1.238862490234450829e-08,1.362748739257895912e-08,1.486634988281340994e-08,1.610521237304786077e-08,1.734407486328231160e-08,1.858293735351676243e-08,1.982179984375121326e-08,2.106066233398566409e-08,2.229952482422011492e-08,2.353838731445456574e-08,2.477724980468901657e-08,2.601611229492346740e-08,2.725497478515791823e-08,2.849383727539236906e-08,2.973269976562681989e-08,3.097156225586127072e-08,3.221042474609572155e-08,3.344928723633017237e-08,3.468814972656462320e-08,3.592701221679907403e-08,3.716587470703352486e-08,3.840473719726797569e-08,3.964359968750242652e-08,4.088246217773687735e-08,4.212132466797132817e-08,4.336018715820577900e-08,4.459904964844022983e-08,4.583791213867468066e-08,4.707677462890913149e-08,4.831563711914358232e-08,4.955449960937803315e-08,5.079336209961248398e-08,5.203222458984693480e-08,5.327108708008138563e-08,5.450994957031583646e-08,5.574881206055028729e-08,5.698767455078473812e-08,5.822653704101918895e-08,5.946539953125363978e-08,6.070426202148809722e-08,6.194312451172255467e-08,6.318198700195701211e-08,6.442084949219146956e-08,6.565971198242592701e-08,6.689857447266038445e-08,6.813743696289484190e-08,6.937629945312929934e-08,7.061516194336375679e-08,7.185402443359821424e-08,7.309288692383267168e-08,7.433174941406712913e-08,7.557061190430158658e-08,7.680947439453604402e-08,7.804833688477050147e-08 +0.000000000000000000e+00,1.167075071077254296e-09,2.334150142154508592e-09,3.501225213231763095e-09,4.668300284309018012e-09,5.835375355386272928e-09,7.002450426463527845e-09,8.169525497540782761e-09,9.336600568618037678e-09,1.050367563969529259e-08,1.167075071077254751e-08,1.283782578184980243e-08,1.400490085292705734e-08,1.517197592400431391e-08,1.633905099508156883e-08,1.750612606615882375e-08,1.867320113723607866e-08,1.984027620831333358e-08,2.100735127939058850e-08,2.217442635046784341e-08,2.334150142154509833e-08,2.450857649262235325e-08,2.567565156369960816e-08,2.684272663477686308e-08,2.800980170585411800e-08,2.917687677693137291e-08,3.034395184800862783e-08,3.151102691908588275e-08,3.267810199016313766e-08,3.384517706124039258e-08,3.501225213231764750e-08,3.617932720339490241e-08,3.734640227447215733e-08,3.851347734554941225e-08,3.968055241662666716e-08,4.084762748770392208e-08,4.201470255878117700e-08,4.318177762985843191e-08,4.434885270093568683e-08,4.551592777201294174e-08,4.668300284309019666e-08,4.785007791416745158e-08,4.901715298524470649e-08,5.018422805632196141e-08,5.135130312739921633e-08,5.251837819847647124e-08,5.368545326955372616e-08,5.485252834063098108e-08,5.601960341170823599e-08,5.718667848278549091e-08,5.835375355386274583e-08,5.952082862494000074e-08,6.068790369601725566e-08,6.185497876709451058e-08,6.302205383817176549e-08,6.418912890924902041e-08,6.535620398032627533e-08,6.652327905140353024e-08,6.769035412248078516e-08,6.885742919355804008e-08,7.002450426463529499e-08,7.119157933571254991e-08,7.235865440678980483e-08,7.352572947786705974e-08 +0.000000000000000000e+00,2.187149137638011957e-09,4.374298275276023914e-09,6.561447412914035871e-09,8.748596550552047828e-09,1.093574568819006061e-08,1.312289482582807340e-08,1.531004396346608618e-08,1.749719310110409896e-08,1.968434223874211175e-08,2.187149137638012453e-08,2.405864051401813732e-08,2.624578965165615010e-08,2.843293878929416288e-08,3.062008792693217898e-08,3.280723706457019176e-08,3.499438620220820455e-08,3.718153533984621733e-08,3.936868447748423011e-08,4.155583361512224290e-08,4.374298275276025568e-08,4.593013189039826847e-08,4.811728102803628125e-08,5.030443016567429403e-08,5.249157930331230682e-08,5.467872844095031960e-08,5.686587757858833239e-08,5.905302671622634517e-08,6.124017585386435796e-08,6.342732499150237074e-08,6.561447412914038352e-08,6.780162326677839631e-08,6.998877240441640909e-08,7.217592154205442188e-08,7.436307067969243466e-08,7.655021981733044744e-08,7.873736895496846023e-08,8.092451809260647301e-08,8.311166723024448580e-08,8.529881636788249858e-08,8.748596550552051136e-08,8.967311464315852415e-08,9.186026378079653693e-08,9.404741291843454972e-08,9.623456205607256250e-08,9.842171119371057529e-08,1.006088603313485881e-07,1.027960094689866009e-07,1.049831586066246136e-07,1.071703077442626264e-07,1.093574568819006392e-07,1.115446060195386520e-07,1.137317551571766648e-07,1.159189042948146776e-07,1.181060534324526903e-07,1.202932025700907031e-07,1.224803517077287159e-07,1.246675008453667287e-07,1.268546499830047415e-07,1.290417991206427543e-07,1.312289482582807670e-07,1.334160973959187798e-07,1.356032465335567926e-07,1.377903956711948054e-07 +0.000000000000000000e+00,1.238862490239808477e-09,2.477724980479616955e-09,3.716587470719425432e-09,4.955449960959233910e-09,6.194312451199042387e-09,7.433174941438850865e-09,8.672037431678660170e-09,9.910899921918469474e-09,1.114976241215827878e-08,1.238862490239808808e-08,1.362748739263789739e-08,1.486634988287770669e-08,1.610521237311751600e-08,1.734407486335732696e-08,1.858293735359713792e-08,1.982179984383694887e-08,2.106066233407675983e-08,2.229952482431657079e-08,2.353838731455638175e-08,2.477724980479619271e-08,2.601611229503600367e-08,2.725497478527581463e-08,2.849383727551562559e-08,2.973269976575543655e-08,3.097156225599524751e-08,3.221042474623505846e-08,3.344928723647486942e-08,3.468814972671468038e-08,3.592701221695449134e-08,3.716587470719430230e-08,3.840473719743411326e-08,3.964359968767392422e-08,4.088246217791373518e-08,4.212132466815354614e-08,4.336018715839335710e-08,4.459904964863316806e-08,4.583791213887297901e-08,4.707677462911278997e-08,4.831563711935260093e-08,4.955449960959241189e-08,5.079336209983222285e-08,5.203222459007203381e-08,5.327108708031184477e-08,5.450994957055165573e-08,5.574881206079146669e-08,5.698767455103127765e-08,5.822653704127108860e-08,5.946539953151089956e-08,6.070426202175070391e-08,6.194312451199050825e-08,6.318198700223031259e-08,6.442084949247011693e-08,6.565971198270992127e-08,6.689857447294972561e-08,6.813743696318952995e-08,6.937629945342933430e-08,7.061516194366913864e-08,7.185402443390894298e-08,7.309288692414874732e-08,7.433174941438855166e-08,7.557061190462835600e-08,7.680947439486816035e-08,7.804833688510796469e-08 +0.000000000000000000e+00,1.167075071083183527e-09,2.334150142166367054e-09,3.501225213249550787e-09,4.668300284332734934e-09,5.835375355415919081e-09,7.002450426499103229e-09,8.169525497582287376e-09,9.336600568665471523e-09,1.050367563974865567e-08,1.167075071083183982e-08,1.283782578191502396e-08,1.400490085299820811e-08,1.517197592408139391e-08,1.633905099516457806e-08,1.750612606624776221e-08,1.867320113733094635e-08,1.984027620841413050e-08,2.100735127949731465e-08,2.217442635058049880e-08,2.334150142166368294e-08,2.450857649274686709e-08,2.567565156383005124e-08,2.684272663491323538e-08,2.800980170599641953e-08,2.917687677707960368e-08,3.034395184816278783e-08,3.151102691924597197e-08,3.267810199032915612e-08,3.384517706141234027e-08,3.501225213249552441e-08,3.617932720357870856e-08,3.734640227466189271e-08,3.851347734574507686e-08,3.968055241682826100e-08,4.084762748791144515e-08,4.201470255899462930e-08,4.318177763007781345e-08,4.434885270116099759e-08,4.551592777224418174e-08,4.668300284332736589e-08,4.785007791441055003e-08,4.901715298549373418e-08,5.018422805657691833e-08,5.135130312766010248e-08,5.251837819874328662e-08,5.368545326982647077e-08,5.485252834090965492e-08,5.601960341199283906e-08,5.718667848307602321e-08,5.835375355415920736e-08,5.952082862524239151e-08,6.068790369632557565e-08,6.185497876740875980e-08,6.302205383849194395e-08,6.418912890957512809e-08,6.535620398065831224e-08,6.652327905174149639e-08,6.769035412282468054e-08,6.885742919390786468e-08,7.002450426499104883e-08,7.119157933607423298e-08,7.235865440715741712e-08,7.352572947824060127e-08 +0.000000000000000000e+00,2.187149137643700064e-09,4.374298275287400129e-09,6.561447412931099780e-09,8.748596550574798603e-09,1.093574568821849743e-08,1.312289482586219625e-08,1.531004396350589342e-08,1.749719310114959059e-08,1.968434223879328776e-08,2.187149137643698493e-08,2.405864051408068210e-08,2.624578965172437927e-08,2.843293878936807644e-08,3.062008792701177360e-08,3.280723706465547077e-08,3.499438620229916794e-08,3.718153533994286511e-08,3.936868447758656228e-08,4.155583361523025945e-08,4.374298275287395662e-08,4.593013189051765379e-08,4.811728102816135096e-08,5.030443016580504813e-08,5.249157930344874530e-08,5.467872844109244247e-08,5.686587757873613964e-08,5.905302671637983681e-08,6.124017585402353397e-08,6.342732499166722453e-08,6.561447412931091508e-08,6.780162326695460563e-08,6.998877240459829618e-08,7.217592154224198673e-08,7.436307067988567729e-08,7.655021981752936784e-08,7.873736895517305839e-08,8.092451809281674894e-08,8.311166723046043949e-08,8.529881636810413005e-08,8.748596550574782060e-08,8.967311464339151115e-08,9.186026378103520170e-08,9.404741291867889225e-08,9.623456205632258280e-08,9.842171119396627336e-08,1.006088603316099639e-07,1.027960094692536545e-07,1.049831586068973450e-07,1.071703077445410356e-07,1.093574568821847261e-07,1.115446060198284167e-07,1.137317551574721072e-07,1.159189042951157978e-07,1.181060534327594883e-07,1.202932025704031789e-07,1.224803517080468827e-07,1.246675008456905864e-07,1.268546499833342902e-07,1.290417991209779940e-07,1.312289482586216978e-07,1.334160973962654016e-07,1.356032465339091054e-07,1.377903956715528092e-07 +0.000000000000000000e+00,1.319718143716526685e-09,2.639436287433053370e-09,3.959154431149580055e-09,5.278872574866106740e-09,6.598590718582633425e-09,7.918308862299160110e-09,9.238027006015685968e-09,1.055774514973221183e-08,1.187746329344873768e-08,1.319718143716526354e-08,1.451689958088178940e-08,1.583661772459831691e-08,1.715633586831484442e-08,1.847605401203137194e-08,1.979577215574789945e-08,2.111549029946442696e-08,2.243520844318095447e-08,2.375492658689748198e-08,2.507464473061400950e-08,2.639436287433053701e-08,2.771408101804706452e-08,2.903379916176359203e-08,3.035351730548011954e-08,3.167323544919664706e-08,3.299295359291317457e-08,3.431267173662970208e-08,3.563238988034622959e-08,3.695210802406275711e-08,3.827182616777928462e-08,3.959154431149581213e-08,4.091126245521233964e-08,4.223098059892886715e-08,4.355069874264539467e-08,4.487041688636192218e-08,4.619013503007844969e-08,4.750985317379497720e-08,4.882957131751150472e-08,5.014928946122803223e-08,5.146900760494455974e-08,5.278872574866108725e-08,5.410844389237761476e-08,5.542816203609414228e-08,5.674788017981066979e-08,5.806759832352719730e-08,5.938731646724372481e-08,6.070703461096025232e-08,6.202675275467677984e-08,6.334647089839330735e-08,6.466618904210983486e-08,6.598590718582636237e-08,6.730562532954288989e-08,6.862534347325941740e-08,6.994506161697594491e-08,7.126477976069247242e-08,7.258449790440899993e-08,7.390421604812552745e-08,7.522393419184205496e-08,7.654365233555858247e-08,7.786337047927510998e-08,7.918308862299163750e-08,8.050280676670816501e-08,8.182252491042469252e-08,8.314224305414122003e-08 +0.000000000000000000e+00,1.290561891554132454e-09,2.581123783108264908e-09,3.871685674662397155e-09,5.162247566216528988e-09,6.452809457770660822e-09,7.743371349324792656e-09,9.033933240878923662e-09,1.032449513243305467e-08,1.161505702398718567e-08,1.290561891554131668e-08,1.419618080709544769e-08,1.548674269864957869e-08,1.677730459020370970e-08,1.806786648175784071e-08,1.935842837331197171e-08,2.064899026486610272e-08,2.193955215642023373e-08,2.323011404797436473e-08,2.452067593952849574e-08,2.581123783108262674e-08,2.710179972263675775e-08,2.839236161419088876e-08,2.968292350574501976e-08,3.097348539729915077e-08,3.226404728885328508e-08,3.355460918040741940e-08,3.484517107196155372e-08,3.613573296351568803e-08,3.742629485506982235e-08,3.871685674662395666e-08,4.000741863817809098e-08,4.129798052973222529e-08,4.258854242128635961e-08,4.387910431284049392e-08,4.516966620439462824e-08,4.646022809594876255e-08,4.775078998750289687e-08,4.904135187905703118e-08,5.033191377061116550e-08,5.162247566216529981e-08,5.291303755371943413e-08,5.420359944527356844e-08,5.549416133682770276e-08,5.678472322838183707e-08,5.807528511993597139e-08,5.936584701149010570e-08,6.065640890304424002e-08,6.194697079459836771e-08,6.323753268615249541e-08,6.452809457770662311e-08,6.581865646926075081e-08,6.710921836081487850e-08,6.839978025236900620e-08,6.969034214392313390e-08,7.098090403547726160e-08,7.227146592703138930e-08,7.356202781858551699e-08,7.485258971013964469e-08,7.614315160169377239e-08,7.743371349324790009e-08,7.872427538480202778e-08,8.001483727635615548e-08,8.130539916791028318e-08 +0.000000000000000000e+00,2.309851311864777862e-09,4.619702623729555725e-09,6.929553935594333587e-09,9.239405247459111449e-09,1.154925655932388848e-08,1.385910787118866552e-08,1.616895918305344255e-08,1.847881049491821959e-08,2.078866180678299663e-08,2.309851311864777366e-08,2.540836443051255070e-08,2.771821574237732773e-08,3.002806705424210477e-08,3.233791836610688511e-08,3.464776967797166545e-08,3.695762098983644580e-08,3.926747230170122614e-08,4.157732361356600649e-08,4.388717492543078683e-08,4.619702623729556717e-08,4.850687754916034752e-08,5.081672886102512786e-08,5.312658017288990820e-08,5.543643148475468855e-08,5.774628279661946889e-08,6.005613410848424924e-08,6.236598542034903620e-08,6.467583673221382316e-08,6.698568804407861012e-08,6.929553935594339708e-08,7.160539066780818404e-08,7.391524197967297100e-08,7.622509329153775797e-08,7.853494460340254493e-08,8.084479591526733189e-08,8.315464722713211885e-08,8.546449853899690581e-08,8.777434985086169277e-08,9.008420116272647973e-08,9.239405247459126670e-08,9.470390378645605366e-08,9.701375509832084062e-08,9.932360641018562758e-08,1.016334577220504145e-07,1.039433090339152015e-07,1.062531603457799885e-07,1.085630116576447754e-07,1.108728629695095624e-07,1.131827142813743493e-07,1.154925655932391363e-07,1.178024169051039233e-07,1.201122682169687102e-07,1.224221195288334972e-07,1.247319708406982842e-07,1.270418221525630711e-07,1.293516734644278581e-07,1.316615247762926450e-07,1.339713760881574320e-07,1.362812274000222190e-07,1.385910787118870059e-07,1.409009300237517929e-07,1.432107813356165798e-07,1.455206326474813668e-07 +0.000000000000000000e+00,1.319718143720879309e-09,2.639436287441758619e-09,3.959154431162637928e-09,5.278872574883517237e-09,6.598590718604396547e-09,7.918308862325275856e-09,9.238027006046155993e-09,1.055774514976703613e-08,1.187746329348791627e-08,1.319718143720879640e-08,1.451689958092967654e-08,1.583661772465055502e-08,1.715633586837143350e-08,1.847605401209231199e-08,1.979577215581319047e-08,2.111549029953406895e-08,2.243520844325494743e-08,2.375492658697582591e-08,2.507464473069670440e-08,2.639436287441758288e-08,2.771408101813846136e-08,2.903379916185933984e-08,3.035351730558021502e-08,3.167323544930109019e-08,3.299295359302196536e-08,3.431267173674284054e-08,3.563238988046371571e-08,3.695210802418459088e-08,3.827182616790546606e-08,3.959154431162634123e-08,4.091126245534721640e-08,4.223098059906809158e-08,4.355069874278896675e-08,4.487041688650984192e-08,4.619013503023071710e-08,4.750985317395159227e-08,4.882957131767246745e-08,5.014928946139334262e-08,5.146900760511421779e-08,5.278872574883509297e-08,5.410844389255596814e-08,5.542816203627684331e-08,5.674788017999771849e-08,5.806759832371859366e-08,5.938731646743946883e-08,6.070703461116035062e-08,6.202675275488123241e-08,6.334647089860211421e-08,6.466618904232299600e-08,6.598590718604387779e-08,6.730562532976475958e-08,6.862534347348564137e-08,6.994506161720652316e-08,7.126477976092740495e-08,7.258449790464828674e-08,7.390421604836916853e-08,7.522393419209005032e-08,7.654365233581093211e-08,7.786337047953181391e-08,7.918308862325269570e-08,8.050280676697357749e-08,8.182252491069445928e-08,8.314224305441534107e-08 +0.000000000000000000e+00,1.290561891558974769e-09,2.581123783117949538e-09,3.871685674676924101e-09,5.162247566235898250e-09,6.452809457794872399e-09,7.743371349353846547e-09,9.033933240912821523e-09,1.032449513247179650e-08,1.161505702403077148e-08,1.290561891558974645e-08,1.419618080714872143e-08,1.548674269870769640e-08,1.677730459026667138e-08,1.806786648182564636e-08,1.935842837338462133e-08,2.064899026494359631e-08,2.193955215650257128e-08,2.323011404806154626e-08,2.452067593962052124e-08,2.581123783117949621e-08,2.710179972273847119e-08,2.839236161429744616e-08,2.968292350585642114e-08,3.097348539741539942e-08,3.226404728897437771e-08,3.355460918053335599e-08,3.484517107209233428e-08,3.613573296365131256e-08,3.742629485521029085e-08,3.871685674676926913e-08,4.000741863832824742e-08,4.129798052988722570e-08,4.258854242144620399e-08,4.387910431300518227e-08,4.516966620456416056e-08,4.646022809612313884e-08,4.775078998768211713e-08,4.904135187924109541e-08,5.033191377080007370e-08,5.162247566235905198e-08,5.291303755391803027e-08,5.420359944547700855e-08,5.549416133703598683e-08,5.678472322859496512e-08,5.807528512015394340e-08,5.936584701171292169e-08,6.065640890327189336e-08,6.194697079483086502e-08,6.323753268638983669e-08,6.452809457794880836e-08,6.581865646950778003e-08,6.710921836106675169e-08,6.839978025262572336e-08,6.969034214418469503e-08,7.098090403574366669e-08,7.227146592730263836e-08,7.356202781886161003e-08,7.485258971042058170e-08,7.614315160197955336e-08,7.743371349353852503e-08,7.872427538509749670e-08,8.001483727665646837e-08,8.130539916821544003e-08 +0.000000000000000000e+00,2.309851311869386086e-09,4.619702623738772171e-09,6.929553935608158257e-09,9.239405247477544342e-09,1.154925655934693043e-08,1.385910787121631651e-08,1.616895918308570260e-08,1.847881049495508868e-08,2.078866180682447477e-08,2.309851311869386086e-08,2.540836443056324694e-08,2.771821574243263303e-08,3.002806705430201911e-08,3.233791836617140520e-08,3.464776967804079128e-08,3.695762098991017737e-08,3.926747230177956345e-08,4.157732361364894954e-08,4.388717492551833563e-08,4.619702623738772171e-08,4.850687754925710780e-08,5.081672886112649388e-08,5.312658017299587997e-08,5.543643148486526605e-08,5.774628279673465214e-08,6.005613410860403822e-08,6.236598542047341769e-08,6.467583673234279716e-08,6.698568804421217663e-08,6.929553935608155610e-08,7.160539066795093556e-08,7.391524197982031503e-08,7.622509329168969450e-08,7.853494460355907397e-08,8.084479591542845344e-08,8.315464722729783291e-08,8.546449853916721237e-08,8.777434985103659184e-08,9.008420116290597131e-08,9.239405247477535078e-08,9.470390378664473025e-08,9.701375509851410971e-08,9.932360641038348918e-08,1.016334577222528686e-07,1.039433090341222481e-07,1.062531603459916276e-07,1.085630116578610071e-07,1.108728629697303865e-07,1.131827142815997660e-07,1.154925655934691455e-07,1.178024169053385249e-07,1.201122682172078912e-07,1.224221195290772574e-07,1.247319708409466236e-07,1.270418221528159899e-07,1.293516734646853561e-07,1.316615247765547223e-07,1.339713760884240886e-07,1.362812274002934548e-07,1.385910787121628210e-07,1.409009300240321873e-07,1.432107813359015535e-07,1.455206326477709197e-07 +0.000000000000000000e+00,1.306033275103870410e-09,2.612066550207740821e-09,3.918099825311611231e-09,5.224133100415481642e-09,6.530166375519352052e-09,7.836199650623222463e-09,9.142232925727093700e-09,1.044826620083096494e-08,1.175429947593483618e-08,1.306033275103870741e-08,1.436636602614257865e-08,1.567239930124644823e-08,1.697843257635031782e-08,1.828446585145418740e-08,1.959049912655805698e-08,2.089653240166192657e-08,2.220256567676579615e-08,2.350859895186966573e-08,2.481463222697353532e-08,2.612066550207740490e-08,2.742669877718127448e-08,2.873273205228514407e-08,3.003876532738901034e-08,3.134479860249287662e-08,3.265083187759674289e-08,3.395686515270060916e-08,3.526289842780447544e-08,3.656893170290834171e-08,3.787496497801220799e-08,3.918099825311607426e-08,4.048703152821994054e-08,4.179306480332380681e-08,4.309909807842767309e-08,4.440513135353153936e-08,4.571116462863540563e-08,4.701719790373927191e-08,4.832323117884313818e-08,4.962926445394700446e-08,5.093529772905087073e-08,5.224133100415473701e-08,5.354736427925860328e-08,5.485339755436246956e-08,5.615943082946633583e-08,5.746546410457020211e-08,5.877149737967406838e-08,6.007753065477794127e-08,6.138356392988181416e-08,6.268959720498568706e-08,6.399563048008955995e-08,6.530166375519343284e-08,6.660769703029730573e-08,6.791373030540117862e-08,6.921976358050505152e-08,7.052579685560892441e-08,7.183183013071279730e-08,7.313786340581667019e-08,7.444389668092054308e-08,7.574992995602441598e-08,7.705596323112828887e-08,7.836199650623216176e-08,7.966802978133603465e-08,8.097406305643990754e-08,8.228009633154378044e-08 +0.000000000000000000e+00,1.325318240847672717e-09,2.650636481695345434e-09,3.975954722543018357e-09,5.301272963390691694e-09,6.626591204238365032e-09,7.951909445086038369e-09,9.277227685933711706e-09,1.060254592678138504e-08,1.192786416762905838e-08,1.325318240847673172e-08,1.457850064932440505e-08,1.590381889017208005e-08,1.722913713101975338e-08,1.855445537186742672e-08,1.987977361271510006e-08,2.120509185356277340e-08,2.253041009441044673e-08,2.385572833525812007e-08,2.518104657610579341e-08,2.650636481695346674e-08,2.783168305780114008e-08,2.915700129864881342e-08,3.048231953949648676e-08,3.180763778034416009e-08,3.313295602119183343e-08,3.445827426203950677e-08,3.578359250288718010e-08,3.710891074373485344e-08,3.843422898458252678e-08,3.975954722543020012e-08,4.108486546627787345e-08,4.241018370712554679e-08,4.373550194797322013e-08,4.506082018882089346e-08,4.638613842966856680e-08,4.771145667051624014e-08,4.903677491136391348e-08,5.036209315221158681e-08,5.168741139305926015e-08,5.301272963390693349e-08,5.433804787475460682e-08,5.566336611560228016e-08,5.698868435644995350e-08,5.831400259729762684e-08,5.963932083814530017e-08,6.096463907899297351e-08,6.228995731984064685e-08,6.361527556068832019e-08,6.494059380153599352e-08,6.626591204238366686e-08,6.759123028323134020e-08,6.891654852407901353e-08,7.024186676492668687e-08,7.156718500577436021e-08,7.289250324662203355e-08,7.421782148746970688e-08,7.554313972831738022e-08,7.686845796916505356e-08,7.819377621001272689e-08,7.951909445086040023e-08,8.084441269170807357e-08,8.216973093255574691e-08,8.349504917340342024e-08 +0.000000000000000000e+00,2.293312442823105729e-09,4.586624885646211459e-09,6.879937328469317602e-09,9.173249771292424572e-09,1.146656221411553154e-08,1.375987465693863851e-08,1.605318709976174548e-08,1.834649954258485245e-08,2.063981198540795942e-08,2.293312442823106639e-08,2.522643687105417336e-08,2.751974931387728033e-08,2.981306175670039061e-08,3.210637419952349758e-08,3.439968664234660455e-08,3.669299908516971152e-08,3.898631152799281849e-08,4.127962397081592546e-08,4.357293641363903243e-08,4.586624885646213940e-08,4.815956129928524637e-08,5.045287374210835334e-08,5.274618618493146031e-08,5.503949862775456728e-08,5.733281107057767425e-08,5.962612351340078122e-08,6.191943595622388819e-08,6.421274839904699516e-08,6.650606084187010213e-08,6.879937328469320910e-08,7.109268572751631607e-08,7.338599817033942304e-08,7.567931061316253001e-08,7.797262305598563698e-08,8.026593549880874395e-08,8.255924794163185092e-08,8.485256038445495789e-08,8.714587282727806486e-08,8.943918527010117183e-08,9.173249771292427880e-08,9.402581015574738577e-08,9.631912259857049274e-08,9.861243504139359971e-08,1.009057474842167067e-07,1.031990599270398137e-07,1.054923723698629206e-07,1.077856848126860276e-07,1.100789972555091346e-07,1.123723096983322415e-07,1.146656221411553485e-07,1.169589345839784555e-07,1.192522470268015624e-07,1.215455594696246694e-07,1.238388719124477764e-07,1.261321843552708834e-07,1.284254967980939903e-07,1.307188092409170973e-07,1.330121216837402043e-07,1.353054341265633112e-07,1.375987465693864182e-07,1.398920590122095252e-07,1.421853714550326321e-07,1.444786838978557391e-07 +0.000000000000000000e+00,1.306033275107227523e-09,2.612066550214455046e-09,3.918099825321682155e-09,5.224133100428909265e-09,6.530166375536136374e-09,7.836199650643364310e-09,9.142232925750592247e-09,1.044826620085782018e-08,1.175429947596504812e-08,1.306033275107227606e-08,1.436636602617950399e-08,1.567239930128673193e-08,1.697843257639395987e-08,1.828446585150118780e-08,1.959049912660841574e-08,2.089653240171564368e-08,2.220256567682287161e-08,2.350859895193009955e-08,2.481463222703732749e-08,2.612066550214455542e-08,2.742669877725178336e-08,2.873273205235901129e-08,3.003876532746623592e-08,3.134479860257345724e-08,3.265083187768067856e-08,3.395686515278789988e-08,3.526289842789512120e-08,3.656893170300234252e-08,3.787496497810956384e-08,3.918099825321678516e-08,4.048703152832400648e-08,4.179306480343122779e-08,4.309909807853844911e-08,4.440513135364567043e-08,4.571116462875289175e-08,4.701719790386011307e-08,4.832323117896733439e-08,4.962926445407455571e-08,5.093529772918177703e-08,5.224133100428899835e-08,5.354736427939621967e-08,5.485339755450344099e-08,5.615943082961066230e-08,5.746546410471788362e-08,5.877149737982510494e-08,6.007753065493232626e-08,6.138356393003954758e-08,6.268959720514676890e-08,6.399563048025399022e-08,6.530166375536121154e-08,6.660769703046843286e-08,6.791373030557565418e-08,6.921976358068287549e-08,7.052579685579009681e-08,7.183183013089731813e-08,7.313786340600453945e-08,7.444389668111176077e-08,7.574992995621898209e-08,7.705596323132620341e-08,7.836199650643342473e-08,7.966802978154064605e-08,8.097406305664786737e-08,8.228009633175508869e-08 +0.000000000000000000e+00,1.325318240851513316e-09,2.650636481703026633e-09,3.975954722554540156e-09,5.301272963406054093e-09,6.626591204257568030e-09,7.951909445109081966e-09,9.277227685960596730e-09,1.060254592681211149e-08,1.192786416766362626e-08,1.325318240851514102e-08,1.457850064936665579e-08,1.590381889021817055e-08,1.722913713106968531e-08,1.855445537192120008e-08,1.987977361277271484e-08,2.120509185362422961e-08,2.253041009447574437e-08,2.385572833532725913e-08,2.518104657617877390e-08,2.650636481703028866e-08,2.783168305788180343e-08,2.915700129873331819e-08,3.048231953958482964e-08,3.180763778043634110e-08,3.313295602128785256e-08,3.445827426213936401e-08,3.578359250299087547e-08,3.710891074384238692e-08,3.843422898469389838e-08,3.975954722554540983e-08,4.108486546639692129e-08,4.241018370724843274e-08,4.373550194809994420e-08,4.506082018895145565e-08,4.638613842980296711e-08,4.771145667065447856e-08,4.903677491150599002e-08,5.036209315235750147e-08,5.168741139320901293e-08,5.301272963406052438e-08,5.433804787491203584e-08,5.566336611576354729e-08,5.698868435661505875e-08,5.831400259746657020e-08,5.963932083831808166e-08,6.096463907916959312e-08,6.228995732002110457e-08,6.361527556087261603e-08,6.494059380172412748e-08,6.626591204257563894e-08,6.759123028342715039e-08,6.891654852427866185e-08,7.024186676513017330e-08,7.156718500598168476e-08,7.289250324683319621e-08,7.421782148768470767e-08,7.554313972853621912e-08,7.686845796938773058e-08,7.819377621023924203e-08,7.951909445109075349e-08,8.084441269194226494e-08,8.216973093279377640e-08,8.349504917364528785e-08 +0.000000000000000000e+00,2.293312442826764763e-09,4.586624885653529525e-09,6.879937328480294288e-09,9.173249771307059051e-09,1.146656221413382381e-08,1.375987465696058858e-08,1.605318709978735168e-08,1.834649954261411479e-08,2.063981198544087790e-08,2.293312442826764101e-08,2.522643687109440412e-08,2.751974931392116723e-08,2.981306175674793034e-08,3.210637419957469013e-08,3.439968664240144993e-08,3.669299908522820973e-08,3.898631152805496953e-08,4.127962397088172933e-08,4.357293641370848913e-08,4.586624885653524893e-08,4.815956129936200873e-08,5.045287374218876853e-08,5.274618618501552833e-08,5.503949862784228813e-08,5.733281107066904793e-08,5.962612351349580773e-08,6.191943595632256753e-08,6.421274839914932733e-08,6.650606084197608713e-08,6.879937328480284693e-08,7.109268572762960673e-08,7.338599817045636653e-08,7.567931061328312633e-08,7.797262305610988613e-08,8.026593549893664593e-08,8.255924794176340573e-08,8.485256038459016553e-08,8.714587282741692533e-08,8.943918527024368513e-08,9.173249771307044493e-08,9.402581015589720473e-08,9.631912259872396453e-08,9.861243504155072433e-08,1.009057474843774841e-07,1.031990599272042439e-07,1.054923723700310037e-07,1.077856848128577635e-07,1.100789972556845233e-07,1.123723096985112831e-07,1.146656221413380429e-07,1.169589345841648027e-07,1.192522470269915625e-07,1.215455594698183223e-07,1.238388719126450821e-07,1.261321843554718419e-07,1.284254967982986017e-07,1.307188092411253615e-07,1.330121216839521213e-07,1.353054341267788811e-07,1.375987465696056409e-07,1.398920590124324007e-07,1.421853714552591605e-07,1.444786838980859203e-07 +0.000000000000000000e+00,1.261342729014896206e-09,2.522685458029792413e-09,3.784028187044689033e-09,5.045370916059585653e-09,6.306713645074482272e-09,7.568056374089378065e-09,8.829399103104273858e-09,1.009074183211916965e-08,1.135208456113406544e-08,1.261342729014896124e-08,1.387477001916385703e-08,1.513611274817875282e-08,1.639745547719364696e-08,1.765879820620854110e-08,1.892014093522343524e-08,2.018148366423832938e-08,2.144282639325322351e-08,2.270416912226811765e-08,2.396551185128301179e-08,2.522685458029790593e-08,2.648819730931280007e-08,2.774954003832769421e-08,2.901088276734258834e-08,3.027222549635748579e-08,3.153356822537238324e-08,3.279491095438728069e-08,3.405625368340217813e-08,3.531759641241707558e-08,3.657893914143197303e-08,3.784028187044687047e-08,3.910162459946176792e-08,4.036296732847666537e-08,4.162431005749156281e-08,4.288565278650646026e-08,4.414699551552135771e-08,4.540833824453625516e-08,4.666968097355115260e-08,4.793102370256605005e-08,4.919236643158094750e-08,5.045370916059584494e-08,5.171505188961074239e-08,5.297639461862563984e-08,5.423773734764053729e-08,5.549908007665543473e-08,5.676042280567033218e-08,5.802176553468522963e-08,5.928310826370012707e-08,6.054445099271502452e-08,6.180579372172991535e-08,6.306713645074480618e-08,6.432847917975969701e-08,6.558982190877458784e-08,6.685116463778947867e-08,6.811250736680436950e-08,6.937385009581926033e-08,7.063519282483415116e-08,7.189653555384904199e-08,7.315787828286393282e-08,7.441922101187882365e-08,7.568056374089371448e-08,7.694190646990860531e-08,7.820324919892349614e-08,7.946459192793838697e-08 +0.000000000000000000e+00,1.261342729017812018e-09,2.522685458035624036e-09,3.784028187053435640e-09,5.045370916071247245e-09,6.306713645089058849e-09,7.568056374106871281e-09,8.829399103124683712e-09,1.009074183214249614e-08,1.135208456116030858e-08,1.261342729017812101e-08,1.387477001919593344e-08,1.513611274821374587e-08,1.639745547723155830e-08,1.765879820624937073e-08,1.892014093526718317e-08,2.018148366428499560e-08,2.144282639330280803e-08,2.270416912232062046e-08,2.396551185133843289e-08,2.522685458035624532e-08,2.648819730937405775e-08,2.774954003839187019e-08,2.901088276740968262e-08,3.027222549642749836e-08,3.153356822544531410e-08,3.279491095446312984e-08,3.405625368348094558e-08,3.531759641249876132e-08,3.657893914151657706e-08,3.784028187053439280e-08,3.910162459955220854e-08,4.036296732857002428e-08,4.162431005758784002e-08,4.288565278660565576e-08,4.414699551562347150e-08,4.540833824464128724e-08,4.666968097365910298e-08,4.793102370267691872e-08,4.919236643169473446e-08,5.045370916071255020e-08,5.171505188973036594e-08,5.297639461874818168e-08,5.423773734776599742e-08,5.549908007678381316e-08,5.676042280580162890e-08,5.802176553481944464e-08,5.928310826383726039e-08,6.054445099285507613e-08,6.180579372187289187e-08,6.306713645089070761e-08,6.432847917990852335e-08,6.558982190892633909e-08,6.685116463794415483e-08,6.811250736696197057e-08,6.937385009597978631e-08,7.063519282499760205e-08,7.189653555401541779e-08,7.315787828303323353e-08,7.441922101205104927e-08,7.568056374106886501e-08,7.694190647008668075e-08,7.820324919910449649e-08,7.946459192812231223e-08 +0.000000000000000000e+00,-4.940068540918218314e-21,-9.880137081836436629e-21,-1.482020562275465570e-20,-1.976027416367287627e-20,-2.470034270459109684e-20,-2.964041124550931741e-20,-3.458047978642753798e-20,-3.952054832734575855e-20,-4.446061686826397912e-20,-4.940068540918219969e-20,-5.434075395010042027e-20,-5.928082249101864686e-20,-6.422089103193687345e-20,-6.916095957285510004e-20,-7.410102811377332663e-20,-7.904109665469155322e-20,-8.398116519560977981e-20,-8.892123373652800640e-20,-9.386130227744623299e-20,-9.880137081836445957e-20,-1.037414393592826862e-19,-1.086815079002009128e-19,-1.136215764411191514e-19,-1.185616449820373900e-19,-1.235017135229556286e-19,-1.284417820638738673e-19,-1.333818506047921059e-19,-1.383219191457103445e-19,-1.432619876866285831e-19,-1.482020562275468218e-19,-1.531421247684650604e-19,-1.580821933093832990e-19,-1.630222618503015377e-19,-1.679623303912197763e-19,-1.729023989321380149e-19,-1.778424674730562535e-19,-1.827825360139744922e-19,-1.877226045548927308e-19,-1.926626730958109694e-19,-1.976027416367292080e-19,-2.025428101776474467e-19,-2.074828787185656853e-19,-2.124229472594839239e-19,-2.173630158004021625e-19,-2.223030843413204012e-19,-2.272431528822386398e-19,-2.321832214231568784e-19,-2.371232899640751171e-19,-2.420633585049933557e-19,-2.470034270459115943e-19,-2.519434955868298329e-19,-2.568835641277480716e-19,-2.618236326686663102e-19,-2.667637012095845488e-19,-2.717037697505027874e-19,-2.766438382914210261e-19,-2.815839068323392647e-19,-2.865239753732575033e-19,-2.914640439141757420e-19,-2.964041124550939806e-19,-3.013441809960122192e-19,-3.062842495369304578e-19,-3.112243180778486965e-19 +0.000000000000000000e+00,-5.400257411456693883e-21,-1.080051482291338777e-20,-1.620077223437008090e-20,-2.160102964582677252e-20,-2.700128705728346415e-20,-3.240154446874015578e-20,-3.780180188019684740e-20,-4.320205929165353903e-20,-4.860231670311023066e-20,-5.400257411456692228e-20,-5.940283152602360789e-20,-6.480308893748029952e-20,-7.020334634893699114e-20,-7.560360376039368277e-20,-8.100386117185037440e-20,-8.640411858330706602e-20,-9.180437599476375765e-20,-9.720463340622044928e-20,-1.026048908176771409e-19,-1.080051482291338325e-19,-1.134054056405905242e-19,-1.188056630520472158e-19,-1.242059204635039074e-19,-1.296061778749605990e-19,-1.350064352864172907e-19,-1.404066926978739823e-19,-1.458069501093306739e-19,-1.512072075207873655e-19,-1.566074649322440572e-19,-1.620077223437007488e-19,-1.674079797551574404e-19,-1.728082371666141320e-19,-1.782084945780708237e-19,-1.836087519895275153e-19,-1.890090094009842069e-19,-1.944092668124408986e-19,-1.998095242238975902e-19,-2.052097816353542818e-19,-2.106100390468109734e-19,-2.160102964582676651e-19,-2.214105538697243567e-19,-2.268108112811810483e-19,-2.322110686926377399e-19,-2.376113261040944316e-19,-2.430115835155511232e-19,-2.484118409270078148e-19,-2.538120983384645064e-19,-2.592123557499211981e-19,-2.646126131613778897e-19,-2.700128705728345813e-19,-2.754131279842912729e-19,-2.808133853957479646e-19,-2.862136428072046562e-19,-2.916139002186613478e-19,-2.970141576301180395e-19,-3.024144150415747311e-19,-3.078146724530314227e-19,-3.132149298644881143e-19,-3.186151872759448060e-19,-3.240154446874014976e-19,-3.294157020988581892e-19,-3.348159595103148808e-19,-3.402162169217715725e-19 +0.000000000000000000e+00,-5.064750151515110065e-22,-1.012950030303022013e-21,-1.519425045454532925e-21,-2.025900060606043650e-21,-2.532375075757554374e-21,-3.038850090909065099e-21,-3.545325106060576199e-21,-4.051800121212087300e-21,-4.558275136363598400e-21,-5.064750151515109501e-21,-5.571225166666620601e-21,-6.077700181818131702e-21,-6.584175196969642802e-21,-7.090650212121153903e-21,-7.597125227272665003e-21,-8.103600242424176104e-21,-8.610075257575687204e-21,-9.116550272727198305e-21,-9.623025287878709405e-21,-1.012950030303022051e-20,-1.063597531818173161e-20,-1.114245033333324271e-20,-1.164892534848475381e-20,-1.215540036363626491e-20,-1.266187537878777601e-20,-1.316835039393928711e-20,-1.367482540909079821e-20,-1.418130042424231081e-20,-1.468777543939382342e-20,-1.519425045454533603e-20,-1.570072546969684863e-20,-1.620720048484836124e-20,-1.671367549999987384e-20,-1.722015051515138645e-20,-1.772662553030289905e-20,-1.823310054545441166e-20,-1.873957556060592426e-20,-1.924605057575743687e-20,-1.975252559090894947e-20,-2.025900060606046208e-20,-2.076547562121197468e-20,-2.127195063636348729e-20,-2.177842565151499989e-20,-2.228490066666651250e-20,-2.279137568181802510e-20,-2.329785069696953771e-20,-2.380432571212105031e-20,-2.431080072727256292e-20,-2.481727574242407552e-20,-2.532375075757558813e-20,-2.583022577272710073e-20,-2.633670078787861334e-20,-2.684317580303012594e-20,-2.734965081818163855e-20,-2.785612583333314814e-20,-2.836260084848465774e-20,-2.886907586363616734e-20,-2.937555087878767693e-20,-2.988202589393918653e-20,-3.038850090909069612e-20,-3.089497592424220572e-20,-3.140145093939371532e-20,-3.190792595454522491e-20 +0.000000000000000000e+00,-5.045665182498767872e-21,-1.009133036499753574e-20,-1.513699554749630437e-20,-2.018266072999507450e-20,-2.522832591249384463e-20,-3.027399109499261476e-20,-3.531965627749138790e-20,-4.036532145999016103e-20,-4.541098664248893417e-20,-5.045665182498770731e-20,-5.550231700748648045e-20,-6.054798218998525359e-20,-6.559364737248402673e-20,-7.063931255498279987e-20,-7.568497773748157300e-20,-8.073064291998034614e-20,-8.577630810247911928e-20,-9.082197328497789242e-20,-9.586763846747666556e-20,-1.009133036499754387e-19,-1.059589688324742118e-19,-1.110046340149729850e-19,-1.160502991974717701e-19,-1.210959643799705553e-19,-1.261416295624693405e-19,-1.311872947449681257e-19,-1.362329599274669109e-19,-1.412786251099656960e-19,-1.463242902924644812e-19,-1.513699554749632664e-19,-1.564156206574620516e-19,-1.614612858399608367e-19,-1.665069510224596219e-19,-1.715526162049584071e-19,-1.765982813874571923e-19,-1.816439465699559774e-19,-1.866896117524547626e-19,-1.917352769349535478e-19,-1.967809421174523330e-19,-2.018266072999511181e-19,-2.068722724824499033e-19,-2.119179376649486885e-19,-2.169636028474474737e-19,-2.220092680299462588e-19,-2.270549332124450440e-19,-2.321005983949438292e-19,-2.371462635774426144e-19,-2.421919287599413995e-19,-2.472375939424401847e-19,-2.522832591249389699e-19,-2.573289243074377551e-19,-2.623745894899365402e-19,-2.674202546724353254e-19,-2.724659198549341106e-19,-2.775115850374328958e-19,-2.825572502199316809e-19,-2.876029154024304661e-19,-2.926485805849292513e-19,-2.976942457674280365e-19,-3.027399109499268216e-19,-3.077855761324256068e-19,-3.128312413149243920e-19,-3.178769064974231772e-19 +0.000000000000000000e+00,1.469239194661990031e-09,2.938478389323980062e-09,4.407717583985970093e-09,5.876956778647960124e-09,7.346195973309950155e-09,8.815435167971940186e-09,1.028467436263393022e-08,1.175391355729592025e-08,1.322315275195791028e-08,1.469239194661990031e-08,1.616163114128189034e-08,1.763087033594388037e-08,1.910010953060587040e-08,2.056934872526786043e-08,2.203858791992985046e-08,2.350782711459184050e-08,2.497706630925383053e-08,2.644630550391582056e-08,2.791554469857781059e-08,2.938478389323980062e-08,3.085402308790179396e-08,3.232326228256378730e-08,3.379250147722578064e-08,3.526174067188777398e-08,3.673097986654976732e-08,3.820021906121176066e-08,3.966945825587375400e-08,4.113869745053574734e-08,4.260793664519774068e-08,4.407717583985973402e-08,4.554641503452172736e-08,4.701565422918372070e-08,4.848489342384571403e-08,4.995413261850770737e-08,5.142337181316970071e-08,5.289261100783169405e-08,5.436185020249368739e-08,5.583108939715568073e-08,5.730032859181767407e-08,5.876956778647966741e-08,6.023880698114166075e-08,6.170804617580365409e-08,6.317728537046564743e-08,6.464652456512764077e-08,6.611576375978963411e-08,6.758500295445162745e-08,6.905424214911362079e-08,7.052348134377561413e-08,7.199272053843760747e-08,7.346195973309960081e-08,7.493119892776159415e-08,7.640043812242358749e-08,7.786967731708558083e-08,7.933891651174757417e-08,8.080815570640956751e-08,8.227739490107156085e-08,8.374663409573355419e-08,8.521587329039554753e-08,8.668511248505754087e-08,8.815435167971953421e-08,8.962359087438152755e-08,9.109283006904352089e-08,9.256206926370551423e-08 +0.000000000000000000e+00,4.543314893615307604e-10,9.086629787230615209e-10,1.362994468084592281e-09,1.817325957446123042e-09,2.271657446807654009e-09,2.725988936169184976e-09,3.180320425530715943e-09,3.634651914892246911e-09,4.088983404253777878e-09,4.543314893615308845e-09,4.997646382976839812e-09,5.451977872338370780e-09,5.906309361699901747e-09,6.360640851061432714e-09,6.814972340422963681e-09,7.269303829784494648e-09,7.723635319146026443e-09,8.177966808507557410e-09,8.632298297869088377e-09,9.086629787230619345e-09,9.540961276592150312e-09,9.995292765953681279e-09,1.044962425531521225e-08,1.090395574467674321e-08,1.135828723403827418e-08,1.181261872339980515e-08,1.226695021276133612e-08,1.272128170212286708e-08,1.317561319148439805e-08,1.362994468084592902e-08,1.408427617020745998e-08,1.453860765956899095e-08,1.499293914893052192e-08,1.544727063829205289e-08,1.590160212765358385e-08,1.635593361701511482e-08,1.681026510637664579e-08,1.726459659573817675e-08,1.771892808509970772e-08,1.817325957446123869e-08,1.862759106382276966e-08,1.908192255318430062e-08,1.953625404254583159e-08,1.999058553190736256e-08,2.044491702126889353e-08,2.089924851063042449e-08,2.135357999999195546e-08,2.180791148935348643e-08,2.226224297871501739e-08,2.271657446807654836e-08,2.317090595743807933e-08,2.362523744679961030e-08,2.407956893616114126e-08,2.453390042552267223e-08,2.498823191488420320e-08,2.544256340424573416e-08,2.589689489360726513e-08,2.635122638296879610e-08,2.680555787233032707e-08,2.725988936169185803e-08,2.771422085105338900e-08,2.816855234041491997e-08,2.862288382977645094e-08 +0.000000000000000000e+00,-2.919311026789743799e-21,-5.838622053579487599e-21,-8.757933080369231398e-21,-1.167724410715897520e-20,-1.459655513394871900e-20,-1.751586616073846280e-20,-2.043517718752820660e-20,-2.335448821431795040e-20,-2.627379924110769420e-20,-2.919311026789743799e-20,-3.211242129468718179e-20,-3.503173232147692559e-20,-3.795104334826666939e-20,-4.087035437505641319e-20,-4.378966540184615699e-20,-4.670897642863590079e-20,-4.962828745542564459e-20,-5.254759848221538839e-20,-5.546690950900512617e-20,-5.838622053579486395e-20,-6.130553156258460173e-20,-6.422484258937433951e-20,-6.714415361616407730e-20,-7.006346464295381508e-20,-7.298277566974355286e-20,-7.590208669653329064e-20,-7.882139772332302842e-20,-8.174070875011276620e-20,-8.466001977690250398e-20,-8.757933080369224176e-20,-9.049864183048197954e-20,-9.341795285727171732e-20,-9.633726388406145510e-20,-9.925657491085119289e-20,-1.021758859376409307e-19,-1.050951969644306684e-19,-1.080145079912204062e-19,-1.109338190180101560e-19,-1.138531300447999059e-19,-1.167724410715896557e-19,-1.196917520983794055e-19,-1.226110631251691553e-19,-1.255303741519589051e-19,-1.284496851787486550e-19,-1.313689962055384048e-19,-1.342883072323281546e-19,-1.372076182591179044e-19,-1.401269292859076542e-19,-1.430462403126974040e-19,-1.459655513394871539e-19,-1.488848623662769037e-19,-1.518041733930666535e-19,-1.547234844198564033e-19,-1.576427954466461531e-19,-1.605621064734359030e-19,-1.634814175002256528e-19,-1.664007285270154026e-19,-1.693200395538051524e-19,-1.722393505805949022e-19,-1.751586616073846520e-19,-1.780779726341744019e-19,-1.809972836609641517e-19,-1.839165946877539015e-19 +0.000000000000000000e+00,1.525126500289644536e-09,3.050253000579289072e-09,4.575379500868933194e-09,6.100506001158577316e-09,7.625632501448221439e-09,9.150759001737866388e-09,1.067588550202751134e-08,1.220101200231715629e-08,1.372613850260680124e-08,1.525126500289644619e-08,1.677639150318608948e-08,1.830151800347573278e-08,1.982664450376537607e-08,2.135177100405501937e-08,2.287689750434466266e-08,2.440202400463430596e-08,2.592715050492394925e-08,2.745227700521359255e-08,2.897740350550323584e-08,3.050253000579287914e-08,3.202765650608252243e-08,3.355278300637216573e-08,3.507790950666180902e-08,3.660303600695145232e-08,3.812816250724109561e-08,3.965328900753073891e-08,4.117841550782038220e-08,4.270354200811002550e-08,4.422866850839966879e-08,4.575379500868931209e-08,4.727892150897895538e-08,4.880404800926859868e-08,5.032917450955824197e-08,5.185430100984788527e-08,5.337942751013752857e-08,5.490455401042717186e-08,5.642968051071681516e-08,5.795480701100645845e-08,5.947993351129610175e-08,6.100506001158574504e-08,6.253018651187538172e-08,6.405531301216501840e-08,6.558043951245465507e-08,6.710556601274429175e-08,6.863069251303392843e-08,7.015581901332356511e-08,7.168094551361320178e-08,7.320607201390283846e-08,7.473119851419247514e-08,7.625632501448211182e-08,7.778145151477174850e-08,7.930657801506138517e-08,8.083170451535102185e-08,8.235683101564065853e-08,8.388195751593029521e-08,8.540708401621993188e-08,8.693221051650956856e-08,8.845733701679920524e-08,8.998246351708884192e-08,9.150759001737847859e-08,9.303271651766811527e-08,9.455784301795775195e-08,9.608296951824738863e-08 +0.000000000000000000e+00,4.141884261864560939e-21,8.283768523729121879e-21,1.242565278559368282e-20,1.656753704745824376e-20,2.070942130932280470e-20,2.485130557118736564e-20,2.899318983305192959e-20,3.313507409491649353e-20,3.727695835678105748e-20,4.141884261864562143e-20,4.556072688051018538e-20,4.970261114237474933e-20,5.384449540423931328e-20,5.798637966610388325e-20,6.212826392796845321e-20,6.627014818983302318e-20,7.041203245169759315e-20,7.455391671356216311e-20,7.869580097542673308e-20,8.283768523729130305e-20,8.697956949915587302e-20,9.112145376102044298e-20,9.526333802288501295e-20,9.940522228474958292e-20,1.035471065466141529e-19,1.076889908084787229e-19,1.118308750703432928e-19,1.159727593322078628e-19,1.201146435940724328e-19,1.242565278559370027e-19,1.283984121178015727e-19,1.325402963796661427e-19,1.366821806415307126e-19,1.408240649033952826e-19,1.449659491652598526e-19,1.491078334271244225e-19,1.532497176889889925e-19,1.573916019508535625e-19,1.615334862127181324e-19,1.656753704745827024e-19,1.698172547364472724e-19,1.739591389983118423e-19,1.781010232601764123e-19,1.822429075220409823e-19,1.863847917839055522e-19,1.905266760457701222e-19,1.946685603076346922e-19,1.988104445694992621e-19,2.029523288313638321e-19,2.070942130932284021e-19,2.112360973550929720e-19,2.153779816169575420e-19,2.195198658788221120e-19,2.236617501406866819e-19,2.278036344025512519e-19,2.319455186644158219e-19,2.360874029262803918e-19,2.402292871881449618e-19,2.443711714500095318e-19,2.485130557118741017e-19,2.526549399737386717e-19,2.567968242356032417e-19,2.609387084974678116e-19 +0.000000000000000000e+00,4.377538876861248511e-21,8.755077753722497022e-21,1.313261663058374628e-20,1.751015550744499705e-20,2.188769438430624782e-20,2.626523326116749859e-20,3.064277213802874936e-20,3.502031101489000012e-20,3.939784989175125089e-20,4.377538876861250166e-20,4.815292764547375243e-20,5.253046652233500320e-20,5.690800539919625998e-20,6.128554427605751075e-20,6.566308315291876152e-20,7.004062202978001229e-20,7.441816090664126305e-20,7.879569978350251382e-20,8.317323866036376459e-20,8.755077753722501536e-20,9.192831641408626612e-20,9.630585529094751689e-20,1.006833941678087677e-19,1.050609330446700184e-19,1.094384719215312692e-19,1.138160107983925200e-19,1.181935496752537707e-19,1.225710885521150215e-19,1.269486274289762723e-19,1.313261663058375230e-19,1.357037051826987738e-19,1.400812440595600246e-19,1.444587829364212753e-19,1.488363218132825261e-19,1.532138606901437769e-19,1.575913995670050276e-19,1.619689384438662784e-19,1.663464773207275292e-19,1.707240161975887799e-19,1.751015550744500307e-19,1.794790939513112815e-19,1.838566328281725322e-19,1.882341717050337830e-19,1.926117105818950338e-19,1.969892494587562846e-19,2.013667883356175353e-19,2.057443272124787861e-19,2.101218660893400369e-19,2.144994049662012876e-19,2.188769438430625384e-19,2.232544827199237892e-19,2.276320215967850399e-19,2.320095604736462907e-19,2.363870993505075415e-19,2.407646382273687922e-19,2.451421771042300430e-19,2.495197159810912938e-19,2.538972548579525445e-19,2.582747937348137953e-19,2.626523326116750461e-19,2.670298714885362968e-19,2.714074103653975476e-19,2.757849492422587984e-19 +0.000000000000000000e+00,1.894973306237907195e-21,3.789946612475814389e-21,5.684919918713721584e-21,7.579893224951628778e-21,9.474866531189535220e-21,1.136983983742744166e-20,1.326481314366534810e-20,1.515978644990325455e-20,1.705475975614116099e-20,1.894973306237906743e-20,2.084470636861697387e-20,2.273967967485488032e-20,2.463465298109278676e-20,2.652962628733069320e-20,2.842459959356859663e-20,3.031957289980650308e-20,3.221454620604440952e-20,3.410951951228231596e-20,3.600449281852022240e-20,3.789946612475812884e-20,3.979443943099603529e-20,4.168941273723394173e-20,4.358438604347184817e-20,4.547935934970975461e-20,4.737433265594766106e-20,4.926930596218556750e-20,5.116427926842347394e-20,5.305925257466138038e-20,5.495422588089928682e-20,5.684919918713719327e-20,5.874417249337509971e-20,6.063914579961300615e-20,6.253411910585091259e-20,6.442909241208881904e-20,6.632406571832672548e-20,6.821903902456463192e-20,7.011401233080253836e-20,7.200898563704044480e-20,7.390395894327835125e-20,7.579893224951625769e-20,7.769390555575416413e-20,7.958887886199207057e-20,8.148385216822997702e-20,8.337882547446788346e-20,8.527379878070578990e-20,8.716877208694369634e-20,8.906374539318160278e-20,9.095871869941950923e-20,9.285369200565741567e-20,9.474866531189532211e-20,9.664363861813322855e-20,9.853861192437113500e-20,1.004335852306090414e-19,1.023285585368469479e-19,1.042235318430848543e-19,1.061185051493227608e-19,1.080134784555606672e-19,1.099084517617985736e-19,1.118034250680364681e-19,1.136983983742743625e-19,1.155933716805122569e-19,1.174883449867501513e-19,1.193833182929880457e-19 +0.000000000000000000e+00,4.584497185119805117e-21,9.168994370239610233e-21,1.375349155535941460e-20,1.833798874047921746e-20,2.292248592559902032e-20,2.750698311071882318e-20,3.209148029583862604e-20,3.667597748095842890e-20,4.126047466607823176e-20,4.584497185119803462e-20,5.042946903631783748e-20,5.501396622143763432e-20,5.959846340655742514e-20,6.418296059167721596e-20,6.876745777679700679e-20,7.335195496191679761e-20,7.793645214703658843e-20,8.252094933215637925e-20,8.710544651727617008e-20,9.168994370239596090e-20,9.627444088751575172e-20,1.008589380726355425e-19,1.054434352577553334e-19,1.100279324428751242e-19,1.146124296279949150e-19,1.191969268131147058e-19,1.237814239982344967e-19,1.283659211833542875e-19,1.329504183684740783e-19,1.375349155535938691e-19,1.421194127387136599e-19,1.467039099238334508e-19,1.512884071089532416e-19,1.558729042940730324e-19,1.604574014791928232e-19,1.650418986643126141e-19,1.696263958494324049e-19,1.742108930345521957e-19,1.787953902196719865e-19,1.833798874047917774e-19,1.879643845899115682e-19,1.925488817750313590e-19,1.971333789601511498e-19,2.017178761452709406e-19,2.063023733303907315e-19,2.108868705155105223e-19,2.154713677006303131e-19,2.200558648857501039e-19,2.246403620708698948e-19,2.292248592559896856e-19,2.338093564411094764e-19,2.383938536262292672e-19,2.429783508113490580e-19,2.475628479964688489e-19,2.521473451815886397e-19,2.567318423667084305e-19,2.613163395518282213e-19,2.659008367369480122e-19,2.704853339220678030e-19,2.750698311071875938e-19,2.796543282923073846e-19,2.842388254774271755e-19,2.888233226625469663e-19 +0.000000000000000000e+00,1.469239194671896139e-09,2.938478389343792278e-09,4.407717584015688211e-09,5.876956778687583730e-09,7.346195973359479248e-09,8.815435168031374767e-09,1.028467436270327111e-08,1.175391355737516746e-08,1.322315275204706380e-08,1.469239194671896015e-08,1.616163114139085650e-08,1.763087033606275284e-08,1.910010953073464919e-08,2.056934872540654553e-08,2.203858792007844188e-08,2.350782711475033823e-08,2.497706630942223457e-08,2.644630550409413092e-08,2.791554469876602726e-08,2.938478389343792361e-08,3.085402308810981996e-08,3.232326228278171299e-08,3.379250147745360603e-08,3.526174067212549907e-08,3.673097986679739211e-08,3.820021906146928514e-08,3.966945825614117818e-08,4.113869745081307122e-08,4.260793664548496425e-08,4.407717584015685729e-08,4.554641503482875033e-08,4.701565422950064337e-08,4.848489342417253640e-08,4.995413261884442944e-08,5.142337181351632248e-08,5.289261100818821552e-08,5.436185020286010855e-08,5.583108939753200159e-08,5.730032859220389463e-08,5.876956778687578766e-08,6.023880698154768070e-08,6.170804617621957374e-08,6.317728537089146678e-08,6.464652456556335981e-08,6.611576376023525285e-08,6.758500295490714589e-08,6.905424214957903893e-08,7.052348134425093196e-08,7.199272053892282500e-08,7.346195973359471804e-08,7.493119892826661107e-08,7.640043812293850411e-08,7.786967731761039715e-08,7.933891651228229019e-08,8.080815570695418322e-08,8.227739490162607626e-08,8.374663409629796930e-08,8.521587329096986233e-08,8.668511248564175537e-08,8.815435168031364841e-08,8.962359087498554145e-08,9.109283006965743448e-08,9.256206926432932752e-08 +0.000000000000000000e+00,4.543314893708182927e-10,9.086629787416365853e-10,1.362994468112454826e-09,1.817325957483272964e-09,2.271657446854091101e-09,2.725988936224909239e-09,3.180320425595727376e-09,3.634651914966545514e-09,4.088983404337363652e-09,4.543314893708182203e-09,4.997646383079000754e-09,5.451977872449819305e-09,5.906309361820637856e-09,6.360640851191456407e-09,6.814972340562274958e-09,7.269303829933093510e-09,7.723635319303912061e-09,8.177966808674730612e-09,8.632298298045549163e-09,9.086629787416367714e-09,9.540961276787186265e-09,9.995292766158004816e-09,1.044962425552882337e-08,1.090395574489964192e-08,1.135828723427046047e-08,1.181261872364127902e-08,1.226695021301209757e-08,1.272128170238291612e-08,1.317561319175373467e-08,1.362994468112455323e-08,1.408427617049537178e-08,1.453860765986619033e-08,1.499293914923700888e-08,1.544727063860782743e-08,1.590160212797864598e-08,1.635593361734946453e-08,1.681026510672028308e-08,1.726459659609110163e-08,1.771892808546192019e-08,1.817325957483273874e-08,1.862759106420355729e-08,1.908192255357437584e-08,1.953625404294519439e-08,1.999058553231601294e-08,2.044491702168683149e-08,2.089924851105765004e-08,2.135358000042846860e-08,2.180791148979928715e-08,2.226224297917010570e-08,2.271657446854092425e-08,2.317090595791174280e-08,2.362523744728256135e-08,2.407956893665337990e-08,2.453390042602419845e-08,2.498823191539501700e-08,2.544256340476583556e-08,2.589689489413665411e-08,2.635122638350747266e-08,2.680555787287829121e-08,2.725988936224910976e-08,2.771422085161992831e-08,2.816855234099074686e-08,2.862288383036156541e-08 +0.000000000000000000e+00,-4.693552479383241668e-21,-9.387104958766483336e-21,-1.408065743814972576e-20,-1.877420991753296968e-20,-2.346776239691621360e-20,-2.816131487629945753e-20,-3.285486735568270145e-20,-3.754841983506594538e-20,-4.224197231444918930e-20,-4.693552479383243323e-20,-5.162907727321567715e-20,-5.632262975259892710e-20,-6.101618223198217704e-20,-6.570973471136542698e-20,-7.040328719074867693e-20,-7.509683967013192687e-20,-7.979039214951517681e-20,-8.448394462889842676e-20,-8.917749710828167670e-20,-9.387104958766492664e-20,-9.856460206704817659e-20,-1.032581545464314265e-19,-1.079517070258146765e-19,-1.126452595051979264e-19,-1.173388119845811764e-19,-1.220323644639644263e-19,-1.267259169433476762e-19,-1.314194694227309262e-19,-1.361130219021141761e-19,-1.408065743814974261e-19,-1.455001268608806760e-19,-1.501936793402639260e-19,-1.548872318196471759e-19,-1.595807842990304258e-19,-1.642743367784136758e-19,-1.689678892577969257e-19,-1.736614417371801757e-19,-1.783549942165634256e-19,-1.830485466959466756e-19,-1.877420991753299255e-19,-1.924356516547131755e-19,-1.971292041340964254e-19,-2.018227566134796753e-19,-2.065163090928629253e-19,-2.112098615722461752e-19,-2.159034140516294252e-19,-2.205969665310126510e-19,-2.252905190103959010e-19,-2.299840714897791509e-19,-2.346776239691624009e-19,-2.393711764485456508e-19,-2.440647289279289008e-19,-2.487582814073121507e-19,-2.534518338866954006e-19,-2.581453863660786506e-19,-2.628389388454619005e-19,-2.675324913248451505e-19,-2.722260438042284004e-19,-2.769195962836116504e-19,-2.816131487629949003e-19,-2.863067012423781502e-19,-2.910002537217614002e-19,-2.956938062011446501e-19 +0.000000000000000000e+00,-4.848727735919312049e-21,-9.697455471838624098e-21,-1.454618320775793615e-20,-1.939491094367724820e-20,-2.424363867959656025e-20,-2.909236641551587229e-20,-3.394109415143518434e-20,-3.878982188735449639e-20,-4.363854962327380844e-20,-4.848727735919312049e-20,-5.333600509511243254e-20,-5.818473283103174459e-20,-6.303346056695105062e-20,-6.788218830287035665e-20,-7.273091603878966268e-20,-7.757964377470896871e-20,-8.242837151062827474e-20,-8.727709924654758077e-20,-9.212582698246688680e-20,-9.697455471838619283e-20,-1.018232824543054989e-19,-1.066720101902248049e-19,-1.115207379261441109e-19,-1.163694656620634170e-19,-1.212181933979827230e-19,-1.260669211339020290e-19,-1.309156488698213350e-19,-1.357643766057406411e-19,-1.406131043416599471e-19,-1.454618320775792531e-19,-1.503105598134985592e-19,-1.551592875494178652e-19,-1.600080152853371712e-19,-1.648567430212564773e-19,-1.697054707571757833e-19,-1.745541984930950893e-19,-1.794029262290143954e-19,-1.842516539649337014e-19,-1.891003817008530074e-19,-1.939491094367723134e-19,-1.987978371726916195e-19,-2.036465649086109255e-19,-2.084952926445302315e-19,-2.133440203804495376e-19,-2.181927481163688677e-19,-2.230414758522881737e-19,-2.278902035882074797e-19,-2.327389313241267858e-19,-2.375876590600460918e-19,-2.424363867959653978e-19,-2.472851145318847039e-19,-2.521338422678040099e-19,-2.569825700037233159e-19,-2.618312977396426219e-19,-2.666800254755619280e-19,-2.715287532114812340e-19,-2.763774809474005400e-19,-2.812262086833198461e-19,-2.860749364192391521e-19,-2.909236641551584581e-19,-2.957723918910777642e-19,-3.006211196269970702e-19,-3.054698473629163762e-19 +0.000000000000000000e+00,3.033462210342198424e-10,6.066924420684396848e-10,9.100386631026594755e-10,1.213384884136879163e-09,1.516731105171098850e-09,1.820077326205318537e-09,2.123423547239538225e-09,2.426769768273757912e-09,2.730115989307977599e-09,3.033462210342197287e-09,3.336808431376416974e-09,3.640154652410636661e-09,3.943500873444856349e-09,4.246847094479076450e-09,4.550193315513296551e-09,4.853539536547516651e-09,5.156885757581736752e-09,5.460231978615956853e-09,5.763578199650176954e-09,6.066924420684397055e-09,6.370270641718617156e-09,6.673616862752837257e-09,6.976963083787057358e-09,7.280309304821277459e-09,7.583655525855496732e-09,7.887001746889716006e-09,8.190347967923935280e-09,8.493694188958154554e-09,8.797040409992373827e-09,9.100386631026593101e-09,9.403732852060812375e-09,9.707079073095031649e-09,1.001042529412925092e-08,1.031377151516347020e-08,1.061711773619768947e-08,1.092046395723190874e-08,1.122381017826612802e-08,1.152715639930034729e-08,1.183050262033456656e-08,1.213384884136878584e-08,1.243719506240300511e-08,1.274054128343722439e-08,1.304388750447144366e-08,1.334723372550566293e-08,1.365057994653988221e-08,1.395392616757410148e-08,1.425727238860832075e-08,1.456061860964254003e-08,1.486396483067675930e-08,1.516731105171098023e-08,1.547065727274520116e-08,1.577400349377942209e-08,1.607734971481364301e-08,1.638069593584786394e-08,1.668404215688208487e-08,1.698738837791630580e-08,1.729073459895052673e-08,1.759408081998474765e-08,1.789742704101896858e-08,1.820077326205318951e-08,1.850411948308741044e-08,1.880746570412163137e-08,1.911081192515585230e-08 +0.000000000000000000e+00,3.288692690084846886e-21,6.577385380169693772e-21,9.866078070254541035e-21,1.315477076033938905e-20,1.644346345042423857e-20,1.973215614050908809e-20,2.302084883059393761e-20,2.630954152067878713e-20,2.959823421076363665e-20,3.288692690084848917e-20,3.617561959093334170e-20,3.946431228101819423e-20,4.275300497110304676e-20,4.604169766118789929e-20,4.933039035127275182e-20,5.261908304135760435e-20,5.590777573144246289e-20,5.919646842152732144e-20,6.248516111161217999e-20,6.577385380169703853e-20,6.906254649178189708e-20,7.235123918186675563e-20,7.563993187195161418e-20,7.892862456203647272e-20,8.221731725212133127e-20,8.550600994220618982e-20,8.879470263229104836e-20,9.208339532237590691e-20,9.537208801246076546e-20,9.866078070254562401e-20,1.019494733926304826e-19,1.052381660827153411e-19,1.085268587728001996e-19,1.118155514628850702e-19,1.151042441529699408e-19,1.183929368430548114e-19,1.216816295331396820e-19,1.249703222232245526e-19,1.282590149133094232e-19,1.315477076033942937e-19,1.348364002934791643e-19,1.381250929835640349e-19,1.414137856736489055e-19,1.447024783637337761e-19,1.479911710538186467e-19,1.512798637439035172e-19,1.545685564339883878e-19,1.578572491240732584e-19,1.611459418141581290e-19,1.644346345042429996e-19,1.677233271943278702e-19,1.710120198844127407e-19,1.743007125744976113e-19,1.775894052645824819e-19,1.808780979546673525e-19,1.841667906447522231e-19,1.874554833348370937e-19,1.907441760249219643e-19,1.940328687150068348e-19,1.973215614050917054e-19,2.006102540951765760e-19,2.038989467852614466e-19,2.071876394753463172e-19 +0.000000000000000000e+00,3.680113075570535838e-21,7.360226151141071676e-21,1.104033922671160751e-20,1.472045230228214335e-20,1.840056537785268069e-20,2.208067845342321804e-20,2.576079152899375538e-20,2.944090460456429272e-20,3.312101768013483006e-20,3.680113075570536741e-20,4.048124383127590475e-20,4.416135690684644209e-20,4.784146998241697943e-20,5.152158305798751678e-20,5.520169613355805412e-20,5.888180920912859748e-20,6.256192228469914084e-20,6.624203536026968420e-20,6.992214843584022756e-20,7.360226151141077093e-20,7.728237458698131429e-20,8.096248766255185765e-20,8.464260073812240101e-20,8.832271381369294437e-20,9.200282688926348773e-20,9.568293996483403109e-20,9.936305304040457445e-20,1.030431661159751178e-19,1.067232791915456612e-19,1.104033922671162045e-19,1.140835053426867479e-19,1.177636184182572913e-19,1.214437314938278346e-19,1.251238445693983780e-19,1.288039576449689213e-19,1.324840707205394647e-19,1.361641837961100081e-19,1.398442968716805514e-19,1.435244099472510948e-19,1.472045230228216381e-19,1.508846360983921815e-19,1.545647491739627249e-19,1.582448622495332682e-19,1.619249753251038116e-19,1.656050884006743550e-19,1.692852014762448983e-19,1.729653145518154417e-19,1.766454276273859850e-19,1.803255407029565284e-19,1.840056537785270718e-19,1.876857668540976151e-19,1.913658799296681585e-19,1.950459930052387018e-19,1.987261060808092452e-19,2.024062191563797886e-19,2.060863322319503319e-19,2.097664453075208753e-19,2.134465583830914186e-19,2.171266714586619379e-19,2.208067845342324572e-19,2.244868976098029765e-19,2.281670106853734958e-19,2.318471237609440151e-19 +0.000000000000000000e+00,3.033462210424952675e-10,6.066924420849905349e-10,9.100386631274858541e-10,1.213384884169981277e-09,1.516731105212476699e-09,1.820077326254972122e-09,2.123423547297467337e-09,2.426769768339962553e-09,2.730115989382457769e-09,3.033462210424952985e-09,3.336808431467448200e-09,3.640154652509943416e-09,3.943500873552438632e-09,4.246847094594933848e-09,4.550193315637429064e-09,4.853539536679924279e-09,5.156885757722419495e-09,5.460231978764914711e-09,5.763578199807409927e-09,6.066924420849905142e-09,6.370270641892400358e-09,6.673616862934895574e-09,6.976963083977390790e-09,7.280309305019886005e-09,7.583655526062381221e-09,7.887001747104877264e-09,8.190347968147373307e-09,8.493694189189869350e-09,8.797040410232365393e-09,9.100386631274861436e-09,9.403732852317357479e-09,9.707079073359853522e-09,1.001042529440234956e-08,1.031377151544484561e-08,1.061711773648734165e-08,1.092046395752983769e-08,1.122381017857233374e-08,1.152715639961482978e-08,1.183050262065732582e-08,1.213384884169982187e-08,1.243719506274231791e-08,1.274054128378481395e-08,1.304388750482730999e-08,1.334723372586980604e-08,1.365057994691230208e-08,1.395392616795479812e-08,1.425727238899729417e-08,1.456061861003979021e-08,1.486396483108228625e-08,1.516731105212478229e-08,1.547065727316727834e-08,1.577400349420977438e-08,1.607734971525227042e-08,1.638069593629476647e-08,1.668404215733726251e-08,1.698738837837975855e-08,1.729073459942225460e-08,1.759408082046475064e-08,1.789742704150724668e-08,1.820077326254974272e-08,1.850411948359223877e-08,1.880746570463473481e-08,1.911081192567723085e-08 +0.000000000000000000e+00,-4.198722774621482335e-21,-8.397445549242964670e-21,-1.259616832386444701e-20,-1.679489109848592934e-20,-2.099361387310741017e-20,-2.519233664772889100e-20,-2.939105942235037183e-20,-3.358978219697185266e-20,-3.778850497159333349e-20,-4.198722774621481432e-20,-4.618595052083629515e-20,-5.038467329545777598e-20,-5.458339607007925080e-20,-5.878211884470073163e-20,-6.298084161932221246e-20,-6.717956439394369329e-20,-7.137828716856517412e-20,-7.557700994318665495e-20,-7.977573271780813578e-20,-8.397445549242961661e-20,-8.817317826705109744e-20,-9.237190104167257827e-20,-9.657062381629405910e-20,-1.007693465909155399e-19,-1.049680693655370208e-19,-1.091667921401585016e-19,-1.133655149147799824e-19,-1.175642376894014633e-19,-1.217629604640229441e-19,-1.259616832386444249e-19,-1.301604060132659057e-19,-1.343591287878873866e-19,-1.385578515625088674e-19,-1.427565743371303482e-19,-1.469552971117518291e-19,-1.511540198863733099e-19,-1.553527426609947907e-19,-1.595514654356162716e-19,-1.637501882102377524e-19,-1.679489109848592332e-19,-1.721476337594807141e-19,-1.763463565341021949e-19,-1.805450793087236757e-19,-1.847438020833451565e-19,-1.889425248579666374e-19,-1.931412476325881182e-19,-1.973399704072095990e-19,-2.015386931818310799e-19,-2.057374159564525607e-19,-2.099361387310740415e-19,-2.141348615056955224e-19,-2.183335842803170032e-19,-2.225323070549384840e-19,-2.267310298295599648e-19,-2.309297526041814457e-19,-2.351284753788029265e-19,-2.393271981534244073e-19,-2.435259209280458882e-19,-2.477246437026673690e-19,-2.519233664772888498e-19,-2.561220892519103307e-19,-2.603208120265318115e-19,-2.645195348011532923e-19 +0.000000000000000000e+00,-4.459609660876905162e-21,-8.919219321753810324e-21,-1.337882898263071624e-20,-1.783843864350762366e-20,-2.229804830438453108e-20,-2.675765796526143849e-20,-3.121726762613834892e-20,-3.567687728701525935e-20,-4.013648694789216978e-20,-4.459609660876908021e-20,-4.905570626964599064e-20,-5.351531593052290106e-20,-5.797492559139981149e-20,-6.243453525227672192e-20,-6.689414491315363235e-20,-7.135375457403054278e-20,-7.581336423490745320e-20,-8.027297389578436363e-20,-8.473258355666127406e-20,-8.919219321753818449e-20,-9.365180287841509492e-20,-9.811141253929200535e-20,-1.025710222001689158e-19,-1.070306318610458262e-19,-1.114902415219227366e-19,-1.159498511827996471e-19,-1.204094608436765575e-19,-1.248690705045534679e-19,-1.293286801654303783e-19,-1.337882898263072888e-19,-1.382478994871841992e-19,-1.427075091480611096e-19,-1.471671188089380201e-19,-1.516267284698149305e-19,-1.560863381306918409e-19,-1.605459477915687513e-19,-1.650055574524456618e-19,-1.694651671133225722e-19,-1.739247767741994826e-19,-1.783843864350763931e-19,-1.828439960959533035e-19,-1.873036057568302139e-19,-1.917632154177071243e-19,-1.962228250785840348e-19,-2.006824347394609452e-19,-2.051420444003378556e-19,-2.096016540612147660e-19,-2.140612637220916765e-19,-2.185208733829685628e-19,-2.229804830438454251e-19,-2.274400927047222874e-19,-2.318997023655991497e-19,-2.363593120264760120e-19,-2.408189216873528742e-19,-2.452785313482297365e-19,-2.497381410091065988e-19,-2.541977506699834611e-19,-2.586573603308603234e-19,-2.631169699917371856e-19,-2.675765796526140479e-19,-2.720361893134909102e-19,-2.764957989743677725e-19,-2.809554086352446348e-19 +0.000000000000000000e+00,3.646913648904754344e-10,7.293827297809508689e-10,1.094074094671426355e-09,1.458765459561901945e-09,1.823456824452377534e-09,2.188148189342853124e-09,2.552839554233328713e-09,2.917530919123804303e-09,3.282222284014279892e-09,3.646913648904755482e-09,4.011605013795231485e-09,4.376296378685707074e-09,4.740987743576182664e-09,5.105679108466658253e-09,5.470370473357133843e-09,5.835061838247609433e-09,6.199753203138085022e-09,6.564444568028560612e-09,6.929135932919036201e-09,7.293827297809511791e-09,7.658518662699987380e-09,8.023210027590462970e-09,8.387901392480938559e-09,8.752592757371414149e-09,9.117284122261889738e-09,9.481975487152365328e-09,9.846666852042840917e-09,1.021135821693331651e-08,1.057604958182379210e-08,1.094074094671426769e-08,1.130543231160474328e-08,1.167012367649521887e-08,1.203481504138569445e-08,1.239950640627617004e-08,1.276419777116664563e-08,1.312888913605712122e-08,1.349358050094759681e-08,1.385827186583807240e-08,1.422296323072854799e-08,1.458765459561902358e-08,1.495234596050949917e-08,1.531703732539997476e-08,1.568172869029045035e-08,1.604642005518092594e-08,1.641111142007140153e-08,1.677580278496187712e-08,1.714049414985235271e-08,1.750518551474282830e-08,1.786987687963330389e-08,1.823456824452377948e-08,1.859925960941425507e-08,1.896395097430473066e-08,1.932864233919520625e-08,1.969333370408568183e-08,2.005802506897615742e-08,2.042271643386663301e-08,2.078740779875710860e-08,2.115209916364758419e-08,2.151679052853805978e-08,2.188148189342853537e-08,2.224617325831901096e-08,2.261086462320948655e-08,2.297555598809996214e-08 +0.000000000000000000e+00,2.600735498160892576e-21,5.201470996321785152e-21,7.802206494482677728e-21,1.040294199264357030e-20,1.300367749080446288e-20,1.560441298896535546e-20,1.820514848712624803e-20,2.080588398528714061e-20,2.340661948344803318e-20,2.600735498160892576e-20,2.860809047976981834e-20,3.120882597793071091e-20,3.380956147609160349e-20,3.641029697425249606e-20,3.901103247241338864e-20,4.161176797057428122e-20,4.421250346873517379e-20,4.681323896689606637e-20,4.941397446505695894e-20,5.201470996321785152e-20,5.461544546137874410e-20,5.721618095953963667e-20,5.981691645770052925e-20,6.241765195586142183e-20,6.501838745402231440e-20,6.761912295218320698e-20,7.021985845034409955e-20,7.282059394850499213e-20,7.542132944666588471e-20,7.802206494482677728e-20,8.062280044298766986e-20,8.322353594114856243e-20,8.582427143930945501e-20,8.842500693747034759e-20,9.102574243563124016e-20,9.362647793379213274e-20,9.622721343195302531e-20,9.882794893011391789e-20,1.014286844282748105e-19,1.040294199264357030e-19,1.066301554245965956e-19,1.092308909227574882e-19,1.118316264209183928e-19,1.144323619190792974e-19,1.170330974172402020e-19,1.196338329154011066e-19,1.222345684135620113e-19,1.248353039117229159e-19,1.274360394098838205e-19,1.300367749080447251e-19,1.326375104062056297e-19,1.352382459043665343e-19,1.378389814025274389e-19,1.404397169006883436e-19,1.430404523988492482e-19,1.456411878970101528e-19,1.482419233951710574e-19,1.508426588933319620e-19,1.534433943914928666e-19,1.560441298896537712e-19,1.586448653878146758e-19,1.612456008859755805e-19,1.638463363841364851e-19 +0.000000000000000000e+00,2.921130820829802454e-21,5.842261641659604908e-21,8.763392462489407738e-21,1.168452328331921132e-20,1.460565410414901641e-20,1.752678492497882149e-20,2.044791574580862658e-20,2.336904656663843167e-20,2.629017738746823675e-20,2.921130820829804485e-20,3.213243902912785295e-20,3.505356984995766104e-20,3.797470067078746914e-20,4.089583149161727724e-20,4.381696231244708533e-20,4.673809313327689343e-20,4.965922395410670152e-20,5.258035477493650962e-20,5.550148559576631772e-20,5.842261641659612581e-20,6.134374723742593391e-20,6.426487805825574200e-20,6.718600887908555010e-20,7.010713969991535820e-20,7.302827052074516629e-20,7.594940134157497439e-20,7.887053216240478249e-20,8.179166298323459058e-20,8.471279380406439868e-20,8.763392462489420677e-20,9.055505544572401487e-20,9.347618626655382297e-20,9.639731708738363106e-20,9.931844790821343916e-20,1.022395787290432473e-19,1.051607095498730554e-19,1.080818403707028634e-19,1.110029711915326595e-19,1.139241020123624435e-19,1.168452328331922276e-19,1.197663636540220116e-19,1.226874944748517956e-19,1.256086252956815796e-19,1.285297561165113636e-19,1.314508869373411477e-19,1.343720177581709317e-19,1.372931485790007157e-19,1.402142793998304997e-19,1.431354102206602837e-19,1.460565410414900678e-19,1.489776718623198518e-19,1.518988026831496358e-19,1.548199335039794198e-19,1.577410643248092039e-19,1.606621951456389879e-19,1.635833259664687719e-19,1.665044567872985559e-19,1.694255876081283399e-19,1.723467184289581240e-19,1.752678492497879080e-19,1.781889800706176920e-19,1.811101108914474760e-19,1.840312417122772601e-19 +0.000000000000000000e+00,3.646913648976042838e-10,7.293827297952085675e-10,1.094074094692812903e-09,1.458765459590417342e-09,1.823456824488021781e-09,2.188148189385626219e-09,2.552839554283230452e-09,2.917530919180834684e-09,3.282222284078438916e-09,3.646913648976043148e-09,4.011605013873647380e-09,4.376296378771251612e-09,4.740987743668855844e-09,5.105679108566460076e-09,5.470370473464064308e-09,5.835061838361668540e-09,6.199753203259272772e-09,6.564444568156877004e-09,6.929135933054481236e-09,7.293827297952085468e-09,7.658518662849690527e-09,8.023210027747296414e-09,8.387901392644902300e-09,8.752592757542508187e-09,9.117284122440114073e-09,9.481975487337719960e-09,9.846666852235325846e-09,1.021135821713293173e-08,1.057604958203053762e-08,1.094074094692814351e-08,1.130543231182574939e-08,1.167012367672335528e-08,1.203481504162096116e-08,1.239950640651856705e-08,1.276419777141617294e-08,1.312888913631377882e-08,1.349358050121138471e-08,1.385827186610899060e-08,1.422296323100659648e-08,1.458765459590420237e-08,1.495234596080180826e-08,1.531703732569941414e-08,1.568172869059702003e-08,1.604642005549462591e-08,1.641111142039223180e-08,1.677580278528983769e-08,1.714049415018744357e-08,1.750518551508504946e-08,1.786987687998265535e-08,1.823456824488026123e-08,1.859925960977786712e-08,1.896395097467547301e-08,1.932864233957307889e-08,1.969333370447068478e-08,2.005802506936829067e-08,2.042271643426589655e-08,2.078740779916350244e-08,2.115209916406110832e-08,2.151679052895871421e-08,2.188148189385632010e-08,2.224617325875392598e-08,2.261086462365153187e-08,2.297555598854913776e-08 +0.000000000000000000e+00,-3.624865136052503783e-21,-7.249730272105007565e-21,-1.087459540815751135e-20,-1.449946054421001513e-20,-1.812432568026252042e-20,-2.174919081631502570e-20,-2.537405595236753099e-20,-2.899892108842003628e-20,-3.262378622447254157e-20,-3.624865136052504685e-20,-3.987351649657755214e-20,-4.349838163263005743e-20,-4.712324676868256271e-20,-5.074811190473506800e-20,-5.437297704078757329e-20,-5.799784217684008459e-20,-6.162270731289259590e-20,-6.524757244894510721e-20,-6.887243758499761851e-20,-7.249730272105012982e-20,-7.612216785710264112e-20,-7.974703299315515243e-20,-8.337189812920766373e-20,-8.699676326526017504e-20,-9.062162840131268635e-20,-9.424649353736519765e-20,-9.787135867341770896e-20,-1.014962238094702203e-19,-1.051210889455227316e-19,-1.087459540815752429e-19,-1.123708192176277542e-19,-1.159956843536802655e-19,-1.196205494897327768e-19,-1.232454146257852881e-19,-1.268702797618377994e-19,-1.304951448978903107e-19,-1.341200100339428220e-19,-1.377448751699953333e-19,-1.413697403060478446e-19,-1.449946054421003559e-19,-1.486194705781528672e-19,-1.522443357142053785e-19,-1.558692008502578898e-19,-1.594940659863104012e-19,-1.631189311223629125e-19,-1.667437962584154238e-19,-1.703686613944679351e-19,-1.739935265305204464e-19,-1.776183916665729577e-19,-1.812432568026254690e-19,-1.848681219386779803e-19,-1.884929870747304916e-19,-1.921178522107830029e-19,-1.957427173468355142e-19,-1.993675824828880255e-19,-2.029924476189405368e-19,-2.066173127549930481e-19,-2.102421778910455594e-19,-2.138670430270980707e-19,-2.174919081631505820e-19,-2.211167732992031174e-19,-2.247416384352556528e-19,-2.283665035713081882e-19 +0.000000000000000000e+00,-3.920966636257247990e-21,-7.841933272514495980e-21,-1.176289990877174472e-20,-1.568386654502899497e-20,-1.960483318128624522e-20,-2.352579981754349546e-20,-2.744676645380074270e-20,-3.136773309005798994e-20,-3.528869972631523718e-20,-3.920966636257248441e-20,-4.313063299882973165e-20,-4.705159963508697889e-20,-5.097256627134422613e-20,-5.489353290760147337e-20,-5.881449954385872060e-20,-6.273546618011596784e-20,-6.665643281637321508e-20,-7.057739945263046232e-20,-7.449836608888770955e-20,-7.841933272514495679e-20,-8.234029936140220403e-20,-8.626126599765945127e-20,-9.018223263391669851e-20,-9.410319927017394574e-20,-9.802416590643119298e-20,-1.019451325426884402e-19,-1.058660991789456875e-19,-1.097870658152029227e-19,-1.137080324514601458e-19,-1.176289990877173690e-19,-1.215499657239745921e-19,-1.254709323602318153e-19,-1.293918989964890385e-19,-1.333128656327462616e-19,-1.372338322690034848e-19,-1.411547989052607080e-19,-1.450757655415179311e-19,-1.489967321777751543e-19,-1.529176988140323775e-19,-1.568386654502896006e-19,-1.607596320865468238e-19,-1.646805987228040469e-19,-1.686015653590612701e-19,-1.725225319953184933e-19,-1.764434986315757164e-19,-1.803644652678329396e-19,-1.842854319040901628e-19,-1.882063985403473859e-19,-1.921273651766046091e-19,-1.960483318128618323e-19,-1.999692984491190554e-19,-2.038902650853762786e-19,-2.078112317216335017e-19,-2.117321983578907249e-19,-2.156531649941479481e-19,-2.195741316304051712e-19,-2.234950982666623944e-19,-2.274160649029196176e-19,-2.313370315391768407e-19,-2.352579981754340639e-19,-2.391789648116912871e-19,-2.430999314479485102e-19,-2.470208980842057334e-19 +0.000000000000000000e+00,4.624719510193608880e-10,9.249439020387217761e-10,1.387415853058082664e-09,1.849887804077443552e-09,2.312359755096804440e-09,2.774831706116165328e-09,3.237303657135526216e-09,3.699775608154887104e-09,4.162247559174248406e-09,4.624719510193609707e-09,5.087191461212971009e-09,5.549663412232332311e-09,6.012135363251693612e-09,6.474607314271054914e-09,6.937079265290416216e-09,7.399551216309777517e-09,7.862023167329138819e-09,8.324495118348500120e-09,8.786967069367861422e-09,9.249439020387222724e-09,9.711910971406584025e-09,1.017438292242594533e-08,1.063685487344530663e-08,1.109932682446466793e-08,1.156179877548402923e-08,1.202427072650339053e-08,1.248674267752275184e-08,1.294921462854211314e-08,1.341168657956147444e-08,1.387415853058083574e-08,1.433663048160019704e-08,1.479910243261955834e-08,1.526157438363892130e-08,1.572404633465828426e-08,1.618651828567764721e-08,1.664899023669701017e-08,1.711146218771637312e-08,1.757393413873573608e-08,1.803640608975509904e-08,1.849887804077446199e-08,1.896134999179382495e-08,1.942382194281318790e-08,1.988629389383255086e-08,2.034876584485191381e-08,2.081123779587127677e-08,2.127370974689063973e-08,2.173618169791000268e-08,2.219865364892936564e-08,2.266112559994872859e-08,2.312359755096809155e-08,2.358606950198745451e-08,2.404854145300681746e-08,2.451101340402618042e-08,2.497348535504554337e-08,2.543595730606490633e-08,2.589842925708426929e-08,2.636090120810363224e-08,2.682337315912299520e-08,2.728584511014235815e-08,2.774831706116172111e-08,2.821078901218108407e-08,2.867326096320044702e-08,2.913573291421980998e-08 +0.000000000000000000e+00,2.076495954884920149e-21,4.152991909769840297e-21,6.229487864654760070e-21,8.305983819539679090e-21,1.038247977442459811e-20,1.245897572930951713e-20,1.453547168419443766e-20,1.661196763907935818e-20,1.868846359396427871e-20,2.076495954884919923e-20,2.284145550373411975e-20,2.491795145861904028e-20,2.699444741350396080e-20,2.907094336838888133e-20,3.114743932327380185e-20,3.322393527815872238e-20,3.530043123304364290e-20,3.737692718792856343e-20,3.945342314281348395e-20,4.152991909769840448e-20,4.360641505258332500e-20,4.568291100746824553e-20,4.775940696235316605e-20,4.983590291723808658e-20,5.191239887212300710e-20,5.398889482700792763e-20,5.606539078189285417e-20,5.814188673677777470e-20,6.021838269166269522e-20,6.229487864654761575e-20,6.437137460143253627e-20,6.644787055631745680e-20,6.852436651120237732e-20,7.060086246608729785e-20,7.267735842097221837e-20,7.475385437585713889e-20,7.683035033074205942e-20,7.890684628562697994e-20,8.098334224051190047e-20,8.305983819539682099e-20,8.513633415028174152e-20,8.721283010516666204e-20,8.928932606005158257e-20,9.136582201493650309e-20,9.344231796982142362e-20,9.551881392470634414e-20,9.759530987959126467e-20,9.967180583447618519e-20,1.017483017893611057e-19,1.038247977442460262e-19,1.059012936991309468e-19,1.079777896540158673e-19,1.100542856089007878e-19,1.121307815637857083e-19,1.142072775186706289e-19,1.162837734735555494e-19,1.183602694284404699e-19,1.204367653833253904e-19,1.225132613382103110e-19,1.245897572930952315e-19,1.266662532479801520e-19,1.287427492028650725e-19,1.308192451577499931e-19 +0.000000000000000000e+00,2.325366527129709905e-21,4.650733054259419811e-21,6.976099581389130092e-21,9.301466108518841126e-21,1.162683263564855216e-20,1.395219916277826319e-20,1.627756568990797423e-20,1.860293221703768526e-20,2.092829874416739630e-20,2.325366527129710733e-20,2.557903179842681836e-20,2.790439832555653241e-20,3.022976485268624645e-20,3.255513137981596049e-20,3.488049790694567454e-20,3.720586443407538858e-20,3.953123096120510262e-20,4.185659748833481667e-20,4.418196401546453071e-20,4.650733054259424475e-20,4.883269706972395880e-20,5.115806359685367284e-20,5.348343012398338688e-20,5.580879665111310093e-20,5.813416317824282099e-20,6.045952970537254105e-20,6.278489623250226111e-20,6.511026275963198117e-20,6.743562928676170123e-20,6.976099581389142130e-20,7.208636234102114136e-20,7.441172886815086142e-20,7.673709539528058148e-20,7.906246192241030154e-20,8.138782844954002160e-20,8.371319497666974167e-20,8.603856150379946173e-20,8.836392803092918179e-20,9.068929455805890185e-20,9.301466108518862191e-20,9.534002761231834197e-20,9.766539413944806204e-20,9.999076066657778210e-20,1.023161271937075022e-19,1.046414937208372222e-19,1.069668602479669423e-19,1.092922267750966623e-19,1.116175933022263704e-19,1.139429598293560784e-19,1.162683263564857864e-19,1.185936928836154944e-19,1.209190594107452025e-19,1.232444259378749105e-19,1.255697924650046185e-19,1.278951589921343265e-19,1.302205255192640346e-19,1.325458920463937426e-19,1.348712585735234506e-19,1.371966251006531586e-19,1.395219916277828667e-19,1.418473581549125747e-19,1.441727246820422827e-19,1.464980912091719907e-19 +0.000000000000000000e+00,4.624719510253859682e-10,9.249439020507719364e-10,1.387415853076157801e-09,1.849887804101543666e-09,2.312359755126929531e-09,2.774831706152315603e-09,3.237303657177701674e-09,3.699775608203087746e-09,4.162247559228473404e-09,4.624719510253859062e-09,5.087191461279244720e-09,5.549663412304630378e-09,6.012135363330016036e-09,6.474607314355401694e-09,6.937079265380787352e-09,7.399551216406173010e-09,7.862023167431558668e-09,8.324495118456943499e-09,8.786967069482328330e-09,9.249439020507713160e-09,9.711910971533097991e-09,1.017438292255848282e-08,1.063685487358386765e-08,1.109932682460925248e-08,1.156179877563463731e-08,1.202427072666002215e-08,1.248674267768540698e-08,1.294921462871079181e-08,1.341168657973617664e-08,1.387415853076156147e-08,1.433663048178694630e-08,1.479910243281233113e-08,1.526157438383771596e-08,1.572404633486310079e-08,1.618651828588848562e-08,1.664899023691387045e-08,1.711146218793925528e-08,1.757393413896464012e-08,1.803640608999002495e-08,1.849887804101540978e-08,1.896134999204079461e-08,1.942382194306617944e-08,1.988629389409156427e-08,2.034876584511694910e-08,2.081123779614233393e-08,2.127370974716771876e-08,2.173618169819310359e-08,2.219865364921848842e-08,2.266112560024387325e-08,2.312359755126925809e-08,2.358606950229464292e-08,2.404854145332002775e-08,2.451101340434541258e-08,2.497348535537079741e-08,2.543595730639618224e-08,2.589842925742156707e-08,2.636090120844695190e-08,2.682337315947233673e-08,2.728584511049772156e-08,2.774831706152310639e-08,2.821078901254849123e-08,2.867326096357387606e-08,2.913573291459926089e-08 +0.000000000000000000e+00,-3.021233856800863640e-21,-6.042467713601727279e-21,-9.063701570402590543e-21,-1.208493542720345305e-20,-1.510616928400431406e-20,-1.812740314080517507e-20,-2.114863699760603607e-20,-2.416987085440689708e-20,-2.719110471120775809e-20,-3.021233856800861608e-20,-3.323357242480947408e-20,-3.625480628161033208e-20,-3.927604013841119008e-20,-4.229727399521204807e-20,-4.531850785201290607e-20,-4.833974170881376407e-20,-5.136097556561462207e-20,-5.438220942241548006e-20,-5.740344327921633204e-20,-6.042467713601718402e-20,-6.344591099281803600e-20,-6.646714484961888798e-20,-6.948837870641973996e-20,-7.250961256322059194e-20,-7.553084642002144391e-20,-7.855208027682229589e-20,-8.157331413362314787e-20,-8.459454799042399985e-20,-8.761578184722485183e-20,-9.063701570402570381e-20,-9.365824956082655579e-20,-9.667948341762740777e-20,-9.970071727442825974e-20,-1.027219511312291117e-19,-1.057431849880299637e-19,-1.087644188448308157e-19,-1.117856527016316677e-19,-1.148068865584325196e-19,-1.178281204152333716e-19,-1.208493542720342236e-19,-1.238705881288350756e-19,-1.268918219856359276e-19,-1.299130558424367795e-19,-1.329342896992376315e-19,-1.359555235560384835e-19,-1.389767574128393355e-19,-1.419979912696401874e-19,-1.450192251264410394e-19,-1.480404589832418914e-19,-1.510616928400427434e-19,-1.540829266968435954e-19,-1.571041605536444473e-19,-1.601253944104452993e-19,-1.631466282672461513e-19,-1.661678621240470033e-19,-1.691890959808478553e-19,-1.722103298376487072e-19,-1.752315636944495592e-19,-1.782527975512504112e-19,-1.812740314080512632e-19,-1.842952652648521152e-19,-1.873164991216529671e-19,-1.903377329784538191e-19 +0.000000000000000000e+00,-3.317766707217607728e-21,-6.635533414435215456e-21,-9.953300121652823560e-21,-1.327106682887043242e-20,-1.658883353608803977e-20,-1.990660024330564712e-20,-2.322436695052325447e-20,-2.654213365774086182e-20,-2.985990036495846918e-20,-3.317766707217607954e-20,-3.649543377939368990e-20,-3.981320048661130026e-20,-4.313096719382891062e-20,-4.644873390104652098e-20,-4.976650060826413134e-20,-5.308426731548174170e-20,-5.640203402269935206e-20,-5.971980072991696242e-20,-6.303756743713457279e-20,-6.635533414435218315e-20,-6.967310085156979351e-20,-7.299086755878740387e-20,-7.630863426600501423e-20,-7.962640097322262459e-20,-8.294416768044023495e-20,-8.626193438765784531e-20,-8.957970109487545567e-20,-9.289746780209306604e-20,-9.621523450931067640e-20,-9.953300121652828676e-20,-1.028507679237458971e-19,-1.061685346309635075e-19,-1.094863013381811058e-19,-1.128040680453987041e-19,-1.161218347526163025e-19,-1.194396014598339008e-19,-1.227573681670514991e-19,-1.260751348742690974e-19,-1.293929015814866957e-19,-1.327106682887042941e-19,-1.360284349959218924e-19,-1.393462017031394907e-19,-1.426639684103570890e-19,-1.459817351175746874e-19,-1.492995018247922857e-19,-1.526172685320098840e-19,-1.559350352392274823e-19,-1.592528019464450807e-19,-1.625705686536626790e-19,-1.658883353608802773e-19,-1.692061020680978756e-19,-1.725238687753154740e-19,-1.758416354825330723e-19,-1.791594021897506706e-19,-1.824771688969682689e-19,-1.857949356041858673e-19,-1.891127023114034656e-19,-1.924304690186210639e-19,-1.957482357258386622e-19,-1.990660024330562606e-19,-2.023837691402738589e-19,-2.057015358474914572e-19,-2.090193025547090555e-19 +0.000000000000000000e+00,5.421375844106774958e-10,1.084275168821354992e-09,1.626412753232032487e-09,2.168550337642709983e-09,2.710687922053387479e-09,3.252825506464064975e-09,3.794963090874742057e-09,4.337100675285419139e-09,4.879238259696096221e-09,5.421375844106773303e-09,5.963513428517450385e-09,6.505651012928127468e-09,7.047788597338804550e-09,7.589926181749480805e-09,8.132063766160157060e-09,8.674201350570833315e-09,9.216338934981509570e-09,9.758476519392185825e-09,1.030061410380286208e-08,1.084275168821353833e-08,1.138488927262421459e-08,1.192702685703489084e-08,1.246916444144556710e-08,1.301130202585624335e-08,1.355343961026691961e-08,1.409557719467759586e-08,1.463771477908827212e-08,1.517985236349894837e-08,1.572198994790962463e-08,1.626412753232030088e-08,1.680626511673097714e-08,1.734840270114165339e-08,1.789054028555232965e-08,1.843267786996300590e-08,1.897481545437368216e-08,1.951695303878435841e-08,2.005909062319503467e-08,2.060122820760571092e-08,2.114336579201638718e-08,2.168550337642706343e-08,2.222764096083773969e-08,2.276977854524841594e-08,2.331191612965909220e-08,2.385405371406976845e-08,2.439619129848044471e-08,2.493832888289112096e-08,2.548046646730179722e-08,2.602260405171247347e-08,2.656474163612314973e-08,2.710687922053382598e-08,2.764901680494450224e-08,2.819115438935517849e-08,2.873329197376585475e-08,2.927542955817653100e-08,2.981756714258721057e-08,3.035970472699789013e-08,3.090184231140856970e-08,3.144397989581924926e-08,3.198611748022992882e-08,3.252825506464060839e-08,3.307039264905128795e-08,3.361253023346196751e-08,3.415466781787264708e-08 +0.000000000000000000e+00,1.577599243057206535e-21,3.155198486114413070e-21,4.732797729171619606e-21,6.310396972228826141e-21,7.887996215286033428e-21,9.465595458343240716e-21,1.104319470140044800e-20,1.262079394445765529e-20,1.419839318751486258e-20,1.577599243057206987e-20,1.735359167362927715e-20,1.893119091668648444e-20,2.050879015974369173e-20,2.208638940280089902e-20,2.366398864585810630e-20,2.524158788891531359e-20,2.681918713197252088e-20,2.839678637502972516e-20,2.997438561808692943e-20,3.155198486114413371e-20,3.312958410420133799e-20,3.470718334725854227e-20,3.628478259031574655e-20,3.786238183337295083e-20,3.943998107643015510e-20,4.101758031948735938e-20,4.259517956254456366e-20,4.417277880560176794e-20,4.575037804865897222e-20,4.732797729171617649e-20,4.890557653477338077e-20,5.048317577783058505e-20,5.206077502088778933e-20,5.363837426394499361e-20,5.521597350700219187e-20,5.679357275005939013e-20,5.837117199311658839e-20,5.994877123617378665e-20,6.152637047923098491e-20,6.310396972228818317e-20,6.468156896534538143e-20,6.625916820840257969e-20,6.783676745145977794e-20,6.941436669451697620e-20,7.099196593757417446e-20,7.256956518063137272e-20,7.414716442368857098e-20,7.572476366674576924e-20,7.730236290980296750e-20,7.887996215286016576e-20,8.045756139591736402e-20,8.203516063897456228e-20,8.361275988203176054e-20,8.519035912508895880e-20,8.676795836814615706e-20,8.834555761120335532e-20,8.992315685426055358e-20,9.150075609731775184e-20,9.307835534037495010e-20,9.465595458343214836e-20,9.623355382648934662e-20,9.781115306954654488e-20,9.938875231260374314e-20 +0.000000000000000000e+00,1.844312000705153848e-21,3.688624001410307697e-21,5.532936002115461545e-21,7.377248002820615394e-21,9.221560003525769242e-21,1.106587200423092309e-20,1.291018400493607694e-20,1.475449600564123079e-20,1.659880800634638464e-20,1.844312000705153848e-20,2.028743200775669233e-20,2.213174400846184618e-20,2.397605600916700003e-20,2.582036800987215388e-20,2.766468001057731074e-20,2.950899201128246759e-20,3.135330401198762445e-20,3.319761601269278131e-20,3.504192801339793817e-20,3.688624001410309502e-20,3.873055201480825188e-20,4.057486401551340874e-20,4.241917601621856560e-20,4.426348801692372245e-20,4.610780001762887931e-20,4.795211201833403617e-20,4.979642401903919303e-20,5.164073601974434988e-20,5.348504802044950674e-20,5.532936002115466962e-20,5.717367202185983249e-20,5.901798402256499537e-20,6.086229602327015825e-20,6.270660802397532112e-20,6.455092002468048400e-20,6.639523202538564688e-20,6.823954402609080975e-20,7.008385602679597263e-20,7.192816802750113550e-20,7.377248002820629838e-20,7.561679202891146126e-20,7.746110402961662413e-20,7.930541603032178701e-20,8.114972803102694989e-20,8.299404003173211276e-20,8.483835203243727564e-20,8.668266403314243851e-20,8.852697603384760139e-20,9.037128803455276427e-20,9.221560003525792714e-20,9.405991203596309002e-20,9.590422403666825289e-20,9.774853603737341577e-20,9.959284803807857865e-20,1.014371600387837415e-19,1.032814720394889044e-19,1.051257840401940673e-19,1.069700960408992302e-19,1.088144080416043930e-19,1.106587200423095559e-19,1.125030320430147188e-19,1.143473440437198817e-19,1.161916560444250445e-19 +0.000000000000000000e+00,5.421375844156633269e-10,1.084275168831326654e-09,1.626412753246989981e-09,2.168550337662653308e-09,2.710687922078316635e-09,3.252825506493979961e-09,3.794963090909643288e-09,4.337100675325306615e-09,4.879238259740969942e-09,5.421375844156633269e-09,5.963513428572296596e-09,6.505651012987959923e-09,7.047788597403623250e-09,7.589926181819286577e-09,8.132063766234950731e-09,8.674201350650614885e-09,9.216338935066279039e-09,9.758476519481943193e-09,1.030061410389760735e-08,1.084275168831327150e-08,1.138488927272893566e-08,1.192702685714459981e-08,1.246916444156026396e-08,1.301130202597592812e-08,1.355343961039159227e-08,1.409557719480725643e-08,1.463771477922292058e-08,1.517985236363858308e-08,1.572198994805424558e-08,1.626412753246990808e-08,1.680626511688557058e-08,1.734840270130123308e-08,1.789054028571689558e-08,1.843267787013255808e-08,1.897481545454822058e-08,1.951695303896388308e-08,2.005909062337954558e-08,2.060122820779520808e-08,2.114336579221087058e-08,2.168550337662653308e-08,2.222764096104219558e-08,2.276977854545785808e-08,2.331191612987352058e-08,2.385405371428918308e-08,2.439619129870484558e-08,2.493832888312050807e-08,2.548046646753617057e-08,2.602260405195183307e-08,2.656474163636749557e-08,2.710687922078315807e-08,2.764901680519882057e-08,2.819115438961448307e-08,2.873329197403014557e-08,2.927542955844580807e-08,2.981756714286147057e-08,3.035970472727713307e-08,3.090184231169279557e-08,3.144397989610845807e-08,3.198611748052412057e-08,3.252825506493978307e-08,3.307039264935544557e-08,3.361253023377110807e-08,3.415466781818677057e-08 +0.000000000000000000e+00,-2.393400798719330105e-21,-4.786801597438660209e-21,-7.180202396157990314e-21,-9.573603194877320419e-21,-1.196700399359665052e-20,-1.436040479231598063e-20,-1.675380559103531073e-20,-1.914720638975464084e-20,-2.154060718847397094e-20,-2.393400798719330105e-20,-2.632740878591263115e-20,-2.872080958463196126e-20,-3.111421038335129136e-20,-3.350761118207062147e-20,-3.590101198078995157e-20,-3.829441277950928168e-20,-4.068781357822861178e-20,-4.308121437694794189e-20,-4.547461517566727199e-20,-4.786801597438660209e-20,-5.026141677310593220e-20,-5.265481757182526230e-20,-5.504821837054459241e-20,-5.744161916926392251e-20,-5.983501996798325262e-20,-6.222842076670258272e-20,-6.462182156542191283e-20,-6.701522236414124293e-20,-6.940862316286057304e-20,-7.180202396157990314e-20,-7.419542476029923325e-20,-7.658882555901856335e-20,-7.898222635773789346e-20,-8.137562715645722356e-20,-8.376902795517655367e-20,-8.616242875389588377e-20,-8.855582955261521388e-20,-9.094923035133454398e-20,-9.334263115005387408e-20,-9.573603194877320419e-20,-9.812943274749253429e-20,-1.005228335462118644e-19,-1.029162343449311945e-19,-1.053096351436505246e-19,-1.077030359423698547e-19,-1.100964367410891848e-19,-1.124898375398085149e-19,-1.148832383385278450e-19,-1.172766391372471751e-19,-1.196700399359665052e-19,-1.220634407346858353e-19,-1.244568415334051654e-19,-1.268502423321244956e-19,-1.292436431308438257e-19,-1.316370439295631558e-19,-1.340304447282824859e-19,-1.364238455270018160e-19,-1.388172463257211461e-19,-1.412106471244404762e-19,-1.436040479231598063e-19,-1.459974487218791364e-19,-1.483908495205984665e-19,-1.507842503193177966e-19 +0.000000000000000000e+00,-2.723895232173237817e-21,-5.447790464346475634e-21,-8.171685696519714203e-21,-1.089558092869295277e-20,-1.361947616086619134e-20,-1.634337139303942841e-20,-1.906726662521266547e-20,-2.179116185738590254e-20,-2.451505708955913960e-20,-2.723895232173237667e-20,-2.996284755390561373e-20,-3.268674278607885079e-20,-3.541063801825208786e-20,-3.813453325042532492e-20,-4.085842848259856199e-20,-4.358232371477179905e-20,-4.630621894694503612e-20,-4.903011417911827318e-20,-5.175400941129151025e-20,-5.447790464346474129e-20,-5.720179987563797234e-20,-5.992569510781120339e-20,-6.264959033998443443e-20,-6.537348557215766548e-20,-6.809738080433089652e-20,-7.082127603650412757e-20,-7.354517126867735862e-20,-7.626906650085058966e-20,-7.899296173302382071e-20,-8.171685696519705175e-20,-8.444075219737028280e-20,-8.716464742954351385e-20,-8.988854266171674489e-20,-9.261243789388997594e-20,-9.533633312606320699e-20,-9.806022835823643803e-20,-1.007841235904096691e-19,-1.035080188225829001e-19,-1.062319140547561312e-19,-1.089558092869293622e-19,-1.116797045191026053e-19,-1.144035997512758484e-19,-1.171274949834490915e-19,-1.198513902156223345e-19,-1.225752854477955776e-19,-1.252991806799688207e-19,-1.280230759121420638e-19,-1.307469711443153069e-19,-1.334708663764885500e-19,-1.361947616086617930e-19,-1.389186568408350361e-19,-1.416425520730082792e-19,-1.443664473051815223e-19,-1.470903425373547654e-19,-1.498142377695280085e-19,-1.525381330017012515e-19,-1.552620282338744946e-19,-1.579859234660477377e-19,-1.607098186982209808e-19,-1.634337139303942239e-19,-1.661576091625674670e-19,-1.688815043947407100e-19,-1.716053996269139531e-19 +0.000000000000000000e+00,5.825122639348322314e-10,1.165024527869664463e-09,1.747536791804496694e-09,2.330049055739328926e-09,2.912561319674160950e-09,3.495073583608992975e-09,4.077585847543824999e-09,4.660098111478657024e-09,5.242610375413489049e-09,5.825122639348321073e-09,6.407634903283153098e-09,6.990147167217985122e-09,7.572659431152817974e-09,8.155171695087651653e-09,8.737683959022485332e-09,9.320196222957319011e-09,9.902708486892152690e-09,1.048522075082698637e-08,1.106773301476182005e-08,1.165024527869665373e-08,1.223275754263148741e-08,1.281526980656632108e-08,1.339778207050115476e-08,1.398029433443598844e-08,1.456280659837082212e-08,1.514531886230565580e-08,1.572783112624048948e-08,1.631034339017532316e-08,1.689285565411015684e-08,1.747536791804499052e-08,1.805788018197982420e-08,1.864039244591465787e-08,1.922290470984949155e-08,1.980541697378432523e-08,2.038792923771915891e-08,2.097044150165399259e-08,2.155295376558882627e-08,2.213546602952365995e-08,2.271797829345849363e-08,2.330049055739332731e-08,2.388300282132816098e-08,2.446551508526299466e-08,2.504802734919782834e-08,2.563053961313266202e-08,2.621305187706749570e-08,2.679556414100232938e-08,2.737807640493716306e-08,2.796058866887199674e-08,2.854310093280683042e-08,2.912561319674166410e-08,2.970812546067649777e-08,3.029063772461133145e-08,3.087314998854616513e-08,3.145566225248099881e-08,3.203817451641583249e-08,3.262068678035066617e-08,3.320319904428549985e-08,3.378571130822033353e-08,3.436822357215516721e-08,3.495073583609000089e-08,3.553324810002483456e-08,3.611576036395966824e-08,3.669827262789450192e-08 +0.000000000000000000e+00,1.090950417053891271e-21,2.181900834107782542e-21,3.272851251161673813e-21,4.363801668215565084e-21,5.454752085269456355e-21,6.545702502323347626e-21,7.636652919377238897e-21,8.727603336431130168e-21,9.818553753485021439e-21,1.090950417053891271e-20,1.200045458759280398e-20,1.309140500464669525e-20,1.418235542170058803e-20,1.527330583875448080e-20,1.636425625580837358e-20,1.745520667286226635e-20,1.854615708991615913e-20,1.963710750697005191e-20,2.072805792402394468e-20,2.181900834107783746e-20,2.290995875813173023e-20,2.400090917518562301e-20,2.509185959223951578e-20,2.618281000929340856e-20,2.727376042634730134e-20,2.836471084340119411e-20,2.945566126045508689e-20,3.054661167750897966e-20,3.163756209456287244e-20,3.272851251161676521e-20,3.381946292867065799e-20,3.491041334572455076e-20,3.600136376277844354e-20,3.709231417983233632e-20,3.818326459688622909e-20,3.927421501394012187e-20,4.036516543099401464e-20,4.145611584804790742e-20,4.254706626510180019e-20,4.363801668215569297e-20,4.472896709920958575e-20,4.581991751626347852e-20,4.691086793331737130e-20,4.800181835037126407e-20,4.909276876742515685e-20,5.018371918447904962e-20,5.127466960153294240e-20,5.236562001858683517e-20,5.345657043564072795e-20,5.454752085269461471e-20,5.563847126974849545e-20,5.672942168680237618e-20,5.782037210385625692e-20,5.891132252091013766e-20,6.000227293796401840e-20,6.109322335501789914e-20,6.218417377207177988e-20,6.327512418912566062e-20,6.436607460617954135e-20,6.545702502323342209e-20,6.654797544028730283e-20,6.763892585734118357e-20,6.872987627439506431e-20 +0.000000000000000000e+00,1.323809468928564008e-21,2.647618937857128017e-21,3.971428406785692025e-21,5.295237875714256034e-21,6.619047344642820042e-21,7.942856813571384051e-21,9.266666282499948811e-21,1.059047575142851357e-20,1.191428522035707833e-20,1.323809468928564309e-20,1.456190415821420785e-20,1.588571362714277111e-20,1.720952309607133437e-20,1.853333256499989762e-20,1.985714203392846088e-20,2.118095150285702413e-20,2.250476097178558739e-20,2.382857044071415065e-20,2.515237990964271390e-20,2.647618937857127716e-20,2.779999884749984042e-20,2.912380831642840367e-20,3.044761778535696693e-20,3.177142725428553018e-20,3.309523672321409344e-20,3.441904619214265670e-20,3.574285566107121995e-20,3.706666512999978321e-20,3.839047459892834646e-20,3.971428406785690972e-20,4.103809353678547298e-20,4.236190300571403623e-20,4.368571247464259949e-20,4.500952194357116274e-20,4.633333141249972600e-20,4.765714088142828926e-20,4.898095035035685251e-20,5.030475981928541577e-20,5.162856928821397902e-20,5.295237875714254228e-20,5.427618822607110554e-20,5.559999769499966879e-20,5.692380716392823205e-20,5.824761663285679531e-20,5.957142610178535856e-20,6.089523557071392182e-20,6.221904503964248507e-20,6.354285450857104833e-20,6.486666397749961159e-20,6.619047344642817484e-20,6.751428291535673810e-20,6.883809238428530135e-20,7.016190185321386461e-20,7.148571132214242787e-20,7.280952079107099112e-20,7.413333025999955438e-20,7.545713972892811763e-20,7.678094919785668089e-20,7.810475866678524415e-20,7.942856813571380740e-20,8.075237760464237066e-20,8.207618707357093392e-20,8.339999654249949717e-20 +0.000000000000000000e+00,5.825122639387221516e-10,1.165024527877444303e-09,1.747536791816166351e-09,2.330049055754888193e-09,2.912561319693610034e-09,3.495073583632331876e-09,4.077585847571053304e-09,4.660098111509774731e-09,5.242610375448496159e-09,5.825122639387217587e-09,6.407634903325939015e-09,6.990147167264660443e-09,7.572659431203381871e-09,8.155171695142103298e-09,8.737683959080824726e-09,9.320196223019546154e-09,9.902708486958267582e-09,1.048522075089698901e-08,1.106773301483571044e-08,1.165024527877443187e-08,1.223275754271315329e-08,1.281526980665187472e-08,1.339778207059059615e-08,1.398029433452931758e-08,1.456280659846803900e-08,1.514531886240676043e-08,1.572783112634548186e-08,1.631034339028420329e-08,1.689285565422292472e-08,1.747536791816164614e-08,1.805788018210036757e-08,1.864039244603908900e-08,1.922290470997781043e-08,1.980541697391653186e-08,2.038792923785525328e-08,2.097044150179397471e-08,2.155295376573269614e-08,2.213546602967141757e-08,2.271797829361013899e-08,2.330049055754886042e-08,2.388300282148758185e-08,2.446551508542630328e-08,2.504802734936502471e-08,2.563053961330374613e-08,2.621305187724246756e-08,2.679556414118118899e-08,2.737807640511991042e-08,2.796058866905863184e-08,2.854310093299735327e-08,2.912561319693607470e-08,2.970812546087479613e-08,3.029063772481351425e-08,3.087314998875223237e-08,3.145566225269095049e-08,3.203817451662966860e-08,3.262068678056838672e-08,3.320319904450710484e-08,3.378571130844582296e-08,3.436822357238454108e-08,3.495073583632325920e-08,3.553324810026197732e-08,3.611576036420069544e-08,3.669827262813941356e-08 +0.000000000000000000e+00,-1.824333560542077005e-21,-3.648667121084154011e-21,-5.473000681626231392e-21,-7.297334242168309526e-21,-9.121667802710387659e-21,-1.094600136325246579e-20,-1.277033492379454393e-20,-1.459466848433662206e-20,-1.641900204487870170e-20,-1.824333560542078134e-20,-2.006766916596286098e-20,-2.189200272650494061e-20,-2.371633628704702025e-20,-2.554066984758909989e-20,-2.736500340813117953e-20,-2.918933696867326218e-20,-3.101367052921534482e-20,-3.283800408975742747e-20,-3.466233765029951012e-20,-3.648667121084159277e-20,-3.831100477138367542e-20,-4.013533833192575806e-20,-4.195967189246784071e-20,-4.378400545300992336e-20,-4.560833901355200601e-20,-4.743267257409408865e-20,-4.925700613463617130e-20,-5.108133969517825395e-20,-5.290567325572033660e-20,-5.473000681626241924e-20,-5.655434037680450189e-20,-5.837867393734658454e-20,-6.020300749788866719e-20,-6.202734105843074983e-20,-6.385167461897283248e-20,-6.567600817951491513e-20,-6.750034174005699778e-20,-6.932467530059908043e-20,-7.114900886114116307e-20,-7.297334242168324572e-20,-7.479767598222532837e-20,-7.662200954276741102e-20,-7.844634310330949366e-20,-8.027067666385157631e-20,-8.209501022439365896e-20,-8.391934378493574161e-20,-8.574367734547782425e-20,-8.756801090601990690e-20,-8.939234446656198955e-20,-9.121667802710407220e-20,-9.304101158764615484e-20,-9.486534514818823749e-20,-9.668967870873032014e-20,-9.851401226927240279e-20,-1.003383458298144854e-19,-1.021626793903565681e-19,-1.039870129508986507e-19,-1.058113465114407334e-19,-1.076356800719828160e-19,-1.094600136325249107e-19,-1.112843471930670054e-19,-1.131086807536091001e-19,-1.149330143141511948e-19 +0.000000000000000000e+00,-2.107440017114325356e-21,-4.214880034228650713e-21,-6.322320051342975693e-21,-8.429760068457299921e-21,-1.053720008557162415e-20,-1.264464010268594838e-20,-1.475208011980027110e-20,-1.685952013691459382e-20,-1.896696015402891655e-20,-2.107440017114323927e-20,-2.318184018825756199e-20,-2.528928020537188472e-20,-2.739672022248620744e-20,-2.950416023960053016e-20,-3.161160025671485289e-20,-3.371904027382917561e-20,-3.582648029094349833e-20,-3.793392030805782106e-20,-4.004136032517214378e-20,-4.214880034228646650e-20,-4.425624035940078923e-20,-4.636368037651511195e-20,-4.847112039362943467e-20,-5.057856041074375740e-20,-5.268600042785808012e-20,-5.479344044497240284e-20,-5.690088046208671955e-20,-5.900832047920103625e-20,-6.111576049631535296e-20,-6.322320051342966966e-20,-6.533064053054398637e-20,-6.743808054765830307e-20,-6.954552056477261978e-20,-7.165296058188693648e-20,-7.376040059900125319e-20,-7.586784061611556989e-20,-7.797528063322988660e-20,-8.008272065034420330e-20,-8.219016066745852001e-20,-8.429760068457283671e-20,-8.640504070168715342e-20,-8.851248071880147012e-20,-9.061992073591578683e-20,-9.272736075303010353e-20,-9.483480077014442024e-20,-9.694224078725873694e-20,-9.904968080437305365e-20,-1.011571208214873704e-19,-1.032645608386016871e-19,-1.053720008557160038e-19,-1.074794408728303205e-19,-1.095868808899446372e-19,-1.116943209070589539e-19,-1.138017609241732706e-19,-1.159092009412875873e-19,-1.180166409584019040e-19,-1.201240809755162207e-19,-1.222315209926305374e-19,-1.243389610097448541e-19,-1.264464010268591708e-19,-1.285538410439734875e-19,-1.306612810610878042e-19,-1.327687210782021209e-19 +0.000000000000000000e+00,5.751355146640025630e-10,1.150271029328005126e-09,1.725406543992007586e-09,2.300542058656009838e-09,2.875677573320012091e-09,3.450813087984014344e-09,4.025948602648016183e-09,4.601084117312018022e-09,5.176219631976019862e-09,5.751355146640021701e-09,6.326490661304023540e-09,6.901626175968025379e-09,7.476761690632027218e-09,8.051897205296029058e-09,8.627032719960030897e-09,9.202168234624032736e-09,9.777303749288034575e-09,1.035243926395203641e-08,1.092757477861603825e-08,1.150271029328004009e-08,1.207784580794404193e-08,1.265298132260804377e-08,1.322811683727204561e-08,1.380325235193604745e-08,1.437838786660004929e-08,1.495352338126405113e-08,1.552865889592805297e-08,1.610379441059205481e-08,1.667892992525605665e-08,1.725406543992005848e-08,1.782920095458406032e-08,1.840433646924806216e-08,1.897947198391206400e-08,1.955460749857606584e-08,2.012974301324006768e-08,2.070487852790406952e-08,2.128001404256807136e-08,2.185514955723207320e-08,2.243028507189607504e-08,2.300542058656007688e-08,2.358055610122407872e-08,2.415569161588808056e-08,2.473082713055208239e-08,2.530596264521608423e-08,2.588109815988008607e-08,2.645623367454408791e-08,2.703136918920808975e-08,2.760650470387209159e-08,2.818164021853609343e-08,2.875677573320009527e-08,2.933191124786409711e-08,2.990704676252809564e-08,3.048218227719209417e-08,3.105731779185609270e-08,3.163245330652009123e-08,3.220758882118408976e-08,3.278272433584808829e-08,3.335785985051208682e-08,3.393299536517608535e-08,3.450813087984008388e-08,3.508326639450408241e-08,3.565840190916808094e-08,3.623353742383207947e-08 +0.000000000000000000e+00,6.382623844522870761e-22,1.276524768904574152e-21,1.914787153356861228e-21,2.553049537809148305e-21,3.191311922261435381e-21,3.829574306713722457e-21,4.467836691166009533e-21,5.106099075618296609e-21,5.744361460070583685e-21,6.382623844522870761e-21,7.020886228975157085e-21,7.659148613427443409e-21,8.297410997879729733e-21,8.935673382332016057e-21,9.573935766784302380e-21,1.021219815123658870e-20,1.085046053568887503e-20,1.148872292014116135e-20,1.212698530459344768e-20,1.276524768904573400e-20,1.340351007349802032e-20,1.404177245795030815e-20,1.468003484240259598e-20,1.531829722685488381e-20,1.595655961130717164e-20,1.659482199575945947e-20,1.723308438021174729e-20,1.787134676466403512e-20,1.850960914911632295e-20,1.914787153356861078e-20,1.978613391802089861e-20,2.042439630247318644e-20,2.106265868692547426e-20,2.170092107137776209e-20,2.233918345583004992e-20,2.297744584028233775e-20,2.361570822473462558e-20,2.425397060918691341e-20,2.489223299363920124e-20,2.553049537809148906e-20,2.616875776254377689e-20,2.680702014699606472e-20,2.744528253144835255e-20,2.808354491590064038e-20,2.872180730035292821e-20,2.936006968480521603e-20,2.999833206925750386e-20,3.063659445370979169e-20,3.127485683816207952e-20,3.191311922261436735e-20,3.255138160706665518e-20,3.318964399151894300e-20,3.382790637597123083e-20,3.446616876042351866e-20,3.510443114487580649e-20,3.574269352932809432e-20,3.638095591378038215e-20,3.701921829823266998e-20,3.765748068268495780e-20,3.829574306713724563e-20,3.893400545158953346e-20,3.957226783604182129e-20,4.021053022049410912e-20 +0.000000000000000000e+00,8.589614613328129722e-22,1.717922922665625944e-21,2.576884383998438917e-21,3.435845845331251889e-21,4.294807306664065237e-21,5.153768767996878586e-21,6.012730229329691934e-21,6.871691690662505282e-21,7.730653151995318631e-21,8.589614613328131979e-21,9.448576074660945328e-21,1.030753753599375868e-20,1.116649899732657202e-20,1.202546045865938537e-20,1.288442191999219872e-20,1.374338338132501357e-20,1.460234484265782843e-20,1.546130630399064328e-20,1.632026776532345813e-20,1.717922922665627299e-20,1.803819068798908784e-20,1.889715214932190269e-20,1.975611361065471755e-20,2.061507507198753240e-20,2.147403653332034725e-20,2.233299799465316210e-20,2.319195945598597696e-20,2.405092091731879181e-20,2.490988237865160666e-20,2.576884383998442152e-20,2.662780530131723637e-20,2.748676676265005122e-20,2.834572822398286908e-20,2.920468968531568695e-20,3.006365114664850481e-20,3.092261260798132267e-20,3.178157406931414053e-20,3.264053553064695840e-20,3.349949699197977626e-20,3.435845845331259412e-20,3.521741991464541198e-20,3.607638137597822985e-20,3.693534283731104771e-20,3.779430429864386557e-20,3.865326575997668343e-20,3.951222722130950129e-20,4.037118868264231916e-20,4.123015014397513702e-20,4.208911160530795488e-20,4.294807306664077274e-20,4.380703452797359061e-20,4.466599598930640847e-20,4.552495745063922633e-20,4.638391891197204419e-20,4.724288037330486206e-20,4.810184183463767992e-20,4.896080329597049778e-20,4.981976475730331564e-20,5.067872621863613350e-20,5.153768767996895137e-20,5.239664914130176923e-20,5.325561060263458709e-20,5.411457206396740495e-20 +0.000000000000000000e+00,5.751355146669031752e-10,1.150271029333806350e-09,1.725406544000709526e-09,2.300542058667612701e-09,2.875677573334515876e-09,3.450813088001419051e-09,4.025948602668321813e-09,4.601084117335224574e-09,5.176219632002127336e-09,5.751355146669030098e-09,6.326490661335932859e-09,6.901626176002835621e-09,7.476761690669738383e-09,8.051897205336640317e-09,8.627032720003542251e-09,9.202168234670444186e-09,9.777303749337346120e-09,1.035243926400424805e-08,1.092757477867114999e-08,1.150271029333805192e-08,1.207784580800495386e-08,1.265298132267185579e-08,1.322811683733875773e-08,1.380325235200565966e-08,1.437838786667256160e-08,1.495352338133946353e-08,1.552865889600636381e-08,1.610379441067326409e-08,1.667892992534016437e-08,1.725406544000706465e-08,1.782920095467396493e-08,1.840433646934086521e-08,1.897947198400776549e-08,1.955460749867466577e-08,2.012974301334156605e-08,2.070487852800846633e-08,2.128001404267536661e-08,2.185514955734226689e-08,2.243028507200916717e-08,2.300542058667606745e-08,2.358055610134296773e-08,2.415569161600986801e-08,2.473082713067676829e-08,2.530596264534366857e-08,2.588109816001056885e-08,2.645623367467746913e-08,2.703136918934436941e-08,2.760650470401126969e-08,2.818164021867816997e-08,2.875677573334507025e-08,2.933191124801197053e-08,2.990704676267886750e-08,3.048218227734576447e-08,3.105731779201266145e-08,3.163245330667955842e-08,3.220758882134645539e-08,3.278272433601335236e-08,3.335785985068024933e-08,3.393299536534714630e-08,3.450813088001404327e-08,3.508326639468094025e-08,3.565840190934783722e-08,3.623353742401473419e-08 +0.000000000000000000e+00,-1.553162157976327920e-21,-3.106324315952655841e-21,-4.659486473928983949e-21,-6.212648631905312434e-21,-7.765810789881640918e-21,-9.318972947857969403e-21,-1.087213510583429789e-20,-1.242529726381062637e-20,-1.397845942178695486e-20,-1.553162157976328184e-20,-1.708478373773960882e-20,-1.863794589571593580e-20,-2.019110805369226278e-20,-2.174427021166858976e-20,-2.329743236964491674e-20,-2.485059452762124372e-20,-2.640375668559757070e-20,-2.795691884357389768e-20,-2.951008100155022466e-20,-3.106324315952655164e-20,-3.261640531750287862e-20,-3.416956747547920560e-20,-3.572272963345553258e-20,-3.727589179143185956e-20,-3.882905394940818654e-20,-4.038221610738451352e-20,-4.193537826536084050e-20,-4.348854042333716748e-20,-4.504170258131349446e-20,-4.659486473928982144e-20,-4.814802689726614842e-20,-4.970118905524247540e-20,-5.125435121321880238e-20,-5.280751337119512936e-20,-5.436067552917145032e-20,-5.591383768714777128e-20,-5.746699984512409224e-20,-5.902016200310041320e-20,-6.057332416107673416e-20,-6.212648631905305512e-20,-6.367964847702937608e-20,-6.523281063500569705e-20,-6.678597279298201801e-20,-6.833913495095833897e-20,-6.989229710893465993e-20,-7.144545926691098089e-20,-7.299862142488730185e-20,-7.455178358286362281e-20,-7.610494574083994378e-20,-7.765810789881626474e-20,-7.921127005679258570e-20,-8.076443221476890666e-20,-8.231759437274522762e-20,-8.387075653072154858e-20,-8.542391868869786954e-20,-8.697708084667419051e-20,-8.853024300465051147e-20,-9.008340516262683243e-20,-9.163656732060315339e-20,-9.318972947857947435e-20,-9.474289163655579531e-20,-9.629605379453211627e-20,-9.784921595250843724e-20 +0.000000000000000000e+00,4.711868415309499586e-22,9.423736830618999173e-22,1.413560524592849782e-21,1.884747366123799458e-21,2.355934207654749135e-21,2.827121049185698811e-21,3.298307890716648488e-21,3.769494732247598165e-21,4.240681573778547841e-21,4.711868415309497518e-21,5.183055256840447194e-21,5.654242098371396871e-21,6.125428939902346547e-21,6.596615781433296224e-21,7.067802622964245900e-21,7.538989464495194824e-21,8.010176306026143749e-21,8.481363147557092673e-21,8.952549989088041597e-21,9.423736830618990521e-21,9.894923672149939446e-21,1.036611051368088837e-20,1.083729735521183729e-20,1.130848419674278622e-20,1.177967103827373514e-20,1.225085787980468407e-20,1.272204472133563299e-20,1.319323156286658192e-20,1.366441840439753084e-20,1.413560524592847976e-20,1.460679208745942869e-20,1.507797892899037761e-20,1.554916577052132654e-20,1.602035261205227546e-20,1.649153945358322438e-20,1.696272629511417331e-20,1.743391313664512223e-20,1.790509997817607116e-20,1.837628681970702008e-20,1.884747366123796901e-20,1.931866050276891793e-20,1.978984734429986685e-20,2.026103418583081578e-20,2.073222102736176470e-20,2.120340786889271363e-20,2.167459471042366255e-20,2.214578155195461148e-20,2.261696839348556040e-20,2.308815523501650932e-20,2.355934207654745825e-20,2.403052891807840717e-20,2.450171575960935610e-20,2.497290260114030502e-20,2.544408944267125394e-20,2.591527628420220287e-20,2.638646312573315179e-20,2.685764996726410072e-20,2.732883680879504964e-20,2.780002365032599857e-20,2.827121049185694749e-20,2.874239733338789641e-20,2.921358417491884534e-20,2.968477101644979426e-20 +0.000000000000000000e+00,-9.647082149584462519e-10,-1.929416429916892504e-09,-2.894124644875338756e-09,-3.858832859833785007e-09,-4.823541074792231673e-09,-5.788249289750678338e-09,-6.752957504709125004e-09,-7.717665719667571669e-09,-8.682373934626018335e-09,-9.647082149584465000e-09,-1.061179036454291167e-08,-1.157649857950135833e-08,-1.254120679445980500e-08,-1.350591500941825166e-08,-1.447062322437669833e-08,-1.543533143933514665e-08,-1.640003965429359497e-08,-1.736474786925204329e-08,-1.832945608421049161e-08,-1.929416429916893993e-08,-2.025887251412738825e-08,-2.122358072908583657e-08,-2.218828894404428489e-08,-2.315299715900273321e-08,-2.411770537396118153e-08,-2.508241358891962985e-08,-2.604712180387807817e-08,-2.701183001883652649e-08,-2.797653823379497481e-08,-2.894124644875342312e-08,-2.990595466371187144e-08,-3.087066287867031976e-08,-3.183537109362876808e-08,-3.280007930858721640e-08,-3.376478752354566472e-08,-3.472949573850411304e-08,-3.569420395346256136e-08,-3.665891216842100968e-08,-3.762362038337945800e-08,-3.858832859833790632e-08,-3.955303681329635464e-08,-4.051774502825480296e-08,-4.148245324321325128e-08,-4.244716145817169960e-08,-4.341186967313014792e-08,-4.437657788808859624e-08,-4.534128610304704456e-08,-4.630599431800549288e-08,-4.727070253296394120e-08,-4.823541074792238952e-08,-4.920011896288083784e-08,-5.016482717783928616e-08,-5.112953539279773448e-08,-5.209424360775618280e-08,-5.305895182271463112e-08,-5.402366003767307944e-08,-5.498836825263152776e-08,-5.595307646758997608e-08,-5.691778468254842440e-08,-5.788249289750687272e-08,-5.884720111246532104e-08,-5.981190932742376936e-08,-6.077661754238222430e-08 +0.000000000000000000e+00,-2.918452434536537091e-09,-5.836904869073074183e-09,-8.755357303609612102e-09,-1.167380973814615002e-08,-1.459226217268268794e-08,-1.751071460721922420e-08,-2.042916704175576047e-08,-2.334761947629229673e-08,-2.626607191082883300e-08,-2.918452434536536926e-08,-3.210297677990190552e-08,-3.502142921443844179e-08,-3.793988164897497805e-08,-4.085833408351151432e-08,-4.377678651804805058e-08,-4.669523895258458685e-08,-4.961369138712112311e-08,-5.253214382165765937e-08,-5.545059625619419564e-08,-5.836904869073073190e-08,-6.128750112526726817e-08,-6.420595355980381105e-08,-6.712440599434035393e-08,-7.004285842887689681e-08,-7.296131086341343969e-08,-7.587976329794998258e-08,-7.879821573248652546e-08,-8.171666816702306834e-08,-8.463512060155961122e-08,-8.755357303609615410e-08,-9.047202547063269699e-08,-9.339047790516923987e-08,-9.630893033970578275e-08,-9.922738277424232563e-08,-1.021458352087788685e-07,-1.050642876433154114e-07,-1.079827400778519543e-07,-1.109011925123884972e-07,-1.138196449469250400e-07,-1.167380973814615829e-07,-1.196565498159981126e-07,-1.225750022505346422e-07,-1.254934546850711719e-07,-1.284119071196077015e-07,-1.313303595541442312e-07,-1.342488119886807608e-07,-1.371672644232172904e-07,-1.400857168577538201e-07,-1.430041692922903497e-07,-1.459226217268268794e-07,-1.488410741613634090e-07,-1.517595265958999387e-07,-1.546779790304364683e-07,-1.575964314649729980e-07,-1.605148838995095276e-07,-1.634333363340460573e-07,-1.663517887685825869e-07,-1.692702412031191166e-07,-1.721886936376556462e-07,-1.751071460721921759e-07,-1.780255985067287055e-07,-1.809440509412652352e-07,-1.838625033758017648e-07 +0.000000000000000000e+00,-3.024877559841442597e-09,-6.049755119682885194e-09,-9.074632679524327378e-09,-1.209951023936576873e-08,-1.512438779920720844e-08,-1.814926535904864814e-08,-2.117414291889008784e-08,-2.419902047873152754e-08,-2.722389803857296724e-08,-3.024877559841440364e-08,-3.327365315825584003e-08,-3.629853071809727642e-08,-3.932340827793871282e-08,-4.234828583778014921e-08,-4.537316339762158560e-08,-4.839804095746302200e-08,-5.142291851730445839e-08,-5.444779607714589478e-08,-5.747267363698733118e-08,-6.049755119682876757e-08,-6.352242875667019734e-08,-6.654730631651162712e-08,-6.957218387635305690e-08,-7.259706143619448667e-08,-7.562193899603591645e-08,-7.864681655587734622e-08,-8.167169411571877600e-08,-8.469657167556020578e-08,-8.772144923540163555e-08,-9.074632679524306533e-08,-9.377120435508449510e-08,-9.679608191492592488e-08,-9.982095947476735465e-08,-1.028458370346087844e-07,-1.058707145944502142e-07,-1.088955921542916440e-07,-1.119204697141330738e-07,-1.149453472739745035e-07,-1.179702248338159333e-07,-1.209951023936573498e-07,-1.240199799534987664e-07,-1.270448575133401829e-07,-1.300697350731815995e-07,-1.330946126330230160e-07,-1.361194901928644326e-07,-1.391443677527058491e-07,-1.421692453125472656e-07,-1.451941228723886822e-07,-1.482190004322300987e-07,-1.512438779920715153e-07,-1.542687555519129318e-07,-1.572936331117543483e-07,-1.603185106715957649e-07,-1.633433882314371814e-07,-1.663682657912785980e-07,-1.693931433511200145e-07,-1.724180209109614310e-07,-1.754428984708028476e-07,-1.784677760306442641e-07,-1.814926535904856807e-07,-1.845175311503270972e-07,-1.875424087101685137e-07,-1.905672862700099303e-07 +0.000000000000000000e+00,-1.547559318518065039e-09,-3.095118637036130077e-09,-4.642677955554194909e-09,-6.190237274072259328e-09,-7.737796592590323746e-09,-9.285355911108388164e-09,-1.083291522962645258e-08,-1.238047454814451700e-08,-1.392803386666258142e-08,-1.547559318518064418e-08,-1.702315250369870529e-08,-1.857071182221676640e-08,-2.011827114073482751e-08,-2.166583045925288862e-08,-2.321338977777094973e-08,-2.476094909628901084e-08,-2.630850841480707195e-08,-2.785606773332513306e-08,-2.940362705184319417e-08,-3.095118637036125528e-08,-3.249874568887931639e-08,-3.404630500739737750e-08,-3.559386432591543861e-08,-3.714142364443349972e-08,-3.868898296295156083e-08,-4.023654228146962194e-08,-4.178410159998768305e-08,-4.333166091850574416e-08,-4.487922023702380527e-08,-4.642677955554186638e-08,-4.797433887405992749e-08,-4.952189819257798860e-08,-5.106945751109604970e-08,-5.261701682961411081e-08,-5.416457614813217192e-08,-5.571213546665023303e-08,-5.725969478516829414e-08,-5.880725410368635525e-08,-6.035481342220441636e-08,-6.190237274072247085e-08,-6.344993205924052535e-08,-6.499749137775857984e-08,-6.654505069627663433e-08,-6.809261001479468882e-08,-6.964016933331274332e-08,-7.118772865183079781e-08,-7.273528797034885230e-08,-7.428284728886690679e-08,-7.583040660738496128e-08,-7.737796592590301578e-08,-7.892552524442107027e-08,-8.047308456293912476e-08,-8.202064388145717925e-08,-8.356820319997523375e-08,-8.511576251849328824e-08,-8.666332183701134273e-08,-8.821088115552939722e-08,-8.975844047404745171e-08,-9.130599979256550621e-08,-9.285355911108356070e-08,-9.440111842960161519e-08,-9.594867774811966968e-08,-9.749623706663772418e-08 +0.000000000000000000e+00,-1.469239194672750410e-09,-2.938478389345500820e-09,-4.407717584018251643e-09,-5.876956778691002467e-09,-7.346195973363753291e-09,-8.815435168036503287e-09,-1.028467436270925328e-08,-1.175391355738200328e-08,-1.322315275205475328e-08,-1.469239194672750327e-08,-1.616163114140025327e-08,-1.763087033607300327e-08,-1.910010953074575326e-08,-2.056934872541850326e-08,-2.203858792009125325e-08,-2.350782711476400325e-08,-2.497706630943675325e-08,-2.644630550410950324e-08,-2.791554469878225324e-08,-2.938478389345500324e-08,-3.085402308812775323e-08,-3.232326228280050654e-08,-3.379250147747325984e-08,-3.526174067214601315e-08,-3.673097986681876645e-08,-3.820021906149151976e-08,-3.966945825616427306e-08,-4.113869745083702637e-08,-4.260793664550977967e-08,-4.407717584018253298e-08,-4.554641503485528628e-08,-4.701565422952803959e-08,-4.848489342420079289e-08,-4.995413261887354620e-08,-5.142337181354629950e-08,-5.289261100821905281e-08,-5.436185020289180611e-08,-5.583108939756455942e-08,-5.730032859223731272e-08,-5.876956778691006603e-08,-6.023880698158281933e-08,-6.170804617625557264e-08,-6.317728537092832594e-08,-6.464652456560107925e-08,-6.611576376027383255e-08,-6.758500295494658586e-08,-6.905424214961933916e-08,-7.052348134429209247e-08,-7.199272053896484577e-08,-7.346195973363759908e-08,-7.493119892831035238e-08,-7.640043812298310569e-08,-7.786967731765585899e-08,-7.933891651232861230e-08,-8.080815570700136561e-08,-8.227739490167411891e-08,-8.374663409634687222e-08,-8.521587329101962552e-08,-8.668511248569237883e-08,-8.815435168036513213e-08,-8.962359087503788544e-08,-9.109283006971063874e-08,-9.256206926438339205e-08 +0.000000000000000000e+00,-4.543314893714478288e-10,-9.086629787428956576e-10,-1.362994468114343486e-09,-1.817325957485791315e-09,-2.271657446857239351e-09,-2.725988936228687386e-09,-3.180320425600135422e-09,-3.634651914971583458e-09,-4.088983404343031493e-09,-4.543314893714479529e-09,-4.997646383085927564e-09,-5.451977872457375600e-09,-5.906309361828823636e-09,-6.360640851200271671e-09,-6.814972340571719707e-09,-7.269303829943167742e-09,-7.723635319314615778e-09,-8.177966808686062986e-09,-8.632298298057510195e-09,-9.086629787428957403e-09,-9.540961276800404612e-09,-9.995292766171851820e-09,-1.044962425554329903e-08,-1.090395574491474624e-08,-1.135828723428619345e-08,-1.181261872365764065e-08,-1.226695021302908786e-08,-1.272128170240053507e-08,-1.317561319177198228e-08,-1.362994468114342949e-08,-1.408427617051487670e-08,-1.453860765988632390e-08,-1.499293914925777111e-08,-1.544727063862921832e-08,-1.590160212800066553e-08,-1.635593361737211274e-08,-1.681026510674355995e-08,-1.726459659611500715e-08,-1.771892808548645436e-08,-1.817325957485790157e-08,-1.862759106422934878e-08,-1.908192255360079599e-08,-1.953625404297224320e-08,-1.999058553234369041e-08,-2.044491702171513761e-08,-2.089924851108658482e-08,-2.135358000045803203e-08,-2.180791148982947924e-08,-2.226224297920092645e-08,-2.271657446857237366e-08,-2.317090595794382086e-08,-2.362523744731526807e-08,-2.407956893668671528e-08,-2.453390042605816249e-08,-2.498823191542960970e-08,-2.544256340480105691e-08,-2.589689489417250411e-08,-2.635122638354395132e-08,-2.680555787291539853e-08,-2.725988936228684574e-08,-2.771422085165829295e-08,-2.816855234102974016e-08,-2.862288383040118736e-08 +0.000000000000000000e+00,-3.001377637729521632e-09,-6.002755275459043264e-09,-9.004132913188564483e-09,-1.200551055091808487e-08,-1.500688818864760527e-08,-1.800826582637712566e-08,-2.100964346410664605e-08,-2.401102110183616644e-08,-2.701239873956568683e-08,-3.001377637729521053e-08,-3.301515401502473423e-08,-3.601653165275425793e-08,-3.901790929048378163e-08,-4.201928692821330533e-08,-4.502066456594282903e-08,-4.802204220367235273e-08,-5.102341984140187643e-08,-5.402479747913140013e-08,-5.702617511686092383e-08,-6.002755275459044753e-08,-6.302893039231997123e-08,-6.603030803004949493e-08,-6.903168566777901863e-08,-7.203306330550854233e-08,-7.503444094323806603e-08,-7.803581858096758973e-08,-8.103719621869711343e-08,-8.403857385642663713e-08,-8.703995149415616083e-08,-9.004132913188568453e-08,-9.304270676961520823e-08,-9.604408440734473193e-08,-9.904546204507425563e-08,-1.020468396828037793e-07,-1.050482173205333030e-07,-1.080495949582628267e-07,-1.110509725959923504e-07,-1.140523502337218741e-07,-1.170537278714513978e-07,-1.200551055091809215e-07,-1.230564831469104452e-07,-1.260578607846399689e-07,-1.290592384223694926e-07,-1.320606160600990163e-07,-1.350619936978285400e-07,-1.380633713355580637e-07,-1.410647489732875874e-07,-1.440661266110171111e-07,-1.470675042487466348e-07,-1.500688818864761585e-07,-1.530702595242056822e-07,-1.560716371619352059e-07,-1.590730147996647296e-07,-1.620743924373942533e-07,-1.650757700751237770e-07,-1.680771477128533007e-07,-1.710785253505828244e-07,-1.740799029883123481e-07,-1.770812806260418718e-07,-1.800826582637713955e-07,-1.830840359015009192e-07,-1.860854135392304429e-07,-1.890867911769599666e-07 +0.000000000000000000e+00,-1.525126500290652249e-09,-3.050253000581304497e-09,-4.575379500871956539e-09,-6.100506001162608168e-09,-7.625632501453258969e-09,-9.150759001743909770e-09,-1.067588550203456057e-08,-1.220101200232521137e-08,-1.372613850261586217e-08,-1.525126500290651132e-08,-1.677639150319716047e-08,-1.830151800348780961e-08,-1.982664450377845876e-08,-2.135177100406910791e-08,-2.287689750435975705e-08,-2.440202400465040620e-08,-2.592715050494105535e-08,-2.745227700523170449e-08,-2.897740350552235364e-08,-3.050253000581300279e-08,-3.202765650610365193e-08,-3.355278300639430108e-08,-3.507790950668495023e-08,-3.660303600697559937e-08,-3.812816250726624852e-08,-3.965328900755689767e-08,-4.117841550784754682e-08,-4.270354200813819596e-08,-4.422866850842884511e-08,-4.575379500871949426e-08,-4.727892150901014340e-08,-4.880404800930079255e-08,-5.032917450959144170e-08,-5.185430100988209084e-08,-5.337942751017273999e-08,-5.490455401046338914e-08,-5.642968051075403828e-08,-5.795480701104468743e-08,-5.947993351133533658e-08,-6.100506001162599234e-08,-6.253018651191664810e-08,-6.405531301220730387e-08,-6.558043951249795963e-08,-6.710556601278861540e-08,-6.863069251307927116e-08,-7.015581901336992693e-08,-7.168094551366058269e-08,-7.320607201395123845e-08,-7.473119851424189422e-08,-7.625632501453254998e-08,-7.778145151482320575e-08,-7.930657801511386151e-08,-8.083170451540451728e-08,-8.235683101569517304e-08,-8.388195751598582880e-08,-8.540708401627648457e-08,-8.693221051656714033e-08,-8.845733701685779610e-08,-8.998246351714845186e-08,-9.150759001743910763e-08,-9.303271651772976339e-08,-9.455784301802041915e-08,-9.608296951831107492e-08 +0.000000000000000000e+00,-9.647082149499515206e-10,-1.929416429899903041e-09,-2.894124644849854562e-09,-3.858832859799806082e-09,-4.823541074749757603e-09,-5.788249289699709123e-09,-6.752957504649660644e-09,-7.717665719599612165e-09,-8.682373934549563685e-09,-9.647082149499515206e-09,-1.061179036444946673e-08,-1.157649857939941825e-08,-1.254120679434936977e-08,-1.350591500929932129e-08,-1.447062322424927281e-08,-1.543533143919922433e-08,-1.640003965414917585e-08,-1.736474786909912737e-08,-1.832945608404907889e-08,-1.929416429899903041e-08,-2.025887251394898193e-08,-2.122358072889893345e-08,-2.218828894384888497e-08,-2.315299715879883649e-08,-2.411770537374878801e-08,-2.508241358869873953e-08,-2.604712180364869106e-08,-2.701183001859864258e-08,-2.797653823354859410e-08,-2.894124644849854562e-08,-2.990595466344849714e-08,-3.087066287839844866e-08,-3.183537109334840018e-08,-3.280007930829835170e-08,-3.376478752324830322e-08,-3.472949573819825474e-08,-3.569420395314820626e-08,-3.665891216809815778e-08,-3.762362038304810930e-08,-3.858832859799806082e-08,-3.955303681294801234e-08,-4.051774502789796386e-08,-4.148245324284791538e-08,-4.244716145779786690e-08,-4.341186967274781843e-08,-4.437657788769776995e-08,-4.534128610264772147e-08,-4.630599431759767299e-08,-4.727070253254762451e-08,-4.823541074749757603e-08,-4.920011896244752755e-08,-5.016482717739747907e-08,-5.112953539234743059e-08,-5.209424360729738211e-08,-5.305895182224733363e-08,-5.402366003719728515e-08,-5.498836825214723667e-08,-5.595307646709718819e-08,-5.691778468204713971e-08,-5.788249289699709123e-08,-5.884720111194704275e-08,-5.981190932689699428e-08,-6.077661754184695241e-08 +0.000000000000000000e+00,-2.918452434527108060e-09,-5.836904869054216119e-09,-8.755357303581324179e-09,-1.167380973810843224e-08,-1.459226217263554030e-08,-1.751071460716264836e-08,-2.042916704168975807e-08,-2.334761947621686779e-08,-2.626607191074397750e-08,-2.918452434527108721e-08,-3.210297677979819693e-08,-3.502142921432530333e-08,-3.793988164885240974e-08,-4.085833408337951614e-08,-4.377678651790662255e-08,-4.669523895243372895e-08,-4.961369138696083536e-08,-5.253214382148794177e-08,-5.545059625601504817e-08,-5.836904869054215458e-08,-6.128750112506926098e-08,-6.420595355959636739e-08,-6.712440599412347379e-08,-7.004285842865058020e-08,-7.296131086317768660e-08,-7.587976329770479301e-08,-7.879821573223189941e-08,-8.171666816675900582e-08,-8.463512060128611222e-08,-8.755357303581321863e-08,-9.047202547034032503e-08,-9.339047790486743144e-08,-9.630893033939453785e-08,-9.922738277392164425e-08,-1.021458352084487507e-07,-1.050642876429758571e-07,-1.079827400775029635e-07,-1.109011925120300699e-07,-1.138196449465571763e-07,-1.167380973810842827e-07,-1.196565498156113891e-07,-1.225750022501384955e-07,-1.254934546846656019e-07,-1.284119071191927083e-07,-1.313303595537198147e-07,-1.342488119882469211e-07,-1.371672644227740275e-07,-1.400857168573011339e-07,-1.430041692918282403e-07,-1.459226217263553467e-07,-1.488410741608824531e-07,-1.517595265954095595e-07,-1.546779790299366660e-07,-1.575964314644637724e-07,-1.605148838989908788e-07,-1.634333363335179852e-07,-1.663517887680450916e-07,-1.692702412025721980e-07,-1.721886936370993044e-07,-1.751071460716264108e-07,-1.780255985061535172e-07,-1.809440509406806236e-07,-1.838625033752077300e-07 +0.000000000000000000e+00,-3.001377637724903896e-09,-6.002755275449807793e-09,-9.004132913174710862e-09,-1.200551055089961393e-08,-1.500688818862451700e-08,-1.800826582634942172e-08,-2.100964346407432645e-08,-2.401102110179923117e-08,-2.701239873952413589e-08,-3.001377637724904062e-08,-3.301515401497394534e-08,-3.601653165269885006e-08,-3.901790929042375479e-08,-4.201928692814865951e-08,-4.502066456587356423e-08,-4.802204220359846896e-08,-5.102341984132337368e-08,-5.402479747904827841e-08,-5.702617511677318313e-08,-6.002755275449809447e-08,-6.302893039222301243e-08,-6.603030802994793039e-08,-6.903168566767284834e-08,-7.203306330539776630e-08,-7.503444094312268426e-08,-7.803581858084760222e-08,-8.103719621857252018e-08,-8.403857385629743814e-08,-8.703995149402235610e-08,-9.004132913174727405e-08,-9.304270676947219201e-08,-9.604408440719710997e-08,-9.904546204492202793e-08,-1.020468396826469459e-07,-1.050482173203718638e-07,-1.080495949580967818e-07,-1.110509725958216998e-07,-1.140523502335466177e-07,-1.170537278712715357e-07,-1.200551055089964536e-07,-1.230564831467213716e-07,-1.260578607844462896e-07,-1.290592384221712075e-07,-1.320606160598961255e-07,-1.350619936976210434e-07,-1.380633713353459614e-07,-1.410647489730708793e-07,-1.440661266107957973e-07,-1.470675042485207153e-07,-1.500688818862456332e-07,-1.530702595239705512e-07,-1.560716371616954691e-07,-1.590730147994203871e-07,-1.620743924371453051e-07,-1.650757700748702230e-07,-1.680771477125951410e-07,-1.710785253503200589e-07,-1.740799029880449769e-07,-1.770812806257698948e-07,-1.800826582634948128e-07,-1.830840359012197308e-07,-1.860854135389446487e-07,-1.890867911766695667e-07 +0.000000000000000000e+00,-1.547559318508855417e-09,-3.095118637017710833e-09,-4.642677955526566250e-09,-6.190237274035421666e-09,-7.737796592544277910e-09,-9.285355911053134154e-09,-1.083291522956199040e-08,-1.238047454807084664e-08,-1.392803386657970289e-08,-1.547559318508855913e-08,-1.702315250359741537e-08,-1.857071182210627162e-08,-2.011827114061512786e-08,-2.166583045912398410e-08,-2.321338977763284035e-08,-2.476094909614169659e-08,-2.630850841465055284e-08,-2.785606773315940908e-08,-2.940362705166826532e-08,-3.095118637017712488e-08,-3.249874568868598112e-08,-3.404630500719483736e-08,-3.559386432570369361e-08,-3.714142364421254985e-08,-3.868898296272140609e-08,-4.023654228123026234e-08,-4.178410159973911858e-08,-4.333166091824797483e-08,-4.487922023675683107e-08,-4.642677955526568731e-08,-4.797433887377454356e-08,-4.952189819228339980e-08,-5.106945751079225604e-08,-5.261701682930111229e-08,-5.416457614780996853e-08,-5.571213546631882478e-08,-5.725969478482768102e-08,-5.880725410333653726e-08,-6.035481342184539351e-08,-6.190237274035424975e-08,-6.344993205886310599e-08,-6.499749137737196224e-08,-6.654505069588081848e-08,-6.809261001438967473e-08,-6.964016933289853097e-08,-7.118772865140738721e-08,-7.273528796991624346e-08,-7.428284728842509970e-08,-7.583040660693395594e-08,-7.737796592544281219e-08,-7.892552524395166843e-08,-8.047308456246052468e-08,-8.202064388096938092e-08,-8.356820319947823716e-08,-8.511576251798709341e-08,-8.666332183649594965e-08,-8.821088115500480590e-08,-8.975844047351366214e-08,-9.130599979202251838e-08,-9.285355911053137463e-08,-9.440111842904023087e-08,-9.594867774754908711e-08,-9.749623706605794336e-08 +0.000000000000000000e+00,-1.469239194663105070e-09,-2.938478389326210141e-09,-4.407717583989315211e-09,-5.876956778652420282e-09,-7.346195973315525352e-09,-8.815435167978630423e-09,-1.028467436264173549e-08,-1.175391355730484056e-08,-1.322315275196794563e-08,-1.469239194663105070e-08,-1.616163114129415577e-08,-1.763087033595726085e-08,-1.910010953062036592e-08,-2.056934872528347099e-08,-2.203858791994657606e-08,-2.350782711460968113e-08,-2.497706630927278620e-08,-2.644630550393589127e-08,-2.791554469859899634e-08,-2.938478389326210141e-08,-3.085402308792520648e-08,-3.232326228258831155e-08,-3.379250147725141662e-08,-3.526174067191452169e-08,-3.673097986657762676e-08,-3.820021906124073183e-08,-3.966945825590383690e-08,-4.113869745056694197e-08,-4.260793664523004704e-08,-4.407717583989315211e-08,-4.554641503455625718e-08,-4.701565422921936225e-08,-4.848489342388246732e-08,-4.995413261854557239e-08,-5.142337181320867746e-08,-5.289261100787178254e-08,-5.436185020253488761e-08,-5.583108939719799268e-08,-5.730032859186109775e-08,-5.876956778652420282e-08,-6.023880698118730789e-08,-6.170804617585041296e-08,-6.317728537051351803e-08,-6.464652456517662310e-08,-6.611576375983972817e-08,-6.758500295450283324e-08,-6.905424214916593831e-08,-7.052348134382904338e-08,-7.199272053849214845e-08,-7.346195973315525352e-08,-7.493119892781835859e-08,-7.640043812248146366e-08,-7.786967731714456873e-08,-7.933891651180767380e-08,-8.080815570647077887e-08,-8.227739490113388394e-08,-8.374663409579698901e-08,-8.521587329046009408e-08,-8.668511248512319915e-08,-8.815435167978630423e-08,-8.962359087444940930e-08,-9.109283006911251437e-08,-9.256206926377561944e-08 +0.000000000000000000e+00,-4.543314893626357703e-10,-9.086629787252715407e-10,-1.362994468087907414e-09,-1.817325957450543288e-09,-2.271657446813179162e-09,-2.725988936175814829e-09,-3.180320425538450496e-09,-3.634651914901086163e-09,-4.088983404263721416e-09,-4.543314893626356669e-09,-4.997646382988991923e-09,-5.451977872351627176e-09,-5.906309361714262429e-09,-6.360640851076897683e-09,-6.814972340439532936e-09,-7.269303829802168189e-09,-7.723635319164803443e-09,-8.177966808527439523e-09,-8.632298297890075604e-09,-9.086629787252711684e-09,-9.540961276615347765e-09,-9.995292765977983845e-09,-1.044962425534061993e-08,-1.090395574470325601e-08,-1.135828723406589209e-08,-1.181261872342852817e-08,-1.226695021279116425e-08,-1.272128170215380033e-08,-1.317561319151643641e-08,-1.362994468087907249e-08,-1.408427617024170857e-08,-1.453860765960434465e-08,-1.499293914896698073e-08,-1.544727063832961681e-08,-1.590160212769225289e-08,-1.635593361705488897e-08,-1.681026510641752505e-08,-1.726459659578016113e-08,-1.771892808514279721e-08,-1.817325957450543329e-08,-1.862759106386806938e-08,-1.908192255323070546e-08,-1.953625404259334154e-08,-1.999058553195597762e-08,-2.044491702131861370e-08,-2.089924851068124978e-08,-2.135358000004388586e-08,-2.180791148940652194e-08,-2.226224297876915802e-08,-2.271657446813179410e-08,-2.317090595749443018e-08,-2.362523744685706626e-08,-2.407956893621970234e-08,-2.453390042558233842e-08,-2.498823191494497450e-08,-2.544256340430761058e-08,-2.589689489367024666e-08,-2.635122638303288274e-08,-2.680555787239551882e-08,-2.725988936175815491e-08,-2.771422085112079099e-08,-2.816855234048342707e-08,-2.862288382984606315e-08 +0.000000000000000000e+00,-7.321474841429806712e-10,-1.464294968285961342e-09,-2.196442452428942117e-09,-2.928589936571923098e-09,-3.660737420714904080e-09,-4.392884904857885061e-09,-5.125032389000866043e-09,-5.857179873143847024e-09,-6.589327357286828006e-09,-7.321474841429808987e-09,-8.053622325572789141e-09,-8.785769809715768468e-09,-9.517917293858747795e-09,-1.025006477800172712e-08,-1.098221226214470645e-08,-1.171435974628768578e-08,-1.244650723043066510e-08,-1.317865471457364443e-08,-1.391080219871662376e-08,-1.464294968285960308e-08,-1.537509716700258241e-08,-1.610724465114556174e-08,-1.683939213528854107e-08,-1.757153961943152039e-08,-1.830368710357449972e-08,-1.903583458771747905e-08,-1.976798207186045837e-08,-2.050012955600343770e-08,-2.123227704014641703e-08,-2.196442452428939636e-08,-2.269657200843237568e-08,-2.342871949257535501e-08,-2.416086697671833434e-08,-2.489301446086131366e-08,-2.562516194500429299e-08,-2.635730942914727232e-08,-2.708945691329025164e-08,-2.782160439743323097e-08,-2.855375188157621030e-08,-2.928589936571918963e-08,-3.001804684986216895e-08,-3.075019433400515159e-08,-3.148234181814813422e-08,-3.221448930229111686e-08,-3.294663678643409950e-08,-3.367878427057708213e-08,-3.441093175472006477e-08,-3.514307923886304740e-08,-3.587522672300603004e-08,-3.660737420714901267e-08,-3.733952169129199531e-08,-3.807166917543497795e-08,-3.880381665957796058e-08,-3.953596414372094322e-08,-4.026811162786392585e-08,-4.100025911200690849e-08,-4.173240659614989113e-08,-4.246455408029287376e-08,-4.319670156443585640e-08,-4.392884904857883903e-08,-4.466099653272182167e-08,-4.539314401686480430e-08,-4.612529150100778694e-08 +0.000000000000000000e+00,-7.600330015975526688e-10,-1.520066003195105338e-09,-2.280099004792658110e-09,-3.040132006390211089e-09,-3.800165007987764481e-09,-4.560198009585317874e-09,-5.320231011182871266e-09,-6.080264012780424659e-09,-6.840297014377978051e-09,-7.600330015975532271e-09,-8.360363017573086491e-09,-9.120396019170640711e-09,-9.880429020768194930e-09,-1.064046202236574915e-08,-1.140049502396330337e-08,-1.216052802556085759e-08,-1.292056102715841181e-08,-1.368059402875596603e-08,-1.444062703035352025e-08,-1.520066003195107447e-08,-1.596069303354863034e-08,-1.672072603514618622e-08,-1.748075903674374209e-08,-1.824079203834129796e-08,-1.900082503993885384e-08,-1.976085804153640971e-08,-2.052089104313396559e-08,-2.128092404473152146e-08,-2.204095704632907734e-08,-2.280099004792663321e-08,-2.356102304952418908e-08,-2.432105605112174496e-08,-2.508108905271930083e-08,-2.584112205431685671e-08,-2.660115505591441258e-08,-2.736118805751196845e-08,-2.812122105910952433e-08,-2.888125406070708020e-08,-2.964128706230463608e-08,-3.040132006390219526e-08,-3.116135306549975444e-08,-3.192138606709731362e-08,-3.268141906869487281e-08,-3.344145207029243199e-08,-3.420148507188999117e-08,-3.496151807348755036e-08,-3.572155107508510954e-08,-3.648158407668266872e-08,-3.724161707828022790e-08,-3.800165007987778709e-08,-3.876168308147534627e-08,-3.952171608307290545e-08,-4.028174908467046464e-08,-4.104178208626802382e-08,-4.180181508786558300e-08,-4.256184808946314218e-08,-4.332188109106070137e-08,-4.408191409265826055e-08,-4.484194709425581973e-08,-4.560198009585337891e-08,-4.636201309745093810e-08,-4.712204609904849728e-08,-4.788207910064605646e-08 +0.000000000000000000e+00,-3.033462210435446495e-10,-6.066924420870892989e-10,-9.100386631306338967e-10,-1.213384884174178391e-09,-1.516731105217722885e-09,-1.820077326261267380e-09,-2.123423547304811874e-09,-2.426769768348356368e-09,-2.730115989391900863e-09,-3.033462210435445357e-09,-3.336808431478989852e-09,-3.640154652522534346e-09,-3.943500873566078840e-09,-4.246847094609623748e-09,-4.550193315653168656e-09,-4.853539536696713564e-09,-5.156885757740258472e-09,-5.460231978783803380e-09,-5.763578199827348288e-09,-6.066924420870893196e-09,-6.370270641914438104e-09,-6.673616862957983012e-09,-6.976963084001527920e-09,-7.280309305045072828e-09,-7.583655526088617736e-09,-7.887001747132162644e-09,-8.190347968175707552e-09,-8.493694189219252460e-09,-8.797040410262797368e-09,-9.100386631306342275e-09,-9.403732852349887183e-09,-9.707079073393432091e-09,-1.001042529443697700e-08,-1.031377151548052191e-08,-1.061711773652406682e-08,-1.092046395756761172e-08,-1.122381017861115663e-08,-1.152715639965470154e-08,-1.183050262069824645e-08,-1.213384884174179136e-08,-1.243719506278533626e-08,-1.274054128382888117e-08,-1.304388750487242608e-08,-1.334723372591597099e-08,-1.365057994695951589e-08,-1.395392616800306080e-08,-1.425727238904660571e-08,-1.456061861009015062e-08,-1.486396483113369553e-08,-1.516731105217723878e-08,-1.547065727322078038e-08,-1.577400349426432198e-08,-1.607734971530786358e-08,-1.638069593635140518e-08,-1.668404215739494678e-08,-1.698738837843848838e-08,-1.729073459948202997e-08,-1.759408082052557157e-08,-1.789742704156911317e-08,-1.820077326261265477e-08,-1.850411948365619637e-08,-1.880746570469973797e-08,-1.911081192574327957e-08 +0.000000000000000000e+00,-7.321474841357169915e-10,-1.464294968271433983e-09,-2.196442452407150871e-09,-2.928589936542867552e-09,-3.660737420678584234e-09,-4.392884904814300915e-09,-5.125032388950017596e-09,-5.857179873085734277e-09,-6.589327357221450959e-09,-7.321474841357167640e-09,-8.053622325492883494e-09,-8.785769809628600175e-09,-9.517917293764316857e-09,-1.025006477790003354e-08,-1.098221226203575022e-08,-1.171435974617146690e-08,-1.244650723030718358e-08,-1.317865471444290026e-08,-1.391080219857861694e-08,-1.464294968271433363e-08,-1.537509716685005031e-08,-1.610724465098576699e-08,-1.683939213512148367e-08,-1.757153961925720035e-08,-1.830368710339291703e-08,-1.903583458752863371e-08,-1.976798207166435039e-08,-2.050012955580006708e-08,-2.123227703993578376e-08,-2.196442452407150044e-08,-2.269657200820721712e-08,-2.342871949234293380e-08,-2.416086697647865048e-08,-2.489301446061436716e-08,-2.562516194475008384e-08,-2.635730942888580053e-08,-2.708945691302151721e-08,-2.782160439715723389e-08,-2.855375188129295057e-08,-2.928589936542866725e-08,-3.001804684956438393e-08,-3.075019433370010061e-08,-3.148234181783581729e-08,-3.221448930197153398e-08,-3.294663678610725066e-08,-3.367878427024296734e-08,-3.441093175437868402e-08,-3.514307923851440070e-08,-3.587522672265011738e-08,-3.660737420678583406e-08,-3.733952169092155075e-08,-3.807166917505726743e-08,-3.880381665919298411e-08,-3.953596414332870079e-08,-4.026811162746441747e-08,-4.100025911160013415e-08,-4.173240659573585083e-08,-4.246455407987156751e-08,-4.319670156400728420e-08,-4.392884904814300088e-08,-4.466099653227871756e-08,-4.539314401641443424e-08,-4.612529150055015092e-08 +0.000000000000000000e+00,-7.600330015896511294e-10,-1.520066003179302259e-09,-2.280099004768953181e-09,-3.040132006358604104e-09,-3.800165007948255026e-09,-4.560198009537906363e-09,-5.320231011127557699e-09,-6.080264012717209035e-09,-6.840297014306860371e-09,-7.600330015896511707e-09,-8.360363017486163043e-09,-9.120396019075814379e-09,-9.880429020665465716e-09,-1.064046202225511705e-08,-1.140049502384476839e-08,-1.216052802543441972e-08,-1.292056102702407106e-08,-1.368059402861372240e-08,-1.444062703020337373e-08,-1.520066003179302672e-08,-1.596069303338267806e-08,-1.672072603497232940e-08,-1.748075903656198073e-08,-1.824079203815163207e-08,-1.900082503974128340e-08,-1.976085804133093474e-08,-2.052089104292058608e-08,-2.128092404451023741e-08,-2.204095704609988875e-08,-2.280099004768954008e-08,-2.356102304927919142e-08,-2.432105605086884276e-08,-2.508108905245849409e-08,-2.584112205404814543e-08,-2.660115505563779677e-08,-2.736118805722744810e-08,-2.812122105881709944e-08,-2.888125406040675077e-08,-2.964128706199640211e-08,-3.040132006358605345e-08,-3.116135306517570478e-08,-3.192138606676535612e-08,-3.268141906835500745e-08,-3.344145206994465879e-08,-3.420148507153431013e-08,-3.496151807312396146e-08,-3.572155107471361280e-08,-3.648158407630326414e-08,-3.724161707789291547e-08,-3.800165007948256681e-08,-3.876168308107221814e-08,-3.952171608266186948e-08,-4.028174908425152082e-08,-4.104178208584117215e-08,-4.180181508743082349e-08,-4.256184808902047482e-08,-4.332188109061012616e-08,-4.408191409219977750e-08,-4.484194709378942883e-08,-4.560198009537908017e-08,-4.636201309696873151e-08,-4.712204609855838284e-08,-4.788207910014803418e-08 +0.000000000000000000e+00,-3.033462210359147872e-10,-6.066924420718295744e-10,-9.100386631077443616e-10,-1.213384884143659149e-09,-1.516731105179573936e-09,-1.820077326215488723e-09,-2.123423547251403304e-09,-2.426769768287317884e-09,-2.730115989323232464e-09,-3.033462210359147045e-09,-3.336808431395061625e-09,-3.640154652430976205e-09,-3.943500873466890786e-09,-4.246847094502804953e-09,-4.550193315538719119e-09,-4.853539536574633286e-09,-5.156885757610547453e-09,-5.460231978646461620e-09,-5.763578199682375787e-09,-6.066924420718289953e-09,-6.370270641754204120e-09,-6.673616862790118287e-09,-6.976963083826032454e-09,-7.280309304861946621e-09,-7.583655525897861615e-09,-7.887001746933776609e-09,-8.190347967969691603e-09,-8.493694189005606597e-09,-8.797040410041521591e-09,-9.100386631077436585e-09,-9.403732852113351579e-09,-9.707079073149266573e-09,-1.001042529418518157e-08,-1.031377151522109656e-08,-1.061711773625701155e-08,-1.092046395729292655e-08,-1.122381017832884154e-08,-1.152715639936475654e-08,-1.183050262040067153e-08,-1.213384884143658652e-08,-1.243719506247250152e-08,-1.274054128350841651e-08,-1.304388750454433151e-08,-1.334723372558024650e-08,-1.365057994661616149e-08,-1.395392616765207649e-08,-1.425727238868799148e-08,-1.456061860972390648e-08,-1.486396483075982147e-08,-1.516731105179573646e-08,-1.547065727283165146e-08,-1.577400349386756645e-08,-1.607734971490348145e-08,-1.638069593593939644e-08,-1.668404215697531143e-08,-1.698738837801122643e-08,-1.729073459904714142e-08,-1.759408082008305642e-08,-1.789742704111897141e-08,-1.820077326215488640e-08,-1.850411948319080140e-08,-1.880746570422671639e-08,-1.911081192526263139e-08 +0.000000000000000000e+00,-8.752474339238356461e-10,-1.750494867847671292e-09,-2.625742301771506938e-09,-3.500989735695342584e-09,-4.376237169619178230e-09,-5.251484603543013876e-09,-6.126732037466849522e-09,-7.001979471390685168e-09,-7.877226905314520814e-09,-8.752474339238356461e-09,-9.627721773162192107e-09,-1.050296920708602775e-08,-1.137821664100986340e-08,-1.225346407493369904e-08,-1.312871150885753469e-08,-1.400395894278137034e-08,-1.487920637670520598e-08,-1.575445381062904163e-08,-1.662970124455287562e-08,-1.750494867847670961e-08,-1.838019611240054360e-08,-1.925544354632437760e-08,-2.013069098024821159e-08,-2.100593841417204558e-08,-2.188118584809587957e-08,-2.275643328201971356e-08,-2.363168071594354755e-08,-2.450692814986738155e-08,-2.538217558379121554e-08,-2.625742301771504953e-08,-2.713267045163888352e-08,-2.800791788556271751e-08,-2.888316531948655150e-08,-2.975841275341038550e-08,-3.063366018733421949e-08,-3.150890762125805017e-08,-3.238415505518188085e-08,-3.325940248910571154e-08,-3.413464992302954222e-08,-3.500989735695337290e-08,-3.588514479087720359e-08,-3.676039222480103427e-08,-3.763563965872486495e-08,-3.851088709264869563e-08,-3.938613452657252632e-08,-4.026138196049635700e-08,-4.113662939442018768e-08,-4.201187682834401837e-08,-4.288712426226784905e-08,-4.376237169619167973e-08,-4.463761913011551042e-08,-4.551286656403934110e-08,-4.638811399796317178e-08,-4.726336143188700246e-08,-4.813860886581083315e-08,-4.901385629973466383e-08,-4.988910373365849451e-08,-5.076435116758232520e-08,-5.163959860150615588e-08,-5.251484603542998656e-08,-5.339009346935381724e-08,-5.426534090327764793e-08,-5.514058833720147861e-08 +0.000000000000000000e+00,-7.843233781742358870e-10,-1.568646756348471774e-09,-2.352970134522707558e-09,-3.137293512696943134e-09,-3.921616890871179125e-09,-4.705940269045415115e-09,-5.490263647219651105e-09,-6.274587025393887096e-09,-7.058910403568123086e-09,-7.843233781742358249e-09,-8.627557159916593413e-09,-9.411880538090828576e-09,-1.019620391626506374e-08,-1.098052729443929890e-08,-1.176485067261353407e-08,-1.254917405078776923e-08,-1.333349742896200439e-08,-1.411782080713623956e-08,-1.490214418531047637e-08,-1.568646756348471319e-08,-1.647079094165895001e-08,-1.725511431983318683e-08,-1.803943769800742364e-08,-1.882376107618166046e-08,-1.960808445435589728e-08,-2.039240783253013410e-08,-2.117673121070437091e-08,-2.196105458887860773e-08,-2.274537796705284455e-08,-2.352970134522708137e-08,-2.431402472340131818e-08,-2.509834810157555500e-08,-2.588267147974979182e-08,-2.666699485792402864e-08,-2.745131823609826545e-08,-2.823564161427250227e-08,-2.901996499244673909e-08,-2.980428837062097921e-08,-3.058861174879521934e-08,-3.137293512696945947e-08,-3.215725850514369959e-08,-3.294158188331793972e-08,-3.372590526149217985e-08,-3.451022863966641997e-08,-3.529455201784066010e-08,-3.607887539601490023e-08,-3.686319877418914035e-08,-3.764752215236338048e-08,-3.843184553053762060e-08,-3.921616890871186073e-08,-4.000049228688610086e-08,-4.078481566506034098e-08,-4.156913904323458111e-08,-4.235346242140882124e-08,-4.313778579958306136e-08,-4.392210917775730149e-08,-4.470643255593154161e-08,-4.549075593410578174e-08,-4.627507931228002187e-08,-4.705940269045426199e-08,-4.784372606862850212e-08,-4.862804944680274225e-08,-4.941237282497698237e-08 +0.000000000000000000e+00,-3.646913648988726618e-10,-7.293827297977453236e-10,-1.094074094696617934e-09,-1.458765459595490440e-09,-1.823456824494362947e-09,-2.188148189393235454e-09,-2.552839554292107754e-09,-2.917530919190980054e-09,-3.282222284089852354e-09,-3.646913648988724654e-09,-4.011605013887596954e-09,-4.376296378786469254e-09,-4.740987743685341553e-09,-5.105679108584213853e-09,-5.470370473483086153e-09,-5.835061838381958453e-09,-6.199753203280830753e-09,-6.564444568179703053e-09,-6.929135933078575353e-09,-7.293827297977447653e-09,-7.658518662876319126e-09,-8.023210027775190598e-09,-8.387901392674062071e-09,-8.752592757572933544e-09,-9.117284122471805017e-09,-9.481975487370676489e-09,-9.846666852269547962e-09,-1.021135821716841943e-08,-1.057604958206729091e-08,-1.094074094696616238e-08,-1.130543231186503385e-08,-1.167012367676390533e-08,-1.203481504166277680e-08,-1.239950640656164827e-08,-1.276419777146051974e-08,-1.312888913635939122e-08,-1.349358050125826269e-08,-1.385827186615713416e-08,-1.422296323105600564e-08,-1.458765459595487711e-08,-1.495234596085374858e-08,-1.531703732575261840e-08,-1.568172869065148822e-08,-1.604642005555035804e-08,-1.641111142044922785e-08,-1.677580278534809767e-08,-1.714049415024696749e-08,-1.750518551514583731e-08,-1.786987688004470713e-08,-1.823456824494357695e-08,-1.859925960984244676e-08,-1.896395097474131658e-08,-1.932864233964018640e-08,-1.969333370453905622e-08,-2.005802506943792604e-08,-2.042271643433679586e-08,-2.078740779923566567e-08,-2.115209916413453549e-08,-2.151679052903340531e-08,-2.188148189393227513e-08,-2.224617325883114495e-08,-2.261086462373001477e-08,-2.297555598862888459e-08 +0.000000000000000000e+00,-8.752474339177583501e-10,-1.750494867835516700e-09,-2.625742301753275050e-09,-3.500989735671033400e-09,-4.376237169588791750e-09,-5.251484603506550101e-09,-6.126732037424308451e-09,-7.001979471342066801e-09,-7.877226905259825978e-09,-8.752474339177585155e-09,-9.627721773095344333e-09,-1.050296920701310351e-08,-1.137821664093086269e-08,-1.225346407484862186e-08,-1.312871150876638104e-08,-1.400395894268414022e-08,-1.487920637660189940e-08,-1.575445381051965857e-08,-1.662970124443741775e-08,-1.750494867835517693e-08,-1.838019611227293611e-08,-1.925544354619069528e-08,-2.013069098010845446e-08,-2.100593841402621364e-08,-2.188118584794397281e-08,-2.275643328186173199e-08,-2.363168071577949117e-08,-2.450692814969725035e-08,-2.538217558361500952e-08,-2.625742301753276870e-08,-2.713267045145052788e-08,-2.800791788536828706e-08,-2.888316531928604623e-08,-2.975841275320380541e-08,-3.063366018712156128e-08,-3.150890762103931715e-08,-3.238415505495707302e-08,-3.325940248887482888e-08,-3.413464992279258475e-08,-3.500989735671034062e-08,-3.588514479062809649e-08,-3.676039222454585236e-08,-3.763563965846360823e-08,-3.851088709238136410e-08,-3.938613452629911996e-08,-4.026138196021687583e-08,-4.113662939413463170e-08,-4.201187682805238757e-08,-4.288712426197014344e-08,-4.376237169588789931e-08,-4.463761912980565518e-08,-4.551286656372341104e-08,-4.638811399764116691e-08,-4.726336143155892278e-08,-4.813860886547667865e-08,-4.901385629939443452e-08,-4.988910373331219039e-08,-5.076435116722994625e-08,-5.163959860114770212e-08,-5.251484603506545799e-08,-5.339009346898321386e-08,-5.426534090290096973e-08,-5.514058833681872560e-08 +0.000000000000000000e+00,-7.843233781675846311e-10,-1.568646756335169262e-09,-2.352970134502753893e-09,-3.137293512670338524e-09,-3.921616890837923155e-09,-4.705940269005507786e-09,-5.490263647173092418e-09,-6.274587025340677049e-09,-7.058910403508261680e-09,-7.843233781675846311e-09,-8.627557159843430942e-09,-9.411880538011015573e-09,-1.019620391617860020e-08,-1.098052729434618484e-08,-1.176485067251376947e-08,-1.254917405068135410e-08,-1.333349742884893873e-08,-1.411782080701652336e-08,-1.490214418518410964e-08,-1.568646756335169593e-08,-1.647079094151928222e-08,-1.725511431968686850e-08,-1.803943769785445479e-08,-1.882376107602204107e-08,-1.960808445418962736e-08,-2.039240783235721364e-08,-2.117673121052479993e-08,-2.196105458869238621e-08,-2.274537796685997250e-08,-2.352970134502755878e-08,-2.431402472319514507e-08,-2.509834810136273136e-08,-2.588267147953031764e-08,-2.666699485769790393e-08,-2.745131823586549021e-08,-2.823564161403307650e-08,-2.901996499220066278e-08,-2.980428837036824576e-08,-3.058861174853582874e-08,-3.137293512670341171e-08,-3.215725850487099469e-08,-3.294158188303857767e-08,-3.372590526120616064e-08,-3.451022863937374362e-08,-3.529455201754132660e-08,-3.607887539570890957e-08,-3.686319877387649255e-08,-3.764752215204407553e-08,-3.843184553021165850e-08,-3.921616890837924148e-08,-4.000049228654682446e-08,-4.078481566471440743e-08,-4.156913904288199041e-08,-4.235346242104957339e-08,-4.313778579921715636e-08,-4.392210917738473934e-08,-4.470643255555232232e-08,-4.549075593371990529e-08,-4.627507931188748827e-08,-4.705940269005507125e-08,-4.784372606822265422e-08,-4.862804944639023720e-08,-4.941237282455782018e-08 +0.000000000000000000e+00,-3.646913648923820340e-10,-7.293827297847640681e-10,-1.094074094677146102e-09,-1.458765459569528136e-09,-1.823456824461910170e-09,-2.188148189354292204e-09,-2.552839554246674032e-09,-2.917530919139055859e-09,-3.282222284031437686e-09,-3.646913648923819513e-09,-4.011605013816201341e-09,-4.376296378708583581e-09,-4.740987743600965822e-09,-5.105679108493348063e-09,-5.470370473385730304e-09,-5.835061838278112545e-09,-6.199753203170494786e-09,-6.564444568062877026e-09,-6.929135932955259267e-09,-7.293827297847641508e-09,-7.658518662740022922e-09,-8.023210027632404335e-09,-8.387901392524785749e-09,-8.752592757417167163e-09,-9.117284122309548576e-09,-9.481975487201929990e-09,-9.846666852094311404e-09,-1.021135821698669282e-08,-1.057604958187907423e-08,-1.094074094677145564e-08,-1.130543231166383706e-08,-1.167012367655621847e-08,-1.203481504144859989e-08,-1.239950640634098130e-08,-1.276419777123336271e-08,-1.312888913612574413e-08,-1.349358050101812554e-08,-1.385827186591050695e-08,-1.422296323080288837e-08,-1.458765459569526978e-08,-1.495234596058765120e-08,-1.531703732548003261e-08,-1.568172869037241402e-08,-1.604642005526479544e-08,-1.641111142015717685e-08,-1.677580278504955826e-08,-1.714049414994193968e-08,-1.750518551483432109e-08,-1.786987687972670250e-08,-1.823456824461908392e-08,-1.859925960951146533e-08,-1.896395097440384675e-08,-1.932864233929622816e-08,-1.969333370418860957e-08,-2.005802506908099099e-08,-2.042271643397337240e-08,-2.078740779886575381e-08,-2.115209916375813523e-08,-2.151679052865051664e-08,-2.188148189354289805e-08,-2.224617325843527947e-08,-2.261086462332766088e-08,-2.297555598822004230e-08 +0.000000000000000000e+00,-1.078649995478736436e-09,-2.157299990957472873e-09,-3.235949986436209309e-09,-4.314599981914945746e-09,-5.393249977393682596e-09,-6.471899972872419446e-09,-7.550549968351156296e-09,-8.629199963829893146e-09,-9.707849959308629996e-09,-1.078649995478736685e-08,-1.186514995026610370e-08,-1.294379994574484055e-08,-1.402244994122357740e-08,-1.510109993670231590e-08,-1.617974993218105275e-08,-1.725839992765978960e-08,-1.833704992313852645e-08,-1.941569991861726330e-08,-2.049434991409600015e-08,-2.157299990957473700e-08,-2.265164990505347385e-08,-2.373029990053221070e-08,-2.480894989601094755e-08,-2.588759989148968440e-08,-2.696624988696842125e-08,-2.804489988244715810e-08,-2.912354987792589495e-08,-3.020219987340463180e-08,-3.128084986888336865e-08,-3.235949986436210550e-08,-3.343814985984084235e-08,-3.451679985531957920e-08,-3.559544985079831605e-08,-3.667409984627705290e-08,-3.775274984175578975e-08,-3.883139983723452660e-08,-3.991004983271326345e-08,-4.098869982819200030e-08,-4.206734982367073715e-08,-4.314599981914947400e-08,-4.422464981462821085e-08,-4.530329981010694770e-08,-4.638194980558568455e-08,-4.746059980106442140e-08,-4.853924979654315825e-08,-4.961789979202189510e-08,-5.069654978750063195e-08,-5.177519978297936880e-08,-5.285384977845810565e-08,-5.393249977393684250e-08,-5.501114976941557935e-08,-5.608979976489431620e-08,-5.716844976037305305e-08,-5.824709975585178990e-08,-5.932574975133052675e-08,-6.040439974680926360e-08,-6.148304974228799383e-08,-6.256169973776672407e-08,-6.364034973324545430e-08,-6.471899972872418453e-08,-6.579764972420291476e-08,-6.687629971968164500e-08,-6.795494971516037523e-08 +0.000000000000000000e+00,-9.781588457255287853e-10,-1.956317691451057571e-09,-2.934476537176586356e-09,-3.912635382902115141e-09,-4.890794228627643513e-09,-5.868953074353171884e-09,-6.847111920078700256e-09,-7.825270765804228628e-09,-8.803429611529756999e-09,-9.781588457255285371e-09,-1.075974730298081374e-08,-1.173790614870634211e-08,-1.271606499443187049e-08,-1.369422384015739886e-08,-1.467238268588292723e-08,-1.565054153160845395e-08,-1.662870037733398066e-08,-1.760685922305950738e-08,-1.858501806878503410e-08,-1.956317691451056082e-08,-2.054133576023608753e-08,-2.151949460596161425e-08,-2.249765345168714097e-08,-2.347581229741266769e-08,-2.445397114313819440e-08,-2.543212998886372112e-08,-2.641028883458924784e-08,-2.738844768031477455e-08,-2.836660652604030127e-08,-2.934476537176582799e-08,-3.032292421749135471e-08,-3.130108306321688142e-08,-3.227924190894240814e-08,-3.325740075466793486e-08,-3.423555960039346158e-08,-3.521371844611898829e-08,-3.619187729184451501e-08,-3.717003613757004173e-08,-3.814819498329556844e-08,-3.912635382902109516e-08,-4.010451267474662188e-08,-4.108267152047214860e-08,-4.206083036619767531e-08,-4.303898921192320203e-08,-4.401714805764872875e-08,-4.499530690337425547e-08,-4.597346574909978218e-08,-4.695162459482530890e-08,-4.792978344055083562e-08,-4.890794228627636233e-08,-4.988610113200188905e-08,-5.086425997772741577e-08,-5.184241882345294249e-08,-5.282057766917846920e-08,-5.379873651490399592e-08,-5.477689536062952264e-08,-5.575505420635504936e-08,-5.673321305208057607e-08,-5.771137189780610279e-08,-5.868953074353162951e-08,-5.966768958925715623e-08,-6.064584843498268294e-08,-6.162400728070820966e-08 +0.000000000000000000e+00,-4.624719510265833122e-10,-9.249439020531666243e-10,-1.387415853079749833e-09,-1.849887804106333042e-09,-2.312359755132916251e-09,-2.774831706159499666e-09,-3.237303657186083082e-09,-3.699775608212666497e-09,-4.162247559239249913e-09,-4.624719510265833328e-09,-5.087191461292416744e-09,-5.549663412319000159e-09,-6.012135363345583575e-09,-6.474607314372166991e-09,-6.937079265398750406e-09,-7.399551216425333822e-09,-7.862023167451917237e-09,-8.324495118478499826e-09,-8.786967069505082414e-09,-9.249439020531665002e-09,-9.711910971558247591e-09,-1.017438292258483018e-08,-1.063685487361141277e-08,-1.109932682463799536e-08,-1.156179877566457794e-08,-1.202427072669116053e-08,-1.248674267771774312e-08,-1.294921462874432571e-08,-1.341168657977090830e-08,-1.387415853079749089e-08,-1.433663048182407347e-08,-1.479910243285065606e-08,-1.526157438387723865e-08,-1.572404633490382124e-08,-1.618651828593040383e-08,-1.664899023695698642e-08,-1.711146218798356900e-08,-1.757393413901015159e-08,-1.803640609003673418e-08,-1.849887804106331677e-08,-1.896134999208989936e-08,-1.942382194311648195e-08,-1.988629389414306453e-08,-2.034876584516964712e-08,-2.081123779619622971e-08,-2.127370974722281230e-08,-2.173618169824939489e-08,-2.219865364927597748e-08,-2.266112560030256006e-08,-2.312359755132914265e-08,-2.358606950235572524e-08,-2.404854145338230783e-08,-2.451101340440889042e-08,-2.497348535543547301e-08,-2.543595730646205560e-08,-2.589842925748863818e-08,-2.636090120851522077e-08,-2.682337315954180336e-08,-2.728584511056838595e-08,-2.774831706159496854e-08,-2.821078901262155113e-08,-2.867326096364813371e-08,-2.913573291467471630e-08 +0.000000000000000000e+00,-1.078649995473736130e-09,-2.157299990947472259e-09,-3.235949986421208389e-09,-4.314599981894944518e-09,-5.393249977368680234e-09,-6.471899972842415951e-09,-7.550549968316151667e-09,-8.629199963789887383e-09,-9.707849959263623099e-09,-1.078649995473735881e-08,-1.186514995021109453e-08,-1.294379994568483025e-08,-1.402244994115856596e-08,-1.510109993663230333e-08,-1.617974993210604070e-08,-1.725839992757977807e-08,-1.833704992305351544e-08,-1.941569991852725281e-08,-2.049434991400099019e-08,-2.157299990947472756e-08,-2.265164990494846493e-08,-2.373029990042220230e-08,-2.480894989589593967e-08,-2.588759989136967704e-08,-2.696624988684341441e-08,-2.804489988231715178e-08,-2.912354987779088915e-08,-3.020219987326462652e-08,-3.128084986873836058e-08,-3.235949986421209464e-08,-3.343814985968582870e-08,-3.451679985515956277e-08,-3.559544985063329683e-08,-3.667409984610703089e-08,-3.775274984158076495e-08,-3.883139983705449901e-08,-3.991004983252823307e-08,-4.098869982800196714e-08,-4.206734982347570120e-08,-4.314599981894943526e-08,-4.422464981442316932e-08,-4.530329980989690338e-08,-4.638194980537063744e-08,-4.746059980084437151e-08,-4.853924979631810557e-08,-4.961789979179183963e-08,-5.069654978726557369e-08,-5.177519978273930775e-08,-5.285384977821304181e-08,-5.393249977368677588e-08,-5.501114976916050994e-08,-5.608979976463424400e-08,-5.716844976010797806e-08,-5.824709975558171212e-08,-5.932574975105544618e-08,-6.040439974652918686e-08,-6.148304974200292754e-08,-6.256169973747666822e-08,-6.364034973295040890e-08,-6.471899972842414958e-08,-6.579764972389789026e-08,-6.687629971937163094e-08,-6.795494971484537162e-08 +0.000000000000000000e+00,-9.781588457199914314e-10,-1.956317691439982863e-09,-2.934476537159974501e-09,-3.912635382879966553e-09,-4.890794228599958605e-09,-5.868953074319950657e-09,-6.847111920039942708e-09,-7.825270765759934760e-09,-8.803429611479927639e-09,-9.781588457199920518e-09,-1.075974730291991340e-08,-1.173790614863990628e-08,-1.271606499435989916e-08,-1.369422384007989203e-08,-1.467238268579988491e-08,-1.565054153151987945e-08,-1.662870037723987398e-08,-1.760685922295986851e-08,-1.858501806867986305e-08,-1.956317691439985758e-08,-2.054133576011985211e-08,-2.151949460583984665e-08,-2.249765345155984118e-08,-2.347581229727983571e-08,-2.445397114299983025e-08,-2.543212998871982478e-08,-2.641028883443981931e-08,-2.738844768015981385e-08,-2.836660652587980838e-08,-2.934476537159980291e-08,-3.032292421731979745e-08,-3.130108306303979198e-08,-3.227924190875978651e-08,-3.325740075447978105e-08,-3.423555960019977558e-08,-3.521371844591977011e-08,-3.619187729163976465e-08,-3.717003613735975918e-08,-3.814819498307975371e-08,-3.912635382879974825e-08,-4.010451267451974278e-08,-4.108267152023973731e-08,-4.206083036595973185e-08,-4.303898921167972638e-08,-4.401714805739972091e-08,-4.499530690311971545e-08,-4.597346574883970998e-08,-4.695162459455970451e-08,-4.792978344027969905e-08,-4.890794228599969358e-08,-4.988610113171968811e-08,-5.086425997743968265e-08,-5.184241882315967718e-08,-5.282057766887967171e-08,-5.379873651459966625e-08,-5.477689536031966078e-08,-5.575505420603965531e-08,-5.673321305175964985e-08,-5.771137189747964438e-08,-5.868953074319963891e-08,-5.966768958891962683e-08,-6.064584843463960813e-08,-6.162400728035958943e-08 +0.000000000000000000e+00,-4.624719510211798582e-10,-9.249439020423597164e-10,-1.387415853063539575e-09,-1.849887804084719433e-09,-2.312359755105899291e-09,-2.774831706127079149e-09,-3.237303657148259007e-09,-3.699775608169438866e-09,-4.162247559190618310e-09,-4.624719510211797755e-09,-5.087191461232977199e-09,-5.549663412254156644e-09,-6.012135363275336089e-09,-6.474607314296515533e-09,-6.937079265317694978e-09,-7.399551216338874422e-09,-7.862023167360053867e-09,-8.324495118381233312e-09,-8.786967069402412756e-09,-9.249439020423592201e-09,-9.711910971444771645e-09,-1.017438292246595109e-08,-1.063685487348713053e-08,-1.109932682450830998e-08,-1.156179877552948942e-08,-1.202427072655066887e-08,-1.248674267757184831e-08,-1.294921462859302776e-08,-1.341168657961420720e-08,-1.387415853063538665e-08,-1.433663048165656609e-08,-1.479910243267774554e-08,-1.526157438369892498e-08,-1.572404633472010443e-08,-1.618651828574128387e-08,-1.664899023676246331e-08,-1.711146218778364276e-08,-1.757393413880482220e-08,-1.803640608982600165e-08,-1.849887804084718109e-08,-1.896134999186836054e-08,-1.942382194288953998e-08,-1.988629389391071943e-08,-2.034876584493189887e-08,-2.081123779595307832e-08,-2.127370974697425776e-08,-2.173618169799543721e-08,-2.219865364901661665e-08,-2.266112560003779609e-08,-2.312359755105897554e-08,-2.358606950208015498e-08,-2.404854145310133443e-08,-2.451101340412251387e-08,-2.497348535514369332e-08,-2.543595730616487276e-08,-2.589842925718605221e-08,-2.636090120820723165e-08,-2.682337315922841110e-08,-2.728584511024959054e-08,-2.774831706127076999e-08,-2.821078901229194943e-08,-2.867326096331312887e-08,-2.913573291433430832e-08 +0.000000000000000000e+00,-1.238862490240530193e-09,-2.477724980481060385e-09,-3.716587470721590578e-09,-4.955449960962120770e-09,-6.194312451202651376e-09,-7.433174941443181983e-09,-8.672037431683712589e-09,-9.910899921924243195e-09,-1.114976241216477380e-08,-1.238862490240530441e-08,-1.362748739264583501e-08,-1.486634988288636562e-08,-1.610521237312689623e-08,-1.734407486336742518e-08,-1.858293735360795413e-08,-1.982179984384848308e-08,-2.106066233408901203e-08,-2.229952482432954098e-08,-2.353838731457006994e-08,-2.477724980481059889e-08,-2.601611229505112784e-08,-2.725497478529165679e-08,-2.849383727553218574e-08,-2.973269976577271470e-08,-3.097156225601324034e-08,-3.221042474625376598e-08,-3.344928723649429162e-08,-3.468814972673481727e-08,-3.592701221697534291e-08,-3.716587470721586855e-08,-3.840473719745639420e-08,-3.964359968769691984e-08,-4.088246217793744548e-08,-4.212132466817797113e-08,-4.336018715841849677e-08,-4.459904964865902241e-08,-4.583791213889954806e-08,-4.707677462914007370e-08,-4.831563711938059934e-08,-4.955449960962112498e-08,-5.079336209986165063e-08,-5.203222459010217627e-08,-5.327108708034270191e-08,-5.450994957058322756e-08,-5.574881206082375320e-08,-5.698767455106427884e-08,-5.822653704130480449e-08,-5.946539953154533013e-08,-6.070426202178585577e-08,-6.194312451202637480e-08,-6.318198700226689382e-08,-6.442084949250741285e-08,-6.565971198274793188e-08,-6.689857447298845090e-08,-6.813743696322896993e-08,-6.937629945346948895e-08,-7.061516194371000798e-08,-7.185402443395052700e-08,-7.309288692419104603e-08,-7.433174941443156505e-08,-7.557061190467208408e-08,-7.680947439491260311e-08,-7.804833688515312213e-08 +0.000000000000000000e+00,-1.167075071083909378e-09,-2.334150142167818756e-09,-3.501225213251727927e-09,-4.668300284335636684e-09,-5.835375355419545441e-09,-7.002450426503454199e-09,-8.169525497587362956e-09,-9.336600568671271713e-09,-1.050367563975518047e-08,-1.167075071083908923e-08,-1.283782578192299799e-08,-1.400490085300690674e-08,-1.517197592409081715e-08,-1.633905099517472922e-08,-1.750612606625864129e-08,-1.867320113734255335e-08,-1.984027620842646542e-08,-2.100735127951037749e-08,-2.217442635059428955e-08,-2.334150142167820162e-08,-2.450857649276211368e-08,-2.567565156384602575e-08,-2.684272663492993782e-08,-2.800980170601384988e-08,-2.917687677709776195e-08,-3.034395184818167401e-08,-3.151102691926558608e-08,-3.267810199034949815e-08,-3.384517706143341021e-08,-3.501225213251732228e-08,-3.617932720360123434e-08,-3.734640227468514641e-08,-3.851347734576905848e-08,-3.968055241685297054e-08,-4.084762748793688261e-08,-4.201470255902079468e-08,-4.318177763010470674e-08,-4.434885270118861881e-08,-4.551592777227253087e-08,-4.668300284335644294e-08,-4.785007791444035501e-08,-4.901715298552426707e-08,-5.018422805660817914e-08,-5.135130312769209120e-08,-5.251837819877600327e-08,-5.368545326985991534e-08,-5.485252834094382740e-08,-5.601960341202773947e-08,-5.718667848311165153e-08,-5.835375355419556360e-08,-5.952082862527947567e-08,-6.068790369636338773e-08,-6.185497876744729980e-08,-6.302205383853121186e-08,-6.418912890961512393e-08,-6.535620398069903600e-08,-6.652327905178294806e-08,-6.769035412286686013e-08,-6.885742919395077220e-08,-7.002450426503468426e-08,-7.119157933611859633e-08,-7.235865440720250839e-08,-7.352572947828642046e-08 +0.000000000000000000e+00,-5.421375844167583072e-10,-1.084275168833516614e-09,-1.626412753250274922e-09,-2.168550337667033229e-09,-2.710687922083791743e-09,-3.252825506500550257e-09,-3.794963090917308771e-09,-4.337100675334067285e-09,-4.879238259750825799e-09,-5.421375844167584313e-09,-5.963513428584342827e-09,-6.505651013001101341e-09,-7.047788597417859855e-09,-7.589926181834617542e-09,-8.132063766251375229e-09,-8.674201350668132916e-09,-9.216338935084890603e-09,-9.758476519501648290e-09,-1.030061410391840598e-08,-1.084275168833516366e-08,-1.138488927275192135e-08,-1.192702685716867904e-08,-1.246916444158543672e-08,-1.301130202600219441e-08,-1.355343961041895210e-08,-1.409557719483570978e-08,-1.463771477925246747e-08,-1.517985236366922516e-08,-1.572198994808598285e-08,-1.626412753250274053e-08,-1.680626511691949822e-08,-1.734840270133625591e-08,-1.789054028575301359e-08,-1.843267787016977128e-08,-1.897481545458652897e-08,-1.951695303900328665e-08,-2.005909062342004434e-08,-2.060122820783680203e-08,-2.114336579225355971e-08,-2.168550337667031740e-08,-2.222764096108707509e-08,-2.276977854550383277e-08,-2.331191612992059046e-08,-2.385405371433734815e-08,-2.439619129875410583e-08,-2.493832888317086352e-08,-2.548046646758762121e-08,-2.602260405200437890e-08,-2.656474163642113658e-08,-2.710687922083789427e-08,-2.764901680525465196e-08,-2.819115438967140964e-08,-2.873329197408816733e-08,-2.927542955850492502e-08,-2.981756714292168270e-08,-3.035970472733844370e-08,-3.090184231175520469e-08,-3.144397989617196569e-08,-3.198611748058872669e-08,-3.252825506500548768e-08,-3.307039264942224868e-08,-3.361253023383900967e-08,-3.415466781825577067e-08 +0.000000000000000000e+00,-1.238862490236650095e-09,-2.477724980473300190e-09,-3.716587470709950079e-09,-4.955449960946599553e-09,-6.194312451183249028e-09,-7.433174941419898503e-09,-8.672037431656547977e-09,-9.910899921893197452e-09,-1.114976241212984693e-08,-1.238862490236649640e-08,-1.362748739260314588e-08,-1.486634988283979535e-08,-1.610521237307644483e-08,-1.734407486331309595e-08,-1.858293735354974708e-08,-1.982179984378639821e-08,-2.106066233402304934e-08,-2.229952482425970047e-08,-2.353838731449635160e-08,-2.477724980473300273e-08,-2.601611229496965386e-08,-2.725497478520630499e-08,-2.849383727544295612e-08,-2.973269976567960725e-08,-3.097156225591625507e-08,-3.221042474615290289e-08,-3.344928723638955071e-08,-3.468814972662619853e-08,-3.592701221686284635e-08,-3.716587470709949417e-08,-3.840473719733614199e-08,-3.964359968757278981e-08,-4.088246217780943763e-08,-4.212132466804608545e-08,-4.336018715828273327e-08,-4.459904964851938109e-08,-4.583791213875602891e-08,-4.707677462899267673e-08,-4.831563711922932455e-08,-4.955449960946597237e-08,-5.079336209970262019e-08,-5.203222458993926801e-08,-5.327108708017591583e-08,-5.450994957041256365e-08,-5.574881206064921147e-08,-5.698767455088585929e-08,-5.822653704112250711e-08,-5.946539953135915493e-08,-6.070426202159580275e-08,-6.194312451183245719e-08,-6.318198700206911163e-08,-6.442084949230576607e-08,-6.565971198254242051e-08,-6.689857447277907494e-08,-6.813743696301572938e-08,-6.937629945325238382e-08,-7.061516194348903826e-08,-7.185402443372569270e-08,-7.309288692396234713e-08,-7.433174941419900157e-08,-7.557061190443565601e-08,-7.680947439467231045e-08,-7.804833688490896488e-08 +0.000000000000000000e+00,-1.167075071079490372e-09,-2.334150142158980744e-09,-3.501225213238471116e-09,-4.668300284317961489e-09,-5.835375355397451447e-09,-7.002450426476941406e-09,-8.169525497556431364e-09,-9.336600568635921323e-09,-1.050367563971541128e-08,-1.167075071079490124e-08,-1.283782578187439120e-08,-1.400490085295388116e-08,-1.517197592403337112e-08,-1.633905099511286273e-08,-1.750612606619235434e-08,-1.867320113727184595e-08,-1.984027620835133757e-08,-2.100735127943082918e-08,-2.217442635051032079e-08,-2.334150142158981241e-08,-2.450857649266930402e-08,-2.567565156374879563e-08,-2.684272663482828724e-08,-2.800980170590777886e-08,-2.917687677698727047e-08,-3.034395184806676208e-08,-3.151102691914625370e-08,-3.267810199022574531e-08,-3.384517706130523692e-08,-3.501225213238472854e-08,-3.617932720346422015e-08,-3.734640227454371176e-08,-3.851347734562320337e-08,-3.968055241670269499e-08,-4.084762748778218660e-08,-4.201470255886167821e-08,-4.318177762994116983e-08,-4.434885270102066144e-08,-4.551592777210015305e-08,-4.668300284317964466e-08,-4.785007791425913628e-08,-4.901715298533862789e-08,-5.018422805641811950e-08,-5.135130312749761112e-08,-5.251837819857710273e-08,-5.368545326965659434e-08,-5.485252834073608595e-08,-5.601960341181557757e-08,-5.718667848289506918e-08,-5.835375355397456079e-08,-5.952082862505405241e-08,-6.068790369613353740e-08,-6.185497876721302901e-08,-6.302205383829252063e-08,-6.418912890937201224e-08,-6.535620398045150385e-08,-6.652327905153099547e-08,-6.769035412261048708e-08,-6.885742919368997869e-08,-7.002450426476947030e-08,-7.119157933584896192e-08,-7.235865440692845353e-08,-7.352572947800794514e-08 +0.000000000000000000e+00,-5.421375844124786816e-10,-1.084275168824957363e-09,-1.626412753237436045e-09,-2.168550337649914726e-09,-2.710687922062393408e-09,-3.252825506474872089e-09,-3.794963090887350771e-09,-4.337100675299829452e-09,-4.879238259712308134e-09,-5.421375844124786816e-09,-5.963513428537265497e-09,-6.505651012949744179e-09,-7.047788597362222860e-09,-7.589926181774701542e-09,-8.132063766187179396e-09,-8.674201350599657250e-09,-9.216338935012135105e-09,-9.758476519424612959e-09,-1.030061410383709081e-08,-1.084275168824956867e-08,-1.138488927266204652e-08,-1.192702685707452438e-08,-1.246916444148700223e-08,-1.301130202589948009e-08,-1.355343961031195794e-08,-1.409557719472443579e-08,-1.463771477913691365e-08,-1.517985236354939316e-08,-1.572198994796187267e-08,-1.626412753237435217e-08,-1.680626511678683168e-08,-1.734840270119931119e-08,-1.789054028561179070e-08,-1.843267787002427021e-08,-1.897481545443674972e-08,-1.951695303884922923e-08,-2.005909062326170874e-08,-2.060122820767418824e-08,-2.114336579208666775e-08,-2.168550337649914726e-08,-2.222764096091162677e-08,-2.276977854532410628e-08,-2.331191612973658579e-08,-2.385405371414906530e-08,-2.439619129856154481e-08,-2.493832888297402431e-08,-2.548046646738650382e-08,-2.602260405179898333e-08,-2.656474163621146284e-08,-2.710687922062394235e-08,-2.764901680503642186e-08,-2.819115438944890137e-08,-2.873329197386138088e-08,-2.927542955827386038e-08,-2.981756714268633989e-08,-3.035970472709881940e-08,-3.090184231151129891e-08,-3.144397989592377842e-08,-3.198611748033625793e-08,-3.252825506474873744e-08,-3.307039264916121695e-08,-3.361253023357369645e-08,-3.415466781798617596e-08 +0.000000000000000000e+00,-1.319718143721511275e-09,-2.639436287443022551e-09,-3.959154431164533826e-09,-5.278872574886045101e-09,-6.598590718607556377e-09,-7.918308862329067652e-09,-9.238027006050579755e-09,-1.055774514977209186e-08,-1.187746329349360396e-08,-1.319718143721511606e-08,-1.451689958093662816e-08,-1.583661772465813861e-08,-1.715633586837964906e-08,-1.847605401210115951e-08,-1.979577215582266996e-08,-2.111549029954418041e-08,-2.243520844326569085e-08,-2.375492658698720130e-08,-2.507464473070871175e-08,-2.639436287443022220e-08,-2.771408101815173265e-08,-2.903379916187324309e-08,-3.035351730559475354e-08,-3.167323544931626399e-08,-3.299295359303777444e-08,-3.431267173675928489e-08,-3.563238988048079534e-08,-3.695210802420230578e-08,-3.827182616792381623e-08,-3.959154431164532668e-08,-4.091126245536683713e-08,-4.223098059908834758e-08,-4.355069874280985802e-08,-4.487041688653136847e-08,-4.619013503025287892e-08,-4.750985317397438937e-08,-4.882957131769589982e-08,-5.014928946141741027e-08,-5.146900760513892071e-08,-5.278872574886043116e-08,-5.410844389258194161e-08,-5.542816203630345206e-08,-5.674788018002496251e-08,-5.806759832374647295e-08,-5.938731646746798340e-08,-6.070703461118949385e-08,-6.202675275491099768e-08,-6.334647089863250151e-08,-6.466618904235400534e-08,-6.598590718607550917e-08,-6.730562532979701300e-08,-6.862534347351851684e-08,-6.994506161724002067e-08,-7.126477976096152450e-08,-7.258449790468302833e-08,-7.390421604840453216e-08,-7.522393419212603599e-08,-7.654365233584753982e-08,-7.786337047956904365e-08,-7.918308862329054748e-08,-8.050280676701205131e-08,-8.182252491073355514e-08,-8.314224305445505897e-08 +0.000000000000000000e+00,-1.290561891559645819e-09,-2.581123783119291639e-09,-3.871685674678937458e-09,-5.162247566238583278e-09,-6.452809457798229097e-09,-7.743371349357874917e-09,-9.033933240917519909e-09,-1.032449513247716490e-08,-1.161505702403680989e-08,-1.290561891559645489e-08,-1.419618080715609988e-08,-1.548674269871574653e-08,-1.677730459027539317e-08,-1.806786648183503982e-08,-1.935842837339468647e-08,-2.064899026495433311e-08,-2.193955215651397976e-08,-2.323011404807362641e-08,-2.452067593963327305e-08,-2.581123783119291970e-08,-2.710179972275256635e-08,-2.839236161431221299e-08,-2.968292350587185964e-08,-3.097348539743150629e-08,-3.226404728899115293e-08,-3.355460918055079958e-08,-3.484517107211044623e-08,-3.613573296367009287e-08,-3.742629485522973952e-08,-3.871685674678938617e-08,-4.000741863834903281e-08,-4.129798052990867946e-08,-4.258854242146832611e-08,-4.387910431302797275e-08,-4.516966620458761940e-08,-4.646022809614726605e-08,-4.775078998770691269e-08,-4.904135187926655934e-08,-5.033191377082620599e-08,-5.162247566238585263e-08,-5.291303755394549928e-08,-5.420359944550514593e-08,-5.549416133706479257e-08,-5.678472322862443922e-08,-5.807528512018408587e-08,-5.936584701174373251e-08,-6.065640890330337916e-08,-6.194697079486302581e-08,-6.323753268642267245e-08,-6.452809457798231910e-08,-6.581865646954196575e-08,-6.710921836110161239e-08,-6.839978025266125904e-08,-6.969034214422090569e-08,-7.098090403578055233e-08,-7.227146592734019898e-08,-7.356202781889984563e-08,-7.485258971045949227e-08,-7.614315160201913892e-08,-7.743371349357878557e-08,-7.872427538513843221e-08,-8.001483727669807886e-08,-8.130539916825772551e-08 +0.000000000000000000e+00,-5.825122639397155955e-10,-1.165024527879431191e-09,-1.747536791819146683e-09,-2.330049055758861969e-09,-2.912561319698577254e-09,-3.495073583638292539e-09,-4.077585847578008238e-09,-4.660098111517723937e-09,-5.242610375457439636e-09,-5.825122639397155335e-09,-6.407634903336871034e-09,-6.990147167276586733e-09,-7.572659431216302432e-09,-8.155171695156018131e-09,-8.737683959095733830e-09,-9.320196223035449529e-09,-9.902708486975165227e-09,-1.048522075091488093e-08,-1.106773301485459663e-08,-1.165024527879431232e-08,-1.223275754273402802e-08,-1.281526980667374372e-08,-1.339778207061345942e-08,-1.398029433455317512e-08,-1.456280659849289082e-08,-1.514531886243260486e-08,-1.572783112637231891e-08,-1.631034339031203295e-08,-1.689285565425174700e-08,-1.747536791819146104e-08,-1.805788018213117509e-08,-1.864039244607088913e-08,-1.922290471001060318e-08,-1.980541697395031722e-08,-2.038792923789003126e-08,-2.097044150182974531e-08,-2.155295376576945935e-08,-2.213546602970917340e-08,-2.271797829364888744e-08,-2.330049055758860149e-08,-2.388300282152831553e-08,-2.446551508546802958e-08,-2.504802734940774362e-08,-2.563053961334745767e-08,-2.621305187728717171e-08,-2.679556414122688575e-08,-2.737807640516659980e-08,-2.796058866910631384e-08,-2.854310093304602789e-08,-2.912561319698574193e-08,-2.970812546092545598e-08,-3.029063772486517002e-08,-3.087314998880488738e-08,-3.145566225274460473e-08,-3.203817451668432208e-08,-3.262068678062403944e-08,-3.320319904456375679e-08,-3.378571130850347414e-08,-3.436822357244319150e-08,-3.495073583638290885e-08,-3.553324810032262620e-08,-3.611576036426234356e-08,-3.669827262820206091e-08 +0.000000000000000000e+00,-1.319718143718737532e-09,-2.639436287437475064e-09,-3.959154431156212389e-09,-5.278872574874949301e-09,-6.598590718593686212e-09,-7.918308862312423124e-09,-9.238027006031160863e-09,-1.055774514974989860e-08,-1.187746329346863634e-08,-1.319718143718737408e-08,-1.451689958090611182e-08,-1.583661772462484956e-08,-1.715633586834358730e-08,-1.847605401206232503e-08,-1.979577215578106277e-08,-2.111549029949980051e-08,-2.243520844321853825e-08,-2.375492658693727599e-08,-2.507464473065601373e-08,-2.639436287437475147e-08,-2.771408101809348921e-08,-2.903379916181222694e-08,-3.035351730553096799e-08,-3.167323544924970573e-08,-3.299295359296844347e-08,-3.431267173668718121e-08,-3.563238988040591895e-08,-3.695210802412465669e-08,-3.827182616784339442e-08,-3.959154431156213216e-08,-4.091126245528086990e-08,-4.223098059899960764e-08,-4.355069874271834538e-08,-4.487041688643708312e-08,-4.619013503015582086e-08,-4.750985317387455860e-08,-4.882957131759329633e-08,-5.014928946131203407e-08,-5.146900760503077181e-08,-5.278872574874950955e-08,-5.410844389246824729e-08,-5.542816203618698503e-08,-5.674788017990572277e-08,-5.806759832362446051e-08,-5.938731646734319824e-08,-6.070703461106193598e-08,-6.202675275478067372e-08,-6.334647089849941146e-08,-6.466618904221814920e-08,-6.598590718593688694e-08,-6.730562532965562468e-08,-6.862534347337436242e-08,-6.994506161709310015e-08,-7.126477976081183789e-08,-7.258449790453057563e-08,-7.390421604824931337e-08,-7.522393419196805111e-08,-7.654365233568678885e-08,-7.786337047940552659e-08,-7.918308862312426433e-08,-8.050280676684300206e-08,-8.182252491056173980e-08,-8.314224305428047754e-08 +0.000000000000000000e+00,-1.290561891556334822e-09,-2.581123783112669645e-09,-3.871685674669004674e-09,-5.162247566225340116e-09,-6.452809457781675559e-09,-7.743371349338011002e-09,-9.033933240894345617e-09,-1.032449513245068023e-08,-1.161505702400701485e-08,-1.290561891556334946e-08,-1.419618080711968408e-08,-1.548674269867601869e-08,-1.677730459023235331e-08,-1.806786648178868793e-08,-1.935842837334502254e-08,-2.064899026490135716e-08,-2.193955215645769177e-08,-2.323011404801402639e-08,-2.452067593957036100e-08,-2.581123783112669562e-08,-2.710179972268303023e-08,-2.839236161423936485e-08,-2.968292350579569947e-08,-3.097348539735203077e-08,-3.226404728890836208e-08,-3.355460918046469339e-08,-3.484517107202102469e-08,-3.613573296357735600e-08,-3.742629485513368731e-08,-3.871685674669001861e-08,-4.000741863824634992e-08,-4.129798052980268123e-08,-4.258854242135901253e-08,-4.387910431291534384e-08,-4.516966620447167515e-08,-4.646022809602800645e-08,-4.775078998758433776e-08,-4.904135187914066907e-08,-5.033191377069700037e-08,-5.162247566225333168e-08,-5.291303755380966299e-08,-5.420359944536599429e-08,-5.549416133692232560e-08,-5.678472322847865691e-08,-5.807528512003498821e-08,-5.936584701159131952e-08,-6.065640890314764421e-08,-6.194697079470396890e-08,-6.323753268626029359e-08,-6.452809457781661828e-08,-6.581865646937294297e-08,-6.710921836092926766e-08,-6.839978025248559235e-08,-6.969034214404191704e-08,-7.098090403559824173e-08,-7.227146592715456641e-08,-7.356202781871089110e-08,-7.485258971026721579e-08,-7.614315160182354048e-08,-7.743371349337986517e-08,-7.872427538493618986e-08,-8.001483727649251455e-08,-8.130539916804883924e-08 +0.000000000000000000e+00,-5.825122639365345691e-10,-1.165024527873069138e-09,-1.747536791809603707e-09,-2.330049055746138276e-09,-2.912561319682672639e-09,-3.495073583619207001e-09,-4.077585847555741363e-09,-4.660098111492275726e-09,-5.242610375428810088e-09,-5.825122639365344450e-09,-6.407634903301878812e-09,-6.990147167238413175e-09,-7.572659431174946710e-09,-8.155171695111481072e-09,-8.737683959048015434e-09,-9.320196222984549797e-09,-9.902708486921084159e-09,-1.048522075085761852e-08,-1.106773301479415288e-08,-1.165024527873068725e-08,-1.223275754266722161e-08,-1.281526980660375597e-08,-1.339778207054029033e-08,-1.398029433447682470e-08,-1.456280659841335906e-08,-1.514531886234989342e-08,-1.572783112628642778e-08,-1.631034339022296214e-08,-1.689285565415949651e-08,-1.747536791809603087e-08,-1.805788018203256523e-08,-1.864039244596909959e-08,-1.922290470990563396e-08,-1.980541697384216832e-08,-2.038792923777870268e-08,-2.097044150171523704e-08,-2.155295376565177140e-08,-2.213546602958830577e-08,-2.271797829352484013e-08,-2.330049055746137449e-08,-2.388300282139790885e-08,-2.446551508533444322e-08,-2.504802734927097758e-08,-2.563053961320751194e-08,-2.621305187714404630e-08,-2.679556414108058067e-08,-2.737807640501711503e-08,-2.796058866895364939e-08,-2.854310093289018375e-08,-2.912561319682671811e-08,-2.970812546076325248e-08,-3.029063772469978684e-08,-3.087314998863632120e-08,-3.145566225257285556e-08,-3.203817451650938993e-08,-3.262068678044592429e-08,-3.320319904438245865e-08,-3.378571130831899301e-08,-3.436822357225552738e-08,-3.495073583619206174e-08,-3.553324810012859610e-08,-3.611576036406513046e-08,-3.669827262800166482e-08 +0.000000000000000000e+00,-1.306033275107763329e-09,-2.612066550215526658e-09,-3.918099825323290194e-09,-5.224133100431054144e-09,-6.530166375538818093e-09,-7.836199650646582043e-09,-9.142232925754345993e-09,-1.044826620086210994e-08,-1.175429947596987389e-08,-1.306033275107763784e-08,-1.436636602618540179e-08,-1.567239930129316739e-08,-1.697843257640093134e-08,-1.828446585150869529e-08,-1.959049912661645924e-08,-2.089653240172422319e-08,-2.220256567683198714e-08,-2.350859895193975109e-08,-2.481463222704751504e-08,-2.612066550215527899e-08,-2.742669877726304294e-08,-2.873273205237080689e-08,-3.003876532747857084e-08,-3.134479860258633479e-08,-3.265083187769409874e-08,-3.395686515280186269e-08,-3.526289842790962664e-08,-3.656893170301739059e-08,-3.787496497812515454e-08,-3.918099825323291849e-08,-4.048703152834068244e-08,-4.179306480344844639e-08,-4.309909807855621034e-08,-4.440513135366397429e-08,-4.571116462877173823e-08,-4.701719790387950218e-08,-4.832323117898726613e-08,-4.962926445409503008e-08,-5.093529772920279403e-08,-5.224133100431055798e-08,-5.354736427941832193e-08,-5.485339755452608588e-08,-5.615943082963384983e-08,-5.746546410474161378e-08,-5.877149737984937773e-08,-6.007753065495714168e-08,-6.138356393006490563e-08,-6.268959720517266958e-08,-6.399563048028043353e-08,-6.530166375538819748e-08,-6.660769703049596143e-08,-6.791373030560372538e-08,-6.921976358071148933e-08,-7.052579685581925328e-08,-7.183183013092701723e-08,-7.313786340603478118e-08,-7.444389668114254512e-08,-7.574992995625030907e-08,-7.705596323135807302e-08,-7.836199650646583697e-08,-7.966802978157360092e-08,-8.097406305668136487e-08,-8.228009633178912882e-08 +0.000000000000000000e+00,-1.325318240852091309e-09,-2.650636481704182618e-09,-3.975954722556273927e-09,-5.301272963408365235e-09,-6.626591204260456544e-09,-7.951909445112547853e-09,-9.277227685964639989e-09,-1.060254592681673213e-08,-1.192786416766882426e-08,-1.325318240852091640e-08,-1.457850064937300853e-08,-1.590381889022509901e-08,-1.722913713107718950e-08,-1.855445537192927998e-08,-1.987977361278137046e-08,-2.120509185363346094e-08,-2.253041009448555142e-08,-2.385572833533764190e-08,-2.518104657618973239e-08,-2.650636481704182287e-08,-2.783168305789391335e-08,-2.915700129874600383e-08,-3.048231953959809100e-08,-3.180763778045017818e-08,-3.313295602130226535e-08,-3.445827426215435252e-08,-3.578359250300643970e-08,-3.710891074385852687e-08,-3.843422898471061404e-08,-3.975954722556270121e-08,-4.108486546641478839e-08,-4.241018370726687556e-08,-4.373550194811896273e-08,-4.506082018897104991e-08,-4.638613842982313708e-08,-4.771145667067522425e-08,-4.903677491152731143e-08,-5.036209315237939860e-08,-5.168741139323148577e-08,-5.301272963408357294e-08,-5.433804787493566012e-08,-5.566336611578774729e-08,-5.698868435663983446e-08,-5.831400259749192164e-08,-5.963932083834400881e-08,-6.096463907919610260e-08,-6.228995732004819639e-08,-6.361527556090029018e-08,-6.494059380175238397e-08,-6.626591204260447776e-08,-6.759123028345657155e-08,-6.891654852430866534e-08,-7.024186676516075913e-08,-7.156718500601285292e-08,-7.289250324686494671e-08,-7.421782148771704050e-08,-7.554313972856913429e-08,-7.686845796942122808e-08,-7.819377621027332187e-08,-7.951909445112541566e-08,-8.084441269197750946e-08,-8.216973093282960325e-08,-8.349504917368169704e-08 +0.000000000000000000e+00,-5.751355146676825861e-10,-1.150271029335365172e-09,-1.725406544003047758e-09,-2.300542058670730345e-09,-2.875677573338413137e-09,-3.450813088006095930e-09,-4.025948602673778723e-09,-4.601084117341461516e-09,-5.176219632009144309e-09,-5.751355146676827102e-09,-6.326490661344509895e-09,-6.901626176012192688e-09,-7.476761690679874654e-09,-8.051897205347555792e-09,-8.627032720015236931e-09,-9.202168234682918069e-09,-9.777303749350599208e-09,-1.035243926401828035e-08,-1.092757477868596149e-08,-1.150271029335364262e-08,-1.207784580802132376e-08,-1.265298132268900490e-08,-1.322811683735668604e-08,-1.380325235202436718e-08,-1.437838786669204832e-08,-1.495352338135972946e-08,-1.552865889602741059e-08,-1.610379441069509173e-08,-1.667892992536277287e-08,-1.725406544003045401e-08,-1.782920095469813515e-08,-1.840433646936581629e-08,-1.897947198403349743e-08,-1.955460749870117856e-08,-2.012974301336885970e-08,-2.070487852803654084e-08,-2.128001404270422198e-08,-2.185514955737190312e-08,-2.243028507203958426e-08,-2.300542058670726540e-08,-2.358055610137494653e-08,-2.415569161604262767e-08,-2.473082713071030881e-08,-2.530596264537798995e-08,-2.588109816004567109e-08,-2.645623367471335223e-08,-2.703136918938103337e-08,-2.760650470404871450e-08,-2.818164021871639564e-08,-2.875677573338407678e-08,-2.933191124805175792e-08,-2.990704676271943906e-08,-3.048218227738712351e-08,-3.105731779205480795e-08,-3.163245330672249240e-08,-3.220758882139017685e-08,-3.278272433605786129e-08,-3.335785985072554574e-08,-3.393299536539323019e-08,-3.450813088006091464e-08,-3.508326639472859908e-08,-3.565840190939628353e-08,-3.623353742406396798e-08 +0.000000000000000000e+00,-1.306033275105878598e-09,-2.612066550211757196e-09,-3.918099825317635588e-09,-5.224133100423513565e-09,-6.530166375529391543e-09,-7.836199650635269521e-09,-9.142232925741147499e-09,-1.044826620084702548e-08,-1.175429947595290345e-08,-1.306033275105878143e-08,-1.436636602616465941e-08,-1.567239930127053573e-08,-1.697843257637641371e-08,-1.828446585148229169e-08,-1.959049912658816967e-08,-2.089653240169404764e-08,-2.220256567679992562e-08,-2.350859895190580360e-08,-2.481463222701168158e-08,-2.612066550211755956e-08,-2.742669877722343753e-08,-2.873273205232931551e-08,-3.003876532743519349e-08,-3.134479860254107147e-08,-3.265083187764694944e-08,-3.395686515275282742e-08,-3.526289842785870540e-08,-3.656893170296458338e-08,-3.787496497807046136e-08,-3.918099825317633933e-08,-4.048703152828221731e-08,-4.179306480338809529e-08,-4.309909807849397327e-08,-4.440513135359985124e-08,-4.571116462870572922e-08,-4.701719790381160720e-08,-4.832323117891748518e-08,-4.962926445402336316e-08,-5.093529772912924113e-08,-5.224133100423511911e-08,-5.354736427934099709e-08,-5.485339755444687507e-08,-5.615943082955275304e-08,-5.746546410465863102e-08,-5.877149737976450900e-08,-6.007753065487038698e-08,-6.138356392997625834e-08,-6.268959720508212970e-08,-6.399563048018800106e-08,-6.530166375529387242e-08,-6.660769703039974378e-08,-6.791373030550561514e-08,-6.921976358061148650e-08,-7.052579685571735786e-08,-7.183183013082322922e-08,-7.313786340592910058e-08,-7.444389668103497194e-08,-7.574992995614084330e-08,-7.705596323124671466e-08,-7.836199650635258602e-08,-7.966802978145845738e-08,-8.097406305656432874e-08,-8.228009633167020010e-08 +0.000000000000000000e+00,-1.325318240849798571e-09,-2.650636481699597142e-09,-3.975954722549395920e-09,-5.301272963399195111e-09,-6.626591204248994302e-09,-7.951909445098793494e-09,-9.277227685948592685e-09,-1.060254592679839188e-08,-1.192786416764819107e-08,-1.325318240849799026e-08,-1.457850064934778945e-08,-1.590381889019759030e-08,-1.722913713104739114e-08,-1.855445537189719199e-08,-1.987977361274699283e-08,-2.120509185359679368e-08,-2.253041009444659452e-08,-2.385572833529639537e-08,-2.518104657614619622e-08,-2.650636481699599706e-08,-2.783168305784579791e-08,-2.915700129869559875e-08,-3.048231953954540291e-08,-3.180763778039520706e-08,-3.313295602124501122e-08,-3.445827426209481537e-08,-3.578359250294461953e-08,-3.710891074379442368e-08,-3.843422898464422783e-08,-3.975954722549403199e-08,-4.108486546634383614e-08,-4.241018370719364030e-08,-4.373550194804344445e-08,-4.506082018889324861e-08,-4.638613842974305276e-08,-4.771145667059285692e-08,-4.903677491144266107e-08,-5.036209315229246522e-08,-5.168741139314226938e-08,-5.301272963399207353e-08,-5.433804787484187769e-08,-5.566336611569168184e-08,-5.698868435654148600e-08,-5.831400259739129015e-08,-5.963932083824109431e-08,-6.096463907909089846e-08,-6.228995731994070261e-08,-6.361527556079050677e-08,-6.494059380164031092e-08,-6.626591204249011508e-08,-6.759123028333991923e-08,-6.891654852418972339e-08,-7.024186676503952754e-08,-7.156718500588933170e-08,-7.289250324673913585e-08,-7.421782148758894000e-08,-7.554313972843874416e-08,-7.686845796928854831e-08,-7.819377621013835247e-08,-7.951909445098815662e-08,-8.084441269183796078e-08,-8.216973093268776493e-08,-8.349504917353756909e-08 +0.000000000000000000e+00,-5.751355146655153729e-10,-1.150271029331030746e-09,-1.725406543996546119e-09,-2.300542058662061492e-09,-2.875677573327577071e-09,-3.450813087993092651e-09,-4.025948602658608231e-09,-4.601084117324123811e-09,-5.176219631989639390e-09,-5.751355146655154970e-09,-6.326490661320670550e-09,-6.901626175986186130e-09,-7.476761690651700882e-09,-8.051897205317214807e-09,-8.627032719982728733e-09,-9.202168234648242658e-09,-9.777303749313756584e-09,-1.035243926397927051e-08,-1.092757477864478443e-08,-1.150271029331029836e-08,-1.207784580797581228e-08,-1.265298132264132621e-08,-1.322811683730684014e-08,-1.380325235197235406e-08,-1.437838786663786799e-08,-1.495352338130338191e-08,-1.552865889596889584e-08,-1.610379441063440976e-08,-1.667892992529992369e-08,-1.725406543996543761e-08,-1.782920095463095154e-08,-1.840433646929646546e-08,-1.897947198396197939e-08,-1.955460749862749331e-08,-2.012974301329300724e-08,-2.070487852795852117e-08,-2.128001404262403509e-08,-2.185514955728954902e-08,-2.243028507195506294e-08,-2.300542058662057687e-08,-2.358055610128609079e-08,-2.415569161595160472e-08,-2.473082713061711864e-08,-2.530596264528263257e-08,-2.588109815994814649e-08,-2.645623367461366042e-08,-2.703136918927917434e-08,-2.760650470394468827e-08,-2.818164021861020220e-08,-2.875677573327571612e-08,-2.933191124794123005e-08,-2.990704676260674397e-08,-3.048218227727225790e-08,-3.105731779193777182e-08,-3.163245330660328575e-08,-3.220758882126879967e-08,-3.278272433593431360e-08,-3.335785985059982752e-08,-3.393299536526534145e-08,-3.450813087993085537e-08,-3.508326639459636930e-08,-3.565840190926188322e-08,-3.623353742392739715e-08 +0.000000000000000000e+00,-1.261342729018296125e-09,-2.522685458036592251e-09,-3.784028187054888170e-09,-5.045370916073183675e-09,-6.306713645091479180e-09,-7.568056374109774685e-09,-8.829399103128070190e-09,-1.009074183214636569e-08,-1.135208456116466120e-08,-1.261342729018295670e-08,-1.387477001920125221e-08,-1.513611274821954606e-08,-1.639745547723783826e-08,-1.765879820625613045e-08,-1.892014093527442265e-08,-2.018148366429271485e-08,-2.144282639331100704e-08,-2.270416912232929924e-08,-2.396551185134759144e-08,-2.522685458036588363e-08,-2.648819730938417583e-08,-2.774954003840246802e-08,-2.901088276742076022e-08,-3.027222549643905242e-08,-3.153356822545734461e-08,-3.279491095447563681e-08,-3.405625368349392901e-08,-3.531759641251222120e-08,-3.657893914153051340e-08,-3.784028187054880559e-08,-3.910162459956709779e-08,-4.036296732858538999e-08,-4.162431005760368218e-08,-4.288565278662197438e-08,-4.414699551564026658e-08,-4.540833824465855877e-08,-4.666968097367685097e-08,-4.793102370269514317e-08,-4.919236643171343536e-08,-5.045370916073172756e-08,-5.171505188975001975e-08,-5.297639461876831195e-08,-5.423773734778660415e-08,-5.549908007680489634e-08,-5.676042280582318854e-08,-5.802176553484148074e-08,-5.928310826385977293e-08,-6.054445099287806513e-08,-6.180579372189635733e-08,-6.306713645091464952e-08,-6.432847917993294172e-08,-6.558982190895123391e-08,-6.685116463796952611e-08,-6.811250736698781831e-08,-6.937385009600611050e-08,-7.063519282502440270e-08,-7.189653555404269490e-08,-7.315787828306098709e-08,-7.441922101207927929e-08,-7.568056374109757149e-08,-7.694190647011586368e-08,-7.820324919913415588e-08,-7.946459192815244807e-08 +0.000000000000000000e+00,-1.261342729016806787e-09,-2.522685458033613574e-09,-3.784028187050420567e-09,-5.045370916067227974e-09,-6.306713645084035381e-09,-7.568056374100842788e-09,-8.829399103117649368e-09,-1.009074183213445595e-08,-1.135208456115126253e-08,-1.261342729016806911e-08,-1.387477001918487569e-08,-1.513611274820168227e-08,-1.639745547721848885e-08,-1.765879820623529543e-08,-1.892014093525210201e-08,-2.018148366426890859e-08,-2.144282639328571517e-08,-2.270416912230252175e-08,-2.396551185131932833e-08,-2.522685458033613491e-08,-2.648819730935294149e-08,-2.774954003836974807e-08,-2.901088276738655465e-08,-3.027222549640335792e-08,-3.153356822542016119e-08,-3.279491095443696446e-08,-3.405625368345376773e-08,-3.531759641247057100e-08,-3.657893914148737428e-08,-3.784028187050417755e-08,-3.910162459952098082e-08,-4.036296732853778409e-08,-4.162431005755458736e-08,-4.288565278657139063e-08,-4.414699551558819390e-08,-4.540833824460499717e-08,-4.666968097362180045e-08,-4.793102370263860372e-08,-4.919236643165540699e-08,-5.045370916067221026e-08,-5.171505188968901353e-08,-5.297639461870581680e-08,-5.423773734772262007e-08,-5.549908007673942334e-08,-5.676042280575622662e-08,-5.802176553477302989e-08,-5.928310826378983316e-08,-6.054445099280663643e-08,-6.180579372182343308e-08,-6.306713645084022974e-08,-6.432847917985702639e-08,-6.558982190887382304e-08,-6.685116463789061970e-08,-6.811250736690741635e-08,-6.937385009592421301e-08,-7.063519282494100966e-08,-7.189653555395780631e-08,-7.315787828297460297e-08,-7.441922101199139962e-08,-7.568056374100819627e-08,-7.694190647002499293e-08,-7.820324919904178958e-08,-7.946459192805858624e-08 +0.000000000000000000e+00,-2.414484179842340749e-09,-4.828968359684681499e-09,-7.243452539527021834e-09,-9.657936719369361343e-09,-1.207242089921170085e-08,-1.448690507905404036e-08,-1.690138925889637987e-08,-1.931587343873871938e-08,-2.173035761858105889e-08,-2.414484179842339839e-08,-2.655932597826573790e-08,-2.897381015810807741e-08,-3.138829433795042023e-08,-3.380277851779276635e-08,-3.621726269763511248e-08,-3.863174687747745861e-08,-4.104623105731980473e-08,-4.346071523716215086e-08,-4.587519941700449698e-08,-4.828968359684684311e-08,-5.070416777668918924e-08,-5.311865195653153536e-08,-5.553313613637388149e-08,-5.794762031621622761e-08,-6.036210449605857374e-08,-6.277658867590091987e-08,-6.519107285574326599e-08,-6.760555703558561212e-08,-7.002004121542795824e-08,-7.243452539527030437e-08,-7.484900957511265050e-08,-7.726349375495499662e-08,-7.967797793479734275e-08,-8.209246211463968887e-08,-8.450694629448203500e-08,-8.692143047432438113e-08,-8.933591465416672725e-08,-9.175039883400907338e-08,-9.416488301385141950e-08,-9.657936719369376563e-08,-9.899385137353611175e-08,-1.014083355533784579e-07,-1.038228197332208040e-07,-1.062373039130631501e-07,-1.086517880929054963e-07,-1.110662722727478424e-07,-1.134807564525901885e-07,-1.158952406324325346e-07,-1.183097248122748808e-07,-1.207242089921172269e-07,-1.231386931719595730e-07,-1.255531773518019191e-07,-1.279676615316442653e-07,-1.303821457114866114e-07,-1.327966298913289575e-07,-1.352111140711713036e-07,-1.376255982510136498e-07,-1.400400824308559959e-07,-1.424545666106983420e-07,-1.448690507905406881e-07,-1.472835349703830343e-07,-1.496980191502253804e-07,-1.521125033300677265e-07 +0.000000000000000000e+00,-5.756729679328202013e-09,-1.151345935865640403e-08,-1.727018903798460604e-08,-2.302691871731280805e-08,-2.878364839664101006e-08,-3.454037807596921208e-08,-4.029710775529741078e-08,-4.605383743462560949e-08,-5.181056711395380819e-08,-5.756729679328200689e-08,-6.332402647261020560e-08,-6.908075615193841092e-08,-7.483748583126661624e-08,-8.059421551059482156e-08,-8.635094518992302688e-08,-9.210767486925123221e-08,-9.786440454857943753e-08,-1.036211342279076428e-07,-1.093778639072358482e-07,-1.151345935865640535e-07,-1.208913232658922720e-07,-1.266480529452204906e-07,-1.324047826245487092e-07,-1.381615123038769277e-07,-1.439182419832051463e-07,-1.496749716625333648e-07,-1.554317013418615834e-07,-1.611884310211898019e-07,-1.669451607005180205e-07,-1.727018903798462391e-07,-1.784586200591744576e-07,-1.842153497385026762e-07,-1.899720794178308947e-07,-1.957288090971591133e-07,-2.014855387764873318e-07,-2.072422684558155504e-07,-2.129989981351437690e-07,-2.187557278144719875e-07,-2.245124574938002061e-07,-2.302691871731284246e-07,-2.360259168524566432e-07,-2.417826465317848617e-07,-2.475393762111130803e-07,-2.532961058904412988e-07,-2.590528355697695174e-07,-2.648095652490977360e-07,-2.705662949284259545e-07,-2.763230246077541731e-07,-2.820797542870823916e-07,-2.878364839664106102e-07,-2.935932136457388287e-07,-2.993499433250670473e-07,-3.051066730043952659e-07,-3.108634026837234844e-07,-3.166201323630517030e-07,-3.223768620423799215e-07,-3.281335917217081401e-07,-3.338903214010363586e-07,-3.396470510803645772e-07,-3.454037807596927958e-07,-3.511605104390210143e-07,-3.569172401183492329e-07,-3.626739697976774514e-07 +0.000000000000000000e+00,-5.935467635280742917e-09,-1.187093527056148583e-08,-1.780640290584222958e-08,-2.374187054112297498e-08,-2.967733817640372038e-08,-3.561280581168446577e-08,-4.154827344696521117e-08,-4.748374108224595657e-08,-5.341920871752670197e-08,-5.935467635280744737e-08,-6.529014398808819277e-08,-7.122561162336894478e-08,-7.716107925864969680e-08,-8.309654689393044881e-08,-8.903201452921120083e-08,-9.496748216449195285e-08,-1.009029497997727049e-07,-1.068384174350534569e-07,-1.127738850703342089e-07,-1.187093527056149609e-07,-1.246448203408957129e-07,-1.305802879761764649e-07,-1.365157556114572170e-07,-1.424512232467379690e-07,-1.483866908820187210e-07,-1.543221585172994730e-07,-1.602576261525802250e-07,-1.661930937878609770e-07,-1.721285614231417291e-07,-1.780640290584224811e-07,-1.839994966937032331e-07,-1.899349643289839851e-07,-1.958704319642647371e-07,-2.018058995995454891e-07,-2.077413672348262411e-07,-2.136768348701069932e-07,-2.196123025053877452e-07,-2.255477701406684972e-07,-2.314832377759492492e-07,-2.374187054112300012e-07,-2.433541730465107532e-07,-2.492896406817915317e-07,-2.552251083170723102e-07,-2.611605759523530887e-07,-2.670960435876338672e-07,-2.730315112229146457e-07,-2.789669788581954242e-07,-2.849024464934762026e-07,-2.908379141287569811e-07,-2.967733817640377596e-07,-3.027088493993185381e-07,-3.086443170345993166e-07,-3.145797846698800951e-07,-3.205152523051608736e-07,-3.264507199404416520e-07,-3.323861875757224305e-07,-3.383216552110032090e-07,-3.442571228462839875e-07,-3.501925904815647660e-07,-3.561280581168455445e-07,-3.620635257521263230e-07,-3.679989933874071014e-07,-3.739344610226878799e-07 +0.000000000000000000e+00,-3.296671962260435214e-09,-6.593343924520870428e-09,-9.890015886781306056e-09,-1.318668784904174251e-08,-1.648335981130218062e-08,-1.978003177356261873e-08,-2.307670373582305684e-08,-2.637337569808349495e-08,-2.967004766034393306e-08,-3.296671962260437448e-08,-3.626339158486481589e-08,-3.956006354712525731e-08,-4.285673550938569873e-08,-4.615340747164614015e-08,-4.945007943390658157e-08,-5.274675139616702298e-08,-5.604342335842746440e-08,-5.934009532068790582e-08,-6.263676728294834724e-08,-6.593343924520878866e-08,-6.923011120746923007e-08,-7.252678316972967149e-08,-7.582345513199011291e-08,-7.912012709425055433e-08,-8.241679905651099575e-08,-8.571347101877143716e-08,-8.901014298103187858e-08,-9.230681494329232000e-08,-9.560348690555276142e-08,-9.890015886781320284e-08,-1.021968308300736443e-07,-1.054935027923340857e-07,-1.087901747545945271e-07,-1.120868467168549685e-07,-1.153835186791154099e-07,-1.186801906413758513e-07,-1.219768626036362928e-07,-1.252735345658967474e-07,-1.285702065281572021e-07,-1.318668784904176567e-07,-1.351635504526781114e-07,-1.384602224149385660e-07,-1.417568943771990207e-07,-1.450535663394594753e-07,-1.483502383017199300e-07,-1.516469102639803846e-07,-1.549435822262408393e-07,-1.582402541885012939e-07,-1.615369261507617486e-07,-1.648335981130222032e-07,-1.681302700752826579e-07,-1.714269420375431126e-07,-1.747236139998035672e-07,-1.780202859620640219e-07,-1.813169579243244765e-07,-1.846136298865849312e-07,-1.879103018488453858e-07,-1.912069738111058405e-07,-1.945036457733662951e-07,-1.978003177356267498e-07,-2.010969896978872044e-07,-2.043936616601476591e-07,-2.076903336224081137e-07 +0.000000000000000000e+00,-4.360629430788731407e-09,-8.721258861577462813e-09,-1.308188829236619505e-08,-1.744251772315492894e-08,-2.180314715394366282e-08,-2.616377658473239671e-08,-3.052440601552113060e-08,-3.488503544630986449e-08,-3.924566487709859838e-08,-4.360629430788733226e-08,-4.796692373867606615e-08,-5.232755316946480004e-08,-5.668818260025353393e-08,-6.104881203104226120e-08,-6.540944146183098847e-08,-6.977007089261971574e-08,-7.413070032340844301e-08,-7.849132975419717028e-08,-8.285195918498589755e-08,-8.721258861577462482e-08,-9.157321804656335210e-08,-9.593384747735207937e-08,-1.002944769081408066e-07,-1.046551063389295339e-07,-1.090157357697182612e-07,-1.133763652005069884e-07,-1.177369946312957157e-07,-1.220976240620844430e-07,-1.264582534928731703e-07,-1.308188829236618975e-07,-1.351795123544506248e-07,-1.395401417852393521e-07,-1.439007712160280793e-07,-1.482614006468168066e-07,-1.526220300776055339e-07,-1.569826595083942612e-07,-1.613432889391829884e-07,-1.657039183699717157e-07,-1.700645478007604430e-07,-1.744251772315491702e-07,-1.787858066623378975e-07,-1.831464360931266248e-07,-1.875070655239153521e-07,-1.918676949547040793e-07,-1.962283243854928066e-07,-2.005889538162815339e-07,-2.049495832470702611e-07,-2.093102126778589884e-07,-2.136708421086477157e-07,-2.180314715394364429e-07,-2.223921009702251702e-07,-2.267527304010138975e-07,-2.311133598318026248e-07,-2.354739892625913520e-07,-2.398346186933800793e-07,-2.441952481241688330e-07,-2.485558775549575868e-07,-2.529165069857463405e-07,-2.572771364165350943e-07,-2.616377658473238480e-07,-2.659983952781126017e-07,-2.703590247089013555e-07,-2.747196541396901092e-07 +0.000000000000000000e+00,-1.613526283427421713e-09,-3.227052566854843427e-09,-4.840578850282265347e-09,-6.454105133709687681e-09,-8.067631417137109188e-09,-9.681157700564530695e-09,-1.129468398399195220e-08,-1.290821026741937371e-08,-1.452173655084679521e-08,-1.613526283427421838e-08,-1.774878911770164154e-08,-1.936231540112906470e-08,-2.097584168455648786e-08,-2.258936796798391102e-08,-2.420289425141133418e-08,-2.581642053483875734e-08,-2.742994681826618050e-08,-2.904347310169360366e-08,-3.065699938512103013e-08,-3.227052566854845660e-08,-3.388405195197588307e-08,-3.549757823540330954e-08,-3.711110451883073601e-08,-3.872463080225816248e-08,-4.033815708568558895e-08,-4.195168336911301542e-08,-4.356520965254044189e-08,-4.517873593596786836e-08,-4.679226221939529483e-08,-4.840578850282272130e-08,-5.001931478625014777e-08,-5.163284106967757424e-08,-5.324636735310500071e-08,-5.485989363653242718e-08,-5.647341991995985365e-08,-5.808694620338728012e-08,-5.970047248681470659e-08,-6.131399877024213968e-08,-6.292752505366957276e-08,-6.454105133709700585e-08,-6.615457762052443894e-08,-6.776810390395187203e-08,-6.938163018737930511e-08,-7.099515647080673820e-08,-7.260868275423417129e-08,-7.422220903766160438e-08,-7.583573532108903746e-08,-7.744926160451647055e-08,-7.906278788794390364e-08,-8.067631417137133672e-08,-8.228984045479876981e-08,-8.390336673822620290e-08,-8.551689302165363599e-08,-8.713041930508106907e-08,-8.874394558850850216e-08,-9.035747187193593525e-08,-9.197099815536336833e-08,-9.358452443879080142e-08,-9.519805072221823451e-08,-9.681157700564566760e-08,-9.842510328907310068e-08,-1.000386295725005338e-07,-1.016521558559279669e-07 +0.000000000000000000e+00,-5.894464220443973594e-09,-1.178892844088794719e-08,-1.768339266133192161e-08,-2.357785688177589769e-08,-2.947232110221987376e-08,-3.536678532266384984e-08,-4.126124954310782922e-08,-4.715571376355180861e-08,-5.305017798399578799e-08,-5.894464220443976737e-08,-6.483910642488374676e-08,-7.073357064532772614e-08,-7.662803486577170553e-08,-8.252249908621568491e-08,-8.841696330665966430e-08,-9.431142752710364368e-08,-1.002058917475476231e-07,-1.061003559679916024e-07,-1.119948201884355818e-07,-1.178892844088795612e-07,-1.237837486293235406e-07,-1.296782128497675200e-07,-1.355726770702114994e-07,-1.414671412906554788e-07,-1.473616055110994581e-07,-1.532560697315434375e-07,-1.591505339519874169e-07,-1.650449981724313963e-07,-1.709394623928753757e-07,-1.768339266133193551e-07,-1.827283908337633344e-07,-1.886228550542073138e-07,-1.945173192746512932e-07,-2.004117834950952726e-07,-2.063062477155392520e-07,-2.122007119359832314e-07,-2.180951761564272108e-07,-2.239896403768711901e-07,-2.298841045973151695e-07,-2.357785688177591489e-07,-2.416730330382031548e-07,-2.475674972586471341e-07,-2.534619614790911135e-07,-2.593564256995350929e-07,-2.652508899199790723e-07,-2.711453541404230517e-07,-2.770398183608670311e-07,-2.829342825813110104e-07,-2.888287468017549898e-07,-2.947232110221989692e-07,-3.006176752426429486e-07,-3.065121394630869280e-07,-3.124066036835309074e-07,-3.183010679039748868e-07,-3.241955321244188661e-07,-3.300899963448628455e-07,-3.359844605653068249e-07,-3.418789247857508043e-07,-3.477733890061947837e-07,-3.536678532266387631e-07,-3.595623174470827424e-07,-3.654567816675267218e-07,-3.713512458879707012e-07 +0.000000000000000000e+00,-4.510577346633055546e-09,-9.021154693266111091e-09,-1.353173203989916664e-08,-1.804230938653222218e-08,-2.255288673316527607e-08,-2.706346407979832997e-08,-3.157404142643138386e-08,-3.608461877306443775e-08,-4.059519611969749164e-08,-4.510577346633054553e-08,-4.961635081296359942e-08,-5.412692815959665331e-08,-5.863750550622970720e-08,-6.314808285286276771e-08,-6.765866019949582822e-08,-7.216923754612888873e-08,-7.667981489276194924e-08,-8.119039223939500975e-08,-8.570096958602807026e-08,-9.021154693266113077e-08,-9.472212427929419127e-08,-9.923270162592725178e-08,-1.037432789725603123e-07,-1.082538563191933728e-07,-1.127644336658264333e-07,-1.172750110124594938e-07,-1.217855883590925411e-07,-1.262961657057255884e-07,-1.308067430523586356e-07,-1.353173203989916829e-07,-1.398278977456247302e-07,-1.443384750922577775e-07,-1.488490524388908247e-07,-1.533596297855238720e-07,-1.578702071321569193e-07,-1.623807844787899666e-07,-1.668913618254230138e-07,-1.714019391720560611e-07,-1.759125165186891084e-07,-1.804230938653221557e-07,-1.849336712119552029e-07,-1.894442485585882502e-07,-1.939548259052212975e-07,-1.984654032518543447e-07,-2.029759805984873920e-07,-2.074865579451204393e-07,-2.119971352917534866e-07,-2.165077126383865338e-07,-2.210182899850195811e-07,-2.255288673316526284e-07,-2.300394446782856757e-07,-2.345500220249187229e-07,-2.390605993715517702e-07,-2.435711767181848175e-07,-2.480817540648178648e-07,-2.525923314114509120e-07,-2.571029087580839593e-07,-2.616134861047170066e-07,-2.661240634513500539e-07,-2.706346407979831011e-07,-2.751452181446161484e-07,-2.796557954912491957e-07,-2.841663728378822429e-07 +0.000000000000000000e+00,-2.414484179834574351e-09,-4.828968359669148701e-09,-7.243452539503723465e-09,-9.657936719338299056e-09,-1.207242089917287465e-08,-1.448690507900745024e-08,-1.690138925884202748e-08,-1.931587343867660473e-08,-2.173035761851118198e-08,-2.414484179834575922e-08,-2.655932597818033647e-08,-2.897381015801491371e-08,-3.138829433784949096e-08,-3.380277851768406820e-08,-3.621726269751864545e-08,-3.863174687735322270e-08,-4.104623105718779994e-08,-4.346071523702237719e-08,-4.587519941685695443e-08,-4.828968359669153168e-08,-5.070416777652610892e-08,-5.311865195636068617e-08,-5.553313613619526341e-08,-5.794762031602984066e-08,-6.036210449586441791e-08,-6.277658867569899515e-08,-6.519107285553357240e-08,-6.760555703536814964e-08,-7.002004121520272689e-08,-7.243452539503730413e-08,-7.484900957487188138e-08,-7.726349375470645863e-08,-7.967797793454103587e-08,-8.209246211437561312e-08,-8.450694629421019036e-08,-8.692143047404476761e-08,-8.933591465387934485e-08,-9.175039883371392210e-08,-9.416488301354849935e-08,-9.657936719338307659e-08,-9.899385137321765384e-08,-1.014083355530522311e-07,-1.038228197328868083e-07,-1.062373039127213856e-07,-1.086517880925559628e-07,-1.110662722723905401e-07,-1.134807564522251173e-07,-1.158952406320596946e-07,-1.183097248118942718e-07,-1.207242089917288358e-07,-1.231386931715633998e-07,-1.255531773513979638e-07,-1.279676615312325278e-07,-1.303821457110670919e-07,-1.327966298909016559e-07,-1.352111140707362199e-07,-1.376255982505707839e-07,-1.400400824304053479e-07,-1.424545666102399119e-07,-1.448690507900744759e-07,-1.472835349699090399e-07,-1.496980191497436039e-07,-1.521125033295781680e-07 +0.000000000000000000e+00,-5.756729679319313130e-09,-1.151345935863862626e-08,-1.727018903795794104e-08,-2.302691871727725583e-08,-2.878364839659657061e-08,-3.454037807591588209e-08,-4.029710775523519356e-08,-4.605383743455450504e-08,-5.181056711387381652e-08,-5.756729679319312799e-08,-6.332402647251243947e-08,-6.908075615183175094e-08,-7.483748583115106242e-08,-8.059421551047037389e-08,-8.635094518978968537e-08,-9.210767486910899684e-08,-9.786440454842830832e-08,-1.036211342277476198e-07,-1.093778639070669313e-07,-1.151345935863862427e-07,-1.208913232657055542e-07,-1.266480529450248789e-07,-1.324047826243442036e-07,-1.381615123036635284e-07,-1.439182419829828531e-07,-1.496749716623021778e-07,-1.554317013416215025e-07,-1.611884310209408272e-07,-1.669451607002601519e-07,-1.727018903795794766e-07,-1.784586200588988013e-07,-1.842153497382181260e-07,-1.899720794175374507e-07,-1.957288090968567755e-07,-2.014855387761761002e-07,-2.072422684554954249e-07,-2.129989981348147496e-07,-2.187557278141340743e-07,-2.245124574934533990e-07,-2.302691871727727237e-07,-2.360259168520920484e-07,-2.417826465314113731e-07,-2.475393762107306979e-07,-2.532961058900500226e-07,-2.590528355693693473e-07,-2.648095652486886720e-07,-2.705662949280079967e-07,-2.763230246073273214e-07,-2.820797542866466461e-07,-2.878364839659659708e-07,-2.935932136452852955e-07,-2.993499433246046202e-07,-3.051066730039239450e-07,-3.108634026832432697e-07,-3.166201323625625944e-07,-3.223768620418819191e-07,-3.281335917212012438e-07,-3.338903214005205685e-07,-3.396470510798398932e-07,-3.454037807591592179e-07,-3.511605104384785426e-07,-3.569172401177978674e-07,-3.626739697971171921e-07 +0.000000000000000000e+00,-5.894464220439640822e-09,-1.178892844087928164e-08,-1.768339266131892164e-08,-2.357785688175855998e-08,-2.947232110219819832e-08,-3.536678532263783666e-08,-4.126124954307747500e-08,-4.715571376351711334e-08,-5.305017798395675168e-08,-5.894464220439639002e-08,-6.483910642483602175e-08,-7.073357064527566009e-08,-7.662803486571529843e-08,-8.252249908615493677e-08,-8.841696330659457511e-08,-9.431142752703421345e-08,-1.002058917474738518e-07,-1.061003559679134901e-07,-1.119948201883531285e-07,-1.178892844087927668e-07,-1.237837486292324052e-07,-1.296782128496720435e-07,-1.355726770701116818e-07,-1.414671412905513202e-07,-1.473616055109909585e-07,-1.532560697314305969e-07,-1.591505339518702352e-07,-1.650449981723098735e-07,-1.709394623927495119e-07,-1.768339266131891502e-07,-1.827283908336287886e-07,-1.886228550540684269e-07,-1.945173192745080652e-07,-2.004117834949477036e-07,-2.063062477153873419e-07,-2.122007119358269803e-07,-2.180951761562666186e-07,-2.239896403767062569e-07,-2.298841045971458953e-07,-2.357785688175855336e-07,-2.416730330380251720e-07,-2.475674972584648103e-07,-2.534619614789044486e-07,-2.593564256993440870e-07,-2.652508899197837253e-07,-2.711453541402233637e-07,-2.770398183606630020e-07,-2.829342825811026403e-07,-2.888287468015422787e-07,-2.947232110219819170e-07,-3.006176752424215554e-07,-3.065121394628611937e-07,-3.124066036833008320e-07,-3.183010679037404704e-07,-3.241955321241801087e-07,-3.300899963446197471e-07,-3.359844605650593854e-07,-3.418789247854990237e-07,-3.477733890059386621e-07,-3.536678532263783004e-07,-3.595623174468179388e-07,-3.654567816672575771e-07,-3.713512458876972155e-07 +0.000000000000000000e+00,-3.296671962251861487e-09,-6.593343924503722974e-09,-9.890015886755584048e-09,-1.318668784900744429e-08,-1.648335981125930619e-08,-1.978003177351116810e-08,-2.307670373576303000e-08,-2.637337569801489190e-08,-2.967004766026675380e-08,-3.296671962251861239e-08,-3.626339158477047098e-08,-3.956006354702232957e-08,-4.285673550927418817e-08,-4.615340747152604676e-08,-4.945007943377790535e-08,-5.274675139602976394e-08,-5.604342335828162253e-08,-5.934009532053348113e-08,-6.263676728278534633e-08,-6.593343924503721154e-08,-6.923011120728907675e-08,-7.252678316954094196e-08,-7.582345513179280717e-08,-7.912012709404467238e-08,-8.241679905629653759e-08,-8.571347101854840280e-08,-8.901014298080026801e-08,-9.230681494305213322e-08,-9.560348690530399843e-08,-9.890015886755586364e-08,-1.021968308298077288e-07,-1.054935027920595941e-07,-1.087901747543114593e-07,-1.120868467165633245e-07,-1.153835186788151897e-07,-1.186801906410670549e-07,-1.219768626033189201e-07,-1.252735345655707985e-07,-1.285702065278226770e-07,-1.318668784900745554e-07,-1.351635504523264339e-07,-1.384602224145783123e-07,-1.417568943768301908e-07,-1.450535663390820692e-07,-1.483502383013339477e-07,-1.516469102635858261e-07,-1.549435822258377045e-07,-1.582402541880895830e-07,-1.615369261503414614e-07,-1.648335981125933399e-07,-1.681302700748452183e-07,-1.714269420370970968e-07,-1.747236139993489752e-07,-1.780202859616008537e-07,-1.813169579238527321e-07,-1.846136298861046105e-07,-1.879103018483564890e-07,-1.912069738106083674e-07,-1.945036457728602459e-07,-1.978003177351121243e-07,-2.010969896973640028e-07,-2.043936616596158812e-07,-2.076903336218677597e-07 +0.000000000000000000e+00,-4.360629430779536467e-09,-8.721258861559072934e-09,-1.308188829233861023e-08,-1.744251772311814918e-08,-2.180314715389768813e-08,-2.616377658467722707e-08,-3.052440601545676933e-08,-3.488503544623631159e-08,-3.924566487701585385e-08,-4.360629430779539610e-08,-4.796692373857493836e-08,-5.232755316935448062e-08,-5.668818260013402287e-08,-6.104881203091356513e-08,-6.540944146169310739e-08,-6.977007089247264965e-08,-7.413070032325219190e-08,-7.849132975403173416e-08,-8.285195918481127642e-08,-8.721258861559081867e-08,-9.157321804637036093e-08,-9.593384747714990319e-08,-1.002944769079294454e-07,-1.046551063387089877e-07,-1.090157357694885300e-07,-1.133763652002680722e-07,-1.177369946310476145e-07,-1.220976240618271567e-07,-1.264582534926066990e-07,-1.308188829233862412e-07,-1.351795123541657835e-07,-1.395401417849453258e-07,-1.439007712157248680e-07,-1.482614006465044103e-07,-1.526220300772839525e-07,-1.569826595080634948e-07,-1.613432889388430370e-07,-1.657039183696225793e-07,-1.700645478004021216e-07,-1.744251772311816638e-07,-1.787858066619612061e-07,-1.831464360927407483e-07,-1.875070655235202906e-07,-1.918676949542998328e-07,-1.962283243850793751e-07,-2.005889538158589174e-07,-2.049495832466384596e-07,-2.093102126774180019e-07,-2.136708421081975441e-07,-2.180314715389770864e-07,-2.223921009697566286e-07,-2.267527304005361709e-07,-2.311133598313157132e-07,-2.354739892620952554e-07,-2.398346186928747712e-07,-2.441952481236542605e-07,-2.485558775544337498e-07,-2.529165069852132392e-07,-2.572771364159927285e-07,-2.616377658467722178e-07,-2.659983952775517071e-07,-2.703590247083311964e-07,-2.747196541391106857e-07 +0.000000000000000000e+00,-1.613526283419289287e-09,-3.227052566838578575e-09,-4.840578850257867655e-09,-6.454105133677156322e-09,-8.067631417096444989e-09,-9.681157700515733656e-09,-1.129468398393502232e-08,-1.290821026735431099e-08,-1.452173655077359966e-08,-1.613526283419288998e-08,-1.774878911761218030e-08,-1.936231540103147062e-08,-2.097584168445076094e-08,-2.258936796787005126e-08,-2.420289425128934158e-08,-2.581642053470863191e-08,-2.742994681812792223e-08,-2.904347310154721255e-08,-3.065699938496649956e-08,-3.227052566838578657e-08,-3.388405195180507359e-08,-3.549757823522436060e-08,-3.711110451864364761e-08,-3.872463080206293462e-08,-4.033815708548222164e-08,-4.195168336890150865e-08,-4.356520965232079566e-08,-4.517873593574008267e-08,-4.679226221915936969e-08,-4.840578850257865670e-08,-5.001931478599794371e-08,-5.163284106941723072e-08,-5.324636735283651774e-08,-5.485989363625580475e-08,-5.647341991967509176e-08,-5.808694620309437877e-08,-5.970047248651366579e-08,-6.131399876993294618e-08,-6.292752505335222658e-08,-6.454105133677150697e-08,-6.615457762019078737e-08,-6.776810390361006776e-08,-6.938163018702934816e-08,-7.099515647044862855e-08,-7.260868275386790895e-08,-7.422220903728718934e-08,-7.583573532070646974e-08,-7.744926160412575013e-08,-7.906278788754503053e-08,-8.067631417096431092e-08,-8.228984045438359132e-08,-8.390336673780287171e-08,-8.551689302122215211e-08,-8.713041930464143250e-08,-8.874394558806071290e-08,-9.035747187147999329e-08,-9.197099815489927369e-08,-9.358452443831855408e-08,-9.519805072173783448e-08,-9.681157700515711487e-08,-9.842510328857639527e-08,-1.000386295719956757e-07,-1.016521558554149561e-07 +0.000000000000000000e+00,-2.260547190843125459e-09,-4.521094381686250917e-09,-6.781641572529376376e-09,-9.042188763372501835e-09,-1.130273595421562647e-08,-1.356328314505875110e-08,-1.582383033590187573e-08,-1.808437752674500036e-08,-2.034492471758812499e-08,-2.260547190843124962e-08,-2.486601909927437426e-08,-2.712656629011749889e-08,-2.938711348096062352e-08,-3.164766067180375146e-08,-3.390820786264687940e-08,-3.616875505349000734e-08,-3.842930224433313528e-08,-4.068984943517626322e-08,-4.295039662601939116e-08,-4.521094381686251910e-08,-4.747149100770564704e-08,-4.973203819854877498e-08,-5.199258538939190292e-08,-5.425313258023503086e-08,-5.651367977107815880e-08,-5.877422696192128674e-08,-6.103477415276442130e-08,-6.329532134360755586e-08,-6.555586853445069042e-08,-6.781641572529382497e-08,-7.007696291613695953e-08,-7.233751010698009409e-08,-7.459805729782322865e-08,-7.685860448866636320e-08,-7.911915167950949776e-08,-8.137969887035263232e-08,-8.364024606119576688e-08,-8.590079325203890143e-08,-8.816134044288203599e-08,-9.042188763372517055e-08,-9.268243482456830511e-08,-9.494298201541143967e-08,-9.720352920625457422e-08,-9.946407639709770878e-08,-1.017246235879408433e-07,-1.039851707787839779e-07,-1.062457179696271125e-07,-1.085062651604702470e-07,-1.107668123513133816e-07,-1.130273595421565161e-07,-1.152879067329996507e-07,-1.175484539238427852e-07,-1.198090011146859198e-07,-1.220695483055290544e-07,-1.243300954963721889e-07,-1.265906426872153235e-07,-1.288511898780584580e-07,-1.311117370689015926e-07,-1.333722842597447271e-07,-1.356328314505878617e-07,-1.378933786414309963e-07,-1.401539258322741308e-07,-1.424144730231172654e-07 +0.000000000000000000e+00,-2.201258714868527986e-09,-4.402517429737055972e-09,-6.603776144605584372e-09,-8.805034859474113598e-09,-1.100629357434264282e-08,-1.320755228921117205e-08,-1.540881100407969962e-08,-1.761006971894822720e-08,-1.981132843381675477e-08,-2.201258714868528234e-08,-2.421384586355380991e-08,-2.641510457842233749e-08,-2.861636329329086506e-08,-3.081762200815939263e-08,-3.301888072302792020e-08,-3.522013943789644778e-08,-3.742139815276497535e-08,-3.962265686763350292e-08,-4.182391558250203049e-08,-4.402517429737055807e-08,-4.622643301223908564e-08,-4.842769172710761321e-08,-5.062895044197614078e-08,-5.283020915684466835e-08,-5.503146787171319593e-08,-5.723272658658172350e-08,-5.943398530145025107e-08,-6.163524401631877203e-08,-6.383650273118729298e-08,-6.603776144605581394e-08,-6.823902016092433489e-08,-7.044027887579285585e-08,-7.264153759066137680e-08,-7.484279630552989776e-08,-7.704405502039841871e-08,-7.924531373526693967e-08,-8.144657245013546062e-08,-8.364783116500398158e-08,-8.584908987987250253e-08,-8.805034859474102349e-08,-9.025160730960954444e-08,-9.245286602447806540e-08,-9.465412473934658635e-08,-9.685538345421510731e-08,-9.905664216908362826e-08,-1.012579008839521492e-07,-1.034591595988206702e-07,-1.056604183136891911e-07,-1.078616770285577121e-07,-1.100629357434262330e-07,-1.122641944582947540e-07,-1.144654531731632749e-07,-1.166667118880317959e-07,-1.188679706029003169e-07,-1.210692293177688246e-07,-1.232704880326373323e-07,-1.254717467475058400e-07,-1.276730054623743477e-07,-1.298742641772428555e-07,-1.320755228921113632e-07,-1.342767816069798709e-07,-1.364780403218483786e-07,-1.386792990367168863e-07 +0.000000000000000000e+00,-1.363856029993671633e-09,-2.727712059987343266e-09,-4.091568089981014693e-09,-5.455424119974685705e-09,-6.819280149968356718e-09,-8.183136179962027731e-09,-9.546992209955697916e-09,-1.091084823994936810e-08,-1.227470426994303829e-08,-1.363856029993670847e-08,-1.500241632993037866e-08,-1.636627235992404884e-08,-1.773012838991771903e-08,-1.909398441991138921e-08,-2.045784044990505940e-08,-2.182169647989872959e-08,-2.318555250989239977e-08,-2.454940853988606996e-08,-2.591326456987974014e-08,-2.727712059987341033e-08,-2.864097662986708051e-08,-3.000483265986075070e-08,-3.136868868985441758e-08,-3.273254471984808445e-08,-3.409640074984175133e-08,-3.546025677983541821e-08,-3.682411280982908508e-08,-3.818796883982275196e-08,-3.955182486981641884e-08,-4.091568089981008571e-08,-4.227953692980375259e-08,-4.364339295979741947e-08,-4.500724898979108634e-08,-4.637110501978475322e-08,-4.773496104977842010e-08,-4.909881707977208697e-08,-5.046267310976575385e-08,-5.182652913975942073e-08,-5.319038516975308761e-08,-5.455424119974675448e-08,-5.591809722974042136e-08,-5.728195325973408824e-08,-5.864580928972775511e-08,-6.000966531972142199e-08,-6.137352134971508887e-08,-6.273737737970875574e-08,-6.410123340970242262e-08,-6.546508943969608950e-08,-6.682894546968975637e-08,-6.819280149968342325e-08,-6.955665752967709013e-08,-7.092051355967075700e-08,-7.228436958966442388e-08,-7.364822561965809076e-08,-7.501208164965175763e-08,-7.637593767964542451e-08,-7.773979370963909139e-08,-7.910364973963275826e-08,-8.046750576962642514e-08,-8.183136179962009202e-08,-8.319521782961375890e-08,-8.455907385960742577e-08,-8.592292988960109265e-08 +0.000000000000000000e+00,-2.260547190836734661e-09,-4.521094381673469323e-09,-6.781641572510203984e-09,-9.042188763346938645e-09,-1.130273595418367413e-08,-1.356328314502040962e-08,-1.582383033585714511e-08,-1.808437752669388060e-08,-2.034492471753061609e-08,-2.260547190836735158e-08,-2.486601909920408706e-08,-2.712656629004082255e-08,-2.938711348087755804e-08,-3.164766067171429684e-08,-3.390820786255103894e-08,-3.616875505338778105e-08,-3.842930224422452316e-08,-4.068984943506126526e-08,-4.295039662589800737e-08,-4.521094381673474947e-08,-4.747149100757149158e-08,-4.973203819840823369e-08,-5.199258538924497579e-08,-5.425313258008171790e-08,-5.651367977091846000e-08,-5.877422696175520211e-08,-6.103477415259194422e-08,-6.329532134342868632e-08,-6.555586853426542843e-08,-6.781641572510217053e-08,-7.007696291593891264e-08,-7.233751010677565475e-08,-7.459805729761239685e-08,-7.685860448844913896e-08,-7.911915167928588106e-08,-8.137969887012262317e-08,-8.364024606095936528e-08,-8.590079325179610738e-08,-8.816134044263284949e-08,-9.042188763346959159e-08,-9.268243482430633370e-08,-9.494298201514307581e-08,-9.720352920597981791e-08,-9.946407639681656002e-08,-1.017246235876533021e-07,-1.039851707784900442e-07,-1.062457179693267863e-07,-1.085062651601635284e-07,-1.107668123510002705e-07,-1.130273595418370127e-07,-1.152879067326737548e-07,-1.175484539235104969e-07,-1.198090011143472390e-07,-1.220695483051839943e-07,-1.243300954960207497e-07,-1.265906426868575050e-07,-1.288511898776942603e-07,-1.311117370685310157e-07,-1.333722842593677710e-07,-1.356328314502045264e-07,-1.378933786410412817e-07,-1.401539258318780370e-07,-1.424144730227147924e-07 +0.000000000000000000e+00,-2.201258714861498192e-09,-4.402517429722996383e-09,-6.603776144584494575e-09,-8.805034859445992766e-09,-1.100629357430749096e-08,-1.320755228916898915e-08,-1.540881100403048569e-08,-1.761006971889198222e-08,-1.981132843375347876e-08,-2.201258714861497530e-08,-2.421384586347647184e-08,-2.641510457833796837e-08,-2.861636329319946491e-08,-3.081762200806095814e-08,-3.301888072292245137e-08,-3.522013943778394459e-08,-3.742139815264543782e-08,-3.962265686750693105e-08,-4.182391558236842428e-08,-4.402517429722991751e-08,-4.622643301209141074e-08,-4.842769172695290397e-08,-5.062895044181439719e-08,-5.283020915667589042e-08,-5.503146787153738365e-08,-5.723272658639887688e-08,-5.943398530126037011e-08,-6.163524401612186334e-08,-6.383650273098335656e-08,-6.603776144584484979e-08,-6.823902016070634302e-08,-7.044027887556783625e-08,-7.264153759042932948e-08,-7.484279630529082271e-08,-7.704405502015231594e-08,-7.924531373501380916e-08,-8.144657244987530239e-08,-8.364783116473679562e-08,-8.584908987959828885e-08,-8.805034859445978208e-08,-9.025160730932127531e-08,-9.245286602418276853e-08,-9.465412473904426176e-08,-9.685538345390575499e-08,-9.905664216876724822e-08,-1.012579008836287414e-07,-1.034591595984902347e-07,-1.056604183133517279e-07,-1.078616770282132211e-07,-1.100629357430747144e-07,-1.122641944579362076e-07,-1.144654531727977008e-07,-1.166667118876591940e-07,-1.188679706025206873e-07,-1.210692293173821805e-07,-1.232704880322436737e-07,-1.254717467471051670e-07,-1.276730054619666602e-07,-1.298742641768281534e-07,-1.320755228916896466e-07,-1.342767816065511399e-07,-1.364780403214126331e-07,-1.386792990362741263e-07 +0.000000000000000000e+00,-1.363856029986808309e-09,-2.727712059973616618e-09,-4.091568089960425340e-09,-5.455424119947234062e-09,-6.819280149934042785e-09,-8.183136179920850680e-09,-9.546992209907658575e-09,-1.091084823989446647e-08,-1.227470426988127437e-08,-1.363856029986808226e-08,-1.500241632985489016e-08,-1.636627235984169805e-08,-1.773012838982850595e-08,-1.909398441981531384e-08,-2.045784044980212174e-08,-2.182169647978892963e-08,-2.318555250977573753e-08,-2.454940853976254542e-08,-2.591326456974935332e-08,-2.727712059973616121e-08,-2.864097662972296911e-08,-3.000483265970978031e-08,-3.136868868969659152e-08,-3.273254471968340272e-08,-3.409640074967021392e-08,-3.546025677965702513e-08,-3.682411280964383633e-08,-3.818796883963064753e-08,-3.955182486961745874e-08,-4.091568089960426994e-08,-4.227953692959108115e-08,-4.364339295957789235e-08,-4.500724898956470355e-08,-4.637110501955151476e-08,-4.773496104953832596e-08,-4.909881707952513717e-08,-5.046267310951194837e-08,-5.182652913949875957e-08,-5.319038516948557078e-08,-5.455424119947238198e-08,-5.591809722945919319e-08,-5.728195325944600439e-08,-5.864580928943281559e-08,-6.000966531941962680e-08,-6.137352134940643800e-08,-6.273737737939324920e-08,-6.410123340938006041e-08,-6.546508943936687161e-08,-6.682894546935368282e-08,-6.819280149934049402e-08,-6.955665752932730522e-08,-7.092051355931411643e-08,-7.228436958930092763e-08,-7.364822561928773884e-08,-7.501208164927455004e-08,-7.637593767926136124e-08,-7.773979370924817245e-08,-7.910364973923498365e-08,-8.046750576922179486e-08,-8.183136179920860606e-08,-8.319521782919541726e-08,-8.455907385918222847e-08,-8.592292988916903967e-08 +0.000000000000000000e+00,-2.657553701175164877e-09,-5.315107402350329755e-09,-7.972661103525494219e-09,-1.063021480470065786e-08,-1.328776850587582149e-08,-1.594532220705098513e-08,-1.860287590822614877e-08,-2.126042960940131240e-08,-2.391798331057647604e-08,-2.657553701175163968e-08,-2.923309071292680331e-08,-3.189064441410196364e-08,-3.454819811527712397e-08,-3.720575181645228430e-08,-3.986330551762744462e-08,-4.252085921880260495e-08,-4.517841291997776528e-08,-4.783596662115292561e-08,-5.049352032232808594e-08,-5.315107402350324626e-08,-5.580862772467840659e-08,-5.846618142585356692e-08,-6.112373512702872725e-08,-6.378128882820388758e-08,-6.643884252937904790e-08,-6.909639623055420823e-08,-7.175394993172936856e-08,-7.441150363290452889e-08,-7.706905733407968921e-08,-7.972661103525484954e-08,-8.238416473643000987e-08,-8.504171843760517020e-08,-8.769927213878033053e-08,-9.035682583995549085e-08,-9.301437954113065118e-08,-9.567193324230581151e-08,-9.832948694348097184e-08,-1.009870406446561322e-07,-1.036445943458312925e-07,-1.063021480470064528e-07,-1.089597017481816132e-07,-1.116172554493567735e-07,-1.142748091505319338e-07,-1.169323628517070941e-07,-1.195899165528822677e-07,-1.222474702540574280e-07,-1.249050239552325884e-07,-1.275625776564077487e-07,-1.302201313575829090e-07,-1.328776850587580693e-07,-1.355352387599332297e-07,-1.381927924611083900e-07,-1.408503461622835503e-07,-1.435078998634587106e-07,-1.461654535646338710e-07,-1.488230072658090313e-07,-1.514805609669841916e-07,-1.541381146681593520e-07,-1.567956683693345123e-07,-1.594532220705096726e-07,-1.621107757716848329e-07,-1.647683294728599933e-07,-1.674258831740351536e-07 +0.000000000000000000e+00,-2.437179326312371514e-09,-4.874358652624743027e-09,-7.311537978937114128e-09,-9.748717305249484401e-09,-1.218589663156185467e-08,-1.462307595787422495e-08,-1.706025528418659522e-08,-1.949743461049896549e-08,-2.193461393681133577e-08,-2.437179326312370604e-08,-2.680897258943607631e-08,-2.924615191574844658e-08,-3.168333124206081686e-08,-3.412051056837319044e-08,-3.655768989468556402e-08,-3.899486922099793760e-08,-4.143204854731031118e-08,-4.386922787362268477e-08,-4.630640719993505835e-08,-4.874358652624743193e-08,-5.118076585255980551e-08,-5.361794517887217909e-08,-5.605512450518455267e-08,-5.849230383149692626e-08,-6.092948315780929984e-08,-6.336666248412167342e-08,-6.580384181043404700e-08,-6.824102113674642058e-08,-7.067820046305879416e-08,-7.311537978937116775e-08,-7.555255911568354133e-08,-7.798973844199591491e-08,-8.042691776830828849e-08,-8.286409709462066207e-08,-8.530127642093303565e-08,-8.773845574724540924e-08,-9.017563507355778282e-08,-9.261281439987015640e-08,-9.504999372618252998e-08,-9.748717305249490356e-08,-9.992435237880727714e-08,-1.023615317051196507e-07,-1.047987110314320243e-07,-1.072358903577443979e-07,-1.096730696840567715e-07,-1.121102490103691451e-07,-1.145474283366815186e-07,-1.169846076629938922e-07,-1.194217869893062790e-07,-1.218589663156186791e-07,-1.242961456419310791e-07,-1.267333249682434792e-07,-1.291705042945558792e-07,-1.316076836208682793e-07,-1.340448629471806793e-07,-1.364820422734930794e-07,-1.389192215998054794e-07,-1.413564009261178795e-07,-1.437935802524302795e-07,-1.462307595787426796e-07,-1.486679389050550796e-07,-1.511051182313674797e-07,-1.535422975576798798e-07 +0.000000000000000000e+00,-1.626880189255815680e-09,-3.253760378511631361e-09,-4.880640567767447041e-09,-6.507520757023262722e-09,-8.134400946279078402e-09,-9.761281135534894082e-09,-1.138816132479070976e-08,-1.301504151404652544e-08,-1.464192170330234112e-08,-1.626880189255815680e-08,-1.789568208181397414e-08,-1.952256227106979147e-08,-2.114944246032560881e-08,-2.277632264958142614e-08,-2.440320283883724348e-08,-2.603008302809306081e-08,-2.765696321734887815e-08,-2.928384340660469548e-08,-3.091072359586051282e-08,-3.253760378511633346e-08,-3.416448397437215410e-08,-3.579136416362797475e-08,-3.741824435288379539e-08,-3.904512454213961603e-08,-4.067200473139543668e-08,-4.229888492065125732e-08,-4.392576510990707796e-08,-4.555264529916289861e-08,-4.717952548841871925e-08,-4.880640567767453989e-08,-5.043328586693036054e-08,-5.206016605618618118e-08,-5.368704624544200183e-08,-5.531392643469782247e-08,-5.694080662395364311e-08,-5.856768681320946376e-08,-6.019456700246528440e-08,-6.182144719172110504e-08,-6.344832738097692569e-08,-6.507520757023274633e-08,-6.670208775948856697e-08,-6.832896794874438762e-08,-6.995584813800020826e-08,-7.158272832725602890e-08,-7.320960851651184955e-08,-7.483648870576767019e-08,-7.646336889502349083e-08,-7.809024908427931148e-08,-7.971712927353513212e-08,-8.134400946279095276e-08,-8.297088965204677341e-08,-8.459776984130259405e-08,-8.622465003055841469e-08,-8.785153021981423534e-08,-8.947841040907005598e-08,-9.110529059832587663e-08,-9.273217078758169727e-08,-9.435905097683751791e-08,-9.598593116609333856e-08,-9.761281135534915920e-08,-9.923969154460497984e-08,-1.008665717338608005e-07,-1.024934519231166211e-07 +0.000000000000000000e+00,-2.657553701169997894e-09,-5.315107402339995787e-09,-7.972661103509992854e-09,-1.063021480467998992e-08,-1.328776850584998699e-08,-1.594532220701998571e-08,-1.860287590818998443e-08,-2.126042960935998315e-08,-2.391798331052998187e-08,-2.657553701169998059e-08,-2.923309071286997931e-08,-3.189064441403997803e-08,-3.454819811520997675e-08,-3.720575181637997548e-08,-3.986330551754997420e-08,-4.252085921871997292e-08,-4.517841291988997164e-08,-4.783596662105997036e-08,-5.049352032222996908e-08,-5.315107402339996780e-08,-5.580862772456996652e-08,-5.846618142573996524e-08,-6.112373512690997058e-08,-6.378128882807996930e-08,-6.643884252924996802e-08,-6.909639623041996674e-08,-7.175394993158996546e-08,-7.441150363275996419e-08,-7.706905733392996291e-08,-7.972661103509996163e-08,-8.238416473626996035e-08,-8.504171843743995907e-08,-8.769927213860995779e-08,-9.035682583977995651e-08,-9.301437954094995523e-08,-9.567193324211995395e-08,-9.832948694328995267e-08,-1.009870406444599514e-07,-1.036445943456299501e-07,-1.063021480467999488e-07,-1.089597017479699476e-07,-1.116172554491399463e-07,-1.142748091503099450e-07,-1.169323628514799437e-07,-1.195899165526499424e-07,-1.222474702538199412e-07,-1.249050239549899399e-07,-1.275625776561599386e-07,-1.302201313573299373e-07,-1.328776850584999360e-07,-1.355352387596699348e-07,-1.381927924608399335e-07,-1.408503461620099322e-07,-1.435078998631799309e-07,-1.461654535643499297e-07,-1.488230072655199284e-07,-1.514805609666899271e-07,-1.541381146678599258e-07,-1.567956683690299245e-07,-1.594532220701999233e-07,-1.621107757713699220e-07,-1.647683294725399207e-07,-1.674258831737099194e-07 +0.000000000000000000e+00,-2.437179326306615577e-09,-4.874358652613231155e-09,-7.311537978919846732e-09,-9.748717305226462310e-09,-1.218589663153307871e-08,-1.462307595783969512e-08,-1.706025528414631152e-08,-1.949743461045292793e-08,-2.193461393675954433e-08,-2.437179326306616074e-08,-2.680897258937277714e-08,-2.924615191567939355e-08,-3.168333124198601326e-08,-3.412051056829262966e-08,-3.655768989459924607e-08,-3.899486922090586247e-08,-4.143204854721247888e-08,-4.386922787351909528e-08,-4.630640719982571169e-08,-4.874358652613232809e-08,-5.118076585243894450e-08,-5.361794517874556090e-08,-5.605512450505217731e-08,-5.849230383135879371e-08,-6.092948315766541012e-08,-6.336666248397202652e-08,-6.580384181027864292e-08,-6.824102113658525933e-08,-7.067820046289187573e-08,-7.311537978919849214e-08,-7.555255911550510854e-08,-7.798973844181172495e-08,-8.042691776811834135e-08,-8.286409709442495776e-08,-8.530127642073157416e-08,-8.773845574703819057e-08,-9.017563507334480697e-08,-9.261281439965142338e-08,-9.504999372595803978e-08,-9.748717305226465618e-08,-9.992435237857127259e-08,-1.023615317048778890e-07,-1.047987110311845054e-07,-1.072358903574911218e-07,-1.096730696837977382e-07,-1.121102490101043546e-07,-1.145474283364109710e-07,-1.169846076627175874e-07,-1.194217869890242171e-07,-1.218589663153308467e-07,-1.242961456416374763e-07,-1.267333249679441060e-07,-1.291705042942507356e-07,-1.316076836205573653e-07,-1.340448629468639949e-07,-1.364820422731706245e-07,-1.389192215994772542e-07,-1.413564009257838838e-07,-1.437935802520905135e-07,-1.462307595783971431e-07,-1.486679389047037727e-07,-1.511051182310104024e-07,-1.535422975573170320e-07 +0.000000000000000000e+00,-1.626880189250168932e-09,-3.253760378500337864e-09,-4.880640567750506382e-09,-6.507520757000674901e-09,-8.134400946250843419e-09,-9.761281135501012764e-09,-1.138816132475118211e-08,-1.301504151400135146e-08,-1.464192170325152080e-08,-1.626880189250169015e-08,-1.789568208175185949e-08,-1.952256227100202884e-08,-2.114944246025219818e-08,-2.277632264950236753e-08,-2.440320283875253687e-08,-2.603008302800270622e-08,-2.765696321725287557e-08,-2.928384340650304491e-08,-3.091072359575321757e-08,-3.253760378500338691e-08,-3.416448397425355626e-08,-3.579136416350372560e-08,-3.741824435275389495e-08,-3.904512454200406429e-08,-4.067200473125423364e-08,-4.229888492050440298e-08,-4.392576510975457233e-08,-4.555264529900474167e-08,-4.717952548825491102e-08,-4.880640567750508037e-08,-5.043328586675524971e-08,-5.206016605600541906e-08,-5.368704624525558840e-08,-5.531392643450575775e-08,-5.694080662375592709e-08,-5.856768681300609644e-08,-6.019456700225626578e-08,-6.182144719150643513e-08,-6.344832738075660448e-08,-6.507520757000677382e-08,-6.670208775925694317e-08,-6.832896794850711251e-08,-6.995584813775728186e-08,-7.158272832700745120e-08,-7.320960851625762055e-08,-7.483648870550778989e-08,-7.646336889475795924e-08,-7.809024908400812859e-08,-7.971712927325829793e-08,-8.134400946250846728e-08,-8.297088965175863662e-08,-8.459776984100880597e-08,-8.622465003025897531e-08,-8.785153021950914466e-08,-8.947841040875931400e-08,-9.110529059800948335e-08,-9.273217078725965270e-08,-9.435905097650982204e-08,-9.598593116575999139e-08,-9.761281135501016073e-08,-9.923969154426033008e-08,-1.008665717335104994e-07,-1.024934519227606688e-07 +0.000000000000000000e+00,-3.087074258964659101e-09,-6.174148517929318202e-09,-9.261222776893977717e-09,-1.234829703585863806e-08,-1.543537129482329840e-08,-1.852244555378795874e-08,-2.160951981275261908e-08,-2.469659407171727943e-08,-2.778366833068193977e-08,-3.087074258964659680e-08,-3.395781684861125384e-08,-3.704489110757591087e-08,-4.013196536654056790e-08,-4.321903962550522494e-08,-4.630611388446988197e-08,-4.939318814343453900e-08,-5.248026240239919603e-08,-5.556733666136385307e-08,-5.865441092032851010e-08,-6.174148517929316713e-08,-6.482855943825783079e-08,-6.791563369722249444e-08,-7.100270795618715809e-08,-7.408978221515182174e-08,-7.717685647411648539e-08,-8.026393073308114904e-08,-8.335100499204581269e-08,-8.643807925101047634e-08,-8.952515350997513999e-08,-9.261222776893980364e-08,-9.569930202790446729e-08,-9.878637628686913094e-08,-1.018734505458337946e-07,-1.049605248047984582e-07,-1.080475990637631219e-07,-1.111346733227277855e-07,-1.142217475816924492e-07,-1.173088218406571128e-07,-1.203958960996217765e-07,-1.234829703585864401e-07,-1.265700446175511038e-07,-1.296571188765157674e-07,-1.327441931354804311e-07,-1.358312673944450948e-07,-1.389183416534097584e-07,-1.420054159123744221e-07,-1.450924901713390857e-07,-1.481795644303037494e-07,-1.512666386892684130e-07,-1.543537129482330767e-07,-1.574407872071977403e-07,-1.605278614661624040e-07,-1.636149357251270676e-07,-1.667020099840917313e-07,-1.697890842430563949e-07,-1.728761585020210586e-07,-1.759632327609857222e-07,-1.790503070199503859e-07,-1.821373812789150495e-07,-1.852244555378797132e-07,-1.883115297968443768e-07,-1.913986040558090405e-07,-1.944856783147737041e-07 +0.000000000000000000e+00,-2.880911006499979504e-09,-5.761822012999959009e-09,-8.642733019499938513e-09,-1.152364402599991802e-08,-1.440455503249989752e-08,-1.728546603899987703e-08,-2.016637704549985818e-08,-2.304728805199983934e-08,-2.592819905849982050e-08,-2.880911006499980166e-08,-3.169002107149978282e-08,-3.457093207799976067e-08,-3.745184308449973852e-08,-4.033275409099971637e-08,-4.321366509749969422e-08,-4.609457610399967207e-08,-4.897548711049964992e-08,-5.185639811699962777e-08,-5.473730912349960562e-08,-5.761822012999958347e-08,-6.049913113649956132e-08,-6.338004214299953917e-08,-6.626095314949951702e-08,-6.914186415599949487e-08,-7.202277516249947272e-08,-7.490368616899945057e-08,-7.778459717549942842e-08,-8.066550818199940627e-08,-8.354641918849938412e-08,-8.642733019499936197e-08,-8.930824120149933982e-08,-9.218915220799931767e-08,-9.507006321449929552e-08,-9.795097422099927337e-08,-1.008318852274992512e-07,-1.037127962339992291e-07,-1.065937072404992069e-07,-1.094746182469991848e-07,-1.123555292534991626e-07,-1.152364402599991405e-07,-1.181173512664991183e-07,-1.209982622729990962e-07,-1.238791732794990740e-07,-1.267600842859990519e-07,-1.296409952924990297e-07,-1.325219062989990076e-07,-1.354028173054989854e-07,-1.382837283119989633e-07,-1.411646393184989411e-07,-1.440455503249989190e-07,-1.469264613314988968e-07,-1.498073723379988747e-07,-1.526882833444988525e-07,-1.555691943509988304e-07,-1.584501053574988082e-07,-1.613310163639987861e-07,-1.642119273704987639e-07,-1.670928383769987418e-07,-1.699737493834987196e-07,-1.728546603899986975e-07,-1.757355713964986753e-07,-1.786164824029986532e-07,-1.814973934094986310e-07 +0.000000000000000000e+00,-1.944183282506218219e-09,-3.888366565012436439e-09,-5.832549847518654658e-09,-7.776733130024872878e-09,-9.720916412531091097e-09,-1.166509969503730932e-08,-1.360928297754352754e-08,-1.555346626004974576e-08,-1.749764954255596232e-08,-1.944183282506217889e-08,-2.138601610756839545e-08,-2.333019939007461202e-08,-2.527438267258082858e-08,-2.721856595508704515e-08,-2.916274923759326171e-08,-3.110693252009947828e-08,-3.305111580260569484e-08,-3.499529908511191141e-08,-3.693948236761812797e-08,-3.888366565012434454e-08,-4.082784893263056110e-08,-4.277203221513677767e-08,-4.471621549764299423e-08,-4.666039878014921080e-08,-4.860458206265542736e-08,-5.054876534516164393e-08,-5.249294862766786049e-08,-5.443713191017407706e-08,-5.638131519268029362e-08,-5.832549847518651019e-08,-6.026968175769273337e-08,-6.221386504019895655e-08,-6.415804832270517974e-08,-6.610223160521140292e-08,-6.804641488771762610e-08,-6.999059817022384928e-08,-7.193478145273007247e-08,-7.387896473523629565e-08,-7.582314801774251883e-08,-7.776733130024874201e-08,-7.971151458275496520e-08,-8.165569786526118838e-08,-8.359988114776741156e-08,-8.554406443027363475e-08,-8.748824771277985793e-08,-8.943243099528608111e-08,-9.137661427779230429e-08,-9.332079756029852748e-08,-9.526498084280475066e-08,-9.720916412531097384e-08,-9.915334740781719702e-08,-1.010975306903234202e-07,-1.030417139728296434e-07,-1.049858972553358666e-07,-1.069300805378420898e-07,-1.088742638203483129e-07,-1.108184471028545361e-07,-1.127626303853607593e-07,-1.147068136678669825e-07,-1.166509969503732057e-07,-1.185951802328794288e-07,-1.205393635153856520e-07,-1.224835467978918752e-07 +0.000000000000000000e+00,-3.087074258960719240e-09,-6.174148517921438480e-09,-9.261222776882157306e-09,-1.234829703584287531e-08,-1.543537129480359165e-08,-1.852244555376430799e-08,-2.160951981272502434e-08,-2.469659407168574068e-08,-2.778366833064645703e-08,-3.087074258960717007e-08,-3.395781684856788310e-08,-3.704489110752859614e-08,-4.013196536648930917e-08,-4.321903962545002221e-08,-4.630611388441073525e-08,-4.939318814337144828e-08,-5.248026240233216132e-08,-5.556733666129287435e-08,-5.865441092025358739e-08,-6.174148517921430043e-08,-6.482855943817500684e-08,-6.791563369713571326e-08,-7.100270795609641968e-08,-7.408978221505712610e-08,-7.717685647401783252e-08,-8.026393073297853894e-08,-8.335100499193924536e-08,-8.643807925089995178e-08,-8.952515350986065819e-08,-9.261222776882136461e-08,-9.569930202778207103e-08,-9.878637628674277745e-08,-1.018734505457034839e-07,-1.049605248046641903e-07,-1.080475990636248967e-07,-1.111346733225856031e-07,-1.142217475815463095e-07,-1.173088218405070160e-07,-1.203958960994677224e-07,-1.234829703584284156e-07,-1.265700446173891087e-07,-1.296571188763498019e-07,-1.327441931353104951e-07,-1.358312673942711883e-07,-1.389183416532318815e-07,-1.420054159121925747e-07,-1.450924901711532678e-07,-1.481795644301139610e-07,-1.512666386890746542e-07,-1.543537129480353474e-07,-1.574407872069960406e-07,-1.605278614659567338e-07,-1.636149357249174270e-07,-1.667020099838781201e-07,-1.697890842428388133e-07,-1.728761585017995065e-07,-1.759632327607601997e-07,-1.790503070197208929e-07,-1.821373812786815861e-07,-1.852244555376422792e-07,-1.883115297966029724e-07,-1.913986040555636656e-07,-1.944856783145243588e-07 +0.000000000000000000e+00,-2.880911006495433733e-09,-5.761822012990867466e-09,-8.642733019486301613e-09,-1.152364402598173659e-08,-1.440455503247717156e-08,-1.728546603897260654e-08,-2.016637704546804151e-08,-2.304728805196347648e-08,-2.592819905845891146e-08,-2.880911006495434643e-08,-3.169002107144978141e-08,-3.457093207794521969e-08,-3.745184308444065797e-08,-4.033275409093609625e-08,-4.321366509743153454e-08,-4.609457610392697282e-08,-4.897548711042241110e-08,-5.185639811691784938e-08,-5.473730912341328767e-08,-5.761822012990872595e-08,-6.049913113640416423e-08,-6.338004214289960251e-08,-6.626095314939504080e-08,-6.914186415589047908e-08,-7.202277516238591736e-08,-7.490368616888135565e-08,-7.778459717537679393e-08,-8.066550818187223221e-08,-8.354641918836767049e-08,-8.642733019486310878e-08,-8.930824120135854706e-08,-9.218915220785398534e-08,-9.507006321434942362e-08,-9.795097422084486191e-08,-1.008318852273403002e-07,-1.037127962338357385e-07,-1.065937072403311768e-07,-1.094746182468266150e-07,-1.123555292533220533e-07,-1.152364402598174916e-07,-1.181173512663129299e-07,-1.209982622728083814e-07,-1.238791732793038329e-07,-1.267600842857992844e-07,-1.296409952922947360e-07,-1.325219062987901875e-07,-1.354028173052856390e-07,-1.382837283117810905e-07,-1.411646393182765420e-07,-1.440455503247719935e-07,-1.469264613312674451e-07,-1.498073723377628966e-07,-1.526882833442583481e-07,-1.555691943507537996e-07,-1.584501053572492511e-07,-1.613310163637447026e-07,-1.642119273702401542e-07,-1.670928383767356057e-07,-1.699737493832310572e-07,-1.728546603897265087e-07,-1.757355713962219602e-07,-1.786164824027174118e-07,-1.814973934092128633e-07 +0.000000000000000000e+00,-1.944183282501724974e-09,-3.888366565003449949e-09,-5.832549847505174923e-09,-7.776733130006899898e-09,-9.720916412508624872e-09,-1.166509969501034985e-08,-1.360928297751207482e-08,-1.555346626001379980e-08,-1.749764954251552312e-08,-1.944183282501724644e-08,-2.138601610751896976e-08,-2.333019939002069308e-08,-2.527438267252241640e-08,-2.721856595502413972e-08,-2.916274923752586304e-08,-3.110693252002758636e-08,-3.305111580252930968e-08,-3.499529908503103300e-08,-3.693948236753275632e-08,-3.888366565003447964e-08,-4.082784893253620296e-08,-4.277203221503792628e-08,-4.471621549753964960e-08,-4.666039878004137292e-08,-4.860458206254309624e-08,-5.054876534504481956e-08,-5.249294862754654288e-08,-5.443713191004826620e-08,-5.638131519254998952e-08,-5.832549847505171284e-08,-6.026968175755343616e-08,-6.221386504005515948e-08,-6.415804832255688280e-08,-6.610223160505860612e-08,-6.804641488756032944e-08,-6.999059817006205276e-08,-7.193478145256377608e-08,-7.387896473506549940e-08,-7.582314801756722272e-08,-7.776733130006894604e-08,-7.971151458257066936e-08,-8.165569786507239268e-08,-8.359988114757411600e-08,-8.554406443007583932e-08,-8.748824771257756264e-08,-8.943243099507928596e-08,-9.137661427758100928e-08,-9.332079756008273260e-08,-9.526498084258445592e-08,-9.720916412508617924e-08,-9.915334740758790256e-08,-1.010975306900896259e-07,-1.030417139725913492e-07,-1.049858972550930725e-07,-1.069300805375947958e-07,-1.088742638200965192e-07,-1.108184471025982425e-07,-1.127626303850999658e-07,-1.147068136676016891e-07,-1.166509969501034124e-07,-1.185951802326051358e-07,-1.205393635151068458e-07,-1.224835467976085427e-07 +0.000000000000000000e+00,-3.405814428574941858e-09,-6.811628857149883716e-09,-1.021744328572482516e-08,-1.362325771429976578e-08,-1.702907214287470805e-08,-2.043488657144965032e-08,-2.384070100002459259e-08,-2.724651542859953486e-08,-3.065232985717447714e-08,-3.405814428574941610e-08,-3.746395871432435506e-08,-4.086977314289929402e-08,-4.427558757147423299e-08,-4.768140200004917195e-08,-5.108721642862411091e-08,-5.449303085719904988e-08,-5.789884528577398884e-08,-6.130465971434892780e-08,-6.471047414292386676e-08,-6.811628857149880573e-08,-7.152210300007374469e-08,-7.492791742864868365e-08,-7.833373185722362262e-08,-8.173954628579856158e-08,-8.514536071437350054e-08,-8.855117514294843950e-08,-9.195698957152337847e-08,-9.536280400009831743e-08,-9.876861842867325639e-08,-1.021744328572481954e-07,-1.055802472858231343e-07,-1.089860617143980733e-07,-1.123918761429730122e-07,-1.157976905715479512e-07,-1.192035050001228902e-07,-1.226093194286978291e-07,-1.260151338572727681e-07,-1.294209482858477071e-07,-1.328267627144226460e-07,-1.362325771429975850e-07,-1.396383915715725239e-07,-1.430442060001474629e-07,-1.464500204287224019e-07,-1.498558348572973408e-07,-1.532616492858722798e-07,-1.566674637144472188e-07,-1.600732781430221577e-07,-1.634790925715970967e-07,-1.668849070001720357e-07,-1.702907214287469746e-07,-1.736965358573219136e-07,-1.771023502858968525e-07,-1.805081647144717915e-07,-1.839139791430467305e-07,-1.873197935716216694e-07,-1.907256080001966084e-07,-1.941314224287715474e-07,-1.975372368573464863e-07,-2.009430512859214253e-07,-2.043488657144963642e-07,-2.077546801430713032e-07,-2.111604945716462422e-07,-2.145663090002211811e-07 +0.000000000000000000e+00,-3.264382716983170532e-09,-6.528765433966341064e-09,-9.793148150949511183e-09,-1.305753086793268047e-08,-1.632191358491584977e-08,-1.958629630189901906e-08,-2.285067901888218835e-08,-2.611506173586535764e-08,-2.937944445284852693e-08,-3.264382716983169953e-08,-3.590820988681487213e-08,-3.917259260379804473e-08,-4.243697532078121733e-08,-4.570135803776438993e-08,-4.896574075474756253e-08,-5.223012347173073513e-08,-5.549450618871390773e-08,-5.875888890569708033e-08,-6.202327162268025955e-08,-6.528765433966343877e-08,-6.855203705664661798e-08,-7.181641977362979720e-08,-7.508080249061297642e-08,-7.834518520759615564e-08,-8.160956792457933485e-08,-8.487395064156251407e-08,-8.813833335854569329e-08,-9.140271607552887251e-08,-9.466709879251205172e-08,-9.793148150949523094e-08,-1.011958642264784102e-07,-1.044602469434615894e-07,-1.077246296604447686e-07,-1.109890123774279478e-07,-1.142533950944111270e-07,-1.175177778113943062e-07,-1.207821605283774855e-07,-1.240465432453606779e-07,-1.273109259623438704e-07,-1.305753086793270628e-07,-1.338396913963102553e-07,-1.371040741132934477e-07,-1.403684568302766402e-07,-1.436328395472598326e-07,-1.468972222642430251e-07,-1.501616049812262175e-07,-1.534259876982094100e-07,-1.566903704151926024e-07,-1.599547531321757949e-07,-1.632191358491589873e-07,-1.664835185661421798e-07,-1.697479012831253722e-07,-1.730122840001085647e-07,-1.762766667170917572e-07,-1.795410494340749496e-07,-1.828054321510581421e-07,-1.860698148680413345e-07,-1.893341975850245270e-07,-1.925985803020077194e-07,-1.958629630189909119e-07,-1.991273457359741043e-07,-2.023917284529572968e-07,-2.056561111699404892e-07 +0.000000000000000000e+00,-2.187149137643970552e-09,-4.374298275287941105e-09,-6.561447412931912071e-09,-8.748596550575883864e-09,-1.093574568821985566e-08,-1.312289482586382745e-08,-1.531004396350779924e-08,-1.749719310115177104e-08,-1.968434223879574283e-08,-2.187149137643971462e-08,-2.405864051408368642e-08,-2.624578965172765821e-08,-2.843293878937163000e-08,-3.062008792701559849e-08,-3.280723706465956697e-08,-3.499438620230353546e-08,-3.718153533994750394e-08,-3.936868447759147243e-08,-4.155583361523544091e-08,-4.374298275287940940e-08,-4.593013189052337788e-08,-4.811728102816734636e-08,-5.030443016581131485e-08,-5.249157930345528333e-08,-5.467872844109925182e-08,-5.686587757874322030e-08,-5.905302671638718879e-08,-6.124017585403115727e-08,-6.342732499167512576e-08,-6.561447412931909424e-08,-6.780162326696306273e-08,-6.998877240460703121e-08,-7.217592154225099969e-08,-7.436307067989496818e-08,-7.655021981753893666e-08,-7.873736895518290515e-08,-8.092451809282687363e-08,-8.311166723047084212e-08,-8.529881636811481060e-08,-8.748596550575877909e-08,-8.967311464340274757e-08,-9.186026378104671605e-08,-9.404741291869068454e-08,-9.623456205633465302e-08,-9.842171119397862151e-08,-1.006088603316225900e-07,-1.027960094692665585e-07,-1.049831586069105270e-07,-1.071703077445544954e-07,-1.093574568821984639e-07,-1.115446060198424324e-07,-1.137317551574864009e-07,-1.159189042951303694e-07,-1.181060534327743379e-07,-1.202932025704182931e-07,-1.224803517080622351e-07,-1.246675008457061771e-07,-1.268546499833501192e-07,-1.290417991209940612e-07,-1.312289482586380032e-07,-1.334160973962819452e-07,-1.356032465339258872e-07,-1.377903956715698292e-07 +0.000000000000000000e+00,-3.405814428571973520e-09,-6.811628857143947041e-09,-1.021744328571591973e-08,-1.362325771428789243e-08,-1.702907214285986512e-08,-2.043488657143183947e-08,-2.384070100000381382e-08,-2.724651542857578816e-08,-3.065232985714776251e-08,-3.405814428571973686e-08,-3.746395871429171121e-08,-4.086977314286368555e-08,-4.427558757143565990e-08,-4.768140200000763425e-08,-5.108721642857960860e-08,-5.449303085715158294e-08,-5.789884528572355729e-08,-6.130465971429553826e-08,-6.471047414286751260e-08,-6.811628857143948695e-08,-7.152210300001146130e-08,-7.492791742858343565e-08,-7.833373185715540999e-08,-8.173954628572738434e-08,-8.514536071429935869e-08,-8.855117514287133304e-08,-9.195698957144330738e-08,-9.536280400001528173e-08,-9.876861842858725608e-08,-1.021744328571592304e-07,-1.055802472857312048e-07,-1.089860617143031791e-07,-1.123918761428751535e-07,-1.157976905714471278e-07,-1.192035050000191022e-07,-1.226093194285910765e-07,-1.260151338571630509e-07,-1.294209482857350252e-07,-1.328267627143069996e-07,-1.362325771428789739e-07,-1.396383915714509482e-07,-1.430442060000229226e-07,-1.464500204285948969e-07,-1.498558348571668713e-07,-1.532616492857388456e-07,-1.566674637143108200e-07,-1.600732781428827943e-07,-1.634790925714547687e-07,-1.668849070000267430e-07,-1.702907214285987174e-07,-1.736965358571706917e-07,-1.771023502857426661e-07,-1.805081647143146404e-07,-1.839139791428866148e-07,-1.873197935714585891e-07,-1.907256080000305635e-07,-1.941314224286025378e-07,-1.975372368571745122e-07,-2.009430512857464865e-07,-2.043488657143184609e-07,-2.077546801428904352e-07,-2.111604945714624095e-07,-2.145663090000343839e-07 +0.000000000000000000e+00,-3.264382716979710849e-09,-6.528765433959421698e-09,-9.793148150939131720e-09,-1.305753086791884174e-08,-1.632191358489855176e-08,-1.958629630187826344e-08,-2.285067901885797512e-08,-2.611506173583768679e-08,-2.937944445281739847e-08,-3.264382716979711015e-08,-3.590820988677682182e-08,-3.917259260375653350e-08,-4.243697532073624518e-08,-4.570135803771595685e-08,-4.896574075469566853e-08,-5.223012347167538020e-08,-5.549450618865509188e-08,-5.875888890563480356e-08,-6.202327162261450862e-08,-6.528765433959420706e-08,-6.855203705657390550e-08,-7.181641977355360394e-08,-7.508080249053330238e-08,-7.834518520751300082e-08,-8.160956792449269926e-08,-8.487395064147239771e-08,-8.813833335845209615e-08,-9.140271607543179459e-08,-9.466709879241149303e-08,-9.793148150939119147e-08,-1.011958642263708899e-07,-1.044602469433505884e-07,-1.077246296603302868e-07,-1.109890123773099852e-07,-1.142533950942896837e-07,-1.175177778112693821e-07,-1.207821605282490806e-07,-1.240465432452287790e-07,-1.273109259622084774e-07,-1.305753086791881759e-07,-1.338396913961678743e-07,-1.371040741131475728e-07,-1.403684568301272712e-07,-1.436328395471069697e-07,-1.468972222640866681e-07,-1.501616049810663665e-07,-1.534259876980460650e-07,-1.566903704150257634e-07,-1.599547531320054619e-07,-1.632191358489851603e-07,-1.664835185659648587e-07,-1.697479012829445572e-07,-1.730122839999242556e-07,-1.762766667169039541e-07,-1.795410494338836525e-07,-1.828054321508633510e-07,-1.860698148678430494e-07,-1.893341975848227478e-07,-1.925985803018024463e-07,-1.958629630187821447e-07,-1.991273457357618432e-07,-2.023917284527415416e-07,-2.056561111697212400e-07 +0.000000000000000000e+00,-2.187149137640530722e-09,-4.374298275281061444e-09,-6.561447412921592166e-09,-8.748596550562122888e-09,-1.093574568820265361e-08,-1.312289482584318433e-08,-1.531004396348371505e-08,-1.749719310112424578e-08,-1.968434223876477650e-08,-2.187149137640530722e-08,-2.405864051404583794e-08,-2.624578965168636866e-08,-2.843293878932689938e-08,-3.062008792696743011e-08,-3.280723706460796414e-08,-3.499438620224849817e-08,-3.718153533988903220e-08,-3.936868447752956623e-08,-4.155583361517010026e-08,-4.374298275281063429e-08,-4.593013189045116832e-08,-4.811728102809170235e-08,-5.030443016573223638e-08,-5.249157930337277041e-08,-5.467872844101330444e-08,-5.686587757865383847e-08,-5.905302671629437250e-08,-6.124017585393489992e-08,-6.342732499157542733e-08,-6.561447412921595474e-08,-6.780162326685648216e-08,-6.998877240449700957e-08,-7.217592154213753698e-08,-7.436307067977806440e-08,-7.655021981741859181e-08,-7.873736895505911922e-08,-8.092451809269964664e-08,-8.311166723034017405e-08,-8.529881636798070146e-08,-8.748596550562122888e-08,-8.967311464326175629e-08,-9.186026378090228370e-08,-9.404741291854281112e-08,-9.623456205618333853e-08,-9.842171119382386594e-08,-1.006088603314643934e-07,-1.027960094691049208e-07,-1.049831586067454482e-07,-1.071703077443859756e-07,-1.093574568820265030e-07,-1.115446060196670304e-07,-1.137317551573075578e-07,-1.159189042949480852e-07,-1.181060534325886127e-07,-1.202932025702291401e-07,-1.224803517078696675e-07,-1.246675008455101949e-07,-1.268546499831507223e-07,-1.290417991207912497e-07,-1.312289482584317771e-07,-1.334160973960723046e-07,-1.356032465337128320e-07,-1.377903956713533594e-07 +0.000000000000000000e+00,-3.569528177314151103e-09,-7.139056354628302206e-09,-1.070858453194245289e-08,-1.427811270925660276e-08,-1.784764088657075096e-08,-2.141716906388489917e-08,-2.498669724119904738e-08,-2.855622541851319559e-08,-3.212575359582734380e-08,-3.569528177314148869e-08,-3.926480995045563359e-08,-4.283433812776977849e-08,-4.640386630508392339e-08,-4.997339448239806829e-08,-5.354292265971221319e-08,-5.711245083702635809e-08,-6.068197901434049637e-08,-6.425150719165463465e-08,-6.782103536896877293e-08,-7.139056354628291121e-08,-7.496009172359704950e-08,-7.852961990091118778e-08,-8.209914807822532606e-08,-8.566867625553946434e-08,-8.923820443285360262e-08,-9.280773261016774090e-08,-9.637726078748187919e-08,-9.994678896479601747e-08,-1.035163171421101557e-07,-1.070858453194242940e-07,-1.106553734967384323e-07,-1.142249016740525706e-07,-1.177944298513667089e-07,-1.213639580286808339e-07,-1.249334862059949590e-07,-1.285030143833090840e-07,-1.320725425606232091e-07,-1.356420707379373341e-07,-1.392115989152514592e-07,-1.427811270925655842e-07,-1.463506552698797092e-07,-1.499201834471938343e-07,-1.534897116245079593e-07,-1.570592398018220844e-07,-1.606287679791362094e-07,-1.641982961564503345e-07,-1.677678243337644595e-07,-1.713373525110785846e-07,-1.749068806883927096e-07,-1.784764088657068347e-07,-1.820459370430209597e-07,-1.856154652203350848e-07,-1.891849933976492098e-07,-1.927545215749633349e-07,-1.963240497522774599e-07,-1.998935779295915849e-07,-2.034631061069057100e-07,-2.070326342842198350e-07,-2.106021624615339601e-07,-2.141716906388480851e-07,-2.177412188161622102e-07,-2.213107469934763352e-07,-2.248802751707904603e-07 +0.000000000000000000e+00,-3.509030496013811235e-09,-7.018060992027622469e-09,-1.052709148804143329e-08,-1.403612198405524328e-08,-1.754515248006905328e-08,-2.105418297608286327e-08,-2.456321347209667327e-08,-2.807224396811048326e-08,-3.158127446412428995e-08,-3.509030496013809994e-08,-3.859933545615190993e-08,-4.210836595216571993e-08,-4.561739644817952992e-08,-4.912642694419333991e-08,-5.263545744020714991e-08,-5.614448793622095990e-08,-5.965351843223476990e-08,-6.316254892824857989e-08,-6.667157942426238988e-08,-7.018060992027619988e-08,-7.368964041629000987e-08,-7.719867091230381987e-08,-8.070770140831762986e-08,-8.421673190433143985e-08,-8.772576240034524985e-08,-9.123479289635905984e-08,-9.474382339237286984e-08,-9.825285388838667983e-08,-1.017618843844004898e-07,-1.052709148804142998e-07,-1.087799453764281098e-07,-1.122889758724419198e-07,-1.157980063684557298e-07,-1.193070368644695398e-07,-1.228160673604833630e-07,-1.263250978564971863e-07,-1.298341283525110095e-07,-1.333431588485248327e-07,-1.368521893445386559e-07,-1.403612198405524792e-07,-1.438702503365663024e-07,-1.473792808325801256e-07,-1.508883113285939489e-07,-1.543973418246077721e-07,-1.579063723206215953e-07,-1.614154028166354185e-07,-1.649244333126492418e-07,-1.684334638086630650e-07,-1.719424943046768882e-07,-1.754515248006907115e-07,-1.789605552967045347e-07,-1.824695857927183579e-07,-1.859786162887321811e-07,-1.894876467847460044e-07,-1.929966772807598276e-07,-1.965057077767736508e-07,-2.000147382727874741e-07,-2.035237687688012973e-07,-2.070327992648151205e-07,-2.105418297608289437e-07,-2.140508602568427670e-07,-2.175598907528565902e-07,-2.210689212488704134e-07 +0.000000000000000000e+00,-2.309851311869667741e-09,-4.619702623739335481e-09,-6.929553935609003635e-09,-9.239405247478672617e-09,-1.154925655934834160e-08,-1.385910787121801058e-08,-1.616895918308768121e-08,-1.847881049495735185e-08,-2.078866180682702249e-08,-2.309851311869669312e-08,-2.540836443056636376e-08,-2.771821574243603439e-08,-3.002806705430570503e-08,-3.233791836617537566e-08,-3.464776967804504630e-08,-3.695762098991471694e-08,-3.926747230178438757e-08,-4.157732361365405821e-08,-4.388717492552372884e-08,-4.619702623739339948e-08,-4.850687754926307011e-08,-5.081672886113274075e-08,-5.312658017300241139e-08,-5.543643148487208202e-08,-5.774628279674175266e-08,-6.005613410861142329e-08,-6.236598542048109393e-08,-6.467583673235076456e-08,-6.698568804422043520e-08,-6.929553935609010584e-08,-7.160539066795977647e-08,-7.391524197982944711e-08,-7.622509329169911774e-08,-7.853494460356878838e-08,-8.084479591543845901e-08,-8.315464722730812965e-08,-8.546449853917780029e-08,-8.777434985104747092e-08,-9.008420116291714156e-08,-9.239405247478681219e-08,-9.470390378665648283e-08,-9.701375509852615346e-08,-9.932360641039582410e-08,-1.016334577222654947e-07,-1.039433090341351654e-07,-1.062531603460048360e-07,-1.085630116578745066e-07,-1.108728629697441773e-07,-1.131827142816138479e-07,-1.154925655934835185e-07,-1.178024169053531892e-07,-1.201122682172228731e-07,-1.224221195290925569e-07,-1.247319708409622408e-07,-1.270418221528319247e-07,-1.293516734647016085e-07,-1.316615247765712924e-07,-1.339713760884409763e-07,-1.362812274003106601e-07,-1.385910787121803440e-07,-1.409009300240500279e-07,-1.432107813359197118e-07,-1.455206326477893956e-07 +0.000000000000000000e+00,-3.569528177311904894e-09,-7.139056354623809788e-09,-1.070858453193571468e-08,-1.427811270924761958e-08,-1.784764088655952447e-08,-2.141716906387142936e-08,-2.498669724118333426e-08,-2.855622541849523915e-08,-3.212575359580714074e-08,-3.569528177311904232e-08,-3.926480995043094391e-08,-4.283433812774284549e-08,-4.640386630505474708e-08,-4.997339448236664866e-08,-5.354292265967855025e-08,-5.711245083699045183e-08,-6.068197901430235342e-08,-6.425150719161425500e-08,-6.782103536892615659e-08,-7.139056354623805817e-08,-7.496009172354995976e-08,-7.852961990086186134e-08,-8.209914807817376293e-08,-8.566867625548566451e-08,-8.923820443279756610e-08,-9.280773261010946768e-08,-9.637726078742136927e-08,-9.994678896473327085e-08,-1.035163171420451724e-07,-1.070858453193570740e-07,-1.106553734966689756e-07,-1.142249016739808772e-07,-1.177944298512927788e-07,-1.213639580286046804e-07,-1.249334862059165820e-07,-1.285030143832284835e-07,-1.320725425605403851e-07,-1.356420707378522867e-07,-1.392115989151641883e-07,-1.427811270924760899e-07,-1.463506552697879915e-07,-1.499201834470998930e-07,-1.534897116244117946e-07,-1.570592398017236962e-07,-1.606287679790355978e-07,-1.641982961563474994e-07,-1.677678243336594010e-07,-1.713373525109713026e-07,-1.749068806882832041e-07,-1.784764088655951057e-07,-1.820459370429070073e-07,-1.856154652202189089e-07,-1.891849933975308105e-07,-1.927545215748427121e-07,-1.963240497521546137e-07,-1.998935779294665152e-07,-2.034631061067784168e-07,-2.070326342840903184e-07,-2.106021624614022200e-07,-2.141716906387141216e-07,-2.177412188160260232e-07,-2.213107469933379247e-07,-2.248802751706498263e-07 +0.000000000000000000e+00,-3.509030496011230431e-09,-7.018060992022460862e-09,-1.052709148803369088e-08,-1.403612198404492007e-08,-1.754515248005614926e-08,-2.105418297606737845e-08,-2.456321347207860764e-08,-2.807224396808983683e-08,-3.158127446410106271e-08,-3.509030496011229190e-08,-3.859933545612352109e-08,-4.210836595213475028e-08,-4.561739644814597948e-08,-4.912642694415720867e-08,-5.263545744016843786e-08,-5.614448793617966705e-08,-5.965351843219089624e-08,-6.316254892820212543e-08,-6.667157942421335462e-08,-7.018060992022458381e-08,-7.368964041623581300e-08,-7.719867091224704219e-08,-8.070770140825827138e-08,-8.421673190426950057e-08,-8.772576240028072976e-08,-9.123479289629195895e-08,-9.474382339230318814e-08,-9.825285388831441733e-08,-1.017618843843256465e-07,-1.052709148803368757e-07,-1.087799453763481049e-07,-1.122889758723593341e-07,-1.157980063683705633e-07,-1.193070368643817925e-07,-1.228160673603930217e-07,-1.263250978564042509e-07,-1.298341283524154800e-07,-1.333431588484267092e-07,-1.368521893444379384e-07,-1.403612198404491676e-07,-1.438702503364603968e-07,-1.473792808324716260e-07,-1.508883113284828552e-07,-1.543973418244940844e-07,-1.579063723205053136e-07,-1.614154028165165428e-07,-1.649244333125277719e-07,-1.684334638085390011e-07,-1.719424943045502303e-07,-1.754515248005614595e-07,-1.789605552965726887e-07,-1.824695857925839179e-07,-1.859786162885951471e-07,-1.894876467846063763e-07,-1.929966772806176055e-07,-1.965057077766288347e-07,-2.000147382726400639e-07,-2.035237687686512930e-07,-2.070327992646625222e-07,-2.105418297606737514e-07,-2.140508602566849806e-07,-2.175598907526962098e-07,-2.210689212487074390e-07 +0.000000000000000000e+00,-2.309851311867193230e-09,-4.619702623734386459e-09,-6.929553935601579689e-09,-9.239405247468772919e-09,-1.154925655933596532e-08,-1.385910787120315772e-08,-1.616895918307035013e-08,-1.847881049493754253e-08,-2.078866180680473493e-08,-2.309851311867192733e-08,-2.540836443053911974e-08,-2.771821574240631214e-08,-3.002806705427350454e-08,-3.233791836614070025e-08,-3.464776967800789596e-08,-3.695762098987509168e-08,-3.926747230174228739e-08,-4.157732361360948310e-08,-4.388717492547667881e-08,-4.619702623734387452e-08,-4.850687754921107023e-08,-5.081672886107826594e-08,-5.312658017294546165e-08,-5.543643148481265737e-08,-5.774628279667985308e-08,-6.005613410854704879e-08,-6.236598542041424450e-08,-6.467583673228144021e-08,-6.698568804414863592e-08,-6.929553935601583163e-08,-7.160539066788302735e-08,-7.391524197975022306e-08,-7.622509329161741877e-08,-7.853494460348461448e-08,-8.084479591535181019e-08,-8.315464722721900590e-08,-8.546449853908620161e-08,-8.777434985095339732e-08,-9.008420116282059304e-08,-9.239405247468778875e-08,-9.470390378655498446e-08,-9.701375509842218017e-08,-9.932360641028937588e-08,-1.016334577221565716e-07,-1.039433090340237673e-07,-1.062531603458909630e-07,-1.085630116577581587e-07,-1.108728629696253544e-07,-1.131827142814925501e-07,-1.154925655933597459e-07,-1.178024169052269416e-07,-1.201122682170941240e-07,-1.224221195289612933e-07,-1.247319708408284625e-07,-1.270418221526956318e-07,-1.293516734645628010e-07,-1.316615247764299703e-07,-1.339713760882971395e-07,-1.362812274001643087e-07,-1.385910787120314780e-07,-1.409009300238986472e-07,-1.432107813357658165e-07,-1.455206326476329857e-07 +0.000000000000000000e+00,-3.560759658736318816e-09,-7.121519317472637632e-09,-1.068227897620895603e-08,-1.424303863494527361e-08,-1.780379829368158953e-08,-2.136455795241790545e-08,-2.492531761115422137e-08,-2.848607726989053729e-08,-3.204683692862685321e-08,-3.560759658736316583e-08,-3.916835624609947844e-08,-4.272911590483579105e-08,-4.628987556357210366e-08,-4.985063522230841627e-08,-5.341139488104472889e-08,-5.697215453978104150e-08,-6.053291419851734749e-08,-6.409367385725365349e-08,-6.765443351598995948e-08,-7.121519317472626548e-08,-7.477595283346257147e-08,-7.833671249219887747e-08,-8.189747215093518346e-08,-8.545823180967148946e-08,-8.901899146840779545e-08,-9.257975112714410144e-08,-9.614051078588040744e-08,-9.970127044461671343e-08,-1.032620301033530194e-07,-1.068227897620893254e-07,-1.103835494208256314e-07,-1.139443090795619374e-07,-1.175050687382982434e-07,-1.210658283970345362e-07,-1.246265880557708289e-07,-1.281873477145071217e-07,-1.317481073732434144e-07,-1.353088670319797072e-07,-1.388696266907160000e-07,-1.424303863494522927e-07,-1.459911460081885855e-07,-1.495519056669248782e-07,-1.531126653256611710e-07,-1.566734249843974638e-07,-1.602341846431337565e-07,-1.637949443018700493e-07,-1.673557039606063420e-07,-1.709164636193426348e-07,-1.744772232780789276e-07,-1.780379829368152203e-07,-1.815987425955515131e-07,-1.851595022542878058e-07,-1.887202619130240986e-07,-1.922810215717603914e-07,-1.958417812304966841e-07,-1.994025408892329769e-07,-2.029633005479692696e-07,-2.065240602067055624e-07,-2.100848198654418552e-07,-2.136455795241781479e-07,-2.172063391829144407e-07,-2.207670988416507334e-07,-2.243278585003870262e-07 +0.000000000000000000e+00,-3.588419072634738267e-09,-7.176838145269476533e-09,-1.076525721790421521e-08,-1.435367629053895472e-08,-1.794209536317369423e-08,-2.153051443580843374e-08,-2.511893350844317324e-08,-2.870735258107791275e-08,-3.229577165371264895e-08,-3.588419072634738184e-08,-3.947260979898211473e-08,-4.306102887161684762e-08,-4.664944794425158051e-08,-5.023786701688631340e-08,-5.382628608952104629e-08,-5.741470516215577918e-08,-6.100312423479051207e-08,-6.459154330742524496e-08,-6.817996238005997785e-08,-7.176838145269471074e-08,-7.535680052532944363e-08,-7.894521959796417652e-08,-8.253363867059890941e-08,-8.612205774323364230e-08,-8.971047681586837519e-08,-9.329889588850310808e-08,-9.688731496113784097e-08,-1.004757340337725739e-07,-1.040641531064073067e-07,-1.076525721790420396e-07,-1.112409912516767725e-07,-1.148294103243115054e-07,-1.184178293969462383e-07,-1.220062484695809712e-07,-1.255946675422156909e-07,-1.291830866148504105e-07,-1.327715056874851302e-07,-1.363599247601198498e-07,-1.399483438327545695e-07,-1.435367629053892891e-07,-1.471251819780240088e-07,-1.507136010506587284e-07,-1.543020201232934481e-07,-1.578904391959281678e-07,-1.614788582685628874e-07,-1.650672773411976071e-07,-1.686556964138323267e-07,-1.722441154864670464e-07,-1.758325345591017660e-07,-1.794209536317364857e-07,-1.830093727043712053e-07,-1.865977917770059250e-07,-1.901862108496406446e-07,-1.937746299222753643e-07,-1.973630489949100840e-07,-2.009514680675448036e-07,-2.045398871401795233e-07,-2.081283062128142429e-07,-2.117167252854489626e-07,-2.153051443580836822e-07,-2.188935634307184019e-07,-2.224819825033531215e-07,-2.260704015759878412e-07 +0.000000000000000000e+00,-2.293312442827041868e-09,-4.586624885654083737e-09,-6.879937328481125605e-09,-9.173249771308167473e-09,-1.146656221413520851e-08,-1.375987465696224956e-08,-1.605318709978929060e-08,-1.834649954261633164e-08,-2.063981198544337268e-08,-2.293312442827041372e-08,-2.522643687109745476e-08,-2.751974931392449580e-08,-2.981306175675153684e-08,-3.210637419957858119e-08,-3.439968664240562554e-08,-3.669299908523266989e-08,-3.898631152805971424e-08,-4.127962397088675859e-08,-4.357293641371380294e-08,-4.586624885654084729e-08,-4.815956129936789164e-08,-5.045287374219493599e-08,-5.274618618502198034e-08,-5.503949862784902469e-08,-5.733281107067606904e-08,-5.962612351350311339e-08,-6.191943595633016436e-08,-6.421274839915721532e-08,-6.650606084198426629e-08,-6.879937328481131726e-08,-7.109268572763836823e-08,-7.338599817046541919e-08,-7.567931061329247016e-08,-7.797262305611952113e-08,-8.026593549894657210e-08,-8.255924794177362306e-08,-8.485256038460067403e-08,-8.714587282742772500e-08,-8.943918527025477596e-08,-9.173249771308182693e-08,-9.402581015590887790e-08,-9.631912259873592887e-08,-9.861243504156297983e-08,-1.009057474843900308e-07,-1.031990599272170818e-07,-1.054923723700441327e-07,-1.077856848128711837e-07,-1.100789972556982347e-07,-1.123723096985252856e-07,-1.146656221413523366e-07,-1.169589345841793876e-07,-1.192522470270064385e-07,-1.215455594698334895e-07,-1.238388719126605405e-07,-1.261321843554875914e-07,-1.284254967983146424e-07,-1.307188092411416934e-07,-1.330121216839687443e-07,-1.353054341267957953e-07,-1.375987465696228463e-07,-1.398920590124498972e-07,-1.421853714552769482e-07,-1.444786838981039992e-07 +0.000000000000000000e+00,-3.560759658734771161e-09,-7.121519317469542322e-09,-1.068227897620431390e-08,-1.424303863493908630e-08,-1.780379829367386035e-08,-2.136455795240863441e-08,-2.492531761114340847e-08,-2.848607726987818252e-08,-3.204683692861295658e-08,-3.560759658734773394e-08,-3.916835624608251131e-08,-4.272911590481728867e-08,-4.628987556355206604e-08,-4.985063522228684340e-08,-5.341139488102162077e-08,-5.697215453975639813e-08,-6.053291419849116888e-08,-6.409367385722593963e-08,-6.765443351596071038e-08,-7.121519317469548112e-08,-7.477595283343025187e-08,-7.833671249216502262e-08,-8.189747215089979337e-08,-8.545823180963456411e-08,-8.901899146836933486e-08,-9.257975112710410561e-08,-9.614051078583887636e-08,-9.970127044457364710e-08,-1.032620301033084179e-07,-1.068227897620431886e-07,-1.103835494207779593e-07,-1.139443090795127301e-07,-1.175050687382475008e-07,-1.210658283969822848e-07,-1.246265880557170688e-07,-1.281873477144518528e-07,-1.317481073731866368e-07,-1.353088670319214208e-07,-1.388696266906562047e-07,-1.424303863493909887e-07,-1.459911460081257727e-07,-1.495519056668605567e-07,-1.531126653255953407e-07,-1.566734249843301246e-07,-1.602341846430649086e-07,-1.637949443017996926e-07,-1.673557039605344766e-07,-1.709164636192692606e-07,-1.744772232780040446e-07,-1.780379829367388285e-07,-1.815987425954736125e-07,-1.851595022542083965e-07,-1.887202619129431805e-07,-1.922810215716779645e-07,-1.958417812304127485e-07,-1.994025408891475324e-07,-2.029633005478823164e-07,-2.065240602066171004e-07,-2.100848198653518844e-07,-2.136455795240866684e-07,-2.172063391828214523e-07,-2.207670988415562363e-07,-2.243278585002910203e-07 +0.000000000000000000e+00,-3.588419072632850641e-09,-7.176838145265701281e-09,-1.076525721789855234e-08,-1.435367629053140422e-08,-1.794209536316425444e-08,-2.153051443579710467e-08,-2.511893350842995490e-08,-2.870735258106280512e-08,-3.229577165369565535e-08,-3.588419072632850889e-08,-3.947260979896136242e-08,-4.306102887159421596e-08,-4.664944794422706949e-08,-5.023786701685992303e-08,-5.382628608949277656e-08,-5.741470516212563010e-08,-6.100312423475848364e-08,-6.459154330739133717e-08,-6.817996238002419071e-08,-7.176838145265704424e-08,-7.535680052528989778e-08,-7.894521959792275131e-08,-8.253363867055560485e-08,-8.612205774318845839e-08,-8.971047681582131192e-08,-9.329889588845416546e-08,-9.688731496108701899e-08,-1.004757340337198725e-07,-1.040641531063527261e-07,-1.076525721789855796e-07,-1.112409912516184331e-07,-1.148294103242512867e-07,-1.184178293968841402e-07,-1.220062484695169937e-07,-1.255946675421498340e-07,-1.291830866147826743e-07,-1.327715056874155146e-07,-1.363599247600483549e-07,-1.399483438326811952e-07,-1.435367629053140355e-07,-1.471251819779468758e-07,-1.507136010505797161e-07,-1.543020201232125564e-07,-1.578904391958453967e-07,-1.614788582684782371e-07,-1.650672773411110774e-07,-1.686556964137439177e-07,-1.722441154863767580e-07,-1.758325345590095983e-07,-1.794209536316424386e-07,-1.830093727042752789e-07,-1.865977917769081192e-07,-1.901862108495409595e-07,-1.937746299221737998e-07,-1.973630489948066401e-07,-2.009514680674394804e-07,-2.045398871400723207e-07,-2.081283062127051610e-07,-2.117167252853380013e-07,-2.153051443579708416e-07,-2.188935634306036819e-07,-2.224819825032365222e-07,-2.260704015758693625e-07 +0.000000000000000000e+00,-2.293312442825387921e-09,-4.586624885650775841e-09,-6.879937328476163348e-09,-9.173249771301550028e-09,-1.146656221412693671e-08,-1.375987465695232339e-08,-1.605318709977771007e-08,-1.834649954260309675e-08,-2.063981198542848343e-08,-2.293312442825387011e-08,-2.522643687107925679e-08,-2.751974931390464347e-08,-2.981306175673003015e-08,-3.210637419955542014e-08,-3.439968664238081012e-08,-3.669299908520620011e-08,-3.898631152803159010e-08,-4.127962397085698009e-08,-4.357293641368237008e-08,-4.586624885650776007e-08,-4.815956129933315006e-08,-5.045287374215854004e-08,-5.274618618498393003e-08,-5.503949862780932002e-08,-5.733281107063471001e-08,-5.962612351346010000e-08,-6.191943595628548337e-08,-6.421274839911086674e-08,-6.650606084193625011e-08,-6.879937328476163348e-08,-7.109268572758701685e-08,-7.338599817041240022e-08,-7.567931061323778360e-08,-7.797262305606316697e-08,-8.026593549888855034e-08,-8.255924794171393371e-08,-8.485256038453931708e-08,-8.714587282736470045e-08,-8.943918527019008382e-08,-9.173249771301546719e-08,-9.402581015584085056e-08,-9.631912259866623394e-08,-9.861243504149161731e-08,-1.009057474843170007e-07,-1.031990599271423840e-07,-1.054923723699677674e-07,-1.077856848127931508e-07,-1.100789972556185342e-07,-1.123723096984439175e-07,-1.146656221412693009e-07,-1.169589345840946843e-07,-1.192522470269200676e-07,-1.215455594697454510e-07,-1.238388719125708344e-07,-1.261321843553962178e-07,-1.284254967982216011e-07,-1.307188092410469845e-07,-1.330121216838723679e-07,-1.353054341266977512e-07,-1.375987465695231346e-07,-1.398920590123485180e-07,-1.421853714551739014e-07,-1.444786838979992847e-07 +0.000000000000000000e+00,-3.489011322353469688e-09,-6.978022644706939377e-09,-1.046703396706040865e-08,-1.395604528941387710e-08,-1.744505661176734555e-08,-2.093406793412081399e-08,-2.442307925647428244e-08,-2.791209057882775089e-08,-3.140110190118122265e-08,-3.489011322353469771e-08,-3.837912454588817277e-08,-4.186813586824164784e-08,-4.535714719059512290e-08,-4.884615851294859797e-08,-5.233516983530207303e-08,-5.582418115765554810e-08,-5.931319248000902316e-08,-6.280220380236249823e-08,-6.629121512471597329e-08,-6.978022644706944836e-08,-7.326923776942292342e-08,-7.675824909177639849e-08,-8.024726041412987355e-08,-8.373627173648334862e-08,-8.722528305883682368e-08,-9.071429438119029875e-08,-9.420330570354377381e-08,-9.769231702589724888e-08,-1.011813283482507239e-07,-1.046703396706041990e-07,-1.081593509929576741e-07,-1.116483623153111491e-07,-1.151373736376646242e-07,-1.186263849600180993e-07,-1.221153962823715743e-07,-1.256044076047250494e-07,-1.290934189270785245e-07,-1.325824302494319995e-07,-1.360714415717854746e-07,-1.395604528941389497e-07,-1.430494642164924247e-07,-1.465384755388458998e-07,-1.500274868611993749e-07,-1.535164981835528499e-07,-1.570055095059063250e-07,-1.604945208282598000e-07,-1.639835321506132751e-07,-1.674725434729667502e-07,-1.709615547953202252e-07,-1.744505661176737003e-07,-1.779395774400271754e-07,-1.814285887623806504e-07,-1.849176000847341255e-07,-1.884066114070876006e-07,-1.918956227294410756e-07,-1.953846340517945507e-07,-1.988736453741480258e-07,-2.023626566965015008e-07,-2.058516680188549759e-07,-2.093406793412084510e-07,-2.128296906635619260e-07,-2.163187019859154011e-07,-2.198077133082688762e-07 +0.000000000000000000e+00,-3.489011322352141236e-09,-6.978022644704282472e-09,-1.046703396705642330e-08,-1.395604528940856329e-08,-1.744505661176070494e-08,-2.093406793411284659e-08,-2.442307925646498824e-08,-2.791209057881712989e-08,-3.140110190116927154e-08,-3.489011322352140988e-08,-3.837912454587354822e-08,-4.186813586822568656e-08,-4.535714719057782490e-08,-4.884615851292996325e-08,-5.233516983528210159e-08,-5.582418115763423993e-08,-5.931319247998637827e-08,-6.280220380233851661e-08,-6.629121512469065495e-08,-6.978022644704279329e-08,-7.326923776939493163e-08,-7.675824909174706997e-08,-8.024726041409920831e-08,-8.373627173645134666e-08,-8.722528305880348500e-08,-9.071429438115562334e-08,-9.420330570350776168e-08,-9.769231702585990002e-08,-1.011813283482120384e-07,-1.046703396705641767e-07,-1.081593509929163150e-07,-1.116483623152684534e-07,-1.151373736376205917e-07,-1.186263849599727301e-07,-1.221153962823248816e-07,-1.256044076046770332e-07,-1.290934189270291848e-07,-1.325824302493813364e-07,-1.360714415717334879e-07,-1.395604528940856395e-07,-1.430494642164377911e-07,-1.465384755387899427e-07,-1.500274868611420943e-07,-1.535164981834942458e-07,-1.570055095058463974e-07,-1.604945208281985490e-07,-1.639835321505507006e-07,-1.674725434729028521e-07,-1.709615547952550037e-07,-1.744505661176071553e-07,-1.779395774399593069e-07,-1.814285887623114584e-07,-1.849176000846636100e-07,-1.884066114070157616e-07,-1.918956227293679132e-07,-1.953846340517200647e-07,-1.988736453740722163e-07,-2.023626566964243679e-07,-2.058516680187765195e-07,-2.093406793411286710e-07,-2.128296906634808226e-07,-2.163187019858329742e-07,-2.198077133081851258e-07 +0.000000000000000000e+00,-4.609942474029516828e-09,-9.219884948059033656e-09,-1.382982742208855131e-08,-1.843976989611807062e-08,-2.304971237014758993e-08,-2.765965484417710924e-08,-3.226959731820663186e-08,-3.687953979223615448e-08,-4.148948226626567710e-08,-4.609942474029519972e-08,-5.070936721432472233e-08,-5.531930968835424495e-08,-5.992925216238376757e-08,-6.453919463641329019e-08,-6.914913711044281281e-08,-7.375907958447233543e-08,-7.836902205850185804e-08,-8.297896453253138066e-08,-8.758890700656090328e-08,-9.219884948059042590e-08,-9.680879195461994852e-08,-1.014187344286494711e-07,-1.060286769026789938e-07,-1.106386193767085164e-07,-1.152485618507380390e-07,-1.198585043247675616e-07,-1.244684467987970975e-07,-1.290783892728266333e-07,-1.336883317468561692e-07,-1.382982742208857050e-07,-1.429082166949152409e-07,-1.475181591689447767e-07,-1.521281016429743126e-07,-1.567380441170038484e-07,-1.613479865910333843e-07,-1.659579290650629201e-07,-1.705678715390924560e-07,-1.751778140131219919e-07,-1.797877564871515277e-07,-1.843976989611810636e-07,-1.890076414352105994e-07,-1.936175839092401353e-07,-1.982275263832696711e-07,-2.028374688572992070e-07,-2.074474113313287428e-07,-2.120573538053582787e-07,-2.166672962793878145e-07,-2.212772387534173504e-07,-2.258871812274468862e-07,-2.304971237014764221e-07,-2.351070661755059579e-07,-2.397170086495354938e-07,-2.443269511235650297e-07,-2.489368935975945655e-07,-2.535468360716241014e-07,-2.581567785456536372e-07,-2.627667210196831731e-07,-2.673766634937127089e-07,-2.719866059677422448e-07,-2.765965484417717806e-07,-2.812064909158013165e-07,-2.858164333898308523e-07,-2.904263758638603882e-07 +0.000000000000000000e+00,-8.433392720850309503e-09,-1.686678544170061901e-08,-2.530017816255092851e-08,-3.373357088340123801e-08,-4.216696360425154751e-08,-5.060035632510185702e-08,-5.903374904595216652e-08,-6.746714176680247602e-08,-7.590053448765279214e-08,-8.433392720850310826e-08,-9.276731992935342438e-08,-1.012007126502037405e-07,-1.096341053710540566e-07,-1.180674980919043727e-07,-1.265008908127546889e-07,-1.349342835336050050e-07,-1.433676762544553211e-07,-1.518010689753056372e-07,-1.602344616961559533e-07,-1.686678544170062695e-07,-1.771012471378565856e-07,-1.855346398587069017e-07,-1.939680325795572178e-07,-2.024014253004075339e-07,-2.108348180212578501e-07,-2.192682107421081662e-07,-2.277016034629584823e-07,-2.361349961838087984e-07,-2.445683889046590881e-07,-2.530017816255093777e-07,-2.614351743463596674e-07,-2.698685670672099570e-07,-2.783019597880602467e-07,-2.867353525089105363e-07,-2.951687452297608260e-07,-3.036021379506111156e-07,-3.120355306714614053e-07,-3.204689233923116949e-07,-3.289023161131619846e-07,-3.373357088340122742e-07,-3.457691015548625639e-07,-3.542024942757128535e-07,-3.626358869965631432e-07,-3.710692797174134328e-07,-3.795026724382637225e-07,-3.879360651591140121e-07,-3.963694578799643018e-07,-4.048028506008145914e-07,-4.132362433216648811e-07,-4.216696360425151707e-07,-4.301030287633654604e-07,-4.385364214842157500e-07,-4.469698142050660397e-07,-4.554032069259163293e-07,-4.638365996467666190e-07,-4.722699923676169086e-07,-4.807033850884671983e-07,-4.891367778093175409e-07,-4.975701705301678835e-07,-5.060035632510182261e-07,-5.144369559718685686e-07,-5.228703486927189112e-07,-5.313037414135692538e-07 +0.000000000000000000e+00,-8.611898799420456209e-09,-1.722379759884091242e-08,-2.583569639826136863e-08,-3.444759519768182484e-08,-4.305949399710228105e-08,-5.167139279652273726e-08,-6.028329159594319347e-08,-6.889519039536364967e-08,-7.750708919478410588e-08,-8.611898799420456209e-08,-9.473088679362501830e-08,-1.033427855930454745e-07,-1.119546843924659307e-07,-1.205665831918863869e-07,-1.291784819913068431e-07,-1.377903807907272993e-07,-1.464022795901477556e-07,-1.550141783895682118e-07,-1.636260771889886680e-07,-1.722379759884091242e-07,-1.808498747878295804e-07,-1.894617735872500366e-07,-1.980736723866704928e-07,-2.066855711860909490e-07,-2.152974699855114052e-07,-2.239093687849318614e-07,-2.325212675843523177e-07,-2.411331663837727739e-07,-2.497450651831932301e-07,-2.583569639826136863e-07,-2.669688627820341425e-07,-2.755807615814545987e-07,-2.841926603808750549e-07,-2.928045591802955111e-07,-3.014164579797159673e-07,-3.100283567791364235e-07,-3.186402555785568797e-07,-3.272521543779773360e-07,-3.358640531773977922e-07,-3.444759519768182484e-07,-3.530878507762387046e-07,-3.616997495756591608e-07,-3.703116483750796170e-07,-3.789235471745000732e-07,-3.875354459739205294e-07,-3.961473447733409856e-07,-4.047592435727614418e-07,-4.133711423721818980e-07,-4.219830411716023543e-07,-4.305949399710228105e-07,-4.392068387704432667e-07,-4.478187375698637229e-07,-4.564306363692841791e-07,-4.650425351687046353e-07,-4.736544339681250915e-07,-4.822663327675455477e-07,-4.908782315669660039e-07,-4.994901303663864601e-07,-5.081020291658069164e-07,-5.167139279652273726e-07,-5.253258267646478288e-07,-5.339377255640682850e-07,-5.425496243634887412e-07 +0.000000000000000000e+00,-5.440772488570001743e-09,-1.088154497714000349e-08,-1.632231746571000440e-08,-2.176308995428000366e-08,-2.720386244285000292e-08,-3.264463493142000218e-08,-3.808540741999000475e-08,-4.352617990856000732e-08,-4.896695239713000989e-08,-5.440772488570001246e-08,-5.984849737427001503e-08,-6.528926986284001760e-08,-7.073004235141002017e-08,-7.617081483998002274e-08,-8.161158732855002531e-08,-8.705235981712002788e-08,-9.249313230569003045e-08,-9.793390479426003302e-08,-1.033746772828300356e-07,-1.088154497714000382e-07,-1.142562222599700407e-07,-1.196969947485400565e-07,-1.251377672371100591e-07,-1.305785397256800617e-07,-1.360193122142500642e-07,-1.414600847028200668e-07,-1.469008571913900694e-07,-1.523416296799600720e-07,-1.577824021685300745e-07,-1.632231746571000771e-07,-1.686639471456700797e-07,-1.741047196342400822e-07,-1.795454921228100848e-07,-1.849862646113800874e-07,-1.904270370999500899e-07,-1.958678095885200925e-07,-2.013085820770900951e-07,-2.067493545656600977e-07,-2.121901270542301002e-07,-2.176308995428001028e-07,-2.230716720313701054e-07,-2.285124445199401079e-07,-2.339532170085101105e-07,-2.393939894970801131e-07,-2.448347619856501156e-07,-2.502755344742201182e-07,-2.557163069627901208e-07,-2.611570794513601234e-07,-2.665978519399301259e-07,-2.720386244285001285e-07,-2.774793969170701311e-07,-2.829201694056401336e-07,-2.883609418942101362e-07,-2.938017143827801388e-07,-2.992424868713501413e-07,-3.046832593599201439e-07,-3.101240318484901465e-07,-3.155648043370601491e-07,-3.210055768256301516e-07,-3.264463493142001542e-07,-3.318871218027701568e-07,-3.373278942913401593e-07,-3.427686667799101619e-07 +0.000000000000000000e+00,-7.118084007221083183e-09,-1.423616801444216637e-08,-2.135425202166324955e-08,-2.847233602888433273e-08,-3.559042003610541922e-08,-4.270850404332650572e-08,-4.982658805054759221e-08,-5.694467205776867870e-08,-6.406275606498976519e-08,-7.118084007221085168e-08,-7.829892407943193817e-08,-8.541700808665302467e-08,-9.253509209387411116e-08,-9.965317610109519765e-08,-1.067712601083162841e-07,-1.138893441155373706e-07,-1.210074281227584571e-07,-1.281255121299795304e-07,-1.352435961372006036e-07,-1.423616801444216769e-07,-1.494797641516427502e-07,-1.565978481588638234e-07,-1.637159321660848967e-07,-1.708340161733059699e-07,-1.779521001805270432e-07,-1.850701841877481164e-07,-1.921882681949691897e-07,-1.993063522021902630e-07,-2.064244362094113362e-07,-2.135425202166324095e-07,-2.206606042238534827e-07,-2.277786882310745560e-07,-2.348967722382956292e-07,-2.420148562455167025e-07,-2.491329402527377757e-07,-2.562510242599588490e-07,-2.633691082671799223e-07,-2.704871922744009955e-07,-2.776052762816220688e-07,-2.847233602888431420e-07,-2.918414442960642153e-07,-2.989595283032852885e-07,-3.060776123105063618e-07,-3.131956963177274351e-07,-3.203137803249485083e-07,-3.274318643321695816e-07,-3.345499483393906548e-07,-3.416680323466117281e-07,-3.487861163538328013e-07,-3.559042003610538746e-07,-3.630222843682749479e-07,-3.701403683754960211e-07,-3.772584523827170944e-07,-3.843765363899381676e-07,-3.914946203971592409e-07,-3.986127044043803141e-07,-4.057307884116013874e-07,-4.128488724188224607e-07,-4.199669564260435339e-07,-4.270850404332646072e-07,-4.342031244404856804e-07,-4.413212084477067537e-07,-4.484392924549278269e-07 +0.000000000000000000e+00,-3.420395230242615327e-09,-6.840790460485230653e-09,-1.026118569072784598e-08,-1.368158092097046131e-08,-1.710197615121307829e-08,-2.052237138145569527e-08,-2.394276661169831225e-08,-2.736316184194092923e-08,-3.078355707218354621e-08,-3.420395230242616319e-08,-3.762434753266878017e-08,-4.104474276291139715e-08,-4.446513799315401414e-08,-4.788553322339663112e-08,-5.130592845363924810e-08,-5.472632368388186508e-08,-5.814671891412448206e-08,-6.156711414436710566e-08,-6.498750937460973587e-08,-6.840790460485236609e-08,-7.182829983509499631e-08,-7.524869506533762652e-08,-7.866909029558025674e-08,-8.208948552582288695e-08,-8.550988075606551717e-08,-8.893027598630814739e-08,-9.235067121655077760e-08,-9.577106644679340782e-08,-9.919146167703603803e-08,-1.026118569072786682e-07,-1.060322521375212985e-07,-1.094526473677639287e-07,-1.128730425980065589e-07,-1.162934378282491891e-07,-1.197138330584918193e-07,-1.231342282887344495e-07,-1.265546235189770798e-07,-1.299750187492197100e-07,-1.333954139794623402e-07,-1.368158092097049704e-07,-1.402362044399476006e-07,-1.436565996701902308e-07,-1.470769949004328611e-07,-1.504973901306754913e-07,-1.539177853609181215e-07,-1.573381805911607517e-07,-1.607585758214033819e-07,-1.641789710516460121e-07,-1.675993662818886424e-07,-1.710197615121312726e-07,-1.744401567423739028e-07,-1.778605519726165330e-07,-1.812809472028591632e-07,-1.847013424331017934e-07,-1.881217376633444236e-07,-1.915421328935870539e-07,-1.949625281238296841e-07,-1.983829233540723143e-07,-2.018033185843149445e-07,-2.052237138145575747e-07,-2.086441090448002049e-07,-2.120645042750428352e-07,-2.154848995052854654e-07 +0.000000000000000000e+00,-8.569148099995422114e-09,-1.713829619999084423e-08,-2.570744429998626634e-08,-3.427659239998168846e-08,-4.284574049997711388e-08,-5.141488859997253930e-08,-5.998403669996796472e-08,-6.855318479996339015e-08,-7.712233289995881557e-08,-8.569148099995424099e-08,-9.426062909994966641e-08,-1.028297771999450918e-07,-1.113989252999405173e-07,-1.199680733999359559e-07,-1.285372214999313813e-07,-1.371063695999268068e-07,-1.456755176999222322e-07,-1.542446657999176576e-07,-1.628138138999130830e-07,-1.713829619999085085e-07,-1.799521100999039339e-07,-1.885212581998993593e-07,-1.970904062998947847e-07,-2.056595543998902101e-07,-2.142287024998856356e-07,-2.227978505998810610e-07,-2.313669986998764864e-07,-2.399361467998719118e-07,-2.485052948998673373e-07,-2.570744429998627627e-07,-2.656435910998581881e-07,-2.742127391998536135e-07,-2.827818872998490389e-07,-2.913510353998444644e-07,-2.999201834998398898e-07,-3.084893315998353152e-07,-3.170584796998307406e-07,-3.256276277998261661e-07,-3.341967758998215915e-07,-3.427659239998170169e-07,-3.513350720998124423e-07,-3.599042201998078678e-07,-3.684733682998032932e-07,-3.770425163997987186e-07,-3.856116644997941440e-07,-3.941808125997895694e-07,-4.027499606997849949e-07,-4.113191087997804203e-07,-4.198882568997758457e-07,-4.284574049997712711e-07,-4.370265530997666966e-07,-4.455957011997621220e-07,-4.541648492997575474e-07,-4.627339973997529728e-07,-4.713031454997483982e-07,-4.798722935997438237e-07,-4.884414416997392491e-07,-4.970105897997346745e-07,-5.055797378997300999e-07,-5.141488859997255254e-07,-5.227180340997209508e-07,-5.312871821997163762e-07,-5.398563302997118016e-07 +0.000000000000000000e+00,-7.304908992325423083e-09,-1.460981798465084617e-08,-2.191472697697626842e-08,-2.921963596930168902e-08,-3.652454496162711293e-08,-4.382945395395253684e-08,-5.113436294627796075e-08,-5.843927193860338466e-08,-6.574418093092880857e-08,-7.304908992325422586e-08,-8.035399891557964316e-08,-8.765890790790506045e-08,-9.496381690023047774e-08,-1.022687258925558950e-07,-1.095736348848813123e-07,-1.168785438772067296e-07,-1.241834528695321469e-07,-1.314883618618575642e-07,-1.387932708541829815e-07,-1.460981798465083988e-07,-1.534030888388338161e-07,-1.607079978311592334e-07,-1.680129068234846507e-07,-1.753178158158100680e-07,-1.826227248081354852e-07,-1.899276338004609025e-07,-1.972325427927863198e-07,-2.045374517851117371e-07,-2.118423607774371544e-07,-2.191472697697625717e-07,-2.264521787620879890e-07,-2.337570877544134063e-07,-2.410619967467388501e-07,-2.483669057390642938e-07,-2.556718147313897376e-07,-2.629767237237151813e-07,-2.702816327160406251e-07,-2.775865417083660689e-07,-2.848914507006915126e-07,-2.921963596930169564e-07,-2.995012686853424002e-07,-3.068061776776678439e-07,-3.141110866699932877e-07,-3.214159956623187314e-07,-3.287209046546441752e-07,-3.360258136469696190e-07,-3.433307226392950627e-07,-3.506356316316205065e-07,-3.579405406239459503e-07,-3.652454496162713940e-07,-3.725503586085968378e-07,-3.798552676009222815e-07,-3.871601765932477253e-07,-3.944650855855731691e-07,-4.017699945778986128e-07,-4.090749035702240566e-07,-4.163798125625495004e-07,-4.236847215548749441e-07,-4.309896305472003879e-07,-4.382945395395258316e-07,-4.455994485318512754e-07,-4.529043575241767192e-07,-4.602092665165021629e-07 +0.000000000000000000e+00,-4.609942474022625587e-09,-9.219884948045251173e-09,-1.382982742206787676e-08,-1.843976989609050235e-08,-2.304971237011312959e-08,-2.765965484413575683e-08,-3.226959731815838407e-08,-3.687953979218101131e-08,-4.148948226620363855e-08,-4.609942474022626579e-08,-5.070936721424889303e-08,-5.531930968827152027e-08,-5.992925216229415413e-08,-6.453919463631678137e-08,-6.914913711033940861e-08,-7.375907958436203585e-08,-7.836902205838466310e-08,-8.297896453240729034e-08,-8.758890700642991758e-08,-9.219884948045254482e-08,-9.680879195447517206e-08,-1.014187344284977993e-07,-1.060286769025204265e-07,-1.106386193765430538e-07,-1.152485618505656810e-07,-1.198585043245883083e-07,-1.244684467986109355e-07,-1.290783892726335627e-07,-1.336883317466561900e-07,-1.382982742206788172e-07,-1.429082166947014445e-07,-1.475181591687240717e-07,-1.521281016427466990e-07,-1.567380441167693262e-07,-1.613479865907919534e-07,-1.659579290648145807e-07,-1.705678715388372079e-07,-1.751778140128598352e-07,-1.797877564868824624e-07,-1.843976989609050896e-07,-1.890076414349277169e-07,-1.936175839089503441e-07,-1.982275263829729714e-07,-2.028374688569955986e-07,-2.074474113310182258e-07,-2.120573538050408531e-07,-2.166672962790634803e-07,-2.212772387530861076e-07,-2.258871812271087348e-07,-2.304971237011313620e-07,-2.351070661751539893e-07,-2.397170086491766165e-07,-2.443269511231992173e-07,-2.489368935972218181e-07,-2.535468360712444188e-07,-2.581567785452670196e-07,-2.627667210192896204e-07,-2.673766634933122212e-07,-2.719866059673348219e-07,-2.765965484413574227e-07,-2.812064909153800235e-07,-2.858164333894026242e-07,-2.904263758634252250e-07 +0.000000000000000000e+00,-8.433392720842361951e-09,-1.686678544168472390e-08,-2.530017816252708585e-08,-3.373357088336944781e-08,-4.216696360421180976e-08,-5.060035632505417171e-08,-5.903374904589653366e-08,-6.746714176673889561e-08,-7.590053448758125756e-08,-8.433392720842361951e-08,-9.276731992926598147e-08,-1.012007126501083434e-07,-1.096341053709507054e-07,-1.180674980917930673e-07,-1.265008908126354425e-07,-1.349342835334778177e-07,-1.433676762543201929e-07,-1.518010689751625681e-07,-1.602344616960049433e-07,-1.686678544168473184e-07,-1.771012471376896936e-07,-1.855346398585320688e-07,-1.939680325793744440e-07,-2.024014253002168192e-07,-2.108348180210591944e-07,-2.192682107419015696e-07,-2.277016034627439447e-07,-2.361349961835863199e-07,-2.445683889044286951e-07,-2.530017816252710968e-07,-2.614351743461134984e-07,-2.698685670669559001e-07,-2.783019597877983017e-07,-2.867353525086407034e-07,-2.951687452294831051e-07,-3.036021379503255067e-07,-3.120355306711679084e-07,-3.204689233920103100e-07,-3.289023161128527117e-07,-3.373357088336951133e-07,-3.457691015545375150e-07,-3.542024942753799166e-07,-3.626358869962223183e-07,-3.710692797170647200e-07,-3.795026724379071216e-07,-3.879360651587495233e-07,-3.963694578795919249e-07,-4.048028506004343266e-07,-4.132362433212767282e-07,-4.216696360421191299e-07,-4.301030287629615315e-07,-4.385364214838039332e-07,-4.469698142046463349e-07,-4.554032069254887365e-07,-4.638365996463311382e-07,-4.722699923671735398e-07,-4.807033850880159415e-07,-4.891367778088583431e-07,-4.975701705297007448e-07,-5.060035632505431465e-07,-5.144369559713855481e-07,-5.228703486922279498e-07,-5.313037414130703514e-07 +0.000000000000000000e+00,-8.569148099991542637e-09,-1.713829619998308527e-08,-2.570744429997462957e-08,-3.427659239996617716e-08,-4.284574049995772476e-08,-5.141488859994927236e-08,-5.998403669994081996e-08,-6.855318479993236756e-08,-7.712233289992391516e-08,-8.569148099991546276e-08,-9.426062909990701036e-08,-1.028297771998985580e-07,-1.113989252998901056e-07,-1.199680733998816399e-07,-1.285372214998731743e-07,-1.371063695998647087e-07,-1.456755176998562430e-07,-1.542446657998477774e-07,-1.628138138998393118e-07,-1.713829619998308461e-07,-1.799521100998223805e-07,-1.885212581998139149e-07,-1.970904062998054492e-07,-2.056595543997969836e-07,-2.142287024997885179e-07,-2.227978505997800523e-07,-2.313669986997715867e-07,-2.399361467997631210e-07,-2.485052948997546819e-07,-2.570744429997462427e-07,-2.656435910997378035e-07,-2.742127391997293644e-07,-2.827818872997209252e-07,-2.913510353997124860e-07,-2.999201834997040469e-07,-3.084893315996956077e-07,-3.170584796996871686e-07,-3.256276277996787294e-07,-3.341967758996702902e-07,-3.427659239996618511e-07,-3.513350720996534119e-07,-3.599042201996449727e-07,-3.684733682996365336e-07,-3.770425163996280944e-07,-3.856116644996196552e-07,-3.941808125996112161e-07,-4.027499606996027769e-07,-4.113191087995943377e-07,-4.198882568995858986e-07,-4.284574049995774594e-07,-4.370265530995690202e-07,-4.455957011995605811e-07,-4.541648492995521419e-07,-4.627339973995437027e-07,-4.713031454995352636e-07,-4.798722935995267715e-07,-4.884414416995182794e-07,-4.970105897995097873e-07,-5.055797378995012952e-07,-5.141488859994928031e-07,-5.227180340994843110e-07,-5.312871821994758188e-07,-5.398563302994673267e-07 +0.000000000000000000e+00,-5.440772488562363557e-09,-1.088154497712472711e-08,-1.632231746568709150e-08,-2.176308995424945754e-08,-2.720386244281182357e-08,-3.264463493137418961e-08,-3.808540741993655565e-08,-4.352617990849892169e-08,-4.896695239706128773e-08,-5.440772488562365377e-08,-5.984849737418601319e-08,-6.528926986274836599e-08,-7.073004235131071879e-08,-7.617081483987307160e-08,-8.161158732843542440e-08,-8.705235981699777721e-08,-9.249313230556013001e-08,-9.793390479412248281e-08,-1.033746772826848356e-07,-1.088154497712471884e-07,-1.142562222598095412e-07,-1.196969947483718940e-07,-1.251377672369342468e-07,-1.305785397254965996e-07,-1.360193122140589524e-07,-1.414600847026213052e-07,-1.469008571911836580e-07,-1.523416296797460108e-07,-1.577824021683083637e-07,-1.632231746568707165e-07,-1.686639471454330693e-07,-1.741047196339954221e-07,-1.795454921225577749e-07,-1.849862646111201277e-07,-1.904270370996824805e-07,-1.958678095882448333e-07,-2.013085820768071861e-07,-2.067493545653695389e-07,-2.121901270539318917e-07,-2.176308995424942445e-07,-2.230716720310565973e-07,-2.285124445196189501e-07,-2.339532170081813029e-07,-2.393939894967436292e-07,-2.448347619853059556e-07,-2.502755344738682819e-07,-2.557163069624306082e-07,-2.611570794509929346e-07,-2.665978519395552609e-07,-2.720386244281175872e-07,-2.774793969166799136e-07,-2.829201694052422399e-07,-2.883609418938045662e-07,-2.938017143823668926e-07,-2.992424868709292189e-07,-3.046832593594915452e-07,-3.101240318480538716e-07,-3.155648043366161979e-07,-3.210055768251785242e-07,-3.264463493137408506e-07,-3.318871218023031769e-07,-3.373278942908655032e-07,-3.427686667794278296e-07 +0.000000000000000000e+00,-7.118084007212592174e-09,-1.423616801442518435e-08,-2.135425202163777570e-08,-2.847233602885036539e-08,-3.559042003606295508e-08,-4.270850404327554477e-08,-4.982658805048813447e-08,-5.694467205770072416e-08,-6.406275606491332047e-08,-7.118084007212592340e-08,-7.829892407933852632e-08,-8.541700808655112925e-08,-9.253509209376373218e-08,-9.965317610097633510e-08,-1.067712601081889380e-07,-1.138893441154015410e-07,-1.210074281226141439e-07,-1.281255121298267468e-07,-1.352435961370393497e-07,-1.423616801442519527e-07,-1.494797641514645556e-07,-1.565978481586771585e-07,-1.637159321658897615e-07,-1.708340161731023644e-07,-1.779521001803149673e-07,-1.850701841875275702e-07,-1.921882681947401732e-07,-1.993063522019527761e-07,-2.064244362091653790e-07,-2.135425202163779819e-07,-2.206606042235905849e-07,-2.277786882308031878e-07,-2.348967722380157907e-07,-2.420148562452283937e-07,-2.491329402524409966e-07,-2.562510242596535995e-07,-2.633691082668662024e-07,-2.704871922740788054e-07,-2.776052762812914083e-07,-2.847233602885040112e-07,-2.918414442957166141e-07,-2.989595283029292171e-07,-3.060776123101418200e-07,-3.131956963173544229e-07,-3.203137803245670259e-07,-3.274318643317796288e-07,-3.345499483389922317e-07,-3.416680323462048346e-07,-3.487861163534174376e-07,-3.559042003606300405e-07,-3.630222843678426434e-07,-3.701403683750552463e-07,-3.772584523822678493e-07,-3.843765363894804522e-07,-3.914946203966930551e-07,-3.986127044039056581e-07,-4.057307884111182610e-07,-4.128488724183308639e-07,-4.199669564255434668e-07,-4.270850404327560698e-07,-4.342031244399686727e-07,-4.413212084471812756e-07,-4.484392924543938785e-07 +0.000000000000000000e+00,-3.420395230235278648e-09,-6.840790460470557296e-09,-1.026118569070583636e-08,-1.368158092094111625e-08,-1.710197615117639779e-08,-2.052237138141167933e-08,-2.394276661164696088e-08,-2.736316184188224242e-08,-3.078355707211752396e-08,-3.420395230235280882e-08,-3.762434753258809367e-08,-4.104474276282337852e-08,-4.446513799305866337e-08,-4.788553322329394822e-08,-5.130592845352923308e-08,-5.472632368376451793e-08,-5.814671891399980278e-08,-6.156711414423508763e-08,-6.498750937447037248e-08,-6.840790460470565734e-08,-7.182829983494094219e-08,-7.524869506517622704e-08,-7.866909029541151189e-08,-8.208948552564679674e-08,-8.550988075588208160e-08,-8.893027598611736645e-08,-9.235067121635265130e-08,-9.577106644658793615e-08,-9.919146167682322100e-08,-1.026118569070585059e-07,-1.060322521372937907e-07,-1.094526473675290756e-07,-1.128730425977643604e-07,-1.162934378279996453e-07,-1.197138330582349301e-07,-1.231342282884702017e-07,-1.265546235187054734e-07,-1.299750187489407450e-07,-1.333954139791760166e-07,-1.368158092094112882e-07,-1.402362044396465598e-07,-1.436565996698818314e-07,-1.470769949001171031e-07,-1.504973901303523747e-07,-1.539177853605876463e-07,-1.573381805908229179e-07,-1.607585758210581895e-07,-1.641789710512934611e-07,-1.675993662815287328e-07,-1.710197615117640044e-07,-1.744401567419992760e-07,-1.778605519722345476e-07,-1.812809472024698192e-07,-1.847013424327050908e-07,-1.881217376629403625e-07,-1.915421328931756341e-07,-1.949625281234109057e-07,-1.983829233536461773e-07,-2.018033185838814489e-07,-2.052237138141167205e-07,-2.086441090443519922e-07,-2.120645042745872638e-07,-2.154848995048225354e-07 +0.000000000000000000e+00,-4.734455659585195297e-09,-9.468911319170390595e-09,-1.420336697875558589e-08,-1.893782263834078119e-08,-2.367227829792597649e-08,-2.840673395751117178e-08,-3.314118961709636708e-08,-3.787564527668156238e-08,-4.261010093626675768e-08,-4.734455659585195297e-08,-5.207901225543714827e-08,-5.681346791502234357e-08,-6.154792357460753887e-08,-6.628237923419273416e-08,-7.101683489377792946e-08,-7.575129055336312476e-08,-8.048574621294832006e-08,-8.522020187253351535e-08,-8.995465753211871065e-08,-9.468911319170390595e-08,-9.942356885128910125e-08,-1.041580245108742965e-07,-1.088924801704594918e-07,-1.136269358300446871e-07,-1.183613914896298824e-07,-1.230958471492150777e-07,-1.278303028088002730e-07,-1.325647584683854683e-07,-1.372992141279706636e-07,-1.420336697875558589e-07,-1.467681254471410542e-07,-1.515025811067262495e-07,-1.562370367663114448e-07,-1.609714924258966401e-07,-1.657059480854818354e-07,-1.704404037450670307e-07,-1.751748594046522260e-07,-1.799093150642374213e-07,-1.846437707238226166e-07,-1.893782263834078119e-07,-1.941126820429930072e-07,-1.988471377025782025e-07,-2.035815933621633978e-07,-2.083160490217485931e-07,-2.130505046813337884e-07,-2.177849603409189837e-07,-2.225194160005041790e-07,-2.272538716600893743e-07,-2.319883273196745696e-07,-2.367227829792597649e-07,-2.414572386388449866e-07,-2.461916942984302084e-07,-2.509261499580154302e-07,-2.556606056176006519e-07,-2.603950612771858737e-07,-2.651295169367710955e-07,-2.698639725963563172e-07,-2.745984282559415390e-07,-2.793328839155267608e-07,-2.840673395751119825e-07,-2.888017952346972043e-07,-2.935362508942824261e-07,-2.982707065538676478e-07 +0.000000000000000000e+00,-4.534399875271153876e-09,-9.068799750542307752e-09,-1.360319962581346163e-08,-1.813759950108461550e-08,-2.267199937635576938e-08,-2.720639925162692326e-08,-3.174079912689807382e-08,-3.627519900216922439e-08,-4.080959887744037496e-08,-4.534399875271152553e-08,-4.987839862798267609e-08,-5.441279850325382666e-08,-5.894719837852497723e-08,-6.348159825379612118e-08,-6.801599812906726513e-08,-7.255039800433840908e-08,-7.708479787960955303e-08,-8.161919775488069698e-08,-8.615359763015184093e-08,-9.068799750542298488e-08,-9.522239738069412883e-08,-9.975679725596527278e-08,-1.042911971312364167e-07,-1.088255970065075607e-07,-1.133599968817787046e-07,-1.178943967570498486e-07,-1.224287966323209925e-07,-1.269631965075921365e-07,-1.314975963828632804e-07,-1.360319962581344244e-07,-1.405663961334055683e-07,-1.451007960086767123e-07,-1.496351958839478562e-07,-1.541695957592190002e-07,-1.587039956344901441e-07,-1.632383955097612881e-07,-1.677727953850324320e-07,-1.723071952603035760e-07,-1.768415951355747199e-07,-1.813759950108458639e-07,-1.859103948861170078e-07,-1.904447947613881518e-07,-1.949791946366592957e-07,-1.995135945119304397e-07,-2.040479943872015836e-07,-2.085823942624727276e-07,-2.131167941377438715e-07,-2.176511940130150155e-07,-2.221855938882861594e-07,-2.267199937635573034e-07,-2.312543936388284473e-07,-2.357887935140995913e-07,-2.403231933893707352e-07,-2.448575932646418792e-07,-2.493919931399130231e-07,-2.539263930151841671e-07,-2.584607928904553110e-07,-2.629951927657264550e-07,-2.675295926409975989e-07,-2.720639925162687429e-07,-2.765983923915398868e-07,-2.811327922668110308e-07,-2.856671921420821747e-07 +0.000000000000000000e+00,-3.394751885025170805e-09,-6.789503770050341609e-09,-1.018425565507551241e-08,-1.357900754010068322e-08,-1.697375942512585237e-08,-2.036851131015102152e-08,-2.376326319517619067e-08,-2.715801508020135982e-08,-3.055276696522652897e-08,-3.394751885025169812e-08,-3.734227073527686727e-08,-4.073702262030203642e-08,-4.413177450532720557e-08,-4.752652639035237472e-08,-5.092127827537754387e-08,-5.431603016040271302e-08,-5.771078204542788217e-08,-6.110553393045305794e-08,-6.450028581547823371e-08,-6.789503770050340947e-08,-7.128978958552858524e-08,-7.468454147055376101e-08,-7.807929335557893678e-08,-8.147404524060411255e-08,-8.486879712562928831e-08,-8.826354901065446408e-08,-9.165830089567963985e-08,-9.505305278070481562e-08,-9.844780466572999138e-08,-1.018425565507551672e-07,-1.052373084357803429e-07,-1.086320603208055187e-07,-1.120268122058306945e-07,-1.154215640908558702e-07,-1.188163159758810460e-07,-1.222110678609062218e-07,-1.256058197459314108e-07,-1.290005716309565998e-07,-1.323953235159817888e-07,-1.357900754010069778e-07,-1.391848272860321668e-07,-1.425795791710573558e-07,-1.459743310560825448e-07,-1.493690829411077338e-07,-1.527638348261329228e-07,-1.561585867111581118e-07,-1.595533385961833008e-07,-1.629480904812084898e-07,-1.663428423662336788e-07,-1.697375942512588678e-07,-1.731323461362840568e-07,-1.765270980213092458e-07,-1.799218499063344348e-07,-1.833166017913596238e-07,-1.867113536763848128e-07,-1.901061055614100018e-07,-1.935008574464351908e-07,-1.968956093314603798e-07,-2.002903612164855688e-07,-2.036851131015107578e-07,-2.070798649865359468e-07,-2.104746168715611358e-07,-2.138693687565863248e-07 +0.000000000000000000e+00,-4.734455659579721016e-09,-9.468911319159442032e-09,-1.420336697873916305e-08,-1.893782263831888406e-08,-2.367227829789860674e-08,-2.840673395747832941e-08,-3.314118961705805208e-08,-3.787564527663777475e-08,-4.261010093621749742e-08,-4.734455659579722009e-08,-5.207901225537694276e-08,-5.681346791495666543e-08,-6.154792357453638810e-08,-6.628237923411610415e-08,-7.101683489369582021e-08,-7.575129055327553626e-08,-8.048574621285525231e-08,-8.522020187243496836e-08,-8.995465753201468442e-08,-9.468911319159440047e-08,-9.942356885117411652e-08,-1.041580245107538326e-07,-1.088924801703335486e-07,-1.136269358299132647e-07,-1.183613914894929807e-07,-1.230958471490726968e-07,-1.278303028086524128e-07,-1.325647584682321289e-07,-1.372992141278118449e-07,-1.420336697873915610e-07,-1.467681254469712771e-07,-1.515025811065509931e-07,-1.562370367661307092e-07,-1.609714924257104252e-07,-1.657059480852901413e-07,-1.704404037448698573e-07,-1.751748594044495734e-07,-1.799093150640292894e-07,-1.846437707236090055e-07,-1.893782263831887215e-07,-1.941126820427684376e-07,-1.988471377023481536e-07,-2.035815933619278697e-07,-2.083160490215075857e-07,-2.130505046810873018e-07,-2.177849603406670179e-07,-2.225194160002467339e-07,-2.272538716598264500e-07,-2.319883273194061660e-07,-2.367227829789858821e-07,-2.414572386385655716e-07,-2.461916942981452348e-07,-2.509261499577248979e-07,-2.556606056173045610e-07,-2.603950612768842241e-07,-2.651295169364638872e-07,-2.698639725960435503e-07,-2.745984282556232134e-07,-2.793328839152028766e-07,-2.840673395747825397e-07,-2.888017952343622028e-07,-2.935362508939418659e-07,-2.982707065535215290e-07 +0.000000000000000000e+00,-4.534399875264985590e-09,-9.068799750529971181e-09,-1.360319962579495594e-08,-1.813759950105993905e-08,-2.267199937632492216e-08,-2.720639925158990527e-08,-3.174079912685488838e-08,-3.627519900211987149e-08,-4.080959887738485460e-08,-4.534399875264983771e-08,-4.987839862791482081e-08,-5.441279850317980392e-08,-5.894719837844478703e-08,-6.348159825370977676e-08,-6.801599812897476648e-08,-7.255039800423975621e-08,-7.708479787950474594e-08,-8.161919775476973566e-08,-8.615359763003472539e-08,-9.068799750529971512e-08,-9.522239738056470484e-08,-9.975679725582969457e-08,-1.042911971310946843e-07,-1.088255970063596740e-07,-1.133599968816246637e-07,-1.178943967568896535e-07,-1.224287966321546564e-07,-1.269631965074196594e-07,-1.314975963826846624e-07,-1.360319962579496653e-07,-1.405663961332146683e-07,-1.451007960084796712e-07,-1.496351958837446742e-07,-1.541695957590096772e-07,-1.587039956342746801e-07,-1.632383955095396831e-07,-1.677727953848046860e-07,-1.723071952600696890e-07,-1.768415951353346920e-07,-1.813759950105996949e-07,-1.859103948858646979e-07,-1.904447947611297009e-07,-1.949791946363947038e-07,-1.995135945116597068e-07,-2.040479943869247097e-07,-2.085823942621897127e-07,-2.131167941374547157e-07,-2.176511940127197186e-07,-2.221855938879847216e-07,-2.267199937632497245e-07,-2.312543936385147275e-07,-2.357887935137797305e-07,-2.403231933890447334e-07,-2.448575932643097364e-07,-2.493919931395747393e-07,-2.539263930148397423e-07,-2.584607928901047453e-07,-2.629951927653697482e-07,-2.675295926406347512e-07,-2.720639925158997542e-07,-2.765983923911647571e-07,-2.811327922664297601e-07,-2.856671921416947630e-07 +0.000000000000000000e+00,-3.394751885019205592e-09,-6.789503770038411183e-09,-1.018425565505761719e-08,-1.357900754007682402e-08,-1.697375942509603085e-08,-2.036851131011523769e-08,-2.376326319513444452e-08,-2.715801508015365135e-08,-3.055276696517286149e-08,-3.394751885019206832e-08,-3.734227073521127516e-08,-4.073702262023048199e-08,-4.413177450524968882e-08,-4.752652639026889565e-08,-5.092127827528810249e-08,-5.431603016030730932e-08,-5.771078204532651615e-08,-6.110553393034572298e-08,-6.450028581536492982e-08,-6.789503770038413665e-08,-7.128978958540334348e-08,-7.468454147042255031e-08,-7.807929335544175714e-08,-8.147404524046096398e-08,-8.486879712548017081e-08,-8.826354901049937764e-08,-9.165830089551858447e-08,-9.505305278053779131e-08,-9.844780466555699814e-08,-1.018425565505762050e-07,-1.052373084355954118e-07,-1.086320603206146186e-07,-1.120268122056338255e-07,-1.154215640906530323e-07,-1.188163159756722391e-07,-1.222110678606914460e-07,-1.256058197457106528e-07,-1.290005716307298596e-07,-1.323953235157490665e-07,-1.357900754007682733e-07,-1.391848272857874801e-07,-1.425795791708066870e-07,-1.459743310558258938e-07,-1.493690829408451006e-07,-1.527638348258643075e-07,-1.561585867108835143e-07,-1.595533385959027211e-07,-1.629480904809219280e-07,-1.663428423659411348e-07,-1.697375942509603416e-07,-1.731323461359795485e-07,-1.765270980209987553e-07,-1.799218499060179621e-07,-1.833166017910371689e-07,-1.867113536760563758e-07,-1.901061055610755826e-07,-1.935008574460947894e-07,-1.968956093311139963e-07,-2.002903612161332031e-07,-2.036851131011524099e-07,-2.070798649861716168e-07,-2.104746168711908236e-07,-2.138693687562100304e-07 +0.000000000000000000e+00,-5.390427751642312174e-09,-1.078085550328462435e-08,-1.617128325492693735e-08,-2.156171100656925200e-08,-2.695213875821156666e-08,-3.234256650985388131e-08,-3.773299426149619928e-08,-4.312342201313851724e-08,-4.851384976478083521e-08,-5.390427751642315317e-08,-5.929470526806547113e-08,-6.468513301970778910e-08,-7.007556077135010706e-08,-7.546598852299242503e-08,-8.085641627463474299e-08,-8.624684402627706095e-08,-9.163727177791937892e-08,-9.702769952956169688e-08,-1.024181272812040148e-07,-1.078085550328463328e-07,-1.131989827844886508e-07,-1.185894105361309687e-07,-1.239798382877732735e-07,-1.293702660394155782e-07,-1.347606937910578829e-07,-1.401511215427001877e-07,-1.455415492943424924e-07,-1.509319770459847971e-07,-1.563224047976271018e-07,-1.617128325492694066e-07,-1.671032603009117113e-07,-1.724936880525540160e-07,-1.778841158041963208e-07,-1.832745435558386255e-07,-1.886649713074809302e-07,-1.940553990591232349e-07,-1.994458268107655397e-07,-2.048362545624078444e-07,-2.102266823140501491e-07,-2.156171100656924539e-07,-2.210075378173347586e-07,-2.263979655689770633e-07,-2.317883933206193680e-07,-2.371788210722616728e-07,-2.425692488239039775e-07,-2.479596765755462822e-07,-2.533501043271885870e-07,-2.587405320788308917e-07,-2.641309598304731964e-07,-2.695213875821155012e-07,-2.749118153337578059e-07,-2.803022430854001106e-07,-2.856926708370424153e-07,-2.910830985886847201e-07,-2.964735263403270248e-07,-3.018639540919693295e-07,-3.072543818436116343e-07,-3.126448095952539390e-07,-3.180352373468962437e-07,-3.234256650985385484e-07,-3.288160928501808532e-07,-3.342065206018231579e-07,-3.395969483534654626e-07 +0.000000000000000000e+00,-5.053850644190995601e-09,-1.010770128838199120e-08,-1.516155193257298763e-08,-2.021540257676398571e-08,-2.526925322095498380e-08,-3.032310386514598188e-08,-3.537695450933698327e-08,-4.043080515352798466e-08,-4.548465579771898605e-08,-5.053850644190998744e-08,-5.559235708610098884e-08,-6.064620773029199023e-08,-6.570005837448299162e-08,-7.075390901867399301e-08,-7.580775966286499440e-08,-8.086161030705599579e-08,-8.591546095124699718e-08,-9.096931159543799857e-08,-9.602316223962899997e-08,-1.010770128838200014e-07,-1.061308635280110027e-07,-1.111847141722020041e-07,-1.162385648163930055e-07,-1.212924154605840069e-07,-1.263462661047750083e-07,-1.314001167489660097e-07,-1.364539673931570111e-07,-1.415078180373480125e-07,-1.465616686815390139e-07,-1.516155193257300153e-07,-1.566693699699210167e-07,-1.617232206141120181e-07,-1.667770712583030194e-07,-1.718309219024940208e-07,-1.768847725466850222e-07,-1.819386231908760236e-07,-1.869924738350670250e-07,-1.920463244792580264e-07,-1.971001751234490278e-07,-2.021540257676400292e-07,-2.072078764118310306e-07,-2.122617270560220320e-07,-2.173155777002130334e-07,-2.223694283444040347e-07,-2.274232789885950361e-07,-2.324771296327860375e-07,-2.375309802769770389e-07,-2.425848309211680668e-07,-2.476386815653591211e-07,-2.526925322095501754e-07,-2.577463828537412298e-07,-2.628002334979322841e-07,-2.678540841421233384e-07,-2.729079347863143928e-07,-2.779617854305054471e-07,-2.830156360746965014e-07,-2.880694867188875558e-07,-2.931233373630786101e-07,-2.981771880072696644e-07,-3.032310386514607188e-07,-3.082848892956517731e-07,-3.133387399398428274e-07,-3.183925905840338817e-07 +0.000000000000000000e+00,-3.932122449927145467e-09,-7.864244899854290934e-09,-1.179636734978143640e-08,-1.572848979970858187e-08,-1.966061224963572568e-08,-2.359273469956286949e-08,-2.752485714949001330e-08,-3.145697959941715712e-08,-3.538910204934430093e-08,-3.932122449927144474e-08,-4.325334694919858855e-08,-4.718546939912573237e-08,-5.111759184905287618e-08,-5.504971429898001999e-08,-5.898183674890716380e-08,-6.291395919883430100e-08,-6.684608164876143819e-08,-7.077820409868857539e-08,-7.471032654861571258e-08,-7.864244899854284978e-08,-8.257457144846998697e-08,-8.650669389839712417e-08,-9.043881634832426136e-08,-9.437093879825139856e-08,-9.830306124817853575e-08,-1.022351836981056729e-07,-1.061673061480328101e-07,-1.100994285979599473e-07,-1.140315510478870845e-07,-1.179636734978142217e-07,-1.218957959477413457e-07,-1.258279183976684696e-07,-1.297600408475955936e-07,-1.336921632975227176e-07,-1.376242857474498415e-07,-1.415564081973769655e-07,-1.454885306473040894e-07,-1.494206530972312134e-07,-1.533527755471583374e-07,-1.572848979970854613e-07,-1.612170204470125853e-07,-1.651491428969397092e-07,-1.690812653468668332e-07,-1.730133877967939572e-07,-1.769455102467210811e-07,-1.808776326966482051e-07,-1.848097551465753290e-07,-1.887418775965024530e-07,-1.926740000464295770e-07,-1.966061224963567009e-07,-2.005382449462838249e-07,-2.044703673962109489e-07,-2.084024898461380728e-07,-2.123346122960651968e-07,-2.162667347459923207e-07,-2.201988571959194447e-07,-2.241309796458465687e-07,-2.280631020957736926e-07,-2.319952245457008166e-07,-2.359273469956279405e-07,-2.398594694455550645e-07,-2.437915918954821620e-07,-2.477237143454092595e-07 +0.000000000000000000e+00,-5.390427751638069564e-09,-1.078085550327613913e-08,-1.617128325491420869e-08,-2.156171100655227826e-08,-2.695213875819034782e-08,-3.234256650982841739e-08,-3.773299426146648695e-08,-4.312342201310455652e-08,-4.851384976474262608e-08,-5.390427751638069564e-08,-5.929470526801876521e-08,-6.468513301965683477e-08,-7.007556077129490434e-08,-7.546598852293297390e-08,-8.085641627457104347e-08,-8.624684402620911303e-08,-9.163727177784718259e-08,-9.702769952948525216e-08,-1.024181272811233217e-07,-1.078085550327613913e-07,-1.131989827843994609e-07,-1.185894105360375304e-07,-1.239798382876756000e-07,-1.293702660393136695e-07,-1.347606937909517391e-07,-1.401511215425898087e-07,-1.455415492942278782e-07,-1.509319770458659478e-07,-1.563224047975040174e-07,-1.617128325491420869e-07,-1.671032603007801565e-07,-1.724936880524182261e-07,-1.778841158040562956e-07,-1.832745435556943652e-07,-1.886649713073324348e-07,-1.940553990589705043e-07,-1.994458268106085739e-07,-2.048362545622466434e-07,-2.102266823138847130e-07,-2.156171100655227826e-07,-2.210075378171608521e-07,-2.263979655687989217e-07,-2.317883933204369913e-07,-2.371788210720750608e-07,-2.425692488237131304e-07,-2.479596765753512000e-07,-2.533501043269892695e-07,-2.587405320786273391e-07,-2.641309598302654087e-07,-2.695213875819034782e-07,-2.749118153335415478e-07,-2.803022430851796173e-07,-2.856926708368176869e-07,-2.910830985884557565e-07,-2.964735263400938260e-07,-3.018639540917318956e-07,-3.072543818433699652e-07,-3.126448095950080347e-07,-3.180352373466461043e-07,-3.234256650982841739e-07,-3.288160928499222434e-07,-3.342065206015603130e-07,-3.395969483531983826e-07 +0.000000000000000000e+00,-5.053850644186149150e-09,-1.010770128837229830e-08,-1.516155193255844580e-08,-2.021540257674459329e-08,-2.526925322093074079e-08,-3.032310386511689159e-08,-3.537695450930304239e-08,-4.043080515348919320e-08,-4.548465579767534400e-08,-5.053850644186149481e-08,-5.559235708604764561e-08,-6.064620773023379642e-08,-6.570005837441994060e-08,-7.075390901860608479e-08,-7.580775966279222898e-08,-8.086161030697837316e-08,-8.591546095116451735e-08,-9.096931159535066154e-08,-9.602316223953680572e-08,-1.010770128837229499e-07,-1.061308635279090941e-07,-1.111847141720952383e-07,-1.162385648162813825e-07,-1.212924154604675134e-07,-1.263462661046536444e-07,-1.314001167488397753e-07,-1.364539673930259063e-07,-1.415078180372120372e-07,-1.465616686813981682e-07,-1.516155193255842991e-07,-1.566693699697704301e-07,-1.617232206139565610e-07,-1.667770712581426920e-07,-1.718309219023288229e-07,-1.768847725465149539e-07,-1.819386231907010848e-07,-1.869924738348872158e-07,-1.920463244790733467e-07,-1.971001751232594777e-07,-2.021540257674456087e-07,-2.072078764116317396e-07,-2.122617270558178706e-07,-2.173155777000040015e-07,-2.223694283441901325e-07,-2.274232789883762634e-07,-2.324771296325623944e-07,-2.375309802767485253e-07,-2.425848309209346563e-07,-2.476386815651207872e-07,-2.526925322093069182e-07,-2.577463828534930491e-07,-2.628002334976791801e-07,-2.678540841418653110e-07,-2.729079347860514420e-07,-2.779617854302375729e-07,-2.830156360744237039e-07,-2.880694867186098348e-07,-2.931233373627959658e-07,-2.981771880069820967e-07,-3.032310386511682277e-07,-3.082848892953543586e-07,-3.133387399395404896e-07,-3.183925905837266205e-07 +0.000000000000000000e+00,-3.932122449922435500e-09,-7.864244899844871001e-09,-1.179636734976730650e-08,-1.572848979968974200e-08,-1.966061224961217750e-08,-2.359273469953461300e-08,-2.752485714945704850e-08,-3.145697959937948400e-08,-3.538910204930192281e-08,-3.932122449922436162e-08,-4.325334694914680043e-08,-4.718546939906923924e-08,-5.111759184899167805e-08,-5.504971429891411686e-08,-5.898183674883655567e-08,-6.291395919875899448e-08,-6.684608164868143328e-08,-7.077820409860387209e-08,-7.471032654852631090e-08,-7.864244899844874971e-08,-8.257457144837118852e-08,-8.650669389829362733e-08,-9.043881634821606614e-08,-9.437093879813850495e-08,-9.830306124806094376e-08,-1.022351836979833826e-07,-1.061673061479058214e-07,-1.100994285978282602e-07,-1.140315510477506990e-07,-1.179636734976731378e-07,-1.218957959475955766e-07,-1.258279183975180154e-07,-1.297600408474404542e-07,-1.336921632973628930e-07,-1.376242857472853318e-07,-1.415564081972077707e-07,-1.454885306471302095e-07,-1.494206530970526483e-07,-1.533527755469750871e-07,-1.572848979968975259e-07,-1.612170204468199647e-07,-1.651491428967424035e-07,-1.690812653466648423e-07,-1.730133877965872811e-07,-1.769455102465097199e-07,-1.808776326964321587e-07,-1.848097551463545976e-07,-1.887418775962770364e-07,-1.926740000461994752e-07,-1.966061224961219140e-07,-2.005382449460443528e-07,-2.044703673959667916e-07,-2.084024898458892304e-07,-2.123346122958116692e-07,-2.162667347457341080e-07,-2.201988571956565468e-07,-2.241309796455789856e-07,-2.280631020955014245e-07,-2.319952245454238633e-07,-2.359273469953463021e-07,-2.398594694452687674e-07,-2.437915918951912062e-07,-2.477237143451136450e-07 +0.000000000000000000e+00,-6.004423498756791082e-09,-1.200884699751358216e-08,-1.801327049627037407e-08,-2.401769399502716764e-08,-3.002211749378396120e-08,-3.602654099254075476e-08,-4.203096449129754833e-08,-4.803538799005434189e-08,-5.403981148881113545e-08,-6.004423498756792240e-08,-6.604865848632470934e-08,-7.205308198508149629e-08,-7.805750548383828324e-08,-8.406192898259507018e-08,-9.006635248135185713e-08,-9.607077598010864407e-08,-1.020751994788654310e-07,-1.080796229776222180e-07,-1.140840464763790049e-07,-1.200884699751357919e-07,-1.260928934738925920e-07,-1.320973169726493922e-07,-1.381017404714061924e-07,-1.441061639701629926e-07,-1.501105874689197928e-07,-1.561150109676765929e-07,-1.621194344664333931e-07,-1.681238579651901933e-07,-1.741282814639469935e-07,-1.801327049627037937e-07,-1.861371284614605938e-07,-1.921415519602173940e-07,-1.981459754589741942e-07,-2.041503989577309944e-07,-2.101548224564877946e-07,-2.161592459552445947e-07,-2.221636694540013949e-07,-2.281680929527581951e-07,-2.341725164515149953e-07,-2.401769399502717955e-07,-2.461813634490285957e-07,-2.521857869477853958e-07,-2.581902104465421960e-07,-2.641946339452989962e-07,-2.701990574440557964e-07,-2.762034809428125966e-07,-2.822079044415693967e-07,-2.882123279403261969e-07,-2.942167514390829971e-07,-3.002211749378397973e-07,-3.062255984365965975e-07,-3.122300219353533976e-07,-3.182344454341101978e-07,-3.242388689328669980e-07,-3.302432924316237982e-07,-3.362477159303805984e-07,-3.422521394291373985e-07,-3.482565629278941987e-07,-3.542609864266509989e-07,-3.602654099254077991e-07,-3.662698334241645993e-07,-3.722742569229213995e-07,-3.782786804216781996e-07 +0.000000000000000000e+00,-5.715447614098931863e-09,-1.143089522819786373e-08,-1.714634284229679559e-08,-2.286179045639572745e-08,-2.857723807049465932e-08,-3.429268568459359118e-08,-4.000813329869252635e-08,-4.572358091279146152e-08,-5.143902852689039670e-08,-5.715447614098933187e-08,-6.286992375508826704e-08,-6.858537136918719559e-08,-7.430081898328612415e-08,-8.001626659738505270e-08,-8.573171421148398126e-08,-9.144716182558290981e-08,-9.716260943968183837e-08,-1.028780570537807669e-07,-1.085935046678796955e-07,-1.143089522819786240e-07,-1.200243998960775394e-07,-1.257398475101764547e-07,-1.314552951242753700e-07,-1.371707427383742853e-07,-1.428861903524732006e-07,-1.486016379665721159e-07,-1.543170855806710313e-07,-1.600325331947699466e-07,-1.657479808088688619e-07,-1.714634284229677772e-07,-1.771788760370666925e-07,-1.828943236511656079e-07,-1.886097712652645232e-07,-1.943252188793634385e-07,-2.000406664934623538e-07,-2.057561141075612691e-07,-2.114715617216601845e-07,-2.171870093357590998e-07,-2.229024569498580151e-07,-2.286179045639569304e-07,-2.343333521780558457e-07,-2.400487997921547611e-07,-2.457642474062536764e-07,-2.514796950203525917e-07,-2.571951426344515070e-07,-2.629105902485504223e-07,-2.686260378626493377e-07,-2.743414854767482530e-07,-2.800569330908471683e-07,-2.857723807049460836e-07,-2.914878283190449989e-07,-2.972032759331439143e-07,-3.029187235472428296e-07,-3.086341711613417449e-07,-3.143496187754406602e-07,-3.200650663895395755e-07,-3.257805140036384909e-07,-3.314959616177374062e-07,-3.372114092318363215e-07,-3.429268568459352368e-07,-3.486423044600341521e-07,-3.543577520741330675e-07,-3.600731996882319828e-07 +0.000000000000000000e+00,-4.463654782183467905e-09,-8.927309564366935810e-09,-1.339096434655040371e-08,-1.785461912873387162e-08,-2.231827391091733952e-08,-2.678192869310080743e-08,-3.124558347528427864e-08,-3.570923825746774986e-08,-4.017289303965122107e-08,-4.463654782183469228e-08,-4.910020260401816350e-08,-5.356385738620163471e-08,-5.802751216838510592e-08,-6.249116695056858375e-08,-6.695482173275206159e-08,-7.141847651493553942e-08,-7.588213129711901725e-08,-8.034578607930249508e-08,-8.480944086148597291e-08,-8.927309564366945074e-08,-9.373675042585292857e-08,-9.820040520803640640e-08,-1.026640599902198842e-07,-1.071277147724033621e-07,-1.115913695545868399e-07,-1.160550243367703177e-07,-1.205186791189538088e-07,-1.249823339011372999e-07,-1.294459886833207909e-07,-1.339096434655042820e-07,-1.383732982476877731e-07,-1.428369530298712641e-07,-1.473006078120547552e-07,-1.517642625942382463e-07,-1.562279173764217373e-07,-1.606915721586052284e-07,-1.651552269407887194e-07,-1.696188817229722105e-07,-1.740825365051557016e-07,-1.785461912873391926e-07,-1.830098460695226837e-07,-1.874735008517061748e-07,-1.919371556338896658e-07,-1.964008104160731569e-07,-2.008644651982566480e-07,-2.053281199804401390e-07,-2.097917747626236301e-07,-2.142554295448071212e-07,-2.187190843269906122e-07,-2.231827391091741033e-07,-2.276463938913575944e-07,-2.321100486735410854e-07,-2.365737034557245765e-07,-2.410373582379080411e-07,-2.455010130200915057e-07,-2.499646678022749703e-07,-2.544283225844584349e-07,-2.588919773666418995e-07,-2.633556321488253641e-07,-2.678192869310088287e-07,-2.722829417131922933e-07,-2.767465964953757579e-07,-2.812102512775592225e-07 +0.000000000000000000e+00,-6.004423498753431074e-09,-1.200884699750686215e-08,-1.801327049626029240e-08,-2.401769399501372099e-08,-3.002211749376715289e-08,-3.602654099252058479e-08,-4.203096449127401669e-08,-4.803538799002744859e-08,-5.403981148878088049e-08,-6.004423498753430578e-08,-6.604865848628773106e-08,-7.205308198504115635e-08,-7.805750548379458163e-08,-8.406192898254800691e-08,-9.006635248130143220e-08,-9.607077598005485748e-08,-1.020751994788082828e-07,-1.080796229775617080e-07,-1.140840464763151333e-07,-1.200884699750685586e-07,-1.260928934738219707e-07,-1.320973169725753827e-07,-1.381017404713287948e-07,-1.441061639700822068e-07,-1.501105874688356189e-07,-1.561150109675890309e-07,-1.621194344663424430e-07,-1.681238579650958550e-07,-1.741282814638492671e-07,-1.801327049626026791e-07,-1.861371284613560912e-07,-1.921415519601095032e-07,-1.981459754588629153e-07,-2.041503989576163273e-07,-2.101548224563697394e-07,-2.161592459551231514e-07,-2.221636694538765635e-07,-2.281680929526299755e-07,-2.341725164513833875e-07,-2.401769399501367996e-07,-2.461813634488902116e-07,-2.521857869476436237e-07,-2.581902104463970357e-07,-2.641946339451504478e-07,-2.701990574439038598e-07,-2.762034809426572719e-07,-2.822079044414106839e-07,-2.882123279401640960e-07,-2.942167514389175080e-07,-3.002211749376709201e-07,-3.062255984364243321e-07,-3.122300219351777442e-07,-3.182344454339311562e-07,-3.242388689326845683e-07,-3.302432924314379803e-07,-3.362477159301913924e-07,-3.422521394289448044e-07,-3.482565629276982165e-07,-3.542609864264516285e-07,-3.602654099252050406e-07,-3.662698334239584526e-07,-3.722742569227118647e-07,-3.782786804214652767e-07 +0.000000000000000000e+00,-5.715447614095207896e-09,-1.143089522819041579e-08,-1.714634284228562203e-08,-2.286179045638082828e-08,-2.857723807047603452e-08,-3.429268568457124407e-08,-4.000813329866645362e-08,-4.572358091276166317e-08,-5.143902852685687272e-08,-5.715447614095208227e-08,-6.286992375504729182e-08,-6.858537136914250137e-08,-7.430081898323771092e-08,-8.001626659733292047e-08,-8.573171421142813002e-08,-9.144716182552333957e-08,-9.716260943961854912e-08,-1.028780570537137587e-07,-1.085935046678089682e-07,-1.143089522819041778e-07,-1.200243998959994006e-07,-1.257398475100946101e-07,-1.314552951241898197e-07,-1.371707427382850292e-07,-1.428861903523802388e-07,-1.486016379664754483e-07,-1.543170855805706579e-07,-1.600325331946658674e-07,-1.657479808087610770e-07,-1.714634284228562865e-07,-1.771788760369514961e-07,-1.828943236510467056e-07,-1.886097712651419152e-07,-1.943252188792371247e-07,-2.000406664933323343e-07,-2.057561141074275438e-07,-2.114715617215227534e-07,-2.171870093356179629e-07,-2.229024569497131725e-07,-2.286179045638083820e-07,-2.343333521779035916e-07,-2.400487997919988011e-07,-2.457642474060940107e-07,-2.514796950201892202e-07,-2.571951426342844298e-07,-2.629105902483796393e-07,-2.686260378624748489e-07,-2.743414854765700584e-07,-2.800569330906652680e-07,-2.857723807047604775e-07,-2.914878283188556871e-07,-2.972032759329508966e-07,-3.029187235470461062e-07,-3.086341711611413157e-07,-3.143496187752365253e-07,-3.200650663893317348e-07,-3.257805140034269444e-07,-3.314959616175221539e-07,-3.372114092316173635e-07,-3.429268568457125730e-07,-3.486423044598077826e-07,-3.543577520739029921e-07,-3.600731996879982017e-07 +0.000000000000000000e+00,-4.463654782179894485e-09,-8.927309564359788969e-09,-1.339096434653968345e-08,-1.785461912871957794e-08,-2.231827391089947242e-08,-2.678192869307936691e-08,-3.124558347525926470e-08,-3.570923825743916249e-08,-4.017289303961906029e-08,-4.463654782179895808e-08,-4.910020260397885587e-08,-5.356385738615875367e-08,-5.802751216833865146e-08,-6.249116695051855587e-08,-6.695482173269846028e-08,-7.141847651487836469e-08,-7.588213129705826910e-08,-8.034578607923817351e-08,-8.480944086141807792e-08,-8.927309564359798234e-08,-9.373675042577788675e-08,-9.820040520795779116e-08,-1.026640599901376956e-07,-1.071277147723176000e-07,-1.115913695544975044e-07,-1.160550243366774088e-07,-1.205186791188573000e-07,-1.249823339010371912e-07,-1.294459886832170823e-07,-1.339096434653969735e-07,-1.383732982475768647e-07,-1.428369530297567559e-07,-1.473006078119366470e-07,-1.517642625941165382e-07,-1.562279173762964294e-07,-1.606915721584763206e-07,-1.651552269406562117e-07,-1.696188817228361029e-07,-1.740825365050159941e-07,-1.785461912871958853e-07,-1.830098460693757764e-07,-1.874735008515556676e-07,-1.919371556337355588e-07,-1.964008104159154500e-07,-2.008644651980953411e-07,-2.053281199802752323e-07,-2.097917747624551235e-07,-2.142554295446350147e-07,-2.187190843268149058e-07,-2.231827391089947970e-07,-2.276463938911746882e-07,-2.321100486733545794e-07,-2.365737034555344705e-07,-2.410373582377143882e-07,-2.455010130198943058e-07,-2.499646678020742235e-07,-2.544283225842541411e-07,-2.588919773664340588e-07,-2.633556321486139764e-07,-2.678192869307938941e-07,-2.722829417129738117e-07,-2.767465964951537294e-07,-2.812102512773336470e-07 +0.000000000000000000e+00,-6.451833986004762962e-09,-1.290366797200952592e-08,-1.935550195801428889e-08,-2.580733594401905185e-08,-3.225916993002381481e-08,-3.871100391602857777e-08,-4.516283790203334073e-08,-5.161467188803810370e-08,-5.806650587404286666e-08,-6.451833986004762962e-08,-7.097017384605239920e-08,-7.742200783205716878e-08,-8.387384181806193836e-08,-9.032567580406670794e-08,-9.677750979007147752e-08,-1.032293437760762471e-07,-1.096811777620810167e-07,-1.161330117480857863e-07,-1.225848457340905558e-07,-1.290366797200953387e-07,-1.354885137061001215e-07,-1.419403476921049043e-07,-1.483921816781096871e-07,-1.548440156641144699e-07,-1.612958496501192527e-07,-1.677476836361240355e-07,-1.741995176221288184e-07,-1.806513516081336012e-07,-1.871031855941383840e-07,-1.935550195801431668e-07,-2.000068535661479496e-07,-2.064586875521527324e-07,-2.129105215381575152e-07,-2.193623555241622981e-07,-2.258141895101670809e-07,-2.322660234961718637e-07,-2.387178574821766465e-07,-2.451696914681814293e-07,-2.516215254541862121e-07,-2.580733594401909949e-07,-2.645251934261957778e-07,-2.709770274122005606e-07,-2.774288613982053434e-07,-2.838806953842101262e-07,-2.903325293702149090e-07,-2.967843633562196918e-07,-3.032361973422244746e-07,-3.096880313282292575e-07,-3.161398653142340403e-07,-3.225916993002388231e-07,-3.290435332862436059e-07,-3.354953672722483887e-07,-3.419472012582531715e-07,-3.483990352442579543e-07,-3.548508692302627372e-07,-3.613027032162675200e-07,-3.677545372022723028e-07,-3.742063711882770856e-07,-3.806582051742818684e-07,-3.871100391602866512e-07,-3.935618731462914340e-07,-4.000137071322962169e-07,-4.064655411183009997e-07 +0.000000000000000000e+00,-6.251931039128407253e-09,-1.250386207825681451e-08,-1.875579311738522341e-08,-2.500772415651363232e-08,-3.125965519564204123e-08,-3.751158623477044683e-08,-4.376351727389885243e-08,-5.001544831302725803e-08,-5.626737935215566363e-08,-6.251931039128406923e-08,-6.877124143041247483e-08,-7.502317246954088042e-08,-8.127510350866928602e-08,-8.752703454779769162e-08,-9.377896558692609722e-08,-1.000308966260545028e-07,-1.062828276651829084e-07,-1.125347587043113140e-07,-1.187866897434397196e-07,-1.250386207825681120e-07,-1.312905518216964911e-07,-1.375424828608248702e-07,-1.437944138999532494e-07,-1.500463449390816285e-07,-1.562982759782100076e-07,-1.625502070173383868e-07,-1.688021380564667659e-07,-1.750540690955951450e-07,-1.813060001347235241e-07,-1.875579311738519033e-07,-1.938098622129802824e-07,-2.000617932521086615e-07,-2.063137242912370407e-07,-2.125656553303654198e-07,-2.188175863694937989e-07,-2.250695174086221781e-07,-2.313214484477505572e-07,-2.375733794868789363e-07,-2.438253105260073154e-07,-2.500772415651356946e-07,-2.563291726042640737e-07,-2.625811036433924528e-07,-2.688330346825208320e-07,-2.750849657216492111e-07,-2.813368967607775902e-07,-2.875888277999059693e-07,-2.938407588390343485e-07,-3.000926898781627276e-07,-3.063446209172911067e-07,-3.125965519564194859e-07,-3.188484829955478650e-07,-3.251004140346762441e-07,-3.313523450738046233e-07,-3.376042761129330024e-07,-3.438562071520613815e-07,-3.501081381911897606e-07,-3.563600692303181398e-07,-3.626120002694465189e-07,-3.688639313085748980e-07,-3.751158623477032772e-07,-3.813677933868316563e-07,-3.876197244259600354e-07,-3.938716554650884145e-07 +0.000000000000000000e+00,-4.852258596296738786e-09,-9.704517192593477571e-09,-1.455677578889021718e-08,-1.940903438518695845e-08,-2.426129298148369972e-08,-2.911355157778044099e-08,-3.396581017407718225e-08,-3.881806877037392352e-08,-4.367032736667066479e-08,-4.852258596296740605e-08,-5.337484455926414732e-08,-5.822710315556088859e-08,-6.307936175185762986e-08,-6.793162034815436451e-08,-7.278387894445109916e-08,-7.763613754074783381e-08,-8.248839613704456846e-08,-8.734065473334130311e-08,-9.219291332963803775e-08,-9.704517192593477240e-08,-1.018974305222315071e-07,-1.067496891185282417e-07,-1.116019477148249764e-07,-1.164542063111217110e-07,-1.213064649074184589e-07,-1.261587235037152068e-07,-1.310109821000119547e-07,-1.358632406963087025e-07,-1.407154992926054504e-07,-1.455677578889021983e-07,-1.504200164851989462e-07,-1.552722750814956941e-07,-1.601245336777924420e-07,-1.649767922740891899e-07,-1.698290508703859377e-07,-1.746813094666826856e-07,-1.795335680629794335e-07,-1.843858266592761814e-07,-1.892380852555729293e-07,-1.940903438518696772e-07,-1.989426024481664250e-07,-2.037948610444631729e-07,-2.086471196407599208e-07,-2.134993782370566687e-07,-2.183516368333534166e-07,-2.232038954296501645e-07,-2.280561540259469124e-07,-2.329084126222436602e-07,-2.377606712185404081e-07,-2.426129298148371295e-07,-2.474651884111338510e-07,-2.523174470074305724e-07,-2.571697056037272938e-07,-2.620219642000240152e-07,-2.668742227963207366e-07,-2.717264813926174580e-07,-2.765787399889141794e-07,-2.814309985852109009e-07,-2.862832571815076223e-07,-2.911355157778043437e-07,-2.959877743741010651e-07,-3.008400329703977865e-07,-3.056922915666945079e-07 +0.000000000000000000e+00,-6.451833986002185467e-09,-1.290366797200437093e-08,-1.935550195800655640e-08,-2.580733594400874187e-08,-3.225916993001093065e-08,-3.871100391601311942e-08,-4.516283790201530820e-08,-5.161467188801749697e-08,-5.806650587401968575e-08,-6.451833986002187453e-08,-7.097017384602406330e-08,-7.742200783202625208e-08,-8.387384181802844085e-08,-9.032567580403062963e-08,-9.677750979003281841e-08,-1.032293437760350072e-07,-1.096811777620371960e-07,-1.161330117480393847e-07,-1.225848457340415867e-07,-1.290366797200437755e-07,-1.354885137060459643e-07,-1.419403476920481531e-07,-1.483921816780503418e-07,-1.548440156640525306e-07,-1.612958496500547194e-07,-1.677476836360569082e-07,-1.741995176220590970e-07,-1.806513516080612857e-07,-1.871031855940634745e-07,-1.935550195800656633e-07,-2.000068535660678521e-07,-2.064586875520700408e-07,-2.129105215380722296e-07,-2.193623555240744184e-07,-2.258141895100766072e-07,-2.322660234960787959e-07,-2.387178574820809847e-07,-2.451696914680831735e-07,-2.516215254540853623e-07,-2.580733594400875510e-07,-2.645251934260897398e-07,-2.709770274120919286e-07,-2.774288613980941174e-07,-2.838806953840963061e-07,-2.903325293700984949e-07,-2.967843633561006837e-07,-3.032361973421028725e-07,-3.096880313281050612e-07,-3.161398653141072500e-07,-3.225916993001094388e-07,-3.290435332861116276e-07,-3.354953672721138164e-07,-3.419472012581160051e-07,-3.483990352441181939e-07,-3.548508692301203827e-07,-3.613027032161225715e-07,-3.677545372021247602e-07,-3.742063711881269490e-07,-3.806582051741291378e-07,-3.871100391601313266e-07,-3.935618731461335153e-07,-4.000137071321357041e-07,-4.064655411181378929e-07 +0.000000000000000000e+00,-6.251931039125512121e-09,-1.250386207825102424e-08,-1.875579311737653471e-08,-2.500772415650204518e-08,-3.125965519562755564e-08,-3.751158623475306942e-08,-4.376351727387858320e-08,-5.001544831300409697e-08,-5.626737935212961075e-08,-6.251931039125512452e-08,-6.877124143038064492e-08,-7.502317246950616531e-08,-8.127510350863168570e-08,-8.752703454775720609e-08,-9.377896558688272649e-08,-1.000308966260082469e-07,-1.062828276651337673e-07,-1.125347587042592877e-07,-1.187866897433848081e-07,-1.250386207825103285e-07,-1.312905518216358488e-07,-1.375424828607613692e-07,-1.437944138998868896e-07,-1.500463449390124100e-07,-1.562982759781379304e-07,-1.625502070172634508e-07,-1.688021380563889712e-07,-1.750540690955144916e-07,-1.813060001346400120e-07,-1.875579311737655324e-07,-1.938098622128910528e-07,-2.000617932520165732e-07,-2.063137242911420936e-07,-2.125656553302676140e-07,-2.188175863693931344e-07,-2.250695174085186547e-07,-2.313214484476441751e-07,-2.375733794867696955e-07,-2.438253105258952424e-07,-2.500772415650208157e-07,-2.563291726041463891e-07,-2.625811036432719624e-07,-2.688330346823975357e-07,-2.750849657215231091e-07,-2.813368967606486824e-07,-2.875888277997742557e-07,-2.938407588388998291e-07,-3.000926898780254024e-07,-3.063446209171509757e-07,-3.125965519562765491e-07,-3.188484829954021224e-07,-3.251004140345276957e-07,-3.313523450736532691e-07,-3.376042761127788424e-07,-3.438562071519044157e-07,-3.501081381910299890e-07,-3.563600692301555624e-07,-3.626120002692811357e-07,-3.688639313084067090e-07,-3.751158623475322824e-07,-3.813677933866578557e-07,-3.876197244257834290e-07,-3.938716554649090024e-07 +0.000000000000000000e+00,-4.852258596293967731e-09,-9.704517192587935461e-09,-1.455677578888190236e-08,-1.940903438517586761e-08,-2.426129298146983286e-08,-2.911355157776379811e-08,-3.396581017405776667e-08,-3.881806877035173523e-08,-4.367032736664570379e-08,-4.852258596293967234e-08,-5.337484455923364090e-08,-5.822710315552760946e-08,-6.307936175182157802e-08,-6.793162034811554657e-08,-7.278387894440951513e-08,-7.763613754070348369e-08,-8.248839613699745225e-08,-8.734065473329142081e-08,-9.219291332958538936e-08,-9.704517192587935792e-08,-1.018974305221733265e-07,-1.067496891184672950e-07,-1.116019477147612636e-07,-1.164542063110552322e-07,-1.213064649073492139e-07,-1.261587235036431825e-07,-1.310109820999371511e-07,-1.358632406962311196e-07,-1.407154992925250882e-07,-1.455677578888190567e-07,-1.504200164851130253e-07,-1.552722750814069938e-07,-1.601245336777009624e-07,-1.649767922739949310e-07,-1.698290508702888995e-07,-1.746813094665828681e-07,-1.795335680628768366e-07,-1.843858266591708052e-07,-1.892380852554647738e-07,-1.940903438517587423e-07,-1.989426024480527109e-07,-2.037948610443466794e-07,-2.086471196406406480e-07,-2.134993782369346165e-07,-2.183516368332285851e-07,-2.232038954295225537e-07,-2.280561540258165222e-07,-2.329084126221104908e-07,-2.377606712184044593e-07,-2.426129298146984279e-07,-2.474651884109923964e-07,-2.523174470072863650e-07,-2.571697056035803336e-07,-2.620219641998743021e-07,-2.668742227961682707e-07,-2.717264813924622392e-07,-2.765787399887562078e-07,-2.814309985850501764e-07,-2.862832571813441449e-07,-2.911355157776381135e-07,-2.959877743739320820e-07,-3.008400329702260506e-07,-3.056922915665200191e-07 +0.000000000000000000e+00,-6.715394397248318413e-09,-1.343078879449663683e-08,-2.014618319174495524e-08,-2.686157758899327365e-08,-3.357697198624159206e-08,-4.029236638348991048e-08,-4.700776078073822889e-08,-5.372315517798654730e-08,-6.043854957523486572e-08,-6.715394397248318413e-08,-7.386933836973150254e-08,-8.058473276697982096e-08,-8.730012716422813937e-08,-9.401552156147645778e-08,-1.007309159587247762e-07,-1.074463103559730946e-07,-1.141617047532214130e-07,-1.208770991504697314e-07,-1.275924935477180631e-07,-1.343078879449663947e-07,-1.410232823422147264e-07,-1.477386767394630580e-07,-1.544540711367113897e-07,-1.611694655339597213e-07,-1.678848599312080530e-07,-1.746002543284563846e-07,-1.813156487257047163e-07,-1.880310431229530479e-07,-1.947464375202013796e-07,-2.014618319174497112e-07,-2.081772263146980429e-07,-2.148926207119463745e-07,-2.216080151091947062e-07,-2.283234095064430378e-07,-2.350388039036913694e-07,-2.417541983009397276e-07,-2.484695926981880857e-07,-2.551849870954364438e-07,-2.619003814926848019e-07,-2.686157758899331600e-07,-2.753311702871815182e-07,-2.820465646844298763e-07,-2.887619590816782344e-07,-2.954773534789265925e-07,-3.021927478761749506e-07,-3.089081422734233087e-07,-3.156235366706716669e-07,-3.223389310679200250e-07,-3.290543254651683831e-07,-3.357697198624167412e-07,-3.424851142596650993e-07,-3.492005086569134574e-07,-3.559159030541618156e-07,-3.626312974514101737e-07,-3.693466918486585318e-07,-3.760620862459068899e-07,-3.827774806431552480e-07,-3.894928750404036062e-07,-3.962082694376519643e-07,-4.029236638349003224e-07,-4.096390582321486805e-07,-4.163544526293970386e-07,-4.230698470266453967e-07 +0.000000000000000000e+00,-6.607181854605563081e-09,-1.321436370921112616e-08,-1.982154556381668924e-08,-2.642872741842225232e-08,-3.303590927302781540e-08,-3.964309112763337849e-08,-4.625027298223894157e-08,-5.285745483684450465e-08,-5.946463669145006773e-08,-6.607181854605563081e-08,-7.267900040066119389e-08,-7.928618225526675697e-08,-8.589336410987232005e-08,-9.250054596447788313e-08,-9.910772781908344621e-08,-1.057149096736890093e-07,-1.123220915282945724e-07,-1.189292733829001355e-07,-1.255364552375057118e-07,-1.321436370921112881e-07,-1.387508189467168644e-07,-1.453580008013224407e-07,-1.519651826559280170e-07,-1.585723645105335934e-07,-1.651795463651391697e-07,-1.717867282197447460e-07,-1.783939100743503223e-07,-1.850010919289558986e-07,-1.916082737835614749e-07,-1.982154556381670512e-07,-2.048226374927726276e-07,-2.114298193473782039e-07,-2.180370012019837802e-07,-2.246441830565893565e-07,-2.312513649111949328e-07,-2.378585467658005091e-07,-2.444657286204060855e-07,-2.510729104750116353e-07,-2.576800923296171851e-07,-2.642872741842227350e-07,-2.708944560388282848e-07,-2.775016378934338347e-07,-2.841088197480393845e-07,-2.907160016026449344e-07,-2.973231834572504842e-07,-3.039303653118560341e-07,-3.105375471664615839e-07,-3.171447290210671338e-07,-3.237519108756726836e-07,-3.303590927302782335e-07,-3.369662745848837833e-07,-3.435734564394893331e-07,-3.501806382940948830e-07,-3.567878201487004328e-07,-3.633950020033059827e-07,-3.700021838579115325e-07,-3.766093657125170824e-07,-3.832165475671226322e-07,-3.898237294217281821e-07,-3.964309112763337319e-07,-4.030380931309392818e-07,-4.096452749855448316e-07,-4.162524568401503815e-07 +0.000000000000000000e+00,-5.062080754759230999e-09,-1.012416150951846200e-08,-1.518624226427769300e-08,-2.024832301903692400e-08,-2.531040377379615500e-08,-3.037248452855538599e-08,-3.543456528331461699e-08,-4.049664603807384799e-08,-4.555872679283307899e-08,-5.062080754759230999e-08,-5.568288830235154099e-08,-6.074496905711077199e-08,-6.580704981187000961e-08,-7.086913056662924722e-08,-7.593121132138848484e-08,-8.099329207614772246e-08,-8.605537283090696007e-08,-9.111745358566619769e-08,-9.617953434042543531e-08,-1.012416150951846729e-07,-1.063036958499439105e-07,-1.113657766047031482e-07,-1.164278573594623858e-07,-1.214899381142216234e-07,-1.265520188689808610e-07,-1.316140996237400986e-07,-1.366761803784993362e-07,-1.417382611332585739e-07,-1.468003418880178115e-07,-1.518624226427770491e-07,-1.569245033975362867e-07,-1.619865841522955243e-07,-1.670486649070547619e-07,-1.721107456618139996e-07,-1.771728264165732372e-07,-1.822349071713324748e-07,-1.872969879260917124e-07,-1.923590686808509500e-07,-1.974211494356101876e-07,-2.024832301903694253e-07,-2.075453109451286629e-07,-2.126073916998879005e-07,-2.176694724546471381e-07,-2.227315532094063757e-07,-2.277936339641656133e-07,-2.328557147189248510e-07,-2.379177954736840886e-07,-2.429798762284432997e-07,-2.480419569832025373e-07,-2.531040377379617749e-07,-2.581661184927210126e-07,-2.632281992474802502e-07,-2.682902800022394878e-07,-2.733523607569987254e-07,-2.784144415117579630e-07,-2.834765222665172006e-07,-2.885386030212764383e-07,-2.936006837760356759e-07,-2.986627645307949135e-07,-3.037248452855541511e-07,-3.087869260403133887e-07,-3.138490067950726263e-07,-3.189110875498318640e-07 +0.000000000000000000e+00,-6.715394397246283549e-09,-1.343078879449256710e-08,-2.014618319173885065e-08,-2.686157758898513419e-08,-3.357697198623141443e-08,-4.029236638347769467e-08,-4.700776078072397491e-08,-5.372315517797025515e-08,-6.043854957521653539e-08,-6.715394397246281563e-08,-7.386933836970909587e-08,-8.058473276695537611e-08,-8.730012716420165635e-08,-9.401552156144793659e-08,-1.007309159586942168e-07,-1.074463103559404971e-07,-1.141617047531867773e-07,-1.208770991504330708e-07,-1.275924935476793643e-07,-1.343078879449256577e-07,-1.410232823421719512e-07,-1.477386767394182447e-07,-1.544540711366645382e-07,-1.611694655339108316e-07,-1.678848599311571251e-07,-1.746002543284034186e-07,-1.813156487256497121e-07,-1.880310431228960055e-07,-1.947464375201422990e-07,-2.014618319173885925e-07,-2.081772263146348860e-07,-2.148926207118811794e-07,-2.216080151091274729e-07,-2.283234095063737664e-07,-2.350388039036200599e-07,-2.417541983008663533e-07,-2.484695926981126468e-07,-2.551849870953589403e-07,-2.619003814926052338e-07,-2.686157758898515272e-07,-2.753311702870978207e-07,-2.820465646843441142e-07,-2.887619590815904077e-07,-2.954773534788367011e-07,-3.021927478760829946e-07,-3.089081422733292881e-07,-3.156235366705755816e-07,-3.223389310678218750e-07,-3.290543254650681685e-07,-3.357697198623144620e-07,-3.424851142595607555e-07,-3.492005086568070489e-07,-3.559159030540533424e-07,-3.626312974512996359e-07,-3.693466918485459294e-07,-3.760620862457922228e-07,-3.827774806430385163e-07,-3.894928750402848098e-07,-3.962082694375311033e-07,-4.029236638347773967e-07,-4.096390582320236902e-07,-4.163544526292699837e-07,-4.230698470265162772e-07 +0.000000000000000000e+00,-6.607181854603275099e-09,-1.321436370920655020e-08,-1.982154556380982695e-08,-2.642872741841310371e-08,-3.303590927301638046e-08,-3.964309112761965390e-08,-4.625027298222292735e-08,-5.285745483682620079e-08,-5.946463669142947424e-08,-6.607181854603274768e-08,-7.267900040063602113e-08,-7.928618225523929457e-08,-8.589336410984256802e-08,-9.250054596444584146e-08,-9.910772781904911491e-08,-1.057149096736523884e-07,-1.123220915282556618e-07,-1.189292733828589352e-07,-1.255364552374621955e-07,-1.321436370920654689e-07,-1.387508189466687423e-07,-1.453580008012720158e-07,-1.519651826558752892e-07,-1.585723645104785627e-07,-1.651795463650818361e-07,-1.717867282196851096e-07,-1.783939100742883830e-07,-1.850010919288916565e-07,-1.916082737834949299e-07,-1.982154556380982033e-07,-2.048226374927014768e-07,-2.114298193473047502e-07,-2.180370012019080237e-07,-2.246441830565112971e-07,-2.312513649111145706e-07,-2.378585467657178440e-07,-2.444657286203211175e-07,-2.510729104749243909e-07,-2.576800923295276644e-07,-2.642872741841309378e-07,-2.708944560387342112e-07,-2.775016378933374847e-07,-2.841088197479407581e-07,-2.907160016025440316e-07,-2.973231834571473050e-07,-3.039303653117505785e-07,-3.105375471663538519e-07,-3.171447290209571254e-07,-3.237519108755603988e-07,-3.303590927301636722e-07,-3.369662745847669457e-07,-3.435734564393702191e-07,-3.501806382939734926e-07,-3.567878201485767660e-07,-3.633950020031800395e-07,-3.700021838577833129e-07,-3.766093657123865864e-07,-3.832165475669898598e-07,-3.898237294215931333e-07,-3.964309112761964067e-07,-4.030380931307996801e-07,-4.096452749854029536e-07,-4.162524568400062270e-07 +0.000000000000000000e+00,-5.062080754757126652e-09,-1.012416150951425330e-08,-1.518624226427137995e-08,-2.024832301902850661e-08,-2.531040377378563326e-08,-3.037248452854275991e-08,-3.543456528329988656e-08,-4.049664603805701321e-08,-4.555872679281413986e-08,-5.062080754757126652e-08,-5.568288830232839317e-08,-6.074496905708551982e-08,-6.580704981184263985e-08,-7.086913056659975989e-08,-7.593121132135687992e-08,-8.099329207611399996e-08,-8.605537283087111999e-08,-9.111745358562824002e-08,-9.617953434038536006e-08,-1.012416150951424801e-07,-1.063036958498996001e-07,-1.113657766046567202e-07,-1.164278573594138402e-07,-1.214899381141709602e-07,-1.265520188689280803e-07,-1.316140996236852003e-07,-1.366761803784423203e-07,-1.417382611331994404e-07,-1.468003418879565604e-07,-1.518624226427136804e-07,-1.569245033974708005e-07,-1.619865841522279205e-07,-1.670486649069850405e-07,-1.721107456617421606e-07,-1.771728264164992806e-07,-1.822349071712564006e-07,-1.872969879260135207e-07,-1.923590686807706407e-07,-1.974211494355277607e-07,-2.024832301902848808e-07,-2.075453109450420008e-07,-2.126073916997991208e-07,-2.176694724545562409e-07,-2.227315532093133609e-07,-2.277936339640704809e-07,-2.328557147188276010e-07,-2.379177954735847210e-07,-2.429798762283418675e-07,-2.480419569830989876e-07,-2.531040377378561076e-07,-2.581661184926132276e-07,-2.632281992473703477e-07,-2.682902800021274677e-07,-2.733523607568845877e-07,-2.784144415116417078e-07,-2.834765222663988278e-07,-2.885386030211559478e-07,-2.936006837759130679e-07,-2.986627645306701879e-07,-3.037248452854273079e-07,-3.087869260401844280e-07,-3.138490067949415480e-07,-3.189110875496986680e-07 +0.000000000000000000e+00,-6.803800468273407546e-09,-1.360760093654681509e-08,-2.041140140482022181e-08,-2.721520187309362687e-08,-3.401900234136703194e-08,-4.082280280964043700e-08,-4.762660327791384207e-08,-5.443040374618724713e-08,-6.123420421446064558e-08,-6.803800468273405064e-08,-7.484180515100745571e-08,-8.164560561928086077e-08,-8.844940608755426584e-08,-9.525320655582767090e-08,-1.020570070241010760e-07,-1.088608074923744810e-07,-1.156646079606478861e-07,-1.224684084289212912e-07,-1.292722088971946962e-07,-1.360760093654681013e-07,-1.428798098337415064e-07,-1.496836103020149114e-07,-1.564874107702883165e-07,-1.632912112385617215e-07,-1.700950117068351266e-07,-1.768988121751085317e-07,-1.837026126433819367e-07,-1.905064131116553418e-07,-1.973102135799287469e-07,-2.041140140482021519e-07,-2.109178145164755570e-07,-2.177216149847489621e-07,-2.245254154530223671e-07,-2.313292159212957722e-07,-2.381330163895691773e-07,-2.449368168578425823e-07,-2.517406173261159609e-07,-2.585444177943893395e-07,-2.653482182626627181e-07,-2.721520187309360967e-07,-2.789558191992094753e-07,-2.857596196674828539e-07,-2.925634201357562325e-07,-2.993672206040296111e-07,-3.061710210723029897e-07,-3.129748215405763683e-07,-3.197786220088497469e-07,-3.265824224771231255e-07,-3.333862229453965040e-07,-3.401900234136698826e-07,-3.469938238819432612e-07,-3.537976243502166398e-07,-3.606014248184900184e-07,-3.674052252867633970e-07,-3.742090257550367756e-07,-3.810128262233101542e-07,-3.878166266915835328e-07,-3.946204271598569114e-07,-4.014242276281302900e-07,-4.082280280964036686e-07,-4.150318285646770472e-07,-4.218356290329504258e-07,-4.286394295012238044e-07 +0.000000000000000000e+00,-6.782639143395900209e-09,-1.356527828679180042e-08,-2.034791743018769980e-08,-2.713055657358359753e-08,-3.391319571697949525e-08,-4.069583486037539298e-08,-4.747847400377129071e-08,-5.426111314716718843e-08,-6.104375229056308616e-08,-6.782639143395899051e-08,-7.460903057735489485e-08,-8.139166972075079919e-08,-8.817430886414670354e-08,-9.495694800754260788e-08,-1.017395871509385122e-07,-1.085222262943344166e-07,-1.153048654377303209e-07,-1.220875045811262253e-07,-1.288701437245221296e-07,-1.356527828679180340e-07,-1.424354220113139383e-07,-1.492180611547098426e-07,-1.560007002981057470e-07,-1.627833394415016513e-07,-1.695659785848975557e-07,-1.763486177282934600e-07,-1.831312568716893644e-07,-1.899138960150852687e-07,-1.966965351584811731e-07,-2.034791743018770774e-07,-2.102618134452729817e-07,-2.170444525886688861e-07,-2.238270917320647904e-07,-2.306097308754606948e-07,-2.373923700188565991e-07,-2.441750091622525035e-07,-2.509576483056484078e-07,-2.577402874490443122e-07,-2.645229265924402165e-07,-2.713055657358361208e-07,-2.780882048792320252e-07,-2.848708440226279295e-07,-2.916534831660238339e-07,-2.984361223094197382e-07,-3.052187614528156426e-07,-3.120014005962115469e-07,-3.187840397396074513e-07,-3.255666788830033556e-07,-3.323493180263992599e-07,-3.391319571697951643e-07,-3.459145963131910686e-07,-3.526972354565869730e-07,-3.594798745999828773e-07,-3.662625137433787817e-07,-3.730451528867746860e-07,-3.798277920301705904e-07,-3.866104311735664947e-07,-3.933930703169623990e-07,-4.001757094603583034e-07,-4.069583486037542077e-07,-4.137409877471501121e-07,-4.205236268905460164e-07,-4.273062660339419208e-07 +0.000000000000000000e+00,-5.084016613113314660e-09,-1.016803322622662932e-08,-1.525204983933994481e-08,-2.033606645245326195e-08,-2.542008306556657909e-08,-3.050409967867989623e-08,-3.558811629179321337e-08,-4.067213290490653051e-08,-4.575614951801984765e-08,-5.084016613113316480e-08,-5.592418274424648194e-08,-6.100819935735980570e-08,-6.609221597047312945e-08,-7.117623258358645321e-08,-7.626024919669977697e-08,-8.134426580981310073e-08,-8.642828242292642449e-08,-9.151229903603974825e-08,-9.659631564915307201e-08,-1.016803322622663958e-07,-1.067643488753797195e-07,-1.118483654884930433e-07,-1.169323821016063670e-07,-1.220163987147196908e-07,-1.271004153278330278e-07,-1.321844319409463648e-07,-1.372684485540597018e-07,-1.423524651671730388e-07,-1.474364817802863758e-07,-1.525204983933997128e-07,-1.576045150065130498e-07,-1.626885316196263868e-07,-1.677725482327397237e-07,-1.728565648458530607e-07,-1.779405814589663977e-07,-1.830245980720797347e-07,-1.881086146851930717e-07,-1.931926312983064087e-07,-1.982766479114197457e-07,-2.033606645245330827e-07,-2.084446811376464197e-07,-2.135286977507597567e-07,-2.186127143638730937e-07,-2.236967309769864307e-07,-2.287807475900997677e-07,-2.338647642032131047e-07,-2.389487808163264417e-07,-2.440327974294397522e-07,-2.491168140425530627e-07,-2.542008306556663732e-07,-2.592848472687796838e-07,-2.643688638818929943e-07,-2.694528804950063048e-07,-2.745368971081196153e-07,-2.796209137212329258e-07,-2.847049303343462364e-07,-2.897889469474595469e-07,-2.948729635605728574e-07,-2.999569801736861679e-07,-3.050409967867994785e-07,-3.101250133999127890e-07,-3.152090300130260995e-07,-3.202930466261394100e-07 +0.000000000000000000e+00,-6.803800468271717616e-09,-1.360760093654343523e-08,-2.041140140481515285e-08,-2.721520187308687046e-08,-3.401900234135858808e-08,-4.082280280963030570e-08,-4.762660327790202331e-08,-5.443040374617374093e-08,-6.123420421444545193e-08,-6.803800468271716292e-08,-7.484180515098887392e-08,-8.164560561926058492e-08,-8.844940608753229592e-08,-9.525320655580400692e-08,-1.020570070240757179e-07,-1.088608074923474289e-07,-1.156646079606191399e-07,-1.224684084288908509e-07,-1.292722088971625619e-07,-1.360760093654342729e-07,-1.428798098337059839e-07,-1.496836103019776949e-07,-1.564874107702494059e-07,-1.632912112385211169e-07,-1.700950117067928279e-07,-1.768988121750645389e-07,-1.837026126433362499e-07,-1.905064131116079609e-07,-1.973102135798796719e-07,-2.041140140481513829e-07,-2.109178145164230939e-07,-2.177216149846948049e-07,-2.245254154529665159e-07,-2.313292159212382269e-07,-2.381330163895099379e-07,-2.449368168577816489e-07,-2.517406173260533864e-07,-2.585444177943251238e-07,-2.653482182625968613e-07,-2.721520187308685988e-07,-2.789558191991403362e-07,-2.857596196674120737e-07,-2.925634201356838112e-07,-2.993672206039555486e-07,-3.061710210722272861e-07,-3.129748215404990236e-07,-3.197786220087707610e-07,-3.265824224770424985e-07,-3.333862229453142360e-07,-3.401900234135859734e-07,-3.469938238818577109e-07,-3.537976243501294484e-07,-3.606014248184011858e-07,-3.674052252866729233e-07,-3.742090257549446608e-07,-3.810128262232163982e-07,-3.878166266914881357e-07,-3.946204271597598732e-07,-4.014242276280316107e-07,-4.082280280963033481e-07,-4.150318285645750856e-07,-4.218356290328468231e-07,-4.286394295011185605e-07 +0.000000000000000000e+00,-6.782639143394054769e-09,-1.356527828678810954e-08,-2.034791743018216431e-08,-2.713055657357621907e-08,-3.391319571697027053e-08,-4.069583486036432199e-08,-4.747847400375837345e-08,-5.426111314715242491e-08,-6.104375229054647637e-08,-6.782639143394052783e-08,-7.460903057733457929e-08,-8.139166972072863075e-08,-8.817430886412268221e-08,-9.495694800751673367e-08,-1.017395871509107851e-07,-1.085222262943048366e-07,-1.153048654376988881e-07,-1.220875045810929263e-07,-1.288701437244869777e-07,-1.356527828678810292e-07,-1.424354220112750807e-07,-1.492180611546691321e-07,-1.560007002980631836e-07,-1.627833394414572350e-07,-1.695659785848512865e-07,-1.763486177282453380e-07,-1.831312568716393894e-07,-1.899138960150334409e-07,-1.966965351584274923e-07,-2.034791743018215438e-07,-2.102618134452155953e-07,-2.170444525886096467e-07,-2.238270917320036982e-07,-2.306097308753977496e-07,-2.373923700187918011e-07,-2.441750091621858526e-07,-2.509576483055799040e-07,-2.577402874489739555e-07,-2.645229265923680069e-07,-2.713055657357620584e-07,-2.780882048791561099e-07,-2.848708440225501613e-07,-2.916534831659442128e-07,-2.984361223093382642e-07,-3.052187614527323157e-07,-3.120014005961263672e-07,-3.187840397395204186e-07,-3.255666788829144701e-07,-3.323493180263085215e-07,-3.391319571697025730e-07,-3.459145963130966245e-07,-3.526972354564906759e-07,-3.594798745998847274e-07,-3.662625137432787788e-07,-3.730451528866728303e-07,-3.798277920300668818e-07,-3.866104311734609332e-07,-3.933930703168549847e-07,-4.001757094602490361e-07,-4.069583486036430876e-07,-4.137409877470371391e-07,-4.205236268904311905e-07,-4.273062660338252420e-07 +0.000000000000000000e+00,-5.084016613111676842e-09,-1.016803322622335368e-08,-1.525204983933503135e-08,-2.033606645244671068e-08,-2.542008306555839000e-08,-3.050409967867006932e-08,-3.558811629178175196e-08,-4.067213290489343459e-08,-4.575614951800511722e-08,-5.084016613111679985e-08,-5.592418274422848249e-08,-6.100819935734016512e-08,-6.609221597045184775e-08,-7.117623258356353038e-08,-7.626024919667521302e-08,-8.134426580978689565e-08,-8.642828242289857828e-08,-9.151229903601026091e-08,-9.659631564912194355e-08,-1.016803322622336262e-07,-1.067643488753453088e-07,-1.118483654884569914e-07,-1.169323821015686741e-07,-1.220163987146803567e-07,-1.271004153277920526e-07,-1.321844319409037484e-07,-1.372684485540154443e-07,-1.423524651671271402e-07,-1.474364817802388360e-07,-1.525204983933505319e-07,-1.576045150064622278e-07,-1.626885316195739236e-07,-1.677725482326856195e-07,-1.728565648457973154e-07,-1.779405814589090112e-07,-1.830245980720207071e-07,-1.881086146851324030e-07,-1.931926312982440989e-07,-1.982766479113557947e-07,-2.033606645244674906e-07,-2.084446811375791865e-07,-2.135286977506908823e-07,-2.186127143638025782e-07,-2.236967309769142741e-07,-2.287807475900259699e-07,-2.338647642031376658e-07,-2.389487808162493617e-07,-2.440327974293610840e-07,-2.491168140424728063e-07,-2.542008306555845287e-07,-2.592848472686962510e-07,-2.643688638818079733e-07,-2.694528804949196957e-07,-2.745368971080314180e-07,-2.796209137211431404e-07,-2.847049303342548627e-07,-2.897889469473665850e-07,-2.948729635604783074e-07,-2.999569801735900297e-07,-3.050409967867017520e-07,-3.101250133998134744e-07,-3.152090300129251967e-07,-3.202930466260369191e-07 +0.000000000000000000e+00,-6.784380187528319307e-09,-1.356876037505663861e-08,-2.035314056258495875e-08,-2.713752075011328054e-08,-3.392190093764160233e-08,-4.070628112516992412e-08,-4.749066131269824591e-08,-5.427504150022656769e-08,-6.105942168775489610e-08,-6.784380187528321789e-08,-7.462818206281153968e-08,-8.141256225033986147e-08,-8.819694243786818326e-08,-9.498132262539650505e-08,-1.017657028129248268e-07,-1.085500830004531486e-07,-1.153344631879814704e-07,-1.221188433755097922e-07,-1.289032235630381140e-07,-1.356876037505664358e-07,-1.424719839380947576e-07,-1.492563641256230794e-07,-1.560407443131514011e-07,-1.628251245006797229e-07,-1.696095046882080447e-07,-1.763938848757363665e-07,-1.831782650632646883e-07,-1.899626452507930101e-07,-1.967470254383213319e-07,-2.035314056258496537e-07,-2.103157858133779755e-07,-2.171001660009062972e-07,-2.238845461884346190e-07,-2.306689263759629408e-07,-2.374533065634912626e-07,-2.442376867510195844e-07,-2.510220669385478797e-07,-2.578064471260761750e-07,-2.645908273136044704e-07,-2.713752075011327657e-07,-2.781595876886610610e-07,-2.849439678761893563e-07,-2.917283480637176516e-07,-2.985127282512459470e-07,-3.052971084387742423e-07,-3.120814886263025376e-07,-3.188658688138308329e-07,-3.256502490013591282e-07,-3.324346291888874236e-07,-3.392190093764157189e-07,-3.460033895639440142e-07,-3.527877697514723095e-07,-3.595721499390006048e-07,-3.663565301265289001e-07,-3.731409103140571955e-07,-3.799252905015854908e-07,-3.867096706891137861e-07,-3.934940508766420814e-07,-4.002784310641703767e-07,-4.070628112516986721e-07,-4.138471914392269674e-07,-4.206315716267552627e-07,-4.274159518142835580e-07 +0.000000000000000000e+00,-6.784380187526850235e-09,-1.356876037505370047e-08,-2.035314056258055153e-08,-2.713752075010740425e-08,-3.392190093763425696e-08,-4.070628112516110968e-08,-4.749066131268796240e-08,-5.427504150021481511e-08,-6.105942168774166121e-08,-6.784380187526850069e-08,-7.462818206279534017e-08,-8.141256225032217966e-08,-8.819694243784901914e-08,-9.498132262537585862e-08,-1.017657028129026981e-07,-1.085500830004295376e-07,-1.153344631879563771e-07,-1.221188433754832165e-07,-1.289032235630100560e-07,-1.356876037505368955e-07,-1.424719839380637350e-07,-1.492563641255905745e-07,-1.560407443131174139e-07,-1.628251245006442534e-07,-1.696095046881710929e-07,-1.763938848756979324e-07,-1.831782650632247719e-07,-1.899626452507516114e-07,-1.967470254382784508e-07,-2.035314056258052903e-07,-2.103157858133321298e-07,-2.171001660008589693e-07,-2.238845461883858088e-07,-2.306689263759126482e-07,-2.374533065634394877e-07,-2.442376867509663272e-07,-2.510220669384931402e-07,-2.578064471260199532e-07,-2.645908273135467662e-07,-2.713752075010735793e-07,-2.781595876886003923e-07,-2.849439678761272053e-07,-2.917283480636540183e-07,-2.985127282511808313e-07,-3.052971084387076443e-07,-3.120814886262344573e-07,-3.188658688137612703e-07,-3.256502490012880833e-07,-3.324346291888148964e-07,-3.392190093763417094e-07,-3.460033895638685224e-07,-3.527877697513953354e-07,-3.595721499389221484e-07,-3.663565301264489614e-07,-3.731409103139757744e-07,-3.799252905015025874e-07,-3.867096706890294004e-07,-3.934940508765562135e-07,-4.002784310640830265e-07,-4.070628112516098395e-07,-4.138471914391366525e-07,-4.206315716266634655e-07,-4.274159518141902785e-07 +0.000000000000000000e+00,-7.420605537110389354e-09,-1.484121107422077871e-08,-2.226181661133116889e-08,-2.968242214844156072e-08,-3.710302768555195587e-08,-4.452363322266235101e-08,-5.194423875977274616e-08,-5.936484429688314130e-08,-6.678544983399353644e-08,-7.420605537110393821e-08,-8.162666090821433997e-08,-8.904726644532474173e-08,-9.646787198243514349e-08,-1.038884775195455453e-07,-1.113090830566559470e-07,-1.187296885937663488e-07,-1.261502941308767638e-07,-1.335708996679871788e-07,-1.409915052050975938e-07,-1.484121107422080088e-07,-1.558327162793184238e-07,-1.632533218164288388e-07,-1.706739273535392537e-07,-1.780945328906496687e-07,-1.855151384277600837e-07,-1.929357439648704987e-07,-2.003563495019809137e-07,-2.077769550390913287e-07,-2.151975605762017437e-07,-2.226181661133121587e-07,-2.300387716504225737e-07,-2.374593771875329887e-07,-2.448799827246434037e-07,-2.523005882617538452e-07,-2.597211937988642866e-07,-2.671417993359747281e-07,-2.745624048730851696e-07,-2.819830104101956110e-07,-2.894036159473060525e-07,-2.968242214844164940e-07,-3.042448270215269354e-07,-3.116654325586373769e-07,-3.190860380957478184e-07,-3.265066436328582598e-07,-3.339272491699687013e-07,-3.413478547070791428e-07,-3.487684602441895842e-07,-3.561890657813000257e-07,-3.636096713184104672e-07,-3.710302768555209086e-07,-3.784508823926313501e-07,-3.858714879297417916e-07,-3.932920934668522330e-07,-4.007126990039626745e-07,-4.081333045410731160e-07,-4.155539100781835574e-07,-4.229745156152939989e-07,-4.303951211524044404e-07,-4.378157266895148818e-07,-4.452363322266253233e-07,-4.526569377637357648e-07,-4.600775433008462062e-07,-4.674981488379566477e-07 +0.000000000000000000e+00,-1.080474823820845083e-08,-2.160949647641690165e-08,-3.241424471462535248e-08,-4.321899295283380330e-08,-5.402374119104225413e-08,-6.482848942925070496e-08,-7.563323766745915578e-08,-8.643798590566760661e-08,-9.724273414387605743e-08,-1.080474823820845083e-07,-1.188522306202929591e-07,-1.296569788585014099e-07,-1.404617270967098740e-07,-1.512664753349183380e-07,-1.620712235731268021e-07,-1.728759718113352662e-07,-1.836807200495437302e-07,-1.944854682877521943e-07,-2.052902165259606583e-07,-2.160949647641691224e-07,-2.268997130023775865e-07,-2.377044612405860505e-07,-2.485092094787945146e-07,-2.593139577170029786e-07,-2.701187059552114427e-07,-2.809234541934199068e-07,-2.917282024316283708e-07,-3.025329506698368349e-07,-3.133376989080452989e-07,-3.241424471462537630e-07,-3.349471953844622271e-07,-3.457519436226706911e-07,-3.565566918608791552e-07,-3.673614400990876192e-07,-3.781661883372960833e-07,-3.889709365755045474e-07,-3.997756848137130114e-07,-4.105804330519214755e-07,-4.213851812901299396e-07,-4.321899295283384036e-07,-4.429946777665468677e-07,-4.537994260047553317e-07,-4.646041742429637958e-07,-4.754089224811722599e-07,-4.862136707193807769e-07,-4.970184189575893468e-07,-5.078231671957979167e-07,-5.186279154340064867e-07,-5.294326636722150566e-07,-5.402374119104236266e-07,-5.510421601486321965e-07,-5.618469083868407664e-07,-5.726516566250493364e-07,-5.834564048632579063e-07,-5.942611531014664763e-07,-6.050659013396750462e-07,-6.158706495778836161e-07,-6.266753978160921861e-07,-6.374801460543007560e-07,-6.482848942925093260e-07,-6.590896425307178959e-07,-6.698943907689264658e-07,-6.806991390071350358e-07 +0.000000000000000000e+00,-1.092809819106659350e-08,-2.185619638213318700e-08,-3.278429457319978049e-08,-4.371239276426637399e-08,-5.464049095533296749e-08,-6.556858914639956099e-08,-7.649668733746616110e-08,-8.742478552853276122e-08,-9.835288371959936133e-08,-1.092809819106659614e-07,-1.202090801017325616e-07,-1.311371782927991484e-07,-1.420652764838657353e-07,-1.529933746749323222e-07,-1.639214728659989091e-07,-1.748495710570654960e-07,-1.857776692481320828e-07,-1.967057674391986697e-07,-2.076338656302652566e-07,-2.185619638213318435e-07,-2.294900620123984304e-07,-2.404181602034650172e-07,-2.513462583945316041e-07,-2.622743565855981910e-07,-2.732024547766647779e-07,-2.841305529677313648e-07,-2.950586511587979516e-07,-3.059867493498645385e-07,-3.169148475409311254e-07,-3.278429457319977123e-07,-3.387710439230642992e-07,-3.496991421141308860e-07,-3.606272403051974729e-07,-3.715553384962640598e-07,-3.824834366873306467e-07,-3.934115348783972336e-07,-4.043396330694638204e-07,-4.152677312605304073e-07,-4.261958294515969942e-07,-4.371239276426635811e-07,-4.480520258337301680e-07,-4.589801240247967548e-07,-4.699082222158633417e-07,-4.808363204069299286e-07,-4.917644185979965684e-07,-5.026925167890632082e-07,-5.136206149801298481e-07,-5.245487131711964879e-07,-5.354768113622631277e-07,-5.464049095533297675e-07,-5.573330077443964073e-07,-5.682611059354630472e-07,-5.791892041265296870e-07,-5.901173023175963268e-07,-6.010454005086629666e-07,-6.119734986997296064e-07,-6.229015968907962463e-07,-6.338296950818628861e-07,-6.447577932729295259e-07,-6.556858914639961657e-07,-6.666139896550628055e-07,-6.775420878461294454e-07,-6.884701860371960852e-07 +0.000000000000000000e+00,-8.039384278493065980e-09,-1.607876855698613196e-08,-2.411815283547919959e-08,-3.215753711397227054e-08,-4.019692139246534148e-08,-4.823630567095841242e-08,-5.627568994945148337e-08,-6.431507422794455431e-08,-7.235445850643761864e-08,-8.039384278493068296e-08,-8.843322706342374729e-08,-9.647261134191681161e-08,-1.045119956204098759e-07,-1.125513798989029403e-07,-1.205907641773960046e-07,-1.286301484558890822e-07,-1.366695327343821597e-07,-1.447089170128752373e-07,-1.527483012913683148e-07,-1.607876855698613924e-07,-1.688270698483544700e-07,-1.768664541268475475e-07,-1.849058384053406251e-07,-1.929452226838337026e-07,-2.009846069623267802e-07,-2.090239912408198578e-07,-2.170633755193129353e-07,-2.251027597978060129e-07,-2.331421440762990904e-07,-2.411815283547921680e-07,-2.492209126332852720e-07,-2.572602969117783761e-07,-2.652996811902714801e-07,-2.733390654687645841e-07,-2.813784497472576882e-07,-2.894178340257507922e-07,-2.974572183042438962e-07,-3.054966025827370002e-07,-3.135359868612301043e-07,-3.215753711397232083e-07,-3.296147554182163123e-07,-3.376541396967094164e-07,-3.456935239752025204e-07,-3.537329082536956244e-07,-3.617722925321887285e-07,-3.698116768106818325e-07,-3.778510610891749365e-07,-3.858904453676680405e-07,-3.939298296461611446e-07,-4.019692139246542486e-07,-4.100085982031473526e-07,-4.180479824816404567e-07,-4.260873667601335607e-07,-4.341267510386266647e-07,-4.421661353171197688e-07,-4.502055195956128728e-07,-4.582449038741059768e-07,-4.662842881525990808e-07,-4.743236724310921849e-07,-4.823630567095852889e-07,-4.904024409880783929e-07,-4.984418252665714970e-07,-5.064812095450646010e-07 +0.000000000000000000e+00,-9.637893447796468564e-09,-1.927578689559293713e-08,-2.891368034338940735e-08,-3.855157379118588087e-08,-4.818946723898235440e-08,-5.782736068677882793e-08,-6.746525413457529484e-08,-7.710314758237176175e-08,-8.674104103016822866e-08,-9.637893447796469557e-08,-1.060168279257611625e-07,-1.156547213735576294e-07,-1.252926148213540963e-07,-1.349305082691505632e-07,-1.445684017169470301e-07,-1.542062951647434970e-07,-1.638441886125399639e-07,-1.734820820603364308e-07,-1.831199755081328978e-07,-1.927578689559293647e-07,-2.023957624037258316e-07,-2.120336558515222985e-07,-2.216715492993187654e-07,-2.313094427471152323e-07,-2.409473361949116727e-07,-2.505852296427081397e-07,-2.602231230905046066e-07,-2.698610165383010735e-07,-2.794989099860975404e-07,-2.891368034338940073e-07,-2.987746968816904742e-07,-3.084125903294869411e-07,-3.180504837772834080e-07,-3.276883772250798749e-07,-3.373262706728763418e-07,-3.469641641206728088e-07,-3.566020575684692757e-07,-3.662399510162657426e-07,-3.758778444640622095e-07,-3.855157379118586764e-07,-3.951536313596551433e-07,-4.047915248074516102e-07,-4.144294182552480771e-07,-4.240673117030445440e-07,-4.337052051508410109e-07,-4.433430985986374779e-07,-4.529809920464339448e-07,-4.626188854942304117e-07,-4.722567789420268786e-07,-4.818946723898233455e-07,-4.915325658376198124e-07,-5.011704592854162793e-07,-5.108083527332127462e-07,-5.204462461810092131e-07,-5.300841396288056800e-07,-5.397220330766021470e-07,-5.493599265243986139e-07,-5.589978199721950808e-07,-5.686357134199915477e-07,-5.782736068677880146e-07,-5.879115003155844815e-07,-5.975493937633809484e-07,-6.071872872111774153e-07 +0.000000000000000000e+00,-5.955464104468665511e-09,-1.191092820893733102e-08,-1.786639231340599736e-08,-2.382185641787466535e-08,-2.977732052234333334e-08,-3.573278462681200134e-08,-4.168824873128066933e-08,-4.764371283574933732e-08,-5.359917694021800531e-08,-5.955464104468667331e-08,-6.551010514915534792e-08,-7.146556925362401591e-08,-7.742103335809268390e-08,-8.337649746256135189e-08,-8.933196156703001989e-08,-9.528742567149868788e-08,-1.012428897759673559e-07,-1.071983538804360239e-07,-1.131538179849046919e-07,-1.191092820893733598e-07,-1.250647461938420278e-07,-1.310202102983106958e-07,-1.369756744027793638e-07,-1.429311385072480318e-07,-1.488866026117166998e-07,-1.548420667161853678e-07,-1.607975308206540358e-07,-1.667529949251227038e-07,-1.727084590295913718e-07,-1.786639231340600398e-07,-1.846193872385287078e-07,-1.905748513429973758e-07,-1.965303154474660437e-07,-2.024857795519347117e-07,-2.084412436564033797e-07,-2.143967077608720477e-07,-2.203521718653407157e-07,-2.263076359698093837e-07,-2.322631000742780517e-07,-2.382185641787467197e-07,-2.441740282832153612e-07,-2.501294923876840027e-07,-2.560849564921526443e-07,-2.620404205966212858e-07,-2.679958847010899273e-07,-2.739513488055585688e-07,-2.799068129100272104e-07,-2.858622770144958519e-07,-2.918177411189644934e-07,-2.977732052234331349e-07,-3.037286693279017764e-07,-3.096841334323704180e-07,-3.156395975368390595e-07,-3.215950616413077010e-07,-3.275505257457763425e-07,-3.335059898502449841e-07,-3.394614539547136256e-07,-3.454169180591822671e-07,-3.513723821636509086e-07,-3.573278462681195501e-07,-3.632833103725881917e-07,-3.692387744770568332e-07,-3.751942385815254747e-07 +0.000000000000000000e+00,-1.089890737916098023e-08,-2.179781475832196045e-08,-3.269672213748293902e-08,-4.359562951664391429e-08,-5.449453689580488955e-08,-6.539344427496586481e-08,-7.629235165412684007e-08,-8.719125903328781534e-08,-9.809016641244879060e-08,-1.089890737916097659e-07,-1.198879811707707411e-07,-1.307868885499317032e-07,-1.416857959290926652e-07,-1.525847033082536272e-07,-1.634836106874145892e-07,-1.743825180665755513e-07,-1.852814254457365133e-07,-1.961803328248974753e-07,-2.070792402040584373e-07,-2.179781475832193994e-07,-2.288770549623803614e-07,-2.397759623415413234e-07,-2.506748697207023119e-07,-2.615737770998633004e-07,-2.724726844790242889e-07,-2.833715918581852774e-07,-2.942704992373462659e-07,-3.051694066165072544e-07,-3.160683139956682429e-07,-3.269672213748292314e-07,-3.378661287539902199e-07,-3.487650361331512084e-07,-3.596639435123121969e-07,-3.705628508914731854e-07,-3.814617582706341739e-07,-3.923606656497951624e-07,-4.032595730289561509e-07,-4.141584804081171394e-07,-4.250573877872781279e-07,-4.359562951664391164e-07,-4.468552025456001049e-07,-4.577541099247610934e-07,-4.686530173039220819e-07,-4.795519246830830704e-07,-4.904508320622440589e-07,-5.013497394414050474e-07,-5.122486468205660359e-07,-5.231475541997270244e-07,-5.340464615788880129e-07,-5.449453689580490014e-07,-5.558442763372099899e-07,-5.667431837163709784e-07,-5.776420910955319669e-07,-5.885409984746929554e-07,-5.994399058538539439e-07,-6.103388132330149324e-07,-6.212377206121759208e-07,-6.321366279913369093e-07,-6.430355353704978978e-07,-6.539344427496588863e-07,-6.648333501288198748e-07,-6.757322575079808633e-07,-6.866311648871418518e-07 +0.000000000000000000e+00,-9.793865668696774212e-09,-1.958773133739354842e-08,-2.938159700609032429e-08,-3.917546267478710347e-08,-4.896932834348388264e-08,-5.876319401218066182e-08,-6.855705968087744099e-08,-7.835092534957422017e-08,-8.814479101827099934e-08,-9.793865668696777852e-08,-1.077325223556645577e-07,-1.175263880243613369e-07,-1.273202536930581028e-07,-1.371141193617548555e-07,-1.469079850304516082e-07,-1.567018506991483609e-07,-1.664957163678451136e-07,-1.762895820365418663e-07,-1.860834477052386190e-07,-1.958773133739353717e-07,-2.056711790426321244e-07,-2.154650447113288772e-07,-2.252589103800256299e-07,-2.350527760487223826e-07,-2.448466417174191353e-07,-2.546405073861158880e-07,-2.644343730548126407e-07,-2.742282387235093934e-07,-2.840221043922061461e-07,-2.938159700609028988e-07,-3.036098357295996515e-07,-3.134037013982964042e-07,-3.231975670669931569e-07,-3.329914327356899096e-07,-3.427852984043866623e-07,-3.525791640730834150e-07,-3.623730297417801677e-07,-3.721668954104769204e-07,-3.819607610791736731e-07,-3.917546267478704258e-07,-4.015484924165671786e-07,-4.113423580852639313e-07,-4.211362237539606840e-07,-4.309300894226574367e-07,-4.407239550913541894e-07,-4.505178207600509421e-07,-4.603116864287476948e-07,-4.701055520974444475e-07,-4.798994177661412531e-07,-4.896932834348380588e-07,-4.994871491035348644e-07,-5.092810147722316701e-07,-5.190748804409284757e-07,-5.288687461096252814e-07,-5.386626117783220870e-07,-5.484564774470188926e-07,-5.582503431157156983e-07,-5.680442087844125039e-07,-5.778380744531093096e-07,-5.876319401218061152e-07,-5.974258057905029209e-07,-6.072196714591997265e-07,-6.170135371278965322e-07 +0.000000000000000000e+00,-7.420605537104455160e-09,-1.484121107420891032e-08,-2.226181661131336465e-08,-2.968242214841781733e-08,-3.710302768552227001e-08,-4.452363322262672269e-08,-5.194423875973117537e-08,-5.936484429683562805e-08,-6.678544983394008072e-08,-7.420605537104454002e-08,-8.162666090814899932e-08,-8.904726644525345861e-08,-9.646787198235791791e-08,-1.038884775194623772e-07,-1.113090830565668365e-07,-1.187296885936712958e-07,-1.261502941307757551e-07,-1.335708996678802144e-07,-1.409915052049846737e-07,-1.484121107420891330e-07,-1.558327162791935923e-07,-1.632533218162980516e-07,-1.706739273534025109e-07,-1.780945328905069702e-07,-1.855151384276114295e-07,-1.929357439647158888e-07,-2.003563495018203481e-07,-2.077769550389248073e-07,-2.151975605760292666e-07,-2.226181661131337259e-07,-2.300387716502381852e-07,-2.374593771873426445e-07,-2.448799827244471038e-07,-2.523005882615515631e-07,-2.597211937986560224e-07,-2.671417993357604817e-07,-2.745624048728649410e-07,-2.819830104099694003e-07,-2.894036159470738596e-07,-2.968242214841783189e-07,-3.042448270212827782e-07,-3.116654325583872375e-07,-3.190860380954916968e-07,-3.265066436325961561e-07,-3.339272491697006154e-07,-3.413478547068050747e-07,-3.487684602439095340e-07,-3.561890657810139933e-07,-3.636096713181184526e-07,-3.710302768552229119e-07,-3.784508823923273712e-07,-3.858714879294318304e-07,-3.932920934665362897e-07,-4.007126990036407490e-07,-4.081333045407452083e-07,-4.155539100778496676e-07,-4.229745156149541269e-07,-4.303951211520585862e-07,-4.378157266891630455e-07,-4.452363322262675048e-07,-4.526569377633719641e-07,-4.600775433004764234e-07,-4.674981488375808827e-07 +0.000000000000000000e+00,-1.080474823820162824e-08,-2.160949647640325648e-08,-3.241424471460488472e-08,-4.321899295280651296e-08,-5.402374119100814120e-08,-6.482848942920976944e-08,-7.563323766741139106e-08,-8.643798590561301269e-08,-9.724273414381463431e-08,-1.080474823820162559e-07,-1.188522306202178776e-07,-1.296569788584195124e-07,-1.404617270966211473e-07,-1.512664753348227821e-07,-1.620712235730244170e-07,-1.728759718112260518e-07,-1.836807200494276867e-07,-1.944854682876293216e-07,-2.052902165258309564e-07,-2.160949647640325913e-07,-2.268997130022342261e-07,-2.377044612404358610e-07,-2.485092094786374958e-07,-2.593139577168391307e-07,-2.701187059550407656e-07,-2.809234541932424004e-07,-2.917282024314440353e-07,-3.025329506696456701e-07,-3.133376989078473050e-07,-3.241424471460489399e-07,-3.349471953842505747e-07,-3.457519436224522096e-07,-3.565566918606538444e-07,-3.673614400988554793e-07,-3.781661883370571141e-07,-3.889709365752587490e-07,-3.997756848134603839e-07,-4.105804330516620187e-07,-4.213851812898636536e-07,-4.321899295280652884e-07,-4.429946777662669233e-07,-4.537994260044685581e-07,-4.646041742426701930e-07,-4.754089224808718279e-07,-4.862136707190735157e-07,-4.970184189572752035e-07,-5.078231671954768912e-07,-5.186279154336785790e-07,-5.294326636718802668e-07,-5.402374119100819546e-07,-5.510421601482836424e-07,-5.618469083864853302e-07,-5.726516566246870180e-07,-5.834564048628887058e-07,-5.942611531010903936e-07,-6.050659013392920814e-07,-6.158706495774937692e-07,-6.266753978156954570e-07,-6.374801460538971448e-07,-6.482848942920988326e-07,-6.590896425303005204e-07,-6.698943907685022082e-07,-6.806991390067038960e-07 +0.000000000000000000e+00,-1.089890737915758548e-08,-2.179781475831517095e-08,-3.269672213747275478e-08,-4.359562951663033529e-08,-5.449453689578791580e-08,-6.539344427494549632e-08,-7.629235165410307021e-08,-8.719125903326064411e-08,-9.809016641241821800e-08,-1.089890737915757919e-07,-1.198879811707333658e-07,-1.307868885498909397e-07,-1.416857959290485136e-07,-1.525847033082060875e-07,-1.634836106873636614e-07,-1.743825180665212353e-07,-1.852814254456788092e-07,-1.961803328248363831e-07,-2.070792402039939570e-07,-2.179781475831515309e-07,-2.288770549623091048e-07,-2.397759623414666787e-07,-2.506748697206242790e-07,-2.615737770997818794e-07,-2.724726844789394798e-07,-2.833715918580970801e-07,-2.942704992372546805e-07,-3.051694066164122808e-07,-3.160683139955698812e-07,-3.269672213747274816e-07,-3.378661287538850819e-07,-3.487650361330426823e-07,-3.596639435122002827e-07,-3.705628508913578830e-07,-3.814617582705154834e-07,-3.923606656496730838e-07,-4.032595730288306841e-07,-4.141584804079882845e-07,-4.250573877871458849e-07,-4.359562951663034852e-07,-4.468552025454610856e-07,-4.577541099246186860e-07,-4.686530173037762863e-07,-4.795519246829338867e-07,-4.904508320620914871e-07,-5.013497394412490874e-07,-5.122486468204066878e-07,-5.231475541995642882e-07,-5.340464615787218885e-07,-5.449453689578794889e-07,-5.558442763370370893e-07,-5.667431837161946896e-07,-5.776420910953522900e-07,-5.885409984745098904e-07,-5.994399058536674907e-07,-6.103388132328250911e-07,-6.212377206119826915e-07,-6.321366279911402918e-07,-6.430355353702978922e-07,-6.539344427494554926e-07,-6.648333501286130929e-07,-6.757322575077706933e-07,-6.866311648869282937e-07 +0.000000000000000000e+00,-8.039384278486446881e-09,-1.607876855697289376e-08,-2.411815283545934064e-08,-3.215753711394578752e-08,-4.019692139243223440e-08,-4.823630567091868128e-08,-5.627568994940512817e-08,-6.431507422789157505e-08,-7.235445850637802193e-08,-8.039384278486446881e-08,-8.843322706335091569e-08,-9.647261134183736257e-08,-1.045119956203238095e-07,-1.125513798988102563e-07,-1.205907641772967164e-07,-1.286301484557831766e-07,-1.366695327342696367e-07,-1.447089170127560968e-07,-1.527483012912425569e-07,-1.607876855697290170e-07,-1.688270698482154771e-07,-1.768664541267019373e-07,-1.849058384051883974e-07,-1.929452226836748575e-07,-2.009846069621613176e-07,-2.090239912406477777e-07,-2.170633755191342378e-07,-2.251027597976206980e-07,-2.331421440761071581e-07,-2.411815283545936447e-07,-2.492209126330801312e-07,-2.572602969115666178e-07,-2.652996811900531044e-07,-2.733390654685395910e-07,-2.813784497470260776e-07,-2.894178340255125642e-07,-2.974572183039990508e-07,-3.054966025824855373e-07,-3.135359868609720239e-07,-3.215753711394585105e-07,-3.296147554179449971e-07,-3.376541396964314837e-07,-3.456935239749179703e-07,-3.537329082534044568e-07,-3.617722925318909434e-07,-3.698116768103774300e-07,-3.778510610888639166e-07,-3.858904453673504032e-07,-3.939298296458368898e-07,-4.019692139243233764e-07,-4.100085982028098629e-07,-4.180479824812963495e-07,-4.260873667597828361e-07,-4.341267510382693227e-07,-4.421661353167558093e-07,-4.502055195952422959e-07,-4.582449038737287825e-07,-4.662842881522152690e-07,-4.743236724307017556e-07,-4.823630567091882422e-07,-4.904024409876746759e-07,-4.984418252661611095e-07,-5.064812095446475432e-07 +0.000000000000000000e+00,-9.637893447789045445e-09,-1.927578689557809089e-08,-2.891368034336713634e-08,-3.855157379115618178e-08,-4.818946723894522392e-08,-5.782736068673426605e-08,-6.746525413452330819e-08,-7.710314758231235033e-08,-8.674104103010139246e-08,-9.637893447789043460e-08,-1.060168279256794767e-07,-1.156547213734685189e-07,-1.252926148212575610e-07,-1.349305082690466164e-07,-1.445684017168356718e-07,-1.542062951646247271e-07,-1.638441886124137825e-07,-1.734820820602028379e-07,-1.831199755079918932e-07,-1.927578689557809486e-07,-2.023957624035700040e-07,-2.120336558513590594e-07,-2.216715492991481147e-07,-2.313094427469371701e-07,-2.409473361947262255e-07,-2.505852296425152808e-07,-2.602231230903043362e-07,-2.698610165380933916e-07,-2.794989099858824470e-07,-2.891368034336715023e-07,-2.987746968814605577e-07,-3.084125903292496131e-07,-3.180504837770386684e-07,-3.276883772248277238e-07,-3.373262706726167792e-07,-3.469641641204058346e-07,-3.566020575681948899e-07,-3.662399510159839453e-07,-3.758778444637730007e-07,-3.855157379115620560e-07,-3.951536313593511114e-07,-4.047915248071401668e-07,-4.144294182549292222e-07,-4.240673117027182775e-07,-4.337052051505073329e-07,-4.433430985982963883e-07,-4.529809920460854436e-07,-4.626188854938744990e-07,-4.722567789416635544e-07,-4.818946723894525568e-07,-4.915325658372416122e-07,-5.011704592850306676e-07,-5.108083527328197229e-07,-5.204462461806087783e-07,-5.300841396283978337e-07,-5.397220330761868890e-07,-5.493599265239759444e-07,-5.589978199717649998e-07,-5.686357134195540552e-07,-5.782736068673431105e-07,-5.879115003151321659e-07,-5.975493937629212213e-07,-6.071872872107102766e-07 +0.000000000000000000e+00,-5.955464104462321863e-09,-1.191092820892464373e-08,-1.786639231338696559e-08,-2.382185641784928745e-08,-2.977732052231160931e-08,-3.573278462677393118e-08,-4.168824873123625304e-08,-4.764371283569857490e-08,-5.359917694016089676e-08,-5.955464104462321863e-08,-6.551010514908554711e-08,-7.146556925354787559e-08,-7.742103335801020407e-08,-8.337649746247253255e-08,-8.933196156693486103e-08,-9.528742567139718951e-08,-1.012428897758595180e-07,-1.071983538803218465e-07,-1.131538179847841749e-07,-1.191092820892465034e-07,-1.250647461937088319e-07,-1.310202102981711472e-07,-1.369756744026334624e-07,-1.429311385070957776e-07,-1.488866026115580929e-07,-1.548420667160204081e-07,-1.607975308204827234e-07,-1.667529949249450386e-07,-1.727084590294073539e-07,-1.786639231338696691e-07,-1.846193872383319844e-07,-1.905748513427942996e-07,-1.965303154472566149e-07,-2.024857795517189301e-07,-2.084412436561812453e-07,-2.143967077606435606e-07,-2.203521718651058758e-07,-2.263076359695681911e-07,-2.322631000740305063e-07,-2.382185641784928216e-07,-2.441740282829551103e-07,-2.501294923874173991e-07,-2.560849564918796879e-07,-2.620404205963419767e-07,-2.679958847008042654e-07,-2.739513488052665542e-07,-2.799068129097288430e-07,-2.858622770141911318e-07,-2.918177411186534205e-07,-2.977732052231157093e-07,-3.037286693275779981e-07,-3.096841334320402869e-07,-3.156395975365025756e-07,-3.215950616409648644e-07,-3.275505257454271532e-07,-3.335059898498894420e-07,-3.394614539543517308e-07,-3.454169180588140195e-07,-3.513723821632763083e-07,-3.573278462677385971e-07,-3.632833103722008859e-07,-3.692387744766631746e-07,-3.751942385811254634e-07 +0.000000000000000000e+00,-7.748242027800928617e-09,-1.549648405560185723e-08,-2.324472608340278750e-08,-3.099296811120372108e-08,-3.874121013900465466e-08,-4.648945216680558824e-08,-5.423769419460652182e-08,-6.198593622240745540e-08,-6.973417825020838898e-08,-7.748242027800932256e-08,-8.523066230581025614e-08,-9.297890433361118972e-08,-1.007271463614121233e-07,-1.084753883892130569e-07,-1.162236304170139905e-07,-1.239718724448149373e-07,-1.317201144726158841e-07,-1.394683565004168309e-07,-1.472165985282177777e-07,-1.549648405560187245e-07,-1.627130825838196714e-07,-1.704613246116206182e-07,-1.782095666394215650e-07,-1.859578086672225118e-07,-1.937060506950234586e-07,-2.014542927228244054e-07,-2.092025347506253522e-07,-2.169507767784262991e-07,-2.246990188062272459e-07,-2.324472608340281927e-07,-2.401955028618291660e-07,-2.479437448896301393e-07,-2.556919869174311125e-07,-2.634402289452320858e-07,-2.711884709730330591e-07,-2.789367130008340324e-07,-2.866849550286350057e-07,-2.944331970564359790e-07,-3.021814390842369522e-07,-3.099296811120379255e-07,-3.176779231398388988e-07,-3.254261651676398721e-07,-3.331744071954408454e-07,-3.409226492232418187e-07,-3.486708912510427920e-07,-3.564191332788437652e-07,-3.641673753066447385e-07,-3.719156173344457118e-07,-3.796638593622466851e-07,-3.874121013900476584e-07,-3.951603434178486317e-07,-4.029085854456496049e-07,-4.106568274734505782e-07,-4.184050695012515515e-07,-4.261533115290525248e-07,-4.339015535568534981e-07,-4.416497955846544714e-07,-4.493980376124554447e-07,-4.571462796402564179e-07,-4.648945216680573912e-07,-4.726427636958583645e-07,-4.803910057236593907e-07,-4.881392477514604170e-07 +0.000000000000000000e+00,-7.431674515358256259e-09,-1.486334903071651252e-08,-2.229502354607476878e-08,-2.972669806143302503e-08,-3.715837257679128129e-08,-4.459004709214953755e-08,-5.202172160750779381e-08,-5.945339612286605007e-08,-6.688507063822431295e-08,-7.431674515358257582e-08,-8.174841966894083870e-08,-8.918009418429910157e-08,-9.661176869965736445e-08,-1.040434432150156273e-07,-1.114751177303738902e-07,-1.189067922457321531e-07,-1.263384667610904160e-07,-1.337701412764486788e-07,-1.412018157918069417e-07,-1.486334903071652046e-07,-1.560651648225234675e-07,-1.634968393378817303e-07,-1.709285138532399932e-07,-1.783601883685982561e-07,-1.857918628839565190e-07,-1.932235373993147818e-07,-2.006552119146730447e-07,-2.080868864300313076e-07,-2.155185609453895705e-07,-2.229502354607478333e-07,-2.303819099761060962e-07,-2.378135844914643591e-07,-2.452452590068225955e-07,-2.526769335221808319e-07,-2.601086080375390683e-07,-2.675402825528973047e-07,-2.749719570682555411e-07,-2.824036315836137775e-07,-2.898353060989720139e-07,-2.972669806143302503e-07,-3.046986551296884868e-07,-3.121303296450467232e-07,-3.195620041604049596e-07,-3.269936786757631960e-07,-3.344253531911214324e-07,-3.418570277064796688e-07,-3.492887022218379052e-07,-3.567203767371961416e-07,-3.641520512525543780e-07,-3.715837257679126144e-07,-3.790154002832708508e-07,-3.864470747986290872e-07,-3.938787493139873236e-07,-4.013104238293455600e-07,-4.087420983447037964e-07,-4.161737728600620328e-07,-4.236054473754202693e-07,-4.310371218907785057e-07,-4.384687964061367421e-07,-4.459004709214949785e-07,-4.533321454368532149e-07,-4.607638199522114513e-07,-4.681954944675696877e-07 +0.000000000000000000e+00,-6.209781339715867397e-09,-1.241956267943173479e-08,-1.862934401914760136e-08,-2.483912535886346628e-08,-3.104890669857933119e-08,-3.725868803829519611e-08,-4.346846937801106102e-08,-4.967825071772692594e-08,-5.588803205744279086e-08,-6.209781339715864915e-08,-6.830759473687450083e-08,-7.451737607659035251e-08,-8.072715741630620419e-08,-8.693693875602205588e-08,-9.314672009573790756e-08,-9.935650143545375924e-08,-1.055662827751696109e-07,-1.117760641148854626e-07,-1.179858454546013143e-07,-1.241956267943171660e-07,-1.304054081340330176e-07,-1.366151894737488693e-07,-1.428249708134647210e-07,-1.490347521531805727e-07,-1.552445334928964244e-07,-1.614543148326122760e-07,-1.676640961723281277e-07,-1.738738775120439794e-07,-1.800836588517598311e-07,-1.862934401914756828e-07,-1.925032215311915344e-07,-1.987130028709073861e-07,-2.049227842106232378e-07,-2.111325655503390895e-07,-2.173423468900549412e-07,-2.235521282297707928e-07,-2.297619095694866445e-07,-2.359716909092024962e-07,-2.421814722489183214e-07,-2.483912535886341731e-07,-2.546010349283500248e-07,-2.608108162680658765e-07,-2.670205976077817281e-07,-2.732303789474975798e-07,-2.794401602872134315e-07,-2.856499416269292832e-07,-2.918597229666451349e-07,-2.980695043063609865e-07,-3.042792856460768382e-07,-3.104890669857926899e-07,-3.166988483255085416e-07,-3.229086296652243933e-07,-3.291184110049402449e-07,-3.353281923446560966e-07,-3.415379736843719483e-07,-3.477477550240878000e-07,-3.539575363638036517e-07,-3.601673177035195033e-07,-3.663770990432353550e-07,-3.725868803829512067e-07,-3.787966617226670584e-07,-3.850064430623829101e-07,-3.912162244020987617e-07 +0.000000000000000000e+00,-7.748242027796298060e-09,-1.549648405559259612e-08,-2.324472608338889418e-08,-3.099296811118519224e-08,-3.874121013898149361e-08,-4.648945216677779498e-08,-5.423769419457409634e-08,-6.198593622237039771e-08,-6.973417825016669908e-08,-7.748242027796300045e-08,-8.523066230575930182e-08,-9.297890433355560319e-08,-1.007271463613519046e-07,-1.084753883891482059e-07,-1.162236304169445073e-07,-1.239718724447408219e-07,-1.317201144725371365e-07,-1.394683565003334511e-07,-1.472165985281297657e-07,-1.549648405559260803e-07,-1.627130825837223949e-07,-1.704613246115187095e-07,-1.782095666393150241e-07,-1.859578086671113387e-07,-1.937060506949076533e-07,-2.014542927227039679e-07,-2.092025347505002825e-07,-2.169507767782965971e-07,-2.246990188060929117e-07,-2.324472608338892263e-07,-2.401955028616855409e-07,-2.479437448894818555e-07,-2.556919869172781702e-07,-2.634402289450744848e-07,-2.711884709728707994e-07,-2.789367130006671140e-07,-2.866849550284634286e-07,-2.944331970562597432e-07,-3.021814390840560578e-07,-3.099296811118523724e-07,-3.176779231396486870e-07,-3.254261651674450016e-07,-3.331744071952413162e-07,-3.409226492230376308e-07,-3.486708912508339454e-07,-3.564191332786302600e-07,-3.641673753064265746e-07,-3.719156173342228892e-07,-3.796638593620192038e-07,-3.874121013898155184e-07,-3.951603434176118330e-07,-4.029085854454081476e-07,-4.106568274732044622e-07,-4.184050695010007768e-07,-4.261533115287970914e-07,-4.339015535565934060e-07,-4.416497955843897206e-07,-4.493980376121860352e-07,-4.571462796399823498e-07,-4.648945216677786644e-07,-4.726427636955749790e-07,-4.803910057233712936e-07,-4.881392477511676612e-07 +0.000000000000000000e+00,-7.431674515352982982e-09,-1.486334903070596596e-08,-2.229502354605894977e-08,-2.972669806141193524e-08,-3.715837257676492401e-08,-4.459004709211791278e-08,-5.202172160747090156e-08,-5.945339612282389033e-08,-6.688507063817687910e-08,-7.431674515352987449e-08,-8.174841966888286988e-08,-8.918009418423586527e-08,-9.661176869958886066e-08,-1.040434432149418561e-07,-1.114751177302948514e-07,-1.189067922456478468e-07,-1.263384667610008422e-07,-1.337701412763538376e-07,-1.412018157917068330e-07,-1.486334903070598284e-07,-1.560651648224128238e-07,-1.634968393377658192e-07,-1.709285138531188146e-07,-1.783601883684718100e-07,-1.857918628838248053e-07,-1.932235373991778007e-07,-2.006552119145307961e-07,-2.080868864298837915e-07,-2.155185609452367869e-07,-2.229502354605897823e-07,-2.303819099759427777e-07,-2.378135844912957731e-07,-2.452452590066487420e-07,-2.526769335220017374e-07,-2.601086080373547328e-07,-2.675402825527077282e-07,-2.749719570680607236e-07,-2.824036315834137189e-07,-2.898353060987667143e-07,-2.972669806141197097e-07,-3.046986551294727051e-07,-3.121303296448257005e-07,-3.195620041601786959e-07,-3.269936786755316913e-07,-3.344253531908846867e-07,-3.418570277062376821e-07,-3.492887022215906775e-07,-3.567203767369436728e-07,-3.641520512522966682e-07,-3.715837257676496636e-07,-3.790154002830026590e-07,-3.864470747983556544e-07,-3.938787493137086498e-07,-4.013104238290616452e-07,-4.087420983444146406e-07,-4.161737728597676360e-07,-4.236054473751206314e-07,-4.310371218904736267e-07,-4.384687964058266221e-07,-4.459004709211796175e-07,-4.533321454365326129e-07,-4.607638199518856083e-07,-4.681954944672386037e-07 +0.000000000000000000e+00,-6.209781339710731432e-09,-1.241956267942146286e-08,-1.862934401913219595e-08,-2.483912535884292904e-08,-3.104890669855366213e-08,-3.725868803826439190e-08,-4.346846937797512168e-08,-4.967825071768585146e-08,-5.588803205739658124e-08,-6.209781339710731102e-08,-6.830759473681804079e-08,-7.451737607652877057e-08,-8.072715741623950035e-08,-8.693693875595023013e-08,-9.314672009566095991e-08,-9.935650143537168968e-08,-1.055662827750824195e-07,-1.117760641147931492e-07,-1.179858454545038790e-07,-1.241956267942145956e-07,-1.304054081339253121e-07,-1.366151894736360286e-07,-1.428249708133467452e-07,-1.490347521530574617e-07,-1.552445334927681783e-07,-1.614543148324788948e-07,-1.676640961721896114e-07,-1.738738775119003279e-07,-1.800836588516110445e-07,-1.862934401913217610e-07,-1.925032215310324775e-07,-1.987130028707431941e-07,-2.049227842104539106e-07,-2.111325655501646272e-07,-2.173423468898753437e-07,-2.235521282295860603e-07,-2.297619095692967768e-07,-2.359716909090074933e-07,-2.421814722487182099e-07,-2.483912535884289264e-07,-2.546010349281396430e-07,-2.608108162678503595e-07,-2.670205976075610761e-07,-2.732303789472717926e-07,-2.794401602869825091e-07,-2.856499416266932257e-07,-2.918597229664039422e-07,-2.980695043061146588e-07,-3.042792856458253753e-07,-3.104890669855360919e-07,-3.166988483252468084e-07,-3.229086296649575249e-07,-3.291184110046682415e-07,-3.353281923443789580e-07,-3.415379736840896746e-07,-3.477477550238003911e-07,-3.539575363635111077e-07,-3.601673177032218242e-07,-3.663770990429325407e-07,-3.725868803826432573e-07,-3.787966617223539738e-07,-3.850064430620646904e-07,-3.912162244017754069e-07 +0.000000000000000000e+00,-8.550895251003238197e-09,-1.710179050200647639e-08,-2.565268575300971625e-08,-3.420358100401295941e-08,-4.275447625501620257e-08,-5.130537150601944573e-08,-5.985626675702268889e-08,-6.840716200802593205e-08,-7.695805725902917521e-08,-8.550895251003241837e-08,-9.405984776103566153e-08,-1.026107430120389047e-07,-1.111616382630421478e-07,-1.197125335140453778e-07,-1.282634287650486077e-07,-1.368143240160518376e-07,-1.453652192670550675e-07,-1.539161145180582975e-07,-1.624670097690615274e-07,-1.710179050200647573e-07,-1.795688002710679872e-07,-1.881196955220712172e-07,-1.966705907730744471e-07,-2.052214860240776770e-07,-2.137723812750809069e-07,-2.223232765260841369e-07,-2.308741717770873668e-07,-2.394250670280905967e-07,-2.479759622790938002e-07,-2.565268575300970036e-07,-2.650777527811002071e-07,-2.736286480321034105e-07,-2.821795432831066140e-07,-2.907304385341098175e-07,-2.992813337851130209e-07,-3.078322290361162244e-07,-3.163831242871194278e-07,-3.249340195381226313e-07,-3.334849147891258347e-07,-3.420358100401290382e-07,-3.505867052911322416e-07,-3.591376005421354451e-07,-3.676884957931386486e-07,-3.762393910441418520e-07,-3.847902862951450555e-07,-3.933411815461482589e-07,-4.018920767971514624e-07,-4.104429720481546658e-07,-4.189938672991578693e-07,-4.275447625501610727e-07,-4.360956578011642762e-07,-4.446465530521674797e-07,-4.531974483031706831e-07,-4.617483435541738866e-07,-4.702992388051770900e-07,-4.788501340561802405e-07,-4.874010293071833910e-07,-4.959519245581865416e-07,-5.045028198091896921e-07,-5.130537150601928426e-07,-5.216046103111959931e-07,-5.301555055621991436e-07,-5.387064008132022941e-07 +0.000000000000000000e+00,-8.137806457107380824e-09,-1.627561291421476165e-08,-2.441341937132214413e-08,-3.255122582842952991e-08,-4.068903228553691570e-08,-4.882683874264430149e-08,-5.696464519975168727e-08,-6.510245165685907306e-08,-7.324025811396645223e-08,-8.137806457107383140e-08,-8.951587102818121057e-08,-9.765367748528858974e-08,-1.057914839423959689e-07,-1.139292903995033481e-07,-1.220670968566107272e-07,-1.302049033137181197e-07,-1.383427097708255121e-07,-1.464805162279329045e-07,-1.546183226850402969e-07,-1.627561291421476893e-07,-1.708939355992550817e-07,-1.790317420563624741e-07,-1.871695485134698665e-07,-1.953073549705772589e-07,-2.034451614276846513e-07,-2.115829678847920437e-07,-2.197207743418994361e-07,-2.278585807990068285e-07,-2.359963872561142209e-07,-2.441341937132216133e-07,-2.522720001703289792e-07,-2.604098066274363452e-07,-2.685476130845437111e-07,-2.766854195416510770e-07,-2.848232259987584430e-07,-2.929610324558658089e-07,-3.010988389129731749e-07,-3.092366453700805408e-07,-3.173744518271879067e-07,-3.255122582842952727e-07,-3.336500647414026386e-07,-3.417878711985100045e-07,-3.499256776556173705e-07,-3.580634841127247364e-07,-3.662012905698321023e-07,-3.743390970269394683e-07,-3.824769034840468342e-07,-3.906147099411542001e-07,-3.987525163982615661e-07,-4.068903228553689320e-07,-4.150281293124762979e-07,-4.231659357695836639e-07,-4.313037422266910298e-07,-4.394415486837983957e-07,-4.475793551409057617e-07,-4.557171615980131276e-07,-4.638549680551204935e-07,-4.719927745122278595e-07,-4.801305809693352254e-07,-4.882683874264425913e-07,-4.964061938835499573e-07,-5.045440003406573232e-07,-5.126818067977646892e-07 +0.000000000000000000e+00,-6.949356181448564914e-09,-1.389871236289712983e-08,-2.084806854434569474e-08,-2.779742472579425966e-08,-3.474678090724282457e-08,-4.169613708869138949e-08,-4.864549327013995440e-08,-5.559484945158851931e-08,-6.254420563303708423e-08,-6.949356181448564914e-08,-7.644291799593421406e-08,-8.339227417738277897e-08,-9.034163035883134389e-08,-9.729098654027990880e-08,-1.042403427217284737e-07,-1.111896989031770386e-07,-1.181390550846256035e-07,-1.250884112660741685e-07,-1.320377674475227201e-07,-1.389871236289712718e-07,-1.459364798104198235e-07,-1.528858359918683752e-07,-1.598351921733169269e-07,-1.667845483547654785e-07,-1.737339045362140302e-07,-1.806832607176625819e-07,-1.876326168991111336e-07,-1.945819730805596853e-07,-2.015313292620082369e-07,-2.084806854434567886e-07,-2.154300416249053403e-07,-2.223793978063538920e-07,-2.293287539878024437e-07,-2.362781101692509953e-07,-2.432274663506995470e-07,-2.501768225321480722e-07,-2.571261787135965974e-07,-2.640755348950451226e-07,-2.710248910764936478e-07,-2.779742472579421731e-07,-2.849236034393906983e-07,-2.918729596208392235e-07,-2.988223158022877487e-07,-3.057716719837362739e-07,-3.127210281651847991e-07,-3.196703843466333243e-07,-3.266197405280818495e-07,-3.335690967095303747e-07,-3.405184528909788999e-07,-3.474678090724274252e-07,-3.544171652538759504e-07,-3.613665214353244756e-07,-3.683158776167730008e-07,-3.752652337982215260e-07,-3.822145899796700512e-07,-3.891639461611185764e-07,-3.961133023425671016e-07,-4.030626585240156268e-07,-4.100120147054641520e-07,-4.169613708869126773e-07,-4.239107270683612025e-07,-4.308600832498097277e-07,-4.378094394312582529e-07 +0.000000000000000000e+00,-8.550895250999851720e-09,-1.710179050199970344e-08,-2.565268575299955516e-08,-3.420358100399940688e-08,-4.275447625499926191e-08,-5.130537150599911693e-08,-5.985626675699897196e-08,-6.840716200799882699e-08,-7.695805725899868202e-08,-8.550895250999853705e-08,-9.405984776099839208e-08,-1.026107430119982471e-07,-1.111616382629981021e-07,-1.197125335139979439e-07,-1.282634287649977857e-07,-1.368143240159976275e-07,-1.453652192669974693e-07,-1.539161145179973111e-07,-1.624670097689971529e-07,-1.710179050199969947e-07,-1.795688002709968365e-07,-1.881196955219966783e-07,-1.966705907729965201e-07,-2.052214860239963619e-07,-2.137723812749962037e-07,-2.223232765259960454e-07,-2.308741717769958872e-07,-2.394250670279957290e-07,-2.479759622789955444e-07,-2.565268575299953597e-07,-2.650777527809951750e-07,-2.736286480319949903e-07,-2.821795432829948056e-07,-2.907304385339946210e-07,-2.992813337849944363e-07,-3.078322290359942516e-07,-3.163831242869940669e-07,-3.249340195379938823e-07,-3.334849147889936976e-07,-3.420358100399935129e-07,-3.505867052909933282e-07,-3.591376005419931436e-07,-3.676884957929929589e-07,-3.762393910439927742e-07,-3.847902862949925895e-07,-3.933411815459924049e-07,-4.018920767969922202e-07,-4.104429720479920355e-07,-4.189938672989918508e-07,-4.275447625499916662e-07,-4.360956578009914815e-07,-4.446465530519912968e-07,-4.531974483029911121e-07,-4.617483435539909274e-07,-4.702992388049907428e-07,-4.788501340559905052e-07,-4.874010293069902675e-07,-4.959519245579900299e-07,-5.045028198089897923e-07,-5.130537150599895547e-07,-5.216046103109893171e-07,-5.301555055619890795e-07,-5.387064008129888418e-07 +0.000000000000000000e+00,-8.137806457103416974e-09,-1.627561291420683395e-08,-2.441341937131025258e-08,-3.255122582841367451e-08,-4.068903228551709645e-08,-4.882683874262051839e-08,-5.696464519972394033e-08,-6.510245165682736226e-08,-7.324025811393078420e-08,-8.137806457103420614e-08,-8.951587102813762808e-08,-9.765367748524105001e-08,-1.057914839423444720e-07,-1.139292903994478939e-07,-1.220670968565513026e-07,-1.302049033136546981e-07,-1.383427097707580935e-07,-1.464805162278614890e-07,-1.546183226849648845e-07,-1.627561291420682799e-07,-1.708939355991716754e-07,-1.790317420562750709e-07,-1.871695485133784663e-07,-1.953073549704818618e-07,-2.034451614275852573e-07,-2.115829678846886527e-07,-2.197207743417920482e-07,-2.278585807988954437e-07,-2.359963872559988391e-07,-2.441341937131022346e-07,-2.522720001702056301e-07,-2.604098066273090255e-07,-2.685476130844124210e-07,-2.766854195415158165e-07,-2.848232259986192119e-07,-2.929610324557226074e-07,-3.010988389128260029e-07,-3.092366453699293983e-07,-3.173744518270327938e-07,-3.255122582841361893e-07,-3.336500647412395847e-07,-3.417878711983429802e-07,-3.499256776554463757e-07,-3.580634841125497712e-07,-3.662012905696531666e-07,-3.743390970267565621e-07,-3.824769034838599576e-07,-3.906147099409633530e-07,-3.987525163980667485e-07,-4.068903228551701440e-07,-4.150281293122735394e-07,-4.231659357693769349e-07,-4.313037422264803304e-07,-4.394415486835837258e-07,-4.475793551406871213e-07,-4.557171615977905168e-07,-4.638549680548939122e-07,-4.719927745119973077e-07,-4.801305809691007032e-07,-4.882683874262041516e-07,-4.964061938833076000e-07,-5.045440003404110484e-07,-5.126818067975144968e-07 +0.000000000000000000e+00,-6.949356181444752439e-09,-1.389871236288950488e-08,-2.084806854433425649e-08,-2.779742472577900645e-08,-3.474678090722375310e-08,-4.169613708866849974e-08,-4.864549327011324639e-08,-5.559484945155799304e-08,-6.254420563300273969e-08,-6.949356181444747972e-08,-7.644291799589221975e-08,-8.339227417733695978e-08,-9.034163035878169981e-08,-9.729098654022643985e-08,-1.042403427216711799e-07,-1.111896989031159199e-07,-1.181390550845606599e-07,-1.250884112660054000e-07,-1.320377674474501400e-07,-1.389871236288948800e-07,-1.459364798103396201e-07,-1.528858359917843601e-07,-1.598351921732291001e-07,-1.667845483546738402e-07,-1.737339045361185802e-07,-1.806832607175633202e-07,-1.876326168990080603e-07,-1.945819730804528003e-07,-2.015313292618975403e-07,-2.084806854433422803e-07,-2.154300416247870204e-07,-2.223793978062317604e-07,-2.293287539876765004e-07,-2.362781101691212405e-07,-2.432274663505659805e-07,-2.501768225320107470e-07,-2.571261787134555135e-07,-2.640755348949002800e-07,-2.710248910763450465e-07,-2.779742472577898130e-07,-2.849236034392345795e-07,-2.918729596206793460e-07,-2.988223158021241125e-07,-3.057716719835688790e-07,-3.127210281650136455e-07,-3.196703843464584120e-07,-3.266197405279031785e-07,-3.335690967093479450e-07,-3.405184528907927115e-07,-3.474678090722374780e-07,-3.544171652536822445e-07,-3.613665214351270110e-07,-3.683158776165717775e-07,-3.752652337980165440e-07,-3.822145899794613105e-07,-3.891639461609060770e-07,-3.961133023423508435e-07,-4.030626585237956100e-07,-4.100120147052403765e-07,-4.169613708866851430e-07,-4.239107270681299095e-07,-4.308600832495746760e-07,-4.378094394310194425e-07 +0.000000000000000000e+00,-9.277426047625871149e-09,-1.855485209525174230e-08,-2.783227814287761345e-08,-3.710970419050348460e-08,-4.638713023812935575e-08,-5.566455628575522690e-08,-6.494198233338109143e-08,-7.421940838100695596e-08,-8.349683442863282049e-08,-9.277426047625868502e-08,-1.020516865238845496e-07,-1.113291125715104141e-07,-1.206065386191362786e-07,-1.298839646667621299e-07,-1.391613907143879812e-07,-1.484388167620138325e-07,-1.577162428096396838e-07,-1.669936688572655351e-07,-1.762710949048913864e-07,-1.855485209525172377e-07,-1.948259470001430890e-07,-2.041033730477689403e-07,-2.133807990953947916e-07,-2.226582251430206429e-07,-2.319356511906464942e-07,-2.412130772382723455e-07,-2.504905032858982233e-07,-2.597679293335241010e-07,-2.690453553811499788e-07,-2.783227814287758566e-07,-2.876002074764017343e-07,-2.968776335240276121e-07,-3.061550595716534899e-07,-3.154324856192793676e-07,-3.247099116669052454e-07,-3.339873377145311232e-07,-3.432647637621570009e-07,-3.525421898097828787e-07,-3.618196158574087565e-07,-3.710970419050346342e-07,-3.803744679526605120e-07,-3.896518940002863898e-07,-3.989293200479122675e-07,-4.082067460955381453e-07,-4.174841721431640231e-07,-4.267615981907899008e-07,-4.360390242384157786e-07,-4.453164502860416564e-07,-4.545938763336675341e-07,-4.638713023812934119e-07,-4.731487284289192897e-07,-4.824261544765452204e-07,-4.917035805241711511e-07,-5.009810065717970818e-07,-5.102584326194230125e-07,-5.195358586670489432e-07,-5.288132847146748739e-07,-5.380907107623008046e-07,-5.473681368099267353e-07,-5.566455628575526660e-07,-5.659229889051785967e-07,-5.752004149528045274e-07,-5.844778410004304581e-07 +0.000000000000000000e+00,-8.933557884436938054e-09,-1.786711576887387611e-08,-2.680067365331081582e-08,-3.573423153774775883e-08,-4.466778942218470185e-08,-5.360134730662164487e-08,-6.253490519105858788e-08,-7.146846307549553090e-08,-8.040202095993247392e-08,-8.933557884436941693e-08,-9.826913672880635995e-08,-1.072026946132433030e-07,-1.161362524976802460e-07,-1.250698103821172022e-07,-1.340033682665541717e-07,-1.429369261509911412e-07,-1.518704840354281107e-07,-1.608040419198650802e-07,-1.697375998043020497e-07,-1.786711576887390192e-07,-1.876047155731759886e-07,-1.965382734576129581e-07,-2.054718313420499276e-07,-2.144053892264868971e-07,-2.233389471109238666e-07,-2.322725049953608361e-07,-2.412060628797978056e-07,-2.501396207642347750e-07,-2.590731786486717445e-07,-2.680067365331087140e-07,-2.769402944175456835e-07,-2.858738523019826530e-07,-2.948074101864196225e-07,-3.037409680708565920e-07,-3.126745259552935614e-07,-3.216080838397305309e-07,-3.305416417241675004e-07,-3.394751996086044699e-07,-3.484087574930414394e-07,-3.573423153774784089e-07,-3.662758732619153784e-07,-3.752094311463523479e-07,-3.841429890307893173e-07,-3.930765469152262868e-07,-4.020101047996632563e-07,-4.109436626841002258e-07,-4.198772205685371953e-07,-4.288107784529741648e-07,-4.377443363374111343e-07,-4.466778942218481037e-07,-4.556114521062850732e-07,-4.645450099907220427e-07,-4.734785678751590122e-07,-4.824121257595959288e-07,-4.913456836440328982e-07,-5.002792415284698677e-07,-5.092127994129068372e-07,-5.181463572973438067e-07,-5.270799151817807762e-07,-5.360134730662177457e-07,-5.449470309506547152e-07,-5.538805888350916846e-07,-5.628141467195286541e-07 +0.000000000000000000e+00,-7.628752145157315368e-09,-1.525750429031463074e-08,-2.288625643547194610e-08,-3.051500858062926147e-08,-3.814376072578657684e-08,-4.577251287094389221e-08,-5.340126501610120758e-08,-6.103001716125852294e-08,-6.865876930641583831e-08,-7.628752145157315368e-08,-8.391627359673046905e-08,-9.154502574188778441e-08,-9.917377788704509978e-08,-1.068025300322024152e-07,-1.144312821773597305e-07,-1.220600343225170459e-07,-1.296887864676743480e-07,-1.373175386128316502e-07,-1.449462907579889523e-07,-1.525750429031462544e-07,-1.602037950483035566e-07,-1.678325471934608587e-07,-1.754612993386181608e-07,-1.830900514837754630e-07,-1.907188036289327651e-07,-1.983475557740900672e-07,-2.059763079192473693e-07,-2.136050600644046715e-07,-2.212338122095619736e-07,-2.288625643547192757e-07,-2.364913164998765779e-07,-2.441200686450338800e-07,-2.517488207901911821e-07,-2.593775729353484843e-07,-2.670063250805057864e-07,-2.746350772256630885e-07,-2.822638293708203907e-07,-2.898925815159776928e-07,-2.975213336611349949e-07,-3.051500858062922971e-07,-3.127788379514495992e-07,-3.204075900966069013e-07,-3.280363422417642035e-07,-3.356650943869215056e-07,-3.432938465320788077e-07,-3.509225986772361099e-07,-3.585513508223934120e-07,-3.661801029675507141e-07,-3.738088551127080163e-07,-3.814376072578653184e-07,-3.890663594030226205e-07,-3.966951115481799227e-07,-4.043238636933372248e-07,-4.119526158384945269e-07,-4.195813679836518291e-07,-4.272101201288091312e-07,-4.348388722739664333e-07,-4.424676244191237355e-07,-4.500963765642810376e-07,-4.577251287094383397e-07,-4.653538808545956419e-07,-4.729826329997529440e-07,-4.806113851449101932e-07 +0.000000000000000000e+00,-9.277426047622961128e-09,-1.855485209524592226e-08,-2.783227814286888504e-08,-3.710970419049185113e-08,-4.638713023811481722e-08,-5.566455628573778331e-08,-6.494198233336074940e-08,-7.421940838098371549e-08,-8.349683442860668159e-08,-9.277426047622964768e-08,-1.020516865238526138e-07,-1.113291125714755799e-07,-1.206065386190985592e-07,-1.298839646667215253e-07,-1.391613907143444914e-07,-1.484388167619674575e-07,-1.577162428095904235e-07,-1.669936688572133896e-07,-1.762710949048363557e-07,-1.855485209524593218e-07,-1.948259470000822879e-07,-2.041033730477052540e-07,-2.133807990953282201e-07,-2.226582251429511862e-07,-2.319356511905741523e-07,-2.412130772381971184e-07,-2.504905032858200845e-07,-2.597679293334430506e-07,-2.690453553810660166e-07,-2.783227814286889827e-07,-2.876002074763119488e-07,-2.968776335239349149e-07,-3.061550595715578810e-07,-3.154324856191808471e-07,-3.247099116668038132e-07,-3.339873377144267793e-07,-3.432647637620497454e-07,-3.525421898096727115e-07,-3.618196158572956776e-07,-3.710970419049186436e-07,-3.803744679525416097e-07,-3.896518940001645758e-07,-3.989293200477875419e-07,-4.082067460954105080e-07,-4.174841721430334741e-07,-4.267615981906564402e-07,-4.360390242382794063e-07,-4.453164502859023724e-07,-4.545938763335253385e-07,-4.638713023811483046e-07,-4.731487284287712706e-07,-4.824261544763942367e-07,-4.917035805240172028e-07,-5.009810065716401689e-07,-5.102584326192631350e-07,-5.195358586668861011e-07,-5.288132847145090672e-07,-5.380907107621320333e-07,-5.473681368097549994e-07,-5.566455628573779655e-07,-5.659229889050009316e-07,-5.752004149526238977e-07,-5.844778410002468637e-07 +0.000000000000000000e+00,-8.933557884433809657e-09,-1.786711576886761931e-08,-2.680067365330142897e-08,-3.573423153773523863e-08,-4.466778942216904497e-08,-5.360134730660285132e-08,-6.253490519103665767e-08,-7.146846307547046402e-08,-8.040202095990427037e-08,-8.933557884433807671e-08,-9.826913672877188306e-08,-1.072026946132056894e-07,-1.161362524976394958e-07,-1.250698103820733153e-07,-1.340033682665071349e-07,-1.429369261509409545e-07,-1.518704840353747741e-07,-1.608040419198085937e-07,-1.697375998042424133e-07,-1.786711576886762328e-07,-1.876047155731100524e-07,-1.965382734575438720e-07,-2.054718313419776916e-07,-2.144053892264115112e-07,-2.233389471108453307e-07,-2.322725049952791503e-07,-2.412060628797129434e-07,-2.501396207641467366e-07,-2.590731786485805297e-07,-2.680067365330143228e-07,-2.769402944174481159e-07,-2.858738523018819090e-07,-2.948074101863157021e-07,-3.037409680707494952e-07,-3.126745259551832883e-07,-3.216080838396170815e-07,-3.305416417240508746e-07,-3.394751996084846677e-07,-3.484087574929184608e-07,-3.573423153773522539e-07,-3.662758732617860470e-07,-3.752094311462198401e-07,-3.841429890306536333e-07,-3.930765469150874264e-07,-4.020101047995212195e-07,-4.109436626839550126e-07,-4.198772205683888057e-07,-4.288107784528225988e-07,-4.377443363372563919e-07,-4.466778942216901850e-07,-4.556114521061239782e-07,-4.645450099905577713e-07,-4.734785678749915644e-07,-4.824121257594253575e-07,-4.913456836438591506e-07,-5.002792415282929437e-07,-5.092127994127267368e-07,-5.181463572971605299e-07,-5.270799151815943231e-07,-5.360134730660281162e-07,-5.449470309504619093e-07,-5.538805888348957024e-07,-5.628141467193294955e-07 +0.000000000000000000e+00,-7.628752145154264726e-09,-1.525750429030852945e-08,-2.288625643546279418e-08,-3.051500858061705890e-08,-3.814376072577132363e-08,-4.577251287092558835e-08,-5.340126501607985308e-08,-6.103001716123411781e-08,-6.865876930638837591e-08,-7.628752145154263402e-08,-8.391627359669689213e-08,-9.154502574185115024e-08,-9.917377788700540835e-08,-1.068025300321596665e-07,-1.144312821773139246e-07,-1.220600343224681827e-07,-1.296887864676224408e-07,-1.373175386127766989e-07,-1.449462907579309570e-07,-1.525750429030852151e-07,-1.602037950482394732e-07,-1.678325471933937313e-07,-1.754612993385479894e-07,-1.830900514837022475e-07,-1.907188036288565056e-07,-1.983475557740107638e-07,-2.059763079191650219e-07,-2.136050600643192800e-07,-2.212338122094735381e-07,-2.288625643546277962e-07,-2.364913164997820543e-07,-2.441200686449363124e-07,-2.517488207900905440e-07,-2.593775729352447757e-07,-2.670063250803990073e-07,-2.746350772255532390e-07,-2.822638293707074706e-07,-2.898925815158617022e-07,-2.975213336610159339e-07,-3.051500858061701655e-07,-3.127788379513243972e-07,-3.204075900964786288e-07,-3.280363422416328604e-07,-3.356650943867870921e-07,-3.432938465319413237e-07,-3.509225986770955553e-07,-3.585513508222497870e-07,-3.661801029674040186e-07,-3.738088551125582503e-07,-3.814376072577124819e-07,-3.890663594028667135e-07,-3.966951115480209452e-07,-4.043238636931751768e-07,-4.119526158383294085e-07,-4.195813679834836401e-07,-4.272101201286378717e-07,-4.348388722737921034e-07,-4.424676244189463350e-07,-4.500963765641005666e-07,-4.577251287092547983e-07,-4.653538808544090299e-07,-4.729826329995632616e-07,-4.806113851447174932e-07 +0.000000000000000000e+00,-9.832332546061292750e-09,-1.966466509212258550e-08,-2.949699763818387660e-08,-3.932933018424516438e-08,-4.916166273030645217e-08,-5.899399527636773996e-08,-6.882632782242902774e-08,-7.865866036849031553e-08,-8.849099291455160332e-08,-9.832332546061289110e-08,-1.081556580066741789e-07,-1.179879905527354667e-07,-1.278203230987967545e-07,-1.376526556448580555e-07,-1.474849881909193565e-07,-1.573173207369806575e-07,-1.671496532830419585e-07,-1.769819858291032596e-07,-1.868143183751645606e-07,-1.966466509212258616e-07,-2.064789834672871626e-07,-2.163113160133484637e-07,-2.261436485594097647e-07,-2.359759811054710657e-07,-2.458083136515323667e-07,-2.556406461975936677e-07,-2.654729787436549688e-07,-2.753053112897162698e-07,-2.851376438357775708e-07,-2.949699763818388718e-07,-3.048023089279001729e-07,-3.146346414739614739e-07,-3.244669740200227749e-07,-3.342993065660840759e-07,-3.441316391121453769e-07,-3.539639716582066780e-07,-3.637963042042679790e-07,-3.736286367503292800e-07,-3.834609692963905810e-07,-3.932933018424518820e-07,-4.031256343885131831e-07,-4.129579669345744841e-07,-4.227902994806357851e-07,-4.326226320266970861e-07,-4.424549645727583872e-07,-4.522872971188196882e-07,-4.621196296648809892e-07,-4.719519622109422902e-07,-4.817842947570035912e-07,-4.916166273030649452e-07,-5.014489598491262992e-07,-5.112812923951876531e-07,-5.211136249412490071e-07,-5.309459574873103610e-07,-5.407782900333717150e-07,-5.506106225794330690e-07,-5.604429551254944229e-07,-5.702752876715557769e-07,-5.801076202176171309e-07,-5.899399527636784848e-07,-5.997722853097398388e-07,-6.096046178558011927e-07,-6.194369504018625467e-07 +0.000000000000000000e+00,-9.575141054979434562e-09,-1.915028210995886912e-08,-2.872542316493830534e-08,-3.830056421991774486e-08,-4.787570527489718439e-08,-5.745084632987662391e-08,-6.702598738485606344e-08,-7.660112843983550296e-08,-8.617626949481494249e-08,-9.575141054979438201e-08,-1.053265516047738215e-07,-1.149016926597532611e-07,-1.244768337147327138e-07,-1.340519747697121533e-07,-1.436271158246915929e-07,-1.532022568796710324e-07,-1.627773979346504719e-07,-1.723525389896299114e-07,-1.819276800446093510e-07,-1.915028210995887905e-07,-2.010779621545682300e-07,-2.106531032095476695e-07,-2.202282442645271091e-07,-2.298033853195065486e-07,-2.393785263744859881e-07,-2.489536674294654276e-07,-2.585288084844448672e-07,-2.681039495394243067e-07,-2.776790905944037462e-07,-2.872542316493831857e-07,-2.968293727043626253e-07,-3.064045137593420648e-07,-3.159796548143215043e-07,-3.255547958693009438e-07,-3.351299369242803834e-07,-3.447050779792598229e-07,-3.542802190342392624e-07,-3.638553600892187019e-07,-3.734305011441981415e-07,-3.830056421991775810e-07,-3.925807832541570205e-07,-4.021559243091364600e-07,-4.117310653641158996e-07,-4.213062064190953391e-07,-4.308813474740747786e-07,-4.404564885290542181e-07,-4.500316295840336577e-07,-4.596067706390130972e-07,-4.691819116939925367e-07,-4.787570527489719762e-07,-4.883321938039514158e-07,-4.979073348589308553e-07,-5.074824759139102948e-07,-5.170576169688897343e-07,-5.266327580238691739e-07,-5.362078990788486134e-07,-5.457830401338280529e-07,-5.553581811888074924e-07,-5.649333222437869320e-07,-5.745084632987663715e-07,-5.840836043537458110e-07,-5.936587454087252505e-07,-6.032338864637046901e-07 +0.000000000000000000e+00,-8.131784723376943500e-09,-1.626356944675388700e-08,-2.439535417013083050e-08,-3.252713889350777400e-08,-4.065892361688471750e-08,-4.879070834026166100e-08,-5.692249306363860450e-08,-6.505427778701554800e-08,-7.318606251039249150e-08,-8.131784723376943500e-08,-8.944963195714637850e-08,-9.758141668052332200e-08,-1.057132014039002655e-07,-1.138449861272772090e-07,-1.219767708506541393e-07,-1.301085555740310695e-07,-1.382403402974079998e-07,-1.463721250207849301e-07,-1.545039097441618603e-07,-1.626356944675387906e-07,-1.707674791909157209e-07,-1.788992639142926511e-07,-1.870310486376695814e-07,-1.951628333610465117e-07,-2.032946180844234419e-07,-2.114264028078003722e-07,-2.195581875311773024e-07,-2.276899722545542327e-07,-2.358217569779311630e-07,-2.439535417013080668e-07,-2.520853264246849706e-07,-2.602171111480618744e-07,-2.683488958714387782e-07,-2.764806805948156820e-07,-2.846124653181925858e-07,-2.927442500415694895e-07,-3.008760347649463933e-07,-3.090078194883232971e-07,-3.171396042117002009e-07,-3.252713889350771047e-07,-3.334031736584540085e-07,-3.415349583818309123e-07,-3.496667431052078161e-07,-3.577985278285847199e-07,-3.659303125519616237e-07,-3.740620972753385275e-07,-3.821938819987154313e-07,-3.903256667220923351e-07,-3.984574514454692389e-07,-4.065892361688461427e-07,-4.147210208922230465e-07,-4.228528056155999503e-07,-4.309845903389768541e-07,-4.391163750623537579e-07,-4.472481597857306617e-07,-4.553799445091075655e-07,-4.635117292324844693e-07,-4.716435139558613730e-07,-4.797752986792382768e-07,-4.879070834026151806e-07,-4.960388681259920844e-07,-5.041706528493689882e-07,-5.123024375727458920e-07 +0.000000000000000000e+00,-9.832332546059095758e-09,-1.966466509211819152e-08,-2.949699763817728562e-08,-3.932933018423637642e-08,-4.916166273029546721e-08,-5.899399527635455801e-08,-6.882632782241364880e-08,-7.865866036847273960e-08,-8.849099291453183039e-08,-9.832332546059092119e-08,-1.081556580066500120e-07,-1.179879905527091028e-07,-1.278203230987681936e-07,-1.376526556448272976e-07,-1.474849881908864016e-07,-1.573173207369455057e-07,-1.671496532830046097e-07,-1.769819858290637137e-07,-1.868143183751228177e-07,-1.966466509211819218e-07,-2.064789834672410258e-07,-2.163113160133001298e-07,-2.261436485593592339e-07,-2.359759811054183379e-07,-2.458083136514774155e-07,-2.556406461975364930e-07,-2.654729787435955706e-07,-2.753053112896546481e-07,-2.851376438357137257e-07,-2.949699763817728033e-07,-3.048023089278318808e-07,-3.146346414738909584e-07,-3.244669740199500359e-07,-3.342993065660091135e-07,-3.441316391120681911e-07,-3.539639716581272686e-07,-3.637963042041863462e-07,-3.736286367502454237e-07,-3.834609692963045013e-07,-3.932933018423635789e-07,-4.031256343884226564e-07,-4.129579669344817340e-07,-4.227902994805408115e-07,-4.326226320265998891e-07,-4.424549645726589667e-07,-4.522872971187180442e-07,-4.621196296647771218e-07,-4.719519622108361993e-07,-4.817842947568952769e-07,-4.916166273029544074e-07,-5.014489598490135379e-07,-5.112812923950726684e-07,-5.211136249411317989e-07,-5.309459574871909294e-07,-5.407782900332500599e-07,-5.506106225793091904e-07,-5.604429551253683209e-07,-5.702752876714274514e-07,-5.801076202174865819e-07,-5.899399527635457124e-07,-5.997722853096048429e-07,-6.096046178556639734e-07,-6.194369504017231039e-07 +0.000000000000000000e+00,-9.575141054976868647e-09,-1.915028210995373729e-08,-2.872542316493060594e-08,-3.830056421990747459e-08,-4.787570527488434655e-08,-5.745084632986121850e-08,-6.702598738483809046e-08,-7.660112843981496241e-08,-8.617626949479183437e-08,-9.575141054976870633e-08,-1.053265516047455783e-07,-1.149016926597224502e-07,-1.244768337146993090e-07,-1.340519747696761544e-07,-1.436271158246529999e-07,-1.532022568796298454e-07,-1.627773979346066909e-07,-1.723525389895835364e-07,-1.819276800445603819e-07,-1.915028210995372274e-07,-2.010779621545140729e-07,-2.106531032094909183e-07,-2.202282442644677638e-07,-2.298033853194446093e-07,-2.393785263744214548e-07,-2.489536674293983003e-07,-2.585288084843751458e-07,-2.681039495393519913e-07,-2.776790905943288367e-07,-2.872542316493056822e-07,-2.968293727042825277e-07,-3.064045137592593732e-07,-3.159796548142362187e-07,-3.255547958692130642e-07,-3.351299369241899097e-07,-3.447050779791667551e-07,-3.542802190341436006e-07,-3.638553600891204461e-07,-3.734305011440972916e-07,-3.830056421990741371e-07,-3.925807832540509826e-07,-4.021559243090278281e-07,-4.117310653640046736e-07,-4.213062064189815190e-07,-4.308813474739583645e-07,-4.404564885289352100e-07,-4.500316295839120555e-07,-4.596067706388889010e-07,-4.691819116938657465e-07,-4.787570527488425920e-07,-4.883321938038194904e-07,-4.979073348587963888e-07,-5.074824759137732872e-07,-5.170576169687501857e-07,-5.266327580237270841e-07,-5.362078990787039825e-07,-5.457830401336808809e-07,-5.553581811886577794e-07,-5.649333222436346778e-07,-5.745084632986115762e-07,-5.840836043535884746e-07,-5.936587454085653731e-07,-6.032338864635422715e-07 +0.000000000000000000e+00,-8.131784723374486774e-09,-1.626356944674897355e-08,-2.439535417012345867e-08,-3.252713889349794048e-08,-4.065892361687242229e-08,-4.879070834024690410e-08,-5.692249306362138591e-08,-6.505427778699586772e-08,-7.318606251037034953e-08,-8.131784723374483134e-08,-8.944963195711931315e-08,-9.758141668049379496e-08,-1.057132014038682768e-07,-1.138449861272427586e-07,-1.219767708506172404e-07,-1.301085555739917090e-07,-1.382403402973661775e-07,-1.463721250207406461e-07,-1.545039097441151147e-07,-1.626356944674895833e-07,-1.707674791908640518e-07,-1.788992639142385204e-07,-1.870310486376129890e-07,-1.951628333609874576e-07,-2.032946180843619262e-07,-2.114264028077363947e-07,-2.195581875311108633e-07,-2.276899722544853319e-07,-2.358217569778598005e-07,-2.439535417012342690e-07,-2.520853264246087376e-07,-2.602171111479832062e-07,-2.683488958713576748e-07,-2.764806805947321433e-07,-2.846124653181066119e-07,-2.927442500414810805e-07,-3.008760347648555491e-07,-3.090078194882300176e-07,-3.171396042116044862e-07,-3.252713889349789548e-07,-3.334031736583534234e-07,-3.415349583817278919e-07,-3.496667431051023605e-07,-3.577985278284768291e-07,-3.659303125518512977e-07,-3.740620972752257662e-07,-3.821938819986002348e-07,-3.903256667219747034e-07,-3.984574514453491720e-07,-4.065892361687236405e-07,-4.147210208920981091e-07,-4.228528056154725777e-07,-4.309845903388470463e-07,-4.391163750622215148e-07,-4.472481597855959834e-07,-4.553799445089704520e-07,-4.635117292323449206e-07,-4.716435139557193891e-07,-4.797752986790938577e-07,-4.879070834024683263e-07,-4.960388681258427949e-07,-5.041706528492172635e-07,-5.123024375725917320e-07 +0.000000000000000000e+00,-1.025723839087100847e-08,-2.051447678174201693e-08,-3.077171517261302374e-08,-4.102895356348402725e-08,-5.128619195435503075e-08,-6.154343034522603425e-08,-7.180066873609703775e-08,-8.205790712696804126e-08,-9.231514551783904476e-08,-1.025723839087100483e-07,-1.128296222995810518e-07,-1.230868606904520420e-07,-1.333440990813230455e-07,-1.436013374721940490e-07,-1.538585758630650525e-07,-1.641158142539360560e-07,-1.743730526448070595e-07,-1.846302910356780631e-07,-1.948875294265490666e-07,-2.051447678174200701e-07,-2.154020062082910736e-07,-2.256592445991620771e-07,-2.359164829900330806e-07,-2.461737213809040841e-07,-2.564309597717750876e-07,-2.666881981626460911e-07,-2.769454365535170946e-07,-2.872026749443880981e-07,-2.974599133352591016e-07,-3.077171517261301051e-07,-3.179743901170011086e-07,-3.282316285078721121e-07,-3.384888668987431156e-07,-3.487461052896141191e-07,-3.590033436804851226e-07,-3.692605820713561261e-07,-3.795178204622271296e-07,-3.897750588530981331e-07,-4.000322972439691366e-07,-4.102895356348401401e-07,-4.205467740257111436e-07,-4.308040124165821471e-07,-4.410612508074531506e-07,-4.513184891983241541e-07,-4.615757275891951576e-07,-4.718329659800661611e-07,-4.820902043709371646e-07,-4.923474427618081681e-07,-5.026046811526791716e-07,-5.128619195435501751e-07,-5.231191579344211786e-07,-5.333763963252921821e-07,-5.436336347161631857e-07,-5.538908731070341892e-07,-5.641481114979051927e-07,-5.744053498887761962e-07,-5.846625882796471997e-07,-5.949198266705182032e-07,-6.051770650613892067e-07,-6.154343034522602102e-07,-6.256915418431312137e-07,-6.359487802340022172e-07,-6.462060186248732207e-07 +0.000000000000000000e+00,-1.005561850490077216e-08,-2.011123700980154432e-08,-3.016685551470231483e-08,-4.022247401960308202e-08,-5.027809252450384922e-08,-6.033371102940461642e-08,-7.038932953430537700e-08,-8.044494803920613757e-08,-9.050056654410689815e-08,-1.005561850490076587e-07,-1.106118035539084193e-07,-1.206674220588091799e-07,-1.307230405637099405e-07,-1.407786590686107011e-07,-1.508342775735114616e-07,-1.608898960784122222e-07,-1.709455145833129828e-07,-1.810011330882137434e-07,-1.910567515931145039e-07,-2.011123700980152645e-07,-2.111679886029160251e-07,-2.212236071078167857e-07,-2.312792256127175463e-07,-2.413348441176183068e-07,-2.513904626225190939e-07,-2.614460811274198809e-07,-2.715016996323206680e-07,-2.815573181372214550e-07,-2.916129366421222421e-07,-3.016685551470230291e-07,-3.117241736519238162e-07,-3.217797921568246032e-07,-3.318354106617253903e-07,-3.418910291666261773e-07,-3.519466476715269644e-07,-3.620022661764277514e-07,-3.720578846813285385e-07,-3.821135031862293255e-07,-3.921691216911301126e-07,-4.022247401960308996e-07,-4.122803587009316867e-07,-4.223359772058324737e-07,-4.323915957107332608e-07,-4.424472142156340478e-07,-4.525028327205348349e-07,-4.625584512254356219e-07,-4.726140697303364090e-07,-4.826696882352371431e-07,-4.927253067401378772e-07,-5.027809252450386113e-07,-5.128365437499393454e-07,-5.228921622548400795e-07,-5.329477807597408136e-07,-5.430033992646415477e-07,-5.530590177695422819e-07,-5.631146362744430160e-07,-5.731702547793437501e-07,-5.832258732842444842e-07,-5.932814917891452183e-07,-6.033371102940459524e-07,-6.133927287989466865e-07,-6.234483473038474206e-07,-6.335039658087481547e-07 +0.000000000000000000e+00,-8.466938569682302843e-09,-1.693387713936460569e-08,-2.540081570904690688e-08,-3.386775427872920476e-08,-4.233469284841150264e-08,-5.080163141809380052e-08,-5.926856998777609840e-08,-6.773550855745839628e-08,-7.620244712714069416e-08,-8.466938569682299204e-08,-9.313632426650528992e-08,-1.016032628361875878e-07,-1.100702014058698857e-07,-1.185371399755521836e-07,-1.270040785452344814e-07,-1.354710171149167661e-07,-1.439379556845990507e-07,-1.524048942542813354e-07,-1.608718328239636200e-07,-1.693387713936459047e-07,-1.778057099633281893e-07,-1.862726485330104740e-07,-1.947395871026927586e-07,-2.032065256723750432e-07,-2.116734642420573279e-07,-2.201404028117396125e-07,-2.286073413814218972e-07,-2.370742799511041818e-07,-2.455412185207864929e-07,-2.540081570904688041e-07,-2.624750956601511152e-07,-2.709420342298334263e-07,-2.794089727995157374e-07,-2.878759113691980485e-07,-2.963428499388803596e-07,-3.048097885085626707e-07,-3.132767270782449819e-07,-3.217436656479272930e-07,-3.302106042176096041e-07,-3.386775427872919152e-07,-3.471444813569742263e-07,-3.556114199266565374e-07,-3.640783584963388486e-07,-3.725452970660211597e-07,-3.810122356357034708e-07,-3.894791742053857819e-07,-3.979461127750680930e-07,-4.064130513447504041e-07,-4.148799899144327152e-07,-4.233469284841150264e-07,-4.318138670537973375e-07,-4.402808056234796486e-07,-4.487477441931619597e-07,-4.572146827628442708e-07,-4.656816213325265819e-07,-4.741485599022088930e-07,-4.826154984718912042e-07,-4.910824370415735153e-07,-4.995493756112558264e-07,-5.080163141809381375e-07,-5.164832527506204486e-07,-5.249501913203027597e-07,-5.334171298899850709e-07 +0.000000000000000000e+00,-1.025723839086920025e-08,-2.051447678173840050e-08,-3.077171517260759744e-08,-4.102895356347679438e-08,-5.128619195434599132e-08,-6.154343034521519488e-08,-7.180066873608439844e-08,-8.205790712695360199e-08,-9.231514551782280555e-08,-1.025723839086920091e-07,-1.128296222995612127e-07,-1.230868606904304162e-07,-1.333440990812996198e-07,-1.436013374721688233e-07,-1.538585758630380269e-07,-1.641158142539072305e-07,-1.743730526447764340e-07,-1.846302910356456376e-07,-1.948875294265148411e-07,-2.051447678173840447e-07,-2.154020062082532482e-07,-2.256592445991224518e-07,-2.359164829899916554e-07,-2.461737213808608854e-07,-2.564309597717300889e-07,-2.666881981625992925e-07,-2.769454365534684961e-07,-2.872026749443376996e-07,-2.974599133352069032e-07,-3.077171517260761067e-07,-3.179743901169453103e-07,-3.282316285078145139e-07,-3.384888668986837174e-07,-3.487461052895529210e-07,-3.590033436804221245e-07,-3.692605820712913281e-07,-3.795178204621605316e-07,-3.897750588530297352e-07,-4.000322972438989388e-07,-4.102895356347681423e-07,-4.205467740256373459e-07,-4.308040124165065494e-07,-4.410612508073757530e-07,-4.513184891982449565e-07,-4.615757275891141601e-07,-4.718329659799833637e-07,-4.820902043708525672e-07,-4.923474427617217708e-07,-5.026046811525909743e-07,-5.128619195434601779e-07,-5.231191579343293815e-07,-5.333763963251985850e-07,-5.436336347160677886e-07,-5.538908731069369921e-07,-5.641481114978061957e-07,-5.744053498886753992e-07,-5.846625882795446028e-07,-5.949198266704138064e-07,-6.051770650612830099e-07,-6.154343034521522135e-07,-6.256915418430214170e-07,-6.359487802338906206e-07,-6.462060186247598241e-07 +0.000000000000000000e+00,-1.005561850489877038e-08,-2.011123700979754077e-08,-3.016685551469631280e-08,-4.022247401959508815e-08,-5.027809252449386349e-08,-6.033371102939263884e-08,-7.038932953429141419e-08,-8.044494803919018953e-08,-9.050056654408896488e-08,-1.005561850489877402e-07,-1.106118035538865156e-07,-1.206674220587853042e-07,-1.307230405636840795e-07,-1.407786590685828548e-07,-1.508342775734816302e-07,-1.608898960783804055e-07,-1.709455145832791809e-07,-1.810011330881779562e-07,-1.910567515930767316e-07,-2.011123700979755069e-07,-2.111679886028742823e-07,-2.212236071077730576e-07,-2.312792256126718330e-07,-2.413348441175706083e-07,-2.513904626224693836e-07,-2.614460811273681590e-07,-2.715016996322669343e-07,-2.815573181371657097e-07,-2.916129366420644850e-07,-3.016685551469632604e-07,-3.117241736518620357e-07,-3.217797921567608111e-07,-3.318354106616595864e-07,-3.418910291665583618e-07,-3.519466476714571371e-07,-3.620022661763559125e-07,-3.720578846812546878e-07,-3.821135031861534631e-07,-3.921691216910522385e-07,-4.022247401959510138e-07,-4.122803587008497892e-07,-4.223359772057485645e-07,-4.323915957106473399e-07,-4.424472142155461152e-07,-4.525028327204448906e-07,-4.625584512253436659e-07,-4.726140697302424413e-07,-4.826696882351412166e-07,-4.927253067400400449e-07,-5.027809252449388732e-07,-5.128365437498377015e-07,-5.228921622547365297e-07,-5.329477807596353580e-07,-5.430033992645341863e-07,-5.530590177694330146e-07,-5.631146362743318429e-07,-5.731702547792306712e-07,-5.832258732841294995e-07,-5.932814917890283277e-07,-6.033371102939271560e-07,-6.133927287988259843e-07,-6.234483473037248126e-07,-6.335039658086236409e-07 +0.000000000000000000e+00,-8.466938569680320919e-09,-1.693387713936064184e-08,-2.540081570904096441e-08,-3.386775427872129029e-08,-4.233469284840161617e-08,-5.080163141808194205e-08,-5.926856998776226794e-08,-6.773550855744259382e-08,-7.620244712712291970e-08,-8.466938569680324558e-08,-9.313632426648357146e-08,-1.016032628361638973e-07,-1.100702014058442232e-07,-1.185371399755245491e-07,-1.270040785452048618e-07,-1.354710171148851612e-07,-1.439379556845654606e-07,-1.524048942542457600e-07,-1.608718328239260594e-07,-1.693387713936063588e-07,-1.778057099632866582e-07,-1.862726485329669576e-07,-1.947395871026472570e-07,-2.032065256723275565e-07,-2.116734642420078559e-07,-2.201404028116881553e-07,-2.286073413813684547e-07,-2.370742799510487541e-07,-2.455412185207290535e-07,-2.540081570904093529e-07,-2.624750956600896523e-07,-2.709420342297699518e-07,-2.794089727994502512e-07,-2.878759113691305506e-07,-2.963428499388108500e-07,-3.048097885084911494e-07,-3.132767270781714488e-07,-3.217436656478517482e-07,-3.302106042175320476e-07,-3.386775427872123471e-07,-3.471444813568926465e-07,-3.556114199265729459e-07,-3.640783584962532453e-07,-3.725452970659335447e-07,-3.810122356356138441e-07,-3.894791742052941435e-07,-3.979461127749744429e-07,-4.064130513446547423e-07,-4.148799899143350418e-07,-4.233469284840153412e-07,-4.318138670536956406e-07,-4.402808056233759400e-07,-4.487477441930562394e-07,-4.572146827627365388e-07,-4.656816213324168382e-07,-4.741485599020971376e-07,-4.826154984717773841e-07,-4.910824370414575776e-07,-4.995493756111377712e-07,-5.080163141808179647e-07,-5.164832527504981582e-07,-5.249501913201783518e-07,-5.334171298898585453e-07 +0.000000000000000000e+00,-1.062221113800078674e-08,-2.124442227600157348e-08,-3.186663341400235692e-08,-4.248884455200314035e-08,-5.311105569000392378e-08,-6.373326682800471383e-08,-7.435547796600550389e-08,-8.497768910400629394e-08,-9.559990024200708399e-08,-1.062221113800078740e-07,-1.168443225180086641e-07,-1.274665336560094541e-07,-1.380887447940102574e-07,-1.487109559320110607e-07,-1.593331670700118640e-07,-1.699553782080126673e-07,-1.805775893460134706e-07,-1.911998004840142739e-07,-2.018220116220150771e-07,-2.124442227600158804e-07,-2.230664338980166837e-07,-2.336886450360174870e-07,-2.443108561740182903e-07,-2.549330673120190671e-07,-2.655552784500198439e-07,-2.761774895880206207e-07,-2.867997007260213975e-07,-2.974219118640221744e-07,-3.080441230020229512e-07,-3.186663341400237280e-07,-3.292885452780245048e-07,-3.399107564160252816e-07,-3.505329675540260584e-07,-3.611551786920268353e-07,-3.717773898300276121e-07,-3.823996009680283889e-07,-3.930218121060291657e-07,-4.036440232440299425e-07,-4.142662343820307193e-07,-4.248884455200314961e-07,-4.355106566580322730e-07,-4.461328677960330498e-07,-4.567550789340338266e-07,-4.673772900720346034e-07,-4.779995012100353802e-07,-4.886217123480361570e-07,-4.992439234860369339e-07,-5.098661346240377107e-07,-5.204883457620384875e-07,-5.311105569000392643e-07,-5.417327680380400411e-07,-5.523549791760408179e-07,-5.629771903140415948e-07,-5.735994014520423716e-07,-5.842216125900431484e-07,-5.948438237280439252e-07,-6.054660348660447020e-07,-6.160882460040454788e-07,-6.267104571420462556e-07,-6.373326682800470325e-07,-6.479548794180478093e-07,-6.585770905560485861e-07,-6.691993016940493629e-07 +0.000000000000000000e+00,-1.044282843123879297e-08,-2.088565686247758595e-08,-3.132848529371637727e-08,-4.177131372495516528e-08,-5.221414215619395329e-08,-6.265697058743274130e-08,-7.309979901867152931e-08,-8.354262744991031732e-08,-9.398545588114910533e-08,-1.044282843123878933e-07,-1.148711127436266813e-07,-1.253139411748654561e-07,-1.357567696061042441e-07,-1.461995980373430321e-07,-1.566424264685818202e-07,-1.670852548998206082e-07,-1.775280833310593962e-07,-1.879709117622981842e-07,-1.984137401935369722e-07,-2.088565686247757602e-07,-2.192993970560145482e-07,-2.297422254872533362e-07,-2.401850539184921242e-07,-2.506278823497309122e-07,-2.610707107809697003e-07,-2.715135392122084883e-07,-2.819563676434472763e-07,-2.923991960746860643e-07,-3.028420245059248523e-07,-3.132848529371636403e-07,-3.237276813684024283e-07,-3.341705097996412163e-07,-3.446133382308800043e-07,-3.550561666621187923e-07,-3.654989950933575804e-07,-3.759418235245963684e-07,-3.863846519558351564e-07,-3.968274803870739444e-07,-4.072703088183127324e-07,-4.177131372495515204e-07,-4.281559656807903084e-07,-4.385987941120290964e-07,-4.490416225432678844e-07,-4.594844509745066724e-07,-4.699272794057454605e-07,-4.803701078369842485e-07,-4.908129362682230894e-07,-5.012557646994619304e-07,-5.116985931307007713e-07,-5.221414215619396123e-07,-5.325842499931784532e-07,-5.430270784244172942e-07,-5.534699068556561351e-07,-5.639127352868949761e-07,-5.743555637181338170e-07,-5.847983921493726580e-07,-5.952412205806114989e-07,-6.056840490118503399e-07,-6.161268774430891808e-07,-6.265697058743280218e-07,-6.370125343055668627e-07,-6.474553627368057037e-07,-6.578981911680445446e-07 +0.000000000000000000e+00,-8.673111800870434095e-09,-1.734622360174086819e-08,-2.601933540261130394e-08,-3.469244720348174300e-08,-4.336555900435218206e-08,-5.203867080522262112e-08,-6.071178260609306017e-08,-6.938489440696349923e-08,-7.805800620783393829e-08,-8.673111800870437735e-08,-9.540422980957481641e-08,-1.040773416104452555e-07,-1.127504534113156945e-07,-1.214235652121861468e-07,-1.300966770130565859e-07,-1.387697888139270249e-07,-1.474429006147974640e-07,-1.561160124156679031e-07,-1.647891242165383421e-07,-1.734622360174087812e-07,-1.821353478182792202e-07,-1.908084596191496593e-07,-1.994815714200200983e-07,-2.081546832208905374e-07,-2.168277950217609765e-07,-2.255009068226314155e-07,-2.341740186235018546e-07,-2.428471304243722936e-07,-2.515202422252427327e-07,-2.601933540261131718e-07,-2.688664658269836108e-07,-2.775395776278540499e-07,-2.862126894287244889e-07,-2.948858012295949280e-07,-3.035589130304653670e-07,-3.122320248313358061e-07,-3.209051366322062452e-07,-3.295782484330766842e-07,-3.382513602339471233e-07,-3.469244720348175623e-07,-3.555975838356880014e-07,-3.642706956365584405e-07,-3.729438074374288795e-07,-3.816169192382993186e-07,-3.902900310391697576e-07,-3.989631428400401967e-07,-4.076362546409106357e-07,-4.163093664417810748e-07,-4.249824782426515139e-07,-4.336555900435219529e-07,-4.423287018443923920e-07,-4.510018136452628310e-07,-4.596749254461332701e-07,-4.683480372470037092e-07,-4.770211490478740953e-07,-4.856942608487444814e-07,-4.943673726496148675e-07,-5.030404844504852536e-07,-5.117135962513556398e-07,-5.203867080522260259e-07,-5.290598198530964120e-07,-5.377329316539667981e-07,-5.464060434548371842e-07 +0.000000000000000000e+00,-1.062221113799909102e-08,-2.124442227599818204e-08,-3.186663341399727472e-08,-4.248884455199637070e-08,-5.311105568999546669e-08,-6.373326682799456267e-08,-7.435547796599365866e-08,-8.497768910399275464e-08,-9.559990024199185063e-08,-1.062221113799909466e-07,-1.168443225179900426e-07,-1.274665336559891518e-07,-1.380887447939882610e-07,-1.487109559319873703e-07,-1.593331670699864795e-07,-1.699553782079855887e-07,-1.805775893459846979e-07,-1.911998004839838071e-07,-2.018220116219829164e-07,-2.124442227599820256e-07,-2.230664338979811348e-07,-2.336886450359802440e-07,-2.443108561739793268e-07,-2.549330673119784095e-07,-2.655552784499774923e-07,-2.761774895879765750e-07,-2.867997007259756578e-07,-2.974219118639747405e-07,-3.080441230019738233e-07,-3.186663341399729060e-07,-3.292885452779719888e-07,-3.399107564159710715e-07,-3.505329675539701543e-07,-3.611551786919692370e-07,-3.717773898299683198e-07,-3.823996009679674025e-07,-3.930218121059664853e-07,-4.036440232439655680e-07,-4.142662343819646508e-07,-4.248884455199637335e-07,-4.355106566579628163e-07,-4.461328677959618990e-07,-4.567550789339609818e-07,-4.673772900719600645e-07,-4.779995012099591473e-07,-4.886217123479582300e-07,-4.992439234859573128e-07,-5.098661346239563955e-07,-5.204883457619554783e-07,-5.311105568999545610e-07,-5.417327680379536438e-07,-5.523549791759527265e-07,-5.629771903139518093e-07,-5.735994014519508920e-07,-5.842216125899499748e-07,-5.948438237279490575e-07,-6.054660348659481403e-07,-6.160882460039472230e-07,-6.267104571419463058e-07,-6.373326682799453885e-07,-6.479548794179444713e-07,-6.585770905559435540e-07,-6.691993016939426368e-07 +0.000000000000000000e+00,-1.044282843123701619e-08,-2.088565686247403238e-08,-3.132848529371105022e-08,-4.177131372494807137e-08,-5.221414215618509253e-08,-6.265697058742211368e-08,-7.309979901865912821e-08,-8.354262744989614275e-08,-9.398545588113315728e-08,-1.044282843123701718e-07,-1.148711127436071864e-07,-1.253139411748442009e-07,-1.357567696060812154e-07,-1.461995980373182300e-07,-1.566424264685552445e-07,-1.670852548997922590e-07,-1.775280833310292736e-07,-1.879709117622662881e-07,-1.984137401935033026e-07,-2.088565686247403172e-07,-2.192993970559773317e-07,-2.297422254872143462e-07,-2.401850539184513608e-07,-2.506278823496883488e-07,-2.610707107809253369e-07,-2.715135392121623250e-07,-2.819563676433993130e-07,-2.923991960746363011e-07,-3.028420245058732892e-07,-3.132848529371102772e-07,-3.237276813683472653e-07,-3.341705097995842534e-07,-3.446133382308212414e-07,-3.550561666620582295e-07,-3.654989950932952176e-07,-3.759418235245322056e-07,-3.863846519557691937e-07,-3.968274803870061817e-07,-4.072703088182431698e-07,-4.177131372494801579e-07,-4.281559656807171459e-07,-4.385987941119541340e-07,-4.490416225431911221e-07,-4.594844509744281101e-07,-4.699272794056650982e-07,-4.803701078369020863e-07,-4.908129362681390214e-07,-5.012557646993759565e-07,-5.116985931306128916e-07,-5.221414215618498268e-07,-5.325842499930867619e-07,-5.430270784243236970e-07,-5.534699068555606321e-07,-5.639127352867975673e-07,-5.743555637180345024e-07,-5.847983921492714375e-07,-5.952412205805083727e-07,-6.056840490117453078e-07,-6.161268774429822429e-07,-6.265697058742191780e-07,-6.370125343054561132e-07,-6.474553627366930483e-07,-6.578981911679299834e-07 +0.000000000000000000e+00,-8.673111800868761536e-09,-1.734622360173752307e-08,-2.601933540260628461e-08,-3.469244720347504614e-08,-4.336555900434380437e-08,-5.203867080521256260e-08,-6.071178260608132083e-08,-6.938489440695007905e-08,-7.805800620781883728e-08,-8.673111800868759551e-08,-9.540422980955635374e-08,-1.040773416104251120e-07,-1.127504534112938702e-07,-1.214235652121626417e-07,-1.300966770130314131e-07,-1.387697888139001846e-07,-1.474429006147689560e-07,-1.561160124156377275e-07,-1.647891242165064990e-07,-1.734622360173752704e-07,-1.821353478182440419e-07,-1.908084596191128134e-07,-1.994815714199815848e-07,-2.081546832208503563e-07,-2.168277950217191277e-07,-2.255009068225878992e-07,-2.341740186234566707e-07,-2.428471304243254421e-07,-2.515202422251941871e-07,-2.601933540260629321e-07,-2.688664658269316771e-07,-2.775395776278004221e-07,-2.862126894286691671e-07,-2.948858012295379121e-07,-3.035589130304066571e-07,-3.122320248312754021e-07,-3.209051366321441471e-07,-3.295782484330128921e-07,-3.382513602338816370e-07,-3.469244720347503820e-07,-3.555975838356191270e-07,-3.642706956364878720e-07,-3.729438074373566170e-07,-3.816169192382253620e-07,-3.902900310390941070e-07,-3.989631428399628520e-07,-4.076362546408315970e-07,-4.163093664417003420e-07,-4.249824782425690870e-07,-4.336555900434378320e-07,-4.423287018443065770e-07,-4.510018136451753220e-07,-4.596749254460440669e-07,-4.683480372469128119e-07,-4.770211490477815569e-07,-4.856942608486503549e-07,-4.943673726495191528e-07,-5.030404844503879507e-07,-5.117135962512567487e-07,-5.203867080521255466e-07,-5.290598198529943445e-07,-5.377329316538631425e-07,-5.464060434547319404e-07 +0.000000000000000000e+00,-1.079125097960152700e-08,-2.158250195920305399e-08,-3.237375293880458264e-08,-4.316500391840611460e-08,-5.395625489800764656e-08,-6.474750587760917851e-08,-7.553875685721071047e-08,-8.633000783681224243e-08,-9.712125881641377439e-08,-1.079125097960153063e-07,-1.187037607756168383e-07,-1.294950117552183835e-07,-1.402862627348199155e-07,-1.510775137144214474e-07,-1.618687646940229794e-07,-1.726600156736245113e-07,-1.834512666532260433e-07,-1.942425176328275752e-07,-2.050337686124291072e-07,-2.158250195920306392e-07,-2.266162705716321711e-07,-2.374075215512337031e-07,-2.481987725308352350e-07,-2.589900235104367670e-07,-2.697812744900382990e-07,-2.805725254696398309e-07,-2.913637764492413629e-07,-3.021550274288428948e-07,-3.129462784084444268e-07,-3.237375293880459587e-07,-3.345287803676474907e-07,-3.453200313472490227e-07,-3.561112823268505546e-07,-3.669025333064520866e-07,-3.776937842860536185e-07,-3.884850352656551505e-07,-3.992762862452566825e-07,-4.100675372248582144e-07,-4.208587882044597464e-07,-4.316500391840612783e-07,-4.424412901636628103e-07,-4.532325411432643422e-07,-4.640237921228658742e-07,-4.748150431024674062e-07,-4.856062940820689381e-07,-4.963975450616704701e-07,-5.071887960412720020e-07,-5.179800470208735340e-07,-5.287712980004750660e-07,-5.395625489800765979e-07,-5.503537999596781299e-07,-5.611450509392796618e-07,-5.719363019188811938e-07,-5.827275528984827257e-07,-5.935188038780842577e-07,-6.043100548576857897e-07,-6.151013058372873216e-07,-6.258925568168888536e-07,-6.366838077964903855e-07,-6.474750587760919175e-07,-6.582663097556934495e-07,-6.690575607352949814e-07,-6.798488117148965134e-07 +0.000000000000000000e+00,-1.079125097959994873e-08,-2.158250195919989747e-08,-3.237375293879984455e-08,-4.316500391839978832e-08,-5.395625489799973209e-08,-6.474750587759967586e-08,-7.553875685719961964e-08,-8.633000783679956341e-08,-9.712125881639950718e-08,-1.079125097959994510e-07,-1.187037607755993947e-07,-1.294950117551993253e-07,-1.402862627347992690e-07,-1.510775137143992128e-07,-1.618687646939991566e-07,-1.726600156735991003e-07,-1.834512666531990441e-07,-1.942425176327989879e-07,-2.050337686123989317e-07,-2.158250195919988754e-07,-2.266162705715988192e-07,-2.374075215511987630e-07,-2.481987725307987067e-07,-2.589900235103986505e-07,-2.697812744899985943e-07,-2.805725254695985381e-07,-2.913637764491984818e-07,-3.021550274287984256e-07,-3.129462784083983694e-07,-3.237375293879983131e-07,-3.345287803675982569e-07,-3.453200313471982007e-07,-3.561112823267981445e-07,-3.669025333063980882e-07,-3.776937842859980320e-07,-3.884850352655979758e-07,-3.992762862451979195e-07,-4.100675372247978633e-07,-4.208587882043978071e-07,-4.316500391839977509e-07,-4.424412901635976946e-07,-4.532325411431976384e-07,-4.640237921227975822e-07,-4.748150431023975259e-07,-4.856062940819974697e-07,-4.963975450615974135e-07,-5.071887960411973573e-07,-5.179800470207973010e-07,-5.287712980003972448e-07,-5.395625489799971886e-07,-5.503537999595971323e-07,-5.611450509391970761e-07,-5.719363019187970199e-07,-5.827275528983969637e-07,-5.935188038779969074e-07,-6.043100548575968512e-07,-6.151013058371967950e-07,-6.258925568167967387e-07,-6.366838077963966825e-07,-6.474750587759966263e-07,-6.582663097555965701e-07,-6.690575607351965138e-07,-6.798488117147964576e-07 +0.000000000000000000e+00,-1.072066736070731985e-08,-2.144133472141463970e-08,-3.216200208212196286e-08,-4.288266944282928601e-08,-5.360333680353660917e-08,-6.432400416424392571e-08,-7.504467152495124225e-08,-8.576533888565855879e-08,-9.648600624636587533e-08,-1.072066736070731919e-07,-1.179273409677805084e-07,-1.286480083284878250e-07,-1.393686756891951547e-07,-1.500893430499024845e-07,-1.608100104106098143e-07,-1.715306777713171441e-07,-1.822513451320244738e-07,-1.929720124927318036e-07,-2.036926798534391334e-07,-2.144133472141464632e-07,-2.251340145748537929e-07,-2.358546819355611227e-07,-2.465753492962684525e-07,-2.572960166569758087e-07,-2.680166840176831650e-07,-2.787373513783905212e-07,-2.894580187390978775e-07,-3.001786860998052337e-07,-3.108993534605125900e-07,-3.216200208212199462e-07,-3.323406881819273024e-07,-3.430613555426346587e-07,-3.537820229033420149e-07,-3.645026902640493712e-07,-3.752233576247567274e-07,-3.859440249854640837e-07,-3.966646923461714399e-07,-4.073853597068787962e-07,-4.181060270675861524e-07,-4.288266944282935086e-07,-4.395473617890008649e-07,-4.502680291497082211e-07,-4.609886965104155774e-07,-4.717093638711229336e-07,-4.824300312318302899e-07,-4.931506985925376461e-07,-5.038713659532450024e-07,-5.145920333139523586e-07,-5.253127006746597149e-07,-5.360333680353670711e-07,-5.467540353960744273e-07,-5.574747027567817836e-07,-5.681953701174891398e-07,-5.789160374781964961e-07,-5.896367048389038523e-07,-6.003573721996112086e-07,-6.110780395603185648e-07,-6.217987069210259211e-07,-6.325193742817332773e-07,-6.432400416424406335e-07,-6.539607090031479898e-07,-6.646813763638553460e-07,-6.754020437245627023e-07 +0.000000000000000000e+00,-1.292807672935169802e-08,-2.585615345870339604e-08,-3.878423018805509075e-08,-5.171230691740678547e-08,-6.464038364675848018e-08,-7.756846037611018151e-08,-9.049653710546188284e-08,-1.034246138348135842e-07,-1.163526905641652855e-07,-1.292807672935169868e-07,-1.422088440228686882e-07,-1.551369207522203895e-07,-1.680649974815720908e-07,-1.809930742109237921e-07,-1.939211509402754935e-07,-2.068492276696271948e-07,-2.197773043989788961e-07,-2.327053811283305975e-07,-2.456334578576823253e-07,-2.585615345870340266e-07,-2.714896113163857279e-07,-2.844176880457374293e-07,-2.973457647750891306e-07,-3.102738415044408319e-07,-3.232019182337925332e-07,-3.361299949631442346e-07,-3.490580716924959359e-07,-3.619861484218476372e-07,-3.749142251511993386e-07,-3.878423018805510399e-07,-4.007703786099027412e-07,-4.136984553392544426e-07,-4.266265320686061439e-07,-4.395546087979578452e-07,-4.524826855273095465e-07,-4.654107622566612479e-07,-4.783388389860129492e-07,-4.912669157153646505e-07,-5.041949924447163519e-07,-5.171230691740680532e-07,-5.300511459034197545e-07,-5.429792226327714559e-07,-5.559072993621231572e-07,-5.688353760914748585e-07,-5.817634528208265598e-07,-5.946915295501782612e-07,-6.076196062795299625e-07,-6.205476830088816638e-07,-6.334757597382333652e-07,-6.464038364675850665e-07,-6.593319131969367678e-07,-6.722599899262884692e-07,-6.851880666556401705e-07,-6.981161433849918718e-07,-7.110442201143435731e-07,-7.239722968436952745e-07,-7.369003735730469758e-07,-7.498284503023986771e-07,-7.627565270317503785e-07,-7.756846037611020798e-07,-7.886126804904537811e-07,-8.015407572198054825e-07,-8.144688339491571838e-07 +0.000000000000000000e+00,-1.294641797345712889e-08,-2.589283594691425778e-08,-3.883925392037138833e-08,-5.178567189382852218e-08,-6.473208986728565603e-08,-7.767850784074278989e-08,-9.062492581419992374e-08,-1.035713437876570576e-07,-1.165177617611141914e-07,-1.294641797345713385e-07,-1.424105977080284989e-07,-1.553570156814856592e-07,-1.683034336549428195e-07,-1.812498516283999798e-07,-1.941962696018571402e-07,-2.071426875753143005e-07,-2.200891055487714608e-07,-2.330355235222286211e-07,-2.459819414956857814e-07,-2.589283594691429418e-07,-2.718747774426001021e-07,-2.848211954160572624e-07,-2.977676133895144227e-07,-3.107140313629715831e-07,-3.236604493364287434e-07,-3.366068673098859037e-07,-3.495532852833430640e-07,-3.624997032568002244e-07,-3.754461212302573847e-07,-3.883925392037145450e-07,-4.013389571771717053e-07,-4.142853751506288657e-07,-4.272317931240860260e-07,-4.401782110975431863e-07,-4.531246290710003466e-07,-4.660710470444575070e-07,-4.790174650179146673e-07,-4.919638829913717747e-07,-5.049103009648288820e-07,-5.178567189382859894e-07,-5.308031369117430968e-07,-5.437495548852002042e-07,-5.566959728586573116e-07,-5.696423908321144190e-07,-5.825888088055715263e-07,-5.955352267790286337e-07,-6.084816447524857411e-07,-6.214280627259428485e-07,-6.343744806993999559e-07,-6.473208986728570633e-07,-6.602673166463141706e-07,-6.732137346197712780e-07,-6.861601525932283854e-07,-6.991065705666854928e-07,-7.120529885401426002e-07,-7.249994065135997076e-07,-7.379458244870568150e-07,-7.508922424605139223e-07,-7.638386604339710297e-07,-7.767850784074281371e-07,-7.897314963808852445e-07,-8.026779143543423519e-07,-8.156243323277994593e-07 +0.000000000000000000e+00,-1.139203556083933268e-08,-2.278407112167866536e-08,-3.417610668251800134e-08,-4.556814224335733733e-08,-5.696017780419667332e-08,-6.835221336503600268e-08,-7.974424892587533205e-08,-9.113628448671466142e-08,-1.025283200475539908e-07,-1.139203556083933202e-07,-1.253123911692326495e-07,-1.367044267300719789e-07,-1.480964622909113083e-07,-1.594884978517506376e-07,-1.708805334125899670e-07,-1.822725689734292964e-07,-1.936646045342686257e-07,-2.050566400951079551e-07,-2.164486756559472845e-07,-2.278407112167866139e-07,-2.392327467776259697e-07,-2.506247823384653520e-07,-2.620168178993047343e-07,-2.734088534601441166e-07,-2.848008890209834989e-07,-2.961929245818228812e-07,-3.075849601426622635e-07,-3.189769957035016459e-07,-3.303690312643410282e-07,-3.417610668251804105e-07,-3.531531023860197928e-07,-3.645451379468591751e-07,-3.759371735076985574e-07,-3.873292090685379397e-07,-3.987212446293773220e-07,-4.101132801902167043e-07,-4.215053157510560866e-07,-4.328973513118954689e-07,-4.442893868727348512e-07,-4.556814224335742336e-07,-4.670734579944136159e-07,-4.784654935552529982e-07,-4.898575291160923805e-07,-5.012495646769317628e-07,-5.126416002377711451e-07,-5.240336357986105274e-07,-5.354256713594499097e-07,-5.468177069202892920e-07,-5.582097424811286743e-07,-5.696017780419680566e-07,-5.809938136028074390e-07,-5.923858491636468213e-07,-6.037778847244862036e-07,-6.151699202853255859e-07,-6.265619558461649682e-07,-6.379539914070043505e-07,-6.493460269678437328e-07,-6.607380625286831151e-07,-6.721300980895224974e-07,-6.835221336503618797e-07,-6.949141692112012620e-07,-7.063062047720406443e-07,-7.176982403328800267e-07 +0.000000000000000000e+00,-1.192677513643056708e-08,-2.385355027286113416e-08,-3.578032540929170123e-08,-4.770710054572226831e-08,-5.963387568215283539e-08,-7.156065081858340247e-08,-8.348742595501396954e-08,-9.541420109144453662e-08,-1.073409762278751037e-07,-1.192677513643056708e-07,-1.311945265007362379e-07,-1.431213016371668049e-07,-1.550480767735973720e-07,-1.669748519100279391e-07,-1.789016270464585062e-07,-1.908284021828890732e-07,-2.027551773193196403e-07,-2.146819524557502074e-07,-2.266087275921807745e-07,-2.385355027286113416e-07,-2.504622778650419086e-07,-2.623890530014724757e-07,-2.743158281379030428e-07,-2.862426032743336099e-07,-2.981693784107641769e-07,-3.100961535471947440e-07,-3.220229286836253111e-07,-3.339497038200558782e-07,-3.458764789564864453e-07,-3.578032540929170123e-07,-3.697300292293475794e-07,-3.816568043657781465e-07,-3.935835795022087136e-07,-4.055103546386392806e-07,-4.174371297750698477e-07,-4.293639049115004148e-07,-4.412906800479309819e-07,-4.532174551843615490e-07,-4.651442303207921160e-07,-4.770710054572226831e-07,-4.889977805936533031e-07,-5.009245557300839231e-07,-5.128513308665145432e-07,-5.247781060029451632e-07,-5.367048811393757832e-07,-5.486316562758064032e-07,-5.605584314122370232e-07,-5.724852065486676432e-07,-5.844119816850982633e-07,-5.963387568215288833e-07,-6.082655319579595033e-07,-6.201923070943901233e-07,-6.321190822308207433e-07,-6.440458573672513633e-07,-6.559726325036819834e-07,-6.678994076401126034e-07,-6.798261827765432234e-07,-6.917529579129738434e-07,-7.036797330494044634e-07,-7.156065081858350835e-07,-7.275332833222657035e-07,-7.394600584586963235e-07,-7.513868335951269435e-07 +0.000000000000000000e+00,-8.996588814425425090e-09,-1.799317762885085018e-08,-2.698976644327627362e-08,-3.598635525770169374e-08,-4.498294407212711387e-08,-5.397953288655253400e-08,-6.297612170097795413e-08,-7.197271051540337425e-08,-8.096929932982879438e-08,-8.996588814425421451e-08,-9.896247695867963464e-08,-1.079590657731050548e-07,-1.169556545875304749e-07,-1.259522434019559083e-07,-1.349488322163813416e-07,-1.439454210308067750e-07,-1.529420098452322083e-07,-1.619385986596576417e-07,-1.709351874740830751e-07,-1.799317762885085084e-07,-1.889283651029339418e-07,-1.979249539173593751e-07,-2.069215427317848085e-07,-2.159181315462102419e-07,-2.249147203606356752e-07,-2.339113091750611086e-07,-2.429078979894865155e-07,-2.519044868039119224e-07,-2.609010756183373293e-07,-2.698976644327627362e-07,-2.788942532471881431e-07,-2.878908420616135500e-07,-2.968874308760389568e-07,-3.058840196904643637e-07,-3.148806085048897706e-07,-3.238771973193151775e-07,-3.328737861337405844e-07,-3.418703749481659913e-07,-3.508669637625913982e-07,-3.598635525770168051e-07,-3.688601413914422120e-07,-3.778567302058676189e-07,-3.868533190202930258e-07,-3.958499078347184327e-07,-4.048464966491438396e-07,-4.138430854635692464e-07,-4.228396742779946533e-07,-4.318362630924200602e-07,-4.408328519068454671e-07,-4.498294407212708740e-07,-4.588260295356962809e-07,-4.678226183501216878e-07,-4.768192071645470947e-07,-4.858157959789725016e-07,-4.948123847933979085e-07,-5.038089736078233154e-07,-5.128055624222487223e-07,-5.218021512366741292e-07,-5.307987400510995360e-07,-5.397953288655249429e-07,-5.487919176799503498e-07,-5.577885064943757567e-07,-5.667850953088011636e-07 +0.000000000000000000e+00,-1.294361446416395291e-08,-2.588722892832790582e-08,-3.883084339249185874e-08,-5.177445785665581165e-08,-6.471807232081977118e-08,-7.766168678498373071e-08,-9.060530124914769023e-08,-1.035489157133116498e-07,-1.164925301774756093e-07,-1.294361446416395688e-07,-1.423797591058035284e-07,-1.553233735699674879e-07,-1.682669880341314474e-07,-1.812106024982954069e-07,-1.941542169624593665e-07,-2.070978314266233260e-07,-2.200414458907872855e-07,-2.329850603549512451e-07,-2.459286748191152046e-07,-2.588722892832791906e-07,-2.718159037474431766e-07,-2.847595182116071626e-07,-2.977031326757711486e-07,-3.106467471399351346e-07,-3.235903616040991206e-07,-3.365339760682631066e-07,-3.494775905324270926e-07,-3.624212049965910786e-07,-3.753648194607550646e-07,-3.883084339249190506e-07,-4.012520483890830366e-07,-4.141956628532470226e-07,-4.271392773174110086e-07,-4.400828917815749946e-07,-4.530265062457389806e-07,-4.659701207099029666e-07,-4.789137351740668996e-07,-4.918573496382308327e-07,-5.048009641023947657e-07,-5.177445785665586988e-07,-5.306881930307226319e-07,-5.436318074948865649e-07,-5.565754219590504980e-07,-5.695190364232144310e-07,-5.824626508873783641e-07,-5.954062653515422972e-07,-6.083498798157062302e-07,-6.212934942798701633e-07,-6.342371087440340963e-07,-6.471807232081980294e-07,-6.601243376723619625e-07,-6.730679521365258955e-07,-6.860115666006898286e-07,-6.989551810648537616e-07,-7.118987955290176947e-07,-7.248424099931816278e-07,-7.377860244573455608e-07,-7.507296389215094939e-07,-7.636732533856734269e-07,-7.766168678498373600e-07,-7.895604823140012931e-07,-8.025040967781652261e-07,-8.154477112423291592e-07 +0.000000000000000000e+00,-1.200237455137465836e-08,-2.400474910274931672e-08,-3.600712365412397508e-08,-4.800949820549863344e-08,-6.001187275687328519e-08,-7.201424730824793693e-08,-8.401662185962258867e-08,-9.601899641099724042e-08,-1.080213709623718922e-07,-1.200237455137465439e-07,-1.320261200651211956e-07,-1.440284946164958474e-07,-1.560308691678704991e-07,-1.680332437192451509e-07,-1.800356182706198026e-07,-1.920379928219944544e-07,-2.040403673733691061e-07,-2.160427419247437579e-07,-2.280451164761184096e-07,-2.400474910274930349e-07,-2.520498655788676337e-07,-2.640522401302422325e-07,-2.760546146816168313e-07,-2.880569892329914301e-07,-3.000593637843660289e-07,-3.120617383357406277e-07,-3.240641128871152265e-07,-3.360664874384898253e-07,-3.480688619898644241e-07,-3.600712365412390229e-07,-3.720736110926136217e-07,-3.840759856439882205e-07,-3.960783601953628193e-07,-4.080807347467374181e-07,-4.200831092981120169e-07,-4.320854838494866157e-07,-4.440878584008612145e-07,-4.560902329522358133e-07,-4.680926075036104121e-07,-4.800949820549850110e-07,-4.920973566063596098e-07,-5.040997311577342086e-07,-5.161021057091088074e-07,-5.281044802604834062e-07,-5.401068548118580050e-07,-5.521092293632326038e-07,-5.641116039146072026e-07,-5.761139784659818014e-07,-5.881163530173564002e-07,-6.001187275687309990e-07,-6.121211021201055978e-07,-6.241234766714801966e-07,-6.361258512228547954e-07,-6.481282257742293942e-07,-6.601306003256039930e-07,-6.721329748769785918e-07,-6.841353494283531906e-07,-6.961377239797277894e-07,-7.081400985311023882e-07,-7.201424730824769870e-07,-7.321448476338515858e-07,-7.441472221852261846e-07,-7.561495967366007834e-07 +0.000000000000000000e+00,-1.072066736070201597e-08,-2.144133472140403193e-08,-3.216200208210604790e-08,-4.288266944280806387e-08,-5.360333680351007983e-08,-6.432400416421209580e-08,-7.504467152491411839e-08,-8.576533888561614097e-08,-9.648600624631816355e-08,-1.072066736070201861e-07,-1.179273409677222087e-07,-1.286480083284242181e-07,-1.393686756891262274e-07,-1.500893430498282368e-07,-1.608100104105302461e-07,-1.715306777712322555e-07,-1.822513451319342648e-07,-1.929720124926362742e-07,-2.036926798533382835e-07,-2.144133472140402929e-07,-2.251340145747423022e-07,-2.358546819354443116e-07,-2.465753492961463209e-07,-2.572960166568483303e-07,-2.680166840175503396e-07,-2.787373513782523490e-07,-2.894580187389543583e-07,-3.001786860996563677e-07,-3.108993534603583770e-07,-3.216200208210603864e-07,-3.323406881817623957e-07,-3.430613555424644051e-07,-3.537820229031664144e-07,-3.645026902638684238e-07,-3.752233576245704331e-07,-3.859440249852724425e-07,-3.966646923459744518e-07,-4.073853597066764612e-07,-4.181060270673784705e-07,-4.288266944280804799e-07,-4.395473617887824892e-07,-4.502680291494844986e-07,-4.609886965101865079e-07,-4.717093638708885173e-07,-4.824300312315904737e-07,-4.931506985922924301e-07,-5.038713659529943865e-07,-5.145920333136963429e-07,-5.253127006743982993e-07,-5.360333680351002557e-07,-5.467540353958022121e-07,-5.574747027565041685e-07,-5.681953701172061249e-07,-5.789160374779080814e-07,-5.896367048386100378e-07,-6.003573721993119942e-07,-6.110780395600139506e-07,-6.217987069207159070e-07,-6.325193742814178634e-07,-6.432400416421198198e-07,-6.539607090028217762e-07,-6.646813763635237326e-07,-6.754020437242256890e-07 +0.000000000000000000e+00,-1.292807672934591934e-08,-2.585615345869183867e-08,-3.878423018803775967e-08,-5.171230691738368397e-08,-6.464038364672960165e-08,-7.756846037607551933e-08,-9.049653710542143702e-08,-1.034246138347673547e-07,-1.163526905641132724e-07,-1.292807672934592033e-07,-1.422088440228051342e-07,-1.551369207521510651e-07,-1.680649974814969961e-07,-1.809930742108429270e-07,-1.939211509401888579e-07,-2.068492276695347888e-07,-2.197773043988807197e-07,-2.327053811282266506e-07,-2.456334578575725816e-07,-2.585615345869185125e-07,-2.714896113162644434e-07,-2.844176880456103743e-07,-2.973457647749563052e-07,-3.102738415043022362e-07,-3.232019182336481671e-07,-3.361299949629940980e-07,-3.490580716923400289e-07,-3.619861484216859598e-07,-3.749142251510318907e-07,-3.878423018803778217e-07,-4.007703786097237526e-07,-4.136984553390696835e-07,-4.266265320684156144e-07,-4.395546087977615453e-07,-4.524826855271074762e-07,-4.654107622564534072e-07,-4.783388389857993910e-07,-4.912669157151453749e-07,-5.041949924444913587e-07,-5.171230691738373426e-07,-5.300511459031833265e-07,-5.429792226325293103e-07,-5.559072993618752942e-07,-5.688353760912212780e-07,-5.817634528205672619e-07,-5.946915295499132457e-07,-6.076196062792592296e-07,-6.205476830086052135e-07,-6.334757597379511973e-07,-6.464038364672971812e-07,-6.593319131966431650e-07,-6.722599899259891489e-07,-6.851880666553351327e-07,-6.981161433846811166e-07,-7.110442201140271005e-07,-7.239722968433730843e-07,-7.369003735727190682e-07,-7.498284503020650520e-07,-7.627565270314110359e-07,-7.756846037607570197e-07,-7.886126804901030036e-07,-8.015407572194489875e-07,-8.144688339487949713e-07 +0.000000000000000000e+00,-1.294361446416114381e-08,-2.588722892832228761e-08,-3.883084339248343473e-08,-5.177445785664458184e-08,-6.471807232080572896e-08,-7.766168678496686946e-08,-9.060530124912800995e-08,-1.035489157132891505e-07,-1.164925301774502909e-07,-1.294361446416114314e-07,-1.423797591057725587e-07,-1.553233735699336860e-07,-1.682669880340948132e-07,-1.812106024982559405e-07,-1.941542169624170678e-07,-2.070978314265781950e-07,-2.200414458907393223e-07,-2.329850603549004495e-07,-2.459286748190615768e-07,-2.588722892832227041e-07,-2.718159037473838313e-07,-2.847595182115449586e-07,-2.977031326757060859e-07,-3.106467471398672131e-07,-3.235903616040283404e-07,-3.365339760681894677e-07,-3.494775905323505949e-07,-3.624212049965117222e-07,-3.753648194606728494e-07,-3.883084339248339767e-07,-4.012520483889951040e-07,-4.141956628531562312e-07,-4.271392773173173585e-07,-4.400828917814784858e-07,-4.530265062456396130e-07,-4.659701207098007403e-07,-4.789137351739618675e-07,-4.918573496381229419e-07,-5.048009641022840162e-07,-5.177445785664450905e-07,-5.306881930306061648e-07,-5.436318074947672392e-07,-5.565754219589283135e-07,-5.695190364230893878e-07,-5.824626508872504621e-07,-5.954062653514115365e-07,-6.083498798155726108e-07,-6.212934942797336851e-07,-6.342371087438947594e-07,-6.471807232080558337e-07,-6.601243376722169081e-07,-6.730679521363779824e-07,-6.860115666005390567e-07,-6.989551810647001310e-07,-7.118987955288612054e-07,-7.248424099930222797e-07,-7.377860244571833540e-07,-7.507296389213444283e-07,-7.636732533855055027e-07,-7.766168678496665770e-07,-7.895604823138276513e-07,-8.025040967779887256e-07,-8.154477112421497999e-07 +0.000000000000000000e+00,-1.139203556083356723e-08,-2.278407112166713446e-08,-3.417610668250070334e-08,-4.556814224333427553e-08,-5.696017780416784773e-08,-6.835221336500141992e-08,-7.974424892583499211e-08,-9.113628448666856430e-08,-1.025283200475021365e-07,-1.139203556083357087e-07,-1.253123911691692809e-07,-1.367044267300028663e-07,-1.480964622908364517e-07,-1.594884978516700372e-07,-1.708805334125036226e-07,-1.822725689733372080e-07,-1.936646045341707934e-07,-2.050566400950043789e-07,-2.164486756558379643e-07,-2.278407112166715497e-07,-2.392327467775051616e-07,-2.506247823383387735e-07,-2.620168178991723854e-07,-2.734088534600059973e-07,-2.848008890208396092e-07,-2.961929245816732211e-07,-3.075849601425068330e-07,-3.189769957033404449e-07,-3.303690312641740568e-07,-3.417610668250076687e-07,-3.531531023858412806e-07,-3.645451379466748925e-07,-3.759371735075085044e-07,-3.873292090683421163e-07,-3.987212446291757282e-07,-4.101132801900093401e-07,-4.215053157508429520e-07,-4.328973513116765639e-07,-4.442893868725101758e-07,-4.556814224333437877e-07,-4.670734579941773996e-07,-4.784654935550109585e-07,-4.898575291158445175e-07,-5.012495646766780764e-07,-5.126416002375116354e-07,-5.240336357983451943e-07,-5.354256713591787533e-07,-5.468177069200123123e-07,-5.582097424808458712e-07,-5.696017780416794302e-07,-5.809938136025129891e-07,-5.923858491633465481e-07,-6.037778847241801070e-07,-6.151699202850136660e-07,-6.265619558458472250e-07,-6.379539914066807839e-07,-6.493460269675143429e-07,-6.607380625283479018e-07,-6.721300980891814608e-07,-6.835221336500150197e-07,-6.949141692108485787e-07,-7.063062047716821377e-07,-7.176982403325156966e-07 +0.000000000000000000e+00,-1.192677513642427389e-08,-2.385355027284854778e-08,-3.578032540927282166e-08,-4.770710054569709555e-08,-5.963387568212136282e-08,-7.156065081854563009e-08,-8.348742595496989736e-08,-9.541420109139416463e-08,-1.073409762278184319e-07,-1.192677513642426992e-07,-1.311945265006669664e-07,-1.431213016370912337e-07,-1.550480767735155010e-07,-1.669748519099397683e-07,-1.789016270463640355e-07,-1.908284021827883028e-07,-2.027551773192125701e-07,-2.146819524556368373e-07,-2.266087275920611046e-07,-2.385355027284853454e-07,-2.504622778649096127e-07,-2.623890530013338799e-07,-2.743158281377581472e-07,-2.862426032741824145e-07,-2.981693784106066818e-07,-3.100961535470309490e-07,-3.220229286834552163e-07,-3.339497038198794836e-07,-3.458764789563037508e-07,-3.578032540927280181e-07,-3.697300292291522854e-07,-3.816568043655765526e-07,-3.935835795020008199e-07,-4.055103546384250872e-07,-4.174371297748493545e-07,-4.293639049112736217e-07,-4.412906800476978890e-07,-4.532174551841221563e-07,-4.651442303205464235e-07,-4.770710054569706908e-07,-4.889977805933949581e-07,-5.009245557298192253e-07,-5.128513308662434926e-07,-5.247781060026677599e-07,-5.367048811390920272e-07,-5.486316562755162944e-07,-5.605584314119405617e-07,-5.724852065483648290e-07,-5.844119816847890962e-07,-5.963387568212133635e-07,-6.082655319576376308e-07,-6.201923070940618980e-07,-6.321190822304861653e-07,-6.440458573669104326e-07,-6.559726325033346999e-07,-6.678994076397589671e-07,-6.798261827761832344e-07,-6.917529579126075017e-07,-7.036797330490317689e-07,-7.156065081854560362e-07,-7.275332833218803035e-07,-7.394600584583045707e-07,-7.513868335947288380e-07 +0.000000000000000000e+00,-8.996588814419803571e-09,-1.799317762883960714e-08,-2.698976644325941237e-08,-3.598635525767922090e-08,-4.498294407209902944e-08,-5.397953288651883797e-08,-6.297612170093864650e-08,-7.197271051535845504e-08,-8.096929932977826357e-08,-8.996588814419807211e-08,-9.896247695861788064e-08,-1.079590657730376892e-07,-1.169556545874574977e-07,-1.259522434018772930e-07,-1.349488322162970883e-07,-1.439454210307168836e-07,-1.529420098451366789e-07,-1.619385986595564742e-07,-1.709351874739762695e-07,-1.799317762883960648e-07,-1.889283651028158601e-07,-1.979249539172356554e-07,-2.069215427316554507e-07,-2.159181315460752460e-07,-2.249147203604950413e-07,-2.339113091749148366e-07,-2.429078979893346319e-07,-2.519044868037544272e-07,-2.609010756181742225e-07,-2.698976644325940178e-07,-2.788942532470138131e-07,-2.878908420614336084e-07,-2.968874308758534037e-07,-3.058840196902731990e-07,-3.148806085046929943e-07,-3.238771973191127896e-07,-3.328737861335325849e-07,-3.418703749479523802e-07,-3.508669637623721755e-07,-3.598635525767919708e-07,-3.688601413912117661e-07,-3.778567302056315614e-07,-3.868533190200513567e-07,-3.958499078344711520e-07,-4.048464966488909473e-07,-4.138430854633107426e-07,-4.228396742777305379e-07,-4.318362630921503332e-07,-4.408328519065701285e-07,-4.498294407209899238e-07,-4.588260295354097191e-07,-4.678226183498295144e-07,-4.768192071642493097e-07,-4.858157959786691579e-07,-4.948123847930889532e-07,-5.038089736075087485e-07,-5.128055624219285438e-07,-5.218021512363483391e-07,-5.307987400507681344e-07,-5.397953288651879297e-07,-5.487919176796077250e-07,-5.577885064940275203e-07,-5.667850953084473156e-07 +0.000000000000000000e+00,-1.075490257225829595e-08,-2.150980514451659190e-08,-3.226470771677488453e-08,-4.301961028903317717e-08,-5.377451286129146981e-08,-6.452941543354976907e-08,-7.528431800580806832e-08,-8.603922057806636758e-08,-9.679412315032466684e-08,-1.075490257225829661e-07,-1.183039282948412653e-07,-1.290588308670995646e-07,-1.398137334393578639e-07,-1.505686360116161631e-07,-1.613235385838744624e-07,-1.720784411561327616e-07,-1.828333437283910609e-07,-1.935882463006493601e-07,-2.043431488729076594e-07,-2.150980514451659587e-07,-2.258529540174242579e-07,-2.366078565896825572e-07,-2.473627591619408564e-07,-2.581176617341991822e-07,-2.688725643064575079e-07,-2.796274668787158336e-07,-2.903823694509741593e-07,-3.011372720232324851e-07,-3.118921745954908108e-07,-3.226470771677491365e-07,-3.334019797400074622e-07,-3.441568823122657880e-07,-3.549117848845241137e-07,-3.656666874567824394e-07,-3.764215900290407651e-07,-3.871764926012990909e-07,-3.979313951735574166e-07,-4.086862977458157423e-07,-4.194412003180740680e-07,-4.301961028903323938e-07,-4.409510054625907195e-07,-4.517059080348490452e-07,-4.624608106071073709e-07,-4.732157131793656967e-07,-4.839706157516239695e-07,-4.947255183238822422e-07,-5.054804208961405150e-07,-5.162353234683987878e-07,-5.269902260406570606e-07,-5.377451286129153334e-07,-5.485000311851736062e-07,-5.592549337574318790e-07,-5.700098363296901518e-07,-5.807647389019484245e-07,-5.915196414742066973e-07,-6.022745440464649701e-07,-6.130294466187232429e-07,-6.237843491909815157e-07,-6.345392517632397885e-07,-6.452941543354980613e-07,-6.560490569077563340e-07,-6.668039594800146068e-07,-6.775588620522728796e-07 +0.000000000000000000e+00,-1.062082650449364435e-08,-2.124165300898728869e-08,-3.186247951348092973e-08,-4.248330601797457077e-08,-5.310413252246821180e-08,-6.372495902696185946e-08,-7.434578553145550711e-08,-8.496661203594915477e-08,-9.558743854044280242e-08,-1.062082650449364501e-07,-1.168290915494300977e-07,-1.274499180539237454e-07,-1.380707445584173930e-07,-1.486915710629110407e-07,-1.593123975674046883e-07,-1.699332240718983360e-07,-1.805540505763919837e-07,-1.911748770808856313e-07,-2.017957035853792790e-07,-2.124165300898729266e-07,-2.230373565943665743e-07,-2.336581830988602219e-07,-2.442790096033538696e-07,-2.548998361078475437e-07,-2.655206626123412178e-07,-2.761414891168348920e-07,-2.867623156213285661e-07,-2.973831421258222402e-07,-3.080039686303159143e-07,-3.186247951348095884e-07,-3.292456216393032626e-07,-3.398664481437969367e-07,-3.504872746482906108e-07,-3.611081011527842849e-07,-3.717289276572779591e-07,-3.823497541617716332e-07,-3.929705806662653073e-07,-4.035914071707589814e-07,-4.142122336752526556e-07,-4.248330601797463297e-07,-4.354538866842400038e-07,-4.460747131887336779e-07,-4.566955396932273521e-07,-4.673163661977210262e-07,-4.779371927022147003e-07,-4.885580192067083744e-07,-4.991788457112020486e-07,-5.097996722156957227e-07,-5.204204987201893968e-07,-5.310413252246830709e-07,-5.416621517291767451e-07,-5.522829782336704192e-07,-5.629038047381640933e-07,-5.735246312426577674e-07,-5.841454577471514416e-07,-5.947662842516451157e-07,-6.053871107561387898e-07,-6.160079372606324639e-07,-6.266287637651261380e-07,-6.372495902696198122e-07,-6.478704167741134863e-07,-6.584912432786071604e-07,-6.691120697831008345e-07 +0.000000000000000000e+00,-9.155951166623896293e-09,-1.831190233324779259e-08,-2.746785349987169053e-08,-3.662380466649559179e-08,-4.577975583311949304e-08,-5.493570699974339430e-08,-6.409165816636729556e-08,-7.324760933299119681e-08,-8.240356049961509807e-08,-9.155951166623899932e-08,-1.007154628328629006e-07,-1.098714139994868018e-07,-1.190273651661107031e-07,-1.281833163327345911e-07,-1.373392674993584791e-07,-1.464952186659823672e-07,-1.556511698326062552e-07,-1.648071209992301432e-07,-1.739630721658540312e-07,-1.831190233324779192e-07,-1.922749744991018073e-07,-2.014309256657256953e-07,-2.105868768323495833e-07,-2.197428279989734713e-07,-2.288987791655973593e-07,-2.380547303322212474e-07,-2.472106814988451619e-07,-2.563666326654690763e-07,-2.655225838320929908e-07,-2.746785349987169053e-07,-2.838344861653408198e-07,-2.929904373319647343e-07,-3.021463884985886488e-07,-3.113023396652125633e-07,-3.204582908318364778e-07,-3.296142419984603923e-07,-3.387701931650843068e-07,-3.479261443317082213e-07,-3.570820954983321357e-07,-3.662380466649560502e-07,-3.753939978315799647e-07,-3.845499489982038792e-07,-3.937059001648277937e-07,-4.028618513314517082e-07,-4.120178024980756227e-07,-4.211737536646995372e-07,-4.303297048313234517e-07,-4.394856559979473662e-07,-4.486416071645712807e-07,-4.577975583311951951e-07,-4.669535094978191096e-07,-4.761094606644430241e-07,-4.852654118310669386e-07,-4.944213629976908531e-07,-5.035773141643147676e-07,-5.127332653309386821e-07,-5.218892164975625966e-07,-5.310451676641865111e-07,-5.402011188308104256e-07,-5.493570699974343401e-07,-5.585130211640582545e-07,-5.676689723306821690e-07,-5.768249234973060835e-07 +0.000000000000000000e+00,-1.075490257225397310e-08,-2.150980514450794620e-08,-3.226470771676192096e-08,-4.301961028901589902e-08,-5.377451286126987709e-08,-6.452941543352385515e-08,-7.528431800577783984e-08,-8.603922057803182452e-08,-9.679412315028580920e-08,-1.075490257225397939e-07,-1.183039282947937786e-07,-1.290588308670477632e-07,-1.398137334393017479e-07,-1.505686360115557326e-07,-1.613235385838097173e-07,-1.720784411560637020e-07,-1.828333437283176867e-07,-1.935882463005716713e-07,-2.043431488728256560e-07,-2.150980514450796407e-07,-2.258529540173336254e-07,-2.366078565895876101e-07,-2.473627591618415948e-07,-2.581176617340955794e-07,-2.688725643063495641e-07,-2.796274668786035488e-07,-2.903823694508575335e-07,-3.011372720231115182e-07,-3.118921745953655028e-07,-3.226470771676194875e-07,-3.334019797398734722e-07,-3.441568823121274569e-07,-3.549117848843814416e-07,-3.656666874566354263e-07,-3.764215900288894109e-07,-3.871764926011433956e-07,-3.979313951733973803e-07,-4.086862977456513650e-07,-4.194412003179053497e-07,-4.301961028901593343e-07,-4.409510054624133190e-07,-4.517059080346673037e-07,-4.624608106069212884e-07,-4.732157131791752731e-07,-4.839706157514292578e-07,-4.947255183236831895e-07,-5.054804208959371212e-07,-5.162353234681910530e-07,-5.269902260404449847e-07,-5.377451286126989165e-07,-5.485000311849528482e-07,-5.592549337572067800e-07,-5.700098363294607117e-07,-5.807647389017146434e-07,-5.915196414739685752e-07,-6.022745440462225069e-07,-6.130294466184764387e-07,-6.237843491907303704e-07,-6.345392517629843022e-07,-6.452941543352382339e-07,-6.560490569074921656e-07,-6.668039594797460974e-07,-6.775588620520000291e-07 +0.000000000000000000e+00,-1.062082650448878549e-08,-2.124165300897757097e-08,-3.186247951346635811e-08,-4.248330601795514856e-08,-5.310413252244393901e-08,-6.372495902693272946e-08,-7.434578553142151991e-08,-8.496661203591031036e-08,-9.558743854039910081e-08,-1.062082650448878913e-07,-1.168290915493766817e-07,-1.274499180538654854e-07,-1.380707445583542891e-07,-1.486915710628430928e-07,-1.593123975673318965e-07,-1.699332240718207001e-07,-1.805540505763095038e-07,-1.911748770807983075e-07,-2.017957035852871112e-07,-2.124165300897759149e-07,-2.230373565942647186e-07,-2.336581830987535222e-07,-2.442790096032423259e-07,-2.548998361077311296e-07,-2.655206626122199333e-07,-2.761414891167087370e-07,-2.867623156211975407e-07,-2.973831421256863444e-07,-3.080039686301751480e-07,-3.186247951346639517e-07,-3.292456216391527554e-07,-3.398664481436415591e-07,-3.504872746481303628e-07,-3.611081011526191665e-07,-3.717289276571079701e-07,-3.823497541615967738e-07,-3.929705806660855775e-07,-4.035914071705743812e-07,-4.142122336750631849e-07,-4.248330601795519886e-07,-4.354538866840407923e-07,-4.460747131885295959e-07,-4.566955396930183996e-07,-4.673163661975072033e-07,-4.779371927019960599e-07,-4.885580192064849695e-07,-4.991788457109738791e-07,-5.097996722154627886e-07,-5.204204987199516982e-07,-5.310413252244406078e-07,-5.416621517289295173e-07,-5.522829782334184269e-07,-5.629038047379073364e-07,-5.735246312423962460e-07,-5.841454577468851556e-07,-5.947662842513740651e-07,-6.053871107558629747e-07,-6.160079372603518843e-07,-6.266287637648407938e-07,-6.372495902693297034e-07,-6.478704167738186130e-07,-6.584912432783075225e-07,-6.691120697827964321e-07 +0.000000000000000000e+00,-9.155951166619330256e-09,-1.831190233323866051e-08,-2.746785349985799242e-08,-3.662380466647732764e-08,-4.577975583309666286e-08,-5.493570699971599808e-08,-6.409165816633533330e-08,-7.324760933295466852e-08,-8.240356049957400374e-08,-9.155951166619333895e-08,-1.007154628328126742e-07,-1.098714139994320094e-07,-1.190273651660513446e-07,-1.281833163326706931e-07,-1.373392674992900548e-07,-1.464952186659094164e-07,-1.556511698325287781e-07,-1.648071209991481398e-07,-1.739630721657675015e-07,-1.831190233323868632e-07,-1.922749744990062249e-07,-2.014309256656255866e-07,-2.105868768322449483e-07,-2.197428279988643100e-07,-2.288987791654836716e-07,-2.380547303321030333e-07,-2.472106814987223950e-07,-2.563666326653417567e-07,-2.655225838319611184e-07,-2.746785349985804801e-07,-2.838344861651998418e-07,-2.929904373318192035e-07,-3.021463884984385652e-07,-3.113023396650579268e-07,-3.204582908316772885e-07,-3.296142419982966502e-07,-3.387701931649160119e-07,-3.479261443315353736e-07,-3.570820954981547353e-07,-3.662380466647740970e-07,-3.753939978313934587e-07,-3.845499489980128203e-07,-3.937059001646321820e-07,-4.028618513312515437e-07,-4.120178024978709054e-07,-4.211737536644902671e-07,-4.303297048311096288e-07,-4.394856559977289905e-07,-4.486416071643483522e-07,-4.577975583309677139e-07,-4.669535094975870755e-07,-4.761094606642064372e-07,-4.852654118308258519e-07,-4.944213629974453194e-07,-5.035773141640647870e-07,-5.127332653306842546e-07,-5.218892164973037221e-07,-5.310451676639231897e-07,-5.402011188305426573e-07,-5.493570699971621248e-07,-5.585130211637815924e-07,-5.676689723304010600e-07,-5.768249234970205275e-07 +0.000000000000000000e+00,-1.137515183148065416e-08,-2.275030366296130833e-08,-3.412545549444196249e-08,-4.550060732592261666e-08,-5.687575915740327082e-08,-6.825091098888392498e-08,-7.962606282036457915e-08,-9.100121465184523331e-08,-1.023763664833258875e-07,-1.137515183148065416e-07,-1.251266701462871958e-07,-1.365018219777678500e-07,-1.478769738092485041e-07,-1.592521256407291583e-07,-1.706272774722098125e-07,-1.820024293036904666e-07,-1.933775811351711208e-07,-2.047527329666517749e-07,-2.161278847981324291e-07,-2.275030366296130833e-07,-2.388781884610937374e-07,-2.502533402925743916e-07,-2.616284921240550458e-07,-2.730036439555356999e-07,-2.843787957870163541e-07,-2.957539476184970083e-07,-3.071290994499776624e-07,-3.185042512814583166e-07,-3.298794031129389708e-07,-3.412545549444196249e-07,-3.526297067759002791e-07,-3.640048586073809332e-07,-3.753800104388615874e-07,-3.867551622703422416e-07,-3.981303141018228957e-07,-4.095054659333035499e-07,-4.208806177647842041e-07,-4.322557695962648582e-07,-4.436309214277455124e-07,-4.550060732592261666e-07,-4.663812250907068207e-07,-4.777563769221874749e-07,-4.891315287536681290e-07,-5.005066805851487832e-07,-5.118818324166294374e-07,-5.232569842481100915e-07,-5.346321360795907457e-07,-5.460072879110713999e-07,-5.573824397425520540e-07,-5.687575915740327082e-07,-5.801327434055133624e-07,-5.915078952369940165e-07,-6.028830470684746707e-07,-6.142581988999553248e-07,-6.256333507314359790e-07,-6.370085025629166332e-07,-6.483836543943972873e-07,-6.597588062258779415e-07,-6.711339580573585957e-07,-6.825091098888392498e-07,-6.938842617203199040e-07,-7.052594135518005582e-07,-7.166345653832812123e-07 +0.000000000000000000e+00,-1.103351110919931819e-08,-2.206702221839863637e-08,-3.310053332759795291e-08,-4.413404443679726613e-08,-5.516755554599657935e-08,-6.620106665519589258e-08,-7.723457776439521242e-08,-8.826808887359453226e-08,-9.930159998279385210e-08,-1.103351110919931719e-07,-1.213686222011924918e-07,-1.324021333103918116e-07,-1.434356444195911315e-07,-1.544691555287904513e-07,-1.655026666379897711e-07,-1.765361777471890910e-07,-1.875696888563884108e-07,-1.986031999655877307e-07,-2.096367110747870505e-07,-2.206702221839863703e-07,-2.317037332931856902e-07,-2.427372444023850365e-07,-2.537707555115844093e-07,-2.648042666207837821e-07,-2.758377777299831548e-07,-2.868712888391825276e-07,-2.979047999483819004e-07,-3.089383110575812732e-07,-3.199718221667806460e-07,-3.310053332759800187e-07,-3.420388443851793915e-07,-3.530723554943787643e-07,-3.641058666035781371e-07,-3.751393777127775099e-07,-3.861728888219768826e-07,-3.972063999311762554e-07,-4.082399110403756282e-07,-4.192734221495750010e-07,-4.303069332587743738e-07,-4.413404443679737465e-07,-4.523739554771731193e-07,-4.634074665863724921e-07,-4.744409776955718649e-07,-4.854744888047712377e-07,-4.965079999139706104e-07,-5.075415110231699832e-07,-5.185750221323693560e-07,-5.296085332415687288e-07,-5.406420443507681016e-07,-5.516755554599674744e-07,-5.627090665691668471e-07,-5.737425776783662199e-07,-5.847760887875655927e-07,-5.958095998967649655e-07,-6.068431110059643383e-07,-6.178766221151637110e-07,-6.289101332243630838e-07,-6.399436443335624566e-07,-6.509771554427618294e-07,-6.620106665519612022e-07,-6.730441776611605749e-07,-6.840776887703599477e-07,-6.951111998795593205e-07 +0.000000000000000000e+00,-9.866881018571066735e-09,-1.973376203714213347e-08,-2.960064305571319855e-08,-3.946752407428426032e-08,-4.933440509285532210e-08,-5.920128611142638387e-08,-6.906816712999744564e-08,-7.893504814856850741e-08,-8.880192916713956918e-08,-9.866881018571063096e-08,-1.085356912042816927e-07,-1.184025722228527545e-07,-1.282694532414238163e-07,-1.381363342599948913e-07,-1.480032152785659663e-07,-1.578700962971370413e-07,-1.677369773157081163e-07,-1.776038583342791913e-07,-1.874707393528502663e-07,-1.973376203714213413e-07,-2.072045013899924163e-07,-2.170713824085634913e-07,-2.269382634271345663e-07,-2.368051444457056414e-07,-2.466720254642767164e-07,-2.565389064828477914e-07,-2.664057875014188664e-07,-2.762726685199899414e-07,-2.861395495385610164e-07,-2.960064305571320914e-07,-3.058733115757031664e-07,-3.157401925942742414e-07,-3.256070736128453164e-07,-3.354739546314163914e-07,-3.453408356499874664e-07,-3.552077166685585414e-07,-3.650745976871296164e-07,-3.749414787057006914e-07,-3.848083597242717665e-07,-3.946752407428428415e-07,-4.045421217614139165e-07,-4.144090027799849915e-07,-4.242758837985560665e-07,-4.341427648171271415e-07,-4.440096458356982165e-07,-4.538765268542692915e-07,-4.637434078728403665e-07,-4.736102888914114415e-07,-4.834771699099825165e-07,-4.933440509285536445e-07,-5.032109319471247724e-07,-5.130778129656959004e-07,-5.229446939842670283e-07,-5.328115750028381563e-07,-5.426784560214092842e-07,-5.525453370399804122e-07,-5.624122180585515401e-07,-5.722790990771226680e-07,-5.821459800956937960e-07,-5.920128611142649239e-07,-6.018797421328360519e-07,-6.117466231514071798e-07,-6.216135041699783078e-07 +0.000000000000000000e+00,-1.137515183147694178e-08,-2.275030366295388355e-08,-3.412545549443082533e-08,-4.550060732590776711e-08,-5.687575915738470889e-08,-6.825091098886165066e-08,-7.962606282033858582e-08,-9.100121465181552098e-08,-1.023763664832924561e-07,-1.137515183147693913e-07,-1.251266701462463265e-07,-1.365018219777232749e-07,-1.478769738092002233e-07,-1.592521256406771716e-07,-1.706272774721541200e-07,-1.820024293036310684e-07,-1.933775811351080168e-07,-2.047527329665849652e-07,-2.161278847980619136e-07,-2.275030366295388620e-07,-2.388781884610158104e-07,-2.502533402924927588e-07,-2.616284921239697072e-07,-2.730036439554466556e-07,-2.843787957869236040e-07,-2.957539476184005524e-07,-3.071290994498775008e-07,-3.185042512813544492e-07,-3.298794031128313976e-07,-3.412545549443083460e-07,-3.526297067757852944e-07,-3.640048586072622428e-07,-3.753800104387391911e-07,-3.867551622702161395e-07,-3.981303141016930879e-07,-4.095054659331700363e-07,-4.208806177646469847e-07,-4.322557695961239331e-07,-4.436309214276008815e-07,-4.550060732590778299e-07,-4.663812250905547783e-07,-4.777563769220317267e-07,-4.891315287535086751e-07,-5.005066805849856235e-07,-5.118818324164625719e-07,-5.232569842479395203e-07,-5.346321360794164687e-07,-5.460072879108934171e-07,-5.573824397423703655e-07,-5.687575915738473139e-07,-5.801327434053242622e-07,-5.915078952368012106e-07,-6.028830470682781590e-07,-6.142581988997551074e-07,-6.256333507312320558e-07,-6.370085025627090042e-07,-6.483836543941859526e-07,-6.597588062256629010e-07,-6.711339580571398494e-07,-6.825091098886167978e-07,-6.938842617200937462e-07,-7.052594135515706946e-07,-7.166345653830476430e-07 +0.000000000000000000e+00,-1.103351110919528155e-08,-2.206702221839056309e-08,-3.310053332758584298e-08,-4.413404443678111956e-08,-5.516755554597639614e-08,-6.620106665517167273e-08,-7.723457776436694269e-08,-8.826808887356221266e-08,-9.930159998275748262e-08,-1.103351110919527526e-07,-1.213686222011480225e-07,-1.324021333103432925e-07,-1.434356444195385625e-07,-1.544691555287338324e-07,-1.655026666379291024e-07,-1.765361777471243724e-07,-1.875696888563196423e-07,-1.986031999655149123e-07,-2.096367110747101823e-07,-2.206702221839054522e-07,-2.317037332931007222e-07,-2.427372444022959922e-07,-2.537707555114912357e-07,-2.648042666206864791e-07,-2.758377777298817226e-07,-2.868712888390769661e-07,-2.979047999482722096e-07,-3.089383110574674531e-07,-3.199718221666626966e-07,-3.310053332758579401e-07,-3.420388443850531836e-07,-3.530723554942484271e-07,-3.641058666034436706e-07,-3.751393777126389141e-07,-3.861728888218341576e-07,-3.972063999310294011e-07,-4.082399110402246446e-07,-4.192734221494198881e-07,-4.303069332586151316e-07,-4.413404443678103751e-07,-4.523739554770056186e-07,-4.634074665862008621e-07,-4.744409776953961056e-07,-4.854744888045913490e-07,-4.965079999137865925e-07,-5.075415110229818360e-07,-5.185750221321770795e-07,-5.296085332413723230e-07,-5.406420443505675665e-07,-5.516755554597628100e-07,-5.627090665689580535e-07,-5.737425776781532970e-07,-5.847760887873485405e-07,-5.958095998965437840e-07,-6.068431110057390275e-07,-6.178766221149342710e-07,-6.289101332241295145e-07,-6.399436443333247580e-07,-6.509771554425200015e-07,-6.620106665517152450e-07,-6.730441776609104885e-07,-6.840776887701057320e-07,-6.951111998793009754e-07 +0.000000000000000000e+00,-9.866881018567470154e-09,-1.973376203713494031e-08,-2.960064305570241212e-08,-3.946752407426988723e-08,-4.933440509283736235e-08,-5.920128611140483747e-08,-6.906816712997231258e-08,-7.893504814853978770e-08,-8.880192916710726282e-08,-9.866881018567473794e-08,-1.085356912042422131e-07,-1.184025722228096882e-07,-1.282694532413771765e-07,-1.381363342599446516e-07,-1.480032152785121268e-07,-1.578700962970796019e-07,-1.677369773156470770e-07,-1.776038583342145521e-07,-1.874707393527820272e-07,-1.973376203713495023e-07,-2.072045013899169775e-07,-2.170713824084844526e-07,-2.269382634270519277e-07,-2.368051444456194028e-07,-2.466720254641868779e-07,-2.565389064827543530e-07,-2.664057875013218282e-07,-2.762726685198893033e-07,-2.861395495384567784e-07,-2.960064305570242535e-07,-3.058733115755917286e-07,-3.157401925941592037e-07,-3.256070736127266789e-07,-3.354739546312941540e-07,-3.453408356498616291e-07,-3.552077166684291042e-07,-3.650745976869965793e-07,-3.749414787055640544e-07,-3.848083597241315296e-07,-3.946752407426990047e-07,-4.045421217612664798e-07,-4.144090027798339549e-07,-4.242758837984014300e-07,-4.341427648169689051e-07,-4.440096458355363803e-07,-4.538765268541038554e-07,-4.637434078726713305e-07,-4.736102888912388056e-07,-4.834771699098063337e-07,-4.933440509283738617e-07,-5.032109319469413898e-07,-5.130778129655089178e-07,-5.229446939840764459e-07,-5.328115750026439740e-07,-5.426784560212115020e-07,-5.525453370397790301e-07,-5.624122180583465581e-07,-5.722790990769140862e-07,-5.821459800954816142e-07,-5.920128611140491423e-07,-6.018797421326166704e-07,-6.117466231511841984e-07,-6.216135041697517265e-07 +0.000000000000000000e+00,-1.211222979656884323e-08,-2.422445959313768647e-08,-3.633668938970653136e-08,-4.844891918627537955e-08,-6.056114898284422775e-08,-7.267337877941307595e-08,-8.478560857598192414e-08,-9.689783837255077234e-08,-1.090100681691196205e-07,-1.211222979656884820e-07,-1.332345277622573302e-07,-1.453467575588261784e-07,-1.574589873553950266e-07,-1.695712171519638748e-07,-1.816834469485327230e-07,-1.937956767451015711e-07,-2.059079065416704193e-07,-2.180201363382392675e-07,-2.301323661348081157e-07,-2.422445959313769639e-07,-2.543568257279458121e-07,-2.664690555245146603e-07,-2.785812853210835085e-07,-2.906935151176523567e-07,-3.028057449142212049e-07,-3.149179747107900531e-07,-3.270302045073589013e-07,-3.391424343039277495e-07,-3.512546641004965977e-07,-3.633668938970654459e-07,-3.754791236936342941e-07,-3.875913534902031423e-07,-3.997035832867719905e-07,-4.118158130833408387e-07,-4.239280428799096869e-07,-4.360402726764785351e-07,-4.481525024730473833e-07,-4.602647322696162315e-07,-4.723769620661850797e-07,-4.844891918627539279e-07,-4.966014216593228290e-07,-5.087136514558917301e-07,-5.208258812524606313e-07,-5.329381110490295324e-07,-5.450503408455984336e-07,-5.571625706421673347e-07,-5.692748004387362358e-07,-5.813870302353051370e-07,-5.934992600318740381e-07,-6.056114898284429392e-07,-6.177237196250118404e-07,-6.298359494215807415e-07,-6.419481792181496426e-07,-6.540604090147185438e-07,-6.661726388112874449e-07,-6.782848686078563461e-07,-6.903970984044252472e-07,-7.025093282009941483e-07,-7.146215579975630495e-07,-7.267337877941319506e-07,-7.388460175907008517e-07,-7.509582473872697529e-07,-7.630704771838386540e-07 +0.000000000000000000e+00,-1.174338299728549697e-08,-2.348676599457099394e-08,-3.523014899185648925e-08,-4.697353198914198126e-08,-5.871691498642747326e-08,-7.046029798371296527e-08,-8.220368098099845066e-08,-9.394706397828393605e-08,-1.056904469755694214e-07,-1.174338299728549068e-07,-1.291772129701403922e-07,-1.409205959674258776e-07,-1.526639789647113630e-07,-1.644073619619968484e-07,-1.761507449592823338e-07,-1.878941279565678192e-07,-1.996375109538533045e-07,-2.113808939511387899e-07,-2.231242769484242753e-07,-2.348676599457097607e-07,-2.466110429429952461e-07,-2.583544259402807315e-07,-2.700978089375662169e-07,-2.818411919348517023e-07,-2.935845749321371877e-07,-3.053279579294226730e-07,-3.170713409267081584e-07,-3.288147239239936438e-07,-3.405581069212791292e-07,-3.523014899185646146e-07,-3.640448729158501000e-07,-3.757882559131355854e-07,-3.875316389104210708e-07,-3.992750219077065561e-07,-4.110184049049920415e-07,-4.227617879022775269e-07,-4.345051708995630123e-07,-4.462485538968484977e-07,-4.579919368941339831e-07,-4.697353198914194685e-07,-4.814787028887049539e-07,-4.932220858859904922e-07,-5.049654688832760305e-07,-5.167088518805615689e-07,-5.284522348778471072e-07,-5.401956178751326455e-07,-5.519390008724181838e-07,-5.636823838697037222e-07,-5.754257668669892605e-07,-5.871691498642747988e-07,-5.989125328615603371e-07,-6.106559158588458755e-07,-6.223992988561314138e-07,-6.341426818534169521e-07,-6.458860648507024905e-07,-6.576294478479880288e-07,-6.693728308452735671e-07,-6.811162138425591054e-07,-6.928595968398446438e-07,-7.046029798371301821e-07,-7.163463628344157204e-07,-7.280897458317012588e-07,-7.398331288289867971e-07 +0.000000000000000000e+00,-1.060781295214631914e-08,-2.121562590429263829e-08,-3.182343885643895743e-08,-4.243125180858527658e-08,-5.303906476073159572e-08,-6.364687771287791487e-08,-7.425469066502424063e-08,-8.486250361717056639e-08,-9.547031656931689215e-08,-1.060781295214632179e-07,-1.166859424736095437e-07,-1.272937554257558562e-07,-1.379015683779021687e-07,-1.485093813300484813e-07,-1.591171942821947938e-07,-1.697250072343411063e-07,-1.803328201864874188e-07,-1.909406331386337314e-07,-2.015484460907800439e-07,-2.121562590429263564e-07,-2.227640719950726690e-07,-2.333718849472189815e-07,-2.439796978993652940e-07,-2.545875108515116065e-07,-2.651953238036579191e-07,-2.758031367558042316e-07,-2.864109497079505441e-07,-2.970187626600968566e-07,-3.076265756122431692e-07,-3.182343885643894817e-07,-3.288422015165357942e-07,-3.394500144686821067e-07,-3.500578274208284193e-07,-3.606656403729747318e-07,-3.712734533251210443e-07,-3.818812662772673569e-07,-3.924890792294136694e-07,-4.030968921815599819e-07,-4.137047051337062944e-07,-4.243125180858526070e-07,-4.349203310379989195e-07,-4.455281439901452320e-07,-4.561359569422915445e-07,-4.667437698944378571e-07,-4.773515828465842225e-07,-4.879593957987305880e-07,-4.985672087508769535e-07,-5.091750217030233189e-07,-5.197828346551696844e-07,-5.303906476073160499e-07,-5.409984605594624153e-07,-5.516062735116087808e-07,-5.622140864637551463e-07,-5.728218994159015117e-07,-5.834297123680478772e-07,-5.940375253201942427e-07,-6.046453382723406081e-07,-6.152531512244869736e-07,-6.258609641766333391e-07,-6.364687771287797045e-07,-6.470765900809260700e-07,-6.576844030330724355e-07,-6.682922159852188009e-07 +0.000000000000000000e+00,-1.211222979656558414e-08,-2.422445959313116828e-08,-3.633668938969675077e-08,-4.844891918626232995e-08,-6.056114898282790913e-08,-7.267337877939348831e-08,-8.478560857595906749e-08,-9.689783837252464667e-08,-1.090100681690902258e-07,-1.211222979656558183e-07,-1.332345277622214107e-07,-1.453467575587870031e-07,-1.574589873553525955e-07,-1.695712171519181879e-07,-1.816834469484837803e-07,-1.937956767450493727e-07,-2.059079065416149652e-07,-2.180201363381805576e-07,-2.301323661347461500e-07,-2.422445959313117424e-07,-2.543568257278773613e-07,-2.664690555244429802e-07,-2.785812853210085991e-07,-2.906935151175742179e-07,-3.028057449141398368e-07,-3.149179747107054557e-07,-3.270302045072710746e-07,-3.391424343038366935e-07,-3.512546641004023124e-07,-3.633668938969679312e-07,-3.754791236935335501e-07,-3.875913534900991690e-07,-3.997035832866647879e-07,-4.118158130832304068e-07,-4.239280428797960257e-07,-4.360402726763616445e-07,-4.481525024729272634e-07,-4.602647322694928823e-07,-4.723769620660585012e-07,-4.844891918626241201e-07,-4.966014216591897390e-07,-5.087136514557553578e-07,-5.208258812523209767e-07,-5.329381110488865956e-07,-5.450503408454522145e-07,-5.571625706420178334e-07,-5.692748004385834523e-07,-5.813870302351490711e-07,-5.934992600317146900e-07,-6.056114898282803089e-07,-6.177237196248459278e-07,-6.298359494214115467e-07,-6.419481792179771656e-07,-6.540604090145427844e-07,-6.661726388111084033e-07,-6.782848686076740222e-07,-6.903970984042396411e-07,-7.025093282008052600e-07,-7.146215579973708789e-07,-7.267337877939364978e-07,-7.388460175905021166e-07,-7.509582473870677355e-07,-7.630704771836333544e-07 +0.000000000000000000e+00,-1.174338299728207244e-08,-2.348676599456414488e-08,-3.523014899184621898e-08,-4.697353198912829638e-08,-5.871691498641037379e-08,-7.046029798369245119e-08,-8.220368098097452198e-08,-9.394706397825659277e-08,-1.056904469755386636e-07,-1.174338299728207343e-07,-1.291772129701028051e-07,-1.409205959673848759e-07,-1.526639789646669467e-07,-1.644073619619490175e-07,-1.761507449592310883e-07,-1.878941279565131591e-07,-1.996375109537952298e-07,-2.113808939510773006e-07,-2.231242769483593714e-07,-2.348676599456414422e-07,-2.466110429429235130e-07,-2.583544259402056103e-07,-2.700978089374877075e-07,-2.818411919347698048e-07,-2.935845749320519020e-07,-3.053279579293339993e-07,-3.170713409266160965e-07,-3.288147239238981938e-07,-3.405581069211802910e-07,-3.523014899184623883e-07,-3.640448729157444856e-07,-3.757882559130265828e-07,-3.875316389103086801e-07,-3.992750219075907773e-07,-4.110184049048728746e-07,-4.227617879021549718e-07,-4.345051708994370691e-07,-4.462485538967191664e-07,-4.579919368940012636e-07,-4.697353198912833609e-07,-4.814787028885655111e-07,-4.932220858858476613e-07,-5.049654688831298115e-07,-5.167088518804119617e-07,-5.284522348776941119e-07,-5.401956178749762621e-07,-5.519390008722584122e-07,-5.636823838695405624e-07,-5.754257668668227126e-07,-5.871691498641048628e-07,-5.989125328613870130e-07,-6.106559158586691632e-07,-6.223992988559513134e-07,-6.341426818532334636e-07,-6.458860648505156138e-07,-6.576294478477977640e-07,-6.693728308450799142e-07,-6.811162138423620644e-07,-6.928595968396442146e-07,-7.046029798369263648e-07,-7.163463628342085150e-07,-7.280897458314906652e-07,-7.398331288287728154e-07 +0.000000000000000000e+00,-1.060781295214341409e-08,-2.121562590428682817e-08,-3.182343885643024226e-08,-4.243125180857365635e-08,-5.303906476071707043e-08,-6.364687771286048452e-08,-7.425469066500389860e-08,-8.486250361714731269e-08,-9.547031656929072678e-08,-1.060781295214341409e-07,-1.166859424735775549e-07,-1.272937554257209690e-07,-1.379015683778643699e-07,-1.485093813300077707e-07,-1.591171942821511716e-07,-1.697250072342945724e-07,-1.803328201864379733e-07,-1.909406331385813741e-07,-2.015484460907247750e-07,-2.121562590428681758e-07,-2.227640719950115767e-07,-2.333718849471549776e-07,-2.439796978992983784e-07,-2.545875108514417793e-07,-2.651953238035851801e-07,-2.758031367557285810e-07,-2.864109497078719818e-07,-2.970187626600153827e-07,-3.076265756121587835e-07,-3.182343885643021844e-07,-3.288422015164455852e-07,-3.394500144685889861e-07,-3.500578274207323869e-07,-3.606656403728757878e-07,-3.712734533250191886e-07,-3.818812662771625895e-07,-3.924890792293059903e-07,-4.030968921814493912e-07,-4.137047051335927920e-07,-4.243125180857361929e-07,-4.349203310378795937e-07,-4.455281439900229946e-07,-4.561359569421663954e-07,-4.667437698943097963e-07,-4.773515828464531442e-07,-4.879593957985964392e-07,-4.985672087507397341e-07,-5.091750217028830291e-07,-5.197828346550263241e-07,-5.303906476071696191e-07,-5.409984605593129140e-07,-5.516062735114562090e-07,-5.622140864635995040e-07,-5.728218994157427989e-07,-5.834297123678860939e-07,-5.940375253200293889e-07,-6.046453382721726839e-07,-6.152531512243159788e-07,-6.258609641764592738e-07,-6.364687771286025688e-07,-6.470765900807458638e-07,-6.576844030328891587e-07,-6.682922159850324537e-07 +0.000000000000000000e+00,-1.279910676130331829e-08,-2.559821352260663659e-08,-3.839732028390995157e-08,-5.119642704521326655e-08,-6.399553380651658154e-08,-7.679464056781990314e-08,-8.959374732912322474e-08,-1.023928540904265463e-07,-1.151919608517298679e-07,-1.279910676130331895e-07,-1.407901743743364979e-07,-1.535892811356398063e-07,-1.663883878969431146e-07,-1.791874946582464230e-07,-1.919866014195497314e-07,-2.047857081808530397e-07,-2.175848149421563481e-07,-2.303839217034596565e-07,-2.431830284647629648e-07,-2.559821352260662732e-07,-2.687812419873695816e-07,-2.815803487486728899e-07,-2.943794555099761983e-07,-3.071785622712795067e-07,-3.199776690325828150e-07,-3.327767757938861234e-07,-3.455758825551894318e-07,-3.583749893164927401e-07,-3.711740960777960485e-07,-3.839732028390993569e-07,-3.967723096004026652e-07,-4.095714163617059736e-07,-4.223705231230092820e-07,-4.351696298843125903e-07,-4.479687366456158987e-07,-4.607678434069192071e-07,-4.735669501682225154e-07,-4.863660569295258238e-07,-4.991651636908291322e-07,-5.119642704521324405e-07,-5.247633772134357489e-07,-5.375624839747390573e-07,-5.503615907360423656e-07,-5.631606974973456740e-07,-5.759598042586489824e-07,-5.887589110199522907e-07,-6.015580177812555991e-07,-6.143571245425589075e-07,-6.271562313038622158e-07,-6.399553380651655242e-07,-6.527544448264688326e-07,-6.655535515877721409e-07,-6.783526583490754493e-07,-6.911517651103787577e-07,-7.039508718716820660e-07,-7.167499786329853744e-07,-7.295490853942886828e-07,-7.423481921555919911e-07,-7.551472989168952995e-07,-7.679464056781986079e-07,-7.807455124395019162e-07,-7.935446192008052246e-07,-8.063437259621085330e-07 +0.000000000000000000e+00,-1.246702375667373142e-08,-2.493404751334746285e-08,-3.740107127002119758e-08,-4.986809502669493231e-08,-6.233511878336866705e-08,-7.480214254004239516e-08,-8.726916629671612328e-08,-9.973619005338985139e-08,-1.122032138100635795e-07,-1.246702375667373076e-07,-1.371372613234110357e-07,-1.496042850800847639e-07,-1.620713088367584920e-07,-1.745383325934322201e-07,-1.870053563501059482e-07,-1.994723801067796763e-07,-2.119394038634534044e-07,-2.244064276201271325e-07,-2.368734513768008607e-07,-2.493404751334745623e-07,-2.618074988901482639e-07,-2.742745226468219656e-07,-2.867415464034956672e-07,-2.992085701601693689e-07,-3.116755939168430705e-07,-3.241426176735167722e-07,-3.366096414301904738e-07,-3.490766651868641755e-07,-3.615436889435378771e-07,-3.740107127002115788e-07,-3.864777364568852804e-07,-3.989447602135589820e-07,-4.114117839702326837e-07,-4.238788077269063853e-07,-4.363458314835800870e-07,-4.488128552402537886e-07,-4.612798789969274903e-07,-4.737469027536011919e-07,-4.862139265102748936e-07,-4.986809502669485952e-07,-5.111479740236222969e-07,-5.236149977802959985e-07,-5.360820215369697001e-07,-5.485490452936434018e-07,-5.610160690503171034e-07,-5.734830928069908051e-07,-5.859501165636645067e-07,-5.984171403203382084e-07,-6.108841640770119100e-07,-6.233511878336856117e-07,-6.358182115903593133e-07,-6.482852353470330150e-07,-6.607522591037067166e-07,-6.732192828603804182e-07,-6.856863066170541199e-07,-6.981533303737278215e-07,-7.106203541304015232e-07,-7.230873778870752248e-07,-7.355544016437489265e-07,-7.480214254004226281e-07,-7.604884491570963298e-07,-7.729554729137700314e-07,-7.854224966704437331e-07 +0.000000000000000000e+00,-1.123528937485582923e-08,-2.247057874971165847e-08,-3.370586812456748605e-08,-4.494115749942331032e-08,-5.617644687427913459e-08,-6.741173624913495886e-08,-7.864702562399078975e-08,-8.988231499884662064e-08,-1.011176043737024515e-07,-1.123528937485582824e-07,-1.235881831234141133e-07,-1.348234724982699442e-07,-1.460587618731257751e-07,-1.572940512479816060e-07,-1.685293406228374369e-07,-1.797646299976932677e-07,-1.909999193725490986e-07,-2.022352087474049295e-07,-2.134704981222607604e-07,-2.247057874971165913e-07,-2.359410768719724222e-07,-2.471763662468282266e-07,-2.584116556216840310e-07,-2.696469449965398354e-07,-2.808822343713956399e-07,-2.921175237462514443e-07,-3.033528131211072487e-07,-3.145881024959630531e-07,-3.258233918708188575e-07,-3.370586812456746620e-07,-3.482939706205304664e-07,-3.595292599953862708e-07,-3.707645493702420752e-07,-3.819998387450978796e-07,-3.932351281199536841e-07,-4.044704174948094885e-07,-4.157057068696652929e-07,-4.269409962445210973e-07,-4.381762856193769017e-07,-4.494115749942327061e-07,-4.606468643690885106e-07,-4.718821537439443150e-07,-4.831174431188001194e-07,-4.943527324936559238e-07,-5.055880218685117282e-07,-5.168233112433675327e-07,-5.280586006182233371e-07,-5.392938899930791415e-07,-5.505291793679349459e-07,-5.617644687427907503e-07,-5.729997581176465548e-07,-5.842350474925023592e-07,-5.954703368673581636e-07,-6.067056262422139680e-07,-6.179409156170697724e-07,-6.291762049919255769e-07,-6.404114943667813813e-07,-6.516467837416371857e-07,-6.628820731164929901e-07,-6.741173624913487945e-07,-6.853526518662045989e-07,-6.965879412410604034e-07,-7.078232306159162078e-07 +0.000000000000000000e+00,-1.279910676130057867e-08,-2.559821352260115734e-08,-3.839732028390173270e-08,-5.119642704520230806e-08,-6.399553380650288343e-08,-7.679464056780346541e-08,-8.959374732910404738e-08,-1.023928540904046294e-07,-1.151919608517052113e-07,-1.279910676130057933e-07,-1.407901743743063753e-07,-1.535892811356069573e-07,-1.663883878969075393e-07,-1.791874946582081212e-07,-1.919866014195087032e-07,-2.047857081808092852e-07,-2.175848149421098672e-07,-2.303839217034104492e-07,-2.431830284647110311e-07,-2.559821352260116396e-07,-2.687812419873122480e-07,-2.815803487486128565e-07,-2.943794555099134649e-07,-3.071785622712140734e-07,-3.199776690325146818e-07,-3.327767757938152903e-07,-3.455758825551158987e-07,-3.583749893164165072e-07,-3.711740960777171156e-07,-3.839732028390177241e-07,-3.967723096003183325e-07,-4.095714163616189410e-07,-4.223705231229195494e-07,-4.351696298842201579e-07,-4.479687366455207663e-07,-4.607678434068213748e-07,-4.735669501681219832e-07,-4.863660569294225917e-07,-4.991651636907231472e-07,-5.119642704520237027e-07,-5.247633772133242582e-07,-5.375624839746248137e-07,-5.503615907359253692e-07,-5.631606974972259247e-07,-5.759598042585264802e-07,-5.887589110198270357e-07,-6.015580177811275912e-07,-6.143571245424281468e-07,-6.271562313037287023e-07,-6.399553380650292578e-07,-6.527544448263298133e-07,-6.655535515876303688e-07,-6.783526583489309243e-07,-6.911517651102314798e-07,-7.039508718715320353e-07,-7.167499786328325908e-07,-7.295490853941331463e-07,-7.423481921554337019e-07,-7.551472989167342574e-07,-7.679464056780348129e-07,-7.807455124393353684e-07,-7.935446192006359239e-07,-8.063437259619364794e-07 +0.000000000000000000e+00,-1.246702375667077177e-08,-2.493404751334154354e-08,-3.740107127001231697e-08,-4.986809502668309370e-08,-6.233511878335387044e-08,-7.480214254002464717e-08,-8.726916629669542391e-08,-9.973619005336620064e-08,-1.122032138100369774e-07,-1.246702375667077409e-07,-1.371372613233785044e-07,-1.496042850800492679e-07,-1.620713088367200314e-07,-1.745383325933907949e-07,-1.870053563500615584e-07,-1.994723801067323219e-07,-2.119394038634030854e-07,-2.244064276200738489e-07,-2.368734513767446124e-07,-2.493404751334153759e-07,-2.618074988900861129e-07,-2.742745226467568499e-07,-2.867415464034275870e-07,-2.992085701600983240e-07,-3.116755939167690610e-07,-3.241426176734397981e-07,-3.366096414301105351e-07,-3.490766651867812721e-07,-3.615436889434520091e-07,-3.740107127001227462e-07,-3.864777364567934832e-07,-3.989447602134642202e-07,-4.114117839701349573e-07,-4.238788077268056943e-07,-4.363458314834764313e-07,-4.488128552401471684e-07,-4.612798789968179054e-07,-4.737469027534886424e-07,-4.862139265101593794e-07,-4.986809502668301165e-07,-5.111479740235008535e-07,-5.236149977801715905e-07,-5.360820215368423276e-07,-5.485490452935130646e-07,-5.610160690501838016e-07,-5.734830928068545387e-07,-5.859501165635252757e-07,-5.984171403201960127e-07,-6.108841640768667497e-07,-6.233511878335374868e-07,-6.358182115902082238e-07,-6.482852353468789608e-07,-6.607522591035496979e-07,-6.732192828602204349e-07,-6.856863066168911719e-07,-6.981533303735619090e-07,-7.106203541302326460e-07,-7.230873778869033830e-07,-7.355544016435741200e-07,-7.480214254002448571e-07,-7.604884491569155941e-07,-7.729554729135863311e-07,-7.854224966702570682e-07 +0.000000000000000000e+00,-1.123528937485329806e-08,-2.247057874970659612e-08,-3.370586812455989584e-08,-4.494115749941319886e-08,-5.617644687426650189e-08,-6.741173624911980491e-08,-7.864702562397310794e-08,-8.988231499882641096e-08,-1.011176043736797140e-07,-1.123528937485330170e-07,-1.235881831233863200e-07,-1.348234724982396363e-07,-1.460587618730929526e-07,-1.572940512479462688e-07,-1.685293406227995851e-07,-1.797646299976529013e-07,-1.909999193725062176e-07,-2.022352087473595339e-07,-2.134704981222128501e-07,-2.247057874970661664e-07,-2.359410768719194826e-07,-2.471763662467727989e-07,-2.584116556216261152e-07,-2.696469449964794314e-07,-2.808822343713327477e-07,-2.921175237461860639e-07,-3.033528131210393802e-07,-3.145881024958926964e-07,-3.258233918707460127e-07,-3.370586812455993290e-07,-3.482939706204526452e-07,-3.595292599953059615e-07,-3.707645493701592777e-07,-3.819998387450125940e-07,-3.932351281198659103e-07,-4.044704174947192265e-07,-4.157057068695725428e-07,-4.269409962444258590e-07,-4.381762856192791753e-07,-4.494115749941324916e-07,-4.606468643689858078e-07,-4.718821537438391241e-07,-4.831174431186924403e-07,-4.943527324935457037e-07,-5.055880218683989670e-07,-5.168233112432522303e-07,-5.280586006181054936e-07,-5.392938899929587569e-07,-5.505291793678120203e-07,-5.617644687426652836e-07,-5.729997581175185469e-07,-5.842350474923718102e-07,-5.954703368672250735e-07,-6.067056262420783369e-07,-6.179409156169316002e-07,-6.291762049917848635e-07,-6.404114943666381268e-07,-6.516467837414913901e-07,-6.628820731163446535e-07,-6.741173624911979168e-07,-6.853526518660511801e-07,-6.965879412409044434e-07,-7.078232306157577067e-07 +0.000000000000000000e+00,-1.339512449218176528e-08,-2.679024898436353056e-08,-4.018537347654529750e-08,-5.358049796872706774e-08,-6.697562246090883136e-08,-8.037074695309059499e-08,-9.376587144527235862e-08,-1.071609959374541222e-07,-1.205561204296358859e-07,-1.339512449218176627e-07,-1.473463694139994396e-07,-1.607414939061812165e-07,-1.741366183983629933e-07,-1.875317428905447702e-07,-2.009268673827265470e-07,-2.143219918749083239e-07,-2.277171163670901008e-07,-2.411122408592718776e-07,-2.545073653514536545e-07,-2.679024898436354313e-07,-2.812976143358172082e-07,-2.946927388279989851e-07,-3.080878633201807619e-07,-3.214829878123625388e-07,-3.348781123045443156e-07,-3.482732367967260925e-07,-3.616683612889078694e-07,-3.750634857810896462e-07,-3.884586102732714231e-07,-4.018537347654531999e-07,-4.152488592576349768e-07,-4.286439837498167537e-07,-4.420391082419985305e-07,-4.554342327341803074e-07,-4.688293572263620842e-07,-4.822244817185438611e-07,-4.956196062107256380e-07,-5.090147307029074148e-07,-5.224098551950891917e-07,-5.358049796872709686e-07,-5.492001041794527454e-07,-5.625952286716345223e-07,-5.759903531638162991e-07,-5.893854776559980760e-07,-6.027806021481798529e-07,-6.161757266403616297e-07,-6.295708511325434066e-07,-6.429659756247251834e-07,-6.563611001169069603e-07,-6.697562246090887372e-07,-6.831513491012705140e-07,-6.965464735934522909e-07,-7.099415980856340677e-07,-7.233367225778158446e-07,-7.367318470699976215e-07,-7.501269715621793983e-07,-7.635220960543611752e-07,-7.769172205465429520e-07,-7.903123450387247289e-07,-8.037074695309065058e-07,-8.171025940230882826e-07,-8.304977185152700595e-07,-8.438928430074518363e-07 +0.000000000000000000e+00,-1.310706354115818777e-08,-2.621412708231637553e-08,-3.932119062347456164e-08,-5.242825416463274444e-08,-6.553531770579092725e-08,-7.864238124694911005e-08,-9.174944478810729285e-08,-1.048565083292654757e-07,-1.179635718704236585e-07,-1.310706354115818280e-07,-1.441776989527399844e-07,-1.572847624938981407e-07,-1.703918260350562970e-07,-1.834988895762144534e-07,-1.966059531173726097e-07,-2.097130166585307660e-07,-2.228200801996889224e-07,-2.359271437408470787e-07,-2.490342072820052350e-07,-2.621412708231633913e-07,-2.752483343643215477e-07,-2.883553979054797040e-07,-3.014624614466378603e-07,-3.145695249877960167e-07,-3.276765885289541730e-07,-3.407836520701123293e-07,-3.538907156112704857e-07,-3.669977791524286420e-07,-3.801048426935867983e-07,-3.932119062347449547e-07,-4.063189697759031110e-07,-4.194260333170612673e-07,-4.325330968582194237e-07,-4.456401603993775800e-07,-4.587472239405357363e-07,-4.718542874816938927e-07,-4.849613510228519961e-07,-4.980684145640101524e-07,-5.111754781051683087e-07,-5.242825416463264651e-07,-5.373896051874846214e-07,-5.504966687286427777e-07,-5.636037322698009341e-07,-5.767107958109590904e-07,-5.898178593521172467e-07,-6.029249228932754031e-07,-6.160319864344335594e-07,-6.291390499755917157e-07,-6.422461135167498721e-07,-6.553531770579080284e-07,-6.684602405990661847e-07,-6.815673041402243411e-07,-6.946743676813824974e-07,-7.077814312225406537e-07,-7.208884947636988100e-07,-7.339955583048569664e-07,-7.471026218460151227e-07,-7.602096853871732790e-07,-7.733167489283314354e-07,-7.864238124694895917e-07,-7.995308760106477480e-07,-8.126379395518059044e-07,-8.257450030929640607e-07 +0.000000000000000000e+00,-1.175557988562545014e-08,-2.351115977125090028e-08,-3.526673965687635373e-08,-4.702231954250180717e-08,-5.877789942812726062e-08,-7.053347931375270745e-08,-8.228905919937815428e-08,-9.404463908500360111e-08,-1.058002189706290479e-07,-1.175557988562544948e-07,-1.293113787418799548e-07,-1.410669586275054149e-07,-1.528225385131308750e-07,-1.645781183987563350e-07,-1.763336982843817951e-07,-1.880892781700072552e-07,-1.998448580556327152e-07,-2.116004379412581753e-07,-2.233560178268836354e-07,-2.351115977125090954e-07,-2.468671775981345555e-07,-2.586227574837600156e-07,-2.703783373693854756e-07,-2.821339172550109357e-07,-2.938894971406363958e-07,-3.056450770262618558e-07,-3.174006569118873159e-07,-3.291562367975127759e-07,-3.409118166831382360e-07,-3.526673965687636961e-07,-3.644229764543891561e-07,-3.761785563400146162e-07,-3.879341362256400763e-07,-3.996897161112655363e-07,-4.114452959968909964e-07,-4.232008758825164565e-07,-4.349564557681419165e-07,-4.467120356537673766e-07,-4.584676155393928367e-07,-4.702231954250182967e-07,-4.819787753106438097e-07,-4.937343551962693227e-07,-5.054899350818948357e-07,-5.172455149675203488e-07,-5.290010948531458618e-07,-5.407566747387713748e-07,-5.525122546243968878e-07,-5.642678345100224008e-07,-5.760234143956479138e-07,-5.877789942812734268e-07,-5.995345741668989398e-07,-6.112901540525244528e-07,-6.230457339381499658e-07,-6.348013138237754788e-07,-6.465568937094009918e-07,-6.583124735950265048e-07,-6.700680534806520178e-07,-6.818236333662775308e-07,-6.935792132519030438e-07,-7.053347931375285568e-07,-7.170903730231540698e-07,-7.288459529087795828e-07,-7.406015327944050958e-07 +0.000000000000000000e+00,-1.339512449217946737e-08,-2.679024898435893475e-08,-4.018537347653840212e-08,-5.358049796871786949e-08,-6.697562246089734348e-08,-8.037074695307681747e-08,-9.376587144525629146e-08,-1.071609959374357654e-07,-1.205561204296152394e-07,-1.339512449217947134e-07,-1.473463694139741874e-07,-1.607414939061536614e-07,-1.741366183983331354e-07,-1.875317428905126094e-07,-2.009268673826920834e-07,-2.143219918748715574e-07,-2.277171163670510314e-07,-2.411122408592304789e-07,-2.545073653514099264e-07,-2.679024898435893739e-07,-2.812976143357688214e-07,-2.946927388279482690e-07,-3.080878633201277165e-07,-3.214829878123071640e-07,-3.348781123044866115e-07,-3.482732367966660590e-07,-3.616683612888455066e-07,-3.750634857810249541e-07,-3.884586102732044016e-07,-4.018537347653838491e-07,-4.152488592575632966e-07,-4.286439837497427442e-07,-4.420391082419221917e-07,-4.554342327341016392e-07,-4.688293572262810867e-07,-4.822244817184605342e-07,-4.956196062106399818e-07,-5.090147307028194293e-07,-5.224098551949988768e-07,-5.358049796871783243e-07,-5.492001041793577718e-07,-5.625952286715372194e-07,-5.759903531637166669e-07,-5.893854776558961144e-07,-6.027806021480755619e-07,-6.161757266402550094e-07,-6.295708511324344570e-07,-6.429659756246139045e-07,-6.563611001167933520e-07,-6.697562246089727995e-07,-6.831513491011522470e-07,-6.965464735933316946e-07,-7.099415980855111421e-07,-7.233367225776905896e-07,-7.367318470698700371e-07,-7.501269715620494846e-07,-7.635220960542289322e-07,-7.769172205464083797e-07,-7.903123450385878272e-07,-8.037074695307672747e-07,-8.171025940229467222e-07,-8.304977185151261698e-07,-8.438928430073056173e-07 +0.000000000000000000e+00,-1.310706354115564998e-08,-2.621412708231129995e-08,-3.932119062346695158e-08,-5.242825416462260652e-08,-6.553531770577826146e-08,-7.864238124693391640e-08,-9.174944478808957133e-08,-1.048565083292452263e-07,-1.179635718704008812e-07,-1.310706354115565229e-07,-1.441776989527121646e-07,-1.572847624938678063e-07,-1.703918260350234480e-07,-1.834988895761790897e-07,-1.966059531173347314e-07,-2.097130166584903731e-07,-2.228200801996460148e-07,-2.359271437408016565e-07,-2.490342072819573247e-07,-2.621412708231129929e-07,-2.752483343642686611e-07,-2.883553979054243292e-07,-3.014624614465799974e-07,-3.145695249877356656e-07,-3.276765885288913338e-07,-3.407836520700470019e-07,-3.538907156112026701e-07,-3.669977791523583383e-07,-3.801048426935140064e-07,-3.932119062346696746e-07,-4.063189697758253428e-07,-4.194260333169810110e-07,-4.325330968581366791e-07,-4.456401603992923473e-07,-4.587472239404480155e-07,-4.718542874816036837e-07,-4.849613510227593518e-07,-4.980684145639150729e-07,-5.111754781050707941e-07,-5.242825416462265152e-07,-5.373896051873822363e-07,-5.504966687285379574e-07,-5.636037322696936785e-07,-5.767107958108493996e-07,-5.898178593520051207e-07,-6.029249228931608419e-07,-6.160319864343165630e-07,-6.291390499754722841e-07,-6.422461135166280052e-07,-6.553531770577837263e-07,-6.684602405989394474e-07,-6.815673041400951685e-07,-6.946743676812508896e-07,-7.077814312224066108e-07,-7.208884947635623319e-07,-7.339955583047180530e-07,-7.471026218458737741e-07,-7.602096853870294952e-07,-7.733167489281852163e-07,-7.864238124693409374e-07,-7.995308760104966585e-07,-8.126379395516523797e-07,-8.257450030928081008e-07 +0.000000000000000000e+00,-1.175557988562335075e-08,-2.351115977124670151e-08,-3.526673965687005392e-08,-4.702231954249340964e-08,-5.877789942811676535e-08,-7.053347931374012107e-08,-8.228905919936347679e-08,-9.404463908498683251e-08,-1.058002189706101882e-07,-1.175557988562335439e-07,-1.293113787418568997e-07,-1.410669586274802686e-07,-1.528225385131036376e-07,-1.645781183987270065e-07,-1.763336982843503755e-07,-1.880892781699737444e-07,-1.998448580555971134e-07,-2.116004379412204823e-07,-2.233560178268438513e-07,-2.351115977124672202e-07,-2.468671775980905627e-07,-2.586227574837139052e-07,-2.703783373693372477e-07,-2.821339172549605902e-07,-2.938894971405839327e-07,-3.056450770262072751e-07,-3.174006569118306176e-07,-3.291562367974539601e-07,-3.409118166830773026e-07,-3.526673965687006451e-07,-3.644229764543239875e-07,-3.761785563399473300e-07,-3.879341362255706725e-07,-3.996897161111940150e-07,-4.114452959968173575e-07,-4.232008758824407000e-07,-4.349564557680640424e-07,-4.467120356536873849e-07,-4.584676155393107274e-07,-4.702231954249340699e-07,-4.819787753105574124e-07,-4.937343551961807019e-07,-5.054899350818039915e-07,-5.172455149674272810e-07,-5.290010948530505706e-07,-5.407566747386738601e-07,-5.525122546242971496e-07,-5.642678345099204392e-07,-5.760234143955437287e-07,-5.877789942811670183e-07,-5.995345741667903078e-07,-6.112901540524135974e-07,-6.230457339380368869e-07,-6.348013138236601764e-07,-6.465568937092834660e-07,-6.583124735949067555e-07,-6.700680534805300451e-07,-6.818236333661533346e-07,-6.935792132517766242e-07,-7.053347931373999137e-07,-7.170903730230232032e-07,-7.288459529086464928e-07,-7.406015327942697823e-07 +0.000000000000000000e+00,-1.394370230541047429e-08,-2.788740461082094858e-08,-4.183110691623142286e-08,-5.577480922164189715e-08,-6.971851152705237144e-08,-8.366221383246284573e-08,-9.760591613787332002e-08,-1.115496184432837943e-07,-1.254933207486942686e-07,-1.394370230541047429e-07,-1.533807253595152172e-07,-1.673244276649256915e-07,-1.812681299703361657e-07,-1.952118322757466400e-07,-2.091555345811571143e-07,-2.230992368865675886e-07,-2.370429391919780629e-07,-2.509866414973885372e-07,-2.649303438027990379e-07,-2.788740461082095387e-07,-2.928177484136200395e-07,-3.067614507190305402e-07,-3.207051530244410410e-07,-3.346488553298515417e-07,-3.485925576352620425e-07,-3.625362599406725432e-07,-3.764799622460830440e-07,-3.904236645514935448e-07,-4.043673668569040455e-07,-4.183110691623145463e-07,-4.322547714677250470e-07,-4.461984737731355478e-07,-4.601421760785460485e-07,-4.740858783839565493e-07,-4.880295806893670501e-07,-5.019732829947776038e-07,-5.159169853001881575e-07,-5.298606876055987112e-07,-5.438043899110092649e-07,-5.577480922164198185e-07,-5.716917945218303722e-07,-5.856354968272409259e-07,-5.995791991326514796e-07,-6.135229014380620333e-07,-6.274666037434725870e-07,-6.414103060488831407e-07,-6.553540083542936944e-07,-6.692977106597042481e-07,-6.832414129651148018e-07,-6.971851152705253555e-07,-7.111288175759359092e-07,-7.250725198813464629e-07,-7.390162221867570166e-07,-7.529599244921675703e-07,-7.669036267975781240e-07,-7.808473291029886777e-07,-7.947910314083992314e-07,-8.087347337138097851e-07,-8.226784360192203388e-07,-8.366221383246308925e-07,-8.505658406300414462e-07,-8.645095429354519999e-07,-8.784532452408625536e-07 +0.000000000000000000e+00,-1.366965482340214072e-08,-2.733930964680428144e-08,-4.100896447020642051e-08,-5.467861929360855627e-08,-6.834827411701069202e-08,-8.201792894041282778e-08,-9.568758376381496354e-08,-1.093572385872170993e-07,-1.230268934106192483e-07,-1.366965482340214105e-07,-1.503662030574235727e-07,-1.640358578808257350e-07,-1.777055127042278972e-07,-1.913751675276300594e-07,-2.050448223510322217e-07,-2.187144771744343839e-07,-2.323841319978365461e-07,-2.460537868212387083e-07,-2.597234416446408706e-07,-2.733930964680430328e-07,-2.870627512914451950e-07,-3.007324061148473572e-07,-3.144020609382495195e-07,-3.280717157616516817e-07,-3.417413705850538439e-07,-3.554110254084560062e-07,-3.690806802318581684e-07,-3.827503350552603306e-07,-3.964199898786624928e-07,-4.100896447020646551e-07,-4.237592995254668173e-07,-4.374289543488689795e-07,-4.510986091722711418e-07,-4.647682639956733040e-07,-4.784379188190754133e-07,-4.921075736424775226e-07,-5.057772284658796318e-07,-5.194468832892817411e-07,-5.331165381126838504e-07,-5.467861929360859597e-07,-5.604558477594880690e-07,-5.741255025828901783e-07,-5.877951574062922876e-07,-6.014648122296943969e-07,-6.151344670530965061e-07,-6.288041218764986154e-07,-6.424737766999007247e-07,-6.561434315233028340e-07,-6.698130863467049433e-07,-6.834827411701070526e-07,-6.971523959935091619e-07,-7.108220508169112712e-07,-7.244917056403133805e-07,-7.381613604637154897e-07,-7.518310152871175990e-07,-7.655006701105197083e-07,-7.791703249339218176e-07,-7.928399797573239269e-07,-8.065096345807260362e-07,-8.201792894041281455e-07,-8.338489442275302548e-07,-8.475185990509323640e-07,-8.611882538743344733e-07 +0.000000000000000000e+00,-1.223701273382585848e-08,-2.447402546765171695e-08,-3.671103820147757543e-08,-4.894805093530343391e-08,-6.118506366912928577e-08,-7.342207640295513763e-08,-8.565908913678098949e-08,-9.789610187060684135e-08,-1.101331146044326932e-07,-1.223701273382585451e-07,-1.346071400720843969e-07,-1.468441528059102488e-07,-1.590811655397361006e-07,-1.713181782735619525e-07,-1.835551910073878044e-07,-1.957922037412136562e-07,-2.080292164750395081e-07,-2.202662292088653599e-07,-2.325032419426912118e-07,-2.447402546765170372e-07,-2.569772674103428361e-07,-2.692142801441686350e-07,-2.814512928779944339e-07,-2.936883056118202329e-07,-3.059253183456460318e-07,-3.181623310794718307e-07,-3.303993438132976296e-07,-3.426363565471234285e-07,-3.548733692809492275e-07,-3.671103820147750264e-07,-3.793473947486008253e-07,-3.915844074824266242e-07,-4.038214202162524231e-07,-4.160584329500782221e-07,-4.282954456839040210e-07,-4.405324584177298199e-07,-4.527694711515556188e-07,-4.650064838853814177e-07,-4.772434966192072167e-07,-4.894805093530330156e-07,-5.017175220868588145e-07,-5.139545348206846134e-07,-5.261915475545104123e-07,-5.384285602883362113e-07,-5.506655730221620102e-07,-5.629025857559878091e-07,-5.751395984898136080e-07,-5.873766112236394069e-07,-5.996136239574652059e-07,-6.118506366912910048e-07,-6.240876494251168037e-07,-6.363246621589426026e-07,-6.485616748927684015e-07,-6.607986876265942005e-07,-6.730357003604199994e-07,-6.852727130942457983e-07,-6.975097258280715972e-07,-7.097467385618973961e-07,-7.219837512957231951e-07,-7.342207640295489940e-07,-7.464577767633747929e-07,-7.586947894972005918e-07,-7.709318022310263907e-07 +0.000000000000000000e+00,-1.394370230540823759e-08,-2.788740461081647518e-08,-4.183110691622471277e-08,-5.577480922163295037e-08,-6.971851152704118796e-08,-8.366221383244942555e-08,-9.760591613785766314e-08,-1.115496184432659007e-07,-1.254933207486741251e-07,-1.394370230540823494e-07,-1.533807253594905738e-07,-1.673244276648987982e-07,-1.812681299703070225e-07,-1.952118322757152469e-07,-2.091555345811234712e-07,-2.230992368865316956e-07,-2.370429391919399199e-07,-2.509866414973481443e-07,-2.649303438027563687e-07,-2.788740461081645930e-07,-2.928177484135728174e-07,-3.067614507189810417e-07,-3.207051530243892661e-07,-3.346488553297974904e-07,-3.485925576352057148e-07,-3.625362599406139392e-07,-3.764799622460221635e-07,-3.904236645514303879e-07,-4.043673668568386122e-07,-4.183110691622468366e-07,-4.322547714676550609e-07,-4.461984737730632853e-07,-4.601421760784715096e-07,-4.740858783838797340e-07,-4.880295806892879584e-07,-5.019732829946961827e-07,-5.159169853001044071e-07,-5.298606876055126314e-07,-5.438043899109208558e-07,-5.577480922163290801e-07,-5.716917945217373045e-07,-5.856354968271455289e-07,-5.995791991325537532e-07,-6.135229014379619776e-07,-6.274666037433702019e-07,-6.414103060487784263e-07,-6.553540083541866506e-07,-6.692977106595948750e-07,-6.832414129650030994e-07,-6.971851152704113237e-07,-7.111288175758195481e-07,-7.250725198812277724e-07,-7.390162221866359968e-07,-7.529599244920442211e-07,-7.669036267974524455e-07,-7.808473291028606699e-07,-7.947910314082688942e-07,-8.087347337136771186e-07,-8.226784360190853429e-07,-8.366221383244935673e-07,-8.505658406299017916e-07,-8.645095429353100160e-07,-8.784532452407182403e-07 +0.000000000000000000e+00,-1.366965482339991230e-08,-2.733930964679982459e-08,-4.100896447019973689e-08,-5.467861929359964919e-08,-6.834827411699956148e-08,-8.201792894039947378e-08,-9.568758376379938607e-08,-1.093572385871992984e-07,-1.230268934105992107e-07,-1.366965482339991230e-07,-1.503662030573990353e-07,-1.640358578807989476e-07,-1.777055127041988599e-07,-1.913751675275987721e-07,-2.050448223509986844e-07,-2.187144771743985967e-07,-2.323841319977985090e-07,-2.460537868211984213e-07,-2.597234416445983601e-07,-2.733930964679982989e-07,-2.870627512913982376e-07,-3.007324061147981764e-07,-3.144020609381981152e-07,-3.280717157615980539e-07,-3.417413705849979927e-07,-3.554110254083979315e-07,-3.690806802317978702e-07,-3.827503350551978090e-07,-3.964199898785977478e-07,-4.100896447019976865e-07,-4.237592995253976253e-07,-4.374289543487975641e-07,-4.510986091721975028e-07,-4.647682639955974416e-07,-4.784379188189973804e-07,-4.921075736423973721e-07,-5.057772284657973638e-07,-5.194468832891973555e-07,-5.331165381125973472e-07,-5.467861929359973389e-07,-5.604558477593973306e-07,-5.741255025827973223e-07,-5.877951574061973140e-07,-6.014648122295973057e-07,-6.151344670529972974e-07,-6.288041218763972891e-07,-6.424737766997972808e-07,-6.561434315231972725e-07,-6.698130863465972642e-07,-6.834827411699972559e-07,-6.971523959933972476e-07,-7.108220508167972394e-07,-7.244917056401972311e-07,-7.381613604635972228e-07,-7.518310152869972145e-07,-7.655006701103972062e-07,-7.791703249337971979e-07,-7.928399797571971896e-07,-8.065096345805971813e-07,-8.201792894039971730e-07,-8.338489442273971647e-07,-8.475185990507971564e-07,-8.611882538741971481e-07 +0.000000000000000000e+00,-1.223701273382390964e-08,-2.447402546764781928e-08,-3.671103820147173223e-08,-4.894805093529564517e-08,-6.118506366911955812e-08,-7.342207640294346445e-08,-8.565908913676737078e-08,-9.789610187059127711e-08,-1.101331146044151834e-07,-1.223701273382390898e-07,-1.346071400720629829e-07,-1.468441528058868760e-07,-1.590811655397107691e-07,-1.713181782735346622e-07,-1.835551910073585553e-07,-1.957922037411824484e-07,-2.080292164750063414e-07,-2.202662292088302345e-07,-2.325032419426541276e-07,-2.447402546764780207e-07,-2.569772674103019138e-07,-2.692142801441258069e-07,-2.814512928779497000e-07,-2.936883056117735931e-07,-3.059253183455974862e-07,-3.181623310794213793e-07,-3.303993438132452724e-07,-3.426363565470691655e-07,-3.548733692808930586e-07,-3.671103820147169517e-07,-3.793473947485408448e-07,-3.915844074823647379e-07,-4.038214202161886310e-07,-4.160584329500125241e-07,-4.282954456838364172e-07,-4.405324584176603103e-07,-4.527694711514842034e-07,-4.650064838853080965e-07,-4.772434966191320425e-07,-4.894805093529559356e-07,-5.017175220867798287e-07,-5.139545348206037218e-07,-5.261915475544276149e-07,-5.384285602882515080e-07,-5.506655730220754011e-07,-5.629025857558992942e-07,-5.751395984897231873e-07,-5.873766112235470804e-07,-5.996136239573709734e-07,-6.118506366911948665e-07,-6.240876494250187596e-07,-6.363246621588426527e-07,-6.485616748926665458e-07,-6.607986876264904389e-07,-6.730357003603143320e-07,-6.852727130941382251e-07,-6.975097258279621182e-07,-7.097467385617860113e-07,-7.219837512956099044e-07,-7.342207640294337975e-07,-7.464577767632576906e-07,-7.586947894970815837e-07,-7.709318022309054768e-07 +0.000000000000000000e+00,-1.452586011209291956e-08,-2.905172022418583913e-08,-4.357758033627875704e-08,-5.810344044837167164e-08,-7.262930056046458624e-08,-8.715516067255750084e-08,-1.016810207846504154e-07,-1.162068808967433300e-07,-1.307327410088362446e-07,-1.452586011209291725e-07,-1.597844612330221003e-07,-1.743103213451150281e-07,-1.888361814572079560e-07,-2.033620415693008838e-07,-2.178879016813938117e-07,-2.324137617934867395e-07,-2.469396219055796673e-07,-2.614654820176725952e-07,-2.759913421297655230e-07,-2.905172022418584508e-07,-3.050430623539513787e-07,-3.195689224660443065e-07,-3.340947825781372343e-07,-3.486206426902301622e-07,-3.631465028023230900e-07,-3.776723629144160178e-07,-3.921982230265089457e-07,-4.067240831386018735e-07,-4.212499432506948013e-07,-4.357758033627877292e-07,-4.503016634748806570e-07,-4.648275235869735849e-07,-4.793533836990664597e-07,-4.938792438111593346e-07,-5.084051039232522095e-07,-5.229309640353450844e-07,-5.374568241474379593e-07,-5.519826842595308342e-07,-5.665085443716237091e-07,-5.810344044837165840e-07,-5.955602645958094589e-07,-6.100861247079023338e-07,-6.246119848199952087e-07,-6.391378449320880836e-07,-6.536637050441809585e-07,-6.681895651562738334e-07,-6.827154252683667083e-07,-6.972412853804595832e-07,-7.117671454925524581e-07,-7.262930056046453330e-07,-7.408188657167382079e-07,-7.553447258288310828e-07,-7.698705859409239577e-07,-7.843964460530168326e-07,-7.989223061651097075e-07,-8.134481662772025823e-07,-8.279740263892954572e-07,-8.424998865013883321e-07,-8.570257466134812070e-07,-8.715516067255740819e-07,-8.860774668376669568e-07,-9.006033269497598317e-07,-9.151291870618527066e-07 +0.000000000000000000e+00,-1.452871964817880115e-08,-2.905743929635760229e-08,-4.358615894453640013e-08,-5.811487859271519796e-08,-7.264359824089399580e-08,-8.717231788907280025e-08,-1.017010375372516047e-07,-1.162297571854304092e-07,-1.307584768336092136e-07,-1.452871964817880181e-07,-1.598159161299668225e-07,-1.743446357781456270e-07,-1.888733554263244314e-07,-2.034020750745032359e-07,-2.179307947226820403e-07,-2.324595143708608448e-07,-2.469882340190396228e-07,-2.615169536672183743e-07,-2.760456733153971258e-07,-2.905743929635758773e-07,-3.051031126117546288e-07,-3.196318322599333804e-07,-3.341605519081121319e-07,-3.486892715562908834e-07,-3.632179912044696349e-07,-3.777467108526483864e-07,-3.922754305008271379e-07,-4.068041501490058894e-07,-4.213328697971846410e-07,-4.358615894453633925e-07,-4.503903090935421440e-07,-4.649190287417208955e-07,-4.794477483898996470e-07,-4.939764680380783985e-07,-5.085051876862571500e-07,-5.230339073344359016e-07,-5.375626269826146531e-07,-5.520913466307934046e-07,-5.666200662789721561e-07,-5.811487859271509076e-07,-5.956775055753296591e-07,-6.102062252235084106e-07,-6.247349448716871622e-07,-6.392636645198659137e-07,-6.537923841680446652e-07,-6.683211038162234167e-07,-6.828498234644021682e-07,-6.973785431125809197e-07,-7.119072627607596712e-07,-7.264359824089384228e-07,-7.409647020571171743e-07,-7.554934217052959258e-07,-7.700221413534746773e-07,-7.845508610016534288e-07,-7.990795806498321803e-07,-8.136083002980109318e-07,-8.281370199461896834e-07,-8.426657395943684349e-07,-8.571944592425471864e-07,-8.717231788907259379e-07,-8.862518985389046894e-07,-9.007806181870834409e-07,-9.153093378352621924e-07 +0.000000000000000000e+00,-1.422573416965444490e-08,-2.845146833930888980e-08,-4.267720250896333470e-08,-5.690293667861777960e-08,-7.112867084827223112e-08,-8.535440501792668263e-08,-9.958013918758113415e-08,-1.138058733572355857e-07,-1.280316075268900372e-07,-1.422573416965444887e-07,-1.564830758661989402e-07,-1.707088100358533917e-07,-1.849345442055078433e-07,-1.991602783751622948e-07,-2.133860125448167463e-07,-2.276117467144711978e-07,-2.418374808841256493e-07,-2.560632150537800744e-07,-2.702889492234344994e-07,-2.845146833930889245e-07,-2.987404175627433495e-07,-3.129661517323977746e-07,-3.271918859020521996e-07,-3.414176200717066247e-07,-3.556433542413610497e-07,-3.698690884110154748e-07,-3.840948225806698998e-07,-3.983205567503243249e-07,-4.125462909199787499e-07,-4.267720250896331749e-07,-4.409977592592876000e-07,-4.552234934289420250e-07,-4.694492275985964501e-07,-4.836749617682508751e-07,-4.979006959379053002e-07,-5.121264301075597252e-07,-5.263521642772141503e-07,-5.405778984468685753e-07,-5.548036326165230004e-07,-5.690293667861774254e-07,-5.832551009558318505e-07,-5.974808351254862755e-07,-6.117065692951407006e-07,-6.259323034647951256e-07,-6.401580376344495507e-07,-6.543837718041039757e-07,-6.686095059737584008e-07,-6.828352401434128258e-07,-6.970609743130672509e-07,-7.112867084827216759e-07,-7.255124426523761009e-07,-7.397381768220305260e-07,-7.539639109916849510e-07,-7.681896451613393761e-07,-7.824153793309938011e-07,-7.966411135006482262e-07,-8.108668476703026512e-07,-8.250925818399570763e-07,-8.393183160096115013e-07,-8.535440501792659264e-07,-8.677697843489203514e-07,-8.819955185185747765e-07,-8.962212526882292015e-07 +0.000000000000000000e+00,-1.272469615680322607e-08,-2.544939231360645215e-08,-3.817408847040967657e-08,-5.089878462721289768e-08,-6.362348078401611217e-08,-7.634817694081932666e-08,-8.907287309762254116e-08,-1.017975692544257556e-07,-1.145222654112289701e-07,-1.272469615680321714e-07,-1.399716577248353727e-07,-1.526963538816385739e-07,-1.654210500384417752e-07,-1.781457461952449764e-07,-1.908704423520481777e-07,-2.035951385088513789e-07,-2.163198346656545802e-07,-2.290445308224577815e-07,-2.417692269792609563e-07,-2.544939231360641310e-07,-2.672186192928673058e-07,-2.799433154496704806e-07,-2.926680116064736554e-07,-3.053927077632768302e-07,-3.181174039200800050e-07,-3.308421000768831798e-07,-3.435667962336863546e-07,-3.562914923904895293e-07,-3.690161885472927041e-07,-3.817408847040958789e-07,-3.944655808608990537e-07,-4.071902770177022285e-07,-4.199149731745054033e-07,-4.326396693313085781e-07,-4.453643654881117529e-07,-4.580890616449149277e-07,-4.708137578017181024e-07,-4.835384539585212772e-07,-4.962631501153244520e-07,-5.089878462721276268e-07,-5.217125424289308016e-07,-5.344372385857339764e-07,-5.471619347425371512e-07,-5.598866308993403260e-07,-5.726113270561435007e-07,-5.853360232129466755e-07,-5.980607193697498503e-07,-6.107854155265530251e-07,-6.235101116833561999e-07,-6.362348078401593747e-07,-6.489595039969625495e-07,-6.616842001537657243e-07,-6.744088963105688991e-07,-6.871335924673720738e-07,-6.998582886241752486e-07,-7.125829847809784234e-07,-7.253076809377815982e-07,-7.380323770945847730e-07,-7.507570732513879478e-07,-7.634817694081911226e-07,-7.762064655649942974e-07,-7.889311617217974721e-07,-8.016558578786006469e-07 +0.000000000000000000e+00,-1.452814172474042118e-08,-2.905628344948084237e-08,-4.358442517422126520e-08,-5.811256689896169135e-08,-7.264070862370211750e-08,-8.716885034844254364e-08,-1.016969920731829698e-07,-1.162251337979233959e-07,-1.307532755226638221e-07,-1.452814172474042350e-07,-1.598095589721446479e-07,-1.743377006968850608e-07,-1.888658424216254737e-07,-2.033939841463658866e-07,-2.179221258711062996e-07,-2.324502675958467125e-07,-2.469784093205870989e-07,-2.615065510453274854e-07,-2.760346927700678718e-07,-2.905628344948082582e-07,-3.050909762195486447e-07,-3.196191179442890311e-07,-3.341472596690294176e-07,-3.486754013937698040e-07,-3.632035431185101904e-07,-3.777316848432505769e-07,-3.922598265679909633e-07,-4.067879682927313498e-07,-4.213161100174717362e-07,-4.358442517422121227e-07,-4.503723934669525091e-07,-4.649005351916928955e-07,-4.794286769164332820e-07,-4.939568186411736684e-07,-5.084849603659140549e-07,-5.230131020906544413e-07,-5.375412438153948277e-07,-5.520693855401352142e-07,-5.665975272648756006e-07,-5.811256689896159871e-07,-5.956538107143563735e-07,-6.101819524390967600e-07,-6.247100941638371464e-07,-6.392382358885775328e-07,-6.537663776133179193e-07,-6.682945193380583057e-07,-6.828226610627986922e-07,-6.973508027875390786e-07,-7.118789445122794651e-07,-7.264070862370198515e-07,-7.409352279617602379e-07,-7.554633696865006244e-07,-7.699915114112410108e-07,-7.845196531359813973e-07,-7.990477948607217837e-07,-8.135759365854621701e-07,-8.281040783102025566e-07,-8.426322200349429430e-07,-8.571603617596833295e-07,-8.716885034844237159e-07,-8.862166452091641024e-07,-9.007447869339044888e-07,-9.152729286586448752e-07 +0.000000000000000000e+00,-1.272444210047668827e-08,-2.544888420095337653e-08,-3.817332630143006645e-08,-5.089776840190675968e-08,-6.362221050238345291e-08,-7.634665260286014614e-08,-8.907109470333683937e-08,-1.017955368038135326e-07,-1.145199789042902258e-07,-1.272444210047669058e-07,-1.399688631052435858e-07,-1.526933052057202658e-07,-1.654177473061969458e-07,-1.781421894066736258e-07,-1.908666315071503058e-07,-2.035910736076269858e-07,-2.163155157081036658e-07,-2.290399578085803458e-07,-2.417643999090570258e-07,-2.544888420095337058e-07,-2.672132841100103858e-07,-2.799377262104870658e-07,-2.926621683109637458e-07,-3.053866104114404258e-07,-3.181110525119171058e-07,-3.308354946123937857e-07,-3.435599367128704657e-07,-3.562843788133471457e-07,-3.690088209138238257e-07,-3.817332630143005057e-07,-3.944577051147771857e-07,-4.071821472152538657e-07,-4.199065893157305457e-07,-4.326310314162072257e-07,-4.453554735166839057e-07,-4.580799156171605857e-07,-4.708043577176372657e-07,-4.835287998181139457e-07,-4.962532419185906257e-07,-5.089776840190673057e-07,-5.217021261195439857e-07,-5.344265682200206657e-07,-5.471510103204973457e-07,-5.598754524209740257e-07,-5.725998945214507056e-07,-5.853243366219273856e-07,-5.980487787224040656e-07,-6.107732208228807456e-07,-6.234976629233574256e-07,-6.362221050238341056e-07,-6.489465471243107856e-07,-6.616709892247874656e-07,-6.743954313252641456e-07,-6.871198734257408256e-07,-6.998443155262175056e-07,-7.125687576266941856e-07,-7.252931997271708656e-07,-7.380176418276475456e-07,-7.507420839281242256e-07,-7.634665260286009056e-07,-7.761909681290775856e-07,-7.889154102295542656e-07,-8.016398523300309456e-07 +0.000000000000000000e+00,-1.452586011209093598e-08,-2.905172022418187197e-08,-4.357758033627280795e-08,-5.810344044836374394e-08,-7.262930056045468654e-08,-8.715516067254562914e-08,-1.016810207846365717e-07,-1.162068808967275143e-07,-1.307327410088184569e-07,-1.452586011209093995e-07,-1.597844612330003422e-07,-1.743103213450912848e-07,-1.888361814571822274e-07,-2.033620415692731700e-07,-2.178879016813641126e-07,-2.324137617934550552e-07,-2.469396219055459978e-07,-2.614654820176369139e-07,-2.759913421297278300e-07,-2.905172022418187462e-07,-3.050430623539096623e-07,-3.195689224660005784e-07,-3.340947825780914946e-07,-3.486206426901824107e-07,-3.631465028022733268e-07,-3.776723629143642429e-07,-3.921982230264551591e-07,-4.067240831385460752e-07,-4.212499432506369913e-07,-4.357758033627279075e-07,-4.503016634748188236e-07,-4.648275235869097397e-07,-4.793533836990006029e-07,-4.938792438110914661e-07,-5.084051039231823293e-07,-5.229309640352731925e-07,-5.374568241473640557e-07,-5.519826842594549189e-07,-5.665085443715457821e-07,-5.810344044836366453e-07,-5.955602645957275085e-07,-6.100861247078183717e-07,-6.246119848199092349e-07,-6.391378449320000981e-07,-6.536637050440909612e-07,-6.681895651561818244e-07,-6.827154252682726876e-07,-6.972412853803635508e-07,-7.117671454924544140e-07,-7.262930056045452772e-07,-7.408188657166361404e-07,-7.553447258287270036e-07,-7.698705859408178668e-07,-7.843964460529087300e-07,-7.989223061649995932e-07,-8.134481662770904564e-07,-8.279740263891813196e-07,-8.424998865012721827e-07,-8.570257466133630459e-07,-8.715516067254539091e-07,-8.860774668375447723e-07,-9.006033269496356355e-07,-9.151291870617264987e-07 +0.000000000000000000e+00,-1.452814172473940541e-08,-2.905628344947881081e-08,-4.358442517421821456e-08,-5.811256689895761501e-08,-7.264070862369700883e-08,-8.716885034843640266e-08,-1.016969920731757965e-07,-1.162251337979151903e-07,-1.307532755226545841e-07,-1.452814172473939647e-07,-1.598095589721333453e-07,-1.743377006968727259e-07,-1.888658424216121065e-07,-2.033939841463514871e-07,-2.179221258710908677e-07,-2.324502675958302483e-07,-2.469784093205696289e-07,-2.615065510453090094e-07,-2.760346927700483900e-07,-2.905628344947877706e-07,-3.050909762195271512e-07,-3.196191179442665318e-07,-3.341472596690059124e-07,-3.486754013937452930e-07,-3.632035431184846736e-07,-3.777316848432240542e-07,-3.922598265679634348e-07,-4.067879682927028153e-07,-4.213161100174421959e-07,-4.358442517421815765e-07,-4.503723934669209571e-07,-4.649005351916603377e-07,-4.794286769163997183e-07,-4.939568186411390460e-07,-5.084849603658783736e-07,-5.230131020906177013e-07,-5.375412438153570289e-07,-5.520693855400963566e-07,-5.665975272648356842e-07,-5.811256689895750119e-07,-5.956538107143143395e-07,-6.101819524390536672e-07,-6.247100941637929948e-07,-6.392382358885323225e-07,-6.537663776132716501e-07,-6.682945193380109778e-07,-6.828226610627503054e-07,-6.973508027874896331e-07,-7.118789445122289607e-07,-7.264070862369682884e-07,-7.409352279617076160e-07,-7.554633696864469437e-07,-7.699915114111862713e-07,-7.845196531359255990e-07,-7.990477948606649266e-07,-8.135759365854042543e-07,-8.281040783101435819e-07,-8.426322200348829096e-07,-8.571603617596222372e-07,-8.716885034843615649e-07,-8.862166452091008925e-07,-9.007447869338402202e-07,-9.152729286585795478e-07 +0.000000000000000000e+00,-1.422573416965229919e-08,-2.845146833930459839e-08,-4.267720250895689593e-08,-5.690293667860919016e-08,-7.112867084826148439e-08,-8.535440501791377862e-08,-9.958013918756607285e-08,-1.138058733572183671e-07,-1.280316075268706613e-07,-1.422573416965229688e-07,-1.564830758661752762e-07,-1.707088100358275837e-07,-1.849345442054798912e-07,-1.991602783751321986e-07,-2.133860125447845061e-07,-2.276117467144368136e-07,-2.418374808840891210e-07,-2.560632150537414285e-07,-2.702889492233937360e-07,-2.845146833930460434e-07,-2.987404175626983509e-07,-3.129661517323506584e-07,-3.271918859020029658e-07,-3.414176200716552733e-07,-3.556433542413075808e-07,-3.698690884109598882e-07,-3.840948225806121957e-07,-3.983205567502645031e-07,-4.125462909199168106e-07,-4.267720250895691181e-07,-4.409977592592214255e-07,-4.552234934288737330e-07,-4.694492275985260405e-07,-4.836749617681783479e-07,-4.979006959378306554e-07,-5.121264301074829629e-07,-5.263521642771352703e-07,-5.405778984467875778e-07,-5.548036326164398853e-07,-5.690293667860921927e-07,-5.832551009557445002e-07,-5.974808351253968077e-07,-6.117065692950491151e-07,-6.259323034647014226e-07,-6.401580376343537301e-07,-6.543837718040060375e-07,-6.686095059736583450e-07,-6.828352401433106525e-07,-6.970609743129629599e-07,-7.112867084826152674e-07,-7.255124426522675749e-07,-7.397381768219198823e-07,-7.539639109915721898e-07,-7.681896451612244972e-07,-7.824153793308768047e-07,-7.966411135005291122e-07,-8.108668476701814196e-07,-8.250925818398337271e-07,-8.393183160094860346e-07,-8.535440501791383420e-07,-8.677697843487906495e-07,-8.819955185184429570e-07,-8.962212526880952644e-07 +0.000000000000000000e+00,-1.272469615680156179e-08,-2.544939231360312357e-08,-3.817408847040468701e-08,-5.089878462720625376e-08,-6.362348078400782713e-08,-7.634817694080940050e-08,-8.907287309761097386e-08,-1.017975692544125472e-07,-1.145222654112141206e-07,-1.272469615680157072e-07,-1.399716577248172938e-07,-1.526963538816188804e-07,-1.654210500384204670e-07,-1.781457461952220536e-07,-1.908704423520236402e-07,-2.035951385088252268e-07,-2.163198346656268134e-07,-2.290445308224284000e-07,-2.417692269792299866e-07,-2.544939231360315732e-07,-2.672186192928331598e-07,-2.799433154496347464e-07,-2.926680116064363330e-07,-3.053927077632379196e-07,-3.181174039200395062e-07,-3.308421000768410928e-07,-3.435667962336426794e-07,-3.562914923904442660e-07,-3.690161885472458526e-07,-3.817408847040474392e-07,-3.944655808608490258e-07,-4.071902770176506124e-07,-4.199149731744521990e-07,-4.326396693312537856e-07,-4.453643654880553722e-07,-4.580890616448569588e-07,-4.708137578016585454e-07,-4.835384539584600791e-07,-4.962631501152616657e-07,-5.089878462720632523e-07,-5.217125424288648389e-07,-5.344372385856664255e-07,-5.471619347424680121e-07,-5.598866308992695987e-07,-5.726113270560711853e-07,-5.853360232128727719e-07,-5.980607193696743585e-07,-6.107854155264759451e-07,-6.235101116832775317e-07,-6.362348078400791183e-07,-6.489595039968807049e-07,-6.616842001536822915e-07,-6.744088963104838781e-07,-6.871335924672854647e-07,-6.998582886240870513e-07,-7.125829847808886379e-07,-7.253076809376902245e-07,-7.380323770944918111e-07,-7.507570732512933977e-07,-7.634817694080949843e-07,-7.762064655648965709e-07,-7.889311617216981575e-07,-8.016558578784997441e-07 +0.000000000000000000e+00,-1.423028508271452810e-08,-2.846057016542905620e-08,-4.269085524814358098e-08,-5.692114033085810577e-08,-7.115142541357263056e-08,-8.538171049628716197e-08,-9.961199557900169338e-08,-1.138422806617162248e-07,-1.280725657444307562e-07,-1.423028508271452876e-07,-1.565331359098598190e-07,-1.707634209925743504e-07,-1.849937060752888818e-07,-1.992239911580034132e-07,-2.134542762407179446e-07,-2.276845613234324760e-07,-2.419148464061470339e-07,-2.561451314888615653e-07,-2.703754165715760967e-07,-2.846057016542906281e-07,-2.988359867370051595e-07,-3.130662718197196909e-07,-3.272965569024342223e-07,-3.415268419851487538e-07,-3.557571270678632852e-07,-3.699874121505778166e-07,-3.842176972332923480e-07,-3.984479823160068794e-07,-4.126782673987214108e-07,-4.269085524814359422e-07,-4.411388375641504736e-07,-4.553691226468650050e-07,-4.695994077295795364e-07,-4.838296928122940678e-07,-4.980599778950085992e-07,-5.122902629777231306e-07,-5.265205480604376620e-07,-5.407508331431521934e-07,-5.549811182258667249e-07,-5.692114033085812563e-07,-5.834416883912957877e-07,-5.976719734740103191e-07,-6.119022585567248505e-07,-6.261325436394393819e-07,-6.403628287221539133e-07,-6.545931138048684447e-07,-6.688233988875829761e-07,-6.830536839702975075e-07,-6.972839690530120389e-07,-7.115142541357265703e-07,-7.257445392184411017e-07,-7.399748243011556331e-07,-7.542051093838701645e-07,-7.684353944665846959e-07,-7.826656795492992274e-07,-7.968959646320137588e-07,-8.111262497147282902e-07,-8.253565347974428216e-07,-8.395868198801573530e-07,-8.538171049628718844e-07,-8.680473900455864158e-07,-8.822776751283009472e-07,-8.965079602110154786e-07 +0.000000000000000000e+00,-1.461728284830791384e-08,-2.923456569661582769e-08,-4.385184854492374318e-08,-5.846913139323166199e-08,-7.308641424153958741e-08,-8.770369708984751283e-08,-1.023209799381554383e-07,-1.169382627864633637e-07,-1.315555456347712891e-07,-1.461728284830792278e-07,-1.607901113313871664e-07,-1.754073941796951051e-07,-1.900246770280030437e-07,-2.046419598763109824e-07,-2.192592427246189211e-07,-2.338765255729268597e-07,-2.484938084212347984e-07,-2.631110912695427370e-07,-2.777283741178506757e-07,-2.923456569661586143e-07,-3.069629398144665530e-07,-3.215802226627744917e-07,-3.361975055110824303e-07,-3.508147883593903690e-07,-3.654320712076983076e-07,-3.800493540560062463e-07,-3.946666369043141850e-07,-4.092839197526221236e-07,-4.239012026009300623e-07,-4.385184854492380009e-07,-4.531357682975459396e-07,-4.677530511458538782e-07,-4.823703339941618169e-07,-4.969876168424698085e-07,-5.116048996907778001e-07,-5.262221825390857917e-07,-5.408394653873937833e-07,-5.554567482357017749e-07,-5.700740310840097665e-07,-5.846913139323177581e-07,-5.993085967806257497e-07,-6.139258796289337413e-07,-6.285431624772417329e-07,-6.431604453255497245e-07,-6.577777281738577161e-07,-6.723950110221657077e-07,-6.870122938704736993e-07,-7.016295767187816909e-07,-7.162468595670896825e-07,-7.308641424153976741e-07,-7.454814252637056657e-07,-7.600987081120136573e-07,-7.747159909603216489e-07,-7.893332738086296405e-07,-8.039505566569376320e-07,-8.185678395052456236e-07,-8.331851223535536152e-07,-8.478024052018616068e-07,-8.624196880501695984e-07,-8.770369708984775900e-07,-8.916542537467855816e-07,-9.062715365950935732e-07,-9.208888194434015648e-07 +0.000000000000000000e+00,-1.449929842614024953e-08,-2.899859685228049906e-08,-4.349789527842074860e-08,-5.799719370456099813e-08,-7.249649213070124766e-08,-8.699579055684149719e-08,-1.014950889829817467e-07,-1.159943874091219963e-07,-1.304936858352622326e-07,-1.449929842614024689e-07,-1.594922826875427051e-07,-1.739915811136829414e-07,-1.884908795398231777e-07,-2.029901779659634140e-07,-2.174894763921036503e-07,-2.319887748182438866e-07,-2.464880732443841229e-07,-2.609873716705243592e-07,-2.754866700966645955e-07,-2.899859685228048318e-07,-3.044852669489450681e-07,-3.189845653750853044e-07,-3.334838638012255407e-07,-3.479831622273657770e-07,-3.624824606535060133e-07,-3.769817590796462496e-07,-3.914810575057864859e-07,-4.059803559319267222e-07,-4.204796543580669585e-07,-4.349789527842071948e-07,-4.494782512103474311e-07,-4.639775496364876674e-07,-4.784768480626279566e-07,-4.929761464887682459e-07,-5.074754449149085351e-07,-5.219747433410488243e-07,-5.364740417671891136e-07,-5.509733401933294028e-07,-5.654726386194696920e-07,-5.799719370456099813e-07,-5.944712354717502705e-07,-6.089705338978905598e-07,-6.234698323240308490e-07,-6.379691307501711382e-07,-6.524684291763114275e-07,-6.669677276024517167e-07,-6.814670260285920059e-07,-6.959663244547322952e-07,-7.104656228808725844e-07,-7.249649213070128737e-07,-7.394642197331531629e-07,-7.539635181592934521e-07,-7.684628165854337414e-07,-7.829621150115740306e-07,-7.974614134377143198e-07,-8.119607118638546091e-07,-8.264600102899948983e-07,-8.409593087161351875e-07,-8.554586071422754768e-07,-8.699579055684157660e-07,-8.844572039945560553e-07,-8.989565024206963445e-07,-9.134558008468366337e-07 +0.000000000000000000e+00,-1.449621354611113176e-08,-2.899242709222226353e-08,-4.348864063833339694e-08,-5.798485418444453367e-08,-7.248106773055567701e-08,-8.697728127666682036e-08,-1.014734948227779637e-07,-1.159697083688891070e-07,-1.304659219150002504e-07,-1.449621354611114070e-07,-1.594583490072225635e-07,-1.739545625533337201e-07,-1.884507760994448767e-07,-2.029469896455560333e-07,-2.174432031916671899e-07,-2.319394167377783464e-07,-2.464356302838895030e-07,-2.609318438300006596e-07,-2.754280573761118162e-07,-2.899242709222229728e-07,-3.044204844683341293e-07,-3.189166980144452859e-07,-3.334129115605564425e-07,-3.479091251066675991e-07,-3.624053386527787556e-07,-3.769015521988899122e-07,-3.913977657450010688e-07,-4.058939792911122254e-07,-4.203901928372233820e-07,-4.348864063833345385e-07,-4.493826199294456951e-07,-4.638788334755568517e-07,-4.783750470216680083e-07,-4.928712605677792178e-07,-5.073674741138904273e-07,-5.218636876600016368e-07,-5.363599012061128463e-07,-5.508561147522240559e-07,-5.653523282983352654e-07,-5.798485418444464749e-07,-5.943447553905576844e-07,-6.088409689366688939e-07,-6.233371824827801035e-07,-6.378333960288913130e-07,-6.523296095750025225e-07,-6.668258231211137320e-07,-6.813220366672249415e-07,-6.958182502133361510e-07,-7.103144637594473606e-07,-7.248106773055585701e-07,-7.393068908516697796e-07,-7.538031043977809891e-07,-7.682993179438921986e-07,-7.827955314900034082e-07,-7.972917450361146177e-07,-8.117879585822258272e-07,-8.262841721283370367e-07,-8.407803856744482462e-07,-8.552765992205594557e-07,-8.697728127666706653e-07,-8.842690263127818748e-07,-8.987652398588930843e-07,-9.132614534050042938e-07 +0.000000000000000000e+00,-1.386229091982929647e-08,-2.772458183965859294e-08,-4.158687275948788940e-08,-5.544916367931718587e-08,-6.931145459914648896e-08,-8.317374551897579204e-08,-9.703603643880509513e-08,-1.108983273586343982e-07,-1.247606182784637013e-07,-1.386229091982930044e-07,-1.524852001181223075e-07,-1.663474910379516106e-07,-1.802097819577809136e-07,-1.940720728776102167e-07,-2.079343637974395198e-07,-2.217966547172688229e-07,-2.356589456370981260e-07,-2.495212365569274026e-07,-2.633835274767566792e-07,-2.772458183965859558e-07,-2.911081093164152324e-07,-3.049704002362445091e-07,-3.188326911560737857e-07,-3.326949820759030623e-07,-3.465572729957323389e-07,-3.604195639155616155e-07,-3.742818548353908921e-07,-3.881441457552201687e-07,-4.020064366750494454e-07,-4.158687275948787220e-07,-4.297310185147079986e-07,-4.435933094345372752e-07,-4.574556003543665518e-07,-4.713178912741958284e-07,-4.851801821940251051e-07,-4.990424731138543817e-07,-5.129047640336836583e-07,-5.267670549535129349e-07,-5.406293458733422115e-07,-5.544916367931714881e-07,-5.683539277130007647e-07,-5.822162186328300414e-07,-5.960785095526593180e-07,-6.099408004724885946e-07,-6.238030913923178712e-07,-6.376653823121471478e-07,-6.515276732319764244e-07,-6.653899641518057011e-07,-6.792522550716349777e-07,-6.931145459914642543e-07,-7.069768369112935309e-07,-7.208391278311228075e-07,-7.347014187509520841e-07,-7.485637096707813607e-07,-7.624260005906106374e-07,-7.762882915104399140e-07,-7.901505824302691906e-07,-8.040128733500984672e-07,-8.178751642699277438e-07,-8.317374551897570204e-07,-8.455997461095862971e-07,-8.594620370294155737e-07,-8.733243279492448503e-07 +0.000000000000000000e+00,-1.251121813966648711e-08,-2.502243627933297423e-08,-3.753365441899945803e-08,-5.004487255866594184e-08,-6.255609069833242564e-08,-7.506730883799891606e-08,-8.757852697766540648e-08,-1.000897451173318969e-07,-1.126009632569983873e-07,-1.251121813966648778e-07,-1.376233995363313682e-07,-1.501346176759978586e-07,-1.626458358156643490e-07,-1.751570539553308394e-07,-1.876682720949973299e-07,-2.001794902346638203e-07,-2.126907083743303107e-07,-2.252019265139968011e-07,-2.377131446536632915e-07,-2.502243627933298084e-07,-2.627355809329963518e-07,-2.752467990726628952e-07,-2.877580172123294385e-07,-3.002692353519959819e-07,-3.127804534916625252e-07,-3.252916716313290686e-07,-3.378028897709956120e-07,-3.503141079106621553e-07,-3.628253260503286987e-07,-3.753365441899952421e-07,-3.878477623296617854e-07,-4.003589804693283288e-07,-4.128701986089948721e-07,-4.253814167486614155e-07,-4.378926348883279589e-07,-4.504038530279945022e-07,-4.629150711676610456e-07,-4.754262893073275889e-07,-4.879375074469941323e-07,-5.004487255866606757e-07,-5.129599437263272190e-07,-5.254711618659937624e-07,-5.379823800056603058e-07,-5.504935981453268491e-07,-5.630048162849933925e-07,-5.755160344246599358e-07,-5.880272525643264792e-07,-6.005384707039930226e-07,-6.130496888436595659e-07,-6.255609069833261093e-07,-6.380721251229926526e-07,-6.505833432626591960e-07,-6.630945614023257394e-07,-6.756057795419922827e-07,-6.881169976816588261e-07,-7.006282158213253695e-07,-7.131394339609919128e-07,-7.256506521006584562e-07,-7.381618702403249995e-07,-7.506730883799915429e-07,-7.631843065196580863e-07,-7.756955246593246296e-07,-7.882067427989911730e-07 +0.000000000000000000e+00,-1.452979731438006675e-08,-2.905959462876013349e-08,-4.358939194314020024e-08,-5.811918925752026698e-08,-7.264898657190033373e-08,-8.717878388628040048e-08,-1.017085812006604672e-07,-1.162383785150405340e-07,-1.307681758294205875e-07,-1.452979731438006410e-07,-1.598277704581806945e-07,-1.743575677725607480e-07,-1.888873650869408015e-07,-2.034171624013208550e-07,-2.179469597157009085e-07,-2.324767570300809621e-07,-2.470065543444610156e-07,-2.615363516588410691e-07,-2.760661489732211226e-07,-2.905959462876011761e-07,-3.051257436019812296e-07,-3.196555409163612831e-07,-3.341853382307413366e-07,-3.487151355451213901e-07,-3.632449328595014437e-07,-3.777747301738814972e-07,-3.923045274882615507e-07,-4.068343248026416042e-07,-4.213641221170216577e-07,-4.358939194314017112e-07,-4.504237167457817647e-07,-4.649535140601618182e-07,-4.794833113745418188e-07,-4.940131086889218194e-07,-5.085429060033018199e-07,-5.230727033176818205e-07,-5.376025006320618211e-07,-5.521322979464418217e-07,-5.666620952608218222e-07,-5.811918925752018228e-07,-5.957216898895818234e-07,-6.102514872039618239e-07,-6.247812845183418245e-07,-6.393110818327218251e-07,-6.538408791471018257e-07,-6.683706764614818262e-07,-6.829004737758618268e-07,-6.974302710902418274e-07,-7.119600684046218279e-07,-7.264898657190018285e-07,-7.410196630333818291e-07,-7.555494603477618297e-07,-7.700792576621418302e-07,-7.846090549765218308e-07,-7.991388522909018314e-07,-8.136686496052818319e-07,-8.281984469196618325e-07,-8.427282442340418331e-07,-8.572580415484218337e-07,-8.717878388628018342e-07,-8.863176361771818348e-07,-9.008474334915618354e-07,-9.153772308059418359e-07 +0.000000000000000000e+00,-1.381387132738554215e-08,-2.762774265477108429e-08,-4.144161398215662644e-08,-5.525548530954216858e-08,-6.906935663692771073e-08,-8.288322796431325287e-08,-9.669709929169879502e-08,-1.105109706190843372e-07,-1.243248419464698793e-07,-1.381387132738554215e-07,-1.519525846012409636e-07,-1.657664559286265057e-07,-1.795803272560120479e-07,-1.933941985833975900e-07,-2.072080699107831322e-07,-2.210219412381686743e-07,-2.348358125655542165e-07,-2.486496838929397586e-07,-2.624635552203253008e-07,-2.762774265477108429e-07,-2.900912978750963850e-07,-3.039051692024819272e-07,-3.177190405298674693e-07,-3.315329118572530115e-07,-3.453467831846385536e-07,-3.591606545120240958e-07,-3.729745258394096379e-07,-3.867883971667951801e-07,-4.006022684941807222e-07,-4.144161398215662644e-07,-4.282300111489518065e-07,-4.420438824763373486e-07,-4.558577538037228908e-07,-4.696716251311084329e-07,-4.834854964584939751e-07,-4.972993677858795172e-07,-5.111132391132650594e-07,-5.249271104406506015e-07,-5.387409817680361437e-07,-5.525548530954216858e-07,-5.663687244228072280e-07,-5.801825957501927701e-07,-5.939964670775783122e-07,-6.078103384049638544e-07,-6.216242097323493965e-07,-6.354380810597349387e-07,-6.492519523871204808e-07,-6.630658237145060230e-07,-6.768796950418915651e-07,-6.906935663692771073e-07,-7.045074376966626494e-07,-7.183213090240481915e-07,-7.321351803514337337e-07,-7.459490516788192758e-07,-7.597629230062048180e-07,-7.735767943335903601e-07,-7.873906656609759023e-07,-8.012045369883614444e-07,-8.150184083157469866e-07,-8.288322796431325287e-07,-8.426461509705180709e-07,-8.564600222979036130e-07,-8.702738936252891551e-07 +0.000000000000000000e+00,-1.423028508270971887e-08,-2.846057016541943774e-08,-4.269085524812915495e-08,-5.692114033083886886e-08,-7.115142541354858277e-08,-8.538171049625829667e-08,-9.961199557896801058e-08,-1.138422806616777245e-07,-1.280725657443874252e-07,-1.423028508270971391e-07,-1.565331359098068530e-07,-1.707634209925165669e-07,-1.849937060752262808e-07,-1.992239911579359947e-07,-2.134542762406457086e-07,-2.276845613233554225e-07,-2.419148464060651364e-07,-2.561451314887748503e-07,-2.703754165714845642e-07,-2.846057016541942781e-07,-2.988359867369039920e-07,-3.130662718196137059e-07,-3.272965569023234199e-07,-3.415268419850331338e-07,-3.557571270677428477e-07,-3.699874121504525616e-07,-3.842176972331622755e-07,-3.984479823158719894e-07,-4.126782673985817033e-07,-4.269085524812914172e-07,-4.411388375640011311e-07,-4.553691226467108450e-07,-4.695994077294205589e-07,-4.838296928121302728e-07,-4.980599778948400397e-07,-5.122902629775498065e-07,-5.265205480602595734e-07,-5.407508331429693402e-07,-5.549811182256791071e-07,-5.692114033083888739e-07,-5.834416883910986407e-07,-5.976719734738084076e-07,-6.119022585565181744e-07,-6.261325436392279413e-07,-6.403628287219377081e-07,-6.545931138046474750e-07,-6.688233988873572418e-07,-6.830536839700670087e-07,-6.972839690527767755e-07,-7.115142541354865424e-07,-7.257445392181963092e-07,-7.399748243009060761e-07,-7.542051093836158429e-07,-7.684353944663256097e-07,-7.826656795490353766e-07,-7.968959646317451434e-07,-8.111262497144549103e-07,-8.253565347971646771e-07,-8.395868198798744440e-07,-8.538171049625842108e-07,-8.680473900452939777e-07,-8.822776751280037445e-07,-8.965079602107135114e-07 +0.000000000000000000e+00,-1.461728284830344707e-08,-2.923456569660689413e-08,-4.385184854491034286e-08,-5.846913139321379489e-08,-7.308641424151724692e-08,-8.770369708982069895e-08,-1.023209799381241510e-07,-1.169382627864276030e-07,-1.315555456347310550e-07,-1.461728284830344938e-07,-1.607901113313379326e-07,-1.754073941796413714e-07,-1.900246770279448102e-07,-2.046419598762482490e-07,-2.192592427245516878e-07,-2.338765255728551266e-07,-2.484938084211585654e-07,-2.631110912694620042e-07,-2.777283741177654430e-07,-2.923456569660688818e-07,-3.069629398143723206e-07,-3.215802226626757594e-07,-3.361975055109791982e-07,-3.508147883592826370e-07,-3.654320712075860758e-07,-3.800493540558895146e-07,-3.946666369041929534e-07,-4.092839197524963922e-07,-4.239012026007998310e-07,-4.385184854491032697e-07,-4.531357682974067085e-07,-4.677530511457101473e-07,-4.823703339940135861e-07,-4.969876168423170249e-07,-5.116048996906204637e-07,-5.262221825389239025e-07,-5.408394653872273413e-07,-5.554567482355307801e-07,-5.700740310838342189e-07,-5.846913139321376577e-07,-5.993085967804410965e-07,-6.139258796287445353e-07,-6.285431624770479741e-07,-6.431604453253514129e-07,-6.577777281736548517e-07,-6.723950110219582905e-07,-6.870122938702617293e-07,-7.016295767185651681e-07,-7.162468595668686069e-07,-7.308641424151720457e-07,-7.454814252634754845e-07,-7.600987081117789233e-07,-7.747159909600823620e-07,-7.893332738083858008e-07,-8.039505566566892396e-07,-8.185678395049926784e-07,-8.331851223532961172e-07,-8.478024052015995560e-07,-8.624196880499029948e-07,-8.770369708982064336e-07,-8.916542537465098724e-07,-9.062715365948133112e-07,-9.208888194431167500e-07 +0.000000000000000000e+00,-1.452979731437783501e-08,-2.905959462875567003e-08,-4.358939194313350338e-08,-5.811918925751133343e-08,-7.264898657188916348e-08,-8.717878388626699353e-08,-1.017085812006448236e-07,-1.162383785150226536e-07,-1.307681758294004704e-07,-1.452979731437783005e-07,-1.598277704581561305e-07,-1.743575677725339606e-07,-1.888873650869117906e-07,-2.034171624012896207e-07,-2.179469597156674507e-07,-2.324767570300452808e-07,-2.470065543444231108e-07,-2.615363516588009409e-07,-2.760661489731787709e-07,-2.905959462875566010e-07,-3.051257436019344310e-07,-3.196555409163122611e-07,-3.341853382306900911e-07,-3.487151355450679212e-07,-3.632449328594457512e-07,-3.777747301738235813e-07,-3.923045274882014113e-07,-4.068343248025792414e-07,-4.213641221169570714e-07,-4.358939194313349015e-07,-4.504237167457127315e-07,-4.649535140600905616e-07,-4.794833113744683387e-07,-4.940131086888461158e-07,-5.085429060032238929e-07,-5.230727033176016700e-07,-5.376025006319794471e-07,-5.521322979463572242e-07,-5.666620952607350014e-07,-5.811918925751127785e-07,-5.957216898894905556e-07,-6.102514872038683327e-07,-6.247812845182461098e-07,-6.393110818326238869e-07,-6.538408791470016640e-07,-6.683706764613794411e-07,-6.829004737757572182e-07,-6.974302710901349953e-07,-7.119600684045127725e-07,-7.264898657188905496e-07,-7.410196630332683267e-07,-7.555494603476461038e-07,-7.700792576620238809e-07,-7.846090549764016580e-07,-7.991388522907794351e-07,-8.136686496051572122e-07,-8.281984469195349893e-07,-8.427282442339127664e-07,-8.572580415482905436e-07,-8.717878388626683207e-07,-8.863176361770460978e-07,-9.008474334914238749e-07,-9.153772308058016520e-07 +0.000000000000000000e+00,-1.449621354610637547e-08,-2.899242709221275095e-08,-4.348864063831912312e-08,-5.798485418442549528e-08,-7.248106773053186745e-08,-8.697728127663824623e-08,-1.014734948227446250e-07,-1.159697083688510038e-07,-1.304659219149573693e-07,-1.449621354610637349e-07,-1.594583490071701004e-07,-1.739545625532764660e-07,-1.884507760993828315e-07,-2.029469896454891971e-07,-2.174432031915955626e-07,-2.319394167377019282e-07,-2.464356302838082937e-07,-2.609318438299146328e-07,-2.754280573760209719e-07,-2.899242709221273110e-07,-3.044204844682336500e-07,-3.189166980143399891e-07,-3.334129115604463282e-07,-3.479091251065526673e-07,-3.624053386526590064e-07,-3.769015521987653454e-07,-3.913977657448716845e-07,-4.058939792909780236e-07,-4.203901928370843627e-07,-4.348864063831907018e-07,-4.493826199292970408e-07,-4.638788334754033799e-07,-4.783750470215097190e-07,-4.928712605676160581e-07,-5.073674741137223971e-07,-5.218636876598287362e-07,-5.363599012059350753e-07,-5.508561147520414144e-07,-5.653523282981477535e-07,-5.798485418442540925e-07,-5.943447553903604316e-07,-6.088409689364667707e-07,-6.233371824825731098e-07,-6.378333960286794489e-07,-6.523296095747857879e-07,-6.668258231208921270e-07,-6.813220366669984661e-07,-6.958182502131048052e-07,-7.103144637592111443e-07,-7.248106773053174833e-07,-7.393068908514238224e-07,-7.538031043975301615e-07,-7.682993179436365006e-07,-7.827955314897428396e-07,-7.972917450358491787e-07,-8.117879585819555178e-07,-8.262841721280618569e-07,-8.407803856741681960e-07,-8.552765992202745350e-07,-8.697728127663808741e-07,-8.842690263124872132e-07,-8.987652398585935523e-07,-9.132614534046998914e-07 +0.000000000000000000e+00,-1.386229091982413486e-08,-2.772458183964826972e-08,-4.158687275947240458e-08,-5.544916367929653944e-08,-6.931145459912068092e-08,-8.317374551894482240e-08,-9.703603643876896388e-08,-1.108983273585931054e-07,-1.247606182784172468e-07,-1.386229091982413883e-07,-1.524852001180655298e-07,-1.663474910378896713e-07,-1.802097819577138127e-07,-1.940720728775379542e-07,-2.079343637973620957e-07,-2.217966547171862372e-07,-2.356589456370103787e-07,-2.495212365568345466e-07,-2.633835274766587410e-07,-2.772458183964829354e-07,-2.911081093163071299e-07,-3.049704002361313243e-07,-3.188326911559555187e-07,-3.326949820757797131e-07,-3.465572729956039075e-07,-3.604195639154281019e-07,-3.742818548352522964e-07,-3.881441457550764908e-07,-4.020064366749006852e-07,-4.158687275947248796e-07,-4.297310185145490740e-07,-4.435933094343732685e-07,-4.574556003541974629e-07,-4.713178912740216573e-07,-4.851801821938458517e-07,-4.990424731136700461e-07,-5.129047640334942405e-07,-5.267670549533184350e-07,-5.406293458731426294e-07,-5.544916367929668238e-07,-5.683539277127910182e-07,-5.822162186326152126e-07,-5.960785095524394070e-07,-6.099408004722636015e-07,-6.238030913920877959e-07,-6.376653823119119903e-07,-6.515276732317361847e-07,-6.653899641515603791e-07,-6.792522550713845736e-07,-6.931145459912087680e-07,-7.069768369110329624e-07,-7.208391278308571568e-07,-7.347014187506813512e-07,-7.485637096705055456e-07,-7.624260005903297401e-07,-7.762882915101539345e-07,-7.901505824299781289e-07,-8.040128733498023233e-07,-8.178751642696265177e-07,-8.317374551894507121e-07,-8.455997461092749066e-07,-8.594620370290991010e-07,-8.733243279489232954e-07 +0.000000000000000000e+00,-1.251121813966146613e-08,-2.502243627932293225e-08,-3.753365441898439673e-08,-5.004487255864585789e-08,-6.255609069830731905e-08,-7.506730883796878022e-08,-8.757852697763024138e-08,-1.000897451172917025e-07,-1.126009632569531637e-07,-1.251121813966146116e-07,-1.376233995362760728e-07,-1.501346176759375340e-07,-1.626458358155989951e-07,-1.751570539552604563e-07,-1.876682720949219175e-07,-2.001794902345833786e-07,-2.126907083742448398e-07,-2.252019265139063009e-07,-2.377131446535677621e-07,-2.502243627932292233e-07,-2.627355809328906844e-07,-2.752467990725521456e-07,-2.877580172122136068e-07,-3.002692353518750679e-07,-3.127804534915365291e-07,-3.252916716311979903e-07,-3.378028897708594514e-07,-3.503141079105209126e-07,-3.628253260501823738e-07,-3.753365441898438349e-07,-3.878477623295052961e-07,-4.003589804691667572e-07,-4.128701986088282184e-07,-4.253814167484896796e-07,-4.378926348881511407e-07,-4.504038530278126019e-07,-4.629150711674740631e-07,-4.754262893071355242e-07,-4.879375074467969854e-07,-5.004487255864584466e-07,-5.129599437261199077e-07,-5.254711618657813689e-07,-5.379823800054428300e-07,-5.504935981451042912e-07,-5.630048162847657524e-07,-5.755160344244272135e-07,-5.880272525640886747e-07,-6.005384707037501359e-07,-6.130496888434115970e-07,-6.255609069830730582e-07,-6.380721251227345194e-07,-6.505833432623959805e-07,-6.630945614020574417e-07,-6.756057795417189028e-07,-6.881169976813803640e-07,-7.006282158210418252e-07,-7.131394339607032863e-07,-7.256506521003647475e-07,-7.381618702400262087e-07,-7.506730883796876698e-07,-7.631843065193491310e-07,-7.756955246590105922e-07,-7.882067427986720533e-07 +0.000000000000000000e+00,-1.425660972234582719e-08,-2.851321944469165437e-08,-4.276982916703748487e-08,-5.702643888938331536e-08,-7.128304861172914586e-08,-8.553965833407496973e-08,-9.979626805642079361e-08,-1.140528777787666175e-07,-1.283094875011124281e-07,-1.425660972234582388e-07,-1.568227069458040494e-07,-1.710793166681498601e-07,-1.853359263904956707e-07,-1.995925361128414813e-07,-2.138491458351872920e-07,-2.281057555575331026e-07,-2.423623652798789133e-07,-2.566189750022247504e-07,-2.708755847245705875e-07,-2.851321944469164246e-07,-2.993888041692622617e-07,-3.136454138916080988e-07,-3.279020236139539359e-07,-3.421586333362997731e-07,-3.564152430586456102e-07,-3.706718527809914473e-07,-3.849284625033372844e-07,-3.991850722256831215e-07,-4.134416819480289586e-07,-4.276982916703747957e-07,-4.419549013927206328e-07,-4.562115111150664700e-07,-4.704681208374123071e-07,-4.847247305597581442e-07,-4.989813402821039813e-07,-5.132379500044498184e-07,-5.274945597267956555e-07,-5.417511694491414926e-07,-5.560077791714873297e-07,-5.702643888938331669e-07,-5.845209986161790040e-07,-5.987776083385248411e-07,-6.130342180608706782e-07,-6.272908277832165153e-07,-6.415474375055623524e-07,-6.558040472279081895e-07,-6.700606569502540266e-07,-6.843172666725998638e-07,-6.985738763949457009e-07,-7.128304861172915380e-07,-7.270870958396373751e-07,-7.413437055619832122e-07,-7.556003152843290493e-07,-7.698569250066748864e-07,-7.841135347290207235e-07,-7.983701444513665607e-07,-8.126267541737123978e-07,-8.268833638960582349e-07,-8.411399736184040720e-07,-8.553965833407499091e-07,-8.696531930630957462e-07,-8.839098027854415833e-07,-8.981664125077874204e-07 +0.000000000000000000e+00,-1.417049511819851064e-08,-2.834099023639702128e-08,-4.251148535459553523e-08,-5.668198047279404918e-08,-7.085247559099256313e-08,-8.502297070919107046e-08,-9.919346582738957779e-08,-1.133639609455880851e-07,-1.275344560637866057e-07,-1.417049511819851263e-07,-1.558754463001836468e-07,-1.700459414183821674e-07,-1.842164365365806880e-07,-1.983869316547792085e-07,-2.125574267729777291e-07,-2.267279218911762497e-07,-2.408984170093747702e-07,-2.550689121275733173e-07,-2.692394072457718643e-07,-2.834099023639704113e-07,-2.975803974821689584e-07,-3.117508926003675054e-07,-3.259213877185660524e-07,-3.400918828367645995e-07,-3.542623779549631465e-07,-3.684328730731616935e-07,-3.826033681913602406e-07,-3.967738633095587876e-07,-4.109443584277573347e-07,-4.251148535459558817e-07,-4.392853486641544287e-07,-4.534558437823529758e-07,-4.676263389005515228e-07,-4.817968340187500698e-07,-4.959673291369486698e-07,-5.101378242551472698e-07,-5.243083193733458698e-07,-5.384788144915444697e-07,-5.526493096097430697e-07,-5.668198047279416697e-07,-5.809902998461402697e-07,-5.951607949643388696e-07,-6.093312900825374696e-07,-6.235017852007360696e-07,-6.376722803189346696e-07,-6.518427754371332695e-07,-6.660132705553318695e-07,-6.801837656735304695e-07,-6.943542607917290695e-07,-7.085247559099276694e-07,-7.226952510281262694e-07,-7.368657461463248694e-07,-7.510362412645234694e-07,-7.652067363827220693e-07,-7.793772315009206693e-07,-7.935477266191192693e-07,-8.077182217373178693e-07,-8.218887168555164693e-07,-8.360592119737150692e-07,-8.502297070919136692e-07,-8.644002022101122692e-07,-8.785706973283108692e-07,-8.927411924465094691e-07 +0.000000000000000000e+00,-1.247917697156098190e-08,-2.495835394312196381e-08,-3.743753091468294406e-08,-4.991670788624392100e-08,-6.239588485780490456e-08,-7.487506182936588812e-08,-8.735423880092687167e-08,-9.983341577248785523e-08,-1.123125927440488388e-07,-1.247917697156098091e-07,-1.372709466871707794e-07,-1.497501236587317498e-07,-1.622293006302927201e-07,-1.747084776018536904e-07,-1.871876545734146607e-07,-1.996668315449756311e-07,-2.121460085165366014e-07,-2.246251854880975717e-07,-2.371043624596585420e-07,-2.495835394312195124e-07,-2.620627164027804827e-07,-2.745418933743414530e-07,-2.870210703459024233e-07,-2.995002473174633936e-07,-3.119794242890243640e-07,-3.244586012605853343e-07,-3.369377782321463046e-07,-3.494169552037072749e-07,-3.618961321752682453e-07,-3.743753091468292156e-07,-3.868544861183901859e-07,-3.993336630899511562e-07,-4.118128400615121266e-07,-4.242920170330730969e-07,-4.367711940046340672e-07,-4.492503709761950375e-07,-4.617295479477560079e-07,-4.742087249193169782e-07,-4.866879018908778956e-07,-4.991670788624388129e-07,-5.116462558339997303e-07,-5.241254328055606477e-07,-5.366046097771215651e-07,-5.490837867486824825e-07,-5.615629637202433999e-07,-5.740421406918043173e-07,-5.865213176633652346e-07,-5.990004946349261520e-07,-6.114796716064870694e-07,-6.239588485780479868e-07,-6.364380255496089042e-07,-6.489172025211698216e-07,-6.613963794927307389e-07,-6.738755564642916563e-07,-6.863547334358525737e-07,-6.988339104074134911e-07,-7.113130873789744085e-07,-7.237922643505353259e-07,-7.362714413220962432e-07,-7.487506182936571606e-07,-7.612297952652180780e-07,-7.737089722367789954e-07,-7.861881492083399128e-07 +0.000000000000000000e+00,-1.425660972234162842e-08,-2.851321944468325683e-08,-4.276982916702488525e-08,-5.702643888936651367e-08,-7.128304861170814209e-08,-8.553965833404977050e-08,-9.979626805639139892e-08,-1.140528777787330273e-07,-1.283094875010746558e-07,-1.425660972234162842e-07,-1.568227069457579126e-07,-1.710793166680995410e-07,-1.853359263904411694e-07,-1.995925361127827978e-07,-2.138491458351244263e-07,-2.281057555574660547e-07,-2.423623652798076566e-07,-2.566189750021492586e-07,-2.708755847244908605e-07,-2.851321944468324625e-07,-2.993888041691740644e-07,-3.136454138915156664e-07,-3.279020236138572683e-07,-3.421586333361988703e-07,-3.564152430585404722e-07,-3.706718527808820742e-07,-3.849284625032236761e-07,-3.991850722255652780e-07,-4.134416819479068800e-07,-4.276982916702484819e-07,-4.419549013925900839e-07,-4.562115111149316858e-07,-4.704681208372732878e-07,-4.847247305596148897e-07,-4.989813402819564917e-07,-5.132379500042980936e-07,-5.274945597266396956e-07,-5.417511694489812975e-07,-5.560077791713228995e-07,-5.702643888936645014e-07,-5.845209986160061034e-07,-5.987776083383477053e-07,-6.130342180606893073e-07,-6.272908277830309092e-07,-6.415474375053725112e-07,-6.558040472277141131e-07,-6.700606569500557151e-07,-6.843172666723973170e-07,-6.985738763947389189e-07,-7.128304861170805209e-07,-7.270870958394221228e-07,-7.413437055617637248e-07,-7.556003152841053267e-07,-7.698569250064469287e-07,-7.841135347287885306e-07,-7.983701444511301326e-07,-8.126267541734717345e-07,-8.268833638958133365e-07,-8.411399736181549384e-07,-8.553965833404965404e-07,-8.696531930628381423e-07,-8.839098027851797443e-07,-8.981664125075213462e-07 +0.000000000000000000e+00,-1.417049511819408026e-08,-2.834099023638816052e-08,-4.251148535458224078e-08,-5.668198047277632104e-08,-7.085247559097039469e-08,-8.502297070916446833e-08,-9.919346582735854197e-08,-1.133639609455526156e-07,-1.275344560637466893e-07,-1.417049511819407629e-07,-1.558754463001348365e-07,-1.700459414183289102e-07,-1.842164365365229838e-07,-1.983869316547170575e-07,-2.125574267729111311e-07,-2.267279218911052048e-07,-2.408984170092992784e-07,-2.550689121274933785e-07,-2.692394072456874786e-07,-2.834099023638815787e-07,-2.975803974820756789e-07,-3.117508926002697790e-07,-3.259213877184638791e-07,-3.400918828366579792e-07,-3.542623779548520793e-07,-3.684328730730461794e-07,-3.826033681912402795e-07,-3.967738633094343797e-07,-4.109443584276284798e-07,-4.251148535458225799e-07,-4.392853486640166800e-07,-4.534558437822107801e-07,-4.676263389004048802e-07,-4.817968340185989803e-07,-4.959673291367930275e-07,-5.101378242549870747e-07,-5.243083193731811219e-07,-5.384788144913751690e-07,-5.526493096095692162e-07,-5.668198047277632634e-07,-5.809902998459573105e-07,-5.951607949641513577e-07,-6.093312900823454049e-07,-6.235017852005394521e-07,-6.376722803187334992e-07,-6.518427754369275464e-07,-6.660132705551215936e-07,-6.801837656733156408e-07,-6.943542607915096879e-07,-7.085247559097037351e-07,-7.226952510278977823e-07,-7.368657461460918295e-07,-7.510362412642858766e-07,-7.652067363824799238e-07,-7.793772315006739710e-07,-7.935477266188680182e-07,-8.077182217370620653e-07,-8.218887168552561125e-07,-8.360592119734501597e-07,-8.502297070916442068e-07,-8.644002022098382540e-07,-8.785706973280323012e-07,-8.927411924462263484e-07 +0.000000000000000000e+00,-1.247917697155664086e-08,-2.495835394311328172e-08,-3.743753091466992093e-08,-4.991670788622655682e-08,-6.239588485778319934e-08,-7.487506182933984185e-08,-8.735423880089648437e-08,-9.983341577245312688e-08,-1.123125927440097694e-07,-1.247917697155663987e-07,-1.372709466871230280e-07,-1.497501236586796572e-07,-1.622293006302362865e-07,-1.747084776017929158e-07,-1.871876545733495451e-07,-1.996668315449061744e-07,-2.121460085164628036e-07,-2.246251854880194329e-07,-2.371043624595760622e-07,-2.495835394311326915e-07,-2.620627164026893208e-07,-2.745418933742459500e-07,-2.870210703458025793e-07,-2.995002473173592086e-07,-3.119794242889158379e-07,-3.244586012604724672e-07,-3.369377782320290964e-07,-3.494169552035857257e-07,-3.618961321751423550e-07,-3.743753091466989843e-07,-3.868544861182556136e-07,-3.993336630898122428e-07,-4.118128400613688721e-07,-4.242920170329255014e-07,-4.367711940044821307e-07,-4.492503709760387600e-07,-4.617295479475953892e-07,-4.742087249191520185e-07,-4.866879018907087007e-07,-4.991670788622653830e-07,-5.116462558338220652e-07,-5.241254328053787474e-07,-5.366046097769354296e-07,-5.490837867484921118e-07,-5.615629637200487940e-07,-5.740421406916054763e-07,-5.865213176631621585e-07,-5.990004946347188407e-07,-6.114796716062755229e-07,-6.239588485778322051e-07,-6.364380255493888874e-07,-6.489172025209455696e-07,-6.613963794925022518e-07,-6.738755564640589340e-07,-6.863547334356156162e-07,-6.988339104071722985e-07,-7.113130873787289807e-07,-7.237922643502856629e-07,-7.362714413218423451e-07,-7.487506182933990273e-07,-7.612297952649557096e-07,-7.737089722365123918e-07,-7.861881492080690740e-07 +0.000000000000000000e+00,-1.475123889227558322e-08,-2.950247778455116643e-08,-4.425371667682674800e-08,-5.900495556910232625e-08,-7.375619446137789788e-08,-8.850743335365346952e-08,-1.032586722459290412e-07,-1.180099111382046128e-07,-1.327611500304801844e-07,-1.475123889227557428e-07,-1.622636278150313012e-07,-1.770148667073068596e-07,-1.917661055995824180e-07,-2.065173444918579764e-07,-2.212685833841335348e-07,-2.360198222764090932e-07,-2.507710611686846516e-07,-2.655223000609602100e-07,-2.802735389532357684e-07,-2.950247778455113268e-07,-3.097760167377868852e-07,-3.245272556300624436e-07,-3.392784945223380020e-07,-3.540297334146135604e-07,-3.687809723068891188e-07,-3.835322111991646772e-07,-3.982834500914402356e-07,-4.130346889837157940e-07,-4.277859278759913525e-07,-4.425371667682669109e-07,-4.572884056605424693e-07,-4.720396445528180277e-07,-4.867908834450935861e-07,-5.015421223373690915e-07,-5.162933612296445970e-07,-5.310446001219201024e-07,-5.457958390141956079e-07,-5.605470779064711134e-07,-5.752983167987466188e-07,-5.900495556910221243e-07,-6.048007945832976297e-07,-6.195520334755731352e-07,-6.343032723678486407e-07,-6.490545112601241461e-07,-6.638057501523996516e-07,-6.785569890446751571e-07,-6.933082279369506625e-07,-7.080594668292261680e-07,-7.228107057215016734e-07,-7.375619446137771789e-07,-7.523131835060526844e-07,-7.670644223983281898e-07,-7.818156612906036953e-07,-7.965669001828792007e-07,-8.113181390751547062e-07,-8.260693779674302117e-07,-8.408206168597057171e-07,-8.555718557519812226e-07,-8.703230946442567281e-07,-8.850743335365322335e-07,-8.998255724288077390e-07,-9.145768113210832444e-07,-9.293280502133587499e-07 +0.000000000000000000e+00,-1.445870886243551864e-08,-2.891741772487103728e-08,-4.337612658730655757e-08,-5.783483544974208117e-08,-7.229354431217760477e-08,-8.675225317461312837e-08,-1.012109620370486520e-07,-1.156696708994841756e-07,-1.301283797619196992e-07,-1.445870886243552095e-07,-1.590457974867907199e-07,-1.735045063492262303e-07,-1.879632152116617406e-07,-2.024219240740972510e-07,-2.168806329365327614e-07,-2.313393417989682717e-07,-2.457980506614037821e-07,-2.602567595238392925e-07,-2.747154683862748028e-07,-2.891741772487103132e-07,-3.036328861111458236e-07,-3.180915949735813339e-07,-3.325503038360168443e-07,-3.470090126984523547e-07,-3.614677215608878650e-07,-3.759264304233233754e-07,-3.903851392857588858e-07,-4.048438481481943961e-07,-4.193025570106299065e-07,-4.337612658730654169e-07,-4.482199747355009272e-07,-4.626786835979364376e-07,-4.771373924603718950e-07,-4.915961013228073525e-07,-5.060548101852428099e-07,-5.205135190476782673e-07,-5.349722279101137247e-07,-5.494309367725491822e-07,-5.638896456349846396e-07,-5.783483544974200970e-07,-5.928070633598555545e-07,-6.072657722222910119e-07,-6.217244810847264693e-07,-6.361831899471619267e-07,-6.506418988095973842e-07,-6.651006076720328416e-07,-6.795593165344682990e-07,-6.940180253969037564e-07,-7.084767342593392139e-07,-7.229354431217746713e-07,-7.373941519842101287e-07,-7.518528608466455861e-07,-7.663115697090810436e-07,-7.807702785715165010e-07,-7.952289874339519584e-07,-8.096876962963874159e-07,-8.241464051588228733e-07,-8.386051140212583307e-07,-8.530638228836937881e-07,-8.675225317461292456e-07,-8.819812406085647030e-07,-8.964399494710001604e-07,-9.108986583334356178e-07 +0.000000000000000000e+00,-1.302046262939612989e-08,-2.604092525879225978e-08,-3.906138788818838801e-08,-5.208185051758451293e-08,-6.510231314698064447e-08,-7.812277577637677602e-08,-9.114323840577290756e-08,-1.041637010351690391e-07,-1.171841636645651706e-07,-1.302046262939612889e-07,-1.432250889233574073e-07,-1.562455515527535256e-07,-1.692660141821496439e-07,-1.822864768115457622e-07,-1.953069394409418805e-07,-2.083274020703379988e-07,-2.213478646997341171e-07,-2.343683273291302354e-07,-2.473887899585263537e-07,-2.604092525879224720e-07,-2.734297152173185903e-07,-2.864501778467147086e-07,-2.994706404761108269e-07,-3.124911031055069452e-07,-3.255115657349030636e-07,-3.385320283642991819e-07,-3.515524909936953002e-07,-3.645729536230914185e-07,-3.775934162524875368e-07,-3.906138788818836551e-07,-4.036343415112797734e-07,-4.166548041406758917e-07,-4.296752667700720100e-07,-4.426957293994681283e-07,-4.557161920288642466e-07,-4.687366546582603649e-07,-4.817571172876564832e-07,-4.947775799170526015e-07,-5.077980425464487199e-07,-5.208185051758448382e-07,-5.338389678052409565e-07,-5.468594304346370748e-07,-5.598798930640331931e-07,-5.729003556934293114e-07,-5.859208183228254297e-07,-5.989412809522215480e-07,-6.119617435816176663e-07,-6.249822062110137846e-07,-6.380026688404099029e-07,-6.510231314698060212e-07,-6.640435940992021395e-07,-6.770640567285982578e-07,-6.900845193579943762e-07,-7.031049819873904945e-07,-7.161254446167866128e-07,-7.291459072461827311e-07,-7.421663698755788494e-07,-7.551868325049749677e-07,-7.682072951343710860e-07,-7.812277577637672043e-07,-7.942482203931633226e-07,-8.072686830225594409e-07,-8.202891456519555592e-07 +0.000000000000000000e+00,-1.475123889227203296e-08,-2.950247778454406591e-08,-4.425371667681610053e-08,-5.900495556908813845e-08,-7.375619446136017637e-08,-8.850743335363221429e-08,-1.032586722459042522e-07,-1.180099111381762901e-07,-1.327611500304483148e-07,-1.475123889227203263e-07,-1.622636278149923377e-07,-1.770148667072643492e-07,-1.917661055995363606e-07,-2.065173444918083721e-07,-2.212685833840803835e-07,-2.360198222763523950e-07,-2.507710611686244064e-07,-2.655223000608964179e-07,-2.802735389531684293e-07,-2.950247778454404408e-07,-3.097760167377124522e-07,-3.245272556299844637e-07,-3.392784945222564751e-07,-3.540297334145284866e-07,-3.687809723068004980e-07,-3.835322111990725095e-07,-3.982834500913445209e-07,-4.130346889836165324e-07,-4.277859278758885438e-07,-4.425371667681605553e-07,-4.572884056604325667e-07,-4.720396445527045782e-07,-4.867908834449765896e-07,-5.015421223372486011e-07,-5.162933612295206125e-07,-5.310446001217926240e-07,-5.457958390140646354e-07,-5.605470779063366469e-07,-5.752983167986086583e-07,-5.900495556908806698e-07,-6.048007945831526812e-07,-6.195520334754246927e-07,-6.343032723676967041e-07,-6.490545112599687156e-07,-6.638057501522407270e-07,-6.785569890445127385e-07,-6.933082279367847499e-07,-7.080594668290567614e-07,-7.228107057213287728e-07,-7.375619446136007843e-07,-7.523131835058727957e-07,-7.670644223981448072e-07,-7.818156612904168186e-07,-7.965669001826888301e-07,-8.113181390749608415e-07,-8.260693779672328530e-07,-8.408206168595048644e-07,-8.555718557517768759e-07,-8.703230946440488873e-07,-8.850743335363208988e-07,-8.998255724285929102e-07,-9.145768113208649217e-07,-9.293280502131369331e-07 +0.000000000000000000e+00,-1.445870886243167887e-08,-2.891741772486335773e-08,-4.337612658729503660e-08,-5.783483544972671546e-08,-7.229354431215838771e-08,-8.675225317459005996e-08,-1.012109620370217322e-07,-1.156696708994534045e-07,-1.301283797618850767e-07,-1.445870886243167490e-07,-1.590457974867484212e-07,-1.735045063491800935e-07,-1.879632152116117657e-07,-2.024219240740434379e-07,-2.168806329364751102e-07,-2.313393417989067824e-07,-2.457980506613384547e-07,-2.602567595237701534e-07,-2.747154683862018521e-07,-2.891741772486335508e-07,-3.036328861110652496e-07,-3.180915949734969483e-07,-3.325503038359286470e-07,-3.470090126983603457e-07,-3.614677215607920444e-07,-3.759264304232237432e-07,-3.903851392856554419e-07,-4.048438481480871406e-07,-4.193025570105188393e-07,-4.337612658729505380e-07,-4.482199747353822368e-07,-4.626786835978139355e-07,-4.771373924602456871e-07,-4.915961013226774388e-07,-5.060548101851091904e-07,-5.205135190475409421e-07,-5.349722279099726938e-07,-5.494309367724044454e-07,-5.638896456348361971e-07,-5.783483544972679487e-07,-5.928070633596997004e-07,-6.072657722221314520e-07,-6.217244810845632037e-07,-6.361831899469949554e-07,-6.506418988094267070e-07,-6.651006076718584587e-07,-6.795593165342902103e-07,-6.940180253967219620e-07,-7.084767342591537137e-07,-7.229354431215854653e-07,-7.373941519840172170e-07,-7.518528608464489686e-07,-7.663115697088807203e-07,-7.807702785713124719e-07,-7.952289874337442236e-07,-8.096876962961759753e-07,-8.241464051586077269e-07,-8.386051140210394786e-07,-8.530638228834712302e-07,-8.675225317459029819e-07,-8.819812406083347335e-07,-8.964399494707664852e-07,-9.108986583331982369e-07 +0.000000000000000000e+00,-1.302046262939248533e-08,-2.604092525878497066e-08,-3.906138788817745599e-08,-5.208185051756994132e-08,-6.510231314696243327e-08,-7.812277577635492521e-08,-9.114323840574741716e-08,-1.041637010351399091e-07,-1.171841636645324011e-07,-1.302046262939248930e-07,-1.432250889233173850e-07,-1.562455515527098769e-07,-1.692660141821023688e-07,-1.822864768114948608e-07,-1.953069394408873527e-07,-2.083274020702798447e-07,-2.213478646996723366e-07,-2.343683273290648286e-07,-2.473887899584573205e-07,-2.604092525878498389e-07,-2.734297152172423574e-07,-2.864501778466348758e-07,-2.994706404760273942e-07,-3.124911031054199126e-07,-3.255115657348124310e-07,-3.385320283642049494e-07,-3.515524909935974679e-07,-3.645729536229899863e-07,-3.775934162523825047e-07,-3.906138788817750231e-07,-4.036343415111675415e-07,-4.166548041405600599e-07,-4.296752667699525784e-07,-4.426957293993450968e-07,-4.557161920287376152e-07,-4.687366546581301336e-07,-4.817571172875226520e-07,-4.947775799169151705e-07,-5.077980425463076889e-07,-5.208185051757002073e-07,-5.338389678050927257e-07,-5.468594304344852441e-07,-5.598798930638777625e-07,-5.729003556932702810e-07,-5.859208183226627994e-07,-5.989412809520553178e-07,-6.119617435814478362e-07,-6.249822062108403546e-07,-6.380026688402328730e-07,-6.510231314696253915e-07,-6.640435940990179099e-07,-6.770640567284104283e-07,-6.900845193578029467e-07,-7.031049819871954651e-07,-7.161254446165879835e-07,-7.291459072459805020e-07,-7.421663698753730204e-07,-7.551868325047655388e-07,-7.682072951341580572e-07,-7.812277577635505756e-07,-7.942482203929430940e-07,-8.072686830223356125e-07,-8.202891456517281309e-07 +0.000000000000000000e+00,-1.549357891876730807e-08,-3.098715783753461613e-08,-4.648073675630192751e-08,-6.197431567506924550e-08,-7.746789459383656350e-08,-9.296147351260388149e-08,-1.084550524313711995e-07,-1.239486313501385175e-07,-1.394422102689058355e-07,-1.549357891876731535e-07,-1.704293681064404715e-07,-1.859229470252077895e-07,-2.014165259439751074e-07,-2.169101048627424254e-07,-2.324036837815097434e-07,-2.478972627002770879e-07,-2.633908416190444059e-07,-2.788844205378117239e-07,-2.943779994565790419e-07,-3.098715783753463599e-07,-3.253651572941136779e-07,-3.408587362128809959e-07,-3.563523151316483139e-07,-3.718458940504156318e-07,-3.873394729691829498e-07,-4.028330518879502678e-07,-4.183266308067175858e-07,-4.338202097254849038e-07,-4.493137886442522218e-07,-4.648073675630195398e-07,-4.803009464817868578e-07,-4.957945254005541758e-07,-5.112881043193214938e-07,-5.267816832380888118e-07,-5.422752621568561298e-07,-5.577688410756234478e-07,-5.732624199943907658e-07,-5.887559989131580838e-07,-6.042495778319254018e-07,-6.197431567506927197e-07,-6.352367356694600377e-07,-6.507303145882273557e-07,-6.662238935069946737e-07,-6.817174724257619917e-07,-6.972110513445293097e-07,-7.127046302632966277e-07,-7.281982091820639457e-07,-7.436917881008312637e-07,-7.591853670195985817e-07,-7.746789459383658997e-07,-7.901725248571332177e-07,-8.056661037759005357e-07,-8.211596826946678537e-07,-8.366532616134351717e-07,-8.521468405322024897e-07,-8.676404194509698076e-07,-8.831339983697371256e-07,-8.986275772885044436e-07,-9.141211562072717616e-07,-9.296147351260390796e-07,-9.451083140448063976e-07,-9.606018929635737156e-07,-9.760954718823411395e-07 +0.000000000000000000e+00,-1.510307396991386625e-08,-3.020614793982773249e-08,-4.530922190974159543e-08,-6.041229587965545175e-08,-7.551536984956930807e-08,-9.061844381948316439e-08,-1.057215177893970207e-07,-1.208245917593108770e-07,-1.359276657292247201e-07,-1.510307396991385632e-07,-1.661338136690524063e-07,-1.812368876389662494e-07,-1.963399616088800924e-07,-2.114430355787939355e-07,-2.265461095487077786e-07,-2.416491835186215952e-07,-2.567522574885354118e-07,-2.718553314584492285e-07,-2.869584054283630451e-07,-3.020614793982768617e-07,-3.171645533681906783e-07,-3.322676273381044949e-07,-3.473707013080183115e-07,-3.624737752779321281e-07,-3.775768492478459448e-07,-3.926799232177597614e-07,-4.077829971876735780e-07,-4.228860711575873946e-07,-4.379891451275012112e-07,-4.530922190974150278e-07,-4.681952930673288445e-07,-4.832983670372426611e-07,-4.984014410071564777e-07,-5.135045149770702943e-07,-5.286075889469841109e-07,-5.437106629168979275e-07,-5.588137368868117441e-07,-5.739168108567255608e-07,-5.890198848266393774e-07,-6.041229587965531940e-07,-6.192260327664670106e-07,-6.343291067363808272e-07,-6.494321807062946438e-07,-6.645352546762084604e-07,-6.796383286461222771e-07,-6.947414026160360937e-07,-7.098444765859499103e-07,-7.249475505558637269e-07,-7.400506245257775435e-07,-7.551536984956913601e-07,-7.702567724656051767e-07,-7.853598464355189934e-07,-8.004629204054328100e-07,-8.155659943753466266e-07,-8.306690683452604432e-07,-8.457721423151742598e-07,-8.608752162850880764e-07,-8.759782902550018930e-07,-8.910813642249157097e-07,-9.061844381948295263e-07,-9.212875121647433429e-07,-9.363905861346571595e-07,-9.514936601045709761e-07 +0.000000000000000000e+00,-1.375771765205832150e-08,-2.751543530411664300e-08,-4.127315295617496615e-08,-5.503087060823329261e-08,-6.878858826029161907e-08,-8.254630591234994554e-08,-9.630402356440827200e-08,-1.100617412164665985e-07,-1.238194588685249249e-07,-1.375771765205832381e-07,-1.513348941726415514e-07,-1.650926118246998646e-07,-1.788503294767581778e-07,-1.926080471288164911e-07,-2.063657647808748043e-07,-2.201234824329331175e-07,-2.338812000849914307e-07,-2.476389177370497440e-07,-2.613966353891080572e-07,-2.751543530411663704e-07,-2.889120706932246836e-07,-3.026697883452829969e-07,-3.164275059973413101e-07,-3.301852236493996233e-07,-3.439429413014579366e-07,-3.577006589535162498e-07,-3.714583766055745630e-07,-3.852160942576328762e-07,-3.989738119096911895e-07,-4.127315295617495027e-07,-4.264892472138078159e-07,-4.402469648658661291e-07,-4.540046825179244424e-07,-4.677624001699827556e-07,-4.815201178220410159e-07,-4.952778354740992762e-07,-5.090355531261575365e-07,-5.227932707782157967e-07,-5.365509884302740570e-07,-5.503087060823323173e-07,-5.640664237343905776e-07,-5.778241413864488379e-07,-5.915818590385070982e-07,-6.053395766905653585e-07,-6.190972943426236188e-07,-6.328550119946818790e-07,-6.466127296467401393e-07,-6.603704472987983996e-07,-6.741281649508566599e-07,-6.878858826029149202e-07,-7.016436002549731805e-07,-7.154013179070314408e-07,-7.291590355590897011e-07,-7.429167532111479613e-07,-7.566744708632062216e-07,-7.704321885152644819e-07,-7.841899061673227422e-07,-7.979476238193810025e-07,-8.117053414714392628e-07,-8.254630591234975231e-07,-8.392207767755557834e-07,-8.529784944276140436e-07,-8.667362120796723039e-07 +0.000000000000000000e+00,-1.549357891876414162e-08,-3.098715783752828324e-08,-4.648073675629242486e-08,-6.197431567505656648e-08,-7.746789459382070810e-08,-9.296147351258484972e-08,-1.084550524313489913e-07,-1.239486313501131330e-07,-1.394422102688772746e-07,-1.549357891876414162e-07,-1.704293681064055578e-07,-1.859229470251696994e-07,-2.014165259439338411e-07,-2.169101048626979827e-07,-2.324036837814621243e-07,-2.478972627002262659e-07,-2.633908416189904075e-07,-2.788844205377545492e-07,-2.943779994565186908e-07,-3.098715783752828324e-07,-3.253651572940469740e-07,-3.408587362128111156e-07,-3.563523151315752573e-07,-3.718458940503393989e-07,-3.873394729691035405e-07,-4.028330518878676821e-07,-4.183266308066318237e-07,-4.338202097253959654e-07,-4.493137886441601070e-07,-4.648073675629242486e-07,-4.803009464816883902e-07,-4.957945254004525318e-07,-5.112881043192166735e-07,-5.267816832379808151e-07,-5.422752621567449567e-07,-5.577688410755090983e-07,-5.732624199942732399e-07,-5.887559989130373816e-07,-6.042495778318015232e-07,-6.197431567505656648e-07,-6.352367356693298064e-07,-6.507303145880939480e-07,-6.662238935068580897e-07,-6.817174724256222313e-07,-6.972110513443863729e-07,-7.127046302631505145e-07,-7.281982091819146561e-07,-7.436917881006787978e-07,-7.591853670194429394e-07,-7.746789459382070810e-07,-7.901725248569712226e-07,-8.056661037757353642e-07,-8.211596826944995059e-07,-8.366532616132636475e-07,-8.521468405320277891e-07,-8.676404194507919307e-07,-8.831339983695560723e-07,-8.986275772883202140e-07,-9.141211562070843556e-07,-9.296147351258484972e-07,-9.451083140446126388e-07,-9.606018929633767804e-07,-9.760954718821408162e-07 +0.000000000000000000e+00,-1.510307396991040532e-08,-3.020614793982081064e-08,-4.530922190973121927e-08,-6.041229587964163452e-08,-7.551536984955204977e-08,-9.061844381946246502e-08,-1.057215177893728803e-07,-1.208245917592832955e-07,-1.359276657291936975e-07,-1.510307396991040995e-07,-1.661338136690145016e-07,-1.812368876389249036e-07,-1.963399616088353056e-07,-2.114430355787457076e-07,-2.265461095486561096e-07,-2.416491835185665381e-07,-2.567522574884769666e-07,-2.718553314583873951e-07,-2.869584054282978235e-07,-3.020614793982082520e-07,-3.171645533681186805e-07,-3.322676273380291090e-07,-3.473707013079395375e-07,-3.624737752778499660e-07,-3.775768492477603944e-07,-3.926799232176708229e-07,-4.077829971875812514e-07,-4.228860711574916799e-07,-4.379891451274021084e-07,-4.530922190973125369e-07,-4.681952930672229653e-07,-4.832983670371333938e-07,-4.984014410070438223e-07,-5.135045149769542508e-07,-5.286075889468646793e-07,-5.437106629167751077e-07,-5.588137368866855362e-07,-5.739168108565959647e-07,-5.890198848265063932e-07,-6.041229587964168217e-07,-6.192260327663272502e-07,-6.343291067362376786e-07,-6.494321807061481071e-07,-6.645352546760585356e-07,-6.796383286459689641e-07,-6.947414026158793926e-07,-7.098444765857898211e-07,-7.249475505557002495e-07,-7.400506245256106780e-07,-7.551536984955211065e-07,-7.702567724654315350e-07,-7.853598464353419635e-07,-8.004629204052523920e-07,-8.155659943751628204e-07,-8.306690683450732489e-07,-8.457721423149836774e-07,-8.608752162848941059e-07,-8.759782902548045344e-07,-8.910813642247149629e-07,-9.061844381946253913e-07,-9.212875121645358198e-07,-9.363905861344462483e-07,-9.514936601043566768e-07 +0.000000000000000000e+00,-1.375771765205518152e-08,-2.751543530411036304e-08,-4.127315295616554291e-08,-5.503087060822071947e-08,-6.878858826027589603e-08,-8.254630591233107258e-08,-9.630402356438624914e-08,-1.100617412164414257e-07,-1.238194588684966023e-07,-1.375771765205517921e-07,-1.513348941726069818e-07,-1.650926118246621716e-07,-1.788503294767173614e-07,-1.926080471287725512e-07,-2.063657647808277410e-07,-2.201234824328829308e-07,-2.338812000849381206e-07,-2.476389177369933104e-07,-2.613966353890485002e-07,-2.751543530411036900e-07,-2.889120706931588798e-07,-3.026697883452140696e-07,-3.164275059972692594e-07,-3.301852236493244492e-07,-3.439429413013796389e-07,-3.577006589534348287e-07,-3.714583766054900185e-07,-3.852160942575452083e-07,-3.989738119096003981e-07,-4.127315295616555879e-07,-4.264892472137107777e-07,-4.402469648657659675e-07,-4.540046825178211573e-07,-4.677624001698763471e-07,-4.815201178219315369e-07,-4.952778354739867267e-07,-5.090355531260419165e-07,-5.227932707780971063e-07,-5.365509884301522960e-07,-5.503087060822074858e-07,-5.640664237342626756e-07,-5.778241413863178654e-07,-5.915818590383730552e-07,-6.053395766904282450e-07,-6.190972943424834348e-07,-6.328550119945386246e-07,-6.466127296465938144e-07,-6.603704472986490042e-07,-6.741281649507041940e-07,-6.878858826027593838e-07,-7.016436002548145736e-07,-7.154013179068697634e-07,-7.291590355589249531e-07,-7.429167532109801429e-07,-7.566744708630353327e-07,-7.704321885150905225e-07,-7.841899061671457123e-07,-7.979476238192009021e-07,-8.117053414712560919e-07,-8.254630591233112817e-07,-8.392207767753664715e-07,-8.529784944274216613e-07,-8.667362120794768511e-07 +0.000000000000000000e+00,-1.631855879204415079e-08,-3.263711758408830158e-08,-4.895567637613245237e-08,-6.527423516817660316e-08,-8.159279396022075395e-08,-9.791135275226490474e-08,-1.142299115443090555e-07,-1.305484703363532063e-07,-1.468670291283973439e-07,-1.631855879204414814e-07,-1.795041467124856190e-07,-1.958227055045297565e-07,-2.121412642965738941e-07,-2.284598230886180316e-07,-2.447783818806621692e-07,-2.610969406727063068e-07,-2.774154994647504443e-07,-2.937340582567945819e-07,-3.100526170488387194e-07,-3.263711758408828570e-07,-3.426897346329269945e-07,-3.590082934249711321e-07,-3.753268522170152696e-07,-3.916454110090594072e-07,-4.079639698011035447e-07,-4.242825285931476823e-07,-4.406010873851918199e-07,-4.569196461772359574e-07,-4.732382049692800950e-07,-4.895567637613242325e-07,-5.058753225533683701e-07,-5.221938813454125076e-07,-5.385124401374566452e-07,-5.548309989295007827e-07,-5.711495577215449203e-07,-5.874681165135890578e-07,-6.037866753056331954e-07,-6.201052340976773330e-07,-6.364237928897214705e-07,-6.527423516817656081e-07,-6.690609104738097456e-07,-6.853794692658538832e-07,-7.016980280578980207e-07,-7.180165868499421583e-07,-7.343351456419862958e-07,-7.506537044340304334e-07,-7.669722632260745709e-07,-7.832908220181187085e-07,-7.996093808101628461e-07,-8.159279396022069836e-07,-8.322464983942511212e-07,-8.485650571862952587e-07,-8.648836159783393963e-07,-8.812021747703835338e-07,-8.975207335624276714e-07,-9.138392923544718089e-07,-9.301578511465159465e-07,-9.464764099385600840e-07,-9.627949687306043275e-07,-9.791135275226486768e-07,-9.954320863146930261e-07,-1.011750645106737375e-06,-1.028069203898781725e-06 +0.000000000000000000e+00,-1.590351524614744253e-08,-3.180703049229488505e-08,-4.771054573844233088e-08,-6.361406098458978334e-08,-7.951757623073723579e-08,-9.542109147688468824e-08,-1.113246067230321407e-07,-1.272281219691795931e-07,-1.431316372153270456e-07,-1.590351524614744980e-07,-1.749386677076219505e-07,-1.908421829537694029e-07,-2.067456981999168554e-07,-2.226492134460643078e-07,-2.385527286922117603e-07,-2.544562439383592392e-07,-2.703597591845067181e-07,-2.862632744306541971e-07,-3.021667896768016760e-07,-3.180703049229491549e-07,-3.339738201690966338e-07,-3.498773354152441127e-07,-3.657808506613915917e-07,-3.816843659075390706e-07,-3.975878811536865495e-07,-4.134913963998340284e-07,-4.293949116459815074e-07,-4.452984268921289863e-07,-4.612019421382764652e-07,-4.771054573844239441e-07,-4.930089726305714760e-07,-5.089124878767190078e-07,-5.248160031228665397e-07,-5.407195183690140716e-07,-5.566230336151616034e-07,-5.725265488613091353e-07,-5.884300641074566671e-07,-6.043335793536041990e-07,-6.202370945997517309e-07,-6.361406098458992627e-07,-6.520441250920467946e-07,-6.679476403381943264e-07,-6.838511555843418583e-07,-6.997546708304893902e-07,-7.156581860766369220e-07,-7.315617013227844539e-07,-7.474652165689319857e-07,-7.633687318150795176e-07,-7.792722470612270495e-07,-7.951757623073745813e-07,-8.110792775535221132e-07,-8.269827927996696450e-07,-8.428863080458171769e-07,-8.587898232919647088e-07,-8.746933385381122406e-07,-8.905968537842597725e-07,-9.065003690304073043e-07,-9.224038842765548362e-07,-9.383073995227023681e-07,-9.542109147688497941e-07,-9.701144300149972200e-07,-9.860179452611446460e-07,-1.001921460507292072e-06 +0.000000000000000000e+00,-1.451068604373925859e-08,-2.902137208747851718e-08,-4.353205813121777246e-08,-5.804274417495702774e-08,-7.255343021869628302e-08,-8.706411626243554492e-08,-1.015748023061748068e-07,-1.160854883499140687e-07,-1.305961743936533306e-07,-1.451068604373925925e-07,-1.596175464811318544e-07,-1.741282325248711163e-07,-1.886389185686103782e-07,-2.031496046123496401e-07,-2.176602906560889020e-07,-2.321709766998281639e-07,-2.466816627435674258e-07,-2.611923487873066612e-07,-2.757030348310458967e-07,-2.902137208747851321e-07,-3.047244069185243675e-07,-3.192350929622636029e-07,-3.337457790060028384e-07,-3.482564650497420738e-07,-3.627671510934813092e-07,-3.772778371372205447e-07,-3.917885231809597801e-07,-4.062992092246990155e-07,-4.208098952684382509e-07,-4.353205813121774864e-07,-4.498312673559167218e-07,-4.643419533996559572e-07,-4.788526394433951926e-07,-4.933633254871344281e-07,-5.078740115308736635e-07,-5.223846975746128989e-07,-5.368953836183521344e-07,-5.514060696620913698e-07,-5.659167557058306052e-07,-5.804274417495698406e-07,-5.949381277933090761e-07,-6.094488138370483115e-07,-6.239594998807875469e-07,-6.384701859245267824e-07,-6.529808719682660178e-07,-6.674915580120052532e-07,-6.820022440557444886e-07,-6.965129300994837241e-07,-7.110236161432229595e-07,-7.255343021869621949e-07,-7.400449882307014304e-07,-7.545556742744406658e-07,-7.690663603181799012e-07,-7.835770463619191366e-07,-7.980877324056583721e-07,-8.125984184493976075e-07,-8.271091044931368429e-07,-8.416197905368760784e-07,-8.561304765806153138e-07,-8.706411626243545492e-07,-8.851518486680937846e-07,-8.996625347118330201e-07,-9.141732207555722555e-07 +0.000000000000000000e+00,-1.631855879204139793e-08,-3.263711758408279586e-08,-4.895567637612419380e-08,-6.527423516816559173e-08,-8.159279396020698966e-08,-9.791135275224838759e-08,-1.142299115442897855e-07,-1.305484703363311835e-07,-1.468670291283725682e-07,-1.631855879204139529e-07,-1.795041467124553376e-07,-1.958227055044967222e-07,-2.121412642965381069e-07,-2.284598230885794916e-07,-2.447783818806208763e-07,-2.610969406726622610e-07,-2.774154994647036457e-07,-2.937340582567450304e-07,-3.100526170487864151e-07,-3.263711758408277998e-07,-3.426897346328691845e-07,-3.590082934249105692e-07,-3.753268522169519539e-07,-3.916454110089933386e-07,-4.079639698010347233e-07,-4.242825285930761080e-07,-4.406010873851174927e-07,-4.569196461771588774e-07,-4.732382049692002621e-07,-4.895567637612416468e-07,-5.058753225532830315e-07,-5.221938813453244162e-07,-5.385124401373658009e-07,-5.548309989294071856e-07,-5.711495577214485703e-07,-5.874681165134899550e-07,-6.037866753055313397e-07,-6.201052340975727244e-07,-6.364237928896141091e-07,-6.527423516816554938e-07,-6.690609104736968785e-07,-6.853794692657382632e-07,-7.016980280577796479e-07,-7.180165868498210326e-07,-7.343351456418624173e-07,-7.506537044339038020e-07,-7.669722632259451867e-07,-7.832908220179865714e-07,-7.996093808100279561e-07,-8.159279396020693408e-07,-8.322464983941107254e-07,-8.485650571861521101e-07,-8.648836159781934948e-07,-8.812021747702348795e-07,-8.975207335622762642e-07,-9.138392923543176489e-07,-9.301578511463590336e-07,-9.464764099384004183e-07,-9.627949687304416971e-07,-9.791135275224830818e-07,-9.954320863145244665e-07,-1.011750645106565851e-06,-1.028069203898607236e-06 +0.000000000000000000e+00,-1.590351524614447460e-08,-3.180703049228894920e-08,-4.771054573843342380e-08,-6.361406098457789840e-08,-7.951757623072237300e-08,-9.542109147686684761e-08,-1.113246067230113222e-07,-1.272281219691557968e-07,-1.431316372153002582e-07,-1.590351524614447195e-07,-1.749386677075891809e-07,-1.908421829537336423e-07,-2.067456981998781036e-07,-2.226492134460225650e-07,-2.385527286921670264e-07,-2.544562439383114877e-07,-2.703597591844559491e-07,-2.862632744306004105e-07,-3.021667896767448718e-07,-3.180703049228893332e-07,-3.339738201690337946e-07,-3.498773354151782559e-07,-3.657808506613227173e-07,-3.816843659074671787e-07,-3.975878811536116400e-07,-4.134913963997561014e-07,-4.293949116459005628e-07,-4.452984268920450241e-07,-4.612019421381894855e-07,-4.771054573843339469e-07,-4.930089726304784082e-07,-5.089124878766228696e-07,-5.248160031227673310e-07,-5.407195183689117923e-07,-5.566230336150562537e-07,-5.725265488612007151e-07,-5.884300641073451764e-07,-6.043335793534896378e-07,-6.202370945996340992e-07,-6.361406098457785605e-07,-6.520441250919230219e-07,-6.679476403380674833e-07,-6.838511555842119446e-07,-6.997546708303564060e-07,-7.156581860765008674e-07,-7.315617013226453287e-07,-7.474652165687897901e-07,-7.633687318149342515e-07,-7.792722470610787128e-07,-7.951757623072231742e-07,-8.110792775533676356e-07,-8.269827927995120969e-07,-8.428863080456565583e-07,-8.587898232918010196e-07,-8.746933385379454810e-07,-8.905968537840899424e-07,-9.065003690302344037e-07,-9.224038842763788651e-07,-9.383073995225233265e-07,-9.542109147686676820e-07,-9.701144300148119316e-07,-9.860179452609561812e-07,-1.001921460507100431e-06 +0.000000000000000000e+00,-1.451068604373631548e-08,-2.902137208747263096e-08,-4.353205813120894479e-08,-5.804274417494525531e-08,-7.255343021868156582e-08,-8.706411626241787634e-08,-1.015748023061541869e-07,-1.160854883498904974e-07,-1.305961743936268079e-07,-1.451068604373631316e-07,-1.596175464810994554e-07,-1.741282325248357792e-07,-1.886389185685721029e-07,-2.031496046123084267e-07,-2.176602906560447504e-07,-2.321709766997810742e-07,-2.466816627435173979e-07,-2.611923487872537217e-07,-2.757030348309900454e-07,-2.902137208747263692e-07,-3.047244069184626929e-07,-3.192350929621990167e-07,-3.337457790059353404e-07,-3.482564650496716642e-07,-3.627671510934079879e-07,-3.772778371371443117e-07,-3.917885231808806354e-07,-4.062992092246169592e-07,-4.208098952683532829e-07,-4.353205813120896067e-07,-4.498312673558259304e-07,-4.643419533995622542e-07,-4.788526394432985250e-07,-4.933633254870347958e-07,-5.078740115307710666e-07,-5.223846975745073375e-07,-5.368953836182436083e-07,-5.514060696619798791e-07,-5.659167557057161499e-07,-5.804274417494524207e-07,-5.949381277931886915e-07,-6.094488138369249623e-07,-6.239594998806612331e-07,-6.384701859243975040e-07,-6.529808719681337748e-07,-6.674915580118700456e-07,-6.820022440556063164e-07,-6.965129300993425872e-07,-7.110236161430788580e-07,-7.255343021868151288e-07,-7.400449882305513996e-07,-7.545556742742876705e-07,-7.690663603180239413e-07,-7.835770463617602121e-07,-7.980877324054964829e-07,-8.125984184492327537e-07,-8.271091044929690245e-07,-8.416197905367052953e-07,-8.561304765804415661e-07,-8.706411626241778370e-07,-8.851518486679141078e-07,-8.996625347116503786e-07,-9.141732207553866494e-07 +0.000000000000000000e+00,-1.712592247170676103e-08,-3.425184494341352206e-08,-5.137776741512028640e-08,-6.850368988682705735e-08,-8.562961235853382831e-08,-1.027555348302405993e-07,-1.198814573019473702e-07,-1.370073797736541412e-07,-1.541333022453609121e-07,-1.712592247170676831e-07,-1.883851471887744540e-07,-2.055110696604812250e-07,-2.226369921321879960e-07,-2.397629146038947404e-07,-2.568888370756014849e-07,-2.740147595473082294e-07,-2.911406820190149739e-07,-3.082666044907217184e-07,-3.253925269624284629e-07,-3.425184494341352074e-07,-3.596443719058419518e-07,-3.767702943775486963e-07,-3.938962168492554408e-07,-4.110221393209621853e-07,-4.281480617926689298e-07,-4.452739842643756743e-07,-4.623999067360824187e-07,-4.795258292077891632e-07,-4.966517516794959077e-07,-5.137776741512026522e-07,-5.309035966229093967e-07,-5.480295190946161412e-07,-5.651554415663228857e-07,-5.822813640380296301e-07,-5.994072865097363746e-07,-6.165332089814431191e-07,-6.336591314531498636e-07,-6.507850539248566081e-07,-6.679109763965633526e-07,-6.850368988682700971e-07,-7.021628213399768415e-07,-7.192887438116835860e-07,-7.364146662833903305e-07,-7.535405887550970750e-07,-7.706665112268038195e-07,-7.877924336985105640e-07,-8.049183561702173085e-07,-8.220442786419240529e-07,-8.391702011136307974e-07,-8.562961235853375419e-07,-8.734220460570442864e-07,-8.905479685287510309e-07,-9.076738910004577754e-07,-9.247998134721645199e-07,-9.419257359438712643e-07,-9.590516584155781147e-07,-9.761775808872848592e-07,-9.933035033589916037e-07,-1.010429425830698348e-06,-1.027555348302405093e-06,-1.044681270774111837e-06,-1.061807193245818582e-06,-1.078933115717525326e-06 +0.000000000000000000e+00,-1.672941203179212710e-08,-3.345882406358425420e-08,-5.018823609537638129e-08,-6.691764812716850839e-08,-8.364706015896063549e-08,-1.003764721907527626e-07,-1.171058842225448897e-07,-1.338352962543370168e-07,-1.505647082861291306e-07,-1.672941203179212445e-07,-1.840235323497133584e-07,-2.007529443815054722e-07,-2.174823564132975861e-07,-2.342117684450897000e-07,-2.509411804768818138e-07,-2.676705925086739277e-07,-2.844000045404660416e-07,-3.011294165722581554e-07,-3.178588286040502693e-07,-3.345882406358423831e-07,-3.513176526676344970e-07,-3.680470646994266109e-07,-3.847764767312187247e-07,-4.015058887630108386e-07,-4.182353007948029525e-07,-4.349647128265950663e-07,-4.516941248583871802e-07,-4.684235368901792940e-07,-4.851529489219714608e-07,-5.018823609537636276e-07,-5.186117729855557945e-07,-5.353411850173479613e-07,-5.520705970491401281e-07,-5.688000090809322949e-07,-5.855294211127244617e-07,-6.022588331445166285e-07,-6.189882451763087953e-07,-6.357176572081009621e-07,-6.524470692398931289e-07,-6.691764812716852957e-07,-6.859058933034774625e-07,-7.026353053352696293e-07,-7.193647173670617961e-07,-7.360941293988539629e-07,-7.528235414306461297e-07,-7.695529534624382965e-07,-7.862823654942304633e-07,-8.030117775260226301e-07,-8.197411895578147969e-07,-8.364706015896069637e-07,-8.532000136213991305e-07,-8.699294256531912973e-07,-8.866588376849834641e-07,-9.033882497167756309e-07,-9.201176617485677977e-07,-9.368470737803599645e-07,-9.535764858121521313e-07,-9.703058978439441922e-07,-9.870353098757362532e-07,-1.003764721907528314e-06,-1.020494133939320375e-06,-1.037223545971112436e-06,-1.053952958002904497e-06 +0.000000000000000000e+00,-1.520124295281310440e-08,-3.040248590562620880e-08,-4.560372885843931320e-08,-6.080497181125241760e-08,-7.600621476406552199e-08,-9.120745771687862639e-08,-1.064087006696917308e-07,-1.216099436225048352e-07,-1.368111865753179396e-07,-1.520124295281310440e-07,-1.672136724809441484e-07,-1.824149154337572528e-07,-1.976161583865703572e-07,-2.128174013393834616e-07,-2.280186442921965660e-07,-2.432198872450096704e-07,-2.584211301978227748e-07,-2.736223731506358792e-07,-2.888236161034489836e-07,-3.040248590562620880e-07,-3.192261020090751924e-07,-3.344273449618882968e-07,-3.496285879147014012e-07,-3.648298308675145056e-07,-3.800310738203276100e-07,-3.952323167731407144e-07,-4.104335597259538188e-07,-4.256348026787669232e-07,-4.408360456315800276e-07,-4.560372885843931320e-07,-4.712385315372062364e-07,-4.864397744900193408e-07,-5.016410174428324452e-07,-5.168422603956455496e-07,-5.320435033484586540e-07,-5.472447463012717584e-07,-5.624459892540848628e-07,-5.776472322068979672e-07,-5.928484751597110716e-07,-6.080497181125241760e-07,-6.232509610653372804e-07,-6.384522040181503848e-07,-6.536534469709634892e-07,-6.688546899237765936e-07,-6.840559328765896980e-07,-6.992571758294028024e-07,-7.144584187822159067e-07,-7.296596617350290111e-07,-7.448609046878421155e-07,-7.600621476406552199e-07,-7.752633905934683243e-07,-7.904646335462814287e-07,-8.056658764990945331e-07,-8.208671194519076375e-07,-8.360683624047207419e-07,-8.512696053575338463e-07,-8.664708483103469507e-07,-8.816720912631600551e-07,-8.968733342159731595e-07,-9.120745771687862639e-07,-9.272758201215993683e-07,-9.424770630744124727e-07,-9.576783060272255771e-07 +0.000000000000000000e+00,-1.712592247170342915e-08,-3.425184494340685829e-08,-5.137776741511028744e-08,-6.850368988681371658e-08,-8.562961235851715235e-08,-1.027555348302205881e-07,-1.198814573019240239e-07,-1.370073797736274596e-07,-1.541333022453308954e-07,-1.712592247170343312e-07,-1.883851471887377669e-07,-2.055110696604412027e-07,-2.226369921321446385e-07,-2.397629146038480477e-07,-2.568888370755514570e-07,-2.740147595472548663e-07,-2.911406820189582756e-07,-3.082666044906616849e-07,-3.253925269623650942e-07,-3.425184494340685035e-07,-3.596443719057719128e-07,-3.767702943774753221e-07,-3.938962168491787314e-07,-4.110221393208821407e-07,-4.281480617925855500e-07,-4.452739842642889593e-07,-4.623999067359923686e-07,-4.795258292076957779e-07,-4.966517516793992401e-07,-5.137776741511027023e-07,-5.309035966228061646e-07,-5.480295190945096268e-07,-5.651554415662130890e-07,-5.822813640379165513e-07,-5.994072865096200135e-07,-6.165332089813234757e-07,-6.336591314530269379e-07,-6.507850539247304002e-07,-6.679109763964338624e-07,-6.850368988681373246e-07,-7.021628213398407869e-07,-7.192887438115442491e-07,-7.364146662832477113e-07,-7.535405887549511736e-07,-7.706665112266546358e-07,-7.877924336983580980e-07,-8.049183561700615603e-07,-8.220442786417650225e-07,-8.391702011134684847e-07,-8.562961235851719470e-07,-8.734220460568754092e-07,-8.905479685285788714e-07,-9.076738910002823337e-07,-9.247998134719857959e-07,-9.419257359436892581e-07,-9.590516584153926145e-07,-9.761775808870959709e-07,-9.933035033587993272e-07,-1.010429425830502684e-06,-1.027555348302206040e-06,-1.044681270773909396e-06,-1.061807193245612753e-06,-1.078933115717316109e-06 +0.000000000000000000e+00,-1.672941203178908638e-08,-3.345882406357817276e-08,-5.018823609536726245e-08,-6.691764812715635876e-08,-8.364706015894545507e-08,-1.003764721907345514e-07,-1.171058842225236477e-07,-1.338352962543127440e-07,-1.505647082861018403e-07,-1.672941203178909366e-07,-1.840235323496800329e-07,-2.007529443814691292e-07,-2.174823564132582255e-07,-2.342117684450473218e-07,-2.509411804768364446e-07,-2.676705925086255409e-07,-2.844000045404146372e-07,-3.011294165722037335e-07,-3.178588286039928299e-07,-3.345882406357819262e-07,-3.513176526675710225e-07,-3.680470646993601188e-07,-3.847764767311492151e-07,-4.015058887629383114e-07,-4.182353007947274077e-07,-4.349647128265165040e-07,-4.516941248583056003e-07,-4.684235368900946966e-07,-4.851529489218837929e-07,-5.018823609536728892e-07,-5.186117729854619856e-07,-5.353411850172510819e-07,-5.520705970490401782e-07,-5.688000090808292745e-07,-5.855294211126183708e-07,-6.022588331444074671e-07,-6.189882451761965634e-07,-6.357176572079856597e-07,-6.524470692397747560e-07,-6.691764812715638523e-07,-6.859058933033529486e-07,-7.026353053351420449e-07,-7.193647173669311412e-07,-7.360941293987202376e-07,-7.528235414305093339e-07,-7.695529534622984302e-07,-7.862823654940875265e-07,-8.030117775258766228e-07,-8.197411895576657191e-07,-8.364706015894548154e-07,-8.532000136212439117e-07,-8.699294256530330080e-07,-8.866588376848221043e-07,-9.033882497166112006e-07,-9.201176617484002969e-07,-9.368470737801893933e-07,-9.535764858119784896e-07,-9.703058978437675859e-07,-9.870353098755566822e-07,-1.003764721907345778e-06,-1.020494133939134875e-06,-1.037223545970923971e-06,-1.053952958002713067e-06 +0.000000000000000000e+00,-1.520124295281023574e-08,-3.040248590562047147e-08,-4.560372885843071052e-08,-6.080497181124095618e-08,-7.600621476405120184e-08,-9.120745771686144751e-08,-1.064087006696716932e-07,-1.216099436224819388e-07,-1.368111865752921845e-07,-1.520124295281024302e-07,-1.672136724809126758e-07,-1.824149154337229215e-07,-1.976161583865331671e-07,-2.128174013393434128e-07,-2.280186442921536585e-07,-2.432198872449639306e-07,-2.584211301977741763e-07,-2.736223731505844219e-07,-2.888236161033946676e-07,-3.040248590562049133e-07,-3.192261020090151589e-07,-3.344273449618254046e-07,-3.496285879146356502e-07,-3.648298308674458959e-07,-3.800310738202561416e-07,-3.952323167730663872e-07,-4.104335597258766329e-07,-4.256348026786868786e-07,-4.408360456314971242e-07,-4.560372885843073699e-07,-4.712385315371176155e-07,-4.864397744899278612e-07,-5.016410174427381069e-07,-5.168422603955483525e-07,-5.320435033483585982e-07,-5.472447463011688439e-07,-5.624459892539790895e-07,-5.776472322067893352e-07,-5.928484751595995808e-07,-6.080497181124098265e-07,-6.232509610652200722e-07,-6.384522040180303178e-07,-6.536534469708405635e-07,-6.688546899236508092e-07,-6.840559328764610548e-07,-6.992571758292713005e-07,-7.144584187820815461e-07,-7.296596617348917918e-07,-7.448609046877020375e-07,-7.600621476405122831e-07,-7.752633905933225288e-07,-7.904646335461327745e-07,-8.056658764989430201e-07,-8.208671194517532658e-07,-8.360683624045635115e-07,-8.512696053573737571e-07,-8.664708483101840028e-07,-8.816720912629942484e-07,-8.968733342158044941e-07,-9.120745771686147398e-07,-9.272758201214249854e-07,-9.424770630742352311e-07,-9.576783060270453709e-07 +0.000000000000000000e+00,-1.787497508500927369e-08,-3.574995017001854738e-08,-5.362492525502782106e-08,-7.149990034003709475e-08,-8.937487542504636182e-08,-1.072498505100556289e-07,-1.251248255950648960e-07,-1.429998006800741630e-07,-1.608747757650834301e-07,-1.787497508500926972e-07,-1.966247259351019642e-07,-2.144997010201112313e-07,-2.323746761051204984e-07,-2.502496511901297390e-07,-2.681246262751389531e-07,-2.859996013601481672e-07,-3.038745764451573814e-07,-3.217495515301665955e-07,-3.396245266151758096e-07,-3.574995017001850238e-07,-3.753744767851942379e-07,-3.932494518702034520e-07,-4.111244269552126662e-07,-4.289994020402218803e-07,-4.468743771252310944e-07,-4.647493522102403086e-07,-4.826243272952495227e-07,-5.004993023802587368e-07,-5.183742774652679509e-07,-5.362492525502771651e-07,-5.541242276352863792e-07,-5.719992027202955933e-07,-5.898741778053048075e-07,-6.077491528903140216e-07,-6.256241279753232357e-07,-6.434991030603324499e-07,-6.613740781453416640e-07,-6.792490532303508781e-07,-6.971240283153600923e-07,-7.149990034003693064e-07,-7.328739784853785205e-07,-7.507489535703877346e-07,-7.686239286553969488e-07,-7.864989037404061629e-07,-8.043738788254153770e-07,-8.222488539104245912e-07,-8.401238289954338053e-07,-8.579988040804430194e-07,-8.758737791654522336e-07,-8.937487542504614477e-07,-9.116237293354706618e-07,-9.294987044204798760e-07,-9.473736795054890901e-07,-9.652486545904981983e-07,-9.831236296755073066e-07,-1.000998604760516415e-06,-1.018873579845525523e-06,-1.036748554930534631e-06,-1.054623530015543740e-06,-1.072498505100552848e-06,-1.090373480185561956e-06,-1.108248455270571064e-06,-1.126123430355580173e-06 +0.000000000000000000e+00,-1.750865367108041113e-08,-3.501730734216082227e-08,-5.252596101324123671e-08,-7.003461468432165777e-08,-8.754326835540207883e-08,-1.050519220264824999e-07,-1.225605756975629209e-07,-1.400692293686433420e-07,-1.575778830397237631e-07,-1.750865367108041841e-07,-1.925951903818846052e-07,-2.101038440529650262e-07,-2.276124977240454473e-07,-2.451211513951258948e-07,-2.626298050662063688e-07,-2.801384587372868428e-07,-2.976471124083673168e-07,-3.151557660794477908e-07,-3.326644197505282648e-07,-3.501730734216087388e-07,-3.676817270926892128e-07,-3.851903807637696868e-07,-4.026990344348501608e-07,-4.202076881059306348e-07,-4.377163417770111088e-07,-4.552249954480915828e-07,-4.727336491191720568e-07,-4.902423027902525308e-07,-5.077509564613330048e-07,-5.252596101324134788e-07,-5.427682638034939528e-07,-5.602769174745744268e-07,-5.777855711456549008e-07,-5.952942248167353748e-07,-6.128028784878158488e-07,-6.303115321588963228e-07,-6.478201858299767968e-07,-6.653288395010572708e-07,-6.828374931721377448e-07,-7.003461468432182188e-07,-7.178548005142986928e-07,-7.353634541853791668e-07,-7.528721078564596408e-07,-7.703807615275401148e-07,-7.878894151986205888e-07,-8.053980688697010628e-07,-8.229067225407815368e-07,-8.404153762118620108e-07,-8.579240298829424848e-07,-8.754326835540229588e-07,-8.929413372251034328e-07,-9.104499908961839068e-07,-9.279586445672643808e-07,-9.454672982383448548e-07,-9.629759519094254347e-07,-9.804846055805061204e-07,-9.979932592515868062e-07,-1.015501912922667492e-06,-1.033010566593748178e-06,-1.050519220264828863e-06,-1.068027873935909549e-06,-1.085536527606990235e-06,-1.103045181278070921e-06 +0.000000000000000000e+00,-1.582903562572525130e-08,-3.165807125145050260e-08,-4.748710687717575390e-08,-6.331614250290100520e-08,-7.914517812862626312e-08,-9.497421375435152104e-08,-1.108032493800767790e-07,-1.266322850058020369e-07,-1.424613206315272948e-07,-1.582903562572525527e-07,-1.741193918829778106e-07,-1.899484275087030685e-07,-2.057774631344283265e-07,-2.216064987601535844e-07,-2.374355343858788423e-07,-2.532645700116041267e-07,-2.690936056373293846e-07,-2.849226412630546425e-07,-3.007516768887799004e-07,-3.165807125145051584e-07,-3.324097481402304163e-07,-3.482387837659556742e-07,-3.640678193916809321e-07,-3.798968550174061900e-07,-3.957258906431314479e-07,-4.115549262688567059e-07,-4.273839618945819638e-07,-4.432129975203072217e-07,-4.590420331460324796e-07,-4.748710687717577375e-07,-4.907001043974829954e-07,-5.065291400232082534e-07,-5.223581756489335113e-07,-5.381872112746587692e-07,-5.540162469003840271e-07,-5.698452825261092850e-07,-5.856743181518345429e-07,-6.015033537775598009e-07,-6.173323894032850588e-07,-6.331614250290103167e-07,-6.489904606547355746e-07,-6.648194962804608325e-07,-6.806485319061860905e-07,-6.964775675319113484e-07,-7.123066031576366063e-07,-7.281356387833618642e-07,-7.439646744090871221e-07,-7.597937100348123800e-07,-7.756227456605376380e-07,-7.914517812862628959e-07,-8.072808169119881538e-07,-8.231098525377134117e-07,-8.389388881634386696e-07,-8.547679237891639275e-07,-8.705969594148891855e-07,-8.864259950406144434e-07,-9.022550306663397013e-07,-9.180840662920649592e-07,-9.339131019177902171e-07,-9.497421375435154751e-07,-9.655711731692406271e-07,-9.814002087949657791e-07,-9.972292444206909312e-07 +0.000000000000000000e+00,-1.787497508500572012e-08,-3.574995017001144024e-08,-5.362492525501716036e-08,-7.149990034002288048e-08,-8.937487542502860060e-08,-1.072498505100343207e-07,-1.251248255950400408e-07,-1.429998006800457610e-07,-1.608747757650514811e-07,-1.787497508500572012e-07,-1.966247259350629213e-07,-2.144997010200686414e-07,-2.323746761050743616e-07,-2.502496511900800817e-07,-2.681246262750858018e-07,-2.859996013600915219e-07,-3.038745764450972420e-07,-3.217495515301029622e-07,-3.396245266151086823e-07,-3.574995017001144024e-07,-3.753744767851201225e-07,-3.932494518701258426e-07,-4.111244269551315628e-07,-4.289994020401372829e-07,-4.468743771251430030e-07,-4.647493522101487231e-07,-4.826243272951544432e-07,-5.004993023801601634e-07,-5.183742774651658835e-07,-5.362492525501716036e-07,-5.541242276351773237e-07,-5.719992027201830438e-07,-5.898741778051887640e-07,-6.077491528901944841e-07,-6.256241279752002042e-07,-6.434991030602059243e-07,-6.613740781452116444e-07,-6.792490532302173646e-07,-6.971240283152230847e-07,-7.149990034002288048e-07,-7.328739784852345249e-07,-7.507489535702402450e-07,-7.686239286552459652e-07,-7.864989037402516853e-07,-8.043738788252574054e-07,-8.222488539102631255e-07,-8.401238289952688456e-07,-8.579988040802745658e-07,-8.758737791652802859e-07,-8.937487542502860060e-07,-9.116237293352917261e-07,-9.294987044202974462e-07,-9.473736795053031664e-07,-9.652486545903088865e-07,-9.831236296753146066e-07,-1.000998604760320327e-06,-1.018873579845326047e-06,-1.036748554930331767e-06,-1.054623530015337487e-06,-1.072498505100343207e-06,-1.090373480185348927e-06,-1.108248455270354647e-06,-1.126123430355360368e-06 +0.000000000000000000e+00,-1.750865367107690058e-08,-3.501730734215380116e-08,-5.252596101323070174e-08,-7.003461468430760231e-08,-8.754326835538450289e-08,-1.050519220264614035e-07,-1.225605756975383040e-07,-1.400692293686152046e-07,-1.575778830396921052e-07,-1.750865367107690058e-07,-1.925951903818459064e-07,-2.101038440529228069e-07,-2.276124977239997075e-07,-2.451211513950766081e-07,-2.626298050661535351e-07,-2.801384587372304622e-07,-2.976471124083073892e-07,-3.151557660793843163e-07,-3.326644197504612433e-07,-3.501730734215381704e-07,-3.676817270926150974e-07,-3.851903807636920245e-07,-4.026990344347689515e-07,-4.202076881058458786e-07,-4.377163417769228056e-07,-4.552249954479997327e-07,-4.727336491190766597e-07,-4.902423027901535338e-07,-5.077509564612304079e-07,-5.252596101323072821e-07,-5.427682638033841562e-07,-5.602769174744610303e-07,-5.777855711455379044e-07,-5.952942248166147785e-07,-6.128028784876916526e-07,-6.303115321587685267e-07,-6.478201858298454008e-07,-6.653288395009222749e-07,-6.828374931719991490e-07,-7.003461468430760231e-07,-7.178548005141528973e-07,-7.353634541852297714e-07,-7.528721078563066455e-07,-7.703807615273835196e-07,-7.878894151984603937e-07,-8.053980688695372678e-07,-8.229067225406141419e-07,-8.404153762116910160e-07,-8.579240298827678901e-07,-8.754326835538447642e-07,-8.929413372249216383e-07,-9.104499908959985124e-07,-9.279586445670753866e-07,-9.454672982381522607e-07,-9.629759519092291348e-07,-9.804846055803060089e-07,-9.979932592513828830e-07,-1.015501912922459757e-06,-1.033010566593536631e-06,-1.050519220264613505e-06,-1.068027873935690379e-06,-1.085536527606767254e-06,-1.103045181277844128e-06 +0.000000000000000000e+00,-1.582903562572247859e-08,-3.165807125144495718e-08,-4.748710687716743577e-08,-6.331614250288991436e-08,-7.914517812861239295e-08,-9.497421375433487154e-08,-1.108032493800573501e-07,-1.266322850057798287e-07,-1.424613206315023073e-07,-1.582903562572247859e-07,-1.741193918829472645e-07,-1.899484275086697431e-07,-2.057774631343922217e-07,-2.216064987601147003e-07,-2.374355343858371789e-07,-2.532645700115596575e-07,-2.690936056372821625e-07,-2.849226412630046676e-07,-3.007516768887271726e-07,-3.165807125144496777e-07,-3.324097481401721828e-07,-3.482387837658946878e-07,-3.640678193916171929e-07,-3.798968550173396979e-07,-3.957258906430622030e-07,-4.115549262687847081e-07,-4.273839618945072131e-07,-4.432129975202297182e-07,-4.590420331459522232e-07,-4.748710687716747283e-07,-4.907001043973972334e-07,-5.065291400231197384e-07,-5.223581756488422435e-07,-5.381872112745647485e-07,-5.540162469002872536e-07,-5.698452825260097587e-07,-5.856743181517322637e-07,-6.015033537774547688e-07,-6.173323894031772738e-07,-6.331614250288997789e-07,-6.489904606546222840e-07,-6.648194962803447890e-07,-6.806485319060672941e-07,-6.964775675317897991e-07,-7.123066031575123042e-07,-7.281356387832348093e-07,-7.439646744089573143e-07,-7.597937100346798194e-07,-7.756227456604023244e-07,-7.914517812861248295e-07,-8.072808169118473346e-07,-8.231098525375698396e-07,-8.389388881632923447e-07,-8.547679237890148497e-07,-8.705969594147373548e-07,-8.864259950404598599e-07,-9.022550306661823649e-07,-9.180840662919048700e-07,-9.339131019176273751e-07,-9.497421375433498801e-07,-9.655711731690724911e-07,-9.814002087947951020e-07,-9.972292444205177129e-07 +0.000000000000000000e+00,-1.859364391098213776e-08,-3.718728782196427552e-08,-5.578093173294641329e-08,-7.437457564392855105e-08,-9.296821955491068881e-08,-1.115618634658928266e-07,-1.301555073768749776e-07,-1.487491512878571286e-07,-1.673427951988392796e-07,-1.859364391098214306e-07,-2.045300830208035816e-07,-2.231237269317857326e-07,-2.417173708427678835e-07,-2.603110147537500610e-07,-2.789046586647322385e-07,-2.974983025757144159e-07,-3.160919464866965934e-07,-3.346855903976787709e-07,-3.532792343086609483e-07,-3.718728782196431258e-07,-3.904665221306253033e-07,-4.090601660416074807e-07,-4.276538099525896582e-07,-4.462474538635718357e-07,-4.648410977745540131e-07,-4.834347416855361906e-07,-5.020283855965183681e-07,-5.206220295075005455e-07,-5.392156734184827230e-07,-5.578093173294649005e-07,-5.764029612404470779e-07,-5.949966051514292554e-07,-6.135902490624114329e-07,-6.321838929733936103e-07,-6.507775368843757878e-07,-6.693711807953579653e-07,-6.879648247063401427e-07,-7.065584686173223202e-07,-7.251521125283044977e-07,-7.437457564392866751e-07,-7.623394003502688526e-07,-7.809330442612510301e-07,-7.995266881722332075e-07,-8.181203320832153850e-07,-8.367139759941975625e-07,-8.553076199051797399e-07,-8.739012638161619174e-07,-8.924949077271440949e-07,-9.110885516381262723e-07,-9.296821955491084498e-07,-9.482758394600906273e-07,-9.668694833710728047e-07,-9.854631272820550881e-07,-1.004056771193037371e-06,-1.022650415104019655e-06,-1.041244059015001938e-06,-1.059837702925984221e-06,-1.078431346836966505e-06,-1.097024990747948788e-06,-1.115618634658931072e-06,-1.134212278569913355e-06,-1.152805922480895638e-06,-1.171399566391877922e-06 +0.000000000000000000e+00,-1.859667712780772671e-08,-3.719335425561545342e-08,-5.579003138342318012e-08,-7.438670851123090683e-08,-9.298338563903863354e-08,-1.115800627668463602e-07,-1.301767398946540870e-07,-1.487734170224618137e-07,-1.673700941502695404e-07,-1.859667712780772671e-07,-2.045634484058849938e-07,-2.231601255336927205e-07,-2.417568026615004472e-07,-2.603534797893081739e-07,-2.789501569171159006e-07,-2.975468340449236273e-07,-3.161435111727313540e-07,-3.347401883005390807e-07,-3.533368654283468074e-07,-3.719335425561545342e-07,-3.905302196839622609e-07,-4.091268968117699876e-07,-4.277235739395777143e-07,-4.463202510673854410e-07,-4.649169281951931677e-07,-4.835136053230008944e-07,-5.021102824508085682e-07,-5.207069595786162419e-07,-5.393036367064239157e-07,-5.579003138342315895e-07,-5.764969909620392632e-07,-5.950936680898469370e-07,-6.136903452176546108e-07,-6.322870223454622845e-07,-6.508836994732699583e-07,-6.694803766010776321e-07,-6.880770537288853059e-07,-7.066737308566929796e-07,-7.252704079845006534e-07,-7.438670851123083272e-07,-7.624637622401160009e-07,-7.810604393679236747e-07,-7.996571164957313485e-07,-8.182537936235390222e-07,-8.368504707513466960e-07,-8.554471478791543698e-07,-8.740438250069620435e-07,-8.926405021347697173e-07,-9.112371792625773911e-07,-9.298338563903850648e-07,-9.484305335181927386e-07,-9.670272106460003065e-07,-9.856238877738078744e-07,-1.004220564901615442e-06,-1.022817242029423010e-06,-1.041413919157230578e-06,-1.060010596285038146e-06,-1.078607273412845714e-06,-1.097203950540653282e-06,-1.115800627668460850e-06,-1.134397304796268417e-06,-1.152993981924075985e-06,-1.171590659051883553e-06 +0.000000000000000000e+00,-1.823125525424465984e-08,-3.646251050848931969e-08,-5.469376576273397953e-08,-7.292502101697863938e-08,-9.115627627122330584e-08,-1.093875315254679723e-07,-1.276187867797126388e-07,-1.458500420339573052e-07,-1.640812972882019717e-07,-1.823125525424466382e-07,-2.005438077966913046e-07,-2.187750630509359711e-07,-2.370063183051806375e-07,-2.552375735594252775e-07,-2.734688288136699175e-07,-2.917000840679145575e-07,-3.099313393221591975e-07,-3.281625945764038375e-07,-3.463938498306484775e-07,-3.646251050848931175e-07,-3.828563603391377575e-07,-4.010876155933823975e-07,-4.193188708476270375e-07,-4.375501261018716775e-07,-4.557813813561163174e-07,-4.740126366103609574e-07,-4.922438918646055974e-07,-5.104751471188502374e-07,-5.287064023730948774e-07,-5.469376576273395174e-07,-5.651689128815841574e-07,-5.834001681358287974e-07,-6.016314233900734374e-07,-6.198626786443180774e-07,-6.380939338985627174e-07,-6.563251891528073574e-07,-6.745564444070519974e-07,-6.927876996612966374e-07,-7.110189549155412773e-07,-7.292502101697859173e-07,-7.474814654240305573e-07,-7.657127206782751973e-07,-7.839439759325198373e-07,-8.021752311867644773e-07,-8.204064864410091173e-07,-8.386377416952537573e-07,-8.568689969494983973e-07,-8.751002522037430373e-07,-8.933315074579876773e-07,-9.115627627122323173e-07,-9.297940179664769573e-07,-9.480252732207215972e-07,-9.662565284749663431e-07,-9.844877837292109831e-07,-1.002719038983455623e-06,-1.020950294237700263e-06,-1.039181549491944903e-06,-1.057412804746189543e-06,-1.075644060000434183e-06,-1.093875315254678823e-06,-1.112106570508923463e-06,-1.130337825763168103e-06,-1.148569081017412743e-06 +0.000000000000000000e+00,-1.646292753004072985e-08,-3.292585506008145970e-08,-4.938878259012218625e-08,-6.585171012016290617e-08,-8.231463765020362610e-08,-9.877756518024434602e-08,-1.152404927102850659e-07,-1.317034202403257859e-07,-1.481663477703665058e-07,-1.646292753004072257e-07,-1.810922028304479456e-07,-1.975551303604886656e-07,-2.140180578905293855e-07,-2.304809854205701054e-07,-2.469439129506108518e-07,-2.634068404806516247e-07,-2.798697680106923975e-07,-2.963326955407331704e-07,-3.127956230707739433e-07,-3.292585506008147161e-07,-3.457214781308554890e-07,-3.621844056608962619e-07,-3.786473331909370347e-07,-3.951102607209778076e-07,-4.115731882510185805e-07,-4.280361157810593533e-07,-4.444990433111001262e-07,-4.609619708411408991e-07,-4.774248983711816719e-07,-4.938878259012224448e-07,-5.103507534312632177e-07,-5.268136809613039905e-07,-5.432766084913447634e-07,-5.597395360213855362e-07,-5.762024635514263091e-07,-5.926653910814670820e-07,-6.091283186115078548e-07,-6.255912461415486277e-07,-6.420541736715894006e-07,-6.585171012016301734e-07,-6.749800287316709463e-07,-6.914429562617117192e-07,-7.079058837917524920e-07,-7.243688113217932649e-07,-7.408317388518340378e-07,-7.572946663818748106e-07,-7.737575939119155835e-07,-7.902205214419563564e-07,-8.066834489719971292e-07,-8.231463765020379021e-07,-8.396093040320786750e-07,-8.560722315621194478e-07,-8.725351590921602207e-07,-8.889980866222009935e-07,-9.054610141522417664e-07,-9.219239416822825393e-07,-9.383868692123233121e-07,-9.548497967423641909e-07,-9.713127242724050696e-07,-9.877756518024459484e-07,-1.004238579332486827e-06,-1.020701506862527706e-06,-1.037164434392568585e-06 +0.000000000000000000e+00,-1.859603345945618463e-08,-3.719206691891236927e-08,-5.578810037836855390e-08,-7.438413383782473853e-08,-9.298016729728092978e-08,-1.115762007567371210e-07,-1.301722342161933123e-07,-1.487682676756495035e-07,-1.673643011351056948e-07,-1.859603345945618860e-07,-2.045563680540180773e-07,-2.231524015134742685e-07,-2.417484349729304598e-07,-2.603444684323866246e-07,-2.789405018918427893e-07,-2.975365353512989541e-07,-3.161325688107551189e-07,-3.347286022702112837e-07,-3.533246357296674485e-07,-3.719206691891236132e-07,-3.905167026485797780e-07,-4.091127361080359428e-07,-4.277087695674921076e-07,-4.463048030269482724e-07,-4.649008364864044372e-07,-4.834968699458606019e-07,-5.020929034053167138e-07,-5.206889368647728256e-07,-5.392849703242289375e-07,-5.578810037836850493e-07,-5.764770372431411611e-07,-5.950730707025972730e-07,-6.136691041620533848e-07,-6.322651376215094967e-07,-6.508611710809656085e-07,-6.694572045404217203e-07,-6.880532379998778322e-07,-7.066492714593339440e-07,-7.252453049187900559e-07,-7.438413383782461677e-07,-7.624373718377022795e-07,-7.810334052971583914e-07,-7.996294387566145032e-07,-8.182254722160706151e-07,-8.368215056755267269e-07,-8.554175391349828388e-07,-8.740135725944389506e-07,-8.926096060538950624e-07,-9.112056395133511743e-07,-9.298016729728072861e-07,-9.483977064322633980e-07,-9.669937398917195098e-07,-9.855897733511756216e-07,-1.004185806810631733e-06,-1.022781840270087845e-06,-1.041377873729543957e-06,-1.059973907189000069e-06,-1.078569940648456181e-06,-1.097165974107912293e-06,-1.115762007567368405e-06,-1.134358041026824516e-06,-1.152954074486280628e-06,-1.171550107945736740e-06 +0.000000000000000000e+00,-1.646633251004096194e-08,-3.293266502008192388e-08,-4.939899753012288252e-08,-6.586533004016383453e-08,-8.233166255020478655e-08,-9.879799506024573856e-08,-1.152643275702866906e-07,-1.317306600803276426e-07,-1.481969925903685814e-07,-1.646633251004095202e-07,-1.811296576104504589e-07,-1.975959901204913977e-07,-2.140623226305323365e-07,-2.305286551405732753e-07,-2.469949876506142141e-07,-2.634613201606551264e-07,-2.799276526706960387e-07,-2.963939851807369510e-07,-3.128603176907778633e-07,-3.293266502008187756e-07,-3.457929827108596879e-07,-3.622593152209006002e-07,-3.787256477309415125e-07,-3.951919802409824249e-07,-4.116583127510233372e-07,-4.281246452610642495e-07,-4.445909777711051618e-07,-4.610573102811460741e-07,-4.775236427911869864e-07,-4.939899753012278987e-07,-5.104563078112688110e-07,-5.269226403213097233e-07,-5.433889728313506357e-07,-5.598553053413915480e-07,-5.763216378514324603e-07,-5.927879703614733726e-07,-6.092543028715142849e-07,-6.257206353815551972e-07,-6.421869678915961095e-07,-6.586533004016370218e-07,-6.751196329116779341e-07,-6.915859654217188465e-07,-7.080522979317597588e-07,-7.245186304418006711e-07,-7.409849629518415834e-07,-7.574512954618824957e-07,-7.739176279719234080e-07,-7.903839604819643203e-07,-8.068502929920052326e-07,-8.233166255020461449e-07,-8.397829580120870572e-07,-8.562492905221279696e-07,-8.727156230321688819e-07,-8.891819555422097942e-07,-9.056482880522507065e-07,-9.221146205622916188e-07,-9.385809530723325311e-07,-9.550472855823733375e-07,-9.715136180924142499e-07,-9.879799506024551622e-07,-1.004446283112496074e-06,-1.020912615622536987e-06,-1.037378948132577899e-06 +0.000000000000000000e+00,-1.859364391097865368e-08,-3.718728782195730735e-08,-5.578093173293595772e-08,-7.437457564391460147e-08,-9.296821955489324522e-08,-1.115618634658718890e-07,-1.301555073768505195e-07,-1.487491512878291500e-07,-1.673427951988077805e-07,-1.859364391097864110e-07,-2.045300830207650416e-07,-2.231237269317436721e-07,-2.417173708427223026e-07,-2.603110147537009331e-07,-2.789046586646795636e-07,-2.974983025756581941e-07,-3.160919464866368247e-07,-3.346855903976154552e-07,-3.532792343085940857e-07,-3.718728782195727162e-07,-3.904665221305513467e-07,-4.090601660415299772e-07,-4.276538099525086078e-07,-4.462474538634872383e-07,-4.648410977744658688e-07,-4.834347416854444993e-07,-5.020283855964231828e-07,-5.206220295074018662e-07,-5.392156734183805497e-07,-5.578093173293592331e-07,-5.764029612403379166e-07,-5.949966051513166000e-07,-6.135902490622952835e-07,-6.321838929732739669e-07,-6.507775368842526504e-07,-6.693711807952313339e-07,-6.879648247062100173e-07,-7.065584686171887008e-07,-7.251521125281673842e-07,-7.437457564391460677e-07,-7.623394003501247511e-07,-7.809330442611034346e-07,-7.995266881720821180e-07,-8.181203320830608015e-07,-8.367139759940394850e-07,-8.553076199050181684e-07,-8.739012638159968519e-07,-8.924949077269755353e-07,-9.110885516379542188e-07,-9.296821955489329022e-07,-9.482758394599115857e-07,-9.668694833708902691e-07,-9.854631272818689526e-07,-1.004056771192847636e-06,-1.022650415103826320e-06,-1.041244059014805003e-06,-1.059837702925783686e-06,-1.078431346836762370e-06,-1.097024990747741053e-06,-1.115618634658719737e-06,-1.134212278569698420e-06,-1.152805922480677104e-06,-1.171399566391655787e-06 +0.000000000000000000e+00,-1.859603345945448395e-08,-3.719206691890896790e-08,-5.578810037836345185e-08,-7.438413383781793580e-08,-9.298016729727241975e-08,-1.115762007567269037e-07,-1.301722342161814009e-07,-1.487682676756358981e-07,-1.673643011350903953e-07,-1.859603345945448924e-07,-2.045563680539993896e-07,-2.231524015134538868e-07,-2.417484349729083840e-07,-2.603444684323629076e-07,-2.789405018918174313e-07,-2.975365353512719550e-07,-3.161325688107264786e-07,-3.347286022701810023e-07,-3.533246357296355259e-07,-3.719206691890900496e-07,-3.905167026485445732e-07,-4.091127361079990969e-07,-4.277087695674536205e-07,-4.463048030269081442e-07,-4.649008364863626678e-07,-4.834968699458171915e-07,-5.020929034052717151e-07,-5.206889368647262388e-07,-5.392849703241807625e-07,-5.578810037836352861e-07,-5.764770372430898098e-07,-5.950730707025443334e-07,-6.136691041619988571e-07,-6.322651376214533807e-07,-6.508611710809079044e-07,-6.694572045403624280e-07,-6.880532379998169517e-07,-7.066492714592714753e-07,-7.252453049187259990e-07,-7.438413383781805227e-07,-7.624373718376350463e-07,-7.810334052970895700e-07,-7.996294387565440936e-07,-8.182254722159986173e-07,-8.368215056754531409e-07,-8.554175391349076646e-07,-8.740135725943621882e-07,-8.926096060538167119e-07,-9.112056395132712355e-07,-9.298016729727257592e-07,-9.483977064321802829e-07,-9.669937398916348065e-07,-9.855897733510892243e-07,-1.004185806810543642e-06,-1.022781840269998060e-06,-1.041377873729452478e-06,-1.059973907188906895e-06,-1.078569940648361313e-06,-1.097165974107815731e-06,-1.115762007567270149e-06,-1.134358041026724566e-06,-1.152954074486178984e-06,-1.171550107945633402e-06 +0.000000000000000000e+00,-1.823125525424115260e-08,-3.646251050848230520e-08,-5.469376576272345780e-08,-7.292502101696461040e-08,-9.115627627120575638e-08,-1.093875315254469024e-07,-1.276187867796880483e-07,-1.458500420339291943e-07,-1.640812972881703403e-07,-1.823125525424114863e-07,-2.005438077966526323e-07,-2.187750630508937782e-07,-2.370063183051349242e-07,-2.552375735593760437e-07,-2.734688288136171897e-07,-2.917000840678583357e-07,-3.099313393220994817e-07,-3.281625945763406277e-07,-3.463938498305817736e-07,-3.646251050848229196e-07,-3.828563603390640656e-07,-4.010876155933052116e-07,-4.193188708475463576e-07,-4.375501261017875036e-07,-4.557813813560286495e-07,-4.740126366102697955e-07,-4.922438918645109415e-07,-5.104751471187520875e-07,-5.287064023729932335e-07,-5.469376576272343794e-07,-5.651689128814755254e-07,-5.834001681357166714e-07,-6.016314233899578174e-07,-6.198626786441989634e-07,-6.380939338984401094e-07,-6.563251891526812553e-07,-6.745564444069224013e-07,-6.927876996611635473e-07,-7.110189549154046933e-07,-7.292502101696458393e-07,-7.474814654238869852e-07,-7.657127206781281312e-07,-7.839439759323692772e-07,-8.021752311866104232e-07,-8.204064864408515692e-07,-8.386377416950927152e-07,-8.568689969493338611e-07,-8.751002522035750071e-07,-8.933315074578161531e-07,-9.115627627120572991e-07,-9.297940179662984451e-07,-9.480252732205395910e-07,-9.662565284747808429e-07,-9.844877837290220948e-07,-1.002719038983263347e-06,-1.020950294237504598e-06,-1.039181549491745850e-06,-1.057412804745987102e-06,-1.075644060000228354e-06,-1.093875315254469606e-06,-1.112106570508710858e-06,-1.130337825762952110e-06,-1.148569081017193362e-06 +0.000000000000000000e+00,-1.646292753003819206e-08,-3.292585506007638412e-08,-4.938878259011457618e-08,-6.585171012015276825e-08,-8.231463765019096031e-08,-9.877756518022915237e-08,-1.152404927102673444e-07,-1.317034202403055365e-07,-1.481663477703437153e-07,-1.646292753003818941e-07,-1.810922028304200730e-07,-1.975551303604582518e-07,-2.140180578904964306e-07,-2.304809854205346094e-07,-2.469439129505727883e-07,-2.634068404806109671e-07,-2.798697680106491459e-07,-2.963326955406873248e-07,-3.127956230707255036e-07,-3.292585506007636824e-07,-3.457214781308018612e-07,-3.621844056608400401e-07,-3.786473331908782189e-07,-3.951102607209163977e-07,-4.115731882509545765e-07,-4.280361157809927554e-07,-4.444990433110309342e-07,-4.609619708410691130e-07,-4.774248983711073448e-07,-4.938878259011455766e-07,-5.103507534311838083e-07,-5.268136809612220401e-07,-5.432766084912602718e-07,-5.597395360212985036e-07,-5.762024635513367354e-07,-5.926653910813749671e-07,-6.091283186114131989e-07,-6.255912461414514307e-07,-6.420541736714896624e-07,-6.585171012015278942e-07,-6.749800287315661260e-07,-6.914429562616043577e-07,-7.079058837916425895e-07,-7.243688113216808213e-07,-7.408317388517190530e-07,-7.572946663817572848e-07,-7.737575939117955166e-07,-7.902205214418337483e-07,-8.066834489718719801e-07,-8.231463765019102119e-07,-8.396093040319484436e-07,-8.560722315619866754e-07,-8.725351590920249072e-07,-8.889980866220631389e-07,-9.054610141521013707e-07,-9.219239416821396025e-07,-9.383868692121778342e-07,-9.548497967422159601e-07,-9.713127242722540860e-07,-9.877756518022922119e-07,-1.004238579332330338e-06,-1.020701506862368464e-06,-1.037164434392406590e-06 +0.000000000000000000e+00,-1.695423086865074810e-08,-3.390846173730149620e-08,-5.086269260595224761e-08,-6.781692347460300564e-08,-8.477115434325376367e-08,-1.017253852119045217e-07,-1.186796160805552797e-07,-1.356338469492060378e-07,-1.525880778178567958e-07,-1.695423086865075538e-07,-1.864965395551583118e-07,-2.034507704238090699e-07,-2.204050012924598279e-07,-2.373592321611105859e-07,-2.543134630297613175e-07,-2.712676938984120226e-07,-2.882219247670627276e-07,-3.051761556357134327e-07,-3.221303865043641378e-07,-3.390846173730148429e-07,-3.560388482416655480e-07,-3.729930791103162531e-07,-3.899473099789669582e-07,-4.069015408476176633e-07,-4.238557717162683684e-07,-4.408100025849190734e-07,-4.577642334535697785e-07,-4.747184643222204836e-07,-4.916726951908711887e-07,-5.086269260595218938e-07,-5.255811569281725989e-07,-5.425353877968233040e-07,-5.594896186654740091e-07,-5.764438495341247141e-07,-5.933980804027754192e-07,-6.103523112714261243e-07,-6.273065421400768294e-07,-6.442607730087275345e-07,-6.612150038773782396e-07,-6.781692347460289447e-07,-6.951234656146796498e-07,-7.120776964833303548e-07,-7.290319273519810599e-07,-7.459861582206317650e-07,-7.629403890892824701e-07,-7.798946199579331752e-07,-7.968488508265838803e-07,-8.138030816952345854e-07,-8.307573125638852905e-07,-8.477115434325359956e-07,-8.646657743011867006e-07,-8.816200051698374057e-07,-8.985742360384881108e-07,-9.155284669071388159e-07,-9.324826977757895210e-07,-9.494369286444402261e-07,-9.663911595130910370e-07,-9.833453903817417421e-07,-1.000299621250392447e-06,-1.017253852119043152e-06,-1.034208082987693857e-06,-1.051162313856344562e-06,-1.068116544724995268e-06 +0.000000000000000000e+00,-1.568792229699400379e-08,-3.137584459398800757e-08,-4.706376689098200805e-08,-6.275168918797600191e-08,-7.843961148496999577e-08,-9.412753378196398963e-08,-1.098154560789579835e-07,-1.255033783759519774e-07,-1.411913006729459844e-07,-1.568792229699399915e-07,-1.725671452669339986e-07,-1.882550675639280057e-07,-2.039429898609220128e-07,-2.196309121579160199e-07,-2.353188344549100270e-07,-2.510067567519040076e-07,-2.666946790488979883e-07,-2.823826013458919689e-07,-2.980705236428859495e-07,-3.137584459398799301e-07,-3.294463682368739108e-07,-3.451342905338678914e-07,-3.608222128308618720e-07,-3.765101351278558526e-07,-3.921980574248498333e-07,-4.078859797218438139e-07,-4.235739020188377945e-07,-4.392618243158317752e-07,-4.549497466128257558e-07,-4.706376689098197364e-07,-4.863255912068137700e-07,-5.020135135038078035e-07,-5.177014358008018371e-07,-5.333893580977958707e-07,-5.490772803947899042e-07,-5.647652026917839378e-07,-5.804531249887779714e-07,-5.961410472857720049e-07,-6.118289695827660385e-07,-6.275168918797600721e-07,-6.432048141767541056e-07,-6.588927364737481392e-07,-6.745806587707421727e-07,-6.902685810677362063e-07,-7.059565033647302399e-07,-7.216444256617242734e-07,-7.373323479587183070e-07,-7.530202702557123406e-07,-7.687081925527063741e-07,-7.843961148497004077e-07,-8.000840371466944413e-07,-8.157719594436884748e-07,-8.314598817406825084e-07,-8.471478040376765420e-07,-8.628357263346705755e-07,-8.785236486316646091e-07,-8.942115709286586427e-07,-9.098994932256526762e-07,-9.255874155226467098e-07,-9.412753378196407434e-07,-9.569632601166347769e-07,-9.726511824136288105e-07,-9.883391047106228440e-07 +0.000000000000000000e+00,-1.546690225667774793e-08,-3.093380451335549585e-08,-4.640070677003324378e-08,-6.186760902671099170e-08,-7.733451128338873963e-08,-9.280141354006648756e-08,-1.082683157967442355e-07,-1.237352180534219834e-07,-1.392021203100997313e-07,-1.546690225667774793e-07,-1.701359248234552272e-07,-1.856028270801329751e-07,-2.010697293368107230e-07,-2.165366315934884710e-07,-2.320035338501662189e-07,-2.474704361068439668e-07,-2.629373383635217412e-07,-2.784042406201995156e-07,-2.938711428768772900e-07,-3.093380451335550644e-07,-3.248049473902328388e-07,-3.402718496469106132e-07,-3.557387519035883876e-07,-3.712056541602661620e-07,-3.866725564169439364e-07,-4.021394586736217108e-07,-4.176063609302994852e-07,-4.330732631869772596e-07,-4.485401654436550340e-07,-4.640070677003328084e-07,-4.794739699570105828e-07,-4.949408722136883572e-07,-5.104077744703661315e-07,-5.258746767270439059e-07,-5.413415789837216803e-07,-5.568084812403994547e-07,-5.722753834970772291e-07,-5.877422857537550035e-07,-6.032091880104327779e-07,-6.186760902671105523e-07,-6.341429925237883267e-07,-6.496098947804661011e-07,-6.650767970371438755e-07,-6.805436992938216499e-07,-6.960106015504994243e-07,-7.114775038071771987e-07,-7.269444060638549731e-07,-7.424113083205327475e-07,-7.578782105772105219e-07,-7.733451128338882963e-07,-7.888120150905660707e-07,-8.042789173472438451e-07,-8.197458196039216195e-07,-8.352127218605993939e-07,-8.506796241172771683e-07,-8.661465263739549427e-07,-8.816134286306327171e-07,-8.970803308873104914e-07,-9.125472331439882658e-07,-9.280141354006660402e-07,-9.434810376573438146e-07,-9.589479399140215890e-07,-9.744148421706993634e-07 +0.000000000000000000e+00,-1.669099521213613471e-08,-3.338199042427226941e-08,-5.007298563640840412e-08,-6.676398084854453882e-08,-8.345497606068066691e-08,-1.001459712728167950e-07,-1.168369664849529231e-07,-1.335279616970890512e-07,-1.502189569092251793e-07,-1.669099521213613073e-07,-1.836009473334974354e-07,-2.002919425456335635e-07,-2.169829377577696916e-07,-2.336739329699058197e-07,-2.503649281820419478e-07,-2.670559233941780494e-07,-2.837469186063141510e-07,-3.004379138184502526e-07,-3.171289090305863543e-07,-3.338199042427224559e-07,-3.505108994548585575e-07,-3.672018946669946591e-07,-3.838928898791307607e-07,-4.005838850912668623e-07,-4.172748803034029640e-07,-4.339658755155390656e-07,-4.506568707276751672e-07,-4.673478659398112688e-07,-4.840388611519473175e-07,-5.007298563640833662e-07,-5.174208515762194148e-07,-5.341118467883554635e-07,-5.508028420004915122e-07,-5.674938372126275609e-07,-5.841848324247636096e-07,-6.008758276368996582e-07,-6.175668228490357069e-07,-6.342578180611717556e-07,-6.509488132733078043e-07,-6.676398084854438530e-07,-6.843308036975799016e-07,-7.010217989097159503e-07,-7.177127941218519990e-07,-7.344037893339880477e-07,-7.510947845461240963e-07,-7.677857797582601450e-07,-7.844767749703961937e-07,-8.011677701825322424e-07,-8.178587653946682911e-07,-8.345497606068043397e-07,-8.512407558189403884e-07,-8.679317510310764371e-07,-8.846227462432124858e-07,-9.013137414553485344e-07,-9.180047366674845831e-07,-9.346957318796206318e-07,-9.513867270917566805e-07,-9.680777223038927292e-07,-9.847687175160287778e-07,-1.001459712728164827e-06,-1.018150707940300875e-06,-1.034841703152436924e-06,-1.051532698364572973e-06 +0.000000000000000000e+00,-1.525579962300948464e-08,-3.051159924601896929e-08,-4.576739886902845062e-08,-6.102319849203792534e-08,-7.627899811504740006e-08,-9.153479773805687478e-08,-1.067905973610663495e-07,-1.220463969840758242e-07,-1.373021966070853122e-07,-1.525579962300948001e-07,-1.678137958531042881e-07,-1.830695954761137760e-07,-1.983253950991232640e-07,-2.135811947221327519e-07,-2.288369943451422399e-07,-2.440927939681517014e-07,-2.593485935911611629e-07,-2.746043932141706243e-07,-2.898601928371800858e-07,-3.051159924601895473e-07,-3.203717920831990088e-07,-3.356275917062084703e-07,-3.508833913292179317e-07,-3.661391909522273932e-07,-3.813949905752368547e-07,-3.966507901982463162e-07,-4.119065898212557777e-07,-4.271623894442652392e-07,-4.424181890672747006e-07,-4.576739886902841621e-07,-4.729297883132936236e-07,-4.881855879363030851e-07,-5.034413875593125995e-07,-5.186971871823221139e-07,-5.339529868053316284e-07,-5.492087864283411428e-07,-5.644645860513506572e-07,-5.797203856743601716e-07,-5.949761852973696861e-07,-6.102319849203792005e-07,-6.254877845433887149e-07,-6.407435841663982293e-07,-6.559993837894077437e-07,-6.712551834124172582e-07,-6.865109830354267726e-07,-7.017667826584362870e-07,-7.170225822814458014e-07,-7.322783819044553159e-07,-7.475341815274648303e-07,-7.627899811504743447e-07,-7.780457807734838591e-07,-7.933015803964933736e-07,-8.085573800195028880e-07,-8.238131796425124024e-07,-8.390689792655219168e-07,-8.543247788885314312e-07,-8.695805785115409457e-07,-8.848363781345504601e-07,-9.000921777575599745e-07,-9.153479773805694889e-07,-9.306037770035790034e-07,-9.458595766265885178e-07,-9.611153762495980322e-07 +0.000000000000000000e+00,-1.575803619392771958e-08,-3.151607238785543916e-08,-4.727410858178316205e-08,-6.303214477571089155e-08,-7.879018096963862106e-08,-9.454821716356635056e-08,-1.103062533574940801e-07,-1.260642895514218096e-07,-1.418223257453495523e-07,-1.575803619392772951e-07,-1.733383981332050378e-07,-1.890964343271327805e-07,-2.048544705210605233e-07,-2.206125067149882660e-07,-2.363705429089160088e-07,-2.521285791028437780e-07,-2.678866152967715472e-07,-2.836446514906993164e-07,-2.994026876846270856e-07,-3.151607238785548548e-07,-3.309187600724826240e-07,-3.466767962664103932e-07,-3.624348324603381624e-07,-3.781928686542659316e-07,-3.939509048481937009e-07,-4.097089410421214701e-07,-4.254669772360492393e-07,-4.412250134299770085e-07,-4.569830496239047777e-07,-4.727410858178325469e-07,-4.884991220117602632e-07,-5.042571582056879794e-07,-5.200151943996156957e-07,-5.357732305935434120e-07,-5.515312667874711283e-07,-5.672893029813988445e-07,-5.830473391753265608e-07,-5.988053753692542771e-07,-6.145634115631819933e-07,-6.303214477571097096e-07,-6.460794839510374259e-07,-6.618375201449651422e-07,-6.775955563388928584e-07,-6.933535925328205747e-07,-7.091116287267482910e-07,-7.248696649206760072e-07,-7.406277011146037235e-07,-7.563857373085314398e-07,-7.721437735024591560e-07,-7.879018096963868723e-07,-8.036598458903145886e-07,-8.194178820842423049e-07,-8.351759182781700211e-07,-8.509339544720977374e-07,-8.666919906660254537e-07,-8.824500268599531699e-07,-8.982080630538808862e-07,-9.139660992478086025e-07,-9.297241354417363188e-07,-9.454821716356640350e-07,-9.612402078295917513e-07,-9.769982440235194676e-07,-9.927562802174471838e-07 +0.000000000000000000e+00,-1.552028247062689096e-08,-3.104056494125378191e-08,-4.656084741188067287e-08,-6.208112988250756383e-08,-7.760141235313446140e-08,-9.312169482376135898e-08,-1.086419772943882566e-07,-1.241622597650151541e-07,-1.396825422356420517e-07,-1.552028247062689493e-07,-1.707231071768958469e-07,-1.862433896475227444e-07,-2.017636721181496420e-07,-2.172839545887765396e-07,-2.328042370594034372e-07,-2.483245195300303612e-07,-2.638448020006573117e-07,-2.793650844712842622e-07,-2.948853669419112127e-07,-3.104056494125381633e-07,-3.259259318831651138e-07,-3.414462143537920643e-07,-3.569664968244190148e-07,-3.724867792950459653e-07,-3.880070617656729158e-07,-4.035273442362998663e-07,-4.190476267069268169e-07,-4.345679091775537674e-07,-4.500881916481807179e-07,-4.656084741188076684e-07,-4.811287565894346189e-07,-4.966490390600615694e-07,-5.121693215306885199e-07,-5.276896040013154705e-07,-5.432098864719424210e-07,-5.587301689425693715e-07,-5.742504514131963220e-07,-5.897707338838232725e-07,-6.052910163544502230e-07,-6.208112988250771735e-07,-6.363315812957041240e-07,-6.518518637663310746e-07,-6.673721462369580251e-07,-6.828924287075849756e-07,-6.984127111782119261e-07,-7.139329936488388766e-07,-7.294532761194658271e-07,-7.449735585900927776e-07,-7.604938410607197282e-07,-7.760141235313466787e-07,-7.915344060019736292e-07,-8.070546884726005797e-07,-8.225749709432275302e-07,-8.380952534138544807e-07,-8.536155358844814312e-07,-8.691358183551083818e-07,-8.846561008257353323e-07,-9.001763832963622828e-07,-9.156966657669892333e-07,-9.312169482376161838e-07,-9.467372307082431343e-07,-9.622575131788700848e-07,-9.777777956494970354e-07 +0.000000000000000000e+00,-1.508004092658967265e-08,-3.016008185317934531e-08,-4.524012277976902127e-08,-6.032016370635870385e-08,-7.540020463294838643e-08,-9.048024555953806901e-08,-1.055602864861277516e-07,-1.206403274127174342e-07,-1.357203683393071168e-07,-1.508004092658967993e-07,-1.658804501924864819e-07,-1.809604911190761645e-07,-1.960405320456658471e-07,-2.111205729722555297e-07,-2.262006138988452122e-07,-2.412806548254349213e-07,-2.563606957520246303e-07,-2.714407366786143394e-07,-2.865207776052040484e-07,-3.016008185317937575e-07,-3.166808594583834665e-07,-3.317609003849731756e-07,-3.468409413115628846e-07,-3.619209822381525937e-07,-3.770010231647423027e-07,-3.920810640913320118e-07,-4.071611050179217208e-07,-4.222411459445114299e-07,-4.373211868711011389e-07,-4.524012277976908480e-07,-4.674812687242805570e-07,-4.825613096508702661e-07,-4.976413505774600281e-07,-5.127213915040497901e-07,-5.278014324306395521e-07,-5.428814733572293141e-07,-5.579615142838190760e-07,-5.730415552104088380e-07,-5.881215961369986000e-07,-6.032016370635883620e-07,-6.182816779901781240e-07,-6.333617189167678860e-07,-6.484417598433576480e-07,-6.635218007699474100e-07,-6.786018416965371720e-07,-6.936818826231269340e-07,-7.087619235497166959e-07,-7.238419644763064579e-07,-7.389220054028962199e-07,-7.540020463294859819e-07,-7.690820872560757439e-07,-7.841621281826655059e-07,-7.992421691092552679e-07,-8.143222100358450299e-07,-8.294022509624347919e-07,-8.444822918890245539e-07,-8.595623328156143158e-07,-8.746423737422040778e-07,-8.897224146687938398e-07,-9.048024555953836018e-07,-9.198824965219733638e-07,-9.349625374485631258e-07,-9.500425783751528878e-07 +0.000000000000000000e+00,-1.695423086864690006e-08,-3.390846173729380011e-08,-5.086269260594070017e-08,-6.781692347458760023e-08,-8.477115434323449367e-08,-1.017253852118813871e-07,-1.186796160805282805e-07,-1.356338469491751740e-07,-1.525880778178220674e-07,-1.695423086864689609e-07,-1.864965395551158543e-07,-2.034507704237627477e-07,-2.204050012924096412e-07,-2.373592321610565346e-07,-2.543134630297034016e-07,-2.712676938983502950e-07,-2.882219247669971885e-07,-3.051761556356440819e-07,-3.221303865042909754e-07,-3.390846173729378688e-07,-3.560388482415847622e-07,-3.729930791102316557e-07,-3.899473099788785491e-07,-4.069015408475254426e-07,-4.238557717161723360e-07,-4.408100025848192294e-07,-4.577642334534661229e-07,-4.747184643221130163e-07,-4.916726951907599098e-07,-5.086269260594068032e-07,-5.255811569280536966e-07,-5.425353877967005901e-07,-5.594896186653474835e-07,-5.764438495339943770e-07,-5.933980804026412704e-07,-6.103523112712881638e-07,-6.273065421399350573e-07,-6.442607730085819507e-07,-6.612150038772288441e-07,-6.781692347458757376e-07,-6.951234656145226310e-07,-7.120776964831695245e-07,-7.290319273518164179e-07,-7.459861582204633113e-07,-7.629403890891102048e-07,-7.798946199577570982e-07,-7.968488508264039917e-07,-8.138030816950508851e-07,-8.307573125636977785e-07,-8.477115434323446720e-07,-8.646657743009915654e-07,-8.816200051696384589e-07,-8.985742360382853523e-07,-9.155284669069322457e-07,-9.324826977755791392e-07,-9.494369286442260326e-07,-9.663911595128729261e-07,-9.833453903815198195e-07,-1.000299621250166713e-06,-1.017253852118813606e-06,-1.034208082987460500e-06,-1.051162313856107393e-06,-1.068116544724754287e-06 +0.000000000000000000e+00,-1.568792229699022523e-08,-3.137584459398045045e-08,-4.706376689097067899e-08,-6.275168918796091414e-08,-7.843961148495114929e-08,-9.412753378194138444e-08,-1.098154560789316196e-07,-1.255033783759218547e-07,-1.411913006729121031e-07,-1.568792229699023515e-07,-1.725671452668925999e-07,-1.882550675638828483e-07,-2.039429898608730967e-07,-2.196309121578633451e-07,-2.353188344548535934e-07,-2.510067567518438683e-07,-2.666946790488341432e-07,-2.823826013458244180e-07,-2.980705236428146929e-07,-3.137584459398049677e-07,-3.294463682367952426e-07,-3.451342905337855174e-07,-3.608222128307757923e-07,-3.765101351277660672e-07,-3.921980574247563420e-07,-4.078859797217466169e-07,-4.235739020187368917e-07,-4.392618243157271666e-07,-4.549497466127174414e-07,-4.706376689097077163e-07,-4.863255912066979382e-07,-5.020135135036881601e-07,-5.177014358006783820e-07,-5.333893580976686040e-07,-5.490772803946588259e-07,-5.647652026916490478e-07,-5.804531249886392697e-07,-5.961410472856294916e-07,-6.118289695826197135e-07,-6.275168918796099355e-07,-6.432048141766001574e-07,-6.588927364735903793e-07,-6.745806587705806012e-07,-6.902685810675708231e-07,-7.059565033645610450e-07,-7.216444256615512670e-07,-7.373323479585414889e-07,-7.530202702555317108e-07,-7.687081925525219327e-07,-7.843961148495121546e-07,-8.000840371465023765e-07,-8.157719594434925985e-07,-8.314598817404828204e-07,-8.471478040374730423e-07,-8.628357263344632642e-07,-8.785236486314534861e-07,-8.942115709284437080e-07,-9.098994932254339300e-07,-9.255874155224241519e-07,-9.412753378194143738e-07,-9.569632601164045957e-07,-9.726511824133948176e-07,-9.883391047103850395e-07 +0.000000000000000000e+00,-1.552028247062504469e-08,-3.104056494125008938e-08,-4.656084741187513407e-08,-6.208112988250017876e-08,-7.760141235312522345e-08,-9.312169482375026814e-08,-1.086419772943753128e-07,-1.241622597650003575e-07,-1.396825422356254022e-07,-1.552028247062504469e-07,-1.707231071768754916e-07,-1.862433896475005363e-07,-2.017636721181255810e-07,-2.172839545887506257e-07,-2.328042370593756704e-07,-2.483245195300007150e-07,-2.638448020006257597e-07,-2.793650844712508044e-07,-2.948853669418758491e-07,-3.104056494125008938e-07,-3.259259318831259385e-07,-3.414462143537509832e-07,-3.569664968243760279e-07,-3.724867792950010726e-07,-3.880070617656261173e-07,-4.035273442362511619e-07,-4.190476267068762066e-07,-4.345679091775012513e-07,-4.500881916481262960e-07,-4.656084741187513407e-07,-4.811287565893763854e-07,-4.966490390600014301e-07,-5.121693215306264748e-07,-5.276896040012515195e-07,-5.432098864718765642e-07,-5.587301689425016088e-07,-5.742504514131266535e-07,-5.897707338837516982e-07,-6.052910163543767429e-07,-6.208112988250017876e-07,-6.363315812956268323e-07,-6.518518637662518770e-07,-6.673721462368769217e-07,-6.828924287075019664e-07,-6.984127111781270111e-07,-7.139329936487520557e-07,-7.294532761193771004e-07,-7.449735585900021451e-07,-7.604938410606271898e-07,-7.760141235312522345e-07,-7.915344060018772792e-07,-8.070546884725023239e-07,-8.225749709431273686e-07,-8.380952534137524133e-07,-8.536155358843774580e-07,-8.691358183550025026e-07,-8.846561008256275473e-07,-9.001763832962525920e-07,-9.156966657668776367e-07,-9.312169482375026814e-07,-9.467372307081277261e-07,-9.622575131787527708e-07,-9.777777956493778155e-07 +0.000000000000000000e+00,-1.669099521213224365e-08,-3.338199042426448729e-08,-5.007298563639673094e-08,-6.676398084852897459e-08,-8.345497606066121162e-08,-1.001459712727934486e-07,-1.168369664849256857e-07,-1.335279616970579227e-07,-1.502189569091901597e-07,-1.669099521213223968e-07,-1.836009473334546338e-07,-2.002919425455868708e-07,-2.169829377577191079e-07,-2.336739329698513449e-07,-2.503649281819835554e-07,-2.670559233941157925e-07,-2.837469186062480295e-07,-3.004379138183802665e-07,-3.171289090305125036e-07,-3.338199042426447406e-07,-3.505108994547769776e-07,-3.672018946669092147e-07,-3.838928898790414517e-07,-4.005838850911736887e-07,-4.172748803033059257e-07,-4.339658755154381628e-07,-4.506568707275703998e-07,-4.673478659397026368e-07,-4.840388611518348739e-07,-5.007298563639671109e-07,-5.174208515760993479e-07,-5.341118467882315850e-07,-5.508028420003638220e-07,-5.674938372124960590e-07,-5.841848324246282960e-07,-6.008758276367605331e-07,-6.175668228488927701e-07,-6.342578180610250071e-07,-6.509488132731572442e-07,-6.676398084852894812e-07,-6.843308036974217182e-07,-7.010217989095539553e-07,-7.177127941216861923e-07,-7.344037893338184293e-07,-7.510947845459506663e-07,-7.677857797580829034e-07,-7.844767749702151404e-07,-8.011677701823473774e-07,-8.178587653944796145e-07,-8.345497606066118515e-07,-8.512407558187440885e-07,-8.679317510308763256e-07,-8.846227462430085626e-07,-9.013137414551407996e-07,-9.180047366672730366e-07,-9.346957318794052737e-07,-9.513867270915375107e-07,-9.680777223036697477e-07,-9.847687175158019848e-07,-1.001459712727934222e-06,-1.018150707940066459e-06,-1.034841703152198696e-06,-1.051532698364330933e-06 +0.000000000000000000e+00,-1.525579962300526271e-08,-3.051159924601052543e-08,-4.576739886901578483e-08,-6.102319849202103762e-08,-7.627899811502629041e-08,-9.153479773803154320e-08,-1.067905973610367960e-07,-1.220463969840420488e-07,-1.373021966070473016e-07,-1.525579962300525544e-07,-1.678137958530578071e-07,-1.830695954760630599e-07,-1.983253950990683127e-07,-2.135811947220735655e-07,-2.288369943450788183e-07,-2.440927939680840446e-07,-2.593485935910892709e-07,-2.746043932140944972e-07,-2.898601928370997236e-07,-3.051159924601049499e-07,-3.203717920831101762e-07,-3.356275917061154025e-07,-3.508833913291206288e-07,-3.661391909521258552e-07,-3.813949905751310815e-07,-3.966507901981363078e-07,-4.119065898211415341e-07,-4.271623894441467604e-07,-4.424181890671519867e-07,-4.576739886901572131e-07,-4.729297883131624394e-07,-4.881855879361676657e-07,-5.034413875591728391e-07,-5.186971871821780125e-07,-5.339529868051831858e-07,-5.492087864281883592e-07,-5.644645860511935326e-07,-5.797203856741987060e-07,-5.949761852972038794e-07,-6.102319849202090527e-07,-6.254877845432142261e-07,-6.407435841662193995e-07,-6.559993837892245729e-07,-6.712551834122297463e-07,-6.865109830352349196e-07,-7.017667826582400930e-07,-7.170225822812452664e-07,-7.322783819042504398e-07,-7.475341815272556131e-07,-7.627899811502607865e-07,-7.780457807732659599e-07,-7.933015803962711333e-07,-8.085573800192763067e-07,-8.238131796422814800e-07,-8.390689792652866534e-07,-8.543247788882918268e-07,-8.695805785112970002e-07,-8.848363781343021736e-07,-9.000921777573073469e-07,-9.153479773803125203e-07,-9.306037770033176937e-07,-9.458595766263228671e-07,-9.611153762493280404e-07 +0.000000000000000000e+00,-1.575803619392344140e-08,-3.151607238784688280e-08,-4.727410858177032420e-08,-6.303214477569376560e-08,-7.879018096961720701e-08,-9.454821716354064841e-08,-1.103062533574640898e-07,-1.260642895513875312e-07,-1.418223257453109594e-07,-1.575803619392343875e-07,-1.733383981331578157e-07,-1.890964343270812439e-07,-2.048544705210046720e-07,-2.206125067149281002e-07,-2.363705429088515284e-07,-2.521285791027749565e-07,-2.678866152966983847e-07,-2.836446514906218129e-07,-2.994026876845452410e-07,-3.151607238784686692e-07,-3.309187600723920974e-07,-3.466767962663155255e-07,-3.624348324602389537e-07,-3.781928686541623819e-07,-3.939509048480858100e-07,-4.097089410420092382e-07,-4.254669772359326664e-07,-4.412250134298560945e-07,-4.569830496237795227e-07,-4.727410858177029509e-07,-4.884991220116264320e-07,-5.042571582055499131e-07,-5.200151943994733942e-07,-5.357732305933968753e-07,-5.515312667873203564e-07,-5.672893029812438375e-07,-5.830473391751673186e-07,-5.988053753690907997e-07,-6.145634115630142808e-07,-6.303214477569377619e-07,-6.460794839508612430e-07,-6.618375201447847241e-07,-6.775955563387082052e-07,-6.933535925326316863e-07,-7.091116287265551675e-07,-7.248696649204786486e-07,-7.406277011144021297e-07,-7.563857373083256108e-07,-7.721437735022490919e-07,-7.879018096961725730e-07,-8.036598458900960541e-07,-8.194178820840195352e-07,-8.351759182779430163e-07,-8.509339544718664974e-07,-8.666919906657899785e-07,-8.824500268597134596e-07,-8.982080630536369407e-07,-9.139660992475604218e-07,-9.297241354414839029e-07,-9.454821716354073840e-07,-9.612402078293308651e-07,-9.769982440232543463e-07,-9.927562802171778274e-07 +0.000000000000000000e+00,-1.727474744807668322e-08,-3.454949489615336643e-08,-5.182424234423005296e-08,-6.909898979230674610e-08,-8.637373724038343925e-08,-1.036484846884601324e-07,-1.209232321365368123e-07,-1.381979795846134922e-07,-1.554727270326901721e-07,-1.727474744807668520e-07,-1.900222219288435319e-07,-2.072969693769202118e-07,-2.245717168249968917e-07,-2.418464642730735717e-07,-2.591212117211502516e-07,-2.763959591692269315e-07,-2.936707066173036114e-07,-3.109454540653802913e-07,-3.282202015134569712e-07,-3.454949489615336511e-07,-3.627696964096103310e-07,-3.800444438576870109e-07,-3.973191913057636908e-07,-4.145939387538403707e-07,-4.318686862019170506e-07,-4.491434336499937306e-07,-4.664181810980704105e-07,-4.836929285461470374e-07,-5.009676759942236644e-07,-5.182424234423002914e-07,-5.355171708903769183e-07,-5.527919183384535453e-07,-5.700666657865301723e-07,-5.873414132346067992e-07,-6.046161606826834262e-07,-6.218909081307600532e-07,-6.391656555788366801e-07,-6.564404030269133071e-07,-6.737151504749899341e-07,-6.909898979230665611e-07,-7.082646453711431880e-07,-7.255393928192198150e-07,-7.428141402672964420e-07,-7.600888877153730689e-07,-7.773636351634496959e-07,-7.946383826115263229e-07,-8.119131300596029498e-07,-8.291878775076795768e-07,-8.464626249557562038e-07,-8.637373724038328307e-07,-8.810121198519094577e-07,-8.982868672999860847e-07,-9.155616147480627116e-07,-9.328363621961393386e-07,-9.501111096442159656e-07,-9.673858570922925925e-07,-9.846606045403692195e-07,-1.001935351988445846e-06,-1.019210099436522473e-06,-1.036484846884599100e-06,-1.053759594332675727e-06,-1.071034341780752354e-06,-1.088309089228828981e-06 +0.000000000000000000e+00,-1.711417634590751008e-08,-3.422835269181502015e-08,-5.134252903772253023e-08,-6.845670538363004030e-08,-8.557088172953755038e-08,-1.026850580754450605e-07,-1.197992344213525705e-07,-1.369134107672600806e-07,-1.540275871131675907e-07,-1.711417634590751008e-07,-1.882559398049826108e-07,-2.053701161508901209e-07,-2.224842924967976310e-07,-2.395984688427051411e-07,-2.567126451886126776e-07,-2.738268215345202142e-07,-2.909409978804277507e-07,-3.080551742263352872e-07,-3.251693505722428238e-07,-3.422835269181503603e-07,-3.593977032640578969e-07,-3.765118796099654334e-07,-3.936260559558729700e-07,-4.107402323017805065e-07,-4.278544086476880431e-07,-4.449685849935955796e-07,-4.620827613395031162e-07,-4.791969376854105998e-07,-4.963111140313180834e-07,-5.134252903772255670e-07,-5.305394667231330506e-07,-5.476536430690405342e-07,-5.647678194149480178e-07,-5.818819957608555014e-07,-5.989961721067629850e-07,-6.161103484526704686e-07,-6.332245247985779522e-07,-6.503387011444854358e-07,-6.674528774903929194e-07,-6.845670538363004030e-07,-7.016812301822078866e-07,-7.187954065281153702e-07,-7.359095828740228539e-07,-7.530237592199303375e-07,-7.701379355658378211e-07,-7.872521119117453047e-07,-8.043662882576527883e-07,-8.214804646035602719e-07,-8.385946409494677555e-07,-8.557088172953752391e-07,-8.728229936412827227e-07,-8.899371699871902063e-07,-9.070513463330976899e-07,-9.241655226790051735e-07,-9.412796990249126571e-07,-9.583938753708201407e-07,-9.755080517167276243e-07,-9.926222280626351079e-07,-1.009736404408542592e-06,-1.026850580754450075e-06,-1.043964757100357559e-06,-1.061078933446265042e-06,-1.078193109792172526e-06 +0.000000000000000000e+00,-1.589809662986326375e-08,-3.179619325972652750e-08,-4.769428988958979456e-08,-6.359238651945306824e-08,-7.949048314931634192e-08,-9.538857977917961560e-08,-1.112866764090428893e-07,-1.271847730389061630e-07,-1.430828696687694234e-07,-1.589809662986326838e-07,-1.748790629284959443e-07,-1.907771595583592047e-07,-2.066752561882224652e-07,-2.225733528180857256e-07,-2.384714494479489861e-07,-2.543695460778122730e-07,-2.702676427076755599e-07,-2.861657393375388468e-07,-3.020638359674021337e-07,-3.179619325972654206e-07,-3.338600292271287075e-07,-3.497581258569919944e-07,-3.656562224868552814e-07,-3.815543191167185683e-07,-3.974524157465818552e-07,-4.133505123764451421e-07,-4.292486090063084290e-07,-4.451467056361717159e-07,-4.610448022660350028e-07,-4.769428988958982897e-07,-4.928409955257615237e-07,-5.087390921556247577e-07,-5.246371887854879917e-07,-5.405352854153512256e-07,-5.564333820452144596e-07,-5.723314786750776936e-07,-5.882295753049409276e-07,-6.041276719348041615e-07,-6.200257685646673955e-07,-6.359238651945306295e-07,-6.518219618243938634e-07,-6.677200584542570974e-07,-6.836181550841203314e-07,-6.995162517139835654e-07,-7.154143483438467993e-07,-7.313124449737100333e-07,-7.472105416035732673e-07,-7.631086382334365013e-07,-7.790067348632997352e-07,-7.949048314931629692e-07,-8.108029281230262032e-07,-8.267010247528894372e-07,-8.425991213827526711e-07,-8.584972180126159051e-07,-8.743953146424791391e-07,-8.902934112723423730e-07,-9.061915079022056070e-07,-9.220896045320688410e-07,-9.379877011619320750e-07,-9.538857977917953089e-07,-9.697838944216585429e-07,-9.856819910515217769e-07,-1.001580087681385011e-06 +0.000000000000000000e+00,-1.727474744807286826e-08,-3.454949489614573652e-08,-5.182424234421860478e-08,-6.909898979229147304e-08,-8.637373724036434130e-08,-1.036484846884372096e-07,-1.209232321365100778e-07,-1.381979795845829461e-07,-1.554727270326558143e-07,-1.727474744807286826e-07,-1.900222219288015509e-07,-2.072969693768744191e-07,-2.245717168249472874e-07,-2.418464642730201556e-07,-2.591212117210930239e-07,-2.763959591691658922e-07,-2.936707066172387604e-07,-3.109454540653116287e-07,-3.282202015133844969e-07,-3.454949489614573652e-07,-3.627696964095302335e-07,-3.800444438576031017e-07,-3.973191913056759700e-07,-4.145939387537488382e-07,-4.318686862018217065e-07,-4.491434336498945748e-07,-4.664181810979674430e-07,-4.836929285460403113e-07,-5.009676759941131266e-07,-5.182424234421859419e-07,-5.355171708902587572e-07,-5.527919183383315726e-07,-5.700666657864043879e-07,-5.873414132344772032e-07,-6.046161606825500185e-07,-6.218909081306228338e-07,-6.391656555786956492e-07,-6.564404030267684645e-07,-6.737151504748412798e-07,-6.909898979229140951e-07,-7.082646453709869104e-07,-7.255393928190597258e-07,-7.428141402671325411e-07,-7.600888877152053564e-07,-7.773636351632781717e-07,-7.946383826113509870e-07,-8.119131300594238024e-07,-8.291878775074966177e-07,-8.464626249555694330e-07,-8.637373724036422483e-07,-8.810121198517150636e-07,-8.982868672997878790e-07,-9.155616147478606943e-07,-9.328363621959335096e-07,-9.501111096440063249e-07,-9.673858570920791402e-07,-9.846606045401519556e-07,-1.001935351988224771e-06,-1.019210099436297586e-06,-1.036484846884370402e-06,-1.053759594332443217e-06,-1.071034341780516032e-06,-1.088309089228588847e-06 +0.000000000000000000e+00,-1.711417634590365211e-08,-3.422835269180730421e-08,-5.134252903771095632e-08,-6.845670538361460842e-08,-8.557088172951825391e-08,-1.026850580754218994e-07,-1.197992344213255449e-07,-1.369134107672291904e-07,-1.540275871131328359e-07,-1.711417634590364814e-07,-1.882559398049401268e-07,-2.053701161508437723e-07,-2.224842924967474178e-07,-2.395984688426510898e-07,-2.567126451885547617e-07,-2.738268215344584337e-07,-2.909409978803621056e-07,-3.080551742262657776e-07,-3.251693505721694496e-07,-3.422835269180731215e-07,-3.593977032639767935e-07,-3.765118796098804654e-07,-3.936260559557841374e-07,-4.107402323016878094e-07,-4.278544086475914813e-07,-4.449685849934951533e-07,-4.620827613393988252e-07,-4.791969376853024972e-07,-4.963111140312061691e-07,-5.134252903771098411e-07,-5.305394667230135131e-07,-5.476536430689171850e-07,-5.647678194148208570e-07,-5.818819957607245289e-07,-5.989961721066282009e-07,-6.161103484525318728e-07,-6.332245247984355448e-07,-6.503387011443392168e-07,-6.674528774902428887e-07,-6.845670538361465607e-07,-7.016812301820502326e-07,-7.187954065279539046e-07,-7.359095828738575765e-07,-7.530237592197612485e-07,-7.701379355656649205e-07,-7.872521119115685924e-07,-8.043662882574722644e-07,-8.214804646033759363e-07,-8.385946409492796083e-07,-8.557088172951832803e-07,-8.728229936410869522e-07,-8.899371699869906242e-07,-9.070513463328942961e-07,-9.241655226787979681e-07,-9.412796990247016400e-07,-9.583938753706052061e-07,-9.755080517165088781e-07,-9.926222280624125500e-07,-1.009736404408316222e-06,-1.026850580754219894e-06,-1.043964757100123566e-06,-1.061078933446027238e-06,-1.078193109791930910e-06 +0.000000000000000000e+00,-1.589809662985929659e-08,-3.179619325971859319e-08,-4.769428988957788978e-08,-6.359238651943718637e-08,-7.949048314929647635e-08,-9.538857977915576633e-08,-1.112866764090150563e-07,-1.271847730388743463e-07,-1.430828696687336363e-07,-1.589809662985929262e-07,-1.748790629284522162e-07,-1.907771595583115062e-07,-2.066752561881707962e-07,-2.225733528180300861e-07,-2.384714494478893761e-07,-2.543695460777486396e-07,-2.702676427076079031e-07,-2.861657393374671666e-07,-3.020638359673264301e-07,-3.179619325971856936e-07,-3.338600292270449571e-07,-3.497581258569042207e-07,-3.656562224867634842e-07,-3.815543191166227477e-07,-3.974524157464820112e-07,-4.133505123763412747e-07,-4.292486090062005382e-07,-4.451467056360598017e-07,-4.610448022659190652e-07,-4.769428988957783287e-07,-4.928409955256376451e-07,-5.087390921554969616e-07,-5.246371887853562780e-07,-5.405352854152155945e-07,-5.564333820450749109e-07,-5.723314786749342274e-07,-5.882295753047935438e-07,-6.041276719346528603e-07,-6.200257685645121767e-07,-6.359238651943714932e-07,-6.518219618242308096e-07,-6.677200584540901261e-07,-6.836181550839494425e-07,-6.995162517138087589e-07,-7.154143483436680754e-07,-7.313124449735273918e-07,-7.472105416033867083e-07,-7.631086382332460247e-07,-7.790067348631053412e-07,-7.949048314929646576e-07,-8.108029281228239741e-07,-8.267010247526832905e-07,-8.425991213825426070e-07,-8.584972180124019234e-07,-8.743953146422612398e-07,-8.902934112721205563e-07,-9.061915079019798727e-07,-9.220896045318391892e-07,-9.379877011616985056e-07,-9.538857977915577162e-07,-9.697838944214169268e-07,-9.856819910512761373e-07,-1.001580087681135348e-06 +0.000000000000000000e+00,-1.780446295712121409e-08,-3.560892591424242818e-08,-5.341338887136364558e-08,-7.121785182848486960e-08,-8.902231478560609361e-08,-1.068267777427273176e-07,-1.246312406998485549e-07,-1.424357036569697921e-07,-1.602401666140910294e-07,-1.780446295712122666e-07,-1.958490925283335039e-07,-2.136535554854547411e-07,-2.314580184425759784e-07,-2.492624813996972156e-07,-2.670669443568184529e-07,-2.848714073139396901e-07,-3.026758702710609274e-07,-3.204803332281821646e-07,-3.382847961853034019e-07,-3.560892591424246392e-07,-3.738937220995458764e-07,-3.916981850566671137e-07,-4.095026480137883509e-07,-4.273071109709095882e-07,-4.451115739280308254e-07,-4.629160368851520627e-07,-4.807204998422732999e-07,-4.985249627993945372e-07,-5.163294257565157744e-07,-5.341338887136370117e-07,-5.519383516707582489e-07,-5.697428146278794862e-07,-5.875472775850007234e-07,-6.053517405421219607e-07,-6.231562034992431979e-07,-6.409606664563644352e-07,-6.587651294134856724e-07,-6.765695923706069097e-07,-6.943740553277281469e-07,-7.121785182848493842e-07,-7.299829812419706214e-07,-7.477874441990918587e-07,-7.655919071562130959e-07,-7.833963701133343332e-07,-8.012008330704555704e-07,-8.190052960275768077e-07,-8.368097589846980449e-07,-8.546142219418192822e-07,-8.724186848989405194e-07,-8.902231478560617567e-07,-9.080276108131829939e-07,-9.258320737703042312e-07,-9.436365367274254685e-07,-9.614409996845465998e-07,-9.792454626416677312e-07,-9.970499255987888626e-07,-1.014854388555909994e-06,-1.032658851513031125e-06,-1.050463314470152257e-06,-1.068267777427273388e-06,-1.086072240384394519e-06,-1.103876703341515651e-06,-1.121681166298636782e-06 +0.000000000000000000e+00,-1.750416491419888648e-08,-3.500832982839777296e-08,-5.251249474259666274e-08,-7.001665965679555915e-08,-8.752082457099445555e-08,-1.050249894851933520e-07,-1.225291543993922616e-07,-1.400333193135911712e-07,-1.575374842277900809e-07,-1.750416491419889905e-07,-1.925458140561879002e-07,-2.100499789703868098e-07,-2.275541438845857194e-07,-2.450583087987846291e-07,-2.625624737129835387e-07,-2.800666386271824484e-07,-2.975708035413813580e-07,-3.150749684555802676e-07,-3.325791333697791773e-07,-3.500832982839780869e-07,-3.675874631981769966e-07,-3.850916281123759062e-07,-4.025957930265748158e-07,-4.200999579407737255e-07,-4.376041228549726351e-07,-4.551082877691715447e-07,-4.726124526833704544e-07,-4.901166175975693640e-07,-5.076207825117682207e-07,-5.251249474259670774e-07,-5.426291123401659341e-07,-5.601332772543647908e-07,-5.776374421685636475e-07,-5.951416070827625042e-07,-6.126457719969613609e-07,-6.301499369111602176e-07,-6.476541018253590743e-07,-6.651582667395579310e-07,-6.826624316537567877e-07,-7.001665965679556444e-07,-7.176707614821545011e-07,-7.351749263963533578e-07,-7.526790913105522145e-07,-7.701832562247510712e-07,-7.876874211389499279e-07,-8.051915860531487846e-07,-8.226957509673476413e-07,-8.401999158815464980e-07,-8.577040807957453547e-07,-8.752082457099442114e-07,-8.927124106241430681e-07,-9.102165755383419248e-07,-9.277207404525407815e-07,-9.452249053667396382e-07,-9.627290702809384949e-07,-9.802332351951372457e-07,-9.977374001093359966e-07,-1.015241565023534747e-06,-1.032745729937733498e-06,-1.050249894851932249e-06,-1.067754059766131000e-06,-1.085258224680329751e-06,-1.102762389594528501e-06 +0.000000000000000000e+00,-1.639544564302231746e-08,-3.279089128604463493e-08,-4.918633692906695239e-08,-6.558178257208926986e-08,-8.197722821511158732e-08,-9.837267385813390478e-08,-1.147681195011562222e-07,-1.311635651441785397e-07,-1.475590107872008572e-07,-1.639544564302231746e-07,-1.803499020732454921e-07,-1.967453477162678096e-07,-2.131407933592901270e-07,-2.295362390023124445e-07,-2.459316846453347620e-07,-2.623271302883570794e-07,-2.787225759313793969e-07,-2.951180215744017144e-07,-3.115134672174240318e-07,-3.279089128604463493e-07,-3.443043585034686667e-07,-3.606998041464909842e-07,-3.770952497895133017e-07,-3.934906954325356191e-07,-4.098861410755579366e-07,-4.262815867185802541e-07,-4.426770323616025715e-07,-4.590724780046248890e-07,-4.754679236476472065e-07,-4.918633692906695239e-07,-5.082588149336917884e-07,-5.246542605767140530e-07,-5.410497062197363175e-07,-5.574451518627585820e-07,-5.738405975057808465e-07,-5.902360431488031111e-07,-6.066314887918253756e-07,-6.230269344348476401e-07,-6.394223800778699046e-07,-6.558178257208921692e-07,-6.722132713639144337e-07,-6.886087170069366982e-07,-7.050041626499589627e-07,-7.213996082929812273e-07,-7.377950539360034918e-07,-7.541904995790257563e-07,-7.705859452220480208e-07,-7.869813908650702854e-07,-8.033768365080925499e-07,-8.197722821511148144e-07,-8.361677277941370789e-07,-8.525631734371593435e-07,-8.689586190801816080e-07,-8.853540647232038725e-07,-9.017495103662261370e-07,-9.181449560092484016e-07,-9.345404016522706661e-07,-9.509358472952929306e-07,-9.673312929383151951e-07,-9.837267385813375655e-07,-1.000122184224359936e-06,-1.016517629867382306e-06,-1.032913075510404677e-06 +0.000000000000000000e+00,-1.780446295711758773e-08,-3.560892591423517546e-08,-5.341338887135276650e-08,-7.121785182847036416e-08,-8.902231478558796181e-08,-1.068267777427055595e-07,-1.246312406998231439e-07,-1.424357036569407283e-07,-1.602401666140583127e-07,-1.780446295711758972e-07,-1.958490925282934816e-07,-2.136535554854110660e-07,-2.314580184425286504e-07,-2.492624813996462348e-07,-2.670669443567638193e-07,-2.848714073138814037e-07,-3.026758702709989881e-07,-3.204803332281165725e-07,-3.382847961852341570e-07,-3.560892591423517414e-07,-3.738937220994693258e-07,-3.916981850565869102e-07,-4.095026480137044946e-07,-4.273071109708220791e-07,-4.451115739279396635e-07,-4.629160368850572479e-07,-4.807204998421748323e-07,-4.985249627992923638e-07,-5.163294257564098953e-07,-5.341338887135274268e-07,-5.519383516706449583e-07,-5.697428146277624897e-07,-5.875472775848800212e-07,-6.053517405419975527e-07,-6.231562034991150842e-07,-6.409606664562326157e-07,-6.587651294133501472e-07,-6.765695923704676786e-07,-6.943740553275852101e-07,-7.121785182847027416e-07,-7.299829812418202731e-07,-7.477874441989378046e-07,-7.655919071560553360e-07,-7.833963701131728675e-07,-8.012008330702903990e-07,-8.190052960274079305e-07,-8.368097589845254620e-07,-8.546142219416429935e-07,-8.724186848987605249e-07,-8.902231478558780564e-07,-9.080276108129955879e-07,-9.258320737701131194e-07,-9.436365367272306509e-07,-9.614409996843481824e-07,-9.792454626414657138e-07,-9.970499255985832453e-07,-1.014854388555700777e-06,-1.032658851512818308e-06,-1.050463314469935840e-06,-1.068267777427053371e-06,-1.086072240384170903e-06,-1.103876703341288434e-06,-1.121681166298405966e-06 +0.000000000000000000e+00,-1.750416491419513108e-08,-3.500832982839026216e-08,-5.251249474258539324e-08,-7.001665965678052431e-08,-8.752082457097564877e-08,-1.050249894851707732e-07,-1.225291543993658977e-07,-1.400333193135610222e-07,-1.575374842277561466e-07,-1.750416491419512711e-07,-1.925458140561463955e-07,-2.100499789703415200e-07,-2.275541438845366445e-07,-2.450583087987317954e-07,-2.625624737129269463e-07,-2.800666386271220973e-07,-2.975708035413172482e-07,-3.150749684555123991e-07,-3.325791333697075500e-07,-3.500832982839027010e-07,-3.675874631980978519e-07,-3.850916281122930028e-07,-4.025957930264881538e-07,-4.200999579406833047e-07,-4.376041228548784556e-07,-4.551082877690736066e-07,-4.726124526832687575e-07,-4.901166175974639084e-07,-5.076207825116590594e-07,-5.251249474258542103e-07,-5.426291123400493612e-07,-5.601332772542445121e-07,-5.776374421684396631e-07,-5.951416070826348140e-07,-6.126457719968299649e-07,-6.301499369110251159e-07,-6.476541018252202668e-07,-6.651582667394154177e-07,-6.826624316536105687e-07,-7.001665965678057196e-07,-7.176707614820008705e-07,-7.351749263961960215e-07,-7.526790913103911724e-07,-7.701832562245863233e-07,-7.876874211387814742e-07,-8.051915860529766252e-07,-8.226957509671717761e-07,-8.401999158813669270e-07,-8.577040807955620780e-07,-8.752082457097572289e-07,-8.927124106239523798e-07,-9.102165755381475308e-07,-9.277207404523426817e-07,-9.452249053665378326e-07,-9.627290702807328777e-07,-9.802332351949280286e-07,-9.977374001091231795e-07,-1.015241565023318330e-06,-1.032745729937513481e-06,-1.050249894851708632e-06,-1.067754059765903783e-06,-1.085258224680098934e-06,-1.102762389594294085e-06 +0.000000000000000000e+00,-1.639544564301853890e-08,-3.279089128603707781e-08,-4.918633692905561671e-08,-6.558178257207415561e-08,-8.197722821509268790e-08,-9.837267385811122018e-08,-1.147681195011297525e-07,-1.311635651441482848e-07,-1.475590107871668170e-07,-1.639544564301853493e-07,-1.803499020732038816e-07,-1.967453477162224139e-07,-2.131407933592409462e-07,-2.295362390022594785e-07,-2.459316846452780108e-07,-2.623271302882965166e-07,-2.787225759313150224e-07,-2.951180215743335282e-07,-3.115134672173520340e-07,-3.279089128603705398e-07,-3.443043585033890456e-07,-3.606998041464075515e-07,-3.770952497894260573e-07,-3.934906954324445631e-07,-4.098861410754630689e-07,-4.262815867184815747e-07,-4.426770323615000805e-07,-4.590724780045185864e-07,-4.754679236475370922e-07,-4.918633692905555980e-07,-5.082588149335740509e-07,-5.246542605765925037e-07,-5.410497062196109566e-07,-5.574451518626294095e-07,-5.738405975056478624e-07,-5.902360431486663152e-07,-6.066314887916847681e-07,-6.230269344347032210e-07,-6.394223800777216739e-07,-6.558178257207401268e-07,-6.722132713637585796e-07,-6.886087170067770325e-07,-7.050041626497954854e-07,-7.213996082928139383e-07,-7.377950539358323911e-07,-7.541904995788508440e-07,-7.705859452218692969e-07,-7.869813908648877498e-07,-8.033768365079062026e-07,-8.197722821509246555e-07,-8.361677277939431084e-07,-8.525631734369615613e-07,-8.689586190799800141e-07,-8.853540647229984670e-07,-9.017495103660169199e-07,-9.181449560090353728e-07,-9.345404016520538256e-07,-9.509358472950722785e-07,-9.673312929380907314e-07,-9.837267385811092902e-07,-1.000122184224127849e-06,-1.016517629867146408e-06,-1.032913075510164966e-06 +0.000000000000000000e+00,-1.860610488769872249e-08,-3.721220977539744497e-08,-5.581831466309616746e-08,-7.442441955079488995e-08,-9.303052443849360582e-08,-1.116366293261923217e-07,-1.302427342138910376e-07,-1.488488391015897534e-07,-1.674549439892884693e-07,-1.860610488769871852e-07,-2.046671537646859010e-07,-2.232732586523846169e-07,-2.418793635400833063e-07,-2.604854684277820222e-07,-2.790915733154807380e-07,-2.976976782031794539e-07,-3.163037830908781698e-07,-3.349098879785768857e-07,-3.535159928662756015e-07,-3.721220977539743174e-07,-3.907282026416730333e-07,-4.093343075293717491e-07,-4.279404124170704650e-07,-4.465465173047691809e-07,-4.651526221924678967e-07,-4.837587270801666126e-07,-5.023648319678653285e-07,-5.209709368555640444e-07,-5.395770417432627602e-07,-5.581831466309614761e-07,-5.767892515186601920e-07,-5.953953564063589078e-07,-6.140014612940576237e-07,-6.326075661817563396e-07,-6.512136710694550554e-07,-6.698197759571537713e-07,-6.884258808448524872e-07,-7.070319857325512031e-07,-7.256380906202499189e-07,-7.442441955079486348e-07,-7.628503003956473507e-07,-7.814564052833460665e-07,-8.000625101710447824e-07,-8.186686150587434983e-07,-8.372747199464422141e-07,-8.558808248341409300e-07,-8.744869297218396459e-07,-8.930930346095383618e-07,-9.116991394972370776e-07,-9.303052443849357935e-07,-9.489113492726345094e-07,-9.675174541603332252e-07,-9.861235590480320470e-07,-1.004729663935730869e-06,-1.023335768823429690e-06,-1.041941873711128512e-06,-1.060547978598827334e-06,-1.079154083486526156e-06,-1.097760188374224977e-06,-1.116366293261923799e-06,-1.134972398149622621e-06,-1.153578503037321443e-06,-1.172184607925020264e-06 +0.000000000000000000e+00,-1.817584708807942674e-08,-3.635169417615885347e-08,-5.452754126423828021e-08,-7.270338835231770695e-08,-9.087923544039713368e-08,-1.090550825284765604e-07,-1.272309296165559872e-07,-1.454067767046354139e-07,-1.635826237927148406e-07,-1.817584708807942674e-07,-1.999343179688736941e-07,-2.181101650569531208e-07,-2.362860121450325476e-07,-2.544618592331119743e-07,-2.726377063211914275e-07,-2.908135534092708807e-07,-3.089894004973503339e-07,-3.271652475854297871e-07,-3.453410946735092403e-07,-3.635169417615886936e-07,-3.816927888496681468e-07,-3.998686359377476000e-07,-4.180444830258270532e-07,-4.362203301139065064e-07,-4.543961772019859596e-07,-4.725720242900654128e-07,-4.907478713781448660e-07,-5.089237184662242663e-07,-5.270995655543036665e-07,-5.452754126423830668e-07,-5.634512597304624671e-07,-5.816271068185418673e-07,-5.998029539066212676e-07,-6.179788009947006679e-07,-6.361546480827800681e-07,-6.543304951708594684e-07,-6.725063422589388687e-07,-6.906821893470182689e-07,-7.088580364350976692e-07,-7.270338835231770695e-07,-7.452097306112564697e-07,-7.633855776993358700e-07,-7.815614247874152703e-07,-7.997372718754946705e-07,-8.179131189635740708e-07,-8.360889660516534711e-07,-8.542648131397328713e-07,-8.724406602278122716e-07,-8.906165073158916719e-07,-9.087923544039710721e-07,-9.269682014920504724e-07,-9.451440485801298727e-07,-9.633198956682092729e-07,-9.814957427562886732e-07,-9.996715898443680735e-07,-1.017847436932447474e-06,-1.036023284020526874e-06,-1.054199131108606274e-06,-1.072374978196685675e-06,-1.090550825284765075e-06,-1.108726672372844475e-06,-1.126902519460923875e-06,-1.145078366549003276e-06 +0.000000000000000000e+00,-1.716194458458792513e-08,-3.432388916917585026e-08,-5.148583375376377208e-08,-6.864777833835168728e-08,-8.580972292293960248e-08,-1.029716675075275177e-07,-1.201336120921154461e-07,-1.372955566767033746e-07,-1.544575012612913030e-07,-1.716194458458792314e-07,-1.887813904304671599e-07,-2.059433350150550883e-07,-2.231052795996430167e-07,-2.402672241842309452e-07,-2.574291687688188736e-07,-2.745911133534068021e-07,-2.917530579379947305e-07,-3.089150025225826589e-07,-3.260769471071705874e-07,-3.432388916917585158e-07,-3.604008362763464442e-07,-3.775627808609343727e-07,-3.947247254455223011e-07,-4.118866700301102296e-07,-4.290486146146981580e-07,-4.462105591992860864e-07,-4.633725037838740149e-07,-4.805344483684619962e-07,-4.976963929530499776e-07,-5.148583375376379590e-07,-5.320202821222259404e-07,-5.491822267068139218e-07,-5.663441712914019031e-07,-5.835061158759898845e-07,-6.006680604605778659e-07,-6.178300050451658473e-07,-6.349919496297538286e-07,-6.521538942143418100e-07,-6.693158387989297914e-07,-6.864777833835177728e-07,-7.036397279681057541e-07,-7.208016725526937355e-07,-7.379636171372817169e-07,-7.551255617218696983e-07,-7.722875063064576797e-07,-7.894494508910456610e-07,-8.066113954756336424e-07,-8.237733400602216238e-07,-8.409352846448096052e-07,-8.580972292293975865e-07,-8.752591738139855679e-07,-8.924211183985735493e-07,-9.095830629831615307e-07,-9.267450075677495120e-07,-9.439069521523374934e-07,-9.610688967369254748e-07,-9.782308413215135621e-07,-9.953927859061016493e-07,-1.012554730490689737e-06,-1.029716675075277824e-06,-1.046878619659865911e-06,-1.064040564244453998e-06,-1.081202508829042086e-06 +0.000000000000000000e+00,-1.860610488769509944e-08,-3.721220977539019887e-08,-5.581831466308529500e-08,-7.442441955078038451e-08,-9.303052443847547402e-08,-1.116366293261705635e-07,-1.302427342138656530e-07,-1.488488391015607426e-07,-1.674549439892558321e-07,-1.860610488769509216e-07,-2.046671537646460111e-07,-2.232732586523411006e-07,-2.418793635400361901e-07,-2.604854684277313061e-07,-2.790915733154264221e-07,-2.976976782031215380e-07,-3.163037830908166540e-07,-3.349098879785117700e-07,-3.535159928662068860e-07,-3.721220977539020020e-07,-3.907282026415971179e-07,-4.093343075292922339e-07,-4.279404124169873499e-07,-4.465465173046824659e-07,-4.651526221923775819e-07,-4.837587270800726978e-07,-5.023648319677678138e-07,-5.209709368554629298e-07,-5.395770417431580458e-07,-5.581831466308531618e-07,-5.767892515185482777e-07,-5.953953564062433937e-07,-6.140014612939385097e-07,-6.326075661816336257e-07,-6.512136710693287417e-07,-6.698197759570238576e-07,-6.884258808447189736e-07,-7.070319857324140896e-07,-7.256380906201092056e-07,-7.442441955078043216e-07,-7.628503003954994375e-07,-7.814564052831945535e-07,-8.000625101708896695e-07,-8.186686150585847855e-07,-8.372747199462799015e-07,-8.558808248339750174e-07,-8.744869297216701334e-07,-8.930930346093652494e-07,-9.116991394970603654e-07,-9.303052443847554814e-07,-9.489113492724505973e-07,-9.675174541601456074e-07,-9.861235590478406175e-07,-1.004729663935535628e-06,-1.023335768823230638e-06,-1.041941873710925648e-06,-1.060547978598620658e-06,-1.079154083486315668e-06,-1.097760188374010678e-06,-1.116366293261705688e-06,-1.134972398149400698e-06,-1.153578503037095708e-06,-1.172184607924790719e-06 +0.000000000000000000e+00,-1.817584708807579045e-08,-3.635169417615158090e-08,-5.452754126422737466e-08,-7.270338835230317504e-08,-9.087923544037897541e-08,-1.090550825284547758e-07,-1.272309296165305762e-07,-1.454067767046063765e-07,-1.635826237926821769e-07,-1.817584708807579773e-07,-1.999343179688337777e-07,-2.181101650569095781e-07,-2.362860121449853784e-07,-2.544618592330612053e-07,-2.726377063211370057e-07,-2.908135534092128060e-07,-3.089894004972886064e-07,-3.271652475853644068e-07,-3.453410946734402072e-07,-3.635169417615160075e-07,-3.816927888495918079e-07,-3.998686359376676083e-07,-4.180444830257434087e-07,-4.362203301138192090e-07,-4.543961772018950094e-07,-4.725720242899708098e-07,-4.907478713780466102e-07,-5.089237184661224106e-07,-5.270995655541982109e-07,-5.452754126422740113e-07,-5.634512597303498117e-07,-5.816271068184256121e-07,-5.998029539065014124e-07,-6.179788009945772128e-07,-6.361546480826530132e-07,-6.543304951707288136e-07,-6.725063422588046139e-07,-6.906821893468804143e-07,-7.088580364349562147e-07,-7.270338835230320151e-07,-7.452097306111078155e-07,-7.633855776991836158e-07,-7.815614247872594162e-07,-7.997372718753352166e-07,-8.179131189634110170e-07,-8.360889660514868173e-07,-8.542648131395626177e-07,-8.724406602276384181e-07,-8.906165073157142185e-07,-9.087923544037900188e-07,-9.269682014918658192e-07,-9.451440485799416196e-07,-9.633198956680174200e-07,-9.814957427560932204e-07,-9.996715898441690207e-07,-1.017847436932244821e-06,-1.036023284020320621e-06,-1.054199131108396422e-06,-1.072374978196472222e-06,-1.090550825284548023e-06,-1.108726672372623823e-06,-1.126902519460699623e-06,-1.145078366548775424e-06 +0.000000000000000000e+00,-1.716194458458443443e-08,-3.432388916916886885e-08,-5.148583375375330328e-08,-6.864777833833773771e-08,-8.580972292292217213e-08,-1.029716675075066066e-07,-1.201336120920910410e-07,-1.372955566766754754e-07,-1.544575012612599098e-07,-1.716194458458443443e-07,-1.887813904304287787e-07,-2.059433350150132131e-07,-2.231052795995976475e-07,-2.402672241841820820e-07,-2.574291687687665164e-07,-2.745911133533509508e-07,-2.917530579379353852e-07,-3.089150025225198197e-07,-3.260769471071042541e-07,-3.432388916916886885e-07,-3.604008362762731230e-07,-3.775627808608575574e-07,-3.947247254454419918e-07,-4.118866700300264262e-07,-4.290486146146108607e-07,-4.462105591991952951e-07,-4.633725037837797295e-07,-4.805344483683641639e-07,-4.976963929529486513e-07,-5.148583375375331387e-07,-5.320202821221176260e-07,-5.491822267067021134e-07,-5.663441712912866008e-07,-5.835061158758710881e-07,-6.006680604604555755e-07,-6.178300050450400629e-07,-6.349919496296245502e-07,-6.521538942142090376e-07,-6.693158387987935250e-07,-6.864777833833780123e-07,-7.036397279679624997e-07,-7.208016725525469871e-07,-7.379636171371314744e-07,-7.551255617217159618e-07,-7.722875063063004492e-07,-7.894494508908849365e-07,-8.066113954754694239e-07,-8.237733400600539113e-07,-8.409352846446383986e-07,-8.580972292292228860e-07,-8.752591738138073734e-07,-8.924211183983918607e-07,-9.095830629829763481e-07,-9.267450075675608355e-07,-9.439069521521453228e-07,-9.610688967367298102e-07,-9.782308413213142976e-07,-9.953927859058987849e-07,-1.012554730490483272e-06,-1.029716675075067760e-06,-1.046878619659652247e-06,-1.064040564244236734e-06,-1.081202508828821222e-06 +0.000000000000000000e+00,-1.959679180157388965e-08,-3.919358360314777929e-08,-5.879037540472166894e-08,-7.838716720629555858e-08,-9.798395900786944823e-08,-1.175807508094433379e-07,-1.371775426110172143e-07,-1.567743344125910907e-07,-1.763711262141649671e-07,-1.959679180157388435e-07,-2.155647098173127199e-07,-2.351615016188865963e-07,-2.547582934204604727e-07,-2.743550852220343227e-07,-2.939518770236081726e-07,-3.135486688251820226e-07,-3.331454606267558725e-07,-3.527422524283297224e-07,-3.723390442299035724e-07,-3.919358360314774223e-07,-4.115326278330512723e-07,-4.311294196346251222e-07,-4.507262114361989721e-07,-4.703230032377728221e-07,-4.899197950393466720e-07,-5.095165868409205220e-07,-5.291133786424943719e-07,-5.487101704440682218e-07,-5.683069622456420718e-07,-5.879037540472159217e-07,-6.075005458487897717e-07,-6.270973376503636216e-07,-6.466941294519374715e-07,-6.662909212535113215e-07,-6.858877130550851714e-07,-7.054845048566590214e-07,-7.250812966582328713e-07,-7.446780884598067212e-07,-7.642748802613805712e-07,-7.838716720629544211e-07,-8.034684638645282711e-07,-8.230652556661021210e-07,-8.426620474676759710e-07,-8.622588392692498209e-07,-8.818556310708236708e-07,-9.014524228723975208e-07,-9.210492146739713707e-07,-9.406460064755452207e-07,-9.602427982771190706e-07,-9.798395900786929205e-07,-9.994363818802667705e-07,-1.019033173681840620e-06,-1.038629965483414470e-06,-1.058226757284988320e-06,-1.077823549086562170e-06,-1.097420340888136020e-06,-1.117017132689709870e-06,-1.136613924491283720e-06,-1.156210716292857570e-06,-1.175807508094431420e-06,-1.195404299896005270e-06,-1.215001091697579120e-06,-1.234597883499152970e-06 +0.000000000000000000e+00,-1.908266174715893909e-08,-3.816532349431787817e-08,-5.724798524147682057e-08,-7.633064698863576958e-08,-9.541330873579471860e-08,-1.144959704829536676e-07,-1.335786322301126166e-07,-1.526612939772715656e-07,-1.717439557244305147e-07,-1.908266174715894637e-07,-2.099092792187484127e-07,-2.289919409659073617e-07,-2.480746027130663107e-07,-2.671572644602252332e-07,-2.862399262073841558e-07,-3.053225879545430783e-07,-3.244052497017020009e-07,-3.434879114488609234e-07,-3.625705731960198460e-07,-3.816532349431787685e-07,-4.007358966903376911e-07,-4.198185584374966136e-07,-4.389012201846555361e-07,-4.579838819318144587e-07,-4.770665436789733812e-07,-4.961492054261323038e-07,-5.152318671732912263e-07,-5.343145289204501489e-07,-5.533971906676090714e-07,-5.724798524147679939e-07,-5.915625141619269165e-07,-6.106451759090858390e-07,-6.297278376562447616e-07,-6.488104994034036841e-07,-6.678931611505626067e-07,-6.869758228977215292e-07,-7.060584846448804517e-07,-7.251411463920393743e-07,-7.442238081391982968e-07,-7.633064698863572194e-07,-7.823891316335161419e-07,-8.014717933806750645e-07,-8.205544551278339870e-07,-8.396371168749929096e-07,-8.587197786221518321e-07,-8.778024403693107546e-07,-8.968851021164696772e-07,-9.159677638636285997e-07,-9.350504256107875223e-07,-9.541330873579465507e-07,-9.732157491051054732e-07,-9.922984108522643958e-07,-1.011381072599423318e-06,-1.030463734346582241e-06,-1.049546396093741163e-06,-1.068629057840900086e-06,-1.087711719588059009e-06,-1.106794381335217931e-06,-1.125877043082376854e-06,-1.144959704829535776e-06,-1.164042366576694699e-06,-1.183125028323853621e-06,-1.202207690071012544e-06 +0.000000000000000000e+00,-1.807153424900567519e-08,-3.614306849801135039e-08,-5.421460274701702889e-08,-7.228613699602271401e-08,-9.035767124502839913e-08,-1.084292054940340842e-07,-1.265007397430397561e-07,-1.445722739920454280e-07,-1.626438082410510999e-07,-1.807153424900567718e-07,-1.987868767390624437e-07,-2.168584109880681156e-07,-2.349299452370737874e-07,-2.530014794860794593e-07,-2.710730137350851312e-07,-2.891445479840908031e-07,-3.072160822330964750e-07,-3.252876164821021469e-07,-3.433591507311078187e-07,-3.614306849801134906e-07,-3.795022192291191625e-07,-3.975737534781248344e-07,-4.156452877271305063e-07,-4.337168219761361782e-07,-4.517883562251418501e-07,-4.698598904741475219e-07,-4.879314247231531938e-07,-5.060029589721588128e-07,-5.240744932211644317e-07,-5.421460274701700507e-07,-5.602175617191756696e-07,-5.782890959681812886e-07,-5.963606302171869075e-07,-6.144321644661925264e-07,-6.325036987151981454e-07,-6.505752329642037643e-07,-6.686467672132093833e-07,-6.867183014622150022e-07,-7.047898357112206212e-07,-7.228613699602262401e-07,-7.409329042092318591e-07,-7.590044384582374780e-07,-7.770759727072430969e-07,-7.951475069562487159e-07,-8.132190412052543348e-07,-8.312905754542599538e-07,-8.493621097032655727e-07,-8.674336439522711917e-07,-8.855051782012768106e-07,-9.035767124502824296e-07,-9.216482466992880485e-07,-9.397197809482936675e-07,-9.577913151972992864e-07,-9.758628494463049053e-07,-9.939343836953105243e-07,-1.012005917944316143e-06,-1.030077452193321762e-06,-1.048148986442327381e-06,-1.066220520691333000e-06,-1.084292054940338619e-06,-1.102363589189344238e-06,-1.120435123438349857e-06,-1.138506657687355476e-06 +0.000000000000000000e+00,-1.959679180157019049e-08,-3.919358360314038099e-08,-5.879037540471057148e-08,-7.838716720628076197e-08,-9.798395900785095908e-08,-1.175807508094211562e-07,-1.371775426109913533e-07,-1.567743344125615504e-07,-1.763711262141317475e-07,-1.959679180157019446e-07,-2.155647098172721417e-07,-2.351615016188423389e-07,-2.547582934204125095e-07,-2.743550852219826537e-07,-2.939518770235527978e-07,-3.135486688251229420e-07,-3.331454606266930862e-07,-3.527422524282632304e-07,-3.723390442298333745e-07,-3.919358360314035187e-07,-4.115326278329736629e-07,-4.311294196345438070e-07,-4.507262114361139512e-07,-4.703230032376840954e-07,-4.899197950392542396e-07,-5.095165868408243837e-07,-5.291133786423945279e-07,-5.487101704439646721e-07,-5.683069622455348162e-07,-5.879037540471049604e-07,-6.075005458486751046e-07,-6.270973376502452488e-07,-6.466941294518153929e-07,-6.662909212533855371e-07,-6.858877130549556813e-07,-7.054845048565258254e-07,-7.250812966580959696e-07,-7.446780884596661138e-07,-7.642748802612362580e-07,-7.838716720628064021e-07,-8.034684638643765463e-07,-8.230652556659466905e-07,-8.426620474675168346e-07,-8.622588392690869788e-07,-8.818556310706571230e-07,-9.014524228722272671e-07,-9.210492146737974113e-07,-9.406460064753675555e-07,-9.602427982769375938e-07,-9.798395900785076321e-07,-9.994363818800776704e-07,-1.019033173681647709e-06,-1.038629965483217747e-06,-1.058226757284787785e-06,-1.077823549086357824e-06,-1.097420340887927862e-06,-1.117017132689497900e-06,-1.136613924491067938e-06,-1.156210716292637977e-06,-1.175807508094208015e-06,-1.195404299895778053e-06,-1.215001091697348092e-06,-1.234597883498918130e-06 +0.000000000000000000e+00,-1.908266174715536236e-08,-3.816532349431072472e-08,-5.724798524146608707e-08,-7.633064698862144943e-08,-9.541330873577681179e-08,-1.144959704829321741e-07,-1.335786322300875233e-07,-1.526612939772428724e-07,-1.717439557243982215e-07,-1.908266174715535706e-07,-2.099092792187089198e-07,-2.289919409658642689e-07,-2.480746027130196180e-07,-2.671572644601749407e-07,-2.862399262073302633e-07,-3.053225879544855860e-07,-3.244052497016409086e-07,-3.434879114487962313e-07,-3.625705731959515539e-07,-3.816532349431068766e-07,-4.007358966902621992e-07,-4.198185584374175219e-07,-4.389012201845728445e-07,-4.579838819317281672e-07,-4.770665436788834899e-07,-4.961492054260388125e-07,-5.152318671731941352e-07,-5.343145289203494578e-07,-5.533971906675047805e-07,-5.724798524146601031e-07,-5.915625141618154258e-07,-6.106451759089707484e-07,-6.297278376561260711e-07,-6.488104994032813937e-07,-6.678931611504367164e-07,-6.869758228975920390e-07,-7.060584846447473617e-07,-7.251411463919026844e-07,-7.442238081390580070e-07,-7.633064698862133297e-07,-7.823891316333686523e-07,-8.014717933805239750e-07,-8.205544551276792976e-07,-8.396371168748346203e-07,-8.587197786219899429e-07,-8.778024403691452656e-07,-8.968851021163005882e-07,-9.159677638634559109e-07,-9.350504256106112335e-07,-9.541330873577665562e-07,-9.732157491049218788e-07,-9.922984108520772015e-07,-1.011381072599232524e-06,-1.030463734346387847e-06,-1.049546396093543169e-06,-1.068629057840698492e-06,-1.087711719587853815e-06,-1.106794381335009137e-06,-1.125877043082164460e-06,-1.144959704829319783e-06,-1.164042366576475105e-06,-1.183125028323630428e-06,-1.202207690070785751e-06 +0.000000000000000000e+00,-1.807153424900226059e-08,-3.614306849800452118e-08,-5.421460274700678508e-08,-7.228613699600905560e-08,-9.035767124501132612e-08,-1.084292054940135966e-07,-1.265007397430158804e-07,-1.445722739920181641e-07,-1.626438082410204479e-07,-1.807153424900227317e-07,-1.987868767390250154e-07,-2.168584109880272992e-07,-2.349299452370295829e-07,-2.530014794860318667e-07,-2.710730137350341504e-07,-2.891445479840364342e-07,-3.072160822330387179e-07,-3.252876164820410017e-07,-3.433591507310432854e-07,-3.614306849800455692e-07,-3.795022192290478529e-07,-3.975737534780501367e-07,-4.156452877270524204e-07,-4.337168219760547042e-07,-4.517883562250569879e-07,-4.698598904740592717e-07,-4.879314247230615025e-07,-5.060029589720637333e-07,-5.240744932210659641e-07,-5.421460274700681950e-07,-5.602175617190704258e-07,-5.782890959680726566e-07,-5.963606302170748874e-07,-6.144321644660771182e-07,-6.325036987150793490e-07,-6.505752329640815798e-07,-6.686467672130838106e-07,-6.867183014620860415e-07,-7.047898357110882723e-07,-7.228613699600905031e-07,-7.409329042090927339e-07,-7.590044384580949647e-07,-7.770759727070971955e-07,-7.951475069560994263e-07,-8.132190412051016572e-07,-8.312905754541038880e-07,-8.493621097031061188e-07,-8.674336439521083496e-07,-8.855051782011105804e-07,-9.035767124501128112e-07,-9.216482466991150420e-07,-9.397197809481172728e-07,-9.577913151971195037e-07,-9.758628494461217345e-07,-9.939343836951239653e-07,-1.012005917944126196e-06,-1.030077452193128427e-06,-1.048148986442130658e-06,-1.066220520691132889e-06,-1.084292054940135119e-06,-1.102363589189137350e-06,-1.120435123438139581e-06,-1.138506657687141812e-06 +0.000000000000000000e+00,-2.069199564611581167e-08,-4.138399129223162334e-08,-6.207598693834743501e-08,-8.276798258446324668e-08,-1.034599782305790584e-07,-1.241519738766948700e-07,-1.448439695228106685e-07,-1.655359651689264669e-07,-1.862279608150422653e-07,-2.069199564611580638e-07,-2.276119521072738622e-07,-2.483039477533896871e-07,-2.689959433995055120e-07,-2.896879390456213369e-07,-3.103799346917371618e-07,-3.310719303378529867e-07,-3.517639259839688116e-07,-3.724559216300846365e-07,-3.931479172762004615e-07,-4.138399129223162864e-07,-4.345319085684321113e-07,-4.552239042145479362e-07,-4.759158998606637611e-07,-4.966078955067795860e-07,-5.172998911528954109e-07,-5.379918867990112358e-07,-5.586838824451270607e-07,-5.793758780912428856e-07,-6.000678737373587105e-07,-6.207598693834745354e-07,-6.414518650295903603e-07,-6.621438606757061852e-07,-6.828358563218220101e-07,-7.035278519679378350e-07,-7.242198476140536599e-07,-7.449118432601694848e-07,-7.656038389062853098e-07,-7.862958345524011347e-07,-8.069878301985169596e-07,-8.276798258446327845e-07,-8.483718214907486094e-07,-8.690638171368644343e-07,-8.897558127829802592e-07,-9.104478084290960841e-07,-9.311398040752119090e-07,-9.518317997213277339e-07,-9.725237953674435588e-07,-9.932157910135593837e-07,-1.013907786659675209e-06,-1.034599782305791034e-06,-1.055291777951906858e-06,-1.075983773598022683e-06,-1.096675769244138508e-06,-1.117367764890254333e-06,-1.138059760536370158e-06,-1.158751756182485983e-06,-1.179443751828601808e-06,-1.200135747474717633e-06,-1.220827743120833458e-06,-1.241519738766949283e-06,-1.262211734413065107e-06,-1.282903730059180932e-06,-1.303595725705296757e-06 +0.000000000000000000e+00,-2.013617202559200963e-08,-4.027234405118401927e-08,-6.040851607677603221e-08,-8.054468810236805177e-08,-1.006808601279600713e-07,-1.208170321535520909e-07,-1.409532041791441104e-07,-1.610893762047361300e-07,-1.812255482303281496e-07,-2.013617202559201691e-07,-2.214978922815121887e-07,-2.416340643071042347e-07,-2.617702363326962807e-07,-2.819064083582883268e-07,-3.020425803838803728e-07,-3.221787524094724188e-07,-3.423149244350644649e-07,-3.624510964606565109e-07,-3.825872684862485569e-07,-4.027234405118406030e-07,-4.228596125374326490e-07,-4.429957845630246950e-07,-4.631319565886167410e-07,-4.832681286142087871e-07,-5.034043006398008860e-07,-5.235404726653929850e-07,-5.436766446909850840e-07,-5.638128167165771829e-07,-5.839489887421692819e-07,-6.040851607677613809e-07,-6.242213327933534799e-07,-6.443575048189455788e-07,-6.644936768445376778e-07,-6.846298488701297768e-07,-7.047660208957218757e-07,-7.249021929213139747e-07,-7.450383649469060737e-07,-7.651745369724981726e-07,-7.853107089980902716e-07,-8.054468810236823706e-07,-8.255830530492744695e-07,-8.457192250748665685e-07,-8.658553971004586675e-07,-8.859915691260507665e-07,-9.061277411516428654e-07,-9.262639131772349644e-07,-9.464000852028270634e-07,-9.665362572284190565e-07,-9.866724292540110495e-07,-1.006808601279603043e-06,-1.026944773305195036e-06,-1.047080945330787029e-06,-1.067217117356379022e-06,-1.087353289381971015e-06,-1.107489461407563008e-06,-1.127625633433155001e-06,-1.147761805458746994e-06,-1.167897977484338987e-06,-1.188034149509930980e-06,-1.208170321535522974e-06,-1.228306493561114967e-06,-1.248442665586706960e-06,-1.268578837612298953e-06 +0.000000000000000000e+00,-1.902357538812986470e-08,-3.804715077625972940e-08,-5.707072616438959410e-08,-7.609430155251945879e-08,-9.511787694064932349e-08,-1.141414523287791882e-07,-1.331650277169090529e-07,-1.521886031050389176e-07,-1.712121784931687823e-07,-1.902357538812986470e-07,-2.092593292694285117e-07,-2.282829046575583764e-07,-2.473064800456882676e-07,-2.663300554338181587e-07,-2.853536308219480499e-07,-3.043772062100779411e-07,-3.234007815982078322e-07,-3.424243569863377234e-07,-3.614479323744676146e-07,-3.804715077625975057e-07,-3.994950831507273969e-07,-4.185186585388572881e-07,-4.375422339269871792e-07,-4.565658093151170704e-07,-4.755893847032469616e-07,-4.946129600913768527e-07,-5.136365354795067439e-07,-5.326601108676366351e-07,-5.516836862557665262e-07,-5.707072616438964174e-07,-5.897308370320263086e-07,-6.087544124201561998e-07,-6.277779878082860909e-07,-6.468015631964159821e-07,-6.658251385845458733e-07,-6.848487139726757644e-07,-7.038722893608056556e-07,-7.228958647489355468e-07,-7.419194401370654379e-07,-7.609430155251953291e-07,-7.799665909133252203e-07,-7.989901663014551114e-07,-8.180137416895850026e-07,-8.370373170777148938e-07,-8.560608924658447849e-07,-8.750844678539746761e-07,-8.941080432421045673e-07,-9.131316186302344584e-07,-9.321551940183643496e-07,-9.511787694064942408e-07,-9.702023447946241320e-07,-9.892259201827539172e-07,-1.008249495570883703e-06,-1.027273070959013488e-06,-1.046296646347143273e-06,-1.065320221735273058e-06,-1.084343797123402844e-06,-1.103367372511532629e-06,-1.122390947899662414e-06,-1.141414523287792200e-06,-1.160438098675921985e-06,-1.179461674064051770e-06,-1.198485249452181555e-06 +0.000000000000000000e+00,-2.069199564611203311e-08,-4.138399129222406622e-08,-6.207598693833609271e-08,-8.276798258444811920e-08,-1.034599782305601457e-07,-1.241519738766721854e-07,-1.448439695227842252e-07,-1.655359651688962649e-07,-1.862279608150083046e-07,-2.069199564611203443e-07,-2.276119521072323841e-07,-2.483039477533444238e-07,-2.689959433994564900e-07,-2.896879390455685562e-07,-3.103799346916806224e-07,-3.310719303377926886e-07,-3.517639259839047548e-07,-3.724559216300168210e-07,-3.931479172761288872e-07,-4.138399129222409534e-07,-4.345319085683530196e-07,-4.552239042144650858e-07,-4.759158998605771520e-07,-4.966078955066891652e-07,-5.172998911528011785e-07,-5.379918867989131917e-07,-5.586838824450252050e-07,-5.793758780911372182e-07,-6.000678737372492315e-07,-6.207598693833612448e-07,-6.414518650294732580e-07,-6.621438606755852713e-07,-6.828358563216972845e-07,-7.035278519678092978e-07,-7.242198476139213110e-07,-7.449118432600333243e-07,-7.656038389061453376e-07,-7.862958345522573508e-07,-8.069878301983693641e-07,-8.276798258444813773e-07,-8.483718214905933906e-07,-8.690638171367054038e-07,-8.897558127828174171e-07,-9.104478084289294304e-07,-9.311398040750414436e-07,-9.518317997211534569e-07,-9.725237953672654701e-07,-9.932157910133774834e-07,-1.013907786659489497e-06,-1.034599782305601510e-06,-1.055291777951713523e-06,-1.075983773597825536e-06,-1.096675769243937550e-06,-1.117367764890049563e-06,-1.138059760536161576e-06,-1.158751756182273589e-06,-1.179443751828385603e-06,-1.200135747474497616e-06,-1.220827743120609629e-06,-1.241519738766721642e-06,-1.262211734412833656e-06,-1.282903730058945669e-06,-1.303595725705057682e-06 +0.000000000000000000e+00,-2.013617202558831379e-08,-4.027234405117662758e-08,-6.040851607676494137e-08,-8.054468810235325516e-08,-1.006808601279415690e-07,-1.208170321535298827e-07,-1.409532041791181965e-07,-1.610893762047065103e-07,-1.812255482302948241e-07,-2.013617202558831379e-07,-2.214978922814714517e-07,-2.416340643070597655e-07,-2.617702363326480528e-07,-2.819064083582363401e-07,-3.020425803838246275e-07,-3.221787524094129148e-07,-3.423149244350012021e-07,-3.624510964605894894e-07,-3.825872684861777767e-07,-4.027234405117660641e-07,-4.228596125373543514e-07,-4.429957845629426387e-07,-4.631319565885309260e-07,-4.832681286141192133e-07,-5.034043006397075007e-07,-5.235404726652957880e-07,-5.436766446908840753e-07,-5.638128167164723626e-07,-5.839489887420606499e-07,-6.040851607676489373e-07,-6.242213327932372246e-07,-6.443575048188255119e-07,-6.644936768444137992e-07,-6.846298488700020865e-07,-7.047660208955903739e-07,-7.249021929211786612e-07,-7.450383649467669485e-07,-7.651745369723552358e-07,-7.853107089979435232e-07,-8.054468810235318105e-07,-8.255830530491200978e-07,-8.457192250747083851e-07,-8.658553971002966724e-07,-8.859915691258849598e-07,-9.061277411514732471e-07,-9.262639131770615344e-07,-9.464000852026498217e-07,-9.665362572282382149e-07,-9.866724292538266081e-07,-1.006808601279415001e-06,-1.026944773305003395e-06,-1.047080945330591788e-06,-1.067217117356180181e-06,-1.087353289381768574e-06,-1.107489461407356967e-06,-1.127625633432945361e-06,-1.147761805458533754e-06,-1.167897977484122147e-06,-1.188034149509710540e-06,-1.208170321535298933e-06,-1.228306493560887327e-06,-1.248442665586475720e-06,-1.268578837612064113e-06 +0.000000000000000000e+00,-1.902357538812621518e-08,-3.804715077625243036e-08,-5.707072616437864884e-08,-7.609430155250487395e-08,-9.511787694063109905e-08,-1.141414523287573242e-07,-1.331650277168835625e-07,-1.521886031050098008e-07,-1.712121784931360392e-07,-1.902357538812622775e-07,-2.092593292693885158e-07,-2.282829046575147542e-07,-2.473064800456409925e-07,-2.663300554337672309e-07,-2.853536308218934692e-07,-3.043772062100197075e-07,-3.234007815981459459e-07,-3.424243569862721842e-07,-3.614479323743984226e-07,-3.804715077625246609e-07,-3.994950831506508992e-07,-4.185186585387771376e-07,-4.375422339269033759e-07,-4.565658093150296143e-07,-4.755893847031558526e-07,-4.946129600912820909e-07,-5.136365354794082763e-07,-5.326601108675344617e-07,-5.516836862556606471e-07,-5.707072616437868325e-07,-5.897308370319130179e-07,-6.087544124200392033e-07,-6.277779878081653887e-07,-6.468015631962915741e-07,-6.658251385844177595e-07,-6.848487139725439449e-07,-7.038722893606701303e-07,-7.228958647487963157e-07,-7.419194401369225011e-07,-7.609430155250486865e-07,-7.799665909131748719e-07,-7.989901663013010573e-07,-8.180137416894272427e-07,-8.370373170775534281e-07,-8.560608924656796135e-07,-8.750844678538057989e-07,-8.941080432419319843e-07,-9.131316186300581697e-07,-9.321551940181843551e-07,-9.511787694063105405e-07,-9.702023447944367259e-07,-9.892259201825629113e-07,-1.008249495570689097e-06,-1.027273070958815282e-06,-1.046296646346941468e-06,-1.065320221735067653e-06,-1.084343797123193838e-06,-1.103367372511320024e-06,-1.122390947899446209e-06,-1.141414523287572395e-06,-1.160438098675698580e-06,-1.179461674063824765e-06,-1.198485249451950951e-06 +0.000000000000000000e+00,-2.181042690265148462e-08,-4.362085380530296924e-08,-6.543128070795446047e-08,-8.724170761060595171e-08,-1.090521345132574429e-07,-1.308625614159089209e-07,-1.526729883185603989e-07,-1.744834152212118769e-07,-1.962938421238633549e-07,-2.181042690265148329e-07,-2.399146959291663109e-07,-2.617251228318177889e-07,-2.835355497344692669e-07,-3.053459766371207449e-07,-3.271564035397722229e-07,-3.489668304424237009e-07,-3.707772573450751789e-07,-3.925876842477266569e-07,-4.143981111503781349e-07,-4.362085380530296129e-07,-4.580189649556810909e-07,-4.798293918583326219e-07,-5.016398187609841528e-07,-5.234502456636356838e-07,-5.452606725662872147e-07,-5.670710994689387456e-07,-5.888815263715902766e-07,-6.106919532742418075e-07,-6.325023801768933385e-07,-6.543128070795448694e-07,-6.761232339821964003e-07,-6.979336608848479313e-07,-7.197440877874994622e-07,-7.415545146901509932e-07,-7.633649415928025241e-07,-7.851753684954540550e-07,-8.069857953981055860e-07,-8.287962223007571169e-07,-8.506066492034086479e-07,-8.724170761060601788e-07,-8.942275030087117097e-07,-9.160379299113632407e-07,-9.378483568140147716e-07,-9.596587837166663026e-07,-9.814692106193178335e-07,-1.003279637521969364e-06,-1.025090064424620895e-06,-1.046900491327272426e-06,-1.068710918229923957e-06,-1.090521345132575488e-06,-1.112331772035227019e-06,-1.134142198937878550e-06,-1.155952625840530081e-06,-1.177763052743181612e-06,-1.199573479645833143e-06,-1.221383906548484674e-06,-1.243194333451136205e-06,-1.265004760353787736e-06,-1.286815187256439267e-06,-1.308625614159090798e-06,-1.330436041061742329e-06,-1.352246467964393859e-06,-1.374056894867045390e-06 +0.000000000000000000e+00,-2.125303106136799537e-08,-4.250606212273599073e-08,-6.375909318410398941e-08,-8.501212424547199470e-08,-1.062651553068400000e-07,-1.275181863682080053e-07,-1.487712174295760106e-07,-1.700242484909440159e-07,-1.912772795523120212e-07,-2.125303106136800265e-07,-2.337833416750480317e-07,-2.550363727364160635e-07,-2.762894037977841217e-07,-2.975424348591521800e-07,-3.187954659205202382e-07,-3.400484969818882964e-07,-3.613015280432563547e-07,-3.825545591046244129e-07,-4.038075901659924711e-07,-4.250606212273605294e-07,-4.463136522887285876e-07,-4.675666833500966458e-07,-4.888197144114647041e-07,-5.100727454728327623e-07,-5.313257765342008205e-07,-5.525788075955688788e-07,-5.738318386569369370e-07,-5.950848697183049952e-07,-6.163379007796730535e-07,-6.375909318410411117e-07,-6.588439629024091699e-07,-6.800969939637772282e-07,-7.013500250251452864e-07,-7.226030560865133446e-07,-7.438560871478814029e-07,-7.651091182092494611e-07,-7.863621492706175193e-07,-8.076151803319855775e-07,-8.288682113933536358e-07,-8.501212424547216940e-07,-8.713742735160897522e-07,-8.926273045774578105e-07,-9.138803356388258687e-07,-9.351333667001939269e-07,-9.563863977615619852e-07,-9.776394288229300434e-07,-9.988924598842981016e-07,-1.020145490945666160e-06,-1.041398522007034218e-06,-1.062651553068402276e-06,-1.083904584129770335e-06,-1.105157615191138393e-06,-1.126410646252506451e-06,-1.147663677313874509e-06,-1.168916708375242567e-06,-1.190169739436610626e-06,-1.211422770497978684e-06,-1.232675801559346742e-06,-1.253928832620714800e-06,-1.275181863682082859e-06,-1.296434894743450917e-06,-1.317687925804818975e-06,-1.338940956866187033e-06 +0.000000000000000000e+00,-1.994878615011338924e-08,-3.989757230022677848e-08,-5.984635845034017434e-08,-7.979514460045357020e-08,-9.974393075056696606e-08,-1.196927169006803487e-07,-1.396415030507937313e-07,-1.595902892009071139e-07,-1.795390753510204966e-07,-1.994878615011338792e-07,-2.194366476512472618e-07,-2.393854338013606444e-07,-2.593342199514740535e-07,-2.792830061015874626e-07,-2.992317922517008717e-07,-3.191805784018142808e-07,-3.391293645519276899e-07,-3.590781507020410990e-07,-3.790269368521545081e-07,-3.989757230022679172e-07,-4.189245091523813263e-07,-4.388732953024947354e-07,-4.588220814526081445e-07,-4.787708676027216065e-07,-4.987196537528350685e-07,-5.186684399029485306e-07,-5.386172260530619926e-07,-5.585660122031754546e-07,-5.785147983532889167e-07,-5.984635845034023787e-07,-6.184123706535158407e-07,-6.383611568036293028e-07,-6.583099429537427648e-07,-6.782587291038562268e-07,-6.982075152539696889e-07,-7.181563014040831509e-07,-7.381050875541966129e-07,-7.580538737043100750e-07,-7.780026598544235370e-07,-7.979514460045369990e-07,-8.179002321546504611e-07,-8.378490183047639231e-07,-8.577978044548773851e-07,-8.777465906049908472e-07,-8.976953767551043092e-07,-9.176441629052177712e-07,-9.375929490553312333e-07,-9.575417352054446953e-07,-9.774905213555581573e-07,-9.974393075056716194e-07,-1.017388093655785081e-06,-1.037336879805898543e-06,-1.057285665956012005e-06,-1.077234452106125468e-06,-1.097183238256238930e-06,-1.117132024406352392e-06,-1.137080810556465854e-06,-1.157029596706579316e-06,-1.176978382856692778e-06,-1.196927169006806240e-06,-1.216875955156919702e-06,-1.236824741307033164e-06,-1.256773527457146626e-06 +0.000000000000000000e+00,-2.181042690264755055e-08,-4.362085380529510109e-08,-6.543128070794265495e-08,-8.724170761059021542e-08,-1.090521345132377759e-07,-1.308625614158853364e-07,-1.526729883185328968e-07,-1.744834152211804573e-07,-1.962938421238280178e-07,-2.181042690264755783e-07,-2.399146959291231123e-07,-2.617251228317706198e-07,-2.835355497344181273e-07,-3.053459766370656349e-07,-3.271564035397131424e-07,-3.489668304423606499e-07,-3.707772573450081575e-07,-3.925876842476556650e-07,-4.143981111503031725e-07,-4.362085380529506801e-07,-4.580189649555981876e-07,-4.798293918582456951e-07,-5.016398187608932027e-07,-5.234502456635407102e-07,-5.452606725661882177e-07,-5.670710994688357253e-07,-5.888815263714832328e-07,-6.106919532741307403e-07,-6.325023801767782479e-07,-6.543128070794257554e-07,-6.761232339820732629e-07,-6.979336608847207705e-07,-7.197440877873682780e-07,-7.415545146900157855e-07,-7.633649415926632931e-07,-7.851753684953108006e-07,-8.069857953979583081e-07,-8.287962223006058157e-07,-8.506066492032533232e-07,-8.724170761059008307e-07,-8.942275030085483383e-07,-9.160379299111958458e-07,-9.378483568138433533e-07,-9.596587837164907550e-07,-9.814692106191380508e-07,-1.003279637521785347e-06,-1.025090064424432642e-06,-1.046900491327079938e-06,-1.068710918229727234e-06,-1.090521345132374530e-06,-1.112331772035021825e-06,-1.134142198937669121e-06,-1.155952625840316417e-06,-1.177763052742963713e-06,-1.199573479645611008e-06,-1.221383906548258304e-06,-1.243194333450905600e-06,-1.265004760353552896e-06,-1.286815187256200192e-06,-1.308625614158847487e-06,-1.330436041061494783e-06,-1.352246467964142079e-06,-1.374056894866789375e-06 +0.000000000000000000e+00,-2.125303106136415394e-08,-4.250606212272830788e-08,-6.375909318409246182e-08,-8.501212424545661576e-08,-1.062651553068207697e-07,-1.275181863681849236e-07,-1.487712174295490908e-07,-1.700242484909132580e-07,-1.912772795522774252e-07,-2.125303106136415923e-07,-2.337833416750057595e-07,-2.550363727363699002e-07,-2.762894037977340409e-07,-2.975424348590981816e-07,-3.187954659204623223e-07,-3.400484969818264630e-07,-3.613015280431906037e-07,-3.825545591045547444e-07,-4.038075901659188851e-07,-4.250606212272830259e-07,-4.463136522886471666e-07,-4.675666833500113073e-07,-4.888197144113754480e-07,-5.100727454727395887e-07,-5.313257765341037294e-07,-5.525788075954678701e-07,-5.738318386568320108e-07,-5.950848697181961515e-07,-6.163379007795602922e-07,-6.375909318409244329e-07,-6.588439629022885736e-07,-6.800969939636527143e-07,-7.013500250250168550e-07,-7.226030560863809957e-07,-7.438560871477451364e-07,-7.651091182091092771e-07,-7.863621492704734178e-07,-8.076151803318375585e-07,-8.288682113932016992e-07,-8.501212424545658399e-07,-8.713742735159299807e-07,-8.926273045772941214e-07,-9.138803356386582621e-07,-9.351333667000224028e-07,-9.563863977613864376e-07,-9.776394288227504724e-07,-9.988924598841145072e-07,-1.020145490945478542e-06,-1.041398522006842577e-06,-1.062651553068206612e-06,-1.083904584129570647e-06,-1.105157615190934681e-06,-1.126410646252298716e-06,-1.147663677313662751e-06,-1.168916708375026786e-06,-1.190169739436390821e-06,-1.211422770497754856e-06,-1.232675801559118890e-06,-1.253928832620482925e-06,-1.275181863681846960e-06,-1.296434894743210995e-06,-1.317687925804575030e-06,-1.338940956865939064e-06 +0.000000000000000000e+00,-1.994878615010957428e-08,-3.989757230021914857e-08,-5.984635845032872616e-08,-7.979514460043831037e-08,-9.974393075054789459e-08,-1.196927169006574788e-07,-1.396415030507670762e-07,-1.595902892008766737e-07,-1.795390753509862711e-07,-1.994878615010958686e-07,-2.194366476512054660e-07,-2.393854338013150635e-07,-2.593342199514246609e-07,-2.792830061015342584e-07,-2.992317922516438558e-07,-3.191805784017534533e-07,-3.391293645518630507e-07,-3.590781507019726481e-07,-3.790269368520822456e-07,-3.989757230021918430e-07,-4.189245091523014405e-07,-4.388732953024110379e-07,-4.588220814525206354e-07,-4.787708676026302328e-07,-4.987196537527397773e-07,-5.186684399028493218e-07,-5.386172260529588663e-07,-5.585660122030684109e-07,-5.785147983531779554e-07,-5.984635845032874999e-07,-6.184123706533970444e-07,-6.383611568035065889e-07,-6.583099429536161334e-07,-6.782587291037256779e-07,-6.982075152538352224e-07,-7.181563014039447669e-07,-7.381050875540543114e-07,-7.580538737041638559e-07,-7.780026598542734004e-07,-7.979514460043829449e-07,-8.179002321544924894e-07,-8.378490183046020339e-07,-8.577978044547115784e-07,-8.777465906048211230e-07,-8.976953767549306675e-07,-9.176441629050402120e-07,-9.375929490551497565e-07,-9.575417352052594069e-07,-9.774905213553690572e-07,-9.974393075054787076e-07,-1.017388093655588358e-06,-1.037336879805698008e-06,-1.057285665955807659e-06,-1.077234452105917309e-06,-1.097183238256026960e-06,-1.117132024406136610e-06,-1.137080810556246260e-06,-1.157029596706355911e-06,-1.176978382856465561e-06,-1.196927169006575211e-06,-1.216875955156684862e-06,-1.236824741306794512e-06,-1.256773527456904163e-06 +0.000000000000000000e+00,-2.287856799556882376e-08,-4.575713599113764752e-08,-6.863570398670647128e-08,-9.151427198227529504e-08,-1.143928399778441188e-07,-1.372714079734129426e-07,-1.601499759689817663e-07,-1.830285439645505901e-07,-2.059071119601194138e-07,-2.287856799556882376e-07,-2.516642479512570349e-07,-2.745428159468258322e-07,-2.974213839423946295e-07,-3.202999519379634268e-07,-3.431785199335322240e-07,-3.660570879291010213e-07,-3.889356559246698186e-07,-4.118142239202386159e-07,-4.346927919158074132e-07,-4.575713599113762105e-07,-4.804499279069450078e-07,-5.033284959025138580e-07,-5.262070638980827082e-07,-5.490856318936515585e-07,-5.719641998892204087e-07,-5.948427678847892589e-07,-6.177213358803581092e-07,-6.405999038759269594e-07,-6.634784718714958096e-07,-6.863570398670646598e-07,-7.092356078626335101e-07,-7.321141758582023603e-07,-7.549927438537712105e-07,-7.778713118493400608e-07,-8.007498798449089110e-07,-8.236284478404777612e-07,-8.465070158360466115e-07,-8.693855838316154617e-07,-8.922641518271843119e-07,-9.151427198227531621e-07,-9.380212878183220124e-07,-9.608998558138908626e-07,-9.837784238094598187e-07,-1.006656991805028775e-06,-1.029535559800597731e-06,-1.052414127796166687e-06,-1.075292695791735643e-06,-1.098171263787304599e-06,-1.121049831782873555e-06,-1.143928399778442511e-06,-1.166806967774011468e-06,-1.189685535769580424e-06,-1.212564103765149380e-06,-1.235442671760718336e-06,-1.258321239756287292e-06,-1.281199807751856248e-06,-1.304078375747425204e-06,-1.326956943742994160e-06,-1.349835511738563116e-06,-1.372714079734132073e-06,-1.395592647729701029e-06,-1.418471215725269985e-06,-1.441349783720838941e-06 +0.000000000000000000e+00,-2.286950248614015296e-08,-4.573900497228030591e-08,-6.860850745842046549e-08,-9.147800994456062506e-08,-1.143475124307007846e-07,-1.372170149168409310e-07,-1.600865174029810773e-07,-1.829560198891212236e-07,-2.058255223752613700e-07,-2.286950248614015163e-07,-2.515645273475416627e-07,-2.744340298336818090e-07,-2.973035323198219553e-07,-3.201730348059621017e-07,-3.430425372921022480e-07,-3.659120397782423944e-07,-3.887815422643825407e-07,-4.116510447505226870e-07,-4.345205472366628334e-07,-4.573900497228029797e-07,-4.802595522089431260e-07,-5.031290546950833253e-07,-5.259985571812235246e-07,-5.488680596673637239e-07,-5.717375621535039232e-07,-5.946070646396441224e-07,-6.174765671257843217e-07,-6.403460696119245210e-07,-6.632155720980647203e-07,-6.860850745842049195e-07,-7.089545770703451188e-07,-7.318240795564853181e-07,-7.546935820426255174e-07,-7.775630845287657167e-07,-8.004325870149059159e-07,-8.233020895010461152e-07,-8.461715919871863145e-07,-8.690410944733265138e-07,-8.919105969594667131e-07,-9.147800994456069123e-07,-9.376496019317471116e-07,-9.605191044178873109e-07,-9.833886069040274043e-07,-1.006258109390167498e-06,-1.029127611876307591e-06,-1.051997114362447684e-06,-1.074866616848587778e-06,-1.097736119334727871e-06,-1.120605621820867965e-06,-1.143475124307008058e-06,-1.166344626793148151e-06,-1.189214129279288245e-06,-1.212083631765428338e-06,-1.234953134251568432e-06,-1.257822636737708525e-06,-1.280692139223848618e-06,-1.303561641709988712e-06,-1.326431144196128805e-06,-1.349300646682268899e-06,-1.372170149168408992e-06,-1.395039651654549085e-06,-1.417909154140689179e-06,-1.440778656626829272e-06 +0.000000000000000000e+00,-2.235361211035701591e-08,-4.470722422071403181e-08,-6.706083633107104110e-08,-8.941444844142805039e-08,-1.117680605517850597e-07,-1.341216726621420822e-07,-1.564752847724991047e-07,-1.788288968828561273e-07,-2.011825089932131498e-07,-2.235361211035701723e-07,-2.458897332139271948e-07,-2.682433453242842173e-07,-2.905969574346412399e-07,-3.129505695449982624e-07,-3.353041816553552849e-07,-3.576577937657123074e-07,-3.800114058760693300e-07,-4.023650179864263525e-07,-4.247186300967833750e-07,-4.470722422071403975e-07,-4.694258543174974201e-07,-4.917794664278544955e-07,-5.141330785382115180e-07,-5.364866906485685406e-07,-5.588403027589255631e-07,-5.811939148692825856e-07,-6.035475269796396081e-07,-6.259011390899966307e-07,-6.482547512003536532e-07,-6.706083633107106757e-07,-6.929619754210676982e-07,-7.153155875314247208e-07,-7.376691996417817433e-07,-7.600228117521387658e-07,-7.823764238624957883e-07,-8.047300359728528109e-07,-8.270836480832098334e-07,-8.494372601935668559e-07,-8.717908723039238784e-07,-8.941444844142809009e-07,-9.164980965246379235e-07,-9.388517086349949460e-07,-9.612053207453519685e-07,-9.835589328557089910e-07,-1.005912544966066014e-06,-1.028266157076423036e-06,-1.050619769186780059e-06,-1.072973381297137081e-06,-1.095326993407494104e-06,-1.117680605517851126e-06,-1.140034217628208149e-06,-1.162387829738565171e-06,-1.184741441848922194e-06,-1.207095053959279216e-06,-1.229448666069636239e-06,-1.251802278179993261e-06,-1.274155890290350284e-06,-1.296509502400707306e-06,-1.318863114511064329e-06,-1.341216726621421351e-06,-1.363570338731778374e-06,-1.385923950842135396e-06,-1.408277562952492419e-06 +0.000000000000000000e+00,-2.083090753582254371e-08,-4.166181507164508742e-08,-6.249272260746762451e-08,-8.332363014329016160e-08,-1.041545376791126987e-07,-1.249854452149352490e-07,-1.458163527507577994e-07,-1.666472602865803497e-07,-1.874781678224029000e-07,-2.083090753582254503e-07,-2.291399828940480007e-07,-2.499708904298705510e-07,-2.708017979656931278e-07,-2.916327055015157046e-07,-3.124636130373382814e-07,-3.332945205731608582e-07,-3.541254281089834350e-07,-3.749563356448060118e-07,-3.957872431806285886e-07,-4.166181507164511654e-07,-4.374490582522737422e-07,-4.582799657880963190e-07,-4.791108733239188958e-07,-4.999417808597414196e-07,-5.207726883955639435e-07,-5.416035959313864673e-07,-5.624345034672089912e-07,-5.832654110030315150e-07,-6.040963185388540389e-07,-6.249272260746765628e-07,-6.457581336104990866e-07,-6.665890411463216105e-07,-6.874199486821441343e-07,-7.082508562179666582e-07,-7.290817637537891820e-07,-7.499126712896117059e-07,-7.707435788254342298e-07,-7.915744863612567536e-07,-8.124053938970792775e-07,-8.332363014329018013e-07,-8.540672089687243252e-07,-8.748981165045468490e-07,-8.957290240403693729e-07,-9.165599315761918968e-07,-9.373908391120144206e-07,-9.582217466478369445e-07,-9.790526541836594683e-07,-9.998835617194819922e-07,-1.020714469255304516e-06,-1.041545376791127040e-06,-1.062376284326949564e-06,-1.083207191862772088e-06,-1.104038099398594611e-06,-1.124869006934417135e-06,-1.145699914470239659e-06,-1.166530822006062183e-06,-1.187361729541884707e-06,-1.208192637077707231e-06,-1.229023544613529755e-06,-1.249854452149352278e-06,-1.270685359685174802e-06,-1.291516267220997326e-06,-1.312347174756819850e-06 +0.000000000000000000e+00,-2.287169685301655704e-08,-4.574339370603311408e-08,-6.861509055904967773e-08,-9.148678741206624139e-08,-1.143584842650828050e-07,-1.372301811180993555e-07,-1.601018779711159059e-07,-1.829735748241324563e-07,-2.058452716771490067e-07,-2.287169685301655572e-07,-2.515886653831821076e-07,-2.744603622361986580e-07,-2.973320590892152084e-07,-3.202037559422317588e-07,-3.430754527952483093e-07,-3.659471496482648597e-07,-3.888188465012814101e-07,-4.116905433542979605e-07,-4.345622402073145110e-07,-4.574339370603310614e-07,-4.803056339133476647e-07,-5.031773307663643210e-07,-5.260490276193809773e-07,-5.489207244723976336e-07,-5.717924213254142899e-07,-5.946641181784309462e-07,-6.175358150314476025e-07,-6.404075118844642588e-07,-6.632792087374809151e-07,-6.861509055904975714e-07,-7.090226024435142277e-07,-7.318942992965308840e-07,-7.547659961495475403e-07,-7.776376930025641966e-07,-8.005093898555808529e-07,-8.233810867085975092e-07,-8.462527835616141655e-07,-8.691244804146308218e-07,-8.919961772676474781e-07,-9.148678741206641345e-07,-9.377395709736807908e-07,-9.606112678266974471e-07,-9.834829646797141034e-07,-1.006354661532730760e-06,-1.029226358385747416e-06,-1.052098055238764072e-06,-1.074969752091780729e-06,-1.097841448944797385e-06,-1.120713145797814041e-06,-1.143584842650830697e-06,-1.166456539503847354e-06,-1.189328236356864010e-06,-1.212199933209880666e-06,-1.235071630062897323e-06,-1.257943326915913979e-06,-1.280815023768930635e-06,-1.303686720621947292e-06,-1.326558417474963948e-06,-1.349430114327980604e-06,-1.372301811180997260e-06,-1.395173508034013917e-06,-1.418045204887030573e-06,-1.440916901740047229e-06 +0.000000000000000000e+00,-2.082824449192013268e-08,-4.165648898384026535e-08,-6.248473347576039803e-08,-8.331297796768053070e-08,-1.041412224596006634e-07,-1.249694669515207961e-07,-1.457977114434409155e-07,-1.666259559353610349e-07,-1.874542004272811544e-07,-2.082824449192012738e-07,-2.291106894111213933e-07,-2.499389339030415392e-07,-2.707671783949616851e-07,-2.915954228868818310e-07,-3.124236673788019769e-07,-3.332519118707221228e-07,-3.540801563626422687e-07,-3.749084008545624146e-07,-3.957366453464825605e-07,-4.165648898384027065e-07,-4.373931343303228524e-07,-4.582213788222429983e-07,-4.790496233141631442e-07,-4.998778678060832901e-07,-5.207061122980034360e-07,-5.415343567899235819e-07,-5.623626012818437278e-07,-5.831908457737638737e-07,-6.040190902656840196e-07,-6.248473347576041656e-07,-6.456755792495243115e-07,-6.665038237414444574e-07,-6.873320682333646033e-07,-7.081603127252847492e-07,-7.289885572172048951e-07,-7.498168017091250410e-07,-7.706450462010451869e-07,-7.914732906929653328e-07,-8.123015351848854787e-07,-8.331297796768056247e-07,-8.539580241687257706e-07,-8.747862686606459165e-07,-8.956145131525660624e-07,-9.164427576444862083e-07,-9.372710021364063542e-07,-9.580992466283265001e-07,-9.789274911202466460e-07,-9.997557356121667919e-07,-1.020583980104086938e-06,-1.041412224596007084e-06,-1.062240469087927230e-06,-1.083068713579847376e-06,-1.103896958071767521e-06,-1.124725202563687667e-06,-1.145553447055607813e-06,-1.166381691547527959e-06,-1.187209936039448105e-06,-1.208038180531368251e-06,-1.228866425023288397e-06,-1.249694669515208543e-06,-1.270522914007128689e-06,-1.291351158499048835e-06,-1.312179402990968981e-06 +0.000000000000000000e+00,-2.287856799556475734e-08,-4.575713599112951468e-08,-6.863570398669426871e-08,-9.151427198225901612e-08,-1.143928399778237635e-07,-1.372714079733885110e-07,-1.601499759689532584e-07,-1.830285439645180058e-07,-2.059071119600827532e-07,-2.287856799556475006e-07,-2.516642479512122480e-07,-2.745428159467769690e-07,-2.974213839423416899e-07,-3.202999519379064108e-07,-3.431785199334711318e-07,-3.660570879290358527e-07,-3.889356559246005737e-07,-4.118142239201652946e-07,-4.346927919157300156e-07,-4.575713599112947365e-07,-4.804499279068594575e-07,-5.033284959024241784e-07,-5.262070638979888993e-07,-5.490856318935536203e-07,-5.719641998891183412e-07,-5.948427678846830622e-07,-6.177213358802477831e-07,-6.405999038758125041e-07,-6.634784718713772250e-07,-6.863570398669419459e-07,-7.092356078625066669e-07,-7.321141758580713878e-07,-7.549927438536361088e-07,-7.778713118492008297e-07,-8.007498798447655507e-07,-8.236284478403302716e-07,-8.465070158358949926e-07,-8.693855838314597135e-07,-8.922641518270244344e-07,-9.151427198225891554e-07,-9.380212878181538763e-07,-9.608998558137187032e-07,-9.837784238092836359e-07,-1.006656991804848569e-06,-1.029535559800413501e-06,-1.052414127795978434e-06,-1.075292695791543367e-06,-1.098171263787108299e-06,-1.121049831782673232e-06,-1.143928399778238165e-06,-1.166806967773803097e-06,-1.189685535769368030e-06,-1.212564103764932963e-06,-1.235442671760497896e-06,-1.258321239756062828e-06,-1.281199807751627761e-06,-1.304078375747192694e-06,-1.326956943742757626e-06,-1.349835511738322559e-06,-1.372714079733887492e-06,-1.395592647729452424e-06,-1.418471215725017357e-06,-1.441349783720582290e-06 +0.000000000000000000e+00,-2.287169685301454864e-08,-4.574339370602909729e-08,-6.861509055904364263e-08,-9.148678741205818134e-08,-1.143584842650727201e-07,-1.372301811180872588e-07,-1.601018779711017975e-07,-1.829735748241163362e-07,-2.058452716771308749e-07,-2.287169685301454137e-07,-2.515886653831599259e-07,-2.744603622361744646e-07,-2.973320590891890033e-07,-3.202037559422035421e-07,-3.430754527952180808e-07,-3.659471496482326195e-07,-3.888188465012471582e-07,-4.116905433542616969e-07,-4.345622402072762357e-07,-4.574339370602907744e-07,-4.803056339133053131e-07,-5.031773307663198518e-07,-5.260490276193343905e-07,-5.489207244723489292e-07,-5.717924213253634680e-07,-5.946641181783780067e-07,-6.175358150313925454e-07,-6.404075118844070841e-07,-6.632792087374216228e-07,-6.861509055904361616e-07,-7.090226024434507003e-07,-7.318942992964652390e-07,-7.547659961494797777e-07,-7.776376930024943164e-07,-8.005093898555088551e-07,-8.233810867085233939e-07,-8.462527835615379326e-07,-8.691244804145524713e-07,-8.919961772675670100e-07,-9.148678741205815487e-07,-9.377395709735960875e-07,-9.606112678266106262e-07,-9.834829646796251649e-07,-1.006354661532639704e-06,-1.029226358385654242e-06,-1.052098055238668781e-06,-1.074969752091683320e-06,-1.097841448944697858e-06,-1.120713145797712397e-06,-1.143584842650726936e-06,-1.166456539503741475e-06,-1.189328236356756013e-06,-1.212199933209770552e-06,-1.235071630062785091e-06,-1.257943326915799630e-06,-1.280815023768814168e-06,-1.303686720621828707e-06,-1.326558417474843246e-06,-1.349430114327857784e-06,-1.372301811180872323e-06,-1.395173508033886862e-06,-1.418045204886901401e-06,-1.440916901739915939e-06 +0.000000000000000000e+00,-2.235361211035297926e-08,-4.470722422070595853e-08,-6.706083633105894441e-08,-8.941444844141193029e-08,-1.117680605517649162e-07,-1.341216726621178888e-07,-1.564752847724708615e-07,-1.788288968828238341e-07,-2.011825089931768068e-07,-2.235361211035297794e-07,-2.458897332138827785e-07,-2.682433453242357776e-07,-2.905969574345887768e-07,-3.129505695449417759e-07,-3.353041816552947750e-07,-3.576577937656477741e-07,-3.800114058760007732e-07,-4.023650179863537724e-07,-4.247186300967067715e-07,-4.470722422070597706e-07,-4.694258543174127697e-07,-4.917794664277657688e-07,-5.141330785381187679e-07,-5.364866906484717671e-07,-5.588403027588247662e-07,-5.811939148691777653e-07,-6.035475269795307644e-07,-6.259011390898837635e-07,-6.482547512002367626e-07,-6.706083633105897618e-07,-6.929619754209427609e-07,-7.153155875312957600e-07,-7.376691996416487591e-07,-7.600228117520017582e-07,-7.823764238623547573e-07,-8.047300359727077565e-07,-8.270836480830607556e-07,-8.494372601934137547e-07,-8.717908723037667538e-07,-8.941444844141197529e-07,-9.164980965244727520e-07,-9.388517086348257512e-07,-9.612053207451787503e-07,-9.835589328555317494e-07,-1.005912544965884749e-06,-1.028266157076237748e-06,-1.050619769186590747e-06,-1.072973381296943746e-06,-1.095326993407296745e-06,-1.117680605517649744e-06,-1.140034217628002743e-06,-1.162387829738355742e-06,-1.184741441848708741e-06,-1.207095053959061741e-06,-1.229448666069414740e-06,-1.251802278179767739e-06,-1.274155890290120738e-06,-1.296509502400473737e-06,-1.318863114510826736e-06,-1.341216726621179735e-06,-1.363570338731532734e-06,-1.385923950841885734e-06,-1.408277562952238733e-06 +0.000000000000000000e+00,-2.083090753581872875e-08,-4.166181507163745751e-08,-6.249272260745618957e-08,-8.332363014327492825e-08,-1.041545376790936669e-07,-1.249854452149124056e-07,-1.458163527507311443e-07,-1.666472602865498830e-07,-1.874781678223686216e-07,-2.083090753581873603e-07,-2.291399828940060990e-07,-2.499708904298248641e-07,-2.708017979656436293e-07,-2.916327055014623944e-07,-3.124636130372811596e-07,-3.332945205730999247e-07,-3.541254281089186899e-07,-3.749563356447374550e-07,-3.957872431805562202e-07,-4.166181507163749853e-07,-4.374490582521937505e-07,-4.582799657880125156e-07,-4.791108733238312278e-07,-4.999417808596499401e-07,-5.207726883954686523e-07,-5.416035959312873645e-07,-5.624345034671060767e-07,-5.832654110029247889e-07,-6.040963185387435011e-07,-6.249272260745622133e-07,-6.457581336103809255e-07,-6.665890411461996377e-07,-6.874199486820183499e-07,-7.082508562178370621e-07,-7.290817637536557744e-07,-7.499126712894744866e-07,-7.707435788252931988e-07,-7.915744863611119110e-07,-8.124053938969306232e-07,-8.332363014327493354e-07,-8.540672089685680476e-07,-8.748981165043867598e-07,-8.957290240402054720e-07,-9.165599315760241842e-07,-9.373908391118428964e-07,-9.582217466476616087e-07,-9.790526541834803209e-07,-9.998835617192990331e-07,-1.020714469255117745e-06,-1.041545376790936457e-06,-1.062376284326755170e-06,-1.083207191862573882e-06,-1.104038099398392594e-06,-1.124869006934211306e-06,-1.145699914470030019e-06,-1.166530822005848731e-06,-1.187361729541667443e-06,-1.208192637077486155e-06,-1.229023544613304867e-06,-1.249854452149123580e-06,-1.270685359684942292e-06,-1.291516267220761004e-06,-1.312347174756579716e-06 +0.000000000000000000e+00,-1.798676380523741813e-08,-3.597352761047483627e-08,-5.396029141571225440e-08,-7.194705522094967253e-08,-8.993381902618709067e-08,-1.079205828314245088e-07,-1.259073466366619402e-07,-1.438941104418993715e-07,-1.618808742471368029e-07,-1.798676380523742343e-07,-1.978544018576116656e-07,-2.158411656628490970e-07,-2.338279294680865284e-07,-2.518146932733239862e-07,-2.698014570785614441e-07,-2.877882208837989019e-07,-3.057749846890363597e-07,-3.237617484942738176e-07,-3.417485122995112754e-07,-3.597352761047487333e-07,-3.777220399099861911e-07,-3.957088037152236489e-07,-4.136955675204611068e-07,-4.316823313256985646e-07,-4.496690951309360224e-07,-4.676558589361734803e-07,-4.856426227414109911e-07,-5.036293865466485018e-07,-5.216161503518860126e-07,-5.396029141571235234e-07,-5.575896779623610342e-07,-5.755764417675985449e-07,-5.935632055728360557e-07,-6.115499693780735665e-07,-6.295367331833110773e-07,-6.475234969885485881e-07,-6.655102607937860988e-07,-6.834970245990236096e-07,-7.014837884042611204e-07,-7.194705522094986312e-07,-7.374573160147361420e-07,-7.554440798199736527e-07,-7.734308436252111635e-07,-7.914176074304486743e-07,-8.094043712356861851e-07,-8.273911350409236958e-07,-8.453778988461612066e-07,-8.633646626513987174e-07,-8.813514264566362282e-07,-8.993381902618737390e-07,-9.173249540671112497e-07,-9.353117178723487605e-07,-9.532984816775862713e-07,-9.712852454828236762e-07,-9.892720092880610811e-07,-1.007258773093298486e-06,-1.025245536898535891e-06,-1.043232300703773296e-06,-1.061219064509010701e-06,-1.079205828314248106e-06,-1.097192592119485510e-06,-1.115179355924722915e-06,-1.133166119729960320e-06 +0.000000000000000000e+00,-1.605365086324879775e-08,-3.210730172649759550e-08,-4.816095258974639325e-08,-6.421460345299519099e-08,-8.026825431624399536e-08,-9.632190517949279973e-08,-1.123755560427416041e-07,-1.284292069059904085e-07,-1.444828577692392128e-07,-1.605365086324880172e-07,-1.765901594957368216e-07,-1.926438103589856259e-07,-2.086974612222344303e-07,-2.247511120854832347e-07,-2.408047629487320655e-07,-2.568584138119808699e-07,-2.729120646752296742e-07,-2.889657155384784786e-07,-3.050193664017272830e-07,-3.210730172649760873e-07,-3.371266681282248917e-07,-3.531803189914736961e-07,-3.692339698547225004e-07,-3.852876207179713048e-07,-4.013412715812201091e-07,-4.173949224444689135e-07,-4.334485733077177179e-07,-4.495022241709665222e-07,-4.655558750342153266e-07,-4.816095258974641310e-07,-4.976631767607129353e-07,-5.137168276239617397e-07,-5.297704784872105441e-07,-5.458241293504593484e-07,-5.618777802137081528e-07,-5.779314310769569572e-07,-5.939850819402057615e-07,-6.100387328034545659e-07,-6.260923836667033703e-07,-6.421460345299521746e-07,-6.581996853932009790e-07,-6.742533362564497834e-07,-6.903069871196985877e-07,-7.063606379829473921e-07,-7.224142888461961965e-07,-7.384679397094450008e-07,-7.545215905726938052e-07,-7.705752414359426096e-07,-7.866288922991914139e-07,-8.026825431624402183e-07,-8.187361940256890227e-07,-8.347898448889378270e-07,-8.508434957521866314e-07,-8.668971466154354358e-07,-8.829507974786842401e-07,-8.990044483419330445e-07,-9.150580992051818489e-07,-9.311117500684306532e-07,-9.471654009316794576e-07,-9.632190517949282620e-07,-9.792727026581771722e-07,-9.953263535214260824e-07,-1.011380004384674993e-06 +0.000000000000000000e+00,-1.579633906679596621e-08,-3.159267813359193242e-08,-4.738901720038790194e-08,-6.318535626718387807e-08,-7.898169533397985421e-08,-9.477803440077583035e-08,-1.105743734675718065e-07,-1.263707125343677826e-07,-1.421670516011637455e-07,-1.579633906679597084e-07,-1.737597297347556713e-07,-1.895560688015516342e-07,-2.053524078683475971e-07,-2.211487469351435600e-07,-2.369450860019395229e-07,-2.527414250687355123e-07,-2.685377641355315017e-07,-2.843341032023274910e-07,-3.001304422691234804e-07,-3.159267813359194698e-07,-3.317231204027154591e-07,-3.475194594695114485e-07,-3.633157985363074379e-07,-3.791121376031034273e-07,-3.949084766698994166e-07,-4.107048157366954060e-07,-4.265011548034913954e-07,-4.422974938702873847e-07,-4.580938329370833741e-07,-4.738901720038793635e-07,-4.896865110706754058e-07,-5.054828501374714481e-07,-5.212791892042674904e-07,-5.370755282710635327e-07,-5.528718673378595750e-07,-5.686682064046556173e-07,-5.844645454714516597e-07,-6.002608845382477020e-07,-6.160572236050437443e-07,-6.318535626718397866e-07,-6.476499017386358289e-07,-6.634462408054318712e-07,-6.792425798722279135e-07,-6.950389189390239558e-07,-7.108352580058199981e-07,-7.266315970726160405e-07,-7.424279361394120828e-07,-7.582242752062081251e-07,-7.740206142730041674e-07,-7.898169533398002097e-07,-8.056132924065962520e-07,-8.214096314733922943e-07,-8.372059705401883366e-07,-8.530023096069843789e-07,-8.687986486737804212e-07,-8.845949877405764636e-07,-9.003913268073725059e-07,-9.161876658741685482e-07,-9.319840049409645905e-07,-9.477803440077606328e-07,-9.635766830745566751e-07,-9.793730221413527174e-07,-9.951693612081487597e-07 +0.000000000000000000e+00,-1.747815025654487981e-08,-3.495630051308975962e-08,-5.243445076963463942e-08,-6.991260102617951923e-08,-8.739075128272439242e-08,-1.048689015392692656e-07,-1.223470517958141388e-07,-1.398252020523590120e-07,-1.573033523089038852e-07,-1.747815025654487584e-07,-1.922596528219936316e-07,-2.097378030785385048e-07,-2.272159533350833780e-07,-2.446941035916282247e-07,-2.621722538481730979e-07,-2.796504041047179711e-07,-2.971285543612628442e-07,-3.146067046178077174e-07,-3.320848548743525906e-07,-3.495630051308974638e-07,-3.670411553874423370e-07,-3.845193056439872102e-07,-4.019974559005320834e-07,-4.194756061570769566e-07,-4.369537564136218298e-07,-4.544319066701667030e-07,-4.719100569267115762e-07,-4.893882071832564493e-07,-5.068663574398013225e-07,-5.243445076963461957e-07,-5.418226579528910689e-07,-5.593008082094359421e-07,-5.767789584659808153e-07,-5.942571087225256885e-07,-6.117352589790705617e-07,-6.292134092356154349e-07,-6.466915594921603081e-07,-6.641697097487051813e-07,-6.816478600052500544e-07,-6.991260102617949276e-07,-7.166041605183398008e-07,-7.340823107748846740e-07,-7.515604610314295472e-07,-7.690386112879744204e-07,-7.865167615445192936e-07,-8.039949118010641668e-07,-8.214730620576090400e-07,-8.389512123141539132e-07,-8.564293625706987863e-07,-8.739075128272436595e-07,-8.913856630837885327e-07,-9.088638133403334059e-07,-9.263419635968782791e-07,-9.438201138534231523e-07,-9.612982641099680255e-07,-9.787764143665128987e-07,-9.962545646230577719e-07,-1.013732714879602645e-06,-1.031210865136147518e-06,-1.048689015392692391e-06,-1.066167165649237265e-06,-1.083645315905782138e-06,-1.101123466162327011e-06 +0.000000000000000000e+00,-1.597361178496748126e-08,-3.194722356993496252e-08,-4.792083535490244378e-08,-6.389444713986992504e-08,-7.986805892483740630e-08,-9.584167070980488756e-08,-1.118152824947723688e-07,-1.277888942797398501e-07,-1.437625060647073313e-07,-1.597361178496748126e-07,-1.757097296346422939e-07,-1.916833414196097751e-07,-2.076569532045772564e-07,-2.236305649895447377e-07,-2.396041767745122189e-07,-2.555777885594797002e-07,-2.715514003444471814e-07,-2.875250121294146627e-07,-3.034986239143821440e-07,-3.194722356993496252e-07,-3.354458474843171065e-07,-3.514194592692845877e-07,-3.673930710542520690e-07,-3.833666828392195503e-07,-3.993402946241870315e-07,-4.153139064091545128e-07,-4.312875181941219940e-07,-4.472611299790894753e-07,-4.632347417640569566e-07,-4.792083535490244378e-07,-4.951819653339919191e-07,-5.111555771189594003e-07,-5.271291889039268816e-07,-5.431028006888943629e-07,-5.590764124738618441e-07,-5.750500242588293254e-07,-5.910236360437968066e-07,-6.069972478287642879e-07,-6.229708596137317692e-07,-6.389444713986992504e-07,-6.549180831836667317e-07,-6.708916949686342130e-07,-6.868653067536016942e-07,-7.028389185385691755e-07,-7.188125303235366567e-07,-7.347861421085041380e-07,-7.507597538934716193e-07,-7.667333656784391005e-07,-7.827069774634065818e-07,-7.986805892483740630e-07,-8.146542010333415443e-07,-8.306278128183090256e-07,-8.466014246032765068e-07,-8.625750363882439881e-07,-8.785486481732114693e-07,-8.945222599581789506e-07,-9.104958717431464319e-07,-9.264694835281139131e-07,-9.424430953130813944e-07,-9.584167070980488756e-07,-9.743903188830163569e-07,-9.903639306679838382e-07,-1.006337542452951319e-06 +0.000000000000000000e+00,-1.772374883327647987e-08,-3.544749766655295974e-08,-5.317124649982944292e-08,-7.089499533310593272e-08,-8.861874416638242252e-08,-1.063424929996589123e-07,-1.240662418329354021e-07,-1.417899906662118919e-07,-1.595137394994883817e-07,-1.772374883327648715e-07,-1.949612371660413613e-07,-2.126849859993178511e-07,-2.304087348325943409e-07,-2.481324836658708042e-07,-2.658562324991472676e-07,-2.835799813324237309e-07,-3.013037301657001942e-07,-3.190274789989766575e-07,-3.367512278322531209e-07,-3.544749766655295842e-07,-3.721987254988060475e-07,-3.899224743320825108e-07,-4.076462231653589742e-07,-4.253699719986354375e-07,-4.430937208319119008e-07,-4.608174696651883642e-07,-4.785412184984648804e-07,-4.962649673317413967e-07,-5.139887161650179130e-07,-5.317124649982944292e-07,-5.494362138315709455e-07,-5.671599626648474618e-07,-5.848837114981239780e-07,-6.026074603314004943e-07,-6.203312091646770106e-07,-6.380549579979535268e-07,-6.557787068312300431e-07,-6.735024556645065594e-07,-6.912262044977830756e-07,-7.089499533310595919e-07,-7.266737021643361082e-07,-7.443974509976126244e-07,-7.621211998308891407e-07,-7.798449486641656570e-07,-7.975686974974421732e-07,-8.152924463307186895e-07,-8.330161951639952058e-07,-8.507399439972717220e-07,-8.684636928305482383e-07,-8.861874416638247546e-07,-9.039111904971012708e-07,-9.216349393303777871e-07,-9.393586881636543034e-07,-9.570824369969308196e-07,-9.748061858302073359e-07,-9.925299346634838522e-07,-1.010253683496760368e-06,-1.027977432330036885e-06,-1.045701181163313401e-06,-1.063424929996589917e-06,-1.081148678829866434e-06,-1.098872427663142950e-06,-1.116596176496419466e-06 +0.000000000000000000e+00,-1.585746451401722249e-08,-3.171492902803444497e-08,-4.757239354205166746e-08,-6.342985805606888994e-08,-7.928732257008611904e-08,-9.514478708410334815e-08,-1.110022515981205772e-07,-1.268597161121378063e-07,-1.427171806261550355e-07,-1.585746451401722646e-07,-1.744321096541894937e-07,-1.902895741682067228e-07,-2.061470386822239519e-07,-2.220045031962411810e-07,-2.378619677102584101e-07,-2.537194322242756656e-07,-2.695768967382929477e-07,-2.854343612523102297e-07,-3.012918257663275118e-07,-3.171492902803447938e-07,-3.330067547943620758e-07,-3.488642193083793579e-07,-3.647216838223966399e-07,-3.805791483364139220e-07,-3.964366128504312040e-07,-4.122940773644484861e-07,-4.281515418784657681e-07,-4.440090063924830501e-07,-4.598664709065003322e-07,-4.757239354205176142e-07,-4.915813999345348963e-07,-5.074388644485521783e-07,-5.232963289625694604e-07,-5.391537934765867424e-07,-5.550112579906040244e-07,-5.708687225046213065e-07,-5.867261870186385885e-07,-6.025836515326558706e-07,-6.184411160466731526e-07,-6.342985805606904346e-07,-6.501560450747077167e-07,-6.660135095887249987e-07,-6.818709741027422808e-07,-6.977284386167595628e-07,-7.135859031307768449e-07,-7.294433676447941269e-07,-7.453008321588114089e-07,-7.611582966728286910e-07,-7.770157611868459730e-07,-7.928732257008632551e-07,-8.087306902148805371e-07,-8.245881547288978192e-07,-8.404456192429151012e-07,-8.563030837569323832e-07,-8.721605482709496653e-07,-8.880180127849669473e-07,-9.038754772989842294e-07,-9.197329418130015114e-07,-9.355904063270187934e-07,-9.514478708410360755e-07,-9.673053353550533575e-07,-9.831627998690706396e-07,-9.990202643830879216e-07 +0.000000000000000000e+00,-1.572404758726230630e-08,-3.144809517452461259e-08,-4.717214276178692220e-08,-6.289619034904923842e-08,-7.862023793631155465e-08,-9.434428552357387087e-08,-1.100683331108361871e-07,-1.257923806980985033e-07,-1.415164282853608195e-07,-1.572404758726231358e-07,-1.729645234598854520e-07,-1.886885710471477682e-07,-2.044126186344100844e-07,-2.201366662216724007e-07,-2.358607138089347169e-07,-2.515847613961970596e-07,-2.673088089834594023e-07,-2.830328565707217450e-07,-2.987569041579840877e-07,-3.144809517452464304e-07,-3.302049993325087730e-07,-3.459290469197711157e-07,-3.616530945070334584e-07,-3.773771420942958011e-07,-3.931011896815581438e-07,-4.088252372688204865e-07,-4.245492848560828292e-07,-4.402733324433451719e-07,-4.559973800306075146e-07,-4.717214276178698573e-07,-4.874454752051322000e-07,-5.031695227923945427e-07,-5.188935703796568854e-07,-5.346176179669192281e-07,-5.503416655541815708e-07,-5.660657131414439134e-07,-5.817897607287062561e-07,-5.975138083159685988e-07,-6.132378559032309415e-07,-6.289619034904932842e-07,-6.446859510777556269e-07,-6.604099986650179696e-07,-6.761340462522803123e-07,-6.918580938395426550e-07,-7.075821414268049977e-07,-7.233061890140673404e-07,-7.390302366013296831e-07,-7.547542841885920258e-07,-7.704783317758543685e-07,-7.862023793631167112e-07,-8.019264269503790538e-07,-8.176504745376413965e-07,-8.333745221249037392e-07,-8.490985697121660819e-07,-8.648226172994284246e-07,-8.805466648866907673e-07,-8.962707124739531100e-07,-9.119947600612154527e-07,-9.277188076484777954e-07,-9.434428552357401381e-07,-9.591669028230024808e-07,-9.748909504102648235e-07,-9.906149979975271662e-07 +0.000000000000000000e+00,-1.798676380523431124e-08,-3.597352761046862249e-08,-5.396029141570293704e-08,-7.194705522093725821e-08,-8.993381902617157938e-08,-1.079205828314059005e-07,-1.259073466366402350e-07,-1.438941104418745694e-07,-1.618808742471089038e-07,-1.798676380523432382e-07,-1.978544018575775726e-07,-2.158411656628119070e-07,-2.338279294680462414e-07,-2.518146932732805758e-07,-2.698014570785149102e-07,-2.877882208837492446e-07,-3.057749846889835790e-07,-3.237617484942179134e-07,-3.417485122994522478e-07,-3.597352761046865822e-07,-3.777220399099209166e-07,-3.957088037151552510e-07,-4.136955675203895854e-07,-4.316823313256239198e-07,-4.496690951308582542e-07,-4.676558589360925886e-07,-4.856426227413269230e-07,-5.036293865465612574e-07,-5.216161503517955918e-07,-5.396029141570299263e-07,-5.575896779622642607e-07,-5.755764417674985951e-07,-5.935632055727329295e-07,-6.115499693779672639e-07,-6.295367331832015983e-07,-6.475234969884359327e-07,-6.655102607936702671e-07,-6.834970245989046015e-07,-7.014837884041389359e-07,-7.194705522093732703e-07,-7.374573160146076047e-07,-7.554440798198419391e-07,-7.734308436250762735e-07,-7.914176074303106079e-07,-8.094043712355449423e-07,-8.273911350407792767e-07,-8.453778988460136111e-07,-8.633646626512479455e-07,-8.813514264564822799e-07,-8.993381902617166143e-07,-9.173249540669509487e-07,-9.353117178721852831e-07,-9.532984816774196176e-07,-9.712852454826538461e-07,-9.892720092878880746e-07,-1.007258773093122303e-06,-1.025245536898356532e-06,-1.043232300703590760e-06,-1.061219064508824989e-06,-1.079205828314059217e-06,-1.097192592119293446e-06,-1.115179355924527674e-06,-1.133166119729761903e-06 +0.000000000000000000e+00,-1.605365086324595225e-08,-3.210730172649190449e-08,-4.816095258973785674e-08,-6.421460345298380899e-08,-8.026825431622975462e-08,-9.632190517947570025e-08,-1.123755560427216459e-07,-1.284292069059675915e-07,-1.444828577692135371e-07,-1.605365086324594828e-07,-1.765901594957054284e-07,-1.926438103589513740e-07,-2.086974612221973197e-07,-2.247511120854432653e-07,-2.408047629486891844e-07,-2.568584138119351301e-07,-2.729120646751810757e-07,-2.889657155384270213e-07,-3.050193664016729670e-07,-3.210730172649189126e-07,-3.371266681281648582e-07,-3.531803189914108039e-07,-3.692339698546567495e-07,-3.852876207179026951e-07,-4.013412715811486407e-07,-4.173949224443945864e-07,-4.334485733076405320e-07,-4.495022241708864776e-07,-4.655558750341324233e-07,-4.816095258973783689e-07,-4.976631767606243145e-07,-5.137168276238702602e-07,-5.297704784871162058e-07,-5.458241293503621514e-07,-5.618777802136080970e-07,-5.779314310768540427e-07,-5.939850819400999883e-07,-6.100387328033459339e-07,-6.260923836665918796e-07,-6.421460345298378252e-07,-6.581996853930837708e-07,-6.742533362563297165e-07,-6.903069871195756621e-07,-7.063606379828216077e-07,-7.224142888460675533e-07,-7.384679397093134990e-07,-7.545215905725594446e-07,-7.705752414358053902e-07,-7.866288922990513359e-07,-8.026825431622972815e-07,-8.187361940255432271e-07,-8.347898448887891727e-07,-8.508434957520351184e-07,-8.668971466152810640e-07,-8.829507974785270096e-07,-8.990044483417729553e-07,-9.150580992050189009e-07,-9.311117500682648465e-07,-9.471654009315107922e-07,-9.632190517947567378e-07,-9.792727026580026834e-07,-9.953263535212486290e-07,-1.011380004384494575e-06 +0.000000000000000000e+00,-1.585746451401577988e-08,-3.171492902803155976e-08,-4.757239354204733965e-08,-6.342985805606311953e-08,-7.928732257007889279e-08,-9.514478708409466606e-08,-1.110022515981104393e-07,-1.268597161121262126e-07,-1.427171806261419859e-07,-1.585746451401577591e-07,-1.744321096541735324e-07,-1.902895741681893056e-07,-2.061470386822050789e-07,-2.220045031962208522e-07,-2.378619677102366254e-07,-2.537194322242523722e-07,-2.695768967382681190e-07,-2.854343612522838658e-07,-3.012918257662996126e-07,-3.171492902803153594e-07,-3.330067547943311062e-07,-3.488642193083468530e-07,-3.647216838223625998e-07,-3.805791483363783466e-07,-3.964366128503940934e-07,-4.122940773644098402e-07,-4.281515418784255870e-07,-4.440090063924413338e-07,-4.598664709064570806e-07,-4.757239354204728274e-07,-4.915813999344885212e-07,-5.074388644485042151e-07,-5.232963289625199089e-07,-5.391537934765356028e-07,-5.550112579905512966e-07,-5.708687225045669905e-07,-5.867261870185826843e-07,-6.025836515325983782e-07,-6.184411160466140721e-07,-6.342985805606297659e-07,-6.501560450746454598e-07,-6.660135095886611536e-07,-6.818709741026768475e-07,-6.977284386166925413e-07,-7.135859031307082352e-07,-7.294433676447239290e-07,-7.453008321587396229e-07,-7.611582966727553168e-07,-7.770157611867710106e-07,-7.928732257007867045e-07,-8.087306902148023983e-07,-8.245881547288180922e-07,-8.404456192428337860e-07,-8.563030837568494799e-07,-8.721605482708651737e-07,-8.880180127848808676e-07,-9.038754772988965615e-07,-9.197329418129122553e-07,-9.355904063269279492e-07,-9.514478708409436430e-07,-9.673053353549593369e-07,-9.831627998689749248e-07,-9.990202643829905128e-07 +0.000000000000000000e+00,-1.747815025654185233e-08,-3.495630051308370465e-08,-5.243445076962555367e-08,-6.991260102616739607e-08,-8.739075128270923847e-08,-1.048689015392510809e-07,-1.223470517957929365e-07,-1.398252020523347921e-07,-1.573033523088766478e-07,-1.747815025654185034e-07,-1.922596528219603591e-07,-2.097378030785022147e-07,-2.272159533350440703e-07,-2.446941035915859260e-07,-2.621722538481277816e-07,-2.796504041046696372e-07,-2.971285543612114929e-07,-3.146067046177533485e-07,-3.320848548742952041e-07,-3.495630051308370598e-07,-3.670411553873789154e-07,-3.845193056439207711e-07,-4.019974559004626267e-07,-4.194756061570044823e-07,-4.369537564135463380e-07,-4.544319066700881936e-07,-4.719100569266300492e-07,-4.893882071831719578e-07,-5.068663574397138664e-07,-5.243445076962557750e-07,-5.418226579527976835e-07,-5.593008082093395921e-07,-5.767789584658815007e-07,-5.942571087224234093e-07,-6.117352589789653178e-07,-6.292134092355072264e-07,-6.466915594920491350e-07,-6.641697097485910436e-07,-6.816478600051329521e-07,-6.991260102616748607e-07,-7.166041605182167693e-07,-7.340823107747586779e-07,-7.515604610313005864e-07,-7.690386112878424950e-07,-7.865167615443844036e-07,-8.039949118009263122e-07,-8.214730620574682207e-07,-8.389512123140101293e-07,-8.564293625705520379e-07,-8.739075128270939465e-07,-8.913856630836358550e-07,-9.088638133401777636e-07,-9.263419635967196722e-07,-9.438201138532615808e-07,-9.612982641098034893e-07,-9.787764143663453979e-07,-9.962545646228873065e-07,-1.013732714879429215e-06,-1.031210865135971124e-06,-1.048689015392513032e-06,-1.066167165649054941e-06,-1.083645315905596849e-06,-1.101123466162138758e-06 +0.000000000000000000e+00,-1.597361178496423210e-08,-3.194722356992846419e-08,-4.792083535489269629e-08,-6.389444713985692838e-08,-7.986805892482115386e-08,-9.584167070978537934e-08,-1.118152824947496048e-07,-1.277888942797138303e-07,-1.437625060646780558e-07,-1.597361178496422812e-07,-1.757097296346065067e-07,-1.916833414195707322e-07,-2.076569532045349577e-07,-2.236305649894991832e-07,-2.396041767744634086e-07,-2.555777885594276076e-07,-2.715514003443918067e-07,-2.875250121293560057e-07,-3.034986239143202047e-07,-3.194722356992844037e-07,-3.354458474842486027e-07,-3.514194592692128017e-07,-3.673930710541770007e-07,-3.833666828391411997e-07,-3.993402946241053987e-07,-4.153139064090695977e-07,-4.312875181940337967e-07,-4.472611299789979957e-07,-4.632347417639621948e-07,-4.792083535489263938e-07,-4.951819653338905928e-07,-5.111555771188547918e-07,-5.271291889038189908e-07,-5.431028006887831898e-07,-5.590764124737473888e-07,-5.750500242587115878e-07,-5.910236360436757868e-07,-6.069972478286399858e-07,-6.229708596136041848e-07,-6.389444713985683838e-07,-6.549180831835325828e-07,-6.708916949684967819e-07,-6.868653067534609809e-07,-7.028389185384251799e-07,-7.188125303233893789e-07,-7.347861421083535779e-07,-7.507597538933177769e-07,-7.667333656782819759e-07,-7.827069774632461749e-07,-7.986805892482103739e-07,-8.146542010331745729e-07,-8.306278128181387719e-07,-8.466014246031029709e-07,-8.625750363880671700e-07,-8.785486481730313690e-07,-8.945222599579955680e-07,-9.104958717429597670e-07,-9.264694835279239660e-07,-9.424430953128881650e-07,-9.584167070978523640e-07,-9.743903188828164571e-07,-9.903639306677805503e-07,-1.006337542452744643e-06 +0.000000000000000000e+00,-1.772374883327300240e-08,-3.544749766654600481e-08,-5.317124649981900721e-08,-7.089499533309200962e-08,-8.861874416636500540e-08,-1.063424929996380012e-07,-1.240662418329109970e-07,-1.417899906661839928e-07,-1.595137394994569885e-07,-1.772374883327299843e-07,-1.949612371660029801e-07,-2.126849859992759759e-07,-2.304087348325489717e-07,-2.481324836658219940e-07,-2.658562324990950162e-07,-2.835799813323680385e-07,-3.013037301656410607e-07,-3.190274789989140830e-07,-3.367512278321871052e-07,-3.544749766654601275e-07,-3.721987254987331497e-07,-3.899224743320061720e-07,-4.076462231652791943e-07,-4.253699719985522165e-07,-4.430937208318252388e-07,-4.608174696650982610e-07,-4.785412184983712833e-07,-4.962649673316443055e-07,-5.139887161649173278e-07,-5.317124649981903501e-07,-5.494362138314633723e-07,-5.671599626647363946e-07,-5.848837114980094168e-07,-6.026074603312824391e-07,-6.203312091645554613e-07,-6.380549579978284836e-07,-6.557787068311015058e-07,-6.735024556643745281e-07,-6.912262044976475504e-07,-7.089499533309205726e-07,-7.266737021641935949e-07,-7.443974509974666171e-07,-7.621211998307396394e-07,-7.798449486640126616e-07,-7.975686974972856839e-07,-8.152924463305587062e-07,-8.330161951638317284e-07,-8.507399439971047507e-07,-8.684636928303777729e-07,-8.861874416636507952e-07,-9.039111904969238174e-07,-9.216349393301968397e-07,-9.393586881634698620e-07,-9.570824369967429901e-07,-9.748061858300161182e-07,-9.925299346632892464e-07,-1.010253683496562374e-06,-1.027977432329835503e-06,-1.045701181163108631e-06,-1.063424929996381759e-06,-1.081148678829654887e-06,-1.098872427662928015e-06,-1.116596176496201143e-06 +0.000000000000000000e+00,-1.849837045390792653e-08,-3.699674090781585307e-08,-5.549511136172377960e-08,-7.399348181563170613e-08,-9.249185226953963267e-08,-1.109902227234475592e-07,-1.294885931773554725e-07,-1.479869636312633858e-07,-1.664853340851712991e-07,-1.849837045390792124e-07,-2.034820749929871257e-07,-2.219804454468950390e-07,-2.404788159008029523e-07,-2.589771863547108391e-07,-2.774755568086187259e-07,-2.959739272625266128e-07,-3.144722977164344996e-07,-3.329706681703423864e-07,-3.514690386242502733e-07,-3.699674090781581601e-07,-3.884657795320660469e-07,-4.069641499859739337e-07,-4.254625204398818206e-07,-4.439608908937897074e-07,-4.624592613476975942e-07,-4.809576318016054811e-07,-4.994560022555133149e-07,-5.179543727094211488e-07,-5.364527431633289827e-07,-5.549511136172368166e-07,-5.734494840711446505e-07,-5.919478545250524844e-07,-6.104462249789603183e-07,-6.289445954328681522e-07,-6.474429658867759861e-07,-6.659413363406838199e-07,-6.844397067945916538e-07,-7.029380772484994877e-07,-7.214364477024073216e-07,-7.399348181563151555e-07,-7.584331886102229894e-07,-7.769315590641308233e-07,-7.954299295180386572e-07,-8.139282999719464911e-07,-8.324266704258543249e-07,-8.509250408797621588e-07,-8.694234113336699927e-07,-8.879217817875778266e-07,-9.064201522414856605e-07,-9.249185226953934944e-07,-9.434168931493013283e-07,-9.619152636032090563e-07,-9.804136340571167843e-07,-9.989120045110245123e-07,-1.017410374964932240e-06,-1.035908745418839968e-06,-1.054407115872747696e-06,-1.072905486326655424e-06,-1.091403856780563152e-06,-1.109902227234470880e-06,-1.128400597688378608e-06,-1.146898968142286336e-06,-1.165397338596194064e-06 +0.000000000000000000e+00,-1.827388010325755823e-08,-3.654776020651511646e-08,-5.482164030977267139e-08,-7.309552041303021969e-08,-9.136940051628776800e-08,-1.096432806195453163e-07,-1.279171607228028778e-07,-1.461910408260604394e-07,-1.644649209293180009e-07,-1.827388010325755625e-07,-2.010126811358331240e-07,-2.192865612390906855e-07,-2.375604413423482471e-07,-2.558343214456058086e-07,-2.741082015488633702e-07,-2.923820816521209317e-07,-3.106559617553784933e-07,-3.289298418586360548e-07,-3.472037219618936163e-07,-3.654776020651511779e-07,-3.837514821684087394e-07,-4.020253622716663010e-07,-4.202992423749238625e-07,-4.385731224781814240e-07,-4.568470025814389856e-07,-4.751208826846965471e-07,-4.933947627879541616e-07,-5.116686428912117231e-07,-5.299425229944692847e-07,-5.482164030977268462e-07,-5.664902832009844078e-07,-5.847641633042419693e-07,-6.030380434074995308e-07,-6.213119235107570924e-07,-6.395858036140146539e-07,-6.578596837172722155e-07,-6.761335638205297770e-07,-6.944074439237873385e-07,-7.126813240270449001e-07,-7.309552041303024616e-07,-7.492290842335600232e-07,-7.675029643368175847e-07,-7.857768444400751462e-07,-8.040507245433327078e-07,-8.223246046465902693e-07,-8.405984847498478309e-07,-8.588723648531053924e-07,-8.771462449563629540e-07,-8.954201250596205155e-07,-9.136940051628780770e-07,-9.319678852661356386e-07,-9.502417653693932001e-07,-9.685156454726507617e-07,-9.867895255759083232e-07,-1.005063405679165885e-06,-1.023337285782423446e-06,-1.041611165885681008e-06,-1.059885045988938569e-06,-1.078158926092196131e-06,-1.096432806195453692e-06,-1.114706686298711254e-06,-1.132980566401968816e-06,-1.151254446505226377e-06 +0.000000000000000000e+00,-1.817187531311587223e-08,-3.634375062623174445e-08,-5.451562593934761337e-08,-7.268750125246347567e-08,-9.085937656557933797e-08,-1.090312518786952003e-07,-1.272031271918110758e-07,-1.453750025049269513e-07,-1.635468778180428269e-07,-1.817187531311587024e-07,-1.998906284442745779e-07,-2.180625037573904535e-07,-2.362343790705063290e-07,-2.544062543836222046e-07,-2.725781296967380801e-07,-2.907500050098539556e-07,-3.089218803229698312e-07,-3.270937556360857067e-07,-3.452656309492015822e-07,-3.634375062623174578e-07,-3.816093815754333333e-07,-3.997812568885492088e-07,-4.179531322016650844e-07,-4.361250075147809599e-07,-4.542968828278968354e-07,-4.724687581410127110e-07,-4.906406334541285865e-07,-5.088125087672445150e-07,-5.269843840803604435e-07,-5.451562593934763719e-07,-5.633281347065923004e-07,-5.815000100197082289e-07,-5.996718853328241574e-07,-6.178437606459400858e-07,-6.360156359590560143e-07,-6.541875112721719428e-07,-6.723593865852878713e-07,-6.905312618984037997e-07,-7.087031372115197282e-07,-7.268750125246356567e-07,-7.450468878377515852e-07,-7.632187631508675136e-07,-7.813906384639834421e-07,-7.995625137770993706e-07,-8.177343890902152991e-07,-8.359062644033312275e-07,-8.540781397164471560e-07,-8.722500150295630845e-07,-8.904218903426790130e-07,-9.085937656557949414e-07,-9.267656409689108699e-07,-9.449375162820267984e-07,-9.631093915951427269e-07,-9.812812669082586553e-07,-9.994531422213745838e-07,-1.017625017534490512e-06,-1.035796892847606441e-06,-1.053968768160722369e-06,-1.072140643473838298e-06,-1.090312518786954226e-06,-1.108484394100070155e-06,-1.126656269413186083e-06,-1.144828144726302012e-06 +0.000000000000000000e+00,-1.849837045390455825e-08,-3.699674090780911651e-08,-5.549511136171367476e-08,-7.399348181561823301e-08,-9.249185226952278465e-08,-1.109902227234273363e-07,-1.294885931773318879e-07,-1.479869636312364396e-07,-1.664853340851409912e-07,-1.849837045390455428e-07,-2.034820749929500945e-07,-2.219804454468546461e-07,-2.404788159007591713e-07,-2.589771863546637229e-07,-2.774755568085682745e-07,-2.959739272624728262e-07,-3.144722977163773778e-07,-3.329706681702819294e-07,-3.514690386241864811e-07,-3.699674090780910327e-07,-3.884657795319955844e-07,-4.069641499859001360e-07,-4.254625204398046876e-07,-4.439608908937092393e-07,-4.624592613476137909e-07,-4.809576318015183425e-07,-4.994560022554228942e-07,-5.179543727093274458e-07,-5.364527431632319974e-07,-5.549511136171365491e-07,-5.734494840710411007e-07,-5.919478545249456524e-07,-6.104462249788502040e-07,-6.289445954327547556e-07,-6.474429658866593073e-07,-6.659413363405638589e-07,-6.844397067944684105e-07,-7.029380772483729622e-07,-7.214364477022775138e-07,-7.399348181561820654e-07,-7.584331886100866171e-07,-7.769315590639911687e-07,-7.954299295178957204e-07,-8.139282999718002720e-07,-8.324266704257048236e-07,-8.509250408796093753e-07,-8.694234113335139269e-07,-8.879217817874184785e-07,-9.064201522413230302e-07,-9.249185226952275818e-07,-9.434168931491321334e-07,-9.619152636030366851e-07,-9.804136340569412367e-07,-9.989120045108457883e-07,-1.017410374964750340e-06,-1.035908745418654892e-06,-1.054407115872559443e-06,-1.072905486326463995e-06,-1.091403856780368547e-06,-1.109902227234273098e-06,-1.128400597688177650e-06,-1.146898968142082201e-06,-1.165397338595986753e-06 +0.000000000000000000e+00,-1.827388010325429583e-08,-3.654776020650859166e-08,-5.482164030976289080e-08,-7.309552041301719656e-08,-9.136940051627150232e-08,-1.096432806195258081e-07,-1.279171607227801138e-07,-1.461910408260344196e-07,-1.644649209292887253e-07,-1.827388010325430311e-07,-2.010126811357973369e-07,-2.192865612390516426e-07,-2.375604413423059484e-07,-2.558343214455602277e-07,-2.741082015488145070e-07,-2.923820816520687862e-07,-3.106559617553230655e-07,-3.289298418585773448e-07,-3.472037219618316241e-07,-3.654776020650859034e-07,-3.837514821683401827e-07,-4.020253622715944620e-07,-4.202992423748487413e-07,-4.385731224781030205e-07,-4.568470025813572998e-07,-4.751208826846115791e-07,-4.933947627878658584e-07,-5.116686428911201377e-07,-5.299425229943744170e-07,-5.482164030976286963e-07,-5.664902832008829756e-07,-5.847641633041372549e-07,-6.030380434073915341e-07,-6.213119235106458134e-07,-6.395858036139000927e-07,-6.578596837171543720e-07,-6.761335638204086513e-07,-6.944074439236629306e-07,-7.126813240269172099e-07,-7.309552041301714892e-07,-7.492290842334257684e-07,-7.675029643366800477e-07,-7.857768444399343270e-07,-8.040507245431886063e-07,-8.223246046464428856e-07,-8.405984847496971649e-07,-8.588723648529514442e-07,-8.771462449562057235e-07,-8.954201250594600027e-07,-9.136940051627142820e-07,-9.319678852659685613e-07,-9.502417653692228406e-07,-9.685156454724771199e-07,-9.867895255757312933e-07,-1.005063405678985467e-06,-1.023337285782239640e-06,-1.041611165885493814e-06,-1.059885045988747987e-06,-1.078158926092002160e-06,-1.096432806195256334e-06,-1.114706686298510507e-06,-1.132980566401764681e-06,-1.151254446505018854e-06 +0.000000000000000000e+00,-1.817187531311232858e-08,-3.634375062622465717e-08,-5.451562593933698575e-08,-7.268750125244931434e-08,-9.085937656556164292e-08,-1.090312518786739715e-07,-1.272031271917863001e-07,-1.453750025048986287e-07,-1.635468778180109573e-07,-1.817187531311232858e-07,-1.998906284442356144e-07,-2.180625037573479430e-07,-2.362343790704602716e-07,-2.544062543835726002e-07,-2.725781296966849288e-07,-2.907500050097972574e-07,-3.089218803229095859e-07,-3.270937556360219145e-07,-3.452656309491342431e-07,-3.634375062622465717e-07,-3.816093815753589003e-07,-3.997812568884712289e-07,-4.179531322015835575e-07,-4.361250075146958860e-07,-4.542968828278082146e-07,-4.724687581409205432e-07,-4.906406334540328718e-07,-5.088125087671452004e-07,-5.269843840802575290e-07,-5.451562593933698575e-07,-5.633281347064821861e-07,-5.815000100195945147e-07,-5.996718853327068433e-07,-6.178437606458191719e-07,-6.360156359589315005e-07,-6.541875112720438291e-07,-6.723593865851561576e-07,-6.905312618982684862e-07,-7.087031372113808148e-07,-7.268750125244931434e-07,-7.450468878376054720e-07,-7.632187631507178006e-07,-7.813906384638301291e-07,-7.995625137769424577e-07,-8.177343890900547863e-07,-8.359062644031671149e-07,-8.540781397162794435e-07,-8.722500150293917721e-07,-8.904218903425041007e-07,-9.085937656556164292e-07,-9.267656409687287578e-07,-9.449375162818410864e-07,-9.631093915949534150e-07,-9.812812669080657436e-07,-9.994531422211780722e-07,-1.017625017534290401e-06,-1.035796892847402729e-06,-1.053968768160515058e-06,-1.072140643473627387e-06,-1.090312518786739715e-06,-1.108484394099852044e-06,-1.126656269412964372e-06,-1.144828144726076701e-06 +0.000000000000000000e+00,-1.908552144194278450e-08,-3.817104288388556901e-08,-5.725656432582835020e-08,-7.634208576777112478e-08,-9.542760720971389936e-08,-1.145131286516566739e-07,-1.335986500935994485e-07,-1.526841715355422231e-07,-1.717696929774849977e-07,-1.908552144194277722e-07,-2.099407358613705468e-07,-2.290262573033133214e-07,-2.481117787452560695e-07,-2.671973001871988441e-07,-2.862828216291416187e-07,-3.053683430710843932e-07,-3.244538645130271678e-07,-3.435393859549699424e-07,-3.626249073969127170e-07,-3.817104288388554916e-07,-4.007959502807982661e-07,-4.198814717227410407e-07,-4.389669931646838153e-07,-4.580525146066265899e-07,-4.771380360485693644e-07,-4.962235574905121390e-07,-5.153090789324549136e-07,-5.343946003743976882e-07,-5.534801218163404627e-07,-5.725656432582832373e-07,-5.916511647002260119e-07,-6.107366861421687865e-07,-6.298222075841115611e-07,-6.489077290260543356e-07,-6.679932504679971102e-07,-6.870787719099398848e-07,-7.061642933518826594e-07,-7.252498147938254339e-07,-7.443353362357682085e-07,-7.634208576777109831e-07,-7.825063791196537577e-07,-8.015919005615965323e-07,-8.206774220035393068e-07,-8.397629434454820814e-07,-8.588484648874248560e-07,-8.779339863293676306e-07,-8.970195077713104051e-07,-9.161050292132531797e-07,-9.351905506551959543e-07,-9.542760720971387289e-07,-9.733615935390816093e-07,-9.924471149810244898e-07,-1.011532636422967370e-06,-1.030618157864910251e-06,-1.049703679306853131e-06,-1.068789200748796012e-06,-1.087874722190738892e-06,-1.106960243632681773e-06,-1.126045765074624653e-06,-1.145131286516567533e-06,-1.164216807958510414e-06,-1.183302329400453294e-06,-1.202387850842396175e-06 +0.000000000000000000e+00,-1.876371911435279124e-08,-3.752743822870558248e-08,-5.629115734305837372e-08,-7.505487645741116497e-08,-9.381859557176395621e-08,-1.125823146861167474e-07,-1.313460338004695387e-07,-1.501097529148223299e-07,-1.688734720291751212e-07,-1.876371911435279124e-07,-2.064009102578807037e-07,-2.251646293722334949e-07,-2.439283484865862597e-07,-2.626920676009390244e-07,-2.814557867152917892e-07,-3.002195058296445540e-07,-3.189832249439973188e-07,-3.377469440583500835e-07,-3.565106631727028483e-07,-3.752743822870556131e-07,-3.940381014014083778e-07,-4.128018205157611426e-07,-4.315655396301139074e-07,-4.503292587444666722e-07,-4.690929778588194369e-07,-4.878566969731722017e-07,-5.066204160875249665e-07,-5.253841352018777312e-07,-5.441478543162304960e-07,-5.629115734305832608e-07,-5.816752925449360256e-07,-6.004390116592887903e-07,-6.192027307736415551e-07,-6.379664498879943199e-07,-6.567301690023470846e-07,-6.754938881166998494e-07,-6.942576072310526142e-07,-7.130213263454053790e-07,-7.317850454597581437e-07,-7.505487645741109085e-07,-7.693124836884636733e-07,-7.880762028028164380e-07,-8.068399219171692028e-07,-8.256036410315219676e-07,-8.443673601458747324e-07,-8.631310792602274971e-07,-8.818947983745802619e-07,-9.006585174889330267e-07,-9.194222366032857914e-07,-9.381859557176385562e-07,-9.569496748319914269e-07,-9.757133939463441916e-07,-9.944771130606969564e-07,-1.013240832175049721e-06,-1.032004551289402486e-06,-1.050768270403755251e-06,-1.069531989518108015e-06,-1.088295708632460780e-06,-1.107059427746813545e-06,-1.125823146861166310e-06,-1.144586865975519075e-06,-1.163350585089871839e-06,-1.182114304204224604e-06 +0.000000000000000000e+00,-1.874121356498156764e-08,-3.748242712996313527e-08,-5.622364069494470622e-08,-7.496485425992628378e-08,-9.370606782490786134e-08,-1.124472813898894389e-07,-1.311884949548710297e-07,-1.499297085198526205e-07,-1.686709220848342113e-07,-1.874121356498158021e-07,-2.061533492147973929e-07,-2.248945627797789837e-07,-2.436357763447605745e-07,-2.623769899097421653e-07,-2.811182034747237561e-07,-2.998594170397053469e-07,-3.186006306046869377e-07,-3.373418441696685285e-07,-3.560830577346501193e-07,-3.748242712996317101e-07,-3.935654848646133008e-07,-4.123066984295948916e-07,-4.310479119945764824e-07,-4.497891255595580732e-07,-4.685303391245396640e-07,-4.872715526895212548e-07,-5.060127662545028456e-07,-5.247539798194844364e-07,-5.434951933844660272e-07,-5.622364069494476180e-07,-5.809776205144292088e-07,-5.997188340794107996e-07,-6.184600476443923904e-07,-6.372012612093739812e-07,-6.559424747743555720e-07,-6.746836883393371628e-07,-6.934249019043187536e-07,-7.121661154693003444e-07,-7.309073290342819352e-07,-7.496485425992635260e-07,-7.683897561642451168e-07,-7.871309697292267076e-07,-8.058721832942082984e-07,-8.246133968591898892e-07,-8.433546104241714800e-07,-8.620958239891530708e-07,-8.808370375541346616e-07,-8.995782511191162524e-07,-9.183194646840978431e-07,-9.370606782490794339e-07,-9.558018918140609189e-07,-9.745431053790422979e-07,-9.932843189440236769e-07,-1.012025532509005056e-06,-1.030766746073986435e-06,-1.049507959638967814e-06,-1.068249173203949193e-06,-1.086990386768930572e-06,-1.105731600333911951e-06,-1.124472813898893330e-06,-1.143214027463874709e-06,-1.161955241028856088e-06,-1.180696454593837467e-06 +0.000000000000000000e+00,-1.908552144193923424e-08,-3.817104288387846849e-08,-5.725656432581770273e-08,-7.634208576775693698e-08,-9.542760720969616461e-08,-1.145131286516353922e-07,-1.335986500935746199e-07,-1.526841715355138475e-07,-1.717696929774530751e-07,-1.908552144193923027e-07,-2.099407358613315304e-07,-2.290262573032707580e-07,-2.481117787452100121e-07,-2.671973001871492927e-07,-2.862828216290885732e-07,-3.053683430710278538e-07,-3.244538645129671344e-07,-3.435393859549064149e-07,-3.626249073968456955e-07,-3.817104288387849761e-07,-4.007959502807242566e-07,-4.198814717226635372e-07,-4.389669931646028178e-07,-4.580525146065420983e-07,-4.771380360484813789e-07,-4.962235574904206595e-07,-5.153090789323599400e-07,-5.343946003742992206e-07,-5.534801218162385012e-07,-5.725656432581777817e-07,-5.916511647001170623e-07,-6.107366861420563429e-07,-6.298222075839956234e-07,-6.489077290259349040e-07,-6.679932504678741846e-07,-6.870787719098134651e-07,-7.061642933517527457e-07,-7.252498147936920263e-07,-7.443353362356313068e-07,-7.634208576775705874e-07,-7.825063791195098680e-07,-8.015919005614491485e-07,-8.206774220033884291e-07,-8.397629434453277097e-07,-8.588484648872669902e-07,-8.779339863292062708e-07,-8.970195077711455514e-07,-9.161050292130848319e-07,-9.351905506550241125e-07,-9.542760720969633931e-07,-9.733615935389026736e-07,-9.924471149808419542e-07,-1.011532636422781235e-06,-1.030618157864720515e-06,-1.049703679306659796e-06,-1.068789200748599076e-06,-1.087874722190538357e-06,-1.106960243632477638e-06,-1.126045765074416918e-06,-1.145131286516356199e-06,-1.164216807958295479e-06,-1.183302329400234760e-06,-1.202387850842174040e-06 +0.000000000000000000e+00,-1.876371911434937664e-08,-3.752743822869875328e-08,-5.629115734304812992e-08,-7.505487645739750656e-08,-9.381859557174688320e-08,-1.125823146860962598e-07,-1.313460338004456365e-07,-1.501097529147950131e-07,-1.688734720291443898e-07,-1.876371911434937664e-07,-2.064009102578431430e-07,-2.251646293721925197e-07,-2.439283484865418963e-07,-2.626920676008912730e-07,-2.814557867152406496e-07,-3.002195058295900262e-07,-3.189832249439394029e-07,-3.377469440582887795e-07,-3.565106631726381562e-07,-3.752743822869875328e-07,-3.940381014013369094e-07,-4.128018205156862861e-07,-4.315655396300356627e-07,-4.503292587443850394e-07,-4.690929778587344160e-07,-4.878566969730837926e-07,-5.066204160874331693e-07,-5.253841352017825459e-07,-5.441478543161319226e-07,-5.629115734304812992e-07,-5.816752925448306758e-07,-6.004390116591800525e-07,-6.192027307735294291e-07,-6.379664498878788058e-07,-6.567301690022281824e-07,-6.754938881165775590e-07,-6.942576072309269357e-07,-7.130213263452763123e-07,-7.317850454596256889e-07,-7.505487645739750656e-07,-7.693124836883244422e-07,-7.880762028026738189e-07,-8.068399219170231955e-07,-8.256036410313725721e-07,-8.443673601457219488e-07,-8.631310792600713254e-07,-8.818947983744207021e-07,-9.006585174887700787e-07,-9.194222366031194553e-07,-9.381859557174688320e-07,-9.569496748318182086e-07,-9.757133939461675853e-07,-9.944771130605169619e-07,-1.013240832174866339e-06,-1.032004551289215715e-06,-1.050768270403565092e-06,-1.069531989517914468e-06,-1.088295708632263845e-06,-1.107059427746613222e-06,-1.125823146860962598e-06,-1.144586865975311975e-06,-1.163350585089661352e-06,-1.182114304204010728e-06 +0.000000000000000000e+00,-1.874121356497797105e-08,-3.748242712995594211e-08,-5.622364069493391316e-08,-7.496485425991188422e-08,-9.370606782488984865e-08,-1.124472813898678131e-07,-1.311884949548457775e-07,-1.499297085198237420e-07,-1.686709220848017064e-07,-1.874121356497796708e-07,-2.061533492147576353e-07,-2.248945627797355997e-07,-2.436357763447135641e-07,-2.623769899096915551e-07,-2.811182034746695460e-07,-2.998594170396475369e-07,-3.186006306046255278e-07,-3.373418441696035187e-07,-3.560830577345815096e-07,-3.748242712995595005e-07,-3.935654848645374914e-07,-4.123066984295154823e-07,-4.310479119944934732e-07,-4.497891255594714641e-07,-4.685303391244494550e-07,-4.872715526894274459e-07,-5.060127662544054368e-07,-5.247539798193834277e-07,-5.434951933843614186e-07,-5.622364069493394096e-07,-5.809776205143174005e-07,-5.997188340792953914e-07,-6.184600476442733823e-07,-6.372012612092513732e-07,-6.559424747742293641e-07,-6.746836883392073550e-07,-6.934249019041853459e-07,-7.121661154691633368e-07,-7.309073290341413277e-07,-7.496485425991193186e-07,-7.683897561640973095e-07,-7.871309697290753004e-07,-8.058721832940532913e-07,-8.246133968590312822e-07,-8.433546104240092732e-07,-8.620958239889872641e-07,-8.808370375539652550e-07,-8.995782511189432459e-07,-9.183194646839212368e-07,-9.370606782488992277e-07,-9.558018918138771127e-07,-9.745431053788551036e-07,-9.932843189438330945e-07,-1.012025532508811085e-06,-1.030766746073789076e-06,-1.049507959638767067e-06,-1.068249173203745058e-06,-1.086990386768723049e-06,-1.105731600333701040e-06,-1.124472813898679031e-06,-1.143214027463657022e-06,-1.161955241028635013e-06,-1.180696454593613004e-06 +0.000000000000000000e+00,-1.993264611083545910e-08,-3.986529222167091821e-08,-5.979793833250637400e-08,-7.973058444334182318e-08,-9.966323055417727236e-08,-1.195958766650127215e-07,-1.395285227758481575e-07,-1.594611688866835934e-07,-1.793938149975190294e-07,-1.993264611083544653e-07,-2.192591072191899012e-07,-2.391917533300253372e-07,-2.591243994408607731e-07,-2.790570455516962091e-07,-2.989896916625316450e-07,-3.189223377733670810e-07,-3.388549838842025169e-07,-3.587876299950379528e-07,-3.787202761058733888e-07,-3.986529222167088247e-07,-4.185855683275442607e-07,-4.385182144383796966e-07,-4.584508605492151326e-07,-4.783835066600505685e-07,-4.983161527708860574e-07,-5.182487988817215463e-07,-5.381814449925570351e-07,-5.581140911033925240e-07,-5.780467372142280129e-07,-5.979793833250635018e-07,-6.179120294358989907e-07,-6.378446755467344796e-07,-6.577773216575699684e-07,-6.777099677684054573e-07,-6.976426138792409462e-07,-7.175752599900764351e-07,-7.375079061009119240e-07,-7.574405522117474129e-07,-7.773731983225829017e-07,-7.973058444334183906e-07,-8.172384905442538795e-07,-8.371711366550893684e-07,-8.571037827659248573e-07,-8.770364288767603461e-07,-8.969690749875958350e-07,-9.169017210984313239e-07,-9.368343672092668128e-07,-9.567670133201021958e-07,-9.766996594309375788e-07,-9.966323055417729618e-07,-1.016564951652608345e-06,-1.036497597763443728e-06,-1.056430243874279111e-06,-1.076362889985114494e-06,-1.096295536095949877e-06,-1.116228182206785260e-06,-1.136160828317620643e-06,-1.156093474428456026e-06,-1.176026120539291409e-06,-1.195958766650126792e-06,-1.215891412760962175e-06,-1.235824058871797558e-06,-1.255756704982632941e-06 +0.000000000000000000e+00,-1.947718176219926017e-08,-3.895436352439852035e-08,-5.843154528659778052e-08,-7.790872704879704070e-08,-9.738590881099630749e-08,-1.168630905731955743e-07,-1.363402723353948411e-07,-1.558174540975941079e-07,-1.752946358597933747e-07,-1.947718176219926415e-07,-2.142489993841919082e-07,-2.337261811463911750e-07,-2.532033629085904154e-07,-2.726805446707896292e-07,-2.921577264329888431e-07,-3.116349081951880569e-07,-3.311120899573872708e-07,-3.505892717195864846e-07,-3.700664534817856985e-07,-3.895436352439849123e-07,-4.090208170061841262e-07,-4.284979987683833400e-07,-4.479751805305825539e-07,-4.674523622927817677e-07,-4.869295440549809816e-07,-5.064067258171801954e-07,-5.258839075793794093e-07,-5.453610893415786231e-07,-5.648382711037778370e-07,-5.843154528659770509e-07,-6.037926346281762647e-07,-6.232698163903754786e-07,-6.427469981525746924e-07,-6.622241799147739063e-07,-6.817013616769731201e-07,-7.011785434391723340e-07,-7.206557252013715478e-07,-7.401329069635707617e-07,-7.596100887257699755e-07,-7.790872704879691894e-07,-7.985644522501684032e-07,-8.180416340123676171e-07,-8.375188157745668309e-07,-8.569959975367660448e-07,-8.764731792989652586e-07,-8.959503610611644725e-07,-9.154275428233636863e-07,-9.349047245855629002e-07,-9.543819063477620082e-07,-9.738590881099611161e-07,-9.933362698721602241e-07,-1.012813451634359332e-06,-1.032290633396558440e-06,-1.051767815158757548e-06,-1.071244996920956656e-06,-1.090722178683155764e-06,-1.110199360445354872e-06,-1.129676542207553980e-06,-1.149153723969753088e-06,-1.168630905731952196e-06,-1.188108087494151304e-06,-1.207585269256350412e-06,-1.227062451018549520e-06 +0.000000000000000000e+00,-1.957340279765982200e-08,-3.914680559531964400e-08,-5.872020839297946599e-08,-7.829361119063928799e-08,-9.786701398829910999e-08,-1.174404167859589320e-07,-1.370138195836187408e-07,-1.565872223812785495e-07,-1.761606251789383583e-07,-1.957340279765981670e-07,-2.153074307742579758e-07,-2.348808335719177846e-07,-2.544542363695775933e-07,-2.740276391672373756e-07,-2.936010419648971579e-07,-3.131744447625569402e-07,-3.327478475602167225e-07,-3.523212503578765048e-07,-3.718946531555362871e-07,-3.914680559531960694e-07,-4.110414587508558517e-07,-4.306148615485156340e-07,-4.501882643461754163e-07,-4.697616671438351986e-07,-4.893350699414949808e-07,-5.089084727391547631e-07,-5.284818755368145454e-07,-5.480552783344743277e-07,-5.676286811321341100e-07,-5.872020839297938923e-07,-6.067754867274536746e-07,-6.263488895251134569e-07,-6.459222923227732392e-07,-6.654956951204330215e-07,-6.850690979180928038e-07,-7.046425007157525861e-07,-7.242159035134123684e-07,-7.437893063110721507e-07,-7.633627091087319330e-07,-7.829361119063917152e-07,-8.025095147040514975e-07,-8.220829175017112798e-07,-8.416563202993710621e-07,-8.612297230970308444e-07,-8.808031258946906267e-07,-9.003765286923504090e-07,-9.199499314900101913e-07,-9.395233342876699736e-07,-9.590967370853298618e-07,-9.786701398829897499e-07,-9.982435426806496381e-07,-1.017816945478309526e-06,-1.037390348275969414e-06,-1.056963751073629303e-06,-1.076537153871289191e-06,-1.096110556668949079e-06,-1.115683959466608967e-06,-1.135257362264268855e-06,-1.154830765061928743e-06,-1.174404167859588632e-06,-1.193977570657248520e-06,-1.213550973454908408e-06,-1.233124376252568296e-06 +0.000000000000000000e+00,-1.993264611083193862e-08,-3.986529222166387725e-08,-5.979793833249581256e-08,-7.973058444332774126e-08,-9.966323055415966995e-08,-1.195958766649915987e-07,-1.395285227758235406e-07,-1.594611688866554825e-07,-1.793938149974874244e-07,-1.993264611083193664e-07,-2.192591072191513083e-07,-2.391917533299832502e-07,-2.591243994408151922e-07,-2.790570455516471341e-07,-2.989896916624790760e-07,-3.189223377733110180e-07,-3.388549838841429599e-07,-3.587876299949749018e-07,-3.787202761058068438e-07,-3.986529222166387857e-07,-4.185855683274707276e-07,-4.385182144383026696e-07,-4.584508605491346115e-07,-4.783835066599666064e-07,-4.983161527707986012e-07,-5.182487988816305961e-07,-5.381814449924625910e-07,-5.581140911032945858e-07,-5.780467372141265807e-07,-5.979793833249585756e-07,-6.179120294357905705e-07,-6.378446755466225653e-07,-6.577773216574545602e-07,-6.777099677682865551e-07,-6.976426138791185499e-07,-7.175752599899505448e-07,-7.375079061007825397e-07,-7.574405522116145346e-07,-7.773731983224465294e-07,-7.973058444332785243e-07,-8.172384905441105192e-07,-8.371711366549425140e-07,-8.571037827657745089e-07,-8.770364288766065038e-07,-8.969690749874384987e-07,-9.169017210982704935e-07,-9.368343672091024884e-07,-9.567670133199344833e-07,-9.766996594307664781e-07,-9.966323055415984730e-07,-1.016564951652430468e-06,-1.036497597763262463e-06,-1.056430243874094458e-06,-1.076362889984926453e-06,-1.096295536095758447e-06,-1.116228182206590442e-06,-1.136160828317422437e-06,-1.156093474428254432e-06,-1.176026120539086427e-06,-1.195958766649918422e-06,-1.215891412760750417e-06,-1.235824058871582411e-06,-1.255756704982414406e-06 +0.000000000000000000e+00,-1.947718176219573969e-08,-3.895436352439147939e-08,-5.843154528658721908e-08,-7.790872704878295878e-08,-9.738590881097870509e-08,-1.168630905731744514e-07,-1.363402723353701977e-07,-1.558174540975659440e-07,-1.752946358597616903e-07,-1.947718176219574366e-07,-2.142489993841531830e-07,-2.337261811463489293e-07,-2.532033629085446756e-07,-2.726805446707403954e-07,-2.921577264329361153e-07,-3.116349081951318351e-07,-3.311120899573275549e-07,-3.505892717195232748e-07,-3.700664534817189946e-07,-3.895436352439147145e-07,-4.090208170061104343e-07,-4.284979987683061542e-07,-4.479751805305018740e-07,-4.674523622926975938e-07,-4.869295440548933137e-07,-5.064067258170890335e-07,-5.258839075792847534e-07,-5.453610893414804732e-07,-5.648382711036761930e-07,-5.843154528658719129e-07,-6.037926346280676327e-07,-6.232698163902633526e-07,-6.427469981524590724e-07,-6.622241799146547923e-07,-6.817013616768505121e-07,-7.011785434390462319e-07,-7.206557252012419518e-07,-7.401329069634376716e-07,-7.596100887256333915e-07,-7.790872704878291113e-07,-7.985644522500248311e-07,-8.180416340122205510e-07,-8.375188157744162708e-07,-8.569959975366119907e-07,-8.764731792988077105e-07,-8.959503610610034304e-07,-9.154275428231991502e-07,-9.349047245853948700e-07,-9.543819063475904840e-07,-9.738590881097859921e-07,-9.933362698719815002e-07,-1.012813451634177008e-06,-1.032290633396372516e-06,-1.051767815158568024e-06,-1.071244996920763533e-06,-1.090722178682959041e-06,-1.110199360445154549e-06,-1.129676542207350057e-06,-1.149153723969545565e-06,-1.168630905731741073e-06,-1.188108087493936581e-06,-1.207585269256132089e-06,-1.227062451018327597e-06 +0.000000000000000000e+00,-1.957340279765630152e-08,-3.914680559531260303e-08,-5.872020839296890455e-08,-7.829361119062520607e-08,-9.786701398828150759e-08,-1.174404167859378091e-07,-1.370138195835941239e-07,-1.565872223812504386e-07,-1.761606251789067534e-07,-1.957340279765630681e-07,-2.153074307742193829e-07,-2.348808335718756976e-07,-2.544542363695320124e-07,-2.740276391671883536e-07,-2.936010419648446948e-07,-3.131744447625010360e-07,-3.327478475601573773e-07,-3.523212503578137185e-07,-3.718946531554700597e-07,-3.914680559531264009e-07,-4.110414587507827421e-07,-4.306148615484390834e-07,-4.501882643460954246e-07,-4.697616671437517658e-07,-4.893350699414080541e-07,-5.089084727390643424e-07,-5.284818755367206307e-07,-5.480552783343769189e-07,-5.676286811320332072e-07,-5.872020839296894955e-07,-6.067754867273457838e-07,-6.263488895250020721e-07,-6.459222923226583604e-07,-6.654956951203146486e-07,-6.850690979179709369e-07,-7.046425007156272252e-07,-7.242159035132835135e-07,-7.437893063109398018e-07,-7.633627091085960900e-07,-7.829361119062523783e-07,-8.025095147039086666e-07,-8.220829175015649549e-07,-8.416563202992212432e-07,-8.612297230968775315e-07,-8.808031258945338197e-07,-9.003765286921901080e-07,-9.199499314898463963e-07,-9.395233342875026846e-07,-9.590967370851589729e-07,-9.786701398828152612e-07,-9.982435426804715494e-07,-1.017816945478127838e-06,-1.037390348275784126e-06,-1.056963751073440414e-06,-1.076537153871096703e-06,-1.096110556668752991e-06,-1.115683959466409279e-06,-1.135257362264065567e-06,-1.154830765061721856e-06,-1.174404167859378144e-06,-1.193977570657034432e-06,-1.213550973454690721e-06,-1.233124376252347009e-06 +0.000000000000000000e+00,-2.100778482396670407e-08,-4.201556964793340815e-08,-6.302335447190011553e-08,-8.403113929586682953e-08,-1.050389241198335435e-07,-1.260467089438002575e-07,-1.470544937677669715e-07,-1.680622785917336855e-07,-1.890700634157003995e-07,-2.100778482396671135e-07,-2.310856330636338275e-07,-2.520934178876005680e-07,-2.731012027115672820e-07,-2.941089875355339960e-07,-3.151167723595007100e-07,-3.361245571834674240e-07,-3.571323420074341380e-07,-3.781401268314008520e-07,-3.991479116553675660e-07,-4.201556964793342800e-07,-4.411634813033009940e-07,-4.621712661272677080e-07,-4.831790509512344220e-07,-5.041868357752011360e-07,-5.251946205991678500e-07,-5.462024054231345640e-07,-5.672101902471012780e-07,-5.882179750710679920e-07,-6.092257598950347060e-07,-6.302335447190014200e-07,-6.512413295429681340e-07,-6.722491143669348480e-07,-6.932568991909015620e-07,-7.142646840148682760e-07,-7.352724688388349900e-07,-7.562802536628017040e-07,-7.772880384867684180e-07,-7.982958233107351320e-07,-8.193036081347018460e-07,-8.403113929586685600e-07,-8.613191777826352740e-07,-8.823269626066019880e-07,-9.033347474305687020e-07,-9.243425322545354160e-07,-9.453503170785021300e-07,-9.663581019024688440e-07,-9.873658867264355580e-07,-1.008373671550402272e-06,-1.029381456374368986e-06,-1.050389241198335700e-06,-1.071397026022302414e-06,-1.092404810846269128e-06,-1.113412595670235842e-06,-1.134420380494202556e-06,-1.155428165318169270e-06,-1.176435950142135984e-06,-1.197443734966102698e-06,-1.218451519790069412e-06,-1.239459304614036126e-06,-1.260467089438002840e-06,-1.281474874261969554e-06,-1.302482659085936268e-06,-1.323490443909902982e-06 +0.000000000000000000e+00,-2.044405248722751358e-08,-4.088810497445502716e-08,-6.133215746168254404e-08,-8.177620994891006755e-08,-1.022202624361375911e-07,-1.226643149233651146e-07,-1.431083674105926248e-07,-1.635524198978201351e-07,-1.839964723850476454e-07,-2.044405248722751556e-07,-2.248845773595026659e-07,-2.453286298467301762e-07,-2.657726823339576864e-07,-2.862167348211851967e-07,-3.066607873084127070e-07,-3.271048397956402173e-07,-3.475488922828677275e-07,-3.679929447700952378e-07,-3.884369972573227481e-07,-4.088810497445502583e-07,-4.293251022317777686e-07,-4.497691547190052789e-07,-4.702132072062327891e-07,-4.906572596934602465e-07,-5.111013121806877567e-07,-5.315453646679152670e-07,-5.519894171551427773e-07,-5.724334696423702876e-07,-5.928775221295977978e-07,-6.133215746168253081e-07,-6.337656271040528184e-07,-6.542096795912803286e-07,-6.746537320785078389e-07,-6.950977845657353492e-07,-7.155418370529628594e-07,-7.359858895401903697e-07,-7.564299420274178800e-07,-7.768739945146453902e-07,-7.973180470018729005e-07,-8.177620994891004108e-07,-8.382061519763279211e-07,-8.586502044635554313e-07,-8.790942569507829416e-07,-8.995383094380104519e-07,-9.199823619252379621e-07,-9.404264144124654724e-07,-9.608704668996929827e-07,-9.813145193869204929e-07,-1.001758571874148003e-06,-1.022202624361375513e-06,-1.042646676848603024e-06,-1.063090729335830534e-06,-1.083534781823058044e-06,-1.103978834310285555e-06,-1.124422886797513065e-06,-1.144866939284740575e-06,-1.165310991771968085e-06,-1.185755044259195596e-06,-1.206199096746423106e-06,-1.226643149233650616e-06,-1.247087201720878126e-06,-1.267531254208105637e-06,-1.287975306695333147e-06 +0.000000000000000000e+00,-2.062566161597289422e-08,-4.125132323194578843e-08,-6.187698484791867934e-08,-8.250264646389156363e-08,-1.031283080798644479e-07,-1.237539696958373322e-07,-1.443796313118102033e-07,-1.650052929277830743e-07,-1.856309545437559454e-07,-2.062566161597288164e-07,-2.268822777757016875e-07,-2.475079393916745586e-07,-2.681336010076474296e-07,-2.887592626236203007e-07,-3.093849242395931717e-07,-3.300105858555660428e-07,-3.506362474715389138e-07,-3.712619090875117849e-07,-3.918875707034846559e-07,-4.125132323194575270e-07,-4.331388939354303981e-07,-4.537645555514032691e-07,-4.743902171673761402e-07,-4.950158787833490112e-07,-5.156415403993219352e-07,-5.362672020152948592e-07,-5.568928636312677832e-07,-5.775185252472407072e-07,-5.981441868632136312e-07,-6.187698484791865552e-07,-6.393955100951594792e-07,-6.600211717111324032e-07,-6.806468333271053272e-07,-7.012724949430782512e-07,-7.218981565590511752e-07,-7.425238181750240992e-07,-7.631494797909970232e-07,-7.837751414069699472e-07,-8.044008030229428712e-07,-8.250264646389157952e-07,-8.456521262548887191e-07,-8.662777878708616431e-07,-8.869034494868345671e-07,-9.075291111028074911e-07,-9.281547727187804151e-07,-9.487804343347533391e-07,-9.694060959507262631e-07,-9.900317575666990812e-07,-1.010657419182671899e-06,-1.031283080798644717e-06,-1.051908742414617536e-06,-1.072534404030590354e-06,-1.093160065646563172e-06,-1.113785727262535990e-06,-1.134411388878508808e-06,-1.155037050494481626e-06,-1.175662712110454444e-06,-1.196288373726427262e-06,-1.216914035342400081e-06,-1.237539696958372899e-06,-1.258165358574345717e-06,-1.278791020190318535e-06,-1.299416681806291353e-06 +0.000000000000000000e+00,-2.100778482396315712e-08,-4.201556964792631425e-08,-6.302335447188947468e-08,-8.403113929585264173e-08,-1.050389241198158088e-07,-1.260467089437789758e-07,-1.470544937677421429e-07,-1.680622785917053099e-07,-1.890700634156684770e-07,-2.100778482396316440e-07,-2.310856330635948111e-07,-2.520934178875580046e-07,-2.731012027115212246e-07,-2.941089875354844446e-07,-3.151167723594476646e-07,-3.361245571834108846e-07,-3.571323420073741045e-07,-3.781401268313373245e-07,-3.991479116553005445e-07,-4.201556964792637645e-07,-4.411634813032269845e-07,-4.621712661271902045e-07,-4.831790509511534245e-07,-5.041868357751166445e-07,-5.251946205990798645e-07,-5.462024054230430844e-07,-5.672101902470063044e-07,-5.882179750709695244e-07,-6.092257598949327444e-07,-6.302335447188959644e-07,-6.512413295428591844e-07,-6.722491143668224044e-07,-6.932568991907856244e-07,-7.142646840147488444e-07,-7.352724688387120643e-07,-7.562802536626752843e-07,-7.772880384866385043e-07,-7.982958233106017243e-07,-8.193036081345649443e-07,-8.403113929585281643e-07,-8.613191777824913843e-07,-8.823269626064546043e-07,-9.033347474304178243e-07,-9.243425322543810442e-07,-9.453503170783442642e-07,-9.663581019023074842e-07,-9.873658867262708101e-07,-1.008373671550234136e-06,-1.029381456374197462e-06,-1.050389241198160788e-06,-1.071397026022124114e-06,-1.092404810846087439e-06,-1.113412595670050765e-06,-1.134420380494014091e-06,-1.155428165317977417e-06,-1.176435950141940743e-06,-1.197443734965904069e-06,-1.218451519789867395e-06,-1.239459304613830721e-06,-1.260467089437794046e-06,-1.281474874261757372e-06,-1.302482659085720698e-06,-1.323490443909684024e-06 +0.000000000000000000e+00,-2.044405248722394016e-08,-4.088810497444788032e-08,-6.133215746167182378e-08,-8.177620994889577387e-08,-1.022202624361197240e-07,-1.226643149233436740e-07,-1.431083674105676374e-07,-1.635524198977916007e-07,-1.839964723850155640e-07,-2.044405248722395273e-07,-2.248845773594634906e-07,-2.453286298466874540e-07,-2.657726823339114173e-07,-2.862167348211353806e-07,-3.066607873083593439e-07,-3.271048397955833072e-07,-3.475488922828072705e-07,-3.679929447700312339e-07,-3.884369972572551972e-07,-4.088810497444791605e-07,-4.293251022317031238e-07,-4.497691547189270871e-07,-4.702132072061510505e-07,-4.906572596933750138e-07,-5.111013121805990300e-07,-5.315453646678230463e-07,-5.519894171550470626e-07,-5.724334696422710788e-07,-5.928775221294950951e-07,-6.133215746167191113e-07,-6.337656271039431276e-07,-6.542096795911671439e-07,-6.746537320783911601e-07,-6.950977845656151764e-07,-7.155418370528391926e-07,-7.359858895400632089e-07,-7.564299420272872251e-07,-7.768739945145112414e-07,-7.973180470017352577e-07,-8.177620994889592739e-07,-8.382061519761832902e-07,-8.586502044634073064e-07,-8.790942569506313227e-07,-8.995383094378553390e-07,-9.199823619250793552e-07,-9.404264144123033715e-07,-9.608704668995273877e-07,-9.813145193867515099e-07,-1.001758571873975632e-06,-1.022202624361199754e-06,-1.042646676848423876e-06,-1.063090729335647998e-06,-1.083534781822872121e-06,-1.103978834310096243e-06,-1.124422886797320365e-06,-1.144866939284544487e-06,-1.165310991771768609e-06,-1.185755044258992731e-06,-1.206199096746216853e-06,-1.226643149233440976e-06,-1.247087201720665098e-06,-1.267531254207889220e-06,-1.287975306695113342e-06 +0.000000000000000000e+00,-2.062566161596921823e-08,-4.125132323193843645e-08,-6.187698484790765468e-08,-8.250264646387687291e-08,-1.031283080798460911e-07,-1.237539696958153094e-07,-1.443796313117845276e-07,-1.650052929277537458e-07,-1.856309545437229640e-07,-2.062566161596921823e-07,-2.268822777756614005e-07,-2.475079393916306187e-07,-2.681336010075998369e-07,-2.887592626235690552e-07,-3.093849242395382734e-07,-3.300105858555074916e-07,-3.506362474714767098e-07,-3.712619090874459281e-07,-3.918875707034151463e-07,-4.125132323193843645e-07,-4.331388939353535828e-07,-4.537645555513228010e-07,-4.743902171672920192e-07,-4.950158787832612374e-07,-5.156415403992304557e-07,-5.362672020151996739e-07,-5.568928636311688921e-07,-5.775185252471381103e-07,-5.981441868631073286e-07,-6.187698484790765468e-07,-6.393955100950457650e-07,-6.600211717110149832e-07,-6.806468333269842015e-07,-7.012724949429534197e-07,-7.218981565589226379e-07,-7.425238181748918562e-07,-7.631494797908610744e-07,-7.837751414068302926e-07,-8.044008030227995108e-07,-8.250264646387687291e-07,-8.456521262547379473e-07,-8.662777878707071655e-07,-8.869034494866763837e-07,-9.075291111026456020e-07,-9.281547727186148202e-07,-9.487804343345840384e-07,-9.694060959505532566e-07,-9.900317575665224749e-07,-1.010657419182491693e-06,-1.031283080798460911e-06,-1.051908742414430130e-06,-1.072534404030399348e-06,-1.093160065646368566e-06,-1.113785727262337784e-06,-1.134411388878307002e-06,-1.155037050494276221e-06,-1.175662712110245439e-06,-1.196288373726214657e-06,-1.216914035342183875e-06,-1.237539696958153094e-06,-1.258165358574122312e-06,-1.278791020190091530e-06,-1.299416681806060748e-06 +0.000000000000000000e+00,-2.225274913186596039e-08,-4.450549826373192079e-08,-6.675824739559788780e-08,-8.901099652746385481e-08,-1.112637456593298218e-07,-1.335164947911957756e-07,-1.557692439230617294e-07,-1.780219930549276831e-07,-2.002747421867936369e-07,-2.225274913186595907e-07,-2.447802404505255709e-07,-2.670329895823915512e-07,-2.892857387142575314e-07,-3.115384878461235117e-07,-3.337912369779894919e-07,-3.560439861098554722e-07,-3.782967352417214524e-07,-4.005494843735874327e-07,-4.228022335054534129e-07,-4.450549826373193931e-07,-4.673077317691853734e-07,-4.895604809010513536e-07,-5.118132300329173339e-07,-5.340659791647833141e-07,-5.563187282966492944e-07,-5.785714774285152746e-07,-6.008242265603812549e-07,-6.230769756922472351e-07,-6.453297248241132154e-07,-6.675824739559791956e-07,-6.898352230878451758e-07,-7.120879722197111561e-07,-7.343407213515771363e-07,-7.565934704834431166e-07,-7.788462196153090968e-07,-8.010989687471750771e-07,-8.233517178790410573e-07,-8.456044670109070376e-07,-8.678572161427730178e-07,-8.901099652746389980e-07,-9.123627144065049783e-07,-9.346154635383709585e-07,-9.568682126702368329e-07,-9.791209618021027073e-07,-1.001373710933968582e-06,-1.023626460065834456e-06,-1.045879209197700330e-06,-1.068131958329566205e-06,-1.090384707461432079e-06,-1.112637456593297953e-06,-1.134890205725163828e-06,-1.157142954857029702e-06,-1.179395703988895577e-06,-1.201648453120761451e-06,-1.223901202252627325e-06,-1.246153951384493200e-06,-1.268406700516359074e-06,-1.290659449648224948e-06,-1.312912198780090823e-06,-1.335164947911956697e-06,-1.357417697043822571e-06,-1.379670446175688446e-06,-1.401923195307554320e-06 +0.000000000000000000e+00,-2.161185475422404189e-08,-4.322370950844808378e-08,-6.483556426267212235e-08,-8.644741901689615432e-08,-1.080592737711201863e-07,-1.296711285253442182e-07,-1.512829832795682370e-07,-1.728948380337922557e-07,-1.945066927880162744e-07,-2.161185475422402931e-07,-2.377304022964643119e-07,-2.593422570506883306e-07,-2.809541118049123493e-07,-3.025659665591363681e-07,-3.241778213133603868e-07,-3.457896760675844055e-07,-3.674015308218084242e-07,-3.890133855760324430e-07,-4.106252403302564617e-07,-4.322370950844804804e-07,-4.538489498387044991e-07,-4.754608045929285179e-07,-4.970726593471525366e-07,-5.186845141013765553e-07,-5.402963688556005740e-07,-5.619082236098245928e-07,-5.835200783640486115e-07,-6.051319331182726302e-07,-6.267437878724966490e-07,-6.483556426267206677e-07,-6.699674973809446864e-07,-6.915793521351687051e-07,-7.131912068893927239e-07,-7.348030616436167426e-07,-7.564149163978407613e-07,-7.780267711520647800e-07,-7.996386259062887988e-07,-8.212504806605128175e-07,-8.428623354147368362e-07,-8.644741901689608549e-07,-8.860860449231848737e-07,-9.076978996774088924e-07,-9.293097544316329111e-07,-9.509216091858569299e-07,-9.725334639400809486e-07,-9.941453186943050732e-07,-1.015757173448529198e-06,-1.037369028202753322e-06,-1.058980882956977447e-06,-1.080592737711201572e-06,-1.102204592465425696e-06,-1.123816447219649821e-06,-1.145428301973873945e-06,-1.167040156728098070e-06,-1.188652011482322195e-06,-1.210263866236546319e-06,-1.231875720990770444e-06,-1.253487575744994568e-06,-1.275099430499218693e-06,-1.296711285253442818e-06,-1.318323140007666942e-06,-1.339934994761891067e-06,-1.361546849516115191e-06 +0.000000000000000000e+00,-2.182914589103660303e-08,-4.365829178207320606e-08,-6.548743767310981240e-08,-8.731658356414642535e-08,-1.091457294551830383e-07,-1.309748753462196513e-07,-1.528040212372562775e-07,-1.746331671282929036e-07,-1.964623130193295298e-07,-2.182914589103661560e-07,-2.401206048014027822e-07,-2.619497506924394084e-07,-2.837788965834760346e-07,-3.056080424745126608e-07,-3.274371883655492870e-07,-3.492663342565859132e-07,-3.710954801476225394e-07,-3.929246260386591656e-07,-4.147537719296957917e-07,-4.365829178207324179e-07,-4.584120637117690441e-07,-4.802412096028056703e-07,-5.020703554938422965e-07,-5.238995013848789227e-07,-5.457286472759155489e-07,-5.675577931669521751e-07,-5.893869390579888013e-07,-6.112160849490254275e-07,-6.330452308400620536e-07,-6.548743767310986798e-07,-6.767035226221353060e-07,-6.985326685131719322e-07,-7.203618144042085584e-07,-7.421909602952451846e-07,-7.640201061862818108e-07,-7.858492520773184370e-07,-8.076783979683550632e-07,-8.295075438593916894e-07,-8.513366897504283156e-07,-8.731658356414649417e-07,-8.949949815325015679e-07,-9.168241274235381941e-07,-9.386532733145748203e-07,-9.604824192056115524e-07,-9.823115650966483903e-07,-1.004140710987685228e-06,-1.025969856878722066e-06,-1.047799002769758904e-06,-1.069628148660795742e-06,-1.091457294551832580e-06,-1.113286440442869418e-06,-1.135115586333906256e-06,-1.156944732224943094e-06,-1.178773878115979932e-06,-1.200603024007016770e-06,-1.222432169898053608e-06,-1.244261315789090446e-06,-1.266090461680127284e-06,-1.287919607571164122e-06,-1.309748753462200960e-06,-1.331577899353237798e-06,-1.353407045244274635e-06,-1.375236191135311473e-06 +0.000000000000000000e+00,-2.225274913186236381e-08,-4.450549826372472762e-08,-6.675824739558708813e-08,-8.901099652744944201e-08,-1.112637456593117959e-07,-1.335164947911741498e-07,-1.557692439230365037e-07,-1.780219930548988576e-07,-2.002747421867612114e-07,-2.225274913186235653e-07,-2.447802404504859192e-07,-2.670329895823482466e-07,-2.892857387142105740e-07,-3.115384878460729015e-07,-3.337912369779352289e-07,-3.560439861097975563e-07,-3.782967352416598837e-07,-4.005494843735222111e-07,-4.228022335053845385e-07,-4.450549826372468659e-07,-4.673077317691091934e-07,-4.895604809009715208e-07,-5.118132300328337953e-07,-5.340659791646960697e-07,-5.563187282965583442e-07,-5.785714774284206187e-07,-6.008242265602828932e-07,-6.230769756921451676e-07,-6.453297248240074421e-07,-6.675824739558697166e-07,-6.898352230877319911e-07,-7.120879722195942655e-07,-7.343407213514565400e-07,-7.565934704833188145e-07,-7.788462196151810890e-07,-8.010989687470433634e-07,-8.233517178789056379e-07,-8.456044670107679124e-07,-8.678572161426301869e-07,-8.901099652744924613e-07,-9.123627144063547358e-07,-9.346154635382170103e-07,-9.568682126700792848e-07,-9.791209618019415593e-07,-1.001373710933803834e-06,-1.023626460065666108e-06,-1.045879209197528383e-06,-1.068131958329390657e-06,-1.090384707461252932e-06,-1.112637456593115206e-06,-1.134890205724977481e-06,-1.157142954856839755e-06,-1.179395703988702030e-06,-1.201648453120564304e-06,-1.223901202252426578e-06,-1.246153951384288853e-06,-1.268406700516151127e-06,-1.290659449648013402e-06,-1.312912198779875676e-06,-1.335164947911737951e-06,-1.357417697043600225e-06,-1.379670446175462500e-06,-1.401923195307324774e-06 +0.000000000000000000e+00,-2.161185475422040560e-08,-4.322370950844081120e-08,-6.483556426266121681e-08,-8.644741901688162241e-08,-1.080592737711020280e-07,-1.296711285253224336e-07,-1.512829832795428260e-07,-1.728948380337632183e-07,-1.945066927879836107e-07,-2.161185475422040031e-07,-2.377304022964243954e-07,-2.593422570506448143e-07,-2.809541118048652331e-07,-3.025659665590856520e-07,-3.241778213133060708e-07,-3.457896760675264896e-07,-3.674015308217469085e-07,-3.890133855759673273e-07,-4.106252403301877461e-07,-4.322370950844081650e-07,-4.538489498386285838e-07,-4.754608045928490026e-07,-4.970726593470694215e-07,-5.186845141012898403e-07,-5.402963688555102592e-07,-5.619082236097306780e-07,-5.835200783639510968e-07,-6.051319331181715157e-07,-6.267437878723919345e-07,-6.483556426266123533e-07,-6.699674973808327722e-07,-6.915793521350531910e-07,-7.131912068892736098e-07,-7.348030616434940287e-07,-7.564149163977144475e-07,-7.780267711519348664e-07,-7.996386259061552852e-07,-8.212504806603757040e-07,-8.428623354145961229e-07,-8.644741901688165417e-07,-8.860860449230369605e-07,-9.076978996772573794e-07,-9.293097544314777982e-07,-9.509216091856982171e-07,-9.725334639399185300e-07,-9.941453186941388430e-07,-1.015757173448359156e-06,-1.037369028202579469e-06,-1.058980882956799782e-06,-1.080592737711020095e-06,-1.102204592465240408e-06,-1.123816447219460721e-06,-1.145428301973681034e-06,-1.167040156727901347e-06,-1.188652011482121660e-06,-1.210263866236341973e-06,-1.231875720990562285e-06,-1.253487575744782598e-06,-1.275099430499002911e-06,-1.296711285253223224e-06,-1.318323140007443537e-06,-1.339934994761663850e-06,-1.361546849515884163e-06 +0.000000000000000000e+00,-2.182914589103283439e-08,-4.365829178206566879e-08,-6.548743767309849657e-08,-8.731658356413132434e-08,-1.091457294551641521e-07,-1.309748753461969931e-07,-1.528040212372298341e-07,-1.746331671282626752e-07,-1.964623130192955162e-07,-2.182914589103283572e-07,-2.401206048013611717e-07,-2.619497506923939863e-07,-2.837788965834268008e-07,-3.056080424744596154e-07,-3.274371883654924299e-07,-3.492663342565252444e-07,-3.710954801475580590e-07,-3.929246260385908735e-07,-4.147537719296236881e-07,-4.365829178206565026e-07,-4.584120637116893171e-07,-4.802412096027221317e-07,-5.020703554937549462e-07,-5.238995013847877608e-07,-5.457286472758205753e-07,-5.675577931668533899e-07,-5.893869390578862044e-07,-6.112160849489190189e-07,-6.330452308399518335e-07,-6.548743767309846480e-07,-6.767035226220174626e-07,-6.985326685130502771e-07,-7.203618144040830917e-07,-7.421909602951159062e-07,-7.640201061861487207e-07,-7.858492520771815353e-07,-8.076783979682143498e-07,-8.295075438592471644e-07,-8.513366897502799789e-07,-8.731658356413127935e-07,-8.949949815323456080e-07,-9.168241274233784225e-07,-9.386532733144112371e-07,-9.604824192054440516e-07,-9.823115650964768662e-07,-1.004140710987509681e-06,-1.025969856878542495e-06,-1.047799002769575310e-06,-1.069628148660608124e-06,-1.091457294551640939e-06,-1.113286440442673753e-06,-1.135115586333706568e-06,-1.156944732224739383e-06,-1.178773878115772197e-06,-1.200603024006805012e-06,-1.222432169897837826e-06,-1.244261315788870641e-06,-1.266090461679903455e-06,-1.287919607570936270e-06,-1.309748753461969084e-06,-1.331577899353001899e-06,-1.353407045244034713e-06,-1.375236191135067528e-06 +0.000000000000000000e+00,-2.359176680939372661e-08,-4.718353361878745322e-08,-7.077530042818117652e-08,-9.436706723757489321e-08,-1.179588340469686099e-07,-1.415506008563623266e-07,-1.651423676657560565e-07,-1.887341344751497864e-07,-2.123259012845435163e-07,-2.359176680939372463e-07,-2.595094349033309762e-07,-2.831012017127247061e-07,-3.066929685221184360e-07,-3.302847353315121659e-07,-3.538765021409058958e-07,-3.774682689502996258e-07,-4.010600357596933557e-07,-4.246518025690870856e-07,-4.482435693784808155e-07,-4.718353361878745454e-07,-4.954271029972682224e-07,-5.190188698066618465e-07,-5.426106366160554705e-07,-5.662024034254490945e-07,-5.897941702348427186e-07,-6.133859370442363426e-07,-6.369777038536299667e-07,-6.605694706630235907e-07,-6.841612374724172147e-07,-7.077530042818108388e-07,-7.313447710912044628e-07,-7.549365379005980869e-07,-7.785283047099917109e-07,-8.021200715193853349e-07,-8.257118383287789590e-07,-8.493036051381725830e-07,-8.728953719475662071e-07,-8.964871387569598311e-07,-9.200789055663534551e-07,-9.436706723757470792e-07,-9.672624391851407032e-07,-9.908542059945343273e-07,-1.014445972803927951e-06,-1.038037739613321575e-06,-1.061629506422715199e-06,-1.085221273232108823e-06,-1.108813040041502447e-06,-1.132404806850896072e-06,-1.155996573660289696e-06,-1.179588340469683320e-06,-1.203180107279076944e-06,-1.226771874088470568e-06,-1.250363640897864192e-06,-1.273955407707257816e-06,-1.297547174516651440e-06,-1.321138941326045064e-06,-1.344730708135438688e-06,-1.368322474944832312e-06,-1.391914241754225936e-06,-1.415506008563619560e-06,-1.439097775373013184e-06,-1.462689542182406808e-06,-1.486281308991800432e-06 +0.000000000000000000e+00,-2.291455351897739797e-08,-4.582910703795479594e-08,-6.874366055693219060e-08,-9.165821407590957864e-08,-1.145727675948869667e-07,-1.374873211138643547e-07,-1.604018746328417428e-07,-1.833164281518191308e-07,-2.062309816707965189e-07,-2.291455351897739069e-07,-2.520600887087512685e-07,-2.749746422277286565e-07,-2.978891957467060446e-07,-3.208037492656834326e-07,-3.437183027846608206e-07,-3.666328563036382087e-07,-3.895474098226155967e-07,-4.124619633415929848e-07,-4.353765168605703728e-07,-4.582910703795477609e-07,-4.812056238985251489e-07,-5.041201774175025369e-07,-5.270347309364799250e-07,-5.499492844554573130e-07,-5.728638379744347011e-07,-5.957783914934120891e-07,-6.186929450123894771e-07,-6.416074985313668652e-07,-6.645220520503442532e-07,-6.874366055693216413e-07,-7.103511590882990293e-07,-7.332657126072764174e-07,-7.561802661262538054e-07,-7.790948196452311934e-07,-8.020093731642085815e-07,-8.249239266831859695e-07,-8.478384802021633576e-07,-8.707530337211407456e-07,-8.936675872401181337e-07,-9.165821407590955217e-07,-9.394966942780729097e-07,-9.624112477970502978e-07,-9.853258013160275800e-07,-1.008240354835004862e-06,-1.031154908353982144e-06,-1.054069461872959426e-06,-1.076984015391936709e-06,-1.099898568910913991e-06,-1.122813122429891273e-06,-1.145727675948868555e-06,-1.168642229467845837e-06,-1.191556782986823119e-06,-1.214471336505800402e-06,-1.237385890024777684e-06,-1.260300443543754966e-06,-1.283214997062732248e-06,-1.306129550581709530e-06,-1.329044104100686812e-06,-1.351958657619664095e-06,-1.374873211138641377e-06,-1.397787764657618659e-06,-1.420702318176595941e-06,-1.443616871695573223e-06 +0.000000000000000000e+00,-2.310799309631182364e-08,-4.621598619262364728e-08,-6.932397928893546761e-08,-9.243197238524728133e-08,-1.155399654815590950e-07,-1.386479585778709088e-07,-1.617559516741827092e-07,-1.848639447704945097e-07,-2.079719378668063102e-07,-2.310799309631181107e-07,-2.541879240594299112e-07,-2.772959171557417116e-07,-3.004039102520535121e-07,-3.235119033483653126e-07,-3.466198964446771131e-07,-3.697278895409889136e-07,-3.928358826373007140e-07,-4.159438757336125145e-07,-4.390518688299243150e-07,-4.621598619262361155e-07,-4.852678550225479159e-07,-5.083758481188597164e-07,-5.314838412151715169e-07,-5.545918343114833174e-07,-5.776998274077951179e-07,-6.008078205041069183e-07,-6.239158136004187188e-07,-6.470238066967305193e-07,-6.701317997930423198e-07,-6.932397928893541203e-07,-7.163477859856659207e-07,-7.394557790819777212e-07,-7.625637721782895217e-07,-7.856717652746013222e-07,-8.087797583709131227e-07,-8.318877514672249231e-07,-8.549957445635367236e-07,-8.781037376598485241e-07,-9.012117307561603246e-07,-9.243197238524721251e-07,-9.474277169487839255e-07,-9.705357100450956201e-07,-9.936437031414074206e-07,-1.016751696237719221e-06,-1.039859689334031022e-06,-1.062967682430342822e-06,-1.086075675526654623e-06,-1.109183668622966423e-06,-1.132291661719278223e-06,-1.155399654815590024e-06,-1.178507647911901824e-06,-1.201615641008213625e-06,-1.224723634104525425e-06,-1.247831627200837226e-06,-1.270939620297149026e-06,-1.294047613393460827e-06,-1.317155606489772627e-06,-1.340263599586084428e-06,-1.363371592682396228e-06,-1.386479585778708029e-06,-1.409587578875019829e-06,-1.432695571971331630e-06,-1.455803565067643430e-06 +0.000000000000000000e+00,-2.359176680939000761e-08,-4.718353361878001521e-08,-7.077530042817001951e-08,-9.436706723756001719e-08,-1.179588340469500149e-07,-1.415506008563400126e-07,-1.651423676657300102e-07,-1.887341344751200079e-07,-2.123259012845100056e-07,-2.359176680939000033e-07,-2.595094349032900010e-07,-2.831012017126799722e-07,-3.066929685220699434e-07,-3.302847353314599146e-07,-3.538765021408498858e-07,-3.774682689502398570e-07,-4.010600357596298282e-07,-4.246518025690197994e-07,-4.482435693784097706e-07,-4.718353361877997418e-07,-4.954271029971896601e-07,-5.190188698065795784e-07,-5.426106366159694967e-07,-5.662024034253594149e-07,-5.897941702347493332e-07,-6.133859370441392515e-07,-6.369777038535291697e-07,-6.605694706629190880e-07,-6.841612374723090063e-07,-7.077530042816989246e-07,-7.313447710910888428e-07,-7.549365379004787611e-07,-7.785283047098686794e-07,-8.021200715192585976e-07,-8.257118383286485159e-07,-8.493036051380384342e-07,-8.728953719474283525e-07,-8.964871387568182707e-07,-9.200789055662081890e-07,-9.436706723755981073e-07,-9.672624391849880255e-07,-9.908542059943780497e-07,-1.014445972803768074e-06,-1.038037739613158098e-06,-1.061629506422548122e-06,-1.085221273231938146e-06,-1.108813040041328170e-06,-1.132404806850718195e-06,-1.155996573660108219e-06,-1.179588340469498243e-06,-1.203180107278888267e-06,-1.226771874088278291e-06,-1.250363640897668315e-06,-1.273955407707058339e-06,-1.297547174516448364e-06,-1.321138941325838388e-06,-1.344730708135228412e-06,-1.368322474944618436e-06,-1.391914241754008460e-06,-1.415506008563398484e-06,-1.439097775372788509e-06,-1.462689542182178533e-06,-1.486281308991568557e-06 +0.000000000000000000e+00,-2.291455351897373521e-08,-4.582910703794747043e-08,-6.874366055692120564e-08,-9.165821407589494085e-08,-1.145727675948686761e-07,-1.374873211138424113e-07,-1.604018746328161465e-07,-1.833164281517898817e-07,-2.062309816707636169e-07,-2.291455351897373521e-07,-2.520600887087110873e-07,-2.749746422276848226e-07,-2.978891957466585578e-07,-3.208037492656322930e-07,-3.437183027846060282e-07,-3.666328563035797634e-07,-3.895474098225534986e-07,-4.124619633415272338e-07,-4.353765168605009690e-07,-4.582910703794747043e-07,-4.812056238984483865e-07,-5.041201774174220688e-07,-5.270347309363957511e-07,-5.499492844553694334e-07,-5.728638379743431156e-07,-5.957783914933167979e-07,-6.186929450122904802e-07,-6.416074985312641624e-07,-6.645220520502378447e-07,-6.874366055692115270e-07,-7.103511590881852093e-07,-7.332657126071588915e-07,-7.561802661261325738e-07,-7.790948196451062561e-07,-8.020093731640799384e-07,-8.249239266830536206e-07,-8.478384802020273029e-07,-8.707530337210009852e-07,-8.936675872399746675e-07,-9.165821407589483497e-07,-9.394966942779220320e-07,-9.624112477968957143e-07,-9.853258013158693965e-07,-1.008240354834843079e-06,-1.031154908353816761e-06,-1.054069461872790443e-06,-1.076984015391764126e-06,-1.099898568910737808e-06,-1.122813122429711490e-06,-1.145727675948685172e-06,-1.168642229467658855e-06,-1.191556782986632537e-06,-1.214471336505606219e-06,-1.237385890024579902e-06,-1.260300443543553584e-06,-1.283214997062527266e-06,-1.306129550581500948e-06,-1.329044104100474631e-06,-1.351958657619448313e-06,-1.374873211138421995e-06,-1.397787764657395677e-06,-1.420702318176369360e-06,-1.443616871695343042e-06 +0.000000000000000000e+00,-2.310799309630799214e-08,-4.621598619261598428e-08,-6.932397928892397973e-08,-9.243197238523198179e-08,-1.155399654815399839e-07,-1.386479585778479859e-07,-1.617559516741559748e-07,-1.848639447704639636e-07,-2.079719378667719524e-07,-2.310799309630799413e-07,-2.541879240593879301e-07,-2.772959171556959189e-07,-3.004039102520039077e-07,-3.235119033483118966e-07,-3.466198964446198854e-07,-3.697278895409278742e-07,-3.928358826372358631e-07,-4.159438757335438519e-07,-4.390518688298518407e-07,-4.621598619261598296e-07,-4.852678550224677655e-07,-5.083758481187757543e-07,-5.314838412150837431e-07,-5.545918343113917320e-07,-5.776998274076997208e-07,-6.008078205040077096e-07,-6.239158136003156984e-07,-6.470238066966236873e-07,-6.701317997929316761e-07,-6.932397928892396649e-07,-7.163477859855476538e-07,-7.394557790818556426e-07,-7.625637721781636314e-07,-7.856717652744716203e-07,-8.087797583707796091e-07,-8.318877514670875979e-07,-8.549957445633955868e-07,-8.781037376597035756e-07,-9.012117307560115644e-07,-9.243197238523195533e-07,-9.474277169486275421e-07,-9.705357100449355309e-07,-9.936437031412435197e-07,-1.016751696237551509e-06,-1.039859689333859497e-06,-1.062967682430167486e-06,-1.086075675526475475e-06,-1.109183668622783464e-06,-1.132291661719091453e-06,-1.155399654815399442e-06,-1.178507647911707430e-06,-1.201615641008015419e-06,-1.224723634104323408e-06,-1.247831627200631397e-06,-1.270939620296939386e-06,-1.294047613393247375e-06,-1.317155606489555363e-06,-1.340263599585863352e-06,-1.363371592682171341e-06,-1.386479585778479330e-06,-1.409587578874787319e-06,-1.432695571971095308e-06,-1.455803565067403296e-06 +0.000000000000000000e+00,-2.491109329835746298e-08,-4.982218659671492596e-08,-7.473327989507238562e-08,-9.964437319342983868e-08,-1.245554664917872917e-07,-1.494665597901447448e-07,-1.743776530885021978e-07,-1.992887463868596509e-07,-2.241998396852171039e-07,-2.491109329835745835e-07,-2.740220262819320630e-07,-2.989331195802895425e-07,-3.238442128786470220e-07,-3.487553061770045015e-07,-3.736663994753619811e-07,-3.985774927737194606e-07,-4.234885860720769401e-07,-4.483996793704344196e-07,-4.733107726687918991e-07,-4.982218659671493787e-07,-5.231329592655068582e-07,-5.480440525638643377e-07,-5.729551458622218172e-07,-5.978662391605792968e-07,-6.227773324589367763e-07,-6.476884257572942558e-07,-6.725995190556517353e-07,-6.975106123540092148e-07,-7.224217056523666944e-07,-7.473327989507241739e-07,-7.722438922490816534e-07,-7.971549855474391329e-07,-8.220660788457966124e-07,-8.469771721441540920e-07,-8.718882654425115715e-07,-8.967993587408690510e-07,-9.217104520392265305e-07,-9.466215453375840100e-07,-9.715326386359414896e-07,-9.964437319342989691e-07,-1.021354825232656449e-06,-1.046265918531013928e-06,-1.071177011829371408e-06,-1.096088105127728887e-06,-1.120999198426086367e-06,-1.145910291724443846e-06,-1.170821385022801326e-06,-1.195732478321158805e-06,-1.220643571619516285e-06,-1.245554664917873764e-06,-1.270465758216231244e-06,-1.295376851514588723e-06,-1.320287944812946203e-06,-1.345199038111303682e-06,-1.370110131409661162e-06,-1.395021224708018641e-06,-1.419932318006376121e-06,-1.444843411304733600e-06,-1.469754504603091080e-06,-1.494665597901448560e-06,-1.519576691199806039e-06,-1.544487784498163519e-06,-1.569398877796520998e-06 +0.000000000000000000e+00,-2.489276734169451546e-08,-4.978553468338903092e-08,-7.467830202508354308e-08,-9.957106936677804861e-08,-1.244638367084725541e-07,-1.493566040501670597e-07,-1.742493713918615652e-07,-1.991421387335560708e-07,-2.240349060752505763e-07,-2.489276734169450554e-07,-2.738204407586395080e-07,-2.987132081003339606e-07,-3.236059754420284131e-07,-3.484987427837228657e-07,-3.733915101254173183e-07,-3.982842774671117709e-07,-4.231770448088062235e-07,-4.480698121505006761e-07,-4.729625794921951287e-07,-4.978553468338895813e-07,-5.227481141755840339e-07,-5.476408815172784865e-07,-5.725336488589729391e-07,-5.974264162006673917e-07,-6.223191835423618443e-07,-6.472119508840562969e-07,-6.721047182257507495e-07,-6.969974855674452021e-07,-7.218902529091396547e-07,-7.467830202508341073e-07,-7.716757875925285599e-07,-7.965685549342230125e-07,-8.214613222759174651e-07,-8.463540896176119177e-07,-8.712468569593063703e-07,-8.961396243010008229e-07,-9.210323916426952755e-07,-9.459251589843897281e-07,-9.708179263260840748e-07,-9.957106936677785274e-07,-1.020603461009472980e-06,-1.045496228351167433e-06,-1.070388995692861885e-06,-1.095281763034556338e-06,-1.120174530376250790e-06,-1.145067297717945243e-06,-1.169960065059639696e-06,-1.194852832401334148e-06,-1.219745599743028601e-06,-1.244638367084723053e-06,-1.269531134426417506e-06,-1.294423901768111959e-06,-1.319316669109806411e-06,-1.344209436451500864e-06,-1.369102203793195316e-06,-1.393994971134889769e-06,-1.418887738476584222e-06,-1.443780505818278674e-06,-1.468673273159973127e-06,-1.493566040501667579e-06,-1.518458807843362032e-06,-1.543351575185056484e-06,-1.568244342526750937e-06 +0.000000000000000000e+00,-2.426248332063418847e-08,-4.852496664126837695e-08,-7.278744996190256873e-08,-9.704993328253676713e-08,-1.213124166031709655e-07,-1.455748999238051639e-07,-1.698373832444393623e-07,-1.940998665650735607e-07,-2.183623498857077591e-07,-2.426248332063419840e-07,-2.668873165269762353e-07,-2.911497998476104867e-07,-3.154122831682447380e-07,-3.396747664888789894e-07,-3.639372498095132407e-07,-3.881997331301474920e-07,-4.124622164507817434e-07,-4.367246997714159947e-07,-4.609871830920502461e-07,-4.852496664126844974e-07,-5.095121497333187487e-07,-5.337746330539530001e-07,-5.580371163745872514e-07,-5.822995996952215028e-07,-6.065620830158557541e-07,-6.308245663364900054e-07,-6.550870496571242568e-07,-6.793495329777585081e-07,-7.036120162983927595e-07,-7.278744996190270108e-07,-7.521369829396612621e-07,-7.763994662602955135e-07,-8.006619495809297648e-07,-8.249244329015640162e-07,-8.491869162221982675e-07,-8.734493995428325188e-07,-8.977118828634667702e-07,-9.219743661841010215e-07,-9.462368495047352729e-07,-9.704993328253696301e-07,-9.947618161460040932e-07,-1.019024299466638556e-06,-1.043286782787273019e-06,-1.067549266107907482e-06,-1.091811749428541946e-06,-1.116074232749176409e-06,-1.140336716069810872e-06,-1.164599199390445335e-06,-1.188861682711079798e-06,-1.213124166031714261e-06,-1.237386649352348724e-06,-1.261649132672983187e-06,-1.285911615993617650e-06,-1.310174099314252113e-06,-1.334436582634886577e-06,-1.358699065955521040e-06,-1.382961549276155503e-06,-1.407224032596789966e-06,-1.431486515917424429e-06,-1.455748999238058892e-06,-1.480011482558693355e-06,-1.504273965879327818e-06,-1.528536449199962281e-06 +0.000000000000000000e+00,-2.436993314048485890e-08,-4.873986628096971781e-08,-7.310979942145458002e-08,-9.747973256193944885e-08,-1.218496657024243044e-07,-1.462195988429091600e-07,-1.705895319833940156e-07,-1.949594651238788712e-07,-2.193293982643637268e-07,-2.436993314048486089e-07,-2.680692645453334909e-07,-2.924391976858183730e-07,-3.168091308263032551e-07,-3.411790639667881371e-07,-3.655489971072730192e-07,-3.899189302477579013e-07,-4.142888633882427833e-07,-4.386587965287276654e-07,-4.630287296692125475e-07,-4.873986628096974295e-07,-5.117685959501823116e-07,-5.361385290906671936e-07,-5.605084622311520757e-07,-5.848783953716369578e-07,-6.092483285121218398e-07,-6.336182616526067219e-07,-6.579881947930916040e-07,-6.823581279335764860e-07,-7.067280610740613681e-07,-7.310979942145462502e-07,-7.554679273550311322e-07,-7.798378604955160143e-07,-8.042077936360008964e-07,-8.285777267764857784e-07,-8.529476599169706605e-07,-8.773175930574555425e-07,-9.016875261979404246e-07,-9.260574593384253067e-07,-9.504273924789101887e-07,-9.747973256193950708e-07,-9.991672587598799529e-07,-1.023537191900364835e-06,-1.047907125040849717e-06,-1.072277058181334599e-06,-1.096646991321819481e-06,-1.121016924462304363e-06,-1.145386857602789245e-06,-1.169756790743274127e-06,-1.194126723883759009e-06,-1.218496657024243891e-06,-1.242866590164728774e-06,-1.267236523305213656e-06,-1.291606456445698538e-06,-1.315976389586183420e-06,-1.340346322726668302e-06,-1.364716255867153184e-06,-1.389086189007638066e-06,-1.413456122148122948e-06,-1.437826055288607830e-06,-1.462195988429092712e-06,-1.486565921569577594e-06,-1.510935854710062476e-06,-1.535305787850547358e-06 +0.000000000000000000e+00,-2.489702165654813608e-08,-4.979404331309627217e-08,-7.469106496964440494e-08,-9.958808662619253110e-08,-1.244851082827406705e-07,-1.493821299392888099e-07,-1.742791515958369493e-07,-1.991761732523850887e-07,-2.240731949089332281e-07,-2.489702165654813410e-07,-2.738672382220294539e-07,-2.987642598785775668e-07,-3.236612815351256797e-07,-3.485583031916737927e-07,-3.734553248482219056e-07,-3.983523465047700185e-07,-4.232493681613181314e-07,-4.481463898178662443e-07,-4.730434114744143573e-07,-4.979404331309624702e-07,-5.228374547875105831e-07,-5.477344764440586960e-07,-5.726314981006068090e-07,-5.975285197571549219e-07,-6.224255414137030348e-07,-6.473225630702511477e-07,-6.722195847267992606e-07,-6.971166063833473736e-07,-7.220136280398954865e-07,-7.469106496964435994e-07,-7.718076713529917123e-07,-7.967046930095398252e-07,-8.216017146660879382e-07,-8.464987363226360511e-07,-8.713957579791841640e-07,-8.962927796357322769e-07,-9.211898012922803899e-07,-9.460868229488285028e-07,-9.709838446053765098e-07,-9.958808662619245169e-07,-1.020777887918472524e-06,-1.045674909575020531e-06,-1.070571931231568538e-06,-1.095468952888116545e-06,-1.120365974544664552e-06,-1.145262996201212559e-06,-1.170160017857760566e-06,-1.195057039514308573e-06,-1.219954061170856580e-06,-1.244851082827404587e-06,-1.269748104483952594e-06,-1.294645126140500601e-06,-1.319542147797048608e-06,-1.344439169453596615e-06,-1.369336191110144622e-06,-1.394233212766692630e-06,-1.419130234423240637e-06,-1.444027256079788644e-06,-1.468924277736336651e-06,-1.493821299392884658e-06,-1.518718321049432665e-06,-1.543615342705980672e-06,-1.568512364362528679e-06 +0.000000000000000000e+00,-2.435498878951991788e-08,-4.870997757903983576e-08,-7.306496636855975364e-08,-9.741995515807967152e-08,-1.217749439475995762e-07,-1.461299327371194808e-07,-1.704849215266393855e-07,-1.948399103161592901e-07,-2.191948991056791947e-07,-2.435498878951990994e-07,-2.679048766847190040e-07,-2.922598654742389087e-07,-3.166148542637588133e-07,-3.409698430532787180e-07,-3.653248318427986226e-07,-3.896798206323185273e-07,-4.140348094218384319e-07,-4.383897982113583366e-07,-4.627447870008782412e-07,-4.870997757903980929e-07,-5.114547645799179446e-07,-5.358097533694377963e-07,-5.601647421589576480e-07,-5.845197309484774997e-07,-6.088747197379973514e-07,-6.332297085275172031e-07,-6.575846973170370549e-07,-6.819396861065569066e-07,-7.062946748960767583e-07,-7.306496636855966100e-07,-7.550046524751164617e-07,-7.793596412646363134e-07,-8.037146300541561651e-07,-8.280696188436760168e-07,-8.524246076331958685e-07,-8.767795964227157202e-07,-9.011345852122355719e-07,-9.254895740017554236e-07,-9.498445627912752753e-07,-9.741995515807951270e-07,-9.985545403703150846e-07,-1.022909529159835042e-06,-1.047264517949355000e-06,-1.071619506738874957e-06,-1.095974495528394915e-06,-1.120329484317914873e-06,-1.144684473107434830e-06,-1.169039461896954788e-06,-1.193394450686474745e-06,-1.217749439475994703e-06,-1.242104428265514660e-06,-1.266459417055034618e-06,-1.290814405844554576e-06,-1.315169394634074533e-06,-1.339524383423594491e-06,-1.363879372213114448e-06,-1.388234361002634406e-06,-1.412589349792154364e-06,-1.436944338581674321e-06,-1.461299327371194279e-06,-1.485654316160714236e-06,-1.510009304950234194e-06,-1.534364293739754151e-06 +0.000000000000000000e+00,-2.491109329835334693e-08,-4.982218659670669385e-08,-7.473327989506003747e-08,-9.964437319341337447e-08,-1.245554664917666982e-07,-1.494665597901200220e-07,-1.743776530884733458e-07,-1.992887463868266695e-07,-2.241998396851799933e-07,-2.491109329835332906e-07,-2.740220262818865879e-07,-2.989331195802398852e-07,-3.238442128785931825e-07,-3.487553061769464798e-07,-3.736663994752997771e-07,-3.985774927736530744e-07,-4.234885860720063717e-07,-4.483996793703596690e-07,-4.733107726687129663e-07,-4.982218659670662636e-07,-5.231329592654196138e-07,-5.480440525637729640e-07,-5.729551458621263143e-07,-5.978662391604796645e-07,-6.227773324588330147e-07,-6.476884257571863650e-07,-6.725995190555397152e-07,-6.975106123538930654e-07,-7.224217056522464157e-07,-7.473327989505997659e-07,-7.722438922489531162e-07,-7.971549855473064664e-07,-8.220660788456598166e-07,-8.469771721440131669e-07,-8.718882654423665171e-07,-8.967993587407198673e-07,-9.217104520390732176e-07,-9.466215453374265678e-07,-9.715326386357799180e-07,-9.964437319341331624e-07,-1.021354825232486407e-06,-1.046265918530839651e-06,-1.071177011829192895e-06,-1.096088105127546140e-06,-1.120999198425899384e-06,-1.145910291724252629e-06,-1.170821385022605873e-06,-1.195732478320959117e-06,-1.220643571619312362e-06,-1.245554664917665606e-06,-1.270465758216018850e-06,-1.295376851514372095e-06,-1.320287944812725339e-06,-1.345199038111078583e-06,-1.370110131409431828e-06,-1.395021224707785072e-06,-1.419932318006138316e-06,-1.444843411304491561e-06,-1.469754504602844805e-06,-1.494665597901198050e-06,-1.519576691199551294e-06,-1.544487784497904538e-06,-1.569398877796257783e-06 +0.000000000000000000e+00,-2.489702165654603835e-08,-4.979404331309207671e-08,-7.469106496963811837e-08,-9.958808662618416665e-08,-1.244851082827302149e-07,-1.493821299392762632e-07,-1.742791515958223115e-07,-1.991761732523683598e-07,-2.240731949089144080e-07,-2.489702165654604828e-07,-2.738672382220065840e-07,-2.987642598785526852e-07,-3.236612815350987864e-07,-3.485583031916448877e-07,-3.734553248481909889e-07,-3.983523465047370901e-07,-4.232493681612831913e-07,-4.481463898178292925e-07,-4.730434114743753938e-07,-4.979404331309214950e-07,-5.228374547874675962e-07,-5.477344764440136974e-07,-5.726314981005597986e-07,-5.975285197571058998e-07,-6.224255414136520011e-07,-6.473225630701981023e-07,-6.722195847267442035e-07,-6.971166063832903047e-07,-7.220136280398364059e-07,-7.469106496963825072e-07,-7.718076713529286084e-07,-7.967046930094747096e-07,-8.216017146660208108e-07,-8.464987363225669120e-07,-8.713957579791130132e-07,-8.962927796356591145e-07,-9.211898012922052157e-07,-9.460868229487513169e-07,-9.709838446052973122e-07,-9.958808662618432017e-07,-1.020777887918389091e-06,-1.045674909574934981e-06,-1.070571931231480870e-06,-1.095468952888026760e-06,-1.120365974544572649e-06,-1.145262996201118538e-06,-1.170160017857664428e-06,-1.195057039514210317e-06,-1.219954061170756207e-06,-1.244851082827302096e-06,-1.269748104483847986e-06,-1.294645126140393875e-06,-1.319542147796939765e-06,-1.344439169453485654e-06,-1.369336191110031544e-06,-1.394233212766577433e-06,-1.419130234423123323e-06,-1.444027256079669212e-06,-1.468924277736215101e-06,-1.493821299392760991e-06,-1.518718321049306880e-06,-1.543615342705852770e-06,-1.568512364362398659e-06 +0.000000000000000000e+00,-2.426248332063038013e-08,-4.852496664126076027e-08,-7.278744996189113379e-08,-9.704993328252150730e-08,-1.213124166031518808e-07,-1.455748999237822676e-07,-1.698373832444126543e-07,-1.940998665650430411e-07,-2.183623498856734278e-07,-2.426248332063038146e-07,-2.668873165269342013e-07,-2.911497998475645881e-07,-3.154122831681949748e-07,-3.396747664888253616e-07,-3.639372498094557483e-07,-3.881997331300861351e-07,-4.124622164507165218e-07,-4.367246997713469086e-07,-4.609871830919772953e-07,-4.852496664126077350e-07,-5.095121497332381747e-07,-5.337746330538686144e-07,-5.580371163744990541e-07,-5.822995996951294938e-07,-6.065620830157599335e-07,-6.308245663363903732e-07,-6.550870496570208129e-07,-6.793495329776512526e-07,-7.036120162982816923e-07,-7.278744996189121320e-07,-7.521369829395425716e-07,-7.763994662601730113e-07,-8.006619495808034510e-07,-8.249244329014338907e-07,-8.491869162220643304e-07,-8.734493995426947701e-07,-8.977118828633252098e-07,-9.219743661839556495e-07,-9.462368495045860892e-07,-9.704993328252165289e-07,-9.947618161458469686e-07,-1.019024299466477408e-06,-1.043286782787107848e-06,-1.067549266107738288e-06,-1.091811749428368727e-06,-1.116074232748999167e-06,-1.140336716069629607e-06,-1.164599199390260046e-06,-1.188861682710890486e-06,-1.213124166031520926e-06,-1.237386649352151365e-06,-1.261649132672781805e-06,-1.285911615993412245e-06,-1.310174099314042685e-06,-1.334436582634673124e-06,-1.358699065955303564e-06,-1.382961549275934004e-06,-1.407224032596564443e-06,-1.431486515917194883e-06,-1.455748999237825323e-06,-1.480011482558455762e-06,-1.504273965879086202e-06,-1.528536449199716642e-06 +0.000000000000000000e+00,-2.436993314048092814e-08,-4.873986628096185628e-08,-7.310979942144278773e-08,-9.747973256192372580e-08,-1.218496657024046639e-07,-1.462195988428856019e-07,-1.705895319833665400e-07,-1.949594651238474781e-07,-2.193293982643284161e-07,-2.436993314048093277e-07,-2.680692645452902393e-07,-2.924391976857711509e-07,-3.168091308262520625e-07,-3.411790639667329741e-07,-3.655489971072138857e-07,-3.899189302476947973e-07,-4.142888633881757089e-07,-4.386587965286566205e-07,-4.630287296691375321e-07,-4.873986628096184437e-07,-5.117685959500993024e-07,-5.361385290905801610e-07,-5.605084622310610197e-07,-5.848783953715418783e-07,-6.092483285120227370e-07,-6.336182616525035956e-07,-6.579881947929844543e-07,-6.823581279334653130e-07,-7.067280610739461716e-07,-7.310979942144270303e-07,-7.554679273549078889e-07,-7.798378604953887476e-07,-8.042077936358696062e-07,-8.285777267763504649e-07,-8.529476599168313236e-07,-8.773175930573121822e-07,-9.016875261977930409e-07,-9.260574593382738995e-07,-9.504273924787547582e-07,-9.747973256192356168e-07,-9.991672587597164755e-07,-1.023537191900197334e-06,-1.047907125040678193e-06,-1.072277058181159051e-06,-1.096646991321639910e-06,-1.121016924462120769e-06,-1.145386857602601627e-06,-1.169756790743082486e-06,-1.194126723883563345e-06,-1.218496657024044203e-06,-1.242866590164525062e-06,-1.267236523305005921e-06,-1.291606456445486779e-06,-1.315976389585967638e-06,-1.340346322726448497e-06,-1.364716255866929355e-06,-1.389086189007410214e-06,-1.413456122147891073e-06,-1.437826055288371931e-06,-1.462195988428852790e-06,-1.486565921569333649e-06,-1.510935854709814507e-06,-1.535305787850295366e-06 +0.000000000000000000e+00,1.568792229698278060e-08,3.137584459396556120e-08,4.706376689094833849e-08,6.275168918793110917e-08,7.843961148491387984e-08,9.412753378189665051e-08,1.098154560788794212e-07,1.255033783758621919e-07,1.411913006728449758e-07,1.568792229698277597e-07,1.725671452668105436e-07,1.882550675637933275e-07,2.039429898607761114e-07,2.196309121577588953e-07,2.353188344547416792e-07,2.510067567517244367e-07,2.666946790487071941e-07,2.823826013456899515e-07,2.980705236426727090e-07,3.137584459396554664e-07,3.294463682366382239e-07,3.451342905336209813e-07,3.608222128306037387e-07,3.765101351275864962e-07,3.921980574245692536e-07,4.078859797215520110e-07,4.235739020185347685e-07,4.392618243155175259e-07,4.549497466125002834e-07,4.706376689094830408e-07,4.863255912064658512e-07,5.020135135034486616e-07,5.177014358004314719e-07,5.333893580974142823e-07,5.490772803943970927e-07,5.647652026913799031e-07,5.804531249883627135e-07,5.961410472853455238e-07,6.118289695823283342e-07,6.275168918793111446e-07,6.432048141762939550e-07,6.588927364732767653e-07,6.745806587702595757e-07,6.902685810672423861e-07,7.059565033642251965e-07,7.216444256612080069e-07,7.373323479581908172e-07,7.530202702551736276e-07,7.687081925521564380e-07,7.843961148491392484e-07,8.000840371461220588e-07,8.157719594431048691e-07,8.314598817400876795e-07,8.471478040370704899e-07,8.628357263340533003e-07,8.785236486310361106e-07,8.942115709280189210e-07,9.098994932250017314e-07,9.255874155219845418e-07,9.412753378189673522e-07,9.569632601159501625e-07,9.726511824129329729e-07,9.883391047099157833e-07 +0.000000000000000000e+00,1.695423086863955138e-08,3.390846173727910277e-08,5.086269260591865746e-08,6.781692347455821877e-08,8.477115434319778008e-08,1.017253852118373414e-07,1.186796160804769027e-07,1.356338469491164640e-07,1.525880778177560253e-07,1.695423086863955866e-07,1.864965395550351479e-07,2.034507704236747093e-07,2.204050012923142706e-07,2.373592321609538319e-07,2.543134630295933932e-07,2.712676938982329810e-07,2.882219247668725688e-07,3.051761556355121565e-07,3.221303865041517443e-07,3.390846173727913321e-07,3.560388482414309199e-07,3.729930791100705077e-07,3.899473099787100954e-07,4.069015408473496832e-07,4.238557717159892710e-07,4.408100025846288588e-07,4.577642334532684466e-07,4.747184643219080343e-07,4.916726951905476221e-07,5.086269260591872099e-07,5.255811569278267977e-07,5.425353877964663855e-07,5.594896186651059732e-07,5.764438495337455610e-07,5.933980804023851488e-07,6.103523112710247366e-07,6.273065421396643244e-07,6.442607730083039121e-07,6.612150038769434999e-07,6.781692347455830877e-07,6.951234656142226755e-07,7.120776964828622633e-07,7.290319273515018510e-07,7.459861582201414388e-07,7.629403890887810266e-07,7.798946199574206144e-07,7.968488508260602022e-07,8.138030816946997900e-07,8.307573125633393777e-07,8.477115434319789655e-07,8.646657743006185533e-07,8.816200051692581411e-07,8.985742360378977289e-07,9.155284669065373166e-07,9.324826977751769044e-07,9.494369286438164922e-07,9.663911595124561859e-07,9.833453903810958795e-07,1.000299621249735573e-06,1.017253852118375267e-06,1.034208082987014960e-06,1.051162313855654654e-06,1.068116544724294348e-06 +0.000000000000000000e+00,1.546690225667675200e-08,3.093380451335350400e-08,4.640070677003025269e-08,6.186760902670699477e-08,7.733451128338373684e-08,9.280141354006047892e-08,1.082683157967372210e-07,1.237352180534139631e-07,1.392021203100907051e-07,1.546690225667674472e-07,1.701359248234441893e-07,1.856028270801209314e-07,2.010697293367976734e-07,2.165366315934744155e-07,2.320035338501511576e-07,2.474704361068278732e-07,2.629373383635045888e-07,2.784042406201813044e-07,2.938711428768580200e-07,3.093380451335347356e-07,3.248049473902114512e-07,3.402718496468881668e-07,3.557387519035648824e-07,3.712056541602415980e-07,3.866725564169183136e-07,4.021394586735950292e-07,4.176063609302717448e-07,4.330732631869484604e-07,4.485401654436251761e-07,4.640070677003018917e-07,4.794739699569786073e-07,4.949408722136553229e-07,5.104077744703320385e-07,5.258746767270087541e-07,5.413415789836854697e-07,5.568084812403621853e-07,5.722753834970389009e-07,5.877422857537156165e-07,6.032091880103923321e-07,6.186760902670690477e-07,6.341429925237457633e-07,6.496098947804224789e-07,6.650767970370991945e-07,6.805436992937759101e-07,6.960106015504526257e-07,7.114775038071293413e-07,7.269444060638060569e-07,7.424113083204827725e-07,7.578782105771594881e-07,7.733451128338362038e-07,7.888120150905129194e-07,8.042789173471896350e-07,8.197458196038663506e-07,8.352127218605430662e-07,8.506796241172197818e-07,8.661465263738964974e-07,8.816134286305732130e-07,8.970803308872499286e-07,9.125472331439266442e-07,9.280141354006033598e-07,9.434810376572800754e-07,9.589479399139567910e-07,9.744148421706335066e-07 +0.000000000000000000e+00,1.597361178495671799e-08,3.194722356991343597e-08,4.792083535487015065e-08,6.389444713982685871e-08,7.986805892478356677e-08,9.584167070974027483e-08,1.118152824946969829e-07,1.277888942796536910e-07,1.437625060646103990e-07,1.597361178495671071e-07,1.757097296345238151e-07,1.916833414194805232e-07,2.076569532044372313e-07,2.236305649893939393e-07,2.396041767743506474e-07,2.555777885593073290e-07,2.715514003442640106e-07,2.875250121292206921e-07,3.034986239141773737e-07,3.194722356991340553e-07,3.354458474840907369e-07,3.514194592690474185e-07,3.673930710540041001e-07,3.833666828389607817e-07,3.993402946239174633e-07,4.153139064088741449e-07,4.312875181938308265e-07,4.472611299787875081e-07,4.632347417637441896e-07,4.792083535487008712e-07,4.951819653336575528e-07,5.111555771186142344e-07,5.271291889035709160e-07,5.431028006885275976e-07,5.590764124734842792e-07,5.750500242584409608e-07,5.910236360433976424e-07,6.069972478283543240e-07,6.229708596133110056e-07,6.389444713982676871e-07,6.549180831832243687e-07,6.708916949681810503e-07,6.868653067531377319e-07,7.028389185380944135e-07,7.188125303230510951e-07,7.347861421080077767e-07,7.507597538929644583e-07,7.667333656779211399e-07,7.827069774628778215e-07,7.986805892478345031e-07,8.146542010327911846e-07,8.306278128177478662e-07,8.466014246027045478e-07,8.625750363876612294e-07,8.785486481726179110e-07,8.945222599575745926e-07,9.104958717425312742e-07,9.264694835274879558e-07,9.424430953124446374e-07,9.584167070974013190e-07,9.743903188823580005e-07,9.903639306673146821e-07,1.006337542452271364e-06 +0.000000000000000000e+00,1.669099521212490490e-08,3.338199042424980980e-08,5.007298563637471470e-08,6.676398084849961960e-08,8.345497606062452451e-08,1.001459712727494294e-07,1.168369664848743343e-07,1.335279616969992392e-07,1.502189569091241441e-07,1.669099521212490490e-07,1.836009473333739539e-07,2.002919425454988588e-07,2.169829377576237637e-07,2.336739329697486686e-07,2.503649281818735470e-07,2.670559233939984255e-07,2.837469186061233039e-07,3.004379138182481823e-07,3.171289090303730608e-07,3.338199042424979392e-07,3.505108994546228176e-07,3.672018946667476961e-07,3.838928898788725745e-07,4.005838850909974529e-07,4.172748803031223314e-07,4.339658755152472098e-07,4.506568707273720882e-07,4.673478659394969667e-07,4.840388611516218451e-07,5.007298563637466706e-07,5.174208515758714961e-07,5.341118467879963216e-07,5.508028420001211470e-07,5.674938372122459725e-07,5.841848324243707980e-07,6.008758276364956235e-07,6.175668228486204490e-07,6.342578180607452745e-07,6.509488132728701000e-07,6.676398084849949255e-07,6.843308036971197510e-07,7.010217989092445765e-07,7.177127941213694020e-07,7.344037893334942275e-07,7.510947845456190529e-07,7.677857797577438784e-07,7.844767749698687039e-07,8.011677701819935294e-07,8.178587653941183549e-07,8.345497606062431804e-07,8.512407558183680059e-07,8.679317510304928314e-07,8.846227462426176569e-07,9.013137414547424824e-07,9.180047366668673079e-07,9.346957318789921334e-07,9.513867270911169588e-07,9.680777223032417843e-07,9.847687175153666098e-07,1.001459712727491435e-06,1.018150707939616261e-06,1.034841703151741086e-06,1.051532698363865912e-06 +0.000000000000000000e+00,1.772374883326572321e-08,3.544749766653144643e-08,5.317124649979716964e-08,7.089499533306289286e-08,8.861874416632860946e-08,1.063424929995943261e-07,1.240662418328600427e-07,1.417899906661257592e-07,1.595137394993914758e-07,1.772374883326571924e-07,1.949612371659229090e-07,2.126849859991886256e-07,2.304087348324543422e-07,2.481324836657200324e-07,2.658562324989857490e-07,2.835799813322514656e-07,3.013037301655171822e-07,3.190274789987828987e-07,3.367512278320486153e-07,3.544749766653143319e-07,3.721987254985800485e-07,3.899224743318457651e-07,4.076462231651114817e-07,4.253699719983771983e-07,4.430937208316429149e-07,4.608174696649086315e-07,4.785412184981743481e-07,4.962649673314400647e-07,5.139887161647057813e-07,5.317124649979714979e-07,5.494362138312372145e-07,5.671599626645029311e-07,5.848837114977686477e-07,6.026074603310343643e-07,6.203312091643000809e-07,6.380549579975657975e-07,6.557787068308315141e-07,6.735024556640972307e-07,6.912262044973629473e-07,7.089499533306286639e-07,7.266737021638943805e-07,7.443974509971600971e-07,7.621211998304258137e-07,7.798449486636915303e-07,7.975686974969572469e-07,8.152924463302229635e-07,8.330161951634886801e-07,8.507399439967543967e-07,8.684636928300201133e-07,8.861874416632858299e-07,9.039111904965515465e-07,9.216349393298172631e-07,9.393586881630829797e-07,9.570824369963486962e-07,9.748061858296144128e-07,9.925299346628801294e-07,1.010253683496145846e-06,1.027977432329411563e-06,1.045701181162677279e-06,1.063424929995942996e-06,1.081148678829208712e-06,1.098872427662474429e-06,1.116596176495740146e-06 +0.000000000000000000e+00,1.552028247062081283e-08,3.104056494124162567e-08,4.656084741186244181e-08,6.208112988248326457e-08,7.760141235310408733e-08,9.312169482372491009e-08,1.086419772943457329e-07,1.241622597649665556e-07,1.396825422355873916e-07,1.552028247062082276e-07,1.707231071768290636e-07,1.862433896474498996e-07,2.017636721180707356e-07,2.172839545886915716e-07,2.328042370593124076e-07,2.483245195299332700e-07,2.638448020005541325e-07,2.793650844711749950e-07,2.948853669417958574e-07,3.104056494124167199e-07,3.259259318830375824e-07,3.414462143536584448e-07,3.569664968242793073e-07,3.724867792949001698e-07,3.880070617655210322e-07,4.035273442361418947e-07,4.190476267067627572e-07,4.345679091773836196e-07,4.500881916480044821e-07,4.656084741186253446e-07,4.811287565892461541e-07,4.966490390598669636e-07,5.121693215304877731e-07,5.276896040011085827e-07,5.432098864717293922e-07,5.587301689423502017e-07,5.742504514129710112e-07,5.897707338835918208e-07,6.052910163542126303e-07,6.208112988248334398e-07,6.363315812954542493e-07,6.518518637660750589e-07,6.673721462366958684e-07,6.828924287073166779e-07,6.984127111779374874e-07,7.139329936485582970e-07,7.294532761191791065e-07,7.449735585897999160e-07,7.604938410604207255e-07,7.760141235310415351e-07,7.915344060016623446e-07,8.070546884722831541e-07,8.225749709429039636e-07,8.380952534135247732e-07,8.536155358841455827e-07,8.691358183547663922e-07,8.846561008253872017e-07,9.001763832960080113e-07,9.156966657666288208e-07,9.312169482372496303e-07,9.467372307078704398e-07,9.622575131784912494e-07,9.777777956491120589e-07 +0.000000000000000000e+00,1.572404758726141294e-08,3.144809517452282588e-08,4.717214276178423552e-08,6.289619034904563853e-08,7.862023793630704155e-08,9.434428552356844457e-08,1.100683331108298476e-07,1.257923806980912506e-07,1.415164282853526669e-07,1.572404758726140831e-07,1.729645234598754994e-07,1.886885710471369156e-07,2.044126186343983319e-07,2.201366662216597481e-07,2.358607138089211644e-07,2.515847613961825541e-07,2.673088089834439439e-07,2.830328565707053337e-07,2.987569041579667235e-07,3.144809517452281133e-07,3.302049993324895030e-07,3.459290469197508928e-07,3.616530945070122826e-07,3.773771420942736724e-07,3.931011896815350622e-07,4.088252372687964520e-07,4.245492848560578417e-07,4.402733324433192315e-07,4.559973800305806213e-07,4.717214276178420111e-07,4.874454752051034009e-07,5.031695227923647906e-07,5.188935703796261804e-07,5.346176179668875702e-07,5.503416655541489600e-07,5.660657131414103498e-07,5.817897607286717395e-07,5.975138083159331293e-07,6.132378559031945191e-07,6.289619034904559089e-07,6.446859510777172987e-07,6.604099986649786885e-07,6.761340462522400782e-07,6.918580938395014680e-07,7.075821414267628578e-07,7.233061890140242476e-07,7.390302366012856374e-07,7.547542841885470271e-07,7.704783317758084169e-07,7.862023793630698067e-07,8.019264269503311965e-07,8.176504745375925863e-07,8.333745221248539760e-07,8.490985697121153658e-07,8.648226172993767556e-07,8.805466648866381454e-07,8.962707124738995352e-07,9.119947600611609250e-07,9.277188076484223147e-07,9.434428552356837045e-07,9.591669028229450943e-07,9.748909504102063782e-07,9.906149979974676621e-07 +0.000000000000000000e+00,1.568792229699943340e-08,3.137584459399886680e-08,4.706376689099830020e-08,6.275168918799773360e-08,7.843961148499716700e-08,9.412753378199660040e-08,1.098154560789960338e-07,1.255033783759954672e-07,1.411913006729949006e-07,1.568792229699943340e-07,1.725671452669937674e-07,1.882550675639932008e-07,2.039429898609926342e-07,2.196309121579920676e-07,2.353188344549915010e-07,2.510067567519909344e-07,2.666946790489903678e-07,2.823826013459898012e-07,2.980705236429892346e-07,3.137584459399886680e-07,3.294463682369881014e-07,3.451342905339875348e-07,3.608222128309869682e-07,3.765101351279864016e-07,3.921980574249858350e-07,4.078859797219852684e-07,4.235739020189847018e-07,4.392618243159841352e-07,4.549497466129835686e-07,4.706376689099830020e-07,4.863255912069824354e-07,5.020135135039818688e-07,5.177014358009813022e-07,5.333893580979807356e-07,5.490772803949801690e-07,5.647652026919796024e-07,5.804531249889790358e-07,5.961410472859784692e-07,6.118289695829779026e-07,6.275168918799773360e-07,6.432048141769767694e-07,6.588927364739762028e-07,6.745806587709756362e-07,6.902685810679750696e-07,7.059565033649745030e-07,7.216444256619739364e-07,7.373323479589733698e-07,7.530202702559728032e-07,7.687081925529722366e-07,7.843961148499716700e-07,8.000840371469711034e-07,8.157719594439705368e-07,8.314598817409699702e-07,8.471478040379694036e-07,8.628357263349688370e-07,8.785236486319682704e-07,8.942115709289677038e-07,9.098994932259671372e-07,9.255874155229665706e-07,9.412753378199660040e-07,9.569632601169655433e-07,9.726511824139650826e-07,9.883391047109646218e-07 +0.000000000000000000e+00,1.695423086865601890e-08,3.390846173731203779e-08,5.086269260596805669e-08,6.781692347462407558e-08,8.477115434328010110e-08,1.017253852119361266e-07,1.186796160805921521e-07,1.356338469492481776e-07,1.525880778179042032e-07,1.695423086865602287e-07,1.864965395552162542e-07,2.034507704238722797e-07,2.204050012925283052e-07,2.373592321611843307e-07,2.543134630298403562e-07,2.712676938984964082e-07,2.882219247671524602e-07,3.051761556358085122e-07,3.221303865044645642e-07,3.390846173731206162e-07,3.560388482417766681e-07,3.729930791104327201e-07,3.899473099790887721e-07,4.069015408477448241e-07,4.238557717164008761e-07,4.408100025850569281e-07,4.577642334537129800e-07,4.747184643223690320e-07,4.916726951910250311e-07,5.086269260596810301e-07,5.255811569283370292e-07,5.425353877969930282e-07,5.594896186656490272e-07,5.764438495343050263e-07,5.933980804029610253e-07,6.103523112716170244e-07,6.273065421402730234e-07,6.442607730089290225e-07,6.612150038775850215e-07,6.781692347462410205e-07,6.951234656148970196e-07,7.120776964835530186e-07,7.290319273522090177e-07,7.459861582208650167e-07,7.629403890895210158e-07,7.798946199581770148e-07,7.968488508268330139e-07,8.138030816954890129e-07,8.307573125641450119e-07,8.477115434328010110e-07,8.646657743014570100e-07,8.816200051701130091e-07,8.985742360387690081e-07,9.155284669074250072e-07,9.324826977760810062e-07,9.494369286447370053e-07,9.663911595133930043e-07,9.833453903820490033e-07,1.000299621250705002e-06,1.017253852119361001e-06,1.034208082988017000e-06,1.051162313856673000e-06,1.068116544725328999e-06 +0.000000000000000000e+00,1.552028247062913758e-08,3.104056494125827516e-08,4.656084741188741605e-08,6.208112988251656355e-08,7.760141235314571106e-08,9.312169482377485857e-08,1.086419772944040061e-07,1.241622597650331536e-07,1.396825422356623011e-07,1.552028247062914486e-07,1.707231071769205961e-07,1.862433896475497436e-07,2.017636721181788911e-07,2.172839545888080386e-07,2.328042370594371861e-07,2.483245195300663601e-07,2.638448020006955341e-07,2.793650844713247080e-07,2.948853669419538820e-07,3.104056494125830560e-07,3.259259318832122300e-07,3.414462143538414039e-07,3.569664968244705779e-07,3.724867792950997519e-07,3.880070617657289259e-07,4.035273442363580999e-07,4.190476267069872738e-07,4.345679091776164478e-07,4.500881916482456218e-07,4.656084741188747958e-07,4.811287565895039697e-07,4.966490390601331437e-07,5.121693215307623177e-07,5.276896040013914917e-07,5.432098864720206656e-07,5.587301689426498396e-07,5.742504514132790136e-07,5.897707338839081876e-07,6.052910163545373615e-07,6.208112988251665355e-07,6.363315812957957095e-07,6.518518637664248835e-07,6.673721462370540574e-07,6.828924287076832314e-07,6.984127111783124054e-07,7.139329936489415794e-07,7.294532761195707533e-07,7.449735585901999273e-07,7.604938410608291013e-07,7.760141235314582753e-07,7.915344060020874492e-07,8.070546884727166232e-07,8.225749709433457972e-07,8.380952534139749712e-07,8.536155358846041451e-07,8.691358183552333191e-07,8.846561008258624931e-07,9.001763832964916671e-07,9.156966657671208411e-07,9.312169482377500150e-07,9.467372307083791890e-07,9.622575131790083630e-07,9.777777956496376428e-07 +0.000000000000000000e+00,1.597361178497293734e-08,3.194722356994587469e-08,4.792083535491881534e-08,6.389444713989176261e-08,7.986805892486470988e-08,9.584167070983765715e-08,1.118152824948106044e-07,1.277888942797835517e-07,1.437625060647565122e-07,1.597361178497294727e-07,1.757097296347024332e-07,1.916833414196753937e-07,2.076569532046483542e-07,2.236305649896213147e-07,2.396041767745942752e-07,2.555777885595672622e-07,2.715514003445402492e-07,2.875250121295132362e-07,3.034986239144862231e-07,3.194722356994592101e-07,3.354458474844321971e-07,3.514194592694051841e-07,3.673930710543781710e-07,3.833666828393511580e-07,3.993402946243241450e-07,4.153139064092971320e-07,4.312875181942701189e-07,4.472611299792431059e-07,4.632347417642160929e-07,4.792083535491890799e-07,4.951819653341620668e-07,5.111555771191350538e-07,5.271291889041080408e-07,5.431028006890810278e-07,5.590764124740540147e-07,5.750500242590270017e-07,5.910236360439999887e-07,6.069972478289729757e-07,6.229708596139459626e-07,6.389444713989189496e-07,6.549180831838919366e-07,6.708916949688649236e-07,6.868653067538379105e-07,7.028389185388108975e-07,7.188125303237838845e-07,7.347861421087568715e-07,7.507597538937298584e-07,7.667333656787028454e-07,7.827069774636758324e-07,7.986805892486488194e-07,8.146542010336218063e-07,8.306278128185947933e-07,8.466014246035677803e-07,8.625750363885407672e-07,8.785486481735137542e-07,8.945222599584867412e-07,9.104958717434597282e-07,9.264694835284327151e-07,9.424430953134057021e-07,9.584167070983787950e-07,9.743903188833517820e-07,9.903639306683247689e-07,1.006337542453297756e-06 +0.000000000000000000e+00,1.669099521214147167e-08,3.338199042428294335e-08,5.007298563642441171e-08,6.676398084856587346e-08,8.345497606070733521e-08,1.001459712728487970e-07,1.168369664849902587e-07,1.335279616971317205e-07,1.502189569092731954e-07,1.669099521214146704e-07,1.836009473335561454e-07,2.002919425456976204e-07,2.169829377578390954e-07,2.336739329699805704e-07,2.503649281821220453e-07,2.670559233942634938e-07,2.837469186064049424e-07,3.004379138185463909e-07,3.171289090306878394e-07,3.338199042428292879e-07,3.505108994549707364e-07,3.672018946671121849e-07,3.838928898792536334e-07,4.005838850913950820e-07,4.172748803035365305e-07,4.339658755156779790e-07,4.506568707278194275e-07,4.673478659399608760e-07,4.840388611521023245e-07,5.007298563642437730e-07,5.174208515763852215e-07,5.341118467885266701e-07,5.508028420006681186e-07,5.674938372128095671e-07,5.841848324249510156e-07,6.008758276370924641e-07,6.175668228492339126e-07,6.342578180613753611e-07,6.509488132735168097e-07,6.676398084856582582e-07,6.843308036977997067e-07,7.010217989099411552e-07,7.177127941220826037e-07,7.344037893342240522e-07,7.510947845463655007e-07,7.677857797585069492e-07,7.844767749706483978e-07,8.011677701827898463e-07,8.178587653949312948e-07,8.345497606070727433e-07,8.512407558192141918e-07,8.679317510313556403e-07,8.846227462434970888e-07,9.013137414556385374e-07,9.180047366677799859e-07,9.346957318799214344e-07,9.513867270920628829e-07,9.680777223042042255e-07,9.847687175163455682e-07,1.001459712728486911e-06,1.018150707940628253e-06,1.034841703152769596e-06,1.051532698364910939e-06 +0.000000000000000000e+00,1.772374883328178375e-08,3.544749766656356751e-08,5.317124649984535126e-08,7.089499533312713501e-08,8.861874416640891877e-08,1.063424929996907025e-07,1.240662418329724863e-07,1.417899906662542700e-07,1.595137394995360538e-07,1.772374883328178375e-07,1.949612371660996213e-07,2.126849859993814050e-07,2.304087348326631888e-07,2.481324836659449725e-07,2.658562324992267298e-07,2.835799813325084871e-07,3.013037301657902444e-07,3.190274789990720017e-07,3.367512278323537590e-07,3.544749766656355162e-07,3.721987254989172735e-07,3.899224743321990308e-07,4.076462231654807881e-07,4.253699719987625454e-07,4.430937208320443027e-07,4.608174696653260600e-07,4.785412184986078172e-07,4.962649673318896275e-07,5.139887161651714377e-07,5.317124649984532479e-07,5.494362138317350581e-07,5.671599626650168684e-07,5.848837114982986786e-07,6.026074603315804888e-07,6.203312091648622990e-07,6.380549579981441092e-07,6.557787068314259195e-07,6.735024556647077297e-07,6.912262044979895399e-07,7.089499533312713501e-07,7.266737021645531604e-07,7.443974509978349706e-07,7.621211998311167808e-07,7.798449486643985910e-07,7.975686974976804013e-07,8.152924463309622115e-07,8.330161951642440217e-07,8.507399439975258319e-07,8.684636928308076421e-07,8.861874416640894524e-07,9.039111904973712626e-07,9.216349393306530728e-07,9.393586881639348830e-07,9.570824369972166933e-07,9.748061858304985035e-07,9.925299346637803137e-07,1.010253683497062124e-06,1.027977432330343934e-06,1.045701181163625744e-06,1.063424929996907555e-06,1.081148678830189365e-06,1.098872427663471175e-06,1.116596176496752985e-06 +0.000000000000000000e+00,1.727474744806591994e-08,3.454949489613183989e-08,5.182424234419775983e-08,6.909898979226367977e-08,8.637373724032959971e-08,1.036484846883955197e-07,1.209232321364614264e-07,1.381979795845273331e-07,1.554727270325932398e-07,1.727474744806591465e-07,1.900222219287250532e-07,2.072969693767909599e-07,2.245717168248568666e-07,2.418464642729227468e-07,2.591212117209886271e-07,2.763959591690545073e-07,2.936707066171203876e-07,3.109454540651862678e-07,3.282202015132521480e-07,3.454949489613180283e-07,3.627696964093839085e-07,3.800444438574497888e-07,3.973191913055156690e-07,4.145939387535815492e-07,4.318686862016474295e-07,4.491434336497133097e-07,4.664181810977791899e-07,4.836929285458450702e-07,5.009676759939108975e-07,5.182424234419767248e-07,5.355171708900425521e-07,5.527919183381083794e-07,5.700666657861742067e-07,5.873414132342400340e-07,6.046161606823058613e-07,6.218909081303716886e-07,6.391656555784375159e-07,6.564404030265033432e-07,6.737151504745691705e-07,6.909898979226349978e-07,7.082646453707008251e-07,7.255393928187666524e-07,7.428141402668324797e-07,7.600888877148983070e-07,7.773636351629641343e-07,7.946383826110299616e-07,8.119131300590957889e-07,8.291878775071616162e-07,8.464626249552274435e-07,8.637373724032932707e-07,8.810121198513590980e-07,8.982868672994249253e-07,9.155616147474907526e-07,9.328363621955565799e-07,9.501111096436224072e-07,9.673858570916882345e-07,9.846606045397540618e-07,1.001935351987819889e-06,1.019210099435885716e-06,1.036484846883951544e-06,1.053759594332017371e-06,1.071034341780083198e-06,1.088309089228149026e-06 +0.000000000000000000e+00,1.711417634589644240e-08,3.422835269179288480e-08,5.134252903768932389e-08,6.845670538358575636e-08,8.557088172948218884e-08,1.026850580753786213e-07,1.197992344212750405e-07,1.369134107671714598e-07,1.540275871130678790e-07,1.711417634589642983e-07,1.882559398048607175e-07,2.053701161507571367e-07,2.224842924966535560e-07,2.395984688425499752e-07,2.567126451884463945e-07,2.738268215343428137e-07,2.909409978802392329e-07,3.080551742261356522e-07,3.251693505720320714e-07,3.422835269179284906e-07,3.593977032638249099e-07,3.765118796097213291e-07,3.936260559556177484e-07,4.107402323015141676e-07,4.278544086474105868e-07,4.449685849933070061e-07,4.620827613392034253e-07,4.791969376850998445e-07,4.963111140309962108e-07,5.134252903768925771e-07,5.305394667227889434e-07,5.476536430686853097e-07,5.647678194145816760e-07,5.818819957604780423e-07,5.989961721063744086e-07,6.161103484522707749e-07,6.332245247981671412e-07,6.503387011440635075e-07,6.674528774899598738e-07,6.845670538358562401e-07,7.016812301817526064e-07,7.187954065276489727e-07,7.359095828735453390e-07,7.530237592194417053e-07,7.701379355653380716e-07,7.872521119112344379e-07,8.043662882571308042e-07,8.214804646030271705e-07,8.385946409489235368e-07,8.557088172948199031e-07,8.728229936407162694e-07,8.899371699866126357e-07,9.070513463325090020e-07,9.241655226784053683e-07,9.412796990243017346e-07,9.583938753701982068e-07,9.755080517160946790e-07,9.926222280619911511e-07,1.009736404407887623e-06,1.026850580753784096e-06,1.043964757099680568e-06,1.061078933445577040e-06,1.078193109791473512e-06 +0.000000000000000000e+00,1.817187531310562842e-08,3.634375062621125684e-08,5.451562593931688196e-08,7.268750125242250045e-08,9.085937656552811895e-08,1.090312518786337374e-07,1.272031271917393427e-07,1.453750025048449480e-07,1.635468778179505532e-07,1.817187531310561585e-07,1.998906284441617637e-07,2.180625037572673690e-07,2.362343790703729743e-07,2.544062543834785795e-07,2.725781296965841848e-07,2.907500050096897901e-07,3.089218803227953953e-07,3.270937556359010006e-07,3.452656309490066058e-07,3.634375062621122111e-07,3.816093815752178164e-07,3.997812568883234216e-07,4.179531322014290269e-07,4.361250075145346321e-07,4.542968828276402374e-07,4.724687581407458427e-07,4.906406334538513950e-07,5.088125087669569473e-07,5.269843840800624996e-07,5.451562593931680519e-07,5.633281347062736043e-07,5.815000100193791566e-07,5.996718853324847089e-07,6.178437606455902612e-07,6.360156359586958136e-07,6.541875112718013659e-07,6.723593865849069182e-07,6.905312618980124705e-07,7.087031372111180228e-07,7.268750125242235752e-07,7.450468878373291275e-07,7.632187631504346798e-07,7.813906384635402321e-07,7.995625137766457844e-07,8.177343890897513368e-07,8.359062644028568891e-07,8.540781397159624414e-07,8.722500150290679937e-07,8.904218903421735461e-07,9.085937656552790984e-07,9.267656409683846507e-07,9.449375162814902030e-07,9.631093915945957553e-07,9.812812669077013077e-07,9.994531422208068600e-07,1.017625017533912412e-06,1.035796892847017965e-06,1.053968768160123517e-06,1.072140643473229069e-06,1.090312518786334622e-06,1.108484394099440174e-06,1.126656269412545726e-06,1.144828144725651279e-06 +0.000000000000000000e+00,1.727474744808153380e-08,3.454949489616306761e-08,5.182424234424459810e-08,6.909898979232612198e-08,8.637373724040764586e-08,1.036484846884891697e-07,1.209232321365706936e-07,1.381979795846522175e-07,1.554727270327337414e-07,1.727474744808152652e-07,1.900222219288967891e-07,2.072969693769783130e-07,2.245717168250598369e-07,2.418464642731413872e-07,2.591212117212229376e-07,2.763959591693044879e-07,2.936707066173860383e-07,3.109454540654675886e-07,3.282202015135491390e-07,3.454949489616306893e-07,3.627696964097122397e-07,3.800444438577937900e-07,3.973191913058753404e-07,4.145939387539568907e-07,4.318686862020384411e-07,4.491434336501199914e-07,4.664181810982015417e-07,4.836929285462830921e-07,5.009676759943646954e-07,5.182424234424462987e-07,5.355171708905279020e-07,5.527919183386095052e-07,5.700666657866911085e-07,5.873414132347727118e-07,6.046161606828543151e-07,6.218909081309359184e-07,6.391656555790175217e-07,6.564404030270991250e-07,6.737151504751807283e-07,6.909898979232623315e-07,7.082646453713439348e-07,7.255393928194255381e-07,7.428141402675071414e-07,7.600888877155887447e-07,7.773636351636703480e-07,7.946383826117519513e-07,8.119131300598335546e-07,8.291878775079151578e-07,8.464626249559967611e-07,8.637373724040783644e-07,8.810121198521599677e-07,8.982868673002415710e-07,9.155616147483231743e-07,9.328363621964047776e-07,9.501111096444863808e-07,9.673858570925680900e-07,9.846606045406497992e-07,1.001935351988731508e-06,1.019210099436813218e-06,1.036484846884894927e-06,1.053759594332976636e-06,1.071034341781058345e-06,1.088309089229140054e-06 +0.000000000000000000e+00,1.711417634591250294e-08,3.422835269182500588e-08,5.134252903773751212e-08,6.845670538365002499e-08,8.557088172956253785e-08,1.026850580754750507e-07,1.197992344213875636e-07,1.369134107673000764e-07,1.540275871132125893e-07,1.711417634591251022e-07,1.882559398050376150e-07,2.053701161509501279e-07,2.224842924968626408e-07,2.395984688427751801e-07,2.567126451886877459e-07,2.738268215346003117e-07,2.909409978805128775e-07,3.080551742264254433e-07,3.251693505723380091e-07,3.422835269182505749e-07,3.593977032641631407e-07,3.765118796100757065e-07,3.936260559559882723e-07,4.107402323019008381e-07,4.278544086478134039e-07,4.449685849937259697e-07,4.620827613396385355e-07,4.791969376855511014e-07,4.963111140314636672e-07,5.134252903773762330e-07,5.305394667232887988e-07,5.476536430692013646e-07,5.647678194151139304e-07,5.818819957610264962e-07,5.989961721069390620e-07,6.161103484528516278e-07,6.332245247987641936e-07,6.503387011446767594e-07,6.674528774905893252e-07,6.845670538365018910e-07,7.016812301824144568e-07,7.187954065283270226e-07,7.359095828742395884e-07,7.530237592201521542e-07,7.701379355660647200e-07,7.872521119119772858e-07,8.043662882578898516e-07,8.214804646038024174e-07,8.385946409497149832e-07,8.557088172956275490e-07,8.728229936415401148e-07,8.899371699874526806e-07,9.070513463333652464e-07,9.241655226792778123e-07,9.412796990251903781e-07,9.583938753711028380e-07,9.755080517170154038e-07,9.926222280629279696e-07,1.009736404408840535e-06,1.026850580754753101e-06,1.043964757100665667e-06,1.061078933446578233e-06,1.078193109792490799e-06 +0.000000000000000000e+00,1.817187531312077906e-08,3.634375062624155812e-08,5.451562593936233719e-08,7.268750125248311625e-08,9.085937656560388869e-08,1.090312518787246611e-07,1.272031271918454336e-07,1.453750025049662060e-07,1.635468778180869785e-07,1.817187531312077509e-07,1.998906284443285234e-07,2.180625037574492958e-07,2.362343790705700682e-07,2.544062543836908672e-07,2.725781296968116661e-07,2.907500050099324650e-07,3.089218803230532639e-07,3.270937556361740628e-07,3.452656309492948617e-07,3.634375062624156606e-07,3.816093815755364596e-07,3.997812568886572585e-07,4.179531322017780574e-07,4.361250075148988563e-07,4.542968828280196552e-07,4.724687581411404541e-07,4.906406334542612530e-07,5.088125087673820520e-07,5.269843840805028509e-07,5.451562593936236498e-07,5.633281347067444487e-07,5.815000100198652476e-07,5.996718853329860465e-07,6.178437606461068454e-07,6.360156359592276444e-07,6.541875112723484433e-07,6.723593865854692422e-07,6.905312618985900411e-07,7.087031372117108400e-07,7.268750125248316389e-07,7.450468878379524378e-07,7.632187631510732368e-07,7.813906384641940357e-07,7.995625137773148346e-07,8.177343890904356335e-07,8.359062644035564324e-07,8.540781397166772313e-07,8.722500150297980303e-07,8.904218903429188292e-07,9.085937656560396281e-07,9.267656409691604270e-07,9.449375162822812259e-07,9.631093915954019189e-07,9.812812669085227179e-07,9.994531422216435168e-07,1.017625017534764316e-06,1.035796892847885115e-06,1.053968768161005914e-06,1.072140643474126712e-06,1.090312518787247511e-06,1.108484394100368310e-06,1.126656269413489109e-06,1.144828144726609908e-06 +0.000000000000000000e+00,1.780446295711156255e-08,3.560892591422312509e-08,5.341338887133468764e-08,7.121785182844625019e-08,8.902231478555781274e-08,1.068267777426693753e-07,1.246312406997809511e-07,1.424357036568925268e-07,1.602401666140041026e-07,1.780446295711156784e-07,1.958490925282272542e-07,2.136535554853388300e-07,2.314580184424504058e-07,2.492624813995620080e-07,2.670669443566736103e-07,2.848714073137852125e-07,3.026758702708968148e-07,3.204803332280084170e-07,3.382847961851200193e-07,3.560892591422316215e-07,3.738937220993432238e-07,3.916981850564548260e-07,4.095026480135664283e-07,4.273071109706780305e-07,4.451115739277896328e-07,4.629160368849012350e-07,4.807204998420128373e-07,4.985249627991244395e-07,5.163294257562360418e-07,5.341338887133476440e-07,5.519383516704592463e-07,5.697428146275708485e-07,5.875472775846824508e-07,6.053517405417940530e-07,6.231562034989056553e-07,6.409606664560172575e-07,6.587651294131288598e-07,6.765695923702404620e-07,6.943740553273520643e-07,7.121785182844636666e-07,7.299829812415752688e-07,7.477874441986868711e-07,7.655919071557984733e-07,7.833963701129100756e-07,8.012008330700216778e-07,8.190052960271332801e-07,8.368097589842448823e-07,8.546142219413564846e-07,8.724186848984680868e-07,8.902231478555796891e-07,9.080276108126912913e-07,9.258320737698028936e-07,9.436365367269144958e-07,9.614409996840260981e-07,9.792454626411377003e-07,9.970499255982493026e-07,1.014854388555360905e-06,1.032658851512472507e-06,1.050463314469584109e-06,1.068267777426695712e-06,1.086072240383807314e-06,1.103876703340918916e-06,1.121681166298030518e-06 +0.000000000000000000e+00,1.750416491418871216e-08,3.500832982837742431e-08,5.251249474256613647e-08,7.001665965675484863e-08,8.752082457094356740e-08,1.050249894851322862e-07,1.225291543993210050e-07,1.400333193135097237e-07,1.575374842276984425e-07,1.750416491418871613e-07,1.925458140560758800e-07,2.100499789702645988e-07,2.275541438844533176e-07,2.450583087986420099e-07,2.625624737128307022e-07,2.800666386270193945e-07,2.975708035412080868e-07,3.150749684553967791e-07,3.325791333695854714e-07,3.500832982837741637e-07,3.675874631979628560e-07,3.850916281121515483e-07,4.025957930263402406e-07,4.200999579405289329e-07,4.376041228547176253e-07,4.551082877689063176e-07,4.726124526830950099e-07,4.901166175972837022e-07,5.076207825114723945e-07,5.251249474256610868e-07,5.426291123398497791e-07,5.601332772540384714e-07,5.776374421682271637e-07,5.951416070824158560e-07,6.126457719966045483e-07,6.301499369107932406e-07,6.476541018249819329e-07,6.651582667391706252e-07,6.826624316533593175e-07,7.001665965675480098e-07,7.176707614817367021e-07,7.351749263959253944e-07,7.526790913101140867e-07,7.701832562243027790e-07,7.876874211384914713e-07,8.051915860526801636e-07,8.226957509668688560e-07,8.401999158810575483e-07,8.577040807952462406e-07,8.752082457094349329e-07,8.927124106236236252e-07,9.102165755378123175e-07,9.277207404520010098e-07,9.452249053661897021e-07,9.627290702803783944e-07,9.802332351945671926e-07,9.977374001087559908e-07,1.015241565022944789e-06,1.032745729937133587e-06,1.050249894851322385e-06,1.067754059765511183e-06,1.085258224679699982e-06,1.102762389593888780e-06 +0.000000000000000000e+00,1.874121356497195249e-08,3.748242712994390498e-08,5.622364069491585416e-08,7.496485425988779672e-08,9.370606782485973928e-08,1.124472813898316818e-07,1.311884949548036376e-07,1.499297085197755934e-07,1.686709220847475492e-07,1.874121356497195050e-07,2.061533492146914608e-07,2.248945627796634166e-07,2.436357763446353724e-07,2.623769899096073282e-07,2.811182034745792840e-07,2.998594170395512398e-07,3.186006306045231956e-07,3.373418441694951514e-07,3.560830577344671072e-07,3.748242712994390630e-07,3.935654848644110188e-07,4.123066984293829746e-07,4.310479119943549304e-07,4.497891255593268862e-07,4.685303391242988420e-07,4.872715526892708507e-07,5.060127662542429124e-07,5.247539798192149741e-07,5.434951933841870357e-07,5.622364069491590974e-07,5.809776205141311591e-07,5.997188340791032208e-07,6.184600476440752824e-07,6.372012612090473441e-07,6.559424747740194058e-07,6.746836883389914675e-07,6.934249019039635291e-07,7.121661154689355908e-07,7.309073290339076525e-07,7.496485425988797142e-07,7.683897561638517759e-07,7.871309697288238375e-07,8.058721832937958992e-07,8.246133968587679609e-07,8.433546104237400226e-07,8.620958239887120842e-07,8.808370375536841459e-07,8.995782511186562076e-07,9.183194646836282693e-07,9.370606782486003309e-07,9.558018918135723926e-07,9.745431053785444543e-07,9.932843189435165160e-07,1.012025532508488578e-06,1.030766746073460639e-06,1.049507959638432701e-06,1.068249173203404763e-06,1.086990386768376824e-06,1.105731600333348886e-06,1.124472813898320948e-06,1.143214027463293009e-06,1.161955241028265071e-06,1.180696454593237133e-06 +0.000000000000000000e+00,1.780446295712559815e-08,3.560892591425119630e-08,5.341338887137679444e-08,7.121785182850239259e-08,8.902231478562799736e-08,1.068267777427536021e-07,1.246312406998792069e-07,1.424357036570048117e-07,1.602401666141304164e-07,1.780446295712560212e-07,1.958490925283816259e-07,2.136535554855072307e-07,2.314580184426328355e-07,2.492624813997584138e-07,2.670669443568839921e-07,2.848714073140095704e-07,3.026758702711351487e-07,3.204803332282607270e-07,3.382847961853863052e-07,3.560892591425118835e-07,3.738937220996374618e-07,3.916981850567630401e-07,4.095026480138886184e-07,4.273071109710141967e-07,4.451115739281397750e-07,4.629160368852653533e-07,4.807204998423909316e-07,4.985249627995165099e-07,5.163294257566420882e-07,5.341338887137676665e-07,5.519383516708932448e-07,5.697428146280188231e-07,5.875472775851444014e-07,6.053517405422699797e-07,6.231562034993955580e-07,6.409606664565211363e-07,6.587651294136467146e-07,6.765695923707722929e-07,6.943740553278978712e-07,7.121785182850234495e-07,7.299829812421490277e-07,7.477874441992746060e-07,7.655919071564001843e-07,7.833963701135257626e-07,8.012008330706513409e-07,8.190052960277769192e-07,8.368097589849024975e-07,8.546142219420280758e-07,8.724186848991536541e-07,8.902231478562792324e-07,9.080276108134048107e-07,9.258320737705303890e-07,9.436365367276559673e-07,9.614409996847816515e-07,9.792454626419072298e-07,9.970499255990328081e-07,1.014854388556158386e-06,1.032658851513283965e-06,1.050463314470409543e-06,1.068267777427535121e-06,1.086072240384660700e-06,1.103876703341786278e-06,1.121681166298911856e-06 +0.000000000000000000e+00,1.750416491420354516e-08,3.500832982840709032e-08,5.251249474261063879e-08,7.001665965681419387e-08,8.752082457101774896e-08,1.050249894852213040e-07,1.225291543994248724e-07,1.400333193136284407e-07,1.575374842278320090e-07,1.750416491420355773e-07,1.925458140562391456e-07,2.100499789704427140e-07,2.275541438846462823e-07,2.450583087988498506e-07,2.625624737130534189e-07,2.800666386272569873e-07,2.975708035414605556e-07,3.150749684556641239e-07,3.325791333698676922e-07,3.500832982840712605e-07,3.675874631982748289e-07,3.850916281124783972e-07,4.025957930266819655e-07,4.200999579408855338e-07,4.376041228550891021e-07,4.551082877692926705e-07,4.726124526834962388e-07,4.901166175976998071e-07,5.076207825119033225e-07,5.251249474261068379e-07,5.426291123403103532e-07,5.601332772545138686e-07,5.776374421687173840e-07,5.951416070829208994e-07,6.126457719971244148e-07,6.301499369113279302e-07,6.476541018255314455e-07,6.651582667397349609e-07,6.826624316539384763e-07,7.001665965681419917e-07,7.176707614823455071e-07,7.351749263965490224e-07,7.526790913107525378e-07,7.701832562249560532e-07,7.876874211391595686e-07,8.051915860533630840e-07,8.226957509675665993e-07,8.401999158817701147e-07,8.577040807959736301e-07,8.752082457101771455e-07,8.927124106243806609e-07,9.102165755385841762e-07,9.277207404527876916e-07,9.452249053669912070e-07,9.627290702811947224e-07,9.802332351953981319e-07,9.977374001096015414e-07,1.015241565023804951e-06,1.032745729938008360e-06,1.050249894852211770e-06,1.067754059766415179e-06,1.085258224680618589e-06,1.102762389594821998e-06 +0.000000000000000000e+00,1.874121356498609728e-08,3.748242712997219455e-08,5.622364069495829183e-08,7.496485425994438911e-08,9.370606782493047976e-08,1.124472813899165704e-07,1.311884949549026611e-07,1.499297085198887517e-07,1.686709220848748424e-07,1.874121356498609331e-07,2.061533492148470237e-07,2.248945627798331144e-07,2.436357763448192315e-07,2.623769899098053751e-07,2.811182034747915187e-07,2.998594170397776623e-07,3.186006306047638059e-07,3.373418441697499495e-07,3.560830577347360931e-07,3.748242712997222367e-07,3.935654848647083803e-07,4.123066984296945239e-07,4.310479119946806675e-07,4.497891255596668111e-07,4.685303391246529547e-07,4.872715526896390983e-07,5.060127662546252419e-07,5.247539798196113855e-07,5.434951933845975291e-07,5.622364069495836727e-07,5.809776205145698163e-07,5.997188340795559599e-07,6.184600476445421035e-07,6.372012612095282471e-07,6.559424747745143907e-07,6.746836883395005343e-07,6.934249019044866779e-07,7.121661154694728215e-07,7.309073290344589651e-07,7.496485425994451087e-07,7.683897561644312523e-07,7.871309697294173959e-07,8.058721832944035395e-07,8.246133968593896831e-07,8.433546104243758267e-07,8.620958239893619703e-07,8.808370375543481139e-07,8.995782511193342575e-07,9.183194646843204011e-07,9.370606782493065447e-07,9.558018918142925824e-07,9.745431053792786201e-07,9.932843189442646578e-07,1.012025532509250696e-06,1.030766746074236733e-06,1.049507959639222771e-06,1.068249173204208809e-06,1.086990386769194846e-06,1.105731600334180884e-06,1.124472813899166922e-06,1.143214027464152960e-06,1.161955241029138997e-06,1.180696454594125035e-06 +0.000000000000000000e+00,1.860610488768995437e-08,3.721220977537990875e-08,5.581831466306986312e-08,7.442441955075981749e-08,9.303052443844977186e-08,1.116366293261397262e-07,1.302427342138296806e-07,1.488488391015196350e-07,1.674549439892095894e-07,1.860610488768995437e-07,2.046671537645894981e-07,2.232732586522794525e-07,2.418793635399693804e-07,2.604854684276593083e-07,2.790915733153492362e-07,2.976976782030391641e-07,3.163037830907290920e-07,3.349098879784190199e-07,3.535159928661089478e-07,3.721220977537988757e-07,3.907282026414888036e-07,4.093343075291787315e-07,4.279404124168686594e-07,4.465465173045585873e-07,4.651526221922485152e-07,4.837587270799384431e-07,5.023648319676283710e-07,5.209709368553182989e-07,5.395770417430082268e-07,5.581831466306981547e-07,5.767892515183880826e-07,5.953953564060780105e-07,6.140014612937679384e-07,6.326075661814578663e-07,6.512136710691477942e-07,6.698197759568377222e-07,6.884258808445276501e-07,7.070319857322175780e-07,7.256380906199075059e-07,7.442441955075974338e-07,7.628503003952873617e-07,7.814564052829772896e-07,8.000625101706672175e-07,8.186686150583571454e-07,8.372747199460470733e-07,8.558808248337370012e-07,8.744869297214269291e-07,8.930930346091168570e-07,9.116991394968067849e-07,9.303052443844967128e-07,9.489113492721866407e-07,9.675174541598766745e-07,9.861235590475666024e-07,1.004729663935256530e-06,1.023335768822946458e-06,1.041941873710636386e-06,1.060547978598326314e-06,1.079154083486016242e-06,1.097760188373706170e-06,1.116366293261396098e-06,1.134972398149086026e-06,1.153578503036775954e-06,1.172184607924465881e-06 +0.000000000000000000e+00,1.817584708807021856e-08,3.635169417614043712e-08,5.452754126421065899e-08,7.270338835228088748e-08,9.087923544035111597e-08,1.090550825284213445e-07,1.272309296164915862e-07,1.454067767045618279e-07,1.635826237926320696e-07,1.817584708807023114e-07,1.999343179687725531e-07,2.181101650568427948e-07,2.362860121449130365e-07,2.544618592329832782e-07,2.726377063210535200e-07,2.908135534091237617e-07,3.089894004971940034e-07,3.271652475852642451e-07,3.453410946733344869e-07,3.635169417614047286e-07,3.816927888494749703e-07,3.998686359375452120e-07,4.180444830256154538e-07,4.362203301136856955e-07,4.543961772017559372e-07,4.725720242898261789e-07,4.907478713778964736e-07,5.089237184659667682e-07,5.270995655540370629e-07,5.452754126421073576e-07,5.634512597301776522e-07,5.816271068182479469e-07,5.998029539063182416e-07,6.179788009943885362e-07,6.361546480824588309e-07,6.543304951705291255e-07,6.725063422585994202e-07,6.906821893466697149e-07,7.088580364347400095e-07,7.270338835228103042e-07,7.452097306108805989e-07,7.633855776989508935e-07,7.815614247870211882e-07,7.997372718750914829e-07,8.179131189631617775e-07,8.360889660512320722e-07,8.542648131393023668e-07,8.724406602273726615e-07,8.906165073154429562e-07,9.087923544035132508e-07,9.269682014915835455e-07,9.451440485796538402e-07,9.633198956677241348e-07,9.814957427557944295e-07,9.996715898438647241e-07,1.017847436931935019e-06,1.036023284020005313e-06,1.054199131108075608e-06,1.072374978196145903e-06,1.090550825284216197e-06,1.108726672372286492e-06,1.126902519460356787e-06,1.145078366548427081e-06 +0.000000000000000000e+00,1.957340279765096786e-08,3.914680559530193571e-08,5.872020839295290357e-08,7.829361119060387143e-08,9.786701398825483928e-08,1.174404167859058071e-07,1.370138195835567750e-07,1.565872223812077429e-07,1.761606251788587107e-07,1.957340279765096786e-07,2.153074307741606464e-07,2.348808335718116143e-07,2.544542363694626086e-07,2.740276391671136029e-07,2.936010419647645973e-07,3.131744447624155916e-07,3.327478475600665859e-07,3.523212503577175802e-07,3.718946531553685746e-07,3.914680559530195689e-07,4.110414587506705632e-07,4.306148615483215575e-07,4.501882643459725519e-07,4.697616671436235462e-07,4.893350699412745405e-07,5.089084727389255349e-07,5.284818755365765292e-07,5.480552783342275235e-07,5.676286811318785178e-07,5.872020839295295122e-07,6.067754867271805065e-07,6.263488895248315008e-07,6.459222923224824951e-07,6.654956951201334895e-07,6.850690979177844838e-07,7.046425007154354781e-07,7.242159035130864724e-07,7.437893063107374668e-07,7.633627091083884611e-07,7.829361119060394554e-07,8.025095147036904497e-07,8.220829175013414441e-07,8.416563202989924384e-07,8.612297230966434327e-07,8.808031258942944271e-07,9.003765286919454214e-07,9.199499314895964157e-07,9.395233342872474100e-07,9.590967370848982985e-07,9.786701398825492928e-07,9.982435426802002871e-07,1.017816945477851281e-06,1.037390348275502276e-06,1.056963751073153270e-06,1.076537153870804264e-06,1.096110556668455259e-06,1.115683959466106253e-06,1.135257362263757247e-06,1.154830765061408242e-06,1.174404167859059236e-06,1.193977570656710230e-06,1.213550973454361225e-06,1.233124376252012219e-06 +0.000000000000000000e+00,1.860610488770267972e-08,3.721220977540535944e-08,5.581831466310803916e-08,7.442441955081071888e-08,9.303052443851340521e-08,1.116366293262160916e-07,1.302427342139187779e-07,1.488488391016214642e-07,1.674549439893241506e-07,1.860610488770268369e-07,2.046671537647295232e-07,2.232732586524322096e-07,2.418793635401348694e-07,2.604854684278375028e-07,2.790915733155401362e-07,2.976976782032427696e-07,3.163037830909454030e-07,3.349098879786480364e-07,3.535159928663506698e-07,3.721220977540533032e-07,3.907282026417559366e-07,4.093343075294585700e-07,4.279404124171612034e-07,4.465465173048638368e-07,4.651526221925664702e-07,4.837587270802691036e-07,5.023648319679717370e-07,5.209709368556743704e-07,5.395770417433770038e-07,5.581831466310796372e-07,5.767892515187822706e-07,5.953953564064849040e-07,6.140014612941875374e-07,6.326075661818901708e-07,6.512136710695928042e-07,6.698197759572954376e-07,6.884258808449980710e-07,7.070319857327007044e-07,7.256380906204033378e-07,7.442441955081059712e-07,7.628503003958086046e-07,7.814564052835112380e-07,8.000625101712138714e-07,8.186686150589165048e-07,8.372747199466191382e-07,8.558808248343217716e-07,8.744869297220244050e-07,8.930930346097270383e-07,9.116991394974296717e-07,9.303052443851323051e-07,9.489113492728349385e-07,9.675174541605375719e-07,9.861235590482402053e-07,1.004729663935942839e-06,1.023335768823645472e-06,1.041941873711348106e-06,1.060547978599050739e-06,1.079154083486753372e-06,1.097760188374456006e-06,1.116366293262158639e-06,1.134972398149861273e-06,1.153578503037563906e-06,1.172184607925266539e-06 +0.000000000000000000e+00,1.817584708808359904e-08,3.635169417616719807e-08,5.452754126425080042e-08,7.270338835233440938e-08,9.087923544041801834e-08,1.090550825285016273e-07,1.272309296165852363e-07,1.454067767046688452e-07,1.635826237927524542e-07,1.817584708808360631e-07,1.999343179689196721e-07,2.181101650570032811e-07,2.362860121450868900e-07,2.544618592331704725e-07,2.726377063212540550e-07,2.908135534093376375e-07,3.089894004974212200e-07,3.271652475855048025e-07,3.453410946735883850e-07,3.635169417616719675e-07,3.816927888497555500e-07,3.998686359378391325e-07,4.180444830259227150e-07,4.362203301140062974e-07,4.543961772020898799e-07,4.725720242901734624e-07,4.907478713782570979e-07,5.089237184663407333e-07,5.270995655544243687e-07,5.452754126425080042e-07,5.634512597305916396e-07,5.816271068186752750e-07,5.998029539067589105e-07,6.179788009948425459e-07,6.361546480829261813e-07,6.543304951710098167e-07,6.725063422590934522e-07,6.906821893471770876e-07,7.088580364352607230e-07,7.270338835233443585e-07,7.452097306114279939e-07,7.633855776995116293e-07,7.815614247875952648e-07,7.997372718756789002e-07,8.179131189637625356e-07,8.360889660518461711e-07,8.542648131399298065e-07,8.724406602280134419e-07,8.906165073160970774e-07,9.087923544041807128e-07,9.269682014922643482e-07,9.451440485803479837e-07,9.633198956684316191e-07,9.814957427565152545e-07,9.996715898445988899e-07,1.017847436932682525e-06,1.036023284020766161e-06,1.054199131108849796e-06,1.072374978196933432e-06,1.090550825285017067e-06,1.108726672373100703e-06,1.126902519461184338e-06,1.145078366549267973e-06 +0.000000000000000000e+00,1.957340279766388180e-08,3.914680559532776360e-08,5.872020839299164209e-08,7.829361119065551397e-08,9.786701398831938584e-08,1.174404167859832577e-07,1.370138195836471164e-07,1.565872223813109750e-07,1.761606251789748336e-07,1.957340279766386923e-07,2.153074307743025509e-07,2.348808335719664096e-07,2.544542363696302682e-07,2.740276391672941268e-07,2.936010419649579855e-07,3.131744447626218441e-07,3.327478475602857027e-07,3.523212503579495614e-07,3.718946531556134200e-07,3.914680559532772787e-07,4.110414587509411373e-07,4.306148615486049959e-07,4.501882643462688546e-07,4.697616671439327132e-07,4.893350699415965189e-07,5.089084727392603246e-07,5.284818755369241303e-07,5.480552783345879360e-07,5.676286811322517417e-07,5.872020839299155474e-07,6.067754867275793531e-07,6.263488895252431588e-07,6.459222923229069645e-07,6.654956951205707702e-07,6.850690979182345759e-07,7.046425007158983816e-07,7.242159035135621873e-07,7.437893063112259930e-07,7.633627091088897987e-07,7.829361119065536044e-07,8.025095147042174101e-07,8.220829175018812158e-07,8.416563202995450215e-07,8.612297230972088272e-07,8.808031258948726329e-07,9.003765286925364386e-07,9.199499314902002443e-07,9.395233342878640500e-07,9.590967370855278557e-07,9.786701398831917673e-07,9.982435426808556789e-07,1.017816945478519590e-06,1.037390348276183502e-06,1.056963751073847414e-06,1.076537153871511325e-06,1.096110556669175237e-06,1.115683959466839148e-06,1.135257362264503060e-06,1.154830765062166972e-06,1.174404167859830883e-06,1.193977570657494795e-06,1.213550973455158706e-06,1.233124376252822618e-06 +0.000000000000000000e+00,1.959679180156558475e-08,3.919358360313116950e-08,5.879037540469675425e-08,7.838716720626233901e-08,9.798395900782793038e-08,1.175807508093935217e-07,1.371775426109591131e-07,1.567743344125247045e-07,1.763711262140902959e-07,1.959679180156558872e-07,2.155647098172214786e-07,2.351615016187870700e-07,2.547582934203526878e-07,2.743550852219182792e-07,2.939518770234838705e-07,3.135486688250494619e-07,3.331454606266150533e-07,3.527422524281806446e-07,3.723390442297462360e-07,3.919358360313118274e-07,4.115326278328774188e-07,4.311294196344430101e-07,4.507262114360086015e-07,4.703230032375741929e-07,4.899197950391397842e-07,5.095165868407053756e-07,5.291133786422709670e-07,5.487101704438365583e-07,5.683069622454021497e-07,5.879037540469677411e-07,6.075005458485333324e-07,6.270973376500989238e-07,6.466941294516645152e-07,6.662909212532301065e-07,6.858877130547956979e-07,7.054845048563612893e-07,7.250812966579268807e-07,7.446780884594924720e-07,7.642748802610580634e-07,7.838716720626236548e-07,8.034684638641892461e-07,8.230652556657548375e-07,8.426620474673204289e-07,8.622588392688860202e-07,8.818556310704516116e-07,9.014524228720172030e-07,9.210492146735827943e-07,9.406460064751483857e-07,9.602427982767139771e-07,9.798395900782795685e-07,9.994363818798451598e-07,1.019033173681410751e-06,1.038629965482976343e-06,1.058226757284541934e-06,1.077823549086107525e-06,1.097420340887673117e-06,1.117017132689238708e-06,1.136613924490804299e-06,1.156210716292369891e-06,1.175807508093935482e-06,1.195404299895501074e-06,1.215001091697066665e-06,1.234597883498632256e-06 +0.000000000000000000e+00,1.908266174715046214e-08,3.816532349430092428e-08,5.724798524145138311e-08,7.633064698860183533e-08,9.541330873575228754e-08,1.144959704829027398e-07,1.335786322300531920e-07,1.526612939772036442e-07,1.717439557243540964e-07,1.908266174715045486e-07,2.099092792186550008e-07,2.289919409658054530e-07,2.480746027129558788e-07,2.671572644601063310e-07,2.862399262072567832e-07,3.053225879544072354e-07,3.244052497015576876e-07,3.434879114487081399e-07,3.625705731958585921e-07,3.816532349430090443e-07,4.007358966901594965e-07,4.198185584373099487e-07,4.389012201844604009e-07,4.579838819316108531e-07,4.770665436787613054e-07,4.961492054259117576e-07,5.152318671730622098e-07,5.343145289202126620e-07,5.533971906673631142e-07,5.724798524145135664e-07,5.915625141616640186e-07,6.106451759088144709e-07,6.297278376559649231e-07,6.488104994031153753e-07,6.678931611502658275e-07,6.869758228974162797e-07,7.060584846445667319e-07,7.251411463917171841e-07,7.442238081388676363e-07,7.633064698860180886e-07,7.823891316331685408e-07,8.014717933803189930e-07,8.205544551274694452e-07,8.396371168746198974e-07,8.587197786217703496e-07,8.778024403689208018e-07,8.968851021160712541e-07,9.159677638632217063e-07,9.350504256103721585e-07,9.541330873575226107e-07,9.732157491046730629e-07,9.922984108518235151e-07,1.011381072598973967e-06,1.030463734346124420e-06,1.049546396093274872e-06,1.068629057840425324e-06,1.087711719587575776e-06,1.106794381334726228e-06,1.125877043081876681e-06,1.144959704829027133e-06,1.164042366576177585e-06,1.183125028323328037e-06,1.202207690070478489e-06 +0.000000000000000000e+00,2.062566161596465550e-08,4.125132323192931100e-08,6.187698484789396980e-08,8.250264646385863523e-08,1.031283080798233007e-07,1.237539696957879661e-07,1.443796313117526315e-07,1.650052929277172969e-07,1.856309545436819623e-07,2.062566161596466278e-07,2.268822777756112932e-07,2.475079393915759851e-07,2.681336010075406505e-07,2.887592626235053159e-07,3.093849242394699814e-07,3.300105858554346468e-07,3.506362474713993122e-07,3.712619090873639776e-07,3.918875707033286431e-07,4.125132323192933085e-07,4.331388939352579739e-07,4.537645555512226393e-07,4.743902171671873048e-07,4.950158787831519702e-07,5.156415403991166356e-07,5.362672020150813010e-07,5.568928636310459665e-07,5.775185252470106319e-07,5.981441868629752973e-07,6.187698484789399627e-07,6.393955100949046282e-07,6.600211717108692936e-07,6.806468333268339590e-07,7.012724949427986244e-07,7.218981565587632899e-07,7.425238181747279553e-07,7.631494797906926207e-07,7.837751414066572861e-07,8.044008030226219516e-07,8.250264646385866170e-07,8.456521262545512824e-07,8.662777878705159478e-07,8.869034494864806132e-07,9.075291111024452787e-07,9.281547727184099441e-07,9.487804343343746095e-07,9.694060959503393808e-07,9.900317575663041521e-07,1.010657419182268923e-06,1.031283080798233695e-06,1.051908742414198466e-06,1.072534404030163237e-06,1.093160065646128009e-06,1.113785727262092780e-06,1.134411388878057551e-06,1.155037050494022323e-06,1.175662712109987094e-06,1.196288373725951865e-06,1.216914035341916636e-06,1.237539696957881408e-06,1.258165358573846179e-06,1.278791020189810950e-06,1.299416681805775722e-06 +0.000000000000000000e+00,1.959679180157726454e-08,3.919358360315452908e-08,5.879037540473179363e-08,7.838716720630905817e-08,9.798395900788632271e-08,1.175807508094635873e-07,1.371775426110408518e-07,1.567743344126181163e-07,1.763711262141953809e-07,1.959679180157726454e-07,2.155647098173499100e-07,2.351615016189271745e-07,2.547582934205044126e-07,2.743550852220816506e-07,2.939518770236588887e-07,3.135486688252361268e-07,3.331454606268133649e-07,3.527422524283906029e-07,3.723390442299678410e-07,3.919358360315450791e-07,4.115326278331223172e-07,4.311294196346995552e-07,4.507262114362767933e-07,4.703230032378540314e-07,4.899197950394312694e-07,5.095165868410085075e-07,5.291133786425857456e-07,5.487101704441629837e-07,5.683069622457402217e-07,5.879037540473174598e-07,6.075005458488946979e-07,6.270973376504719359e-07,6.466941294520491740e-07,6.662909212536264121e-07,6.858877130552036502e-07,7.054845048567808882e-07,7.250812966583581263e-07,7.446780884599353644e-07,7.642748802615126025e-07,7.838716720630898405e-07,8.034684638646670786e-07,8.230652556662443167e-07,8.426620474678215547e-07,8.622588392693987928e-07,8.818556310709760309e-07,9.014524228725532690e-07,9.210492146741305070e-07,9.406460064757077451e-07,9.602427982772848773e-07,9.798395900788619036e-07,9.994363818804389299e-07,1.019033173682015956e-06,1.038629965483592983e-06,1.058226757285170009e-06,1.077823549086747035e-06,1.097420340888324061e-06,1.117017132689901088e-06,1.136613924491478114e-06,1.156210716293055140e-06,1.175807508094632167e-06,1.195404299896209193e-06,1.215001091697786219e-06,1.234597883499363246e-06 +0.000000000000000000e+00,1.908266174716263162e-08,3.816532349432526324e-08,5.724798524148789817e-08,7.633064698865053972e-08,9.541330873581318127e-08,1.144959704829758228e-07,1.335786322301384511e-07,1.526612939773010794e-07,1.717439557244637078e-07,1.908266174716263361e-07,2.099092792187889644e-07,2.289919409659515927e-07,2.480746027131142210e-07,2.671572644602768493e-07,2.862399262074394776e-07,3.053225879546021059e-07,3.244052497017647343e-07,3.434879114489273626e-07,3.625705731960899909e-07,3.816532349432526192e-07,4.007358966904152475e-07,4.198185584375778758e-07,4.389012201847405041e-07,4.579838819319031324e-07,4.770665436790658137e-07,4.961492054262285479e-07,5.152318671733912821e-07,5.343145289205540163e-07,5.533971906677167505e-07,5.724798524148794847e-07,5.915625141620422188e-07,6.106451759092049530e-07,6.297278376563676872e-07,6.488104994035304214e-07,6.678931611506931556e-07,6.869758228978558898e-07,7.060584846450186240e-07,7.251411463921813582e-07,7.442238081393440924e-07,7.633064698865068266e-07,7.823891316336695608e-07,8.014717933808322950e-07,8.205544551279950292e-07,8.396371168751577633e-07,8.587197786223204975e-07,8.778024403694832317e-07,8.968851021166459659e-07,9.159677638638087001e-07,9.350504256109714343e-07,9.541330873581341685e-07,9.732157491052969027e-07,9.922984108524596369e-07,1.011381072599622371e-06,1.030463734346785105e-06,1.049546396093947839e-06,1.068629057841110574e-06,1.087711719588273308e-06,1.106794381335436042e-06,1.125877043082598776e-06,1.144959704829761510e-06,1.164042366576924245e-06,1.183125028324086979e-06,1.202207690071249713e-06 +0.000000000000000000e+00,2.062566161597662315e-08,4.125132323195324629e-08,6.187698484792986282e-08,8.250264646390647935e-08,1.031283080798830959e-07,1.237539696958597256e-07,1.443796313118363554e-07,1.650052929278129852e-07,1.856309545437896149e-07,2.062566161597662447e-07,2.268822777757428745e-07,2.475079393917195042e-07,2.681336010076961340e-07,2.887592626236727638e-07,3.093849242396493935e-07,3.300105858556260233e-07,3.506362474716026531e-07,3.712619090875792828e-07,3.918875707035559126e-07,4.125132323195325424e-07,4.331388939355091721e-07,4.537645555514858019e-07,4.743902171674624316e-07,4.950158787834391144e-07,5.156415403994157441e-07,5.362672020153923739e-07,5.568928636313690036e-07,5.775185252473456334e-07,5.981441868633222632e-07,6.187698484792988929e-07,6.393955100952755227e-07,6.600211717112521525e-07,6.806468333272287822e-07,7.012724949432054120e-07,7.218981565591820418e-07,7.425238181751586715e-07,7.631494797911353013e-07,7.837751414071119311e-07,8.044008030230885608e-07,8.250264646390651906e-07,8.456521262550418204e-07,8.662777878710184501e-07,8.869034494869950799e-07,9.075291111029717096e-07,9.281547727189483394e-07,9.487804343349249692e-07,9.694060959509015989e-07,9.900317575668782287e-07,1.010657419182854858e-06,1.031283080798831488e-06,1.051908742414808118e-06,1.072534404030784748e-06,1.093160065646761378e-06,1.113785727262738007e-06,1.134411388878714637e-06,1.155037050494691267e-06,1.175662712110667897e-06,1.196288373726644526e-06,1.216914035342621156e-06,1.237539696958597786e-06,1.258165358574574416e-06,1.278791020190551045e-06,1.299416681806527675e-06 +0.000000000000000000e+00,2.069199564610809573e-08,4.138399129221619146e-08,6.207598693832428719e-08,8.276798258443238292e-08,1.034599782305404787e-07,1.241519738766485744e-07,1.448439695227566701e-07,1.655359651688647658e-07,1.862279608149728616e-07,2.069199564610809573e-07,2.276119521071890530e-07,2.483039477532971488e-07,2.689959433994052445e-07,2.896879390455133402e-07,3.103799346916214360e-07,3.310719303377295317e-07,3.517639259838376274e-07,3.724559216299457231e-07,3.931479172760538189e-07,4.138399129221619146e-07,4.345319085682700103e-07,4.552239042143781061e-07,4.759158998604862018e-07,4.966078955065942975e-07,5.172998911527023933e-07,5.379918867988104890e-07,5.586838824449185847e-07,5.793758780910266804e-07,6.000678737371347762e-07,6.207598693832428719e-07,6.414518650293509676e-07,6.621438606754590634e-07,6.828358563215671591e-07,7.035278519676752548e-07,7.242198476137833506e-07,7.449118432598914463e-07,7.656038389059995420e-07,7.862958345521076377e-07,8.069878301982157335e-07,8.276798258443238292e-07,8.483718214904319249e-07,8.690638171365400207e-07,8.897558127826481164e-07,9.104478084287562121e-07,9.311398040748643079e-07,9.518317997209724036e-07,9.725237953670803934e-07,9.932157910131883833e-07,1.013907786659296373e-06,1.034599782305404363e-06,1.055291777951512353e-06,1.075983773597620343e-06,1.096675769243728333e-06,1.117367764889836322e-06,1.138059760535944312e-06,1.158751756182052302e-06,1.179443751828160292e-06,1.200135747474268282e-06,1.220827743120376272e-06,1.241519738766484261e-06,1.262211734412592251e-06,1.282903730058700241e-06,1.303595725704808231e-06 +0.000000000000000000e+00,2.013617202558410179e-08,4.027234405116820357e-08,6.040851607675230205e-08,8.054468810233639391e-08,1.006808601279204858e-07,1.208170321535045776e-07,1.409532041790886827e-07,1.610893762046727878e-07,1.812255482302568929e-07,2.013617202558409980e-07,2.214978922814251031e-07,2.416340643070092082e-07,2.617702363325933133e-07,2.819064083581774184e-07,3.020425803837615235e-07,3.221787524093456286e-07,3.423149244349297337e-07,3.624510964605138388e-07,3.825872684860979439e-07,4.027234405116820490e-07,4.228596125372661541e-07,4.429957845628502592e-07,4.631319565884343643e-07,4.832681286140185223e-07,5.034043006396026803e-07,5.235404726651868384e-07,5.436766446907709964e-07,5.638128167163551544e-07,5.839489887419393125e-07,6.040851607675234705e-07,6.242213327931076285e-07,6.443575048186917866e-07,6.644936768442759446e-07,6.846298488698601026e-07,7.047660208954442607e-07,7.249021929210284187e-07,7.450383649466125768e-07,7.651745369721967348e-07,7.853107089977808928e-07,8.054468810233650509e-07,8.255830530489492089e-07,8.457192250745333669e-07,8.658553971001175250e-07,8.859915691257016830e-07,9.061277411512858410e-07,9.262639131768699991e-07,9.464000852024541571e-07,9.665362572280383151e-07,9.866724292536224732e-07,1.006808601279206631e-06,1.026944773304790789e-06,1.047080945330374947e-06,1.067217117355959105e-06,1.087353289381543263e-06,1.107489461407127421e-06,1.127625633432711579e-06,1.147761805458295737e-06,1.167897977483879895e-06,1.188034149509464054e-06,1.208170321535048212e-06,1.228306493560632370e-06,1.248442665586216528e-06,1.268578837611800686e-06 +0.000000000000000000e+00,2.182914589102880106e-08,4.365829178205760212e-08,6.548743767308639988e-08,8.731658356411519101e-08,1.091457294551439821e-07,1.309748753461727733e-07,1.528040212372015644e-07,1.746331671282303556e-07,1.964623130192591467e-07,2.182914589102879378e-07,2.401206048013167025e-07,2.619497506923454936e-07,2.837788965833742848e-07,3.056080424744030759e-07,3.274371883654318670e-07,3.492663342564606582e-07,3.710954801474894493e-07,3.929246260385182404e-07,4.147537719295470316e-07,4.365829178205758227e-07,4.584120637116046139e-07,4.802412096026334050e-07,5.020703554936621961e-07,5.238995013846909873e-07,5.457286472757197784e-07,5.675577931667485695e-07,5.893869390577773607e-07,6.112160849488061518e-07,6.330452308398349429e-07,6.548743767308637341e-07,6.767035226218925252e-07,6.985326685129213163e-07,7.203618144039501075e-07,7.421909602949788986e-07,7.640201061860076898e-07,7.858492520770364809e-07,8.076783979680652720e-07,8.295075438590940632e-07,8.513366897501228543e-07,8.731658356411516454e-07,8.949949815321804366e-07,9.168241274232092277e-07,9.386532733142380188e-07,9.604824192052668100e-07,9.823115650962956011e-07,1.004140710987324392e-06,1.025969856878353183e-06,1.047799002769381975e-06,1.069628148660410766e-06,1.091457294551439557e-06,1.113286440442468348e-06,1.135115586333497139e-06,1.156944732224525930e-06,1.178773878115554721e-06,1.200603024006583512e-06,1.222432169897612304e-06,1.244261315788641095e-06,1.266090461679669886e-06,1.287919607570698677e-06,1.309748753461727468e-06,1.331577899352756259e-06,1.353407045243785050e-06,1.375236191134813842e-06 +0.000000000000000000e+00,2.069199564611893180e-08,4.138399129223786359e-08,6.207598693835679208e-08,8.276798258447571395e-08,1.034599782305946358e-07,1.241519738767135577e-07,1.448439695228324796e-07,1.655359651689514014e-07,1.862279608150703233e-07,2.069199564611892452e-07,2.276119521073081670e-07,2.483039477534270624e-07,2.689959433995459578e-07,2.896879390456648532e-07,3.103799346917837486e-07,3.310719303379026440e-07,3.517639259840215394e-07,3.724559216301404348e-07,3.931479172762593302e-07,4.138399129223782256e-07,4.345319085684971210e-07,4.552239042146160164e-07,4.759158998607349118e-07,4.966078955068538072e-07,5.172998911529727026e-07,5.379918867990915980e-07,5.586838824452104934e-07,5.793758780913293888e-07,6.000678737374482842e-07,6.207598693835671796e-07,6.414518650296860750e-07,6.621438606758049704e-07,6.828358563219238658e-07,7.035278519680427612e-07,7.242198476141616566e-07,7.449118432602805520e-07,7.656038389063994474e-07,7.862958345525183428e-07,8.069878301986372382e-07,8.276798258447561336e-07,8.483718214908750290e-07,8.690638171369939244e-07,8.897558127831128198e-07,9.104478084292317152e-07,9.311398040753506106e-07,9.518317997214695060e-07,9.725237953675884014e-07,9.932157910137074027e-07,1.013907786659826404e-06,1.034599782305945405e-06,1.055291777952064407e-06,1.075983773598183408e-06,1.096675769244302409e-06,1.117367764890421410e-06,1.138059760536540412e-06,1.158751756182659413e-06,1.179443751828778414e-06,1.200135747474897416e-06,1.220827743121016417e-06,1.241519738767135418e-06,1.262211734413254419e-06,1.282903730059373421e-06,1.303595725705492422e-06 +0.000000000000000000e+00,2.013617202559525880e-08,4.027234405119051760e-08,6.040851607678577309e-08,8.054468810238102196e-08,1.006808601279762708e-07,1.208170321535715197e-07,1.409532041791667686e-07,1.610893762047620175e-07,1.812255482303572663e-07,2.013617202559525152e-07,2.214978922815477641e-07,2.416340643071429865e-07,2.617702363327382089e-07,2.819064083583334313e-07,3.020425803839286537e-07,3.221787524095238761e-07,3.423149244351190985e-07,3.624510964607143209e-07,3.825872684863095433e-07,4.027234405119047657e-07,4.228596125374999881e-07,4.429957845630952105e-07,4.631319565886904329e-07,4.832681286142856553e-07,5.034043006398809307e-07,5.235404726654762060e-07,5.436766446910714813e-07,5.638128167166667567e-07,5.839489887422620320e-07,6.040851607678573074e-07,6.242213327934525827e-07,6.443575048190478581e-07,6.644936768446431334e-07,6.846298488702384087e-07,7.047660208958336841e-07,7.249021929214289594e-07,7.450383649470242348e-07,7.651745369726195101e-07,7.853107089982147855e-07,8.054468810238100608e-07,8.255830530494053361e-07,8.457192250750006115e-07,8.658553971005958868e-07,8.859915691261911622e-07,9.061277411517864375e-07,9.262639131773817129e-07,9.464000852029769882e-07,9.665362572285723694e-07,9.866724292541677506e-07,1.006808601279763132e-06,1.026944773305358513e-06,1.047080945330953894e-06,1.067217117356549276e-06,1.087353289382144657e-06,1.107489461407740038e-06,1.127625633433335419e-06,1.147761805458930800e-06,1.167897977484526182e-06,1.188034149510121563e-06,1.208170321535716944e-06,1.228306493561312325e-06,1.248442665586907707e-06,1.268578837612503088e-06 +0.000000000000000000e+00,2.182914589104002425e-08,4.365829178208004850e-08,6.548743767312006944e-08,8.731658356416008376e-08,1.091457294552000981e-07,1.309748753462401124e-07,1.528040212372801267e-07,1.746331671283201410e-07,1.964623130193601554e-07,2.182914589104001697e-07,2.401206048014401575e-07,2.619497506924801719e-07,2.837788965835201862e-07,3.056080424745602005e-07,3.274371883656002148e-07,3.492663342566402292e-07,3.710954801476802435e-07,3.929246260387202578e-07,4.147537719297602721e-07,4.365829178208002864e-07,4.584120637118403008e-07,4.802412096028803151e-07,5.020703554939203294e-07,5.238995013849603437e-07,5.457286472760003581e-07,5.675577931670403724e-07,5.893869390580803867e-07,6.112160849491204010e-07,6.330452308401604153e-07,6.548743767312004297e-07,6.767035226222404440e-07,6.985326685132804583e-07,7.203618144043204726e-07,7.421909602953604870e-07,7.640201061864005013e-07,7.858492520774405156e-07,8.076783979684805299e-07,8.295075438595205443e-07,8.513366897505605586e-07,8.731658356416005729e-07,8.949949815326405872e-07,9.168241274236806015e-07,9.386532733147206159e-07,9.604824192057606302e-07,9.823115650968006445e-07,1.004140710987840659e-06,1.025969856878880673e-06,1.047799002769920687e-06,1.069628148660960702e-06,1.091457294552000716e-06,1.113286440443040730e-06,1.135115586334080745e-06,1.156944732225120759e-06,1.178773878116160773e-06,1.200603024007200788e-06,1.222432169898240802e-06,1.244261315789280816e-06,1.266090461680320831e-06,1.287919607571360845e-06,1.309748753462400859e-06,1.331577899353440874e-06,1.353407045244480888e-06,1.375236191135520902e-06 +0.000000000000000000e+00,2.181042690264422528e-08,4.362085380528845056e-08,6.543128070793267584e-08,8.724170761057690112e-08,1.090521345132211264e-07,1.308625614158653517e-07,1.526729883185095770e-07,1.744834152211538022e-07,1.962938421237980275e-07,2.181042690264422528e-07,2.399146959290864781e-07,2.617251228317307034e-07,2.835355497343749286e-07,3.053459766370191539e-07,3.271564035396633792e-07,3.489668304423076045e-07,3.707772573449518298e-07,3.925876842475960550e-07,4.143981111502402803e-07,4.362085380528845056e-07,4.580189649555287309e-07,4.798293918581729562e-07,5.016398187608171815e-07,5.234502456634614067e-07,5.452606725661056320e-07,5.670710994687498573e-07,5.888815263713940826e-07,6.106919532740383079e-07,6.325023801766825331e-07,6.543128070793267584e-07,6.761232339819709837e-07,6.979336608846152090e-07,7.197440877872594343e-07,7.415545146899036595e-07,7.633649415925478848e-07,7.851753684951921101e-07,8.069857953978363354e-07,8.287962223004805607e-07,8.506066492031247859e-07,8.724170761057690112e-07,8.942275030084132365e-07,9.160379299110574618e-07,9.378483568137016871e-07,9.596587837163459123e-07,9.814692106189902435e-07,1.003279637521634575e-06,1.025090064424278906e-06,1.046900491326923237e-06,1.068710918229567568e-06,1.090521345132211899e-06,1.112331772034856230e-06,1.134142198937500562e-06,1.155952625840144893e-06,1.177763052742789224e-06,1.199573479645433555e-06,1.221383906548077886e-06,1.243194333450722217e-06,1.265004760353366549e-06,1.286815187256010880e-06,1.308625614158655211e-06,1.330436041061299542e-06,1.352246467963943873e-06,1.374056894866588204e-06 +0.000000000000000000e+00,2.125303106136055074e-08,4.250606212272110148e-08,6.375909318408164891e-08,8.501212424544218973e-08,1.062651553068027305e-07,1.275181863681632714e-07,1.487712174295238122e-07,1.700242484908843530e-07,1.912772795522448938e-07,2.125303106136054346e-07,2.337833416749659754e-07,2.550363727363264898e-07,2.762894037976870306e-07,2.975424348590475714e-07,3.187954659204081122e-07,3.400484969817686530e-07,3.613015280431291939e-07,3.825545591044897347e-07,4.038075901658502755e-07,4.250606212272108163e-07,4.463136522885713571e-07,4.675666833499318979e-07,4.888197144112924387e-07,5.100727454726529796e-07,5.313257765340135204e-07,5.525788075953740612e-07,5.738318386567346020e-07,5.950848697180951428e-07,6.163379007794556836e-07,6.375909318408162244e-07,6.588439629021767653e-07,6.800969939635373061e-07,7.013500250248978469e-07,7.226030560862583877e-07,7.438560871476189285e-07,7.651091182089794693e-07,7.863621492703400101e-07,8.076151803317005510e-07,8.288682113930610918e-07,8.501212424544216326e-07,8.713742735157821734e-07,8.926273045771427142e-07,9.138803356385032550e-07,9.351333666998637958e-07,9.563863977612242308e-07,9.776394288225846657e-07,9.988924598839451007e-07,1.020145490945305536e-06,1.041398522006665971e-06,1.062651553068026405e-06,1.083904584129386840e-06,1.105157615190747275e-06,1.126410646252107710e-06,1.147663677313468145e-06,1.168916708374828580e-06,1.190169739436189015e-06,1.211422770497549450e-06,1.232675801558909885e-06,1.253928832620270320e-06,1.275181863681630755e-06,1.296434894742991190e-06,1.317687925804351625e-06,1.338940956865712060e-06 +0.000000000000000000e+00,2.310799309630415071e-08,4.621598619260830143e-08,6.932397928891245214e-08,9.243197238521660285e-08,1.155399654815207536e-07,1.386479585778249043e-07,1.617559516741290550e-07,1.848639447704332057e-07,2.079719378667373564e-07,2.310799309630415071e-07,2.541879240593456314e-07,2.772959171556497556e-07,3.004039102519538799e-07,3.235119033482580041e-07,3.466198964445621283e-07,3.697278895408662526e-07,3.928358826371703768e-07,4.159438757334745011e-07,4.390518688297786253e-07,4.621598619260827496e-07,4.852678550223868738e-07,5.083758481186910510e-07,5.314838412149952282e-07,5.545918343112994054e-07,5.776998274076035825e-07,6.008078205039077597e-07,6.239158136002119369e-07,6.470238066965161141e-07,6.701317997928202913e-07,6.932397928891244685e-07,7.163477859854286456e-07,7.394557790817328228e-07,7.625637721780370000e-07,7.856717652743411772e-07,8.087797583706453544e-07,8.318877514669495316e-07,8.549957445632537087e-07,8.781037376595578859e-07,9.012117307558620631e-07,9.243197238521662403e-07,9.474277169484704175e-07,9.705357100447745947e-07,9.936437031410787718e-07,1.016751696237382949e-06,1.039859689333687126e-06,1.062967682429991303e-06,1.086075675526295481e-06,1.109183668622599658e-06,1.132291661718903835e-06,1.155399654815208012e-06,1.178507647911512189e-06,1.201615641007816366e-06,1.224723634104120544e-06,1.247831627200424721e-06,1.270939620296728898e-06,1.294047613393033075e-06,1.317155606489337252e-06,1.340263599585641430e-06,1.363371592681945607e-06,1.386479585778249784e-06,1.409587578874553961e-06,1.432695571970858138e-06,1.455803565067162315e-06 +0.000000000000000000e+00,2.181042690265483635e-08,4.362085380530967271e-08,6.543128070796450575e-08,8.724170761061933218e-08,1.090521345132741586e-07,1.308625614159289850e-07,1.526729883185837982e-07,1.744834152212386114e-07,1.962938421238934246e-07,2.181042690265482378e-07,2.399146959292030510e-07,2.617251228318578642e-07,2.835355497345126774e-07,3.053459766371674906e-07,3.271564035398223038e-07,3.489668304424771170e-07,3.707772573451319301e-07,3.925876842477867433e-07,4.143981111504415565e-07,4.362085380530963697e-07,4.580189649557511829e-07,4.798293918584059961e-07,5.016398187610608093e-07,5.234502456637156225e-07,5.452606725663704357e-07,5.670710994690252489e-07,5.888815263716800621e-07,6.106919532743348753e-07,6.325023801769896885e-07,6.543128070796445016e-07,6.761232339822993148e-07,6.979336608849541280e-07,7.197440877876089412e-07,7.415545146902637544e-07,7.633649415929185676e-07,7.851753684955733808e-07,8.069857953982281940e-07,8.287962223008830072e-07,8.506066492035378204e-07,8.724170761061926336e-07,8.942275030088474468e-07,9.160379299115022600e-07,9.378483568141570731e-07,9.596587837168117805e-07,9.814692106194664878e-07,1.003279637522121195e-06,1.025090064424775902e-06,1.046900491327430610e-06,1.068710918230085317e-06,1.090521345132740024e-06,1.112331772035394732e-06,1.134142198938049439e-06,1.155952625840704146e-06,1.177763052743358854e-06,1.199573479646013561e-06,1.221383906548668268e-06,1.243194333451322976e-06,1.265004760353977683e-06,1.286815187256632390e-06,1.308625614159287097e-06,1.330436041061941805e-06,1.352246467964596512e-06,1.374056894867251219e-06 +0.000000000000000000e+00,2.125303106137120152e-08,4.250606212274240304e-08,6.375909318411359794e-08,8.501212424548479284e-08,1.062651553068559877e-07,1.275181863682271959e-07,1.487712174295984040e-07,1.700242484909696121e-07,1.912772795523408203e-07,2.125303106137120284e-07,2.337833416750832366e-07,2.550363727364544447e-07,2.762894037978256264e-07,2.975424348591968080e-07,3.187954659205679897e-07,3.400484969819391714e-07,3.613015280433103530e-07,3.825545591046815347e-07,4.038075901660527164e-07,4.250606212274238980e-07,4.463136522887950797e-07,4.675666833501662614e-07,4.888197144115374430e-07,5.100727454729085717e-07,5.313257765342797005e-07,5.525788075956508292e-07,5.738318386570219579e-07,5.950848697183930867e-07,6.163379007797642154e-07,6.375909318411353441e-07,6.588439629025064728e-07,6.800969939638776016e-07,7.013500250252487303e-07,7.226030560866198590e-07,7.438560871479909877e-07,7.651091182093621165e-07,7.863621492707332452e-07,8.076151803321043739e-07,8.288682113934755026e-07,8.501212424548466314e-07,8.713742735162177601e-07,8.926273045775888888e-07,9.138803356389600176e-07,9.351333667003311463e-07,9.563863977617023809e-07,9.776394288230736155e-07,9.988924598844448501e-07,1.020145490945816085e-06,1.041398522007187319e-06,1.062651553068558554e-06,1.083904584129929789e-06,1.105157615191301023e-06,1.126410646252672258e-06,1.147663677314043492e-06,1.168916708375414727e-06,1.190169739436785962e-06,1.211422770498157196e-06,1.232675801559528431e-06,1.253928832620899665e-06,1.275181863682270900e-06,1.296434894743642135e-06,1.317687925805013369e-06,1.338940956866384604e-06 +0.000000000000000000e+00,2.310799309631519192e-08,4.621598619263038384e-08,6.932397928894557907e-08,9.243197238526078092e-08,1.155399654815759828e-07,1.386479585778911846e-07,1.617559516742063732e-07,1.848639447705215618e-07,2.079719378668367504e-07,2.310799309631519391e-07,2.541879240594671277e-07,2.772959171557823163e-07,3.004039102520975049e-07,3.235119033484126935e-07,3.466198964447278821e-07,3.697278895410430707e-07,3.928358826373582593e-07,4.159438757336734479e-07,4.390518688299886366e-07,4.621598619263038252e-07,4.852678550226189608e-07,5.083758481189341494e-07,5.314838412152493381e-07,5.545918343115645267e-07,5.776998274078797153e-07,6.008078205041949039e-07,6.239158136005100925e-07,6.470238066968252811e-07,6.701317997931404697e-07,6.932397928894556583e-07,7.163477859857708470e-07,7.394557790820860356e-07,7.625637721784012242e-07,7.856717652747164128e-07,8.087797583710316014e-07,8.318877514673467900e-07,8.549957445636619786e-07,8.781037376599771672e-07,9.012117307562923558e-07,9.243197238526075445e-07,9.474277169489227331e-07,9.705357100452379217e-07,9.936437031415531103e-07,1.016751696237868299e-06,1.039859689334183488e-06,1.062967682430498676e-06,1.086075675526813865e-06,1.109183668623129053e-06,1.132291661719444242e-06,1.155399654815759431e-06,1.178507647912074619e-06,1.201615641008389808e-06,1.224723634104704996e-06,1.247831627201020185e-06,1.270939620297335374e-06,1.294047613393650562e-06,1.317155606489965751e-06,1.340263599586280939e-06,1.363371592682596128e-06,1.386479585778911317e-06,1.409587578875226505e-06,1.432695571971541694e-06,1.455803565067856883e-06 +0.000000000000000000e+00,2.287856799556139237e-08,4.575713599112278474e-08,6.863570398668418372e-08,9.151427198224558271e-08,1.143928399778069817e-07,1.372714079733683674e-07,1.601499759689297532e-07,1.830285439644911390e-07,2.059071119600525247e-07,2.287856799556139105e-07,2.516642479511752962e-07,2.745428159467366820e-07,2.974213839422980677e-07,3.202999519378594535e-07,3.431785199334208392e-07,3.660570879289822250e-07,3.889356559245436107e-07,4.118142239201049965e-07,4.346927919156663822e-07,4.575713599112277680e-07,4.804499279067891537e-07,5.033284959023505924e-07,5.262070638979120311e-07,5.490856318934734698e-07,5.719641998890349085e-07,5.948427678845963472e-07,6.177213358801577859e-07,6.405999038757192246e-07,6.634784718712806633e-07,6.863570398668421019e-07,7.092356078624035406e-07,7.321141758579649793e-07,7.549927438535264180e-07,7.778713118490878567e-07,8.007498798446492954e-07,8.236284478402107341e-07,8.465070158357721728e-07,8.693855838313336115e-07,8.922641518268950502e-07,9.151427198224564889e-07,9.380212878180179275e-07,9.608998558135793662e-07,9.837784238091409108e-07,1.006656991804702455e-06,1.029535559800264000e-06,1.052414127795825545e-06,1.075292695791387089e-06,1.098171263786948634e-06,1.121049831782510178e-06,1.143928399778071723e-06,1.166806967773633267e-06,1.189685535769194812e-06,1.212564103764756357e-06,1.235442671760317901e-06,1.258321239755879446e-06,1.281199807751440990e-06,1.304078375747002535e-06,1.326956943742564079e-06,1.349835511738125624e-06,1.372714079733687168e-06,1.395592647729248713e-06,1.418471215724810258e-06,1.441349783720371802e-06 +0.000000000000000000e+00,2.286950248614019266e-08,4.573900497228038532e-08,6.860850745842057136e-08,9.147800994456075741e-08,1.143475124307009435e-07,1.372170149168411427e-07,1.600865174029813420e-07,1.829560198891215413e-07,2.058255223752617406e-07,2.286950248614019398e-07,2.515645273475421391e-07,2.744340298336823384e-07,2.973035323198225377e-07,3.201730348059627370e-07,3.430425372921029362e-07,3.659120397782431355e-07,3.887815422643833348e-07,4.116510447505235341e-07,4.345205472366637333e-07,4.573900497228039326e-07,4.802595522089440790e-07,5.031290546950841724e-07,5.259985571812242658e-07,5.488680596673643592e-07,5.717375621535044526e-07,5.946070646396445460e-07,6.174765671257846394e-07,6.403460696119247328e-07,6.632155720980648262e-07,6.860850745842049195e-07,7.089545770703450129e-07,7.318240795564851063e-07,7.546935820426251997e-07,7.775630845287652931e-07,8.004325870149053865e-07,8.233020895010454799e-07,8.461715919871855733e-07,8.690410944733256667e-07,8.919105969594657601e-07,9.147800994456058535e-07,9.376496019317459469e-07,9.605191044178860403e-07,9.833886069040261337e-07,1.006258109390166227e-06,1.029127611876306321e-06,1.051997114362446414e-06,1.074866616848586507e-06,1.097736119334726601e-06,1.120605621820866694e-06,1.143475124307006788e-06,1.166344626793146881e-06,1.189214129279286974e-06,1.212083631765427068e-06,1.234953134251567161e-06,1.257822636737707255e-06,1.280692139223847348e-06,1.303561641709987441e-06,1.326431144196127535e-06,1.349300646682267628e-06,1.372170149168407722e-06,1.395039651654547815e-06,1.417909154140687908e-06,1.440778656626828002e-06 +0.000000000000000000e+00,2.235361211034970032e-08,4.470722422069940064e-08,6.706083633104909765e-08,8.941444844139878805e-08,1.117680605517484784e-07,1.341216726620981688e-07,1.564752847724478592e-07,1.788288968827975496e-07,2.011825089931472400e-07,2.235361211034969304e-07,2.458897332138466208e-07,2.682433453241962847e-07,2.905969574345459487e-07,3.129505695448956126e-07,3.353041816552452765e-07,3.576577937655949404e-07,3.800114058759446044e-07,4.023650179862942683e-07,4.247186300966439322e-07,4.470722422069935961e-07,4.694258543173432601e-07,4.917794664276929240e-07,5.141330785380425350e-07,5.364866906483921460e-07,5.588403027587417569e-07,5.811939148690913679e-07,6.035475269794409789e-07,6.259011390897905899e-07,6.482547512001402009e-07,6.706083633104898119e-07,6.929619754208394229e-07,7.153155875311890338e-07,7.376691996415386448e-07,7.600228117518882558e-07,7.823764238622378668e-07,8.047300359725874778e-07,8.270836480829370888e-07,8.494372601932866998e-07,8.717908723036363107e-07,8.941444844139859217e-07,9.164980965243355327e-07,9.388517086346851437e-07,9.612053207450347547e-07,9.835589328553843657e-07,1.005912544965733977e-06,1.028266157076083588e-06,1.050619769186433199e-06,1.072973381296782810e-06,1.095326993407132421e-06,1.117680605517482032e-06,1.140034217627831643e-06,1.162387829738181254e-06,1.184741441848530865e-06,1.207095053958880476e-06,1.229448666069230087e-06,1.251802278179579697e-06,1.274155890289929308e-06,1.296509502400278919e-06,1.318863114510628530e-06,1.341216726620978141e-06,1.363570338731327752e-06,1.385923950841677363e-06,1.408277562952026974e-06 +0.000000000000000000e+00,2.436993314047710326e-08,4.873986628095420651e-08,7.310979942143131308e-08,9.747973256190842626e-08,1.218496657023855527e-07,1.462195988428626791e-07,1.705895319833398055e-07,1.949594651238169319e-07,2.193293982642940584e-07,2.436993314047712112e-07,2.680692645452483641e-07,2.924391976857255170e-07,3.168091308262026699e-07,3.411790639666798228e-07,3.655489971071569757e-07,3.899189302476341286e-07,4.142888633881112815e-07,4.386587965285884344e-07,4.630287296690655872e-07,4.873986628095427401e-07,5.117685959500198930e-07,5.361385290904970459e-07,5.605084622309741988e-07,5.848783953714513517e-07,6.092483285119285046e-07,6.336182616524056575e-07,6.579881947928828103e-07,6.823581279333599632e-07,7.067280610738371161e-07,7.310979942143142690e-07,7.554679273547914219e-07,7.798378604952685748e-07,8.042077936357457277e-07,8.285777267762228806e-07,8.529476599167000335e-07,8.773175930571771863e-07,9.016875261976543392e-07,9.260574593381314921e-07,9.504273924786086450e-07,9.747973256190856920e-07,9.991672587595627390e-07,1.023537191900039786e-06,1.047907125040516833e-06,1.072277058180993880e-06,1.096646991321470927e-06,1.121016924461947974e-06,1.145386857602425021e-06,1.169756790742902068e-06,1.194126723883379115e-06,1.218496657023856162e-06,1.242866590164333209e-06,1.267236523304810256e-06,1.291606456445287303e-06,1.315976389585764350e-06,1.340346322726241397e-06,1.364716255866718444e-06,1.389086189007195491e-06,1.413456122147672538e-06,1.437826055288149585e-06,1.462195988428626632e-06,1.486565921569103679e-06,1.510935854709580726e-06,1.535305787850057773e-06 +0.000000000000000000e+00,2.287169685301289428e-08,4.574339370602578857e-08,6.861509055903867954e-08,9.148678741205156390e-08,1.143584842650644483e-07,1.372301811180773326e-07,1.601018779710902302e-07,1.829735748241031278e-07,2.058452716771160254e-07,2.287169685301289230e-07,2.515886653831418206e-07,2.744603622361547182e-07,2.973320590891676158e-07,3.202037559421805133e-07,3.430754527951934109e-07,3.659471496482063085e-07,3.888188465012192061e-07,4.116905433542321037e-07,4.345622402072450013e-07,4.574339370602578989e-07,4.803056339132707965e-07,5.031773307662836411e-07,5.260490276192964858e-07,5.489207244723093305e-07,5.717924213253221751e-07,5.946641181783350198e-07,6.175358150313478644e-07,6.404075118843607091e-07,6.632792087373735537e-07,6.861509055903863984e-07,7.090226024433992430e-07,7.318942992964120877e-07,7.547659961494249323e-07,7.776376930024377770e-07,8.005093898554506216e-07,8.233810867084634663e-07,8.462527835614763109e-07,8.691244804144891556e-07,8.919961772675020002e-07,9.148678741205148449e-07,9.377395709735276895e-07,9.606112678265405342e-07,9.834829646795533789e-07,1.006354661532566224e-06,1.029226358385579068e-06,1.052098055238591913e-06,1.074969752091604757e-06,1.097841448944617602e-06,1.120713145797630447e-06,1.143584842650643291e-06,1.166456539503656136e-06,1.189328236356668981e-06,1.212199933209681825e-06,1.235071630062694670e-06,1.257943326915707515e-06,1.280815023768720359e-06,1.303686720621733204e-06,1.326558417474746049e-06,1.349430114327758893e-06,1.372301811180771738e-06,1.395173508033784583e-06,1.418045204886797427e-06,1.440916901739810272e-06 +0.000000000000000000e+00,2.435498878951975906e-08,4.870997757903951812e-08,7.306496636855927719e-08,9.741995515807903625e-08,1.217749439475987821e-07,1.461299327371185279e-07,1.704849215266382737e-07,1.948399103161580196e-07,2.191948991056777654e-07,2.435498878951975112e-07,2.679048766847172570e-07,2.922598654742370029e-07,3.166148542637567487e-07,3.409698430532764945e-07,3.653248318427962403e-07,3.896798206323159862e-07,4.140348094218357320e-07,4.383897982113554778e-07,4.627447870008752236e-07,4.870997757903949165e-07,5.114547645799146624e-07,5.358097533694344082e-07,5.601647421589541540e-07,5.845197309484738998e-07,6.088747197379936457e-07,6.332297085275133915e-07,6.575846973170331373e-07,6.819396861065528832e-07,7.062946748960726290e-07,7.306496636855923748e-07,7.550046524751121206e-07,7.793596412646318665e-07,8.037146300541516123e-07,8.280696188436713581e-07,8.524246076331911039e-07,8.767795964227108498e-07,9.011345852122305956e-07,9.254895740017503414e-07,9.498445627912700872e-07,9.741995515807898331e-07,9.985545403703095789e-07,1.022909529159829325e-06,1.047264517949349071e-06,1.071619506738868816e-06,1.095974495528388562e-06,1.120329484317908308e-06,1.144684473107428054e-06,1.169039461896947800e-06,1.193394450686467546e-06,1.217749439475987291e-06,1.242104428265507037e-06,1.266459417055026783e-06,1.290814405844546529e-06,1.315169394634066275e-06,1.339524383423586020e-06,1.363879372213105766e-06,1.388234361002625512e-06,1.412589349792145258e-06,1.436944338581665004e-06,1.461299327371184750e-06,1.485654316160704495e-06,1.510009304950224241e-06,1.534364293739743987e-06 +0.000000000000000000e+00,2.287856799557214903e-08,4.575713599114429805e-08,6.863570398671645039e-08,9.151427198228860934e-08,1.143928399778607683e-07,1.372714079734329272e-07,1.601499759690050862e-07,1.830285439645772451e-07,2.059071119601494041e-07,2.287856799557215630e-07,2.516642479512937220e-07,2.745428159468659074e-07,2.974213839424380928e-07,3.202999519380102783e-07,3.431785199335824637e-07,3.660570879291546491e-07,3.889356559247268345e-07,4.118142239202990200e-07,4.346927919158712054e-07,4.575713599114433908e-07,4.804499279070156292e-07,5.033284959025878675e-07,5.262070638981601059e-07,5.490856318937323442e-07,5.719641998893045826e-07,5.948427678848768210e-07,6.177213358804490593e-07,6.405999038760212977e-07,6.634784718715935360e-07,6.863570398671657744e-07,7.092356078627380128e-07,7.321141758583102511e-07,7.549927438538824895e-07,7.778713118494547279e-07,8.007498798450269662e-07,8.236284478405992046e-07,8.465070158361714429e-07,8.693855838317436813e-07,8.922641518273159197e-07,9.151427198228881580e-07,9.380212878184603964e-07,9.608998558140325289e-07,9.837784238096046613e-07,1.006656991805176794e-06,1.029535559800748926e-06,1.052414127796321059e-06,1.075292695791893191e-06,1.098171263787465324e-06,1.121049831783037456e-06,1.143928399778609589e-06,1.166806967774181721e-06,1.189685535769753854e-06,1.212564103765325986e-06,1.235442671760898119e-06,1.258321239756470251e-06,1.281199807752042384e-06,1.304078375747614516e-06,1.326956943743186649e-06,1.349835511738758781e-06,1.372714079734330914e-06,1.395592647729903046e-06,1.418471215725475179e-06,1.441349783721047311e-06 +0.000000000000000000e+00,2.287169685301827757e-08,4.574339370603655515e-08,6.861509055905483934e-08,9.148678741207312353e-08,1.143584842650914077e-07,1.372301811181096787e-07,1.601018779711279496e-07,1.829735748241462206e-07,2.058452716771644916e-07,2.287169685301827625e-07,2.515886653832010070e-07,2.744603622362192515e-07,2.973320590892374960e-07,3.202037559422557405e-07,3.430754527952739850e-07,3.659471496482922294e-07,3.888188465013104739e-07,4.116905433543287184e-07,4.345622402073469629e-07,4.574339370603652074e-07,4.803056339133834519e-07,5.031773307664016964e-07,5.260490276194199409e-07,5.489207244724381853e-07,5.717924213254564298e-07,5.946641181784746743e-07,6.175358150314929188e-07,6.404075118845111633e-07,6.632792087375294078e-07,6.861509055905476523e-07,7.090226024435658968e-07,7.318942992965841412e-07,7.547659961496023857e-07,7.776376930026206302e-07,8.005093898556388747e-07,8.233810867086571192e-07,8.462527835616753637e-07,8.691244804146936082e-07,8.919961772677118527e-07,9.148678741207300971e-07,9.377395709737483416e-07,9.606112678267664802e-07,9.834829646797846188e-07,1.006354661532802757e-06,1.029226358385820896e-06,1.052098055238839035e-06,1.074969752091857173e-06,1.097841448944875312e-06,1.120713145797893450e-06,1.143584842650911589e-06,1.166456539503929728e-06,1.189328236356947866e-06,1.212199933209966005e-06,1.235071630062984144e-06,1.257943326916002282e-06,1.280815023769020421e-06,1.303686720622038559e-06,1.326558417475056698e-06,1.349430114328074837e-06,1.372301811181092975e-06,1.395173508034111114e-06,1.418045204887129252e-06,1.440916901740147391e-06 +0.000000000000000000e+00,2.235361211036029816e-08,4.470722422072059632e-08,6.706083633108088786e-08,8.941444844144117940e-08,1.117680605518014709e-07,1.341216726621617757e-07,1.564752847725220805e-07,1.788288968828823853e-07,2.011825089932426900e-07,2.235361211036029948e-07,2.458897332139632996e-07,2.682433453243236044e-07,2.905969574346839092e-07,3.129505695450442139e-07,3.353041816554045187e-07,3.576577937657648235e-07,3.800114058761251283e-07,4.023650179864854330e-07,4.247186300968457378e-07,4.470722422072060426e-07,4.694258543175663474e-07,4.917794664279267051e-07,5.141330785382871157e-07,5.364866906486475264e-07,5.588403027590079370e-07,5.811939148693683477e-07,6.035475269797287584e-07,6.259011390900891690e-07,6.482547512004495797e-07,6.706083633108099903e-07,6.929619754211704010e-07,7.153155875315308116e-07,7.376691996418912223e-07,7.600228117522516329e-07,7.823764238626120436e-07,8.047300359729724543e-07,8.270836480833328649e-07,8.494372601936932756e-07,8.717908723040536862e-07,8.941444844144140969e-07,9.164980965247745075e-07,9.388517086351349182e-07,9.612053207454953288e-07,9.835589328558557395e-07,1.005912544966216150e-06,1.028266157076576561e-06,1.050619769186936971e-06,1.072973381297297382e-06,1.095326993407657793e-06,1.117680605518018203e-06,1.140034217628378614e-06,1.162387829738739025e-06,1.184741441849099435e-06,1.207095053959459846e-06,1.229448666069820257e-06,1.251802278180180667e-06,1.274155890290541078e-06,1.296509502400901489e-06,1.318863114511261899e-06,1.341216726621622310e-06,1.363570338731982721e-06,1.385923950842343131e-06,1.408277562952703542e-06 +0.000000000000000000e+00,2.436993314048843894e-08,4.873986628097687788e-08,7.310979942146531351e-08,9.747973256195374253e-08,1.218496657024421715e-07,1.462195988429306006e-07,1.705895319834190296e-07,1.949594651239074586e-07,2.193293982643958876e-07,2.436993314048842901e-07,2.680692645453726662e-07,2.924391976858610423e-07,3.168091308263494184e-07,3.411790639668377944e-07,3.655489971073261705e-07,3.899189302478145466e-07,4.142888633883029227e-07,4.386587965287912987e-07,4.630287296692796748e-07,4.873986628097680509e-07,5.117685959502564270e-07,5.361385290907448030e-07,5.605084622312331791e-07,5.848783953717215552e-07,6.092483285122099313e-07,6.336182616526983073e-07,6.579881947931866834e-07,6.823581279336750595e-07,7.067280610741634356e-07,7.310979942146518116e-07,7.554679273551401877e-07,7.798378604956285638e-07,8.042077936361169399e-07,8.285777267766053159e-07,8.529476599170936920e-07,8.773175930575820681e-07,9.016875261980704442e-07,9.260574593385588202e-07,9.504273924790471963e-07,9.747973256195354665e-07,9.991672587600237367e-07,1.023537191900512007e-06,1.047907125041000277e-06,1.072277058181488547e-06,1.096646991321976817e-06,1.121016924462465088e-06,1.145386857602953358e-06,1.169756790743441628e-06,1.194126723883929898e-06,1.218496657024418168e-06,1.242866590164906439e-06,1.267236523305394709e-06,1.291606456445882979e-06,1.315976389586371249e-06,1.340346322726859519e-06,1.364716255867347790e-06,1.389086189007836060e-06,1.413456122148324330e-06,1.437826055288812600e-06,1.462195988429300870e-06,1.486565921569789141e-06,1.510935854710277411e-06,1.535305787850765681e-06 +0.000000000000000000e+00,1.461728284829559216e-08,2.923456569659118432e-08,4.385184854488677814e-08,5.846913139318237526e-08,7.308641424147796576e-08,8.770369708977355627e-08,1.023209799380691468e-07,1.169382627863647373e-07,1.315555456346603278e-07,1.461728284829559315e-07,1.607901113312515353e-07,1.754073941795471390e-07,1.900246770278427428e-07,2.046419598761383465e-07,2.192592427244339502e-07,2.338765255727295540e-07,2.484938084210251577e-07,2.631110912693207615e-07,2.777283741176163652e-07,2.923456569659119689e-07,3.069629398142075727e-07,3.215802226625031764e-07,3.361975055107987802e-07,3.508147883590943839e-07,3.654320712073899876e-07,3.800493540556855914e-07,3.946666369039811951e-07,4.092839197522767989e-07,4.239012026005724026e-07,4.385184854488680063e-07,4.531357682971636101e-07,4.677530511454592138e-07,4.823703339937548176e-07,4.969876168420504213e-07,5.116048996903460251e-07,5.262221825386416288e-07,5.408394653869372325e-07,5.554567482352328363e-07,5.700740310835284400e-07,5.846913139318240438e-07,5.993085967801196475e-07,6.139258796284152512e-07,6.285431624767108550e-07,6.431604453250064587e-07,6.577777281733020625e-07,6.723950110215976662e-07,6.870122938698932699e-07,7.016295767181888737e-07,7.162468595664844774e-07,7.308641424147800812e-07,7.454814252630756849e-07,7.600987081113712886e-07,7.747159909596668924e-07,7.893332738079624961e-07,8.039505566562580999e-07,8.185678395045537036e-07,8.331851223528493073e-07,8.478024052011449111e-07,8.624196880494405148e-07,8.770369708977361186e-07,8.916542537460317223e-07,9.062715365943273261e-07,9.208888194426229298e-07 +0.000000000000000000e+00,1.423028508270241321e-08,2.846057016540482642e-08,4.269085524810723798e-08,5.692114033080964622e-08,7.115142541351205447e-08,8.538171049621446272e-08,9.961199557891687097e-08,1.138422806616192792e-07,1.280725657443216742e-07,1.423028508270240825e-07,1.565331359097264907e-07,1.707634209924288990e-07,1.849937060751313072e-07,1.992239911578337155e-07,2.134542762405361237e-07,2.276845613232385320e-07,2.419148464059409402e-07,2.561451314886433485e-07,2.703754165713457567e-07,2.846057016540481649e-07,2.988359867367505732e-07,3.130662718194529814e-07,3.272965569021553897e-07,3.415268419848577979e-07,3.557571270675602062e-07,3.699874121502626144e-07,3.842176972329650227e-07,3.984479823156674309e-07,4.126782673983698392e-07,4.269085524810722474e-07,4.411388375637746557e-07,4.553691226464770639e-07,4.695994077291794722e-07,4.838296928118818804e-07,4.980599778945842357e-07,5.122902629772865910e-07,5.265205480599889463e-07,5.407508331426913016e-07,5.549811182253936570e-07,5.692114033080960123e-07,5.834416883907983676e-07,5.976719734735007229e-07,6.119022585562030782e-07,6.261325436389054335e-07,6.403628287216077888e-07,6.545931138043101441e-07,6.688233988870124994e-07,6.830536839697148547e-07,6.972839690524172100e-07,7.115142541351195653e-07,7.257445392178219206e-07,7.399748243005242760e-07,7.542051093832266313e-07,7.684353944659289866e-07,7.826656795486313419e-07,7.968959646313336972e-07,8.111262497140360525e-07,8.253565347967384078e-07,8.395868198794407631e-07,8.538171049621431184e-07,8.680473900448454737e-07,8.822776751275478290e-07,8.965079602102501843e-07 +0.000000000000000000e+00,1.449929842613891612e-08,2.899859685227783223e-08,4.349789527841675166e-08,5.799719370455567109e-08,7.249649213069459051e-08,8.699579055683350332e-08,1.014950889829724161e-07,1.159943874091113289e-07,1.304936858352502417e-07,1.449929842613891546e-07,1.594922826875280674e-07,1.739915811136669802e-07,1.884908795398058930e-07,2.029901779659448058e-07,2.174894763920837186e-07,2.319887748182226314e-07,2.464880732443615177e-07,2.609873716705004305e-07,2.754866700966393434e-07,2.899859685227782562e-07,3.044852669489171690e-07,3.189845653750560818e-07,3.334838638011949946e-07,3.479831622273339074e-07,3.624824606534728202e-07,3.769817590796117330e-07,3.914810575057506458e-07,4.059803559318895586e-07,4.204796543580284714e-07,4.349789527841673842e-07,4.494782512103062971e-07,4.639775496364452099e-07,4.784768480625841227e-07,4.929761464887230355e-07,5.074754449148619483e-07,5.219747433410008611e-07,5.364740417671397739e-07,5.509733401932786867e-07,5.654726386194175995e-07,5.799719370455565123e-07,5.944712354716954251e-07,6.089705338978343379e-07,6.234698323239732508e-07,6.379691307501121636e-07,6.524684291762510764e-07,6.669677276023899892e-07,6.814670260285289020e-07,6.959663244546678148e-07,7.104656228808067276e-07,7.249649213069456404e-07,7.394642197330845532e-07,7.539635181592234660e-07,7.684628165853623788e-07,7.829621150115012916e-07,7.974614134376402045e-07,8.119607118637791173e-07,8.264600102899180301e-07,8.409593087160569429e-07,8.554586071421958557e-07,8.699579055683347685e-07,8.844572039944736813e-07,8.989565024206125941e-07,9.134558008467515069e-07 +0.000000000000000000e+00,1.525579962299771552e-08,3.051159924599543104e-08,4.576739886899314656e-08,6.102319849199086207e-08,7.627899811498857097e-08,9.153479773798627988e-08,1.067905973609839888e-07,1.220463969839816977e-07,1.373021966069794066e-07,1.525579962299771155e-07,1.678137958529748244e-07,1.830695954759725333e-07,1.983253950989702422e-07,2.135811947219679511e-07,2.288369943449656600e-07,2.440927939679633424e-07,2.593485935909609984e-07,2.746043932139586543e-07,2.898601928369563103e-07,3.051159924599539663e-07,3.203717920829516222e-07,3.356275917059492782e-07,3.508833913289469341e-07,3.661391909519445901e-07,3.813949905749422461e-07,3.966507901979399020e-07,4.119065898209375580e-07,4.271623894439352140e-07,4.424181890669328699e-07,4.576739886899305259e-07,4.729297883129281818e-07,4.881855879359258378e-07,5.034413875589234938e-07,5.186971871819211497e-07,5.339529868049188057e-07,5.492087864279164616e-07,5.644645860509141176e-07,5.797203856739117736e-07,5.949761852969094295e-07,6.102319849199070855e-07,6.254877845429047415e-07,6.407435841659023974e-07,6.559993837889000534e-07,6.712551834118977093e-07,6.865109830348953653e-07,7.017667826578930213e-07,7.170225822808906772e-07,7.322783819038883332e-07,7.475341815268859891e-07,7.627899811498836451e-07,7.780457807728813011e-07,7.933015803958789570e-07,8.085573800188766130e-07,8.238131796418742689e-07,8.390689792648719249e-07,8.543247788878695809e-07,8.695805785108672368e-07,8.848363781338648928e-07,9.000921777568625488e-07,9.153479773798602047e-07,9.306037770028578607e-07,9.458595766258555166e-07,9.611153762488530667e-07 +0.000000000000000000e+00,1.449621354609880346e-08,2.899242709219760693e-08,4.348864063829641204e-08,5.798485418439522047e-08,7.248106773049402890e-08,8.697728127659283732e-08,1.014734948226916457e-07,1.159697083687904542e-07,1.304659219148892626e-07,1.449621354609880578e-07,1.594583490070868530e-07,1.739545625531856482e-07,1.884507760992844434e-07,2.029469896453832386e-07,2.174432031914820338e-07,2.319394167375808289e-07,2.464356302836796506e-07,2.609318438297784723e-07,2.754280573758772939e-07,2.899242709219761156e-07,3.044204844680749372e-07,3.189166980141737589e-07,3.334129115602725806e-07,3.479091251063714022e-07,3.624053386524702239e-07,3.769015521985690456e-07,3.913977657446678672e-07,4.058939792907666889e-07,4.203901928368655105e-07,4.348864063829643322e-07,4.493826199290631539e-07,4.638788334751619755e-07,4.783750470212607972e-07,4.928712605673596188e-07,5.073674741134584405e-07,5.218636876595572622e-07,5.363599012056560838e-07,5.508561147517549055e-07,5.653523282978537272e-07,5.798485418439525488e-07,5.943447553900513705e-07,6.088409689361501921e-07,6.233371824822490138e-07,6.378333960283478355e-07,6.523296095744466571e-07,6.668258231205454788e-07,6.813220366666443004e-07,6.958182502127431221e-07,7.103144637588419438e-07,7.248106773049407654e-07,7.393068908510395871e-07,7.538031043971384087e-07,7.682993179432372304e-07,7.827955314893360521e-07,7.972917450354348737e-07,8.117879585815336954e-07,8.262841721276325171e-07,8.407803856737313387e-07,8.552765992198301604e-07,8.697728127659289820e-07,8.842690263120278037e-07,8.987652398581266254e-07,9.132614534042254470e-07 +0.000000000000000000e+00,1.575803619391602655e-08,3.151607238783205311e-08,4.727410858174807635e-08,6.303214477566409298e-08,7.879018096958010961e-08,9.454821716349612624e-08,1.103062533574121429e-07,1.260642895513281595e-07,1.418223257452441761e-07,1.575803619391601927e-07,1.733383981330762094e-07,1.890964343269922260e-07,2.048544705209082426e-07,2.206125067148242593e-07,2.363705429087402759e-07,2.521285791026562660e-07,2.678866152965722297e-07,2.836446514904881934e-07,2.994026876844041571e-07,3.151607238783201208e-07,3.309187600722360845e-07,3.466767962661520482e-07,3.624348324600680119e-07,3.781928686539839756e-07,3.939509048478999392e-07,4.097089410418159029e-07,4.254669772357318666e-07,4.412250134296478303e-07,4.569830496235637940e-07,4.727410858174797577e-07,4.884991220113957214e-07,5.042571582053116851e-07,5.200151943992276487e-07,5.357732305931436124e-07,5.515312667870595761e-07,5.672893029809755398e-07,5.830473391748915035e-07,5.988053753688074672e-07,6.145634115627234309e-07,6.303214477566393946e-07,6.460794839505553583e-07,6.618375201444713219e-07,6.775955563383872856e-07,6.933535925323032493e-07,7.091116287262192130e-07,7.248696649201351767e-07,7.406277011140511404e-07,7.563857373079671041e-07,7.721437735018830678e-07,7.879018096957990315e-07,8.036598458897149951e-07,8.194178820836309588e-07,8.351759182775469225e-07,8.509339544714628862e-07,8.666919906653788499e-07,8.824500268592948136e-07,8.982080630532107773e-07,9.139660992471267410e-07,9.297241354410427046e-07,9.454821716349586683e-07,9.612402078288747379e-07,9.769982440227908075e-07,9.927562802167068770e-07 +0.000000000000000000e+00,1.452979731437330868e-08,2.905959462874661736e-08,4.358939194311992439e-08,5.811918925749322810e-08,7.264898657186653182e-08,8.717878388623983554e-08,1.017085812006131393e-07,1.162383785149864430e-07,1.307681758293597599e-07,1.452979731437330901e-07,1.598277704581064203e-07,1.743575677724797505e-07,1.888873650868530807e-07,2.034171624012264109e-07,2.179469597155997410e-07,2.324767570299730712e-07,2.470065543443464014e-07,2.615363516587197316e-07,2.760661489730930618e-07,2.905959462874663920e-07,3.051257436018397222e-07,3.196555409162130524e-07,3.341853382305863825e-07,3.487151355449597127e-07,3.632449328593330429e-07,3.777747301737063731e-07,3.923045274880797033e-07,4.068343248024530335e-07,4.213641221168263637e-07,4.358939194311996939e-07,4.504237167455730240e-07,4.649535140599463542e-07,4.794833113743196844e-07,4.940131086886930146e-07,5.085429060030663448e-07,5.230727033174396750e-07,5.376025006318130052e-07,5.521322979461863353e-07,5.666620952605596655e-07,5.811918925749329957e-07,5.957216898893063259e-07,6.102514872036796561e-07,6.247812845180529863e-07,6.393110818324263165e-07,6.538408791467996467e-07,6.683706764611729768e-07,6.829004737755463070e-07,6.974302710899196372e-07,7.119600684042929674e-07,7.264898657186662976e-07,7.410196630330396278e-07,7.555494603474129580e-07,7.700792576617862882e-07,7.846090549761596183e-07,7.991388522905329485e-07,8.136686496049062787e-07,8.281984469192796089e-07,8.427282442336529391e-07,8.572580415480262693e-07,8.717878388623995995e-07,8.863176361767729296e-07,9.008474334911462598e-07,9.153772308055195900e-07 +0.000000000000000000e+00,1.508004092658852453e-08,3.016008185317704906e-08,4.524012277976557358e-08,6.032016370635409811e-08,7.540020463294261602e-08,9.048024555953113393e-08,1.055602864861196518e-07,1.206403274127081698e-07,1.357203683392966877e-07,1.508004092658852056e-07,1.658804501924737235e-07,1.809604911190622414e-07,1.960405320456507593e-07,2.111205729722392772e-07,2.262006138988277951e-07,2.412806548254162866e-07,2.563606957520047780e-07,2.714407366785932694e-07,2.865207776051817609e-07,3.016008185317702523e-07,3.166808594583587438e-07,3.317609003849472352e-07,3.468409413115357266e-07,3.619209822381242181e-07,3.770010231647127095e-07,3.920810640913012010e-07,4.071611050178896924e-07,4.222411459444781839e-07,4.373211868710666753e-07,4.524012277976551667e-07,4.674812687242436582e-07,4.825613096508321496e-07,4.976413505774206411e-07,5.127213915040091325e-07,5.278014324305976239e-07,5.428814733571861154e-07,5.579615142837746068e-07,5.730415552103630983e-07,5.881215961369515897e-07,6.032016370635400811e-07,6.182816779901285726e-07,6.333617189167170640e-07,6.484417598433055555e-07,6.635218007698940469e-07,6.786018416964825383e-07,6.936818826230710298e-07,7.087619235496595212e-07,7.238419644762480127e-07,7.389220054028365041e-07,7.540020463294249955e-07,7.690820872560134870e-07,7.841621281826019784e-07,7.992421691091904699e-07,8.143222100357789613e-07,8.294022509623674527e-07,8.444822918889559442e-07,8.595623328155444356e-07,8.746423737421329271e-07,8.897224146687214185e-07,9.048024555953099100e-07,9.198824965218984014e-07,9.349625374484868928e-07,9.500425783750753843e-07 +0.000000000000000000e+00,1.461728284831315982e-08,2.923456569662631964e-08,4.385184854493947947e-08,5.846913139325263929e-08,7.308641424156579249e-08,8.770369708987894570e-08,1.023209799381920989e-07,1.169382627865052521e-07,1.315555456348184053e-07,1.461728284831315585e-07,1.607901113314447117e-07,1.754073941797578649e-07,1.900246770280710181e-07,2.046419598763841713e-07,2.192592427246973245e-07,2.338765255730104777e-07,2.484938084213236310e-07,2.631110912696368106e-07,2.777283741179499903e-07,2.923456569662631700e-07,3.069629398145763496e-07,3.215802226628895293e-07,3.361975055112027090e-07,3.508147883595158887e-07,3.654320712078290683e-07,3.800493540561422480e-07,3.946666369044554277e-07,4.092839197527686074e-07,4.239012026010817870e-07,4.385184854493949667e-07,4.531357682977081464e-07,4.677530511460213261e-07,4.823703339943345057e-07,4.969876168426476854e-07,5.116048996909608651e-07,5.262221825392740448e-07,5.408394653875872244e-07,5.554567482359004041e-07,5.700740310842135838e-07,5.846913139325267635e-07,5.993085967808399431e-07,6.139258796291531228e-07,6.285431624774663025e-07,6.431604453257794822e-07,6.577777281740926618e-07,6.723950110224058415e-07,6.870122938707190212e-07,7.016295767190322009e-07,7.162468595673453805e-07,7.308641424156585602e-07,7.454814252639717399e-07,7.600987081122849196e-07,7.747159909605980992e-07,7.893332738089112789e-07,8.039505566572244586e-07,8.185678395055376383e-07,8.331851223538508179e-07,8.478024052021639976e-07,8.624196880504771773e-07,8.770369708987903570e-07,8.916542537471035366e-07,9.062715365954167163e-07,9.208888194437298960e-07 +0.000000000000000000e+00,1.423028508271920167e-08,2.846057016543840334e-08,4.269085524815760335e-08,5.692114033087680006e-08,7.115142541359600338e-08,8.538171049631520670e-08,9.961199557903441002e-08,1.138422806617536133e-07,1.280725657444728167e-07,1.423028508271920068e-07,1.565331359099111968e-07,1.707634209926303869e-07,1.849937060753495770e-07,1.992239911580687671e-07,2.134542762407879572e-07,2.276845613235071473e-07,2.419148464062263374e-07,2.561451314889455275e-07,2.703754165716647175e-07,2.846057016543839076e-07,2.988359867371030977e-07,3.130662718198222878e-07,3.272965569025414779e-07,3.415268419852606680e-07,3.557571270679798581e-07,3.699874121506990482e-07,3.842176972334182382e-07,3.984479823161374283e-07,4.126782673988566184e-07,4.269085524815758085e-07,4.411388375642949986e-07,4.553691226470141887e-07,4.695994077297333788e-07,4.838296928124525689e-07,4.980599778951717589e-07,5.122902629778909490e-07,5.265205480606101391e-07,5.407508331433293292e-07,5.549811182260485193e-07,5.692114033087677094e-07,5.834416883914868995e-07,5.976719734742060896e-07,6.119022585569252796e-07,6.261325436396444697e-07,6.403628287223636598e-07,6.545931138050828499e-07,6.688233988878020400e-07,6.830536839705212301e-07,6.972839690532404202e-07,7.115142541359596103e-07,7.257445392186788004e-07,7.399748243013979904e-07,7.542051093841171805e-07,7.684353944668363706e-07,7.826656795495555607e-07,7.968959646322747508e-07,8.111262497149939409e-07,8.253565347977131310e-07,8.395868198804323211e-07,8.538171049631515111e-07,8.680473900458707012e-07,8.822776751285898913e-07,8.965079602113090814e-07 +0.000000000000000000e+00,1.452979731438199904e-08,2.905959462876399808e-08,4.358939194314599712e-08,5.811918925752799616e-08,7.264898657190999520e-08,8.717878388629199424e-08,1.017085812006739933e-07,1.162383785150559923e-07,1.307681758294380046e-07,1.452979731438200169e-07,1.598277704582020291e-07,1.743575677725840414e-07,1.888873650869660537e-07,2.034171624013480660e-07,2.179469597157300782e-07,2.324767570301120905e-07,2.470065543444941028e-07,2.615363516588761151e-07,2.760661489732581273e-07,2.905959462876401396e-07,3.051257436020221519e-07,3.196555409164041642e-07,3.341853382307861764e-07,3.487151355451681887e-07,3.632449328595502010e-07,3.777747301739322133e-07,3.923045274883142255e-07,4.068343248026962378e-07,4.213641221170782501e-07,4.358939194314602624e-07,4.504237167458422746e-07,4.649535140602242869e-07,4.794833113746062992e-07,4.940131086889883115e-07,5.085429060033703237e-07,5.230727033177523360e-07,5.376025006321343483e-07,5.521322979465163606e-07,5.666620952608983728e-07,5.811918925752803851e-07,5.957216898896623974e-07,6.102514872040444097e-07,6.247812845184264219e-07,6.393110818328084342e-07,6.538408791471904465e-07,6.683706764615724588e-07,6.829004737759544710e-07,6.974302710903364833e-07,7.119600684047184956e-07,7.264898657191005079e-07,7.410196630334825201e-07,7.555494603478645324e-07,7.700792576622465447e-07,7.846090549766285570e-07,7.991388522910105692e-07,8.136686496053925815e-07,8.281984469197745938e-07,8.427282442341566061e-07,8.572580415485386183e-07,8.717878388629206306e-07,8.863176361773026429e-07,9.008474334916846551e-07,9.153772308060666674e-07 +0.000000000000000000e+00,1.525579962301487124e-08,3.051159924602974249e-08,4.576739886904461042e-08,6.102319849205947174e-08,7.627899811507433306e-08,9.153479773808919438e-08,1.067905973611040557e-07,1.220463969841189170e-07,1.373021966071337783e-07,1.525579962301486397e-07,1.678137958531635010e-07,1.830695954761783623e-07,1.983253950991932236e-07,2.135811947222080849e-07,2.288369943452229462e-07,2.440927939682377811e-07,2.593485935912525895e-07,2.746043932142673978e-07,2.898601928372822062e-07,3.051159924602970146e-07,3.203717920833118230e-07,3.356275917063266314e-07,3.508833913293414397e-07,3.661391909523562481e-07,3.813949905753710565e-07,3.966507901983858649e-07,4.119065898214006733e-07,4.271623894444154816e-07,4.424181890674302900e-07,4.576739886904450984e-07,4.729297883134599068e-07,4.881855879364747151e-07,5.034413875594895235e-07,5.186971871825043319e-07,5.339529868055191403e-07,5.492087864285339487e-07,5.644645860515487570e-07,5.797203856745635654e-07,5.949761852975783738e-07,6.102319849205931822e-07,6.254877845436079906e-07,6.407435841666227989e-07,6.559993837896376073e-07,6.712551834126524157e-07,6.865109830356672241e-07,7.017667826586820324e-07,7.170225822816968408e-07,7.322783819047116492e-07,7.475341815277264576e-07,7.627899811507412660e-07,7.780457807737560743e-07,7.933015803967708827e-07,8.085573800197856911e-07,8.238131796428004995e-07,8.390689792658153079e-07,8.543247788888301162e-07,8.695805785118449246e-07,8.848363781348597330e-07,9.000921777578745414e-07,9.153479773808893497e-07,9.306037770039041581e-07,9.458595766269189665e-07,9.611153762499338808e-07 +0.000000000000000000e+00,1.449621354611599559e-08,2.899242709223199117e-08,4.348864063834798841e-08,5.798485418446398896e-08,7.248106773057998951e-08,8.697728127669599005e-08,1.014734948228119906e-07,1.159697083689279912e-07,1.304659219150439785e-07,1.449621354611599525e-07,1.594583490072759266e-07,1.739545625533919007e-07,1.884507760995078748e-07,2.029469896456238489e-07,2.174432031917398229e-07,2.319394167378557970e-07,2.464356302839717711e-07,2.609318438300877452e-07,2.754280573762037192e-07,2.899242709223196933e-07,3.044204844684356674e-07,3.189166980145516415e-07,3.334129115606676156e-07,3.479091251067835896e-07,3.624053386528995637e-07,3.769015521990155378e-07,3.913977657451315119e-07,4.058939792912474860e-07,4.203901928373634600e-07,4.348864063834794341e-07,4.493826199295954082e-07,4.638788334757113823e-07,4.783750470218273563e-07,4.928712605679433304e-07,5.073674741140593045e-07,5.218636876601752786e-07,5.363599012062912527e-07,5.508561147524072267e-07,5.653523282985232008e-07,5.798485418446391749e-07,5.943447553907551490e-07,6.088409689368711231e-07,6.233371824829870971e-07,6.378333960291030712e-07,6.523296095752190453e-07,6.668258231213350194e-07,6.813220366674509934e-07,6.958182502135669675e-07,7.103144637596829416e-07,7.248106773057989157e-07,7.393068908519148898e-07,7.538031043980308638e-07,7.682993179441468379e-07,7.827955314902628120e-07,7.972917450363787861e-07,8.117879585824947602e-07,8.262841721286107342e-07,8.407803856747267083e-07,8.552765992208426824e-07,8.697728127669586565e-07,8.842690263130746305e-07,8.987652398591906046e-07,9.132614534053065787e-07 +0.000000000000000000e+00,1.575803619393280178e-08,3.151607238786560355e-08,4.727410858179840864e-08,6.303214477573122034e-08,7.879018096966403205e-08,9.454821716359684375e-08,1.103062533575296555e-07,1.260642895514624672e-07,1.418223257453952921e-07,1.575803619393281170e-07,1.733383981332609420e-07,1.890964343271937669e-07,2.048544705211265918e-07,2.206125067150594168e-07,2.363705429089922417e-07,2.521285791029250931e-07,2.678866152968579445e-07,2.836446514907907959e-07,2.994026876847236474e-07,3.151607238786564988e-07,3.309187600725893502e-07,3.466767962665222016e-07,3.624348324604550530e-07,3.781928686543879044e-07,3.939509048483207558e-07,4.097089410422536072e-07,4.254669772361864586e-07,4.412250134301193100e-07,4.569830496240521614e-07,4.727410858179850128e-07,4.884991220119178113e-07,5.042571582058506098e-07,5.200151943997834082e-07,5.357732305937162067e-07,5.515312667876490052e-07,5.672893029815818036e-07,5.830473391755146021e-07,5.988053753694474006e-07,6.145634115633801991e-07,6.303214477573129975e-07,6.460794839512457960e-07,6.618375201451785945e-07,6.775955563391113929e-07,6.933535925330441914e-07,7.091116287269769899e-07,7.248696649209097883e-07,7.406277011148425868e-07,7.563857373087753853e-07,7.721437735027081837e-07,7.879018096966409822e-07,8.036598458905737807e-07,8.194178820845065791e-07,8.351759182784393776e-07,8.509339544723721761e-07,8.666919906663049745e-07,8.824500268602377730e-07,8.982080630541705715e-07,9.139660992481033699e-07,9.297241354420361684e-07,9.454821716359689669e-07,9.612402078299017654e-07,9.769982440238345638e-07,9.927562802177673623e-07 +0.000000000000000000e+00,1.425660972233468341e-08,2.851321944466936682e-08,4.276982916700405354e-08,5.702643888933874025e-08,7.128304861167342697e-08,8.553965833400810707e-08,9.979626805634278717e-08,1.140528777786774673e-07,1.283094875010121606e-07,1.425660972233468539e-07,1.568227069456815473e-07,1.710793166680162406e-07,1.853359263903509339e-07,1.995925361126856273e-07,2.138491458350203206e-07,2.281057555573550140e-07,2.423623652796897073e-07,2.566189750020244271e-07,2.708755847243591469e-07,2.851321944466938667e-07,2.993888041690285865e-07,3.136454138913633063e-07,3.279020236136980261e-07,3.421586333360327459e-07,3.564152430583674657e-07,3.706718527807021855e-07,3.849284625030369053e-07,3.991850722253716251e-07,4.134416819477063449e-07,4.276982916700410648e-07,4.419549013923757846e-07,4.562115111147105044e-07,4.704681208370452242e-07,4.847247305593799440e-07,4.989813402817146638e-07,5.132379500040493836e-07,5.274945597263841034e-07,5.417511694487188232e-07,5.560077791710535430e-07,5.702643888933882628e-07,5.845209986157229826e-07,5.987776083380577024e-07,6.130342180603924222e-07,6.272908277827271420e-07,6.415474375050618618e-07,6.558040472273965816e-07,6.700606569497313014e-07,6.843172666720660212e-07,6.985738763944007410e-07,7.128304861167354608e-07,7.270870958390701807e-07,7.413437055614049005e-07,7.556003152837396203e-07,7.698569250060743401e-07,7.841135347284090599e-07,7.983701444507437797e-07,8.126267541730784995e-07,8.268833638954132193e-07,8.411399736177479391e-07,8.553965833400826589e-07,8.696531930624173787e-07,8.839098027847520985e-07,8.981664125070868183e-07 +0.000000000000000000e+00,1.417049511818691853e-08,2.834099023637383706e-08,4.251148535456075394e-08,5.668198047274766751e-08,7.085247559093458108e-08,8.502297070912149464e-08,9.919346582730840821e-08,1.133639609454953218e-07,1.275344560636822353e-07,1.417049511818691622e-07,1.558754463000560890e-07,1.700459414182430158e-07,1.842164365364299426e-07,1.983869316546168694e-07,2.125574267728037962e-07,2.267279218909907230e-07,2.408984170091776762e-07,2.550689121273646295e-07,2.692394072455515828e-07,2.834099023637385361e-07,2.975803974819254893e-07,3.117508926001124426e-07,3.259213877182993959e-07,3.400918828364863491e-07,3.542623779546733024e-07,3.684328730728602557e-07,3.826033681910472090e-07,3.967738633092341622e-07,4.109443584274211155e-07,4.251148535456080688e-07,4.392853486637950221e-07,4.534558437819819753e-07,4.676263389001689286e-07,4.817968340183558819e-07,4.959673291365428351e-07,5.101378242547297884e-07,5.243083193729167417e-07,5.384788144911036950e-07,5.526493096092906482e-07,5.668198047274776015e-07,5.809902998456645548e-07,5.951607949638515081e-07,6.093312900820384613e-07,6.235017852002254146e-07,6.376722803184123679e-07,6.518427754365993211e-07,6.660132705547862744e-07,6.801837656729732277e-07,6.943542607911601810e-07,7.085247559093471342e-07,7.226952510275340875e-07,7.368657461457210408e-07,7.510362412639079941e-07,7.652067363820949473e-07,7.793772315002819006e-07,7.935477266184688539e-07,8.077182217366558071e-07,8.218887168548427604e-07,8.360592119730297137e-07,8.502297070912166670e-07,8.644002022094036202e-07,8.785706973275905735e-07,8.927411924457775268e-07 +0.000000000000000000e+00,1.589809662985238467e-08,3.179619325970476934e-08,4.769428988955715733e-08,6.359238651940955192e-08,7.949048314926194652e-08,9.538857977911434112e-08,1.112866764089667357e-07,1.271847730388191303e-07,1.430828696686715382e-07,1.589809662985239460e-07,1.748790629283763538e-07,1.907771595582287617e-07,2.066752561880811695e-07,2.225733528179335773e-07,2.384714494477859852e-07,2.543695460776384195e-07,2.702676427074908538e-07,2.861657393373432881e-07,3.020638359671957224e-07,3.179619325970481567e-07,3.338600292269005910e-07,3.497581258567530253e-07,3.656562224866054596e-07,3.815543191164578939e-07,3.974524157463103282e-07,4.133505123761627625e-07,4.292486090060151968e-07,4.451467056358676311e-07,4.610448022657200654e-07,4.769428988955724997e-07,4.928409955254249340e-07,5.087390921552773683e-07,5.246371887851298026e-07,5.405352854149822369e-07,5.564333820448346712e-07,5.723314786746871055e-07,5.882295753045395398e-07,6.041276719343919741e-07,6.200257685642444084e-07,6.359238651940968427e-07,6.518219618239492770e-07,6.677200584538017113e-07,6.836181550836541456e-07,6.995162517135065799e-07,7.154143483433590142e-07,7.313124449732114485e-07,7.472105416030638828e-07,7.631086382329163172e-07,7.790067348627687515e-07,7.949048314926211858e-07,8.108029281224736201e-07,8.267010247523260544e-07,8.425991213821784887e-07,8.584972180120309230e-07,8.743953146418833573e-07,8.902934112717357916e-07,9.061915079015882259e-07,9.220896045314406602e-07,9.379877011612930945e-07,9.538857977911456347e-07,9.697838944209980690e-07,9.856819910508505033e-07,1.001580087680702938e-06 +0.000000000000000000e+00,1.425660972235039322e-08,2.851321944470078645e-08,4.276982916705118298e-08,5.702643888940157951e-08,7.128304861175197604e-08,8.553965833410236596e-08,9.979626805645275587e-08,1.140528777788031458e-07,1.283094875011535357e-07,1.425660972235039256e-07,1.568227069458543155e-07,1.710793166682047054e-07,1.853359263905550954e-07,1.995925361129054853e-07,2.138491458352558752e-07,2.281057555576062651e-07,2.423623652799566285e-07,2.566189750023070185e-07,2.708755847246574084e-07,2.851321944470077983e-07,2.993888041693581882e-07,3.136454138917085781e-07,3.279020236140589680e-07,3.421586333364093579e-07,3.564152430587597479e-07,3.706718527811101378e-07,3.849284625034605277e-07,3.991850722258109176e-07,4.134416819481613075e-07,4.276982916705116974e-07,4.419549013928620873e-07,4.562115111152124773e-07,4.704681208375628672e-07,4.847247305599132571e-07,4.989813402822636470e-07,5.132379500046140369e-07,5.274945597269644268e-07,5.417511694493148167e-07,5.560077791716652067e-07,5.702643888940155966e-07,5.845209986163659865e-07,5.987776083387163764e-07,6.130342180610667663e-07,6.272908277834171562e-07,6.415474375057675461e-07,6.558040472281179361e-07,6.700606569504683260e-07,6.843172666728187159e-07,6.985738763951691058e-07,7.128304861175194957e-07,7.270870958398698856e-07,7.413437055622202755e-07,7.556003152845706655e-07,7.698569250069210554e-07,7.841135347292714453e-07,7.983701444516218352e-07,8.126267541739722251e-07,8.268833638963226150e-07,8.411399736186730050e-07,8.553965833410233949e-07,8.696531930633737848e-07,8.839098027857241747e-07,8.981664125080745646e-07 +0.000000000000000000e+00,1.417049511820316270e-08,2.834099023640632541e-08,4.251148535460948480e-08,5.668198047281264420e-08,7.085247559101580359e-08,8.502297070921896961e-08,9.919346582742213562e-08,1.133639609456253016e-07,1.275344560638284809e-07,1.417049511820316601e-07,1.558754463002348394e-07,1.700459414184380186e-07,1.842164365366411979e-07,1.983869316548443771e-07,2.125574267730475564e-07,2.267279218912507356e-07,2.408984170094539149e-07,2.550689121276570676e-07,2.692394072458602204e-07,2.834099023640633732e-07,2.975803974822665260e-07,3.117508926004696787e-07,3.259213877186728315e-07,3.400918828368759843e-07,3.542623779550791371e-07,3.684328730732822899e-07,3.826033681914854426e-07,3.967738633096885954e-07,4.109443584278917482e-07,4.251148535460949010e-07,4.392853486642980538e-07,4.534558437825012065e-07,4.676263389007043593e-07,4.817968340189075121e-07,4.959673291371106649e-07,5.101378242553138176e-07,5.243083193735169704e-07,5.384788144917201232e-07,5.526493096099232760e-07,5.668198047281264288e-07,5.809902998463295815e-07,5.951607949645327343e-07,6.093312900827358871e-07,6.235017852009390399e-07,6.376722803191421926e-07,6.518427754373453454e-07,6.660132705555484982e-07,6.801837656737516510e-07,6.943542607919548038e-07,7.085247559101579565e-07,7.226952510283611093e-07,7.368657461465642621e-07,7.510362412647674149e-07,7.652067363829705676e-07,7.793772315011737204e-07,7.935477266193768732e-07,8.077182217375800260e-07,8.218887168557831788e-07,8.360592119739863315e-07,8.502297070921894843e-07,8.644002022103926371e-07,8.785706973285957899e-07,8.927411924467989426e-07 +0.000000000000000000e+00,1.589809662986810772e-08,3.179619325973621544e-08,4.769428988960432647e-08,6.359238651947244412e-08,7.949048314934056177e-08,9.538857977920867942e-08,1.112866764090767971e-07,1.271847730389449147e-07,1.430828696688130456e-07,1.589809662986811765e-07,1.748790629285493074e-07,1.907771595584174382e-07,2.066752561882855691e-07,2.225733528181537000e-07,2.384714494480218309e-07,2.543695460778899882e-07,2.702676427077581456e-07,2.861657393376263029e-07,3.020638359674944603e-07,3.179619325973626176e-07,3.338600292272307750e-07,3.497581258570989324e-07,3.656562224869670897e-07,3.815543191168352471e-07,3.974524157467034044e-07,4.133505123765715618e-07,4.292486090064397191e-07,4.451467056363078765e-07,4.610448022661760338e-07,4.769428988960441912e-07,4.928409955259122956e-07,5.087390921557804000e-07,5.246371887856485044e-07,5.405352854155166088e-07,5.564333820453847132e-07,5.723314786752528176e-07,5.882295753051209221e-07,6.041276719349890265e-07,6.200257685648571309e-07,6.359238651947252353e-07,6.518219618245933397e-07,6.677200584544614441e-07,6.836181550843295485e-07,6.995162517141976529e-07,7.154143483440657574e-07,7.313124449739338618e-07,7.472105416038019662e-07,7.631086382336700706e-07,7.790067348635381750e-07,7.949048314934062794e-07,8.108029281232743838e-07,8.267010247531424882e-07,8.425991213830105927e-07,8.584972180128786971e-07,8.743953146427468015e-07,8.902934112726149059e-07,9.061915079024830103e-07,9.220896045323511147e-07,9.379877011622192191e-07,9.538857977920873235e-07,9.697838944219554280e-07,9.856819910518235324e-07,1.001580087681691637e-06 +0.000000000000000000e+00,1.475123889226589031e-08,2.950247778453178063e-08,4.425371667679767094e-08,5.900495556906356126e-08,7.375619446132945819e-08,8.850743335359535512e-08,1.032586722458612521e-07,1.180099111381271490e-07,1.327611500303930459e-07,1.475123889226589428e-07,1.622636278149248398e-07,1.770148667071907367e-07,1.917661055994566336e-07,2.065173444917225306e-07,2.212685833839884275e-07,2.360198222762543244e-07,2.507710611685202214e-07,2.655223000607860918e-07,2.802735389530519623e-07,2.950247778453178328e-07,3.097760167375837032e-07,3.245272556298495737e-07,3.392784945221154441e-07,3.540297334143813146e-07,3.687809723066471851e-07,3.835322111989130555e-07,3.982834500911789260e-07,4.130346889834447964e-07,4.277859278757106669e-07,4.425371667679765374e-07,4.572884056602424078e-07,4.720396445525082783e-07,4.867908834447741488e-07,5.015421223370400192e-07,5.162933612293058897e-07,5.310446001215717601e-07,5.457958390138376306e-07,5.605470779061035011e-07,5.752983167983693715e-07,5.900495556906352420e-07,6.048007945829011124e-07,6.195520334751669829e-07,6.343032723674328534e-07,6.490545112596987238e-07,6.638057501519645943e-07,6.785569890442304648e-07,6.933082279364963352e-07,7.080594668287622057e-07,7.228107057210280761e-07,7.375619446132939466e-07,7.523131835055598171e-07,7.670644223978256875e-07,7.818156612900915580e-07,7.965669001823574285e-07,8.113181390746232989e-07,8.260693779668891694e-07,8.408206168591550398e-07,8.555718557514209103e-07,8.703230946436867808e-07,8.850743335359526512e-07,8.998255724282185217e-07,9.145768113204843921e-07,9.293280502127502626e-07 +0.000000000000000000e+00,1.445870886242501510e-08,2.891741772485003020e-08,4.337612658727504530e-08,5.783483544970006040e-08,7.229354431212507549e-08,8.675225317455009059e-08,1.012109620369751057e-07,1.156696708994001208e-07,1.301283797618251491e-07,1.445870886242501775e-07,1.590457974866752058e-07,1.735045063491002341e-07,1.879632152115252625e-07,2.024219240739502908e-07,2.168806329363753191e-07,2.313393417988003475e-07,2.457980506612253758e-07,2.602567595236504041e-07,2.747154683860754325e-07,2.891741772485004608e-07,3.036328861109254891e-07,3.180915949733505175e-07,3.325503038357755458e-07,3.470090126982005741e-07,3.614677215606256025e-07,3.759264304230506308e-07,3.903851392854756591e-07,4.048438481479006875e-07,4.193025570103257158e-07,4.337612658727507441e-07,4.482199747351757725e-07,4.626786835976008008e-07,4.771373924600258821e-07,4.915961013224509634e-07,5.060548101848760446e-07,5.205135190473011259e-07,5.349722279097262072e-07,5.494309367721512884e-07,5.638896456345763697e-07,5.783483544970014510e-07,5.928070633594265323e-07,6.072657722218516135e-07,6.217244810842766948e-07,6.361831899467017761e-07,6.506418988091268574e-07,6.651006076715519386e-07,6.795593165339770199e-07,6.940180253964021012e-07,7.084767342588271825e-07,7.229354431212522637e-07,7.373941519836773450e-07,7.518528608461024263e-07,7.663115697085275075e-07,7.807702785709525888e-07,7.952289874333776701e-07,8.096876962958027514e-07,8.241464051582278326e-07,8.386051140206529139e-07,8.530638228830779952e-07,8.675225317455030765e-07,8.819812406079281577e-07,8.964399494703532390e-07,9.108986583327783203e-07 +0.000000000000000000e+00,1.639544564301241777e-08,3.279089128602483553e-08,4.918633692903725330e-08,6.558178257204967107e-08,8.197722821506208883e-08,9.837267385807450660e-08,1.147681195010869244e-07,1.311635651440993421e-07,1.475590107871117599e-07,1.639544564301241777e-07,1.803499020731365954e-07,1.967453477161490132e-07,2.131407933591614310e-07,2.295362390021738487e-07,2.459316846451862665e-07,2.623271302881986843e-07,2.787225759312111020e-07,2.951180215742235198e-07,3.115134672172359376e-07,3.279089128602483553e-07,3.443043585032607731e-07,3.606998041462731909e-07,3.770952497892856086e-07,3.934906954322980264e-07,4.098861410753104442e-07,4.262815867183228619e-07,4.426770323613352797e-07,4.590724780043476975e-07,4.754679236473601152e-07,4.918633692903725330e-07,5.082588149333849508e-07,5.246542605763973685e-07,5.410497062194097863e-07,5.574451518624222041e-07,5.738405975054346218e-07,5.902360431484470396e-07,6.066314887914594574e-07,6.230269344344718751e-07,6.394223800774842929e-07,6.558178257204967107e-07,6.722132713635091284e-07,6.886087170065215462e-07,7.050041626495339640e-07,7.213996082925463817e-07,7.377950539355587995e-07,7.541904995785712173e-07,7.705859452215836350e-07,7.869813908645960528e-07,8.033768365076084706e-07,8.197722821506208883e-07,8.361677277936333061e-07,8.525631734366457239e-07,8.689586190796581416e-07,8.853540647226705594e-07,9.017495103656829772e-07,9.181449560086953949e-07,9.345404016517078127e-07,9.509358472947202305e-07,9.673312929377326482e-07,9.837267385807450660e-07,1.000122184223757484e-06,1.016517629866769902e-06,1.032913075509782319e-06 +0.000000000000000000e+00,1.475123889227963806e-08,2.950247778455927611e-08,4.425371667683891748e-08,5.900495556911855884e-08,7.375619446139820021e-08,8.850743335367783495e-08,1.032586722459574697e-07,1.180099111382371044e-07,1.327611500305167392e-07,1.475123889227963739e-07,1.622636278150760087e-07,1.770148667073556434e-07,1.917661055996352782e-07,2.065173444919149129e-07,2.212685833841945477e-07,2.360198222764741824e-07,2.507710611687537907e-07,2.655223000610334254e-07,2.802735389533130602e-07,2.950247778455926949e-07,3.097760167378723297e-07,3.245272556301519644e-07,3.392784945224315992e-07,3.540297334147112339e-07,3.687809723069908687e-07,3.835322111992705034e-07,3.982834500915501382e-07,4.130346889838297729e-07,4.277859278761094077e-07,4.425371667683890424e-07,4.572884056606686772e-07,4.720396445529483119e-07,4.867908834452279467e-07,5.015421223375075814e-07,5.162933612297872162e-07,5.310446001220668509e-07,5.457958390143464856e-07,5.605470779066261204e-07,5.752983167989057551e-07,5.900495556911853899e-07,6.048007945834650246e-07,6.195520334757446594e-07,6.343032723680242941e-07,6.490545112603039289e-07,6.638057501525835636e-07,6.785569890448631984e-07,6.933082279371428331e-07,7.080594668294224679e-07,7.228107057217021026e-07,7.375619446139817374e-07,7.523131835062613721e-07,7.670644223985410069e-07,7.818156612908206416e-07,7.965669001831002763e-07,8.113181390753799111e-07,8.260693779676595458e-07,8.408206168599391806e-07,8.555718557522188153e-07,8.703230946444984501e-07,8.850743335367780848e-07,8.998255724290577196e-07,9.145768113213373543e-07,9.293280502136169891e-07 +0.000000000000000000e+00,1.445870886243977366e-08,2.891741772487954731e-08,4.337612658731932262e-08,5.783483544975910124e-08,7.229354431219888648e-08,8.675225317463867171e-08,1.012109620370784569e-07,1.156696708995182422e-07,1.301283797619580274e-07,1.445870886243978259e-07,1.590457974868376244e-07,1.735045063492774228e-07,1.879632152117172213e-07,2.024219240741570198e-07,2.168806329365968182e-07,2.313393417990366167e-07,2.457980506614764152e-07,2.602567595239162137e-07,2.747154683863560121e-07,2.891741772487958106e-07,3.036328861112356091e-07,3.180915949736754075e-07,3.325503038361152060e-07,3.470090126985550045e-07,3.614677215609948030e-07,3.759264304234346014e-07,3.903851392858743999e-07,4.048438481483141984e-07,4.193025570107539968e-07,4.337612658731937953e-07,4.482199747356335938e-07,4.626786835980733922e-07,4.771373924605131378e-07,4.915961013229529363e-07,5.060548101853927347e-07,5.205135190478325332e-07,5.349722279102723317e-07,5.494309367727121301e-07,5.638896456351519286e-07,5.783483544975917271e-07,5.928070633600315255e-07,6.072657722224713240e-07,6.217244810849111225e-07,6.361831899473509210e-07,6.506418988097907194e-07,6.651006076722305179e-07,6.795593165346703164e-07,6.940180253971101148e-07,7.084767342595499133e-07,7.229354431219897118e-07,7.373941519844295103e-07,7.518528608468693087e-07,7.663115697093091072e-07,7.807702785717489057e-07,7.952289874341887041e-07,8.096876962966285026e-07,8.241464051590683011e-07,8.386051140215080996e-07,8.530638228839478980e-07,8.675225317463876965e-07,8.819812406088274950e-07,8.964399494712672934e-07,9.108986583337070919e-07 +0.000000000000000000e+00,1.639544564302658241e-08,3.279089128605316481e-08,4.918633692907975053e-08,6.558178257210634286e-08,8.197722821513293520e-08,9.837267385815952753e-08,1.147681195011861199e-07,1.311635651442127122e-07,1.475590107872392913e-07,1.639544564302658704e-07,1.803499020732924495e-07,1.967453477163190286e-07,2.131407933593456077e-07,2.295362390023721868e-07,2.459316846453987659e-07,2.623271302884253715e-07,2.787225759314519770e-07,2.951180215744785826e-07,3.115134672175051882e-07,3.279089128605317937e-07,3.443043585035583993e-07,3.606998041465850049e-07,3.770952497896116104e-07,3.934906954326382160e-07,4.098861410756648216e-07,4.262815867186914271e-07,4.426770323617180327e-07,4.590724780047446383e-07,4.754679236477712438e-07,4.918633692907978494e-07,5.082588149338244550e-07,5.246542605768510605e-07,5.410497062198776661e-07,5.574451518629042717e-07,5.738405975059308773e-07,5.902360431489574828e-07,6.066314887919840884e-07,6.230269344350106940e-07,6.394223800780372995e-07,6.558178257210639051e-07,6.722132713640905107e-07,6.886087170071171162e-07,7.050041626501437218e-07,7.213996082931703274e-07,7.377950539361969329e-07,7.541904995792235385e-07,7.705859452222501441e-07,7.869813908652767496e-07,8.033768365083033552e-07,8.197722821513299608e-07,8.361677277943565663e-07,8.525631734373831719e-07,8.689586190804097775e-07,8.853540647234363831e-07,9.017495103664629886e-07,9.181449560094895942e-07,9.345404016525161998e-07,9.509358472955428053e-07,9.673312929385693050e-07,9.837267385815959106e-07,1.000122184224622516e-06,1.016517629867649122e-06,1.032913075510675727e-06 +0.000000000000000000e+00,1.549357891875922486e-08,3.098715783751844972e-08,4.648073675627767458e-08,6.197431567503689943e-08,7.746789459379611768e-08,9.296147351255533592e-08,1.084550524313145542e-07,1.239486313500737724e-07,1.394422102688329906e-07,1.549357891875922089e-07,1.704293681063514271e-07,1.859229470251106454e-07,2.014165259438698636e-07,2.169101048626290818e-07,2.324036837813883001e-07,2.478972627001474919e-07,2.633908416189066572e-07,2.788844205376658225e-07,2.943779994564249878e-07,3.098715783751841531e-07,3.253651572939433184e-07,3.408587362127024837e-07,3.563523151314616490e-07,3.718458940502208143e-07,3.873394729689799796e-07,4.028330518877391449e-07,4.183266308064983102e-07,4.338202097252574755e-07,4.493137886440166408e-07,4.648073675627758061e-07,4.803009464815349714e-07,4.957945254002941367e-07,5.112881043190533020e-07,5.267816832378124673e-07,5.422752621565716326e-07,5.577688410753307979e-07,5.732624199940899632e-07,5.887559989128491285e-07,6.042495778316082938e-07,6.197431567503674591e-07,6.352367356691266244e-07,6.507303145878857897e-07,6.662238935066449550e-07,6.817174724254041203e-07,6.972110513441632856e-07,7.127046302629224509e-07,7.281982091816816162e-07,7.436917881004407815e-07,7.591853670191999468e-07,7.746789459379591121e-07,7.901725248567182774e-07,8.056661037754774427e-07,8.211596826942366080e-07,8.366532616129957733e-07,8.521468405317549386e-07,8.676404194505141039e-07,8.831339983692732692e-07,8.986275772880324345e-07,9.141211562067915998e-07,9.296147351255507651e-07,9.451083140443099304e-07,9.606018929630690957e-07,9.760954718818282610e-07 +0.000000000000000000e+00,1.510307396990487645e-08,3.020614793980975289e-08,4.530922190971462934e-08,6.041229587961950579e-08,7.551536984952437562e-08,9.061844381942924544e-08,1.057215177893341153e-07,1.208245917592389851e-07,1.359276657291438549e-07,1.510307396990487248e-07,1.661338136689535946e-07,1.812368876388584644e-07,1.963399616087633342e-07,2.114430355786682041e-07,2.265461095485730739e-07,2.416491835184779173e-07,2.567522574883827342e-07,2.718553314582875510e-07,2.869584054281923679e-07,3.020614793980971848e-07,3.171645533680020017e-07,3.322676273379068186e-07,3.473707013078116355e-07,3.624737752777164524e-07,3.775768492476212693e-07,3.926799232175260862e-07,4.077829971874309031e-07,4.228860711573357199e-07,4.379891451272405368e-07,4.530922190971453537e-07,4.681952930670501706e-07,4.832983670369549875e-07,4.984014410068598044e-07,5.135045149767646213e-07,5.286075889466694382e-07,5.437106629165742551e-07,5.588137368864790719e-07,5.739168108563838888e-07,5.890198848262887057e-07,6.041229587961935226e-07,6.192260327660983395e-07,6.343291067360031564e-07,6.494321807059079733e-07,6.645352546758127902e-07,6.796383286457176071e-07,6.947414026156224240e-07,7.098444765855272408e-07,7.249475505554320577e-07,7.400506245253368746e-07,7.551536984952416915e-07,7.702567724651465084e-07,7.853598464350513253e-07,8.004629204049561422e-07,8.155659943748609591e-07,8.306690683447657760e-07,8.457721423146705929e-07,8.608752162845754097e-07,8.759782902544802266e-07,8.910813642243850435e-07,9.061844381942898604e-07,9.212875121641946773e-07,9.363905861340994942e-07,9.514936601040043111e-07 +0.000000000000000000e+00,1.716194458457921326e-08,3.432388916915842652e-08,5.148583375373763979e-08,6.864777833831685305e-08,8.580972292289607293e-08,1.029716675074752928e-07,1.201336120920545127e-07,1.372955566766337326e-07,1.544575012612129524e-07,1.716194458457921723e-07,1.887813904303713922e-07,2.059433350149506121e-07,2.231052795995298320e-07,2.402672241841090254e-07,2.574291687686882188e-07,2.745911133532674122e-07,2.917530579378466056e-07,3.089150025224257990e-07,3.260769471070049924e-07,3.432388916915841858e-07,3.604008362761633792e-07,3.775627808607425727e-07,3.947247254453217661e-07,4.118866700299009595e-07,4.290486146144801529e-07,4.462105591990593463e-07,4.633725037836385397e-07,4.805344483682177331e-07,4.976963929527969265e-07,5.148583375373761199e-07,5.320202821219553133e-07,5.491822267065345068e-07,5.663441712911137002e-07,5.835061158756928936e-07,6.006680604602720870e-07,6.178300050448512804e-07,6.349919496294304738e-07,6.521538942140096672e-07,6.693158387985888606e-07,6.864777833831680540e-07,7.036397279677472475e-07,7.208016725523264409e-07,7.379636171369056343e-07,7.551255617214848277e-07,7.722875063060640211e-07,7.894494508906432145e-07,8.066113954752224079e-07,8.237733400598016013e-07,8.409352846443807947e-07,8.580972292289599881e-07,8.752591738135391816e-07,8.924211183981183750e-07,9.095830629826975684e-07,9.267450075672767618e-07,9.439069521518559552e-07,9.610688967364352545e-07,9.782308413210146596e-07,9.953927859055940648e-07,1.012554730490173470e-06,1.029716675074752875e-06,1.046878619659332280e-06,1.064040564243911685e-06,1.081202508828491091e-06 +0.000000000000000000e+00,1.549357891877105685e-08,3.098715783754211370e-08,4.648073675631317055e-08,6.197431567508422740e-08,7.746789459385527763e-08,9.296147351262632787e-08,1.084550524313973781e-07,1.239486313501684283e-07,1.394422102689394786e-07,1.549357891877105288e-07,1.704293681064815790e-07,1.859229470252526293e-07,2.014165259440236795e-07,2.169101048627947297e-07,2.324036837815657800e-07,2.478972627003368037e-07,2.633908416191078275e-07,2.788844205378788512e-07,2.943779994566498750e-07,3.098715783754208988e-07,3.253651572941919225e-07,3.408587362129629463e-07,3.563523151317339701e-07,3.718458940505049938e-07,3.873394729692760176e-07,4.028330518880470413e-07,4.183266308068180651e-07,4.338202097255890889e-07,4.493137886443601126e-07,4.648073675631311364e-07,4.803009464819021602e-07,4.957945254006731839e-07,5.112881043194442077e-07,5.267816832382152315e-07,5.422752621569862552e-07,5.577688410757572790e-07,5.732624199945283027e-07,5.887559989132993265e-07,6.042495778320703503e-07,6.197431567508413740e-07,6.352367356696123978e-07,6.507303145883834216e-07,6.662238935071544453e-07,6.817174724259254691e-07,6.972110513446964928e-07,7.127046302634675166e-07,7.281982091822385404e-07,7.436917881010095641e-07,7.591853670197805879e-07,7.746789459385516117e-07,7.901725248573226354e-07,8.056661037760936592e-07,8.211596826948646829e-07,8.366532616136357067e-07,8.521468405324067305e-07,8.676404194511777542e-07,8.831339983699487780e-07,8.986275772887198018e-07,9.141211562074908255e-07,9.296147351262618493e-07,9.451083140450328730e-07,9.606018929638038968e-07,9.760954718825749206e-07 +0.000000000000000000e+00,1.510307396991765473e-08,3.020614793983530947e-08,4.530922190975296420e-08,6.041229587967061893e-08,7.551536984958827366e-08,9.061844381950592840e-08,1.057215177894235831e-07,1.208245917593412379e-07,1.359276657292588926e-07,1.510307396991765473e-07,1.661338136690942021e-07,1.812368876390118568e-07,1.963399616089295115e-07,2.114430355788471663e-07,2.265461095487648210e-07,2.416491835186824757e-07,2.567522574886001040e-07,2.718553314585177322e-07,2.869584054284353605e-07,3.020614793983529888e-07,3.171645533682706170e-07,3.322676273381882453e-07,3.473707013081058736e-07,3.624737752780235018e-07,3.775768492479411301e-07,3.926799232178587584e-07,4.077829971877763866e-07,4.228860711576940149e-07,4.379891451276116431e-07,4.530922190975292714e-07,4.681952930674468997e-07,4.832983670373645279e-07,4.984014410072821562e-07,5.135045149771997845e-07,5.286075889471174127e-07,5.437106629170350410e-07,5.588137368869526692e-07,5.739168108568702975e-07,5.890198848267879258e-07,6.041229587967055540e-07,6.192260327666231823e-07,6.343291067365408106e-07,6.494321807064584388e-07,6.645352546763760671e-07,6.796383286462936953e-07,6.947414026162113236e-07,7.098444765861289519e-07,7.249475505560465801e-07,7.400506245259642084e-07,7.551536984958818367e-07,7.702567724657994649e-07,7.853598464357170932e-07,8.004629204056347215e-07,8.155659943755523497e-07,8.306690683454699780e-07,8.457721423153876062e-07,8.608752162853052345e-07,8.759782902552228628e-07,8.910813642251404910e-07,9.061844381950581193e-07,9.212875121649757476e-07,9.363905861348933758e-07,9.514936601048110041e-07 +0.000000000000000000e+00,1.716194458459171362e-08,3.432388916918342723e-08,5.148583375377514085e-08,6.864777833836685446e-08,8.580972292295856808e-08,1.029716675075502817e-07,1.201336120921419953e-07,1.372955566767337089e-07,1.544575012613254225e-07,1.716194458459171362e-07,1.887813904305088498e-07,2.059433350151005634e-07,2.231052795996922770e-07,2.402672241842839906e-07,2.574291687688757307e-07,2.745911133534674708e-07,2.917530579380592109e-07,3.089150025226509510e-07,3.260769471072426910e-07,3.432388916918344311e-07,3.604008362764261712e-07,3.775627808610179113e-07,3.947247254456096514e-07,4.118866700302013915e-07,4.290486146147931316e-07,4.462105591993848716e-07,4.633725037839766117e-07,4.805344483685682989e-07,4.976963929531599860e-07,5.148583375377516732e-07,5.320202821223433603e-07,5.491822267069350475e-07,5.663441712915267346e-07,5.835061158761184218e-07,6.006680604607101089e-07,6.178300050453017960e-07,6.349919496298934832e-07,6.521538942144851703e-07,6.693158387990768575e-07,6.864777833836685446e-07,7.036397279682602318e-07,7.208016725528519189e-07,7.379636171374436061e-07,7.551255617220352932e-07,7.722875063066269804e-07,7.894494508912186675e-07,8.066113954758103547e-07,8.237733400604020418e-07,8.409352846449937289e-07,8.580972292295854161e-07,8.752591738141771032e-07,8.924211183987687904e-07,9.095830629833604775e-07,9.267450075679521647e-07,9.439069521525438518e-07,9.610688967371355390e-07,9.782308413217272261e-07,9.953927859063189133e-07,1.012554730490910600e-06,1.029716675075502288e-06,1.046878619660093975e-06,1.064040564244685662e-06,1.081202508829277349e-06 +0.000000000000000000e+00,1.631855879203719255e-08,3.263711758407438509e-08,4.895567637611158095e-08,6.527423516814878342e-08,8.159279396018598589e-08,9.791135275222318836e-08,1.142299115442603908e-07,1.305484703362975933e-07,1.468670291283347958e-07,1.631855879203719983e-07,1.795041467124092007e-07,1.958227055044464032e-07,2.121412642964836057e-07,2.284598230885208081e-07,2.447783818805579841e-07,2.610969406725951337e-07,2.774154994646322832e-07,2.937340582566694327e-07,3.100526170487065823e-07,3.263711758407437318e-07,3.426897346327808813e-07,3.590082934248180309e-07,3.753268522168551804e-07,3.916454110088923299e-07,4.079639698009294795e-07,4.242825285929666290e-07,4.406010873850037785e-07,4.569196461770409281e-07,4.732382049690780776e-07,4.895567637611152271e-07,5.058753225531523767e-07,5.221938813451895262e-07,5.385124401372266757e-07,5.548309989292638253e-07,5.711495577213009748e-07,5.874681165133381243e-07,6.037866753053752739e-07,6.201052340974124234e-07,6.364237928894495729e-07,6.527423516814867225e-07,6.690609104735238720e-07,6.853794692655610215e-07,7.016980280575981711e-07,7.180165868496353206e-07,7.343351456416724701e-07,7.506537044337096197e-07,7.669722632257467692e-07,7.832908220177839187e-07,7.996093808098210683e-07,8.159279396018582178e-07,8.322464983938953673e-07,8.485650571859325169e-07,8.648836159779696664e-07,8.812021747700068159e-07,8.975207335620439655e-07,9.138392923540811150e-07,9.301578511461182645e-07,9.464764099381554141e-07,9.627949687301926695e-07,9.791135275222298190e-07,9.954320863142669685e-07,1.011750645106304118e-06,1.028069203898341268e-06 +0.000000000000000000e+00,1.590351524613993834e-08,3.180703049227987669e-08,4.771054573841981834e-08,6.361406098455976660e-08,7.951757623069971487e-08,9.542109147683966314e-08,1.113246067229796114e-07,1.272281219691195597e-07,1.431316372152594947e-07,1.590351524613994297e-07,1.749386677075393648e-07,1.908421829536792998e-07,2.067456981998192348e-07,2.226492134459591699e-07,2.385527286920991049e-07,2.544562439382390664e-07,2.703597591843790279e-07,2.862632744305189894e-07,3.021667896766589509e-07,3.180703049227989124e-07,3.339738201689388739e-07,3.498773354150788354e-07,3.657808506612187969e-07,3.816843659073587584e-07,3.975878811534987200e-07,4.134913963996386815e-07,4.293949116457786430e-07,4.452984268919186045e-07,4.612019421380585660e-07,4.771054573841985275e-07,4.930089726303385419e-07,5.089124878764785564e-07,5.248160031226185708e-07,5.407195183687585852e-07,5.566230336148985997e-07,5.725265488610386141e-07,5.884300641071786286e-07,6.043335793533186430e-07,6.202370945994586575e-07,6.361406098455986719e-07,6.520441250917386863e-07,6.679476403378787008e-07,6.838511555840187152e-07,6.997546708301587297e-07,7.156581860762987441e-07,7.315617013224387586e-07,7.474652165685787730e-07,7.633687318147187874e-07,7.792722470608588019e-07,7.951757623069988163e-07,8.110792775531388308e-07,8.269827927992788452e-07,8.428863080454188597e-07,8.587898232915588741e-07,8.746933385376988885e-07,8.905968537838389030e-07,9.065003690299789174e-07,9.224038842761189319e-07,9.383073995222589463e-07,9.542109147683989608e-07,9.701144300145389752e-07,9.860179452606789897e-07,1.001921460506819004e-06 +0.000000000000000000e+00,1.807153424899791293e-08,3.614306849799582586e-08,5.421460274699373548e-08,7.228613699599163849e-08,9.035767124498954149e-08,1.084292054939874445e-07,1.265007397429853343e-07,1.445722739919832240e-07,1.626438082409811138e-07,1.807153424899790036e-07,1.987868767389768933e-07,2.168584109879747831e-07,2.349299452369726729e-07,2.530014794859705627e-07,2.710730137349684524e-07,2.891445479839663422e-07,3.072160822329642320e-07,3.252876164819621217e-07,3.433591507309600115e-07,3.614306849799579013e-07,3.795022192289557910e-07,3.975737534779536808e-07,4.156452877269515706e-07,4.337168219759494603e-07,4.517883562249473501e-07,4.698598904739452399e-07,4.879314247229431297e-07,5.060029589719410194e-07,5.240744932209389092e-07,5.421460274699367990e-07,5.602175617189346887e-07,5.782890959679325785e-07,5.963606302169304683e-07,6.144321644659283580e-07,6.325036987149262478e-07,6.505752329639241376e-07,6.686467672129220274e-07,6.867183014619199171e-07,7.047898357109178069e-07,7.228613699599156967e-07,7.409329042089135864e-07,7.590044384579114762e-07,7.770759727069093660e-07,7.951475069559072557e-07,8.132190412049051455e-07,8.312905754539030353e-07,8.493621097029009250e-07,8.674336439518988148e-07,8.855051782008967046e-07,9.035767124498945944e-07,9.216482466988924841e-07,9.397197809478903739e-07,9.577913151968882637e-07,9.758628494458862593e-07,9.939343836948842550e-07,1.012005917943882251e-06,1.030077452192880246e-06,1.048148986441878242e-06,1.066220520690876238e-06,1.084292054939874233e-06,1.102363589188872229e-06,1.120435123437870225e-06,1.138506657686868220e-06 +0.000000000000000000e+00,1.631855879204753892e-08,3.263711758409507784e-08,4.895567637614261676e-08,6.527423516819015568e-08,8.159279396023769461e-08,9.791135275228523353e-08,1.142299115443327724e-07,1.305484703363803114e-07,1.468670291284278371e-07,1.631855879204753627e-07,1.795041467125228884e-07,1.958227055045704141e-07,2.121412642966179398e-07,2.284598230886654655e-07,2.447783818807129912e-07,2.610969406727605169e-07,2.774154994648080425e-07,2.937340582568555682e-07,3.100526170489030939e-07,3.263711758409506196e-07,3.426897346329981453e-07,3.590082934250456710e-07,3.753268522170931967e-07,3.916454110091407224e-07,4.079639698011882480e-07,4.242825285932357737e-07,4.406010873852832994e-07,4.569196461773308251e-07,4.732382049693783508e-07,4.895567637614258765e-07,5.058753225534734022e-07,5.221938813455209278e-07,5.385124401375684535e-07,5.548309989296159792e-07,5.711495577216635049e-07,5.874681165137110306e-07,6.037866753057585563e-07,6.201052340978060820e-07,6.364237928898536076e-07,6.527423516819011333e-07,6.690609104739486590e-07,6.853794692659961847e-07,7.016980280580437104e-07,7.180165868500912361e-07,7.343351456421387618e-07,7.506537044341862874e-07,7.669722632262338131e-07,7.832908220182813388e-07,7.996093808103288645e-07,8.159279396023763902e-07,8.322464983944239159e-07,8.485650571864714416e-07,8.648836159785189673e-07,8.812021747705664929e-07,8.975207335626140186e-07,9.138392923546615443e-07,9.301578511467090700e-07,9.464764099387565957e-07,9.627949687308042273e-07,9.791135275228519647e-07,9.954320863148997021e-07,1.011750645106947440e-06,1.028069203898995177e-06 +0.000000000000000000e+00,1.590351524615096962e-08,3.180703049230193925e-08,4.771054573845290556e-08,6.361406098460386526e-08,7.951757623075482495e-08,9.542109147690578465e-08,1.113246067230567443e-07,1.272281219692077040e-07,1.431316372153586505e-07,1.590351524615095970e-07,1.749386677076605434e-07,1.908421829538114899e-07,2.067456981999624364e-07,2.226492134461133828e-07,2.385527286922643293e-07,2.544562439384152493e-07,2.703597591845661693e-07,2.862632744307170893e-07,3.021667896768680092e-07,3.180703049230189292e-07,3.339738201691698492e-07,3.498773354153207692e-07,3.657808506614716892e-07,3.816843659076226092e-07,3.975878811537735292e-07,4.134913963999244492e-07,4.293949116460753692e-07,4.452984268922262892e-07,4.612019421383772092e-07,4.771054573845281292e-07,4.930089726306790492e-07,5.089124878768299692e-07,5.248160031229808891e-07,5.407195183691318091e-07,5.566230336152827291e-07,5.725265488614336491e-07,5.884300641075845691e-07,6.043335793537354891e-07,6.202370945998864091e-07,6.361406098460373291e-07,6.520441250921882491e-07,6.679476403383391691e-07,6.838511555844900891e-07,6.997546708306410091e-07,7.156581860767919291e-07,7.315617013229428490e-07,7.474652165690937690e-07,7.633687318152446890e-07,7.792722470613956090e-07,7.951757623075465290e-07,8.110792775536974490e-07,8.269827927998483690e-07,8.428863080459992890e-07,8.587898232921502090e-07,8.746933385383011290e-07,8.905968537844520490e-07,9.065003690306029690e-07,9.224038842767538890e-07,9.383073995229048089e-07,9.542109147690556231e-07,9.701144300152064372e-07,9.860179452613572513e-07,1.001921460507508065e-06 +0.000000000000000000e+00,1.807153424900902362e-08,3.614306849801804724e-08,5.421460274702707417e-08,7.228613699603610772e-08,9.035767124504514126e-08,1.084292054940541748e-07,1.265007397430632084e-07,1.445722739920722419e-07,1.626438082410812755e-07,1.807153424900903090e-07,1.987868767390993425e-07,2.168584109881083761e-07,2.349299452371174096e-07,2.530014794861264167e-07,2.710730137351354238e-07,2.891445479841444309e-07,3.072160822331534379e-07,3.252876164821624450e-07,3.433591507311714521e-07,3.614306849801804592e-07,3.795022192291894663e-07,3.975737534781984733e-07,4.156452877272074804e-07,4.337168219762164875e-07,4.517883562252254946e-07,4.698598904742345016e-07,4.879314247232435087e-07,5.060029589722525158e-07,5.240744932212615229e-07,5.421460274702705299e-07,5.602175617192795370e-07,5.782890959682885441e-07,5.963606302172975512e-07,6.144321644663065583e-07,6.325036987153155653e-07,6.505752329643245724e-07,6.686467672133335795e-07,6.867183014623425866e-07,7.047898357113515936e-07,7.228613699603606007e-07,7.409329042093696078e-07,7.590044384583786149e-07,7.770759727073876219e-07,7.951475069563966290e-07,8.132190412054056361e-07,8.312905754544146432e-07,8.493621097034236503e-07,8.674336439524326573e-07,8.855051782014416644e-07,9.035767124504506715e-07,9.216482466994596786e-07,9.397197809484686856e-07,9.577913151974775868e-07,9.758628494464863822e-07,9.939343836954951775e-07,1.012005917944503973e-06,1.030077452193512768e-06,1.048148986442521563e-06,1.066220520691530359e-06,1.084292054940539154e-06,1.102363589189547949e-06,1.120435123438556745e-06,1.138506657687565540e-06 +0.000000000000000000e+00,1.712592247170011381e-08,3.425184494340022761e-08,5.137776741510034142e-08,6.850368988680045522e-08,8.562961235850056903e-08,1.027555348302006828e-07,1.198814573019007834e-07,1.370073797736008840e-07,1.541333022453009845e-07,1.712592247170010851e-07,1.883851471887011857e-07,2.055110696604012863e-07,2.226369921321013868e-07,2.397629146038014609e-07,2.568888370755015350e-07,2.740147595472016091e-07,2.911406820189016832e-07,3.082666044906017573e-07,3.253925269623018314e-07,3.425184494340019055e-07,3.596443719057019796e-07,3.767702943774020537e-07,3.938962168491021278e-07,4.110221393208022019e-07,4.281480617925022760e-07,4.452739842642023501e-07,4.623999067359024242e-07,4.795258292076024983e-07,4.966517516793025725e-07,5.137776741510026466e-07,5.309035966227027207e-07,5.480295190944027948e-07,5.651554415661028689e-07,5.822813640378029430e-07,5.994072865095030171e-07,6.165332089812030912e-07,6.336591314529031653e-07,6.507850539246032394e-07,6.679109763963033135e-07,6.850368988680033876e-07,7.021628213397034617e-07,7.192887438114035358e-07,7.364146662831036099e-07,7.535405887548036840e-07,7.706665112265037581e-07,7.877924336982038322e-07,8.049183561699039063e-07,8.220442786416039804e-07,8.391702011133040545e-07,8.562961235850041286e-07,8.734220460567042027e-07,8.905479685284042768e-07,9.076738910001043509e-07,9.247998134718044250e-07,9.419257359435044991e-07,9.590516584152045732e-07,9.761775808869045414e-07,9.933035033586045096e-07,1.010429425830304478e-06,1.027555348302004446e-06,1.044681270773704414e-06,1.061807193245404383e-06,1.078933115717104351e-06 +0.000000000000000000e+00,1.672941203178527804e-08,3.345882406357055608e-08,5.018823609535583413e-08,6.691764812714111217e-08,8.364706015892639683e-08,1.003764721907116815e-07,1.171058842224969661e-07,1.338352962542822508e-07,1.505647082860675355e-07,1.672941203178528201e-07,1.840235323496381048e-07,2.007529443814233894e-07,2.174823564132086741e-07,2.342117684449939588e-07,2.509411804767792699e-07,2.676705925085645546e-07,2.844000045403498392e-07,3.011294165721351239e-07,3.178588286039204085e-07,3.345882406357056932e-07,3.513176526674909779e-07,3.680470646992762625e-07,3.847764767310615472e-07,4.015058887628468318e-07,4.182353007946321165e-07,4.349647128264174012e-07,4.516941248582026858e-07,4.684235368899879705e-07,4.851529489217732551e-07,5.018823609535585398e-07,5.186117729853438245e-07,5.353411850171291091e-07,5.520705970489143938e-07,5.688000090806996784e-07,5.855294211124849631e-07,6.022588331442702478e-07,6.189882451760555324e-07,6.357176572078408171e-07,6.524470692396261017e-07,6.691764812714113864e-07,6.859058933031966711e-07,7.026353053349819557e-07,7.193647173667672404e-07,7.360941293985525250e-07,7.528235414303378097e-07,7.695529534621230944e-07,7.862823654939083790e-07,8.030117775256936637e-07,8.197411895574789483e-07,8.364706015892642330e-07,8.532000136210495177e-07,8.699294256528348023e-07,8.866588376846200870e-07,9.033882497164053716e-07,9.201176617481906563e-07,9.368470737799759410e-07,9.535764858117612256e-07,9.703058978435465103e-07,9.870353098753317949e-07,1.003764721907117080e-06,1.020494133938902364e-06,1.037223545970687649e-06,1.053952958002472934e-06 +0.000000000000000000e+00,1.902357538812275425e-08,3.804715077624550851e-08,5.707072616436825945e-08,7.609430155249100378e-08,9.511787694061374811e-08,1.141414523287364924e-07,1.331650277168592368e-07,1.521886031049819811e-07,1.712121784931047254e-07,1.902357538812274697e-07,2.092593292693502141e-07,2.282829046574729584e-07,2.473064800455957292e-07,2.663300554337185265e-07,2.853536308218413237e-07,3.043772062099641210e-07,3.234007815980869183e-07,3.424243569862097155e-07,3.614479323743325128e-07,3.804715077624553101e-07,3.994950831505781073e-07,4.185186585387009046e-07,4.375422339268237019e-07,4.565658093149464991e-07,4.755893847030692964e-07,4.946129600911920937e-07,5.136365354793148909e-07,5.326601108674376882e-07,5.516836862555604855e-07,5.707072616436832828e-07,5.897308370318060800e-07,6.087544124199288773e-07,6.277779878080516746e-07,6.468015631961744718e-07,6.658251385842972691e-07,6.848487139724200664e-07,7.038722893605428636e-07,7.228958647486656609e-07,7.419194401367884582e-07,7.609430155249112554e-07,7.799665909130340527e-07,7.989901663011568500e-07,8.180137416892796472e-07,8.370373170774024445e-07,8.560608924655252418e-07,8.750844678536480390e-07,8.941080432417708363e-07,9.131316186298936336e-07,9.321551940180164308e-07,9.511787694061392281e-07,9.702023447942620254e-07,9.892259201823848226e-07,1.008249495570507620e-06,1.027273070958630417e-06,1.046296646346753214e-06,1.065320221734876012e-06,1.084343797122998809e-06,1.103367372511121606e-06,1.122390947899244404e-06,1.141414523287367201e-06,1.160438098675489998e-06,1.179461674063612795e-06,1.198485249451735593e-06 +0.000000000000000000e+00,1.712592247170909368e-08,3.425184494341818736e-08,5.137776741512728104e-08,6.850368988683637471e-08,8.562961235854547501e-08,1.027555348302545753e-07,1.198814573019636756e-07,1.370073797736727759e-07,1.541333022453818762e-07,1.712592247170909765e-07,1.883851471888000768e-07,2.055110696605091771e-07,2.226369921322182774e-07,2.397629146039273512e-07,2.568888370756364250e-07,2.740147595473454989e-07,2.911406820190545727e-07,3.082666044907636465e-07,3.253925269624727203e-07,3.425184494341817942e-07,3.596443719058908680e-07,3.767702943775999418e-07,3.938962168493090156e-07,4.110221393210180895e-07,4.281480617927271633e-07,4.452739842644362371e-07,4.623999067361453109e-07,4.795258292078543848e-07,4.966517516795634586e-07,5.137776741512725324e-07,5.309035966229816063e-07,5.480295190946906801e-07,5.651554415663997539e-07,5.822813640381088277e-07,5.994072865098179016e-07,6.165332089815269754e-07,6.336591314532360492e-07,6.507850539249451230e-07,6.679109763966541969e-07,6.850368988683632707e-07,7.021628213400723445e-07,7.192887438117814183e-07,7.364146662834904922e-07,7.535405887551995660e-07,7.706665112269086398e-07,7.877924336986177136e-07,8.049183561703267875e-07,8.220442786420358613e-07,8.391702011137449351e-07,8.562961235854540089e-07,8.734220460571630828e-07,8.905479685288721566e-07,9.076738910005812304e-07,9.247998134722903043e-07,9.419257359439993781e-07,9.590516584157085578e-07,9.761775808874178434e-07,9.933035033591271290e-07,1.010429425830836415e-06,1.027555348302545700e-06,1.044681270774254986e-06,1.061807193245964271e-06,1.078933115717673557e-06 +0.000000000000000000e+00,1.672941203179491966e-08,3.345882406358983932e-08,5.018823609538475898e-08,6.691764812717967864e-08,8.364706015897459830e-08,1.003764721907695180e-07,1.171058842225644376e-07,1.338352962543593573e-07,1.505647082861542769e-07,1.672941203179491966e-07,1.840235323497441163e-07,2.007529443815390359e-07,2.174823564133339556e-07,2.342117684451288752e-07,2.509411804769237949e-07,2.676705925087187146e-07,2.844000045405136342e-07,3.011294165723085539e-07,3.178588286041034735e-07,3.345882406358983932e-07,3.513176526676933129e-07,3.680470646994882325e-07,3.847764767312831522e-07,4.015058887630780718e-07,4.182353007948729915e-07,4.349647128266679112e-07,4.516941248584628308e-07,4.684235368902577505e-07,4.851529489220526701e-07,5.018823609538475898e-07,5.186117729856425094e-07,5.353411850174374291e-07,5.520705970492323488e-07,5.688000090810272684e-07,5.855294211128221881e-07,6.022588331446171077e-07,6.189882451764120274e-07,6.357176572082069471e-07,6.524470692400018667e-07,6.691764812717967864e-07,6.859058933035917060e-07,7.026353053353866257e-07,7.193647173671815454e-07,7.360941293989764650e-07,7.528235414307713847e-07,7.695529534625663043e-07,7.862823654943612240e-07,8.030117775261561437e-07,8.197411895579510633e-07,8.364706015897459830e-07,8.532000136215409026e-07,8.699294256533358223e-07,8.866588376851307420e-07,9.033882497169256616e-07,9.201176617487205813e-07,9.368470737805155009e-07,9.535764858123104206e-07,9.703058978441053403e-07,9.870353098759003658e-07,1.003764721907695391e-06,1.020494133939490417e-06,1.037223545971285442e-06,1.053952958003080468e-06 +0.000000000000000000e+00,1.902357538813278299e-08,3.804715077626556598e-08,5.707072616439834898e-08,7.609430155253113197e-08,9.511787694066390834e-08,1.141414523287966847e-07,1.331650277169294611e-07,1.521886031050622375e-07,1.712121784931950138e-07,1.902357538813277902e-07,2.092593292694605666e-07,2.282829046575933430e-07,2.473064800457261193e-07,2.663300554338589222e-07,2.853536308219917250e-07,3.043772062101245279e-07,3.234007815982573307e-07,3.424243569863901336e-07,3.614479323745229364e-07,3.804715077626557392e-07,3.994950831507885421e-07,4.185186585389213449e-07,4.375422339270541478e-07,4.565658093151869506e-07,4.755893847033197535e-07,4.946129600914525563e-07,5.136365354795853062e-07,5.326601108677180561e-07,5.516836862558508060e-07,5.707072616439835559e-07,5.897308370321163058e-07,6.087544124202490557e-07,6.277779878083818056e-07,6.468015631965145556e-07,6.658251385846473055e-07,6.848487139727800554e-07,7.038722893609128053e-07,7.228958647490455552e-07,7.419194401371783051e-07,7.609430155253110550e-07,7.799665909134438049e-07,7.989901663015765548e-07,8.180137416897093047e-07,8.370373170778420546e-07,8.560608924659748045e-07,8.750844678541075544e-07,8.941080432422403043e-07,9.131316186303730542e-07,9.321551940185058041e-07,9.511787694066385540e-07,9.702023447947713039e-07,9.892259201829040538e-07,1.008249495571036804e-06,1.027273070959169554e-06,1.046296646347302304e-06,1.065320221735435053e-06,1.084343797123567803e-06,1.103367372511700553e-06,1.122390947899833303e-06,1.141414523287966053e-06,1.160438098676098803e-06,1.179461674064231553e-06,1.198485249452364303e-06 +0.000000000000000000e+00,1.787497508500336762e-08,3.574995017000673524e-08,5.362492525501010616e-08,7.149990034001348371e-08,8.937487542501686125e-08,1.072498505100202388e-07,1.251248255950236296e-07,1.429998006800270204e-07,1.608747757650304111e-07,1.787497508500338019e-07,1.966247259350371927e-07,2.144997010200405835e-07,2.323746761050439743e-07,2.502496511900473650e-07,2.681246262750507558e-07,2.859996013600541466e-07,3.038745764450575374e-07,3.217495515300609281e-07,3.396245266150643189e-07,3.574995017000677097e-07,3.753744767850711005e-07,3.932494518700744913e-07,4.111244269550778820e-07,4.289994020400812728e-07,4.468743771250846636e-07,4.647493522100880544e-07,4.826243272950914452e-07,5.004993023800948359e-07,5.183742774650982267e-07,5.362492525501016175e-07,5.541242276351050083e-07,5.719992027201083991e-07,5.898741778051117898e-07,6.077491528901151806e-07,6.256241279751185714e-07,6.434991030601219622e-07,6.613740781451253530e-07,6.792490532301287437e-07,6.971240283151321345e-07,7.149990034001355253e-07,7.328739784851389161e-07,7.507489535701423069e-07,7.686239286551456976e-07,7.864989037401490884e-07,8.043738788251524792e-07,8.222488539101558700e-07,8.401238289951592607e-07,8.579988040801626515e-07,8.758737791651660423e-07,8.937487542501694331e-07,9.116237293351728239e-07,9.294987044201762146e-07,9.473736795051796054e-07,9.652486545901831021e-07,9.831236296751864929e-07,1.000998604760189884e-06,1.018873579845193274e-06,1.036748554930196665e-06,1.054623530015200056e-06,1.072498505100203447e-06,1.090373480185206838e-06,1.108248455270210228e-06,1.126123430355213619e-06 +0.000000000000000000e+00,1.750865367107405177e-08,3.501730734214810354e-08,5.252596101322215200e-08,7.003461468429619384e-08,8.754326835537023568e-08,1.050519220264442775e-07,1.225605756975183194e-07,1.400692293685923612e-07,1.575778830396664031e-07,1.750865367107404449e-07,1.925951903818144867e-07,2.101038440528885286e-07,2.276124977239625704e-07,2.451211513950366387e-07,2.626298050661107070e-07,2.801384587371847754e-07,2.976471124082588437e-07,3.151557660793329120e-07,3.326644197504069803e-07,3.501730734214810486e-07,3.676817270925551169e-07,3.851903807636291852e-07,4.026990344347032535e-07,4.202076881057773219e-07,4.377163417768513902e-07,4.552249954479254585e-07,4.727336491189995268e-07,4.902423027900735951e-07,5.077509564611476105e-07,5.252596101322216258e-07,5.427682638032956412e-07,5.602769174743696566e-07,5.777855711454436720e-07,5.952942248165176873e-07,6.128028784875917027e-07,6.303115321586657181e-07,6.478201858297397335e-07,6.653288395008137488e-07,6.828374931718877642e-07,7.003461468429617796e-07,7.178548005140357949e-07,7.353634541851098103e-07,7.528721078561838257e-07,7.703807615272578411e-07,7.878894151983318564e-07,8.053980688694058718e-07,8.229067225404798872e-07,8.404153762115539026e-07,8.579240298826279179e-07,8.754326835537019333e-07,8.929413372247759487e-07,9.104499908958499640e-07,9.279586445669239794e-07,9.454672982379979948e-07,9.629759519090720102e-07,9.804846055801461314e-07,9.979932592512202527e-07,1.015501912922294374e-06,1.033010566593368495e-06,1.050519220264442616e-06,1.068027873935516738e-06,1.085536527606590859e-06,1.103045181277664980e-06 +0.000000000000000000e+00,1.994878615010644092e-08,3.989757230021288185e-08,5.984635845031931616e-08,7.979514460042575046e-08,9.974393075053218477e-08,1.196927169006386323e-07,1.396415030507450799e-07,1.595902892008515274e-07,1.795390753509579749e-07,1.994878615010644225e-07,2.194366476511708700e-07,2.393854338012773176e-07,2.593342199513837386e-07,2.792830061014901597e-07,2.992317922515965808e-07,3.191805784017030019e-07,3.391293645518094229e-07,3.590781507019158440e-07,3.790269368520222651e-07,3.989757230021286861e-07,4.189245091522351072e-07,4.388732953023415283e-07,4.588220814524479494e-07,4.787708676025543175e-07,4.987196537526606856e-07,5.186684399027670538e-07,5.386172260528734219e-07,5.585660122029797900e-07,5.785147983530861582e-07,5.984635845031925263e-07,6.184123706532988944e-07,6.383611568034052626e-07,6.583099429535116307e-07,6.782587291036179988e-07,6.982075152537243670e-07,7.181563014038307351e-07,7.381050875539371032e-07,7.580538737040434714e-07,7.780026598541498395e-07,7.979514460042562076e-07,8.179002321543625758e-07,8.378490183044689439e-07,8.577978044545753120e-07,8.777465906046816802e-07,8.976953767547880483e-07,9.176441629048944164e-07,9.375929490550007846e-07,9.575417352051071527e-07,9.774905213552136267e-07,9.974393075053201007e-07,1.017388093655426575e-06,1.037336879805533049e-06,1.057285665955639523e-06,1.077234452105745997e-06,1.097183238255852471e-06,1.117132024405958945e-06,1.137080810556065419e-06,1.157029596706171893e-06,1.176978382856278367e-06,1.196927169006384841e-06,1.216875955156491315e-06,1.236824741306597789e-06,1.256773527456704263e-06 +0.000000000000000000e+00,1.787497508501155009e-08,3.574995017002310018e-08,5.362492525503465027e-08,7.149990034004620036e-08,8.937487542505774383e-08,1.072498505100692873e-07,1.251248255950808308e-07,1.429998006800923742e-07,1.608747757651039177e-07,1.787497508501154612e-07,1.966247259351270047e-07,2.144997010201385481e-07,2.323746761051500916e-07,2.502496511901616086e-07,2.681246262751731521e-07,2.859996013601846955e-07,3.038745764451962390e-07,3.217495515302077825e-07,3.396245266152193260e-07,3.574995017002308694e-07,3.753744767852424129e-07,3.932494518702539564e-07,4.111244269552654998e-07,4.289994020402770433e-07,4.468743771252885868e-07,4.647493522103001303e-07,4.826243272953116737e-07,5.004993023803232172e-07,5.183742774653347607e-07,5.362492525503463041e-07,5.541242276353578476e-07,5.719992027203693911e-07,5.898741778053809346e-07,6.077491528903924780e-07,6.256241279754040215e-07,6.434991030604155650e-07,6.613740781454271084e-07,6.792490532304386519e-07,6.971240283154501954e-07,7.149990034004617389e-07,7.328739784854732823e-07,7.507489535704848258e-07,7.686239286554963693e-07,7.864989037405079127e-07,8.043738788255194562e-07,8.222488539105309997e-07,8.401238289955425432e-07,8.579988040805540866e-07,8.758737791655656301e-07,8.937487542505771736e-07,9.116237293355887170e-07,9.294987044206002605e-07,9.473736795056118040e-07,9.652486545906233475e-07,9.831236296756349968e-07,1.000998604760646646e-06,1.018873579845658296e-06,1.036748554930669945e-06,1.054623530015681594e-06,1.072498505100693244e-06,1.090373480185704893e-06,1.108248455270716542e-06,1.126123430355728192e-06 +0.000000000000000000e+00,1.750865367108270077e-08,3.501730734216540154e-08,5.252596101324810562e-08,7.003461468433081631e-08,8.754326835541352701e-08,1.050519220264962377e-07,1.225605756975789352e-07,1.400692293686616326e-07,1.575778830397443301e-07,1.750865367108270275e-07,1.925951903819097250e-07,2.101038440529924225e-07,2.276124977240751199e-07,2.451211513951578174e-07,2.626298050662405148e-07,2.801384587373232123e-07,2.976471124084059098e-07,3.151557660794886072e-07,3.326644197505713047e-07,3.501730734216540021e-07,3.676817270927366996e-07,3.851903807638193971e-07,4.026990344349020945e-07,4.202076881059847920e-07,4.377163417770674894e-07,4.552249954481501869e-07,4.727336491192328844e-07,4.902423027903155289e-07,5.077509564613981205e-07,5.252596101324807121e-07,5.427682638035633036e-07,5.602769174746458952e-07,5.777855711457284868e-07,5.952942248168110784e-07,6.128028784878936700e-07,6.303115321589762615e-07,6.478201858300588531e-07,6.653288395011414447e-07,6.828374931722240363e-07,7.003461468433066279e-07,7.178548005143892194e-07,7.353634541854718110e-07,7.528721078565544026e-07,7.703807615276369942e-07,7.878894151987195858e-07,8.053980688698021773e-07,8.229067225408847689e-07,8.404153762119673605e-07,8.579240298830499521e-07,8.754326835541325437e-07,8.929413372252151353e-07,9.104499908962977268e-07,9.279586445673803184e-07,9.454672982384629100e-07,9.629759519095455016e-07,9.804846055806280932e-07,9.979932592517106847e-07,1.015501912922793276e-06,1.033010566593875868e-06,1.050519220264958459e-06,1.068027873936041051e-06,1.085536527607123643e-06,1.103045181278206234e-06 +0.000000000000000000e+00,1.994878615011604284e-08,3.989757230023208567e-08,5.984635845034812851e-08,7.979514460046417135e-08,9.974393075058021419e-08,1.196927169006962570e-07,1.396415030508122866e-07,1.595902892009283162e-07,1.795390753510443458e-07,1.994878615011603754e-07,2.194366476512764050e-07,2.393854338013924611e-07,2.593342199515085172e-07,2.792830061016245733e-07,2.992317922517406293e-07,3.191805784018566854e-07,3.391293645519727415e-07,3.590781507020887975e-07,3.790269368522048536e-07,3.989757230023209097e-07,4.189245091524369658e-07,4.388732953025530218e-07,4.588220814526690779e-07,4.787708676027851340e-07,4.987196537529011371e-07,5.186684399030171402e-07,5.386172260531331434e-07,5.585660122032491465e-07,5.785147983533651496e-07,5.984635845034811528e-07,6.184123706535971559e-07,6.383611568037131590e-07,6.583099429538291622e-07,6.782587291039451653e-07,6.982075152540611684e-07,7.181563014041771716e-07,7.381050875542931747e-07,7.580538737044091778e-07,7.780026598545251810e-07,7.979514460046411841e-07,8.179002321547571872e-07,8.378490183048731904e-07,8.577978044549891935e-07,8.777465906051051966e-07,8.976953767552211998e-07,9.176441629053372029e-07,9.375929490554532060e-07,9.575417352055692092e-07,9.774905213556852123e-07,9.974393075058012154e-07,1.017388093655917219e-06,1.037336879806033222e-06,1.057285665956149225e-06,1.077234452106265228e-06,1.097183238256381231e-06,1.117132024406497234e-06,1.137080810556613237e-06,1.157029596706729240e-06,1.176978382856845244e-06,1.196927169006961247e-06,1.216875955157077250e-06,1.236824741307193253e-06,1.256773527457309256e-06 +0.000000000000000000e+00,1.859364391097695630e-08,3.718728782195391261e-08,5.578093173293086891e-08,7.437457564390782521e-08,9.296821955488478813e-08,1.115618634658617511e-07,1.301555073768387140e-07,1.487491512878156769e-07,1.673427951987926398e-07,1.859364391097696027e-07,2.045300830207465657e-07,2.231237269317235286e-07,2.417173708427004915e-07,2.603110147536774279e-07,2.789046586646543644e-07,2.974983025756313008e-07,3.160919464866082373e-07,3.346855903975851737e-07,3.532792343085621102e-07,3.718728782195390466e-07,3.904665221305159831e-07,4.090601660414929195e-07,4.276538099524698560e-07,4.462474538634467924e-07,4.648410977744237289e-07,4.834347416854006653e-07,5.020283855963776547e-07,5.206220295073546441e-07,5.392156734183316335e-07,5.578093173293086229e-07,5.764029612402856123e-07,5.949966051512626017e-07,6.135902490622395911e-07,6.321838929732165805e-07,6.507775368841935699e-07,6.693711807951705592e-07,6.879648247061475486e-07,7.065584686171245380e-07,7.251521125281015274e-07,7.437457564390785168e-07,7.623394003500555062e-07,7.809330442610324956e-07,7.995266881720094850e-07,8.181203320829864744e-07,8.367139759939634637e-07,8.553076199049404531e-07,8.739012638159174425e-07,8.924949077268944319e-07,9.110885516378714213e-07,9.296821955488484107e-07,9.482758394598254001e-07,9.668694833708023895e-07,9.854631272817793789e-07,1.004056771192756368e-06,1.022650415103733358e-06,1.041244059014710347e-06,1.059837702925687336e-06,1.078431346836664326e-06,1.097024990747641315e-06,1.115618634658618305e-06,1.134212278569595294e-06,1.152805922480572283e-06,1.171399566391549273e-06 +0.000000000000000000e+00,1.859667712780802449e-08,3.719335425561604899e-08,5.579003138342407348e-08,7.438670851123209797e-08,9.298338563904011585e-08,1.115800627668481337e-07,1.301767398946561516e-07,1.487734170224641695e-07,1.673700941502721873e-07,1.859667712780802052e-07,2.045634484058882231e-07,2.231601255336962410e-07,2.417568026615042588e-07,2.603534797893123032e-07,2.789501569171203475e-07,2.975468340449283919e-07,3.161435111727364362e-07,3.347401883005444806e-07,3.533368654283525249e-07,3.719335425561605693e-07,3.905302196839686136e-07,4.091268968117766580e-07,4.277235739395847023e-07,4.463202510673927466e-07,4.649169281952007910e-07,4.835136053230088353e-07,5.021102824508168267e-07,5.207069595786248181e-07,5.393036367064328096e-07,5.579003138342408010e-07,5.764969909620487924e-07,5.950936680898567838e-07,6.136903452176647752e-07,6.322870223454727666e-07,6.508836994732807580e-07,6.694803766010887494e-07,6.880770537288967408e-07,7.066737308567047322e-07,7.252704079845127236e-07,7.438670851123207150e-07,7.624637622401287064e-07,7.810604393679366978e-07,7.996571164957446892e-07,8.182537936235526806e-07,8.368504707513606720e-07,8.554471478791686634e-07,8.740438250069766549e-07,8.926405021347846463e-07,9.112371792625926377e-07,9.298338563904006291e-07,9.484305335182086205e-07,9.670272106460166119e-07,9.856238877738246033e-07,1.004220564901632595e-06,1.022817242029440586e-06,1.041413919157248578e-06,1.060010596285056569e-06,1.078607273412864560e-06,1.097203950540672552e-06,1.115800627668480543e-06,1.134397304796288535e-06,1.152993981924096526e-06,1.171590659051904517e-06 +0.000000000000000000e+00,1.823125525423901847e-08,3.646251050847803695e-08,5.469376576271705873e-08,7.292502101695608713e-08,9.115627627119511553e-08,1.093875315254341439e-07,1.276187867796731723e-07,1.458500420339122007e-07,1.640812972881512291e-07,1.823125525423902575e-07,2.005438077966292859e-07,2.187750630508683143e-07,2.370063183051073427e-07,2.552375735593463976e-07,2.734688288135854260e-07,2.917000840678244544e-07,3.099313393220634828e-07,3.281625945763025112e-07,3.463938498305415396e-07,3.646251050847805680e-07,3.828563603390195964e-07,4.010876155932586248e-07,4.193188708474976532e-07,4.375501261017366816e-07,4.557813813559757100e-07,4.740126366102147384e-07,4.922438918644537668e-07,5.104751471186927952e-07,5.287064023729318236e-07,5.469376576271708520e-07,5.651689128814098804e-07,5.834001681356489088e-07,6.016314233898879372e-07,6.198626786441269656e-07,6.380939338983659940e-07,6.563251891526050224e-07,6.745564444068440508e-07,6.927876996610830792e-07,7.110189549153221076e-07,7.292502101695611360e-07,7.474814654238001644e-07,7.657127206780391928e-07,7.839439759322782212e-07,8.021752311865172496e-07,8.204064864407562780e-07,8.386377416949953064e-07,8.568689969492343348e-07,8.751002522034733632e-07,8.933315074577123916e-07,9.115627627119514200e-07,9.297940179661904484e-07,9.480252732204294768e-07,9.662565284746686110e-07,9.844877837289077453e-07,1.002719038983146880e-06,1.020950294237386014e-06,1.039181549491625148e-06,1.057412804745864282e-06,1.075644060000103417e-06,1.093875315254342551e-06,1.112106570508581685e-06,1.130337825762820820e-06,1.148569081017059954e-06 +0.000000000000000000e+00,2.083090753581580715e-08,4.166181507163161430e-08,6.249272260744742807e-08,8.332363014326324184e-08,1.041545376790790556e-07,1.249854452148948561e-07,1.458163527507106567e-07,1.666472602865264572e-07,1.874781678223422577e-07,2.083090753581580583e-07,2.291399828939738588e-07,2.499708904297896593e-07,2.708017979656054599e-07,2.916327055014212604e-07,3.124636130372370609e-07,3.332945205730528615e-07,3.541254281088686620e-07,3.749563356446844625e-07,3.957872431805002631e-07,4.166181507163160636e-07,4.374490582521318641e-07,4.582799657879476647e-07,4.791108733237634652e-07,4.999417808595792128e-07,5.207726883953949604e-07,5.416035959312107080e-07,5.624345034670264556e-07,5.832654110028422032e-07,6.040963185386579508e-07,6.249272260744736984e-07,6.457581336102894460e-07,6.665890411461051935e-07,6.874199486819209411e-07,7.082508562177366887e-07,7.290817637535524363e-07,7.499126712893681839e-07,7.707435788251839315e-07,7.915744863609996791e-07,8.124053938968154267e-07,8.332363014326311743e-07,8.540672089684469219e-07,8.748981165042626695e-07,8.957290240400784171e-07,9.165599315758941647e-07,9.373908391117099123e-07,9.582217466475256599e-07,9.790526541833414075e-07,9.998835617191571550e-07,1.020714469254972903e-06,1.041545376790788650e-06,1.062376284326604398e-06,1.083207191862420145e-06,1.104038099398235893e-06,1.124869006934051641e-06,1.145699914469867388e-06,1.166530822005683136e-06,1.187361729541498883e-06,1.208192637077314631e-06,1.229023544613130379e-06,1.249854452148946126e-06,1.270685359684761874e-06,1.291516267220577621e-06,1.312347174756393369e-06 +0.000000000000000000e+00,1.859603345945372956e-08,3.719206691890745912e-08,5.578810037836118868e-08,7.438413383781491824e-08,9.298016729726864780e-08,1.115762007567223774e-07,1.301722342161761069e-07,1.487682676756298365e-07,1.673643011350835660e-07,1.859603345945372956e-07,2.045563680539910252e-07,2.231524015134447547e-07,2.417484349728984843e-07,2.603444684323522139e-07,2.789405018918059434e-07,2.975365353512596730e-07,3.161325688107134025e-07,3.347286022701671321e-07,3.533246357296208617e-07,3.719206691890745912e-07,3.905167026485283208e-07,4.091127361079820503e-07,4.277087695674357799e-07,4.463048030268895095e-07,4.649008364863432390e-07,4.834968699457969686e-07,5.020929034052506452e-07,5.206889368647043218e-07,5.392849703241579984e-07,5.578810037836116751e-07,5.764770372430653517e-07,5.950730707025190283e-07,6.136691041619727049e-07,6.322651376214263816e-07,6.508611710808800582e-07,6.694572045403337348e-07,6.880532379997874114e-07,7.066492714592410880e-07,7.252453049186947647e-07,7.438413383781484413e-07,7.624373718376021179e-07,7.810334052970557945e-07,7.996294387565094711e-07,8.182254722159631478e-07,8.368215056754168244e-07,8.554175391348705010e-07,8.740135725943241776e-07,8.926096060537778543e-07,9.112056395132315309e-07,9.298016729726852075e-07,9.483977064321388841e-07,9.669937398915924549e-07,9.855897733510460256e-07,1.004185806810499596e-06,1.022781840269953167e-06,1.041377873729406738e-06,1.059973907188860309e-06,1.078569940648313879e-06,1.097165974107767450e-06,1.115762007567221021e-06,1.134358041026674592e-06,1.152954074486128162e-06,1.171550107945581733e-06 +0.000000000000000000e+00,2.082824449192001025e-08,4.165648898384002051e-08,6.248473347576002745e-08,8.331297796768002778e-08,1.041412224596000281e-07,1.249694669515200284e-07,1.457977114434400155e-07,1.666259559353600026e-07,1.874542004272799897e-07,2.082824449191999768e-07,2.291106894111199639e-07,2.499389339030399510e-07,2.707671783949599381e-07,2.915954228868799252e-07,3.124236673787999123e-07,3.332519118707198993e-07,3.540801563626398864e-07,3.749084008545598735e-07,3.957366453464798606e-07,4.165648898383998477e-07,4.373931343303198348e-07,4.582213788222398219e-07,4.790496233141597560e-07,4.998778678060796902e-07,5.207061122979996244e-07,5.415343567899195585e-07,5.623626012818394927e-07,5.831908457737594268e-07,6.040190902656793610e-07,6.248473347575992951e-07,6.456755792495192293e-07,6.665038237414391634e-07,6.873320682333590976e-07,7.081603127252790317e-07,7.289885572171989659e-07,7.498168017091189000e-07,7.706450462010388342e-07,7.914732906929587683e-07,8.123015351848787025e-07,8.331297796767986366e-07,8.539580241687185708e-07,8.747862686606385049e-07,8.956145131525584391e-07,9.164427576444783732e-07,9.372710021363983074e-07,9.580992466283182415e-07,9.789274911202381757e-07,9.997557356121581099e-07,1.020583980104078044e-06,1.041412224595997978e-06,1.062240469087917912e-06,1.083068713579837846e-06,1.103896958071757781e-06,1.124725202563677715e-06,1.145553447055597649e-06,1.166381691547517583e-06,1.187209936039437517e-06,1.208038180531357451e-06,1.228866425023277386e-06,1.249694669515197320e-06,1.270522914007117254e-06,1.291351158499037188e-06,1.312179402990957122e-06 +0.000000000000000000e+00,1.859364391098466563e-08,3.718728782196933125e-08,5.578093173295399688e-08,7.437457564393866250e-08,9.296821955492332813e-08,1.115618634659079938e-07,1.301555073768926594e-07,1.487491512878773250e-07,1.673427951988619906e-07,1.859364391098466563e-07,2.045300830208313219e-07,2.231237269318159875e-07,2.417173708428006531e-07,2.603110147537853188e-07,2.789046586647699844e-07,2.974983025757546500e-07,3.160919464867393156e-07,3.346855903977239813e-07,3.532792343087086469e-07,3.718728782196933125e-07,3.904665221306779781e-07,4.090601660416626438e-07,4.276538099526473094e-07,4.462474538636319750e-07,4.648410977746166406e-07,4.834347416856013063e-07,5.020283855965860248e-07,5.206220295075707434e-07,5.392156734185554620e-07,5.578093173295401805e-07,5.764029612405248991e-07,5.949966051515096177e-07,6.135902490624943362e-07,6.321838929734790548e-07,6.507775368844637734e-07,6.693711807954484919e-07,6.879648247064332105e-07,7.065584686174179291e-07,7.251521125284026476e-07,7.437457564393873662e-07,7.623394003503720848e-07,7.809330442613568033e-07,7.995266881723415219e-07,8.181203320833262405e-07,8.367139759943109590e-07,8.553076199052956776e-07,8.739012638162803961e-07,8.924949077272651147e-07,9.110885516382498333e-07,9.296821955492345518e-07,9.482758394602192704e-07,9.668694833712040949e-07,9.854631272821889193e-07,1.004056771193173744e-06,1.022650415104158568e-06,1.041244059015143393e-06,1.059837702926128217e-06,1.078431346837113042e-06,1.097024990748097866e-06,1.115618634659082690e-06,1.134212278570067515e-06,1.152805922481052339e-06,1.171399566392037164e-06 +0.000000000000000000e+00,1.859603345945757430e-08,3.719206691891514859e-08,5.578810037837272289e-08,7.438413383783029719e-08,9.298016729728786486e-08,1.115762007567454325e-07,1.301722342162030002e-07,1.487682676756605679e-07,1.673643011351181356e-07,1.859603345945757033e-07,2.045563680540332709e-07,2.231524015134908386e-07,2.417484349729484063e-07,2.603444684324060004e-07,2.789405018918635946e-07,2.975365353513211887e-07,3.161325688107787829e-07,3.347286022702363770e-07,3.533246357296939712e-07,3.719206691891515653e-07,3.905167026486091595e-07,4.091127361080667536e-07,4.277087695675243478e-07,4.463048030269819419e-07,4.649008364864395361e-07,4.834968699458971302e-07,5.020929034053547244e-07,5.206889368648123185e-07,5.392849703242699127e-07,5.578810037837275068e-07,5.764770372431851010e-07,5.950730707026426951e-07,6.136691041621002893e-07,6.322651376215578834e-07,6.508611710810154776e-07,6.694572045404730717e-07,6.880532379999306659e-07,7.066492714593882600e-07,7.252453049188458542e-07,7.438413383783034483e-07,7.624373718377610425e-07,7.810334052972186366e-07,7.996294387566762308e-07,8.182254722161338249e-07,8.368215056755914191e-07,8.554175391350490132e-07,8.740135725945066074e-07,8.926096060539642015e-07,9.112056395134217956e-07,9.298016729728793898e-07,9.483977064323369839e-07,9.669937398917944722e-07,9.855897733512518546e-07,1.004185806810709237e-06,1.022781840270166619e-06,1.041377873729624002e-06,1.059973907189081384e-06,1.078569940648538767e-06,1.097165974107996149e-06,1.115762007567453531e-06,1.134358041026910914e-06,1.152954074486368296e-06,1.171550107945825679e-06 +0.000000000000000000e+00,1.823125525424698257e-08,3.646251050849396514e-08,5.469376576274094770e-08,7.292502101698793027e-08,9.115627627123491284e-08,1.093875315254818954e-07,1.276187867797288912e-07,1.458500420339758870e-07,1.640812972882228828e-07,1.823125525424698786e-07,2.005438077967168744e-07,2.187750630509638702e-07,2.370063183052108660e-07,2.552375735594578883e-07,2.734688288137049106e-07,2.917000840679519328e-07,3.099313393221989551e-07,3.281625945764459774e-07,3.463938498306929997e-07,3.646251050849400219e-07,3.828563603391870442e-07,4.010876155934340665e-07,4.193188708476810888e-07,4.375501261019281110e-07,4.557813813561751333e-07,4.740126366104221556e-07,4.922438918646692308e-07,5.104751471189163060e-07,5.287064023731633812e-07,5.469376576274104564e-07,5.651689128816575316e-07,5.834001681359046068e-07,6.016314233901516821e-07,6.198626786443987573e-07,6.380939338986458325e-07,6.563251891528929077e-07,6.745564444071399829e-07,6.927876996613870581e-07,7.110189549156341333e-07,7.292502101698812085e-07,7.474814654241282838e-07,7.657127206783753590e-07,7.839439759326224342e-07,8.021752311868695094e-07,8.204064864411165846e-07,8.386377416953636598e-07,8.568689969496107350e-07,8.751002522038578102e-07,8.933315074581048855e-07,9.115627627123519607e-07,9.297940179665990359e-07,9.480252732208461111e-07,9.662565284750931863e-07,9.844877837293401556e-07,1.002719038983587125e-06,1.020950294237834094e-06,1.039181549492081064e-06,1.057412804746328033e-06,1.075644060000575002e-06,1.093875315254821972e-06,1.112106570509068941e-06,1.130337825763315910e-06,1.148569081017562880e-06 +0.000000000000000000e+00,2.083090753582528333e-08,4.166181507165056666e-08,6.249272260747585661e-08,8.332363014330114656e-08,1.041545376791264365e-07,1.249854452149517132e-07,1.458163527507769899e-07,1.666472602866022667e-07,1.874781678224275434e-07,2.083090753582528201e-07,2.291399828940780968e-07,2.499708904299033735e-07,2.708017979657286502e-07,2.916327055015539269e-07,3.124636130373792037e-07,3.332945205732044804e-07,3.541254281090297571e-07,3.749563356448550338e-07,3.957872431806803105e-07,4.166181507165055872e-07,4.374490582523308639e-07,4.582799657881561407e-07,4.791108733239813644e-07,4.999417808598066411e-07,5.207726883956319179e-07,5.416035959314571946e-07,5.624345034672824713e-07,5.832654110031077480e-07,6.040963185389330247e-07,6.249272260747583014e-07,6.457581336105835781e-07,6.665890411464088549e-07,6.874199486822341316e-07,7.082508562180594083e-07,7.290817637538846850e-07,7.499126712897099617e-07,7.707435788255352384e-07,7.915744863613605151e-07,8.124053938971857919e-07,8.332363014330110686e-07,8.540672089688363453e-07,8.748981165046616220e-07,8.957290240404868987e-07,9.165599315763121754e-07,9.373908391121374521e-07,9.582217466479627289e-07,9.790526541837880056e-07,9.998835617196132823e-07,1.020714469255438559e-06,1.041545376791263836e-06,1.062376284327089112e-06,1.083207191862914389e-06,1.104038099398739666e-06,1.124869006934564943e-06,1.145699914470390219e-06,1.166530822006215496e-06,1.187361729542040773e-06,1.208192637077866049e-06,1.229023544613691326e-06,1.249854452149516603e-06,1.270685359685341880e-06,1.291516267221167156e-06,1.312347174756992433e-06 +0.000000000000000000e+00,1.292807672933830928e-08,2.585615345867661855e-08,3.878423018801492948e-08,5.171230691735324372e-08,6.464038364669156458e-08,7.756846037602988543e-08,9.049653710536820629e-08,1.034246138347065271e-07,1.163526905640448480e-07,1.292807672933831821e-07,1.422088440227215162e-07,1.551369207520598503e-07,1.680649974813981844e-07,1.809930742107365185e-07,1.939211509400748525e-07,2.068492276694131866e-07,2.197773043987515207e-07,2.327053811280898548e-07,2.456334578574282154e-07,2.585615345867665759e-07,2.714896113161049365e-07,2.844176880454432971e-07,2.973457647747816576e-07,3.102738415041200182e-07,3.232019182334583787e-07,3.361299949627967393e-07,3.490580716921350999e-07,3.619861484214734604e-07,3.749142251508118210e-07,3.878423018801501816e-07,4.007703786094885421e-07,4.136984553388269027e-07,4.266265320681652632e-07,4.395546087975036238e-07,4.524826855268419844e-07,4.654107622561803449e-07,4.783388389855187055e-07,4.912669157148570660e-07,5.041949924441954266e-07,5.171230691735337872e-07,5.300511459028721477e-07,5.429792226322105083e-07,5.559072993615488688e-07,5.688353760908872294e-07,5.817634528202255900e-07,5.946915295495639505e-07,6.076196062789023111e-07,6.205476830082406717e-07,6.334757597375790322e-07,6.464038364669173928e-07,6.593319131962557533e-07,6.722599899255941139e-07,6.851880666549324745e-07,6.981161433842708350e-07,7.110442201136091956e-07,7.239722968429475561e-07,7.369003735722859167e-07,7.498284503016242773e-07,7.627565270309626378e-07,7.756846037603009984e-07,7.886126804896393589e-07,8.015407572189777195e-07,8.144688339483160801e-07 +0.000000000000000000e+00,1.072066736069485093e-08,2.144133472138970186e-08,3.216200208208455444e-08,4.288266944277941033e-08,5.360333680347426622e-08,6.432400416416912211e-08,7.504467152486398462e-08,8.576533888555884713e-08,9.648600624625370964e-08,1.072066736069485722e-07,1.179273409676434347e-07,1.286480083283382972e-07,1.393686756890331597e-07,1.500893430497280222e-07,1.608100104104228847e-07,1.715306777711177472e-07,1.822513451318126097e-07,1.929720124925074722e-07,2.036926798532023347e-07,2.144133472138971972e-07,2.251340145745920597e-07,2.358546819352869223e-07,2.465753492959817848e-07,2.572960166566766473e-07,2.680166840173715098e-07,2.787373513780663723e-07,2.894580187387612348e-07,3.001786860994560973e-07,3.108993534601509598e-07,3.216200208208458223e-07,3.323406881815406848e-07,3.430613555422355473e-07,3.537820229029304099e-07,3.645026902636252724e-07,3.752233576243201349e-07,3.859440249850149974e-07,3.966646923457098599e-07,4.073853597064047224e-07,4.181060270670995849e-07,4.288266944277944474e-07,4.395473617884893099e-07,4.502680291491841724e-07,4.609886965098790349e-07,4.717093638705738975e-07,4.824300312312688129e-07,4.931506985919636754e-07,5.038713659526585379e-07,5.145920333133534004e-07,5.253127006740482629e-07,5.360333680347431255e-07,5.467540353954379880e-07,5.574747027561328505e-07,5.681953701168277130e-07,5.789160374775225755e-07,5.896367048382174380e-07,6.003573721989123005e-07,6.110780395596071630e-07,6.217987069203020255e-07,6.325193742809968880e-07,6.432400416416917505e-07,6.539607090023866130e-07,6.646813763630814756e-07,6.754020437237763381e-07 +0.000000000000000000e+00,1.294641797345576901e-08,2.589283594691153801e-08,3.883925392036730536e-08,5.178567189382306941e-08,6.473208986727884007e-08,7.767850784073461073e-08,9.062492581419038139e-08,1.035713437876461520e-07,1.165177617611019227e-07,1.294641797345576801e-07,1.424105977080134376e-07,1.553570156814691950e-07,1.683034336549249524e-07,1.812498516283807098e-07,1.941962696018364673e-07,2.071426875752922247e-07,2.200891055487479821e-07,2.330355235222037395e-07,2.459819414956595234e-07,2.589283594691153073e-07,2.718747774425710912e-07,2.848211954160268751e-07,2.977676133894826590e-07,3.107140313629384429e-07,3.236604493363942268e-07,3.366068673098500107e-07,3.495532852833057946e-07,3.624997032567615785e-07,3.754461212302173624e-07,3.883925392036731463e-07,4.013389571771289302e-07,4.142853751505847141e-07,4.272317931240404980e-07,4.401782110974962819e-07,4.531246290709520657e-07,4.660710470444078496e-07,4.790174650178636335e-07,4.919638829913194704e-07,5.049103009647753072e-07,5.178567189382311440e-07,5.308031369116869809e-07,5.437495548851428177e-07,5.566959728585986545e-07,5.696423908320544914e-07,5.825888088055103282e-07,5.955352267789661651e-07,6.084816447524220019e-07,6.214280627258778387e-07,6.343744806993336756e-07,6.473208986727895124e-07,6.602673166462453492e-07,6.732137346197011861e-07,6.861601525931570229e-07,6.991065705666128597e-07,7.120529885400686966e-07,7.249994065135245334e-07,7.379458244869803702e-07,7.508922424604362071e-07,7.638386604338920439e-07,7.767850784073478807e-07,7.897314963808037176e-07,8.026779143542595544e-07,8.156243323277153912e-07 +0.000000000000000000e+00,1.386229091981649833e-08,2.772458183963299666e-08,4.158687275944949499e-08,5.544916367926599332e-08,6.931145459908248503e-08,8.317374551889897674e-08,9.703603643871546845e-08,1.108983273585319602e-07,1.247606182783484519e-07,1.386229091981649436e-07,1.524852001179814353e-07,1.663474910377979270e-07,1.802097819576144187e-07,1.940720728774309104e-07,2.079343637972474021e-07,2.217966547170638939e-07,2.356589456368803856e-07,2.495212365566969038e-07,2.633835274765134219e-07,2.772458183963299401e-07,2.911081093161464583e-07,3.049704002359629765e-07,3.188326911557794947e-07,3.326949820755960128e-07,3.465572729954125310e-07,3.604195639152290492e-07,3.742818548350455674e-07,3.881441457548620856e-07,4.020064366746786037e-07,4.158687275944951219e-07,4.297310185143116401e-07,4.435933094341281583e-07,4.574556003539446765e-07,4.713178912737611947e-07,4.851801821935776599e-07,4.990424731133941251e-07,5.129047640332105904e-07,5.267670549530270556e-07,5.406293458728435209e-07,5.544916367926599861e-07,5.683539277124764514e-07,5.822162186322929166e-07,5.960785095521093818e-07,6.099408004719258471e-07,6.238030913917423123e-07,6.376653823115587776e-07,6.515276732313752428e-07,6.653899641511917080e-07,6.792522550710081733e-07,6.931145459908246385e-07,7.069768369106411038e-07,7.208391278304575690e-07,7.347014187502740343e-07,7.485637096700904995e-07,7.624260005899069647e-07,7.762882915097234300e-07,7.901505824295398952e-07,8.040128733493563605e-07,8.178751642691728257e-07,8.317374551889892910e-07,8.455997461088057562e-07,8.594620370286222214e-07,8.733243279484386867e-07 +0.000000000000000000e+00,1.139203556082619705e-08,2.278407112165239410e-08,3.417610668247858784e-08,4.556814224330478158e-08,5.696017780413097532e-08,6.835221336495717568e-08,7.974424892578337604e-08,9.113628448660957640e-08,1.025283200474357768e-07,1.139203556082619771e-07,1.253123911690881775e-07,1.367044267299143778e-07,1.480964622907405782e-07,1.594884978515667785e-07,1.708805334123929789e-07,1.822725689732191793e-07,1.936646045340453796e-07,2.050566400948715800e-07,2.164486756556977803e-07,2.278407112165239807e-07,2.392327467773501546e-07,2.506247823381763020e-07,2.620168178990024494e-07,2.734088534598285968e-07,2.848008890206547443e-07,2.961929245814808917e-07,3.075849601423070391e-07,3.189769957031331865e-07,3.303690312639593339e-07,3.417610668247854814e-07,3.531531023856116288e-07,3.645451379464377762e-07,3.759371735072639236e-07,3.873292090680900710e-07,3.987212446289162185e-07,4.101132801897423659e-07,4.215053157505685133e-07,4.328973513113946607e-07,4.442893868722208081e-07,4.556814224330469555e-07,4.670734579938731030e-07,4.784654935546992504e-07,4.898575291155253978e-07,5.012495646763515452e-07,5.126416002371776926e-07,5.240336357980038401e-07,5.354256713588299875e-07,5.468177069196561349e-07,5.582097424804822823e-07,5.696017780413084297e-07,5.809938136021345772e-07,5.923858491629607246e-07,6.037778847237868720e-07,6.151699202846130194e-07,6.265619558454391668e-07,6.379539914062653143e-07,6.493460269670914617e-07,6.607380625279176091e-07,6.721300980887437565e-07,6.835221336495699039e-07,6.949141692103960513e-07,7.063062047712221988e-07,7.176982403320483462e-07 +0.000000000000000000e+00,1.251121813965406617e-08,2.502243627930813234e-08,3.753365441896220182e-08,5.004487255861627129e-08,6.255609069827034077e-08,7.506730883792440363e-08,8.757852697757846649e-08,1.000897451172325294e-07,1.126009632568865922e-07,1.251121813965406551e-07,1.376233995361947047e-07,1.501346176758487543e-07,1.626458358155028040e-07,1.751570539551568536e-07,1.876682720948109032e-07,2.001794902344649528e-07,2.126907083741190025e-07,2.252019265137730521e-07,2.377131446534271017e-07,2.502243627930811513e-07,2.627355809327352010e-07,2.752467990723892506e-07,2.877580172120433002e-07,3.002692353516973498e-07,3.127804534913513995e-07,3.252916716310054491e-07,3.378028897706594987e-07,3.503141079103135483e-07,3.628253260499675980e-07,3.753365441896216476e-07,3.878477623292756972e-07,4.003589804689297468e-07,4.128701986085837965e-07,4.253814167482378461e-07,4.378926348878918957e-07,4.504038530275459453e-07,4.629150711671999950e-07,4.754262893068540446e-07,4.879375074465081472e-07,5.004487255861621968e-07,5.129599437258162464e-07,5.254711618654702960e-07,5.379823800051243457e-07,5.504935981447783953e-07,5.630048162844324449e-07,5.755160344240864945e-07,5.880272525637405442e-07,6.005384707033945938e-07,6.130496888430486434e-07,6.255609069827026930e-07,6.380721251223567427e-07,6.505833432620107923e-07,6.630945614016648419e-07,6.756057795413188915e-07,6.881169976809729412e-07,7.006282158206269908e-07,7.131394339602810404e-07,7.256506520999350900e-07,7.381618702395891397e-07,7.506730883792431893e-07,7.631843065188972389e-07,7.756955246585512885e-07,7.882067427982053382e-07 +0.000000000000000000e+00,1.294361446415669688e-08,2.588722892831339377e-08,3.883084339247009396e-08,5.177445785662679415e-08,6.471807232078349434e-08,7.766168678494018792e-08,9.060530124909688149e-08,1.035489157132535751e-07,1.164925301774102686e-07,1.294361446415669622e-07,1.423797591057236426e-07,1.553233735698803229e-07,1.682669880340370032e-07,1.812106024981936836e-07,1.941542169623503639e-07,2.070978314265070443e-07,2.200414458906637246e-07,2.329850603548204049e-07,2.459286748189770853e-07,2.588722892831337656e-07,2.718159037472904460e-07,2.847595182114471263e-07,2.977031326756038066e-07,3.106467471397604870e-07,3.235903616039171673e-07,3.365339760680738477e-07,3.494775905322305280e-07,3.624212049963872083e-07,3.753648194605438887e-07,3.883084339247005690e-07,4.012520483888572494e-07,4.141956628530139297e-07,4.271392773171706100e-07,4.400828917813272904e-07,4.530265062454839707e-07,4.659701207096406511e-07,4.789137351737973314e-07,4.918573496379539588e-07,5.048009641021105862e-07,5.177445785662672136e-07,5.306881930304238410e-07,5.436318074945804684e-07,5.565754219587370958e-07,5.695190364228937232e-07,5.824626508870503506e-07,5.954062653512069780e-07,6.083498798153636054e-07,6.212934942795202328e-07,6.342371087436768602e-07,6.471807232078334876e-07,6.601243376719901150e-07,6.730679521361467424e-07,6.860115666003033698e-07,6.989551810644599972e-07,7.118987955286166246e-07,7.248424099927732520e-07,7.377860244569298794e-07,7.507296389210865068e-07,7.636732533852431342e-07,7.766168678493997616e-07,7.895604823135563890e-07,8.025040967777130164e-07,8.154477112418696438e-07 +0.000000000000000000e+00,1.381387132738415579e-08,2.762774265476831158e-08,4.144161398215247068e-08,5.525548530953662978e-08,6.906935663692078888e-08,8.288322796430494136e-08,9.669709929168909384e-08,1.105109706190732463e-07,1.243248419464573856e-07,1.381387132738415248e-07,1.519525846012256641e-07,1.657664559286098033e-07,1.795803272559939426e-07,1.933941985833780818e-07,2.072080699107622211e-07,2.210219412381463603e-07,2.348358125655304995e-07,2.486496838929146653e-07,2.624635552202988310e-07,2.762774265476829967e-07,2.900912978750671624e-07,3.039051692024513281e-07,3.177190405298354938e-07,3.315329118572196596e-07,3.453467831846038253e-07,3.591606545119879910e-07,3.729745258393721567e-07,3.867883971667563224e-07,4.006022684941404881e-07,4.144161398215246539e-07,4.282300111489088196e-07,4.420438824762929853e-07,4.558577538036771510e-07,4.696716251310613167e-07,4.834854964584454824e-07,4.972993677858296482e-07,5.111132391132138139e-07,5.249271104405979796e-07,5.387409817679821453e-07,5.525548530953663110e-07,5.663687244227504767e-07,5.801825957501346425e-07,5.939964670775188082e-07,6.078103384049029739e-07,6.216242097322871396e-07,6.354380810596713053e-07,6.492519523870554710e-07,6.630658237144396368e-07,6.768796950418238025e-07,6.906935663692079682e-07,7.045074376965921339e-07,7.183213090239762996e-07,7.321351803513604653e-07,7.459490516787446311e-07,7.597629230061287968e-07,7.735767943335129625e-07,7.873906656608971282e-07,8.012045369882812939e-07,8.150184083156654596e-07,8.288322796430496254e-07,8.426461509704337911e-07,8.564600222978179568e-07,8.702738936252021225e-07 +0.000000000000000000e+00,1.292807672935643611e-08,2.585615345871287222e-08,3.878423018806930503e-08,5.171230691742573783e-08,6.464038364678217063e-08,7.756846037613861005e-08,9.049653710549504947e-08,1.034246138348514889e-07,1.163526905642079283e-07,1.292807672935643677e-07,1.422088440229208072e-07,1.551369207522772466e-07,1.680649974816336860e-07,1.809930742109901254e-07,1.939211509403465648e-07,2.068492276697030043e-07,2.197773043990594437e-07,2.327053811284158831e-07,2.456334578577723225e-07,2.585615345871287884e-07,2.714896113164852543e-07,2.844176880458417202e-07,2.973457647751981861e-07,3.102738415045546520e-07,3.232019182339111179e-07,3.361299949632675838e-07,3.490580716926240496e-07,3.619861484219805155e-07,3.749142251513369814e-07,3.878423018806934473e-07,4.007703786100499132e-07,4.136984553394063791e-07,4.266265320687628450e-07,4.395546087981193109e-07,4.524826855274757768e-07,4.654107622568322427e-07,4.783388389861887085e-07,4.912669157155451744e-07,5.041949924449016403e-07,5.171230691742581062e-07,5.300511459036145721e-07,5.429792226329710380e-07,5.559072993623275039e-07,5.688353760916839698e-07,5.817634528210404357e-07,5.946915295503969016e-07,6.076196062797533674e-07,6.205476830091098333e-07,6.334757597384662992e-07,6.464038364678227651e-07,6.593319131971792310e-07,6.722599899265356969e-07,6.851880666558921628e-07,6.981161433852486287e-07,7.110442201146050946e-07,7.239722968439615605e-07,7.369003735733180263e-07,7.498284503026744922e-07,7.627565270320309581e-07,7.756846037613874240e-07,7.886126804907438899e-07,8.015407572201003558e-07,8.144688339494568217e-07 +0.000000000000000000e+00,1.072066736071152524e-08,2.144133472142305047e-08,3.216200208213457571e-08,4.288266944284610094e-08,5.360333680355762618e-08,6.432400416426915141e-08,7.504467152498067665e-08,8.576533888569220188e-08,9.648600624640372712e-08,1.072066736071152524e-07,1.179273409678267776e-07,1.286480083285383028e-07,1.393686756892498413e-07,1.500893430499613798e-07,1.608100104106729182e-07,1.715306777713844567e-07,1.822513451320959952e-07,1.929720124928075336e-07,2.036926798535190721e-07,2.144133472142306106e-07,2.251340145749421491e-07,2.358546819356536875e-07,2.465753492963652260e-07,2.572960166570767645e-07,2.680166840177883029e-07,2.787373513784998414e-07,2.894580187392113799e-07,3.001786860999229183e-07,3.108993534606344568e-07,3.216200208213459953e-07,3.323406881820575338e-07,3.430613555427690722e-07,3.537820229034806107e-07,3.645026902641921492e-07,3.752233576249036876e-07,3.859440249856152261e-07,3.966646923463267646e-07,4.073853597070383030e-07,4.181060270677498415e-07,4.288266944284613800e-07,4.395473617891729185e-07,4.502680291498844569e-07,4.609886965105959954e-07,4.717093638713075339e-07,4.824300312320190723e-07,4.931506985927306637e-07,5.038713659534422552e-07,5.145920333141538466e-07,5.253127006748654380e-07,5.360333680355770294e-07,5.467540353962886208e-07,5.574747027570002122e-07,5.681953701177118036e-07,5.789160374784233950e-07,5.896367048391349864e-07,6.003573721998465778e-07,6.110780395605581693e-07,6.217987069212697607e-07,6.325193742819813521e-07,6.432400416426929435e-07,6.539607090034045349e-07,6.646813763641161263e-07,6.754020437248277177e-07 +0.000000000000000000e+00,1.294361446416565029e-08,2.588722892833130057e-08,3.883084339249694755e-08,5.177445785666259453e-08,6.471807232082824151e-08,7.766168678499389510e-08,9.060530124915954870e-08,1.035489157133252023e-07,1.164925301774908559e-07,1.294361446416565095e-07,1.423797591058221631e-07,1.553233735699878167e-07,1.682669880341534703e-07,1.812106024983191239e-07,1.941542169624847775e-07,2.070978314266504311e-07,2.200414458908160846e-07,2.329850603549817382e-07,2.459286748191473918e-07,2.588722892833130719e-07,2.718159037474787520e-07,2.847595182116444320e-07,2.977031326758101121e-07,3.106467471399757922e-07,3.235903616041414722e-07,3.365339760683071523e-07,3.494775905324728324e-07,3.624212049966385124e-07,3.753648194608041925e-07,3.883084339249698726e-07,4.012520483891355526e-07,4.141956628533012327e-07,4.271392773174669127e-07,4.400828917816325928e-07,4.530265062457982729e-07,4.659701207099639529e-07,4.789137351741295801e-07,4.918573496382952072e-07,5.048009641024608343e-07,5.177445785666264614e-07,5.306881930307920886e-07,5.436318074949577157e-07,5.565754219591233428e-07,5.695190364232889699e-07,5.824626508874545971e-07,5.954062653516202242e-07,6.083498798157858513e-07,6.212934942799514784e-07,6.342371087441171056e-07,6.471807232082827327e-07,6.601243376724483598e-07,6.730679521366139869e-07,6.860115666007796141e-07,6.989551810649452412e-07,7.118987955291108683e-07,7.248424099932764954e-07,7.377860244574421226e-07,7.507296389216077497e-07,7.636732533857733768e-07,7.766168678499390040e-07,7.895604823141046311e-07,8.025040967782702582e-07,8.154477112424358853e-07 +0.000000000000000000e+00,1.386229091983424632e-08,2.772458183966849263e-08,4.158687275950273895e-08,5.544916367933698527e-08,6.931145459917123820e-08,8.317374551900549113e-08,9.703603643883974407e-08,1.108983273586739970e-07,1.247606182785082499e-07,1.386229091983425029e-07,1.524852001181767558e-07,1.663474910380110087e-07,1.802097819578452617e-07,1.940720728776795146e-07,2.079343637975137675e-07,2.217966547173480205e-07,2.356589456371822734e-07,2.495212365570165528e-07,2.633835274768508057e-07,2.772458183966850587e-07,2.911081093165193116e-07,3.049704002363535645e-07,3.188326911561878175e-07,3.326949820760220704e-07,3.465572729958563233e-07,3.604195639156905763e-07,3.742818548355248292e-07,3.881441457553590822e-07,4.020064366751933351e-07,4.158687275950275880e-07,4.297310185148618410e-07,4.435933094346960939e-07,4.574556003545303468e-07,4.713178912743645998e-07,4.851801821941988527e-07,4.990424731140331056e-07,5.129047640338673586e-07,5.267670549537016115e-07,5.406293458735358644e-07,5.544916367933701174e-07,5.683539277132043703e-07,5.822162186330386232e-07,5.960785095528728762e-07,6.099408004727071291e-07,6.238030913925413820e-07,6.376653823123756350e-07,6.515276732322098879e-07,6.653899641520441408e-07,6.792522550718783938e-07,6.931145459917126467e-07,7.069768369115468996e-07,7.208391278313811526e-07,7.347014187512154055e-07,7.485637096710496584e-07,7.624260005908839114e-07,7.762882915107181643e-07,7.901505824305524172e-07,8.040128733503866702e-07,8.178751642702209231e-07,8.317374551900551760e-07,8.455997461098894290e-07,8.594620370297236819e-07,8.733243279495579348e-07 +0.000000000000000000e+00,1.139203556084368696e-08,2.278407112168737391e-08,3.417610668253106418e-08,4.556814224337475444e-08,5.696017780421844471e-08,6.835221336506212836e-08,7.974424892590581201e-08,9.113628448674949565e-08,1.025283200475931793e-07,1.139203556084368629e-07,1.253123911692805334e-07,1.367044267301242038e-07,1.480964622909678742e-07,1.594884978518115446e-07,1.708805334126552150e-07,1.822725689734988854e-07,1.936646045343425558e-07,2.050566400951862263e-07,2.164486756560298967e-07,2.278407112168735671e-07,2.392327467777172375e-07,2.506247823385609079e-07,2.620168178994045783e-07,2.734088534602482487e-07,2.848008890210919191e-07,2.961929245819355896e-07,3.075849601427792600e-07,3.189769957036229304e-07,3.303690312644666008e-07,3.417610668253102712e-07,3.531531023861539416e-07,3.645451379469976120e-07,3.759371735078412824e-07,3.873292090686849529e-07,3.987212446295286233e-07,4.101132801903722937e-07,4.215053157512159641e-07,4.328973513120596345e-07,4.442893868729033049e-07,4.556814224337469753e-07,4.670734579945906458e-07,4.784654935554342632e-07,4.898575291162778807e-07,5.012495646771214982e-07,5.126416002379651156e-07,5.240336357988087331e-07,5.354256713596523506e-07,5.468177069204959681e-07,5.582097424813395855e-07,5.696017780421832030e-07,5.809938136030268205e-07,5.923858491638704380e-07,6.037778847247140554e-07,6.151699202855576729e-07,6.265619558464012904e-07,6.379539914072449079e-07,6.493460269680885253e-07,6.607380625289321428e-07,6.721300980897757603e-07,6.835221336506193777e-07,6.949141692114629952e-07,7.063062047723066127e-07,7.176982403331502302e-07 +0.000000000000000000e+00,1.251121813967103826e-08,2.502243627934207652e-08,3.753365441901311644e-08,5.004487255868415966e-08,6.255609069835520289e-08,7.506730883802624611e-08,8.757852697769728933e-08,1.000897451173683326e-07,1.126009632570393758e-07,1.251121813967104322e-07,1.376233995363814755e-07,1.501346176760525187e-07,1.626458358157235619e-07,1.751570539553946051e-07,1.876682720950656484e-07,2.001794902347366916e-07,2.126907083744077348e-07,2.252019265140787780e-07,2.377131446537498213e-07,2.502243627934208645e-07,2.627355809330919077e-07,2.752467990727629509e-07,2.877580172124339942e-07,3.002692353521050374e-07,3.127804534917760806e-07,3.252916716314471238e-07,3.378028897711181670e-07,3.503141079107892103e-07,3.628253260504602535e-07,3.753365441901312967e-07,3.878477623298023399e-07,4.003589804694733832e-07,4.128701986091444264e-07,4.253814167488154696e-07,4.378926348884865128e-07,4.504038530281575561e-07,4.629150711678285993e-07,4.754262893074996425e-07,4.879375074471707387e-07,5.004487255868418348e-07,5.129599437265129310e-07,5.254711618661840272e-07,5.379823800058551233e-07,5.504935981455262195e-07,5.630048162851973157e-07,5.755160344248684118e-07,5.880272525645395080e-07,6.005384707042106042e-07,6.130496888438817003e-07,6.255609069835527965e-07,6.380721251232238926e-07,6.505833432628949888e-07,6.630945614025660850e-07,6.756057795422371811e-07,6.881169976819082773e-07,7.006282158215793735e-07,7.131394339612504696e-07,7.256506521009215658e-07,7.381618702405926620e-07,7.506730883802637581e-07,7.631843065199348543e-07,7.756955246596059504e-07,7.882067427992770466e-07 +0.000000000000000000e+00,1.075490257224736558e-08,2.150980514449473117e-08,3.226470771674209509e-08,4.301961028898945571e-08,5.377451286123681633e-08,6.452941543348417695e-08,7.528431800573154419e-08,8.603922057797891143e-08,9.679412315022627867e-08,1.075490257224736459e-07,1.183039282947210131e-07,1.290588308669683804e-07,1.398137334392157476e-07,1.505686360114631149e-07,1.613235385837104821e-07,1.720784411559578493e-07,1.828333437282052166e-07,1.935882463004525838e-07,2.043431488726999510e-07,2.150980514449473183e-07,2.258529540171946855e-07,2.366078565894420528e-07,2.473627591616894465e-07,2.581176617339368137e-07,2.688725643061841809e-07,2.796274668784315482e-07,2.903823694506789154e-07,3.011372720229262826e-07,3.118921745951736499e-07,3.226470771674210171e-07,3.334019797396683844e-07,3.441568823119157516e-07,3.549117848841631188e-07,3.656666874564104861e-07,3.764215900286578533e-07,3.871764926009052205e-07,3.979313951731525878e-07,4.086862977453999550e-07,4.194412003176473223e-07,4.301961028898946895e-07,4.409510054621420567e-07,4.517059080343894240e-07,4.624608106066367912e-07,4.732157131788841584e-07,4.839706157511315257e-07,4.947255183233788929e-07,5.054804208956262602e-07,5.162353234678736274e-07,5.269902260401209946e-07,5.377451286123683619e-07,5.485000311846157291e-07,5.592549337568630963e-07,5.700098363291104636e-07,5.807647389013578308e-07,5.915196414736051981e-07,6.022745440458525653e-07,6.130294466180999325e-07,6.237843491903472998e-07,6.345392517625946670e-07,6.452941543348420342e-07,6.560490569070894015e-07,6.668039594793367687e-07,6.775588620515841360e-07 +0.000000000000000000e+00,1.062082650448192651e-08,2.124165300896385301e-08,3.186247951344577786e-08,4.248330601792769940e-08,5.310413252240962094e-08,6.372495902689154249e-08,7.434578553137346403e-08,8.496661203585538557e-08,9.558743854033730711e-08,1.062082650448192287e-07,1.168290915493011502e-07,1.274499180537830585e-07,1.380707445582649800e-07,1.486915710627469016e-07,1.593123975672288231e-07,1.699332240717107447e-07,1.805540505761926662e-07,1.911748770806745878e-07,2.017957035851565093e-07,2.124165300896384308e-07,2.230373565941203524e-07,2.336581830986022739e-07,2.442790096030841955e-07,2.548998361075661170e-07,2.655206626120480385e-07,2.761414891165299601e-07,2.867623156210118816e-07,2.973831421254938032e-07,3.080039686299757247e-07,3.186247951344576463e-07,3.292456216389395678e-07,3.398664481434214893e-07,3.504872746479034109e-07,3.611081011523853324e-07,3.717289276568672540e-07,3.823497541613491755e-07,3.929705806658310971e-07,4.035914071703130186e-07,4.142122336747949401e-07,4.248330601792768617e-07,4.354538866837587832e-07,4.460747131882407048e-07,4.566955396927226263e-07,4.673163661972045478e-07,4.779371927016864694e-07,4.885580192061683909e-07,4.991788457106503125e-07,5.097996722151322340e-07,5.204204987196141556e-07,5.310413252240960771e-07,5.416621517285779986e-07,5.522829782330599202e-07,5.629038047375418417e-07,5.735246312420237633e-07,5.841454577465056848e-07,5.947662842509876064e-07,6.053871107554695279e-07,6.160079372599514494e-07,6.266287637644333710e-07,6.372495902689152925e-07,6.478704167733972141e-07,6.584912432778791356e-07,6.691120697823610571e-07 +0.000000000000000000e+00,1.247917697154984309e-08,2.495835394309968618e-08,3.743753091464953258e-08,4.991670788619937898e-08,6.239588485774922538e-08,7.487506182929906516e-08,8.735423880084890494e-08,9.983341577239874472e-08,1.123125927439485845e-07,1.247917697154984243e-07,1.372709466870482773e-07,1.497501236585981303e-07,1.622293006301479833e-07,1.747084776016978363e-07,1.871876545732476894e-07,1.996668315447975424e-07,2.121460085163473954e-07,2.246251854878972484e-07,2.371043624594471014e-07,2.495835394309969544e-07,2.620627164025468075e-07,2.745418933740966605e-07,2.870210703456465135e-07,2.995002473171963665e-07,3.119794242887462195e-07,3.244586012602960725e-07,3.369377782318459256e-07,3.494169552033957786e-07,3.618961321749456316e-07,3.743753091464954846e-07,3.868544861180453376e-07,3.993336630895951906e-07,4.118128400611450437e-07,4.242920170326948967e-07,4.367711940042447497e-07,4.492503709757946027e-07,4.617295479473444557e-07,4.742087249188943087e-07,4.866879018904442147e-07,4.991670788619941206e-07,5.116462558335440266e-07,5.241254328050939326e-07,5.366046097766438385e-07,5.490837867481937445e-07,5.615629637197436504e-07,5.740421406912935564e-07,5.865213176628434623e-07,5.990004946343933683e-07,6.114796716059432743e-07,6.239588485774931802e-07,6.364380255490430862e-07,6.489172025205929921e-07,6.613963794921428981e-07,6.738755564636928040e-07,6.863547334352427100e-07,6.988339104067926159e-07,7.113130873783425219e-07,7.237922643498924279e-07,7.362714413214423338e-07,7.487506182929922398e-07,7.612297952645421457e-07,7.737089722360920517e-07,7.861881492076419576e-07 +0.000000000000000000e+00,1.075490257226246825e-08,2.150980514452493649e-08,3.226470771678740474e-08,4.301961028904987299e-08,5.377451286131234123e-08,6.452941543357480948e-08,7.528431800583727773e-08,8.603922057809974597e-08,9.679412315036221422e-08,1.075490257226246825e-07,1.183039282948871507e-07,1.290588308671496190e-07,1.398137334394120740e-07,1.505686360116745290e-07,1.613235385839369840e-07,1.720784411561994390e-07,1.828333437284618940e-07,1.935882463007243490e-07,2.043431488729868040e-07,2.150980514452492591e-07,2.258529540175117141e-07,2.366078565897741691e-07,2.473627591620366241e-07,2.581176617342990791e-07,2.688725643065615341e-07,2.796274668788239891e-07,2.903823694510864441e-07,3.011372720233488991e-07,3.118921745956113542e-07,3.226470771678738092e-07,3.334019797401362642e-07,3.441568823123987192e-07,3.549117848846611742e-07,3.656666874569236292e-07,3.764215900291860842e-07,3.871764926014485392e-07,3.979313951737109943e-07,4.086862977459734493e-07,4.194412003182359043e-07,4.301961028904983593e-07,4.409510054627608143e-07,4.517059080350232693e-07,4.624608106072857243e-07,4.732157131795481793e-07,4.839706157518106343e-07,4.947255183240730364e-07,5.054804208963354385e-07,5.162353234685978406e-07,5.269902260408602426e-07,5.377451286131226447e-07,5.485000311853850468e-07,5.592549337576474488e-07,5.700098363299098509e-07,5.807647389021722530e-07,5.915196414744346551e-07,6.022745440466970571e-07,6.130294466189594592e-07,6.237843491912218613e-07,6.345392517634842634e-07,6.452941543357466654e-07,6.560490569080090675e-07,6.668039594802714696e-07,6.775588620525338716e-07 +0.000000000000000000e+00,1.062082650449790267e-08,2.124165300899580534e-08,3.186247951349370801e-08,4.248330601799161069e-08,5.310413252248951336e-08,6.372495902698741603e-08,7.434578553148531208e-08,8.496661203598320814e-08,9.558743854048110419e-08,1.062082650449790002e-07,1.168290915494768963e-07,1.274499180539748056e-07,1.380707445584727149e-07,1.486915710629706242e-07,1.593123975674685335e-07,1.699332240719664427e-07,1.805540505764643520e-07,1.911748770809622613e-07,2.017957035854601706e-07,2.124165300899580799e-07,2.230373565944559892e-07,2.336581830989538985e-07,2.442790096034518078e-07,2.548998361079497171e-07,2.655206626124476263e-07,2.761414891169455356e-07,2.867623156214434449e-07,2.973831421259413542e-07,3.080039686304392635e-07,3.186247951349371728e-07,3.292456216394350821e-07,3.398664481439329914e-07,3.504872746484309007e-07,3.611081011529288099e-07,3.717289276574267192e-07,3.823497541619246285e-07,3.929705806664225378e-07,4.035914071709204471e-07,4.142122336754183564e-07,4.248330601799162657e-07,4.354538866844141750e-07,4.460747131889120843e-07,4.566955396934099935e-07,4.673163661979079028e-07,4.779371927024058121e-07,4.885580192069037214e-07,4.991788457114016307e-07,5.097996722158995400e-07,5.204204987203974493e-07,5.310413252248953586e-07,5.416621517293932679e-07,5.522829782338911771e-07,5.629038047383890864e-07,5.735246312428869957e-07,5.841454577473849050e-07,5.947662842518828143e-07,6.053871107563807236e-07,6.160079372608786329e-07,6.266287637653765422e-07,6.372495902698744515e-07,6.478704167743723607e-07,6.584912432788702700e-07,6.691120697833681793e-07 +0.000000000000000000e+00,1.247917697156529152e-08,2.495835394313058303e-08,3.743753091469587455e-08,4.991670788626116606e-08,6.239588485782645096e-08,7.487506182939173586e-08,8.735423880095702075e-08,9.983341577252230565e-08,1.123125927440875905e-07,1.247917697156528754e-07,1.372709466872181603e-07,1.497501236587834452e-07,1.622293006303487301e-07,1.747084776019140150e-07,1.871876545734792999e-07,1.996668315450445848e-07,2.121460085166098697e-07,2.246251854881751546e-07,2.371043624597404395e-07,2.495835394313056980e-07,2.620627164028709564e-07,2.745418933744362148e-07,2.870210703460014732e-07,2.995002473175667317e-07,3.119794242891319901e-07,3.244586012606972485e-07,3.369377782322625070e-07,3.494169552038277654e-07,3.618961321753930238e-07,3.743753091469582822e-07,3.868544861185235407e-07,3.993336630900887991e-07,4.118128400616540575e-07,4.242920170332193159e-07,4.367711940047845744e-07,4.492503709763498328e-07,4.617295479479150912e-07,4.742087249194803497e-07,4.866879018910456081e-07,4.991670788626108665e-07,5.116462558341761249e-07,5.241254328057413834e-07,5.366046097773066418e-07,5.490837867488719002e-07,5.615629637204371587e-07,5.740421406920024171e-07,5.865213176635676755e-07,5.990004946351329339e-07,6.114796716066981924e-07,6.239588485782634508e-07,6.364380255498287092e-07,6.489172025213939676e-07,6.613963794929592261e-07,6.738755564645244845e-07,6.863547334360897429e-07,6.988339104076550014e-07,7.113130873792202598e-07,7.237922643507855182e-07,7.362714413223507766e-07,7.487506182939160351e-07,7.612297952654812935e-07,7.737089722370465519e-07,7.861881492086118104e-07 +0.000000000000000000e+00,1.137515183147145922e-08,2.275030366294291845e-08,3.412545549441438098e-08,4.550060732588584351e-08,5.687575915735730605e-08,6.825091098882876196e-08,7.962606282030021788e-08,9.100121465177167379e-08,1.023763664832431297e-07,1.137515183147145856e-07,1.251266701461860283e-07,1.365018219776574710e-07,1.478769738091289137e-07,1.592521256406003563e-07,1.706272774720717990e-07,1.820024293035432417e-07,1.933775811350146844e-07,2.047527329664861271e-07,2.161278847979575697e-07,2.275030366294290124e-07,2.388781884609004551e-07,2.502533402923718978e-07,2.616284921238433405e-07,2.730036439553147832e-07,2.843787957867862258e-07,2.957539476182576685e-07,3.071290994497291112e-07,3.185042512812005539e-07,3.298794031126719966e-07,3.412545549441434392e-07,3.526297067756148819e-07,3.640048586070863246e-07,3.753800104385577673e-07,3.867551622700292100e-07,3.981303141015006526e-07,4.095054659329720953e-07,4.208806177644435380e-07,4.322557695959149807e-07,4.436309214273864234e-07,4.550060732588578660e-07,4.663812250903293087e-07,4.777563769218008043e-07,4.891315287532722470e-07,5.005066805847436897e-07,5.118818324162151324e-07,5.232569842476865751e-07,5.346321360791580177e-07,5.460072879106294604e-07,5.573824397421009031e-07,5.687575915735723458e-07,5.801327434050437885e-07,5.915078952365152311e-07,6.028830470679866738e-07,6.142581988994581165e-07,6.256333507309295592e-07,6.370085025624010019e-07,6.483836543938724445e-07,6.597588062253438872e-07,6.711339580568153299e-07,6.825091098882867726e-07,6.938842617197582153e-07,7.052594135512296580e-07,7.166345653827011006e-07 +0.000000000000000000e+00,1.103351110918928283e-08,2.206702221837856566e-08,3.310053332756785015e-08,4.413404443675713794e-08,5.516755554594642574e-08,6.620106665513571353e-08,7.723457776432500133e-08,8.826808887351428912e-08,9.930159998270357691e-08,1.103351110918928647e-07,1.213686222010821393e-07,1.324021333102714006e-07,1.434356444194606619e-07,1.544691555286499232e-07,1.655026666378391846e-07,1.765361777470284459e-07,1.875696888562177072e-07,1.986031999654069685e-07,2.096367110745962299e-07,2.206702221837854912e-07,2.317037332929747525e-07,2.427372444021640138e-07,2.537707555113532752e-07,2.648042666205425365e-07,2.758377777297317978e-07,2.868712888389210591e-07,2.979047999481103205e-07,3.089383110572995818e-07,3.199718221664888431e-07,3.310053332756781044e-07,3.420388443848673658e-07,3.530723554940566271e-07,3.641058666032458884e-07,3.751393777124351497e-07,3.861728888216244111e-07,3.972063999308136724e-07,4.082399110400029337e-07,4.192734221491921950e-07,4.303069332583814564e-07,4.413404443675707177e-07,4.523739554767599790e-07,4.634074665859492403e-07,4.744409776951385017e-07,4.854744888043277100e-07,4.965079999135169184e-07,5.075415110227061268e-07,5.185750221318953352e-07,5.296085332410845436e-07,5.406420443502737520e-07,5.516755554594629604e-07,5.627090665686521687e-07,5.737425776778413771e-07,5.847760887870305855e-07,5.958095998962197939e-07,6.068431110054090023e-07,6.178766221145982107e-07,6.289101332237874190e-07,6.399436443329766274e-07,6.509771554421658358e-07,6.620106665513550442e-07,6.730441776605442526e-07,6.840776887697334610e-07,6.951111998789226694e-07 +0.000000000000000000e+00,1.302046262938653294e-08,2.604092525877306588e-08,3.906138788815959551e-08,5.208185051754612514e-08,6.510231314693265476e-08,7.812277577631919101e-08,9.114323840570572726e-08,1.041637010350922635e-07,1.171841636644787998e-07,1.302046262938653360e-07,1.432250889232518722e-07,1.562455515526384085e-07,1.692660141820249447e-07,1.822864768114114810e-07,1.953069394407980172e-07,2.083274020701845535e-07,2.213478646995710897e-07,2.343683273289576260e-07,2.473887899583441358e-07,2.604092525877306191e-07,2.734297152171171024e-07,2.864501778465035857e-07,2.994706404758900690e-07,3.124911031052765523e-07,3.255115657346630356e-07,3.385320283640495189e-07,3.515524909934360022e-07,3.645729536228224855e-07,3.775934162522089688e-07,3.906138788815954521e-07,4.036343415109819354e-07,4.166548041403684187e-07,4.296752667697549021e-07,4.426957293991413854e-07,4.557161920285278687e-07,4.687366546579143520e-07,4.817571172873008353e-07,4.947775799166873186e-07,5.077980425460738019e-07,5.208185051754602852e-07,5.338389678048467685e-07,5.468594304342332518e-07,5.598798930636197351e-07,5.729003556930062184e-07,5.859208183223927017e-07,5.989412809517791850e-07,6.119617435811656684e-07,6.249822062105521517e-07,6.380026688399386350e-07,6.510231314693251183e-07,6.640435940987116016e-07,6.770640567280980849e-07,6.900845193574845682e-07,7.031049819868710515e-07,7.161254446162575348e-07,7.291459072456440181e-07,7.421663698750305014e-07,7.551868325044169847e-07,7.682072951338034680e-07,7.812277577631899514e-07,7.942482203925764347e-07,8.072686830219629180e-07,8.202891456513494013e-07 +0.000000000000000000e+00,1.137515183148399597e-08,2.275030366296799195e-08,3.412545549445198792e-08,4.550060732593598389e-08,5.687575915741997987e-08,6.825091098890397584e-08,7.962606282038797843e-08,9.100121465187198102e-08,1.023763664833559836e-07,1.137515183148399862e-07,1.251266701463239888e-07,1.365018219778079782e-07,1.478769738092919675e-07,1.592521256407759569e-07,1.706272774722599462e-07,1.820024293037439356e-07,1.933775811352279249e-07,2.047527329667119143e-07,2.161278847981959036e-07,2.275030366296798930e-07,2.388781884611638824e-07,2.502533402926478717e-07,2.616284921241318611e-07,2.730036439556158504e-07,2.843787957870998398e-07,2.957539476185838291e-07,3.071290994500678185e-07,3.185042512815518078e-07,3.298794031130357972e-07,3.412545549445197866e-07,3.526297067760037759e-07,3.640048586074877653e-07,3.753800104389717546e-07,3.867551622704557440e-07,3.981303141019397333e-07,4.095054659334237227e-07,4.208806177649077121e-07,4.322557695963917014e-07,4.436309214278756908e-07,4.550060732593596801e-07,4.663812250908436695e-07,4.777563769223276588e-07,4.891315287538115952e-07,5.005066805852955317e-07,5.118818324167794681e-07,5.232569842482634045e-07,5.346321360797473409e-07,5.460072879112312773e-07,5.573824397427152137e-07,5.687575915741991502e-07,5.801327434056830866e-07,5.915078952371670230e-07,6.028830470686509594e-07,6.142581989001348958e-07,6.256333507316188322e-07,6.370085025631027687e-07,6.483836543945867051e-07,6.597588062260706415e-07,6.711339580575545779e-07,6.825091098890385143e-07,6.938842617205224507e-07,7.052594135520063872e-07,7.166345653834903236e-07 +0.000000000000000000e+00,1.103351110920310998e-08,2.206702221840621996e-08,3.310053332760932829e-08,4.413404443681243331e-08,5.516755554601553833e-08,6.620106665521864335e-08,7.723457776442174837e-08,8.826808887362485339e-08,9.930159998282795841e-08,1.103351110920310634e-07,1.213686222012341817e-07,1.324021333104373132e-07,1.434356444196404447e-07,1.544691555288435761e-07,1.655026666380467076e-07,1.765361777472498391e-07,1.875696888564529706e-07,1.986031999656561021e-07,2.096367110748592336e-07,2.206702221840623651e-07,2.317037332932654966e-07,2.427372444024686281e-07,2.537707555116717596e-07,2.648042666208748910e-07,2.758377777300780225e-07,2.868712888392811540e-07,2.979047999484842855e-07,3.089383110576874170e-07,3.199718221668905485e-07,3.310053332760936800e-07,3.420388443852968115e-07,3.530723554944999430e-07,3.641058666037030744e-07,3.751393777129062059e-07,3.861728888221093374e-07,3.972063999313124689e-07,4.082399110405156004e-07,4.192734221497187319e-07,4.303069332589218634e-07,4.413404443681249949e-07,4.523739554773281264e-07,4.634074665865312578e-07,4.744409776957343893e-07,4.854744888049375738e-07,4.965079999141407582e-07,5.075415110233439426e-07,5.185750221325471270e-07,5.296085332417503115e-07,5.406420443509534959e-07,5.516755554601566803e-07,5.627090665693598648e-07,5.737425776785630492e-07,5.847760887877662336e-07,5.958095998969694180e-07,6.068431110061726025e-07,6.178766221153757869e-07,6.289101332245789713e-07,6.399436443337821558e-07,6.509771554429853402e-07,6.620106665521885246e-07,6.730441776613917091e-07,6.840776887705948935e-07,6.951111998797980779e-07 +0.000000000000000000e+00,1.302046262939998289e-08,2.604092525879996579e-08,3.906138788819994868e-08,5.208185051759993158e-08,6.510231314699991447e-08,7.812277577639989737e-08,9.114323840579988026e-08,1.041637010351998632e-07,1.171841636645998461e-07,1.302046262939998289e-07,1.432250889233998118e-07,1.562455515527997947e-07,1.692660141821997776e-07,1.822864768115997605e-07,1.953069394409997434e-07,2.083274020703997263e-07,2.213478646997997092e-07,2.343683273291996921e-07,2.473887899585996750e-07,2.604092525879996579e-07,2.734297152173996408e-07,2.864501778467996237e-07,2.994706404761996066e-07,3.124911031055995895e-07,3.255115657349995724e-07,3.385320283643995553e-07,3.515524909937995382e-07,3.645729536231995211e-07,3.775934162525995040e-07,3.906138788819994868e-07,4.036343415113994697e-07,4.166548041407994526e-07,4.296752667701994355e-07,4.426957293995994184e-07,4.557161920289994013e-07,4.687366546583993842e-07,4.817571172877993142e-07,4.947775799171992441e-07,5.077980425465991741e-07,5.208185051759991040e-07,5.338389678053990340e-07,5.468594304347989639e-07,5.598798930641988939e-07,5.729003556935988239e-07,5.859208183229987538e-07,5.989412809523986838e-07,6.119617435817986137e-07,6.249822062111985437e-07,6.380026688405984736e-07,6.510231314699984036e-07,6.640435940993983335e-07,6.770640567287982635e-07,6.900845193581981935e-07,7.031049819875981234e-07,7.161254446169980534e-07,7.291459072463979833e-07,7.421663698757979133e-07,7.551868325051978432e-07,7.682072951345977732e-07,7.812277577639977031e-07,7.942482203933976331e-07,8.072686830227975631e-07,8.202891456521974930e-07 +0.000000000000000000e+00,1.211222979656100322e-08,2.422445959312200643e-08,3.633668938968301296e-08,4.844891918624401948e-08,6.056114898280502601e-08,7.267337877936602591e-08,8.478560857592702582e-08,9.689783837248802573e-08,1.090100681690490256e-07,1.211222979656100255e-07,1.332345277621710387e-07,1.453467575587320518e-07,1.574589873552930650e-07,1.695712171518540781e-07,1.816834469484150913e-07,1.937956767449761044e-07,2.059079065415371175e-07,2.180201363380981307e-07,2.301323661346591438e-07,2.422445959312201570e-07,2.543568257277811701e-07,2.664690555243421832e-07,2.785812853209031964e-07,2.906935151174642095e-07,3.028057449140252227e-07,3.149179747105862358e-07,3.270302045071472490e-07,3.391424343037082621e-07,3.512546641002692752e-07,3.633668938968302884e-07,3.754791236933913015e-07,3.875913534899523147e-07,3.997035832865133278e-07,4.118158130830743410e-07,4.239280428796353541e-07,4.360402726761963672e-07,4.481525024727573804e-07,4.602647322693183935e-07,4.723769620658794067e-07,4.844891918624404198e-07,4.966014216590013800e-07,5.087136514555623402e-07,5.208258812521233004e-07,5.329381110486842606e-07,5.450503408452452208e-07,5.571625706418061810e-07,5.692748004383671412e-07,5.813870302349281014e-07,5.934992600314890616e-07,6.056114898280500218e-07,6.177237196246109820e-07,6.298359494211719422e-07,6.419481792177329024e-07,6.540604090142938626e-07,6.661726388108548228e-07,6.782848686074157830e-07,6.903970984039767432e-07,7.025093282005377035e-07,7.146215579970986637e-07,7.267337877936596239e-07,7.388460175902205841e-07,7.509582473867815443e-07,7.630704771833425045e-07 +0.000000000000000000e+00,1.174338299727697039e-08,2.348676599455394078e-08,3.523014899183091283e-08,4.697353198910788818e-08,5.871691498638486354e-08,7.046029798366183889e-08,8.220368098093881425e-08,9.394706397821578960e-08,1.056904469754927650e-07,1.174338299727697403e-07,1.291772129700467157e-07,1.409205959673237043e-07,1.526639789646006928e-07,1.644073619618776814e-07,1.761507449591546700e-07,1.878941279564316586e-07,1.996375109537086472e-07,2.113808939509856358e-07,2.231242769482626244e-07,2.348676599455396130e-07,2.466110429428166280e-07,2.583544259400936431e-07,2.700978089373706581e-07,2.818411919346476732e-07,2.935845749319246883e-07,3.053279579292017033e-07,3.170713409264787184e-07,3.288147239237557334e-07,3.405581069210327485e-07,3.523014899183097636e-07,3.640448729155867786e-07,3.757882559128637937e-07,3.875316389101408087e-07,3.992750219074178238e-07,4.110184049046948389e-07,4.227617879019718539e-07,4.345051708992488690e-07,4.462485538965258840e-07,4.579919368938028991e-07,4.697353198910799141e-07,4.814787028883569292e-07,4.932220858856338913e-07,5.049654688829108534e-07,5.167088518801878156e-07,5.284522348774647777e-07,5.401956178747417398e-07,5.519390008720187019e-07,5.636823838692956640e-07,5.754257668665726262e-07,5.871691498638495883e-07,5.989125328611265504e-07,6.106559158584035125e-07,6.223992988556804746e-07,6.341426818529574368e-07,6.458860648502343989e-07,6.576294478475113610e-07,6.693728308447883231e-07,6.811162138420652852e-07,6.928595968393422474e-07,7.046029798366192095e-07,7.163463628338961716e-07,7.280897458311731337e-07,7.398331288284500958e-07 +0.000000000000000000e+00,1.375771765205030446e-08,2.751543530410060893e-08,4.127315295615091174e-08,5.503087060820121124e-08,6.878858826025151736e-08,8.254630591230182348e-08,9.630402356435212960e-08,1.100617412164024357e-07,1.238194588684527418e-07,1.375771765205030347e-07,1.513348941725533276e-07,1.650926118246036205e-07,1.788503294766539134e-07,1.926080471287042063e-07,2.063657647807544991e-07,2.201234824328047920e-07,2.338812000848550849e-07,2.476389177369053778e-07,2.613966353889556442e-07,2.751543530410059106e-07,2.889120706930561770e-07,3.026697883451064434e-07,3.164275059971567099e-07,3.301852236492069763e-07,3.439429413012572427e-07,3.577006589533075091e-07,3.714583766053577755e-07,3.852160942574080419e-07,3.989738119094583083e-07,4.127315295615085748e-07,4.264892472135588412e-07,4.402469648656091076e-07,4.540046825176593740e-07,4.677624001697096404e-07,4.815201178217599068e-07,4.952778354738102262e-07,5.090355531258605455e-07,5.227932707779108649e-07,5.365509884299611842e-07,5.503087060820115036e-07,5.640664237340618229e-07,5.778241413861121423e-07,5.915818590381624617e-07,6.053395766902127810e-07,6.190972943422631004e-07,6.328550119943134197e-07,6.466127296463637391e-07,6.603704472984140584e-07,6.741281649504643778e-07,6.878858826025146971e-07,7.016436002545650165e-07,7.154013179066153358e-07,7.291590355586656552e-07,7.429167532107159745e-07,7.566744708627662939e-07,7.704321885148166132e-07,7.841899061668669326e-07,7.979476238189172520e-07,8.117053414709675713e-07,8.254630591230178907e-07,8.392207767750682100e-07,8.529784944271185294e-07,8.667362120791688487e-07 +0.000000000000000000e+00,1.211222979657109978e-08,2.422445959314219956e-08,3.633668938971330100e-08,4.844891918628440575e-08,6.056114898285551711e-08,7.267337877942662847e-08,8.478560857599773984e-08,9.689783837256885120e-08,1.090100681691399626e-07,1.211222979657110872e-07,1.332345277622822118e-07,1.453467575588533364e-07,1.574589873554244610e-07,1.695712171519955856e-07,1.816834469485667102e-07,1.937956767451378347e-07,2.059079065417089593e-07,2.180201363382800839e-07,2.301323661348512085e-07,2.422445959314223331e-07,2.543568257279934577e-07,2.664690555245645823e-07,2.785812853211357069e-07,2.906935151177068315e-07,3.028057449142779561e-07,3.149179747108490807e-07,3.270302045074202053e-07,3.391424343039913299e-07,3.512546641005624545e-07,3.633668938971335791e-07,3.754791236937047037e-07,3.875913534902758283e-07,3.997035832868469529e-07,4.118158130834180775e-07,4.239280428799892021e-07,4.360402726765603267e-07,4.481525024731314513e-07,4.602647322697025759e-07,4.723769620662737005e-07,4.844891918628447722e-07,4.966014216594157909e-07,5.087136514559868096e-07,5.208258812525578283e-07,5.329381110491288470e-07,5.450503408456998658e-07,5.571625706422708845e-07,5.692748004388419032e-07,5.813870302354129219e-07,5.934992600319839406e-07,6.056114898285549593e-07,6.177237196251259781e-07,6.298359494216969968e-07,6.419481792182680155e-07,6.540604090148390342e-07,6.661726388114100529e-07,6.782848686079810717e-07,6.903970984045520904e-07,7.025093282011231091e-07,7.146215579976941278e-07,7.267337877942651465e-07,7.388460175908361653e-07,7.509582473874071840e-07,7.630704771839782027e-07 +0.000000000000000000e+00,1.174338299728835074e-08,2.348676599457670148e-08,3.523014899186505223e-08,4.697353198915340297e-08,5.871691498644175371e-08,7.046029798373010445e-08,8.220368098101846181e-08,9.394706397830681917e-08,1.056904469755951765e-07,1.174338299728835339e-07,1.291772129701718913e-07,1.409205959674602354e-07,1.526639789647485795e-07,1.644073619620369236e-07,1.761507449593252677e-07,1.878941279566136119e-07,1.996375109539019560e-07,2.113808939511903001e-07,2.231242769484786442e-07,2.348676599457669884e-07,2.466110429430553325e-07,2.583544259403436766e-07,2.700978089376320207e-07,2.818411919349203649e-07,2.935845749322087090e-07,3.053279579294970531e-07,3.170713409267853972e-07,3.288147239240737414e-07,3.405581069213620855e-07,3.523014899186504296e-07,3.640448729159387737e-07,3.757882559132271179e-07,3.875316389105154620e-07,3.992750219078038061e-07,4.110184049050921502e-07,4.227617879023804944e-07,4.345051708996688385e-07,4.462485538969571826e-07,4.579919368942455267e-07,4.697353198915338709e-07,4.814787028888221621e-07,4.932220858861104532e-07,5.049654688833987444e-07,5.167088518806870356e-07,5.284522348779753268e-07,5.401956178752636180e-07,5.519390008725519092e-07,5.636823838698402003e-07,5.754257668671284915e-07,5.871691498644167827e-07,5.989125328617050739e-07,6.106559158589933651e-07,6.223992988562816563e-07,6.341426818535699475e-07,6.458860648508582386e-07,6.576294478481465298e-07,6.693728308454348210e-07,6.811162138427231122e-07,6.928595968400114034e-07,7.046029798372996946e-07,7.163463628345879858e-07,7.280897458318762769e-07,7.398331288291645681e-07 +0.000000000000000000e+00,1.375771765206142839e-08,2.751543530412285678e-08,4.127315295618428351e-08,5.503087060824570694e-08,6.878858826030713037e-08,8.254630591236855379e-08,9.630402356442997722e-08,1.100617412164914006e-07,1.238194588685528241e-07,1.375771765206142607e-07,1.513348941726756974e-07,1.650926118247371341e-07,1.788503294767985707e-07,1.926080471288600074e-07,2.063657647809214440e-07,2.201234824329828807e-07,2.338812000850443174e-07,2.476389177371057540e-07,2.613966353891671907e-07,2.751543530412286273e-07,2.889120706932900640e-07,3.026697883453515007e-07,3.164275059974129373e-07,3.301852236494743740e-07,3.439429413015358106e-07,3.577006589535972473e-07,3.714583766056586840e-07,3.852160942577201206e-07,3.989738119097815573e-07,4.127315295618429939e-07,4.264892472139044306e-07,4.402469648659658673e-07,4.540046825180273039e-07,4.677624001700887406e-07,4.815201178221501773e-07,4.952778354742116139e-07,5.090355531262730506e-07,5.227932707783344872e-07,5.365509884303959239e-07,5.503087060824573606e-07,5.640664237345187972e-07,5.778241413865802339e-07,5.915818590386416705e-07,6.053395766907031072e-07,6.190972943427645439e-07,6.328550119948259805e-07,6.466127296468874172e-07,6.603704472989488538e-07,6.741281649510102905e-07,6.878858826030717272e-07,7.016436002551331638e-07,7.154013179071946005e-07,7.291590355592560372e-07,7.429167532113174738e-07,7.566744708633789105e-07,7.704321885154403471e-07,7.841899061675017838e-07,7.979476238195632205e-07,8.117053414716246571e-07,8.254630591236860938e-07,8.392207767757475304e-07,8.529784944278089671e-07,8.667362120798704038e-07 +0.000000000000000000e+00,1.279910676129712271e-08,2.559821352259424542e-08,3.839732028389136978e-08,5.119642704518849746e-08,6.399553380648562513e-08,7.679464056778275280e-08,8.959374732907988048e-08,1.023928540903770081e-07,1.151919608516741358e-07,1.279910676129712503e-07,1.407901743742683647e-07,1.535892811355654791e-07,1.663883878968625936e-07,1.791874946581597080e-07,1.919866014194568224e-07,2.047857081807539369e-07,2.175848149420510513e-07,2.303839217033481658e-07,2.431830284646452802e-07,2.559821352259423946e-07,2.687812419872395091e-07,2.815803487485366235e-07,2.943794555098337380e-07,3.071785622711308524e-07,3.199776690324279668e-07,3.327767757937250813e-07,3.455758825550221957e-07,3.583749893163193101e-07,3.711740960776164246e-07,3.839732028389135390e-07,3.967723096002106535e-07,4.095714163615077679e-07,4.223705231228048823e-07,4.351696298841019968e-07,4.479687366453991112e-07,4.607678434066962256e-07,4.735669501679933401e-07,4.863660569292904545e-07,4.991651636905876219e-07,5.119642704518847893e-07,5.247633772131819567e-07,5.375624839744791240e-07,5.503615907357762914e-07,5.631606974970734588e-07,5.759598042583706262e-07,5.887589110196677935e-07,6.015580177809649609e-07,6.143571245422621283e-07,6.271562313035592957e-07,6.399553380648564631e-07,6.527544448261536304e-07,6.655535515874507978e-07,6.783526583487479652e-07,6.911517651100451326e-07,7.039508718713422999e-07,7.167499786326394673e-07,7.295490853939366347e-07,7.423481921552338021e-07,7.551472989165309695e-07,7.679464056778281368e-07,7.807455124391253042e-07,7.935446192004224716e-07,8.063437259617196390e-07 +0.000000000000000000e+00,1.246702375666678311e-08,2.493404751333356621e-08,3.740107127000035263e-08,4.986809502666713904e-08,6.233511878333392546e-08,7.480214254000070526e-08,8.726916629666748506e-08,9.973619005333426485e-08,1.122032138100010447e-07,1.246702375666678244e-07,1.371372613233345910e-07,1.496042850800013576e-07,1.620713088366681241e-07,1.745383325933348907e-07,1.870053563500016573e-07,1.994723801066684238e-07,2.119394038633351904e-07,2.244064276200019570e-07,2.368734513766687235e-07,2.493404751333354901e-07,2.618074988900022566e-07,2.742745226466690232e-07,2.867415464033357898e-07,2.992085701600025563e-07,3.116755939166693229e-07,3.241426176733360895e-07,3.366096414300028560e-07,3.490766651866696226e-07,3.615436889433363891e-07,3.740107127000031557e-07,3.864777364566699223e-07,3.989447602133366888e-07,4.114117839700034554e-07,4.238788077266702220e-07,4.363458314833369885e-07,4.488128552400037551e-07,4.612798789966705217e-07,4.737469027533372882e-07,4.862139265100040548e-07,4.986809502666708743e-07,5.111479740233376938e-07,5.236149977800045133e-07,5.360820215366713328e-07,5.485490452933381523e-07,5.610160690500049718e-07,5.734830928066717913e-07,5.859501165633386108e-07,5.984171403200054303e-07,6.108841640766722498e-07,6.233511878333390693e-07,6.358182115900058888e-07,6.482852353466727083e-07,6.607522591033395278e-07,6.732192828600063473e-07,6.856863066166731668e-07,6.981533303733399863e-07,7.106203541300068058e-07,7.230873778866736253e-07,7.355544016433404448e-07,7.480214254000072643e-07,7.604884491566740838e-07,7.729554729133409033e-07,7.854224966700077228e-07 +0.000000000000000000e+00,1.451068604373231689e-08,2.902137208746463378e-08,4.353205813119695398e-08,5.804274417492927418e-08,7.255343021866159437e-08,8.706411626239390796e-08,1.015748023061262215e-07,1.160854883498585351e-07,1.305961743935908619e-07,1.451068604373231887e-07,1.596175464810555156e-07,1.741282325247878424e-07,1.886389185685201692e-07,2.031496046122524960e-07,2.176602906559848228e-07,2.321709766997171496e-07,2.466816627434494765e-07,2.611923487871818297e-07,2.757030348309141830e-07,2.902137208746465363e-07,3.047244069183788896e-07,3.192350929621112429e-07,3.337457790058435962e-07,3.482564650495759495e-07,3.627671510933083027e-07,3.772778371370406560e-07,3.917885231807730093e-07,4.062992092245053626e-07,4.208098952682377159e-07,4.353205813119700692e-07,4.498312673557024225e-07,4.643419533994347757e-07,4.788526394431671290e-07,4.933633254868994823e-07,5.078740115306318356e-07,5.223846975743641889e-07,5.368953836180965422e-07,5.514060696618288955e-07,5.659167557055612487e-07,5.804274417492936020e-07,5.949381277930259553e-07,6.094488138367583086e-07,6.239594998804906619e-07,6.384701859242230152e-07,6.529808719679553685e-07,6.674915580116877217e-07,6.820022440554200750e-07,6.965129300991524283e-07,7.110236161428847816e-07,7.255343021866171349e-07,7.400449882303494882e-07,7.545556742740818415e-07,7.690663603178141947e-07,7.835770463615465480e-07,7.980877324052789013e-07,8.125984184490112546e-07,8.271091044927436079e-07,8.416197905364759612e-07,8.561304765802083145e-07,8.706411626239406677e-07,8.851518486676730210e-07,8.996625347114053743e-07,9.141732207551377276e-07 +0.000000000000000000e+00,1.279910676130474270e-08,2.559821352260948540e-08,3.839732028391422644e-08,5.119642704521896417e-08,6.399553380652370191e-08,7.679464056782843964e-08,8.959374732913317738e-08,1.023928540904379151e-07,1.151919608517426528e-07,1.279910676130473773e-07,1.407901743743521151e-07,1.535892811356568528e-07,1.663883878969615905e-07,1.791874946582663283e-07,1.919866014195710660e-07,2.047857081808758038e-07,2.175848149421805415e-07,2.303839217034852792e-07,2.431830284647900170e-07,2.559821352260947547e-07,2.687812419873994924e-07,2.815803487487042302e-07,2.943794555100089679e-07,3.071785622713137056e-07,3.199776690326184434e-07,3.327767757939231811e-07,3.455758825552279188e-07,3.583749893165326566e-07,3.711740960778373943e-07,3.839732028391421320e-07,3.967723096004468698e-07,4.095714163617516075e-07,4.223705231230563452e-07,4.351696298843610830e-07,4.479687366456658207e-07,4.607678434069705584e-07,4.735669501682752962e-07,4.863660569295800339e-07,4.991651636908847187e-07,5.119642704521894035e-07,5.247633772134940883e-07,5.375624839747987731e-07,5.503615907361034579e-07,5.631606974974081427e-07,5.759598042587128275e-07,5.887589110200175123e-07,6.015580177813221971e-07,6.143571245426268819e-07,6.271562313039315667e-07,6.399553380652362515e-07,6.527544448265409362e-07,6.655535515878456210e-07,6.783526583491503058e-07,6.911517651104549906e-07,7.039508718717596754e-07,7.167499786330643602e-07,7.295490853943690450e-07,7.423481921556737298e-07,7.551472989169784146e-07,7.679464056782830994e-07,7.807455124395877842e-07,7.935446192008924690e-07,8.063437259621971538e-07 +0.000000000000000000e+00,1.246702375667555949e-08,2.493404751335111899e-08,3.740107127002667682e-08,4.986809502670223135e-08,6.233511878337778588e-08,7.480214254005334041e-08,8.726916629672889494e-08,9.973619005340444947e-08,1.122032138100800040e-07,1.246702375667555453e-07,1.371372613234310998e-07,1.496042850801066544e-07,1.620713088367822089e-07,1.745383325934577634e-07,1.870053563501333179e-07,1.994723801068088725e-07,2.119394038634844270e-07,2.244064276201599815e-07,2.368734513768355361e-07,2.493404751335110906e-07,2.618074988901866451e-07,2.742745226468621997e-07,2.867415464035377542e-07,2.992085701602133087e-07,3.116755939168888632e-07,3.241426176735644178e-07,3.366096414302399723e-07,3.490766651869155268e-07,3.615436889435910814e-07,3.740107127002666359e-07,3.864777364569421904e-07,3.989447602136177450e-07,4.114117839702932995e-07,4.238788077269688540e-07,4.363458314836444085e-07,4.488128552403199631e-07,4.612798789969955176e-07,4.737469027536710721e-07,4.862139265103466796e-07,4.986809502670222871e-07,5.111479740236978945e-07,5.236149977803735020e-07,5.360820215370491095e-07,5.485490452937247170e-07,5.610160690504003244e-07,5.734830928070759319e-07,5.859501165637515394e-07,5.984171403204271468e-07,6.108841640771027543e-07,6.233511878337783618e-07,6.358182115904539692e-07,6.482852353471295767e-07,6.607522591038051842e-07,6.732192828604807916e-07,6.856863066171563991e-07,6.981533303738320066e-07,7.106203541305076141e-07,7.230873778871832215e-07,7.355544016438588290e-07,7.480214254005344365e-07,7.604884491572100439e-07,7.729554729138856514e-07,7.854224966705612589e-07 +0.000000000000000000e+00,1.451068604374160282e-08,2.902137208748320564e-08,4.353205813122480680e-08,5.804274417496640466e-08,7.255343021870800913e-08,8.706411626244961361e-08,1.015748023061912181e-07,1.160854883499328226e-07,1.305961743936744270e-07,1.451068604374160183e-07,1.596175464811576095e-07,1.741282325248992007e-07,1.886389185686407920e-07,2.031496046123823832e-07,2.176602906561239745e-07,2.321709766998655657e-07,2.466816627436071305e-07,2.611923487873486952e-07,2.757030348310902600e-07,2.902137208748318248e-07,3.047244069185733895e-07,3.192350929623149543e-07,3.337457790060565191e-07,3.482564650497980838e-07,3.627671510935396486e-07,3.772778371372812134e-07,3.917885231810227782e-07,4.062992092247643429e-07,4.208098952685059077e-07,4.353205813122474725e-07,4.498312673559890372e-07,4.643419533997306020e-07,4.788526394434721668e-07,4.933633254872137315e-07,5.078740115309552963e-07,5.223846975746968611e-07,5.368953836184384258e-07,5.514060696621799906e-07,5.659167557059215554e-07,5.804274417496631201e-07,5.949381277934046849e-07,6.094488138371462497e-07,6.239594998808878145e-07,6.384701859246293792e-07,6.529808719683709440e-07,6.674915580121125088e-07,6.820022440558540735e-07,6.965129300995956383e-07,7.110236161433372031e-07,7.255343021870787678e-07,7.400449882308203326e-07,7.545556742745618974e-07,7.690663603183034621e-07,7.835770463620450269e-07,7.980877324057865917e-07,8.125984184495281565e-07,8.271091044932697212e-07,8.416197905370112860e-07,8.561304765807528508e-07,8.706411626244944155e-07,8.851518486682359803e-07,8.996625347119775451e-07,9.141732207557191098e-07 +0.000000000000000000e+00,1.339512449217699907e-08,2.679024898435399813e-08,4.018537347653099720e-08,5.358049796870799626e-08,6.697562246088499533e-08,8.037074695306199439e-08,9.376587144523899346e-08,1.071609959374159925e-07,1.205561204295930048e-07,1.339512449217700171e-07,1.473463694139470294e-07,1.607414939061240417e-07,1.741366183983010540e-07,1.875317428904780663e-07,2.009268673826550786e-07,2.143219918748320909e-07,2.277171163670091032e-07,2.411122408591861155e-07,2.545073653513631278e-07,2.679024898435401401e-07,2.812976143357171524e-07,2.946927388278941647e-07,3.080878633200711770e-07,3.214829878122481893e-07,3.348781123044252016e-07,3.482732367966022139e-07,3.616683612887792262e-07,3.750634857809562385e-07,3.884586102731332508e-07,4.018537347653102631e-07,4.152488592574872754e-07,4.286439837496642877e-07,4.420391082418413000e-07,4.554342327340183123e-07,4.688293572261953246e-07,4.822244817183723369e-07,4.956196062105493492e-07,5.090147307027263615e-07,5.224098551949033738e-07,5.358049796870803861e-07,5.492001041792573984e-07,5.625952286714344107e-07,5.759903531636114230e-07,5.893854776557884353e-07,6.027806021479654476e-07,6.161757266401424599e-07,6.295708511323194722e-07,6.429659756244964845e-07,6.563611001166734968e-07,6.697562246088505091e-07,6.831513491010275214e-07,6.965464735932045337e-07,7.099415980853815460e-07,7.233367225775585583e-07,7.367318470697355706e-07,7.501269715619125829e-07,7.635220960540895952e-07,7.769172205462666075e-07,7.903123450384436198e-07,8.037074695306206321e-07,8.171025940227976444e-07,8.304977185149746567e-07,8.438928430071516690e-07 +0.000000000000000000e+00,1.310706354115268205e-08,2.621412708230536410e-08,3.932119062345804450e-08,5.242825416461072159e-08,6.553531770576339868e-08,7.864238124691607576e-08,9.174944478806875285e-08,1.048565083292214299e-07,1.179635718703741070e-07,1.310706354115267709e-07,1.441776989526794215e-07,1.572847624938320721e-07,1.703918260349847227e-07,1.834988895761373734e-07,1.966059531172900240e-07,2.097130166584426746e-07,2.228200801995953252e-07,2.359271437407479758e-07,2.490342072819006264e-07,2.621412708230532771e-07,2.752483343642059277e-07,2.883553979053585783e-07,3.014624614465112289e-07,3.145695249876638795e-07,3.276765885288165302e-07,3.407836520699691808e-07,3.538907156111218314e-07,3.669977791522744820e-07,3.801048426934271326e-07,3.932119062345797833e-07,4.063189697757324339e-07,4.194260333168850845e-07,4.325330968580377351e-07,4.456401603991903857e-07,4.587472239403430363e-07,4.718542874814956870e-07,4.849613510226482846e-07,4.980684145638009353e-07,5.111754781049535859e-07,5.242825416461062365e-07,5.373896051872588871e-07,5.504966687284115377e-07,5.636037322695641883e-07,5.767107958107168390e-07,5.898178593518694896e-07,6.029249228930221402e-07,6.160319864341747908e-07,6.291390499753274414e-07,6.422461135164800921e-07,6.553531770576327427e-07,6.684602405987853933e-07,6.815673041399380439e-07,6.946743676810906945e-07,7.077814312222433452e-07,7.208884947633959958e-07,7.339955583045486464e-07,7.471026218457012970e-07,7.602096853868539476e-07,7.733167489280065982e-07,7.864238124691592489e-07,7.995308760103118995e-07,8.126379395514645501e-07,8.257450030926172007e-07 +0.000000000000000000e+00,1.520124295280717848e-08,3.040248590561435695e-08,4.560372885842153874e-08,6.080497181122872714e-08,7.600621476403591555e-08,9.120745771684310395e-08,1.064087006696502924e-07,1.216099436224574808e-07,1.368111865752646824e-07,1.520124295280718840e-07,1.672136724808790857e-07,1.824149154336862873e-07,1.976161583864934889e-07,2.128174013393006906e-07,2.280186442921078922e-07,2.432198872449151203e-07,2.584211301977223484e-07,2.736223731505295765e-07,2.888236161033368047e-07,3.040248590561440328e-07,3.192261020089512609e-07,3.344273449617584890e-07,3.496285879145657171e-07,3.648298308673729452e-07,3.800310738201801733e-07,3.952323167729874014e-07,4.104335597257946295e-07,4.256348026786018576e-07,4.408360456314090857e-07,4.560372885842163138e-07,4.712385315370235419e-07,4.864397744898307701e-07,5.016410174426380511e-07,5.168422603954453322e-07,5.320435033482526132e-07,5.472447463010598942e-07,5.624459892538671753e-07,5.776472322066744563e-07,5.928484751594817374e-07,6.080497181122890184e-07,6.232509610650962995e-07,6.384522040179035805e-07,6.536534469707108616e-07,6.688546899235181426e-07,6.840559328763254237e-07,6.992571758291327047e-07,7.144584187819399858e-07,7.296596617347472668e-07,7.448609046875545479e-07,7.600621476403618289e-07,7.752633905931691100e-07,7.904646335459763910e-07,8.056658764987836721e-07,8.208671194515909531e-07,8.360683624043982341e-07,8.512696053572055152e-07,8.664708483100127962e-07,8.816720912628200773e-07,8.968733342156273583e-07,9.120745771684346394e-07,9.272758201212419204e-07,9.424770630740492015e-07,9.576783060268564825e-07 +0.000000000000000000e+00,1.339512449218298620e-08,2.679024898436597240e-08,4.018537347654895694e-08,5.358049796873193818e-08,6.697562246091491941e-08,8.037074695309790065e-08,9.376587144528088189e-08,1.071609959374638631e-07,1.205561204296468444e-07,1.339512449218298388e-07,1.473463694140128333e-07,1.607414939061958278e-07,1.741366183983788222e-07,1.875317428905618167e-07,2.009268673827448112e-07,2.143219918749278057e-07,2.277171163671108001e-07,2.411122408592937946e-07,2.545073653514767891e-07,2.679024898436597835e-07,2.812976143358427780e-07,2.946927388280257725e-07,3.080878633202087669e-07,3.214829878123917614e-07,3.348781123045747559e-07,3.482732367967577504e-07,3.616683612889407448e-07,3.750634857811237393e-07,3.884586102733067338e-07,4.018537347654897282e-07,4.152488592576727227e-07,4.286439837498557172e-07,4.420391082420387117e-07,4.554342327342217061e-07,4.688293572264047006e-07,4.822244817185876951e-07,4.956196062107707425e-07,5.090147307029537899e-07,5.224098551951368373e-07,5.358049796873198847e-07,5.492001041795029321e-07,5.625952286716859795e-07,5.759903531638690269e-07,5.893854776560520743e-07,6.027806021482351218e-07,6.161757266404181692e-07,6.295708511326012166e-07,6.429659756247842640e-07,6.563611001169673114e-07,6.697562246091503588e-07,6.831513491013334062e-07,6.965464735935164536e-07,7.099415980856995010e-07,7.233367225778825484e-07,7.367318470700655959e-07,7.501269715622486433e-07,7.635220960544316907e-07,7.769172205466147381e-07,7.903123450387977855e-07,8.037074695309808329e-07,8.171025940231638803e-07,8.304977185153469277e-07,8.438928430075299751e-07 +0.000000000000000000e+00,1.310706354115940207e-08,2.621412708231880413e-08,3.932119062347820785e-08,5.242825416463761488e-08,6.553531770579702853e-08,7.864238124695644218e-08,9.174944478811585583e-08,1.048565083292752695e-07,1.179635718704346831e-07,1.310706354115941100e-07,1.441776989527535369e-07,1.572847624939129638e-07,1.703918260350723906e-07,1.834988895762318175e-07,1.966059531173912444e-07,2.097130166585506713e-07,2.228200801997100982e-07,2.359271437408695251e-07,2.490342072820289519e-07,2.621412708231883788e-07,2.752483343643478057e-07,2.883553979055072326e-07,3.014624614466666595e-07,3.145695249878260863e-07,3.276765885289855132e-07,3.407836520701449401e-07,3.538907156113043670e-07,3.669977791524637939e-07,3.801048426936232208e-07,3.932119062347826476e-07,4.063189697759420745e-07,4.194260333171015014e-07,4.325330968582609283e-07,4.456401603994203552e-07,4.587472239405797821e-07,4.718542874817392089e-07,4.849613510228985829e-07,4.980684145640580098e-07,5.111754781052174366e-07,5.242825416463768635e-07,5.373896051875362904e-07,5.504966687286957173e-07,5.636037322698551442e-07,5.767107958110145710e-07,5.898178593521739979e-07,6.029249228933334248e-07,6.160319864344928517e-07,6.291390499756522786e-07,6.422461135168117055e-07,6.553531770579711323e-07,6.684602405991305592e-07,6.815673041402899861e-07,6.946743676814494130e-07,7.077814312226088399e-07,7.208884947637682668e-07,7.339955583049276936e-07,7.471026218460871205e-07,7.602096853872465474e-07,7.733167489284059743e-07,7.864238124695654012e-07,7.995308760107248280e-07,8.126379395518842549e-07,8.257450030930436818e-07 +0.000000000000000000e+00,1.520124295281478523e-08,3.040248590562957046e-08,4.560372885844435569e-08,6.080497181125914092e-08,7.600621476407392615e-08,9.120745771688871138e-08,1.064087006697034966e-07,1.216099436225182818e-07,1.368111865753330803e-07,1.520124295281478788e-07,1.672136724809626772e-07,1.824149154337774757e-07,1.976161583865922742e-07,2.128174013394070726e-07,2.280186442922218711e-07,2.432198872450366696e-07,2.584211301978514680e-07,2.736223731506662665e-07,2.888236161034810650e-07,3.040248590562958634e-07,3.192261020091106619e-07,3.344273449619254603e-07,3.496285879147402588e-07,3.648298308675550573e-07,3.800310738203698557e-07,3.952323167731846542e-07,4.104335597259994527e-07,4.256348026788142511e-07,4.408360456316290496e-07,4.560372885844438481e-07,4.712385315372586465e-07,4.864397744900734450e-07,5.016410174428882435e-07,5.168422603957030419e-07,5.320435033485178404e-07,5.472447463013326389e-07,5.624459892541474373e-07,5.776472322069622358e-07,5.928484751597770342e-07,6.080497181125918327e-07,6.232509610654066312e-07,6.384522040182214296e-07,6.536534469710362281e-07,6.688546899238510266e-07,6.840559328766658250e-07,6.992571758294806235e-07,7.144584187822954220e-07,7.296596617351102204e-07,7.448609046879250189e-07,7.600621476407398174e-07,7.752633905935546158e-07,7.904646335463694143e-07,8.056658764991842128e-07,8.208671194519990112e-07,8.360683624048138097e-07,8.512696053576286082e-07,8.664708483104434066e-07,8.816720912632582051e-07,8.968733342160730035e-07,9.120745771688878020e-07,9.272758201217026005e-07,9.424770630745173989e-07,9.576783060273320915e-07 +0.000000000000000000e+00,1.394370230540717880e-08,2.788740461081435760e-08,4.183110691622153640e-08,5.577480922162871520e-08,6.971851152703589400e-08,8.366221383244307280e-08,9.760591613785025160e-08,1.115496184432574304e-07,1.254933207486645960e-07,1.394370230540717615e-07,1.533807253594789271e-07,1.673244276648860927e-07,1.812681299702932582e-07,1.952118322757004238e-07,2.091555345811075894e-07,2.230992368865147549e-07,2.370429391919219205e-07,2.509866414973290861e-07,2.649303438027362516e-07,2.788740461081434172e-07,2.928177484135505828e-07,3.067614507189577483e-07,3.207051530243649139e-07,3.346488553297720794e-07,3.485925576351792450e-07,3.625362599405864106e-07,3.764799622459935761e-07,3.904236645514007417e-07,4.043673668568079073e-07,4.183110691622150728e-07,4.322547714676222384e-07,4.461984737730294040e-07,4.601421760784365695e-07,4.740858783838437351e-07,4.880295806892509007e-07,5.019732829946580662e-07,5.159169853000652318e-07,5.298606876054723974e-07,5.438043899108795629e-07,5.577480922162867285e-07,5.716917945216938941e-07,5.856354968271010596e-07,5.995791991325082252e-07,6.135229014379153908e-07,6.274666037433225563e-07,6.414103060487297219e-07,6.553540083541368875e-07,6.692977106595440530e-07,6.832414129649512186e-07,6.971851152703583842e-07,7.111288175757655497e-07,7.250725198811727153e-07,7.390162221865798808e-07,7.529599244919870464e-07,7.669036267973942120e-07,7.808473291028013775e-07,7.947910314082085431e-07,8.087347337136157087e-07,8.226784360190228742e-07,8.366221383244300398e-07,8.505658406298372054e-07,8.645095429352443709e-07,8.784532452406515365e-07 +0.000000000000000000e+00,1.366965482339811235e-08,2.733930964679622470e-08,4.100896447019433705e-08,5.467861929359244941e-08,6.834827411699056176e-08,8.201792894038867411e-08,9.568758376378678646e-08,1.093572385871848988e-07,1.230268934105830112e-07,1.366965482339811235e-07,1.503662030573792359e-07,1.640358578807773482e-07,1.777055127041754606e-07,1.913751675275735729e-07,2.050448223509716853e-07,2.187144771743697976e-07,2.323841319977679100e-07,2.460537868211660223e-07,2.597234416445641611e-07,2.733930964679623000e-07,2.870627512913604388e-07,3.007324061147585776e-07,3.144020609381567164e-07,3.280717157615548553e-07,3.417413705849529941e-07,3.554110254083511329e-07,3.690806802317492717e-07,3.827503350551474105e-07,3.964199898785455494e-07,4.100896447019436882e-07,4.237592995253418270e-07,4.374289543487399658e-07,4.510986091721381046e-07,4.647682639955362435e-07,4.784379188189343823e-07,4.921075736423325740e-07,5.057772284657307658e-07,5.194468832891289576e-07,5.331165381125271493e-07,5.467861929359253411e-07,5.604558477593235328e-07,5.741255025827217246e-07,5.877951574061199164e-07,6.014648122295181081e-07,6.151344670529162999e-07,6.288041218763144916e-07,6.424737766997126834e-07,6.561434315231108752e-07,6.698130863465090669e-07,6.834827411699072587e-07,6.971523959933054505e-07,7.108220508167036422e-07,7.244917056401018340e-07,7.381613604635000257e-07,7.518310152868982175e-07,7.655006701102964093e-07,7.791703249336946010e-07,7.928399797570927928e-07,8.065096345804909845e-07,8.201792894038891763e-07,8.338489442272873681e-07,8.475185990506855598e-07,8.611882538740837516e-07 +0.000000000000000000e+00,1.582903562572044042e-08,3.165807125144088084e-08,4.748710687716132125e-08,6.331614250288176167e-08,7.914517812860220209e-08,9.497421375432264251e-08,1.108032493800430829e-07,1.266322850057635233e-07,1.424613206314839638e-07,1.582903562572044042e-07,1.741193918829248446e-07,1.899484275086452850e-07,2.057774631343657254e-07,2.216064987600861658e-07,2.374355343858066063e-07,2.532645700115270467e-07,2.690936056372474871e-07,2.849226412629679275e-07,3.007516768886883679e-07,3.165807125144088084e-07,3.324097481401292488e-07,3.482387837658496892e-07,3.640678193915701296e-07,3.798968550172905700e-07,3.957258906430110104e-07,4.115549262687314509e-07,4.273839618944518913e-07,4.432129975201723317e-07,4.590420331458927721e-07,4.748710687716132125e-07,4.907001043973336000e-07,5.065291400230539875e-07,5.223581756487743750e-07,5.381872112744947624e-07,5.540162469002151499e-07,5.698452825259355374e-07,5.856743181516559249e-07,6.015033537773763124e-07,6.173323894030966998e-07,6.331614250288170873e-07,6.489904606545374748e-07,6.648194962802578623e-07,6.806485319059782497e-07,6.964775675316986372e-07,7.123066031574190247e-07,7.281356387831394122e-07,7.439646744088597997e-07,7.597937100345801871e-07,7.756227456603005746e-07,7.914517812860209621e-07,8.072808169117413496e-07,8.231098525374617370e-07,8.389388881631821245e-07,8.547679237889025120e-07,8.705969594146228995e-07,8.864259950403432870e-07,9.022550306660636744e-07,9.180840662917840619e-07,9.339131019175044494e-07,9.497421375432248369e-07,9.655711731689452244e-07,9.814002087946655060e-07,9.972292444203857875e-07 +0.000000000000000000e+00,1.394370230541128327e-08,2.788740461082256654e-08,4.183110691623385147e-08,5.577480922164513970e-08,6.971851152705642132e-08,8.366221383246770293e-08,9.760591613787898455e-08,1.115496184432902662e-07,1.254933207487015478e-07,1.394370230541128426e-07,1.533807253595241375e-07,1.673244276649354323e-07,1.812681299703467272e-07,1.952118322757580220e-07,2.091555345811693169e-07,2.230992368865806117e-07,2.370429391919919066e-07,2.509866414974032014e-07,2.649303438028144963e-07,2.788740461082257911e-07,2.928177484136370860e-07,3.067614507190483808e-07,3.207051530244596757e-07,3.346488553298709705e-07,3.485925576352822654e-07,3.625362599406935602e-07,3.764799622461048551e-07,3.904236645515161500e-07,4.043673668569274448e-07,4.183110691623387397e-07,4.322547714677500345e-07,4.461984737731613294e-07,4.601421760785726242e-07,4.740858783839839191e-07,4.880295806893952139e-07,5.019732829948065088e-07,5.159169853002178036e-07,5.298606876056290985e-07,5.438043899110403933e-07,5.577480922164516882e-07,5.716917945218629830e-07,5.856354968272742779e-07,5.995791991326855727e-07,6.135229014380968676e-07,6.274666037435081624e-07,6.414103060489194573e-07,6.553540083543307521e-07,6.692977106597420470e-07,6.832414129651533418e-07,6.971851152705646367e-07,7.111288175759759315e-07,7.250725198813872264e-07,7.390162221867985212e-07,7.529599244922098161e-07,7.669036267976211109e-07,7.808473291030324058e-07,7.947910314084437006e-07,8.087347337138549955e-07,8.226784360192662903e-07,8.366221383246775852e-07,8.505658406300888800e-07,8.645095429355001749e-07,8.784532452409114697e-07 +0.000000000000000000e+00,1.366965482340318297e-08,2.733930964680636594e-08,4.100896447020955056e-08,5.467861929361273849e-08,6.834827411701591981e-08,8.201792894041910112e-08,9.568758376382228243e-08,1.093572385872254637e-07,1.230268934106286451e-07,1.366965482340318396e-07,1.503662030574350342e-07,1.640358578808382287e-07,1.777055127042414233e-07,1.913751675276446178e-07,2.050448223510478124e-07,2.187144771744510069e-07,2.323841319978542015e-07,2.460537868212573960e-07,2.597234416446606170e-07,2.733930964680638380e-07,2.870627512914670591e-07,3.007324061148702801e-07,3.144020609382735011e-07,3.280717157616767221e-07,3.417413705850799431e-07,3.554110254084831642e-07,3.690806802318863852e-07,3.827503350552896062e-07,3.964199898786928272e-07,4.100896447020960482e-07,4.237592995254992692e-07,4.374289543489024903e-07,4.510986091723057113e-07,4.647682639957089323e-07,4.784379188191121533e-07,4.921075736425153214e-07,5.057772284659184895e-07,5.194468832893216576e-07,5.331165381127248256e-07,5.467861929361279937e-07,5.604558477595311618e-07,5.741255025829343299e-07,5.877951574063374980e-07,6.014648122297406660e-07,6.151344670531438341e-07,6.288041218765470022e-07,6.424737766999501703e-07,6.561434315233533384e-07,6.698130863467565064e-07,6.834827411701596745e-07,6.971523959935628426e-07,7.108220508169660107e-07,7.244917056403691787e-07,7.381613604637723468e-07,7.518310152871755149e-07,7.655006701105786830e-07,7.791703249339818511e-07,7.928399797573850191e-07,8.065096345807881872e-07,8.201792894041913553e-07,8.338489442275945234e-07,8.475185990509976915e-07,8.611882538744008595e-07 +0.000000000000000000e+00,1.582903562572687257e-08,3.165807125145374515e-08,4.748710687718061772e-08,6.331614250290749030e-08,7.914517812863436287e-08,9.497421375436123544e-08,1.108032493800881080e-07,1.266322850058149806e-07,1.424613206315418532e-07,1.582903562572687257e-07,1.741193918829955983e-07,1.899484275087224709e-07,2.057774631344493435e-07,2.216064987601762160e-07,2.374355343859030886e-07,2.532645700116299612e-07,2.690936056373568073e-07,2.849226412630836534e-07,3.007516768888104995e-07,3.165807125145373456e-07,3.324097481402641917e-07,3.482387837659910378e-07,3.640678193917178839e-07,3.798968550174447300e-07,3.957258906431715761e-07,4.115549262688984222e-07,4.273839618946252683e-07,4.432129975203521144e-07,4.590420331460789605e-07,4.748710687718058066e-07,4.907001043975326528e-07,5.065291400232594989e-07,5.223581756489863450e-07,5.381872112747131911e-07,5.540162469004400372e-07,5.698452825261668833e-07,5.856743181518937294e-07,6.015033537776205755e-07,6.173323894033474216e-07,6.331614250290742677e-07,6.489904606548011138e-07,6.648194962805279599e-07,6.806485319062548060e-07,6.964775675319816521e-07,7.123066031577084982e-07,7.281356387834353443e-07,7.439646744091621904e-07,7.597937100348890365e-07,7.756227456606158826e-07,7.914517812863427287e-07,8.072808169120695748e-07,8.231098525377964209e-07,8.389388881635232670e-07,8.547679237892501132e-07,8.705969594149769593e-07,8.864259950407038054e-07,9.022550306664306515e-07,9.180840662921574976e-07,9.339131019178843437e-07,9.497421375436111898e-07,9.655711731693380359e-07,9.814002087950648820e-07,9.972292444207917281e-07 +0.000000000000000000e+00,1.452586011209102201e-08,2.905172022418204402e-08,4.357758033627306603e-08,5.810344044836408804e-08,7.262930056045511006e-08,8.715516067254613207e-08,1.016810207846371541e-07,1.162068808967281761e-07,1.307327410088191981e-07,1.452586011209102201e-07,1.597844612330012421e-07,1.743103213450922641e-07,1.888361814571832861e-07,2.033620415692743082e-07,2.178879016813653302e-07,2.324137617934563522e-07,2.469396219055473742e-07,2.614654820176383962e-07,2.759913421297294182e-07,2.905172022418204402e-07,3.050430623539114622e-07,3.195689224660024842e-07,3.340947825780935063e-07,3.486206426901845283e-07,3.631465028022755503e-07,3.776723629143665723e-07,3.921982230264575943e-07,4.067240831385486163e-07,4.212499432506396383e-07,4.357758033627306603e-07,4.503016634748216823e-07,4.648275235869127044e-07,4.793533836990037793e-07,4.938792438110948543e-07,5.084051039231859292e-07,5.229309640352770042e-07,5.374568241473680791e-07,5.519826842594591541e-07,5.665085443715502290e-07,5.810344044836413040e-07,5.955602645957323789e-07,6.100861247078234539e-07,6.246119848199145288e-07,6.391378449320056038e-07,6.536637050440966787e-07,6.681895651561877537e-07,6.827154252682788286e-07,6.972412853803699036e-07,7.117671454924609785e-07,7.262930056045520535e-07,7.408188657166431284e-07,7.553447258287342034e-07,7.698705859408252783e-07,7.843964460529163533e-07,7.989223061650074282e-07,8.134481662770985032e-07,8.279740263891895781e-07,8.424998865012806531e-07,8.570257466133717280e-07,8.715516067254628030e-07,8.860774668375538779e-07,9.006033269496449529e-07,9.151291870617360278e-07 +0.000000000000000000e+00,1.452871964817897485e-08,2.905743929635794971e-08,4.358615894453692291e-08,5.811487859271589280e-08,7.264359824089486930e-08,8.717231788907384581e-08,1.017010375372528223e-07,1.162297571854317988e-07,1.307584768336107753e-07,1.452871964817897386e-07,1.598159161299687019e-07,1.743446357781476652e-07,1.888733554263266284e-07,2.034020750745055917e-07,2.179307947226845550e-07,2.324595143708635182e-07,2.469882340190424815e-07,2.615169536672214448e-07,2.760456733154004081e-07,2.905743929635793713e-07,3.051031126117583346e-07,3.196318322599372979e-07,3.341605519081162612e-07,3.486892715562952244e-07,3.632179912044741877e-07,3.777467108526531510e-07,3.922754305008321142e-07,4.068041501490110775e-07,4.213328697971900408e-07,4.358615894453690041e-07,4.503903090935479673e-07,4.649190287417269306e-07,4.794477483899058939e-07,4.939764680380848572e-07,5.085051876862638204e-07,5.230339073344427837e-07,5.375626269826217470e-07,5.520913466308007102e-07,5.666200662789796735e-07,5.811487859271586368e-07,5.956775055753376001e-07,6.102062252235165633e-07,6.247349448716955266e-07,6.392636645198744899e-07,6.537923841680534532e-07,6.683211038162324164e-07,6.828498234644113797e-07,6.973785431125903430e-07,7.119072627607693062e-07,7.264359824089482695e-07,7.409647020571272328e-07,7.554934217053061961e-07,7.700221413534851593e-07,7.845508610016641226e-07,7.990795806498430859e-07,8.136083002980220492e-07,8.281370199462010124e-07,8.426657395943799757e-07,8.571944592425589390e-07,8.717231788907379022e-07,8.862518985389168655e-07,9.007806181870958288e-07,9.153093378352747921e-07 +0.000000000000000000e+00,1.422573416965195343e-08,2.845146833930390686e-08,4.267720250895586360e-08,5.690293667860782035e-08,7.112867084825977709e-08,8.535440501791172721e-08,9.958013918756367733e-08,1.138058733572156275e-07,1.280316075268675908e-07,1.422573416965195542e-07,1.564830758661715175e-07,1.707088100358234809e-07,1.849345442054754442e-07,1.991602783751274076e-07,2.133860125447793710e-07,2.276117467144313343e-07,2.418374808840832977e-07,2.560632150537352875e-07,2.702889492233872773e-07,2.845146833930392672e-07,2.987404175626912570e-07,3.129661517323432468e-07,3.271918859019952366e-07,3.414176200716472265e-07,3.556433542412992163e-07,3.698690884109512061e-07,3.840948225806031960e-07,3.983205567502551858e-07,4.125462909199071756e-07,4.267720250895591654e-07,4.409977592592111553e-07,4.552234934288631451e-07,4.694492275985151349e-07,4.836749617681671248e-07,4.979006959378191146e-07,5.121264301074711044e-07,5.263521642771230942e-07,5.405778984467750841e-07,5.548036326164270739e-07,5.690293667860790637e-07,5.832551009557310535e-07,5.974808351253830434e-07,6.117065692950350332e-07,6.259323034646870230e-07,6.401580376343390129e-07,6.543837718039910027e-07,6.686095059736429925e-07,6.828352401432949823e-07,6.970609743129469722e-07,7.112867084825989620e-07,7.255124426522509518e-07,7.397381768219029417e-07,7.539639109915549315e-07,7.681896451612069213e-07,7.824153793308589111e-07,7.966411135005109010e-07,8.108668476701628908e-07,8.250925818398148806e-07,8.393183160094668705e-07,8.535440501791188603e-07,8.677697843487708501e-07,8.819955185184228399e-07,8.962212526880748298e-07 +0.000000000000000000e+00,1.646292753003718621e-08,3.292585506007437242e-08,4.938878259011155863e-08,6.585171012014874484e-08,8.231463765018593105e-08,9.877756518022311726e-08,1.152404927102603035e-07,1.317034202402974897e-07,1.481663477703346627e-07,1.646292753003718356e-07,1.810922028304090086e-07,1.975551303604461816e-07,2.140180578904833546e-07,2.304809854205205275e-07,2.469439129505577005e-07,2.634068404805948735e-07,2.798697680106320465e-07,2.963326955406692194e-07,3.127956230707063924e-07,3.292585506007435654e-07,3.457214781307807383e-07,3.621844056608179113e-07,3.786473331908550843e-07,3.951102607208922573e-07,4.115731882509294302e-07,4.280361157809666032e-07,4.444990433110037762e-07,4.609619708410409492e-07,4.774248983710781221e-07,4.938878259011152951e-07,5.103507534311524681e-07,5.268136809611896411e-07,5.432766084912268140e-07,5.597395360212639870e-07,5.762024635513011600e-07,5.926653910813383330e-07,6.091283186113755059e-07,6.255912461414126789e-07,6.420541736714498519e-07,6.585171012014870249e-07,6.749800287315241978e-07,6.914429562615613708e-07,7.079058837915985438e-07,7.243688113216357168e-07,7.408317388516728897e-07,7.572946663817100627e-07,7.737575939117472357e-07,7.902205214417844087e-07,8.066834489718215816e-07,8.231463765018587546e-07,8.396093040318959276e-07,8.560722315619331006e-07,8.725351590919702735e-07,8.889980866220074465e-07,9.054610141520446195e-07,9.219239416820817925e-07,9.383868692121189654e-07,9.548497967421562443e-07,9.713127242721935231e-07,9.877756518022308020e-07,1.004238579332268081e-06,1.020701506862305360e-06,1.037164434392342639e-06 +0.000000000000000000e+00,1.452814172473955099e-08,2.905628344947910198e-08,4.358442517421865131e-08,5.811256689895819734e-08,7.264070862369774998e-08,8.716885034843730263e-08,1.016969920731768553e-07,1.162251337979164079e-07,1.307532755226559606e-07,1.452814172473955000e-07,1.598095589721350394e-07,1.743377006968745788e-07,1.888658424216141182e-07,2.033939841463536576e-07,2.179221258710931970e-07,2.324502675958327364e-07,2.469784093205722758e-07,2.615065510453118152e-07,2.760346927700513547e-07,2.905628344947908941e-07,3.050909762195304335e-07,3.196191179442699729e-07,3.341472596690095123e-07,3.486754013937490517e-07,3.632035431184885911e-07,3.777316848432281305e-07,3.922598265679676699e-07,4.067879682927072093e-07,4.213161100174467487e-07,4.358442517421862881e-07,4.503723934669258276e-07,4.649005351916653670e-07,4.794286769164049064e-07,4.939568186411444458e-07,5.084849603658839852e-07,5.230131020906235246e-07,5.375412438153630640e-07,5.520693855401026034e-07,5.665975272648421428e-07,5.811256689895816822e-07,5.956538107143212216e-07,6.101819524390607611e-07,6.247100941638003005e-07,6.392382358885398399e-07,6.537663776132793793e-07,6.682945193380189187e-07,6.828226610627584581e-07,6.973508027874979975e-07,7.118789445122375369e-07,7.264070862369770763e-07,7.409352279617166157e-07,7.554633696864561551e-07,7.699915114111956946e-07,7.845196531359352340e-07,7.990477948606747734e-07,8.135759365854143128e-07,8.281040783101538522e-07,8.426322200348933916e-07,8.571603617596329310e-07,8.716885034843724704e-07,8.862166452091120098e-07,9.007447869338515492e-07,9.152729286585910886e-07 +0.000000000000000000e+00,1.646633251004112738e-08,3.293266502008225476e-08,4.939899753012338544e-08,6.586533004016452275e-08,8.233166255020566005e-08,9.879799506024679735e-08,1.152643275702879347e-07,1.317306600803290720e-07,1.481969925903702225e-07,1.646633251004113730e-07,1.811296576104525236e-07,1.975959901204936741e-07,2.140623226305348247e-07,2.305286551405759752e-07,2.469949876506171257e-07,2.634613201606583027e-07,2.799276526706994798e-07,2.963939851807406568e-07,3.128603176907818338e-07,3.293266502008230108e-07,3.457929827108641878e-07,3.622593152209053648e-07,3.787256477309465418e-07,3.951919802409877188e-07,4.116583127510288958e-07,4.281246452610700728e-07,4.445909777711112498e-07,4.610573102811524268e-07,4.775236427911936568e-07,4.939899753012348867e-07,5.104563078112761167e-07,5.269226403213173466e-07,5.433889728313585766e-07,5.598553053413998065e-07,5.763216378514410365e-07,5.927879703614822664e-07,6.092543028715234964e-07,6.257206353815647263e-07,6.421869678916059563e-07,6.586533004016471862e-07,6.751196329116884162e-07,6.915859654217296461e-07,7.080522979317708761e-07,7.245186304418121060e-07,7.409849629518533360e-07,7.574512954618945659e-07,7.739176279719357959e-07,7.903839604819770258e-07,8.068502929920182558e-07,8.233166255020594857e-07,8.397829580121007157e-07,8.562492905221419456e-07,8.727156230321831756e-07,8.891819555422244055e-07,9.056482880522656354e-07,9.221146205623068654e-07,9.385809530723480953e-07,9.550472855823894312e-07,9.715136180924307670e-07,9.879799506024721028e-07,1.004446283112513439e-06,1.020912615622554774e-06,1.037378948132596110e-06 +0.000000000000000000e+00,1.452586011209300724e-08,2.905172022418601449e-08,4.357758033627902173e-08,5.810344044837202898e-08,7.262930056046503622e-08,8.715516067255804347e-08,1.016810207846510507e-07,1.162068808967440580e-07,1.307327410088370652e-07,1.452586011209300724e-07,1.597844612330230797e-07,1.743103213451160869e-07,1.888361814572090942e-07,2.033620415693021014e-07,2.178879016813951087e-07,2.324137617934881159e-07,2.469396219055810967e-07,2.614654820176740775e-07,2.759913421297670582e-07,2.905172022418600390e-07,3.050430623539530198e-07,3.195689224660460006e-07,3.340947825781389813e-07,3.486206426902319621e-07,3.631465028023249429e-07,3.776723629144179237e-07,3.921982230265109044e-07,4.067240831386038852e-07,4.212499432506968660e-07,4.357758033627898468e-07,4.503016634748828275e-07,4.648275235869758083e-07,4.793533836990687891e-07,4.938792438111617699e-07,5.084051039232547506e-07,5.229309640353477314e-07,5.374568241474407122e-07,5.519826842595336930e-07,5.665085443716266737e-07,5.810344044837196545e-07,5.955602645958126353e-07,6.100861247079056161e-07,6.246119848199985968e-07,6.391378449320915776e-07,6.536637050441845584e-07,6.681895651562775392e-07,6.827154252683705199e-07,6.972412853804635007e-07,7.117671454925564815e-07,7.262930056046494623e-07,7.408188657167424430e-07,7.553447258288354238e-07,7.698705859409284046e-07,7.843964460530213854e-07,7.989223061651143661e-07,8.134481662772073469e-07,8.279740263893003277e-07,8.424998865013933085e-07,8.570257466134862892e-07,8.715516067255792700e-07,8.860774668376722508e-07,9.006033269497652316e-07,9.151291870618582123e-07 +0.000000000000000000e+00,1.452814172474058497e-08,2.905628344948116993e-08,4.358442517422175490e-08,5.811256689896233986e-08,7.264070862370292483e-08,8.716885034844350979e-08,1.016969920731840948e-07,1.162251337979246797e-07,1.307532755226652779e-07,1.452814172474058761e-07,1.598095589721464743e-07,1.743377006968870725e-07,1.888658424216276707e-07,2.033939841463682689e-07,2.179221258711088671e-07,2.324502675958494653e-07,2.469784093205900635e-07,2.615065510453306617e-07,2.760346927700712599e-07,2.905628344948118581e-07,3.050909762195524563e-07,3.196191179442930545e-07,3.341472596690336527e-07,3.486754013937742509e-07,3.632035431185148491e-07,3.777316848432554473e-07,3.922598265679960455e-07,4.067879682927366437e-07,4.213161100174772419e-07,4.358442517422178401e-07,4.503723934669584383e-07,4.649005351916990365e-07,4.794286769164396347e-07,4.939568186411802329e-07,5.084849603659208311e-07,5.230131020906614293e-07,5.375412438154020275e-07,5.520693855401426257e-07,5.665975272648832239e-07,5.811256689896238221e-07,5.956538107143644203e-07,6.101819524391050185e-07,6.247100941638456167e-07,6.392382358885862149e-07,6.537663776133268131e-07,6.682945193380674113e-07,6.828226610628080095e-07,6.973508027875486077e-07,7.118789445122892059e-07,7.264070862370298041e-07,7.409352279617704023e-07,7.554633696865110005e-07,7.699915114112515987e-07,7.845196531359921969e-07,7.990477948607327951e-07,8.135759365854733933e-07,8.281040783102139915e-07,8.426322200349545897e-07,8.571603617596951879e-07,8.716885034844357861e-07,8.862166452091763843e-07,9.007447869339169825e-07,9.152729286586575807e-07 +0.000000000000000000e+00,1.422573416965493790e-08,2.845146833930987580e-08,4.267720250896481039e-08,5.690293667861974498e-08,7.112867084827467957e-08,8.535440501792962078e-08,9.958013918758456199e-08,1.138058733572395032e-07,1.280316075268944312e-07,1.422573416965493591e-07,1.564830758662042871e-07,1.707088100358592151e-07,1.849345442055141431e-07,1.991602783751690710e-07,2.133860125448239990e-07,2.276117467144789270e-07,2.418374808841338550e-07,2.560632150537887565e-07,2.702889492234436580e-07,2.845146833930985595e-07,2.987404175627534610e-07,3.129661517324083625e-07,3.271918859020632640e-07,3.414176200717181655e-07,3.556433542413730670e-07,3.698690884110279685e-07,3.840948225806828700e-07,3.983205567503377715e-07,4.125462909199926730e-07,4.267720250896475745e-07,4.409977592593024760e-07,4.552234934289573775e-07,4.694492275986122790e-07,4.836749617682671805e-07,4.979006959379221350e-07,5.121264301075770894e-07,5.263521642772320439e-07,5.405778984468869983e-07,5.548036326165419527e-07,5.690293667861969072e-07,5.832551009558518616e-07,5.974808351255068161e-07,6.117065692951617705e-07,6.259323034648167250e-07,6.401580376344716794e-07,6.543837718041266338e-07,6.686095059737815883e-07,6.828352401434365427e-07,6.970609743130914972e-07,7.112867084827464516e-07,7.255124426524014061e-07,7.397381768220563605e-07,7.539639109917113149e-07,7.681896451613662694e-07,7.824153793310212238e-07,7.966411135006761783e-07,8.108668476703311327e-07,8.250925818399860872e-07,8.393183160096410416e-07,8.535440501792959960e-07,8.677697843489509505e-07,8.819955185186059049e-07,8.962212526882608594e-07 +0.000000000000000000e+00,1.646292753004225186e-08,3.292585506008450373e-08,4.938878259012675228e-08,6.585171012016899422e-08,8.231463765021123616e-08,9.877756518025347810e-08,1.152404927102957200e-07,1.317034202403379620e-07,1.481663477703801907e-07,1.646292753004224194e-07,1.810922028304646481e-07,1.975551303605068768e-07,2.140180578905491055e-07,2.304809854205913342e-07,2.469439129506335629e-07,2.634068404806757651e-07,2.798697680107179674e-07,2.963326955407601696e-07,3.127956230708023718e-07,3.292585506008445741e-07,3.457214781308867763e-07,3.621844056609289785e-07,3.786473331909711808e-07,3.951102607210133830e-07,4.115731882510555852e-07,4.280361157810977875e-07,4.444990433111399897e-07,4.609619708411821919e-07,4.774248983712244471e-07,4.938878259012667023e-07,5.103507534313089574e-07,5.268136809613512126e-07,5.432766084913934678e-07,5.597395360214357230e-07,5.762024635514779781e-07,5.926653910815202333e-07,6.091283186115624885e-07,6.255912461416047436e-07,6.420541736716469988e-07,6.585171012016892540e-07,6.749800287317315092e-07,6.914429562617737643e-07,7.079058837918160195e-07,7.243688113218582747e-07,7.408317388519005298e-07,7.572946663819427850e-07,7.737575939119850402e-07,7.902205214420272954e-07,8.066834489720695505e-07,8.231463765021118057e-07,8.396093040321540609e-07,8.560722315621963161e-07,8.725351590922385712e-07,8.889980866222808264e-07,9.054610141523230816e-07,9.219239416823653367e-07,9.383868692124075919e-07,9.548497967424497412e-07,9.713127242724918905e-07,9.877756518025340398e-07,1.004238579332576189e-06,1.020701506862618338e-06,1.037164434392660488e-06 +0.000000000000000000e+00,1.080474823819466173e-08,2.160949647638932345e-08,3.241424471458398683e-08,4.321899295277865352e-08,5.402374119097332021e-08,6.482848942916798689e-08,7.563323766736266020e-08,8.643798590555733351e-08,9.724273414375200681e-08,1.080474823819466801e-07,1.188522306201413534e-07,1.296569788583360267e-07,1.404617270965307000e-07,1.512664753347253733e-07,1.620712235729200466e-07,1.728759718111147200e-07,1.836807200493093933e-07,1.944854682875040666e-07,2.052902165256987399e-07,2.160949647638934132e-07,2.268997130020880865e-07,2.377044612402827598e-07,2.485092094784774596e-07,2.593139577166721593e-07,2.701187059548668591e-07,2.809234541930615589e-07,2.917282024312562587e-07,3.025329506694509584e-07,3.133376989076456582e-07,3.241424471458403580e-07,3.349471953840350578e-07,3.457519436222297575e-07,3.565566918604244573e-07,3.673614400986191571e-07,3.781661883368138569e-07,3.889709365750085566e-07,3.997756848132032564e-07,4.105804330513979562e-07,4.213851812895926560e-07,4.321899295277873557e-07,4.429946777659820555e-07,4.537994260041767553e-07,4.646041742423714551e-07,4.754089224805661548e-07,4.862136707187608546e-07,4.970184189569555544e-07,5.078231671951502542e-07,5.186279154333449539e-07,5.294326636715396537e-07,5.402374119097343535e-07,5.510421601479290533e-07,5.618469083861237530e-07,5.726516566243184528e-07,5.834564048625131526e-07,5.942611531007078524e-07,6.050659013389025521e-07,6.158706495770972519e-07,6.266753978152919517e-07,6.374801460534866515e-07,6.482848942916813513e-07,6.590896425298760510e-07,6.698943907680707508e-07,6.806991390062654506e-07 +0.000000000000000000e+00,7.420605537097850123e-09,1.484121107419570025e-08,2.226181661129355202e-08,2.968242214839140380e-08,3.710302768548925558e-08,4.452363322258710405e-08,5.194423875968495251e-08,5.936484429678280098e-08,6.678544983388065607e-08,7.420605537097851115e-08,8.162666090807636624e-08,8.904726644517422133e-08,9.646787198227207641e-08,1.038884775193699315e-07,1.113090830564677866e-07,1.187296885935656417e-07,1.261502941306634968e-07,1.335708996677613651e-07,1.409915052048592334e-07,1.484121107419571017e-07,1.558327162790549700e-07,1.632533218161528384e-07,1.706739273532507067e-07,1.780945328903485750e-07,1.855151384274464433e-07,1.929357439645443116e-07,2.003563495016421800e-07,2.077769550387400483e-07,2.151975605758379166e-07,2.226181661129357849e-07,2.300387716500336532e-07,2.374593771871315216e-07,2.448799827242293634e-07,2.523005882613272053e-07,2.597211937984250471e-07,2.671417993355228890e-07,2.745624048726207308e-07,2.819830104097185727e-07,2.894036159468164145e-07,2.968242214839142564e-07,3.042448270210120982e-07,3.116654325581099401e-07,3.190860380952077819e-07,3.265066436323056238e-07,3.339272491694034656e-07,3.413478547065013075e-07,3.487684602435991493e-07,3.561890657806969912e-07,3.636096713177948330e-07,3.710302768548926749e-07,3.784508823919905167e-07,3.858714879290883586e-07,3.932920934661862004e-07,4.007126990032840423e-07,4.081333045403818841e-07,4.155539100774797260e-07,4.229745156145775678e-07,4.303951211516754097e-07,4.378157266887732515e-07,4.452363322258710934e-07,4.526569377629689352e-07,4.600775433000667771e-07,4.674981488371646190e-07 +0.000000000000000000e+00,1.092809819106494906e-08,2.185619638212989813e-08,3.278429457319485050e-08,4.371239276425980287e-08,5.464049095532475524e-08,6.556858914638970099e-08,7.649668733745464675e-08,8.742478552851959250e-08,9.835288371958453825e-08,1.092809819106494840e-07,1.202090801017144298e-07,1.311371782927793755e-07,1.420652764838443213e-07,1.529933746749092670e-07,1.639214728659742128e-07,1.748495710570391585e-07,1.857776692481041043e-07,1.967057674391690500e-07,2.076338656302339958e-07,2.185619638212989415e-07,2.294900620123638873e-07,2.404181602034288066e-07,2.513462583944937523e-07,2.622743565855586981e-07,2.732024547766236438e-07,2.841305529676885896e-07,2.950586511587535354e-07,3.059867493498184811e-07,3.169148475408834269e-07,3.278429457319483726e-07,3.387710439230133184e-07,3.496991421140782641e-07,3.606272403051432099e-07,3.715553384962081556e-07,3.824834366872731014e-07,3.934115348783380471e-07,4.043396330694029929e-07,4.152677312604679386e-07,4.261958294515328844e-07,4.371239276425978302e-07,4.480520258336627759e-07,4.589801240247277217e-07,4.699082222157926674e-07,4.808363204068576132e-07,4.917644185979225589e-07,5.026925167889875047e-07,5.136206149800524504e-07,5.245487131711173962e-07,5.354768113621823419e-07,5.464049095532472877e-07,5.573330077443122334e-07,5.682611059353771792e-07,5.791892041264421250e-07,5.901173023175070707e-07,6.010454005085720165e-07,6.119734986996369622e-07,6.229015968907019080e-07,6.338296950817668537e-07,6.447577932728317995e-07,6.556858914638967452e-07,6.666139896549616910e-07,6.775420878460266367e-07,6.884701860370915825e-07 +0.000000000000000000e+00,1.192677513641696492e-08,2.385355027283392984e-08,3.578032540925089807e-08,4.770710054566786630e-08,5.963387568208483452e-08,7.156065081850179614e-08,8.348742595491875775e-08,9.541420109133571936e-08,1.073409762277526810e-07,1.192677513641696426e-07,1.311945265005866042e-07,1.431213016370035658e-07,1.550480767734205274e-07,1.669748519098374890e-07,1.789016270462544506e-07,1.908284021826714122e-07,2.027551773190883739e-07,2.146819524555053355e-07,2.266087275919222971e-07,2.385355027283392322e-07,2.504622778647561938e-07,2.623890530011731554e-07,2.743158281375901171e-07,2.862426032740070787e-07,2.981693784104240403e-07,3.100961535468410019e-07,3.220229286832579635e-07,3.339497038196749251e-07,3.458764789560918867e-07,3.578032540925088483e-07,3.697300292289258099e-07,3.816568043653427716e-07,3.935835795017597332e-07,4.055103546381766948e-07,4.174371297745936564e-07,4.293639049110106180e-07,4.412906800474275796e-07,4.532174551838445412e-07,4.651442303202615028e-07,4.770710054566784644e-07,4.889977805930954260e-07,5.009245557295123877e-07,5.128513308659293493e-07,5.247781060023463109e-07,5.367048811387632725e-07,5.486316562751802341e-07,5.605584314115971957e-07,5.724852065480141573e-07,5.844119816844311189e-07,5.963387568208480805e-07,6.082655319572650422e-07,6.201923070936820038e-07,6.321190822300989654e-07,6.440458573665159270e-07,6.559726325029328886e-07,6.678994076393498502e-07,6.798261827757668118e-07,6.917529579121837734e-07,7.036797330486007350e-07,7.156065081850176967e-07,7.275332833214346583e-07,7.394600584578516199e-07,7.513868335942685815e-07 +0.000000000000000000e+00,8.039384278479592862e-09,1.607876855695918572e-08,2.411815283543878024e-08,3.215753711391837807e-08,4.019692139239797589e-08,4.823630567087757372e-08,5.627568994935717154e-08,6.431507422783676937e-08,7.235445850631636058e-08,8.039384278479595178e-08,8.843322706327554299e-08,9.647261134175513420e-08,1.045119956202347254e-07,1.125513798987143166e-07,1.205907641771939078e-07,1.286301484556735123e-07,1.366695327341531167e-07,1.447089170126327212e-07,1.527483012911123256e-07,1.607876855695919300e-07,1.688270698480715345e-07,1.768664541265511389e-07,1.849058384050307434e-07,1.929452226835103478e-07,2.009846069619899523e-07,2.090239912404695567e-07,2.170633755189491611e-07,2.251027597974287656e-07,2.331421440759083700e-07,2.411815283543879745e-07,2.492209126328675789e-07,2.572602969113471833e-07,2.652996811898267878e-07,2.733390654683063922e-07,2.813784497467859967e-07,2.894178340252656011e-07,2.974572183037452056e-07,3.054966025822248100e-07,3.135359868607044144e-07,3.215753711391840189e-07,3.296147554176636233e-07,3.376541396961432278e-07,3.456935239746228322e-07,3.537329082531024367e-07,3.617722925315820411e-07,3.698116768100616455e-07,3.778510610885412500e-07,3.858904453670208544e-07,3.939298296455004589e-07,4.019692139239800633e-07,4.100085982024596678e-07,4.180479824809392722e-07,4.260873667594188766e-07,4.341267510378984811e-07,4.421661353163780855e-07,4.502055195948576900e-07,4.582449038733372944e-07,4.662842881518168989e-07,4.743236724302965033e-07,4.823630567087760548e-07,4.904024409872556063e-07,4.984418252657351578e-07,5.064812095442147093e-07 +0.000000000000000000e+00,8.996588814412825475e-09,1.799317762882565095e-08,2.698976644323847477e-08,3.598635525765129528e-08,4.498294407206411580e-08,5.397953288647693631e-08,6.297612170088975682e-08,7.197271051530257733e-08,8.096929932971539784e-08,8.996588814412821836e-08,9.896247695854103887e-08,1.079590657729538594e-07,1.169556545873666799e-07,1.259522434017795136e-07,1.349488322161923474e-07,1.439454210306051811e-07,1.529420098450180149e-07,1.619385986594308486e-07,1.709351874738436824e-07,1.799317762882565161e-07,1.889283651026693499e-07,1.979249539170821836e-07,2.069215427314950174e-07,2.159181315459078511e-07,2.249147203603206849e-07,2.339113091747335186e-07,2.429078979891463259e-07,2.519044868035591332e-07,2.609010756179719404e-07,2.698976644323847477e-07,2.788942532467975550e-07,2.878908420612103623e-07,2.968874308756231695e-07,3.058840196900359768e-07,3.148806085044487841e-07,3.238771973188615914e-07,3.328737861332743987e-07,3.418703749476872059e-07,3.508669637621000132e-07,3.598635525765128205e-07,3.688601413909256278e-07,3.778567302053384350e-07,3.868533190197512423e-07,3.958499078341640496e-07,4.048464966485768569e-07,4.138430854629896642e-07,4.228396742774024714e-07,4.318362630918152787e-07,4.408328519062280860e-07,4.498294407206408933e-07,4.588260295350537005e-07,4.678226183494665078e-07,4.768192071638793151e-07,4.858157959782921224e-07,4.948123847927049296e-07,5.038089736071177369e-07,5.128055624215305442e-07,5.218021512359433515e-07,5.307987400503561588e-07,5.397953288647689660e-07,5.487919176791817733e-07,5.577885064935945806e-07,5.667850953080073879e-07 +0.000000000000000000e+00,1.089890737915328248e-08,2.179781475830656497e-08,3.269672213745984414e-08,4.359562951661312331e-08,5.449453689576640249e-08,6.539344427491968828e-08,7.629235165407297407e-08,8.719125903322625986e-08,9.809016641237954566e-08,1.089890737915328314e-07,1.198879811706861172e-07,1.307868885498394030e-07,1.416857959289926888e-07,1.525847033081459746e-07,1.634836106872992604e-07,1.743825180664525462e-07,1.852814254456058320e-07,1.961803328247591178e-07,2.070792402039124036e-07,2.179781475830656894e-07,2.288770549622189752e-07,2.397759623413722345e-07,2.506748697205254938e-07,2.615737770996787531e-07,2.724726844788320124e-07,2.833715918579852718e-07,2.942704992371385311e-07,3.051694066162917904e-07,3.160683139954450497e-07,3.269672213745983091e-07,3.378661287537515684e-07,3.487650361329048277e-07,3.596639435120580870e-07,3.705628508912113463e-07,3.814617582703646057e-07,3.923606656495178650e-07,4.032595730286711243e-07,4.141584804078243836e-07,4.250573877869776430e-07,4.359562951661309023e-07,4.468552025452841616e-07,4.577541099244374209e-07,4.686530173035906802e-07,4.795519246827439396e-07,4.904508320618971989e-07,5.013497394410504582e-07,5.122486468202037175e-07,5.231475541993569769e-07,5.340464615785102362e-07,5.449453689576634955e-07,5.558442763368167548e-07,5.667431837159700141e-07,5.776420910951232735e-07,5.885409984742765328e-07,5.994399058534297921e-07,6.103388132325830514e-07,6.212377206117363107e-07,6.321366279908895701e-07,6.430355353700428294e-07,6.539344427491960887e-07,6.648333501283493480e-07,6.757322575075026074e-07,6.866311648866558667e-07 +0.000000000000000000e+00,1.200237455137312311e-08,2.400474910274624623e-08,3.600712365411936934e-08,4.800949820549249246e-08,6.001187275686560895e-08,7.201424730823872545e-08,8.401662185961184194e-08,9.601899641098495844e-08,1.080213709623580749e-07,1.200237455137311914e-07,1.320261200651043079e-07,1.440284946164774244e-07,1.560308691678505409e-07,1.680332437192236574e-07,1.800356182705967739e-07,1.920379928219698904e-07,2.040403673733430069e-07,2.160427419247161234e-07,2.280451164760892399e-07,2.400474910274623299e-07,2.520498655788354464e-07,2.640522401302085629e-07,2.760546146815816794e-07,2.880569892329547959e-07,3.000593637843279124e-07,3.120617383357010289e-07,3.240641128870741454e-07,3.360664874384472619e-07,3.480688619898203784e-07,3.600712365411934949e-07,3.720736110925666114e-07,3.840759856439397279e-07,3.960783601953128444e-07,4.080807347466859609e-07,4.200831092980590774e-07,4.320854838494321939e-07,4.440878584008053104e-07,4.560902329521784269e-07,4.680926075035515434e-07,4.800949820549246599e-07,4.920973566062977764e-07,5.040997311576708928e-07,5.161021057090440093e-07,5.281044802604171258e-07,5.401068548117902423e-07,5.521092293631633588e-07,5.641116039145364753e-07,5.761139784659095918e-07,5.881163530172827083e-07,6.001187275686558248e-07,6.121211021200289413e-07,6.241234766714020578e-07,6.361258512227751743e-07,6.481282257741482908e-07,6.601306003255214073e-07,6.721329748768945238e-07,6.841353494282676403e-07,6.961377239796407568e-07,7.081400985310138733e-07,7.201424730823869898e-07,7.321448476337601063e-07,7.441472221851332228e-07,7.561495967365063393e-07 +0.000000000000000000e+00,1.080474823821258177e-08,2.160949647642516353e-08,3.241424471463774695e-08,4.321899295285033368e-08,5.402374119106292041e-08,6.482848942927550714e-08,7.563323766748810049e-08,8.643798590570069383e-08,9.724273414391328718e-08,1.080474823821258805e-07,1.188522306203384739e-07,1.296569788585510672e-07,1.404617270967636606e-07,1.512664753349762539e-07,1.620712235731888473e-07,1.728759718114014406e-07,1.836807200496140339e-07,1.944854682878266273e-07,2.052902165260392206e-07,2.160949647642518140e-07,2.268997130024644073e-07,2.377044612406770007e-07,2.485092094788895940e-07,2.593139577171021874e-07,2.701187059553147807e-07,2.809234541935273741e-07,2.917282024317399674e-07,3.025329506699525608e-07,3.133376989081651541e-07,3.241424471463777475e-07,3.349471953845903408e-07,3.457519436228029341e-07,3.565566918610155275e-07,3.673614400992281208e-07,3.781661883374407142e-07,3.889709365756533075e-07,3.997756848138659009e-07,4.105804330520784942e-07,4.213851812902910876e-07,4.321899295285036809e-07,4.429946777667162743e-07,4.537994260049288676e-07,4.646041742431414610e-07,4.754089224813540543e-07,4.862136707195667006e-07,4.970184189577792939e-07,5.078231671959918873e-07,5.186279154342044806e-07,5.294326636724170740e-07,5.402374119106296673e-07,5.510421601488422607e-07,5.618469083870548540e-07,5.726516566252674474e-07,5.834564048634800407e-07,5.942611531016926341e-07,6.050659013399052274e-07,6.158706495781178207e-07,6.266753978163304141e-07,6.374801460545430074e-07,6.482848942927556008e-07,6.590896425309681941e-07,6.698943907691807875e-07,6.806991390073933808e-07 +0.000000000000000000e+00,7.420605537114148890e-09,1.484121107422829778e-08,2.226181661134244832e-08,2.968242214845659887e-08,3.710302768557074941e-08,4.452363322268489665e-08,5.194423875979904388e-08,5.936484429691319112e-08,6.678544983402733835e-08,7.420605537114148559e-08,8.162666090825563282e-08,8.904726644536978006e-08,9.646787198248392729e-08,1.038884775195980745e-07,1.113090830567122218e-07,1.187296885938263690e-07,1.261502941309405030e-07,1.335708996680546502e-07,1.409915052051687975e-07,1.484121107422829447e-07,1.558327162793970919e-07,1.632533218165112392e-07,1.706739273536253864e-07,1.780945328907395336e-07,1.855151384278536809e-07,1.929357439649678281e-07,2.003563495020819754e-07,2.077769550391961226e-07,2.151975605763102698e-07,2.226181661134244171e-07,2.300387716505385643e-07,2.374593771876527115e-07,2.448799827247668588e-07,2.523005882618810060e-07,2.597211937989951532e-07,2.671417993361093005e-07,2.745624048732234477e-07,2.819830104103375949e-07,2.894036159474517422e-07,2.968242214845658894e-07,3.042448270216800366e-07,3.116654325587941839e-07,3.190860380959083311e-07,3.265066436330224784e-07,3.339272491701366256e-07,3.413478547072507728e-07,3.487684602443649201e-07,3.561890657814790673e-07,3.636096713185932145e-07,3.710302768557073618e-07,3.784508823928215090e-07,3.858714879299356562e-07,3.932920934670498035e-07,4.007126990041639507e-07,4.081333045412780979e-07,4.155539100783922452e-07,4.229745156155063924e-07,4.303951211526205396e-07,4.378157266897346869e-07,4.452363322268488341e-07,4.526569377639629814e-07,4.600775433010771286e-07,4.674981488381912758e-07 +0.000000000000000000e+00,1.089890737916216971e-08,2.179781475832433942e-08,3.269672213748651244e-08,4.359562951664868546e-08,5.449453689581085848e-08,6.539344427497302489e-08,7.629235165413519129e-08,8.719125903329735769e-08,9.809016641245952410e-08,1.089890737916216905e-07,1.198879811707838437e-07,1.307868885499459968e-07,1.416857959291081500e-07,1.525847033082703032e-07,1.634836106874324563e-07,1.743825180665946095e-07,1.852814254457567627e-07,1.961803328249189158e-07,2.070792402040810690e-07,2.179781475832432222e-07,2.288770549624053753e-07,2.397759623415675285e-07,2.506748697207296817e-07,2.615737770998918348e-07,2.724726844790539880e-07,2.833715918582161412e-07,2.942704992373782944e-07,3.051694066165404475e-07,3.160683139957026007e-07,3.269672213748647539e-07,3.378661287540269070e-07,3.487650361331890602e-07,3.596639435123512134e-07,3.705628508915133665e-07,3.814617582706755197e-07,3.923606656498376729e-07,4.032595730289998260e-07,4.141584804081619792e-07,4.250573877873241324e-07,4.359562951664862855e-07,4.468552025456484387e-07,4.577541099248105919e-07,4.686530173039727450e-07,4.795519246831349511e-07,4.904508320622971043e-07,5.013497394414592575e-07,5.122486468206214107e-07,5.231475541997835638e-07,5.340464615789457170e-07,5.449453689581078702e-07,5.558442763372700233e-07,5.667431837164321765e-07,5.776420910955943297e-07,5.885409984747564828e-07,5.994399058539186360e-07,6.103388132330807892e-07,6.212377206122429423e-07,6.321366279914050955e-07,6.430355353705672487e-07,6.539344427497294018e-07,6.648333501288915550e-07,6.757322575080537082e-07,6.866311648872158613e-07 +0.000000000000000000e+00,1.192677513643500242e-08,2.385355027287000484e-08,3.578032540930500891e-08,4.770710054574001630e-08,5.963387568217501706e-08,7.156065081861001783e-08,8.348742595504501860e-08,9.541420109148001936e-08,1.073409762279150201e-07,1.192677513643500341e-07,1.311945265007850481e-07,1.431213016372200621e-07,1.550480767736550761e-07,1.669748519100900901e-07,1.789016270465251041e-07,1.908284021829601181e-07,2.027551773193951321e-07,2.146819524558301461e-07,2.266087275922651601e-07,2.385355027287001741e-07,2.504622778651351881e-07,2.623890530015702021e-07,2.743158281380052161e-07,2.862426032744402301e-07,2.981693784108752441e-07,3.100961535473102581e-07,3.220229286837452721e-07,3.339497038201802861e-07,3.458764789566153001e-07,3.578032540930503141e-07,3.697300292294853281e-07,3.816568043659203421e-07,3.935835795023553561e-07,4.055103546387903701e-07,4.174371297752253841e-07,4.293639049116603981e-07,4.412906800480954121e-07,4.532174551845304261e-07,4.651442303209654401e-07,4.770710054574004541e-07,4.889977805938354152e-07,5.009245557302703763e-07,5.128513308667053373e-07,5.247781060031402984e-07,5.367048811395752595e-07,5.486316562760102205e-07,5.605584314124451816e-07,5.724852065488801426e-07,5.844119816853151037e-07,5.963387568217500648e-07,6.082655319581850258e-07,6.201923070946199869e-07,6.321190822310549479e-07,6.440458573674899090e-07,6.559726325039248701e-07,6.678994076403598311e-07,6.798261827767947922e-07,6.917529579132297532e-07,7.036797330496647143e-07,7.156065081860996754e-07,7.275332833225346364e-07,7.394600584589695975e-07,7.513868335954045586e-07 +0.000000000000000000e+00,8.039384278496885900e-09,1.607876855699377180e-08,2.411815283549065770e-08,3.215753711398754360e-08,4.019692139248443281e-08,4.823630567098132202e-08,5.627568994947821123e-08,6.431507422797510044e-08,7.235445850647198964e-08,8.039384278496887885e-08,8.843322706346576806e-08,9.647261134196265727e-08,1.045119956204595465e-07,1.125513798989564357e-07,1.205907641774533117e-07,1.286301484559501744e-07,1.366695327344470371e-07,1.447089170129438999e-07,1.527483012914407626e-07,1.607876855699376254e-07,1.688270698484344881e-07,1.768664541269313508e-07,1.849058384054282136e-07,1.929452226839250763e-07,2.009846069624219391e-07,2.090239912409188018e-07,2.170633755194156645e-07,2.251027597979125273e-07,2.331421440764093900e-07,2.411815283549062527e-07,2.492209126334031155e-07,2.572602969118999782e-07,2.652996811903968410e-07,2.733390654688937037e-07,2.813784497473905664e-07,2.894178340258874292e-07,2.974572183043842919e-07,3.054966025828811547e-07,3.135359868613780174e-07,3.215753711398748801e-07,3.296147554183717429e-07,3.376541396968686056e-07,3.456935239753654684e-07,3.537329082538623311e-07,3.617722925323591938e-07,3.698116768108560566e-07,3.778510610893529193e-07,3.858904453678497821e-07,3.939298296463466448e-07,4.019692139248435075e-07,4.100085982033403703e-07,4.180479824818372330e-07,4.260873667603340957e-07,4.341267510388309585e-07,4.421661353173278212e-07,4.502055195958246840e-07,4.582449038743215467e-07,4.662842881528184094e-07,4.743236724313152722e-07,4.823630567098121879e-07,4.904024409883091035e-07,4.984418252668060192e-07,5.064812095453029349e-07 +0.000000000000000000e+00,8.996588814429412101e-09,1.799317762885882420e-08,2.698976644328823796e-08,3.598635525771765502e-08,4.498294407214707209e-08,5.397953288657648915e-08,6.297612170100590621e-08,7.197271051543532328e-08,8.096929932986474034e-08,8.996588814429415741e-08,9.896247695872357447e-08,1.079590657731529915e-07,1.169556545875824086e-07,1.259522434020118124e-07,1.349488322164412163e-07,1.439454210308706201e-07,1.529420098453000239e-07,1.619385986597294277e-07,1.709351874741588316e-07,1.799317762885882354e-07,1.889283651030176392e-07,1.979249539174470431e-07,2.069215427318764469e-07,2.159181315463058507e-07,2.249147203607352545e-07,2.339113091751646584e-07,2.429078979895940887e-07,2.519044868040235190e-07,2.609010756184529493e-07,2.698976644328823796e-07,2.788942532473118099e-07,2.878908420617412402e-07,2.968874308761706705e-07,3.058840196906001008e-07,3.148806085050295311e-07,3.238771973194589614e-07,3.328737861338883917e-07,3.418703749483178220e-07,3.508669637627472523e-07,3.598635525771766826e-07,3.688601413916061129e-07,3.778567302060355432e-07,3.868533190204649735e-07,3.958499078348944038e-07,4.048464966493238341e-07,4.138430854637532644e-07,4.228396742781826947e-07,4.318362630926121250e-07,4.408328519070415553e-07,4.498294407214709856e-07,4.588260295359004158e-07,4.678226183503298461e-07,4.768192071647592764e-07,4.858157959791887067e-07,4.948123847936181370e-07,5.038089736080475673e-07,5.128055624224769976e-07,5.218021512369064279e-07,5.307987400513358582e-07,5.397953288657652885e-07,5.487919176801947188e-07,5.577885064946241491e-07,5.667850953090535794e-07 +0.000000000000000000e+00,7.748242027790550809e-09,1.549648405558110162e-08,2.324472608337165243e-08,3.099296811116220324e-08,3.874121013895275404e-08,4.648945216674330485e-08,5.423769419453385566e-08,6.198593622232440647e-08,6.973417825011495066e-08,7.748242027790549485e-08,8.523066230569603904e-08,9.297890433348658324e-08,1.007271463612771274e-07,1.084753883890676716e-07,1.162236304168582158e-07,1.239718724446487600e-07,1.317201144724393042e-07,1.394683565002298484e-07,1.472165985280203926e-07,1.549648405558109368e-07,1.627130825836014810e-07,1.704613246113920252e-07,1.782095666391825693e-07,1.859578086669731135e-07,1.937060506947636577e-07,2.014542927225542019e-07,2.092025347503447461e-07,2.169507767781352903e-07,2.246990188059258345e-07,2.324472608337163787e-07,2.401955028615069229e-07,2.479437448892974671e-07,2.556919869170880113e-07,2.634402289448785554e-07,2.711884709726690996e-07,2.789367130004596438e-07,2.866849550282501880e-07,2.944331970560407322e-07,3.021814390838312764e-07,3.099296811116218206e-07,3.176779231394123648e-07,3.254261651672029090e-07,3.331744071949934532e-07,3.409226492227839974e-07,3.486708912505745416e-07,3.564191332783650857e-07,3.641673753061556299e-07,3.719156173339461741e-07,3.796638593617367183e-07,3.874121013895272625e-07,3.951603434173178067e-07,4.029085854451083509e-07,4.106568274728988951e-07,4.184050695006894393e-07,4.261533115284799835e-07,4.339015535562705277e-07,4.416497955840610718e-07,4.493980376118516160e-07,4.571462796396421602e-07,4.648945216674327044e-07,4.726427636952232486e-07,4.803910057230137399e-07,4.881392477508042841e-07 +0.000000000000000000e+00,7.431674515346779955e-09,1.486334903069355991e-08,2.229502354604033821e-08,2.972669806138711651e-08,3.715837257673389481e-08,4.459004709208067642e-08,5.202172160742745803e-08,5.945339612277423964e-08,6.688507063812102787e-08,7.431674515346781609e-08,8.174841966881460432e-08,8.918009418416139255e-08,9.661176869950818077e-08,1.040434432148549690e-07,1.114751177302017572e-07,1.189067922455485455e-07,1.263384667608953337e-07,1.337701412762421087e-07,1.412018157915888837e-07,1.486334903069356587e-07,1.560651648222824336e-07,1.634968393376292086e-07,1.709285138529759836e-07,1.783601883683227586e-07,1.857918628836695336e-07,1.932235373990163086e-07,2.006552119143630836e-07,2.080868864297098586e-07,2.155185609450566336e-07,2.229502354604034086e-07,2.303819099757501836e-07,2.378135844910969586e-07,2.452452590064437600e-07,2.526769335217905615e-07,2.601086080371373629e-07,2.675402825524841644e-07,2.749719570678309659e-07,2.824036315831777673e-07,2.898353060985245688e-07,2.972669806138713702e-07,3.046986551292181717e-07,3.121303296445649732e-07,3.195620041599117746e-07,3.269936786752585761e-07,3.344253531906053776e-07,3.418570277059521790e-07,3.492887022212989805e-07,3.567203767366457819e-07,3.641520512519925834e-07,3.715837257673393849e-07,3.790154002826861863e-07,3.864470747980329878e-07,3.938787493133797892e-07,4.013104238287265907e-07,4.087420983440733922e-07,4.161737728594201936e-07,4.236054473747669951e-07,4.310371218901137966e-07,4.384687964054605980e-07,4.459004709208073995e-07,4.533321454361542009e-07,4.607638199515010024e-07,4.681954944668478039e-07 +0.000000000000000000e+00,9.155951166613171069e-09,1.831190233322634214e-08,2.746785349983951321e-08,3.662380466645268428e-08,4.577975583306585204e-08,5.493570699967901980e-08,6.409165816629218756e-08,7.324760933290535532e-08,8.240356049951852308e-08,9.155951166613169084e-08,1.007154628327448586e-07,1.098714139993580264e-07,1.190273651659711941e-07,1.281833163325843486e-07,1.373392674991975164e-07,1.464952186658106842e-07,1.556511698324238519e-07,1.648071209990370197e-07,1.739630721656501874e-07,1.831190233322633552e-07,1.922749744988765230e-07,2.014309256654896907e-07,2.105868768321028585e-07,2.197428279987160262e-07,2.288987791653291940e-07,2.380547303319423618e-07,2.472106814985555295e-07,2.563666326651686973e-07,2.655225838317818650e-07,2.746785349983950328e-07,2.838344861650082006e-07,2.929904373316213683e-07,3.021463884982345361e-07,3.113023396648477039e-07,3.204582908314608716e-07,3.296142419980740394e-07,3.387701931646872071e-07,3.479261443313003749e-07,3.570820954979135427e-07,3.662380466645267104e-07,3.753939978311398782e-07,3.845499489977530459e-07,3.937059001643662137e-07,4.028618513309793815e-07,4.120178024975925492e-07,4.211737536642057170e-07,4.303297048308188847e-07,4.394856559974320525e-07,4.486416071640452203e-07,4.577975583306583880e-07,4.669535094972715558e-07,4.761094606638847235e-07,4.852654118304978384e-07,4.944213629971109532e-07,5.035773141637240680e-07,5.127332653303371828e-07,5.218892164969502976e-07,5.310451676635634125e-07,5.402011188301765273e-07,5.493570699967896421e-07,5.585130211634027569e-07,5.676689723300158717e-07,5.768249234966289866e-07 +0.000000000000000000e+00,7.748242027804344873e-09,1.549648405560868975e-08,2.324472608341303462e-08,3.099296811121737949e-08,3.874121013902172767e-08,4.648945216682607585e-08,5.423769419463042404e-08,6.198593622243477222e-08,6.973417825023912040e-08,7.748242027804346858e-08,8.523066230584781676e-08,9.297890433365216494e-08,1.007271463614565131e-07,1.084753883892608613e-07,1.162236304170652095e-07,1.239718724448695709e-07,1.317201144726739323e-07,1.394683565004782937e-07,1.472165985282826552e-07,1.549648405560870166e-07,1.627130825838913780e-07,1.704613246116957394e-07,1.782095666395001008e-07,1.859578086673044622e-07,1.937060506951088237e-07,2.014542927229131851e-07,2.092025347507175465e-07,2.169507767785219079e-07,2.246990188063262693e-07,2.324472608341306307e-07,2.401955028619349921e-07,2.479437448897393536e-07,2.556919869175437150e-07,2.634402289453480764e-07,2.711884709731524378e-07,2.789367130009567992e-07,2.866849550287611606e-07,2.944331970565655221e-07,3.021814390843698835e-07,3.099296811121742449e-07,3.176779231399786063e-07,3.254261651677829677e-07,3.331744071955873291e-07,3.409226492233916906e-07,3.486708912511960520e-07,3.564191332790004134e-07,3.641673753068047748e-07,3.719156173346091362e-07,3.796638593624134976e-07,3.874121013902178591e-07,3.951603434180222205e-07,4.029085854458265819e-07,4.106568274736309433e-07,4.184050695014353047e-07,4.261533115292396661e-07,4.339015535570440276e-07,4.416497955848483890e-07,4.493980376126527504e-07,4.571462796404571118e-07,4.648945216682614732e-07,4.726427636960658346e-07,4.803910057238701961e-07,4.881392477516746104e-07 +0.000000000000000000e+00,7.431674515361866075e-09,1.486334903072373215e-08,2.229502354608559822e-08,2.972669806144746430e-08,3.715837257680932707e-08,4.459004709217118983e-08,5.202172160753305260e-08,5.945339612289491536e-08,6.688507063825677813e-08,7.431674515361864090e-08,8.174841966898050366e-08,8.918009418434236643e-08,9.661176869970422919e-08,1.040434432150660920e-07,1.114751177304279547e-07,1.189067922457898175e-07,1.263384667611516935e-07,1.337701412765135827e-07,1.412018157918754720e-07,1.486334903072373612e-07,1.560651648225992504e-07,1.634968393379611397e-07,1.709285138533230289e-07,1.783601883686849181e-07,1.857918628840468074e-07,1.932235373994086966e-07,2.006552119147705859e-07,2.080868864301324751e-07,2.155185609454943643e-07,2.229502354608562536e-07,2.303819099762181428e-07,2.378135844915800320e-07,2.452452590069419213e-07,2.526769335223038105e-07,2.601086080376656997e-07,2.675402825530275890e-07,2.749719570683894782e-07,2.824036315837513674e-07,2.898353060991132567e-07,2.972669806144751459e-07,3.046986551298370352e-07,3.121303296451989244e-07,3.195620041605608136e-07,3.269936786759227029e-07,3.344253531912845921e-07,3.418570277066464813e-07,3.492887022220083706e-07,3.567203767373702598e-07,3.641520512527321490e-07,3.715837257680940383e-07,3.790154002834559275e-07,3.864470747988178168e-07,3.938787493141797060e-07,4.013104238295415952e-07,4.087420983449034845e-07,4.161737728602653737e-07,4.236054473756272629e-07,4.310371218909891522e-07,4.384687964063510414e-07,4.459004709217129306e-07,4.533321454370748199e-07,4.607638199524367091e-07,4.681954944677985983e-07 +0.000000000000000000e+00,9.155951166627648384e-09,1.831190233325529677e-08,2.746785349988294681e-08,3.662380466651060015e-08,4.577975583313825350e-08,5.493570699976590685e-08,6.409165816639355358e-08,7.324760933302120031e-08,8.240356049964884704e-08,9.155951166627649377e-08,1.007154628329041405e-07,1.098714139995317872e-07,1.190273651661594340e-07,1.281833163327870807e-07,1.373392674994147274e-07,1.464952186660423741e-07,1.556511698326700209e-07,1.648071209992976676e-07,1.739630721659253143e-07,1.831190233325529611e-07,1.922749744991806078e-07,2.014309256658082545e-07,2.105868768324359013e-07,2.197428279990635480e-07,2.288987791656911947e-07,2.380547303323188414e-07,2.472106814989464882e-07,2.563666326655741084e-07,2.655225838322017287e-07,2.746785349988293490e-07,2.838344861654569692e-07,2.929904373320845895e-07,3.021463884987122097e-07,3.113023396653398300e-07,3.204582908319674503e-07,3.296142419985950705e-07,3.387701931652226908e-07,3.479261443318503110e-07,3.570820954984779313e-07,3.662380466651055516e-07,3.753939978317331718e-07,3.845499489983607921e-07,3.937059001649884123e-07,4.028618513316160326e-07,4.120178024982436529e-07,4.211737536648712731e-07,4.303297048314988934e-07,4.394856559981265136e-07,4.486416071647541339e-07,4.577975583313817542e-07,4.669535094980093744e-07,4.761094606646369947e-07,4.852654118312646149e-07,4.944213629978922352e-07,5.035773141645198555e-07,5.127332653311474757e-07,5.218892164977750960e-07,5.310451676644027162e-07,5.402011188310303365e-07,5.493570699976579568e-07,5.585130211642855770e-07,5.676689723309131973e-07,5.768249234975408175e-07 +0.000000000000000000e+00,8.550895250995054072e-09,1.710179050199010814e-08,2.565268575298516222e-08,3.420358100398021629e-08,4.275447625497526705e-08,5.130537150597031781e-08,5.985626675696536858e-08,6.840716200796041934e-08,7.695805725895547010e-08,8.550895250995052087e-08,9.405984776094557163e-08,1.026107430119406224e-07,1.111616382629356732e-07,1.197125335139307107e-07,1.282634287649257614e-07,1.368143240159208122e-07,1.453652192669158630e-07,1.539161145179109137e-07,1.624670097689059645e-07,1.710179050199010153e-07,1.795688002708960660e-07,1.881196955218911168e-07,1.966705907728861676e-07,2.052214860238812183e-07,2.137723812748762691e-07,2.223232765258713198e-07,2.308741717768663706e-07,2.394250670278614214e-07,2.479759622788564721e-07,2.565268575298515229e-07,2.650777527808465737e-07,2.736286480318416244e-07,2.821795432828366752e-07,2.907304385338317259e-07,2.992813337848267767e-07,3.078322290358218275e-07,3.163831242868168782e-07,3.249340195378119290e-07,3.334849147888069798e-07,3.420358100398020305e-07,3.505867052907970813e-07,3.591376005417921321e-07,3.676884957927871828e-07,3.762393910437822336e-07,3.847902862947772843e-07,3.933411815457723351e-07,4.018920767967673859e-07,4.104429720477624366e-07,4.189938672987574874e-07,4.275447625497525382e-07,4.360956578007475889e-07,4.446465530517426397e-07,4.531974483027376905e-07,4.617483435537327412e-07,4.702992388047277920e-07,4.788501340557228427e-07,4.874010293067178406e-07,4.959519245577128384e-07,5.045028198087078362e-07,5.130537150597028340e-07,5.216046103106978319e-07,5.301555055616928297e-07,5.387064008126878275e-07 +0.000000000000000000e+00,8.137806457098113092e-09,1.627561291419622618e-08,2.441341937129433762e-08,3.255122582839244575e-08,4.068903228549055388e-08,4.882683874258866201e-08,5.696464519968677014e-08,6.510245165678487827e-08,7.324025811388299301e-08,8.137806457098110776e-08,8.951587102807922251e-08,9.765367748517733725e-08,1.057914839422754520e-07,1.139292903993735667e-07,1.220670968564716815e-07,1.302049033135697830e-07,1.383427097706678845e-07,1.464805162277659860e-07,1.546183226848640875e-07,1.627561291419621891e-07,1.708939355990602906e-07,1.790317420561583921e-07,1.871695485132564936e-07,1.953073549703545951e-07,2.034451614274526966e-07,2.115829678845507981e-07,2.197207743416488996e-07,2.278585807987470011e-07,2.359963872558451027e-07,2.441341937129432042e-07,2.522720001700413057e-07,2.604098066271394072e-07,2.685476130842375087e-07,2.766854195413356102e-07,2.848232259984337117e-07,2.929610324555318132e-07,3.010988389126299148e-07,3.092366453697280163e-07,3.173744518268261178e-07,3.255122582839242193e-07,3.336500647410223208e-07,3.417878711981204223e-07,3.499256776552185238e-07,3.580634841123166253e-07,3.662012905694147268e-07,3.743390970265128284e-07,3.824769034836109299e-07,3.906147099407090314e-07,3.987525163978071329e-07,4.068903228549052344e-07,4.150281293120033359e-07,4.231659357691014374e-07,4.313037422261995389e-07,4.394415486832976404e-07,4.475793551403957420e-07,4.557171615974938435e-07,4.638549680545919450e-07,4.719927745116900465e-07,4.801305809687881480e-07,4.882683874258863025e-07,4.964061938829844569e-07,5.045440003400826114e-07,5.126818067971807658e-07 +0.000000000000000000e+00,9.866881018562285386e-09,1.973376203712457077e-08,2.960064305568685450e-08,3.946752407424913493e-08,4.933440509281141535e-08,5.920128611137369577e-08,6.906816712993598281e-08,7.893504814849826985e-08,8.880192916706055689e-08,9.866881018562284393e-08,1.085356912041851310e-07,1.184025722227474180e-07,1.282694532413097051e-07,1.381363342598719921e-07,1.480032152784342791e-07,1.578700962969965662e-07,1.677369773155588532e-07,1.776038583341211403e-07,1.874707393526834273e-07,1.973376203712457143e-07,2.072045013898080014e-07,2.170713824083702884e-07,2.269382634269325755e-07,2.368051444454948625e-07,2.466720254640571231e-07,2.565389064826193572e-07,2.664057875011815913e-07,2.762726685197438254e-07,2.861395495383060595e-07,2.960064305568682936e-07,3.058733115754305277e-07,3.157401925939927618e-07,3.256070736125549959e-07,3.354739546311172300e-07,3.453408356496794641e-07,3.552077166682416982e-07,3.650745976868039323e-07,3.749414787053661664e-07,3.848083597239284005e-07,3.946752407424906346e-07,4.045421217610528687e-07,4.144090027796151028e-07,4.242758837981773369e-07,4.341427648167395710e-07,4.440096458353018051e-07,4.538765268538640392e-07,4.637434078724262733e-07,4.736102888909885074e-07,4.834771699095507415e-07,4.933440509281129756e-07,5.032109319466752097e-07,5.130778129652374438e-07,5.229446939837996779e-07,5.328115750023619120e-07,5.426784560209241461e-07,5.525453370394863802e-07,5.624122180580486143e-07,5.722790990766108484e-07,5.821459800951730825e-07,5.920128611137353166e-07,6.018797421322975507e-07,6.117466231508597848e-07,6.216135041694220189e-07 +0.000000000000000000e+00,8.550895251005684997e-09,1.710179050201136999e-08,2.565268575301705499e-08,3.420358100402273999e-08,4.275447625502842499e-08,5.130537150603410998e-08,5.985626675703978836e-08,6.840716200804546674e-08,7.695805725905114512e-08,8.550895251005682350e-08,9.405984776106250188e-08,1.026107430120681803e-07,1.111616382630738586e-07,1.197125335140795238e-07,1.282634287650851889e-07,1.368143240160908541e-07,1.453652192670965192e-07,1.539161145181021844e-07,1.624670097691078495e-07,1.710179050201135147e-07,1.795688002711191798e-07,1.881196955221248449e-07,1.966705907731305101e-07,2.052214860241361752e-07,2.137723812751418404e-07,2.223232765261475055e-07,2.308741717771531707e-07,2.394250670281588358e-07,2.479759622791645274e-07,2.565268575301702190e-07,2.650777527811759107e-07,2.736286480321816023e-07,2.821795432831872939e-07,2.907304385341929855e-07,2.992813337851986771e-07,3.078322290362043687e-07,3.163831242872100603e-07,3.249340195382157520e-07,3.334849147892214436e-07,3.420358100402271352e-07,3.505867052912328268e-07,3.591376005422385184e-07,3.676884957932442100e-07,3.762393910442499016e-07,3.847902862952555933e-07,3.933411815462612849e-07,4.018920767972669765e-07,4.104429720482726681e-07,4.189938672992783597e-07,4.275447625502840513e-07,4.360956578012897430e-07,4.446465530522954346e-07,4.531974483033011262e-07,4.617483435543068178e-07,4.702992388053125094e-07,4.788501340563182010e-07,4.874010293073238926e-07,4.959519245583295843e-07,5.045028198093352759e-07,5.130537150603409675e-07,5.216046103113466591e-07,5.301555055623523507e-07,5.387064008133580423e-07 +0.000000000000000000e+00,8.137806457110419885e-09,1.627561291422083977e-08,2.441341937133125966e-08,3.255122582844167954e-08,4.068903228555210274e-08,4.882683874266252593e-08,5.696464519977294912e-08,6.510245165688337232e-08,7.324025811399379551e-08,8.137806457110421871e-08,8.951587102821464190e-08,9.765367748532506509e-08,1.057914839424354883e-07,1.139292903995459115e-07,1.220670968566563347e-07,1.302049033137667711e-07,1.383427097708772075e-07,1.464805162279876440e-07,1.546183226850980804e-07,1.627561291422085168e-07,1.708939355993189533e-07,1.790317420564293897e-07,1.871695485135398261e-07,1.953073549706502625e-07,2.034451614277606990e-07,2.115829678848711354e-07,2.197207743419815718e-07,2.278585807990920083e-07,2.359963872562024447e-07,2.441341937133128811e-07,2.522720001704233175e-07,2.604098066275337540e-07,2.685476130846441904e-07,2.766854195417546268e-07,2.848232259988650633e-07,2.929610324559754997e-07,3.010988389130859361e-07,3.092366453701963725e-07,3.173744518273068090e-07,3.255122582844172454e-07,3.336500647415276818e-07,3.417878711986381183e-07,3.499256776557485547e-07,3.580634841128589911e-07,3.662012905699694275e-07,3.743390970270798640e-07,3.824769034841903004e-07,3.906147099413007368e-07,3.987525163984111733e-07,4.068903228555216097e-07,4.150281293126320461e-07,4.231659357697424825e-07,4.313037422268529190e-07,4.394415486839633554e-07,4.475793551410737918e-07,4.557171615981842283e-07,4.638549680552946647e-07,4.719927745124051011e-07,4.801305809695155376e-07,4.882683874266259740e-07,4.964061938837364104e-07,5.045440003408468468e-07,5.126818067979572833e-07 +0.000000000000000000e+00,9.866881018573968485e-09,1.973376203714793697e-08,2.960064305572190711e-08,3.946752407429588056e-08,4.933440509286985400e-08,5.920128611144382745e-08,6.906816713001780090e-08,7.893504814859177435e-08,8.880192916716574780e-08,9.866881018573972124e-08,1.085356912043136947e-07,1.184025722228876681e-07,1.282694532414616416e-07,1.381363342600356018e-07,1.480032152786095620e-07,1.578700962971835222e-07,1.677369773157574824e-07,1.776038583343314427e-07,1.874707393529054029e-07,1.973376203714793631e-07,2.072045013900533233e-07,2.170713824086272835e-07,2.269382634272012437e-07,2.368051444457752039e-07,2.466720254643491377e-07,2.565389064829230714e-07,2.664057875014970052e-07,2.762726685200709389e-07,2.861395495386448726e-07,2.960064305572188064e-07,3.058733115757927401e-07,3.157401925943666739e-07,3.256070736129406076e-07,3.354739546315145414e-07,3.453408356500884751e-07,3.552077166686624089e-07,3.650745976872363426e-07,3.749414787058102763e-07,3.848083597243842101e-07,3.946752407429581438e-07,4.045421217615320776e-07,4.144090027801060113e-07,4.242758837986799451e-07,4.341427648172538788e-07,4.440096458358278125e-07,4.538765268544017463e-07,4.637434078729756800e-07,4.736102888915496138e-07,4.834771699101235475e-07,4.933440509286974283e-07,5.032109319472713091e-07,5.130778129658451899e-07,5.229446939844190707e-07,5.328115750029929515e-07,5.426784560215668323e-07,5.525453370401407131e-07,5.624122180587145939e-07,5.722790990772884747e-07,5.821459800958623556e-07,5.920128611144362364e-07,6.018797421330101172e-07,6.117466231515839980e-07,6.216135041701578788e-07 +0.000000000000000000e+00,9.277426047619592849e-09,1.855485209523918570e-08,2.783227814285878020e-08,3.710970419047837801e-08,4.638713023809797582e-08,5.566455628571757364e-08,6.494198233333717806e-08,7.421940838095678249e-08,8.349683442857638692e-08,9.277426047619599135e-08,1.020516865238155958e-07,1.113291125714352002e-07,1.206065386190548046e-07,1.298839646666744091e-07,1.391613907142940135e-07,1.484388167619136179e-07,1.577162428095332224e-07,1.669936688571528268e-07,1.762710949047724312e-07,1.855485209523920356e-07,1.948259470000116401e-07,2.041033730476312445e-07,2.133807990952508489e-07,2.226582251428704534e-07,2.319356511904900578e-07,2.412130772381096622e-07,2.504905032857292402e-07,2.597679293333488181e-07,2.690453553809683961e-07,2.783227814285879741e-07,2.876002074762075520e-07,2.968776335238271300e-07,3.061550595714467079e-07,3.154324856190662859e-07,3.247099116666858639e-07,3.339873377143054418e-07,3.432647637619250198e-07,3.525421898095445977e-07,3.618196158571641757e-07,3.710970419047837536e-07,3.803744679524033316e-07,3.896518940000229096e-07,3.989293200476424875e-07,4.082067460952620655e-07,4.174841721428816434e-07,4.267615981905012214e-07,4.360390242381207994e-07,4.453164502857403773e-07,4.545938763333599553e-07,4.638713023809795332e-07,4.731487284285991112e-07,4.824261544762186892e-07,4.917035805238382671e-07,5.009810065714578451e-07,5.102584326190774230e-07,5.195358586666970010e-07,5.288132847143165790e-07,5.380907107619361569e-07,5.473681368095557349e-07,5.566455628571753128e-07,5.659229889047948908e-07,5.752004149524144688e-07,5.844778410000340467e-07 +0.000000000000000000e+00,8.933557884429835881e-09,1.786711576885967176e-08,2.680067365328950764e-08,3.573423153771934352e-08,4.466778942214917940e-08,5.360134730657901529e-08,6.253490519100885117e-08,7.146846307543868705e-08,8.040202095986852293e-08,8.933557884429835881e-08,9.826913672872819469e-08,1.072026946131580306e-07,1.161362524975878665e-07,1.250698103820177023e-07,1.340033682664475514e-07,1.429369261508774006e-07,1.518704840353072497e-07,1.608040419197370988e-07,1.697375998041669479e-07,1.786711576885967970e-07,1.876047155730266461e-07,1.965382734574564953e-07,2.054718313418863444e-07,2.144053892263161935e-07,2.233389471107460426e-07,2.322725049951758917e-07,2.412060628796057408e-07,2.501396207640355635e-07,2.590731786484653861e-07,2.680067365328952088e-07,2.769402944173250314e-07,2.858738523017548541e-07,2.948074101861846767e-07,3.037409680706144994e-07,3.126745259550443220e-07,3.216080838394741447e-07,3.305416417239039673e-07,3.394751996083337899e-07,3.484087574927636126e-07,3.573423153771934352e-07,3.662758732616232579e-07,3.752094311460530805e-07,3.841429890304829032e-07,3.930765469149127258e-07,4.020101047993425485e-07,4.109436626837723711e-07,4.198772205682021938e-07,4.288107784526320164e-07,4.377443363370618390e-07,4.466778942214916617e-07,4.556114521059214843e-07,4.645450099903513070e-07,4.734785678747811296e-07,4.824121257592109523e-07,4.913456836436407220e-07,5.002792415280704917e-07,5.092127994125002614e-07,5.181463572969300311e-07,5.270799151813598008e-07,5.360134730657895705e-07,5.449470309502193402e-07,5.538805888346491099e-07,5.628141467190788796e-07 +0.000000000000000000e+00,1.060781295213943369e-08,2.121562590427886739e-08,3.182343885641830439e-08,4.243125180855774139e-08,5.303906476069717839e-08,6.364687771283660878e-08,7.425469066497603916e-08,8.486250361711546955e-08,9.547031656925489993e-08,1.060781295213943303e-07,1.166859424735337607e-07,1.272937554256731911e-07,1.379015683778126215e-07,1.485093813299520519e-07,1.591171942820914822e-07,1.697250072342309126e-07,1.803328201863703430e-07,1.909406331385097734e-07,2.015484460906492038e-07,2.121562590427886342e-07,2.227640719949280645e-07,2.333718849470674949e-07,2.439796978992069518e-07,2.545875108513464351e-07,2.651953238034859184e-07,2.758031367556254018e-07,2.864109497077648851e-07,2.970187626599043684e-07,3.076265756120438517e-07,3.182343885641833351e-07,3.288422015163228184e-07,3.394500144684623017e-07,3.500578274206017850e-07,3.606656403727412683e-07,3.712734533248807517e-07,3.818812662770202350e-07,3.924890792291597183e-07,4.030968921812992016e-07,4.137047051334386850e-07,4.243125180855781683e-07,4.349203310377176516e-07,4.455281439898571349e-07,4.561359569419966183e-07,4.667437698941361016e-07,4.773515828462755849e-07,4.879593957984150682e-07,4.985672087505545516e-07,5.091750217026940349e-07,5.197828346548335182e-07,5.303906476069730015e-07,5.409984605591124849e-07,5.516062735112519682e-07,5.622140864633914515e-07,5.728218994155309348e-07,5.834297123676704182e-07,5.940375253198099015e-07,6.046453382719493848e-07,6.152531512240888681e-07,6.258609641762283514e-07,6.364687771283678348e-07,6.470765900805073181e-07,6.576844030326468014e-07,6.682922159847862847e-07 +0.000000000000000000e+00,9.277426047626804209e-09,1.855485209525360842e-08,2.783227814288041263e-08,3.710970419050721684e-08,4.638713023813402105e-08,5.566455628576082526e-08,6.494198233338762946e-08,7.421940838101443367e-08,8.349683442864123788e-08,9.277426047626804209e-08,1.020516865238948463e-07,1.113291125715216505e-07,1.206065386191484547e-07,1.298839646667752589e-07,1.391613907144020631e-07,1.484388167620288673e-07,1.577162428096556716e-07,1.669936688572824758e-07,1.762710949049092800e-07,1.855485209525360842e-07,1.948259470001628884e-07,2.041033730477896926e-07,2.133807990954164968e-07,2.226582251430433010e-07,2.319356511906701052e-07,2.412130772382969094e-07,2.504905032859237401e-07,2.597679293335505708e-07,2.690453553811774015e-07,2.783227814288042322e-07,2.876002074764310628e-07,2.968776335240578935e-07,3.061550595716847242e-07,3.154324856193115549e-07,3.247099116669383855e-07,3.339873377145652162e-07,3.432647637621920469e-07,3.525421898098188776e-07,3.618196158574457083e-07,3.710970419050725389e-07,3.803744679526993696e-07,3.896518940003262003e-07,3.989293200479530310e-07,4.082067460955798617e-07,4.174841721432066923e-07,4.267615981908335230e-07,4.360390242384603537e-07,4.453164502860871844e-07,4.545938763337140151e-07,4.638713023813408457e-07,4.731487284289676764e-07,4.824261544765945600e-07,4.917035805242214437e-07,5.009810065718483273e-07,5.102584326194752109e-07,5.195358586671020945e-07,5.288132847147289781e-07,5.380907107623558617e-07,5.473681368099827454e-07,5.566455628576096290e-07,5.659229889052365126e-07,5.752004149528633962e-07,5.844778410004902798e-07 +0.000000000000000000e+00,8.933557884438651972e-09,1.786711576887730394e-08,2.680067365331595757e-08,3.573423153775461450e-08,4.466778942219327144e-08,5.360134730663192837e-08,6.253490519107059193e-08,7.146846307550925548e-08,8.040202095994791903e-08,8.933557884438658258e-08,9.826913672882524614e-08,1.072026946132639097e-07,1.161362524977025732e-07,1.250698103821412368e-07,1.340033682665799003e-07,1.429369261510185639e-07,1.518704840354572275e-07,1.608040419198958910e-07,1.697375998043345546e-07,1.786711576887732181e-07,1.876047155732118817e-07,1.965382734576505452e-07,2.054718313420892088e-07,2.144053892265278723e-07,2.233389471109665359e-07,2.322725049954051994e-07,2.412060628798438630e-07,2.501396207642825265e-07,2.590731786487211901e-07,2.680067365331598536e-07,2.769402944175985172e-07,2.858738523020371807e-07,2.948074101864758443e-07,3.037409680709145078e-07,3.126745259553531714e-07,3.216080838397918349e-07,3.305416417242304985e-07,3.394751996086691620e-07,3.484087574931078256e-07,3.573423153775464892e-07,3.662758732619851527e-07,3.752094311464238163e-07,3.841429890308624798e-07,3.930765469153011434e-07,4.020101047997398069e-07,4.109436626841784705e-07,4.198772205686171340e-07,4.288107784530557976e-07,4.377443363374944611e-07,4.466778942219331247e-07,4.556114521063717882e-07,4.645450099908104518e-07,4.734785678752491153e-07,4.824121257596878318e-07,4.913456836441264954e-07,5.002792415285651589e-07,5.092127994130038225e-07,5.181463572974424860e-07,5.270799151818811496e-07,5.360134730663198131e-07,5.449470309507584767e-07,5.538805888351971402e-07,5.628141467196358038e-07 +0.000000000000000000e+00,1.060781295214815052e-08,2.121562590429630105e-08,3.182343885644444991e-08,4.243125180859259547e-08,5.303906476074074103e-08,6.364687771288888659e-08,7.425469066503702553e-08,8.486250361718516448e-08,9.547031656933330342e-08,1.060781295214814424e-07,1.166859424736295813e-07,1.272937554257777202e-07,1.379015683779258592e-07,1.485093813300739981e-07,1.591171942822221371e-07,1.697250072343702760e-07,1.803328201865184150e-07,1.909406331386665539e-07,2.015484460908146928e-07,2.121562590429628318e-07,2.227640719951109707e-07,2.333718849472591097e-07,2.439796978994072751e-07,2.545875108515554405e-07,2.651953238037036059e-07,2.758031367558517713e-07,2.864109497079999367e-07,2.970187626601481021e-07,3.076265756122962675e-07,3.182343885644444330e-07,3.288422015165925984e-07,3.394500144687407638e-07,3.500578274208889292e-07,3.606656403730370946e-07,3.712734533251852600e-07,3.818812662773334254e-07,3.924890792294815908e-07,4.030968921816297563e-07,4.137047051337779217e-07,4.243125180859260871e-07,4.349203310380742525e-07,4.455281439902224179e-07,4.561359569423705833e-07,4.667437698945187487e-07,4.773515828466669141e-07,4.879593957988150795e-07,4.985672087509632450e-07,5.091750217031114104e-07,5.197828346552595758e-07,5.303906476074077412e-07,5.409984605595559066e-07,5.516062735117040720e-07,5.622140864638522374e-07,5.728218994160004028e-07,5.834297123681485683e-07,5.940375253202967337e-07,6.046453382724448991e-07,6.152531512245930645e-07,6.258609641767412299e-07,6.364687771288893953e-07,6.470765900810375607e-07,6.576844030331857261e-07,6.682922159853338915e-07 +0.000000000000000000e+00,9.832332546057002991e-09,1.966466509211400598e-08,2.949699763817100897e-08,3.932933018422801196e-08,4.916166273028501165e-08,5.899399527634201133e-08,6.882632782239901101e-08,7.865866036845601069e-08,8.849099291451301038e-08,9.832332546057001006e-08,1.081556580066270097e-07,1.179879905526840094e-07,1.278203230987410091e-07,1.376526556447980220e-07,1.474849881908550349e-07,1.573173207369120479e-07,1.671496532829690608e-07,1.769819858290260737e-07,1.868143183750830866e-07,1.966466509211400995e-07,2.064789834671971124e-07,2.163113160132541254e-07,2.261436485593111383e-07,2.359759811053681512e-07,2.458083136514251641e-07,2.556406461974821770e-07,2.654729787435391899e-07,2.753053112895962029e-07,2.851376438356532158e-07,2.949699763817102287e-07,3.048023089277672416e-07,3.146346414738242545e-07,3.244669740198812675e-07,3.342993065659382804e-07,3.441316391119952933e-07,3.539639716580523062e-07,3.637963042041093191e-07,3.736286367501663320e-07,3.834609692962233450e-07,3.932933018422803579e-07,4.031256343883373708e-07,4.129579669343943837e-07,4.227902994804513966e-07,4.326226320265084095e-07,4.424549645725654225e-07,4.522872971186224354e-07,4.621196296646794483e-07,4.719519622107364612e-07,4.817842947567934212e-07,4.916166273028504341e-07,5.014489598489074470e-07,5.112812923949644599e-07,5.211136249410214729e-07,5.309459574870784858e-07,5.407782900331354987e-07,5.506106225791925116e-07,5.604429551252495245e-07,5.702752876713065374e-07,5.801076202173635504e-07,5.899399527634205633e-07,5.997722853094775762e-07,6.096046178555345891e-07,6.194369504015916020e-07 +0.000000000000000000e+00,9.575141054974089321e-09,1.915028210994817864e-08,2.872542316492226796e-08,3.830056421989635728e-08,4.787570527487044991e-08,5.745084632984454254e-08,6.702598738481863517e-08,7.660112843979272780e-08,8.617626949476682043e-08,9.575141054974091306e-08,1.053265516047150057e-07,1.149016926596890983e-07,1.244768337146632042e-07,1.340519747696372968e-07,1.436271158246113894e-07,1.532022568795854821e-07,1.627773979345595747e-07,1.723525389895336673e-07,1.819276800445077600e-07,1.915028210994818526e-07,2.010779621544559452e-07,2.106531032094300378e-07,2.202282442644041305e-07,2.298033853193782231e-07,2.393785263743523157e-07,2.489536674293264084e-07,2.585288084843005010e-07,2.681039495392745936e-07,2.776790905942486863e-07,2.872542316492227789e-07,2.968293727041968715e-07,3.064045137591709641e-07,3.159796548141450568e-07,3.255547958691191494e-07,3.351299369240932420e-07,3.447050779790673347e-07,3.542802190340414273e-07,3.638553600890155199e-07,3.734305011439896125e-07,3.830056421989637052e-07,3.925807832539377978e-07,4.021559243089118904e-07,4.117310653638859831e-07,4.213062064188600757e-07,4.308813474738341683e-07,4.404564885288082609e-07,4.500316295837823536e-07,4.596067706387564462e-07,4.691819116937305388e-07,4.787570527487046315e-07,4.883321938036786712e-07,4.979073348586527108e-07,5.074824759136267505e-07,5.170576169686007902e-07,5.266327580235748299e-07,5.362078990785488696e-07,5.457830401335229093e-07,5.553581811884969490e-07,5.649333222434709887e-07,5.745084632984450284e-07,5.840836043534190681e-07,5.936587454083931077e-07,6.032338864633671474e-07 +0.000000000000000000e+00,1.123528937485041947e-08,2.247057874970083895e-08,3.370586812455126007e-08,4.494115749940168451e-08,5.617644687425210895e-08,6.741173624910253338e-08,7.864702562395296444e-08,8.988231499880339549e-08,1.011176043736538265e-07,1.123528937485042576e-07,1.235881831233546886e-07,1.348234724982051197e-07,1.460587618730555508e-07,1.572940512479059818e-07,1.685293406227564129e-07,1.797646299976068439e-07,1.909999193724572750e-07,2.022352087473077060e-07,2.134704981221581371e-07,2.247057874970085681e-07,2.359410768718589992e-07,2.471763662467094302e-07,2.584116556215598348e-07,2.696469449964102394e-07,2.808822343712606440e-07,2.921175237461110486e-07,3.033528131209614532e-07,3.145881024958118577e-07,3.258233918706622623e-07,3.370586812455126669e-07,3.482939706203630715e-07,3.595292599952134761e-07,3.707645493700638807e-07,3.819998387449142852e-07,3.932351281197646898e-07,4.044704174946150944e-07,4.157057068694654990e-07,4.269409962443159036e-07,4.381762856191663082e-07,4.494115749940167127e-07,4.606468643688671173e-07,4.718821537437175219e-07,4.831174431185679265e-07,4.943527324934183311e-07,5.055880218682687357e-07,5.168233112431191403e-07,5.280586006179695448e-07,5.392938899928199494e-07,5.505291793676703540e-07,5.617644687425207586e-07,5.729997581173711632e-07,5.842350474922215678e-07,5.954703368670719723e-07,6.067056262419223769e-07,6.179409156167727815e-07,6.291762049916231861e-07,6.404114943664735907e-07,6.516467837413239953e-07,6.628820731161743998e-07,6.741173624910248044e-07,6.853526518658752090e-07,6.965879412407256136e-07,7.078232306155760182e-07 +0.000000000000000000e+00,9.832332546061335763e-09,1.966466509212267153e-08,2.949699763818400894e-08,3.932933018424534967e-08,4.916166273030669040e-08,5.899399527636803112e-08,6.882632782242937185e-08,7.865866036849071258e-08,8.849099291455205330e-08,9.832332546061339403e-08,1.081556580066747348e-07,1.179879905527360755e-07,1.278203230987974162e-07,1.376526556448587437e-07,1.474849881909200712e-07,1.573173207369813987e-07,1.671496532830427262e-07,1.769819858291040537e-07,1.868143183751653812e-07,1.966466509212267086e-07,2.064789834672880361e-07,2.163113160133493636e-07,2.261436485594106911e-07,2.359759811054720186e-07,2.458083136515333196e-07,2.556406461975946207e-07,2.654729787436559217e-07,2.753053112897172227e-07,2.851376438357785237e-07,2.949699763818398247e-07,3.048023089279011258e-07,3.146346414739624268e-07,3.244669740200237278e-07,3.342993065660850288e-07,3.441316391121463299e-07,3.539639716582076309e-07,3.637963042042689319e-07,3.736286367503302329e-07,3.834609692963915339e-07,3.932933018424528350e-07,4.031256343885141360e-07,4.129579669345754370e-07,4.227902994806367380e-07,4.326226320266980390e-07,4.424549645727593401e-07,4.522872971188206411e-07,4.621196296648819421e-07,4.719519622109432431e-07,4.817842947570045442e-07,4.916166273030657922e-07,5.014489598491270403e-07,5.112812923951882884e-07,5.211136249412495365e-07,5.309459574873107846e-07,5.407782900333720326e-07,5.506106225794332807e-07,5.604429551254945288e-07,5.702752876715557769e-07,5.801076202176170250e-07,5.899399527636782731e-07,5.997722853097395211e-07,6.096046178558007692e-07,6.194369504018620173e-07 +0.000000000000000000e+00,9.575141054979828300e-09,1.915028210995965660e-08,2.872542316493948324e-08,3.830056421991930658e-08,4.787570527489912992e-08,5.745084632987895325e-08,6.702598738485877659e-08,7.660112843983859993e-08,8.617626949481842326e-08,9.575141054979824660e-08,1.053265516047780699e-07,1.149016926597578933e-07,1.244768337147377166e-07,1.340519747697175532e-07,1.436271158246973898e-07,1.532022568796772263e-07,1.627773979346570629e-07,1.723525389896368995e-07,1.819276800446167360e-07,1.915028210995965726e-07,2.010779621545764092e-07,2.106531032095562458e-07,2.202282442645360823e-07,2.298033853195159189e-07,2.393785263744957290e-07,2.489536674294755391e-07,2.585288084844553492e-07,2.681039495394351593e-07,2.776790905944149694e-07,2.872542316493947795e-07,2.968293727043745896e-07,3.064045137593543997e-07,3.159796548143342098e-07,3.255547958693140199e-07,3.351299369242938300e-07,3.447050779792736401e-07,3.542802190342534502e-07,3.638553600892332603e-07,3.734305011442130704e-07,3.830056421991928805e-07,3.925807832541726906e-07,4.021559243091525007e-07,4.117310653641323108e-07,4.213062064191121209e-07,4.308813474740919310e-07,4.404564885290717411e-07,4.500316295840515512e-07,4.596067706390313613e-07,4.691819116940111714e-07,4.787570527489910345e-07,4.883321938039708975e-07,4.979073348589507606e-07,5.074824759139306236e-07,5.170576169689104866e-07,5.266327580238903497e-07,5.362078990788702127e-07,5.457830401338500758e-07,5.553581811888299388e-07,5.649333222438098019e-07,5.745084632987896649e-07,5.840836043537695279e-07,5.936587454087493910e-07,6.032338864637292540e-07 +0.000000000000000000e+00,1.123528937485659355e-08,2.247057874971318710e-08,3.370586812456978230e-08,4.494115749942638081e-08,5.617644687428297933e-08,6.741173624913957784e-08,7.864702562399617635e-08,8.988231499885277486e-08,1.011176043737093734e-07,1.123528937485659719e-07,1.235881831234225836e-07,1.348234724982791821e-07,1.460587618731357807e-07,1.572940512479923792e-07,1.685293406228489777e-07,1.797646299977055762e-07,1.909999193725621747e-07,2.022352087474187732e-07,2.134704981222753717e-07,2.247057874971319702e-07,2.359410768719885688e-07,2.471763662468451673e-07,2.584116556217017658e-07,2.696469449965583643e-07,2.808822343714149628e-07,2.921175237462715613e-07,3.033528131211281598e-07,3.145881024959847583e-07,3.258233918708413569e-07,3.370586812456979554e-07,3.482939706205545539e-07,3.595292599954111524e-07,3.707645493702677509e-07,3.819998387451243494e-07,3.932351281199809479e-07,4.044704174948375464e-07,4.157057068696941450e-07,4.269409962445507435e-07,4.381762856194073420e-07,4.494115749942639405e-07,4.606468643691205390e-07,4.718821537439771375e-07,4.831174431188337890e-07,4.943527324936904404e-07,5.055880218685470919e-07,5.168233112434037433e-07,5.280586006182603948e-07,5.392938899931170462e-07,5.505291793679736977e-07,5.617644687428303491e-07,5.729997581176870006e-07,5.842350474925436520e-07,5.954703368674003035e-07,6.067056262422569549e-07,6.179409156171136064e-07,6.291762049919702578e-07,6.404114943668269093e-07,6.516467837416835607e-07,6.628820731165402122e-07,6.741173624913968636e-07,6.853526518662535151e-07,6.965879412411101665e-07,7.078232306159668180e-07 +0.000000000000000000e+00,1.025723839086838961e-08,2.051447678173677922e-08,3.077171517260516884e-08,4.102895356347355845e-08,5.128619195434194806e-08,6.154343034521033767e-08,7.180066873607873390e-08,8.205790712694713013e-08,9.231514551781552636e-08,1.025723839086839226e-07,1.128296222995523188e-07,1.230868606904207018e-07,1.333440990812890848e-07,1.436013374721574678e-07,1.538585758630258508e-07,1.641158142538942338e-07,1.743730526447626168e-07,1.846302910356309998e-07,1.948875294264993828e-07,2.051447678173677658e-07,2.154020062082361488e-07,2.256592445991045318e-07,2.359164829899729148e-07,2.461737213808412978e-07,2.564309597717096543e-07,2.666881981625780108e-07,2.769454365534463673e-07,2.872026749443147239e-07,2.974599133351830804e-07,3.077171517260514369e-07,3.179743901169197934e-07,3.282316285077881500e-07,3.384888668986565065e-07,3.487461052895248630e-07,3.590033436803932195e-07,3.692605820712615761e-07,3.795178204621299326e-07,3.897750588529982891e-07,4.000322972438666456e-07,4.102895356347350022e-07,4.205467740256033587e-07,4.308040124164717152e-07,4.410612508073400717e-07,4.513184891982084282e-07,4.615757275890767848e-07,4.718329659799451413e-07,4.820902043708134978e-07,4.923474427616818543e-07,5.026046811525502109e-07,5.128619195434185674e-07,5.231191579342869239e-07,5.333763963251552804e-07,5.436336347160236370e-07,5.538908731068919935e-07,5.641481114977603500e-07,5.744053498886287065e-07,5.846625882794970631e-07,5.949198266703654196e-07,6.051770650612337761e-07,6.154343034521021326e-07,6.256915418429704892e-07,6.359487802338388457e-07,6.462060186247072022e-07 +0.000000000000000000e+00,1.005561850489727319e-08,2.011123700979454637e-08,3.016685551469181956e-08,4.022247401958909274e-08,5.027809252448636593e-08,6.033371102938363912e-08,7.038932953428091892e-08,8.044494803917819872e-08,9.050056654407547853e-08,1.005561850489727583e-07,1.106118035538700381e-07,1.206674220587673047e-07,1.307230405636645713e-07,1.407786590685618378e-07,1.508342775734591044e-07,1.608898960783563710e-07,1.709455145832536375e-07,1.810011330881509041e-07,1.910567515930481707e-07,2.011123700979454372e-07,2.111679886028427038e-07,2.212236071077399704e-07,2.312792256126372370e-07,2.413348441175345035e-07,2.513904626224317436e-07,2.614460811273289837e-07,2.715016996322262238e-07,2.815573181371234639e-07,2.916129366420207040e-07,3.016685551469179441e-07,3.117241736518151842e-07,3.217797921567124243e-07,3.318354106616096644e-07,3.418910291665069045e-07,3.519466476714041446e-07,3.620022661763013847e-07,3.720578846811986248e-07,3.821135031860958649e-07,3.921691216909931050e-07,4.022247401958903451e-07,4.122803587007875852e-07,4.223359772056848253e-07,4.323915957105820654e-07,4.424472142154793055e-07,4.525028327203765456e-07,4.625584512252737857e-07,4.726140697301710258e-07,4.826696882350682659e-07,4.927253067399655060e-07,5.027809252448627461e-07,5.128365437497599862e-07,5.228921622546572263e-07,5.329477807595544664e-07,5.430033992644517065e-07,5.530590177693489466e-07,5.631146362742461867e-07,5.731702547791434268e-07,5.832258732840406669e-07,5.932814917889379070e-07,6.033371102938351471e-07,6.133927287987323872e-07,6.234483473036296273e-07,6.335039658085268674e-07 +0.000000000000000000e+00,1.175557988562186018e-08,2.351115977124372035e-08,3.526673965686558053e-08,4.702231954248744070e-08,5.877789942810930088e-08,7.053347931373116105e-08,8.228905919935302123e-08,9.404463908497488140e-08,1.058002189705967416e-07,1.175557988562186018e-07,1.293113787418404619e-07,1.410669586274623221e-07,1.528225385130841823e-07,1.645781183987060425e-07,1.763336982843279026e-07,1.880892781699497628e-07,1.998448580555716230e-07,2.116004379411934832e-07,2.233560178268153433e-07,2.351115977124372035e-07,2.468671775980590637e-07,2.586227574836809239e-07,2.703783373693027840e-07,2.821339172549246442e-07,2.938894971405465044e-07,3.056450770261683646e-07,3.174006569117902247e-07,3.291562367974120849e-07,3.409118166830339451e-07,3.526673965686558053e-07,3.644229764542776654e-07,3.761785563398995256e-07,3.879341362255213858e-07,3.996897161111432460e-07,4.114452959967651061e-07,4.232008758823869663e-07,4.349564557680088265e-07,4.467120356536306867e-07,4.584676155392525468e-07,4.702231954248744070e-07,4.819787753104962142e-07,4.937343551961180215e-07,5.054899350817398287e-07,5.172455149673616360e-07,5.290010948529834432e-07,5.407566747386052504e-07,5.525122546242270577e-07,5.642678345098488649e-07,5.760234143954706721e-07,5.877789942810924794e-07,5.995345741667142866e-07,6.112901540523360938e-07,6.230457339379579011e-07,6.348013138235797083e-07,6.465568937092015155e-07,6.583124735948233228e-07,6.700680534804451300e-07,6.818236333660669373e-07,6.935792132516887445e-07,7.053347931373105517e-07,7.170903730229323590e-07,7.288459529085541662e-07,7.406015327941759734e-07 +0.000000000000000000e+00,1.025723839087027062e-08,2.051447678174054124e-08,3.077171517261081352e-08,4.102895356348108910e-08,5.128619195435136468e-08,6.154343034522164027e-08,7.180066873609191585e-08,8.205790712696219144e-08,9.231514551783246702e-08,1.025723839087027426e-07,1.128296222995730182e-07,1.230868606904433070e-07,1.333440990813135958e-07,1.436013374721838846e-07,1.538585758630541735e-07,1.641158142539244623e-07,1.743730526447947511e-07,1.846302910356650399e-07,1.948875294265353287e-07,2.051447678174056176e-07,2.154020062082759064e-07,2.256592445991461952e-07,2.359164829900164840e-07,2.461737213808867728e-07,2.564309597717570881e-07,2.666881981626274034e-07,2.769454365534977187e-07,2.872026749443680340e-07,2.974599133352383493e-07,3.077171517261086646e-07,3.179743901169789799e-07,3.282316285078492951e-07,3.384888668987196104e-07,3.487461052895899257e-07,3.590033436804602410e-07,3.692605820713305563e-07,3.795178204622008716e-07,3.897750588530711869e-07,4.000322972439415022e-07,4.102895356348118175e-07,4.205467740256821327e-07,4.308040124165524480e-07,4.410612508074227633e-07,4.513184891982930786e-07,4.615757275891633939e-07,4.718329659800337092e-07,4.820902043709040245e-07,4.923474427617742868e-07,5.026046811526445492e-07,5.128619195435148115e-07,5.231191579343850739e-07,5.333763963252553362e-07,5.436336347161255986e-07,5.538908731069958609e-07,5.641481114978661233e-07,5.744053498887363856e-07,5.846625882796066480e-07,5.949198266704769103e-07,6.051770650613471727e-07,6.154343034522174350e-07,6.256915418430876974e-07,6.359487802339579597e-07,6.462060186248282221e-07 +0.000000000000000000e+00,1.005561850490044294e-08,2.011123700980088588e-08,3.016685551470132883e-08,4.022247401960177177e-08,5.027809252450221471e-08,6.033371102940265765e-08,7.038932953430310059e-08,8.044494803920354354e-08,9.050056654410398648e-08,1.005561850490044294e-07,1.106118035539048724e-07,1.206674220588053153e-07,1.307230405637057582e-07,1.407786590686062012e-07,1.508342775735066441e-07,1.608898960784070871e-07,1.709455145833075300e-07,1.810011330882079730e-07,1.910567515931084159e-07,2.011123700980088588e-07,2.111679886029093018e-07,2.212236071078097447e-07,2.312792256127101877e-07,2.413348441176106306e-07,2.513904626225110471e-07,2.614460811274114636e-07,2.715016996323118800e-07,2.815573181372122965e-07,2.916129366421127130e-07,3.016685551470131294e-07,3.117241736519135459e-07,3.217797921568139624e-07,3.318354106617143789e-07,3.418910291666147953e-07,3.519466476715152118e-07,3.620022661764156283e-07,3.720578846813160447e-07,3.821135031862164612e-07,3.921691216911168777e-07,4.022247401960172942e-07,4.122803587009177106e-07,4.223359772058181271e-07,4.323915957107185436e-07,4.424472142156189601e-07,4.525028327205193765e-07,4.625584512254197930e-07,4.726140697303202095e-07,4.826696882352206259e-07,4.927253067401210424e-07,5.027809252450214589e-07,5.128365437499218754e-07,5.228921622548222918e-07,5.329477807597227083e-07,5.430033992646231248e-07,5.530590177695235412e-07,5.631146362744239577e-07,5.731702547793243742e-07,5.832258732842247907e-07,5.932814917891252071e-07,6.033371102940256236e-07,6.133927287989260401e-07,6.234483473038264566e-07,6.335039658087268730e-07 +0.000000000000000000e+00,1.175557988562566851e-08,2.351115977125133703e-08,3.526673965687700224e-08,4.702231954250266744e-08,5.877789942812833265e-08,7.053347931375400447e-08,8.228905919937967630e-08,9.404463908500534812e-08,1.058002189706310199e-07,1.175557988562566918e-07,1.293113787418823636e-07,1.410669586275080354e-07,1.528225385131337072e-07,1.645781183987593791e-07,1.763336982843850509e-07,1.880892781700107227e-07,1.998448580556363945e-07,2.116004379412620664e-07,2.233560178268877382e-07,2.351115977125134100e-07,2.468671775981390554e-07,2.586227574837646742e-07,2.703783373693902931e-07,2.821339172550159120e-07,2.938894971406415309e-07,3.056450770262671498e-07,3.174006569118927687e-07,3.291562367975183875e-07,3.409118166831440064e-07,3.526673965687696253e-07,3.644229764543952442e-07,3.761785563400208631e-07,3.879341362256464820e-07,3.996897161112721008e-07,4.114452959968977197e-07,4.232008758825233386e-07,4.349564557681489575e-07,4.467120356537745764e-07,4.584676155394001953e-07,4.702231954250258142e-07,4.819787753106514330e-07,4.937343551962770519e-07,5.054899350819026708e-07,5.172455149675282897e-07,5.290010948531539086e-07,5.407566747387795275e-07,5.525122546244051463e-07,5.642678345100307652e-07,5.760234143956563841e-07,5.877789942812820030e-07,5.995345741669076219e-07,6.112901540525332408e-07,6.230457339381588596e-07,6.348013138237844785e-07,6.465568937094100974e-07,6.583124735950357163e-07,6.700680534806613352e-07,6.818236333662869541e-07,6.935792132519125729e-07,7.053347931375381918e-07,7.170903730231638107e-07,7.288459529087894296e-07,7.406015327944150485e-07 +0.000000000000000000e+00,1.062221113799988346e-08,2.124442227599976692e-08,3.186663341399965038e-08,4.248884455199953384e-08,5.311105568999941730e-08,6.373326682799930076e-08,7.435547796599919084e-08,8.497768910399908092e-08,9.559990024199897100e-08,1.062221113799988611e-07,1.168443225179987512e-07,1.274665336559986280e-07,1.380887447939985048e-07,1.487109559319983817e-07,1.593331670699982585e-07,1.699553782079981354e-07,1.805775893459980122e-07,1.911998004839978891e-07,2.018220116219977659e-07,2.124442227599976427e-07,2.230664338979975196e-07,2.336886450359973964e-07,2.443108561739972733e-07,2.549330673119971501e-07,2.655552784499970270e-07,2.761774895879969038e-07,2.867997007259967806e-07,2.974219118639966575e-07,3.080441230019965343e-07,3.186663341399964112e-07,3.292885452779962880e-07,3.399107564159961649e-07,3.505329675539960417e-07,3.611551786919959186e-07,3.717773898299957954e-07,3.823996009679956722e-07,3.930218121059955491e-07,4.036440232439954259e-07,4.142662343819953028e-07,4.248884455199951796e-07,4.355106566579950565e-07,4.461328677959949333e-07,4.567550789339948101e-07,4.673772900719946870e-07,4.779995012099946168e-07,4.886217123479945466e-07,4.992439234859944763e-07,5.098661346239944061e-07,5.204883457619943359e-07,5.311105568999942657e-07,5.417327680379941955e-07,5.523549791759941252e-07,5.629771903139940550e-07,5.735994014519939848e-07,5.842216125899939146e-07,5.948438237279938444e-07,6.054660348659937742e-07,6.160882460039937039e-07,6.267104571419936337e-07,6.373326682799935635e-07,6.479548794179934933e-07,6.585770905559934231e-07,6.691993016939933529e-07 +0.000000000000000000e+00,1.044282843123713034e-08,2.088565686247426068e-08,3.132848529371138771e-08,4.177131372494851474e-08,5.221414215618564177e-08,6.265697058742277542e-08,7.309979901865990907e-08,8.354262744989704272e-08,9.398545588113417637e-08,1.044282843123713100e-07,1.148711127436084437e-07,1.253139411748455773e-07,1.357567696060826977e-07,1.461995980373198181e-07,1.566424264685569386e-07,1.670852548997940590e-07,1.775280833310311794e-07,1.879709117622682998e-07,1.984137401935054202e-07,2.088565686247425406e-07,2.192993970559796610e-07,2.297422254872167815e-07,2.401850539184539019e-07,2.506278823496909958e-07,2.610707107809280898e-07,2.715135392121651837e-07,2.819563676434022776e-07,2.923991960746393716e-07,3.028420245058764655e-07,3.132848529371135595e-07,3.237276813683506534e-07,3.341705097995877474e-07,3.446133382308248413e-07,3.550561666620619353e-07,3.654989950932990292e-07,3.759418235245361231e-07,3.863846519557732171e-07,3.968274803870103110e-07,4.072703088182474050e-07,4.177131372494844989e-07,4.281559656807215929e-07,4.385987941119586868e-07,4.490416225431957808e-07,4.594844509744328747e-07,4.699272794056699686e-07,4.803701078369070626e-07,4.908129362681441036e-07,5.012557646993811446e-07,5.116985931306181856e-07,5.221414215618552266e-07,5.325842499930922676e-07,5.430270784243293086e-07,5.534699068555663496e-07,5.639127352868033906e-07,5.743555637180404316e-07,5.847983921492774726e-07,5.952412205805145136e-07,6.056840490117515546e-07,6.161268774429885956e-07,6.265697058742256367e-07,6.370125343054626777e-07,6.474553627366997187e-07,6.578981911679367597e-07 +0.000000000000000000e+00,1.223701273382394604e-08,2.447402546764789207e-08,3.671103820147183811e-08,4.894805093529578414e-08,6.118506366911973018e-08,7.342207640294367621e-08,8.565908913676762225e-08,9.789610187059156828e-08,1.101331146044155143e-07,1.223701273382394604e-07,1.346071400720634064e-07,1.468441528058873524e-07,1.590811655397112985e-07,1.713181782735352445e-07,1.835551910073591905e-07,1.957922037411831366e-07,2.080292164750070826e-07,2.202662292088310286e-07,2.325032419426549747e-07,2.447402546764789207e-07,2.569772674103028667e-07,2.692142801441268128e-07,2.814512928779507588e-07,2.936883056117747048e-07,3.059253183455986509e-07,3.181623310794225969e-07,3.303993438132465430e-07,3.426363565470704890e-07,3.548733692808944350e-07,3.671103820147183811e-07,3.793473947485423271e-07,3.915844074823662731e-07,4.038214202161902192e-07,4.160584329500141652e-07,4.282954456838381112e-07,4.405324584176620573e-07,4.527694711514860033e-07,4.650064838853099493e-07,4.772434966191339483e-07,4.894805093529579473e-07,5.017175220867819463e-07,5.139545348206059452e-07,5.261915475544299442e-07,5.384285602882539432e-07,5.506655730220779422e-07,5.629025857559019411e-07,5.751395984897259401e-07,5.873766112235499391e-07,5.996136239573739381e-07,6.118506366911979370e-07,6.240876494250219360e-07,6.363246621588459350e-07,6.485616748926699340e-07,6.607986876264939329e-07,6.730357003603179319e-07,6.852727130941419309e-07,6.975097258279659299e-07,7.097467385617899288e-07,7.219837512956139278e-07,7.342207640294379268e-07,7.464577767632619258e-07,7.586947894970859247e-07,7.709318022309099237e-07 +0.000000000000000000e+00,1.062221113799854839e-08,2.124442227599709678e-08,3.186663341399564683e-08,4.248884455199420018e-08,5.311105568999275354e-08,6.373326682799130689e-08,7.435547796598986025e-08,8.497768910398841360e-08,9.559990024198696695e-08,1.062221113799855203e-07,1.168443225179840737e-07,1.274665336559826403e-07,1.380887447939811936e-07,1.487109559319797470e-07,1.593331670699783003e-07,1.699553782079768537e-07,1.805775893459754070e-07,1.911998004839739604e-07,2.018220116219725137e-07,2.124442227599710671e-07,2.230664338979696204e-07,2.336886450359681738e-07,2.443108561739667271e-07,2.549330673119652805e-07,2.655552784499638339e-07,2.761774895879623872e-07,2.867997007259609406e-07,2.974219118639594939e-07,3.080441230019580473e-07,3.186663341399566006e-07,3.292885452779551540e-07,3.399107564159537073e-07,3.505329675539522607e-07,3.611551786919508140e-07,3.717773898299493674e-07,3.823996009679479208e-07,3.930218121059464741e-07,4.036440232439450275e-07,4.142662343819435808e-07,4.248884455199421342e-07,4.355106566579406875e-07,4.461328677959392409e-07,4.567550789339377942e-07,4.673772900719363476e-07,4.779995012099349009e-07,4.886217123479334543e-07,4.992439234859320077e-07,5.098661346239305610e-07,5.204883457619291144e-07,5.311105568999276677e-07,5.417327680379262211e-07,5.523549791759247744e-07,5.629771903139233278e-07,5.735994014519218811e-07,5.842216125899204345e-07,5.948438237279189878e-07,6.054660348659175412e-07,6.160882460039160946e-07,6.267104571419146479e-07,6.373326682799132013e-07,6.479548794179117546e-07,6.585770905559103080e-07,6.691993016939088613e-07 +0.000000000000000000e+00,1.044282843123730405e-08,2.088565686247460810e-08,3.132848529371191049e-08,4.177131372494920957e-08,5.221414215618650866e-08,6.265697058742380775e-08,7.309979901866111345e-08,8.354262744989841915e-08,9.398545588113572485e-08,1.044282843123730306e-07,1.148711127436103363e-07,1.253139411748476420e-07,1.357567696060849477e-07,1.461995980373222534e-07,1.566424264685595591e-07,1.670852548997968648e-07,1.775280833310341705e-07,1.879709117622714762e-07,1.984137401935087819e-07,2.088565686247460876e-07,2.192993970559833933e-07,2.297422254872206990e-07,2.401850539184579782e-07,2.506278823496952310e-07,2.610707107809324837e-07,2.715135392121697365e-07,2.819563676434069893e-07,2.923991960746442420e-07,3.028420245058814948e-07,3.132848529371187476e-07,3.237276813683560003e-07,3.341705097995932531e-07,3.446133382308305058e-07,3.550561666620677586e-07,3.654989950933050114e-07,3.759418235245422641e-07,3.863846519557795169e-07,3.968274803870167697e-07,4.072703088182540224e-07,4.177131372494912752e-07,4.281559656807285279e-07,4.385987941119657807e-07,4.490416225432030335e-07,4.594844509744402862e-07,4.699272794056775390e-07,4.803701078369147918e-07,4.908129362681520445e-07,5.012557646993892973e-07,5.116985931306265501e-07,5.221414215618638028e-07,5.325842499931010556e-07,5.430270784243383083e-07,5.534699068555755611e-07,5.639127352868128139e-07,5.743555637180500666e-07,5.847983921492873194e-07,5.952412205805245722e-07,6.056840490117618249e-07,6.161268774429990777e-07,6.265697058742363304e-07,6.370125343054735832e-07,6.474553627367108360e-07,6.578981911679480887e-07 +0.000000000000000000e+00,1.223701273382505777e-08,2.447402546765011553e-08,3.671103820147517330e-08,4.894805093530023106e-08,6.118506366912528883e-08,7.342207640295034660e-08,8.565908913677540436e-08,9.789610187060046213e-08,1.101331146044255199e-07,1.223701273382505777e-07,1.346071400720756354e-07,1.468441528059006932e-07,1.590811655397257510e-07,1.713181782735508087e-07,1.835551910073758665e-07,1.957922037412009243e-07,2.080292164750259820e-07,2.202662292088510398e-07,2.325032419426760976e-07,2.447402546765011553e-07,2.569772674103262131e-07,2.692142801441512709e-07,2.814512928779763286e-07,2.936883056118013864e-07,3.059253183456264442e-07,3.181623310794515019e-07,3.303993438132765597e-07,3.426363565471016174e-07,3.548733692809266752e-07,3.671103820147517330e-07,3.793473947485767907e-07,3.915844074824018485e-07,4.038214202162269063e-07,4.160584329500519640e-07,4.282954456838770218e-07,4.405324584177020796e-07,4.527694711515271373e-07,4.650064838853521951e-07,4.772434966191772529e-07,4.894805093530023106e-07,5.017175220868273684e-07,5.139545348206524262e-07,5.261915475544774839e-07,5.384285602883025417e-07,5.506655730221275995e-07,5.629025857559526572e-07,5.751395984897777150e-07,5.873766112236027728e-07,5.996136239574278305e-07,6.118506366912528883e-07,6.240876494250779461e-07,6.363246621589030038e-07,6.485616748927280616e-07,6.607986876265531194e-07,6.730357003603781771e-07,6.852727130942032349e-07,6.975097258280282927e-07,7.097467385618533504e-07,7.219837512956784082e-07,7.342207640295034660e-07,7.464577767633285237e-07,7.586947894971535815e-07,7.709318022309786393e-07 +0.000000000000000000e+00,1.094217344081784307e-08,2.188434688163568615e-08,3.282652032245353088e-08,4.376869376327137230e-08,5.471086720408923357e-08,6.565304064490707499e-08,7.659521408572492303e-08,8.753738752654277107e-08,9.847956096736061910e-08,1.094217344081784671e-07,1.203639078489963019e-07,1.313060812898141235e-07,1.422482547306319451e-07,1.531904281714497666e-07,1.641326016122675617e-07,1.750747750530854363e-07,1.860169484939032049e-07,1.969591219347210794e-07,2.079012953755388480e-07,2.188434688163567225e-07,2.297856422571744912e-07,2.407278156979923392e-07,2.516699891388101608e-07,2.626121625796279823e-07,2.735543360204458039e-07,2.844965094612636255e-07,2.954386829020814470e-07,3.063808563428992686e-07,3.173230297837170902e-07,3.282652032245349117e-07,3.392073766653527333e-07,3.501495501061705549e-07,3.610917235469883764e-07,3.720338969878061980e-07,3.829760704286240196e-07,3.939182438694418411e-07,4.048604173102596627e-07,4.158025907510774843e-07,4.267447641918953058e-07,4.376869376327131274e-07,4.486291110735309490e-07,4.595712845143487705e-07,4.705134579551665921e-07,4.814556313959843607e-07,4.923978048368020764e-07,5.033399782776197921e-07,5.142821517184375078e-07,5.252243251592552235e-07,5.361664986000729392e-07,5.471086720408906549e-07,5.580508454817083706e-07,5.689930189225260862e-07,5.799351923633438019e-07,5.908773658041615176e-07,6.018195392449792333e-07,6.127617126857969490e-07,6.237038861266146647e-07,6.346460595674323804e-07,6.455882330082499902e-07,6.565304064490677059e-07,6.674725798898854216e-07,6.784147533307031373e-07,6.893569267715208529e-07 +0.000000000000000000e+00,1.093683553462479223e-08,2.187367106924958446e-08,3.281050660387437503e-08,4.374734213849916891e-08,5.468417767312394956e-08,6.562101320774873682e-08,7.655784874237352409e-08,8.749468427699831135e-08,9.843151981162308538e-08,1.093683553462478859e-07,1.203051908808726731e-07,1.312420264154974472e-07,1.421788619501222212e-07,1.531156974847469952e-07,1.640525330193717693e-07,1.749893685539965168e-07,1.859262040886213173e-07,1.968630396232461178e-07,2.077998751578708654e-07,2.187367106924956129e-07,2.296735462271204134e-07,2.406103817617451875e-07,2.515472172963699615e-07,2.624840528309947355e-07,2.734208883656195096e-07,2.843577239002442836e-07,2.952945594348690576e-07,3.062313949694938316e-07,3.171682305041186057e-07,3.281050660387433797e-07,3.390419015733681537e-07,3.499787371079929278e-07,3.609155726426177547e-07,3.718524081772424758e-07,3.827892437118672499e-07,3.937260792464920239e-07,4.046629147811167450e-07,4.155997503157415719e-07,4.265365858503663460e-07,4.374734213849911200e-07,4.484102569196159470e-07,4.593470924542406681e-07,4.702839279888654421e-07,4.812207635234902691e-07,4.921575990581150960e-07,5.030944345927399230e-07,5.140312701273647500e-07,5.249681056619895769e-07,5.359049411966144039e-07,5.468417767312392309e-07,5.577786122658640578e-07,5.687154478004888848e-07,5.796522833351137118e-07,5.905891188697385388e-07,6.015259544043633657e-07,6.124627899389881927e-07,6.233996254736130197e-07,6.343364610082378466e-07,6.452732965428626736e-07,6.562101320774875006e-07,6.671469676121123275e-07,6.780838031467371545e-07,6.890206386813619815e-07 +0.000000000000000000e+00,1.079125097960101414e-08,2.158250195920202829e-08,3.237375293880304078e-08,4.316500391840404996e-08,5.395625489800505914e-08,6.474750587760606832e-08,7.553875685720707088e-08,8.633000783680807344e-08,9.712125881640907600e-08,1.079125097960100786e-07,1.187037607756110811e-07,1.294950117552120837e-07,1.402862627348130863e-07,1.510775137144140888e-07,1.618687646940150914e-07,1.726600156736160939e-07,1.834512666532170965e-07,1.942425176328180991e-07,2.050337686124191016e-07,2.158250195920201042e-07,2.266162705716211068e-07,2.374075215512221093e-07,2.481987725308231119e-07,2.589900235104241144e-07,2.697812744900251170e-07,2.805725254696261196e-07,2.913637764492271221e-07,3.021550274288281247e-07,3.129462784084291273e-07,3.237375293880301298e-07,3.345287803676311324e-07,3.453200313472321349e-07,3.561112823268331375e-07,3.669025333064341401e-07,3.776937842860351426e-07,3.884850352656361452e-07,3.992762862452371478e-07,4.100675372248381503e-07,4.208587882044391529e-07,4.316500391840401554e-07,4.424412901636411580e-07,4.532325411432421606e-07,4.640237921228431631e-07,4.748150431024441657e-07,4.856062940820451153e-07,4.963975450616461179e-07,5.071887960412471204e-07,5.179800470208481230e-07,5.287712980004491256e-07,5.395625489800501281e-07,5.503537999596511307e-07,5.611450509392521333e-07,5.719363019188531358e-07,5.827275528984541384e-07,5.935188038780551409e-07,6.043100548576561435e-07,6.151013058372571461e-07,6.258925568168581486e-07,6.366838077964591512e-07,6.474750587760601538e-07,6.582663097556611563e-07,6.690575607352621589e-07,6.798488117148631615e-07 +0.000000000000000000e+00,1.272469615680245183e-08,2.544939231360490366e-08,3.817408847040735384e-08,5.089878462720980071e-08,6.362348078401224758e-08,7.634817694081469445e-08,8.907287309761714132e-08,1.017975692544195882e-07,1.145222654112220351e-07,1.272469615680244952e-07,1.399716577248269553e-07,1.526963538816294154e-07,1.654210500384318755e-07,1.781457461952343356e-07,1.908704423520367957e-07,2.035951385088392558e-07,2.163198346656417159e-07,2.290445308224441760e-07,2.417692269792466626e-07,2.544939231360491491e-07,2.672186192928516357e-07,2.799433154496541223e-07,2.926680116064566089e-07,3.053927077632590954e-07,3.181174039200615820e-07,3.308421000768640686e-07,3.435667962336665552e-07,3.562914923904690417e-07,3.690161885472715283e-07,3.817408847040740149e-07,3.944655808608765015e-07,4.071902770176789880e-07,4.199149731744814746e-07,4.326396693312839612e-07,4.453643654880864478e-07,4.580890616448889343e-07,4.708137578016914209e-07,4.835384539584939604e-07,4.962631501152964999e-07,5.089878462720990394e-07,5.217125424289015790e-07,5.344372385857041185e-07,5.471619347425066580e-07,5.598866308993091975e-07,5.726113270561117370e-07,5.853360232129142765e-07,5.980607193697168160e-07,6.107854155265193556e-07,6.235101116833218951e-07,6.362348078401244346e-07,6.489595039969269741e-07,6.616842001537295136e-07,6.744088963105320531e-07,6.871335924673345926e-07,6.998582886241371321e-07,7.125829847809396717e-07,7.253076809377422112e-07,7.380323770945447507e-07,7.507570732513472902e-07,7.634817694081498297e-07,7.762064655649523692e-07,7.889311617217549087e-07,8.016558578785574483e-07 +0.000000000000000000e+00,1.093834403206608381e-08,2.187668806413216762e-08,3.281503209619824978e-08,4.375337612826433525e-08,5.469172016033040748e-08,6.563006419239648633e-08,7.656840822446256518e-08,8.750675225652864403e-08,9.844509628859473611e-08,1.093834403206608017e-07,1.203217843527268806e-07,1.312601283847929462e-07,1.421984724168590118e-07,1.531368164489250774e-07,1.640751604809911166e-07,1.750135045130571822e-07,1.859518485451232478e-07,1.968901925771893134e-07,2.078285366092553790e-07,2.187668806413214446e-07,2.297052246733875102e-07,2.406435687054536023e-07,2.515819127375196679e-07,2.625202567695857336e-07,2.734586008016517992e-07,2.843969448337178648e-07,2.953352888657839304e-07,3.062736328978499960e-07,3.172119769299160616e-07,3.281503209619821272e-07,3.390886649940481929e-07,3.500270090261142585e-07,3.609653530581803241e-07,3.719036970902463897e-07,3.828420411223124553e-07,3.937803851543785209e-07,4.047187291864445865e-07,4.156570732185106522e-07,4.265954172505767178e-07,4.375337612826427834e-07,4.484721053147088490e-07,4.594104493467749146e-07,4.703487933788409802e-07,4.812871374109070988e-07,4.922254814429731644e-07,5.031638254750392300e-07,5.141021695071052956e-07,5.250405135391713612e-07,5.359788575712374269e-07,5.469172016033034925e-07,5.578555456353695581e-07,5.687938896674356237e-07,5.797322336995016893e-07,5.906705777315677549e-07,6.016089217636338205e-07,6.125472657956998862e-07,6.234856098277659518e-07,6.344239538598320174e-07,6.453622978918979771e-07,6.563006419239642545e-07,6.672389859560301084e-07,6.781773299880963857e-07,6.891156740201622396e-07 +0.000000000000000000e+00,1.272444210047633589e-08,2.544888420095267178e-08,3.817332630142900766e-08,5.089776840190534355e-08,6.362221050238167944e-08,7.634665260285801533e-08,8.907109470333435121e-08,1.017955368038106871e-07,1.145199789042870230e-07,1.272444210047633589e-07,1.399688631052396948e-07,1.526933052057160307e-07,1.654177473061923665e-07,1.781421894066687024e-07,1.908666315071450383e-07,2.035910736076213742e-07,2.163155157080977101e-07,2.290399578085740460e-07,2.417643999090503554e-07,2.544888420095266648e-07,2.672132841100029742e-07,2.799377262104792837e-07,2.926621683109555931e-07,3.053866104114319025e-07,3.181110525119082119e-07,3.308354946123845213e-07,3.435599367128608307e-07,3.562843788133371402e-07,3.690088209138134496e-07,3.817332630142897590e-07,3.944577051147660684e-07,4.071821472152423778e-07,4.199065893157186872e-07,4.326310314161949967e-07,4.453554735166713061e-07,4.580799156171476155e-07,4.708043577176239249e-07,4.835287998181002873e-07,4.962532419185766496e-07,5.089776840190530120e-07,5.217021261195293744e-07,5.344265682200057367e-07,5.471510103204820991e-07,5.598754524209584614e-07,5.725998945214348238e-07,5.853243366219111861e-07,5.980487787223875485e-07,6.107732208228639109e-07,6.234976629233402732e-07,6.362221050238166356e-07,6.489465471242929979e-07,6.616709892247693603e-07,6.743954313252457226e-07,6.871198734257220850e-07,6.998443155261984474e-07,7.125687576266748097e-07,7.252931997271511721e-07,7.380176418276275344e-07,7.507420839281038968e-07,7.634665260285802591e-07,7.761909681290566215e-07,7.889154102295329839e-07,8.016398523300093462e-07 +0.000000000000000000e+00,1.094217344081535492e-08,2.188434688163070983e-08,3.282652032244606640e-08,4.376869376326141966e-08,5.471086720407677292e-08,6.565304064489213280e-08,7.659521408570749268e-08,8.753738752652283932e-08,9.847956096733821243e-08,1.094217344081535855e-07,1.203639078489689322e-07,1.313060812897842921e-07,1.422482547305996519e-07,1.531904281714150118e-07,1.641326016122303717e-07,1.750747750530457316e-07,1.860169484938610650e-07,1.969591219346764513e-07,2.079012953754918112e-07,2.188434688163071711e-07,2.297856422571225574e-07,2.407278156979378644e-07,2.516699891387531978e-07,2.626121625795685312e-07,2.735543360203838646e-07,2.844965094611991980e-07,2.954386829020145314e-07,3.063808563428298648e-07,3.173230297836451982e-07,3.282652032244605316e-07,3.392073766652758651e-07,3.501495501060912514e-07,3.610917235469065319e-07,3.720338969877218653e-07,3.829760704285371987e-07,3.939182438693524792e-07,4.048604173101678655e-07,4.158025907509831989e-07,4.267447641917985323e-07,4.376869376326139187e-07,4.486291110734291991e-07,4.595712845142445326e-07,4.705134579550598660e-07,4.814556313958751994e-07,4.923978048366904798e-07,5.033399782775057603e-07,5.142821517183210408e-07,5.252243251591363212e-07,5.361664985999516017e-07,5.471086720407668822e-07,5.580508454815821627e-07,5.689930189223974431e-07,5.799351923632127236e-07,5.908773658040280041e-07,6.018195392448432845e-07,6.127617126856585650e-07,6.237038861264738455e-07,6.346460595672891259e-07,6.455882330081043005e-07,6.565304064489196869e-07,6.674725798897349673e-07,6.784147533305502478e-07,6.893569267713656342e-07 +0.000000000000000000e+00,1.093834403206485297e-08,2.187668806412970594e-08,3.281503209619455725e-08,4.375337612825941187e-08,5.469172016032426649e-08,6.563006419238911450e-08,7.656840822445396250e-08,8.750675225651882374e-08,9.844509628858364528e-08,1.093834403206485197e-07,1.203217843527133545e-07,1.312601283847782025e-07,1.421984724168430505e-07,1.531368164489078985e-07,1.640751604809727465e-07,1.750135045130375945e-07,1.859518485451024425e-07,1.968901925771672906e-07,2.078285366092321386e-07,2.187668806412969866e-07,2.297052246733618346e-07,2.406435687054266561e-07,2.515819127374914512e-07,2.625202567695562462e-07,2.734586008016210413e-07,2.843969448336858364e-07,2.953352888657506314e-07,3.062736328978154265e-07,3.172119769298802216e-07,3.281503209619449637e-07,3.390886649940097587e-07,3.500270090260745538e-07,3.609653530581393489e-07,3.719036970902041439e-07,3.828420411222689390e-07,3.937803851543337341e-07,4.047187291863985291e-07,4.156570732184633242e-07,4.265954172505281193e-07,4.375337612825929143e-07,4.484721053146577094e-07,4.594104493467225045e-07,4.703487933787872995e-07,4.812871374108521475e-07,4.922254814429169426e-07,5.031638254749817377e-07,5.141021695070465327e-07,5.250405135391113278e-07,5.359788575711761229e-07,5.469172016032409179e-07,5.578555456353057130e-07,5.687938896673705080e-07,5.797322336994353031e-07,5.906705777315000982e-07,6.016089217635648932e-07,6.125472657956296883e-07,6.234856098276944834e-07,6.344239538597592784e-07,6.453622978918240735e-07,6.563006419238888686e-07,6.672389859559536636e-07,6.781773299880184587e-07,6.891156740200832538e-07 +0.000000000000000000e+00,1.079125097959916622e-08,2.158250195919833244e-08,3.237375293879750197e-08,4.316500391839667150e-08,5.395625489799584103e-08,6.474750587759500395e-08,7.553875685719416686e-08,8.633000783679332977e-08,9.712125881639249269e-08,1.079125097959916556e-07,1.187037607755908185e-07,1.294950117551899814e-07,1.402862627347891576e-07,1.510775137143883337e-07,1.618687646939875099e-07,1.726600156735866860e-07,1.834512666531858622e-07,1.942425176327850383e-07,2.050337686123842145e-07,2.158250195919833906e-07,2.266162705715825668e-07,2.374075215511817429e-07,2.481987725307809191e-07,2.589900235103801217e-07,2.697812744899793243e-07,2.805725254695785269e-07,2.913637764491777295e-07,3.021550274287769321e-07,3.129462784083761348e-07,3.237375293879753374e-07,3.345287803675745400e-07,3.453200313471737426e-07,3.561112823267729452e-07,3.669025333063721478e-07,3.776937842859713505e-07,3.884850352655705531e-07,3.992762862451697557e-07,4.100675372247689583e-07,4.208587882043681609e-07,4.316500391839673636e-07,4.424412901635665662e-07,4.532325411431657688e-07,4.640237921227649714e-07,4.748150431023641740e-07,4.856062940819633766e-07,4.963975450615625793e-07,5.071887960411617819e-07,5.179800470207609845e-07,5.287712980003601871e-07,5.395625489799593897e-07,5.503537999595585923e-07,5.611450509391577950e-07,5.719363019187569976e-07,5.827275528983562002e-07,5.935188038779554028e-07,6.043100548575546054e-07,6.151013058371538081e-07,6.258925568167530107e-07,6.366838077963522133e-07,6.474750587759514159e-07,6.582663097555506185e-07,6.690575607351498211e-07,6.798488117147490238e-07 +0.000000000000000000e+00,1.272469615680157337e-08,2.544939231360314673e-08,3.817408847040472010e-08,5.089878462720629347e-08,6.362348078400786683e-08,7.634817694080944020e-08,8.907287309761101357e-08,1.017975692544125869e-07,1.145222654112141603e-07,1.272469615680157337e-07,1.399716577248172938e-07,1.526963538816188539e-07,1.654210500384204141e-07,1.781457461952219742e-07,1.908704423520235343e-07,2.035951385088250945e-07,2.163198346656266546e-07,2.290445308224282147e-07,2.417692269792297749e-07,2.544939231360313085e-07,2.672186192928328422e-07,2.799433154496343758e-07,2.926680116064359095e-07,3.053927077632374432e-07,3.181174039200389768e-07,3.308421000768405105e-07,3.435667962336420441e-07,3.562914923904435778e-07,3.690161885472451115e-07,3.817408847040466451e-07,3.944655808608481788e-07,4.071902770176497125e-07,4.199149731744512461e-07,4.326396693312527798e-07,4.453643654880543134e-07,4.580890616448558471e-07,4.708137578016573808e-07,4.835384539584589144e-07,4.962631501152603952e-07,5.089878462720618759e-07,5.217125424288633566e-07,5.344372385856648373e-07,5.471619347424663180e-07,5.598866308992677988e-07,5.726113270560692795e-07,5.853360232128707602e-07,5.980607193696722409e-07,6.107854155264737217e-07,6.235101116832752024e-07,6.362348078400766831e-07,6.489595039968781638e-07,6.616842001536796445e-07,6.744088963104811253e-07,6.871335924672826060e-07,6.998582886240840867e-07,7.125829847808855674e-07,7.253076809376870482e-07,7.380323770944885289e-07,7.507570732512900096e-07,7.634817694080914903e-07,7.762064655648929710e-07,7.889311617216944518e-07,8.016558578784959325e-07 +0.000000000000000000e+00,8.433392720835820607e-09,1.686678544167164121e-08,2.530017816250746182e-08,3.373357088334328243e-08,4.216696360417910634e-08,5.060035632501493026e-08,5.903374904585075418e-08,6.746714176668657809e-08,7.590053448752240201e-08,8.433392720835822592e-08,9.276731992919404984e-08,1.012007126500298738e-07,1.096341053708656977e-07,1.180674980917015216e-07,1.265008908125373455e-07,1.349342835333731827e-07,1.433676762542090198e-07,1.518010689750448570e-07,1.602344616958806941e-07,1.686678544167165313e-07,1.771012471375523684e-07,1.855346398583882056e-07,1.939680325792240427e-07,2.024014253000598799e-07,2.108348180208957170e-07,2.192682107417315542e-07,2.277016034625673913e-07,2.361349961834032285e-07,2.445683889042390656e-07,2.530017816250749028e-07,2.614351743459107399e-07,2.698685670667465771e-07,2.783019597875824142e-07,2.867353525084182514e-07,2.951687452292540885e-07,3.036021379500899257e-07,3.120355306709257628e-07,3.204689233917616000e-07,3.289023161125974371e-07,3.373357088334332743e-07,3.457691015542691114e-07,3.542024942751049486e-07,3.626358869959407857e-07,3.710692797167766229e-07,3.795026724376124600e-07,3.879360651584482972e-07,3.963694578792841343e-07,4.048028506001199715e-07,4.132362433209558086e-07,4.216696360417916458e-07,4.301030287626274829e-07,4.385364214834633201e-07,4.469698142042991572e-07,4.554032069251349944e-07,4.638365996459708315e-07,4.722699923668066687e-07,4.807033850876425058e-07,4.891367778084783430e-07,4.975701705293141801e-07,5.060035632501500173e-07,5.144369559709858544e-07,5.228703486918216916e-07,5.313037414126575287e-07 +0.000000000000000000e+00,4.609942474016980906e-09,9.219884948033961812e-09,1.382982742205094272e-08,1.843976989606792362e-08,2.304971237008490618e-08,2.765965484410188875e-08,3.226959731811887131e-08,3.687953979213585387e-08,4.148948226615283643e-08,4.609942474016981899e-08,5.070936721418680155e-08,5.531930968820378411e-08,5.992925216222076667e-08,6.453919463623774261e-08,6.914913711025471855e-08,7.375907958427169450e-08,7.836902205828867044e-08,8.297896453230564638e-08,8.758890700632262233e-08,9.219884948033959827e-08,9.680879195435657421e-08,1.014187344283735502e-07,1.060286769023905261e-07,1.106386193764075020e-07,1.152485618504244780e-07,1.198585043244414539e-07,1.244684467984584431e-07,1.290783892724754323e-07,1.336883317464924215e-07,1.382982742205094106e-07,1.429082166945263998e-07,1.475181591685433890e-07,1.521281016425603782e-07,1.567380441165773673e-07,1.613479865905943565e-07,1.659579290646113457e-07,1.705678715386283349e-07,1.751778140126453241e-07,1.797877564866623132e-07,1.843976989606793024e-07,1.890076414346962916e-07,1.936175839087132808e-07,1.982275263827302699e-07,2.028374688567472591e-07,2.074474113307642483e-07,2.120573538047812375e-07,2.166672962787982267e-07,2.212772387528152158e-07,2.258871812268322050e-07,2.304971237008491942e-07,2.351070661748661834e-07,2.397170086488831726e-07,2.443269511229001617e-07,2.489368935969171509e-07,2.535468360709341401e-07,2.581567785449511293e-07,2.627667210189681184e-07,2.673766634929851076e-07,2.719866059670020968e-07,2.765965484410190860e-07,2.812064909150360752e-07,2.858164333890530643e-07,2.904263758630700535e-07 +0.000000000000000000e+00,8.611898799418748909e-09,1.722379759883749782e-08,2.583569639825624673e-08,3.444759519767499563e-08,4.305949399709374454e-08,5.167139279651249345e-08,6.028329159593124236e-08,6.889519039534999127e-08,7.750708919476874018e-08,8.611898799418748909e-08,9.473088679360623799e-08,1.033427855930249869e-07,1.119546843924437358e-07,1.205665831918624847e-07,1.291784819912812204e-07,1.377903807906999561e-07,1.464022795901186917e-07,1.550141783895374274e-07,1.636260771889561631e-07,1.722379759883748988e-07,1.808498747877936344e-07,1.894617735872123701e-07,1.980736723866311058e-07,2.066855711860498415e-07,2.152974699854685771e-07,2.239093687848873128e-07,2.325212675843060485e-07,2.411331663837248106e-07,2.497450651831435728e-07,2.583569639825623349e-07,2.669688627819810971e-07,2.755807615813998592e-07,2.841926603808186213e-07,2.928045591802373835e-07,3.014164579796561456e-07,3.100283567790749078e-07,3.186402555784936699e-07,3.272521543779124321e-07,3.358640531773311942e-07,3.444759519767499563e-07,3.530878507761687185e-07,3.616997495755874806e-07,3.703116483750062428e-07,3.789235471744250049e-07,3.875354459738437671e-07,3.961473447732625292e-07,4.047592435726812913e-07,4.133711423721000535e-07,4.219830411715188156e-07,4.305949399709375778e-07,4.392068387703563399e-07,4.478187375697751021e-07,4.564306363691938642e-07,4.650425351686126264e-07,4.736544339680313885e-07,4.822663327674501506e-07,4.908782315668689128e-07,4.994901303662876749e-07,5.081020291657064371e-07,5.167139279651251992e-07,5.253258267645439614e-07,5.339377255639627235e-07,5.425496243633814856e-07 +0.000000000000000000e+00,9.637893447782260910e-09,1.927578689556452182e-08,2.891368034334678438e-08,3.855157379112905026e-08,4.818946723891131613e-08,5.782736068669358200e-08,6.746525413447584788e-08,7.710314758225811375e-08,8.674104103004037962e-08,9.637893447782264550e-08,1.060168279256049114e-07,1.156547213733871772e-07,1.252926148211694431e-07,1.349305082689516958e-07,1.445684017167339484e-07,1.542062951645162010e-07,1.638441886122984537e-07,1.734820820600807063e-07,1.831199755078629589e-07,1.927578689556452116e-07,2.023957624034274642e-07,2.120336558512097169e-07,2.216715492989919695e-07,2.313094427467742221e-07,2.409473361945564483e-07,2.505852296423386745e-07,2.602231230901209006e-07,2.698610165379031268e-07,2.794989099856853530e-07,2.891368034334675791e-07,2.987746968812498053e-07,3.084125903290320315e-07,3.180504837768142577e-07,3.276883772245964838e-07,3.373262706723787100e-07,3.469641641201609362e-07,3.566020575679431623e-07,3.662399510157253885e-07,3.758778444635076147e-07,3.855157379112898408e-07,3.951536313590720670e-07,4.047915248068542932e-07,4.144294182546365193e-07,4.240673117024187455e-07,4.337052051502009717e-07,4.433430985979831978e-07,4.529809920457654240e-07,4.626188854935476502e-07,4.722567789413298763e-07,4.818946723891120496e-07,4.915325658368942228e-07,5.011704592846763960e-07,5.108083527324585693e-07,5.204462461802407425e-07,5.300841396280229157e-07,5.397220330758050889e-07,5.493599265235872622e-07,5.589978199713694354e-07,5.686357134191516086e-07,5.782736068669337819e-07,5.879115003147159551e-07,5.975493937624981283e-07,6.071872872102803015e-07 +0.000000000000000000e+00,5.440772488556251519e-09,1.088154497711250304e-08,1.632231746566875456e-08,2.176308995422500608e-08,2.720386244278125760e-08,3.264463493133750912e-08,3.808540741989376064e-08,4.352617990845001215e-08,4.896695239700626367e-08,5.440772488556251519e-08,5.984849737411876671e-08,6.528926986267501823e-08,7.073004235123126975e-08,7.617081483978752127e-08,8.161158732834377279e-08,8.705235981690002431e-08,9.249313230545627583e-08,9.793390479401252735e-08,1.033746772825687789e-07,1.088154497711250304e-07,1.142562222596812819e-07,1.196969947482375334e-07,1.251377672367937982e-07,1.305785397253500629e-07,1.360193122139063277e-07,1.414600847024625924e-07,1.469008571910188572e-07,1.523416296795751220e-07,1.577824021681313867e-07,1.632231746566876515e-07,1.686639471452439162e-07,1.741047196338001810e-07,1.795454921223564457e-07,1.849862646109127105e-07,1.904270370994689752e-07,1.958678095880252400e-07,2.013085820765815047e-07,2.067493545651377695e-07,2.121901270536940342e-07,2.176308995422502990e-07,2.230716720308065638e-07,2.285124445193628285e-07,2.339532170079190933e-07,2.393939894964753315e-07,2.448347619850315698e-07,2.502755344735878081e-07,2.557163069621440464e-07,2.611570794507002847e-07,2.665978519392565230e-07,2.720386244278127613e-07,2.774793969163689995e-07,2.829201694049252378e-07,2.883609418934814761e-07,2.938017143820377144e-07,2.992424868705939527e-07,3.046832593591501910e-07,3.101240318477064292e-07,3.155648043362626675e-07,3.210055768248189058e-07,3.264463493133751441e-07,3.318871218019313824e-07,3.373278942904876207e-07,3.427686667790438590e-07 +0.000000000000000000e+00,5.955464104456077476e-09,1.191092820891215495e-08,1.786639231336823160e-08,2.382185641782430660e-08,2.977732052228038159e-08,3.573278462673645659e-08,4.168824873119253158e-08,4.764371283564860657e-08,5.359917694010468157e-08,5.955464104456075656e-08,6.551010514901683156e-08,7.146556925347289994e-08,7.742103335792896831e-08,8.337649746238503669e-08,8.933196156684110507e-08,9.528742567129717345e-08,1.012428897757532418e-07,1.071983538802093102e-07,1.131538179846653786e-07,1.191092820891214470e-07,1.250647461935775153e-07,1.310202102980335837e-07,1.369756744024896521e-07,1.429311385069457205e-07,1.488866026114017888e-07,1.548420667158578572e-07,1.607975308203139256e-07,1.667529949247699940e-07,1.727084590292260623e-07,1.786639231336821307e-07,1.846193872381381991e-07,1.905748513425942675e-07,1.965303154470503359e-07,2.024857795515064042e-07,2.084412436559624726e-07,2.143967077604185410e-07,2.203521718648746094e-07,2.263076359693306777e-07,2.322631000737867461e-07,2.382185641782428145e-07,2.441740282826988829e-07,2.501294923871549248e-07,2.560849564916109667e-07,2.620404205960670086e-07,2.679958847005230505e-07,2.739513488049790924e-07,2.799068129094351343e-07,2.858622770138911762e-07,2.918177411183472181e-07,2.977732052228032600e-07,3.037286693272593020e-07,3.096841334317153439e-07,3.156395975361713858e-07,3.215950616406274277e-07,3.275505257450834696e-07,3.335059898495395115e-07,3.394614539539955534e-07,3.454169180584515953e-07,3.513723821629076372e-07,3.573278462673636791e-07,3.632833103718197210e-07,3.692387744762757629e-07,3.751942385807318048e-07 +0.000000000000000000e+00,8.569148099987449747e-09,1.713829619997489949e-08,2.570744429996234759e-08,3.427659239994979237e-08,4.284574049993723716e-08,5.141488859992468194e-08,5.998403669991212672e-08,6.855318479989957151e-08,7.712233289988701629e-08,8.569148099987446108e-08,9.426062909986190586e-08,1.028297771998493506e-07,1.113989252998367954e-07,1.199680733998242534e-07,1.285372214998117115e-07,1.371063695997991695e-07,1.456755176997866275e-07,1.542446657997740855e-07,1.628138138997615435e-07,1.713829619997490016e-07,1.799521100997364596e-07,1.885212581997239176e-07,1.970904062997113756e-07,2.056595543996988336e-07,2.142287024996862917e-07,2.227978505996737497e-07,2.313669986996612077e-07,2.399361467996486657e-07,2.485052948996360973e-07,2.570744429996235288e-07,2.656435910996109604e-07,2.742127391995983919e-07,2.827818872995858235e-07,2.913510353995732550e-07,2.999201834995606866e-07,3.084893315995481181e-07,3.170584796995355497e-07,3.256276277995229812e-07,3.341967758995104128e-07,3.427659239994978443e-07,3.513350720994852759e-07,3.599042201994727074e-07,3.684733682994601390e-07,3.770425163994475705e-07,3.856116644994350021e-07,3.941808125994224336e-07,4.027499606994098651e-07,4.113191087993972967e-07,4.198882568993847282e-07,4.284574049993721598e-07,4.370265530993595913e-07,4.455957011993470229e-07,4.541648492993344544e-07,4.627339973993218860e-07,4.713031454993093175e-07,4.798722935992968020e-07,4.884414416992842865e-07,4.970105897992717710e-07,5.055797378992592555e-07,5.141488859992467400e-07,5.227180340992342245e-07,5.312871821992217090e-07,5.398563302992091935e-07 +0.000000000000000000e+00,9.793865668695040441e-09,1.958773133739008088e-08,2.938159700608512298e-08,3.917546267478016838e-08,4.896932834347521379e-08,5.876319401217025919e-08,6.855705968086530460e-08,7.835092534956035000e-08,8.814479101825539541e-08,9.793865668695044081e-08,1.077325223556454862e-07,1.175263880243405316e-07,1.273202536930355770e-07,1.371141193617306092e-07,1.469079850304256414e-07,1.567018506991206735e-07,1.664957163678157057e-07,1.762895820365107379e-07,1.860834477052057700e-07,1.958773133739008022e-07,2.056711790425958344e-07,2.154650447112908665e-07,2.252589103799858987e-07,2.350527760486809309e-07,2.448466417173759895e-07,2.546405073860710482e-07,2.644343730547661068e-07,2.742282387234611654e-07,2.840221043921562241e-07,2.938159700608512827e-07,3.036098357295463414e-07,3.134037013982414000e-07,3.231975670669364586e-07,3.329914327356315173e-07,3.427852984043265759e-07,3.525791640730216346e-07,3.623730297417166932e-07,3.721668954104117518e-07,3.819607610791068105e-07,3.917546267478018691e-07,4.015484924164969278e-07,4.113423580851919864e-07,4.211362237538870450e-07,4.309300894225821037e-07,4.407239550912771623e-07,4.505178207599722210e-07,4.603116864286672796e-07,4.701055520973623382e-07,4.798994177660573969e-07,4.896932834347524026e-07,4.994871491034474083e-07,5.092810147721424140e-07,5.190748804408374197e-07,5.288687461095324254e-07,5.386626117782274311e-07,5.484564774469224368e-07,5.582503431156174425e-07,5.680442087843124482e-07,5.778380744530074539e-07,5.876319401217024596e-07,5.974258057903974653e-07,6.072196714590924710e-07,6.170135371277874767e-07 +0.000000000000000000e+00,8.433392720853418047e-09,1.686678544170683609e-08,2.530017816256025249e-08,3.373357088341366557e-08,4.216696360426707866e-08,5.060035632512049174e-08,5.903374904597390483e-08,6.746714176682731791e-08,7.590053448768073099e-08,8.433392720853414408e-08,9.276731992938755716e-08,1.012007126502409702e-07,1.096341053710943833e-07,1.180674980919477964e-07,1.265008908128011963e-07,1.349342835336546094e-07,1.433676762545080224e-07,1.518010689753614355e-07,1.602344616962148486e-07,1.686678544170682617e-07,1.771012471379216748e-07,1.855346398587750879e-07,1.939680325796285009e-07,2.024014253004819140e-07,2.108348180213353271e-07,2.192682107421887402e-07,2.277016034630421533e-07,2.361349961838955664e-07,2.445683889047489794e-07,2.530017816256023925e-07,2.614351743464558056e-07,2.698685670673092187e-07,2.783019597881626318e-07,2.867353525090160449e-07,2.951687452298694580e-07,3.036021379507228710e-07,3.120355306715762841e-07,3.204689233924296972e-07,3.289023161132831103e-07,3.373357088341365234e-07,3.457691015549899365e-07,3.542024942758433495e-07,3.626358869966967626e-07,3.710692797175501757e-07,3.795026724384035888e-07,3.879360651592570019e-07,3.963694578801104150e-07,4.048028506009638281e-07,4.132362433218172411e-07,4.216696360426706542e-07,4.301030287635240673e-07,4.385364214843774804e-07,4.469698142052308935e-07,4.554032069260843066e-07,4.638365996469377196e-07,4.722699923677911327e-07,4.807033850886445458e-07,4.891367778094979589e-07,4.975701705303513720e-07,5.060035632512047851e-07,5.144369559720581981e-07,5.228703486929116112e-07,5.313037414137650243e-07 +0.000000000000000000e+00,4.609942474032698165e-09,9.219884948065396330e-09,1.382982742209809367e-08,1.843976989613078935e-08,2.304971237016348503e-08,2.765965484419618072e-08,3.226959731822887971e-08,3.687953979226157870e-08,4.148948226629427769e-08,4.609942474032697669e-08,5.070936721435967568e-08,5.531930968839237467e-08,5.992925216242507366e-08,6.453919463645777265e-08,6.914913711049047165e-08,7.375907958452317064e-08,7.836902205855586963e-08,8.297896453258856862e-08,8.758890700662126761e-08,9.219884948065396661e-08,9.680879195468666560e-08,1.014187344287193646e-07,1.060286769027520636e-07,1.106386193767847626e-07,1.152485618508174616e-07,1.198585043248501473e-07,1.244684467988828331e-07,1.290783892729155188e-07,1.336883317469482046e-07,1.382982742209808904e-07,1.429082166950135761e-07,1.475181591690462619e-07,1.521281016430789476e-07,1.567380441171116334e-07,1.613479865911443191e-07,1.659579290651770049e-07,1.705678715392096907e-07,1.751778140132423764e-07,1.797877564872750622e-07,1.843976989613077479e-07,1.890076414353404337e-07,1.936175839093731194e-07,1.982275263834058052e-07,2.028374688574384910e-07,2.074474113314711767e-07,2.120573538055038625e-07,2.166672962795365482e-07,2.212772387535692340e-07,2.258871812276019197e-07,2.304971237016346055e-07,2.351070661756672913e-07,2.397170086496999770e-07,2.443269511237326363e-07,2.489368935977652956e-07,2.535468360717979549e-07,2.581567785458306142e-07,2.627667210198632734e-07,2.673766634938959327e-07,2.719866059679285920e-07,2.765965484419612513e-07,2.812064909159939106e-07,2.858164333900265699e-07,2.904263758640592292e-07 +0.000000000000000000e+00,8.569148099996123563e-09,1.713829619999224713e-08,2.570744429998837069e-08,3.427659239998449425e-08,4.284574049998062112e-08,5.141488859997674800e-08,5.998403669997287487e-08,6.855318479996900174e-08,7.712233289996512861e-08,8.569148099996125548e-08,9.426062909995738236e-08,1.028297771999535092e-07,1.113989252999496361e-07,1.199680733999457497e-07,1.285372214999418634e-07,1.371063695999379770e-07,1.456755176999340906e-07,1.542446657999302043e-07,1.628138138999263179e-07,1.713829619999224316e-07,1.799521100999185452e-07,1.885212581999146588e-07,1.970904062999107725e-07,2.056595543999068861e-07,2.142287024999029997e-07,2.227978505998991134e-07,2.313669986998952270e-07,2.399361467998913407e-07,2.485052948998874543e-07,2.570744429998835679e-07,2.656435910998796816e-07,2.742127391998757952e-07,2.827818872998719088e-07,2.913510353998680225e-07,2.999201834998641361e-07,3.084893315998602497e-07,3.170584796998563634e-07,3.256276277998524770e-07,3.341967758998485907e-07,3.427659239998447043e-07,3.513350720998408179e-07,3.599042201998369316e-07,3.684733682998330452e-07,3.770425163998291588e-07,3.856116644998252725e-07,3.941808125998213861e-07,4.027499606998174998e-07,4.113191087998136134e-07,4.198882568998097270e-07,4.284574049998058407e-07,4.370265530998019543e-07,4.455957011997980679e-07,4.541648492997941816e-07,4.627339973997902952e-07,4.713031454997864089e-07,4.798722935997825754e-07,4.884414416997787420e-07,4.970105897997749086e-07,5.055797378997710752e-07,5.141488859997672417e-07,5.227180340997634083e-07,5.312871821997595749e-07,5.398563302997557415e-07 +0.000000000000000000e+00,9.637893447800025441e-09,1.927578689560005088e-08,2.891368034340007467e-08,3.855157379120009515e-08,4.818946723900011562e-08,5.782736068680013610e-08,6.746525413460014996e-08,7.710314758240016382e-08,8.674104103020017768e-08,9.637893447800019154e-08,1.060168279258002054e-07,1.156547213736002193e-07,1.252926148214002331e-07,1.349305082692002470e-07,1.445684017170002608e-07,1.542062951648002747e-07,1.638441886126002886e-07,1.734820820604003024e-07,1.831199755082003163e-07,1.927578689560003301e-07,2.023957624038003440e-07,2.120336558516003579e-07,2.216715492994003717e-07,2.313094427472003856e-07,2.409473361950003994e-07,2.505852296428004133e-07,2.602231230906004272e-07,2.698610165384004410e-07,2.794989099862004549e-07,2.891368034340004687e-07,2.987746968818004826e-07,3.084125903296004965e-07,3.180504837774005103e-07,3.276883772252005242e-07,3.373262706730005381e-07,3.469641641208005519e-07,3.566020575686005658e-07,3.662399510164005796e-07,3.758778444642005935e-07,3.855157379120006074e-07,3.951536313598006212e-07,4.047915248076006351e-07,4.144294182554006489e-07,4.240673117032006628e-07,4.337052051510006767e-07,4.433430985988006905e-07,4.529809920466007044e-07,4.626188854944007182e-07,4.722567789422007321e-07,4.818946723900007989e-07,4.915325658378008657e-07,5.011704592856009325e-07,5.108083527334009993e-07,5.204462461812010661e-07,5.300841396290011329e-07,5.397220330768011997e-07,5.493599265246012665e-07,5.589978199724013333e-07,5.686357134202014001e-07,5.782736068680014669e-07,5.879115003158015337e-07,5.975493937636016005e-07,6.071872872114016673e-07 +0.000000000000000000e+00,5.440772488573245118e-09,1.088154497714649024e-08,1.632231746571973535e-08,2.176308995429298047e-08,2.720386244286622559e-08,3.264463493143947071e-08,3.808540742001271582e-08,4.352617990858596094e-08,4.896695239715920606e-08,5.440772488573245118e-08,5.984849737430569630e-08,6.528926986287894141e-08,7.073004235145218653e-08,7.617081484002543165e-08,8.161158732859867677e-08,8.705235981717192189e-08,9.249313230574516700e-08,9.793390479431841212e-08,1.033746772828916572e-07,1.088154497714649024e-07,1.142562222600381475e-07,1.196969947486113926e-07,1.251377672371846509e-07,1.305785397257579093e-07,1.360193122143311677e-07,1.414600847029044260e-07,1.469008571914776844e-07,1.523416296800509427e-07,1.577824021686242011e-07,1.632231746571974594e-07,1.686639471457707178e-07,1.741047196343439761e-07,1.795454921229172345e-07,1.849862646114904928e-07,1.904270371000637512e-07,1.958678095886370095e-07,2.013085820772102679e-07,2.067493545657835262e-07,2.121901270543567846e-07,2.176308995429300429e-07,2.230716720315033013e-07,2.285124445200765596e-07,2.339532170086498180e-07,2.393939894972230499e-07,2.448347619857962818e-07,2.502755344743695136e-07,2.557163069629427455e-07,2.611570794515159774e-07,2.665978519400892093e-07,2.720386244286624412e-07,2.774793969172356731e-07,2.829201694058089049e-07,2.883609418943821368e-07,2.938017143829553687e-07,2.992424868715286006e-07,3.046832593601018325e-07,3.101240318486750644e-07,3.155648043372482962e-07,3.210055768258215281e-07,3.264463493143947600e-07,3.318871218029679919e-07,3.373278942915412238e-07,3.427686667801144557e-07 +0.000000000000000000e+00,5.955464104472105755e-09,1.191092820894421151e-08,1.786639231341631726e-08,2.382185641788842302e-08,2.977732052236052877e-08,3.573278462683263453e-08,4.168824873130473698e-08,4.764371283577683942e-08,5.359917694024894187e-08,5.955464104472104431e-08,6.551010514919314676e-08,7.146556925366525582e-08,7.742103335813736489e-08,8.337649746260947395e-08,8.933196156708158302e-08,9.528742567155369208e-08,1.012428897760258011e-07,1.071983538804979102e-07,1.131538179849700193e-07,1.191092820894421283e-07,1.250647461939142374e-07,1.310202102983863465e-07,1.369756744028584555e-07,1.429311385073305646e-07,1.488866026118026737e-07,1.548420667162747827e-07,1.607975308207468918e-07,1.667529949252190008e-07,1.727084590296911099e-07,1.786639231341632190e-07,1.846193872386353280e-07,1.905748513431074371e-07,1.965303154475795462e-07,2.024857795520516552e-07,2.084412436565237643e-07,2.143967077609958734e-07,2.203521718654679824e-07,2.263076359699400915e-07,2.322631000744122005e-07,2.382185641788843096e-07,2.441740282833563922e-07,2.501294923878284748e-07,2.560849564923005574e-07,2.620404205967726400e-07,2.679958847012447226e-07,2.739513488057168052e-07,2.799068129101888878e-07,2.858622770146609704e-07,2.918177411191330530e-07,2.977732052236051355e-07,3.037286693280772181e-07,3.096841334325493007e-07,3.156395975370213833e-07,3.215950616414934659e-07,3.275505257459655485e-07,3.335059898504376311e-07,3.394614539549097137e-07,3.454169180593817963e-07,3.513723821638538789e-07,3.573278462683259615e-07,3.632833103727980441e-07,3.692387744772701267e-07,3.751942385817422093e-07 +0.000000000000000000e+00,4.734455659574270723e-09,9.468911319148541446e-09,1.420336697872281300e-08,1.893782263829708620e-08,2.367227829787135941e-08,2.840673395744563261e-08,3.314118961701990912e-08,3.787564527659418564e-08,4.261010093616846215e-08,4.734455659574273866e-08,5.207901225531701518e-08,5.681346791489129169e-08,6.154792357446556820e-08,6.628237923403984472e-08,7.101683489361412123e-08,7.575129055318839774e-08,8.048574621276267426e-08,8.522020187233695077e-08,8.995465753191122728e-08,9.468911319148550380e-08,9.942356885105978031e-08,1.041580245106340568e-07,1.088924801702083333e-07,1.136269358297826099e-07,1.183613914893568864e-07,1.230958471489311629e-07,1.278303028085054262e-07,1.325647584680796894e-07,1.372992141276539527e-07,1.420336697872282160e-07,1.467681254468024793e-07,1.515025811063767425e-07,1.562370367659510058e-07,1.609714924255252691e-07,1.657059480850995324e-07,1.704404037446737957e-07,1.751748594042480589e-07,1.799093150638223222e-07,1.846437707233965855e-07,1.893782263829708488e-07,1.941126820425451121e-07,1.988471377021193753e-07,2.035815933616936386e-07,2.083160490212679019e-07,2.130505046808421652e-07,2.177849603404164284e-07,2.225194159999906917e-07,2.272538716595649550e-07,2.319883273191392183e-07,2.367227829787134816e-07,2.414572386382877448e-07,2.461916942978620081e-07,2.509261499574362714e-07,2.556606056170105347e-07,2.603950612765847980e-07,2.651295169361590612e-07,2.698639725957333245e-07,2.745984282553075878e-07,2.793328839148818511e-07,2.840673395744561143e-07,2.888017952340303776e-07,2.935362508936046409e-07,2.982707065531789042e-07 +0.000000000000000000e+00,4.534399875259415356e-09,9.068799750518830712e-09,1.360319962577824690e-08,1.813759950103766473e-08,2.267199937629708257e-08,2.720639925155650041e-08,3.174079912681591825e-08,3.627519900207533608e-08,4.080959887733475392e-08,4.534399875259417176e-08,4.987839862785358960e-08,5.441279850311300743e-08,5.894719837837242527e-08,6.348159825363184973e-08,6.801599812889126757e-08,7.255039800415068540e-08,7.708479787941010324e-08,8.161919775466952108e-08,8.615359762992893892e-08,9.068799750518835675e-08,9.522239738044777459e-08,9.975679725570719243e-08,1.042911971309666103e-07,1.088255970062260281e-07,1.133599968814854459e-07,1.178943967567448638e-07,1.224287966320042816e-07,1.269631965072636995e-07,1.314975963825231173e-07,1.360319962577825351e-07,1.405663961330419530e-07,1.451007960083013708e-07,1.496351958835607886e-07,1.541695957588202065e-07,1.587039956340796243e-07,1.632383955093390422e-07,1.677727953845984600e-07,1.723071952598578778e-07,1.768415951351172957e-07,1.813759950103767135e-07,1.859103948856361313e-07,1.904447947608955492e-07,1.949791946361549670e-07,1.995135945114143849e-07,2.040479943866738027e-07,2.085823942619332205e-07,2.131167941371926384e-07,2.176511940124520562e-07,2.221855938877114740e-07,2.267199937629708919e-07,2.312543936382303097e-07,2.357887935134897276e-07,2.403231933887491719e-07,2.448575932640086162e-07,2.493919931392680605e-07,2.539263930145275048e-07,2.584607928897869491e-07,2.629951927650463934e-07,2.675295926403058377e-07,2.720639925155652820e-07,2.765983923908247263e-07,2.811327922660841706e-07,2.856671921413436149e-07 +0.000000000000000000e+00,6.209781339705047874e-09,1.241956267941009575e-08,1.862934401911514280e-08,2.483912535882018819e-08,3.104890669852523358e-08,3.725868803823027897e-08,4.346846937793532437e-08,4.967825071764036976e-08,5.588803205734541515e-08,6.209781339705046716e-08,6.830759473675551917e-08,7.451737607646057118e-08,8.072715741616562320e-08,8.693693875587067521e-08,9.314672009557572722e-08,9.935650143528077923e-08,1.055662827749858312e-07,1.117760641146908832e-07,1.179858454543959353e-07,1.241956267941009873e-07,1.304054081338060393e-07,1.366151894735110913e-07,1.428249708132161433e-07,1.490347521529211953e-07,1.552445334926262473e-07,1.614543148323312993e-07,1.676640961720363513e-07,1.738738775117414034e-07,1.800836588514464554e-07,1.862934401911515074e-07,1.925032215308565594e-07,1.987130028705616114e-07,2.049227842102666634e-07,2.111325655499717154e-07,2.173423468896767674e-07,2.235521282293818194e-07,2.297619095690868714e-07,2.359716909087919235e-07,2.421814722484969755e-07,2.483912535882020275e-07,2.546010349279070795e-07,2.608108162676121315e-07,2.670205976073171835e-07,2.732303789470222355e-07,2.794401602867272875e-07,2.856499416264323395e-07,2.918597229661373915e-07,2.980695043058424436e-07,3.042792856455474956e-07,3.104890669852525476e-07,3.166988483249575996e-07,3.229086296646626516e-07,3.291184110043677036e-07,3.353281923440727556e-07,3.415379736837778076e-07,3.477477550234828596e-07,3.539575363631879117e-07,3.601673177028929637e-07,3.663770990425980157e-07,3.725868803823030677e-07,3.787966617220081197e-07,3.850064430617131717e-07,3.912162244014182237e-07 +0.000000000000000000e+00,4.734455659588232705e-09,9.468911319176465409e-09,1.420336697876469811e-08,1.893782263835293082e-08,2.367227829794116352e-08,2.840673395752939623e-08,3.314118961711762893e-08,3.787564527670586164e-08,4.261010093629409434e-08,4.734455659588232705e-08,5.207901225547055975e-08,5.681346791505879246e-08,6.154792357464703178e-08,6.628237923423527110e-08,7.101683489382351042e-08,7.575129055341174974e-08,8.048574621299998907e-08,8.522020187258822839e-08,8.995465753217646771e-08,9.468911319176470703e-08,9.942356885135294636e-08,1.041580245109411857e-07,1.088924801705294250e-07,1.136269358301176643e-07,1.183613914897059036e-07,1.230958471492941430e-07,1.278303028088823823e-07,1.325647584684706216e-07,1.372992141280588609e-07,1.420336697876471003e-07,1.467681254472353396e-07,1.515025811068235789e-07,1.562370367664118182e-07,1.609714924260000575e-07,1.657059480855882969e-07,1.704404037451765362e-07,1.751748594047647755e-07,1.799093150643530148e-07,1.846437707239412542e-07,1.893782263835294935e-07,1.941126820431177328e-07,1.988471377027059721e-07,2.035815933622942114e-07,2.083160490218824508e-07,2.130505046814706901e-07,2.177849603410589294e-07,2.225194160006471687e-07,2.272538716602354081e-07,2.319883273198236474e-07,2.367227829794118867e-07,2.414572386390000995e-07,2.461916942985883389e-07,2.509261499581765782e-07,2.556606056177648175e-07,2.603950612773530568e-07,2.651295169369412962e-07,2.698639725965295355e-07,2.745984282561177748e-07,2.793328839157060141e-07,2.840673395752942534e-07,2.888017952348824928e-07,2.935362508944707321e-07,2.982707065540589714e-07 +0.000000000000000000e+00,4.534399875274250840e-09,9.068799750548501681e-09,1.360319962582275252e-08,1.813759950109700336e-08,2.267199937637125420e-08,2.720639925164550504e-08,3.174079912691975257e-08,3.627519900219400011e-08,4.080959887746824764e-08,4.534399875274249517e-08,4.987839862801674270e-08,5.441279850329099023e-08,5.894719837856523776e-08,6.348159825383947868e-08,6.801599812911371959e-08,7.255039800438796051e-08,7.708479787966220142e-08,8.161919775493644234e-08,8.615359763021068325e-08,9.068799750548492416e-08,9.522239738075916508e-08,9.975679725603340599e-08,1.042911971313076469e-07,1.088255970065818878e-07,1.133599968818561287e-07,1.178943967571303696e-07,1.224287966324046106e-07,1.269631965076788515e-07,1.314975963829530924e-07,1.360319962582273333e-07,1.405663961335015742e-07,1.451007960087758151e-07,1.496351958840500560e-07,1.541695957593242970e-07,1.587039956345985379e-07,1.632383955098727788e-07,1.677727953851470197e-07,1.723071952604212606e-07,1.768415951356955015e-07,1.813759950109697424e-07,1.859103948862439834e-07,1.904447947615182243e-07,1.949791946367924652e-07,1.995135945120667061e-07,2.040479943873409470e-07,2.085823942626151879e-07,2.131167941378894288e-07,2.176511940131636698e-07,2.221855938884379107e-07,2.267199937637121516e-07,2.312543936389863925e-07,2.357887935142606334e-07,2.403231933895349008e-07,2.448575932648091682e-07,2.493919931400834356e-07,2.539263930153577030e-07,2.584607928906319703e-07,2.629951927659062377e-07,2.675295926411805051e-07,2.720639925164547725e-07,2.765983923917290399e-07,2.811327922670033073e-07,2.856671921422775746e-07 +0.000000000000000000e+00,6.209781339719105809e-09,1.241956267943821162e-08,1.862934401915731577e-08,2.483912535887641993e-08,3.104890669859552408e-08,3.725868803831463155e-08,4.346846937803373901e-08,4.967825071775284647e-08,5.588803205747195394e-08,6.209781339719106140e-08,6.830759473691016886e-08,7.451737607662927633e-08,8.072715741634838379e-08,8.693693875606749125e-08,9.314672009578659872e-08,9.935650143550570618e-08,1.055662827752248136e-07,1.117760641149439211e-07,1.179858454546630286e-07,1.241956267943821493e-07,1.304054081341012832e-07,1.366151894738204171e-07,1.428249708135395511e-07,1.490347521532586850e-07,1.552445334929778189e-07,1.614543148326969529e-07,1.676640961724160868e-07,1.738738775121352207e-07,1.800836588518543547e-07,1.862934401915734886e-07,1.925032215312926225e-07,1.987130028710117565e-07,2.049227842107308904e-07,2.111325655504500243e-07,2.173423468901691583e-07,2.235521282298882922e-07,2.297619095696074261e-07,2.359716909093265601e-07,2.421814722490456940e-07,2.483912535887648279e-07,2.546010349284839619e-07,2.608108162682030958e-07,2.670205976079222297e-07,2.732303789476413637e-07,2.794401602873604976e-07,2.856499416270796315e-07,2.918597229667987655e-07,2.980695043065178994e-07,3.042792856462370333e-07,3.104890669859561673e-07,3.166988483256753012e-07,3.229086296653944351e-07,3.291184110051135691e-07,3.353281923448327030e-07,3.415379736845518369e-07,3.477477550242709709e-07,3.539575363639901048e-07,3.601673177037092387e-07,3.663770990434283727e-07,3.725868803831475066e-07,3.787966617228666405e-07,3.850064430625857745e-07,3.912162244023049084e-07 +0.000000000000000000e+00,5.390427751633463823e-09,1.078085550326692765e-08,1.617128325490039147e-08,2.156171100653385529e-08,2.695213875816731911e-08,3.234256650980078294e-08,3.773299426143424676e-08,4.312342201306771058e-08,4.851384976470117440e-08,5.390427751633463823e-08,5.929470526796810205e-08,6.468513301960156587e-08,7.007556077123502970e-08,7.546598852286849352e-08,8.085641627450195734e-08,8.624684402613542116e-08,9.163727177776888499e-08,9.702769952940234881e-08,1.024181272810358126e-07,1.078085550326692765e-07,1.131989827843027403e-07,1.185894105359362041e-07,1.239798382875696679e-07,1.293702660392031317e-07,1.347606937908365956e-07,1.401511215424700594e-07,1.455415492941035232e-07,1.509319770457369870e-07,1.563224047973704509e-07,1.617128325490039147e-07,1.671032603006373785e-07,1.724936880522708423e-07,1.778841158039043062e-07,1.832745435555377700e-07,1.886649713071712338e-07,1.940553990588046976e-07,1.994458268104381614e-07,2.048362545620716253e-07,2.102266823137050891e-07,2.156171100653385529e-07,2.210075378169720167e-07,2.263979655686054806e-07,2.317883933202389444e-07,2.371788210718724082e-07,2.425692488235058720e-07,2.479596765751393358e-07,2.533501043267727997e-07,2.587405320784062635e-07,2.641309598300397273e-07,2.695213875816731911e-07,2.749118153333066550e-07,2.803022430849401188e-07,2.856926708365735826e-07,2.910830985882070464e-07,2.964735263398405103e-07,3.018639540914739741e-07,3.072543818431074379e-07,3.126448095947409017e-07,3.180352373463743655e-07,3.234256650980078294e-07,3.288160928496412932e-07,3.342065206012747570e-07,3.395969483529082208e-07 +0.000000000000000000e+00,5.053850644181042137e-09,1.010770128836208427e-08,1.516155193254312641e-08,2.021540257672416855e-08,2.526925322090521068e-08,3.032310386508625282e-08,3.537695450926729496e-08,4.043080515344833709e-08,4.548465579762937923e-08,5.053850644181042137e-08,5.559235708599146350e-08,6.064620773017250564e-08,6.570005837435355440e-08,7.075390901853460315e-08,7.580775966271565190e-08,8.086161030689670066e-08,8.591546095107774941e-08,9.096931159525879817e-08,9.602316223943984692e-08,1.010770128836208957e-07,1.061308635278019444e-07,1.111847141719829932e-07,1.162385648161640419e-07,1.212924154603450907e-07,1.263462661045261394e-07,1.314001167487071882e-07,1.364539673928882370e-07,1.415078180370692857e-07,1.465616686812503345e-07,1.516155193254313832e-07,1.566693699696124320e-07,1.617232206137934807e-07,1.667770712579745295e-07,1.718309219021555782e-07,1.768847725463366270e-07,1.819386231905176757e-07,1.869924738346987245e-07,1.920463244788797733e-07,1.971001751230608220e-07,2.021540257672418708e-07,2.072078764114229195e-07,2.122617270556039683e-07,2.173155776997850170e-07,2.223694283439660658e-07,2.274232789881471145e-07,2.324771296323281633e-07,2.375309802765092120e-07,2.425848309206902343e-07,2.476386815648712301e-07,2.526925322090522260e-07,2.577463828532332218e-07,2.628002334974142176e-07,2.678540841415952134e-07,2.729079347857762092e-07,2.779617854299572050e-07,2.830156360741382008e-07,2.880694867183191967e-07,2.931233373625001925e-07,2.981771880066811883e-07,3.032310386508621841e-07,3.082848892950431799e-07,3.133387399392241757e-07,3.183925905834051715e-07 +0.000000000000000000e+00,6.949356181440059843e-09,1.389871236288011969e-08,2.084806854432017788e-08,2.779742472576023606e-08,3.474678090720029425e-08,4.169613708864035575e-08,4.864549327008041725e-08,5.559484945152047875e-08,6.254420563296054686e-08,6.949356181440061498e-08,7.644291799584068309e-08,8.339227417728075121e-08,9.034163035872081932e-08,9.729098654016088744e-08,1.042403427216009556e-07,1.111896989030410237e-07,1.181390550844810918e-07,1.250884112659211467e-07,1.320377674473612015e-07,1.389871236288012564e-07,1.459364798102413113e-07,1.528858359916813662e-07,1.598351921731214211e-07,1.667845483545614759e-07,1.737339045360015308e-07,1.806832607174415857e-07,1.876326168988816406e-07,1.945819730803216955e-07,2.015313292617617503e-07,2.084806854432018052e-07,2.154300416246418601e-07,2.223793978060819150e-07,2.293287539875219699e-07,2.362781101689620247e-07,2.432274663504020796e-07,2.501768225318421345e-07,2.571261787132821894e-07,2.640755348947222443e-07,2.710248910761622991e-07,2.779742472576023540e-07,2.849236034390424089e-07,2.918729596204824638e-07,2.988223158019225187e-07,3.057716719833625735e-07,3.127210281648026284e-07,3.196703843462426833e-07,3.266197405276827382e-07,3.335690967091227931e-07,3.405184528905628479e-07,3.474678090720029028e-07,3.544171652534429577e-07,3.613665214348830126e-07,3.683158776163230675e-07,3.752652337977631223e-07,3.822145899792031772e-07,3.891639461606432321e-07,3.961133023420832870e-07,4.030626585235233419e-07,4.100120147049633968e-07,4.169613708864034516e-07,4.239107270678435065e-07,4.308600832492835614e-07,4.378094394307236163e-07 +0.000000000000000000e+00,5.390427751645142786e-09,1.078085550329028557e-08,1.617128325493542753e-08,2.156171100658056783e-08,2.695213875822570814e-08,3.234256650987084844e-08,3.773299426151598544e-08,4.312342201316112243e-08,4.851384976480625943e-08,5.390427751645139643e-08,5.929470526809653342e-08,6.468513301974167042e-08,7.007556077138680741e-08,7.546598852303194441e-08,8.085641627467708140e-08,8.624684402632221840e-08,9.163727177796735539e-08,9.702769952961249239e-08,1.024181272812576294e-07,1.078085550329027664e-07,1.131989827845479034e-07,1.185894105361930404e-07,1.239798382878381774e-07,1.293702660394833144e-07,1.347606937911284514e-07,1.401511215427735884e-07,1.455415492944187253e-07,1.509319770460638623e-07,1.563224047977089993e-07,1.617128325493541363e-07,1.671032603009992733e-07,1.724936880526444103e-07,1.778841158042895473e-07,1.832745435559346843e-07,1.886649713075798213e-07,1.940553990592249583e-07,1.994458268108700953e-07,2.048362545625152323e-07,2.102266823141603693e-07,2.156171100658055063e-07,2.210075378174506433e-07,2.263979655690957803e-07,2.317883933207409173e-07,2.371788210723860543e-07,2.425692488240311913e-07,2.479596765756763547e-07,2.533501043273215182e-07,2.587405320789666817e-07,2.641309598306118451e-07,2.695213875822570086e-07,2.749118153339021721e-07,2.803022430855473355e-07,2.856926708371924990e-07,2.910830985888376625e-07,2.964735263404828259e-07,3.018639540921279894e-07,3.072543818437731529e-07,3.126448095954183163e-07,3.180352373470634798e-07,3.234256650987086432e-07,3.288160928503538067e-07,3.342065206019989702e-07,3.395969483536441336e-07 +0.000000000000000000e+00,5.053850644194009847e-09,1.010770128838801969e-08,1.516155193258203037e-08,2.021540257677604270e-08,2.526925322097005503e-08,3.032310386516406736e-08,3.537695450935807968e-08,4.043080515355209201e-08,4.548465579774610434e-08,5.053850644194011667e-08,5.559235708613412900e-08,6.064620773032814795e-08,6.570005837452216689e-08,7.075390901871618584e-08,7.580775966291020478e-08,8.086161030710422373e-08,8.591546095129824268e-08,9.096931159549226162e-08,9.602316223968628057e-08,1.010770128838802995e-07,1.061308635280743185e-07,1.111847141722683374e-07,1.162385648164623564e-07,1.212924154606563753e-07,1.263462661048503942e-07,1.314001167490444132e-07,1.364539673932384321e-07,1.415078180374324511e-07,1.465616686816264700e-07,1.516155193258204890e-07,1.566693699700145079e-07,1.617232206142085269e-07,1.667770712584025458e-07,1.718309219025965648e-07,1.768847725467905837e-07,1.819386231909846027e-07,1.869924738351786216e-07,1.920463244793726405e-07,1.971001751235666595e-07,2.021540257677606784e-07,2.072078764119546974e-07,2.122617270561487163e-07,2.173155777003427353e-07,2.223694283445367542e-07,2.274232789887307732e-07,2.324771296329247921e-07,2.375309802771188111e-07,2.425848309213128035e-07,2.476386815655068225e-07,2.526925322097008414e-07,2.577463828538948604e-07,2.628002334980888793e-07,2.678540841422828983e-07,2.729079347864769172e-07,2.779617854306709362e-07,2.830156360748649551e-07,2.880694867190589741e-07,2.931233373632529930e-07,2.981771880074470119e-07,3.032310386516410309e-07,3.082848892958350498e-07,3.133387399400290688e-07,3.183925905842230877e-07 +0.000000000000000000e+00,6.949356181451182941e-09,1.389871236290236588e-08,2.084806854435354965e-08,2.779742472580473507e-08,3.474678090725592050e-08,4.169613708870710592e-08,4.864549327015829134e-08,5.559484945160947676e-08,6.254420563306065557e-08,6.949356181451182776e-08,7.644291799596299994e-08,8.339227417741417213e-08,9.034163035886534432e-08,9.729098654031651651e-08,1.042403427217676887e-07,1.111896989032188609e-07,1.181390550846700331e-07,1.250884112661212053e-07,1.320377674475723774e-07,1.389871236290235496e-07,1.459364798104747218e-07,1.528858359919258940e-07,1.598351921733770662e-07,1.667845483548282384e-07,1.737339045362794106e-07,1.806832607177305828e-07,1.876326168991817549e-07,1.945819730806329271e-07,2.015313292620840993e-07,2.084806854435352715e-07,2.154300416249864437e-07,2.223793978064376159e-07,2.293287539878887881e-07,2.362781101693399603e-07,2.432274663507911324e-07,2.501768225322423046e-07,2.571261787136934768e-07,2.640755348951446490e-07,2.710248910765958212e-07,2.779742472580469934e-07,2.849236034394981656e-07,2.918729596209493378e-07,2.988223158024005099e-07,3.057716719838516821e-07,3.127210281653028543e-07,3.196703843467540265e-07,3.266197405282051987e-07,3.335690967096563709e-07,3.405184528911075431e-07,3.474678090725587153e-07,3.544171652540098874e-07,3.613665214354610596e-07,3.683158776169122318e-07,3.752652337983634040e-07,3.822145899798145762e-07,3.891639461612657484e-07,3.961133023427169206e-07,4.030626585241680928e-07,4.100120147056192650e-07,4.169613708870704371e-07,4.239107270685216093e-07,4.308600832499727815e-07,4.378094394314239537e-07 +0.000000000000000000e+00,6.004423498750267108e-09,1.200884699750053422e-08,1.801327049625079967e-08,2.401769399500106512e-08,3.002211749375133058e-08,3.602654099250159934e-08,4.203096449125186810e-08,4.803538799000213687e-08,5.403981148875240563e-08,6.004423498750267439e-08,6.604865848625293654e-08,7.205308198500319868e-08,7.805750548375346083e-08,8.406192898250372297e-08,9.006635248125398512e-08,9.607077598000424726e-08,1.020751994787545094e-07,1.080796229775047716e-07,1.140840464762550337e-07,1.200884699750052958e-07,1.260928934737555580e-07,1.320973169725058201e-07,1.381017404712560823e-07,1.441061639700063444e-07,1.501105874687566066e-07,1.561150109675068687e-07,1.621194344662571309e-07,1.681238579650073930e-07,1.741282814637576552e-07,1.801327049625079173e-07,1.861371284612581794e-07,1.921415519600084416e-07,1.981459754587587037e-07,2.041503989575089659e-07,2.101548224562592280e-07,2.161592459550094902e-07,2.221636694537597523e-07,2.281680929525100145e-07,2.341725164512602766e-07,2.401769399500105387e-07,2.461813634487608274e-07,2.521857869475111160e-07,2.581902104462614046e-07,2.641946339450116932e-07,2.701990574437619818e-07,2.762034809425122704e-07,2.822079044412625591e-07,2.882123279400128477e-07,2.942167514387631363e-07,3.002211749375134249e-07,3.062255984362637135e-07,3.122300219350140021e-07,3.182344454337642907e-07,3.242388689325145794e-07,3.302432924312648680e-07,3.362477159300151566e-07,3.422521394287654452e-07,3.482565629275157338e-07,3.542609864262660224e-07,3.602654099250163110e-07,3.662698334237665997e-07,3.722742569225168883e-07,3.782786804212671769e-07 +0.000000000000000000e+00,5.715447614091257282e-09,1.143089522818251456e-08,1.714634284227377019e-08,2.286179045636502582e-08,2.857723807045628144e-08,3.429268568454754038e-08,4.000813329863879932e-08,4.572358091273005825e-08,5.143902852682131719e-08,5.715447614091257612e-08,6.286992375500384168e-08,6.858537136909510723e-08,7.430081898318637278e-08,8.001626659727763834e-08,8.573171421136890389e-08,9.144716182546016944e-08,9.716260943955143500e-08,1.028780570536427006e-07,1.085935046677339661e-07,1.143089522818252317e-07,1.200243998959164972e-07,1.257398475100077628e-07,1.314552951240990283e-07,1.371707427381902939e-07,1.428861903522815594e-07,1.486016379663728250e-07,1.543170855804640905e-07,1.600325331945553561e-07,1.657479808086466216e-07,1.714634284227378872e-07,1.771788760368291527e-07,1.828943236509204183e-07,1.886097712650116839e-07,1.943252188791029494e-07,2.000406664931942150e-07,2.057561141072854805e-07,2.114715617213767461e-07,2.171870093354680116e-07,2.229024569495592772e-07,2.286179045636505427e-07,2.343333521777418083e-07,2.400487997918331003e-07,2.457642474059243923e-07,2.514796950200156843e-07,2.571951426341069764e-07,2.629105902481982684e-07,2.686260378622895604e-07,2.743414854763808524e-07,2.800569330904721445e-07,2.857723807045634365e-07,2.914878283186547285e-07,2.972032759327460205e-07,3.029187235468373126e-07,3.086341711609286046e-07,3.143496187750198966e-07,3.200650663891111886e-07,3.257805140032024807e-07,3.314959616172937727e-07,3.372114092313850647e-07,3.429268568454763567e-07,3.486423044595676487e-07,3.543577520736589408e-07,3.600731996877502328e-07 +0.000000000000000000e+00,7.628752145151046993e-09,1.525750429030209399e-08,2.288625643545313933e-08,3.051500858060418136e-08,3.814376072575522339e-08,4.577251287090626542e-08,5.340126501605730745e-08,6.103001716120834948e-08,6.865876930635939151e-08,7.628752145151043354e-08,8.391627359666147557e-08,9.154502574181251760e-08,9.917377788696355963e-08,1.068025300321146017e-07,1.144312821772656437e-07,1.220600343224166725e-07,1.296887864675677013e-07,1.373175386127187301e-07,1.449462907578697589e-07,1.525750429030207877e-07,1.602037950481718165e-07,1.678325471933228453e-07,1.754612993384738740e-07,1.830900514836249028e-07,1.907188036287759316e-07,1.983475557739269604e-07,2.059763079190779892e-07,2.136050600642290180e-07,2.212338122093800468e-07,2.288625643545310756e-07,2.364913164996821044e-07,2.441200686448331332e-07,2.517488207899841355e-07,2.593775729351351379e-07,2.670063250802861402e-07,2.746350772254371425e-07,2.822638293705881448e-07,2.898925815157391472e-07,2.975213336608901495e-07,3.051500858060411518e-07,3.127788379511921541e-07,3.204075900963431565e-07,3.280363422414941588e-07,3.356650943866451611e-07,3.432938465317961634e-07,3.509225986769471658e-07,3.585513508220981681e-07,3.661801029672491704e-07,3.738088551124001727e-07,3.814376072575511751e-07,3.890663594027021774e-07,3.966951115478531797e-07,4.043238636930041820e-07,4.119526158381551844e-07,4.195813679833061867e-07,4.272101201284571890e-07,4.348388722736081913e-07,4.424676244187591937e-07,4.500963765639101960e-07,4.577251287090611983e-07,4.653538808542122006e-07,4.729826329993632030e-07,4.806113851445142053e-07 +0.000000000000000000e+00,6.004423498758466123e-09,1.200884699751693225e-08,1.801327049627539671e-08,2.401769399503386118e-08,3.002211749379232565e-08,3.602654099255079343e-08,4.203096449130926120e-08,4.803538799006772898e-08,5.403981148882619676e-08,6.004423498758466453e-08,6.604865848634313231e-08,7.205308198510160009e-08,7.805750548386006786e-08,8.406192898261853564e-08,9.006635248137700342e-08,9.607077598013547120e-08,1.020751994788939390e-07,1.080796229776524067e-07,1.140840464764108745e-07,1.200884699751693555e-07,1.260928934739278498e-07,1.320973169726863440e-07,1.381017404714448383e-07,1.441061639702033325e-07,1.501105874689618268e-07,1.561150109677203210e-07,1.621194344664788153e-07,1.681238579652373095e-07,1.741282814639958038e-07,1.801327049627542980e-07,1.861371284615127923e-07,1.921415519602712865e-07,1.981459754590297807e-07,2.041503989577882750e-07,2.101548224565467692e-07,2.161592459553052635e-07,2.221636694540637577e-07,2.281680929528222520e-07,2.341725164515807462e-07,2.401769399503392405e-07,2.461813634490977347e-07,2.521857869478562290e-07,2.581902104466147232e-07,2.641946339453732175e-07,2.701990574441317117e-07,2.762034809428902060e-07,2.822079044416487002e-07,2.882123279404071944e-07,2.942167514391656887e-07,3.002211749379241829e-07,3.062255984366826772e-07,3.122300219354411714e-07,3.182344454341996657e-07,3.242388689329581599e-07,3.302432924317166542e-07,3.362477159304751484e-07,3.422521394292336427e-07,3.482565629279921369e-07,3.542609864267506312e-07,3.602654099255091254e-07,3.662698334242676197e-07,3.722742569230261139e-07,3.782786804217846081e-07 +0.000000000000000000e+00,5.715447614101324897e-09,1.143089522820264979e-08,1.714634284230397552e-08,2.286179045640530290e-08,2.857723807050663027e-08,3.429268568460795765e-08,4.000813329870928172e-08,4.572358091281060579e-08,5.143902852691192986e-08,5.715447614101325393e-08,6.286992375511457800e-08,6.858537136921590207e-08,7.430081898331722614e-08,8.001626659741855021e-08,8.573171421151987428e-08,9.144716182562119835e-08,9.716260943972252242e-08,1.028780570538238465e-07,1.085935046679251706e-07,1.143089522820264946e-07,1.200243998961278319e-07,1.257398475102291825e-07,1.314552951243305330e-07,1.371707427384318836e-07,1.428861903525332341e-07,1.486016379666345846e-07,1.543170855807359352e-07,1.600325331948372857e-07,1.657479808089386362e-07,1.714634284230399868e-07,1.771788760371413373e-07,1.828943236512426879e-07,1.886097712653440384e-07,1.943252188794453889e-07,2.000406664935467395e-07,2.057561141076480900e-07,2.114715617217494406e-07,2.171870093358507911e-07,2.229024569499521416e-07,2.286179045640534922e-07,2.343333521781548427e-07,2.400487997922561933e-07,2.457642474063575438e-07,2.514796950204588943e-07,2.571951426345602449e-07,2.629105902486615954e-07,2.686260378627629460e-07,2.743414854768642965e-07,2.800569330909656470e-07,2.857723807050669976e-07,2.914878283191683481e-07,2.972032759332696987e-07,3.029187235473710492e-07,3.086341711614723997e-07,3.143496187755737503e-07,3.200650663896751008e-07,3.257805140037764514e-07,3.314959616178778019e-07,3.372114092319791524e-07,3.429268568460805030e-07,3.486423044601818535e-07,3.543577520742832040e-07,3.600731996883845546e-07 +0.000000000000000000e+00,7.628752145158734810e-09,1.525750429031746962e-08,2.288625643547620443e-08,3.051500858063493924e-08,3.814376072579367074e-08,4.577251287095240224e-08,5.340126501611113374e-08,6.103001716126986524e-08,6.865876930642859674e-08,7.628752145158732825e-08,8.391627359674605975e-08,9.154502574190479125e-08,9.917377788706352275e-08,1.068025300322222543e-07,1.144312821773809858e-07,1.220600343225397040e-07,1.296887864676984355e-07,1.373175386128571670e-07,1.449462907580158985e-07,1.525750429031746300e-07,1.602037950483333615e-07,1.678325471934920930e-07,1.754612993386508245e-07,1.830900514838095560e-07,1.907188036289682875e-07,1.983475557741270190e-07,2.059763079192857505e-07,2.136050600644444820e-07,2.212338122096032135e-07,2.288625643547619450e-07,2.364913164999206765e-07,2.441200686450794080e-07,2.517488207902381395e-07,2.593775729353968710e-07,2.670063250805556025e-07,2.746350772257143340e-07,2.822638293708730655e-07,2.898925815160317970e-07,2.975213336611905285e-07,3.051500858063492600e-07,3.127788379515079915e-07,3.204075900966667230e-07,3.280363422418254545e-07,3.356650943869841860e-07,3.432938465321429176e-07,3.509225986773016491e-07,3.585513508224603806e-07,3.661801029676191121e-07,3.738088551127778436e-07,3.814376072579365751e-07,3.890663594030953066e-07,3.966951115482540381e-07,4.043238636934127696e-07,4.119526158385715011e-07,4.195813679837302326e-07,4.272101201288889641e-07,4.348388722740476956e-07,4.424676244192064271e-07,4.500963765643651586e-07,4.577251287095238901e-07,4.653538808546826216e-07,4.729826329998413531e-07,4.806113851450000846e-07 +0.000000000000000000e+00,6.451833985999908239e-09,1.290366797199981648e-08,1.935550195799972389e-08,2.580733594399962965e-08,3.225916992999953541e-08,3.871100391599944116e-08,4.516283790199934692e-08,5.161467188799925268e-08,5.806650587399915844e-08,6.451833985999907081e-08,7.097017384599898319e-08,7.742200783199889556e-08,8.387384181799880794e-08,9.032567580399872031e-08,9.677750978999863269e-08,1.032293437759985451e-07,1.096811777619984574e-07,1.161330117479983698e-07,1.225848457339982822e-07,1.290366797199981946e-07,1.354885137059981069e-07,1.419403476919980193e-07,1.483921816779979317e-07,1.548440156639978441e-07,1.612958496499977564e-07,1.677476836359976688e-07,1.741995176219975812e-07,1.806513516079974936e-07,1.871031855939974059e-07,1.935550195799973183e-07,2.000068535659972307e-07,2.064586875519971431e-07,2.129105215379970554e-07,2.193623555239969678e-07,2.258141895099968802e-07,2.322660234959967926e-07,2.387178574819967049e-07,2.451696914679966173e-07,2.516215254539965297e-07,2.580733594399964421e-07,2.645251934259963544e-07,2.709770274119962668e-07,2.774288613979961792e-07,2.838806953839960916e-07,2.903325293699960039e-07,2.967843633559959163e-07,3.032361973419958287e-07,3.096880313279957411e-07,3.161398653139956534e-07,3.225916992999955658e-07,3.290435332859954782e-07,3.354953672719953906e-07,3.419472012579953029e-07,3.483990352439952153e-07,3.548508692299951277e-07,3.613027032159950401e-07,3.677545372019949524e-07,3.742063711879948648e-07,3.806582051739947772e-07,3.871100391599946896e-07,3.935618731459946019e-07,4.000137071319945143e-07,4.064655411179944267e-07 +0.000000000000000000e+00,6.251931039122742721e-09,1.250386207824548544e-08,1.875579311736822982e-08,2.500772415649097419e-08,3.125965519561371857e-08,3.751158623473645963e-08,4.376351727385920070e-08,5.001544831298194177e-08,5.626737935210468283e-08,6.251931039122742390e-08,6.877124143035016496e-08,7.502317246947290603e-08,8.127510350859564710e-08,8.752703454771838816e-08,9.377896558684112923e-08,1.000308966259638703e-07,1.062828276650866114e-07,1.125347587042093524e-07,1.187866897433320935e-07,1.250386207824548213e-07,1.312905518215775359e-07,1.375424828607002505e-07,1.437944138998229651e-07,1.500463449389456797e-07,1.562982759780683943e-07,1.625502070171911089e-07,1.688021380563138235e-07,1.750540690954365381e-07,1.813060001345592527e-07,1.875579311736819673e-07,1.938098622128046819e-07,2.000617932519273965e-07,2.063137242910501111e-07,2.125656553301728257e-07,2.188175863692955403e-07,2.250695174084182549e-07,2.313214484475409695e-07,2.375733794866636841e-07,2.438253105257863987e-07,2.500772415649091133e-07,2.563291726040318279e-07,2.625811036431545424e-07,2.688330346822772570e-07,2.750849657213999716e-07,2.813368967605226862e-07,2.875888277996454008e-07,2.938407588387681154e-07,3.000926898778908300e-07,3.063446209170135446e-07,3.125965519561362592e-07,3.188484829952589738e-07,3.251004140343816884e-07,3.313523450735044030e-07,3.376042761126271176e-07,3.438562071517498322e-07,3.501081381908725468e-07,3.563600692299952614e-07,3.626120002691179760e-07,3.688639313082406906e-07,3.751158623473634052e-07,3.813677933864861198e-07,3.876197244256088344e-07,3.938716554647315490e-07 +0.000000000000000000e+00,8.131784723372461836e-09,1.626356944674492367e-08,2.439535417011738385e-08,3.252713889348984072e-08,4.065892361686229760e-08,4.879070834023475447e-08,5.692249306360721134e-08,6.505427778697966821e-08,7.318606251035212509e-08,8.131784723372458196e-08,8.944963195709703883e-08,9.758141668046949570e-08,1.057132014038419526e-07,1.138449861272144094e-07,1.219767708505868531e-07,1.301085555739593100e-07,1.382403402973317668e-07,1.463721250207042237e-07,1.545039097440766806e-07,1.626356944674491374e-07,1.707674791908215943e-07,1.788992639141940512e-07,1.870310486375665081e-07,1.951628333609389649e-07,2.032946180843114218e-07,2.114264028076838787e-07,2.195581875310563356e-07,2.276899722544287924e-07,2.358217569778012493e-07,2.439535417011737062e-07,2.520853264245461630e-07,2.602171111479186199e-07,2.683488958712910768e-07,2.764806805946635337e-07,2.846124653180359905e-07,2.927442500414084474e-07,3.008760347647809043e-07,3.090078194881533612e-07,3.171396042115258180e-07,3.252713889348982749e-07,3.334031736582707318e-07,3.415349583816431886e-07,3.496667431050156455e-07,3.577985278283881024e-07,3.659303125517605593e-07,3.740620972751330161e-07,3.821938819985054730e-07,3.903256667218779299e-07,3.984574514452503868e-07,4.065892361686228436e-07,4.147210208919953005e-07,4.228528056153677574e-07,4.309845903387402142e-07,4.391163750621126711e-07,4.472481597854851280e-07,4.553799445088575849e-07,4.635117292322300417e-07,4.716435139556024986e-07,4.797752986789749555e-07,4.879070834023474123e-07,4.960388681257198692e-07,5.041706528490923261e-07,5.123024375724647830e-07 +0.000000000000000000e+00,6.451833986005270851e-09,1.290366797201054170e-08,1.935550195801581090e-08,2.580733594402108010e-08,3.225916993002634929e-08,3.871100391603162180e-08,4.516283790203689430e-08,5.161467188804216681e-08,5.806650587404743931e-08,6.451833986005271182e-08,7.097017384605798432e-08,7.742200783206325683e-08,8.387384181806852933e-08,9.032567580407380184e-08,9.677750979007907435e-08,1.032293437760843469e-07,1.096811777620896194e-07,1.161330117480948919e-07,1.225848457341001644e-07,1.290366797201054501e-07,1.354885137061107358e-07,1.419403476921160216e-07,1.483921816781213073e-07,1.548440156641265931e-07,1.612958496501318788e-07,1.677476836361371645e-07,1.741995176221424503e-07,1.806513516081477360e-07,1.871031855941530218e-07,1.935550195801583075e-07,2.000068535661635932e-07,2.064586875521688790e-07,2.129105215381741647e-07,2.193623555241794505e-07,2.258141895101847362e-07,2.322660234961900220e-07,2.387178574821953342e-07,2.451696914682006464e-07,2.516215254542059586e-07,2.580733594402112708e-07,2.645251934262165830e-07,2.709770274122218952e-07,2.774288613982272074e-07,2.838806953842325196e-07,2.903325293702378318e-07,2.967843633562431441e-07,3.032361973422484563e-07,3.096880313282537685e-07,3.161398653142590807e-07,3.225916993002643929e-07,3.290435332862697051e-07,3.354953672722750173e-07,3.419472012582803295e-07,3.483990352442856417e-07,3.548508692302909539e-07,3.613027032162962662e-07,3.677545372023015784e-07,3.742063711883068906e-07,3.806582051743122028e-07,3.871100391603175150e-07,3.935618731463228272e-07,4.000137071323281394e-07,4.064655411183334516e-07 +0.000000000000000000e+00,6.251931039129476798e-09,1.250386207825895360e-08,1.875579311738842957e-08,2.500772415651790388e-08,3.125965519564737489e-08,3.751158623477684590e-08,4.376351727390631691e-08,5.001544831303578791e-08,5.626737935216525892e-08,6.251931039129472331e-08,6.877124143042418770e-08,7.502317246955365209e-08,8.127510350868311648e-08,8.752703454781258087e-08,9.377896558694204526e-08,1.000308966260715097e-07,1.062828276652009740e-07,1.125347587043304384e-07,1.187866897434599028e-07,1.250386207825893672e-07,1.312905518217188316e-07,1.375424828608482960e-07,1.437944138999777604e-07,1.500463449391072248e-07,1.562982759782366892e-07,1.625502070173661536e-07,1.688021380564956179e-07,1.750540690956250823e-07,1.813060001347545467e-07,1.875579311738840111e-07,1.938098622130134755e-07,2.000617932521429399e-07,2.063137242912724043e-07,2.125656553304018687e-07,2.188175863695313331e-07,2.250695174086607975e-07,2.313214484477902619e-07,2.375733794869197262e-07,2.438253105260491906e-07,2.500772415651786815e-07,2.563291726043081724e-07,2.625811036434376632e-07,2.688330346825671541e-07,2.750849657216966449e-07,2.813368967608261358e-07,2.875888277999556267e-07,2.938407588390851175e-07,3.000926898782146084e-07,3.063446209173440992e-07,3.125965519564735901e-07,3.188484829956030810e-07,3.251004140347325718e-07,3.313523450738620627e-07,3.376042761129915535e-07,3.438562071521210444e-07,3.501081381912505353e-07,3.563600692303800261e-07,3.626120002695095170e-07,3.688639313086390078e-07,3.751158623477684987e-07,3.813677933868979896e-07,3.876197244260274804e-07,3.938716554651569713e-07 +0.000000000000000000e+00,8.131784723376996440e-09,1.626356944675399288e-08,2.439535417013098932e-08,3.252713889350798576e-08,4.065892361688498220e-08,4.879070834026197864e-08,5.692249306363897508e-08,6.505427778701597152e-08,7.318606251039296796e-08,8.131784723376996440e-08,8.944963195714696084e-08,9.758141668052395728e-08,1.057132014039009537e-07,1.138449861272779502e-07,1.219767708506549334e-07,1.301085555740319166e-07,1.382403402974088998e-07,1.463721250207858830e-07,1.545039097441628662e-07,1.626356944675398494e-07,1.707674791909168326e-07,1.788992639142938158e-07,1.870310486376707990e-07,1.951628333610477822e-07,2.032946180844247654e-07,2.114264028078017486e-07,2.195581875311787318e-07,2.276899722545557150e-07,2.358217569779326982e-07,2.439535417013096550e-07,2.520853264246866117e-07,2.602171111480635684e-07,2.683488958714405252e-07,2.764806805948174819e-07,2.846124653181944386e-07,2.927442500415713954e-07,3.008760347649483521e-07,3.090078194883253088e-07,3.171396042117022656e-07,3.252713889350792223e-07,3.334031736584561790e-07,3.415349583818331358e-07,3.496667431052100925e-07,3.577985278285870493e-07,3.659303125519640060e-07,3.740620972753409627e-07,3.821938819987179195e-07,3.903256667220948762e-07,3.984574514454718329e-07,4.065892361688487897e-07,4.147210208922257464e-07,4.228528056156027031e-07,4.309845903389796599e-07,4.391163750623566166e-07,4.472481597857335733e-07,4.553799445091105301e-07,4.635117292324874868e-07,4.716435139558644435e-07,4.797752986792414532e-07,4.879070834026184629e-07,4.960388681259954726e-07,5.041706528493724822e-07,5.123024375727494919e-07 +0.000000000000000000e+00,6.715394397245301685e-09,1.343078879449060337e-08,2.014618319173590588e-08,2.686157758898121005e-08,3.357697198622651753e-08,4.029236638347182500e-08,4.700776078071713248e-08,5.372315517796243995e-08,6.043854957520774743e-08,6.715394397245306152e-08,7.386933836969837561e-08,8.058473276694368971e-08,8.730012716418900380e-08,9.401552156143431789e-08,1.007309159586796320e-07,1.074463103559249461e-07,1.141617047531702602e-07,1.208770991504155743e-07,1.275924935476608884e-07,1.343078879449062025e-07,1.410232823421515165e-07,1.477386767393968306e-07,1.544540711366421447e-07,1.611694655338874588e-07,1.678848599311327729e-07,1.746002543283780870e-07,1.813156487256234011e-07,1.880310431228687152e-07,1.947464375201140293e-07,2.014618319173593434e-07,2.081772263146046575e-07,2.148926207118499716e-07,2.216080151090952857e-07,2.283234095063405998e-07,2.350388039035859138e-07,2.417541983008312015e-07,2.484695926980764891e-07,2.551849870953217767e-07,2.619003814925670643e-07,2.686157758898123520e-07,2.753311702870576396e-07,2.820465646843029272e-07,2.887619590815482148e-07,2.954773534787935025e-07,3.021927478760387901e-07,3.089081422732840777e-07,3.156235366705293653e-07,3.223389310677746529e-07,3.290543254650199406e-07,3.357697198622652282e-07,3.424851142595105158e-07,3.492005086567558034e-07,3.559159030540010911e-07,3.626312974512463787e-07,3.693466918484916663e-07,3.760620862457369539e-07,3.827774806429822416e-07,3.894928750402275292e-07,3.962082694374728168e-07,4.029236638347181044e-07,4.096390582319633920e-07,4.163544526292086797e-07,4.230698470264539673e-07 +0.000000000000000000e+00,6.607181854601600059e-09,1.321436370920320012e-08,1.982154556380480100e-08,2.642872741840640354e-08,3.303590927300800277e-08,3.964309112760960201e-08,4.625027298221120124e-08,5.285745483681280047e-08,5.946463669141439970e-08,6.607181854601600555e-08,7.267900040061761140e-08,7.928618225521921725e-08,8.589336410982082310e-08,9.250054596442242894e-08,9.910772781902403479e-08,1.057149096736256406e-07,1.123220915282272465e-07,1.189292733828288523e-07,1.255364552374304582e-07,1.321436370920320640e-07,1.387508189466336699e-07,1.453580008012352757e-07,1.519651826558368816e-07,1.585723645104384874e-07,1.651795463650400933e-07,1.717867282196416991e-07,1.783939100742433050e-07,1.850010919288449108e-07,1.916082737834465167e-07,1.982154556380481225e-07,2.048226374926497284e-07,2.114298193472513342e-07,2.180370012018529401e-07,2.246441830564545459e-07,2.312513649110561518e-07,2.378585467656577576e-07,2.444657286202593899e-07,2.510729104748610223e-07,2.576800923294626546e-07,2.642872741840642869e-07,2.708944560386659192e-07,2.775016378932675515e-07,2.841088197478691839e-07,2.907160016024708162e-07,2.973231834570724485e-07,3.039303653116740808e-07,3.105375471662757131e-07,3.171447290208773454e-07,3.237519108754789778e-07,3.303590927300806101e-07,3.369662745846822424e-07,3.435734564392838747e-07,3.501806382938855070e-07,3.567878201484871394e-07,3.633950020030887717e-07,3.700021838576904040e-07,3.766093657122920363e-07,3.832165475668936686e-07,3.898237294214953009e-07,3.964309112760969333e-07,4.030380931306985656e-07,4.096452749853001979e-07,4.162524568399018302e-07 +0.000000000000000000e+00,8.466938569679632704e-09,1.693387713935926541e-08,2.540081570903889977e-08,3.386775427871853743e-08,4.233469284839817510e-08,5.080163141807781277e-08,5.926856998775745044e-08,6.773550855743708810e-08,7.620244712711672577e-08,8.466938569679636344e-08,9.313632426647600111e-08,1.016032628361556388e-07,1.100702014058352764e-07,1.185371399755149141e-07,1.270040785451945385e-07,1.354710171148741497e-07,1.439379556845537609e-07,1.524048942542333721e-07,1.608718328239129833e-07,1.693387713935925945e-07,1.778057099632722057e-07,1.862726485329518169e-07,1.947395871026314281e-07,2.032065256723110393e-07,2.116734642419906505e-07,2.201404028116702617e-07,2.286073413813498729e-07,2.370742799510294841e-07,2.455412185207090953e-07,2.540081570903887065e-07,2.624750956600683177e-07,2.709420342297479289e-07,2.794089727994275401e-07,2.878759113691071513e-07,2.963428499387867625e-07,3.048097885084663737e-07,3.132767270781459849e-07,3.217436656478255961e-07,3.302106042175052073e-07,3.386775427871848185e-07,3.471444813568644297e-07,3.556114199265440409e-07,3.640783584962236521e-07,3.725452970659032633e-07,3.810122356355828745e-07,3.894791742052624857e-07,3.979461127749420969e-07,4.064130513446217081e-07,4.148799899143013193e-07,4.233469284839809305e-07,4.318138670536605417e-07,4.402808056233401529e-07,4.487477441930197640e-07,4.572146827626993752e-07,4.656816213323789864e-07,4.741485599020585976e-07,4.826154984717382088e-07,4.910824370414177671e-07,4.995493756110973254e-07,5.080163141807768836e-07,5.164832527504564419e-07,5.249501913201360001e-07,5.334171298898155584e-07 +0.000000000000000000e+00,6.715394397248157113e-09,1.343078879449631423e-08,2.014618319174447217e-08,2.686157758899263176e-08,3.357697198624079135e-08,4.029236638348895095e-08,4.700776078073711054e-08,5.372315517798527014e-08,6.043854957523342311e-08,6.715394397248156947e-08,7.386933836972971583e-08,8.058473276697786219e-08,8.730012716422600855e-08,9.401552156147415491e-08,1.007309159587223013e-07,1.074463103559704476e-07,1.141617047532185940e-07,1.208770991504667403e-07,1.275924935477148867e-07,1.343078879449630331e-07,1.410232823422111794e-07,1.477386767394593258e-07,1.544540711367074721e-07,1.611694655339556185e-07,1.678848599312037649e-07,1.746002543284519112e-07,1.813156487257000576e-07,1.880310431229482039e-07,1.947464375201963503e-07,2.014618319174444967e-07,2.081772263146926430e-07,2.148926207119407894e-07,2.216080151091889357e-07,2.283234095064370821e-07,2.350388039036852285e-07,2.417541983009333748e-07,2.484695926981815212e-07,2.551849870954296675e-07,2.619003814926778139e-07,2.686157758899259603e-07,2.753311702871741066e-07,2.820465646844222530e-07,2.887619590816703993e-07,2.954773534789185457e-07,3.021927478761666921e-07,3.089081422734148384e-07,3.156235366706629848e-07,3.223389310679111311e-07,3.290543254651592775e-07,3.357697198624074239e-07,3.424851142596555702e-07,3.492005086569037166e-07,3.559159030541518629e-07,3.626312974514000093e-07,3.693466918486481556e-07,3.760620862458963020e-07,3.827774806431444484e-07,3.894928750403925947e-07,3.962082694376407411e-07,4.029236638348888874e-07,4.096390582321370338e-07,4.163544526293851802e-07,4.230698470266333265e-07 +0.000000000000000000e+00,6.607181854605644145e-09,1.321436370921128829e-08,1.982154556381693409e-08,2.642872741842257989e-08,3.303590927302822569e-08,3.964309112763386818e-08,4.625027298223951067e-08,5.285745483684515316e-08,5.946463669145079565e-08,6.607181854605643814e-08,7.267900040066208063e-08,7.928618225526772312e-08,8.589336410987336561e-08,9.250054596447900810e-08,9.910772781908465059e-08,1.057149096736902931e-07,1.123220915282959356e-07,1.189292733829015781e-07,1.255364552375072206e-07,1.321436370921128498e-07,1.387508189467184791e-07,1.453580008013241083e-07,1.519651826559297376e-07,1.585723645105353668e-07,1.651795463651409961e-07,1.717867282197466253e-07,1.783939100743522546e-07,1.850010919289578838e-07,1.916082737835635131e-07,1.982154556381691424e-07,2.048226374927747716e-07,2.114298193473804009e-07,2.180370012019860301e-07,2.246441830565916594e-07,2.312513649111972886e-07,2.378585467658029179e-07,2.444657286204085736e-07,2.510729104750142293e-07,2.576800923296198851e-07,2.642872741842255408e-07,2.708944560388311965e-07,2.775016378934368522e-07,2.841088197480425080e-07,2.907160016026481637e-07,2.973231834572538194e-07,3.039303653118594751e-07,3.105375471664651309e-07,3.171447290210707866e-07,3.237519108756764423e-07,3.303590927302820980e-07,3.369662745848877538e-07,3.435734564394934095e-07,3.501806382940990652e-07,3.567878201487047209e-07,3.633950020033103767e-07,3.700021838579160324e-07,3.766093657125216881e-07,3.832165475671273438e-07,3.898237294217329996e-07,3.964309112763386553e-07,4.030380931309443110e-07,4.096452749855499667e-07,4.162524568401556225e-07 +0.000000000000000000e+00,8.466938569681659297e-09,1.693387713936331859e-08,2.540081570904497789e-08,3.386775427872663719e-08,4.233469284840829979e-08,5.080163141808996240e-08,5.926856998777162500e-08,6.773550855745328761e-08,7.620244712713495021e-08,8.466938569681661282e-08,9.313632426649827543e-08,1.016032628361799380e-07,1.100702014058616006e-07,1.185371399755432632e-07,1.270040785452249258e-07,1.354710171149066017e-07,1.439379556845882775e-07,1.524048942542699534e-07,1.608718328239516292e-07,1.693387713936333050e-07,1.778057099633149809e-07,1.862726485329966567e-07,1.947395871026783326e-07,2.032065256723600084e-07,2.116734642420416843e-07,2.201404028117233601e-07,2.286073413814050359e-07,2.370742799510867118e-07,2.455412185207683876e-07,2.540081570904500635e-07,2.624750956601317393e-07,2.709420342298134151e-07,2.794089727994950910e-07,2.878759113691767668e-07,2.963428499388584427e-07,3.048097885085401185e-07,3.132767270782217943e-07,3.217436656479034702e-07,3.302106042175851460e-07,3.386775427872668219e-07,3.471444813569484977e-07,3.556114199266301735e-07,3.640783584963118494e-07,3.725452970659935252e-07,3.810122356356752011e-07,3.894791742053568769e-07,3.979461127750385527e-07,4.064130513447202286e-07,4.148799899144019044e-07,4.233469284840835803e-07,4.318138670537652561e-07,4.402808056234469319e-07,4.487477441931286078e-07,4.572146827628102836e-07,4.656816213324919595e-07,4.741485599021736353e-07,4.826154984718553111e-07,4.910824370415369870e-07,4.995493756112186628e-07,5.080163141809003387e-07,5.164832527505820145e-07,5.249501913202636903e-07,5.334171298899453662e-07 +0.000000000000000000e+00,6.803800468272179183e-09,1.360760093654435837e-08,2.041140140481653589e-08,2.721520187308871342e-08,3.401900234136089095e-08,4.082280280963307179e-08,4.762660327790525262e-08,5.443040374617743346e-08,6.123420421444960768e-08,6.803800468272178190e-08,7.484180515099395612e-08,8.164560561926613034e-08,8.844940608753830456e-08,9.525320655581047878e-08,1.020570070240826530e-07,1.088608074923548272e-07,1.156646079606270014e-07,1.224684084288991624e-07,1.292722088971713234e-07,1.360760093654434844e-07,1.428798098337156454e-07,1.496836103019878064e-07,1.564874107702599673e-07,1.632912112385321283e-07,1.700950117068042893e-07,1.768988121750764503e-07,1.837026126433486113e-07,1.905064131116207723e-07,1.973102135798929333e-07,2.041140140481650942e-07,2.109178145164372552e-07,2.177216149847094162e-07,2.245254154529815772e-07,2.313292159212537382e-07,2.381330163895258992e-07,2.449368168577980601e-07,2.517406173260702211e-07,2.585444177943423821e-07,2.653482182626145431e-07,2.721520187308867041e-07,2.789558191991588651e-07,2.857596196674310261e-07,2.925634201357031870e-07,2.993672206039753480e-07,3.061710210722475090e-07,3.129748215405196700e-07,3.197786220087918310e-07,3.265824224770639920e-07,3.333862229453361529e-07,3.401900234136083139e-07,3.469938238818804749e-07,3.537976243501526359e-07,3.606014248184247969e-07,3.674052252866969579e-07,3.742090257549691189e-07,3.810128262232412798e-07,3.878166266915134408e-07,3.946204271597856018e-07,4.014242276280577628e-07,4.082280280963299238e-07,4.150318285646020848e-07,4.218356290328742457e-07,4.286394295011464067e-07 +0.000000000000000000e+00,6.782639143393798343e-09,1.356527828678759669e-08,2.034791743018139337e-08,2.713055657357519006e-08,3.391319571696898675e-08,4.069583486036278675e-08,4.747847400375658674e-08,5.426111314715038674e-08,6.104375229054418674e-08,6.782639143393798674e-08,7.460903057733178673e-08,8.139166972072558673e-08,8.817430886411938673e-08,9.495694800751318672e-08,1.017395871509069867e-07,1.085222262943007867e-07,1.153048654376945867e-07,1.220875045810883735e-07,1.288701437244821602e-07,1.356527828678759470e-07,1.424354220112697338e-07,1.492180611546635205e-07,1.560007002980573073e-07,1.627833394414510941e-07,1.695659785848448808e-07,1.763486177282386676e-07,1.831312568716324543e-07,1.899138960150262411e-07,1.966965351584200279e-07,2.034791743018138146e-07,2.102618134452076014e-07,2.170444525886013881e-07,2.238270917319951749e-07,2.306097308753889617e-07,2.373923700187827484e-07,2.441750091621765352e-07,2.509576483055703220e-07,2.577402874489641087e-07,2.645229265923578955e-07,2.713055657357516822e-07,2.780882048791454690e-07,2.848708440225392558e-07,2.916534831659330425e-07,2.984361223093268293e-07,3.052187614527206161e-07,3.120014005961144028e-07,3.187840397395081896e-07,3.255666788829019763e-07,3.323493180262957631e-07,3.391319571696895499e-07,3.459145963130833366e-07,3.526972354564771234e-07,3.594798745998709102e-07,3.662625137432646969e-07,3.730451528866584837e-07,3.798277920300522704e-07,3.866104311734460572e-07,3.933930703168398440e-07,4.001757094602336307e-07,4.069583486036274175e-07,4.137409877470212043e-07,4.205236268904149910e-07,4.273062660338087778e-07 +0.000000000000000000e+00,8.673111800869535777e-09,1.734622360173907155e-08,2.601933540260860733e-08,3.469244720347814311e-08,4.336555900434768220e-08,5.203867080521722128e-08,6.071178260608676037e-08,6.938489440695629945e-08,7.805800620782583854e-08,8.673111800869537763e-08,9.540422980956491671e-08,1.040773416104344558e-07,1.127504534113039949e-07,1.214235652121735472e-07,1.300966770130430863e-07,1.387697888139126254e-07,1.474429006147821645e-07,1.561160124156517035e-07,1.647891242165212426e-07,1.734622360173907817e-07,1.821353478182603208e-07,1.908084596191298599e-07,1.994815714199993990e-07,2.081546832208689381e-07,2.168277950217384772e-07,2.255009068226080162e-07,2.341740186234775553e-07,2.428471304243470944e-07,2.515202422252166335e-07,2.601933540260861726e-07,2.688664658269557117e-07,2.775395776278252508e-07,2.862126894286947898e-07,2.948858012295643289e-07,3.035589130304338680e-07,3.122320248313034071e-07,3.209051366321729462e-07,3.295782484330424853e-07,3.382513602339120244e-07,3.469244720347815634e-07,3.555975838356511025e-07,3.642706956365206416e-07,3.729438074373901807e-07,3.816169192382597198e-07,3.902900310391292589e-07,3.989631428399987980e-07,4.076362546408683370e-07,4.163093664417378761e-07,4.249824782426074152e-07,4.336555900434769543e-07,4.423287018443464934e-07,4.510018136452160325e-07,4.596749254460855716e-07,4.683480372469551106e-07,4.770211490478246497e-07,4.856942608486941888e-07,4.943673726495637279e-07,5.030404844504332670e-07,5.117135962513028061e-07,5.203867080521723452e-07,5.290598198530418842e-07,5.377329316539114233e-07,5.464060434547809624e-07 +0.000000000000000000e+00,6.803800468272731739e-09,1.360760093654546348e-08,2.041140140481819687e-08,2.721520187309093027e-08,3.401900234136366366e-08,4.082280280963639374e-08,4.762660327790912383e-08,5.443040374618185391e-08,6.123420421445458400e-08,6.803800468272731408e-08,7.484180515100004417e-08,8.164560561927277425e-08,8.844940608754550434e-08,9.525320655581823442e-08,1.020570070240909645e-07,1.088608074923636946e-07,1.156646079606364247e-07,1.224684084289091680e-07,1.292722088971819113e-07,1.360760093654546546e-07,1.428798098337273980e-07,1.496836103020001413e-07,1.564874107702728846e-07,1.632912112385456279e-07,1.700950117068183712e-07,1.768988121750911146e-07,1.837026126433638579e-07,1.905064131116366012e-07,1.973102135799093445e-07,2.041140140481820878e-07,2.109178145164548312e-07,2.177216149847275745e-07,2.245254154530003178e-07,2.313292159212730611e-07,2.381330163895458044e-07,2.449368168578185478e-07,2.517406173260912911e-07,2.585444177943640344e-07,2.653482182626367777e-07,2.721520187309095210e-07,2.789558191991822644e-07,2.857596196674550077e-07,2.925634201357277510e-07,2.993672206040004943e-07,3.061710210722732376e-07,3.129748215405459810e-07,3.197786220088187243e-07,3.265824224770914676e-07,3.333862229453642109e-07,3.401900234136369542e-07,3.469938238819096976e-07,3.537976243501824409e-07,3.606014248184551842e-07,3.674052252867279275e-07,3.742090257550006708e-07,3.810128262232734142e-07,3.878166266915461575e-07,3.946204271598189008e-07,4.014242276280916441e-07,4.082280280963643874e-07,4.150318285646371308e-07,4.218356290329098741e-07,4.286394295011826174e-07 +0.000000000000000000e+00,6.782639143395528805e-09,1.356527828679105761e-08,2.034791743018658807e-08,2.713055657358211853e-08,3.391319571697764899e-08,4.069583486037317614e-08,4.747847400376870329e-08,5.426111314716423044e-08,6.104375229055975097e-08,6.782639143395527150e-08,7.460903057735079203e-08,8.139166972074631257e-08,8.817430886414183310e-08,9.495694800753735363e-08,1.017395871509328742e-07,1.085222262943283947e-07,1.153048654377239152e-07,1.220875045811194490e-07,1.288701437245149828e-07,1.356527828679105165e-07,1.424354220113060503e-07,1.492180611547015841e-07,1.560007002980971178e-07,1.627833394414926516e-07,1.695659785848881854e-07,1.763486177282837191e-07,1.831312568716792529e-07,1.899138960150747867e-07,1.966965351584703204e-07,2.034791743018658542e-07,2.102618134452613880e-07,2.170444525886569217e-07,2.238270917320524555e-07,2.306097308754479893e-07,2.373923700188435230e-07,2.441750091622390568e-07,2.509576483056345906e-07,2.577402874490301244e-07,2.645229265924256581e-07,2.713055657358211919e-07,2.780882048792167257e-07,2.848708440226122594e-07,2.916534831660077932e-07,2.984361223094033270e-07,3.052187614527988607e-07,3.120014005961943945e-07,3.187840397395899283e-07,3.255666788829854620e-07,3.323493180263809958e-07,3.391319571697765296e-07,3.459145963131720633e-07,3.526972354565675971e-07,3.594798745999631309e-07,3.662625137433586646e-07,3.730451528867541984e-07,3.798277920301497322e-07,3.866104311735452659e-07,3.933930703169407997e-07,4.001757094603363335e-07,4.069583486037318672e-07,4.137409877471274010e-07,4.205236268905229348e-07,4.273062660339184685e-07 +0.000000000000000000e+00,8.673111800869221449e-09,1.734622360173844290e-08,2.601933540260766435e-08,3.469244720347688579e-08,4.336555900434610724e-08,5.203867080521532869e-08,6.071178260608455014e-08,6.938489440695377159e-08,7.805800620782299304e-08,8.673111800869221449e-08,9.540422980956143594e-08,1.040773416104306574e-07,1.127504534112998788e-07,1.214235652121691003e-07,1.300966770130383217e-07,1.387697888139075432e-07,1.474429006147767646e-07,1.561160124156459861e-07,1.647891242165152075e-07,1.734622360173844290e-07,1.821353478182536504e-07,1.908084596191228719e-07,1.994815714199920933e-07,2.081546832208613148e-07,2.168277950217305362e-07,2.255009068225997577e-07,2.341740186234689791e-07,2.428471304243382006e-07,2.515202422252074220e-07,2.601933540260766435e-07,2.688664658269458649e-07,2.775395776278150864e-07,2.862126894286843078e-07,2.948858012295535293e-07,3.035589130304227507e-07,3.122320248312919722e-07,3.209051366321611936e-07,3.295782484330304150e-07,3.382513602338996365e-07,3.469244720347688579e-07,3.555975838356380794e-07,3.642706956365073008e-07,3.729438074373765223e-07,3.816169192382457437e-07,3.902900310391149652e-07,3.989631428399841866e-07,4.076362546408534081e-07,4.163093664417226295e-07,4.249824782425918510e-07,4.336555900434610724e-07,4.423287018443302939e-07,4.510018136451995153e-07,4.596749254460687368e-07,4.683480372469379582e-07,4.770211490478071797e-07,4.856942608486764011e-07,4.943673726495456226e-07,5.030404844504148440e-07,5.117135962512840655e-07,5.203867080521532869e-07,5.290598198530225084e-07,5.377329316538917298e-07,5.464060434547609513e-07 +0.000000000000000000e+00,6.714679657353229201e-09,1.342935931470645840e-08,2.014403897205968595e-08,2.685871862941291349e-08,3.357339828676614104e-08,4.028807794411937190e-08,4.700275760147260275e-08,5.371743725882583361e-08,6.043211691617907108e-08,6.714679657353230855e-08,7.386147623088554602e-08,8.057615588823878350e-08,8.729083554559202097e-08,9.400551520294525844e-08,1.007201948602984959e-07,1.074348745176517334e-07,1.141495541750049709e-07,1.208642338323581951e-07,1.275789134897114193e-07,1.342935931470646436e-07,1.410082728044178678e-07,1.477229524617710920e-07,1.544376321191243163e-07,1.611523117764775405e-07,1.678669914338307648e-07,1.745816710911839890e-07,1.812963507485372132e-07,1.880110304058904375e-07,1.947257100632436617e-07,2.014403897205968859e-07,2.081550693779501102e-07,2.148697490353033344e-07,2.215844286926565587e-07,2.282991083500097829e-07,2.350137880073630071e-07,2.417284676647162314e-07,2.484431473220694556e-07,2.551578269794226798e-07,2.618725066367759041e-07,2.685871862941291283e-07,2.753018659514823526e-07,2.820165456088355768e-07,2.887312252661888010e-07,2.954459049235420253e-07,3.021605845808952495e-07,3.088752642382484738e-07,3.155899438956016980e-07,3.223046235529549222e-07,3.290193032103081465e-07,3.357339828676613707e-07,3.424486625250145949e-07,3.491633421823678192e-07,3.558780218397210434e-07,3.625927014970742677e-07,3.693073811544274919e-07,3.760220608117807161e-07,3.827367404691339404e-07,3.894514201264871646e-07,3.961660997838403888e-07,4.028807794411936131e-07,4.095954590985468373e-07,4.163101387559000616e-07,4.230248184132532858e-07 +0.000000000000000000e+00,6.784380187527767578e-09,1.356876037505553516e-08,2.035314056258330439e-08,2.713752075011107362e-08,3.392190093763884285e-08,4.070628112516660878e-08,4.749066131269437470e-08,5.427504150022214062e-08,6.105942168774990655e-08,6.784380187527767247e-08,7.462818206280543839e-08,8.141256225033320432e-08,8.819694243786097024e-08,9.498132262538873617e-08,1.017657028129165021e-07,1.085500830004442680e-07,1.153344631879720339e-07,1.221188433754997866e-07,1.289032235630275525e-07,1.356876037505553185e-07,1.424719839380830844e-07,1.492563641256108503e-07,1.560407443131386162e-07,1.628251245006663822e-07,1.696095046881941481e-07,1.763938848757219140e-07,1.831782650632496799e-07,1.899626452507774459e-07,1.967470254383052118e-07,2.035314056258329777e-07,2.103157858133607436e-07,2.171001660008885096e-07,2.238845461884162755e-07,2.306689263759440414e-07,2.374533065634718073e-07,2.442376867509995733e-07,2.510220669385273392e-07,2.578064471260551051e-07,2.645908273135828710e-07,2.713752075011106369e-07,2.781595876886384029e-07,2.849439678761661688e-07,2.917283480636939347e-07,2.985127282512217006e-07,3.052971084387494666e-07,3.120814886262772325e-07,3.188658688138049984e-07,3.256502490013327643e-07,3.324346291888605303e-07,3.392190093763882962e-07,3.460033895639160621e-07,3.527877697514438280e-07,3.595721499389715940e-07,3.663565301264993599e-07,3.731409103140271258e-07,3.799252905015548917e-07,3.867096706890826576e-07,3.934940508766104236e-07,4.002784310641381895e-07,4.070628112516659554e-07,4.138471914391937213e-07,4.206315716267214873e-07,4.274159518142492532e-07 +0.000000000000000000e+00,8.770260148515020046e-09,1.754052029703004009e-08,2.631078044554506014e-08,3.508104059406008018e-08,4.385130074257510023e-08,5.262156089109012028e-08,6.139182103960514032e-08,7.016208118812016037e-08,7.893234133663518041e-08,8.770260148515020046e-08,9.647286163366522051e-08,1.052431217821802406e-07,1.140133819306952606e-07,1.227836420792102806e-07,1.315539022277252875e-07,1.403241623762402943e-07,1.490944225247553011e-07,1.578646826732703079e-07,1.666349428217853147e-07,1.754052029703003215e-07,1.841754631188153283e-07,1.929457232673303351e-07,2.017159834158453419e-07,2.104862435643603488e-07,2.192565037128753556e-07,2.280267638613903624e-07,2.367970240099053692e-07,2.455672841584204025e-07,2.543375443069354358e-07,2.631078044554504690e-07,2.718780646039655023e-07,2.806483247524805356e-07,2.894185849009955689e-07,2.981888450495106022e-07,3.069591051980256354e-07,3.157293653465406687e-07,3.244996254950557020e-07,3.332698856435707353e-07,3.420401457920857686e-07,3.508104059406008018e-07,3.595806660891158351e-07,3.683509262376308684e-07,3.771211863861459017e-07,3.858914465346609350e-07,3.946617066831759682e-07,4.034319668316910015e-07,4.122022269802060348e-07,4.209724871287210681e-07,4.297427472772361014e-07,4.385130074257511347e-07,4.472832675742661679e-07,4.560535277227812012e-07,4.648237878712962345e-07,4.735940480198112678e-07,4.823643081683263540e-07,4.911345683168414402e-07,4.999048284653565264e-07,5.086750886138716127e-07,5.174453487623866989e-07,5.262156089109017851e-07,5.349858690594168713e-07,5.437561292079319575e-07,5.525263893564470438e-07 +0.000000000000000000e+00,6.714679657352256436e-09,1.342935931470451287e-08,2.014403897205676765e-08,2.685871862940902244e-08,3.357339828676127722e-08,4.028807794411353531e-08,4.700275760146579340e-08,5.371743725881805149e-08,6.043211691617030958e-08,6.714679657352256767e-08,7.386147623087482576e-08,8.057615588822708385e-08,8.729083554557934194e-08,9.400551520293160003e-08,1.007201948602838581e-07,1.074348745176361162e-07,1.141495541749883743e-07,1.208642338323406192e-07,1.275789134896928640e-07,1.342935931470451089e-07,1.410082728043973537e-07,1.477229524617495986e-07,1.544376321191018434e-07,1.611523117764540883e-07,1.678669914338063332e-07,1.745816710911585780e-07,1.812963507485108229e-07,1.880110304058630677e-07,1.947257100632153126e-07,2.014403897205675574e-07,2.081550693779198023e-07,2.148697490352720471e-07,2.215844286926242920e-07,2.282991083499765369e-07,2.350137880073287817e-07,2.417284676646810266e-07,2.484431473220332979e-07,2.551578269793855692e-07,2.618725066367378405e-07,2.685871862940901119e-07,2.753018659514423832e-07,2.820165456087946545e-07,2.887312252661469258e-07,2.954459049234991972e-07,3.021605845808514685e-07,3.088752642382037398e-07,3.155899438955560111e-07,3.223046235529082825e-07,3.290193032102605538e-07,3.357339828676128251e-07,3.424486625249650965e-07,3.491633421823173678e-07,3.558780218396696391e-07,3.625927014970219104e-07,3.693073811543741818e-07,3.760220608117264531e-07,3.827367404690787244e-07,3.894514201264309957e-07,3.961660997837832671e-07,4.028807794411355384e-07,4.095954590984878097e-07,4.163101387558400810e-07,4.230248184131923524e-07 +0.000000000000000000e+00,6.784380187527427607e-09,1.356876037505485521e-08,2.035314056258228199e-08,2.713752075010970712e-08,3.392190093763713555e-08,4.070628112516456399e-08,4.749066131269199242e-08,5.427504150021942085e-08,6.105942168774684929e-08,6.784380187527427110e-08,7.462818206280169292e-08,8.141256225032911474e-08,8.819694243785653655e-08,9.498132262538395837e-08,1.017657028129113802e-07,1.085500830004388020e-07,1.153344631879662238e-07,1.221188433754936456e-07,1.289032235630210675e-07,1.356876037505484893e-07,1.424719839380759111e-07,1.492563641256033329e-07,1.560407443131307547e-07,1.628251245006581765e-07,1.696095046881855984e-07,1.763938848757130202e-07,1.831782650632404420e-07,1.899626452507678638e-07,1.967470254382952856e-07,2.035314056258227074e-07,2.103157858133501293e-07,2.171001660008775511e-07,2.238845461884049729e-07,2.306689263759323947e-07,2.374533065634598165e-07,2.442376867509872383e-07,2.510220669385146337e-07,2.578064471260420290e-07,2.645908273135694244e-07,2.713752075010968197e-07,2.781595876886242151e-07,2.849439678761516104e-07,2.917283480636790058e-07,2.985127282512064011e-07,3.052971084387337965e-07,3.120814886262611918e-07,3.188658688137885871e-07,3.256502490013159825e-07,3.324346291888433778e-07,3.392190093763707732e-07,3.460033895638981685e-07,3.527877697514255639e-07,3.595721499389529592e-07,3.663565301264803546e-07,3.731409103140077499e-07,3.799252905015351453e-07,3.867096706890625406e-07,3.934940508765899360e-07,4.002784310641173313e-07,4.070628112516447267e-07,4.138471914391721220e-07,4.206315716266995173e-07,4.274159518142269127e-07 +0.000000000000000000e+00,8.770260148513127457e-09,1.754052029702625491e-08,2.631078044553938237e-08,3.508104059405250983e-08,4.385130074256563728e-08,5.262156089107876474e-08,6.139182103959189220e-08,7.016208118810501965e-08,7.893234133661814711e-08,8.770260148513127457e-08,9.647286163364440202e-08,1.052431217821575295e-07,1.140133819306706569e-07,1.227836420791837844e-07,1.315539022276969119e-07,1.403241623762100393e-07,1.490944225247231668e-07,1.578646826732362942e-07,1.666349428217494217e-07,1.754052029702625491e-07,1.841754631187756766e-07,1.929457232672888040e-07,2.017159834158019315e-07,2.104862435643150590e-07,2.192565037128281864e-07,2.280267638613413139e-07,2.367970240098544413e-07,2.455672841583675688e-07,2.543375443068806962e-07,2.631078044553938237e-07,2.718780646039069512e-07,2.806483247524200786e-07,2.894185849009332061e-07,2.981888450494463335e-07,3.069591051979594610e-07,3.157293653464725884e-07,3.244996254949857159e-07,3.332698856434988434e-07,3.420401457920119708e-07,3.508104059405250983e-07,3.595806660890382257e-07,3.683509262375513532e-07,3.771211863860644806e-07,3.858914465345776081e-07,3.946617066830907356e-07,4.034319668316038630e-07,4.122022269801169905e-07,4.209724871286301179e-07,4.297427472771432454e-07,4.385130074256563728e-07,4.472832675741695003e-07,4.560535277226826278e-07,4.648237878711957552e-07,4.735940480197088827e-07,4.823643081682219572e-07,4.911345683167350317e-07,4.999048284652481062e-07,5.086750886137611807e-07,5.174453487622742553e-07,5.262156089107873298e-07,5.349858690593004043e-07,5.437561292078134788e-07,5.525263893563265533e-07 +0.000000000000000000e+00,5.756729679313737933e-09,1.151345935862747587e-08,1.727018903794121214e-08,2.302691871725494842e-08,2.878364839656868470e-08,3.454037807588242429e-08,4.029710775519616387e-08,4.605383743450990346e-08,5.181056711382364305e-08,5.756729679313738264e-08,6.332402647245112222e-08,6.908075615176486181e-08,7.483748583107860140e-08,8.059421551039234098e-08,8.635094518970608057e-08,9.210767486901982016e-08,9.786440454833355974e-08,1.036211342276472993e-07,1.093778639069610389e-07,1.151345935862747785e-07,1.208913232655885049e-07,1.266480529449022180e-07,1.324047826242159311e-07,1.381615123035296442e-07,1.439182419828433573e-07,1.496749716621570704e-07,1.554317013414707836e-07,1.611884310207844967e-07,1.669451607000982098e-07,1.727018903794119229e-07,1.784586200587256360e-07,1.842153497380393491e-07,1.899720794173530623e-07,1.957288090966667754e-07,2.014855387759804885e-07,2.072422684552942016e-07,2.129989981346079147e-07,2.187557278139216279e-07,2.245124574932353410e-07,2.302691871725490541e-07,2.360259168518627672e-07,2.417826465311764803e-07,2.475393762104901934e-07,2.532961058898039066e-07,2.590528355691176197e-07,2.648095652484313328e-07,2.705662949277450459e-07,2.763230246070587590e-07,2.820797542863724721e-07,2.878364839656861853e-07,2.935932136449998984e-07,2.993499433243136115e-07,3.051066730036273246e-07,3.108634026829410377e-07,3.166201323622547508e-07,3.223768620415684640e-07,3.281335917208821771e-07,3.338903214001958902e-07,3.396470510795096033e-07,3.454037807588233164e-07,3.511605104381370295e-07,3.569172401174507427e-07,3.626739697967644558e-07 +0.000000000000000000e+00,2.414484179829861075e-09,4.828968359659722151e-09,7.243452539489583640e-09,9.657936719319445956e-09,1.207242089914930827e-08,1.448690507897917059e-08,1.690138925880903290e-08,1.931587343863889522e-08,2.173035761846875754e-08,2.414484179829861985e-08,2.655932597812848217e-08,2.897381015795834449e-08,3.138829433778820680e-08,3.380277851761806581e-08,3.621726269744792482e-08,3.863174687727778382e-08,4.104623105710764283e-08,4.346071523693750184e-08,4.587519941676736085e-08,4.828968359659721985e-08,5.070416777642707886e-08,5.311865195625693787e-08,5.553313613608679688e-08,5.794762031591665588e-08,6.036210449574652151e-08,6.277658867557638713e-08,6.519107285540625276e-08,6.760555703523611838e-08,7.002004121506598401e-08,7.243452539489584963e-08,7.484900957472571526e-08,7.726349375455558088e-08,7.967797793438544651e-08,8.209246211421531213e-08,8.450694629404517776e-08,8.692143047387504338e-08,8.933591465370490901e-08,9.175039883353477463e-08,9.416488301336464026e-08,9.657936719319450588e-08,9.899385137302437151e-08,1.014083355528542371e-07,1.038228197326841028e-07,1.062373039125139684e-07,1.086517880923438340e-07,1.110662722721736996e-07,1.134807564520035653e-07,1.158952406318334309e-07,1.183097248116632965e-07,1.207242089914931489e-07,1.231386931713230013e-07,1.255531773511528537e-07,1.279676615309827061e-07,1.303821457108125585e-07,1.327966298906424108e-07,1.352111140704722632e-07,1.376255982503021156e-07,1.400400824301319680e-07,1.424545666099618204e-07,1.448690507897916728e-07,1.472835349696215252e-07,1.496980191494513776e-07,1.521125033292812300e-07 +0.000000000000000000e+00,5.935467635279121643e-09,1.187093527055824329e-08,1.780640290583736576e-08,2.374187054111648988e-08,2.967733817639561401e-08,3.561280581167473813e-08,4.154827344695386225e-08,4.748374108223298638e-08,5.341920871751211050e-08,5.935467635279123463e-08,6.529014398807035213e-08,7.122561162334946302e-08,7.716107925862857391e-08,8.309654689390768480e-08,8.903201452918679569e-08,9.496748216446590658e-08,1.009029497997450175e-07,1.068384174350241284e-07,1.127738850703032393e-07,1.187093527055823501e-07,1.246448203408614610e-07,1.305802879761405719e-07,1.365157556114196828e-07,1.424512232466987937e-07,1.483866908819779046e-07,1.543221585172570155e-07,1.602576261525361264e-07,1.661930937878152373e-07,1.721285614230943481e-07,1.780640290583734590e-07,1.839994966936525699e-07,1.899349643289316808e-07,1.958704319642107917e-07,2.018058995994899026e-07,2.077413672347690135e-07,2.136768348700481244e-07,2.196123025053272353e-07,2.255477701406063462e-07,2.314832377758854570e-07,2.374187054111645679e-07,2.433541730464436788e-07,2.492896406817228162e-07,2.552251083170019535e-07,2.611605759522810909e-07,2.670960435875602283e-07,2.730315112228393656e-07,2.789669788581185030e-07,2.849024464933976403e-07,2.908379141286767777e-07,2.967733817639559151e-07,3.027088493992350524e-07,3.086443170345141898e-07,3.145797846697933271e-07,3.205152523050724645e-07,3.264507199403516019e-07,3.323861875756307392e-07,3.383216552109098766e-07,3.442571228461890139e-07,3.501925904814681513e-07,3.561280581167472887e-07,3.620635257520264260e-07,3.679989933873055634e-07,3.739344610225847007e-07 +0.000000000000000000e+00,7.118084007206590152e-09,1.423616801441318030e-08,2.135425202161976963e-08,2.847233602882635730e-08,3.559042003603294497e-08,4.270850404323953264e-08,4.982658805044612031e-08,5.694467205765270798e-08,6.406275606485929565e-08,7.118084007206588993e-08,7.829892407927248422e-08,8.541700808647907851e-08,9.253509209368567280e-08,9.965317610089226708e-08,1.067712601080988614e-07,1.138893441153054557e-07,1.210074281225120499e-07,1.281255121297186442e-07,1.352435961369252385e-07,1.423616801441318328e-07,1.494797641513384271e-07,1.565978481585450214e-07,1.637159321657516157e-07,1.708340161729582100e-07,1.779521001801648042e-07,1.850701841873713985e-07,1.921882681945779928e-07,1.993063522017845871e-07,2.064244362089911814e-07,2.135425202161977757e-07,2.206606042234043700e-07,2.277786882306109643e-07,2.348967722378175585e-07,2.420148562450241528e-07,2.491329402522307736e-07,2.562510242594373943e-07,2.633691082666440151e-07,2.704871922738506359e-07,2.776052762810572566e-07,2.847233602882638774e-07,2.918414442954704981e-07,2.989595283026771189e-07,3.060776123098837396e-07,3.131956963170903604e-07,3.203137803242969812e-07,3.274318643315036019e-07,3.345499483387102227e-07,3.416680323459168434e-07,3.487861163531234642e-07,3.559042003603300849e-07,3.630222843675367057e-07,3.701403683747433265e-07,3.772584523819499472e-07,3.843765363891565680e-07,3.914946203963631887e-07,3.986127044035698095e-07,4.057307884107764303e-07,4.128488724179830510e-07,4.199669564251896718e-07,4.270850404323962925e-07,4.342031244396029133e-07,4.413212084468095340e-07,4.484392924540161548e-07 +0.000000000000000000e+00,3.296671962246854563e-09,6.593343924493709126e-09,9.890015886740564102e-09,1.318668784898741991e-08,1.648335981123427571e-08,1.978003177348113151e-08,2.307670373572798732e-08,2.637337569797484312e-08,2.967004766022169892e-08,3.296671962246855804e-08,3.626339158471542046e-08,3.956006354696228288e-08,4.285673550920914530e-08,4.615340747145600772e-08,4.945007943370287014e-08,5.274675139594973256e-08,5.604342335819659498e-08,5.934009532044345740e-08,6.263676728269031983e-08,6.593343924493718225e-08,6.923011120718404467e-08,7.252678316943090709e-08,7.582345513167776951e-08,7.912012709392463193e-08,8.241679905617149435e-08,8.571347101841835677e-08,8.901014298066521919e-08,9.230681494291208162e-08,9.560348690515894404e-08,9.890015886740580646e-08,1.021968308296526689e-07,1.054935027918995313e-07,1.087901747541463937e-07,1.120868467163932561e-07,1.153835186786401186e-07,1.186801906408869810e-07,1.219768626031338434e-07,1.252735345653806926e-07,1.285702065276275418e-07,1.318668784898743910e-07,1.351635504521212401e-07,1.384602224143680893e-07,1.417568943766149385e-07,1.450535663388617877e-07,1.483502383011086369e-07,1.516469102633554861e-07,1.549435822256023353e-07,1.582402541878491845e-07,1.615369261500960336e-07,1.648335981123428828e-07,1.681302700745897320e-07,1.714269420368365812e-07,1.747236139990834304e-07,1.780202859613302796e-07,1.813169579235771288e-07,1.846136298858239779e-07,1.879103018480708271e-07,1.912069738103176763e-07,1.945036457725645255e-07,1.978003177348113747e-07,2.010969896970582239e-07,2.043936616593050731e-07,2.076903336215519222e-07 +0.000000000000000000e+00,3.420395230230030187e-09,6.840790460460060374e-09,1.026118569069009015e-08,1.368158092092011909e-08,1.710197615115014639e-08,2.052237138138017368e-08,2.394276661161020097e-08,2.736316184184022826e-08,3.078355707207025555e-08,3.420395230230027954e-08,3.762434753253030352e-08,4.104474276276032751e-08,4.446513799299035149e-08,4.788553322322037547e-08,5.130592845345039946e-08,5.472632368368042344e-08,5.814671891391044742e-08,6.156711414414047141e-08,6.498750937437050201e-08,6.840790460460053261e-08,7.182829983483056321e-08,7.524869506506059381e-08,7.866909029529062441e-08,8.208948552552065501e-08,8.550988075575068561e-08,8.893027598598071621e-08,9.235067121621074681e-08,9.577106644644077741e-08,9.919146167667080801e-08,1.026118569069008386e-07,1.060322521371308692e-07,1.094526473673608998e-07,1.128730425975909304e-07,1.162934378278209610e-07,1.197138330580509916e-07,1.231342282882810222e-07,1.265546235185110528e-07,1.299750187487410834e-07,1.333954139789711140e-07,1.368158092092011446e-07,1.402362044394311752e-07,1.436565996696612058e-07,1.470769948998912364e-07,1.504973901301212670e-07,1.539177853603512976e-07,1.573381805905813282e-07,1.607585758208113588e-07,1.641789710510413894e-07,1.675993662812714200e-07,1.710197615115014506e-07,1.744401567417314812e-07,1.778605519719615118e-07,1.812809472021915424e-07,1.847013424324215730e-07,1.881217376626516036e-07,1.915421328928816342e-07,1.949625281231116648e-07,1.983829233533416954e-07,2.018033185835717260e-07,2.052237138138017566e-07,2.086441090440317872e-07,2.120645042742618178e-07,2.154848995044918484e-07 +0.000000000000000000e+00,5.894464220436029351e-09,1.178892844087205870e-08,1.768339266130808888e-08,2.357785688174412071e-08,2.947232110218015255e-08,3.536678532261618438e-08,4.126124954305221621e-08,4.715571376348824805e-08,5.305017798392427988e-08,5.894464220436031171e-08,6.483910642479634355e-08,7.073357064523238200e-08,7.662803486566842045e-08,8.252249908610445890e-08,8.841696330654049735e-08,9.431142752697653580e-08,1.002058917474125742e-07,1.061003559678486127e-07,1.119948201882846511e-07,1.178892844087206896e-07,1.237837486291567281e-07,1.296782128495927665e-07,1.355726770700288050e-07,1.414671412904648434e-07,1.473616055109008819e-07,1.532560697313369203e-07,1.591505339517729588e-07,1.650449981722089972e-07,1.709394623926450357e-07,1.768339266130810741e-07,1.827283908335171126e-07,1.886228550539531510e-07,1.945173192743891895e-07,2.004117834948252279e-07,2.063062477152612664e-07,2.122007119356973048e-07,2.180951761561333433e-07,2.239896403765693817e-07,2.298841045970054202e-07,2.357785688174414586e-07,2.416730330378774706e-07,2.475674972583135090e-07,2.534619614787495475e-07,2.593564256991855859e-07,2.652508899196216244e-07,2.711453541400576628e-07,2.770398183604937013e-07,2.829342825809297397e-07,2.888287468013657782e-07,2.947232110218018166e-07,3.006176752422378551e-07,3.065121394626738935e-07,3.124066036831099320e-07,3.183010679035459704e-07,3.241955321239820089e-07,3.300899963444180473e-07,3.359844605648540858e-07,3.418789247852901242e-07,3.477733890057261627e-07,3.536678532261622011e-07,3.595623174465982396e-07,3.654567816670342781e-07,3.713512458874703165e-07 +0.000000000000000000e+00,7.304908992323753832e-09,1.460981798464750766e-08,2.191472697697126232e-08,2.921963596929501864e-08,3.652454496161877495e-08,4.382945395394253126e-08,5.113436294626628758e-08,5.843927193859004389e-08,6.574418093091380021e-08,7.304908992323754990e-08,8.035399891556129960e-08,8.765890790788504930e-08,9.496381690020879899e-08,1.022687258925325487e-07,1.095736348848562984e-07,1.168785438771800481e-07,1.241834528695037978e-07,1.314883618618275475e-07,1.387932708541512972e-07,1.460981798464750469e-07,1.534030888387987966e-07,1.607079978311225463e-07,1.680129068234462960e-07,1.753178158157700457e-07,1.826227248080937953e-07,1.899276338004175450e-07,1.972325427927412947e-07,2.045374517850650444e-07,2.118423607773887941e-07,2.191472697697125438e-07,2.264521787620362935e-07,2.337570877543600432e-07,2.410619967466837929e-07,2.483669057390075426e-07,2.556718147313312923e-07,2.629767237236550420e-07,2.702816327159787917e-07,2.775865417083025414e-07,2.848914507006262911e-07,2.921963596929500408e-07,2.995012686852737905e-07,3.068061776775975402e-07,3.141110866699212899e-07,3.214159956622450396e-07,3.287209046545687893e-07,3.360258136468925390e-07,3.433307226392162887e-07,3.506356316315400384e-07,3.579405406238637881e-07,3.652454496161875378e-07,3.725503586085112875e-07,3.798552676008350371e-07,3.871601765931587868e-07,3.944650855854825365e-07,4.017699945778062862e-07,4.090749035701300359e-07,4.163798125624537856e-07,4.236847215547775353e-07,4.309896305471012850e-07,4.382945395394250347e-07,4.455994485317487844e-07,4.529043575240725341e-07,4.602092665163962838e-07 +0.000000000000000000e+00,5.756729679330333657e-09,1.151345935866066731e-08,1.727018903799100180e-08,2.302691871732133794e-08,2.878364839665167408e-08,3.454037807598201022e-08,4.029710775531234635e-08,4.605383743464268249e-08,5.181056711397301863e-08,5.756729679330335477e-08,6.332402647263369753e-08,6.908075615196403367e-08,7.483748583129436980e-08,8.059421551062470594e-08,8.635094518995504208e-08,9.210767486928537822e-08,9.786440454861571436e-08,1.036211342279460505e-07,1.093778639072763866e-07,1.151345935866067228e-07,1.208913232659370589e-07,1.266480529452673951e-07,1.324047826245977312e-07,1.381615123039280673e-07,1.439182419832584035e-07,1.496749716625887396e-07,1.554317013419190757e-07,1.611884310212494119e-07,1.669451607005797480e-07,1.727018903799100842e-07,1.784586200592404203e-07,1.842153497385707564e-07,1.899720794179010926e-07,1.957288090972314287e-07,2.014855387765617649e-07,2.072422684558921010e-07,2.129989981352224371e-07,2.187557278145527733e-07,2.245124574938831094e-07,2.302691871732134456e-07,2.360259168525437817e-07,2.417826465318741178e-07,2.475393762112044540e-07,2.532961058905347901e-07,2.590528355698651262e-07,2.648095652491954624e-07,2.705662949285257985e-07,2.763230246078561347e-07,2.820797542871864708e-07,2.878364839665168069e-07,2.935932136458471431e-07,2.993499433251774792e-07,3.051066730045078154e-07,3.108634026838381515e-07,3.166201323631684876e-07,3.223768620424988238e-07,3.281335917218291599e-07,3.338903214011594961e-07,3.396470510804898322e-07,3.454037807598201683e-07,3.511605104391505045e-07,3.569172401184808406e-07,3.626739697978111767e-07 +0.000000000000000000e+00,2.414484179844850415e-09,4.828968359689700831e-09,7.243452539534550832e-09,9.657936719379400007e-09,1.207242089922424918e-08,1.448690507906909836e-08,1.690138925891394588e-08,1.931587343875879340e-08,2.173035761860364092e-08,2.414484179844848844e-08,2.655932597829333596e-08,2.897381015813818348e-08,3.138829433798303100e-08,3.380277851782787852e-08,3.621726269767272604e-08,3.863174687751757356e-08,4.104623105736242108e-08,4.346071523720726860e-08,4.587519941705211612e-08,4.828968359689696364e-08,5.070416777674181116e-08,5.311865195658665868e-08,5.553313613643150620e-08,5.794762031627635372e-08,6.036210449612120124e-08,6.277658867596604876e-08,6.519107285581089628e-08,6.760555703565574380e-08,7.002004121550059132e-08,7.243452539534543884e-08,7.484900957519028636e-08,7.726349375503513388e-08,7.967797793487998140e-08,8.209246211472482892e-08,8.450694629456967644e-08,8.692143047441452396e-08,8.933591465425937148e-08,9.175039883410421900e-08,9.416488301394906652e-08,9.657936719379391404e-08,9.899385137363876156e-08,1.014083355534836091e-07,1.038228197333284566e-07,1.062373039131733041e-07,1.086517880930181516e-07,1.110662722728629992e-07,1.134807564527078467e-07,1.158952406325526942e-07,1.183097248123975417e-07,1.207242089922424025e-07,1.231386931720872632e-07,1.255531773519321240e-07,1.279676615317769847e-07,1.303821457116218455e-07,1.327966298914667063e-07,1.352111140713115670e-07,1.376255982511564278e-07,1.400400824310012885e-07,1.424545666108461493e-07,1.448690507906910100e-07,1.472835349705358708e-07,1.496980191503807315e-07,1.521125033302255923e-07 +0.000000000000000000e+00,5.894464220444146475e-09,1.178892844088829295e-08,1.768339266133244108e-08,2.357785688177658921e-08,2.947232110222073734e-08,3.536678532266488216e-08,4.126124954310902698e-08,4.715571376355317180e-08,5.305017798399731662e-08,5.894464220444146144e-08,6.483910642488559964e-08,7.073357064532973785e-08,7.662803486577387605e-08,8.252249908621801425e-08,8.841696330666215245e-08,9.431142752710629066e-08,1.002058917475504289e-07,1.061003559679945671e-07,1.119948201884387053e-07,1.178892844088828435e-07,1.237837486293269817e-07,1.296782128497711199e-07,1.355726770702152581e-07,1.414671412906593963e-07,1.473616055111035345e-07,1.532560697315476727e-07,1.591505339519918109e-07,1.650449981724359491e-07,1.709394623928800873e-07,1.768339266133242255e-07,1.827283908337683637e-07,1.886228550542125019e-07,1.945173192746566401e-07,2.004117834951007783e-07,2.063062477155449165e-07,2.122007119359890547e-07,2.180951761564331929e-07,2.239896403768773311e-07,2.298841045973214693e-07,2.357785688177656075e-07,2.416730330382097193e-07,2.475674972586538045e-07,2.534619614790978898e-07,2.593564256995419751e-07,2.652508899199860603e-07,2.711453541404301456e-07,2.770398183608742308e-07,2.829342825813183161e-07,2.888287468017624014e-07,2.947232110222064866e-07,3.006176752426505719e-07,3.065121394630946572e-07,3.124066036835387424e-07,3.183010679039828277e-07,3.241955321244269130e-07,3.300899963448709982e-07,3.359844605653150835e-07,3.418789247857591687e-07,3.477733890062032540e-07,3.536678532266473393e-07,3.595623174470914245e-07,3.654567816675355098e-07,3.713512458879795951e-07 +0.000000000000000000e+00,7.118084007223624282e-09,1.423616801444724856e-08,2.135425202167087285e-08,2.847233602889449713e-08,3.559042003611812472e-08,4.270850404334175231e-08,4.982658805056537990e-08,5.694467205778900749e-08,6.406275606501263508e-08,7.118084007223626267e-08,7.829892407945989026e-08,8.541700808668351785e-08,9.253509209390714544e-08,9.965317610113077303e-08,1.067712601083544006e-07,1.138893441155780282e-07,1.210074281228016558e-07,1.281255121300252702e-07,1.352435961372488845e-07,1.423616801444724989e-07,1.494797641516961132e-07,1.565978481589197276e-07,1.637159321661433419e-07,1.708340161733669563e-07,1.779521001805905707e-07,1.850701841878141850e-07,1.921882681950377994e-07,1.993063522022614137e-07,2.064244362094850281e-07,2.135425202167086424e-07,2.206606042239322568e-07,2.277786882311558711e-07,2.348967722383794855e-07,2.420148562456030999e-07,2.491329402528267142e-07,2.562510242600503286e-07,2.633691082672739429e-07,2.704871922744975573e-07,2.776052762817211716e-07,2.847233602889447860e-07,2.918414442961684003e-07,2.989595283033920147e-07,3.060776123106156291e-07,3.131956963178392434e-07,3.203137803250628578e-07,3.274318643322864721e-07,3.345499483395100865e-07,3.416680323467337008e-07,3.487861163539573152e-07,3.559042003611809295e-07,3.630222843684045439e-07,3.701403683756281583e-07,3.772584523828517726e-07,3.843765363900753870e-07,3.914946203972990013e-07,3.986127044045226157e-07,4.057307884117462300e-07,4.128488724189698444e-07,4.199669564261934587e-07,4.270850404334170731e-07,4.342031244406406875e-07,4.413212084478643018e-07,4.484392924550879162e-07 +0.000000000000000000e+00,3.296671962262931232e-09,6.593343924525862463e-09,9.890015886788793695e-09,1.318668784905172493e-08,1.648335981131465450e-08,1.978003177357758408e-08,2.307670373584051366e-08,2.637337569810344324e-08,2.967004766036637281e-08,3.296671962262930239e-08,3.626339158489223197e-08,3.956006354715516154e-08,4.285673550941809112e-08,4.615340747168102070e-08,4.945007943394395028e-08,5.274675139620687985e-08,5.604342335846980943e-08,5.934009532073273901e-08,6.263676728299567520e-08,6.593343924525861802e-08,6.923011120752156083e-08,7.252678316978450364e-08,7.582345513204744645e-08,7.912012709431038926e-08,8.241679905657333208e-08,8.571347101883627489e-08,8.901014298109921770e-08,9.230681494336216051e-08,9.560348690562510333e-08,9.890015886788804614e-08,1.021968308301509889e-07,1.054935027924139318e-07,1.087901747546768746e-07,1.120868467169398174e-07,1.153835186792027602e-07,1.186801906414657030e-07,1.219768626037286458e-07,1.252735345659915886e-07,1.285702065282545314e-07,1.318668784905174743e-07,1.351635504527804171e-07,1.384602224150433599e-07,1.417568943773063027e-07,1.450535663395692455e-07,1.483502383018321883e-07,1.516469102640951311e-07,1.549435822263580739e-07,1.582402541886210168e-07,1.615369261508839596e-07,1.648335981131469024e-07,1.681302700754098452e-07,1.714269420376727880e-07,1.747236139999357308e-07,1.780202859621986736e-07,1.813169579244616164e-07,1.846136298867245593e-07,1.879103018489875021e-07,1.912069738112504449e-07,1.945036457735133877e-07,1.978003177357763305e-07,2.010969896980392733e-07,2.043936616603022161e-07,2.076903336225651589e-07 +0.000000000000000000e+00,3.420395230245429809e-09,6.840790460490859617e-09,1.026118569073628984e-08,1.368158092098172089e-08,1.710197615122715359e-08,2.052237138147258630e-08,2.394276661171801900e-08,2.736316184196345170e-08,3.078355707220888441e-08,3.420395230245432042e-08,3.762434753269975643e-08,4.104474276294519245e-08,4.446513799319062846e-08,4.788553322343606447e-08,5.130592845368150048e-08,5.472632368392693650e-08,5.814671891417237251e-08,6.156711414441780852e-08,6.498750937466324453e-08,6.840790460490868055e-08,7.182829983515411656e-08,7.524869506539955257e-08,7.866909029564498858e-08,8.208948552589042460e-08,8.550988075613586061e-08,8.893027598638129662e-08,9.235067121662673263e-08,9.577106644687216865e-08,9.919146167711760466e-08,1.026118569073630407e-07,1.060322521376084767e-07,1.094526473678539127e-07,1.128730425980993487e-07,1.162934378283447847e-07,1.197138330585902075e-07,1.231342282888356435e-07,1.265546235190810795e-07,1.299750187493265155e-07,1.333954139795719515e-07,1.368158092098173876e-07,1.402362044400628236e-07,1.436565996703082596e-07,1.470769949005536956e-07,1.504973901307991316e-07,1.539177853610445676e-07,1.573381805912900036e-07,1.607585758215354396e-07,1.641789710517808757e-07,1.675993662820263117e-07,1.710197615122717477e-07,1.744401567425171837e-07,1.778605519727626197e-07,1.812809472030080557e-07,1.847013424332534917e-07,1.881217376634989277e-07,1.915421328937443638e-07,1.949625281239897998e-07,1.983829233542352358e-07,2.018033185844806718e-07,2.052237138147261078e-07,2.086441090449715438e-07,2.120645042752169798e-07,2.154848995054624159e-07 +0.000000000000000000e+00,2.260547190832169038e-09,4.521094381664338076e-09,6.781641572496506700e-09,9.042188763328674497e-09,1.130273595416084229e-08,1.356328314499301009e-08,1.582383033582517954e-08,1.808437752665734899e-08,2.034492471748951845e-08,2.260547190832168790e-08,2.486601909915385735e-08,2.712656628998602680e-08,2.938711348081819625e-08,3.164766067165036570e-08,3.390820786248253516e-08,3.616875505331470461e-08,3.842930224414687406e-08,4.068984943497904351e-08,4.295039662581121296e-08,4.521094381664338241e-08,4.747149100747555186e-08,4.973203819830772132e-08,5.199258538913989077e-08,5.425313257997206022e-08,5.651367977080422967e-08,5.877422696163639912e-08,6.103477415246856857e-08,6.329532134330074464e-08,6.555586853413292071e-08,6.781641572496509678e-08,7.007696291579727285e-08,7.233751010662944892e-08,7.459805729746162499e-08,7.685860448829380106e-08,7.911915167912597712e-08,8.137969886995815319e-08,8.364024606079032926e-08,8.590079325162250533e-08,8.816134044245468140e-08,9.042188763328685747e-08,9.268243482411903354e-08,9.494298201495120961e-08,9.720352920578338568e-08,9.946407639661556175e-08,1.017246235874477378e-07,1.039851707782799139e-07,1.062457179691120900e-07,1.085062651599442660e-07,1.107668123507764421e-07,1.130273595416086182e-07,1.152879067324407942e-07,1.175484539232729703e-07,1.198090011141051464e-07,1.220695483049373224e-07,1.243300954957694985e-07,1.265906426866016746e-07,1.288511898774338506e-07,1.311117370682660267e-07,1.333722842590982028e-07,1.356328314499303788e-07,1.378933786407625549e-07,1.401539258315947310e-07,1.424144730224269071e-07 +0.000000000000000000e+00,2.201258714856838270e-09,4.402517429713676539e-09,6.603776144570515222e-09,8.805034859427354733e-09,1.100629357428419424e-08,1.320755228914103375e-08,1.540881100399787492e-08,1.761006971885471608e-08,1.981132843371155725e-08,2.201258714856839841e-08,2.421384586342523958e-08,2.641510457828208074e-08,2.861636329313892191e-08,3.081762200799576307e-08,3.301888072285260424e-08,3.522013943770944540e-08,3.742139815256628656e-08,3.962265686742312773e-08,4.182391558227996889e-08,4.402517429713681006e-08,4.622643301199365122e-08,4.842769172685049239e-08,5.062895044170733355e-08,5.283020915656417472e-08,5.503146787142101588e-08,5.723272658627785705e-08,5.943398530113469821e-08,6.163524401599153938e-08,6.383650273084838716e-08,6.603776144570523494e-08,6.823902016056208272e-08,7.044027887541893050e-08,7.264153759027577829e-08,7.484279630513262607e-08,7.704405501998947385e-08,7.924531373484632163e-08,8.144657244970316942e-08,8.364783116456001720e-08,8.584908987941686498e-08,8.805034859427371276e-08,9.025160730913056054e-08,9.245286602398740833e-08,9.465412473884425611e-08,9.685538345370110389e-08,9.905664216855795167e-08,1.012579008834147995e-07,1.034591595982716472e-07,1.056604183131284950e-07,1.078616770279853428e-07,1.100629357428421906e-07,1.122641944576990384e-07,1.144654531725558861e-07,1.166667118874127339e-07,1.188679706022695817e-07,1.210692293171264295e-07,1.232704880319832640e-07,1.254717467468400986e-07,1.276730054616969331e-07,1.298742641765537677e-07,1.320755228914106022e-07,1.342767816062674368e-07,1.364780403211242713e-07,1.386792990359811059e-07 +0.000000000000000000e+00,3.394751885014230514e-09,6.789503770028461028e-09,1.018425565504269154e-08,1.357900754005692206e-08,1.697375942507115257e-08,2.036851131008538308e-08,2.376326319509961360e-08,2.715801508011384411e-08,3.055276696512807462e-08,3.394751885014230514e-08,3.734227073515653565e-08,4.073702262017076617e-08,4.413177450518499668e-08,4.752652639019922719e-08,5.092127827521345771e-08,5.431603016022768822e-08,5.771078204524191874e-08,6.110553393025614925e-08,6.450028581527037976e-08,6.789503770028461028e-08,7.128978958529884079e-08,7.468454147031307130e-08,7.807929335532730182e-08,8.147404524034153233e-08,8.486879712535576285e-08,8.826354901036999336e-08,9.165830089538422387e-08,9.505305278039845439e-08,9.844780466541268490e-08,1.018425565504269154e-07,1.052373084354411459e-07,1.086320603204553764e-07,1.120268122054696070e-07,1.154215640904838375e-07,1.188163159754980680e-07,1.222110678605122985e-07,1.256058197455265290e-07,1.290005716305407595e-07,1.323953235155549900e-07,1.357900754005692206e-07,1.391848272855834511e-07,1.425795791705976816e-07,1.459743310556119121e-07,1.493690829406261426e-07,1.527638348256403731e-07,1.561585867106546036e-07,1.595533385956688341e-07,1.629480904806830647e-07,1.663428423656972952e-07,1.697375942507115257e-07,1.731323461357257562e-07,1.765270980207399867e-07,1.799218499057542172e-07,1.833166017907684477e-07,1.867113536757826783e-07,1.901061055607969088e-07,1.935008574458111393e-07,1.968956093308253698e-07,2.002903612158396003e-07,2.036851131008538308e-07,2.070798649858680613e-07,2.104746168708822919e-07,2.138693687558965224e-07 +0.000000000000000000e+00,2.260547190845587562e-09,4.521094381691175124e-09,6.781641572536762272e-09,9.042188763382348593e-09,1.130273595422793491e-08,1.356328314507352124e-08,1.582383033591910756e-08,1.808437752676469388e-08,2.034492471761028020e-08,2.260547190845586652e-08,2.486601909930145284e-08,2.712656629014703916e-08,2.938711348099262548e-08,3.164766067183821511e-08,3.390820786268380474e-08,3.616875505352939437e-08,3.842930224437498400e-08,4.068984943522057363e-08,4.295039662606616326e-08,4.521094381691175289e-08,4.747149100775734252e-08,4.973203819860293215e-08,5.199258538944852178e-08,5.425313258029411141e-08,5.651367977113970104e-08,5.877422696198529067e-08,6.103477415283088692e-08,6.329532134367648316e-08,6.555586853452207941e-08,6.781641572536767566e-08,7.007696291621327191e-08,7.233751010705886815e-08,7.459805729790446440e-08,7.685860448875006065e-08,7.911915167959565689e-08,8.137969887044125314e-08,8.364024606128684939e-08,8.590079325213244564e-08,8.816134044297804188e-08,9.042188763382363813e-08,9.268243482466923438e-08,9.494298201551483062e-08,9.720352920636042687e-08,9.946407639720602312e-08,1.017246235880516194e-07,1.039851707788972156e-07,1.062457179697428119e-07,1.085062651605884081e-07,1.107668123514340044e-07,1.130273595422796006e-07,1.152879067331251968e-07,1.175484539239707931e-07,1.198090011148163893e-07,1.220695483056619856e-07,1.243300954965075818e-07,1.265906426873531781e-07,1.288511898781987743e-07,1.311117370690443706e-07,1.333722842598899668e-07,1.356328314507355631e-07,1.378933786415811593e-07,1.401539258324267556e-07,1.424144730232723518e-07 +0.000000000000000000e+00,2.201258714870972305e-09,4.402517429741944609e-09,6.603776144612916500e-09,8.805034859483887564e-09,1.100629357435485863e-08,1.320755228922582969e-08,1.540881100409679910e-08,1.761006971896776851e-08,1.981132843383873792e-08,2.201258714870970733e-08,2.421384586358067674e-08,2.641510457845164615e-08,2.861636329332261556e-08,3.081762200819358497e-08,3.301888072306455438e-08,3.522013943793552379e-08,3.742139815280649320e-08,3.962265686767746261e-08,4.182391558254843202e-08,4.402517429741940143e-08,4.622643301229037084e-08,4.842769172716134024e-08,5.062895044203230965e-08,5.283020915690327906e-08,5.503146787177424847e-08,5.723272658664521788e-08,5.943398530151618729e-08,6.163524401638715670e-08,6.383650273125812611e-08,6.603776144612909552e-08,6.823902016100006493e-08,7.044027887587103434e-08,7.264153759074200375e-08,7.484279630561297316e-08,7.704405502048394257e-08,7.924531373535491198e-08,8.144657245022588139e-08,8.364783116509685080e-08,8.584908987996782021e-08,8.805034859483878962e-08,9.025160730970975903e-08,9.245286602458072844e-08,9.465412473945169785e-08,9.685538345432266726e-08,9.905664216919363666e-08,1.012579008840646061e-07,1.034591595989355755e-07,1.056604183138065449e-07,1.078616770286775143e-07,1.100629357435484837e-07,1.122641944584194531e-07,1.144654531732904225e-07,1.166667118881613919e-07,1.188679706030323614e-07,1.210692293179033440e-07,1.232704880327743399e-07,1.254717467476453358e-07,1.276730054625163316e-07,1.298742641773873275e-07,1.320755228922583234e-07,1.342767816071293193e-07,1.364780403220003152e-07,1.386792990368713110e-07 +0.000000000000000000e+00,3.394751885027951786e-09,6.789503770055903572e-09,1.018425565508385536e-08,1.357900754011180714e-08,1.697375942513975893e-08,2.036851131016771071e-08,2.376326319519566250e-08,2.715801508022361429e-08,3.055276696525156938e-08,3.394751885027952448e-08,3.734227073530747957e-08,4.073702262033543466e-08,4.413177450536338976e-08,4.752652639039134485e-08,5.092127827541929995e-08,5.431603016044725504e-08,5.771078204547521014e-08,6.110553393050316523e-08,6.450028581553112033e-08,6.789503770055907542e-08,7.128978958558703052e-08,7.468454147061498561e-08,7.807929335564294070e-08,8.147404524067089580e-08,8.486879712569885089e-08,8.826354901072680599e-08,9.165830089575476108e-08,9.505305278078271618e-08,9.844780466581067127e-08,1.018425565508386264e-07,1.052373084358665815e-07,1.086320603208945366e-07,1.120268122059224917e-07,1.154215640909504467e-07,1.188163159759784018e-07,1.222110678610063569e-07,1.256058197460343253e-07,1.290005716310622936e-07,1.323953235160902619e-07,1.357900754011182303e-07,1.391848272861461986e-07,1.425795791711741669e-07,1.459743310562021352e-07,1.493690829412301036e-07,1.527638348262580719e-07,1.561585867112860402e-07,1.595533385963140086e-07,1.629480904813419769e-07,1.663428423663699452e-07,1.697375942513979135e-07,1.731323461364258819e-07,1.765270980214538502e-07,1.799218499064818185e-07,1.833166017915097869e-07,1.867113536765377552e-07,1.901061055615657235e-07,1.935008574465936919e-07,1.968956093316216602e-07,2.002903612166496285e-07,2.036851131016775968e-07,2.070798649867055652e-07,2.104746168717335335e-07,2.138693687567615018e-07 +0.000000000000000000e+00,2.657553701165744117e-09,5.315107402331488235e-09,7.972661103497232766e-09,1.063021480466297812e-08,1.328776850582872348e-08,1.594532220699446884e-08,1.860287590816021254e-08,2.126042960932595625e-08,2.391798331049169995e-08,2.657553701165744366e-08,2.923309071282318736e-08,3.189064441398893106e-08,3.454819811515467477e-08,3.720575181632041847e-08,3.986330551748616218e-08,4.252085921865190588e-08,4.517841291981764958e-08,4.783596662098339329e-08,5.049352032214913699e-08,5.315107402331488069e-08,5.580862772448062440e-08,5.846618142564636810e-08,6.112373512681211181e-08,6.378128882797784889e-08,6.643884252914358598e-08,6.909639623030932307e-08,7.175394993147506015e-08,7.441150363264079724e-08,7.706905733380653432e-08,7.972661103497227141e-08,8.238416473613800850e-08,8.504171843730374558e-08,8.769927213846948267e-08,9.035682583963521976e-08,9.301437954080095684e-08,9.567193324196669393e-08,9.832948694313243102e-08,1.009870406442981681e-07,1.036445943454639052e-07,1.063021480466296423e-07,1.089597017477953794e-07,1.116172554489611164e-07,1.142748091501268535e-07,1.169323628512925906e-07,1.195899165524583277e-07,1.222474702536240648e-07,1.249050239547898019e-07,1.275625776559555390e-07,1.302201313571212761e-07,1.328776850582870131e-07,1.355352387594527502e-07,1.381927924606184873e-07,1.408503461617842244e-07,1.435078998629499615e-07,1.461654535641156986e-07,1.488230072652814357e-07,1.514805609664471727e-07,1.541381146676129098e-07,1.567956683687786469e-07,1.594532220699443840e-07,1.621107757711101211e-07,1.647683294722758582e-07,1.674258831734415953e-07 +0.000000000000000000e+00,2.437179326302216217e-09,4.874358652604432435e-09,7.311537978906649066e-09,9.748717305208866524e-09,1.218589663151108398e-08,1.462307595781330144e-08,1.706025528411551724e-08,1.949743461041773305e-08,2.193461393671994885e-08,2.437179326302216465e-08,2.680897258932438046e-08,2.924615191562659626e-08,3.168333124192881207e-08,3.412051056823102787e-08,3.655768989453324367e-08,3.899486922083545948e-08,4.143204854713767528e-08,4.386922787343989108e-08,4.630640719974210689e-08,4.874358652604432269e-08,5.118076585234653850e-08,5.361794517864875430e-08,5.605512450495097010e-08,5.849230383125318591e-08,6.092948315755540171e-08,6.336666248385762413e-08,6.580384181015984655e-08,6.824102113646206897e-08,7.067820046276429140e-08,7.311537978906651382e-08,7.555255911536873624e-08,7.798973844167095866e-08,8.042691776797318108e-08,8.286409709427540350e-08,8.530127642057762592e-08,8.773845574687984834e-08,9.017563507318207077e-08,9.261281439948429319e-08,9.504999372578651561e-08,9.748717305208873803e-08,9.992435237839096045e-08,1.023615317046931829e-07,1.047987110309954053e-07,1.072358903572976277e-07,1.096730696835998501e-07,1.121102490099020726e-07,1.145474283362042950e-07,1.169846076625065174e-07,1.194217869888087531e-07,1.218589663151109887e-07,1.242961456414132244e-07,1.267333249677154600e-07,1.291705042940176957e-07,1.316076836203199313e-07,1.340448629466221670e-07,1.364820422729244026e-07,1.389192215992266383e-07,1.413564009255288740e-07,1.437935802518311096e-07,1.462307595781333453e-07,1.486679389044355809e-07,1.511051182307378166e-07,1.535422975570400522e-07 +0.000000000000000000e+00,3.932122449918078740e-09,7.864244899836157480e-09,1.179636734975423705e-08,1.572848979967231827e-08,1.966061224959039949e-08,2.359273469950848071e-08,2.752485714942656193e-08,3.145697959934464316e-08,3.538910204926272107e-08,3.932122449918079898e-08,4.325334694909887689e-08,4.718546939901695481e-08,5.111759184893503272e-08,5.504971429885311063e-08,5.898183674877118855e-08,6.291395919868927308e-08,6.684608164860735761e-08,7.077820409852544214e-08,7.471032654844352667e-08,7.864244899836161120e-08,8.257457144827969573e-08,8.650669389819778026e-08,9.043881634811586479e-08,9.437093879803394932e-08,9.830306124795203385e-08,1.022351836978701184e-07,1.061673061477882029e-07,1.100994285977062874e-07,1.140315510476243720e-07,1.179636734975424565e-07,1.218957959474605543e-07,1.258279183973786520e-07,1.297600408472967498e-07,1.336921632972148476e-07,1.376242857471329453e-07,1.415564081970510431e-07,1.454885306469691409e-07,1.494206530968872386e-07,1.533527755468053364e-07,1.572848979967234342e-07,1.612170204466415319e-07,1.651491428965596297e-07,1.690812653464777274e-07,1.730133877963958252e-07,1.769455102463139230e-07,1.808776326962320207e-07,1.848097551461501185e-07,1.887418775960682163e-07,1.926740000459863140e-07,1.966061224959044118e-07,2.005382449458225096e-07,2.044703673957406073e-07,2.084024898456587051e-07,2.123346122955768029e-07,2.162667347454949006e-07,2.201988571954129984e-07,2.241309796453310962e-07,2.280631020952491939e-07,2.319952245451672917e-07,2.359273469950853895e-07,2.398594694450034872e-07,2.437915918949215850e-07,2.477237143448396828e-07 +0.000000000000000000e+00,2.657553701178015342e-09,5.315107402356030684e-09,7.972661103534045612e-09,1.063021480471205971e-08,1.328776850589007381e-08,1.594532220706808792e-08,1.860287590824610036e-08,2.126042960942411281e-08,2.391798331060212526e-08,2.657553701178013770e-08,2.923309071295815015e-08,3.189064441413616260e-08,3.454819811531417504e-08,3.720575181649218749e-08,3.986330551767019994e-08,4.252085921884821238e-08,4.517841292002622483e-08,4.783596662120423728e-08,5.049352032238224972e-08,5.315107402356026217e-08,5.580862772473827462e-08,5.846618142591628706e-08,6.112373512709430613e-08,6.378128882827232519e-08,6.643884252945034425e-08,6.909639623062836332e-08,7.175394993180638238e-08,7.441150363298440145e-08,7.706905733416242051e-08,7.972661103534043958e-08,8.238416473651845864e-08,8.504171843769647770e-08,8.769927213887449677e-08,9.035682584005251583e-08,9.301437954123053490e-08,9.567193324240855396e-08,9.832948694358657302e-08,1.009870406447645921e-07,1.036445943459426112e-07,1.063021480471206302e-07,1.089597017482986493e-07,1.116172554494766683e-07,1.142748091506546874e-07,1.169323628518327065e-07,1.195899165530107255e-07,1.222474702541887446e-07,1.249050239553667637e-07,1.275625776565447827e-07,1.302201313577228018e-07,1.328776850589008209e-07,1.355352387600788399e-07,1.381927924612568590e-07,1.408503461624348781e-07,1.435078998636128971e-07,1.461654535647909162e-07,1.488230072659689352e-07,1.514805609671469543e-07,1.541381146683249734e-07,1.567956683695029924e-07,1.594532220706810115e-07,1.621107757718590306e-07,1.647683294730370496e-07,1.674258831742150687e-07 +0.000000000000000000e+00,2.437179326314961416e-09,4.874358652629922832e-09,7.311537978944884662e-09,9.748717305259847319e-09,1.218589663157480998e-08,1.462307595788977263e-08,1.706025528420473364e-08,1.949743461051969464e-08,2.193461393683465564e-08,2.437179326314961664e-08,2.680897258946457765e-08,2.924615191577953865e-08,3.168333124209449965e-08,3.412051056840946065e-08,3.655768989472442166e-08,3.899486922103938266e-08,4.143204854735434366e-08,4.386922787366930466e-08,4.630640719998426567e-08,4.874358652629922667e-08,5.118076585261418767e-08,5.361794517892914868e-08,5.605512450524410968e-08,5.849230383155907068e-08,6.092948315787403168e-08,6.336666248418899930e-08,6.580384181050396692e-08,6.824102113681893454e-08,7.067820046313390216e-08,7.311537978944886978e-08,7.555255911576383740e-08,7.798973844207880502e-08,8.042691776839377264e-08,8.286409709470874026e-08,8.530127642102370788e-08,8.773845574733867550e-08,9.017563507365364312e-08,9.261281439996861074e-08,9.504999372628357836e-08,9.748717305259854598e-08,9.992435237891351360e-08,1.023615317052284812e-07,1.047987110315434488e-07,1.072358903578584165e-07,1.096730696841733841e-07,1.121102490104883517e-07,1.145474283368033193e-07,1.169846076631182869e-07,1.194217869894332546e-07,1.218589663157482222e-07,1.242961456420631898e-07,1.267333249683781574e-07,1.291705042946931250e-07,1.316076836210080927e-07,1.340448629473230603e-07,1.364820422736380279e-07,1.389192215999529955e-07,1.413564009262679631e-07,1.437935802525829308e-07,1.462307595788978984e-07,1.486679389052128660e-07,1.511051182315278336e-07,1.535422975578428012e-07 +0.000000000000000000e+00,3.932122449930040599e-09,7.864244899860081198e-09,1.179636734979012180e-08,1.572848979972016240e-08,1.966061224965020465e-08,2.359273469958024690e-08,2.752485714951028916e-08,3.145697959944033141e-08,3.538910204937037366e-08,3.932122449930041592e-08,4.325334694923045817e-08,4.718546939916050042e-08,5.111759184909054268e-08,5.504971429902058493e-08,5.898183674895062718e-08,6.291395919888067605e-08,6.684608164881072492e-08,7.077820409874077379e-08,7.471032654867082266e-08,7.864244899860087154e-08,8.257457144853092041e-08,8.650669389846096928e-08,9.043881634839101815e-08,9.437093879832106702e-08,9.830306124825111589e-08,1.022351836981811648e-07,1.061673061481112136e-07,1.100994285980412625e-07,1.140315510479713114e-07,1.179636734979013602e-07,1.218957959478313959e-07,1.258279183977614315e-07,1.297600408476914672e-07,1.336921632976215028e-07,1.376242857475515384e-07,1.415564081974815741e-07,1.454885306474116097e-07,1.494206530973416453e-07,1.533527755472716810e-07,1.572848979972017166e-07,1.612170204471317522e-07,1.651491428970617879e-07,1.690812653469918235e-07,1.730133877969218591e-07,1.769455102468518948e-07,1.808776326967819304e-07,1.848097551467119661e-07,1.887418775966420017e-07,1.926740000465720373e-07,1.966061224965020730e-07,2.005382449464321086e-07,2.044703673963621442e-07,2.084024898462921799e-07,2.123346122962222155e-07,2.162667347461522511e-07,2.201988571960822868e-07,2.241309796460123224e-07,2.280631020959423580e-07,2.319952245458723937e-07,2.359273469958024293e-07,2.398594694457324650e-07,2.437915918956624741e-07,2.477237143455924833e-07 +0.000000000000000000e+00,3.087074258956674740e-09,6.174148517913349481e-09,9.261222776870024221e-09,1.234829703582669896e-08,1.543537129478337536e-08,1.852244555374005175e-08,2.160951981269672815e-08,2.469659407165340454e-08,2.778366833061008093e-08,3.087074258956675733e-08,3.395781684852343372e-08,3.704489110748011012e-08,4.013196536643678651e-08,4.321903962539346291e-08,4.630611388435013930e-08,4.939318814330681570e-08,5.248026240226349209e-08,5.556733666122016849e-08,5.865441092017684488e-08,6.174148517913352789e-08,6.482855943809021091e-08,6.791563369704689392e-08,7.100270795600357693e-08,7.408978221496025994e-08,7.717685647391694295e-08,8.026393073287362597e-08,8.335100499183030898e-08,8.643807925078699199e-08,8.952515350974367500e-08,9.261222776870035801e-08,9.569930202765704103e-08,9.878637628661372404e-08,1.018734505455704071e-07,1.049605248045270901e-07,1.080475990634837731e-07,1.111346733224404561e-07,1.142217475813971391e-07,1.173088218403538221e-07,1.203958960993105184e-07,1.234829703582672146e-07,1.265700446172239109e-07,1.296571188761806071e-07,1.327441931351373033e-07,1.358312673940939996e-07,1.389183416530506958e-07,1.420054159120073921e-07,1.450924901709640883e-07,1.481795644299207846e-07,1.512666386888774808e-07,1.543537129478341771e-07,1.574407872067908733e-07,1.605278614657475696e-07,1.636149357247042658e-07,1.667020099836609621e-07,1.697890842426176583e-07,1.728761585015743546e-07,1.759632327605310508e-07,1.790503070194877471e-07,1.821373812784444433e-07,1.852244555374011395e-07,1.883115297963578358e-07,1.913986040553145320e-07,1.944856783142712283e-07 +0.000000000000000000e+00,2.880911006491231242e-09,5.761822012982462484e-09,8.642733019473693726e-09,1.152364402596492497e-08,1.440455503245615621e-08,1.728546603894738745e-08,2.016637704543862035e-08,2.304728805192985325e-08,2.592819905842108614e-08,2.880911006491231904e-08,3.169002107140355193e-08,3.457093207789478152e-08,3.745184308438601111e-08,4.033275409087724070e-08,4.321366509736847029e-08,4.609457610385969987e-08,4.897548711035092946e-08,5.185639811684215905e-08,5.473730912333338864e-08,5.761822012982461822e-08,6.049913113631584781e-08,6.338004214280707740e-08,6.626095314929830699e-08,6.914186415578953658e-08,7.202277516228076616e-08,7.490368616877199575e-08,7.778459717526322534e-08,8.066550818175445493e-08,8.354641918824568451e-08,8.642733019473691410e-08,8.930824120122814369e-08,9.218915220771937328e-08,9.507006321421060287e-08,9.795097422070183245e-08,1.008318852271930620e-07,1.037127962336842916e-07,1.065937072401755212e-07,1.094746182466667508e-07,1.123555292531579804e-07,1.152364402596492100e-07,1.181173512661404396e-07,1.209982622726316692e-07,1.238791732791229120e-07,1.267600842856141548e-07,1.296409952921053976e-07,1.325219062985966404e-07,1.354028173050878833e-07,1.382837283115791261e-07,1.411646393180703689e-07,1.440455503245616117e-07,1.469264613310528546e-07,1.498073723375440974e-07,1.526882833440353402e-07,1.555691943505265830e-07,1.584501053570178258e-07,1.613310163635090687e-07,1.642119273700003115e-07,1.670928383764915543e-07,1.699737493829827971e-07,1.728546603894740400e-07,1.757355713959652828e-07,1.786164824024565256e-07,1.814973934089477684e-07 +0.000000000000000000e+00,4.463654782176356633e-09,8.927309564352713266e-09,1.339096434652906907e-08,1.785461912870542322e-08,2.231827391088177738e-08,2.678192869305813153e-08,3.124558347523448899e-08,3.570923825741084645e-08,4.017289303958720391e-08,4.463654782176356137e-08,4.910020260393991883e-08,5.356385738611627629e-08,5.802751216829263375e-08,6.249116695046899121e-08,6.695482173264534867e-08,7.141847651482170613e-08,7.588213129699806359e-08,8.034578607917442105e-08,8.480944086135077851e-08,8.927309564352713597e-08,9.373675042570349343e-08,9.820040520787985089e-08,1.026640599900562084e-07,1.071277147722325658e-07,1.115913695544089233e-07,1.160550243365852807e-07,1.205186791187616382e-07,1.249823339009380089e-07,1.294459886831143796e-07,1.339096434652907503e-07,1.383732982474671210e-07,1.428369530296434917e-07,1.473006078118198624e-07,1.517642625939962331e-07,1.562279173761726038e-07,1.606915721583489744e-07,1.651552269405253451e-07,1.696188817227017158e-07,1.740825365048780865e-07,1.785461912870544572e-07,1.830098460692308279e-07,1.874735008514071986e-07,1.919371556335835693e-07,1.964008104157599400e-07,2.008644651979363107e-07,2.053281199801126814e-07,2.097917747622890521e-07,2.142554295444654228e-07,2.187190843266417935e-07,2.231827391088181642e-07,2.276463938909945349e-07,2.321100486731709056e-07,2.365737034553472763e-07,2.410373582375236470e-07,2.455010130197000177e-07,2.499646678018763884e-07,2.544283225840527590e-07,2.588919773662291297e-07,2.633556321484055004e-07,2.678192869305818711e-07,2.722829417127582418e-07,2.767465964949346125e-07,2.812102512771109832e-07 +0.000000000000000000e+00,3.087074258967321796e-09,6.174148517934643591e-09,9.261222776901964973e-09,1.234829703586928553e-08,1.543537129483660608e-08,1.852244555380392664e-08,2.160951981277124719e-08,2.469659407173856775e-08,2.778366833070588830e-08,3.087074258967321217e-08,3.395781684864053603e-08,3.704489110760785989e-08,4.013196536657518376e-08,4.321903962554250762e-08,4.630611388450983148e-08,4.939318814347715535e-08,5.248026240244447921e-08,5.556733666141180307e-08,5.865441092037912694e-08,6.174148517934645080e-08,6.482855943831377466e-08,6.791563369728109853e-08,7.100270795624842239e-08,7.408978221521574625e-08,7.717685647418307012e-08,8.026393073315039398e-08,8.335100499211771785e-08,8.643807925108504171e-08,8.952515351005236557e-08,9.261222776901968944e-08,9.569930202798701330e-08,9.878637628695433716e-08,1.018734505459216610e-07,1.049605248048889849e-07,1.080475990638563088e-07,1.111346733228236326e-07,1.142217475817909565e-07,1.173088218407582803e-07,1.203958960997256174e-07,1.234829703586929545e-07,1.265700446176602916e-07,1.296571188766276287e-07,1.327441931355949658e-07,1.358312673945623029e-07,1.389183416535296400e-07,1.420054159124969771e-07,1.450924901714643142e-07,1.481795644304316513e-07,1.512666386893989884e-07,1.543537129483663255e-07,1.574407872073336626e-07,1.605278614663009997e-07,1.636149357252683368e-07,1.667020099842356739e-07,1.697890842432030110e-07,1.728761585021703481e-07,1.759632327611376852e-07,1.790503070201050223e-07,1.821373812790723594e-07,1.852244555380396965e-07,1.883115297970070336e-07,1.913986040559743707e-07,1.944856783149417078e-07 +0.000000000000000000e+00,2.880911006502830382e-09,5.761822013005660764e-09,8.642733019508491560e-09,1.152364402601132318e-08,1.440455503251415481e-08,1.728546603901698643e-08,2.016637704551981640e-08,2.304728805202264637e-08,2.592819905852547634e-08,2.880911006502830630e-08,3.169002107153113627e-08,3.457093207803396624e-08,3.745184308453679621e-08,4.033275409103962618e-08,4.321366509754245615e-08,4.609457610404528612e-08,4.897548711054811608e-08,5.185639811705094605e-08,5.473730912355377602e-08,5.761822013005660599e-08,6.049913113655943596e-08,6.338004214306227255e-08,6.626095314956510913e-08,6.914186415606794572e-08,7.202277516257078230e-08,7.490368616907361889e-08,7.778459717557645548e-08,8.066550818207929206e-08,8.354641918858212865e-08,8.642733019508496523e-08,8.930824120158780182e-08,9.218915220809063841e-08,9.507006321459347499e-08,9.795097422109631158e-08,1.008318852275991482e-07,1.037127962341019848e-07,1.065937072406048213e-07,1.094746182471076579e-07,1.123555292536104945e-07,1.152364402601133311e-07,1.181173512666161677e-07,1.209982622731190043e-07,1.238791732796218409e-07,1.267600842861246774e-07,1.296409952926275140e-07,1.325219062991303506e-07,1.354028173056331872e-07,1.382837283121360238e-07,1.411646393186388604e-07,1.440455503251416970e-07,1.469264613316445335e-07,1.498073723381473701e-07,1.526882833446502067e-07,1.555691943511530433e-07,1.584501053576558799e-07,1.613310163641587165e-07,1.642119273706615531e-07,1.670928383771643896e-07,1.699737493836672262e-07,1.728546603901700628e-07,1.757355713966728994e-07,1.786164824031757360e-07,1.814973934096785726e-07 +0.000000000000000000e+00,4.463654782185756714e-09,8.927309564371513427e-09,1.339096434655726931e-08,1.785461912874302355e-08,2.231827391092877778e-08,2.678192869311453201e-08,3.124558347530028624e-08,3.570923825748604047e-08,4.017289303967179471e-08,4.463654782185754894e-08,4.910020260404330317e-08,5.356385738622905740e-08,5.802751216841481163e-08,6.249116695060055925e-08,6.695482173278630025e-08,7.141847651497204124e-08,7.588213129715778224e-08,8.034578607934352324e-08,8.480944086152926423e-08,8.927309564371500523e-08,9.373675042590074623e-08,9.820040520808648722e-08,1.026640599902722282e-07,1.071277147724579692e-07,1.115913695546437102e-07,1.160550243368294512e-07,1.205186791190151922e-07,1.249823339012009332e-07,1.294459886833866742e-07,1.339096434655724152e-07,1.383732982477581562e-07,1.428369530299438972e-07,1.473006078121296382e-07,1.517642625943153792e-07,1.562279173765011202e-07,1.606915721586868612e-07,1.651552269408726022e-07,1.696188817230583432e-07,1.740825365052440842e-07,1.785461912874298252e-07,1.830098460696155662e-07,1.874735008518013072e-07,1.919371556339870482e-07,1.964008104161727892e-07,2.008644651983585302e-07,2.053281199805442712e-07,2.097917747627300122e-07,2.142554295449157531e-07,2.187190843271014941e-07,2.231827391092872351e-07,2.276463938914729761e-07,2.321100486736587171e-07,2.365737034558444581e-07,2.410373582380302256e-07,2.455010130202160195e-07,2.499646678024018135e-07,2.544283225845876074e-07,2.588919773667734013e-07,2.633556321489591953e-07,2.678192869311449892e-07,2.722829417133307832e-07,2.767465964955165771e-07,2.812102512777023710e-07 +0.000000000000000000e+00,3.405814428568692095e-09,6.811628857137384190e-09,1.021744328570607628e-08,1.362325771427476838e-08,1.702907214284346047e-08,2.043488657141215257e-08,2.384070099998084466e-08,2.724651542854953676e-08,3.065232985711822885e-08,3.405814428568692095e-08,3.746395871425561304e-08,4.086977314282430514e-08,4.427558757139299723e-08,4.768140199996168933e-08,5.108721642853038142e-08,5.449303085709907352e-08,5.789884528566776561e-08,6.130465971423645771e-08,6.471047414280514980e-08,6.811628857137384190e-08,7.152210299994253399e-08,7.492791742851122609e-08,7.833373185707991818e-08,8.173954628564861028e-08,8.514536071421730237e-08,8.855117514278599447e-08,9.195698957135468656e-08,9.536280399992337866e-08,9.876861842849207075e-08,1.021744328570607628e-07,1.055802472856294549e-07,1.089860617141981470e-07,1.123918761427668391e-07,1.157976905713355312e-07,1.192035049999042233e-07,1.226093194284729154e-07,1.260151338570416075e-07,1.294209482856102996e-07,1.328267627141789917e-07,1.362325771427476838e-07,1.396383915713163759e-07,1.430442059998850680e-07,1.464500204284537601e-07,1.498558348570224522e-07,1.532616492855911443e-07,1.566674637141598364e-07,1.600732781427285285e-07,1.634790925712972206e-07,1.668849069998659126e-07,1.702907214284346047e-07,1.736965358570032968e-07,1.771023502855719889e-07,1.805081647141406810e-07,1.839139791427093731e-07,1.873197935712780652e-07,1.907256079998467573e-07,1.941314224284154494e-07,1.975372368569841415e-07,2.009430512855528336e-07,2.043488657141215257e-07,2.077546801426902178e-07,2.111604945712589099e-07,2.145663089998276020e-07 +0.000000000000000000e+00,3.264382716976042717e-09,6.528765433952085434e-09,9.793148150928128564e-09,1.305753086790417252e-08,1.632191358488021482e-08,1.958629630185625713e-08,2.285067901883229943e-08,2.611506173580834173e-08,2.937944445278438404e-08,3.264382716976042965e-08,3.590820988673647526e-08,3.917259260371252087e-08,4.243697532068856648e-08,4.570135803766461210e-08,4.896574075464065771e-08,5.223012347161670332e-08,5.549450618859274893e-08,5.875888890556879454e-08,6.202327162254484016e-08,6.528765433952088577e-08,6.855203705649693138e-08,7.181641977347297699e-08,7.508080249044902260e-08,7.834518520742506822e-08,8.160956792440111383e-08,8.487395064137715944e-08,8.813833335835320505e-08,9.140271607532925066e-08,9.466709879230529628e-08,9.793148150928134189e-08,1.011958642262573875e-07,1.044602469432334331e-07,1.077246296602094787e-07,1.109890123771855243e-07,1.142533950941615699e-07,1.175177778111376156e-07,1.207821605281136612e-07,1.240465432450897068e-07,1.273109259620657524e-07,1.305753086790417980e-07,1.338396913960178436e-07,1.371040741129938892e-07,1.403684568299699348e-07,1.436328395469459805e-07,1.468972222639220261e-07,1.501616049808980717e-07,1.534259876978741173e-07,1.566903704148501629e-07,1.599547531318262085e-07,1.632191358488022541e-07,1.664835185657782997e-07,1.697479012827543453e-07,1.730122839997303910e-07,1.762766667167064366e-07,1.795410494336824822e-07,1.828054321506585278e-07,1.860698148676345734e-07,1.893341975846106190e-07,1.925985803015866646e-07,1.958629630185627102e-07,1.991273457355387559e-07,2.023917284525148015e-07,2.056561111694908471e-07 +0.000000000000000000e+00,4.852258596291353840e-09,9.704517192582707680e-09,1.455677578887406069e-08,1.940903438516541205e-08,2.426129298145676341e-08,2.911355157774811477e-08,3.396581017403946282e-08,3.881806877033081087e-08,4.367032736662215892e-08,4.852258596291350697e-08,5.337484455920485502e-08,5.822710315549620307e-08,6.307936175178755111e-08,6.793162034807889916e-08,7.278387894437024721e-08,7.763613754066159526e-08,8.248839613695294331e-08,8.734065473324429136e-08,9.219291332953563941e-08,9.704517192582698746e-08,1.018974305221183355e-07,1.067496891184096836e-07,1.116019477147010316e-07,1.164542063109923797e-07,1.213064649072837277e-07,1.261587235035750758e-07,1.310109820998664238e-07,1.358632406961577719e-07,1.407154992924491199e-07,1.455677578887404680e-07,1.504200164850318160e-07,1.552722750813231641e-07,1.601245336776145121e-07,1.649767922739058602e-07,1.698290508701972082e-07,1.746813094664885563e-07,1.795335680627799043e-07,1.843858266590712524e-07,1.892380852553626004e-07,1.940903438516539485e-07,1.989426024479452965e-07,2.037948610442366446e-07,2.086471196405279926e-07,2.134993782368193407e-07,2.183516368331106887e-07,2.232038954294020368e-07,2.280561540256933848e-07,2.329084126219847329e-07,2.377606712182760809e-07,2.426129298145674554e-07,2.474651884108588299e-07,2.523174470071502045e-07,2.571697056034415790e-07,2.620219641997329535e-07,2.668742227960243280e-07,2.717264813923157025e-07,2.765787399886070771e-07,2.814309985848984516e-07,2.862832571811898261e-07,2.911355157774812006e-07,2.959877743737725751e-07,3.008400329700639497e-07,3.056922915663553242e-07 +0.000000000000000000e+00,3.405814428576672320e-09,6.811628857153344640e-09,1.021744328573001655e-08,1.362325771430668763e-08,1.702907214288335705e-08,2.043488657146002647e-08,2.384070100003669590e-08,2.724651542861336532e-08,3.065232985719003475e-08,3.405814428576670086e-08,3.746395871434336698e-08,4.086977314292003310e-08,4.427558757149669921e-08,4.768140200007336533e-08,5.108721642865003144e-08,5.449303085722669756e-08,5.789884528580336368e-08,6.130465971438002979e-08,6.471047414295668929e-08,6.811628857153334879e-08,7.152210300011000829e-08,7.492791742868666779e-08,7.833373185726332729e-08,8.173954628583998678e-08,8.514536071441664628e-08,8.855117514299330578e-08,9.195698957156996528e-08,9.536280400014662478e-08,9.876861842872328428e-08,1.021744328572999438e-07,1.055802472858766033e-07,1.089860617144532628e-07,1.123918761430299223e-07,1.157976905716065818e-07,1.192035050001832413e-07,1.226093194287599008e-07,1.260151338573365603e-07,1.294209482859132198e-07,1.328267627144898793e-07,1.362325771430665388e-07,1.396383915716431983e-07,1.430442060002198578e-07,1.464500204287965173e-07,1.498558348573731768e-07,1.532616492859498363e-07,1.566674637145264958e-07,1.600732781431031553e-07,1.634790925716798147e-07,1.668849070002564742e-07,1.702907214288331337e-07,1.736965358574097932e-07,1.771023502859864527e-07,1.805081647145631122e-07,1.839139791431397717e-07,1.873197935717164312e-07,1.907256080002930907e-07,1.941314224288697502e-07,1.975372368574464097e-07,2.009430512860230692e-07,2.043488657145997287e-07,2.077546801431763882e-07,2.111604945717530477e-07,2.145663090003297072e-07 +0.000000000000000000e+00,3.264382716985464718e-09,6.528765433970929435e-09,9.793148150956393325e-09,1.305753086794185722e-08,1.632191358492732111e-08,1.958629630191278665e-08,2.285067901889825220e-08,2.611506173588371774e-08,2.937944445286918328e-08,3.264382716985464883e-08,3.590820988684011768e-08,3.917259260382558654e-08,4.243697532081105539e-08,4.570135803779652424e-08,4.896574075478199310e-08,5.223012347176746195e-08,5.549450618875293080e-08,5.875888890573839966e-08,6.202327162272386851e-08,6.528765433970933736e-08,6.855203705669480622e-08,7.181641977368027507e-08,7.508080249066574392e-08,7.834518520765121278e-08,8.160956792463668163e-08,8.487395064162215048e-08,8.813833335860761934e-08,9.140271607559308819e-08,9.466709879257855704e-08,9.793148150956402590e-08,1.011958642265494948e-07,1.044602469435349636e-07,1.077246296605204325e-07,1.109890123775059013e-07,1.142533950944913702e-07,1.175177778114768390e-07,1.207821605284623211e-07,1.240465432454478164e-07,1.273109259624333118e-07,1.305753086794188071e-07,1.338396913964043024e-07,1.371040741133897977e-07,1.403684568303752930e-07,1.436328395473607884e-07,1.468972222643462837e-07,1.501616049813317790e-07,1.534259876983172743e-07,1.566903704153027697e-07,1.599547531322882650e-07,1.632191358492737603e-07,1.664835185662592556e-07,1.697479012832447510e-07,1.730122840002302463e-07,1.762766667172157416e-07,1.795410494342012369e-07,1.828054321511867322e-07,1.860698148681722276e-07,1.893341975851577229e-07,1.925985803021432182e-07,1.958629630191287135e-07,1.991273457361142089e-07,2.023917284530997042e-07,2.056561111700851995e-07 +0.000000000000000000e+00,4.852258596297590782e-09,9.704517192595181563e-09,1.455677578889277152e-08,1.940903438519035982e-08,2.426129298148794812e-08,2.911355157778553642e-08,3.396581017408312472e-08,3.881806877038071302e-08,4.367032736667830132e-08,4.852258596297588962e-08,5.337484455927347792e-08,5.822710315557106622e-08,6.307936175186865452e-08,6.793162034816624944e-08,7.278387894446384435e-08,7.763613754076143927e-08,8.248839613705903419e-08,8.734065473335662911e-08,9.219291332965422403e-08,9.704517192595181894e-08,1.018974305222494139e-07,1.067496891185470088e-07,1.116019477148446037e-07,1.164542063111421986e-07,1.213064649074397935e-07,1.261587235037373884e-07,1.310109821000349834e-07,1.358632406963325783e-07,1.407154992926301732e-07,1.455677578889277681e-07,1.504200164852253630e-07,1.552722750815229580e-07,1.601245336778205529e-07,1.649767922741181478e-07,1.698290508704157427e-07,1.746813094667133376e-07,1.795335680630109325e-07,1.843858266593085275e-07,1.892380852556061224e-07,1.940903438519037173e-07,1.989426024482013122e-07,2.037948610444989071e-07,2.086471196407965020e-07,2.134993782370940970e-07,2.183516368333916919e-07,2.232038954296892868e-07,2.280561540259868817e-07,2.329084126222844766e-07,2.377606712185820716e-07,2.426129298148796929e-07,2.474651884111773143e-07,2.523174470074749357e-07,2.571697056037725571e-07,2.620219642000701785e-07,2.668742227963677999e-07,2.717264813926654213e-07,2.765787399889630427e-07,2.814309985852606640e-07,2.862832571815582854e-07,2.911355157778559068e-07,2.959877743741535282e-07,3.008400329704511496e-07,3.056922915667487710e-07 +0.000000000000000000e+00,3.569528177309969705e-09,7.139056354619939410e-09,1.070858453192990953e-08,1.427811270923988047e-08,1.784764088654985307e-08,2.141716906385982567e-08,2.498669724116979827e-08,2.855622541847977087e-08,3.212575359578974347e-08,3.569528177309971938e-08,3.926480995040969529e-08,4.283433812771967120e-08,4.640386630502964711e-08,4.997339448233962302e-08,5.354292265964959893e-08,5.711245083695957483e-08,6.068197901426955736e-08,6.425150719157953989e-08,6.782103536888952241e-08,7.139056354619950494e-08,7.496009172350948747e-08,7.852961990081946999e-08,8.209914807812945252e-08,8.566867625543943504e-08,8.923820443274941757e-08,9.280773261005940010e-08,9.637726078736938262e-08,9.994678896467936515e-08,1.035163171419893477e-07,1.070858453192993302e-07,1.106553734966093127e-07,1.142249016739192953e-07,1.177944298512292778e-07,1.213639580285392735e-07,1.249334862058492693e-07,1.285030143831592651e-07,1.320725425604692608e-07,1.356420707377792566e-07,1.392115989150892523e-07,1.427811270923992481e-07,1.463506552697092439e-07,1.499201834470192396e-07,1.534897116243292354e-07,1.570592398016392312e-07,1.606287679789492269e-07,1.641982961562592227e-07,1.677678243335692184e-07,1.713373525108792142e-07,1.749068806881892100e-07,1.784764088654992057e-07,1.820459370428092015e-07,1.856154652201191972e-07,1.891849933974291930e-07,1.927545215747391888e-07,1.963240497520491845e-07,1.998935779293591803e-07,2.034631061066691760e-07,2.070326342839791718e-07,2.106021624612891676e-07,2.141716906385991633e-07,2.177412188159091591e-07,2.213107469932191548e-07,2.248802751705291506e-07 +0.000000000000000000e+00,3.509030496008567737e-09,7.018060992017135474e-09,1.052709148802570362e-08,1.403612198403427260e-08,1.754515248004284158e-08,2.105418297605141056e-08,2.456321347205997953e-08,2.807224396806854851e-08,3.158127446407712080e-08,3.509030496008568978e-08,3.859933545609425875e-08,4.210836595210282773e-08,4.561739644811139671e-08,4.912642694411996569e-08,5.263545744012853466e-08,5.614448793613710364e-08,5.965351843214567262e-08,6.316254892815424160e-08,6.667157942416281057e-08,7.018060992017137955e-08,7.368964041617994853e-08,7.719867091218851751e-08,8.070770140819708648e-08,8.421673190420565546e-08,8.772576240021422444e-08,9.123479289622279342e-08,9.474382339223136239e-08,9.825285388823993137e-08,1.017618843842485003e-07,1.052709148802570693e-07,1.087799453762656383e-07,1.122889758722742073e-07,1.157980063682827763e-07,1.193070368642913452e-07,1.228160673602999274e-07,1.263250978563085097e-07,1.298341283523170919e-07,1.333431588483256741e-07,1.368521893443342563e-07,1.403612198403428385e-07,1.438702503363514207e-07,1.473792808323600029e-07,1.508883113283685851e-07,1.543973418243771674e-07,1.579063723203857496e-07,1.614154028163943318e-07,1.649244333124029140e-07,1.684334638084114962e-07,1.719424943044200784e-07,1.754515248004286606e-07,1.789605552964372428e-07,1.824695857924458251e-07,1.859786162884544073e-07,1.894876467844629895e-07,1.929966772804715717e-07,1.965057077764801539e-07,2.000147382724887361e-07,2.035237687684973183e-07,2.070327992645059005e-07,2.105418297605144828e-07,2.140508602565230650e-07,2.175598907525316472e-07,2.210689212485402294e-07 +0.000000000000000000e+00,5.062080754755794891e-09,1.012416150951158978e-08,1.518624226426738302e-08,2.024832301902317625e-08,2.531040377377896949e-08,3.037248452853476604e-08,3.543456528329056258e-08,4.049664603804635913e-08,4.555872679280215567e-08,5.062080754755795222e-08,5.568288830231374876e-08,6.074496905706954531e-08,6.580704981182534185e-08,7.086913056658113840e-08,7.593121132133693494e-08,8.099329207609273149e-08,8.605537283084852803e-08,9.111745358560432458e-08,9.617953434036012112e-08,1.012416150951159177e-07,1.063036958498717142e-07,1.113657766046275108e-07,1.164278573593833073e-07,1.214899381141391171e-07,1.265520188688949136e-07,1.316140996236507102e-07,1.366761803784065067e-07,1.417382611331623033e-07,1.468003418879180998e-07,1.518624226426738964e-07,1.569245033974296929e-07,1.619865841521854894e-07,1.670486649069412860e-07,1.721107456616970825e-07,1.771728264164528791e-07,1.822349071712086756e-07,1.872969879259644722e-07,1.923590686807202687e-07,1.974211494354760653e-07,2.024832301902318618e-07,2.075453109449876584e-07,2.126073916997434549e-07,2.176694724544992514e-07,2.227315532092550480e-07,2.277936339640108445e-07,2.328557147187666411e-07,2.379177954735224376e-07,2.429798762282782342e-07,2.480419569830340307e-07,2.531040377377898273e-07,2.581661184925456238e-07,2.632281992473014204e-07,2.682902800020572169e-07,2.733523607568130134e-07,2.784144415115688100e-07,2.834765222663246065e-07,2.885386030210804031e-07,2.936006837758361996e-07,2.986627645305919962e-07,3.037248452853477927e-07,3.087869260401035893e-07,3.138490067948593858e-07,3.189110875496151823e-07 +0.000000000000000000e+00,3.569528177314917486e-09,7.139056354629834971e-09,1.070858453194475246e-08,1.427811270925966994e-08,1.784764088657458908e-08,2.141716906388950822e-08,2.498669724120442736e-08,2.855622541851934650e-08,3.212575359583426564e-08,3.569528177314918478e-08,3.926480995046410392e-08,4.283433812777902306e-08,4.640386630509394220e-08,4.997339448240886134e-08,5.354292265972378048e-08,5.711245083703869962e-08,6.068197901435362538e-08,6.425150719166854452e-08,6.782103536898346366e-08,7.139056354629838280e-08,7.496009172361330194e-08,7.852961990092822108e-08,8.209914807824314022e-08,8.566867625555805936e-08,8.923820443287297850e-08,9.280773261018789764e-08,9.637726078750281678e-08,9.994678896481773592e-08,1.035163171421326551e-07,1.070858453194475742e-07,1.106553734967624933e-07,1.142249016740774125e-07,1.177944298513923316e-07,1.213639580287072508e-07,1.249334862060221699e-07,1.285030143833370890e-07,1.320725425606520082e-07,1.356420707379669273e-07,1.392115989152818465e-07,1.427811270925967656e-07,1.463506552699116847e-07,1.499201834472266039e-07,1.534897116245415230e-07,1.570592398018564422e-07,1.606287679791713613e-07,1.641982961564862804e-07,1.677678243338011996e-07,1.713373525111161187e-07,1.749068806884310379e-07,1.784764088657459570e-07,1.820459370430608761e-07,1.856154652203757953e-07,1.891849933976907144e-07,1.927545215750056336e-07,1.963240497523205527e-07,1.998935779296354718e-07,2.034631061069503910e-07,2.070326342842653101e-07,2.106021624615802293e-07,2.141716906388951484e-07,2.177412188162100675e-07,2.213107469935249867e-07,2.248802751708399058e-07 +0.000000000000000000e+00,3.509030496015083025e-09,7.018060992030166050e-09,1.052709148804524825e-08,1.403612198406033045e-08,1.754515248007541264e-08,2.105418297609049649e-08,2.456321347210558035e-08,2.807224396812066420e-08,3.158127446413575136e-08,3.509030496015083852e-08,3.859933545616592568e-08,4.210836595218101284e-08,4.561739644819610000e-08,4.912642694421118716e-08,5.263545744022627432e-08,5.614448793624136149e-08,5.965351843225644865e-08,6.316254892827152919e-08,6.667157942428660973e-08,7.018060992030169028e-08,7.368964041631677082e-08,7.719867091233185136e-08,8.070770140834693191e-08,8.421673190436201245e-08,8.772576240037709299e-08,9.123479289639217354e-08,9.474382339240725408e-08,9.825285388842233462e-08,1.017618843844374152e-07,1.052709148804524957e-07,1.087799453764675763e-07,1.122889758724826568e-07,1.157980063684977373e-07,1.193070368645128179e-07,1.228160673605278852e-07,1.263250978565429525e-07,1.298341283525580198e-07,1.333431588485730871e-07,1.368521893445881544e-07,1.403612198406032217e-07,1.438702503366182890e-07,1.473792808326333564e-07,1.508883113286484237e-07,1.543973418246634910e-07,1.579063723206785583e-07,1.614154028166936256e-07,1.649244333127086929e-07,1.684334638087237602e-07,1.719424943047388275e-07,1.754515248007538948e-07,1.789605552967689621e-07,1.824695857927840294e-07,1.859786162887990967e-07,1.894876467848141641e-07,1.929966772808292314e-07,1.965057077768442987e-07,2.000147382728593660e-07,2.035237687688744333e-07,2.070327992648895006e-07,2.105418297609045679e-07,2.140508602569196352e-07,2.175598907529347025e-07,2.210689212489497698e-07 +0.000000000000000000e+00,5.062080754759205357e-09,1.012416150951841071e-08,1.518624226427761690e-08,2.024832301903682473e-08,2.531040377379603257e-08,3.037248452855524041e-08,3.543456528331445156e-08,4.049664603807366270e-08,4.555872679283287385e-08,5.062080754759208500e-08,5.568288830235129614e-08,6.074496905711050729e-08,6.580704981186971844e-08,7.086913056662892959e-08,7.593121132138814073e-08,8.099329207614735188e-08,8.605537283090656303e-08,9.111745358566577417e-08,9.617953434042498532e-08,1.012416150951841965e-07,1.063036958499434076e-07,1.113657766047026188e-07,1.164278573594618299e-07,1.214899381142210411e-07,1.265520188689802522e-07,1.316140996237394633e-07,1.366761803784986745e-07,1.417382611332578856e-07,1.468003418880170968e-07,1.518624226427763079e-07,1.569245033975355191e-07,1.619865841522947302e-07,1.670486649070539414e-07,1.721107456618131525e-07,1.771728264165723637e-07,1.822349071713315748e-07,1.872969879260907860e-07,1.923590686808499971e-07,1.974211494356092083e-07,2.024832301903684194e-07,2.075453109451276305e-07,2.126073916998868417e-07,2.176694724546460528e-07,2.227315532094052640e-07,2.277936339641644751e-07,2.328557147189236863e-07,2.379177954736828974e-07,2.429798762284421350e-07,2.480419569832013727e-07,2.531040377379606103e-07,2.581661184927198479e-07,2.632281992474790855e-07,2.682902800022383231e-07,2.733523607569975607e-07,2.784144415117567984e-07,2.834765222665160360e-07,2.885386030212752736e-07,2.936006837760345112e-07,2.986627645307937488e-07,3.037248452855529864e-07,3.087869260403122241e-07,3.138490067950714617e-07,3.189110875498306993e-07 +0.000000000000000000e+00,3.560759658734108589e-09,7.121519317468217179e-09,1.068227897620232535e-08,1.424303863493643270e-08,1.780379829367053840e-08,2.136455795240464409e-08,2.492531761113874979e-08,2.848607726987285548e-08,3.204683692860696117e-08,3.560759658734106356e-08,3.916835624607516595e-08,4.272911590480926833e-08,4.628987556354337072e-08,4.985063522227747310e-08,5.341139488101157549e-08,5.697215453974567787e-08,6.053291419847978688e-08,6.409367385721389588e-08,6.765443351594800488e-08,7.121519317468211388e-08,7.477595283341622289e-08,7.833671249215033189e-08,8.189747215088444089e-08,8.545823180961854990e-08,8.901899146835265890e-08,9.257975112708676790e-08,9.614051078582087691e-08,9.970127044455498591e-08,1.032620301032890949e-07,1.068227897620232039e-07,1.103835494207573129e-07,1.139443090794914219e-07,1.175050687382255309e-07,1.210658283969596267e-07,1.246265880556937225e-07,1.281873477144278182e-07,1.317481073731619140e-07,1.353088670318960098e-07,1.388696266906301055e-07,1.424303863493642013e-07,1.459911460080982971e-07,1.495519056668323928e-07,1.531126653255664886e-07,1.566734249843005844e-07,1.602341846430346801e-07,1.637949443017687759e-07,1.673557039605028717e-07,1.709164636192369674e-07,1.744772232779710632e-07,1.780379829367051590e-07,1.815987425954392547e-07,1.851595022541733505e-07,1.887202619129074463e-07,1.922810215716415421e-07,1.958417812303756378e-07,1.994025408891097336e-07,2.029633005478438294e-07,2.065240602065779251e-07,2.100848198653120209e-07,2.136455795240461167e-07,2.172063391827802124e-07,2.207670988415143082e-07,2.243278585002484040e-07 +0.000000000000000000e+00,3.588419072631549072e-09,7.176838145263098144e-09,1.076525721789464639e-08,1.435367629052619463e-08,1.794209536315774288e-08,2.153051443578929278e-08,2.511893350842084268e-08,2.870735258105239257e-08,3.229577165368394247e-08,3.588419072631549237e-08,3.947260979894704227e-08,4.306102887157859217e-08,4.664944794421014207e-08,5.023786701684169197e-08,5.382628608947324187e-08,5.741470516210479177e-08,6.100312423473634167e-08,6.459154330736788495e-08,6.817996237999942823e-08,7.176838145263097151e-08,7.535680052526251479e-08,7.894521959789405807e-08,8.253363867052560135e-08,8.612205774315714464e-08,8.971047681578868792e-08,9.329889588842023120e-08,9.688731496105177448e-08,1.004757340336833178e-07,1.040641531063148610e-07,1.076525721789464043e-07,1.112409912515779476e-07,1.148294103242094909e-07,1.184178293968410342e-07,1.220062484694725775e-07,1.255946675421041207e-07,1.291830866147356640e-07,1.327715056873672073e-07,1.363599247599987506e-07,1.399483438326302939e-07,1.435367629052618371e-07,1.471251819778933804e-07,1.507136010505249237e-07,1.543020201231564670e-07,1.578904391957880103e-07,1.614788582684195535e-07,1.650672773410510968e-07,1.686556964136826401e-07,1.722441154863141834e-07,1.758325345589457267e-07,1.794209536315772700e-07,1.830093727042088132e-07,1.865977917768403565e-07,1.901862108494718998e-07,1.937746299221034431e-07,1.973630489947349864e-07,2.009514680673665296e-07,2.045398871399980729e-07,2.081283062126296162e-07,2.117167252852611595e-07,2.153051443578927028e-07,2.188935634305242461e-07,2.224819825031557893e-07,2.260704015757873326e-07 +0.000000000000000000e+00,5.084016613111668570e-09,1.016803322622333714e-08,1.525204983933500488e-08,2.033606645244667097e-08,2.542008306555833706e-08,3.050409967867000315e-08,3.558811629178167255e-08,4.067213290489334195e-08,4.575614951800501134e-08,5.084016613111668074e-08,5.592418274422835014e-08,6.100819935734001954e-08,6.609221597045168893e-08,7.117623258356335833e-08,7.626024919667502773e-08,8.134426580978669713e-08,8.642828242289836652e-08,9.151229903601003592e-08,9.659631564912170532e-08,1.016803322622333747e-07,1.067643488753450441e-07,1.118483654884567135e-07,1.169323821015683829e-07,1.220163987146800655e-07,1.271004153277917349e-07,1.321844319409034043e-07,1.372684485540150737e-07,1.423524651671267431e-07,1.474364817802384125e-07,1.525204983933500819e-07,1.576045150064617513e-07,1.626885316195734207e-07,1.677725482326850901e-07,1.728565648457967595e-07,1.779405814589084289e-07,1.830245980720200983e-07,1.881086146851317677e-07,1.931926312982434371e-07,1.982766479113551065e-07,2.033606645244667759e-07,2.084446811375784453e-07,2.135286977506901147e-07,2.186127143638017841e-07,2.236967309769134535e-07,2.287807475900251229e-07,2.338647642031367923e-07,2.389487808162484617e-07,2.440327974293601311e-07,2.491168140424718005e-07,2.542008306555834699e-07,2.592848472686951393e-07,2.643688638818068087e-07,2.694528804949184781e-07,2.745368971080301475e-07,2.796209137211418169e-07,2.847049303342534863e-07,2.897889469473651557e-07,2.948729635604768251e-07,2.999569801735884945e-07,3.050409967867001639e-07,3.101250133998118333e-07,3.152090300129235026e-07,3.202930466260351720e-07 +0.000000000000000000e+00,3.560759658736217073e-09,7.121519317472434145e-09,1.068227897620865163e-08,1.424303863494486995e-08,1.780379829368108660e-08,2.136455795241730326e-08,2.492531761115351992e-08,2.848607726988973658e-08,3.204683692862595324e-08,3.560759658736217321e-08,3.916835624609839318e-08,4.272911590483461314e-08,4.628987556357083311e-08,4.985063522230705308e-08,5.341139488104327305e-08,5.697215453977949302e-08,6.053291419851570637e-08,6.409367385725191972e-08,6.765443351598813307e-08,7.121519317472434642e-08,7.477595283346055977e-08,7.833671249219677312e-08,8.189747215093298647e-08,8.545823180966919982e-08,8.901899146840541317e-08,9.257975112714162652e-08,9.614051078587783987e-08,9.970127044461405322e-08,1.032620301033502666e-07,1.068227897620864799e-07,1.103835494208226933e-07,1.139443090795589066e-07,1.175050687382951200e-07,1.210658283970313333e-07,1.246265880557675467e-07,1.281873477145037600e-07,1.317481073732399734e-07,1.353088670319761867e-07,1.388696266907124001e-07,1.424303863494486134e-07,1.459911460081848268e-07,1.495519056669210401e-07,1.531126653256572535e-07,1.566734249843934668e-07,1.602341846431296802e-07,1.637949443018658935e-07,1.673557039606021069e-07,1.709164636193383202e-07,1.744772232780745336e-07,1.780379829368107469e-07,1.815987425955469603e-07,1.851595022542831736e-07,1.887202619130193870e-07,1.922810215717556003e-07,1.958417812304918137e-07,1.994025408892280270e-07,2.029633005479642404e-07,2.065240602067004537e-07,2.100848198654366671e-07,2.136455795241728804e-07,2.172063391829090938e-07,2.207670988416453071e-07,2.243278585003815205e-07 +0.000000000000000000e+00,3.588419072634993452e-09,7.176838145269986904e-09,1.076525721790497953e-08,1.435367629053997215e-08,1.794209536317496478e-08,2.153051443580995906e-08,2.511893350844495334e-08,2.870735258107994762e-08,3.229577165371493859e-08,3.588419072634992956e-08,3.947260979898492053e-08,4.306102887161991150e-08,4.664944794425490247e-08,5.023786701688989344e-08,5.382628608952488441e-08,5.741470516215987538e-08,6.100312423479486635e-08,6.459154330742985070e-08,6.817996238006483505e-08,7.176838145269981941e-08,7.535680052533480376e-08,7.894521959796978811e-08,8.253363867060477247e-08,8.612205774323975682e-08,8.971047681587474117e-08,9.329889588850972552e-08,9.688731496114470988e-08,1.004757340337796942e-07,1.040641531064146786e-07,1.076525721790496629e-07,1.112409912516846473e-07,1.148294103243196316e-07,1.184178293969546160e-07,1.220062484695896003e-07,1.255946675422245847e-07,1.291830866148595691e-07,1.327715056874945534e-07,1.363599247601295378e-07,1.399483438327645221e-07,1.435367629053995065e-07,1.471251819780344908e-07,1.507136010506694752e-07,1.543020201233044595e-07,1.578904391959394439e-07,1.614788582685744282e-07,1.650672773412094126e-07,1.686556964138443969e-07,1.722441154864793813e-07,1.758325345591143656e-07,1.794209536317493500e-07,1.830093727043843343e-07,1.865977917770193187e-07,1.901862108496543031e-07,1.937746299222892874e-07,1.973630489949242718e-07,2.009514680675592561e-07,2.045398871401942405e-07,2.081283062128292248e-07,2.117167252854642092e-07,2.153051443580991935e-07,2.188935634307341779e-07,2.224819825033691622e-07,2.260704015760041466e-07 +0.000000000000000000e+00,5.084016613113014393e-09,1.016803322622602879e-08,1.525204983933904483e-08,2.033606645245206088e-08,2.542008306556507693e-08,3.050409967867808967e-08,3.558811629179110241e-08,4.067213290490411515e-08,4.575614951801712788e-08,5.084016613113014062e-08,5.592418274424315336e-08,6.100819935735616610e-08,6.609221597046917222e-08,7.117623258358217834e-08,7.626024919669518447e-08,8.134426580980819059e-08,8.642828242292119671e-08,9.151229903603420283e-08,9.659631564914720895e-08,1.016803322622602151e-07,1.067643488753732212e-07,1.118483654884862273e-07,1.169323821015992334e-07,1.220163987147122528e-07,1.271004153278252721e-07,1.321844319409382915e-07,1.372684485540513109e-07,1.423524651671643302e-07,1.474364817802773496e-07,1.525204983933903689e-07,1.576045150065033883e-07,1.626885316196164076e-07,1.677725482327294270e-07,1.728565648458424464e-07,1.779405814589554657e-07,1.830245980720684851e-07,1.881086146851815044e-07,1.931926312982945238e-07,1.982766479114075431e-07,2.033606645245205625e-07,2.084446811376335819e-07,2.135286977507466012e-07,2.186127143638596206e-07,2.236967309769726399e-07,2.287807475900856593e-07,2.338647642031986786e-07,2.389487808163116715e-07,2.440327974294246644e-07,2.491168140425376573e-07,2.542008306556506502e-07,2.592848472687636431e-07,2.643688638818766360e-07,2.694528804949896288e-07,2.745368971081026217e-07,2.796209137212156146e-07,2.847049303343286075e-07,2.897889469474416004e-07,2.948729635605545933e-07,2.999569801736675862e-07,3.050409967867805790e-07,3.101250133998935719e-07,3.152090300130065648e-07,3.202930466261195577e-07 +0.000000000000000000e+00,3.365407980572187672e-09,6.730815961144375345e-09,1.009622394171656302e-08,1.346163192228875069e-08,1.682703990286094002e-08,2.019244788343312934e-08,2.355785586400531867e-08,2.692326384457750800e-08,3.028867182514969732e-08,3.365407980572188665e-08,3.701948778629407598e-08,4.038489576686626530e-08,4.375030374743845463e-08,4.711571172801064396e-08,5.048111970858283328e-08,5.384652768915502261e-08,5.721193566972721194e-08,6.057734365029940788e-08,6.394275163087159721e-08,6.730815961144378653e-08,7.067356759201597586e-08,7.403897557258816519e-08,7.740438355316035451e-08,8.076979153373254384e-08,8.413519951430473317e-08,8.750060749487692249e-08,9.086601547544911182e-08,9.423142345602130115e-08,9.759683143659349047e-08,1.009622394171656798e-07,1.043276473977378691e-07,1.076930553783100585e-07,1.110584633588822478e-07,1.144238713394544371e-07,1.177892793200266264e-07,1.211546873005988158e-07,1.245200952811710051e-07,1.278855032617431944e-07,1.312509112423153837e-07,1.346163192228875731e-07,1.379817272034597624e-07,1.413471351840319517e-07,1.447125431646041410e-07,1.480779511451763304e-07,1.514433591257485197e-07,1.548087671063207090e-07,1.581741750868928984e-07,1.615395830674650877e-07,1.649049910480372770e-07,1.682703990286094663e-07,1.716358070091816557e-07,1.750012149897538450e-07,1.783666229703260343e-07,1.817320309508982236e-07,1.850974389314704130e-07,1.884628469120426023e-07,1.918282548926147916e-07,1.951936628731869809e-07,1.985590708537591703e-07,2.019244788343313596e-07,2.052898868149035489e-07,2.086552947954757383e-07,2.120207027760479276e-07 +0.000000000000000000e+00,3.489011322352077957e-09,6.978022644704155914e-09,1.046703396705623304e-08,1.395604528940831017e-08,1.744505661176038730e-08,2.093406793411246609e-08,2.442307925646454487e-08,2.791209057881662366e-08,3.140110190116870244e-08,3.489011322352078122e-08,3.837912454587286001e-08,4.186813586822493879e-08,4.535714719057701758e-08,4.884615851292909636e-08,5.233516983528117514e-08,5.582418115763325393e-08,5.931319247998533271e-08,6.280220380233740488e-08,6.629121512468947705e-08,6.978022644704154921e-08,7.326923776939362138e-08,7.675824909174569355e-08,8.024726041409776571e-08,8.373627173644983788e-08,8.722528305880191005e-08,9.071429438115398221e-08,9.420330570350605438e-08,9.769231702585812655e-08,1.011813283482101987e-07,1.046703396705622709e-07,1.081593509929143430e-07,1.116483623152664152e-07,1.151373736376184874e-07,1.186263849599705595e-07,1.221153962823226317e-07,1.256044076046747039e-07,1.290934189270267760e-07,1.325824302493788482e-07,1.360714415717309204e-07,1.395604528940829925e-07,1.430494642164350647e-07,1.465384755387871369e-07,1.500274868611392090e-07,1.535164981834912812e-07,1.570055095058433534e-07,1.604945208281954255e-07,1.639835321505474977e-07,1.674725434728995699e-07,1.709615547952516420e-07,1.744505661176037142e-07,1.779395774399557864e-07,1.814285887623078585e-07,1.849176000846599307e-07,1.884066114070120029e-07,1.918956227293640750e-07,1.953846340517161472e-07,1.988736453740682194e-07,2.023626566964202915e-07,2.058516680187723637e-07,2.093406793411244359e-07,2.128296906634765080e-07,2.163187019858285802e-07,2.198077133081806524e-07 +0.000000000000000000e+00,4.900253822902551506e-09,9.800507645805103013e-09,1.470076146870765369e-08,1.960101529161020272e-08,2.450126911451275174e-08,2.940152293741530077e-08,3.430177676031784979e-08,3.920203058322039882e-08,4.410228440612294784e-08,4.900253822902549687e-08,5.390279205192804589e-08,5.880304587483059491e-08,6.370329969773314394e-08,6.860355352063569958e-08,7.350380734353825522e-08,7.840406116644081087e-08,8.330431498934336651e-08,8.820456881224592215e-08,9.310482263514847779e-08,9.800507645805103344e-08,1.029053302809535891e-07,1.078055841038561447e-07,1.127058379267587004e-07,1.176060917496612560e-07,1.225063455725638116e-07,1.274065993954663673e-07,1.323068532183689229e-07,1.372071070412714786e-07,1.421073608641740342e-07,1.470076146870765899e-07,1.519078685099791455e-07,1.568081223328817011e-07,1.617083761557842568e-07,1.666086299786868124e-07,1.715088838015893681e-07,1.764091376244919237e-07,1.813093914473944794e-07,1.862096452702970350e-07,1.911098990931995906e-07,1.960101529161021463e-07,2.009104067390047019e-07,2.058106605619072576e-07,2.107109143848098132e-07,2.156111682077123688e-07,2.205114220306149245e-07,2.254116758535174801e-07,2.303119296764200358e-07,2.352121834993225914e-07,2.401124373222251471e-07,2.450126911451277292e-07,2.499129449680303113e-07,2.548131987909328934e-07,2.597134526138354755e-07,2.646137064367380576e-07,2.695139602596406397e-07,2.744142140825432218e-07,2.793144679054458040e-07,2.842147217283483861e-07,2.891149755512509682e-07,2.940152293741535503e-07,2.989154831970561324e-07,3.038157370199587145e-07,3.087159908428612966e-07 +0.000000000000000000e+00,3.365407980572315472e-09,6.730815961144630943e-09,1.009622394171694683e-08,1.346163192228926354e-08,1.682703990286158191e-08,2.019244788343390027e-08,2.355785586400621864e-08,2.692326384457853701e-08,3.028867182515085538e-08,3.365407980572317705e-08,3.701948778629549873e-08,4.038489576686782040e-08,4.375030374744014208e-08,4.711571172801246375e-08,5.048111970858478543e-08,5.384652768915710710e-08,5.721193566972942878e-08,6.057734365030175046e-08,6.394275163087407213e-08,6.730815961144639381e-08,7.067356759201871548e-08,7.403897557259103716e-08,7.740438355316335883e-08,8.076979153373568051e-08,8.413519951430800218e-08,8.750060749488032386e-08,9.086601547545264554e-08,9.423142345602496721e-08,9.759683143659728889e-08,1.009622394171696106e-07,1.043276473977419322e-07,1.076930553783142539e-07,1.110584633588865756e-07,1.144238713394588973e-07,1.177892793200312189e-07,1.211546873006035274e-07,1.245200952811758491e-07,1.278855032617481707e-07,1.312509112423204924e-07,1.346163192228928141e-07,1.379817272034651358e-07,1.413471351840374574e-07,1.447125431646097791e-07,1.480779511451821008e-07,1.514433591257544225e-07,1.548087671063267441e-07,1.581741750868990658e-07,1.615395830674713875e-07,1.649049910480437092e-07,1.682703990286160308e-07,1.716358070091883525e-07,1.750012149897606742e-07,1.783666229703329959e-07,1.817320309509053175e-07,1.850974389314776392e-07,1.884628469120499609e-07,1.918282548926222826e-07,1.951936628731946042e-07,1.985590708537669259e-07,2.019244788343392476e-07,2.052898868149115693e-07,2.086552947954838909e-07,2.120207027760562126e-07 +0.000000000000000000e+00,3.489011322353072228e-09,6.978022644706144456e-09,1.046703396705921751e-08,1.395604528941229057e-08,1.744505661176536362e-08,2.093406793411843502e-08,2.442307925647150642e-08,2.791209057882457782e-08,3.140110190117764922e-08,3.489011322353072063e-08,3.837912454588379203e-08,4.186813586823686343e-08,4.535714719058993483e-08,4.884615851294300623e-08,5.233516983529607763e-08,5.582418115764914903e-08,5.931319248000222043e-08,6.280220380235529845e-08,6.629121512470837647e-08,6.978022644706145449e-08,7.326923776941453250e-08,7.675824909176761052e-08,8.024726041412068854e-08,8.373627173647376656e-08,8.722528305882684458e-08,9.071429438117992260e-08,9.420330570353300061e-08,9.769231702588607863e-08,1.011813283482391567e-07,1.046703396705922347e-07,1.081593509929453127e-07,1.116483623152983907e-07,1.151373736376514687e-07,1.186263849600045467e-07,1.221153962823576248e-07,1.256044076047107028e-07,1.290934189270637808e-07,1.325824302494168588e-07,1.360714415717699368e-07,1.395604528941230149e-07,1.430494642164760929e-07,1.465384755388291709e-07,1.500274868611822489e-07,1.535164981835353269e-07,1.570055095058884049e-07,1.604945208282414830e-07,1.639835321505945610e-07,1.674725434729476390e-07,1.709615547953007170e-07,1.744505661176537950e-07,1.779395774400068731e-07,1.814285887623599511e-07,1.849176000847130291e-07,1.884066114070661071e-07,1.918956227294191851e-07,1.953846340517722631e-07,1.988736453741253412e-07,2.023626566964784192e-07,2.058516680188314972e-07,2.093406793411845752e-07,2.128296906635376532e-07,2.163187019858907313e-07,2.198077133082438093e-07 +0.000000000000000000e+00,4.900253822902379453e-09,9.800507645804758906e-09,1.470076146870713753e-08,1.960101529160951450e-08,2.450126911451189147e-08,2.940152293741426844e-08,3.430177676031664542e-08,3.920203058321902239e-08,4.410228440612139936e-08,4.900253822902377633e-08,5.390279205192615330e-08,5.880304587482853027e-08,6.370329969773090724e-08,6.860355352063329083e-08,7.350380734353567442e-08,7.840406116643805801e-08,8.330431498934044160e-08,8.820456881224282519e-08,9.310482263514520878e-08,9.800507645804759236e-08,1.029053302809499760e-07,1.078055841038523595e-07,1.127058379267547431e-07,1.176060917496571267e-07,1.225063455725595235e-07,1.274065993954619204e-07,1.323068532183643172e-07,1.372071070412667140e-07,1.421073608641691108e-07,1.470076146870715077e-07,1.519078685099739045e-07,1.568081223328763013e-07,1.617083761557786981e-07,1.666086299786810950e-07,1.715088838015834918e-07,1.764091376244858886e-07,1.813093914473882854e-07,1.862096452702906822e-07,1.911098990931930791e-07,1.960101529160954759e-07,2.009104067389978727e-07,2.058106605619002695e-07,2.107109143848026664e-07,2.156111682077050632e-07,2.205114220306074600e-07,2.254116758535098568e-07,2.303119296764122537e-07,2.352121834993146505e-07,2.401124373222170473e-07,2.450126911451194706e-07,2.499129449680218939e-07,2.548131987909243172e-07,2.597134526138267405e-07,2.646137064367291638e-07,2.695139602596315871e-07,2.744142140825340104e-07,2.793144679054364337e-07,2.842147217283388569e-07,2.891149755512412802e-07,2.940152293741437035e-07,2.989154831970461268e-07,3.038157370199485501e-07,3.087159908428509734e-07 +0.000000000000000000e+00,2.918452434522508522e-09,5.836904869045017044e-09,8.755357303567525152e-09,1.167380973809003243e-08,1.459226217261253971e-08,1.751071460713504700e-08,2.042916704165755428e-08,2.334761947618006156e-08,2.626607191070256884e-08,2.918452434522507612e-08,3.210297677974758671e-08,3.502142921427010061e-08,3.793988164879261451e-08,4.085833408331512841e-08,4.377678651783764230e-08,4.669523895236015620e-08,4.961369138688267010e-08,5.253214382140518400e-08,5.545059625592769790e-08,5.836904869045021180e-08,6.128750112497272570e-08,6.420595355949523959e-08,6.712440599401775349e-08,7.004285842854026739e-08,7.296131086306278129e-08,7.587976329758529519e-08,7.879821573210780909e-08,8.171666816663032299e-08,8.463512060115283688e-08,8.755357303567535078e-08,9.047202547019786468e-08,9.339047790472037858e-08,9.630893033924289248e-08,9.922738277376540638e-08,1.021458352082879203e-07,1.050642876428104342e-07,1.079827400773329481e-07,1.109011925118554620e-07,1.138196449463779759e-07,1.167380973809004898e-07,1.196565498154230037e-07,1.225750022499455043e-07,1.254934546844680050e-07,1.284119071189905057e-07,1.313303595535130063e-07,1.342488119880355070e-07,1.371672644225580076e-07,1.400857168570805083e-07,1.430041692916030090e-07,1.459226217261255096e-07,1.488410741606480103e-07,1.517595265951705110e-07,1.546779790296930116e-07,1.575964314642155123e-07,1.605148838987380130e-07,1.634333363332605136e-07,1.663517887677830143e-07,1.692702412023055149e-07,1.721886936368280156e-07,1.751071460713505163e-07,1.780255985058730169e-07,1.809440509403955176e-07,1.838625033749180183e-07 +0.000000000000000000e+00,9.647082149463299171e-10,1.929416429892659834e-09,2.894124644838989544e-09,3.858832859785318841e-09,4.823541074731648138e-09,5.788249289677977434e-09,6.752957504624306731e-09,7.717665719570636028e-09,8.682373934516966152e-09,9.647082149463296275e-09,1.061179036440962640e-08,1.157649857935595652e-08,1.254120679430228665e-08,1.350591500924861677e-08,1.447062322419494689e-08,1.543533143914127536e-08,1.640003965408760383e-08,1.736474786903393230e-08,1.832945608398026077e-08,1.929416429892658924e-08,2.025887251387291771e-08,2.122358072881924618e-08,2.218828894376557465e-08,2.315299715871190312e-08,2.411770537365823159e-08,2.508241358860456006e-08,2.604712180355088853e-08,2.701183001849721700e-08,2.797653823344354547e-08,2.894124644838987394e-08,2.990595466333620572e-08,3.087066287828253749e-08,3.183537109322886927e-08,3.280007930817520105e-08,3.376478752312153283e-08,3.472949573806786461e-08,3.569420395301419638e-08,3.665891216796052816e-08,3.762362038290685994e-08,3.858832859785319172e-08,3.955303681279952350e-08,4.051774502774585528e-08,4.148245324269218705e-08,4.244716145763851883e-08,4.341186967258485061e-08,4.437657788753118239e-08,4.534128610247751417e-08,4.630599431742384594e-08,4.727070253237017772e-08,4.823541074731650950e-08,4.920011896226284128e-08,5.016482717720917306e-08,5.112953539215550484e-08,5.209424360710183661e-08,5.305895182204816839e-08,5.402366003699450017e-08,5.498836825194083195e-08,5.595307646688716373e-08,5.691778468183349550e-08,5.788249289677982728e-08,5.884720111172615906e-08,5.981190932667249084e-08,6.077661754161882262e-08 +0.000000000000000000e+00,3.024877559839572342e-09,6.049755119679144683e-09,9.074632679518717439e-09,1.209951023935829102e-08,1.512438779919786460e-08,1.814926535903743819e-08,2.117414291887701177e-08,2.419902047871658535e-08,2.722389803855615893e-08,3.024877559839572921e-08,3.327365315823529948e-08,3.629853071807486975e-08,3.932340827791444003e-08,4.234828583775401030e-08,4.537316339759358058e-08,4.839804095743315085e-08,5.142291851727272112e-08,5.444779607711229140e-08,5.747267363695186167e-08,6.049755119679143194e-08,6.352242875663099560e-08,6.654730631647055926e-08,6.957218387631012291e-08,7.259706143614968657e-08,7.562193899598925023e-08,7.864681655582881388e-08,8.167169411566837754e-08,8.469657167550794120e-08,8.772144923534750485e-08,9.074632679518706851e-08,9.377120435502663216e-08,9.679608191486619582e-08,9.982095947470575948e-08,1.028458370345453231e-07,1.058707145943848868e-07,1.088955921542244504e-07,1.119204697140640141e-07,1.149453472739035778e-07,1.179702248337431414e-07,1.209951023935827051e-07,1.240199799534222687e-07,1.270448575132618324e-07,1.300697350731013960e-07,1.330946126329409597e-07,1.361194901927805234e-07,1.391443677526200870e-07,1.421692453124596507e-07,1.451941228722992143e-07,1.482190004321387780e-07,1.512438779919783416e-07,1.542687555518179053e-07,1.572936331116574689e-07,1.603185106714970326e-07,1.633433882313365963e-07,1.663682657911761599e-07,1.693931433510157236e-07,1.724180209108552872e-07,1.754428984706948509e-07,1.784677760305344145e-07,1.814926535903739782e-07,1.845175311502135419e-07,1.875424087100531055e-07,1.905672862698926692e-07 +0.000000000000000000e+00,4.360629430774363279e-09,8.721258861548726559e-09,1.308188829232308901e-08,1.744251772309744981e-08,2.180314715387181061e-08,2.616377658464617140e-08,3.052440601542053220e-08,3.488503544619489300e-08,3.924566487696925380e-08,4.360629430774361460e-08,4.796692373851797539e-08,5.232755316929233619e-08,5.668818260006669699e-08,6.104881203084106441e-08,6.540944146161543182e-08,6.977007089238979924e-08,7.413070032316416665e-08,7.849132975393853407e-08,8.285195918471290148e-08,8.721258861548726890e-08,9.157321804626163631e-08,9.593384747703600373e-08,1.002944769078103711e-07,1.046551063385847386e-07,1.090157357693591060e-07,1.133763652001334734e-07,1.177369946309078408e-07,1.220976240616822082e-07,1.264582534924565889e-07,1.308188829232309695e-07,1.351795123540053502e-07,1.395401417847797308e-07,1.439007712155541115e-07,1.482614006463284921e-07,1.526220300771028728e-07,1.569826595078772534e-07,1.613432889386516341e-07,1.657039183694260147e-07,1.700645478002003954e-07,1.744251772309747760e-07,1.787858066617491567e-07,1.831464360925235373e-07,1.875070655232979180e-07,1.918676949540722986e-07,1.962283243848466793e-07,2.005889538156210599e-07,2.049495832463954406e-07,2.093102126771698212e-07,2.136708421079442019e-07,2.180314715387185825e-07,2.223921009694929632e-07,2.267527304002673438e-07,2.311133598310417245e-07,2.354739892618161051e-07,2.398346186925904858e-07,2.441952481233648929e-07,2.485558775541393000e-07,2.529165069849137071e-07,2.572771364156881143e-07,2.616377658464625214e-07,2.659983952772369285e-07,2.703590247080113356e-07,2.747196541387857427e-07 +0.000000000000000000e+00,1.547559318504974699e-09,3.095118637009949397e-09,4.642677955514923683e-09,6.190237274019897968e-09,7.737796592524872253e-09,9.285355911029847365e-09,1.083291522953482248e-08,1.238047454803979759e-08,1.392803386654477270e-08,1.547559318504974781e-08,1.702315250355472293e-08,1.857071182205969804e-08,2.011827114056467315e-08,2.166583045906964826e-08,2.321338977757462338e-08,2.476094909607959849e-08,2.630850841458457360e-08,2.785606773308954871e-08,2.940362705159452383e-08,3.095118637009950225e-08,3.249874568860448067e-08,3.404630500710945909e-08,3.559386432561443751e-08,3.714142364411941593e-08,3.868898296262439435e-08,4.023654228112937277e-08,4.178410159963435119e-08,4.333166091813932962e-08,4.487922023664430804e-08,4.642677955514928646e-08,4.797433887365426488e-08,4.952189819215924330e-08,5.106945751066422172e-08,5.261701682916920014e-08,5.416457614767417856e-08,5.571213546617915698e-08,5.725969478468413540e-08,5.880725410318911383e-08,6.035481342169409225e-08,6.190237274019907067e-08,6.344993205870404909e-08,6.499749137720902751e-08,6.654505069571400593e-08,6.809261001421898435e-08,6.964016933272396277e-08,7.118772865122894119e-08,7.273528796973391962e-08,7.428284728823889804e-08,7.583040660674387646e-08,7.737796592524885488e-08,7.892552524375383330e-08,8.047308456225881172e-08,8.202064388076379014e-08,8.356820319926876856e-08,8.511576251777374698e-08,8.666332183627872540e-08,8.821088115478370383e-08,8.975844047328868225e-08,9.130599979179366067e-08,9.285355911029863909e-08,9.440111842880361751e-08,9.594867774730859593e-08,9.749623706581357435e-08 +0.000000000000000000e+00,1.613526283415049573e-09,3.227052566830099146e-09,4.840578850245148926e-09,6.454105133660199119e-09,8.067631417075249313e-09,9.681157700490299506e-09,1.129468398390534970e-08,1.290821026732039989e-08,1.452173655073545009e-08,1.613526283415049863e-08,1.774878911756554717e-08,1.936231540098059570e-08,2.097584168439564424e-08,2.258936796781069278e-08,2.420289425122574132e-08,2.581642053464078986e-08,2.742994681805583840e-08,2.904347310147088694e-08,3.065699938488593879e-08,3.227052566830099063e-08,3.388405195171604248e-08,3.549757823513109433e-08,3.711110451854614618e-08,3.872463080196119803e-08,4.033815708537624987e-08,4.195168336879130172e-08,4.356520965220635357e-08,4.517873593562140542e-08,4.679226221903645726e-08,4.840578850245150911e-08,5.001931478586656096e-08,5.163284106928161281e-08,5.324636735269666466e-08,5.485989363611171650e-08,5.647341991952676835e-08,5.808694620294182020e-08,5.970047248635687205e-08,6.131399876977193051e-08,6.292752505318698898e-08,6.454105133660204744e-08,6.615457762001710591e-08,6.776810390343216437e-08,6.938163018684722284e-08,7.099515647026228130e-08,7.260868275367733977e-08,7.422220903709239823e-08,7.583573532050745670e-08,7.744926160392251517e-08,7.906278788733757363e-08,8.067631417075263210e-08,8.228984045416769056e-08,8.390336673758274903e-08,8.551689302099780749e-08,8.713041930441286596e-08,8.874394558782792442e-08,9.035747187124298289e-08,9.197099815465804135e-08,9.358452443807309982e-08,9.519805072148815828e-08,9.681157700490321675e-08,9.842510328831827521e-08,1.000386295717333337e-07,1.016521558551483921e-07 +0.000000000000000000e+00,3.001377637721666725e-09,6.002755275443333450e-09,9.004132913164999761e-09,1.200551055088666525e-08,1.500688818860833073e-08,1.800826582632999621e-08,2.100964346405166170e-08,2.401102110177332718e-08,2.701239873949499267e-08,3.001377637721666146e-08,3.301515401493833025e-08,3.601653165265999905e-08,3.901790929038166784e-08,4.201928692810333663e-08,4.502066456582500542e-08,4.802204220354667422e-08,5.102341984126834301e-08,5.402479747899001180e-08,5.702617511671168060e-08,6.002755275443334939e-08,6.302893039215501156e-08,6.603030802987667374e-08,6.903168566759833592e-08,7.203306330531999809e-08,7.503444094304166027e-08,7.803581858076332244e-08,8.103719621848498462e-08,8.403857385620664679e-08,8.703995149392830897e-08,9.004132913164997114e-08,9.304270676937163332e-08,9.604408440709329549e-08,9.904546204481495767e-08,1.020468396825366198e-07,1.050482173202582820e-07,1.080495949579799442e-07,1.110509725957016064e-07,1.140523502334232685e-07,1.170537278711449307e-07,1.200551055088665929e-07,1.230564831465882551e-07,1.260578607843099172e-07,1.290592384220315794e-07,1.320606160597532416e-07,1.350619936974749038e-07,1.380633713351965660e-07,1.410647489729182281e-07,1.440661266106398903e-07,1.470675042483615525e-07,1.500688818860832147e-07,1.530702595238048768e-07,1.560716371615265390e-07,1.590730147992482012e-07,1.620743924369698634e-07,1.650757700746915255e-07,1.680771477124131877e-07,1.710785253501348499e-07,1.740799029878565121e-07,1.770812806255781742e-07,1.800826582632998364e-07,1.830840359010214986e-07,1.860854135387431608e-07,1.890867911764648229e-07 +0.000000000000000000e+00,4.510577346631236575e-09,9.021154693262473151e-09,1.353173203989370890e-08,1.804230938652494299e-08,2.255288673315617709e-08,2.706346407978741118e-08,3.157404142641864527e-08,3.608461877304987937e-08,4.059519611968111346e-08,4.510577346631234756e-08,4.961635081294358165e-08,5.412692815957481574e-08,5.863750550620604984e-08,6.314808285283727732e-08,6.765866019946849817e-08,7.216923754609971903e-08,7.667981489273093989e-08,8.119039223936216075e-08,8.570096958599338161e-08,9.021154693262460247e-08,9.472212427925582333e-08,9.923270162588704419e-08,1.037432789725182650e-07,1.082538563191494859e-07,1.127644336657807068e-07,1.172750110124119276e-07,1.217855883590431485e-07,1.262961657056743693e-07,1.308067430523055902e-07,1.353173203989368111e-07,1.398278977455680319e-07,1.443384750921992528e-07,1.488490524388304736e-07,1.533596297854616945e-07,1.578702071320929154e-07,1.623807844787241362e-07,1.668913618253553571e-07,1.714019391719865779e-07,1.759125165186177988e-07,1.804230938652490197e-07,1.849336712118802405e-07,1.894442485585114614e-07,1.939548259051426822e-07,1.984654032517739031e-07,2.029759805984051239e-07,2.074865579450363448e-07,2.119971352916675657e-07,2.165077126382987865e-07,2.210182899849300074e-07,2.255288673315612282e-07,2.300394446781924491e-07,2.345500220248236700e-07,2.390605993714548908e-07,2.435711767180860852e-07,2.480817540647172796e-07,2.525923314113484740e-07,2.571029087579796684e-07,2.616134861046108628e-07,2.661240634512420572e-07,2.706346407978732515e-07,2.751452181445044459e-07,2.796557954911356403e-07,2.841663728377668347e-07 +0.000000000000000000e+00,2.918452434537396532e-09,5.836904869074793064e-09,8.755357303612189596e-09,1.167380973814958613e-08,1.459226217268698266e-08,1.751071460722437919e-08,2.042916704176177572e-08,2.334761947629917226e-08,2.626607191083656879e-08,2.918452434537396532e-08,3.210297677991136185e-08,3.502142921444875839e-08,3.793988164898615492e-08,4.085833408352355145e-08,4.377678651806094798e-08,4.669523895259834451e-08,4.961369138713574105e-08,5.253214382167313758e-08,5.545059625621053411e-08,5.836904869074793064e-08,6.128750112528533379e-08,6.420595355982273694e-08,6.712440599436014009e-08,7.004285842889754324e-08,7.296131086343494639e-08,7.587976329797234954e-08,7.879821573250975269e-08,8.171666816704715584e-08,8.463512060158455899e-08,8.755357303612196214e-08,9.047202547065936529e-08,9.339047790519676844e-08,9.630893033973417159e-08,9.922738277427157474e-08,1.021458352088089779e-07,1.050642876433463810e-07,1.079827400778837842e-07,1.109011925124211873e-07,1.138196449469585905e-07,1.167380973814959936e-07,1.196565498160333968e-07,1.225750022505707999e-07,1.254934546851082031e-07,1.284119071196456062e-07,1.313303595541830094e-07,1.342488119887204125e-07,1.371672644232578157e-07,1.400857168577952188e-07,1.430041692923326220e-07,1.459226217268700251e-07,1.488410741614074283e-07,1.517595265959448314e-07,1.546779790304822346e-07,1.575964314650196377e-07,1.605148838995570409e-07,1.634333363340944440e-07,1.663517887686318472e-07,1.692702412031692503e-07,1.721886936377066535e-07,1.751071460722440566e-07,1.780255985067814598e-07,1.809440509413188629e-07,1.838625033758562661e-07 +0.000000000000000000e+00,9.647082149601055762e-10,1.929416429920211152e-09,2.894124644880316729e-09,3.858832859840422305e-09,4.823541074800528294e-09,5.788249289760634284e-09,6.752957504720740274e-09,7.717665719680846264e-09,8.682373934640952254e-09,9.647082149601058243e-09,1.061179036456116423e-08,1.157649857952127022e-08,1.254120679448137621e-08,1.350591500944148220e-08,1.447062322440158819e-08,1.543533143936169584e-08,1.640003965432180513e-08,1.736474786928191443e-08,1.832945608424202373e-08,1.929416429920213303e-08,2.025887251416224233e-08,2.122358072912235163e-08,2.218828894408246093e-08,2.315299715904257022e-08,2.411770537400267952e-08,2.508241358896278882e-08,2.604712180392289812e-08,2.701183001888300742e-08,2.797653823384311672e-08,2.894124644880322602e-08,2.990595466376333531e-08,3.087066287872344461e-08,3.183537109368355391e-08,3.280007930864366321e-08,3.376478752360377251e-08,3.472949573856388181e-08,3.569420395352399110e-08,3.665891216848410040e-08,3.762362038344420970e-08,3.858832859840431900e-08,3.955303681336442830e-08,4.051774502832453760e-08,4.148245324328464690e-08,4.244716145824475619e-08,4.341186967320486549e-08,4.437657788816497479e-08,4.534128610312508409e-08,4.630599431808519339e-08,4.727070253304530269e-08,4.823541074800541198e-08,4.920011896296552128e-08,5.016482717792563058e-08,5.112953539288573988e-08,5.209424360784584918e-08,5.305895182280595848e-08,5.402366003776606778e-08,5.498836825272617707e-08,5.595307646768628637e-08,5.691778468264639567e-08,5.788249289760650497e-08,5.884720111256661427e-08,5.981190932752672357e-08,6.077661754248683287e-08 +0.000000000000000000e+00,3.001377637728970730e-09,6.002755275457941460e-09,9.004132913186911776e-09,1.200551055091588126e-08,1.500688818864485241e-08,1.800826582637382355e-08,2.100964346410279469e-08,2.401102110183176584e-08,2.701239873956073698e-08,3.001377637728970482e-08,3.301515401501867265e-08,3.601653165274764049e-08,3.901790929047660832e-08,4.201928692820557616e-08,4.502066456593454399e-08,4.802204220366351182e-08,5.102341984139247966e-08,5.402479747912144749e-08,5.702617511685041533e-08,6.002755275457938316e-08,6.302893039230835100e-08,6.603030803003731883e-08,6.903168566776628667e-08,7.203306330549525450e-08,7.503444094322422234e-08,7.803581858095319017e-08,8.103719621868215801e-08,8.403857385641112584e-08,8.703995149414009367e-08,9.004132913186906151e-08,9.304270676959802934e-08,9.604408440732699718e-08,9.904546204505596501e-08,1.020468396827849328e-07,1.050482173205139007e-07,1.080495949582428685e-07,1.110509725959718364e-07,1.140523502337008042e-07,1.170537278714297720e-07,1.200551055091587399e-07,1.230564831468877077e-07,1.260578607846166755e-07,1.290592384223456434e-07,1.320606160600746112e-07,1.350619936978035790e-07,1.380633713355325469e-07,1.410647489732615147e-07,1.440661266109904825e-07,1.470675042487194504e-07,1.500688818864484182e-07,1.530702595241773860e-07,1.560716371619063539e-07,1.590730147996353217e-07,1.620743924373642895e-07,1.650757700750932574e-07,1.680771477128222252e-07,1.710785253505511930e-07,1.740799029882801609e-07,1.770812806260091287e-07,1.800826582637380965e-07,1.830840359014670644e-07,1.860854135391960322e-07,1.890867911769250001e-07 +0.000000000000000000e+00,4.360629430790214541e-09,8.721258861580429083e-09,1.308188829237064362e-08,1.744251772316085817e-08,2.180314715395107436e-08,2.616377658474129056e-08,3.052440601553150675e-08,3.488503544632172295e-08,3.924566487711193915e-08,4.360629430790215534e-08,4.796692373869237154e-08,5.232755316948258773e-08,5.668818260027280393e-08,6.104881203106301351e-08,6.540944146185322309e-08,6.977007089264343266e-08,7.413070032343364224e-08,7.849132975422385182e-08,8.285195918501406140e-08,8.721258861580427098e-08,9.157321804659448056e-08,9.593384747738469013e-08,1.002944769081748997e-07,1.046551063389651093e-07,1.090157357697553189e-07,1.133763652005455284e-07,1.177369946313357380e-07,1.220976240621259476e-07,1.264582534929161572e-07,1.308188829237063668e-07,1.351795123544965763e-07,1.395401417852867859e-07,1.439007712160769955e-07,1.482614006468672051e-07,1.526220300776574147e-07,1.569826595084476242e-07,1.613432889392378338e-07,1.657039183700280434e-07,1.700645478008182530e-07,1.744251772316084625e-07,1.787858066623986721e-07,1.831464360931888817e-07,1.875070655239790913e-07,1.918676949547693009e-07,1.962283243855595104e-07,2.005889538163497200e-07,2.049495832471399296e-07,2.093102126779301392e-07,2.136708421087203488e-07,2.180314715395105583e-07,2.223921009703007679e-07,2.267527304010909775e-07,2.311133598318811871e-07,2.354739892626713966e-07,2.398346186934616062e-07,2.441952481242518423e-07,2.485558775550420783e-07,2.529165069858323144e-07,2.572771364166225504e-07,2.616377658474127865e-07,2.659983952782030225e-07,2.703590247089932586e-07,2.747196541397834946e-07 +0.000000000000000000e+00,1.547559318519580434e-09,3.095118637039160867e-09,4.642677955558741094e-09,6.190237274078320907e-09,7.737796592597900721e-09,9.285355911117480534e-09,1.083291522963706035e-08,1.238047454815664016e-08,1.392803386667621997e-08,1.547559318519579813e-08,1.702315250371537464e-08,1.857071182223495114e-08,2.011827114075452765e-08,2.166583045927410415e-08,2.321338977779368065e-08,2.476094909631325716e-08,2.630850841483283366e-08,2.785606773335241017e-08,2.940362705187198667e-08,3.095118637039156318e-08,3.249874568891113968e-08,3.404630500743071619e-08,3.559386432595029269e-08,3.714142364446986920e-08,3.868898296298944570e-08,4.023654228150902220e-08,4.178410160002859871e-08,4.333166091854817521e-08,4.487922023706775172e-08,4.642677955558732822e-08,4.797433887410690473e-08,4.952189819262648123e-08,5.106945751114605774e-08,5.261701682966563424e-08,5.416457614818521075e-08,5.571213546670478725e-08,5.725969478522436375e-08,5.880725410374394026e-08,6.035481342226352338e-08,6.190237274078311312e-08,6.344993205930270286e-08,6.499749137782229260e-08,6.654505069634188234e-08,6.809261001486147208e-08,6.964016933338106182e-08,7.118772865190065156e-08,7.273528797042024130e-08,7.428284728893983104e-08,7.583040660745942077e-08,7.737796592597901051e-08,7.892552524449860025e-08,8.047308456301818999e-08,8.202064388153777973e-08,8.356820320005736947e-08,8.511576251857695921e-08,8.666332183709654895e-08,8.821088115561613869e-08,8.975844047413572843e-08,9.130599979265531817e-08,9.285355911117490791e-08,9.440111842969449765e-08,9.594867774821408739e-08,9.749623706673367713e-08 +0.000000000000000000e+00,1.613526283429544673e-09,3.227052566859089345e-09,4.840578850288633811e-09,6.454105133718177863e-09,8.067631417147721915e-09,9.681157700577265967e-09,1.129468398400681002e-08,1.290821026743635407e-08,1.452173655086589812e-08,1.613526283429544052e-08,1.774878911772498457e-08,1.936231540115452863e-08,2.097584168458407268e-08,2.258936796801361673e-08,2.420289425144316078e-08,2.581642053487270483e-08,2.742994681830224889e-08,2.904347310173179294e-08,3.065699938516133699e-08,3.227052566859088104e-08,3.388405195202042510e-08,3.549757823544996915e-08,3.711110451887951320e-08,3.872463080230905725e-08,4.033815708573860130e-08,4.195168336916814536e-08,4.356520965259768941e-08,4.517873593602723346e-08,4.679226221945677751e-08,4.840578850288632156e-08,5.001931478631586562e-08,5.163284106974540967e-08,5.324636735317495372e-08,5.485989363660449777e-08,5.647341992003404183e-08,5.808694620346358588e-08,5.970047248689312331e-08,6.131399877032266075e-08,6.292752505375219818e-08,6.454105133718173562e-08,6.615457762061127305e-08,6.776810390404081049e-08,6.938163018747034792e-08,7.099515647089988536e-08,7.260868275432942279e-08,7.422220903775896022e-08,7.583573532118849766e-08,7.744926160461803509e-08,7.906278788804757253e-08,8.067631417147710996e-08,8.228984045490664740e-08,8.390336673833618483e-08,8.551689302176572227e-08,8.713041930519525970e-08,8.874394558862479714e-08,9.035747187205433457e-08,9.197099815548387201e-08,9.358452443891340944e-08,9.519805072234294688e-08,9.681157700577248431e-08,9.842510328920202175e-08,1.000386295726315592e-07,1.016521558560610966e-07 +0.000000000000000000e+00,7.321474841321750041e-10,1.464294968264350008e-09,2.196442452396524909e-09,2.928589936528699603e-09,3.660737420660874297e-09,4.392884904793048991e-09,5.125032388925223684e-09,5.857179873057398378e-09,6.589327357189573072e-09,7.321474841321747766e-09,8.053622325453923287e-09,8.785769809586099635e-09,9.517917293718275984e-09,1.025006477785045233e-08,1.098221226198262868e-08,1.171435974611480503e-08,1.244650723024698138e-08,1.317865471437915772e-08,1.391080219851133407e-08,1.464294968264351042e-08,1.537509716677568677e-08,1.610724465090786312e-08,1.683939213504003947e-08,1.757153961917221581e-08,1.830368710330439216e-08,1.903583458743656851e-08,1.976798207156874486e-08,2.050012955570092121e-08,2.123227703983309756e-08,2.196442452396527390e-08,2.269657200809745025e-08,2.342871949222962660e-08,2.416086697636180295e-08,2.489301446049397930e-08,2.562516194462615565e-08,2.635730942875833199e-08,2.708945691289050834e-08,2.782160439702268469e-08,2.855375188115486104e-08,2.928589936528703739e-08,3.001804684941921704e-08,3.075019433355139339e-08,3.148234181768356974e-08,3.221448930181574609e-08,3.294663678594792244e-08,3.367878427008009878e-08,3.441093175421227513e-08,3.514307923834445148e-08,3.587522672247662783e-08,3.660737420660880418e-08,3.733952169074098053e-08,3.807166917487315687e-08,3.880381665900533322e-08,3.953596414313750957e-08,4.026811162726968592e-08,4.100025911140186227e-08,4.173240659553403862e-08,4.246455407966621496e-08,4.319670156379839131e-08,4.392884904793056766e-08,4.466099653206274401e-08,4.539314401619492036e-08,4.612529150032709671e-08 +0.000000000000000000e+00,7.600330015860267341e-10,1.520066003172053468e-09,2.280099004758080306e-09,3.040132006344107350e-09,3.800165007930134808e-09,4.560198009516162266e-09,5.320231011102189724e-09,6.080264012688217182e-09,6.840297014274244639e-09,7.600330015860272925e-09,8.360363017446301210e-09,9.120396019032329495e-09,9.880429020618357780e-09,1.064046202220438606e-08,1.140049502379041435e-08,1.216052802537644263e-08,1.292056102696247092e-08,1.368059402854849921e-08,1.444062703013452749e-08,1.520066003172055578e-08,1.596069303330658406e-08,1.672072603489261235e-08,1.748075903647864063e-08,1.824079203806466892e-08,1.900082503965069720e-08,1.976085804123672549e-08,2.052089104282275377e-08,2.128092404440878206e-08,2.204095704599481034e-08,2.280099004758083863e-08,2.356102304916686691e-08,2.432105605075289520e-08,2.508108905233892348e-08,2.584112205392495177e-08,2.660115505551098005e-08,2.736118805709700834e-08,2.812122105868303662e-08,2.888125406026906491e-08,2.964128706185509319e-08,3.040132006344111817e-08,3.116135306502714314e-08,3.192138606661316812e-08,3.268141906819919310e-08,3.344145206978521807e-08,3.420148507137124305e-08,3.496151807295726803e-08,3.572155107454329300e-08,3.648158407612931798e-08,3.724161707771534296e-08,3.800165007930136793e-08,3.876168308088739291e-08,3.952171608247341788e-08,4.028174908405944286e-08,4.104178208564546784e-08,4.180181508723149281e-08,4.256184808881751779e-08,4.332188109040354277e-08,4.408191409198956774e-08,4.484194709357559272e-08,4.560198009516161769e-08,4.636201309674764267e-08,4.712204609833366765e-08,4.788207909991969262e-08 +0.000000000000000000e+00,1.363856029982796069e-09,2.727712059965592138e-09,4.091568089948388208e-09,5.455424119931184277e-09,6.819280149913980346e-09,8.183136179896776415e-09,9.546992209879572484e-09,1.091084823986236855e-08,1.227470426984516462e-08,1.363856029982796069e-08,1.500241632981075842e-08,1.636627235979355614e-08,1.773012838977635386e-08,1.909398441975915159e-08,2.045784044974194931e-08,2.182169647972474703e-08,2.318555250970754476e-08,2.454940853969034248e-08,2.591326456967314020e-08,2.727712059965593793e-08,2.864097662963873565e-08,3.000483265962153007e-08,3.136868868960432448e-08,3.273254471958711890e-08,3.409640074956991331e-08,3.546025677955270773e-08,3.682411280953550214e-08,3.818796883951829656e-08,3.955182486950109097e-08,4.091568089948388538e-08,4.227953692946667980e-08,4.364339295944947421e-08,4.500724898943226863e-08,4.637110501941506304e-08,4.773496104939785746e-08,4.909881707938065187e-08,5.046267310936344629e-08,5.182652913934624070e-08,5.319038516932903512e-08,5.455424119931182953e-08,5.591809722929462395e-08,5.728195325927741836e-08,5.864580928926021278e-08,6.000966531924300719e-08,6.137352134922579499e-08,6.273737737920858279e-08,6.410123340919137058e-08,6.546508943917415838e-08,6.682894546915694618e-08,6.819280149913973398e-08,6.955665752912252177e-08,7.092051355910530957e-08,7.228436958908809737e-08,7.364822561907088517e-08,7.501208164905367296e-08,7.637593767903646076e-08,7.773979370901924856e-08,7.910364973900203636e-08,8.046750576898482415e-08,8.183136179896761195e-08,8.319521782895039975e-08,8.455907385893318755e-08,8.592292988891597534e-08 +0.000000000000000000e+00,7.321474841446542644e-10,1.464294968289308529e-09,2.196442452433962690e-09,2.928589936578616644e-09,3.660737420723270598e-09,4.392884904867924552e-09,5.125032389012578093e-09,5.857179873157231634e-09,6.589327357301885174e-09,7.321474841446538715e-09,8.053622325591192255e-09,8.785769809735845796e-09,9.517917293880499337e-09,1.025006477802515288e-08,1.098221226216980642e-08,1.171435974631445996e-08,1.244650723045911350e-08,1.317865471460376704e-08,1.391080219874842058e-08,1.464294968289307412e-08,1.537509716703772766e-08,1.610724465118238120e-08,1.683939213532703474e-08,1.757153961947168828e-08,1.830368710361634182e-08,1.903583458776099536e-08,1.976798207190564891e-08,2.050012955605030245e-08,2.123227704019495599e-08,2.196442452433960953e-08,2.269657200848426307e-08,2.342871949262891661e-08,2.416086697677357015e-08,2.489301446091822369e-08,2.562516194506287723e-08,2.635730942920753077e-08,2.708945691335218431e-08,2.782160439749683785e-08,2.855375188164149139e-08,2.928589936578614493e-08,3.001804684993079847e-08,3.075019433407545532e-08,3.148234181822011217e-08,3.221448930236476902e-08,3.294663678650942587e-08,3.367878427065408272e-08,3.441093175479873957e-08,3.514307923894339642e-08,3.587522672308805327e-08,3.660737420723271012e-08,3.733952169137736697e-08,3.807166917552202382e-08,3.880381665966668067e-08,3.953596414381133752e-08,4.026811162795599436e-08,4.100025911210065121e-08,4.173240659624530806e-08,4.246455408038996491e-08,4.319670156453462176e-08,4.392884904867927861e-08,4.466099653282393546e-08,4.539314401696859231e-08,4.612529150111324916e-08 +0.000000000000000000e+00,7.600330015991928645e-10,1.520066003198385729e-09,2.280099004797578594e-09,3.040132006396771458e-09,3.800165007995964323e-09,4.560198009595157187e-09,5.320231011194350052e-09,6.080264012793542916e-09,6.840297014392735781e-09,7.600330015991928645e-09,8.360363017591120683e-09,9.120396019190312720e-09,9.880429020789504757e-09,1.064046202238869679e-08,1.140049502398788883e-08,1.216052802558708087e-08,1.292056102718627291e-08,1.368059402878546494e-08,1.444062703038465698e-08,1.520066003198384736e-08,1.596069303358303775e-08,1.672072603518222813e-08,1.748075903678141851e-08,1.824079203838060890e-08,1.900082503997979928e-08,1.976085804157898966e-08,2.052089104317818005e-08,2.128092404477737043e-08,2.204095704637656081e-08,2.280099004797575119e-08,2.356102304957494158e-08,2.432105605117413196e-08,2.508108905277332234e-08,2.584112205437251273e-08,2.660115505597170311e-08,2.736118805757089349e-08,2.812122105917008387e-08,2.888125406076927426e-08,2.964128706236846464e-08,3.040132006396765502e-08,3.116135306556684210e-08,3.192138606716602917e-08,3.268141906876521625e-08,3.344145207036440332e-08,3.420148507196359040e-08,3.496151807356277747e-08,3.572155107516196454e-08,3.648158407676115162e-08,3.724161707836033869e-08,3.800165007995952577e-08,3.876168308155871284e-08,3.952171608315789991e-08,4.028174908475708699e-08,4.104178208635627406e-08,4.180181508795546114e-08,4.256184808955464821e-08,4.332188109115383529e-08,4.408191409275302236e-08,4.484194709435220943e-08,4.560198009595139651e-08,4.636201309755058358e-08,4.712204609914977066e-08,4.788207910074895773e-08 +0.000000000000000000e+00,1.363856029995783218e-09,2.727712059991566437e-09,4.091568089987350069e-09,5.455424119983133701e-09,6.819280149978917333e-09,8.183136179974700138e-09,9.546992209970482942e-09,1.091084823996626575e-08,1.227470426996204855e-08,1.363856029995783136e-08,1.500241632995361582e-08,1.636627235994940028e-08,1.773012838994518473e-08,1.909398441994096919e-08,2.045784044993675365e-08,2.182169647993253811e-08,2.318555250992832257e-08,2.454940853992410703e-08,2.591326456991989149e-08,2.727712059991567595e-08,2.864097662991146041e-08,3.000483265990724487e-08,3.136868868990302933e-08,3.273254471989881379e-08,3.409640074989459824e-08,3.546025677989038270e-08,3.682411280988616716e-08,3.818796883988195162e-08,3.955182486987773608e-08,4.091568089987352054e-08,4.227953692986930500e-08,4.364339295986508946e-08,4.500724898986087392e-08,4.637110501985665838e-08,4.773496104985244284e-08,4.909881707984822730e-08,5.046267310984401175e-08,5.182652913983979621e-08,5.319038516983558067e-08,5.455424119983136513e-08,5.591809722982714959e-08,5.728195325982293405e-08,5.864580928981871851e-08,6.000966531981450297e-08,6.137352134981028743e-08,6.273737737980607189e-08,6.410123340980185635e-08,6.546508943979764081e-08,6.682894546979342527e-08,6.819280149978920972e-08,6.955665752978499418e-08,7.092051355978077864e-08,7.228436958977656310e-08,7.364822561977234756e-08,7.501208164976813202e-08,7.637593767976391648e-08,7.773979370975970094e-08,7.910364973975548540e-08,8.046750576975126986e-08,8.183136179974705432e-08,8.319521782974283878e-08,8.455907385973862323e-08,8.592292988973440769e-08 +0.000000000000000000e+00,8.752474339141836891e-10,1.750494867828367378e-09,2.625742301742551067e-09,3.500989735656734756e-09,4.376237169570918859e-09,5.251484603485102962e-09,6.126732037399287064e-09,7.001979471313471167e-09,7.877226905227655270e-09,8.752474339141839372e-09,9.627721773056023475e-09,1.050296920697020758e-08,1.137821664088439168e-08,1.225346407479857578e-08,1.312871150871275989e-08,1.400395894262694399e-08,1.487920637654112809e-08,1.575445381045531054e-08,1.662970124436949299e-08,1.750494867828367544e-08,1.838019611219785788e-08,1.925544354611204033e-08,2.013069098002622278e-08,2.100593841394040523e-08,2.188118584785458768e-08,2.275643328176877013e-08,2.363168071568295257e-08,2.450692814959713502e-08,2.538217558351131747e-08,2.625742301742549992e-08,2.713267045133968237e-08,2.800791788525386482e-08,2.888316531916804726e-08,2.975841275308222971e-08,3.063366018699641216e-08,3.150890762091059461e-08,3.238415505482477706e-08,3.325940248873895951e-08,3.413464992265314195e-08,3.500989735656732440e-08,3.588514479048150685e-08,3.676039222439568930e-08,3.763563965830987175e-08,3.851088709222405420e-08,3.938613452613823664e-08,4.026138196005241909e-08,4.113662939396660154e-08,4.201187682788078399e-08,4.288712426179496644e-08,4.376237169570914888e-08,4.463761912962333133e-08,4.551286656353751378e-08,4.638811399745169623e-08,4.726336143136587868e-08,4.813860886528006113e-08,4.901385629919424357e-08,4.988910373310842602e-08,5.076435116702260847e-08,5.163959860093679092e-08,5.251484603485097337e-08,5.339009346876515582e-08,5.426534090267933826e-08,5.514058833659352071e-08 +0.000000000000000000e+00,7.843233781640372670e-10,1.568646756328074534e-09,2.352970134492111801e-09,3.137293512656149068e-09,3.921616890820186749e-09,4.705940268984224429e-09,5.490263647148262110e-09,6.274587025312299791e-09,7.058910403476337471e-09,7.843233781640375152e-09,8.627557159804412832e-09,9.411880537968450513e-09,1.019620391613248819e-08,1.098052729429652587e-08,1.176485067246056355e-08,1.254917405062460124e-08,1.333349742878863892e-08,1.411782080695267660e-08,1.490214418511671428e-08,1.568646756328075361e-08,1.647079094144479295e-08,1.725511431960883228e-08,1.803943769777287162e-08,1.882376107593691095e-08,1.960808445410095029e-08,2.039240783226498962e-08,2.117673121042902896e-08,2.196105458859306829e-08,2.274537796675710763e-08,2.352970134492114696e-08,2.431402472308518630e-08,2.509834810124922563e-08,2.588267147941326497e-08,2.666699485757730430e-08,2.745131823574134364e-08,2.823564161390538297e-08,2.901996499206942231e-08,2.980428837023346164e-08,3.058861174839749767e-08,3.137293512656153369e-08,3.215725850472556972e-08,3.294158188288960575e-08,3.372590526105364177e-08,3.451022863921767780e-08,3.529455201738171383e-08,3.607887539554574985e-08,3.686319877370978588e-08,3.764752215187382190e-08,3.843184553003785793e-08,3.921616890820189396e-08,4.000049228636592998e-08,4.078481566452996601e-08,4.156913904269400204e-08,4.235346242085803806e-08,4.313778579902207409e-08,4.392210917718611011e-08,4.470643255535014614e-08,4.549075593351418217e-08,4.627507931167821819e-08,4.705940268984225422e-08,4.784372606800629025e-08,4.862804944617032627e-08,4.941237282433436230e-08 +0.000000000000000000e+00,1.626880189246129395e-09,3.253760378492258791e-09,4.880640567738388186e-09,6.507520756984517582e-09,8.134400946230646977e-09,9.761281135476776373e-09,1.138816132472290577e-08,1.301504151396903516e-08,1.464192170321516456e-08,1.626880189246129395e-08,1.789568208170742335e-08,1.952256227095355275e-08,2.114944246019968214e-08,2.277632264944581154e-08,2.440320283869194093e-08,2.603008302793807033e-08,2.765696321718419972e-08,2.928384340643032912e-08,3.091072359567645520e-08,3.253760378492258129e-08,3.416448397416870738e-08,3.579136416341483346e-08,3.741824435266095955e-08,3.904512454190708564e-08,4.067200473115321172e-08,4.229888492039933781e-08,4.392576510964546390e-08,4.555264529889158998e-08,4.717952548813771607e-08,4.880640567738384216e-08,5.043328586662996824e-08,5.206016605587609433e-08,5.368704624512222042e-08,5.531392643436834650e-08,5.694080662361447259e-08,5.856768681286059868e-08,6.019456700210672476e-08,6.182144719135285747e-08,6.344832738059899017e-08,6.507520756984512288e-08,6.670208775909125558e-08,6.832896794833738829e-08,6.995584813758352099e-08,7.158272832682965369e-08,7.320960851607578640e-08,7.483648870532191910e-08,7.646336889456805181e-08,7.809024908381418451e-08,7.971712927306031721e-08,8.134400946230644992e-08,8.297088965155258262e-08,8.459776984079871533e-08,8.622465003004484803e-08,8.785153021929098074e-08,8.947841040853711344e-08,9.110529059778324614e-08,9.273217078702937885e-08,9.435905097627551155e-08,9.598593116552164426e-08,9.761281135476777696e-08,9.923969154401390966e-08,1.008665717332600424e-07,1.024934519225061751e-07 +0.000000000000000000e+00,8.752474339255813073e-10,1.750494867851162615e-09,2.625742301776743819e-09,3.500989735702324816e-09,4.376237169627905813e-09,5.251484603553486810e-09,6.126732037479067807e-09,7.001979471404648804e-09,7.877226905330228974e-09,8.752474339255809971e-09,9.627721773181390969e-09,1.050296920710697197e-08,1.137821664103255296e-08,1.225346407495813396e-08,1.312871150888371496e-08,1.400395894280929595e-08,1.487920637673487695e-08,1.575445381066045795e-08,1.662970124458603895e-08,1.750494867851161994e-08,1.838019611243720094e-08,1.925544354636278194e-08,2.013069098028836293e-08,2.100593841421394393e-08,2.188118584813952493e-08,2.275643328206510593e-08,2.363168071599068692e-08,2.450692814991626792e-08,2.538217558384184892e-08,2.625742301776742991e-08,2.713267045169301091e-08,2.800791788561859191e-08,2.888316531954417291e-08,2.975841275346975390e-08,3.063366018739533821e-08,3.150890762132092251e-08,3.238415505524650682e-08,3.325940248917209113e-08,3.413464992309767543e-08,3.500989735702325974e-08,3.588514479094884404e-08,3.676039222487442835e-08,3.763563965880001266e-08,3.851088709272559696e-08,3.938613452665118127e-08,4.026138196057676557e-08,4.113662939450234988e-08,4.201187682842793419e-08,4.288712426235351849e-08,4.376237169627910280e-08,4.463761913020468710e-08,4.551286656413027141e-08,4.638811399805585571e-08,4.726336143198144002e-08,4.813860886590702433e-08,4.901385629983260863e-08,4.988910373375819294e-08,5.076435116768377724e-08,5.163959860160936155e-08,5.251484603553494586e-08,5.339009346946053016e-08,5.426534090338611447e-08,5.514058833731169877e-08 +0.000000000000000000e+00,7.843233781759352262e-10,1.568646756351870452e-09,2.352970134527805885e-09,3.137293512703741318e-09,3.921616890879676751e-09,4.705940269055611771e-09,5.490263647231546790e-09,6.274587025407481809e-09,7.058910403583416829e-09,7.843233781759351848e-09,8.627557159935286040e-09,9.411880538111220232e-09,1.019620391628715442e-08,1.098052729446308862e-08,1.176485067263902281e-08,1.254917405081495700e-08,1.333349742899089119e-08,1.411782080716682539e-08,1.490214418534275958e-08,1.568646756351869377e-08,1.647079094169462796e-08,1.725511431987056215e-08,1.803943769804649635e-08,1.882376107622243054e-08,1.960808445439836473e-08,2.039240783257429892e-08,2.117673121075023311e-08,2.196105458892616731e-08,2.274537796710210150e-08,2.352970134527803569e-08,2.431402472345396988e-08,2.509834810162990408e-08,2.588267147980583827e-08,2.666699485798177246e-08,2.745131823615770665e-08,2.823564161433364084e-08,2.901996499250957504e-08,2.980428837068551254e-08,3.058861174886144673e-08,3.137293512703738092e-08,3.215725850521331511e-08,3.294158188338924931e-08,3.372590526156518350e-08,3.451022863974111769e-08,3.529455201791705188e-08,3.607887539609298608e-08,3.686319877426892027e-08,3.764752215244485446e-08,3.843184553062078865e-08,3.921616890879672284e-08,4.000049228697265704e-08,4.078481566514859123e-08,4.156913904332452542e-08,4.235346242150045961e-08,4.313778579967639380e-08,4.392210917785232800e-08,4.470643255602826219e-08,4.549075593420419638e-08,4.627507931238013057e-08,4.705940269055606477e-08,4.784372606873199896e-08,4.862804944690793315e-08,4.941237282508386734e-08 +0.000000000000000000e+00,1.626880189258036660e-09,3.253760378516073321e-09,4.880640567774109981e-09,6.507520757032146641e-09,8.134400946290184129e-09,9.761281135548221616e-09,1.138816132480625910e-08,1.301504151406429659e-08,1.464192170332233408e-08,1.626880189258037157e-08,1.789568208183840905e-08,1.952256227109644654e-08,2.114944246035448403e-08,2.277632264961252152e-08,2.440320283887055900e-08,2.603008302812859649e-08,2.765696321738663398e-08,2.928384340664467147e-08,3.091072359590270565e-08,3.253760378516073652e-08,3.416448397441876739e-08,3.579136416367679826e-08,3.741824435293482913e-08,3.904512454219286000e-08,4.067200473145089087e-08,4.229888492070892174e-08,4.392576510996695261e-08,4.555264529922498348e-08,4.717952548848301435e-08,4.880640567774104522e-08,5.043328586699907609e-08,5.206016605625710696e-08,5.368704624551513783e-08,5.531392643477316870e-08,5.694080662403119957e-08,5.856768681328923044e-08,6.019456700254726131e-08,6.182144719180529218e-08,6.344832738106332305e-08,6.507520757032135392e-08,6.670208775957938479e-08,6.832896794883741566e-08,6.995584813809544653e-08,7.158272832735347740e-08,7.320960851661150827e-08,7.483648870586953914e-08,7.646336889512757001e-08,7.809024908438560088e-08,7.971712927364363175e-08,8.134400946290166262e-08,8.297088965215969349e-08,8.459776984141772436e-08,8.622465003067575523e-08,8.785153021993378610e-08,8.947841040919181697e-08,9.110529059844984784e-08,9.273217078770787871e-08,9.435905097696590958e-08,9.598593116622394045e-08,9.761281135548197132e-08,9.923969154474000219e-08,1.008665717339980331e-07,1.024934519232560639e-07 +0.000000000000000000e+00,1.078649995470170774e-09,2.157299990940341549e-09,3.235949986410512530e-09,4.314599981880683925e-09,5.393249977350855319e-09,6.471899972821026714e-09,7.550549968291197282e-09,8.629199963761367849e-09,9.707849959231538417e-09,1.078649995470170898e-08,1.186514995017187955e-08,1.294379994564205012e-08,1.402244994111222069e-08,1.510109993658239125e-08,1.617974993205256182e-08,1.725839992752273239e-08,1.833704992299290296e-08,1.941569991846307353e-08,2.049434991393324409e-08,2.157299990940341466e-08,2.265164990487358523e-08,2.373029990034375580e-08,2.480894989581392636e-08,2.588759989128409693e-08,2.696624988675426750e-08,2.804489988222443807e-08,2.912354987769460863e-08,3.020219987316477589e-08,3.128084986863494315e-08,3.235949986410511041e-08,3.343814985957527767e-08,3.451679985504544493e-08,3.559544985051561219e-08,3.667409984598577945e-08,3.775274984145594670e-08,3.883139983692611396e-08,3.991004983239628122e-08,4.098869982786644848e-08,4.206734982333661574e-08,4.314599981880678300e-08,4.422464981427695026e-08,4.530329980974711752e-08,4.638194980521728478e-08,4.746059980068745203e-08,4.853924979615761929e-08,4.961789979162778655e-08,5.069654978709795381e-08,5.177519978256812107e-08,5.285384977803828833e-08,5.393249977350845559e-08,5.501114976897862285e-08,5.608979976444879011e-08,5.716844975991895736e-08,5.824709975538912462e-08,5.932574975085929188e-08,6.040439974632945914e-08,6.148304974179962640e-08,6.256169973726979366e-08,6.364034973273996092e-08,6.471899972821012818e-08,6.579764972368029543e-08,6.687629971915046269e-08,6.795494971462062995e-08 +0.000000000000000000e+00,9.781588457163900938e-10,1.956317691432780188e-09,2.934476537149170282e-09,3.912635382865560375e-09,4.890794228581950056e-09,5.868953074298339736e-09,6.847111920014729416e-09,7.825270765731119096e-09,8.803429611447508777e-09,9.781588457163898457e-09,1.075974730288028814e-08,1.173790614859667782e-08,1.271606499431306750e-08,1.369422384002945718e-08,1.467238268574584686e-08,1.565054153146223488e-08,1.662870037717862291e-08,1.760685922289501094e-08,1.858501806861139896e-08,1.956317691432778699e-08,2.054133576004417501e-08,2.151949460576056304e-08,2.249765345147695107e-08,2.347581229719333909e-08,2.445397114290972712e-08,2.543212998862611514e-08,2.641028883434250317e-08,2.738844768005889119e-08,2.836660652577527922e-08,2.934476537149166725e-08,3.032292421720805527e-08,3.130108306292444330e-08,3.227924190864083132e-08,3.325740075435721935e-08,3.423555960007360738e-08,3.521371844578999540e-08,3.619187729150638343e-08,3.717003613722277145e-08,3.814819498293915948e-08,3.912635382865554751e-08,4.010451267437193553e-08,4.108267152008832356e-08,4.206083036580471158e-08,4.303898921152109961e-08,4.401714805723748764e-08,4.499530690295387566e-08,4.597346574867026369e-08,4.695162459438665171e-08,4.792978344010303974e-08,4.890794228581942776e-08,4.988610113153581579e-08,5.086425997725220382e-08,5.184241882296859184e-08,5.282057766868497987e-08,5.379873651440136789e-08,5.477689536011775592e-08,5.575505420583414395e-08,5.673321305155053197e-08,5.771137189726692000e-08,5.868953074298330802e-08,5.966768958869968943e-08,6.064584843441607084e-08,6.162400728013245225e-08 +0.000000000000000000e+00,1.944183282497781804e-09,3.888366564995563609e-09,5.832549847493345413e-09,7.776733129991127218e-09,9.720916412488909849e-09,1.166509969498669248e-08,1.360928297748447511e-08,1.555346625998225774e-08,1.749764954248004038e-08,1.944183282497782301e-08,2.138601610747560564e-08,2.333019938997338827e-08,2.527438267247117090e-08,2.721856595496895353e-08,2.916274923746673617e-08,3.110693251996452211e-08,3.305111580246230805e-08,3.499529908496009399e-08,3.693948236745787993e-08,3.888366564995566587e-08,4.082784893245345181e-08,4.277203221495123775e-08,4.471621549744902369e-08,4.666039877994680963e-08,4.860458206244459557e-08,5.054876534494238151e-08,5.249294862744016745e-08,5.443713190993795339e-08,5.638131519243573933e-08,5.832549847493352527e-08,6.026968175743131783e-08,6.221386503992911039e-08,6.415804832242690294e-08,6.610223160492469550e-08,6.804641488742248806e-08,6.999059816992028062e-08,7.193478145241807317e-08,7.387896473491586573e-08,7.582314801741365829e-08,7.776733129991145085e-08,7.971151458240924341e-08,8.165569786490703596e-08,8.359988114740482852e-08,8.554406442990262108e-08,8.748824771240041364e-08,8.943243099489820619e-08,9.137661427739599875e-08,9.332079755989379131e-08,9.526498084239158387e-08,9.720916412488937643e-08,9.915334740738716898e-08,1.010975306898849615e-07,1.030417139723827541e-07,1.049858972548805467e-07,1.069300805373783392e-07,1.088742638198761318e-07,1.108184471023739243e-07,1.127626303848717169e-07,1.147068136673695094e-07,1.166509969498673020e-07,1.185951802323650946e-07,1.205393635148629004e-07,1.224835467973607061e-07 +0.000000000000000000e+00,1.078649995481138983e-09,2.157299990962277965e-09,3.235949986443416948e-09,4.314599981924555930e-09,5.393249977405694913e-09,6.471899972886833895e-09,7.550549968367972878e-09,8.629199963849111860e-09,9.707849959330250843e-09,1.078649995481138983e-08,1.186514995029252881e-08,1.294379994577366779e-08,1.402244994125480677e-08,1.510109993673594576e-08,1.617974993221708474e-08,1.725839992769822372e-08,1.833704992317936270e-08,1.941569991866050169e-08,2.049434991414164067e-08,2.157299990962277965e-08,2.265164990510391863e-08,2.373029990058505762e-08,2.480894989606619660e-08,2.588759989154733558e-08,2.696624988702847456e-08,2.804489988250961355e-08,2.912354987799075253e-08,3.020219987347189151e-08,3.128084986895303049e-08,3.235949986443416948e-08,3.343814985991530846e-08,3.451679985539644744e-08,3.559544985087758642e-08,3.667409984635872541e-08,3.775274984183986439e-08,3.883139983732100337e-08,3.991004983280214235e-08,4.098869982828328134e-08,4.206734982376442032e-08,4.314599981924555930e-08,4.422464981472669828e-08,4.530329981020783727e-08,4.638194980568897625e-08,4.746059980117011523e-08,4.853924979665125421e-08,4.961789979213239320e-08,5.069654978761353218e-08,5.177519978309467116e-08,5.285384977857581014e-08,5.393249977405694913e-08,5.501114976953808811e-08,5.608979976501922709e-08,5.716844976050036607e-08,5.824709975598150506e-08,5.932574975146264404e-08,6.040439974694378302e-08,6.148304974242492200e-08,6.256169973790606099e-08,6.364034973338719997e-08,6.471899972886833895e-08,6.579764972434947793e-08,6.687629971983061692e-08,6.795494971531175590e-08 +0.000000000000000000e+00,9.781588457274983023e-10,1.956317691454996605e-09,2.934476537182494907e-09,3.912635382909993209e-09,4.890794228637491925e-09,5.868953074364990641e-09,6.847111920092489357e-09,7.825270765819988073e-09,8.803429611547486789e-09,9.781588457274985504e-09,1.075974730300248422e-08,1.173790614872998294e-08,1.271606499445748165e-08,1.369422384018498037e-08,1.467238268591247908e-08,1.565054153163997945e-08,1.662870037736747817e-08,1.760685922309497689e-08,1.858501806882247560e-08,1.956317691454997432e-08,2.054133576027747303e-08,2.151949460600497175e-08,2.249765345173247047e-08,2.347581229745996918e-08,2.445397114318746790e-08,2.543212998891496661e-08,2.641028883464246533e-08,2.738844768036996404e-08,2.836660652609746276e-08,2.934476537182496148e-08,3.032292421755246019e-08,3.130108306327995891e-08,3.227924190900745762e-08,3.325740075473495634e-08,3.423555960046245506e-08,3.521371844618995377e-08,3.619187729191745249e-08,3.717003613764495120e-08,3.814819498337244992e-08,3.912635382909994864e-08,4.010451267482744735e-08,4.108267152055494607e-08,4.206083036628244478e-08,4.303898921200994350e-08,4.401714805773744221e-08,4.499530690346494093e-08,4.597346574919243965e-08,4.695162459491993836e-08,4.792978344064743708e-08,4.890794228637493579e-08,4.988610113210243451e-08,5.086425997782993323e-08,5.184241882355743194e-08,5.282057766928493066e-08,5.379873651501242937e-08,5.477689536073992809e-08,5.575505420646742681e-08,5.673321305219492552e-08,5.771137189792242424e-08,5.868953074364992295e-08,5.966768958937742167e-08,6.064584843510492038e-08,6.162400728083241910e-08 +0.000000000000000000e+00,1.944183282508880087e-09,3.888366565017760173e-09,5.832549847526640260e-09,7.776733130035520347e-09,9.720916412544400434e-09,1.166509969505328052e-08,1.360928297756216061e-08,1.555346626007104069e-08,1.749764954257992078e-08,1.944183282508880087e-08,2.138601610759768095e-08,2.333019939010656104e-08,2.527438267261544113e-08,2.721856595512432121e-08,2.916274923763320130e-08,3.110693252014208139e-08,3.305111580265096478e-08,3.499529908515984818e-08,3.693948236766873157e-08,3.888366565017761497e-08,4.082784893268649836e-08,4.277203221519538176e-08,4.471621549770426516e-08,4.666039878021314855e-08,4.860458206272203195e-08,5.054876534523091534e-08,5.249294862773979874e-08,5.443713191024868213e-08,5.638131519275756553e-08,5.832549847526644892e-08,6.026968175777533232e-08,6.221386504028421571e-08,6.415804832279309911e-08,6.610223160530198251e-08,6.804641488781086590e-08,6.999059817031974930e-08,7.193478145282863269e-08,7.387896473533751609e-08,7.582314801784639948e-08,7.776733130035528288e-08,7.971151458286416627e-08,8.165569786537304967e-08,8.359988114788193306e-08,8.554406443039081646e-08,8.748824771289969985e-08,8.943243099540858325e-08,9.137661427791746665e-08,9.332079756042635004e-08,9.526498084293523344e-08,9.720916412544411683e-08,9.915334740795300023e-08,1.010975306904618836e-07,1.030417139729707670e-07,1.049858972554796504e-07,1.069300805379885338e-07,1.088742638204974172e-07,1.108184471030063006e-07,1.127626303855151840e-07,1.147068136680240674e-07,1.166509969505329508e-07,1.185951802330418342e-07,1.205393635155507176e-07,1.224835467980595877e-07 +0.000000000000000000e+00,1.238862490232927369e-09,2.477724980465854738e-09,3.716587470698782313e-09,4.955449960931710302e-09,6.194312451164638291e-09,7.433174941397566281e-09,8.672037431630495097e-09,9.910899921863423913e-09,1.114976241209635273e-08,1.238862490232928155e-08,1.362748739256221036e-08,1.486634988279513918e-08,1.610521237302806799e-08,1.734407486326099681e-08,1.858293735349392563e-08,1.982179984372685444e-08,2.106066233395978326e-08,2.229952482419271208e-08,2.353838731442564089e-08,2.477724980465856971e-08,2.601611229489149853e-08,2.725497478512442734e-08,2.849383727535735616e-08,2.973269976559028497e-08,3.097156225582321379e-08,3.221042474605614261e-08,3.344928723628907142e-08,3.468814972652200024e-08,3.592701221675492906e-08,3.716587470698785787e-08,3.840473719722078669e-08,3.964359968745371551e-08,4.088246217768664432e-08,4.212132466791957314e-08,4.336018715815250195e-08,4.459904964838543077e-08,4.583791213861835959e-08,4.707677462885128840e-08,4.831563711908421722e-08,4.955449960931714604e-08,5.079336209955007485e-08,5.203222458978300367e-08,5.327108708001593248e-08,5.450994957024886130e-08,5.574881206048179012e-08,5.698767455071471893e-08,5.822653704094764775e-08,5.946539953118057657e-08,6.070426202141350538e-08,6.194312451164642758e-08,6.318198700187934978e-08,6.442084949211227198e-08,6.565971198234519418e-08,6.689857447257811638e-08,6.813743696281103858e-08,6.937629945304396078e-08,7.061516194327688297e-08,7.185402443350980517e-08,7.309288692374272737e-08,7.433174941397564957e-08,7.557061190420857177e-08,7.680947439444149397e-08,7.804833688467441617e-08 +0.000000000000000000e+00,1.167075071075859463e-09,2.334150142151718926e-09,3.501225213227578389e-09,4.668300284303437851e-09,5.835375355379297314e-09,7.002450426455156777e-09,8.169525497531017067e-09,9.336600568606877357e-09,1.050367563968273765e-08,1.167075071075859794e-08,1.283782578183445823e-08,1.400490085291031852e-08,1.517197592398617881e-08,1.633905099506204075e-08,1.750612606613790270e-08,1.867320113721376464e-08,1.984027620828962658e-08,2.100735127936548853e-08,2.217442635044135047e-08,2.334150142151721242e-08,2.450857649259307436e-08,2.567565156366893631e-08,2.684272663474479825e-08,2.800980170582066020e-08,2.917687677689652214e-08,3.034395184797238408e-08,3.151102691904824272e-08,3.267810199012410136e-08,3.384517706119995999e-08,3.501225213227581863e-08,3.617932720335167726e-08,3.734640227442753590e-08,3.851347734550339453e-08,3.968055241657925317e-08,4.084762748765511181e-08,4.201470255873097044e-08,4.318177762980682908e-08,4.434885270088268771e-08,4.551592777195854635e-08,4.668300284303440498e-08,4.785007791411026362e-08,4.901715298518612225e-08,5.018422805626198089e-08,5.135130312733783953e-08,5.251837819841369816e-08,5.368545326948955680e-08,5.485252834056541543e-08,5.601960341164127407e-08,5.718667848271713270e-08,5.835375355379299134e-08,5.952082862486884998e-08,6.068790369594470199e-08,6.185497876702055401e-08,6.302205383809640603e-08,6.418912890917225805e-08,6.535620398024811007e-08,6.652327905132396209e-08,6.769035412239981410e-08,6.885742919347566612e-08,7.002450426455151814e-08,7.119157933562737016e-08,7.235865440670322218e-08,7.352572947777907419e-08 +0.000000000000000000e+00,2.187149137636909325e-09,4.374298275273818650e-09,6.561447412910727976e-09,8.748596550547637301e-09,1.093574568818454663e-08,1.312289482582145595e-08,1.531004396345836693e-08,1.749719310109527791e-08,1.968434223873218889e-08,2.187149137636909987e-08,2.405864051400601085e-08,2.624578965164292183e-08,2.843293878927983281e-08,3.062008792691674710e-08,3.280723706455366138e-08,3.499438620219057567e-08,3.718153533982748996e-08,3.936868447746440425e-08,4.155583361510131854e-08,4.374298275273823283e-08,4.593013189037514711e-08,4.811728102801206140e-08,5.030443016564897569e-08,5.249157930328588998e-08,5.467872844092280427e-08,5.686587757855971856e-08,5.905302671619663284e-08,6.124017585383354713e-08,6.342732499147046142e-08,6.561447412910737571e-08,6.780162326674429000e-08,6.998877240438120428e-08,7.217592154201811857e-08,7.436307067965503286e-08,7.655021981729194715e-08,7.873736895492886144e-08,8.092451809256577573e-08,8.311166723020269001e-08,8.529881636783960430e-08,8.748596550547651859e-08,8.967311464311343288e-08,9.186026378075034717e-08,9.404741291838726146e-08,9.623456205602417574e-08,9.842171119366109003e-08,1.006088603312980043e-07,1.027960094689349186e-07,1.049831586065718329e-07,1.071703077442087472e-07,1.093574568818456615e-07,1.115446060194825758e-07,1.137317551571194901e-07,1.159189042947564043e-07,1.181060534323933186e-07,1.202932025700302461e-07,1.224803517076671737e-07,1.246675008453041012e-07,1.268546499829410287e-07,1.290417991205779562e-07,1.312289482582148838e-07,1.334160973958518113e-07,1.356032465334887388e-07,1.377903956711256663e-07 +0.000000000000000000e+00,1.238862490243152769e-09,2.477724980486305537e-09,3.716587470729458306e-09,4.955449960972611075e-09,6.194312451215763844e-09,7.433174941458916612e-09,8.672037431702069381e-09,9.910899921945222150e-09,1.114976241218837492e-08,1.238862490243152769e-08,1.362748739267468046e-08,1.486634988291783322e-08,1.610521237316098599e-08,1.734407486340413876e-08,1.858293735364729153e-08,1.982179984389044430e-08,2.106066233413359707e-08,2.229952482437674984e-08,2.353838731461990261e-08,2.477724980486305537e-08,2.601611229510620814e-08,2.725497478534936091e-08,2.849383727559251368e-08,2.973269976583566645e-08,3.097156225607881922e-08,3.221042474632197199e-08,3.344928723656512476e-08,3.468814972680827752e-08,3.592701221705143029e-08,3.716587470729458306e-08,3.840473719753773583e-08,3.964359968778088860e-08,4.088246217802404137e-08,4.212132466826719414e-08,4.336018715851034690e-08,4.459904964875349967e-08,4.583791213899665244e-08,4.707677462923980521e-08,4.831563711948295798e-08,4.955449960972611075e-08,5.079336209996926352e-08,5.203222459021241629e-08,5.327108708045556905e-08,5.450994957069872182e-08,5.574881206094187459e-08,5.698767455118502736e-08,5.822653704142818013e-08,5.946539953167133290e-08,6.070426202191448567e-08,6.194312451215763844e-08,6.318198700240079120e-08,6.442084949264394397e-08,6.565971198288709674e-08,6.689857447313024951e-08,6.813743696337340228e-08,6.937629945361655505e-08,7.061516194385970782e-08,7.185402443410286058e-08,7.309288692434601335e-08,7.433174941458916612e-08,7.557061190483231889e-08,7.680947439507547166e-08,7.804833688531862443e-08 +0.000000000000000000e+00,1.167075071086455646e-09,2.334150142172911293e-09,3.501225213259366939e-09,4.668300284345822586e-09,5.835375355432278232e-09,7.002450426518733879e-09,8.169525497605188698e-09,9.336600568691643518e-09,1.050367563977809834e-08,1.167075071086455316e-08,1.283782578195100798e-08,1.400490085303746279e-08,1.517197592412391761e-08,1.633905099521037078e-08,1.750612606629682394e-08,1.867320113738327711e-08,1.984027620846973027e-08,2.100735127955618344e-08,2.217442635064263660e-08,2.334150142172908977e-08,2.450857649281554293e-08,2.567565156390199610e-08,2.684272663498844926e-08,2.800980170607490243e-08,2.917687677716135559e-08,3.034395184824780876e-08,3.151102691933426192e-08,3.267810199042071509e-08,3.384517706150716825e-08,3.501225213259362142e-08,3.617932720368007458e-08,3.734640227476652775e-08,3.851347734585298091e-08,3.968055241693943408e-08,4.084762748802588724e-08,4.201470255911234041e-08,4.318177763019879357e-08,4.434885270128524674e-08,4.551592777237169990e-08,4.668300284345815307e-08,4.785007791454460623e-08,4.901715298563105940e-08,5.018422805671751256e-08,5.135130312780396573e-08,5.251837819889041889e-08,5.368545326997687206e-08,5.485252834106332522e-08,5.601960341214977839e-08,5.718667848323623155e-08,5.835375355432268472e-08,5.952082862540913788e-08,6.068790369649559105e-08,6.185497876758204421e-08,6.302205383866849738e-08,6.418912890975495054e-08,6.535620398084140371e-08,6.652327905192785687e-08,6.769035412301431004e-08,6.885742919410076320e-08,7.002450426518721637e-08,7.119157933627366953e-08,7.235865440736012270e-08,7.352572947844657586e-08 +0.000000000000000000e+00,2.187149137646431001e-09,4.374298275292862002e-09,6.561447412939293004e-09,8.748596550585724005e-09,1.093574568823215418e-08,1.312289482587858435e-08,1.531004396352501453e-08,1.749719310117144470e-08,1.968434223881787488e-08,2.187149137646430505e-08,2.405864051411073522e-08,2.624578965175716540e-08,2.843293878940359557e-08,3.062008792705002244e-08,3.280723706469645261e-08,3.499438620234288278e-08,3.718153533998931296e-08,3.936868447763574313e-08,4.155583361528217331e-08,4.374298275292860348e-08,4.593013189057503365e-08,4.811728102822146383e-08,5.030443016586789400e-08,5.249157930351432418e-08,5.467872844116075435e-08,5.686587757880718452e-08,5.905302671645361470e-08,6.124017585410004487e-08,6.342732499174647505e-08,6.561447412939290522e-08,6.780162326703933540e-08,6.998877240468576557e-08,7.217592154233219574e-08,7.436307067997862592e-08,7.655021981762505609e-08,7.873736895527148627e-08,8.092451809291791644e-08,8.311166723056434661e-08,8.529881636821077679e-08,8.748596550585720696e-08,8.967311464350363714e-08,9.186026378115006731e-08,9.404741291879649748e-08,9.623456205644292766e-08,9.842171119408935783e-08,1.006088603317357880e-07,1.027960094693822182e-07,1.049831586070286484e-07,1.071703077446750785e-07,1.093574568823215087e-07,1.115446060199679389e-07,1.137317551576143690e-07,1.159189042952607992e-07,1.181060534329072294e-07,1.202932025705536596e-07,1.224803517082000897e-07,1.246675008458465199e-07,1.268546499834929501e-07,1.290417991211393803e-07,1.312289482587858104e-07,1.334160973964322406e-07,1.356032465340786708e-07,1.377903956717251010e-07 +0.000000000000000000e+00,1.319718143714991438e-09,2.639436287429982876e-09,3.959154431144974313e-09,5.278872574859965751e-09,6.598590718574957189e-09,7.918308862289948627e-09,9.238027006004939237e-09,1.055774514971992985e-08,1.187746329343492046e-08,1.319718143714991107e-08,1.451689958086490168e-08,1.583661772457989394e-08,1.715633586829488621e-08,1.847605401200987847e-08,1.979577215572487074e-08,2.111549029943986300e-08,2.243520844315485527e-08,2.375492658686984753e-08,2.507464473058483980e-08,2.639436287429983206e-08,2.771408101801482433e-08,2.903379916172981659e-08,3.035351730544480886e-08,3.167323544915980112e-08,3.299295359287479339e-08,3.431267173658978565e-08,3.563238988030477792e-08,3.695210802401977018e-08,3.827182616773476245e-08,3.959154431144975471e-08,4.091126245516474698e-08,4.223098059887973924e-08,4.355069874259473151e-08,4.487041688630972377e-08,4.619013503002471604e-08,4.750985317373970830e-08,4.882957131745470057e-08,5.014928946116969283e-08,5.146900760488468510e-08,5.278872574859967736e-08,5.410844389231466963e-08,5.542816203602966189e-08,5.674788017974465416e-08,5.806759832345964642e-08,5.938731646717463869e-08,6.070703461088963095e-08,6.202675275460462322e-08,6.334647089831961548e-08,6.466618904203460775e-08,6.598590718574960001e-08,6.730562532946459228e-08,6.862534347317958454e-08,6.994506161689457681e-08,7.126477976060956907e-08,7.258449790432456134e-08,7.390421604803955360e-08,7.522393419175454587e-08,7.654365233546953813e-08,7.786337047918453040e-08,7.918308862289952266e-08,8.050280676661451493e-08,8.182252491032950719e-08,8.314224305404449946e-08 +0.000000000000000000e+00,1.290561891552579836e-09,2.581123783105159672e-09,3.871685674657739301e-09,5.162247566210318516e-09,6.452809457762897732e-09,7.743371349315476947e-09,9.033933240868056163e-09,1.032449513242063538e-08,1.161505702397321459e-08,1.290561891552579381e-08,1.419618080707837303e-08,1.548674269863095059e-08,1.677730459018352980e-08,1.806786648173610902e-08,1.935842837328868823e-08,2.064899026484126745e-08,2.193955215639384666e-08,2.323011404794642588e-08,2.452067593949900509e-08,2.581123783105158431e-08,2.710179972260416353e-08,2.839236161415674274e-08,2.968292350570932196e-08,3.097348539726190117e-08,3.226404728881448039e-08,3.355460918036705960e-08,3.484517107191963882e-08,3.613573296347221803e-08,3.742629485502479725e-08,3.871685674657737647e-08,4.000741863812995568e-08,4.129798052968253490e-08,4.258854242123511411e-08,4.387910431278769333e-08,4.516966620434027254e-08,4.646022809589285176e-08,4.775078998744543097e-08,4.904135187899801019e-08,5.033191377055058941e-08,5.162247566210316862e-08,5.291303755365574784e-08,5.420359944520832705e-08,5.549416133676090627e-08,5.678472322831348548e-08,5.807528511986606470e-08,5.936584701141864391e-08,6.065640890297122313e-08,6.194697079452380235e-08,6.323753268607638156e-08,6.452809457762896078e-08,6.581865646918153999e-08,6.710921836073411921e-08,6.839978025228669842e-08,6.969034214383927764e-08,7.098090403539185685e-08,7.227146592694443607e-08,7.356202781849701528e-08,7.485258971004959450e-08,7.614315160160217372e-08,7.743371349315475293e-08,7.872427538470733215e-08,8.001483727625991136e-08,8.130539916781249058e-08 +0.000000000000000000e+00,2.309851311864291894e-09,4.619702623728583787e-09,6.929553935592875268e-09,9.239405247457165921e-09,1.154925655932145657e-08,1.385910787118574723e-08,1.616895918305003788e-08,1.847881049491432853e-08,2.078866180677861919e-08,2.309851311864290984e-08,2.540836443050720049e-08,2.771821574237149114e-08,3.002806705423578511e-08,3.233791836610008238e-08,3.464776967796437965e-08,3.695762098982867692e-08,3.926747230169297419e-08,4.157732361355727146e-08,4.388717492542156873e-08,4.619702623728586600e-08,4.850687754915016327e-08,5.081672886101446054e-08,5.312658017287875781e-08,5.543643148474305508e-08,5.774628279660735235e-08,6.005613410847164962e-08,6.236598542033594689e-08,6.467583673220024416e-08,6.698568804406454143e-08,6.929553935592883870e-08,7.160539066779313597e-08,7.391524197965743324e-08,7.622509329152173051e-08,7.853494460338602778e-08,8.084479591525032506e-08,8.315464722711462233e-08,8.546449853897891960e-08,8.777434985084321687e-08,9.008420116270751414e-08,9.239405247457181141e-08,9.470390378643610868e-08,9.701375509830040595e-08,9.932360641016470322e-08,1.016334577220290005e-07,1.039433090338932978e-07,1.062531603457575950e-07,1.085630116576218923e-07,1.108728629694861896e-07,1.131827142813504868e-07,1.154925655932147841e-07,1.178024169050790814e-07,1.201122682169433787e-07,1.224221195288076627e-07,1.247319708406719467e-07,1.270418221525362308e-07,1.293516734644005148e-07,1.316615247762647988e-07,1.339713760881290829e-07,1.362812273999933669e-07,1.385910787118576509e-07,1.409009300237219350e-07,1.432107813355862190e-07,1.455206326474505030e-07 +0.000000000000000000e+00,1.319718143724009568e-09,2.639436287448019135e-09,3.959154431172028910e-09,5.278872574896039098e-09,6.598590718620049286e-09,7.918308862344059474e-09,9.238027006068069662e-09,1.055774514979207985e-08,1.187746329351609004e-08,1.319718143724010023e-08,1.451689958096411041e-08,1.583661772468812226e-08,1.715633586841213410e-08,1.847605401213614594e-08,1.979577215586015778e-08,2.111549029958416963e-08,2.243520844330818147e-08,2.375492658703219331e-08,2.507464473075620515e-08,2.639436287448021699e-08,2.771408101820422884e-08,2.903379916192824068e-08,3.035351730565225252e-08,3.167323544937626436e-08,3.299295359310027621e-08,3.431267173682428805e-08,3.563238988054829989e-08,3.695210802427231173e-08,3.827182616799632358e-08,3.959154431172033542e-08,4.091126245544434726e-08,4.223098059916835910e-08,4.355069874289237095e-08,4.487041688661638279e-08,4.619013503034039463e-08,4.750985317406440647e-08,4.882957131778841831e-08,5.014928946151243016e-08,5.146900760523644200e-08,5.278872574896045384e-08,5.410844389268446568e-08,5.542816203640847753e-08,5.674788018013248937e-08,5.806759832385650121e-08,5.938731646758051305e-08,6.070703461130453151e-08,6.202675275502854997e-08,6.334647089875256843e-08,6.466618904247658689e-08,6.598590718620060535e-08,6.730562532992462381e-08,6.862534347364864227e-08,6.994506161737266073e-08,7.126477976109667919e-08,7.258449790482069765e-08,7.390421604854471611e-08,7.522393419226873457e-08,7.654365233599275303e-08,7.786337047971677149e-08,7.918308862344078995e-08,8.050280676716480841e-08,8.182252491088882687e-08,8.314224305461284533e-08 +0.000000000000000000e+00,1.290561891562284112e-09,2.581123783124568224e-09,3.871685674686852750e-09,5.162247566249137275e-09,6.452809457811421801e-09,7.743371349373705500e-09,9.033933240935989198e-09,1.032449513249827290e-08,1.161505702406055659e-08,1.290561891562284029e-08,1.419618080718512399e-08,1.548674269874740769e-08,1.677730459030969139e-08,1.806786648187197509e-08,1.935842837343425879e-08,2.064899026499654248e-08,2.193955215655882618e-08,2.323011404812110988e-08,2.452067593968339358e-08,2.581123783124567728e-08,2.710179972280796098e-08,2.839236161437024468e-08,2.968292350593252837e-08,3.097348539749480876e-08,3.226404728905708915e-08,3.355460918061936954e-08,3.484517107218164993e-08,3.613573296374393032e-08,3.742629485530621071e-08,3.871685674686849110e-08,4.000741863843077149e-08,4.129798052999305188e-08,4.258854242155533227e-08,4.387910431311761266e-08,4.516966620467989305e-08,4.646022809624217344e-08,4.775078998780445383e-08,4.904135187936673422e-08,5.033191377092901461e-08,5.162247566249129500e-08,5.291303755405357539e-08,5.420359944561585578e-08,5.549416133717813617e-08,5.678472322874041656e-08,5.807528512030269695e-08,5.936584701186497734e-08,6.065640890342725773e-08,6.194697079498953812e-08,6.323753268655181851e-08,6.452809457811409890e-08,6.581865646967637929e-08,6.710921836123865968e-08,6.839978025280094007e-08,6.969034214436322046e-08,7.098090403592550085e-08,7.227146592748778124e-08,7.356202781905006162e-08,7.485258971061234201e-08,7.614315160217462240e-08,7.743371349373690279e-08,7.872427538529918318e-08,8.001483727686146357e-08,8.130539916842374396e-08 +0.000000000000000000e+00,2.309851311871296459e-09,4.619702623742592918e-09,6.929553935613888964e-09,9.239405247485184182e-09,1.154925655935647940e-08,1.385910787122777462e-08,1.616895918309906984e-08,1.847881049497036506e-08,2.078866180684166027e-08,2.309851311871295549e-08,2.540836443058425071e-08,2.771821574245554593e-08,3.002806705432684115e-08,3.233791836619813967e-08,3.464776967806943820e-08,3.695762098994073673e-08,3.926747230181203526e-08,4.157732361368333378e-08,4.388717492555463231e-08,4.619702623742593084e-08,4.850687754929722936e-08,5.081672886116852789e-08,5.312658017303982642e-08,5.543643148491112495e-08,5.774628279678242347e-08,6.005613410865372200e-08,6.236598542052502053e-08,6.467583673239631905e-08,6.698568804426761758e-08,6.929553935613891611e-08,7.160539066801021464e-08,7.391524197988151316e-08,7.622509329175281169e-08,7.853494460362411022e-08,8.084479591549540874e-08,8.315464722736670727e-08,8.546449853923800580e-08,8.777434985110930433e-08,9.008420116298060285e-08,9.239405247485190138e-08,9.470390378672319991e-08,9.701375509859449843e-08,9.932360641046579696e-08,1.016334577223370955e-07,1.039433090342083940e-07,1.062531603460796925e-07,1.085630116579509911e-07,1.108728629698222896e-07,1.131827142816935881e-07,1.154925655935648867e-07,1.178024169054361852e-07,1.201122682173074705e-07,1.224221195291787690e-07,1.247319708410500675e-07,1.270418221529213661e-07,1.293516734647926646e-07,1.316615247766639631e-07,1.339713760885352616e-07,1.362812274004065602e-07,1.385910787122778587e-07,1.409009300241491572e-07,1.432107813360204557e-07,1.455206326478917543e-07 +0.000000000000000000e+00,1.306033275102845120e-09,2.612066550205690240e-09,3.918099825308534947e-09,5.224133100411379653e-09,6.530166375514224359e-09,7.836199650617069893e-09,9.142232925719915427e-09,1.044826620082276096e-08,1.175429947592560649e-08,1.306033275102845203e-08,1.436636602613129756e-08,1.567239930123414309e-08,1.697843257633698697e-08,1.828446585143983085e-08,1.959049912654267473e-08,2.089653240164551861e-08,2.220256567674836249e-08,2.350859895185120637e-08,2.481463222695405025e-08,2.612066550205689413e-08,2.742669877715973801e-08,2.873273205226258189e-08,3.003876532736542577e-08,3.134479860246826634e-08,3.265083187757110691e-08,3.395686515267394748e-08,3.526289842777678805e-08,3.656893170287962862e-08,3.787496497798246919e-08,3.918099825308530976e-08,4.048703152818815033e-08,4.179306480329099090e-08,4.309909807839383147e-08,4.440513135349667204e-08,4.571116462859951261e-08,4.701719790370235318e-08,4.832323117880519375e-08,4.962926445390803433e-08,5.093529772901087490e-08,5.224133100411371547e-08,5.354736427921655604e-08,5.485339755431939661e-08,5.615943082942223718e-08,5.746546410452507775e-08,5.877149737962791832e-08,6.007753065473075889e-08,6.138356392983359946e-08,6.268959720493644003e-08,6.399563048003928060e-08,6.530166375514212117e-08,6.660769703024496174e-08,6.791373030534780231e-08,6.921976358045064288e-08,7.052579685555348345e-08,7.183183013065632402e-08,7.313786340575916460e-08,7.444389668086200517e-08,7.574992995596484574e-08,7.705596323106768631e-08,7.836199650617052688e-08,7.966802978127336745e-08,8.097406305637620802e-08,8.228009633147904859e-08 +0.000000000000000000e+00,1.325318240846349848e-09,2.650636481692699696e-09,3.975954722539049545e-09,5.301272963385399393e-09,6.626591204231749241e-09,7.951909445078099089e-09,9.277227685924448937e-09,1.060254592677079879e-08,1.192786416761714863e-08,1.325318240846349848e-08,1.457850064930984833e-08,1.590381889015619818e-08,1.722913713100254803e-08,1.855445537184889787e-08,1.987977361269524772e-08,2.120509185354159757e-08,2.253041009438794742e-08,2.385572833523429727e-08,2.518104657608064712e-08,2.650636481692699696e-08,2.783168305777334681e-08,2.915700129861969666e-08,3.048231953946604651e-08,3.180763778031239636e-08,3.313295602115874621e-08,3.445827426200509605e-08,3.578359250285144590e-08,3.710891074369779575e-08,3.843422898454414560e-08,3.975954722539049545e-08,4.108486546623684529e-08,4.241018370708319514e-08,4.373550194792954499e-08,4.506082018877589484e-08,4.638613842962224469e-08,4.771145667046859454e-08,4.903677491131494438e-08,5.036209315216129423e-08,5.168741139300764408e-08,5.301272963385399393e-08,5.433804787470034378e-08,5.566336611554669362e-08,5.698868435639304347e-08,5.831400259723939332e-08,5.963932083808574317e-08,6.096463907893209302e-08,6.228995731977844287e-08,6.361527556062479271e-08,6.494059380147114256e-08,6.626591204231749241e-08,6.759123028316384226e-08,6.891654852401019211e-08,7.024186676485654196e-08,7.156718500570289180e-08,7.289250324654924165e-08,7.421782148739559150e-08,7.554313972824194135e-08,7.686845796908829120e-08,7.819377620993464104e-08,7.951909445078099089e-08,8.084441269162734074e-08,8.216973093247369059e-08,8.349504917332004044e-08 +0.000000000000000000e+00,2.293312442823559438e-09,4.586624885647118876e-09,6.879937328470678314e-09,9.173249771294237751e-09,1.146656221411779802e-08,1.375987465694135828e-08,1.605318709976491855e-08,1.834649954258847881e-08,2.063981198541203908e-08,2.293312442823559934e-08,2.522643687105915961e-08,2.751974931388271987e-08,2.981306175670628014e-08,3.210637419952983709e-08,3.439968664235339405e-08,3.669299908517695101e-08,3.898631152800050796e-08,4.127962397082406492e-08,4.357293641364762187e-08,4.586624885647117883e-08,4.815956129929473579e-08,5.045287374211829274e-08,5.274618618494184970e-08,5.503949862776540666e-08,5.733281107058896361e-08,5.962612351341252057e-08,6.191943595623607753e-08,6.421274839905963448e-08,6.650606084188319144e-08,6.879937328470674839e-08,7.109268572753030535e-08,7.338599817035386231e-08,7.567931061317741926e-08,7.797262305600097622e-08,8.026593549882453318e-08,8.255924794164809013e-08,8.485256038447164709e-08,8.714587282729520405e-08,8.943918527011876100e-08,9.173249771294231796e-08,9.402581015576587491e-08,9.631912259858943187e-08,9.861243504141298883e-08,1.009057474842365458e-07,1.031990599270601027e-07,1.054923723698836597e-07,1.077856848127072167e-07,1.100789972555307736e-07,1.123723096983543306e-07,1.146656221411778875e-07,1.169589345840014445e-07,1.192522470268250147e-07,1.215455594696485981e-07,1.238388719124721815e-07,1.261321843552957649e-07,1.284254967981193484e-07,1.307188092409429318e-07,1.330121216837665152e-07,1.353054341265900987e-07,1.375987465694136821e-07,1.398920590122372655e-07,1.421853714550608489e-07,1.444786838978844324e-07 +0.000000000000000000e+00,1.306033275109802329e-09,2.612066550219604659e-09,3.918099825329407195e-09,5.224133100439210145e-09,6.530166375549013094e-09,7.836199650658816044e-09,9.142232925768618167e-09,1.044826620087842029e-08,1.175429947598822241e-08,1.306033275109802453e-08,1.436636602620782666e-08,1.567239930131762878e-08,1.697843257642743090e-08,1.828446585153723302e-08,1.959049912664703515e-08,2.089653240175683727e-08,2.220256567686663939e-08,2.350859895197644152e-08,2.481463222708624364e-08,2.612066550219604576e-08,2.742669877730584788e-08,2.873273205241565001e-08,3.003876532752544882e-08,3.134479860263525094e-08,3.265083187774505306e-08,3.395686515285485519e-08,3.526289842796465731e-08,3.656893170307445943e-08,3.787496497818426156e-08,3.918099825329406368e-08,4.048703152840386580e-08,4.179306480351366792e-08,4.309909807862347005e-08,4.440513135373327217e-08,4.571116462884307429e-08,4.701719790395287641e-08,4.832323117906267854e-08,4.962926445417248066e-08,5.093529772928228278e-08,5.224133100439208490e-08,5.354736427950188703e-08,5.485339755461168915e-08,5.615943082972149127e-08,5.746546410483129339e-08,5.877149737994109552e-08,6.007753065505089764e-08,6.138356393016069976e-08,6.268959720527050188e-08,6.399563048038030401e-08,6.530166375549010613e-08,6.660769703059990825e-08,6.791373030570971037e-08,6.921976358081951250e-08,7.052579685592931462e-08,7.183183013103911674e-08,7.313786340614891887e-08,7.444389668125872099e-08,7.574992995636852311e-08,7.705596323147832523e-08,7.836199650658812736e-08,7.966802978169792948e-08,8.097406305680773160e-08,8.228009633191753372e-08 +0.000000000000000000e+00,1.325318240854383633e-09,2.650636481708767266e-09,3.975954722563151106e-09,5.301272963417535360e-09,6.626591204271919613e-09,7.951909445126303867e-09,9.277227685980687293e-09,1.060254592683507072e-08,1.192786416768945415e-08,1.325318240854383757e-08,1.457850064939822100e-08,1.590381889025260442e-08,1.722913713110698785e-08,1.855445537196137128e-08,1.987977361281575470e-08,2.120509185367013813e-08,2.253041009452452156e-08,2.385572833537890498e-08,2.518104657623328841e-08,2.650636481708767184e-08,2.783168305794205526e-08,2.915700129879643869e-08,3.048231953965081881e-08,3.180763778050520223e-08,3.313295602135958566e-08,3.445827426221396908e-08,3.578359250306835251e-08,3.710891074392273594e-08,3.843422898477711936e-08,3.975954722563150279e-08,4.108486546648588622e-08,4.241018370734026964e-08,4.373550194819465307e-08,4.506082018904903649e-08,4.638613842990341992e-08,4.771145667075780335e-08,4.903677491161218677e-08,5.036209315246657020e-08,5.168741139332095363e-08,5.301272963417533705e-08,5.433804787502972048e-08,5.566336611588410391e-08,5.698868435673848733e-08,5.831400259759287076e-08,5.963932083844725418e-08,6.096463907930163761e-08,6.228995732015602104e-08,6.361527556101040446e-08,6.494059380186478789e-08,6.626591204271917132e-08,6.759123028357355474e-08,6.891654852442793817e-08,7.024186676528232159e-08,7.156718500613670502e-08,7.289250324699108845e-08,7.421782148784547187e-08,7.554313972869985530e-08,7.686845796955423873e-08,7.819377621040862215e-08,7.951909445126300558e-08,8.084441269211738901e-08,8.216973093297177243e-08,8.349504917382615586e-08 +0.000000000000000000e+00,2.293312442827742077e-09,4.586624885655484153e-09,6.879937328483225816e-09,9.173249771310966652e-09,1.146656221413870749e-08,1.375987465696644832e-08,1.605318709979418751e-08,1.834649954262192669e-08,2.063981198544966587e-08,2.293312442827740505e-08,2.522643687110514423e-08,2.751974931393288341e-08,2.981306175676062259e-08,3.210637419958836178e-08,3.439968664241610096e-08,3.669299908524384014e-08,3.898631152807157932e-08,4.127962397089931850e-08,4.357293641372705768e-08,4.586624885655479687e-08,4.815956129938253605e-08,5.045287374221027523e-08,5.274618618503801441e-08,5.503949862786575359e-08,5.733281107069349277e-08,5.962612351352123195e-08,6.191943595634897114e-08,6.421274839917671032e-08,6.650606084200444950e-08,6.879937328483218868e-08,7.109268572765992786e-08,7.338599817048766704e-08,7.567931061331540622e-08,7.797262305614314541e-08,8.026593549897088459e-08,8.255924794179862377e-08,8.485256038462636295e-08,8.714587282745410213e-08,8.943918527028184131e-08,9.173249771310958050e-08,9.402581015593731968e-08,9.631912259876505886e-08,9.861243504159279804e-08,1.009057474844205372e-07,1.031990599272482764e-07,1.054923723700760156e-07,1.077856848129037548e-07,1.100789972557314939e-07,1.123723096985592331e-07,1.146656221413869723e-07,1.169589345842147115e-07,1.192522470270424374e-07,1.215455594698701502e-07,1.238388719126978629e-07,1.261321843555255756e-07,1.284254967983532883e-07,1.307188092411810010e-07,1.330121216840087137e-07,1.353054341268364264e-07,1.375987465696641391e-07,1.398920590124918518e-07,1.421853714553195646e-07,1.444786838981472773e-07 +0.000000000000000000e+00,1.192043978374430758e-09,2.384087956748861517e-09,3.576131935123292275e-09,4.768175913497723034e-09,5.960219891872153792e-09,7.152263870246584551e-09,8.344307848621015309e-09,9.536351826995446068e-09,1.072839580536987683e-08,1.192043978374430758e-08,1.311248376211873834e-08,1.430452774049316910e-08,1.549657171886759986e-08,1.668861569724203062e-08,1.788065967561646138e-08,1.907270365399089214e-08,2.026474763236532289e-08,2.145679161073975365e-08,2.264883558911418441e-08,2.384087956748861517e-08,2.503292354586304593e-08,2.622496752423747669e-08,2.741701150261190745e-08,2.860905548098633820e-08,2.980109945936076896e-08,3.099314343773519972e-08,3.218518741610963048e-08,3.337723139448406124e-08,3.456927537285849200e-08,3.576131935123292275e-08,3.695336332960735351e-08,3.814540730798178427e-08,3.933745128635621503e-08,4.052949526473064579e-08,4.172153924310507655e-08,4.291358322147950731e-08,4.410562719985393806e-08,4.529767117822836882e-08,4.648971515660279958e-08,4.768175913497723034e-08,4.887380311335166110e-08,5.006584709172609186e-08,5.125789107010052261e-08,5.244993504847495337e-08,5.364197902684938413e-08,5.483402300522381489e-08,5.602606698359824565e-08,5.721811096197267641e-08,5.841015494034710717e-08,5.960219891872153792e-08,6.079424289709596868e-08,6.198628687547039944e-08,6.317833085384483020e-08,6.437037483221926096e-08,6.556241881059369172e-08,6.675446278896812248e-08,6.794650676734255323e-08,6.913855074571698399e-08,7.033059472409141475e-08,7.152263870246584551e-08,7.271468268084027627e-08,7.390672665921470703e-08,7.509877063758913778e-08 +0.000000000000000000e+00,1.261342729014261966e-09,2.522685458028523931e-09,3.784028187042785690e-09,5.045370916057047035e-09,6.306713645071308380e-09,7.568056374085569726e-09,8.829399103099831898e-09,1.009074183211409407e-08,1.135208456112835624e-08,1.261342729014261842e-08,1.387477001915688059e-08,1.513611274817114276e-08,1.639745547718540493e-08,1.765879820619966710e-08,1.892014093521392928e-08,2.018148366422819145e-08,2.144282639324245362e-08,2.270416912225671579e-08,2.396551185127097797e-08,2.522685458028524014e-08,2.648819730929950231e-08,2.774954003831376448e-08,2.901088276732802666e-08,3.027222549634229214e-08,3.153356822535656093e-08,3.279491095437082972e-08,3.405625368338509851e-08,3.531759641239936730e-08,3.657893914141363609e-08,3.784028187042790488e-08,3.910162459944217367e-08,4.036296732845644246e-08,4.162431005747071125e-08,4.288565278648498004e-08,4.414699551549924883e-08,4.540833824451351762e-08,4.666968097352778641e-08,4.793102370254205520e-08,4.919236643155632399e-08,5.045370916057059277e-08,5.171505188958486156e-08,5.297639461859913035e-08,5.423773734761339914e-08,5.549908007662766793e-08,5.676042280564193672e-08,5.802176553465620551e-08,5.928310826367047430e-08,6.054445099268474309e-08,6.180579372169901188e-08,6.306713645071328067e-08,6.432847917972754946e-08,6.558982190874181825e-08,6.685116463775608704e-08,6.811250736677035583e-08,6.937385009578462462e-08,7.063519282479889341e-08,7.189653555381316220e-08,7.315787828282743099e-08,7.441922101184169978e-08,7.568056374085596857e-08,7.694190646987023736e-08,7.820324919888450615e-08,7.946459192789877494e-08 +0.000000000000000000e+00,2.128728641666642883e-09,4.257457283333285765e-09,6.386185924999929061e-09,8.514914566666573185e-09,1.064364320833321731e-08,1.277237184999986143e-08,1.490110049166650555e-08,1.702982913333314968e-08,1.915855777499979380e-08,2.128728641666643792e-08,2.341601505833308205e-08,2.554474369999972617e-08,2.767347234166637029e-08,2.980220098333301442e-08,3.193092962499966185e-08,3.405965826666630597e-08,3.618838690833295010e-08,3.831711554999959422e-08,4.044584419166623834e-08,4.257457283333288247e-08,4.470330147499952659e-08,4.683203011666617071e-08,4.896075875833281484e-08,5.108948739999945896e-08,5.321821604166610308e-08,5.534694468333274721e-08,5.747567332499939133e-08,5.960440196666603545e-08,6.173313060833267958e-08,6.386185924999932370e-08,6.599058789166596782e-08,6.811931653333261195e-08,7.024804517499925607e-08,7.237677381666590019e-08,7.450550245833254432e-08,7.663423109999918844e-08,7.876295974166583256e-08,8.089168838333247669e-08,8.302041702499912081e-08,8.514914566666576493e-08,8.727787430833240906e-08,8.940660294999905318e-08,9.153533159166569730e-08,9.366406023333234143e-08,9.579278887499898555e-08,9.792151751666562967e-08,1.000502461583322738e-07,1.021789747999989179e-07,1.043077034416655620e-07,1.064364320833322062e-07,1.085651607249988503e-07,1.106938893666654944e-07,1.128226180083321385e-07,1.149513466499987827e-07,1.170800752916654268e-07,1.192088039333320709e-07,1.213375325749987283e-07,1.234662612166653856e-07,1.255949898583320430e-07,1.277237184999987003e-07,1.298524471416653577e-07,1.319811757833320151e-07,1.341099044249986724e-07 +0.000000000000000000e+00,1.192043978379090680e-09,2.384087956758181361e-09,3.576131935137272041e-09,4.768175913516362722e-09,5.960219891895453816e-09,7.152263870274544910e-09,8.344307848653636004e-09,9.536351827032727098e-09,1.072839580541181819e-08,1.192043978379090929e-08,1.311248376217000038e-08,1.430452774054909147e-08,1.549657171892818257e-08,1.668861569730727201e-08,1.788065967568636145e-08,1.907270365406545089e-08,2.026474763244454033e-08,2.145679161082362977e-08,2.264883558920271921e-08,2.384087956758180865e-08,2.503292354596089809e-08,2.622496752433998753e-08,2.741701150271907697e-08,2.860905548109816640e-08,2.980109945947725584e-08,3.099314343785634528e-08,3.218518741623543472e-08,3.337723139461452416e-08,3.456927537299361360e-08,3.576131935137270304e-08,3.695336332975179248e-08,3.814540730813088192e-08,3.933745128650997136e-08,4.052949526488906080e-08,4.172153924326815024e-08,4.291358322164723968e-08,4.410562720002632912e-08,4.529767117840541856e-08,4.648971515678450800e-08,4.768175913516359744e-08,4.887380311354268688e-08,5.006584709192177632e-08,5.125789107030086576e-08,5.244993504867995520e-08,5.364197902705904464e-08,5.483402300543813408e-08,5.602606698381722352e-08,5.721811096219631296e-08,5.841015494057540240e-08,5.960219891895449184e-08,6.079424289733358789e-08,6.198628687571267733e-08,6.317833085409176677e-08,6.437037483247085621e-08,6.556241881084994565e-08,6.675446278922903509e-08,6.794650676760812453e-08,6.913855074598721397e-08,7.033059472436630341e-08,7.152263870274539285e-08,7.271468268112448229e-08,7.390672665950357173e-08,7.509877063788266117e-08 +0.000000000000000000e+00,1.261342729020079320e-09,2.522685458040158640e-09,3.784028187060238374e-09,5.045370916080318107e-09,6.306713645100397841e-09,7.568056374120476748e-09,8.829399103140555654e-09,1.009074183216063456e-08,1.135208456118071347e-08,1.261342729020079237e-08,1.387477001922087128e-08,1.513611274824095019e-08,1.639745547726102909e-08,1.765879820628110800e-08,1.892014093530118691e-08,2.018148366432126581e-08,2.144282639334134472e-08,2.270416912236142363e-08,2.396551185138150253e-08,2.522685458040158144e-08,2.648819730942166034e-08,2.774954003844173925e-08,2.901088276746181816e-08,3.027222549648189376e-08,3.153356822550197266e-08,3.279491095452205157e-08,3.405625368354213047e-08,3.531759641256220938e-08,3.657893914158228829e-08,3.784028187060236719e-08,3.910162459962244610e-08,4.036296732864252501e-08,4.162431005766260391e-08,4.288565278668268282e-08,4.414699551570276173e-08,4.540833824472284063e-08,4.666968097374291954e-08,4.793102370276299845e-08,4.919236643178307735e-08,5.045370916080315626e-08,5.171505188982323516e-08,5.297639461884331407e-08,5.423773734786339298e-08,5.549908007688347188e-08,5.676042280590355079e-08,5.802176553492362970e-08,5.928310826394370860e-08,6.054445099296378751e-08,6.180579372198386642e-08,6.306713645100394532e-08,6.432847918002402423e-08,6.558982190904410314e-08,6.685116463806418204e-08,6.811250736708426095e-08,6.937385009610433986e-08,7.063519282512441876e-08,7.189653555414449767e-08,7.315787828316457657e-08,7.441922101218465548e-08,7.568056374120473439e-08,7.694190647022481329e-08,7.820324919924489220e-08,7.946459192826497111e-08 +0.000000000000000000e+00,2.128728641668286077e-09,4.257457283336572154e-09,6.386185925004858231e-09,8.514914566673144307e-09,1.064364320834142956e-08,1.277237185000971481e-08,1.490110049167800006e-08,1.702982913334628531e-08,1.915855777501457056e-08,2.128728641668285581e-08,2.341601505835114106e-08,2.554474370001942630e-08,2.767347234168771155e-08,2.980220098335599680e-08,3.193092962502427875e-08,3.405965826669256399e-08,3.618838690836084924e-08,3.831711555002913449e-08,4.044584419169741974e-08,4.257457283336570499e-08,4.470330147503399024e-08,4.683203011670227549e-08,4.896075875837056074e-08,5.108948740003884599e-08,5.321821604170713124e-08,5.534694468337541649e-08,5.747567332504370174e-08,5.960440196671198699e-08,6.173313060838027224e-08,6.386185925004855749e-08,6.599058789171684274e-08,6.811931653338512799e-08,7.024804517505341324e-08,7.237677381672169849e-08,7.450550245838998374e-08,7.663423110005826899e-08,7.876295974172655424e-08,8.089168838339483949e-08,8.302041702506312474e-08,8.514914566673140999e-08,8.727787430839969524e-08,8.940660295006798049e-08,9.153533159173626574e-08,9.366406023340455099e-08,9.579278887507283624e-08,9.792151751674112149e-08,1.000502461584094067e-07,1.021789748000776920e-07,1.043077034417459772e-07,1.064364320834142625e-07,1.085651607250825477e-07,1.106938893667508330e-07,1.128226180084191182e-07,1.149513466500874035e-07,1.170800752917556887e-07,1.192088039334239740e-07,1.213375325750922725e-07,1.234662612167605710e-07,1.255949898584288694e-07,1.277237185000971679e-07,1.298524471417654664e-07,1.319811757834337649e-07,1.341099044251020634e-07 +0.000000000000000000e+00,-7.389542091981804159e-21,-1.477908418396360832e-20,-2.216862627594541248e-20,-2.955816836792721664e-20,-3.694771045990902079e-20,-4.433725255189082495e-20,-5.172679464387262911e-20,-5.911633673585443327e-20,-6.650587882783623743e-20,-7.389542091981804159e-20,-8.128496301179984575e-20,-8.867450510378164991e-20,-9.606404719576345406e-20,-1.034535892877452582e-19,-1.108431313797270624e-19,-1.182326734717088665e-19,-1.256222155636906707e-19,-1.330117576556724749e-19,-1.404012997476542790e-19,-1.477908418396360832e-19,-1.551803839316178873e-19,-1.625699260235996915e-19,-1.699594681155814957e-19,-1.773490102075632998e-19,-1.847385522995451040e-19,-1.921280943915269081e-19,-1.995176364835087123e-19,-2.069071785754905164e-19,-2.142967206674723206e-19,-2.216862627594541248e-19,-2.290758048514359289e-19,-2.364653469434177331e-19,-2.438548890353995372e-19,-2.512444311273813414e-19,-2.586339732193631456e-19,-2.660235153113449497e-19,-2.734130574033267539e-19,-2.808025994953085580e-19,-2.881921415872903622e-19,-2.955816836792721664e-19,-3.029712257712539705e-19,-3.103607678632357747e-19,-3.177503099552175788e-19,-3.251398520471993830e-19,-3.325293941391811871e-19,-3.399189362311629913e-19,-3.473084783231447955e-19,-3.546980204151265996e-19,-3.620875625071084038e-19,-3.694771045990902079e-19,-3.768666466910720121e-19,-3.842561887830538163e-19,-3.916457308750356204e-19,-3.990352729670174246e-19,-4.064248150589992287e-19,-4.138143571509810329e-19,-4.212038992429628371e-19,-4.285934413349446412e-19,-4.359829834269264454e-19,-4.433725255189082495e-19,-4.507620676108900537e-19,-4.581516097028718578e-19,-4.655411517948536620e-19 +0.000000000000000000e+00,-6.279789305337395257e-21,-1.255957861067479051e-20,-1.883936791601218502e-20,-2.511915722134957802e-20,-3.139894652668697403e-20,-3.767873583202437004e-20,-4.395852513736176605e-20,-5.023831444269916205e-20,-5.651810374803655806e-20,-6.279789305337394805e-20,-6.907768235871133804e-20,-7.535747166404872804e-20,-8.163726096938611803e-20,-8.791705027472350802e-20,-9.419683958006089801e-20,-1.004766288853982880e-19,-1.067564181907356780e-19,-1.130362074960730680e-19,-1.193159968014104459e-19,-1.255957861067478239e-19,-1.318755754120852018e-19,-1.381553647174225798e-19,-1.444351540227599577e-19,-1.507149433280973357e-19,-1.569947326334347137e-19,-1.632745219387720916e-19,-1.695543112441094696e-19,-1.758341005494468475e-19,-1.821138898547842255e-19,-1.883936791601216034e-19,-1.946734684654589814e-19,-2.009532577707963593e-19,-2.072330470761337373e-19,-2.135128363814711152e-19,-2.197926256868084932e-19,-2.260724149921458952e-19,-2.323522042974832972e-19,-2.386319936028206993e-19,-2.449117829081581013e-19,-2.511915722134955033e-19,-2.574713615188329054e-19,-2.637511508241703074e-19,-2.700309401295077094e-19,-2.763107294348451114e-19,-2.825905187401825135e-19,-2.888703080455199155e-19,-2.951500973508573175e-19,-3.014298866561947195e-19,-3.077096759615321216e-19,-3.139894652668695236e-19,-3.202692545722069256e-19,-3.265490438775443277e-19,-3.328288331828817297e-19,-3.391086224882191317e-19,-3.453884117935565337e-19,-3.516682010988939358e-19,-3.579479904042313378e-19,-3.642277797095687398e-19,-3.705075690149061419e-19,-3.767873583202435439e-19,-3.830671476255809459e-19,-3.893469369309183479e-19,-3.956267262362557500e-19 +0.000000000000000000e+00,-1.266767793301082710e-21,-2.533535586602165420e-21,-3.800303379903247941e-21,-5.067071173204330087e-21,-6.333838966505412233e-21,-7.600606759806494378e-21,-8.867374553107576524e-21,-1.013414234640865867e-20,-1.140091013970974082e-20,-1.266767793301082296e-20,-1.393444572631190511e-20,-1.520121351961298575e-20,-1.646798131291406639e-20,-1.773474910621514703e-20,-1.900151689951622767e-20,-2.026828469281730831e-20,-2.153505248611838895e-20,-2.280182027941946959e-20,-2.406858807272055023e-20,-2.533535586602163088e-20,-2.660212365932271152e-20,-2.786889145262379216e-20,-2.913565924592487581e-20,-3.040242703922595946e-20,-3.166919483252704311e-20,-3.293596262582812676e-20,-3.420273041912921041e-20,-3.546949821243029406e-20,-3.673626600573137771e-20,-3.800303379903246136e-20,-3.926980159233354501e-20,-4.053656938563462866e-20,-4.180333717893571231e-20,-4.307010497223679596e-20,-4.433687276553787961e-20,-4.560364055883896326e-20,-4.687040835214004691e-20,-4.813717614544113056e-20,-4.940394393874221421e-20,-5.067071173204329786e-20,-5.193747952534438151e-20,-5.320424731864546516e-20,-5.447101511194654881e-20,-5.573778290524763246e-20,-5.700455069854871611e-20,-5.827131849184979976e-20,-5.953808628515088341e-20,-6.080485407845196706e-20,-6.207162187175305071e-20,-6.333838966505413436e-20,-6.460515745835521801e-20,-6.587192525165630166e-20,-6.713869304495738532e-20,-6.840546083825846897e-20,-6.967222863155955262e-20,-7.093899642486063627e-20,-7.220576421816171992e-20,-7.347253201146280357e-20,-7.473929980476388722e-20,-7.600606759806497087e-20,-7.727283539136605452e-20,-7.853960318466713817e-20,-7.980637097796822182e-20 +0.000000000000000000e+00,1.469239194659232211e-09,2.938478389318464422e-09,4.407717583977696632e-09,5.876956778636928843e-09,7.346195973296161054e-09,8.815435167955393265e-09,1.028467436261462548e-08,1.175391355727385769e-08,1.322315275193308990e-08,1.469239194659232211e-08,1.616163114125155266e-08,1.763087033591078322e-08,1.910010953057001378e-08,2.056934872522924433e-08,2.203858791988847489e-08,2.350782711454770545e-08,2.497706630920693600e-08,2.644630550386616656e-08,2.791554469852539712e-08,2.938478389318462767e-08,3.085402308784385823e-08,3.232326228250309209e-08,3.379250147716232596e-08,3.526174067182155982e-08,3.673097986648079369e-08,3.820021906114002755e-08,3.966945825579926142e-08,4.113869745045849528e-08,4.260793664511772915e-08,4.407717583977696301e-08,4.554641503443619688e-08,4.701565422909543075e-08,4.848489342375466461e-08,4.995413261841389848e-08,5.142337181307313234e-08,5.289261100773236621e-08,5.436185020239160007e-08,5.583108939705083394e-08,5.730032859171006780e-08,5.876956778636930167e-08,6.023880698102852891e-08,6.170804617568775616e-08,6.317728537034698341e-08,6.464652456500621066e-08,6.611576375966543791e-08,6.758500295432466515e-08,6.905424214898389240e-08,7.052348134364311965e-08,7.199272053830234690e-08,7.346195973296157414e-08,7.493119892762080139e-08,7.640043812228002864e-08,7.786967731693925589e-08,7.933891651159848313e-08,8.080815570625771038e-08,8.227739490091693763e-08,8.374663409557616488e-08,8.521587329023539213e-08,8.668511248489461937e-08,8.815435167955384662e-08,8.962359087421307387e-08,9.109283006887230112e-08,9.256206926353152836e-08 +0.000000000000000000e+00,-6.703089926388797070e-21,-1.340617985277759414e-20,-2.010926977916639121e-20,-2.681235970555518828e-20,-3.351544963194398535e-20,-4.021853955833278242e-20,-4.692162948472157949e-20,-5.362471941111037656e-20,-6.032780933749917363e-20,-6.703089926388797070e-20,-7.373398919027676777e-20,-8.043707911666556484e-20,-8.714016904305436190e-20,-9.384325896944315897e-20,-1.005463488958319560e-19,-1.072494388222207531e-19,-1.139525287486095502e-19,-1.206556186749983473e-19,-1.273587086013871443e-19,-1.340617985277759414e-19,-1.407648884541647385e-19,-1.474679783805535355e-19,-1.541710683069423326e-19,-1.608741582333311297e-19,-1.675772481597199267e-19,-1.742803380861087238e-19,-1.809834280124975209e-19,-1.876865179388863179e-19,-1.943896078652751150e-19,-2.010926977916639121e-19,-2.077957877180527092e-19,-2.144988776444415062e-19,-2.212019675708303033e-19,-2.279050574972191004e-19,-2.346081474236078974e-19,-2.413112373499966945e-19,-2.480143272763854916e-19,-2.547174172027742886e-19,-2.614205071291630857e-19,-2.681235970555518828e-19,-2.748266869819406799e-19,-2.815297769083294769e-19,-2.882328668347182740e-19,-2.949359567611070711e-19,-3.016390466874958681e-19,-3.083421366138846652e-19,-3.150452265402734623e-19,-3.217483164666622593e-19,-3.284514063930510564e-19,-3.351544963194398535e-19,-3.418575862458286505e-19,-3.485606761722174476e-19,-3.552637660986062447e-19,-3.619668560249950418e-19,-3.686699459513838388e-19,-3.753730358777726359e-19,-3.820761258041614330e-19,-3.887792157305502300e-19,-3.954823056569390271e-19,-4.021853955833278242e-19,-4.088884855097166212e-19,-4.155915754361054183e-19,-4.222946653624942154e-19 +0.000000000000000000e+00,4.543314893597370193e-10,9.086629787194740386e-10,1.362994468079211058e-09,1.817325957438948077e-09,2.271657446798684890e-09,2.725988936158421702e-09,3.180320425518158515e-09,3.634651914877895327e-09,4.088983404237632140e-09,4.543314893597368952e-09,4.997646382957105764e-09,5.451977872316842577e-09,5.906309361676579389e-09,6.360640851036316202e-09,6.814972340396053014e-09,7.269303829755789827e-09,7.723635319115526639e-09,8.177966808475264279e-09,8.632298297835001919e-09,9.086629787194739558e-09,9.540961276554477198e-09,9.995292765914214838e-09,1.044962425527395248e-08,1.090395574463369012e-08,1.135828723399342776e-08,1.181261872335316540e-08,1.226695021271290304e-08,1.272128170207264068e-08,1.317561319143237832e-08,1.362994468079211595e-08,1.408427617015185359e-08,1.453860765951159123e-08,1.499293914887132887e-08,1.544727063823106651e-08,1.590160212759080415e-08,1.635593361695054179e-08,1.681026510631027943e-08,1.726459659567001707e-08,1.771892808502975471e-08,1.817325957438949235e-08,1.862759106374922999e-08,1.908192255310896763e-08,1.953625404246870527e-08,1.999058553182844291e-08,2.044491702118818055e-08,2.089924851054791819e-08,2.135357999990765583e-08,2.180791148926739347e-08,2.226224297862713111e-08,2.271657446798686875e-08,2.317090595734660639e-08,2.362523744670634403e-08,2.407956893606608167e-08,2.453390042542581931e-08,2.498823191478555695e-08,2.544256340414529459e-08,2.589689489350503223e-08,2.635122638286476987e-08,2.680555787222450751e-08,2.725988936158424514e-08,2.771422085094398278e-08,2.816855234030372042e-08,2.862288382966345806e-08 +0.000000000000000000e+00,-4.302765171619923126e-21,-8.605530343239846253e-21,-1.290829551485976938e-20,-1.721106068647969251e-20,-2.151382585809961413e-20,-2.581659102971953575e-20,-3.011935620133945737e-20,-3.442212137295937899e-20,-3.872488654457930061e-20,-4.302765171619922224e-20,-4.733041688781914386e-20,-5.163318205943906548e-20,-5.593594723105899312e-20,-6.023871240267892678e-20,-6.454147757429886044e-20,-6.884424274591879410e-20,-7.314700791753872776e-20,-7.744977308915866141e-20,-8.175253826077859507e-20,-8.605530343239852873e-20,-9.035806860401846239e-20,-9.466083377563839605e-20,-9.896359894725832971e-20,-1.032663641188782634e-19,-1.075691292904981970e-19,-1.118718944621181307e-19,-1.161746596337380643e-19,-1.204774248053579980e-19,-1.247801899769779317e-19,-1.290829551485978653e-19,-1.333857203202177990e-19,-1.376884854918377326e-19,-1.419912506634576663e-19,-1.462940158350776000e-19,-1.505967810066975336e-19,-1.548995461783174673e-19,-1.592023113499374009e-19,-1.635050765215573346e-19,-1.678078416931772683e-19,-1.721106068647972019e-19,-1.764133720364171356e-19,-1.807161372080370692e-19,-1.850189023796570029e-19,-1.893216675512769365e-19,-1.936244327228968702e-19,-1.979271978945168039e-19,-2.022299630661367375e-19,-2.065327282377566712e-19,-2.108354934093766048e-19,-2.151382585809965385e-19,-2.194410237526164722e-19,-2.237437889242364058e-19,-2.280465540958563395e-19,-2.323493192674762731e-19,-2.366520844390962068e-19,-2.409548496107161405e-19,-2.452576147823360741e-19,-2.495603799539560078e-19,-2.538631451255759414e-19,-2.581659102971958751e-19,-2.624686754688158087e-19,-2.667714406404357424e-19,-2.710742058120556761e-19 +0.000000000000000000e+00,1.525126500288722436e-09,3.050253000577444873e-09,4.575379500866167102e-09,6.100506001154888918e-09,7.625632501443610734e-09,9.150759001732332550e-09,1.067588550202105437e-08,1.220101200230977618e-08,1.372613850259849800e-08,1.525126500288722147e-08,1.677639150317594494e-08,1.830151800346466841e-08,1.982664450375339188e-08,2.135177100404211535e-08,2.287689750433083882e-08,2.440202400461956229e-08,2.592715050490828576e-08,2.745227700519700923e-08,2.897740350548573270e-08,3.050253000577445617e-08,3.202765650606317964e-08,3.355278300635190311e-08,3.507790950664062658e-08,3.660303600692935005e-08,3.812816250721807352e-08,3.965328900750679699e-08,4.117841550779552046e-08,4.270354200808424393e-08,4.422866850837296740e-08,4.575379500866169087e-08,4.727892150895041434e-08,4.880404800923913781e-08,5.032917450952786129e-08,5.185430100981658476e-08,5.337942751010530823e-08,5.490455401039403170e-08,5.642968051068275517e-08,5.795480701097147864e-08,5.947993351126020211e-08,6.100506001154892558e-08,6.253018651183764905e-08,6.405531301212637252e-08,6.558043951241509599e-08,6.710556601270381946e-08,6.863069251299254293e-08,7.015581901328126640e-08,7.168094551356998987e-08,7.320607201385871334e-08,7.473119851414743681e-08,7.625632501443616028e-08,7.778145151472488375e-08,7.930657801501360722e-08,8.083170451530233069e-08,8.235683101559105416e-08,8.388195751587977763e-08,8.540708401616850110e-08,8.693221051645722457e-08,8.845733701674594804e-08,8.998246351703467151e-08,9.150759001732339498e-08,9.303271651761211845e-08,9.455784301790084192e-08,9.608296951818956539e-08 +0.000000000000000000e+00,5.148100663152854431e-21,1.029620132630570886e-20,1.544430198945856405e-20,2.059240265261142073e-20,2.574050331576427742e-20,3.088860397891713411e-20,3.603670464206998779e-20,4.118480530522284147e-20,4.633290596837569515e-20,5.148100663152854883e-20,5.662910729468140251e-20,6.177720795783425618e-20,6.692530862098710986e-20,7.207340928413996354e-20,7.722150994729281722e-20,8.236961061044567090e-20,8.751771127359852458e-20,9.266581193675137826e-20,9.781391259990423194e-20,1.029620132630570856e-19,1.081101139262099393e-19,1.132582145893627809e-19,1.184063152525156105e-19,1.235544159156684401e-19,1.287025165788212698e-19,1.338506172419740994e-19,1.389987179051269290e-19,1.441468185682797586e-19,1.492949192314325882e-19,1.544430198945854178e-19,1.595911205577382474e-19,1.647392212208910770e-19,1.698873218840439066e-19,1.750354225471967362e-19,1.801835232103495658e-19,1.853316238735023954e-19,1.904797245366552250e-19,1.956278251998080546e-19,2.007759258629608842e-19,2.059240265261137138e-19,2.110721271892665434e-19,2.162202278524193730e-19,2.213683285155722026e-19,2.265164291787250322e-19,2.316645298418778618e-19,2.368126305050306915e-19,2.419607311681835211e-19,2.471088318313363507e-19,2.522569324944891803e-19,2.574050331576420099e-19,2.625531338207948395e-19,2.677012344839476691e-19,2.728493351471004987e-19,2.779974358102533283e-19,2.831455364734061579e-19,2.882936371365589875e-19,2.934417377997118171e-19,2.985898384628646467e-19,3.037379391260174763e-19,3.088860397891703059e-19,3.140341404523231355e-19,3.191822411154759651e-19,3.243303417786287947e-19 +0.000000000000000000e+00,5.641370564906076703e-21,1.128274112981215341e-20,1.692411169471822936e-20,2.256548225962430380e-20,2.820685282453037825e-20,3.384822338943645269e-20,3.948959395434252714e-20,4.513096451924860158e-20,5.077233508415467603e-20,5.641370564906075649e-20,6.205507621396683696e-20,6.769644677887291742e-20,7.333781734377899789e-20,7.897918790868507835e-20,8.462055847359115881e-20,9.026192903849723928e-20,9.590329960340331974e-20,1.015446701683094002e-19,1.071860407332154807e-19,1.128274112981215611e-19,1.184687818630276536e-19,1.241101524279337461e-19,1.297515229928398386e-19,1.353928935577459311e-19,1.410342641226520236e-19,1.466756346875581161e-19,1.523170052524642086e-19,1.579583758173703011e-19,1.635997463822763936e-19,1.692411169471824861e-19,1.748824875120885786e-19,1.805238580769946711e-19,1.861652286419007637e-19,1.918065992068068562e-19,1.974479697717129487e-19,2.030893403366190412e-19,2.087307109015251337e-19,2.143720814664312262e-19,2.200134520313373187e-19,2.256548225962434112e-19,2.312961931611495037e-19,2.369375637260555962e-19,2.425789342909616887e-19,2.482203048558677812e-19,2.538616754207738737e-19,2.595030459856799662e-19,2.651444165505860587e-19,2.707857871154921512e-19,2.764271576803982437e-19,2.820685282453043362e-19,2.877098988102104287e-19,2.933512693751165212e-19,2.989926399400226137e-19,3.046340105049287062e-19,3.102753810698347987e-19,3.159167516347408912e-19,3.215581221996469837e-19,3.271994927645530762e-19,3.328408633294591687e-19,3.384822338943652612e-19,3.441236044592713537e-19,3.497649750241774462e-19,3.554063455890835387e-19 +0.000000000000000000e+00,1.878512206024707185e-21,3.757024412049414370e-21,5.635536618074121931e-21,7.514048824098830245e-21,9.392561030123538558e-21,1.127107323614824687e-20,1.314958544217295519e-20,1.502809764819766350e-20,1.690660985422237181e-20,1.878512206024708013e-20,2.066363426627178844e-20,2.254214647229649675e-20,2.442065867832120507e-20,2.629917088434591338e-20,2.817768309037062169e-20,3.005619529639533302e-20,3.193470750242004434e-20,3.381321970844475566e-20,3.569173191446946698e-20,3.757024412049417831e-20,3.944875632651888963e-20,4.132726853254360095e-20,4.320578073856831228e-20,4.508429294459302360e-20,4.696280515061773492e-20,4.884131735664244624e-20,5.071982956266715757e-20,5.259834176869186889e-20,5.447685397471658021e-20,5.635536618074129154e-20,5.823387838676600286e-20,6.011239059279071418e-20,6.199090279881542550e-20,6.386941500484013683e-20,6.574792721086484815e-20,6.762643941688955947e-20,6.950495162291427080e-20,7.138346382893898212e-20,7.326197603496369344e-20,7.514048824098840476e-20,7.701900044701311609e-20,7.889751265303782741e-20,8.077602485906253873e-20,8.265453706508725005e-20,8.453304927111196138e-20,8.641156147713667270e-20,8.829007368316138402e-20,9.016858588918609535e-20,9.204709809521080667e-20,9.392561030123551799e-20,9.580412250726022931e-20,9.768263471328494064e-20,9.956114691930965196e-20,1.014396591253343633e-19,1.033181713313590746e-19,1.051966835373837859e-19,1.070751957434084973e-19,1.089537079494332086e-19,1.108322201554579079e-19,1.127107323614826071e-19,1.145892445675073064e-19,1.164677567735320057e-19,1.183462689795567050e-19 +0.000000000000000000e+00,1.469239194673060809e-09,2.938478389346121619e-09,4.407717584019182222e-09,5.876956778692242411e-09,7.346195973365302600e-09,8.815435168038362789e-09,1.028467436271142381e-08,1.175391355738448482e-08,1.322315275205754584e-08,1.469239194673060685e-08,1.616163114140366787e-08,1.763087033607672889e-08,1.910010953074978990e-08,2.056934872542285092e-08,2.203858792009591194e-08,2.350782711476897295e-08,2.497706630944203397e-08,2.644630550411509498e-08,2.791554469878815600e-08,2.938478389346121702e-08,3.085402308813427803e-08,3.232326228280733574e-08,3.379250147748039345e-08,3.526174067215345116e-08,3.673097986682650886e-08,3.820021906149956657e-08,3.966945825617262428e-08,4.113869745084568199e-08,4.260793664551873969e-08,4.407717584019179740e-08,4.554641503486485511e-08,4.701565422953791282e-08,4.848489342421097052e-08,4.995413261888402823e-08,5.142337181355708594e-08,5.289261100823014365e-08,5.436185020290320135e-08,5.583108939757625906e-08,5.730032859224931677e-08,5.876956778692237448e-08,6.023880698159543218e-08,6.170804617626848989e-08,6.317728537094154760e-08,6.464652456561460531e-08,6.611576376028766301e-08,6.758500295496072072e-08,6.905424214963377843e-08,7.052348134430683614e-08,7.199272053897989384e-08,7.346195973365295155e-08,7.493119892832600926e-08,7.640043812299906697e-08,7.786967731767212467e-08,7.933891651234518238e-08,8.080815570701824009e-08,8.227739490169129780e-08,8.374663409636435550e-08,8.521587329103741321e-08,8.668511248571047092e-08,8.815435168038352863e-08,8.962359087505658633e-08,9.109283006972964404e-08,9.256206926440270175e-08 +0.000000000000000000e+00,5.759499930411493541e-21,1.151899986082298708e-20,1.727849979123448062e-20,2.303799972164597416e-20,2.879749965205746771e-20,3.455699958246896125e-20,4.031649951288045479e-20,4.607599944329194833e-20,5.183549937370344187e-20,5.759499930411493541e-20,6.335449923452643497e-20,6.911399916493793453e-20,7.487349909534943409e-20,8.063299902576093365e-20,8.639249895617243321e-20,9.215199888658393277e-20,9.791149881699543233e-20,1.036709987474069319e-19,1.094304986778184314e-19,1.151899986082299430e-19,1.209494985386414546e-19,1.267089984690529662e-19,1.324684983994644778e-19,1.382279983298759894e-19,1.439874982602875010e-19,1.497469981906990126e-19,1.555064981211105242e-19,1.612659980515220358e-19,1.670254979819335474e-19,1.727849979123450590e-19,1.785444978427565706e-19,1.843039977731680822e-19,1.900634977035795938e-19,1.958229976339911054e-19,2.015824975644026170e-19,2.073419974948141286e-19,2.131014974252256402e-19,2.188609973556371518e-19,2.246204972860486634e-19,2.303799972164601750e-19,2.361394971468716866e-19,2.418989970772831982e-19,2.476584970076947098e-19,2.534179969381062214e-19,2.591774968685177330e-19,2.649369967989292446e-19,2.706964967293407562e-19,2.764559966597522678e-19,2.822154965901637793e-19,2.879749965205752909e-19,2.937344964509868025e-19,2.994939963813983141e-19,3.052534963118098257e-19,3.110129962422213373e-19,3.167724961726328489e-19,3.225319961030443605e-19,3.282914960334558721e-19,3.340509959638673837e-19,3.398104958942788953e-19,3.455699958246904069e-19,3.513294957551019185e-19,3.570889956855134301e-19,3.628484956159249417e-19 +0.000000000000000000e+00,4.543314893726617163e-10,9.086629787453234327e-10,1.362994468117985149e-09,1.817325957490646865e-09,2.271657446863308375e-09,2.725988936235969884e-09,3.180320425608631394e-09,3.634651914981292904e-09,4.088983404353954413e-09,4.543314893726615923e-09,4.997646383099277432e-09,5.451977872471938942e-09,5.906309361844600451e-09,6.360640851217261961e-09,6.814972340589923470e-09,7.269303829962584980e-09,7.723635319335245662e-09,8.177966808707907172e-09,8.632298298080568681e-09,9.086629787453230191e-09,9.540961276825891701e-09,9.995292766198553210e-09,1.044962425557121472e-08,1.090395574494387623e-08,1.135828723431653774e-08,1.181261872368919925e-08,1.226695021306186076e-08,1.272128170243452227e-08,1.317561319180718378e-08,1.362994468117984529e-08,1.408427617055250680e-08,1.453860765992516831e-08,1.499293914929782982e-08,1.544727063867049132e-08,1.590160212804315283e-08,1.635593361741581434e-08,1.681026510678847585e-08,1.726459659616113736e-08,1.771892808553379887e-08,1.817325957490646038e-08,1.862759106427912189e-08,1.908192255365178340e-08,1.953625404302444491e-08,1.999058553239710642e-08,2.044491702176976793e-08,2.089924851114242944e-08,2.135358000051509095e-08,2.180791148988775246e-08,2.226224297926041397e-08,2.271657446863307548e-08,2.317090595800573699e-08,2.362523744737839850e-08,2.407956893675106001e-08,2.453390042612372152e-08,2.498823191549638303e-08,2.544256340486904453e-08,2.589689489424170604e-08,2.635122638361436755e-08,2.680555787298702906e-08,2.725988936235969057e-08,2.771422085173235208e-08,2.816855234110501359e-08,2.862288383047767510e-08 +0.000000000000000000e+00,-5.804751222637860277e-21,-1.160950244527572055e-20,-1.741425366791358008e-20,-2.321900489055143810e-20,-2.902375611318929612e-20,-3.482850733582715414e-20,-4.063325855846501216e-20,-4.643800978110287018e-20,-5.224276100374072820e-20,-5.804751222637858020e-20,-6.385226344901643822e-20,-6.965701467165429624e-20,-7.546176589429215426e-20,-8.126651711693001228e-20,-8.707126833956787030e-20,-9.287601956220572832e-20,-9.868077078484358634e-20,-1.044855220074814444e-19,-1.102902732301193024e-19,-1.160950244527571604e-19,-1.218997756753950184e-19,-1.277045268980328764e-19,-1.335092781206707345e-19,-1.393140293433085925e-19,-1.451187805659464505e-19,-1.509235317885843085e-19,-1.567282830112221665e-19,-1.625330342338600246e-19,-1.683377854564978826e-19,-1.741425366791357406e-19,-1.799472879017735986e-19,-1.857520391244114566e-19,-1.915567903470493147e-19,-1.973615415696871727e-19,-2.031662927923250307e-19,-2.089710440149628887e-19,-2.147757952376007467e-19,-2.205805464602386048e-19,-2.263852976828764628e-19,-2.321900489055143208e-19,-2.379948001281521788e-19,-2.437995513507900368e-19,-2.496043025734278949e-19,-2.554090537960657529e-19,-2.612138050187036109e-19,-2.670185562413414689e-19,-2.728233074639793269e-19,-2.786280586866171850e-19,-2.844328099092550430e-19,-2.902375611318929010e-19,-2.960423123545307590e-19,-3.018470635771686170e-19,-3.076518147998064751e-19,-3.134565660224443331e-19,-3.192613172450821911e-19,-3.250660684677200491e-19,-3.308708196903579071e-19,-3.366755709129957652e-19,-3.424803221356336232e-19,-3.482850733582714812e-19,-3.540898245809093392e-19,-3.598945758035471972e-19,-3.656993270261850553e-19 +0.000000000000000000e+00,-6.085878708422480375e-21,-1.217175741684496075e-20,-1.825763612526744263e-20,-2.434351483368992451e-20,-3.042939354211240639e-20,-3.651527225053488526e-20,-4.260115095895736413e-20,-4.868702966737984300e-20,-5.477290837580232788e-20,-6.085878708422481277e-20,-6.694466579264729766e-20,-7.303054450106978255e-20,-7.911642320949226744e-20,-8.520230191791475233e-20,-9.128818062633723722e-20,-9.737405933475972210e-20,-1.034599380431822070e-19,-1.095458167516047039e-19,-1.156316954600272008e-19,-1.217175741684496978e-19,-1.278034528768721947e-19,-1.338893315852946916e-19,-1.399752102937171885e-19,-1.460610890021396855e-19,-1.521469677105621824e-19,-1.582328464189846793e-19,-1.643187251274071762e-19,-1.704046038358296732e-19,-1.764904825442521701e-19,-1.825763612526746670e-19,-1.886622399610971639e-19,-1.947481186695196609e-19,-2.008339973779421578e-19,-2.069198760863646547e-19,-2.130057547947871517e-19,-2.190916335032096486e-19,-2.251775122116321696e-19,-2.312633909200546906e-19,-2.373492696284772116e-19,-2.434351483368997326e-19,-2.495210270453222536e-19,-2.556069057537447746e-19,-2.616927844621672956e-19,-2.677786631705898166e-19,-2.738645418790123376e-19,-2.799504205874348586e-19,-2.860362992958573796e-19,-2.921221780042799006e-19,-2.982080567127024216e-19,-3.042939354211249426e-19,-3.103798141295474636e-19,-3.164656928379699846e-19,-3.225515715463925056e-19,-3.286374502548150266e-19,-3.347233289632375476e-19,-3.408092076716600686e-19,-3.468950863800825896e-19,-3.529809650885051106e-19,-3.590668437969276316e-19,-3.651527225053501526e-19,-3.712386012137726736e-19,-3.773244799221951946e-19,-3.834103586306177156e-19 +0.000000000000000000e+00,3.033462210329424688e-10,6.066924420658849375e-10,9.100386630988273546e-10,1.213384884131769668e-09,1.516731105164711982e-09,1.820077326197654296e-09,2.123423547230596402e-09,2.426769768263538509e-09,2.730115989296480616e-09,3.033462210329422723e-09,3.336808431362364830e-09,3.640154652395306937e-09,3.943500873428249044e-09,4.246847094461191150e-09,4.550193315494133257e-09,4.853539536527075364e-09,5.156885757560017471e-09,5.460231978592959578e-09,5.763578199625901685e-09,6.066924420658843792e-09,6.370270641691785898e-09,6.673616862724728005e-09,6.976963083757670112e-09,7.280309304790612219e-09,7.583655525823554326e-09,7.887001746856496433e-09,8.190347967889438540e-09,8.493694188922380646e-09,8.797040409955322753e-09,9.100386630988264860e-09,9.403732852021206967e-09,9.707079073054149074e-09,1.001042529408709118e-08,1.031377151512003329e-08,1.061711773615297539e-08,1.092046395718591750e-08,1.122381017821885961e-08,1.152715639925180172e-08,1.183050262028474382e-08,1.213384884131768593e-08,1.243719506235062804e-08,1.274054128338357014e-08,1.304388750441651225e-08,1.334723372544945436e-08,1.365057994648239646e-08,1.395392616751533857e-08,1.425727238854828068e-08,1.456061860958122278e-08,1.486396483061416489e-08,1.516731105164710865e-08,1.547065727268005241e-08,1.577400349371299617e-08,1.607734971474593994e-08,1.638069593577888370e-08,1.668404215681182746e-08,1.698738837784477122e-08,1.729073459887771498e-08,1.759408081991065874e-08,1.789742704094360250e-08,1.820077326197654626e-08,1.850411948300949003e-08,1.880746570404243379e-08,1.911081192507537755e-08 +0.000000000000000000e+00,5.245472205238364398e-21,1.049094441047672880e-20,1.573641661571509470e-20,2.098188882095346060e-20,2.622736102619182650e-20,3.147283323143018939e-20,3.671830543666855229e-20,4.196377764190691518e-20,4.720924984714527807e-20,5.245472205238364097e-20,5.770019425762199784e-20,6.294566646286035471e-20,6.819113866809871159e-20,7.343661087333706846e-20,7.868208307857542534e-20,8.392755528381378221e-20,8.917302748905213909e-20,9.441849969429049596e-20,9.966397189952885284e-20,1.049094441047672097e-19,1.101549163100055666e-19,1.154003885152439235e-19,1.206458607204822803e-19,1.258913329257206372e-19,1.311368051309589941e-19,1.363822773361973510e-19,1.416277495414357078e-19,1.468732217466740647e-19,1.521186939519124216e-19,1.573641661571507785e-19,1.626096383623891353e-19,1.678551105676274922e-19,1.731005827728658491e-19,1.783460549781042060e-19,1.835915271833425628e-19,1.888369993885809197e-19,1.940824715938192766e-19,1.993279437990576334e-19,2.045734160042959903e-19,2.098188882095343472e-19,2.150643604147727041e-19,2.203098326200110369e-19,2.255553048252493697e-19,2.308007770304877025e-19,2.360462492357260353e-19,2.412917214409643681e-19,2.465371936462027009e-19,2.517826658514410337e-19,2.570281380566793665e-19,2.622736102619176993e-19,2.675190824671560321e-19,2.727645546723943649e-19,2.780100268776326977e-19,2.832554990828710305e-19,2.885009712881093633e-19,2.937464434933476961e-19,2.989919156985860289e-19,3.042373879038243617e-19,3.094828601090626945e-19,3.147283323143010273e-19,3.199738045195393601e-19,3.252192767247776929e-19,3.304647489300160257e-19 +0.000000000000000000e+00,5.469169830393079999e-21,1.093833966078616000e-20,1.640750949117924150e-20,2.187667932157232300e-20,2.734584915196540451e-20,3.281501898235848300e-20,3.828418881275156150e-20,4.375335864314463999e-20,4.922252847353771848e-20,5.469169830393079698e-20,6.016086813432387547e-20,6.563003796471695397e-20,7.109920779511003246e-20,7.656837762550311095e-20,8.203754745589618945e-20,8.750671728628926794e-20,9.297588711668234644e-20,9.844505694707542493e-20,1.039142267774685034e-19,1.093833966078615699e-19,1.148525664382546363e-19,1.203217362686477028e-19,1.257909060990407693e-19,1.312600759294338357e-19,1.367292457598269022e-19,1.421984155902199686e-19,1.476675854206130351e-19,1.531367552510061015e-19,1.586059250813991680e-19,1.640750949117922345e-19,1.695442647421853009e-19,1.750134345725783674e-19,1.804826044029714338e-19,1.859517742333645003e-19,1.914209440637575667e-19,1.968901138941506332e-19,2.023592837245436996e-19,2.078284535549367661e-19,2.132976233853298326e-19,2.187667932157228990e-19,2.242359630461159414e-19,2.297051328765089838e-19,2.351743027069020262e-19,2.406434725372950686e-19,2.461126423676881109e-19,2.515818121980811533e-19,2.570509820284741957e-19,2.625201518588672381e-19,2.679893216892602805e-19,2.734584915196533228e-19,2.789276613500463652e-19,2.843968311804394076e-19,2.898660010108324500e-19,2.953351708412254924e-19,3.008043406716185348e-19,3.062735105020115771e-19,3.117426803324046195e-19,3.172118501627976619e-19,3.226810199931907043e-19,3.281501898235837467e-19,3.336193596539767891e-19,3.390885294843698314e-19,3.445576993147628738e-19 +0.000000000000000000e+00,3.033462210447479388e-10,6.066924420894958775e-10,9.100386631342438163e-10,1.213384884178991755e-09,1.516731105223739797e-09,1.820077326268487839e-09,2.123423547313235881e-09,2.426769768357983924e-09,2.730115989402731966e-09,3.033462210447480008e-09,3.336808431492228050e-09,3.640154652536976092e-09,3.943500873581724134e-09,4.246847094626471763e-09,4.550193315671219392e-09,4.853539536715967020e-09,5.156885757760714649e-09,5.460231978805462277e-09,5.763578199850209906e-09,6.066924420894957534e-09,6.370270641939705163e-09,6.673616862984452791e-09,6.976963084029200420e-09,7.280309305073948049e-09,7.583655526118695677e-09,7.887001747163443306e-09,8.190347968208190934e-09,8.493694189252938563e-09,8.797040410297686191e-09,9.100386631342433820e-09,9.403732852387181449e-09,9.707079073431929077e-09,1.001042529447667671e-08,1.031377151552142433e-08,1.061711773656617196e-08,1.092046395761091959e-08,1.122381017865566722e-08,1.152715639970041485e-08,1.183050262074516248e-08,1.213384884178991011e-08,1.243719506283465773e-08,1.274054128387940536e-08,1.304388750492415299e-08,1.334723372596890062e-08,1.365057994701364825e-08,1.395392616805839588e-08,1.425727238910314351e-08,1.456061861014789113e-08,1.486396483119263876e-08,1.516731105223738474e-08,1.547065727328213071e-08,1.577400349432687669e-08,1.607734971537162266e-08,1.638069593641636863e-08,1.668404215746111461e-08,1.698738837850586058e-08,1.729073459955060656e-08,1.759408082059535253e-08,1.789742704164009850e-08,1.820077326268484448e-08,1.850411948372959045e-08,1.880746570477433643e-08,1.911081192581908240e-08 +0.000000000000000000e+00,-4.922798119325836661e-21,-9.845596238651673323e-21,-1.476839435797750923e-20,-1.969119247730334364e-20,-2.461399059662917804e-20,-2.953678871595501244e-20,-3.445958683528084685e-20,-3.938238495460668125e-20,-4.430518307393251566e-20,-4.922798119325835006e-20,-5.415077931258418447e-20,-5.907357743191001285e-20,-6.399637555123583522e-20,-6.891917367056165759e-20,-7.384197178988747995e-20,-7.876476990921330232e-20,-8.368756802853912469e-20,-8.861036614786494706e-20,-9.353316426719076942e-20,-9.845596238651659179e-20,-1.033787605058424142e-19,-1.083015586251682365e-19,-1.132243567444940589e-19,-1.181471548638198813e-19,-1.230699529831457036e-19,-1.279927511024715260e-19,-1.329155492217973484e-19,-1.378383473411231707e-19,-1.427611454604489931e-19,-1.476839435797748155e-19,-1.526067416991006378e-19,-1.575295398184264602e-19,-1.624523379377522826e-19,-1.673751360570781049e-19,-1.722979341764039273e-19,-1.772207322957297497e-19,-1.821435304150555720e-19,-1.870663285343813944e-19,-1.919891266537072168e-19,-1.969119247730330391e-19,-2.018347228923588615e-19,-2.067575210116846839e-19,-2.116803191310105062e-19,-2.166031172503363286e-19,-2.215259153696621750e-19,-2.264487134889880215e-19,-2.313715116083138679e-19,-2.362943097276397144e-19,-2.412171078469655608e-19,-2.461399059662914073e-19,-2.510627040856172537e-19,-2.559855022049431001e-19,-2.609083003242689466e-19,-2.658310984435947930e-19,-2.707538965629206395e-19,-2.756766946822464859e-19,-2.805994928015723323e-19,-2.855222909208981788e-19,-2.904450890402240252e-19,-2.953678871595498717e-19,-3.002906852788757181e-19,-3.052134833982015646e-19,-3.101362815175274110e-19 +0.000000000000000000e+00,-5.390035622801112825e-21,-1.078007124560222565e-20,-1.617010686840333848e-20,-2.156014249120445130e-20,-2.695017811400556413e-20,-3.234021373680667695e-20,-3.773024935960778978e-20,-4.312028498240890260e-20,-4.851032060521001543e-20,-5.390035622801112825e-20,-5.929039185081224709e-20,-6.468042747361336594e-20,-7.007046309641448478e-20,-7.546049871921560362e-20,-8.085053434201672247e-20,-8.624056996481784131e-20,-9.163060558761896015e-20,-9.702064121042007900e-20,-1.024106768332211978e-19,-1.078007124560223167e-19,-1.131907480788234355e-19,-1.185807837016245423e-19,-1.239708193244256491e-19,-1.293608549472267559e-19,-1.347508905700278628e-19,-1.401409261928289696e-19,-1.455309618156300764e-19,-1.509209974384311832e-19,-1.563110330612322900e-19,-1.617010686840333968e-19,-1.670911043068345036e-19,-1.724811399296356104e-19,-1.778711755524367172e-19,-1.832612111752378240e-19,-1.886512467980389308e-19,-1.940412824208400376e-19,-1.994313180436411444e-19,-2.048213536664422512e-19,-2.102113892892433580e-19,-2.156014249120444649e-19,-2.209914605348455717e-19,-2.263814961576466785e-19,-2.317715317804477853e-19,-2.371615674032488921e-19,-2.425516030260499989e-19,-2.479416386488511057e-19,-2.533316742716522125e-19,-2.587217098944533193e-19,-2.641117455172544261e-19,-2.695017811400555329e-19,-2.748918167628566397e-19,-2.802818523856577465e-19,-2.856718880084588533e-19,-2.910619236312599601e-19,-2.964519592540610669e-19,-3.018419948768621738e-19,-3.072320304996632806e-19,-3.126220661224643874e-19,-3.180121017452654942e-19,-3.234021373680666010e-19,-3.287921729908677078e-19,-3.341822086136688146e-19,-3.395722442364699214e-19 +0.000000000000000000e+00,3.646913648893650996e-10,7.293827297787301991e-10,1.094074094668095299e-09,1.458765459557460398e-09,1.823456824446825498e-09,2.188148189336190597e-09,2.552839554225555697e-09,2.917530919114920796e-09,3.282222284004285896e-09,3.646913648893650996e-09,4.011605013783015682e-09,4.376296378672380368e-09,4.740987743561745054e-09,5.105679108451109739e-09,5.470370473340474425e-09,5.835061838229839111e-09,6.199753203119203797e-09,6.564444568008568483e-09,6.929135932897933169e-09,7.293827297787297855e-09,7.658518662676662541e-09,8.023210027566028054e-09,8.387901392455393568e-09,8.752592757344759081e-09,9.117284122234124594e-09,9.481975487123490107e-09,9.846666852012855620e-09,1.021135821690222113e-08,1.057604958179158665e-08,1.094074094668095216e-08,1.130543231157031767e-08,1.167012367645968319e-08,1.203481504134904870e-08,1.239950640623841421e-08,1.276419777112777973e-08,1.312888913601714524e-08,1.349358050090651075e-08,1.385827186579587626e-08,1.422296323068524178e-08,1.458765459557460729e-08,1.495234596046397446e-08,1.531703732535334163e-08,1.568172869024270879e-08,1.604642005513207596e-08,1.641111142002144313e-08,1.677580278491081030e-08,1.714049414980017746e-08,1.750518551468954463e-08,1.786987687957891180e-08,1.823456824446827897e-08,1.859925960935764613e-08,1.896395097424701330e-08,1.932864233913638047e-08,1.969333370402574764e-08,2.005802506891511480e-08,2.042271643380448197e-08,2.078740779869384914e-08,2.115209916358321631e-08,2.151679052847258347e-08,2.188148189336195064e-08,2.224617325825131781e-08,2.261086462314068498e-08,2.297555598803005214e-08 +0.000000000000000000e+00,4.825592785500622582e-21,9.651185571001245165e-21,1.447677835650186624e-20,1.930237114200248732e-20,2.412796392750310840e-20,2.895355671300373249e-20,3.377914949850435657e-20,3.860474228400498066e-20,4.343033506950560475e-20,4.825592785500622883e-20,5.308152064050685292e-20,5.790711342600747701e-20,6.273270621150809508e-20,6.755829899700871314e-20,7.238389178250933121e-20,7.720948456800994928e-20,8.203507735351056735e-20,8.686067013901118542e-20,9.168626292451180349e-20,9.651185571001242156e-20,1.013374484955130396e-19,1.061630412810136577e-19,1.109886340665142758e-19,1.158142268520148818e-19,1.206398196375154878e-19,1.254654124230160939e-19,1.302910052085166999e-19,1.351165979940173059e-19,1.399421907795179120e-19,1.447677835650185180e-19,1.495933763505191240e-19,1.544189691360197300e-19,1.592445619215203361e-19,1.640701547070209421e-19,1.688957474925215481e-19,1.737213402780221542e-19,1.785469330635227602e-19,1.833725258490233662e-19,1.881981186345239723e-19,1.930237114200245783e-19,1.978493042055251843e-19,2.026748969910257904e-19,2.075004897765263964e-19,2.123260825620270024e-19,2.171516753475276325e-19,2.219772681330282626e-19,2.268028609185288927e-19,2.316284537040295228e-19,2.364540464895301530e-19,2.412796392750307831e-19,2.461052320605314132e-19,2.509308248460320433e-19,2.557564176315326734e-19,2.605820104170333035e-19,2.654076032025339336e-19,2.702331959880345637e-19,2.750587887735351938e-19,2.798843815590358239e-19,2.847099743445364540e-19,2.895355671300370841e-19,2.943611599155377142e-19,2.991867527010383443e-19,3.040123454865389744e-19 +0.000000000000000000e+00,4.983295296794583703e-21,9.966590593589167406e-21,1.494988589038374960e-20,1.993318118717833180e-20,2.491647648397291400e-20,2.989977178076749921e-20,3.488306707756208442e-20,3.986636237435666962e-20,4.484965767115125483e-20,4.983295296794584004e-20,5.481624826474041923e-20,5.979954356153499842e-20,6.478283885832957760e-20,6.976613415512415679e-20,7.474942945191873598e-20,7.973272474871331517e-20,8.471602004550789436e-20,8.969931534230247355e-20,9.468261063909705274e-20,9.966590593589163193e-20,1.046492012326862111e-19,1.096324965294807903e-19,1.146157918262753695e-19,1.195990871230699487e-19,1.245823824198645279e-19,1.295656777166591071e-19,1.345489730134536862e-19,1.395322683102482654e-19,1.445155636070428446e-19,1.494988589038374238e-19,1.544821542006320030e-19,1.594654494974265822e-19,1.644487447942211614e-19,1.694320400910157406e-19,1.744153353878103198e-19,1.793986306846048989e-19,1.843819259813994781e-19,1.893652212781940573e-19,1.943485165749886365e-19,1.993318118717832157e-19,2.043151071685777949e-19,2.092984024653723741e-19,2.142816977621669533e-19,2.192649930589615325e-19,2.242482883557560876e-19,2.292315836525506427e-19,2.342148789493451978e-19,2.391981742461397529e-19,2.441814695429343080e-19,2.491647648397288632e-19,2.541480601365234183e-19,2.591313554333179734e-19,2.641146507301125285e-19,2.690979460269070836e-19,2.740812413237016387e-19,2.790645366204961938e-19,2.840478319172907490e-19,2.890311272140853041e-19,2.940144225108798592e-19,2.989977178076744143e-19,3.039810131044689694e-19,3.089643084012635245e-19,3.139476036980580796e-19 +0.000000000000000000e+00,3.646913649001209291e-10,7.293827298002418581e-10,1.094074094700362787e-09,1.458765459600483716e-09,1.823456824500604645e-09,2.188148189400725574e-09,2.552839554300846503e-09,2.917530919200967433e-09,3.282222284101088362e-09,3.646913649001209291e-09,4.011605013901330633e-09,4.376296378801451976e-09,4.740987743701573319e-09,5.105679108601694661e-09,5.470370473501816004e-09,5.835061838401937347e-09,6.199753203302058689e-09,6.564444568202180032e-09,6.929135933102301375e-09,7.293827298002422717e-09,7.658518662902544060e-09,8.023210027802664575e-09,8.387901392702785091e-09,8.752592757602905606e-09,9.117284122503026122e-09,9.481975487403146637e-09,9.846666852303267153e-09,1.021135821720338767e-08,1.057604958210350818e-08,1.094074094700362870e-08,1.130543231190374921e-08,1.167012367680386973e-08,1.203481504170399025e-08,1.239950640660411076e-08,1.276419777150423128e-08,1.312888913640435179e-08,1.349358050130447231e-08,1.385827186620459282e-08,1.422296323110471334e-08,1.458765459600483385e-08,1.495234596090495437e-08,1.531703732580507488e-08,1.568172869070519540e-08,1.604642005560531592e-08,1.641111142050543643e-08,1.677580278540555695e-08,1.714049415030567746e-08,1.750518551520579798e-08,1.786987688010591849e-08,1.823456824500603901e-08,1.859925960990615952e-08,1.896395097480628004e-08,1.932864233970640056e-08,1.969333370460652107e-08,2.005802506950664159e-08,2.042271643440676210e-08,2.078740779930688262e-08,2.115209916420700313e-08,2.151679052910712365e-08,2.188148189400724416e-08,2.224617325890736468e-08,2.261086462380748519e-08,2.297555598870760571e-08 +0.000000000000000000e+00,-4.263872576604491192e-21,-8.527745153208982383e-21,-1.279161772981347433e-20,-1.705549030641796778e-20,-2.131936288302246122e-20,-2.558323545962695467e-20,-2.984710803623144812e-20,-3.411098061283594157e-20,-3.837485318944043502e-20,-4.263872576604492847e-20,-4.690259834264942192e-20,-5.116647091925391536e-20,-5.543034349585840279e-20,-5.969421607246288421e-20,-6.395808864906736562e-20,-6.822196122567184703e-20,-7.248583380227632844e-20,-7.674970637888080985e-20,-8.101357895548529126e-20,-8.527745153208977267e-20,-8.954132410869425409e-20,-9.380519668529873550e-20,-9.806906926190321691e-20,-1.023329418385076983e-19,-1.065968144151121797e-19,-1.108606869917166611e-19,-1.151245595683211426e-19,-1.193884321449256240e-19,-1.236523047215301054e-19,-1.279161772981345868e-19,-1.321800498747390682e-19,-1.364439224513435496e-19,-1.407077950279480310e-19,-1.449716676045525124e-19,-1.492355401811569938e-19,-1.534994127577614753e-19,-1.577632853343659567e-19,-1.620271579109704381e-19,-1.662910304875749195e-19,-1.705549030641794009e-19,-1.748187756407838823e-19,-1.790826482173883637e-19,-1.833465207939928451e-19,-1.876103933705973265e-19,-1.918742659472018080e-19,-1.961381385238062894e-19,-2.004020111004107708e-19,-2.046658836770152522e-19,-2.089297562536197336e-19,-2.131936288302242150e-19,-2.174575014068286964e-19,-2.217213739834331778e-19,-2.259852465600376593e-19,-2.302491191366421407e-19,-2.345129917132466221e-19,-2.387768642898511035e-19,-2.430407368664555849e-19,-2.473046094430600663e-19,-2.515684820196645477e-19,-2.558323545962690291e-19,-2.600962271728735105e-19,-2.643600997494779920e-19,-2.686239723260824734e-19 +0.000000000000000000e+00,-4.524723579103194890e-21,-9.049447158206389781e-21,-1.357417073730958392e-20,-1.809889431641277655e-20,-2.262361789551596919e-20,-2.714834147461916182e-20,-3.167306505372235445e-20,-3.619778863282554709e-20,-4.072251221192873972e-20,-4.524723579103193235e-20,-4.977195937013512499e-20,-5.429668294923831160e-20,-5.882140652834149822e-20,-6.334613010744468483e-20,-6.787085368654787145e-20,-7.239557726565105806e-20,-7.692030084475424468e-20,-8.144502442385743129e-20,-8.596974800296061791e-20,-9.049447158206380452e-20,-9.501919516116699114e-20,-9.954391874027017775e-20,-1.040686423193733644e-19,-1.085933658984765510e-19,-1.131180894775797256e-19,-1.176428130566829001e-19,-1.221675366357860747e-19,-1.266922602148892493e-19,-1.312169837939924239e-19,-1.357417073730955984e-19,-1.402664309521987730e-19,-1.447911545313019476e-19,-1.493158781104051222e-19,-1.538406016895082968e-19,-1.583653252686114713e-19,-1.628900488477146459e-19,-1.674147724268178205e-19,-1.719394960059209951e-19,-1.764642195850241696e-19,-1.809889431641273442e-19,-1.855136667432305188e-19,-1.900383903223336934e-19,-1.945631139014368680e-19,-1.990878374805400425e-19,-2.036125610596432171e-19,-2.081372846387463917e-19,-2.126620082178495663e-19,-2.171867317969527649e-19,-2.217114553760559636e-19,-2.262361789551591622e-19,-2.307609025342623609e-19,-2.352856261133655595e-19,-2.398103496924687582e-19,-2.443350732715719568e-19,-2.488597968506751555e-19,-2.533845204297783541e-19,-2.579092440088815528e-19,-2.624339675879847514e-19,-2.669586911670879501e-19,-2.714834147461911487e-19,-2.760081383252943474e-19,-2.805328619043975461e-19,-2.850575854835007447e-19 +0.000000000000000000e+00,4.624719510184226067e-10,9.249439020368452134e-10,1.387415853055267768e-09,1.849887804073690220e-09,2.312359755092112672e-09,2.774831706110535123e-09,3.237303657128957575e-09,3.699775608147380027e-09,4.162247559165802892e-09,4.624719510184226171e-09,5.087191461202649449e-09,5.549663412221072728e-09,6.012135363239496007e-09,6.474607314257919286e-09,6.937079265276342565e-09,7.399551216294765843e-09,7.862023167313189122e-09,8.324495118331612401e-09,8.786967069350035680e-09,9.249439020368458959e-09,9.711910971386882238e-09,1.017438292240530552e-08,1.063685487342372880e-08,1.109932682444215207e-08,1.156179877546057535e-08,1.202427072647899863e-08,1.248674267749742191e-08,1.294921462851584519e-08,1.341168657953426847e-08,1.387415853055269175e-08,1.433663048157111503e-08,1.479910243258953830e-08,1.526157438360796158e-08,1.572404633462638486e-08,1.618651828564480814e-08,1.664899023666323142e-08,1.711146218768165470e-08,1.757393413870007798e-08,1.803640608971850126e-08,1.849887804073692453e-08,1.896134999175534781e-08,1.942382194277377109e-08,1.988629389379219437e-08,2.034876584481061765e-08,2.081123779582904093e-08,2.127370974684746421e-08,2.173618169786588749e-08,2.219865364888431077e-08,2.266112559990273404e-08,2.312359755092115732e-08,2.358606950193958060e-08,2.404854145295800388e-08,2.451101340397642716e-08,2.497348535499485044e-08,2.543595730601327372e-08,2.589842925703169700e-08,2.636090120805012027e-08,2.682337315906854355e-08,2.728584511008696683e-08,2.774831706110539011e-08,2.821078901212381339e-08,2.867326096314223667e-08,2.913573291416065995e-08 +0.000000000000000000e+00,4.321579272134484975e-21,8.643158544268969949e-21,1.296473781640345568e-20,1.728631708853794291e-20,2.160789636067243014e-20,2.592947563280691737e-20,3.025105490494140460e-20,3.457263417707589183e-20,3.889421344921037907e-20,4.321579272134486630e-20,4.753737199347935353e-20,5.185895126561384076e-20,5.618053053774833401e-20,6.050210980988282124e-20,6.482368908201730847e-20,6.914526835415179571e-20,7.346684762628628294e-20,7.778842689842077017e-20,8.211000617055525740e-20,8.643158544268974463e-20,9.075316471482423186e-20,9.507474398695871910e-20,9.939632325909320633e-20,1.037179025312276936e-19,1.080394818033621808e-19,1.123610610754966680e-19,1.166826403476311553e-19,1.210042196197656425e-19,1.253257988919001297e-19,1.296473781640346169e-19,1.339689574361691042e-19,1.382905367083035914e-19,1.426121159804380786e-19,1.469336952525725659e-19,1.512552745247070531e-19,1.555768537968415403e-19,1.598984330689760276e-19,1.642200123411105148e-19,1.685415916132450020e-19,1.728631708853794893e-19,1.771847501575139765e-19,1.815063294296484637e-19,1.858279087017829510e-19,1.901494879739174382e-19,1.944710672460519254e-19,1.987926465181864127e-19,2.031142257903208999e-19,2.074358050624553871e-19,2.117573843345898744e-19,2.160789636067243616e-19,2.204005428788588729e-19,2.247221221509933842e-19,2.290437014231278955e-19,2.333652806952624068e-19,2.376868599673969181e-19,2.420084392395314294e-19,2.463300185116659407e-19,2.506515977838004520e-19,2.549731770559349633e-19,2.592947563280694746e-19,2.636163356002039859e-19,2.679379148723384973e-19,2.722594941444730086e-19 +0.000000000000000000e+00,4.576176211561547539e-21,9.152352423123095078e-21,1.372852863468464337e-20,1.830470484624619317e-20,2.288088105780774296e-20,2.745705726936929276e-20,3.203323348093084255e-20,3.660940969249239235e-20,4.118558590405394214e-20,4.576176211561549194e-20,5.033793832717704174e-20,5.491411453873859755e-20,5.949029075030015337e-20,6.406646696186170918e-20,6.864264317342326499e-20,7.321881938498482081e-20,7.779499559654637662e-20,8.237117180810793244e-20,8.694734801966948825e-20,9.152352423123104407e-20,9.609970044279259988e-20,1.006758766543541557e-19,1.052520528659157115e-19,1.098282290774772673e-19,1.144044052890388231e-19,1.189805815006003790e-19,1.235567577121619348e-19,1.281329339237234906e-19,1.327091101352850464e-19,1.372852863468466022e-19,1.418614625584081580e-19,1.464376387699697138e-19,1.510138149815312697e-19,1.555899911930928255e-19,1.601661674046543813e-19,1.647423436162159371e-19,1.693185198277774929e-19,1.738946960393390487e-19,1.784708722509006045e-19,1.830470484624621604e-19,1.876232246740237162e-19,1.921994008855852720e-19,1.967755770971468278e-19,2.013517533087083836e-19,2.059279295202699394e-19,2.105041057318314952e-19,2.150802819433930511e-19,2.196564581549545828e-19,2.242326343665161145e-19,2.288088105780776463e-19,2.333849867896391780e-19,2.379611630012007098e-19,2.425373392127622415e-19,2.471135154243237732e-19,2.516896916358853050e-19,2.562658678474468367e-19,2.608420440590083685e-19,2.654182202705699002e-19,2.699943964821314319e-19,2.745705726936929637e-19,2.791467489052544954e-19,2.837229251168160272e-19,2.882991013283775589e-19 +0.000000000000000000e+00,4.624719510281955906e-10,9.249439020563911811e-10,1.387415853084586772e-09,1.849887804112782362e-09,2.312359755140977953e-09,2.774831706169173543e-09,3.237303657197369134e-09,3.699775608225564725e-09,4.162247559253760315e-09,4.624719510281955906e-09,5.087191461310151496e-09,5.549663412338347087e-09,6.012135363366542677e-09,6.474607314394738268e-09,6.937079265422933858e-09,7.399551216451129449e-09,7.862023167479325040e-09,8.324495118507520630e-09,8.786967069535716221e-09,9.249439020563911811e-09,9.711910971592107402e-09,1.017438292262030299e-08,1.063685487364849858e-08,1.109932682467669417e-08,1.156179877570488976e-08,1.202427072673308535e-08,1.248674267776128095e-08,1.294921462878947654e-08,1.341168657981767213e-08,1.387415853084586772e-08,1.433663048187406331e-08,1.479910243290225890e-08,1.526157438393045283e-08,1.572404633495864677e-08,1.618651828598684071e-08,1.664899023701503464e-08,1.711146218804322858e-08,1.757393413907142252e-08,1.803640609009961645e-08,1.849887804112781039e-08,1.896134999215600432e-08,1.942382194318419826e-08,1.988629389421239220e-08,2.034876584524058613e-08,2.081123779626878007e-08,2.127370974729697400e-08,2.173618169832516794e-08,2.219865364935336188e-08,2.266112560038155581e-08,2.312359755140974975e-08,2.358606950243794369e-08,2.404854145346613762e-08,2.451101340449433156e-08,2.497348535552252549e-08,2.543595730655071943e-08,2.589842925757891337e-08,2.636090120860710730e-08,2.682337315963530124e-08,2.728584511066349518e-08,2.774831706169168911e-08,2.821078901271988305e-08,2.867326096374807698e-08,2.913573291477627092e-08 +0.000000000000000000e+00,-4.021511671153565086e-21,-8.043023342307130172e-21,-1.206453501346069601e-20,-1.608604668461426335e-20,-2.010755835576783070e-20,-2.412907002692139804e-20,-2.815058169807496538e-20,-3.217209336922853272e-20,-3.619360504038210007e-20,-4.021511671153566741e-20,-4.423662838268923475e-20,-4.825814005384280210e-20,-5.227965172499636944e-20,-5.630116339614994280e-20,-6.032267506730352218e-20,-6.434418673845710156e-20,-6.836569840961068094e-20,-7.238721008076426032e-20,-7.640872175191783970e-20,-8.043023342307141908e-20,-8.445174509422499846e-20,-8.847325676537857784e-20,-9.249476843653215722e-20,-9.651628010768573660e-20,-1.005377917788393160e-19,-1.045593034499928954e-19,-1.085808151211464747e-19,-1.126023267923000541e-19,-1.166238384634536335e-19,-1.206453501346072129e-19,-1.246668618057607923e-19,-1.286883734769143716e-19,-1.327098851480679510e-19,-1.367313968192215304e-19,-1.407529084903751098e-19,-1.447744201615286892e-19,-1.487959318326822685e-19,-1.528174435038358479e-19,-1.568389551749894273e-19,-1.608604668461430067e-19,-1.648819785172965861e-19,-1.689034901884501654e-19,-1.729250018596037448e-19,-1.769465135307573242e-19,-1.809680252019109036e-19,-1.849895368730644830e-19,-1.890110485442180623e-19,-1.930325602153716417e-19,-1.970540718865252211e-19,-2.010755835576788005e-19,-2.050970952288323799e-19,-2.091186068999859592e-19,-2.131401185711395386e-19,-2.171616302422931421e-19,-2.211831419134467455e-19,-2.252046535846003490e-19,-2.292261652557539524e-19,-2.332476769269075559e-19,-2.372691885980611593e-19,-2.412907002692147628e-19,-2.453122119403683662e-19,-2.493337236115219697e-19,-2.533552352826755732e-19 +0.000000000000000000e+00,-4.149337597652672112e-21,-8.298675195305344224e-21,-1.244801279295801558e-20,-1.659735039061068544e-20,-2.074668798826335529e-20,-2.489602558591602515e-20,-2.904536318356869500e-20,-3.319470078122136486e-20,-3.734403837887403471e-20,-4.149337597652670457e-20,-4.564271357417937442e-20,-4.979205117183204428e-20,-5.394138876948471413e-20,-5.809072636713739001e-20,-6.224006396479006588e-20,-6.638940156244274175e-20,-7.053873916009541763e-20,-7.468807675774809350e-20,-7.883741435540076937e-20,-8.298675195305344525e-20,-8.713608955070612112e-20,-9.128542714835879699e-20,-9.543476474601147287e-20,-9.958410234366414874e-20,-1.037334399413168246e-19,-1.078827775389695005e-19,-1.120321151366221884e-19,-1.161814527342748763e-19,-1.203307903319275642e-19,-1.244801279295802521e-19,-1.286294655272329400e-19,-1.327788031248856279e-19,-1.369281407225383159e-19,-1.410774783201910038e-19,-1.452268159178436917e-19,-1.493761535154963796e-19,-1.535254911131490675e-19,-1.576748287108017554e-19,-1.618241663084544433e-19,-1.659735039061071312e-19,-1.701228415037598191e-19,-1.742721791014125071e-19,-1.784215166990651950e-19,-1.825708542967178829e-19,-1.867201918943705708e-19,-1.908695294920232587e-19,-1.950188670896759466e-19,-1.991682046873286345e-19,-2.033175422849813224e-19,-2.074668798826340103e-19,-2.116162174802866982e-19,-2.157655550779393862e-19,-2.199148926755920741e-19,-2.240642302732447620e-19,-2.282135678708974499e-19,-2.323629054685501378e-19,-2.365122430662028257e-19,-2.406615806638555136e-19,-2.448109182615082015e-19,-2.489602558591608894e-19,-2.531095934568135774e-19,-2.572589310544662653e-19,-2.614082686521189532e-19 +0.000000000000000000e+00,5.421375844094765329e-10,1.084275168818953066e-09,1.626412753228429702e-09,2.168550337637906545e-09,2.710687922047383388e-09,3.252825506456860231e-09,3.794963090866337075e-09,4.337100675275813918e-09,4.879238259685290761e-09,5.421375844094767604e-09,5.963513428504244447e-09,6.505651012913721290e-09,7.047788597323198133e-09,7.589926181732675804e-09,8.132063766142154301e-09,8.674201350551632798e-09,9.216338934961111296e-09,9.758476519370589793e-09,1.030061410378006829e-08,1.084275168818954679e-08,1.138488927259902529e-08,1.192702685700850378e-08,1.246916444141798228e-08,1.301130202582746078e-08,1.355343961023693928e-08,1.409557719464641777e-08,1.463771477905589627e-08,1.517985236346537477e-08,1.572198994787485327e-08,1.626412753228433176e-08,1.680626511669381026e-08,1.734840270110328876e-08,1.789054028551276726e-08,1.843267786992224575e-08,1.897481545433172425e-08,1.951695303874120275e-08,2.005909062315068125e-08,2.060122820756015974e-08,2.114336579196963824e-08,2.168550337637911674e-08,2.222764096078859524e-08,2.276977854519807373e-08,2.331191612960755223e-08,2.385405371401703073e-08,2.439619129842650923e-08,2.493832888283598772e-08,2.548046646724546622e-08,2.602260405165494472e-08,2.656474163606442321e-08,2.710687922047390171e-08,2.764901680488338021e-08,2.819115438929285871e-08,2.873329197370233720e-08,2.927542955811181570e-08,2.981756714252129420e-08,3.035970472693076939e-08,3.090184231134024458e-08,3.144397989574971977e-08,3.198611748015919495e-08,3.252825506456867014e-08,3.307039264897814533e-08,3.361253023338762052e-08,3.415466781779709571e-08 +0.000000000000000000e+00,4.175773149424239574e-21,8.351546298848479148e-21,1.252731944827271872e-20,1.670309259769695830e-20,2.087886574712119787e-20,2.505463889654543744e-20,2.923041204596967702e-20,3.340618519539391659e-20,3.758195834481815617e-20,4.175773149424239574e-20,4.593350464366663531e-20,5.010927779309087489e-20,5.428505094251511446e-20,5.846082409193935404e-20,6.263659724136359361e-20,6.681237039078783318e-20,7.098814354021207276e-20,7.516391668963631233e-20,7.933968983906055191e-20,8.351546298848479148e-20,8.769123613790903105e-20,9.186700928733327063e-20,9.604278243675751020e-20,1.002185555861817498e-19,1.043943287356059894e-19,1.085701018850302289e-19,1.127458750344544805e-19,1.169216481838787321e-19,1.210974213333029838e-19,1.252731944827272354e-19,1.294489676321514870e-19,1.336247407815757386e-19,1.378005139309999902e-19,1.419762870804242418e-19,1.461520602298484934e-19,1.503278333792727450e-19,1.545036065286969966e-19,1.586793796781212483e-19,1.628551528275454999e-19,1.670309259769697515e-19,1.712066991263940031e-19,1.753824722758182547e-19,1.795582454252425063e-19,1.837340185746667579e-19,1.879097917240910095e-19,1.920855648735152611e-19,1.962613380229395128e-19,2.004371111723637644e-19,2.046128843217880160e-19,2.087886574712122676e-19,2.129644306206365192e-19,2.171402037700607949e-19,2.213159769194850706e-19,2.254917500689093463e-19,2.296675232183336219e-19,2.338432963677578976e-19,2.380190695171821733e-19,2.421948426666064490e-19,2.463706158160307247e-19,2.505463889654550004e-19,2.547221621148792761e-19,2.588979352643035517e-19,2.630737084137278274e-19 +0.000000000000000000e+00,4.276927559815525606e-21,8.553855119631051212e-21,1.283078267944657682e-20,1.710771023926210242e-20,2.138463779907762953e-20,2.566156535889315664e-20,2.993849291870868376e-20,3.421542047852421087e-20,3.849234803833973798e-20,4.276927559815526509e-20,4.704620315797079220e-20,5.132313071778631931e-20,5.560005827760184040e-20,5.987698583741735547e-20,6.415391339723287055e-20,6.843084095704838562e-20,7.270776851686390069e-20,7.698469607667941577e-20,8.126162363649493084e-20,8.553855119631044591e-20,8.981547875612596099e-20,9.409240631594147606e-20,9.836933387575699114e-20,1.026462614355725062e-19,1.069231889953880213e-19,1.112001165552035364e-19,1.154770441150190514e-19,1.197539716748345665e-19,1.240308992346500816e-19,1.283078267944655966e-19,1.325847543542811117e-19,1.368616819140966268e-19,1.411386094739121419e-19,1.454155370337276569e-19,1.496924645935431720e-19,1.539693921533586871e-19,1.582463197131742022e-19,1.625232472729897172e-19,1.668001748328052323e-19,1.710771023926207474e-19,1.753540299524362625e-19,1.796309575122517775e-19,1.839078850720672926e-19,1.881848126318828077e-19,1.924617401916983228e-19,1.967386677515138378e-19,2.010155953113293529e-19,2.052925228711448680e-19,2.095694504309603830e-19,2.138463779907758981e-19,2.181233055505913891e-19,2.224002331104068801e-19,2.266771606702223711e-19,2.309540882300378621e-19,2.352310157898533531e-19,2.395079433496688441e-19,2.437848709094843351e-19,2.480617984692998261e-19,2.523387260291153171e-19,2.566156535889308081e-19,2.608925811487462991e-19,2.651695087085617901e-19,2.694464362683772811e-19 +0.000000000000000000e+00,5.421375844187769381e-10,1.084275168837553876e-09,1.626412753256330918e-09,2.168550337675108166e-09,2.710687922093885414e-09,3.252825506512662663e-09,3.794963090931440325e-09,4.337100675350217987e-09,4.879238259768995649e-09,5.421375844187773310e-09,5.963513428606550972e-09,6.505651013025328634e-09,7.047788597444106296e-09,7.589926181862883958e-09,8.132063766281661620e-09,8.674201350700439282e-09,9.216338935119216944e-09,9.758476519537994606e-09,1.030061410395677227e-08,1.084275168837554993e-08,1.138488927279432759e-08,1.192702685721310525e-08,1.246916444163188292e-08,1.301130202605066058e-08,1.355343961046943824e-08,1.409557719488821590e-08,1.463771477930699356e-08,1.517985236372577122e-08,1.572198994814454723e-08,1.626412753256332324e-08,1.680626511698209925e-08,1.734840270140087526e-08,1.789054028581965126e-08,1.843267787023842727e-08,1.897481545465720328e-08,1.951695303907597929e-08,2.005909062349475529e-08,2.060122820791353130e-08,2.114336579233230731e-08,2.168550337675108332e-08,2.222764096116985932e-08,2.276977854558863533e-08,2.331191613000741134e-08,2.385405371442618735e-08,2.439619129884496335e-08,2.493832888326373936e-08,2.548046646768251537e-08,2.602260405210129138e-08,2.656474163652006738e-08,2.710687922093884339e-08,2.764901680535761940e-08,2.819115438977639541e-08,2.873329197419517141e-08,2.927542955861394742e-08,2.981756714303272343e-08,3.035970472745149613e-08,3.090184231187026883e-08,3.144397989628904153e-08,3.198611748070781422e-08,3.252825506512658692e-08,3.307039264954535962e-08,3.361253023396413232e-08,3.415466781838290502e-08 +0.000000000000000000e+00,-3.812487638660508303e-21,-7.624975277321016606e-21,-1.143746291598152491e-20,-1.524995055464203321e-20,-1.906243819330254001e-20,-2.287492583196304681e-20,-2.668741347062355361e-20,-3.049990110928406040e-20,-3.431238874794456720e-20,-3.812487638660507400e-20,-4.193736402526558080e-20,-4.574985166392608760e-20,-4.956233930258659440e-20,-5.337482694124710119e-20,-5.718731457990761401e-20,-6.099980221856813285e-20,-6.481228985722865168e-20,-6.862477749588917052e-20,-7.243726513454968935e-20,-7.624975277321020819e-20,-8.006224041187072702e-20,-8.387472805053124586e-20,-8.768721568919176469e-20,-9.149970332785228353e-20,-9.531219096651280236e-20,-9.912467860517332120e-20,-1.029371662438338400e-19,-1.067496538824943589e-19,-1.105621415211548777e-19,-1.143746291598153965e-19,-1.181871167984759154e-19,-1.219996044371364342e-19,-1.258120920757969530e-19,-1.296245797144574719e-19,-1.334370673531179907e-19,-1.372495549917785096e-19,-1.410620426304390284e-19,-1.448745302690995472e-19,-1.486870179077600661e-19,-1.524995055464205849e-19,-1.563119931850811037e-19,-1.601244808237416226e-19,-1.639369684624021414e-19,-1.677494561010626602e-19,-1.715619437397231791e-19,-1.753744313783836979e-19,-1.791869190170442167e-19,-1.829994066557047356e-19,-1.868118942943652544e-19,-1.906243819330257732e-19,-1.944368695716862921e-19,-1.982493572103468109e-19,-2.020618448490073298e-19,-2.058743324876678486e-19,-2.096868201263283674e-19,-2.134993077649888863e-19,-2.173117954036494051e-19,-2.211242830423099480e-19,-2.249367706809704909e-19,-2.287492583196310338e-19,-2.325617459582915767e-19,-2.363742335969521196e-19,-2.401867212356126626e-19 +0.000000000000000000e+00,-3.959032161738307968e-21,-7.918064323476615936e-21,-1.187709648521492390e-20,-1.583612864695323187e-20,-1.979516080869153834e-20,-2.375419297042984480e-20,-2.771322513216815126e-20,-3.167225729390645772e-20,-3.563128945564476419e-20,-3.959032161738307065e-20,-4.354935377912137711e-20,-4.750838594085968358e-20,-5.146741810259799004e-20,-5.542645026433630252e-20,-5.938548242607461501e-20,-6.334451458781292749e-20,-6.730354674955123997e-20,-7.126257891128955245e-20,-7.522161107302786493e-20,-7.918064323476617741e-20,-8.313967539650448990e-20,-8.709870755824280238e-20,-9.105773971998111486e-20,-9.501677188171942734e-20,-9.897580404345773982e-20,-1.029348362051960523e-19,-1.068938683669343648e-19,-1.108529005286726773e-19,-1.148119326904109777e-19,-1.187709648521492782e-19,-1.227299970138875786e-19,-1.266890291756258790e-19,-1.306480613373641795e-19,-1.346070934991024799e-19,-1.385661256608407804e-19,-1.425251578225790808e-19,-1.464841899843173813e-19,-1.504432221460556817e-19,-1.544022543077939822e-19,-1.583612864695322826e-19,-1.623203186312705831e-19,-1.662793507930088835e-19,-1.702383829547471839e-19,-1.741974151164854844e-19,-1.781564472782237848e-19,-1.821154794399620853e-19,-1.860745116017003857e-19,-1.900335437634386862e-19,-1.939925759251769866e-19,-1.979516080869152871e-19,-2.019106402486535875e-19,-2.058696724103918879e-19,-2.098287045721301884e-19,-2.137877367338684888e-19,-2.177467688956067893e-19,-2.217058010573451138e-19,-2.256648332190834383e-19,-2.296238653808217628e-19,-2.335828975425600874e-19,-2.375419297042984119e-19,-2.415009618660367364e-19,-2.454599940277750609e-19,-2.494190261895133854e-19 +0.000000000000000000e+00,5.825122639330403514e-10,1.165024527866080703e-09,1.747536791799121054e-09,2.330049055732161406e-09,2.912561319665201757e-09,3.495073583598242108e-09,4.077585847531282460e-09,4.660098111464322811e-09,5.242610375397363162e-09,5.825122639330403514e-09,6.407634903263443865e-09,6.990147167196484217e-09,7.572659431129524568e-09,8.155171695062564919e-09,8.737683958995605271e-09,9.320196222928645622e-09,9.902708486861685974e-09,1.048522075079472632e-08,1.106773301472776668e-08,1.165024527866080703e-08,1.223275754259384738e-08,1.281526980652688773e-08,1.339778207045992808e-08,1.398029433439296843e-08,1.456280659832600878e-08,1.514531886225904914e-08,1.572783112619208949e-08,1.631034339012512984e-08,1.689285565405817019e-08,1.747536791799121054e-08,1.805788018192425089e-08,1.864039244585729124e-08,1.922290470979033160e-08,1.980541697372337195e-08,2.038792923765641230e-08,2.097044150158945265e-08,2.155295376552249300e-08,2.213546602945553335e-08,2.271797829338857370e-08,2.330049055732161406e-08,2.388300282125465441e-08,2.446551508518769476e-08,2.504802734912073511e-08,2.563053961305377546e-08,2.621305187698681581e-08,2.679556414091985616e-08,2.737807640485289652e-08,2.796058866878593687e-08,2.854310093271897722e-08,2.912561319665201757e-08,2.970812546058505792e-08,3.029063772451809827e-08,3.087314998845113862e-08,3.145566225238417897e-08,3.203817451631721933e-08,3.262068678025025968e-08,3.320319904418330003e-08,3.378571130811634038e-08,3.436822357204938073e-08,3.495073583598242108e-08,3.553324809991546143e-08,3.611576036384850179e-08,3.669827262778154214e-08 +0.000000000000000000e+00,3.982020215641426606e-21,7.964040431282853212e-21,1.194606064692427982e-20,1.592808086256570642e-20,1.991010107820713303e-20,2.389212129384855964e-20,2.787414150948998624e-20,3.185616172513141285e-20,3.583818194077283945e-20,3.982020215641426606e-20,4.380222237205569267e-20,4.778424258769711927e-20,5.176626280333854588e-20,5.574828301897997248e-20,5.973030323462140511e-20,6.371232345026283773e-20,6.769434366590427036e-20,7.167636388154570298e-20,7.565838409718713561e-20,7.964040431282856823e-20,8.362242452847000086e-20,8.760444474411143348e-20,9.158646495975286611e-20,9.556848517539429873e-20,9.955050539103573136e-20,1.035325256066771640e-19,1.075145458223185966e-19,1.114965660379600172e-19,1.154785862536014378e-19,1.194606064692428584e-19,1.234426266848842790e-19,1.274246469005256995e-19,1.314066671161671201e-19,1.353886873318085407e-19,1.393707075474499613e-19,1.433527277630913819e-19,1.473347479787328025e-19,1.513167681943742231e-19,1.552987884100156437e-19,1.592808086256570642e-19,1.632628288412984848e-19,1.672448490569399054e-19,1.712268692725813260e-19,1.752088894882227466e-19,1.791909097038641672e-19,1.831729299195055878e-19,1.871549501351470084e-19,1.911369703507884289e-19,1.951189905664298495e-19,1.991010107820712701e-19,2.030830309977126907e-19,2.070650512133541113e-19,2.110470714289955319e-19,2.150290916446369525e-19,2.190111118602783490e-19,2.229931320759197455e-19,2.269751522915611420e-19,2.309571725072025385e-19,2.349391927228439350e-19,2.389212129384853315e-19,2.429032331541267281e-19,2.468852533697681246e-19,2.508672735854095211e-19 +0.000000000000000000e+00,4.068889464056412741e-21,8.137778928112825482e-21,1.220666839216923822e-20,1.627555785622565096e-20,2.034444732028206220e-20,2.441333678433847344e-20,2.848222624839488467e-20,3.255111571245129591e-20,3.662000517650770715e-20,4.068889464056411838e-20,4.475778410462052962e-20,4.882667356867694085e-20,5.289556303273335209e-20,5.696445249678975731e-20,6.103334196084615651e-20,6.510223142490255571e-20,6.917112088895895491e-20,7.324001035301535411e-20,7.730889981707175331e-20,8.137778928112815250e-20,8.544667874518455170e-20,8.951556820924095090e-20,9.358445767329735010e-20,9.765334713735374930e-20,1.017222366014101485e-19,1.057911260654665477e-19,1.098600155295229469e-19,1.139289049935793461e-19,1.179977944576357453e-19,1.220666839216921445e-19,1.261355733857485437e-19,1.302044628498049429e-19,1.342733523138613421e-19,1.383422417779177413e-19,1.424111312419741405e-19,1.464800207060305397e-19,1.505489101700869389e-19,1.546177996341433381e-19,1.586866890981997373e-19,1.627555785622561365e-19,1.668244680263125357e-19,1.708933574903689349e-19,1.749622469544253341e-19,1.790311364184817333e-19,1.831000258825381325e-19,1.871689153465945317e-19,1.912378048106509309e-19,1.953066942747073301e-19,1.993755837387637293e-19,2.034444732028201285e-19,2.075133626668765277e-19,2.115822521309329269e-19,2.156511415949893261e-19,2.197200310590457494e-19,2.237889205231021486e-19,2.278578099871585478e-19,2.319266994512149470e-19,2.359955889152713462e-19,2.400644783793277454e-19,2.441333678433841445e-19,2.482022573074405437e-19,2.522711467714969429e-19,2.563400362355533421e-19 +0.000000000000000000e+00,5.825122639418570627e-10,1.165024527883714125e-09,1.747536791825571188e-09,2.330049055767428251e-09,2.912561319709285521e-09,3.495073583651142790e-09,4.077585847593000060e-09,4.660098111534857329e-09,5.242610375476714599e-09,5.825122639418571868e-09,6.407634903360429138e-09,6.990147167302286407e-09,7.572659431244143677e-09,8.155171695186000119e-09,8.737683959127856562e-09,9.320196223069713004e-09,9.902708487011569446e-09,1.048522075095342589e-08,1.106773301489528233e-08,1.165024527883713877e-08,1.223275754277899522e-08,1.281526980672085166e-08,1.339778207066270810e-08,1.398029433460456454e-08,1.456280659854642099e-08,1.514531886248827743e-08,1.572783112643013222e-08,1.631034339037198700e-08,1.689285565431384179e-08,1.747536791825569658e-08,1.805788018219755137e-08,1.864039244613940616e-08,1.922290471008126094e-08,1.980541697402311573e-08,2.038792923796497052e-08,2.097044150190682531e-08,2.155295376584868010e-08,2.213546602979053488e-08,2.271797829373238967e-08,2.330049055767424446e-08,2.388300282161609925e-08,2.446551508555795404e-08,2.504802734949980882e-08,2.563053961344166361e-08,2.621305187738351840e-08,2.679556414132537319e-08,2.737807640526722798e-08,2.796058866920908276e-08,2.854310093315093755e-08,2.912561319709279234e-08,2.970812546103464713e-08,3.029063772497650192e-08,3.087314998891835670e-08,3.145566225286021149e-08,3.203817451680206628e-08,3.262068678074392107e-08,3.320319904468577586e-08,3.378571130862763064e-08,3.436822357256948543e-08,3.495073583651134022e-08,3.553324810045319501e-08,3.611576036439504980e-08,3.669827262833690458e-08 +0.000000000000000000e+00,-3.605811102288340407e-21,-7.211622204576680814e-21,-1.081743330686502197e-20,-1.442324440915336464e-20,-1.802905551144170730e-20,-2.163486661373004997e-20,-2.524067771601839263e-20,-2.884648881830673529e-20,-3.245229992059508097e-20,-3.605811102288342664e-20,-3.966392212517177231e-20,-4.326973322746011799e-20,-4.687554432974846366e-20,-5.048135543203680933e-20,-5.408716653432515501e-20,-5.769297763661350670e-20,-6.129878873890185839e-20,-6.490459984119021008e-20,-6.851041094347856177e-20,-7.211622204576691347e-20,-7.572203314805526516e-20,-7.932784425034361685e-20,-8.293365535263196854e-20,-8.653946645492032023e-20,-9.014527755720867192e-20,-9.375108865949702362e-20,-9.735689976178537531e-20,-1.009627108640737270e-19,-1.045685219663620787e-19,-1.081743330686504304e-19,-1.117801441709387700e-19,-1.153859552732271097e-19,-1.189917663755154493e-19,-1.225975774778037890e-19,-1.262033885800921287e-19,-1.298091996823804683e-19,-1.334150107846688080e-19,-1.370208218869571476e-19,-1.406266329892454873e-19,-1.442324440915338269e-19,-1.478382551938221666e-19,-1.514440662961105062e-19,-1.550498773983988459e-19,-1.586556885006871855e-19,-1.622614996029755252e-19,-1.658673107052638649e-19,-1.694731218075522045e-19,-1.730789329098405442e-19,-1.766847440121288838e-19,-1.802905551144172235e-19,-1.838963662167055631e-19,-1.875021773189939028e-19,-1.911079884212822424e-19,-1.947137995235705821e-19,-1.983196106258589218e-19,-2.019254217281472614e-19,-2.055312328304356011e-19,-2.091370439327239407e-19,-2.127428550350122804e-19,-2.163486661373006200e-19,-2.199544772395889597e-19,-2.235602883418772993e-19,-2.271660994441656390e-19 +0.000000000000000000e+00,-3.816204090524006632e-21,-7.632408181048013264e-21,-1.144861227157201914e-20,-1.526481636209602352e-20,-1.908102045262002789e-20,-2.289722454314403227e-20,-2.671342863366803665e-20,-3.052963272419204102e-20,-3.434583681471604239e-20,-3.816204090524004375e-20,-4.197824499576404512e-20,-4.579444908628804648e-20,-4.961065317681204785e-20,-5.342685726733604922e-20,-5.724306135786005058e-20,-6.105926544838404593e-20,-6.487546953890804128e-20,-6.869167362943203663e-20,-7.250787771995603197e-20,-7.632408181048002732e-20,-8.014028590100402267e-20,-8.395648999152801801e-20,-8.777269408205201336e-20,-9.158889817257600871e-20,-9.540510226310000406e-20,-9.922130635362399940e-20,-1.030375104441479948e-19,-1.068537145346719901e-19,-1.106699186251959854e-19,-1.144861227157199808e-19,-1.183023268062439761e-19,-1.221185308967679715e-19,-1.259347349872919668e-19,-1.297509390778159622e-19,-1.335671431683399575e-19,-1.373833472588639529e-19,-1.411995513493879482e-19,-1.450157554399119436e-19,-1.488319595304359389e-19,-1.526481636209599343e-19,-1.564643677114839296e-19,-1.602805718020079250e-19,-1.640967758925319203e-19,-1.679129799830559157e-19,-1.717291840735799110e-19,-1.755453881641039064e-19,-1.793615922546279017e-19,-1.831777963451518970e-19,-1.869940004356758924e-19,-1.908102045261998877e-19,-1.946264086167238831e-19,-1.984426127072478784e-19,-2.022588167977718738e-19,-2.060750208882958691e-19,-2.098912249788198645e-19,-2.137074290693438598e-19,-2.175236331598678311e-19,-2.213398372503918264e-19,-2.251560413409158218e-19,-2.289722454314398171e-19,-2.327884495219638125e-19,-2.366046536124878078e-19,-2.404208577030118032e-19 +0.000000000000000000e+00,5.751355146619235479e-10,1.150271029323847096e-09,1.725406543985770644e-09,2.300542058647694192e-09,2.875677573309617740e-09,3.450813087971541287e-09,4.025948602633464422e-09,4.601084117295387556e-09,5.176219631957310690e-09,5.751355146619233825e-09,6.326490661281156959e-09,6.901626175943080093e-09,7.476761690605003228e-09,8.051897205266925535e-09,8.627032719928847842e-09,9.202168234590770149e-09,9.777303749252692456e-09,1.035243926391461476e-08,1.092757477857653707e-08,1.150271029323845938e-08,1.207784580790038168e-08,1.265298132256230399e-08,1.322811683722422630e-08,1.380325235188614861e-08,1.437838786654807091e-08,1.495352338120999322e-08,1.552865889587191718e-08,1.610379441053384114e-08,1.667892992519576511e-08,1.725406543985768907e-08,1.782920095451961303e-08,1.840433646918153699e-08,1.897947198384346095e-08,1.955460749850538491e-08,2.012974301316730887e-08,2.070487852782923284e-08,2.128001404249115680e-08,2.185514955715308076e-08,2.243028507181500472e-08,2.300542058647692868e-08,2.358055610113885264e-08,2.415569161580077660e-08,2.473082713046270057e-08,2.530596264512462453e-08,2.588109815978654849e-08,2.645623367444847245e-08,2.703136918911039641e-08,2.760650470377232037e-08,2.818164021843424434e-08,2.875677573309616830e-08,2.933191124775809226e-08,2.990704676242001953e-08,3.048218227708194680e-08,3.105731779174387407e-08,3.163245330640580134e-08,3.220758882106772861e-08,3.278272433572965588e-08,3.335785985039158315e-08,3.393299536505351042e-08,3.450813087971543769e-08,3.508326639437736496e-08,3.565840190903929223e-08,3.623353742370121950e-08 +0.000000000000000000e+00,3.752190527665006105e-21,7.504381055330012210e-21,1.125657158299501832e-20,1.500876211066002442e-20,1.876095263832503203e-20,2.251314316599003964e-20,2.626533369365504725e-20,3.001752422132005486e-20,3.376971474898506247e-20,3.752190527665007008e-20,4.127409580431507769e-20,4.502628633198008530e-20,4.877847685964509291e-20,5.253066738731010052e-20,5.628285791497510813e-20,6.003504844264012175e-20,6.378723897030513538e-20,6.753942949797014901e-20,7.129162002563516264e-20,7.504381055330017627e-20,7.879600108096518990e-20,8.254819160863020352e-20,8.630038213629521715e-20,9.005257266396023078e-20,9.380476319162524441e-20,9.755695371929025804e-20,1.013091442469552717e-19,1.050613347746202853e-19,1.088135253022853110e-19,1.125657158299503366e-19,1.163179063576153623e-19,1.200700968852803880e-19,1.238222874129454136e-19,1.275744779406104393e-19,1.313266684682754650e-19,1.350788589959404906e-19,1.388310495236055163e-19,1.425832400512705419e-19,1.463354305789355676e-19,1.500876211066005933e-19,1.538398116342656189e-19,1.575920021619306446e-19,1.613441926895956703e-19,1.650963832172606959e-19,1.688485737449257216e-19,1.726007642725907473e-19,1.763529548002557729e-19,1.801051453279207986e-19,1.838573358555858243e-19,1.876095263832508499e-19,1.913617169109158756e-19,1.951139074385809013e-19,1.988660979662459269e-19,2.026182884939109526e-19,2.063704790215759783e-19,2.101226695492410039e-19,2.138748600769060296e-19,2.176270506045710553e-19,2.213792411322360809e-19,2.251314316599011066e-19,2.288836221875661322e-19,2.326358127152311579e-19,2.363880032428961836e-19 +0.000000000000000000e+00,3.860738900905372336e-21,7.721477801810744673e-21,1.158221670271611626e-20,1.544295560362148634e-20,1.930369450452685642e-20,2.316443340543222650e-20,2.702517230633759658e-20,3.088591120724296665e-20,3.474665010814833673e-20,3.860738900905370681e-20,4.246812790995907689e-20,4.632886681086444697e-20,5.018960571176981705e-20,5.405034461267518713e-20,5.791108351358055721e-20,6.177182241448592127e-20,6.563256131539128533e-20,6.949330021629664939e-20,7.335403911720201346e-20,7.721477801810737752e-20,8.107551691901274158e-20,8.493625581991810564e-20,8.879699472082346970e-20,9.265773362172883376e-20,9.651847252263419782e-20,1.003792114235395619e-19,1.042399503244449259e-19,1.081006892253502900e-19,1.119614281262556541e-19,1.158221670271610181e-19,1.196829059280663822e-19,1.235436448289717462e-19,1.274043837298771103e-19,1.312651226307824744e-19,1.351258615316878384e-19,1.389866004325932025e-19,1.428473393334985666e-19,1.467080782344039306e-19,1.505688171353092947e-19,1.544295560362146587e-19,1.582902949371200228e-19,1.621510338380253869e-19,1.660117727389307509e-19,1.698725116398361150e-19,1.737332505407414790e-19,1.775939894416468431e-19,1.814547283425522072e-19,1.853154672434575712e-19,1.891762061443629353e-19,1.930369450452682993e-19,1.968976839461736634e-19,2.007584228470790275e-19,2.046191617479843915e-19,2.084799006488897556e-19,2.123406395497951197e-19,2.162013784507004837e-19,2.200621173516058237e-19,2.239228562525111637e-19,2.277835951534165037e-19,2.316443340543218437e-19,2.355050729552271836e-19,2.393658118561325236e-19,2.432265507570378636e-19 +0.000000000000000000e+00,5.751355146699321038e-10,1.150271029339864208e-09,1.725406544009796311e-09,2.300542058679728415e-09,2.875677573349660312e-09,3.450813088019592209e-09,4.025948602689524106e-09,4.601084117359456003e-09,5.176219632029387900e-09,5.751355146699319797e-09,6.326490661369251694e-09,6.901626176039183591e-09,7.476761690709115488e-09,8.051897205379048213e-09,8.627032720048980937e-09,9.202168234718913661e-09,9.777303749388846385e-09,1.035243926405877911e-08,1.092757477872871183e-08,1.150271029339864456e-08,1.207784580806857728e-08,1.265298132273851001e-08,1.322811683740844273e-08,1.380325235207837545e-08,1.437838786674830818e-08,1.495352338141824090e-08,1.552865889608817528e-08,1.610379441075810966e-08,1.667892992542804404e-08,1.725406544009797842e-08,1.782920095476791280e-08,1.840433646943784717e-08,1.897947198410778155e-08,1.955460749877771593e-08,2.012974301344765031e-08,2.070487852811758469e-08,2.128001404278751907e-08,2.185514955745745345e-08,2.243028507212738782e-08,2.300542058679732220e-08,2.358055610146725658e-08,2.415569161613719096e-08,2.473082713080712534e-08,2.530596264547705972e-08,2.588109816014699410e-08,2.645623367481692847e-08,2.703136918948686285e-08,2.760650470415679723e-08,2.818164021882673161e-08,2.875677573349666599e-08,2.933191124816660037e-08,2.990704676283653475e-08,3.048218227750646912e-08,3.105731779217640350e-08,3.163245330684633788e-08,3.220758882151627226e-08,3.278272433618620664e-08,3.335785985085614102e-08,3.393299536552607540e-08,3.450813088019600977e-08,3.508326639486594415e-08,3.565840190953587853e-08,3.623353742420581291e-08 +0.000000000000000000e+00,-3.091445578173337220e-21,-6.182891156346674440e-21,-9.274336734520011284e-21,-1.236578231269334738e-20,-1.545722789086668347e-20,-1.854867346904001956e-20,-2.164011904721335565e-20,-2.473156462538669174e-20,-2.782301020356002783e-20,-3.091445578173336693e-20,-3.400590135990670604e-20,-3.709734693808004514e-20,-4.018879251625338424e-20,-4.328023809442672334e-20,-4.637168367260006244e-20,-4.946312925077340154e-20,-5.255457482894674064e-20,-5.564602040712007974e-20,-5.873746598529341884e-20,-6.182891156346675794e-20,-6.492035714164009704e-20,-6.801180271981343614e-20,-7.110324829798677525e-20,-7.419469387616011435e-20,-7.728613945433345345e-20,-8.037758503250679255e-20,-8.346903061068013165e-20,-8.656047618885347075e-20,-8.965192176702680985e-20,-9.274336734520014895e-20,-9.583481292337348805e-20,-9.892625850154682715e-20,-1.020177040797201663e-19,-1.051091496578935054e-19,-1.082005952360668445e-19,-1.112920408142401836e-19,-1.143834863924135347e-19,-1.174749319705868858e-19,-1.205663775487602370e-19,-1.236578231269335881e-19,-1.267492687051069392e-19,-1.298407142832802904e-19,-1.329321598614536415e-19,-1.360236054396269927e-19,-1.391150510178003438e-19,-1.422064965959736949e-19,-1.452979421741470461e-19,-1.483893877523203972e-19,-1.514808333304937483e-19,-1.545722789086670995e-19,-1.576637244868404506e-19,-1.607551700650138018e-19,-1.638466156431871529e-19,-1.669380612213605040e-19,-1.700295067995338552e-19,-1.731209523777072063e-19,-1.762123979558805575e-19,-1.793038435340539086e-19,-1.823952891122272597e-19,-1.854867346904006109e-19,-1.885781802685739620e-19,-1.916696258467473131e-19,-1.947610714249206643e-19 +0.000000000000000000e+00,-3.384198485120368227e-21,-6.768396970240736454e-21,-1.015259545536110430e-20,-1.353679394048147140e-20,-1.692099242560183700e-20,-2.030519091072220259e-20,-2.368938939584256818e-20,-2.707358788096293378e-20,-3.045778636608329937e-20,-3.384198485120366196e-20,-3.722618333632402454e-20,-4.061038182144438713e-20,-4.399458030656474971e-20,-4.737877879168511230e-20,-5.076297727680547488e-20,-5.414717576192583746e-20,-5.753137424704620607e-20,-6.091557273216657467e-20,-6.429977121728694327e-20,-6.768396970240731188e-20,-7.106816818752768048e-20,-7.445236667264804908e-20,-7.783656515776841769e-20,-8.122076364288878629e-20,-8.460496212800915489e-20,-8.798916061312952350e-20,-9.137335909824989210e-20,-9.475755758337026070e-20,-9.814175606849062930e-20,-1.015259545536109979e-19,-1.049101530387313665e-19,-1.082943515238517351e-19,-1.116785500089721037e-19,-1.150627484940924603e-19,-1.184469469792128168e-19,-1.218311454643331734e-19,-1.252153439494535300e-19,-1.285995424345738865e-19,-1.319837409196942431e-19,-1.353679394048145997e-19,-1.387521378899349562e-19,-1.421363363750553128e-19,-1.455205348601756694e-19,-1.489047333452960259e-19,-1.522889318304163825e-19,-1.556731303155367391e-19,-1.590573288006570956e-19,-1.624415272857774522e-19,-1.658257257708978088e-19,-1.692099242560181653e-19,-1.725941227411385219e-19,-1.759783212262588785e-19,-1.793625197113792350e-19,-1.827467181964995916e-19,-1.861309166816199482e-19,-1.895151151667403047e-19,-1.928993136518606613e-19,-1.962835121369810179e-19,-1.996677106221013744e-19,-2.030519091072217310e-19,-2.064361075923420876e-19,-2.098203060774624441e-19,-2.132045045625828007e-19 +0.000000000000000000e+00,5.183002024934647370e-10,1.036600404986929474e-09,1.554900607480394314e-09,2.073200809973859361e-09,2.591501012467324409e-09,3.109801214960789456e-09,3.628101417454254503e-09,4.146401619947719550e-09,4.664701822441185011e-09,5.183002024934650472e-09,5.701302227428115932e-09,6.219602429921581393e-09,6.737902632415046854e-09,7.256202834908512315e-09,7.774503037401977775e-09,8.292803239895444063e-09,8.811103442388910351e-09,9.329403644882376639e-09,9.847703847375842927e-09,1.036600404986930922e-08,1.088430425236277550e-08,1.140260445485624179e-08,1.192090465734970808e-08,1.243920485984317437e-08,1.295750506233664065e-08,1.347580526483010694e-08,1.399410546732357323e-08,1.451240566981703952e-08,1.503070587231050746e-08,1.554900607480397540e-08,1.606730627729744335e-08,1.658560647979091129e-08,1.710390668228437923e-08,1.762220688477784717e-08,1.814050708727131511e-08,1.865880728976478306e-08,1.917710749225825100e-08,1.969540769475171894e-08,2.021370789724518688e-08,2.073200809973865483e-08,2.125030830223212277e-08,2.176860850472559071e-08,2.228690870721905865e-08,2.280520890971252660e-08,2.332350911220599454e-08,2.384180931469946248e-08,2.436010951719293042e-08,2.487840971968639836e-08,2.539670992217986631e-08,2.591501012467333425e-08,2.643331032716680219e-08,2.695161052966027013e-08,2.746991073215373808e-08,2.798821093464720602e-08,2.850651113714067396e-08,2.902481133963414190e-08,2.954311154212760985e-08,3.006141174462108110e-08,3.057971194711455235e-08,3.109801214960802360e-08,3.161631235210149485e-08,3.213461255459496610e-08,3.265291275708843735e-08 +0.000000000000000000e+00,3.123155935675012121e-21,6.246311871350024241e-21,9.369467807025036362e-21,1.249262374270004848e-20,1.561577967837506060e-20,1.873893561405007272e-20,2.186209154972508484e-20,2.498524748540009696e-20,2.810840342107510608e-20,3.123155935675011519e-20,3.435471529242512430e-20,3.747787122810013341e-20,4.060102716377514252e-20,4.372418309945015163e-20,4.684733903512516074e-20,4.997049497080016985e-20,5.309365090647517897e-20,5.621680684215018808e-20,5.933996277782519719e-20,6.246311871350020630e-20,6.558627464917521541e-20,6.870943058485022452e-20,7.183258652052523363e-20,7.495574245620024274e-20,7.807889839187525186e-20,8.120205432755026097e-20,8.432521026322527008e-20,8.744836619890027919e-20,9.057152213457528830e-20,9.369467807025029741e-20,9.681783400592530652e-20,9.994098994160031563e-20,1.030641458772753247e-19,1.061873018129503339e-19,1.093104577486253430e-19,1.124336136843003521e-19,1.155567696199753612e-19,1.186799255556503703e-19,1.218030814913253794e-19,1.249262374270003885e-19,1.280493933626753976e-19,1.311725492983504067e-19,1.342957052340254159e-19,1.374188611697004250e-19,1.405420171053754341e-19,1.436651730410504432e-19,1.467883289767254523e-19,1.499114849124004614e-19,1.530346408480754705e-19,1.561577967837504796e-19,1.592809527194254887e-19,1.624041086551004979e-19,1.655272645907755070e-19,1.686504205264505161e-19,1.717735764621255252e-19,1.748967323978005343e-19,1.780198883334755434e-19,1.811430442691505525e-19,1.842662002048255616e-19,1.873893561405005707e-19,1.905125120761755799e-19,1.936356680118505890e-19,1.967588239475255981e-19 +0.000000000000000000e+00,3.496630101714583984e-21,6.993260203429167968e-21,1.048989030514375120e-20,1.398652040685833293e-20,1.748315050857291465e-20,2.097978061028749638e-20,2.447641071200207811e-20,2.797304081371665984e-20,3.146967091543124156e-20,3.496630101714582329e-20,3.846293111886040502e-20,4.195956122057498674e-20,4.545619132228956847e-20,4.895282142400415020e-20,5.244945152571873193e-20,5.594608162743330763e-20,5.944271172914787733e-20,6.293934183086244702e-20,6.643597193257701671e-20,6.993260203429158640e-20,7.342923213600615609e-20,7.692586223772072578e-20,8.042249233943529547e-20,8.391912244114986516e-20,8.741575254286443485e-20,9.091238264457900454e-20,9.440901274629357423e-20,9.790564284800814392e-20,1.014022729497227136e-19,1.048989030514372833e-19,1.083955331531518530e-19,1.118921632548664227e-19,1.153887933565809924e-19,1.188854234582955621e-19,1.223820535600101317e-19,1.258786836617247014e-19,1.293753137634392711e-19,1.328719438651538408e-19,1.363685739668684105e-19,1.398652040685829802e-19,1.433618341702975499e-19,1.468584642720121196e-19,1.503550943737266893e-19,1.538517244754412590e-19,1.573483545771558286e-19,1.608449846788703983e-19,1.643416147805849680e-19,1.678382448822995377e-19,1.713348749840141074e-19,1.748315050857286771e-19,1.783281351874432468e-19,1.818247652891578165e-19,1.853213953908723862e-19,1.888180254925869559e-19,1.923146555943015255e-19,1.958112856960160952e-19,1.993079157977306649e-19,2.028045458994452346e-19,2.063011760011598043e-19,2.097978061028743740e-19,2.132944362045889437e-19,2.167910663063035134e-19,2.202876964080180590e-19 +0.000000000000000000e+00,5.183002025000124919e-10,1.036600405000024984e-09,1.554900607500037372e-09,2.073200810000049554e-09,2.591501012500061736e-09,3.109801215000073917e-09,3.628101417500086099e-09,4.146401620000098281e-09,4.664701822500110049e-09,5.183002025000121817e-09,5.701302227500133585e-09,6.219602430000145353e-09,6.737902632500157121e-09,7.256202835000168890e-09,7.774503037500180658e-09,8.292803240000191599e-09,8.811103442500202540e-09,9.329403645000213481e-09,9.847703847500224422e-09,1.036600405000023536e-08,1.088430425250024630e-08,1.140260445500025724e-08,1.192090465750026819e-08,1.243920486000027913e-08,1.295750506250029007e-08,1.347580526500030101e-08,1.399410546750031195e-08,1.451240567000032289e-08,1.503070587250033549e-08,1.554900607500034808e-08,1.606730627750036068e-08,1.658560648000037327e-08,1.710390668250038587e-08,1.762220688500039846e-08,1.814050708750041106e-08,1.865880729000042365e-08,1.917710749250043625e-08,1.969540769500044884e-08,2.021370789750046144e-08,2.073200810000047403e-08,2.125030830250048663e-08,2.176860850500049922e-08,2.228690870750051182e-08,2.280520891000052441e-08,2.332350911250053701e-08,2.384180931500054961e-08,2.436010951750056220e-08,2.487840972000057480e-08,2.539670992250058739e-08,2.591501012500059999e-08,2.643331032750061258e-08,2.695161053000062518e-08,2.746991073250063777e-08,2.798821093500065037e-08,2.850651113750066296e-08,2.902481134000067556e-08,2.954311154250068815e-08,3.006141174500069744e-08,3.057971194750070673e-08,3.109801215000071601e-08,3.161631235250072530e-08,3.213461255500073459e-08,3.265291275750074387e-08 +0.000000000000000000e+00,-1.695423086865062899e-08,-3.390846173730125797e-08,-5.086269260595189027e-08,-6.781692347460252918e-08,-8.477115434325316810e-08,-1.017253852119038070e-07,-1.186796160805544459e-07,-1.356338469492050848e-07,-1.525880778178557105e-07,-1.695423086865063362e-07,-1.864965395551569619e-07,-2.034507704238075876e-07,-2.204050012924582132e-07,-2.373592321611088389e-07,-2.543134630297594646e-07,-2.712676938984101167e-07,-2.882219247670607689e-07,-3.051761556357114210e-07,-3.221303865043620732e-07,-3.390846173730127253e-07,-3.560388482416633775e-07,-3.729930791103140296e-07,-3.899473099789646818e-07,-4.069015408476153339e-07,-4.238557717162659861e-07,-4.408100025849166382e-07,-4.577642334535672904e-07,-4.747184643222179425e-07,-4.916726951908685417e-07,-5.086269260595191409e-07,-5.255811569281697401e-07,-5.425353877968203394e-07,-5.594896186654709386e-07,-5.764438495341215378e-07,-5.933980804027721370e-07,-6.103523112714227362e-07,-6.273065421400733354e-07,-6.442607730087239346e-07,-6.612150038773745338e-07,-6.781692347460251330e-07,-6.951234656146757322e-07,-7.120776964833263314e-07,-7.290319273519769307e-07,-7.459861582206275299e-07,-7.629403890892781291e-07,-7.798946199579287283e-07,-7.968488508265793275e-07,-8.138030816952299267e-07,-8.307573125638805259e-07,-8.477115434325311251e-07,-8.646657743011817243e-07,-8.816200051698323235e-07,-8.985742360384829227e-07,-9.155284669071335219e-07,-9.324826977757841212e-07,-9.494369286444347204e-07,-9.663911595130853196e-07,-9.833453903817358129e-07,-1.000299621250386306e-06,-1.017253852119036800e-06,-1.034208082987687293e-06,-1.051162313856337786e-06,-1.068116544724988280e-06 +0.000000000000000000e+00,-1.568792229699340491e-08,-3.137584459398680982e-08,-4.706376689098021472e-08,-6.275168918797361963e-08,-7.843961148496701792e-08,-9.412753378196041621e-08,-1.098154560789538145e-07,-1.255033783759472128e-07,-1.411913006729406111e-07,-1.568792229699340094e-07,-1.725671452669274077e-07,-1.882550675639208060e-07,-2.039429898609142042e-07,-2.196309121579076025e-07,-2.353188344549010008e-07,-2.510067567518943726e-07,-2.666946790488877709e-07,-2.823826013458811692e-07,-2.980705236428745675e-07,-3.137584459398679658e-07,-3.294463682368613641e-07,-3.451342905338547624e-07,-3.608222128308481607e-07,-3.765101351278415590e-07,-3.921980574248349573e-07,-4.078859797218283555e-07,-4.235739020188217538e-07,-4.392618243158151521e-07,-4.549497466128085504e-07,-4.706376689098019487e-07,-4.863255912067953470e-07,-5.020135135037887453e-07,-5.177014358007821436e-07,-5.333893580977755419e-07,-5.490772803947689402e-07,-5.647652026917623385e-07,-5.804531249887557367e-07,-5.961410472857491350e-07,-6.118289695827425333e-07,-6.275168918797359316e-07,-6.432048141767293299e-07,-6.588927364737227282e-07,-6.745806587707161265e-07,-6.902685810677095248e-07,-7.059565033647029231e-07,-7.216444256616963214e-07,-7.373323479586897196e-07,-7.530202702556831179e-07,-7.687081925526765162e-07,-7.843961148496699145e-07,-8.000840371466633128e-07,-8.157719594436567111e-07,-8.314598817406501094e-07,-8.471478040376435077e-07,-8.628357263346369060e-07,-8.785236486316303043e-07,-8.942115709286237025e-07,-9.098994932256171008e-07,-9.255874155226104991e-07,-9.412753378196038974e-07,-9.569632601165972957e-07,-9.726511824135906940e-07,-9.883391047105840923e-07 +0.000000000000000000e+00,-1.546690225667801924e-08,-3.093380451335603848e-08,-4.640070677003405772e-08,-6.186760902671207697e-08,-7.733451128339008959e-08,-9.280141354006810221e-08,-1.082683157967461148e-07,-1.237352180534241275e-07,-1.392021203101021401e-07,-1.546690225667801527e-07,-1.701359248234581653e-07,-1.856028270801361780e-07,-2.010697293368141906e-07,-2.165366315934922032e-07,-2.320035338501702158e-07,-2.474704361068482020e-07,-2.629373383635261881e-07,-2.784042406202041743e-07,-2.938711428768821604e-07,-3.093380451335601466e-07,-3.248049473902381328e-07,-3.402718496469161189e-07,-3.557387519035941051e-07,-3.712056541602720912e-07,-3.866725564169500774e-07,-4.021394586736280635e-07,-4.176063609303060497e-07,-4.330732631869840358e-07,-4.485401654436620220e-07,-4.640070677003400081e-07,-4.794739699570179943e-07,-4.949408722136959805e-07,-5.104077744703739666e-07,-5.258746767270519528e-07,-5.413415789837299389e-07,-5.568084812404079251e-07,-5.722753834970859112e-07,-5.877422857537638974e-07,-6.032091880104418835e-07,-6.186760902671198697e-07,-6.341429925237978558e-07,-6.496098947804758420e-07,-6.650767970371538281e-07,-6.805436992938318143e-07,-6.960106015505098005e-07,-7.114775038071877866e-07,-7.269444060638657728e-07,-7.424113083205437589e-07,-7.578782105772217451e-07,-7.733451128338997312e-07,-7.888120150905777174e-07,-8.042789173472557035e-07,-8.197458196039336897e-07,-8.352127218606116758e-07,-8.506796241172896620e-07,-8.661465263739676482e-07,-8.816134286306456343e-07,-8.970803308873236205e-07,-9.125472331440016066e-07,-9.280141354006795928e-07,-9.434810376573575789e-07,-9.589479399140355651e-07,-9.744148421707135512e-07 +0.000000000000000000e+00,-1.669099521213580714e-08,-3.338199042427161428e-08,-5.007298563640741812e-08,-6.676398084854321533e-08,-8.345497606067901255e-08,-1.001459712728148098e-07,-1.168369664849506070e-07,-1.335279616970864042e-07,-1.502189569092222146e-07,-1.669099521213580251e-07,-1.836009473334938355e-07,-2.002919425456296460e-07,-2.169829377577654564e-07,-2.336739329699012669e-07,-2.503649281820370773e-07,-2.670559233941728613e-07,-2.837469186063086453e-07,-3.004379138184444293e-07,-3.171289090305802133e-07,-3.338199042427159972e-07,-3.505108994548517812e-07,-3.672018946669875652e-07,-3.838928898791233492e-07,-4.005838850912591332e-07,-4.172748803033949171e-07,-4.339658755155307011e-07,-4.506568707276664851e-07,-4.673478659398022691e-07,-4.840388611519380001e-07,-5.007298563640737312e-07,-5.174208515762094622e-07,-5.341118467883451933e-07,-5.508028420004809243e-07,-5.674938372126166553e-07,-5.841848324247523864e-07,-6.008758276368881174e-07,-6.175668228490238485e-07,-6.342578180611595795e-07,-6.509488132732953105e-07,-6.676398084854310416e-07,-6.843308036975667726e-07,-7.010217989097025037e-07,-7.177127941218382347e-07,-7.344037893339739657e-07,-7.510947845461096968e-07,-7.677857797582454278e-07,-7.844767749703811589e-07,-8.011677701825168899e-07,-8.178587653946526209e-07,-8.345497606067883520e-07,-8.512407558189240830e-07,-8.679317510310598141e-07,-8.846227462431955451e-07,-9.013137414553312762e-07,-9.180047366674670072e-07,-9.346957318796027382e-07,-9.513867270917384693e-07,-9.680777223038743062e-07,-9.847687175160101431e-07,-1.001459712728145980e-06,-1.018150707940281817e-06,-1.034841703152417654e-06,-1.051532698364553491e-06 +0.000000000000000000e+00,-1.597361178496723972e-08,-3.194722356993447945e-08,-4.792083535490171586e-08,-6.389444713986894566e-08,-7.986805892483617546e-08,-9.584167070980340526e-08,-1.118152824947706351e-07,-1.277888942797378649e-07,-1.437625060647051079e-07,-1.597361178496723509e-07,-1.757097296346395940e-07,-1.916833414196068370e-07,-2.076569532045740800e-07,-2.236305649895413230e-07,-2.396041767745085661e-07,-2.555777885594757826e-07,-2.715514003444429992e-07,-2.875250121294102158e-07,-3.034986239143774323e-07,-3.194722356993446489e-07,-3.354458474843118655e-07,-3.514194592692790820e-07,-3.673930710542462986e-07,-3.833666828392135151e-07,-3.993402946241807317e-07,-4.153139064091479483e-07,-4.312875181941151648e-07,-4.472611299790823814e-07,-4.632347417640495980e-07,-4.792083535490168145e-07,-4.951819653339840840e-07,-5.111555771189513535e-07,-5.271291889039186230e-07,-5.431028006888858925e-07,-5.590764124738531620e-07,-5.750500242588204315e-07,-5.910236360437877010e-07,-6.069972478287549705e-07,-6.229708596137222400e-07,-6.389444713986895096e-07,-6.549180831836567791e-07,-6.708916949686240486e-07,-6.868653067535913181e-07,-7.028389185385585876e-07,-7.188125303235258571e-07,-7.347861421084931266e-07,-7.507597538934603961e-07,-7.667333656784276656e-07,-7.827069774633949351e-07,-7.986805892483622046e-07,-8.146542010333294741e-07,-8.306278128182967436e-07,-8.466014246032640131e-07,-8.625750363882312826e-07,-8.785486481731985521e-07,-8.945222599581658216e-07,-9.104958717431330911e-07,-9.264694835281003606e-07,-9.424430953130676301e-07,-9.584167070980348996e-07,-9.743903188830021691e-07,-9.903639306679694386e-07,-1.006337542452936708e-06 +0.000000000000000000e+00,-1.772374883327637730e-08,-3.544749766655275460e-08,-5.317124649982913190e-08,-7.089499533310550920e-08,-8.861874416638189312e-08,-1.063424929996582770e-07,-1.240662418329346610e-07,-1.417899906662110449e-07,-1.595137394994874288e-07,-1.772374883327638127e-07,-1.949612371660401966e-07,-2.126849859993165806e-07,-2.304087348325929645e-07,-2.481324836658693219e-07,-2.658562324991456794e-07,-2.835799813324220368e-07,-3.013037301656983943e-07,-3.190274789989747517e-07,-3.367512278322511092e-07,-3.544749766655274666e-07,-3.721987254988038241e-07,-3.899224743320801815e-07,-4.076462231653565390e-07,-4.253699719986328964e-07,-4.430937208319092539e-07,-4.608174696651856113e-07,-4.785412184984619158e-07,-4.962649673317382203e-07,-5.139887161650145248e-07,-5.317124649982908293e-07,-5.494362138315671338e-07,-5.671599626648434384e-07,-5.848837114981197429e-07,-6.026074603313960474e-07,-6.203312091646723519e-07,-6.380549579979486564e-07,-6.557787068312249609e-07,-6.735024556645012654e-07,-6.912262044977775699e-07,-7.089499533310538744e-07,-7.266737021643301789e-07,-7.443974509976064834e-07,-7.621211998308827880e-07,-7.798449486641590925e-07,-7.975686974974353970e-07,-8.152924463307117015e-07,-8.330161951639880060e-07,-8.507399439972643105e-07,-8.684636928305406150e-07,-8.861874416638169195e-07,-9.039111904970932240e-07,-9.216349393303695285e-07,-9.393586881636458330e-07,-9.570824369969221376e-07,-9.748061858301984421e-07,-9.925299346634747466e-07,-1.010253683496751051e-06,-1.027977432330027356e-06,-1.045701181163303660e-06,-1.063424929996579965e-06,-1.081148678829856269e-06,-1.098872427663132574e-06,-1.116596176496408878e-06 +0.000000000000000000e+00,-1.552028247062676192e-08,-3.104056494125352383e-08,-4.656084741188028244e-08,-6.208112988250703443e-08,-7.760141235313378642e-08,-9.312169482376053841e-08,-1.086419772943872904e-07,-1.241622597650140424e-07,-1.396825422356408076e-07,-1.552028247062675728e-07,-1.707231071768943381e-07,-1.862433896475211033e-07,-2.017636721181478685e-07,-2.172839545887746338e-07,-2.328042370594013990e-07,-2.483245195300281377e-07,-2.638448020006548765e-07,-2.793650844712816152e-07,-2.948853669419083540e-07,-3.104056494125350928e-07,-3.259259318831618315e-07,-3.414462143537885703e-07,-3.569664968244153090e-07,-3.724867792950420478e-07,-3.880070617656687865e-07,-4.035273442362955253e-07,-4.190476267069222640e-07,-4.345679091775490028e-07,-4.500881916481757416e-07,-4.656084741188024803e-07,-4.811287565894292191e-07,-4.966490390600559578e-07,-5.121693215306826966e-07,-5.276896040013094353e-07,-5.432098864719361741e-07,-5.587301689425629129e-07,-5.742504514131896516e-07,-5.897707338838163904e-07,-6.052910163544431291e-07,-6.208112988250698679e-07,-6.363315812956966066e-07,-6.518518637663233454e-07,-6.673721462369500841e-07,-6.828924287075768229e-07,-6.984127111782035617e-07,-7.139329936488303004e-07,-7.294532761194570392e-07,-7.449735585900837779e-07,-7.604938410607105167e-07,-7.760141235313372554e-07,-7.915344060019639942e-07,-8.070546884725907329e-07,-8.225749709432174717e-07,-8.380952534138442105e-07,-8.536155358844709492e-07,-8.691358183550976880e-07,-8.846561008257244267e-07,-9.001763832963511655e-07,-9.156966657669779042e-07,-9.312169482376046430e-07,-9.467372307082313818e-07,-9.622575131788582264e-07,-9.777777956494851769e-07 +0.000000000000000000e+00,-1.572404758726247173e-08,-3.144809517452494347e-08,-4.717214276178741189e-08,-6.289619034904987370e-08,-7.862023793631233551e-08,-9.434428552357479731e-08,-1.100683331108372591e-07,-1.257923806980997209e-07,-1.415164282853621960e-07,-1.572404758726246710e-07,-1.729645234598871461e-07,-1.886885710471496211e-07,-2.044126186344120961e-07,-2.201366662216745712e-07,-2.358607138089370462e-07,-2.515847613961994948e-07,-2.673088089834619434e-07,-2.830328565707243919e-07,-2.987569041579868405e-07,-3.144809517452492891e-07,-3.302049993325117377e-07,-3.459290469197741862e-07,-3.616530945070366348e-07,-3.773771420942990834e-07,-3.931011896815615319e-07,-4.088252372688239805e-07,-4.245492848560864291e-07,-4.402733324433488777e-07,-4.559973800306113262e-07,-4.717214276178737748e-07,-4.874454752051362234e-07,-5.031695227923986720e-07,-5.188935703796611205e-07,-5.346176179669235691e-07,-5.503416655541860177e-07,-5.660657131414484662e-07,-5.817897607287109148e-07,-5.975138083159733634e-07,-6.132378559032358120e-07,-6.289619034904982605e-07,-6.446859510777607091e-07,-6.604099986650231577e-07,-6.761340462522856063e-07,-6.918580938395480548e-07,-7.075821414268105034e-07,-7.233061890140729520e-07,-7.390302366013354005e-07,-7.547542841885978491e-07,-7.704783317758602977e-07,-7.862023793631227463e-07,-8.019264269503851948e-07,-8.176504745376476434e-07,-8.333745221249100920e-07,-8.490985697121725405e-07,-8.648226172994349891e-07,-8.805466648866974377e-07,-8.962707124739598863e-07,-9.119947600612223348e-07,-9.277188076484847834e-07,-9.434428552357472320e-07,-9.591669028230096806e-07,-9.748909504102720233e-07,-9.906149979975343659e-07 +0.000000000000000000e+00,-1.695423086864773386e-08,-3.390846173729546771e-08,-5.086269260594320157e-08,-6.781692347459093542e-08,-8.477115434323867589e-08,-1.017253852118864164e-07,-1.186796160805341568e-07,-1.356338469491818973e-07,-1.525880778178296378e-07,-1.695423086864773783e-07,-1.864965395551251187e-07,-2.034507704237728592e-07,-2.204050012924205997e-07,-2.373592321610683401e-07,-2.543134630297161071e-07,-2.712676938983638476e-07,-2.882219247670115880e-07,-3.051761556356593285e-07,-3.221303865043070690e-07,-3.390846173729548095e-07,-3.560388482416025499e-07,-3.729930791102502904e-07,-3.899473099788980309e-07,-4.069015408475457713e-07,-4.238557717161935118e-07,-4.408100025848412523e-07,-4.577642334534889928e-07,-4.747184643221367332e-07,-4.916726951907844737e-07,-5.086269260594322142e-07,-5.255811569280799547e-07,-5.425353877967276951e-07,-5.594896186653754356e-07,-5.764438495340231761e-07,-5.933980804026709165e-07,-6.103523112713186570e-07,-6.273065421399663975e-07,-6.442607730086141380e-07,-6.612150038772618784e-07,-6.781692347459096189e-07,-6.951234656145573594e-07,-7.120776964832050999e-07,-7.290319273518528403e-07,-7.459861582205005808e-07,-7.629403890891483213e-07,-7.798946199577960617e-07,-7.968488508264438022e-07,-8.138030816950915427e-07,-8.307573125637392832e-07,-8.477115434323870236e-07,-8.646657743010347641e-07,-8.816200051696825046e-07,-8.985742360383302451e-07,-9.155284669069779855e-07,-9.324826977756257260e-07,-9.494369286442734665e-07,-9.663911595129212069e-07,-9.833453903815689474e-07,-1.000299621250216688e-06,-1.017253852118864428e-06,-1.034208082987512169e-06,-1.051162313856159909e-06,-1.068116544724807650e-06 +0.000000000000000000e+00,-1.568792229699136012e-08,-3.137584459398272023e-08,-4.706376689097408035e-08,-6.275168918796544047e-08,-7.843961148495680059e-08,-9.412753378194816070e-08,-1.098154560789395208e-07,-1.255033783759308809e-07,-1.411913006729222411e-07,-1.568792229699136012e-07,-1.725671452669049613e-07,-1.882550675638963214e-07,-2.039429898608876815e-07,-2.196309121578790416e-07,-2.353188344548704018e-07,-2.510067567518617619e-07,-2.666946790488531485e-07,-2.823826013458445351e-07,-2.980705236428359216e-07,-3.137584459398273082e-07,-3.294463682368186948e-07,-3.451342905338100814e-07,-3.608222128308014680e-07,-3.765101351277928546e-07,-3.921980574247842412e-07,-4.078859797217756277e-07,-4.235739020187670143e-07,-4.392618243157584009e-07,-4.549497466127497875e-07,-4.706376689097411741e-07,-4.863255912067325607e-07,-5.020135135037239473e-07,-5.177014358007153339e-07,-5.333893580977067204e-07,-5.490772803946981070e-07,-5.647652026916894936e-07,-5.804531249886808802e-07,-5.961410472856722668e-07,-6.118289695826636534e-07,-6.275168918796550400e-07,-6.432048141766464266e-07,-6.588927364736378131e-07,-6.745806587706291997e-07,-6.902685810676205863e-07,-7.059565033646119729e-07,-7.216444256616033595e-07,-7.373323479585947461e-07,-7.530202702555861327e-07,-7.687081925525775193e-07,-7.843961148495689058e-07,-8.000840371465602924e-07,-8.157719594435516790e-07,-8.314598817405430656e-07,-8.471478040375344522e-07,-8.628357263345258388e-07,-8.785236486315172254e-07,-8.942115709285086119e-07,-9.098994932254999985e-07,-9.255874155224913851e-07,-9.412753378194827717e-07,-9.569632601164742642e-07,-9.726511824134657566e-07,-9.883391047104572491e-07 +0.000000000000000000e+00,-1.552028247062569982e-08,-3.104056494125139963e-08,-4.656084741187709945e-08,-6.208112988250279927e-08,-7.760141235312850570e-08,-9.312169482375421214e-08,-1.086419772943799186e-07,-1.241622597650056250e-07,-1.396825422356313314e-07,-1.552028247062570379e-07,-1.707231071768827443e-07,-1.862433896475084507e-07,-2.017636721181341572e-07,-2.172839545887598636e-07,-2.328042370593855700e-07,-2.483245195300113030e-07,-2.638448020006370359e-07,-2.793650844712627688e-07,-2.948853669418885017e-07,-3.104056494125142346e-07,-3.259259318831399675e-07,-3.414462143537657004e-07,-3.569664968243914333e-07,-3.724867792950171662e-07,-3.880070617656428991e-07,-4.035273442362686320e-07,-4.190476267068943649e-07,-4.345679091775200978e-07,-4.500881916481458307e-07,-4.656084741187715636e-07,-4.811287565893973495e-07,-4.966490390600231353e-07,-5.121693215306489211e-07,-5.276896040012747070e-07,-5.432098864719004928e-07,-5.587301689425262787e-07,-5.742504514131520645e-07,-5.897707338837778504e-07,-6.052910163544036362e-07,-6.208112988250294221e-07,-6.363315812956552079e-07,-6.518518637662809937e-07,-6.673721462369067796e-07,-6.828924287075325654e-07,-6.984127111781583513e-07,-7.139329936487841371e-07,-7.294532761194099230e-07,-7.449735585900357088e-07,-7.604938410606614946e-07,-7.760141235312872805e-07,-7.915344060019130663e-07,-8.070546884725388522e-07,-8.225749709431646380e-07,-8.380952534137904239e-07,-8.536155358844162097e-07,-8.691358183550419956e-07,-8.846561008256677814e-07,-9.001763832962935672e-07,-9.156966657669193531e-07,-9.312169482375451389e-07,-9.467372307081709248e-07,-9.622575131787968165e-07,-9.777777956494227082e-07 +0.000000000000000000e+00,-1.669099521213331236e-08,-3.338199042426662473e-08,-5.007298563639994040e-08,-6.676398084853326269e-08,-8.345497606066658498e-08,-1.001459712727999073e-07,-1.168369664849332296e-07,-1.335279616970665519e-07,-1.502189569091998741e-07,-1.669099521213331964e-07,-1.836009473334665187e-07,-2.002919425455998410e-07,-2.169829377577331633e-07,-2.336739329698664856e-07,-2.503649281819998079e-07,-2.670559233941331567e-07,-2.837469186062665054e-07,-3.004379138183998542e-07,-3.171289090305332029e-07,-3.338199042426665517e-07,-3.505108994547999005e-07,-3.672018946669332492e-07,-3.838928898790665980e-07,-4.005838850911999467e-07,-4.172748803033332955e-07,-4.339658755154666443e-07,-4.506568707275999930e-07,-4.673478659397333418e-07,-4.840388611518666376e-07,-5.007298563639999334e-07,-5.174208515761332292e-07,-5.341118467882665251e-07,-5.508028420003998209e-07,-5.674938372125331167e-07,-5.841848324246664125e-07,-6.008758276367997084e-07,-6.175668228489330042e-07,-6.342578180610663000e-07,-6.509488132731995958e-07,-6.676398084853328916e-07,-6.843308036974661875e-07,-7.010217989095994833e-07,-7.177127941217327791e-07,-7.344037893338660749e-07,-7.510947845459993707e-07,-7.677857797581326666e-07,-7.844767749702659624e-07,-8.011677701823992582e-07,-8.178587653945325540e-07,-8.345497606066658498e-07,-8.512407558187991457e-07,-8.679317510309324415e-07,-8.846227462430657373e-07,-9.013137414551990331e-07,-9.180047366673323290e-07,-9.346957318794656248e-07,-9.513867270915989206e-07,-9.680777223037322164e-07,-9.847687175158655122e-07,-1.001459712727998808e-06,-1.018150707940132104e-06,-1.034841703152265400e-06,-1.051532698364398696e-06 +0.000000000000000000e+00,-1.597361178496484090e-08,-3.194722356992968180e-08,-4.792083535489452270e-08,-6.389444713985936360e-08,-7.986805892482419788e-08,-9.584167070978903217e-08,-1.118152824947538664e-07,-1.277888942797187007e-07,-1.437625060646835350e-07,-1.597361178496483693e-07,-1.757097296346132036e-07,-1.916833414195780379e-07,-2.076569532045428721e-07,-2.236305649895077064e-07,-2.396041767744725142e-07,-2.555777885594373485e-07,-2.715514003444021828e-07,-2.875250121293670171e-07,-3.034986239143318514e-07,-3.194722356992966857e-07,-3.354458474842615199e-07,-3.514194592692263542e-07,-3.673930710541911885e-07,-3.833666828391560228e-07,-3.993402946241208571e-07,-4.153139064090856914e-07,-4.312875181940505256e-07,-4.472611299790153599e-07,-4.632347417639801942e-07,-4.792083535489450285e-07,-4.951819653339098628e-07,-5.111555771188746970e-07,-5.271291889038395313e-07,-5.431028006888043656e-07,-5.590764124737691999e-07,-5.750500242587340342e-07,-5.910236360436988685e-07,-6.069972478286637027e-07,-6.229708596136285370e-07,-6.389444713985933713e-07,-6.549180831835582056e-07,-6.708916949685230399e-07,-6.868653067534878742e-07,-7.028389185384527084e-07,-7.188125303234175427e-07,-7.347861421083823770e-07,-7.507597538933472113e-07,-7.667333656783120456e-07,-7.827069774632768799e-07,-7.986805892482417141e-07,-8.146542010332065484e-07,-8.306278128181713827e-07,-8.466014246031362170e-07,-8.625750363881010513e-07,-8.785486481730658856e-07,-8.945222599580307198e-07,-9.104958717429955541e-07,-9.264694835279603884e-07,-9.424430953129252227e-07,-9.584167070978900570e-07,-9.743903188828549971e-07,-9.903639306678199373e-07,-1.006337542452784877e-06 +0.000000000000000000e+00,-1.772374883327343916e-08,-3.544749766654687831e-08,-5.317124649982031747e-08,-7.089499533309375662e-08,-8.861874416636720239e-08,-1.063424929996406482e-07,-1.240662418329140939e-07,-1.417899906661875397e-07,-1.595137394994609855e-07,-1.772374883327344313e-07,-1.949612371660078770e-07,-2.126849859992813228e-07,-2.304087348325547686e-07,-2.481324836658282408e-07,-2.658562324991016866e-07,-2.835799813323751324e-07,-3.013037301656485781e-07,-3.190274789989220239e-07,-3.367512278321954697e-07,-3.544749766654689155e-07,-3.721987254987423612e-07,-3.899224743320158070e-07,-4.076462231652892528e-07,-4.253699719985626985e-07,-4.430937208318361443e-07,-4.608174696651095901e-07,-4.785412184983830359e-07,-4.962649673316564816e-07,-5.139887161649299274e-07,-5.317124649982033732e-07,-5.494362138314768190e-07,-5.671599626647502647e-07,-5.848837114980237105e-07,-6.026074603312971563e-07,-6.203312091645706021e-07,-6.380549579978440478e-07,-6.557787068311174936e-07,-6.735024556643909394e-07,-6.912262044976643851e-07,-7.089499533309378309e-07,-7.266737021642112767e-07,-7.443974509974847225e-07,-7.621211998307581682e-07,-7.798449486640316140e-07,-7.975686974973050598e-07,-8.152924463305785056e-07,-8.330161951638519513e-07,-8.507399439971253971e-07,-8.684636928303988429e-07,-8.861874416636722886e-07,-9.039111904969457344e-07,-9.216349393302191802e-07,-9.393586881634926260e-07,-9.570824369967660717e-07,-9.748061858300396234e-07,-9.925299346633131750e-07,-1.010253683496586727e-06,-1.027977432329860278e-06,-1.045701181163133830e-06,-1.063424929996407382e-06,-1.081148678829680933e-06,-1.098872427662954485e-06,-1.116596176496228037e-06 +0.000000000000000000e+00,-1.727474744807645491e-08,-3.454949489615290983e-08,-5.182424234422936474e-08,-6.909898979230581966e-08,-8.637373724038227457e-08,-1.036484846884587295e-07,-1.209232321365351712e-07,-1.381979795846116129e-07,-1.554727270326880545e-07,-1.727474744807644962e-07,-1.900222219288409379e-07,-2.072969693769173796e-07,-2.245717168249938213e-07,-2.418464642730702365e-07,-2.591212117211466517e-07,-2.763959591692230669e-07,-2.936707066172994821e-07,-3.109454540653758973e-07,-3.282202015134523125e-07,-3.454949489615287277e-07,-3.627696964096051429e-07,-3.800444438576815581e-07,-3.973191913057579734e-07,-4.145939387538343886e-07,-4.318686862019108038e-07,-4.491434336499872190e-07,-4.664181810980636342e-07,-4.836929285461400494e-07,-5.009676759942164646e-07,-5.182424234422928798e-07,-5.355171708903692950e-07,-5.527919183384457102e-07,-5.700666657865221255e-07,-5.873414132345985407e-07,-6.046161606826749559e-07,-6.218909081307513711e-07,-6.391656555788277863e-07,-6.564404030269042015e-07,-6.737151504749806167e-07,-6.909898979230570319e-07,-7.082646453711334471e-07,-7.255393928192098624e-07,-7.428141402672862776e-07,-7.600888877153626928e-07,-7.773636351634391080e-07,-7.946383826115155232e-07,-8.119131300595919384e-07,-8.291878775076683536e-07,-8.464626249557447688e-07,-8.637373724038211840e-07,-8.810121198518975992e-07,-8.982868672999740145e-07,-9.155616147480504297e-07,-9.328363621961268449e-07,-9.501111096442032601e-07,-9.673858570922796753e-07,-9.846606045403560905e-07,-1.001935351988432506e-06,-1.019210099436508921e-06,-1.036484846884585336e-06,-1.053759594332661751e-06,-1.071034341780738167e-06,-1.088309089228814582e-06 +0.000000000000000000e+00,-1.711417634590734133e-08,-3.422835269181468266e-08,-5.134252903772202730e-08,-6.845670538362937856e-08,-8.557088172953672982e-08,-1.026850580754440811e-07,-1.197992344213514323e-07,-1.369134107672587836e-07,-1.540275871131661348e-07,-1.711417634590734861e-07,-1.882559398049808374e-07,-2.053701161508881886e-07,-2.224842924967955399e-07,-2.395984688427028647e-07,-2.567126451886101894e-07,-2.738268215345175142e-07,-2.909409978804248390e-07,-3.080551742263321638e-07,-3.251693505722394886e-07,-3.422835269181468134e-07,-3.593977032640541382e-07,-3.765118796099614630e-07,-3.936260559558687877e-07,-4.107402323017761125e-07,-4.278544086476834373e-07,-4.449685849935907621e-07,-4.620827613394980869e-07,-4.791969376854054117e-07,-4.963111140313127894e-07,-5.134252903772201671e-07,-5.305394667231275449e-07,-5.476536430690349226e-07,-5.647678194149423003e-07,-5.818819957608496780e-07,-5.989961721067570558e-07,-6.161103484526644335e-07,-6.332245247985718112e-07,-6.503387011444791890e-07,-6.674528774903865667e-07,-6.845670538362939444e-07,-7.016812301822013221e-07,-7.187954065281086999e-07,-7.359095828740160776e-07,-7.530237592199234553e-07,-7.701379355658308330e-07,-7.872521119117382108e-07,-8.043662882576455885e-07,-8.214804646035529662e-07,-8.385946409494603440e-07,-8.557088172953677217e-07,-8.728229936412750994e-07,-8.899371699871824771e-07,-9.070513463330898549e-07,-9.241655226789972326e-07,-9.412796990249046103e-07,-9.583938753708118822e-07,-9.755080517167191540e-07,-9.926222280626264259e-07,-1.009736404408533698e-06,-1.026850580754440970e-06,-1.043964757100348241e-06,-1.061078933446255513e-06,-1.078193109792162785e-06 +0.000000000000000000e+00,-1.817187531311579282e-08,-3.634375062623158563e-08,-5.451562593934737514e-08,-7.268750125246315803e-08,-9.085937656557894093e-08,-1.090312518786947238e-07,-1.272031271918104935e-07,-1.453750025049262631e-07,-1.635468778180420328e-07,-1.817187531311578024e-07,-1.998906284442735721e-07,-2.180625037573893418e-07,-2.362343790705051114e-07,-2.544062543836208811e-07,-2.725781296967366507e-07,-2.907500050098524204e-07,-3.089218803229681900e-07,-3.270937556360839597e-07,-3.452656309491997293e-07,-3.634375062623154990e-07,-3.816093815754312687e-07,-3.997812568885470383e-07,-4.179531322016628080e-07,-4.361250075147785776e-07,-4.542968828278943473e-07,-4.724687581410101169e-07,-4.906406334541258337e-07,-5.088125087672415504e-07,-5.269843840803572671e-07,-5.451562593934729838e-07,-5.633281347065887005e-07,-5.815000100197044172e-07,-5.996718853328201340e-07,-6.178437606459358507e-07,-6.360156359590515674e-07,-6.541875112721672841e-07,-6.723593865852830008e-07,-6.905312618983987175e-07,-7.087031372115144343e-07,-7.268750125246301510e-07,-7.450468878377458677e-07,-7.632187631508615844e-07,-7.813906384639773011e-07,-7.995625137770930178e-07,-8.177343890902087346e-07,-8.359062644033244513e-07,-8.540781397164401680e-07,-8.722500150295558847e-07,-8.904218903426716014e-07,-9.085937656557873181e-07,-9.267656409689030349e-07,-9.449375162820187516e-07,-9.631093915951344683e-07,-9.812812669082501850e-07,-9.994531422213659017e-07,-1.017625017534481618e-06,-1.035796892847597335e-06,-1.053968768160713052e-06,-1.072140643473828769e-06,-1.090312518786944485e-06,-1.108484394100060202e-06,-1.126656269413175919e-06,-1.144828144726291635e-06 +0.000000000000000000e+00,-1.727474744807338773e-08,-3.454949489614677546e-08,-5.182424234422016650e-08,-6.909898979229356415e-08,-8.637373724036696181e-08,-1.036484846884403595e-07,-1.209232321365137571e-07,-1.381979795845871548e-07,-1.554727270326605524e-07,-1.727474744807339501e-07,-1.900222219288073477e-07,-2.072969693768807454e-07,-2.245717168249541431e-07,-2.418464642730275672e-07,-2.591212117211010178e-07,-2.763959591691744684e-07,-2.936707066172479190e-07,-3.109454540653213696e-07,-3.282202015133948202e-07,-3.454949489614682707e-07,-3.627696964095417213e-07,-3.800444438576151719e-07,-3.973191913056886225e-07,-4.145939387537620731e-07,-4.318686862018355237e-07,-4.491434336499089743e-07,-4.664181810979824249e-07,-4.836929285460558755e-07,-5.009676759941293261e-07,-5.182424234422027767e-07,-5.355171708902762273e-07,-5.527919183383496779e-07,-5.700666657864231285e-07,-5.873414132344965791e-07,-6.046161606825700297e-07,-6.218909081306434803e-07,-6.391656555787169309e-07,-6.564404030267903815e-07,-6.737151504748638321e-07,-6.909898979229372826e-07,-7.082646453710107332e-07,-7.255393928190841838e-07,-7.428141402671576344e-07,-7.600888877152310850e-07,-7.773636351633045356e-07,-7.946383826113779862e-07,-8.119131300594514368e-07,-8.291878775075248874e-07,-8.464626249555983380e-07,-8.637373724036717886e-07,-8.810121198517452392e-07,-8.982868672998186898e-07,-9.155616147478921404e-07,-9.328363621959655910e-07,-9.501111096440390416e-07,-9.673858570921123863e-07,-9.846606045401858369e-07,-1.001935351988259287e-06,-1.019210099436332738e-06,-1.036484846884406189e-06,-1.053759594332479639e-06,-1.071034341780553090e-06,-1.088309089228626540e-06 +0.000000000000000000e+00,-1.711417634590431054e-08,-3.422835269180862108e-08,-5.134252903771293493e-08,-6.845670538361725540e-08,-8.557088172952157587e-08,-1.026850580754258963e-07,-1.197992344213302036e-07,-1.369134107672345108e-07,-1.540275871131388180e-07,-1.711417634590431253e-07,-1.882559398049474325e-07,-2.053701161508517397e-07,-2.224842924967560470e-07,-2.395984688426603542e-07,-2.567126451885646614e-07,-2.738268215344689687e-07,-2.909409978803732759e-07,-3.080551742262775831e-07,-3.251693505721818904e-07,-3.422835269180861976e-07,-3.593977032639905048e-07,-3.765118796098948121e-07,-3.936260559557991193e-07,-4.107402323017034265e-07,-4.278544086476077338e-07,-4.449685849935120410e-07,-4.620827613394163482e-07,-4.791969376853206025e-07,-4.963111140312249097e-07,-5.134252903771292170e-07,-5.305394667230335242e-07,-5.476536430689378314e-07,-5.647678194148421387e-07,-5.818819957607464459e-07,-5.989961721066507531e-07,-6.161103484525550604e-07,-6.332245247984593676e-07,-6.503387011443636748e-07,-6.674528774902679821e-07,-6.845670538361722893e-07,-7.016812301820765965e-07,-7.187954065279809038e-07,-7.359095828738852110e-07,-7.530237592197895182e-07,-7.701379355656938255e-07,-7.872521119115981327e-07,-8.043662882575024399e-07,-8.214804646034067472e-07,-8.385946409493110544e-07,-8.557088172952153616e-07,-8.728229936411196689e-07,-8.899371699870239761e-07,-9.070513463329282833e-07,-9.241655226788325906e-07,-9.412796990247368978e-07,-9.583938753706412050e-07,-9.755080517165455123e-07,-9.926222280624498195e-07,-1.009736404408354127e-06,-1.026850580754258434e-06,-1.043964757100162741e-06,-1.061078933446067048e-06,-1.078193109791971356e-06 +0.000000000000000000e+00,-1.817187531311260321e-08,-3.634375062622520642e-08,-5.451562593933780632e-08,-7.268750125245039960e-08,-9.085937656556299288e-08,-1.090312518786755862e-07,-1.272031271917881794e-07,-1.453750025049007727e-07,-1.635468778180133660e-07,-1.817187531311259593e-07,-1.998906284442385526e-07,-2.180625037573511459e-07,-2.362343790704637391e-07,-2.544062543835763060e-07,-2.725781296966888463e-07,-2.907500050098013866e-07,-3.089218803229139270e-07,-3.270937556360264673e-07,-3.452656309491390077e-07,-3.634375062622515480e-07,-3.816093815753640884e-07,-3.997812568884766287e-07,-4.179531322015891690e-07,-4.361250075147017094e-07,-4.542968828278142497e-07,-4.724687581409267901e-07,-4.906406334540393304e-07,-5.088125087671518708e-07,-5.269843840802644111e-07,-5.451562593933769514e-07,-5.633281347064894918e-07,-5.815000100196020321e-07,-5.996718853327145725e-07,-6.178437606458271128e-07,-6.360156359589396532e-07,-6.541875112720521935e-07,-6.723593865851647338e-07,-6.905312618982772742e-07,-7.087031372113898145e-07,-7.268750125245023549e-07,-7.450468878376148952e-07,-7.632187631507274356e-07,-7.813906384638399759e-07,-7.995625137769525162e-07,-8.177343890900650566e-07,-8.359062644031775969e-07,-8.540781397162901373e-07,-8.722500150294026776e-07,-8.904218903425152180e-07,-9.085937656556277583e-07,-9.267656409687402987e-07,-9.449375162818528390e-07,-9.631093915949652735e-07,-9.812812669080776020e-07,-9.994531422211899306e-07,-1.017625017534302259e-06,-1.035796892847414588e-06,-1.053968768160526916e-06,-1.072140643473639245e-06,-1.090312518786751574e-06,-1.108484394099863902e-06,-1.126656269412976231e-06,-1.144828144726088559e-06 +0.000000000000000000e+00,-1.780446295712103542e-08,-3.560892591424207084e-08,-5.341338887136310295e-08,-7.121785182848412844e-08,-8.902231478560515394e-08,-1.068267777427261794e-07,-1.246312406998472049e-07,-1.424357036569682304e-07,-1.602401666140892559e-07,-1.780446295712102814e-07,-1.958490925283313069e-07,-2.136535554854523324e-07,-2.314580184425733579e-07,-2.492624813996943569e-07,-2.670669443568153824e-07,-2.848714073139364079e-07,-3.026758702710574334e-07,-3.204803332281784589e-07,-3.382847961852994844e-07,-3.560892591424205099e-07,-3.738937220995415354e-07,-3.916981850566625609e-07,-4.095026480137835863e-07,-4.273071109709046118e-07,-4.451115739280256373e-07,-4.629160368851466628e-07,-4.807204998422676883e-07,-4.985249627993887138e-07,-5.163294257565097393e-07,-5.341338887136307648e-07,-5.519383516707517903e-07,-5.697428146278728158e-07,-5.875472775849938413e-07,-6.053517405421148668e-07,-6.231562034992358923e-07,-6.409606664563569178e-07,-6.587651294134779433e-07,-6.765695923705989687e-07,-6.943740553277199942e-07,-7.121785182848410197e-07,-7.299829812419620452e-07,-7.477874441990830707e-07,-7.655919071562040962e-07,-7.833963701133251217e-07,-8.012008330704461472e-07,-8.190052960275671727e-07,-8.368097589846881982e-07,-8.546142219418092237e-07,-8.724186848989302492e-07,-8.902231478560512747e-07,-9.080276108131723002e-07,-9.258320737702933257e-07,-9.436365367274143511e-07,-9.614409996845353766e-07,-9.792454626416565080e-07,-9.970499255987776394e-07,-1.014854388555898771e-06,-1.032658851513019902e-06,-1.050463314470141033e-06,-1.068267777427262165e-06,-1.086072240384383296e-06,-1.103876703341504428e-06,-1.121681166298625559e-06 +0.000000000000000000e+00,-1.750416491419867141e-08,-3.500832982839734282e-08,-5.251249474259601423e-08,-7.001665965679468565e-08,-8.752082457099335706e-08,-1.050249894851920285e-07,-1.225291543993906999e-07,-1.400333193135893713e-07,-1.575374842277880427e-07,-1.750416491419867141e-07,-1.925458140561853855e-07,-2.100499789703840569e-07,-2.275541438845827283e-07,-2.450583087987813998e-07,-2.625624737129800976e-07,-2.800666386271787955e-07,-2.975708035413774934e-07,-3.150749684555761913e-07,-3.325791333697748892e-07,-3.500832982839735870e-07,-3.675874631981722849e-07,-3.850916281123709828e-07,-4.025957930265696807e-07,-4.200999579407683786e-07,-4.376041228549670765e-07,-4.551082877691657743e-07,-4.726124526833644722e-07,-4.901166175975631172e-07,-5.076207825117617621e-07,-5.251249474259604070e-07,-5.426291123401590520e-07,-5.601332772543576969e-07,-5.776374421685563419e-07,-5.951416070827549868e-07,-6.126457719969536318e-07,-6.301499369111522767e-07,-6.476541018253509216e-07,-6.651582667395495666e-07,-6.826624316537482115e-07,-7.001665965679468565e-07,-7.176707614821455014e-07,-7.351749263963441463e-07,-7.526790913105427913e-07,-7.701832562247414362e-07,-7.876874211389400812e-07,-8.051915860531387261e-07,-8.226957509673373711e-07,-8.401999158815360160e-07,-8.577040807957346609e-07,-8.752082457099333059e-07,-8.927124106241319508e-07,-9.102165755383305958e-07,-9.277207404525292407e-07,-9.452249053667278856e-07,-9.627290702809264247e-07,-9.802332351951249638e-07,-9.977374001093235028e-07,-1.015241565023522042e-06,-1.032745729937720581e-06,-1.050249894851919120e-06,-1.067754059766117659e-06,-1.085258224680316198e-06,-1.102762389594514737e-06 +0.000000000000000000e+00,-1.874121356498149484e-08,-3.748242712996298969e-08,-5.622364069494448122e-08,-7.496485425992596614e-08,-9.370606782490745106e-08,-1.124472813898889360e-07,-1.311884949548704209e-07,-1.499297085198519058e-07,-1.686709220848333907e-07,-1.874121356498148756e-07,-2.061533492147963606e-07,-2.248945627797778455e-07,-2.436357763447593039e-07,-2.623769899097407888e-07,-2.811182034747222738e-07,-2.998594170397037587e-07,-3.186006306046852436e-07,-3.373418441696667285e-07,-3.560830577346482134e-07,-3.748242712996296983e-07,-3.935654848646111833e-07,-4.123066984295926682e-07,-4.310479119945741531e-07,-4.497891255595556380e-07,-4.685303391245371229e-07,-4.872715526895186079e-07,-5.060127662545000928e-07,-5.247539798194815777e-07,-5.434951933844630626e-07,-5.622364069494445475e-07,-5.809776205144260324e-07,-5.997188340794075174e-07,-6.184600476443890023e-07,-6.372012612093704872e-07,-6.559424747743519721e-07,-6.746836883393334570e-07,-6.934249019043149419e-07,-7.121661154692964269e-07,-7.309073290342779118e-07,-7.496485425992593967e-07,-7.683897561642408816e-07,-7.871309697292223665e-07,-8.058721832942038514e-07,-8.246133968591853364e-07,-8.433546104241668213e-07,-8.620958239891483062e-07,-8.808370375541297911e-07,-8.995782511191112760e-07,-9.183194646840927610e-07,-9.370606782490742459e-07,-9.558018918140558367e-07,-9.745431053790374275e-07,-9.932843189440190183e-07,-1.012025532509000609e-06,-1.030766746073982200e-06,-1.049507959638963791e-06,-1.068249173203945381e-06,-1.086990386768926972e-06,-1.105731600333908563e-06,-1.124472813898890154e-06,-1.143214027463871745e-06,-1.161955241028853335e-06,-1.180696454593834926e-06 +0.000000000000000000e+00,-1.780446295711792853e-08,-3.560892591423585706e-08,-5.341338887135378559e-08,-7.121785182847171412e-08,-8.902231478558964265e-08,-1.068267777427075712e-07,-1.246312406998254997e-07,-1.424357036569434282e-07,-1.602401666140613568e-07,-1.780446295711792853e-07,-1.958490925282972138e-07,-2.136535554854151423e-07,-2.314580184425330709e-07,-2.492624813996509994e-07,-2.670669443567689015e-07,-2.848714073138868035e-07,-3.026758702710047056e-07,-3.204803332281226076e-07,-3.382847961852405097e-07,-3.560892591423584118e-07,-3.738937220994763138e-07,-3.916981850565942159e-07,-4.095026480137121179e-07,-4.273071109708300200e-07,-4.451115739279479221e-07,-4.629160368850658241e-07,-4.807204998421837262e-07,-4.985249627993016812e-07,-5.163294257564196362e-07,-5.341338887135375912e-07,-5.519383516706555462e-07,-5.697428146277735012e-07,-5.875472775848914562e-07,-6.053517405420094112e-07,-6.231562034991273662e-07,-6.409606664562453212e-07,-6.587651294133632762e-07,-6.765695923704812312e-07,-6.943740553275991862e-07,-7.121785182847171412e-07,-7.299829812418350962e-07,-7.477874441989530512e-07,-7.655919071560710062e-07,-7.833963701131889612e-07,-8.012008330703069162e-07,-8.190052960274248712e-07,-8.368097589845428262e-07,-8.546142219416607812e-07,-8.724186848987787362e-07,-8.902231478558966912e-07,-9.080276108130146461e-07,-9.258320737701326011e-07,-9.436365367272505561e-07,-9.614409996843685111e-07,-9.792454626414864661e-07,-9.970499255986044211e-07,-1.014854388555722376e-06,-1.032658851512840331e-06,-1.050463314469958286e-06,-1.068267777427076241e-06,-1.086072240384194196e-06,-1.103876703341312151e-06,-1.121681166298430106e-06 +0.000000000000000000e+00,-1.750416491419551158e-08,-3.500832982839102316e-08,-5.251249474258653805e-08,-7.001665965678205956e-08,-8.752082457097758107e-08,-1.050249894851731026e-07,-1.225291543993686241e-07,-1.400333193135641456e-07,-1.575374842277596671e-07,-1.750416491419551886e-07,-1.925458140561507101e-07,-2.100499789703462316e-07,-2.275541438845417531e-07,-2.450583087987373011e-07,-2.625624737129328756e-07,-2.800666386271284500e-07,-2.975708035413240245e-07,-3.150749684555195989e-07,-3.325791333697151733e-07,-3.500832982839107478e-07,-3.675874631981063222e-07,-3.850916281123018967e-07,-4.025957930264974711e-07,-4.200999579406930456e-07,-4.376041228548886200e-07,-4.551082877690841945e-07,-4.726124526832797689e-07,-4.901166175974753434e-07,-5.076207825116709178e-07,-5.251249474258664923e-07,-5.426291123400620667e-07,-5.601332772542576412e-07,-5.776374421684532156e-07,-5.951416070826487901e-07,-6.126457719968443645e-07,-6.301499369110399389e-07,-6.476541018252355134e-07,-6.651582667394310878e-07,-6.826624316536266623e-07,-7.001665965678222367e-07,-7.176707614820178112e-07,-7.351749263962133856e-07,-7.526790913104089601e-07,-7.701832562246045345e-07,-7.876874211388001090e-07,-8.051915860529956834e-07,-8.226957509671912579e-07,-8.401999158813868323e-07,-8.577040807955824068e-07,-8.752082457097779812e-07,-8.927124106239735557e-07,-9.102165755381691301e-07,-9.277207404523647046e-07,-9.452249053665602790e-07,-9.627290702807557476e-07,-9.802332351949513220e-07,-9.977374001091468965e-07,-1.015241565023342471e-06,-1.032745729937538045e-06,-1.050249894851733620e-06,-1.067754059765929194e-06,-1.085258224680124769e-06,-1.102762389594320343e-06 +0.000000000000000000e+00,-1.874121356497818612e-08,-3.748242712995637224e-08,-5.622364069493455505e-08,-7.496485425991273125e-08,-9.370606782489090744e-08,-1.124472813898690836e-07,-1.311884949548472598e-07,-1.499297085198254360e-07,-1.686709220848036122e-07,-1.874121356497817884e-07,-2.061533492147599646e-07,-2.248945627797381408e-07,-2.436357763447163170e-07,-2.623769899096945197e-07,-2.811182034746727223e-07,-2.998594170396509250e-07,-3.186006306046291277e-07,-3.373418441696073303e-07,-3.560830577345855330e-07,-3.748242712995637357e-07,-3.935654848645419383e-07,-4.123066984295201410e-07,-4.310479119944983437e-07,-4.497891255594765463e-07,-4.685303391244547490e-07,-4.872715526894329516e-07,-5.060127662544111543e-07,-5.247539798193893570e-07,-5.434951933843675596e-07,-5.622364069493457623e-07,-5.809776205143239650e-07,-5.997188340793021676e-07,-6.184600476442803703e-07,-6.372012612092585730e-07,-6.559424747742367756e-07,-6.746836883392149783e-07,-6.934249019041931810e-07,-7.121661154691713836e-07,-7.309073290341495863e-07,-7.496485425991277890e-07,-7.683897561641059916e-07,-7.871309697290841943e-07,-8.058721832940623969e-07,-8.246133968590405996e-07,-8.433546104240188023e-07,-8.620958239889970049e-07,-8.808370375539752076e-07,-8.995782511189534103e-07,-9.183194646839316129e-07,-9.370606782489098156e-07,-9.558018918138881241e-07,-9.745431053788665386e-07,-9.932843189438449530e-07,-1.012025532508823367e-06,-1.030766746073801782e-06,-1.049507959638780196e-06,-1.068249173203758611e-06,-1.086990386768737025e-06,-1.105731600333715440e-06,-1.124472813898693854e-06,-1.143214027463672268e-06,-1.161955241028650683e-06,-1.180696454593629097e-06 +0.000000000000000000e+00,-1.860610488769878866e-08,-3.721220977539757732e-08,-5.581831466309636599e-08,-7.442441955079515465e-08,-9.303052443849394993e-08,-1.116366293261927452e-07,-1.302427342138915405e-07,-1.488488391015903358e-07,-1.674549439892891310e-07,-1.860610488769879263e-07,-2.046671537646867216e-07,-2.232732586523855169e-07,-2.418793635400843122e-07,-2.604854684277830810e-07,-2.790915733154818498e-07,-2.976976782031806186e-07,-3.163037830908793874e-07,-3.349098879785781562e-07,-3.535159928662769250e-07,-3.721220977539756938e-07,-3.907282026416744626e-07,-4.093343075293732314e-07,-4.279404124170720003e-07,-4.465465173047707691e-07,-4.651526221924695379e-07,-4.837587270801683067e-07,-5.023648319678671284e-07,-5.209709368555659502e-07,-5.395770417432647719e-07,-5.581831466309635937e-07,-5.767892515186624154e-07,-5.953953564063612372e-07,-6.140014612940600589e-07,-6.326075661817588807e-07,-6.512136710694577024e-07,-6.698197759571565242e-07,-6.884258808448553459e-07,-7.070319857325541677e-07,-7.256380906202529894e-07,-7.442441955079518112e-07,-7.628503003956506329e-07,-7.814564052833494547e-07,-8.000625101710482764e-07,-8.186686150587470982e-07,-8.372747199464459199e-07,-8.558808248341447417e-07,-8.744869297218435634e-07,-8.930930346095423852e-07,-9.116991394972412069e-07,-9.303052443849400287e-07,-9.489113492726388504e-07,-9.675174541603376722e-07,-9.861235590480364939e-07,-1.004729663935735316e-06,-1.023335768823434137e-06,-1.041941873711132959e-06,-1.060547978598831781e-06,-1.079154083486530603e-06,-1.097760188374229424e-06,-1.116366293261928246e-06,-1.134972398149627068e-06,-1.153578503037325890e-06,-1.172184607925024711e-06 +0.000000000000000000e+00,-1.817584708807939034e-08,-3.635169417615878068e-08,-5.452754126423817433e-08,-7.270338835231757460e-08,-9.087923544039697486e-08,-1.090550825284763751e-07,-1.272309296165557754e-07,-1.454067767046351757e-07,-1.635826237927145759e-07,-1.817584708807939762e-07,-1.999343179688733765e-07,-2.181101650569527767e-07,-2.362860121450321770e-07,-2.544618592331116037e-07,-2.726377063211910040e-07,-2.908135534092704043e-07,-3.089894004973498045e-07,-3.271652475854292048e-07,-3.453410946735086051e-07,-3.635169417615880053e-07,-3.816927888496674056e-07,-3.998686359377468059e-07,-4.180444830258262061e-07,-4.362203301139056064e-07,-4.543961772019850067e-07,-4.725720242900644069e-07,-4.907478713781438072e-07,-5.089237184662232075e-07,-5.270995655543026077e-07,-5.452754126423820080e-07,-5.634512597304614083e-07,-5.816271068185408085e-07,-5.998029539066202088e-07,-6.179788009946996091e-07,-6.361546480827790093e-07,-6.543304951708584096e-07,-6.725063422589378099e-07,-6.906821893470172101e-07,-7.088580364350966104e-07,-7.270338835231760107e-07,-7.452097306112554109e-07,-7.633855776993348112e-07,-7.815614247874142115e-07,-7.997372718754936117e-07,-8.179131189635730120e-07,-8.360889660516524123e-07,-8.542648131397318125e-07,-8.724406602278112128e-07,-8.906165073158906131e-07,-9.087923544039700133e-07,-9.269682014920494136e-07,-9.451440485801288139e-07,-9.633198956682082141e-07,-9.814957427562876144e-07,-9.996715898443670147e-07,-1.017847436932446415e-06,-1.036023284020525815e-06,-1.054199131108605215e-06,-1.072374978196684616e-06,-1.090550825284764016e-06,-1.108726672372843416e-06,-1.126902519460922817e-06,-1.145078366549002217e-06 +0.000000000000000000e+00,-1.957340279765976244e-08,-3.914680559531952488e-08,-5.872020839297928732e-08,-7.829361119063904976e-08,-9.786701398829880559e-08,-1.174404167859585614e-07,-1.370138195836183172e-07,-1.565872223812780731e-07,-1.761606251789378289e-07,-1.957340279765975847e-07,-2.153074307742573405e-07,-2.348808335719170964e-07,-2.544542363695768522e-07,-2.740276391672366345e-07,-2.936010419648964168e-07,-3.131744447625561991e-07,-3.327478475602159813e-07,-3.523212503578757636e-07,-3.718946531555355459e-07,-3.914680559531953282e-07,-4.110414587508551105e-07,-4.306148615485148928e-07,-4.501882643461746751e-07,-4.697616671438344574e-07,-4.893350699414942397e-07,-5.089084727391540220e-07,-5.284818755368138043e-07,-5.480552783344735866e-07,-5.676286811321333689e-07,-5.872020839297931512e-07,-6.067754867274529335e-07,-6.263488895251127157e-07,-6.459222923227724980e-07,-6.654956951204322803e-07,-6.850690979180920626e-07,-7.046425007157518449e-07,-7.242159035134116272e-07,-7.437893063110714095e-07,-7.633627091087311918e-07,-7.829361119063909741e-07,-8.025095147040507564e-07,-8.220829175017105387e-07,-8.416563202993703210e-07,-8.612297230970301033e-07,-8.808031258946898856e-07,-9.003765286923496679e-07,-9.199499314900094501e-07,-9.395233342876692324e-07,-9.590967370853290147e-07,-9.786701398829889029e-07,-9.982435426806487911e-07,-1.017816945478308679e-06,-1.037390348275968567e-06,-1.056963751073628456e-06,-1.076537153871288344e-06,-1.096110556668948232e-06,-1.115683959466608120e-06,-1.135257362264268008e-06,-1.154830765061927896e-06,-1.174404167859587785e-06,-1.193977570657247673e-06,-1.213550973454907561e-06,-1.233124376252567449e-06 +0.000000000000000000e+00,-1.860610488769567515e-08,-3.721220977539135031e-08,-5.581831466308702877e-08,-7.442441955078271385e-08,-9.303052443847839893e-08,-1.116366293261740840e-07,-1.302427342138697823e-07,-1.488488391015654806e-07,-1.674549439892611790e-07,-1.860610488769568773e-07,-2.046671537646525756e-07,-2.232732586523482739e-07,-2.418793635400439722e-07,-2.604854684277396705e-07,-2.790915733154353688e-07,-2.976976782031310672e-07,-3.163037830908267655e-07,-3.349098879785224638e-07,-3.535159928662181621e-07,-3.721220977539138604e-07,-3.907282026416095587e-07,-4.093343075293052571e-07,-4.279404124170009554e-07,-4.465465173046966537e-07,-4.651526221923923520e-07,-4.837587270800880503e-07,-5.023648319677836957e-07,-5.209709368554793411e-07,-5.395770417431749864e-07,-5.581831466308706318e-07,-5.767892515185662772e-07,-5.953953564062619226e-07,-6.140014612939575679e-07,-6.326075661816532133e-07,-6.512136710693488587e-07,-6.698197759570445041e-07,-6.884258808447401494e-07,-7.070319857324357948e-07,-7.256380906201314402e-07,-7.442441955078270856e-07,-7.628503003955227309e-07,-7.814564052832183763e-07,-8.000625101709140217e-07,-8.186686150586096671e-07,-8.372747199463053124e-07,-8.558808248340009578e-07,-8.744869297216966032e-07,-8.930930346093922486e-07,-9.116991394970878940e-07,-9.303052443847835393e-07,-9.489113492724791847e-07,-9.675174541601748301e-07,-9.861235590478704755e-07,-1.004729663935566121e-06,-1.023335768823261766e-06,-1.041941873710957412e-06,-1.060547978598653057e-06,-1.079154083486348702e-06,-1.097760188374044348e-06,-1.116366293261739993e-06,-1.134972398149435638e-06,-1.153578503037131284e-06,-1.172184607924826929e-06 +0.000000000000000000e+00,-1.817584708807629007e-08,-3.635169417615258014e-08,-5.452754126422887020e-08,-7.270338835230516027e-08,-9.087923544038145034e-08,-1.090550825284577404e-07,-1.272309296165340437e-07,-1.454067767046103470e-07,-1.635826237926866503e-07,-1.817584708807629536e-07,-1.999343179688392569e-07,-2.181101650569155602e-07,-2.362860121449918635e-07,-2.544618592330681933e-07,-2.726377063211445231e-07,-2.908135534092208528e-07,-3.089894004972971826e-07,-3.271652475853735124e-07,-3.453410946734498422e-07,-3.635169417615261719e-07,-3.816927888496025017e-07,-3.998686359376788315e-07,-4.180444830257551612e-07,-4.362203301138314910e-07,-4.543961772019078208e-07,-4.725720242899841506e-07,-4.907478713780604803e-07,-5.089237184661368101e-07,-5.270995655542131399e-07,-5.452754126422894697e-07,-5.634512597303657994e-07,-5.816271068184421292e-07,-5.998029539065184590e-07,-6.179788009945947887e-07,-6.361546480826711185e-07,-6.543304951707474483e-07,-6.725063422588237781e-07,-6.906821893469001078e-07,-7.088580364349764376e-07,-7.270338835230527674e-07,-7.452097306111290972e-07,-7.633855776992054269e-07,-7.815614247872817567e-07,-7.997372718753580865e-07,-8.179131189634344162e-07,-8.360889660515107460e-07,-8.542648131395870758e-07,-8.724406602276634056e-07,-8.906165073157397353e-07,-9.087923544038160651e-07,-9.269682014918923949e-07,-9.451440485799687247e-07,-9.633198956680451603e-07,-9.814957427561215960e-07,-9.996715898441980316e-07,-1.017847436932274467e-06,-1.036023284020350903e-06,-1.054199131108427339e-06,-1.072374978196503774e-06,-1.090550825284580210e-06,-1.108726672372656646e-06,-1.126902519460733081e-06,-1.145078366548809517e-06 +0.000000000000000000e+00,-1.957340279765649342e-08,-3.914680559531298685e-08,-5.872020839296948027e-08,-7.829361119062597369e-08,-9.786701398828247373e-08,-1.174404167859389738e-07,-1.370138195835954738e-07,-1.565872223812519739e-07,-1.761606251789084739e-07,-1.957340279765649739e-07,-2.153074307742214740e-07,-2.348808335718779740e-07,-2.544542363695345005e-07,-2.740276391671910006e-07,-2.936010419648475006e-07,-3.131744447625040006e-07,-3.327478475601605007e-07,-3.523212503578170007e-07,-3.718946531554735008e-07,-3.914680559531300008e-07,-4.110414587507865009e-07,-4.306148615484430009e-07,-4.501882643460995009e-07,-4.697616671437560010e-07,-4.893350699414125010e-07,-5.089084727390690011e-07,-5.284818755367255011e-07,-5.480552783343820011e-07,-5.676286811320385012e-07,-5.872020839296950012e-07,-6.067754867273515013e-07,-6.263488895250080013e-07,-6.459222923226645013e-07,-6.654956951203210014e-07,-6.850690979179775014e-07,-7.046425007156340015e-07,-7.242159035132905015e-07,-7.437893063109470015e-07,-7.633627091086035016e-07,-7.829361119062600016e-07,-8.025095147039165017e-07,-8.220829175015730017e-07,-8.416563202992295017e-07,-8.612297230968860018e-07,-8.808031258945425018e-07,-9.003765286921990019e-07,-9.199499314898555019e-07,-9.395233342875120019e-07,-9.590967370851685020e-07,-9.786701398828250020e-07,-9.982435426804815021e-07,-1.017816945478138002e-06,-1.037390348275794502e-06,-1.056963751073451002e-06,-1.076537153871107502e-06,-1.096110556668764002e-06,-1.115683959466420502e-06,-1.135257362264077002e-06,-1.154830765061733502e-06,-1.174404167859390002e-06,-1.193977570657046502e-06,-1.213550973454703003e-06,-1.233124376252359503e-06 +0.000000000000000000e+00,-1.959679180157406832e-08,-3.919358360314813663e-08,-5.879037540472220495e-08,-7.838716720629627326e-08,-9.798395900787033496e-08,-1.175807508094443967e-07,-1.371775426110184584e-07,-1.567743344125925201e-07,-1.763711262141665818e-07,-1.959679180157406435e-07,-2.155647098173147052e-07,-2.351615016188887669e-07,-2.547582934204628021e-07,-2.743550852220368638e-07,-2.939518770236109255e-07,-3.135486688251849872e-07,-3.331454606267590489e-07,-3.527422524283331106e-07,-3.723390442299071723e-07,-3.919358360314812340e-07,-4.115326278330552957e-07,-4.311294196346293574e-07,-4.507262114362034191e-07,-4.703230032377774808e-07,-4.899197950393515425e-07,-5.095165868409256042e-07,-5.291133786424996659e-07,-5.487101704440737276e-07,-5.683069622456477893e-07,-5.879037540472218510e-07,-6.075005458487959127e-07,-6.270973376503699744e-07,-6.466941294519440361e-07,-6.662909212535180978e-07,-6.858877130550921595e-07,-7.054845048566662211e-07,-7.250812966582402828e-07,-7.446780884598143445e-07,-7.642748802613884062e-07,-7.838716720629624679e-07,-8.034684638645365296e-07,-8.230652556661105913e-07,-8.426620474676846530e-07,-8.622588392692587147e-07,-8.818556310708327764e-07,-9.014524228724068381e-07,-9.210492146739808998e-07,-9.406460064755549615e-07,-9.602427982771290232e-07,-9.798395900787030849e-07,-9.994363818802771466e-07,-1.019033173681851208e-06,-1.038629965483425270e-06,-1.058226757284999332e-06,-1.077823549086573393e-06,-1.097420340888147455e-06,-1.117017132689721517e-06,-1.136613924491295579e-06,-1.156210716292869640e-06,-1.175807508094443702e-06,-1.195404299896017764e-06,-1.215001091697591825e-06,-1.234597883499165887e-06 +0.000000000000000000e+00,-1.908266174715908467e-08,-3.816532349431816934e-08,-5.724798524147725732e-08,-7.633064698863635192e-08,-9.541330873579544652e-08,-1.144959704829545411e-07,-1.335786322301136225e-07,-1.526612939772727038e-07,-1.717439557244317852e-07,-1.908266174715908666e-07,-2.099092792187499479e-07,-2.289919409659090293e-07,-2.480746027130681106e-07,-2.671572644602271920e-07,-2.862399262073862734e-07,-3.053225879545453547e-07,-3.244052497017044361e-07,-3.434879114488635175e-07,-3.625705731960225988e-07,-3.816532349431816802e-07,-4.007358966903407615e-07,-4.198185584374998429e-07,-4.389012201846589243e-07,-4.579838819318180056e-07,-4.770665436789770870e-07,-4.961492054261362213e-07,-5.152318671732953556e-07,-5.343145289204544899e-07,-5.533971906676136242e-07,-5.724798524147727585e-07,-5.915625141619318928e-07,-6.106451759090910271e-07,-6.297278376562501614e-07,-6.488104994034092957e-07,-6.678931611505684300e-07,-6.869758228977275643e-07,-7.060584846448866986e-07,-7.251411463920458329e-07,-7.442238081392049672e-07,-7.633064698863641015e-07,-7.823891316335232358e-07,-8.014717933806823701e-07,-8.205544551278415044e-07,-8.396371168750006387e-07,-8.587197786221597730e-07,-8.778024403693189073e-07,-8.968851021164780416e-07,-9.159677638636371759e-07,-9.350504256107963102e-07,-9.541330873579554445e-07,-9.732157491051145788e-07,-9.922984108522737131e-07,-1.011381072599432847e-06,-1.030463734346591982e-06,-1.049546396093751116e-06,-1.068629057840910250e-06,-1.087711719588069385e-06,-1.106794381335228519e-06,-1.125877043082387653e-06,-1.144959704829546788e-06,-1.164042366576705922e-06,-1.183125028323865056e-06,-1.202207690071024190e-06 +0.000000000000000000e+00,-2.062566161597284128e-08,-4.125132323194568256e-08,-6.187698484791852052e-08,-8.250264646389135188e-08,-1.031283080798641832e-07,-1.237539696958370146e-07,-1.443796313118098327e-07,-1.650052929277826508e-07,-1.856309545437554689e-07,-2.062566161597282870e-07,-2.268822777757011052e-07,-2.475079393916739233e-07,-2.681336010076467414e-07,-2.887592626236195595e-07,-3.093849242395923776e-07,-3.300105858555651957e-07,-3.506362474715380139e-07,-3.712619090875108320e-07,-3.918875707034836501e-07,-4.125132323194564682e-07,-4.331388939354292863e-07,-4.537645555514021044e-07,-4.743902171673749226e-07,-4.950158787833477407e-07,-5.156415403993205588e-07,-5.362672020152933769e-07,-5.568928636312661950e-07,-5.775185252472390131e-07,-5.981441868632118313e-07,-6.187698484791846494e-07,-6.393955100951574675e-07,-6.600211717111302856e-07,-6.806468333271031037e-07,-7.012724949430759218e-07,-7.218981565590487400e-07,-7.425238181750215581e-07,-7.631494797909943762e-07,-7.837751414069671943e-07,-8.044008030229400124e-07,-8.250264646389128305e-07,-8.456521262548856487e-07,-8.662777878708584668e-07,-8.869034494868312849e-07,-9.075291111028041030e-07,-9.281547727187769211e-07,-9.487804343347497392e-07,-9.694060959507226632e-07,-9.900317575666956931e-07,-1.010657419182668723e-06,-1.031283080798641753e-06,-1.051908742414614783e-06,-1.072534404030587813e-06,-1.093160065646560842e-06,-1.113785727262533872e-06,-1.134411388878506902e-06,-1.155037050494479932e-06,-1.175662712110452962e-06,-1.196288373726425992e-06,-1.216914035342399022e-06,-1.237539696958372052e-06,-1.258165358574345081e-06,-1.278791020190318111e-06,-1.299416681806291141e-06 +0.000000000000000000e+00,-1.959679180157083900e-08,-3.919358360314167801e-08,-5.879037540471251701e-08,-7.838716720628335601e-08,-9.798395900785418840e-08,-1.175807508094250208e-07,-1.371775426109958532e-07,-1.567743344125666856e-07,-1.763711262141375179e-07,-1.959679180157083503e-07,-2.155647098172791827e-07,-2.351615016188500151e-07,-2.547582934204208740e-07,-2.743550852219917593e-07,-2.939518770235626446e-07,-3.135486688251335299e-07,-3.331454606267044153e-07,-3.527422524282753006e-07,-3.723390442298461859e-07,-3.919358360314170712e-07,-4.115326278329879566e-07,-4.311294196345588419e-07,-4.507262114361297272e-07,-4.703230032377006125e-07,-4.899197950392714979e-07,-5.095165868408423832e-07,-5.291133786424132685e-07,-5.487101704439841538e-07,-5.683069622455550392e-07,-5.879037540471259245e-07,-6.075005458486968098e-07,-6.270973376502676951e-07,-6.466941294518385805e-07,-6.662909212534094658e-07,-6.858877130549803511e-07,-7.054845048565512364e-07,-7.250812966581221218e-07,-7.446780884596930071e-07,-7.642748802612638924e-07,-7.838716720628347777e-07,-8.034684638644056631e-07,-8.230652556659765484e-07,-8.426620474675474337e-07,-8.622588392691183190e-07,-8.818556310706892044e-07,-9.014524228722600897e-07,-9.210492146738309750e-07,-9.406460064754018603e-07,-9.602427982769727457e-07,-9.798395900785436310e-07,-9.994363818801145163e-07,-1.019033173681685402e-06,-1.038629965483256287e-06,-1.058226757284827172e-06,-1.077823549086398058e-06,-1.097420340887968943e-06,-1.117017132689539828e-06,-1.136613924491110714e-06,-1.156210716292681599e-06,-1.175807508094252484e-06,-1.195404299895823370e-06,-1.215001091697394255e-06,-1.234597883498965140e-06 +0.000000000000000000e+00,-1.908266174715591161e-08,-3.816532349431182321e-08,-5.724798524146773482e-08,-7.633064698862364642e-08,-9.541330873577955141e-08,-1.144959704829354564e-07,-1.335786322300913614e-07,-1.526612939772472664e-07,-1.717439557244031714e-07,-1.908266174715590764e-07,-2.099092792187149813e-07,-2.289919409658708863e-07,-2.480746027130268178e-07,-2.671572644601827757e-07,-2.862399262073387336e-07,-3.053225879544946916e-07,-3.244052497016506495e-07,-3.434879114488066074e-07,-3.625705731959625654e-07,-3.816532349431185233e-07,-4.007358966902744812e-07,-4.198185584374304391e-07,-4.389012201845863971e-07,-4.579838819317423550e-07,-4.770665436788983129e-07,-4.961492054260542709e-07,-5.152318671732102288e-07,-5.343145289203661867e-07,-5.533971906675221446e-07,-5.724798524146781026e-07,-5.915625141618340605e-07,-6.106451759089900184e-07,-6.297278376561459764e-07,-6.488104994033019343e-07,-6.678931611504578922e-07,-6.869758228976138501e-07,-7.060584846447698081e-07,-7.251411463919257660e-07,-7.442238081390817239e-07,-7.633064698862376819e-07,-7.823891316333936398e-07,-8.014717933805495977e-07,-8.205544551277055556e-07,-8.396371168748615136e-07,-8.587197786220174715e-07,-8.778024403691734294e-07,-8.968851021163293874e-07,-9.159677638634853453e-07,-9.350504256106413032e-07,-9.541330873577972611e-07,-9.732157491049532191e-07,-9.922984108521091770e-07,-1.011381072599265135e-06,-1.030463734346421093e-06,-1.049546396093577051e-06,-1.068629057840733009e-06,-1.087711719587888967e-06,-1.106794381335044925e-06,-1.125877043082200882e-06,-1.144959704829356840e-06,-1.164042366576512798e-06,-1.183125028323668756e-06,-1.202207690070824714e-06 +0.000000000000000000e+00,-2.062566161596945315e-08,-4.125132323193890629e-08,-6.187698484790835613e-08,-8.250264646387779935e-08,-1.031283080798472426e-07,-1.237539696958166858e-07,-1.443796313117861158e-07,-1.650052929277555458e-07,-1.856309545437249757e-07,-2.062566161596944057e-07,-2.268822777756638357e-07,-2.475079393916332657e-07,-2.681336010076026957e-07,-2.887592626235721257e-07,-3.093849242395415556e-07,-3.300105858555109856e-07,-3.506362474714804156e-07,-3.712619090874498456e-07,-3.918875707034192756e-07,-4.125132323193887056e-07,-4.331388939353581356e-07,-4.537645555513275655e-07,-4.743902171672969955e-07,-4.950158787832664255e-07,-5.156415403992358555e-07,-5.362672020152052855e-07,-5.568928636311747155e-07,-5.775185252471441455e-07,-5.981441868631135754e-07,-6.187698484790830054e-07,-6.393955100950524354e-07,-6.600211717110218654e-07,-6.806468333269912954e-07,-7.012724949429607254e-07,-7.218981565589301553e-07,-7.425238181748995853e-07,-7.631494797908690153e-07,-7.837751414068384453e-07,-8.044008030228078753e-07,-8.250264646387773053e-07,-8.456521262547467353e-07,-8.662777878707161652e-07,-8.869034494866855952e-07,-9.075291111026550252e-07,-9.281547727186244552e-07,-9.487804343345938852e-07,-9.694060959505634210e-07,-9.900317575665330628e-07,-1.010657419182502705e-06,-1.031283080798472346e-06,-1.051908742414441988e-06,-1.072534404030411630e-06,-1.093160065646381271e-06,-1.113785727262350913e-06,-1.134411388878320555e-06,-1.155037050494290197e-06,-1.175662712110259838e-06,-1.196288373726229480e-06,-1.216914035342199122e-06,-1.237539696958168764e-06,-1.258165358574138405e-06,-1.278791020190108047e-06,-1.299416681806077689e-06 +0.000000000000000000e+00,-2.069199564611588777e-08,-4.138399129223177554e-08,-6.207598693834766001e-08,-8.276798258446353785e-08,-1.034599782305794157e-07,-1.241519738766952935e-07,-1.448439695228111714e-07,-1.655359651689270492e-07,-1.862279608150429271e-07,-2.069199564611588049e-07,-2.276119521072746828e-07,-2.483039477533905341e-07,-2.689959433995063590e-07,-2.896879390456221840e-07,-3.103799346917380089e-07,-3.310719303378538338e-07,-3.517639259839696587e-07,-3.724559216300854836e-07,-3.931479172762013085e-07,-4.138399129223171334e-07,-4.345319085684329583e-07,-4.552239042145487832e-07,-4.759158998606646081e-07,-4.966078955067804330e-07,-5.172998911528962579e-07,-5.379918867990120828e-07,-5.586838824451279077e-07,-5.793758780912437326e-07,-6.000678737373595575e-07,-6.207598693834753824e-07,-6.414518650295912074e-07,-6.621438606757070323e-07,-6.828358563218228572e-07,-7.035278519679386821e-07,-7.242198476140545070e-07,-7.449118432601703319e-07,-7.656038389062861568e-07,-7.862958345524019817e-07,-8.069878301985178066e-07,-8.276798258446336315e-07,-8.483718214907494564e-07,-8.690638171368652813e-07,-8.897558127829811062e-07,-9.104478084290969311e-07,-9.311398040752127560e-07,-9.518317997213285809e-07,-9.725237953674444058e-07,-9.932157910135602307e-07,-1.013907786659676056e-06,-1.034599782305791881e-06,-1.055291777951907705e-06,-1.075983773598023530e-06,-1.096675769244139355e-06,-1.117367764890255180e-06,-1.138059760536371005e-06,-1.158751756182486830e-06,-1.179443751828602655e-06,-1.200135747474718480e-06,-1.220827743120834305e-06,-1.241519738766950130e-06,-1.262211734413065955e-06,-1.282903730059181779e-06,-1.303595725705297604e-06 +0.000000000000000000e+00,-2.013617202559220485e-08,-4.027234405118440970e-08,-6.040851607677661454e-08,-8.054468810236881939e-08,-1.006808601279610242e-07,-1.208170321535532291e-07,-1.409532041791454339e-07,-1.610893762047376388e-07,-1.812255482303298436e-07,-2.013617202559220485e-07,-2.214978922815142533e-07,-2.416340643071064582e-07,-2.617702363326986630e-07,-2.819064083582908679e-07,-3.020425803838830727e-07,-3.221787524094752776e-07,-3.423149244350674824e-07,-3.624510964606596873e-07,-3.825872684862518921e-07,-4.027234405118440970e-07,-4.228596125374363018e-07,-4.429957845630285067e-07,-4.631319565886207115e-07,-4.832681286142129164e-07,-5.034043006398051212e-07,-5.235404726653973261e-07,-5.436766446909895309e-07,-5.638128167165817358e-07,-5.839489887421739406e-07,-6.040851607677661454e-07,-6.242213327933583503e-07,-6.443575048189505551e-07,-6.644936768445427600e-07,-6.846298488701349648e-07,-7.047660208957271697e-07,-7.249021929213193745e-07,-7.450383649469115794e-07,-7.651745369725037842e-07,-7.853107089980959891e-07,-8.054468810236881939e-07,-8.255830530492803988e-07,-8.457192250748726036e-07,-8.658553971004648085e-07,-8.859915691260570133e-07,-9.061277411516492182e-07,-9.262639131772414230e-07,-9.464000852028336279e-07,-9.665362572284258327e-07,-9.866724292540180376e-07,-1.006808601279610242e-06,-1.026944773305202447e-06,-1.047080945330794652e-06,-1.067217117356386857e-06,-1.087353289381979062e-06,-1.107489461407571267e-06,-1.127625633433163472e-06,-1.147761805458755676e-06,-1.167897977484347881e-06,-1.188034149509940086e-06,-1.208170321535532291e-06,-1.228306493561124496e-06,-1.248442665586716701e-06,-1.268578837612308905e-06 +0.000000000000000000e+00,-2.182914589103656002e-08,-4.365829178207312003e-08,-6.548743767310968005e-08,-8.731658356414624006e-08,-1.091457294551828001e-07,-1.309748753462193601e-07,-1.528040212372559069e-07,-1.746331671282924537e-07,-1.964623130193290004e-07,-2.182914589103655472e-07,-2.401206048014020940e-07,-2.619497506924386673e-07,-2.837788965834752405e-07,-3.056080424745118138e-07,-3.274371883655483870e-07,-3.492663342565849603e-07,-3.710954801476215335e-07,-3.929246260386581068e-07,-4.147537719296946800e-07,-4.365829178207312533e-07,-4.584120637117678265e-07,-4.802412096028043998e-07,-5.020703554938409201e-07,-5.238995013848774404e-07,-5.457286472759139607e-07,-5.675577931669504810e-07,-5.893869390579870013e-07,-6.112160849490235216e-07,-6.330452308400600419e-07,-6.548743767310965623e-07,-6.767035226221330826e-07,-6.985326685131696029e-07,-7.203618144042061232e-07,-7.421909602952426435e-07,-7.640201061862791638e-07,-7.858492520773156841e-07,-8.076783979683522044e-07,-8.295075438593887247e-07,-8.513366897504252451e-07,-8.731658356414617654e-07,-8.949949815324982857e-07,-9.168241274235348060e-07,-9.386532733145713263e-07,-9.604824192056077407e-07,-9.823115650966441552e-07,-1.004140710987680570e-06,-1.025969856878716984e-06,-1.047799002769753398e-06,-1.069628148660789813e-06,-1.091457294551826227e-06,-1.113286440442862642e-06,-1.135115586333899056e-06,-1.156944732224935471e-06,-1.178773878115971885e-06,-1.200603024007008299e-06,-1.222432169898044714e-06,-1.244261315789081128e-06,-1.266090461680117543e-06,-1.287919607571153957e-06,-1.309748753462190372e-06,-1.331577899353226786e-06,-1.353407045244263201e-06,-1.375236191135299615e-06 +0.000000000000000000e+00,-2.069199564611261544e-08,-4.138399129222523089e-08,-6.207598693833783972e-08,-8.276798258445044854e-08,-1.034599782305630574e-07,-1.241519738766756794e-07,-1.448439695227883015e-07,-1.655359651689009236e-07,-1.862279608150135456e-07,-2.069199564611261677e-07,-2.276119521072387897e-07,-2.483039477533514118e-07,-2.689959433994640074e-07,-2.896879390455766030e-07,-3.103799346916891986e-07,-3.310719303378017942e-07,-3.517639259839143898e-07,-3.724559216300269854e-07,-3.931479172761395810e-07,-4.138399129222521765e-07,-4.345319085683647721e-07,-4.552239042144773677e-07,-4.759158998605899633e-07,-4.966078955067025060e-07,-5.172998911528150486e-07,-5.379918867989275913e-07,-5.586838824450401339e-07,-5.793758780911526766e-07,-6.000678737372652192e-07,-6.207598693833777619e-07,-6.414518650294903046e-07,-6.621438606756028472e-07,-6.828358563217153899e-07,-7.035278519678279325e-07,-7.242198476139404752e-07,-7.449118432600530178e-07,-7.656038389061655605e-07,-7.862958345522781031e-07,-8.069878301983906458e-07,-8.276798258445031884e-07,-8.483718214906157311e-07,-8.690638171367282737e-07,-8.897558127828408164e-07,-9.104478084289533590e-07,-9.311398040750659017e-07,-9.518317997211784443e-07,-9.725237953672908811e-07,-9.932157910134033179e-07,-1.013907786659515755e-06,-1.034599782305628191e-06,-1.055291777951740628e-06,-1.075983773597853065e-06,-1.096675769243965502e-06,-1.117367764890077939e-06,-1.138059760536190375e-06,-1.158751756182302812e-06,-1.179443751828415249e-06,-1.200135747474527686e-06,-1.220827743120640122e-06,-1.241519738766752559e-06,-1.262211734412864996e-06,-1.282903730058977433e-06,-1.303595725705089870e-06 +0.000000000000000000e+00,-2.013617202558893583e-08,-4.027234405117787166e-08,-6.040851607676680749e-08,-8.054468810235574332e-08,-1.006808601279446792e-07,-1.208170321535336150e-07,-1.409532041791225640e-07,-1.610893762047115131e-07,-1.812255482303004622e-07,-2.013617202558894112e-07,-2.214978922814783603e-07,-2.416340643070672829e-07,-2.617702363326562055e-07,-2.819064083582451281e-07,-3.020425803838340507e-07,-3.221787524094229733e-07,-3.423149244350118959e-07,-3.624510964606008185e-07,-3.825872684861897411e-07,-4.027234405117786637e-07,-4.228596125373675863e-07,-4.429957845629565089e-07,-4.631319565885454315e-07,-4.832681286141343541e-07,-5.034043006397232766e-07,-5.235404726653121992e-07,-5.436766446909011218e-07,-5.638128167164900444e-07,-5.839489887420789670e-07,-6.040851607676678896e-07,-6.242213327932568122e-07,-6.443575048188457348e-07,-6.644936768444346574e-07,-6.846298488700235800e-07,-7.047660208956125026e-07,-7.249021929212014252e-07,-7.450383649467903478e-07,-7.651745369723792704e-07,-7.853107089979681930e-07,-8.054468810235571156e-07,-8.255830530491460382e-07,-8.457192250747349608e-07,-8.658553971003238834e-07,-8.859915691259128060e-07,-9.061277411515017286e-07,-9.262639131770906512e-07,-9.464000852026795737e-07,-9.665362572282684963e-07,-9.866724292538575248e-07,-1.006808601279446553e-06,-1.026944773305035582e-06,-1.047080945330624610e-06,-1.067217117356213639e-06,-1.087353289381802667e-06,-1.107489461407391696e-06,-1.127625633432980724e-06,-1.147761805458569753e-06,-1.167897977484158781e-06,-1.188034149509747810e-06,-1.208170321535336838e-06,-1.228306493560925867e-06,-1.248442665586514895e-06,-1.268578837612103923e-06 +0.000000000000000000e+00,-2.182914589103310240e-08,-4.365829178206620480e-08,-6.548743767309930389e-08,-8.731658356413239637e-08,-1.091457294551654888e-07,-1.309748753461985813e-07,-1.528040212372316606e-07,-1.746331671282647398e-07,-1.964623130192978190e-07,-2.182914589103308983e-07,-2.401206048013639775e-07,-2.619497506923970568e-07,-2.837788965834301360e-07,-3.056080424744632152e-07,-3.274371883654962945e-07,-3.492663342565293737e-07,-3.710954801475624530e-07,-3.929246260385955322e-07,-4.147537719296286114e-07,-4.365829178206616907e-07,-4.584120637116947699e-07,-4.802412096027278492e-07,-5.020703554937608755e-07,-5.238995013847939018e-07,-5.457286472758269281e-07,-5.675577931668599544e-07,-5.893869390578929807e-07,-6.112160849489260070e-07,-6.330452308399590333e-07,-6.548743767309920596e-07,-6.767035226220250859e-07,-6.985326685130581122e-07,-7.203618144040911385e-07,-7.421909602951241648e-07,-7.640201061861571911e-07,-7.858492520771902174e-07,-8.076783979682232437e-07,-8.295075438592562700e-07,-8.513366897502892963e-07,-8.731658356413223226e-07,-8.949949815323553489e-07,-9.168241274233883752e-07,-9.386532733144214015e-07,-9.604824192054544278e-07,-9.823115650964874541e-07,-1.004140710987520480e-06,-1.025969856878553507e-06,-1.047799002769586533e-06,-1.069628148660619559e-06,-1.091457294551652586e-06,-1.113286440442685612e-06,-1.135115586333718638e-06,-1.156944732224751664e-06,-1.178773878115784691e-06,-1.200603024006817717e-06,-1.222432169897850743e-06,-1.244261315788883770e-06,-1.266090461679916796e-06,-1.287919607570949822e-06,-1.309748753461982849e-06,-1.331577899353015875e-06,-1.353407045244048901e-06,-1.375236191135081927e-06 +0.000000000000000000e+00,-2.181042690265158719e-08,-4.362085380530317438e-08,-6.543128070795476487e-08,-8.724170761060636199e-08,-1.090521345132579591e-07,-1.308625614159095562e-07,-1.526729883185611401e-07,-1.744834152212127240e-07,-1.962938421238643079e-07,-2.181042690265158917e-07,-2.399146959291674756e-07,-2.617251228318190595e-07,-2.835355497344706434e-07,-3.053459766371222272e-07,-3.271564035397738111e-07,-3.489668304424253950e-07,-3.707772573450769789e-07,-3.925876842477285628e-07,-4.143981111503801466e-07,-4.362085380530317305e-07,-4.580189649556833144e-07,-4.798293918583349512e-07,-5.016398187609865880e-07,-5.234502456636382249e-07,-5.452606725662898617e-07,-5.670710994689414985e-07,-5.888815263715931353e-07,-6.106919532742447721e-07,-6.325023801768964090e-07,-6.543128070795480458e-07,-6.761232339821996826e-07,-6.979336608848513194e-07,-7.197440877875029562e-07,-7.415545146901545930e-07,-7.633649415928062299e-07,-7.851753684954578667e-07,-8.069857953981095035e-07,-8.287962223007611403e-07,-8.506066492034127771e-07,-8.724170761060644140e-07,-8.942275030087160508e-07,-9.160379299113676876e-07,-9.378483568140193244e-07,-9.596587837166709612e-07,-9.814692106193227039e-07,-1.003279637521974447e-06,-1.025090064424626189e-06,-1.046900491327277932e-06,-1.068710918229929675e-06,-1.090521345132581417e-06,-1.112331772035233160e-06,-1.134142198937884903e-06,-1.155952625840536646e-06,-1.177763052743188388e-06,-1.199573479645840131e-06,-1.221383906548491874e-06,-1.243194333451143616e-06,-1.265004760353795359e-06,-1.286815187256447102e-06,-1.308625614159098844e-06,-1.330436041061750587e-06,-1.352246467964402330e-06,-1.374056894867054072e-06 +0.000000000000000000e+00,-2.125303106136805161e-08,-4.250606212273610323e-08,-6.375909318410414823e-08,-8.501212424547219322e-08,-1.062651553068402382e-07,-1.275181863682082965e-07,-1.487712174295763547e-07,-1.700242484909444129e-07,-1.912772795523124711e-07,-2.125303106136805294e-07,-2.337833416750485876e-07,-2.550363727364166458e-07,-2.762894037977847041e-07,-2.975424348591527623e-07,-3.187954659205208205e-07,-3.400484969818888788e-07,-3.613015280432569370e-07,-3.825545591046249952e-07,-4.038075901659930535e-07,-4.250606212273611117e-07,-4.463136522887291699e-07,-4.675666833500972282e-07,-4.888197144114653393e-07,-5.100727454728333976e-07,-5.313257765342014558e-07,-5.525788075955695140e-07,-5.738318386569375723e-07,-5.950848697183056305e-07,-6.163379007796736887e-07,-6.375909318410417470e-07,-6.588439629024098052e-07,-6.800969939637778634e-07,-7.013500250251459217e-07,-7.226030560865139799e-07,-7.438560871478820381e-07,-7.651091182092500964e-07,-7.863621492706181546e-07,-8.076151803319862128e-07,-8.288682113933542711e-07,-8.501212424547223293e-07,-8.713742735160903875e-07,-8.926273045774584458e-07,-9.138803356388265040e-07,-9.351333667001945622e-07,-9.563863977615626204e-07,-9.776394288229306787e-07,-9.988924598842987369e-07,-1.020145490945666795e-06,-1.041398522007034853e-06,-1.062651553068402912e-06,-1.083904584129770970e-06,-1.105157615191139028e-06,-1.126410646252507086e-06,-1.147663677313875145e-06,-1.168916708375243203e-06,-1.190169739436611261e-06,-1.211422770497979319e-06,-1.232675801559347377e-06,-1.253928832620715436e-06,-1.275181863682083494e-06,-1.296434894743451552e-06,-1.317687925804819610e-06,-1.338940956866187669e-06 +0.000000000000000000e+00,-2.310799309631163173e-08,-4.621598619262326347e-08,-6.932397928893489851e-08,-9.243197238524654017e-08,-1.155399654815581818e-07,-1.386479585778698235e-07,-1.617559516741814652e-07,-1.848639447704931068e-07,-2.079719378668047485e-07,-2.310799309631163901e-07,-2.541879240594280053e-07,-2.772959171557395941e-07,-3.004039102520511828e-07,-3.235119033483627715e-07,-3.466198964446743602e-07,-3.697278895409859489e-07,-3.928358826372975377e-07,-4.159438757336091264e-07,-4.390518688299207151e-07,-4.621598619262323038e-07,-4.852678550225438925e-07,-5.083758481188554813e-07,-5.314838412151670700e-07,-5.545918343114786587e-07,-5.776998274077902474e-07,-6.008078205041018361e-07,-6.239158136004134249e-07,-6.470238066967250136e-07,-6.701317997930366023e-07,-6.932397928893481910e-07,-7.163477859856597798e-07,-7.394557790819713685e-07,-7.625637721782829572e-07,-7.856717652745945459e-07,-8.087797583709061346e-07,-8.318877514672177234e-07,-8.549957445635293121e-07,-8.781037376598409008e-07,-9.012117307561524895e-07,-9.243197238524640782e-07,-9.474277169487756670e-07,-9.705357100450871498e-07,-9.936437031413985268e-07,-1.016751696237709904e-06,-1.039859689334021281e-06,-1.062967682430332658e-06,-1.086075675526644035e-06,-1.109183668622955412e-06,-1.132291661719266789e-06,-1.155399654815578166e-06,-1.178507647911889542e-06,-1.201615641008200919e-06,-1.224723634104512296e-06,-1.247831627200823673e-06,-1.270939620297135050e-06,-1.294047613393446427e-06,-1.317155606489757804e-06,-1.340263599586069181e-06,-1.363371592682380558e-06,-1.386479585778691935e-06,-1.409587578875003312e-06,-1.432695571971314689e-06,-1.455803565067626066e-06 +0.000000000000000000e+00,-2.181042690264864242e-08,-4.362085380529728485e-08,-6.543128070794592397e-08,-8.724170761059455646e-08,-1.090521345132431890e-07,-1.308625614158918215e-07,-1.526729883185404407e-07,-1.744834152211890600e-07,-1.962938421238376793e-07,-2.181042690264862985e-07,-2.399146959291349178e-07,-2.617251228317835370e-07,-2.835355497344321563e-07,-3.053459766370807756e-07,-3.271564035397293948e-07,-3.489668304423780141e-07,-3.707772573450266334e-07,-3.925876842476752526e-07,-4.143981111503238719e-07,-4.362085380529724912e-07,-4.580189649556211104e-07,-4.798293918582697297e-07,-5.016398187609182960e-07,-5.234502456635668623e-07,-5.452606725662154287e-07,-5.670710994688639950e-07,-5.888815263715125613e-07,-6.106919532741611276e-07,-6.325023801768096940e-07,-6.543128070794582603e-07,-6.761232339821068266e-07,-6.979336608847553929e-07,-7.197440877874039593e-07,-7.415545146900525256e-07,-7.633649415927010919e-07,-7.851753684953496582e-07,-8.069857953979982246e-07,-8.287962223006467909e-07,-8.506066492032953572e-07,-8.724170761059439235e-07,-8.942275030085924898e-07,-9.160379299112410562e-07,-9.378483568138896225e-07,-9.596587837165381888e-07,-9.814692106191867551e-07,-1.003279637521835321e-06,-1.025090064424483888e-06,-1.046900491327132454e-06,-1.068710918229781020e-06,-1.090521345132429587e-06,-1.112331772035078153e-06,-1.134142198937726719e-06,-1.155952625840375286e-06,-1.177763052743023852e-06,-1.199573479645672418e-06,-1.221383906548320985e-06,-1.243194333450969551e-06,-1.265004760353618117e-06,-1.286815187256266684e-06,-1.308625614158915250e-06,-1.330436041061563816e-06,-1.352246467964212383e-06,-1.374056894866860949e-06 +0.000000000000000000e+00,-2.125303106136501421e-08,-4.250606212273002841e-08,-6.375909318409504262e-08,-8.501212424546005683e-08,-1.062651553068250710e-07,-1.275181863681900852e-07,-1.487712174295550995e-07,-1.700242484909201137e-07,-1.912772795522851279e-07,-2.125303106136501421e-07,-2.337833416750151563e-07,-2.550363727363801705e-07,-2.762894037977451582e-07,-2.975424348591101460e-07,-3.187954659204751337e-07,-3.400484969818401214e-07,-3.613015280432051092e-07,-3.825545591045700969e-07,-4.038075901659350847e-07,-4.250606212273000724e-07,-4.463136522886650601e-07,-4.675666833500300479e-07,-4.888197144113950356e-07,-5.100727454727600233e-07,-5.313257765341250111e-07,-5.525788075954899988e-07,-5.738318386568549866e-07,-5.950848697182199743e-07,-6.163379007795849620e-07,-6.375909318409499498e-07,-6.588439629023149375e-07,-6.800969939636799252e-07,-7.013500250250449130e-07,-7.226030560864099007e-07,-7.438560871477748885e-07,-7.651091182091398762e-07,-7.863621492705048639e-07,-8.076151803318698517e-07,-8.288682113932348394e-07,-8.501212424545998271e-07,-8.713742735159648149e-07,-8.926273045773298026e-07,-9.138803356386947904e-07,-9.351333667000597781e-07,-9.563863977614247658e-07,-9.776394288227896477e-07,-9.988924598841545296e-07,-1.020145490945519411e-06,-1.041398522006884293e-06,-1.062651553068249175e-06,-1.083904584129614057e-06,-1.105157615190978939e-06,-1.126410646252343821e-06,-1.147663677313708703e-06,-1.168916708375073584e-06,-1.190169739436438466e-06,-1.211422770497803348e-06,-1.232675801559168230e-06,-1.253928832620533112e-06,-1.275181863681897994e-06,-1.296434894743262876e-06,-1.317687925804627757e-06,-1.338940956865992639e-06 +0.000000000000000000e+00,-2.310799309630818735e-08,-4.621598619261637471e-08,-6.932397928892456206e-08,-9.243197238523274942e-08,-1.155399654815409368e-07,-1.386479585778491241e-07,-1.617559516741572982e-07,-1.848639447704654724e-07,-2.079719378667736465e-07,-2.310799309630818206e-07,-2.541879240593899947e-07,-2.772959171556981953e-07,-3.004039102520063959e-07,-3.235119033483145965e-07,-3.466198964446227971e-07,-3.697278895409309977e-07,-3.928358826372391983e-07,-4.159438757335473989e-07,-4.390518688298555994e-07,-4.621598619261638000e-07,-4.852678550224720006e-07,-5.083758481187802012e-07,-5.314838412150884018e-07,-5.545918343113966024e-07,-5.776998274077048030e-07,-6.008078205040130036e-07,-6.239158136003212042e-07,-6.470238066966294047e-07,-6.701317997929376053e-07,-6.932397928892458059e-07,-7.163477859855540065e-07,-7.394557790818622071e-07,-7.625637721781704077e-07,-7.856717652744786083e-07,-8.087797583707868089e-07,-8.318877514670950095e-07,-8.549957445634032101e-07,-8.781037376597114106e-07,-9.012117307560196112e-07,-9.243197238523278118e-07,-9.474277169486360124e-07,-9.705357100449442130e-07,-9.936437031412524136e-07,-1.016751696237560614e-06,-1.039859689333868815e-06,-1.062967682430177015e-06,-1.086075675526485216e-06,-1.109183668622793417e-06,-1.132291661719101617e-06,-1.155399654815409818e-06,-1.178507647911718018e-06,-1.201615641008026219e-06,-1.224723634104334419e-06,-1.247831627200642620e-06,-1.270939620296950821e-06,-1.294047613393259021e-06,-1.317155606489567222e-06,-1.340263599585875422e-06,-1.363371592682183623e-06,-1.386479585778491824e-06,-1.409587578874800024e-06,-1.432695571971108225e-06,-1.455803565067416425e-06 +0.000000000000000000e+00,-2.287856799556921088e-08,-4.575713599113842176e-08,-6.863570398670763595e-08,-9.151427198227685676e-08,-1.143928399778460776e-07,-1.372714079734152984e-07,-1.601499759689845192e-07,-1.830285439645537400e-07,-2.059071119601229608e-07,-2.287856799556921816e-07,-2.516642479512613759e-07,-2.745428159468305438e-07,-2.974213839423997117e-07,-3.202999519379688795e-07,-3.431785199335380474e-07,-3.660570879291072153e-07,-3.889356559246763831e-07,-4.118142239202455510e-07,-4.346927919158147189e-07,-4.575713599113838867e-07,-4.804499279069530546e-07,-5.033284959025222225e-07,-5.262070638980913903e-07,-5.490856318936605582e-07,-5.719641998892297261e-07,-5.948427678847988939e-07,-6.177213358803680618e-07,-6.405999038759372297e-07,-6.634784718715063975e-07,-6.863570398670755654e-07,-7.092356078626447333e-07,-7.321141758582139011e-07,-7.549927438537830690e-07,-7.778713118493522369e-07,-8.007498798449214047e-07,-8.236284478404905726e-07,-8.465070158360597405e-07,-8.693855838316289083e-07,-8.922641518271980762e-07,-9.151427198227672441e-07,-9.380212878183364119e-07,-9.608998558139054739e-07,-9.837784238094746418e-07,-1.006656991805043810e-06,-1.029535559800612978e-06,-1.052414127796182145e-06,-1.075292695791751313e-06,-1.098171263787320481e-06,-1.121049831782889649e-06,-1.143928399778458817e-06,-1.166806967774027985e-06,-1.189685535769597153e-06,-1.212564103765166320e-06,-1.235442671760735488e-06,-1.258321239756304656e-06,-1.281199807751873824e-06,-1.304078375747442992e-06,-1.326956943743012160e-06,-1.349835511738581328e-06,-1.372714079734150496e-06,-1.395592647729719663e-06,-1.418471215725288831e-06,-1.441349783720857999e-06 +0.000000000000000000e+00,-2.286950248614091065e-08,-4.573900497228182131e-08,-6.860850745842272865e-08,-9.147800994456362938e-08,-1.143475124307045301e-07,-1.372170149168454308e-07,-1.600865174029863183e-07,-1.829560198891272058e-07,-2.058255223752680933e-07,-2.286950248614089808e-07,-2.515645273475498683e-07,-2.744340298336907558e-07,-2.973035323198316433e-07,-3.201730348059725308e-07,-3.430425372921134183e-07,-3.659120397782543058e-07,-3.887815422643951932e-07,-4.116510447505360807e-07,-4.345205472366769682e-07,-4.573900497228178557e-07,-4.802595522089586903e-07,-5.031290546950995248e-07,-5.259985571812403594e-07,-5.488680596673811939e-07,-5.717375621535220285e-07,-5.946070646396628630e-07,-6.174765671258036976e-07,-6.403460696119445321e-07,-6.632155720980853667e-07,-6.860850745842262013e-07,-7.089545770703670358e-07,-7.318240795565078704e-07,-7.546935820426487049e-07,-7.775630845287895395e-07,-8.004325870149303740e-07,-8.233020895010712086e-07,-8.461715919872120431e-07,-8.690410944733528777e-07,-8.919105969594937122e-07,-9.147800994456345468e-07,-9.376496019317753813e-07,-9.605191044179161100e-07,-9.833886069040568387e-07,-1.006258109390197567e-06,-1.029127611876338296e-06,-1.051997114362479025e-06,-1.074866616848619753e-06,-1.097736119334760482e-06,-1.120605621820901211e-06,-1.143475124307041939e-06,-1.166344626793182668e-06,-1.189214129279323397e-06,-1.212083631765464125e-06,-1.234953134251604854e-06,-1.257822636737745583e-06,-1.280692139223886311e-06,-1.303561641710027040e-06,-1.326431144196167769e-06,-1.349300646682308497e-06,-1.372170149168449226e-06,-1.395039651654589955e-06,-1.417909154140730683e-06,-1.440778656626871412e-06 +0.000000000000000000e+00,-2.235361211035718134e-08,-4.470722422071436268e-08,-6.706083633107154403e-08,-8.941444844142872537e-08,-1.117680605517859067e-07,-1.341216726621430881e-07,-1.564752847725002694e-07,-1.788288968828574507e-07,-2.011825089932146321e-07,-2.235361211035718134e-07,-2.458897332139289948e-07,-2.682433453242861761e-07,-2.905969574346433575e-07,-3.129505695450005388e-07,-3.353041816553577201e-07,-3.576577937657149015e-07,-3.800114058760720828e-07,-4.023650179864292642e-07,-4.247186300967864455e-07,-4.470722422071436268e-07,-4.694258543175008082e-07,-4.917794664278579895e-07,-5.141330785382151179e-07,-5.364866906485722463e-07,-5.588403027589293747e-07,-5.811939148692865031e-07,-6.035475269796436315e-07,-6.259011390900007600e-07,-6.482547512003578884e-07,-6.706083633107150168e-07,-6.929619754210721452e-07,-7.153155875314292736e-07,-7.376691996417864020e-07,-7.600228117521435304e-07,-7.823764238625006588e-07,-8.047300359728577872e-07,-8.270836480832149156e-07,-8.494372601935720440e-07,-8.717908723039291724e-07,-8.941444844142863008e-07,-9.164980965246434292e-07,-9.388517086350005576e-07,-9.612053207453576860e-07,-9.835589328557149203e-07,-1.005912544966072155e-06,-1.028266157076429389e-06,-1.050619769186786623e-06,-1.072973381297143857e-06,-1.095326993407501092e-06,-1.117680605517858326e-06,-1.140034217628215560e-06,-1.162387829738572795e-06,-1.184741441848930029e-06,-1.207095053959287263e-06,-1.229448666069644497e-06,-1.251802278180001732e-06,-1.274155890290358966e-06,-1.296509502400716200e-06,-1.318863114511073435e-06,-1.341216726621430669e-06,-1.363570338731787903e-06,-1.385923950842145137e-06,-1.408277562952502372e-06 +0.000000000000000000e+00,-2.436993314048500780e-08,-4.873986628097001559e-08,-7.310979942145501677e-08,-9.747973256194001795e-08,-1.218496657024250191e-07,-1.462195988429100335e-07,-1.705895319833950480e-07,-1.949594651238800624e-07,-2.193293982643650768e-07,-2.436993314048500912e-07,-2.680692645453350791e-07,-2.924391976858200671e-07,-3.168091308263050550e-07,-3.411790639667900430e-07,-3.655489971072750309e-07,-3.899189302477600188e-07,-4.142888633882450068e-07,-4.386587965287299947e-07,-4.630287296692149827e-07,-4.873986628096999706e-07,-5.117685959501849586e-07,-5.361385290906699465e-07,-5.605084622311549344e-07,-5.848783953716399224e-07,-6.092483285121249103e-07,-6.336182616526098983e-07,-6.579881947930948862e-07,-6.823581279335798742e-07,-7.067280610740648621e-07,-7.310979942145498500e-07,-7.554679273550348380e-07,-7.798378604955198259e-07,-8.042077936360048139e-07,-8.285777267764898018e-07,-8.529476599169747898e-07,-8.773175930574597777e-07,-9.016875261979447656e-07,-9.260574593384297536e-07,-9.504273924789147415e-07,-9.747973256193997295e-07,-9.991672587598848233e-07,-1.023537191900369917e-06,-1.047907125040855011e-06,-1.072277058181340105e-06,-1.096646991321825199e-06,-1.121016924462310292e-06,-1.145386857602795386e-06,-1.169756790743280480e-06,-1.194126723883765574e-06,-1.218496657024250668e-06,-1.242866590164735762e-06,-1.267236523305220855e-06,-1.291606456445705949e-06,-1.315976389586191043e-06,-1.340346322726676137e-06,-1.364716255867161231e-06,-1.389086189007646324e-06,-1.413456122148131418e-06,-1.437826055288616512e-06,-1.462195988429101606e-06,-1.486565921569586700e-06,-1.510935854710071794e-06,-1.535305787850556887e-06 +0.000000000000000000e+00,-2.287169685301715592e-08,-4.574339370603431184e-08,-6.861509055905146444e-08,-9.148678741206861044e-08,-1.143584842650857564e-07,-1.372301811181029024e-07,-1.601018779711200352e-07,-1.829735748241371679e-07,-2.058452716771543007e-07,-2.287169685301714334e-07,-2.515886653831885662e-07,-2.744603622362056990e-07,-2.973320590892228317e-07,-3.202037559422399645e-07,-3.430754527952570972e-07,-3.659471496482742300e-07,-3.888188465012913627e-07,-4.116905433543084955e-07,-4.345622402073256283e-07,-4.574339370603427610e-07,-4.803056339133599467e-07,-5.031773307663771324e-07,-5.260490276193943181e-07,-5.489207244724115038e-07,-5.717924213254286895e-07,-5.946641181784458752e-07,-6.175358150314630609e-07,-6.404075118844802466e-07,-6.632792087374974323e-07,-6.861509055905146180e-07,-7.090226024435318037e-07,-7.318942992965489894e-07,-7.547659961495661751e-07,-7.776376930025833608e-07,-8.005093898556005465e-07,-8.233810867086177322e-07,-8.462527835616349179e-07,-8.691244804146521036e-07,-8.919961772676692892e-07,-9.148678741206864749e-07,-9.377395709737036606e-07,-9.606112678267207405e-07,-9.834829646797378203e-07,-1.006354661532754900e-06,-1.029226358385771980e-06,-1.052098055238789060e-06,-1.074969752091806140e-06,-1.097841448944823219e-06,-1.120713145797840299e-06,-1.143584842650857379e-06,-1.166456539503874459e-06,-1.189328236356891539e-06,-1.212199933209908618e-06,-1.235071630062925698e-06,-1.257943326915942778e-06,-1.280815023768959858e-06,-1.303686720621976938e-06,-1.326558417474994018e-06,-1.349430114328011097e-06,-1.372301811181028177e-06,-1.395173508034045257e-06,-1.418045204887062337e-06,-1.440916901740079417e-06 +0.000000000000000000e+00,-2.435498878952003369e-08,-4.870997757904006737e-08,-7.306496636856009775e-08,-9.741995515808012151e-08,-1.217749439476001585e-07,-1.461299327371201955e-07,-1.704849215266402325e-07,-1.948399103161602695e-07,-2.191948991056803065e-07,-2.435498878952003170e-07,-2.679048766847203275e-07,-2.922598654742403381e-07,-3.166148542637603486e-07,-3.409698430532803591e-07,-3.653248318428003696e-07,-3.896798206323203802e-07,-4.140348094218403907e-07,-4.383897982113604012e-07,-4.627447870008804117e-07,-4.870997757904004222e-07,-5.114547645799203798e-07,-5.358097533694403374e-07,-5.601647421589602950e-07,-5.845197309484802526e-07,-6.088747197380002102e-07,-6.332297085275201678e-07,-6.575846973170401253e-07,-6.819396861065600829e-07,-7.062946748960800405e-07,-7.306496636855999981e-07,-7.550046524751199557e-07,-7.793596412646399133e-07,-8.037146300541598709e-07,-8.280696188436798284e-07,-8.524246076331997860e-07,-8.767795964227197436e-07,-9.011345852122397012e-07,-9.254895740017596588e-07,-9.498445627912796164e-07,-9.741995515807995740e-07,-9.985545403703195315e-07,-1.022909529159839489e-06,-1.047264517949359447e-06,-1.071619506738879404e-06,-1.095974495528399362e-06,-1.120329484317919319e-06,-1.144684473107439277e-06,-1.169039461896959235e-06,-1.193394450686479192e-06,-1.217749439475999150e-06,-1.242104428265519107e-06,-1.266459417055039065e-06,-1.290814405844559023e-06,-1.315169394634078980e-06,-1.339524383423598938e-06,-1.363879372213118895e-06,-1.388234361002638853e-06,-1.412589349792158810e-06,-1.436944338581678768e-06,-1.461299327371198726e-06,-1.485654316160718683e-06,-1.510009304950238641e-06,-1.534364293739758598e-06 +0.000000000000000000e+00,-2.287856799556591539e-08,-4.575713599113183079e-08,-6.863570398669774949e-08,-9.151427198226367481e-08,-1.143928399778296001e-07,-1.372714079733955254e-07,-1.601499759689614640e-07,-1.830285439645274025e-07,-2.059071119600933411e-07,-2.287856799556592797e-07,-2.516642479512252182e-07,-2.745428159467911568e-07,-2.974213839423570953e-07,-3.202999519379230339e-07,-3.431785199334889724e-07,-3.660570879290549110e-07,-3.889356559246208495e-07,-4.118142239201867881e-07,-4.346927919157527266e-07,-4.575713599113186652e-07,-4.804499279068845508e-07,-5.033284959024504364e-07,-5.262070638980163220e-07,-5.490856318935822076e-07,-5.719641998891480933e-07,-5.948427678847139789e-07,-6.177213358802798645e-07,-6.405999038758457501e-07,-6.634784718714116357e-07,-6.863570398669775213e-07,-7.092356078625434069e-07,-7.321141758581092926e-07,-7.549927438536751782e-07,-7.778713118492410638e-07,-8.007498798448069494e-07,-8.236284478403728350e-07,-8.465070158359387206e-07,-8.693855838315046062e-07,-8.922641518270704919e-07,-9.151427198226363775e-07,-9.380212878182022631e-07,-9.608998558137682546e-07,-9.837784238093342461e-07,-1.006656991804900238e-06,-1.029535559800466229e-06,-1.052414127796032221e-06,-1.075292695791598212e-06,-1.098171263787164204e-06,-1.121049831782730195e-06,-1.143928399778296187e-06,-1.166806967773862178e-06,-1.189685535769428170e-06,-1.212564103764994161e-06,-1.235442671760560152e-06,-1.258321239756126144e-06,-1.281199807751692135e-06,-1.304078375747258127e-06,-1.326956943742824118e-06,-1.349835511738390110e-06,-1.372714079733956101e-06,-1.395592647729522093e-06,-1.418471215725088084e-06,-1.441349783720654076e-06 +0.000000000000000000e+00,-2.287169685301551148e-08,-4.574339370603102297e-08,-6.861509055904652783e-08,-9.148678741206203270e-08,-1.143584842650775376e-07,-1.372301811180930557e-07,-1.601018779711085738e-07,-1.829735748241240919e-07,-2.058452716771396100e-07,-2.287169685301551281e-07,-2.515886653831706197e-07,-2.744603622361861113e-07,-2.973320590892016030e-07,-3.202037559422170946e-07,-3.430754527952325862e-07,-3.659471496482480778e-07,-3.888188465012635695e-07,-4.116905433542790611e-07,-4.345622402072945527e-07,-4.574339370603100444e-07,-4.803056339133255360e-07,-5.031773307663410276e-07,-5.260490276193565193e-07,-5.489207244723720109e-07,-5.717924213253875025e-07,-5.946641181784029942e-07,-6.175358150314184858e-07,-6.404075118844339774e-07,-6.632792087374494690e-07,-6.861509055904649607e-07,-7.090226024434804523e-07,-7.318942992964959439e-07,-7.547659961495114356e-07,-7.776376930025269272e-07,-8.005093898555424188e-07,-8.233810867085579105e-07,-8.462527835615734021e-07,-8.691244804145888937e-07,-8.919961772676043853e-07,-9.148678741206198770e-07,-9.377395709736353686e-07,-9.606112678266508602e-07,-9.834829646796664577e-07,-1.006354661532682055e-06,-1.029226358385697653e-06,-1.052098055238713250e-06,-1.074969752091728848e-06,-1.097841448944744445e-06,-1.120713145797760043e-06,-1.143584842650775640e-06,-1.166456539503791238e-06,-1.189328236356806835e-06,-1.212199933209822433e-06,-1.235071630062838030e-06,-1.257943326915853628e-06,-1.280815023768869225e-06,-1.303686720621884823e-06,-1.326558417474900420e-06,-1.349430114327916018e-06,-1.372301811180931615e-06,-1.395173508033947213e-06,-1.418045204886962810e-06,-1.440916901739978408e-06 +0.000000000000000000e+00,-2.235361211035414394e-08,-4.470722422070828787e-08,-6.706083633106243842e-08,-8.941444844141658898e-08,-1.117680605517707395e-07,-1.341216726621248768e-07,-1.564752847724790142e-07,-1.788288968828331515e-07,-2.011825089931872888e-07,-2.235361211035414261e-07,-2.458897332138955899e-07,-2.682433453242497537e-07,-2.905969574346039175e-07,-3.129505695449580813e-07,-3.353041816553122451e-07,-3.576577937656664088e-07,-3.800114058760205726e-07,-4.023650179863747364e-07,-4.247186300967289002e-07,-4.470722422070830640e-07,-4.694258543174372278e-07,-4.917794664277913916e-07,-5.141330785381455554e-07,-5.364866906484997191e-07,-5.588403027588538829e-07,-5.811939148692080467e-07,-6.035475269795622105e-07,-6.259011390899163743e-07,-6.482547512002705381e-07,-6.706083633106247019e-07,-6.929619754209788657e-07,-7.153155875313330294e-07,-7.376691996416871932e-07,-7.600228117520413570e-07,-7.823764238623955208e-07,-8.047300359727496846e-07,-8.270836480831038484e-07,-8.494372601934580122e-07,-8.717908723038121760e-07,-8.941444844141663397e-07,-9.164980965245205035e-07,-9.388517086348746673e-07,-9.612053207452289370e-07,-9.835589328555832067e-07,-1.005912544965937476e-06,-1.028266157076291746e-06,-1.050619769186646016e-06,-1.072973381297000285e-06,-1.095326993407354555e-06,-1.117680605517708825e-06,-1.140034217628063094e-06,-1.162387829738417364e-06,-1.184741441848771634e-06,-1.207095053959125903e-06,-1.229448666069480173e-06,-1.251802278179834443e-06,-1.274155890290188712e-06,-1.296509502400542982e-06,-1.318863114510897252e-06,-1.341216726621251521e-06,-1.363570338731605791e-06,-1.385923950841960061e-06,-1.408277562952314330e-06 +0.000000000000000000e+00,-2.436993314048099432e-08,-4.873986628096198863e-08,-7.310979942144298625e-08,-9.747973256192399049e-08,-1.218496657024049815e-07,-1.462195988428859725e-07,-1.705895319833669635e-07,-1.949594651238479545e-07,-2.193293982643289455e-07,-2.436993314048099630e-07,-2.680692645452909805e-07,-2.924391976857719980e-07,-3.168091308262530154e-07,-3.411790639667340329e-07,-3.655489971072150504e-07,-3.899189302476960679e-07,-4.142888633881770853e-07,-4.386587965286581028e-07,-4.630287296691391203e-07,-4.873986628096201378e-07,-5.117685959501012082e-07,-5.361385290905822786e-07,-5.605084622310633490e-07,-5.848783953715444194e-07,-6.092483285120254898e-07,-6.336182616525065603e-07,-6.579881947929876307e-07,-6.823581279334687011e-07,-7.067280610739497715e-07,-7.310979942144308419e-07,-7.554679273549119123e-07,-7.798378604953929828e-07,-8.042077936358740532e-07,-8.285777267763551236e-07,-8.529476599168361940e-07,-8.773175930573172644e-07,-9.016875261977983348e-07,-9.260574593382794052e-07,-9.504273924787604757e-07,-9.747973256192415461e-07,-9.991672587597226165e-07,-1.023537191900203687e-06,-1.047907125040684757e-06,-1.072277058181165828e-06,-1.096646991321646898e-06,-1.121016924462127969e-06,-1.145386857602609039e-06,-1.169756790743090109e-06,-1.194126723883571180e-06,-1.218496657024052250e-06,-1.242866590164533321e-06,-1.267236523305014391e-06,-1.291606456445495461e-06,-1.315976389585976532e-06,-1.340346322726457602e-06,-1.364716255866938673e-06,-1.389086189007419743e-06,-1.413456122147900814e-06,-1.437826055288381884e-06,-1.462195988428862954e-06,-1.486565921569344025e-06,-1.510935854709825095e-06,-1.535305787850306166e-06 +0.000000000000000000e+00,-1.423028508271401194e-08,-2.846057016542802387e-08,-4.269085524814203250e-08,-5.692114033085604113e-08,-7.115142541357004976e-08,-8.538171049628406500e-08,-9.961199557899808025e-08,-1.138422806617120955e-07,-1.280725657444261240e-07,-1.423028508271401525e-07,-1.565331359098541809e-07,-1.707634209925682094e-07,-1.849937060752822379e-07,-1.992239911579962664e-07,-2.134542762407102949e-07,-2.276845613234243233e-07,-2.419148464061383518e-07,-2.561451314888523538e-07,-2.703754165715663558e-07,-2.846057016542803579e-07,-2.988359867369943599e-07,-3.130662718197083619e-07,-3.272965569024223639e-07,-3.415268419851363659e-07,-3.557571270678503679e-07,-3.699874121505643699e-07,-3.842176972332783719e-07,-3.984479823159923739e-07,-4.126782673987063760e-07,-4.269085524814203780e-07,-4.411388375641343800e-07,-4.553691226468483820e-07,-4.695994077295623840e-07,-4.838296928122763860e-07,-4.980599778949903880e-07,-5.122902629777043900e-07,-5.265205480604183920e-07,-5.407508331431323941e-07,-5.549811182258463961e-07,-5.692114033085603981e-07,-5.834416883912744001e-07,-5.976719734739884021e-07,-6.119022585567024041e-07,-6.261325436394164061e-07,-6.403628287221304081e-07,-6.545931138048444101e-07,-6.688233988875584121e-07,-6.830536839702724142e-07,-6.972839690529864162e-07,-7.115142541357004182e-07,-7.257445392184144202e-07,-7.399748243011284222e-07,-7.542051093838424242e-07,-7.684353944665564262e-07,-7.826656795492704282e-07,-7.968959646319844302e-07,-8.111262497146984323e-07,-8.253565347974124343e-07,-8.395868198801264363e-07,-8.538171049628404383e-07,-8.680473900455544403e-07,-8.822776751282684423e-07,-8.965079602109824443e-07 +0.000000000000000000e+00,-1.461728284830702876e-08,-2.923456569661405752e-08,-4.385184854492108959e-08,-5.846913139322812166e-08,-7.308641424153515372e-08,-8.770369708984217917e-08,-1.023209799381492046e-07,-1.169382627864562301e-07,-1.315555456347632423e-07,-1.461728284830702545e-07,-1.607901113313772667e-07,-1.754073941796842789e-07,-1.900246770279912912e-07,-2.046419598762983034e-07,-2.192592427246053156e-07,-2.338765255729123278e-07,-2.484938084212193400e-07,-2.631110912695263787e-07,-2.777283741178334174e-07,-2.923456569661404561e-07,-3.069629398144474948e-07,-3.215802226627545334e-07,-3.361975055110615721e-07,-3.508147883593686108e-07,-3.654320712076756495e-07,-3.800493540559826882e-07,-3.946666369042897269e-07,-4.092839197525967656e-07,-4.239012026009038042e-07,-4.385184854492108429e-07,-4.531357682975178816e-07,-4.677530511458249203e-07,-4.823703339941319590e-07,-4.969876168424389977e-07,-5.116048996907460364e-07,-5.262221825390530750e-07,-5.408394653873601137e-07,-5.554567482356671524e-07,-5.700740310839741911e-07,-5.846913139322812298e-07,-5.993085967805882685e-07,-6.139258796288953072e-07,-6.285431624772023458e-07,-6.431604453255093845e-07,-6.577777281738164232e-07,-6.723950110221234619e-07,-6.870122938704305006e-07,-7.016295767187375393e-07,-7.162468595670445780e-07,-7.308641424153516166e-07,-7.454814252636586553e-07,-7.600987081119656940e-07,-7.747159909602727327e-07,-7.893332738085797714e-07,-8.039505566568868101e-07,-8.185678395051938488e-07,-8.331851223535008874e-07,-8.478024052018079261e-07,-8.624196880501149648e-07,-8.770369708984220035e-07,-8.916542537467290422e-07,-9.062715365950360809e-07,-9.208888194433431196e-07 +0.000000000000000000e+00,-1.449929842614047949e-08,-2.899859685228095898e-08,-4.349789527842143681e-08,-5.799719370456191134e-08,-7.249649213070238586e-08,-8.699579055684286039e-08,-1.014950889829833349e-07,-1.159943874091238094e-07,-1.304936858352642972e-07,-1.449929842614047982e-07,-1.594922826875452992e-07,-1.739915811136858002e-07,-1.884908795398263012e-07,-2.029901779659668022e-07,-2.174894763921073032e-07,-2.319887748182478042e-07,-2.464880732443883052e-07,-2.609873716705288062e-07,-2.754866700966693071e-07,-2.899859685228098081e-07,-3.044852669489503091e-07,-3.189845653750908101e-07,-3.334838638012313111e-07,-3.479831622273718121e-07,-3.624824606535123131e-07,-3.769817590796528141e-07,-3.914810575057933151e-07,-4.059803559319338161e-07,-4.204796543580743171e-07,-4.349789527842148181e-07,-4.494782512103553191e-07,-4.639775496364958201e-07,-4.784768480626363211e-07,-4.929761464887768221e-07,-5.074754449149173231e-07,-5.219747433410578241e-07,-5.364740417671983251e-07,-5.509733401933388261e-07,-5.654726386194793270e-07,-5.799719370456198280e-07,-5.944712354717603290e-07,-6.089705338979008300e-07,-6.234698323240413310e-07,-6.379691307501818320e-07,-6.524684291763223330e-07,-6.669677276024628340e-07,-6.814670260286033350e-07,-6.959663244547438360e-07,-7.104656228808843370e-07,-7.249649213070248380e-07,-7.394642197331653390e-07,-7.539635181593058400e-07,-7.684628165854463410e-07,-7.829621150115868420e-07,-7.974614134377273430e-07,-8.119607118638678440e-07,-8.264600102900083450e-07,-8.409593087161488460e-07,-8.554586071422893470e-07,-8.699579055684298479e-07,-8.844572039945703489e-07,-8.989565024207108499e-07,-9.134558008468513509e-07 +0.000000000000000000e+00,-1.449621354611039226e-08,-2.899242709222078453e-08,-4.348864063833118010e-08,-5.798485418444157567e-08,-7.248106773055197124e-08,-8.697728127666236020e-08,-1.014734948227727492e-07,-1.159697083688831381e-07,-1.304659219149935271e-07,-1.449621354611039160e-07,-1.594583490072143050e-07,-1.739545625533246939e-07,-1.884507760994350829e-07,-2.029469896455454718e-07,-2.174432031916558608e-07,-2.319394167377662497e-07,-2.464356302838766387e-07,-2.609318438299870541e-07,-2.754280573760974696e-07,-2.899242709222078850e-07,-3.044204844683183004e-07,-3.189166980144287158e-07,-3.334129115605391313e-07,-3.479091251066495467e-07,-3.624053386527599621e-07,-3.769015521988703775e-07,-3.913977657449807930e-07,-4.058939792910912084e-07,-4.203901928372016238e-07,-4.348864063833120392e-07,-4.493826199294224547e-07,-4.638788334755328701e-07,-4.783750470216433384e-07,-4.928712605677538068e-07,-5.073674741138642752e-07,-5.218636876599747435e-07,-5.363599012060852119e-07,-5.508561147521956803e-07,-5.653523282983061486e-07,-5.798485418444166170e-07,-5.943447553905270854e-07,-6.088409689366375537e-07,-6.233371824827480221e-07,-6.378333960288584904e-07,-6.523296095749689588e-07,-6.668258231210794272e-07,-6.813220366671898955e-07,-6.958182502133003639e-07,-7.103144637594108323e-07,-7.248106773055213006e-07,-7.393068908516317690e-07,-7.538031043977422374e-07,-7.682993179438527057e-07,-7.827955314899631741e-07,-7.972917450360736425e-07,-8.117879585821841108e-07,-8.262841721282945792e-07,-8.407803856744050475e-07,-8.552765992205155159e-07,-8.697728127666259843e-07,-8.842690263127364526e-07,-8.987652398588469210e-07,-9.132614534049573894e-07 +0.000000000000000000e+00,-1.525579962300868062e-08,-3.051159924601736125e-08,-4.576739886902604187e-08,-6.102319849203472250e-08,-7.627899811504340312e-08,-9.153479773805208375e-08,-1.067905973610607644e-07,-1.220463969840694450e-07,-1.373021966070781124e-07,-1.525579962300867798e-07,-1.678137958530954472e-07,-1.830695954761041146e-07,-1.983253950991127819e-07,-2.135811947221214493e-07,-2.288369943451301167e-07,-2.440927939681387841e-07,-2.593485935911474515e-07,-2.746043932141561189e-07,-2.898601928371647863e-07,-3.051159924601734537e-07,-3.203717920831821211e-07,-3.356275917061907885e-07,-3.508833913291994558e-07,-3.661391909522081232e-07,-3.813949905752167906e-07,-3.966507901982254580e-07,-4.119065898212341254e-07,-4.271623894442427928e-07,-4.424181890672514602e-07,-4.576739886902601276e-07,-4.729297883132687950e-07,-4.881855879362774624e-07,-5.034413875592861297e-07,-5.186971871822947971e-07,-5.339529868053034645e-07,-5.492087864283121319e-07,-5.644645860513207993e-07,-5.797203856743294667e-07,-5.949761852973381341e-07,-6.102319849203468015e-07,-6.254877845433554689e-07,-6.407435841663641362e-07,-6.559993837893728036e-07,-6.712551834123814710e-07,-6.865109830353901384e-07,-7.017667826583988058e-07,-7.170225822814074732e-07,-7.322783819044161406e-07,-7.475341815274248080e-07,-7.627899811504334754e-07,-7.780457807734421428e-07,-7.933015803964508101e-07,-8.085573800194594775e-07,-8.238131796424681449e-07,-8.390689792654768123e-07,-8.543247788884854797e-07,-8.695805785114941471e-07,-8.848363781345028145e-07,-9.000921777575114819e-07,-9.153479773805201493e-07,-9.306037770035288167e-07,-9.458595766265374840e-07,-9.611153762495461514e-07 +0.000000000000000000e+00,-1.575803619392732584e-08,-3.151607238785465168e-08,-4.727410858178197752e-08,-6.303214477570930337e-08,-7.879018096963662259e-08,-9.454821716356394181e-08,-1.103062533574912610e-07,-1.260642895514185803e-07,-1.418223257453458995e-07,-1.575803619392732187e-07,-1.733383981332005379e-07,-1.890964343271278572e-07,-2.048544705210551764e-07,-2.206125067149824956e-07,-2.363705429089098148e-07,-2.521285791028371076e-07,-2.678866152967644003e-07,-2.836446514906916931e-07,-2.994026876846189858e-07,-3.151607238785462786e-07,-3.309187600724735714e-07,-3.466767962664008641e-07,-3.624348324603281569e-07,-3.781928686542554496e-07,-3.939509048481827424e-07,-4.097089410421100351e-07,-4.254669772360373279e-07,-4.412250134299646206e-07,-4.569830496238919134e-07,-4.727410858178192061e-07,-4.884991220117464989e-07,-5.042571582056737916e-07,-5.200151943996010844e-07,-5.357732305935283772e-07,-5.515312667874556699e-07,-5.672893029813829627e-07,-5.830473391753102554e-07,-5.988053753692375482e-07,-6.145634115631648409e-07,-6.303214477570921337e-07,-6.460794839510194264e-07,-6.618375201449467192e-07,-6.775955563388740119e-07,-6.933535925328013047e-07,-7.091116287267285974e-07,-7.248696649206558902e-07,-7.406277011145831830e-07,-7.563857373085104757e-07,-7.721437735024377685e-07,-7.879018096963650612e-07,-8.036598458902923540e-07,-8.194178820842196467e-07,-8.351759182781469395e-07,-8.509339544720742322e-07,-8.666919906660015250e-07,-8.824500268599288177e-07,-8.982080630538561105e-07,-9.139660992477834033e-07,-9.297241354417106960e-07,-9.454821716356379888e-07,-9.612402078295652815e-07,-9.769982440234925743e-07,-9.927562802174198670e-07 +0.000000000000000000e+00,-1.452979731437976731e-08,-2.905959462875953461e-08,-4.358939194313930027e-08,-5.811918925751906261e-08,-7.264898657189882495e-08,-8.717878388627858730e-08,-1.017085812006583496e-07,-1.162383785150381120e-07,-1.307681758294178876e-07,-1.452979731437976764e-07,-1.598277704581774652e-07,-1.743575677725572540e-07,-1.888873650869370428e-07,-2.034171624013168316e-07,-2.179469597156966204e-07,-2.324767570300764093e-07,-2.470065543444561981e-07,-2.615363516588359869e-07,-2.760661489732157757e-07,-2.905959462875955645e-07,-3.051257436019753533e-07,-3.196555409163551421e-07,-3.341853382307349309e-07,-3.487151355451147198e-07,-3.632449328594945086e-07,-3.777747301738742974e-07,-3.923045274882540862e-07,-4.068343248026338750e-07,-4.213641221170136638e-07,-4.358939194313934526e-07,-4.504237167457732415e-07,-4.649535140601530303e-07,-4.794833113745328191e-07,-4.940131086889126079e-07,-5.085429060032923967e-07,-5.230727033176721855e-07,-5.376025006320519743e-07,-5.521322979464317631e-07,-5.666620952608115520e-07,-5.811918925751913408e-07,-5.957216898895711296e-07,-6.102514872039509184e-07,-6.247812845183307072e-07,-6.393110818327104960e-07,-6.538408791470902848e-07,-6.683706764614700736e-07,-6.829004737758498625e-07,-6.974302710902296513e-07,-7.119600684046094401e-07,-7.264898657189892289e-07,-7.410196630333690177e-07,-7.555494603477488065e-07,-7.700792576621285953e-07,-7.846090549765083842e-07,-7.991388522908881730e-07,-8.136686496052679618e-07,-8.281984469196477506e-07,-8.427282442340275394e-07,-8.572580415484073282e-07,-8.717878388627871170e-07,-8.863176361771669058e-07,-9.008474334915466947e-07,-9.153772308059264835e-07 +0.000000000000000000e+00,-1.508004092658995059e-08,-3.016008185317990117e-08,-4.524012277976985507e-08,-6.032016370635981558e-08,-7.540020463294977610e-08,-9.048024555953973661e-08,-1.055602864861296971e-07,-1.206403274127196576e-07,-1.357203683393096049e-07,-1.508004092658995522e-07,-1.658804501924894995e-07,-1.809604911190794468e-07,-1.960405320456693940e-07,-2.111205729722593413e-07,-2.262006138988492886e-07,-2.412806548254392623e-07,-2.563606957520292361e-07,-2.714407366786192098e-07,-2.865207776052091836e-07,-3.016008185317991573e-07,-3.166808594583891311e-07,-3.317609003849791048e-07,-3.468409413115690786e-07,-3.619209822381590523e-07,-3.770010231647490261e-07,-3.920810640913389998e-07,-4.071611050179289736e-07,-4.222411459445189473e-07,-4.373211868711089211e-07,-4.524012277976988948e-07,-4.674812687242888686e-07,-4.825613096508788423e-07,-4.976413505774688161e-07,-5.127213915040587898e-07,-5.278014324306487636e-07,-5.428814733572387373e-07,-5.579615142838287110e-07,-5.730415552104186848e-07,-5.881215961370086585e-07,-6.032016370635986323e-07,-6.182816779901886060e-07,-6.333617189167785798e-07,-6.484417598433685535e-07,-6.635218007699585273e-07,-6.786018416965485010e-07,-6.936818826231384748e-07,-7.087619235497284485e-07,-7.238419644763184223e-07,-7.389220054029083960e-07,-7.540020463294983698e-07,-7.690820872560883435e-07,-7.841621281826783173e-07,-7.992421691092682910e-07,-8.143222100358582648e-07,-8.294022509624482385e-07,-8.444822918890382123e-07,-8.595623328156281860e-07,-8.746423737422181598e-07,-8.897224146688081335e-07,-9.048024555953981073e-07,-9.198824965219880810e-07,-9.349625374485780548e-07,-9.500425783751680285e-07 +0.000000000000000000e+00,-1.423028508271103243e-08,-2.846057016542206486e-08,-4.269085524813309895e-08,-5.692114033084413635e-08,-7.115142541355517374e-08,-8.538171049626621114e-08,-9.961199557897724853e-08,-1.138422806616882859e-07,-1.280725657443993366e-07,-1.423028508271103740e-07,-1.565331359098214114e-07,-1.707634209925324487e-07,-1.849937060752434861e-07,-1.992239911579545235e-07,-2.134542762406655609e-07,-2.276845613233765983e-07,-2.419148464060876357e-07,-2.561451314887986731e-07,-2.703754165715097105e-07,-2.846057016542207479e-07,-2.988359867369317853e-07,-3.130662718196428227e-07,-3.272965569023538601e-07,-3.415268419850648975e-07,-3.557571270677759349e-07,-3.699874121504869723e-07,-3.842176972331980097e-07,-3.984479823159090471e-07,-4.126782673986200845e-07,-4.269085524813311219e-07,-4.411388375640421593e-07,-4.553691226467531967e-07,-4.695994077294642341e-07,-4.838296928121752714e-07,-4.980599778948863088e-07,-5.122902629775973462e-07,-5.265205480603083836e-07,-5.407508331430194210e-07,-5.549811182257304584e-07,-5.692114033084414958e-07,-5.834416883911525332e-07,-5.976719734738635706e-07,-6.119022585565746080e-07,-6.261325436392856454e-07,-6.403628287219966828e-07,-6.545931138047077202e-07,-6.688233988874187576e-07,-6.830536839701297950e-07,-6.972839690528408324e-07,-7.115142541355518698e-07,-7.257445392182629072e-07,-7.399748243009739446e-07,-7.542051093836849820e-07,-7.684353944663960194e-07,-7.826656795491070568e-07,-7.968959646318180942e-07,-8.111262497145291315e-07,-8.253565347972401689e-07,-8.395868198799512063e-07,-8.538171049626622437e-07,-8.680473900453732811e-07,-8.822776751280843185e-07,-8.965079602107953559e-07 +0.000000000000000000e+00,-1.461728284830513617e-08,-2.923456569661027234e-08,-4.385184854491541182e-08,-5.846913139322055130e-08,-7.308641424152569078e-08,-8.770369708983082364e-08,-1.023209799381359565e-07,-1.169382627864410894e-07,-1.315555456347462222e-07,-1.461728284830513551e-07,-1.607901113313564879e-07,-1.754073941796616208e-07,-1.900246770279667537e-07,-2.046419598762718865e-07,-2.192592427245770194e-07,-2.338765255728821523e-07,-2.484938084211872586e-07,-2.631110912694923915e-07,-2.777283741177975244e-07,-2.923456569661026572e-07,-3.069629398144077901e-07,-3.215802226627129230e-07,-3.361975055110180558e-07,-3.508147883593231887e-07,-3.654320712076283215e-07,-3.800493540559334544e-07,-3.946666369042385873e-07,-4.092839197525437201e-07,-4.239012026008488530e-07,-4.385184854491539858e-07,-4.531357682974591187e-07,-4.677530511457642516e-07,-4.823703339940693844e-07,-4.969876168423745173e-07,-5.116048996906796502e-07,-5.262221825389847830e-07,-5.408394653872899159e-07,-5.554567482355950487e-07,-5.700740310839001816e-07,-5.846913139322053145e-07,-5.993085967805104473e-07,-6.139258796288155802e-07,-6.285431624771207130e-07,-6.431604453254258459e-07,-6.577777281737309788e-07,-6.723950110220361116e-07,-6.870122938703412445e-07,-7.016295767186463774e-07,-7.162468595669515102e-07,-7.308641424152566431e-07,-7.454814252635617759e-07,-7.600987081118669088e-07,-7.747159909601720417e-07,-7.893332738084771745e-07,-8.039505566567823074e-07,-8.185678395050874402e-07,-8.331851223533925731e-07,-8.478024052016977060e-07,-8.624196880500028388e-07,-8.770369708983079717e-07,-8.916542537466131046e-07,-9.062715365949182374e-07,-9.208888194432233703e-07 +0.000000000000000000e+00,-1.452979731437878462e-08,-2.905959462875756923e-08,-4.358939194313635550e-08,-5.811918925751514508e-08,-7.264898657189394128e-08,-8.717878388627273747e-08,-1.017085812006515337e-07,-1.162383785150303299e-07,-1.307681758294091261e-07,-1.452979731437879355e-07,-1.598277704581667449e-07,-1.743575677725455544e-07,-1.888873650869243638e-07,-2.034171624013031732e-07,-2.179469597156819827e-07,-2.324767570300607921e-07,-2.470065543444395750e-07,-2.615363516588183580e-07,-2.760661489731971410e-07,-2.905959462875759239e-07,-3.051257436019547069e-07,-3.196555409163334899e-07,-3.341853382307122728e-07,-3.487151355450910558e-07,-3.632449328594698387e-07,-3.777747301738486217e-07,-3.923045274882274047e-07,-4.068343248026061876e-07,-4.213641221169849706e-07,-4.358939194313637535e-07,-4.504237167457425365e-07,-4.649535140601213195e-07,-4.794833113745001024e-07,-4.940131086888789383e-07,-5.085429060032577742e-07,-5.230727033176366101e-07,-5.376025006320154460e-07,-5.521322979463942819e-07,-5.666620952607731178e-07,-5.811918925751519537e-07,-5.957216898895307896e-07,-6.102514872039096255e-07,-6.247812845182884614e-07,-6.393110818326672973e-07,-6.538408791470461332e-07,-6.683706764614249691e-07,-6.829004737758038050e-07,-6.974302710901826409e-07,-7.119600684045614768e-07,-7.264898657189403127e-07,-7.410196630333191486e-07,-7.555494603476979846e-07,-7.700792576620768205e-07,-7.846090549764556564e-07,-7.991388522908344923e-07,-8.136686496052133282e-07,-8.281984469195921641e-07,-8.427282442339710000e-07,-8.572580415483498359e-07,-8.717878388627286718e-07,-8.863176361771075077e-07,-9.008474334914863436e-07,-9.153772308058651795e-07 +0.000000000000000000e+00,-1.449621354610797524e-08,-2.899242709221595048e-08,-4.348864063832392738e-08,-5.798485418443190759e-08,-7.248106773053988779e-08,-8.697728127664786800e-08,-1.014734948227558482e-07,-1.159697083688638284e-07,-1.304659219149718218e-07,-1.449621354610798021e-07,-1.594583490071877823e-07,-1.739545625532957625e-07,-1.884507760994037427e-07,-2.029469896455117229e-07,-2.174432031916197031e-07,-2.319394167377276833e-07,-2.464356302838356635e-07,-2.609318438299436437e-07,-2.754280573760516239e-07,-2.899242709221596041e-07,-3.044204844682675843e-07,-3.189166980143755645e-07,-3.334129115604835447e-07,-3.479091251065915249e-07,-3.624053386526995051e-07,-3.769015521988074853e-07,-3.913977657449154655e-07,-4.058939792910234457e-07,-4.203901928371314259e-07,-4.348864063832394062e-07,-4.493826199293473864e-07,-4.638788334754553666e-07,-4.783750470215632938e-07,-4.928712605676712211e-07,-5.073674741137791484e-07,-5.218636876598870756e-07,-5.363599012059950029e-07,-5.508561147521029302e-07,-5.653523282982108574e-07,-5.798485418443187847e-07,-5.943447553904267119e-07,-6.088409689365346392e-07,-6.233371824826425665e-07,-6.378333960287504937e-07,-6.523296095748584210e-07,-6.668258231209663483e-07,-6.813220366670742755e-07,-6.958182502131822028e-07,-7.103144637592901301e-07,-7.248106773053980573e-07,-7.393068908515059846e-07,-7.538031043976139119e-07,-7.682993179437218391e-07,-7.827955314898297664e-07,-7.972917450359376937e-07,-8.117879585820456209e-07,-8.262841721281535482e-07,-8.407803856742614755e-07,-8.552765992203694027e-07,-8.697728127664773300e-07,-8.842690263125852573e-07,-8.987652398586931845e-07,-9.132614534048011118e-07 +0.000000000000000000e+00,-1.525579962300677811e-08,-3.051159924601355622e-08,-4.576739886902033764e-08,-6.102319849202712567e-08,-7.627899811503391371e-08,-9.153479773804070174e-08,-1.067905973610474898e-07,-1.220463969840542778e-07,-1.373021966070610658e-07,-1.525579962300678539e-07,-1.678137958530746419e-07,-1.830695954760814300e-07,-1.983253950990882180e-07,-2.135811947220950060e-07,-2.288369943451017941e-07,-2.440927939681086086e-07,-2.593485935911154231e-07,-2.746043932141222376e-07,-2.898601928371290521e-07,-3.051159924601358666e-07,-3.203717920831426811e-07,-3.356275917061494956e-07,-3.508833913291563101e-07,-3.661391909521631246e-07,-3.813949905751699391e-07,-3.966507901981767536e-07,-4.119065898211835681e-07,-4.271623894441903826e-07,-4.424181890671971971e-07,-4.576739886902040116e-07,-4.729297883132108261e-07,-4.881855879362176406e-07,-5.034413875592245081e-07,-5.186971871822313755e-07,-5.339529868052382430e-07,-5.492087864282451104e-07,-5.644645860512519779e-07,-5.797203856742588453e-07,-5.949761852972657128e-07,-6.102319849202725802e-07,-6.254877845432794477e-07,-6.407435841662863151e-07,-6.559993837892931825e-07,-6.712551834123000500e-07,-6.865109830353069174e-07,-7.017667826583137849e-07,-7.170225822813206523e-07,-7.322783819043275198e-07,-7.475341815273343872e-07,-7.627899811503412547e-07,-7.780457807733481221e-07,-7.933015803963549895e-07,-8.085573800193618570e-07,-8.238131796423687244e-07,-8.390689792653755919e-07,-8.543247788883824593e-07,-8.695805785113893268e-07,-8.848363781343961942e-07,-9.000921777574030617e-07,-9.153479773804099291e-07,-9.306037770034167965e-07,-9.458595766264236640e-07,-9.611153762494305314e-07 +0.000000000000000000e+00,-1.575803619392454321e-08,-3.151607238784908641e-08,-4.727410858177363293e-08,-6.303214477569818606e-08,-7.879018096962273919e-08,-9.454821716354729232e-08,-1.103062533574718455e-07,-1.260642895513963986e-07,-1.418223257453209650e-07,-1.575803619392455313e-07,-1.733383981331700977e-07,-1.890964343270946641e-07,-2.048544705210192304e-07,-2.206125067149437968e-07,-2.363705429088683632e-07,-2.521285791027929560e-07,-2.678866152967175488e-07,-2.836446514906421417e-07,-2.994026876845667345e-07,-3.151607238784913273e-07,-3.309187600724159202e-07,-3.466767962663405130e-07,-3.624348324602651058e-07,-3.781928686541896987e-07,-3.939509048481142915e-07,-4.097089410420388844e-07,-4.254669772359634772e-07,-4.412250134298880700e-07,-4.569830496238126629e-07,-4.727410858177372557e-07,-4.884991220116617956e-07,-5.042571582055863355e-07,-5.200151943995108754e-07,-5.357732305934354153e-07,-5.515312667873599552e-07,-5.672893029812844951e-07,-5.830473391752090350e-07,-5.988053753691335749e-07,-6.145634115630581148e-07,-6.303214477569826547e-07,-6.460794839509071946e-07,-6.618375201448317345e-07,-6.775955563387562744e-07,-6.933535925326808143e-07,-7.091116287266053542e-07,-7.248696649205298941e-07,-7.406277011144544339e-07,-7.563857373083789738e-07,-7.721437735023035137e-07,-7.879018096962280536e-07,-8.036598458901525935e-07,-8.194178820840771334e-07,-8.351759182780016733e-07,-8.509339544719262132e-07,-8.666919906658507531e-07,-8.824500268597752930e-07,-8.982080630536998329e-07,-9.139660992476243728e-07,-9.297241354415489127e-07,-9.454821716354734526e-07,-9.612402078293979925e-07,-9.769982440233225324e-07,-9.927562802172470723e-07 +0.000000000000000000e+00,-1.425660972234549797e-08,-2.851321944469099594e-08,-4.276982916703649225e-08,-5.702643888938198526e-08,-7.128304861172747826e-08,-8.553965833407297127e-08,-9.979626805641846427e-08,-1.140528777787639573e-07,-1.283094875011094635e-07,-1.425660972234549830e-07,-1.568227069458005025e-07,-1.710793166681460219e-07,-1.853359263904915414e-07,-1.995925361128370609e-07,-2.138491458351825804e-07,-2.281057555575280998e-07,-2.423623652798736193e-07,-2.566189750022191388e-07,-2.708755847245646583e-07,-2.851321944469101777e-07,-2.993888041692556972e-07,-3.136454138916012167e-07,-3.279020236139467362e-07,-3.421586333362922556e-07,-3.564152430586377751e-07,-3.706718527809832946e-07,-3.849284625033288141e-07,-3.991850722256743335e-07,-4.134416819480198530e-07,-4.276982916703653725e-07,-4.419549013927108920e-07,-4.562115111150564114e-07,-4.704681208374019309e-07,-4.847247305597474504e-07,-4.989813402820929699e-07,-5.132379500044384893e-07,-5.274945597267840088e-07,-5.417511694491295283e-07,-5.560077791714750478e-07,-5.702643888938205672e-07,-5.845209986161660867e-07,-5.987776083385116062e-07,-6.130342180608571257e-07,-6.272908277832026451e-07,-6.415474375055481646e-07,-6.558040472278936841e-07,-6.700606569502392036e-07,-6.843172666725847230e-07,-6.985738763949302425e-07,-7.128304861172757620e-07,-7.270870958396212815e-07,-7.413437055619668009e-07,-7.556003152843123204e-07,-7.698569250066578399e-07,-7.841135347290033594e-07,-7.983701444513488788e-07,-8.126267541736943983e-07,-8.268833638960399178e-07,-8.411399736183854373e-07,-8.553965833407309567e-07,-8.696531930630764762e-07,-8.839098027854219957e-07,-8.981664125077675152e-07 +0.000000000000000000e+00,-1.417049511819810201e-08,-2.834099023639620403e-08,-4.251148535459430438e-08,-5.668198047279240143e-08,-7.085247559099049848e-08,-8.502297070918859553e-08,-9.919346582738669258e-08,-1.133639609455847896e-07,-1.275344560637828999e-07,-1.417049511819810234e-07,-1.558754463001791470e-07,-1.700459414183772705e-07,-1.842164365365753940e-07,-1.983869316547735175e-07,-2.125574267729716410e-07,-2.267279218911697646e-07,-2.408984170093678881e-07,-2.550689121275660116e-07,-2.692394072457641351e-07,-2.834099023639622586e-07,-2.975803974821603822e-07,-3.117508926003585057e-07,-3.259213877185566292e-07,-3.400918828367547527e-07,-3.542623779549528762e-07,-3.684328730731509998e-07,-3.826033681913491233e-07,-3.967738633095472468e-07,-4.109443584277453703e-07,-4.251148535459434938e-07,-4.392853486641416174e-07,-4.534558437823397409e-07,-4.676263389005378644e-07,-4.817968340187359879e-07,-4.959673291369340585e-07,-5.101378242551321291e-07,-5.243083193733301997e-07,-5.384788144915282702e-07,-5.526493096097263408e-07,-5.668198047279244114e-07,-5.809902998461224820e-07,-5.951607949643205526e-07,-6.093312900825186231e-07,-6.235017852007166937e-07,-6.376722803189147643e-07,-6.518427754371128349e-07,-6.660132705553109055e-07,-6.801837656735089760e-07,-6.943542607917070466e-07,-7.085247559099051172e-07,-7.226952510281031878e-07,-7.368657461463012584e-07,-7.510362412644993289e-07,-7.652067363826973995e-07,-7.793772315008954701e-07,-7.935477266190935407e-07,-8.077182217372916113e-07,-8.218887168554896818e-07,-8.360592119736877524e-07,-8.502297070918858230e-07,-8.644002022100838936e-07,-8.785706973282819642e-07,-8.927411924464800347e-07 +0.000000000000000000e+00,-1.589809662986306523e-08,-3.179619325972613046e-08,-4.769428988958919899e-08,-6.359238651945227415e-08,-7.949048314931534930e-08,-9.538857977917842446e-08,-1.112866764090414996e-07,-1.271847730389045748e-07,-1.430828696687676499e-07,-1.589809662986307251e-07,-1.748790629284938002e-07,-1.907771595583568754e-07,-2.066752561882199505e-07,-2.225733528180830257e-07,-2.384714494479460744e-07,-2.543695460778090966e-07,-2.702676427076721188e-07,-2.861657393375351410e-07,-3.020638359673981632e-07,-3.179619325972611855e-07,-3.338600292271242077e-07,-3.497581258569872299e-07,-3.656562224868502521e-07,-3.815543191167132743e-07,-3.974524157465762965e-07,-4.133505123764393187e-07,-4.292486090063023410e-07,-4.451467056361653632e-07,-4.610448022660283854e-07,-4.769428988958914076e-07,-4.928409955257544298e-07,-5.087390921556174520e-07,-5.246371887854804742e-07,-5.405352854153434965e-07,-5.564333820452065187e-07,-5.723314786750695409e-07,-5.882295753049325631e-07,-6.041276719347955853e-07,-6.200257685646586075e-07,-6.359238651945216298e-07,-6.518219618243846520e-07,-6.677200584542476742e-07,-6.836181550841106964e-07,-6.995162517139737186e-07,-7.154143483438367408e-07,-7.313124449736997630e-07,-7.472105416035627853e-07,-7.631086382334258075e-07,-7.790067348632888297e-07,-7.949048314931518519e-07,-8.108029281230148741e-07,-8.267010247528778963e-07,-8.425991213827409185e-07,-8.584972180126039408e-07,-8.743953146424669630e-07,-8.902934112723299852e-07,-9.061915079021930074e-07,-9.220896045320560296e-07,-9.379877011619190518e-07,-9.538857977917821799e-07,-9.697838944216452021e-07,-9.856819910515082244e-07,-1.001580087681371247e-06 +0.000000000000000000e+00,-1.425660972234220083e-08,-2.851321944468440165e-08,-4.276982916702660579e-08,-5.702643888936880992e-08,-7.128304861171101406e-08,-8.553965833405321158e-08,-9.979626805639540909e-08,-1.140528777787376066e-07,-1.283094875010798174e-07,-1.425660972234220281e-07,-1.568227069457642389e-07,-1.710793166681064496e-07,-1.853359263904486604e-07,-1.995925361127908711e-07,-2.138491458351330819e-07,-2.281057555574752926e-07,-2.423623652798175034e-07,-2.566189750021597406e-07,-2.708755847245019778e-07,-2.851321944468442151e-07,-2.993888041691864523e-07,-3.136454138915286895e-07,-3.279020236138709267e-07,-3.421586333362131639e-07,-3.564152430585554012e-07,-3.706718527808976384e-07,-3.849284625032398756e-07,-3.991850722255821128e-07,-4.134416819479243501e-07,-4.276982916702665873e-07,-4.419549013926088245e-07,-4.562115111149510617e-07,-4.704681208372932989e-07,-4.847247305596355362e-07,-4.989813402819777734e-07,-5.132379500043200106e-07,-5.274945597266622478e-07,-5.417511694490044851e-07,-5.560077791713467223e-07,-5.702643888936889595e-07,-5.845209986160311967e-07,-5.987776083383734339e-07,-6.130342180607156712e-07,-6.272908277830579084e-07,-6.415474375054001456e-07,-6.558040472277423828e-07,-6.700606569500846201e-07,-6.843172666724268573e-07,-6.985738763947690945e-07,-7.128304861171113317e-07,-7.270870958394535689e-07,-7.413437055617958062e-07,-7.556003152841380434e-07,-7.698569250064802806e-07,-7.841135347288225178e-07,-7.983701444511647551e-07,-8.126267541735069923e-07,-8.268833638958492295e-07,-8.411399736181914667e-07,-8.553965833405337039e-07,-8.696531930628759412e-07,-8.839098027852181784e-07,-8.981664125075604156e-07 +0.000000000000000000e+00,-1.417049511819489090e-08,-2.834099023638978180e-08,-4.251148535458466938e-08,-5.668198047277955697e-08,-7.085247559097444456e-08,-8.502297070916933877e-08,-9.919346582736423298e-08,-1.133639609455591272e-07,-1.275344560637540214e-07,-1.417049511819489156e-07,-1.558754463001438098e-07,-1.700459414183387040e-07,-1.842164365365335982e-07,-1.983869316547284924e-07,-2.125574267729233866e-07,-2.267279218911182808e-07,-2.408984170093132015e-07,-2.550689121275080957e-07,-2.692394072457029899e-07,-2.834099023638978841e-07,-2.975803974820927783e-07,-3.117508926002876725e-07,-3.259213877184825668e-07,-3.400918828366774610e-07,-3.542623779548723552e-07,-3.684328730730672494e-07,-3.826033681912621436e-07,-3.967738633094570378e-07,-4.109443584276519320e-07,-4.251148535458468262e-07,-4.392853486640417204e-07,-4.534558437822366146e-07,-4.676263389004315088e-07,-4.817968340186264030e-07,-4.959673291368212972e-07,-5.101378242550161914e-07,-5.243083193732110856e-07,-5.384788144914059799e-07,-5.526493096096008741e-07,-5.668198047277957683e-07,-5.809902998459906625e-07,-5.951607949641855567e-07,-6.093312900823804509e-07,-6.235017852005753451e-07,-6.376722803187702393e-07,-6.518427754369651335e-07,-6.660132705551600277e-07,-6.801837656733549219e-07,-6.943542607915498161e-07,-7.085247559097447103e-07,-7.226952510279396045e-07,-7.368657461461344987e-07,-7.510362412643293929e-07,-7.652067363825242872e-07,-7.793772315007191814e-07,-7.935477266189140756e-07,-8.077182217371089698e-07,-8.218887168553038640e-07,-8.360592119734987582e-07,-8.502297070916936524e-07,-8.644002022098885466e-07,-8.785706973280834408e-07,-8.927411924462783350e-07 +0.000000000000000000e+00,-1.589809662985984915e-08,-3.179619325971969830e-08,-4.769428988957955076e-08,-6.359238651943940984e-08,-7.949048314929926891e-08,-9.538857977915912799e-08,-1.112866764090189871e-07,-1.271847730388788461e-07,-1.430828696687387185e-07,-1.589809662985985908e-07,-1.748790629284584631e-07,-1.907771595583183354e-07,-2.066752561881782077e-07,-2.225733528180380800e-07,-2.384714494478979523e-07,-2.543695460777578511e-07,-2.702676427076177499e-07,-2.861657393374776487e-07,-3.020638359673375474e-07,-3.179619325971974462e-07,-3.338600292270573450e-07,-3.497581258569172438e-07,-3.656562224867771426e-07,-3.815543191166370413e-07,-3.974524157464969401e-07,-4.133505123763568389e-07,-4.292486090062167377e-07,-4.451467056360766365e-07,-4.610448022659365353e-07,-4.769428988957964340e-07,-4.928409955256562799e-07,-5.087390921555161257e-07,-5.246371887853759716e-07,-5.405352854152358174e-07,-5.564333820450956632e-07,-5.723314786749555091e-07,-5.882295753048153549e-07,-6.041276719346752008e-07,-6.200257685645350466e-07,-6.359238651943948924e-07,-6.518219618242547383e-07,-6.677200584541145841e-07,-6.836181550839744300e-07,-6.995162517138342758e-07,-7.154143483436941217e-07,-7.313124449735539675e-07,-7.472105416034138133e-07,-7.631086382332736592e-07,-7.790067348631335050e-07,-7.949048314929933509e-07,-8.108029281228531967e-07,-8.267010247527130425e-07,-8.425991213825728884e-07,-8.584972180124327342e-07,-8.743953146422925801e-07,-8.902934112721524259e-07,-9.061915079020122717e-07,-9.220896045318721176e-07,-9.379877011617319634e-07,-9.538857977915918093e-07,-9.697838944214516551e-07,-9.856819910513115010e-07,-1.001580087681171347e-06 +0.000000000000000000e+00,-1.475123889227578836e-08,-2.950247778455157671e-08,-4.425371667682736342e-08,-5.900495556910314681e-08,-7.375619446137893021e-08,-8.850743335365471360e-08,-1.032586722459304970e-07,-1.180099111382062804e-07,-1.327611500304820638e-07,-1.475123889227578604e-07,-1.622636278150336570e-07,-1.770148667073094537e-07,-1.917661055995852503e-07,-2.065173444918610469e-07,-2.212685833841368436e-07,-2.360198222764126402e-07,-2.507710611686884633e-07,-2.655223000609642864e-07,-2.802735389532401095e-07,-2.950247778455159326e-07,-3.097760167377917557e-07,-3.245272556300675788e-07,-3.392784945223434019e-07,-3.540297334146192250e-07,-3.687809723068950481e-07,-3.835322111991708712e-07,-3.982834500914466943e-07,-4.130346889837225174e-07,-4.277859278759983405e-07,-4.425371667682741636e-07,-4.572884056605499867e-07,-4.720396445528258098e-07,-4.867908834451016329e-07,-5.015421223373774560e-07,-5.162933612296532791e-07,-5.310446001219291022e-07,-5.457958390142049253e-07,-5.605470779064807484e-07,-5.752983167987565715e-07,-5.900495556910323946e-07,-6.048007945833082177e-07,-6.195520334755840408e-07,-6.343032723678598639e-07,-6.490545112601356870e-07,-6.638057501524115101e-07,-6.785569890446873332e-07,-6.933082279369631563e-07,-7.080594668292389794e-07,-7.228107057215148025e-07,-7.375619446137906255e-07,-7.523131835060664486e-07,-7.670644223983422717e-07,-7.818156612906180948e-07,-7.965669001828939179e-07,-8.113181390751697410e-07,-8.260693779674455641e-07,-8.408206168597213872e-07,-8.555718557519972103e-07,-8.703230946442730334e-07,-8.850743335365488565e-07,-8.998255724288246796e-07,-9.145768113211005027e-07,-9.293280502133763258e-07 +0.000000000000000000e+00,-1.445870886243542765e-08,-2.891741772487085530e-08,-4.337612658730627964e-08,-5.783483544974170398e-08,-7.229354431217712832e-08,-8.675225317461255927e-08,-1.012109620370479902e-07,-1.156696708994834212e-07,-1.301283797619188521e-07,-1.445870886243542831e-07,-1.590457974867897141e-07,-1.735045063492251450e-07,-1.879632152116605760e-07,-2.024219240740960069e-07,-2.168806329365314379e-07,-2.313393417989668688e-07,-2.457980506614022998e-07,-2.602567595238377043e-07,-2.747154683862731088e-07,-2.891741772487085133e-07,-3.036328861111439178e-07,-3.180915949735793222e-07,-3.325503038360147267e-07,-3.470090126984501312e-07,-3.614677215608855357e-07,-3.759264304233209402e-07,-3.903851392857563447e-07,-4.048438481481917492e-07,-4.193025570106271537e-07,-4.337612658730625581e-07,-4.482199747354979626e-07,-4.626786835979333671e-07,-4.771373924603687187e-07,-4.915961013228040702e-07,-5.060548101852394218e-07,-5.205135190476747733e-07,-5.349722279101101249e-07,-5.494309367725454764e-07,-5.638896456349808279e-07,-5.783483544974161795e-07,-5.928070633598515310e-07,-6.072657722222868826e-07,-6.217244810847222341e-07,-6.361831899471575857e-07,-6.506418988095929372e-07,-6.651006076720282888e-07,-6.795593165344636403e-07,-6.940180253968989919e-07,-7.084767342593343434e-07,-7.229354431217696950e-07,-7.373941519842050465e-07,-7.518528608466403981e-07,-7.663115697090757496e-07,-7.807702785715111012e-07,-7.952289874339464527e-07,-8.096876962963818043e-07,-8.241464051588171558e-07,-8.386051140212525074e-07,-8.530638228836878589e-07,-8.675225317461232105e-07,-8.819812406085585620e-07,-8.964399494709939136e-07,-9.108986583334292651e-07 +0.000000000000000000e+00,-1.639544564302217519e-08,-3.279089128604435038e-08,-4.918633692906652888e-08,-6.558178257208871399e-08,-8.197722821511089911e-08,-9.837267385813308422e-08,-1.147681195011552693e-07,-1.311635651441774545e-07,-1.475590107871996396e-07,-1.639544564302218247e-07,-1.803499020732440098e-07,-1.967453477162661949e-07,-2.131407933592883800e-07,-2.295362390023105651e-07,-2.459316846453327503e-07,-2.623271302883549618e-07,-2.787225759313771734e-07,-2.951180215743993850e-07,-3.115134672174215966e-07,-3.279089128604438082e-07,-3.443043585034660198e-07,-3.606998041464882314e-07,-3.770952497895104429e-07,-3.934906954325326545e-07,-4.098861410755548661e-07,-4.262815867185770777e-07,-4.426770323615992893e-07,-4.590724780046215009e-07,-4.754679236476437124e-07,-4.918633692906659240e-07,-5.082588149336881886e-07,-5.246542605767104531e-07,-5.410497062197327176e-07,-5.574451518627549821e-07,-5.738405975057772467e-07,-5.902360431487995112e-07,-6.066314887918217757e-07,-6.230269344348440402e-07,-6.394223800778663048e-07,-6.558178257208885693e-07,-6.722132713639108338e-07,-6.886087170069330983e-07,-7.050041626499553628e-07,-7.213996082929776274e-07,-7.377950539359998919e-07,-7.541904995790221564e-07,-7.705859452220444209e-07,-7.869813908650666855e-07,-8.033768365080889500e-07,-8.197722821511112145e-07,-8.361677277941334790e-07,-8.525631734371557436e-07,-8.689586190801780081e-07,-8.853540647232002726e-07,-9.017495103662225371e-07,-9.181449560092448017e-07,-9.345404016522670662e-07,-9.509358472952893307e-07,-9.673312929383115952e-07,-9.837267385813337539e-07,-1.000122184224355913e-06,-1.016517629867378071e-06,-1.032913075510400230e-06 +0.000000000000000000e+00,-1.475123889227242173e-08,-2.950247778454484346e-08,-4.425371667681726520e-08,-5.900495556908968693e-08,-7.375619446136210866e-08,-8.850743335363453039e-08,-1.032586722459069521e-07,-1.180099111381793739e-07,-1.327611500304518088e-07,-1.475123889227242438e-07,-1.622636278149966788e-07,-1.770148667072691137e-07,-1.917661055995415487e-07,-2.065173444918139837e-07,-2.212685833840864186e-07,-2.360198222763588536e-07,-2.507710611686312886e-07,-2.655223000609037235e-07,-2.802735389531761585e-07,-2.950247778454485935e-07,-3.097760167377210284e-07,-3.245272556299934634e-07,-3.392784945222658984e-07,-3.540297334145383333e-07,-3.687809723068107683e-07,-3.835322111990832033e-07,-3.982834500913556382e-07,-4.130346889836280732e-07,-4.277859278759005082e-07,-4.425371667681729431e-07,-4.572884056604453781e-07,-4.720396445527178131e-07,-4.867908834449902480e-07,-5.015421223372626830e-07,-5.162933612295351180e-07,-5.310446001218075529e-07,-5.457958390140799879e-07,-5.605470779063524229e-07,-5.752983167986248578e-07,-5.900495556908972928e-07,-6.048007945831697278e-07,-6.195520334754421627e-07,-6.343032723677145977e-07,-6.490545112599870327e-07,-6.638057501522594676e-07,-6.785569890445319026e-07,-6.933082279368043376e-07,-7.080594668290767725e-07,-7.228107057213492075e-07,-7.375619446136216425e-07,-7.523131835058940774e-07,-7.670644223981665124e-07,-7.818156612904389474e-07,-7.965669001827113823e-07,-8.113181390749838173e-07,-8.260693779672562523e-07,-8.408206168595286872e-07,-8.555718557518011222e-07,-8.703230946440735572e-07,-8.850743335363459921e-07,-8.998255724286184271e-07,-9.145768113208908621e-07,-9.293280502131632970e-07 +0.000000000000000000e+00,-1.445870886243203952e-08,-2.891741772486407903e-08,-4.337612658729611524e-08,-5.783483544972815145e-08,-7.229354431216018766e-08,-8.675225317459223048e-08,-1.012109620370242733e-07,-1.156696708994563161e-07,-1.301283797618883590e-07,-1.445870886243204018e-07,-1.590457974867524446e-07,-1.735045063491844874e-07,-1.879632152116165303e-07,-2.024219240740485731e-07,-2.168806329364806159e-07,-2.313393417989126587e-07,-2.457980506613447016e-07,-2.602567595237767179e-07,-2.747154683862087343e-07,-2.891741772486407506e-07,-3.036328861110727670e-07,-3.180915949735047833e-07,-3.325503038359367997e-07,-3.470090126983688161e-07,-3.614677215608008324e-07,-3.759264304232328488e-07,-3.903851392856648651e-07,-4.048438481480968815e-07,-4.193025570105288978e-07,-4.337612658729609142e-07,-4.482199747353929305e-07,-4.626786835978249469e-07,-4.771373924602569103e-07,-4.915961013226888737e-07,-5.060548101851208371e-07,-5.205135190475528006e-07,-5.349722279099847640e-07,-5.494309367724167274e-07,-5.638896456348486908e-07,-5.783483544972806542e-07,-5.928070633597126176e-07,-6.072657722221445811e-07,-6.217244810845765445e-07,-6.361831899470085079e-07,-6.506418988094404713e-07,-6.651006076718724347e-07,-6.795593165343043981e-07,-6.940180253967363616e-07,-7.084767342591683250e-07,-7.229354431216002884e-07,-7.373941519840322518e-07,-7.518528608464642152e-07,-7.663115697088961786e-07,-7.807702785713281421e-07,-7.952289874337601055e-07,-8.096876962961920689e-07,-8.241464051586240323e-07,-8.386051140210559957e-07,-8.530638228834879591e-07,-8.675225317459199225e-07,-8.819812406083518860e-07,-8.964399494707838494e-07,-9.108986583332158128e-07 +0.000000000000000000e+00,-1.639544564301902198e-08,-3.279089128603804395e-08,-4.918633692905706593e-08,-6.558178257207608791e-08,-8.197722821509510988e-08,-9.837267385811413186e-08,-1.147681195011331538e-07,-1.311635651441521758e-07,-1.475590107871712110e-07,-1.639544564301902462e-07,-1.803499020732092814e-07,-1.967453477162283167e-07,-2.131407933592473519e-07,-2.295362390022663871e-07,-2.459316846452854223e-07,-2.623271302883044575e-07,-2.787225759313234927e-07,-2.951180215743425279e-07,-3.115134672173615631e-07,-3.279089128603805983e-07,-3.443043585033996336e-07,-3.606998041464186688e-07,-3.770952497894377040e-07,-3.934906954324567392e-07,-4.098861410754757744e-07,-4.262815867184948096e-07,-4.426770323615138448e-07,-4.590724780045328800e-07,-4.754679236475519153e-07,-4.918633692905709505e-07,-5.082588149335899327e-07,-5.246542605766089150e-07,-5.410497062196278973e-07,-5.574451518626468795e-07,-5.738405975056658618e-07,-5.902360431486848441e-07,-6.066314887917038264e-07,-6.230269344347228086e-07,-6.394223800777417909e-07,-6.558178257207607732e-07,-6.722132713637797555e-07,-6.886087170067987377e-07,-7.050041626498177200e-07,-7.213996082928367023e-07,-7.377950539358556845e-07,-7.541904995788746668e-07,-7.705859452218936491e-07,-7.869813908649126314e-07,-8.033768365079316136e-07,-8.197722821509505959e-07,-8.361677277939695782e-07,-8.525631734369885604e-07,-8.689586190800075427e-07,-8.853540647230265250e-07,-9.017495103660455073e-07,-9.181449560090644895e-07,-9.345404016520834718e-07,-9.509358472951024541e-07,-9.673312929381214363e-07,-9.837267385811404186e-07,-1.000122184224159401e-06,-1.016517629867178383e-06,-1.032913075510197365e-06 +0.000000000000000000e+00,-1.549357891876802937e-08,-3.098715783753605874e-08,-4.648073675630408480e-08,-6.197431567507210424e-08,-7.746789459384012368e-08,-9.296147351260814313e-08,-1.084550524313761626e-07,-1.239486313501441820e-07,-1.394422102689122147e-07,-1.549357891876802474e-07,-1.704293681064482800e-07,-1.859229470252163127e-07,-2.014165259439843454e-07,-2.169101048627523781e-07,-2.324036837815204108e-07,-2.478972627002884170e-07,-2.633908416190564232e-07,-2.788844205378244294e-07,-2.943779994565924356e-07,-3.098715783753604418e-07,-3.253651572941284480e-07,-3.408587362128964542e-07,-3.563523151316644604e-07,-3.718458940504324666e-07,-3.873394729692004728e-07,-4.028330518879684790e-07,-4.183266308067364853e-07,-4.338202097255044915e-07,-4.493137886442724977e-07,-4.648073675630405039e-07,-4.803009464818085630e-07,-4.957945254005766222e-07,-5.112881043193446813e-07,-5.267816832381127405e-07,-5.422752621568807996e-07,-5.577688410756488588e-07,-5.732624199944169179e-07,-5.887559989131849771e-07,-6.042495778319530362e-07,-6.197431567507210953e-07,-6.352367356694891545e-07,-6.507303145882572136e-07,-6.662238935070252728e-07,-6.817174724257933319e-07,-6.972110513445613911e-07,-7.127046302633294502e-07,-7.281982091820975094e-07,-7.436917881008655685e-07,-7.591853670196336277e-07,-7.746789459384016868e-07,-7.901725248571697460e-07,-8.056661037759378051e-07,-8.211596826947058643e-07,-8.366532616134739234e-07,-8.521468405322419826e-07,-8.676404194510100417e-07,-8.831339983697781009e-07,-8.986275772885461600e-07,-9.141211562073142192e-07,-9.296147351260822783e-07,-9.451083140448503374e-07,-9.606018929636183966e-07,-9.760954718823864557e-07 +0.000000000000000000e+00,-1.510307396991418719e-08,-3.020614793982837438e-08,-4.530922190974256157e-08,-6.041229587965674877e-08,-7.551536984957093596e-08,-9.061844381948512315e-08,-1.057215177893993103e-07,-1.208245917593134975e-07,-1.359276657292276847e-07,-1.510307396991418719e-07,-1.661338136690560591e-07,-1.812368876389702463e-07,-1.963399616088844335e-07,-2.114430355787986207e-07,-2.265461095487128079e-07,-2.416491835186269951e-07,-2.567522574885411823e-07,-2.718553314584553694e-07,-2.869584054283695566e-07,-3.020614793982837438e-07,-3.171645533681979310e-07,-3.322676273381121182e-07,-3.473707013080263054e-07,-3.624737752779404926e-07,-3.775768492478546798e-07,-3.926799232177688670e-07,-4.077829971876830542e-07,-4.228860711575972414e-07,-4.379891451275114286e-07,-4.530922190974256157e-07,-4.681952930673398029e-07,-4.832983670372539901e-07,-4.984014410071682303e-07,-5.135045149770824704e-07,-5.286075889469967105e-07,-5.437106629169109507e-07,-5.588137368868251908e-07,-5.739168108567394309e-07,-5.890198848266536710e-07,-6.041229587965679112e-07,-6.192260327664821513e-07,-6.343291067363963914e-07,-6.494321807063106316e-07,-6.645352546762248717e-07,-6.796383286461391118e-07,-6.947414026160533520e-07,-7.098444765859675921e-07,-7.249475505558818322e-07,-7.400506245257960724e-07,-7.551536984957103125e-07,-7.702567724656245526e-07,-7.853598464355387928e-07,-8.004629204054530329e-07,-8.155659943753672730e-07,-8.306690683452815131e-07,-8.457721423151957533e-07,-8.608752162851099934e-07,-8.759782902550242335e-07,-8.910813642249384737e-07,-9.061844381948527138e-07,-9.212875121647669539e-07,-9.363905861346811941e-07,-9.514936601045954342e-07 +0.000000000000000000e+00,-1.716194458458815012e-08,-3.432388916917630024e-08,-5.148583375376444706e-08,-6.864777833835258725e-08,-8.580972292294072745e-08,-1.029716675075288676e-07,-1.201336120921170078e-07,-1.372955566767051480e-07,-1.544575012612932882e-07,-1.716194458458814284e-07,-1.887813904304695686e-07,-2.059433350150577088e-07,-2.231052795996458490e-07,-2.402672241842339627e-07,-2.574291687688220500e-07,-2.745911133534101373e-07,-2.917530579379982245e-07,-3.089150025225863118e-07,-3.260769471071743990e-07,-3.432388916917624863e-07,-3.604008362763505735e-07,-3.775627808609386608e-07,-3.947247254455267480e-07,-4.118866700301148353e-07,-4.290486146147029226e-07,-4.462105591992910098e-07,-4.633725037838790971e-07,-4.805344483684671843e-07,-4.976963929530552716e-07,-5.148583375376433588e-07,-5.320202821222314461e-07,-5.491822267068195333e-07,-5.663441712914076206e-07,-5.835061158759957079e-07,-6.006680604605837951e-07,-6.178300050451718824e-07,-6.349919496297599696e-07,-6.521538942143480569e-07,-6.693158387989361441e-07,-6.864777833835242314e-07,-7.036397279681123187e-07,-7.208016725527004059e-07,-7.379636171372884932e-07,-7.551255617218765804e-07,-7.722875063064646677e-07,-7.894494508910527549e-07,-8.066113954756408422e-07,-8.237733400602289294e-07,-8.409352846448170167e-07,-8.580972292294051040e-07,-8.752591738139931912e-07,-8.924211183985812785e-07,-9.095830629831693657e-07,-9.267450075677574530e-07,-9.439069521523455402e-07,-9.610688967369337334e-07,-9.782308413215220324e-07,-9.953927859061103314e-07,-1.012554730490698630e-06,-1.029716675075286929e-06,-1.046878619659875228e-06,-1.064040564244463527e-06,-1.081202508829051826e-06 +0.000000000000000000e+00,-1.549357891876497873e-08,-3.098715783752995745e-08,-4.648073675629493949e-08,-6.197431567505992814e-08,-7.746789459382491680e-08,-9.296147351258990545e-08,-1.084550524313548941e-07,-1.239486313501198828e-07,-1.394422102688848714e-07,-1.549357891876498601e-07,-1.704293681064148487e-07,-1.859229470251798374e-07,-2.014165259439448260e-07,-2.169101048627098147e-07,-2.324036837814748033e-07,-2.478972627002398184e-07,-2.633908416190048071e-07,-2.788844205377697958e-07,-2.943779994565347844e-07,-3.098715783752997731e-07,-3.253651572940647617e-07,-3.408587362128297504e-07,-3.563523151315947390e-07,-3.718458940503597277e-07,-3.873394729691247163e-07,-4.028330518878897050e-07,-4.183266308066546936e-07,-4.338202097254196823e-07,-4.493137886441846709e-07,-4.648073675629496596e-07,-4.803009464817146482e-07,-4.957945254004796369e-07,-5.112881043192446256e-07,-5.267816832380096142e-07,-5.422752621567746029e-07,-5.577688410755395915e-07,-5.732624199943045802e-07,-5.887559989130695688e-07,-6.042495778318345575e-07,-6.197431567505995461e-07,-6.352367356693645348e-07,-6.507303145881295234e-07,-6.662238935068945121e-07,-6.817174724256595007e-07,-6.972110513444244894e-07,-7.127046302631894780e-07,-7.281982091819544667e-07,-7.436917881007194553e-07,-7.591853670194844440e-07,-7.746789459382494327e-07,-7.901725248570144213e-07,-8.056661037757794100e-07,-8.211596826945443986e-07,-8.366532616133093873e-07,-8.521468405320743759e-07,-8.676404194508393646e-07,-8.831339983696043532e-07,-8.986275772883693419e-07,-9.141211562071343305e-07,-9.296147351258993192e-07,-9.451083140446643078e-07,-9.606018929634292965e-07,-9.760954718821941793e-07 +0.000000000000000000e+00,-1.510307396991100089e-08,-3.020614793982200178e-08,-4.530922190973300598e-08,-6.041229587964401680e-08,-7.551536984955502762e-08,-9.061844381946603844e-08,-1.057215177893770493e-07,-1.208245917592880601e-07,-1.359276657291990709e-07,-1.510307396991100817e-07,-1.661338136690210925e-07,-1.812368876389321033e-07,-1.963399616088431142e-07,-2.114430355787541250e-07,-2.265461095486651358e-07,-2.416491835185761731e-07,-2.567522574884872368e-07,-2.718553314583983006e-07,-2.869584054283093644e-07,-3.020614793982204281e-07,-3.171645533681314919e-07,-3.322676273380425556e-07,-3.473707013079536194e-07,-3.624737752778646832e-07,-3.775768492477757469e-07,-3.926799232176868107e-07,-4.077829971875978744e-07,-4.228860711575089382e-07,-4.379891451274200019e-07,-4.530922190973310657e-07,-4.681952930672421295e-07,-4.832983670371531932e-07,-4.984014410070642570e-07,-5.135045149769753207e-07,-5.286075889468863845e-07,-5.437106629167974482e-07,-5.588137368867085120e-07,-5.739168108566195758e-07,-5.890198848265306395e-07,-6.041229587964417033e-07,-6.192260327663527670e-07,-6.343291067362638308e-07,-6.494321807061748945e-07,-6.645352546760859583e-07,-6.796383286459970221e-07,-6.947414026159080858e-07,-7.098444765858191496e-07,-7.249475505557302133e-07,-7.400506245256412771e-07,-7.551536984955523408e-07,-7.702567724654634046e-07,-7.853598464353744684e-07,-8.004629204052855321e-07,-8.155659943751965959e-07,-8.306690683451076596e-07,-8.457721423150187234e-07,-8.608752162849297872e-07,-8.759782902548408509e-07,-8.910813642247519147e-07,-9.061844381946629784e-07,-9.212875121645740422e-07,-9.363905861344851059e-07,-9.514936601043961697e-07 +0.000000000000000000e+00,-1.716194458458505977e-08,-3.432388916917011955e-08,-5.148583375375518263e-08,-6.864777833834025233e-08,-8.580972292292532204e-08,-1.029716675075103917e-07,-1.201336120920954614e-07,-1.372955566766805311e-07,-1.544575012612656008e-07,-1.716194458458506705e-07,-1.887813904304357402e-07,-2.059433350150208099e-07,-2.231052795996058796e-07,-2.402672241841909758e-07,-2.574291687687760985e-07,-2.745911133533612211e-07,-2.917530579379463437e-07,-3.089150025225314664e-07,-3.260769471071165890e-07,-3.432388916917017117e-07,-3.604008362762868343e-07,-3.775627808608719569e-07,-3.947247254454570796e-07,-4.118866700300422022e-07,-4.290486146146273249e-07,-4.462105591992124475e-07,-4.633725037837975701e-07,-4.805344483683826928e-07,-4.976963929529678154e-07,-5.148583375375529381e-07,-5.320202821221380607e-07,-5.491822267067231833e-07,-5.663441712913083060e-07,-5.835061158758934286e-07,-6.006680604604785513e-07,-6.178300050450636739e-07,-6.349919496296487966e-07,-6.521538942142339192e-07,-6.693158387988190418e-07,-6.864777833834041645e-07,-7.036397279679892871e-07,-7.208016725525744098e-07,-7.379636171371595324e-07,-7.551255617217446550e-07,-7.722875063063297777e-07,-7.894494508909149003e-07,-8.066113954755000230e-07,-8.237733400600851456e-07,-8.409352846446702682e-07,-8.580972292292553909e-07,-8.752591738138405135e-07,-8.924211183984256362e-07,-9.095830629830107588e-07,-9.267450075675958814e-07,-9.439069521521810041e-07,-9.610688967367660208e-07,-9.782308413213509317e-07,-9.953927859059358426e-07,-1.012554730490520753e-06,-1.029716675075105664e-06,-1.046878619659690575e-06,-1.064040564244275486e-06,-1.081202508828860397e-06 +0.000000000000000000e+00,-1.631855879204522943e-08,-3.263711758409045887e-08,-4.895567637613568830e-08,-6.527423516818091773e-08,-8.159279396022614055e-08,-9.791135275227136336e-08,-1.142299115443165862e-07,-1.305484703363618090e-07,-1.468670291284070318e-07,-1.631855879204522546e-07,-1.795041467124974774e-07,-1.958227055045427003e-07,-2.121412642965879231e-07,-2.284598230886331459e-07,-2.447783818806783687e-07,-2.610969406727235650e-07,-2.774154994647687614e-07,-2.937340582568139577e-07,-3.100526170488591541e-07,-3.263711758409043504e-07,-3.426897346329495468e-07,-3.590082934249947431e-07,-3.753268522170399395e-07,-3.916454110090851358e-07,-4.079639698011303322e-07,-4.242825285931755285e-07,-4.406010873852207249e-07,-4.569196461772659212e-07,-4.732382049693111175e-07,-4.895567637613563139e-07,-5.058753225534015102e-07,-5.221938813454467066e-07,-5.385124401374919029e-07,-5.548309989295370993e-07,-5.711495577215822956e-07,-5.874681165136274920e-07,-6.037866753056726883e-07,-6.201052340977178847e-07,-6.364237928897630810e-07,-6.527423516818082773e-07,-6.690609104738534737e-07,-6.853794692658986700e-07,-7.016980280579438664e-07,-7.180165868499890627e-07,-7.343351456420342591e-07,-7.506537044340794554e-07,-7.669722632261246518e-07,-7.832908220181698481e-07,-7.996093808102150445e-07,-8.159279396022602408e-07,-8.322464983943054371e-07,-8.485650571863506335e-07,-8.648836159783958298e-07,-8.812021747704410262e-07,-8.975207335624862225e-07,-9.138392923545314189e-07,-9.301578511465766152e-07,-9.464764099386218116e-07,-9.627949687306670079e-07,-9.791135275227122043e-07,-9.954320863147574006e-07,-1.011750645106802597e-06,-1.028069203898847793e-06 +0.000000000000000000e+00,-1.590351524614830610e-08,-3.180703049229661220e-08,-4.771054573844491830e-08,-6.361406098459322441e-08,-7.951757623074152389e-08,-9.542109147688982337e-08,-1.113246067230381229e-07,-1.272281219691864223e-07,-1.431316372153347218e-07,-1.590351524614830213e-07,-1.749386677076313208e-07,-1.908421829537796203e-07,-2.067456981999279198e-07,-2.226492134460762192e-07,-2.385527286922245187e-07,-2.544562439383727917e-07,-2.703597591845210648e-07,-2.862632744306693378e-07,-3.021667896768176108e-07,-3.180703049229658838e-07,-3.339738201691141568e-07,-3.498773354152624298e-07,-3.657808506614107028e-07,-3.816843659075589759e-07,-3.975878811537072489e-07,-4.134913963998555219e-07,-4.293949116460037949e-07,-4.452984268921520679e-07,-4.612019421383003409e-07,-4.771054573844486139e-07,-4.930089726305968870e-07,-5.089124878767451600e-07,-5.248160031228934330e-07,-5.407195183690417060e-07,-5.566230336151899790e-07,-5.725265488613382520e-07,-5.884300641074865250e-07,-6.043335793536347981e-07,-6.202370945997830711e-07,-6.361406098459313441e-07,-6.520441250920796171e-07,-6.679476403382278901e-07,-6.838511555843761631e-07,-6.997546708305244361e-07,-7.156581860766727092e-07,-7.315617013228209822e-07,-7.474652165689692552e-07,-7.633687318151175282e-07,-7.792722470612658012e-07,-7.951757623074140742e-07,-8.110792775535623472e-07,-8.269827927997106203e-07,-8.428863080458588933e-07,-8.587898232920071663e-07,-8.746933385381554393e-07,-8.905968537843037123e-07,-9.065003690304519853e-07,-9.224038842766002583e-07,-9.383073995227485314e-07,-9.542109147688968044e-07,-9.701144300150450774e-07,-9.860179452611933504e-07,-1.001921460507341623e-06 +0.000000000000000000e+00,-1.807153424900610864e-08,-3.614306849801221727e-08,-5.421460274701832591e-08,-7.228613699602443454e-08,-9.035767124503054318e-08,-1.084292054940366518e-07,-1.265007397430427737e-07,-1.445722739920488956e-07,-1.626438082410550174e-07,-1.807153424900611393e-07,-1.987868767390672612e-07,-2.168584109880733830e-07,-2.349299452370795049e-07,-2.530014794860856533e-07,-2.710730137350918016e-07,-2.891445479840979499e-07,-3.072160822331040983e-07,-3.252876164821102466e-07,-3.433591507311163950e-07,-3.614306849801225433e-07,-3.795022192291286916e-07,-3.975737534781348400e-07,-4.156452877271409883e-07,-4.337168219761471367e-07,-4.517883562251532850e-07,-4.698598904741594333e-07,-4.879314247231655817e-07,-5.060029589721717300e-07,-5.240744932211778784e-07,-5.421460274701840267e-07,-5.602175617191901750e-07,-5.782890959681963234e-07,-5.963606302172024717e-07,-6.144321644662086201e-07,-6.325036987152147684e-07,-6.505752329642209167e-07,-6.686467672132270651e-07,-6.867183014622332134e-07,-7.047898357112393618e-07,-7.228613699602455101e-07,-7.409329042092516585e-07,-7.590044384582578068e-07,-7.770759727072639551e-07,-7.951475069562701035e-07,-8.132190412052762518e-07,-8.312905754542824002e-07,-8.493621097032885485e-07,-8.674336439522946968e-07,-8.855051782013008452e-07,-9.035767124503069935e-07,-9.216482466993131419e-07,-9.397197809483192902e-07,-9.577913151973255444e-07,-9.758628494463317986e-07,-9.939343836953380529e-07,-1.012005917944344307e-06,-1.030077452193350561e-06,-1.048148986442356816e-06,-1.066220520691363070e-06,-1.084292054940369324e-06,-1.102363589189375578e-06,-1.120435123438381832e-06,-1.138506657687388087e-06 +0.000000000000000000e+00,-1.631855879204281076e-08,-3.263711758408562151e-08,-4.895567637612842896e-08,-6.527423516817122979e-08,-8.159279396021403062e-08,-9.791135275225683145e-08,-1.142299115442996323e-07,-1.305484703363424331e-07,-1.468670291283852207e-07,-1.631855879204280083e-07,-1.795041467124707959e-07,-1.958227055045135835e-07,-2.121412642965563711e-07,-2.284598230885991587e-07,-2.447783818806419463e-07,-2.610969406726847074e-07,-2.774154994647274685e-07,-2.937340582567702297e-07,-3.100526170488129908e-07,-3.263711758408557519e-07,-3.426897346328985130e-07,-3.590082934249412742e-07,-3.753268522169840353e-07,-3.916454110090267964e-07,-4.079639698010695575e-07,-4.242825285931123187e-07,-4.406010873851550798e-07,-4.569196461771978409e-07,-4.732382049692406020e-07,-4.895567637612833632e-07,-5.058753225533261243e-07,-5.221938813453688854e-07,-5.385124401374116466e-07,-5.548309989294544077e-07,-5.711495577214971688e-07,-5.874681165135399299e-07,-6.037866753055826911e-07,-6.201052340976254522e-07,-6.364237928896682133e-07,-6.527423516817109744e-07,-6.690609104737537356e-07,-6.853794692657964967e-07,-7.016980280578392578e-07,-7.180165868498820189e-07,-7.343351456419247801e-07,-7.506537044339675412e-07,-7.669722632260103023e-07,-7.832908220180530634e-07,-7.996093808100958246e-07,-8.159279396021385857e-07,-8.322464983941813468e-07,-8.485650571862241079e-07,-8.648836159782668691e-07,-8.812021747703096302e-07,-8.975207335623523913e-07,-9.138392923543951525e-07,-9.301578511464379136e-07,-9.464764099384806747e-07,-9.627949687305234358e-07,-9.791135275225660911e-07,-9.954320863146087463e-07,-1.011750645106651402e-06,-1.028069203898694057e-06 +0.000000000000000000e+00,-1.590351524614551023e-08,-3.180703049229102046e-08,-4.771054573843653400e-08,-6.361406098458205416e-08,-7.951757623072757432e-08,-9.542109147687309447e-08,-1.113246067230186146e-07,-1.272281219691641348e-07,-1.431316372153096549e-07,-1.590351524614551751e-07,-1.749386677076006953e-07,-1.908421829537462154e-07,-2.067456981998917356e-07,-2.226492134460372557e-07,-2.385527286921828024e-07,-2.544562439383283225e-07,-2.703597591844738427e-07,-2.862632744306193628e-07,-3.021667896767648830e-07,-3.180703049229104031e-07,-3.339738201690559233e-07,-3.498773354152014435e-07,-3.657808506613469636e-07,-3.816843659074924838e-07,-3.975878811536380039e-07,-4.134913963997835241e-07,-4.293949116459290442e-07,-4.452984268920745644e-07,-4.612019421382200846e-07,-4.771054573843656047e-07,-4.930089726305111249e-07,-5.089124878766566450e-07,-5.248160031228021652e-07,-5.407195183689476853e-07,-5.566230336150932055e-07,-5.725265488612387257e-07,-5.884300641073842458e-07,-6.043335793535297660e-07,-6.202370945996752861e-07,-6.361406098458208063e-07,-6.520441250919663264e-07,-6.679476403381118466e-07,-6.838511555842573668e-07,-6.997546708304028869e-07,-7.156581860765484071e-07,-7.315617013226939272e-07,-7.474652165688394474e-07,-7.633687318149849675e-07,-7.792722470611304877e-07,-7.951757623072760079e-07,-8.110792775534215280e-07,-8.269827927995670482e-07,-8.428863080457125683e-07,-8.587898232918580885e-07,-8.746933385380036087e-07,-8.905968537841491288e-07,-9.065003690302946490e-07,-9.224038842764401691e-07,-9.383073995225856893e-07,-9.542109147687312094e-07,-9.701144300148767296e-07,-9.860179452610222498e-07,-1.001921460507167770e-06 +0.000000000000000000e+00,-1.807153424900324328e-08,-3.614306849800648656e-08,-5.421460274700972985e-08,-7.228613699601297313e-08,-9.035767124501620979e-08,-1.084292054940194465e-07,-1.265007397430226831e-07,-1.445722739920259198e-07,-1.626438082410291565e-07,-1.807153424900323931e-07,-1.987868767390356298e-07,-2.168584109880388664e-07,-2.349299452370421031e-07,-2.530014794860453133e-07,-2.710730137350484970e-07,-2.891445479840516808e-07,-3.072160822330548645e-07,-3.252876164820580482e-07,-3.433591507310612319e-07,-3.614306849800644157e-07,-3.795022192290675994e-07,-3.975737534780707831e-07,-4.156452877270739668e-07,-4.337168219760771506e-07,-4.517883562250803343e-07,-4.698598904740835180e-07,-4.879314247230867017e-07,-5.060029589720898855e-07,-5.240744932210930692e-07,-5.421460274700962529e-07,-5.602175617190994366e-07,-5.782890959681026204e-07,-5.963606302171058041e-07,-6.144321644661089878e-07,-6.325036987151121715e-07,-6.505752329641153553e-07,-6.686467672131185390e-07,-6.867183014621217227e-07,-7.047898357111249064e-07,-7.228613699601280902e-07,-7.409329042091312739e-07,-7.590044384581344576e-07,-7.770759727071376413e-07,-7.951475069561408251e-07,-8.132190412051440088e-07,-8.312905754541471925e-07,-8.493621097031503762e-07,-8.674336439521535600e-07,-8.855051782011567437e-07,-9.035767124501599274e-07,-9.216482466991631112e-07,-9.397197809481662949e-07,-9.577913151971694786e-07,-9.758628494461725564e-07,-9.939343836951756343e-07,-1.012005917944178712e-06,-1.030077452193181790e-06,-1.048148986442184868e-06,-1.066220520691187946e-06,-1.084292054940191024e-06,-1.102363589189194101e-06,-1.120435123438197179e-06,-1.138506657687200257e-06 +0.000000000000000000e+00,-1.712592247170726065e-08,-3.425184494341452129e-08,-5.137776741512178194e-08,-6.850368988682904259e-08,-8.562961235853630323e-08,-1.027555348302435639e-07,-1.198814573019508113e-07,-1.370073797736580587e-07,-1.541333022453653061e-07,-1.712592247170725535e-07,-1.883851471887798009e-07,-2.055110696604870483e-07,-2.226369921321942958e-07,-2.397629146039015167e-07,-2.568888370756087376e-07,-2.740147595473159586e-07,-2.911406820190231795e-07,-3.082666044907304005e-07,-3.253925269624376214e-07,-3.425184494341448424e-07,-3.596443719058520633e-07,-3.767702943775592842e-07,-3.938962168492665052e-07,-4.110221393209737261e-07,-4.281480617926809471e-07,-4.452739842643881680e-07,-4.623999067360953889e-07,-4.795258292078026099e-07,-4.966517516795097779e-07,-5.137776741512169459e-07,-5.309035966229241139e-07,-5.480295190946312819e-07,-5.651554415663384499e-07,-5.822813640380456179e-07,-5.994072865097527859e-07,-6.165332089814599539e-07,-6.336591314531671219e-07,-6.507850539248742899e-07,-6.679109763965814579e-07,-6.850368988682886259e-07,-7.021628213399957939e-07,-7.192887438117029619e-07,-7.364146662834101299e-07,-7.535405887551172979e-07,-7.706665112268244659e-07,-7.877924336985316339e-07,-8.049183561702388019e-07,-8.220442786419459699e-07,-8.391702011136531379e-07,-8.562961235853603059e-07,-8.734220460570674739e-07,-8.905479685287746419e-07,-9.076738910004818099e-07,-9.247998134721889779e-07,-9.419257359438961459e-07,-9.590516584156033139e-07,-9.761775808873104819e-07,-9.933035033590176499e-07,-1.010429425830724818e-06,-1.027555348302431986e-06,-1.044681270774139154e-06,-1.061807193245846322e-06,-1.078933115717553490e-06 +0.000000000000000000e+00,-1.672941203179287487e-08,-3.345882406358574974e-08,-5.018823609537862461e-08,-6.691764812717149948e-08,-8.364706015896438096e-08,-1.003764721907572624e-07,-1.171058842225501439e-07,-1.338352962543430254e-07,-1.505647082861359069e-07,-1.672941203179287884e-07,-1.840235323497216699e-07,-2.007529443815145514e-07,-2.174823564133074329e-07,-2.342117684451003143e-07,-2.509411804768931958e-07,-2.676705925086861038e-07,-2.844000045404790117e-07,-3.011294165722719197e-07,-3.178588286040648277e-07,-3.345882406358577356e-07,-3.513176526676506436e-07,-3.680470646994435515e-07,-3.847764767312364595e-07,-4.015058887630293674e-07,-4.182353007948222754e-07,-4.349647128266151833e-07,-4.516941248584080913e-07,-4.684235368902009993e-07,-4.851529489219939072e-07,-5.018823609537868152e-07,-5.186117729855797231e-07,-5.353411850173726311e-07,-5.520705970491655390e-07,-5.688000090809584470e-07,-5.855294211127513550e-07,-6.022588331445442629e-07,-6.189882451763371709e-07,-6.357176572081300788e-07,-6.524470692399229868e-07,-6.691764812717158947e-07,-6.859058933035088027e-07,-7.026353053353017107e-07,-7.193647173670946186e-07,-7.360941293988875266e-07,-7.528235414306804345e-07,-7.695529534624733425e-07,-7.862823654942662504e-07,-8.030117775260591584e-07,-8.197411895578520663e-07,-8.364706015896449743e-07,-8.532000136214378823e-07,-8.699294256532307902e-07,-8.866588376850236982e-07,-9.033882497168166061e-07,-9.201176617486095141e-07,-9.368470737804024220e-07,-9.535764858121953300e-07,-9.703058978439882380e-07,-9.870353098757811459e-07,-1.003764721907574054e-06,-1.020494133939366962e-06,-1.037223545971159870e-06,-1.053952958002952778e-06 +0.000000000000000000e+00,-1.902357538813017241e-08,-3.804715077626034482e-08,-5.707072616439052054e-08,-7.609430155252070287e-08,-9.511787694065088521e-08,-1.141414523287810675e-07,-1.331650277169112499e-07,-1.521886031050414322e-07,-1.712121784931716146e-07,-1.902357538813017969e-07,-2.092593292694319792e-07,-2.282829046575621616e-07,-2.473064800456923439e-07,-2.663300554338224998e-07,-2.853536308219526556e-07,-3.043772062100828115e-07,-3.234007815982129674e-07,-3.424243569863431232e-07,-3.614479323744732791e-07,-3.804715077626034350e-07,-3.994950831507335908e-07,-4.185186585388637467e-07,-4.375422339269939026e-07,-4.565658093151240584e-07,-4.755893847032542143e-07,-4.946129600913843702e-07,-5.136365354795145790e-07,-5.326601108676447878e-07,-5.516836862557749966e-07,-5.707072616439052054e-07,-5.897308370320354142e-07,-6.087544124201656230e-07,-6.277779878082958318e-07,-6.468015631964260406e-07,-6.658251385845562494e-07,-6.848487139726864582e-07,-7.038722893608166670e-07,-7.228958647489468758e-07,-7.419194401370770846e-07,-7.609430155252072934e-07,-7.799665909133375022e-07,-7.989901663014677111e-07,-8.180137416895979199e-07,-8.370373170777281287e-07,-8.560608924658583375e-07,-8.750844678539885463e-07,-8.941080432421187551e-07,-9.131316186302489639e-07,-9.321551940183791727e-07,-9.511787694065093815e-07,-9.702023447946395903e-07,-9.892259201827697991e-07,-1.008249495570900008e-06,-1.027273070959030217e-06,-1.046296646347160426e-06,-1.065320221735290634e-06,-1.084343797123420843e-06,-1.103367372511551052e-06,-1.122390947899681261e-06,-1.141414523287811470e-06,-1.160438098675941678e-06,-1.179461674064071887e-06,-1.198485249452202096e-06 +0.000000000000000000e+00,-1.712592247170539453e-08,-3.425184494341078905e-08,-5.137776741511618358e-08,-6.850368988682157811e-08,-8.562961235852697263e-08,-1.027555348302323672e-07,-1.198814573019377617e-07,-1.370073797736431562e-07,-1.541333022453485507e-07,-1.712592247170539453e-07,-1.883851471887593398e-07,-2.055110696604647343e-07,-2.226369921321701288e-07,-2.397629146038755234e-07,-2.568888370755809444e-07,-2.740147595472863654e-07,-2.911406820189917864e-07,-3.082666044906972074e-07,-3.253925269624026284e-07,-3.425184494341080494e-07,-3.596443719058134704e-07,-3.767702943775188913e-07,-3.938962168492243123e-07,-4.110221393209297333e-07,-4.281480617926351543e-07,-4.452739842643405753e-07,-4.623999067360459963e-07,-4.795258292077513644e-07,-4.966517516794567324e-07,-5.137776741511621005e-07,-5.309035966228674686e-07,-5.480295190945728366e-07,-5.651554415662782047e-07,-5.822813640379835727e-07,-5.994072865096889408e-07,-6.165332089813943088e-07,-6.336591314530996769e-07,-6.507850539248050450e-07,-6.679109763965104130e-07,-6.850368988682157811e-07,-7.021628213399211491e-07,-7.192887438116265172e-07,-7.364146662833318852e-07,-7.535405887550372533e-07,-7.706665112267426214e-07,-7.877924336984479894e-07,-8.049183561701533575e-07,-8.220442786418587255e-07,-8.391702011135640936e-07,-8.562961235852694616e-07,-8.734220460569748297e-07,-8.905479685286801978e-07,-9.076738910003855658e-07,-9.247998134720909339e-07,-9.419257359437963019e-07,-9.590516584155016700e-07,-9.761775808872069322e-07,-9.933035033589121943e-07,-1.010429425830617457e-06,-1.027555348302322719e-06,-1.044681270774027981e-06,-1.061807193245733243e-06,-1.078933115717438505e-06 +0.000000000000000000e+00,-1.672941203179073082e-08,-3.345882406358146163e-08,-5.018823609537219245e-08,-6.691764812716292327e-08,-8.364706015895366070e-08,-1.003764721907443981e-07,-1.171058842225351356e-07,-1.338352962543258730e-07,-1.505647082861166104e-07,-1.672941203179073479e-07,-1.840235323496980853e-07,-2.007529443814888227e-07,-2.174823564132795602e-07,-2.342117684450702976e-07,-2.509411804768610086e-07,-2.676705925086516931e-07,-2.844000045404423776e-07,-3.011294165722330621e-07,-3.178588286040237466e-07,-3.345882406358144311e-07,-3.513176526676051155e-07,-3.680470646993958000e-07,-3.847764767311864845e-07,-4.015058887629771690e-07,-4.182353007947678535e-07,-4.349647128265585380e-07,-4.516941248583492225e-07,-4.684235368901399070e-07,-4.851529489219305915e-07,-5.018823609537212760e-07,-5.186117729855119605e-07,-5.353411850173026450e-07,-5.520705970490933295e-07,-5.688000090808840140e-07,-5.855294211126746985e-07,-6.022588331444653830e-07,-6.189882451762560675e-07,-6.357176572080467520e-07,-6.524470692398374365e-07,-6.691764812716281210e-07,-6.859058933034188054e-07,-7.026353053352094899e-07,-7.193647173670001744e-07,-7.360941293987908589e-07,-7.528235414305815434e-07,-7.695529534623722279e-07,-7.862823654941629124e-07,-8.030117775259535969e-07,-8.197411895577442814e-07,-8.364706015895349659e-07,-8.532000136213256504e-07,-8.699294256531163349e-07,-8.866588376849070194e-07,-9.033882497166977039e-07,-9.201176617484883884e-07,-9.368470737802790729e-07,-9.535764858120697574e-07,-9.703058978438603360e-07,-9.870353098756509146e-07,-1.003764721907441493e-06,-1.020494133939232072e-06,-1.037223545971022650e-06,-1.053952958002813229e-06 +0.000000000000000000e+00,-1.902357538812775043e-08,-3.804715077625550085e-08,-5.707072616438325458e-08,-7.609430155251101494e-08,-9.511787694063877529e-08,-1.141414523287665356e-07,-1.331650277168943092e-07,-1.521886031050220828e-07,-1.712121784931498564e-07,-1.902357538812776300e-07,-2.092593292694054036e-07,-2.282829046575331772e-07,-2.473064800456609507e-07,-2.663300554337887243e-07,-2.853536308219164979e-07,-3.043772062100442715e-07,-3.234007815981720451e-07,-3.424243569862998187e-07,-3.614479323744275923e-07,-3.804715077625553658e-07,-3.994950831506831394e-07,-4.185186585388109130e-07,-4.375422339269386866e-07,-4.565658093150664602e-07,-4.755893847031942338e-07,-4.946129600913220074e-07,-5.136365354794497809e-07,-5.326601108675775545e-07,-5.516836862557053281e-07,-5.707072616438331017e-07,-5.897308370319608753e-07,-6.087544124200886489e-07,-6.277779878082164225e-07,-6.468015631963441960e-07,-6.658251385844719696e-07,-6.848487139725997432e-07,-7.038722893607275168e-07,-7.228958647488552904e-07,-7.419194401369830640e-07,-7.609430155251108376e-07,-7.799665909132386112e-07,-7.989901663013663847e-07,-8.180137416894941583e-07,-8.370373170776219319e-07,-8.560608924657497055e-07,-8.750844678538774791e-07,-8.941080432420052527e-07,-9.131316186301330263e-07,-9.321551940182607998e-07,-9.511787694063885734e-07,-9.702023447945163470e-07,-9.892259201826442265e-07,-1.008249495570772106e-06,-1.027273070958899985e-06,-1.046296646347027865e-06,-1.065320221735155744e-06,-1.084343797123283624e-06,-1.103367372511411503e-06,-1.122390947899539383e-06,-1.141414523287667262e-06,-1.160438098675795142e-06,-1.179461674063923021e-06,-1.198485249452050901e-06 +0.000000000000000000e+00,-1.787497508501008102e-08,-3.574995017002016203e-08,-5.362492525503024305e-08,-7.149990034004032406e-08,-8.937487542505041170e-08,-1.072498505100604993e-07,-1.251248255950705870e-07,-1.429998006800806746e-07,-1.608747757650907622e-07,-1.787497508501008499e-07,-1.966247259351109375e-07,-2.144997010201210251e-07,-2.323746761051311128e-07,-2.502496511901411739e-07,-2.681246262751512351e-07,-2.859996013601612963e-07,-3.038745764451713574e-07,-3.217495515301814186e-07,-3.396245266151914797e-07,-3.574995017002015409e-07,-3.753744767852116021e-07,-3.932494518702216632e-07,-4.111244269552317244e-07,-4.289994020402417856e-07,-4.468743771252518467e-07,-4.647493522102619079e-07,-4.826243272952719691e-07,-5.004993023802820302e-07,-5.183742774652920914e-07,-5.362492525503021525e-07,-5.541242276353122137e-07,-5.719992027203222749e-07,-5.898741778053323360e-07,-6.077491528903423972e-07,-6.256241279753524584e-07,-6.434991030603625195e-07,-6.613740781453725807e-07,-6.792490532303826419e-07,-6.971240283153927030e-07,-7.149990034004027642e-07,-7.328739784854128254e-07,-7.507489535704228865e-07,-7.686239286554329477e-07,-7.864989037404430088e-07,-8.043738788254530700e-07,-8.222488539104631312e-07,-8.401238289954731923e-07,-8.579988040804832535e-07,-8.758737791654933147e-07,-8.937487542505033758e-07,-9.116237293355134370e-07,-9.294987044205234982e-07,-9.473736795055335593e-07,-9.652486545905435146e-07,-9.831236296755534699e-07,-1.000998604760563425e-06,-1.018873579845573380e-06,-1.036748554930583336e-06,-1.054623530015593291e-06,-1.072498505100603246e-06,-1.090373480185613202e-06,-1.108248455270623157e-06,-1.126123430355633112e-06 +0.000000000000000000e+00,-1.750865367108095707e-08,-3.501730734216191414e-08,-5.252596101324287122e-08,-7.003461468432382829e-08,-8.754326835540477874e-08,-1.050519220264857292e-07,-1.225605756975666797e-07,-1.400692293686476301e-07,-1.575778830397285806e-07,-1.750865367108095310e-07,-1.925951903818904815e-07,-2.101038440529714319e-07,-2.276124977240523824e-07,-2.451211513951333064e-07,-2.626298050662142039e-07,-2.801384587372951014e-07,-2.976471124083759989e-07,-3.151557660794568964e-07,-3.326644197505377939e-07,-3.501730734216186915e-07,-3.676817270926995890e-07,-3.851903807637804865e-07,-4.026990344348613840e-07,-4.202076881059422815e-07,-4.377163417770231790e-07,-4.552249954481040766e-07,-4.727336491191849741e-07,-4.902423027902658716e-07,-5.077509564613467691e-07,-5.252596101324276666e-07,-5.427682638035085641e-07,-5.602769174745894616e-07,-5.777855711456703592e-07,-5.952942248167512567e-07,-6.128028784878321542e-07,-6.303115321589130517e-07,-6.478201858299939492e-07,-6.653288395010748467e-07,-6.828374931721557443e-07,-7.003461468432366418e-07,-7.178548005143175393e-07,-7.353634541853984368e-07,-7.528721078564793343e-07,-7.703807615275602318e-07,-7.878894151986411293e-07,-8.053980688697220269e-07,-8.229067225408029244e-07,-8.404153762118838219e-07,-8.579240298829647194e-07,-8.754326835540456169e-07,-8.929413372251265144e-07,-9.104499908962074119e-07,-9.279586445672883095e-07,-9.454672982383692070e-07,-9.629759519094499986e-07,-9.804846055805306844e-07,-9.979932592516113701e-07,-1.015501912922692056e-06,-1.033010566593772742e-06,-1.050519220264853427e-06,-1.068027873935934113e-06,-1.085536527607014799e-06,-1.103045181278095485e-06 +0.000000000000000000e+00,-1.994878615011378960e-08,-3.989757230022757919e-08,-5.984635845034136548e-08,-7.979514460045514515e-08,-9.974393075056892483e-08,-1.196927169006827045e-07,-1.396415030507964842e-07,-1.595902892009102638e-07,-1.795390753510240435e-07,-1.994878615011378232e-07,-2.194366476512516029e-07,-2.393854338013653561e-07,-2.593342199514791357e-07,-2.792830061015929154e-07,-2.992317922517066951e-07,-3.191805784018204747e-07,-3.391293645519342544e-07,-3.590781507020480341e-07,-3.790269368521618138e-07,-3.989757230022755934e-07,-4.189245091523893731e-07,-4.388732953025031528e-07,-4.588220814526169324e-07,-4.787708676027307121e-07,-4.987196537528444918e-07,-5.186684399029582715e-07,-5.386172260530720511e-07,-5.585660122031858308e-07,-5.785147983532996105e-07,-5.984635845034133901e-07,-6.184123706535271698e-07,-6.383611568036409495e-07,-6.583099429537547291e-07,-6.782587291038685088e-07,-6.982075152539822885e-07,-7.181563014040960682e-07,-7.381050875542098478e-07,-7.580538737043236275e-07,-7.780026598544374072e-07,-7.979514460045511868e-07,-8.179002321546649665e-07,-8.378490183047787462e-07,-8.577978044548925259e-07,-8.777465906050063055e-07,-8.976953767551200852e-07,-9.176441629052338649e-07,-9.375929490553476445e-07,-9.575417352054614242e-07,-9.774905213555753098e-07,-9.974393075056891953e-07,-1.017388093655803081e-06,-1.037336879805916966e-06,-1.057285665956030852e-06,-1.077234452106144738e-06,-1.097183238256258623e-06,-1.117132024406372509e-06,-1.137080810556486394e-06,-1.157029596706600280e-06,-1.176978382856714165e-06,-1.196927169006828051e-06,-1.216875955156941936e-06,-1.236824741307055822e-06,-1.256773527457169707e-06 +0.000000000000000000e+00,-1.787497508500823144e-08,-3.574995017001646288e-08,-5.362492525502469101e-08,-7.149990034003291253e-08,-8.937487542504113404e-08,-1.072498505100493556e-07,-1.251248255950575638e-07,-1.429998006800657721e-07,-1.608747757650739804e-07,-1.787497508500821887e-07,-1.966247259350903969e-07,-2.144997010200986052e-07,-2.323746761051068135e-07,-2.502496511901150218e-07,-2.681246262751232301e-07,-2.859996013601314383e-07,-3.038745764451396466e-07,-3.217495515301478549e-07,-3.396245266151560632e-07,-3.574995017001642715e-07,-3.753744767851724797e-07,-3.932494518701806880e-07,-4.111244269551888963e-07,-4.289994020401971046e-07,-4.468743771252053129e-07,-4.647493522102135211e-07,-4.826243272952217824e-07,-5.004993023802300436e-07,-5.183742774652383048e-07,-5.362492525502465660e-07,-5.541242276352548272e-07,-5.719992027202630884e-07,-5.898741778052713497e-07,-6.077491528902796109e-07,-6.256241279752878721e-07,-6.434991030602961333e-07,-6.613740781453043945e-07,-6.792490532303126558e-07,-6.971240283153209170e-07,-7.149990034003291782e-07,-7.328739784853374394e-07,-7.507489535703457006e-07,-7.686239286553539619e-07,-7.864989037403622231e-07,-8.043738788253704843e-07,-8.222488539103787455e-07,-8.401238289953870067e-07,-8.579988040803952679e-07,-8.758737791654035292e-07,-8.937487542504117904e-07,-9.116237293354200516e-07,-9.294987044204283128e-07,-9.473736795054365740e-07,-9.652486545904448353e-07,-9.831236296754530965e-07,-1.000998604760461358e-06,-1.018873579845469619e-06,-1.036748554930477880e-06,-1.054623530015486141e-06,-1.072498505100494403e-06,-1.090373480185502664e-06,-1.108248455270510925e-06,-1.126123430355519186e-06 +0.000000000000000000e+00,-1.750865367107919021e-08,-3.501730734215838043e-08,-5.252596101323757064e-08,-7.003461468431676086e-08,-8.754326835539595107e-08,-1.050519220264751413e-07,-1.225605756975543183e-07,-1.400692293686334952e-07,-1.575778830397126722e-07,-1.750865367107918492e-07,-1.925951903818710262e-07,-2.101038440529502032e-07,-2.276124977240293801e-07,-2.451211513951085307e-07,-2.626298050661876812e-07,-2.801384587372668317e-07,-2.976471124083459822e-07,-3.151557660794251327e-07,-3.326644197505042832e-07,-3.501730734215834337e-07,-3.676817270926625842e-07,-3.851903807637417347e-07,-4.026990344348208852e-07,-4.202076881059000358e-07,-4.377163417769791863e-07,-4.552249954480583368e-07,-4.727336491191374873e-07,-4.902423027902166378e-07,-5.077509564612958412e-07,-5.252596101323750447e-07,-5.427682638034542481e-07,-5.602769174745334516e-07,-5.777855711456126550e-07,-5.952942248166918585e-07,-6.128028784877710619e-07,-6.303115321588502654e-07,-6.478201858299294688e-07,-6.653288395010086723e-07,-6.828374931720878757e-07,-7.003461468431670792e-07,-7.178548005142462826e-07,-7.353634541853254861e-07,-7.528721078564046895e-07,-7.703807615274838930e-07,-7.878894151985630964e-07,-8.053980688696422999e-07,-8.229067225407215033e-07,-8.404153762118007068e-07,-8.579240298828799102e-07,-8.754326835539591137e-07,-8.929413372250383171e-07,-9.104499908961175206e-07,-9.279586445671967240e-07,-9.454672982382759275e-07,-9.629759519093551309e-07,-9.804846055804343344e-07,-9.979932592515135378e-07,-1.015501912922592741e-06,-1.033010566593671945e-06,-1.050519220264751148e-06,-1.068027873935830352e-06,-1.085536527606909555e-06,-1.103045181277988759e-06 +0.000000000000000000e+00,-1.994878615011154959e-08,-3.989757230022309918e-08,-5.984635845033464216e-08,-7.979514460044618513e-08,-9.974393075055772811e-08,-1.196927169006692843e-07,-1.396415030507808405e-07,-1.595902892008923967e-07,-1.795390753510039529e-07,-1.994878615011155092e-07,-2.194366476512270654e-07,-2.393854338013386216e-07,-2.593342199514501778e-07,-2.792830061015617340e-07,-2.992317922516732902e-07,-3.191805784017848464e-07,-3.391293645518964026e-07,-3.590781507020079588e-07,-3.790269368521195150e-07,-3.989757230022310713e-07,-4.189245091523426275e-07,-4.388732953024541837e-07,-4.588220814525657399e-07,-4.787708676026773490e-07,-4.987196537527889052e-07,-5.186684399029004615e-07,-5.386172260530120177e-07,-5.585660122031235739e-07,-5.785147983532351301e-07,-5.984635845033466863e-07,-6.184123706534582425e-07,-6.383611568035697987e-07,-6.583099429536813549e-07,-6.782587291037929111e-07,-6.982075152539044673e-07,-7.181563014040160235e-07,-7.381050875541275798e-07,-7.580538737042391360e-07,-7.780026598543506922e-07,-7.979514460044622484e-07,-8.179002321545738046e-07,-8.378490183046853608e-07,-8.577978044547969170e-07,-8.777465906049084732e-07,-8.976953767550200294e-07,-9.176441629051315856e-07,-9.375929490552431419e-07,-9.575417352053546981e-07,-9.774905213554662543e-07,-9.974393075055778105e-07,-1.017388093655689367e-06,-1.037336879805800923e-06,-1.057285665955912479e-06,-1.077234452106024035e-06,-1.097183238256135592e-06,-1.117132024406247148e-06,-1.137080810556358704e-06,-1.157029596706470260e-06,-1.176978382856581816e-06,-1.196927169006693373e-06,-1.216875955156804929e-06,-1.236824741306916485e-06,-1.256773527457028041e-06 +0.000000000000000000e+00,-1.859364391098326935e-08,-3.718728782196653869e-08,-5.578093173294980804e-08,-7.437457564393307738e-08,-9.296821955491634011e-08,-1.115618634658996028e-07,-1.301555073768828656e-07,-1.487491512878661283e-07,-1.673427951988493910e-07,-1.859364391098326537e-07,-2.045300830208159165e-07,-2.231237269317991792e-07,-2.417173708427824419e-07,-2.603110147537657311e-07,-2.789046586647490203e-07,-2.974983025757323095e-07,-3.160919464867155987e-07,-3.346855903976988879e-07,-3.532792343086821771e-07,-3.718728782196654663e-07,-3.904665221306487555e-07,-4.090601660416320447e-07,-4.276538099526153339e-07,-4.462474538635986231e-07,-4.648410977745819123e-07,-4.834347416855652015e-07,-5.020283855965485436e-07,-5.206220295075318858e-07,-5.392156734185152279e-07,-5.578093173294985700e-07,-5.764029612404819122e-07,-5.949966051514652543e-07,-6.135902490624485965e-07,-6.321838929734319386e-07,-6.507775368844152807e-07,-6.693711807953986229e-07,-6.879648247063819650e-07,-7.065584686173653071e-07,-7.251521125283486493e-07,-7.437457564393319914e-07,-7.623394003503153335e-07,-7.809330442612986757e-07,-7.995266881722820178e-07,-8.181203320832653600e-07,-8.367139759942487021e-07,-8.553076199052320442e-07,-8.739012638162153864e-07,-8.924949077271987285e-07,-9.110885516381820706e-07,-9.296821955491654128e-07,-9.482758394601487549e-07,-9.668694833711320971e-07,-9.854631272821154392e-07,-1.004056771193098781e-06,-1.022650415104082123e-06,-1.041244059015065466e-06,-1.059837702926048808e-06,-1.078431346837032150e-06,-1.097024990748015492e-06,-1.115618634658998834e-06,-1.134212278569982176e-06,-1.152805922480965518e-06,-1.171399566391948861e-06 +0.000000000000000000e+00,-1.859667712780961599e-08,-3.719335425561923198e-08,-5.579003138342884466e-08,-7.438670851123845072e-08,-9.298338563904805678e-08,-1.115800627668576628e-07,-1.301767398946672689e-07,-1.487734170224768750e-07,-1.673700941502864810e-07,-1.859667712780960871e-07,-2.045634484059056932e-07,-2.231601255337152992e-07,-2.417568026615249053e-07,-2.603534797893345378e-07,-2.789501569171441703e-07,-2.975468340449538029e-07,-3.161435111727634354e-07,-3.347401883005730679e-07,-3.533368654283827005e-07,-3.719335425561923330e-07,-3.905302196840019655e-07,-4.091268968118115981e-07,-4.277235739396212306e-07,-4.463202510674308631e-07,-4.649169281952404957e-07,-4.835136053230501282e-07,-5.021102824508598137e-07,-5.207069595786694991e-07,-5.393036367064791846e-07,-5.579003138342888701e-07,-5.764969909620985555e-07,-5.950936680899082410e-07,-6.136903452177179265e-07,-6.322870223455276120e-07,-6.508836994733372974e-07,-6.694803766011469829e-07,-6.880770537289566684e-07,-7.066737308567663538e-07,-7.252704079845760393e-07,-7.438670851123857248e-07,-7.624637622401954103e-07,-7.810604393680050957e-07,-7.996571164958147812e-07,-8.182537936236244667e-07,-8.368504707514341521e-07,-8.554471478792438376e-07,-8.740438250070535231e-07,-8.926405021348632086e-07,-9.112371792626728940e-07,-9.298338563904825795e-07,-9.484305335182922650e-07,-9.670272106461019504e-07,-9.856238877739116359e-07,-1.004220564901721321e-06,-1.022817242029531007e-06,-1.041413919157340692e-06,-1.060010596285150378e-06,-1.078607273412960063e-06,-1.097203950540769749e-06,-1.115800627668579434e-06,-1.134397304796389120e-06,-1.152993981924198805e-06,-1.171590659052008491e-06 +0.000000000000000000e+00,-1.823125525424563592e-08,-3.646251050849127184e-08,-5.469376576273691106e-08,-7.292502101698255691e-08,-9.115627627122820275e-08,-1.093875315254738486e-07,-1.276187867797194944e-07,-1.458500420339651403e-07,-1.640812972882107861e-07,-1.823125525424564320e-07,-2.005438077967020778e-07,-2.187750630509477237e-07,-2.370063183051933695e-07,-2.552375735594390418e-07,-2.734688288136847406e-07,-2.917000840679304394e-07,-3.099313393221761382e-07,-3.281625945764218370e-07,-3.463938498306675357e-07,-3.646251050849132345e-07,-3.828563603391589333e-07,-4.010876155934046321e-07,-4.193188708476503309e-07,-4.375501261018960297e-07,-4.557813813561417284e-07,-4.740126366103874272e-07,-4.922438918646331260e-07,-5.104751471188788248e-07,-5.287064023731245236e-07,-5.469376576273702224e-07,-5.651689128816159211e-07,-5.834001681358616199e-07,-6.016314233901073187e-07,-6.198626786443530175e-07,-6.380939338985987163e-07,-6.563251891528444151e-07,-6.745564444070901138e-07,-6.927876996613358126e-07,-7.110189549155815114e-07,-7.292502101698272102e-07,-7.474814654240729090e-07,-7.657127206783186078e-07,-7.839439759325643065e-07,-8.021752311868100053e-07,-8.204064864410557041e-07,-8.386377416953014029e-07,-8.568689969495471017e-07,-8.751002522037928005e-07,-8.933315074580384992e-07,-9.115627627122841980e-07,-9.297940179665298968e-07,-9.480252732207755956e-07,-9.662565284750214003e-07,-9.844877837292673108e-07,-1.002719038983513221e-06,-1.020950294237759132e-06,-1.039181549492005042e-06,-1.057412804746250953e-06,-1.075644060000496864e-06,-1.093875315254742774e-06,-1.112106570508988685e-06,-1.130337825763234595e-06,-1.148569081017480506e-06 +0.000000000000000000e+00,-2.083090753582352309e-08,-4.166181507164704618e-08,-6.249272260747056266e-08,-8.332363014329407913e-08,-1.041545376791175956e-07,-1.249854452149411253e-07,-1.458163527507646550e-07,-1.666472602865881847e-07,-1.874781678224117144e-07,-2.083090753582352442e-07,-2.291399828940587739e-07,-2.499708904298823036e-07,-2.708017979657058333e-07,-2.916327055015293630e-07,-3.124636130373528927e-07,-3.332945205731764224e-07,-3.541254281089999521e-07,-3.749563356448234818e-07,-3.957872431806470115e-07,-4.166181507164705412e-07,-4.374490582522940709e-07,-4.582799657881176007e-07,-4.791108733239411304e-07,-4.999417808597647130e-07,-5.207726883955882957e-07,-5.416035959314118783e-07,-5.624345034672354610e-07,-5.832654110030590436e-07,-6.040963185388826263e-07,-6.249272260747062089e-07,-6.457581336105297916e-07,-6.665890411463533742e-07,-6.874199486821769569e-07,-7.082508562180005395e-07,-7.290817637538241221e-07,-7.499126712896477048e-07,-7.707435788254712874e-07,-7.915744863612948701e-07,-8.124053938971184527e-07,-8.332363014329420354e-07,-8.540672089687656180e-07,-8.748981165045892007e-07,-8.957290240404127833e-07,-9.165599315762363660e-07,-9.373908391120599486e-07,-9.582217466478835313e-07,-9.790526541837071139e-07,-9.998835617195306966e-07,-1.020714469255354279e-06,-1.041545376791177862e-06,-1.062376284327001445e-06,-1.083207191862825027e-06,-1.104038099398648610e-06,-1.124869006934472192e-06,-1.145699914470295775e-06,-1.166530822006119358e-06,-1.187361729541942940e-06,-1.208192637077766523e-06,-1.229023544613590106e-06,-1.249854452149413688e-06,-1.270685359685237271e-06,-1.291516267221060854e-06,-1.312347174756884436e-06 +0.000000000000000000e+00,-1.859603345945772319e-08,-3.719206691891544638e-08,-5.578810037837316626e-08,-7.438413383783087952e-08,-9.298016729728859278e-08,-1.115762007567463060e-07,-1.301722342162040061e-07,-1.487682676756617061e-07,-1.673643011351194061e-07,-1.859603345945771062e-07,-2.045563680540348062e-07,-2.231524015134925062e-07,-2.417484349729502062e-07,-2.603444684324079063e-07,-2.789405018918656063e-07,-2.975365353513233063e-07,-3.161325688107810064e-07,-3.347286022702387064e-07,-3.533246357296964064e-07,-3.719206691891541064e-07,-3.905167026486118065e-07,-4.091127361080695065e-07,-4.277087695675272065e-07,-4.463048030269849065e-07,-4.649008364864426066e-07,-4.834968699459003066e-07,-5.020929034053580066e-07,-5.206889368648157067e-07,-5.392849703242734067e-07,-5.578810037837311067e-07,-5.764770372431888067e-07,-5.950730707026465068e-07,-6.136691041621042068e-07,-6.322651376215619068e-07,-6.508611710810196069e-07,-6.694572045404773069e-07,-6.880532379999350069e-07,-7.066492714593927069e-07,-7.252453049188504070e-07,-7.438413383783081070e-07,-7.624373718377658070e-07,-7.810334052972235070e-07,-7.996294387566812071e-07,-8.182254722161389071e-07,-8.368215056755966071e-07,-8.554175391350543072e-07,-8.740135725945120072e-07,-8.926096060539697072e-07,-9.112056395134274072e-07,-9.298016729728851073e-07,-9.483977064323428073e-07,-9.669937398918004014e-07,-9.855897733512579956e-07,-1.004185806810715590e-06,-1.022781840270173184e-06,-1.041377873729630778e-06,-1.059973907189088372e-06,-1.078569940648545966e-06,-1.097165974108003560e-06,-1.115762007567461155e-06,-1.134358041026918749e-06,-1.152954074486376343e-06,-1.171550107945833937e-06 +0.000000000000000000e+00,-2.082824449192169439e-08,-4.165648898384338879e-08,-6.248473347576508318e-08,-8.331297796768677757e-08,-1.041412224596084720e-07,-1.249694669515301664e-07,-1.457977114434518740e-07,-1.666259559353735816e-07,-1.874542004272952892e-07,-2.082824449192169969e-07,-2.291106894111387045e-07,-2.499389339030603856e-07,-2.707671783949820668e-07,-2.915954228869037480e-07,-3.124236673788254291e-07,-3.332519118707471103e-07,-3.540801563626687914e-07,-3.749084008545904726e-07,-3.957366453465121538e-07,-4.165648898384338349e-07,-4.373931343303555161e-07,-4.582213788222771972e-07,-4.790496233141989313e-07,-4.998778678061206654e-07,-5.207061122980423995e-07,-5.415343567899641336e-07,-5.623626012818858677e-07,-5.831908457738076018e-07,-6.040190902657293359e-07,-6.248473347576510700e-07,-6.456755792495728041e-07,-6.665038237414945382e-07,-6.873320682334162723e-07,-7.081603127253380064e-07,-7.289885572172597405e-07,-7.498168017091814746e-07,-7.706450462011032087e-07,-7.914732906930249428e-07,-8.123015351849466769e-07,-8.331297796768684110e-07,-8.539580241687901451e-07,-8.747862686607118792e-07,-8.956145131526336133e-07,-9.164427576445553474e-07,-9.372710021364770815e-07,-9.580992466283987097e-07,-9.789274911203203379e-07,-9.997557356122419661e-07,-1.020583980104163594e-06,-1.041412224596085223e-06,-1.062240469088006851e-06,-1.083068713579928479e-06,-1.103896958071850107e-06,-1.124725202563771735e-06,-1.145553447055693364e-06,-1.166381691547614992e-06,-1.187209936039536620e-06,-1.208038180531458248e-06,-1.228866425023379877e-06,-1.249694669515301505e-06,-1.270522914007223133e-06,-1.291351158499144761e-06,-1.312179402991066389e-06 +0.000000000000000000e+00,-1.859364391098148925e-08,-3.718728782196297850e-08,-5.578093173294446776e-08,-7.437457564392595701e-08,-9.296821955490744626e-08,-1.115618634658889355e-07,-1.301555073768704248e-07,-1.487491512878519140e-07,-1.673427951988334033e-07,-1.859364391098148925e-07,-2.045300830207963818e-07,-2.231237269317778710e-07,-2.417173708427593603e-07,-2.603110147537408495e-07,-2.789046586647223388e-07,-2.974983025757038280e-07,-3.160919464866853173e-07,-3.346855903976668065e-07,-3.532792343086482958e-07,-3.718728782196297850e-07,-3.904665221306112743e-07,-4.090601660415927636e-07,-4.276538099525742528e-07,-4.462474538635557421e-07,-4.648410977745372313e-07,-4.834347416855187206e-07,-5.020283855965002628e-07,-5.206220295074818049e-07,-5.392156734184633471e-07,-5.578093173294448893e-07,-5.764029612404264315e-07,-5.949966051514079737e-07,-6.135902490623895159e-07,-6.321838929733710581e-07,-6.507775368843526003e-07,-6.693711807953341425e-07,-6.879648247063156847e-07,-7.065584686172972269e-07,-7.251521125282787691e-07,-7.437457564392603112e-07,-7.623394003502418534e-07,-7.809330442612233956e-07,-7.995266881722049378e-07,-8.181203320831864800e-07,-8.367139759941680222e-07,-8.553076199051495644e-07,-8.739012638161311066e-07,-8.924949077271126488e-07,-9.110885516380941910e-07,-9.296821955490757332e-07,-9.482758394600572754e-07,-9.668694833710389234e-07,-9.854631272820205715e-07,-1.004056771193002220e-06,-1.022650415103983868e-06,-1.041244059014965516e-06,-1.059837702925947164e-06,-1.078431346836928812e-06,-1.097024990747910460e-06,-1.115618634658892108e-06,-1.134212278569873756e-06,-1.152805922480855404e-06,-1.171399566391837052e-06 +0.000000000000000000e+00,-1.859603345945680998e-08,-3.719206691891361996e-08,-5.578810037837042664e-08,-7.438413383782722669e-08,-9.298016729728402675e-08,-1.115762007567408268e-07,-1.301722342161976269e-07,-1.487682676756544269e-07,-1.673643011351112270e-07,-1.859603345945680270e-07,-2.045563680540248271e-07,-2.231524015134816271e-07,-2.417484349729384537e-07,-2.603444684323953067e-07,-2.789405018918521596e-07,-2.975365353513090126e-07,-3.161325688107658656e-07,-3.347286022702227186e-07,-3.533246357296795716e-07,-3.719206691891364246e-07,-3.905167026485932776e-07,-4.091127361080501306e-07,-4.277087695675069836e-07,-4.463048030269638366e-07,-4.649008364864206896e-07,-4.834968699458775426e-07,-5.020929034053343956e-07,-5.206889368647912486e-07,-5.392849703242481016e-07,-5.578810037837049546e-07,-5.764770372431618076e-07,-5.950730707026186606e-07,-6.136691041620755136e-07,-6.322651376215323666e-07,-6.508611710809892195e-07,-6.694572045404460725e-07,-6.880532379999029255e-07,-7.066492714593597785e-07,-7.252453049188166315e-07,-7.438413383782734845e-07,-7.624373718377303375e-07,-7.810334052971871905e-07,-7.996294387566440435e-07,-8.182254722161008965e-07,-8.368215056755577495e-07,-8.554175391350146025e-07,-8.740135725944714555e-07,-8.926096060539283085e-07,-9.112056395133851615e-07,-9.298016729728420145e-07,-9.483977064322988675e-07,-9.669937398917557205e-07,-9.855897733512124676e-07,-1.004185806810669215e-06,-1.022781840270125962e-06,-1.041377873729582709e-06,-1.059973907189039456e-06,-1.078569940648496203e-06,-1.097165974107952950e-06,-1.115762007567409697e-06,-1.134358041026866445e-06,-1.152954074486323192e-06,-1.171550107945779939e-06 +0.000000000000000000e+00,-1.823125525424384921e-08,-3.646251050848769842e-08,-5.469376576273155093e-08,-7.292502101697541007e-08,-9.115627627121926920e-08,-1.093875315254631283e-07,-1.276187867797069742e-07,-1.458500420339508201e-07,-1.640812972881946660e-07,-1.823125525424385119e-07,-2.005438077966823578e-07,-2.187750630509262037e-07,-2.370063183051700496e-07,-2.552375735594138955e-07,-2.734688288136577414e-07,-2.917000840679015873e-07,-3.099313393221454332e-07,-3.281625945763892791e-07,-3.463938498306331250e-07,-3.646251050848769709e-07,-3.828563603391208168e-07,-4.010876155933646627e-07,-4.193188708476085086e-07,-4.375501261018523545e-07,-4.557813813560962004e-07,-4.740126366103400463e-07,-4.922438918645838922e-07,-5.104751471188276852e-07,-5.287064023730714781e-07,-5.469376576273152711e-07,-5.651689128815590641e-07,-5.834001681358028570e-07,-6.016314233900466500e-07,-6.198626786442904429e-07,-6.380939338985342359e-07,-6.563251891527780288e-07,-6.745564444070218218e-07,-6.927876996612656148e-07,-7.110189549155094077e-07,-7.292502101697532007e-07,-7.474814654239969936e-07,-7.657127206782407866e-07,-7.839439759324845796e-07,-8.021752311867283725e-07,-8.204064864409721655e-07,-8.386377416952159584e-07,-8.568689969494597514e-07,-8.751002522037035444e-07,-8.933315074579473373e-07,-9.115627627121911303e-07,-9.297940179664349232e-07,-9.480252732206787162e-07,-9.662565284749225092e-07,-9.844877837291663021e-07,-1.002719038983410095e-06,-1.020950294237653888e-06,-1.039181549491897681e-06,-1.057412804746141474e-06,-1.075644060000385267e-06,-1.093875315254629060e-06,-1.112106570508872853e-06,-1.130337825763116646e-06,-1.148569081017360439e-06 +0.000000000000000000e+00,-2.083090753582092244e-08,-4.166181507164184487e-08,-6.249272260746276731e-08,-8.332363014328368974e-08,-1.041545376791046122e-07,-1.249854452149255346e-07,-1.458163527507464438e-07,-1.666472602865673530e-07,-1.874781678223882622e-07,-2.083090753582091714e-07,-2.291399828940300806e-07,-2.499708904298510163e-07,-2.708017979656719520e-07,-2.916327055014928876e-07,-3.124636130373138233e-07,-3.332945205731347590e-07,-3.541254281089556946e-07,-3.749563356447766303e-07,-3.957872431805975660e-07,-4.166181507164185017e-07,-4.374490582522394373e-07,-4.582799657880603730e-07,-4.791108733238813087e-07,-4.999417808597022443e-07,-5.207726883955231800e-07,-5.416035959313441157e-07,-5.624345034671650513e-07,-5.832654110029859870e-07,-6.040963185388069227e-07,-6.249272260746278584e-07,-6.457581336104487940e-07,-6.665890411462697297e-07,-6.874199486820906654e-07,-7.082508562179116010e-07,-7.290817637537325367e-07,-7.499126712895534724e-07,-7.707435788253744081e-07,-7.915744863611953437e-07,-8.124053938970162794e-07,-8.332363014328372151e-07,-8.540672089686581507e-07,-8.748981165044790864e-07,-8.957290240403000221e-07,-9.165599315761209577e-07,-9.373908391119418934e-07,-9.582217466477628291e-07,-9.790526541835838706e-07,-9.998835617194049122e-07,-1.020714469255225954e-06,-1.041545376791046995e-06,-1.062376284326868037e-06,-1.083207191862689078e-06,-1.104038099398510120e-06,-1.124869006934331161e-06,-1.145699914470152203e-06,-1.166530822005973245e-06,-1.187361729541794286e-06,-1.208192637077615328e-06,-1.229023544613436369e-06,-1.249854452149257411e-06,-1.270685359685078452e-06,-1.291516267220899494e-06,-1.312347174756720535e-06 +0.000000000000000000e+00,-1.072066736070670277e-08,-2.144133472141340554e-08,-3.216200208212010997e-08,-4.288266944282681771e-08,-5.360333680353352544e-08,-6.432400416424023318e-08,-7.504467152494694091e-08,-8.576533888565364865e-08,-9.648600624636035638e-08,-1.072066736070670641e-07,-1.179273409677737719e-07,-1.286480083284804928e-07,-1.393686756891872138e-07,-1.500893430498939348e-07,-1.608100104106006557e-07,-1.715306777713073767e-07,-1.822513451320140977e-07,-1.929720124927208186e-07,-2.036926798534275396e-07,-2.144133472141342606e-07,-2.251340145748409816e-07,-2.358546819355477025e-07,-2.465753492962544235e-07,-2.572960166569611445e-07,-2.680166840176678654e-07,-2.787373513783745864e-07,-2.894580187390813074e-07,-3.001786860997880283e-07,-3.108993534604947493e-07,-3.216200208212014703e-07,-3.323406881819081913e-07,-3.430613555426149122e-07,-3.537820229033216332e-07,-3.645026902640283542e-07,-3.752233576247350751e-07,-3.859440249854417961e-07,-3.966646923461485171e-07,-4.073853597068552381e-07,-4.181060270675619590e-07,-4.288266944282686800e-07,-4.395473617889754010e-07,-4.502680291496821219e-07,-4.609886965103888429e-07,-4.717093638710955639e-07,-4.824300312318022319e-07,-4.931506985925089529e-07,-5.038713659532156738e-07,-5.145920333139223948e-07,-5.253127006746291158e-07,-5.360333680353358368e-07,-5.467540353960425577e-07,-5.574747027567492787e-07,-5.681953701174559997e-07,-5.789160374781627206e-07,-5.896367048388694416e-07,-6.003573721995761626e-07,-6.110780395602828835e-07,-6.217987069209896045e-07,-6.325193742816963255e-07,-6.432400416424030465e-07,-6.539607090031097674e-07,-6.646813763638164884e-07,-6.754020437245232094e-07 +0.000000000000000000e+00,-1.292807672935054493e-08,-2.585615345870108986e-08,-3.878423018805163645e-08,-5.171230691740218634e-08,-6.464038364675273624e-08,-7.756846037610328613e-08,-9.049653710545383603e-08,-1.034246138348043859e-07,-1.163526905641549358e-07,-1.292807672935054725e-07,-1.422088440228560091e-07,-1.551369207522065458e-07,-1.680649974815570825e-07,-1.809930742109076191e-07,-1.939211509402581558e-07,-2.068492276696086924e-07,-2.197773043989592291e-07,-2.327053811283097658e-07,-2.456334578576603024e-07,-2.585615345870108391e-07,-2.714896113163613757e-07,-2.844176880457119124e-07,-2.973457647750624491e-07,-3.102738415044129857e-07,-3.232019182337635224e-07,-3.361299949631140590e-07,-3.490580716924645957e-07,-3.619861484218151323e-07,-3.749142251511656690e-07,-3.878423018805162057e-07,-4.007703786098667423e-07,-4.136984553392172790e-07,-4.266265320685678156e-07,-4.395546087979183523e-07,-4.524826855272688890e-07,-4.654107622566194256e-07,-4.783388389859699623e-07,-4.912669157153204989e-07,-5.041949924446710356e-07,-5.171230691740215723e-07,-5.300511459033721089e-07,-5.429792226327226456e-07,-5.559072993620731822e-07,-5.688353760914237189e-07,-5.817634528207742556e-07,-5.946915295501247922e-07,-6.076196062794753289e-07,-6.205476830088258655e-07,-6.334757597381764022e-07,-6.464038364675269389e-07,-6.593319131968774755e-07,-6.722599899262280122e-07,-6.851880666555785488e-07,-6.981161433849290855e-07,-7.110442201142796222e-07,-7.239722968436301588e-07,-7.369003735729806955e-07,-7.498284503023312321e-07,-7.627565270316817688e-07,-7.756846037610323055e-07,-7.886126804903828421e-07,-8.015407572197333788e-07,-8.144688339490839154e-07 +0.000000000000000000e+00,-1.294641797345762685e-08,-2.589283594691525371e-08,-3.883925392037288387e-08,-5.178567189383051403e-08,-6.473208986728814419e-08,-7.767850784074576774e-08,-9.062492581420339128e-08,-1.035713437876610148e-07,-1.165177617611186384e-07,-1.294641797345762619e-07,-1.424105977080338987e-07,-1.553570156814915355e-07,-1.683034336549491723e-07,-1.812498516284068090e-07,-1.941962696018644458e-07,-2.071426875753220826e-07,-2.200891055487797194e-07,-2.330355235222373562e-07,-2.459819414956949929e-07,-2.589283594691526297e-07,-2.718747774426102665e-07,-2.848211954160679033e-07,-2.977676133895255401e-07,-3.107140313629831768e-07,-3.236604493364408136e-07,-3.366068673098984504e-07,-3.495532852833560872e-07,-3.624997032568137239e-07,-3.754461212302713607e-07,-3.883925392037289975e-07,-4.013389571771866343e-07,-4.142853751506442711e-07,-4.272317931241019078e-07,-4.401782110975595446e-07,-4.531246290710171814e-07,-4.660710470444748182e-07,-4.790174650179324550e-07,-4.919638829913900917e-07,-5.049103009648477285e-07,-5.178567189383053653e-07,-5.308031369117630021e-07,-5.437495548852206389e-07,-5.566959728586782756e-07,-5.696423908321359124e-07,-5.825888088055935492e-07,-5.955352267790511860e-07,-6.084816447525088228e-07,-6.214280627259664595e-07,-6.343744806994240963e-07,-6.473208986728817331e-07,-6.602673166463393699e-07,-6.732137346197970067e-07,-6.861601525932546434e-07,-6.991065705667122802e-07,-7.120529885401699170e-07,-7.249994065136275538e-07,-7.379458244870851906e-07,-7.508922424605428273e-07,-7.638386604340004641e-07,-7.767850784074581009e-07,-7.897314963809157377e-07,-8.026779143543733745e-07,-8.156243323278310112e-07 +0.000000000000000000e+00,-1.139203556083825569e-08,-2.278407112167651138e-08,-3.417610668251476541e-08,-4.556814224335301614e-08,-5.696017780419126686e-08,-6.835221336502951759e-08,-7.974424892586776170e-08,-9.113628448670600581e-08,-1.025283200475442499e-07,-1.139203556083824940e-07,-1.253123911692207381e-07,-1.367044267300589822e-07,-1.480964622908972263e-07,-1.594884978517354705e-07,-1.708805334125737146e-07,-1.822725689734119587e-07,-1.936646045342502028e-07,-2.050566400950884469e-07,-2.164486756559266910e-07,-2.278407112167649351e-07,-2.392327467776032057e-07,-2.506247823384414763e-07,-2.620168178992797468e-07,-2.734088534601180174e-07,-2.848008890209562880e-07,-2.961929245817945586e-07,-3.075849601426328291e-07,-3.189769957034710997e-07,-3.303690312643093703e-07,-3.417610668251476409e-07,-3.531531023859859115e-07,-3.645451379468241820e-07,-3.759371735076624526e-07,-3.873292090685007232e-07,-3.987212446293389938e-07,-4.101132801901772644e-07,-4.215053157510155349e-07,-4.328973513118538055e-07,-4.442893868726920761e-07,-4.556814224335303467e-07,-4.670734579943686172e-07,-4.784654935552068349e-07,-4.898575291160450525e-07,-5.012495646768832702e-07,-5.126416002377214878e-07,-5.240336357985597054e-07,-5.354256713593979231e-07,-5.468177069202361407e-07,-5.582097424810743583e-07,-5.696017780419125760e-07,-5.809938136027507936e-07,-5.923858491635890113e-07,-6.037778847244272289e-07,-6.151699202852654465e-07,-6.265619558461036642e-07,-6.379539914069418818e-07,-6.493460269677800995e-07,-6.607380625286183171e-07,-6.721300980894565347e-07,-6.835221336502947524e-07,-6.949141692111329700e-07,-7.063062047719711876e-07,-7.176982403328094053e-07 +0.000000000000000000e+00,-1.386229091982816158e-08,-2.772458183965632315e-08,-4.158687275948448142e-08,-5.544916367931263969e-08,-6.931145459914079795e-08,-8.317374551896896284e-08,-9.703603643879712772e-08,-1.108983273586252926e-07,-1.247606182784534575e-07,-1.386229091982816224e-07,-1.524852001181097873e-07,-1.663474910379379521e-07,-1.802097819577661170e-07,-1.940720728775942819e-07,-2.079343637974224468e-07,-2.217966547172506117e-07,-2.356589456370787766e-07,-2.495212365569069679e-07,-2.633835274767351857e-07,-2.772458183965634036e-07,-2.911081093163916214e-07,-3.049704002362198392e-07,-3.188326911560480570e-07,-3.326949820758762749e-07,-3.465572729957044927e-07,-3.604195639155327105e-07,-3.742818548353609283e-07,-3.881441457551891462e-07,-4.020064366750173640e-07,-4.158687275948455818e-07,-4.297310185146737996e-07,-4.435933094345020175e-07,-4.574556003543302353e-07,-4.713178912741584531e-07,-4.851801821939866709e-07,-4.990424731138148888e-07,-5.129047640336431066e-07,-5.267670549534713244e-07,-5.406293458732995422e-07,-5.544916367931277601e-07,-5.683539277129559779e-07,-5.822162186327841957e-07,-5.960785095526124135e-07,-6.099408004724406314e-07,-6.238030913922688492e-07,-6.376653823120970670e-07,-6.515276732319252848e-07,-6.653899641517535026e-07,-6.792522550715817205e-07,-6.931145459914099383e-07,-7.069768369112381561e-07,-7.208391278310663739e-07,-7.347014187508945918e-07,-7.485637096707228096e-07,-7.624260005905510274e-07,-7.762882915103792452e-07,-7.901505824302074631e-07,-8.040128733500356809e-07,-8.178751642698638987e-07,-8.317374551896921165e-07,-8.455997461095203344e-07,-8.594620370293485522e-07,-8.733243279491767700e-07 +0.000000000000000000e+00,-1.251121813966582868e-08,-2.502243627933165735e-08,-3.753365441899748603e-08,-5.004487255866331471e-08,-6.255609069832914339e-08,-7.506730883799497206e-08,-8.757852697766080074e-08,-1.000897451173266294e-07,-1.126009632569924581e-07,-1.251121813966582868e-07,-1.376233995363241155e-07,-1.501346176759899441e-07,-1.626458358156557728e-07,-1.751570539553216015e-07,-1.876682720949874302e-07,-2.001794902346532588e-07,-2.126907083743190875e-07,-2.252019265139849162e-07,-2.377131446536507449e-07,-2.502243627933165735e-07,-2.627355809329823758e-07,-2.752467990726481780e-07,-2.877580172123139802e-07,-3.002692353519797824e-07,-3.127804534916455846e-07,-3.252916716313113868e-07,-3.378028897709771890e-07,-3.503141079106429912e-07,-3.628253260503087934e-07,-3.753365441899745956e-07,-3.878477623296403978e-07,-4.003589804693062000e-07,-4.128701986089720023e-07,-4.253814167486378045e-07,-4.378926348883036067e-07,-4.504038530279694089e-07,-4.629150711676352111e-07,-4.754262893073010133e-07,-4.879375074469668155e-07,-5.004487255866326177e-07,-5.129599437262984199e-07,-5.254711618659642221e-07,-5.379823800056300243e-07,-5.504935981452958265e-07,-5.630048162849616287e-07,-5.755160344246274310e-07,-5.880272525642932332e-07,-6.005384707039590354e-07,-6.130496888436248376e-07,-6.255609069832906398e-07,-6.380721251229564420e-07,-6.505833432626222442e-07,-6.630945614022880464e-07,-6.756057795419538486e-07,-6.881169976816196508e-07,-7.006282158212854530e-07,-7.131394339609512552e-07,-7.256506521006170574e-07,-7.381618702402828597e-07,-7.506730883799486619e-07,-7.631843065196144641e-07,-7.756955246592802663e-07,-7.882067427989460685e-07 +0.000000000000000000e+00,-1.294361446416370310e-08,-2.588722892832740621e-08,-3.883084339249111096e-08,-5.177445785665481903e-08,-6.471807232081852710e-08,-7.766168678498223516e-08,-9.060530124914594323e-08,-1.035489157133096513e-07,-1.164925301774733594e-07,-1.294361446416370542e-07,-1.423797591058007490e-07,-1.553233735699644439e-07,-1.682669880341281387e-07,-1.812106024982918335e-07,-1.941542169624555284e-07,-2.070978314266192232e-07,-2.200414458907829180e-07,-2.329850603549466128e-07,-2.459286748191102812e-07,-2.588722892832739496e-07,-2.718159037474376179e-07,-2.847595182116012863e-07,-2.977031326757649547e-07,-3.106467471399286230e-07,-3.235903616040922914e-07,-3.365339760682559597e-07,-3.494775905324196281e-07,-3.624212049965832965e-07,-3.753648194607469648e-07,-3.883084339249106332e-07,-4.012520483890743015e-07,-4.141956628532379699e-07,-4.271392773174016383e-07,-4.400828917815653066e-07,-4.530265062457289750e-07,-4.659701207098926434e-07,-4.789137351740563117e-07,-4.918573496382199271e-07,-5.048009641023835426e-07,-5.177445785665471580e-07,-5.306881930307107734e-07,-5.436318074948743888e-07,-5.565754219590380042e-07,-5.695190364232016197e-07,-5.824626508873652351e-07,-5.954062653515288505e-07,-6.083498798156924659e-07,-6.212934942798560814e-07,-6.342371087440196968e-07,-6.471807232081833122e-07,-6.601243376723469276e-07,-6.730679521365105430e-07,-6.860115666006741585e-07,-6.989551810648377739e-07,-7.118987955290013893e-07,-7.248424099931650047e-07,-7.377860244573286202e-07,-7.507296389214922356e-07,-7.636732533856558510e-07,-7.766168678498194664e-07,-7.895604823139830818e-07,-8.025040967781466973e-07,-8.154477112423103127e-07 +0.000000000000000000e+00,-1.381387132738592099e-08,-2.762774265477184199e-08,-4.144161398215776464e-08,-5.525548530954369059e-08,-6.906935663692961655e-08,-8.288322796431554251e-08,-9.669709929170146846e-08,-1.105109706190873944e-07,-1.243248419464733204e-07,-1.381387132738592331e-07,-1.519525846012451458e-07,-1.657664559286310585e-07,-1.795803272560169713e-07,-1.933941985834028840e-07,-2.072080699107887967e-07,-2.210219412381747094e-07,-2.348358125655606222e-07,-2.486496838929465349e-07,-2.624635552203324476e-07,-2.762774265477183603e-07,-2.900912978751042730e-07,-3.039051692024901858e-07,-3.177190405298760985e-07,-3.315329118572620112e-07,-3.453467831846479239e-07,-3.591606545120338367e-07,-3.729745258394197494e-07,-3.867883971668056621e-07,-4.006022684941915748e-07,-4.144161398215774875e-07,-4.282300111489634003e-07,-4.420438824763493130e-07,-4.558577538037352257e-07,-4.696716251311211384e-07,-4.834854964585069982e-07,-4.972993677858928580e-07,-5.111132391132787178e-07,-5.249271104406645776e-07,-5.387409817680504373e-07,-5.525548530954362971e-07,-5.663687244228221569e-07,-5.801825957502080167e-07,-5.939964670775938765e-07,-6.078103384049797363e-07,-6.216242097323655960e-07,-6.354380810597514558e-07,-6.492519523871373156e-07,-6.630658237145231754e-07,-6.768796950419090352e-07,-6.906935663692948949e-07,-7.045074376966807547e-07,-7.183213090240666145e-07,-7.321351803514524743e-07,-7.459490516788383341e-07,-7.597629230062241939e-07,-7.735767943336100536e-07,-7.873906656609959134e-07,-8.012045369883817732e-07,-8.150184083157676330e-07,-8.288322796431534928e-07,-8.426461509705393526e-07,-8.564600222979252123e-07,-8.702738936253110721e-07 +0.000000000000000000e+00,-1.072066736070285473e-08,-2.144133472140570946e-08,-3.216200208210856253e-08,-4.288266944281141229e-08,-5.360333680351426206e-08,-6.432400416421711182e-08,-7.504467152491996821e-08,-8.576533888562282459e-08,-9.648600624632568097e-08,-1.072066736070285374e-07,-1.179273409677313937e-07,-1.286480083284342501e-07,-1.393686756891371065e-07,-1.500893430498399629e-07,-1.608100104105428193e-07,-1.715306777712456756e-07,-1.822513451319485320e-07,-1.929720124926513884e-07,-2.036926798533542448e-07,-2.144133472140571012e-07,-2.251340145747599576e-07,-2.358546819354628139e-07,-2.465753492961656439e-07,-2.572960166568684473e-07,-2.680166840175712507e-07,-2.787373513782740542e-07,-2.894580187389768576e-07,-3.001786860996796611e-07,-3.108993534603824645e-07,-3.216200208210852680e-07,-3.323406881817880714e-07,-3.430613555424908748e-07,-3.537820229031936783e-07,-3.645026902638964817e-07,-3.752233576245992852e-07,-3.859440249853020886e-07,-3.966646923460048921e-07,-4.073853597067076955e-07,-4.181060270674104989e-07,-4.288266944281133024e-07,-4.395473617888161058e-07,-4.502680291495189093e-07,-4.609886965102217127e-07,-4.717093638709245162e-07,-4.824300312316273196e-07,-4.931506985923301230e-07,-5.038713659530329265e-07,-5.145920333137357299e-07,-5.253127006744385334e-07,-5.360333680351413368e-07,-5.467540353958441403e-07,-5.574747027565469437e-07,-5.681953701172497471e-07,-5.789160374779525506e-07,-5.896367048386553540e-07,-6.003573721993581575e-07,-6.110780395600609609e-07,-6.217987069207637644e-07,-6.325193742814665678e-07,-6.432400416421693712e-07,-6.539607090028721747e-07,-6.646813763635749781e-07,-6.754020437242777816e-07 +0.000000000000000000e+00,-1.292807672934827018e-08,-2.585615345869654037e-08,-3.878423018804480725e-08,-5.171230691739307412e-08,-6.464038364674134100e-08,-7.756846037608961449e-08,-9.049653710543788798e-08,-1.034246138347861615e-07,-1.163526905641344350e-07,-1.292807672934827085e-07,-1.422088440228309687e-07,-1.551369207521792290e-07,-1.680649974815274892e-07,-1.809930742108757495e-07,-1.939211509402240098e-07,-2.068492276695722700e-07,-2.197773043989205303e-07,-2.327053811282687905e-07,-2.456334578576170508e-07,-2.585615345869653111e-07,-2.714896113163135713e-07,-2.844176880456618316e-07,-2.973457647750100918e-07,-3.102738415043583521e-07,-3.232019182337066123e-07,-3.361299949630548726e-07,-3.490580716924031329e-07,-3.619861484217513931e-07,-3.749142251510996534e-07,-3.878423018804479136e-07,-4.007703786097961739e-07,-4.136984553391444342e-07,-4.266265320684926944e-07,-4.395546087978409547e-07,-4.524826855271892149e-07,-4.654107622565374752e-07,-4.783388389858857884e-07,-4.912669157152341016e-07,-5.041949924445824148e-07,-5.171230691739307280e-07,-5.300511459032790412e-07,-5.429792226326273544e-07,-5.559072993619756676e-07,-5.688353760913239808e-07,-5.817634528206722940e-07,-5.946915295500206072e-07,-6.076196062793689204e-07,-6.205476830087172336e-07,-6.334757597380655468e-07,-6.464038364674138600e-07,-6.593319131967621732e-07,-6.722599899261104864e-07,-6.851880666554587996e-07,-6.981161433848071128e-07,-7.110442201141554260e-07,-7.239722968435037391e-07,-7.369003735728520523e-07,-7.498284503022003655e-07,-7.627565270315486787e-07,-7.756846037608969919e-07,-7.886126804902453051e-07,-8.015407572195936183e-07,-8.144688339489419315e-07 +0.000000000000000000e+00,-1.294361446416249707e-08,-2.588722892832499415e-08,-3.883084339248749122e-08,-5.177445785664998830e-08,-6.471807232081249199e-08,-7.766168678497499568e-08,-9.060530124913749937e-08,-1.035489157133000031e-07,-1.164925301774625068e-07,-1.294361446416250104e-07,-1.423797591057875141e-07,-1.553233735699500178e-07,-1.682669880341125215e-07,-1.812106024982750252e-07,-1.941542169624375289e-07,-2.070978314266000326e-07,-2.200414458907625363e-07,-2.329850603549250400e-07,-2.459286748190875172e-07,-2.588722892832499679e-07,-2.718159037474124187e-07,-2.847595182115748695e-07,-2.977031326757373202e-07,-3.106467471398997710e-07,-3.235903616040622217e-07,-3.365339760682246725e-07,-3.494775905323871232e-07,-3.624212049965495740e-07,-3.753648194607120247e-07,-3.883084339248744755e-07,-4.012520483890369262e-07,-4.141956628531993770e-07,-4.271392773173618277e-07,-4.400828917815242785e-07,-4.530265062456867292e-07,-4.659701207098491800e-07,-4.789137351740116307e-07,-4.918573496381740815e-07,-5.048009641023365322e-07,-5.177445785664989830e-07,-5.306881930306614337e-07,-5.436318074948238845e-07,-5.565754219589863352e-07,-5.695190364231487860e-07,-5.824626508873112367e-07,-5.954062653514736875e-07,-6.083498798156361382e-07,-6.212934942797985890e-07,-6.342371087439610398e-07,-6.471807232081234905e-07,-6.601243376722859413e-07,-6.730679521364483920e-07,-6.860115666006108428e-07,-6.989551810647732935e-07,-7.118987955289357443e-07,-7.248424099930981950e-07,-7.377860244572606458e-07,-7.507296389214230965e-07,-7.636732533855855473e-07,-7.766168678497479980e-07,-7.895604823139104488e-07,-8.025040967780728995e-07,-8.154477112422353503e-07 +0.000000000000000000e+00,-1.139203556083531423e-08,-2.278407112167062847e-08,-3.417610668250594436e-08,-4.556814224334126356e-08,-5.696017780417658275e-08,-6.835221336501190195e-08,-7.974424892584722115e-08,-9.113628448668254035e-08,-1.025283200475178595e-07,-1.139203556083531787e-07,-1.253123911691884979e-07,-1.367044267300238304e-07,-1.480964622908591628e-07,-1.594884978516944952e-07,-1.708805334125298277e-07,-1.822725689733651601e-07,-1.936646045342004925e-07,-2.050566400950358250e-07,-2.164486756558711574e-07,-2.278407112167064898e-07,-2.392327467775417958e-07,-2.506247823383771018e-07,-2.620168178992124077e-07,-2.734088534600477137e-07,-2.848008890208830196e-07,-2.961929245817183256e-07,-3.075849601425536316e-07,-3.189769957033889375e-07,-3.303690312642242435e-07,-3.417610668250595495e-07,-3.531531023858948554e-07,-3.645451379467301614e-07,-3.759371735075654673e-07,-3.873292090684007733e-07,-3.987212446292360793e-07,-4.101132801900713852e-07,-4.215053157509066912e-07,-4.328973513117419972e-07,-4.442893868725773031e-07,-4.556814224334126091e-07,-4.670734579942479150e-07,-4.784654935550831681e-07,-4.898575291159184211e-07,-5.012495646767536741e-07,-5.126416002375889271e-07,-5.240336357984241802e-07,-5.354256713592594332e-07,-5.468177069200946862e-07,-5.582097424809299392e-07,-5.696017780417651923e-07,-5.809938136026004453e-07,-5.923858491634356983e-07,-6.037778847242709513e-07,-6.151699202851062043e-07,-6.265619558459414574e-07,-6.379539914067767104e-07,-6.493460269676119634e-07,-6.607380625284472164e-07,-6.721300980892824695e-07,-6.835221336501177225e-07,-6.949141692109529755e-07,-7.063062047717882285e-07,-7.176982403326234816e-07 +0.000000000000000000e+00,-1.386229091982620943e-08,-2.772458183965241886e-08,-4.158687275947863160e-08,-5.544916367930484434e-08,-6.931145459913105707e-08,-8.317374551895726320e-08,-9.703603643878346932e-08,-1.108983273586096754e-07,-1.247606182784358816e-07,-1.386229091982620877e-07,-1.524852001180882938e-07,-1.663474910379144999e-07,-1.802097819577407060e-07,-1.940720728775669122e-07,-2.079343637973931183e-07,-2.217966547172193244e-07,-2.356589456370455305e-07,-2.495212365568717102e-07,-2.633835274766979163e-07,-2.772458183965241224e-07,-2.911081093163503285e-07,-3.049704002361765347e-07,-3.188326911560027408e-07,-3.326949820758289469e-07,-3.465572729956551530e-07,-3.604195639154813591e-07,-3.742818548353075653e-07,-3.881441457551337714e-07,-4.020064366749599775e-07,-4.158687275947861836e-07,-4.297310185146123897e-07,-4.435933094344385959e-07,-4.574556003542648020e-07,-4.713178912740910081e-07,-4.851801821939172142e-07,-4.990424731137434204e-07,-5.129047640335696265e-07,-5.267670549533958326e-07,-5.406293458732220387e-07,-5.544916367930482448e-07,-5.683539277128744510e-07,-5.822162186327006571e-07,-5.960785095525268632e-07,-6.099408004723530693e-07,-6.238030913921792754e-07,-6.376653823120054816e-07,-6.515276732318316877e-07,-6.653899641516578938e-07,-6.792522550714840999e-07,-6.931145459913103060e-07,-7.069768369111365122e-07,-7.208391278309627183e-07,-7.347014187507889244e-07,-7.485637096706151305e-07,-7.624260005904413367e-07,-7.762882915102675428e-07,-7.901505824300937489e-07,-8.040128733499199550e-07,-8.178751642697461611e-07,-8.317374551895723673e-07,-8.455997461093985734e-07,-8.594620370292247795e-07,-8.733243279490509856e-07 +0.000000000000000000e+00,-1.251121813966254146e-08,-2.502243627932508292e-08,-3.753365441898762604e-08,-5.004487255865017246e-08,-6.255609069831271889e-08,-7.506730883797526531e-08,-8.757852697763781174e-08,-1.000897451173003582e-07,-1.126009632569629046e-07,-1.251121813966254642e-07,-1.376233995362880371e-07,-1.501346176759506100e-07,-1.626458358156131829e-07,-1.751570539552757558e-07,-1.876682720949383287e-07,-2.001794902346009016e-07,-2.126907083742634745e-07,-2.252019265139260474e-07,-2.377131446535886203e-07,-2.502243627932511932e-07,-2.627355809329137661e-07,-2.752467990725763390e-07,-2.877580172122389119e-07,-3.002692353519014848e-07,-3.127804534915640577e-07,-3.252916716312266306e-07,-3.378028897708892035e-07,-3.503141079105517764e-07,-3.628253260502143492e-07,-3.753365441898769221e-07,-3.878477623295394950e-07,-4.003589804692020679e-07,-4.128701986088646408e-07,-4.253814167485272137e-07,-4.378926348881897866e-07,-4.504038530278523595e-07,-4.629150711675149324e-07,-4.754262893071775053e-07,-4.879375074468400782e-07,-5.004487255865027040e-07,-5.129599437261653299e-07,-5.254711618658279557e-07,-5.379823800054905815e-07,-5.504935981451532074e-07,-5.630048162848158332e-07,-5.755160344244784590e-07,-5.880272525641410849e-07,-6.005384707038037107e-07,-6.130496888434663365e-07,-6.255609069831289624e-07,-6.380721251227915882e-07,-6.505833432624542140e-07,-6.630945614021168399e-07,-6.756057795417794657e-07,-6.881169976814420915e-07,-7.006282158211047174e-07,-7.131394339607673432e-07,-7.256506521004299690e-07,-7.381618702400925949e-07,-7.506730883797552207e-07,-7.631843065194178465e-07,-7.756955246590804724e-07,-7.882067427987430982e-07 +0.000000000000000000e+00,-1.075490257225838197e-08,-2.150980514451676395e-08,-3.226470771677514923e-08,-4.301961028903353451e-08,-5.377451286129191980e-08,-6.452941543355029846e-08,-7.528431800580867713e-08,-8.603922057806705579e-08,-9.679412315032543446e-08,-1.075490257225838131e-07,-1.183039282948421918e-07,-1.290588308671005705e-07,-1.398137334393589491e-07,-1.505686360116173278e-07,-1.613235385838757065e-07,-1.720784411561340851e-07,-1.828333437283924638e-07,-1.935882463006508425e-07,-2.043431488729092211e-07,-2.150980514451675998e-07,-2.258529540174259784e-07,-2.366078565896843571e-07,-2.473627591619427093e-07,-2.581176617342010880e-07,-2.688725643064594666e-07,-2.796274668787178453e-07,-2.903823694509762240e-07,-3.011372720232346026e-07,-3.118921745954929813e-07,-3.226470771677513600e-07,-3.334019797400097386e-07,-3.441568823122681173e-07,-3.549117848845264960e-07,-3.656666874567848746e-07,-3.764215900290432533e-07,-3.871764926013016320e-07,-3.979313951735600106e-07,-4.086862977458183893e-07,-4.194412003180767680e-07,-4.301961028903351466e-07,-4.409510054625935253e-07,-4.517059080348519040e-07,-4.624608106071102826e-07,-4.732157131793686613e-07,-4.839706157516270400e-07,-4.947255183238854186e-07,-5.054804208961437973e-07,-5.162353234684021760e-07,-5.269902260406605546e-07,-5.377451286129189333e-07,-5.485000311851773119e-07,-5.592549337574356906e-07,-5.700098363296940693e-07,-5.807647389019524479e-07,-5.915196414742108266e-07,-6.022745440464692053e-07,-6.130294466187275839e-07,-6.237843491909859626e-07,-6.345392517632443413e-07,-6.452941543355027199e-07,-6.560490569077610986e-07,-6.668039594800194773e-07,-6.775588620522778559e-07 +0.000000000000000000e+00,-1.062082650449332340e-08,-2.124165300898664680e-08,-3.186247951347997020e-08,-4.248330601797329360e-08,-5.310413252246661700e-08,-6.372495902695994040e-08,-7.434578553145325718e-08,-8.496661203594657396e-08,-9.558743854043989074e-08,-1.062082650449332075e-07,-1.168290915494265243e-07,-1.274499180539198543e-07,-1.380707445584131843e-07,-1.486915710629065144e-07,-1.593123975673998444e-07,-1.699332240718931744e-07,-1.805540505763865044e-07,-1.911748770808798344e-07,-2.017957035853731644e-07,-2.124165300898664945e-07,-2.230373565943598245e-07,-2.336581830988531545e-07,-2.442790096033464580e-07,-2.548998361078397616e-07,-2.655206626123330651e-07,-2.761414891168263687e-07,-2.867623156213196722e-07,-2.973831421258129758e-07,-3.080039686303062793e-07,-3.186247951347995829e-07,-3.292456216392928864e-07,-3.398664481437861900e-07,-3.504872746482794935e-07,-3.611081011527727971e-07,-3.717289276572661006e-07,-3.823497541617594042e-07,-3.929705806662527077e-07,-4.035914071707460113e-07,-4.142122336752393148e-07,-4.248330601797326183e-07,-4.354538866842259219e-07,-4.460747131887192254e-07,-4.566955396932125290e-07,-4.673163661977058325e-07,-4.779371927021991361e-07,-4.885580192066924926e-07,-4.991788457111858491e-07,-5.097996722156792055e-07,-5.204204987201725620e-07,-5.310413252246659185e-07,-5.416621517291592750e-07,-5.522829782336526315e-07,-5.629038047381459880e-07,-5.735246312426393445e-07,-5.841454577471327009e-07,-5.947662842516260574e-07,-6.053871107561194139e-07,-6.160079372606127704e-07,-6.266287637651061269e-07,-6.372495902695994834e-07,-6.478704167740928399e-07,-6.584912432785861964e-07,-6.691120697830795528e-07 +0.000000000000000000e+00,-1.247917697156079000e-08,-2.495835394312158000e-08,-3.743753091468236834e-08,-4.991670788624315338e-08,-6.239588485780393841e-08,-7.487506182936472345e-08,-8.735423880092550848e-08,-9.983341577248629352e-08,-1.123125927440470786e-07,-1.247917697156078504e-07,-1.372709466871686089e-07,-1.497501236587293675e-07,-1.622293006302901260e-07,-1.747084776018508846e-07,-1.871876545734116432e-07,-1.996668315449724017e-07,-2.121460085165331603e-07,-2.246251854880939189e-07,-2.371043624596546774e-07,-2.495835394312154360e-07,-2.620627164027761946e-07,-2.745418933743369531e-07,-2.870210703458977117e-07,-2.995002473174584703e-07,-3.119794242890192288e-07,-3.244586012605799874e-07,-3.369377782321407460e-07,-3.494169552037015045e-07,-3.618961321752622631e-07,-3.743753091468230217e-07,-3.868544861183837802e-07,-3.993336630899445388e-07,-4.118128400615052974e-07,-4.242920170330660559e-07,-4.367711940046268145e-07,-4.492503709761875731e-07,-4.617295479477483316e-07,-4.742087249193090902e-07,-4.866879018908698487e-07,-4.991670788624305544e-07,-5.116462558339912600e-07,-5.241254328055519656e-07,-5.366046097771126713e-07,-5.490837867486733769e-07,-5.615629637202340825e-07,-5.740421406917947881e-07,-5.865213176633554938e-07,-5.990004946349161994e-07,-6.114796716064769050e-07,-6.239588485780376106e-07,-6.364380255495983163e-07,-6.489172025211590219e-07,-6.613963794927197275e-07,-6.738755564642804331e-07,-6.863547334358411388e-07,-6.988339104074018444e-07,-7.113130873789625500e-07,-7.237922643505232556e-07,-7.362714413220839613e-07,-7.487506182936446669e-07,-7.612297952652053725e-07,-7.737089722367660781e-07,-7.861881492083267838e-07 +0.000000000000000000e+00,-1.075490257225433210e-08,-2.150980514450866420e-08,-3.226470771676299960e-08,-4.301961028901733501e-08,-5.377451286127167042e-08,-6.452941543352599921e-08,-7.528431800578032800e-08,-8.603922057803465678e-08,-9.679412315028898557e-08,-1.075490257225433144e-07,-1.183039282947976432e-07,-1.290588308670519719e-07,-1.398137334393063007e-07,-1.505686360115606295e-07,-1.613235385838149583e-07,-1.720784411560692871e-07,-1.828333437283236159e-07,-1.935882463005779447e-07,-2.043431488728322735e-07,-2.150980514450866023e-07,-2.258529540173409310e-07,-2.366078565895952598e-07,-2.473627591618495886e-07,-2.581176617341038909e-07,-2.688725643063581933e-07,-2.796274668786124956e-07,-2.903823694508667979e-07,-3.011372720231211002e-07,-3.118921745953754025e-07,-3.226470771676297049e-07,-3.334019797398840072e-07,-3.441568823121383095e-07,-3.549117848843926118e-07,-3.656666874566469141e-07,-3.764215900289012165e-07,-3.871764926011555188e-07,-3.979313951734098211e-07,-4.086862977456641234e-07,-4.194412003179184257e-07,-4.301961028901727281e-07,-4.409510054624270304e-07,-4.517059080346813327e-07,-4.624608106069356350e-07,-4.732157131791899373e-07,-4.839706157514441867e-07,-4.947255183236984361e-07,-5.054804208959526855e-07,-5.162353234682069349e-07,-5.269902260404611842e-07,-5.377451286127154336e-07,-5.485000311849696830e-07,-5.592549337572239324e-07,-5.700098363294781818e-07,-5.807647389017324311e-07,-5.915196414739866805e-07,-6.022745440462409299e-07,-6.130294466184951793e-07,-6.237843491907494287e-07,-6.345392517630036780e-07,-6.452941543352579274e-07,-6.560490569075121768e-07,-6.668039594797664262e-07,-6.775588620520206756e-07 +0.000000000000000000e+00,-1.062082650448934962e-08,-2.124165300897869925e-08,-3.186247951346805218e-08,-4.248330601795740511e-08,-5.310413252244675805e-08,-6.372495902693610436e-08,-7.434578553142545068e-08,-8.496661203591479699e-08,-9.558743854040414331e-08,-1.062082650448934896e-07,-1.168290915493828359e-07,-1.274499180538721823e-07,-1.380707445583615418e-07,-1.486915710628509014e-07,-1.593123975673402609e-07,-1.699332240718296205e-07,-1.805540505763189800e-07,-1.911748770808083396e-07,-2.017957035852976991e-07,-2.124165300897870587e-07,-2.230373565942764182e-07,-2.336581830987657778e-07,-2.442790096032551373e-07,-2.548998361077445233e-07,-2.655206626122339093e-07,-2.761414891167232954e-07,-2.867623156212126814e-07,-2.973831421257020674e-07,-3.080039686301914534e-07,-3.186247951346808394e-07,-3.292456216391702255e-07,-3.398664481436596115e-07,-3.504872746481489975e-07,-3.611081011526383835e-07,-3.717289276571277695e-07,-3.823497541616171556e-07,-3.929705806661065416e-07,-4.035914071705959276e-07,-4.142122336750853136e-07,-4.248330601795746996e-07,-4.354538866840640857e-07,-4.460747131885534717e-07,-4.566955396930428577e-07,-4.673163661975322437e-07,-4.779371927020216827e-07,-4.885580192065111216e-07,-4.991788457110005606e-07,-5.097996722154899996e-07,-5.204204987199794385e-07,-5.310413252244688775e-07,-5.416621517289583164e-07,-5.522829782334477554e-07,-5.629038047379371944e-07,-5.735246312424266333e-07,-5.841454577469160723e-07,-5.947662842514055112e-07,-6.053871107558949502e-07,-6.160079372603843892e-07,-6.266287637648738281e-07,-6.372495902693632671e-07,-6.478704167738527060e-07,-6.584912432783421450e-07,-6.691120697828315839e-07 +0.000000000000000000e+00,-1.247917697155707430e-08,-2.495835394311414861e-08,-3.743753091467122456e-08,-4.991670788622830383e-08,-6.239588485778538310e-08,-7.487506182934246236e-08,-8.735423880089954163e-08,-9.983341577245662089e-08,-1.123125927440137002e-07,-1.247917697155707927e-07,-1.372709466871278984e-07,-1.497501236586850041e-07,-1.622293006302421099e-07,-1.747084776017992156e-07,-1.871876545733563213e-07,-1.996668315449134271e-07,-2.121460085164705328e-07,-2.246251854880276385e-07,-2.371043624595847443e-07,-2.495835394311418500e-07,-2.620627164026989558e-07,-2.745418933742560615e-07,-2.870210703458131672e-07,-2.995002473173702730e-07,-3.119794242889273787e-07,-3.244586012604844844e-07,-3.369377782320415902e-07,-3.494169552035986959e-07,-3.618961321751558016e-07,-3.743753091467129074e-07,-3.868544861182700131e-07,-3.993336630898271188e-07,-4.118128400613842246e-07,-4.242920170329413303e-07,-4.367711940044984361e-07,-4.492503709760555418e-07,-4.617295479476126475e-07,-4.742087249191697533e-07,-4.866879018907269119e-07,-4.991670788622840177e-07,-5.116462558338411234e-07,-5.241254328053982291e-07,-5.366046097769553349e-07,-5.490837867485124406e-07,-5.615629637200695464e-07,-5.740421406916266521e-07,-5.865213176631837578e-07,-5.990004946347408636e-07,-6.114796716062979693e-07,-6.239588485778550750e-07,-6.364380255494121808e-07,-6.489172025209692865e-07,-6.613963794925263922e-07,-6.738755564640834980e-07,-6.863547334356406037e-07,-6.988339104071977094e-07,-7.113130873787548152e-07,-7.237922643503119209e-07,-7.362714413218690267e-07,-7.487506182934261324e-07,-7.612297952649832381e-07,-7.737089722365403439e-07,-7.861881492080974496e-07 +0.000000000000000000e+00,-1.137515183148116702e-08,-2.275030366296233403e-08,-3.412545549444349774e-08,-4.550060732592466145e-08,-5.687575915740582515e-08,-6.825091098888699548e-08,-7.962606282036816580e-08,-9.100121465184933613e-08,-1.023763664833305065e-07,-1.137515183148116768e-07,-1.251266701462928603e-07,-1.365018219777740439e-07,-1.478769738092552275e-07,-1.592521256407364110e-07,-1.706272774722175946e-07,-1.820024293036987781e-07,-1.933775811351799617e-07,-2.047527329666611453e-07,-2.161278847981423288e-07,-2.275030366296235124e-07,-2.388781884611046959e-07,-2.502533402925858795e-07,-2.616284921240670630e-07,-2.730036439555482466e-07,-2.843787957870294302e-07,-2.957539476185106137e-07,-3.071290994499917973e-07,-3.185042512814729808e-07,-3.298794031129541644e-07,-3.412545549444353480e-07,-3.526297067759165315e-07,-3.640048586073977151e-07,-3.753800104388788986e-07,-3.867551622703600822e-07,-3.981303141018412658e-07,-4.095054659333224493e-07,-4.208806177648036329e-07,-4.322557695962848164e-07,-4.436309214277660000e-07,-4.550060732592471836e-07,-4.663812250907283671e-07,-4.777563769222094977e-07,-4.891315287536906813e-07,-5.005066805851718649e-07,-5.118818324166530484e-07,-5.232569842481342320e-07,-5.346321360796154155e-07,-5.460072879110965991e-07,-5.573824397425777827e-07,-5.687575915740589662e-07,-5.801327434055401498e-07,-5.915078952370213333e-07,-6.028830470685025169e-07,-6.142581988999837005e-07,-6.256333507314648840e-07,-6.370085025629460676e-07,-6.483836543944272511e-07,-6.597588062259084347e-07,-6.711339580573896182e-07,-6.825091098888708018e-07,-6.938842617203519854e-07,-7.052594135518331689e-07,-7.166345653833143525e-07 +0.000000000000000000e+00,-1.103351110919966395e-08,-2.206702221839932790e-08,-3.310053332759899184e-08,-4.413404443679865579e-08,-5.516755554599831974e-08,-6.620106665519798369e-08,-7.723457776439764764e-08,-8.826808887359731158e-08,-9.930159998279697553e-08,-1.103351110919966395e-07,-1.213686222011963034e-07,-1.324021333103959674e-07,-1.434356444195956313e-07,-1.544691555287952953e-07,-1.655026666379949592e-07,-1.765361777471946232e-07,-1.875696888563942871e-07,-1.986031999655939511e-07,-2.096367110747936150e-07,-2.206702221839932790e-07,-2.317037332931929429e-07,-2.427372444023926069e-07,-2.537707555115922443e-07,-2.648042666207918818e-07,-2.758377777299915193e-07,-2.868712888391911568e-07,-2.979047999483907942e-07,-3.089383110575904317e-07,-3.199718221667900692e-07,-3.310053332759897067e-07,-3.420388443851893442e-07,-3.530723554943889816e-07,-3.641058666035886191e-07,-3.751393777127882566e-07,-3.861728888219878941e-07,-3.972063999311875316e-07,-4.082399110403871690e-07,-4.192734221495868065e-07,-4.303069332587864440e-07,-4.413404443679860815e-07,-4.523739554771857189e-07,-4.634074665863853564e-07,-4.744409776955849939e-07,-4.854744888047846843e-07,-4.965079999139843747e-07,-5.075415110231840652e-07,-5.185750221323837556e-07,-5.296085332415834460e-07,-5.406420443507831364e-07,-5.516755554599828268e-07,-5.627090665691825172e-07,-5.737425776783822077e-07,-5.847760887875818981e-07,-5.958095998967815885e-07,-6.068431110059812789e-07,-6.178766221151809693e-07,-6.289101332243806597e-07,-6.399436443335803502e-07,-6.509771554427800406e-07,-6.620106665519797310e-07,-6.730441776611794214e-07,-6.840776887703791118e-07,-6.951111998795788023e-07 +0.000000000000000000e+00,-1.302046262939638962e-08,-2.604092525879277924e-08,-3.906138788818916887e-08,-5.208185051758555849e-08,-6.510231314698194149e-08,-7.812277577637832450e-08,-9.114323840577470750e-08,-1.041637010351710905e-07,-1.171841636645674735e-07,-1.302046262939638565e-07,-1.432250889233602395e-07,-1.562455515527566225e-07,-1.692660141821530055e-07,-1.822864768115493885e-07,-1.953069394409457715e-07,-2.083274020703421545e-07,-2.213478646997385376e-07,-2.343683273291349206e-07,-2.473887899585313300e-07,-2.604092525879277660e-07,-2.734297152173242019e-07,-2.864501778467206379e-07,-2.994706404761170738e-07,-3.124911031055135098e-07,-3.255115657349099457e-07,-3.385320283643063816e-07,-3.515524909937028176e-07,-3.645729536230992535e-07,-3.775934162524956895e-07,-3.906138788818921254e-07,-4.036343415112885614e-07,-4.166548041406849973e-07,-4.296752667700814333e-07,-4.426957293994778692e-07,-4.557161920288743051e-07,-4.687366546582707411e-07,-4.817571172876671770e-07,-4.947775799170636130e-07,-5.077980425464600489e-07,-5.208185051758564849e-07,-5.338389678052529208e-07,-5.468594304346493568e-07,-5.598798930640457927e-07,-5.729003556934422286e-07,-5.859208183228386646e-07,-5.989412809522351005e-07,-6.119617435816315365e-07,-6.249822062110279724e-07,-6.380026688404244084e-07,-6.510231314698208443e-07,-6.640435940992172803e-07,-6.770640567286137162e-07,-6.900845193580101521e-07,-7.031049819874065881e-07,-7.161254446168030240e-07,-7.291459072461994600e-07,-7.421663698755958959e-07,-7.551868325049923319e-07,-7.682072951343887678e-07,-7.812277577637852038e-07,-7.942482203931816397e-07,-8.072686830225780756e-07,-8.202891456519745116e-07 +0.000000000000000000e+00,-1.137515183147725445e-08,-2.275030366295450890e-08,-3.412545549443176501e-08,-4.550060732590902442e-08,-5.687575915738628384e-08,-6.825091098886354325e-08,-7.962606282034080928e-08,-9.100121465181807532e-08,-1.023763664832953413e-07,-1.137515183147726074e-07,-1.251266701462498734e-07,-1.365018219777271394e-07,-1.478769738092044055e-07,-1.592521256406816715e-07,-1.706272774721589375e-07,-1.820024293036362036e-07,-1.933775811351134696e-07,-2.047527329665907356e-07,-2.161278847980680017e-07,-2.275030366295452677e-07,-2.388781884610225337e-07,-2.502533402924997998e-07,-2.616284921239770658e-07,-2.730036439554543318e-07,-2.843787957869315979e-07,-2.957539476184088639e-07,-3.071290994498861299e-07,-3.185042512813633960e-07,-3.298794031128406620e-07,-3.412545549443179280e-07,-3.526297067757951941e-07,-3.640048586072724601e-07,-3.753800104387497261e-07,-3.867551622702269921e-07,-3.981303141017042582e-07,-4.095054659331815242e-07,-4.208806177646587902e-07,-4.322557695961360563e-07,-4.436309214276133223e-07,-4.550060732590905883e-07,-4.663812250905678544e-07,-4.777563769220451733e-07,-4.891315287535225453e-07,-5.005066805849999172e-07,-5.118818324164772891e-07,-5.232569842479546610e-07,-5.346321360794320329e-07,-5.460072879109094048e-07,-5.573824397423867767e-07,-5.687575915738641486e-07,-5.801327434053415205e-07,-5.915078952368188925e-07,-6.028830470682962644e-07,-6.142581988997736363e-07,-6.256333507312510082e-07,-6.370085025627283801e-07,-6.483836543942057520e-07,-6.597588062256831239e-07,-6.711339580571604958e-07,-6.825091098886378677e-07,-6.938842617201152397e-07,-7.052594135515926116e-07,-7.166345653830699835e-07 +0.000000000000000000e+00,-1.103351110919557271e-08,-2.206702221839114543e-08,-3.310053332758671648e-08,-4.413404443678228423e-08,-5.516755554597785198e-08,-6.620106665517341973e-08,-7.723457776436898086e-08,-8.826808887356454200e-08,-9.930159998276010313e-08,-1.103351110919556643e-07,-1.213686222011512254e-07,-1.324021333103467865e-07,-1.434356444195423477e-07,-1.544691555287379088e-07,-1.655026666379334699e-07,-1.765361777471290311e-07,-1.875696888563245922e-07,-1.986031999655201533e-07,-2.096367110747157145e-07,-2.206702221839112756e-07,-2.317037332931068367e-07,-2.427372444023023978e-07,-2.537707555114979590e-07,-2.648042666206935201e-07,-2.758377777298890812e-07,-2.868712888390846424e-07,-2.979047999482802035e-07,-3.089383110574757646e-07,-3.199718221666713258e-07,-3.310053332758668869e-07,-3.420388443850624480e-07,-3.530723554942580092e-07,-3.641058666034535703e-07,-3.751393777126491314e-07,-3.861728888218446926e-07,-3.972063999310402537e-07,-4.082399110402358148e-07,-4.192734221494313760e-07,-4.303069332586269371e-07,-4.413404443678224982e-07,-4.523739554770180594e-07,-4.634074665862136205e-07,-4.744409776954091816e-07,-4.854744888046046898e-07,-4.965079999138002509e-07,-5.075415110229958121e-07,-5.185750221321913732e-07,-5.296085332413869343e-07,-5.406420443505824955e-07,-5.516755554597780566e-07,-5.627090665689736177e-07,-5.737425776781691789e-07,-5.847760887873647400e-07,-5.958095998965603011e-07,-6.068431110057558623e-07,-6.178766221149514234e-07,-6.289101332241469845e-07,-6.399436443333425457e-07,-6.509771554425381068e-07,-6.620106665517336679e-07,-6.730441776609292291e-07,-6.840776887701247902e-07,-6.951111998793203513e-07 +0.000000000000000000e+00,-1.302046262939288072e-08,-2.604092525878576144e-08,-3.906138788817864051e-08,-5.208185051757151627e-08,-6.510231314696439203e-08,-7.812277577635726779e-08,-9.114323840575014355e-08,-1.041637010351430193e-07,-1.171841636645358951e-07,-1.302046262939287841e-07,-1.432250889233216731e-07,-1.562455515527145620e-07,-1.692660141821074510e-07,-1.822864768115003400e-07,-1.953069394408932290e-07,-2.083274020702861180e-07,-2.213478646996790070e-07,-2.343683273290718960e-07,-2.473887899584647850e-07,-2.604092525878576740e-07,-2.734297152172505630e-07,-2.864501778466434520e-07,-2.994706404760363410e-07,-3.124911031054292300e-07,-3.255115657348221190e-07,-3.385320283642150080e-07,-3.515524909936078970e-07,-3.645729536230007860e-07,-3.775934162523936749e-07,-3.906138788817865639e-07,-4.036343415111794529e-07,-4.166548041405723419e-07,-4.296752667699652309e-07,-4.426957293993581199e-07,-4.557161920287510089e-07,-4.687366546581438979e-07,-4.817571172875367340e-07,-4.947775799169295700e-07,-5.077980425463224061e-07,-5.208185051757152421e-07,-5.338389678051080782e-07,-5.468594304345009142e-07,-5.598798930638937503e-07,-5.729003556932865863e-07,-5.859208183226794224e-07,-5.989412809520722584e-07,-6.119617435814650945e-07,-6.249822062108579306e-07,-6.380026688402507666e-07,-6.510231314696436027e-07,-6.640435940990364387e-07,-6.770640567284292748e-07,-6.900845193578221108e-07,-7.031049819872149469e-07,-7.161254446166077829e-07,-7.291459072460006190e-07,-7.421663698753934550e-07,-7.551868325047862911e-07,-7.682072951341791272e-07,-7.812277577635719632e-07,-7.942482203929647993e-07,-8.072686830223576353e-07,-8.202891456517504714e-07 +0.000000000000000000e+00,-1.211222979656921712e-08,-2.422445959313843424e-08,-3.633668938970764970e-08,-4.844891918627686186e-08,-6.056114898284606740e-08,-7.267337877941527294e-08,-8.478560857598447848e-08,-9.689783837255368402e-08,-1.090100681691228896e-07,-1.211222979656920819e-07,-1.332345277622612742e-07,-1.453467575588304665e-07,-1.574589873553996588e-07,-1.695712171519688511e-07,-1.816834469485380434e-07,-1.937956767451072357e-07,-2.059079065416764280e-07,-2.180201363382456203e-07,-2.301323661348148126e-07,-2.422445959313840049e-07,-2.543568257279531707e-07,-2.664690555245223366e-07,-2.785812853210915024e-07,-2.906935151176606682e-07,-3.028057449142298341e-07,-3.149179747107989999e-07,-3.270302045073681657e-07,-3.391424343039373316e-07,-3.512546641005064974e-07,-3.633668938970756632e-07,-3.754791236936448291e-07,-3.875913534902139949e-07,-3.997035832867831607e-07,-4.118158130833523266e-07,-4.239280428799214924e-07,-4.360402726764906582e-07,-4.481525024730598241e-07,-4.602647322696289899e-07,-4.723769620661981557e-07,-4.844891918627672686e-07,-4.966014216593363815e-07,-5.087136514559054944e-07,-5.208258812524746073e-07,-5.329381110490437202e-07,-5.450503408456128331e-07,-5.571625706421819460e-07,-5.692748004387510589e-07,-5.813870302353201718e-07,-5.934992600318892847e-07,-6.056114898284583976e-07,-6.177237196250275105e-07,-6.298359494215966234e-07,-6.419481792181657363e-07,-6.540604090147348492e-07,-6.661726388113039621e-07,-6.782848686078730750e-07,-6.903970984044421879e-07,-7.025093282010113007e-07,-7.146215579975804136e-07,-7.267337877941495265e-07,-7.388460175907186394e-07,-7.509582473872877523e-07,-7.630704771838568652e-07 +0.000000000000000000e+00,-1.174338299728601148e-08,-2.348676599457202295e-08,-3.523014899185803112e-08,-4.697353198914403928e-08,-5.871691498643004745e-08,-7.046029798371606223e-08,-8.220368098100207702e-08,-9.394706397828809180e-08,-1.056904469755741066e-07,-1.174338299728601214e-07,-1.291772129701461362e-07,-1.409205959674321509e-07,-1.526639789647181657e-07,-1.644073619620041805e-07,-1.761507449592901953e-07,-1.878941279565762101e-07,-1.996375109538622249e-07,-2.113808939511482396e-07,-2.231242769484342544e-07,-2.348676599457202692e-07,-2.466110429430062575e-07,-2.583544259402922194e-07,-2.700978089375781812e-07,-2.818411919348641431e-07,-2.935845749321501049e-07,-3.053279579294360667e-07,-3.170713409267220286e-07,-3.288147239240079904e-07,-3.405581069212939523e-07,-3.523014899185799141e-07,-3.640448729158658760e-07,-3.757882559131518378e-07,-3.875316389104377997e-07,-3.992750219077237615e-07,-4.110184049050097234e-07,-4.227617879022956852e-07,-4.345051708995816470e-07,-4.462485538968676089e-07,-4.579919368941535707e-07,-4.697353198914395326e-07,-4.814787028887254944e-07,-4.932220858860114563e-07,-5.049654688832974181e-07,-5.167088518805833800e-07,-5.284522348778693418e-07,-5.401956178751553036e-07,-5.519390008724412655e-07,-5.636823838697272273e-07,-5.754257668670131892e-07,-5.871691498642991510e-07,-5.989125328615851129e-07,-6.106559158588710747e-07,-6.223992988561570366e-07,-6.341426818534429984e-07,-6.458860648507289602e-07,-6.576294478480149221e-07,-6.693728308453008839e-07,-6.811162138425868458e-07,-6.928595968398728076e-07,-7.046029798371587695e-07,-7.163463628344447313e-07,-7.280897458317306932e-07,-7.398331288290166550e-07 +0.000000000000000000e+00,-1.375771765205889225e-08,-2.751543530411778451e-08,-4.127315295617667345e-08,-5.503087060823556240e-08,-6.878858826029445134e-08,-8.254630591235334690e-08,-9.630402356441224247e-08,-1.100617412164711380e-07,-1.238194588685300336e-07,-1.375771765205889292e-07,-1.513348941726478247e-07,-1.650926118247067203e-07,-1.788503294767656158e-07,-1.926080471288245114e-07,-2.063657647808834070e-07,-2.201234824329423025e-07,-2.338812000850011981e-07,-2.476389177370601201e-07,-2.613966353891190157e-07,-2.751543530411779112e-07,-2.889120706932368068e-07,-3.026697883452957024e-07,-3.164275059973545979e-07,-3.301852236494134935e-07,-3.439429413014723891e-07,-3.577006589535312846e-07,-3.714583766055901802e-07,-3.852160942576490757e-07,-3.989738119097079713e-07,-4.127315295617668669e-07,-4.264892472138257624e-07,-4.402469648658846580e-07,-4.540046825179435536e-07,-4.677624001700024491e-07,-4.815201178220613447e-07,-4.952778354741202402e-07,-5.090355531261791358e-07,-5.227932707782380314e-07,-5.365509884302969269e-07,-5.503087060823558225e-07,-5.640664237344147180e-07,-5.778241413864736136e-07,-5.915818590385325092e-07,-6.053395766905914047e-07,-6.190972943426503003e-07,-6.328550119947091959e-07,-6.466127296467680914e-07,-6.603704472988269870e-07,-6.741281649508858825e-07,-6.878858826029447781e-07,-7.016436002550036737e-07,-7.154013179070625692e-07,-7.291590355591214648e-07,-7.429167532111803604e-07,-7.566744708632392559e-07,-7.704321885152981515e-07,-7.841899061673570470e-07,-7.979476238194159426e-07,-8.117053414714748382e-07,-8.254630591235337337e-07,-8.392207767755926293e-07,-8.529784944276515249e-07,-8.667362120797104204e-07 +0.000000000000000000e+00,-1.211222979656623596e-08,-2.422445959313247192e-08,-3.633668938969870954e-08,-4.844891918626495046e-08,-6.056114898283119138e-08,-7.267337877939743231e-08,-8.478560857596367323e-08,-9.689783837252991415e-08,-1.090100681690961551e-07,-1.211222979656623828e-07,-1.332345277622286105e-07,-1.453467575587948381e-07,-1.574589873553610658e-07,-1.695712171519272935e-07,-1.816834469484935212e-07,-1.937956767450597489e-07,-2.059079065416259766e-07,-2.180201363381922043e-07,-2.301323661347584320e-07,-2.422445959313246597e-07,-2.543568257278909138e-07,-2.664690555244571680e-07,-2.785812853210234221e-07,-2.906935151175896763e-07,-3.028057449141559304e-07,-3.149179747107221846e-07,-3.270302045072884388e-07,-3.391424343038546929e-07,-3.512546641004209471e-07,-3.633668938969872012e-07,-3.754791236935534554e-07,-3.875913534901197096e-07,-3.997035832866859637e-07,-4.118158130832522179e-07,-4.239280428798184720e-07,-4.360402726763847262e-07,-4.481525024729509803e-07,-4.602647322695172345e-07,-4.723769620660834887e-07,-4.844891918626497428e-07,-4.966014216592159970e-07,-5.087136514557822511e-07,-5.208258812523485053e-07,-5.329381110489147595e-07,-5.450503408454810136e-07,-5.571625706420472678e-07,-5.692748004386135219e-07,-5.813870302351797761e-07,-5.934992600317460302e-07,-6.056114898283122844e-07,-6.177237196248785386e-07,-6.298359494214447927e-07,-6.419481792180110469e-07,-6.540604090145773010e-07,-6.661726388111435552e-07,-6.782848686077098094e-07,-6.903970984042760635e-07,-7.025093282008423177e-07,-7.146215579974085718e-07,-7.267337877939748260e-07,-7.388460175905410801e-07,-7.509582473871073343e-07,-7.630704771836735885e-07 +0.000000000000000000e+00,-1.174338299728251912e-08,-2.348676599456503824e-08,-3.523014899184755570e-08,-4.697353198913006986e-08,-5.871691498641258401e-08,-7.046029798369509817e-08,-8.220368098097761894e-08,-9.394706397826013972e-08,-1.056904469755426605e-07,-1.174338299728251813e-07,-1.291772129701077020e-07,-1.409205959673902228e-07,-1.526639789646727436e-07,-1.644073619619552644e-07,-1.761507449592377851e-07,-1.878941279565203059e-07,-1.996375109538028267e-07,-2.113808939510853474e-07,-2.231242769483678682e-07,-2.348676599456503890e-07,-2.466110429429328833e-07,-2.583544259402153511e-07,-2.700978089374978190e-07,-2.818411919347802868e-07,-2.935845749320627546e-07,-3.053279579293452225e-07,-3.170713409266276903e-07,-3.288147239239101581e-07,-3.405581069211926260e-07,-3.523014899184750938e-07,-3.640448729157575616e-07,-3.757882559130400295e-07,-3.875316389103224973e-07,-3.992750219076049651e-07,-4.110184049048874330e-07,-4.227617879021699008e-07,-4.345051708994523686e-07,-4.462485538967348365e-07,-4.579919368940173043e-07,-4.697353198912997721e-07,-4.814787028885822400e-07,-4.932220858858647078e-07,-5.049654688831471756e-07,-5.167088518804296435e-07,-5.284522348777121113e-07,-5.401956178749945791e-07,-5.519390008722770470e-07,-5.636823838695595148e-07,-5.754257668668419826e-07,-5.871691498641244505e-07,-5.989125328614069183e-07,-6.106559158586893861e-07,-6.223992988559718540e-07,-6.341426818532543218e-07,-6.458860648505367896e-07,-6.576294478478192575e-07,-6.693728308451017253e-07,-6.811162138423841931e-07,-6.928595968396666610e-07,-7.046029798369491288e-07,-7.163463628342315966e-07,-7.280897458315140645e-07,-7.398331288287965323e-07 +0.000000000000000000e+00,-1.375771765205591440e-08,-2.751543530411182881e-08,-4.127315295616773990e-08,-5.503087060822365100e-08,-6.878858826027956209e-08,-8.254630591233547980e-08,-9.630402356439139751e-08,-1.100617412164473152e-07,-1.238194588685032197e-07,-1.375771765205591242e-07,-1.513348941726150287e-07,-1.650926118246709331e-07,-1.788503294767268376e-07,-1.926080471287827421e-07,-2.063657647808386466e-07,-2.201234824328945510e-07,-2.338812000849504555e-07,-2.476389177370063335e-07,-2.613966353890622115e-07,-2.751543530411180895e-07,-2.889120706931739675e-07,-3.026697883452298456e-07,-3.164275059972857236e-07,-3.301852236493416016e-07,-3.439429413013974796e-07,-3.577006589534533576e-07,-3.714583766055092356e-07,-3.852160942575651136e-07,-3.989738119096209916e-07,-4.127315295616768696e-07,-4.264892472137327476e-07,-4.402469648657886256e-07,-4.540046825178445036e-07,-4.677624001699003816e-07,-4.815201178219563126e-07,-4.952778354740122435e-07,-5.090355531260681745e-07,-5.227932707781241054e-07,-5.365509884301800364e-07,-5.503087060822359673e-07,-5.640664237342918983e-07,-5.778241413863478292e-07,-5.915818590384037602e-07,-6.053395766904596911e-07,-6.190972943425156221e-07,-6.328550119945715530e-07,-6.466127296466274840e-07,-6.603704472986834149e-07,-6.741281649507393458e-07,-6.878858826027952768e-07,-7.016436002548512077e-07,-7.154013179069071387e-07,-7.291590355589630696e-07,-7.429167532110190006e-07,-7.566744708630749315e-07,-7.704321885151308625e-07,-7.841899061671867934e-07,-7.979476238192427244e-07,-8.117053414712986553e-07,-8.254630591233545863e-07,-8.392207767754105172e-07,-8.529784944274664482e-07,-8.667362120795223791e-07 +0.000000000000000000e+00,-1.279910676130373023e-08,-2.559821352260746046e-08,-3.839732028391118903e-08,-5.119642704521491430e-08,-6.399553380651863294e-08,-7.679464056782235159e-08,-8.959374732912607024e-08,-1.023928540904297889e-07,-1.151919608517335075e-07,-1.279910676130372130e-07,-1.407901743743409184e-07,-1.535892811356446238e-07,-1.663883878969483292e-07,-1.791874946582520346e-07,-1.919866014195557400e-07,-2.047857081808594454e-07,-2.175848149421631508e-07,-2.303839217034668563e-07,-2.431830284647705881e-07,-2.559821352260743200e-07,-2.687812419873780519e-07,-2.815803487486817838e-07,-2.943794555099855157e-07,-3.071785622712892476e-07,-3.199776690325929794e-07,-3.327767757938967113e-07,-3.455758825552004432e-07,-3.583749893165041751e-07,-3.711740960778079070e-07,-3.839732028391116389e-07,-3.967723096004153707e-07,-4.095714163617191026e-07,-4.223705231230228345e-07,-4.351696298843265664e-07,-4.479687366456302983e-07,-4.607678434069340301e-07,-4.735669501682377620e-07,-4.863660569295414939e-07,-4.991651636908452258e-07,-5.119642704521489577e-07,-5.247633772134526896e-07,-5.375624839747564214e-07,-5.503615907360601533e-07,-5.631606974973638852e-07,-5.759598042586676171e-07,-5.887589110199713490e-07,-6.015580177812750809e-07,-6.143571245425788127e-07,-6.271562313038825446e-07,-6.399553380651862765e-07,-6.527544448264900084e-07,-6.655535515877937403e-07,-6.783526583490974722e-07,-6.911517651104012040e-07,-7.039508718717049359e-07,-7.167499786330086678e-07,-7.295490853943123997e-07,-7.423481921556161316e-07,-7.551472989169198635e-07,-7.679464056782235953e-07,-7.807455124395273272e-07,-7.935446192008310591e-07,-8.063437259621347910e-07 +0.000000000000000000e+00,-1.246702375667418968e-08,-2.493404751334837936e-08,-3.740107127002256739e-08,-4.986809502669675211e-08,-6.233511878337094345e-08,-7.480214254004513478e-08,-8.726916629671932612e-08,-9.973619005339351746e-08,-1.122032138100677088e-07,-1.246702375667418869e-07,-1.371372613234160650e-07,-1.496042850800902431e-07,-1.620713088367644212e-07,-1.745383325934385993e-07,-1.870053563501127774e-07,-1.994723801067869555e-07,-2.119394038634611336e-07,-2.244064276201353117e-07,-2.368734513768094898e-07,-2.493404751334836679e-07,-2.618074988901578460e-07,-2.742745226468320241e-07,-2.867415464035062022e-07,-2.992085701601803803e-07,-3.116755939168545584e-07,-3.241426176735287365e-07,-3.366096414302029146e-07,-3.490766651868770927e-07,-3.615436889435512708e-07,-3.740107127002254489e-07,-3.864777364568996270e-07,-3.989447602135738051e-07,-4.114117839702479832e-07,-4.238788077269221613e-07,-4.363458314835963394e-07,-4.488128552402705175e-07,-4.612798789969446956e-07,-4.737469027536188737e-07,-4.862139265102931048e-07,-4.986809502669673358e-07,-5.111479740236415669e-07,-5.236149977803157979e-07,-5.360820215369900289e-07,-5.485490452936642600e-07,-5.610160690503384910e-07,-5.734830928070127221e-07,-5.859501165636869531e-07,-5.984171403203611841e-07,-6.108841640770354152e-07,-6.233511878337096462e-07,-6.358182115903838773e-07,-6.482852353470581083e-07,-6.607522591037323393e-07,-6.732192828604065704e-07,-6.856863066170808014e-07,-6.981533303737550325e-07,-7.106203541304292635e-07,-7.230873778871034946e-07,-7.355544016437777256e-07,-7.480214254004519566e-07,-7.604884491571261877e-07,-7.729554729138004187e-07,-7.854224966704746498e-07 +0.000000000000000000e+00,-1.451068604373983431e-08,-2.902137208747966861e-08,-4.353205813121950623e-08,-5.804274417495934385e-08,-7.255343021869918146e-08,-8.706411626243901246e-08,-1.015748023061788435e-07,-1.160854883499186745e-07,-1.305961743936585187e-07,-1.451068604373983629e-07,-1.596175464811382072e-07,-1.741282325248780514e-07,-1.886389185686178956e-07,-2.031496046123577399e-07,-2.176602906560975841e-07,-2.321709766998374283e-07,-2.466816627435772726e-07,-2.611923487873171433e-07,-2.757030348310570140e-07,-2.902137208747968847e-07,-3.047244069185367554e-07,-3.192350929622766261e-07,-3.337457790060164968e-07,-3.482564650497563675e-07,-3.627671510934962382e-07,-3.772778371372361089e-07,-3.917885231809759796e-07,-4.062992092247158503e-07,-4.208098952684557210e-07,-4.353205813121955917e-07,-4.498312673559354624e-07,-4.643419533996753331e-07,-4.788526394434152038e-07,-4.933633254871550745e-07,-5.078740115308949452e-07,-5.223846975746348159e-07,-5.368953836183746866e-07,-5.514060696621145573e-07,-5.659167557058544280e-07,-5.804274417495942987e-07,-5.949381277933341694e-07,-6.094488138370740401e-07,-6.239594998808139108e-07,-6.384701859245537815e-07,-6.529808719682936522e-07,-6.674915580120335229e-07,-6.820022440557733936e-07,-6.965129300995132643e-07,-7.110236161432531350e-07,-7.255343021869930058e-07,-7.400449882307328765e-07,-7.545556742744727472e-07,-7.690663603182126179e-07,-7.835770463619524886e-07,-7.980877324056923593e-07,-8.125984184494322300e-07,-8.271091044931721007e-07,-8.416197905369119714e-07,-8.561304765806518421e-07,-8.706411626243917128e-07,-8.851518486681315835e-07,-8.996625347118714542e-07,-9.141732207556113249e-07 +0.000000000000000000e+00,-1.279910676130181448e-08,-2.559821352260362896e-08,-3.839732028390544509e-08,-5.119642704520726453e-08,-6.399553380650907735e-08,-7.679464056781089018e-08,-8.959374732911270300e-08,-1.023928540904145158e-07,-1.151919608517163287e-07,-1.279910676130181547e-07,-1.407901743743199808e-07,-1.535892811356218068e-07,-1.663883878969236329e-07,-1.791874946582254589e-07,-1.919866014195272850e-07,-2.047857081808291111e-07,-2.175848149421309371e-07,-2.303839217034327632e-07,-2.431830284647345892e-07,-2.559821352260364153e-07,-2.687812419873382414e-07,-2.815803487486400674e-07,-2.943794555099418935e-07,-3.071785622712437195e-07,-3.199776690325455456e-07,-3.327767757938473716e-07,-3.455758825551491977e-07,-3.583749893164510238e-07,-3.711740960777528498e-07,-3.839732028390546759e-07,-3.967723096003565019e-07,-4.095714163616583280e-07,-4.223705231229601541e-07,-4.351696298842619801e-07,-4.479687366455638062e-07,-4.607678434068656322e-07,-4.735669501681674583e-07,-4.863660569294692844e-07,-4.991651636907711104e-07,-5.119642704520729365e-07,-5.247633772133747625e-07,-5.375624839746765886e-07,-5.503615907359784146e-07,-5.631606974972802407e-07,-5.759598042585820668e-07,-5.887589110198838928e-07,-6.015580177811857189e-07,-6.143571245424875449e-07,-6.271562313037893710e-07,-6.399553380650911971e-07,-6.527544448263930231e-07,-6.655535515876948492e-07,-6.783526583489966752e-07,-6.911517651102985013e-07,-7.039508718716003274e-07,-7.167499786329021534e-07,-7.295490853942039795e-07,-7.423481921555058055e-07,-7.551472989168076316e-07,-7.679464056781094576e-07,-7.807455124394112837e-07,-7.935446192007131098e-07,-8.063437259620149358e-07 +0.000000000000000000e+00,-1.246702375667173626e-08,-2.493404751334347253e-08,-3.740107127001520879e-08,-4.986809502668694506e-08,-6.233511878335868794e-08,-7.480214254003043082e-08,-8.726916629670217370e-08,-9.973619005337391658e-08,-1.122032138100456595e-07,-1.246702375667174023e-07,-1.371372613233891452e-07,-1.496042850800608881e-07,-1.620713088367326310e-07,-1.745383325934043739e-07,-1.870053563500761168e-07,-1.994723801067478596e-07,-2.119394038634196025e-07,-2.244064276200913454e-07,-2.368734513767630883e-07,-2.493404751334348576e-07,-2.618074988901066535e-07,-2.742745226467784493e-07,-2.867415464034502451e-07,-2.992085701601220409e-07,-3.116755939167938367e-07,-3.241426176734656326e-07,-3.366096414301374284e-07,-3.490766651868092242e-07,-3.615436889434810200e-07,-3.740107127001528158e-07,-3.864777364568246117e-07,-3.989447602134964075e-07,-4.114117839701682033e-07,-4.238788077268399991e-07,-4.363458314835117950e-07,-4.488128552401835908e-07,-4.612798789968553866e-07,-4.737469027535271824e-07,-4.862139265101989782e-07,-4.986809502668707741e-07,-5.111479740235425699e-07,-5.236149977802143657e-07,-5.360820215368861615e-07,-5.485490452935579573e-07,-5.610160690502297532e-07,-5.734830928069015490e-07,-5.859501165635733448e-07,-5.984171403202451406e-07,-6.108841640769169364e-07,-6.233511878335887323e-07,-6.358182115902605281e-07,-6.482852353469323239e-07,-6.607522591036041197e-07,-6.732192828602759156e-07,-6.856863066169477114e-07,-6.981533303736195072e-07,-7.106203541302913030e-07,-7.230873778869630988e-07,-7.355544016436348947e-07,-7.480214254003066905e-07,-7.604884491569784863e-07,-7.729554729136502821e-07,-7.854224966703220779e-07 +0.000000000000000000e+00,-1.451068604373756783e-08,-2.902137208747513566e-08,-4.353205813121270350e-08,-5.804274417495027133e-08,-7.255343021868783916e-08,-8.706411626242540699e-08,-1.015748023061629748e-07,-1.160854883499005427e-07,-1.305961743936381105e-07,-1.451068604373756783e-07,-1.596175464811132462e-07,-1.741282325248508140e-07,-1.886389185685883818e-07,-2.031496046123259496e-07,-2.176602906560635175e-07,-2.321709766998010853e-07,-2.466816627435386267e-07,-2.611923487872761680e-07,-2.757030348310137094e-07,-2.902137208747512508e-07,-3.047244069184887921e-07,-3.192350929622263335e-07,-3.337457790059638749e-07,-3.482564650497014162e-07,-3.627671510934389576e-07,-3.772778371371764989e-07,-3.917885231809140403e-07,-4.062992092246515817e-07,-4.208098952683891230e-07,-4.353205813121266644e-07,-4.498312673558642057e-07,-4.643419533996017471e-07,-4.788526394433392885e-07,-4.933633254870768298e-07,-5.078740115308143712e-07,-5.223846975745519126e-07,-5.368953836182894539e-07,-5.514060696620269953e-07,-5.659167557057645366e-07,-5.804274417495020780e-07,-5.949381277932396194e-07,-6.094488138369771607e-07,-6.239594998807147021e-07,-6.384701859244522435e-07,-6.529808719681897848e-07,-6.674915580119273262e-07,-6.820022440556648675e-07,-6.965129300994024089e-07,-7.110236161431399503e-07,-7.255343021868774916e-07,-7.400449882306150330e-07,-7.545556742743525744e-07,-7.690663603180901157e-07,-7.835770463618276571e-07,-7.980877324055651984e-07,-8.125984184493027398e-07,-8.271091044930402812e-07,-8.416197905367778225e-07,-8.561304765805153639e-07,-8.706411626242529053e-07,-8.851518486679904466e-07,-8.996625347117279880e-07,-9.141732207554655293e-07 +0.000000000000000000e+00,-1.339512449218212593e-08,-2.679024898436425186e-08,-4.018537347654637614e-08,-5.358049796872849711e-08,-6.697562246091061807e-08,-8.037074695309273904e-08,-9.376587144527486001e-08,-1.071609959374569810e-07,-1.205561204296391152e-07,-1.339512449218212626e-07,-1.473463694140034101e-07,-1.607414939061855575e-07,-1.741366183983677049e-07,-1.875317428905498524e-07,-2.009268673827319998e-07,-2.143219918749141472e-07,-2.277171163670962947e-07,-2.411122408592784421e-07,-2.545073653514605896e-07,-2.679024898436427370e-07,-2.812976143358248844e-07,-2.946927388280070319e-07,-3.080878633201891793e-07,-3.214829878123713267e-07,-3.348781123045534742e-07,-3.482732367967356216e-07,-3.616683612889177691e-07,-3.750634857810999165e-07,-3.884586102732820639e-07,-4.018537347654642114e-07,-4.152488592576463588e-07,-4.286439837498285062e-07,-4.420391082420106537e-07,-4.554342327341928011e-07,-4.688293572263749486e-07,-4.822244817185570960e-07,-4.956196062107391905e-07,-5.090147307029212850e-07,-5.224098551951033795e-07,-5.358049796872854740e-07,-5.492001041794675685e-07,-5.625952286716496630e-07,-5.759903531638317575e-07,-5.893854776560138520e-07,-6.027806021481959465e-07,-6.161757266403780410e-07,-6.295708511325601355e-07,-6.429659756247422300e-07,-6.563611001169243245e-07,-6.697562246091064190e-07,-6.831513491012885135e-07,-6.965464735934706080e-07,-7.099415980856527025e-07,-7.233367225778347970e-07,-7.367318470700168915e-07,-7.501269715621989860e-07,-7.635220960543810805e-07,-7.769172205465631750e-07,-7.903123450387452695e-07,-8.037074695309273640e-07,-8.171025940231094585e-07,-8.304977185152915529e-07,-8.438928430074736474e-07 +0.000000000000000000e+00,-1.310706354115848886e-08,-2.621412708231697772e-08,-3.932119062347546823e-08,-5.242825416463396205e-08,-6.553531770579244926e-08,-7.864238124695093646e-08,-9.174944478810942367e-08,-1.048565083292679109e-07,-1.179635718704263981e-07,-1.310706354115848985e-07,-1.441776989527433990e-07,-1.572847624939018994e-07,-1.703918260350603998e-07,-1.834988895762189003e-07,-1.966059531173774007e-07,-2.097130166585359012e-07,-2.228200801996944016e-07,-2.359271437408529020e-07,-2.490342072820114289e-07,-2.621412708231699559e-07,-2.752483343643284828e-07,-2.883553979054870097e-07,-3.014624614466455366e-07,-3.145695249878040635e-07,-3.276765885289625904e-07,-3.407836520701211173e-07,-3.538907156112796442e-07,-3.669977791524381711e-07,-3.801048426935966980e-07,-3.932119062347552249e-07,-4.063189697759137519e-07,-4.194260333170722788e-07,-4.325330968582308057e-07,-4.456401603993893326e-07,-4.587472239405478595e-07,-4.718542874817063864e-07,-4.849613510228649133e-07,-4.980684145640234932e-07,-5.111754781051820730e-07,-5.242825416463406529e-07,-5.373896051874992327e-07,-5.504966687286578126e-07,-5.636037322698163924e-07,-5.767107958109749723e-07,-5.898178593521335521e-07,-6.029249228932921320e-07,-6.160319864344507118e-07,-6.291390499756092917e-07,-6.422461135167678715e-07,-6.553531770579264514e-07,-6.684602405990850312e-07,-6.815673041402436111e-07,-6.946743676814021909e-07,-7.077814312225607707e-07,-7.208884947637193506e-07,-7.339955583048779304e-07,-7.471026218460365103e-07,-7.602096853871950901e-07,-7.733167489283536700e-07,-7.864238124695122498e-07,-7.995308760106708297e-07,-8.126379395518294095e-07,-8.257450030929879894e-07 +0.000000000000000000e+00,-1.520124295281353453e-08,-3.040248590562706907e-08,-4.560372885844060360e-08,-6.080497181125413813e-08,-7.600621476406766605e-08,-9.120745771688119396e-08,-1.064087006696947219e-07,-1.216099436225082498e-07,-1.368111865753217777e-07,-1.520124295281353056e-07,-1.672136724809488335e-07,-1.824149154337623615e-07,-1.976161583865758894e-07,-2.128174013393894173e-07,-2.280186442922029452e-07,-2.432198872450164466e-07,-2.584211301978299746e-07,-2.736223731506435025e-07,-2.888236161034570304e-07,-3.040248590562705583e-07,-3.192261020090840862e-07,-3.344273449618976141e-07,-3.496285879147111421e-07,-3.648298308675246700e-07,-3.800310738203381979e-07,-3.952323167731517258e-07,-4.104335597259652537e-07,-4.256348026787787816e-07,-4.408360456315923095e-07,-4.560372885844058375e-07,-4.712385315372193654e-07,-4.864397744900328933e-07,-5.016410174428464212e-07,-5.168422603956599491e-07,-5.320435033484734770e-07,-5.472447463012870050e-07,-5.624459892541005329e-07,-5.776472322069140608e-07,-5.928484751597275887e-07,-6.080497181125411166e-07,-6.232509610653546445e-07,-6.384522040181681724e-07,-6.536534469709817004e-07,-6.688546899237952283e-07,-6.840559328766087562e-07,-6.992571758294222841e-07,-7.144584187822358120e-07,-7.296596617350493399e-07,-7.448609046878628679e-07,-7.600621476406763958e-07,-7.752633905934899237e-07,-7.904646335463034516e-07,-8.056658764991169795e-07,-8.208671194519305074e-07,-8.360683624047440353e-07,-8.512696053575575633e-07,-8.664708483103710912e-07,-8.816720912631846191e-07,-8.968733342159981470e-07,-9.120745771688116749e-07,-9.272758201216252028e-07,-9.424770630744387308e-07,-9.576783060272522587e-07 +0.000000000000000000e+00,-1.339512449218095464e-08,-2.679024898436190929e-08,-4.018537347654286228e-08,-5.358049796872381196e-08,-6.697562246090475502e-08,-8.037074695308569808e-08,-9.376587144526664114e-08,-1.071609959374475842e-07,-1.205561204296285273e-07,-1.339512449218094571e-07,-1.473463694139903869e-07,-1.607414939061713168e-07,-1.741366183983522466e-07,-1.875317428905331764e-07,-2.009268673827141062e-07,-2.143219918748950361e-07,-2.277171163670759659e-07,-2.411122408592568957e-07,-2.545073653514378255e-07,-2.679024898436187554e-07,-2.812976143357996852e-07,-2.946927388279806150e-07,-3.080878633201615449e-07,-3.214829878123424747e-07,-3.348781123045234045e-07,-3.482732367967043343e-07,-3.616683612888852642e-07,-3.750634857810661940e-07,-3.884586102732471238e-07,-4.018537347654280537e-07,-4.152488592576089835e-07,-4.286439837497899133e-07,-4.420391082419708431e-07,-4.554342327341517730e-07,-4.688293572263327028e-07,-4.822244817185136856e-07,-4.956196062106947213e-07,-5.090147307028757570e-07,-5.224098551950567927e-07,-5.358049796872378284e-07,-5.492001041794188641e-07,-5.625952286715998998e-07,-5.759903531637809355e-07,-5.893854776559619712e-07,-6.027806021481430069e-07,-6.161757266403240426e-07,-6.295708511325050783e-07,-6.429659756246861140e-07,-6.563611001168671498e-07,-6.697562246090481855e-07,-6.831513491012292212e-07,-6.965464735934102569e-07,-7.099415980855912926e-07,-7.233367225777723283e-07,-7.367318470699533640e-07,-7.501269715621343997e-07,-7.635220960543154354e-07,-7.769172205464964711e-07,-7.903123450386775068e-07,-8.037074695308585425e-07,-8.171025940230395782e-07,-8.304977185152206139e-07,-8.438928430074016496e-07 +0.000000000000000000e+00,-1.310706354115703468e-08,-2.621412708231406935e-08,-3.932119062347110734e-08,-5.242825416462814532e-08,-6.553531770578518330e-08,-7.864238124694221467e-08,-9.174944478809924604e-08,-1.048565083292562774e-07,-1.179635718704133088e-07,-1.310706354115703401e-07,-1.441776989527273847e-07,-1.572847624938844293e-07,-1.703918260350414739e-07,-1.834988895761985185e-07,-1.966059531173555631e-07,-2.097130166585126078e-07,-2.228200801996696524e-07,-2.359271437408266970e-07,-2.490342072819837416e-07,-2.621412708231407862e-07,-2.752483343642978308e-07,-2.883553979054548754e-07,-3.014624614466119200e-07,-3.145695249877689646e-07,-3.276765885289260092e-07,-3.407836520700830538e-07,-3.538907156112400984e-07,-3.669977791523971430e-07,-3.801048426935541876e-07,-3.932119062347112322e-07,-4.063189697758682768e-07,-4.194260333170253214e-07,-4.325330968581823660e-07,-4.456401603993394106e-07,-4.587472239404964552e-07,-4.718542874816534998e-07,-4.849613510228104914e-07,-4.980684145639674831e-07,-5.111754781051244748e-07,-5.242825416462814664e-07,-5.373896051874384581e-07,-5.504966687285954498e-07,-5.636037322697524414e-07,-5.767107958109094331e-07,-5.898178593520664247e-07,-6.029249228932234164e-07,-6.160319864343804081e-07,-6.291390499755373997e-07,-6.422461135166943914e-07,-6.553531770578513831e-07,-6.684602405990083747e-07,-6.815673041401653664e-07,-6.946743676813223580e-07,-7.077814312224793497e-07,-7.208884947636363414e-07,-7.339955583047933330e-07,-7.471026218459503247e-07,-7.602096853871073164e-07,-7.733167489282643080e-07,-7.864238124694212997e-07,-7.995308760105782913e-07,-8.126379395517352830e-07,-8.257450030928922747e-07 +0.000000000000000000e+00,-1.520124295281204230e-08,-3.040248590562408460e-08,-4.560372885843612359e-08,-6.080497181124815596e-08,-7.600621476406018833e-08,-9.120745771687222071e-08,-1.064087006696842531e-07,-1.216099436224962855e-07,-1.368111865753083046e-07,-1.520124295281203237e-07,-1.672136724809323429e-07,-1.824149154337443620e-07,-1.976161583865563811e-07,-2.128174013393684003e-07,-2.280186442921804194e-07,-2.432198872449924121e-07,-2.584211301978044048e-07,-2.736223731506163974e-07,-2.888236161034283901e-07,-3.040248590562403828e-07,-3.192261020090523754e-07,-3.344273449618643681e-07,-3.496285879146763608e-07,-3.648298308674883534e-07,-3.800310738203003461e-07,-3.952323167731123388e-07,-4.104335597259243314e-07,-4.256348026787363241e-07,-4.408360456315483168e-07,-4.560372885843603094e-07,-4.712385315371723021e-07,-4.864397744899842948e-07,-5.016410174427962345e-07,-5.168422603956081742e-07,-5.320435033484201140e-07,-5.472447463012320537e-07,-5.624459892540439934e-07,-5.776472322068559331e-07,-5.928484751596678729e-07,-6.080497181124798126e-07,-6.232509610652917523e-07,-6.384522040181036921e-07,-6.536534469709156318e-07,-6.688546899237275715e-07,-6.840559328765395112e-07,-6.992571758293514510e-07,-7.144584187821633907e-07,-7.296596617349753304e-07,-7.448609046877872702e-07,-7.600621476405992099e-07,-7.752633905934111496e-07,-7.904646335462230893e-07,-8.056658764990350291e-07,-8.208671194518469688e-07,-8.360683624046589085e-07,-8.512696053574708483e-07,-8.664708483102827880e-07,-8.816720912630947277e-07,-8.968733342159066675e-07,-9.120745771687186072e-07,-9.272758201215305469e-07,-9.424770630743424866e-07,-9.576783060271544264e-07 +0.000000000000000000e+00,-1.394370230541101196e-08,-2.788740461082202391e-08,-4.183110691623303752e-08,-5.577480922164405444e-08,-6.971851152705507136e-08,-8.366221383246608828e-08,-9.760591613787710519e-08,-1.115496184432881221e-07,-1.254933207486991390e-07,-1.394370230541101427e-07,-1.533807253595211464e-07,-1.673244276649321501e-07,-1.812681299703431538e-07,-1.952118322757541574e-07,-2.091555345811651611e-07,-2.230992368865761648e-07,-2.370429391919871685e-07,-2.509866414973981722e-07,-2.649303438028092023e-07,-2.788740461082202325e-07,-2.928177484136312626e-07,-3.067614507190422928e-07,-3.207051530244533229e-07,-3.346488553298643531e-07,-3.485925576352753833e-07,-3.625362599406864134e-07,-3.764799622460974436e-07,-3.904236645515084737e-07,-4.043673668569195039e-07,-4.183110691623305340e-07,-4.322547714677415642e-07,-4.461984737731525943e-07,-4.601421760785636245e-07,-4.740858783839746546e-07,-4.880295806893856848e-07,-5.019732829947966620e-07,-5.159169853002076392e-07,-5.298606876056186164e-07,-5.438043899110295936e-07,-5.577480922164405709e-07,-5.716917945218515481e-07,-5.856354968272625253e-07,-5.995791991326735025e-07,-6.135229014380844797e-07,-6.274666037434954569e-07,-6.414103060489064341e-07,-6.553540083543174114e-07,-6.692977106597283886e-07,-6.832414129651393658e-07,-6.971851152705503430e-07,-7.111288175759613202e-07,-7.250725198813722974e-07,-7.390162221867832746e-07,-7.529599244921942518e-07,-7.669036267976052291e-07,-7.808473291030162063e-07,-7.947910314084271835e-07,-8.087347337138381607e-07,-8.226784360192491379e-07,-8.366221383246601151e-07,-8.505658406300710923e-07,-8.645095429354820696e-07,-8.784532452408930468e-07 +0.000000000000000000e+00,-1.366965482340264861e-08,-2.733930964680529722e-08,-4.100896447020794252e-08,-5.467861929361058782e-08,-6.834827411701323312e-08,-8.201792894041588504e-08,-9.568758376381853696e-08,-1.093572385872211889e-07,-1.230268934106238540e-07,-1.366965482340265192e-07,-1.503662030574291843e-07,-1.640358578808318495e-07,-1.777055127042345146e-07,-1.913751675276371798e-07,-2.050448223510398450e-07,-2.187144771744425101e-07,-2.323841319978451753e-07,-2.460537868212478139e-07,-2.597234416446504526e-07,-2.733930964680530913e-07,-2.870627512914557300e-07,-3.007324061148583687e-07,-3.144020609382610074e-07,-3.280717157616636460e-07,-3.417413705850662847e-07,-3.554110254084689234e-07,-3.690806802318715621e-07,-3.827503350552742008e-07,-3.964199898786768395e-07,-4.100896447020794781e-07,-4.237592995254821168e-07,-4.374289543488847555e-07,-4.510986091722873942e-07,-4.647682639956900329e-07,-4.784379188190926716e-07,-4.921075736424953102e-07,-5.057772284658979489e-07,-5.194468832893005876e-07,-5.331165381127032263e-07,-5.467861929361058650e-07,-5.604558477595085037e-07,-5.741255025829111423e-07,-5.877951574063137810e-07,-6.014648122297164197e-07,-6.151344670531190584e-07,-6.288041218765216971e-07,-6.424737766999243358e-07,-6.561434315233269745e-07,-6.698130863467296131e-07,-6.834827411701322518e-07,-6.971523959935348905e-07,-7.108220508169375292e-07,-7.244917056403401679e-07,-7.381613604637428066e-07,-7.518310152871454452e-07,-7.655006701105480839e-07,-7.791703249339507226e-07,-7.928399797573533613e-07,-8.065096345807560000e-07,-8.201792894041586387e-07,-8.338489442275612773e-07,-8.475185990509639160e-07,-8.611882538743665547e-07 +0.000000000000000000e+00,-1.582903562572589319e-08,-3.165807125145178638e-08,-4.748710687717767958e-08,-6.331614250290357277e-08,-7.914517812862946596e-08,-9.497421375435535915e-08,-1.108032493800812523e-07,-1.266322850058071455e-07,-1.424613206315330387e-07,-1.582903562572589319e-07,-1.741193918829848251e-07,-1.899484275087107183e-07,-2.057774631344366115e-07,-2.216064987601625047e-07,-2.374355343858883979e-07,-2.532645700116142911e-07,-2.690936056373401843e-07,-2.849226412630660775e-07,-3.007516768887919707e-07,-3.165807125145178638e-07,-3.324097481402437570e-07,-3.482387837659696502e-07,-3.640678193916955434e-07,-3.798968550174214366e-07,-3.957258906431473298e-07,-4.115549262688732230e-07,-4.273839618945991162e-07,-4.432129975203250094e-07,-4.590420331460509026e-07,-4.748710687717767958e-07,-4.907001043975026890e-07,-5.065291400232285822e-07,-5.223581756489544753e-07,-5.381872112746803685e-07,-5.540162469004062617e-07,-5.698452825261321549e-07,-5.856743181518580481e-07,-6.015033537775839413e-07,-6.173323894033098345e-07,-6.331614250290357277e-07,-6.489904606547616209e-07,-6.648194962804875141e-07,-6.806485319062134073e-07,-6.964775675319393005e-07,-7.123066031576651937e-07,-7.281356387833910868e-07,-7.439646744091169800e-07,-7.597937100348428732e-07,-7.756227456605687664e-07,-7.914517812862946596e-07,-8.072808169120205528e-07,-8.231098525377464460e-07,-8.389388881634723392e-07,-8.547679237891982324e-07,-8.705969594149241256e-07,-8.864259950406500188e-07,-9.022550306663759120e-07,-9.180840662921018052e-07,-9.339131019178276983e-07,-9.497421375435535915e-07,-9.655711731692795906e-07,-9.814002087950055897e-07,-9.972292444207315888e-07 +0.000000000000000000e+00,-1.394370230540999783e-08,-2.788740461081999566e-08,-4.183110691622999350e-08,-5.577480922163999133e-08,-6.971851152704998916e-08,-8.366221383245998699e-08,-9.760591613786998482e-08,-1.115496184432799827e-07,-1.254933207486899805e-07,-1.394370230540999783e-07,-1.533807253595099762e-07,-1.673244276649199740e-07,-1.812681299703299718e-07,-1.952118322757399696e-07,-2.091555345811499675e-07,-2.230992368865599653e-07,-2.370429391919699631e-07,-2.509866414973799610e-07,-2.649303438027899323e-07,-2.788740461081999037e-07,-2.928177484136098751e-07,-3.067614507190198464e-07,-3.207051530244298178e-07,-3.346488553298397891e-07,-3.485925576352497605e-07,-3.625362599406597319e-07,-3.764799622460697032e-07,-3.904236645514796746e-07,-4.043673668568896460e-07,-4.183110691622996173e-07,-4.322547714677095887e-07,-4.461984737731195600e-07,-4.601421760785295314e-07,-4.740858783839395028e-07,-4.880295806893494741e-07,-5.019732829947593926e-07,-5.159169853001693110e-07,-5.298606876055792294e-07,-5.438043899109891478e-07,-5.577480922163990662e-07,-5.716917945218089847e-07,-5.856354968272189031e-07,-5.995791991326288215e-07,-6.135229014380387399e-07,-6.274666037434486584e-07,-6.414103060488585768e-07,-6.553540083542684952e-07,-6.692977106596784136e-07,-6.832414129650883320e-07,-6.971851152704982505e-07,-7.111288175759081689e-07,-7.250725198813180873e-07,-7.390162221867280057e-07,-7.529599244921379242e-07,-7.669036267975478426e-07,-7.808473291029577610e-07,-7.947910314083676794e-07,-8.087347337137775978e-07,-8.226784360191875163e-07,-8.366221383245974347e-07,-8.505658406300073531e-07,-8.645095429354172715e-07,-8.784532452408271900e-07 +0.000000000000000000e+00,-1.366965482340158320e-08,-2.733930964680316640e-08,-4.100896447020475291e-08,-5.467861929360633942e-08,-6.834827411700792593e-08,-8.201792894040950582e-08,-9.568758376381108572e-08,-1.093572385872126656e-07,-1.230268934106142455e-07,-1.366965482340158254e-07,-1.503662030574174053e-07,-1.640358578808189852e-07,-1.777055127042205651e-07,-1.913751675276221450e-07,-2.050448223510237249e-07,-2.187144771744253047e-07,-2.323841319978268846e-07,-2.460537868212284381e-07,-2.597234416446300180e-07,-2.733930964680315978e-07,-2.870627512914331777e-07,-3.007324061148347576e-07,-3.144020609382363375e-07,-3.280717157616379174e-07,-3.417413705850394973e-07,-3.554110254084410772e-07,-3.690806802318426571e-07,-3.827503350552442370e-07,-3.964199898786458169e-07,-4.100896447020473968e-07,-4.237592995254489767e-07,-4.374289543488505566e-07,-4.510986091722521365e-07,-4.647682639956537163e-07,-4.784379188190552962e-07,-4.921075736424568761e-07,-5.057772284658584560e-07,-5.194468832892600359e-07,-5.331165381126616158e-07,-5.467861929360631957e-07,-5.604558477594647756e-07,-5.741255025828663555e-07,-5.877951574062679354e-07,-6.014648122296695153e-07,-6.151344670530710952e-07,-6.288041218764726751e-07,-6.424737766998742549e-07,-6.561434315232758348e-07,-6.698130863466774147e-07,-6.834827411700789946e-07,-6.971523959934805745e-07,-7.108220508168821544e-07,-7.244917056402837343e-07,-7.381613604636853142e-07,-7.518310152870868941e-07,-7.655006701104884740e-07,-7.791703249338900539e-07,-7.928399797572916338e-07,-8.065096345806932137e-07,-8.201792894040947935e-07,-8.338489442274963734e-07,-8.475185990508979533e-07,-8.611882538742995332e-07 +0.000000000000000000e+00,-1.582903562572472190e-08,-3.165807125144944381e-08,-4.748710687717416571e-08,-6.331614250289888762e-08,-7.914517812862361614e-08,-9.497421375434834466e-08,-1.108032493800730732e-07,-1.266322850057978017e-07,-1.424613206315225302e-07,-1.582903562572472587e-07,-1.741193918829719873e-07,-1.899484275086967158e-07,-2.057774631344214443e-07,-2.216064987601461728e-07,-2.374355343858709014e-07,-2.532645700115956564e-07,-2.690936056373203849e-07,-2.849226412630451134e-07,-3.007516768887698419e-07,-3.165807125144945704e-07,-3.324097481402192990e-07,-3.482387837659440275e-07,-3.640678193916687560e-07,-3.798968550173934845e-07,-3.957258906431182130e-07,-4.115549262688429416e-07,-4.273839618945676701e-07,-4.432129975202923986e-07,-4.590420331460171271e-07,-4.748710687717418557e-07,-4.907001043974665842e-07,-5.065291400231913127e-07,-5.223581756489160412e-07,-5.381872112746407697e-07,-5.540162469003654983e-07,-5.698452825260902268e-07,-5.856743181518149553e-07,-6.015033537775396838e-07,-6.173323894032644124e-07,-6.331614250289891409e-07,-6.489904606547138694e-07,-6.648194962804385979e-07,-6.806485319061633264e-07,-6.964775675318880550e-07,-7.123066031576127835e-07,-7.281356387833375120e-07,-7.439646744090622405e-07,-7.597937100347869691e-07,-7.756227456605116976e-07,-7.914517812862364261e-07,-8.072808169119611546e-07,-8.231098525376858831e-07,-8.389388881634106117e-07,-8.547679237891353402e-07,-8.705969594148600687e-07,-8.864259950405847972e-07,-9.022550306663095258e-07,-9.180840662920342543e-07,-9.339131019177589828e-07,-9.497421375434837113e-07,-9.655711731692084398e-07,-9.814002087949331684e-07,-9.972292444206578969e-07 +0.000000000000000000e+00,-1.452586011209328849e-08,-2.905172022418657697e-08,-4.357758033627986877e-08,-5.810344044837316056e-08,-7.262930056046645236e-08,-8.715516067255973753e-08,-1.016810207846530227e-07,-1.162068808967463079e-07,-1.307327410088395798e-07,-1.452586011209328518e-07,-1.597844612330261237e-07,-1.743103213451193957e-07,-1.888361814572126676e-07,-2.033620415693059395e-07,-2.178879016813992115e-07,-2.324137617934924834e-07,-2.469396219055857554e-07,-2.614654820176790538e-07,-2.759913421297723522e-07,-2.905172022418656506e-07,-3.050430623539589490e-07,-3.195689224660522474e-07,-3.340947825781455458e-07,-3.486206426902388443e-07,-3.631465028023321427e-07,-3.776723629144254411e-07,-3.921982230265187395e-07,-4.067240831386120379e-07,-4.212499432507053363e-07,-4.357758033627986347e-07,-4.503016634748919331e-07,-4.648275235869852316e-07,-4.793533836990785300e-07,-4.938792438111718284e-07,-5.084051039232651268e-07,-5.229309640353584252e-07,-5.374568241474517236e-07,-5.519826842595450220e-07,-5.665085443716383204e-07,-5.810344044837316189e-07,-5.955602645958249173e-07,-6.100861247079182157e-07,-6.246119848200115141e-07,-6.391378449321048125e-07,-6.536637050441981109e-07,-6.681895651562914093e-07,-6.827154252683847077e-07,-6.972412853804780061e-07,-7.117671454925713046e-07,-7.262930056046646030e-07,-7.408188657167579014e-07,-7.553447258288511998e-07,-7.698705859409444982e-07,-7.843964460530377966e-07,-7.989223061651310950e-07,-8.134481662772243934e-07,-8.279740263893176919e-07,-8.424998865014109903e-07,-8.570257466135042887e-07,-8.715516067255975871e-07,-8.860774668376908855e-07,-9.006033269497841839e-07,-9.151291870618774823e-07 +0.000000000000000000e+00,-1.452871964817982685e-08,-2.905743929635965370e-08,-4.358615894453948386e-08,-5.811487859271931401e-08,-7.264359824089914417e-08,-8.717231788907896771e-08,-1.017010375372587913e-07,-1.162297571854386148e-07,-1.307584768336184516e-07,-1.452871964817982883e-07,-1.598159161299781251e-07,-1.743446357781579619e-07,-1.888733554263377987e-07,-2.034020750745176354e-07,-2.179307947226974722e-07,-2.324595143708773090e-07,-2.469882340190571458e-07,-2.615169536672370090e-07,-2.760456733154168723e-07,-2.905743929635967355e-07,-3.051031126117765988e-07,-3.196318322599564620e-07,-3.341605519081363252e-07,-3.486892715563161885e-07,-3.632179912044960517e-07,-3.777467108526759150e-07,-3.922754305008557782e-07,-4.068041501490356415e-07,-4.213328697972155047e-07,-4.358615894453953680e-07,-4.503903090935752312e-07,-4.649190287417550945e-07,-4.794477483899350106e-07,-4.939764680381149268e-07,-5.085051876862948430e-07,-5.230339073344747592e-07,-5.375626269826546754e-07,-5.520913466308345916e-07,-5.666200662790145077e-07,-5.811487859271944239e-07,-5.956775055753743401e-07,-6.102062252235542563e-07,-6.247349448717341725e-07,-6.392636645199140887e-07,-6.537923841680940049e-07,-6.683211038162739210e-07,-6.828498234644538372e-07,-6.973785431126337534e-07,-7.119072627608136696e-07,-7.264359824089935858e-07,-7.409647020571735020e-07,-7.554934217053534181e-07,-7.700221413535333343e-07,-7.845508610017132505e-07,-7.990795806498931667e-07,-8.136083002980730829e-07,-8.281370199462529991e-07,-8.426657395944329153e-07,-8.571944592426128314e-07,-8.717231788907927476e-07,-8.862518985389726638e-07,-9.007806181871525800e-07,-9.153093378353324962e-07 +0.000000000000000000e+00,-1.422573416965490978e-08,-2.845146833930981955e-08,-4.267720250896473098e-08,-5.690293667861964572e-08,-7.112867084827456046e-08,-8.535440501792947520e-08,-9.958013918758438994e-08,-1.138058733572393047e-07,-1.280316075268942194e-07,-1.422573416965491209e-07,-1.564830758662040224e-07,-1.707088100358589239e-07,-1.849345442055138254e-07,-1.991602783751687269e-07,-2.133860125448236284e-07,-2.276117467144785299e-07,-2.418374808841334314e-07,-2.560632150537883329e-07,-2.702889492234432344e-07,-2.845146833930981360e-07,-2.987404175627530375e-07,-3.129661517324079390e-07,-3.271918859020628405e-07,-3.414176200717177420e-07,-3.556433542413726435e-07,-3.698690884110275450e-07,-3.840948225806824465e-07,-3.983205567503373480e-07,-4.125462909199922495e-07,-4.267720250896471510e-07,-4.409977592593020525e-07,-4.552234934289569540e-07,-4.694492275986118555e-07,-4.836749617682667570e-07,-4.979006959379217114e-07,-5.121264301075766659e-07,-5.263521642772316203e-07,-5.405778984468865748e-07,-5.548036326165415292e-07,-5.690293667861964837e-07,-5.832551009558514381e-07,-5.974808351255063926e-07,-6.117065692951613470e-07,-6.259323034648163014e-07,-6.401580376344712559e-07,-6.543837718041262103e-07,-6.686095059737811648e-07,-6.828352401434361192e-07,-6.970609743130910737e-07,-7.112867084827460281e-07,-7.255124426524009825e-07,-7.397381768220559370e-07,-7.539639109917108914e-07,-7.681896451613658459e-07,-7.824153793310208003e-07,-7.966411135006757548e-07,-8.108668476703307092e-07,-8.250925818399856636e-07,-8.393183160096406181e-07,-8.535440501792955725e-07,-8.677697843489505270e-07,-8.819955185186054814e-07,-8.962212526882604359e-07 +0.000000000000000000e+00,-1.646292753004163975e-08,-3.292585506008327950e-08,-4.938878259012491925e-08,-6.585171012016655900e-08,-8.231463765020820537e-08,-9.877756518024985174e-08,-1.152404927102914981e-07,-1.317034202403331445e-07,-1.481663477703747908e-07,-1.646292753004164372e-07,-1.810922028304580836e-07,-1.975551303604997299e-07,-2.140180578905413763e-07,-2.304809854205830227e-07,-2.469439129506246690e-07,-2.634068404806663419e-07,-2.798697680107080147e-07,-2.963326955407496876e-07,-3.127956230707913604e-07,-3.292585506008330332e-07,-3.457214781308747061e-07,-3.621844056609163789e-07,-3.786473331909580517e-07,-3.951102607209997246e-07,-4.115731882510413974e-07,-4.280361157810830703e-07,-4.444990433111247431e-07,-4.609619708411664159e-07,-4.774248983712081417e-07,-4.938878259012498675e-07,-5.103507534312915933e-07,-5.268136809613333190e-07,-5.432766084913750448e-07,-5.597395360214167706e-07,-5.762024635514584964e-07,-5.926653910815002221e-07,-6.091283186115419479e-07,-6.255912461415836737e-07,-6.420541736716253995e-07,-6.585171012016671253e-07,-6.749800287317088510e-07,-6.914429562617505768e-07,-7.079058837917923026e-07,-7.243688113218340284e-07,-7.408317388518757541e-07,-7.572946663819174799e-07,-7.737575939119592057e-07,-7.902205214420009315e-07,-8.066834489720426572e-07,-8.231463765020843830e-07,-8.396093040321261088e-07,-8.560722315621678346e-07,-8.725351590922095603e-07,-8.889980866222512861e-07,-9.054610141522930119e-07,-9.219239416823347377e-07,-9.383868692123764635e-07,-9.548497967424181892e-07,-9.713127242724599150e-07,-9.877756518025016408e-07,-1.004238579332543367e-06,-1.020701506862585092e-06,-1.037164434392626818e-06 +0.000000000000000000e+00,-1.452814172474111767e-08,-2.905628344948223534e-08,-4.358442517422335632e-08,-5.811256689896447730e-08,-7.264070862370559827e-08,-8.716885034844671264e-08,-1.016969920731878270e-07,-1.162251337979289414e-07,-1.307532755226700425e-07,-1.452814172474111436e-07,-1.598095589721522447e-07,-1.743377006968933459e-07,-1.888658424216344470e-07,-2.033939841463755481e-07,-2.179221258711166492e-07,-2.324502675958577504e-07,-2.469784093205988515e-07,-2.615065510453399791e-07,-2.760346927700811067e-07,-2.905628344948222343e-07,-3.050909762195633619e-07,-3.196191179443044895e-07,-3.341472596690456171e-07,-3.486754013937867447e-07,-3.632035431185278723e-07,-3.777316848432689999e-07,-3.922598265680101274e-07,-4.067879682927512550e-07,-4.213161100174923826e-07,-4.358442517422335102e-07,-4.503723934669746378e-07,-4.649005351917157654e-07,-4.794286769164568930e-07,-4.939568186411980206e-07,-5.084849603659391482e-07,-5.230131020906802758e-07,-5.375412438154214034e-07,-5.520693855401625310e-07,-5.665975272649036586e-07,-5.811256689896447862e-07,-5.956538107143859138e-07,-6.101819524391270414e-07,-6.247100941638681690e-07,-6.392382358886092966e-07,-6.537663776133504242e-07,-6.682945193380915518e-07,-6.828226610628326794e-07,-6.973508027875738070e-07,-7.118789445123149346e-07,-7.264070862370560622e-07,-7.409352279617971897e-07,-7.554633696865383173e-07,-7.699915114112794449e-07,-7.845196531360205725e-07,-7.990477948607617001e-07,-8.135759365855028277e-07,-8.281040783102439553e-07,-8.426322200349850829e-07,-8.571603617597262105e-07,-8.716885034844673381e-07,-8.862166452092084657e-07,-9.007447869339495933e-07,-9.152729286586907209e-07 +0.000000000000000000e+00,-1.646633251004256998e-08,-3.293266502008513996e-08,-4.939899753012771325e-08,-6.586533004017029316e-08,-8.233166255021287307e-08,-9.879799506025545297e-08,-1.152643275702980329e-07,-1.317306600803406128e-07,-1.481969925903831927e-07,-1.646633251004257726e-07,-1.811296576104683525e-07,-1.975959901205109324e-07,-2.140623226305535123e-07,-2.305286551405960922e-07,-2.469949876506386721e-07,-2.634613201606812785e-07,-2.799276526707238849e-07,-2.963939851807664913e-07,-3.128603176908090976e-07,-3.293266502008517040e-07,-3.457929827108943104e-07,-3.622593152209369168e-07,-3.787256477309795231e-07,-3.951919802410221295e-07,-4.116583127510647359e-07,-4.281246452611073423e-07,-4.445909777711499487e-07,-4.610573102811925550e-07,-4.775236427912351614e-07,-4.939899753012777678e-07,-5.104563078113203742e-07,-5.269226403213629805e-07,-5.433889728314055869e-07,-5.598553053414481933e-07,-5.763216378514907997e-07,-5.927879703615334060e-07,-6.092543028715760124e-07,-6.257206353816186188e-07,-6.421869678916612252e-07,-6.586533004017038316e-07,-6.751196329117464379e-07,-6.915859654217890443e-07,-7.080522979318316507e-07,-7.245186304418742571e-07,-7.409849629519168634e-07,-7.574512954619594698e-07,-7.739176279720020762e-07,-7.903839604820446826e-07,-8.068502929920872889e-07,-8.233166255021298953e-07,-8.397829580121725017e-07,-8.562492905222151081e-07,-8.727156230322577145e-07,-8.891819555423003208e-07,-9.056482880523429272e-07,-9.221146205623855336e-07,-9.385809530724281400e-07,-9.550472855824707463e-07,-9.715136180925133527e-07,-9.879799506025559591e-07,-1.004446283112598565e-06,-1.020912615622641172e-06,-1.037378948132683778e-06 +0.000000000000000000e+00,-1.452586011209257049e-08,-2.905172022418514099e-08,-4.357758033627771148e-08,-5.810344044837028197e-08,-7.262930056046285247e-08,-8.715516067255542296e-08,-1.016810207846479935e-07,-1.162068808967405639e-07,-1.307327410088331212e-07,-1.452586011209256785e-07,-1.597844612330182357e-07,-1.743103213451107930e-07,-1.888361814572033502e-07,-2.033620415692959075e-07,-2.178879016813884648e-07,-2.324137617934810220e-07,-2.469396219055735793e-07,-2.614654820176661365e-07,-2.759913421297586938e-07,-2.905172022418512510e-07,-3.050430623539438083e-07,-3.195689224660363656e-07,-3.340947825781289228e-07,-3.486206426902214801e-07,-3.631465028023140373e-07,-3.776723629144065946e-07,-3.921982230264991519e-07,-4.067240831385917091e-07,-4.212499432506842664e-07,-4.357758033627768236e-07,-4.503016634748693809e-07,-4.648275235869619381e-07,-4.793533836990544954e-07,-4.938792438111470527e-07,-5.084051039232396099e-07,-5.229309640353321672e-07,-5.374568241474247244e-07,-5.519826842595172817e-07,-5.665085443716098390e-07,-5.810344044837023962e-07,-5.955602645957949535e-07,-6.100861247078875107e-07,-6.246119848199800680e-07,-6.391378449320726252e-07,-6.536637050441651825e-07,-6.681895651562577398e-07,-6.827154252683502970e-07,-6.972412853804428543e-07,-7.117671454925354115e-07,-7.262930056046279688e-07,-7.408188657167205261e-07,-7.553447258288130833e-07,-7.698705859409056406e-07,-7.843964460529981978e-07,-7.989223061650907551e-07,-8.134481662771833123e-07,-8.279740263892758696e-07,-8.424998865013684269e-07,-8.570257466134609841e-07,-8.715516067255535414e-07,-8.860774668376460986e-07,-9.006033269497386559e-07,-9.151291870618312132e-07 +0.000000000000000000e+00,-1.452814172474075206e-08,-2.905628344948150411e-08,-4.358442517422225782e-08,-5.811256689896301484e-08,-7.264070862370377186e-08,-8.716885034844452888e-08,-1.016969920731852859e-07,-1.162251337979260429e-07,-1.307532755226668132e-07,-1.452814172474075702e-07,-1.598095589721483272e-07,-1.743377006968890842e-07,-1.888658424216298412e-07,-2.033939841463705983e-07,-2.179221258711113553e-07,-2.324502675958521123e-07,-2.469784093205928693e-07,-2.615065510453336263e-07,-2.760346927700743834e-07,-2.905628344948151404e-07,-3.050909762195558974e-07,-3.196191179442966544e-07,-3.341472596690374114e-07,-3.486754013937781685e-07,-3.632035431185189255e-07,-3.777316848432596825e-07,-3.922598265680004395e-07,-4.067879682927411965e-07,-4.213161100174819535e-07,-4.358442517422227106e-07,-4.503723934669634676e-07,-4.649005351917042246e-07,-4.794286769164450346e-07,-4.939568186411858445e-07,-5.084849603659266545e-07,-5.230131020906674644e-07,-5.375412438154082744e-07,-5.520693855401490844e-07,-5.665975272648898943e-07,-5.811256689896307043e-07,-5.956538107143715142e-07,-6.101819524391123242e-07,-6.247100941638531341e-07,-6.392382358885939441e-07,-6.537663776133347541e-07,-6.682945193380755640e-07,-6.828226610628163740e-07,-6.973508027875571839e-07,-7.118789445122979939e-07,-7.264070862370388039e-07,-7.409352279617796138e-07,-7.554633696865204238e-07,-7.699915114112612337e-07,-7.845196531360020437e-07,-7.990477948607428536e-07,-8.135759365854836636e-07,-8.281040783102244736e-07,-8.426322200349652835e-07,-8.571603617597060935e-07,-8.716885034844469034e-07,-8.862166452091877134e-07,-9.007447869339285234e-07,-9.152729286586693333e-07 +0.000000000000000000e+00,-1.422573416965398830e-08,-2.845146833930797659e-08,-4.267720250896196489e-08,-5.690293667861595319e-08,-7.112867084826994148e-08,-8.535440501792392978e-08,-9.958013918757791807e-08,-1.138058733572319064e-07,-1.280316075268859079e-07,-1.422573416965399094e-07,-1.564830758661939110e-07,-1.707088100358479125e-07,-1.849345442055019140e-07,-1.991602783751559156e-07,-2.133860125448099171e-07,-2.276117467144639186e-07,-2.418374808841179202e-07,-2.560632150537719217e-07,-2.702889492234259232e-07,-2.845146833930799247e-07,-2.987404175627339263e-07,-3.129661517323879278e-07,-3.271918859020419293e-07,-3.414176200716959309e-07,-3.556433542413499324e-07,-3.698690884110039339e-07,-3.840948225806579355e-07,-3.983205567503119370e-07,-4.125462909199659385e-07,-4.267720250896199401e-07,-4.409977592592739416e-07,-4.552234934289279431e-07,-4.694492275985819447e-07,-4.836749617682359462e-07,-4.979006959378899477e-07,-5.121264301075439492e-07,-5.263521642771979508e-07,-5.405778984468519523e-07,-5.548036326165059538e-07,-5.690293667861599554e-07,-5.832551009558139569e-07,-5.974808351254679584e-07,-6.117065692951219600e-07,-6.259323034647759615e-07,-6.401580376344299630e-07,-6.543837718040839646e-07,-6.686095059737379661e-07,-6.828352401433919676e-07,-6.970609743130459691e-07,-7.112867084826999707e-07,-7.255124426523539722e-07,-7.397381768220079737e-07,-7.539639109916619753e-07,-7.681896451613159768e-07,-7.824153793309699783e-07,-7.966411135006239799e-07,-8.108668476702779814e-07,-8.250925818399319829e-07,-8.393183160095859845e-07,-8.535440501792399860e-07,-8.677697843488939875e-07,-8.819955185185479891e-07,-8.962212526882019906e-07 +0.000000000000000000e+00,-1.646292753004051478e-08,-3.292585506008102957e-08,-4.938878259012154435e-08,-6.585171012016205914e-08,-8.231463765020256730e-08,-9.877756518024307547e-08,-1.152404927102835836e-07,-1.317034202403240918e-07,-1.481663477703646000e-07,-1.646292753004051081e-07,-1.810922028304456163e-07,-1.975551303604861245e-07,-2.140180578905266326e-07,-2.304809854205671408e-07,-2.469439129506076754e-07,-2.634068404806482366e-07,-2.798697680106887977e-07,-2.963326955407293588e-07,-3.127956230707699199e-07,-3.292585506008104810e-07,-3.457214781308510421e-07,-3.621844056608916032e-07,-3.786473331909321643e-07,-3.951102607209727254e-07,-4.115731882510132865e-07,-4.280361157810538476e-07,-4.444990433110944087e-07,-4.609619708411349698e-07,-4.774248983711755309e-07,-4.938878259012160920e-07,-5.103507534312566531e-07,-5.268136809612972143e-07,-5.432766084913377754e-07,-5.597395360213783365e-07,-5.762024635514188976e-07,-5.926653910814594587e-07,-6.091283186115000198e-07,-6.255912461415405809e-07,-6.420541736715811420e-07,-6.585171012016217031e-07,-6.749800287316622642e-07,-6.914429562617028253e-07,-7.079058837917433864e-07,-7.243688113217839475e-07,-7.408317388518245086e-07,-7.572946663818650697e-07,-7.737575939119056309e-07,-7.902205214419461920e-07,-8.066834489719867531e-07,-8.231463765020273142e-07,-8.396093040320678753e-07,-8.560722315621084364e-07,-8.725351590921489975e-07,-8.889980866221895586e-07,-9.054610141522301197e-07,-9.219239416822706808e-07,-9.383868692123112419e-07,-9.548497967423519089e-07,-9.713127242723925759e-07,-9.877756518024332429e-07,-1.004238579332473910e-06,-1.020701506862514577e-06,-1.037164434392555244e-06 +0.000000000000000000e+00,-7.420605537110024567e-09,-1.484121107422004913e-08,-2.226181661133007370e-08,-2.968242214844009827e-08,-3.710302768555012284e-08,-4.452363322266014740e-08,-5.194423875977017197e-08,-5.936484429688019654e-08,-6.678544983399021449e-08,-7.420605537110023244e-08,-8.162666090821025039e-08,-8.904726644532026834e-08,-9.646787198243028629e-08,-1.038884775195403042e-07,-1.113090830566503222e-07,-1.187296885937603401e-07,-1.261502941308703581e-07,-1.335708996679803760e-07,-1.409915052050903940e-07,-1.484121107422004119e-07,-1.558327162793104299e-07,-1.632533218164204478e-07,-1.706739273535304658e-07,-1.780945328906404837e-07,-1.855151384277505017e-07,-1.929357439648605196e-07,-2.003563495019705376e-07,-2.077769550390805555e-07,-2.151975605761905735e-07,-2.226181661133005914e-07,-2.300387716504106094e-07,-2.374593771875206273e-07,-2.448799827246306453e-07,-2.523005882617406632e-07,-2.597211937988506812e-07,-2.671417993359606991e-07,-2.745624048730707171e-07,-2.819830104101807350e-07,-2.894036159472907530e-07,-2.968242214844007709e-07,-3.042448270215107889e-07,-3.116654325586208068e-07,-3.190860380957308248e-07,-3.265066436328408427e-07,-3.339272491699508607e-07,-3.413478547070608786e-07,-3.487684602441708966e-07,-3.561890657812809145e-07,-3.636096713183909325e-07,-3.710302768555009504e-07,-3.784508823926109684e-07,-3.858714879297209863e-07,-3.932920934668310043e-07,-4.007126990039410222e-07,-4.081333045410510402e-07,-4.155539100781610581e-07,-4.229745156152710761e-07,-4.303951211523810940e-07,-4.378157266894911120e-07,-4.452363322266011299e-07,-4.526569377637111479e-07,-4.600775433008211658e-07,-4.674981488379311838e-07 +0.000000000000000000e+00,-1.080474823820695694e-08,-2.160949647641391388e-08,-3.241424471462087247e-08,-4.321899295282783437e-08,-5.402374119103479627e-08,-6.482848942924175817e-08,-7.563323766744871345e-08,-8.643798590565566874e-08,-9.724273414386262402e-08,-1.080474823820695793e-07,-1.188522306202765346e-07,-1.296569788584834899e-07,-1.404617270966904452e-07,-1.512664753348974004e-07,-1.620712235731043557e-07,-1.728759718113113110e-07,-1.836807200495182663e-07,-1.944854682877252216e-07,-2.052902165259321769e-07,-2.160949647641391321e-07,-2.268997130023460874e-07,-2.377044612405530427e-07,-2.485092094787599980e-07,-2.593139577169669268e-07,-2.701187059551738556e-07,-2.809234541933807844e-07,-2.917282024315877132e-07,-3.025329506697946421e-07,-3.133376989080015709e-07,-3.241424471462084997e-07,-3.349471953844154285e-07,-3.457519436226223573e-07,-3.565566918608292861e-07,-3.673614400990362149e-07,-3.781661883372431438e-07,-3.889709365754500726e-07,-3.997756848136570014e-07,-4.105804330518639302e-07,-4.213851812900708590e-07,-4.321899295282777878e-07,-4.429946777664847166e-07,-4.537994260046916454e-07,-4.646041742428985743e-07,-4.754089224811055031e-07,-4.862136707193123789e-07,-4.970184189575192548e-07,-5.078231671957261307e-07,-5.186279154339330066e-07,-5.294326636721398824e-07,-5.402374119103467583e-07,-5.510421601485536342e-07,-5.618469083867605101e-07,-5.726516566249673859e-07,-5.834564048631742618e-07,-5.942611531013811377e-07,-6.050659013395880136e-07,-6.158706495777948894e-07,-6.266753978160017653e-07,-6.374801460542086412e-07,-6.482848942924155171e-07,-6.590896425306223929e-07,-6.698943907688292688e-07,-6.806991390070361447e-07 +0.000000000000000000e+00,-1.092809819106706830e-08,-2.185619638213413660e-08,-3.278429457320120324e-08,-4.371239276426826658e-08,-5.464049095533532992e-08,-6.556858914640239325e-08,-7.649668733746945659e-08,-8.742478552853651992e-08,-9.835288371960358326e-08,-1.092809819106706466e-07,-1.202090801017376967e-07,-1.311371782928047600e-07,-1.420652764838718234e-07,-1.529933746749388867e-07,-1.639214728660059500e-07,-1.748495710570730134e-07,-1.857776692481400767e-07,-1.967057674392071401e-07,-2.076338656302742034e-07,-2.185619638213412667e-07,-2.294900620124083301e-07,-2.404181602034753934e-07,-2.513462583945424567e-07,-2.622743565856095201e-07,-2.732024547766765834e-07,-2.841305529677436467e-07,-2.950586511588107101e-07,-3.059867493498777734e-07,-3.169148475409448368e-07,-3.278429457320119001e-07,-3.387710439230789634e-07,-3.496991421141460268e-07,-3.606272403052130901e-07,-3.715553384962801534e-07,-3.824834366873472168e-07,-3.934115348784142801e-07,-4.043396330694813434e-07,-4.152677312605484068e-07,-4.261958294516154701e-07,-4.371239276426825335e-07,-4.480520258337495968e-07,-4.589801240248166601e-07,-4.699082222158837235e-07,-4.808363204069507868e-07,-4.917644185980178501e-07,-5.026925167890849135e-07,-5.136206149801519768e-07,-5.245487131712190401e-07,-5.354768113622861035e-07,-5.464049095533531668e-07,-5.573330077444202301e-07,-5.682611059354872935e-07,-5.791892041265543568e-07,-5.901173023176214202e-07,-6.010454005086884835e-07,-6.119734986997555468e-07,-6.229015968908226102e-07,-6.338296950818896735e-07,-6.447577932729567368e-07,-6.556858914640238002e-07,-6.666139896550908635e-07,-6.775420878461579268e-07,-6.884701860372249902e-07 +0.000000000000000000e+00,-8.039384278491879803e-09,-1.607876855698375961e-08,-2.411815283547563941e-08,-3.215753711396751921e-08,-4.019692139245939902e-08,-4.823630567095127882e-08,-5.627568994944315862e-08,-6.431507422793503842e-08,-7.235445850642692484e-08,-8.039384278491881127e-08,-8.843322706341069769e-08,-9.647261134190258411e-08,-1.045119956203944705e-07,-1.125513798988863569e-07,-1.205907641773782434e-07,-1.286301484558701298e-07,-1.366695327343620162e-07,-1.447089170128539026e-07,-1.527483012913457891e-07,-1.607876855698376755e-07,-1.688270698483295619e-07,-1.768664541268214483e-07,-1.849058384053133347e-07,-1.929452226838052212e-07,-2.009846069622971076e-07,-2.090239912407889940e-07,-2.170633755192808804e-07,-2.251027597977727668e-07,-2.331421440762646533e-07,-2.411815283547565397e-07,-2.492209126332484261e-07,-2.572602969117403125e-07,-2.652996811902321989e-07,-2.733390654687240854e-07,-2.813784497472159718e-07,-2.894178340257078582e-07,-2.974572183041997446e-07,-3.054966025826916310e-07,-3.135359868611835175e-07,-3.215753711396754039e-07,-3.296147554181672903e-07,-3.376541396966591767e-07,-3.456935239751510631e-07,-3.537329082536429496e-07,-3.617722925321348360e-07,-3.698116768106267224e-07,-3.778510610891186088e-07,-3.858904453676104952e-07,-3.939298296461023817e-07,-4.019692139245942681e-07,-4.100085982030861545e-07,-4.180479824815780409e-07,-4.260873667600699273e-07,-4.341267510385618138e-07,-4.421661353170537002e-07,-4.502055195955455866e-07,-4.582449038740374730e-07,-4.662842881525293594e-07,-4.743236724310212459e-07,-4.823630567095131852e-07,-4.904024409880051246e-07,-4.984418252664970640e-07,-5.064812095449890033e-07 +0.000000000000000000e+00,-1.192677513642920885e-08,-2.385355027285841769e-08,-3.578032540928762489e-08,-4.770710054571682877e-08,-5.963387568214603265e-08,-7.156065081857523654e-08,-8.348742595500444042e-08,-9.541420109143364431e-08,-1.073409762278628482e-07,-1.192677513642920653e-07,-1.311945265007212824e-07,-1.431213016371504995e-07,-1.550480767735797167e-07,-1.669748519100089338e-07,-1.789016270464381509e-07,-1.908284021828673680e-07,-2.027551773192965851e-07,-2.146819524557258023e-07,-2.266087275921550194e-07,-2.385355027285842365e-07,-2.504622778650134801e-07,-2.623890530014427237e-07,-2.743158281378719673e-07,-2.862426032743012109e-07,-2.981693784107304544e-07,-3.100961535471596980e-07,-3.220229286835889416e-07,-3.339497038200181852e-07,-3.458764789564474288e-07,-3.578032540928766724e-07,-3.697300292293059160e-07,-3.816568043657351596e-07,-3.935835795021644032e-07,-4.055103546385936467e-07,-4.174371297750228903e-07,-4.293639049114521339e-07,-4.412906800478813775e-07,-4.532174551843106211e-07,-4.651442303207398647e-07,-4.770710054571691083e-07,-4.889977805935983519e-07,-5.009245557300275954e-07,-5.128513308664568390e-07,-5.247781060028860826e-07,-5.367048811393153262e-07,-5.486316562757445698e-07,-5.605584314121738134e-07,-5.724852065486030570e-07,-5.844119816850323006e-07,-5.963387568214615442e-07,-6.082655319578907877e-07,-6.201923070943200313e-07,-6.321190822307492749e-07,-6.440458573671785185e-07,-6.559726325036077621e-07,-6.678994076400370057e-07,-6.798261827764662493e-07,-6.917529579128954929e-07,-7.036797330493247365e-07,-7.156065081857539800e-07,-7.275332833221832236e-07,-7.394600584586124672e-07,-7.513868335950417108e-07 +0.000000000000000000e+00,-8.996588814424923819e-09,-1.799317762884984764e-08,-2.698976644327477146e-08,-3.598635525769969528e-08,-4.498294407212461909e-08,-5.397953288654954291e-08,-6.297612170097446012e-08,-7.197271051539937732e-08,-8.096929932982429452e-08,-8.996588814424921172e-08,-9.896247695867412892e-08,-1.079590657730990461e-07,-1.169556545875239633e-07,-1.259522434019488673e-07,-1.349488322163737713e-07,-1.439454210307986752e-07,-1.529420098452235792e-07,-1.619385986596484832e-07,-1.709351874740733871e-07,-1.799317762884982911e-07,-1.889283651029231951e-07,-1.979249539173480990e-07,-2.069215427317730030e-07,-2.159181315461979070e-07,-2.249147203606228109e-07,-2.339113091750477149e-07,-2.429078979894726453e-07,-2.519044868038975758e-07,-2.609010756183225062e-07,-2.698976644327474366e-07,-2.788942532471723671e-07,-2.878908420615972975e-07,-2.968874308760222279e-07,-3.058840196904471584e-07,-3.148806085048720888e-07,-3.238771973192970193e-07,-3.328737861337219497e-07,-3.418703749481468801e-07,-3.508669637625718106e-07,-3.598635525769967410e-07,-3.688601413914216714e-07,-3.778567302058466019e-07,-3.868533190202715323e-07,-3.958499078346964627e-07,-4.048464966491213932e-07,-4.138430854635463236e-07,-4.228396742779712541e-07,-4.318362630923961845e-07,-4.408328519068211149e-07,-4.498294407212460454e-07,-4.588260295356709758e-07,-4.678226183500959062e-07,-4.768192071645208367e-07,-4.858157959789457142e-07,-4.948123847933705917e-07,-5.038089736077954692e-07,-5.128055624222203467e-07,-5.218021512366452242e-07,-5.307987400510701017e-07,-5.397953288654949791e-07,-5.487919176799198566e-07,-5.577885064943447341e-07,-5.667850953087696116e-07 +0.000000000000000000e+00,-1.089890737916049219e-08,-2.179781475832098438e-08,-3.269672213748147657e-08,-4.359562951664196876e-08,-5.449453689580246095e-08,-6.539344427496295314e-08,-7.629235165412345194e-08,-8.719125903328395075e-08,-9.809016641244444956e-08,-1.089890737916049484e-07,-1.198879811707654472e-07,-1.307868885499259327e-07,-1.416857959290864183e-07,-1.525847033082469039e-07,-1.634836106874073895e-07,-1.743825180665678750e-07,-1.852814254457283606e-07,-1.961803328248888462e-07,-2.070792402040493317e-07,-2.179781475832098173e-07,-2.288770549623703029e-07,-2.397759623415307885e-07,-2.506748697206913005e-07,-2.615737770998518125e-07,-2.724726844790123246e-07,-2.833715918581728366e-07,-2.942704992373333487e-07,-3.051694066164938607e-07,-3.160683139956543728e-07,-3.269672213748148848e-07,-3.378661287539753968e-07,-3.487650361331359089e-07,-3.596639435122964209e-07,-3.705628508914569330e-07,-3.814617582706174450e-07,-3.923606656497779570e-07,-4.032595730289384691e-07,-4.141584804080989811e-07,-4.250573877872594932e-07,-4.359562951664200052e-07,-4.468552025455805172e-07,-4.577541099247410293e-07,-4.686530173039015413e-07,-4.795519246830621063e-07,-4.904508320622226713e-07,-5.013497394413832363e-07,-5.122486468205438013e-07,-5.231475541997043662e-07,-5.340464615788649312e-07,-5.449453689580254962e-07,-5.558442763371860612e-07,-5.667431837163466262e-07,-5.776420910955071911e-07,-5.885409984746677561e-07,-5.994399058538283211e-07,-6.103388132329888861e-07,-6.212377206121494511e-07,-6.321366279913100161e-07,-6.430355353704705810e-07,-6.539344427496311460e-07,-6.648333501287917110e-07,-6.757322575079522760e-07,-6.866311648871128410e-07 +0.000000000000000000e+00,-1.200237455137509511e-08,-2.400474910275019022e-08,-3.600712365412528534e-08,-4.800949820550038045e-08,-6.001187275687548218e-08,-7.201424730825058391e-08,-8.401662185962568564e-08,-9.601899641100078737e-08,-1.080213709623758891e-07,-1.200237455137509908e-07,-1.320261200651260926e-07,-1.440284946165011943e-07,-1.560308691678762960e-07,-1.680332437192513977e-07,-1.800356182706264995e-07,-1.920379928220016012e-07,-2.040403673733767029e-07,-2.160427419247518047e-07,-2.280451164761269064e-07,-2.400474910275020346e-07,-2.520498655788771628e-07,-2.640522401302522910e-07,-2.760546146816274192e-07,-2.880569892330025474e-07,-3.000593637843776756e-07,-3.120617383357528038e-07,-3.240641128871279320e-07,-3.360664874385030602e-07,-3.480688619898781884e-07,-3.600712365412533166e-07,-3.720736110926284448e-07,-3.840759856440035730e-07,-3.960783601953787012e-07,-4.080807347467538294e-07,-4.200831092981289576e-07,-4.320854838495040858e-07,-4.440878584008792140e-07,-4.560902329522543422e-07,-4.680926075036294704e-07,-4.800949820550045986e-07,-4.920973566063797268e-07,-5.040997311577548550e-07,-5.161021057091299832e-07,-5.281044802605051114e-07,-5.401068548118802396e-07,-5.521092293632553678e-07,-5.641116039146304960e-07,-5.761139784660056242e-07,-5.881163530173807524e-07,-6.001187275687558806e-07,-6.121211021201310088e-07,-6.241234766715061370e-07,-6.361258512228812652e-07,-6.481282257742563934e-07,-6.601306003256315216e-07,-6.721329748770066498e-07,-6.841353494283817780e-07,-6.961377239797569062e-07,-7.081400985311320344e-07,-7.201424730825071626e-07,-7.321448476338822908e-07,-7.441472221852574190e-07,-7.561495967366325472e-07 +0.000000000000000000e+00,-7.420605537104930789e-09,-1.484121107420986158e-08,-2.226181661131479402e-08,-2.968242214841972646e-08,-3.710302768552465891e-08,-4.452363322262958804e-08,-5.194423875973451718e-08,-5.936484429683944631e-08,-6.678544983394436883e-08,-7.420605537104929135e-08,-8.162666090815421386e-08,-8.904726644525913638e-08,-9.646787198236405890e-08,-1.038884775194689814e-07,-1.113090830565739039e-07,-1.187296885936788264e-07,-1.261502941307837490e-07,-1.335708996678886847e-07,-1.409915052049936205e-07,-1.484121107420985562e-07,-1.558327162792034920e-07,-1.632533218163084277e-07,-1.706739273534133635e-07,-1.780945328905182992e-07,-1.855151384276232350e-07,-1.929357439647281707e-07,-2.003563495018331065e-07,-2.077769550389380422e-07,-2.151975605760429780e-07,-2.226181661131479137e-07,-2.300387716502528495e-07,-2.374593771873577852e-07,-2.448799827244627210e-07,-2.523005882615676567e-07,-2.597211937986725925e-07,-2.671417993357775283e-07,-2.745624048728824640e-07,-2.819830104099873998e-07,-2.894036159470923355e-07,-2.968242214841972713e-07,-3.042448270213022070e-07,-3.116654325584071428e-07,-3.190860380955120785e-07,-3.265066436326170143e-07,-3.339272491697219500e-07,-3.413478547068268858e-07,-3.487684602439318215e-07,-3.561890657810367573e-07,-3.636096713181416930e-07,-3.710302768552466288e-07,-3.784508823923515645e-07,-3.858714879294565003e-07,-3.932920934665614360e-07,-4.007126990036663718e-07,-4.081333045407713075e-07,-4.155539100778762433e-07,-4.229745156149811790e-07,-4.303951211520861148e-07,-4.378157266891910505e-07,-4.452363322262959863e-07,-4.526569377634009221e-07,-4.600775433005058578e-07,-4.674981488376107936e-07 +0.000000000000000000e+00,-1.080474823820374251e-08,-2.160949647640748503e-08,-3.241424471461123085e-08,-4.321899295281497667e-08,-5.402374119101872250e-08,-6.482848942922246170e-08,-7.563323766742620091e-08,-8.643798590562994011e-08,-9.724273414383367932e-08,-1.080474823820374185e-07,-1.188522306202411577e-07,-1.296569788584448969e-07,-1.404617270966486229e-07,-1.512664753348523489e-07,-1.620712235730560748e-07,-1.728759718112598008e-07,-1.836807200494635268e-07,-1.944854682876672528e-07,-2.052902165258709787e-07,-2.160949647640747047e-07,-2.268997130022784307e-07,-2.377044612404821566e-07,-2.485092094786858826e-07,-2.593139577168896350e-07,-2.701187059550933875e-07,-2.809234541932971399e-07,-2.917282024315008924e-07,-3.025329506697046448e-07,-3.133376989079083972e-07,-3.241424471461121497e-07,-3.349471953843159021e-07,-3.457519436225196546e-07,-3.565566918607234070e-07,-3.673614400989271594e-07,-3.781661883371309119e-07,-3.889709365753346643e-07,-3.997756848135384168e-07,-4.105804330517421692e-07,-4.213851812899459216e-07,-4.321899295281496741e-07,-4.429946777663534265e-07,-4.537994260045571790e-07,-4.646041742427609314e-07,-4.754089224809646838e-07,-4.862136707191683833e-07,-4.970184189573720828e-07,-5.078231671955757823e-07,-5.186279154337794818e-07,-5.294326636719831813e-07,-5.402374119101868808e-07,-5.510421601483905803e-07,-5.618469083865942798e-07,-5.726516566247979793e-07,-5.834564048630016788e-07,-5.942611531012053784e-07,-6.050659013394090779e-07,-6.158706495776127774e-07,-6.266753978158164769e-07,-6.374801460540201764e-07,-6.482848942922238759e-07,-6.590896425304275754e-07,-6.698943907686312749e-07,-6.806991390068349744e-07 +0.000000000000000000e+00,-1.089890737915880309e-08,-2.179781475831760617e-08,-3.269672213747640760e-08,-4.359562951663520573e-08,-5.449453689579400385e-08,-6.539344427495280198e-08,-7.629235165411159348e-08,-8.719125903327038499e-08,-9.809016641242917649e-08,-1.089890737915879680e-07,-1.198879811707467595e-07,-1.307868885499055510e-07,-1.416857959290643425e-07,-1.525847033082231340e-07,-1.634836106873819255e-07,-1.743825180665407170e-07,-1.852814254456995085e-07,-1.961803328248583000e-07,-2.070792402040170916e-07,-2.179781475831758831e-07,-2.288770549623346746e-07,-2.397759623414934661e-07,-2.506748697206522311e-07,-2.615737770998109961e-07,-2.724726844789697612e-07,-2.833715918581285262e-07,-2.942704992372872913e-07,-3.051694066164460563e-07,-3.160683139956048213e-07,-3.269672213747635864e-07,-3.378661287539223514e-07,-3.487650361330811164e-07,-3.596639435122398815e-07,-3.705628508913986465e-07,-3.814617582705574115e-07,-3.923606656497161766e-07,-4.032595730288749416e-07,-4.141584804080337066e-07,-4.250573877871924717e-07,-4.359562951663512367e-07,-4.468552025455100018e-07,-4.577541099246687668e-07,-4.686530173038275318e-07,-4.795519246829862969e-07,-4.904508320621450619e-07,-5.013497394413038269e-07,-5.122486468204625920e-07,-5.231475541996213570e-07,-5.340464615787801220e-07,-5.449453689579388871e-07,-5.558442763370976521e-07,-5.667431837162564172e-07,-5.776420910954151822e-07,-5.885409984745739472e-07,-5.994399058537327123e-07,-6.103388132328914773e-07,-6.212377206120502423e-07,-6.321366279912090074e-07,-6.430355353703677724e-07,-6.539344427495265374e-07,-6.648333501286853025e-07,-6.757322575078440675e-07,-6.866311648870028326e-07 +0.000000000000000000e+00,-8.039384278487909336e-09,-1.607876855697581867e-08,-2.411815283546372801e-08,-3.215753711395163734e-08,-4.019692139243954668e-08,-4.823630567092745602e-08,-5.627568994941536535e-08,-6.431507422790327469e-08,-7.235445850639119064e-08,-8.039384278487910660e-08,-8.843322706336702255e-08,-9.647261134185493850e-08,-1.045119956203428545e-07,-1.125513798988307704e-07,-1.205907641773186864e-07,-1.286301484558066023e-07,-1.366695327342945183e-07,-1.447089170127824342e-07,-1.527483012912703502e-07,-1.607876855697582661e-07,-1.688270698482461821e-07,-1.768664541267340980e-07,-1.849058384052220140e-07,-1.929452226837099299e-07,-2.009846069621978459e-07,-2.090239912406857619e-07,-2.170633755191736778e-07,-2.251027597976615938e-07,-2.331421440761495097e-07,-2.411815283546374257e-07,-2.492209126331253416e-07,-2.572602969116132576e-07,-2.652996811901011735e-07,-2.733390654685890895e-07,-2.813784497470770054e-07,-2.894178340255649214e-07,-2.974572183040528373e-07,-3.054966025825407533e-07,-3.135359868610286692e-07,-3.215753711395165852e-07,-3.296147554180045012e-07,-3.376541396964924171e-07,-3.456935239749803331e-07,-3.537329082534682490e-07,-3.617722925319561650e-07,-3.698116768104440809e-07,-3.778510610889319969e-07,-3.858904453674199128e-07,-3.939298296459078288e-07,-4.019692139243957447e-07,-4.100085982028836607e-07,-4.180479824813715766e-07,-4.260873667598594926e-07,-4.341267510383474086e-07,-4.421661353168353245e-07,-4.502055195953232405e-07,-4.582449038738111564e-07,-4.662842881522990724e-07,-4.743236724307869883e-07,-4.823630567092749572e-07,-4.904024409877629790e-07,-4.984418252662510009e-07,-5.064812095447390227e-07 +0.000000000000000000e+00,-1.192677513642649569e-08,-2.385355027285299139e-08,-3.578032540927948543e-08,-4.770710054570597616e-08,-5.963387568213246689e-08,-7.156065081855895762e-08,-8.348742595498544836e-08,-9.541420109141193909e-08,-1.073409762278384298e-07,-1.192677513642649073e-07,-1.311945265006913980e-07,-1.431213016371178888e-07,-1.550480767735443795e-07,-1.669748519099708702e-07,-1.789016270463973610e-07,-1.908284021828238517e-07,-2.027551773192503424e-07,-2.146819524556768332e-07,-2.266087275921033239e-07,-2.385355027285298146e-07,-2.504622778649563054e-07,-2.623890530013827961e-07,-2.743158281378092868e-07,-2.862426032742357776e-07,-2.981693784106622683e-07,-3.100961535470887590e-07,-3.220229286835152498e-07,-3.339497038199417405e-07,-3.458764789563682312e-07,-3.578032540927947219e-07,-3.697300292292212127e-07,-3.816568043656477034e-07,-3.935835795020741941e-07,-4.055103546385006849e-07,-4.174371297749271756e-07,-4.293639049113536663e-07,-4.412906800477801571e-07,-4.532174551842066478e-07,-4.651442303206331385e-07,-4.770710054570596293e-07,-4.889977805934861200e-07,-5.009245557299126107e-07,-5.128513308663391015e-07,-5.247781060027655922e-07,-5.367048811391920829e-07,-5.486316562756185737e-07,-5.605584314120450644e-07,-5.724852065484715551e-07,-5.844119816848980458e-07,-5.963387568213245366e-07,-6.082655319577510273e-07,-6.201923070941775180e-07,-6.321190822306040088e-07,-6.440458573670304995e-07,-6.559726325034569902e-07,-6.678994076398834810e-07,-6.798261827763099717e-07,-6.917529579127364624e-07,-7.036797330491629532e-07,-7.156065081855894439e-07,-7.275332833220159346e-07,-7.394600584584424254e-07,-7.513868335948689161e-07 +0.000000000000000000e+00,-8.996588814420488476e-09,-1.799317762884097695e-08,-2.698976644326146378e-08,-3.598635525768194729e-08,-4.498294407210243080e-08,-5.397953288652291432e-08,-6.297612170094339783e-08,-7.197271051536388134e-08,-8.096929932978436486e-08,-8.996588814420484837e-08,-9.896247695862533188e-08,-1.079590657730458154e-07,-1.169556545874662989e-07,-1.259522434018867692e-07,-1.349488322163072527e-07,-1.439454210307277362e-07,-1.529420098451482197e-07,-1.619385986595687032e-07,-1.709351874739891868e-07,-1.799317762884096703e-07,-1.889283651028301538e-07,-1.979249539172506373e-07,-2.069215427316711208e-07,-2.159181315460916043e-07,-2.249147203605120878e-07,-2.339113091749325713e-07,-2.429078979893530549e-07,-2.519044868037735384e-07,-2.609010756181940219e-07,-2.698976644326145054e-07,-2.788942532470349889e-07,-2.878908420614554724e-07,-2.968874308758759559e-07,-3.058840196902964395e-07,-3.148806085047169230e-07,-3.238771973191374065e-07,-3.328737861335578900e-07,-3.418703749479783735e-07,-3.508669637623988570e-07,-3.598635525768193405e-07,-3.688601413912398240e-07,-3.778567302056603076e-07,-3.868533190200807911e-07,-3.958499078345012746e-07,-4.048464966489217581e-07,-4.138430854633422416e-07,-4.228396742777627251e-07,-4.318362630921832086e-07,-4.408328519066036922e-07,-4.498294407210241757e-07,-4.588260295354446592e-07,-4.678226183498651427e-07,-4.768192071642856262e-07,-4.858157959787061097e-07,-4.948123847931266462e-07,-5.038089736075471826e-07,-5.128055624219677191e-07,-5.218021512363882555e-07,-5.307987400508087920e-07,-5.397953288652293284e-07,-5.487919176796498649e-07,-5.577885064940704013e-07,-5.667850953084909378e-07 +0.000000000000000000e+00,-7.748242027801315737e-09,-1.549648405560263147e-08,-2.324472608340394556e-08,-3.099296811120525633e-08,-3.874121013900656711e-08,-4.648945216680787788e-08,-5.423769419460918865e-08,-6.198593622241049943e-08,-6.973417825021180359e-08,-7.748242027801310774e-08,-8.523066230581441190e-08,-9.297890433361571606e-08,-1.007271463614170202e-07,-1.084753883892183244e-07,-1.162236304170196285e-07,-1.239718724448209194e-07,-1.317201144726222104e-07,-1.394683565004235013e-07,-1.472165985282247922e-07,-1.549648405560260831e-07,-1.627130825838273741e-07,-1.704613246116286650e-07,-1.782095666394299559e-07,-1.859578086672312468e-07,-1.937060506950325377e-07,-2.014542927228338287e-07,-2.092025347506351196e-07,-2.169507767784364105e-07,-2.246990188062377014e-07,-2.324472608340389924e-07,-2.401955028618402833e-07,-2.479437448896415742e-07,-2.556919869174428651e-07,-2.634402289452441560e-07,-2.711884709730454470e-07,-2.789367130008467379e-07,-2.866849550286480288e-07,-2.944331970564493197e-07,-3.021814390842506107e-07,-3.099296811120519016e-07,-3.176779231398531925e-07,-3.254261651676544834e-07,-3.331744071954557743e-07,-3.409226492232570653e-07,-3.486708912510583562e-07,-3.564191332788596471e-07,-3.641673753066609380e-07,-3.719156173344622289e-07,-3.796638593622635199e-07,-3.874121013900648108e-07,-3.951603434178661017e-07,-4.029085854456673926e-07,-4.106568274734686836e-07,-4.184050695012699745e-07,-4.261533115290712654e-07,-4.339015535568725563e-07,-4.416497955846738472e-07,-4.493980376124751382e-07,-4.571462796402764291e-07,-4.648945216680777200e-07,-4.726427636958790109e-07,-4.803910057236803548e-07,-4.881392477514816987e-07 +0.000000000000000000e+00,-7.431674515358117292e-09,-1.486334903071623458e-08,-2.229502354607435188e-08,-2.972669806143246917e-08,-3.715837257679058646e-08,-4.459004709214870375e-08,-5.202172160750682105e-08,-5.945339612286493834e-08,-6.688507063822305563e-08,-7.431674515358117292e-08,-8.174841966893929022e-08,-8.918009418429740751e-08,-9.661176869965552480e-08,-1.040434432150136421e-07,-1.114751177303717594e-07,-1.189067922457298767e-07,-1.263384667610880072e-07,-1.337701412764461377e-07,-1.412018157918042683e-07,-1.486334903071623988e-07,-1.560651648225205293e-07,-1.634968393378786598e-07,-1.709285138532367904e-07,-1.783601883685949209e-07,-1.857918628839530514e-07,-1.932235373993111819e-07,-2.006552119146693125e-07,-2.080868864300274430e-07,-2.155185609453855735e-07,-2.229502354607437041e-07,-2.303819099761018346e-07,-2.378135844914599651e-07,-2.452452590068180956e-07,-2.526769335221762262e-07,-2.601086080375343567e-07,-2.675402825528924872e-07,-2.749719570682506177e-07,-2.824036315836087483e-07,-2.898353060989668788e-07,-2.972669806143250093e-07,-3.046986551296831399e-07,-3.121303296450412704e-07,-3.195620041603994009e-07,-3.269936786757575314e-07,-3.344253531911156620e-07,-3.418570277064737925e-07,-3.492887022218319230e-07,-3.567203767371900535e-07,-3.641520512525481841e-07,-3.715837257679063146e-07,-3.790154002832644451e-07,-3.864470747986225757e-07,-3.938787493139807062e-07,-4.013104238293388367e-07,-4.087420983446969672e-07,-4.161737728600550978e-07,-4.236054473754132283e-07,-4.310371218907713588e-07,-4.384687964061294893e-07,-4.459004709214876199e-07,-4.533321454368457504e-07,-4.607638199522038809e-07,-4.681954944675620115e-07 +0.000000000000000000e+00,-9.155951166624081581e-09,-1.831190233324816316e-08,-2.746785349987224640e-08,-3.662380466649633294e-08,-4.577975583312041949e-08,-5.493570699974450603e-08,-6.409165816636859258e-08,-7.324760933299267912e-08,-8.240356049961676566e-08,-9.155951166624085221e-08,-1.007154628328649388e-07,-1.098714139994890253e-07,-1.190273651661131118e-07,-1.281833163327371852e-07,-1.373392674993612585e-07,-1.464952186659853318e-07,-1.556511698326094051e-07,-1.648071209992334784e-07,-1.739630721658575517e-07,-1.831190233324816250e-07,-1.922749744991056983e-07,-2.014309256657297716e-07,-2.105868768323538449e-07,-2.197428279989779182e-07,-2.288987791656019916e-07,-2.380547303322260649e-07,-2.472106814988501382e-07,-2.563666326654742115e-07,-2.655225838320982848e-07,-2.746785349987223581e-07,-2.838344861653464314e-07,-2.929904373319705047e-07,-3.021463884985945780e-07,-3.113023396652186513e-07,-3.204582908318427247e-07,-3.296142419984667980e-07,-3.387701931650908713e-07,-3.479261443317149446e-07,-3.570820954983390179e-07,-3.662380466649630912e-07,-3.753939978315871645e-07,-3.845499489982112378e-07,-3.937059001648353111e-07,-4.028618513314593844e-07,-4.120178024980834577e-07,-4.211737536647075311e-07,-4.303297048313316044e-07,-4.394856559979556777e-07,-4.486416071645797510e-07,-4.577975583312038243e-07,-4.669535094978278976e-07,-4.761094606644519709e-07,-4.852654118310760442e-07,-4.944213629977000646e-07,-5.035773141643240850e-07,-5.127332653309481053e-07,-5.218892164975721257e-07,-5.310451676641961461e-07,-5.402011188308201664e-07,-5.493570699974441868e-07,-5.585130211640682072e-07,-5.676689723306922276e-07,-5.768249234973162479e-07 +0.000000000000000000e+00,-7.748242027795977114e-09,-1.549648405559195423e-08,-2.324472608338793134e-08,-3.099296811118390845e-08,-3.874121013897988557e-08,-4.648945216677586268e-08,-5.423769419457183980e-08,-6.198593622236781691e-08,-6.973417825016378741e-08,-7.748242027795975790e-08,-8.523066230575572840e-08,-9.297890433355169889e-08,-1.007271463613476694e-07,-1.084753883891436399e-07,-1.162236304169396104e-07,-1.239718724447355809e-07,-1.317201144725315514e-07,-1.394683565003275219e-07,-1.472165985281234924e-07,-1.549648405559194629e-07,-1.627130825837154334e-07,-1.704613246115114039e-07,-1.782095666393073744e-07,-1.859578086671033448e-07,-1.937060506948993153e-07,-2.014542927226952858e-07,-2.092025347504912563e-07,-2.169507767782872268e-07,-2.246990188060831973e-07,-2.324472608338791678e-07,-2.401955028616751119e-07,-2.479437448894710559e-07,-2.556919869172669999e-07,-2.634402289450629439e-07,-2.711884709728588880e-07,-2.789367130006548320e-07,-2.866849550284507760e-07,-2.944331970562467200e-07,-3.021814390840426641e-07,-3.099296811118386081e-07,-3.176779231396345521e-07,-3.254261651674304961e-07,-3.331744071952264402e-07,-3.409226492230223842e-07,-3.486708912508183282e-07,-3.564191332786142722e-07,-3.641673753064102163e-07,-3.719156173342061603e-07,-3.796638593620021043e-07,-3.874121013897980484e-07,-3.951603434175939924e-07,-4.029085854453899364e-07,-4.106568274731858804e-07,-4.184050695009818245e-07,-4.261533115287777685e-07,-4.339015535565737125e-07,-4.416497955843696565e-07,-4.493980376121656006e-07,-4.571462796399615446e-07,-4.648945216677574886e-07,-4.726427636955534326e-07,-4.803910057233493767e-07,-4.881392477511453207e-07 +0.000000000000000000e+00,-7.431674515353096306e-09,-1.486334903070619261e-08,-2.229502354605929057e-08,-2.972669806141238853e-08,-3.715837257676548649e-08,-4.459004709211858114e-08,-5.202172160747167580e-08,-5.945339612282477045e-08,-6.688507063817785848e-08,-7.431674515353094652e-08,-8.174841966888403455e-08,-8.918009418423712259e-08,-9.661176869959021062e-08,-1.040434432149432987e-07,-1.114751177302963867e-07,-1.189067922456494747e-07,-1.263384667610025628e-07,-1.337701412763556640e-07,-1.412018157917087653e-07,-1.486334903070618666e-07,-1.560651648224149678e-07,-1.634968393377680691e-07,-1.709285138531211704e-07,-1.783601883684742716e-07,-1.857918628838273729e-07,-1.932235373991804742e-07,-2.006552119145335754e-07,-2.080868864298866767e-07,-2.155185609452397780e-07,-2.229502354605928793e-07,-2.303819099759459805e-07,-2.378135844912990818e-07,-2.452452590066521831e-07,-2.526769335220052843e-07,-2.601086080373583856e-07,-2.675402825527114869e-07,-2.749719570680645881e-07,-2.824036315834176894e-07,-2.898353060987707907e-07,-2.972669806141238919e-07,-3.046986551294769932e-07,-3.121303296448300945e-07,-3.195620041601831958e-07,-3.269936786755362970e-07,-3.344253531908893983e-07,-3.418570277062424996e-07,-3.492887022215956008e-07,-3.567203767369487021e-07,-3.641520512523018034e-07,-3.715837257676549046e-07,-3.790154002830080059e-07,-3.864470747983611072e-07,-3.938787493137142084e-07,-4.013104238290673097e-07,-4.087420983444204110e-07,-4.161737728597735123e-07,-4.236054473751266135e-07,-4.310371218904797148e-07,-4.384687964058328161e-07,-4.459004709211859173e-07,-4.533321454365390186e-07,-4.607638199518921199e-07,-4.681954944672452211e-07 +0.000000000000000000e+00,-9.155951166619386504e-09,-1.831190233323877301e-08,-2.746785349985815786e-08,-3.662380466647753940e-08,-4.577975583309692094e-08,-5.493570699971630248e-08,-6.409165816633569064e-08,-7.324760933295507880e-08,-8.240356049957446696e-08,-9.155951166619385512e-08,-1.007154628328132433e-07,-1.098714139994326314e-07,-1.190273651660520196e-07,-1.281833163326714077e-07,-1.373392674992907959e-07,-1.464952186659101841e-07,-1.556511698325295722e-07,-1.648071209991489604e-07,-1.739630721657683485e-07,-1.831190233323877367e-07,-1.922749744990071249e-07,-2.014309256656265130e-07,-2.105868768322459012e-07,-2.197428279988652893e-07,-2.288987791654846775e-07,-2.380547303321040657e-07,-2.472106814987234538e-07,-2.563666326653428684e-07,-2.655225838319622831e-07,-2.746785349985816977e-07,-2.838344861652011123e-07,-2.929904373318205270e-07,-3.021463884984399416e-07,-3.113023396650593562e-07,-3.204582908316787708e-07,-3.296142419982981855e-07,-3.387701931649176001e-07,-3.479261443315370147e-07,-3.570820954981564293e-07,-3.662380466647758440e-07,-3.753939978313952586e-07,-3.845499489980146732e-07,-3.937059001646340879e-07,-4.028618513312535025e-07,-4.120178024978729171e-07,-4.211737536644923317e-07,-4.303297048311117464e-07,-4.394856559977311610e-07,-4.486416071643505756e-07,-4.577975583309699903e-07,-4.669535094975894049e-07,-4.761094606642088195e-07,-4.852654118308281812e-07,-4.944213629974475429e-07,-5.035773141640669046e-07,-5.127332653306862663e-07,-5.218892164973056280e-07,-5.310451676639249896e-07,-5.402011188305443513e-07,-5.493570699971637130e-07,-5.585130211637830747e-07,-5.676689723304024364e-07,-5.768249234970217981e-07 +0.000000000000000000e+00,-8.550895251003777519e-09,-1.710179050200755504e-08,-2.565268575301133090e-08,-3.420358100401510346e-08,-4.275447625501887601e-08,-5.130537150602264857e-08,-5.985626675702642112e-08,-6.840716200803019368e-08,-7.695805725903396624e-08,-8.550895251003773879e-08,-9.405984776104151135e-08,-1.026107430120452839e-07,-1.111616382630490565e-07,-1.197125335140528422e-07,-1.282634287650566280e-07,-1.368143240160604138e-07,-1.453652192670641996e-07,-1.539161145180679854e-07,-1.624670097690717712e-07,-1.710179050200755570e-07,-1.795688002710793428e-07,-1.881196955220831286e-07,-1.966705907730869144e-07,-2.052214860240907002e-07,-2.137723812750944859e-07,-2.223232765260982717e-07,-2.308741717771020575e-07,-2.394250670281058433e-07,-2.479759622791096291e-07,-2.565268575301134149e-07,-2.650777527811172007e-07,-2.736286480321209865e-07,-2.821795432831247723e-07,-2.907304385341285581e-07,-2.992813337851323438e-07,-3.078322290361361296e-07,-3.163831242871399154e-07,-3.249340195381437012e-07,-3.334849147891474870e-07,-3.420358100401512728e-07,-3.505867052911550586e-07,-3.591376005421588444e-07,-3.676884957931626302e-07,-3.762393910441664160e-07,-3.847902862951702018e-07,-3.933411815461739875e-07,-4.018920767971777733e-07,-4.104429720481815591e-07,-4.189938672991853449e-07,-4.275447625501891307e-07,-4.360956578011929165e-07,-4.446465530521967023e-07,-4.531974483032004881e-07,-4.617483435542042739e-07,-4.702992388052080597e-07,-4.788501340562117925e-07,-4.874010293072154724e-07,-4.959519245582191523e-07,-5.045028198092228322e-07,-5.130537150602265122e-07,-5.216046103112301921e-07,-5.301555055622338720e-07,-5.387064008132375519e-07 +0.000000000000000000e+00,-8.137806457107969776e-09,-1.627561291421593955e-08,-2.441341937132391098e-08,-3.255122582843188572e-08,-4.068903228553986046e-08,-4.882683874264783520e-08,-5.696464519975580994e-08,-6.510245165686378468e-08,-7.324025811397175942e-08,-8.137806457107973416e-08,-8.951587102818770890e-08,-9.765367748529568364e-08,-1.057914839424036584e-07,-1.139292903995116331e-07,-1.220670968566195946e-07,-1.302049033137275429e-07,-1.383427097708354912e-07,-1.464805162279434394e-07,-1.546183226850513877e-07,-1.627561291421593360e-07,-1.708939355992672842e-07,-1.790317420563752325e-07,-1.871695485134831808e-07,-1.953073549705911290e-07,-2.034451614276990773e-07,-2.115829678848070256e-07,-2.197207743419149739e-07,-2.278585807990229221e-07,-2.359963872561308704e-07,-2.441341937132388187e-07,-2.522720001703467669e-07,-2.604098066274547152e-07,-2.685476130845626635e-07,-2.766854195416706117e-07,-2.848232259987785600e-07,-2.929610324558865083e-07,-3.010988389129944566e-07,-3.092366453701024048e-07,-3.173744518272103531e-07,-3.255122582843183014e-07,-3.336500647414262496e-07,-3.417878711985341979e-07,-3.499256776556421462e-07,-3.580634841127500944e-07,-3.662012905698580427e-07,-3.743390970269659910e-07,-3.824769034840739393e-07,-3.906147099411818875e-07,-3.987525163982898358e-07,-4.068903228553977841e-07,-4.150281293125057323e-07,-4.231659357696136806e-07,-4.313037422267216289e-07,-4.394415486838295771e-07,-4.475793551409375254e-07,-4.557171615980454737e-07,-4.638549680551534219e-07,-4.719927745122613702e-07,-4.801305809693693185e-07,-4.882683874264773197e-07,-4.964061938835853209e-07,-5.045440003406933221e-07,-5.126818067978013233e-07 +0.000000000000000000e+00,-9.866881018571601094e-09,-1.973376203714320219e-08,-2.960064305571480328e-08,-3.946752407428640438e-08,-4.933440509285800878e-08,-5.920128611142961318e-08,-6.906816713000121758e-08,-7.893504814857282199e-08,-8.880192916714442639e-08,-9.866881018571603079e-08,-1.085356912042876352e-07,-1.184025722228592396e-07,-1.282694532414308572e-07,-1.381363342600024616e-07,-1.480032152785740660e-07,-1.578700962971456704e-07,-1.677369773157172748e-07,-1.776038583342888792e-07,-1.874707393528604837e-07,-1.973376203714320881e-07,-2.072045013900036925e-07,-2.170713824085752969e-07,-2.269382634271469013e-07,-2.368051444457185057e-07,-2.466720254642901101e-07,-2.565389064828617145e-07,-2.664057875014333189e-07,-2.762726685200049233e-07,-2.861395495385765277e-07,-2.960064305571481321e-07,-3.058733115757197365e-07,-3.157401925942913409e-07,-3.256070736128629453e-07,-3.354739546314345497e-07,-3.453408356500061541e-07,-3.552077166685777585e-07,-3.650745976871493629e-07,-3.749414787057209673e-07,-3.848083597242925717e-07,-3.946752407428641761e-07,-4.045421217614357805e-07,-4.144090027800073849e-07,-4.242758837985789893e-07,-4.341427648171505937e-07,-4.440096458357221981e-07,-4.538765268542938025e-07,-4.637434078728654069e-07,-4.736102888914370113e-07,-4.834771699100085628e-07,-4.933440509285801143e-07,-5.032109319471516657e-07,-5.130778129657232172e-07,-5.229446939842947686e-07,-5.328115750028663201e-07,-5.426784560214378716e-07,-5.525453370400094230e-07,-5.624122180585809745e-07,-5.722790990771525260e-07,-5.821459800957240774e-07,-5.920128611142956289e-07,-6.018797421328671803e-07,-6.117466231514387318e-07,-6.216135041700102833e-07 +0.000000000000000000e+00,-8.550895250999457982e-09,-1.710179050199891596e-08,-2.565268575299837394e-08,-3.420358100399783193e-08,-4.275447625499728991e-08,-5.130537150599674789e-08,-5.985626675699620587e-08,-6.840716200799566385e-08,-7.695805725899512183e-08,-8.550895250999457982e-08,-9.405984776099403780e-08,-1.026107430119934958e-07,-1.111616382629929538e-07,-1.197125335139924117e-07,-1.282634287649918830e-07,-1.368143240159913542e-07,-1.453652192669908254e-07,-1.539161145179902966e-07,-1.624670097689897678e-07,-1.710179050199892390e-07,-1.795688002709887103e-07,-1.881196955219881815e-07,-1.966705907729876527e-07,-2.052214860239871239e-07,-2.137723812749865951e-07,-2.223232765259860663e-07,-2.308741717769855376e-07,-2.394250670279849823e-07,-2.479759622789844270e-07,-2.565268575299838718e-07,-2.650777527809833165e-07,-2.736286480319827613e-07,-2.821795432829822060e-07,-2.907304385339816508e-07,-2.992813337849810955e-07,-3.078322290359805403e-07,-3.163831242869799850e-07,-3.249340195379794298e-07,-3.334849147889788745e-07,-3.420358100399783193e-07,-3.505867052909777640e-07,-3.591376005419772088e-07,-3.676884957929766535e-07,-3.762393910439760982e-07,-3.847902862949755430e-07,-3.933411815459749877e-07,-4.018920767969744325e-07,-4.104429720479738772e-07,-4.189938672989733220e-07,-4.275447625499727667e-07,-4.360956578009722115e-07,-4.446465530519716562e-07,-4.531974483029711010e-07,-4.617483435539705457e-07,-4.702992388049699905e-07,-4.788501340559694352e-07,-4.874010293069688800e-07,-4.959519245579683247e-07,-5.045028198089677694e-07,-5.130537150599672142e-07,-5.216046103109666589e-07,-5.301555055619661037e-07,-5.387064008129655484e-07 +0.000000000000000000e+00,-8.137806457103010001e-09,-1.627561291420602000e-08,-2.441341937130902835e-08,-3.255122582841203339e-08,-4.068903228551503843e-08,-4.882683874261804347e-08,-5.696464519972104850e-08,-6.510245165682405354e-08,-7.324025811392706520e-08,-8.137806457103007685e-08,-8.951587102813308851e-08,-9.765367748523610016e-08,-1.057914839423391118e-07,-1.139292903994421235e-07,-1.220670968565451351e-07,-1.302049033136481336e-07,-1.383427097707511320e-07,-1.464805162278541304e-07,-1.546183226849571288e-07,-1.627561291420601272e-07,-1.708939355991631257e-07,-1.790317420562661241e-07,-1.871695485133691225e-07,-1.953073549704721209e-07,-2.034451614275751193e-07,-2.115829678846781178e-07,-2.197207743417811162e-07,-2.278585807988841146e-07,-2.359963872559871130e-07,-2.441341937130901114e-07,-2.522720001701931363e-07,-2.604098066272961612e-07,-2.685476130843991861e-07,-2.766854195415022110e-07,-2.848232259986052359e-07,-2.929610324557082608e-07,-3.010988389128112857e-07,-3.092366453699143106e-07,-3.173744518270173355e-07,-3.255122582841203604e-07,-3.336500647412233852e-07,-3.417878711983264101e-07,-3.499256776554294350e-07,-3.580634841125324599e-07,-3.662012905696354848e-07,-3.743390970267385097e-07,-3.824769034838415346e-07,-3.906147099409445595e-07,-3.987525163980475844e-07,-4.068903228551506093e-07,-4.150281293122536342e-07,-4.231659357693566590e-07,-4.313037422264596839e-07,-4.394415486835627088e-07,-4.475793551406657337e-07,-4.557171615977687586e-07,-4.638549680548717835e-07,-4.719927745119748084e-07,-4.801305809690778333e-07,-4.882683874261808582e-07,-4.964061938832838831e-07,-5.045440003403869079e-07,-5.126818067974899328e-07 +0.000000000000000000e+00,-9.866881018567437067e-09,-1.973376203713487413e-08,-2.960064305570231285e-08,-3.946752407426975488e-08,-4.933440509283719691e-08,-5.920128611140463894e-08,-6.906816712997208759e-08,-7.893504814853953624e-08,-8.880192916710698489e-08,-9.866881018567443353e-08,-1.085356912042418822e-07,-1.184025722228093308e-07,-1.282694532413767795e-07,-1.381363342599442281e-07,-1.480032152785116768e-07,-1.578700962970791254e-07,-1.677369773156465741e-07,-1.776038583342140227e-07,-1.874707393527814714e-07,-1.973376203713489200e-07,-2.072045013899163687e-07,-2.170713824084838173e-07,-2.269382634270512659e-07,-2.368051444456187146e-07,-2.466720254641861897e-07,-2.565389064827536648e-07,-2.664057875013211399e-07,-2.762726685198886151e-07,-2.861395495384560902e-07,-2.960064305570235653e-07,-3.058733115755910404e-07,-3.157401925941585155e-07,-3.256070736127259906e-07,-3.354739546312934658e-07,-3.453408356498609409e-07,-3.552077166684284160e-07,-3.650745976869958911e-07,-3.749414787055633662e-07,-3.848083597241308414e-07,-3.946752407426983165e-07,-4.045421217612657916e-07,-4.144090027798332667e-07,-4.242758837984007418e-07,-4.341427648169682169e-07,-4.440096458355356921e-07,-4.538765268541031672e-07,-4.637434078726706423e-07,-4.736102888912381174e-07,-4.834771699098055925e-07,-4.933440509283730147e-07,-5.032109319469404369e-07,-5.130778129655078591e-07,-5.229446939840752812e-07,-5.328115750026427034e-07,-5.426784560212101256e-07,-5.525453370397775478e-07,-5.624122180583449699e-07,-5.722790990769123921e-07,-5.821459800954798143e-07,-5.920128611140472365e-07,-6.018797421326146587e-07,-6.117466231511820808e-07,-6.216135041697495030e-07 +0.000000000000000000e+00,-9.277426047626281431e-09,-1.855485209525256286e-08,-2.783227814287884429e-08,-3.710970419050512572e-08,-4.638713023813140716e-08,-5.566455628575768859e-08,-6.494198233338397663e-08,-7.421940838101026468e-08,-8.349683442863655273e-08,-9.277426047626284078e-08,-1.020516865238891288e-07,-1.113291125715154169e-07,-1.206065386191417049e-07,-1.298839646667680062e-07,-1.391613907143943075e-07,-1.484388167620206088e-07,-1.577162428096469101e-07,-1.669936688572732113e-07,-1.762710949048995126e-07,-1.855485209525258139e-07,-1.948259470001521152e-07,-2.041033730477784165e-07,-2.133807990954047178e-07,-2.226582251430310190e-07,-2.319356511906573203e-07,-2.412130772382836216e-07,-2.504905032859099229e-07,-2.597679293335362242e-07,-2.690453553811625255e-07,-2.783227814287888267e-07,-2.876002074764151280e-07,-2.968776335240414293e-07,-3.061550595716677306e-07,-3.154324856192940319e-07,-3.247099116669203332e-07,-3.339873377145466344e-07,-3.432647637621729357e-07,-3.525421898097992370e-07,-3.618196158574255383e-07,-3.710970419050518396e-07,-3.803744679526781409e-07,-3.896518940003044421e-07,-3.989293200479307434e-07,-4.082067460955570447e-07,-4.174841721431833460e-07,-4.267615981908096473e-07,-4.360390242384359486e-07,-4.453164502860622498e-07,-4.545938763336885511e-07,-4.638713023813148524e-07,-4.731487284289411537e-07,-4.824261544765674550e-07,-4.917035805241937033e-07,-5.009810065718199517e-07,-5.102584326194462000e-07,-5.195358586670724484e-07,-5.288132847146986967e-07,-5.380907107623249450e-07,-5.473681368099511934e-07,-5.566455628575774417e-07,-5.659229889052036901e-07,-5.752004149528299384e-07,-5.844778410004561868e-07 +0.000000000000000000e+00,-8.933557884437523697e-09,-1.786711576887504739e-08,-2.680067365331256944e-08,-3.573423153775008817e-08,-4.466778942218760691e-08,-5.360134730662512564e-08,-6.253490519106265099e-08,-7.146846307550017634e-08,-8.040202095993770170e-08,-8.933557884437522705e-08,-9.826913672881275240e-08,-1.072026946132502778e-07,-1.161362524976878031e-07,-1.250698103821253285e-07,-1.340033682665628538e-07,-1.429369261510003792e-07,-1.518704840354379045e-07,-1.608040419198754299e-07,-1.697375998043129552e-07,-1.786711576887504806e-07,-1.876047155731880059e-07,-1.965382734576255313e-07,-2.054718313420630566e-07,-2.144053892265005820e-07,-2.233389471109381073e-07,-2.322725049953756327e-07,-2.412060628798131580e-07,-2.501396207642507099e-07,-2.590731786486882617e-07,-2.680067365331258135e-07,-2.769402944175633653e-07,-2.858738523020009171e-07,-2.948074101864384690e-07,-3.037409680708760208e-07,-3.126745259553135726e-07,-3.216080838397511244e-07,-3.305416417241886762e-07,-3.394751996086262281e-07,-3.484087574930637799e-07,-3.573423153775013317e-07,-3.662758732619388835e-07,-3.752094311463764354e-07,-3.841429890308139872e-07,-3.930765469152515390e-07,-4.020101047996890908e-07,-4.109436626841266426e-07,-4.198772205685641945e-07,-4.288107784530017463e-07,-4.377443363374392981e-07,-4.466778942218768499e-07,-4.556114521063144017e-07,-4.645450099907519536e-07,-4.734785678751895054e-07,-4.824121257596270572e-07,-4.913456836440646620e-07,-5.002792415285022667e-07,-5.092127994129398715e-07,-5.181463572973774763e-07,-5.270799151818150810e-07,-5.360134730662526858e-07,-5.449470309506902905e-07,-5.538805888351278953e-07,-5.628141467195655001e-07 +0.000000000000000000e+00,-1.060781295214673273e-08,-2.121562590429346547e-08,-3.182343885644019490e-08,-4.243125180858692432e-08,-5.303906476073365375e-08,-6.364687771288038979e-08,-7.425469066502712584e-08,-8.486250361717386188e-08,-9.547031656932059792e-08,-1.060781295214673340e-07,-1.166859424736140700e-07,-1.272937554257608061e-07,-1.379015683779075421e-07,-1.485093813300542781e-07,-1.591171942822010142e-07,-1.697250072343477502e-07,-1.803328201864944863e-07,-1.909406331386412223e-07,-2.015484460907879584e-07,-2.121562590429346944e-07,-2.227640719950814304e-07,-2.333718849472281665e-07,-2.439796978993748761e-07,-2.545875108515215592e-07,-2.651953238036682423e-07,-2.758031367558149254e-07,-2.864109497079616085e-07,-2.970187626601082916e-07,-3.076265756122549747e-07,-3.182343885644016578e-07,-3.288422015165483409e-07,-3.394500144686950240e-07,-3.500578274208417071e-07,-3.606656403729883902e-07,-3.712734533251350733e-07,-3.818812662772817564e-07,-3.924890792294284395e-07,-4.030968921815751226e-07,-4.137047051337218057e-07,-4.243125180858684888e-07,-4.349203310380151719e-07,-4.455281439901618550e-07,-4.561359569423085381e-07,-4.667437698944552213e-07,-4.773515828466019044e-07,-4.879593957987485875e-07,-4.985672087508952706e-07,-5.091750217030419537e-07,-5.197828346551886368e-07,-5.303906476073353199e-07,-5.409984605594820030e-07,-5.516062735116286861e-07,-5.622140864637753692e-07,-5.728218994159220523e-07,-5.834297123680687354e-07,-5.940375253202154185e-07,-6.046453382723621016e-07,-6.152531512245087847e-07,-6.258609641766554678e-07,-6.364687771288021509e-07,-6.470765900809488340e-07,-6.576844030330955171e-07,-6.682922159852422002e-07 +0.000000000000000000e+00,-9.277426047623485561e-09,-1.855485209524697112e-08,-2.783227814287045668e-08,-3.710970419049394224e-08,-4.638713023811742449e-08,-5.566455628574090675e-08,-6.494198233336438900e-08,-7.421940838098787125e-08,-8.349683442861135350e-08,-9.277426047623483575e-08,-1.020516865238583180e-07,-1.113291125714818003e-07,-1.206065386191052825e-07,-1.298839646667287780e-07,-1.391613907143522735e-07,-1.484388167619757690e-07,-1.577162428095992645e-07,-1.669936688572227599e-07,-1.762710949048462554e-07,-1.855485209524697509e-07,-1.948259470000932464e-07,-2.041033730477167419e-07,-2.133807990953402374e-07,-2.226582251429637329e-07,-2.319356511905872283e-07,-2.412130772382107238e-07,-2.504905032858342193e-07,-2.597679293334577148e-07,-2.690453553810812103e-07,-2.783227814287047058e-07,-2.876002074763282013e-07,-2.968776335239516968e-07,-3.061550595715751922e-07,-3.154324856191986877e-07,-3.247099116668221832e-07,-3.339873377144456787e-07,-3.432647637620691742e-07,-3.525421898096926697e-07,-3.618196158573161652e-07,-3.710970419049396607e-07,-3.803744679525631561e-07,-3.896518940001866516e-07,-3.989293200478101471e-07,-4.082067460954336426e-07,-4.174841721430571381e-07,-4.267615981906806336e-07,-4.360390242383041291e-07,-4.453164502859276245e-07,-4.545938763335511200e-07,-4.638713023811746155e-07,-4.731487284287981110e-07,-4.824261544764215536e-07,-4.917035805240450490e-07,-5.009810065716685445e-07,-5.102584326192920400e-07,-5.195358586669155355e-07,-5.288132847145390310e-07,-5.380907107621625265e-07,-5.473681368097860220e-07,-5.566455628574095174e-07,-5.659229889050330129e-07,-5.752004149526565084e-07,-5.844778410002800039e-07 +0.000000000000000000e+00,-8.933557884433841089e-09,-1.786711576886768218e-08,-2.680067365330152492e-08,-3.573423153773537097e-08,-4.466778942216921703e-08,-5.360134730660306308e-08,-6.253490519103690913e-08,-7.146846307547075518e-08,-8.040202095990460124e-08,-8.933557884433844729e-08,-9.826913672877229334e-08,-1.072026946132061394e-07,-1.161362524976399854e-07,-1.250698103820738447e-07,-1.340033682665076908e-07,-1.429369261509415368e-07,-1.518704840353753829e-07,-1.608040419198092289e-07,-1.697375998042430750e-07,-1.786711576886769210e-07,-1.876047155731107671e-07,-1.965382734575446132e-07,-2.054718313419784592e-07,-2.144053892264123053e-07,-2.233389471108461513e-07,-2.322725049952799974e-07,-2.412060628797138434e-07,-2.501396207641476895e-07,-2.590731786485815355e-07,-2.680067365330153816e-07,-2.769402944174492276e-07,-2.858738523018830737e-07,-2.948074101863169197e-07,-3.037409680707507658e-07,-3.126745259551846118e-07,-3.216080838396184579e-07,-3.305416417240523039e-07,-3.394751996084861500e-07,-3.484087574929199960e-07,-3.573423153773538421e-07,-3.662758732617876882e-07,-3.752094311462215342e-07,-3.841429890306553803e-07,-3.930765469150892263e-07,-4.020101047995230724e-07,-4.109436626839569184e-07,-4.198772205683907645e-07,-4.288107784528246105e-07,-4.377443363372584566e-07,-4.466778942216923026e-07,-4.556114521061261487e-07,-4.645450099905599947e-07,-4.734785678749938408e-07,-4.824121257594276868e-07,-4.913456836438615858e-07,-5.002792415282954848e-07,-5.092127994127293838e-07,-5.181463572971632828e-07,-5.270799151815971818e-07,-5.360134730660310808e-07,-5.449470309504649798e-07,-5.538805888348988788e-07,-5.628141467193327778e-07 +0.000000000000000000e+00,-1.060781295214392198e-08,-2.121562590428784395e-08,-3.182343885643176427e-08,-4.243125180857568128e-08,-5.303906476071959830e-08,-6.364687771286351531e-08,-7.425469066500743232e-08,-8.486250361715134933e-08,-9.547031656929526634e-08,-1.060781295214391834e-07,-1.166859424735831004e-07,-1.272937554257270041e-07,-1.379015683778709079e-07,-1.485093813300148117e-07,-1.591171942821587155e-07,-1.697250072343026193e-07,-1.803328201864465230e-07,-1.909406331385904268e-07,-2.015484460907343306e-07,-2.121562590428782344e-07,-2.227640719950221381e-07,-2.333718849471660419e-07,-2.439796978993099722e-07,-2.545875108514539024e-07,-2.651953238035978327e-07,-2.758031367557417629e-07,-2.864109497078856932e-07,-2.970187626600296234e-07,-3.076265756121735536e-07,-3.182343885643174839e-07,-3.288422015164614141e-07,-3.394500144686053444e-07,-3.500578274207492746e-07,-3.606656403728932049e-07,-3.712734533250371351e-07,-3.818812662771810654e-07,-3.924890792293249956e-07,-4.030968921814689259e-07,-4.137047051336128561e-07,-4.243125180857567864e-07,-4.349203310379007166e-07,-4.455281439900446469e-07,-4.561359569421885771e-07,-4.667437698943325074e-07,-4.773515828464764376e-07,-4.879593957986203678e-07,-4.985672087507642981e-07,-5.091750217029082283e-07,-5.197828346550521586e-07,-5.303906476071960888e-07,-5.409984605593400191e-07,-5.516062735114839493e-07,-5.622140864636278796e-07,-5.728218994157718098e-07,-5.834297123679157401e-07,-5.940375253200596703e-07,-6.046453382722036006e-07,-6.152531512243475308e-07,-6.258609641764914611e-07,-6.364687771286353913e-07,-6.470765900807793216e-07,-6.576844030329232518e-07,-6.682922159850671820e-07 +0.000000000000000000e+00,-9.832332546061564065e-09,-1.966466509212312813e-08,-2.949699763818469054e-08,-3.932933018424624964e-08,-4.916166273030780874e-08,-5.899399527636936785e-08,-6.882632782243093357e-08,-7.865866036849249929e-08,-8.849099291455406501e-08,-9.832332546061563072e-08,-1.081556580066771964e-07,-1.179879905527387622e-07,-1.278203230988003279e-07,-1.376526556448618936e-07,-1.474849881909234593e-07,-1.573173207369850250e-07,-1.671496532830465908e-07,-1.769819858291081565e-07,-1.868143183751697222e-07,-1.966466509212312879e-07,-2.064789834672928536e-07,-2.163113160133544194e-07,-2.261436485594159851e-07,-2.359759811054775508e-07,-2.458083136515391430e-07,-2.556406461976007087e-07,-2.654729787436622744e-07,-2.753053112897238401e-07,-2.851376438357854059e-07,-2.949699763818469716e-07,-3.048023089279085373e-07,-3.146346414739701030e-07,-3.244669740200316687e-07,-3.342993065660932345e-07,-3.441316391121548002e-07,-3.539639716582163659e-07,-3.637963042042779316e-07,-3.736286367503394973e-07,-3.834609692964010631e-07,-3.932933018424626288e-07,-4.031256343885241945e-07,-4.129579669345857602e-07,-4.227902994806473259e-07,-4.326226320267088917e-07,-4.424549645727704574e-07,-4.522872971188320231e-07,-4.621196296648935888e-07,-4.719519622109551545e-07,-4.817842947570167203e-07,-4.916166273030782860e-07,-5.014489598491398517e-07,-5.112812923952014174e-07,-5.211136249412629831e-07,-5.309459574873245488e-07,-5.407782900333861146e-07,-5.506106225794476803e-07,-5.604429551255092460e-07,-5.702752876715708117e-07,-5.801076202176323774e-07,-5.899399527636939432e-07,-5.997722853097555089e-07,-6.096046178558170746e-07,-6.194369504018786403e-07 +0.000000000000000000e+00,-9.575141054979775360e-09,-1.915028210995955072e-08,-2.872542316493932443e-08,-3.830056421991909482e-08,-4.787570527489886522e-08,-5.745084632987863562e-08,-6.702598738485840601e-08,-7.660112843983817641e-08,-8.617626949481794681e-08,-9.575141054979771721e-08,-1.053265516047774876e-07,-1.149016926597572580e-07,-1.244768337147370284e-07,-1.340519747697168120e-07,-1.436271158246965957e-07,-1.532022568796763793e-07,-1.627773979346561629e-07,-1.723525389896359466e-07,-1.819276800446157302e-07,-1.915028210995955138e-07,-2.010779621545752975e-07,-2.106531032095550811e-07,-2.202282442645348647e-07,-2.298033853195146483e-07,-2.393785263744944584e-07,-2.489536674294742686e-07,-2.585288084844540787e-07,-2.681039495394338888e-07,-2.776790905944136989e-07,-2.872542316493935090e-07,-2.968293727043733191e-07,-3.064045137593531292e-07,-3.159796548143329393e-07,-3.255547958693127494e-07,-3.351299369242925595e-07,-3.447050779792723696e-07,-3.542802190342521797e-07,-3.638553600892319898e-07,-3.734305011442117999e-07,-3.830056421991916100e-07,-3.925807832541714201e-07,-4.021559243091512302e-07,-4.117310653641310403e-07,-4.213062064191108504e-07,-4.308813474740906605e-07,-4.404564885290704706e-07,-4.500316295840502807e-07,-4.596067706390300908e-07,-4.691819116940099009e-07,-4.787570527489897639e-07,-4.883321938039696270e-07,-4.979073348589494900e-07,-5.074824759139293531e-07,-5.170576169689092161e-07,-5.266327580238890791e-07,-5.362078990788689422e-07,-5.457830401338488052e-07,-5.553581811888286683e-07,-5.649333222438085313e-07,-5.745084632987883943e-07,-5.840836043537682574e-07,-5.936587454087481204e-07,-6.032338864637279835e-07 +0.000000000000000000e+00,-1.123528937485612867e-08,-2.247057874971225735e-08,-3.370586812456838602e-08,-4.494115749942451469e-08,-5.617644687428064337e-08,-6.741173624913677204e-08,-7.864702562399290733e-08,-8.988231499884904262e-08,-1.011176043737051779e-07,-1.123528937485613132e-07,-1.235881831234174485e-07,-1.348234724982735706e-07,-1.460587618731296926e-07,-1.572940512479858147e-07,-1.685293406228419367e-07,-1.797646299976980588e-07,-1.909999193725541808e-07,-2.022352087474103029e-07,-2.134704981222664249e-07,-2.247057874971225470e-07,-2.359410768719786691e-07,-2.471763662468347911e-07,-2.584116556216909132e-07,-2.696469449965470352e-07,-2.808822343714031573e-07,-2.921175237462592793e-07,-3.033528131211154014e-07,-3.145881024959715235e-07,-3.258233918708276455e-07,-3.370586812456837676e-07,-3.482939706205398896e-07,-3.595292599953960117e-07,-3.707645493702521337e-07,-3.819998387451082558e-07,-3.932351281199643778e-07,-4.044704174948204999e-07,-4.157057068696766220e-07,-4.269409962445327440e-07,-4.381762856193888661e-07,-4.494115749942449881e-07,-4.606468643691011102e-07,-4.718821537439572322e-07,-4.831174431188133543e-07,-4.943527324936694764e-07,-5.055880218685255984e-07,-5.168233112433817205e-07,-5.280586006182378425e-07,-5.392938899930939646e-07,-5.505291793679500866e-07,-5.617644687428062087e-07,-5.729997581176623307e-07,-5.842350474925184528e-07,-5.954703368673745749e-07,-6.067056262422306969e-07,-6.179409156170868190e-07,-6.291762049919429410e-07,-6.404114943667990631e-07,-6.516467837416551851e-07,-6.628820731165113072e-07,-6.741173624913674293e-07,-6.853526518662235513e-07,-6.965879412410796734e-07,-7.078232306159357954e-07 +0.000000000000000000e+00,-9.832332546060078449e-09,-1.966466509212015690e-08,-2.949699763818023700e-08,-3.932933018424032041e-08,-4.916166273030040382e-08,-5.899399527636048724e-08,-6.882632782242057065e-08,-7.865866036848065406e-08,-8.849099291454073747e-08,-9.832332546060082088e-08,-1.081556580066609043e-07,-1.179879905527209877e-07,-1.278203230987810844e-07,-1.376526556448411678e-07,-1.474849881909012512e-07,-1.573173207369613346e-07,-1.671496532830214180e-07,-1.769819858290815014e-07,-1.868143183751415848e-07,-1.966466509212016682e-07,-2.064789834672617516e-07,-2.163113160133218351e-07,-2.261436485593819185e-07,-2.359759811054420019e-07,-2.458083136515020853e-07,-2.556406461975621687e-07,-2.654729787436222521e-07,-2.753053112896823355e-07,-2.851376438357424189e-07,-2.949699763818025024e-07,-3.048023089278625858e-07,-3.146346414739226692e-07,-3.244669740199827526e-07,-3.342993065660428360e-07,-3.441316391121029194e-07,-3.539639716581630028e-07,-3.637963042042230862e-07,-3.736286367502831696e-07,-3.834609692963432531e-07,-3.932933018424033365e-07,-4.031256343884634199e-07,-4.129579669345235033e-07,-4.227902994805835867e-07,-4.326226320266436701e-07,-4.424549645727037535e-07,-4.522872971187638369e-07,-4.621196296648239204e-07,-4.719519622108840038e-07,-4.817842947569440872e-07,-4.916166273030041706e-07,-5.014489598490642540e-07,-5.112812923951243374e-07,-5.211136249411844208e-07,-5.309459574872445042e-07,-5.407782900333045876e-07,-5.506106225793646711e-07,-5.604429551254247545e-07,-5.702752876714848379e-07,-5.801076202175449213e-07,-5.899399527636050047e-07,-5.997722853096650881e-07,-6.096046178557251715e-07,-6.194369504017852549e-07 +0.000000000000000000e+00,-9.575141054977715680e-09,-1.915028210995543136e-08,-2.872542316493314704e-08,-3.830056421991086272e-08,-4.787570527488858171e-08,-5.745084632986630070e-08,-6.702598738484401969e-08,-7.660112843982173868e-08,-8.617626949479945767e-08,-9.575141054977717666e-08,-1.053265516047548956e-07,-1.149016926597326146e-07,-1.244768337147103204e-07,-1.340519747696880129e-07,-1.436271158246657054e-07,-1.532022568796433979e-07,-1.627773979346210905e-07,-1.723525389895987830e-07,-1.819276800445764755e-07,-1.915028210995541680e-07,-2.010779621545318605e-07,-2.106531032095095531e-07,-2.202282442644872456e-07,-2.298033853194649381e-07,-2.393785263744426306e-07,-2.489536674294203231e-07,-2.585288084843980157e-07,-2.681039495393757082e-07,-2.776790905943534007e-07,-2.872542316493310932e-07,-2.968293727043087857e-07,-3.064045137592864783e-07,-3.159796548142641708e-07,-3.255547958692418633e-07,-3.351299369242195558e-07,-3.447050779791972483e-07,-3.542802190341749409e-07,-3.638553600891526334e-07,-3.734305011441303259e-07,-3.830056421991080184e-07,-3.925807832540857109e-07,-4.021559243090634035e-07,-4.117310653640410960e-07,-4.213062064190187885e-07,-4.308813474739964810e-07,-4.404564885289741735e-07,-4.500316295839518660e-07,-4.596067706389295586e-07,-4.691819116939072511e-07,-4.787570527488849436e-07,-4.883321938038626891e-07,-4.979073348588404345e-07,-5.074824759138181800e-07,-5.170576169687959254e-07,-5.266327580237736709e-07,-5.362078990787514164e-07,-5.457830401337291618e-07,-5.553581811887069073e-07,-5.649333222436846527e-07,-5.745084632986623982e-07,-5.840836043536401437e-07,-5.936587454086178891e-07,-6.032338864635956346e-07 +0.000000000000000000e+00,-1.123528937485441145e-08,-2.247057874970882289e-08,-3.370586812456323103e-08,-4.494115749941763917e-08,-5.617644687427204731e-08,-6.741173624912646206e-08,-7.864702562398087682e-08,-8.988231499883529157e-08,-1.011176043736897063e-07,-1.123528937485441211e-07,-1.235881831233985491e-07,-1.348234724982529771e-07,-1.460587618731074051e-07,-1.572940512479618330e-07,-1.685293406228162610e-07,-1.797646299976706890e-07,-1.909999193725251170e-07,-2.022352087473795450e-07,-2.134704981222339730e-07,-2.247057874970884010e-07,-2.359410768719428290e-07,-2.471763662467972570e-07,-2.584116556216516850e-07,-2.696469449965061129e-07,-2.808822343713605409e-07,-2.921175237462149689e-07,-3.033528131210693969e-07,-3.145881024959238249e-07,-3.258233918707782529e-07,-3.370586812456326809e-07,-3.482939706204871089e-07,-3.595292599953415369e-07,-3.707645493701959649e-07,-3.819998387450503929e-07,-3.932351281199048208e-07,-4.044704174947592488e-07,-4.157057068696136768e-07,-4.269409962444681048e-07,-4.381762856193225328e-07,-4.494115749941769608e-07,-4.606468643690313888e-07,-4.718821537438858168e-07,-4.831174431187401918e-07,-4.943527324935946198e-07,-5.055880218684490478e-07,-5.168233112433034758e-07,-5.280586006181579038e-07,-5.392938899930123318e-07,-5.505291793678667598e-07,-5.617644687427211878e-07,-5.729997581175756157e-07,-5.842350474924300437e-07,-5.954703368672844717e-07,-6.067056262421388997e-07,-6.179409156169933277e-07,-6.291762049918477557e-07,-6.404114943667021837e-07,-6.516467837415566117e-07,-6.628820731164110397e-07,-6.741173624912654677e-07,-6.853526518661198956e-07,-6.965879412409743236e-07,-7.078232306158287516e-07 +0.000000000000000000e+00,-1.025723839087115240e-08,-2.051447678174230479e-08,-3.077171517261346049e-08,-4.102895356348461620e-08,-5.128619195435577190e-08,-6.154343034522692099e-08,-7.180066873609807008e-08,-8.205790712696921916e-08,-9.231514551784036825e-08,-1.025723839087115173e-07,-1.128296222995826664e-07,-1.230868606904538155e-07,-1.333440990813249514e-07,-1.436013374721960872e-07,-1.538585758630672231e-07,-1.641158142539383589e-07,-1.743730526448094948e-07,-1.846302910356806306e-07,-1.948875294265517665e-07,-2.051447678174229023e-07,-2.154020062082940382e-07,-2.256592445991651740e-07,-2.359164829900363099e-07,-2.461737213809074722e-07,-2.564309597717786345e-07,-2.666881981626497968e-07,-2.769454365535209592e-07,-2.872026749443921215e-07,-2.974599133352632838e-07,-3.077171517261344461e-07,-3.179743901170056085e-07,-3.282316285078767708e-07,-3.384888668987479331e-07,-3.487461052896190954e-07,-3.590033436804902577e-07,-3.692605820713614201e-07,-3.795178204622325824e-07,-3.897750588531037447e-07,-4.000322972439749070e-07,-4.102895356348460693e-07,-4.205467740257172317e-07,-4.308040124165883940e-07,-4.410612508074595563e-07,-4.513184891983307186e-07,-4.615757275892018810e-07,-4.718329659800730433e-07,-4.820902043709441527e-07,-4.923474427618152620e-07,-5.026046811526863714e-07,-5.128619195435574808e-07,-5.231191579344285902e-07,-5.333763963252996996e-07,-5.436336347161708089e-07,-5.538908731070419183e-07,-5.641481114979130277e-07,-5.744053498887841371e-07,-5.846625882796552465e-07,-5.949198266705263559e-07,-6.051770650613974652e-07,-6.154343034522685746e-07,-6.256915418431396840e-07,-6.359487802340107934e-07,-6.462060186248819028e-07 +0.000000000000000000e+00,-1.005561850490100542e-08,-2.011123700980201085e-08,-3.016685551470301627e-08,-4.022247401960402170e-08,-5.027809252450502712e-08,-6.033371102940603255e-08,-7.038932953430704459e-08,-8.044494803920805663e-08,-9.050056654410906868e-08,-1.005561850490100807e-07,-1.106118035539110928e-07,-1.206674220588120916e-07,-1.307230405637130904e-07,-1.407786590686140892e-07,-1.508342775735150880e-07,-1.608898960784160868e-07,-1.709455145833170856e-07,-1.810011330882180844e-07,-1.910567515931190832e-07,-2.011123700980200820e-07,-2.111679886029210808e-07,-2.212236071078220796e-07,-2.312792256127230784e-07,-2.413348441176240773e-07,-2.513904626225250761e-07,-2.614460811274260749e-07,-2.715016996323270737e-07,-2.815573181372280725e-07,-2.916129366421290713e-07,-3.016685551470300701e-07,-3.117241736519310689e-07,-3.217797921568320677e-07,-3.318354106617330665e-07,-3.418910291666340653e-07,-3.519466476715350641e-07,-3.620022661764360629e-07,-3.720578846813370618e-07,-3.821135031862380606e-07,-3.921691216911390594e-07,-4.022247401960400582e-07,-4.122803587009410570e-07,-4.223359772058420558e-07,-4.323915957107430546e-07,-4.424472142156440534e-07,-4.525028327205450522e-07,-4.625584512254460510e-07,-4.726140697303470498e-07,-4.826696882352480486e-07,-4.927253067401491004e-07,-5.027809252450501521e-07,-5.128365437499512039e-07,-5.228921622548522556e-07,-5.329477807597533074e-07,-5.430033992646543591e-07,-5.530590177695554109e-07,-5.631146362744564626e-07,-5.731702547793575144e-07,-5.832258732842585661e-07,-5.932814917891596179e-07,-6.033371102940606696e-07,-6.133927287989617213e-07,-6.234483473038627731e-07,-6.335039658087638248e-07 +0.000000000000000000e+00,-1.175557988562580417e-08,-2.351115977125160834e-08,-3.526673965687741252e-08,-4.702231954250321669e-08,-5.877789942812902086e-08,-7.053347931375482503e-08,-8.228905919938062921e-08,-9.404463908500643338e-08,-1.058002189706322376e-07,-1.175557988562580417e-07,-1.293113787418838459e-07,-1.410669586275096501e-07,-1.528225385131354542e-07,-1.645781183987612584e-07,-1.763336982843870626e-07,-1.880892781700128668e-07,-1.998448580556386709e-07,-2.116004379412644751e-07,-2.233560178268902793e-07,-2.351115977125160834e-07,-2.468671775981419141e-07,-2.586227574837677447e-07,-2.703783373693935754e-07,-2.821339172550194060e-07,-2.938894971406452367e-07,-3.056450770262710673e-07,-3.174006569118968979e-07,-3.291562367975227286e-07,-3.409118166831485592e-07,-3.526673965687743899e-07,-3.644229764544002205e-07,-3.761785563400260512e-07,-3.879341362256518818e-07,-3.996897161112777124e-07,-4.114452959969035431e-07,-4.232008758825293737e-07,-4.349564557681552044e-07,-4.467120356537810350e-07,-4.584676155394068657e-07,-4.702231954250326963e-07,-4.819787753106585269e-07,-4.937343551962843576e-07,-5.054899350819101882e-07,-5.172455149675360189e-07,-5.290010948531618495e-07,-5.407566747387876801e-07,-5.525122546244135108e-07,-5.642678345100393414e-07,-5.760234143956651721e-07,-5.877789942812910027e-07,-5.995345741669168334e-07,-6.112901540525426640e-07,-6.230457339381684946e-07,-6.348013138237943253e-07,-6.465568937094201559e-07,-6.583124735950459866e-07,-6.700680534806718172e-07,-6.818236333662976479e-07,-6.935792132519234785e-07,-7.053347931375493091e-07,-7.170903730231751398e-07,-7.288459529088009704e-07,-7.406015327944268011e-07 +0.000000000000000000e+00,-1.025723839087040132e-08,-2.051447678174080263e-08,-3.077171517261120395e-08,-4.102895356348160526e-08,-5.128619195435200658e-08,-6.154343034522240789e-08,-7.180066873609281583e-08,-8.205790712696322376e-08,-9.231514551783363169e-08,-1.025723839087040396e-07,-1.128296222995744476e-07,-1.230868606904448423e-07,-1.333440990813152370e-07,-1.436013374721856317e-07,-1.538585758630560263e-07,-1.641158142539264210e-07,-1.743730526447968157e-07,-1.846302910356672104e-07,-1.948875294265376051e-07,-2.051447678174079998e-07,-2.154020062082783945e-07,-2.256592445991487892e-07,-2.359164829900191839e-07,-2.461737213808895786e-07,-2.564309597717599469e-07,-2.666881981626303151e-07,-2.769454365535006833e-07,-2.872026749443710515e-07,-2.974599133352414198e-07,-3.077171517261117880e-07,-3.179743901169821562e-07,-3.282316285078525245e-07,-3.384888668987228927e-07,-3.487461052895932609e-07,-3.590033436804636291e-07,-3.692605820713339974e-07,-3.795178204622043656e-07,-3.897750588530747338e-07,-4.000322972439451021e-07,-4.102895356348154703e-07,-4.205467740256858385e-07,-4.308040124165562067e-07,-4.410612508074265750e-07,-4.513184891982969432e-07,-4.615757275891673114e-07,-4.718329659800376796e-07,-4.820902043709080479e-07,-4.923474427617784161e-07,-5.026046811526487843e-07,-5.128619195435191526e-07,-5.231191579343895208e-07,-5.333763963252598890e-07,-5.436336347161302572e-07,-5.538908731070006255e-07,-5.641481114978709937e-07,-5.744053498887413619e-07,-5.846625882796117302e-07,-5.949198266704820984e-07,-6.051770650613524666e-07,-6.154343034522228348e-07,-6.256915418430932031e-07,-6.359487802339635713e-07,-6.462060186248339395e-07 +0.000000000000000000e+00,-1.005561850489988046e-08,-2.011123700979976092e-08,-3.016685551469964138e-08,-4.022247401959952184e-08,-5.027809252449940230e-08,-6.033371102939928276e-08,-7.038932953429915660e-08,-8.044494803919903044e-08,-9.050056654409890428e-08,-1.005561850489987781e-07,-1.106118035538986520e-07,-1.206674220587985390e-07,-1.307230405636984261e-07,-1.407786590685983132e-07,-1.508342775734982003e-07,-1.608898960783980873e-07,-1.709455145832979744e-07,-1.810011330881978615e-07,-1.910567515930977486e-07,-2.011123700979976357e-07,-2.111679886028975227e-07,-2.212236071077974098e-07,-2.312792256126972969e-07,-2.413348441175971840e-07,-2.513904626224970710e-07,-2.614460811273969581e-07,-2.715016996322968452e-07,-2.815573181371967323e-07,-2.916129366420966193e-07,-3.016685551469965064e-07,-3.117241736518963935e-07,-3.217797921567962806e-07,-3.318354106616961677e-07,-3.418910291665960547e-07,-3.519466476714959418e-07,-3.620022661763958289e-07,-3.720578846812957160e-07,-3.821135031861956030e-07,-3.921691216910954901e-07,-4.022247401959953772e-07,-4.122803587008952643e-07,-4.223359772057951513e-07,-4.323915957106950384e-07,-4.424472142155949255e-07,-4.525028327204948126e-07,-4.625584512253946996e-07,-4.726140697302945867e-07,-4.826696882351944738e-07,-4.927253067400943609e-07,-5.027809252449942480e-07,-5.128365437498941350e-07,-5.228921622547940221e-07,-5.329477807596939092e-07,-5.430033992645937963e-07,-5.530590177694936833e-07,-5.631146362743935704e-07,-5.731702547792934575e-07,-5.832258732841933446e-07,-5.932814917890932316e-07,-6.033371102939931187e-07,-6.133927287988930058e-07,-6.234483473037928929e-07,-6.335039658086927800e-07 +0.000000000000000000e+00,-1.175557988562481652e-08,-2.351115977124963304e-08,-3.526673965687444790e-08,-4.702231954249925946e-08,-5.877789942812407101e-08,-7.053347931374888257e-08,-8.228905919937369412e-08,-9.404463908499850568e-08,-1.058002189706233172e-07,-1.175557988562481288e-07,-1.293113787418729403e-07,-1.410669586274977387e-07,-1.528225385131225370e-07,-1.645781183987473353e-07,-1.763336982843721336e-07,-1.880892781699969320e-07,-1.998448580556217303e-07,-2.116004379412465286e-07,-2.233560178268713269e-07,-2.351115977124961252e-07,-2.468671775981209500e-07,-2.586227574837457748e-07,-2.703783373693705996e-07,-2.821339172549954244e-07,-2.938894971406202492e-07,-3.056450770262450740e-07,-3.174006569118698988e-07,-3.291562367974947236e-07,-3.409118166831195484e-07,-3.526673965687443731e-07,-3.644229764543691979e-07,-3.761785563399940227e-07,-3.879341362256188475e-07,-3.996897161112436723e-07,-4.114452959968684971e-07,-4.232008758824933219e-07,-4.349564557681181467e-07,-4.467120356537429715e-07,-4.584676155393677963e-07,-4.702231954249926210e-07,-4.819787753106174458e-07,-4.937343551962423236e-07,-5.054899350818672013e-07,-5.172455149674920790e-07,-5.290010948531169568e-07,-5.407566747387418345e-07,-5.525122546243667122e-07,-5.642678345099915899e-07,-5.760234143956164677e-07,-5.877789942812413454e-07,-5.995345741668662231e-07,-6.112901540524911009e-07,-6.230457339381159786e-07,-6.348013138237408563e-07,-6.465568937093657341e-07,-6.583124735949906118e-07,-6.700680534806154895e-07,-6.818236333662403673e-07,-6.935792132518652450e-07,-7.053347931374901227e-07,-7.170903730231150004e-07,-7.288459529087398782e-07,-7.406015327943647559e-07 +0.000000000000000000e+00,-1.062221113800099685e-08,-2.124442227600199369e-08,-3.186663341400299219e-08,-4.248884455200399400e-08,-5.311105569000499581e-08,-6.373326682800599762e-08,-7.435547796600699943e-08,-8.497768910400800124e-08,-9.559990024200900305e-08,-1.062221113800100049e-07,-1.168443225180110067e-07,-1.274665336560120217e-07,-1.380887447940130368e-07,-1.487109559320140518e-07,-1.593331670700150668e-07,-1.699553782080160819e-07,-1.805775893460170969e-07,-1.911998004840181120e-07,-2.018220116220191270e-07,-2.124442227600201421e-07,-2.230664338980211571e-07,-2.336886450360221721e-07,-2.443108561740231607e-07,-2.549330673120241493e-07,-2.655552784500251379e-07,-2.761774895880261264e-07,-2.867997007260271150e-07,-2.974219118640281036e-07,-3.080441230020290922e-07,-3.186663341400300807e-07,-3.292885452780310693e-07,-3.399107564160320579e-07,-3.505329675540330465e-07,-3.611551786920340350e-07,-3.717773898300350236e-07,-3.823996009680360122e-07,-3.930218121060370008e-07,-4.036440232440379893e-07,-4.142662343820389779e-07,-4.248884455200399665e-07,-4.355106566580409551e-07,-4.461328677960419436e-07,-4.567550789340429322e-07,-4.673772900720439208e-07,-4.779995012100449093e-07,-4.886217123480458979e-07,-4.992439234860468865e-07,-5.098661346240478751e-07,-5.204883457620488636e-07,-5.311105569000498522e-07,-5.417327680380508408e-07,-5.523549791760518294e-07,-5.629771903140528179e-07,-5.735994014520538065e-07,-5.842216125900547951e-07,-5.948438237280557837e-07,-6.054660348660567722e-07,-6.160882460040577608e-07,-6.267104571420587494e-07,-6.373326682800597380e-07,-6.479548794180607265e-07,-6.585770905560617151e-07,-6.691993016940627037e-07 +0.000000000000000000e+00,-1.044282843123893856e-08,-2.088565686247787711e-08,-3.132848529371681402e-08,-4.177131372495574761e-08,-5.221414215619468120e-08,-6.265697058743361480e-08,-7.309979901867254839e-08,-8.354262744991148199e-08,-9.398545588115041558e-08,-1.044282843123893492e-07,-1.148711127436282828e-07,-1.253139411748672031e-07,-1.357567696061061235e-07,-1.461995980373450438e-07,-1.566424264685839642e-07,-1.670852548998228846e-07,-1.775280833310618049e-07,-1.879709117623007253e-07,-1.984137401935396456e-07,-2.088565686247785660e-07,-2.192993970560174864e-07,-2.297422254872564067e-07,-2.401850539184953535e-07,-2.506278823497343004e-07,-2.610707107809732472e-07,-2.715135392122121940e-07,-2.819563676434511409e-07,-2.923991960746900877e-07,-3.028420245059290345e-07,-3.132848529371679813e-07,-3.237276813684069282e-07,-3.341705097996458750e-07,-3.446133382308848218e-07,-3.550561666621237687e-07,-3.654989950933627155e-07,-3.759418235246016623e-07,-3.863846519558406091e-07,-3.968274803870795560e-07,-4.072703088183185028e-07,-4.177131372495574496e-07,-4.281559656807963965e-07,-4.385987941120353433e-07,-4.490416225432742901e-07,-4.594844509745132370e-07,-4.699272794057521838e-07,-4.803701078369911306e-07,-4.908129362682300774e-07,-5.012557646994690243e-07,-5.116985931307079711e-07,-5.221414215619469179e-07,-5.325842499931858648e-07,-5.430270784244248116e-07,-5.534699068556637584e-07,-5.639127352869027052e-07,-5.743555637181416521e-07,-5.847983921493805989e-07,-5.952412205806195457e-07,-6.056840490118584926e-07,-6.161268774430974394e-07,-6.265697058743363862e-07,-6.370125343055753330e-07,-6.474553627368142799e-07,-6.578981911680532267e-07 +0.000000000000000000e+00,-1.223701273382613806e-08,-2.447402546765227613e-08,-3.671103820147841585e-08,-4.894805093530455887e-08,-6.118506366913070190e-08,-7.342207640295684493e-08,-8.565908913678298795e-08,-9.789610187060913098e-08,-1.101331146044352740e-07,-1.223701273382614303e-07,-1.346071400720875998e-07,-1.468441528059137693e-07,-1.590811655397399388e-07,-1.713181782735661083e-07,-1.835551910073922778e-07,-1.957922037412184473e-07,-2.080292164750446167e-07,-2.202662292088707862e-07,-2.325032419426969557e-07,-2.447402546765231252e-07,-2.569772674103492947e-07,-2.692142801441754642e-07,-2.814512928780016337e-07,-2.936883056118278032e-07,-3.059253183456539727e-07,-3.181623310794801422e-07,-3.303993438133063117e-07,-3.426363565471324812e-07,-3.548733692809586507e-07,-3.671103820147848202e-07,-3.793473947486109897e-07,-3.915844074824371592e-07,-4.038214202162633287e-07,-4.160584329500894982e-07,-4.282954456839156677e-07,-4.405324584177418372e-07,-4.527694711515680067e-07,-4.650064838853941762e-07,-4.772434966192203457e-07,-4.894805093530465681e-07,-5.017175220868727905e-07,-5.139545348206990130e-07,-5.261915475545252354e-07,-5.384285602883514579e-07,-5.506655730221776803e-07,-5.629025857560039027e-07,-5.751395984898301252e-07,-5.873766112236563476e-07,-5.996136239574825700e-07,-6.118506366913087925e-07,-6.240876494251350149e-07,-6.363246621589612373e-07,-6.485616748927874598e-07,-6.607986876266136822e-07,-6.730357003604399047e-07,-6.852727130942661271e-07,-6.975097258280923495e-07,-7.097467385619185720e-07,-7.219837512957447944e-07,-7.342207640295710168e-07,-7.464577767633972393e-07,-7.586947894972234617e-07,-7.709318022310496841e-07 +0.000000000000000000e+00,-1.062221113800032187e-08,-2.124442227600064373e-08,-3.186663341400096725e-08,-4.248884455200129408e-08,-5.311105569000162091e-08,-6.373326682800194774e-08,-7.435547796600227457e-08,-8.497768910400260140e-08,-9.559990024200292823e-08,-1.062221113800032551e-07,-1.168443225180035819e-07,-1.274665336560039220e-07,-1.380887447940042753e-07,-1.487109559320046286e-07,-1.593331670700049819e-07,-1.699553782080053352e-07,-1.805775893460056885e-07,-1.911998004840060418e-07,-2.018220116220063951e-07,-2.124442227600067483e-07,-2.230664338980071016e-07,-2.336886450360074549e-07,-2.443108561740078082e-07,-2.549330673120081615e-07,-2.655552784500085148e-07,-2.761774895880088681e-07,-2.867997007260092214e-07,-2.974219118640095747e-07,-3.080441230020099280e-07,-3.186663341400102813e-07,-3.292885452780106346e-07,-3.399107564160109879e-07,-3.505329675540113412e-07,-3.611551786920116945e-07,-3.717773898300120478e-07,-3.823996009680124011e-07,-3.930218121060127544e-07,-4.036440232440131077e-07,-4.142662343820134610e-07,-4.248884455200138143e-07,-4.355106566580141676e-07,-4.461328677960145209e-07,-4.567550789340148742e-07,-4.673772900720152275e-07,-4.779995012100155808e-07,-4.886217123480159341e-07,-4.992439234860162874e-07,-5.098661346240166407e-07,-5.204883457620169940e-07,-5.311105569000173473e-07,-5.417327680380177006e-07,-5.523549791760180539e-07,-5.629771903140184072e-07,-5.735994014520187605e-07,-5.842216125900191138e-07,-5.948438237280194671e-07,-6.054660348660198204e-07,-6.160882460040201737e-07,-6.267104571420205270e-07,-6.373326682800208803e-07,-6.479548794180212336e-07,-6.585770905560215869e-07,-6.691993016940219402e-07 +0.000000000000000000e+00,-1.044282843123819409e-08,-2.088565686247638819e-08,-3.132848529371458394e-08,-4.177131372495278300e-08,-5.221414215619098205e-08,-6.265697058742918111e-08,-7.309979901866738679e-08,-8.354262744990559246e-08,-9.398545588114379814e-08,-1.044282843123820038e-07,-1.148711127436202095e-07,-1.253139411748584152e-07,-1.357567696060966208e-07,-1.461995980373348265e-07,-1.566424264685730322e-07,-1.670852548998112379e-07,-1.775280833310494435e-07,-1.879709117622876492e-07,-1.984137401935258549e-07,-2.088565686247640606e-07,-2.192993970560022662e-07,-2.297422254872404719e-07,-2.401850539184786776e-07,-2.506278823497168833e-07,-2.610707107809550889e-07,-2.715135392121932946e-07,-2.819563676434315003e-07,-2.923991960746697060e-07,-3.028420245059079116e-07,-3.132848529371461173e-07,-3.237276813683843230e-07,-3.341705097996225287e-07,-3.446133382308607343e-07,-3.550561666620989400e-07,-3.654989950933371457e-07,-3.759418235245753514e-07,-3.863846519558135570e-07,-3.968274803870517627e-07,-4.072703088182899684e-07,-4.177131372495281741e-07,-4.281559656807663797e-07,-4.385987941120045854e-07,-4.490416225432427911e-07,-4.594844509744809968e-07,-4.699272794057192024e-07,-4.803701078369574610e-07,-4.908129362681957726e-07,-5.012557646994340842e-07,-5.116985931306723957e-07,-5.221414215619107073e-07,-5.325842499931490188e-07,-5.430270784243873304e-07,-5.534699068556256419e-07,-5.639127352868639535e-07,-5.743555637181022650e-07,-5.847983921493405766e-07,-5.952412205805788881e-07,-6.056840490118171997e-07,-6.161268774430555113e-07,-6.265697058742938228e-07,-6.370125343055321344e-07,-6.474553627367704459e-07,-6.578981911680087575e-07 +0.000000000000000000e+00,-1.223701273382536382e-08,-2.447402546765072765e-08,-3.671103820147609312e-08,-4.894805093530146191e-08,-6.118506366912682408e-08,-7.342207640295218625e-08,-8.565908913677754841e-08,-9.789610187060291058e-08,-1.101331146044282728e-07,-1.223701273382536482e-07,-1.346071400720790236e-07,-1.468441528059043990e-07,-1.590811655397297744e-07,-1.713181782735551498e-07,-1.835551910073805252e-07,-1.957922037412059006e-07,-2.080292164750312760e-07,-2.202662292088566514e-07,-2.325032419426820268e-07,-2.447402546765074022e-07,-2.569772674103327776e-07,-2.692142801441581530e-07,-2.814512928779835284e-07,-2.936883056118089038e-07,-3.059253183456342792e-07,-3.181623310794596546e-07,-3.303993438132850300e-07,-3.426363565471104054e-07,-3.548733692809357808e-07,-3.671103820147611562e-07,-3.793473947485865316e-07,-3.915844074824119070e-07,-4.038214202162372824e-07,-4.160584329500626578e-07,-4.282954456838880332e-07,-4.405324584177134086e-07,-4.527694711515387840e-07,-4.650064838853641595e-07,-4.772434966191895349e-07,-4.894805093530149103e-07,-5.017175220868402857e-07,-5.139545348206656611e-07,-5.261915475544910365e-07,-5.384285602883164119e-07,-5.506655730221417873e-07,-5.629025857559671627e-07,-5.751395984897925381e-07,-5.873766112236179135e-07,-5.996136239574432889e-07,-6.118506366912686643e-07,-6.240876494250940397e-07,-6.363246621589194151e-07,-6.485616748927447905e-07,-6.607986876265701659e-07,-6.730357003603955413e-07,-6.852727130942209167e-07,-6.975097258280462921e-07,-7.097467385618716675e-07,-7.219837512956970429e-07,-7.342207640295224183e-07,-7.464577767633477937e-07,-7.586947894971731691e-07,-7.709318022309985445e-07 +0.000000000000000000e+00,-1.094217344081825666e-08,-2.188434688163651333e-08,-3.282652032245476834e-08,-4.376869376327301342e-08,-5.471086720409127174e-08,-6.565304064490952344e-08,-7.659521408572776853e-08,-8.753738752654601361e-08,-9.847956096736425870e-08,-1.094217344081825038e-07,-1.203639078490007489e-07,-1.313060812898189940e-07,-1.422482547306372390e-07,-1.531904281714554841e-07,-1.641326016122737027e-07,-1.750747750530920008e-07,-1.860169484939101929e-07,-1.969591219347284909e-07,-2.079012953755466831e-07,-2.188434688163649811e-07,-2.297856422571831732e-07,-2.407278156980014448e-07,-2.516699891388196899e-07,-2.626121625796379350e-07,-2.735543360204561800e-07,-2.844965094612744251e-07,-2.954386829020926702e-07,-3.063808563429109153e-07,-3.173230297837291604e-07,-3.282652032245474055e-07,-3.392073766653656506e-07,-3.501495501061838956e-07,-3.610917235470021407e-07,-3.720338969878203858e-07,-3.829760704286386309e-07,-3.939182438694568760e-07,-4.048604173102751211e-07,-4.158025907510933661e-07,-4.267447641919116112e-07,-4.376869376327298563e-07,-4.486291110735481014e-07,-4.595712845143663465e-07,-4.705134579551845916e-07,-4.814556313960027837e-07,-4.923978048368209229e-07,-5.033399782776390621e-07,-5.142821517184572013e-07,-5.252243251592753405e-07,-5.361664986000934797e-07,-5.471086720409116189e-07,-5.580508454817297581e-07,-5.689930189225478973e-07,-5.799351923633660366e-07,-5.908773658041841758e-07,-6.018195392450023150e-07,-6.127617126858204542e-07,-6.237038861266385934e-07,-6.346460595674567326e-07,-6.455882330082748718e-07,-6.565304064490930110e-07,-6.674725798899111502e-07,-6.784147533307292894e-07,-6.893569267715474286e-07 +0.000000000000000000e+00,-1.093683553462596352e-08,-2.187367106925192703e-08,-3.281050660387788889e-08,-4.374734213850384083e-08,-5.468417767312980600e-08,-6.562101320775576455e-08,-7.655784874238172972e-08,-8.749468427700768165e-08,-9.843151981163366006e-08,-1.093683553462596385e-07,-1.203051908808855904e-07,-1.312420264155115556e-07,-1.421788619501375207e-07,-1.531156974847634859e-07,-1.640525330193894511e-07,-1.749893685540154162e-07,-1.859262040886414079e-07,-1.968630396232673466e-07,-2.077998751578933118e-07,-2.187367106925192769e-07,-2.296735462271452156e-07,-2.406103817617711808e-07,-2.515472172963971195e-07,-2.624840528310230582e-07,-2.734208883656489969e-07,-2.843577239002749356e-07,-2.952945594349008743e-07,-3.062313949695268130e-07,-3.171682305041527517e-07,-3.281050660387786904e-07,-3.390419015734046291e-07,-3.499787371080306207e-07,-3.609155726426565065e-07,-3.718524081772824452e-07,-3.827892437119083839e-07,-3.937260792465342697e-07,-4.046629147811602613e-07,-4.155997503157862000e-07,-4.265365858504121387e-07,-4.374734213850381303e-07,-4.484102569196640161e-07,-4.593470924542899548e-07,-4.702839279889158935e-07,-4.812207635235418322e-07,-4.921575990581678238e-07,-5.030944345927938155e-07,-5.140312701274198071e-07,-5.249681056620457988e-07,-5.359049411966717904e-07,-5.468417767312977820e-07,-5.577786122659237737e-07,-5.687154478005497653e-07,-5.796522833351757569e-07,-5.905891188698017486e-07,-6.015259544044277402e-07,-6.124627899390537319e-07,-6.233996254736797235e-07,-6.343364610083057151e-07,-6.452732965429317068e-07,-6.562101320775576984e-07,-6.671469676121837959e-07,-6.780838031468096817e-07,-6.890206386814356733e-07 +0.000000000000000000e+00,-1.079125097960186448e-08,-2.158250195920372897e-08,-3.237375293880559511e-08,-4.316500391840746456e-08,-5.395625489800933401e-08,-6.474750587761120345e-08,-7.553875685721307952e-08,-8.633000783681495558e-08,-9.712125881641683165e-08,-1.079125097960187077e-07,-1.187037607756205838e-07,-1.294950117552224598e-07,-1.402862627348243359e-07,-1.510775137144262120e-07,-1.618687646940280880e-07,-1.726600156736299641e-07,-1.834512666532318402e-07,-1.942425176328337162e-07,-2.050337686124355923e-07,-2.158250195920374684e-07,-2.266162705716393444e-07,-2.374075215512412205e-07,-2.481987725308430701e-07,-2.589900235104449197e-07,-2.697812744900467693e-07,-2.805725254696486189e-07,-2.913637764492504685e-07,-3.021550274288523181e-07,-3.129462784084541677e-07,-3.237375293880560173e-07,-3.345287803676578669e-07,-3.453200313472597165e-07,-3.561112823268615661e-07,-3.669025333064634156e-07,-3.776937842860652652e-07,-3.884850352656671148e-07,-3.992762862452689644e-07,-4.100675372248708140e-07,-4.208587882044726636e-07,-4.316500391840745132e-07,-4.424412901636763628e-07,-4.532325411432782124e-07,-4.640237921228800620e-07,-4.748150431024819116e-07,-4.856062940820837612e-07,-4.963975450616856108e-07,-5.071887960412874604e-07,-5.179800470208893100e-07,-5.287712980004911596e-07,-5.395625489800930092e-07,-5.503537999596948588e-07,-5.611450509392967084e-07,-5.719363019188985580e-07,-5.827275528985004076e-07,-5.935188038781022572e-07,-6.043100548577041068e-07,-6.151013058373059563e-07,-6.258925568169078059e-07,-6.366838077965096555e-07,-6.474750587761115051e-07,-6.582663097557133547e-07,-6.690575607353152043e-07,-6.798488117149170539e-07 +0.000000000000000000e+00,-1.272469615680360989e-08,-2.544939231360721977e-08,-3.817408847041082800e-08,-5.089878462721443292e-08,-6.362348078401804446e-08,-7.634817694082165600e-08,-8.907287309762526754e-08,-1.017975692544288791e-07,-1.145222654112324906e-07,-1.272469615680360889e-07,-1.399716577248396872e-07,-1.526963538816432855e-07,-1.654210500384468838e-07,-1.781457461952504821e-07,-1.908704423520540805e-07,-2.035951385088576788e-07,-2.163198346656612771e-07,-2.290445308224648754e-07,-2.417692269792684737e-07,-2.544939231360720720e-07,-2.672186192928756703e-07,-2.799433154496792686e-07,-2.926680116064828669e-07,-3.053927077632864652e-07,-3.181174039200900635e-07,-3.308421000768936618e-07,-3.435667962336972601e-07,-3.562914923905008584e-07,-3.690161885473044567e-07,-3.817408847041080550e-07,-3.944655808609116533e-07,-4.071902770177152516e-07,-4.199149731745188499e-07,-4.326396693313224482e-07,-4.453643654881260465e-07,-4.580890616449296449e-07,-4.708137578017332432e-07,-4.835384539585368415e-07,-4.962631501153404398e-07,-5.089878462721440381e-07,-5.217125424289476364e-07,-5.344372385857512347e-07,-5.471619347425548330e-07,-5.598866308993584313e-07,-5.726113270561620296e-07,-5.853360232129656279e-07,-5.980607193697692262e-07,-6.107854155265728245e-07,-6.235101116833764228e-07,-6.362348078401800211e-07,-6.489595039969836194e-07,-6.616842001537872177e-07,-6.744088963105908160e-07,-6.871335924673944143e-07,-6.998582886241980126e-07,-7.125829847810016109e-07,-7.253076809378052093e-07,-7.380323770946088076e-07,-7.507570732514124059e-07,-7.634817694082160042e-07,-7.762064655650196025e-07,-7.889311617218232008e-07,-8.016558578786267991e-07 +0.000000000000000000e+00,-1.093834403206687791e-08,-2.187668806413375581e-08,-3.281503209620063206e-08,-4.375337612826751162e-08,-5.469172016033437795e-08,-6.563006419240125089e-08,-7.656840822446812383e-08,-8.750675225653499678e-08,-9.844509628860185648e-08,-1.093834403206687427e-07,-1.203217843527356156e-07,-1.312601283848024753e-07,-1.421984724168693350e-07,-1.531368164489361947e-07,-1.640751604810030544e-07,-1.750135045130698877e-07,-1.859518485451367738e-07,-1.968901925772036600e-07,-2.078285366092704933e-07,-2.187668806413373265e-07,-2.297052246734042127e-07,-2.406435687054710724e-07,-2.515819127375379321e-07,-2.625202567696047918e-07,-2.734586008016716515e-07,-2.843969448337385112e-07,-2.953352888658053709e-07,-3.062736328978722306e-07,-3.172119769299390903e-07,-3.281503209620059501e-07,-3.390886649940728098e-07,-3.500270090261396695e-07,-3.609653530582065821e-07,-3.719036970902733889e-07,-3.828420411223402486e-07,-3.937803851544071083e-07,-4.047187291864739151e-07,-4.156570732185408277e-07,-4.265954172506076874e-07,-4.375337612826745471e-07,-4.484721053147414598e-07,-4.594104493468082665e-07,-4.703487933788751263e-07,-4.812871374109420389e-07,-4.922254814430089515e-07,-5.031638254750758642e-07,-5.141021695071427768e-07,-5.250405135392096895e-07,-5.359788575712766021e-07,-5.469172016033435148e-07,-5.578555456354104274e-07,-5.687938896674773401e-07,-5.797322336995442527e-07,-5.906705777316111654e-07,-6.016089217636780780e-07,-6.125472657957449907e-07,-6.234856098278119033e-07,-6.344239538598788160e-07,-6.453622978919457286e-07,-6.563006419240126413e-07,-6.672389859560795539e-07,-6.781773299881464665e-07,-6.891156740202133792e-07 +0.000000000000000000e+00,-1.272444210047768419e-08,-2.544888420095536838e-08,-3.817332630143305092e-08,-5.089776840191073015e-08,-6.362221050238840276e-08,-7.634665260286607537e-08,-8.907109470334374799e-08,-1.017955368038214206e-07,-1.145199789042990932e-07,-1.272444210047767526e-07,-1.399688631052544120e-07,-1.526933052057320713e-07,-1.654177473062097307e-07,-1.781421894066873901e-07,-1.908666315071650495e-07,-2.035910736076427088e-07,-2.163155157081203682e-07,-2.290399578085980276e-07,-2.417643999090756605e-07,-2.544888420095532934e-07,-2.672132841100309263e-07,-2.799377262105085592e-07,-2.926621683109861921e-07,-3.053866104114638250e-07,-3.181110525119414579e-07,-3.308354946124190909e-07,-3.435599367128967238e-07,-3.562843788133743567e-07,-3.690088209138519896e-07,-3.817332630143296225e-07,-3.944577051148072554e-07,-4.071821472152848883e-07,-4.199065893157625212e-07,-4.326310314162401541e-07,-4.453554735167177870e-07,-4.580799156171954199e-07,-4.708043577176730528e-07,-4.835287998181506857e-07,-4.962532419186283186e-07,-5.089776840191059516e-07,-5.217021261195835845e-07,-5.344265682200612174e-07,-5.471510103205388503e-07,-5.598754524210164832e-07,-5.725998945214941161e-07,-5.853243366219717490e-07,-5.980487787224493819e-07,-6.107732208229270148e-07,-6.234976629234046477e-07,-6.362221050238822806e-07,-6.489465471243599135e-07,-6.616709892248375464e-07,-6.743954313253151793e-07,-6.871198734257928122e-07,-6.998443155262704452e-07,-7.125687576267480781e-07,-7.252931997272257110e-07,-7.380176418277033439e-07,-7.507420839281809768e-07,-7.634665260286586097e-07,-7.761909681291362426e-07,-7.889154102296138755e-07,-8.016398523300915084e-07 +0.000000000000000000e+00,-1.094217344081746919e-08,-2.188434688163493838e-08,-3.282652032245240591e-08,-4.376869376326987676e-08,-5.471086720408734098e-08,-6.565304064490481182e-08,-7.659521408572227605e-08,-8.753738752653975351e-08,-9.847956096735720450e-08,-1.094217344081746687e-07,-1.203639078489921197e-07,-1.313060812898095707e-07,-1.422482547306270217e-07,-1.531904281714444727e-07,-1.641326016122619237e-07,-1.750747750530793482e-07,-1.860169484938968257e-07,-1.969591219347143031e-07,-2.079012953755317276e-07,-2.188434688163491522e-07,-2.297856422571666296e-07,-2.407278156979840806e-07,-2.516699891388015316e-07,-2.626121625796189826e-07,-2.735543360204364336e-07,-2.844965094612538846e-07,-2.954386829020713356e-07,-3.063808563428887866e-07,-3.173230297837062376e-07,-3.282652032245236885e-07,-3.392073766653411395e-07,-3.501495501061585905e-07,-3.610917235469759886e-07,-3.720338969877934925e-07,-3.829760704286109435e-07,-3.939182438694283945e-07,-4.048604173102458984e-07,-4.158025907510632965e-07,-4.267447641918807475e-07,-4.376869376326981985e-07,-4.486291110735155965e-07,-4.595712845143331004e-07,-4.705134579551505514e-07,-4.814556313959680554e-07,-4.923978048367855593e-07,-5.033399782776030632e-07,-5.142821517184205671e-07,-5.252243251592380711e-07,-5.361664986000555750e-07,-5.471086720408730789e-07,-5.580508454816905829e-07,-5.689930189225080868e-07,-5.799351923633255907e-07,-5.908773658041430947e-07,-6.018195392449605986e-07,-6.127617126857781025e-07,-6.237038861265956064e-07,-6.346460595674131104e-07,-6.455882330082305084e-07,-6.565304064490481182e-07,-6.674725798898657281e-07,-6.784147533306831261e-07,-6.893569267715005242e-07 +0.000000000000000000e+00,-1.093834403206650898e-08,-2.187668806413301797e-08,-3.281503209619952695e-08,-4.375337612826603593e-08,-5.469172016033254492e-08,-6.563006419239905390e-08,-7.656840822446555626e-08,-8.750675225653205863e-08,-9.844509628859856100e-08,-1.093834403206650634e-07,-1.203217843527315657e-07,-1.312601283847980813e-07,-1.421984724168645969e-07,-1.531368164489311125e-07,-1.640751604809976281e-07,-1.750135045130641437e-07,-1.859518485451306593e-07,-1.968901925771971485e-07,-2.078285366092636905e-07,-2.187668806413302061e-07,-2.297052246733967217e-07,-2.406435687054632373e-07,-2.515819127375297794e-07,-2.625202567695963215e-07,-2.734586008016628635e-07,-2.843969448337294056e-07,-2.953352888657959477e-07,-3.062736328978624898e-07,-3.172119769299290318e-07,-3.281503209619955739e-07,-3.390886649940621689e-07,-3.500270090261286580e-07,-3.609653530581952001e-07,-3.719036970902617422e-07,-3.828420411223282313e-07,-3.937803851543948263e-07,-4.047187291864613684e-07,-4.156570732185279105e-07,-4.265954172505945055e-07,-4.375337612826609946e-07,-4.484721053147275367e-07,-4.594104493467940787e-07,-4.703487933788605679e-07,-4.812871374109272158e-07,-4.922254814429938108e-07,-5.031638254750604058e-07,-5.141021695071270009e-07,-5.250405135391935959e-07,-5.359788575712601909e-07,-5.469172016033267859e-07,-5.578555456353933809e-07,-5.687938896674599759e-07,-5.797322336995265709e-07,-5.906705777315931659e-07,-6.016089217636597609e-07,-6.125472657957263559e-07,-6.234856098277929510e-07,-6.344239538598595460e-07,-6.453622978919261410e-07,-6.563006419239927360e-07,-6.672389859560593310e-07,-6.781773299881260319e-07,-6.891156740201925210e-07 +0.000000000000000000e+00,-1.079125097960118289e-08,-2.158250195920236578e-08,-3.237375293880355032e-08,-4.316500391840473817e-08,-5.395625489800592602e-08,-6.474750587760711387e-08,-7.553875685720830172e-08,-8.633000783680948957e-08,-9.712125881641067743e-08,-1.079125097960118653e-07,-1.187037607756130531e-07,-1.294950117552142542e-07,-1.402862627348154685e-07,-1.510775137144166829e-07,-1.618687646940178972e-07,-1.726600156736191115e-07,-1.834512666532203258e-07,-1.942425176328215401e-07,-2.050337686124227545e-07,-2.158250195920239688e-07,-2.266162705716251831e-07,-2.374075215512263974e-07,-2.481987725308276117e-07,-2.589900235104288261e-07,-2.697812744900300404e-07,-2.805725254696312547e-07,-2.913637764492324690e-07,-3.021550274288336833e-07,-3.129462784084348977e-07,-3.237375293880361120e-07,-3.345287803676373263e-07,-3.453200313472385406e-07,-3.561112823268397550e-07,-3.669025333064409693e-07,-3.776937842860421836e-07,-3.884850352656433979e-07,-3.992762862452446122e-07,-4.100675372248458266e-07,-4.208587882044470409e-07,-4.316500391840482552e-07,-4.424412901636494695e-07,-4.532325411432506838e-07,-4.640237921228518982e-07,-4.748150431024531125e-07,-4.856062940820543268e-07,-4.963975450616555411e-07,-5.071887960412567554e-07,-5.179800470208579698e-07,-5.287712980004591841e-07,-5.395625489800603984e-07,-5.503537999596616127e-07,-5.611450509392628271e-07,-5.719363019188640414e-07,-5.827275528984652557e-07,-5.935188038780664700e-07,-6.043100548576676843e-07,-6.151013058372688987e-07,-6.258925568168701130e-07,-6.366838077964713273e-07,-6.474750587760725416e-07,-6.582663097556737559e-07,-6.690575607352749703e-07,-6.798488117148761846e-07 +0.000000000000000000e+00,-1.272469615680306560e-08,-2.544939231360613120e-08,-3.817408847040919349e-08,-5.089878462721225578e-08,-6.362348078401531808e-08,-7.634817694081838699e-08,-8.907287309762145589e-08,-1.017975692544245248e-07,-1.145222654112275937e-07,-1.272469615680306626e-07,-1.399716577248337315e-07,-1.526963538816368004e-07,-1.654210500384398693e-07,-1.781457461952429383e-07,-1.908704423520460072e-07,-2.035951385088490761e-07,-2.163198346656521450e-07,-2.290445308224552139e-07,-2.417692269792583093e-07,-2.544939231360613782e-07,-2.672186192928644471e-07,-2.799433154496675160e-07,-2.926680116064705849e-07,-3.053927077632736538e-07,-3.181174039200767227e-07,-3.308421000768797916e-07,-3.435667962336828605e-07,-3.562914923904859295e-07,-3.690161885472889984e-07,-3.817408847040920673e-07,-3.944655808608951362e-07,-4.071902770176982051e-07,-4.199149731745012740e-07,-4.326396693313043429e-07,-4.453643654881074118e-07,-4.580890616449104807e-07,-4.708137578017135496e-07,-4.835384539585166185e-07,-4.962631501153196875e-07,-5.089878462721227564e-07,-5.217125424289258253e-07,-5.344372385857288942e-07,-5.471619347425319631e-07,-5.598866308993350320e-07,-5.726113270561381009e-07,-5.853360232129411698e-07,-5.980607193697442387e-07,-6.107854155265473076e-07,-6.235101116833503766e-07,-6.362348078401534455e-07,-6.489595039969565144e-07,-6.616842001537595833e-07,-6.744088963105626522e-07,-6.871335924673657211e-07,-6.998582886241687900e-07,-7.125829847809718589e-07,-7.253076809377749278e-07,-7.380323770945779967e-07,-7.507570732513810656e-07,-7.634817694081841346e-07,-7.762064655649872035e-07,-7.889311617217902724e-07,-8.016558578785933413e-07 +0.000000000000000000e+00,-4.609942474029100756e-09,-9.219884948058201513e-09,-1.382982742208730227e-08,-1.843976989611640303e-08,-2.304971237014550213e-08,-2.765965484417460123e-08,-3.226959731820370033e-08,-3.687953979223279943e-08,-4.148948226626189854e-08,-4.609942474029099764e-08,-5.070936721432009674e-08,-5.531930968834919584e-08,-5.992925216237830156e-08,-6.453919463640741390e-08,-6.914913711043652624e-08,-7.375907958446563857e-08,-7.836902205849475091e-08,-8.297896453252386325e-08,-8.758890700655297558e-08,-9.219884948058208792e-08,-9.680879195461120026e-08,-1.014187344286403126e-07,-1.060286769026694249e-07,-1.106386193766985373e-07,-1.152485618507276496e-07,-1.198585043247567619e-07,-1.244684467987858743e-07,-1.290783892728149866e-07,-1.336883317468440990e-07,-1.382982742208732113e-07,-1.429082166949023236e-07,-1.475181591689314360e-07,-1.521281016429605483e-07,-1.567380441169896606e-07,-1.613479865910187730e-07,-1.659579290650478853e-07,-1.705678715390769976e-07,-1.751778140131061100e-07,-1.797877564871352223e-07,-1.843976989611643347e-07,-1.890076414351934470e-07,-1.936175839092225593e-07,-1.982275263832516717e-07,-2.028374688572807840e-07,-2.074474113313098963e-07,-2.120573538053390087e-07,-2.166672962793681210e-07,-2.212772387533972334e-07,-2.258871812274263457e-07,-2.304971237014554580e-07,-2.351070661754845704e-07,-2.397170086495136827e-07,-2.443269511235427950e-07,-2.489368935975719074e-07,-2.535468360716010197e-07,-2.581567785456301320e-07,-2.627667210196592444e-07,-2.673766634936883567e-07,-2.719866059677174691e-07,-2.765965484417465814e-07,-2.812064909157756937e-07,-2.858164333898048061e-07,-2.904263758638339184e-07 +0.000000000000000000e+00,-8.433392720848850356e-09,-1.686678544169770071e-08,-2.530017816254655107e-08,-3.373357088339540142e-08,-4.216696360424424847e-08,-5.060035632509309552e-08,-5.903374904594194257e-08,-6.746714176679078961e-08,-7.590053448763963666e-08,-8.433392720848848371e-08,-9.276731992933733076e-08,-1.012007126501861778e-07,-1.096341053710350249e-07,-1.180674980918838719e-07,-1.265008908127327189e-07,-1.349342835335815528e-07,-1.433676762544303866e-07,-1.518010689752792204e-07,-1.602344616961280542e-07,-1.686678544169768880e-07,-1.771012471378257218e-07,-1.855346398586745556e-07,-1.939680325795233894e-07,-2.024014253003722233e-07,-2.108348180212210571e-07,-2.192682107420698909e-07,-2.277016034629187247e-07,-2.361349961837675585e-07,-2.445683889046164188e-07,-2.530017816254652791e-07,-2.614351743463141394e-07,-2.698685670671629996e-07,-2.783019597880118599e-07,-2.867353525088607202e-07,-2.951687452297095805e-07,-3.036021379505584408e-07,-3.120355306714073010e-07,-3.204689233922561613e-07,-3.289023161131050216e-07,-3.373357088339538819e-07,-3.457691015548027422e-07,-3.542024942756516025e-07,-3.626358869965004627e-07,-3.710692797173493230e-07,-3.795026724381981833e-07,-3.879360651590470436e-07,-3.963694578798959039e-07,-4.048028506007447642e-07,-4.132362433215936244e-07,-4.216696360424424847e-07,-4.301030287632913450e-07,-4.385364214841402053e-07,-4.469698142049890656e-07,-4.554032069258379258e-07,-4.638365996466867861e-07,-4.722699923675356464e-07,-4.807033850883845067e-07,-4.891367778092333670e-07,-4.975701705300822273e-07,-5.060035632509310875e-07,-5.144369559717799478e-07,-5.228703486926288081e-07,-5.313037414134776684e-07 +0.000000000000000000e+00,-8.611898799420487642e-09,-1.722379759884097528e-08,-2.583569639826146127e-08,-3.444759519768194395e-08,-4.305949399710242663e-08,-5.167139279652290931e-08,-6.028329159594339199e-08,-6.889519039536387467e-08,-7.750708919478435735e-08,-8.611898799420484003e-08,-9.473088679362532271e-08,-1.033427855930458054e-07,-1.119546843924662881e-07,-1.205665831918867575e-07,-1.291784819913072137e-07,-1.377903807907276699e-07,-1.464022795901481261e-07,-1.550141783895685823e-07,-1.636260771889890386e-07,-1.722379759884094948e-07,-1.808498747878299510e-07,-1.894617735872504072e-07,-1.980736723866708634e-07,-2.066855711860913196e-07,-2.152974699855117758e-07,-2.239093687849322320e-07,-2.325212675843526882e-07,-2.411331663837731444e-07,-2.497450651831936006e-07,-2.583569639826140569e-07,-2.669688627820345131e-07,-2.755807615814549693e-07,-2.841926603808754255e-07,-2.928045591802958817e-07,-3.014164579797163379e-07,-3.100283567791367941e-07,-3.186402555785572503e-07,-3.272521543779777065e-07,-3.358640531773981627e-07,-3.444759519768186190e-07,-3.530878507762390752e-07,-3.616997495756595314e-07,-3.703116483750799876e-07,-3.789235471745004438e-07,-3.875354459739209000e-07,-3.961473447733413562e-07,-4.047592435727618124e-07,-4.133711423721822686e-07,-4.219830411716027248e-07,-4.305949399710231810e-07,-4.392068387704436373e-07,-4.478187375698640935e-07,-4.564306363692845497e-07,-4.650425351687050059e-07,-4.736544339681254621e-07,-4.822663327675459712e-07,-4.908782315669665333e-07,-4.994901303663870954e-07,-5.081020291658076575e-07,-5.167139279652282196e-07,-5.253258267646487817e-07,-5.339377255640693438e-07,-5.425496243634899059e-07 +0.000000000000000000e+00,-5.440772488568995064e-09,-1.088154497713799013e-08,-1.632231746570698354e-08,-2.176308995427597695e-08,-2.720386244284497036e-08,-3.264463493141396707e-08,-3.808540741998296379e-08,-4.352617990855196051e-08,-4.896695239712095723e-08,-5.440772488568995395e-08,-5.984849737425895067e-08,-6.528926986282794738e-08,-7.073004235139694410e-08,-7.617081483996594082e-08,-8.161158732853493754e-08,-8.705235981710393426e-08,-9.249313230567293097e-08,-9.793390479424192769e-08,-1.033746772828109244e-07,-1.088154497713799211e-07,-1.142562222599489178e-07,-1.196969947485179278e-07,-1.251377672370869245e-07,-1.305785397256559212e-07,-1.360193122142249180e-07,-1.414600847027939147e-07,-1.469008571913629114e-07,-1.523416296799319081e-07,-1.577824021685009048e-07,-1.632231746570699015e-07,-1.686639471456388983e-07,-1.741047196342078950e-07,-1.795454921227768917e-07,-1.849862646113458884e-07,-1.904270370999148851e-07,-1.958678095884838819e-07,-2.013085820770528786e-07,-2.067493545656218753e-07,-2.121901270541908720e-07,-2.176308995427598687e-07,-2.230716720313288654e-07,-2.285124445198978622e-07,-2.339532170084668589e-07,-2.393939894970358556e-07,-2.448347619856048523e-07,-2.502755344741738490e-07,-2.557163069627428458e-07,-2.611570794513118425e-07,-2.665978519398808392e-07,-2.720386244284498359e-07,-2.774793969170188326e-07,-2.829201694055878293e-07,-2.883609418941568261e-07,-2.938017143827258228e-07,-2.992424868712948195e-07,-3.046832593598638162e-07,-3.101240318484328129e-07,-3.155648043370018097e-07,-3.210055768255708064e-07,-3.264463493141398031e-07,-3.318871218027087998e-07,-3.373278942912777965e-07,-3.427686667798467932e-07 +0.000000000000000000e+00,-9.637893447794959787e-09,-1.927578689558991957e-08,-2.891368034338488101e-08,-3.855157379117984576e-08,-4.818946723897481051e-08,-5.782736068676977526e-08,-6.746525413456473340e-08,-7.710314758235969153e-08,-8.674104103015464966e-08,-9.637893447794960779e-08,-1.060168279257445659e-07,-1.156547213735395241e-07,-1.252926148213344822e-07,-1.349305082691294403e-07,-1.445684017169243985e-07,-1.542062951647193566e-07,-1.638441886125143147e-07,-1.734820820603092729e-07,-1.831199755081042310e-07,-1.927578689558991891e-07,-2.023957624036941473e-07,-2.120336558514891054e-07,-2.216715492992840635e-07,-2.313094427470790216e-07,-2.409473361948739798e-07,-2.505852296426689644e-07,-2.602231230904639490e-07,-2.698610165382589336e-07,-2.794989099860539182e-07,-2.891368034338489028e-07,-2.987746968816438874e-07,-3.084125903294388720e-07,-3.180504837772338566e-07,-3.276883772250288412e-07,-3.373262706728238258e-07,-3.469641641206188104e-07,-3.566020575684137950e-07,-3.662399510162087796e-07,-3.758778444640037642e-07,-3.855157379117987488e-07,-3.951536313595937334e-07,-4.047915248073887180e-07,-4.144294182551837026e-07,-4.240673117029786872e-07,-4.337052051507736718e-07,-4.433430985985686564e-07,-4.529809920463636410e-07,-4.626188854941586256e-07,-4.722567789419536102e-07,-4.818946723897485948e-07,-4.915325658375435794e-07,-5.011704592853385640e-07,-5.108083527331335486e-07,-5.204462461809285332e-07,-5.300841396287235178e-07,-5.397220330765185024e-07,-5.493599265243134870e-07,-5.589978199721084717e-07,-5.686357134199034563e-07,-5.782736068676984409e-07,-5.879115003154934255e-07,-5.975493937632884101e-07,-6.071872872110833947e-07 +0.000000000000000000e+00,-5.955464104468302379e-09,-1.191092820893660476e-08,-1.786639231340490548e-08,-2.382185641787320621e-08,-2.977732052234150693e-08,-3.573278462680981096e-08,-4.168824873127811500e-08,-4.764371283574641903e-08,-5.359917694021472306e-08,-5.955464104468302709e-08,-6.551010514915132451e-08,-7.146556925361962192e-08,-7.742103335808791934e-08,-8.337649746255621676e-08,-8.933196156702451417e-08,-9.528742567149281159e-08,-1.012428897759611090e-07,-1.071983538804294064e-07,-1.131538179848977038e-07,-1.191092820893660012e-07,-1.250647461938342987e-07,-1.310202102983025961e-07,-1.369756744027708935e-07,-1.429311385072391909e-07,-1.488866026117074883e-07,-1.548420667161757857e-07,-1.607975308206440832e-07,-1.667529949251123806e-07,-1.727084590295806780e-07,-1.786639231340489754e-07,-1.846193872385172728e-07,-1.905748513429855702e-07,-1.965303154474538676e-07,-2.024857795519221651e-07,-2.084412436563904625e-07,-2.143967077608587599e-07,-2.203521718653270573e-07,-2.263076359697953547e-07,-2.322631000742636521e-07,-2.382185641787319496e-07,-2.441740282832002205e-07,-2.501294923876684914e-07,-2.560849564921367624e-07,-2.620404205966050333e-07,-2.679958847010733043e-07,-2.739513488055415752e-07,-2.799068129100098462e-07,-2.858622770144781171e-07,-2.918177411189463881e-07,-2.977732052234146590e-07,-3.037286693278829300e-07,-3.096841334323512009e-07,-3.156395975368194718e-07,-3.215950616412877428e-07,-3.275505257457560137e-07,-3.335059898502242847e-07,-3.394614539546925556e-07,-3.454169180591608266e-07,-3.513723821636290975e-07,-3.573278462680973685e-07,-3.632833103725656394e-07,-3.692387744770339104e-07,-3.751942385815021813e-07 +0.000000000000000000e+00,-8.569148099994800074e-09,-1.713829619998960015e-08,-2.570744429998440022e-08,-3.427659239997920030e-08,-4.284574049997400368e-08,-5.141488859996880706e-08,-5.998403669996361045e-08,-6.855318479995841383e-08,-7.712233289995321721e-08,-8.569148099994802059e-08,-9.426062909994282398e-08,-1.028297771999376274e-07,-1.113989252999324307e-07,-1.199680733999272209e-07,-1.285372214999220110e-07,-1.371063695999168012e-07,-1.456755176999115913e-07,-1.542446657999063815e-07,-1.628138138999011716e-07,-1.713829619998959618e-07,-1.799521100998907519e-07,-1.885212581998855421e-07,-1.970904062998803322e-07,-2.056595543998751224e-07,-2.142287024998699125e-07,-2.227978505998647027e-07,-2.313669986998594928e-07,-2.399361467998542830e-07,-2.485052948998490731e-07,-2.570744429998438633e-07,-2.656435910998386534e-07,-2.742127391998334436e-07,-2.827818872998282337e-07,-2.913510353998230238e-07,-2.999201834998178140e-07,-3.084893315998126041e-07,-3.170584796998073943e-07,-3.256276277998021844e-07,-3.341967758997969746e-07,-3.427659239997917647e-07,-3.513350720997865549e-07,-3.599042201997813450e-07,-3.684733682997761352e-07,-3.770425163997709253e-07,-3.856116644997657155e-07,-3.941808125997605056e-07,-4.027499606997552958e-07,-4.113191087997500859e-07,-4.198882568997448761e-07,-4.284574049997396662e-07,-4.370265530997344564e-07,-4.455957011997292465e-07,-4.541648492997240367e-07,-4.627339973997188268e-07,-4.713031454997136170e-07,-4.798722935997084600e-07,-4.884414416997033561e-07,-4.970105897996982521e-07,-5.055797378996931481e-07,-5.141488859996880442e-07,-5.227180340996829402e-07,-5.312871821996778362e-07,-5.398563302996727322e-07 +0.000000000000000000e+00,-9.793865668697080269e-09,-1.958773133739416054e-08,-2.938159700609124081e-08,-3.917546267478832108e-08,-4.896932834348540465e-08,-5.876319401218248823e-08,-6.855705968087957181e-08,-7.835092534957665539e-08,-8.814479101827373896e-08,-9.793865668697082254e-08,-1.077325223556679061e-07,-1.175263880243649897e-07,-1.273202536930620733e-07,-1.371141193617591436e-07,-1.469079850304562140e-07,-1.567018506991532843e-07,-1.664957163678503546e-07,-1.762895820365474250e-07,-1.860834477052444953e-07,-1.958773133739415657e-07,-2.056711790426386360e-07,-2.154650447113357064e-07,-2.252589103800327767e-07,-2.350527760487298470e-07,-2.448466417174269174e-07,-2.546405073861239877e-07,-2.644343730548210581e-07,-2.742282387235181284e-07,-2.840221043922151988e-07,-2.938159700609122691e-07,-3.036098357296093394e-07,-3.134037013983064098e-07,-3.231975670670034801e-07,-3.329914327357005505e-07,-3.427852984043976208e-07,-3.525791640730946912e-07,-3.623730297417917615e-07,-3.721668954104888318e-07,-3.819607610791859022e-07,-3.917546267478829725e-07,-4.015484924165800429e-07,-4.113423580852771132e-07,-4.211362237539741836e-07,-4.309300894226712539e-07,-4.407239550913683242e-07,-4.505178207600653946e-07,-4.603116864287624649e-07,-4.701055520974595353e-07,-4.798994177661566056e-07,-4.896932834348536230e-07,-4.994871491035506404e-07,-5.092810147722476578e-07,-5.190748804409446752e-07,-5.288687461096416926e-07,-5.386626117783387100e-07,-5.484564774470357274e-07,-5.582503431157327448e-07,-5.680442087844297622e-07,-5.778380744531267796e-07,-5.876319401218237970e-07,-5.974258057905208144e-07,-6.072196714592178318e-07,-6.170135371279148493e-07 +0.000000000000000000e+00,-4.609942474022920063e-09,-9.219884948045840126e-09,-1.382982742206876019e-08,-1.843976989609168025e-08,-2.304971237011459866e-08,-2.765965484413751707e-08,-3.226959731816043548e-08,-3.687953979218335389e-08,-4.148948226620627229e-08,-4.609942474022919070e-08,-5.070936721425210911e-08,-5.531930968827502752e-08,-5.992925216229793931e-08,-6.453919463632085772e-08,-6.914913711034377613e-08,-7.375907958436669454e-08,-7.836902205838961294e-08,-8.297896453241253135e-08,-8.758890700643544976e-08,-9.219884948045836817e-08,-9.680879195448128658e-08,-1.014187344285042050e-07,-1.060286769025271234e-07,-1.106386193765500418e-07,-1.152485618505729602e-07,-1.198585043245958786e-07,-1.244684467986187970e-07,-1.290783892726417154e-07,-1.336883317466646338e-07,-1.382982742206875523e-07,-1.429082166947104707e-07,-1.475181591687333891e-07,-1.521281016427563075e-07,-1.567380441167792259e-07,-1.613479865908021443e-07,-1.659579290648250627e-07,-1.705678715388479811e-07,-1.751778140128708995e-07,-1.797877564868938179e-07,-1.843976989609167363e-07,-1.890076414349396547e-07,-1.936175839089625732e-07,-1.982275263829854916e-07,-2.028374688570084100e-07,-2.074474113310313284e-07,-2.120573538050542468e-07,-2.166672962790771652e-07,-2.212772387531000836e-07,-2.258871812271230020e-07,-2.304971237011459204e-07,-2.351070661751688388e-07,-2.397170086491917572e-07,-2.443269511232146756e-07,-2.489368935972375941e-07,-2.535468360712605125e-07,-2.581567785452834309e-07,-2.627667210193063493e-07,-2.673766634933292677e-07,-2.719866059673521861e-07,-2.765965484413751045e-07,-2.812064909153980229e-07,-2.858164333894209413e-07,-2.904263758634438597e-07 +0.000000000000000000e+00,-8.433392720844017967e-09,-1.686678544168803593e-08,-2.530017816253205556e-08,-3.373357088337607849e-08,-4.216696360422010142e-08,-5.060035632506412435e-08,-5.903374904590814728e-08,-6.746714176675217021e-08,-7.590053448759619975e-08,-8.433392720844022930e-08,-9.276731992928425885e-08,-1.012007126501282884e-07,-1.096341053709723179e-07,-1.180674980918163475e-07,-1.265008908126603770e-07,-1.349342835335044198e-07,-1.433676762543484626e-07,-1.518010689751925054e-07,-1.602344616960365482e-07,-1.686678544168805910e-07,-1.771012471377246337e-07,-1.855346398585686765e-07,-1.939680325794127193e-07,-2.024014253002567621e-07,-2.108348180211008049e-07,-2.192682107419448476e-07,-2.277016034627888904e-07,-2.361349961836329332e-07,-2.445683889044769760e-07,-2.530017816253210188e-07,-2.614351743461650616e-07,-2.698685670670091043e-07,-2.783019597878531471e-07,-2.867353525086971899e-07,-2.951687452295412327e-07,-3.036021379503852755e-07,-3.120355306712293183e-07,-3.204689233920733610e-07,-3.289023161129174038e-07,-3.373357088337614466e-07,-3.457691015546054894e-07,-3.542024942754495322e-07,-3.626358869962935749e-07,-3.710692797171376177e-07,-3.795026724379816605e-07,-3.879360651588257033e-07,-3.963694578796697461e-07,-4.048028506005137889e-07,-4.132362433213578316e-07,-4.216696360422018744e-07,-4.301030287630459172e-07,-4.385364214838899600e-07,-4.469698142047340028e-07,-4.554032069255780456e-07,-4.638365996464220883e-07,-4.722699923672661311e-07,-4.807033850881101739e-07,-4.891367778089541637e-07,-4.975701705297981536e-07,-5.060035632506421434e-07,-5.144369559714861333e-07,-5.228703486923301231e-07,-5.313037414131741130e-07 +0.000000000000000000e+00,-8.569148099992316878e-09,-1.713829619998463376e-08,-2.570744429997695229e-08,-3.427659239996927413e-08,-4.284574049996159597e-08,-5.141488859995391781e-08,-5.998403669994624627e-08,-6.855318479993857473e-08,-7.712233289993090319e-08,-8.569148099992323165e-08,-9.426062909991556010e-08,-1.028297771999078886e-07,-1.113989252999002170e-07,-1.199680733998925455e-07,-1.285372214998848739e-07,-1.371063695998772024e-07,-1.456755176998695309e-07,-1.542446657998618593e-07,-1.628138138998541878e-07,-1.713829619998465162e-07,-1.799521100998388447e-07,-1.885212581998311731e-07,-1.970904062998235016e-07,-2.056595543998158301e-07,-2.142287024998081585e-07,-2.227978505998004870e-07,-2.313669986997928154e-07,-2.399361467997851439e-07,-2.485052948997774459e-07,-2.570744429997697479e-07,-2.656435910997620499e-07,-2.742127391997543519e-07,-2.827818872997466538e-07,-2.913510353997389558e-07,-2.999201834997312578e-07,-3.084893315997235598e-07,-3.170584796997158618e-07,-3.256276277997081638e-07,-3.341967758997004658e-07,-3.427659239996927678e-07,-3.513350720996850698e-07,-3.599042201996773717e-07,-3.684733682996696737e-07,-3.770425163996619757e-07,-3.856116644996542777e-07,-3.941808125996465797e-07,-4.027499606996388817e-07,-4.113191087996311837e-07,-4.198882568996234857e-07,-4.284574049996157876e-07,-4.370265530996080896e-07,-4.455957011996003916e-07,-4.541648492995926936e-07,-4.627339973995849956e-07,-4.713031454995772976e-07,-4.798722935995695466e-07,-4.884414416995617957e-07,-4.970105897995540447e-07,-5.055797378995462938e-07,-5.141488859995385428e-07,-5.227180340995307919e-07,-5.312871821995230409e-07,-5.398563302995152900e-07 +0.000000000000000000e+00,-5.440772488563471152e-09,-1.088154497712694230e-08,-1.632231746569041346e-08,-2.176308995425388461e-08,-2.720386244281735576e-08,-3.264463493138082691e-08,-3.808540741994429806e-08,-4.352617990850776921e-08,-4.896695239707124037e-08,-5.440772488563471152e-08,-5.984849737419818929e-08,-6.528926986276166706e-08,-7.073004235132514482e-08,-7.617081483988862259e-08,-8.161158732845210036e-08,-8.705235981701557813e-08,-9.249313230557905590e-08,-9.793390479414253367e-08,-1.033746772827060114e-07,-1.088154497712694892e-07,-1.142562222598329670e-07,-1.196969947483964315e-07,-1.251377672369598960e-07,-1.305785397255233606e-07,-1.360193122140868251e-07,-1.414600847026502896e-07,-1.469008571912137542e-07,-1.523416296797772187e-07,-1.577824021683406833e-07,-1.632231746569041478e-07,-1.686639471454676123e-07,-1.741047196340310769e-07,-1.795454921225945414e-07,-1.849862646111580059e-07,-1.904270370997214705e-07,-1.958678095882849350e-07,-2.013085820768483995e-07,-2.067493545654118641e-07,-2.121901270539753286e-07,-2.176308995425387931e-07,-2.230716720311022577e-07,-2.285124445196657222e-07,-2.339532170082291867e-07,-2.393939894967926513e-07,-2.448347619853561423e-07,-2.502755344739196333e-07,-2.557163069624831243e-07,-2.611570794510466153e-07,-2.665978519396101063e-07,-2.720386244281735973e-07,-2.774793969167370883e-07,-2.829201694053005793e-07,-2.883609418938640703e-07,-2.938017143824275613e-07,-2.992424868709910523e-07,-3.046832593595545433e-07,-3.101240318481180343e-07,-3.155648043366815253e-07,-3.210055768252450163e-07,-3.264463493138085073e-07,-3.318871218023719983e-07,-3.373278942909354893e-07,-3.427686667794989803e-07 +0.000000000000000000e+00,-9.637893447790923145e-09,-1.927578689558184629e-08,-2.891368034337277109e-08,-3.855157379116369920e-08,-4.818946723895462731e-08,-5.782736068674555542e-08,-6.746525413453649014e-08,-7.710314758232742487e-08,-8.674104103011835959e-08,-9.637893447790929432e-08,-1.060168279257002290e-07,-1.156547213734911638e-07,-1.252926148212820985e-07,-1.349305082690730332e-07,-1.445684017168639679e-07,-1.542062951646549027e-07,-1.638441886124458374e-07,-1.734820820602367721e-07,-1.831199755080277069e-07,-1.927578689558186416e-07,-2.023957624036095763e-07,-2.120336558514005110e-07,-2.216715492991914458e-07,-2.313094427469823805e-07,-2.409473361947732887e-07,-2.505852296425641970e-07,-2.602231230903551053e-07,-2.698610165381460135e-07,-2.794989099859369218e-07,-2.891368034337278300e-07,-2.987746968815187383e-07,-3.084125903293096465e-07,-3.180504837771005548e-07,-3.276883772248914630e-07,-3.373262706726823713e-07,-3.469641641204732796e-07,-3.566020575682641878e-07,-3.662399510160550961e-07,-3.758778444638460043e-07,-3.855157379116369126e-07,-3.951536313594278208e-07,-4.047915248072187291e-07,-4.144294182550096373e-07,-4.240673117028005456e-07,-4.337052051505914539e-07,-4.433430985983823621e-07,-4.529809920461732704e-07,-4.626188854939641786e-07,-4.722567789417550869e-07,-4.818946723895459422e-07,-4.915325658373367975e-07,-5.011704592851276528e-07,-5.108083527329185082e-07,-5.204462461807093635e-07,-5.300841396285002188e-07,-5.397220330762910741e-07,-5.493599265240819294e-07,-5.589978199718727847e-07,-5.686357134196636401e-07,-5.782736068674544954e-07,-5.879115003152453507e-07,-5.975493937630362060e-07,-6.071872872108270613e-07 +0.000000000000000000e+00,-5.955464104462728008e-09,-1.191092820892545602e-08,-1.786639231338818320e-08,-2.382185641785090872e-08,-2.977732052231363425e-08,-3.573278462677635978e-08,-4.168824873123908531e-08,-4.764371283570181083e-08,-5.359917694016453636e-08,-5.955464104462726189e-08,-6.551010514908999403e-08,-7.146556925355273279e-08,-7.742103335801547155e-08,-8.337649746247821032e-08,-8.933196156694094908e-08,-9.528742567140368784e-08,-1.012428897758664266e-07,-1.071983538803291654e-07,-1.131538179847919041e-07,-1.191092820892546429e-07,-1.250647461937173816e-07,-1.310202102981801204e-07,-1.369756744026428592e-07,-1.429311385071055979e-07,-1.488866026115683367e-07,-1.548420667160310755e-07,-1.607975308204938142e-07,-1.667529949249565530e-07,-1.727084590294192917e-07,-1.786639231338820305e-07,-1.846193872383447693e-07,-1.905748513428075080e-07,-1.965303154472702468e-07,-2.024857795517329855e-07,-2.084412436561957243e-07,-2.143967077606584631e-07,-2.203521718651212018e-07,-2.263076359695839406e-07,-2.322631000740466794e-07,-2.382185641785094181e-07,-2.441740282829721569e-07,-2.501294923874348692e-07,-2.560849564918975815e-07,-2.620404205963602938e-07,-2.679958847008230060e-07,-2.739513488052857183e-07,-2.799068129097484306e-07,-2.858622770142111429e-07,-2.918177411186738552e-07,-2.977732052231365675e-07,-3.037286693275992798e-07,-3.096841334320619921e-07,-3.156395975365247044e-07,-3.215950616409874167e-07,-3.275505257454501290e-07,-3.335059898499128413e-07,-3.394614539543755536e-07,-3.454169180588382658e-07,-3.513723821633009781e-07,-3.573278462677636904e-07,-3.632833103722264027e-07,-3.692387744766891150e-07,-3.751942385811518273e-07 +0.000000000000000000e+00,-4.734455659585155593e-09,-9.468911319170311186e-09,-1.420336697875546678e-08,-1.893782263834062237e-08,-2.367227829792577796e-08,-2.840673395751093356e-08,-3.314118961709608915e-08,-3.787564527668124474e-08,-4.261010093626640034e-08,-4.734455659585155593e-08,-5.207901225543671152e-08,-5.681346791502186711e-08,-6.154792357460702271e-08,-6.628237923419217830e-08,-7.101683489377733389e-08,-7.575129055336248948e-08,-8.048574621294764508e-08,-8.522020187253280067e-08,-8.995465753211795626e-08,-9.468911319170311186e-08,-9.942356885128826745e-08,-1.041580245108734230e-07,-1.088924801704585786e-07,-1.136269358300437342e-07,-1.183613914896288898e-07,-1.230958471492140454e-07,-1.278303028087991878e-07,-1.325647584683843301e-07,-1.372992141279694725e-07,-1.420336697875546148e-07,-1.467681254471397572e-07,-1.515025811067248996e-07,-1.562370367663100419e-07,-1.609714924258951843e-07,-1.657059480854803266e-07,-1.704404037450654690e-07,-1.751748594046506113e-07,-1.799093150642357537e-07,-1.846437707238208961e-07,-1.893782263834060384e-07,-1.941126820429911808e-07,-1.988471377025763231e-07,-2.035815933621614655e-07,-2.083160490217466079e-07,-2.130505046813317502e-07,-2.177849603409168926e-07,-2.225194160005020349e-07,-2.272538716600871773e-07,-2.319883273196723196e-07,-2.367227829792574620e-07,-2.414572386388426044e-07,-2.461916942984277202e-07,-2.509261499580128361e-07,-2.556606056175979520e-07,-2.603950612771830679e-07,-2.651295169367681838e-07,-2.698639725963532997e-07,-2.745984282559384156e-07,-2.793328839155235315e-07,-2.840673395751086474e-07,-2.888017952346937632e-07,-2.935362508942788791e-07,-2.982707065538639950e-07 +0.000000000000000000e+00,-4.534399875270852782e-09,-9.068799750541705565e-09,-1.360319962581255835e-08,-1.813759950108341113e-08,-2.267199937635426391e-08,-2.720639925162511669e-08,-3.174079912689596948e-08,-3.627519900216682226e-08,-4.080959887743767504e-08,-4.534399875270852782e-08,-4.987839862797938061e-08,-5.441279850325023339e-08,-5.894719837852108617e-08,-6.348159825379193895e-08,-6.801599812906279174e-08,-7.255039800433364452e-08,-7.708479787960449730e-08,-8.161919775487535008e-08,-8.615359763014620287e-08,-9.068799750541705565e-08,-9.522239738068790843e-08,-9.975679725595876121e-08,-1.042911971312296140e-07,-1.088255970065004668e-07,-1.133599968817713196e-07,-1.178943967570421723e-07,-1.224287966323130251e-07,-1.269631965075838779e-07,-1.314975963828547307e-07,-1.360319962581255835e-07,-1.405663961333964363e-07,-1.451007960086672890e-07,-1.496351958839381418e-07,-1.541695957592089946e-07,-1.587039956344798474e-07,-1.632383955097507002e-07,-1.677727953850215530e-07,-1.723071952602924057e-07,-1.768415951355632585e-07,-1.813759950108341113e-07,-1.859103948861049641e-07,-1.904447947613758169e-07,-1.949791946366466696e-07,-1.995135945119175224e-07,-2.040479943871883752e-07,-2.085823942624592280e-07,-2.131167941377300808e-07,-2.176511940130009336e-07,-2.221855938882717863e-07,-2.267199937635426391e-07,-2.312543936388134919e-07,-2.357887935140843447e-07,-2.403231933893552239e-07,-2.448575932646261032e-07,-2.493919931398969824e-07,-2.539263930151678617e-07,-2.584607928904387409e-07,-2.629951927657096202e-07,-2.675295926409804995e-07,-2.720639925162513787e-07,-2.765983923915222580e-07,-2.811327922667931372e-07,-2.856671921420640165e-07 +0.000000000000000000e+00,-6.209781339715981548e-09,-1.241956267943196310e-08,-1.862934401914794547e-08,-2.483912535886392950e-08,-3.104890669857991353e-08,-3.725868803829589756e-08,-4.346846937801188159e-08,-4.967825071772786562e-08,-5.588803205744384965e-08,-6.209781339715984029e-08,-6.830759473687582432e-08,-7.451737607659180835e-08,-8.072715741630779238e-08,-8.693693875602377641e-08,-9.314672009573976044e-08,-9.935650143545574447e-08,-1.055662827751717285e-07,-1.117760641148877125e-07,-1.179858454546036966e-07,-1.241956267943196806e-07,-1.304054081340356646e-07,-1.366151894737516486e-07,-1.428249708134676327e-07,-1.490347521531836167e-07,-1.552445334928996007e-07,-1.614543148326155848e-07,-1.676640961723315688e-07,-1.738738775120475528e-07,-1.800836588517635369e-07,-1.862934401914795209e-07,-1.925032215311955049e-07,-1.987130028709114889e-07,-2.049227842106274730e-07,-2.111325655503434570e-07,-2.173423468900594410e-07,-2.235521282297754251e-07,-2.297619095694914091e-07,-2.359716909092073931e-07,-2.421814722489234036e-07,-2.483912535886394141e-07,-2.546010349283554246e-07,-2.608108162680714351e-07,-2.670205976077874456e-07,-2.732303789475034561e-07,-2.794401602872194666e-07,-2.856499416269354771e-07,-2.918597229666514876e-07,-2.980695043063674981e-07,-3.042792856460835086e-07,-3.104890669857995191e-07,-3.166988483255155296e-07,-3.229086296652315401e-07,-3.291184110049475506e-07,-3.353281923446635611e-07,-3.415379736843795716e-07,-3.477477550240955821e-07,-3.539575363638115926e-07,-3.601673177035276031e-07,-3.663770990432436136e-07,-3.725868803829596241e-07,-3.787966617226756346e-07,-3.850064430623916451e-07,-3.912162244021076556e-07 +0.000000000000000000e+00,-4.734455659579130409e-09,-9.468911319158260818e-09,-1.420336697873739123e-08,-1.893782263831652164e-08,-2.367227829789565205e-08,-2.840673395747478246e-08,-3.314118961705390956e-08,-3.787564527663303666e-08,-4.261010093621216376e-08,-4.734455659579129086e-08,-5.207901225537041796e-08,-5.681346791494954506e-08,-6.154792357452867216e-08,-6.628237923410779264e-08,-7.101683489368691312e-08,-7.575129055326603361e-08,-8.048574621284515409e-08,-8.522020187242427457e-08,-8.995465753200339506e-08,-9.468911319158251554e-08,-9.942356885116163602e-08,-1.041580245107407565e-07,-1.088924801703198770e-07,-1.136269358298989975e-07,-1.183613914894781180e-07,-1.230958471490572384e-07,-1.278303028086363457e-07,-1.325647584682154529e-07,-1.372992141277945602e-07,-1.420336697873736674e-07,-1.467681254469527747e-07,-1.515025811065318819e-07,-1.562370367661109892e-07,-1.609714924256900964e-07,-1.657059480852692037e-07,-1.704404037448483109e-07,-1.751748594044274182e-07,-1.799093150640065254e-07,-1.846437707235856327e-07,-1.893782263831647399e-07,-1.941126820427438472e-07,-1.988471377023229544e-07,-2.035815933619020617e-07,-2.083160490214811689e-07,-2.130505046810602762e-07,-2.177849603406393834e-07,-2.225194160002184906e-07,-2.272538716597975979e-07,-2.319883273193767051e-07,-2.367227829789558124e-07,-2.414572386385349196e-07,-2.461916942981140004e-07,-2.509261499576930812e-07,-2.556606056172721620e-07,-2.603950612768512428e-07,-2.651295169364303235e-07,-2.698639725960094043e-07,-2.745984282555884851e-07,-2.793328839151675659e-07,-2.840673395747466466e-07,-2.888017952343257274e-07,-2.935362508939048082e-07,-2.982707065534838890e-07 +0.000000000000000000e+00,-4.534399875264883847e-09,-9.068799750529767694e-09,-1.360319962579465154e-08,-1.813759950105953539e-08,-2.267199937632441924e-08,-2.720639925158930308e-08,-3.174079912685418693e-08,-3.627519900211907078e-08,-4.080959887738395462e-08,-4.534399875264883847e-08,-4.987839862791372232e-08,-5.441279850317860617e-08,-5.894719837844349001e-08,-6.348159825370837386e-08,-6.801599812897325771e-08,-7.255039800423814155e-08,-7.708479787950302540e-08,-8.161919775476790925e-08,-8.615359763003279310e-08,-9.068799750529767694e-08,-9.522239738056256079e-08,-9.975679725582744464e-08,-1.042911971310923285e-07,-1.088255970063572123e-07,-1.133599968816220962e-07,-1.178943967568869800e-07,-1.224287966321518506e-07,-1.269631965074167213e-07,-1.314975963826815919e-07,-1.360319962579464625e-07,-1.405663961332113331e-07,-1.451007960084762037e-07,-1.496351958837410743e-07,-1.541695957590059449e-07,-1.587039956342708155e-07,-1.632383955095356861e-07,-1.677727953848005568e-07,-1.723071952600654274e-07,-1.768415951353302980e-07,-1.813759950105951686e-07,-1.859103948858600392e-07,-1.904447947611249098e-07,-1.949791946363897804e-07,-1.995135945116546510e-07,-2.040479943869195217e-07,-2.085823942621843923e-07,-2.131167941374492629e-07,-2.176511940127141335e-07,-2.221855938879790041e-07,-2.267199937632438747e-07,-2.312543936385087453e-07,-2.357887935137736159e-07,-2.403231933890384866e-07,-2.448575932643033836e-07,-2.493919931395682807e-07,-2.539263930148331778e-07,-2.584607928900980749e-07,-2.629951927653629720e-07,-2.675295926406278691e-07,-2.720639925158927661e-07,-2.765983923911576632e-07,-2.811327922664225603e-07,-2.856671921416874574e-07 +0.000000000000000000e+00,-6.209781339710297990e-09,-1.241956267942059598e-08,-1.862934401913089232e-08,-2.483912535884118865e-08,-3.104890669855148499e-08,-3.725868803826178463e-08,-4.346846937797208427e-08,-4.967825071768238392e-08,-5.588803205739268356e-08,-6.209781339710298321e-08,-6.830759473681327623e-08,-7.451737607652356926e-08,-8.072715741623386229e-08,-8.693693875594415531e-08,-9.314672009565444834e-08,-9.935650143536474137e-08,-1.055662827750750344e-07,-1.117760641147853274e-07,-1.179858454544956204e-07,-1.241956267942059135e-07,-1.304054081339162065e-07,-1.366151894736264995e-07,-1.428249708133367926e-07,-1.490347521530470856e-07,-1.552445334927573786e-07,-1.614543148324676716e-07,-1.676640961721779647e-07,-1.738738775118882577e-07,-1.800836588515985507e-07,-1.862934401913088437e-07,-1.925032215310191368e-07,-1.987130028707294298e-07,-2.049227842104397228e-07,-2.111325655501500158e-07,-2.173423468898603089e-07,-2.235521282295706019e-07,-2.297619095692808949e-07,-2.359716909089911880e-07,-2.421814722487014810e-07,-2.483912535884117740e-07,-2.546010349281220670e-07,-2.608108162678323601e-07,-2.670205976075426531e-07,-2.732303789472529461e-07,-2.794401602869632391e-07,-2.856499416266735322e-07,-2.918597229663838252e-07,-2.980695043060941182e-07,-3.042792856458044112e-07,-3.104890669855147043e-07,-3.166988483252249973e-07,-3.229086296649352903e-07,-3.291184110046455834e-07,-3.353281923443558764e-07,-3.415379736840661694e-07,-3.477477550237764624e-07,-3.539575363634867555e-07,-3.601673177031970485e-07,-3.663770990429073415e-07,-3.725868803826176345e-07,-3.787966617223279276e-07,-3.850064430620382206e-07,-3.912162244017485136e-07 +0.000000000000000000e+00,-5.390427751642974745e-09,-1.078085550328594949e-08,-1.617128325492892589e-08,-2.156171100657190229e-08,-2.695213875821487869e-08,-3.234256650985785178e-08,-3.773299426150082487e-08,-4.312342201314379796e-08,-4.851384976478677105e-08,-5.390427751642974415e-08,-5.929470526807271724e-08,-6.468513301971569033e-08,-7.007556077135867004e-08,-7.546598852300164974e-08,-8.085641627464462945e-08,-8.624684402628760916e-08,-9.163727177793058887e-08,-9.702769952957356858e-08,-1.024181272812165483e-07,-1.078085550328595280e-07,-1.131989827845025077e-07,-1.185894105361454874e-07,-1.239798382877884671e-07,-1.293702660394314601e-07,-1.347606937910744530e-07,-1.401511215427174460e-07,-1.455415492943604389e-07,-1.509319770460034318e-07,-1.563224047976464248e-07,-1.617128325492894177e-07,-1.671032603009324107e-07,-1.724936880525754036e-07,-1.778841158042183966e-07,-1.832745435558613895e-07,-1.886649713075043824e-07,-1.940553990591473754e-07,-1.994458268107903683e-07,-2.048362545624333613e-07,-2.102266823140763542e-07,-2.156171100657193472e-07,-2.210075378173623401e-07,-2.263979655690053330e-07,-2.317883933206483260e-07,-2.371788210722913189e-07,-2.425692488239343119e-07,-2.479596765755773048e-07,-2.533501043272202978e-07,-2.587405320788632907e-07,-2.641309598305062836e-07,-2.695213875821492766e-07,-2.749118153337922695e-07,-2.803022430854352625e-07,-2.856926708370782554e-07,-2.910830985887212484e-07,-2.964735263403642413e-07,-3.018639540920072343e-07,-3.072543818436502272e-07,-3.126448095952932201e-07,-3.180352373469362131e-07,-3.234256650985792060e-07,-3.288160928502221990e-07,-3.342065206018651919e-07,-3.395969483535081849e-07 +0.000000000000000000e+00,-5.053850644191317374e-09,-1.010770128838263475e-08,-1.516155193257395047e-08,-2.021540257676526619e-08,-2.526925322095658191e-08,-3.032310386514790094e-08,-3.537695450933921997e-08,-4.043080515353053899e-08,-4.548465579772185802e-08,-5.053850644191317705e-08,-5.559235708610449608e-08,-6.064620773029581511e-08,-6.570005837448713414e-08,-7.075390901867845317e-08,-7.580775966286977220e-08,-8.086161030706109122e-08,-8.591546095125241025e-08,-9.096931159544372928e-08,-9.602316223963504831e-08,-1.010770128838263673e-07,-1.061308635280176864e-07,-1.111847141722090054e-07,-1.162385648164003244e-07,-1.212924154605916567e-07,-1.263462661047829757e-07,-1.314001167489742947e-07,-1.364539673931656138e-07,-1.415078180373569328e-07,-1.465616686815482518e-07,-1.516155193257395709e-07,-1.566693699699308899e-07,-1.617232206141222089e-07,-1.667770712583135279e-07,-1.718309219025048470e-07,-1.768847725466961660e-07,-1.819386231908874850e-07,-1.869924738350788041e-07,-1.920463244792701231e-07,-1.971001751234614421e-07,-2.021540257676527611e-07,-2.072078764118440802e-07,-2.122617270560353992e-07,-2.173155777002267182e-07,-2.223694283444180373e-07,-2.274232789886093563e-07,-2.324771296328006753e-07,-2.375309802769919943e-07,-2.425848309211833134e-07,-2.476386815653746324e-07,-2.526925322095659514e-07,-2.577463828537572705e-07,-2.628002334979485895e-07,-2.678540841421399085e-07,-2.729079347863312276e-07,-2.779617854305225466e-07,-2.830156360747138656e-07,-2.880694867189051846e-07,-2.931233373630965037e-07,-2.981771880072878227e-07,-3.032310386514791417e-07,-3.082848892956704608e-07,-3.133387399398617798e-07,-3.183925905840530988e-07 +0.000000000000000000e+00,-6.949356181449169583e-09,-1.389871236289833917e-08,-2.084806854434750792e-08,-2.779742472579667502e-08,-3.474678090724584213e-08,-4.169613708869500923e-08,-4.864549327014417633e-08,-5.559484945159334343e-08,-6.254420563304251053e-08,-6.949356181449168425e-08,-7.644291799594085797e-08,-8.339227417739003169e-08,-9.034163035883920541e-08,-9.729098654028837913e-08,-1.042403427217375528e-07,-1.111896989031867266e-07,-1.181390550846359003e-07,-1.250884112660850740e-07,-1.320377674475342610e-07,-1.389871236289834479e-07,-1.459364798104326349e-07,-1.528858359918818218e-07,-1.598351921733310088e-07,-1.667845483547801957e-07,-1.737339045362293827e-07,-1.806832607176785696e-07,-1.876326168991277566e-07,-1.945819730805769435e-07,-2.015313292620261305e-07,-2.084806854434753175e-07,-2.154300416249245044e-07,-2.223793978063736914e-07,-2.293287539878228783e-07,-2.362781101692720653e-07,-2.432274663507212522e-07,-2.501768225321704127e-07,-2.571261787136195732e-07,-2.640755348950687337e-07,-2.710248910765178942e-07,-2.779742472579670547e-07,-2.849236034394162151e-07,-2.918729596208653756e-07,-2.988223158023145361e-07,-3.057716719837636966e-07,-3.127210281652128571e-07,-3.196703843466620176e-07,-3.266197405281111780e-07,-3.335690967095603385e-07,-3.405184528910094990e-07,-3.474678090724586595e-07,-3.544171652539078200e-07,-3.613665214353569805e-07,-3.683158776168061409e-07,-3.752652337982553014e-07,-3.822145899797044619e-07,-3.891639461611536224e-07,-3.961133023426027829e-07,-4.030626585240519434e-07,-4.100120147055011039e-07,-4.169613708869502643e-07,-4.239107270683994248e-07,-4.308600832498485853e-07,-4.378094394312977458e-07 +0.000000000000000000e+00,-5.390427751636922265e-09,-1.078085550327384453e-08,-1.617128325491076762e-08,-2.156171100654769237e-08,-2.695213875818461711e-08,-3.234256650982154186e-08,-3.773299426145846661e-08,-4.312342201309539135e-08,-4.851384976473231610e-08,-5.390427751636924085e-08,-5.929470526800616559e-08,-6.468513301964309696e-08,-7.007556077128002832e-08,-7.546598852291695968e-08,-8.085641627455389105e-08,-8.624684402619082241e-08,-9.163727177782775378e-08,-9.702769952946468514e-08,-1.024181272811016165e-07,-1.078085550327385479e-07,-1.131989827843754792e-07,-1.185894105360124106e-07,-1.239798382876493420e-07,-1.293702660392862733e-07,-1.347606937909232047e-07,-1.401511215425601361e-07,-1.455415492941970674e-07,-1.509319770458339988e-07,-1.563224047974709301e-07,-1.617128325491078615e-07,-1.671032603007447929e-07,-1.724936880523817242e-07,-1.778841158040186556e-07,-1.832745435556555870e-07,-1.886649713072925183e-07,-1.940553990589294497e-07,-1.994458268105663811e-07,-2.048362545622033124e-07,-2.102266823138402438e-07,-2.156171100654771751e-07,-2.210075378171141065e-07,-2.263979655687510379e-07,-2.317883933203879692e-07,-2.371788210720249006e-07,-2.425692488236618320e-07,-2.479596765752987898e-07,-2.533501043269357476e-07,-2.587405320785727055e-07,-2.641309598302096633e-07,-2.695213875818466211e-07,-2.749118153334835790e-07,-2.803022430851205368e-07,-2.856926708367574946e-07,-2.910830985883944525e-07,-2.964735263400314103e-07,-3.018639540916683681e-07,-3.072543818433053260e-07,-3.126448095949422838e-07,-3.180352373465792416e-07,-3.234256650982161995e-07,-3.288160928498531573e-07,-3.342065206014901151e-07,-3.395969483531270730e-07 +0.000000000000000000e+00,-5.053850644185224362e-09,-1.010770128837044872e-08,-1.516155193255567309e-08,-2.021540257674089745e-08,-2.526925322092612181e-08,-3.032310386511134617e-08,-3.537695450929657053e-08,-4.043080515348179490e-08,-4.548465579766701926e-08,-5.053850644185224362e-08,-5.559235708603746798e-08,-6.064620773022269234e-08,-6.570005837440792332e-08,-7.075390901859315430e-08,-7.580775966277838528e-08,-8.086161030696361626e-08,-8.591546095114884724e-08,-9.096931159533407822e-08,-9.602316223951930920e-08,-1.010770128837045402e-07,-1.061308635278897712e-07,-1.111847141720750021e-07,-1.162385648162602331e-07,-1.212924154604454641e-07,-1.263462661046306951e-07,-1.314001167488159261e-07,-1.364539673930011570e-07,-1.415078180371863880e-07,-1.465616686813716190e-07,-1.516155193255568500e-07,-1.566693699697420810e-07,-1.617232206139273119e-07,-1.667770712581125429e-07,-1.718309219022977739e-07,-1.768847725464830049e-07,-1.819386231906682358e-07,-1.869924738348534668e-07,-1.920463244790386978e-07,-1.971001751232239288e-07,-2.021540257674091598e-07,-2.072078764115943907e-07,-2.122617270557796217e-07,-2.173155776999648527e-07,-2.223694283441500837e-07,-2.274232789883353147e-07,-2.324771296325205456e-07,-2.375309802767057766e-07,-2.425848309208909811e-07,-2.476386815650762121e-07,-2.526925322092614431e-07,-2.577463828534466741e-07,-2.628002334976319050e-07,-2.678540841418171360e-07,-2.729079347860023670e-07,-2.779617854301875980e-07,-2.830156360743728290e-07,-2.880694867185580599e-07,-2.931233373627432909e-07,-2.981771880069285219e-07,-3.032310386511137529e-07,-3.082848892952989839e-07,-3.133387399394842148e-07,-3.183925905836694458e-07 +0.000000000000000000e+00,-6.949356181443956691e-09,-1.389871236288791338e-08,-2.084806854433187090e-08,-2.779742472577583007e-08,-3.474678090721978925e-08,-4.169613708866374842e-08,-4.864549327010770759e-08,-5.559484945155166676e-08,-6.254420563299561932e-08,-6.949356181443956526e-08,-7.644291799588351120e-08,-8.339227417732745713e-08,-9.034163035877140307e-08,-9.729098654021534901e-08,-1.042403427216592949e-07,-1.111896989031032409e-07,-1.181390550845471868e-07,-1.250884112659911328e-07,-1.320377674474350787e-07,-1.389871236288790246e-07,-1.459364798103229706e-07,-1.528858359917669165e-07,-1.598351921732108624e-07,-1.667845483546548084e-07,-1.737339045360987543e-07,-1.806832607175427003e-07,-1.876326168989866462e-07,-1.945819730804305921e-07,-2.015313292618745381e-07,-2.084806854433184840e-07,-2.154300416247624300e-07,-2.223793978062063759e-07,-2.293287539876503218e-07,-2.362781101690942678e-07,-2.432274663505381872e-07,-2.501768225319821067e-07,-2.571261787134260262e-07,-2.640755348948699456e-07,-2.710248910763138651e-07,-2.779742472577577846e-07,-2.849236034392017040e-07,-2.918729596206456235e-07,-2.988223158020895430e-07,-3.057716719835334624e-07,-3.127210281649773819e-07,-3.196703843464213014e-07,-3.266197405278652208e-07,-3.335690967093091403e-07,-3.405184528907530598e-07,-3.474678090721969793e-07,-3.544171652536408987e-07,-3.613665214350848182e-07,-3.683158776165287377e-07,-3.752652337979726571e-07,-3.822145899794165766e-07,-3.891639461608604961e-07,-3.961133023423044155e-07,-4.030626585237483350e-07,-4.100120147051922545e-07,-4.169613708866361739e-07,-4.239107270680800934e-07,-4.308600832495240129e-07,-4.378094394309679323e-07 +0.000000000000000000e+00,-6.004423498757658794e-09,-1.200884699751531759e-08,-1.801327049627297473e-08,-2.401769399503063187e-08,-3.002211749378828901e-08,-3.602654099254594946e-08,-4.203096449130360991e-08,-4.803538799006127035e-08,-5.403981148881893080e-08,-6.004423498757659125e-08,-6.604865848633425170e-08,-7.205308198509191215e-08,-7.805750548384957260e-08,-8.406192898260723305e-08,-9.006635248136489349e-08,-9.607077598012255394e-08,-1.020751994788802144e-07,-1.080796229776378748e-07,-1.140840464763955353e-07,-1.200884699751532090e-07,-1.260928934739108827e-07,-1.320973169726685563e-07,-1.381017404714262300e-07,-1.441061639701839037e-07,-1.501105874689415774e-07,-1.561150109676992511e-07,-1.621194344664569248e-07,-1.681238579652145984e-07,-1.741282814639722721e-07,-1.801327049627299458e-07,-1.861371284614876195e-07,-1.921415519602452932e-07,-1.981459754590029669e-07,-2.041503989577606405e-07,-2.101548224565183142e-07,-2.161592459552759879e-07,-2.221636694540336616e-07,-2.281680929527913353e-07,-2.341725164515490090e-07,-2.401769399503066826e-07,-2.461813634490643828e-07,-2.521857869478220829e-07,-2.581902104465797831e-07,-2.641946339453374833e-07,-2.701990574440951834e-07,-2.762034809428528836e-07,-2.822079044416105837e-07,-2.882123279403682839e-07,-2.942167514391259840e-07,-3.002211749378836842e-07,-3.062255984366413843e-07,-3.122300219353990845e-07,-3.182344454341567846e-07,-3.242388689329144848e-07,-3.302432924316721849e-07,-3.362477159304298851e-07,-3.422521394291875852e-07,-3.482565629279452854e-07,-3.542609864267029856e-07,-3.602654099254606857e-07,-3.662698334242183859e-07,-3.722742569229760860e-07,-3.782786804217337862e-07 +0.000000000000000000e+00,-5.715447614099841762e-09,-1.143089522819968352e-08,-1.714634284229952529e-08,-2.286179045639936705e-08,-2.857723807049920881e-08,-3.429268568459905057e-08,-4.000813329869889233e-08,-4.572358091279873410e-08,-5.143902852689857586e-08,-5.715447614099841762e-08,-6.286992375509825938e-08,-6.858537136919810114e-08,-7.430081898329794291e-08,-8.001626659739778467e-08,-8.573171421149762643e-08,-9.144716182559746819e-08,-9.716260943969730995e-08,-1.028780570537971517e-07,-1.085935046678969935e-07,-1.143089522819968352e-07,-1.200243998960966770e-07,-1.257398475101965188e-07,-1.314552951242963605e-07,-1.371707427383962023e-07,-1.428861903524960440e-07,-1.486016379665958858e-07,-1.543170855806957276e-07,-1.600325331947955693e-07,-1.657479808088954111e-07,-1.714634284229952529e-07,-1.771788760370950946e-07,-1.828943236511949364e-07,-1.886097712652947781e-07,-1.943252188793946199e-07,-2.000406664934944617e-07,-2.057561141075943034e-07,-2.114715617216941452e-07,-2.171870093357939870e-07,-2.229024569498938287e-07,-2.286179045639936705e-07,-2.343333521780935122e-07,-2.400487997921933540e-07,-2.457642474062931693e-07,-2.514796950203929846e-07,-2.571951426344927999e-07,-2.629105902485926152e-07,-2.686260378626924305e-07,-2.743414854767922458e-07,-2.800569330908920610e-07,-2.857723807049918763e-07,-2.914878283190916916e-07,-2.972032759331915069e-07,-3.029187235472913222e-07,-3.086341711613911375e-07,-3.143496187754909528e-07,-3.200650663895907681e-07,-3.257805140036905834e-07,-3.314959616177903987e-07,-3.372114092318902140e-07,-3.429268568459900293e-07,-3.486423044600898446e-07,-3.543577520741896598e-07,-3.600731996882894751e-07 +0.000000000000000000e+00,-7.628752145157980421e-09,-1.525750429031596084e-08,-2.288625643547394126e-08,-3.051500858063192168e-08,-3.814376072578989880e-08,-4.577251287094787591e-08,-5.340126501610585302e-08,-6.103001716126383013e-08,-6.865876930642180725e-08,-7.628752145157978436e-08,-8.391627359673776147e-08,-9.154502574189573858e-08,-9.917377788705371570e-08,-1.068025300322116928e-07,-1.144312821773696699e-07,-1.220600343225276338e-07,-1.296887864676855977e-07,-1.373175386128435616e-07,-1.449462907580015254e-07,-1.525750429031594893e-07,-1.602037950483174532e-07,-1.678325471934754171e-07,-1.754612993386333809e-07,-1.830900514837913448e-07,-1.907188036289493087e-07,-1.983475557741072726e-07,-2.059763079192652365e-07,-2.136050600644232003e-07,-2.212338122095811642e-07,-2.288625643547391281e-07,-2.364913164998970920e-07,-2.441200686450550558e-07,-2.517488207902130462e-07,-2.593775729353710365e-07,-2.670063250805290269e-07,-2.746350772256870172e-07,-2.822638293708450076e-07,-2.898925815160029979e-07,-2.975213336611609883e-07,-3.051500858063189786e-07,-3.127788379514769690e-07,-3.204075900966349593e-07,-3.280363422417929497e-07,-3.356650943869509400e-07,-3.432938465321089304e-07,-3.509225986772669207e-07,-3.585513508224249110e-07,-3.661801029675829014e-07,-3.738088551127408917e-07,-3.814376072578988821e-07,-3.890663594030568724e-07,-3.966951115482148628e-07,-4.043238636933728531e-07,-4.119526158385308435e-07,-4.195813679836888338e-07,-4.272101201288468242e-07,-4.348388722740048145e-07,-4.424676244191628049e-07,-4.500963765643207952e-07,-4.577251287094787856e-07,-4.653538808546367759e-07,-4.729826329997947663e-07,-4.806113851449527566e-07 +0.000000000000000000e+00,-6.004423498752559226e-09,-1.200884699750511845e-08,-1.801327049625767850e-08,-2.401769399501024021e-08,-3.002211749376279861e-08,-3.602654099251535701e-08,-4.203096449126791541e-08,-4.803538799002047381e-08,-5.403981148877303220e-08,-6.004423498752559722e-08,-6.604865848627816224e-08,-7.205308198503072725e-08,-7.805750548378329227e-08,-8.406192898253585729e-08,-9.006635248128842230e-08,-9.607077598004098732e-08,-1.020751994787935523e-07,-1.080796229775461173e-07,-1.140840464762986824e-07,-1.200884699750512474e-07,-1.260928934738038124e-07,-1.320973169725563774e-07,-1.381017404713089424e-07,-1.441061639700615074e-07,-1.501105874688140725e-07,-1.561150109675666375e-07,-1.621194344663192025e-07,-1.681238579650717675e-07,-1.741282814638243325e-07,-1.801327049625768975e-07,-1.861371284613294626e-07,-1.921415519600820276e-07,-1.981459754588345926e-07,-2.041503989575871576e-07,-2.101548224563397226e-07,-2.161592459550922876e-07,-2.221636694538448527e-07,-2.281680929525974177e-07,-2.341725164513499827e-07,-2.401769399501025477e-07,-2.461813634488551127e-07,-2.521857869476076777e-07,-2.581902104463602428e-07,-2.641946339451128078e-07,-2.701990574438653728e-07,-2.762034809426179378e-07,-2.822079044413705028e-07,-2.882123279401230678e-07,-2.942167514388756328e-07,-3.002211749376281979e-07,-3.062255984363807629e-07,-3.122300219351333279e-07,-3.182344454338858929e-07,-3.242388689326384579e-07,-3.302432924313910229e-07,-3.362477159301435880e-07,-3.422521394288961530e-07,-3.482565629276487180e-07,-3.542609864264012830e-07,-3.602654099251538480e-07,-3.662698334239064130e-07,-3.722742569226589781e-07,-3.782786804214115431e-07 +0.000000000000000000e+00,-5.715447614094130907e-09,-1.143089522818826181e-08,-1.714634284228239272e-08,-2.286179045637652363e-08,-2.857723807047065454e-08,-3.429268568456478544e-08,-4.000813329865891635e-08,-4.572358091275304726e-08,-5.143902852684717816e-08,-5.715447614094130907e-08,-6.286992375503544659e-08,-6.858537136912958412e-08,-7.430081898322372164e-08,-8.001626659731785917e-08,-8.573171421141199669e-08,-9.144716182550613422e-08,-9.716260943960027174e-08,-1.028780570536944093e-07,-1.085935046677885468e-07,-1.143089522818826843e-07,-1.200243998959768218e-07,-1.257398475100709461e-07,-1.314552951241650704e-07,-1.371707427382591947e-07,-1.428861903523533190e-07,-1.486016379664474433e-07,-1.543170855805415676e-07,-1.600325331946356919e-07,-1.657479808087298162e-07,-1.714634284228239404e-07,-1.771788760369180647e-07,-1.828943236510121890e-07,-1.886097712651063133e-07,-1.943252188792004376e-07,-2.000406664932945619e-07,-2.057561141073886862e-07,-2.114715617214828105e-07,-2.171870093355769348e-07,-2.229024569496710591e-07,-2.286179045637651833e-07,-2.343333521778593076e-07,-2.400487997919534319e-07,-2.457642474060475297e-07,-2.514796950201416276e-07,-2.571951426342357254e-07,-2.629105902483298232e-07,-2.686260378624239210e-07,-2.743414854765180188e-07,-2.800569330906121167e-07,-2.857723807047062145e-07,-2.914878283188003123e-07,-2.972032759328944101e-07,-3.029187235469885079e-07,-3.086341711610826058e-07,-3.143496187751767036e-07,-3.200650663892708014e-07,-3.257805140033648992e-07,-3.314959616174589970e-07,-3.372114092315530949e-07,-3.429268568456471927e-07,-3.486423044597412905e-07,-3.543577520738353883e-07,-3.600731996879294861e-07 +0.000000000000000000e+00,-7.628752145153983484e-09,-1.525750429030796697e-08,-2.288625643546195045e-08,-3.051500858061593394e-08,-3.814376072576991411e-08,-4.577251287092389429e-08,-5.340126501607787446e-08,-6.103001716123185464e-08,-6.865876930638583482e-08,-7.628752145153981499e-08,-8.391627359669379517e-08,-9.154502574184777534e-08,-9.917377788700175552e-08,-1.068025300321557357e-07,-1.144312821773097159e-07,-1.220600343224636828e-07,-1.296887864676176498e-07,-1.373175386127716167e-07,-1.449462907579255836e-07,-1.525750429030795506e-07,-1.602037950482335175e-07,-1.678325471933874845e-07,-1.754612993385414514e-07,-1.830900514836954183e-07,-1.907188036288493853e-07,-1.983475557740033522e-07,-2.059763079191573192e-07,-2.136050600643112861e-07,-2.212338122094652530e-07,-2.288625643546192200e-07,-2.364913164997731869e-07,-2.441200686449271539e-07,-2.517488207900811208e-07,-2.593775729352350877e-07,-2.670063250803890547e-07,-2.746350772255430216e-07,-2.822638293706969886e-07,-2.898925815158509555e-07,-2.975213336610049224e-07,-3.051500858061588894e-07,-3.127788379513128563e-07,-3.204075900964668233e-07,-3.280363422416207902e-07,-3.356650943867747572e-07,-3.432938465319287241e-07,-3.509225986770826910e-07,-3.585513508222366580e-07,-3.661801029673906249e-07,-3.738088551125445919e-07,-3.814376072576985588e-07,-3.890663594028525257e-07,-3.966951115480064927e-07,-4.043238636931604596e-07,-4.119526158383144266e-07,-4.195813679834683935e-07,-4.272101201286223604e-07,-4.348388722737763274e-07,-4.424676244189302943e-07,-4.500963765640842613e-07,-4.577251287092382282e-07,-4.653538808543921951e-07,-4.729826329995461621e-07,-4.806113851447001290e-07 +0.000000000000000000e+00,-6.451833986005437941e-09,-1.290366797201087588e-08,-1.935550195801631382e-08,-2.580733594402175177e-08,-3.225916993002718971e-08,-3.871100391603262765e-08,-4.516283790203806559e-08,-5.161467188804350353e-08,-5.806650587404894147e-08,-6.451833986005437941e-08,-7.097017384605981074e-08,-7.742200783206524206e-08,-8.387384181807067339e-08,-9.032567580407610471e-08,-9.677750979008153603e-08,-1.032293437760869674e-07,-1.096811777620923987e-07,-1.161330117480978300e-07,-1.225848457341032613e-07,-1.290366797201086794e-07,-1.354885137061140975e-07,-1.419403476921195156e-07,-1.483921816781249337e-07,-1.548440156641303518e-07,-1.612958496501357699e-07,-1.677476836361411880e-07,-1.741995176221466060e-07,-1.806513516081520241e-07,-1.871031855941574422e-07,-1.935550195801628603e-07,-2.000068535661682784e-07,-2.064586875521736965e-07,-2.129105215381791146e-07,-2.193623555241845327e-07,-2.258141895101899508e-07,-2.322660234961953688e-07,-2.387178574822007869e-07,-2.451696914682062050e-07,-2.516215254542116231e-07,-2.580733594402170412e-07,-2.645251934262224593e-07,-2.709770274122278774e-07,-2.774288613982332955e-07,-2.838806953842387136e-07,-2.903325293702441316e-07,-2.967843633562495497e-07,-3.032361973422549678e-07,-3.096880313282603859e-07,-3.161398653142658040e-07,-3.225916993002712221e-07,-3.290435332862766402e-07,-3.354953672722820583e-07,-3.419472012582874764e-07,-3.483990352442928945e-07,-3.548508692302983125e-07,-3.613027032163037306e-07,-3.677545372023091487e-07,-3.742063711883145668e-07,-3.806582051743199849e-07,-3.871100391603254030e-07,-3.935618731463308211e-07,-4.000137071323362392e-07,-4.064655411183416573e-07 +0.000000000000000000e+00,-6.251931039129167432e-09,-1.250386207825833486e-08,-1.875579311738750312e-08,-2.500772415651667304e-08,-3.125965519564583964e-08,-3.751158623477500625e-08,-4.376351727390417285e-08,-5.001544831303333946e-08,-5.626737935216250607e-08,-6.251931039129167929e-08,-6.877124143042085251e-08,-7.502317246955002573e-08,-8.127510350867919896e-08,-8.752703454780837218e-08,-9.377896558693754540e-08,-1.000308966260667186e-07,-1.062828276651958918e-07,-1.125347587043250651e-07,-1.187866897434542383e-07,-1.250386207825834115e-07,-1.312905518217125847e-07,-1.375424828608417580e-07,-1.437944138999709312e-07,-1.500463449391001044e-07,-1.562982759782292776e-07,-1.625502070173584509e-07,-1.688021380564876241e-07,-1.750540690956167973e-07,-1.813060001347459705e-07,-1.875579311738751437e-07,-1.938098622130043170e-07,-2.000617932521334902e-07,-2.063137242912626634e-07,-2.125656553303918366e-07,-2.188175863695210099e-07,-2.250695174086501831e-07,-2.313214484477793563e-07,-2.375733794869085295e-07,-2.438253105260377027e-07,-2.500772415651668760e-07,-2.563291726042960492e-07,-2.625811036434252224e-07,-2.688330346825543956e-07,-2.750849657216835689e-07,-2.813368967608127421e-07,-2.875888277999419153e-07,-2.938407588390710885e-07,-3.000926898782002618e-07,-3.063446209173294350e-07,-3.125965519564586082e-07,-3.188484829955877814e-07,-3.251004140347169546e-07,-3.313523450738461279e-07,-3.376042761129753011e-07,-3.438562071521044743e-07,-3.501081381912336475e-07,-3.563600692303628208e-07,-3.626120002694919940e-07,-3.688639313086211672e-07,-3.751158623477503404e-07,-3.813677933868795136e-07,-3.876197244260086869e-07,-3.938716554651378601e-07 +0.000000000000000000e+00,-8.131784723377414993e-09,-1.626356944675482999e-08,-2.439535417013224663e-08,-3.252713889350966659e-08,-4.065892361688708655e-08,-4.879070834026450650e-08,-5.692249306364192646e-08,-6.505427778701934641e-08,-7.318606251039676637e-08,-8.131784723377418633e-08,-8.944963195715160628e-08,-9.758141668052902624e-08,-1.057132014039064462e-07,-1.138449861272838662e-07,-1.219767708506612861e-07,-1.301085555740387193e-07,-1.382403402974161525e-07,-1.463721250207935857e-07,-1.545039097441710189e-07,-1.626356944675484521e-07,-1.707674791909258853e-07,-1.788992639143033184e-07,-1.870310486376807516e-07,-1.951628333610581848e-07,-2.032946180844356180e-07,-2.114264028078130512e-07,-2.195581875311904844e-07,-2.276899722545679176e-07,-2.358217569779453508e-07,-2.439535417013227840e-07,-2.520853264247002172e-07,-2.602171111480776504e-07,-2.683488958714550835e-07,-2.764806805948325167e-07,-2.846124653182099499e-07,-2.927442500415873831e-07,-3.008760347649648163e-07,-3.090078194883422495e-07,-3.171396042117196827e-07,-3.252713889350971159e-07,-3.334031736584745491e-07,-3.415349583818519823e-07,-3.496667431052294155e-07,-3.577985278286068486e-07,-3.659303125519842818e-07,-3.740620972753617150e-07,-3.821938819987391482e-07,-3.903256667221165814e-07,-3.984574514454940146e-07,-4.065892361688714478e-07,-4.147210208922488810e-07,-4.228528056156263142e-07,-4.309845903390037474e-07,-4.391163750623811806e-07,-4.472481597857586137e-07,-4.553799445091360469e-07,-4.635117292325134801e-07,-4.716435139558909133e-07,-4.797752986792683465e-07,-4.879070834026457797e-07,-4.960388681260232129e-07,-5.041706528494006461e-07,-5.123024375727780793e-07 +0.000000000000000000e+00,-6.451833986001935659e-09,-1.290366797200387132e-08,-1.935550195800580532e-08,-2.580733594400773933e-08,-3.225916993000967333e-08,-3.871100391601161064e-08,-4.516283790201354796e-08,-5.161467188801548527e-08,-5.806650587401742258e-08,-6.451833986001935990e-08,-7.097017384602129721e-08,-7.742200783202323452e-08,-8.387384181802517184e-08,-9.032567580402710915e-08,-9.677750979002904646e-08,-1.032293437760309838e-07,-1.096811777620329211e-07,-1.161330117480348584e-07,-1.225848457340367957e-07,-1.290366797200387463e-07,-1.354885137060406968e-07,-1.419403476920426474e-07,-1.483921816780445979e-07,-1.548440156640465485e-07,-1.612958496500484990e-07,-1.677476836360504496e-07,-1.741995176220524001e-07,-1.806513516080543506e-07,-1.871031855940563012e-07,-1.935550195800582517e-07,-2.000068535660602023e-07,-2.064586875520621528e-07,-2.129105215380641034e-07,-2.193623555240660539e-07,-2.258141895100680045e-07,-2.322660234960699550e-07,-2.387178574820718791e-07,-2.451696914680738032e-07,-2.516215254540757273e-07,-2.580733594400776513e-07,-2.645251934260795754e-07,-2.709770274120814995e-07,-2.774288613980834236e-07,-2.838806953840853477e-07,-2.903325293700872717e-07,-2.967843633560891958e-07,-3.032361973420911199e-07,-3.096880313280930440e-07,-3.161398653140949680e-07,-3.225916993000968921e-07,-3.290435332860988162e-07,-3.354953672721007403e-07,-3.419472012581026644e-07,-3.483990352441045884e-07,-3.548508692301065125e-07,-3.613027032161084366e-07,-3.677545372021103607e-07,-3.742063711881122848e-07,-3.806582051741142088e-07,-3.871100391601161329e-07,-3.935618731461180570e-07,-4.000137071321199811e-07,-4.064655411181219051e-07 +0.000000000000000000e+00,-6.251931039124896699e-09,-1.250386207824979340e-08,-1.875579311737468844e-08,-2.500772415649958349e-08,-3.125965519562447853e-08,-3.751158623474937689e-08,-4.376351727387427524e-08,-5.001544831299917359e-08,-5.626737935212407195e-08,-6.251931039124897030e-08,-6.877124143037386865e-08,-7.502317246949876701e-08,-8.127510350862366536e-08,-8.752703454774856371e-08,-9.377896558687346207e-08,-1.000308966259983604e-07,-1.062828276651232588e-07,-1.125347587042481571e-07,-1.187866897433730555e-07,-1.250386207824979671e-07,-1.312905518216228787e-07,-1.375424828607477902e-07,-1.437944138998727018e-07,-1.500463449389976134e-07,-1.562982759781225250e-07,-1.625502070172474366e-07,-1.688021380563723482e-07,-1.750540690954972598e-07,-1.813060001346221714e-07,-1.875579311737470829e-07,-1.938098622128719945e-07,-2.000617932519969061e-07,-2.063137242911218177e-07,-2.125656553302467293e-07,-2.188175863693716409e-07,-2.250695174084965525e-07,-2.313214484476214641e-07,-2.375733794867463757e-07,-2.438253105258713137e-07,-2.500772415649962518e-07,-2.563291726041211898e-07,-2.625811036432461279e-07,-2.688330346823710659e-07,-2.750849657214960040e-07,-2.813368967606209421e-07,-2.875888277997458801e-07,-2.938407588388708182e-07,-3.000926898779957562e-07,-3.063446209171206943e-07,-3.125965519562456324e-07,-3.188484829953705704e-07,-3.251004140344955085e-07,-3.313523450736204465e-07,-3.376042761127453846e-07,-3.438562071518703226e-07,-3.501081381909952607e-07,-3.563600692301201988e-07,-3.626120002692451368e-07,-3.688639313083700749e-07,-3.751158623474950129e-07,-3.813677933866199510e-07,-3.876197244257448890e-07,-3.938716554648698271e-07 +0.000000000000000000e+00,-8.131784723374870585e-09,-1.626356944674974117e-08,-2.439535417012461010e-08,-3.252713889349947572e-08,-4.065892361687434135e-08,-4.879070834024920697e-08,-5.692249306362407259e-08,-6.505427778699893821e-08,-7.318606251037380384e-08,-8.131784723374866946e-08,-8.944963195712353508e-08,-9.758141668049840070e-08,-1.057132014038732663e-07,-1.138449861272481319e-07,-1.219767708506230108e-07,-1.301085555739979029e-07,-1.382403402973727950e-07,-1.463721250207476871e-07,-1.545039097441225792e-07,-1.626356944674974713e-07,-1.707674791908723634e-07,-1.788992639142472555e-07,-1.870310486376221475e-07,-1.951628333609970396e-07,-2.032946180843719317e-07,-2.114264028077468238e-07,-2.195581875311217159e-07,-2.276899722544966080e-07,-2.358217569778715001e-07,-2.439535417012463922e-07,-2.520853264246212843e-07,-2.602171111479961764e-07,-2.683488958713710685e-07,-2.764806805947459606e-07,-2.846124653181208526e-07,-2.927442500414957447e-07,-3.008760347648706368e-07,-3.090078194882455289e-07,-3.171396042116204210e-07,-3.252713889349953131e-07,-3.334031736583702052e-07,-3.415349583817450973e-07,-3.496667431051199894e-07,-3.577985278284948815e-07,-3.659303125518697736e-07,-3.740620972752446657e-07,-3.821938819986195578e-07,-3.903256667219944498e-07,-3.984574514453693419e-07,-4.065892361687442340e-07,-4.147210208921191261e-07,-4.228528056154940182e-07,-4.309845903388689103e-07,-4.391163750622438024e-07,-4.472481597856186945e-07,-4.553799445089935866e-07,-4.635117292323684787e-07,-4.716435139557433708e-07,-4.797752986791182099e-07,-4.879070834024931020e-07,-4.960388681258679941e-07,-5.041706528492428862e-07,-5.123024375726177783e-07 +0.000000000000000000e+00,-6.715394397248866007e-09,-1.343078879449773201e-08,-2.014618319174659637e-08,-2.686157758899546072e-08,-3.357697198624432507e-08,-4.029236638349319273e-08,-4.700776078074206039e-08,-5.372315517799092805e-08,-6.043854957523980233e-08,-6.715394397248867661e-08,-7.386933836973755089e-08,-8.058473276698642517e-08,-8.730012716423529944e-08,-9.401552156148417372e-08,-1.007309159587330480e-07,-1.074463103559819223e-07,-1.141617047532307966e-07,-1.208770991504796576e-07,-1.275924935477285186e-07,-1.343078879449773797e-07,-1.410232823422262407e-07,-1.477386767394751018e-07,-1.544540711367239628e-07,-1.611694655339728239e-07,-1.678848599312216849e-07,-1.746002543284705459e-07,-1.813156487257194070e-07,-1.880310431229682680e-07,-1.947464375202171291e-07,-2.014618319174659901e-07,-2.081772263147148512e-07,-2.148926207119637122e-07,-2.216080151092125733e-07,-2.283234095064614343e-07,-2.350388039037102953e-07,-2.417541983009591564e-07,-2.484695926982080439e-07,-2.551849870954569314e-07,-2.619003814927058189e-07,-2.686157758899547064e-07,-2.753311702872035939e-07,-2.820465646844524815e-07,-2.887619590817013690e-07,-2.954773534789502565e-07,-3.021927478761991440e-07,-3.089081422734480315e-07,-3.156235366706969190e-07,-3.223389310679458065e-07,-3.290543254651946941e-07,-3.357697198624435816e-07,-3.424851142596924691e-07,-3.492005086569413566e-07,-3.559159030541902441e-07,-3.626312974514391316e-07,-3.693466918486880191e-07,-3.760620862459369066e-07,-3.827774806431857942e-07,-3.894928750404346817e-07,-3.962082694376835692e-07,-4.029236638349324567e-07,-4.096390582321813442e-07,-4.163544526294302317e-07,-4.230698470266791192e-07 +0.000000000000000000e+00,-6.607181854606119773e-09,-1.321436370921223955e-08,-1.982154556381836015e-08,-2.642872741842448240e-08,-3.303590927303060797e-08,-3.964309112763673353e-08,-4.625027298224285909e-08,-5.285745483684898466e-08,-5.946463669145511022e-08,-6.607181854606124240e-08,-7.267900040066737458e-08,-7.928618225527350676e-08,-8.589336410987963895e-08,-9.250054596448577113e-08,-9.910772781909190331e-08,-1.057149096736980355e-07,-1.123220915283041677e-07,-1.189292733829102999e-07,-1.255364552375164320e-07,-1.321436370921225642e-07,-1.387508189467286964e-07,-1.453580008013348286e-07,-1.519651826559409608e-07,-1.585723645105470929e-07,-1.651795463651532251e-07,-1.717867282197593573e-07,-1.783939100743654895e-07,-1.850010919289716217e-07,-1.916082737835777538e-07,-1.982154556381838860e-07,-2.048226374927900182e-07,-2.114298193473961504e-07,-2.180370012020022826e-07,-2.246441830566084148e-07,-2.312513649112145469e-07,-2.378585467658206791e-07,-2.444657286204267848e-07,-2.510729104750329170e-07,-2.576800923296390492e-07,-2.642872741842451814e-07,-2.708944560388513135e-07,-2.775016378934574457e-07,-2.841088197480635779e-07,-2.907160016026697101e-07,-2.973231834572758423e-07,-3.039303653118819745e-07,-3.105375471664881066e-07,-3.171447290210942388e-07,-3.237519108757003710e-07,-3.303590927303065032e-07,-3.369662745849126354e-07,-3.435734564395187675e-07,-3.501806382941248997e-07,-3.567878201487310319e-07,-3.633950020033371641e-07,-3.700021838579432963e-07,-3.766093657125494284e-07,-3.832165475671555606e-07,-3.898237294217616928e-07,-3.964309112763678250e-07,-4.030380931309739572e-07,-4.096452749855800894e-07,-4.162524568401862215e-07 +0.000000000000000000e+00,-8.466938569682670111e-09,-1.693387713936534022e-08,-2.540081570904801199e-08,-3.386775427873068706e-08,-4.233469284841336214e-08,-5.080163141809603721e-08,-5.926856998777871229e-08,-6.773550855746138736e-08,-7.620244712714405582e-08,-8.466938569682672428e-08,-9.313632426650939273e-08,-1.016032628361920612e-07,-1.100702014058747296e-07,-1.185371399755573981e-07,-1.270040785452400666e-07,-1.354710171149227483e-07,-1.439379556846054299e-07,-1.524048942542881116e-07,-1.608718328239707933e-07,-1.693387713936534750e-07,-1.778057099633361567e-07,-1.862726485330188384e-07,-1.947395871027015201e-07,-2.032065256723842018e-07,-2.116734642420668835e-07,-2.201404028117495652e-07,-2.286073413814322469e-07,-2.370742799511149286e-07,-2.455412185207976102e-07,-2.540081570904802919e-07,-2.624750956601629736e-07,-2.709420342298456553e-07,-2.794089727995283370e-07,-2.878759113692110187e-07,-2.963428499388937004e-07,-3.048097885085763821e-07,-3.132767270782590638e-07,-3.217436656479417455e-07,-3.302106042176244272e-07,-3.386775427873071089e-07,-3.471444813569897906e-07,-3.556114199266724722e-07,-3.640783584963551539e-07,-3.725452970660378356e-07,-3.810122356357205173e-07,-3.894791742054031990e-07,-3.979461127750858807e-07,-4.064130513447685624e-07,-4.148799899144512441e-07,-4.233469284841339258e-07,-4.318138670538166075e-07,-4.402808056234992892e-07,-4.487477441931819709e-07,-4.572146827628646525e-07,-4.656816213325473342e-07,-4.741485599022300159e-07,-4.826154984719126976e-07,-4.910824370415954323e-07,-4.995493756112781669e-07,-5.080163141809609015e-07,-5.164832527506436362e-07,-5.249501913203263708e-07,-5.334171298900091054e-07 +0.000000000000000000e+00,-6.715394397246749251e-09,-1.343078879449349850e-08,-2.014618319174024693e-08,-2.686157758898699370e-08,-3.357697198623374378e-08,-4.029236638348049385e-08,-4.700776078072724393e-08,-5.372315517797399401e-08,-6.043854957522074409e-08,-6.715394397246748755e-08,-7.386933836971423101e-08,-8.058473276696097447e-08,-8.730012716420771793e-08,-9.401552156145446139e-08,-1.007309159587012049e-07,-1.074463103559479483e-07,-1.141617047531946918e-07,-1.208770991504414352e-07,-1.275924935476881787e-07,-1.343078879449349222e-07,-1.410232823421816656e-07,-1.477386767394284091e-07,-1.544540711366751525e-07,-1.611694655339218960e-07,-1.678848599311686395e-07,-1.746002543284153829e-07,-1.813156487256621264e-07,-1.880310431229088699e-07,-1.947464375201556133e-07,-2.014618319174023568e-07,-2.081772263146491002e-07,-2.148926207118958437e-07,-2.216080151091425872e-07,-2.283234095063893306e-07,-2.350388039036360741e-07,-2.417541983008828175e-07,-2.484695926981295875e-07,-2.551849870953763574e-07,-2.619003814926231273e-07,-2.686157758898698973e-07,-2.753311702871166672e-07,-2.820465646843634371e-07,-2.887619590816102071e-07,-2.954773534788569770e-07,-3.021927478761037469e-07,-3.089081422733505168e-07,-3.156235366705972868e-07,-3.223389310678440567e-07,-3.290543254650908266e-07,-3.357697198623375966e-07,-3.424851142595843665e-07,-3.492005086568311364e-07,-3.559159030540779064e-07,-3.626312974513246763e-07,-3.693466918485714462e-07,-3.760620862458182162e-07,-3.827774806430649861e-07,-3.894928750403117560e-07,-3.962082694375585259e-07,-4.029236638348052959e-07,-4.096390582320520658e-07,-4.163544526292988357e-07,-4.230698470265456057e-07 +0.000000000000000000e+00,-6.607181854603403312e-09,-1.321436370920680662e-08,-1.982154556381021076e-08,-2.642872741841361656e-08,-3.303590927301702235e-08,-3.964309112762042815e-08,-4.625027298222383394e-08,-5.285745483682723973e-08,-5.946463669143064553e-08,-6.607181854603405794e-08,-7.267900040063746373e-08,-7.928618225524086953e-08,-8.589336410984427532e-08,-9.250054596444768111e-08,-9.910772781905108691e-08,-1.057149096736544927e-07,-1.123220915282578985e-07,-1.189292733828613043e-07,-1.255364552374647101e-07,-1.321436370920681159e-07,-1.387508189466715217e-07,-1.453580008012749275e-07,-1.519651826558783333e-07,-1.585723645104817391e-07,-1.651795463650851448e-07,-1.717867282196885506e-07,-1.783939100742919564e-07,-1.850010919288953622e-07,-1.916082737834987680e-07,-1.982154556381021738e-07,-2.048226374927055796e-07,-2.114298193473089854e-07,-2.180370012019123912e-07,-2.246441830565157970e-07,-2.312513649111192028e-07,-2.378585467657226086e-07,-2.444657286203259879e-07,-2.510729104749293672e-07,-2.576800923295327466e-07,-2.642872741841361259e-07,-2.708944560387395052e-07,-2.775016378933428845e-07,-2.841088197479462638e-07,-2.907160016025496432e-07,-2.973231834571530225e-07,-3.039303653117564018e-07,-3.105375471663597811e-07,-3.171447290209631605e-07,-3.237519108755665398e-07,-3.303590927301699191e-07,-3.369662745847732984e-07,-3.435734564393766778e-07,-3.501806382939800571e-07,-3.567878201485834364e-07,-3.633950020031868157e-07,-3.700021838577901951e-07,-3.766093657123935744e-07,-3.832165475669969537e-07,-3.898237294216003330e-07,-3.964309112762037124e-07,-4.030380931308070917e-07,-4.096452749854104710e-07,-4.162524568400138503e-07 +0.000000000000000000e+00,-8.466938569681296992e-09,-1.693387713936259398e-08,-2.540081570904388932e-08,-3.386775427872518135e-08,-4.233469284840647338e-08,-5.080163141808776541e-08,-5.926856998776905743e-08,-6.773550855745034946e-08,-7.620244712713164149e-08,-8.466938569681293352e-08,-9.313632426649422555e-08,-1.016032628361755176e-07,-1.100702014058568096e-07,-1.185371399755381016e-07,-1.270040785452193937e-07,-1.354710171149006725e-07,-1.439379556845819513e-07,-1.524048942542632300e-07,-1.608718328239445088e-07,-1.693387713936257876e-07,-1.778057099633070664e-07,-1.862726485329883452e-07,-1.947395871026696240e-07,-2.032065256723509028e-07,-2.116734642420321816e-07,-2.201404028117134604e-07,-2.286073413813947392e-07,-2.370742799510760180e-07,-2.455412185207572703e-07,-2.540081570904385226e-07,-2.624750956601197750e-07,-2.709420342298010273e-07,-2.794089727994822796e-07,-2.878759113691635319e-07,-2.963428499388447842e-07,-3.048097885085260366e-07,-3.132767270782072889e-07,-3.217436656478885412e-07,-3.302106042175697935e-07,-3.386775427872510459e-07,-3.471444813569322982e-07,-3.556114199266135505e-07,-3.640783584962948028e-07,-3.725452970659760552e-07,-3.810122356356573075e-07,-3.894791742053385598e-07,-3.979461127750198121e-07,-4.064130513447010645e-07,-4.148799899143823168e-07,-4.233469284840635691e-07,-4.318138670537448214e-07,-4.402808056234260738e-07,-4.487477441931073261e-07,-4.572146827627885784e-07,-4.656816213324698307e-07,-4.741485599021510831e-07,-4.826154984718323354e-07,-4.910824370415135877e-07,-4.995493756111948400e-07,-5.080163141808760923e-07,-5.164832527505573447e-07,-5.249501913202385970e-07,-5.334171298899198493e-07 +0.000000000000000000e+00,-6.803800468273682997e-09,-1.360760093654736599e-08,-2.041140140482104899e-08,-2.721520187309473199e-08,-3.401900234136841499e-08,-4.082280280964209798e-08,-4.762660327791578098e-08,-5.443040374618946398e-08,-6.123420421446314697e-08,-6.803800468273682997e-08,-7.484180515101051297e-08,-8.164560561928419596e-08,-8.844940608755787896e-08,-9.525320655583156196e-08,-1.020570070241052450e-07,-1.088608074923789280e-07,-1.156646079606526109e-07,-1.224684084289262939e-07,-1.292722088971999637e-07,-1.360760093654736335e-07,-1.428798098337473032e-07,-1.496836103020209730e-07,-1.564874107702946428e-07,-1.632912112385683125e-07,-1.700950117068419823e-07,-1.768988121751156520e-07,-1.837026126433893218e-07,-1.905064131116629916e-07,-1.973102135799366613e-07,-2.041140140482103311e-07,-2.109178145164840009e-07,-2.177216149847576706e-07,-2.245254154530313404e-07,-2.313292159213050101e-07,-2.381330163895786799e-07,-2.449368168578523232e-07,-2.517406173261259665e-07,-2.585444177943996098e-07,-2.653482182626732531e-07,-2.721520187309468964e-07,-2.789558191992205397e-07,-2.857596196674941829e-07,-2.925634201357678262e-07,-2.993672206040414695e-07,-3.061710210723151128e-07,-3.129748215405887561e-07,-3.197786220088623994e-07,-3.265824224771360427e-07,-3.333862229454096860e-07,-3.401900234136833293e-07,-3.469938238819569726e-07,-3.537976243502306159e-07,-3.606014248185042592e-07,-3.674052252867779025e-07,-3.742090257550515457e-07,-3.810128262233251890e-07,-3.878166266915988323e-07,-3.946204271598724756e-07,-4.014242276281461189e-07,-4.082280280964197622e-07,-4.150318285646934055e-07,-4.218356290329670488e-07,-4.286394295012406921e-07 +0.000000000000000000e+00,-6.782639143396360121e-09,-1.356527828679272024e-08,-2.034791743018907954e-08,-2.713055657358543718e-08,-3.391319571698179812e-08,-4.069583486037815907e-08,-4.747847400377452002e-08,-5.426111314717088097e-08,-6.104375229056724192e-08,-6.782639143396359625e-08,-7.460903057735995058e-08,-8.139166972075630491e-08,-8.817430886415265924e-08,-9.495694800754901357e-08,-1.017395871509453679e-07,-1.085222262943417222e-07,-1.153048654377380766e-07,-1.220875045811344309e-07,-1.288701437245307852e-07,-1.356527828679271396e-07,-1.424354220113234939e-07,-1.492180611547198482e-07,-1.560007002981162025e-07,-1.627833394415125569e-07,-1.695659785849089112e-07,-1.763486177283052655e-07,-1.831312568717016199e-07,-1.899138960150979742e-07,-1.966965351584943285e-07,-2.034791743018906829e-07,-2.102618134452870372e-07,-2.170444525886833915e-07,-2.238270917320797459e-07,-2.306097308754761002e-07,-2.373923700188724545e-07,-2.441750091622688088e-07,-2.509576483056651896e-07,-2.577402874490615704e-07,-2.645229265924579512e-07,-2.713055657358543321e-07,-2.780882048792507129e-07,-2.848708440226470937e-07,-2.916534831660434745e-07,-2.984361223094398553e-07,-3.052187614528362361e-07,-3.120014005962326169e-07,-3.187840397396289977e-07,-3.255666788830253785e-07,-3.323493180264217593e-07,-3.391319571698181401e-07,-3.459145963132145209e-07,-3.526972354566109017e-07,-3.594798746000072825e-07,-3.662625137434036633e-07,-3.730451528868000441e-07,-3.798277920301964249e-07,-3.866104311735928057e-07,-3.933930703169891865e-07,-4.001757094603855673e-07,-4.069583486037819481e-07,-4.137409877471783289e-07,-4.205236268905747097e-07,-4.273062660339710905e-07 +0.000000000000000000e+00,-8.673111800870707065e-09,-1.734622360174141413e-08,-2.601933540261212120e-08,-3.469244720348282826e-08,-4.336555900435353202e-08,-5.203867080522423577e-08,-6.071178260609493953e-08,-6.938489440696564329e-08,-7.805800620783634704e-08,-8.673111800870705080e-08,-9.540422980957775455e-08,-1.040773416104484583e-07,-1.127504534113191621e-07,-1.214235652121898526e-07,-1.300966770130605563e-07,-1.387697888139312601e-07,-1.474429006148019639e-07,-1.561160124156726676e-07,-1.647891242165433714e-07,-1.734622360174140751e-07,-1.821353478182847789e-07,-1.908084596191554826e-07,-1.994815714200261864e-07,-2.081546832208968902e-07,-2.168277950217675939e-07,-2.255009068226382977e-07,-2.341740186235090014e-07,-2.428471304243797052e-07,-2.515202422252504089e-07,-2.601933540261211127e-07,-2.688664658269918164e-07,-2.775395776278625202e-07,-2.862126894287332240e-07,-2.948858012296039277e-07,-3.035589130304746315e-07,-3.122320248313453352e-07,-3.209051366322160390e-07,-3.295782484330867427e-07,-3.382513602339574465e-07,-3.469244720348281503e-07,-3.555975838356988540e-07,-3.642706956365695578e-07,-3.729438074374402615e-07,-3.816169192383109653e-07,-3.902900310391816690e-07,-3.989631428400523728e-07,-4.076362546409230765e-07,-4.163093664417937803e-07,-4.249824782426644841e-07,-4.336555900435351878e-07,-4.423287018444058916e-07,-4.510018136452765953e-07,-4.596749254461472991e-07,-4.683480372470180028e-07,-4.770211490478887066e-07,-4.856942608487594104e-07,-4.943673726496301141e-07,-5.030404844505008179e-07,-5.117135962513715216e-07,-5.203867080522422254e-07,-5.290598198531129291e-07,-5.377329316539836329e-07,-5.464060434548543366e-07 +0.000000000000000000e+00,-6.803800468272811976e-09,-1.360760093654562395e-08,-2.041140140481843510e-08,-2.721520187309124459e-08,-3.401900234136405409e-08,-4.082280280963686358e-08,-4.762660327790967308e-08,-5.443040374618248257e-08,-6.123420421445529868e-08,-6.803800468272812141e-08,-7.484180515100094414e-08,-8.164560561927376687e-08,-8.844940608754658960e-08,-9.525320655581941233e-08,-1.020570070240922351e-07,-1.088608074923650578e-07,-1.156646079606378805e-07,-1.224684084289107032e-07,-1.292722088971835260e-07,-1.360760093654563487e-07,-1.428798098337291714e-07,-1.496836103020019942e-07,-1.564874107702748169e-07,-1.632912112385476396e-07,-1.700950117068204624e-07,-1.768988121750932851e-07,-1.837026126433661078e-07,-1.905064131116389305e-07,-1.973102135799117533e-07,-2.041140140481845760e-07,-2.109178145164573987e-07,-2.177216149847302215e-07,-2.245254154530030442e-07,-2.313292159212758669e-07,-2.381330163895486896e-07,-2.449368168578215124e-07,-2.517406173260943616e-07,-2.585444177943672108e-07,-2.653482182626400600e-07,-2.721520187309129092e-07,-2.789558191991857584e-07,-2.857596196674586076e-07,-2.925634201357314568e-07,-2.993672206040043060e-07,-3.061710210722771552e-07,-3.129748215405500044e-07,-3.197786220088228536e-07,-3.265824224770957028e-07,-3.333862229453685520e-07,-3.401900234136414012e-07,-3.469938238819142504e-07,-3.537976243501870996e-07,-3.606014248184599488e-07,-3.674052252867327980e-07,-3.742090257550056472e-07,-3.810128262232784964e-07,-3.878166266915513455e-07,-3.946204271598241947e-07,-4.014242276280970439e-07,-4.082280280963698931e-07,-4.150318285646427423e-07,-4.218356290329155915e-07,-4.286394295011884407e-07 +0.000000000000000000e+00,-6.782639143394908419e-09,-1.356527828678981684e-08,-2.034791743018472526e-08,-2.713055657357963368e-08,-3.391319571697454540e-08,-4.069583486036945713e-08,-4.747847400376436886e-08,-5.426111314715928059e-08,-6.104375229055419232e-08,-6.782639143394910404e-08,-7.460903057734401577e-08,-8.139166972073892750e-08,-8.817430886413383923e-08,-9.495694800752875095e-08,-1.017395871509236627e-07,-1.085222262943185744e-07,-1.153048654377134861e-07,-1.220875045811083846e-07,-1.288701437245032831e-07,-1.356527828678981816e-07,-1.424354220112930801e-07,-1.492180611546879786e-07,-1.560007002980828771e-07,-1.627833394414777756e-07,-1.695659785848726741e-07,-1.763486177282675726e-07,-1.831312568716624711e-07,-1.899138960150573696e-07,-1.966965351584522681e-07,-2.034791743018471665e-07,-2.102618134452420650e-07,-2.170444525886369635e-07,-2.238270917320318620e-07,-2.306097308754267605e-07,-2.373923700188216590e-07,-2.441750091622165575e-07,-2.509576483056114560e-07,-2.577402874490063545e-07,-2.645229265924012530e-07,-2.713055657357961515e-07,-2.780882048791910500e-07,-2.848708440225859485e-07,-2.916534831659808470e-07,-2.984361223093757454e-07,-3.052187614527706439e-07,-3.120014005961655424e-07,-3.187840397395604409e-07,-3.255666788829553394e-07,-3.323493180263502379e-07,-3.391319571697451364e-07,-3.459145963131400349e-07,-3.526972354565349334e-07,-3.594798745999298319e-07,-3.662625137433247304e-07,-3.730451528867196289e-07,-3.798277920301145274e-07,-3.866104311735094259e-07,-3.933930703169043243e-07,-4.001757094602992228e-07,-4.069583486036941213e-07,-4.137409877470890198e-07,-4.205236268904839183e-07,-4.273062660338788168e-07 +0.000000000000000000e+00,-8.673111800869922898e-09,-1.734622360173984580e-08,-2.601933540260976869e-08,-3.469244720347969159e-08,-4.336555900434961449e-08,-5.203867080521953739e-08,-6.071178260608946028e-08,-6.938489440695938318e-08,-7.805800620782930608e-08,-8.673111800869922898e-08,-9.540422980956915188e-08,-1.040773416104390748e-07,-1.127504534113089977e-07,-1.214235652121789206e-07,-1.300966770130488567e-07,-1.387697888139187928e-07,-1.474429006147887290e-07,-1.561160124156586651e-07,-1.647891242165286012e-07,-1.734622360173985374e-07,-1.821353478182684735e-07,-1.908084596191384096e-07,-1.994815714200083458e-07,-2.081546832208782819e-07,-2.168277950217482180e-07,-2.255009068226181542e-07,-2.341740186234880903e-07,-2.428471304243580000e-07,-2.515202422252279096e-07,-2.601933540260978193e-07,-2.688664658269677289e-07,-2.775395776278376386e-07,-2.862126894287075483e-07,-2.948858012295774579e-07,-3.035589130304473676e-07,-3.122320248313172773e-07,-3.209051366321871869e-07,-3.295782484330570966e-07,-3.382513602339270062e-07,-3.469244720347969159e-07,-3.555975838356668256e-07,-3.642706956365367352e-07,-3.729438074374066449e-07,-3.816169192382765546e-07,-3.902900310391464642e-07,-3.989631428400163739e-07,-4.076362546408862836e-07,-4.163093664417561932e-07,-4.249824782426261029e-07,-4.336555900434960125e-07,-4.423287018443659222e-07,-4.510018136452358319e-07,-4.596749254461057415e-07,-4.683480372469756512e-07,-4.770211490478455079e-07,-4.856942608487153646e-07,-4.943673726495852214e-07,-5.030404844504550781e-07,-5.117135962513249348e-07,-5.203867080521947915e-07,-5.290598198530646483e-07,-5.377329316539345050e-07,-5.464060434548043617e-07 +0.000000000000000000e+00,-6.714679657353756115e-09,-1.342935931470751223e-08,-2.014403897206126752e-08,-2.685871862941502115e-08,-3.357339828676877478e-08,-4.028807794412252842e-08,-4.700275760147628205e-08,-5.371743725883003568e-08,-6.043211691618378270e-08,-6.714679657353753633e-08,-7.386147623089128997e-08,-8.057615588824504360e-08,-8.729083554559879723e-08,-9.400551520295255087e-08,-1.007201948603063045e-07,-1.074348745176600581e-07,-1.141495541750138118e-07,-1.208642338323675654e-07,-1.275789134897213190e-07,-1.342935931470750727e-07,-1.410082728044288263e-07,-1.477229524617825799e-07,-1.544376321191363336e-07,-1.611523117764900872e-07,-1.678669914338438408e-07,-1.745816710911975945e-07,-1.812963507485513481e-07,-1.880110304059051017e-07,-1.947257100632588554e-07,-2.014403897206126090e-07,-2.081550693779663626e-07,-2.148697490353201163e-07,-2.215844286926738699e-07,-2.282991083500276235e-07,-2.350137880073813772e-07,-2.417284676647351308e-07,-2.484431473220888844e-07,-2.551578269794426381e-07,-2.618725066367963917e-07,-2.685871862941501453e-07,-2.753018659515038990e-07,-2.820165456088576526e-07,-2.887312252662114062e-07,-2.954459049235651599e-07,-3.021605845809189135e-07,-3.088752642382726671e-07,-3.155899438956264208e-07,-3.223046235529801744e-07,-3.290193032103339280e-07,-3.357339828676876817e-07,-3.424486625250414353e-07,-3.491633421823951889e-07,-3.558780218397489426e-07,-3.625927014971026962e-07,-3.693073811544564498e-07,-3.760220608118102035e-07,-3.827367404691639571e-07,-3.894514201265177107e-07,-3.961660997838714644e-07,-4.028807794412252180e-07,-4.095954590985789716e-07,-4.163101387559327253e-07,-4.230248184132864789e-07 +0.000000000000000000e+00,-6.784380187528629500e-09,-1.356876037505725900e-08,-2.035314056258588850e-08,-2.713752075011451800e-08,-3.392190093764314419e-08,-4.070628112517177038e-08,-4.749066131270039658e-08,-5.427504150022902277e-08,-6.105942168775764896e-08,-6.784380187528627515e-08,-7.462818206281490134e-08,-8.141256225034352753e-08,-8.819694243787215372e-08,-9.498132262540077992e-08,-1.017657028129294061e-07,-1.085500830004580323e-07,-1.153344631879866585e-07,-1.221188433755152979e-07,-1.289032235630439373e-07,-1.356876037505725768e-07,-1.424719839381012162e-07,-1.492563641256298556e-07,-1.560407443131584950e-07,-1.628251245006871345e-07,-1.696095046882157739e-07,-1.763938848757444133e-07,-1.831782650632730528e-07,-1.899626452508016922e-07,-1.967470254383303316e-07,-2.035314056258589710e-07,-2.103157858133876105e-07,-2.171001660009162499e-07,-2.238845461884448893e-07,-2.306689263759735287e-07,-2.374533065635021682e-07,-2.442376867510308076e-07,-2.510220669385594205e-07,-2.578064471260880335e-07,-2.645908273136166465e-07,-2.713752075011452594e-07,-2.781595876886738724e-07,-2.849439678762024853e-07,-2.917283480637310983e-07,-2.985127282512597112e-07,-3.052971084387883242e-07,-3.120814886263169372e-07,-3.188658688138455501e-07,-3.256502490013741631e-07,-3.324346291889027760e-07,-3.392190093764313890e-07,-3.460033895639600019e-07,-3.527877697514886149e-07,-3.595721499390172279e-07,-3.663565301265458408e-07,-3.731409103140744538e-07,-3.799252905016030667e-07,-3.867096706891316797e-07,-3.934940508766602926e-07,-4.002784310641889056e-07,-4.070628112517175185e-07,-4.138471914392461315e-07,-4.206315716267747445e-07,-4.274159518143033574e-07 +0.000000000000000000e+00,-8.770260148515471687e-09,-1.754052029703094337e-08,-2.631078044554641671e-08,-3.508104059406189336e-08,-4.385130074257737001e-08,-5.262156089109284666e-08,-6.139182103960832993e-08,-7.016208118812381320e-08,-7.893234133663929647e-08,-8.770260148515477973e-08,-9.647286163367026300e-08,-1.052431217821857463e-07,-1.140133819307012295e-07,-1.227836420792167128e-07,-1.315539022277321961e-07,-1.403241623762476793e-07,-1.490944225247631626e-07,-1.578646826732786459e-07,-1.666349428217941291e-07,-1.754052029703096124e-07,-1.841754631188250957e-07,-1.929457232673405789e-07,-2.017159834158560622e-07,-2.104862435643715455e-07,-2.192565037128870287e-07,-2.280267638614025120e-07,-2.367970240099179953e-07,-2.455672841584334785e-07,-2.543375443069489353e-07,-2.631078044554643921e-07,-2.718780646039798489e-07,-2.806483247524953057e-07,-2.894185849010107625e-07,-2.981888450495262193e-07,-3.069591051980416761e-07,-3.157293653465571329e-07,-3.244996254950725897e-07,-3.332698856435880465e-07,-3.420401457921035033e-07,-3.508104059406189601e-07,-3.595806660891344169e-07,-3.683509262376498737e-07,-3.771211863861653305e-07,-3.858914465346807873e-07,-3.946617066831962441e-07,-4.034319668317117009e-07,-4.122022269802271577e-07,-4.209724871287426145e-07,-4.297427472772580713e-07,-4.385130074257735281e-07,-4.472832675742889849e-07,-4.560535277228044417e-07,-4.648237878713198985e-07,-4.735940480198353553e-07,-4.823643081683508121e-07,-4.911345683168662159e-07,-4.999048284653816198e-07,-5.086750886138970236e-07,-5.174453487624124275e-07,-5.262156089109278314e-07,-5.349858690594432352e-07,-5.437561292079586391e-07,-5.525263893564740429e-07 +0.000000000000000000e+00,-6.714679657353431860e-09,-1.342935931470686372e-08,-2.014403897206029475e-08,-2.685871862941372413e-08,-3.357339828676715351e-08,-4.028807794412058289e-08,-4.700275760147401227e-08,-5.371743725882744164e-08,-6.043211691618087102e-08,-6.714679657353430702e-08,-7.386147623088774302e-08,-8.057615588824117901e-08,-8.729083554559461501e-08,-9.400551520294805100e-08,-1.007201948603014870e-07,-1.074348745176549230e-07,-1.141495541750083590e-07,-1.208642338323617950e-07,-1.275789134897152310e-07,-1.342935931470686670e-07,-1.410082728044221030e-07,-1.477229524617755390e-07,-1.544376321191289750e-07,-1.611523117764824110e-07,-1.678669914338358470e-07,-1.745816710911892830e-07,-1.812963507485427189e-07,-1.880110304058961549e-07,-1.947257100632495909e-07,-2.014403897206030269e-07,-2.081550693779564629e-07,-2.148697490353098989e-07,-2.215844286926633349e-07,-2.282991083500167709e-07,-2.350137880073702069e-07,-2.417284676647236429e-07,-2.484431473220770789e-07,-2.551578269794305149e-07,-2.618725066367839509e-07,-2.685871862941373869e-07,-2.753018659514908229e-07,-2.820165456088442589e-07,-2.887312252661976949e-07,-2.954459049235511309e-07,-3.021605845809045669e-07,-3.088752642382580029e-07,-3.155899438956114389e-07,-3.223046235529648749e-07,-3.290193032103183109e-07,-3.357339828676717469e-07,-3.424486625250251829e-07,-3.491633421823786188e-07,-3.558780218397320548e-07,-3.625927014970854908e-07,-3.693073811544389268e-07,-3.760220608117923628e-07,-3.827367404691457988e-07,-3.894514201264992348e-07,-3.961660997838526708e-07,-4.028807794412061068e-07,-4.095954590985595428e-07,-4.163101387559129788e-07,-4.230248184132664148e-07 +0.000000000000000000e+00,-6.784380187528027313e-09,-1.356876037505605463e-08,-2.035314056258408194e-08,-2.713752075011210925e-08,-3.392190093764013987e-08,-4.070628112516817049e-08,-4.749066131269620111e-08,-5.427504150022423174e-08,-6.105942168775226236e-08,-6.784380187528029298e-08,-7.462818206280832360e-08,-8.141256225033635422e-08,-8.819694243786438484e-08,-9.498132262539241546e-08,-1.017657028129204461e-07,-1.085500830004484767e-07,-1.153344631879765073e-07,-1.221188433755045512e-07,-1.289032235630325818e-07,-1.356876037505606124e-07,-1.424719839380886430e-07,-1.492563641256166737e-07,-1.560407443131447043e-07,-1.628251245006727349e-07,-1.696095046882007655e-07,-1.763938848757287962e-07,-1.831782650632568268e-07,-1.899626452507848574e-07,-1.967470254383128880e-07,-2.035314056258409186e-07,-2.103157858133689493e-07,-2.171001660008969799e-07,-2.238845461884250105e-07,-2.306689263759530411e-07,-2.374533065634810717e-07,-2.442376867510091024e-07,-2.510220669385371330e-07,-2.578064471260651636e-07,-2.645908273135931942e-07,-2.713752075011212249e-07,-2.781595876886492555e-07,-2.849439678761772861e-07,-2.917283480637053167e-07,-2.985127282512333473e-07,-3.052971084387613780e-07,-3.120814886262894086e-07,-3.188658688138174392e-07,-3.256502490013454698e-07,-3.324346291888735004e-07,-3.392190093764015311e-07,-3.460033895639295617e-07,-3.527877697514575923e-07,-3.595721499389856229e-07,-3.663565301265136536e-07,-3.731409103140416842e-07,-3.799252905015697148e-07,-3.867096706890977454e-07,-3.934940508766257760e-07,-4.002784310641538067e-07,-4.070628112516818373e-07,-4.138471914392098679e-07,-4.206315716267378985e-07,-4.274159518142659291e-07 +0.000000000000000000e+00,-8.770260148514846338e-09,-1.754052029702969268e-08,-2.631078044554453736e-08,-3.508104059405937873e-08,-4.385130074257422011e-08,-5.262156089108906149e-08,-6.139182103960390948e-08,-7.016208118811875747e-08,-7.893234133663360546e-08,-8.770260148514845345e-08,-9.647286163366330145e-08,-1.052431217821781494e-07,-1.140133819306929974e-07,-1.227836420792078454e-07,-1.315539022277226934e-07,-1.403241623762375414e-07,-1.490944225247523894e-07,-1.578646826732672374e-07,-1.666349428217820854e-07,-1.754052029702969334e-07,-1.841754631188117814e-07,-1.929457232673266294e-07,-2.017159834158414774e-07,-2.104862435643563253e-07,-2.192565037128711733e-07,-2.280267638613860213e-07,-2.367970240099008693e-07,-2.455672841584157438e-07,-2.543375443069306183e-07,-2.631078044554454927e-07,-2.718780646039603672e-07,-2.806483247524752416e-07,-2.894185849009901161e-07,-2.981888450495049906e-07,-3.069591051980198650e-07,-3.157293653465347395e-07,-3.244996254950496139e-07,-3.332698856435644884e-07,-3.420401457920793629e-07,-3.508104059405942373e-07,-3.595806660891091118e-07,-3.683509262376239863e-07,-3.771211863861388607e-07,-3.858914465346537352e-07,-3.946617066831686096e-07,-4.034319668316834841e-07,-4.122022269801983586e-07,-4.209724871287132330e-07,-4.297427472772281075e-07,-4.385130074257429820e-07,-4.472832675742578564e-07,-4.560535277227727309e-07,-4.648237878712876053e-07,-4.735940480198024798e-07,-4.823643081683173543e-07,-4.911345683168322287e-07,-4.999048284653471032e-07,-5.086750886138619777e-07,-5.174453487623768521e-07,-5.262156089108917266e-07,-5.349858690594066010e-07,-5.437561292079214755e-07,-5.525263893564363500e-07 +0.000000000000000000e+00,-2.414484179842274161e-09,-4.828968359684548322e-09,-7.243452539526822484e-09,-9.657936719369096645e-09,-1.207242089921136998e-08,-1.448690507905364331e-08,-1.690138925889591665e-08,-1.931587343873818998e-08,-2.173035761858046332e-08,-2.414484179842273665e-08,-2.655932597826500998e-08,-2.897381015810728332e-08,-3.138829433794955996e-08,-3.380277851779183991e-08,-3.621726269763411986e-08,-3.863174687747639981e-08,-4.104623105731867977e-08,-4.346071523716095972e-08,-4.587519941700323967e-08,-4.828968359684551962e-08,-5.070416777668779957e-08,-5.311865195653007952e-08,-5.553313613637235948e-08,-5.794762031621463943e-08,-6.036210449605691938e-08,-6.277658867589919933e-08,-6.519107285574147928e-08,-6.760555703558375923e-08,-7.002004121542603918e-08,-7.243452539526831914e-08,-7.484900957511059909e-08,-7.726349375495287904e-08,-7.967797793479515899e-08,-8.209246211463743894e-08,-8.450694629447971889e-08,-8.692143047432199884e-08,-8.933591465416427880e-08,-9.175039883400655875e-08,-9.416488301384883870e-08,-9.657936719369111865e-08,-9.899385137353339860e-08,-1.014083355533756786e-07,-1.038228197332179585e-07,-1.062373039130602385e-07,-1.086517880929025184e-07,-1.110662722727447984e-07,-1.134807564525870783e-07,-1.158952406324293583e-07,-1.183097248122716382e-07,-1.207242089921139182e-07,-1.231386931719562114e-07,-1.255531773517985045e-07,-1.279676615316407977e-07,-1.303821457114830909e-07,-1.327966298913253841e-07,-1.352111140711676773e-07,-1.376255982510099705e-07,-1.400400824308522637e-07,-1.424545666106945568e-07,-1.448690507905368500e-07,-1.472835349703791432e-07,-1.496980191502214364e-07,-1.521125033300637296e-07 +0.000000000000000000e+00,-5.756729679327774360e-09,-1.151345935865554872e-08,-1.727018903798332225e-08,-2.302691871731109413e-08,-2.878364839663886601e-08,-3.454037807596663789e-08,-4.029710775529440646e-08,-4.605383743462217503e-08,-5.181056711394994360e-08,-5.756729679327771217e-08,-6.332402647260548074e-08,-6.908075615193324931e-08,-7.483748583126101788e-08,-8.059421551058878645e-08,-8.635094518991655502e-08,-9.210767486924432359e-08,-9.786440454857209216e-08,-1.036211342278998607e-07,-1.093778639072276293e-07,-1.151345935865553979e-07,-1.208913232658831664e-07,-1.266480529452109350e-07,-1.324047826245387036e-07,-1.381615123038664722e-07,-1.439182419831942407e-07,-1.496749716625220093e-07,-1.554317013418497779e-07,-1.611884310211775464e-07,-1.669451607005053150e-07,-1.727018903798330836e-07,-1.784586200591608521e-07,-1.842153497384886207e-07,-1.899720794178163893e-07,-1.957288090971441579e-07,-2.014855387764719264e-07,-2.072422684557996950e-07,-2.129989981351274636e-07,-2.187557278144552321e-07,-2.245124574937830007e-07,-2.302691871731107693e-07,-2.360259168524385378e-07,-2.417826465317663329e-07,-2.475393762110941279e-07,-2.532961058904219230e-07,-2.590528355697497180e-07,-2.648095652490775130e-07,-2.705662949284053081e-07,-2.763230246077331031e-07,-2.820797542870608982e-07,-2.878364839663886932e-07,-2.935932136457164882e-07,-2.993499433250442833e-07,-3.051066730043720783e-07,-3.108634026836998734e-07,-3.166201323630276684e-07,-3.223768620423554634e-07,-3.281335917216832585e-07,-3.338903214010110535e-07,-3.396470510803388486e-07,-3.454037807596666436e-07,-3.511605104389944386e-07,-3.569172401183222337e-07,-3.626739697976500287e-07 +0.000000000000000000e+00,-5.935467635281069653e-09,-1.187093527056213931e-08,-1.780640290584320896e-08,-2.374187054112427861e-08,-2.967733817640534827e-08,-3.561280581168641792e-08,-4.154827344696748757e-08,-4.748374108224855723e-08,-5.341920871752962688e-08,-5.935467635281069653e-08,-6.529014398809176619e-08,-7.122561162337283584e-08,-7.716107925865390549e-08,-8.309654689393497515e-08,-8.903201452921604480e-08,-9.496748216449711445e-08,-1.009029497997781841e-07,-1.068384174350592538e-07,-1.127738850703403234e-07,-1.187093527056213931e-07,-1.246448203409024627e-07,-1.305802879761835324e-07,-1.365157556114646020e-07,-1.424512232467456717e-07,-1.483866908820267413e-07,-1.543221585173078110e-07,-1.602576261525888806e-07,-1.661930937878699503e-07,-1.721285614231510199e-07,-1.780640290584320896e-07,-1.839994966937131593e-07,-1.899349643289942289e-07,-1.958704319642752986e-07,-2.018058995995563682e-07,-2.077413672348374379e-07,-2.136768348701185075e-07,-2.196123025053995772e-07,-2.255477701406806468e-07,-2.314832377759617165e-07,-2.374187054112427861e-07,-2.433541730465238823e-07,-2.492896406818049784e-07,-2.552251083170860745e-07,-2.611605759523671706e-07,-2.670960435876482667e-07,-2.730315112229293629e-07,-2.789669788582104590e-07,-2.849024464934915551e-07,-2.908379141287726512e-07,-2.967733817640537474e-07,-3.027088493993348435e-07,-3.086443170346159396e-07,-3.145797846698970357e-07,-3.205152523051781319e-07,-3.264507199404592280e-07,-3.323861875757403241e-07,-3.383216552110214202e-07,-3.442571228463025163e-07,-3.501925904815836125e-07,-3.561280581168647086e-07,-3.620635257521458047e-07,-3.679989933874269008e-07,-3.739344610227079970e-07 +0.000000000000000000e+00,-3.296671962260055538e-09,-6.593343924520111076e-09,-9.890015886780166201e-09,-1.318668784904022050e-08,-1.648335981130027480e-08,-1.978003177356032909e-08,-2.307670373582038339e-08,-2.637337569808043769e-08,-2.967004766034049199e-08,-3.296671962260054959e-08,-3.626339158486060720e-08,-3.956006354712066480e-08,-4.285673550938072241e-08,-4.615340747164078002e-08,-4.945007943390083762e-08,-5.274675139616089523e-08,-5.604342335842095284e-08,-5.934009532068101044e-08,-6.263676728294106805e-08,-6.593343924520112565e-08,-6.923011120746118326e-08,-7.252678316972124087e-08,-7.582345513198129847e-08,-7.912012709424135608e-08,-8.241679905650141369e-08,-8.571347101876147129e-08,-8.901014298102152890e-08,-9.230681494328158650e-08,-9.560348690554164411e-08,-9.890015886780170172e-08,-1.021968308300617593e-07,-1.054935027923218169e-07,-1.087901747545818745e-07,-1.120868467168419321e-07,-1.153835186791019897e-07,-1.186801906413620474e-07,-1.219768626036221050e-07,-1.252735345658821626e-07,-1.285702065281422202e-07,-1.318668784904022778e-07,-1.351635504526623354e-07,-1.384602224149223930e-07,-1.417568943771824506e-07,-1.450535663394425082e-07,-1.483502383017025658e-07,-1.516469102639626234e-07,-1.549435822262226810e-07,-1.582402541884827386e-07,-1.615369261507427962e-07,-1.648335981130028538e-07,-1.681302700752629114e-07,-1.714269420375229691e-07,-1.747236139997830267e-07,-1.780202859620430843e-07,-1.813169579243031419e-07,-1.846136298865631995e-07,-1.879103018488232571e-07,-1.912069738110833147e-07,-1.945036457733433723e-07,-1.978003177356034299e-07,-2.010969896978634875e-07,-2.043936616601235451e-07,-2.076903336223836027e-07 +0.000000000000000000e+00,-7.118084007220057479e-09,-1.423616801444011496e-08,-2.135425202166017244e-08,-2.847233602888022992e-08,-3.559042003610028409e-08,-4.270850404332033826e-08,-4.982658805054039243e-08,-5.694467205776044660e-08,-6.406275606498050077e-08,-7.118084007220055494e-08,-7.829892407942060911e-08,-8.541700808664066328e-08,-9.253509209386071745e-08,-9.965317610108077162e-08,-1.067712601083008258e-07,-1.138893441155208800e-07,-1.210074281227409341e-07,-1.281255121299610015e-07,-1.352435961371810689e-07,-1.423616801444011363e-07,-1.494797641516212038e-07,-1.565978481588412712e-07,-1.637159321660613386e-07,-1.708340161732814060e-07,-1.779521001805014734e-07,-1.850701841877215408e-07,-1.921882681949416082e-07,-1.993063522021616756e-07,-2.064244362093817430e-07,-2.135425202166018104e-07,-2.206606042238218778e-07,-2.277786882310419452e-07,-2.348967722382620126e-07,-2.420148562454820800e-07,-2.491329402527021474e-07,-2.562510242599222148e-07,-2.633691082671422822e-07,-2.704871922743623496e-07,-2.776052762815824170e-07,-2.847233602888024845e-07,-2.918414442960225519e-07,-2.989595283032426193e-07,-3.060776123104626867e-07,-3.131956963176827541e-07,-3.203137803249028215e-07,-3.274318643321228889e-07,-3.345499483393429563e-07,-3.416680323465630237e-07,-3.487861163537830911e-07,-3.559042003610031585e-07,-3.630222843682232259e-07,-3.701403683754432933e-07,-3.772584523826633607e-07,-3.843765363898834281e-07,-3.914946203971034955e-07,-3.986127044043235629e-07,-4.057307884115436303e-07,-4.128488724187636977e-07,-4.199669564259837652e-07,-4.270850404332038326e-07,-4.342031244404239000e-07,-4.413212084476439674e-07,-4.484392924548640348e-07 +0.000000000000000000e+00,-3.420395230242305961e-09,-6.840790460484611922e-09,-1.026118569072691788e-08,-1.368158092096922384e-08,-1.710197615121152981e-08,-2.052237138145383577e-08,-2.394276661169614173e-08,-2.736316184193844769e-08,-3.078355707218075365e-08,-3.420395230242305961e-08,-3.762434753266536557e-08,-4.104474276290767153e-08,-4.446513799314997749e-08,-4.788553322339228346e-08,-5.130592845363458942e-08,-5.472632368387689538e-08,-5.814671891411920134e-08,-6.156711414436150730e-08,-6.498750937460380664e-08,-6.840790460484610599e-08,-7.182829983508840533e-08,-7.524869506533070467e-08,-7.866909029557300402e-08,-8.208948552581530336e-08,-8.550988075605760271e-08,-8.893027598629990205e-08,-9.235067121654220139e-08,-9.577106644678450074e-08,-9.919146167702680008e-08,-1.026118569072690994e-07,-1.060322521375113988e-07,-1.094526473677536981e-07,-1.128730425979959975e-07,-1.162934378282382968e-07,-1.197138330584805961e-07,-1.231342282887228823e-07,-1.265546235189651684e-07,-1.299750187492074545e-07,-1.333954139794497406e-07,-1.368158092096920267e-07,-1.402362044399343128e-07,-1.436565996701765989e-07,-1.470769949004188850e-07,-1.504973901306611711e-07,-1.539177853609034572e-07,-1.573381805911457433e-07,-1.607585758213880294e-07,-1.641789710516303156e-07,-1.675993662818726017e-07,-1.710197615121148878e-07,-1.744401567423571739e-07,-1.778605519725994600e-07,-1.812809472028417461e-07,-1.847013424330840322e-07,-1.881217376633263183e-07,-1.915421328935686044e-07,-1.949625281238108905e-07,-1.983829233540531766e-07,-2.018033185842954628e-07,-2.052237138145377489e-07,-2.086441090447800350e-07,-2.120645042750223211e-07,-2.154848995052646072e-07 +0.000000000000000000e+00,-5.894464220443990965e-09,-1.178892844088798193e-08,-1.768339266133197124e-08,-2.357785688177596055e-08,-2.947232110221994986e-08,-3.536678532266394248e-08,-4.126124954310793510e-08,-4.715571376355192772e-08,-5.305017798399592034e-08,-5.894464220443991296e-08,-6.483910642488390558e-08,-7.073357064532789820e-08,-7.662803486577189082e-08,-8.252249908621588343e-08,-8.841696330665987605e-08,-9.431142752710386867e-08,-1.002058917475478613e-07,-1.061003559679918539e-07,-1.119948201884358465e-07,-1.178892844088798392e-07,-1.237837486293238318e-07,-1.296782128497678112e-07,-1.355726770702117905e-07,-1.414671412906557699e-07,-1.473616055110997493e-07,-1.532560697315437287e-07,-1.591505339519877081e-07,-1.650449981724316875e-07,-1.709394623928756668e-07,-1.768339266133196462e-07,-1.827283908337636256e-07,-1.886228550542076050e-07,-1.945173192746515844e-07,-2.004117834950955638e-07,-2.063062477155395432e-07,-2.122007119359835225e-07,-2.180951761564275019e-07,-2.239896403768714813e-07,-2.298841045973154607e-07,-2.357785688177594401e-07,-2.416730330382034195e-07,-2.475674972586473988e-07,-2.534619614790913782e-07,-2.593564256995353576e-07,-2.652508899199793370e-07,-2.711453541404233164e-07,-2.770398183608672958e-07,-2.829342825813112751e-07,-2.888287468017552545e-07,-2.947232110221992339e-07,-3.006176752426432133e-07,-3.065121394630871927e-07,-3.124066036835311721e-07,-3.183010679039751515e-07,-3.241955321244191308e-07,-3.300899963448631102e-07,-3.359844605653070896e-07,-3.418789247857510690e-07,-3.477733890061950484e-07,-3.536678532266390278e-07,-3.595623174470830071e-07,-3.654567816675269865e-07,-3.713512458879709659e-07 +0.000000000000000000e+00,-7.304908992325573630e-09,-1.460981798465114726e-08,-2.191472697697672172e-08,-2.921963596930229783e-08,-3.652454496162787394e-08,-4.382945395395345005e-08,-5.113436294627902616e-08,-5.843927193860460227e-08,-6.574418093093018500e-08,-7.304908992325576111e-08,-8.035399891558133722e-08,-8.765890790790691333e-08,-9.496381690023248944e-08,-1.022687258925580656e-07,-1.095736348848836417e-07,-1.168785438772092178e-07,-1.241834528695347939e-07,-1.314883618618603700e-07,-1.387932708541859461e-07,-1.460981798465115222e-07,-1.534030888388370983e-07,-1.607079978311626744e-07,-1.680129068234882506e-07,-1.753178158158138267e-07,-1.826227248081394028e-07,-1.899276338004649789e-07,-1.972325427927905550e-07,-2.045374517851161311e-07,-2.118423607774417072e-07,-2.191472697697672833e-07,-2.264521787620928594e-07,-2.337570877544184356e-07,-2.410619967467440381e-07,-2.483669057390696407e-07,-2.556718147313952433e-07,-2.629767237237208459e-07,-2.702816327160464485e-07,-2.775865417083720510e-07,-2.848914507006976536e-07,-2.921963596930232562e-07,-2.995012686853488588e-07,-3.068061776776744614e-07,-3.141110866700000639e-07,-3.214159956623256665e-07,-3.287209046546512691e-07,-3.360258136469768717e-07,-3.433307226393024743e-07,-3.506356316316280768e-07,-3.579405406239536794e-07,-3.652454496162792820e-07,-3.725503586086048846e-07,-3.798552676009304872e-07,-3.871601765932560898e-07,-3.944650855855816923e-07,-4.017699945779072949e-07,-4.090749035702328975e-07,-4.163798125625585001e-07,-4.236847215548841027e-07,-4.309896305472097052e-07,-4.382945395395353078e-07,-4.455994485318609104e-07,-4.529043575241865130e-07,-4.602092665165121156e-07 +0.000000000000000000e+00,-2.414484179834587585e-09,-4.828968359669175171e-09,-7.243452539503763170e-09,-9.657936719338351996e-09,-1.207242089917294082e-08,-1.448690507900752965e-08,-1.690138925884212013e-08,-1.931587343867671061e-08,-2.173035761851130109e-08,-2.414484179834589157e-08,-2.655932597818048205e-08,-2.897381015801507253e-08,-3.138829433784966301e-08,-3.380277851768425349e-08,-3.621726269751884397e-08,-3.863174687735343445e-08,-4.104623105718802493e-08,-4.346071523702261541e-08,-4.587519941685720590e-08,-4.828968359669179638e-08,-5.070416777652638686e-08,-5.311865195636097734e-08,-5.553313613619556782e-08,-5.794762031603015830e-08,-6.036210449586474878e-08,-6.277658867569933926e-08,-6.519107285553392974e-08,-6.760555703536852022e-08,-7.002004121520311070e-08,-7.243452539503770118e-08,-7.484900957487229166e-08,-7.726349375470688214e-08,-7.967797793454147262e-08,-8.209246211437606310e-08,-8.450694629421065358e-08,-8.692143047404524406e-08,-8.933591465387983454e-08,-9.175039883371442503e-08,-9.416488301354901551e-08,-9.657936719338360599e-08,-9.899385137321819647e-08,-1.014083355530527869e-07,-1.038228197328873774e-07,-1.062373039127219679e-07,-1.086517880925565584e-07,-1.110662722723911489e-07,-1.134807564522257394e-07,-1.158952406320603298e-07,-1.183097248118949203e-07,-1.207242089917295240e-07,-1.231386931715641410e-07,-1.255531773513987579e-07,-1.279676615312333749e-07,-1.303821457110679918e-07,-1.327966298909026088e-07,-1.352111140707372257e-07,-1.376255982505718427e-07,-1.400400824304064596e-07,-1.424545666102410766e-07,-1.448690507900756935e-07,-1.472835349699103105e-07,-1.496980191497449274e-07,-1.521125033295795444e-07 +0.000000000000000000e+00,-5.756729679320373576e-09,-1.151345935864074715e-08,-1.727018903796112073e-08,-2.302691871728149430e-08,-2.878364839660186788e-08,-3.454037807592224145e-08,-4.029710775524261834e-08,-4.605383743456299522e-08,-5.181056711388337211e-08,-5.756729679320374899e-08,-6.332402647252412587e-08,-6.908075615184449614e-08,-7.483748583116486641e-08,-8.059421551048523667e-08,-8.635094518980560694e-08,-9.210767486912597721e-08,-9.786440454844634748e-08,-1.036211342277667177e-07,-1.093778639070870880e-07,-1.151345935864074583e-07,-1.208913232657278418e-07,-1.266480529450482253e-07,-1.324047826243686088e-07,-1.381615123036889923e-07,-1.439182419830093758e-07,-1.496749716623297593e-07,-1.554317013416501428e-07,-1.611884310209705263e-07,-1.669451607002909098e-07,-1.727018903796112933e-07,-1.784586200589316768e-07,-1.842153497382520603e-07,-1.899720794175724438e-07,-1.957288090968928273e-07,-2.014855387762132108e-07,-2.072422684555335943e-07,-2.129989981348539778e-07,-2.187557278141743613e-07,-2.245124574934947448e-07,-2.302691871728151283e-07,-2.360259168521355118e-07,-2.417826465314558953e-07,-2.475393762107762788e-07,-2.532961058900966623e-07,-2.590528355694170458e-07,-2.648095652487374293e-07,-2.705662949280578128e-07,-2.763230246073781963e-07,-2.820797542866985798e-07,-2.878364839660189633e-07,-2.935932136453393468e-07,-2.993499433246597303e-07,-3.051066730039801138e-07,-3.108634026833004973e-07,-3.166201323626208808e-07,-3.223768620419412643e-07,-3.281335917212616478e-07,-3.338903214005820313e-07,-3.396470510799024148e-07,-3.454037807592227983e-07,-3.511605104385431818e-07,-3.569172401178635653e-07,-3.626739697971839488e-07 +0.000000000000000000e+00,-5.894464220440242182e-09,-1.178892844088048436e-08,-1.768339266132072820e-08,-2.357785688176097204e-08,-2.947232110220121587e-08,-3.536678532264145640e-08,-4.126124954308169693e-08,-4.715571376352193746e-08,-5.305017798396217799e-08,-5.894464220440241851e-08,-6.483910642484266566e-08,-7.073357064528291281e-08,-7.662803486572315995e-08,-8.252249908616340710e-08,-8.841696330660365424e-08,-9.431142752704390139e-08,-1.002058917474841485e-07,-1.061003559679243957e-07,-1.119948201883646428e-07,-1.178892844088048900e-07,-1.237837486292451371e-07,-1.296782128496853843e-07,-1.355726770701256314e-07,-1.414671412905658786e-07,-1.473616055110061257e-07,-1.532560697314463728e-07,-1.591505339518866200e-07,-1.650449981723268671e-07,-1.709394623927671143e-07,-1.768339266132073614e-07,-1.827283908336476086e-07,-1.886228550540878557e-07,-1.945173192745281029e-07,-2.004117834949683500e-07,-2.063062477154085972e-07,-2.122007119358488443e-07,-2.180951761562890914e-07,-2.239896403767293386e-07,-2.298841045971695857e-07,-2.357785688176098329e-07,-2.416730330380500536e-07,-2.475674972584902742e-07,-2.534619614789304949e-07,-2.593564256993707156e-07,-2.652508899198109363e-07,-2.711453541402511569e-07,-2.770398183606913776e-07,-2.829342825811315983e-07,-2.888287468015718190e-07,-2.947232110220120396e-07,-3.006176752424522603e-07,-3.065121394628924810e-07,-3.124066036833327017e-07,-3.183010679037729223e-07,-3.241955321242131430e-07,-3.300899963446533637e-07,-3.359844605650935844e-07,-3.418789247855338050e-07,-3.477733890059740257e-07,-3.536678532264142464e-07,-3.595623174468544671e-07,-3.654567816672946877e-07,-3.713512458877349084e-07 +0.000000000000000000e+00,-3.296671962252535226e-09,-6.593343924505070451e-09,-9.890015886757605677e-09,-1.318668784901014090e-08,-1.648335981126267447e-08,-1.978003177351520805e-08,-2.307670373576774162e-08,-2.637337569802027519e-08,-2.967004766027280876e-08,-3.296671962252534233e-08,-3.626339158477787590e-08,-3.956006354703040947e-08,-4.285673550928294304e-08,-4.615340747153547662e-08,-4.945007943378801019e-08,-5.274675139604054376e-08,-5.604342335829307733e-08,-5.934009532054561090e-08,-6.263676728279814447e-08,-6.593343924505067143e-08,-6.923011120730319838e-08,-7.252678316955572533e-08,-7.582345513180825229e-08,-7.912012709406077924e-08,-8.241679905631330620e-08,-8.571347101856583315e-08,-8.901014298081836010e-08,-9.230681494307088706e-08,-9.560348690532341401e-08,-9.890015886757594097e-08,-1.021968308298284679e-07,-1.054935027920809949e-07,-1.087901747543335218e-07,-1.120868467165860488e-07,-1.153835186788385757e-07,-1.186801906410911027e-07,-1.219768626033436164e-07,-1.252735345655961301e-07,-1.285702065278486438e-07,-1.318668784901011576e-07,-1.351635504523536713e-07,-1.384602224146061850e-07,-1.417568943768586987e-07,-1.450535663391112124e-07,-1.483502383013637262e-07,-1.516469102636162399e-07,-1.549435822258687536e-07,-1.582402541881212673e-07,-1.615369261503737810e-07,-1.648335981126262948e-07,-1.681302700748788085e-07,-1.714269420371313222e-07,-1.747236139993838359e-07,-1.780202859616363496e-07,-1.813169579238888634e-07,-1.846136298861413771e-07,-1.879103018483938908e-07,-1.912069738106464045e-07,-1.945036457728989182e-07,-1.978003177351514319e-07,-2.010969896974039457e-07,-2.043936616596564594e-07,-2.076903336219089731e-07 +0.000000000000000000e+00,-7.118084007213912354e-09,-1.423616801442782471e-08,-2.135425202164173624e-08,-2.847233602885564611e-08,-3.559042003606955267e-08,-4.270850404328345924e-08,-4.982658805049736580e-08,-5.694467205771127236e-08,-6.406275606492517893e-08,-7.118084007213907888e-08,-7.829892407935297882e-08,-8.541700808656687877e-08,-9.253509209378077872e-08,-9.965317610099467866e-08,-1.067712601082085786e-07,-1.138893441154224786e-07,-1.210074281226363785e-07,-1.281255121298502784e-07,-1.352435961370641784e-07,-1.423616801442780783e-07,-1.494797641514919783e-07,-1.565978481587058782e-07,-1.637159321659197782e-07,-1.708340161731336781e-07,-1.779521001803475781e-07,-1.850701841875614780e-07,-1.921882681947753780e-07,-1.993063522019892779e-07,-2.064244362092031779e-07,-2.135425202164170778e-07,-2.206606042236309778e-07,-2.277786882308448777e-07,-2.348967722380587776e-07,-2.420148562452726511e-07,-2.491329402524865246e-07,-2.562510242597003981e-07,-2.633691082669142716e-07,-2.704871922741281450e-07,-2.776052762813420185e-07,-2.847233602885558920e-07,-2.918414442957697655e-07,-2.989595283029836389e-07,-3.060776123101975124e-07,-3.131956963174113859e-07,-3.203137803246252594e-07,-3.274318643318391328e-07,-3.345499483390530063e-07,-3.416680323462668798e-07,-3.487861163534807533e-07,-3.559042003606946268e-07,-3.630222843679085002e-07,-3.701403683751223737e-07,-3.772584523823362472e-07,-3.843765363895501207e-07,-3.914946203967639941e-07,-3.986127044039778676e-07,-4.057307884111917411e-07,-4.128488724184056146e-07,-4.199669564256194880e-07,-4.270850404328333615e-07,-4.342031244400472350e-07,-4.413212084472611085e-07,-4.484392924544749820e-07 +0.000000000000000000e+00,-3.420395230235544173e-09,-6.840790460471088346e-09,-1.026118569070663211e-08,-1.368158092094217504e-08,-1.710197615117771797e-08,-2.052237138141326090e-08,-2.394276661164880384e-08,-2.736316184188434677e-08,-3.078355707211989301e-08,-3.420395230235544256e-08,-3.762434753259099211e-08,-4.104474276282654166e-08,-4.446513799306209121e-08,-4.788553322329764076e-08,-5.130592845353319031e-08,-5.472632368376873986e-08,-5.814671891400428941e-08,-6.156711414423983896e-08,-6.498750937447538851e-08,-6.840790460471093806e-08,-7.182829983494648761e-08,-7.524869506518203716e-08,-7.866909029541758671e-08,-8.208948552565313626e-08,-8.550988075588868581e-08,-8.893027598612423536e-08,-9.235067121635978491e-08,-9.577106644659533446e-08,-9.919146167683088401e-08,-1.026118569070664336e-07,-1.060322521373019831e-07,-1.094526473675375327e-07,-1.128730425977730822e-07,-1.162934378280086318e-07,-1.197138330582441945e-07,-1.231342282884797573e-07,-1.265546235187153201e-07,-1.299750187489508829e-07,-1.333954139791864457e-07,-1.368158092094220085e-07,-1.402362044396575712e-07,-1.436565996698931340e-07,-1.470769949001286968e-07,-1.504973901303642596e-07,-1.539177853605998224e-07,-1.573381805908353852e-07,-1.607585758210709480e-07,-1.641789710513065107e-07,-1.675993662815420735e-07,-1.710197615117776363e-07,-1.744401567420131991e-07,-1.778605519722487619e-07,-1.812809472024843247e-07,-1.847013424327198875e-07,-1.881217376629554502e-07,-1.915421328931910130e-07,-1.949625281234265758e-07,-1.983829233536621386e-07,-2.018033185838977014e-07,-2.052237138141332642e-07,-2.086441090443688269e-07,-2.120645042746043897e-07,-2.154848995048399525e-07 +0.000000000000000000e+00,-2.260547190843190392e-09,-4.521094381686380785e-09,-6.781641572529570764e-09,-9.042188763372759915e-09,-1.130273595421594907e-08,-1.356328314505913822e-08,-1.582383033590232572e-08,-1.808437752674551321e-08,-2.034492471758870071e-08,-2.260547190843188821e-08,-2.486601909927507570e-08,-2.712656629011826320e-08,-2.938711348096145070e-08,-3.164766067180463820e-08,-3.390820786264782569e-08,-3.616875505349101319e-08,-3.842930224433420069e-08,-4.068984943517738819e-08,-4.295039662602057568e-08,-4.521094381686376318e-08,-4.747149100770695068e-08,-4.973203819855013817e-08,-5.199258538939332567e-08,-5.425313258023651317e-08,-5.651367977107970067e-08,-5.877422696192288816e-08,-6.103477415276607566e-08,-6.329532134360926316e-08,-6.555586853445245066e-08,-6.781641572529563815e-08,-7.007696291613882565e-08,-7.233751010698201315e-08,-7.459805729782520064e-08,-7.685860448866838814e-08,-7.911915167951157564e-08,-8.137969887035476314e-08,-8.364024606119795063e-08,-8.590079325204113813e-08,-8.816134044288432563e-08,-9.042188763372751313e-08,-9.268243482457070062e-08,-9.494298201541388812e-08,-9.720352920625707562e-08,-9.946407639710026311e-08,-1.017246235879434506e-07,-1.039851707787866381e-07,-1.062457179696298256e-07,-1.085062651604730131e-07,-1.107668123513162006e-07,-1.130273595421593881e-07,-1.152879067330025756e-07,-1.175484539238457631e-07,-1.198090011146889374e-07,-1.220695483055321249e-07,-1.243300954963753123e-07,-1.265906426872184998e-07,-1.288511898780616873e-07,-1.311117370689048748e-07,-1.333722842597480623e-07,-1.356328314505912498e-07,-1.378933786414344373e-07,-1.401539258322776248e-07,-1.424144730231208123e-07 +0.000000000000000000e+00,-2.201258714868425829e-09,-4.402517429736851658e-09,-6.603776144605277487e-09,-8.805034859473703317e-09,-1.100629357434212832e-08,-1.320755228921055332e-08,-1.540881100407897832e-08,-1.761006971894740332e-08,-1.981132843381582833e-08,-2.201258714868425333e-08,-2.421384586355267833e-08,-2.641510457842110333e-08,-2.861636329328952833e-08,-3.081762200815795665e-08,-3.301888072302638496e-08,-3.522013943789481327e-08,-3.742139815276324158e-08,-3.962265686763166989e-08,-4.182391558250009820e-08,-4.402517429736852651e-08,-4.622643301223695482e-08,-4.842769172710538313e-08,-5.062895044197381144e-08,-5.283020915684223975e-08,-5.503146787171066806e-08,-5.723272658657909637e-08,-5.943398530144752468e-08,-6.163524401631595300e-08,-6.383650273118438131e-08,-6.603776144605280962e-08,-6.823902016092123793e-08,-7.044027887578966624e-08,-7.264153759065809455e-08,-7.484279630552652286e-08,-7.704405502039495117e-08,-7.924531373526337948e-08,-8.144657245013180779e-08,-8.364783116500023610e-08,-8.584908987986866441e-08,-8.805034859473709272e-08,-9.025160730960552103e-08,-9.245286602447394935e-08,-9.465412473934237766e-08,-9.685538345421080597e-08,-9.905664216907923428e-08,-1.012579008839476626e-07,-1.034591595988160909e-07,-1.056604183136845192e-07,-1.078616770285529475e-07,-1.100629357434213758e-07,-1.122641944582898041e-07,-1.144654531731582325e-07,-1.166667118880266608e-07,-1.188679706028950891e-07,-1.210692293177635306e-07,-1.232704880326319854e-07,-1.254717467475004402e-07,-1.276730054623688950e-07,-1.298742641772373497e-07,-1.320755228921058045e-07,-1.342767816069742593e-07,-1.364780403218427141e-07,-1.386792990367111689e-07 +0.000000000000000000e+00,-3.394751885025200170e-09,-6.789503770050400339e-09,-1.018425565507560009e-08,-1.357900754010079902e-08,-1.697375942512599795e-08,-2.036851131015119688e-08,-2.376326319517639581e-08,-2.715801508020159474e-08,-3.055276696522679367e-08,-3.394751885025199590e-08,-3.734227073527719814e-08,-4.073702262030240038e-08,-4.413177450532760262e-08,-4.752652639035280485e-08,-5.092127827537800709e-08,-5.431603016040320933e-08,-5.771078204542841157e-08,-6.110553393045361380e-08,-6.450028581547881604e-08,-6.789503770050401828e-08,-7.128978958552922052e-08,-7.468454147055442275e-08,-7.807929335557962499e-08,-8.147404524060482723e-08,-8.486879712563002947e-08,-8.826354901065523170e-08,-9.165830089568043394e-08,-9.505305278070563618e-08,-9.844780466573083842e-08,-1.018425565507560407e-07,-1.052373084357812429e-07,-1.086320603208064451e-07,-1.120268122058316474e-07,-1.154215640908568496e-07,-1.188163159758820518e-07,-1.222110678609072541e-07,-1.256058197459324696e-07,-1.290005716309576850e-07,-1.323953235159829005e-07,-1.357900754010081160e-07,-1.391848272860333314e-07,-1.425795791710585469e-07,-1.459743310560837624e-07,-1.493690829411089779e-07,-1.527638348261341933e-07,-1.561585867111594088e-07,-1.595533385961846243e-07,-1.629480904812098397e-07,-1.663428423662350552e-07,-1.697375942512602707e-07,-1.731323461362854862e-07,-1.765270980213107016e-07,-1.799218499063359171e-07,-1.833166017913611326e-07,-1.867113536763863481e-07,-1.901061055614115635e-07,-1.935008574464367790e-07,-1.968956093314619945e-07,-2.002903612164872099e-07,-2.036851131015124254e-07,-2.070798649865376409e-07,-2.104746168715628564e-07,-2.138693687565880718e-07 +0.000000000000000000e+00,-2.260547190835825590e-09,-4.521094381671651180e-09,-6.781641572507476769e-09,-9.042188763343302359e-09,-1.130273595417912795e-08,-1.356328314501495354e-08,-1.582383033585077913e-08,-1.808437752668660472e-08,-2.034492471752243031e-08,-2.260547190835825590e-08,-2.486601909919408149e-08,-2.712656629002990708e-08,-2.938711348086573267e-08,-3.164766067170155826e-08,-3.390820786253738054e-08,-3.616875505337320282e-08,-3.842930224420902510e-08,-4.068984943504484738e-08,-4.295039662588066966e-08,-4.521094381671649194e-08,-4.747149100755231423e-08,-4.973203819838813651e-08,-5.199258538922395879e-08,-5.425313258005978107e-08,-5.651367977089560335e-08,-5.877422696173142563e-08,-6.103477415256724791e-08,-6.329532134340307681e-08,-6.555586853423890571e-08,-6.781641572507473461e-08,-7.007696291591056351e-08,-7.233751010674639240e-08,-7.459805729758222130e-08,-7.685860448841805020e-08,-7.911915167925387910e-08,-8.137969887008970800e-08,-8.364024606092553690e-08,-8.590079325176136580e-08,-8.816134044259719469e-08,-9.042188763343302359e-08,-9.268243482426885249e-08,-9.494298201510468139e-08,-9.720352920594051029e-08,-9.946407639677633919e-08,-1.017246235876121681e-07,-1.039851707784479970e-07,-1.062457179692838259e-07,-1.085062651601196548e-07,-1.107668123509554837e-07,-1.130273595417913126e-07,-1.152879067326271415e-07,-1.175484539234629704e-07,-1.198090011142987993e-07,-1.220695483051346282e-07,-1.243300954959704571e-07,-1.265906426868062860e-07,-1.288511898776421149e-07,-1.311117370684779438e-07,-1.333722842593137727e-07,-1.356328314501496016e-07,-1.378933786409854305e-07,-1.401539258318212594e-07,-1.424144730226570883e-07 +0.000000000000000000e+00,-2.201258714861002297e-09,-4.402517429722004594e-09,-6.603776144583007304e-09,-8.805034859444010841e-09,-1.100629357430501438e-08,-1.320755228916601792e-08,-1.540881100402702145e-08,-1.761006971888802499e-08,-1.981132843374902853e-08,-2.201258714861003207e-08,-2.421384586347103560e-08,-2.641510457833203914e-08,-2.861636329319304268e-08,-3.081762200805404953e-08,-3.301888072291505306e-08,-3.522013943777605660e-08,-3.742139815263706014e-08,-3.962265686749806368e-08,-4.182391558235906721e-08,-4.402517429722007075e-08,-4.622643301208107429e-08,-4.842769172694207783e-08,-5.062895044180308136e-08,-5.283020915666408490e-08,-5.503146787152508844e-08,-5.723272658638609198e-08,-5.943398530124709551e-08,-6.163524401610809905e-08,-6.383650273096910259e-08,-6.603776144583010613e-08,-6.823902016069110966e-08,-7.044027887555211320e-08,-7.264153759041311674e-08,-7.484279630527412028e-08,-7.704405502013512381e-08,-7.924531373499612735e-08,-8.144657244985713089e-08,-8.364783116471813443e-08,-8.584908987957913796e-08,-8.805034859444014150e-08,-9.025160730930114504e-08,-9.245286602416214858e-08,-9.465412473902315211e-08,-9.685538345388415565e-08,-9.905664216874515919e-08,-1.012579008836061627e-07,-1.034591595984671663e-07,-1.056604183133281698e-07,-1.078616770281891733e-07,-1.100629357430501769e-07,-1.122641944579111804e-07,-1.144654531727721840e-07,-1.166667118876331875e-07,-1.188679706024941910e-07,-1.210692293173552078e-07,-1.232704880322162246e-07,-1.254717467470772413e-07,-1.276730054619382581e-07,-1.298742641767992749e-07,-1.320755228916602917e-07,-1.342767816065213084e-07,-1.364780403213823252e-07,-1.386792990362433420e-07 +0.000000000000000000e+00,-3.394751885018471055e-09,-6.789503770036942110e-09,-1.018425565505541358e-08,-1.357900754007388588e-08,-1.697375942509235817e-08,-2.036851131011083047e-08,-2.376326319512930276e-08,-2.715801508014777506e-08,-3.055276696516624405e-08,-3.394751885018470973e-08,-3.734227073520317540e-08,-4.073702262022164108e-08,-4.413177450524010676e-08,-4.752652639025857244e-08,-5.092127827527703812e-08,-5.431603016029550380e-08,-5.771078204531396948e-08,-6.110553393033243515e-08,-6.450028581535090083e-08,-6.789503770036936651e-08,-7.128978958538783219e-08,-7.468454147040629787e-08,-7.807929335542476355e-08,-8.147404524044322923e-08,-8.486879712546169490e-08,-8.826354901048016058e-08,-9.165830089549862626e-08,-9.505305278051709194e-08,-9.844780466553555762e-08,-1.018425565505540233e-07,-1.052373084355724890e-07,-1.086320603205909547e-07,-1.120268122056094203e-07,-1.154215640906278860e-07,-1.188163159756463517e-07,-1.222110678606648174e-07,-1.256058197456832830e-07,-1.290005716307017487e-07,-1.323953235157202144e-07,-1.357900754007386801e-07,-1.391848272857571458e-07,-1.425795791707756114e-07,-1.459743310557940771e-07,-1.493690829408125428e-07,-1.527638348258310085e-07,-1.561585867108494742e-07,-1.595533385958679398e-07,-1.629480904808864055e-07,-1.663428423659048712e-07,-1.697375942509233369e-07,-1.731323461359418025e-07,-1.765270980209602682e-07,-1.799218499059787339e-07,-1.833166017909971996e-07,-1.867113536760156653e-07,-1.901061055610341309e-07,-1.935008574460525966e-07,-1.968956093310710623e-07,-2.002903612160895280e-07,-2.036851131011079937e-07,-2.070798649861264593e-07,-2.104746168711449250e-07,-2.138693687561633907e-07 +0.000000000000000000e+00,-2.657553701175835721e-09,-5.315107402351671442e-09,-7.972661103527507576e-09,-1.063021480470334454e-08,-1.328776850587918150e-08,-1.594532220705501846e-08,-1.860287590823085377e-08,-2.126042960940668908e-08,-2.391798331058252438e-08,-2.657553701175835969e-08,-2.923309071293419500e-08,-3.189064441411003031e-08,-3.454819811528586561e-08,-3.720575181646170092e-08,-3.986330551763753623e-08,-4.252085921881337153e-08,-4.517841291998920684e-08,-4.783596662116504215e-08,-5.049352032234087746e-08,-5.315107402351671276e-08,-5.580862772469254807e-08,-5.846618142586838338e-08,-6.112373512704422530e-08,-6.378128882822007385e-08,-6.643884252939592239e-08,-6.909639623057177093e-08,-7.175394993174761947e-08,-7.441150363292346801e-08,-7.706905733409931656e-08,-7.972661103527516510e-08,-8.238416473645101364e-08,-8.504171843762686218e-08,-8.769927213880271073e-08,-9.035682583997855927e-08,-9.301437954115440781e-08,-9.567193324233025635e-08,-9.832948694350610489e-08,-1.009870406446819534e-07,-1.036445943458578020e-07,-1.063021480470336505e-07,-1.089597017482094991e-07,-1.116172554493853476e-07,-1.142748091505611961e-07,-1.169323628517370447e-07,-1.195899165529128932e-07,-1.222474702540887418e-07,-1.249050239552645903e-07,-1.275625776564404389e-07,-1.302201313576162874e-07,-1.328776850587921359e-07,-1.355352387599679845e-07,-1.381927924611438330e-07,-1.408503461623196816e-07,-1.435078998634955301e-07,-1.461654535646713787e-07,-1.488230072658472272e-07,-1.514805609670230757e-07,-1.541381146681989243e-07,-1.567956683693747728e-07,-1.594532220705506214e-07,-1.621107757717264699e-07,-1.647683294729023184e-07,-1.674258831740781670e-07 +0.000000000000000000e+00,-2.437179326312677571e-09,-4.874358652625355141e-09,-7.311537978938032298e-09,-9.748717305250708628e-09,-1.218589663156338496e-08,-1.462307595787606129e-08,-1.706025528418873927e-08,-1.949743461050141726e-08,-2.193461393681409524e-08,-2.437179326312677322e-08,-2.680897258943945121e-08,-2.924615191575212919e-08,-3.168333124206480718e-08,-3.412051056837748516e-08,-3.655768989469016314e-08,-3.899486922100284113e-08,-4.143204854731551911e-08,-4.386922787362819710e-08,-4.630640719994087508e-08,-4.874358652625355307e-08,-5.118076585256623105e-08,-5.361794517887890903e-08,-5.605512450519158702e-08,-5.849230383150426500e-08,-6.092948315781693637e-08,-6.336666248412960112e-08,-6.580384181044226587e-08,-6.824102113675493062e-08,-7.067820046306759537e-08,-7.311537978938026011e-08,-7.555255911569292486e-08,-7.798973844200558961e-08,-8.042691776831825436e-08,-8.286409709463091911e-08,-8.530127642094358386e-08,-8.773845574725624861e-08,-9.017563507356891336e-08,-9.261281439988157811e-08,-9.504999372619424286e-08,-9.748717305250690761e-08,-9.992435237881957236e-08,-1.023615317051322371e-07,-1.047987110314449019e-07,-1.072358903577575666e-07,-1.096730696840702314e-07,-1.121102490103828961e-07,-1.145474283366955609e-07,-1.169846076630082256e-07,-1.194217869893208904e-07,-1.218589663156335551e-07,-1.242961456419462198e-07,-1.267333249682588846e-07,-1.291705042945715493e-07,-1.316076836208842141e-07,-1.340448629471968788e-07,-1.364820422735095436e-07,-1.389192215998222083e-07,-1.413564009261348731e-07,-1.437935802524475378e-07,-1.462307595787602026e-07,-1.486679389050728673e-07,-1.511051182313855321e-07,-1.535422975576981968e-07 +0.000000000000000000e+00,-3.932122449927789013e-09,-7.864244899855578027e-09,-1.179636734978336704e-08,-1.572848979971115605e-08,-1.966061224963894507e-08,-2.359273469956673408e-08,-2.752485714949452309e-08,-3.145697959942231211e-08,-3.538910204935009781e-08,-3.932122449927788352e-08,-4.325334694920566922e-08,-4.718546939913345492e-08,-5.111759184906124063e-08,-5.504971429898902633e-08,-5.898183674891681204e-08,-6.291395919884459774e-08,-6.684608164877238345e-08,-7.077820409870016915e-08,-7.471032654862795486e-08,-7.864244899855574056e-08,-8.257457144848352627e-08,-8.650669389841131197e-08,-9.043881634833909767e-08,-9.437093879826688338e-08,-9.830306124819466908e-08,-1.022351836981224548e-07,-1.061673061480502405e-07,-1.100994285979780262e-07,-1.140315510479058119e-07,-1.179636734978335976e-07,-1.218957959477613833e-07,-1.258279183976891690e-07,-1.297600408476169547e-07,-1.336921632975447404e-07,-1.376242857474725261e-07,-1.415564081974003118e-07,-1.454885306473280975e-07,-1.494206530972558832e-07,-1.533527755471836689e-07,-1.572848979971114547e-07,-1.612170204470392404e-07,-1.651491428969670261e-07,-1.690812653468948118e-07,-1.730133877968225975e-07,-1.769455102467503832e-07,-1.808776326966781689e-07,-1.848097551466059546e-07,-1.887418775965337403e-07,-1.926740000464615260e-07,-1.966061224963893117e-07,-2.005382449463170974e-07,-2.044703673962448831e-07,-2.084024898461726688e-07,-2.123346122961004545e-07,-2.162667347460282402e-07,-2.201988571959560259e-07,-2.241309796458838116e-07,-2.280631020958115973e-07,-2.319952245457393830e-07,-2.359273469956671687e-07,-2.398594694455949809e-07,-2.437915918955228196e-07,-2.477237143454506582e-07 +0.000000000000000000e+00,-2.657553701168871687e-09,-5.315107402337743375e-09,-7.972661103506614648e-09,-1.063021480467548509e-08,-1.328776850584435554e-08,-1.594532220701322599e-08,-1.860287590818209643e-08,-2.126042960935096688e-08,-2.391798331051983733e-08,-2.657553701168870777e-08,-2.923309071285757822e-08,-3.189064441402644536e-08,-3.454819811519531250e-08,-3.720575181636417963e-08,-3.986330551753304677e-08,-4.252085921870191391e-08,-4.517841291987078105e-08,-4.783596662103964819e-08,-5.049352032220851532e-08,-5.315107402337738246e-08,-5.580862772454624960e-08,-5.846618142571511674e-08,-6.112373512688397726e-08,-6.378128882805283778e-08,-6.643884252922169830e-08,-6.909639623039055882e-08,-7.175394993155941934e-08,-7.441150363272827986e-08,-7.706905733389714038e-08,-7.972661103506600090e-08,-8.238416473623486142e-08,-8.504171843740372194e-08,-8.769927213857258246e-08,-9.035682583974144298e-08,-9.301437954091030350e-08,-9.567193324207916402e-08,-9.832948694324802454e-08,-1.009870406444168851e-07,-1.036445943455857456e-07,-1.063021480467546061e-07,-1.089597017479234666e-07,-1.116172554490923271e-07,-1.142748091502611877e-07,-1.169323628514300482e-07,-1.195899165525989087e-07,-1.222474702537677692e-07,-1.249050239549366297e-07,-1.275625776561054903e-07,-1.302201313572743508e-07,-1.328776850584432113e-07,-1.355352387596120718e-07,-1.381927924607809323e-07,-1.408503461619497929e-07,-1.435078998631186534e-07,-1.461654535642875139e-07,-1.488230072654563744e-07,-1.514805609666252350e-07,-1.541381146677940955e-07,-1.567956683689629560e-07,-1.594532220701318165e-07,-1.621107757713006770e-07,-1.647683294724695376e-07,-1.674258831736383981e-07 +0.000000000000000000e+00,-2.437179326305641572e-09,-4.874358652611283145e-09,-7.311537978916924303e-09,-9.748717305222564635e-09,-1.218589663152820497e-08,-1.462307595783384530e-08,-1.706025528413948563e-08,-1.949743461044512596e-08,-2.193461393675076629e-08,-2.437179326305640662e-08,-2.680897258936204696e-08,-2.924615191566768729e-08,-3.168333124197332762e-08,-3.412051056827897126e-08,-3.655768989458461490e-08,-3.899486922089025854e-08,-4.143204854719590218e-08,-4.386922787350154582e-08,-4.630640719980718946e-08,-4.874358652611283310e-08,-5.118076585241847674e-08,-5.361794517872412038e-08,-5.605512450502976402e-08,-5.849230383133540766e-08,-6.092948315764104468e-08,-6.336666248394668171e-08,-6.580384181025231873e-08,-6.824102113655795575e-08,-7.067820046286359277e-08,-7.311537978916922980e-08,-7.555255911547486682e-08,-7.798973844178050384e-08,-8.042691776808614087e-08,-8.286409709439177789e-08,-8.530127642069741491e-08,-8.773845574700305193e-08,-9.017563507330868896e-08,-9.261281439961432598e-08,-9.504999372591996300e-08,-9.748717305222560002e-08,-9.992435237853123705e-08,-1.023615317048368741e-07,-1.047987110311425111e-07,-1.072358903574481481e-07,-1.096730696837537851e-07,-1.121102490100594222e-07,-1.145474283363650592e-07,-1.169846076626706962e-07,-1.194217869889763332e-07,-1.218589663152819835e-07,-1.242961456415876337e-07,-1.267333249678932840e-07,-1.291705042941989343e-07,-1.316076836205045845e-07,-1.340448629468102348e-07,-1.364820422731158850e-07,-1.389192215994215353e-07,-1.413564009257271855e-07,-1.437935802520328358e-07,-1.462307595783384861e-07,-1.486679389046441363e-07,-1.511051182309497866e-07,-1.535422975572554368e-07 +0.000000000000000000e+00,-3.932122449921064035e-09,-7.864244899842128070e-09,-1.179636734976319210e-08,-1.572848979968425614e-08,-1.966061224960531852e-08,-2.359273469952638090e-08,-2.752485714944744328e-08,-3.145697959936850566e-08,-3.538910204928956804e-08,-3.932122449921063042e-08,-4.325334694913169280e-08,-4.718546939905275518e-08,-5.111759184897381756e-08,-5.504971429889487995e-08,-5.898183674881594233e-08,-6.291395919873699809e-08,-6.684608164865806047e-08,-7.077820409857912285e-08,-7.471032654850018523e-08,-7.864244899842124761e-08,-8.257457144834230999e-08,-8.650669389826337237e-08,-9.043881634818443475e-08,-9.437093879810549713e-08,-9.830306124802655951e-08,-1.022351836979476219e-07,-1.061673061478686843e-07,-1.100994285977897467e-07,-1.140315510477108090e-07,-1.179636734976318714e-07,-1.218957959475529338e-07,-1.258279183974739962e-07,-1.297600408473950586e-07,-1.336921632973161209e-07,-1.376242857472371833e-07,-1.415564081971582457e-07,-1.454885306470793081e-07,-1.494206530970003705e-07,-1.533527755469214328e-07,-1.572848979968424952e-07,-1.612170204467635576e-07,-1.651491428966846200e-07,-1.690812653466056824e-07,-1.730133877965267447e-07,-1.769455102464478071e-07,-1.808776326963688695e-07,-1.848097551462899319e-07,-1.887418775962109943e-07,-1.926740000461320566e-07,-1.966061224960531190e-07,-2.005382449459741814e-07,-2.044703673958952438e-07,-2.084024898458163062e-07,-2.123346122957373685e-07,-2.162667347456584309e-07,-2.201988571955794933e-07,-2.241309796455005557e-07,-2.280631020954216181e-07,-2.319952245453426805e-07,-2.359273469952637428e-07,-2.398594694451848052e-07,-2.437915918951058676e-07,-2.477237143450269300e-07 +0.000000000000000000e+00,-3.087074258966049178e-09,-6.174148517932098356e-09,-9.261222776898146707e-09,-1.234829703586419506e-08,-1.543537129483024341e-08,-1.852244555379629341e-08,-2.160951981276234342e-08,-2.469659407172839343e-08,-2.778366833069444343e-08,-3.087074258966049344e-08,-3.395781684862654675e-08,-3.704489110759260006e-08,-4.013196536655865338e-08,-4.321903962552470669e-08,-4.630611388449076001e-08,-4.939318814345681332e-08,-5.248026240242286664e-08,-5.556733666138891995e-08,-5.865441092035497326e-08,-6.174148517932102658e-08,-6.482855943828707989e-08,-6.791563369725313321e-08,-7.100270795621918652e-08,-7.408978221518523983e-08,-7.717685647415129315e-08,-8.026393073311734646e-08,-8.335100499208339978e-08,-8.643807925104945309e-08,-8.952515351001550640e-08,-9.261222776898155972e-08,-9.569930202794761303e-08,-9.878637628691366635e-08,-1.018734505458797197e-07,-1.049605248048457730e-07,-1.080475990638118263e-07,-1.111346733227778796e-07,-1.142217475817439329e-07,-1.173088218407099862e-07,-1.203958960996760395e-07,-1.234829703586420796e-07,-1.265700446176081197e-07,-1.296571188765741598e-07,-1.327441931355401999e-07,-1.358312673945062399e-07,-1.389183416534722800e-07,-1.420054159124383201e-07,-1.450924901714043602e-07,-1.481795644303704003e-07,-1.512666386893364403e-07,-1.543537129483024804e-07,-1.574407872072685205e-07,-1.605278614662345606e-07,-1.636149357252006007e-07,-1.667020099841666407e-07,-1.697890842431326808e-07,-1.728761585020987209e-07,-1.759632327610647610e-07,-1.790503070200308011e-07,-1.821373812789968411e-07,-1.852244555379628812e-07,-1.883115297969289213e-07,-1.913986040558949614e-07,-1.944856783148610014e-07 +0.000000000000000000e+00,-2.880911006501044913e-09,-5.761822013002089826e-09,-8.642733019503134739e-09,-1.152364402600417965e-08,-1.440455503250522456e-08,-1.728546603900626948e-08,-2.016637704550731604e-08,-2.304728805200836261e-08,-2.592819905850940918e-08,-2.880911006501045575e-08,-3.169002107151150231e-08,-3.457093207801254557e-08,-3.745184308451358883e-08,-4.033275409101463209e-08,-4.321366509751567535e-08,-4.609457610401671861e-08,-4.897548711051776186e-08,-5.185639811701880512e-08,-5.473730912351984838e-08,-5.761822013002089164e-08,-6.049913113652192828e-08,-6.338004214302296492e-08,-6.626095314952400156e-08,-6.914186415602503820e-08,-7.202277516252607485e-08,-7.490368616902711149e-08,-7.778459717552814813e-08,-8.066550818202918477e-08,-8.354641918853022141e-08,-8.642733019503125805e-08,-8.930824120153229469e-08,-9.218915220803333133e-08,-9.507006321453436797e-08,-9.795097422103540462e-08,-1.008318852275364413e-07,-1.037127962340374779e-07,-1.065937072405385145e-07,-1.094746182470395512e-07,-1.123555292535405878e-07,-1.152364402600416245e-07,-1.181173512665426611e-07,-1.209982622730436977e-07,-1.238791732795447344e-07,-1.267600842860457710e-07,-1.296409952925468077e-07,-1.325219062990478443e-07,-1.354028173055488809e-07,-1.382837283120499176e-07,-1.411646393185509542e-07,-1.440455503250519909e-07,-1.469264613315530275e-07,-1.498073723380540642e-07,-1.526882833445551008e-07,-1.555691943510561374e-07,-1.584501053575571741e-07,-1.613310163640582107e-07,-1.642119273705592474e-07,-1.670928383770602840e-07,-1.699737493835613206e-07,-1.728546603900623573e-07,-1.757355713965633939e-07,-1.786164824030644306e-07,-1.814973934095654672e-07 +0.000000000000000000e+00,-4.463654782184747553e-09,-8.927309564369495106e-09,-1.339096434655424183e-08,-1.785461912873898690e-08,-2.231827391092373198e-08,-2.678192869310847705e-08,-3.124558347529322543e-08,-3.570923825747797381e-08,-4.017289303966272219e-08,-4.463654782184747057e-08,-4.910020260403221895e-08,-5.356385738621696733e-08,-5.802751216840171571e-08,-6.249116695058646409e-08,-6.695482173277121247e-08,-7.141847651495596085e-08,-7.588213129714070923e-08,-8.034578607932545761e-08,-8.480944086151020599e-08,-8.927309564369495437e-08,-9.373675042587970275e-08,-9.820040520806445113e-08,-1.026640599902491995e-07,-1.071277147724339479e-07,-1.115913695546186963e-07,-1.160550243368034447e-07,-1.205186791189881930e-07,-1.249823339011729547e-07,-1.294459886833577163e-07,-1.339096434655424779e-07,-1.383732982477272395e-07,-1.428369530299120011e-07,-1.473006078120967627e-07,-1.517642625942815243e-07,-1.562279173764662860e-07,-1.606915721586510476e-07,-1.651552269408358092e-07,-1.696188817230205708e-07,-1.740825365052053324e-07,-1.785461912873900940e-07,-1.830098460695748556e-07,-1.874735008517596173e-07,-1.919371556339443789e-07,-1.964008104161291405e-07,-2.008644651983139021e-07,-2.053281199804986637e-07,-2.097917747626834253e-07,-2.142554295448681870e-07,-2.187190843270529486e-07,-2.231827391092377102e-07,-2.276463938914224718e-07,-2.321100486736072334e-07,-2.365737034557919950e-07,-2.410373582379767566e-07,-2.455010130201614918e-07,-2.499646678023462269e-07,-2.544283225845309621e-07,-2.588919773667156972e-07,-2.633556321489004324e-07,-2.678192869310851675e-07,-2.722829417132699027e-07,-2.767465964954546378e-07,-2.812102512776393730e-07 +0.000000000000000000e+00,-3.087074258959342811e-09,-6.174148517918685623e-09,-9.261222776878028021e-09,-1.234829703583736959e-08,-1.543537129479670951e-08,-1.852244555375604942e-08,-2.160951981271538934e-08,-2.469659407167472926e-08,-2.778366833063406917e-08,-3.087074258959340578e-08,-3.395781684855274239e-08,-3.704489110751207900e-08,-4.013196536647141560e-08,-4.321903962543075221e-08,-4.630611388439008882e-08,-4.939318814334942543e-08,-5.248026240230876203e-08,-5.556733666126809864e-08,-5.865441092022743525e-08,-6.174148517918677186e-08,-6.482855943814610185e-08,-6.791563369710543184e-08,-7.100270795606476183e-08,-7.408978221502409182e-08,-7.717685647398342181e-08,-8.026393073294275180e-08,-8.335100499190208179e-08,-8.643807925086141178e-08,-8.952515350982074177e-08,-9.261222776878007176e-08,-9.569930202773940175e-08,-9.878637628669873174e-08,-1.018734505456580617e-07,-1.049605248046173917e-07,-1.080475990635767217e-07,-1.111346733225360517e-07,-1.142217475814953817e-07,-1.173088218404547117e-07,-1.203958960994140417e-07,-1.234829703583733584e-07,-1.265700446173326752e-07,-1.296571188762919919e-07,-1.327441931352513087e-07,-1.358312673942106254e-07,-1.389183416531699422e-07,-1.420054159121292590e-07,-1.450924901710885757e-07,-1.481795644300478925e-07,-1.512666386890072092e-07,-1.543537129479665260e-07,-1.574407872069258427e-07,-1.605278614658851595e-07,-1.636149357248444762e-07,-1.667020099838037930e-07,-1.697890842427631098e-07,-1.728761585017224265e-07,-1.759632327606817433e-07,-1.790503070196410600e-07,-1.821373812786003768e-07,-1.852244555375596935e-07,-1.883115297965190103e-07,-1.913986040554783270e-07,-1.944856783144376438e-07 +0.000000000000000000e+00,-2.880911006494163597e-09,-5.761822012988327195e-09,-8.642733019482489965e-09,-1.152364402597665274e-08,-1.440455503247081551e-08,-1.728546603896497993e-08,-2.016637704545914435e-08,-2.304728805195330878e-08,-2.592819905844747320e-08,-2.880911006494163763e-08,-3.169002107143580536e-08,-3.457093207792997309e-08,-3.745184308442414083e-08,-4.033275409091830856e-08,-4.321366509741247629e-08,-4.609457610390664403e-08,-4.897548711040081176e-08,-5.185639811689497949e-08,-5.473730912338914723e-08,-5.761822012988331496e-08,-6.049913113637748269e-08,-6.338004214287165043e-08,-6.626095314936581816e-08,-6.914186415585998589e-08,-7.202277516235415363e-08,-7.490368616884832136e-08,-7.778459717534248909e-08,-8.066550818183665683e-08,-8.354641918833082456e-08,-8.642733019482499229e-08,-8.930824120131916003e-08,-9.218915220781332776e-08,-9.507006321430749549e-08,-9.795097422080166323e-08,-1.008318852272958310e-07,-1.037127962337899987e-07,-1.065937072402841664e-07,-1.094746182467783342e-07,-1.123555292532725019e-07,-1.152364402597666696e-07,-1.181173512662608374e-07,-1.209982622727550183e-07,-1.238791732792491993e-07,-1.267600842857433803e-07,-1.296409952922375612e-07,-1.325219062987317422e-07,-1.354028173052259232e-07,-1.382837283117201041e-07,-1.411646393182142851e-07,-1.440455503247084661e-07,-1.469264613312026470e-07,-1.498073723376968280e-07,-1.526882833441910090e-07,-1.555691943506851899e-07,-1.584501053571793709e-07,-1.613310163636735519e-07,-1.642119273701677329e-07,-1.670928383766619138e-07,-1.699737493831560948e-07,-1.728546603896502758e-07,-1.757355713961444567e-07,-1.786164824026386377e-07,-1.814973934091328187e-07 +0.000000000000000000e+00,-4.463654782178575959e-09,-8.927309564357151917e-09,-1.339096434653572788e-08,-1.785461912871430383e-08,-2.231827391089287814e-08,-2.678192869307145244e-08,-3.124558347525002675e-08,-3.570923825742860105e-08,-4.017289303960717536e-08,-4.463654782178574966e-08,-4.910020260396432396e-08,-5.356385738614289827e-08,-5.802751216832147257e-08,-6.249116695050005349e-08,-6.695482173267863442e-08,-7.141847651485721534e-08,-7.588213129703579626e-08,-8.034578607921437718e-08,-8.480944086139295810e-08,-8.927309564357153903e-08,-9.373675042575011995e-08,-9.820040520792870087e-08,-1.026640599901072818e-07,-1.071277147722858627e-07,-1.115913695544644436e-07,-1.160550243366430246e-07,-1.205186791188216187e-07,-1.249823339010002129e-07,-1.294459886831788070e-07,-1.339096434653574012e-07,-1.383732982475359953e-07,-1.428369530297145895e-07,-1.473006078118931837e-07,-1.517642625940717778e-07,-1.562279173762503720e-07,-1.606915721584289661e-07,-1.651552269406075603e-07,-1.696188817227861544e-07,-1.740825365049647486e-07,-1.785461912871433427e-07,-1.830098460693219369e-07,-1.874735008515005311e-07,-1.919371556336791252e-07,-1.964008104158577194e-07,-2.008644651980363135e-07,-2.053281199802149077e-07,-2.097917747623935018e-07,-2.142554295445720960e-07,-2.187190843267506902e-07,-2.231827391089292843e-07,-2.276463938911078785e-07,-2.321100486732864726e-07,-2.365737034554650668e-07,-2.410373582376436609e-07,-2.455010130198222551e-07,-2.499646678020008493e-07,-2.544283225841794434e-07,-2.588919773663580376e-07,-2.633556321485366317e-07,-2.678192869307152259e-07,-2.722829417128938200e-07,-2.767465964950724142e-07,-2.812102512772510084e-07 +0.000000000000000000e+00,-3.405814428576354682e-09,-6.811628857152709365e-09,-1.021744328572906363e-08,-1.362325771430541708e-08,-1.702907214288176886e-08,-2.043488657145812065e-08,-2.384070100003447244e-08,-2.724651542861082423e-08,-3.065232985718717601e-08,-3.405814428576352449e-08,-3.746395871433987297e-08,-4.086977314291622145e-08,-4.427558757149256993e-08,-4.768140200006891841e-08,-5.108721642864526688e-08,-5.449303085722161536e-08,-5.789884528579796384e-08,-6.130465971437431232e-08,-6.471047414295065418e-08,-6.811628857152699604e-08,-7.152210300010333790e-08,-7.492791742867967976e-08,-7.833373185725602163e-08,-8.173954628583236349e-08,-8.514536071440870535e-08,-8.855117514298504721e-08,-9.195698957156138907e-08,-9.536280400013773093e-08,-9.876861842871407279e-08,-1.021744328572904147e-07,-1.055802472858667565e-07,-1.089860617144430984e-07,-1.123918761430194402e-07,-1.157976905715957821e-07,-1.192035050001721240e-07,-1.226093194287484658e-07,-1.260151338573248077e-07,-1.294209482859011495e-07,-1.328267627144774914e-07,-1.362325771430538333e-07,-1.396383915716301751e-07,-1.430442060002065170e-07,-1.464500204287828588e-07,-1.498558348573592007e-07,-1.532616492859355426e-07,-1.566674637145118844e-07,-1.600732781430882263e-07,-1.634790925716645682e-07,-1.668849070002409100e-07,-1.702907214288172519e-07,-1.736965358573935937e-07,-1.771023502859699356e-07,-1.805081647145462775e-07,-1.839139791431226193e-07,-1.873197935716989612e-07,-1.907256080002753030e-07,-1.941314224288516449e-07,-1.975372368574279868e-07,-2.009430512860043286e-07,-2.043488657145806705e-07,-2.077546801431570124e-07,-2.111604945717333542e-07,-2.145663090003096961e-07 +0.000000000000000000e+00,-3.264382716984667315e-09,-6.528765433969334631e-09,-9.793148150954001119e-09,-1.305753086793866761e-08,-1.632191358492333410e-08,-1.958629630190800224e-08,-2.285067901889267038e-08,-2.611506173587733852e-08,-2.937944445286200667e-08,-3.264382716984667481e-08,-3.590820988683134295e-08,-3.917259260381601109e-08,-4.243697532080067924e-08,-4.570135803778534738e-08,-4.896574075477001552e-08,-5.223012347175468366e-08,-5.549450618873935181e-08,-5.875888890572401995e-08,-6.202327162270868809e-08,-6.528765433969336285e-08,-6.855203705667803761e-08,-7.181641977366271237e-08,-7.508080249064738713e-08,-7.834518520763206189e-08,-8.160956792461673665e-08,-8.487395064160141141e-08,-8.813833335858608617e-08,-9.140271607557076093e-08,-9.466709879255543569e-08,-9.793148150954011045e-08,-1.011958642265247852e-07,-1.044602469435094600e-07,-1.077246296604941347e-07,-1.109890123774788095e-07,-1.142533950944634843e-07,-1.175177778114481590e-07,-1.207821605284328338e-07,-1.240465432454175085e-07,-1.273109259624021833e-07,-1.305753086793868581e-07,-1.338396913963715328e-07,-1.371040741133562076e-07,-1.403684568303408823e-07,-1.436328395473255571e-07,-1.468972222643102319e-07,-1.501616049812949066e-07,-1.534259876982795814e-07,-1.566903704152642561e-07,-1.599547531322489309e-07,-1.632191358492336057e-07,-1.664835185662182804e-07,-1.697479012832029552e-07,-1.730122840001876299e-07,-1.762766667171723047e-07,-1.795410494341569795e-07,-1.828054321511416542e-07,-1.860698148681263290e-07,-1.893341975851110037e-07,-1.925985803020956785e-07,-1.958629630190803533e-07,-1.991273457360650280e-07,-2.023917284530497028e-07,-2.056561111700343775e-07 +0.000000000000000000e+00,-4.852258596297829010e-09,-9.704517192595658019e-09,-1.455677578889348620e-08,-1.940903438519131273e-08,-2.426129298148913926e-08,-2.911355157778696579e-08,-3.396581017408479231e-08,-3.881806877038261884e-08,-4.367032736668044537e-08,-4.852258596297827190e-08,-5.337484455927609843e-08,-5.822710315557392496e-08,-6.307936175187175148e-08,-6.793162034816958463e-08,-7.278387894446741777e-08,-7.763613754076525092e-08,-8.248839613706308407e-08,-8.734065473336091721e-08,-9.219291332965875036e-08,-9.704517192595658350e-08,-1.018974305222544166e-07,-1.067496891185522498e-07,-1.116019477148500829e-07,-1.164542063111479161e-07,-1.213064649074457492e-07,-1.261587235037435824e-07,-1.310109821000414155e-07,-1.358632406963392487e-07,-1.407154992926370818e-07,-1.455677578889349150e-07,-1.504200164852327481e-07,-1.552722750815305813e-07,-1.601245336778284144e-07,-1.649767922741262475e-07,-1.698290508704240807e-07,-1.746813094667219138e-07,-1.795335680630197470e-07,-1.843858266593175801e-07,-1.892380852556154133e-07,-1.940903438519132464e-07,-1.989426024482110796e-07,-2.037948610445089127e-07,-2.086471196408067459e-07,-2.134993782371045790e-07,-2.183516368334024121e-07,-2.232038954297002453e-07,-2.280561540259980784e-07,-2.329084126222959116e-07,-2.377606712185937447e-07,-2.426129298148915514e-07,-2.474651884111893845e-07,-2.523174470074872177e-07,-2.571697056037850508e-07,-2.620219642000828840e-07,-2.668742227963807171e-07,-2.717264813926785503e-07,-2.765787399889763834e-07,-2.814309985852742166e-07,-2.862832571815720497e-07,-2.911355157778698829e-07,-2.959877743741677160e-07,-3.008400329704655491e-07,-3.056922915667633823e-07 +0.000000000000000000e+00,-3.405814428570556974e-09,-6.811628857141113947e-09,-1.021744328571167133e-08,-1.362325771428222955e-08,-1.702907214285278776e-08,-2.043488657142334598e-08,-2.384070099999390419e-08,-2.724651542856446241e-08,-3.065232985713502393e-08,-3.405814428570558214e-08,-3.746395871427614036e-08,-4.086977314284669857e-08,-4.427558757141725679e-08,-4.768140199998781500e-08,-5.108721642855837322e-08,-5.449303085712893143e-08,-5.789884528569948964e-08,-6.130465971427004786e-08,-6.471047414284060607e-08,-6.811628857141116429e-08,-7.152210299998172250e-08,-7.492791742855228072e-08,-7.833373185712283893e-08,-8.173954628569339714e-08,-8.514536071426395536e-08,-8.855117514283451357e-08,-9.195698957140507179e-08,-9.536280399997563000e-08,-9.876861842854618822e-08,-1.021744328571167464e-07,-1.055802472856873046e-07,-1.089860617142578629e-07,-1.123918761428284211e-07,-1.157976905713989793e-07,-1.192035049999695375e-07,-1.226093194285400957e-07,-1.260151338571106672e-07,-1.294209482856812386e-07,-1.328267627142518101e-07,-1.362325771428223815e-07,-1.396383915713929530e-07,-1.430442059999635244e-07,-1.464500204285340959e-07,-1.498558348571046673e-07,-1.532616492856752388e-07,-1.566674637142458102e-07,-1.600732781428163817e-07,-1.634790925713869531e-07,-1.668849069999575246e-07,-1.702907214285280960e-07,-1.736965358570986675e-07,-1.771023502856692389e-07,-1.805081647142398104e-07,-1.839139791428103818e-07,-1.873197935713809533e-07,-1.907256079999515247e-07,-1.941314224285220962e-07,-1.975372368570926676e-07,-2.009430512856632390e-07,-2.043488657142338105e-07,-2.077546801428043819e-07,-2.111604945713749534e-07,-2.145663089999455248e-07 +0.000000000000000000e+00,-3.264382716978288512e-09,-6.528765433956577024e-09,-9.793148150934865123e-09,-1.305753086791315239e-08,-1.632191358489143801e-08,-1.958629630186972363e-08,-2.285067901884800925e-08,-2.611506173582629486e-08,-2.937944445280458048e-08,-3.264382716978286279e-08,-3.590820988676114510e-08,-3.917259260373942740e-08,-4.243697532071770971e-08,-4.570135803769599202e-08,-4.896574075467427433e-08,-5.223012347165255664e-08,-5.549450618863083895e-08,-5.875888890560912125e-08,-6.202327162258740356e-08,-6.528765433956568587e-08,-6.855203705654396818e-08,-7.181641977352225049e-08,-7.508080249050053279e-08,-7.834518520747881510e-08,-8.160956792445709741e-08,-8.487395064143537972e-08,-8.813833335841366203e-08,-9.140271607539194434e-08,-9.466709879237022664e-08,-9.793148150934850895e-08,-1.011958642263267913e-07,-1.044602469433050736e-07,-1.077246296602833559e-07,-1.109890123772616382e-07,-1.142533950942399205e-07,-1.175177778112182028e-07,-1.207821605281964851e-07,-1.240465432451747542e-07,-1.273109259621530233e-07,-1.305753086791312923e-07,-1.338396913961095614e-07,-1.371040741130878305e-07,-1.403684568300660996e-07,-1.436328395470443686e-07,-1.468972222640226377e-07,-1.501616049810009068e-07,-1.534259876979791758e-07,-1.566903704149574449e-07,-1.599547531319357140e-07,-1.632191358489139831e-07,-1.664835185658922521e-07,-1.697479012828705212e-07,-1.730122839998487903e-07,-1.762766667168270594e-07,-1.795410494338053284e-07,-1.828054321507835975e-07,-1.860698148677618666e-07,-1.893341975847401357e-07,-1.925985803017184047e-07,-1.958629630186966738e-07,-1.991273457356749429e-07,-2.023917284526532119e-07,-2.056561111696314810e-07 +0.000000000000000000e+00,-4.852258596293105808e-09,-9.704517192586211617e-09,-1.455677578887931825e-08,-1.940903438517242654e-08,-2.426129298146553483e-08,-2.911355157775864312e-08,-3.396581017405175141e-08,-3.881806877034485970e-08,-4.367032736663796799e-08,-4.852258596293107628e-08,-5.337484455922418457e-08,-5.822710315551729286e-08,-6.307936175181039453e-08,-6.793162034810348959e-08,-7.278387894439658464e-08,-7.763613754068967970e-08,-8.248839613698277475e-08,-8.734065473327586981e-08,-9.219291332956896487e-08,-9.704517192586205992e-08,-1.018974305221551550e-07,-1.067496891184482500e-07,-1.116019477147413451e-07,-1.164542063110344401e-07,-1.213064649073275352e-07,-1.261587235036206303e-07,-1.310109820999137253e-07,-1.358632406962068204e-07,-1.407154992924999154e-07,-1.455677578887930105e-07,-1.504200164850861055e-07,-1.552722750813792006e-07,-1.601245336776722956e-07,-1.649767922739653907e-07,-1.698290508702584857e-07,-1.746813094665515808e-07,-1.795335680628446759e-07,-1.843858266591377709e-07,-1.892380852554308660e-07,-1.940903438517239610e-07,-1.989426024480170561e-07,-2.037948610443101511e-07,-2.086471196406032462e-07,-2.134993782368963412e-07,-2.183516368331894363e-07,-2.232038954294825314e-07,-2.280561540257756264e-07,-2.329084126220687215e-07,-2.377606712183618165e-07,-2.426129298146549116e-07,-2.474651884109479802e-07,-2.523174470072410487e-07,-2.571697056035341173e-07,-2.620219641998271859e-07,-2.668742227961202545e-07,-2.717264813924133231e-07,-2.765787399887063917e-07,-2.814309985849994603e-07,-2.862832571812925288e-07,-2.911355157775855974e-07,-2.959877743738786660e-07,-3.008400329701717346e-07,-3.056922915664648032e-07 +0.000000000000000000e+00,-3.569528177315058934e-09,-7.139056354630117867e-09,-1.070858453194517763e-08,-1.427811270926023739e-08,-1.784764088657529715e-08,-2.141716906389035526e-08,-2.498669724120541336e-08,-2.855622541852047147e-08,-3.212575359583552957e-08,-3.569528177315058768e-08,-3.926480995046564579e-08,-4.283433812778070389e-08,-4.640386630509576200e-08,-4.997339448241082011e-08,-5.354292265972587821e-08,-5.711245083704093632e-08,-6.068197901435599443e-08,-6.425150719167105915e-08,-6.782103536898612387e-08,-7.139056354630118860e-08,-7.496009172361625332e-08,-7.852961990093131804e-08,-8.209914807824638277e-08,-8.566867625556144749e-08,-8.923820443287651222e-08,-9.280773261019157694e-08,-9.637726078750664166e-08,-9.994678896482170639e-08,-1.035163171421367711e-07,-1.070858453194518358e-07,-1.106553734967669006e-07,-1.142249016740819653e-07,-1.177944298513970300e-07,-1.213639580287120947e-07,-1.249334862060271462e-07,-1.285030143833421977e-07,-1.320725425606572492e-07,-1.356420707379723007e-07,-1.392115989152873522e-07,-1.427811270926024037e-07,-1.463506552699174552e-07,-1.499201834472325066e-07,-1.534897116245475581e-07,-1.570592398018626096e-07,-1.606287679791776611e-07,-1.641982961564927126e-07,-1.677678243338077641e-07,-1.713373525111228156e-07,-1.749068806884378671e-07,-1.784764088657529186e-07,-1.820459370430679700e-07,-1.856154652203830215e-07,-1.891849933976980730e-07,-1.927545215750131245e-07,-1.963240497523281760e-07,-1.998935779296432275e-07,-2.034631061069582790e-07,-2.070326342842733305e-07,-2.106021624615883820e-07,-2.141716906389034334e-07,-2.177412188162184849e-07,-2.213107469935335364e-07,-2.248802751708485879e-07 +0.000000000000000000e+00,-3.509030496014988313e-09,-7.018060992029976625e-09,-1.052709148804496535e-08,-1.403612198405995491e-08,-1.754515248007494611e-08,-2.105418297608993732e-08,-2.456321347210492853e-08,-2.807224396811991974e-08,-3.158127446413491094e-08,-3.509030496014990546e-08,-3.859933545616489998e-08,-4.210836595217989449e-08,-4.561739644819488901e-08,-4.912642694420988353e-08,-5.263545744022487804e-08,-5.614448793623987256e-08,-5.965351843225487369e-08,-6.316254892826987483e-08,-6.667157942428487596e-08,-7.018060992029987710e-08,-7.368964041631487823e-08,-7.719867091232987936e-08,-8.070770140834488050e-08,-8.421673190435988163e-08,-8.772576240037488277e-08,-9.123479289638988390e-08,-9.474382339240488503e-08,-9.825285388841988617e-08,-1.017618843844348873e-07,-1.052709148804498884e-07,-1.087799453764648896e-07,-1.122889758724798907e-07,-1.157980063684948918e-07,-1.193070368645099062e-07,-1.228160673605249206e-07,-1.263250978565399349e-07,-1.298341283525549493e-07,-1.333431588485699637e-07,-1.368521893445849781e-07,-1.403612198405999924e-07,-1.438702503366150068e-07,-1.473792808326300212e-07,-1.508883113286450355e-07,-1.543973418246600499e-07,-1.579063723206750643e-07,-1.614154028166900786e-07,-1.649244333127050930e-07,-1.684334638087201074e-07,-1.719424943047351217e-07,-1.754515248007501361e-07,-1.789605552967651505e-07,-1.824695857927801648e-07,-1.859786162887951792e-07,-1.894876467848101936e-07,-1.929966772808252080e-07,-1.965057077768402223e-07,-2.000147382728552367e-07,-2.035237687688702511e-07,-2.070327992648852654e-07,-2.105418297609002798e-07,-2.140508602569152942e-07,-2.175598907529303085e-07,-2.210689212489453229e-07 +0.000000000000000000e+00,-5.062080754760074723e-09,-1.012416150952014945e-08,-1.518624226428022417e-08,-2.024832301904029889e-08,-2.531040377380037362e-08,-3.037248452856044834e-08,-3.543456528332052637e-08,-4.049664603808060440e-08,-4.555872679284068244e-08,-5.062080754760076047e-08,-5.568288830236083850e-08,-6.074496905712090991e-08,-6.580704981188098133e-08,-7.086913056664105274e-08,-7.593121132140112416e-08,-8.099329207616119557e-08,-8.605537283092126699e-08,-9.111745358568133840e-08,-9.617953434044140982e-08,-1.012416150952014812e-07,-1.063036958499615526e-07,-1.113657766047216241e-07,-1.164278573594816955e-07,-1.214899381142417669e-07,-1.265520188690018515e-07,-1.316140996237619362e-07,-1.366761803785220208e-07,-1.417382611332821055e-07,-1.468003418880421901e-07,-1.518624226428022748e-07,-1.569245033975623594e-07,-1.619865841523224441e-07,-1.670486649070825287e-07,-1.721107456618426134e-07,-1.771728264166026980e-07,-1.822349071713627827e-07,-1.872969879261228673e-07,-1.923590686808829520e-07,-1.974211494356430366e-07,-2.024832301904031213e-07,-2.075453109451632059e-07,-2.126073916999232906e-07,-2.176694724546833752e-07,-2.227315532094434599e-07,-2.277936339642035445e-07,-2.328557147189636292e-07,-2.379177954737237138e-07,-2.429798762284837985e-07,-2.480419569832438831e-07,-2.531040377380039678e-07,-2.581661184927640524e-07,-2.632281992475241371e-07,-2.682902800022842217e-07,-2.733523607570443064e-07,-2.784144415118043910e-07,-2.834765222665644757e-07,-2.885386030213245603e-07,-2.936006837760846450e-07,-2.986627645308447296e-07,-3.037248452856048143e-07,-3.087869260403648989e-07,-3.138490067951249836e-07,-3.189110875498850682e-07 +0.000000000000000000e+00,-3.569528177310839485e-09,-7.139056354621678971e-09,-1.070858453193251846e-08,-1.427811270924335794e-08,-1.784764088655419743e-08,-2.141716906386503691e-08,-2.498669724117587640e-08,-2.855622541848671588e-08,-3.212575359579755868e-08,-3.569528177310840147e-08,-3.926480995041924426e-08,-4.283433812773008706e-08,-4.640386630504092985e-08,-4.997339448235177265e-08,-5.354292265966261544e-08,-5.711245083697345823e-08,-6.068197901428430103e-08,-6.425150719159514382e-08,-6.782103536890598662e-08,-7.139056354621682941e-08,-7.496009172352767220e-08,-7.852961990083851500e-08,-8.209914807814935779e-08,-8.566867625546020059e-08,-8.923820443277104338e-08,-9.280773261008188617e-08,-9.637726078739272897e-08,-9.994678896470357176e-08,-1.035163171420144146e-07,-1.070858453193252573e-07,-1.106553734966361001e-07,-1.142249016739469429e-07,-1.177944298512577857e-07,-1.213639580285686285e-07,-1.249334862058794713e-07,-1.285030143831903141e-07,-1.320725425605011569e-07,-1.356420707378119997e-07,-1.392115989151228425e-07,-1.427811270924336853e-07,-1.463506552697445281e-07,-1.499201834470553709e-07,-1.534897116243662137e-07,-1.570592398016770565e-07,-1.606287679789878993e-07,-1.641982961562987421e-07,-1.677678243336095848e-07,-1.713373525109204276e-07,-1.749068806882312704e-07,-1.784764088655421132e-07,-1.820459370428529560e-07,-1.856154652201637988e-07,-1.891849933974746416e-07,-1.927545215747854844e-07,-1.963240497520963272e-07,-1.998935779294071700e-07,-2.034631061067180128e-07,-2.070326342840288556e-07,-2.106021624613396984e-07,-2.141716906386505412e-07,-2.177412188159613840e-07,-2.213107469932722268e-07,-2.248802751705830696e-07 +0.000000000000000000e+00,-3.509030496009983870e-09,-7.018060992019967740e-09,-1.052709148802995202e-08,-1.403612198403993713e-08,-1.754515248004992225e-08,-2.105418297605990736e-08,-2.456321347206989247e-08,-2.807224396807987758e-08,-3.158127446408986600e-08,-3.509030496009985111e-08,-3.859933545610983622e-08,-4.210836595211982133e-08,-4.561739644812980644e-08,-4.912642694413979155e-08,-5.263545744014977666e-08,-5.614448793615976177e-08,-5.965351843216974688e-08,-6.316254892817973199e-08,-6.667157942418971710e-08,-7.018060992019970222e-08,-7.368964041620968733e-08,-7.719867091221967244e-08,-8.070770140822965755e-08,-8.421673190423964266e-08,-8.772576240024962777e-08,-9.123479289625961288e-08,-9.474382339226959799e-08,-9.825285388827958310e-08,-1.017618843842895682e-07,-1.052709148802995533e-07,-1.087799453763095384e-07,-1.122889758723195235e-07,-1.157980063683295087e-07,-1.193070368643394938e-07,-1.228160673603494789e-07,-1.263250978563594640e-07,-1.298341283523694491e-07,-1.333431588483794342e-07,-1.368521893443894193e-07,-1.403612198403994044e-07,-1.438702503364093895e-07,-1.473792808324193747e-07,-1.508883113284293598e-07,-1.543973418244393449e-07,-1.579063723204493300e-07,-1.614154028164593151e-07,-1.649244333124693002e-07,-1.684334638084792853e-07,-1.719424943044892704e-07,-1.754515248004992555e-07,-1.789605552965092406e-07,-1.824695857925192258e-07,-1.859786162885292109e-07,-1.894876467845391960e-07,-1.929966772805491811e-07,-1.965057077765591662e-07,-2.000147382725691513e-07,-2.035237687685791364e-07,-2.070327992645891215e-07,-2.105418297605991066e-07,-2.140508602566090918e-07,-2.175598907526190769e-07,-2.210689212486290620e-07 +0.000000000000000000e+00,-5.062080754756831348e-09,-1.012416150951366270e-08,-1.518624226427049322e-08,-2.024832301902732208e-08,-2.531040377378415095e-08,-3.037248452854097982e-08,-3.543456528329780868e-08,-4.049664603805463755e-08,-4.555872679281146642e-08,-5.062080754756829528e-08,-5.568288830232512415e-08,-6.074496905708194640e-08,-6.580704981183877527e-08,-7.086913056659560413e-08,-7.593121132135243300e-08,-8.099329207610926187e-08,-8.605537283086609073e-08,-9.111745358562291960e-08,-9.617953434037974847e-08,-1.012416150951365773e-07,-1.063036958498934062e-07,-1.113657766046502351e-07,-1.164278573594070639e-07,-1.214899381141638928e-07,-1.265520188689207217e-07,-1.316140996236775505e-07,-1.366761803784343794e-07,-1.417382611331912083e-07,-1.468003418879480371e-07,-1.518624226427048660e-07,-1.569245033974616949e-07,-1.619865841522185237e-07,-1.670486649069753526e-07,-1.721107456617321815e-07,-1.771728264164890103e-07,-1.822349071712458392e-07,-1.872969879260026681e-07,-1.923590686807594969e-07,-1.974211494355163258e-07,-2.024832301902731547e-07,-2.075453109450299835e-07,-2.126073916997868124e-07,-2.176694724545436413e-07,-2.227315532093004701e-07,-2.277936339640572990e-07,-2.328557147188141279e-07,-2.379177954735709567e-07,-2.429798762283277856e-07,-2.480419569830845880e-07,-2.531040377378413904e-07,-2.581661184925981928e-07,-2.632281992473549952e-07,-2.682902800021117976e-07,-2.733523607568686000e-07,-2.784144415116254024e-07,-2.834765222663822048e-07,-2.885386030211390072e-07,-2.936006837758958096e-07,-2.986627645306526120e-07,-3.037248452854094144e-07,-3.087869260401662168e-07,-3.138490067949230192e-07,-3.189110875496798215e-07 +0.000000000000000000e+00,-3.560759658737089748e-09,-7.121519317474179497e-09,-1.068227897621126883e-08,-1.424303863494835734e-08,-1.780379829368544750e-08,-2.136455795242253766e-08,-2.492531761115962782e-08,-2.848607726989671799e-08,-3.204683692863380815e-08,-3.560759658737089500e-08,-3.916835624610798185e-08,-4.272911590484506871e-08,-4.628987556358215556e-08,-4.985063522231924241e-08,-5.341139488105632927e-08,-5.697215453979341612e-08,-6.053291419853050297e-08,-6.409367385726758983e-08,-6.765443351600467668e-08,-7.121519317474176353e-08,-7.477595283347885039e-08,-7.833671249221593724e-08,-8.189747215095302409e-08,-8.545823180969011095e-08,-8.901899146842719780e-08,-9.257975112716428465e-08,-9.614051078590137150e-08,-9.970127044463845836e-08,-1.032620301033755452e-07,-1.068227897621126321e-07,-1.103835494208497189e-07,-1.139443090795868058e-07,-1.175050687383238926e-07,-1.210658283970609795e-07,-1.246265880557980663e-07,-1.281873477145351532e-07,-1.317481073732722400e-07,-1.353088670320093269e-07,-1.388696266907464137e-07,-1.424303863494835006e-07,-1.459911460082205874e-07,-1.495519056669576743e-07,-1.531126653256947612e-07,-1.566734249844318480e-07,-1.602341846431689349e-07,-1.637949443019060217e-07,-1.673557039606431086e-07,-1.709164636193801954e-07,-1.744772232781172823e-07,-1.780379829368543691e-07,-1.815987425955914560e-07,-1.851595022543285428e-07,-1.887202619130656297e-07,-1.922810215718027165e-07,-1.958417812305398034e-07,-1.994025408892768902e-07,-2.029633005480139771e-07,-2.065240602067510640e-07,-2.100848198654881508e-07,-2.136455795242252377e-07,-2.172063391829623245e-07,-2.207670988416994114e-07,-2.243278585004364982e-07 +0.000000000000000000e+00,-3.588419072635535669e-09,-7.176838145271071338e-09,-1.076525721790660742e-08,-1.435367629054214433e-08,-1.794209536317768124e-08,-2.153051443581321815e-08,-2.511893350844875506e-08,-2.870735258108429197e-08,-3.229577165371982888e-08,-3.588419072635536248e-08,-3.947260979899089608e-08,-4.306102887162642968e-08,-4.664944794426196328e-08,-5.023786701689749688e-08,-5.382628608953303048e-08,-5.741470516216856408e-08,-6.100312423480410430e-08,-6.459154330743964452e-08,-6.817996238007518474e-08,-7.176838145271072496e-08,-7.535680052534626517e-08,-7.894521959798180539e-08,-8.253363867061734561e-08,-8.612205774325288583e-08,-8.971047681588842605e-08,-9.329889588852396627e-08,-9.688731496115950648e-08,-1.004757340337950467e-07,-1.040641531064305869e-07,-1.076525721790661271e-07,-1.112409912517016674e-07,-1.148294103243372076e-07,-1.184178293969727478e-07,-1.220062484696082880e-07,-1.255946675422438282e-07,-1.291830866148793684e-07,-1.327715056875149087e-07,-1.363599247601504489e-07,-1.399483438327859891e-07,-1.435367629054215293e-07,-1.471251819780570695e-07,-1.507136010506926098e-07,-1.543020201233281500e-07,-1.578904391959636902e-07,-1.614788582685992304e-07,-1.650672773412347706e-07,-1.686556964138703108e-07,-1.722441154865058511e-07,-1.758325345591413913e-07,-1.794209536317769315e-07,-1.830093727044124717e-07,-1.865977917770480119e-07,-1.901862108496835522e-07,-1.937746299223190924e-07,-1.973630489949546326e-07,-2.009514680675901728e-07,-2.045398871402257130e-07,-2.081283062128612533e-07,-2.117167252854967935e-07,-2.153051443581323337e-07,-2.188935634307678739e-07,-2.224819825034034141e-07,-2.260704015760389543e-07 +0.000000000000000000e+00,-5.084016613113887896e-09,-1.016803322622777579e-08,-1.525204983934166534e-08,-2.033606645245555489e-08,-2.542008306556944444e-08,-3.050409967868333068e-08,-3.558811629179721693e-08,-4.067213290491110317e-08,-4.575614951802498941e-08,-5.084016613113887565e-08,-5.592418274425276189e-08,-6.100819935736664813e-08,-6.609221597048052776e-08,-7.117623258359440738e-08,-7.626024919670828701e-08,-8.134426580982216663e-08,-8.642828242293604625e-08,-9.151229903604992588e-08,-9.659631564916380550e-08,-1.016803322622776851e-07,-1.067643488753915648e-07,-1.118483654885054444e-07,-1.169323821016193240e-07,-1.220163987147332169e-07,-1.271004153278471097e-07,-1.321844319409610026e-07,-1.372684485540748954e-07,-1.423524651671887883e-07,-1.474364817803026812e-07,-1.525204983934165740e-07,-1.576045150065304669e-07,-1.626885316196443597e-07,-1.677725482327582526e-07,-1.728565648458721454e-07,-1.779405814589860383e-07,-1.830245980720999312e-07,-1.881086146852138240e-07,-1.931926312983277169e-07,-1.982766479114416097e-07,-2.033606645245555026e-07,-2.084446811376693955e-07,-2.135286977507832883e-07,-2.186127143638971812e-07,-2.236967309770110740e-07,-2.287807475901249669e-07,-2.338647642032388598e-07,-2.389487808163527526e-07,-2.440327974294666455e-07,-2.491168140425805383e-07,-2.542008306556944312e-07,-2.592848472688083241e-07,-2.643688638819222169e-07,-2.694528804950361098e-07,-2.745368971081500026e-07,-2.796209137212638955e-07,-2.847049303343777883e-07,-2.897889469474916812e-07,-2.948729635606055741e-07,-2.999569801737194669e-07,-3.050409967868333598e-07,-3.101250133999472526e-07,-3.152090300130611455e-07,-3.202930466261750384e-07 +0.000000000000000000e+00,-3.560759658734086255e-09,-7.121519317468172511e-09,-1.068227897620225918e-08,-1.424303863493634668e-08,-1.780379829367043252e-08,-2.136455795240451836e-08,-2.492531761113860420e-08,-2.848607726987269004e-08,-3.204683692860677589e-08,-3.560759658734086504e-08,-3.916835624607495419e-08,-4.272911590480904334e-08,-4.628987556354313249e-08,-4.985063522227722164e-08,-5.341139488101131079e-08,-5.697215453974539994e-08,-6.053291419847949571e-08,-6.409367385721359148e-08,-6.765443351594768724e-08,-7.121519317468178301e-08,-7.477595283341587878e-08,-7.833671249214997455e-08,-8.189747215088407032e-08,-8.545823180961816608e-08,-8.901899146835226185e-08,-9.257975112708635762e-08,-9.614051078582045339e-08,-9.970127044455454916e-08,-1.032620301032886449e-07,-1.068227897620227407e-07,-1.103835494207568365e-07,-1.139443090794909322e-07,-1.175050687382250280e-07,-1.210658283969591238e-07,-1.246265880556932195e-07,-1.281873477144273153e-07,-1.317481073731614111e-07,-1.353088670318955068e-07,-1.388696266906296026e-07,-1.424303863493636984e-07,-1.459911460080977941e-07,-1.495519056668318899e-07,-1.531126653255659857e-07,-1.566734249843000814e-07,-1.602341846430341772e-07,-1.637949443017682730e-07,-1.673557039605023687e-07,-1.709164636192364645e-07,-1.744772232779705603e-07,-1.780379829367046561e-07,-1.815987425954387518e-07,-1.851595022541728476e-07,-1.887202619129069434e-07,-1.922810215716410391e-07,-1.958417812303751349e-07,-1.994025408891092307e-07,-2.029633005478433264e-07,-2.065240602065774222e-07,-2.100848198653115180e-07,-2.136455795240456137e-07,-2.172063391827797095e-07,-2.207670988415138053e-07,-2.243278585002479010e-07 +0.000000000000000000e+00,-3.588419072631949014e-09,-7.176838145263898027e-09,-1.076525721789584745e-08,-1.435367629052779771e-08,-1.794209536315974796e-08,-2.153051443579169822e-08,-2.511893350842364847e-08,-2.870735258105559873e-08,-3.229577165368754898e-08,-3.588419072631949593e-08,-3.947260979895144287e-08,-4.306102887158338982e-08,-4.664944794421533676e-08,-5.023786701684728371e-08,-5.382628608947923066e-08,-5.741470516211117760e-08,-6.100312423474311793e-08,-6.459154330737505826e-08,-6.817996238000699859e-08,-7.176838145263893891e-08,-7.535680052527087924e-08,-7.894521959790281957e-08,-8.253363867053475990e-08,-8.612205774316670023e-08,-8.971047681579864056e-08,-9.329889588843058088e-08,-9.688731496106252121e-08,-1.004757340336944615e-07,-1.040641531063264019e-07,-1.076525721789583422e-07,-1.112409912515902825e-07,-1.148294103242222229e-07,-1.184178293968541632e-07,-1.220062484694861035e-07,-1.255946675421180438e-07,-1.291830866147499842e-07,-1.327715056873819245e-07,-1.363599247600138648e-07,-1.399483438326458052e-07,-1.435367629052777455e-07,-1.471251819779096858e-07,-1.507136010505416261e-07,-1.543020201231735665e-07,-1.578904391958055068e-07,-1.614788582684374471e-07,-1.650672773410693874e-07,-1.686556964137013278e-07,-1.722441154863332681e-07,-1.758325345589652084e-07,-1.794209536315971488e-07,-1.830093727042290891e-07,-1.865977917768610294e-07,-1.901862108494929697e-07,-1.937746299221249101e-07,-1.973630489947568504e-07,-2.009514680673887907e-07,-2.045398871400207311e-07,-2.081283062126526714e-07,-2.117167252852846117e-07,-2.153051443579165520e-07,-2.188935634305484924e-07,-2.224819825031804327e-07,-2.260704015758123730e-07 +0.000000000000000000e+00,-5.084016613111910107e-09,-1.016803322622382021e-08,-1.525204983933572949e-08,-2.033606645244763712e-08,-2.542008306555954475e-08,-3.050409967867145237e-08,-3.558811629178336000e-08,-4.067213290489526762e-08,-4.575614951800717525e-08,-5.084016613111908287e-08,-5.592418274423099050e-08,-6.100819935734289151e-08,-6.609221597045479913e-08,-7.117623258356670676e-08,-7.626024919667861438e-08,-8.134426580979052201e-08,-8.642828242290242963e-08,-9.151229903601433726e-08,-9.659631564912624489e-08,-1.016803322622381525e-07,-1.067643488753500601e-07,-1.118483654884619678e-07,-1.169323821015738754e-07,-1.220163987146857830e-07,-1.271004153277976906e-07,-1.321844319409095983e-07,-1.372684485540215059e-07,-1.423524651671334135e-07,-1.474364817802453211e-07,-1.525204983933572288e-07,-1.576045150064691364e-07,-1.626885316195810440e-07,-1.677725482326929516e-07,-1.728565648458048593e-07,-1.779405814589167669e-07,-1.830245980720286745e-07,-1.881086146851405821e-07,-1.931926312982524898e-07,-1.982766479113643974e-07,-2.033606645244763050e-07,-2.084446811375882126e-07,-2.135286977507001203e-07,-2.186127143638120279e-07,-2.236967309769239355e-07,-2.287807475900358432e-07,-2.338647642031477508e-07,-2.389487808162596849e-07,-2.440327974293716190e-07,-2.491168140424835531e-07,-2.542008306555954872e-07,-2.592848472687074213e-07,-2.643688638818193553e-07,-2.694528804949312894e-07,-2.745368971080432235e-07,-2.796209137211551576e-07,-2.847049303342670917e-07,-2.897889469473790258e-07,-2.948729635604909599e-07,-2.999569801736028940e-07,-3.050409967867148281e-07,-3.101250133998267622e-07,-3.152090300129386963e-07,-3.202930466260506304e-07 +0.000000000000000000e+00,-3.365407980573533909e-09,-6.730815961147067817e-09,-1.009622394172060131e-08,-1.346163192229413398e-08,-1.682703990286766665e-08,-2.019244788344119932e-08,-2.355785586401473198e-08,-2.692326384458826465e-08,-3.028867182516180063e-08,-3.365407980573533991e-08,-3.701948778630887920e-08,-4.038489576688241849e-08,-4.375030374745595777e-08,-4.711571172802949706e-08,-5.048111970860303634e-08,-5.384652768917657563e-08,-5.721193566975011491e-08,-6.057734365032365420e-08,-6.394275163089719348e-08,-6.730815961147073277e-08,-7.067356759204427205e-08,-7.403897557261781134e-08,-7.740438355319135063e-08,-8.076979153376488991e-08,-8.413519951433842920e-08,-8.750060749491196848e-08,-9.086601547548550777e-08,-9.423142345605904705e-08,-9.759683143663258634e-08,-1.009622394172061256e-07,-1.043276473977796649e-07,-1.076930553783532042e-07,-1.110584633589267435e-07,-1.144238713395002828e-07,-1.177892793200738221e-07,-1.211546873006473613e-07,-1.245200952812209006e-07,-1.278855032617944399e-07,-1.312509112423679792e-07,-1.346163192229415185e-07,-1.379817272035150578e-07,-1.413471351840885970e-07,-1.447125431646621363e-07,-1.480779511452356756e-07,-1.514433591258092149e-07,-1.548087671063827542e-07,-1.581741750869562935e-07,-1.615395830675298328e-07,-1.649049910481033720e-07,-1.682703990286769113e-07,-1.716358070092504506e-07,-1.750012149898239899e-07,-1.783666229703975292e-07,-1.817320309509710685e-07,-1.850974389315446078e-07,-1.884628469121181470e-07,-1.918282548926916863e-07,-1.951936628732652256e-07,-1.985590708538387649e-07,-2.019244788344123042e-07,-2.052898868149858435e-07,-2.086552947955593828e-07,-2.120207027761329220e-07 +0.000000000000000000e+00,-3.489011322354198848e-09,-6.978022644708397696e-09,-1.046703396706259572e-08,-1.395604528941679374e-08,-1.744505661177099176e-08,-2.093406793412519143e-08,-2.442307925647939111e-08,-2.791209057883359078e-08,-3.140110190118778715e-08,-3.489011322354198352e-08,-3.837912454589617988e-08,-4.186813586825037625e-08,-4.535714719060457262e-08,-4.884615851295876898e-08,-5.233516983531296535e-08,-5.582418115766716172e-08,-5.931319248002135808e-08,-6.280220380237554783e-08,-6.629121512472973758e-08,-6.978022644708392733e-08,-7.326923776943811708e-08,-7.675824909179230683e-08,-8.024726041414649658e-08,-8.373627173650068633e-08,-8.722528305885487607e-08,-9.071429438120906582e-08,-9.420330570356325557e-08,-9.769231702591744532e-08,-1.011813283482716351e-07,-1.046703396706258248e-07,-1.081593509929800146e-07,-1.116483623153342043e-07,-1.151373736376883941e-07,-1.186263849600425838e-07,-1.221153962823967736e-07,-1.256044076047509633e-07,-1.290934189271051531e-07,-1.325824302494593428e-07,-1.360714415718135326e-07,-1.395604528941677223e-07,-1.430494642165219121e-07,-1.465384755388761018e-07,-1.500274868612302916e-07,-1.535164981835844813e-07,-1.570055095059386711e-07,-1.604945208282928608e-07,-1.639835321506470506e-07,-1.674725434730012403e-07,-1.709615547953554301e-07,-1.744505661177096198e-07,-1.779395774400638095e-07,-1.814285887624179993e-07,-1.849176000847721890e-07,-1.884066114071263788e-07,-1.918956227294805685e-07,-1.953846340518347583e-07,-1.988736453741889480e-07,-2.023626566965431378e-07,-2.058516680188973275e-07,-2.093406793412515173e-07,-2.128296906636057070e-07,-2.163187019859598968e-07,-2.198077133083140865e-07 +0.000000000000000000e+00,-4.900253822903116471e-09,-9.800507645806232941e-09,-1.470076146870934941e-08,-1.960101529161246588e-08,-2.450126911451558401e-08,-2.940152293741870213e-08,-3.430177676032182026e-08,-3.920203058322493838e-08,-4.410228440612805651e-08,-4.900253822903117463e-08,-5.390279205193429276e-08,-5.880304587483741088e-08,-6.370329969774052901e-08,-6.860355352064364052e-08,-7.350380734354675202e-08,-7.840406116644986353e-08,-8.330431498935297504e-08,-8.820456881225608655e-08,-9.310482263515919805e-08,-9.800507645806230956e-08,-1.029053302809654211e-07,-1.078055841038685326e-07,-1.127058379267716441e-07,-1.176060917496747556e-07,-1.225063455725778671e-07,-1.274065993954809786e-07,-1.323068532183840901e-07,-1.372071070412872016e-07,-1.421073608641903131e-07,-1.470076146870934246e-07,-1.519078685099965361e-07,-1.568081223328996477e-07,-1.617083761558027592e-07,-1.666086299787058707e-07,-1.715088838016089822e-07,-1.764091376245120937e-07,-1.813093914474152052e-07,-1.862096452703183167e-07,-1.911098990932214282e-07,-1.960101529161245397e-07,-2.009104067390276512e-07,-2.058106605619307627e-07,-2.107109143848338742e-07,-2.156111682077369857e-07,-2.205114220306400973e-07,-2.254116758535432088e-07,-2.303119296764463203e-07,-2.352121834993494318e-07,-2.401124373222525698e-07,-2.450126911451556813e-07,-2.499129449680587928e-07,-2.548131987909619043e-07,-2.597134526138650158e-07,-2.646137064367681273e-07,-2.695139602596712388e-07,-2.744142140825743503e-07,-2.793144679054774618e-07,-2.842147217283805733e-07,-2.891149755512836848e-07,-2.940152293741867963e-07,-2.989154831970899078e-07,-3.038157370199930194e-07,-3.087159908428961309e-07 +0.000000000000000000e+00,-3.365407980571477538e-09,-6.730815961142955075e-09,-1.009622394171443220e-08,-1.346163192228590850e-08,-1.682703990285738645e-08,-2.019244788342886440e-08,-2.355785586400034235e-08,-2.692326384457182030e-08,-3.028867182514329825e-08,-3.365407980571477290e-08,-3.701948778628624754e-08,-4.038489576685772218e-08,-4.375030374742919682e-08,-4.711571172800067147e-08,-5.048111970857214611e-08,-5.384652768914362075e-08,-5.721193566971509539e-08,-6.057734365028657004e-08,-6.394275163085804468e-08,-6.730815961142951932e-08,-7.067356759200099396e-08,-7.403897557257246861e-08,-7.740438355314394325e-08,-8.076979153371541789e-08,-8.413519951428689253e-08,-8.750060749485836718e-08,-9.086601547542984182e-08,-9.423142345600131646e-08,-9.759683143657279111e-08,-1.009622394171442657e-07,-1.043276473977157404e-07,-1.076930553782872150e-07,-1.110584633588586897e-07,-1.144238713394301643e-07,-1.177892793200016390e-07,-1.211546873005731136e-07,-1.245200952811445882e-07,-1.278855032617160629e-07,-1.312509112422875375e-07,-1.346163192228590122e-07,-1.379817272034304868e-07,-1.413471351840019615e-07,-1.447125431645734361e-07,-1.480779511451449107e-07,-1.514433591257163854e-07,-1.548087671062878600e-07,-1.581741750868593347e-07,-1.615395830674308093e-07,-1.649049910480022840e-07,-1.682703990285737586e-07,-1.716358070091452332e-07,-1.750012149897167079e-07,-1.783666229702881825e-07,-1.817320309508596572e-07,-1.850974389314311318e-07,-1.884628469120026065e-07,-1.918282548925740811e-07,-1.951936628731455557e-07,-1.985590708537170304e-07,-2.019244788342885050e-07,-2.052898868148599797e-07,-2.086552947954314543e-07,-2.120207027760029290e-07 +0.000000000000000000e+00,-3.489011322351681324e-09,-6.978022644703362648e-09,-1.046703396705504356e-08,-1.395604528940672364e-08,-1.744505661175840207e-08,-2.093406793411008050e-08,-2.442307925646175893e-08,-2.791209057881343736e-08,-3.140110190116511578e-08,-3.489011322351679090e-08,-3.837912454586846602e-08,-4.186813586822014114e-08,-4.535714719057181626e-08,-4.884615851292349138e-08,-5.233516983527516650e-08,-5.582418115762684162e-08,-5.931319247997851674e-08,-6.280220380233019186e-08,-6.629121512468186698e-08,-6.978022644703354210e-08,-7.326923776938521722e-08,-7.675824909173689234e-08,-8.024726041408856746e-08,-8.373627173644024258e-08,-8.722528305879191770e-08,-9.071429438114359282e-08,-9.420330570349526794e-08,-9.769231702584694306e-08,-1.011813283481986182e-07,-1.046703396705502933e-07,-1.081593509929019684e-07,-1.116483623152536435e-07,-1.151373736376053187e-07,-1.186263849599569938e-07,-1.221153962823086821e-07,-1.256044076046603573e-07,-1.290934189270120324e-07,-1.325824302493637075e-07,-1.360714415717153826e-07,-1.395604528940670577e-07,-1.430494642164187329e-07,-1.465384755387704080e-07,-1.500274868611220831e-07,-1.535164981834737582e-07,-1.570055095058254333e-07,-1.604945208281771085e-07,-1.639835321505287836e-07,-1.674725434728804587e-07,-1.709615547952321338e-07,-1.744505661175838089e-07,-1.779395774399354841e-07,-1.814285887622871592e-07,-1.849176000846388343e-07,-1.884066114069905094e-07,-1.918956227293421845e-07,-1.953846340516938597e-07,-1.988736453740455348e-07,-2.023626566963972099e-07,-2.058516680187488850e-07,-2.093406793411005601e-07,-2.128296906634522353e-07,-2.163187019858039104e-07,-2.198077133081555855e-07 +0.000000000000000000e+00,-4.900253822902236351e-09,-9.800507645804472701e-09,-1.470076146870670905e-08,-1.960101529160894540e-08,-2.450126911451118341e-08,-2.940152293741342141e-08,-3.430177676031565942e-08,-3.920203058321789742e-08,-4.410228440612013543e-08,-4.900253822902237343e-08,-5.390279205192461144e-08,-5.880304587482684944e-08,-6.370329969772909406e-08,-6.860355352063133207e-08,-7.350380734353357007e-08,-7.840406116643580808e-08,-8.330431498933804608e-08,-8.820456881224028409e-08,-9.310482263514252209e-08,-9.800507645804476010e-08,-1.029053302809469981e-07,-1.078055841038492361e-07,-1.127058379267514741e-07,-1.176060917496537121e-07,-1.225063455725559501e-07,-1.274065993954581881e-07,-1.323068532183604261e-07,-1.372071070412626641e-07,-1.421073608641649021e-07,-1.470076146870671401e-07,-1.519078685099693782e-07,-1.568081223328716162e-07,-1.617083761557738542e-07,-1.666086299786760922e-07,-1.715088838015783302e-07,-1.764091376244805682e-07,-1.813093914473828062e-07,-1.862096452702850442e-07,-1.911098990931872822e-07,-1.960101529160895202e-07,-2.009104067389917582e-07,-2.058106605618939962e-07,-2.107109143847962342e-07,-2.156111682076984722e-07,-2.205114220306007102e-07,-2.254116758535029482e-07,-2.303119296764051862e-07,-2.352121834993074242e-07,-2.401124373222096887e-07,-2.450126911451119532e-07,-2.499129449680142177e-07,-2.548131987909164821e-07,-2.597134526138187466e-07,-2.646137064367210111e-07,-2.695139602596232756e-07,-2.744142140825255400e-07,-2.793144679054278045e-07,-2.842147217283300690e-07,-2.891149755512323335e-07,-2.940152293741345979e-07,-2.989154831970368624e-07,-3.038157370199391269e-07,-3.087159908428413914e-07 +0.000000000000000000e+00,-9.647082149589642737e-10,-1.929416429917928547e-09,-2.894124644876892614e-09,-3.858832859835856268e-09,-4.823541074794819921e-09,-5.788249289753783574e-09,-6.752957504712747228e-09,-7.717665719671710881e-09,-8.682373934630673707e-09,-9.647082149589636533e-09,-1.061179036454859936e-08,-1.157649857950756219e-08,-1.254120679446652501e-08,-1.350591500942548784e-08,-1.447062322438445066e-08,-1.543533143934341184e-08,-1.640003965430237301e-08,-1.736474786926133418e-08,-1.832945608422029535e-08,-1.929416429917925652e-08,-2.025887251413821770e-08,-2.122358072909717887e-08,-2.218828894405614004e-08,-2.315299715901510121e-08,-2.411770537397406238e-08,-2.508241358893302355e-08,-2.604712180389198473e-08,-2.701183001885094590e-08,-2.797653823380990707e-08,-2.894124644876886824e-08,-2.990595466372782610e-08,-3.087066287868678397e-08,-3.183537109364574183e-08,-3.280007930860469969e-08,-3.376478752356365756e-08,-3.472949573852261542e-08,-3.569420395348157328e-08,-3.665891216844053115e-08,-3.762362038339948901e-08,-3.858832859835844687e-08,-3.955303681331740474e-08,-4.051774502827636260e-08,-4.148245324323532046e-08,-4.244716145819427832e-08,-4.341186967315323619e-08,-4.437657788811219405e-08,-4.534128610307115191e-08,-4.630599431803010978e-08,-4.727070253298906764e-08,-4.823541074794802550e-08,-4.920011896290698337e-08,-5.016482717786594123e-08,-5.112953539282489909e-08,-5.209424360778385696e-08,-5.305895182274281482e-08,-5.402366003770177268e-08,-5.498836825266073054e-08,-5.595307646761968841e-08,-5.691778468257864627e-08,-5.788249289753760413e-08,-5.884720111249656200e-08,-5.981190932745551986e-08,-6.077661754241447772e-08 +0.000000000000000000e+00,-2.918452434537339870e-09,-5.836904869074679741e-09,-8.755357303612019197e-09,-1.167380973814935783e-08,-1.459226217268669646e-08,-1.751071460722403509e-08,-2.042916704176137206e-08,-2.334761947629870904e-08,-2.626607191083604601e-08,-2.918452434537338299e-08,-3.210297677991071996e-08,-3.502142921444805694e-08,-3.793988164898539391e-08,-4.085833408352273089e-08,-4.377678651806006786e-08,-4.669523895259740484e-08,-4.961369138713474181e-08,-5.253214382167207879e-08,-5.545059625620941576e-08,-5.836904869074675274e-08,-6.128750112528408971e-08,-6.420595355982142669e-08,-6.712440599435876366e-08,-7.004285842889610064e-08,-7.296131086343343761e-08,-7.587976329797077459e-08,-7.879821573250811156e-08,-8.171666816704544854e-08,-8.463512060158278551e-08,-8.755357303612012249e-08,-9.047202547065745946e-08,-9.339047790519479644e-08,-9.630893033973213341e-08,-9.922738277426947039e-08,-1.021458352088068074e-07,-1.050642876433441443e-07,-1.079827400778814813e-07,-1.109011925124188183e-07,-1.138196449469561553e-07,-1.167380973814934922e-07,-1.196565498160308292e-07,-1.225750022505681794e-07,-1.254934546851055296e-07,-1.284119071196428798e-07,-1.313303595541802301e-07,-1.342488119887175803e-07,-1.371672644232549305e-07,-1.400857168577922807e-07,-1.430041692923296309e-07,-1.459226217268669811e-07,-1.488410741614043313e-07,-1.517595265959416815e-07,-1.546779790304790317e-07,-1.575964314650163819e-07,-1.605148838995537322e-07,-1.634333363340910824e-07,-1.663517887686284326e-07,-1.692702412031657828e-07,-1.721886936377031330e-07,-1.751071460722404832e-07,-1.780255985067778334e-07,-1.809440509413151836e-07,-1.838625033758525338e-07 +0.000000000000000000e+00,-3.024877559841867768e-09,-6.049755119683735536e-09,-9.074632679525602890e-09,-1.209951023936746942e-08,-1.512438779920933594e-08,-1.814926535905120247e-08,-2.117414291889306900e-08,-2.419902047873493553e-08,-2.722389803857680205e-08,-3.024877559841866527e-08,-3.327365315826053180e-08,-3.629853071810239833e-08,-3.932340827794426485e-08,-4.234828583778613138e-08,-4.537316339762799791e-08,-4.839804095746986443e-08,-5.142291851731173096e-08,-5.444779607715359749e-08,-5.747267363699546402e-08,-6.049755119683733054e-08,-6.352242875667919707e-08,-6.654730631652106360e-08,-6.957218387636293012e-08,-7.259706143620479665e-08,-7.562193899604666318e-08,-7.864681655588852971e-08,-8.167169411573039623e-08,-8.469657167557226276e-08,-8.772144923541412929e-08,-9.074632679525599581e-08,-9.377120435509786234e-08,-9.679608191493972887e-08,-9.982095947478159540e-08,-1.028458370346234619e-07,-1.058707145944653284e-07,-1.088955921543071950e-07,-1.119204697141490615e-07,-1.149453472739909280e-07,-1.179702248338327946e-07,-1.209951023936746611e-07,-1.240199799535165276e-07,-1.270448575133583941e-07,-1.300697350732002607e-07,-1.330946126330421272e-07,-1.361194901928839937e-07,-1.391443677527258602e-07,-1.421692453125677268e-07,-1.451941228724095933e-07,-1.482190004322514598e-07,-1.512438779920933264e-07,-1.542687555519351929e-07,-1.572936331117770594e-07,-1.603185106716189259e-07,-1.633433882314607925e-07,-1.663682657913026590e-07,-1.693931433511445255e-07,-1.724180209109863920e-07,-1.754428984708282586e-07,-1.784677760306701251e-07,-1.814926535905119916e-07,-1.845175311503538582e-07,-1.875424087101957247e-07,-1.905672862700375912e-07 +0.000000000000000000e+00,-1.547559318518638482e-09,-3.095118637037276963e-09,-4.642677955555915445e-09,-6.190237274074553927e-09,-7.737796592593192408e-09,-9.285355911111830890e-09,-1.083291522963046937e-08,-1.238047454814910785e-08,-1.392803386666774634e-08,-1.547559318518638482e-08,-1.702315250370502495e-08,-1.857071182222366509e-08,-2.011827114074230523e-08,-2.166583045926094536e-08,-2.321338977777958550e-08,-2.476094909629822563e-08,-2.630850841481686577e-08,-2.785606773333550591e-08,-2.940362705185414604e-08,-3.095118637037278949e-08,-3.249874568889143293e-08,-3.404630500741007638e-08,-3.559386432592871982e-08,-3.714142364444736327e-08,-3.868898296296600671e-08,-4.023654228148465015e-08,-4.178410160000329360e-08,-4.333166091852193704e-08,-4.487922023704058049e-08,-4.642677955555922393e-08,-4.797433887407786738e-08,-4.952189819259651082e-08,-5.106945751111515427e-08,-5.261701682963379771e-08,-5.416457614815244116e-08,-5.571213546667108460e-08,-5.725969478518972805e-08,-5.880725410370837149e-08,-6.035481342222702155e-08,-6.190237274074567162e-08,-6.344993205926432168e-08,-6.499749137778297174e-08,-6.654505069630162180e-08,-6.809261001482027187e-08,-6.964016933333892193e-08,-7.118772865185757199e-08,-7.273528797037622205e-08,-7.428284728889487211e-08,-7.583040660741352218e-08,-7.737796592593217224e-08,-7.892552524445082230e-08,-8.047308456296947236e-08,-8.202064388148812243e-08,-8.356820320000677249e-08,-8.511576251852542255e-08,-8.666332183704407261e-08,-8.821088115556272267e-08,-8.975844047408137274e-08,-9.130599979260002280e-08,-9.285355911111867286e-08,-9.440111842963732292e-08,-9.594867774815597299e-08,-9.749623706667462305e-08 +0.000000000000000000e+00,-4.360629430788857138e-09,-8.721258861577714276e-09,-1.308188829236657224e-08,-1.744251772315543186e-08,-2.180314715394429148e-08,-2.616377658473315110e-08,-3.052440601552201072e-08,-3.488503544631087034e-08,-3.924566487709972996e-08,-4.360629430788858958e-08,-4.796692373867744920e-08,-5.232755316946630882e-08,-5.668818260025516844e-08,-6.104881203104403468e-08,-6.540944146183289429e-08,-6.977007089262175391e-08,-7.413070032341061353e-08,-7.849132975419947315e-08,-8.285195918498833277e-08,-8.721258861577719239e-08,-9.157321804656605201e-08,-9.593384747735491163e-08,-1.002944769081437713e-07,-1.046551063389326309e-07,-1.090157357697214905e-07,-1.133763652005103501e-07,-1.177369946312992097e-07,-1.220976240620880694e-07,-1.264582534928769290e-07,-1.308188829236657886e-07,-1.351795123544546482e-07,-1.395401417852435078e-07,-1.439007712160323674e-07,-1.482614006468212271e-07,-1.526220300776100867e-07,-1.569826595083989463e-07,-1.613432889391878059e-07,-1.657039183699766655e-07,-1.700645478007655252e-07,-1.744251772315543848e-07,-1.787858066623432444e-07,-1.831464360931321040e-07,-1.875070655239209636e-07,-1.918676949547098233e-07,-1.962283243854986829e-07,-2.005889538162875425e-07,-2.049495832470764021e-07,-2.093102126778652617e-07,-2.136708421086541214e-07,-2.180314715394429810e-07,-2.223921009702318406e-07,-2.267527304010207002e-07,-2.311133598318095598e-07,-2.354739892625984195e-07,-2.398346186933872791e-07,-2.441952481241761387e-07,-2.485558775549649983e-07,-2.529165069857538579e-07,-2.572771364165427176e-07,-2.616377658473315772e-07,-2.659983952781204368e-07,-2.703590247089092964e-07,-2.747196541396981560e-07 +0.000000000000000000e+00,-1.613526283427653531e-09,-3.227052566855307062e-09,-4.840578850282961006e-09,-6.454105133710614951e-09,-8.067631417138268895e-09,-9.681157700565922012e-09,-1.129468398399357513e-08,-1.290821026742122825e-08,-1.452173655084888136e-08,-1.613526283427653448e-08,-1.774878911770418594e-08,-1.936231540113183741e-08,-2.097584168455948887e-08,-2.258936796798714033e-08,-2.420289425141479180e-08,-2.581642053484244326e-08,-2.742994681827009472e-08,-2.904347310169774618e-08,-3.065699938512539765e-08,-3.227052566855304911e-08,-3.388405195198070057e-08,-3.549757823540835204e-08,-3.711110451883600350e-08,-3.872463080226365496e-08,-4.033815708569130643e-08,-4.195168336911895789e-08,-4.356520965254660935e-08,-4.517873593597426081e-08,-4.679226221940191228e-08,-4.840578850282956374e-08,-5.001931478625721520e-08,-5.163284106968486667e-08,-5.324636735311251813e-08,-5.485989363654016959e-08,-5.647341991996782105e-08,-5.808694620339547252e-08,-5.970047248682312398e-08,-6.131399877025076883e-08,-6.292752505367841367e-08,-6.454105133710605852e-08,-6.615457762053370336e-08,-6.776810390396134821e-08,-6.938163018738899305e-08,-7.099515647081663790e-08,-7.260868275424428274e-08,-7.422220903767192759e-08,-7.583573532109957243e-08,-7.744926160452721728e-08,-7.906278788795486213e-08,-8.067631417138250697e-08,-8.228984045481015182e-08,-8.390336673823779666e-08,-8.551689302166544151e-08,-8.713041930509308635e-08,-8.874394558852073120e-08,-9.035747187194837604e-08,-9.197099815537602089e-08,-9.358452443880366574e-08,-9.519805072223131058e-08,-9.681157700565895543e-08,-9.842510328908660027e-08,-1.000386295725142451e-07,-1.016521558559418900e-07 +0.000000000000000000e+00,-3.001377637730139536e-09,-6.002755275460279072e-09,-9.004132913190419022e-09,-1.200551055092055980e-08,-1.500688818865070223e-08,-1.800826582638084466e-08,-2.100964346411098709e-08,-2.401102110184112952e-08,-2.701239873957127195e-08,-3.001377637730141769e-08,-3.301515401503156343e-08,-3.601653165276170917e-08,-3.901790929049185491e-08,-4.201928692822200065e-08,-4.502066456595214639e-08,-4.802204220368229213e-08,-5.102341984141243787e-08,-5.402479747914258361e-08,-5.702617511687272935e-08,-6.002755275460287509e-08,-6.302893039233302083e-08,-6.603030803006316657e-08,-6.903168566779331231e-08,-7.203306330552345805e-08,-7.503444094325360379e-08,-7.803581858098374953e-08,-8.103719621871389527e-08,-8.403857385644404101e-08,-8.703995149417418675e-08,-9.004132913190433249e-08,-9.304270676963447823e-08,-9.604408440736462397e-08,-9.904546204509476971e-08,-1.020468396828249155e-07,-1.050482173205550612e-07,-1.080495949582852069e-07,-1.110509725960153527e-07,-1.140523502337454984e-07,-1.170537278714756441e-07,-1.200551055092057767e-07,-1.230564831469359092e-07,-1.260578607846660417e-07,-1.290592384223961742e-07,-1.320606160601263067e-07,-1.350619936978564392e-07,-1.380633713355865717e-07,-1.410647489733167042e-07,-1.440661266110468367e-07,-1.470675042487769692e-07,-1.500688818865071017e-07,-1.530702595242372342e-07,-1.560716371619673667e-07,-1.590730147996974992e-07,-1.620743924374276317e-07,-1.650757700751577642e-07,-1.680771477128878967e-07,-1.710785253506180292e-07,-1.740799029883481617e-07,-1.770812806260782942e-07,-1.800826582638084268e-07,-1.830840359015385593e-07,-1.860854135392686918e-07,-1.890867911769988243e-07 +0.000000000000000000e+00,-4.510577346633351676e-09,-9.021154693266703353e-09,-1.353173203990005503e-08,-1.804230938653340671e-08,-2.255288673316675838e-08,-2.706346407980011006e-08,-3.157404142643346173e-08,-3.608461877306681341e-08,-4.059519611970016509e-08,-4.510577346633351676e-08,-4.961635081296686844e-08,-5.412692815960022012e-08,-5.863750550623357179e-08,-6.314808285286692347e-08,-6.765866019950027514e-08,-7.216923754613362682e-08,-7.667981489276697850e-08,-8.119039223940033017e-08,-8.570096958603368185e-08,-9.021154693266703353e-08,-9.472212427930038520e-08,-9.923270162593373688e-08,-1.037432789725670886e-07,-1.082538563192004402e-07,-1.127644336658337919e-07,-1.172750110124671436e-07,-1.217855883591004820e-07,-1.262961657057338205e-07,-1.308067430523671589e-07,-1.353173203990004973e-07,-1.398278977456338358e-07,-1.443384750922671742e-07,-1.488490524389005127e-07,-1.533596297855338511e-07,-1.578702071321671896e-07,-1.623807844788005280e-07,-1.668913618254338664e-07,-1.714019391720672049e-07,-1.759125165187005433e-07,-1.804230938653338818e-07,-1.849336712119672202e-07,-1.894442485586005586e-07,-1.939548259052338971e-07,-1.984654032518672355e-07,-2.029759805985005740e-07,-2.074865579451339124e-07,-2.119971352917672509e-07,-2.165077126384005893e-07,-2.210182899850339277e-07,-2.255288673316672662e-07,-2.300394446783006046e-07,-2.345500220249339431e-07,-2.390605993715672815e-07,-2.435711767182006464e-07,-2.480817540648340113e-07,-2.525923314114673762e-07,-2.571029087581007411e-07,-2.616134861047341061e-07,-2.661240634513674710e-07,-2.706346407980008359e-07,-2.751452181446342008e-07,-2.796557954912675657e-07,-2.841663728379009306e-07 +0.000000000000000000e+00,-9.647082149492602044e-10,-1.929416429898520409e-09,-2.894124644847780820e-09,-3.858832859797041645e-09,-4.823541074746302469e-09,-5.788249289695563294e-09,-6.752957504644824119e-09,-7.717665719594084944e-09,-8.682373934543346596e-09,-9.647082149492608248e-09,-1.061179036444186990e-08,-1.157649857939113155e-08,-1.254120679434039320e-08,-1.350591500928965486e-08,-1.447062322423891651e-08,-1.543533143918817981e-08,-1.640003965413744312e-08,-1.736474786908670643e-08,-1.832945608403596973e-08,-1.929416429898523304e-08,-2.025887251393449635e-08,-2.122358072888375965e-08,-2.218828894383302296e-08,-2.315299715878228626e-08,-2.411770537373154957e-08,-2.508241358868081288e-08,-2.604712180363007618e-08,-2.701183001857933949e-08,-2.797653823352860280e-08,-2.894124644847786610e-08,-2.990595466342712941e-08,-3.087066287837639271e-08,-3.183537109332565602e-08,-3.280007930827491933e-08,-3.376478752322418263e-08,-3.472949573817344594e-08,-3.569420395312270925e-08,-3.665891216807197255e-08,-3.762362038302123586e-08,-3.858832859797049916e-08,-3.955303681291976247e-08,-4.051774502786902578e-08,-4.148245324281828908e-08,-4.244716145776755239e-08,-4.341186967271681570e-08,-4.437657788766607900e-08,-4.534128610261534231e-08,-4.630599431756460562e-08,-4.727070253251386892e-08,-4.823541074746313223e-08,-4.920011896241239553e-08,-5.016482717736165884e-08,-5.112953539231092215e-08,-5.209424360726018545e-08,-5.305895182220944876e-08,-5.402366003715871207e-08,-5.498836825210797537e-08,-5.595307646705723868e-08,-5.691778468200650198e-08,-5.788249289695576529e-08,-5.884720111190502860e-08,-5.981190932685428529e-08,-6.077661754180354197e-08 +0.000000000000000000e+00,-2.918452434527384752e-09,-5.836904869054769503e-09,-8.755357303582154668e-09,-1.167380973810954066e-08,-1.459226217263692665e-08,-1.751071460716431265e-08,-2.042916704169169698e-08,-2.334761947621908132e-08,-2.626607191074646566e-08,-2.918452434527385000e-08,-3.210297677980123434e-08,-3.502142921432861867e-08,-3.793988164885600301e-08,-4.085833408338338735e-08,-4.377678651791077169e-08,-4.669523895243815603e-08,-4.961369138696554036e-08,-5.253214382149292470e-08,-5.545059625602030904e-08,-5.836904869054769338e-08,-6.128750112507508433e-08,-6.420595355960248191e-08,-6.712440599412987948e-08,-7.004285842865727705e-08,-7.296131086318467462e-08,-7.587976329771207220e-08,-7.879821573223946977e-08,-8.171666816676686734e-08,-8.463512060129426492e-08,-8.755357303582166249e-08,-9.047202547034906006e-08,-9.339047790487645763e-08,-9.630893033940385521e-08,-9.922738277393125278e-08,-1.021458352084586504e-07,-1.050642876429860479e-07,-1.079827400775134455e-07,-1.109011925120408431e-07,-1.138196449465682406e-07,-1.167380973810956382e-07,-1.196565498156230358e-07,-1.225750022501504334e-07,-1.254934546846778309e-07,-1.284119071192052285e-07,-1.313303595537326261e-07,-1.342488119882600237e-07,-1.371672644227874212e-07,-1.400857168573148188e-07,-1.430041692918422164e-07,-1.459226217263696139e-07,-1.488410741608970115e-07,-1.517595265954244091e-07,-1.546779790299518067e-07,-1.575964314644792042e-07,-1.605148838990066018e-07,-1.634333363335339994e-07,-1.663517887680613970e-07,-1.692702412025887945e-07,-1.721886936371161921e-07,-1.751071460716435897e-07,-1.780255985061709872e-07,-1.809440509406983848e-07,-1.838625033752257824e-07 +0.000000000000000000e+00,-3.001377637725197959e-09,-6.002755275450395918e-09,-9.004132913175594291e-09,-1.200551055090079349e-08,-1.500688818862599269e-08,-1.800826582635119189e-08,-2.100964346407639109e-08,-2.401102110180159029e-08,-2.701239873952678949e-08,-3.001377637725198538e-08,-3.301515401497718127e-08,-3.601653165270237716e-08,-3.901790929042757305e-08,-4.201928692815276894e-08,-4.502066456587796484e-08,-4.802204220360316073e-08,-5.102341984132835662e-08,-5.402479747905355251e-08,-5.702617511677874840e-08,-6.002755275450394429e-08,-6.302893039222914018e-08,-6.603030802995433607e-08,-6.903168566767953196e-08,-7.203306330540472786e-08,-7.503444094312992375e-08,-7.803581858085511964e-08,-8.103719621858031553e-08,-8.403857385630551142e-08,-8.703995149403070731e-08,-9.004132913175590320e-08,-9.304270676948109909e-08,-9.604408440720629498e-08,-9.904546204493149087e-08,-1.020468396826566868e-07,-1.050482173203818827e-07,-1.080495949581070785e-07,-1.110509725958322744e-07,-1.140523502335574703e-07,-1.170537278712826662e-07,-1.200551055090078621e-07,-1.230564831467330448e-07,-1.260578607844582274e-07,-1.290592384221834101e-07,-1.320606160599085927e-07,-1.350619936976337754e-07,-1.380633713353589580e-07,-1.410647489730841407e-07,-1.440661266108093234e-07,-1.470675042485345060e-07,-1.500688818862596887e-07,-1.530702595239848713e-07,-1.560716371617100540e-07,-1.590730147994352366e-07,-1.620743924371604193e-07,-1.650757700748856020e-07,-1.680771477126107846e-07,-1.710785253503359673e-07,-1.740799029880611499e-07,-1.770812806257863326e-07,-1.800826582635115152e-07,-1.830840359012366979e-07,-1.860854135389618805e-07,-1.890867911766870632e-07 +0.000000000000000000e+00,-1.547559318508693910e-09,-3.095118637017387819e-09,-4.642677955526081522e-09,-6.190237274034774811e-09,-7.737796592543467273e-09,-9.285355911052159735e-09,-1.083291522956085220e-08,-1.238047454806954466e-08,-1.392803386657823712e-08,-1.547559318508692793e-08,-1.702315250359561874e-08,-1.857071182210430954e-08,-2.011827114061300035e-08,-2.166583045912169116e-08,-2.321338977763038197e-08,-2.476094909613907277e-08,-2.630850841464776358e-08,-2.785606773315645439e-08,-2.940362705166514520e-08,-3.095118637017383601e-08,-3.249874568868252681e-08,-3.404630500719121762e-08,-3.559386432569990843e-08,-3.714142364420859924e-08,-3.868898296271729004e-08,-4.023654228122598085e-08,-4.178410159973467166e-08,-4.333166091824336247e-08,-4.487922023675205327e-08,-4.642677955526074408e-08,-4.797433887376943489e-08,-4.952189819227812570e-08,-5.106945751078681650e-08,-5.261701682929550731e-08,-5.416457614780419812e-08,-5.571213546631288893e-08,-5.725969478482157974e-08,-5.880725410333027054e-08,-6.035481342183896135e-08,-6.190237274034765878e-08,-6.344993205885635620e-08,-6.499749137736505363e-08,-6.654505069587375105e-08,-6.809261001438244848e-08,-6.964016933289114590e-08,-7.118772865139984333e-08,-7.273528796990854075e-08,-7.428284728841723818e-08,-7.583040660692593560e-08,-7.737796592543463303e-08,-7.892552524394333045e-08,-8.047308456245202788e-08,-8.202064388096072530e-08,-8.356820319946942273e-08,-8.511576251797812015e-08,-8.666332183648681758e-08,-8.821088115499551500e-08,-8.975844047350421243e-08,-9.130599979201290985e-08,-9.285355911052160728e-08,-9.440111842903030470e-08,-9.594867774753900213e-08,-9.749623706604769955e-08 +0.000000000000000000e+00,-4.360629430780159334e-09,-8.721258861560318668e-09,-1.308188829234047800e-08,-1.744251772312063734e-08,-2.180314715390079502e-08,-2.616377658468095270e-08,-3.052440601546111037e-08,-3.488503544624126805e-08,-3.924566487702142573e-08,-4.360629430780158341e-08,-4.796692373858174109e-08,-5.232755316936189877e-08,-5.668818260014205645e-08,-6.104881203092222075e-08,-6.540944146170238505e-08,-6.977007089248254934e-08,-7.413070032326271364e-08,-7.849132975404287794e-08,-8.285195918482304223e-08,-8.721258861560320653e-08,-9.157321804638337083e-08,-9.593384747716353513e-08,-1.002944769079436994e-07,-1.046551063387238637e-07,-1.090157357695040280e-07,-1.133763652002841923e-07,-1.177369946310643566e-07,-1.220976240618445209e-07,-1.264582534926246720e-07,-1.308188829234048230e-07,-1.351795123541849741e-07,-1.395401417849651252e-07,-1.439007712157452762e-07,-1.482614006465254273e-07,-1.526220300773055783e-07,-1.569826595080857294e-07,-1.613432889388658805e-07,-1.657039183696460315e-07,-1.700645478004261826e-07,-1.744251772312063337e-07,-1.787858066619864847e-07,-1.831464360927666358e-07,-1.875070655235467868e-07,-1.918676949543269379e-07,-1.962283243851070890e-07,-2.005889538158872400e-07,-2.049495832466673911e-07,-2.093102126774475422e-07,-2.136708421082276932e-07,-2.180314715390078443e-07,-2.223921009697879953e-07,-2.267527304005681464e-07,-2.311133598313482975e-07,-2.354739892621284485e-07,-2.398346186929085996e-07,-2.441952481236887771e-07,-2.485558775544689547e-07,-2.529165069852491322e-07,-2.572771364160293097e-07,-2.616377658468094872e-07,-2.659983952775896648e-07,-2.703590247083698423e-07,-2.747196541391500198e-07 +0.000000000000000000e+00,-1.613526283418969375e-09,-3.227052566837938750e-09,-4.840578850256908126e-09,-6.454105133675877501e-09,-8.067631417094846876e-09,-9.681157700513816251e-09,-1.129468398393278563e-08,-1.290821026735175500e-08,-1.452173655077072438e-08,-1.613526283418969375e-08,-1.774878911760866313e-08,-1.936231540102763250e-08,-2.097584168444660188e-08,-2.258936796786557125e-08,-2.420289425128454063e-08,-2.581642053470351000e-08,-2.742994681812247938e-08,-2.904347310154144875e-08,-3.065699938496041813e-08,-3.227052566837938750e-08,-3.388405195179835688e-08,-3.549757823521732625e-08,-3.711110451863629563e-08,-3.872463080205526500e-08,-4.033815708547423438e-08,-4.195168336889320376e-08,-4.356520965231217313e-08,-4.517873593573114251e-08,-4.679226221915011188e-08,-4.840578850256908126e-08,-5.001931478598805063e-08,-5.163284106940702001e-08,-5.324636735282598938e-08,-5.485989363624495876e-08,-5.647341991966392813e-08,-5.808694620308289751e-08,-5.970047248650187350e-08,-6.131399876992084949e-08,-6.292752505333982549e-08,-6.454105133675880148e-08,-6.615457762017777747e-08,-6.776810390359675346e-08,-6.938163018701572946e-08,-7.099515647043470545e-08,-7.260868275385368144e-08,-7.422220903727265743e-08,-7.583573532069163343e-08,-7.744926160411060942e-08,-7.906278788752958541e-08,-8.067631417094856140e-08,-8.228984045436753740e-08,-8.390336673778651339e-08,-8.551689302120548938e-08,-8.713041930462446538e-08,-8.874394558804344137e-08,-9.035747187146241736e-08,-9.197099815488139335e-08,-9.358452443830036935e-08,-9.519805072171934534e-08,-9.681157700513832133e-08,-9.842510328855729732e-08,-1.000386295719762733e-07,-1.016521558553952493e-07 +0.000000000000000000e+00,-7.321474841435266104e-10,-1.464294968287053221e-09,-2.196442452430579935e-09,-2.928589936574106855e-09,-3.660737420717633776e-09,-4.392884904861160697e-09,-5.125032389004687617e-09,-5.857179873148214538e-09,-6.589327357291741458e-09,-7.321474841435268379e-09,-8.053622325578794472e-09,-8.785769809722319739e-09,-9.517917293865845005e-09,-1.025006477800937027e-08,-1.098221226215289554e-08,-1.171435974629642080e-08,-1.244650723043994607e-08,-1.317865471458347134e-08,-1.391080219872699660e-08,-1.464294968287052187e-08,-1.537509716701404714e-08,-1.610724465115757240e-08,-1.683939213530109767e-08,-1.757153961944462293e-08,-1.830368710358814820e-08,-1.903583458773167347e-08,-1.976798207187519873e-08,-2.050012955601872400e-08,-2.123227704016224927e-08,-2.196442452430577453e-08,-2.269657200844929980e-08,-2.342871949259282506e-08,-2.416086697673635033e-08,-2.489301446087987560e-08,-2.562516194502340086e-08,-2.635730942916692613e-08,-2.708945691331045140e-08,-2.782160439745397666e-08,-2.855375188159750193e-08,-2.928589936574102719e-08,-3.001804684988455577e-08,-3.075019433402808765e-08,-3.148234181817161954e-08,-3.221448930231515142e-08,-3.294663678645868330e-08,-3.367878427060221519e-08,-3.441093175474574707e-08,-3.514307923888927895e-08,-3.587522672303281084e-08,-3.660737420717634272e-08,-3.733952169131987461e-08,-3.807166917546340649e-08,-3.880381665960693837e-08,-3.953596414375047026e-08,-4.026811162789400214e-08,-4.100025911203753402e-08,-4.173240659618106591e-08,-4.246455408032459779e-08,-4.319670156446812968e-08,-4.392884904861166156e-08,-4.466099653275519344e-08,-4.539314401689872533e-08,-4.612529150104225721e-08 +0.000000000000000000e+00,-7.600330015980662445e-10,-1.520066003196132489e-09,-2.280099004794198734e-09,-3.040132006392264978e-09,-3.800165007990331223e-09,-4.560198009588397467e-09,-5.320231011186463712e-09,-6.080264012784529956e-09,-6.840297014382596201e-09,-7.600330015980662445e-09,-8.360363017578729517e-09,-9.120396019176796589e-09,-9.880429020774863660e-09,-1.064046202237293073e-08,-1.140049502397099780e-08,-1.216052802556906488e-08,-1.292056102716713195e-08,-1.368059402876519902e-08,-1.444062703036326609e-08,-1.520066003196133482e-08,-1.596069303355940354e-08,-1.672072603515747227e-08,-1.748075903675554099e-08,-1.824079203835360972e-08,-1.900082503995167845e-08,-1.976085804154974717e-08,-2.052089104314781590e-08,-2.128092404474588463e-08,-2.204095704634395335e-08,-2.280099004794202208e-08,-2.356102304954009080e-08,-2.432105605113815953e-08,-2.508108905273622826e-08,-2.584112205433429698e-08,-2.660115505593236571e-08,-2.736118805753043443e-08,-2.812122105912850316e-08,-2.888125406072657189e-08,-2.964128706232464061e-08,-3.040132006392270934e-08,-3.116135306552077806e-08,-3.192138606711884679e-08,-3.268141906871691552e-08,-3.344145207031498424e-08,-3.420148507191305297e-08,-3.496151807351112169e-08,-3.572155107510919042e-08,-3.648158407670725915e-08,-3.724161707830532787e-08,-3.800165007990339660e-08,-3.876168308150146532e-08,-3.952171608309953405e-08,-4.028174908469760278e-08,-4.104178208629567150e-08,-4.180181508789374023e-08,-4.256184808949180896e-08,-4.332188109108987768e-08,-4.408191409268794641e-08,-4.484194709428601513e-08,-4.560198009588408386e-08,-4.636201309748215259e-08,-4.712204609908022131e-08,-4.788207910067829004e-08 +0.000000000000000000e+00,-1.363856029993970452e-09,-2.727712059987940904e-09,-4.091568089981911356e-09,-5.455424119975881808e-09,-6.819280149969852260e-09,-8.183136179963822713e-09,-9.546992209957792338e-09,-1.091084823995176196e-08,-1.227470426994573159e-08,-1.363856029993970121e-08,-1.500241632993367084e-08,-1.636627235992764212e-08,-1.773012838992161340e-08,-1.909398441991558468e-08,-2.045784044990955595e-08,-2.182169647990352723e-08,-2.318555250989749851e-08,-2.454940853989146979e-08,-2.591326456988544107e-08,-2.727712059987941235e-08,-2.864097662987338363e-08,-3.000483265986735491e-08,-3.136868868986132619e-08,-3.273254471985529747e-08,-3.409640074984926875e-08,-3.546025677984324003e-08,-3.682411280983721131e-08,-3.818796883983118258e-08,-3.955182486982515386e-08,-4.091568089981912514e-08,-4.227953692981309642e-08,-4.364339295980706770e-08,-4.500724898980103898e-08,-4.637110501979501026e-08,-4.773496104978898154e-08,-4.909881707978295282e-08,-5.046267310977692410e-08,-5.182652913977089538e-08,-5.319038516976486666e-08,-5.455424119975883794e-08,-5.591809722975280922e-08,-5.728195325974678049e-08,-5.864580928974075177e-08,-6.000966531973472305e-08,-6.137352134972869433e-08,-6.273737737972266561e-08,-6.410123340971663689e-08,-6.546508943971060817e-08,-6.682894546970457945e-08,-6.819280149969855073e-08,-6.955665752969252201e-08,-7.092051355968649329e-08,-7.228436958968046457e-08,-7.364822561967443585e-08,-7.501208164966840713e-08,-7.637593767966237840e-08,-7.773979370965634968e-08,-7.910364973965032096e-08,-8.046750576964429224e-08,-8.183136179963826352e-08,-8.319521782963223480e-08,-8.455907385962620608e-08,-8.592292988962017736e-08 +0.000000000000000000e+00,-7.321474841344129412e-10,-1.464294968268825882e-09,-2.196442452403238720e-09,-2.928589936537651351e-09,-3.660737420672063982e-09,-4.392884904806476613e-09,-5.125032388940889658e-09,-5.857179873075302703e-09,-6.589327357209715747e-09,-7.321474841344128792e-09,-8.053622325478541837e-09,-8.785769809612954881e-09,-9.517917293747367926e-09,-1.025006477788178097e-08,-1.098221226201619402e-08,-1.171435974615060706e-08,-1.244650723028502010e-08,-1.317865471441943315e-08,-1.391080219855384619e-08,-1.464294968268825924e-08,-1.537509716682267394e-08,-1.610724465095708698e-08,-1.683939213509150003e-08,-1.757153961922591307e-08,-1.830368710336032612e-08,-1.903583458749473916e-08,-1.976798207162915221e-08,-2.050012955576356525e-08,-2.123227703989797829e-08,-2.196442452403239134e-08,-2.269657200816680438e-08,-2.342871949230121743e-08,-2.416086697643563047e-08,-2.489301446057004352e-08,-2.562516194470445656e-08,-2.635730942883886961e-08,-2.708945691297328265e-08,-2.782160439710769570e-08,-2.855375188124210874e-08,-2.928589936537652179e-08,-3.001804684951093483e-08,-3.075019433364534787e-08,-3.148234181777976092e-08,-3.221448930191417396e-08,-3.294663678604858701e-08,-3.367878427018300005e-08,-3.441093175431741310e-08,-3.514307923845182614e-08,-3.587522672258623919e-08,-3.660737420672065223e-08,-3.733952169085506528e-08,-3.807166917498947832e-08,-3.880381665912389137e-08,-3.953596414325830441e-08,-4.026811162739271745e-08,-4.100025911152713050e-08,-4.173240659566154354e-08,-4.246455407979595659e-08,-4.319670156393036963e-08,-4.392884904806478268e-08,-4.466099653219919572e-08,-4.539314401633360877e-08,-4.612529150046802181e-08 +0.000000000000000000e+00,-7.600330015886388671e-10,-1.520066003177277734e-09,-2.280099004765916601e-09,-3.040132006354555468e-09,-3.800165007943194335e-09,-4.560198009531833203e-09,-5.320231011120472070e-09,-6.080264012709110937e-09,-6.840297014297749804e-09,-7.600330015886388671e-09,-8.360363017475027538e-09,-9.120396019063666405e-09,-9.880429020652305272e-09,-1.064046202224094414e-08,-1.140049502382958301e-08,-1.216052802541822187e-08,-1.292056102700686074e-08,-1.368059402859549961e-08,-1.444062703018413847e-08,-1.520066003177277734e-08,-1.596069303336141621e-08,-1.672072603495005508e-08,-1.748075903653869394e-08,-1.824079203812733281e-08,-1.900082503971597168e-08,-1.976085804130461054e-08,-2.052089104289324941e-08,-2.128092404448188828e-08,-2.204095704607052715e-08,-2.280099004765916601e-08,-2.356102304924780488e-08,-2.432105605083644375e-08,-2.508108905242508261e-08,-2.584112205401372148e-08,-2.660115505560236035e-08,-2.736118805719099922e-08,-2.812122105877963808e-08,-2.888125406036827695e-08,-2.964128706195691582e-08,-3.040132006354555468e-08,-3.116135306513419355e-08,-3.192138606672283242e-08,-3.268141906831147128e-08,-3.344145206990011015e-08,-3.420148507148874902e-08,-3.496151807307738789e-08,-3.572155107466602675e-08,-3.648158407625466562e-08,-3.724161707784330449e-08,-3.800165007943194335e-08,-3.876168308102058222e-08,-3.952171608260922109e-08,-4.028174908419785996e-08,-4.104178208578649882e-08,-4.180181508737513769e-08,-4.256184808896377656e-08,-4.332188109055241542e-08,-4.408191409214105429e-08,-4.484194709372969316e-08,-4.560198009531833203e-08,-4.636201309690697089e-08,-4.712204609849560976e-08,-4.788207910008424863e-08 +0.000000000000000000e+00,-1.363856029985746002e-09,-2.727712059971492004e-09,-4.091568089957238213e-09,-5.455424119942984835e-09,-6.819280149928731458e-09,-8.183136179914478080e-09,-9.546992209900223876e-09,-1.091084823988596967e-08,-1.227470426987171547e-08,-1.363856029985746126e-08,-1.500241632984320706e-08,-1.636627235982895285e-08,-1.773012838981469865e-08,-1.909398441980044444e-08,-2.045784044978619024e-08,-2.182169647977193603e-08,-2.318555250975768183e-08,-2.454940853974342762e-08,-2.591326456972917342e-08,-2.727712059971491921e-08,-2.864097662970066501e-08,-3.000483265968640750e-08,-3.136868868967214667e-08,-3.273254471965788585e-08,-3.409640074964362503e-08,-3.546025677962936421e-08,-3.682411280961510339e-08,-3.818796883960084256e-08,-3.955182486958658174e-08,-4.091568089957232092e-08,-4.227953692955806010e-08,-4.364339295954379927e-08,-4.500724898952953845e-08,-4.637110501951527763e-08,-4.773496104950101681e-08,-4.909881707948675599e-08,-5.046267310947249516e-08,-5.182652913945823434e-08,-5.319038516944397352e-08,-5.455424119942971270e-08,-5.591809722941545187e-08,-5.728195325940119105e-08,-5.864580928938693023e-08,-6.000966531937266941e-08,-6.137352134935840859e-08,-6.273737737934414776e-08,-6.410123340932988694e-08,-6.546508943931562612e-08,-6.682894546930136530e-08,-6.819280149928710448e-08,-6.955665752927284365e-08,-7.092051355925858283e-08,-7.228436958924432201e-08,-7.364822561923006119e-08,-7.501208164921580036e-08,-7.637593767920153954e-08,-7.773979370918727872e-08,-7.910364973917301790e-08,-8.046750576915875708e-08,-8.183136179914449625e-08,-8.319521782913023543e-08,-8.455907385911597461e-08,-8.592292988910171379e-08 +0.000000000000000000e+00,-8.752474339244176710e-10,-1.750494867848835342e-09,-2.625742301773253116e-09,-3.500989735697671098e-09,-4.376237169622089079e-09,-5.251484603546507060e-09,-6.126732037470925041e-09,-7.001979471395343022e-09,-7.877226905319760176e-09,-8.752474339244176503e-09,-9.627721773168592830e-09,-1.050296920709300916e-08,-1.137821664101742548e-08,-1.225346407494184181e-08,-1.312871150886625814e-08,-1.400395894279067446e-08,-1.487920637671509079e-08,-1.575445381063950712e-08,-1.662970124456392344e-08,-1.750494867848833977e-08,-1.838019611241275610e-08,-1.925544354633717243e-08,-2.013069098026158875e-08,-2.100593841418600508e-08,-2.188118584811042141e-08,-2.275643328203483773e-08,-2.363168071595925406e-08,-2.450692814988367039e-08,-2.538217558380808671e-08,-2.625742301773250304e-08,-2.713267045165691937e-08,-2.800791788558133569e-08,-2.888316531950575202e-08,-2.975841275343016835e-08,-3.063366018735458798e-08,-3.150890762127900762e-08,-3.238415505520342725e-08,-3.325940248912784689e-08,-3.413464992305226653e-08,-3.500989735697668616e-08,-3.588514479090110580e-08,-3.676039222482552543e-08,-3.763563965874994507e-08,-3.851088709267436470e-08,-3.938613452659878434e-08,-4.026138196052320397e-08,-4.113662939444762361e-08,-4.201187682837204325e-08,-4.288712426229646288e-08,-4.376237169622088252e-08,-4.463761913014530215e-08,-4.551286656406972179e-08,-4.638811399799414142e-08,-4.726336143191856106e-08,-4.813860886584298069e-08,-4.901385629976740033e-08,-4.988910373369181997e-08,-5.076435116761623960e-08,-5.163959860154065924e-08,-5.251484603546507887e-08,-5.339009346938949851e-08,-5.426534090331391814e-08,-5.514058833723833778e-08 +0.000000000000000000e+00,-7.843233781748282517e-10,-1.568646756349656503e-09,-2.352970134524484755e-09,-3.137293512699313007e-09,-3.921616890874141258e-09,-4.705940269048969510e-09,-5.490263647223797762e-09,-6.274587025398626014e-09,-7.058910403573454265e-09,-7.843233781748282517e-09,-8.627557159923109942e-09,-9.411880538097937366e-09,-1.019620391627276479e-08,-1.098052729444759222e-08,-1.176485067262241964e-08,-1.254917405079724706e-08,-1.333349742897207449e-08,-1.411782080714690191e-08,-1.490214418532172934e-08,-1.568646756349655511e-08,-1.647079094167138088e-08,-1.725511431984620665e-08,-1.803943769802103242e-08,-1.882376107619585819e-08,-1.960808445437068396e-08,-2.039240783254550973e-08,-2.117673121072033550e-08,-2.196105458889516127e-08,-2.274537796706998704e-08,-2.352970134524481281e-08,-2.431402472341963858e-08,-2.509834810159446435e-08,-2.588267147976929012e-08,-2.666699485794411589e-08,-2.745131823611894166e-08,-2.823564161429376743e-08,-2.901996499246859320e-08,-2.980428837064341897e-08,-3.058861174881824805e-08,-3.137293512699307713e-08,-3.215725850516790621e-08,-3.294158188334273529e-08,-3.372590526151756437e-08,-3.451022863969239344e-08,-3.529455201786722252e-08,-3.607887539604205160e-08,-3.686319877421688068e-08,-3.764752215239170976e-08,-3.843184553056653884e-08,-3.921616890874136792e-08,-4.000049228691619700e-08,-4.078481566509102607e-08,-4.156913904326585515e-08,-4.235346242144068423e-08,-4.313778579961551331e-08,-4.392210917779034239e-08,-4.470643255596517147e-08,-4.549075593414000055e-08,-4.627507931231482963e-08,-4.705940269048965871e-08,-4.784372606866448778e-08,-4.862804944683931686e-08,-4.941237282501414594e-08 +0.000000000000000000e+00,-1.626880189256448060e-09,-3.253760378512896120e-09,-4.880640567769344594e-09,-6.507520757025793067e-09,-8.134400946282241541e-09,-9.761281135538689187e-09,-1.138816132479513683e-08,-1.301504151405158448e-08,-1.464192170330803213e-08,-1.626880189256447977e-08,-1.789568208182092907e-08,-1.952256227107737837e-08,-2.114944246033382767e-08,-2.277632264959027698e-08,-2.440320283884672628e-08,-2.603008302810317558e-08,-2.765696321735962488e-08,-2.928384340661607418e-08,-3.091072359587252348e-08,-3.253760378512897278e-08,-3.416448397438542208e-08,-3.579136416364187138e-08,-3.741824435289832068e-08,-3.904512454215476998e-08,-4.067200473141121928e-08,-4.229888492066766858e-08,-4.392576510992411789e-08,-4.555264529918056719e-08,-4.717952548843701649e-08,-4.880640567769346579e-08,-5.043328586694991509e-08,-5.206016605620636439e-08,-5.368704624546281369e-08,-5.531392643471926299e-08,-5.694080662397571229e-08,-5.856768681323216159e-08,-6.019456700248861751e-08,-6.182144719174507343e-08,-6.344832738100152935e-08,-6.507520757025798526e-08,-6.670208775951444118e-08,-6.832896794877089710e-08,-6.995584813802735302e-08,-7.158272832728380894e-08,-7.320960851654026486e-08,-7.483648870579672077e-08,-7.646336889505317669e-08,-7.809024908430963261e-08,-7.971712927356608853e-08,-8.134400946282254445e-08,-8.297088965207900036e-08,-8.459776984133545628e-08,-8.622465003059191220e-08,-8.785153021984836812e-08,-8.947841040910482404e-08,-9.110529059836127996e-08,-9.273217078761773587e-08,-9.435905097687419179e-08,-9.598593116613064771e-08,-9.761281135538710363e-08,-9.923969154464355955e-08,-1.008665717339000155e-07,-1.024934519231564714e-07 +0.000000000000000000e+00,-8.752474339163327043e-10,-1.750494867832665409e-09,-2.625742301748998113e-09,-3.500989735665330817e-09,-4.376237169581663935e-09,-5.251484603497997053e-09,-6.126732037414330171e-09,-7.001979471330663289e-09,-7.877226905246996407e-09,-8.752474339163329525e-09,-9.627721773079662642e-09,-1.050296920699599576e-08,-1.137821664091232888e-08,-1.225346407482866200e-08,-1.312871150874499511e-08,-1.400395894266132823e-08,-1.487920637657766135e-08,-1.575445381049399612e-08,-1.662970124441032924e-08,-1.750494867832666236e-08,-1.838019611224299548e-08,-1.925544354615932859e-08,-2.013069098007566171e-08,-2.100593841399199483e-08,-2.188118584790832795e-08,-2.275643328182466107e-08,-2.363168071574099418e-08,-2.450692814965732730e-08,-2.538217558357366042e-08,-2.625742301748999354e-08,-2.713267045140632665e-08,-2.800791788532265977e-08,-2.888316531923899289e-08,-2.975841275315532601e-08,-3.063366018707165913e-08,-3.150890762098799224e-08,-3.238415505490432536e-08,-3.325940248882065848e-08,-3.413464992273699160e-08,-3.500989735665332472e-08,-3.588514479056965783e-08,-3.676039222448599095e-08,-3.763563965840232407e-08,-3.851088709231865719e-08,-3.938613452623499031e-08,-4.026138196015132342e-08,-4.113662939406765654e-08,-4.201187682798398966e-08,-4.288712426190032278e-08,-4.376237169581665589e-08,-4.463761912973298901e-08,-4.551286656364932213e-08,-4.638811399756565525e-08,-4.726336143148198837e-08,-4.813860886539832148e-08,-4.901385629931465460e-08,-4.988910373323098772e-08,-5.076435116714732084e-08,-5.163959860106365396e-08,-5.251484603497998707e-08,-5.339009346889632019e-08,-5.426534090281265331e-08,-5.514058833672898643e-08 +0.000000000000000000e+00,-7.843233781662099603e-10,-1.568646756332419921e-09,-2.352970134498629984e-09,-3.137293512664840255e-09,-3.921616890831050939e-09,-4.705940268997261623e-09,-5.490263647163472307e-09,-6.274587025329682991e-09,-7.058910403495893675e-09,-7.843233781662105186e-09,-8.627557159828316698e-09,-9.411880537994528209e-09,-1.019620391616073972e-08,-1.098052729432695123e-08,-1.176485067249316274e-08,-1.254917405065937425e-08,-1.333349742882558577e-08,-1.411782080699179728e-08,-1.490214418515801044e-08,-1.568646756332422361e-08,-1.647079094149043677e-08,-1.725511431965664994e-08,-1.803943769782286310e-08,-1.882376107598907627e-08,-1.960808445415528944e-08,-2.039240783232150260e-08,-2.117673121048771577e-08,-2.196105458865392893e-08,-2.274537796682014210e-08,-2.352970134498635526e-08,-2.431402472315256843e-08,-2.509834810131878160e-08,-2.588267147948499476e-08,-2.666699485765120793e-08,-2.745131823581742109e-08,-2.823564161398363426e-08,-2.901996499214984742e-08,-2.980428837031606059e-08,-3.058861174848227375e-08,-3.137293512664848692e-08,-3.215725850481470009e-08,-3.294158188298091325e-08,-3.372590526114712642e-08,-3.451022863931333958e-08,-3.529455201747955275e-08,-3.607887539564576591e-08,-3.686319877381197908e-08,-3.764752215197819225e-08,-3.843184553014440541e-08,-3.921616890831061858e-08,-4.000049228647683174e-08,-4.078481566464304491e-08,-4.156913904280925807e-08,-4.235346242097547124e-08,-4.313778579914168440e-08,-4.392210917730789757e-08,-4.470643255547411074e-08,-4.549075593364032390e-08,-4.627507931180653707e-08,-4.705940268997275023e-08,-4.784372606813896340e-08,-4.862804944630517656e-08,-4.941237282447138973e-08 +0.000000000000000000e+00,-1.626880189248806772e-09,-3.253760378497613545e-09,-4.880640567746420110e-09,-6.507520756995226262e-09,-8.134400946244032414e-09,-9.761281135492838566e-09,-1.138816132474164472e-08,-1.301504151399045087e-08,-1.464192170323925702e-08,-1.626880189248806152e-08,-1.789568208173686767e-08,-1.952256227098567382e-08,-2.114944246023447997e-08,-2.277632264948328613e-08,-2.440320283873209228e-08,-2.603008302798089843e-08,-2.765696321722970458e-08,-2.928384340647851073e-08,-3.091072359572731689e-08,-3.253760378497612304e-08,-3.416448397422492919e-08,-3.579136416347373534e-08,-3.741824435272254149e-08,-3.904512454197134765e-08,-4.067200473122015380e-08,-4.229888492046895995e-08,-4.392576510971776610e-08,-4.555264529896657225e-08,-4.717952548821537840e-08,-4.880640567746418456e-08,-5.043328586671299071e-08,-5.206016605596179686e-08,-5.368704624521060301e-08,-5.531392643445940916e-08,-5.694080662370821532e-08,-5.856768681295702147e-08,-6.019456700220582762e-08,-6.182144719145463377e-08,-6.344832738070343992e-08,-6.507520756995224608e-08,-6.670208775920105223e-08,-6.832896794844985838e-08,-6.995584813769866453e-08,-7.158272832694747068e-08,-7.320960851619627683e-08,-7.483648870544508299e-08,-7.646336889469388914e-08,-7.809024908394269529e-08,-7.971712927319150144e-08,-8.134400946244030759e-08,-8.297088965168911375e-08,-8.459776984093791990e-08,-8.622465003018672605e-08,-8.785153021943553220e-08,-8.947841040868433835e-08,-9.110529059793314451e-08,-9.273217078718195066e-08,-9.435905097643075681e-08,-9.598593116567956296e-08,-9.761281135492836911e-08,-9.923969154417717526e-08,-1.008665717334259814e-07,-1.024934519226747876e-07 +0.000000000000000000e+00,-1.078649995479481313e-09,-2.157299990958962625e-09,-3.235949986438443938e-09,-4.314599981917925250e-09,-5.393249977397406563e-09,-6.471899972876887875e-09,-7.550549968356369188e-09,-8.629199963835850500e-09,-9.707849959315331813e-09,-1.078649995479481313e-08,-1.186514995027429444e-08,-1.294379994575377575e-08,-1.402244994123325706e-08,-1.510109993671273838e-08,-1.617974993219221969e-08,-1.725839992767170100e-08,-1.833704992315118231e-08,-1.941569991863066363e-08,-2.049434991411014494e-08,-2.157299990958962625e-08,-2.265164990506910756e-08,-2.373029990054858888e-08,-2.480894989602807019e-08,-2.588759989150755150e-08,-2.696624988698703281e-08,-2.804489988246651413e-08,-2.912354987794599544e-08,-3.020219987342547675e-08,-3.128084986890496137e-08,-3.235949986438444599e-08,-3.343814985986393062e-08,-3.451679985534341524e-08,-3.559544985082289986e-08,-3.667409984630238448e-08,-3.775274984178186910e-08,-3.883139983726135372e-08,-3.991004983274083834e-08,-4.098869982822032296e-08,-4.206734982369980759e-08,-4.314599981917929221e-08,-4.422464981465877683e-08,-4.530329981013826145e-08,-4.638194980561774607e-08,-4.746059980109723069e-08,-4.853924979657671531e-08,-4.961789979205619993e-08,-5.069654978753568456e-08,-5.177519978301516918e-08,-5.285384977849465380e-08,-5.393249977397413842e-08,-5.501114976945362304e-08,-5.608979976493310766e-08,-5.716844976041259228e-08,-5.824709975589207691e-08,-5.932574975137156153e-08,-6.040439974685104615e-08,-6.148304974233053077e-08,-6.256169973781001539e-08,-6.364034973328950001e-08,-6.471899972876898463e-08,-6.579764972424846925e-08,-6.687629971972795388e-08,-6.795494971520743850e-08 +0.000000000000000000e+00,-9.781588457261839123e-10,-1.956317691452367825e-09,-2.934476537178551737e-09,-3.912635382904735649e-09,-4.890794228630919148e-09,-5.868953074357102647e-09,-6.847111920083286145e-09,-7.825270765809469644e-09,-8.803429611535653143e-09,-9.781588457261836641e-09,-1.075974730298802014e-08,-1.173790614871420364e-08,-1.271606499444038714e-08,-1.369422384016657064e-08,-1.467238268589275413e-08,-1.565054153161893598e-08,-1.662870037734511782e-08,-1.760685922307129967e-08,-1.858501806879748151e-08,-1.956317691452366336e-08,-2.054133576024984520e-08,-2.151949460597602705e-08,-2.249765345170220889e-08,-2.347581229742839073e-08,-2.445397114315457258e-08,-2.543212998888075442e-08,-2.641028883460693627e-08,-2.738844768033311811e-08,-2.836660652605929996e-08,-2.934476537178548180e-08,-3.032292421751166364e-08,-3.130108306323784549e-08,-3.227924190896402733e-08,-3.325740075469020918e-08,-3.423555960041639102e-08,-3.521371844614257287e-08,-3.619187729186875471e-08,-3.717003613759493655e-08,-3.814819498332111840e-08,-3.912635382904730024e-08,-4.010451267477348209e-08,-4.108267152049966393e-08,-4.206083036622584578e-08,-4.303898921195202762e-08,-4.401714805767820947e-08,-4.499530690340439131e-08,-4.597346574913057315e-08,-4.695162459485675500e-08,-4.792978344058293684e-08,-4.890794228630911869e-08,-4.988610113203530053e-08,-5.086425997776148238e-08,-5.184241882348766422e-08,-5.282057766921384606e-08,-5.379873651494002791e-08,-5.477689536066620975e-08,-5.575505420639239160e-08,-5.673321305211857344e-08,-5.771137189784475529e-08,-5.868953074357093713e-08,-5.966768958929711236e-08,-6.064584843502328758e-08,-6.162400728074946281e-08 +0.000000000000000000e+00,-1.944183282507273702e-09,-3.888366565014547404e-09,-5.832549847521821106e-09,-7.776733130029094808e-09,-9.720916412536368510e-09,-1.166509969504364221e-08,-1.360928297755091591e-08,-1.555346626005818962e-08,-1.749764954256546497e-08,-1.944183282507274033e-08,-2.138601610758001568e-08,-2.333019939008729104e-08,-2.527438267259456640e-08,-2.721856595510184175e-08,-2.916274923760911711e-08,-3.110693252011639247e-08,-3.305111580262366782e-08,-3.499529908513094318e-08,-3.693948236763821854e-08,-3.888366565014549389e-08,-4.082784893265276925e-08,-4.277203221516004460e-08,-4.471621549766731996e-08,-4.666039878017459532e-08,-4.860458206268187067e-08,-5.054876534518914603e-08,-5.249294862769642139e-08,-5.443713191020369674e-08,-5.638131519271097210e-08,-5.832549847521824745e-08,-6.026968175772552943e-08,-6.221386504023281140e-08,-6.415804832274009338e-08,-6.610223160524737535e-08,-6.804641488775465732e-08,-6.999059817026193930e-08,-7.193478145276922127e-08,-7.387896473527650324e-08,-7.582314801778378522e-08,-7.776733130029106719e-08,-7.971151458279834917e-08,-8.165569786530563114e-08,-8.359988114781291311e-08,-8.554406443032019509e-08,-8.748824771282747706e-08,-8.943243099533475903e-08,-9.137661427784204101e-08,-9.332079756034932298e-08,-9.526498084285660496e-08,-9.720916412536388693e-08,-9.915334740787116890e-08,-1.010975306903784509e-07,-1.030417139728857329e-07,-1.049858972553930148e-07,-1.069300805379002968e-07,-1.088742638204075788e-07,-1.108184471029148607e-07,-1.127626303854221427e-07,-1.147068136679294247e-07,-1.166509969504367067e-07,-1.185951802329439886e-07,-1.205393635154512706e-07,-1.224835467979585526e-07 +0.000000000000000000e+00,-1.078649995472101414e-09,-2.157299990944202828e-09,-3.235949986416304449e-09,-4.314599981888406483e-09,-5.393249977360508517e-09,-6.471899972832610552e-09,-7.550549968304713413e-09,-8.629199963776816275e-09,-9.707849959248919136e-09,-1.078649995472102200e-08,-1.186514995019312486e-08,-1.294379994566522772e-08,-1.402244994113733058e-08,-1.510109993660943344e-08,-1.617974993208153630e-08,-1.725839992755363917e-08,-1.833704992302574203e-08,-1.941569991849784489e-08,-2.049434991396994775e-08,-2.157299990944205061e-08,-2.265164990491415347e-08,-2.373029990038625634e-08,-2.480894989585835920e-08,-2.588759989133046206e-08,-2.696624988680256492e-08,-2.804489988227466778e-08,-2.912354987774677064e-08,-3.020219987321887350e-08,-3.128084986869097967e-08,-3.235949986416308584e-08,-3.343814985963519202e-08,-3.451679985510729819e-08,-3.559544985057940436e-08,-3.667409984605151053e-08,-3.775274984152361670e-08,-3.883139983699572287e-08,-3.991004983246782904e-08,-4.098869982793993521e-08,-4.206734982341204138e-08,-4.314599981888414755e-08,-4.422464981435625372e-08,-4.530329980982835989e-08,-4.638194980530046606e-08,-4.746059980077257223e-08,-4.853924979624467840e-08,-4.961789979171678457e-08,-5.069654978718889074e-08,-5.177519978266099691e-08,-5.285384977813310308e-08,-5.393249977360520925e-08,-5.501114976907731542e-08,-5.608979976454942159e-08,-5.716844976002152776e-08,-5.824709975549363393e-08,-5.932574975096574010e-08,-6.040439974643783965e-08,-6.148304974190993921e-08,-6.256169973738203876e-08,-6.364034973285413831e-08,-6.471899972832623786e-08,-6.579764972379833742e-08,-6.687629971927043697e-08,-6.795494971474253652e-08 +0.000000000000000000e+00,-9.781588457184702463e-10,-1.956317691436940493e-09,-2.934476537155410946e-09,-3.912635382873881812e-09,-4.890794228592352679e-09,-5.868953074310823546e-09,-6.847111920029294412e-09,-7.825270765747765279e-09,-8.803429611466236146e-09,-9.781588457184707012e-09,-1.075974730290317788e-08,-1.173790614862164875e-08,-1.271606499434011961e-08,-1.369422384005859048e-08,-1.467238268577706135e-08,-1.565054153149553387e-08,-1.662870037721400639e-08,-1.760685922293247891e-08,-1.858501806865095143e-08,-1.956317691436942395e-08,-2.054133576008789647e-08,-2.151949460580636899e-08,-2.249765345152484151e-08,-2.347581229724331404e-08,-2.445397114296178656e-08,-2.543212998868025908e-08,-2.641028883439873160e-08,-2.738844768011720412e-08,-2.836660652583567664e-08,-2.934476537155414916e-08,-3.032292421727262168e-08,-3.130108306299109420e-08,-3.227924190870956672e-08,-3.325740075442803925e-08,-3.423555960014651177e-08,-3.521371844586498429e-08,-3.619187729158345681e-08,-3.717003613730192933e-08,-3.814819498302040185e-08,-3.912635382873887437e-08,-4.010451267445734689e-08,-4.108267152017581941e-08,-4.206083036589429193e-08,-4.303898921161276446e-08,-4.401714805733123698e-08,-4.499530690304970950e-08,-4.597346574876818202e-08,-4.695162459448665454e-08,-4.792978344020512706e-08,-4.890794228592359958e-08,-4.988610113164207210e-08,-5.086425997736054462e-08,-5.184241882307901715e-08,-5.282057766879748967e-08,-5.379873651451596219e-08,-5.477689536023443471e-08,-5.575505420595290723e-08,-5.673321305167137975e-08,-5.771137189738985227e-08,-5.868953074310832479e-08,-5.966768958882679731e-08,-6.064584843454526983e-08,-6.162400728026374236e-08 +0.000000000000000000e+00,-1.944183282500121071e-09,-3.888366565000242142e-09,-5.832549847500363214e-09,-7.776733130000484285e-09,-9.720916412500606183e-09,-1.166509969500072808e-08,-1.360928297750084998e-08,-1.555346626000097188e-08,-1.749764954250109378e-08,-1.944183282500121568e-08,-2.138601610750133757e-08,-2.333019939000145947e-08,-2.527438267250158137e-08,-2.721856595500170327e-08,-2.916274923750182517e-08,-3.110693252000195037e-08,-3.305111580250207227e-08,-3.499529908500219417e-08,-3.693948236750231607e-08,-3.888366565000243797e-08,-4.082784893250255987e-08,-4.277203221500268176e-08,-4.471621549750280366e-08,-4.666039878000292556e-08,-4.860458206250304746e-08,-5.054876534500316936e-08,-5.249294862750329126e-08,-5.443713191000341315e-08,-5.638131519250353505e-08,-5.832549847500365695e-08,-6.026968175750377885e-08,-6.221386504000390075e-08,-6.415804832250402265e-08,-6.610223160500414454e-08,-6.804641488750426644e-08,-6.999059817000438834e-08,-7.193478145250451024e-08,-7.387896473500463214e-08,-7.582314801750475404e-08,-7.776733130000487594e-08,-7.971151458250499783e-08,-8.165569786500511973e-08,-8.359988114750524163e-08,-8.554406443000536353e-08,-8.748824771250548543e-08,-8.943243099500560733e-08,-9.137661427750572922e-08,-9.332079756000585112e-08,-9.526498084250597302e-08,-9.720916412500609492e-08,-9.915334740750621682e-08,-1.010975306900063387e-07,-1.030417139725064606e-07,-1.049858972550065825e-07,-1.069300805375067044e-07,-1.088742638200068263e-07,-1.108184471025069482e-07,-1.127626303850070701e-07,-1.147068136675071920e-07,-1.166509969500073139e-07,-1.185951802325074358e-07,-1.205393635150075577e-07,-1.224835467975076928e-07 +0.000000000000000000e+00,-1.238862490241394183e-09,-2.477724980482788365e-09,-3.716587470724182548e-09,-4.955449960965576731e-09,-6.194312451206970914e-09,-7.433174941448365096e-09,-8.672037431689759279e-09,-9.910899921931153462e-09,-1.114976241217254764e-08,-1.238862490241394183e-08,-1.362748739265533601e-08,-1.486634988289673019e-08,-1.610521237313812272e-08,-1.734407486337951525e-08,-1.858293735362090778e-08,-1.982179984386230031e-08,-2.106066233410369283e-08,-2.229952482434508536e-08,-2.353838731458647789e-08,-2.477724980482787042e-08,-2.601611229506926295e-08,-2.725497478531065548e-08,-2.849383727555204800e-08,-2.973269976579344053e-08,-3.097156225603483306e-08,-3.221042474627622559e-08,-3.344928723651761812e-08,-3.468814972675901065e-08,-3.592701221700040317e-08,-3.716587470724179570e-08,-3.840473719748318823e-08,-3.964359968772458076e-08,-4.088246217796597329e-08,-4.212132466820736582e-08,-4.336018715844875834e-08,-4.459904964869015087e-08,-4.583791213893154340e-08,-4.707677462917293593e-08,-4.831563711941432846e-08,-4.955449960965572099e-08,-5.079336209989711352e-08,-5.203222459013850604e-08,-5.327108708037989857e-08,-5.450994957062129110e-08,-5.574881206086268363e-08,-5.698767455110407616e-08,-5.822653704134546869e-08,-5.946539953158686121e-08,-6.070426202182826036e-08,-6.194312451206965289e-08,-6.318198700231104542e-08,-6.442084949255243794e-08,-6.565971198279383047e-08,-6.689857447303522300e-08,-6.813743696327661553e-08,-6.937629945351800806e-08,-7.061516194375940059e-08,-7.185402443400079311e-08,-7.309288692424218564e-08,-7.433174941448357817e-08,-7.557061190472497070e-08,-7.680947439496636323e-08,-7.804833688520775576e-08 +0.000000000000000000e+00,-1.167075071084698094e-09,-2.334150142169396189e-09,-3.501225213254094490e-09,-4.668300284338793205e-09,-5.835375355423491920e-09,-7.002450426508190635e-09,-8.169525497592890177e-09,-9.336600568677589719e-09,-1.050367563976228926e-08,-1.167075071084698880e-08,-1.283782578193168835e-08,-1.400490085301638789e-08,-1.517197592410108743e-08,-1.633905099518578697e-08,-1.750612606627048651e-08,-1.867320113735518606e-08,-1.984027620843988560e-08,-2.100735127952458514e-08,-2.217442635060928468e-08,-2.334150142169398422e-08,-2.450857649277868377e-08,-2.567565156386338331e-08,-2.684272663494808285e-08,-2.800980170603278239e-08,-2.917687677711748193e-08,-3.034395184820218148e-08,-3.151102691928688102e-08,-3.267810199037158056e-08,-3.384517706145628010e-08,-3.501225213254097964e-08,-3.617932720362567919e-08,-3.734640227471037873e-08,-3.851347734579507827e-08,-3.968055241687977781e-08,-4.084762748796447735e-08,-4.201470255904917690e-08,-4.318177763013387644e-08,-4.434885270121857598e-08,-4.551592777230327552e-08,-4.668300284338797506e-08,-4.785007791447267461e-08,-4.901715298555737415e-08,-5.018422805664207369e-08,-5.135130312772677323e-08,-5.251837819881147277e-08,-5.368545326989617232e-08,-5.485252834098087186e-08,-5.601960341206557140e-08,-5.718667848315027094e-08,-5.835375355423497048e-08,-5.952082862531967003e-08,-6.068790369640437619e-08,-6.185497876748908235e-08,-6.302205383857378851e-08,-6.418912890965849466e-08,-6.535620398074320082e-08,-6.652327905182790698e-08,-6.769035412291261314e-08,-6.885742919399731930e-08,-7.002450426508202546e-08,-7.119157933616673162e-08,-7.235865440725143778e-08,-7.352572947833614394e-08 +0.000000000000000000e+00,-2.187149137645260541e-09,-4.374298275290521081e-09,-6.561447412935781622e-09,-8.748596550581042163e-09,-1.093574568822630270e-08,-1.312289482587156324e-08,-1.531004396351682544e-08,-1.749719310116208763e-08,-1.968434223880734983e-08,-2.187149137645261202e-08,-2.405864051409787422e-08,-2.624578965174313641e-08,-2.843293878938839861e-08,-3.062008792703366411e-08,-3.280723706467892962e-08,-3.499438620232419512e-08,-3.718153533996946062e-08,-3.936868447761472613e-08,-4.155583361525999163e-08,-4.374298275290525714e-08,-4.593013189055052264e-08,-4.811728102819578814e-08,-5.030443016584105365e-08,-5.249157930348631915e-08,-5.467872844113158465e-08,-5.686587757877685016e-08,-5.905302671642211566e-08,-6.124017585406738116e-08,-6.342732499171264667e-08,-6.561447412935791217e-08,-6.780162326700317768e-08,-6.998877240464844318e-08,-7.217592154229370868e-08,-7.436307067993897419e-08,-7.655021981758423969e-08,-7.873736895522950519e-08,-8.092451809287477070e-08,-8.311166723052003620e-08,-8.529881636816530171e-08,-8.748596550581056721e-08,-8.967311464345583271e-08,-9.186026378110109822e-08,-9.404741291874636372e-08,-9.623456205639162922e-08,-9.842171119403689473e-08,-1.006088603316821602e-07,-1.027960094693274257e-07,-1.049831586069726912e-07,-1.071703077446179567e-07,-1.093574568822632222e-07,-1.115446060199084878e-07,-1.137317551575537533e-07,-1.159189042951990188e-07,-1.181060534328442843e-07,-1.202932025704895498e-07,-1.224803517081348153e-07,-1.246675008457800808e-07,-1.268546499834253463e-07,-1.290417991210706118e-07,-1.312289482587158773e-07,-1.334160973963611428e-07,-1.356032465340064083e-07,-1.377903956716516738e-07 +0.000000000000000000e+00,-1.238862490234707668e-09,-2.477724980469415336e-09,-3.716587470704123005e-09,-4.955449960938830673e-09,-6.194312451173537928e-09,-7.433174941408245182e-09,-8.672037431642952437e-09,-9.910899921877659692e-09,-1.114976241211236695e-08,-1.238862490234707420e-08,-1.362748739258178146e-08,-1.486634988281648871e-08,-1.610521237305119596e-08,-1.734407486328590487e-08,-1.858293735352061378e-08,-1.982179984375532269e-08,-2.106066233399003160e-08,-2.229952482422474051e-08,-2.353838731445944942e-08,-2.477724980469415833e-08,-2.601611229492886724e-08,-2.725497478516357615e-08,-2.849383727539828505e-08,-2.973269976563299396e-08,-3.097156225586770287e-08,-3.221042474610241178e-08,-3.344928723633712069e-08,-3.468814972657182960e-08,-3.592701221680653851e-08,-3.716587470704124742e-08,-3.840473719727595633e-08,-3.964359968751066524e-08,-4.088246217774537415e-08,-4.212132466798008305e-08,-4.336018715821479196e-08,-4.459904964844950087e-08,-4.583791213868420978e-08,-4.707677462891891869e-08,-4.831563711915362760e-08,-4.955449960938833651e-08,-5.079336209962304542e-08,-5.203222458985775433e-08,-5.327108708009246324e-08,-5.450994957032717214e-08,-5.574881206056188105e-08,-5.698767455079658996e-08,-5.822653704103129887e-08,-5.946539953126600778e-08,-6.070426202150072331e-08,-6.194312451173544545e-08,-6.318198700197016759e-08,-6.442084949220488974e-08,-6.565971198243961188e-08,-6.689857447267433403e-08,-6.813743696290905617e-08,-6.937629945314377831e-08,-7.061516194337850046e-08,-7.185402443361322260e-08,-7.309288692384794475e-08,-7.433174941408266689e-08,-7.557061190431738903e-08,-7.680947439455211118e-08,-7.804833688478683332e-08 +0.000000000000000000e+00,-1.167075071077705523e-09,-2.334150142155411046e-09,-3.501225213233116363e-09,-4.668300284310821266e-09,-5.835375355388526168e-09,-7.002450426466231071e-09,-8.169525497543935974e-09,-9.336600568621640877e-09,-1.050367563969934578e-08,-1.167075071077705068e-08,-1.283782578185475559e-08,-1.400490085293246049e-08,-1.517197592401016374e-08,-1.633905099508786864e-08,-1.750612606616557354e-08,-1.867320113724327844e-08,-1.984027620832098335e-08,-2.100735127939868825e-08,-2.217442635047639315e-08,-2.334150142155409806e-08,-2.450857649263180296e-08,-2.567565156370950786e-08,-2.684272663478721276e-08,-2.800980170586491767e-08,-2.917687677694262257e-08,-3.034395184802032747e-08,-3.151102691909803238e-08,-3.267810199017573728e-08,-3.384517706125344218e-08,-3.501225213233114708e-08,-3.617932720340885199e-08,-3.734640227448655689e-08,-3.851347734556426179e-08,-3.968055241664196669e-08,-4.084762748771967160e-08,-4.201470255879737650e-08,-4.318177762987508140e-08,-4.434885270095278631e-08,-4.551592777203049121e-08,-4.668300284310819611e-08,-4.785007791418590101e-08,-4.901715298526360592e-08,-5.018422805634131082e-08,-5.135130312741901572e-08,-5.251837819849672063e-08,-5.368545326957442553e-08,-5.485252834065213043e-08,-5.601960341172983533e-08,-5.718667848280754024e-08,-5.835375355388524514e-08,-5.952082862496295004e-08,-6.068790369604065494e-08,-6.185497876711835985e-08,-6.302205383819606475e-08,-6.418912890927376965e-08,-6.535620398035147456e-08,-6.652327905142917946e-08,-6.769035412250688436e-08,-6.885742919358458926e-08,-7.002450426466229417e-08,-7.119157933573999907e-08,-7.235865440681770397e-08,-7.352572947789540888e-08 +0.000000000000000000e+00,-2.187149137638784130e-09,-4.374298275277568260e-09,-6.561447412916352804e-09,-8.748596550555138175e-09,-1.093574568819392355e-08,-1.312289482583270892e-08,-1.531004396347149594e-08,-1.749719310111028297e-08,-1.968434223874906999e-08,-2.187149137638785702e-08,-2.405864051402664404e-08,-2.624578965166543107e-08,-2.843293878930421809e-08,-3.062008792694300512e-08,-3.280723706458179214e-08,-3.499438620222057917e-08,-3.718153533985936619e-08,-3.936868447749815322e-08,-4.155583361513694024e-08,-4.374298275277572727e-08,-4.593013189041451429e-08,-4.811728102805330132e-08,-5.030443016569208834e-08,-5.249157930333087537e-08,-5.467872844096966239e-08,-5.686587757860844942e-08,-5.905302671624723644e-08,-6.124017585388602347e-08,-6.342732499152481711e-08,-6.561447412916361076e-08,-6.780162326680240440e-08,-6.998877240444119804e-08,-7.217592154207999168e-08,-7.436307067971878533e-08,-7.655021981735757897e-08,-7.873736895499637261e-08,-8.092451809263516625e-08,-8.311166723027395990e-08,-8.529881636791275354e-08,-8.748596550555154718e-08,-8.967311464319034082e-08,-9.186026378082913447e-08,-9.404741291846792811e-08,-9.623456205610672175e-08,-9.842171119374551539e-08,-1.006088603313843090e-07,-1.027960094690231027e-07,-1.049831586066618963e-07,-1.071703077443006900e-07,-1.093574568819394836e-07,-1.115446060195782773e-07,-1.137317551572170709e-07,-1.159189042948558645e-07,-1.181060534324946582e-07,-1.202932025701334518e-07,-1.224803517077722322e-07,-1.246675008454110126e-07,-1.268546499830497930e-07,-1.290417991206885735e-07,-1.312289482583273539e-07,-1.334160973959661343e-07,-1.356032465336049147e-07,-1.377903956712436951e-07 +0.000000000000000000e+00,-1.319718143722522710e-09,-2.639436287445045421e-09,-3.959154431167567925e-09,-5.278872574890090015e-09,-6.598590718612612105e-09,-7.918308862335134195e-09,-9.238027006057657112e-09,-1.055774514978018003e-08,-1.187746329350270295e-08,-1.319718143722522586e-08,-1.451689958094774878e-08,-1.583661772467027170e-08,-1.715633586839279462e-08,-1.847605401211531753e-08,-1.979577215583784045e-08,-2.111549029956036337e-08,-2.243520844328288628e-08,-2.375492658700540920e-08,-2.507464473072793212e-08,-2.639436287445045504e-08,-2.771408101817297795e-08,-2.903379916189550087e-08,-3.035351730561802710e-08,-3.167323544934055001e-08,-3.299295359306307293e-08,-3.431267173678559585e-08,-3.563238988050811877e-08,-3.695210802423064168e-08,-3.827182616795316460e-08,-3.959154431167568752e-08,-4.091126245539821043e-08,-4.223098059912073335e-08,-4.355069874284325627e-08,-4.487041688656577919e-08,-4.619013503028830210e-08,-4.750985317401082502e-08,-4.882957131773334794e-08,-5.014928946145587086e-08,-5.146900760517839377e-08,-5.278872574890091669e-08,-5.410844389262343961e-08,-5.542816203634596252e-08,-5.674788018006848544e-08,-5.806759832379100836e-08,-5.938731646751353128e-08,-6.070703461123605419e-08,-6.202675275495857711e-08,-6.334647089868110003e-08,-6.466618904240362295e-08,-6.598590718612614586e-08,-6.730562532984866878e-08,-6.862534347357119170e-08,-6.994506161729371461e-08,-7.126477976101623753e-08,-7.258449790473876045e-08,-7.390421604846128337e-08,-7.522393419218380628e-08,-7.654365233590632920e-08,-7.786337047962885212e-08,-7.918308862335137503e-08,-8.050280676707389795e-08,-8.182252491079642087e-08,-8.314224305451894379e-08 +0.000000000000000000e+00,-1.290561891560543931e-09,-2.581123783121087862e-09,-3.871685674681631586e-09,-5.162247566242174896e-09,-6.452809457802718207e-09,-7.743371349363261517e-09,-9.033933240923804828e-09,-1.032449513248434814e-08,-1.161505702404489145e-08,-1.290561891560543476e-08,-1.419618080716597807e-08,-1.548674269872651973e-08,-1.677730459028705973e-08,-1.806786648184759973e-08,-1.935842837340813973e-08,-2.064899026496867973e-08,-2.193955215652921973e-08,-2.323011404808975974e-08,-2.452067593965029974e-08,-2.581123783121083974e-08,-2.710179972277137974e-08,-2.839236161433191974e-08,-2.968292350589245974e-08,-3.097348539745299975e-08,-3.226404728901353975e-08,-3.355460918057407975e-08,-3.484517107213461975e-08,-3.613573296369515975e-08,-3.742629485525569976e-08,-3.871685674681623976e-08,-4.000741863837677976e-08,-4.129798052993731976e-08,-4.258854242149785976e-08,-4.387910431305839976e-08,-4.516966620461893977e-08,-4.646022809617947977e-08,-4.775078998774001977e-08,-4.904135187930055977e-08,-5.033191377086109977e-08,-5.162247566242163977e-08,-5.291303755398217978e-08,-5.420359944554271978e-08,-5.549416133710325978e-08,-5.678472322866379978e-08,-5.807528512022433978e-08,-5.936584701178487978e-08,-6.065640890334542640e-08,-6.194697079490597302e-08,-6.323753268646651964e-08,-6.452809457802706626e-08,-6.581865646958761288e-08,-6.710921836114815950e-08,-6.839978025270870612e-08,-6.969034214426925274e-08,-7.098090403582979936e-08,-7.227146592739034598e-08,-7.356202781895089260e-08,-7.485258971051143921e-08,-7.614315160207198583e-08,-7.743371349363253245e-08,-7.872427538519307907e-08,-8.001483727675362569e-08,-8.130539916831417231e-08 +0.000000000000000000e+00,-2.309851311870688068e-09,-4.619702623741376136e-09,-6.929553935612064203e-09,-9.239405247482752271e-09,-1.154925655935344034e-08,-1.385910787122412841e-08,-1.616895918309481482e-08,-1.847881049496550123e-08,-2.078866180683618765e-08,-2.309851311870687406e-08,-2.540836443057756047e-08,-2.771821574244824689e-08,-3.002806705431893330e-08,-3.233791836618961641e-08,-3.464776967806029951e-08,-3.695762098993098262e-08,-3.926747230180166572e-08,-4.157732361367234882e-08,-4.388717492554303193e-08,-4.619702623741371503e-08,-4.850687754928439814e-08,-5.081672886115508124e-08,-5.312658017302576435e-08,-5.543643148489644745e-08,-5.774628279676713056e-08,-6.005613410863781366e-08,-6.236598542050849015e-08,-6.467583673237916664e-08,-6.698568804424984312e-08,-6.929553935612051961e-08,-7.160539066799119610e-08,-7.391524197986187259e-08,-7.622509329173254907e-08,-7.853494460360322556e-08,-8.084479591547390205e-08,-8.315464722734457854e-08,-8.546449853921525502e-08,-8.777434985108593151e-08,-9.008420116295660800e-08,-9.239405247482728449e-08,-9.470390378669796097e-08,-9.701375509856863746e-08,-9.932360641043931395e-08,-1.016334577223099904e-07,-1.039433090341806669e-07,-1.062531603460513434e-07,-1.085630116579220199e-07,-1.108728629697926964e-07,-1.131827142816633729e-07,-1.154925655935340494e-07,-1.178024169054047258e-07,-1.201122682172753891e-07,-1.224221195291460524e-07,-1.247319708410167156e-07,-1.270418221528873789e-07,-1.293516734647580421e-07,-1.316615247766287054e-07,-1.339713760884993686e-07,-1.362812274003700319e-07,-1.385910787122406951e-07,-1.409009300241113584e-07,-1.432107813359820216e-07,-1.455206326478526849e-07 +0.000000000000000000e+00,-1.319718143716615193e-09,-2.639436287433230387e-09,-3.959154431149845580e-09,-5.278872574866460773e-09,-6.598590718583075967e-09,-7.918308862299691160e-09,-9.238027006016306353e-09,-1.055774514973292155e-08,-1.187746329344953674e-08,-1.319718143716615193e-08,-1.451689958088276713e-08,-1.583661772459938232e-08,-1.715633586831599586e-08,-1.847605401203260940e-08,-1.979577215574922294e-08,-2.111549029946583648e-08,-2.243520844318245001e-08,-2.375492658689906355e-08,-2.507464473061567709e-08,-2.639436287433229063e-08,-2.771408101804890417e-08,-2.903379916176551771e-08,-3.035351730548213125e-08,-3.167323544919874479e-08,-3.299295359291535833e-08,-3.431267173663197187e-08,-3.563238988034858540e-08,-3.695210802406519894e-08,-3.827182616778181248e-08,-3.959154431149842602e-08,-4.091126245521503956e-08,-4.223098059893165310e-08,-4.355069874264826664e-08,-4.487041688636488018e-08,-4.619013503008149372e-08,-4.750985317379810725e-08,-4.882957131751472079e-08,-5.014928946123133433e-08,-5.146900760494794787e-08,-5.278872574866456141e-08,-5.410844389238117495e-08,-5.542816203609778849e-08,-5.674788017981440203e-08,-5.806759832353101557e-08,-5.938731646724762911e-08,-6.070703461096423603e-08,-6.202675275468084295e-08,-6.334647089839744987e-08,-6.466618904211405679e-08,-6.598590718583066371e-08,-6.730562532954727063e-08,-6.862534347326387756e-08,-6.994506161698048448e-08,-7.126477976069709140e-08,-7.258449790441369832e-08,-7.390421604813030524e-08,-7.522393419184691216e-08,-7.654365233556351908e-08,-7.786337047928012601e-08,-7.918308862299673293e-08,-8.050280676671333985e-08,-8.182252491042994677e-08,-8.314224305414655369e-08 +0.000000000000000000e+00,-1.290561891554237506e-09,-2.581123783108475012e-09,-3.871685674662712311e-09,-5.162247566216949196e-09,-6.452809457771186082e-09,-7.743371349325422967e-09,-9.033933240879659853e-09,-1.032449513243389674e-08,-1.161505702398813362e-08,-1.290561891554237051e-08,-1.419618080709660739e-08,-1.548674269865084263e-08,-1.677730459020507620e-08,-1.806786648175930978e-08,-1.935842837331354336e-08,-2.064899026486777693e-08,-2.193955215642201051e-08,-2.323011404797624409e-08,-2.452067593953047766e-08,-2.581123783108471124e-08,-2.710179972263894482e-08,-2.839236161419317839e-08,-2.968292350574741197e-08,-3.097348539730164555e-08,-3.226404728885587912e-08,-3.355460918041011270e-08,-3.484517107196434628e-08,-3.613573296351857985e-08,-3.742629485507281343e-08,-3.871685674662704701e-08,-4.000741863818128058e-08,-4.129798052973551416e-08,-4.258854242128974774e-08,-4.387910431284398131e-08,-4.516966620439821489e-08,-4.646022809595244847e-08,-4.775078998750668204e-08,-4.904135187906091562e-08,-5.033191377061514920e-08,-5.162247566216938277e-08,-5.291303755372361635e-08,-5.420359944527784993e-08,-5.549416133683208350e-08,-5.678472322838631708e-08,-5.807528511994055066e-08,-5.936584701149478424e-08,-6.065640890304901781e-08,-6.194697079460325139e-08,-6.323753268615748497e-08,-6.452809457771171854e-08,-6.581865646926595212e-08,-6.710921836082018570e-08,-6.839978025237441927e-08,-6.969034214392865285e-08,-7.098090403548288643e-08,-7.227146592703712000e-08,-7.356202781859135358e-08,-7.485258971014558716e-08,-7.614315160169982073e-08,-7.743371349325405431e-08,-7.872427538480828789e-08,-8.001483727636252146e-08,-8.130539916791675504e-08 +0.000000000000000000e+00,-2.309851311865426786e-09,-4.619702623730853571e-09,-6.929553935596279943e-09,-9.239405247461705488e-09,-1.154925655932713103e-08,-1.385910787119255658e-08,-1.616895918305798212e-08,-1.847881049492340767e-08,-2.078866180678883321e-08,-2.309851311865425876e-08,-2.540836443051968430e-08,-2.771821574238510985e-08,-3.002806705425053539e-08,-3.233791836611596424e-08,-3.464776967798139310e-08,-3.695762098984682195e-08,-3.926747230171225080e-08,-4.157732361357767966e-08,-4.388717492544310851e-08,-4.619702623730853737e-08,-4.850687754917396622e-08,-5.081672886103939507e-08,-5.312658017290482393e-08,-5.543643148477025278e-08,-5.774628279663568163e-08,-6.005613410850111049e-08,-6.236598542036653272e-08,-6.467583673223195496e-08,-6.698568804409737719e-08,-6.929553935596279943e-08,-7.160539066782822167e-08,-7.391524197969364390e-08,-7.622509329155906614e-08,-7.853494460342448837e-08,-8.084479591528991061e-08,-8.315464722715533285e-08,-8.546449853902075508e-08,-8.777434985088617732e-08,-9.008420116275159955e-08,-9.239405247461702179e-08,-9.470390378648244403e-08,-9.701375509834786626e-08,-9.932360641021328850e-08,-1.016334577220787107e-07,-1.039433090339441330e-07,-1.062531603458095552e-07,-1.085630116576749774e-07,-1.108728629695403997e-07,-1.131827142814058219e-07,-1.154925655932712442e-07,-1.178024169051366664e-07,-1.201122682170020886e-07,-1.224221195288675109e-07,-1.247319708407329331e-07,-1.270418221525983553e-07,-1.293516734644637776e-07,-1.316615247763291998e-07,-1.339713760881946220e-07,-1.362812274000600443e-07,-1.385910787119254665e-07,-1.409009300237908887e-07,-1.432107813356563110e-07,-1.455206326475217332e-07 +0.000000000000000000e+00,-1.306033275108918280e-09,-2.612066550217836560e-09,-3.918099825326754427e-09,-5.224133100435672293e-09,-6.530166375544590160e-09,-7.836199650653508853e-09,-9.142232925762427547e-09,-1.044826620087134624e-08,-1.175429947598026493e-08,-1.306033275108918363e-08,-1.436636602619810232e-08,-1.567239930130702102e-08,-1.697843257641593971e-08,-1.828446585152485840e-08,-1.959049912663377710e-08,-2.089653240174269579e-08,-2.220256567685161448e-08,-2.350859895196053318e-08,-2.481463222706945187e-08,-2.612066550217837057e-08,-2.742669877728728926e-08,-2.873273205239620795e-08,-3.003876532750512665e-08,-3.134479860261404865e-08,-3.265083187772297065e-08,-3.395686515283189265e-08,-3.526289842794081466e-08,-3.656893170304973666e-08,-3.787496497815865866e-08,-3.918099825326758066e-08,-4.048703152837650267e-08,-4.179306480348542467e-08,-4.309909807859434667e-08,-4.440513135370326867e-08,-4.571116462881219068e-08,-4.701719790392111268e-08,-4.832323117903003468e-08,-4.962926445413895668e-08,-5.093529772924787868e-08,-5.224133100435680069e-08,-5.354736427946572269e-08,-5.485339755457464469e-08,-5.615943082968356669e-08,-5.746546410479248870e-08,-5.877149737990141070e-08,-6.007753065501033270e-08,-6.138356393011924809e-08,-6.268959720522816347e-08,-6.399563048033707886e-08,-6.530166375544599424e-08,-6.660769703055490963e-08,-6.791373030566382501e-08,-6.921976358077274040e-08,-7.052579685588165578e-08,-7.183183013099057117e-08,-7.313786340609948655e-08,-7.444389668120840194e-08,-7.574992995631731732e-08,-7.705596323142623271e-08,-7.836199650653514809e-08,-7.966802978164406348e-08,-8.097406305675297886e-08,-8.228009633186189425e-08 +0.000000000000000000e+00,-1.325318240853128593e-09,-2.650636481706257187e-09,-3.975954722559385780e-09,-5.301272963412514373e-09,-6.626591204265642967e-09,-7.951909445118771560e-09,-9.277227685971899326e-09,-1.060254592682502709e-08,-1.192786416767815486e-08,-1.325318240853128262e-08,-1.457850064938441039e-08,-1.590381889023753981e-08,-1.722913713109066923e-08,-1.855445537194379865e-08,-1.987977361279692807e-08,-2.120509185365005749e-08,-2.253041009450318691e-08,-2.385572833535631633e-08,-2.518104657620944575e-08,-2.650636481706257518e-08,-2.783168305791570460e-08,-2.915700129876883402e-08,-3.048231953962196675e-08,-3.180763778047509947e-08,-3.313295602132823220e-08,-3.445827426218136493e-08,-3.578359250303449766e-08,-3.710891074388763039e-08,-3.843422898474076312e-08,-3.975954722559389585e-08,-4.108486546644702858e-08,-4.241018370730016131e-08,-4.373550194815329404e-08,-4.506082018900642677e-08,-4.638613842985955950e-08,-4.771145667071269223e-08,-4.903677491156582495e-08,-5.036209315241895768e-08,-5.168741139327209041e-08,-5.301272963412522314e-08,-5.433804787497835587e-08,-5.566336611583148860e-08,-5.698868435668462133e-08,-5.831400259753775406e-08,-5.963932083839088679e-08,-6.096463907924401290e-08,-6.228995732009713901e-08,-6.361527556095026512e-08,-6.494059380180339124e-08,-6.626591204265651735e-08,-6.759123028350964346e-08,-6.891654852436276957e-08,-7.024186676521589568e-08,-7.156718500606902179e-08,-7.289250324692214791e-08,-7.421782148777527402e-08,-7.554313972862840013e-08,-7.686845796948152624e-08,-7.819377621033465235e-08,-7.951909445118777847e-08,-8.084441269204090458e-08,-8.216973093289403069e-08,-8.349504917374715680e-08 +0.000000000000000000e+00,-2.293312442827957971e-09,-4.586624885655915942e-09,-6.879937328483874326e-09,-9.173249771311833537e-09,-1.146656221413979275e-08,-1.375987465696775196e-08,-1.605318709979570952e-08,-1.834649954262366707e-08,-2.063981198545162463e-08,-2.293312442827958219e-08,-2.522643687110753975e-08,-2.751974931393549730e-08,-2.981306175676345486e-08,-3.210637419959141242e-08,-3.439968664241936998e-08,-3.669299908524732753e-08,-3.898631152807528509e-08,-4.127962397090324265e-08,-4.357293641373120020e-08,-4.586624885655915776e-08,-4.815956129938711532e-08,-5.045287374221507288e-08,-5.274618618504303043e-08,-5.503949862787098799e-08,-5.733281107069894555e-08,-5.962612351352690972e-08,-6.191943595635487390e-08,-6.421274839918283807e-08,-6.650606084201080225e-08,-6.879937328483876642e-08,-7.109268572766673059e-08,-7.338599817049469477e-08,-7.567931061332265894e-08,-7.797262305615062312e-08,-8.026593549897858729e-08,-8.255924794180655147e-08,-8.485256038463451564e-08,-8.714587282746247982e-08,-8.943918527029044399e-08,-9.173249771311840817e-08,-9.402581015594637234e-08,-9.631912259877433652e-08,-9.861243504160230069e-08,-1.009057474844302649e-07,-1.031990599272582290e-07,-1.054923723700861932e-07,-1.077856848129141574e-07,-1.100789972557421216e-07,-1.123723096985700857e-07,-1.146656221413980499e-07,-1.169589345842260141e-07,-1.192522470270539783e-07,-1.215455594698819557e-07,-1.238388719127099331e-07,-1.261321843555379105e-07,-1.284254967983658879e-07,-1.307188092411938653e-07,-1.330121216840218427e-07,-1.353054341268498201e-07,-1.375987465696777975e-07,-1.398920590125057749e-07,-1.421853714553337524e-07,-1.444786838981617298e-07 +0.000000000000000000e+00,-1.306033275103936792e-09,-2.612066550207873583e-09,-3.918099825311810582e-09,-5.224133100415747994e-09,-6.530166375519685406e-09,-7.836199650623622818e-09,-9.142232925727560230e-09,-1.044826620083149764e-08,-1.175429947593543505e-08,-1.306033275103937247e-08,-1.436636602614330988e-08,-1.567239930124724894e-08,-1.697843257635118801e-08,-1.828446585145512708e-08,-1.959049912655906614e-08,-2.089653240166300521e-08,-2.220256567676694428e-08,-2.350859895187088334e-08,-2.481463222697482241e-08,-2.612066550207876148e-08,-2.742669877718270054e-08,-2.873273205228663961e-08,-3.003876532739057868e-08,-3.134479860249451774e-08,-3.265083187759845681e-08,-3.395686515270239587e-08,-3.526289842780633494e-08,-3.656893170291027401e-08,-3.787496497801421307e-08,-3.918099825311815214e-08,-4.048703152822209121e-08,-4.179306480332603027e-08,-4.309909807842996934e-08,-4.440513135353390841e-08,-4.571116462863784747e-08,-4.701719790374178654e-08,-4.832323117884572560e-08,-4.962926445394966467e-08,-5.093529772905360374e-08,-5.224133100415754280e-08,-5.354736427926148187e-08,-5.485339755436542094e-08,-5.615943082946936000e-08,-5.746546410457329907e-08,-5.877149737967723814e-08,-6.007753065478117059e-08,-6.138356392988509642e-08,-6.268959720498902225e-08,-6.399563048009294808e-08,-6.530166375519687391e-08,-6.660769703030079974e-08,-6.791373030540472557e-08,-6.921976358050865141e-08,-7.052579685561257724e-08,-7.183183013071650307e-08,-7.313786340582042890e-08,-7.444389668092435473e-08,-7.574992995602828056e-08,-7.705596323113220639e-08,-7.836199650623613223e-08,-7.966802978134005806e-08,-8.097406305644398389e-08,-8.228009633154790972e-08 +0.000000000000000000e+00,-1.325318240847693810e-09,-2.650636481695387620e-09,-3.975954722543081223e-09,-5.301272963390774412e-09,-6.626591204238467602e-09,-7.951909445086160791e-09,-9.277227685933853981e-09,-1.060254592678154717e-08,-1.192786416762924036e-08,-1.325318240847693355e-08,-1.457850064932462674e-08,-1.590381889017231827e-08,-1.722913713102001146e-08,-1.855445537186770465e-08,-1.987977361271539784e-08,-2.120509185356309103e-08,-2.253041009441078422e-08,-2.385572833525847741e-08,-2.518104657610617060e-08,-2.650636481695386379e-08,-2.783168305780155698e-08,-2.915700129864925017e-08,-3.048231953949694336e-08,-3.180763778034463655e-08,-3.313295602119232974e-08,-3.445827426204002293e-08,-3.578359250288771612e-08,-3.710891074373540931e-08,-3.843422898458310250e-08,-3.975954722543079569e-08,-4.108486546627848888e-08,-4.241018370712618206e-08,-4.373550194797387525e-08,-4.506082018882156844e-08,-4.638613842966926163e-08,-4.771145667051695482e-08,-4.903677491136464801e-08,-5.036209315221234120e-08,-5.168741139306003439e-08,-5.301272963390772758e-08,-5.433804787475542077e-08,-5.566336611560311396e-08,-5.698868435645080715e-08,-5.831400259729850034e-08,-5.963932083814618691e-08,-6.096463907899387348e-08,-6.228995731984156006e-08,-6.361527556068924663e-08,-6.494059380153693320e-08,-6.626591204238461977e-08,-6.759123028323230634e-08,-6.891654852407999292e-08,-7.024186676492767949e-08,-7.156718500577536606e-08,-7.289250324662305263e-08,-7.421782148747073920e-08,-7.554313972831842578e-08,-7.686845796916611235e-08,-7.819377621001379892e-08,-7.951909445086148549e-08,-8.084441269170917206e-08,-8.216973093255685864e-08,-8.349504917340454521e-08 +0.000000000000000000e+00,-2.293312442824069808e-09,-4.586624885648139617e-09,-6.879937328472209425e-09,-9.173249771296279233e-09,-1.146656221412034904e-08,-1.375987465694441885e-08,-1.605318709976848866e-08,-1.834649954259255847e-08,-2.063981198541662827e-08,-2.293312442824069808e-08,-2.522643687106476789e-08,-2.751974931388883770e-08,-2.981306175671291082e-08,-3.210637419953698393e-08,-3.439968664236105705e-08,-3.669299908518513017e-08,-3.898631152800920328e-08,-4.127962397083327640e-08,-4.357293641365734952e-08,-4.586624885648142264e-08,-4.815956129930549575e-08,-5.045287374212956887e-08,-5.274618618495364199e-08,-5.503949862777771510e-08,-5.733281107060178822e-08,-5.962612351342586134e-08,-6.191943595624993446e-08,-6.421274839907400757e-08,-6.650606084189808069e-08,-6.879937328472215381e-08,-7.109268572754622692e-08,-7.338599817037030004e-08,-7.567931061319437316e-08,-7.797262305601844627e-08,-8.026593549884251939e-08,-8.255924794166659251e-08,-8.485256038449066563e-08,-8.714587282731473874e-08,-8.943918527013881186e-08,-9.173249771296288498e-08,-9.402581015578695809e-08,-9.631912259861103121e-08,-9.861243504143510433e-08,-1.009057474842591774e-07,-1.031990599270832506e-07,-1.054923723699073237e-07,-1.077856848127313968e-07,-1.100789972555554699e-07,-1.123723096983795430e-07,-1.146656221412036161e-07,-1.169589345840276893e-07,-1.192522470268517491e-07,-1.215455594696758090e-07,-1.238388719124998689e-07,-1.261321843553239288e-07,-1.284254967981479887e-07,-1.307188092409720486e-07,-1.330121216837961084e-07,-1.353054341266201683e-07,-1.375987465694442282e-07,-1.398920590122682881e-07,-1.421853714550923480e-07,-1.444786838979164078e-07 +0.000000000000000000e+00,-1.192043978378674609e-09,-2.384087956757349217e-09,-3.576131935136023826e-09,-4.768175913514698434e-09,-5.960219891893372629e-09,-7.152263870272046825e-09,-8.344307848650721020e-09,-9.536351827029395215e-09,-1.072839580540806941e-08,-1.192043978378674360e-08,-1.311248376216541780e-08,-1.430452774054409199e-08,-1.549657171892276619e-08,-1.668861569730144204e-08,-1.788065967568011789e-08,-1.907270365405879374e-08,-2.026474763243746959e-08,-2.145679161081614544e-08,-2.264883558919482129e-08,-2.384087956757349714e-08,-2.503292354595217298e-08,-2.622496752433084883e-08,-2.741701150270952468e-08,-2.860905548108820053e-08,-2.980109945946687638e-08,-3.099314343784555223e-08,-3.218518741622423139e-08,-3.337723139460291055e-08,-3.456927537298158971e-08,-3.576131935136026886e-08,-3.695336332973894802e-08,-3.814540730811762718e-08,-3.933745128649630634e-08,-4.052949526487498550e-08,-4.172153924325366465e-08,-4.291358322163234381e-08,-4.410562720001102297e-08,-4.529767117838970213e-08,-4.648971515676838129e-08,-4.768175913514706045e-08,-4.887380311352573960e-08,-5.006584709190441876e-08,-5.125789107028309792e-08,-5.244993504866177708e-08,-5.364197902704045624e-08,-5.483402300541913539e-08,-5.602606698379781455e-08,-5.721811096217649371e-08,-5.841015494055517287e-08,-5.960219891893385203e-08,-6.079424289731253118e-08,-6.198628687569121034e-08,-6.317833085406988950e-08,-6.437037483244856866e-08,-6.556241881082724782e-08,-6.675446278920592698e-08,-6.794650676758460613e-08,-6.913855074596328529e-08,-7.033059472434196445e-08,-7.152263870272064361e-08,-7.271468268109932277e-08,-7.390672665947800192e-08,-7.509877063785668108e-08 +0.000000000000000000e+00,-1.261342729019445079e-09,-2.522685458038890159e-09,-3.784028187058335031e-09,-5.045370916077779490e-09,-6.306713645097223949e-09,-7.568056374116668408e-09,-8.829399103136112040e-09,-1.009074183215555567e-08,-1.135208456117499930e-08,-1.261342729019444293e-08,-1.387477001921388657e-08,-1.513611274823333020e-08,-1.639745547725277383e-08,-1.765879820627221746e-08,-1.892014093529166109e-08,-2.018148366431110473e-08,-2.144282639333054836e-08,-2.270416912234999199e-08,-2.396551185136943562e-08,-2.522685458038887925e-08,-2.648819730940832288e-08,-2.774954003842776652e-08,-2.901088276744721015e-08,-3.027222549646665378e-08,-3.153356822548609741e-08,-3.279491095450554104e-08,-3.405625368352498467e-08,-3.531759641254442831e-08,-3.657893914156387194e-08,-3.784028187058331557e-08,-3.910162459960275920e-08,-4.036296732862220283e-08,-4.162431005764164647e-08,-4.288565278666109010e-08,-4.414699551568053373e-08,-4.540833824469997736e-08,-4.666968097371942099e-08,-4.793102370273886462e-08,-4.919236643175830826e-08,-5.045370916077775189e-08,-5.171505188979719552e-08,-5.297639461881663915e-08,-5.423773734783608278e-08,-5.549908007685552641e-08,-5.676042280587497005e-08,-5.802176553489441368e-08,-5.928310826391385731e-08,-6.054445099293329432e-08,-6.180579372195273796e-08,-6.306713645097218159e-08,-6.432847917999162522e-08,-6.558982190901106885e-08,-6.685116463803051248e-08,-6.811250736704995611e-08,-6.937385009606939975e-08,-7.063519282508884338e-08,-7.189653555410828701e-08,-7.315787828312773064e-08,-7.441922101214717427e-08,-7.568056374116661791e-08,-7.694190647018606154e-08,-7.820324919920550517e-08,-7.946459192822494880e-08 +0.000000000000000000e+00,-2.128728641669107054e-09,-4.257457283338214107e-09,-6.386185925007320747e-09,-8.514914566676426560e-09,-1.064364320834553237e-08,-1.277237185001463819e-08,-1.490110049168374400e-08,-1.702982913335284981e-08,-1.915855777502195562e-08,-2.128728641669106144e-08,-2.341601505836016725e-08,-2.554474370002927306e-08,-2.767347234169837888e-08,-2.980220098336748469e-08,-3.193092962503658719e-08,-3.405965826670569301e-08,-3.618838690837479882e-08,-3.831711555004390463e-08,-4.044584419171301044e-08,-4.257457283338211626e-08,-4.470330147505122207e-08,-4.683203011672032788e-08,-4.896075875838943370e-08,-5.108948740005853951e-08,-5.321821604172764532e-08,-5.534694468339675113e-08,-5.747567332506585695e-08,-5.960440196673496276e-08,-6.173313060840406857e-08,-6.386185925007317439e-08,-6.599058789174228020e-08,-6.811931653341138601e-08,-7.024804517508049182e-08,-7.237677381674959764e-08,-7.450550245841870345e-08,-7.663423110008780926e-08,-7.876295974175691508e-08,-8.089168838342602089e-08,-8.302041702509512670e-08,-8.514914566676423251e-08,-8.727787430843333833e-08,-8.940660295010244414e-08,-9.153533159177154995e-08,-9.366406023344065577e-08,-9.579278887510976158e-08,-9.792151751677886739e-08,-1.000502461584479732e-07,-1.021789748001170790e-07,-1.043077034417861848e-07,-1.064364320834552906e-07,-1.085651607251243965e-07,-1.106938893667935023e-07,-1.128226180084626081e-07,-1.149513466501317139e-07,-1.170800752918008197e-07,-1.192088039334699255e-07,-1.213375325751390181e-07,-1.234662612168081107e-07,-1.255949898584772033e-07,-1.277237185001462958e-07,-1.298524471418153884e-07,-1.319811757834844810e-07,-1.341099044251535736e-07 +0.000000000000000000e+00,-1.192043978375009992e-09,-2.384087956750019983e-09,-3.576131935125030182e-09,-4.768175913500040794e-09,-5.960219891875051406e-09,-7.152263870250062018e-09,-8.344307848625071803e-09,-9.536351827000081588e-09,-1.072839580537509137e-08,-1.192043978375010116e-08,-1.311248376212511094e-08,-1.430452774050012073e-08,-1.549657171887513051e-08,-1.668861569725014030e-08,-1.788065967562515008e-08,-1.907270365400015987e-08,-2.026474763237516965e-08,-2.145679161075017944e-08,-2.264883558912518922e-08,-2.384087956750019901e-08,-2.503292354587520879e-08,-2.622496752425021858e-08,-2.741701150262522836e-08,-2.860905548100023815e-08,-2.980109945937524793e-08,-3.099314343775026103e-08,-3.218518741612527412e-08,-3.337723139450028721e-08,-3.456927537287530031e-08,-3.576131935125031340e-08,-3.695336332962532649e-08,-3.814540730800033959e-08,-3.933745128637535268e-08,-4.052949526475036577e-08,-4.172153924312537887e-08,-4.291358322150039196e-08,-4.410562719987540506e-08,-4.529767117825041815e-08,-4.648971515662543124e-08,-4.768175913500044434e-08,-4.887380311337545743e-08,-5.006584709175047052e-08,-5.125789107012548362e-08,-5.244993504850049671e-08,-5.364197902687550980e-08,-5.483402300525052290e-08,-5.602606698362553599e-08,-5.721811096200054909e-08,-5.841015494037556218e-08,-5.960219891875057527e-08,-6.079424289712558837e-08,-6.198628687550060146e-08,-6.317833085387561455e-08,-6.437037483225062765e-08,-6.556241881062564074e-08,-6.675446278900065383e-08,-6.794650676737566693e-08,-6.913855074575068002e-08,-7.033059472412569312e-08,-7.152263870250070621e-08,-7.271468268087571930e-08,-7.390672665925073240e-08,-7.509877063762574549e-08 +0.000000000000000000e+00,-1.261342729015162558e-09,-2.522685458030325117e-09,-3.784028187045488089e-09,-5.045370916060651061e-09,-6.306713645075814033e-09,-7.568056374090976178e-09,-8.829399103106138323e-09,-1.009074183212130047e-08,-1.135208456113646261e-08,-1.261342729015162476e-08,-1.387477001916678690e-08,-1.513611274818194905e-08,-1.639745547719711119e-08,-1.765879820621227334e-08,-1.892014093522743548e-08,-2.018148366424259763e-08,-2.144282639325775977e-08,-2.270416912227292192e-08,-2.396551185128808406e-08,-2.522685458030324621e-08,-2.648819730931840835e-08,-2.774954003833357050e-08,-2.901088276734873264e-08,-3.027222549636389148e-08,-3.153356822537904701e-08,-3.279491095439420253e-08,-3.405625368340935806e-08,-3.531759641242451359e-08,-3.657893914143966911e-08,-3.784028187045482464e-08,-3.910162459946998017e-08,-4.036296732848513570e-08,-4.162431005750029122e-08,-4.288565278651544675e-08,-4.414699551553060228e-08,-4.540833824454575781e-08,-4.666968097356091333e-08,-4.793102370257606886e-08,-4.919236643159122439e-08,-5.045370916060637992e-08,-5.171505188962153544e-08,-5.297639461863669097e-08,-5.423773734765184650e-08,-5.549908007666700203e-08,-5.676042280568215755e-08,-5.802176553469731308e-08,-5.928310826371246861e-08,-6.054445099272762414e-08,-6.180579372174277966e-08,-6.306713645075793519e-08,-6.432847917977309072e-08,-6.558982190878824625e-08,-6.685116463780340177e-08,-6.811250736681855730e-08,-6.937385009583371283e-08,-7.063519282484886836e-08,-7.189653555386402388e-08,-7.315787828287917941e-08,-7.441922101189433494e-08,-7.568056374090949047e-08,-7.694190646992464599e-08,-7.820324919893980152e-08,-7.946459192795495705e-08 +0.000000000000000000e+00,-2.128728641666057652e-09,-4.257457283332115305e-09,-6.386185924998172957e-09,-8.514914566664230609e-09,-1.064364320833028909e-08,-1.277237184999634757e-08,-1.490110049166240605e-08,-1.702982913332846453e-08,-1.915855777499452301e-08,-2.128728641666058149e-08,-2.341601505832663997e-08,-2.554474369999269844e-08,-2.767347234165875692e-08,-2.980220098332481540e-08,-3.193092962499087388e-08,-3.405965826665693567e-08,-3.618838690832299746e-08,-3.831711554998905925e-08,-4.044584419165512104e-08,-4.257457283332118282e-08,-4.470330147498724461e-08,-4.683203011665330640e-08,-4.896075875831936819e-08,-5.108948739998542998e-08,-5.321821604165149177e-08,-5.534694468331755355e-08,-5.747567332498361534e-08,-5.960440196664967713e-08,-6.173313060831573892e-08,-6.386185924998180071e-08,-6.599058789164786249e-08,-6.811931653331392428e-08,-7.024804517497998607e-08,-7.237677381664604786e-08,-7.450550245831210965e-08,-7.663423109997817144e-08,-7.876295974164423322e-08,-8.089168838331029501e-08,-8.302041702497635680e-08,-8.514914566664241859e-08,-8.727787430830848038e-08,-8.940660294997454216e-08,-9.153533159164060395e-08,-9.366406023330666574e-08,-9.579278887497272753e-08,-9.792151751663878932e-08,-1.000502461583048511e-07,-1.021789747999709129e-07,-1.043077034416369747e-07,-1.064364320833030365e-07,-1.085651607249690983e-07,-1.106938893666351600e-07,-1.128226180083012218e-07,-1.149513466499672836e-07,-1.170800752916333454e-07,-1.192088039332994072e-07,-1.213375325749654822e-07,-1.234662612166315572e-07,-1.255949898582976323e-07,-1.277237184999637073e-07,-1.298524471416297823e-07,-1.319811757832958573e-07,-1.341099044249619324e-07 +0.000000000000000000e+00,-1.469239194674079276e-09,-2.938478389348158551e-09,-4.407717584022237827e-09,-5.876956778696317102e-09,-7.346195973370396378e-09,-8.815435168044475654e-09,-1.028467436271855410e-08,-1.175391355739263255e-08,-1.322315275206671100e-08,-1.469239194674078945e-08,-1.616163114141486790e-08,-1.763087033608894800e-08,-1.910010953076302810e-08,-2.056934872543710820e-08,-2.203858792011118831e-08,-2.350782711478526841e-08,-2.497706630945934851e-08,-2.644630550413342862e-08,-2.791554469880750872e-08,-2.938478389348158882e-08,-3.085402308815566561e-08,-3.232326228282974241e-08,-3.379250147750381920e-08,-3.526174067217789600e-08,-3.673097986685197279e-08,-3.820021906152604959e-08,-3.966945825620012638e-08,-4.113869745087420317e-08,-4.260793664554827997e-08,-4.407717584022235676e-08,-4.554641503489643356e-08,-4.701565422957051035e-08,-4.848489342424458714e-08,-4.995413261891866394e-08,-5.142337181359274073e-08,-5.289261100826681753e-08,-5.436185020294089432e-08,-5.583108939761497111e-08,-5.730032859228904791e-08,-5.876956778696312470e-08,-6.023880698163720150e-08,-6.170804617631127829e-08,-6.317728537098535508e-08,-6.464652456565943188e-08,-6.611576376033350867e-08,-6.758500295500758547e-08,-6.905424214968166226e-08,-7.052348134435573905e-08,-7.199272053902981585e-08,-7.346195973370389264e-08,-7.493119892837796944e-08,-7.640043812305204623e-08,-7.786967731772612302e-08,-7.933891651240019982e-08,-8.080815570707427661e-08,-8.227739490174835341e-08,-8.374663409642243020e-08,-8.521587329109650700e-08,-8.668511248577058379e-08,-8.815435168044466058e-08,-8.962359087511873738e-08,-9.109283006979281417e-08,-9.256206926446689097e-08 +0.000000000000000000e+00,-4.543314893724121663e-10,-9.086629787448243326e-10,-1.362994468117236551e-09,-1.817325957489648872e-09,-2.271657446862060987e-09,-2.725988936234473101e-09,-3.180320425606885216e-09,-3.634651914979297330e-09,-4.088983404351709445e-09,-4.543314893724121973e-09,-4.997646383096534501e-09,-5.451977872468947030e-09,-5.906309361841359558e-09,-6.360640851213772086e-09,-6.814972340586184614e-09,-7.269303829958597142e-09,-7.723635319331010498e-09,-8.177966808703423853e-09,-8.632298298075837208e-09,-9.086629787448250564e-09,-9.540961276820663919e-09,-9.995292766193077274e-09,-1.044962425556549063e-08,-1.090395574493790399e-08,-1.135828723431031734e-08,-1.181261872368273070e-08,-1.226695021305514405e-08,-1.272128170242755741e-08,-1.317561319179997076e-08,-1.362994468117238412e-08,-1.408427617054479747e-08,-1.453860765991721083e-08,-1.499293914928962418e-08,-1.544727063866203754e-08,-1.590160212803445089e-08,-1.635593361740686425e-08,-1.681026510677927760e-08,-1.726459659615169096e-08,-1.771892808552410432e-08,-1.817325957489651767e-08,-1.862759106426893103e-08,-1.908192255364134438e-08,-1.953625404301375774e-08,-1.999058553238617109e-08,-2.044491702175858445e-08,-2.089924851113099780e-08,-2.135358000050341116e-08,-2.180791148987582451e-08,-2.226224297924823787e-08,-2.271657446862065122e-08,-2.317090595799306458e-08,-2.362523744736547794e-08,-2.407956893673789129e-08,-2.453390042611030465e-08,-2.498823191548271800e-08,-2.544256340485513136e-08,-2.589689489422754471e-08,-2.635122638359995807e-08,-2.680555787297237142e-08,-2.725988936234478478e-08,-2.771422085171719813e-08,-2.816855234108961149e-08,-2.862288383046202484e-08 +0.000000000000000000e+00,-1.525126500291244717e-09,-3.050253000582489434e-09,-4.575379500873734150e-09,-6.100506001164978867e-09,-7.625632501456223584e-09,-9.150759001747468301e-09,-1.067588550203871302e-08,-1.220101200232995773e-08,-1.372613850262120245e-08,-1.525126500291244717e-08,-1.677639150320369188e-08,-1.830151800349493660e-08,-1.982664450378618132e-08,-2.135177100407742604e-08,-2.287689750436867075e-08,-2.440202400465991547e-08,-2.592715050495116019e-08,-2.745227700524240490e-08,-2.897740350553364962e-08,-3.050253000582489434e-08,-3.202765650611613905e-08,-3.355278300640738377e-08,-3.507790950669862849e-08,-3.660303600698987320e-08,-3.812816250728111792e-08,-3.965328900757236264e-08,-4.117841550786360735e-08,-4.270354200815485207e-08,-4.422866850844609679e-08,-4.575379500873734150e-08,-4.727892150902858622e-08,-4.880404800931983094e-08,-5.032917450961107565e-08,-5.185430100990232037e-08,-5.337942751019356509e-08,-5.490455401048480981e-08,-5.642968051077605452e-08,-5.795480701106729924e-08,-5.947993351135854396e-08,-6.100506001164978867e-08,-6.253018651194102677e-08,-6.405531301223226487e-08,-6.558043951252350297e-08,-6.710556601281474107e-08,-6.863069251310597917e-08,-7.015581901339721727e-08,-7.168094551368845537e-08,-7.320607201397969347e-08,-7.473119851427093157e-08,-7.625632501456216967e-08,-7.778145151485340777e-08,-7.930657801514464586e-08,-8.083170451543588396e-08,-8.235683101572712206e-08,-8.388195751601836016e-08,-8.540708401630959826e-08,-8.693221051660083636e-08,-8.845733701689207446e-08,-8.998246351718331256e-08,-9.150759001747455066e-08,-9.303271651776578876e-08,-9.455784301805702686e-08,-9.608296951834826496e-08 +0.000000000000000000e+00,-1.469239194662818659e-09,-2.938478389325637318e-09,-4.407717583988455771e-09,-5.876956778651273809e-09,-7.346195973314091848e-09,-8.815435167976909887e-09,-1.028467436263972710e-08,-1.175391355730254431e-08,-1.322315275196536152e-08,-1.469239194662817873e-08,-1.616163114129099594e-08,-1.763087033595381316e-08,-1.910010953061663037e-08,-2.056934872527944758e-08,-2.203858791994226479e-08,-2.350782711460508200e-08,-2.497706630926789921e-08,-2.644630550393071643e-08,-2.791554469859353364e-08,-2.938478389325635085e-08,-3.085402308791917137e-08,-3.232326228258199189e-08,-3.379250147724481241e-08,-3.526174067190763293e-08,-3.673097986657045345e-08,-3.820021906123327397e-08,-3.966945825589609449e-08,-4.113869745055891501e-08,-4.260793664522173553e-08,-4.407717583988455605e-08,-4.554641503454737657e-08,-4.701565422921019709e-08,-4.848489342387301761e-08,-4.995413261853583813e-08,-5.142337181319865865e-08,-5.289261100786147917e-08,-5.436185020252429969e-08,-5.583108939718712021e-08,-5.730032859184994073e-08,-5.876956778651276125e-08,-6.023880698117558177e-08,-6.170804617583839568e-08,-6.317728537050120958e-08,-6.464652456516402348e-08,-6.611576375982683739e-08,-6.758500295448965129e-08,-6.905424214915246519e-08,-7.052348134381527909e-08,-7.199272053847809300e-08,-7.346195973314090690e-08,-7.493119892780372080e-08,-7.640043812246653471e-08,-7.786967731712934861e-08,-7.933891651179216251e-08,-8.080815570645497641e-08,-8.227739490111779032e-08,-8.374663409578060422e-08,-8.521587329044341812e-08,-8.668511248510623203e-08,-8.815435167976904593e-08,-8.962359087443185983e-08,-9.109283006909467373e-08,-9.256206926375748764e-08 +0.000000000000000000e+00,-4.543314893615343793e-10,-9.086629787230687587e-10,-1.362994468084603241e-09,-1.817325957446137724e-09,-2.271657446807672207e-09,-2.725988936169206483e-09,-3.180320425530740759e-09,-3.634651914892275035e-09,-4.088983404253809311e-09,-4.543314893615343587e-09,-4.997646382976877863e-09,-5.451977872338412139e-09,-5.906309361699946415e-09,-6.360640851061480690e-09,-6.814972340423014966e-09,-7.269303829784549242e-09,-7.723635319146082691e-09,-8.177966808507616967e-09,-8.632298297869151243e-09,-9.086629787230685519e-09,-9.540961276592219795e-09,-9.995292765953754071e-09,-1.044962425531528835e-08,-1.090395574467682262e-08,-1.135828723403835690e-08,-1.181261872339989117e-08,-1.226695021276142545e-08,-1.272128170212295973e-08,-1.317561319148449400e-08,-1.362994468084602828e-08,-1.408427617020756255e-08,-1.453860765956909683e-08,-1.499293914893063111e-08,-1.544727063829216538e-08,-1.590160212765369966e-08,-1.635593361701523393e-08,-1.681026510637676821e-08,-1.726459659573830249e-08,-1.771892808509983676e-08,-1.817325957446137104e-08,-1.862759106382290531e-08,-1.908192255318443959e-08,-1.953625404254597387e-08,-1.999058553190750814e-08,-2.044491702126904242e-08,-2.089924851063057669e-08,-2.135357999999211097e-08,-2.180791148935364525e-08,-2.226224297871517952e-08,-2.271657446807671380e-08,-2.317090595743824807e-08,-2.362523744679978235e-08,-2.407956893616131663e-08,-2.453390042552285090e-08,-2.498823191488438518e-08,-2.544256340424591945e-08,-2.589689489360745373e-08,-2.635122638296898801e-08,-2.680555787233052228e-08,-2.725988936169205656e-08,-2.771422085105359083e-08,-2.816855234041512511e-08,-2.862288382977665938e-08 +0.000000000000000000e+00,-3.033462210444035731e-10,-6.066924420888071463e-10,-9.100386631332107711e-10,-1.213384884177614499e-09,-1.516731105222018228e-09,-1.820077326266421956e-09,-2.123423547310825477e-09,-2.426769768355228999e-09,-2.730115989399632520e-09,-3.033462210444036041e-09,-3.336808431488439563e-09,-3.640154652532843084e-09,-3.943500873577246606e-09,-4.246847094621650127e-09,-4.550193315666053649e-09,-4.853539536710457170e-09,-5.156885757754860691e-09,-5.460231978799264213e-09,-5.763578199843667734e-09,-6.066924420888071256e-09,-6.370270641932474777e-09,-6.673616862976878299e-09,-6.976963084021281820e-09,-7.280309305065685341e-09,-7.583655526110089690e-09,-7.887001747154494866e-09,-8.190347968198900042e-09,-8.493694189243305217e-09,-8.797040410287710393e-09,-9.100386631332115569e-09,-9.403732852376520745e-09,-9.707079073420925921e-09,-1.001042529446533110e-08,-1.031377151550973627e-08,-1.061711773655414145e-08,-1.092046395759854662e-08,-1.122381017864295180e-08,-1.152715639968735698e-08,-1.183050262073176215e-08,-1.213384884177616733e-08,-1.243719506282057250e-08,-1.274054128386497768e-08,-1.304388750490938285e-08,-1.334723372595378803e-08,-1.365057994699819321e-08,-1.395392616804259838e-08,-1.425727238908700356e-08,-1.456061861013140873e-08,-1.486396483117581391e-08,-1.516731105222021908e-08,-1.547065727326462426e-08,-1.577400349430902944e-08,-1.607734971535343461e-08,-1.638069593639783979e-08,-1.668404215744224496e-08,-1.698738837848665014e-08,-1.729073459953105532e-08,-1.759408082057546049e-08,-1.789742704161986567e-08,-1.820077326266427084e-08,-1.850411948370867602e-08,-1.880746570475308119e-08,-1.911081192579748637e-08 +0.000000000000000000e+00,-3.033462210343138825e-10,-6.066924420686277650e-10,-9.100386631029416475e-10,-1.213384884137255530e-09,-1.516731105171569516e-09,-1.820077326205883502e-09,-2.123423547240197488e-09,-2.426769768274511474e-09,-2.730115989308825460e-09,-3.033462210343139445e-09,-3.336808431377453431e-09,-3.640154652411767417e-09,-3.943500873446081403e-09,-4.246847094480394976e-09,-4.550193315514708548e-09,-4.853539536549022120e-09,-5.156885757583335692e-09,-5.460231978617649265e-09,-5.763578199651962837e-09,-6.066924420686276409e-09,-6.370270641720589982e-09,-6.673616862754903554e-09,-6.976963083789217126e-09,-7.280309304823530699e-09,-7.583655525857844271e-09,-7.887001746892157843e-09,-8.190347967926471416e-09,-8.493694188960784988e-09,-8.797040409995098560e-09,-9.100386631029412133e-09,-9.403732852063725705e-09,-9.707079073098039277e-09,-1.001042529413235285e-08,-1.031377151516666642e-08,-1.061711773620097999e-08,-1.092046395723529357e-08,-1.122381017826960714e-08,-1.152715639930392071e-08,-1.183050262033823428e-08,-1.213384884137254786e-08,-1.243719506240686143e-08,-1.274054128344117500e-08,-1.304388750447548857e-08,-1.334723372550980215e-08,-1.365057994654411572e-08,-1.395392616757842929e-08,-1.425727238861274286e-08,-1.456061860964705643e-08,-1.486396483068137001e-08,-1.516731105171568523e-08,-1.547065727275000211e-08,-1.577400349378431900e-08,-1.607734971481863588e-08,-1.638069593585295276e-08,-1.668404215688726964e-08,-1.698738837792158652e-08,-1.729073459895590340e-08,-1.759408081999022028e-08,-1.789742704102453716e-08,-1.820077326205885404e-08,-1.850411948309317092e-08,-1.880746570412748781e-08,-1.911081192516180469e-08 +0.000000000000000000e+00,-3.646913648994544283e-10,-7.293827297989088566e-10,-1.094074094698363285e-09,-1.458765459597817713e-09,-1.823456824497272141e-09,-2.188148189396726570e-09,-2.552839554296180791e-09,-2.917530919195635013e-09,-3.282222284095089234e-09,-3.646913648994543456e-09,-4.011605013893997677e-09,-4.376296378793452312e-09,-4.740987743692906947e-09,-5.105679108592361582e-09,-5.470370473491816218e-09,-5.835061838391270853e-09,-6.199753203290725488e-09,-6.564444568190180123e-09,-6.929135933089634758e-09,-7.293827297989089393e-09,-7.658518662888544855e-09,-8.023210027788000317e-09,-8.387901392687455780e-09,-8.752592757586911242e-09,-9.117284122486366704e-09,-9.481975487385822166e-09,-9.846666852285277629e-09,-1.021135821718473309e-08,-1.057604958208418855e-08,-1.094074094698364402e-08,-1.130543231188309948e-08,-1.167012367678255494e-08,-1.203481504168201040e-08,-1.239950640658146586e-08,-1.276419777148092133e-08,-1.312888913638037679e-08,-1.349358050127983225e-08,-1.385827186617928771e-08,-1.422296323107874318e-08,-1.458765459597819864e-08,-1.495234596087765410e-08,-1.531703732577710956e-08,-1.568172869067656502e-08,-1.604642005557602049e-08,-1.641111142047547595e-08,-1.677580278537493141e-08,-1.714049415027438687e-08,-1.750518551517384234e-08,-1.786987688007329780e-08,-1.823456824497275326e-08,-1.859925960987220872e-08,-1.896395097477166419e-08,-1.932864233967111965e-08,-1.969333370457057511e-08,-2.005802506947003057e-08,-2.042271643436948603e-08,-2.078740779926894150e-08,-2.115209916416839696e-08,-2.151679052906785242e-08,-2.188148189396730788e-08,-2.224617325886676335e-08,-2.261086462376621881e-08,-2.297555598866567427e-08 +0.000000000000000000e+00,-3.646913648904941494e-10,-7.293827297809882988e-10,-1.094074094671482396e-09,-1.458765459561976391e-09,-1.823456824452470385e-09,-2.188148189342964379e-09,-2.552839554233458167e-09,-2.917530919123951954e-09,-3.282222284014445742e-09,-3.646913648904939529e-09,-4.011605013795433317e-09,-4.376296378685927104e-09,-4.740987743576420892e-09,-5.105679108466914679e-09,-5.470370473357408467e-09,-5.835061838247902254e-09,-6.199753203138396042e-09,-6.564444568028889829e-09,-6.929135932919383617e-09,-7.293827297809877404e-09,-7.658518662700371192e-09,-8.023210027590864979e-09,-8.387901392481358767e-09,-8.752592757371852555e-09,-9.117284122262346342e-09,-9.481975487152840130e-09,-9.846666852043333917e-09,-1.021135821693382770e-08,-1.057604958182432149e-08,-1.094074094671481528e-08,-1.130543231160530907e-08,-1.167012367649580285e-08,-1.203481504138629664e-08,-1.239950640627679043e-08,-1.276419777116728422e-08,-1.312888913605777800e-08,-1.349358050094827179e-08,-1.385827186583876558e-08,-1.422296323072925937e-08,-1.458765459561975315e-08,-1.495234596051024694e-08,-1.531703732540074238e-08,-1.568172869029123783e-08,-1.604642005518173327e-08,-1.641111142007222871e-08,-1.677580278496272415e-08,-1.714049414985321959e-08,-1.750518551474371504e-08,-1.786987687963421048e-08,-1.823456824452470592e-08,-1.859925960941520136e-08,-1.896395097430569680e-08,-1.932864233919619224e-08,-1.969333370408668769e-08,-2.005802506897718313e-08,-2.042271643386767857e-08,-2.078740779875817401e-08,-2.115209916364866945e-08,-2.151679052853916490e-08,-2.188148189342966034e-08,-2.224617325832015578e-08,-2.261086462321065122e-08,-2.297555598810114666e-08 +0.000000000000000000e+00,-4.624719510271803815e-10,-9.249439020543607629e-10,-1.387415853081541093e-09,-1.849887804108721319e-09,-2.312359755135901545e-09,-2.774831706163081772e-09,-3.237303657190261998e-09,-3.699775608217442224e-09,-4.162247559244622451e-09,-4.624719510271803091e-09,-5.087191461298983731e-09,-5.549663412326164371e-09,-6.012135363353345011e-09,-6.474607314380525651e-09,-6.937079265407706291e-09,-7.399551216434886931e-09,-7.862023167462068398e-09,-8.324495118489249865e-09,-8.786967069516431332e-09,-9.249439020543612799e-09,-9.711910971570794266e-09,-1.017438292259797573e-08,-1.063685487362515720e-08,-1.109932682465233867e-08,-1.156179877567952013e-08,-1.202427072670670160e-08,-1.248674267773388307e-08,-1.294921462876106454e-08,-1.341168657978824600e-08,-1.387415853081542747e-08,-1.433663048184260894e-08,-1.479910243286979040e-08,-1.526157438389697187e-08,-1.572404633492415334e-08,-1.618651828595133481e-08,-1.664899023697851627e-08,-1.711146218800569774e-08,-1.757393413903287921e-08,-1.803640609006006067e-08,-1.849887804108724214e-08,-1.896134999211442361e-08,-1.942382194314160508e-08,-1.988629389416878654e-08,-2.034876584519596801e-08,-2.081123779622314948e-08,-2.127370974725033094e-08,-2.173618169827751241e-08,-2.219865364930469388e-08,-2.266112560033187535e-08,-2.312359755135905681e-08,-2.358606950238623828e-08,-2.404854145341341975e-08,-2.451101340444060121e-08,-2.497348535546778268e-08,-2.543595730649496415e-08,-2.589842925752214562e-08,-2.636090120854932708e-08,-2.682337315957650855e-08,-2.728584511060369002e-08,-2.774831706163087148e-08,-2.821078901265805295e-08,-2.867326096368523442e-08,-2.913573291471241589e-08 +0.000000000000000000e+00,-4.624719510192818406e-10,-9.249439020385636812e-10,-1.387415853057845470e-09,-1.849887804077127156e-09,-2.312359755096408634e-09,-2.774831706115690113e-09,-3.237303657134971592e-09,-3.699775608154253070e-09,-4.162247559173534549e-09,-4.624719510192815614e-09,-5.087191461212096679e-09,-5.549663412231377744e-09,-6.012135363250658809e-09,-6.474607314269939875e-09,-6.937079265289220940e-09,-7.399551216308502005e-09,-7.862023167327783897e-09,-8.324495118347065789e-09,-8.786967069366347682e-09,-9.249439020385629574e-09,-9.711910971404911466e-09,-1.017438292242419336e-08,-1.063685487344347525e-08,-1.109932682446275714e-08,-1.156179877548203904e-08,-1.202427072650132093e-08,-1.248674267752060282e-08,-1.294921462853988471e-08,-1.341168657955916660e-08,-1.387415853057844850e-08,-1.433663048159773039e-08,-1.479910243261701228e-08,-1.526157438363629417e-08,-1.572404633465557441e-08,-1.618651828567485465e-08,-1.664899023669413489e-08,-1.711146218771341513e-08,-1.757393413873269536e-08,-1.803640608975197560e-08,-1.849887804077125584e-08,-1.896134999179053608e-08,-1.942382194280981631e-08,-1.988629389382909655e-08,-2.034876584484837679e-08,-2.081123779586765703e-08,-2.127370974688693727e-08,-2.173618169790621750e-08,-2.219865364892549774e-08,-2.266112559994477798e-08,-2.312359755096405822e-08,-2.358606950198333846e-08,-2.404854145300261869e-08,-2.451101340402189893e-08,-2.497348535504117917e-08,-2.543595730606045941e-08,-2.589842925707973965e-08,-2.636090120809901988e-08,-2.682337315911830012e-08,-2.728584511013758036e-08,-2.774831706115686060e-08,-2.821078901217614084e-08,-2.867326096319542107e-08,-2.913573291421470131e-08 +0.000000000000000000e+00,-5.421375844176576594e-10,-1.084275168835315319e-09,-1.626412753252972978e-09,-2.168550337670630637e-09,-2.710687922088288297e-09,-3.252825506505945956e-09,-3.794963090923603616e-09,-4.337100675341261275e-09,-4.879238259758918934e-09,-5.421375844176576594e-09,-5.963513428594234253e-09,-6.505651013011891912e-09,-7.047788597429549572e-09,-7.589926181847207231e-09,-8.132063766264864891e-09,-8.674201350682522550e-09,-9.216338935100180209e-09,-9.758476519517837869e-09,-1.030061410393549553e-08,-1.084275168835315319e-08,-1.138488927277081085e-08,-1.192702685718846851e-08,-1.246916444160612617e-08,-1.301130202602378382e-08,-1.355343961044144148e-08,-1.409557719485909914e-08,-1.463771477927675680e-08,-1.517985236369441446e-08,-1.572198994811207212e-08,-1.626412753252972978e-08,-1.680626511694738744e-08,-1.734840270136504510e-08,-1.789054028578270276e-08,-1.843267787020036042e-08,-1.897481545461801808e-08,-1.951695303903567574e-08,-2.005909062345333340e-08,-2.060122820787099106e-08,-2.114336579228864872e-08,-2.168550337670630637e-08,-2.222764096112396403e-08,-2.276977854554162169e-08,-2.331191612995927935e-08,-2.385405371437693701e-08,-2.439619129879459467e-08,-2.493832888321225233e-08,-2.548046646762990999e-08,-2.602260405204756765e-08,-2.656474163646522531e-08,-2.710687922088288297e-08,-2.764901680530054063e-08,-2.819115438971819829e-08,-2.873329197413585595e-08,-2.927542955855351361e-08,-2.981756714297116796e-08,-3.035970472738882231e-08,-3.090184231180647666e-08,-3.144397989622413101e-08,-3.198611748064178536e-08,-3.252825506505943971e-08,-3.307039264947709406e-08,-3.361253023389474841e-08,-3.415466781831240276e-08 +0.000000000000000000e+00,-5.421375844103791938e-10,-1.084275168820758388e-09,-1.626412753231137478e-09,-2.168550337641516361e-09,-2.710687922051895245e-09,-3.252825506462274129e-09,-3.794963090872652599e-09,-4.337100675283031069e-09,-4.879238259693409539e-09,-5.421375844103788008e-09,-5.963513428514166478e-09,-6.505651012924544948e-09,-7.047788597334923418e-09,-7.589926181745301888e-09,-8.132063766155680358e-09,-8.674201350566058828e-09,-9.216338934976437298e-09,-9.758476519386815768e-09,-1.030061410379719424e-08,-1.084275168820757271e-08,-1.138488927261795118e-08,-1.192702685702832965e-08,-1.246916444143870812e-08,-1.301130202584908659e-08,-1.355343961025946506e-08,-1.409557719466984353e-08,-1.463771477908022200e-08,-1.517985236349060047e-08,-1.572198994790097894e-08,-1.626412753231135741e-08,-1.680626511672173588e-08,-1.734840270113211435e-08,-1.789054028554249282e-08,-1.843267786995287129e-08,-1.897481545436324976e-08,-1.951695303877362823e-08,-2.005909062318400670e-08,-2.060122820759438517e-08,-2.114336579200476364e-08,-2.168550337641514211e-08,-2.222764096082552058e-08,-2.276977854523589905e-08,-2.331191612964627752e-08,-2.385405371405665599e-08,-2.439619129846703446e-08,-2.493832888287741293e-08,-2.548046646728779140e-08,-2.602260405169816987e-08,-2.656474163610854834e-08,-2.710687922051892681e-08,-2.764901680492930528e-08,-2.819115438933968375e-08,-2.873329197375006222e-08,-2.927542955816044069e-08,-2.981756714257081916e-08,-3.035970472698119432e-08,-3.090184231139156948e-08,-3.144397989580194464e-08,-3.198611748021231980e-08,-3.252825506462269496e-08,-3.307039264903307012e-08,-3.361253023344344529e-08,-3.415466781785382045e-08 +0.000000000000000000e+00,-5.825122639407870012e-10,-1.165024527881574002e-09,-1.747536791822361107e-09,-2.330049055763148418e-09,-2.912561319703935730e-09,-3.495073583644723041e-09,-4.077585847585510766e-09,-4.660098111526298491e-09,-5.242610375467086216e-09,-5.825122639407873941e-09,-6.407634903348661666e-09,-6.990147167289449391e-09,-7.572659431230237116e-09,-8.155171695171024841e-09,-8.737683959111812566e-09,-9.320196223052600291e-09,-9.902708486993388016e-09,-1.048522075093417574e-08,-1.106773301487496347e-08,-1.165024527881575119e-08,-1.223275754275653892e-08,-1.281526980669732664e-08,-1.339778207063811437e-08,-1.398029433457890209e-08,-1.456280659851968982e-08,-1.514531886246047754e-08,-1.572783112640126692e-08,-1.631034339034205630e-08,-1.689285565428284568e-08,-1.747536791822363506e-08,-1.805788018216442444e-08,-1.864039244610521382e-08,-1.922290471004600320e-08,-1.980541697398679258e-08,-2.038792923792758196e-08,-2.097044150186837134e-08,-2.155295376580916071e-08,-2.213546602974995009e-08,-2.271797829369073947e-08,-2.330049055763152885e-08,-2.388300282157231823e-08,-2.446551508551310761e-08,-2.504802734945389699e-08,-2.563053961339468637e-08,-2.621305187733547575e-08,-2.679556414127626513e-08,-2.737807640521705451e-08,-2.796058866915784389e-08,-2.854310093309863327e-08,-2.912561319703942265e-08,-2.970812546098021203e-08,-3.029063772492100140e-08,-3.087314998886179078e-08,-3.145566225280258016e-08,-3.203817451674336954e-08,-3.262068678068415892e-08,-3.320319904462494830e-08,-3.378571130856573768e-08,-3.436822357250652706e-08,-3.495073583644731644e-08,-3.553324810038810582e-08,-3.611576036432889520e-08,-3.669827262826968458e-08 +0.000000000000000000e+00,-5.825122639340273847e-10,-1.165024527868054769e-09,-1.747536791802082154e-09,-2.330049055736109539e-09,-2.912561319670136716e-09,-3.495073583604163894e-09,-4.077585847538191072e-09,-4.660098111472218250e-09,-5.242610375406245428e-09,-5.825122639340272606e-09,-6.407634903274299784e-09,-6.990147167208326961e-09,-7.572659431142354139e-09,-8.155171695076382144e-09,-8.737683959010410149e-09,-9.320196222944438154e-09,-9.902708486878466160e-09,-1.048522075081249416e-08,-1.106773301474652217e-08,-1.165024527868055017e-08,-1.223275754261457818e-08,-1.281526980654860618e-08,-1.339778207048263419e-08,-1.398029433441666219e-08,-1.456280659835069020e-08,-1.514531886228471820e-08,-1.572783112621874456e-08,-1.631034339015277091e-08,-1.689285565408679726e-08,-1.747536791802082361e-08,-1.805788018195484996e-08,-1.864039244588887631e-08,-1.922290470982290266e-08,-1.980541697375692901e-08,-2.038792923769095536e-08,-2.097044150162498171e-08,-2.155295376555900806e-08,-2.213546602949303441e-08,-2.271797829342706076e-08,-2.330049055736108711e-08,-2.388300282129511347e-08,-2.446551508522913982e-08,-2.504802734916316617e-08,-2.563053961309719252e-08,-2.621305187703121887e-08,-2.679556414096524522e-08,-2.737807640489927157e-08,-2.796058866883329792e-08,-2.854310093276732427e-08,-2.912561319670135062e-08,-2.970812546063537697e-08,-3.029063772456940332e-08,-3.087314998850342967e-08,-3.145566225243745602e-08,-3.203817451637148237e-08,-3.262068678030550873e-08,-3.320319904423953508e-08,-3.378571130817356143e-08,-3.436822357210758778e-08,-3.495073583604161413e-08,-3.553324809997564048e-08,-3.611576036390966683e-08,-3.669827262784369318e-08 +0.000000000000000000e+00,-5.751355146688381575e-10,-1.150271029337676315e-09,-1.725406544006514472e-09,-2.300542058675352630e-09,-2.875677573344190994e-09,-3.450813088013029358e-09,-4.025948602681867723e-09,-4.601084117350706087e-09,-5.176219632019544451e-09,-5.751355146688382815e-09,-6.326490661357221180e-09,-6.901626176026059544e-09,-7.476761690694897908e-09,-8.051897205363735445e-09,-8.627032720032572982e-09,-9.202168234701410519e-09,-9.777303749370248056e-09,-1.035243926403908559e-08,-1.092757477870792313e-08,-1.150271029337676067e-08,-1.207784580804559820e-08,-1.265298132271443574e-08,-1.322811683738327328e-08,-1.380325235205211082e-08,-1.437838786672094835e-08,-1.495352338138978589e-08,-1.552865889605862177e-08,-1.610379441072745766e-08,-1.667892992539629354e-08,-1.725406544006512942e-08,-1.782920095473396530e-08,-1.840433646940280119e-08,-1.897947198407163707e-08,-1.955460749874047295e-08,-2.012974301340930883e-08,-2.070487852807814472e-08,-2.128001404274698060e-08,-2.185514955741581648e-08,-2.243028507208465237e-08,-2.300542058675348825e-08,-2.358055610142232413e-08,-2.415569161609116001e-08,-2.473082713075999590e-08,-2.530596264542883178e-08,-2.588109816009766766e-08,-2.645623367476650354e-08,-2.703136918943533943e-08,-2.760650470410417531e-08,-2.818164021877301119e-08,-2.875677573344184707e-08,-2.933191124811068296e-08,-2.990704676277951884e-08,-3.048218227744835472e-08,-3.105731779211719061e-08,-3.163245330678602649e-08,-3.220758882145486237e-08,-3.278272433612369825e-08,-3.335785985079253414e-08,-3.393299536546137002e-08,-3.450813088013020590e-08,-3.508326639479904178e-08,-3.565840190946787767e-08,-3.623353742413671355e-08 +0.000000000000000000e+00,-5.751355146629711722e-10,-1.150271029325942344e-09,-1.725406543988913516e-09,-2.300542058651884689e-09,-2.875677573314855861e-09,-3.450813087977827033e-09,-4.025948602640798205e-09,-4.601084117303769377e-09,-5.176219631966740549e-09,-5.751355146629711722e-09,-6.326490661292682894e-09,-6.901626175955654066e-09,-7.476761690618625238e-09,-8.051897205281596410e-09,-8.627032719944567582e-09,-9.202168234607538755e-09,-9.777303749270509927e-09,-1.035243926393348110e-08,-1.092757477859645227e-08,-1.150271029325942344e-08,-1.207784580792239462e-08,-1.265298132258536579e-08,-1.322811683724833696e-08,-1.380325235191130813e-08,-1.437838786657427930e-08,-1.495352338123725048e-08,-1.552865889590021999e-08,-1.610379441056318951e-08,-1.667892992522615903e-08,-1.725406543988912855e-08,-1.782920095455209807e-08,-1.840433646921506758e-08,-1.897947198387803710e-08,-1.955460749854100662e-08,-2.012974301320397614e-08,-2.070487852786694565e-08,-2.128001404252991517e-08,-2.185514955719288469e-08,-2.243028507185585421e-08,-2.300542058651882373e-08,-2.358055610118179324e-08,-2.415569161584476276e-08,-2.473082713050773228e-08,-2.530596264517070180e-08,-2.588109815983367131e-08,-2.645623367449664083e-08,-2.703136918915961035e-08,-2.760650470382257987e-08,-2.818164021848554939e-08,-2.875677573314851890e-08,-2.933191124781148842e-08,-2.990704676247445463e-08,-3.048218227713742084e-08,-3.105731779180038705e-08,-3.163245330646335326e-08,-3.220758882112631947e-08,-3.278272433578928568e-08,-3.335785985045225188e-08,-3.393299536511521809e-08,-3.450813087977818430e-08,-3.508326639444115051e-08,-3.565840190910411672e-08,-3.623353742376708293e-08 +0.000000000000000000e+00,-5.183002024990469653e-10,-1.036600404998093931e-09,-1.554900607497140999e-09,-2.073200809996188275e-09,-2.591501012495235550e-09,-3.109801214994282826e-09,-3.628101417493330102e-09,-4.146401619992377377e-09,-4.664701822491424653e-09,-5.183002024990471928e-09,-5.701302227489519204e-09,-6.219602429988566479e-09,-6.737902632487613755e-09,-7.256202834986661030e-09,-7.774503037485708306e-09,-8.292803239984756408e-09,-8.811103442483804511e-09,-9.329403644982852614e-09,-9.847703847481900717e-09,-1.036600404998094882e-08,-1.088430425247999692e-08,-1.140260445497904502e-08,-1.192090465747809313e-08,-1.243920485997714123e-08,-1.295750506247618933e-08,-1.347580526497523744e-08,-1.399410546747428554e-08,-1.451240566997333364e-08,-1.503070587247238340e-08,-1.554900607497143316e-08,-1.606730627747048291e-08,-1.658560647996953267e-08,-1.710390668246858243e-08,-1.762220688496763218e-08,-1.814050708746668194e-08,-1.865880728996573170e-08,-1.917710749246478145e-08,-1.969540769496383121e-08,-2.021370789746288097e-08,-2.073200809996193073e-08,-2.125030830246098048e-08,-2.176860850496003024e-08,-2.228690870745908000e-08,-2.280520890995812975e-08,-2.332350911245717951e-08,-2.384180931495622927e-08,-2.436010951745527903e-08,-2.487840971995432878e-08,-2.539670992245337854e-08,-2.591501012495242830e-08,-2.643331032745147805e-08,-2.695161052995052781e-08,-2.746991073244957757e-08,-2.798821093494862732e-08,-2.850651113744767708e-08,-2.902481133994672684e-08,-2.954311154244577660e-08,-3.006141174494482635e-08,-3.057971194744387611e-08,-3.109801214994292587e-08,-3.161631235244197562e-08,-3.213461255494102538e-08,-3.265291275744007514e-08 +0.000000000000000000e+00,-5.183002024943204553e-10,-1.036600404988640911e-09,-1.554900607482961469e-09,-2.073200809977282235e-09,-2.591501012471603000e-09,-3.109801214965923766e-09,-3.628101417460244531e-09,-4.146401619954565297e-09,-4.664701822448886062e-09,-5.183002024943206828e-09,-5.701302227437527593e-09,-6.219602429931848359e-09,-6.737902632426169124e-09,-7.256202834920489890e-09,-7.774503037414810655e-09,-8.292803239909132248e-09,-8.811103442403453841e-09,-9.329403644897775434e-09,-9.847703847392097026e-09,-1.036600404988641862e-08,-1.088430425238074021e-08,-1.140260445487506180e-08,-1.192090465736938340e-08,-1.243920485986370499e-08,-1.295750506235802658e-08,-1.347580526485234818e-08,-1.399410546734666977e-08,-1.451240566984099136e-08,-1.503070587233531295e-08,-1.554900607482963455e-08,-1.606730627732395614e-08,-1.658560647981827773e-08,-1.710390668231259932e-08,-1.762220688480692092e-08,-1.814050708730124251e-08,-1.865880728979556410e-08,-1.917710749228988569e-08,-1.969540769478420729e-08,-2.021370789727852888e-08,-2.073200809977285047e-08,-2.125030830226717207e-08,-2.176860850476149366e-08,-2.228690870725581525e-08,-2.280520890975013684e-08,-2.332350911224445844e-08,-2.384180931473878003e-08,-2.436010951723310162e-08,-2.487840971972742321e-08,-2.539670992222174481e-08,-2.591501012471606640e-08,-2.643331032721038799e-08,-2.695161052970470958e-08,-2.746991073219903118e-08,-2.798821093469335277e-08,-2.850651113718767436e-08,-2.902481133968199596e-08,-2.954311154217631755e-08,-3.006141174467063914e-08,-3.057971194716495743e-08,-3.109801214965927571e-08,-3.161631235215359399e-08,-3.213461255464791228e-08,-3.265291275714223056e-08 +0.000000000000000000e+00,5.549221516924205553e-09,1.109844303384841111e-08,1.664766455077261583e-08,2.219688606769681890e-08,2.774610758462102197e-08,3.329532910154522504e-08,3.884455061846942812e-08,4.439377213539363119e-08,4.994299365231783426e-08,5.549221516924203733e-08,6.104143668616624040e-08,6.659065820309043685e-08,7.213987972001463331e-08,7.768910123693882976e-08,8.323832275386302622e-08,8.878754427078722267e-08,9.433676578771141912e-08,9.988598730463561558e-08,1.054352088215598120e-07,1.109844303384840085e-07,1.165336518554082049e-07,1.220828733723324014e-07,1.276320948892565978e-07,1.331813164061807943e-07,1.387305379231049908e-07,1.442797594400291872e-07,1.498289809569533837e-07,1.553782024738775801e-07,1.609274239908017766e-07,1.664766455077259730e-07,1.720258670246501695e-07,1.775750885415743659e-07,1.831243100584985624e-07,1.886735315754227588e-07,1.942227530923469553e-07,1.997719746092711517e-07,2.053211961261953482e-07,2.108704176431195447e-07,2.164196391600437411e-07,2.219688606769679376e-07,2.275180821938921340e-07,2.330673037108163305e-07,2.386165252277405269e-07,2.441657467446647498e-07,2.497149682615889728e-07,2.552641897785131957e-07,2.608134112954374186e-07,2.663626328123616415e-07,2.719118543292858645e-07,2.774610758462100874e-07,2.830102973631343103e-07,2.885595188800585332e-07,2.941087403969827562e-07,2.996579619139069791e-07,3.052071834308312020e-07,3.107564049477554249e-07,3.163056264646796479e-07,3.218548479816038708e-07,3.274040694985280937e-07,3.329532910154523166e-07,3.385025125323765395e-07,3.440517340493007625e-07,3.496009555662249854e-07 +0.000000000000000000e+00,9.661110214543120616e-09,1.932222042908624123e-08,2.898333064362936185e-08,3.864444085817248247e-08,4.830555107271560308e-08,5.796666128725872370e-08,6.762777150180184432e-08,7.728888171634496493e-08,8.694999193088808555e-08,9.661110214543120616e-08,1.062722123599743268e-07,1.159333225745174474e-07,1.255944327890605680e-07,1.352555430036036886e-07,1.449166532181468092e-07,1.545777634326899299e-07,1.642388736472330505e-07,1.738999838617761711e-07,1.835610940763192917e-07,1.932222042908624123e-07,2.028833145054055329e-07,2.125444247199486536e-07,2.222055349344917742e-07,2.318666451490348948e-07,2.415277553635780154e-07,2.511888655781211360e-07,2.608499757926642566e-07,2.705110860072073773e-07,2.801721962217504979e-07,2.898333064362936185e-07,2.994944166508367391e-07,3.091555268653798597e-07,3.188166370799229803e-07,3.284777472944661010e-07,3.381388575090092216e-07,3.477999677235523422e-07,3.574610779380954628e-07,3.671221881526385834e-07,3.767832983671817040e-07,3.864444085817248247e-07,3.961055187962679453e-07,4.057666290108110659e-07,4.154277392253541865e-07,4.250888494398973071e-07,4.347499596544404277e-07,4.444110698689835484e-07,4.540721800835266690e-07,4.637332902980697896e-07,4.733944005126129102e-07,4.830555107271560308e-07,4.927166209416991514e-07,5.023777311562422721e-07,5.120388413707853927e-07,5.216999515853285133e-07,5.313610617998716339e-07,5.410221720144147545e-07,5.506832822289578751e-07,5.603443924435009958e-07,5.700055026580441164e-07,5.796666128725872370e-07,5.893277230871303576e-07,5.989888333016734782e-07,6.086499435162165988e-07 +0.000000000000000000e+00,9.649054360980616695e-09,1.929810872196123339e-08,2.894716308294185009e-08,3.859621744392246678e-08,4.824527180490308678e-08,5.789432616588370679e-08,6.754338052686432679e-08,7.719243488784494680e-08,8.684148924882556680e-08,9.649054360980618680e-08,1.061395979707868068e-07,1.157886523317674268e-07,1.254377066927480468e-07,1.350867610537286536e-07,1.447358154147092604e-07,1.543848697756898671e-07,1.640339241366704739e-07,1.736829784976510807e-07,1.833320328586316874e-07,1.929810872196122942e-07,2.026301415805929010e-07,2.122791959415735077e-07,2.219282503025541145e-07,2.315773046635347213e-07,2.412263590245153280e-07,2.508754133854959348e-07,2.605244677464765416e-07,2.701735221074571484e-07,2.798225764684377551e-07,2.894716308294183619e-07,2.991206851903989687e-07,3.087697395513795754e-07,3.184187939123601822e-07,3.280678482733407890e-07,3.377169026343213957e-07,3.473659569953020025e-07,3.570150113562826093e-07,3.666640657172632160e-07,3.763131200782438228e-07,3.859621744392244296e-07,3.956112288002050364e-07,4.052602831611856431e-07,4.149093375221662499e-07,4.245583918831468567e-07,4.342074462441274634e-07,4.438565006051080702e-07,4.535055549660886770e-07,4.631546093270692837e-07,4.728036636880498905e-07,4.824527180490305502e-07,4.921017724100111570e-07,5.017508267709917637e-07,5.113998811319723705e-07,5.210489354929529773e-07,5.306979898539335841e-07,5.403470442149141908e-07,5.499960985758947976e-07,5.596451529368754044e-07,5.692942072978560111e-07,5.789432616588366179e-07,5.885923160198172247e-07,5.982413703807978314e-07,6.078904247417784382e-07 +0.000000000000000000e+00,6.145880106828916839e-09,1.229176021365783368e-08,1.843764032048675134e-08,2.458352042731567066e-08,3.072940053414459329e-08,3.687528064097351592e-08,4.302116074780243855e-08,4.916704085463136118e-08,5.531292096146028381e-08,6.145880106828921305e-08,6.760468117511814230e-08,7.375056128194707155e-08,7.989644138877600079e-08,8.604232149560493004e-08,9.218820160243385929e-08,9.833408170926278853e-08,1.044799618160917178e-07,1.106258419229206470e-07,1.167717220297495763e-07,1.229176021365785055e-07,1.290634822434074348e-07,1.352093623502363640e-07,1.413552424570652933e-07,1.475011225638942225e-07,1.536470026707231518e-07,1.597928827775520810e-07,1.659387628843810102e-07,1.720846429912099395e-07,1.782305230980388687e-07,1.843764032048677980e-07,1.905222833116967272e-07,1.966681634185256565e-07,2.028140435253545857e-07,2.089599236321835150e-07,2.151058037390124442e-07,2.212516838458413735e-07,2.273975639526703027e-07,2.335434440594992320e-07,2.396893241663281877e-07,2.458352042731571699e-07,2.519810843799861520e-07,2.581269644868151342e-07,2.642728445936441164e-07,2.704187247004730986e-07,2.765646048073020808e-07,2.827104849141310630e-07,2.888563650209600452e-07,2.950022451277890273e-07,3.011481252346180095e-07,3.072940053414469917e-07,3.134398854482759739e-07,3.195857655551049561e-07,3.257316456619339383e-07,3.318775257687629205e-07,3.380234058755919026e-07,3.441692859824208848e-07,3.503151660892498670e-07,3.564610461960788492e-07,3.626069263029078314e-07,3.687528064097368136e-07,3.748986865165657958e-07,3.810445666233947779e-07,3.871904467302237601e-07 +0.000000000000000000e+00,7.517098757231831273e-09,1.503419751446366255e-08,2.255129627169549547e-08,3.006839502892733171e-08,3.758549378615916795e-08,4.510259254339100418e-08,5.261969130062284042e-08,6.013679005785467665e-08,6.765388881508651289e-08,7.517098757231834913e-08,8.268808632955018536e-08,9.020518508678202160e-08,9.772228384401385784e-08,1.052393826012456941e-07,1.127564813584775303e-07,1.202735801157093798e-07,1.277906788729412292e-07,1.353077776301730787e-07,1.428248763874049282e-07,1.503419751446367777e-07,1.578590739018686271e-07,1.653761726591004766e-07,1.728932714163323261e-07,1.804103701735641755e-07,1.879274689307960250e-07,1.954445676880278745e-07,2.029616664452597240e-07,2.104787652024915734e-07,2.179958639597234229e-07,2.255129627169552724e-07,2.330300614741871218e-07,2.405471602314189713e-07,2.480642589886508208e-07,2.555813577458826703e-07,2.630984565031145197e-07,2.706155552603463692e-07,2.781326540175782187e-07,2.856497527748100681e-07,2.931668515320419176e-07,3.006839502892737671e-07,3.082010490465056166e-07,3.157181478037374660e-07,3.232352465609693155e-07,3.307523453182011650e-07,3.382694440754330144e-07,3.457865428326648639e-07,3.533036415898967134e-07,3.608207403471285629e-07,3.683378391043604123e-07,3.758549378615922618e-07,3.833720366188241113e-07,3.908891353760559607e-07,3.984062341332878102e-07,4.059233328905196597e-07,4.134404316477515091e-07,4.209575304049833586e-07,4.284746291622152081e-07,4.359917279194470576e-07,4.435088266766789070e-07,4.510259254339107565e-07,4.585430241911426060e-07,4.660601229483744554e-07,4.735772217056063049e-07 +0.000000000000000000e+00,1.032148854305945633e-08,2.064297708611891267e-08,3.096446562917836735e-08,4.128595417223781872e-08,5.160744271529727009e-08,6.192893125835672146e-08,7.225041980141617284e-08,8.257190834447562421e-08,9.289339688753507558e-08,1.032148854305945270e-07,1.135363739736539783e-07,1.238578625167134165e-07,1.341793510597728678e-07,1.445008396028323192e-07,1.548223281458917706e-07,1.651438166889512219e-07,1.754653052320106733e-07,1.857867937750701247e-07,1.961082823181295761e-07,2.064297708611890274e-07,2.167512594042484788e-07,2.270727479473079302e-07,2.373942364903673815e-07,2.477157250334268329e-07,2.580372135764862843e-07,2.683587021195457357e-07,2.786801906626051870e-07,2.890016792056646384e-07,2.993231677487240898e-07,3.096446562917835411e-07,3.199661448348429925e-07,3.302876333779024439e-07,3.406091219209618953e-07,3.509306104640213466e-07,3.612520990070807980e-07,3.715735875501402494e-07,3.818950760931997007e-07,3.922165646362591521e-07,4.025380531793186035e-07,4.128595417223780549e-07,4.231810302654375062e-07,4.335025188084969576e-07,4.438240073515564090e-07,4.541454958946158603e-07,4.644669844376753117e-07,4.747884729807347631e-07,4.851099615237942145e-07,4.954314500668536658e-07,5.057529386099131172e-07,5.160744271529725686e-07,5.263959156960320199e-07,5.367174042390914713e-07,5.470388927821509227e-07,5.573603813252103741e-07,5.676818698682698254e-07,5.780033584113292768e-07,5.883248469543887282e-07,5.986463354974481795e-07,6.089678240405076309e-07,6.192893125835670823e-07,6.296108011266265337e-07,6.399322896696859850e-07,6.502537782127454364e-07 +0.000000000000000000e+00,9.652291555641718003e-09,1.930458311128343601e-08,2.895687466692515401e-08,3.860916622256687201e-08,4.826145777820859001e-08,5.791374933385030802e-08,6.756604088949203264e-08,7.721833244513375726e-08,8.687062400077548188e-08,9.652291555641720650e-08,1.061752071120589311e-07,1.158274986677006557e-07,1.254797902233423804e-07,1.351320817789841182e-07,1.447843733346258561e-07,1.544366648902675939e-07,1.640889564459093318e-07,1.737412480015510696e-07,1.833935395571928075e-07,1.930458311128345453e-07,2.026981226684762832e-07,2.123504142241180211e-07,2.220027057797597589e-07,2.316549973354014968e-07,2.413072888910432346e-07,2.509595804466849725e-07,2.606118720023267103e-07,2.702641635579684482e-07,2.799164551136101860e-07,2.895687466692519239e-07,2.992210382248936618e-07,3.088733297805353996e-07,3.185256213361771375e-07,3.281779128918188753e-07,3.378302044474606132e-07,3.474824960031023510e-07,3.571347875587440889e-07,3.667870791143858267e-07,3.764393706700275646e-07,3.860916622256693024e-07,3.957439537813110403e-07,4.053962453369527782e-07,4.150485368925945160e-07,4.247008284482362539e-07,4.343531200038779917e-07,4.440054115595197296e-07,4.536577031151614674e-07,4.633099946708032053e-07,4.729622862264449431e-07,4.826145777820866810e-07,4.922668693377284718e-07,5.019191608933702626e-07,5.115714524490120534e-07,5.212237440046538442e-07,5.308760355602956350e-07,5.405283271159374258e-07,5.501806186715792166e-07,5.598329102272210074e-07,5.694852017828627982e-07,5.791374933385045889e-07,5.887897848941463797e-07,5.984420764497881705e-07,6.080943680054299613e-07 +0.000000000000000000e+00,1.031259603800079284e-08,2.062519207600158568e-08,3.093778811400237687e-08,4.125038415200316475e-08,5.156298019000395263e-08,6.187557622800474050e-08,7.218817226600553500e-08,8.250076830400632949e-08,9.281336434200712399e-08,1.031259603800079185e-07,1.134385564180087130e-07,1.237511524560095075e-07,1.340637484940103020e-07,1.443763445320110965e-07,1.546889405700118910e-07,1.650015366080126855e-07,1.753141326460134800e-07,1.856267286840142744e-07,1.959393247220150689e-07,2.062519207600158634e-07,2.165645167980166579e-07,2.268771128360174524e-07,2.371897088740182469e-07,2.475023049120190679e-07,2.578149009500199153e-07,2.681274969880207628e-07,2.784400930260216102e-07,2.887526890640224576e-07,2.990652851020233051e-07,3.093778811400241525e-07,3.196904771780249999e-07,3.300030732160258474e-07,3.403156692540266948e-07,3.506282652920275422e-07,3.609408613300283897e-07,3.712534573680292371e-07,3.815660534060300845e-07,3.918786494440309320e-07,4.021912454820317794e-07,4.125038415200326269e-07,4.228164375580334743e-07,4.331290335960343217e-07,4.434416296340351692e-07,4.537542256720360166e-07,4.640668217100368640e-07,4.743794177480377115e-07,4.846920137860385589e-07,4.950046098240394063e-07,5.053172058620402538e-07,5.156298019000411012e-07,5.259423979380419486e-07,5.362549939760427961e-07,5.465675900140436435e-07,5.568801860520444909e-07,5.671927820900453384e-07,5.775053781280461858e-07,5.878179741660470332e-07,5.981305702040478807e-07,6.084431662420487281e-07,6.187557622800495756e-07,6.290683583180504230e-07,6.393809543560512704e-07,6.496935503940521179e-07 +0.000000000000000000e+00,5.549221516923022684e-09,1.109844303384604537e-08,1.664766455076906888e-08,2.219688606769209405e-08,2.774610758461511921e-08,3.329532910153814438e-08,3.884455061846116954e-08,4.439377213538419471e-08,4.994299365230721988e-08,5.549221516923024504e-08,6.104143668615327021e-08,6.659065820307630199e-08,7.213987971999933378e-08,7.768910123692236556e-08,8.323832275384539734e-08,8.878754427076842913e-08,9.433676578769146091e-08,9.988598730461449269e-08,1.054352088215375245e-07,1.109844303384605563e-07,1.165336518553835880e-07,1.220828733723066198e-07,1.276320948892296516e-07,1.331813164061526834e-07,1.387305379230757152e-07,1.442797594399987470e-07,1.498289809569217787e-07,1.553782024738448105e-07,1.609274239907678423e-07,1.664766455076908741e-07,1.720258670246139059e-07,1.775750885415369377e-07,1.831243100584599694e-07,1.886735315753830012e-07,1.942227530923060330e-07,1.997719746092290648e-07,2.053211961261520966e-07,2.108704176430751284e-07,2.164196391599981601e-07,2.219688606769211919e-07,2.275180821938442237e-07,2.330673037107672555e-07,2.386165252276902873e-07,2.441657467446132926e-07,2.497149682615362979e-07,2.552641897784593032e-07,2.608134112953823085e-07,2.663626328123053138e-07,2.719118543292283192e-07,2.774610758461513245e-07,2.830102973630743298e-07,2.885595188799973351e-07,2.941087403969203404e-07,2.996579619138433457e-07,3.052071834307663510e-07,3.107564049476893564e-07,3.163056264646123617e-07,3.218548479815353670e-07,3.274040694984583723e-07,3.329532910153813776e-07,3.385025125323043829e-07,3.440517340492273882e-07,3.496009555661503936e-07 +0.000000000000000000e+00,9.661110214540554702e-09,1.932222042908110940e-08,2.898333064362166576e-08,3.864444085816222543e-08,4.830555107270278509e-08,5.796666128724334476e-08,6.762777150178389780e-08,7.728888171632445085e-08,8.694999193086500390e-08,9.661110214540555695e-08,1.062722123599461100e-07,1.159333225744866630e-07,1.255944327890272161e-07,1.352555430035677691e-07,1.449166532181083222e-07,1.545777634326488752e-07,1.642388736471894283e-07,1.738999838617299813e-07,1.835610940762705344e-07,1.932222042908110874e-07,2.028833145053516405e-07,2.125444247198921935e-07,2.222055349344327466e-07,2.318666451489732996e-07,2.415277553635138527e-07,2.511888655780544322e-07,2.608499757925950117e-07,2.705110860071355912e-07,2.801721962216761707e-07,2.898333064362167503e-07,2.994944166507573298e-07,3.091555268652979093e-07,3.188166370798384888e-07,3.284777472943790683e-07,3.381388575089196478e-07,3.477999677234602274e-07,3.574610779380008069e-07,3.671221881525413864e-07,3.767832983670819659e-07,3.864444085816225454e-07,3.961055187961631249e-07,4.057666290107037045e-07,4.154277392252442840e-07,4.250888494397848635e-07,4.347499596543254430e-07,4.444110698688660225e-07,4.540721800834066021e-07,4.637332902979471816e-07,4.733944005124877611e-07,4.830555107270283406e-07,4.927166209415689201e-07,5.023777311561094996e-07,5.120388413706500792e-07,5.216999515851906587e-07,5.313610617997312382e-07,5.410221720142718177e-07,5.506832822288123972e-07,5.603443924433529767e-07,5.700055026578935563e-07,5.796666128724341358e-07,5.893277230869747153e-07,5.989888333015152948e-07,6.086499435160558743e-07 +0.000000000000000000e+00,9.652291555640411057e-09,1.930458311128082211e-08,2.895687466692123317e-08,3.860916622256164423e-08,4.826145777820205860e-08,5.791374933384247296e-08,6.756604088948288733e-08,7.721833244512330169e-08,8.687062400076371606e-08,9.652291555640413043e-08,1.061752071120445448e-07,1.158274986676849592e-07,1.254797902233253868e-07,1.351320817789658011e-07,1.447843733346062155e-07,1.544366648902466299e-07,1.640889564458870442e-07,1.737412480015274586e-07,1.833935395571678730e-07,1.930458311128082873e-07,2.026981226684487017e-07,2.123504142240891161e-07,2.220027057797295304e-07,2.316549973353699448e-07,2.413072888910103592e-07,2.509595804466507735e-07,2.606118720022911879e-07,2.702641635579316023e-07,2.799164551135720166e-07,2.895687466692124310e-07,2.992210382248528454e-07,3.088733297804932597e-07,3.185256213361336741e-07,3.281779128917740885e-07,3.378302044474145028e-07,3.474824960030549172e-07,3.571347875586953315e-07,3.667870791143357459e-07,3.764393706699761603e-07,3.860916622256165746e-07,3.957439537812569890e-07,4.053962453368974034e-07,4.150485368925378177e-07,4.247008284481782321e-07,4.343531200038186465e-07,4.440054115594590608e-07,4.536577031150994752e-07,4.633099946707398896e-07,4.729622862263803039e-07,4.826145777820207183e-07,4.922668693376611327e-07,5.019191608933015470e-07,5.115714524489419614e-07,5.212237440045823758e-07,5.308760355602227901e-07,5.405283271158632045e-07,5.501806186715036189e-07,5.598329102271440332e-07,5.694852017827844476e-07,5.791374933384248620e-07,5.887897848940652763e-07,5.984420764497056907e-07,6.080943680053461051e-07 +0.000000000000000000e+00,6.145880106827815861e-09,1.229176021365563172e-08,1.843764032048344593e-08,2.458352042731126014e-08,3.072940053413907434e-08,3.687528064096689186e-08,4.302116074779470937e-08,4.916704085462252689e-08,5.531292096145034441e-08,6.145880106827816192e-08,6.760468117510597944e-08,7.375056128193379695e-08,7.989644138876161447e-08,8.604232149558943198e-08,9.218820160241724950e-08,9.833408170924506702e-08,1.044799618160728845e-07,1.106258419229007020e-07,1.167717220297285196e-07,1.229176021365563503e-07,1.290634822433841678e-07,1.352093623502119853e-07,1.413552424570398029e-07,1.475011225638676204e-07,1.536470026706954379e-07,1.597928827775232554e-07,1.659387628843510729e-07,1.720846429911788904e-07,1.782305230980067080e-07,1.843764032048345255e-07,1.905222833116623430e-07,1.966681634184901605e-07,2.028140435253179780e-07,2.089599236321457955e-07,2.151058037389736130e-07,2.212516838458014306e-07,2.273975639526292481e-07,2.335434440594570656e-07,2.396893241662848831e-07,2.458352042731127006e-07,2.519810843799405181e-07,2.581269644867683357e-07,2.642728445935961532e-07,2.704187247004239707e-07,2.765646048072517882e-07,2.827104849140796057e-07,2.888563650209074232e-07,2.950022451277352408e-07,3.011481252345630583e-07,3.072940053413908758e-07,3.134398854482186933e-07,3.195857655550465108e-07,3.257316456618743283e-07,3.318775257687021458e-07,3.380234058755299634e-07,3.441692859823577809e-07,3.503151660891855984e-07,3.564610461960134159e-07,3.626069263028412334e-07,3.687528064096690509e-07,3.748986865164968685e-07,3.810445666233246860e-07,3.871904467301525035e-07 +0.000000000000000000e+00,7.517098757230102466e-09,1.503419751446020493e-08,2.255129627169030740e-08,3.006839502892040986e-08,3.758549378615051233e-08,4.510259254338061479e-08,5.261969130061071726e-08,6.013679005784081972e-08,6.765388881507092219e-08,7.517098757230102466e-08,8.268808632953112712e-08,9.020518508676122959e-08,9.772228384399133205e-08,1.052393826012214345e-07,1.127564813584515370e-07,1.202735801156816394e-07,1.277906788729117419e-07,1.353077776301418444e-07,1.428248763873719468e-07,1.503419751446020493e-07,1.578590739018321518e-07,1.653761726590622542e-07,1.728932714162923567e-07,1.804103701735224592e-07,1.879274689307525616e-07,1.954445676879826641e-07,2.029616664452127666e-07,2.104787652024428690e-07,2.179958639596729715e-07,2.255129627169030740e-07,2.330300614741331764e-07,2.405471602313632789e-07,2.480642589885933814e-07,2.555813577458234838e-07,2.630984565030535863e-07,2.706155552602836888e-07,2.781326540175137912e-07,2.856497527747438937e-07,2.931668515319739962e-07,3.006839502892040986e-07,3.082010490464342011e-07,3.157181478036643036e-07,3.232352465608944060e-07,3.307523453181245085e-07,3.382694440753546110e-07,3.457865428325847134e-07,3.533036415898148159e-07,3.608207403470449183e-07,3.683378391042750208e-07,3.758549378615051233e-07,3.833720366187352257e-07,3.908891353759653282e-07,3.984062341331954307e-07,4.059233328904255331e-07,4.134404316476556356e-07,4.209575304048857381e-07,4.284746291621158405e-07,4.359917279193459430e-07,4.435088266765760455e-07,4.510259254338061479e-07,4.585430241910362504e-07,4.660601229482663529e-07,4.735772217054964553e-07 +0.000000000000000000e+00,1.032148854305681928e-08,2.064297708611363857e-08,3.096446562917045950e-08,4.128595417222728375e-08,5.160744271528410799e-08,6.192893125834093224e-08,7.225041980139776310e-08,8.257190834445459397e-08,9.289339688751142483e-08,1.032148854305682557e-07,1.135363739736250866e-07,1.238578625166819174e-07,1.341793510597387483e-07,1.445008396027955791e-07,1.548223281458524100e-07,1.651438166889092409e-07,1.754653052319660717e-07,1.857867937750229026e-07,1.961082823180797335e-07,2.064297708611365643e-07,2.167512594041933952e-07,2.270727479472502261e-07,2.373942364903070569e-07,2.477157250333638878e-07,2.580372135764207451e-07,2.683587021194776024e-07,2.786801906625344598e-07,2.890016792055913171e-07,2.993231677486481744e-07,3.096446562917050318e-07,3.199661448347618891e-07,3.302876333778187464e-07,3.406091219208756038e-07,3.509306104639324611e-07,3.612520990069893184e-07,3.715735875500461758e-07,3.818950760931030331e-07,3.922165646361598904e-07,4.025380531792167478e-07,4.128595417222736051e-07,4.231810302653304624e-07,4.335025188083873198e-07,4.438240073514441771e-07,4.541454958945010344e-07,4.644669844375578918e-07,4.747884729806147491e-07,4.851099615236716064e-07,4.954314500667285167e-07,5.057529386097854270e-07,5.160744271528423373e-07,5.263959156958992475e-07,5.367174042389561578e-07,5.470388927820130681e-07,5.573603813250699784e-07,5.676818698681268886e-07,5.780033584111837989e-07,5.883248469542407092e-07,5.986463354972976194e-07,6.089678240403545297e-07,6.192893125834114400e-07,6.296108011264683503e-07,6.399322896695252605e-07,6.502537782125821708e-07 +0.000000000000000000e+00,4.260719875570739431e-09,8.521439751141478862e-09,1.278215962671221912e-08,1.704287950228296103e-08,2.130359937785370295e-08,2.556431925342444486e-08,2.982503912899519008e-08,3.408575900456593530e-08,3.834647888013668052e-08,4.260719875570742574e-08,4.686791863127817097e-08,5.112863850684891619e-08,5.538935838241966141e-08,5.965007825799040663e-08,6.391079813356115185e-08,6.817151800913189707e-08,7.243223788470264229e-08,7.669295776027338752e-08,8.095367763584413274e-08,8.521439751141487796e-08,8.947511738698562318e-08,9.373583726255636840e-08,9.799655713812711362e-08,1.022572770136978588e-07,1.065179968892686041e-07,1.107787167648393493e-07,1.150394366404100945e-07,1.193001565159808397e-07,1.235608763915515982e-07,1.278215962671223566e-07,1.320823161426931151e-07,1.363430360182638736e-07,1.406037558938346320e-07,1.448644757694053905e-07,1.491251956449761489e-07,1.533859155205469074e-07,1.576466353961176658e-07,1.619073552716884243e-07,1.661680751472591827e-07,1.704287950228299412e-07,1.746895148984006997e-07,1.789502347739714581e-07,1.832109546495422166e-07,1.874716745251129750e-07,1.917323944006837335e-07,1.959931142762544919e-07,2.002538341518252504e-07,2.045145540273960089e-07,2.087752739029667673e-07,2.130359937785375258e-07,2.172967136541082842e-07,2.215574335296790427e-07,2.258181534052498011e-07,2.300788732808205596e-07,2.343395931563913180e-07,2.386003130319620500e-07,2.428610329075327820e-07,2.471217527831035140e-07,2.513824726586742460e-07,2.556431925342449780e-07,2.599039124098157100e-07,2.641646322853864420e-07,2.684253521609571739e-07 +0.000000000000000000e+00,8.188985361819222330e-09,1.637797072363844466e-08,2.456695608545766699e-08,3.275594144727688932e-08,4.094492680909611165e-08,4.913391217091533398e-08,5.732289753273455631e-08,6.551188289455377864e-08,7.370086825637300097e-08,8.188985361819222330e-08,9.007883898001144563e-08,9.826782434183066796e-08,1.064568097036498903e-07,1.146457950654691126e-07,1.228347804272883350e-07,1.310237657891075573e-07,1.392127511509267796e-07,1.474017365127460019e-07,1.555907218745652243e-07,1.637797072363844466e-07,1.719686925982036689e-07,1.801576779600228913e-07,1.883466633218421136e-07,1.965356486836613359e-07,2.047246340454805583e-07,2.129136194072997806e-07,2.211026047691190029e-07,2.292915901309382252e-07,2.374805754927574476e-07,2.456695608545766699e-07,2.538585462163958922e-07,2.620475315782151146e-07,2.702365169400343369e-07,2.784255023018535592e-07,2.866144876636727816e-07,2.948034730254920039e-07,3.029924583873112262e-07,3.111814437491304485e-07,3.193704291109496709e-07,3.275594144727688932e-07,3.357483998345881155e-07,3.439373851964073379e-07,3.521263705582265602e-07,3.603153559200457825e-07,3.685043412818650049e-07,3.766933266436842272e-07,3.848823120055034495e-07,3.930712973673226718e-07,4.012602827291418942e-07,4.094492680909611165e-07,4.176382534527803388e-07,4.258272388145995612e-07,4.340162241764187835e-07,4.422052095382380058e-07,4.503941949000572282e-07,4.585831802618764505e-07,4.667721656236956728e-07,4.749611509855148951e-07,4.831501363473341704e-07,4.913391217091534457e-07,4.995281070709727210e-07,5.077170924327919962e-07,5.159060777946112715e-07 +0.000000000000000000e+00,8.173039976096891669e-09,1.634607995219378334e-08,2.451911992829067501e-08,3.269215990438756668e-08,4.086519988048445835e-08,4.903823985658135002e-08,5.721127983267824169e-08,6.538431980877513335e-08,7.355735978487202502e-08,8.173039976096891669e-08,8.990343973706580836e-08,9.807647971316270003e-08,1.062495196892595917e-07,1.144225596653564834e-07,1.225955996414533618e-07,1.307686396175502402e-07,1.389416795936471187e-07,1.471147195697439971e-07,1.552877595458408755e-07,1.634607995219377540e-07,1.716338394980346324e-07,1.798068794741315108e-07,1.879799194502283893e-07,1.961529594263252677e-07,2.043259994024221461e-07,2.124990393785190246e-07,2.206720793546159030e-07,2.288451193307127815e-07,2.370181593068096599e-07,2.451911992829065119e-07,2.533642392590033638e-07,2.615372792351002158e-07,2.697103192111970677e-07,2.778833591872939197e-07,2.860563991633907717e-07,2.942294391394876236e-07,3.024024791155844756e-07,3.105755190916813276e-07,3.187485590677781795e-07,3.269215990438750315e-07,3.350946390199718835e-07,3.432676789960687354e-07,3.514407189721655874e-07,3.596137589482624394e-07,3.677867989243592913e-07,3.759598389004561433e-07,3.841328788765529952e-07,3.923059188526498472e-07,4.004789588287466992e-07,4.086519988048435511e-07,4.168250387809404031e-07,4.249980787570372551e-07,4.331711187331341070e-07,4.413441587092309590e-07,4.495171986853278110e-07,4.576902386614246629e-07,4.658632786375215149e-07,4.740363186136183669e-07,4.822093585897152188e-07,4.903823985658120708e-07,4.985554385419089228e-07,5.067284785180057747e-07,5.149015184941026267e-07 +0.000000000000000000e+00,4.922478308384932608e-09,9.844956616769865215e-09,1.476743492515479782e-08,1.968991323353973043e-08,2.461239154192466304e-08,2.953486985030959565e-08,3.445734815869452825e-08,3.937982646707946086e-08,4.430230477546439347e-08,4.922478308384932608e-08,5.414726139223425868e-08,5.906973970061919129e-08,6.399221800900412390e-08,6.891469631738905651e-08,7.383717462577398911e-08,7.875965293415892172e-08,8.368213124254385433e-08,8.860460955092878694e-08,9.352708785931371954e-08,9.844956616769865215e-08,1.033720444760835848e-07,1.082945227844685174e-07,1.132170010928534500e-07,1.181394794012383826e-07,1.230619577096233152e-07,1.279844360180082478e-07,1.329069143263931804e-07,1.378293926347781130e-07,1.427518709431630456e-07,1.476743492515479782e-07,1.525968275599329108e-07,1.575193058683178434e-07,1.624417841767027760e-07,1.673642624850877087e-07,1.722867407934726413e-07,1.772092191018575739e-07,1.821316974102425065e-07,1.870541757186274391e-07,1.919766540270123717e-07,1.968991323353973043e-07,2.018216106437822369e-07,2.067440889521671695e-07,2.116665672605521021e-07,2.165890455689370347e-07,2.215115238773219673e-07,2.264340021857068999e-07,2.313564804940918326e-07,2.362789588024767652e-07,2.412014371108617242e-07,2.461239154192466833e-07,2.510463937276316424e-07,2.559688720360166015e-07,2.608913503444015605e-07,2.658138286527865196e-07,2.707363069611714787e-07,2.756587852695564378e-07,2.805812635779413969e-07,2.855037418863263559e-07,2.904262201947113150e-07,2.953486985030962741e-07,3.002711768114812332e-07,3.051936551198661922e-07,3.101161334282511513e-07 +0.000000000000000000e+00,6.063138102468610964e-09,1.212627620493722193e-08,1.818941430740583372e-08,2.425255240987444717e-08,3.031569051234306392e-08,3.637882861481168068e-08,4.244196671728029743e-08,4.850510481974891419e-08,5.456824292221753094e-08,6.063138102468615431e-08,6.669451912715477768e-08,7.275765722962340106e-08,7.882079533209202443e-08,8.488393343456064780e-08,9.094707153702927117e-08,9.701020963949789454e-08,1.030733477419665179e-07,1.091364858444351413e-07,1.151996239469037647e-07,1.212627620493723880e-07,1.273259001518409982e-07,1.333890382543096083e-07,1.394521763567782184e-07,1.455153144592468286e-07,1.515784525617154387e-07,1.576415906641840489e-07,1.637047287666526590e-07,1.697678668691212691e-07,1.758310049715898793e-07,1.818941430740584894e-07,1.879572811765270995e-07,1.940204192789957097e-07,2.000835573814643198e-07,2.061466954839329300e-07,2.122098335864015401e-07,2.182729716888701502e-07,2.243361097913387604e-07,2.303992478938073705e-07,2.364623859962759806e-07,2.425255240987446172e-07,2.485886622012132539e-07,2.546518003036818905e-07,2.607149384061505271e-07,2.667780765086191637e-07,2.728412146110878003e-07,2.789043527135564369e-07,2.849674908160250735e-07,2.910306289184937101e-07,2.970937670209623467e-07,3.031569051234309833e-07,3.092200432258996199e-07,3.152831813283682565e-07,3.213463194308368931e-07,3.274094575333055297e-07,3.334725956357741664e-07,3.395357337382428030e-07,3.455988718407114396e-07,3.516620099431800762e-07,3.577251480456487128e-07,3.637882861481173494e-07,3.698514242505859860e-07,3.759145623530546226e-07,3.819777004555232592e-07 +0.000000000000000000e+00,8.963500815260841816e-09,1.792700163052168363e-08,2.689050244578252710e-08,3.585400326104337388e-08,4.481750407630422066e-08,5.378100489156506744e-08,6.274450570682591422e-08,7.170800652208676100e-08,8.067150733734760778e-08,8.963500815260845456e-08,9.859850896786930134e-08,1.075620097831301481e-07,1.165255105983909949e-07,1.254890114136518284e-07,1.344525122289126620e-07,1.434160130441734955e-07,1.523795138594343291e-07,1.613430146746951626e-07,1.703065154899559962e-07,1.792700163052168297e-07,1.882335171204776633e-07,1.971970179357384968e-07,2.061605187509993303e-07,2.151240195662601639e-07,2.240875203815209974e-07,2.330510211967818310e-07,2.420145220120426645e-07,2.509780228273034981e-07,2.599415236425643316e-07,2.689050244578251652e-07,2.778685252730859987e-07,2.868320260883468322e-07,2.957955269036076658e-07,3.047590277188684993e-07,3.137225285341293329e-07,3.226860293493901664e-07,3.316495301646510000e-07,3.406130309799118335e-07,3.495765317951726671e-07,3.585400326104335006e-07,3.675035334256943341e-07,3.764670342409551677e-07,3.854305350562160012e-07,3.943940358714768348e-07,4.033575366867376683e-07,4.123210375019985019e-07,4.212845383172593354e-07,4.302480391325201690e-07,4.392115399477810025e-07,4.481750407630418360e-07,4.571385415783026696e-07,4.661020423935635031e-07,4.750655432088243367e-07,4.840290440240852232e-07,4.929925448393461626e-07,5.019560456546071020e-07,5.109195464698680414e-07,5.198830472851289809e-07,5.288465481003899203e-07,5.378100489156508597e-07,5.467735497309117991e-07,5.557370505461727386e-07,5.647005513614336780e-07 +0.000000000000000000e+00,8.177431690005912521e-09,1.635486338001182504e-08,2.453229507001773756e-08,3.270972676002365008e-08,4.088715845002956260e-08,4.906459014003547513e-08,5.724202183004138765e-08,6.541945352004730017e-08,7.359688521005321269e-08,8.177431690005912521e-08,8.995174859006503773e-08,9.812918028007095025e-08,1.063066119700768628e-07,1.144840436600827753e-07,1.226614753500886878e-07,1.308389070400946003e-07,1.390163387301005129e-07,1.471937704201064254e-07,1.553712021101123379e-07,1.635486338001182504e-07,1.717260654901241629e-07,1.799034971801300755e-07,1.880809288701359880e-07,1.962583605601419005e-07,2.044357922501478130e-07,2.126132239401537255e-07,2.207906556301596381e-07,2.289680873201655506e-07,2.371455190101714631e-07,2.453229507001773756e-07,2.535003823901832881e-07,2.616778140801892007e-07,2.698552457701951132e-07,2.780326774602010257e-07,2.862101091502069382e-07,2.943875408402128508e-07,3.025649725302187633e-07,3.107424042202246758e-07,3.189198359102305883e-07,3.270972676002365008e-07,3.352746992902424134e-07,3.434521309802483259e-07,3.516295626702542384e-07,3.598069943602601509e-07,3.679844260502660634e-07,3.761618577402719760e-07,3.843392894302778885e-07,3.925167211202838010e-07,4.006941528102897135e-07,4.088715845002956260e-07,4.170490161903015386e-07,4.252264478803074511e-07,4.334038795703133636e-07,4.415813112603192761e-07,4.497587429503251886e-07,4.579361746403311012e-07,4.661136063303370137e-07,4.742910380203429262e-07,4.824684697103488387e-07,4.906459014003547513e-07,4.988233330903606638e-07,5.070007647803665763e-07,5.151781964703724888e-07 +0.000000000000000000e+00,8.949147910764225812e-09,1.789829582152845162e-08,2.684744373229267744e-08,3.579659164305690325e-08,4.474573955382112575e-08,5.369488746458534825e-08,6.264403537534957076e-08,7.159318328611379326e-08,8.054233119687801576e-08,8.949147910764223826e-08,9.844062701840646077e-08,1.073897749291706833e-07,1.163389228399349058e-07,1.252880707506991150e-07,1.342372186614633111e-07,1.431863665722275071e-07,1.521355144829917031e-07,1.610846623937558992e-07,1.700338103045200952e-07,1.789829582152842912e-07,1.879321061260484873e-07,1.968812540368126833e-07,2.058304019475768793e-07,2.147795498583410754e-07,2.237286977691052714e-07,2.326778456798694674e-07,2.416269935906336635e-07,2.505761415013978595e-07,2.595252894121620555e-07,2.684744373229262516e-07,2.774235852336904476e-07,2.863727331444546436e-07,2.953218810552188397e-07,3.042710289659830357e-07,3.132201768767472317e-07,3.221693247875114278e-07,3.311184726982756238e-07,3.400676206090398198e-07,3.490167685198040159e-07,3.579659164305682119e-07,3.669150643413324079e-07,3.758642122520966040e-07,3.848133601628608000e-07,3.937625080736249960e-07,4.027116559843891921e-07,4.116608038951533881e-07,4.206099518059175841e-07,4.295590997166817802e-07,4.385082476274459762e-07,4.474573955382101722e-07,4.564065434489743683e-07,4.653556913597385643e-07,4.743048392705027603e-07,4.832539871812669034e-07,4.922031350920310465e-07,5.011522830027951896e-07,5.101014309135593327e-07,5.190505788243234758e-07,5.279997267350876189e-07,5.369488746458517620e-07,5.458980225566159051e-07,5.548471704673800482e-07,5.637963183781441913e-07 +0.000000000000000000e+00,4.260719875569741851e-09,8.521439751139483703e-09,1.278215962670922473e-08,1.704287950227896410e-08,2.130359937784870347e-08,2.556431925341844284e-08,2.982503912898818221e-08,3.408575900455792158e-08,3.834647888012766095e-08,4.260719875569740032e-08,4.686791863126713968e-08,5.112863850683687905e-08,5.538935838240661842e-08,5.965007825797635118e-08,6.391079813354607731e-08,6.817151800911580345e-08,7.243223788468552958e-08,7.669295776025525572e-08,8.095367763582498185e-08,8.521439751139470799e-08,8.947511738696443412e-08,9.373583726253416026e-08,9.799655713810388639e-08,1.022572770136736125e-07,1.065179968892433387e-07,1.107787167648130648e-07,1.150394366403827909e-07,1.193001565159525171e-07,1.235608763915222432e-07,1.278215962670919693e-07,1.320823161426616955e-07,1.363430360182314216e-07,1.406037558938011477e-07,1.448644757693708739e-07,1.491251956449406000e-07,1.533859155205103261e-07,1.576466353960800523e-07,1.619073552716497784e-07,1.661680751472195045e-07,1.704287950227892307e-07,1.746895148983589568e-07,1.789502347739286830e-07,1.832109546494984091e-07,1.874716745250681352e-07,1.917323944006378614e-07,1.959931142762075875e-07,2.002538341517773136e-07,2.045145540273470398e-07,2.087752739029167659e-07,2.130359937784864920e-07,2.172967136540562182e-07,2.215574335296259443e-07,2.258181534051956704e-07,2.300788732807653966e-07,2.343395931563351227e-07,2.386003130319048753e-07,2.428610329074746014e-07,2.471217527830443276e-07,2.513824726586140537e-07,2.556431925341837799e-07,2.599039124097535060e-07,2.641646322853232321e-07,2.684253521608929583e-07 +0.000000000000000000e+00,8.188985361816044302e-09,1.637797072363208860e-08,2.456695608544813125e-08,3.275594144726417059e-08,4.094492680908020993e-08,4.913391217089624927e-08,5.732289753271228861e-08,6.551188289452832795e-08,7.370086825634436067e-08,8.188985361816039339e-08,9.007883897997642611e-08,9.826782434179245883e-08,1.064568097036084916e-07,1.146457950654245243e-07,1.228347804272405570e-07,1.310237657890565765e-07,1.392127511508725960e-07,1.474017365126886155e-07,1.555907218745046349e-07,1.637797072363206544e-07,1.719686925981366739e-07,1.801576779599526934e-07,1.883466633217687129e-07,1.965356486835847324e-07,2.047246340454007519e-07,2.129136194072167714e-07,2.211026047690327908e-07,2.292915901308488103e-07,2.374805754926648298e-07,2.456695608544808493e-07,2.538585462162968423e-07,2.620475315781128353e-07,2.702365169399288284e-07,2.784255023017448214e-07,2.866144876635608144e-07,2.948034730253768074e-07,3.029924583871928004e-07,3.111814437490087934e-07,3.193704291108247865e-07,3.275594144726407795e-07,3.357483998344567725e-07,3.439373851962727655e-07,3.521263705580887585e-07,3.603153559199047515e-07,3.685043412817207446e-07,3.766933266435367376e-07,3.848823120053527306e-07,3.930712973671687236e-07,4.012602827289847166e-07,4.094492680908007096e-07,4.176382534526167027e-07,4.258272388144326957e-07,4.340162241762486887e-07,4.422052095380646817e-07,4.503941948998806747e-07,4.585831802616966677e-07,4.667721656235126608e-07,4.749611509853286538e-07,4.831501363471446468e-07,4.913391217089606398e-07,4.995281070707766328e-07,5.077170924325926258e-07,5.159060777944086189e-07 +0.000000000000000000e+00,8.177431690004352458e-09,1.635486338000870492e-08,2.453229507001305903e-08,3.270972676001741645e-08,4.088715845002177387e-08,4.906459014002613129e-08,5.724202183003048871e-08,6.541945352003484614e-08,7.359688521003921017e-08,8.177431690004357421e-08,8.995174859004793825e-08,9.812918028005230229e-08,1.063066119700566663e-07,1.144840436600610304e-07,1.226614753500653944e-07,1.308389070400697717e-07,1.390163387300741490e-07,1.471937704200785262e-07,1.553712021100829035e-07,1.635486338000872808e-07,1.717260654900916580e-07,1.799034971800960353e-07,1.880809288701004126e-07,1.962583605601047899e-07,2.044357922501091671e-07,2.126132239401135444e-07,2.207906556301179217e-07,2.289680873201222990e-07,2.371455190101266762e-07,2.453229507001310535e-07,2.535003823901354308e-07,2.616778140801398081e-07,2.698552457701441853e-07,2.780326774601485626e-07,2.862101091501529399e-07,2.943875408401573172e-07,3.025649725301616944e-07,3.107424042201660717e-07,3.189198359101704490e-07,3.270972676001748262e-07,3.352746992901792035e-07,3.434521309801835808e-07,3.516295626701879581e-07,3.598069943601923353e-07,3.679844260501967126e-07,3.761618577402010899e-07,3.843392894302054672e-07,3.925167211202098444e-07,4.006941528102142217e-07,4.088715845002185990e-07,4.170490161902229763e-07,4.252264478802273535e-07,4.334038795702317308e-07,4.415813112602361081e-07,4.497587429502404854e-07,4.579361746402448626e-07,4.661136063302492399e-07,4.742910380202536172e-07,4.824684697102579944e-07,4.906459014002624247e-07,4.988233330902668549e-07,5.070007647802712851e-07,5.151781964702757153e-07 +0.000000000000000000e+00,4.922478308383743122e-09,9.844956616767486244e-09,1.476743492515122937e-08,1.968991323353497249e-08,2.461239154191871395e-08,2.953486985030245542e-08,3.445734815868619689e-08,3.937982646706993836e-08,4.430230477545367982e-08,4.922478308383742129e-08,5.414726139222116276e-08,5.906973970060490423e-08,6.399221800898863908e-08,6.891469631737238054e-08,7.383717462575612201e-08,7.875965293413986348e-08,8.368213124252360495e-08,8.860460955090734641e-08,9.352708785929108788e-08,9.844956616767482935e-08,1.033720444760585708e-07,1.082945227844423123e-07,1.132170010928260538e-07,1.181394794012097952e-07,1.230619577095935367e-07,1.279844360179772782e-07,1.329069143263610196e-07,1.378293926347447611e-07,1.427518709431285026e-07,1.476743492515122440e-07,1.525968275598959855e-07,1.575193058682797270e-07,1.624417841766634684e-07,1.673642624850472099e-07,1.722867407934309514e-07,1.772092191018146928e-07,1.821316974101984343e-07,1.870541757185821758e-07,1.919766540269659172e-07,1.968991323353496587e-07,2.018216106437334002e-07,2.067440889521171416e-07,2.116665672605008831e-07,2.165890455688846246e-07,2.215115238772683660e-07,2.264340021856521075e-07,2.313564804940358490e-07,2.362789588024195904e-07,2.412014371108033319e-07,2.461239154191870734e-07,2.510463937275708148e-07,2.559688720359545563e-07,2.608913503443382978e-07,2.658138286527220392e-07,2.707363069611057807e-07,2.756587852694895222e-07,2.805812635778732636e-07,2.855037418862570051e-07,2.904262201946407466e-07,2.953486985030244880e-07,3.002711768114082295e-07,3.051936551197919710e-07,3.101161334281757124e-07 +0.000000000000000000e+00,6.063138102467239499e-09,1.212627620493447900e-08,1.818941430740171767e-08,2.425255240986895469e-08,3.031569051233619501e-08,3.637882861480343534e-08,4.244196671727067567e-08,4.850510481973791599e-08,5.456824292220515632e-08,6.063138102467239003e-08,6.669451912713962374e-08,7.275765722960685744e-08,7.882079533207409115e-08,8.488393343454132486e-08,9.094707153700855857e-08,9.701020963947579228e-08,1.030733477419430260e-07,1.091364858444102597e-07,1.151996239468774934e-07,1.212627620493447271e-07,1.273259001518119608e-07,1.333890382542791945e-07,1.394521763567464282e-07,1.455153144592136619e-07,1.515784525616808957e-07,1.576415906641481294e-07,1.637047287666153631e-07,1.697678668690825968e-07,1.758310049715498305e-07,1.818941430740170642e-07,1.879572811764842979e-07,1.940204192789515316e-07,2.000835573814187653e-07,2.061466954838859990e-07,2.122098335863532327e-07,2.182729716888204665e-07,2.243361097912877002e-07,2.303992478937549339e-07,2.364623859962221676e-07,2.425255240986894013e-07,2.485886622011566615e-07,2.546518003036239216e-07,2.607149384060911818e-07,2.667780765085584420e-07,2.728412146110257022e-07,2.789043527134929624e-07,2.849674908159602225e-07,2.910306289184274827e-07,2.970937670208947429e-07,3.031569051233620031e-07,3.092200432258292633e-07,3.152831813282965234e-07,3.213463194307637836e-07,3.274094575332310438e-07,3.334725956356983040e-07,3.395357337381655641e-07,3.455988718406328243e-07,3.516620099431000845e-07,3.577251480455673447e-07,3.637882861480346049e-07,3.698514242505018650e-07,3.759145623529691252e-07,3.819777004554363854e-07 +0.000000000000000000e+00,8.963500815258037674e-09,1.792700163051607535e-08,2.689050244577411302e-08,3.585400326103215070e-08,4.481750407629019168e-08,5.378100489154823266e-08,6.274450570680627364e-08,7.170800652206431463e-08,8.067150733732235561e-08,8.963500815258039659e-08,9.859850896783843758e-08,1.075620097830964786e-07,1.165255105983545195e-07,1.254890114136125473e-07,1.344525122288705750e-07,1.434160130441286028e-07,1.523795138593866305e-07,1.613430146746446583e-07,1.703065154899026860e-07,1.792700163051607138e-07,1.882335171204187415e-07,1.971970179356767693e-07,2.061605187509347970e-07,2.151240195661928248e-07,2.240875203814508525e-07,2.330510211967088803e-07,2.420145220119669080e-07,2.509780228272249358e-07,2.599415236424829635e-07,2.689050244577409913e-07,2.778685252729990190e-07,2.868320260882570468e-07,2.957955269035150745e-07,3.047590277187731022e-07,3.137225285340311300e-07,3.226860293492891577e-07,3.316495301645471855e-07,3.406130309798052132e-07,3.495765317950632410e-07,3.585400326103212687e-07,3.675035334255792965e-07,3.764670342408373242e-07,3.854305350560953520e-07,3.943940358713533797e-07,4.033575366866114075e-07,4.123210375018694352e-07,4.212845383171274630e-07,4.302480391323854907e-07,4.392115399476435185e-07,4.481750407629015462e-07,4.571385415781595740e-07,4.661020423934176017e-07,4.750655432086756295e-07,4.840290440239336043e-07,4.929925448391915791e-07,5.019560456544495539e-07,5.109195464697075287e-07,5.198830472849655035e-07,5.288465481002234783e-07,5.378100489154814531e-07,5.467735497307394279e-07,5.557370505459974027e-07,5.647005513612553775e-07 +0.000000000000000000e+00,2.834396831374273937e-09,5.668793662748547874e-09,8.503190494122821811e-09,1.133758732549709575e-08,1.417198415687136968e-08,1.700638098824564362e-08,1.984077781961991756e-08,2.267517465099419150e-08,2.550957148236846543e-08,2.834396831374273937e-08,3.117836514511701000e-08,3.401276197649128063e-08,3.684715880786555125e-08,3.968155563923982188e-08,4.251595247061409251e-08,4.535034930198836314e-08,4.818474613336263377e-08,5.101914296473690440e-08,5.385353979611117502e-08,5.668793662748544565e-08,5.952233345885971628e-08,6.235673029023399353e-08,6.519112712160827077e-08,6.802552395298254802e-08,7.085992078435682526e-08,7.369431761573110251e-08,7.652871444710537975e-08,7.936311127847965700e-08,8.219750810985393425e-08,8.503190494122821149e-08,8.786630177260248874e-08,9.070069860397676598e-08,9.353509543535104323e-08,9.636949226672532047e-08,9.920388909809959772e-08,1.020382859294738750e-07,1.048726827608481522e-07,1.077070795922224295e-07,1.105414764235967067e-07,1.133758732549709839e-07,1.162102700863452612e-07,1.190446669177195384e-07,1.218790637490938289e-07,1.247134605804681194e-07,1.275478574118424099e-07,1.303822542432167004e-07,1.332166510745909908e-07,1.360510479059652813e-07,1.388854447373395718e-07,1.417198415687138623e-07,1.445542384000881528e-07,1.473886352314624432e-07,1.502230320628367337e-07,1.530574288942110242e-07,1.558918257255853147e-07,1.587262225569596052e-07,1.615606193883338956e-07,1.643950162197081861e-07,1.672294130510824766e-07,1.700638098824567671e-07,1.728982067138310576e-07,1.757326035452053480e-07,1.785670003765796385e-07 +0.000000000000000000e+00,6.360790571506004489e-09,1.272158114301200898e-08,1.908237171451801181e-08,2.544316228602401465e-08,3.180395285753001748e-08,3.816474342903602363e-08,4.452553400054202977e-08,5.088632457204803591e-08,5.724711514355404206e-08,6.360790571506004820e-08,6.996869628656606096e-08,7.632948685807207372e-08,8.269027742957808648e-08,8.905106800108409925e-08,9.541185857259011201e-08,1.017726491440961248e-07,1.081334397156021375e-07,1.144942302871081503e-07,1.208550208586141631e-07,1.272158114301201758e-07,1.335766020016261886e-07,1.399373925731322013e-07,1.462981831446382141e-07,1.526589737161442269e-07,1.590197642876502396e-07,1.653805548591562524e-07,1.717413454306622651e-07,1.781021360021682779e-07,1.844629265736742907e-07,1.908237171451803034e-07,1.971845077166863162e-07,2.035452982881923289e-07,2.099060888596983417e-07,2.162668794312043545e-07,2.226276700027103672e-07,2.289884605742163800e-07,2.353492511457223927e-07,2.417100417172283790e-07,2.480708322887343389e-07,2.544316228602402987e-07,2.607924134317462585e-07,2.671532040032522183e-07,2.735139945747581781e-07,2.798747851462641380e-07,2.862355757177700978e-07,2.925963662892760576e-07,2.989571568607820174e-07,3.053179474322879773e-07,3.116787380037939371e-07,3.180395285752998969e-07,3.244003191468058567e-07,3.307611097183118165e-07,3.371219002898177764e-07,3.434826908613237362e-07,3.498434814328296960e-07,3.562042720043356558e-07,3.625650625758416156e-07,3.689258531473475755e-07,3.752866437188535353e-07,3.816474342903594951e-07,3.880082248618654549e-07,3.943690154333714148e-07,4.007298060048773746e-07 +0.000000000000000000e+00,6.341097292113325776e-09,1.268219458422665155e-08,1.902329187633997733e-08,2.536438916845330310e-08,3.170548646056662888e-08,3.804658375267995466e-08,4.438768104479328043e-08,5.072877833690660621e-08,5.706987562901993198e-08,6.341097292113325776e-08,6.975207021324658354e-08,7.609316750535990931e-08,8.243426479747323509e-08,8.877536208958656086e-08,9.511645938169988664e-08,1.014575566738132124e-07,1.077986539659265382e-07,1.141397512580398640e-07,1.204808485501531765e-07,1.268219458422664891e-07,1.331630431343798016e-07,1.395041404264931141e-07,1.458452377186064267e-07,1.521863350107197392e-07,1.585274323028330518e-07,1.648685295949463643e-07,1.712096268870596768e-07,1.775507241791729894e-07,1.838918214712863019e-07,1.902329187633996145e-07,1.965740160555129270e-07,2.029151133476262395e-07,2.092562106397395521e-07,2.155973079318528646e-07,2.219384052239661772e-07,2.282795025160794897e-07,2.346205998081928023e-07,2.409616971003061413e-07,2.473027943924194803e-07,2.536438916845328193e-07,2.599849889766461583e-07,2.663260862687594973e-07,2.726671835608728363e-07,2.790082808529861753e-07,2.853493781450995143e-07,2.916904754372128533e-07,2.980315727293261924e-07,3.043726700214395314e-07,3.107137673135528704e-07,3.170548646056662094e-07,3.233959618977795484e-07,3.297370591898928874e-07,3.360781564820062264e-07,3.424192537741195654e-07,3.487603510662329044e-07,3.551014483583462435e-07,3.614425456504595825e-07,3.677836429425729215e-07,3.741247402346862605e-07,3.804658375267995995e-07,3.868069348189129385e-07,3.931480321110262775e-07,3.994891294031396165e-07 +0.000000000000000000e+00,3.560796949529617755e-09,7.121593899059235511e-09,1.068239084858885368e-08,1.424318779811847268e-08,1.780398474764809002e-08,2.136478169717770736e-08,2.492557864670732470e-08,2.848637559623694204e-08,3.204717254576655938e-08,3.560796949529618003e-08,3.916876644482580069e-08,4.272956339435542134e-08,4.629036034388504199e-08,4.985115729341466264e-08,5.341195424294428329e-08,5.697275119247390394e-08,6.053354814200351797e-08,6.409434509153313200e-08,6.765514204106274604e-08,7.121593899059236007e-08,7.477673594012197410e-08,7.833753288965158814e-08,8.189832983918120217e-08,8.545912678871081620e-08,8.901992373824043023e-08,9.258072068777004427e-08,9.614151763729965830e-08,9.970231458682927233e-08,1.032631115363588864e-07,1.068239084858885004e-07,1.103847054354181144e-07,1.139455023849477285e-07,1.175062993344773425e-07,1.210670962840069565e-07,1.246278932335365706e-07,1.281886901830661846e-07,1.317494871325957986e-07,1.353102840821254127e-07,1.388710810316550267e-07,1.424318779811846407e-07,1.459926749307142548e-07,1.495534718802438688e-07,1.531142688297734828e-07,1.566750657793030969e-07,1.602358627288327109e-07,1.637966596783623249e-07,1.673574566278919390e-07,1.709182535774215530e-07,1.744790505269511670e-07,1.780398474764807811e-07,1.816006444260103951e-07,1.851614413755400091e-07,1.887222383250696232e-07,1.922830352745992372e-07,1.958438322241288512e-07,1.994046291736584653e-07,2.029654261231880793e-07,2.065262230727176933e-07,2.100870200222473074e-07,2.136478169717769214e-07,2.172086139213065354e-07,2.207694108708361495e-07,2.243302078203657635e-07 +0.000000000000000000e+00,4.308827514988773600e-09,8.617655029977547201e-09,1.292648254496632163e-08,1.723531005995509771e-08,2.154413757494387379e-08,2.585296508993264987e-08,3.016179260492142596e-08,3.447062011991020204e-08,3.877944763489897812e-08,4.308827514988775420e-08,4.739710266487653028e-08,5.170593017986530636e-08,5.601475769485408245e-08,6.032358520984286515e-08,6.463241272483164123e-08,6.894124023982041731e-08,7.325006775480919339e-08,7.755889526979796947e-08,8.186772278478674555e-08,8.617655029977552164e-08,9.048537781476429772e-08,9.479420532975307380e-08,9.910303284474184988e-08,1.034118603597306260e-07,1.077206878747194020e-07,1.120295153897081781e-07,1.163383429046969542e-07,1.206471704196857303e-07,1.249559979346745064e-07,1.292648254496632825e-07,1.335736529646520585e-07,1.378824804796408346e-07,1.421913079946296107e-07,1.465001355096183868e-07,1.508089630246071629e-07,1.551177905395959389e-07,1.594266180545847150e-07,1.637354455695734911e-07,1.680442730845622672e-07,1.723531005995510433e-07,1.766619281145398194e-07,1.809707556295285954e-07,1.852795831445173715e-07,1.895884106595061476e-07,1.938972381744949237e-07,1.982060656894836998e-07,2.025148932044724758e-07,2.068237207194612519e-07,2.111325482344500280e-07,2.154413757494388041e-07,2.197502032644275802e-07,2.240590307794163563e-07,2.283678582944051323e-07,2.326766858093939084e-07,2.369855133243826845e-07,2.412943408393714606e-07,2.456031683543602367e-07,2.499119958693490127e-07,2.542208233843377888e-07,2.585296508993265649e-07,2.628384784143153410e-07,2.671473059293041171e-07,2.714561334442928932e-07 +0.000000000000000000e+00,7.342542375103253742e-09,1.468508475020650748e-08,2.202762712530976040e-08,2.937016950041301166e-08,3.671271187551625961e-08,4.405525425061950756e-08,5.139779662572275552e-08,5.874033900082600347e-08,6.608288137592925142e-08,7.342542375103249275e-08,8.076796612613573409e-08,8.811050850123897542e-08,9.545305087634221676e-08,1.027955932514454581e-07,1.101381356265486994e-07,1.174806780016519408e-07,1.248232203767551821e-07,1.321657627518584234e-07,1.395083051269616648e-07,1.468508475020649061e-07,1.541933898771681474e-07,1.615359322522713888e-07,1.688784746273746301e-07,1.762210170024778714e-07,1.835635593775811128e-07,1.909061017526843541e-07,1.982486441277875954e-07,2.055911865028908368e-07,2.129337288779940781e-07,2.202762712530973194e-07,2.276188136282005608e-07,2.349613560033038021e-07,2.423038983784070434e-07,2.496464407535102583e-07,2.569889831286134732e-07,2.643315255037166880e-07,2.716740678788199029e-07,2.790166102539231178e-07,2.863591526290263326e-07,2.937016950041295475e-07,3.010442373792327624e-07,3.083867797543359772e-07,3.157293221294391921e-07,3.230718645045424070e-07,3.304144068796456218e-07,3.377569492547488367e-07,3.450994916298520515e-07,3.524420340049552664e-07,3.597845763800584813e-07,3.671271187551616961e-07,3.744696611302649110e-07,3.818122035053681259e-07,3.891547458804713407e-07,3.964972882555745556e-07,4.038398306306777705e-07,4.111823730057809853e-07,4.185249153808842002e-07,4.258674577559874151e-07,4.332100001310906299e-07,4.405525425061938448e-07,4.478950848812970597e-07,4.552376272564002745e-07,4.625801696315034894e-07 +0.000000000000000000e+00,6.345291972154015541e-09,1.269058394430803108e-08,1.903587591646204662e-08,2.538116788861606216e-08,3.172645986077007440e-08,3.807175183292408663e-08,4.441704380507809886e-08,5.076233577723211109e-08,5.710762774938612332e-08,6.345291972154013556e-08,6.979821169369414779e-08,7.614350366584816002e-08,8.248879563800217225e-08,8.883408761015618448e-08,9.517937958231019672e-08,1.015246715544642089e-07,1.078699635266182212e-07,1.142152554987722334e-07,1.205605474709262456e-07,1.269058394430802446e-07,1.332511314152342436e-07,1.395964233873882426e-07,1.459417153595422416e-07,1.522870073316962406e-07,1.586322993038502396e-07,1.649775912760042386e-07,1.713228832481582376e-07,1.776681752203122366e-07,1.840134671924662356e-07,1.903587591646202346e-07,1.967040511367742336e-07,2.030493431089282326e-07,2.093946350810822316e-07,2.157399270532362306e-07,2.220852190253902296e-07,2.284305109975442286e-07,2.347758029696982276e-07,2.411210949418522266e-07,2.474663869140062521e-07,2.538116788861602775e-07,2.601569708583143030e-07,2.665022628304683285e-07,2.728475548026223539e-07,2.791928467747763794e-07,2.855381387469304049e-07,2.918834307190844303e-07,2.982287226912384558e-07,3.045740146633924813e-07,3.109193066355465067e-07,3.172645986077005322e-07,3.236098905798545577e-07,3.299551825520085831e-07,3.363004745241626086e-07,3.426457664963166341e-07,3.489910584684706595e-07,3.553363504406246850e-07,3.616816424127787105e-07,3.680269343849327359e-07,3.743722263570867614e-07,3.807175183292407869e-07,3.870628103013948123e-07,3.934081022735488378e-07,3.997533942457028633e-07 +0.000000000000000000e+00,7.323008909194011579e-09,1.464601781838802316e-08,2.196902672758203639e-08,2.929203563677604962e-08,3.661504454597006286e-08,4.393805345516407278e-08,5.126106236435808271e-08,5.858407127355209263e-08,6.590708018274609594e-08,7.323008909194009924e-08,8.055309800113410255e-08,8.787610691032810586e-08,9.519911581952210917e-08,1.025221247287161125e-07,1.098451336379101158e-07,1.171681425471041191e-07,1.244911514562981224e-07,1.318141603654921389e-07,1.391371692746861555e-07,1.464601781838801720e-07,1.537831870930741886e-07,1.611061960022682051e-07,1.684292049114622216e-07,1.757522138206562382e-07,1.830752227298502547e-07,1.903982316390442713e-07,1.977212405482382878e-07,2.050442494574323044e-07,2.123672583666263209e-07,2.196902672758203374e-07,2.270132761850143540e-07,2.343362850942083705e-07,2.416592940034024135e-07,2.489823029125964565e-07,2.563053118217904996e-07,2.636283207309845426e-07,2.709513296401785856e-07,2.782743385493726286e-07,2.855973474585666716e-07,2.929203563677607146e-07,3.002433652769547576e-07,3.075663741861488006e-07,3.148893830953428436e-07,3.222123920045368867e-07,3.295354009137309297e-07,3.368584098229249727e-07,3.441814187321190157e-07,3.515044276413130587e-07,3.588274365505071017e-07,3.661504454597011447e-07,3.734734543688951877e-07,3.807964632780892308e-07,3.881194721872832738e-07,3.954424810964773168e-07,4.027654900056713598e-07,4.100884989148654028e-07,4.174115078240594458e-07,4.247345167332534888e-07,4.320575256424475318e-07,4.393805345516415748e-07,4.467035434608356179e-07,4.540265523700296609e-07,4.613495612792237039e-07 +0.000000000000000000e+00,2.834396831373714763e-09,5.668793662747429526e-09,8.503190494121144289e-09,1.133758732549485905e-08,1.417198415686857381e-08,1.700638098824228858e-08,1.984077781961600334e-08,2.267517465098971810e-08,2.550957148236343287e-08,2.834396831373714763e-08,3.117836514511086239e-08,3.401276197648457715e-08,3.684715880785829192e-08,3.968155563923200668e-08,4.251595247060572144e-08,4.535034930197943621e-08,4.818474613335315097e-08,5.101914296472686573e-08,5.385353979610058049e-08,5.668793662747429526e-08,5.952233345884801002e-08,6.235673029022172478e-08,6.519112712159544616e-08,6.802552395296916754e-08,7.085992078434288892e-08,7.369431761571661030e-08,7.652871444709033168e-08,7.936311127846405306e-08,8.219750810983777444e-08,8.503190494121149582e-08,8.786630177258521721e-08,9.070069860395893859e-08,9.353509543533265997e-08,9.636949226670638135e-08,9.920388909808010273e-08,1.020382859294538241e-07,1.048726827608275455e-07,1.077070795922012669e-07,1.105414764235749882e-07,1.133758732549487096e-07,1.162102700863224310e-07,1.190446669176961524e-07,1.218790637490698738e-07,1.247134605804435819e-07,1.275478574118172901e-07,1.303822542431909982e-07,1.332166510745647064e-07,1.360510479059384145e-07,1.388854447373121226e-07,1.417198415686858308e-07,1.445542384000595389e-07,1.473886352314332471e-07,1.502230320628069552e-07,1.530574288941806634e-07,1.558918257255543715e-07,1.587262225569280797e-07,1.615606193883017878e-07,1.643950162196754959e-07,1.672294130510492041e-07,1.700638098824229122e-07,1.728982067137966204e-07,1.757326035451703285e-07,1.785670003765440367e-07 +0.000000000000000000e+00,6.360790571503800053e-09,1.272158114300760011e-08,1.908237171451140099e-08,2.544316228601520352e-08,3.180395285751900605e-08,3.816474342902280859e-08,4.452553400052661112e-08,5.088632457203041366e-08,5.724711514353421619e-08,6.360790571503802534e-08,6.996869628654184111e-08,7.632948685804565688e-08,8.269027742954947265e-08,8.905106800105328842e-08,9.541185857255710419e-08,1.017726491440609200e-07,1.081334397155647357e-07,1.144942302870685515e-07,1.208550208585723673e-07,1.272158114300761830e-07,1.335766020015799988e-07,1.399373925730838146e-07,1.462981831445876303e-07,1.526589737160914461e-07,1.590197642875952619e-07,1.653805548590990777e-07,1.717413454306028934e-07,1.781021360021067092e-07,1.844629265736105250e-07,1.908237171451143407e-07,1.971845077166181565e-07,2.035452982881219723e-07,2.099060888596257880e-07,2.162668794311296038e-07,2.226276700026334196e-07,2.289884605741372353e-07,2.353492511456410511e-07,2.417100417171448404e-07,2.480708322886486297e-07,2.544316228601524190e-07,2.607924134316562083e-07,2.671532040031599976e-07,2.735139945746637869e-07,2.798747851461675762e-07,2.862355757176713655e-07,2.925963662891751548e-07,2.989571568606789441e-07,3.053179474321827334e-07,3.116787380036865227e-07,3.180395285751903120e-07,3.244003191466941013e-07,3.307611097181978906e-07,3.371219002897016799e-07,3.434826908612054692e-07,3.498434814327092585e-07,3.562042720042130478e-07,3.625650625757168371e-07,3.689258531472206264e-07,3.752866437187244157e-07,3.816474342902282050e-07,3.880082248617319943e-07,3.943690154332357836e-07,4.007298060047395729e-07 +0.000000000000000000e+00,6.345291972152927798e-09,1.269058394430585560e-08,1.903587591645878422e-08,2.538116788861171450e-08,3.172645986076464809e-08,3.807175183291758168e-08,4.441704380507051527e-08,5.076233577722344886e-08,5.710762774937638245e-08,6.345291972152932265e-08,6.979821169368226286e-08,7.614350366583520306e-08,8.248879563798814327e-08,8.883408761014108348e-08,9.517937958229402368e-08,1.015246715544469639e-07,1.078699635265999041e-07,1.142152554987528443e-07,1.205605474709057845e-07,1.269058394430587247e-07,1.332511314152116649e-07,1.395964233873646051e-07,1.459417153595175453e-07,1.522870073316704855e-07,1.586322993038234257e-07,1.649775912759763659e-07,1.713228832481293062e-07,1.776681752202822464e-07,1.840134671924351866e-07,1.903587591645881268e-07,1.967040511367410670e-07,2.030493431088940072e-07,2.093946350810469474e-07,2.157399270531998876e-07,2.220852190253528278e-07,2.284305109975057680e-07,2.347758029696587082e-07,2.411210949418116749e-07,2.474663869139646416e-07,2.538116788861176082e-07,2.601569708582705749e-07,2.665022628304235416e-07,2.728475548025765083e-07,2.791928467747294749e-07,2.855381387468824416e-07,2.918834307190354083e-07,2.982287226911883750e-07,3.045740146633413416e-07,3.109193066354943083e-07,3.172645986076472750e-07,3.236098905798002417e-07,3.299551825519532084e-07,3.363004745241061750e-07,3.426457664962591417e-07,3.489910584684121084e-07,3.553363504405650751e-07,3.616816424127180417e-07,3.680269343848710084e-07,3.743722263570239751e-07,3.807175183291769418e-07,3.870628103013299084e-07,3.934081022734828751e-07,3.997533942456358418e-07 +0.000000000000000000e+00,3.560796949528804637e-09,7.121593899057609274e-09,1.068239084858641350e-08,1.424318779811521689e-08,1.780398474764402029e-08,2.136478169717282368e-08,2.492557864670162708e-08,2.848637559623043048e-08,3.204717254575923387e-08,3.560796949528804058e-08,3.916876644481684728e-08,4.272956339434565399e-08,4.629036034387446069e-08,4.985115729340326740e-08,5.341195424293207410e-08,5.697275119246088081e-08,6.053354814198968751e-08,6.409434509151849422e-08,6.765514204104730092e-08,7.121593899057610762e-08,7.477673594010491433e-08,7.833753288963372103e-08,8.189832983916252774e-08,8.545912678869133444e-08,8.901992373822014115e-08,9.258072068774894785e-08,9.614151763727775456e-08,9.970231458680656126e-08,1.032631115363353680e-07,1.068239084858641747e-07,1.103847054353929814e-07,1.139455023849217881e-07,1.175062993344505948e-07,1.210670962839794015e-07,1.246278932335081950e-07,1.281886901830369884e-07,1.317494871325657819e-07,1.353102840820945754e-07,1.388710810316233688e-07,1.424318779811521623e-07,1.459926749306809558e-07,1.495534718802097492e-07,1.531142688297385427e-07,1.566750657792673362e-07,1.602358627287961297e-07,1.637966596783249231e-07,1.673574566278537166e-07,1.709182535773825101e-07,1.744790505269113035e-07,1.780398474764400970e-07,1.816006444259688905e-07,1.851614413754976839e-07,1.887222383250264774e-07,1.922830352745552709e-07,1.958438322240840644e-07,1.994046291736128578e-07,2.029654261231416513e-07,2.065262230726704448e-07,2.100870200221992382e-07,2.136478169717280317e-07,2.172086139212568252e-07,2.207694108707856186e-07,2.243302078203144121e-07 +0.000000000000000000e+00,4.308827514987759477e-09,8.617655029975518954e-09,1.292648254496327760e-08,1.723531005995103460e-08,2.154413757493879159e-08,2.585296508992654859e-08,3.016179260491430558e-08,3.447062011990206258e-08,3.877944763488981958e-08,4.308827514987757657e-08,4.739710266486533357e-08,5.170593017985309056e-08,5.601475769484084756e-08,6.032358520982859793e-08,6.463241272481634169e-08,6.894124023980408545e-08,7.325006775479182922e-08,7.755889526977957298e-08,8.186772278476731674e-08,8.617655029975506050e-08,9.048537781474280426e-08,9.479420532973054802e-08,9.910303284471829178e-08,1.034118603597060355e-07,1.077206878746937793e-07,1.120295153896815231e-07,1.163383429046692668e-07,1.206471704196570106e-07,1.249559979346447543e-07,1.292648254496324981e-07,1.335736529646202419e-07,1.378824804796079856e-07,1.421913079945957294e-07,1.465001355095834731e-07,1.508089630245712169e-07,1.551177905395589607e-07,1.594266180545467044e-07,1.637354455695344482e-07,1.680442730845221919e-07,1.723531005995099357e-07,1.766619281144976795e-07,1.809707556294854232e-07,1.852795831444731670e-07,1.895884106594609107e-07,1.938972381744486545e-07,1.982060656894363983e-07,2.025148932044241420e-07,2.068237207194118858e-07,2.111325482343996295e-07,2.154413757493873733e-07,2.197502032643751171e-07,2.240590307793628608e-07,2.283678582943506046e-07,2.326766858093383484e-07,2.369855133243260921e-07,2.412943408393138623e-07,2.456031683543016326e-07,2.499119958692894028e-07,2.542208233842771730e-07,2.585296508992649433e-07,2.628384784142527135e-07,2.671473059292404837e-07,2.714561334442282540e-07 +0.000000000000000000e+00,7.342542375100531491e-09,1.468508475020106298e-08,2.202762712530159447e-08,2.937016950040212596e-08,3.671271187550265414e-08,4.405525425060318233e-08,5.139779662570371051e-08,5.874033900080423869e-08,6.608288137590476687e-08,7.342542375100529505e-08,8.076796612610582324e-08,8.811050850120635142e-08,9.545305087630687960e-08,1.027955932514074078e-07,1.101381356265079360e-07,1.174806780016084641e-07,1.248232203767089923e-07,1.321657627518095337e-07,1.395083051269100752e-07,1.468508475020106166e-07,1.541933898771111580e-07,1.615359322522116994e-07,1.688784746273122408e-07,1.762210170024127822e-07,1.835635593775133237e-07,1.909061017526138651e-07,1.982486441277144065e-07,2.055911865028149479e-07,2.129337288779154893e-07,2.202762712530160307e-07,2.276188136281165722e-07,2.349613560032171136e-07,2.423038983783176815e-07,2.496464407534182494e-07,2.569889831285188172e-07,2.643315255036193851e-07,2.716740678787199530e-07,2.790166102538205209e-07,2.863591526289210888e-07,2.937016950040216567e-07,3.010442373791222246e-07,3.083867797542227924e-07,3.157293221293233603e-07,3.230718645044239282e-07,3.304144068795244961e-07,3.377569492546250640e-07,3.450994916297256319e-07,3.524420340048261998e-07,3.597845763799267677e-07,3.671271187550273355e-07,3.744696611301279034e-07,3.818122035052284713e-07,3.891547458803290392e-07,3.964972882554296071e-07,4.038398306305301750e-07,4.111823730056307429e-07,4.185249153807313107e-07,4.258674577558318786e-07,4.332100001309324465e-07,4.405525425060330144e-07,4.478950848811335823e-07,4.552376272562341502e-07,4.625801696313347181e-07 +0.000000000000000000e+00,1.429228554219556240e-09,2.858457108439112480e-09,4.287685662658669134e-09,5.716914216878225787e-09,7.146142771097782441e-09,8.575371325317338267e-09,1.000459987953689409e-08,1.143382843375644992e-08,1.286305698797600575e-08,1.429228554219556157e-08,1.572151409641511740e-08,1.715074265063467323e-08,1.857997120485422905e-08,2.000919975907378488e-08,2.143842831329334070e-08,2.286765686751289653e-08,2.429688542173245236e-08,2.572611397595200818e-08,2.715534253017156401e-08,2.858457108439111984e-08,3.001379963861067566e-08,3.144302819283023480e-08,3.287225674704979393e-08,3.430148530126935307e-08,3.573071385548891220e-08,3.715994240970847134e-08,3.858917096392803047e-08,4.001839951814758961e-08,4.144762807236714874e-08,4.287685662658670788e-08,4.430608518080626701e-08,4.573531373502582615e-08,4.716454228924538528e-08,4.859377084346494442e-08,5.002299939768450356e-08,5.145222795190406269e-08,5.288145650612362183e-08,5.431068506034318096e-08,5.573991361456274010e-08,5.716914216878229923e-08,5.859837072300185837e-08,6.002759927722141750e-08,6.145682783144097664e-08,6.288605638566053577e-08,6.431528493988009491e-08,6.574451349409965404e-08,6.717374204831921318e-08,6.860297060253877231e-08,7.003219915675833145e-08,7.146142771097789058e-08,7.289065626519744972e-08,7.431988481941700885e-08,7.574911337363656799e-08,7.717834192785612712e-08,7.860757048207568626e-08,8.003679903629524539e-08,8.146602759051480453e-08,8.289525614473436366e-08,8.432448469895392280e-08,8.575371325317348193e-08,8.718294180739304107e-08,8.861217036161260020e-08,9.004139891583215934e-08 +0.000000000000000000e+00,4.026552183940967311e-09,8.053104367881934622e-09,1.207965655182290276e-08,1.610620873576387255e-08,2.013276091970484235e-08,2.415931310364581214e-08,2.818586528758678193e-08,3.221241747152775172e-08,3.623896965546872152e-08,4.026552183940969131e-08,4.429207402335066110e-08,4.831862620729163089e-08,5.234517839123260069e-08,5.637173057517357048e-08,6.039828275911454027e-08,6.442483494305551668e-08,6.845138712699649309e-08,7.247793931093746950e-08,7.650449149487844591e-08,8.053104367881942232e-08,8.455759586276039873e-08,8.858414804670137514e-08,9.261070023064235155e-08,9.663725241458332796e-08,1.006638045985243044e-07,1.046903567824652808e-07,1.087169089664062572e-07,1.127434611503472336e-07,1.167700133342882100e-07,1.207965655182291864e-07,1.248231177021701496e-07,1.288496698861111128e-07,1.328762220700520760e-07,1.369027742539930391e-07,1.409293264379340023e-07,1.449558786218749655e-07,1.489824308058159287e-07,1.530089829897568918e-07,1.570355351736978550e-07,1.610620873576388182e-07,1.650886395415797814e-07,1.691151917255207445e-07,1.731417439094617077e-07,1.771682960934026709e-07,1.811948482773436341e-07,1.852214004612845972e-07,1.892479526452255604e-07,1.932745048291665236e-07,1.973010570131074868e-07,2.013276091970484499e-07,2.053541613809894131e-07,2.093807135649303763e-07,2.134072657488713395e-07,2.174338179328123026e-07,2.214603701167532658e-07,2.254869223006942290e-07,2.295134744846351922e-07,2.335400266685761553e-07,2.375665788525171185e-07,2.415931310364581082e-07,2.456196832203990978e-07,2.496462354043400874e-07,2.536727875882810771e-07 +0.000000000000000000e+00,4.071345218863233202e-09,8.142690437726466405e-09,1.221403565658969961e-08,1.628538087545293281e-08,2.035672609431616601e-08,2.442807131317939921e-08,2.849941653204263242e-08,3.257076175090586562e-08,3.664210696976909882e-08,4.071345218863233202e-08,4.478479740749556523e-08,4.885614262635879843e-08,5.292748784522203163e-08,5.699883306408526483e-08,6.107017828294849804e-08,6.514152350181173124e-08,6.921286872067496444e-08,7.328421393953819764e-08,7.735555915840143085e-08,8.142690437726466405e-08,8.549824959612789725e-08,8.956959481499113045e-08,9.364094003385436365e-08,9.771228525271759686e-08,1.017836304715808301e-07,1.058549756904440633e-07,1.099263209093072965e-07,1.139976661281705297e-07,1.180690113470337629e-07,1.221403565658969961e-07,1.262117017847602425e-07,1.302830470036234889e-07,1.343543922224867354e-07,1.384257374413499818e-07,1.424970826602132283e-07,1.465684278790764747e-07,1.506397730979397211e-07,1.547111183168029676e-07,1.587824635356662140e-07,1.628538087545294604e-07,1.669251539733927069e-07,1.709964991922559533e-07,1.750678444111191998e-07,1.791391896299824462e-07,1.832105348488456926e-07,1.872818800677089391e-07,1.913532252865721855e-07,1.954245705054354319e-07,1.994959157242986784e-07,2.035672609431619248e-07,2.076386061620251713e-07,2.117099513808884177e-07,2.157812965997516641e-07,2.198526418186149106e-07,2.239239870374781570e-07,2.279953322563414034e-07,2.320666774752046499e-07,2.361380226940678963e-07,2.402093679129311428e-07,2.442807131317943627e-07,2.483520583506575827e-07,2.524234035695208027e-07,2.564947487883840226e-07 +0.000000000000000000e+00,2.120432870935465226e-09,4.240865741870930452e-09,6.361298612806396092e-09,8.481731483741862558e-09,1.060216435467732903e-08,1.272259722561279549e-08,1.484303009654826196e-08,1.696346296748372843e-08,1.908389583841919489e-08,2.120432870935466136e-08,2.332476158029012783e-08,2.544519445122559429e-08,2.756562732216106076e-08,2.968606019309652723e-08,3.180649306403199369e-08,3.392692593496746347e-08,3.604735880590293324e-08,3.816779167683840302e-08,4.028822454777387280e-08,4.240865741870934257e-08,4.452909028964481235e-08,4.664952316058028212e-08,4.876995603151575190e-08,5.089038890245122167e-08,5.301082177338669145e-08,5.513125464432216122e-08,5.725168751525763100e-08,5.937212038619310077e-08,6.149255325712857717e-08,6.361298612806405356e-08,6.573341899899952995e-08,6.785385186993500635e-08,6.997428474087048274e-08,7.209471761180595913e-08,7.421515048274143553e-08,7.633558335367691192e-08,7.845601622461238831e-08,8.057644909554786470e-08,8.269688196648334110e-08,8.481731483741881749e-08,8.693774770835429388e-08,8.905818057928977028e-08,9.117861345022524667e-08,9.329904632116072306e-08,9.541947919209619946e-08,9.753991206303167585e-08,9.966034493396715224e-08,1.017807778049026286e-07,1.039012106758381050e-07,1.060216435467735814e-07,1.081420764177090578e-07,1.102625092886445342e-07,1.123829421595800106e-07,1.145033750305154870e-07,1.166238079014509634e-07,1.187442407723864398e-07,1.208646736433219162e-07,1.229851065142573926e-07,1.251055393851928690e-07,1.272259722561283453e-07,1.293464051270638217e-07,1.314668379979992981e-07,1.335872708689347745e-07 +0.000000000000000000e+00,2.119465504168533410e-09,4.238931008337066819e-09,6.358396512505599816e-09,8.477862016674131984e-09,1.059732752084266415e-08,1.271679302501119632e-08,1.483625852917972849e-08,1.695572403334826066e-08,1.907518953751679283e-08,2.119465504168532500e-08,2.331412054585385717e-08,2.543358605002238934e-08,2.755305155419092150e-08,2.967251705835945367e-08,3.179198256252798584e-08,3.391144806669651470e-08,3.603091357086504356e-08,3.815037907503357242e-08,4.026984457920210128e-08,4.238931008337063014e-08,4.450877558753915900e-08,4.662824109170768786e-08,4.874770659587621672e-08,5.086717210004474558e-08,5.298663760421327444e-08,5.510610310838180331e-08,5.722556861255033217e-08,5.934503411671886103e-08,6.146449962088738989e-08,6.358396512505591875e-08,6.570343062922444761e-08,6.782289613339297647e-08,6.994236163756150533e-08,7.206182714173003419e-08,7.418129264589856305e-08,7.630075815006709191e-08,7.842022365423562077e-08,8.053968915840414963e-08,8.265915466257267849e-08,8.477862016674120735e-08,8.689808567090973621e-08,8.901755117507826507e-08,9.113701667924679393e-08,9.325648218341532279e-08,9.537594768758385165e-08,9.749541319175238051e-08,9.961487869592090937e-08,1.017343442000894382e-07,1.038538097042579671e-07,1.059732752084264960e-07,1.080927407125950248e-07,1.102122062167635537e-07,1.123316717209320825e-07,1.144511372251006114e-07,1.165706027292691403e-07,1.186900682334376691e-07,1.208095337376061980e-07,1.229289992417747268e-07,1.250484647459432557e-07,1.271679302501117846e-07,1.292873957542803134e-07,1.314068612584488423e-07,1.335263267626173711e-07 +0.000000000000000000e+00,5.298208974353781413e-09,1.059641794870756283e-08,1.589462692306134507e-08,2.119283589741512896e-08,2.649104487176891286e-08,3.178925384612269675e-08,3.708746282047648065e-08,4.238567179483026454e-08,4.768388076918404844e-08,5.298208974353783233e-08,5.828029871789161622e-08,6.357850769224540674e-08,6.887671666659919725e-08,7.417492564095298776e-08,7.947313461530677827e-08,8.477134358966056879e-08,9.006955256401435930e-08,9.536776153836814981e-08,1.006659705127219403e-07,1.059641794870757308e-07,1.112623884614295213e-07,1.165605974357833119e-07,1.218588064101371024e-07,1.271570153844908929e-07,1.324552243588446834e-07,1.377534333331984739e-07,1.430516423075522644e-07,1.483498512819060549e-07,1.536480602562598454e-07,1.589462692306136360e-07,1.642444782049674265e-07,1.695426871793212170e-07,1.748408961536750075e-07,1.801391051280287980e-07,1.854373141023825885e-07,1.907355230767363790e-07,1.960337320510901695e-07,2.013319410254439601e-07,2.066301499997977506e-07,2.119283589741515411e-07,2.172265679485053316e-07,2.225247769228591221e-07,2.278229858972129126e-07,2.331211948715667031e-07,2.384194038459204672e-07,2.437176128202742577e-07,2.490158217946280482e-07,2.543140307689818387e-07,2.596122397433356292e-07,2.649104487176894197e-07,2.702086576920432102e-07,2.755068666663970008e-07,2.808050756407507913e-07,2.861032846151045818e-07,2.914014935894583723e-07,2.966997025638121628e-07,3.019979115381659533e-07,3.072961205125197438e-07,3.125943294868735343e-07,3.178925384612273249e-07,3.231907474355811154e-07,3.284889564099349059e-07,3.337871653842886964e-07 +0.000000000000000000e+00,4.057028258939016894e-09,8.114056517878033788e-09,1.217108477681704985e-08,1.622811303575606427e-08,2.028514129469507868e-08,2.434216955363409309e-08,2.839919781257310750e-08,3.245622607151212192e-08,3.651325433045113633e-08,4.057028258939015074e-08,4.462731084832916515e-08,4.868433910726817957e-08,5.274136736620719398e-08,5.679839562514620839e-08,6.085542388408522280e-08,6.491245214302423060e-08,6.896948040196323839e-08,7.302650866090224619e-08,7.708353691984125398e-08,8.114056517878026178e-08,8.519759343771926957e-08,8.925462169665827737e-08,9.331164995559728516e-08,9.736867821453629296e-08,1.014257064734753008e-07,1.054827347324143085e-07,1.095397629913533163e-07,1.135967912502923241e-07,1.176538195092313319e-07,1.217108477681703397e-07,1.257678760271093608e-07,1.298249042860483818e-07,1.338819325449874028e-07,1.379389608039264238e-07,1.419959890628654449e-07,1.460530173218044659e-07,1.501100455807434869e-07,1.541670738396825080e-07,1.582241020986215290e-07,1.622811303575605500e-07,1.663381586164995711e-07,1.703951868754385921e-07,1.744522151343776131e-07,1.785092433933166341e-07,1.825662716522556552e-07,1.866232999111946762e-07,1.906803281701336972e-07,1.947373564290727183e-07,1.987943846880117393e-07,2.028514129469507603e-07,2.069084412058897813e-07,2.109654694648288024e-07,2.150224977237678234e-07,2.190795259827068444e-07,2.231365542416458655e-07,2.271935825005848865e-07,2.312506107595239075e-07,2.353076390184629286e-07,2.393646672774019496e-07,2.434216955363409441e-07,2.474787237952799387e-07,2.515357520542189333e-07,2.555927803131579278e-07 +0.000000000000000000e+00,5.301630404219060922e-09,1.060326080843812184e-08,1.590489121265718111e-08,2.120652161687624038e-08,2.650815202109529964e-08,3.180978242531436222e-08,3.711141282953342480e-08,4.241304323375248737e-08,4.771467363797154995e-08,5.301630404219061252e-08,5.831793444640967510e-08,6.361956485062873768e-08,6.892119525484780025e-08,7.422282565906686283e-08,7.952445606328592540e-08,8.482608646750498798e-08,9.012771687172405056e-08,9.542934727594311313e-08,1.007309776801621757e-07,1.060326080843812383e-07,1.113342384886003009e-07,1.166358688928193634e-07,1.219374992970384392e-07,1.272391297012575018e-07,1.325407601054765644e-07,1.378423905096956270e-07,1.431440209139146896e-07,1.484456513181337521e-07,1.537472817223528147e-07,1.590489121265718773e-07,1.643505425307909399e-07,1.696521729350100024e-07,1.749538033392290650e-07,1.802554337434481276e-07,1.855570641476671902e-07,1.908586945518862527e-07,1.961603249561053153e-07,2.014619553603243779e-07,2.067635857645434405e-07,2.120652161687625030e-07,2.173668465729815656e-07,2.226684769772006282e-07,2.279701073814196908e-07,2.332717377856387533e-07,2.385733681898578159e-07,2.438749985940768785e-07,2.491766289982959411e-07,2.544782594025150036e-07,2.597798898067340662e-07,2.650815202109531288e-07,2.703831506151721914e-07,2.756847810193912540e-07,2.809864114236103165e-07,2.862880418278293791e-07,2.915896722320484417e-07,2.968913026362675043e-07,3.021929330404865668e-07,3.074945634447056294e-07,3.127961938489246920e-07,3.180978242531437546e-07,3.233994546573628171e-07,3.287010850615818797e-07,3.340027154658009423e-07 +0.000000000000000000e+00,1.429228554219329799e-09,2.858457108438659599e-09,4.287685662657989191e-09,5.716914216877318370e-09,7.146142771096647549e-09,8.575371325315976728e-09,1.000459987953530591e-08,1.143382843375463509e-08,1.286305698797396426e-08,1.429228554219329344e-08,1.572151409641262262e-08,1.715074265063195015e-08,1.857997120485127767e-08,2.000919975907060520e-08,2.143842831328993272e-08,2.286765686750926025e-08,2.429688542172858777e-08,2.572611397594791529e-08,2.715534253016724282e-08,2.858457108438657034e-08,3.001379963860589787e-08,3.144302819282522539e-08,3.287225674704455292e-08,3.430148530126388044e-08,3.573071385548320797e-08,3.715994240970253549e-08,3.858917096392186302e-08,4.001839951814119054e-08,4.144762807236051806e-08,4.287685662657984559e-08,4.430608518079917311e-08,4.573531373501850064e-08,4.716454228923782816e-08,4.859377084345715569e-08,5.002299939767648321e-08,5.145222795189581074e-08,5.288145650611513826e-08,5.431068506033446579e-08,5.573991361455379331e-08,5.716914216877312083e-08,5.859837072299244836e-08,6.002759927721176927e-08,6.145682783143109017e-08,6.288605638565041108e-08,6.431528493986973199e-08,6.574451349408905289e-08,6.717374204830837380e-08,6.860297060252769471e-08,7.003219915674701562e-08,7.146142771096633652e-08,7.289065626518565743e-08,7.431988481940497834e-08,7.574911337362429924e-08,7.717834192784362015e-08,7.860757048206294106e-08,8.003679903628226197e-08,8.146602759050158287e-08,8.289525614472090378e-08,8.432448469894022469e-08,8.575371325315954559e-08,8.718294180737886650e-08,8.861217036159818741e-08,9.004139891581750832e-08 +0.000000000000000000e+00,4.026552183940501608e-09,8.053104367881003217e-09,1.207965655182150483e-08,1.610620873576200643e-08,2.013276091970250639e-08,2.415931310364300634e-08,2.818586528758350630e-08,3.221241747152400625e-08,3.623896965546450620e-08,4.026552183940500616e-08,4.429207402334550611e-08,4.831862620728600607e-08,5.234517839122650602e-08,5.637173057516700597e-08,6.039828275910751255e-08,6.442483494304802574e-08,6.845138712698853892e-08,7.247793931092905211e-08,7.650449149486956530e-08,8.053104367881007849e-08,8.455759586275059168e-08,8.858414804669110487e-08,9.261070023063161806e-08,9.663725241457213125e-08,1.006638045985126444e-07,1.046903567824531576e-07,1.087169089663936708e-07,1.127434611503341840e-07,1.167700133342746972e-07,1.207965655182152104e-07,1.248231177021557236e-07,1.288496698860962368e-07,1.328762220700367499e-07,1.369027742539772631e-07,1.409293264379177763e-07,1.449558786218582895e-07,1.489824308057988027e-07,1.530089829897393159e-07,1.570355351736798291e-07,1.610620873576203423e-07,1.650886395415608555e-07,1.691151917255013686e-07,1.731417439094418818e-07,1.771682960933823950e-07,1.811948482773229082e-07,1.852214004612634214e-07,1.892479526452039346e-07,1.932745048291444478e-07,1.973010570130849610e-07,2.013276091970254742e-07,2.053541613809659873e-07,2.093807135649065005e-07,2.134072657488470137e-07,2.174338179327875269e-07,2.214603701167280401e-07,2.254869223006685533e-07,2.295134744846090665e-07,2.335400266685495797e-07,2.375665788524900929e-07,2.415931310364305796e-07,2.456196832203710398e-07,2.496462354043115001e-07,2.536727875882519603e-07 +0.000000000000000000e+00,4.057028258938739788e-09,8.114056517877479577e-09,1.217108477681621937e-08,1.622811303575495915e-08,2.028514129469369894e-08,2.434216955363243873e-08,2.839919781257117852e-08,3.245622607150991831e-08,3.651325433044866140e-08,4.057028258938740450e-08,4.462731084832614760e-08,4.868433910726489069e-08,5.274136736620363379e-08,5.679839562514237689e-08,6.085542388408111999e-08,6.491245214301986308e-08,6.896948040195860618e-08,7.302650866089734928e-08,7.708353691983609237e-08,8.114056517877483547e-08,8.519759343771357857e-08,8.925462169665232167e-08,9.331164995559106476e-08,9.736867821452980786e-08,1.014257064734685510e-07,1.054827347324072941e-07,1.095397629913460372e-07,1.135967912502847802e-07,1.176538195092235233e-07,1.217108477681622664e-07,1.257678760271009963e-07,1.298249042860397262e-07,1.338819325449784560e-07,1.379389608039171859e-07,1.419959890628559158e-07,1.460530173217946456e-07,1.501100455807333755e-07,1.541670738396721053e-07,1.582241020986108352e-07,1.622811303575495651e-07,1.663381586164882949e-07,1.703951868754270248e-07,1.744522151343657547e-07,1.785092433933044845e-07,1.825662716522432144e-07,1.866232999111819442e-07,1.906803281701206741e-07,1.947373564290594040e-07,1.987943846879981338e-07,2.028514129469368637e-07,2.069084412058755935e-07,2.109654694648143234e-07,2.150224977237530533e-07,2.190795259826917831e-07,2.231365542416305130e-07,2.271935825005692429e-07,2.312506107595079727e-07,2.353076390184467026e-07,2.393646672773854324e-07,2.434216955363241623e-07,2.474787237952628922e-07,2.515357520542016220e-07,2.555927803131403519e-07 +0.000000000000000000e+00,2.120432870935021444e-09,4.240865741870042887e-09,6.361298612805064331e-09,8.481731483740085775e-09,1.060216435467510722e-08,1.272259722561012866e-08,1.484303009654515011e-08,1.696346296748017155e-08,1.908389583841519134e-08,2.120432870935021113e-08,2.332476158028523092e-08,2.544519445122025071e-08,2.756562732215527050e-08,2.968606019309029028e-08,3.180649306402531007e-08,3.392692593496032986e-08,3.604735880589534965e-08,3.816779167683036944e-08,4.028822454776538923e-08,4.240865741870040902e-08,4.452909028963542881e-08,4.664952316057044860e-08,4.876995603150546839e-08,5.089038890244048818e-08,5.301082177337550797e-08,5.513125464431052776e-08,5.725168751524554755e-08,5.937212038618056733e-08,6.149255325711558051e-08,6.361298612805059368e-08,6.573341899898560685e-08,6.785385186992062002e-08,6.997428474085563319e-08,7.209471761179064637e-08,7.421515048272565954e-08,7.633558335366067271e-08,7.845601622459568588e-08,8.057644909553069905e-08,8.269688196646571222e-08,8.481731483740072540e-08,8.693774770833573857e-08,8.905818057927075174e-08,9.117861345020576491e-08,9.329904632114077808e-08,9.541947919207579126e-08,9.753991206301080443e-08,9.966034493394581760e-08,1.017807778048808308e-07,1.039012106758158439e-07,1.060216435467508571e-07,1.081420764176858703e-07,1.102625092886208835e-07,1.123829421595558966e-07,1.145033750304909098e-07,1.166238079014259230e-07,1.187442407723609361e-07,1.208646736432959493e-07,1.229851065142309493e-07,1.251055393851659492e-07,1.272259722561009491e-07,1.293464051270359491e-07,1.314668379979709490e-07,1.335872708689059489e-07 +0.000000000000000000e+00,2.119465504168061917e-09,4.238931008336123834e-09,6.358396512504185337e-09,8.477862016672246013e-09,1.059732752084030669e-08,1.271679302500836736e-08,1.483625852917642804e-08,1.695572403334448872e-08,1.907518953751255105e-08,2.119465504168061338e-08,2.331412054584867571e-08,2.543358605001673804e-08,2.755305155418480037e-08,2.967251705835286270e-08,3.179198256252092503e-08,3.391144806668898405e-08,3.603091357085704307e-08,3.815037907502510209e-08,4.026984457919316112e-08,4.238931008336122014e-08,4.450877558752927916e-08,4.662824109169733818e-08,4.874770659586539720e-08,5.086717210003345622e-08,5.298663760420151525e-08,5.510610310836957427e-08,5.722556861253763329e-08,5.934503411670569231e-08,6.146449962087375795e-08,6.358396512504182359e-08,6.570343062920988923e-08,6.782289613337795487e-08,6.994236163754602051e-08,7.206182714171408614e-08,7.418129264588215178e-08,7.630075815005021742e-08,7.842022365421828306e-08,8.053968915838634870e-08,8.265915466255441434e-08,8.477862016672247998e-08,8.689808567089054562e-08,8.901755117505861126e-08,9.113701667922667690e-08,9.325648218339474254e-08,9.537594768756280817e-08,9.749541319173087381e-08,9.961487869589893945e-08,1.017343442000670051e-07,1.038538097042350707e-07,1.059732752084031364e-07,1.080927407125712020e-07,1.102122062167392676e-07,1.123316717209073333e-07,1.144511372250753989e-07,1.165706027292434646e-07,1.186900682334115302e-07,1.208095337375795958e-07,1.229289992417476747e-07,1.250484647459157536e-07,1.271679302500838325e-07,1.292873957542519113e-07,1.314068612584199902e-07,1.335263267625880691e-07 +0.000000000000000000e+00,5.298208974352469505e-09,1.059641794870493901e-08,1.589462692305740769e-08,2.119283589740987471e-08,2.649104487176234173e-08,3.178925384611480876e-08,3.708746282046727578e-08,4.238567179481974280e-08,4.768388076917220983e-08,5.298208974352467685e-08,5.828029871787714387e-08,6.357850769222960428e-08,6.887671666658207130e-08,7.417492564093453832e-08,7.947313461528700535e-08,8.477134358963947237e-08,9.006955256399193939e-08,9.536776153834440642e-08,1.006659705126968734e-07,1.059641794870493405e-07,1.112623884614018075e-07,1.165605974357542745e-07,1.218588064101067415e-07,1.271570153844592086e-07,1.324552243588116756e-07,1.377534333331641426e-07,1.430516423075166096e-07,1.483498512818690766e-07,1.536480602562215437e-07,1.589462692305740107e-07,1.642444782049264777e-07,1.695426871792789447e-07,1.748408961536314118e-07,1.801391051279838788e-07,1.854373141023363458e-07,1.907355230766888128e-07,1.960337320510412799e-07,2.013319410253937469e-07,2.066301499997462139e-07,2.119283589740986809e-07,2.172265679484511480e-07,2.225247769228036150e-07,2.278229858971560820e-07,2.331211948715085490e-07,2.384194038458610160e-07,2.437176128202134831e-07,2.490158217945659501e-07,2.543140307689184171e-07,2.596122397432708841e-07,2.649104487176233512e-07,2.702086576919758182e-07,2.755068666663282852e-07,2.808050756406807522e-07,2.861032846150332193e-07,2.914014935893856863e-07,2.966997025637381533e-07,3.019979115380906203e-07,3.072961205124430873e-07,3.125943294867955544e-07,3.178925384611480214e-07,3.231907474355004884e-07,3.284889564098529554e-07,3.337871653842054225e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.294722333265694987e-10,1.258944466653138997e-09,1.888416699979708600e-09,2.517888933306278409e-09,3.147361166632848218e-09,3.776833399959418026e-09,4.406305633285987422e-09,5.035777866612556817e-09,5.665250099939126212e-09,6.294722333265695608e-09,6.924194566592265003e-09,7.553666799918834399e-09,8.183139033245403794e-09,8.812611266571973189e-09,9.442083499898542585e-09,1.007155573322511198e-08,1.070102796655168138e-08,1.133050019987825077e-08,1.195997243320482017e-08,1.258944466653138956e-08,1.321891689985795896e-08,1.384838913318452835e-08,1.447786136651109775e-08,1.510733359983766549e-08,1.573680583316423323e-08,1.636627806649080097e-08,1.699575029981736871e-08,1.762522253314393645e-08,1.825469476647050419e-08,1.888416699979707193e-08,1.951363923312363968e-08,2.014311146645020742e-08,2.077258369977677516e-08,2.140205593310334290e-08,2.203152816642991064e-08,2.266100039975647838e-08,2.329047263308304612e-08,2.391994486640961386e-08,2.454941709973618160e-08,2.517888933306274934e-08,2.580836156638931709e-08,2.643783379971588483e-08,2.706730603304245257e-08,2.769677826636902031e-08,2.832625049969558805e-08,2.895572273302215579e-08,2.958519496634872353e-08,3.021466719967529127e-08,3.084413943300186232e-08,3.147361166632843337e-08,3.210308389965500442e-08,3.273255613298157547e-08,3.336202836630814652e-08,3.399150059963471757e-08,3.462097283296128862e-08,3.525044506628785967e-08,3.587991729961443072e-08,3.650938953294100177e-08,3.713886176626757282e-08,3.776833399959414387e-08,3.839780623292071492e-08,3.902727846624728597e-08,3.965675069957385702e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055223446e-09,4.386641824110446892e-09,6.579962736165670339e-09,8.773283648220893785e-09,1.096660456027611806e-08,1.315992547233134233e-08,1.535324638438656661e-08,1.754656729644179088e-08,1.973988820849701515e-08,2.193320912055223943e-08,2.412653003260746370e-08,2.631985094466268797e-08,2.851317185671791225e-08,3.070649276877313321e-08,3.289981368082835417e-08,3.509313459288357514e-08,3.728645550493879610e-08,3.947977641699401707e-08,4.167309732904923803e-08,4.386641824110445900e-08,4.605973915315967996e-08,4.825306006521490093e-08,5.044638097727012189e-08,5.263970188932534286e-08,5.483302280138056382e-08,5.702634371343578479e-08,5.921966462549100575e-08,6.141298553754622672e-08,6.360630644960145430e-08,6.579962736165668188e-08,6.799294827371190946e-08,7.018626918576713704e-08,7.237959009782236463e-08,7.457291100987759221e-08,7.676623192193281979e-08,7.895955283398804737e-08,8.115287374604327496e-08,8.334619465809850254e-08,8.553951557015373012e-08,8.773283648220895770e-08,8.992615739426418528e-08,9.211947830631941287e-08,9.431279921837464045e-08,9.650612013042986803e-08,9.869944104248509561e-08,1.008927619545403232e-07,1.030860828665955508e-07,1.052794037786507784e-07,1.074727246907060059e-07,1.096660456027612335e-07,1.118593665148164611e-07,1.140526874268716887e-07,1.162460083389269163e-07,1.184393292509821439e-07,1.206326501630373714e-07,1.228259710750925858e-07,1.250192919871478001e-07,1.272126128992030145e-07,1.294059338112582288e-07,1.315992547233134432e-07,1.337925756353686575e-07,1.359858965474238719e-07,1.381792174594790862e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.230509586221185035e-09,4.461019172442370070e-09,6.691528758663554692e-09,8.922038344884738486e-09,1.115254793110592228e-08,1.338305751732710608e-08,1.561356710354828987e-08,1.784407668976947366e-08,2.007458627599065746e-08,2.230509586221184125e-08,2.453560544843302505e-08,2.676611503465420884e-08,2.899662462087539264e-08,3.122713420709657974e-08,3.345764379331776684e-08,3.568815337953895395e-08,3.791866296576014105e-08,4.014917255198132815e-08,4.237968213820251526e-08,4.461019172442370236e-08,4.684070131064488946e-08,4.907121089686607656e-08,5.130172048308726367e-08,5.353223006930845077e-08,5.576273965552963787e-08,5.799324924175082498e-08,6.022375882797201208e-08,6.245426841419319918e-08,6.468477800041438629e-08,6.691528758663557339e-08,6.914579717285676049e-08,7.137630675907794760e-08,7.360681634529913470e-08,7.583732593152032180e-08,7.806783551774150891e-08,8.029834510396269601e-08,8.252885469018388311e-08,8.475936427640507022e-08,8.698987386262625732e-08,8.922038344884744442e-08,9.145089303506863153e-08,9.368140262128981863e-08,9.591191220751100573e-08,9.814242179373219283e-08,1.003729313799533799e-07,1.026034409661745670e-07,1.048339505523957541e-07,1.070644601386169412e-07,1.092949697248381284e-07,1.115254793110593155e-07,1.137559888972805026e-07,1.159864984835016897e-07,1.182170080697228768e-07,1.204475176559440506e-07,1.226780272421652113e-07,1.249085368283863719e-07,1.271390464146075325e-07,1.293695560008286932e-07,1.316000655870498538e-07,1.338305751732710144e-07,1.360610847594921751e-07,1.382915943457133357e-07,1.405221039319344963e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.294722333264746832e-10,1.258944466652949366e-09,1.888416699979424050e-09,2.517888933305898733e-09,3.147361166632373416e-09,3.776833399958848099e-09,4.406305633285322369e-09,5.035777866611796638e-09,5.665250099938270908e-09,6.294722333264745177e-09,6.924194566591219447e-09,7.553666799917694544e-09,8.183139033244169640e-09,8.812611266570644737e-09,9.442083499897119834e-09,1.007155573322359493e-08,1.070102796655007003e-08,1.133050019987654512e-08,1.195997243320302022e-08,1.258944466652949532e-08,1.321891689985597041e-08,1.384838913318244551e-08,1.447786136650892061e-08,1.510733359983539570e-08,1.573680583316187080e-08,1.636627806648834590e-08,1.699575029981482099e-08,1.762522253314129609e-08,1.825469476646777119e-08,1.888416699979424629e-08,1.951363923312072138e-08,2.014311146644719648e-08,2.077258369977367158e-08,2.140205593310014667e-08,2.203152816642662177e-08,2.266100039975309687e-08,2.329047263307957196e-08,2.391994486640604706e-08,2.454941709973252216e-08,2.517888933305899725e-08,2.580836156638547235e-08,2.643783379971194745e-08,2.706730603303842254e-08,2.769677826636489764e-08,2.832625049969137274e-08,2.895572273301784783e-08,2.958519496634432293e-08,3.021466719967079803e-08,3.084413943299726981e-08,3.147361166632374160e-08,3.210308389965021339e-08,3.273255613297668518e-08,3.336202836630315697e-08,3.399150059962962876e-08,3.462097283295610054e-08,3.525044506628257233e-08,3.587991729960904412e-08,3.650938953293551591e-08,3.713886176626198770e-08,3.776833399958845948e-08,3.839780623291493127e-08,3.902727846624140306e-08,3.965675069956787485e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055008793e-09,4.386641824110017586e-09,6.579962736165025965e-09,8.773283648220033517e-09,1.096660456027504107e-08,1.315992547233004862e-08,1.535324638438505783e-08,1.754656729644006703e-08,1.973988820849507624e-08,2.193320912055008545e-08,2.412653003260509465e-08,2.631985094466010386e-08,2.851317185671511307e-08,3.070649276877012227e-08,3.289981368082513148e-08,3.509313459288014069e-08,3.728645550493514989e-08,3.947977641699015910e-08,4.167309732904516831e-08,4.386641824110017751e-08,4.605973915315518672e-08,4.825306006521019592e-08,5.044638097726520513e-08,5.263970188932021434e-08,5.483302280137522354e-08,5.702634371343023275e-08,5.921966462548524196e-08,6.141298553754025778e-08,6.360630644959527360e-08,6.579962736165028943e-08,6.799294827370530525e-08,7.018626918576032108e-08,7.237959009781533690e-08,7.457291100987035272e-08,7.676623192192536855e-08,7.895955283398038437e-08,8.115287374603540020e-08,8.334619465809041602e-08,8.553951557014543184e-08,8.773283648220044767e-08,8.992615739425546349e-08,9.211947830631047932e-08,9.431279921836549514e-08,9.650612013042051096e-08,9.869944104247552679e-08,1.008927619545305426e-07,1.030860828665855584e-07,1.052794037786405743e-07,1.074727246906955901e-07,1.096660456027506059e-07,1.118593665148056217e-07,1.140526874268606376e-07,1.162460083389156534e-07,1.184393292509706692e-07,1.206326501630256983e-07,1.228259710750807273e-07,1.250192919871357564e-07,1.272126128991907854e-07,1.294059338112458145e-07,1.315992547233008436e-07,1.337925756353558726e-07,1.359858965474109017e-07,1.381792174594659307e-07 +0.000000000000000000e+00,2.644333645645111244e-09,5.288667291290222488e-09,7.933000936935334145e-09,1.057733458258044663e-08,1.322166822822555911e-08,1.586600187387067160e-08,1.851033551951578243e-08,2.115466916516089326e-08,2.379900281080600409e-08,2.644333645645111492e-08,2.908767010209622575e-08,3.173200374774133658e-08,3.437633739338644741e-08,3.702067103903155824e-08,3.966500468467666907e-08,4.230933833032177990e-08,4.495367197596689073e-08,4.759800562161200156e-08,5.024233926725711239e-08,5.288667291290222322e-08,5.553100655854733405e-08,5.817534020419244488e-08,6.081967384983755571e-08,6.346400749548265992e-08,6.610834114112776414e-08,6.875267478677286835e-08,7.139700843241797256e-08,7.404134207806307678e-08,7.668567572370818099e-08,7.933000936935328520e-08,8.197434301499838941e-08,8.461867666064349363e-08,8.726301030628859784e-08,8.990734395193370205e-08,9.255167759757880626e-08,9.519601124322391048e-08,9.784034488886901469e-08,1.004846785345141189e-07,1.031290121801592231e-07,1.057733458258043273e-07,1.084176794714494315e-07,1.110620131170945358e-07,1.137063467627396400e-07,1.163506804083847442e-07,1.189950140540298484e-07,1.216393476996749526e-07,1.242836813453200436e-07,1.269280149909651346e-07,1.295723486366102255e-07,1.322166822822553165e-07,1.348610159279004075e-07,1.375053495735454985e-07,1.401496832191905894e-07,1.427940168648356804e-07,1.454383505104807714e-07,1.480826841561258624e-07,1.507270178017709534e-07,1.533713514474160443e-07,1.560156850930611353e-07,1.586600187387062263e-07,1.613043523843513173e-07,1.639486860299964083e-07,1.665930196756414992e-07 +0.000000000000000000e+00,3.005526085021956573e-09,6.011052170043913146e-09,9.016578255065870132e-09,1.202210434008782795e-08,1.502763042510978410e-08,1.803315651013174026e-08,2.103868259515369642e-08,2.404420868017565258e-08,2.704973476519760874e-08,3.005526085021956821e-08,3.306078693524152768e-08,3.606631302026348715e-08,3.907183910528544661e-08,4.207736519030740608e-08,4.508289127532936555e-08,4.808841736035132502e-08,5.109394344537328449e-08,5.409946953039524395e-08,5.710499561541720342e-08,6.011052170043916289e-08,6.311604778546112236e-08,6.612157387048308183e-08,6.912709995550504129e-08,7.213262604052700076e-08,7.513815212554896023e-08,7.814367821057091970e-08,8.114920429559287917e-08,8.415473038061483863e-08,8.716025646563679810e-08,9.016578255065875757e-08,9.317130863568071704e-08,9.617683472070267651e-08,9.918236080572463597e-08,1.021878868907465954e-07,1.051934129757685549e-07,1.081989390607905144e-07,1.112044651458124738e-07,1.142099912308344333e-07,1.172155173158563928e-07,1.202210434008783522e-07,1.232265694859003117e-07,1.262320955709222712e-07,1.292376216559442307e-07,1.322431477409661901e-07,1.352486738259881496e-07,1.382541999110101091e-07,1.412597259960320685e-07,1.442652520810540280e-07,1.472707781660759875e-07,1.502763042510979469e-07,1.532818303361199064e-07,1.562873564211418659e-07,1.592928825061638253e-07,1.622984085911857848e-07,1.653039346762077443e-07,1.683094607612297037e-07,1.713149868462516632e-07,1.743205129312736227e-07,1.773260390162955821e-07,1.803315651013175416e-07,1.833370911863395011e-07,1.863426172713614605e-07,1.893481433563834200e-07 +0.000000000000000000e+00,3.932875710632804218e-09,7.865751421265608436e-09,1.179862713189841265e-08,1.573150284253121687e-08,1.966437855316402275e-08,2.359725426379682862e-08,2.753012997442963449e-08,3.146300568506244036e-08,3.539588139569524624e-08,3.932875710632805211e-08,4.326163281696085798e-08,4.719450852759366385e-08,5.112738423822646973e-08,5.506025994885927560e-08,5.899313565949208147e-08,6.292601137012489396e-08,6.685888708075769983e-08,7.079176279139050571e-08,7.472463850202331158e-08,7.865751421265611745e-08,8.259038992328892332e-08,8.652326563392172920e-08,9.045614134455453507e-08,9.438901705518734094e-08,9.832189276582014681e-08,1.022547684764529527e-07,1.061876441870857586e-07,1.101205198977185644e-07,1.140533956083513703e-07,1.179862713189841762e-07,1.219191470296169820e-07,1.258520227402497879e-07,1.297848984508825938e-07,1.337177741615153997e-07,1.376506498721482055e-07,1.415835255827810114e-07,1.455164012934138173e-07,1.494492770040466232e-07,1.533821527146794290e-07,1.573150284253122349e-07,1.612479041359450408e-07,1.651807798465778466e-07,1.691136555572106525e-07,1.730465312678434584e-07,1.769794069784762643e-07,1.809122826891090701e-07,1.848451583997418760e-07,1.887780341103746819e-07,1.927109098210074878e-07,1.966437855316402936e-07,2.005766612422730995e-07,2.045095369529059054e-07,2.084424126635387112e-07,2.123752883741715171e-07,2.163081640848043230e-07,2.202410397954371289e-07,2.241739155060699347e-07,2.281067912167027406e-07,2.320396669273355465e-07,2.359725426379683524e-07,2.399054183486011582e-07,2.438382940592339641e-07,2.477711697698667700e-07 +0.000000000000000000e+00,2.644333645644668702e-09,5.288667291289337404e-09,7.933000936934005693e-09,1.057733458257867315e-08,1.322166822822334062e-08,1.586600187386800808e-08,1.851033551951267554e-08,2.115466916515734300e-08,2.379900281080201046e-08,2.644333645644667792e-08,2.908767010209134538e-08,3.173200374773600954e-08,3.437633739338067700e-08,3.702067103902534446e-08,3.966500468467001192e-08,4.230933833031467938e-08,4.495367197595934684e-08,4.759800562160401430e-08,5.024233926724868177e-08,5.288667291289334923e-08,5.553100655853801669e-08,5.817534020418268415e-08,6.081967384982735161e-08,6.346400749547201907e-08,6.610834114111668653e-08,6.875267478676135400e-08,7.139700843240602146e-08,7.404134207805068892e-08,7.668567572369535638e-08,7.933000936934002384e-08,8.197434301498469130e-08,8.461867666062935876e-08,8.726301030627402623e-08,8.990734395191869369e-08,9.255167759756336115e-08,9.519601124320802861e-08,9.784034488885269607e-08,1.004846785344973635e-07,1.031290121801420310e-07,1.057733458257866985e-07,1.084176794714313659e-07,1.110620131170760334e-07,1.137063467627207008e-07,1.163506804083653683e-07,1.189950140540100358e-07,1.216393476996547032e-07,1.242836813452993707e-07,1.269280149909440381e-07,1.295723486365887056e-07,1.322166822822333731e-07,1.348610159278780405e-07,1.375053495735227080e-07,1.401496832191673755e-07,1.427940168648120429e-07,1.454383505104567104e-07,1.480826841561013778e-07,1.507270178017460453e-07,1.533713514473907128e-07,1.560156850930353802e-07,1.586600187386800477e-07,1.613043523843247151e-07,1.639486860299693826e-07,1.665930196756140501e-07 +0.000000000000000000e+00,3.005526085021682776e-09,6.011052170043365552e-09,9.016578255065047915e-09,1.202210434008672945e-08,1.502763042510841099e-08,1.803315651013009252e-08,2.103868259515177406e-08,2.404420868017345559e-08,2.704973476519513713e-08,3.005526085021681535e-08,3.306078693523849689e-08,3.606631302026017842e-08,3.907183910528185996e-08,4.207736519030354149e-08,4.508289127532522303e-08,4.808841736034690456e-08,5.109394344536858610e-08,5.409946953039026764e-08,5.710499561541194917e-08,6.011052170043363071e-08,6.311604778545531224e-08,6.612157387047699378e-08,6.912709995549867531e-08,7.213262604052035685e-08,7.513815212554203838e-08,7.814367821056371992e-08,8.114920429558540145e-08,8.415473038060708299e-08,8.716025646562876452e-08,9.016578255065044606e-08,9.317130863567212759e-08,9.617683472069380913e-08,9.918236080571549066e-08,1.021878868907371722e-07,1.051934129757588537e-07,1.081989390607805353e-07,1.112044651458022168e-07,1.142099912308238983e-07,1.172155173158455799e-07,1.202210434008672614e-07,1.232265694858889297e-07,1.262320955709105980e-07,1.292376216559322663e-07,1.322431477409539346e-07,1.352486738259756029e-07,1.382541999109972712e-07,1.412597259960189395e-07,1.442652520810406078e-07,1.472707781660622761e-07,1.502763042510839444e-07,1.532818303361056127e-07,1.562873564211272810e-07,1.592928825061489493e-07,1.622984085911706176e-07,1.653039346761922859e-07,1.683094607612139542e-07,1.713149868462356225e-07,1.743205129312572908e-07,1.773260390162789591e-07,1.803315651013006274e-07,1.833370911863222957e-07,1.863426172713439640e-07,1.893481433563656323e-07 +0.000000000000000000e+00,3.932875710631742118e-09,7.865751421263484237e-09,1.179862713189522635e-08,1.573150284252696847e-08,1.966437855315870894e-08,2.359725426379044940e-08,2.753012997442218986e-08,3.146300568505393033e-08,3.539588139568567079e-08,3.932875710631741126e-08,4.326163281694915172e-08,4.719450852758089218e-08,5.112738423821263265e-08,5.506025994884437311e-08,5.899313565947611358e-08,6.292601137010784742e-08,6.685888708073958127e-08,7.079176279137131512e-08,7.472463850200304896e-08,7.865751421263478281e-08,8.259038992326651666e-08,8.652326563389825050e-08,9.045614134452998435e-08,9.438901705516171819e-08,9.832189276579345204e-08,1.022547684764251859e-07,1.061876441870569197e-07,1.101205198976886536e-07,1.140533956083203874e-07,1.179862713189521213e-07,1.219191470295838419e-07,1.258520227402155625e-07,1.297848984508472831e-07,1.337177741614790037e-07,1.376506498721107243e-07,1.415835255827424449e-07,1.455164012933741656e-07,1.494492770040058862e-07,1.533821527146376068e-07,1.573150284252693274e-07,1.612479041359010480e-07,1.651807798465327686e-07,1.691136555571644892e-07,1.730465312677962098e-07,1.769794069784279304e-07,1.809122826890596511e-07,1.848451583996913717e-07,1.887780341103230923e-07,1.927109098209548129e-07,1.966437855315865335e-07,2.005766612422182541e-07,2.045095369528499747e-07,2.084424126634816953e-07,2.123752883741134160e-07,2.163081640847451366e-07,2.202410397953768572e-07,2.241739155060085778e-07,2.281067912166402984e-07,2.320396669272720190e-07,2.359725426379037396e-07,2.399054183485354602e-07,2.438382940591671544e-07,2.477711697697988485e-07 +0.000000000000000000e+00,1.913210363563192783e-09,3.826420727126385566e-09,5.739631090689577935e-09,7.652841454252769477e-09,9.566051817815961019e-09,1.147926218137915256e-08,1.339247254494234410e-08,1.530568290850553564e-08,1.721889327206872884e-08,1.913210363563192204e-08,2.104531399919511523e-08,2.295852436275830843e-08,2.487173472632150163e-08,2.678494508988469482e-08,2.869815545344788802e-08,3.061136581701107791e-08,3.252457618057426780e-08,3.443778654413745768e-08,3.635099690770064757e-08,3.826420727126383746e-08,4.017741763482702735e-08,4.209062799839021723e-08,4.400383836195340712e-08,4.591704872551659701e-08,4.783025908907978690e-08,4.974346945264297678e-08,5.165667981620616667e-08,5.356989017976935656e-08,5.548310054333254645e-08,5.739631090689573633e-08,5.930952127045892622e-08,6.122273163402211611e-08,6.313594199758531262e-08,6.504915236114850912e-08,6.696236272471170563e-08,6.887557308827490213e-08,7.078878345183809864e-08,7.270199381540129514e-08,7.461520417896449165e-08,7.652841454252768815e-08,7.844162490609088466e-08,8.035483526965408116e-08,8.226804563321727767e-08,8.418125599678047417e-08,8.609446636034367068e-08,8.800767672390686718e-08,8.992088708747006369e-08,9.183409745103326019e-08,9.374730781459645670e-08,9.566051817815965320e-08,9.757372854172284971e-08,9.948693890528604621e-08,1.014001492688492427e-07,1.033133596324124392e-07,1.052265699959756357e-07,1.071397803595388322e-07,1.090529907231020287e-07,1.109662010866652252e-07,1.128794114502284217e-07,1.147926218137916183e-07,1.167058321773548148e-07,1.186190425409180113e-07,1.205322529044812078e-07 +0.000000000000000000e+00,2.276980632188132027e-09,4.553961264376264055e-09,6.830941896564396082e-09,9.107922528752528109e-09,1.138490316094066014e-08,1.366188379312879216e-08,1.593886442531692585e-08,1.821584505750505953e-08,2.049282568969319321e-08,2.276980632188132689e-08,2.504678695406946057e-08,2.732376758625759425e-08,2.960074821844572794e-08,3.187772885063386493e-08,3.415470948282200192e-08,3.643169011501013891e-08,3.870867074719827590e-08,4.098565137938641289e-08,4.326263201157454988e-08,4.553961264376268687e-08,4.781659327595082386e-08,5.009357390813896085e-08,5.237055454032709784e-08,5.464753517251523483e-08,5.692451580470337182e-08,5.920149643689150881e-08,6.147847706907963918e-08,6.375545770126776956e-08,6.603243833345589993e-08,6.830941896564403030e-08,7.058639959783216068e-08,7.286338023002029105e-08,7.514036086220842142e-08,7.741734149439655179e-08,7.969432212658468217e-08,8.197130275877281254e-08,8.424828339096094291e-08,8.652526402314907329e-08,8.880224465533720366e-08,9.107922528752533403e-08,9.335620591971346441e-08,9.563318655190159478e-08,9.791016718408972515e-08,1.001871478162778555e-07,1.024641284484659859e-07,1.047411090806541163e-07,1.070180897128422466e-07,1.092950703450303770e-07,1.115720509772185074e-07,1.138490316094066378e-07,1.161260122415947681e-07,1.184029928737828985e-07,1.206799735059710289e-07,1.229569541381591725e-07,1.252339347703473161e-07,1.275109154025354597e-07,1.297878960347236033e-07,1.320648766669117469e-07,1.343418572990998905e-07,1.366188379312880341e-07,1.388958185634761777e-07,1.411727991956643214e-07,1.434497798278524650e-07 +0.000000000000000000e+00,2.918693885280210138e-09,5.837387770560420277e-09,8.756081655840630829e-09,1.167477554112084221e-08,1.459346942640105359e-08,1.751216331168126497e-08,2.043085719696147469e-08,2.334955108224168442e-08,2.626824496752189414e-08,2.918693885280210387e-08,3.210563273808231359e-08,3.502432662336252332e-08,3.794302050864273304e-08,4.086171439392294276e-08,4.378040827920315249e-08,4.669910216448336221e-08,4.961779604976357194e-08,5.253648993504378166e-08,5.545518382032399139e-08,5.837387770560420111e-08,6.129257159088441084e-08,6.421126547616462718e-08,6.712995936144484352e-08,7.004865324672505987e-08,7.296734713200527621e-08,7.588604101728549255e-08,7.880473490256570889e-08,8.172342878784592523e-08,8.464212267312614158e-08,8.756081655840635792e-08,9.047951044368657426e-08,9.339820432896679060e-08,9.631689821424700695e-08,9.923559209952722329e-08,1.021542859848074396e-07,1.050729798700876560e-07,1.079916737553678723e-07,1.109103676406480887e-07,1.138290615259283050e-07,1.167477554112085213e-07,1.196664492964887377e-07,1.225851431817689540e-07,1.255038370670491704e-07,1.284225309523293867e-07,1.313412248376096031e-07,1.342599187228898194e-07,1.371786126081700357e-07,1.400973064934502521e-07,1.430160003787304684e-07,1.459346942640106848e-07,1.488533881492909011e-07,1.517720820345711174e-07,1.546907759198513338e-07,1.576094698051315501e-07,1.605281636904117665e-07,1.634468575756919828e-07,1.663655514609721992e-07,1.692842453462524155e-07,1.722029392315326318e-07,1.751216331168128482e-07,1.780403270020930645e-07,1.809590208873732809e-07,1.838777147726534972e-07 +0.000000000000000000e+00,1.913210363562623269e-09,3.826420727125246538e-09,5.739631090687869807e-09,7.652841454250493076e-09,9.566051817813117172e-09,1.147926218137574127e-08,1.339247254493836536e-08,1.530568290850098946e-08,1.721889327206361356e-08,1.913210363562623765e-08,2.104531399918886175e-08,2.295852436275148584e-08,2.487173472631410994e-08,2.678494508987673404e-08,2.869815545343935813e-08,3.061136581700198554e-08,3.252457618056461294e-08,3.443778654412724035e-08,3.635099690768986775e-08,3.826420727125249516e-08,4.017741763481512256e-08,4.209062799837774997e-08,4.400383836194037737e-08,4.591704872550300478e-08,4.783025908906563218e-08,4.974346945262825959e-08,5.165667981619088699e-08,5.356989017975351440e-08,5.548310054331614180e-08,5.739631090687876921e-08,5.930952127044139661e-08,6.122273163400402402e-08,6.313594199756665142e-08,6.504915236112927883e-08,6.696236272469190623e-08,6.887557308825453364e-08,7.078878345181716104e-08,7.270199381537978844e-08,7.461520417894241585e-08,7.652841454250504325e-08,7.844162490606767066e-08,8.035483526963029806e-08,8.226804563319292547e-08,8.418125599675555287e-08,8.609446636031818028e-08,8.800767672388080768e-08,8.992088708744343509e-08,9.183409745100606249e-08,9.374730781456868990e-08,9.566051817813131730e-08,9.757372854169394471e-08,9.948693890525657211e-08,1.014001492688191995e-07,1.033133596323818269e-07,1.052265699959444543e-07,1.071397803595070817e-07,1.090529907230697091e-07,1.109662010866323365e-07,1.128794114501949639e-07,1.147926218137575914e-07,1.167058321773202188e-07,1.186190425408828462e-07,1.205322529044454736e-07 +0.000000000000000000e+00,2.276980632187600977e-09,4.553961264375201955e-09,6.830941896562802932e-09,9.107922528750403909e-09,1.138490316093800489e-08,1.366188379312560586e-08,1.593886442531320684e-08,1.821584505750080782e-08,2.049282568968840880e-08,2.276980632187600977e-08,2.504678695406361075e-08,2.732376758625121173e-08,2.960074821843881271e-08,3.187772885062641368e-08,3.415470948281401466e-08,3.643169011500161564e-08,3.870867074718921662e-08,4.098565137937681759e-08,4.326263201156441857e-08,4.553961264375201955e-08,4.781659327593962052e-08,5.009357390812722150e-08,5.237055454031482248e-08,5.464753517250242346e-08,5.692451580469002443e-08,5.920149643687762541e-08,6.147847706906522639e-08,6.375545770125282737e-08,6.603243833344042834e-08,6.830941896562802932e-08,7.058639959781563030e-08,7.286338023000323128e-08,7.514036086219083225e-08,7.741734149437843323e-08,7.969432212656603421e-08,8.197130275875363519e-08,8.424828339094123616e-08,8.652526402312883714e-08,8.880224465531643812e-08,9.107922528750403909e-08,9.335620591969164007e-08,9.563318655187924105e-08,9.791016718406684203e-08,1.001871478162544430e-07,1.024641284484420440e-07,1.047411090806296450e-07,1.070180897128172459e-07,1.092950703450048469e-07,1.115720509771924479e-07,1.138490316093800489e-07,1.161260122415676498e-07,1.184029928737552508e-07,1.206799735059428386e-07,1.229569541381304263e-07,1.252339347703180141e-07,1.275109154025056018e-07,1.297878960346931895e-07,1.320648766668807773e-07,1.343418572990683650e-07,1.366188379312559528e-07,1.388958185634435405e-07,1.411727991956311282e-07,1.434497798278187160e-07 +0.000000000000000000e+00,2.918693885278808894e-09,5.837387770557617789e-09,8.756081655836427097e-09,1.167477554111523723e-08,1.459346942639404737e-08,1.751216331167285750e-08,2.043085719695166764e-08,2.334955108223047777e-08,2.626824496750928791e-08,2.918693885278809804e-08,3.210563273806690818e-08,3.502432662334572162e-08,3.794302050862453507e-08,4.086171439390334851e-08,4.378040827918216195e-08,4.669910216446097540e-08,4.961779604973978884e-08,5.253648993501860229e-08,5.545518382029741573e-08,5.837387770557622917e-08,6.129257159085504262e-08,6.421126547613385606e-08,6.712995936141266951e-08,7.004865324669148295e-08,7.296734713197029639e-08,7.588604101724910984e-08,7.880473490252792328e-08,8.172342878780673673e-08,8.464212267308555017e-08,8.756081655836436361e-08,9.047951044364317706e-08,9.339820432892199050e-08,9.631689821420080395e-08,9.923559209947961739e-08,1.021542859847584308e-07,1.050729798700372443e-07,1.079916737553160577e-07,1.109103676405948712e-07,1.138290615258736846e-07,1.167477554111524981e-07,1.196664492964312983e-07,1.225851431817101117e-07,1.255038370669889252e-07,1.284225309522677386e-07,1.313412248375465520e-07,1.342599187228253655e-07,1.371786126081041789e-07,1.400973064933829924e-07,1.430160003786618058e-07,1.459346942639406193e-07,1.488533881492194327e-07,1.517720820344982461e-07,1.546907759197770596e-07,1.576094698050558730e-07,1.605281636903346865e-07,1.634468575756134999e-07,1.663655514608923134e-07,1.692842453461711268e-07,1.722029392314499403e-07,1.751216331167287537e-07,1.780403270020075671e-07,1.809590208872863806e-07,1.838777147725651940e-07 +0.000000000000000000e+00,1.187870811537857224e-09,2.375741623075714447e-09,3.563612434613571464e-09,4.751483246151428067e-09,5.939354057689284670e-09,7.127224869227141273e-09,8.315095680764997876e-09,9.502966492302854479e-09,1.069083730384071108e-08,1.187870811537856769e-08,1.306657892691642429e-08,1.425444973845428089e-08,1.544232054999213750e-08,1.663019136152999575e-08,1.781806217306785401e-08,1.900593298460571227e-08,2.019380379614357053e-08,2.138167460768142878e-08,2.256954541921928704e-08,2.375741623075714530e-08,2.494528704229500356e-08,2.613315785383286181e-08,2.732102866537072007e-08,2.850889947690857833e-08,2.969677028844643659e-08,3.088464109998429484e-08,3.207251191152215641e-08,3.326038272306001797e-08,3.444825353459787954e-08,3.563612434613574111e-08,3.682399515767360267e-08,3.801186596921146424e-08,3.919973678074932581e-08,4.038760759228718737e-08,4.157547840382504894e-08,4.276334921536291050e-08,4.395122002690077207e-08,4.513909083843863364e-08,4.632696164997649520e-08,4.751483246151435677e-08,4.870270327305221834e-08,4.989057408459007990e-08,5.107844489612794147e-08,5.226631570766580303e-08,5.345418651920366460e-08,5.464205733074152617e-08,5.582992814227938773e-08,5.701779895381724930e-08,5.820566976535511087e-08,5.939354057689297243e-08,6.058141138843083400e-08,6.176928219996869556e-08,6.295715301150655713e-08,6.414502382304441870e-08,6.533289463458228026e-08,6.652076544612014183e-08,6.770863625765800340e-08,6.889650706919586496e-08,7.008437788073372653e-08,7.127224869227158809e-08,7.246011950380944966e-08,7.364799031534731123e-08,7.483586112688517279e-08 +0.000000000000000000e+00,1.544364335744167048e-09,3.088728671488334096e-09,4.633093007232500730e-09,6.177457342976667364e-09,7.721821678720833999e-09,9.266186014465001460e-09,1.081055035020916892e-08,1.235491468595333638e-08,1.389927902169750384e-08,1.544364335744167131e-08,1.698800769318583877e-08,1.853237202893000623e-08,2.007673636467417369e-08,2.162110070041834115e-08,2.316546503616250861e-08,2.470982937190667608e-08,2.625419370765084354e-08,2.779855804339501100e-08,2.934292237913917846e-08,3.088728671488334923e-08,3.243165105062751669e-08,3.397601538637168415e-08,3.552037972211585161e-08,3.706474405786001908e-08,3.860910839360418654e-08,4.015347272934835400e-08,4.169783706509252146e-08,4.324220140083668892e-08,4.478656573658085638e-08,4.633093007232502385e-08,4.787529440806919131e-08,4.941965874381335877e-08,5.096402307955752623e-08,5.250838741530169369e-08,5.405275175104586115e-08,5.559711608679002861e-08,5.714148042253419608e-08,5.868584475827836354e-08,6.023020909402253100e-08,6.177457342976669846e-08,6.331893776551086592e-08,6.486330210125503338e-08,6.640766643699920084e-08,6.795203077274336831e-08,6.949639510848753577e-08,7.104075944423170323e-08,7.258512377997587069e-08,7.412948811572003815e-08,7.567385245146420561e-08,7.721821678720837308e-08,7.876258112295254054e-08,8.030694545869670800e-08,8.185130979444087546e-08,8.339567413018504292e-08,8.494003846592921038e-08,8.648440280167337784e-08,8.802876713741754531e-08,8.957313147316171277e-08,9.111749580890588023e-08,9.266186014465004769e-08,9.420622448039421515e-08,9.575058881613838261e-08,9.729495315188255007e-08 +0.000000000000000000e+00,1.886330231068244235e-09,3.772660462136488470e-09,5.658990693204732705e-09,7.545320924272976941e-09,9.431651155341221176e-09,1.131798138640946541e-08,1.320431161747770965e-08,1.509064184854595388e-08,1.697697207961419977e-08,1.886330231068244566e-08,2.074963254175069155e-08,2.263596277281893744e-08,2.452229300388718333e-08,2.640862323495542922e-08,2.829495346602367511e-08,3.018128369709192100e-08,3.206761392816016689e-08,3.395394415922841278e-08,3.584027439029665867e-08,3.772660462136490456e-08,3.961293485243315044e-08,4.149926508350139633e-08,4.338559531456964222e-08,4.527192554563788811e-08,4.715825577670613400e-08,4.904458600777437989e-08,5.093091623884262578e-08,5.281724646991087167e-08,5.470357670097911756e-08,5.658990693204736345e-08,5.847623716311560934e-08,6.036256739418385523e-08,6.224889762525210112e-08,6.413522785632034701e-08,6.602155808738859290e-08,6.790788831845683879e-08,6.979421854952508468e-08,7.168054878059333057e-08,7.356687901166157646e-08,7.545320924272982235e-08,7.733953947379806823e-08,7.922586970486631412e-08,8.111219993593456001e-08,8.299853016700280590e-08,8.488486039807105179e-08,8.677119062913929768e-08,8.865752086020754357e-08,9.054385109127578946e-08,9.243018132234403535e-08,9.431651155341228124e-08,9.620284178448052713e-08,9.808917201554877302e-08,9.997550224661701891e-08,1.018618324776852648e-07,1.037481627087535107e-07,1.056344929398217566e-07,1.075208231708900025e-07,1.094071534019582484e-07,1.112934836330264942e-07,1.131798138640947401e-07,1.150661440951629860e-07,1.169524743262312319e-07,1.188388045572994778e-07 +0.000000000000000000e+00,1.187870811537390487e-09,2.375741623074780974e-09,3.563612434612171461e-09,4.751483246149561947e-09,5.939354057686952021e-09,7.127224869224342094e-09,8.315095680761732167e-09,9.502966492299122241e-09,1.069083730383651231e-08,1.187870811537390239e-08,1.306657892691129246e-08,1.425444973844868253e-08,1.544232054998607261e-08,1.663019136152346433e-08,1.781806217306085606e-08,1.900593298459824779e-08,2.019380379613563952e-08,2.138167460767303124e-08,2.256954541921042297e-08,2.375741623074781470e-08,2.494528704228520643e-08,2.613315785382259816e-08,2.732102866535998988e-08,2.850889947689738161e-08,2.969677028843477334e-08,3.088464109997216507e-08,3.207251191150955679e-08,3.326038272304694852e-08,3.444825353458434025e-08,3.563612434612173198e-08,3.682399515765912370e-08,3.801186596919651543e-08,3.919973678073390716e-08,4.038760759227129889e-08,4.157547840380869061e-08,4.276334921534608234e-08,4.395122002688347407e-08,4.513909083842086580e-08,4.632696164995825753e-08,4.751483246149564925e-08,4.870270327303304098e-08,4.989057408457043271e-08,5.107844489610782444e-08,5.226631570764521616e-08,5.345418651918260789e-08,5.464205733071999962e-08,5.582992814225739135e-08,5.701779895379478307e-08,5.820566976533217480e-08,5.939354057686956653e-08,6.058141138840695826e-08,6.176928219994434337e-08,6.295715301148172848e-08,6.414502382301911359e-08,6.533289463455649870e-08,6.652076544609388381e-08,6.770863625763126892e-08,6.889650706916865403e-08,7.008437788070603914e-08,7.127224869224342425e-08,7.246011950378080936e-08,7.364799031531819447e-08,7.483586112685557958e-08 +0.000000000000000000e+00,1.544364335743674048e-09,3.088728671487348097e-09,4.633093007231021731e-09,6.177457342974695366e-09,7.721821678718369001e-09,9.266186014462043462e-09,1.081055035020571792e-08,1.235491468594939239e-08,1.389927902169306685e-08,1.544364335743674131e-08,1.698800769318041577e-08,1.853237202892409023e-08,2.007673636466776470e-08,2.162110070041143916e-08,2.316546503615511362e-08,2.470982937189878808e-08,2.625419370764246254e-08,2.779855804338613700e-08,2.934292237912981147e-08,3.088728671487348924e-08,3.243165105061716701e-08,3.397601538636084478e-08,3.552037972210452255e-08,3.706474405784820032e-08,3.860910839359187809e-08,4.015347272933555586e-08,4.169783706507923363e-08,4.324220140082291140e-08,4.478656573656658917e-08,4.633093007231026694e-08,4.787529440805394471e-08,4.941965874379762248e-08,5.096402307954130025e-08,5.250838741528497803e-08,5.405275175102865580e-08,5.559711608677233357e-08,5.714148042251601134e-08,5.868584475825968911e-08,6.023020909400336688e-08,6.177457342974704465e-08,6.331893776549072242e-08,6.486330210123440019e-08,6.640766643697807796e-08,6.795203077272175573e-08,6.949639510846543350e-08,7.104075944420911127e-08,7.258512377995278904e-08,7.412948811569646681e-08,7.567385245144014458e-08,7.721821678718382235e-08,7.876258112292750013e-08,8.030694545867117790e-08,8.185130979441485567e-08,8.339567413015853344e-08,8.494003846590221121e-08,8.648440280164588898e-08,8.802876713738956675e-08,8.957313147313324452e-08,9.111749580887692229e-08,9.266186014462060006e-08,9.420622448036427783e-08,9.575058881610795560e-08,9.729495315185163337e-08 +0.000000000000000000e+00,1.886330231067251618e-09,3.772660462134503237e-09,5.658990693201754855e-09,7.545320924269006474e-09,9.431651155336258092e-09,1.131798138640350971e-08,1.320431161747076133e-08,1.509064184853801295e-08,1.697697207960526622e-08,1.886330231067251949e-08,2.074963254173977277e-08,2.263596277280702604e-08,2.452229300387427931e-08,2.640862323494153258e-08,2.829495346600878586e-08,3.018128369707603913e-08,3.206761392814329240e-08,3.395394415921054567e-08,3.584027439027779895e-08,3.772660462134505222e-08,3.961293485241230549e-08,4.149926508347955877e-08,4.338559531454681204e-08,4.527192554561406531e-08,4.715825577668131858e-08,4.904458600774857186e-08,5.093091623881582513e-08,5.281724646988307840e-08,5.470357670095033168e-08,5.658990693201758495e-08,5.847623716308483822e-08,6.036256739415209149e-08,6.224889762521934477e-08,6.413522785628659804e-08,6.602155808735385131e-08,6.790788831842110458e-08,6.979421854948835786e-08,7.168054878055561113e-08,7.356687901162286440e-08,7.545320924269011768e-08,7.733953947375737095e-08,7.922586970482462422e-08,8.111219993589187749e-08,8.299853016695913077e-08,8.488486039802638404e-08,8.677119062909363731e-08,8.865752086016089058e-08,9.054385109122814386e-08,9.243018132229539713e-08,9.431651155336265040e-08,9.620284178442990368e-08,9.808917201549715695e-08,9.997550224656441022e-08,1.018618324776316635e-07,1.037481627086989168e-07,1.056344929397661700e-07,1.075208231708334233e-07,1.094071534019006766e-07,1.112934836329679299e-07,1.131798138640351831e-07,1.150661440951024364e-07,1.169524743261696897e-07,1.188388045572369429e-07 +0.000000000000000000e+00,5.285333045111366434e-10,1.057066609022273287e-09,1.585599913533409930e-09,2.114133218044546574e-09,2.642666522555683010e-09,3.171199827066819447e-09,3.699733131577955883e-09,4.228266436089092320e-09,4.756799740600228757e-09,5.285333045111365193e-09,5.813866349622501630e-09,6.342399654133638066e-09,6.870932958644774503e-09,7.399466263155910940e-09,7.927999567667048203e-09,8.456532872178186294e-09,8.985066176689324385e-09,9.513599481200462476e-09,1.004213278571160057e-08,1.057066609022273866e-08,1.109919939473387675e-08,1.162773269924501484e-08,1.215626600375615293e-08,1.268479930826729102e-08,1.321333261277842911e-08,1.374186591728956720e-08,1.427039922180070530e-08,1.479893252631184339e-08,1.532746583082298148e-08,1.585599913533411957e-08,1.638453243984525766e-08,1.691306574435639575e-08,1.744159904886753384e-08,1.797013235337867193e-08,1.849866565788981002e-08,1.902719896240094811e-08,1.955573226691208620e-08,2.008426557142322430e-08,2.061279887593436239e-08,2.114133218044550048e-08,2.166986548495663857e-08,2.219839878946777666e-08,2.272693209397891475e-08,2.325546539849005284e-08,2.378399870300119093e-08,2.431253200751232902e-08,2.484106531202346711e-08,2.536959861653460521e-08,2.589813192104574330e-08,2.642666522555688139e-08,2.695519853006801948e-08,2.748373183457915757e-08,2.801226513909029566e-08,2.854079844360143375e-08,2.906933174811257184e-08,2.959786505262370993e-08,3.012639835713484802e-08,3.065493166164598942e-08,3.118346496615713082e-08,3.171199827066827222e-08,3.224053157517941362e-08,3.276906487969055502e-08,3.329759818420169642e-08 +0.000000000000000000e+00,8.498432584850813451e-10,1.699686516970162690e-09,2.549529775455244139e-09,3.399373033940325794e-09,4.249216292425407863e-09,5.099059550910489932e-09,5.948902809395572001e-09,6.798746067880654070e-09,7.648589326365736138e-09,8.498432584850819034e-09,9.348275843335901931e-09,1.019811910182098483e-08,1.104796236030606772e-08,1.189780561879115062e-08,1.274764887727623351e-08,1.359749213576131641e-08,1.444733539424639931e-08,1.529717865273148220e-08,1.614702191121656675e-08,1.699686516970165130e-08,1.784670842818673585e-08,1.869655168667182040e-08,1.954639494515690496e-08,2.039623820364198951e-08,2.124608146212707406e-08,2.209592472061215861e-08,2.294576797909724316e-08,2.379561123758232771e-08,2.464545449606741226e-08,2.549529775455249681e-08,2.634514101303758136e-08,2.719498427152266591e-08,2.804482753000775046e-08,2.889467078849283501e-08,2.974451404697791956e-08,3.059435730546300411e-08,3.144420056394808866e-08,3.229404382243317321e-08,3.314388708091825776e-08,3.399373033940334231e-08,3.484357359788842686e-08,3.569341685637351141e-08,3.654326011485859596e-08,3.739310337334368051e-08,3.824294663182876506e-08,3.909278989031384961e-08,3.994263314879893417e-08,4.079247640728401872e-08,4.164231966576910327e-08,4.249216292425418782e-08,4.334200618273927237e-08,4.419184944122435692e-08,4.504169269970944147e-08,4.589153595819452602e-08,4.674137921667961057e-08,4.759122247516469512e-08,4.844106573364977967e-08,4.929090899213486422e-08,5.014075225061994877e-08,5.099059550910503332e-08,5.184043876759011787e-08,5.269028202607520242e-08,5.354012528456028697e-08 +0.000000000000000000e+00,8.832056515533811378e-10,1.766411303106762276e-09,2.649616954660143310e-09,3.532822606213524138e-09,4.416028257766904552e-09,5.299233909320284966e-09,6.182439560873665380e-09,7.065645212427045794e-09,7.948850863980426208e-09,8.832056515533805795e-09,9.715262167087185382e-09,1.059846781864056497e-08,1.148167347019394456e-08,1.236487912174732414e-08,1.324808477330070373e-08,1.413129042485408332e-08,1.501449607640746456e-08,1.589770172796084580e-08,1.678090737951422704e-08,1.766411303106760828e-08,1.854731868262098952e-08,1.943052433417437076e-08,2.031372998572775200e-08,2.119693563728113325e-08,2.208014128883451449e-08,2.296334694038789573e-08,2.384655259194127697e-08,2.472975824349465821e-08,2.561296389504803945e-08,2.649616954660142069e-08,2.737937519815480193e-08,2.826258084970818318e-08,2.914578650126156442e-08,3.002899215281494235e-08,3.091219780436832028e-08,3.179540345592169821e-08,3.267860910747507615e-08,3.356181475902845408e-08,3.444502041058183201e-08,3.532822606213520995e-08,3.621143171368858788e-08,3.709463736524196581e-08,3.797784301679534374e-08,3.886104866834872168e-08,3.974425431990209961e-08,4.062745997145547754e-08,4.151066562300885547e-08,4.239387127456223341e-08,4.327707692611561134e-08,4.416028257766898927e-08,4.504348822922236720e-08,4.592669388077574514e-08,4.680989953232912307e-08,4.769310518388250100e-08,4.857631083543587893e-08,4.945951648698925687e-08,5.034272213854263480e-08,5.122592779009601273e-08,5.210913344164939066e-08,5.299233909320276860e-08,5.387554474475614653e-08,5.475875039630952446e-08,5.564195604786290239e-08 +0.000000000000000000e+00,5.285333045109093755e-10,1.057066609021818751e-09,1.585599913532728127e-09,2.114133218043637502e-09,2.642666522554546878e-09,3.171199827065456253e-09,3.699733131576365629e-09,4.228266436087275004e-09,4.756799740598184793e-09,5.285333045109094582e-09,5.813866349620004372e-09,6.342399654130914161e-09,6.870932958641823950e-09,7.399466263152733739e-09,7.927999567663643528e-09,8.456532872174553317e-09,8.985066176685463106e-09,9.513599481196372895e-09,1.004213278570728268e-08,1.057066609021819247e-08,1.109919939472910226e-08,1.162773269924001205e-08,1.215626600375092184e-08,1.268479930826183163e-08,1.321333261277274142e-08,1.374186591728365121e-08,1.427039922179456100e-08,1.479893252630547079e-08,1.532746583081638058e-08,1.585599913532729036e-08,1.638453243983820015e-08,1.691306574434910994e-08,1.744159904886001973e-08,1.797013235337092952e-08,1.849866565788183931e-08,1.902719896239274910e-08,1.955573226690365889e-08,2.008426557141456868e-08,2.061279887592547847e-08,2.114133218043638826e-08,2.166986548494729805e-08,2.219839878945820783e-08,2.272693209396911762e-08,2.325546539848002741e-08,2.378399870299093720e-08,2.431253200750184699e-08,2.484106531201275678e-08,2.536959861652366657e-08,2.589813192103457636e-08,2.642666522554548615e-08,2.695519853005639594e-08,2.748373183456730573e-08,2.801226513907821551e-08,2.854079844358912530e-08,2.906933174810003509e-08,2.959786505261094488e-08,3.012639835712185136e-08,3.065493166163275453e-08,3.118346496614365771e-08,3.171199827065456088e-08,3.224053157516546405e-08,3.276906487967636722e-08,3.329759818418727039e-08 +0.000000000000000000e+00,8.498432584847479913e-10,1.699686516969495983e-09,2.549529775454244077e-09,3.399373033938992379e-09,4.249216292423740267e-09,5.099059550908488155e-09,5.948902809393236043e-09,6.798746067877983931e-09,7.648589326362731818e-09,8.498432584847480534e-09,9.348275843332229249e-09,1.019811910181697796e-08,1.104796236030172668e-08,1.189780561878647539e-08,1.274764887727122411e-08,1.359749213575597282e-08,1.444733539424072154e-08,1.529717865272547025e-08,1.614702191121022062e-08,1.699686516969497099e-08,1.784670842817972136e-08,1.869655168666447173e-08,1.954639494514922210e-08,2.039623820363397247e-08,2.124608146211872284e-08,2.209592472060347321e-08,2.294576797908822358e-08,2.379561123757297395e-08,2.464545449605772432e-08,2.549529775454247469e-08,2.634514101302722506e-08,2.719498427151197543e-08,2.804482752999672580e-08,2.889467078848147617e-08,2.974451404696622654e-08,3.059435730545097360e-08,3.144420056393572066e-08,3.229404382242046772e-08,3.314388708090521478e-08,3.399373033938996184e-08,3.484357359787470890e-08,3.569341685635945596e-08,3.654326011484420302e-08,3.739310337332895008e-08,3.824294663181369714e-08,3.909278989029844420e-08,3.994263314878319126e-08,4.079247640726793832e-08,4.164231966575268539e-08,4.249216292423743245e-08,4.334200618272217951e-08,4.419184944120692657e-08,4.504169269969167363e-08,4.589153595817642069e-08,4.674137921666116775e-08,4.759122247514591481e-08,4.844106573363066187e-08,4.929090899211540893e-08,5.014075225060015599e-08,5.099059550908490305e-08,5.184043876756965011e-08,5.269028202605439717e-08,5.354012528453914424e-08 +0.000000000000000000e+00,8.832056515530342390e-10,1.766411303106068478e-09,2.649616954659102717e-09,3.532822606212136956e-09,4.416028257765170781e-09,5.299233909318204607e-09,6.182439560871238432e-09,7.065645212424272257e-09,7.948850863977306083e-09,8.832056515530339908e-09,9.715262167083373734e-09,1.059846781863640756e-08,1.148167347018944138e-08,1.236487912174247521e-08,1.324808477329550904e-08,1.413129042484854286e-08,1.501449607640157503e-08,1.589770172795460886e-08,1.678090737950764268e-08,1.766411303106067651e-08,1.854731868261371033e-08,1.943052433416674416e-08,2.031372998571977798e-08,2.119693563727281181e-08,2.208014128882584563e-08,2.296334694037887946e-08,2.384655259193191329e-08,2.472975824348494711e-08,2.561296389503798094e-08,2.649616954659101476e-08,2.737937519814404859e-08,2.826258084969708241e-08,2.914578650125011624e-08,3.002899215280315006e-08,3.091219780435618389e-08,3.179540345590921771e-08,3.267860910746225154e-08,3.356181475901528536e-08,3.444502041056831919e-08,3.532822606212135302e-08,3.621143171367438684e-08,3.709463736522742067e-08,3.797784301678045449e-08,3.886104866833348832e-08,3.974425431988652214e-08,4.062745997143955597e-08,4.151066562299258979e-08,4.239387127454562362e-08,4.327707692609865744e-08,4.416028257765169127e-08,4.504348822920472509e-08,4.592669388075775892e-08,4.680989953231079275e-08,4.769310518386382657e-08,4.857631083541686040e-08,4.945951648696989422e-08,5.034272213852292805e-08,5.122592779007596187e-08,5.210913344162899570e-08,5.299233909318202952e-08,5.387554474473506335e-08,5.475875039628809717e-08,5.564195604784113100e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657546601016e-10,5.111155315093202031e-10,7.666732972639803047e-10,1.022231063018640406e-09,1.277788828773300611e-09,1.533346594527960816e-09,1.788904360282621021e-09,2.044462126037281226e-09,2.300019891791941431e-09,2.555577657546601636e-09,2.811135423301261841e-09,3.066693189055922046e-09,3.322250954810582251e-09,3.577808720565242456e-09,3.833366486319903074e-09,4.088924252074563279e-09,4.344482017829223484e-09,4.600039783583883689e-09,4.855597549338543894e-09,5.111155315093204099e-09,5.366713080847864304e-09,5.622270846602524509e-09,5.877828612357184714e-09,6.133386378111844919e-09,6.388944143866505124e-09,6.644501909621165329e-09,6.900059675375825534e-09,7.155617441130485739e-09,7.411175206885145944e-09,7.666732972639806149e-09,7.922290738394466354e-09,8.177848504149126559e-09,8.433406269903786764e-09,8.688964035658446969e-09,8.944521801413107173e-09,9.200079567167767378e-09,9.455637332922427583e-09,9.711195098677087788e-09,9.966752864431747993e-09,1.022231063018640820e-08,1.047786839594106840e-08,1.073342616169572861e-08,1.098898392745038881e-08,1.124454169320504902e-08,1.150009945895970922e-08,1.175565722471436943e-08,1.201121499046902963e-08,1.226677275622368984e-08,1.252233052197835004e-08,1.277788828773301025e-08,1.303344605348767045e-08,1.328900381924233066e-08,1.354456158499699086e-08,1.380011935075165107e-08,1.405567711650631127e-08,1.431123488226097148e-08,1.456679264801563168e-08,1.482235041377029189e-08,1.507790817952495209e-08,1.533346594527961230e-08,1.558902371103427250e-08,1.584458147678893271e-08,1.610013924254359291e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657545351973e-10,5.111155315090703946e-10,7.666732972636055919e-10,1.022231063018140789e-09,1.277788828772676090e-09,1.533346594527211391e-09,1.788904360281746691e-09,2.044462126036281992e-09,2.300019891790817293e-09,2.555577657545352593e-09,2.811135423299887894e-09,3.066693189054423195e-09,3.322250954808958495e-09,3.577808720563493796e-09,3.833366486318028683e-09,4.088924252072563157e-09,4.344482017827097630e-09,4.600039783581632104e-09,4.855597549336166577e-09,5.111155315090701051e-09,5.366713080845235524e-09,5.622270846599769998e-09,5.877828612354304471e-09,6.133386378108838945e-09,6.388944143863373418e-09,6.644501909617907892e-09,6.900059675372442365e-09,7.155617441126976839e-09,7.411175206881511312e-09,7.666732972636045786e-09,7.922290738390580259e-09,8.177848504145114733e-09,8.433406269899649206e-09,8.688964035654183680e-09,8.944521801408718153e-09,9.200079567163252627e-09,9.455637332917787100e-09,9.711195098672321574e-09,9.966752864426856047e-09,1.022231063018139052e-08,1.047786839593592499e-08,1.073342616169045947e-08,1.098898392744499394e-08,1.124454169319952841e-08,1.150009945895406289e-08,1.175565722470859736e-08,1.201121499046313184e-08,1.226677275621766631e-08,1.252233052197220078e-08,1.277788828772673526e-08,1.303344605348126973e-08,1.328900381923580420e-08,1.354456158499033868e-08,1.380011935074487315e-08,1.405567711649940762e-08,1.431123488225394210e-08,1.456679264800847657e-08,1.482235041376301104e-08,1.507790817951754386e-08,1.533346594527207503e-08,1.558902371102660619e-08,1.584458147678113736e-08,1.610013924253566852e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,9.121967939710516368e-10,1.824393587942103274e-09,2.736590381913155014e-09,3.648787175884206961e-09,4.560983969855258908e-09,5.473180763826310855e-09,6.385377557797362802e-09,7.297574351768414749e-09,8.209771145739466696e-09,9.121967939710517816e-09,1.003416473368156894e-08,1.094636152765262006e-08,1.185855832162367118e-08,1.277075511559472230e-08,1.368295190956577342e-08,1.459514870353682453e-08,1.550734549750787400e-08,1.641954229147892347e-08,1.733173908544997293e-08,1.824393587942102240e-08,1.915613267339207186e-08,2.006832946736312133e-08,2.098052626133417079e-08,2.189272305530522026e-08,2.280491984927626972e-08,2.371711664324731919e-08,2.462931343721836866e-08,2.554151023118941812e-08,2.645370702516046759e-08,2.736590381913151705e-08,2.827810061310256652e-08,2.919029740707361598e-08,3.010249420104466545e-08,3.101469099501571491e-08,3.192688778898676438e-08,3.283908458295781384e-08,3.375128137692886331e-08,3.466347817089991278e-08,3.557567496487096224e-08,3.648787175884201171e-08,3.740006855281306117e-08,3.831226534678411064e-08,3.922446214075516010e-08,4.013665893472620957e-08,4.104885572869725903e-08,4.196105252266830850e-08,4.287324931663935797e-08,4.378544611061040743e-08,4.469764290458145690e-08,4.560983969855250636e-08,4.652203649252355583e-08,4.743423328649460529e-08,4.834643008046565476e-08,4.925862687443670422e-08,5.017082366840775369e-08,5.108302046237880315e-08,5.199521725634985262e-08,5.290741405032090209e-08,5.381961084429195155e-08,5.473180763826300102e-08,5.564400443223405048e-08,5.655620122620509995e-08,5.746839802017614941e-08 +0.000000000000000000e+00,1.053644537174491703e-09,2.107289074348983406e-09,3.160933611523475108e-09,4.214578148697966811e-09,5.268222685872458514e-09,6.321867223046950217e-09,7.375511760221441919e-09,8.429156297395933622e-09,9.482800834570424498e-09,1.053644537174491537e-08,1.159008990891940625e-08,1.264373444609389712e-08,1.369737898326838800e-08,1.475102352044287888e-08,1.580466805761736975e-08,1.685831259479186063e-08,1.791195713196635150e-08,1.896560166914084238e-08,2.001924620631533325e-08,2.107289074348982413e-08,2.212653528066431500e-08,2.318017981783880588e-08,2.423382435501329676e-08,2.528746889218778763e-08,2.634111342936227851e-08,2.739475796653676938e-08,2.844840250371126026e-08,2.950204704088575113e-08,3.055569157806024532e-08,3.160933611523473950e-08,3.266298065240923369e-08,3.371662518958372787e-08,3.477026972675822206e-08,3.582391426393271624e-08,3.687755880110721042e-08,3.793120333828170461e-08,3.898484787545619879e-08,4.003849241263069298e-08,4.109213694980518716e-08,4.214578148697968135e-08,4.319942602415417553e-08,4.425307056132866971e-08,4.530671509850316390e-08,4.636035963567765808e-08,4.741400417285215227e-08,4.846764871002664645e-08,4.952129324720114064e-08,5.057493778437563482e-08,5.162858232155012900e-08,5.268222685872462319e-08,5.373587139589911737e-08,5.478951593307361156e-08,5.584316047024810574e-08,5.689680500742259993e-08,5.795044954459709411e-08,5.900409408177158829e-08,6.005773861894608248e-08,6.111138315612057005e-08,6.216502769329505761e-08,6.321867223046954518e-08,6.427231676764403275e-08,6.532596130481852031e-08,6.637960584199300788e-08 +0.000000000000000000e+00,1.646541906199524271e-09,3.293083812399048543e-09,4.939625718598572607e-09,6.586167624798096258e-09,8.232709530997620736e-09,9.879251437197145214e-09,1.152579334339666969e-08,1.317233524959619417e-08,1.481887715579571865e-08,1.646541906199524147e-08,1.811196096819476430e-08,1.975850287439428712e-08,2.140504478059380994e-08,2.305158668679333277e-08,2.469812859299285559e-08,2.634467049919237841e-08,2.799121240539190124e-08,2.963775431159142406e-08,3.128429621779094358e-08,3.293083812399046309e-08,3.457738003018998261e-08,3.622392193638950212e-08,3.787046384258902164e-08,3.951700574878854115e-08,4.116354765498806067e-08,4.281008956118758018e-08,4.445663146738709970e-08,4.610317337358661921e-08,4.774971527978613873e-08,4.939625718598565824e-08,5.104279909218517776e-08,5.268934099838469727e-08,5.433588290458421679e-08,5.598242481078373630e-08,5.762896671698325582e-08,5.927550862318277533e-08,6.092205052938229485e-08,6.256859243558180774e-08,6.421513434178132064e-08,6.586167624798083354e-08,6.750821815418034644e-08,6.915476006037985933e-08,7.080130196657937223e-08,7.244784387277888513e-08,7.409438577897839803e-08,7.574092768517791092e-08,7.738746959137742382e-08,7.903401149757693672e-08,8.068055340377644962e-08,8.232709530997596251e-08,8.397363721617547541e-08,8.562017912237498831e-08,8.726672102857450121e-08,8.891326293477401411e-08,9.055980484097352700e-08,9.220634674717303990e-08,9.385288865337255280e-08,9.549943055957206570e-08,9.714597246577157859e-08,9.879251437197109149e-08,1.004390562781706044e-07,1.020855981843701173e-07,1.037321400905696302e-07 +0.000000000000000000e+00,9.121967939742369026e-10,1.824393587948473805e-09,2.736590381922710604e-09,3.648787175896947197e-09,4.560983969871183789e-09,5.473180763845420381e-09,6.385377557819656974e-09,7.297574351793893566e-09,8.209771145768130159e-09,9.121967939742367578e-09,1.003416473371660500e-08,1.094636152769084242e-08,1.185855832166507984e-08,1.277075511563931726e-08,1.368295190961355468e-08,1.459514870358779210e-08,1.550734549756203117e-08,1.641954229153627024e-08,1.733173908551050932e-08,1.824393587948474839e-08,1.915613267345898747e-08,2.006832946743322654e-08,2.098052626140746561e-08,2.189272305538170469e-08,2.280491984935594376e-08,2.371711664333018283e-08,2.462931343730442191e-08,2.554151023127866098e-08,2.645370702525290006e-08,2.736590381922713913e-08,2.827810061320137820e-08,2.919029740717561728e-08,3.010249420114985635e-08,3.101469099512409543e-08,3.192688778909833450e-08,3.283908458307257357e-08,3.375128137704681265e-08,3.466347817102105172e-08,3.557567496499529080e-08,3.648787175896952987e-08,3.740006855294376894e-08,3.831226534691800802e-08,3.922446214089224709e-08,4.013665893486648617e-08,4.104885572884072524e-08,4.196105252281496431e-08,4.287324931678920339e-08,4.378544611076344246e-08,4.469764290473768154e-08,4.560983969871192061e-08,4.652203649268615968e-08,4.743423328666039876e-08,4.834643008063463783e-08,4.925862687460887690e-08,5.017082366858311598e-08,5.108302046255735505e-08,5.199521725653159413e-08,5.290741405050583320e-08,5.381961084448007227e-08,5.473180763845431135e-08,5.564400443242855042e-08,5.655620122640278950e-08,5.746839802037702857e-08 +0.000000000000000000e+00,1.053644537178448314e-09,2.107289074356896629e-09,3.160933611535345150e-09,4.214578148713794085e-09,5.268222685892243020e-09,6.321867223070691955e-09,7.375511760249140889e-09,8.429156297427589824e-09,9.482800834606039586e-09,1.053644537178448935e-08,1.159008990896293911e-08,1.264373444614138887e-08,1.369737898331983863e-08,1.475102352049828840e-08,1.580466805767673816e-08,1.685831259485518957e-08,1.791195713203364099e-08,1.896560166921209241e-08,2.001924620639054382e-08,2.107289074356899524e-08,2.212653528074744666e-08,2.318017981792589807e-08,2.423382435510434949e-08,2.528746889228280091e-08,2.634111342946125232e-08,2.739475796663970374e-08,2.844840250381815515e-08,2.950204704099660657e-08,3.055569157817505799e-08,3.160933611535350940e-08,3.266298065253196082e-08,3.371662518971041224e-08,3.477026972688886365e-08,3.582391426406731507e-08,3.687755880124576649e-08,3.793120333842421790e-08,3.898484787560266932e-08,4.003849241278112073e-08,4.109213694995957215e-08,4.214578148713802357e-08,4.319942602431647498e-08,4.425307056149492640e-08,4.530671509867337782e-08,4.636035963585182923e-08,4.741400417303028065e-08,4.846764871020873207e-08,4.952129324738718348e-08,5.057493778456563490e-08,5.162858232174408631e-08,5.268222685892253773e-08,5.373587139610098915e-08,5.478951593327944056e-08,5.584316047045789198e-08,5.689680500763634340e-08,5.795044954481479481e-08,5.900409408199324623e-08,6.005773861917169765e-08,6.111138315635014244e-08,6.216502769352858724e-08,6.321867223070703204e-08,6.427231676788547684e-08,6.532596130506392164e-08,6.637960584224236644e-08 +0.000000000000000000e+00,1.646541906200482974e-09,3.293083812400965947e-09,4.939625718601448714e-09,6.586167624801931067e-09,8.232709531002413421e-09,9.879251437202895774e-09,1.152579334340337813e-08,1.317233524960386048e-08,1.481887715580434283e-08,1.646541906200482353e-08,1.811196096820530258e-08,1.975850287440578162e-08,2.140504478060626067e-08,2.305158668680673971e-08,2.469812859300721875e-08,2.634467049920769780e-08,2.799121240540817684e-08,2.963775431160865589e-08,3.128429621780913493e-08,3.293083812400961398e-08,3.457738003021009302e-08,3.622392193641057207e-08,3.787046384261105111e-08,3.951700574881153016e-08,4.116354765501200920e-08,4.281008956121248824e-08,4.445663146741296729e-08,4.610317337361344633e-08,4.774971527981392538e-08,4.939625718601440442e-08,5.104279909221488347e-08,5.268934099841536251e-08,5.433588290461584156e-08,5.598242481081632060e-08,5.762896671701679964e-08,5.927550862321727869e-08,6.092205052941776435e-08,6.256859243561825663e-08,6.421513434181874891e-08,6.586167624801924119e-08,6.750821815421973347e-08,6.915476006042022575e-08,7.080130196662071803e-08,7.244784387282121031e-08,7.409438577902170259e-08,7.574092768522219487e-08,7.738746959142268715e-08,7.903401149762317942e-08,8.068055340382367170e-08,8.232709531002416398e-08,8.397363721622465626e-08,8.562017912242514854e-08,8.726672102862564082e-08,8.891326293482613310e-08,9.055980484102662538e-08,9.220634674722711766e-08,9.385288865342760994e-08,9.549943055962810222e-08,9.714597246582859450e-08,9.879251437202908678e-08,1.004390562782295791e-07,1.020855981844300713e-07,1.037321400906305636e-07 +0.000000000000000000e+00,6.309454368076140219e-10,1.261890873615228044e-09,1.892836310422842066e-09,2.523781747230456088e-09,3.154727184038070110e-09,3.785672620845684132e-09,4.416618057653298153e-09,5.047563494460912175e-09,5.678508931268526197e-09,6.309454368076140219e-09,6.940399804883754241e-09,7.571345241691368263e-09,8.202290678498983112e-09,8.833236115306597961e-09,9.464181552114212810e-09,1.009512698892182766e-08,1.072607242572944251e-08,1.135701786253705736e-08,1.198796329934467221e-08,1.261890873615228706e-08,1.324985417295990191e-08,1.388079960976751675e-08,1.451174504657513160e-08,1.514269048338274645e-08,1.577363592019036130e-08,1.640458135699797615e-08,1.703552679380559100e-08,1.766647223061320585e-08,1.829741766742082070e-08,1.892836310422843555e-08,1.955930854103605040e-08,2.019025397784366525e-08,2.082119941465128009e-08,2.145214485145889494e-08,2.208309028826650979e-08,2.271403572507412464e-08,2.334498116188173949e-08,2.397592659868935434e-08,2.460687203549696919e-08,2.523781747230458404e-08,2.586876290911219889e-08,2.649970834591981374e-08,2.713065378272742859e-08,2.776159921953504343e-08,2.839254465634265828e-08,2.902349009315027313e-08,2.965443552995788798e-08,3.028538096676549952e-08,3.091632640357311106e-08,3.154727184038072260e-08,3.217821727718833414e-08,3.280916271399594568e-08,3.344010815080355722e-08,3.407105358761116876e-08,3.470199902441878030e-08,3.533294446122639185e-08,3.596388989803400339e-08,3.659483533484161493e-08,3.722578077164922647e-08,3.785672620845683801e-08,3.848767164526444955e-08,3.911861708207206109e-08,3.974956251887967263e-08 +0.000000000000000000e+00,7.709891758580295770e-10,1.541978351716059154e-09,2.312967527574088628e-09,3.083956703432117895e-09,3.854945879290146748e-09,4.625935055148175601e-09,5.396924231006204454e-09,6.167913406864233308e-09,6.938902582722262161e-09,7.709891758580290187e-09,8.480880934438318213e-09,9.251870110296346239e-09,1.002285928615437427e-08,1.079384846201240229e-08,1.156483763787043032e-08,1.233582681372845834e-08,1.310681598958648637e-08,1.387780516544451440e-08,1.464879434130254242e-08,1.541978351716057045e-08,1.619077269301859682e-08,1.696176186887662319e-08,1.773275104473464956e-08,1.850374022059267593e-08,1.927472939645070231e-08,2.004571857230872868e-08,2.081670774816675505e-08,2.158769692402478142e-08,2.235868609988280779e-08,2.312967527574083416e-08,2.390066445159886054e-08,2.467165362745688691e-08,2.544264280331491328e-08,2.621363197917293965e-08,2.698462115503096602e-08,2.775561033088899239e-08,2.852659950674701877e-08,2.929758868260504514e-08,3.006857785846307151e-08,3.083956703432109457e-08,3.161055621017911764e-08,3.238154538603714070e-08,3.315253456189516376e-08,3.392352373775318682e-08,3.469451291361120989e-08,3.546550208946923295e-08,3.623649126532725601e-08,3.700748044118527908e-08,3.777846961704330214e-08,3.854945879290132520e-08,3.932044796875934827e-08,4.009143714461737133e-08,4.086242632047539439e-08,4.163341549633341745e-08,4.240440467219144052e-08,4.317539384804946358e-08,4.394638302390748664e-08,4.471737219976550971e-08,4.548836137562353277e-08,4.625935055148155583e-08,4.703033972733957890e-08,4.780132890319760196e-08,4.857231807905562502e-08 +0.000000000000000000e+00,1.161998438048340135e-09,2.323996876096680270e-09,3.485995314145020404e-09,4.647993752193360539e-09,5.809992190241700260e-09,6.971990628290039981e-09,8.133989066338379703e-09,9.295987504386719424e-09,1.045798594243505914e-08,1.161998438048339887e-08,1.278198281853173859e-08,1.394398125658007831e-08,1.510597969462841968e-08,1.626797813267676271e-08,1.742997657072510574e-08,1.859197500877344877e-08,1.975397344682179180e-08,2.091597188487013483e-08,2.207797032291847786e-08,2.323996876096682089e-08,2.440196719901516392e-08,2.556396563706350695e-08,2.672596407511184998e-08,2.788796251316019301e-08,2.904996095120853604e-08,3.021195938925687907e-08,3.137395782730522210e-08,3.253595626535356513e-08,3.369795470340190816e-08,3.485995314145025119e-08,3.602195157949859422e-08,3.718395001754693725e-08,3.834594845559528028e-08,3.950794689364362331e-08,4.066994533169196634e-08,4.183194376974030937e-08,4.299394220778865240e-08,4.415594064583699543e-08,4.531793908388533846e-08,4.647993752193368149e-08,4.764193595998202452e-08,4.880393439803036755e-08,4.996593283607871058e-08,5.112793127412705361e-08,5.228992971217539664e-08,5.345192815022373967e-08,5.461392658827208270e-08,5.577592502632042573e-08,5.693792346436876876e-08,5.809992190241711179e-08,5.926192034046545482e-08,6.042391877851379785e-08,6.158591721656214088e-08,6.274791565461048391e-08,6.390991409265882694e-08,6.507191253070716997e-08,6.623391096875551300e-08,6.739590940680385603e-08,6.855790784485219906e-08,6.971990628290054209e-08,7.088190472094888512e-08,7.204390315899722815e-08,7.320590159704557118e-08 +0.000000000000000000e+00,6.309454368094992699e-10,1.261890873618998540e-09,1.892836310428497913e-09,2.523781747237997493e-09,3.154727184047497073e-09,3.785672620856996654e-09,4.416618057666495820e-09,5.047563494475994987e-09,5.678508931285494153e-09,6.309454368094993320e-09,6.940399804904492486e-09,7.571345241713991653e-09,8.202290678523490819e-09,8.833236115332989986e-09,9.464181552142489152e-09,1.009512698895198832e-08,1.072607242576148749e-08,1.135701786257098665e-08,1.198796329938048582e-08,1.261890873618998499e-08,1.324985417299948415e-08,1.388079960980898332e-08,1.451174504661848248e-08,1.514269048342798000e-08,1.577363592023747751e-08,1.640458135704697502e-08,1.703552679385647253e-08,1.766647223066597005e-08,1.829741766747546756e-08,1.892836310428496507e-08,1.955930854109446258e-08,2.019025397790396009e-08,2.082119941471345761e-08,2.145214485152295512e-08,2.208309028833245263e-08,2.271403572514195014e-08,2.334498116195144766e-08,2.397592659876094517e-08,2.460687203557044268e-08,2.523781747237994019e-08,2.586876290918943770e-08,2.649970834599893522e-08,2.713065378280843273e-08,2.776159921961793024e-08,2.839254465642742775e-08,2.902349009323692526e-08,2.965443553004642278e-08,3.028538096685592029e-08,3.091632640366541780e-08,3.154727184047491531e-08,3.217821727728441283e-08,3.280916271409391034e-08,3.344010815090340785e-08,3.407105358771290536e-08,3.470199902452240287e-08,3.533294446133190039e-08,3.596388989814139790e-08,3.659483533495089541e-08,3.722578077176039292e-08,3.785672620856989044e-08,3.848767164537938795e-08,3.911861708218888546e-08,3.974956251899838297e-08 +0.000000000000000000e+00,7.709891758605391396e-10,1.541978351721078279e-09,2.312967527581617212e-09,3.083956703442156145e-09,3.854945879302695078e-09,4.625935055163234424e-09,5.396924231023773770e-09,6.167913406884313117e-09,6.938902582744852463e-09,7.709891758605391810e-09,8.480880934465931156e-09,9.251870110326470502e-09,1.002285928618700985e-08,1.079384846204754920e-08,1.156483763790808854e-08,1.233582681376862789e-08,1.310681598962916723e-08,1.387780516548970658e-08,1.464879434135024593e-08,1.541978351721078693e-08,1.619077269307132793e-08,1.696176186893186893e-08,1.773275104479240993e-08,1.850374022065295093e-08,1.927472939651349193e-08,2.004571857237403293e-08,2.081670774823457393e-08,2.158769692409511493e-08,2.235868609995565593e-08,2.312967527581619694e-08,2.390066445167673794e-08,2.467165362753727894e-08,2.544264280339781994e-08,2.621363197925836094e-08,2.698462115511890194e-08,2.775561033097944294e-08,2.852659950683998394e-08,2.929758868270052494e-08,3.006857785856106925e-08,3.083956703442161356e-08,3.161055621028215787e-08,3.238154538614270218e-08,3.315253456200324649e-08,3.392352373786379080e-08,3.469451291372433511e-08,3.546550208958487942e-08,3.623649126544542373e-08,3.700748044130596804e-08,3.777846961716651235e-08,3.854945879302705666e-08,3.932044796888760097e-08,4.009143714474814527e-08,4.086242632060868958e-08,4.163341549646923389e-08,4.240440467232977820e-08,4.317539384819032251e-08,4.394638302405086682e-08,4.471737219991141113e-08,4.548836137577195544e-08,4.625935055163249975e-08,4.703033972749304406e-08,4.780132890335358837e-08,4.857231807921413268e-08 +0.000000000000000000e+00,1.161998438049306489e-09,2.323996876098612977e-09,3.485995314147919259e-09,4.647993752197225127e-09,5.809992190246530995e-09,6.971990628295836863e-09,8.133989066345142731e-09,9.295987504394448599e-09,1.045798594244375447e-08,1.161998438049306034e-08,1.278198281854236620e-08,1.394398125659167207e-08,1.510597969464097959e-08,1.626797813269028877e-08,1.742997657073959795e-08,1.859197500878890712e-08,1.975397344683821630e-08,2.091597188488752548e-08,2.207797032293683466e-08,2.323996876098614383e-08,2.440196719903545301e-08,2.556396563708476219e-08,2.672596407513407136e-08,2.788796251318338054e-08,2.904996095123268972e-08,3.021195938928199889e-08,3.137395782733130807e-08,3.253595626538061725e-08,3.369795470342992642e-08,3.485995314147923560e-08,3.602195157952854478e-08,3.718395001757785395e-08,3.834594845562716313e-08,3.950794689367647231e-08,4.066994533172578149e-08,4.183194376977509066e-08,4.299394220782439984e-08,4.415594064587370902e-08,4.531793908392301819e-08,4.647993752197232737e-08,4.764193596002163655e-08,4.880393439807094572e-08,4.996593283612025490e-08,5.112793127416956408e-08,5.228992971221887325e-08,5.345192815026818243e-08,5.461392658831749161e-08,5.577592502636680078e-08,5.693792346441610996e-08,5.809992190246541914e-08,5.926192034051472831e-08,6.042391877856403749e-08,6.158591721661334667e-08,6.274791565466265585e-08,6.390991409271196502e-08,6.507191253076127420e-08,6.623391096881058338e-08,6.739590940685989255e-08,6.855790784490920173e-08,6.971990628295851091e-08,7.088190472100782008e-08,7.204390315905712926e-08,7.320590159710643844e-08 +0.000000000000000000e+00,3.661149537250519303e-10,7.322299074501038606e-10,1.098344861175155739e-09,1.464459814900207514e-09,1.830574768625259290e-09,2.196689722350311065e-09,2.562804676075362633e-09,2.928919629800414202e-09,3.295034583525465770e-09,3.661149537250517338e-09,4.027264490975568907e-09,4.393379444700620475e-09,4.759494398425672044e-09,5.125609352150723612e-09,5.491724305875775180e-09,5.857839259600826749e-09,6.223954213325878317e-09,6.590069167050929886e-09,6.956184120775981454e-09,7.322299074501033022e-09,7.688414028226084591e-09,8.054528981951136159e-09,8.420643935676187728e-09,8.786758889401239296e-09,9.152873843126290864e-09,9.518988796851342433e-09,9.885103750576394001e-09,1.025121870430144557e-08,1.061733365802649714e-08,1.098344861175154871e-08,1.134956356547660027e-08,1.171567851920165184e-08,1.208179347292670341e-08,1.244790842665175498e-08,1.281402338037680655e-08,1.318013833410185812e-08,1.354625328782690969e-08,1.391236824155196125e-08,1.427848319527701282e-08,1.464459814900206439e-08,1.501071310272711596e-08,1.537682805645216918e-08,1.574294301017722240e-08,1.610905796390227563e-08,1.647517291762732885e-08,1.684128787135238207e-08,1.720740282507743530e-08,1.757351777880248852e-08,1.793963273252754174e-08,1.830574768625259496e-08,1.867186263997764819e-08,1.903797759370270141e-08,1.940409254742775463e-08,1.977020750115280785e-08,2.013632245487786108e-08,2.050243740860291430e-08,2.086855236232796752e-08,2.123466731605302075e-08,2.160078226977807397e-08,2.196689722350312719e-08,2.233301217722818041e-08,2.269912713095323364e-08,2.306524208467828686e-08 +0.000000000000000000e+00,4.947615692838456575e-10,9.895231385676913151e-10,1.484284707851536973e-09,1.979046277135382630e-09,2.473807846419228081e-09,2.968569415703073532e-09,3.463330984986918982e-09,3.958092554270764433e-09,4.452854123554609884e-09,4.947615692838455334e-09,5.442377262122300785e-09,5.937138831406146236e-09,6.431900400689991687e-09,6.926661969973837137e-09,7.421423539257682588e-09,7.916185108541527212e-09,8.410946677825371835e-09,8.905708247109216459e-09,9.400469816393061082e-09,9.895231385676905706e-09,1.038999295496075033e-08,1.088475452424459495e-08,1.137951609352843958e-08,1.187427766281228420e-08,1.236903923209612882e-08,1.286380080137997345e-08,1.335856237066381807e-08,1.385332393994766269e-08,1.434808550923150732e-08,1.484284707851535194e-08,1.533760864779919656e-08,1.583237021708304119e-08,1.632713178636688581e-08,1.682189335565073044e-08,1.731665492493457506e-08,1.781141649421841968e-08,1.830617806350226431e-08,1.880093963278610893e-08,1.929570120206995355e-08,1.979046277135379818e-08,2.028522434063764280e-08,2.077998590992148742e-08,2.127474747920533205e-08,2.176950904848917667e-08,2.226427061777302129e-08,2.275903218705686592e-08,2.325379375634071054e-08,2.374855532562455517e-08,2.424331689490839979e-08,2.473807846419224441e-08,2.523284003347608904e-08,2.572760160275993366e-08,2.622236317204377828e-08,2.671712474132762291e-08,2.721188631061146753e-08,2.770664787989531215e-08,2.820140944917915678e-08,2.869617101846300140e-08,2.919093258774684602e-08,2.968569415703069065e-08,3.018045572631453196e-08,3.067521729559837328e-08,3.116997886488221459e-08 +0.000000000000000000e+00,7.007489299799100316e-10,1.401497859959820063e-09,2.102246789939730198e-09,2.802995719919640540e-09,3.503744649899550882e-09,4.204493579879461224e-09,4.905242509859371979e-09,5.605991439839282734e-09,6.306740369819193490e-09,7.007489299799104245e-09,7.708238229779015000e-09,8.408987159758925756e-09,9.109736089738836511e-09,9.810485019718747267e-09,1.051123394969865802e-08,1.121198287967856878e-08,1.191273180965847953e-08,1.261348073963839029e-08,1.331422966961830104e-08,1.401497859959821180e-08,1.471572752957812255e-08,1.541647645955803331e-08,1.611722538953794572e-08,1.681797431951785813e-08,1.751872324949777054e-08,1.821947217947768295e-08,1.892022110945759536e-08,1.962097003943750777e-08,2.032171896941742018e-08,2.102246789939733259e-08,2.172321682937724500e-08,2.242396575935715741e-08,2.312471468933706982e-08,2.382546361931698223e-08,2.452621254929689464e-08,2.522696147927680705e-08,2.592771040925671946e-08,2.662845933923663187e-08,2.732920826921654428e-08,2.802995719919645668e-08,2.873070612917636909e-08,2.943145505915628150e-08,3.013220398913619391e-08,3.083295291911610632e-08,3.153370184909601873e-08,3.223445077907593114e-08,3.293519970905584355e-08,3.363594863903575596e-08,3.433669756901566837e-08,3.503744649899558078e-08,3.573819542897549319e-08,3.643894435895540560e-08,3.713969328893531801e-08,3.784044221891523042e-08,3.854119114889514283e-08,3.924194007887505524e-08,3.994268900885496765e-08,4.064343793883488006e-08,4.134418686881479247e-08,4.204493579879470488e-08,4.274568472877461729e-08,4.344643365875452970e-08,4.414718258873444211e-08 +0.000000000000000000e+00,3.661149537259490594e-10,7.322299074518981187e-10,1.098344861177847178e-09,1.464459814903796237e-09,1.830574768629745297e-09,2.196689722355694356e-09,2.562804676081643416e-09,2.928919629807592475e-09,3.295034583533541534e-09,3.661149537259490594e-09,4.027264490985439653e-09,4.393379444711388712e-09,4.759494398437337772e-09,5.125609352163286831e-09,5.491724305889235890e-09,5.857839259615184950e-09,6.223954213341134009e-09,6.590069167067083069e-09,6.956184120793032128e-09,7.322299074518981187e-09,7.688414028244931074e-09,8.054528981970880960e-09,8.420643935696830847e-09,8.786758889422780733e-09,9.152873843148730620e-09,9.518988796874680507e-09,9.885103750600630393e-09,1.025121870432658028e-08,1.061733365805253017e-08,1.098344861177848005e-08,1.134956356550442994e-08,1.171567851923037983e-08,1.208179347295632971e-08,1.244790842668227960e-08,1.281402338040822949e-08,1.318013833413417937e-08,1.354625328786012926e-08,1.391236824158607915e-08,1.427848319531202903e-08,1.464459814903797892e-08,1.501071310276392880e-08,1.537682805648987869e-08,1.574294301021582858e-08,1.610905796394177846e-08,1.647517291766772835e-08,1.684128787139367824e-08,1.720740282511962812e-08,1.757351777884557801e-08,1.793963273257152790e-08,1.830574768629747778e-08,1.867186264002342767e-08,1.903797759374937756e-08,1.940409254747532744e-08,1.977020750120127733e-08,2.013632245492722722e-08,2.050243740865317710e-08,2.086855236237912699e-08,2.123466731610507688e-08,2.160078226983102676e-08,2.196689722355697665e-08,2.233301217728292654e-08,2.269912713100887642e-08,2.306524208473482631e-08 +0.000000000000000000e+00,4.947615692852107123e-10,9.895231385704214247e-10,1.484284707855632137e-09,1.979046277140842849e-09,2.473807846426053562e-09,2.968569415711264274e-09,3.463330984996474986e-09,3.958092554281685699e-09,4.452854123566896825e-09,4.947615692852107951e-09,5.442377262137319076e-09,5.937138831422530202e-09,6.431900400707741328e-09,6.926661969992952454e-09,7.421423539278163580e-09,7.916185108563374706e-09,8.410946677848585832e-09,8.905708247133796958e-09,9.400469816419008084e-09,9.895231385704219210e-09,1.038999295498943034e-08,1.088475452427464146e-08,1.137951609355985259e-08,1.187427766284506371e-08,1.236903923213027484e-08,1.286380080141548597e-08,1.335856237070069709e-08,1.385332393998590822e-08,1.434808550927111934e-08,1.484284707855633047e-08,1.533760864784154159e-08,1.583237021712675272e-08,1.632713178641196385e-08,1.682189335569717497e-08,1.731665492498238610e-08,1.781141649426759722e-08,1.830617806355280835e-08,1.880093963283801948e-08,1.929570120212323060e-08,1.979046277140844173e-08,2.028522434069365285e-08,2.077998590997886398e-08,2.127474747926407511e-08,2.176950904854928623e-08,2.226427061783449736e-08,2.275903218711970848e-08,2.325379375640491961e-08,2.374855532569013074e-08,2.424331689497534186e-08,2.473807846426055299e-08,2.523284003354576411e-08,2.572760160283097524e-08,2.622236317211618637e-08,2.671712474140139749e-08,2.721188631068660862e-08,2.770664787997181974e-08,2.820140944925703087e-08,2.869617101854224199e-08,2.919093258782745312e-08,2.968569415711266425e-08,3.018045572639787206e-08,3.067521729568307657e-08,3.116997886496828108e-08 +0.000000000000000000e+00,7.007489299806051735e-10,1.401497859961210347e-09,2.102246789941815521e-09,2.802995719922420694e-09,3.503744649903025868e-09,4.204493579883631041e-09,4.905242509864235801e-09,5.605991439844840561e-09,6.306740369825445321e-09,7.007489299806050081e-09,7.708238229786654841e-09,8.408987159767260428e-09,9.109736089747866015e-09,9.810485019728471602e-09,1.051123394970907719e-08,1.121198287968968278e-08,1.191273180967028836e-08,1.261348073965089395e-08,1.331422966963149954e-08,1.401497859961210512e-08,1.471572752959271071e-08,1.541647645957331630e-08,1.611722538955392023e-08,1.681797431953452416e-08,1.751872324951512810e-08,1.821947217949573203e-08,1.892022110947633596e-08,1.962097003945693989e-08,2.032171896943754383e-08,2.102246789941814776e-08,2.172321682939875169e-08,2.242396575937935563e-08,2.312471468935995956e-08,2.382546361934056349e-08,2.452621254932116742e-08,2.522696147930177136e-08,2.592771040928237529e-08,2.662845933926297922e-08,2.732920826924358315e-08,2.802995719922418709e-08,2.873070612920479102e-08,2.943145505918539495e-08,3.013220398916599889e-08,3.083295291914659951e-08,3.153370184912720013e-08,3.223445077910780076e-08,3.293519970908840138e-08,3.363594863906900201e-08,3.433669756904960263e-08,3.503744649903020325e-08,3.573819542901080388e-08,3.643894435899140450e-08,3.713969328897200513e-08,3.784044221895260575e-08,3.854119114893320637e-08,3.924194007891380700e-08,3.994268900889440762e-08,4.064343793887500825e-08,4.134418686885560887e-08,4.204493579883620949e-08,4.274568472881681012e-08,4.344643365879741074e-08,4.414718258877801137e-08 +0.000000000000000000e+00,1.445214012644300834e-10,2.890428025288601668e-10,4.335642037932902244e-10,5.780856050577202303e-10,7.226070063221502361e-10,8.671284075865802420e-10,1.011649808851010248e-09,1.156171210115440254e-09,1.300692611379870260e-09,1.445214012644300265e-09,1.589735413908730271e-09,1.734256815173160277e-09,1.878778216437590283e-09,2.023299617702020496e-09,2.167821018966450708e-09,2.312342420230880921e-09,2.456863821495311134e-09,2.601385222759741346e-09,2.745906624024171559e-09,2.890428025288601772e-09,3.034949426553031984e-09,3.179470827817462197e-09,3.323992229081892410e-09,3.468513630346322622e-09,3.613035031610752835e-09,3.757556432875183048e-09,3.902077834139613260e-09,4.046599235404043473e-09,4.191120636668473686e-09,4.335642037932903898e-09,4.480163439197334111e-09,4.624684840461764324e-09,4.769206241726194536e-09,4.913727642990624749e-09,5.058249044255054962e-09,5.202770445519485174e-09,5.347291846783915387e-09,5.491813248048345600e-09,5.636334649312775812e-09,5.780856050577206025e-09,5.925377451841636238e-09,6.069898853106066450e-09,6.214420254370496663e-09,6.358941655634926876e-09,6.503463056899357088e-09,6.647984458163787301e-09,6.792505859428217514e-09,6.937027260692647726e-09,7.081548661957077939e-09,7.226070063221508152e-09,7.370591464485938364e-09,7.515112865750367750e-09,7.659634267014797962e-09,7.804155668279228175e-09,7.948677069543658388e-09,8.093198470808088600e-09,8.237719872072518813e-09,8.382241273336949026e-09,8.526762674601379238e-09,8.671284075865809451e-09,8.815805477130239664e-09,8.960326878394669876e-09,9.104848279659100089e-09 +0.000000000000000000e+00,2.467514285816114955e-10,4.935028571632229911e-10,7.402542857448345383e-10,9.870057143264461890e-10,1.233757142908057840e-09,1.480508571489669490e-09,1.727260000071281141e-09,1.974011428652892792e-09,2.220762857234504442e-09,2.467514285816116093e-09,2.714265714397727743e-09,2.961017142979339394e-09,3.207768571560951045e-09,3.454520000142562695e-09,3.701271428724174346e-09,3.948022857305786410e-09,4.194774285887398475e-09,4.441525714469010539e-09,4.688277143050622603e-09,4.935028571632234667e-09,5.181780000213846731e-09,5.428531428795458796e-09,5.675282857377070860e-09,5.922034285958682924e-09,6.168785714540294988e-09,6.415537143121907053e-09,6.662288571703519117e-09,6.909040000285131181e-09,7.155791428866743245e-09,7.402542857448355310e-09,7.649294286029967374e-09,7.896045714611579438e-09,8.142797143193191502e-09,8.389548571774803566e-09,8.636300000356415631e-09,8.883051428938027695e-09,9.129802857519639759e-09,9.376554286101251823e-09,9.623305714682863888e-09,9.870057143264475952e-09,1.011680857184608802e-08,1.036356000042770008e-08,1.061031142900931214e-08,1.085706285759092421e-08,1.110381428617253627e-08,1.135056571475414834e-08,1.159731714333576040e-08,1.184406857191737247e-08,1.209082000049898453e-08,1.233757142908059659e-08,1.258432285766220866e-08,1.283107428624382072e-08,1.307782571482543279e-08,1.332457714340704485e-08,1.357132857198865692e-08,1.381808000057026898e-08,1.406483142915188104e-08,1.431158285773349311e-08,1.455833428631510517e-08,1.480508571489671724e-08,1.505183714347832765e-08,1.529858857205993806e-08,1.554534000064154847e-08 +0.000000000000000000e+00,2.954569915793040074e-10,5.909139831586080148e-10,8.863709747379119705e-10,1.181827966317215823e-09,1.477284957896519675e-09,1.772741949475823527e-09,2.068198941055127380e-09,2.363655932634431232e-09,2.659112924213735084e-09,2.954569915793038937e-09,3.250026907372342789e-09,3.545483898951646641e-09,3.840940890530950494e-09,4.136397882110254760e-09,4.431854873689559025e-09,4.727311865268863291e-09,5.022768856848167557e-09,5.318225848427471823e-09,5.613682840006776089e-09,5.909139831586080355e-09,6.204596823165384621e-09,6.500053814744688887e-09,6.795510806323993153e-09,7.090967797903297419e-09,7.386424789482601684e-09,7.681881781061905950e-09,7.977338772641211043e-09,8.272795764220516137e-09,8.568252755799821230e-09,8.863709747379126323e-09,9.159166738958431416e-09,9.454623730537736509e-09,9.750080722117041602e-09,1.004553771369634669e-08,1.034099470527565179e-08,1.063645169685495688e-08,1.093190868843426197e-08,1.122736568001356707e-08,1.152282267159287216e-08,1.181827966317217725e-08,1.211373665475148235e-08,1.240919364633078744e-08,1.270465063791009253e-08,1.300010762948939763e-08,1.329556462106870272e-08,1.359102161264800781e-08,1.388647860422731291e-08,1.418193559580661800e-08,1.447739258738592309e-08,1.477284957896522818e-08,1.506830657054453328e-08,1.536376356212383837e-08,1.565922055370314346e-08,1.595467754528244856e-08,1.625013453686175365e-08,1.654559152844105874e-08,1.684104852002036384e-08,1.713650551159966893e-08,1.743196250317897402e-08,1.772741949475827912e-08,1.802287648633758421e-08,1.831833347791688930e-08,1.861379046949619439e-08 +0.000000000000000000e+00,1.445214012647881234e-10,2.890428025295762468e-10,4.335642037943643701e-10,5.780856050591524935e-10,7.226070063239406686e-10,8.671284075887288437e-10,1.011649808853517019e-09,1.156171210118305194e-09,1.300692611383093369e-09,1.445214012647881544e-09,1.589735413912669719e-09,1.734256815177457894e-09,1.878778216442246069e-09,2.023299617707034037e-09,2.167821018971822006e-09,2.312342420236609974e-09,2.456863821501397942e-09,2.601385222766185911e-09,2.745906624030973879e-09,2.890428025295761847e-09,3.034949426560549815e-09,3.179470827825337784e-09,3.323992229090125752e-09,3.468513630354913720e-09,3.613035031619701689e-09,3.757556432884489657e-09,3.902077834149277211e-09,4.046599235414064766e-09,4.191120636678852321e-09,4.335642037943639876e-09,4.480163439208427430e-09,4.624684840473214985e-09,4.769206241738002540e-09,4.913727643002790094e-09,5.058249044267577649e-09,5.202770445532365204e-09,5.347291846797152758e-09,5.491813248061940313e-09,5.636334649326727868e-09,5.780856050591515422e-09,5.925377451856302977e-09,6.069898853121090532e-09,6.214420254385878087e-09,6.358941655650665641e-09,6.503463056915453196e-09,6.647984458180240751e-09,6.792505859445028305e-09,6.937027260709815860e-09,7.081548661974603415e-09,7.226070063239390969e-09,7.370591464504178524e-09,7.515112865768966079e-09,7.659634267033753633e-09,7.804155668298541188e-09,7.948677069563328743e-09,8.093198470828116297e-09,8.237719872092903852e-09,8.382241273357691407e-09,8.526762674622478962e-09,8.671284075887266516e-09,8.815805477152054071e-09,8.960326878416841626e-09,9.104848279681629180e-09 +0.000000000000000000e+00,2.467514285821815264e-10,4.935028571643630528e-10,7.402542857465445275e-10,9.870057143287258987e-10,1.233757142910907270e-09,1.480508571493088641e-09,1.727260000075270013e-09,1.974011428657451384e-09,2.220762857239632962e-09,2.467514285821814540e-09,2.714265714403996118e-09,2.961017142986177696e-09,3.207768571568359274e-09,3.454520000150540852e-09,3.701271428732722431e-09,3.948022857314903595e-09,4.194774285897084759e-09,4.441525714479265924e-09,4.688277143061447088e-09,4.935028571643628253e-09,5.181780000225809417e-09,5.428531428807990582e-09,5.675282857390171746e-09,5.922034285972352911e-09,6.168785714554534075e-09,6.415537143136715240e-09,6.662288571718896404e-09,6.909040000301077569e-09,7.155791428883258733e-09,7.402542857465439898e-09,7.649294286047621062e-09,7.896045714629802227e-09,8.142797143211983391e-09,8.389548571794164556e-09,8.636300000376345720e-09,8.883051428958526885e-09,9.129802857540708049e-09,9.376554286122889214e-09,9.623305714705070378e-09,9.870057143287251543e-09,1.011680857186943271e-08,1.036356000045161387e-08,1.061031142903379504e-08,1.085706285761597620e-08,1.110381428619815737e-08,1.135056571478033853e-08,1.159731714336251969e-08,1.184406857194470086e-08,1.209082000052688202e-08,1.233757142910906319e-08,1.258432285769124435e-08,1.283107428627342552e-08,1.307782571485560668e-08,1.332457714343778785e-08,1.357132857201996901e-08,1.381808000060215017e-08,1.406483142918433134e-08,1.431158285776651250e-08,1.455833428634869367e-08,1.480508571493087483e-08,1.505183714351305600e-08,1.529858857209523551e-08,1.554534000067741502e-08 +0.000000000000000000e+00,2.954569915794872279e-10,5.909139831589744558e-10,8.863709747384616320e-10,1.181827966317948705e-09,1.477284957897435778e-09,1.772741949476922850e-09,2.068198941056409923e-09,2.363655932635896996e-09,2.659112924215384069e-09,2.954569915794871142e-09,3.250026907374358215e-09,3.545483898953845287e-09,3.840940890533331947e-09,4.136397882112819019e-09,4.431854873692306092e-09,4.727311865271793165e-09,5.022768856851280238e-09,5.318225848430767311e-09,5.613682840010254384e-09,5.909139831589741456e-09,6.204596823169228529e-09,6.500053814748715602e-09,6.795510806328202675e-09,7.090967797907689748e-09,7.386424789487176820e-09,7.681881781066663893e-09,7.977338772646150966e-09,8.272795764225638039e-09,8.568252755805125112e-09,8.863709747384612184e-09,9.159166738964099257e-09,9.454623730543586330e-09,9.750080722123073403e-09,1.004553771370256048e-08,1.034099470528204755e-08,1.063645169686153462e-08,1.093190868844102169e-08,1.122736568002050877e-08,1.152282267159999584e-08,1.181827966317948291e-08,1.211373665475896999e-08,1.240919364633845706e-08,1.270465063791794413e-08,1.300010762949743120e-08,1.329556462107691828e-08,1.359102161265640535e-08,1.388647860423589242e-08,1.418193559581537950e-08,1.447739258739486657e-08,1.477284957897435364e-08,1.506830657055384071e-08,1.536376356213332779e-08,1.565922055371281486e-08,1.595467754529230193e-08,1.625013453687178900e-08,1.654559152845127608e-08,1.684104852003076315e-08,1.713650551161025022e-08,1.743196250318973730e-08,1.772741949476922437e-08,1.802287648634871144e-08,1.831833347792819851e-08,1.861379046950768559e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.648128197735209066e-11,1.129625639547041813e-10,1.694438459320562590e-10,2.259251279094083368e-10,2.824064098867604145e-10,3.388876918641125181e-10,3.953689738414646217e-10,4.518502558188167252e-10,5.083315377961688288e-10,5.648128197735209324e-10,6.212941017508730360e-10,6.777753837282251396e-10,7.342566657055772431e-10,7.907379476829293467e-10,8.472192296602814503e-10,9.037005116376335539e-10,9.601817936149856575e-10,1.016663075592337658e-09,1.073144357569689658e-09,1.129625639547041658e-09,1.186106921524393658e-09,1.242588203501745658e-09,1.299069485479097659e-09,1.355550767456449659e-09,1.412032049433801659e-09,1.468513331411153659e-09,1.524994613388505659e-09,1.581475895365857659e-09,1.637957177343209660e-09,1.694438459320561660e-09,1.750919741297913660e-09,1.807401023275265660e-09,1.863882305252617454e-09,1.920363587229969247e-09,1.976844869207321040e-09,2.033326151184672834e-09,2.089807433162024627e-09,2.146288715139376421e-09,2.202769997116728214e-09,2.259251279094080007e-09,2.315732561071431801e-09,2.372213843048783594e-09,2.428695125026135387e-09,2.485176407003487181e-09,2.541657688980838974e-09,2.598138970958190768e-09,2.654620252935542561e-09,2.711101534912894354e-09,2.767582816890246148e-09,2.824064098867597941e-09,2.880545380844949735e-09,2.937026662822301528e-09,2.993507944799653321e-09,3.049989226777005115e-09,3.106470508754356908e-09,3.162951790731708701e-09,3.219433072709060495e-09,3.275914354686412288e-09,3.332395636663764082e-09,3.388876918641115875e-09,3.445358200618467668e-09,3.501839482595819462e-09,3.558320764573171255e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,5.648128197753123988e-11,1.129625639550624798e-10,1.694438459325937196e-10,2.259251279101249595e-10,2.824064098876561994e-10,3.388876918651874393e-10,3.953689738427186792e-10,4.518502558202499191e-10,5.083315377977812106e-10,5.648128197753125022e-10,6.212941017528437938e-10,6.777753837303750854e-10,7.342566657079063770e-10,7.907379476854376685e-10,8.472192296629689601e-10,9.037005116405002517e-10,9.601817936180315433e-10,1.016663075595562835e-09,1.073144357573094126e-09,1.129625639550625418e-09,1.186106921528156710e-09,1.242588203505688001e-09,1.299069485483219293e-09,1.355550767460750584e-09,1.412032049438281876e-09,1.468513331415813167e-09,1.524994613393344459e-09,1.581475895370875751e-09,1.637957177348407042e-09,1.694438459325938334e-09,1.750919741303469625e-09,1.807401023281000917e-09,1.863882305258532209e-09,1.920363587236063500e-09,1.976844869213594792e-09,2.033326151191126083e-09,2.089807433168657375e-09,2.146288715146188666e-09,2.202769997123719958e-09,2.259251279101251250e-09,2.315732561078782541e-09,2.372213843056313833e-09,2.428695125033845124e-09,2.485176407011376416e-09,2.541657688988907708e-09,2.598138970966438999e-09,2.654620252943970291e-09,2.711101534921501582e-09,2.767582816899032874e-09,2.824064098876564165e-09,2.880545380854095457e-09,2.937026662831626749e-09,2.993507944809158040e-09,3.049989226786689332e-09,3.106470508764220623e-09,3.162951790741751915e-09,3.219433072719283206e-09,3.275914354696814498e-09,3.332395636674345790e-09,3.388876918651877081e-09,3.445358200629408373e-09,3.501839482606939664e-09,3.558320764584470956e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.191614553888241685e-21,-4.383229107776483371e-21,-6.574843661664725056e-21,-8.766458215552966741e-21,-1.095807276944120843e-20,-1.314968732332945011e-20,-1.534130187721769180e-20,-1.753291643110593348e-20,-1.972453098499417517e-20,-2.191614553888241685e-20,-2.410776009277065854e-20,-2.629937464665890022e-20,-2.849098920054714191e-20,-3.068260375443538359e-20,-3.287421830832362528e-20,-3.506583286221186696e-20,-3.725744741610010865e-20,-3.944906196998835033e-20,-4.164067652387659202e-20,-4.383229107776483371e-20,-4.602390563165307539e-20,-4.821552018554131708e-20,-5.040713473942955876e-20,-5.259874929331780045e-20,-5.479036384720604213e-20,-5.698197840109428382e-20,-5.917359295498252550e-20,-6.136520750887076719e-20,-6.355682206275900887e-20,-6.574843661664725056e-20,-6.794005117053549224e-20,-7.013166572442373393e-20,-7.232328027831197561e-20,-7.451489483220021730e-20,-7.670650938608845898e-20,-7.889812393997670067e-20,-8.108973849386494235e-20,-8.328135304775318404e-20,-8.547296760164142572e-20,-8.766458215552966741e-20,-8.985619670941790910e-20,-9.204781126330615078e-20,-9.423942581719439247e-20,-9.643104037108263415e-20,-9.862265492497087584e-20,-1.008142694788591175e-19,-1.030058840327473592e-19,-1.051974985866356009e-19,-1.073891131405238426e-19,-1.095807276944120843e-19,-1.117723422483003259e-19,-1.139639568021885676e-19,-1.161555713560768093e-19,-1.183471859099650510e-19,-1.205388004638532927e-19,-1.227304150177415344e-19,-1.249220295716297761e-19,-1.271136441255180177e-19,-1.293052586794062594e-19,-1.314968732332945011e-19,-1.336884877871827428e-19,-1.358801023410709845e-19,-1.380717168949592262e-19 +0.000000000000000000e+00,-2.679047390974350249e-21,-5.358094781948700499e-21,-8.037142172923050372e-21,-1.071618956389739949e-20,-1.339523695487174861e-20,-1.607428434584609774e-20,-1.875333173682044535e-20,-2.143237912779479297e-20,-2.411142651876914058e-20,-2.679047390974348820e-20,-2.946952130071783582e-20,-3.214856869169218343e-20,-3.482761608266653105e-20,-3.750666347364087867e-20,-4.018571086461522628e-20,-4.286475825558957390e-20,-4.554380564656392152e-20,-4.822285303753826913e-20,-5.090190042851261675e-20,-5.358094781948696436e-20,-5.625999521046131800e-20,-5.893904260143567163e-20,-6.161808999241002527e-20,-6.429713738338437890e-20,-6.697618477435873254e-20,-6.965523216533308617e-20,-7.233427955630743981e-20,-7.501332694728179344e-20,-7.769237433825614708e-20,-8.037142172923050071e-20,-8.305046912020485435e-20,-8.572951651117920798e-20,-8.840856390215356162e-20,-9.108761129312791525e-20,-9.376665868410226889e-20,-9.644570607507662252e-20,-9.912475346605097616e-20,-1.018038008570253298e-19,-1.044828482479996834e-19,-1.071618956389740371e-19,-1.098409430299483907e-19,-1.125199904209227323e-19,-1.151990378118970739e-19,-1.178780852028714155e-19,-1.205571325938457571e-19,-1.232361799848200987e-19,-1.259152273757944403e-19,-1.285942747667687819e-19,-1.312733221577431235e-19,-1.339523695487174651e-19,-1.366314169396918067e-19,-1.393104643306661483e-19,-1.419895117216404899e-19,-1.446685591126148315e-19,-1.473476065035891731e-19,-1.500266538945635147e-19,-1.527057012855378563e-19,-1.553847486765121979e-19,-1.580637960674865395e-19,-1.607428434584608811e-19,-1.634218908494352227e-19,-1.661009382404095643e-19,-1.687799856313839059e-19 +0.000000000000000000e+00,3.955009641669882156e-10,7.910019283339764312e-10,1.186502892500964698e-09,1.582003856667953069e-09,1.977504820834941440e-09,2.373005785001929811e-09,2.768506749168918181e-09,3.164007713335906552e-09,3.559508677502894923e-09,3.955009641669882880e-09,4.350510605836870837e-09,4.746011570003858794e-09,5.141512534170846751e-09,5.537013498337834708e-09,5.932514462504822665e-09,6.328015426671810622e-09,6.723516390838798579e-09,7.119017355005786536e-09,7.514518319172774494e-09,7.910019283339762451e-09,8.305520247506750408e-09,8.701021211673738365e-09,9.096522175840726322e-09,9.492023140007714279e-09,9.887524104174702236e-09,1.028302506834169019e-08,1.067852603250867815e-08,1.107402699667566611e-08,1.146952796084265406e-08,1.186502892500964202e-08,1.226052988917662998e-08,1.265603085334361794e-08,1.305153181751060589e-08,1.344703278167759385e-08,1.384253374584458181e-08,1.423803471001156976e-08,1.463353567417855772e-08,1.502903663834554568e-08,1.542453760251253364e-08,1.582003856667952159e-08,1.621553953084650955e-08,1.661104049501349751e-08,1.700654145918048546e-08,1.740204242334747342e-08,1.779754338751446138e-08,1.819304435168144934e-08,1.858854531584843729e-08,1.898404628001542525e-08,1.937954724418241321e-08,1.977504820834940116e-08,2.017054917251638912e-08,2.056605013668337708e-08,2.096155110085036503e-08,2.135705206501735299e-08,2.175255302918434095e-08,2.214805399335132891e-08,2.254355495751831686e-08,2.293905592168530482e-08,2.333455688585229278e-08,2.373005785001928073e-08,2.412555881418626869e-08,2.452105977835325665e-08,2.491656074252024461e-08 +0.000000000000000000e+00,2.388270512360017715e-21,4.776541024720035431e-21,7.164811537080053522e-21,9.553082049440072366e-21,1.194135256180009121e-20,1.432962307416011005e-20,1.671789358652012739e-20,1.910616409888014473e-20,2.149443461124016207e-20,2.388270512360017941e-20,2.627097563596019675e-20,2.865924614832021409e-20,3.104751666068023143e-20,3.343578717304024877e-20,3.582405768540026611e-20,3.821232819776028345e-20,4.060059871012030079e-20,4.298886922248031813e-20,4.537713973484033546e-20,4.776541024720035280e-20,5.015368075956037014e-20,5.254195127192038748e-20,5.493022178428040482e-20,5.731849229664041614e-20,5.970676280900042746e-20,6.209503332136043878e-20,6.448330383372045011e-20,6.687157434608046143e-20,6.925984485844047275e-20,7.164811537080048407e-20,7.403638588316049539e-20,7.642465639552050671e-20,7.881292690788051803e-20,8.120119742024052935e-20,8.358946793260054067e-20,8.597773844496055199e-20,8.836600895732056331e-20,9.075427946968057463e-20,9.314254998204058595e-20,9.553082049440059727e-20,9.791909100676060860e-20,1.003073615191206199e-19,1.026956320314806312e-19,1.050839025438406426e-19,1.074721730562006539e-19,1.098604435685606652e-19,1.122487140809206765e-19,1.146369845932806878e-19,1.170252551056406992e-19,1.194135256180007105e-19,1.218017961303607218e-19,1.241900666427207331e-19,1.265783371550807444e-19,1.289666076674407558e-19,1.313548781798007671e-19,1.337431486921607784e-19,1.361314192045207897e-19,1.385196897168808010e-19,1.409079602292408124e-19,1.432962307416008237e-19,1.456845012539608350e-19,1.480727717663208463e-19,1.504610422786808577e-19 +0.000000000000000000e+00,2.749018712696572854e-21,5.498037425393145707e-21,8.247056138089717808e-21,1.099607485078628991e-20,1.374509356348286201e-20,1.649411227617943562e-20,1.924313098887600922e-20,2.199214970157258283e-20,2.474116841426915643e-20,2.749018712696573004e-20,3.023920583966230365e-20,3.298822455235887725e-20,3.573724326505545086e-20,3.848626197775202446e-20,4.123528069044859807e-20,4.398429940314517168e-20,4.673331811584174528e-20,4.948233682853831889e-20,5.223135554123489249e-20,5.498037425393147212e-20,5.772939296662804572e-20,6.047841167932461933e-20,6.322743039202119293e-20,6.597644910471776654e-20,6.872546781741434015e-20,7.147448653011091375e-20,7.422350524280748736e-20,7.697252395550406096e-20,7.972154266820063457e-20,8.247056138089720818e-20,8.521958009359378178e-20,8.796859880629035539e-20,9.071761751898692899e-20,9.346663623168350260e-20,9.621565494438007621e-20,9.896467365707664981e-20,1.017136923697732234e-19,1.044627110824697970e-19,1.072117297951663706e-19,1.099607485078629442e-19,1.127097672205595178e-19,1.154587859332560914e-19,1.182078046459526651e-19,1.209568233586492387e-19,1.237058420713458123e-19,1.264548607840423859e-19,1.292038794967389595e-19,1.319528982094355331e-19,1.347019169221321067e-19,1.374509356348286803e-19,1.401999543475252539e-19,1.429489730602218275e-19,1.456979917729184011e-19,1.484470104856149747e-19,1.511960291983115483e-19,1.539450479110081219e-19,1.566940666237046955e-19,1.594430853364012691e-19,1.621921040490978427e-19,1.649411227617944164e-19,1.676901414744909900e-19,1.704391601871875636e-19,1.731881788998841372e-19 +0.000000000000000000e+00,3.955009641717267714e-10,7.910019283434535429e-10,1.186502892515180211e-09,1.582003856686906879e-09,1.977504820858633547e-09,2.373005785030360422e-09,2.768506749202087297e-09,3.164007713373814171e-09,3.559508677545541046e-09,3.955009641717267921e-09,4.350510605888994796e-09,4.746011570060721671e-09,5.141512534232448546e-09,5.537013498404175420e-09,5.932514462575902295e-09,6.328015426747629170e-09,6.723516390919356045e-09,7.119017355091082920e-09,7.514518319262809795e-09,7.910019283434537497e-09,8.305520247606265199e-09,8.701021211777992901e-09,9.096522175949720603e-09,9.492023140121448305e-09,9.887524104293176007e-09,1.028302506846490371e-08,1.067852603263663141e-08,1.107402699680835911e-08,1.146952796098008681e-08,1.186502892515181452e-08,1.226052988932354222e-08,1.265603085349526992e-08,1.305153181766699762e-08,1.344703278183872532e-08,1.384253374601045303e-08,1.423803471018218073e-08,1.463353567435390843e-08,1.502903663852563613e-08,1.542453760269736218e-08,1.582003856686908823e-08,1.621553953104081428e-08,1.661104049521254032e-08,1.700654145938426637e-08,1.740204242355599242e-08,1.779754338772771847e-08,1.819304435189944451e-08,1.858854531607117056e-08,1.898404628024289661e-08,1.937954724441462266e-08,1.977504820858634870e-08,2.017054917275807475e-08,2.056605013692980080e-08,2.096155110110152685e-08,2.135705206527325290e-08,2.175255302944497894e-08,2.214805399361670499e-08,2.254355495778843104e-08,2.293905592196015709e-08,2.333455688613188313e-08,2.373005785030360918e-08,2.412555881447533523e-08,2.452105977864706128e-08,2.491656074281878732e-08 +0.000000000000000000e+00,-1.539241906729034544e-21,-3.078483813458069088e-21,-4.617725720187103632e-21,-6.156967626916138176e-21,-7.696209533645173472e-21,-9.235451440374208768e-21,-1.077469334710324406e-20,-1.231393525383227936e-20,-1.385317716056131466e-20,-1.539241906729034995e-20,-1.693166097401938525e-20,-1.847090288074842055e-20,-2.001014478747745584e-20,-2.154938669420649114e-20,-2.308862860093552644e-20,-2.462787050766456173e-20,-2.616711241439359703e-20,-2.770635432112262931e-20,-2.924559622785166160e-20,-3.078483813458069389e-20,-3.232408004130972618e-20,-3.386332194803875846e-20,-3.540256385476779075e-20,-3.694180576149682304e-20,-3.848104766822585532e-20,-4.002028957495488761e-20,-4.155953148168391990e-20,-4.309877338841295218e-20,-4.463801529514198447e-20,-4.617725720187101676e-20,-4.771649910860004905e-20,-4.925574101532908133e-20,-5.079498292205811362e-20,-5.233422482878714591e-20,-5.387346673551617819e-20,-5.541270864224521048e-20,-5.695195054897424277e-20,-5.849119245570327506e-20,-6.003043436243230734e-20,-6.156967626916133963e-20,-6.310891817589037192e-20,-6.464816008261940420e-20,-6.618740198934843649e-20,-6.772664389607746878e-20,-6.926588580280650106e-20,-7.080512770953553335e-20,-7.234436961626456564e-20,-7.388361152299359793e-20,-7.542285342972263021e-20,-7.696209533645166250e-20,-7.850133724318069479e-20,-8.004057914990972707e-20,-8.157982105663875936e-20,-8.311906296336779165e-20,-8.465830487009682393e-20,-8.619754677682585622e-20,-8.773678868355488851e-20,-8.927603059028392080e-20,-9.081527249701295308e-20,-9.235451440374198537e-20,-9.389375631047101766e-20,-9.543299821720004994e-20,-9.697224012392908223e-20 +0.000000000000000000e+00,-1.857699638309758565e-21,-3.715399276619517131e-21,-5.573098914929275320e-21,-7.430798553239032757e-21,-9.288498191548790194e-21,-1.114619782985854763e-20,-1.300389746816830507e-20,-1.486159710647806250e-20,-1.671929674478782145e-20,-1.857699638309758039e-20,-2.043469602140733933e-20,-2.229239565971709827e-20,-2.415009529802685721e-20,-2.600779493633661615e-20,-2.786549457464637510e-20,-2.972319421295613103e-20,-3.158089385126588696e-20,-3.343859348957564289e-20,-3.529629312788539882e-20,-3.715399276619515476e-20,-3.901169240450491069e-20,-4.086939204281466662e-20,-4.272709168112442255e-20,-4.458479131943417849e-20,-4.644249095774393442e-20,-4.830019059605369035e-20,-5.015789023436344628e-20,-5.201558987267320222e-20,-5.387328951098295815e-20,-5.573098914929271408e-20,-5.758868878760246399e-20,-5.944638842591221391e-20,-6.130408806422196382e-20,-6.316178770253171373e-20,-6.501948734084146365e-20,-6.687718697915121356e-20,-6.873488661746096348e-20,-7.059258625577071339e-20,-7.245028589408046330e-20,-7.430798553239021322e-20,-7.616568517069996313e-20,-7.802338480900971304e-20,-7.988108444731946296e-20,-8.173878408562921287e-20,-8.359648372393896279e-20,-8.545418336224871270e-20,-8.731188300055846261e-20,-8.916958263886821253e-20,-9.102728227717796244e-20,-9.288498191548771235e-20,-9.474268155379746227e-20,-9.660038119210721218e-20,-9.845808083041696210e-20,-1.003157804687267120e-19,-1.021734801070364619e-19,-1.040311797453462118e-19,-1.058888793836559618e-19,-1.077465790219657117e-19,-1.096042786602754616e-19,-1.114619782985852115e-19,-1.133196779368949614e-19,-1.151773775752047113e-19,-1.170350772135144612e-19 +0.000000000000000000e+00,2.689926037221606278e-10,5.379852074443212557e-10,8.069778111664818318e-10,1.075970414888642305e-09,1.344963018610802777e-09,1.613955622332963250e-09,1.882948226055123723e-09,2.151940829777284196e-09,2.420933433499444668e-09,2.689926037221605141e-09,2.958918640943765614e-09,3.227911244665926087e-09,3.496903848388086559e-09,3.765896452110246619e-09,4.034889055832407091e-09,4.303881659554567564e-09,4.572874263276728037e-09,4.841866866998888510e-09,5.110859470721048982e-09,5.379852074443209455e-09,5.648844678165369928e-09,5.917837281887530401e-09,6.186829885609690873e-09,6.455822489331851346e-09,6.724815093054011819e-09,6.993807696776172292e-09,7.262800300498332764e-09,7.531792904220493237e-09,7.800785507942653710e-09,8.069778111664814183e-09,8.338770715386974655e-09,8.607763319109135128e-09,8.876755922831295601e-09,9.145748526553456074e-09,9.414741130275616546e-09,9.683733733997777019e-09,9.952726337719937492e-09,1.022171894144209796e-08,1.049071154516425844e-08,1.075970414888641891e-08,1.102869675260857938e-08,1.129768935633073986e-08,1.156668196005290033e-08,1.183567456377506080e-08,1.210466716749722127e-08,1.237365977121938175e-08,1.264265237494154222e-08,1.291164497866370269e-08,1.318063758238586316e-08,1.344963018610802364e-08,1.371862278983018411e-08,1.398761539355234458e-08,1.425660799727450506e-08,1.452560060099666553e-08,1.479459320471882600e-08,1.506358580844098647e-08,1.533257841216314860e-08,1.560157101588531073e-08,1.587056361960747286e-08,1.613955622332963498e-08,1.640854882705179711e-08,1.667754143077395924e-08,1.694653403449612136e-08 +0.000000000000000000e+00,1.708661336895885266e-21,3.417322673791770531e-21,5.125984010687656173e-21,6.834645347583542567e-21,8.543306684479428961e-21,1.025196802137531535e-20,1.196062935827120175e-20,1.366929069516708814e-20,1.537795203206297303e-20,1.708661336895885792e-20,1.879527470585474281e-20,2.050393604275062770e-20,2.221259737964651259e-20,2.392125871654239748e-20,2.562992005343828237e-20,2.733858139033417027e-20,2.904724272723005817e-20,3.075590406412594606e-20,3.246456540102183396e-20,3.417322673791772186e-20,3.588188807481360976e-20,3.759054941170949766e-20,3.929921074860538556e-20,4.100787208550127346e-20,4.271653342239716135e-20,4.442519475929304925e-20,4.613385609618893715e-20,4.784251743308482505e-20,4.955117876998071295e-20,5.125984010687660085e-20,5.296850144377248875e-20,5.467716278066837665e-20,5.638582411756426454e-20,5.809448545446015244e-20,5.980314679135604034e-20,6.151180812825192824e-20,6.322046946514781614e-20,6.492913080204370404e-20,6.663779213893959194e-20,6.834645347583547983e-20,7.005511481273136773e-20,7.176377614962725563e-20,7.347243748652314353e-20,7.518109882341903143e-20,7.688976016031491933e-20,7.859842149721080723e-20,8.030708283410669512e-20,8.201574417100258302e-20,8.372440550789847092e-20,8.543306684479435882e-20,8.714172818169024672e-20,8.885038951858613462e-20,9.055905085548202252e-20,9.226771219237791042e-20,9.397637352927379831e-20,9.568503486616968621e-20,9.739369620306557411e-20,9.910235753996146201e-20,1.008110188768573499e-19,1.025196802137532378e-19,1.042283415506491257e-19,1.059370028875450136e-19,1.076456642244409015e-19 +0.000000000000000000e+00,2.032562713100331417e-21,4.065125426200662835e-21,6.097688139300994628e-21,8.130250852401327174e-21,1.016281356550165972e-20,1.219537627860199227e-20,1.422793899170232331e-20,1.626050170480265435e-20,1.829306441790298539e-20,2.032562713100331643e-20,2.235818984410364747e-20,2.439075255720397851e-20,2.642331527030430955e-20,2.845587798340464060e-20,3.048844069650497164e-20,3.252100340960530268e-20,3.455356612270563372e-20,3.658612883580596476e-20,3.861869154890629580e-20,4.065125426200662684e-20,4.268381697510695789e-20,4.471637968820728893e-20,4.674894240130761997e-20,4.878150511440795101e-20,5.081406782750828205e-20,5.284663054060861309e-20,5.487919325370893811e-20,5.691175596680926916e-20,5.894431867990960020e-20,6.097688139300993124e-20,6.300944410611026228e-20,6.504200681921059332e-20,6.707456953231092436e-20,6.910713224541125540e-20,7.113969495851158644e-20,7.317225767161191749e-20,7.520482038471224853e-20,7.723738309781257957e-20,7.926994581091291061e-20,8.130250852401324165e-20,8.333507123711357269e-20,8.536763395021390373e-20,8.740019666331423477e-20,8.943275937641456582e-20,9.146532208951489686e-20,9.349788480261522790e-20,9.553044751571555894e-20,9.756301022881588998e-20,9.959557294191622102e-20,1.016281356550165521e-19,1.036606983681168831e-19,1.056932610812172141e-19,1.077258237943175452e-19,1.097583865074178762e-19,1.117909492205182073e-19,1.138235119336185383e-19,1.158560746467188694e-19,1.178886373598192004e-19,1.199212000729195314e-19,1.219537627860198625e-19,1.239863254991201935e-19,1.260188882122205246e-19,1.280514509253208556e-19 +0.000000000000000000e+00,2.689926037247425170e-10,5.379852074494850341e-10,8.069778111742275511e-10,1.075970414898970068e-09,1.344963018623712585e-09,1.613955622348455102e-09,1.882948226073197619e-09,2.151940829797940136e-09,2.420933433522682653e-09,2.689926037247425170e-09,2.958918640972167687e-09,3.227911244696910204e-09,3.496903848421652721e-09,3.765896452146395238e-09,4.034889055871137342e-09,4.303881659595879445e-09,4.572874263320621549e-09,4.841866867045363652e-09,5.110859470770105756e-09,5.379852074494847859e-09,5.648844678219589963e-09,5.917837281944332066e-09,6.186829885669074169e-09,6.455822489393816273e-09,6.724815093118558376e-09,6.993807696843300480e-09,7.262800300568042583e-09,7.531792904292785514e-09,7.800785508017528445e-09,8.069778111742271375e-09,8.338770715467014306e-09,8.607763319191757236e-09,8.876755922916500167e-09,9.145748526641243098e-09,9.414741130365986028e-09,9.683733734090728959e-09,9.952726337815471890e-09,1.022171894154021482e-08,1.049071154526495775e-08,1.075970414898970068e-08,1.102869675271444361e-08,1.129768935643918654e-08,1.156668196016392947e-08,1.183567456388867240e-08,1.210466716761341533e-08,1.237365977133815827e-08,1.264265237506290120e-08,1.291164497878764413e-08,1.318063758251238706e-08,1.344963018623712999e-08,1.371862278996187292e-08,1.398761539368661585e-08,1.425660799741135878e-08,1.452560060113610171e-08,1.479459320486084464e-08,1.506358580858558757e-08,1.533257841231033050e-08,1.560157101603507343e-08,1.587056361975981636e-08,1.613955622348455929e-08,1.640854882720930222e-08,1.667754143093404516e-08,1.694653403465878809e-08 +0.000000000000000000e+00,-9.413615538381950978e-22,-1.882723107676390196e-21,-2.824084661514585481e-21,-3.765446215352781143e-21,-4.706807769190976805e-21,-5.648169323029172468e-21,-6.589530876867368130e-21,-7.530892430705563792e-21,-8.472253984543758701e-21,-9.413615538381953611e-21,-1.035497709222014852e-20,-1.129633864605834343e-20,-1.223770019989653834e-20,-1.317906175373473325e-20,-1.412042330757292816e-20,-1.506178486141112457e-20,-1.600314641524932099e-20,-1.694450796908751740e-20,-1.788586952292571382e-20,-1.882723107676391023e-20,-1.976859263060210665e-20,-2.070995418444030306e-20,-2.165131573827849947e-20,-2.259267729211669589e-20,-2.353403884595489230e-20,-2.447540039979308872e-20,-2.541676195363128513e-20,-2.635812350746948155e-20,-2.729948506130767796e-20,-2.824084661514587437e-20,-2.918220816898407079e-20,-3.012356972282226720e-20,-3.106493127666046362e-20,-3.200629283049866003e-20,-3.294765438433685645e-20,-3.388901593817505286e-20,-3.483037749201324928e-20,-3.577173904585144569e-20,-3.671310059968964210e-20,-3.765446215352783852e-20,-3.859582370736603493e-20,-3.953718526120423135e-20,-4.047854681504242776e-20,-4.141990836888062418e-20,-4.236126992271882059e-20,-4.330263147655701700e-20,-4.424399303039521342e-20,-4.518535458423340983e-20,-4.612671613807160625e-20,-4.706807769190980266e-20,-4.800943924574799908e-20,-4.895080079958619549e-20,-4.989216235342439190e-20,-5.083352390726258832e-20,-5.177488546110078473e-20,-5.271624701493898115e-20,-5.365760856877717756e-20,-5.459897012261537999e-20,-5.554033167645358243e-20,-5.648169323029178486e-20,-5.742305478412998729e-20,-5.836441633796818973e-20,-5.930577789180639216e-20 +0.000000000000000000e+00,-1.212099744086509344e-21,-2.424199488173018687e-21,-3.636299232259528219e-21,-4.848398976346038127e-21,-6.060498720432548034e-21,-7.272598464519057942e-21,-8.484698208605567098e-21,-9.696797952692076253e-21,-1.090889769677858541e-20,-1.212099744086509456e-20,-1.333309718495160372e-20,-1.454519692903811288e-20,-1.575729667312462203e-20,-1.696939641721113119e-20,-1.818149616129764034e-20,-1.939359590538414950e-20,-2.060569564947065865e-20,-2.181779539355716781e-20,-2.302989513764367696e-20,-2.424199488173018612e-20,-2.545409462581669527e-20,-2.666619436990320443e-20,-2.787829411398971058e-20,-2.909039385807621973e-20,-3.030249360216272889e-20,-3.151459334624923804e-20,-3.272669309033574720e-20,-3.393879283442225635e-20,-3.515089257850876551e-20,-3.636299232259527467e-20,-3.757509206668178382e-20,-3.878719181076829298e-20,-3.999929155485480213e-20,-4.121139129894131129e-20,-4.242349104302782044e-20,-4.363559078711432960e-20,-4.484769053120083875e-20,-4.605979027528734791e-20,-4.727189001937385706e-20,-4.848398976346036622e-20,-4.969608950754687538e-20,-5.090818925163338453e-20,-5.212028899571989369e-20,-5.333238873980640284e-20,-5.454448848389291200e-20,-5.575658822797942115e-20,-5.696868797206593031e-20,-5.818078771615243946e-20,-5.939288746023894862e-20,-6.060498720432545778e-20,-6.181708694841196693e-20,-6.302918669249847609e-20,-6.424128643658498524e-20,-6.545338618067149440e-20,-6.666548592475800355e-20,-6.787758566884451271e-20,-6.908968541293102186e-20,-7.030178515701753102e-20,-7.151388490110404017e-20,-7.272598464519054933e-20,-7.393808438927705849e-20,-7.515018413336356764e-20,-7.636228387745007680e-20 +0.000000000000000000e+00,1.502263350287986987e-10,3.004526700575973974e-10,4.506790050863960703e-10,6.009053401151946915e-10,7.511316751439933126e-10,9.013580101727919338e-10,1.051584345201590555e-09,1.201810680230389176e-09,1.352037015259187797e-09,1.502263350287986418e-09,1.652489685316785040e-09,1.802716020345583661e-09,1.952942355374382282e-09,2.103168690403181110e-09,2.253395025431979938e-09,2.403621360460778766e-09,2.553847695489577594e-09,2.704074030518376422e-09,2.854300365547175250e-09,3.004526700575974078e-09,3.154753035604772906e-09,3.304979370633571734e-09,3.455205705662370562e-09,3.605432040691169390e-09,3.755658375719968631e-09,3.905884710748767873e-09,4.056111045777567114e-09,4.206337380806366356e-09,4.356563715835165597e-09,4.506790050863964839e-09,4.657016385892764080e-09,4.807242720921563322e-09,4.957469055950362564e-09,5.107695390979161805e-09,5.257921726007961047e-09,5.408148061036760288e-09,5.558374396065559530e-09,5.708600731094358771e-09,5.858827066123158013e-09,6.009053401151957254e-09,6.159279736180756496e-09,6.309506071209555738e-09,6.459732406238354979e-09,6.609958741267154221e-09,6.760185076295953462e-09,6.910411411324752704e-09,7.060637746353551945e-09,7.210864081382351187e-09,7.361090416411150428e-09,7.511316751439950497e-09,7.661543086468750566e-09,7.811769421497550635e-09,7.961995756526350703e-09,8.112222091555150772e-09,8.262448426583950841e-09,8.412674761612750910e-09,8.562901096641550978e-09,8.713127431670351047e-09,8.863353766699151116e-09,9.013580101727951185e-09,9.163806436756751253e-09,9.314032771785551322e-09,9.464259106814351391e-09 +0.000000000000000000e+00,1.049399347635200119e-21,2.098798695270400237e-21,3.148198042905600544e-21,4.197597390540801227e-21,5.246996738176001909e-21,6.296396085811202592e-21,7.345795433446403275e-21,8.395194781081603958e-21,9.444594128716804641e-21,1.049399347635200532e-20,1.154339282398720601e-20,1.259279217162240669e-20,1.364219151925760888e-20,1.469159086689280956e-20,1.574099021452801024e-20,1.679038956216321092e-20,1.783978890979841161e-20,1.888918825743361229e-20,1.993858760506881297e-20,2.098798695270401366e-20,2.203738630033921434e-20,2.308678564797441502e-20,2.413618499560961570e-20,2.518558434324481639e-20,2.623498369088001707e-20,2.728438303851521775e-20,2.833378238615041844e-20,2.938318173378561912e-20,3.043258108142081980e-20,3.148198042905602048e-20,3.253137977669122117e-20,3.358077912432642185e-20,3.463017847196162253e-20,3.567957781959682322e-20,3.672897716723202390e-20,3.777837651486722458e-20,3.882777586250242526e-20,3.987717521013762595e-20,4.092657455777282663e-20,4.197597390540802731e-20,4.302537325304322799e-20,4.407477260067842868e-20,4.512417194831362936e-20,4.617357129594883004e-20,4.722297064358403073e-20,4.827236999121923141e-20,4.932176933885443209e-20,5.037116868648963277e-20,5.142056803412483346e-20,5.246996738176003414e-20,5.351936672939523482e-20,5.456876607703043551e-20,5.561816542466563619e-20,5.666756477230083687e-20,5.771696411993603755e-20,5.876636346757123824e-20,5.981576281520643892e-20,6.086516216284163960e-20,6.191456151047684029e-20,6.296396085811204097e-20,6.401336020574724165e-20,6.506275955338244233e-20,6.611215890101764302e-20 +0.000000000000000000e+00,1.351034838522543163e-21,2.702069677045086325e-21,4.053104515567629112e-21,5.404139354090171898e-21,6.755174192612714685e-21,8.106209031135258224e-21,9.457243869657801762e-21,1.080827870818034530e-20,1.215931354670288884e-20,1.351034838522543238e-20,1.486138322374797742e-20,1.621241806227052247e-20,1.756345290079306751e-20,1.891448773931561255e-20,2.026552257783815760e-20,2.161655741636070264e-20,2.296759225488324768e-20,2.431862709340579273e-20,2.566966193192833777e-20,2.702069677045088281e-20,2.837173160897342786e-20,2.972276644749597290e-20,3.107380128601851794e-20,3.242483612454106299e-20,3.377587096306360803e-20,3.512690580158615307e-20,3.647794064010869812e-20,3.782897547863124316e-20,3.918001031715378820e-20,4.053104515567633325e-20,4.188207999419887829e-20,4.323311483272142333e-20,4.458414967124396838e-20,4.593518450976651342e-20,4.728621934828905847e-20,4.863725418681160351e-20,4.998828902533414855e-20,5.133932386385669360e-20,5.269035870237923864e-20,5.404139354090178368e-20,5.539242837942432873e-20,5.674346321794687979e-20,5.809449805646943085e-20,5.944553289499198191e-20,6.079656773351453297e-20,6.214760257203708404e-20,6.349863741055963510e-20,6.484967224908218616e-20,6.620070708760473722e-20,6.755174192612728828e-20,6.890277676464983935e-20,7.025381160317239041e-20,7.160484644169494147e-20,7.295588128021749253e-20,7.430691611874004359e-20,7.565795095726259466e-20,7.700898579578514572e-20,7.836002063430769678e-20,7.971105547283024784e-20,8.106209031135279890e-20,8.241312514987534997e-20,8.376415998839790103e-20,8.511519482692045209e-20 +0.000000000000000000e+00,1.502263350300321284e-10,3.004526700600642568e-10,4.506790050900963594e-10,6.009053401201284102e-10,7.511316751501604611e-10,9.013580101801925120e-10,1.051584345210224666e-09,1.201810680240256820e-09,1.352037015270288975e-09,1.502263350300321129e-09,1.652489685330353283e-09,1.802716020360385437e-09,1.952942355390417592e-09,2.103168690420449746e-09,2.253395025450481900e-09,2.403621360480514055e-09,2.553847695510546209e-09,2.704074030540578363e-09,2.854300365570610517e-09,3.004526700600642672e-09,3.154753035630674826e-09,3.304979370660706980e-09,3.455205705690739134e-09,3.605432040720771289e-09,3.755658375750803443e-09,3.905884710780835183e-09,4.056111045810866924e-09,4.206337380840898665e-09,4.356563715870930405e-09,4.506790050900962146e-09,4.657016385930993887e-09,4.807242720961025627e-09,4.957469055991057368e-09,5.107695391021089109e-09,5.257921726051120849e-09,5.408148061081152590e-09,5.558374396111184331e-09,5.708600731141216071e-09,5.858827066171247812e-09,6.009053401201279553e-09,6.159279736231311293e-09,6.309506071261343034e-09,6.459732406291374775e-09,6.609958741321406515e-09,6.760185076351438256e-09,6.910411411381469997e-09,7.060637746411501737e-09,7.210864081441533478e-09,7.361090416471565219e-09,7.511316751501596959e-09,7.661543086531627873e-09,7.811769421561658786e-09,7.961995756591689700e-09,8.112222091621720613e-09,8.262448426651751527e-09,8.412674761681782440e-09,8.562901096711813354e-09,8.713127431741844267e-09,8.863353766771875181e-09,9.013580101801906094e-09,9.163806436831937008e-09,9.314032771861967921e-09,9.464259106891998835e-09 +0.000000000000000000e+00,-2.378912991948359042e-22,-4.757825983896718083e-22,-7.136738975845077125e-22,-9.515651967793436166e-22,-1.189456495974179521e-21,-1.427347795169015425e-21,-1.665239094363851329e-21,-1.903130393558687233e-21,-2.141021692753523137e-21,-2.378912991948359042e-21,-2.616804291143194946e-21,-2.854695590338030850e-21,-3.092586889532866754e-21,-3.330478188727702658e-21,-3.568369487922538186e-21,-3.806260787117373714e-21,-4.044152086312209242e-21,-4.282043385507044770e-21,-4.519934684701880298e-21,-4.757825983896715826e-21,-4.995717283091551354e-21,-5.233608582286386882e-21,-5.471499881481222410e-21,-5.709391180676057938e-21,-5.947282479870893466e-21,-6.185173779065728994e-21,-6.423065078260564522e-21,-6.660956377455400050e-21,-6.898847676650235578e-21,-7.136738975845070354e-21,-7.374630275039905130e-21,-7.612521574234739905e-21,-7.850412873429574681e-21,-8.088304172624409457e-21,-8.326195471819244232e-21,-8.564086771014079008e-21,-8.801978070208913784e-21,-9.039869369403748559e-21,-9.277760668598583335e-21,-9.515651967793418111e-21,-9.753543266988252886e-21,-9.991434566183087662e-21,-1.022932586537792244e-20,-1.046721716457275721e-20,-1.070510846376759199e-20,-1.094299976296242676e-20,-1.118089106215726154e-20,-1.141878236135209632e-20,-1.165667366054693109e-20,-1.189456495974176587e-20,-1.213245625893660064e-20,-1.237034755813143542e-20,-1.260823885732627019e-20,-1.284613015652110497e-20,-1.308402145571593975e-20,-1.332191275491077452e-20,-1.355980405410560930e-20,-1.379769535330044407e-20,-1.403558665249527885e-20,-1.427347795169011362e-20,-1.451136925088494840e-20,-1.474926055007978318e-20,-1.498715184927461795e-20 +0.000000000000000000e+00,-5.655749661783831010e-22,-1.131149932356766202e-21,-1.696724898535149115e-21,-2.262299864713532028e-21,-2.827874830891914941e-21,-3.393449797070298230e-21,-3.959024763248681519e-21,-4.524599729427064808e-21,-5.090174695605448097e-21,-5.655749661783831387e-21,-6.221324627962214676e-21,-6.786899594140597965e-21,-7.352474560318981254e-21,-7.918049526497364543e-21,-8.483624492675747832e-21,-9.049199458854131121e-21,-9.614774425032514410e-21,-1.018034939121089770e-20,-1.074592435738928099e-20,-1.131149932356766428e-20,-1.187707428974604757e-20,-1.244264925592443086e-20,-1.300822422210281414e-20,-1.357379918828119894e-20,-1.413937415445958373e-20,-1.470494912063796853e-20,-1.527052408681635332e-20,-1.583609905299473811e-20,-1.640167401917312291e-20,-1.696724898535150770e-20,-1.753282395152989249e-20,-1.809839891770827729e-20,-1.866397388388666208e-20,-1.922954885006504688e-20,-1.979512381624343167e-20,-2.036069878242181646e-20,-2.092627374860020126e-20,-2.149184871477858605e-20,-2.205742368095697084e-20,-2.262299864713535564e-20,-2.318857361331374043e-20,-2.375414857949212523e-20,-2.431972354567051002e-20,-2.488529851184889481e-20,-2.545087347802727961e-20,-2.601644844420566440e-20,-2.658202341038404919e-20,-2.714759837656243399e-20,-2.771317334274081878e-20,-2.827874830891920358e-20,-2.884432327509758837e-20,-2.940989824127597316e-20,-2.997547320745435796e-20,-3.054104817363274275e-20,-3.110662313981112754e-20,-3.167219810598951234e-20,-3.223777307216789713e-20,-3.280334803834628193e-20,-3.336892300452466672e-20,-3.393449797070305151e-20,-3.450007293688143631e-20,-3.506564790305982110e-20,-3.563122286923820589e-20 +0.000000000000000000e+00,5.424247167224898889e-11,1.084849433444979778e-10,1.627274150167469731e-10,2.169698866889959814e-10,2.712123583612449897e-10,3.254548300334939980e-10,3.796973017057430062e-10,4.339397733779920145e-10,4.881822450502410228e-10,5.424247167224899794e-10,5.966671883947389359e-10,6.509096600669878925e-10,7.051521317392368491e-10,7.593946034114858057e-10,8.136370750837347622e-10,8.678795467559837188e-10,9.221220184282326754e-10,9.763644901004816320e-10,1.030606961772730485e-09,1.084849433444979338e-09,1.139091905117228192e-09,1.193334376789477045e-09,1.247576848461725898e-09,1.301819320133974751e-09,1.356061791806223604e-09,1.410304263478472457e-09,1.464546735150721311e-09,1.518789206822970164e-09,1.573031678495219017e-09,1.627274150167467870e-09,1.681516621839716723e-09,1.735759093511965576e-09,1.790001565184214430e-09,1.844244036856463283e-09,1.898486508528712136e-09,1.952728980200961196e-09,2.006971451873210256e-09,2.061213923545459316e-09,2.115456395217708376e-09,2.169698866889957436e-09,2.223941338562206496e-09,2.278183810234455556e-09,2.332426281906704616e-09,2.386668753578953676e-09,2.440911225251202736e-09,2.495153696923451796e-09,2.549396168595700856e-09,2.603638640267949916e-09,2.657881111940198976e-09,2.712123583612448036e-09,2.766366055284697096e-09,2.820608526956946156e-09,2.874850998629195216e-09,2.929093470301444276e-09,2.983335941973693336e-09,3.037578413645942396e-09,3.091820885318191455e-09,3.146063356990440515e-09,3.200305828662689575e-09,3.254548300334938635e-09,3.308790772007187695e-09,3.363033243679436755e-09,3.417275715351685815e-09 +0.000000000000000000e+00,4.749868202922371345e-22,9.499736405844742690e-22,1.424960460876711309e-21,1.899947281168948162e-21,2.374934101461185014e-21,2.849920921753421866e-21,3.324907742045658719e-21,3.799894562337895571e-21,4.274881382630132424e-21,4.749868202922369276e-21,5.224855023214606128e-21,5.699841843506842981e-21,6.174828663799079833e-21,6.649815484091316685e-21,7.124802304383552785e-21,7.599789124675789638e-21,8.074775944968026490e-21,8.549762765260263343e-21,9.024749585552500195e-21,9.499736405844737047e-21,9.974723226136973900e-21,1.044971004642921075e-20,1.092469686672144760e-20,1.139968368701368446e-20,1.187467050730592131e-20,1.234965732759815816e-20,1.282464414789039501e-20,1.329963096818263187e-20,1.377461778847486872e-20,1.424960460876710557e-20,1.472459142905934242e-20,1.519957824935157928e-20,1.567456506964381613e-20,1.614955188993605298e-20,1.662453871022828983e-20,1.709952553052052669e-20,1.757451235081276354e-20,1.804949917110500039e-20,1.852448599139723724e-20,1.899947281168947409e-20,1.947445963198171095e-20,1.994944645227394780e-20,2.042443327256618465e-20,2.089942009285842150e-20,2.137440691315065836e-20,2.184939373344289521e-20,2.232438055373513206e-20,2.279936737402736891e-20,2.327435419431960577e-20,2.374934101461184262e-20,2.422432783490407947e-20,2.469931465519631632e-20,2.517430147548855318e-20,2.564928829578079003e-20,2.612427511607302688e-20,2.659926193636526373e-20,2.707424875665750058e-20,2.754923557694973744e-20,2.802422239724197730e-20,2.849920921753421716e-20,2.897419603782645702e-20,2.944918285811869688e-20,2.992416967841093675e-20 +0.000000000000000000e+00,7.486445780521168135e-22,1.497289156104233627e-21,2.245933734156350629e-21,2.994578312208467630e-21,3.743222890260584632e-21,4.491867468312701257e-21,5.240512046364817883e-21,5.989156624416934508e-21,6.737801202469051133e-21,7.486445780521167759e-21,8.235090358573285137e-21,8.983734936625402514e-21,9.732379514677519892e-21,1.048102409272963727e-20,1.122966867078175465e-20,1.197831324883387203e-20,1.272695782688598940e-20,1.347560240493810678e-20,1.422424698299022416e-20,1.497289156104234154e-20,1.572153613909445891e-20,1.647018071714657629e-20,1.721882529519869367e-20,1.796746987325081105e-20,1.871611445130292843e-20,1.946475902935504580e-20,2.021340360740716318e-20,2.096204818545928056e-20,2.171069276351139794e-20,2.245933734156351531e-20,2.320798191961563269e-20,2.395662649766775007e-20,2.470527107571986745e-20,2.545391565377198482e-20,2.620256023182410220e-20,2.695120480987621958e-20,2.769984938792833997e-20,2.844849396598046035e-20,2.919713854403258074e-20,2.994578312208470113e-20,3.069442770013682152e-20,3.144307227818894190e-20,3.219171685624106229e-20,3.294036143429318268e-20,3.368900601234530306e-20,3.443765059039742345e-20,3.518629516844954384e-20,3.593493974650166422e-20,3.668358432455378461e-20,3.743222890260590500e-20,3.818087348065802539e-20,3.892951805871014577e-20,3.967816263676226616e-20,4.042680721481438655e-20,4.117545179286650693e-20,4.192409637091862732e-20,4.267274094897074771e-20,4.342138552702286809e-20,4.417003010507498848e-20,4.491867468312710887e-20,4.566731926117922926e-20,4.641596383923134964e-20,4.716460841728347003e-20 +0.000000000000000000e+00,5.424247167275075794e-11,1.084849433455015159e-10,1.627274150182522867e-10,2.169698866910030576e-10,2.712123583637538285e-10,3.254548300365045735e-10,3.796973017092553185e-10,4.339397733820060635e-10,4.881822450547568085e-10,5.424247167275075536e-10,5.966671884002582986e-10,6.509096600730090436e-10,7.051521317457597886e-10,7.593946034185105336e-10,8.136370750912612786e-10,8.678795467640120237e-10,9.221220184367627687e-10,9.763644901095134103e-10,1.030606961782264155e-09,1.084849433455014900e-09,1.139091905127765645e-09,1.193334376800516390e-09,1.247576848473267135e-09,1.301819320146017880e-09,1.356061791818768625e-09,1.410304263491519370e-09,1.464546735164270115e-09,1.518789206837020860e-09,1.573031678509771605e-09,1.627274150182522350e-09,1.681516621855273096e-09,1.735759093528023841e-09,1.790001565200774586e-09,1.844244036873525331e-09,1.898486508546276076e-09,1.952728980219026821e-09,2.006971451891777566e-09,2.061213923564528311e-09,2.115456395237279056e-09,2.169698866910029801e-09,2.223941338582780546e-09,2.278183810255531291e-09,2.332426281928282036e-09,2.386668753601032781e-09,2.440911225273783526e-09,2.495153696946534271e-09,2.549396168619285016e-09,2.603638640292035761e-09,2.657881111964786506e-09,2.712123583637537251e-09,2.766366055310287996e-09,2.820608526983038741e-09,2.874850998655789486e-09,2.929093470328540231e-09,2.983335942001290976e-09,3.037578413674041721e-09,3.091820885346792466e-09,3.146063357019543211e-09,3.200305828692293956e-09,3.254548300365044701e-09,3.308790772037795446e-09,3.363033243710546191e-09,3.417275715383296936e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.119694515679526259e-22,-2.239389031359052518e-22,-3.359083547038578777e-22,-4.478778062718105036e-22,-5.598472578397631295e-22,-6.718167094077157554e-22,-7.837861609756683813e-22,-8.957556125436210072e-22,-1.007725064111573727e-21,-1.119694515679526447e-21,-1.231663967247479167e-21,-1.343633418815431887e-21,-1.455602870383384607e-21,-1.567572321951337327e-21,-1.679541773519290047e-21,-1.791511225087242767e-21,-1.903480676655195487e-21,-2.015450128223148207e-21,-2.127419579791100927e-21,-2.239389031359053647e-21,-2.351358482927006366e-21,-2.463327934494959086e-21,-2.575297386062911806e-21,-2.687266837630864526e-21,-2.799236289198817246e-21,-2.911205740766769966e-21,-3.023175192334722686e-21,-3.135144643902675406e-21,-3.247114095470628126e-21,-3.359083547038580846e-21,-3.471052998606533566e-21,-3.583022450174486286e-21,-3.694991901742439006e-21,-3.806961353310391726e-21,-3.918930804878344446e-21,-4.030900256446297166e-21,-4.142869708014249886e-21,-4.254839159582202605e-21,-4.366808611150155325e-21,-4.478778062718108045e-21,-4.590747514286060765e-21,-4.702716965854013485e-21,-4.814686417421966205e-21,-4.926655868989918925e-21,-5.038625320557871645e-21,-5.150594772125824365e-21,-5.262564223693777085e-21,-5.374533675261729805e-21,-5.486503126829682525e-21,-5.598472578397635245e-21,-5.710442029965587965e-21,-5.822411481533540685e-21,-5.934380933101493405e-21,-6.046350384669446125e-21,-6.158319836237398845e-21,-6.270289287805351564e-21,-6.382258739373304284e-21,-6.494228190941257004e-21,-6.606197642509209724e-21,-6.718167094077162444e-21,-6.830136545645114412e-21,-6.942105997213065627e-21,-7.054075448781016842e-21 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.352232219327213195e-22,4.704464438654426390e-22,7.056696657981639585e-22,9.408928877308852781e-22,1.176116109663606504e-21,1.411339331596327729e-21,1.646562553529048954e-21,1.881785775461770180e-21,2.117008997394491405e-21,2.352232219327212631e-21,2.587455441259933856e-21,2.822678663192655082e-21,3.057901885125376307e-21,3.293125107058097533e-21,3.528348328990818758e-21,3.763571550923539608e-21,3.998794772856260457e-21,4.234017994788981306e-21,4.469241216721702156e-21,4.704464438654423005e-21,4.939687660587143854e-21,5.174910882519864703e-21,5.410134104452585553e-21,5.645357326385306402e-21,5.880580548318027251e-21,6.115803770250748101e-21,6.351026992183468950e-21,6.586250214116189799e-21,6.821473436048909896e-21,7.056696657981629993e-21,7.291919879914350090e-21,7.527143101847070187e-21,7.762366323779790284e-21,7.997589545712510381e-21,8.232812767645230478e-21,8.468035989577950575e-21,8.703259211510670672e-21,8.938482433443390769e-21,9.173705655376110866e-21,9.408928877308830963e-21,9.644152099241551060e-21,9.879375321174271157e-21,1.011459854310699125e-20,1.034982176503971135e-20,1.058504498697243145e-20,1.082026820890515155e-20,1.105549143083787164e-20,1.129071465277059174e-20,1.152593787470331184e-20,1.176116109663603193e-20,1.199638431856875203e-20,1.223160754050147213e-20,1.246683076243419222e-20,1.270205398436691232e-20,1.293727720629963242e-20,1.317250042823235252e-20,1.340772365016507261e-20,1.364294687209779271e-20,1.387817009403051281e-20,1.411339331596323290e-20,1.434861653789595300e-20,1.458383975982867310e-20,1.481906298176139319e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-9.121967939740068430e-10,-1.824393587948013686e-09,-2.736590381922020736e-09,-3.648787175896027785e-09,-4.560983969870034835e-09,-5.473180763844041471e-09,-6.385377557818048108e-09,-7.297574351792054744e-09,-8.209771145766060553e-09,-9.121967939740066362e-09,-1.003416473371407217e-08,-1.094636152768807798e-08,-1.185855832166208379e-08,-1.277075511563608960e-08,-1.368295190961009541e-08,-1.459514870358410122e-08,-1.550734549755810702e-08,-1.641954229153211449e-08,-1.733173908550612195e-08,-1.824393587948012941e-08,-1.915613267345413688e-08,-2.006832946742814434e-08,-2.098052626140215180e-08,-2.189272305537615927e-08,-2.280491984935016673e-08,-2.371711664332417419e-08,-2.462931343729818166e-08,-2.554151023127218912e-08,-2.645370702524619658e-08,-2.736590381922020405e-08,-2.827810061319421151e-08,-2.919029740716821898e-08,-3.010249420114222644e-08,-3.101469099511623390e-08,-3.192688778909024137e-08,-3.283908458306424883e-08,-3.375128137703825629e-08,-3.466347817101226376e-08,-3.557567496498627122e-08,-3.648787175896027868e-08,-3.740006855293428615e-08,-3.831226534690829361e-08,-3.922446214088230107e-08,-4.013665893485630854e-08,-4.104885572883031600e-08,-4.196105252280432346e-08,-4.287324931677833093e-08,-4.378544611075233839e-08,-4.469764290472634585e-08,-4.560983969870035332e-08,-4.652203649267436078e-08,-4.743423328664836824e-08,-4.834643008062237571e-08,-4.925862687459638317e-08,-5.017082366857039063e-08,-5.108302046254439810e-08,-5.199521725651840556e-08,-5.290741405049241302e-08,-5.381961084446642049e-08,-5.473180763844042795e-08,-5.564400443241443541e-08,-5.655620122638844288e-08,-5.746839802036245034e-08 +0.000000000000000000e+00,-1.053644537178080633e-09,-2.107289074356161265e-09,-3.160933611534241691e-09,-4.214578148712321703e-09,-5.268222685890401716e-09,-6.321867223068481728e-09,-7.375511760246561740e-09,-8.429156297424641753e-09,-9.482800834602720938e-09,-1.053644537178080012e-08,-1.159008990895887931e-08,-1.264373444613695849e-08,-1.369737898331503768e-08,-1.475102352049311686e-08,-1.580466805767119605e-08,-1.685831259484927358e-08,-1.791195713202735111e-08,-1.896560166920542864e-08,-2.001924620638350617e-08,-2.107289074356158370e-08,-2.212653528073966123e-08,-2.318017981791773876e-08,-2.423382435509581629e-08,-2.528746889227389382e-08,-2.634111342945197136e-08,-2.739475796663004889e-08,-2.844840250380812642e-08,-2.950204704098620395e-08,-3.055569157816428479e-08,-3.160933611534236563e-08,-3.266298065252044647e-08,-3.371662518969852731e-08,-3.477026972687660814e-08,-3.582391426405468898e-08,-3.687755880123276982e-08,-3.793120333841085066e-08,-3.898484787558893150e-08,-4.003849241276701234e-08,-4.109213694994509318e-08,-4.214578148712317402e-08,-4.319942602430125486e-08,-4.425307056147933570e-08,-4.530671509865741654e-08,-4.636035963583549738e-08,-4.741400417301357822e-08,-4.846764871019165906e-08,-4.952129324736973990e-08,-5.057493778454782074e-08,-5.162858232172590158e-08,-5.268222685890398242e-08,-5.373587139608206325e-08,-5.478951593326014409e-08,-5.584316047043822493e-08,-5.689680500761630577e-08,-5.795044954479438661e-08,-5.900409408197246745e-08,-6.005773861915054829e-08,-6.111138315632862251e-08,-6.216502769350669674e-08,-6.321867223068477096e-08,-6.427231676786284518e-08,-6.532596130504091940e-08,-6.637960584221899362e-08 +0.000000000000000000e+00,-3.955009641712750791e-10,-7.910019283425501582e-10,-1.186502892513825289e-09,-1.582003856685100523e-09,-1.977504820856375757e-09,-2.373005785027650992e-09,-2.768506749198926226e-09,-3.164007713370201460e-09,-3.559508677541476694e-09,-3.955009641712752342e-09,-4.350510605884028404e-09,-4.746011570055304465e-09,-5.141512534226580526e-09,-5.537013498397856588e-09,-5.932514462569132649e-09,-6.328015426740408710e-09,-6.723516390911684772e-09,-7.119017355082960833e-09,-7.514518319254236895e-09,-7.910019283425512956e-09,-8.305520247596789017e-09,-8.701021211768065079e-09,-9.096522175939341140e-09,-9.492023140110617202e-09,-9.887524104281893263e-09,-1.028302506845316932e-08,-1.067852603262444539e-08,-1.107402699679572145e-08,-1.146952796096699751e-08,-1.186502892513827357e-08,-1.226052988930954963e-08,-1.265603085348082569e-08,-1.305153181765210175e-08,-1.344703278182337782e-08,-1.384253374599465388e-08,-1.423803471016592994e-08,-1.463353567433720600e-08,-1.502903663850848372e-08,-1.542453760267975978e-08,-1.582003856685103584e-08,-1.621553953102231190e-08,-1.661104049519358796e-08,-1.700654145936486402e-08,-1.740204242353614008e-08,-1.779754338770741615e-08,-1.819304435187869221e-08,-1.858854531604996827e-08,-1.898404628022124433e-08,-1.937954724439252039e-08,-1.977504820856379645e-08,-2.017054917273507251e-08,-2.056605013690634858e-08,-2.096155110107762464e-08,-2.135705206524890070e-08,-2.175255302942017676e-08,-2.214805399359145282e-08,-2.254355495776272888e-08,-2.293905592193400494e-08,-2.333455688610528100e-08,-2.373005785027655707e-08,-2.412555881444783313e-08,-2.452105977861910919e-08,-2.491656074279038525e-08 +0.000000000000000000e+00,-9.121967939709913560e-10,-1.824393587941982712e-09,-2.736590381912973861e-09,-3.648787175883965011e-09,-4.560983969854956160e-09,-5.473180763825947723e-09,-6.385377557796939286e-09,-7.297574351767930848e-09,-8.209771145738922411e-09,-9.121967939709913974e-09,-1.003416473368090554e-08,-1.094636152765189710e-08,-1.185855832162288866e-08,-1.277075511559388023e-08,-1.368295190956487179e-08,-1.459514870353586335e-08,-1.550734549750685491e-08,-1.641954229147784482e-08,-1.733173908544883473e-08,-1.824393587941982464e-08,-1.915613267339081455e-08,-2.006832946736180446e-08,-2.098052626133279436e-08,-2.189272305530378427e-08,-2.280491984927477418e-08,-2.371711664324576409e-08,-2.462931343721675400e-08,-2.554151023118774391e-08,-2.645370702515873382e-08,-2.736590381912972372e-08,-2.827810061310071363e-08,-2.919029740707170354e-08,-3.010249420104269345e-08,-3.101469099501368336e-08,-3.192688778898467327e-08,-3.283908458295566318e-08,-3.375128137692665308e-08,-3.466347817089764299e-08,-3.557567496486863290e-08,-3.648787175883962281e-08,-3.740006855281061272e-08,-3.831226534678160263e-08,-3.922446214075259253e-08,-4.013665893472358244e-08,-4.104885572869457235e-08,-4.196105252266556226e-08,-4.287324931663655217e-08,-4.378544611060754208e-08,-4.469764290457853199e-08,-4.560983969854952189e-08,-4.652203649252051180e-08,-4.743423328649150171e-08,-4.834643008046249162e-08,-4.925862687443348153e-08,-5.017082366840447144e-08,-5.108302046237546134e-08,-5.199521725634645125e-08,-5.290741405031744116e-08,-5.381961084428843107e-08,-5.473180763825942098e-08,-5.564400443223041089e-08,-5.655620122620140080e-08,-5.746839802017239070e-08 +0.000000000000000000e+00,-1.053644537174739650e-09,-2.107289074349479300e-09,-3.160933611524218744e-09,-4.214578148698957773e-09,-5.268222685873696803e-09,-6.321867223048435833e-09,-7.375511760223174863e-09,-8.429156297397913893e-09,-9.482800834572652922e-09,-1.053644537174739195e-08,-1.159008990892213098e-08,-1.264373444609687001e-08,-1.369737898327160904e-08,-1.475102352044634807e-08,-1.580466805762108545e-08,-1.685831259479582448e-08,-1.791195713197056351e-08,-1.896560166914530254e-08,-2.001924620632004157e-08,-2.107289074349478060e-08,-2.212653528066951963e-08,-2.318017981784425866e-08,-2.423382435501899768e-08,-2.528746889219373671e-08,-2.634111342936847574e-08,-2.739475796654321477e-08,-2.844840250371795380e-08,-2.950204704089269283e-08,-3.055569157806743186e-08,-3.160933611524217089e-08,-3.266298065241690992e-08,-3.371662518959164895e-08,-3.477026972676638798e-08,-3.582391426394112701e-08,-3.687755880111586604e-08,-3.793120333829060507e-08,-3.898484787546534410e-08,-4.003849241264008313e-08,-4.109213694981482216e-08,-4.214578148698956119e-08,-4.319942602416430022e-08,-4.425307056133903925e-08,-4.530671509851377828e-08,-4.636035963568851731e-08,-4.741400417286325634e-08,-4.846764871003799537e-08,-4.952129324721273440e-08,-5.057493778438747343e-08,-5.162858232156221246e-08,-5.268222685873695149e-08,-5.373587139591169052e-08,-5.478951593308642955e-08,-5.584316047026116858e-08,-5.689680500743590761e-08,-5.795044954461064664e-08,-5.900409408178538567e-08,-6.005773861896012470e-08,-6.111138315613486373e-08,-6.216502769330960276e-08,-6.321867223048434179e-08,-6.427231676765908082e-08,-6.532596130483381985e-08,-6.637960584200855888e-08 +0.000000000000000000e+00,-3.955009641673731648e-10,-7.910019283347463295e-10,-1.186502892502119443e-09,-1.582003856669492452e-09,-1.977504820836865462e-09,-2.373005785004238472e-09,-2.768506749171611481e-09,-3.164007713338984491e-09,-3.559508677506357501e-09,-3.955009641673730924e-09,-4.350510605841104347e-09,-4.746011570008477770e-09,-5.141512534175851194e-09,-5.537013498343224617e-09,-5.932514462510598040e-09,-6.328015426677971464e-09,-6.723516390845344887e-09,-7.119017355012718310e-09,-7.514518319180091733e-09,-7.910019283347465157e-09,-8.305520247514838580e-09,-8.701021211682212003e-09,-9.096522175849585426e-09,-9.492023140016958850e-09,-9.887524104184332273e-09,-1.028302506835170570e-08,-1.067852603251907912e-08,-1.107402699668645254e-08,-1.146952796085382597e-08,-1.186502892502119939e-08,-1.226052988918857281e-08,-1.265603085335594624e-08,-1.305153181752331966e-08,-1.344703278169069308e-08,-1.384253374585806651e-08,-1.423803471002543993e-08,-1.463353567419281335e-08,-1.502903663836018678e-08,-1.542453760252755854e-08,-1.582003856669493031e-08,-1.621553953086230208e-08,-1.661104049502967385e-08,-1.700654145919704562e-08,-1.740204242336441739e-08,-1.779754338753178916e-08,-1.819304435169916093e-08,-1.858854531586653270e-08,-1.898404628003390446e-08,-1.937954724420127623e-08,-1.977504820836864800e-08,-2.017054917253601977e-08,-2.056605013670339154e-08,-2.096155110087076331e-08,-2.135705206503813508e-08,-2.175255302920550685e-08,-2.214805399337287862e-08,-2.254355495754025038e-08,-2.293905592170762215e-08,-2.333455688587499392e-08,-2.373005785004236569e-08,-2.412555881420973746e-08,-2.452105977837710923e-08,-2.491656074254448100e-08 +0.000000000000000000e+00,-6.309454368095253261e-10,-1.261890873619050652e-09,-1.892836310428576082e-09,-2.523781747238101718e-09,-3.154727184047627354e-09,-3.785672620857152991e-09,-4.416618057666678627e-09,-5.047563494476204263e-09,-5.678508931285729900e-09,-6.309454368095255536e-09,-6.940399804904781172e-09,-7.571345241714307636e-09,-8.202290678523834927e-09,-8.833236115333362217e-09,-9.464181552142889508e-09,-1.009512698895241680e-08,-1.072607242576194409e-08,-1.135701786257147138e-08,-1.198796329938099867e-08,-1.261890873619052596e-08,-1.324985417300005325e-08,-1.388079960980958054e-08,-1.451174504661910783e-08,-1.514269048342863512e-08,-1.577363592023816241e-08,-1.640458135704768971e-08,-1.703552679385721700e-08,-1.766647223066674429e-08,-1.829741766747627158e-08,-1.892836310428579887e-08,-1.955930854109532616e-08,-2.019025397790485345e-08,-2.082119941471438074e-08,-2.145214485152390803e-08,-2.208309028833343532e-08,-2.271403572514296261e-08,-2.334498116195248990e-08,-2.397592659876201719e-08,-2.460687203557154448e-08,-2.523781747238107177e-08,-2.586876290919059907e-08,-2.649970834600012636e-08,-2.713065378280965365e-08,-2.776159921961918094e-08,-2.839254465642870823e-08,-2.902349009323823552e-08,-2.965443553004776281e-08,-3.028538096685729010e-08,-3.091632640366681408e-08,-3.154727184047633806e-08,-3.217821727728586205e-08,-3.280916271409538603e-08,-3.344010815090491001e-08,-3.407105358771443399e-08,-3.470199902452395797e-08,-3.533294446133348196e-08,-3.596388989814300594e-08,-3.659483533495252992e-08,-3.722578077176205390e-08,-3.785672620857157788e-08,-3.848767164538110187e-08,-3.911861708219062585e-08,-3.974956251900014983e-08 +0.000000000000000000e+00,-7.709891758604840287e-10,-1.541978351720968057e-09,-2.312967527581452189e-09,-3.083956703441936528e-09,-3.854945879302420454e-09,-4.625935055162904379e-09,-5.396924231023388304e-09,-6.167913406883872230e-09,-6.938902582744356155e-09,-7.709891758604840907e-09,-8.480880934465325660e-09,-9.251870110325810412e-09,-1.002285928618629516e-08,-1.079384846204677992e-08,-1.156483763790726467e-08,-1.233582681376774942e-08,-1.310681598962823417e-08,-1.387780516548871893e-08,-1.464879434134920368e-08,-1.541978351720968843e-08,-1.619077269307017318e-08,-1.696176186893065794e-08,-1.773275104479114269e-08,-1.850374022065162744e-08,-1.927472939651211219e-08,-2.004571857237259695e-08,-2.081670774823308170e-08,-2.158769692409356645e-08,-2.235868609995405120e-08,-2.312967527581453596e-08,-2.390066445167502071e-08,-2.467165362753550546e-08,-2.544264280339599021e-08,-2.621363197925647497e-08,-2.698462115511695972e-08,-2.775561033097744447e-08,-2.852659950683792922e-08,-2.929758868269841398e-08,-3.006857785855889873e-08,-3.083956703441938348e-08,-3.161055621027986823e-08,-3.238154538614035299e-08,-3.315253456200083774e-08,-3.392352373786132249e-08,-3.469451291372180724e-08,-3.546550208958229200e-08,-3.623649126544277675e-08,-3.700748044130326150e-08,-3.777846961716374625e-08,-3.854945879302423101e-08,-3.932044796888471576e-08,-4.009143714474520051e-08,-4.086242632060568526e-08,-4.163341549646617002e-08,-4.240440467232665477e-08,-4.317539384818713952e-08,-4.394638302404762427e-08,-4.471737219990810903e-08,-4.548836137576859378e-08,-4.625935055162907853e-08,-4.703033972748956328e-08,-4.780132890335004804e-08,-4.857231807921053279e-08 +0.000000000000000000e+00,-2.689926037248280785e-10,-5.379852074496561571e-10,-8.069778111744841839e-10,-1.075970414899312107e-09,-1.344963018624140031e-09,-1.613955622348967954e-09,-1.882948226073796084e-09,-2.151940829798624215e-09,-2.420933433523452345e-09,-2.689926037248280475e-09,-2.958918640973108605e-09,-3.227911244697936736e-09,-3.496903848422764866e-09,-3.765896452147592996e-09,-4.034889055872421126e-09,-4.303881659597249256e-09,-4.572874263322077387e-09,-4.841866867046905517e-09,-5.110859470771733647e-09,-5.379852074496561777e-09,-5.648844678221389908e-09,-5.917837281946218038e-09,-6.186829885671046168e-09,-6.455822489395874298e-09,-6.724815093120702429e-09,-6.993807696845530559e-09,-7.262800300570358689e-09,-7.531792904295187646e-09,-7.800785508020016604e-09,-8.069778111744845561e-09,-8.338770715469674519e-09,-8.607763319194503476e-09,-8.876755922919332433e-09,-9.145748526644161391e-09,-9.414741130368990348e-09,-9.683733734093819306e-09,-9.952726337818648263e-09,-1.022171894154347722e-08,-1.049071154526830618e-08,-1.075970414899313514e-08,-1.102869675271796409e-08,-1.129768935644279305e-08,-1.156668196016762201e-08,-1.183567456389245096e-08,-1.210466716761727992e-08,-1.237365977134210888e-08,-1.264265237506693784e-08,-1.291164497879176679e-08,-1.318063758251659575e-08,-1.344963018624142471e-08,-1.371862278996625367e-08,-1.398761539369108262e-08,-1.425660799741591158e-08,-1.452560060114074054e-08,-1.479459320486556950e-08,-1.506358580859039845e-08,-1.533257841231522741e-08,-1.560157101604005637e-08,-1.587056361976488533e-08,-1.613955622348971428e-08,-1.640854882721454324e-08,-1.667754143093937220e-08,-1.694653403466420116e-08 +0.000000000000000000e+00,-6.309454368073627658e-10,-1.261890873614725532e-09,-1.892836310422088504e-09,-2.523781747229451477e-09,-3.154727184036814449e-09,-3.785672620844177008e-09,-4.416618057651539567e-09,-5.047563494458902127e-09,-5.678508931266264686e-09,-6.309454368073627245e-09,-6.940399804880989804e-09,-7.571345241688352363e-09,-8.202290678495714094e-09,-8.833236115303075826e-09,-9.464181552110437558e-09,-1.009512698891779929e-08,-1.072607242572516102e-08,-1.135701786253252275e-08,-1.198796329933988449e-08,-1.261890873614724622e-08,-1.324985417295460795e-08,-1.388079960976196968e-08,-1.451174504656933141e-08,-1.514269048337669480e-08,-1.577363592018405819e-08,-1.640458135699142157e-08,-1.703552679379878496e-08,-1.766647223060614834e-08,-1.829741766741351173e-08,-1.892836310422087512e-08,-1.955930854102823850e-08,-2.019025397783560189e-08,-2.082119941464296527e-08,-2.145214485145032866e-08,-2.208309028825769205e-08,-2.271403572506505543e-08,-2.334498116187241882e-08,-2.397592659867978221e-08,-2.460687203548714559e-08,-2.523781747229450898e-08,-2.586876290910187236e-08,-2.649970834590923575e-08,-2.713065378271659914e-08,-2.776159921952396252e-08,-2.839254465633132591e-08,-2.902349009313868930e-08,-2.965443552994605268e-08,-3.028538096675341607e-08,-3.091632640356077615e-08,-3.154727184036813622e-08,-3.217821727717549630e-08,-3.280916271398285638e-08,-3.344010815079021646e-08,-3.407105358759757653e-08,-3.470199902440493661e-08,-3.533294446121229669e-08,-3.596388989801965677e-08,-3.659483533482701684e-08,-3.722578077163437692e-08,-3.785672620844173700e-08,-3.848767164524909707e-08,-3.911861708205645715e-08,-3.974956251886381723e-08 +0.000000000000000000e+00,-7.709891758578377745e-10,-1.541978351715675549e-09,-2.312967527573513324e-09,-3.083956703431351098e-09,-3.854945879289188873e-09,-4.625935055147026647e-09,-5.396924231004864422e-09,-6.167913406862702196e-09,-6.938902582720539971e-09,-7.709891758578377745e-09,-8.480880934436215520e-09,-9.251870110294053294e-09,-1.002285928615189107e-08,-1.079384846200972884e-08,-1.156483763786756662e-08,-1.233582681372540439e-08,-1.310681598958324217e-08,-1.387780516544107994e-08,-1.464879434129891772e-08,-1.541978351715675549e-08,-1.619077269301459326e-08,-1.696176186887243104e-08,-1.773275104473026881e-08,-1.850374022058810659e-08,-1.927472939644594436e-08,-2.004571857230378214e-08,-2.081670774816161991e-08,-2.158769692401945769e-08,-2.235868609987729546e-08,-2.312967527573513324e-08,-2.390066445159297101e-08,-2.467165362745080878e-08,-2.544264280330864656e-08,-2.621363197916648433e-08,-2.698462115502432211e-08,-2.775561033088215988e-08,-2.852659950673999766e-08,-2.929758868259783543e-08,-3.006857785845567321e-08,-3.083956703431351098e-08,-3.161055621017134876e-08,-3.238154538602918653e-08,-3.315253456188702430e-08,-3.392352373774486208e-08,-3.469451291360269985e-08,-3.546550208946053763e-08,-3.623649126531837540e-08,-3.700748044117621318e-08,-3.777846961703405095e-08,-3.854945879289188873e-08,-3.932044796874972650e-08,-4.009143714460756428e-08,-4.086242632046540205e-08,-4.163341549632323982e-08,-4.240440467218107760e-08,-4.317539384803891537e-08,-4.394638302389675315e-08,-4.471737219975459092e-08,-4.548836137561242870e-08,-4.625935055147026647e-08,-4.703033972732810425e-08,-4.780132890318594202e-08,-4.857231807904377979e-08 +0.000000000000000000e+00,-2.689926037217510700e-10,-5.379852074435021401e-10,-8.069778111652532618e-10,-1.075970414887004487e-09,-1.344963018608755712e-09,-1.613955622330506937e-09,-1.882948226052257956e-09,-2.151940829774008974e-09,-2.420933433495759992e-09,-2.689926037217511011e-09,-2.958918640939262029e-09,-3.227911244661013047e-09,-3.496903848382764066e-09,-3.765896452104515084e-09,-4.034889055826266102e-09,-4.303881659548017121e-09,-4.572874263269768139e-09,-4.841866866991519157e-09,-5.110859470713270176e-09,-5.379852074435021194e-09,-5.648844678156772213e-09,-5.917837281878523231e-09,-6.186829885600274249e-09,-6.455822489322025268e-09,-6.724815093043776286e-09,-6.993807696765527304e-09,-7.262800300487278323e-09,-7.531792904209028514e-09,-7.800785507930778705e-09,-8.069778111652528896e-09,-8.338770715374279087e-09,-8.607763319096029278e-09,-8.876755922817779470e-09,-9.145748526539529661e-09,-9.414741130261279852e-09,-9.683733733983030043e-09,-9.952726337704780234e-09,-1.022171894142653043e-08,-1.049071154514828062e-08,-1.075970414887003081e-08,-1.102869675259178100e-08,-1.129768935631353119e-08,-1.156668196003528138e-08,-1.183567456375703157e-08,-1.210466716747878176e-08,-1.237365977120053195e-08,-1.264265237492228215e-08,-1.291164497864403234e-08,-1.318063758236578253e-08,-1.344963018608753272e-08,-1.371862278980928291e-08,-1.398761539353103310e-08,-1.425660799725278329e-08,-1.452560060097453348e-08,-1.479459320469628368e-08,-1.506358580841803387e-08,-1.533257841213978240e-08,-1.560157101586153094e-08,-1.587056361958327948e-08,-1.613955622330502801e-08,-1.640854882702677655e-08,-1.667754143074852509e-08,-1.694653403447027362e-08 +0.000000000000000000e+00,-3.661149537260918514e-10,-7.322299074521837028e-10,-1.098344861178275658e-09,-1.464459814904367612e-09,-1.830574768630459567e-09,-2.196689722356551315e-09,-2.562804676082643063e-09,-2.928919629808734811e-09,-3.295034583534826559e-09,-3.661149537260918307e-09,-4.027264490987010469e-09,-4.393379444713102631e-09,-4.759494398439194792e-09,-5.125609352165286954e-09,-5.491724305891379115e-09,-5.857839259617471277e-09,-6.223954213343563439e-09,-6.590069167069655600e-09,-6.956184120795747762e-09,-7.322299074521839923e-09,-7.688414028247932085e-09,-8.054528981974024247e-09,-8.420643935700116408e-09,-8.786758889426208570e-09,-9.152873843152300732e-09,-9.518988796878392893e-09,-9.885103750604485055e-09,-1.025121870433057722e-08,-1.061733365805666938e-08,-1.098344861178276154e-08,-1.134956356550885370e-08,-1.171567851923494586e-08,-1.208179347296103802e-08,-1.244790842668713019e-08,-1.281402338041322235e-08,-1.318013833413931451e-08,-1.354625328786540667e-08,-1.391236824159149883e-08,-1.427848319531759099e-08,-1.464459814904368316e-08,-1.501071310276977532e-08,-1.537682805649586748e-08,-1.574294301022195964e-08,-1.610905796394805180e-08,-1.647517291767414396e-08,-1.684128787140023613e-08,-1.720740282512632829e-08,-1.757351777885242045e-08,-1.793963273257851261e-08,-1.830574768630460477e-08,-1.867186264003069693e-08,-1.903797759375678909e-08,-1.940409254748288126e-08,-1.977020750120897342e-08,-2.013632245493506558e-08,-2.050243740866115774e-08,-2.086855236238724990e-08,-2.123466731611334206e-08,-2.160078226983943423e-08,-2.196689722356552639e-08,-2.233301217729161855e-08,-2.269912713101771071e-08,-2.306524208474380287e-08 +0.000000000000000000e+00,-4.947615692852933270e-10,-9.895231385705866540e-10,-1.484284707855879878e-09,-1.979046277141172894e-09,-2.473807846426465911e-09,-2.968569415711758928e-09,-3.463330984997051945e-09,-3.958092554282344962e-09,-4.452854123567637978e-09,-4.947615692852930995e-09,-5.442377262138224012e-09,-5.937138831423517029e-09,-6.431900400708810046e-09,-6.926661969994103062e-09,-7.421423539279396079e-09,-7.916185108564688269e-09,-8.410946677849980458e-09,-8.905708247135272648e-09,-9.400469816420564838e-09,-9.895231385705857027e-09,-1.038999295499114922e-08,-1.088475452427644141e-08,-1.137951609356173360e-08,-1.187427766284702579e-08,-1.236903923213231798e-08,-1.286380080141761017e-08,-1.335856237070290235e-08,-1.385332393998819454e-08,-1.434808550927348673e-08,-1.484284707855877892e-08,-1.533760864784407277e-08,-1.583237021712936661e-08,-1.632713178641466046e-08,-1.682189335569995430e-08,-1.731665492498524814e-08,-1.781141649427054199e-08,-1.830617806355583583e-08,-1.880093963284112968e-08,-1.929570120212642352e-08,-1.979046277141171736e-08,-2.028522434069701121e-08,-2.077998590998230505e-08,-2.127474747926759890e-08,-2.176950904855289274e-08,-2.226427061783818658e-08,-2.275903218712348043e-08,-2.325379375640877427e-08,-2.374855532569406812e-08,-2.424331689497936196e-08,-2.473807846426465580e-08,-2.523284003354994965e-08,-2.572760160283524349e-08,-2.622236317212053734e-08,-2.671712474140583118e-08,-2.721188631069112502e-08,-2.770664787997641887e-08,-2.820140944926171271e-08,-2.869617101854700656e-08,-2.919093258783230040e-08,-2.968569415711759424e-08,-3.018045572640288809e-08,-3.067521729568818524e-08,-3.116997886497348239e-08 +0.000000000000000000e+00,-1.502263350302403194e-10,-3.004526700604806389e-10,-4.506790050907209841e-10,-6.009053401209613811e-10,-7.511316751512017781e-10,-9.013580101814421751e-10,-1.051584345211682572e-09,-1.201810680241922969e-09,-1.352037015272163366e-09,-1.502263350302403763e-09,-1.652489685332644160e-09,-1.802716020362884557e-09,-1.952942355393124954e-09,-2.103168690423365144e-09,-2.253395025453605334e-09,-2.403621360483845524e-09,-2.553847695514085715e-09,-2.704074030544325905e-09,-2.854300365574566095e-09,-3.004526700604806285e-09,-3.154753035635046475e-09,-3.304979370665286666e-09,-3.455205705695526856e-09,-3.605432040725767046e-09,-3.755658375756007236e-09,-3.905884710786247426e-09,-4.056111045816487616e-09,-4.206337380846727807e-09,-4.356563715876967997e-09,-4.506790050907208187e-09,-4.657016385937448377e-09,-4.807242720967688567e-09,-4.957469055997928758e-09,-5.107695391028168948e-09,-5.257921726058409138e-09,-5.408148061088649328e-09,-5.558374396118889518e-09,-5.708600731149129708e-09,-5.858827066179369899e-09,-6.009053401209610089e-09,-6.159279736239850279e-09,-6.309506071270090469e-09,-6.459732406300330659e-09,-6.609958741330570850e-09,-6.760185076360811040e-09,-6.910411411391051230e-09,-7.060637746421291420e-09,-7.210864081451531610e-09,-7.361090416481771800e-09,-7.511316751512011163e-09,-7.661543086542250526e-09,-7.811769421572489889e-09,-7.961995756602729252e-09,-8.112222091632968615e-09,-8.262448426663207978e-09,-8.412674761693447341e-09,-8.562901096723686704e-09,-8.713127431753926067e-09,-8.863353766784165430e-09,-9.013580101814404793e-09,-9.163806436844644156e-09,-9.314032771874883519e-09,-9.464259106905122882e-09 +0.000000000000000000e+00,-3.661149537247711025e-10,-7.322299074495422049e-10,-1.098344861174313256e-09,-1.464459814899084203e-09,-1.830574768623855150e-09,-2.196689722348626098e-09,-2.562804676073397252e-09,-2.928919629798168406e-09,-3.295034583522939560e-09,-3.661149537247710715e-09,-4.027264490972481869e-09,-4.393379444697253023e-09,-4.759494398422024177e-09,-5.125609352146795331e-09,-5.491724305871566485e-09,-5.857839259596337640e-09,-6.223954213321108794e-09,-6.590069167045879948e-09,-6.956184120770651102e-09,-7.322299074495422256e-09,-7.688414028220193410e-09,-8.054528981944963737e-09,-8.420643935669734064e-09,-8.786758889394504391e-09,-9.152873843119274718e-09,-9.518988796844045045e-09,-9.885103750568815372e-09,-1.025121870429358570e-08,-1.061733365801835603e-08,-1.098344861174312635e-08,-1.134956356546789668e-08,-1.171567851919266701e-08,-1.208179347291743733e-08,-1.244790842664220766e-08,-1.281402338036697799e-08,-1.318013833409174832e-08,-1.354625328781651864e-08,-1.391236824154128897e-08,-1.427848319526605930e-08,-1.464459814899082962e-08,-1.501071310271560160e-08,-1.537682805644037359e-08,-1.574294301016514557e-08,-1.610905796388991755e-08,-1.647517291761468953e-08,-1.684128787133946151e-08,-1.720740282506423349e-08,-1.757351777878900547e-08,-1.793963273251377746e-08,-1.830574768623854944e-08,-1.867186263996332142e-08,-1.903797759368809340e-08,-1.940409254741286538e-08,-1.977020750113763736e-08,-2.013632245486240934e-08,-2.050243740858718132e-08,-2.086855236231195331e-08,-2.123466731603672529e-08,-2.160078226976149727e-08,-2.196689722348626925e-08,-2.233301217721104123e-08,-2.269912713093581321e-08,-2.306524208466058519e-08 +0.000000000000000000e+00,-4.947615692835364988e-10,-9.895231385670729975e-10,-1.484284707850609496e-09,-1.979046277134145995e-09,-2.473807846417682494e-09,-2.968569415701218993e-09,-3.463330984984755491e-09,-3.958092554268291990e-09,-4.452854123551828903e-09,-4.947615692835365815e-09,-5.442377262118902727e-09,-5.937138831402439640e-09,-6.431900400685976552e-09,-6.926661969969513464e-09,-7.421423539253050377e-09,-7.916185108536587289e-09,-8.410946677820124201e-09,-8.905708247103661114e-09,-9.400469816387198026e-09,-9.895231385670734939e-09,-1.038999295495427185e-08,-1.088475452423780876e-08,-1.137951609352134568e-08,-1.187427766280488259e-08,-1.236903923208841950e-08,-1.286380080137195641e-08,-1.335856237065549333e-08,-1.385332393993903024e-08,-1.434808550922256715e-08,-1.484284707850610406e-08,-1.533760864778964097e-08,-1.583237021707317789e-08,-1.632713178635671480e-08,-1.682189335564025171e-08,-1.731665492492378862e-08,-1.781141649420732554e-08,-1.830617806349086245e-08,-1.880093963277439936e-08,-1.929570120205793627e-08,-1.979046277134147319e-08,-2.028522434062501010e-08,-2.077998590990854701e-08,-2.127474747919208392e-08,-2.176950904847562084e-08,-2.226427061775915775e-08,-2.275903218704269466e-08,-2.325379375632623157e-08,-2.374855532560976848e-08,-2.424331689489330540e-08,-2.473807846417684231e-08,-2.523284003346037922e-08,-2.572760160274391613e-08,-2.622236317202745305e-08,-2.671712474131098996e-08,-2.721188631059452687e-08,-2.770664787987806378e-08,-2.820140944916160070e-08,-2.869617101844513761e-08,-2.919093258772867452e-08,-2.968569415701221143e-08,-3.018045572629575165e-08,-3.067521729557928857e-08,-3.116997886486282548e-08 +0.000000000000000000e+00,-1.502263350281844137e-10,-3.004526700563688274e-10,-4.506790050845532153e-10,-6.009053401127375515e-10,-7.511316751409218876e-10,-9.013580101691062238e-10,-1.051584345197290457e-09,-1.201810680225474689e-09,-1.352037015253658922e-09,-1.502263350281843155e-09,-1.652489685310027388e-09,-1.802716020338211620e-09,-1.952942355366395853e-09,-2.103168690394580086e-09,-2.253395025422764319e-09,-2.403621360450948551e-09,-2.553847695479132784e-09,-2.704074030507317017e-09,-2.854300365535501250e-09,-3.004526700563685483e-09,-3.154753035591869715e-09,-3.304979370620053948e-09,-3.455205705648238181e-09,-3.605432040676422414e-09,-3.755658375704606233e-09,-3.905884710732790052e-09,-4.056111045760973871e-09,-4.206337380789157690e-09,-4.356563715817341510e-09,-4.506790050845525329e-09,-4.657016385873709148e-09,-4.807242720901892967e-09,-4.957469055930076786e-09,-5.107695390958260605e-09,-5.257921725986444425e-09,-5.408148061014628244e-09,-5.558374396042812063e-09,-5.708600731070995882e-09,-5.858827066099179701e-09,-6.009053401127363520e-09,-6.159279736155547340e-09,-6.309506071183731159e-09,-6.459732406211914978e-09,-6.609958741240098797e-09,-6.760185076268282616e-09,-6.910411411296466436e-09,-7.060637746324650255e-09,-7.210864081352834074e-09,-7.361090416381017893e-09,-7.511316751409202539e-09,-7.661543086437387186e-09,-7.811769421465571832e-09,-7.961995756493756479e-09,-8.112222091521941125e-09,-8.262448426550125771e-09,-8.412674761578310418e-09,-8.562901096606495064e-09,-8.713127431634679710e-09,-8.863353766662864357e-09,-9.013580101691049003e-09,-9.163806436719233649e-09,-9.314032771747418296e-09,-9.464259106775602942e-09 +0.000000000000000000e+00,-1.445214012647907859e-10,-2.890428025295815717e-10,-4.335642037943723834e-10,-5.780856050591632469e-10,-7.226070063239541103e-10,-8.671284075887449737e-10,-1.011649808853535837e-09,-1.156171210118326700e-09,-1.300692611383117564e-09,-1.445214012647908427e-09,-1.589735413912699291e-09,-1.734256815177490154e-09,-1.878778216442281224e-09,-2.023299617707072088e-09,-2.167821018971862951e-09,-2.312342420236653815e-09,-2.456863821501444678e-09,-2.601385222766235541e-09,-2.745906624031026405e-09,-2.890428025295817268e-09,-3.034949426560608132e-09,-3.179470827825398995e-09,-3.323992229090189858e-09,-3.468513630354980722e-09,-3.613035031619771585e-09,-3.757556432884562449e-09,-3.902077834149353312e-09,-4.046599235414144176e-09,-4.191120636678935039e-09,-4.335642037943725902e-09,-4.480163439208516766e-09,-4.624684840473307629e-09,-4.769206241738098493e-09,-4.913727643002889356e-09,-5.058249044267680219e-09,-5.202770445532471083e-09,-5.347291846797261946e-09,-5.491813248062052810e-09,-5.636334649326843673e-09,-5.780856050591634536e-09,-5.925377451856425400e-09,-6.069898853121216263e-09,-6.214420254386007127e-09,-6.358941655650797990e-09,-6.503463056915588854e-09,-6.647984458180379717e-09,-6.792505859445170580e-09,-6.937027260709961444e-09,-7.081548661974752307e-09,-7.226070063239543171e-09,-7.370591464504334034e-09,-7.515112865769124897e-09,-7.659634267033915761e-09,-7.804155668298706624e-09,-7.948677069563497488e-09,-8.093198470828288351e-09,-8.237719872093079214e-09,-8.382241273357870078e-09,-8.526762674622660941e-09,-8.671284075887451805e-09,-8.815805477152242668e-09,-8.960326878417033532e-09,-9.104848279681824395e-09 +0.000000000000000000e+00,-2.467514285823012608e-10,-4.935028571646025216e-10,-7.402542857469037306e-10,-9.870057143292048363e-10,-1.233757142911505942e-09,-1.480508571493807048e-09,-1.727260000076108153e-09,-1.974011428658409259e-09,-2.220762857240710365e-09,-2.467514285823011470e-09,-2.714265714405312576e-09,-2.961017142987613682e-09,-3.207768571569914787e-09,-3.454520000152215893e-09,-3.701271428734516999e-09,-3.948022857316817691e-09,-4.194774285899117969e-09,-4.441525714481418248e-09,-4.688277143063718526e-09,-4.935028571646018805e-09,-5.181780000228319083e-09,-5.428531428810619362e-09,-5.675282857392919640e-09,-5.922034285975219919e-09,-6.168785714557520197e-09,-6.415537143139820476e-09,-6.662288571722120754e-09,-6.909040000304421033e-09,-7.155791428886721311e-09,-7.402542857469021590e-09,-7.649294286051321868e-09,-7.896045714633622147e-09,-8.142797143215922425e-09,-8.389548571798222704e-09,-8.636300000380522982e-09,-8.883051428962823261e-09,-9.129802857545123539e-09,-9.376554286127423818e-09,-9.623305714709724096e-09,-9.870057143292024375e-09,-1.011680857187432465e-08,-1.036356000045662493e-08,-1.061031142903892521e-08,-1.085706285762122549e-08,-1.110381428620352577e-08,-1.135056571478582605e-08,-1.159731714336812632e-08,-1.184406857195042660e-08,-1.209082000053272688e-08,-1.233757142911502716e-08,-1.258432285769732744e-08,-1.283107428627962772e-08,-1.307782571486192800e-08,-1.332457714344422827e-08,-1.357132857202652855e-08,-1.381808000060882883e-08,-1.406483142919112911e-08,-1.431158285777342939e-08,-1.455833428635572967e-08,-1.480508571493802995e-08,-1.505183714352032857e-08,-1.529858857210262719e-08,-1.554534000068492582e-08 +0.000000000000000000e+00,-5.424247167290571860e-11,-1.084849433458114372e-10,-1.627274150187171623e-10,-2.169698866916229002e-10,-2.712123583645286382e-10,-3.254548300374343762e-10,-3.796973017103401142e-10,-4.339397733832458522e-10,-4.881822450561515385e-10,-5.424247167290571730e-10,-5.966671884019628076e-10,-6.509096600748684422e-10,-7.051521317477740768e-10,-7.593946034206797114e-10,-8.136370750935853460e-10,-8.678795467664909806e-10,-9.221220184393966151e-10,-9.763644901123022497e-10,-1.030606961785207884e-09,-1.084849433458113519e-09,-1.139091905131019153e-09,-1.193334376803924788e-09,-1.247576848476830423e-09,-1.301819320149736057e-09,-1.356061791822641692e-09,-1.410304263495547326e-09,-1.464546735168452961e-09,-1.518789206841358596e-09,-1.573031678514264230e-09,-1.627274150187169865e-09,-1.681516621860075499e-09,-1.735759093532981134e-09,-1.790001565205886769e-09,-1.844244036878792403e-09,-1.898486508551697831e-09,-1.952728980224603259e-09,-2.006971451897508686e-09,-2.061213923570414114e-09,-2.115456395243319542e-09,-2.169698866916224970e-09,-2.223941338589130398e-09,-2.278183810262035825e-09,-2.332426281934941253e-09,-2.386668753607846681e-09,-2.440911225280752109e-09,-2.495153696953657537e-09,-2.549396168626562964e-09,-2.603638640299468392e-09,-2.657881111972373820e-09,-2.712123583645279248e-09,-2.766366055318184676e-09,-2.820608526991090103e-09,-2.874850998663995531e-09,-2.929093470336900959e-09,-2.983335942009806387e-09,-3.037578413682711815e-09,-3.091820885355617242e-09,-3.146063357028522670e-09,-3.200305828701428098e-09,-3.254548300374333526e-09,-3.308790772047238953e-09,-3.363033243720144381e-09,-3.417275715393049809e-09 +0.000000000000000000e+00,-1.445214012643397139e-10,-2.890428025286794279e-10,-4.335642037930191160e-10,-5.780856050573587523e-10,-7.226070063216983887e-10,-8.671284075860380251e-10,-1.011649808850377662e-09,-1.156171210114717298e-09,-1.300692611379056934e-09,-1.445214012643396571e-09,-1.589735413907736207e-09,-1.734256815172075843e-09,-1.878778216436415687e-09,-2.023299617700755737e-09,-2.167821018965095787e-09,-2.312342420229435837e-09,-2.456863821493775887e-09,-2.601385222758115937e-09,-2.745906624022455986e-09,-2.890428025286796036e-09,-3.034949426551136086e-09,-3.179470827815476136e-09,-3.323992229079816186e-09,-3.468513630344156236e-09,-3.613035031608496286e-09,-3.757556432872836336e-09,-3.902077834137176386e-09,-4.046599235401516436e-09,-4.191120636665856486e-09,-4.335642037930196536e-09,-4.480163439194536586e-09,-4.624684840458876636e-09,-4.769206241723216686e-09,-4.913727642987556736e-09,-5.058249044251896786e-09,-5.202770445516236836e-09,-5.347291846780576886e-09,-5.491813248044916936e-09,-5.636334649309256986e-09,-5.780856050573597036e-09,-5.925377451837937086e-09,-6.069898853102277136e-09,-6.214420254366617186e-09,-6.358941655630957236e-09,-6.503463056895297286e-09,-6.647984458159637336e-09,-6.792505859423977386e-09,-6.937027260688317436e-09,-7.081548661952657486e-09,-7.226070063216997536e-09,-7.370591464481337586e-09,-7.515112865745677636e-09,-7.659634267010016859e-09,-7.804155668274356081e-09,-7.948677069538695304e-09,-8.093198470803034527e-09,-8.237719872067373750e-09,-8.382241273331712973e-09,-8.526762674596052195e-09,-8.671284075860391418e-09,-8.815805477124730641e-09,-8.960326878389069864e-09,-9.104848279653409087e-09 +0.000000000000000000e+00,-2.467514285814421820e-10,-4.935028571628843640e-10,-7.402542857443265460e-10,-9.870057143257687281e-10,-1.233757142907210807e-09,-1.480508571488652885e-09,-1.727260000070094964e-09,-1.974011428651537043e-09,-2.220762857232979121e-09,-2.467514285814421200e-09,-2.714265714395863278e-09,-2.961017142977305357e-09,-3.207768571558747436e-09,-3.454520000140189514e-09,-3.701271428721631593e-09,-3.948022857303073258e-09,-4.194774285884514923e-09,-4.441525714465956588e-09,-4.688277143047398253e-09,-4.935028571628839918e-09,-5.181780000210281583e-09,-5.428531428791723248e-09,-5.675282857373164913e-09,-5.922034285954606578e-09,-6.168785714536048243e-09,-6.415537143117489908e-09,-6.662288571698931573e-09,-6.909040000280373238e-09,-7.155791428861814903e-09,-7.402542857443256568e-09,-7.649294286024698233e-09,-7.896045714606139898e-09,-8.142797143187581563e-09,-8.389548571769023228e-09,-8.636300000350464893e-09,-8.883051428931906558e-09,-9.129802857513348223e-09,-9.376554286094789888e-09,-9.623305714676231553e-09,-9.870057143257673219e-09,-1.011680857183911488e-08,-1.036356000042055655e-08,-1.061031142900199821e-08,-1.085706285758343988e-08,-1.110381428616488154e-08,-1.135056571474632321e-08,-1.159731714332776487e-08,-1.184406857190920654e-08,-1.209082000049064820e-08,-1.233757142907208987e-08,-1.258432285765353153e-08,-1.283107428623497320e-08,-1.307782571481641486e-08,-1.332457714339785653e-08,-1.357132857197929819e-08,-1.381808000056073986e-08,-1.406483142914218152e-08,-1.431158285772362319e-08,-1.455833428630506485e-08,-1.480508571488650652e-08,-1.505183714346794818e-08,-1.529858857204938985e-08,-1.554534000063083151e-08 +0.000000000000000000e+00,-5.424247167201980170e-11,-1.084849433440396034e-10,-1.627274150160594051e-10,-2.169698866880792068e-10,-2.712123583600990343e-10,-3.254548300321188619e-10,-3.796973017041386894e-10,-4.339397733761585170e-10,-4.881822450481783445e-10,-5.424247167201981721e-10,-5.966671883922179996e-10,-6.509096600642378272e-10,-7.051521317362576547e-10,-7.593946034082774823e-10,-8.136370750802973098e-10,-8.678795467523171374e-10,-9.221220184243369649e-10,-9.763644900963566891e-10,-1.030606961768376413e-09,-1.084849433440396137e-09,-1.139091905112415862e-09,-1.193334376784435586e-09,-1.247576848456455310e-09,-1.301819320128475034e-09,-1.356061791800494758e-09,-1.410304263472514482e-09,-1.464546735144534206e-09,-1.518789206816553931e-09,-1.573031678488573655e-09,-1.627274150160593379e-09,-1.681516621832613103e-09,-1.735759093504632827e-09,-1.790001565176652551e-09,-1.844244036848672275e-09,-1.898486508520691793e-09,-1.952728980192711310e-09,-2.006971451864730828e-09,-2.061213923536750345e-09,-2.115456395208769862e-09,-2.169698866880789380e-09,-2.223941338552808897e-09,-2.278183810224828414e-09,-2.332426281896847932e-09,-2.386668753568867449e-09,-2.440911225240886966e-09,-2.495153696912906484e-09,-2.549396168584926001e-09,-2.603638640256945518e-09,-2.657881111928965036e-09,-2.712123583600984553e-09,-2.766366055273004070e-09,-2.820608526945023588e-09,-2.874850998617043105e-09,-2.929093470289062623e-09,-2.983335941961082140e-09,-3.037578413633101657e-09,-3.091820885305121175e-09,-3.146063356977140692e-09,-3.200305828649160209e-09,-3.254548300321179727e-09,-3.308790771993199244e-09,-3.363033243665218761e-09,-3.417275715337238279e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.648128197753013482e-11,-1.129625639550602696e-10,-1.694438459325904109e-10,-2.259251279101205651e-10,-2.824064098876507193e-10,-3.388876918651808735e-10,-3.953689738427110277e-10,-4.518502558202411820e-10,-5.083315377977712845e-10,-5.648128197753013353e-10,-6.212941017528313861e-10,-6.777753837303614369e-10,-7.342566657078914877e-10,-7.907379476854215385e-10,-8.472192296629515893e-10,-9.037005116404816401e-10,-9.601817936180116909e-10,-1.016663075595541742e-09,-1.073144357573071793e-09,-1.129625639550601843e-09,-1.186106921528131894e-09,-1.242588203505661945e-09,-1.299069485483191996e-09,-1.355550767460722047e-09,-1.412032049438252097e-09,-1.468513331415782148e-09,-1.524994613393312199e-09,-1.581475895370842250e-09,-1.637957177348372301e-09,-1.694438459325902351e-09,-1.750919741303432402e-09,-1.807401023280962453e-09,-1.863882305258492504e-09,-1.920363587236022555e-09,-1.976844869213552606e-09,-2.033326151191082656e-09,-2.089807433168612707e-09,-2.146288715146142758e-09,-2.202769997123672809e-09,-2.259251279101202860e-09,-2.315732561078732910e-09,-2.372213843056262961e-09,-2.428695125033793012e-09,-2.485176407011323063e-09,-2.541657688988853114e-09,-2.598138970966383164e-09,-2.654620252943913215e-09,-2.711101534921443266e-09,-2.767582816898973317e-09,-2.824064098876503368e-09,-2.880545380854033418e-09,-2.937026662831563469e-09,-2.993507944809093520e-09,-3.049989226786623571e-09,-3.106470508764153622e-09,-3.162951790741683673e-09,-3.219433072719213723e-09,-3.275914354696743774e-09,-3.332395636674273825e-09,-3.388876918651803876e-09,-3.445358200629333927e-09,-3.501839482606863977e-09,-3.558320764584394028e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.648128197730850858e-11,-1.129625639546170172e-10,-1.694438459319255128e-10,-2.259251279092340085e-10,-2.824064098865425041e-10,-3.388876918638510256e-10,-3.953689738411595471e-10,-4.518502558184680686e-10,-5.083315377957765384e-10,-5.648128197730850082e-10,-6.212941017503934780e-10,-6.777753837277019478e-10,-7.342566657050104176e-10,-7.907379476823188874e-10,-8.472192296596273572e-10,-9.037005116369358270e-10,-9.601817936142442968e-10,-1.016663075591552663e-09,-1.073144357568861030e-09,-1.129625639546169396e-09,-1.186106921523477762e-09,-1.242588203500786129e-09,-1.299069485478094495e-09,-1.355550767455402862e-09,-1.412032049432711228e-09,-1.468513331410019594e-09,-1.524994613387327961e-09,-1.581475895364636327e-09,-1.637957177341944694e-09,-1.694438459319253060e-09,-1.750919741296561427e-09,-1.807401023273869793e-09,-1.863882305251178159e-09,-1.920363587228486526e-09,-1.976844869205794892e-09,-2.033326151183103259e-09,-2.089807433160411625e-09,-2.146288715137719991e-09,-2.202769997115028358e-09,-2.259251279092336724e-09,-2.315732561069645091e-09,-2.372213843046953457e-09,-2.428695125024261823e-09,-2.485176407001570190e-09,-2.541657688978878556e-09,-2.598138970956186923e-09,-2.654620252933495289e-09,-2.711101534910803655e-09,-2.767582816888112022e-09,-2.824064098865420388e-09,-2.880545380842728755e-09,-2.937026662820037121e-09,-2.993507944797345487e-09,-3.049989226774653854e-09,-3.106470508751962220e-09,-3.162951790729270587e-09,-3.219433072706578953e-09,-3.275914354683887319e-09,-3.332395636661195686e-09,-3.388876918638504052e-09,-3.445358200615812419e-09,-3.501839482593120785e-09,-3.558320764570429151e-09 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.644333645645684066e-09,-5.288667291291368133e-09,-7.933000936937053026e-09,-1.057733458258273792e-08,-1.322166822822842281e-08,-1.586600187387410605e-08,-1.851033551951978929e-08,-2.115466916516547253e-08,-2.379900281081115577e-08,-2.644333645645683901e-08,-2.908767010210252225e-08,-3.173200374774820549e-08,-3.437633739339388542e-08,-3.702067103903956535e-08,-3.966500468468524528e-08,-4.230933833033092521e-08,-4.495367197597660514e-08,-4.759800562162228507e-08,-5.024233926726796500e-08,-5.288667291291364493e-08,-5.553100655855932486e-08,-5.817534020420500479e-08,-6.081967384985068472e-08,-6.346400749549637127e-08,-6.610834114114205782e-08,-6.875267478678774437e-08,-7.139700843243343091e-08,-7.404134207807911746e-08,-7.668567572372480401e-08,-7.933000936937049056e-08,-8.197434301501617711e-08,-8.461867666066186365e-08,-8.726301030630755020e-08,-8.990734395195323675e-08,-9.255167759759892330e-08,-9.519601124324460985e-08,-9.784034488889029639e-08,-1.004846785345359829e-07,-1.031290121801816695e-07,-1.057733458258273560e-07,-1.084176794714730426e-07,-1.110620131171187291e-07,-1.137063467627644157e-07,-1.163506804084101022e-07,-1.189950140540557888e-07,-1.216393476997014753e-07,-1.242836813453471486e-07,-1.269280149909928219e-07,-1.295723486366384953e-07,-1.322166822822841686e-07,-1.348610159279298419e-07,-1.375053495735755152e-07,-1.401496832192211885e-07,-1.427940168648668618e-07,-1.454383505105125351e-07,-1.480826841561582085e-07,-1.507270178018038818e-07,-1.533713514474495551e-07,-1.560156850930952284e-07,-1.586600187387409017e-07,-1.613043523843865750e-07,-1.639486860300322483e-07,-1.665930196756779216e-07 +0.000000000000000000e+00,-3.005526085022854891e-09,-6.011052170045709782e-09,-9.016578255068565087e-09,-1.202210434009142122e-08,-1.502763042511427735e-08,-1.803315651013713348e-08,-2.103868259515998961e-08,-2.404420868018284575e-08,-2.704973476520570188e-08,-3.005526085022855470e-08,-3.306078693525140752e-08,-3.606631302027426035e-08,-3.907183910529711317e-08,-4.207736519031996599e-08,-4.508289127534281882e-08,-4.808841736036567164e-08,-5.109394344538852446e-08,-5.409946953041137728e-08,-5.710499561543423011e-08,-6.011052170045708293e-08,-6.311604778547994237e-08,-6.612157387050280181e-08,-6.912709995552566125e-08,-7.213262604054852069e-08,-7.513815212557138013e-08,-7.814367821059423957e-08,-8.114920429561709901e-08,-8.415473038063995845e-08,-8.716025646566281789e-08,-9.016578255068567734e-08,-9.317130863570853678e-08,-9.617683472073139622e-08,-9.918236080575425566e-08,-1.021878868907771151e-07,-1.051934129757999745e-07,-1.081989390608228340e-07,-1.112044651458456934e-07,-1.142099912308685529e-07,-1.172155173158914123e-07,-1.202210434009142717e-07,-1.232265694859371312e-07,-1.262320955709599906e-07,-1.292376216559828501e-07,-1.322431477410057095e-07,-1.352486738260285689e-07,-1.382541999110514284e-07,-1.412597259960742878e-07,-1.442652520810971473e-07,-1.472707781661200067e-07,-1.502763042511428661e-07,-1.532818303361657256e-07,-1.562873564211885850e-07,-1.592928825062114445e-07,-1.622984085912343039e-07,-1.653039346762571633e-07,-1.683094607612800228e-07,-1.713149868463028822e-07,-1.743205129313257417e-07,-1.773260390163486011e-07,-1.803315651013714605e-07,-1.833370911863943200e-07,-1.863426172714171794e-07,-1.893481433564400389e-07 +0.000000000000000000e+00,-1.646541906200923447e-09,-3.293083812401846895e-09,-4.939625718602770549e-09,-6.586167624803694616e-09,-8.232709531004618684e-09,-9.879251437205542752e-09,-1.152579334340646682e-08,-1.317233524960739089e-08,-1.481887715580831495e-08,-1.646541906200923737e-08,-1.811196096821015978e-08,-1.975850287441108219e-08,-2.140504478061200461e-08,-2.305158668681292702e-08,-2.469812859301384943e-08,-2.634467049921477185e-08,-2.799121240541569426e-08,-2.963775431161661667e-08,-3.128429621781753909e-08,-3.293083812401846150e-08,-3.457738003021938391e-08,-3.622392193642030633e-08,-3.787046384262122874e-08,-3.951700574882215115e-08,-4.116354765502307357e-08,-4.281008956122399598e-08,-4.445663146742491839e-08,-4.610317337362584081e-08,-4.774971527982676322e-08,-4.939625718602768563e-08,-5.104279909222860805e-08,-5.268934099842953046e-08,-5.433588290463045287e-08,-5.598242481083137529e-08,-5.762896671703229770e-08,-5.927550862323322011e-08,-6.092205052943414914e-08,-6.256859243563507818e-08,-6.421513434183600721e-08,-6.586167624803693624e-08,-6.750821815423786527e-08,-6.915476006043879430e-08,-7.080130196663972333e-08,-7.244784387284065236e-08,-7.409438577904158139e-08,-7.574092768524251042e-08,-7.738746959144343945e-08,-7.903401149764436848e-08,-8.068055340384529751e-08,-8.232709531004622654e-08,-8.397363721624715558e-08,-8.562017912244808461e-08,-8.726672102864901364e-08,-8.891326293484994267e-08,-9.055980484105087170e-08,-9.220634674725180073e-08,-9.385288865345272976e-08,-9.549943055965365879e-08,-9.714597246585458782e-08,-9.879251437205551685e-08,-1.004390562782564459e-07,-1.020855981844573749e-07,-1.037321400906583039e-07 +0.000000000000000000e+00,-2.644333645644121109e-09,-5.288667291288242217e-09,-7.933000936932362912e-09,-1.057733458257648278e-08,-1.322166822822060265e-08,-1.586600187386472252e-08,-1.851033551950884073e-08,-2.115466916515295894e-08,-2.379900281079707716e-08,-2.644333645644119537e-08,-2.908767010208531358e-08,-3.173200374772943180e-08,-3.437633739337355001e-08,-3.702067103901766822e-08,-3.966500468466178644e-08,-4.230933833030590465e-08,-4.495367197595002286e-08,-4.759800562159414108e-08,-5.024233926723825929e-08,-5.288667291288237750e-08,-5.553100655852649572e-08,-5.817534020417061393e-08,-6.081967384981472553e-08,-6.346400749545883712e-08,-6.610834114110294872e-08,-6.875267478674706031e-08,-7.139700843239117191e-08,-7.404134207803528351e-08,-7.668567572367939510e-08,-7.933000936932350670e-08,-8.197434301496761829e-08,-8.461867666061172989e-08,-8.726301030625584149e-08,-8.990734395189995308e-08,-9.255167759754406468e-08,-9.519601124318817627e-08,-9.784034488883228787e-08,-1.004846785344763995e-07,-1.031290121801205111e-07,-1.057733458257646227e-07,-1.084176794714087343e-07,-1.110620131170528459e-07,-1.137063467626969574e-07,-1.163506804083410690e-07,-1.189950140539851806e-07,-1.216393476996292922e-07,-1.242836813452734038e-07,-1.269280149909175154e-07,-1.295723486365616270e-07,-1.322166822822057386e-07,-1.348610159278498502e-07,-1.375053495734939618e-07,-1.401496832191380734e-07,-1.427940168647821850e-07,-1.454383505104262966e-07,-1.480826841560704082e-07,-1.507270178017145198e-07,-1.533713514473586314e-07,-1.560156850930027430e-07,-1.586600187386468546e-07,-1.613043523842909662e-07,-1.639486860299350778e-07,-1.665930196755791894e-07 +0.000000000000000000e+00,-3.005526085021001179e-09,-6.011052170042002358e-09,-9.016578255063003124e-09,-1.202210434008400306e-08,-1.502763042510500300e-08,-1.803315651012600294e-08,-2.103868259514700288e-08,-2.404420868016800282e-08,-2.704973476518900275e-08,-3.005526085020999938e-08,-3.306078693523099271e-08,-3.606631302025198603e-08,-3.907183910527297935e-08,-4.207736519029397267e-08,-4.508289127531496599e-08,-4.808841736033595931e-08,-5.109394344535695263e-08,-5.409946953037794595e-08,-5.710499561539893927e-08,-6.011052170041993259e-08,-6.311604778544092592e-08,-6.612157387046191924e-08,-6.912709995548291256e-08,-7.213262604050390588e-08,-7.513815212552489920e-08,-7.814367821054589252e-08,-8.114920429556688584e-08,-8.415473038058787916e-08,-8.716025646560887248e-08,-9.016578255062986581e-08,-9.317130863565085913e-08,-9.617683472067185245e-08,-9.918236080569284577e-08,-1.021878868907138391e-07,-1.051934129757348324e-07,-1.081989390607558257e-07,-1.112044651457768191e-07,-1.142099912307978124e-07,-1.172155173158188057e-07,-1.202210434008397858e-07,-1.232265694858607659e-07,-1.262320955708817460e-07,-1.292376216559027260e-07,-1.322431477409237061e-07,-1.352486738259446862e-07,-1.382541999109656663e-07,-1.412597259959866464e-07,-1.442652520810076265e-07,-1.472707781660286066e-07,-1.502763042510495866e-07,-1.532818303360705667e-07,-1.562873564210915468e-07,-1.592928825061125269e-07,-1.622984085911335070e-07,-1.653039346761544871e-07,-1.683094607611754672e-07,-1.713149868461964472e-07,-1.743205129312174273e-07,-1.773260390162384074e-07,-1.803315651012593875e-07,-1.833370911862803676e-07,-1.863426172713013477e-07,-1.893481433563223278e-07 +0.000000000000000000e+00,-1.646541906198703088e-09,-3.293083812397406175e-09,-4.939625718596109263e-09,-6.586167624794812351e-09,-8.232709530993514611e-09,-9.879251437192216872e-09,-1.152579334339091913e-08,-1.317233524958962139e-08,-1.481887715578832365e-08,-1.646541906198702591e-08,-1.811196096818572817e-08,-1.975850287438443044e-08,-2.140504478058313270e-08,-2.305158668678183496e-08,-2.469812859298053722e-08,-2.634467049917923948e-08,-2.799121240537794174e-08,-2.963775431157664400e-08,-3.128429621777534626e-08,-3.293083812397404521e-08,-3.457738003017274416e-08,-3.622392193637144311e-08,-3.787046384257014207e-08,-3.951700574876884102e-08,-4.116354765496753997e-08,-4.281008956116623892e-08,-4.445663146736493787e-08,-4.610317337356363683e-08,-4.774971527976233578e-08,-4.939625718596103473e-08,-5.104279909215973368e-08,-5.268934099835843263e-08,-5.433588290455713158e-08,-5.598242481075583054e-08,-5.762896671695452949e-08,-5.927550862315322844e-08,-6.092205052935193401e-08,-6.256859243555063958e-08,-6.421513434174934515e-08,-6.586167624794805072e-08,-6.750821815414675629e-08,-6.915476006034546186e-08,-7.080130196654416743e-08,-7.244784387274287299e-08,-7.409438577894157856e-08,-7.574092768514028413e-08,-7.738746959133898970e-08,-7.903401149753769527e-08,-8.068055340373640084e-08,-8.232709530993510641e-08,-8.397363721613381198e-08,-8.562017912233251755e-08,-8.726672102853122312e-08,-8.891326293472992869e-08,-9.055980484092863426e-08,-9.220634674712733983e-08,-9.385288865332604540e-08,-9.549943055952475096e-08,-9.714597246572345653e-08,-9.879251437192216210e-08,-1.004390562781208677e-07,-1.020855981843195732e-07,-1.037321400905182788e-07 +0.000000000000000000e+00,-1.913210363563064983e-09,-3.826420727126129967e-09,-5.739631090689194950e-09,-7.652841454252259934e-09,-9.566051817815324090e-09,-1.147926218137838825e-08,-1.339247254494145240e-08,-1.530568290850451656e-08,-1.721889327206758071e-08,-1.913210363563064487e-08,-2.104531399919370903e-08,-2.295852436275677318e-08,-2.487173472631983734e-08,-2.678494508988290150e-08,-2.869815545344596565e-08,-3.061136581700902650e-08,-3.252457618057209066e-08,-3.443778654413515481e-08,-3.635099690769821897e-08,-3.826420727126128312e-08,-4.017741763482434728e-08,-4.209062799838741144e-08,-4.400383836195047559e-08,-4.591704872551353975e-08,-4.783025908907660391e-08,-4.974346945263966806e-08,-5.165667981620273222e-08,-5.356989017976579637e-08,-5.548310054332886053e-08,-5.739631090689192469e-08,-5.930952127045498884e-08,-6.122273163401805300e-08,-6.313594199758111716e-08,-6.504915236114418131e-08,-6.696236272470724547e-08,-6.887557308827030962e-08,-7.078878345183337378e-08,-7.270199381539643794e-08,-7.461520417895950209e-08,-7.652841454252256625e-08,-7.844162490608563040e-08,-8.035483526964869456e-08,-8.226804563321175872e-08,-8.418125599677482287e-08,-8.609446636033788703e-08,-8.800767672390095119e-08,-8.992088708746401534e-08,-9.183409745102707950e-08,-9.374730781459014365e-08,-9.566051817815320781e-08,-9.757372854171627197e-08,-9.948693890527933612e-08,-1.014001492688424003e-07,-1.033133596324054644e-07,-1.052265699959685286e-07,-1.071397803595315927e-07,-1.090529907230946569e-07,-1.109662010866577211e-07,-1.128794114502207852e-07,-1.147926218137838494e-07,-1.167058321773469135e-07,-1.186190425409099777e-07,-1.205322529044730551e-07 +0.000000000000000000e+00,-2.276980632188307803e-09,-4.553961264376615606e-09,-6.830941896564923823e-09,-9.107922528753232867e-09,-1.138490316094154191e-08,-1.366188379312985096e-08,-1.593886442531816000e-08,-1.821584505750646904e-08,-2.049282568969477809e-08,-2.276980632188308713e-08,-2.504678695407139618e-08,-2.732376758625970522e-08,-2.960074821844801426e-08,-3.187772885063632662e-08,-3.415470948282464228e-08,-3.643169011501295794e-08,-3.870867074720127360e-08,-4.098565137938958926e-08,-4.326263201157790492e-08,-4.553961264376622058e-08,-4.781659327595453625e-08,-5.009357390814285191e-08,-5.237055454033116757e-08,-5.464753517251948323e-08,-5.692451580470779889e-08,-5.920149643689611455e-08,-6.147847706908443021e-08,-6.375545770127274588e-08,-6.603243833346106154e-08,-6.830941896564937720e-08,-7.058639959783769286e-08,-7.286338023002600852e-08,-7.514036086221432418e-08,-7.741734149440263984e-08,-7.969432212659095551e-08,-8.197130275877927117e-08,-8.424828339096758683e-08,-8.652526402315590249e-08,-8.880224465534421815e-08,-9.107922528753253381e-08,-9.335620591972084947e-08,-9.563318655190916514e-08,-9.791016718409748080e-08,-1.001871478162857965e-07,-1.024641284484741121e-07,-1.047411090806624278e-07,-1.070180897128507434e-07,-1.092950703450390591e-07,-1.115720509772273748e-07,-1.138490316094156904e-07,-1.161260122416040061e-07,-1.184029928737923217e-07,-1.206799735059806374e-07,-1.229569541381689663e-07,-1.252339347703572952e-07,-1.275109154025456241e-07,-1.297878960347339530e-07,-1.320648766669222819e-07,-1.343418572991106108e-07,-1.366188379312989397e-07,-1.388958185634872686e-07,-1.411727991956755975e-07,-1.434497798278639264e-07 +0.000000000000000000e+00,-1.161998438049230181e-09,-2.323996876098460362e-09,-3.485995314147690543e-09,-4.647993752196920724e-09,-5.809992190246150492e-09,-6.971990628295380259e-09,-8.133989066344610027e-09,-9.295987504393839794e-09,-1.045798594244306956e-08,-1.161998438049229933e-08,-1.278198281854152910e-08,-1.394398125659075886e-08,-1.510597969463998698e-08,-1.626797813268921675e-08,-1.742997657073844651e-08,-1.859197500878767628e-08,-1.975397344683690605e-08,-2.091597188488613582e-08,-2.207797032293536558e-08,-2.323996876098459535e-08,-2.440196719903382512e-08,-2.556396563708305489e-08,-2.672596407513228465e-08,-2.788796251318151442e-08,-2.904996095123074419e-08,-3.021195938927997396e-08,-3.137395782732920372e-08,-3.253595626537843349e-08,-3.369795470342766326e-08,-3.485995314147689303e-08,-3.602195157952612279e-08,-3.718395001757535256e-08,-3.834594845562458233e-08,-3.950794689367381210e-08,-4.066994533172304186e-08,-4.183194376977227163e-08,-4.299394220782150140e-08,-4.415594064587073117e-08,-4.531793908391996093e-08,-4.647993752196919070e-08,-4.764193596001842047e-08,-4.880393439806765024e-08,-4.996593283611688000e-08,-5.112793127416610977e-08,-5.228992971221533954e-08,-5.345192815026456931e-08,-5.461392658831379907e-08,-5.577592502636302884e-08,-5.693792346441225861e-08,-5.809992190246148838e-08,-5.926192034051071814e-08,-6.042391877855994791e-08,-6.158591721660917768e-08,-6.274791565465840745e-08,-6.390991409270763721e-08,-6.507191253075686698e-08,-6.623391096880609675e-08,-6.739590940685532652e-08,-6.855790784490455628e-08,-6.971990628295378605e-08,-7.088190472100301582e-08,-7.204390315905224559e-08,-7.320590159710147535e-08 +0.000000000000000000e+00,-1.913210363562287020e-09,-3.826420727124574040e-09,-5.739631090686861474e-09,-7.652841454249149734e-09,-9.566051817811437995e-09,-1.147926218137372626e-08,-1.339247254493601452e-08,-1.530568290849830278e-08,-1.721889327206058938e-08,-1.913210363562287599e-08,-2.104531399918516260e-08,-2.295852436274744920e-08,-2.487173472630973581e-08,-2.678494508987202242e-08,-2.869815545343430902e-08,-3.061136581699659894e-08,-3.252457618055888885e-08,-3.443778654412117877e-08,-3.635099690768346868e-08,-3.826420727124575860e-08,-4.017741763480804851e-08,-4.209062799837033843e-08,-4.400383836193262834e-08,-4.591704872549491826e-08,-4.783025908905720817e-08,-4.974346945261949809e-08,-5.165667981618178800e-08,-5.356989017974407792e-08,-5.548310054330636784e-08,-5.739631090686865775e-08,-5.930952127043094767e-08,-6.122273163399323758e-08,-6.313594199755553411e-08,-6.504915236111783065e-08,-6.696236272468012718e-08,-6.887557308824242371e-08,-7.078878345180472024e-08,-7.270199381536701678e-08,-7.461520417892931331e-08,-7.652841454249160984e-08,-7.844162490605390637e-08,-8.035483526961620291e-08,-8.226804563317849944e-08,-8.418125599674079597e-08,-8.609446636030309250e-08,-8.800767672386538904e-08,-8.992088708742768557e-08,-9.183409745098998210e-08,-9.374730781455227863e-08,-9.566051817811457517e-08,-9.757372854167687170e-08,-9.948693890523916823e-08,-1.014001492688014648e-07,-1.033133596323637613e-07,-1.052265699959260578e-07,-1.071397803594883544e-07,-1.090529907230506509e-07,-1.109662010866129474e-07,-1.128794114501752440e-07,-1.147926218137375405e-07,-1.167058321772998370e-07,-1.186190425408621336e-07,-1.205322529044244301e-07 +0.000000000000000000e+00,-2.276980632187145201e-09,-4.553961264374290402e-09,-6.830941896561435603e-09,-9.107922528748580803e-09,-1.138490316093572518e-08,-1.366188379312286955e-08,-1.593886442531001392e-08,-1.821584505749715830e-08,-2.049282568968430267e-08,-2.276980632187144705e-08,-2.504678695405859142e-08,-2.732376758624573579e-08,-2.960074821843288017e-08,-3.187772885062002123e-08,-3.415470948280715899e-08,-3.643169011499429674e-08,-3.870867074718143450e-08,-4.098565137936857226e-08,-4.326263201155571001e-08,-4.553961264374284777e-08,-4.781659327592998553e-08,-5.009357390811712328e-08,-5.237055454030426104e-08,-5.464753517249139879e-08,-5.692451580467853655e-08,-5.920149643686567431e-08,-6.147847706905281206e-08,-6.375545770123994982e-08,-6.603243833342708757e-08,-6.830941896561422533e-08,-7.058639959780136309e-08,-7.286338022998850084e-08,-7.514036086217563860e-08,-7.741734149436277636e-08,-7.969432212654991411e-08,-8.197130275873705187e-08,-8.424828339092418962e-08,-8.652526402311132738e-08,-8.880224465529846514e-08,-9.107922528748560289e-08,-9.335620591967274065e-08,-9.563318655185987841e-08,-9.791016718404701616e-08,-1.001871478162341539e-07,-1.024641284484212917e-07,-1.047411090806084294e-07,-1.070180897127955672e-07,-1.092950703449827049e-07,-1.115720509771698427e-07,-1.138490316093569805e-07,-1.161260122415441182e-07,-1.184029928737312560e-07,-1.206799735059183805e-07,-1.229569541381054918e-07,-1.252339347702926031e-07,-1.275109154024797143e-07,-1.297878960346668256e-07,-1.320648766668539369e-07,-1.343418572990410482e-07,-1.366188379312281595e-07,-1.388958185634152708e-07,-1.411727991956023821e-07,-1.434497798277894934e-07 +0.000000000000000000e+00,-1.161998438048092394e-09,-2.323996876096184788e-09,-3.485995314144277183e-09,-4.647993752192369577e-09,-5.809992190240461971e-09,-6.971990628288554365e-09,-8.133989066336647586e-09,-9.295987504384740808e-09,-1.045798594243283403e-08,-1.161998438048092725e-08,-1.278198281852902047e-08,-1.394398125657711369e-08,-1.510597969462520691e-08,-1.626797813267330179e-08,-1.742997657072139667e-08,-1.859197500876949154e-08,-1.975397344681758642e-08,-2.091597188486568129e-08,-2.207797032291377617e-08,-2.323996876096187104e-08,-2.440196719900996592e-08,-2.556396563705806080e-08,-2.672596407510615567e-08,-2.788796251315425055e-08,-2.904996095120234542e-08,-3.021195938925044030e-08,-3.137395782729853848e-08,-3.253595626534663667e-08,-3.369795470339473485e-08,-3.485995314144283304e-08,-3.602195157949093122e-08,-3.718395001753902941e-08,-3.834594845558712759e-08,-3.950794689363522577e-08,-4.066994533168332396e-08,-4.183194376973142214e-08,-4.299394220777952033e-08,-4.415594064582761851e-08,-4.531793908387571670e-08,-4.647993752192381488e-08,-4.764193595997191307e-08,-4.880393439802001125e-08,-4.996593283606810943e-08,-5.112793127411620762e-08,-5.228992971216430580e-08,-5.345192815021240399e-08,-5.461392658826050217e-08,-5.577592502630860036e-08,-5.693792346435669854e-08,-5.809992190240479673e-08,-5.926192034045289491e-08,-6.042391877850099971e-08,-6.158591721654910451e-08,-6.274791565459720932e-08,-6.390991409264531412e-08,-6.507191253069341892e-08,-6.623391096874152372e-08,-6.739590940678962852e-08,-6.855790784483773332e-08,-6.971990628288583813e-08,-7.088190472093394293e-08,-7.204390315898204773e-08,-7.320590159703015253e-08 +0.000000000000000000e+00,-1.187870811537390900e-09,-2.375741623074781801e-09,-3.563612434612172701e-09,-4.751483246149563602e-09,-5.939354057686954502e-09,-7.127224869224345403e-09,-8.315095680761735476e-09,-9.502966492299125549e-09,-1.069083730383651562e-08,-1.187870811537390570e-08,-1.306657892691129577e-08,-1.425444973844868584e-08,-1.544232054998607592e-08,-1.663019136152346433e-08,-1.781806217306085275e-08,-1.900593298459824117e-08,-2.019380379613562959e-08,-2.138167460767301801e-08,-2.256954541921040643e-08,-2.375741623074779485e-08,-2.494528704228518327e-08,-2.613315785382257169e-08,-2.732102866535996010e-08,-2.850889947689734852e-08,-2.969677028843473694e-08,-3.088464109997212536e-08,-3.207251191150951709e-08,-3.326038272304690882e-08,-3.444825353458430054e-08,-3.563612434612169227e-08,-3.682399515765908400e-08,-3.801186596919647573e-08,-3.919973678073386745e-08,-4.038760759227125918e-08,-4.157547840380865091e-08,-4.276334921534604264e-08,-4.395122002688343437e-08,-4.513909083842082609e-08,-4.632696164995821782e-08,-4.751483246149560955e-08,-4.870270327303300128e-08,-4.989057408457039300e-08,-5.107844489610778473e-08,-5.226631570764517646e-08,-5.345418651918256819e-08,-5.464205733071995991e-08,-5.582992814225735164e-08,-5.701779895379474337e-08,-5.820566976533213510e-08,-5.939354057686952682e-08,-6.058141138840691855e-08,-6.176928219994431690e-08,-6.295715301148171524e-08,-6.414502382301911359e-08,-6.533289463455651193e-08,-6.652076544609391028e-08,-6.770863625763130862e-08,-6.889650706916870697e-08,-7.008437788070610531e-08,-7.127224869224350366e-08,-7.246011950378090200e-08,-7.364799031531830035e-08,-7.483586112685569869e-08 +0.000000000000000000e+00,-1.544364335743876501e-09,-3.088728671487753001e-09,-4.633093007231629709e-09,-6.177457342975506830e-09,-7.721821678719384778e-09,-9.266186014463262727e-09,-1.081055035020714067e-08,-1.235491468595101862e-08,-1.389927902169489657e-08,-1.544364335743877617e-08,-1.698800769318265578e-08,-1.853237202892653538e-08,-2.007673636467041498e-08,-2.162110070041429458e-08,-2.316546503615817419e-08,-2.470982937190205379e-08,-2.625419370764593339e-08,-2.779855804338981300e-08,-2.934292237913369260e-08,-3.088728671487757220e-08,-3.243165105062145511e-08,-3.397601538636533802e-08,-3.552037972210922093e-08,-3.706474405785310385e-08,-3.860910839359698676e-08,-4.015347272934086967e-08,-4.169783706508475258e-08,-4.324220140082863549e-08,-4.478656573657251840e-08,-4.633093007231640131e-08,-4.787529440806028423e-08,-4.941965874380416714e-08,-5.096402307954805005e-08,-5.250838741529193296e-08,-5.405275175103581587e-08,-5.559711608677969878e-08,-5.714148042252358169e-08,-5.868584475826746461e-08,-6.023020909401134752e-08,-6.177457342975523705e-08,-6.331893776549912657e-08,-6.486330210124301610e-08,-6.640766643698690563e-08,-6.795203077273079516e-08,-6.949639510847468469e-08,-7.104075944421857422e-08,-7.258512377996246375e-08,-7.412948811570635328e-08,-7.567385245145024281e-08,-7.721821678719413233e-08,-7.876258112293802186e-08,-8.030694545868191139e-08,-8.185130979442580092e-08,-8.339567413016969045e-08,-8.494003846591357998e-08,-8.648440280165746951e-08,-8.802876713740135904e-08,-8.957313147314524856e-08,-9.111749580888913809e-08,-9.266186014463302762e-08,-9.420622448037691715e-08,-9.575058881612080668e-08,-9.729495315186469621e-08 +0.000000000000000000e+00,-7.007489299802355272e-10,-1.401497859960471054e-09,-2.102246789940706685e-09,-2.802995719920942522e-09,-3.503744649901178360e-09,-4.204493579881414197e-09,-4.905242509861650034e-09,-5.605991439841885872e-09,-6.306740369822121709e-09,-7.007489299802357546e-09,-7.708238229782593384e-09,-8.408987159762830048e-09,-9.109736089743066713e-09,-9.810485019723303377e-09,-1.051123394970354004e-08,-1.121198287968377671e-08,-1.191273180966401337e-08,-1.261348073964425004e-08,-1.331422966962448670e-08,-1.401497859960472336e-08,-1.471572752958496003e-08,-1.541647645956519669e-08,-1.611722538954543336e-08,-1.681797431952567002e-08,-1.751872324950590669e-08,-1.821947217948614335e-08,-1.892022110946638002e-08,-1.962097003944661668e-08,-2.032171896942685335e-08,-2.102246789940709001e-08,-2.172321682938732667e-08,-2.242396575936756334e-08,-2.312471468934780000e-08,-2.382546361932803667e-08,-2.452621254930827333e-08,-2.522696147928851000e-08,-2.592771040926874666e-08,-2.662845933924898333e-08,-2.732920826922921999e-08,-2.802995719920945666e-08,-2.873070612918969332e-08,-2.943145505916992998e-08,-3.013220398915016334e-08,-3.083295291913040000e-08,-3.153370184911063667e-08,-3.223445077909087333e-08,-3.293519970907111000e-08,-3.363594863905134666e-08,-3.433669756903158333e-08,-3.503744649901181999e-08,-3.573819542899205666e-08,-3.643894435897229332e-08,-3.713969328895252999e-08,-3.784044221893276665e-08,-3.854119114891300331e-08,-3.924194007889323998e-08,-3.994268900887347664e-08,-4.064343793885371331e-08,-4.134418686883394997e-08,-4.204493579881418664e-08,-4.274568472879442330e-08,-4.344643365877465997e-08,-4.414718258875489663e-08 +0.000000000000000000e+00,-1.187870811537184932e-09,-2.375741623074369865e-09,-3.563612434611554797e-09,-4.751483246148739730e-09,-5.939354057685924662e-09,-7.127224869223109595e-09,-8.315095680760294527e-09,-9.502966492297479460e-09,-1.069083730383466439e-08,-1.187870811537184932e-08,-1.306657892690903426e-08,-1.425444973844621919e-08,-1.544232054998340578e-08,-1.663019136152059236e-08,-1.781806217305777895e-08,-1.900593298459496554e-08,-2.019380379613215212e-08,-2.138167460766933871e-08,-2.256954541920652530e-08,-2.375741623074371188e-08,-2.494528704228089847e-08,-2.613315785381808506e-08,-2.732102866535527164e-08,-2.850889947689245823e-08,-2.969677028842964482e-08,-3.088464109996683141e-08,-3.207251191150401799e-08,-3.326038272304120458e-08,-3.444825353457839117e-08,-3.563612434611557775e-08,-3.682399515765276434e-08,-3.801186596918995093e-08,-3.919973678072713751e-08,-4.038760759226432410e-08,-4.157547840380151069e-08,-4.276334921533869727e-08,-4.395122002687588386e-08,-4.513909083841307045e-08,-4.632696164995025703e-08,-4.751483246148744362e-08,-4.870270327302463021e-08,-4.989057408456181679e-08,-5.107844489609900338e-08,-5.226631570763618997e-08,-5.345418651917337656e-08,-5.464205733071056314e-08,-5.582992814224774973e-08,-5.701779895378493632e-08,-5.820566976532212290e-08,-5.939354057685930949e-08,-6.058141138839648946e-08,-6.176928219993367605e-08,-6.295715301147086263e-08,-6.414502382300804922e-08,-6.533289463454523581e-08,-6.652076544608242239e-08,-6.770863625761960898e-08,-6.889650706915679557e-08,-7.008437788069398215e-08,-7.127224869223116874e-08,-7.246011950376835533e-08,-7.364799031530554191e-08,-7.483586112684272850e-08 +0.000000000000000000e+00,-1.544364335743441197e-09,-3.088728671486882394e-09,-4.633093007230323591e-09,-6.177457342973764788e-09,-7.721821678717205985e-09,-9.266186014460647182e-09,-1.081055035020408838e-08,-1.235491468594752958e-08,-1.389927902169097077e-08,-1.544364335743441197e-08,-1.698800769317785482e-08,-1.853237202892129767e-08,-2.007673636466474052e-08,-2.162110070040818337e-08,-2.316546503615162623e-08,-2.470982937189506908e-08,-2.625419370763851193e-08,-2.779855804338195478e-08,-2.934292237912539763e-08,-3.088728671486884379e-08,-3.243165105061228995e-08,-3.397601538635573611e-08,-3.552037972209918227e-08,-3.706474405784262843e-08,-3.860910839358607459e-08,-4.015347272932952075e-08,-4.169783706507296691e-08,-4.324220140081641307e-08,-4.478656573655985923e-08,-4.633093007230330539e-08,-4.787529440804675155e-08,-4.941965874379019771e-08,-5.096402307953364387e-08,-5.250838741527709003e-08,-5.405275175102053619e-08,-5.559711608676398235e-08,-5.714148042250742851e-08,-5.868584475825087467e-08,-6.023020909399431421e-08,-6.177457342973775376e-08,-6.331893776548119330e-08,-6.486330210122463284e-08,-6.640766643696807238e-08,-6.795203077271151193e-08,-6.949639510845495147e-08,-7.104075944419839101e-08,-7.258512377994183055e-08,-7.412948811568527010e-08,-7.567385245142870964e-08,-7.721821678717214918e-08,-7.876258112291558872e-08,-8.030694545865902827e-08,-8.185130979440246781e-08,-8.339567413014590735e-08,-8.494003846588934689e-08,-8.648440280163278644e-08,-8.802876713737622598e-08,-8.957313147311966552e-08,-9.111749580886310507e-08,-9.266186014460654461e-08,-9.420622448034998415e-08,-9.575058881609342369e-08,-9.729495315183686324e-08 +0.000000000000000000e+00,-7.007489299799857186e-10,-1.401497859959971437e-09,-2.102246789939957259e-09,-2.802995719919943288e-09,-3.503744649899929317e-09,-4.204493579879915346e-09,-4.905242509859901375e-09,-5.605991439839887403e-09,-6.306740369819873432e-09,-7.007489299799859461e-09,-7.708238229779845490e-09,-8.408987159759832346e-09,-9.109736089739819202e-09,-9.810485019719806058e-09,-1.051123394969979291e-08,-1.121198287967977977e-08,-1.191273180965976663e-08,-1.261348073963975348e-08,-1.331422966961974034e-08,-1.401497859959972719e-08,-1.471572752957971405e-08,-1.541647645955970091e-08,-1.611722538953968611e-08,-1.681797431951967131e-08,-1.751872324949965651e-08,-1.821947217947964171e-08,-1.892022110945962691e-08,-1.962097003943961212e-08,-2.032171896941959732e-08,-2.102246789939958252e-08,-2.172321682937956772e-08,-2.242396575935955292e-08,-2.312471468933953812e-08,-2.382546361931952333e-08,-2.452621254929950853e-08,-2.522696147927949373e-08,-2.592771040925947893e-08,-2.662845933923946413e-08,-2.732920826921944933e-08,-2.802995719919943454e-08,-2.873070612917941974e-08,-2.943145505915940494e-08,-3.013220398913939014e-08,-3.083295291911937534e-08,-3.153370184909936054e-08,-3.223445077907934574e-08,-3.293519970905933095e-08,-3.363594863903931615e-08,-3.433669756901930135e-08,-3.503744649899928655e-08,-3.573819542897927175e-08,-3.643894435895925695e-08,-3.713969328893924216e-08,-3.784044221891922736e-08,-3.854119114889921256e-08,-3.924194007887919776e-08,-3.994268900885918296e-08,-4.064343793883916816e-08,-4.134418686881915337e-08,-4.204493579879913857e-08,-4.274568472877912377e-08,-4.344643365875910897e-08,-4.414718258873909417e-08 +0.000000000000000000e+00,-5.285333045108362734e-10,-1.057066609021672547e-09,-1.585599913532508924e-09,-2.114133218043345507e-09,-2.642666522554182091e-09,-3.171199827065018675e-09,-3.699733131575855258e-09,-4.228266436086691842e-09,-4.756799740597528012e-09,-5.285333045108364182e-09,-5.813866349619200352e-09,-6.342399654130036522e-09,-6.870932958640872692e-09,-7.399466263151708862e-09,-7.927999567662545032e-09,-8.456532872173382029e-09,-8.985066176684219027e-09,-9.513599481195056024e-09,-1.004213278570589302e-08,-1.057066609021673002e-08,-1.109919939472756702e-08,-1.162773269923840401e-08,-1.215626600374924101e-08,-1.268479930826007801e-08,-1.321333261277091500e-08,-1.374186591728175200e-08,-1.427039922179258900e-08,-1.479893252630342600e-08,-1.532746583081426299e-08,-1.585599913532509999e-08,-1.638453243983593699e-08,-1.691306574434677398e-08,-1.744159904885761098e-08,-1.797013235336844798e-08,-1.849866565787928498e-08,-1.902719896239012197e-08,-1.955573226690095897e-08,-2.008426557141179597e-08,-2.061279887592263297e-08,-2.114133218043346996e-08,-2.166986548494430696e-08,-2.219839878945514396e-08,-2.272693209396598095e-08,-2.325546539847681795e-08,-2.378399870298765495e-08,-2.431253200749849195e-08,-2.484106531200932894e-08,-2.536959861652016594e-08,-2.589813192103100294e-08,-2.642666522554183994e-08,-2.695519853005267693e-08,-2.748373183456351393e-08,-2.801226513907435093e-08,-2.854079844358518792e-08,-2.906933174809602492e-08,-2.959786505260686192e-08,-3.012639835711769561e-08,-3.065493166162853260e-08,-3.118346496613936960e-08,-3.171199827065020660e-08,-3.224053157516104360e-08,-3.276906487967188059e-08,-3.329759818418271759e-08 +0.000000000000000000e+00,-8.498432584846528655e-10,-1.699686516969305731e-09,-2.549529775453958700e-09,-3.399373033938611876e-09,-4.249216292423265465e-09,-5.099059550907919054e-09,-5.948902809392572644e-09,-6.798746067877226233e-09,-7.648589326361879822e-09,-8.498432584846534239e-09,-9.348275843331188655e-09,-1.019811910181584307e-08,-1.104796236030049749e-08,-1.189780561878515190e-08,-1.274764887726980632e-08,-1.359749213575446074e-08,-1.444733539423911515e-08,-1.529717865272376957e-08,-1.614702191120842399e-08,-1.699686516969307840e-08,-1.784670842817773282e-08,-1.869655168666238724e-08,-1.954639494514704165e-08,-2.039623820363169607e-08,-2.124608146211635049e-08,-2.209592472060100490e-08,-2.294576797908565932e-08,-2.379561123757031374e-08,-2.464545449605496815e-08,-2.549529775453962257e-08,-2.634514101302427699e-08,-2.719498427150893140e-08,-2.804482752999358582e-08,-2.889467078847824024e-08,-2.974451404696289465e-08,-3.059435730544754576e-08,-3.144420056393219356e-08,-3.229404382241684136e-08,-3.314388708090148916e-08,-3.399373033938613696e-08,-3.484357359787078475e-08,-3.569341685635543255e-08,-3.654326011484008035e-08,-3.739310337332472815e-08,-3.824294663180937595e-08,-3.909278989029402375e-08,-3.994263314877867155e-08,-4.079247640726331935e-08,-4.164231966574796715e-08,-4.249216292423261495e-08,-4.334200618271726275e-08,-4.419184944120191054e-08,-4.504169269968655834e-08,-4.589153595817120614e-08,-4.674137921665585394e-08,-4.759122247514050174e-08,-4.844106573362514954e-08,-4.929090899210979734e-08,-5.014075225059444514e-08,-5.099059550907909294e-08,-5.184043876756374074e-08,-5.269028202604838853e-08,-5.354012528453303633e-08 +0.000000000000000000e+00,-2.954569915792836898e-10,-5.909139831585673796e-10,-8.863709747378510693e-10,-1.181827966317134759e-09,-1.477284957896418346e-09,-1.772741949475701932e-09,-2.068198941054985518e-09,-2.363655932634269105e-09,-2.659112924213552691e-09,-2.954569915792836277e-09,-3.250026907372119864e-09,-3.545483898951403450e-09,-3.840940890530686623e-09,-4.136397882109970209e-09,-4.431854873689253796e-09,-4.727311865268537382e-09,-5.022768856847820969e-09,-5.318225848427104555e-09,-5.613682840006388141e-09,-5.909139831585671728e-09,-6.204596823164955314e-09,-6.500053814744238900e-09,-6.795510806323522487e-09,-7.090967797902806073e-09,-7.386424789482089660e-09,-7.681881781061373246e-09,-7.977338772640656832e-09,-8.272795764219940419e-09,-8.568252755799224005e-09,-8.863709747378507592e-09,-9.159166738957791178e-09,-9.454623730537074764e-09,-9.750080722116358351e-09,-1.004553771369564194e-08,-1.034099470527492552e-08,-1.063645169685420911e-08,-1.093190868843349270e-08,-1.122736568001277628e-08,-1.152282267159205987e-08,-1.181827966317134346e-08,-1.211373665475062704e-08,-1.240919364632991063e-08,-1.270465063790919421e-08,-1.300010762948847780e-08,-1.329556462106776139e-08,-1.359102161264704497e-08,-1.388647860422632856e-08,-1.418193559580561215e-08,-1.447739258738489573e-08,-1.477284957896417932e-08,-1.506830657054346456e-08,-1.536376356212274980e-08,-1.565922055370203504e-08,-1.595467754528132028e-08,-1.625013453686060552e-08,-1.654559152843989076e-08,-1.684104852001917600e-08,-1.713650551159846125e-08,-1.743196250317774649e-08,-1.772741949475703173e-08,-1.802287648633631697e-08,-1.831833347791560221e-08,-1.861379046949488745e-08 +0.000000000000000000e+00,-5.285333045107738213e-10,-1.057066609021547643e-09,-1.585599913532321567e-09,-2.114133218043095699e-09,-2.642666522553869830e-09,-3.171199827064643962e-09,-3.699733131575418093e-09,-4.228266436086192225e-09,-4.756799740596966356e-09,-5.285333045107740488e-09,-5.813866349618514619e-09,-6.342399654129288751e-09,-6.870932958640062882e-09,-7.399466263150837014e-09,-7.927999567661611972e-09,-8.456532872172386104e-09,-8.985066176683160235e-09,-9.513599481193934367e-09,-1.004213278570470850e-08,-1.057066609021548263e-08,-1.109919939472625676e-08,-1.162773269923703089e-08,-1.215626600374780502e-08,-1.268479930825857916e-08,-1.321333261276935329e-08,-1.374186591728012742e-08,-1.427039922179090155e-08,-1.479893252630167568e-08,-1.532746583081244981e-08,-1.585599913532322394e-08,-1.638453243983399808e-08,-1.691306574434477221e-08,-1.744159904885554634e-08,-1.797013235336632047e-08,-1.849866565787709460e-08,-1.902719896238786873e-08,-1.955573226689864287e-08,-2.008426557140941700e-08,-2.061279887592019113e-08,-2.114133218043096526e-08,-2.166986548494173939e-08,-2.219839878945251352e-08,-2.272693209396328765e-08,-2.325546539847406179e-08,-2.378399870298483592e-08,-2.431253200749561005e-08,-2.484106531200638418e-08,-2.536959861651715831e-08,-2.589813192102793244e-08,-2.642666522553870657e-08,-2.695519853004948071e-08,-2.748373183456025484e-08,-2.801226513907102897e-08,-2.854079844358180310e-08,-2.906933174809257723e-08,-2.959786505260335136e-08,-3.012639835711412219e-08,-3.065493166162489301e-08,-3.118346496613566383e-08,-3.171199827064643465e-08,-3.224053157515720548e-08,-3.276906487966797630e-08,-3.329759818417874712e-08 +0.000000000000000000e+00,-8.498432584845614621e-10,-1.699686516969122924e-09,-2.549529775453684490e-09,-3.399373033938246262e-09,-4.249216292422808034e-09,-5.099059550907369806e-09,-5.948902809391931579e-09,-6.798746067876493351e-09,-7.648589326361055951e-09,-8.498432584845617723e-09,-9.348275843330179495e-09,-1.019811910181474127e-08,-1.104796236029930304e-08,-1.189780561878386481e-08,-1.274764887726842658e-08,-1.359749213575298836e-08,-1.444733539423755013e-08,-1.529717865272211190e-08,-1.614702191120667367e-08,-1.699686516969123545e-08,-1.784670842817579722e-08,-1.869655168666035899e-08,-1.954639494514492076e-08,-2.039623820362948253e-08,-2.124608146211404431e-08,-2.209592472059860608e-08,-2.294576797908316785e-08,-2.379561123756772962e-08,-2.464545449605229140e-08,-2.549529775453685317e-08,-2.634514101302141494e-08,-2.719498427150597671e-08,-2.804482752999053849e-08,-2.889467078847510026e-08,-2.974451404695966203e-08,-3.059435730544422380e-08,-3.144420056392878557e-08,-3.229404382241334735e-08,-3.314388708089790912e-08,-3.399373033938247089e-08,-3.484357359786703266e-08,-3.569341685635159444e-08,-3.654326011483615621e-08,-3.739310337332071798e-08,-3.824294663180527975e-08,-3.909278989028984152e-08,-3.994263314877440330e-08,-4.079247640725896507e-08,-4.164231966574352684e-08,-4.249216292422808861e-08,-4.334200618271265039e-08,-4.419184944119721216e-08,-4.504169269968177393e-08,-4.589153595816633570e-08,-4.674137921665089748e-08,-4.759122247513545925e-08,-4.844106573362002102e-08,-4.929090899210458279e-08,-5.014075225058914456e-08,-5.099059550907370634e-08,-5.184043876755826811e-08,-5.269028202604282988e-08,-5.354012528452739165e-08 +0.000000000000000000e+00,-2.954569915793469174e-10,-5.909139831586938348e-10,-8.863709747380408039e-10,-1.181827966317387876e-09,-1.477284957896734949e-09,-1.772741949476082021e-09,-2.068198941055429301e-09,-2.363655932634776580e-09,-2.659112924214123859e-09,-2.954569915793471139e-09,-3.250026907372818418e-09,-3.545483898952165697e-09,-3.840940890531512976e-09,-4.136397882110860256e-09,-4.431854873690207535e-09,-4.727311865269554814e-09,-5.022768856848902094e-09,-5.318225848428249373e-09,-5.613682840007596652e-09,-5.909139831586943931e-09,-6.204596823166291211e-09,-6.500053814745638490e-09,-6.795510806324985769e-09,-7.090967797904333049e-09,-7.386424789483680328e-09,-7.681881781063027607e-09,-7.977338772642375714e-09,-8.272795764221723820e-09,-8.568252755801071927e-09,-8.863709747380420033e-09,-9.159166738959768140e-09,-9.454623730539116246e-09,-9.750080722118464353e-09,-1.004553771369781246e-08,-1.034099470527716057e-08,-1.063645169685650867e-08,-1.093190868843585678e-08,-1.122736568001520488e-08,-1.152282267159455299e-08,-1.181827966317390110e-08,-1.211373665475324920e-08,-1.240919364633259731e-08,-1.270465063791194542e-08,-1.300010762949129352e-08,-1.329556462107064163e-08,-1.359102161264998974e-08,-1.388647860422933784e-08,-1.418193559580868595e-08,-1.447739258738803406e-08,-1.477284957896738216e-08,-1.506830657054673027e-08,-1.536376356212607838e-08,-1.565922055370542648e-08,-1.595467754528477459e-08,-1.625013453686412269e-08,-1.654559152844347080e-08,-1.684104852002281891e-08,-1.713650551160216701e-08,-1.743196250318151512e-08,-1.772741949476086323e-08,-1.802287648634021133e-08,-1.831833347791955944e-08,-1.861379046949890755e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657544615265e-10,-5.111155315089230530e-10,-7.666732972633846312e-10,-1.022231063017846313e-09,-1.277788828772307994e-09,-1.533346594526769676e-09,-1.788904360281231358e-09,-2.044462126035693039e-09,-2.300019891790154721e-09,-2.555577657544616403e-09,-2.811135423299078084e-09,-3.066693189053539766e-09,-3.322250954808001447e-09,-3.577808720562463129e-09,-3.833366486316925224e-09,-4.088924252071386906e-09,-4.344482017825848587e-09,-4.600039783580310269e-09,-4.855597549334771951e-09,-5.111155315089233632e-09,-5.366713080843695314e-09,-5.622270846598156995e-09,-5.877828612352618677e-09,-6.133386378107080359e-09,-6.388944143861542040e-09,-6.644501909616003722e-09,-6.900059675370465403e-09,-7.155617441124927085e-09,-7.411175206879388767e-09,-7.666732972633850448e-09,-7.922290738388312130e-09,-8.177848504142773812e-09,-8.433406269897235493e-09,-8.688964035651697175e-09,-8.944521801406158856e-09,-9.200079567160620538e-09,-9.455637332915082220e-09,-9.711195098669543901e-09,-9.966752864424005583e-09,-1.022231063017846726e-08,-1.047786839593292895e-08,-1.073342616168739063e-08,-1.098898392744185231e-08,-1.124454169319631399e-08,-1.150009945895077567e-08,-1.175565722470523735e-08,-1.201121499045969904e-08,-1.226677275621416072e-08,-1.252233052196862240e-08,-1.277788828772308408e-08,-1.303344605347754576e-08,-1.328900381923200744e-08,-1.354456158498646913e-08,-1.380011935074093081e-08,-1.405567711649539249e-08,-1.431123488224985417e-08,-1.456679264800431585e-08,-1.482235041375877753e-08,-1.507790817951323921e-08,-1.533346594526770090e-08,-1.558902371102216258e-08,-1.584458147677662426e-08,-1.610013924253108594e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.555577657544347982e-10,-5.111155315088695965e-10,-7.666732972633043947e-10,-1.022231063017739193e-09,-1.277788828772173991e-09,-1.533346594526608789e-09,-1.788904360281043588e-09,-2.044462126035478386e-09,-2.300019891789913184e-09,-2.555577657544347982e-09,-2.811135423298782781e-09,-3.066693189053217579e-09,-3.322250954807652377e-09,-3.577808720562087175e-09,-3.833366486316521560e-09,-4.088924252070955945e-09,-4.344482017825390329e-09,-4.600039783579824714e-09,-4.855597549334259099e-09,-5.111155315088693483e-09,-5.366713080843127868e-09,-5.622270846597562253e-09,-5.877828612351996637e-09,-6.133386378106431022e-09,-6.388944143860865407e-09,-6.644501909615299791e-09,-6.900059675369734176e-09,-7.155617441124168560e-09,-7.411175206878602945e-09,-7.666732972633036503e-09,-7.922290738387470060e-09,-8.177848504141903618e-09,-8.433406269896337175e-09,-8.688964035650770732e-09,-8.944521801405204290e-09,-9.200079567159637847e-09,-9.455637332914071405e-09,-9.711195098668504962e-09,-9.966752864422938520e-09,-1.022231063017737208e-08,-1.047786839593180563e-08,-1.073342616168623919e-08,-1.098898392744067275e-08,-1.124454169319510631e-08,-1.150009945894953986e-08,-1.175565722470397342e-08,-1.201121499045840698e-08,-1.226677275621284054e-08,-1.252233052196727409e-08,-1.277788828772170765e-08,-1.303344605347614121e-08,-1.328900381923057477e-08,-1.354456158498500832e-08,-1.380011935073944188e-08,-1.405567711649387544e-08,-1.431123488224830900e-08,-1.456679264800274255e-08,-1.482235041375717611e-08,-1.507790817951160801e-08,-1.533346594526603992e-08,-1.558902371102047182e-08,-1.584458147677490372e-08,-1.610013924252933563e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-5.549221516924032672e-09,-1.109844303384806534e-08,-1.664766455077209967e-08,-2.219688606769613400e-08,-2.774610758462016832e-08,-3.329532910154419934e-08,-3.884455061846823036e-08,-4.439377213539226138e-08,-4.994299365231629239e-08,-5.549221516924032341e-08,-6.104143668616436105e-08,-6.659065820308839868e-08,-7.213987972001243632e-08,-7.768910123693647395e-08,-8.323832275386051159e-08,-8.878754427078454922e-08,-9.433676578770858686e-08,-9.988598730463262449e-08,-1.054352088215566621e-07,-1.109844303384806998e-07,-1.165336518554047374e-07,-1.220828733723287750e-07,-1.276320948892528127e-07,-1.331813164061768503e-07,-1.387305379231008879e-07,-1.442797594400249256e-07,-1.498289809569489632e-07,-1.553782024738730008e-07,-1.609274239907970385e-07,-1.664766455077210761e-07,-1.720258670246451137e-07,-1.775750885415691514e-07,-1.831243100584931890e-07,-1.886735315754172267e-07,-1.942227530923412643e-07,-1.997719746092653019e-07,-2.053211961261893396e-07,-2.108704176431133772e-07,-2.164196391600374148e-07,-2.219688606769614525e-07,-2.275180821938854901e-07,-2.330673037108095277e-07,-2.386165252277335389e-07,-2.441657467446575501e-07,-2.497149682615815612e-07,-2.552641897785055724e-07,-2.608134112954295836e-07,-2.663626328123535947e-07,-2.719118543292776059e-07,-2.774610758462016171e-07,-2.830102973631256282e-07,-2.885595188800496394e-07,-2.941087403969736506e-07,-2.996579619138976617e-07,-3.052071834308216729e-07,-3.107564049477456840e-07,-3.163056264646696952e-07,-3.218548479815937064e-07,-3.274040694985177175e-07,-3.329532910154417287e-07,-3.385025125323657399e-07,-3.440517340492897510e-07,-3.496009555662137622e-07 +0.000000000000000000e+00,-6.145880106829035953e-09,-1.229176021365807191e-08,-1.843764032048710869e-08,-2.458352042731614712e-08,-3.072940053414518886e-08,-3.687528064097423061e-08,-4.302116074780327235e-08,-4.916704085463231409e-08,-5.531292096146135583e-08,-6.145880106829040419e-08,-6.760468117511945256e-08,-7.375056128194850092e-08,-7.989644138877754928e-08,-8.604232149560659764e-08,-9.218820160243564600e-08,-9.833408170926469436e-08,-1.044799618160937427e-07,-1.106258419229227911e-07,-1.167717220297518394e-07,-1.229176021365808878e-07,-1.290634822434099494e-07,-1.352093623502390110e-07,-1.413552424570680726e-07,-1.475011225638971342e-07,-1.536470026707261958e-07,-1.597928827775552574e-07,-1.659387628843843190e-07,-1.720846429912133806e-07,-1.782305230980424422e-07,-1.843764032048715038e-07,-1.905222833117005653e-07,-1.966681634185296269e-07,-2.028140435253586885e-07,-2.089599236321877501e-07,-2.151058037390168117e-07,-2.212516838458458733e-07,-2.273975639526749349e-07,-2.335434440595039965e-07,-2.396893241663330581e-07,-2.458352042731621462e-07,-2.519810843799912342e-07,-2.581269644868203223e-07,-2.642728445936494104e-07,-2.704187247004784984e-07,-2.765646048073075865e-07,-2.827104849141366746e-07,-2.888563650209657626e-07,-2.950022451277948507e-07,-3.011481252346239388e-07,-3.072940053414530268e-07,-3.134398854482821149e-07,-3.195857655551112030e-07,-3.257316456619402910e-07,-3.318775257687693791e-07,-3.380234058755984672e-07,-3.441692859824275552e-07,-3.503151660892566433e-07,-3.564610461960857313e-07,-3.626069263029148194e-07,-3.687528064097439075e-07,-3.748986865165729955e-07,-3.810445666234020836e-07,-3.871904467302311717e-07 +0.000000000000000000e+00,-3.932875710632614794e-09,-7.865751421265229588e-09,-1.179862713189784521e-08,-1.573150284253046248e-08,-1.966437855316307976e-08,-2.359725426379569703e-08,-2.753012997442831431e-08,-3.146300568506093159e-08,-3.539588139569354555e-08,-3.932875710632615952e-08,-4.326163281695877349e-08,-4.719450852759138745e-08,-5.112738423822400142e-08,-5.506025994885661539e-08,-5.899313565948922935e-08,-6.292601137012184994e-08,-6.685888708075447052e-08,-7.079176279138709110e-08,-7.472463850201971169e-08,-7.865751421265233227e-08,-8.259038992328495286e-08,-8.652326563391757344e-08,-9.045614134455019403e-08,-9.438901705518281461e-08,-9.832189276581543519e-08,-1.022547684764480558e-07,-1.061876441870806764e-07,-1.101205198977132969e-07,-1.140533956083459175e-07,-1.179862713189785381e-07,-1.219191470296111587e-07,-1.258520227402437793e-07,-1.297848984508763999e-07,-1.337177741615090205e-07,-1.376506498721416410e-07,-1.415835255827742616e-07,-1.455164012934068822e-07,-1.494492770040395028e-07,-1.533821527146721234e-07,-1.573150284253047440e-07,-1.612479041359373645e-07,-1.651807798465699851e-07,-1.691136555572026057e-07,-1.730465312678352263e-07,-1.769794069784678469e-07,-1.809122826891004675e-07,-1.848451583997330880e-07,-1.887780341103657086e-07,-1.927109098209983292e-07,-1.966437855316309498e-07,-2.005766612422635704e-07,-2.045095369528961910e-07,-2.084424126635288115e-07,-2.123752883741614321e-07,-2.163081640847940527e-07,-2.202410397954266733e-07,-2.241739155060592939e-07,-2.281067912166919145e-07,-2.320396669273245351e-07,-2.359725426379571556e-07,-2.399054183485897762e-07,-2.438382940592224233e-07,-2.477711697698550703e-07 +0.000000000000000000e+00,-5.549221516923971461e-09,-1.109844303384794292e-08,-1.664766455077191438e-08,-2.219688606769588584e-08,-2.774610758461985730e-08,-3.329532910154382876e-08,-3.884455061846780022e-08,-4.439377213539177169e-08,-4.994299365231574315e-08,-5.549221516923971461e-08,-6.104143668616368607e-08,-6.659065820308765753e-08,-7.213987972001162899e-08,-7.768910123693560045e-08,-8.323832275385957191e-08,-8.878754427078354337e-08,-9.433676578770751483e-08,-9.988598730463148629e-08,-1.054352088215554578e-07,-1.109844303384794292e-07,-1.165336518554034007e-07,-1.220828733723273721e-07,-1.276320948892513568e-07,-1.331813164061753415e-07,-1.387305379230993262e-07,-1.442797594400233109e-07,-1.498289809569472956e-07,-1.553782024738712803e-07,-1.609274239907952650e-07,-1.664766455077192497e-07,-1.720258670246432344e-07,-1.775750885415672191e-07,-1.831243100584912038e-07,-1.886735315754151885e-07,-1.942227530923391732e-07,-1.997719746092631579e-07,-2.053211961261871426e-07,-2.108704176431111273e-07,-2.164196391600351120e-07,-2.219688606769590967e-07,-2.275180821938830813e-07,-2.330673037108070660e-07,-2.386165252277310507e-07,-2.441657467446550090e-07,-2.497149682615789672e-07,-2.552641897785029254e-07,-2.608134112954268836e-07,-2.663626328123508419e-07,-2.719118543292748001e-07,-2.774610758461987583e-07,-2.830102973631227165e-07,-2.885595188800466748e-07,-2.941087403969706330e-07,-2.996579619138945912e-07,-3.052071834308185494e-07,-3.107564049477425077e-07,-3.163056264646664659e-07,-3.218548479815904241e-07,-3.274040694985143824e-07,-3.329532910154383406e-07,-3.385025125323622988e-07,-3.440517340492862570e-07,-3.496009555662102153e-07 +0.000000000000000000e+00,-6.145880106828901949e-09,-1.229176021365780390e-08,-1.843764032048670502e-08,-2.458352042731560449e-08,-3.072940053414450065e-08,-3.687528064097339681e-08,-4.302116074780229297e-08,-4.916704085463118913e-08,-5.531292096146008528e-08,-6.145880106828897483e-08,-6.760468117511786437e-08,-7.375056128194675391e-08,-7.989644138877564345e-08,-8.604232149560453299e-08,-9.218820160243342254e-08,-9.833408170926231208e-08,-1.044799618160912016e-07,-1.106258419229200912e-07,-1.167717220297489807e-07,-1.229176021365778702e-07,-1.290634822434067730e-07,-1.352093623502356758e-07,-1.413552424570645786e-07,-1.475011225638934814e-07,-1.536470026707223841e-07,-1.597928827775512869e-07,-1.659387628843801897e-07,-1.720846429912090925e-07,-1.782305230980379952e-07,-1.843764032048668980e-07,-1.905222833116958008e-07,-1.966681634185247036e-07,-2.028140435253536063e-07,-2.089599236321825091e-07,-2.151058037390114119e-07,-2.212516838458403147e-07,-2.273975639526692174e-07,-2.335434440594981202e-07,-2.396893241663270230e-07,-2.458352042731558993e-07,-2.519810843799847756e-07,-2.581269644868136519e-07,-2.642728445936425282e-07,-2.704187247004714045e-07,-2.765646048073002808e-07,-2.827104849141291571e-07,-2.888563650209580335e-07,-2.950022451277869098e-07,-3.011481252346157861e-07,-3.072940053414446624e-07,-3.134398854482735387e-07,-3.195857655551024150e-07,-3.257316456619312913e-07,-3.318775257687601676e-07,-3.380234058755890439e-07,-3.441692859824179202e-07,-3.503151660892467965e-07,-3.564610461960756728e-07,-3.626069263029045491e-07,-3.687528064097334254e-07,-3.748986865165623018e-07,-3.810445666233911781e-07,-3.871904467302200544e-07 +0.000000000000000000e+00,-3.932875710632225192e-09,-7.865751421264450384e-09,-1.179862713189667558e-08,-1.573150284252890077e-08,-1.966437855316112430e-08,-2.359725426379334784e-08,-2.753012997442557138e-08,-3.146300568505779492e-08,-3.539588139569001845e-08,-3.932875710632224199e-08,-4.326163281695446553e-08,-4.719450852758668907e-08,-5.112738423821891260e-08,-5.506025994885113614e-08,-5.899313565948335968e-08,-6.292601137011557660e-08,-6.685888708074780014e-08,-7.079176279138002367e-08,-7.472463850201224721e-08,-7.865751421264447075e-08,-8.259038992327669429e-08,-8.652326563390891782e-08,-9.045614134454114136e-08,-9.438901705517336490e-08,-9.832189276580558844e-08,-1.022547684764378120e-07,-1.061876441870700355e-07,-1.101205198977022590e-07,-1.140533956083344826e-07,-1.179862713189667061e-07,-1.219191470295989297e-07,-1.258520227402311532e-07,-1.297848984508633767e-07,-1.337177741614956003e-07,-1.376506498721278238e-07,-1.415835255827600473e-07,-1.455164012933922709e-07,-1.494492770040244944e-07,-1.533821527146567180e-07,-1.573150284252889415e-07,-1.612479041359211650e-07,-1.651807798465533886e-07,-1.691136555571856121e-07,-1.730465312678178356e-07,-1.769794069784500592e-07,-1.809122826890822827e-07,-1.848451583997145063e-07,-1.887780341103467298e-07,-1.927109098209789533e-07,-1.966437855316111769e-07,-2.005766612422434004e-07,-2.045095369528756239e-07,-2.084424126635078475e-07,-2.123752883741400710e-07,-2.163081640847722946e-07,-2.202410397954045181e-07,-2.241739155060367416e-07,-2.281067912166689652e-07,-2.320396669273011887e-07,-2.359725426379334122e-07,-2.399054183485656358e-07,-2.438382940591978593e-07,-2.477711697698300829e-07 +0.000000000000000000e+00,-4.260719875570291099e-09,-8.521439751140582198e-09,-1.278215962671087247e-08,-1.704287950228116109e-08,-2.130359937785144971e-08,-2.556431925342173832e-08,-2.982503912899202694e-08,-3.408575900456231556e-08,-3.834647888013260418e-08,-4.260719875570289279e-08,-4.686791863127318141e-08,-5.112863850684347003e-08,-5.538935838241375865e-08,-5.965007825798405388e-08,-6.391079813355434912e-08,-6.817151800912464435e-08,-7.243223788469493959e-08,-7.669295776026523482e-08,-8.095367763583553006e-08,-8.521439751140582529e-08,-8.947511738697612053e-08,-9.373583726254641576e-08,-9.799655713811671100e-08,-1.022572770136870062e-07,-1.065179968892573015e-07,-1.107787167648275967e-07,-1.150394366403978919e-07,-1.193001565159681872e-07,-1.235608763915384692e-07,-1.278215962671087512e-07,-1.320823161426790332e-07,-1.363430360182493152e-07,-1.406037558938195972e-07,-1.448644757693898792e-07,-1.491251956449601612e-07,-1.533859155205304432e-07,-1.576466353961007252e-07,-1.619073552716710072e-07,-1.661680751472412892e-07,-1.704287950228115712e-07,-1.746895148983818532e-07,-1.789502347739521352e-07,-1.832109546495224172e-07,-1.874716745250926992e-07,-1.917323944006629812e-07,-1.959931142762332632e-07,-2.002538341518035452e-07,-2.045145540273738272e-07,-2.087752739029441092e-07,-2.130359937785143912e-07,-2.172967136540846732e-07,-2.215574335296549552e-07,-2.258181534052252372e-07,-2.300788732807955192e-07,-2.343395931563658012e-07,-2.386003130319361097e-07,-2.428610329075064181e-07,-2.471217527830767266e-07,-2.513824726586470351e-07,-2.556431925342173435e-07,-2.599039124097876520e-07,-2.641646322853579605e-07,-2.684253521609282689e-07 +0.000000000000000000e+00,-4.922478308384577747e-09,-9.844956616769155494e-09,-1.476743492515373241e-08,-1.968991323353830768e-08,-2.461239154192288294e-08,-2.953486985030745821e-08,-3.445734815869203348e-08,-3.937982646707660874e-08,-4.430230477546118401e-08,-4.922478308384575927e-08,-5.414726139223033454e-08,-5.906973970061490980e-08,-6.399221800899949169e-08,-6.891469631738408019e-08,-7.383717462576866869e-08,-7.875965293415325719e-08,-8.368213124253784569e-08,-8.860460955092243419e-08,-9.352708785930702269e-08,-9.844956616769161119e-08,-1.033720444760761997e-07,-1.082945227844607882e-07,-1.132170010928453767e-07,-1.181394794012299652e-07,-1.230619577096145537e-07,-1.279844360179991422e-07,-1.329069143263837307e-07,-1.378293926347683192e-07,-1.427518709431529077e-07,-1.476743492515374962e-07,-1.525968275599220847e-07,-1.575193058683066732e-07,-1.624417841766912617e-07,-1.673642624850758502e-07,-1.722867407934604387e-07,-1.772092191018450272e-07,-1.821316974102296157e-07,-1.870541757186142042e-07,-1.919766540269987927e-07,-1.968991323353833812e-07,-2.018216106437679697e-07,-2.067440889521525582e-07,-2.116665672605371467e-07,-2.165890455689217352e-07,-2.215115238773063237e-07,-2.264340021856909122e-07,-2.313564804940755007e-07,-2.362789588024600892e-07,-2.412014371108446777e-07,-2.461239154192292662e-07,-2.510463937276138547e-07,-2.559688720359984432e-07,-2.608913503443830317e-07,-2.658138286527676202e-07,-2.707363069611522087e-07,-2.756587852695367972e-07,-2.805812635779213857e-07,-2.855037418863059742e-07,-2.904262201946905627e-07,-2.953486985030751512e-07,-3.002711768114597397e-07,-3.051936551198443282e-07,-3.101161334282289167e-07 +0.000000000000000000e+00,-2.918693885279617877e-09,-5.837387770559235754e-09,-8.756081655838854045e-09,-1.167477554111847316e-08,-1.459346942639809228e-08,-1.751216331167771140e-08,-2.043085719695733217e-08,-2.334955108223695294e-08,-2.626824496751657372e-08,-2.918693885279619449e-08,-3.210563273807581526e-08,-3.502432662335543603e-08,-3.794302050863505680e-08,-4.086171439391467758e-08,-4.378040827919429835e-08,-4.669910216447391912e-08,-4.961779604975353989e-08,-5.253648993503316067e-08,-5.545518382031278144e-08,-5.837387770559240221e-08,-6.129257159087202298e-08,-6.421126547615164375e-08,-6.712995936143126453e-08,-7.004865324671088530e-08,-7.296734713199050607e-08,-7.588604101727012684e-08,-7.880473490254974762e-08,-8.172342878782936839e-08,-8.464212267310898916e-08,-8.756081655838860993e-08,-9.047951044366823070e-08,-9.339820432894785148e-08,-9.631689821422747225e-08,-9.923559209950709302e-08,-1.021542859847867138e-07,-1.050729798700663346e-07,-1.079916737553459553e-07,-1.109103676406255761e-07,-1.138290615259051969e-07,-1.167477554111848177e-07,-1.196664492964644384e-07,-1.225851431817440460e-07,-1.255038370670236535e-07,-1.284225309523032610e-07,-1.313412248375828686e-07,-1.342599187228624761e-07,-1.371786126081420837e-07,-1.400973064934216912e-07,-1.430160003787012987e-07,-1.459346942639809063e-07,-1.488533881492605138e-07,-1.517720820345401213e-07,-1.546907759198197289e-07,-1.576094698050993364e-07,-1.605281636903789439e-07,-1.634468575756585515e-07,-1.663655514609381590e-07,-1.692842453462177666e-07,-1.722029392314973741e-07,-1.751216331167769816e-07,-1.780403270020565892e-07,-1.809590208873361967e-07,-1.838777147726158042e-07 +0.000000000000000000e+00,-4.260719875570459844e-09,-8.521439751140919688e-09,-1.278215962671137871e-08,-1.704287950228183607e-08,-2.130359937785229343e-08,-2.556431925342275079e-08,-2.982503912899320485e-08,-3.408575900456365890e-08,-3.834647888013411295e-08,-4.260719875570456701e-08,-4.686791863127502106e-08,-5.112863850684547512e-08,-5.538935838241592917e-08,-5.965007825798638322e-08,-6.391079813355683728e-08,-6.817151800912729133e-08,-7.243223788469774538e-08,-7.669295776026819944e-08,-8.095367763583865349e-08,-8.521439751140910755e-08,-8.947511738697956160e-08,-9.373583726255001565e-08,-9.799655713812046971e-08,-1.022572770136909238e-07,-1.065179968892613778e-07,-1.107787167648318319e-07,-1.150394366404022859e-07,-1.193001565159727400e-07,-1.235608763915431808e-07,-1.278215962671136216e-07,-1.320823161426840624e-07,-1.363430360182545033e-07,-1.406037558938249441e-07,-1.448644757693953849e-07,-1.491251956449658257e-07,-1.533859155205362665e-07,-1.576466353961067073e-07,-1.619073552716771482e-07,-1.661680751472475890e-07,-1.704287950228180298e-07,-1.746895148983884706e-07,-1.789502347739589114e-07,-1.832109546495293523e-07,-1.874716745250997931e-07,-1.917323944006702339e-07,-1.959931142762406747e-07,-2.002538341518111155e-07,-2.045145540273815564e-07,-2.087752739029519972e-07,-2.130359937785224380e-07,-2.172967136540928788e-07,-2.215574335296633196e-07,-2.258181534052337605e-07,-2.300788732808042013e-07,-2.343395931563746421e-07,-2.386003130319451094e-07,-2.428610329075155767e-07,-2.471217527830860440e-07,-2.513824726586565112e-07,-2.556431925342269785e-07,-2.599039124097974458e-07,-2.641646322853679131e-07,-2.684253521609383804e-07 +0.000000000000000000e+00,-4.922478308384605871e-09,-9.844956616769211742e-09,-1.476743492515381844e-08,-1.968991323353842679e-08,-2.461239154192303515e-08,-2.953486985030764350e-08,-3.445734815869225185e-08,-3.937982646707686020e-08,-4.430230477546146856e-08,-4.922478308384607691e-08,-5.414726139223068526e-08,-5.906973970061529362e-08,-6.399221800899990197e-08,-6.891469631738450370e-08,-7.383717462576910544e-08,-7.875965293415370717e-08,-8.368213124253830891e-08,-8.860460955092291064e-08,-9.352708785930751238e-08,-9.844956616769211411e-08,-1.033720444760767159e-07,-1.082945227844613176e-07,-1.132170010928459193e-07,-1.181394794012305211e-07,-1.230619577096151360e-07,-1.279844360179997510e-07,-1.329069143263843660e-07,-1.378293926347689809e-07,-1.427518709431535959e-07,-1.476743492515382109e-07,-1.525968275599228258e-07,-1.575193058683074408e-07,-1.624417841766920558e-07,-1.673642624850766708e-07,-1.722867407934612857e-07,-1.772092191018459007e-07,-1.821316974102305157e-07,-1.870541757186151306e-07,-1.919766540269997456e-07,-1.968991323353843606e-07,-2.018216106437689755e-07,-2.067440889521535905e-07,-2.116665672605382055e-07,-2.165890455689228205e-07,-2.215115238773074354e-07,-2.264340021856920504e-07,-2.313564804940766654e-07,-2.362789588024612803e-07,-2.412014371108458953e-07,-2.461239154192304838e-07,-2.510463937276150723e-07,-2.559688720359996608e-07,-2.608913503443842493e-07,-2.658138286527688378e-07,-2.707363069611534263e-07,-2.756587852695380148e-07,-2.805812635779226033e-07,-2.855037418863071918e-07,-2.904262201946917803e-07,-2.953486985030763688e-07,-3.002711768114609573e-07,-3.051936551198455458e-07,-3.101161334282301343e-07 +0.000000000000000000e+00,-2.918693885279464021e-09,-5.837387770558928043e-09,-8.756081655838392478e-09,-1.167477554111785774e-08,-1.459346942639732300e-08,-1.751216331167678826e-08,-2.043085719695625353e-08,-2.334955108223571879e-08,-2.626824496751518405e-08,-2.918693885279464931e-08,-3.210563273807411458e-08,-3.502432662335358315e-08,-3.794302050863305172e-08,-4.086171439391252029e-08,-4.378040827919198886e-08,-4.669910216447145743e-08,-4.961779604975092600e-08,-5.253648993503039457e-08,-5.545518382030986314e-08,-5.837387770558933172e-08,-6.129257159086879367e-08,-6.421126547614825562e-08,-6.712995936142771758e-08,-7.004865324670717953e-08,-7.296734713198664148e-08,-7.588604101726610344e-08,-7.880473490254556539e-08,-8.172342878782502734e-08,-8.464212267310448930e-08,-8.756081655838395125e-08,-9.047951044366341320e-08,-9.339820432894287516e-08,-9.631689821422233711e-08,-9.923559209950179906e-08,-1.021542859847812610e-07,-1.050729798700607230e-07,-1.079916737553401849e-07,-1.109103676406196469e-07,-1.138290615258991088e-07,-1.167477554111785708e-07,-1.196664492964580327e-07,-1.225851431817374815e-07,-1.255038370670169302e-07,-1.284225309522963789e-07,-1.313412248375758276e-07,-1.342599187228552763e-07,-1.371786126081347251e-07,-1.400973064934141738e-07,-1.430160003786936225e-07,-1.459346942639730712e-07,-1.488533881492525199e-07,-1.517720820345319686e-07,-1.546907759198114174e-07,-1.576094698050908661e-07,-1.605281636903703148e-07,-1.634468575756497635e-07,-1.663655514609292122e-07,-1.692842453462086610e-07,-1.722029392314881097e-07,-1.751216331167675584e-07,-1.780403270020470071e-07,-1.809590208873264558e-07,-1.838777147726059046e-07 +0.000000000000000000e+00,-2.834396831373738751e-09,-5.668793662747477502e-09,-8.503190494121217080e-09,-1.133758732549495666e-08,-1.417198415686869624e-08,-1.700638098824243416e-08,-1.984077781961617208e-08,-2.267517465098991001e-08,-2.550957148236364793e-08,-2.834396831373738586e-08,-3.117836514511112047e-08,-3.401276197648485509e-08,-3.684715880785858970e-08,-3.968155563923232432e-08,-4.251595247060605893e-08,-4.535034930197979355e-08,-4.818474613335352816e-08,-5.101914296472726278e-08,-5.385353979610099739e-08,-5.668793662747473201e-08,-5.952233345884846662e-08,-6.235673029022220124e-08,-6.519112712159593585e-08,-6.802552395296967047e-08,-7.085992078434340508e-08,-7.369431761571713970e-08,-7.652871444709087431e-08,-7.936311127846460893e-08,-8.219750810983834354e-08,-8.503190494121207816e-08,-8.786630177258581278e-08,-9.070069860395954739e-08,-9.353509543533328201e-08,-9.636949226670701662e-08,-9.920388909808075124e-08,-1.020382859294544859e-07,-1.048726827608282205e-07,-1.077070795922019551e-07,-1.105414764235756897e-07,-1.133758732549494243e-07,-1.162102700863231589e-07,-1.190446669176968935e-07,-1.218790637490706414e-07,-1.247134605804443760e-07,-1.275478574118181106e-07,-1.303822542431918452e-07,-1.332166510745655799e-07,-1.360510479059393145e-07,-1.388854447373130491e-07,-1.417198415686867837e-07,-1.445542384000605183e-07,-1.473886352314342529e-07,-1.502230320628079875e-07,-1.530574288941817222e-07,-1.558918257255554568e-07,-1.587262225569291914e-07,-1.615606193883029260e-07,-1.643950162196766606e-07,-1.672294130510503952e-07,-1.700638098824241299e-07,-1.728982067137978645e-07,-1.757326035451715991e-07,-1.785670003765453337e-07 +0.000000000000000000e+00,-3.560796949529073470e-09,-7.121593899058146941e-09,-1.068239084858722083e-08,-1.424318779811629554e-08,-1.780398474764537025e-08,-2.136478169717444496e-08,-2.492557864670351967e-08,-2.848637559623259438e-08,-3.204717254576166909e-08,-3.560796949529074050e-08,-3.916876644481981190e-08,-4.272956339434888330e-08,-4.629036034387795470e-08,-4.985115729340702611e-08,-5.341195424293609751e-08,-5.697275119246516891e-08,-6.053354814199424031e-08,-6.409434509152331172e-08,-6.765514204105238312e-08,-7.121593899058145452e-08,-7.477673594011052592e-08,-7.833753288963959733e-08,-8.189832983916866873e-08,-8.545912678869774013e-08,-8.901992373822681153e-08,-9.258072068775588294e-08,-9.614151763728495434e-08,-9.970231458681402574e-08,-1.032631115363430971e-07,-1.068239084858721685e-07,-1.103847054354012399e-07,-1.139455023849303114e-07,-1.175062993344593828e-07,-1.210670962839884542e-07,-1.246278932335175123e-07,-1.281886901830465705e-07,-1.317494871325756287e-07,-1.353102840821046868e-07,-1.388710810316337450e-07,-1.424318779811628032e-07,-1.459926749306918613e-07,-1.495534718802209195e-07,-1.531142688297499777e-07,-1.566750657792790358e-07,-1.602358627288080940e-07,-1.637966596783371522e-07,-1.673574566278662103e-07,-1.709182535773952685e-07,-1.744790505269243267e-07,-1.780398474764533848e-07,-1.816006444259824430e-07,-1.851614413755115012e-07,-1.887222383250405593e-07,-1.922830352745696175e-07,-1.958438322240986757e-07,-1.994046291736277338e-07,-2.029654261231567920e-07,-2.065262230726858502e-07,-2.100870200222149083e-07,-2.136478169717439665e-07,-2.172086139212730247e-07,-2.207694108708020828e-07,-2.243302078203311410e-07 +0.000000000000000000e+00,-1.886330231067576287e-09,-3.772660462135152574e-09,-5.658990693202729274e-09,-7.545320924270306802e-09,-9.431651155337884329e-09,-1.131798138640546186e-08,-1.320431161747303938e-08,-1.509064184854061691e-08,-1.697697207960819444e-08,-1.886330231067577197e-08,-2.074963254174334949e-08,-2.263596277281092702e-08,-2.452229300387850455e-08,-2.640862323494608208e-08,-2.829495346601365960e-08,-3.018128369708124044e-08,-3.206761392814882459e-08,-3.395394415921640873e-08,-3.584027439028399288e-08,-3.772660462135157702e-08,-3.961293485241916117e-08,-4.149926508348674531e-08,-4.338559531455432946e-08,-4.527192554562191360e-08,-4.715825577668949775e-08,-4.904458600775708189e-08,-5.093091623882466604e-08,-5.281724646989225018e-08,-5.470357670095983433e-08,-5.658990693202741847e-08,-5.847623716309500262e-08,-6.036256739416258676e-08,-6.224889762523017091e-08,-6.413522785629775505e-08,-6.602155808736533920e-08,-6.790788831843292334e-08,-6.979421854950050749e-08,-7.168054878056809163e-08,-7.356687901163567578e-08,-7.545320924270325992e-08,-7.733953947377084407e-08,-7.922586970483842821e-08,-8.111219993590601236e-08,-8.299853016697359650e-08,-8.488486039804118065e-08,-8.677119062910876479e-08,-8.865752086017634894e-08,-9.054385109124393308e-08,-9.243018132231151723e-08,-9.431651155337910137e-08,-9.620284178444668552e-08,-9.808917201551426966e-08,-9.997550224658185381e-08,-1.018618324776494380e-07,-1.037481627087170221e-07,-1.056344929397846062e-07,-1.075208231708521904e-07,-1.094071534019197745e-07,-1.112934836329873587e-07,-1.131798138640549428e-07,-1.150661440951225270e-07,-1.169524743261901111e-07,-1.188388045572576953e-07 +0.000000000000000000e+00,-2.834396831374003035e-09,-5.668793662748006071e-09,-8.503190494122009519e-09,-1.133758732549601380e-08,-1.417198415687001807e-08,-1.700638098824402235e-08,-1.984077781961802828e-08,-2.267517465099203421e-08,-2.550957148236604014e-08,-2.834396831374004607e-08,-3.117836514511405200e-08,-3.401276197648805793e-08,-3.684715880786206386e-08,-3.968155563923606979e-08,-4.251595247061007572e-08,-4.535034930198408165e-08,-4.818474613335808758e-08,-5.101914296473209351e-08,-5.385353979610609944e-08,-5.668793662748010537e-08,-5.952233345885411130e-08,-6.235673029022811723e-08,-6.519112712160211655e-08,-6.802552395297611586e-08,-7.085992078435011517e-08,-7.369431761572411449e-08,-7.652871444709811380e-08,-7.936311127847211311e-08,-8.219750810984611243e-08,-8.503190494122011174e-08,-8.786630177259411105e-08,-9.070069860396811036e-08,-9.353509543534210968e-08,-9.636949226671610899e-08,-9.920388909809010830e-08,-1.020382859294641076e-07,-1.048726827608381069e-07,-1.077070795922121062e-07,-1.105414764235861056e-07,-1.133758732549601049e-07,-1.162102700863341042e-07,-1.190446669177081035e-07,-1.218790637490821028e-07,-1.247134605804561021e-07,-1.275478574118301014e-07,-1.303822542432041007e-07,-1.332166510745781001e-07,-1.360510479059520994e-07,-1.388854447373260987e-07,-1.417198415687000980e-07,-1.445542384000740973e-07,-1.473886352314480966e-07,-1.502230320628220959e-07,-1.530574288941960952e-07,-1.558918257255700946e-07,-1.587262225569440939e-07,-1.615606193883180932e-07,-1.643950162196920925e-07,-1.672294130510660918e-07,-1.700638098824400911e-07,-1.728982067138140904e-07,-1.757326035451880898e-07,-1.785670003765620891e-07 +0.000000000000000000e+00,-3.560796949529309631e-09,-7.121593899058619261e-09,-1.068239084858792889e-08,-1.424318779811723852e-08,-1.780398474764654815e-08,-2.136478169717585778e-08,-2.492557864670516741e-08,-2.848637559623447704e-08,-3.204717254576378667e-08,-3.560796949529309631e-08,-3.916876644482240594e-08,-4.272956339435171557e-08,-4.629036034388102520e-08,-4.985115729341033483e-08,-5.341195424293964446e-08,-5.697275119246895409e-08,-6.053354814199826372e-08,-6.409434509152757335e-08,-6.765514204105688298e-08,-7.121593899058619261e-08,-7.477673594011550224e-08,-7.833753288964481187e-08,-8.189832983917412150e-08,-8.545912678870343113e-08,-8.901992373823274076e-08,-9.258072068776205039e-08,-9.614151763729136002e-08,-9.970231458682066966e-08,-1.032631115363499793e-07,-1.068239084858792889e-07,-1.103847054354085985e-07,-1.139455023849379082e-07,-1.175062993344672178e-07,-1.210670962839965274e-07,-1.246278932335258238e-07,-1.281886901830551202e-07,-1.317494871325844166e-07,-1.353102840821137130e-07,-1.388710810316430094e-07,-1.424318779811723058e-07,-1.459926749307016022e-07,-1.495534718802308986e-07,-1.531142688297601950e-07,-1.566750657792894914e-07,-1.602358627288187878e-07,-1.637966596783480842e-07,-1.673574566278773806e-07,-1.709182535774066770e-07,-1.744790505269359734e-07,-1.780398474764652698e-07,-1.816006444259945662e-07,-1.851614413755238626e-07,-1.887222383250531590e-07,-1.922830352745824554e-07,-1.958438322241117517e-07,-1.994046291736410481e-07,-2.029654261231703445e-07,-2.065262230726996409e-07,-2.100870200222289373e-07,-2.136478169717582337e-07,-2.172086139212875301e-07,-2.207694108708168265e-07,-2.243302078203461229e-07 +0.000000000000000000e+00,-1.886330231067393893e-09,-3.772660462134787787e-09,-5.658990693202181680e-09,-7.545320924269575574e-09,-9.431651155336969467e-09,-1.131798138640436336e-08,-1.320431161747175725e-08,-1.509064184853915115e-08,-1.697697207960654339e-08,-1.886330231067393563e-08,-2.074963254174132787e-08,-2.263596277280872010e-08,-2.452229300387611234e-08,-2.640862323494350458e-08,-2.829495346601089682e-08,-3.018128369707828906e-08,-3.206761392814568130e-08,-3.395394415921307354e-08,-3.584027439028046578e-08,-3.772660462134785802e-08,-3.961293485241525026e-08,-4.149926508348264250e-08,-4.338559531455003473e-08,-4.527192554561742697e-08,-4.715825577668481921e-08,-4.904458600775221145e-08,-5.093091623881960369e-08,-5.281724646988699593e-08,-5.470357670095438817e-08,-5.658990693202178041e-08,-5.847623716308917265e-08,-6.036256739415656489e-08,-6.224889762522396374e-08,-6.413522785629136260e-08,-6.602155808735876146e-08,-6.790788831842616031e-08,-6.979421854949355917e-08,-7.168054878056095803e-08,-7.356687901162835688e-08,-7.545320924269575574e-08,-7.733953947376315460e-08,-7.922586970483055345e-08,-8.111219993589795231e-08,-8.299853016696535116e-08,-8.488486039803275002e-08,-8.677119062910014888e-08,-8.865752086016754773e-08,-9.054385109123494659e-08,-9.243018132230234545e-08,-9.431651155336974430e-08,-9.620284178443714316e-08,-9.808917201550454202e-08,-9.997550224657194087e-08,-1.018618324776393397e-07,-1.037481627087067386e-07,-1.056344929397741374e-07,-1.075208231708415363e-07,-1.094071534019089352e-07,-1.112934836329763340e-07,-1.131798138640437329e-07,-1.150661440951111317e-07,-1.169524743261785306e-07,-1.188388045572459294e-07 +0.000000000000000000e+00,-1.429228554219253078e-09,-2.858457108438506157e-09,-4.287685662657759235e-09,-5.716914216877012313e-09,-7.146142771096265392e-09,-8.575371325315518470e-09,-1.000459987953477155e-08,-1.143382843375402463e-08,-1.286305698797327770e-08,-1.429228554219253078e-08,-1.572151409641178221e-08,-1.715074265063103363e-08,-1.857997120485028505e-08,-2.000919975906953648e-08,-2.143842831328878790e-08,-2.286765686750803933e-08,-2.429688542172729075e-08,-2.572611397594654217e-08,-2.715534253016579360e-08,-2.858457108438504502e-08,-3.001379963860429645e-08,-3.144302819282355118e-08,-3.287225674704280591e-08,-3.430148530126206064e-08,-3.573071385548131538e-08,-3.715994240970057011e-08,-3.858917096391982484e-08,-4.001839951813907957e-08,-4.144762807235833431e-08,-4.287685662657758904e-08,-4.430608518079684377e-08,-4.573531373501609851e-08,-4.716454228923535324e-08,-4.859377084345460797e-08,-5.002299939767386270e-08,-5.145222795189311744e-08,-5.288145650611237217e-08,-5.431068506033162690e-08,-5.573991361455088163e-08,-5.716914216877013637e-08,-5.859837072298939110e-08,-6.002759927720864583e-08,-6.145682783142790056e-08,-6.288605638564715530e-08,-6.431528493986641003e-08,-6.574451349408566476e-08,-6.717374204830491950e-08,-6.860297060252417423e-08,-7.003219915674342896e-08,-7.146142771096268369e-08,-7.289065626518193843e-08,-7.431988481940119316e-08,-7.574911337362044789e-08,-7.717834192783970262e-08,-7.860757048205895736e-08,-8.003679903627821209e-08,-8.146602759049746682e-08,-8.289525614471672155e-08,-8.432448469893597629e-08,-8.575371325315523102e-08,-8.718294180737448575e-08,-8.861217036159374049e-08,-9.004139891581299522e-08 +0.000000000000000000e+00,-2.120432870934984634e-09,-4.240865741869969268e-09,-6.361298612804953489e-09,-8.481731483739936882e-09,-1.060216435467492028e-08,-1.272259722560990367e-08,-1.484303009654488706e-08,-1.696346296747987046e-08,-1.908389583841485385e-08,-2.120432870934983724e-08,-2.332476158028482064e-08,-2.544519445121980403e-08,-2.756562732215478742e-08,-2.968606019308977082e-08,-3.180649306402475421e-08,-3.392692593495973429e-08,-3.604735880589471438e-08,-3.816779167682969446e-08,-4.028822454776467455e-08,-4.240865741869965463e-08,-4.452909028963463472e-08,-4.664952316056961480e-08,-4.876995603150459489e-08,-5.089038890243957497e-08,-5.301082177337455505e-08,-5.513125464430953514e-08,-5.725168751524451522e-08,-5.937212038617949531e-08,-6.149255325711446878e-08,-6.361298612804944224e-08,-6.573341899898441571e-08,-6.785385186991938918e-08,-6.997428474085436264e-08,-7.209471761178933611e-08,-7.421515048272430958e-08,-7.633558335365928305e-08,-7.845601622459425651e-08,-8.057644909552922998e-08,-8.269688196646420345e-08,-8.481731483739917691e-08,-8.693774770833415038e-08,-8.905818057926912385e-08,-9.117861345020409732e-08,-9.329904632113907078e-08,-9.541947919207404425e-08,-9.753991206300901772e-08,-9.966034493394399118e-08,-1.017807778048789647e-07,-1.039012106758139381e-07,-1.060216435467489116e-07,-1.081420764176838851e-07,-1.102625092886188585e-07,-1.123829421595538320e-07,-1.145033750304888055e-07,-1.166238079014237789e-07,-1.187442407723587524e-07,-1.208646736432937259e-07,-1.229851065142286993e-07,-1.251055393851636728e-07,-1.272259722560986463e-07,-1.293464051270336197e-07,-1.314668379979685932e-07,-1.335872708689035667e-07 +0.000000000000000000e+00,-8.832056515528640466e-10,-1.766411303105728093e-09,-2.649616954658591933e-09,-3.532822606211455773e-09,-4.416028257764319612e-09,-5.299233909317183866e-09,-6.182439560870048119e-09,-7.065645212422912373e-09,-7.948850863975775799e-09,-8.832056515528639225e-09,-9.715262167081502651e-09,-1.059846781863436608e-08,-1.148167347018722950e-08,-1.236487912174009293e-08,-1.324808477329295636e-08,-1.413129042484581978e-08,-1.501449607639868321e-08,-1.589770172795154498e-08,-1.678090737950440675e-08,-1.766411303105726852e-08,-1.854731868261013030e-08,-1.943052433416299207e-08,-2.031372998571585384e-08,-2.119693563726871561e-08,-2.208014128882157738e-08,-2.296334694037443915e-08,-2.384655259192730093e-08,-2.472975824348016270e-08,-2.561296389503302447e-08,-2.649616954658588624e-08,-2.737937519813874801e-08,-2.826258084969160979e-08,-2.914578650124447156e-08,-3.002899215279733333e-08,-3.091219780435019510e-08,-3.179540345590305687e-08,-3.267860910745591864e-08,-3.356181475900878042e-08,-3.444502041056164219e-08,-3.532822606211450396e-08,-3.621143171366736573e-08,-3.709463736522022750e-08,-3.797784301677308928e-08,-3.886104866832595105e-08,-3.974425431987881282e-08,-4.062745997143167459e-08,-4.151066562298453636e-08,-4.239387127453739813e-08,-4.327707692609025991e-08,-4.416028257764312168e-08,-4.504348822919598345e-08,-4.592669388074884522e-08,-4.680989953230170699e-08,-4.769310518385456877e-08,-4.857631083540743054e-08,-4.945951648696029231e-08,-5.034272213851315408e-08,-5.122592779006601585e-08,-5.210913344161887762e-08,-5.299233909317173940e-08,-5.387554474472460117e-08,-5.475875039627746294e-08,-5.564195604783032471e-08 +0.000000000000000000e+00,-1.429228554219332901e-09,-2.858457108438665802e-09,-4.287685662657999117e-09,-5.716914216877332432e-09,-7.146142771096665747e-09,-8.575371325315998235e-09,-1.000459987953533072e-08,-1.143382843375466321e-08,-1.286305698797399570e-08,-1.429228554219332819e-08,-1.572151409641266233e-08,-1.715074265063199647e-08,-1.857997120485133061e-08,-2.000919975907066475e-08,-2.143842831328999890e-08,-2.286765686750933304e-08,-2.429688542172866718e-08,-2.572611397594800132e-08,-2.715534253016733546e-08,-2.858457108438666961e-08,-3.001379963860600375e-08,-3.144302819282533789e-08,-3.287225674704467203e-08,-3.430148530126400617e-08,-3.573071385548334032e-08,-3.715994240970267446e-08,-3.858917096392200860e-08,-4.001839951814134274e-08,-4.144762807236067688e-08,-4.287685662658001103e-08,-4.430608518079934517e-08,-4.573531373501867931e-08,-4.716454228923801345e-08,-4.859377084345734759e-08,-5.002299939767668174e-08,-5.145222795189601588e-08,-5.288145650611535002e-08,-5.431068506033468416e-08,-5.573991361455401830e-08,-5.716914216877335245e-08,-5.859837072299268659e-08,-6.002759927721202073e-08,-6.145682783143135487e-08,-6.288605638565068901e-08,-6.431528493987002316e-08,-6.574451349408935730e-08,-6.717374204830869144e-08,-6.860297060252802558e-08,-7.003219915674735972e-08,-7.146142771096669387e-08,-7.289065626518602801e-08,-7.431988481940536215e-08,-7.574911337362469629e-08,-7.717834192784403043e-08,-7.860757048206336458e-08,-8.003679903628269872e-08,-8.146602759050203286e-08,-8.289525614472136700e-08,-8.432448469894070114e-08,-8.575371325316003529e-08,-8.718294180737936943e-08,-8.861217036159870357e-08,-9.004139891581803771e-08 +0.000000000000000000e+00,-2.120432870935147175e-09,-4.240865741870294350e-09,-6.361298612805441525e-09,-8.481731483740588700e-09,-1.060216435467573588e-08,-1.272259722561088305e-08,-1.484303009654603023e-08,-1.696346296748117740e-08,-1.908389583841632292e-08,-2.120432870935146844e-08,-2.332476158028661396e-08,-2.544519445122175948e-08,-2.756562732215690500e-08,-2.968606019309205052e-08,-3.180649306402719605e-08,-3.392692593496234157e-08,-3.604735880589748709e-08,-3.816779167683263261e-08,-4.028822454776777813e-08,-4.240865741870292365e-08,-4.452909028963806917e-08,-4.664952316057321469e-08,-4.876995603150836021e-08,-5.089038890244350573e-08,-5.301082177337865125e-08,-5.513125464431379677e-08,-5.725168751524894229e-08,-5.937212038618408781e-08,-6.149255325711923334e-08,-6.361298612805437886e-08,-6.573341899898952438e-08,-6.785385186992466990e-08,-6.997428474085981542e-08,-7.209471761179496094e-08,-7.421515048273010646e-08,-7.633558335366525198e-08,-7.845601622460039750e-08,-8.057644909553554302e-08,-8.269688196647068854e-08,-8.481731483740583406e-08,-8.693774770834097958e-08,-8.905818057927612511e-08,-9.117861345021127063e-08,-9.329904632114641615e-08,-9.541947919208156167e-08,-9.753991206301670719e-08,-9.966034493395185271e-08,-1.017807778048869982e-07,-1.039012106758221438e-07,-1.060216435467572893e-07,-1.081420764176924348e-07,-1.102625092886275803e-07,-1.123829421595627258e-07,-1.145033750304978714e-07,-1.166238079014330169e-07,-1.187442407723681624e-07,-1.208646736433033079e-07,-1.229851065142384667e-07,-1.251055393851736254e-07,-1.272259722561087842e-07,-1.293464051270439429e-07,-1.314668379979791017e-07,-1.335872708689142604e-07 +0.000000000000000000e+00,-8.832056515528026284e-10,-1.766411303105605257e-09,-2.649616954658407885e-09,-3.532822606211210514e-09,-4.416028257764012728e-09,-5.299233909316814943e-09,-6.182439560869617158e-09,-7.065645212422419373e-09,-7.948850863975221588e-09,-8.832056515528023803e-09,-9.715262167080826017e-09,-1.059846781863362823e-08,-1.148167347018643045e-08,-1.236487912173923266e-08,-1.324808477329203488e-08,-1.413129042484483709e-08,-1.501449607639763765e-08,-1.589770172795043987e-08,-1.678090737950324208e-08,-1.766411303105604430e-08,-1.854731868260884651e-08,-1.943052433416164873e-08,-2.031372998571445094e-08,-2.119693563726725316e-08,-2.208014128882005537e-08,-2.296334694037285759e-08,-2.384655259192565980e-08,-2.472975824347846201e-08,-2.561296389503126423e-08,-2.649616954658406644e-08,-2.737937519813686866e-08,-2.826258084968967087e-08,-2.914578650124247309e-08,-3.002899215279527530e-08,-3.091219780434807752e-08,-3.179540345590087973e-08,-3.267860910745368195e-08,-3.356181475900648416e-08,-3.444502041055928638e-08,-3.532822606211208859e-08,-3.621143171366489081e-08,-3.709463736521769302e-08,-3.797784301677049524e-08,-3.886104866832329745e-08,-3.974425431987609967e-08,-4.062745997142890188e-08,-4.151066562298170410e-08,-4.239387127453450631e-08,-4.327707692608730853e-08,-4.416028257764011074e-08,-4.504348822919291296e-08,-4.592669388074571517e-08,-4.680989953229851739e-08,-4.769310518385131960e-08,-4.857631083540412181e-08,-4.945951648695692403e-08,-5.034272213850972624e-08,-5.122592779006252846e-08,-5.210913344161533067e-08,-5.299233909316813289e-08,-5.387554474472093510e-08,-5.475875039627373732e-08,-5.564195604782653953e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.294722333263852443e-10,-1.258944466652770489e-09,-1.888416699979155629e-09,-2.517888933305540563e-09,-3.147361166631925498e-09,-3.776833399958310432e-09,-4.406305633284695366e-09,-5.035777866611080300e-09,-5.665250099937465234e-09,-6.294722333263850168e-09,-6.924194566590235102e-09,-7.553666799916619209e-09,-8.183139033243003316e-09,-8.812611266569387423e-09,-9.442083499895771530e-09,-1.007155573322215564e-08,-1.070102796654853974e-08,-1.133050019987492385e-08,-1.195997243320130796e-08,-1.258944466652769206e-08,-1.321891689985407617e-08,-1.384838913318046028e-08,-1.447786136650684438e-08,-1.510733359983322849e-08,-1.573680583315961094e-08,-1.636627806648599340e-08,-1.699575029981237585e-08,-1.762522253313875830e-08,-1.825469476646514075e-08,-1.888416699979152321e-08,-1.951363923311790566e-08,-2.014311146644428811e-08,-2.077258369977067056e-08,-2.140205593309705302e-08,-2.203152816642343547e-08,-2.266100039974981792e-08,-2.329047263307620037e-08,-2.391994486640258283e-08,-2.454941709972896528e-08,-2.517888933305534773e-08,-2.580836156638173018e-08,-2.643783379970811264e-08,-2.706730603303449509e-08,-2.769677826636087754e-08,-2.832625049968725999e-08,-2.895572273301364245e-08,-2.958519496634002490e-08,-3.021466719966641066e-08,-3.084413943299279642e-08,-3.147361166631918218e-08,-3.210308389964556794e-08,-3.273255613297195371e-08,-3.336202836629833947e-08,-3.399150059962472523e-08,-3.462097283295111099e-08,-3.525044506627749675e-08,-3.587991729960388251e-08,-3.650938953293026827e-08,-3.713886176625665403e-08,-3.776833399958303980e-08,-3.839780623290942556e-08,-3.902727846623581132e-08,-3.965675069956219708e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.294722333264378736e-10,-1.258944466652875747e-09,-1.888416699979313621e-09,-2.517888933305751495e-09,-3.147361166632189368e-09,-3.776833399958627242e-09,-4.406305633285065115e-09,-5.035777866611502989e-09,-5.665250099937940863e-09,-6.294722333264378736e-09,-6.924194566590816610e-09,-7.553666799917254484e-09,-8.183139033243693184e-09,-8.812611266570131885e-09,-9.442083499896570586e-09,-1.007155573322300929e-08,-1.070102796654944799e-08,-1.133050019987588669e-08,-1.195997243320232539e-08,-1.258944466652876409e-08,-1.321891689985520279e-08,-1.384838913318164149e-08,-1.447786136650808019e-08,-1.510733359983451889e-08,-1.573680583316095759e-08,-1.636627806648739629e-08,-1.699575029981383500e-08,-1.762522253314027370e-08,-1.825469476646671240e-08,-1.888416699979315110e-08,-1.951363923311958980e-08,-2.014311146644602850e-08,-2.077258369977246720e-08,-2.140205593309890590e-08,-2.203152816642534460e-08,-2.266100039975178330e-08,-2.329047263307822200e-08,-2.391994486640466070e-08,-2.454941709973109941e-08,-2.517888933305753811e-08,-2.580836156638397681e-08,-2.643783379971041551e-08,-2.706730603303685421e-08,-2.769677826636329291e-08,-2.832625049968973161e-08,-2.895572273301617031e-08,-2.958519496634260901e-08,-3.021466719966904440e-08,-3.084413943299548310e-08,-3.147361166632192181e-08,-3.210308389964836051e-08,-3.273255613297479921e-08,-3.336202836630123791e-08,-3.399150059962767661e-08,-3.462097283295411531e-08,-3.525044506628055401e-08,-3.587991729960699271e-08,-3.650938953293343141e-08,-3.713886176625987011e-08,-3.776833399958630881e-08,-3.839780623291274751e-08,-3.902727846623918622e-08,-3.965675069956562492e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-9.661110214543107382e-09,-1.932222042908621476e-08,-2.898333064362932214e-08,-3.864444085817242953e-08,-4.830555107271553691e-08,-5.796666128725864429e-08,-6.762777150180175167e-08,-7.728888171634485905e-08,-8.694999193088796643e-08,-9.661110214543107382e-08,-1.062722123599741812e-07,-1.159333225745172886e-07,-1.255944327890604092e-07,-1.352555430036035298e-07,-1.449166532181466504e-07,-1.545777634326897710e-07,-1.642388736472328917e-07,-1.738999838617760123e-07,-1.835610940763191329e-07,-1.932222042908622535e-07,-2.028833145054053741e-07,-2.125444247199484947e-07,-2.222055349344916154e-07,-2.318666451490347360e-07,-2.415277553635778566e-07,-2.511888655781209772e-07,-2.608499757926640978e-07,-2.705110860072072184e-07,-2.801721962217503391e-07,-2.898333064362934597e-07,-2.994944166508365803e-07,-3.091555268653797009e-07,-3.188166370799228215e-07,-3.284777472944659421e-07,-3.381388575090090628e-07,-3.477999677235521834e-07,-3.574610779380953040e-07,-3.671221881526384246e-07,-3.767832983671815452e-07,-3.864444085817246658e-07,-3.961055187962677865e-07,-4.057666290108109071e-07,-4.154277392253540277e-07,-4.250888494398971483e-07,-4.347499596544402689e-07,-4.444110698689833895e-07,-4.540721800835265102e-07,-4.637332902980696308e-07,-4.733944005126127514e-07,-4.830555107271558191e-07,-4.927166209416989397e-07,-5.023777311562420603e-07,-5.120388413707851809e-07,-5.216999515853283015e-07,-5.313610617998714221e-07,-5.410221720144145428e-07,-5.506832822289576634e-07,-5.603443924435007840e-07,-5.700055026580439046e-07,-5.796666128725870252e-07,-5.893277230871301458e-07,-5.989888333016732665e-07,-6.086499435162163871e-07 +0.000000000000000000e+00,-9.649054360981630819e-09,-1.929810872196326164e-08,-2.894716308294489080e-08,-3.859621744392651666e-08,-4.824527180490814251e-08,-5.789432616588976837e-08,-6.754338052687139422e-08,-7.719243488785302008e-08,-8.684148924883464594e-08,-9.649054360981627179e-08,-1.061395979707978976e-07,-1.157886523317795235e-07,-1.254377066927611494e-07,-1.350867610537427884e-07,-1.447358154147244275e-07,-1.543848697757060666e-07,-1.640339241366877057e-07,-1.736829784976693448e-07,-1.833320328586509839e-07,-1.929810872196326230e-07,-2.026301415806142621e-07,-2.122791959415959012e-07,-2.219282503025775403e-07,-2.315773046635591794e-07,-2.412263590245407920e-07,-2.508754133855224046e-07,-2.605244677465040172e-07,-2.701735221074856298e-07,-2.798225764684672425e-07,-2.894716308294488551e-07,-2.991206851904304677e-07,-3.087697395514120803e-07,-3.184187939123936929e-07,-3.280678482733753056e-07,-3.377169026343569182e-07,-3.473659569953385308e-07,-3.570150113563201434e-07,-3.666640657173017560e-07,-3.763131200782833687e-07,-3.859621744392649813e-07,-3.956112288002465939e-07,-4.052602831612282065e-07,-4.149093375222098191e-07,-4.245583918831914318e-07,-4.342074462441730444e-07,-4.438565006051546570e-07,-4.535055549661362696e-07,-4.631546093271178822e-07,-4.728036636880994949e-07,-4.824527180490811604e-07,-4.921017724100628260e-07,-5.017508267710444916e-07,-5.113998811320261571e-07,-5.210489354930078227e-07,-5.306979898539894882e-07,-5.403470442149711538e-07,-5.499960985759528194e-07,-5.596451529369344849e-07,-5.692942072979161505e-07,-5.789432616588978160e-07,-5.885923160198794816e-07,-5.982413703808611472e-07,-6.078904247418428127e-07 +0.000000000000000000e+00,-1.032148854305956552e-08,-2.064297708611913104e-08,-3.096446562917869822e-08,-4.128595417223826871e-08,-5.160744271529783919e-08,-6.192893125835740968e-08,-7.225041980141698016e-08,-8.257190834447655065e-08,-9.289339688753612114e-08,-1.032148854305956916e-07,-1.135363739736552621e-07,-1.238578625167148458e-07,-1.341793510597744295e-07,-1.445008396028340133e-07,-1.548223281458935970e-07,-1.651438166889531807e-07,-1.754653052320127644e-07,-1.857867937750723481e-07,-1.961082823181319319e-07,-2.064297708611915156e-07,-2.167512594042510993e-07,-2.270727479473106830e-07,-2.373942364903702668e-07,-2.477157250334298505e-07,-2.580372135764894607e-07,-2.683587021195490709e-07,-2.786801906626086810e-07,-2.890016792056682912e-07,-2.993231677487279014e-07,-3.096446562917875116e-07,-3.199661448348471218e-07,-3.302876333779067320e-07,-3.406091219209663422e-07,-3.509306104640259524e-07,-3.612520990070855626e-07,-3.715735875501451728e-07,-3.818950760932047829e-07,-3.922165646362643931e-07,-4.025380531793240033e-07,-4.128595417223836135e-07,-4.231810302654432237e-07,-4.335025188085028339e-07,-4.438240073515624441e-07,-4.541454958946220543e-07,-4.644669844376816645e-07,-4.747884729807412747e-07,-4.851099615238008848e-07,-4.954314500668604421e-07,-5.057529386099199993e-07,-5.160744271529795566e-07,-5.263959156960391138e-07,-5.367174042390986711e-07,-5.470388927821582284e-07,-5.573603813252177856e-07,-5.676818698682773429e-07,-5.780033584113369001e-07,-5.883248469543964574e-07,-5.986463354974560146e-07,-6.089678240405155719e-07,-6.192893125835751291e-07,-6.296108011266346864e-07,-6.399322896696942436e-07,-6.502537782127538009e-07 +0.000000000000000000e+00,-7.517098757231907374e-09,-1.503419751446381475e-08,-2.255129627169572047e-08,-3.006839502892762288e-08,-3.758549378615952529e-08,-4.510259254339142770e-08,-5.261969130062333011e-08,-6.013679005785523252e-08,-6.765388881508713493e-08,-7.517098757231903734e-08,-8.268808632955093975e-08,-9.020518508678284216e-08,-9.772228384401474457e-08,-1.052393826012466470e-07,-1.127564813584785494e-07,-1.202735801157104386e-07,-1.277906788729423410e-07,-1.353077776301742434e-07,-1.428248763874061458e-07,-1.503419751446380482e-07,-1.578590739018699506e-07,-1.653761726591018530e-07,-1.728932714163337554e-07,-1.804103701735656579e-07,-1.879274689307975603e-07,-1.954445676880294627e-07,-2.029616664452613651e-07,-2.104787652024932675e-07,-2.179958639597251699e-07,-2.255129627169570723e-07,-2.330300614741889747e-07,-2.405471602314208771e-07,-2.480642589886527795e-07,-2.555813577458846820e-07,-2.630984565031165844e-07,-2.706155552603484868e-07,-2.781326540175803892e-07,-2.856497527748122916e-07,-2.931668515320441940e-07,-3.006839502892760964e-07,-3.082010490465079988e-07,-3.157181478037399012e-07,-3.232352465609718037e-07,-3.307523453182037061e-07,-3.382694440754356085e-07,-3.457865428326675109e-07,-3.533036415898994133e-07,-3.608207403471313157e-07,-3.683378391043632181e-07,-3.758549378615951205e-07,-3.833720366188270229e-07,-3.908891353760589254e-07,-3.984062341332908278e-07,-4.059233328905227302e-07,-4.134404316477546326e-07,-4.209575304049865350e-07,-4.284746291622184374e-07,-4.359917279194503398e-07,-4.435088266766822422e-07,-4.510259254339141446e-07,-4.585430241911460470e-07,-4.660601229483779495e-07,-4.735772217056098519e-07 +0.000000000000000000e+00,-9.652291555642194459e-09,-1.930458311128438892e-08,-2.895687466692658338e-08,-3.860916622256877784e-08,-4.826145777821097229e-08,-5.791374933385316675e-08,-6.756604088949536783e-08,-7.721833244513756891e-08,-8.687062400077976998e-08,-9.652291555642197106e-08,-1.061752071120641721e-07,-1.158274986677063732e-07,-1.254797902233485743e-07,-1.351320817789907886e-07,-1.447843733346330029e-07,-1.544366648902752172e-07,-1.640889564459174315e-07,-1.737412480015596458e-07,-1.833935395572018602e-07,-1.930458311128440745e-07,-2.026981226684862888e-07,-2.123504142241285031e-07,-2.220027057797707174e-07,-2.316549973354129317e-07,-2.413072888910551460e-07,-2.509595804466973603e-07,-2.606118720023395746e-07,-2.702641635579817890e-07,-2.799164551136240033e-07,-2.895687466692662176e-07,-2.992210382249084319e-07,-3.088733297805506462e-07,-3.185256213361928605e-07,-3.281779128918350748e-07,-3.378302044474772891e-07,-3.474824960031195034e-07,-3.571347875587617178e-07,-3.667870791144039321e-07,-3.764393706700461464e-07,-3.860916622256883607e-07,-3.957439537813305750e-07,-4.053962453369727893e-07,-4.150485368926150036e-07,-4.247008284482572179e-07,-4.343531200038994322e-07,-4.440054115595416466e-07,-4.536577031151838609e-07,-4.633099946708260752e-07,-4.729622862264682895e-07,-4.826145777821105038e-07,-4.922668693377527181e-07,-5.019191608933949324e-07,-5.115714524490371467e-07,-5.212237440046793610e-07,-5.308760355603215754e-07,-5.405283271159637897e-07,-5.501806186716060040e-07,-5.598329102272482183e-07,-5.694852017828904326e-07,-5.791374933385326469e-07,-5.887897848941748612e-07,-5.984420764498170755e-07,-6.080943680054592898e-07 +0.000000000000000000e+00,-1.031259603800194428e-08,-2.062519207600388855e-08,-3.093778811400583118e-08,-4.125038415200777049e-08,-5.156298019000970980e-08,-6.187557622801164912e-08,-7.218817226601358181e-08,-8.250076830401551451e-08,-9.281336434201744720e-08,-1.031259603800193799e-07,-1.134385564180213126e-07,-1.237511524560232453e-07,-1.340637484940251780e-07,-1.443763445320271107e-07,-1.546889405700290434e-07,-1.650015366080309761e-07,-1.753141326460329088e-07,-1.856267286840348415e-07,-1.959393247220367742e-07,-2.062519207600387069e-07,-2.165645167980406396e-07,-2.268771128360425723e-07,-2.371897088740445049e-07,-2.475023049120464376e-07,-2.578149009500483968e-07,-2.681274969880503560e-07,-2.784400930260523151e-07,-2.887526890640542743e-07,-2.990652851020562335e-07,-3.093778811400581926e-07,-3.196904771780601518e-07,-3.300030732160621110e-07,-3.403156692540640701e-07,-3.506282652920660293e-07,-3.609408613300679885e-07,-3.712534573680699476e-07,-3.815660534060719068e-07,-3.918786494440738660e-07,-4.021912454820758251e-07,-4.125038415200777843e-07,-4.228164375580797435e-07,-4.331290335960817026e-07,-4.434416296340836618e-07,-4.537542256720856210e-07,-4.640668217100875801e-07,-4.743794177480895393e-07,-4.846920137860914985e-07,-4.950046098240934047e-07,-5.053172058620953109e-07,-5.156298019000972171e-07,-5.259423979380991234e-07,-5.362549939761010296e-07,-5.465675900141029358e-07,-5.568801860521048420e-07,-5.671927820901067483e-07,-5.775053781281086545e-07,-5.878179741661105607e-07,-5.981305702041124669e-07,-6.084431662421143732e-07,-6.187557622801162794e-07,-6.290683583181181856e-07,-6.393809543561200918e-07,-6.496935503941219981e-07 +0.000000000000000000e+00,-9.661110214542703717e-09,-1.932222042908540743e-08,-2.898333064362811115e-08,-3.864444085817081487e-08,-4.830555107271351859e-08,-5.796666128725622230e-08,-6.762777150179893264e-08,-7.728888171634164297e-08,-8.694999193088435331e-08,-9.661110214542706364e-08,-1.062722123599697740e-07,-1.159333225745124843e-07,-1.255944327890551946e-07,-1.352555430035979182e-07,-1.449166532181406418e-07,-1.545777634326833654e-07,-1.642388736472260889e-07,-1.738999838617688125e-07,-1.835610940763115361e-07,-1.932222042908542596e-07,-2.028833145053969832e-07,-2.125444247199397068e-07,-2.222055349344824303e-07,-2.318666451490251539e-07,-2.415277553635678510e-07,-2.511888655781105481e-07,-2.608499757926532452e-07,-2.705110860071959423e-07,-2.801721962217386394e-07,-2.898333064362813365e-07,-2.994944166508240336e-07,-3.091555268653667307e-07,-3.188166370799094278e-07,-3.284777472944521249e-07,-3.381388575089948220e-07,-3.477999677235375191e-07,-3.574610779380802162e-07,-3.671221881526229133e-07,-3.767832983671656104e-07,-3.864444085817083075e-07,-3.961055187962510046e-07,-4.057666290107937017e-07,-4.154277392253363988e-07,-4.250888494398790959e-07,-4.347499596544217930e-07,-4.444110698689644901e-07,-4.540721800835071872e-07,-4.637332902980498843e-07,-4.733944005125925814e-07,-4.830555107271352785e-07,-4.927166209416779756e-07,-5.023777311562206727e-07,-5.120388413707633698e-07,-5.216999515853060669e-07,-5.313610617998487640e-07,-5.410221720143914611e-07,-5.506832822289341582e-07,-5.603443924434768553e-07,-5.700055026580195524e-07,-5.796666128725622495e-07,-5.893277230871049466e-07,-5.989888333016476437e-07,-6.086499435161903408e-07 +0.000000000000000000e+00,-9.652291555641995936e-09,-1.930458311128399187e-08,-2.895687466692598781e-08,-3.860916622256798374e-08,-4.826145777820997968e-08,-5.791374933385197561e-08,-6.756604088949396493e-08,-7.721833244513595425e-08,-8.687062400077794357e-08,-9.652291555641993289e-08,-1.061752071120619222e-07,-1.158274986677039115e-07,-1.254797902233459008e-07,-1.351320817789878769e-07,-1.447843733346298530e-07,-1.544366648902718291e-07,-1.640889564459138052e-07,-1.737412480015557813e-07,-1.833935395571977573e-07,-1.930458311128397334e-07,-2.026981226684817095e-07,-2.123504142241236856e-07,-2.220027057797656617e-07,-2.316549973354076378e-07,-2.413072888910496403e-07,-2.509595804466916429e-07,-2.606118720023336454e-07,-2.702641635579756480e-07,-2.799164551136176505e-07,-2.895687466692596531e-07,-2.992210382249016556e-07,-3.088733297805436582e-07,-3.185256213361856607e-07,-3.281779128918276633e-07,-3.378302044474696658e-07,-3.474824960031116684e-07,-3.571347875587536709e-07,-3.667870791143956735e-07,-3.764393706700376760e-07,-3.860916622256796786e-07,-3.957439537813216812e-07,-4.053962453369636837e-07,-4.150485368926056863e-07,-4.247008284482476888e-07,-4.343531200038896914e-07,-4.440054115595316939e-07,-4.536577031151736965e-07,-4.633099946708156990e-07,-4.729622862264577016e-07,-4.826145777820997041e-07,-4.922668693377417067e-07,-5.019191608933837092e-07,-5.115714524490257118e-07,-5.212237440046677143e-07,-5.308760355603097169e-07,-5.405283271159517194e-07,-5.501806186715937220e-07,-5.598329102272357246e-07,-5.694852017828777271e-07,-5.791374933385197297e-07,-5.887897848941617322e-07,-5.984420764498037348e-07,-6.080943680054457373e-07 +0.000000000000000000e+00,-1.032148854305904440e-08,-2.064297708611808880e-08,-3.096446562917713650e-08,-4.128595417223618421e-08,-5.160744271529523192e-08,-6.192893125835427301e-08,-7.225041980141331410e-08,-8.257190834447235519e-08,-9.289339688753139628e-08,-1.032148854305904374e-07,-1.135363739736494785e-07,-1.238578625167085195e-07,-1.341793510597675739e-07,-1.445008396028266282e-07,-1.548223281458856825e-07,-1.651438166889447368e-07,-1.754653052320037912e-07,-1.857867937750628455e-07,-1.961082823181218998e-07,-2.064297708611809541e-07,-2.167512594042400085e-07,-2.270727479472990628e-07,-2.373942364903581171e-07,-2.477157250334171979e-07,-2.580372135764762787e-07,-2.683587021195353595e-07,-2.786801906625944403e-07,-2.890016792056535211e-07,-2.993231677487126019e-07,-3.096446562917716827e-07,-3.199661448348307635e-07,-3.302876333778898443e-07,-3.406091219209489251e-07,-3.509306104640080059e-07,-3.612520990070670867e-07,-3.715735875501261675e-07,-3.818950760931852482e-07,-3.922165646362443290e-07,-4.025380531793034098e-07,-4.128595417223624906e-07,-4.231810302654215714e-07,-4.335025188084806522e-07,-4.438240073515397330e-07,-4.541454958945988138e-07,-4.644669844376578946e-07,-4.747884729807169754e-07,-4.851099615237760033e-07,-4.954314500668350311e-07,-5.057529386098940590e-07,-5.160744271529530868e-07,-5.263959156960121147e-07,-5.367174042390711425e-07,-5.470388927821301704e-07,-5.573603813251891982e-07,-5.676818698682482261e-07,-5.780033584113072540e-07,-5.883248469543662818e-07,-5.986463354974253097e-07,-6.089678240404843375e-07,-6.192893125835433654e-07,-6.296108011266023932e-07,-6.399322896696614211e-07,-6.502537782127204489e-07 +0.000000000000000000e+00,-7.517098757231386250e-09,-1.503419751446277250e-08,-2.255129627169415875e-08,-3.006839502892554500e-08,-3.758549378615693125e-08,-4.510259254338831750e-08,-5.261969130061970375e-08,-6.013679005785109000e-08,-6.765388881508247625e-08,-7.517098757231386250e-08,-8.268808632954524875e-08,-9.020518508677663500e-08,-9.772228384400802125e-08,-1.052393826012394075e-07,-1.127564813584707937e-07,-1.202735801157021800e-07,-1.277906788729335530e-07,-1.353077776301649260e-07,-1.428248763873962990e-07,-1.503419751446276721e-07,-1.578590739018590451e-07,-1.653761726590904181e-07,-1.728932714163217911e-07,-1.804103701735531641e-07,-1.879274689307845371e-07,-1.954445676880159101e-07,-2.029616664452472832e-07,-2.104787652024786562e-07,-2.179958639597100292e-07,-2.255129627169414022e-07,-2.330300614741727752e-07,-2.405471602314041482e-07,-2.480642589886355213e-07,-2.555813577458668943e-07,-2.630984565030982673e-07,-2.706155552603296403e-07,-2.781326540175610133e-07,-2.856497527747923863e-07,-2.931668515320237593e-07,-3.006839502892551324e-07,-3.082010490464865054e-07,-3.157181478037178784e-07,-3.232352465609492514e-07,-3.307523453181806244e-07,-3.382694440754119974e-07,-3.457865428326433704e-07,-3.533036415898747435e-07,-3.608207403471061165e-07,-3.683378391043374895e-07,-3.758549378615688625e-07,-3.833720366188002355e-07,-3.908891353760316085e-07,-3.984062341332629816e-07,-4.059233328904943546e-07,-4.134404316477257276e-07,-4.209575304049571006e-07,-4.284746291621884736e-07,-4.359917279194198466e-07,-4.435088266766512196e-07,-4.510259254338825927e-07,-4.585430241911139657e-07,-4.660601229483453387e-07,-4.735772217055767117e-07 +0.000000000000000000e+00,-8.188985361819023807e-09,-1.637797072363804761e-08,-2.456695608545707142e-08,-3.275594144727609523e-08,-4.094492680909511903e-08,-4.913391217091414284e-08,-5.732289753273316665e-08,-6.551188289455219045e-08,-7.370086825637121426e-08,-8.188985361819023807e-08,-9.007883898000926187e-08,-9.826782434182828568e-08,-1.064568097036473095e-07,-1.146457950654663333e-07,-1.228347804272853703e-07,-1.310237657891044074e-07,-1.392127511509234444e-07,-1.474017365127424815e-07,-1.555907218745615185e-07,-1.637797072363805555e-07,-1.719686925981995926e-07,-1.801576779600186296e-07,-1.883466633218376667e-07,-1.965356486836567037e-07,-2.047246340454757408e-07,-2.129136194072947778e-07,-2.211026047691138148e-07,-2.292915901309328519e-07,-2.374805754927518889e-07,-2.456695608545709524e-07,-2.538585462163900159e-07,-2.620475315782090795e-07,-2.702365169400281430e-07,-2.784255023018472065e-07,-2.866144876636662700e-07,-2.948034730254853335e-07,-3.029924583873043970e-07,-3.111814437491234605e-07,-3.193704291109425240e-07,-3.275594144727615875e-07,-3.357483998345806511e-07,-3.439373851963997146e-07,-3.521263705582187781e-07,-3.603153559200378416e-07,-3.685043412818569051e-07,-3.766933266436759686e-07,-3.848823120054950321e-07,-3.930712973673140956e-07,-4.012602827291331591e-07,-4.094492680909522227e-07,-4.176382534527712862e-07,-4.258272388145903497e-07,-4.340162241764094132e-07,-4.422052095382284767e-07,-4.503941949000475402e-07,-4.585831802618666037e-07,-4.667721656236856672e-07,-4.749611509855047308e-07,-4.831501363473237943e-07,-4.913391217091428578e-07,-4.995281070709619213e-07,-5.077170924327809848e-07,-5.159060777946000483e-07 +0.000000000000000000e+00,-8.173039976097639441e-09,-1.634607995219527888e-08,-2.451911992829291832e-08,-3.269215990439055776e-08,-4.086519988048819720e-08,-4.903823985658583664e-08,-5.721127983268347608e-08,-6.538431980878111552e-08,-7.355735978487876158e-08,-8.173039976097640764e-08,-8.990343973707405370e-08,-9.807647971317169976e-08,-1.062495196892693458e-07,-1.144225596653669919e-07,-1.225955996414646379e-07,-1.307686396175622840e-07,-1.389416795936599300e-07,-1.471147195697575761e-07,-1.552877595458552222e-07,-1.634607995219528682e-07,-1.716338394980505143e-07,-1.798068794741481603e-07,-1.879799194502458064e-07,-1.961529594263434525e-07,-2.043259994024410985e-07,-2.124990393785387446e-07,-2.206720793546363906e-07,-2.288451193307340367e-07,-2.370181593068316827e-07,-2.451911992829293288e-07,-2.533642392590269749e-07,-2.615372792351246209e-07,-2.697103192112222670e-07,-2.778833591873199130e-07,-2.860563991634175591e-07,-2.942294391395152051e-07,-3.024024791156128512e-07,-3.105755190917104973e-07,-3.187485590678081433e-07,-3.269215990439057894e-07,-3.350946390200034354e-07,-3.432676789961010815e-07,-3.514407189721987276e-07,-3.596137589482963736e-07,-3.677867989243940197e-07,-3.759598389004916657e-07,-3.841328788765893118e-07,-3.923059188526869578e-07,-4.004789588287846039e-07,-4.086519988048822500e-07,-4.168250387809798960e-07,-4.249980787570775421e-07,-4.331711187331751881e-07,-4.413441587092728342e-07,-4.495171986853704803e-07,-4.576902386614681263e-07,-4.658632786375657724e-07,-4.740363186136634184e-07,-4.822093585897610645e-07,-4.903823985658587635e-07,-4.985554385419564625e-07,-5.067284785180541615e-07,-5.149015184941518605e-07 +0.000000000000000000e+00,-8.963500815260765716e-09,-1.792700163052153143e-08,-2.689050244578229549e-08,-3.585400326104305625e-08,-4.481750407630381700e-08,-5.378100489156457775e-08,-6.274450570682533189e-08,-7.170800652208608602e-08,-8.067150733734684016e-08,-8.963500815260759429e-08,-9.859850896786834843e-08,-1.075620097831291026e-07,-1.165255105983898567e-07,-1.254890114136506108e-07,-1.344525122289113650e-07,-1.434160130441721191e-07,-1.523795138594328732e-07,-1.613430146746936274e-07,-1.703065154899543815e-07,-1.792700163052151356e-07,-1.882335171204758898e-07,-1.971970179357366439e-07,-2.061605187509973980e-07,-2.151240195662581522e-07,-2.240875203815189063e-07,-2.330510211967796605e-07,-2.420145220120403881e-07,-2.509780228273011158e-07,-2.599415236425618435e-07,-2.689050244578225711e-07,-2.778685252730832988e-07,-2.868320260883440264e-07,-2.957955269036047541e-07,-3.047590277188654818e-07,-3.137225285341262094e-07,-3.226860293493869371e-07,-3.316495301646476648e-07,-3.406130309799083924e-07,-3.495765317951691201e-07,-3.585400326104298478e-07,-3.675035334256905754e-07,-3.764670342409513031e-07,-3.854305350562120308e-07,-3.943940358714727584e-07,-4.033575366867334861e-07,-4.123210375019942138e-07,-4.212845383172549414e-07,-4.302480391325156691e-07,-4.392115399477763968e-07,-4.481750407630371244e-07,-4.571385415782978521e-07,-4.661020423935585798e-07,-4.750655432088193074e-07,-4.840290440240800351e-07,-4.929925448393407628e-07,-5.019560456546014904e-07,-5.109195464698622181e-07,-5.198830472851229457e-07,-5.288465481003836734e-07,-5.378100489156444011e-07,-5.467735497309051287e-07,-5.557370505461658564e-07,-5.647005513614265841e-07 +0.000000000000000000e+00,-6.063138102468389280e-09,-1.212627620493677856e-08,-1.818941430740516867e-08,-2.425255240987356043e-08,-3.031569051234195219e-08,-3.637882861481034395e-08,-4.244196671727873571e-08,-4.850510481974712747e-08,-5.456824292221551924e-08,-6.063138102468390438e-08,-6.669451912715228952e-08,-7.275765722962067467e-08,-7.882079533208905981e-08,-8.488393343455744496e-08,-9.094707153702583010e-08,-9.701020963949421525e-08,-1.030733477419626004e-07,-1.091364858444309855e-07,-1.151996239468993707e-07,-1.212627620493677558e-07,-1.273259001518361277e-07,-1.333890382543044996e-07,-1.394521763567728715e-07,-1.455153144592412435e-07,-1.515784525617096154e-07,-1.576415906641779873e-07,-1.637047287666463592e-07,-1.697678668691147311e-07,-1.758310049715831030e-07,-1.818941430740514749e-07,-1.879572811765198468e-07,-1.940204192789882187e-07,-2.000835573814565906e-07,-2.061466954839249626e-07,-2.122098335863933345e-07,-2.182729716888617064e-07,-2.243361097913300783e-07,-2.303992478937984502e-07,-2.364623859962668221e-07,-2.425255240987351940e-07,-2.485886622012035659e-07,-2.546518003036719378e-07,-2.607149384061403097e-07,-2.667780765086086816e-07,-2.728412146110770536e-07,-2.789043527135454255e-07,-2.849674908160137974e-07,-2.910306289184821693e-07,-2.970937670209505412e-07,-3.031569051234189131e-07,-3.092200432258872850e-07,-3.152831813283556569e-07,-3.213463194308240288e-07,-3.274094575332924007e-07,-3.334725956357607726e-07,-3.395357337382291446e-07,-3.455988718406975165e-07,-3.516620099431658884e-07,-3.577251480456342603e-07,-3.637882861481026322e-07,-3.698514242505710041e-07,-3.759145623530393760e-07,-3.819777004555077479e-07 +0.000000000000000000e+00,-8.177431690006170601e-09,-1.635486338001234120e-08,-2.453229507001851180e-08,-3.270972676002468240e-08,-4.088715845003085301e-08,-4.906459014003702361e-08,-5.724202183004319421e-08,-6.541945352004936481e-08,-7.359688521005554203e-08,-8.177431690006171925e-08,-8.995174859006789647e-08,-9.812918028007407368e-08,-1.063066119700802509e-07,-1.144840436600864281e-07,-1.226614753500926053e-07,-1.308389070400987826e-07,-1.390163387301049598e-07,-1.471937704201111370e-07,-1.553712021101173142e-07,-1.635486338001234914e-07,-1.717260654901296687e-07,-1.799034971801358459e-07,-1.880809288701420231e-07,-1.962583605601482003e-07,-2.044357922501543775e-07,-2.126132239401605547e-07,-2.207906556301667320e-07,-2.289680873201729092e-07,-2.371455190101790864e-07,-2.453229507001852636e-07,-2.535003823901914408e-07,-2.616778140801976181e-07,-2.698552457702037953e-07,-2.780326774602099725e-07,-2.862101091502161497e-07,-2.943875408402223269e-07,-3.025649725302285042e-07,-3.107424042202346814e-07,-3.189198359102408586e-07,-3.270972676002470358e-07,-3.352746992902532130e-07,-3.434521309802593902e-07,-3.516295626702655675e-07,-3.598069943602717447e-07,-3.679844260502779219e-07,-3.761618577402840991e-07,-3.843392894302902763e-07,-3.925167211202964536e-07,-4.006941528103026308e-07,-4.088715845003088080e-07,-4.170490161903149852e-07,-4.252264478803211624e-07,-4.334038795703273397e-07,-4.415813112603335169e-07,-4.497587429503396941e-07,-4.579361746403458713e-07,-4.661136063303520485e-07,-4.742910380203582257e-07,-4.824684697103644030e-07,-4.906459014003706331e-07,-4.988233330903768633e-07,-5.070007647803830934e-07,-5.151781964703893236e-07 +0.000000000000000000e+00,-8.949147910765105932e-09,-1.789829582153021186e-08,-2.684744373229531780e-08,-3.579659164306042373e-08,-4.474573955382553297e-08,-5.369488746459064221e-08,-6.264403537535575145e-08,-7.159318328612086069e-08,-8.054233119688596993e-08,-8.949147910765107917e-08,-9.844062701841618841e-08,-1.073897749291812977e-07,-1.163389228399464069e-07,-1.252880707507115029e-07,-1.342372186614765989e-07,-1.431863665722416949e-07,-1.521355144830067909e-07,-1.610846623937718869e-07,-1.700338103045369829e-07,-1.789829582153020789e-07,-1.879321061260671749e-07,-1.968812540368322709e-07,-2.058304019475973669e-07,-2.147795498583624630e-07,-2.237286977691275590e-07,-2.326778456798926550e-07,-2.416269935906577510e-07,-2.505761415014228470e-07,-2.595252894121879430e-07,-2.684744373229530390e-07,-2.774235852337181350e-07,-2.863727331444832310e-07,-2.953218810552483270e-07,-3.042710289660134230e-07,-3.132201768767785190e-07,-3.221693247875436150e-07,-3.311184726983087110e-07,-3.400676206090738070e-07,-3.490167685198389030e-07,-3.579659164306039990e-07,-3.669150643413690951e-07,-3.758642122521341911e-07,-3.848133601628992871e-07,-3.937625080736643831e-07,-4.027116559844294791e-07,-4.116608038951945751e-07,-4.206099518059596711e-07,-4.295590997167247671e-07,-4.385082476274898631e-07,-4.474573955382549591e-07,-4.564065434490200551e-07,-4.653556913597851511e-07,-4.743048392705502471e-07,-4.832539871813153961e-07,-4.922031350920804921e-07,-5.011522830028455881e-07,-5.101014309136106841e-07,-5.190505788243757801e-07,-5.279997267351408761e-07,-5.369488746459059721e-07,-5.458980225566710681e-07,-5.548471704674361641e-07,-5.637963183782012601e-07 +0.000000000000000000e+00,-8.188985361817920348e-09,-1.637797072363584070e-08,-2.456695608545376270e-08,-3.275594144727168801e-08,-4.094492680908961332e-08,-4.913391217090753863e-08,-5.732289753272546394e-08,-6.551188289454338925e-08,-7.370086825636131456e-08,-8.188985361817923987e-08,-9.007883897999716519e-08,-9.826782434181509050e-08,-1.064568097036330158e-07,-1.146457950654509411e-07,-1.228347804272688532e-07,-1.310237657890867520e-07,-1.392127511509046509e-07,-1.474017365127225497e-07,-1.555907218745404486e-07,-1.637797072363583474e-07,-1.719686925981762462e-07,-1.801576779599941451e-07,-1.883466633218120439e-07,-1.965356486836299428e-07,-2.047246340454478416e-07,-2.129136194072657404e-07,-2.211026047690836393e-07,-2.292915901309015381e-07,-2.374805754927194370e-07,-2.456695608545373358e-07,-2.538585462163552347e-07,-2.620475315781731335e-07,-2.702365169399910323e-07,-2.784255023018089312e-07,-2.866144876636268300e-07,-2.948034730254447289e-07,-3.029924583872626277e-07,-3.111814437490805265e-07,-3.193704291108984254e-07,-3.275594144727163242e-07,-3.357483998345342231e-07,-3.439373851963521219e-07,-3.521263705581700207e-07,-3.603153559199879196e-07,-3.685043412818058184e-07,-3.766933266436237173e-07,-3.848823120054416161e-07,-3.930712973672595150e-07,-4.012602827290774138e-07,-4.094492680908953126e-07,-4.176382534527132115e-07,-4.258272388145311103e-07,-4.340162241763490092e-07,-4.422052095381669080e-07,-4.503941948999848068e-07,-4.585831802618027057e-07,-4.667721656236206045e-07,-4.749611509854385034e-07,-4.831501363472564551e-07,-4.913391217090743540e-07,-4.995281070708922528e-07,-5.077170924327101517e-07,-5.159060777945280505e-07 +0.000000000000000000e+00,-8.177431690005684219e-09,-1.635486338001136844e-08,-2.453229507001705266e-08,-3.270972676002273688e-08,-4.088715845002842440e-08,-4.906459014003411193e-08,-5.724202183003979946e-08,-6.541945352004548699e-08,-7.359688521005117451e-08,-8.177431690005686204e-08,-8.995174859006254957e-08,-9.812918028006823710e-08,-1.063066119700739246e-07,-1.144840436600796122e-07,-1.226614753500852997e-07,-1.308389070400910004e-07,-1.390163387300967012e-07,-1.471937704201024020e-07,-1.553712021101081027e-07,-1.635486338001138035e-07,-1.717260654901195043e-07,-1.799034971801252050e-07,-1.880809288701309058e-07,-1.962583605601366065e-07,-2.044357922501423073e-07,-2.126132239401480081e-07,-2.207906556301537088e-07,-2.289680873201594096e-07,-2.371455190101651104e-07,-2.453229507001708111e-07,-2.535003823901765119e-07,-2.616778140801822126e-07,-2.698552457701879134e-07,-2.780326774601936142e-07,-2.862101091501993149e-07,-2.943875408402050157e-07,-3.025649725302107165e-07,-3.107424042202164172e-07,-3.189198359102221180e-07,-3.270972676002278187e-07,-3.352746992902335195e-07,-3.434521309802392203e-07,-3.516295626702449210e-07,-3.598069943602506218e-07,-3.679844260502563226e-07,-3.761618577402620233e-07,-3.843392894302677241e-07,-3.925167211202734248e-07,-4.006941528102791256e-07,-4.088715845002848264e-07,-4.170490161902905271e-07,-4.252264478802962279e-07,-4.334038795703019287e-07,-4.415813112603076294e-07,-4.497587429503133302e-07,-4.579361746403190310e-07,-4.661136063303247317e-07,-4.742910380203304325e-07,-4.824684697103361332e-07,-4.906459014003418340e-07,-4.988233330903475348e-07,-5.070007647803532355e-07,-5.151781964703589363e-07 +0.000000000000000000e+00,-8.963500815259998092e-09,-1.792700163051999618e-08,-2.689050244577999262e-08,-3.585400326103998575e-08,-4.481750407629997888e-08,-5.378100489155997201e-08,-6.274450570681995852e-08,-7.170800652207994503e-08,-8.067150733733993154e-08,-8.963500815259991806e-08,-9.859850896785990457e-08,-1.075620097831198911e-07,-1.165255105983798776e-07,-1.254890114136398641e-07,-1.344525122288998506e-07,-1.434160130441598371e-07,-1.523795138594198236e-07,-1.613430146746798101e-07,-1.703065154899397967e-07,-1.792700163051997832e-07,-1.882335171204597697e-07,-1.971970179357197562e-07,-2.061605187509797427e-07,-2.151240195662397292e-07,-2.240875203814997157e-07,-2.330510211967597022e-07,-2.420145220120196888e-07,-2.509780228272796753e-07,-2.599415236425396618e-07,-2.689050244577996483e-07,-2.778685252730596348e-07,-2.868320260883196213e-07,-2.957955269035796078e-07,-3.047590277188395943e-07,-3.137225285340995808e-07,-3.226860293493595674e-07,-3.316495301646195539e-07,-3.406130309798795404e-07,-3.495765317951395269e-07,-3.585400326103995134e-07,-3.675035334256594999e-07,-3.764670342409194864e-07,-3.854305350561794729e-07,-3.943940358714394594e-07,-4.033575366866994460e-07,-4.123210375019594325e-07,-4.212845383172194190e-07,-4.302480391324794055e-07,-4.392115399477393920e-07,-4.481750407629993785e-07,-4.571385415782593650e-07,-4.661020423935193515e-07,-4.750655432087793381e-07,-4.840290440240392716e-07,-4.929925448392991523e-07,-5.019560456545590329e-07,-5.109195464698189135e-07,-5.198830472850787942e-07,-5.288465481003386748e-07,-5.378100489155985554e-07,-5.467735497308584361e-07,-5.557370505461183167e-07,-5.647005513613781973e-07 +0.000000000000000000e+00,-6.063138102467949220e-09,-1.212627620493589844e-08,-1.818941430740384849e-08,-2.425255240987180019e-08,-3.031569051233975520e-08,-3.637882861480771021e-08,-4.244196671727566522e-08,-4.850510481974362023e-08,-5.456824292221157524e-08,-6.063138102467953687e-08,-6.669451912714749849e-08,-7.275765722961546012e-08,-7.882079533208342175e-08,-8.488393343455138338e-08,-9.094707153701934501e-08,-9.701020963948730663e-08,-1.030733477419552683e-07,-1.091364858444232299e-07,-1.151996239468911915e-07,-1.212627620493591531e-07,-1.273259001518271280e-07,-1.333890382542951029e-07,-1.394521763567630777e-07,-1.455153144592310526e-07,-1.515784525616990275e-07,-1.576415906641670023e-07,-1.637047287666349772e-07,-1.697678668691029520e-07,-1.758310049715709269e-07,-1.818941430740389018e-07,-1.879572811765068766e-07,-1.940204192789748515e-07,-2.000835573814428264e-07,-2.061466954839108012e-07,-2.122098335863787761e-07,-2.182729716888467509e-07,-2.243361097913147258e-07,-2.303992478937827007e-07,-2.364623859962506755e-07,-2.425255240987186769e-07,-2.485886622011866782e-07,-2.546518003036546795e-07,-2.607149384061226809e-07,-2.667780765085906822e-07,-2.728412146110586835e-07,-2.789043527135266849e-07,-2.849674908159946862e-07,-2.910306289184626875e-07,-2.970937670209306889e-07,-3.031569051233986902e-07,-3.092200432258666915e-07,-3.152831813283346929e-07,-3.213463194308026942e-07,-3.274094575332706955e-07,-3.334725956357386968e-07,-3.395357337382066982e-07,-3.455988718406746995e-07,-3.516620099431427008e-07,-3.577251480456107022e-07,-3.637882861480787035e-07,-3.698514242505467048e-07,-3.759145623530147062e-07,-3.819777004554827075e-07 +0.000000000000000000e+00,-6.360790571505432907e-09,-1.272158114301086581e-08,-1.908237171451629790e-08,-2.544316228602172832e-08,-3.180395285752715875e-08,-3.816474342903258917e-08,-4.452553400053801960e-08,-5.088632457204345002e-08,-5.724711514354888045e-08,-6.360790571505430426e-08,-6.996869628655973468e-08,-7.632948685806516511e-08,-8.269027742957059554e-08,-8.905106800107602596e-08,-9.541185857258145639e-08,-1.017726491440868868e-07,-1.081334397155923172e-07,-1.144942302870977477e-07,-1.208550208586031781e-07,-1.272158114301086085e-07,-1.335766020016140389e-07,-1.399373925731194694e-07,-1.462981831446248998e-07,-1.526589737161303302e-07,-1.590197642876357606e-07,-1.653805548591411911e-07,-1.717413454306466215e-07,-1.781021360021520519e-07,-1.844629265736574824e-07,-1.908237171451629128e-07,-1.971845077166683432e-07,-2.035452982881737736e-07,-2.099060888596792041e-07,-2.162668794311846345e-07,-2.226276700026900649e-07,-2.289884605741954953e-07,-2.353492511457009258e-07,-2.417100417172063562e-07,-2.480708322887117866e-07,-2.544316228602172170e-07,-2.607924134317226475e-07,-2.671532040032280779e-07,-2.735139945747335083e-07,-2.798747851462389387e-07,-2.862355757177443692e-07,-2.925963662892497996e-07,-2.989571568607552300e-07,-3.053179474322606604e-07,-3.116787380037660909e-07,-3.180395285752715213e-07,-3.244003191467769517e-07,-3.307611097182823821e-07,-3.371219002897878126e-07,-3.434826908612932430e-07,-3.498434814327986734e-07,-3.562042720043041038e-07,-3.625650625758095343e-07,-3.689258531473149647e-07,-3.752866437188203951e-07,-3.816474342903258256e-07,-3.880082248618312560e-07,-3.943690154333366864e-07,-4.007298060048421168e-07 +0.000000000000000000e+00,-6.341097292113731922e-09,-1.268219458422746384e-08,-1.902329187634119494e-08,-2.536438916845492438e-08,-3.170548646056865382e-08,-3.804658375268238326e-08,-4.438768104479611270e-08,-5.072877833690984214e-08,-5.706987562902357158e-08,-6.341097292113730764e-08,-6.975207021325104369e-08,-7.609316750536477975e-08,-8.243426479747851581e-08,-8.877536208959225187e-08,-9.511645938170598792e-08,-1.014575566738197240e-07,-1.077986539659334600e-07,-1.141397512580471961e-07,-1.204808485501609322e-07,-1.268219458422746682e-07,-1.331630431343884043e-07,-1.395041404265021403e-07,-1.458452377186158764e-07,-1.521863350107296124e-07,-1.585274323028433485e-07,-1.648685295949570846e-07,-1.712096268870708206e-07,-1.775507241791845567e-07,-1.838918214712982927e-07,-1.902329187634120288e-07,-1.965740160555257648e-07,-2.029151133476395009e-07,-2.092562106397532370e-07,-2.155973079318669730e-07,-2.219384052239807091e-07,-2.282795025160944451e-07,-2.346205998082081812e-07,-2.409616971003219173e-07,-2.473027943924356798e-07,-2.536438916845494423e-07,-2.599849889766632048e-07,-2.663260862687769674e-07,-2.726671835608907299e-07,-2.790082808530044924e-07,-2.853493781451182549e-07,-2.916904754372320175e-07,-2.980315727293457800e-07,-3.043726700214595425e-07,-3.107137673135733051e-07,-3.170548646056870676e-07,-3.233959618978008301e-07,-3.297370591899145926e-07,-3.360781564820283552e-07,-3.424192537741421177e-07,-3.487603510662558802e-07,-3.551014483583696427e-07,-3.614425456504834053e-07,-3.677836429425971678e-07,-3.741247402347109303e-07,-3.804658375268246929e-07,-3.868069348189384554e-07,-3.931480321110522179e-07,-3.994891294031659804e-07 +0.000000000000000000e+00,-7.342542375102822781e-09,-1.468508475020564556e-08,-2.202762712530846669e-08,-2.937016950041128782e-08,-3.671271187551410894e-08,-4.405525425061693338e-08,-5.139779662571975781e-08,-5.874033900082258225e-08,-6.608288137592541330e-08,-7.342542375102824435e-08,-8.076796612613107541e-08,-8.811050850123390646e-08,-9.545305087633673751e-08,-1.027955932514395686e-07,-1.101381356265423996e-07,-1.174806780016452307e-07,-1.248232203767480617e-07,-1.321657627518508795e-07,-1.395083051269536974e-07,-1.468508475020565152e-07,-1.541933898771593330e-07,-1.615359322522621508e-07,-1.688784746273649686e-07,-1.762210170024677864e-07,-1.835635593775706043e-07,-1.909061017526734221e-07,-1.982486441277762399e-07,-2.055911865028790577e-07,-2.129337288779818755e-07,-2.202762712530846934e-07,-2.276188136281875112e-07,-2.349613560032903290e-07,-2.423038983783931733e-07,-2.496464407534960176e-07,-2.569889831285988619e-07,-2.643315255037017061e-07,-2.716740678788045504e-07,-2.790166102539073947e-07,-2.863591526290102390e-07,-2.937016950041130833e-07,-3.010442373792159276e-07,-3.083867797543187719e-07,-3.157293221294216162e-07,-3.230718645045244604e-07,-3.304144068796273047e-07,-3.377569492547301490e-07,-3.450994916298329933e-07,-3.524420340049358376e-07,-3.597845763800386819e-07,-3.671271187551415262e-07,-3.744696611302443705e-07,-3.818122035053472147e-07,-3.891547458804500590e-07,-3.964972882555529033e-07,-4.038398306306557476e-07,-4.111823730057585919e-07,-4.185249153808614362e-07,-4.258674577559642805e-07,-4.332100001310671248e-07,-4.405525425061699690e-07,-4.478950848812728133e-07,-4.552376272563756576e-07,-4.625801696314785019e-07 +0.000000000000000000e+00,-4.308827514988523792e-09,-8.617655029977047583e-09,-1.292648254496557055e-08,-1.723531005995409186e-08,-2.154413757494261317e-08,-2.585296508993113448e-08,-3.016179260491965910e-08,-3.447062011990818372e-08,-3.877944763489670834e-08,-4.308827514988523295e-08,-4.739710266487375757e-08,-5.170593017986228219e-08,-5.601475769485080681e-08,-6.032358520983933143e-08,-6.463241272482785605e-08,-6.894124023981638067e-08,-7.325006775480490529e-08,-7.755889526979342991e-08,-8.186772278478195452e-08,-8.617655029977047914e-08,-9.048537781475900376e-08,-9.479420532974752838e-08,-9.910303284473605300e-08,-1.034118603597245776e-07,-1.077206878747131022e-07,-1.120295153897016269e-07,-1.163383429046901515e-07,-1.206471704196786893e-07,-1.249559979346672272e-07,-1.292648254496557650e-07,-1.335736529646443029e-07,-1.378824804796328407e-07,-1.421913079946213786e-07,-1.465001355096099165e-07,-1.508089630245984543e-07,-1.551177905395869922e-07,-1.594266180545755300e-07,-1.637354455695640679e-07,-1.680442730845526057e-07,-1.723531005995411436e-07,-1.766619281145296814e-07,-1.809707556295182193e-07,-1.852795831445067571e-07,-1.895884106594952950e-07,-1.938972381744838328e-07,-1.982060656894723707e-07,-2.025148932044609086e-07,-2.068237207194494464e-07,-2.111325482344379843e-07,-2.154413757494265221e-07,-2.197502032644150600e-07,-2.240590307794035978e-07,-2.283678582943921357e-07,-2.326766858093806735e-07,-2.369855133243692114e-07,-2.412943408393577492e-07,-2.456031683543462606e-07,-2.499119958693347720e-07,-2.542208233843232834e-07,-2.585296508993117948e-07,-2.628384784143003062e-07,-2.671473059292888175e-07,-2.714561334442773289e-07 +0.000000000000000000e+00,-6.345291972153902217e-09,-1.269058394430780443e-08,-1.903587591646170582e-08,-2.538116788861560556e-08,-3.172645986076950530e-08,-3.807175183292340503e-08,-4.441704380507730477e-08,-5.076233577723120450e-08,-5.710762774938510424e-08,-6.345291972153901059e-08,-6.979821169369291694e-08,-7.614350366584682330e-08,-8.248879563800072965e-08,-8.883408761015463600e-08,-9.517937958230854236e-08,-1.015246715544624487e-07,-1.078699635266163551e-07,-1.142152554987702614e-07,-1.205605474709241545e-07,-1.269058394430780477e-07,-1.332511314152319408e-07,-1.395964233873858339e-07,-1.459417153595397270e-07,-1.522870073316936201e-07,-1.586322993038475132e-07,-1.649775912760014064e-07,-1.713228832481552995e-07,-1.776681752203091926e-07,-1.840134671924630857e-07,-1.903587591646169788e-07,-1.967040511367708720e-07,-2.030493431089247651e-07,-2.093946350810786582e-07,-2.157399270532325513e-07,-2.220852190253864444e-07,-2.284305109975403375e-07,-2.347758029696942307e-07,-2.411210949418480973e-07,-2.474663869140019640e-07,-2.538116788861558306e-07,-2.601569708583096973e-07,-2.665022628304635639e-07,-2.728475548026174305e-07,-2.791928467747712972e-07,-2.855381387469251638e-07,-2.918834307190790305e-07,-2.982287226912328971e-07,-3.045740146633867638e-07,-3.109193066355406304e-07,-3.172645986076944971e-07,-3.236098905798483637e-07,-3.299551825520022304e-07,-3.363004745241560970e-07,-3.426457664963099637e-07,-3.489910584684638303e-07,-3.553363504406176970e-07,-3.616816424127715636e-07,-3.680269343849254303e-07,-3.743722263570792969e-07,-3.807175183292331636e-07,-3.870628103013870302e-07,-3.934081022735408969e-07,-3.997533942456947635e-07 +0.000000000000000000e+00,-7.323008909194571580e-09,-1.464601781838914316e-08,-2.196902672758371391e-08,-2.929203563677828301e-08,-3.661504454597284880e-08,-4.393805345516741459e-08,-5.126106236436198038e-08,-5.858407127355654617e-08,-6.590708018275111196e-08,-7.323008909194567113e-08,-8.055309800114023031e-08,-8.787610691033478948e-08,-9.519911581952934865e-08,-1.025221247287239078e-07,-1.098451336379184670e-07,-1.171681425471130262e-07,-1.244911514563075721e-07,-1.318141603655021180e-07,-1.391371692746966640e-07,-1.464601781838912099e-07,-1.537831870930857559e-07,-1.611061960022803018e-07,-1.684292049114748477e-07,-1.757522138206693937e-07,-1.830752227298639396e-07,-1.903982316390584855e-07,-1.977212405482530315e-07,-2.050442494574475774e-07,-2.123672583666421234e-07,-2.196902672758366693e-07,-2.270132761850312152e-07,-2.343362850942257612e-07,-2.416592940034203071e-07,-2.489823029126148266e-07,-2.563053118218093460e-07,-2.636283207310038655e-07,-2.709513296401983850e-07,-2.782743385493929044e-07,-2.855973474585874239e-07,-2.929203563677819434e-07,-3.002433652769764628e-07,-3.075663741861709823e-07,-3.148893830953655018e-07,-3.222123920045600212e-07,-3.295354009137545407e-07,-3.368584098229490602e-07,-3.441814187321435797e-07,-3.515044276413380991e-07,-3.588274365505326186e-07,-3.661504454597271381e-07,-3.734734543689216575e-07,-3.807964632781161770e-07,-3.881194721873106965e-07,-3.954424810965052159e-07,-4.027654900056997354e-07,-4.100884989148942549e-07,-4.174115078240887743e-07,-4.247345167332832938e-07,-4.320575256424778133e-07,-4.393805345516723327e-07,-4.467035434608668522e-07,-4.540265523700613717e-07,-4.613495612792558911e-07 +0.000000000000000000e+00,-6.360790571505083837e-09,-1.272158114301016767e-08,-1.908237171451525234e-08,-2.544316228602033866e-08,-3.180395285752542498e-08,-3.816474342903051130e-08,-4.452553400053559761e-08,-5.088632457204068393e-08,-5.724711514354577025e-08,-6.360790571505086319e-08,-6.996869628655594951e-08,-7.632948685806103582e-08,-8.269027742956612214e-08,-8.905106800107120846e-08,-9.541185857257629478e-08,-1.017726491440813811e-07,-1.081334397155864674e-07,-1.144942302870915537e-07,-1.208550208585966401e-07,-1.272158114301017264e-07,-1.335766020016068127e-07,-1.399373925731118990e-07,-1.462981831446169853e-07,-1.526589737161220716e-07,-1.590197642876271580e-07,-1.653805548591322443e-07,-1.717413454306373306e-07,-1.781021360021424169e-07,-1.844629265736475032e-07,-1.908237171451525896e-07,-1.971845077166576759e-07,-2.035452982881627622e-07,-2.099060888596678485e-07,-2.162668794311729348e-07,-2.226276700026780212e-07,-2.289884605741831075e-07,-2.353492511456881938e-07,-2.417100417171932801e-07,-2.480708322886983400e-07,-2.544316228602033998e-07,-2.607924134317084597e-07,-2.671532040032135195e-07,-2.735139945747185794e-07,-2.798747851462236392e-07,-2.862355757177286991e-07,-2.925963662892337589e-07,-2.989571568607388188e-07,-3.053179474322438786e-07,-3.116787380037489385e-07,-3.180395285752539983e-07,-3.244003191467590581e-07,-3.307611097182641180e-07,-3.371219002897691778e-07,-3.434826908612742377e-07,-3.498434814327792975e-07,-3.562042720042843574e-07,-3.625650625757894172e-07,-3.689258531472944771e-07,-3.752866437187995369e-07,-3.816474342903045968e-07,-3.880082248618096566e-07,-3.943690154333147165e-07,-4.007298060048197763e-07 +0.000000000000000000e+00,-6.345291972153778140e-09,-1.269058394430755628e-08,-1.903587591646133525e-08,-2.538116788861511587e-08,-3.172645986076889649e-08,-3.807175183292267711e-08,-4.441704380507645773e-08,-5.076233577723023836e-08,-5.710762774938401898e-08,-6.345291972153779298e-08,-6.979821169369156699e-08,-7.614350366584534099e-08,-8.248879563799911499e-08,-8.883408761015288900e-08,-9.517937958230666300e-08,-1.015246715544604370e-07,-1.078699635266142110e-07,-1.142152554987679850e-07,-1.205605474709217723e-07,-1.269058394430755595e-07,-1.332511314152293467e-07,-1.395964233873831340e-07,-1.459417153595369212e-07,-1.522870073316907084e-07,-1.586322993038444957e-07,-1.649775912759982829e-07,-1.713228832481520702e-07,-1.776681752203058574e-07,-1.840134671924596446e-07,-1.903587591646134319e-07,-1.967040511367672191e-07,-2.030493431089210064e-07,-2.093946350810747936e-07,-2.157399270532285808e-07,-2.220852190253823681e-07,-2.284305109975361553e-07,-2.347758029696899426e-07,-2.411210949418437563e-07,-2.474663869139975700e-07,-2.538116788861513837e-07,-2.601569708583051974e-07,-2.665022628304590111e-07,-2.728475548026128248e-07,-2.791928467747666385e-07,-2.855381387469204522e-07,-2.918834307190742659e-07,-2.982287226912280796e-07,-3.045740146633818934e-07,-3.109193066355357071e-07,-3.172645986076895208e-07,-3.236098905798433345e-07,-3.299551825519971482e-07,-3.363004745241509619e-07,-3.426457664963047756e-07,-3.489910584684585893e-07,-3.553363504406124030e-07,-3.616816424127662167e-07,-3.680269343849200304e-07,-3.743722263570738441e-07,-3.807175183292276579e-07,-3.870628103013814716e-07,-3.934081022735352853e-07,-3.997533942456890990e-07 +0.000000000000000000e+00,-7.342542375102090726e-09,-1.468508475020418145e-08,-2.202762712530627301e-08,-2.937016950040836621e-08,-3.671271187551046273e-08,-4.405525425061255925e-08,-5.139779662571465576e-08,-5.874033900081675228e-08,-6.608288137591884880e-08,-7.342542375102095193e-08,-8.076796612612305506e-08,-8.811050850122515820e-08,-9.545305087632726133e-08,-1.027955932514293645e-07,-1.101381356265314676e-07,-1.174806780016335707e-07,-1.248232203767356739e-07,-1.321657627518377770e-07,-1.395083051269398801e-07,-1.468508475020419833e-07,-1.541933898771440864e-07,-1.615359322522461895e-07,-1.688784746273482927e-07,-1.762210170024503958e-07,-1.835635593775524989e-07,-1.909061017526546021e-07,-1.982486441277567052e-07,-2.055911865028588083e-07,-2.129337288779609115e-07,-2.202762712530630146e-07,-2.276188136281651177e-07,-2.349613560032672209e-07,-2.423038983783693505e-07,-2.496464407534715066e-07,-2.569889831285736626e-07,-2.643315255036758187e-07,-2.716740678787779748e-07,-2.790166102538801308e-07,-2.863591526289822869e-07,-2.937016950040844430e-07,-3.010442373791865991e-07,-3.083867797542887551e-07,-3.157293221293909112e-07,-3.230718645044930673e-07,-3.304144068795952234e-07,-3.377569492546973794e-07,-3.450994916297995355e-07,-3.524420340049016916e-07,-3.597845763800038477e-07,-3.671271187551060037e-07,-3.744696611302081598e-07,-3.818122035053103159e-07,-3.891547458804124719e-07,-3.964972882555146280e-07,-4.038398306306167841e-07,-4.111823730057189402e-07,-4.185249153808210962e-07,-4.258674577559232523e-07,-4.332100001310254084e-07,-4.405525425061275645e-07,-4.478950848812297205e-07,-4.552376272563318766e-07,-4.625801696314340327e-07 +0.000000000000000000e+00,-4.308827514988399715e-09,-8.617655029976799429e-09,-1.292648254496519997e-08,-1.723531005995360217e-08,-2.154413757494200436e-08,-2.585296508993040656e-08,-3.016179260491881206e-08,-3.447062011990721757e-08,-3.877944763489562307e-08,-4.308827514988402858e-08,-4.739710266487243408e-08,-5.170593017986083959e-08,-5.601475769484924509e-08,-6.032358520983765060e-08,-6.463241272482605610e-08,-6.894124023981446161e-08,-7.325006775480286711e-08,-7.755889526979127262e-08,-8.186772278477967812e-08,-8.617655029976808363e-08,-9.048537781475648913e-08,-9.479420532974489464e-08,-9.910303284473330014e-08,-1.034118603597217056e-07,-1.077206878747101112e-07,-1.120295153896985167e-07,-1.163383429046869222e-07,-1.206471704196753277e-07,-1.249559979346637332e-07,-1.292648254496521387e-07,-1.335736529646405442e-07,-1.378824804796289497e-07,-1.421913079946173552e-07,-1.465001355096057607e-07,-1.508089630245941662e-07,-1.551177905395825717e-07,-1.594266180545709772e-07,-1.637354455695593827e-07,-1.680442730845477882e-07,-1.723531005995361937e-07,-1.766619281145245992e-07,-1.809707556295130047e-07,-1.852795831445014102e-07,-1.895884106594898157e-07,-1.938972381744782213e-07,-1.982060656894666268e-07,-2.025148932044550323e-07,-2.068237207194434378e-07,-2.111325482344318433e-07,-2.154413757494202488e-07,-2.197502032644086543e-07,-2.240590307793970598e-07,-2.283678582943854653e-07,-2.326766858093738708e-07,-2.369855133243622763e-07,-2.412943408393507083e-07,-2.456031683543391667e-07,-2.499119958693276252e-07,-2.542208233843160836e-07,-2.585296508993045421e-07,-2.628384784142930005e-07,-2.671473059292814589e-07,-2.714561334442699174e-07 +0.000000000000000000e+00,-4.026552183940916026e-09,-8.053104367881832052e-09,-1.207965655182274725e-08,-1.610620873576366080e-08,-2.013276091970457434e-08,-2.415931310364548788e-08,-2.818586528758640143e-08,-3.221241747152731497e-08,-3.623896965546823183e-08,-4.026552183940914868e-08,-4.429207402335006553e-08,-4.831862620729098239e-08,-5.234517839123189924e-08,-5.637173057517281609e-08,-6.039828275911373294e-08,-6.442483494305464318e-08,-6.845138712699555342e-08,-7.247793931093646365e-08,-7.650449149487737389e-08,-8.053104367881828412e-08,-8.455759586275919436e-08,-8.858414804670010459e-08,-9.261070023064101483e-08,-9.663725241458192507e-08,-1.006638045985228353e-07,-1.046903567824637455e-07,-1.087169089664046558e-07,-1.127434611503455660e-07,-1.167700133342864762e-07,-1.207965655182273865e-07,-1.248231177021682967e-07,-1.288496698861092070e-07,-1.328762220700501172e-07,-1.369027742539910274e-07,-1.409293264379319377e-07,-1.449558786218728479e-07,-1.489824308058137581e-07,-1.530089829897546684e-07,-1.570355351736955786e-07,-1.610620873576364888e-07,-1.650886395415773991e-07,-1.691151917255183093e-07,-1.731417439094592195e-07,-1.771682960934001298e-07,-1.811948482773410400e-07,-1.852214004612819503e-07,-1.892479526452228605e-07,-1.932745048291637707e-07,-1.973010570131046810e-07,-2.013276091970455912e-07,-2.053541613809865014e-07,-2.093807135649274117e-07,-2.134072657488683219e-07,-2.174338179328092321e-07,-2.214603701167501424e-07,-2.254869223006910526e-07,-2.295134744846319628e-07,-2.335400266685728731e-07,-2.375665788525137833e-07,-2.415931310364547200e-07,-2.456196832203956567e-07,-2.496462354043365934e-07,-2.536727875882775301e-07 +0.000000000000000000e+00,-4.071345218863542568e-09,-8.142690437727085136e-09,-1.221403565659062770e-08,-1.628538087545417027e-08,-2.035672609431771449e-08,-2.442807131318125872e-08,-2.849941653204480294e-08,-3.257076175090834716e-08,-3.664210696977189138e-08,-4.071345218863543561e-08,-4.478479740749897983e-08,-4.885614262636252405e-08,-5.292748784522606827e-08,-5.699883306408961249e-08,-6.107017828295315672e-08,-6.514152350181670756e-08,-6.921286872068025840e-08,-7.328421393954380924e-08,-7.735555915840736008e-08,-8.142690437727091092e-08,-8.549824959613446176e-08,-8.956959481499801260e-08,-9.364094003386156343e-08,-9.771228525272511427e-08,-1.017836304715886651e-07,-1.058549756904522160e-07,-1.099263209093157668e-07,-1.139976661281793176e-07,-1.180690113470428685e-07,-1.221403565659064193e-07,-1.262117017847699834e-07,-1.302830470036335475e-07,-1.343543922224971115e-07,-1.384257374413606756e-07,-1.424970826602242397e-07,-1.465684278790878038e-07,-1.506397730979513678e-07,-1.547111183168149319e-07,-1.587824635356784960e-07,-1.628538087545420601e-07,-1.669251539734056241e-07,-1.709964991922691882e-07,-1.750678444111327523e-07,-1.791391896299963164e-07,-1.832105348488598804e-07,-1.872818800677234445e-07,-1.913532252865870086e-07,-1.954245705054505727e-07,-1.994959157243141367e-07,-2.035672609431777008e-07,-2.076386061620412649e-07,-2.117099513809048290e-07,-2.157812965997683930e-07,-2.198526418186319571e-07,-2.239239870374955212e-07,-2.279953322563590853e-07,-2.320666774752226493e-07,-2.361380226940862134e-07,-2.402093679129497775e-07,-2.442807131318133151e-07,-2.483520583506768527e-07,-2.524234035695403903e-07,-2.564947487884039279e-07 +0.000000000000000000e+00,-5.298208974353530777e-09,-1.059641794870706155e-08,-1.589462692306059068e-08,-2.119283589741411980e-08,-2.649104487176764892e-08,-3.178925384612118136e-08,-3.708746282047471379e-08,-4.238567179482824622e-08,-4.768388076918177865e-08,-5.298208974353531108e-08,-5.828029871788884352e-08,-6.357850769224237595e-08,-6.887671666659591500e-08,-7.417492564094945405e-08,-7.947313461530299309e-08,-8.477134358965653214e-08,-9.006955256401007119e-08,-9.536776153836361024e-08,-1.006659705127171493e-07,-1.059641794870706883e-07,-1.112623884614242274e-07,-1.165605974357777664e-07,-1.218588064101313055e-07,-1.271570153844848313e-07,-1.324552243588383571e-07,-1.377534333331918829e-07,-1.430516423075454087e-07,-1.483498512818989346e-07,-1.536480602562524604e-07,-1.589462692306059862e-07,-1.642444782049595120e-07,-1.695426871793130378e-07,-1.748408961536665636e-07,-1.801391051280200894e-07,-1.854373141023736153e-07,-1.907355230767271411e-07,-1.960337320510806669e-07,-2.013319410254341927e-07,-2.066301499997877185e-07,-2.119283589741412443e-07,-2.172265679484947701e-07,-2.225247769228482960e-07,-2.278229858972018218e-07,-2.331211948715553476e-07,-2.384194038459088734e-07,-2.437176128202623992e-07,-2.490158217946159250e-07,-2.543140307689694508e-07,-2.596122397433229767e-07,-2.649104487176765025e-07,-2.702086576920300283e-07,-2.755068666663835541e-07,-2.808050756407370799e-07,-2.861032846150906057e-07,-2.914014935894441315e-07,-2.966997025637976574e-07,-3.019979115381511832e-07,-3.072961205125047090e-07,-3.125943294868582348e-07,-3.178925384612117606e-07,-3.231907474355652864e-07,-3.284889564099188122e-07,-3.337871653842723381e-07 +0.000000000000000000e+00,-2.119465504168328683e-09,-4.238931008336657365e-09,-6.358396512504986048e-09,-8.477862016673314730e-09,-1.059732752084164341e-08,-1.271679302500997210e-08,-1.483625852917830078e-08,-1.695572403334662946e-08,-1.907518953751495980e-08,-2.119465504168329013e-08,-2.331412054585162047e-08,-2.543358605001995081e-08,-2.755305155418828114e-08,-2.967251705835661148e-08,-3.179198256252494182e-08,-3.391144806669327215e-08,-3.603091357086160249e-08,-3.815037907502993283e-08,-4.026984457919826317e-08,-4.238931008336659350e-08,-4.450877558753492384e-08,-4.662824109170325418e-08,-4.874770659587158451e-08,-5.086717210003991485e-08,-5.298663760420824519e-08,-5.510610310837657552e-08,-5.722556861254490586e-08,-5.934503411671323620e-08,-6.146449962088156653e-08,-6.358396512504989687e-08,-6.570343062921822721e-08,-6.782289613338655754e-08,-6.994236163755488788e-08,-7.206182714172321822e-08,-7.418129264589154856e-08,-7.630075815005987889e-08,-7.842022365422820923e-08,-8.053968915839653957e-08,-8.265915466256486990e-08,-8.477862016673320024e-08,-8.689808567090153058e-08,-8.901755117506986091e-08,-9.113701667923819125e-08,-9.325648218340652159e-08,-9.537594768757485192e-08,-9.749541319174318226e-08,-9.961487869591151260e-08,-1.017343442000798429e-07,-1.038538097042481733e-07,-1.059732752084165036e-07,-1.080927407125848339e-07,-1.102122062167531643e-07,-1.123316717209214946e-07,-1.144511372250898250e-07,-1.165706027292581553e-07,-1.186900682334264856e-07,-1.208095337375948160e-07,-1.229289992417631331e-07,-1.250484647459314502e-07,-1.271679302500997673e-07,-1.292873957542680844e-07,-1.314068612584364015e-07,-1.335263267626047186e-07 +0.000000000000000000e+00,-4.057028258939103748e-09,-8.114056517878207496e-09,-1.217108477681731124e-08,-1.622811303575641499e-08,-2.028514129469551874e-08,-2.434216955363462249e-08,-2.839919781257372623e-08,-3.245622607151282998e-08,-3.651325433045193042e-08,-4.057028258939103086e-08,-4.462731084833013130e-08,-4.868433910726923174e-08,-5.274136736620833218e-08,-5.679839562514743262e-08,-6.085542388408653306e-08,-6.491245214302563350e-08,-6.896948040196473393e-08,-7.302650866090383437e-08,-7.708353691984293481e-08,-8.114056517878203525e-08,-8.519759343772113569e-08,-8.925462169666023613e-08,-9.331164995559933657e-08,-9.736867821453843701e-08,-1.014257064734775374e-07,-1.054827347324166379e-07,-1.095397629913557383e-07,-1.135967912502948388e-07,-1.176538195092339392e-07,-1.217108477681730396e-07,-1.257678760271121401e-07,-1.298249042860512405e-07,-1.338819325449903410e-07,-1.379389608039294414e-07,-1.419959890628685418e-07,-1.460530173218076423e-07,-1.501100455807467427e-07,-1.541670738396858432e-07,-1.582241020986249436e-07,-1.622811303575640440e-07,-1.663381586165031445e-07,-1.703951868754422449e-07,-1.744522151343813454e-07,-1.785092433933204458e-07,-1.825662716522595462e-07,-1.866232999111986467e-07,-1.906803281701377471e-07,-1.947373564290768475e-07,-1.987943846880159480e-07,-2.028514129469550484e-07,-2.069084412058941489e-07,-2.109654694648332493e-07,-2.150224977237723497e-07,-2.190795259827114502e-07,-2.231365542416505506e-07,-2.271935825005896511e-07,-2.312506107595287515e-07,-2.353076390184678519e-07,-2.393646672774069259e-07,-2.434216955363460263e-07,-2.474787237952851268e-07,-2.515357520542242272e-07,-2.555927803131633277e-07 +0.000000000000000000e+00,-5.301630404219432326e-09,-1.060326080843886465e-08,-1.590489121265829615e-08,-2.120652161687772599e-08,-2.650815202109715584e-08,-3.180978242531658568e-08,-3.711141282953601884e-08,-4.241304323375545199e-08,-4.771467363797488514e-08,-5.301630404219431829e-08,-5.831793444641375145e-08,-6.361956485063318460e-08,-6.892119525485261775e-08,-7.422282565907205091e-08,-7.952445606329148406e-08,-8.482608646751091721e-08,-9.012771687173035036e-08,-9.542934727594978352e-08,-1.007309776801692167e-07,-1.060326080843886498e-07,-1.113342384886080830e-07,-1.166358688928275161e-07,-1.219374992970469625e-07,-1.272391297012663957e-07,-1.325407601054858288e-07,-1.378423905097052620e-07,-1.431440209139246951e-07,-1.484456513181441283e-07,-1.537472817223635614e-07,-1.590489121265829946e-07,-1.643505425308024277e-07,-1.696521729350218609e-07,-1.749538033392412940e-07,-1.802554337434607272e-07,-1.855570641476801604e-07,-1.908586945518995935e-07,-1.961603249561190267e-07,-2.014619553603384598e-07,-2.067635857645578930e-07,-2.120652161687773261e-07,-2.173668465729967593e-07,-2.226684769772161924e-07,-2.279701073814356256e-07,-2.332717377856550587e-07,-2.385733681898744919e-07,-2.438749985940939250e-07,-2.491766289983133582e-07,-2.544782594025327913e-07,-2.597798898067522245e-07,-2.650815202109716576e-07,-2.703831506151910908e-07,-2.756847810194105239e-07,-2.809864114236299571e-07,-2.862880418278493903e-07,-2.915896722320688234e-07,-2.968913026362882566e-07,-3.021929330405076897e-07,-3.074945634447271229e-07,-3.127961938489465560e-07,-3.180978242531659892e-07,-3.233994546573854223e-07,-3.287010850616048555e-07,-3.340027154658242886e-07 +0.000000000000000000e+00,-4.026552183941217947e-09,-8.053104367882435894e-09,-1.207965655182365384e-08,-1.610620873576487179e-08,-2.013276091970608973e-08,-2.415931310364730768e-08,-2.818586528758852563e-08,-3.221241747152974357e-08,-3.623896965547095821e-08,-4.026552183941217285e-08,-4.429207402335338749e-08,-4.831862620729460213e-08,-5.234517839123581677e-08,-5.637173057517703140e-08,-6.039828275911824604e-08,-6.442483494305946068e-08,-6.845138712700067532e-08,-7.247793931094188996e-08,-7.650449149488310459e-08,-8.053104367882431923e-08,-8.455759586276553387e-08,-8.858414804670674851e-08,-9.261070023064796315e-08,-9.663725241458917779e-08,-1.006638045985303924e-07,-1.046903567824716071e-07,-1.087169089664128217e-07,-1.127434611503540363e-07,-1.167700133342952510e-07,-1.207965655182364656e-07,-1.248231177021776670e-07,-1.288496698861188684e-07,-1.328762220700600698e-07,-1.369027742540012712e-07,-1.409293264379424726e-07,-1.449558786218836740e-07,-1.489824308058248754e-07,-1.530089829897660768e-07,-1.570355351737072782e-07,-1.610620873576484796e-07,-1.650886395415896810e-07,-1.691151917255308825e-07,-1.731417439094720839e-07,-1.771682960934132853e-07,-1.811948482773544867e-07,-1.852214004612956881e-07,-1.892479526452368895e-07,-1.932745048291780909e-07,-1.973010570131192923e-07,-2.013276091970604937e-07,-2.053541613810016951e-07,-2.093807135649428965e-07,-2.134072657488840979e-07,-2.174338179328252993e-07,-2.214603701167665007e-07,-2.254869223007077021e-07,-2.295134744846489035e-07,-2.335400266685901049e-07,-2.375665788525313063e-07,-2.415931310364725077e-07,-2.456196832204137091e-07,-2.496462354043549105e-07,-2.536727875882961119e-07 +0.000000000000000000e+00,-4.057028258939293999e-09,-8.114056517878587999e-09,-1.217108477681788200e-08,-1.622811303575717600e-08,-2.028514129469646834e-08,-2.434216955363576069e-08,-2.839919781257505303e-08,-3.245622607151434538e-08,-3.651325433045363772e-08,-4.057028258939293007e-08,-4.462731084833222241e-08,-4.868433910727151476e-08,-5.274136736621080710e-08,-5.679839562515009945e-08,-6.085542388408939179e-08,-6.491245214302867752e-08,-6.896948040196796325e-08,-7.302650866090724897e-08,-7.708353691984653470e-08,-8.114056517878582043e-08,-8.519759343772510616e-08,-8.925462169666439189e-08,-9.331164995560367761e-08,-9.736867821454296334e-08,-1.014257064734822491e-07,-1.054827347324215348e-07,-1.095397629913608205e-07,-1.135967912503001063e-07,-1.176538195092393920e-07,-1.217108477681786777e-07,-1.257678760271179634e-07,-1.298249042860572492e-07,-1.338819325449965349e-07,-1.379389608039358206e-07,-1.419959890628751063e-07,-1.460530173218143921e-07,-1.501100455807536778e-07,-1.541670738396929635e-07,-1.582241020986322493e-07,-1.622811303575715350e-07,-1.663381586165108207e-07,-1.703951868754501064e-07,-1.744522151343893922e-07,-1.785092433933286779e-07,-1.825662716522679636e-07,-1.866232999112072493e-07,-1.906803281701465351e-07,-1.947373564290858208e-07,-1.987943846880251065e-07,-2.028514129469643923e-07,-2.069084412059036780e-07,-2.109654694648429637e-07,-2.150224977237822494e-07,-2.190795259827215352e-07,-2.231365542416608209e-07,-2.271935825006001066e-07,-2.312506107595393923e-07,-2.353076390184786781e-07,-2.393646672774179373e-07,-2.434216955363571966e-07,-2.474787237952964559e-07,-2.515357520542357151e-07,-2.555927803131749744e-07 +0.000000000000000000e+00,-5.298208974353533259e-09,-1.059641794870706652e-08,-1.589462692306060060e-08,-2.119283589741413634e-08,-2.649104487176767209e-08,-3.178925384612120783e-08,-3.708746282047474688e-08,-4.238567179482828592e-08,-4.768388076918182497e-08,-5.298208974353536402e-08,-5.828029871788890307e-08,-6.357850769224244212e-08,-6.887671666659598117e-08,-7.417492564094952022e-08,-7.947313461530305927e-08,-8.477134358965659832e-08,-9.006955256401013737e-08,-9.536776153836367642e-08,-1.006659705127172155e-07,-1.059641794870707545e-07,-1.112623884614242936e-07,-1.165605974357778326e-07,-1.218588064101313584e-07,-1.271570153844848842e-07,-1.324552243588384101e-07,-1.377534333331919359e-07,-1.430516423075454617e-07,-1.483498512818989875e-07,-1.536480602562525133e-07,-1.589462692306060391e-07,-1.642444782049595649e-07,-1.695426871793130908e-07,-1.748408961536666166e-07,-1.801391051280201424e-07,-1.854373141023736682e-07,-1.907355230767271940e-07,-1.960337320510807198e-07,-2.013319410254342456e-07,-2.066301499997877715e-07,-2.119283589741412973e-07,-2.172265679484948231e-07,-2.225247769228483489e-07,-2.278229858972018747e-07,-2.331211948715554005e-07,-2.384194038459089263e-07,-2.437176128202624522e-07,-2.490158217946159780e-07,-2.543140307689695038e-07,-2.596122397433230296e-07,-2.649104487176765554e-07,-2.702086576920300812e-07,-2.755068666663836070e-07,-2.808050756407371329e-07,-2.861032846150906587e-07,-2.914014935894441845e-07,-2.966997025637977103e-07,-3.019979115381512361e-07,-3.072961205125047619e-07,-3.125943294868582877e-07,-3.178925384612118136e-07,-3.231907474355653394e-07,-3.284889564099188652e-07,-3.337871653842723910e-07 +0.000000000000000000e+00,-2.119465504168342331e-09,-4.238931008336684662e-09,-6.358396512505027407e-09,-8.477862016673370978e-09,-1.059732752084171455e-08,-1.271679302501005812e-08,-1.483625852917840169e-08,-1.695572403334674527e-08,-1.907518953751508884e-08,-2.119465504168343241e-08,-2.331412054585177598e-08,-2.543358605002011955e-08,-2.755305155418846312e-08,-2.967251705835680670e-08,-3.179198256252515358e-08,-3.391144806669349715e-08,-3.603091357086184072e-08,-3.815037907503018429e-08,-4.026984457919852786e-08,-4.238931008336687144e-08,-4.450877558753521501e-08,-4.662824109170355858e-08,-4.874770659587190215e-08,-5.086717210004024572e-08,-5.298663760420858929e-08,-5.510610310837693287e-08,-5.722556861254527644e-08,-5.934503411671362001e-08,-6.146449962088196358e-08,-6.358396512505030715e-08,-6.570343062921865072e-08,-6.782289613338699430e-08,-6.994236163755533787e-08,-7.206182714172368144e-08,-7.418129264589202501e-08,-7.630075815006036858e-08,-7.842022365422871215e-08,-8.053968915839705573e-08,-8.265915466256539930e-08,-8.477862016673374287e-08,-8.689808567090208644e-08,-8.901755117507043001e-08,-9.113701667923877359e-08,-9.325648218340711716e-08,-9.537594768757546073e-08,-9.749541319174380430e-08,-9.961487869591214787e-08,-1.017343442000804914e-07,-1.038538097042488350e-07,-1.059732752084171786e-07,-1.080927407125855222e-07,-1.102122062167538657e-07,-1.123316717209222093e-07,-1.144511372250905529e-07,-1.165706027292588964e-07,-1.186900682334272400e-07,-1.208095337375955836e-07,-1.229289992417639272e-07,-1.250484647459322707e-07,-1.271679302501006143e-07,-1.292873957542689579e-07,-1.314068612584373014e-07,-1.335263267626056450e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055202767e-09,-4.386641824110405533e-09,-6.579962736165608300e-09,-8.773283648220811067e-09,-1.096660456027601383e-08,-1.315992547233121660e-08,-1.535324638438642102e-08,-1.754656729644162544e-08,-1.973988820849682986e-08,-2.193320912055203428e-08,-2.412653003260723871e-08,-2.631985094466244313e-08,-2.851317185671764755e-08,-3.070649276877285528e-08,-3.289981368082806301e-08,-3.509313459288327074e-08,-3.728645550493847847e-08,-3.947977641699368620e-08,-4.167309732904889393e-08,-4.386641824110410166e-08,-4.605973915315930939e-08,-4.825306006521451712e-08,-5.044638097726972485e-08,-5.263970188932493258e-08,-5.483302280138014031e-08,-5.702634371343534804e-08,-5.921966462549055576e-08,-6.141298553754576349e-08,-6.360630644960097784e-08,-6.579962736165619219e-08,-6.799294827371140654e-08,-7.018626918576662088e-08,-7.237959009782183523e-08,-7.457291100987704958e-08,-7.676623192193226393e-08,-7.895955283398747827e-08,-8.115287374604269262e-08,-8.334619465809790697e-08,-8.553951557015312131e-08,-8.773283648220833566e-08,-8.992615739426355001e-08,-9.211947830631876436e-08,-9.431279921837397870e-08,-9.650612013042919305e-08,-9.869944104248440740e-08,-1.008927619545396217e-07,-1.030860828665948361e-07,-1.052794037786500504e-07,-1.074727246907052648e-07,-1.096660456027604791e-07,-1.118593665148156935e-07,-1.140526874268709078e-07,-1.162460083389261222e-07,-1.184393292509813365e-07,-1.206326501630365509e-07,-1.228259710750917652e-07,-1.250192919871469796e-07,-1.272126128992021939e-07,-1.294059338112574083e-07,-1.315992547233126226e-07,-1.337925756353678370e-07,-1.359858965474230513e-07,-1.381792174594782656e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.230509586221388522e-09,-4.461019172442777043e-09,-6.691528758664165151e-09,-8.922038344885552432e-09,-1.115254793110693971e-08,-1.338305751732832699e-08,-1.561356710354971262e-08,-1.784407668977109825e-08,-2.007458627599248387e-08,-2.230509586221386950e-08,-2.453560544843525513e-08,-2.676611503465664075e-08,-2.899662462087802638e-08,-3.122713420709941201e-08,-3.345764379332079763e-08,-3.568815337954218326e-08,-3.791866296576356889e-08,-4.014917255198495451e-08,-4.237968213820634014e-08,-4.461019172442772577e-08,-4.684070131064911139e-08,-4.907121089687049702e-08,-5.130172048309188264e-08,-5.353223006931326827e-08,-5.576273965553465390e-08,-5.799324924175603952e-08,-6.022375882797742515e-08,-6.245426841419881078e-08,-6.468477800042019640e-08,-6.691528758664158203e-08,-6.914579717286296766e-08,-7.137630675908435328e-08,-7.360681634530573891e-08,-7.583732593152712454e-08,-7.806783551774851016e-08,-8.029834510396989579e-08,-8.252885469019128142e-08,-8.475936427641266704e-08,-8.698987386263405267e-08,-8.922038344885543830e-08,-9.145089303507682392e-08,-9.368140262129820955e-08,-9.591191220751959517e-08,-9.814242179374098080e-08,-1.003729313799623664e-07,-1.026034409661837521e-07,-1.048339505524051377e-07,-1.070644601386265233e-07,-1.092949697248479089e-07,-1.115254793110692946e-07,-1.137559888972906802e-07,-1.159864984835120658e-07,-1.182170080697334514e-07,-1.204475176559548503e-07,-1.226780272421762492e-07,-1.249085368283976480e-07,-1.271390464146190469e-07,-1.293695560008404457e-07,-1.316000655870618446e-07,-1.338305751732832435e-07,-1.360610847595046423e-07,-1.382915943457260412e-07,-1.405221039319474401e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.193320912055430655e-09,-4.386641824110861310e-09,-6.579962736166291551e-09,-8.773283648221720966e-09,-1.096660456027715038e-08,-1.315992547233257979e-08,-1.535324638438800921e-08,-1.754656729644343862e-08,-1.973988820849886804e-08,-2.193320912055429745e-08,-2.412653003260972686e-08,-2.631985094466515628e-08,-2.851317185672058569e-08,-3.070649276877601842e-08,-3.289981368083145114e-08,-3.509313459288688386e-08,-3.728645550494231659e-08,-3.947977641699774931e-08,-4.167309732905318203e-08,-4.386641824110861475e-08,-4.605973915316404748e-08,-4.825306006521948020e-08,-5.044638097727491292e-08,-5.263970188933034565e-08,-5.483302280138577837e-08,-5.702634371344121109e-08,-5.921966462549664381e-08,-6.141298553755207654e-08,-6.360630644960751588e-08,-6.579962736166295522e-08,-6.799294827371839456e-08,-7.018626918577383390e-08,-7.237959009782927324e-08,-7.457291100988471258e-08,-7.676623192194015192e-08,-7.895955283399559126e-08,-8.115287374605103060e-08,-8.334619465810646994e-08,-8.553951557016190928e-08,-8.773283648221734862e-08,-8.992615739427278796e-08,-9.211947830632822730e-08,-9.431279921838366664e-08,-9.650612013043910598e-08,-9.869944104249454532e-08,-1.008927619545499847e-07,-1.030860828666054240e-07,-1.052794037786608633e-07,-1.074727246907163027e-07,-1.096660456027717420e-07,-1.118593665148271814e-07,-1.140526874268826207e-07,-1.162460083389380600e-07,-1.184393292509934994e-07,-1.206326501630489387e-07,-1.228259710751043913e-07,-1.250192919871598439e-07,-1.272126128992152965e-07,-1.294059338112707490e-07,-1.315992547233262016e-07,-1.337925756353816542e-07,-1.359858965474371068e-07,-1.381792174594925593e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_y.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_y.csv new file mode 100644 index 000000000..0f361179b --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_y.csv @@ -0,0 +1,2520 @@ +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.997808671429564493e-09,7.995617342859128986e-09,1.199342601428869348e-08,1.599123468571825797e-08,1.998904335714782081e-08,2.398685202857738365e-08,2.798466070000694649e-08,3.198246937143650933e-08,3.598027804286607217e-08,3.997808671429563500e-08,4.397589538572519784e-08,4.797370405715476068e-08,5.197151272858432352e-08,5.596932140001388636e-08,5.996713007144344920e-08,6.396493874287300542e-08,6.796274741430256164e-08,7.196055608573211786e-08,7.595836475716167408e-08,7.995617342859123031e-08,8.395398210002078653e-08,8.795179077145034275e-08,9.194959944287989897e-08,9.594740811430945519e-08,9.994521678573901141e-08,1.039430254571685676e-07,1.079408341285981239e-07,1.119386428000276801e-07,1.159364514714572363e-07,1.199342601428867925e-07,1.239320688143163620e-07,1.279298774857459314e-07,1.319276861571755009e-07,1.359254948286050703e-07,1.399233035000346398e-07,1.439211121714642093e-07,1.479189208428937787e-07,1.519167295143233482e-07,1.559145381857529176e-07,1.599123468571824871e-07,1.639101555286120565e-07,1.679079642000416260e-07,1.719057728714711954e-07,1.759035815429007649e-07,1.799013902143303344e-07,1.838991988857599038e-07,1.878970075571894733e-07,1.918948162286190427e-07,1.958926249000486122e-07,1.998904335714781816e-07,2.038882422429077511e-07,2.078860509143373206e-07,2.118838595857668900e-07,2.158816682571964595e-07,2.198794769286260289e-07,2.238772856000555984e-07,2.278750942714851678e-07,2.318729029429147373e-07,2.358707116143443067e-07,2.398685202857738497e-07,2.438663289572033927e-07,2.478641376286329357e-07,2.518619463000624787e-07 +0.000000000000000000e+00,6.090061733240407684e-09,1.218012346648081537e-08,1.827018519972122388e-08,2.436024693296163404e-08,3.045030866620204421e-08,3.654037039944245437e-08,4.263043213268286454e-08,4.872049386592327471e-08,5.481055559916368487e-08,6.090061733240408842e-08,6.699067906564449197e-08,7.308074079888489551e-08,7.917080253212529906e-08,8.526086426536570261e-08,9.135092599860610616e-08,9.744098773184650971e-08,1.035310494650869133e-07,1.096211111983273168e-07,1.157111729315677203e-07,1.218012346648081239e-07,1.278912963980485274e-07,1.339813581312889310e-07,1.400714198645293345e-07,1.461614815977697381e-07,1.522515433310101416e-07,1.583416050642505452e-07,1.644316667974909487e-07,1.705217285307313523e-07,1.766117902639717558e-07,1.827018519972121594e-07,1.887919137304525629e-07,1.948819754636929665e-07,2.009720371969333700e-07,2.070620989301737736e-07,2.131521606634141771e-07,2.192422223966545807e-07,2.253322841298949842e-07,2.314223458631353878e-07,2.375124075963757913e-07,2.436024693296161949e-07,2.496925310628565984e-07,2.557825927960970019e-07,2.618726545293374055e-07,2.679627162625778090e-07,2.740527779958182126e-07,2.801428397290586161e-07,2.862329014622990197e-07,2.923229631955394232e-07,2.984130249287798268e-07,3.045030866620202303e-07,3.105931483952606339e-07,3.166832101285010374e-07,3.227732718617414410e-07,3.288633335949818445e-07,3.349533953282222481e-07,3.410434570614626516e-07,3.471335187947030552e-07,3.532235805279434587e-07,3.593136422611838623e-07,3.654037039944242658e-07,3.714937657276646694e-07,3.775838274609050729e-07,3.836738891941454765e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.183709370682567756e-09,1.236741874136513551e-08,1.855112811204770161e-08,2.473483748273026771e-08,3.091854685341283381e-08,3.710225622409540322e-08,4.328596559477797263e-08,4.946967496546054204e-08,5.565338433614311145e-08,6.183709370682568086e-08,6.802080307750825027e-08,7.420451244819081968e-08,8.038822181887338909e-08,8.657193118955595850e-08,9.275564056023852791e-08,9.893934993092109732e-08,1.051230593016036667e-07,1.113067686722862361e-07,1.174904780429688056e-07,1.236741874136513882e-07,1.298578967843339708e-07,1.360416061550165535e-07,1.422253155256991361e-07,1.484090248963817188e-07,1.545927342670643014e-07,1.607764436377468841e-07,1.669601530084294667e-07,1.731438623791120494e-07,1.793275717497946320e-07,1.855112811204772146e-07,1.916949904911597973e-07,1.978786998618423799e-07,2.040624092325249626e-07,2.102461186032075452e-07,2.164298279738901279e-07,2.226135373445727105e-07,2.287972467152552932e-07,2.349809560859378758e-07,2.411646654566204849e-07,2.473483748273030940e-07,2.535320841979857031e-07,2.597157935686683123e-07,2.658995029393509214e-07,2.720832123100335305e-07,2.782669216807161396e-07,2.844506310513987487e-07,2.906343404220813578e-07,2.968180497927639669e-07,3.030017591634465761e-07,3.091854685341291852e-07,3.153691779048117943e-07,3.215528872754944034e-07,3.277365966461770125e-07,3.339203060168596216e-07,3.401040153875422308e-07,3.462877247582248399e-07,3.524714341289074490e-07,3.586551434995900581e-07,3.648388528702726672e-07,3.710225622409552763e-07,3.772062716116378854e-07,3.833899809823204946e-07,3.895736903530031037e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.934437005969254247e-09,3.868874011938508494e-09,5.803311017907762741e-09,7.737748023877016988e-09,9.672185029846271236e-09,1.160662203581552548e-08,1.354105904178477973e-08,1.547549604775403398e-08,1.740993305372328657e-08,1.934437005969253916e-08,2.127880706566179176e-08,2.321324407163104435e-08,2.514768107760029694e-08,2.708211808356954953e-08,2.901655508953880213e-08,3.095099209550805472e-08,3.288542910147730731e-08,3.481986610744655990e-08,3.675430311341581250e-08,3.868874011938506509e-08,4.062317712535431768e-08,4.255761413132357028e-08,4.449205113729282287e-08,4.642648814326207546e-08,4.836092514923132805e-08,5.029536215520058065e-08,5.222979916116983324e-08,5.416423616713908583e-08,5.609867317310833842e-08,5.803311017907759102e-08,5.996754718504683699e-08,6.190198419101608297e-08,6.383642119698532894e-08,6.577085820295457492e-08,6.770529520892382089e-08,6.963973221489306687e-08,7.157416922086231284e-08,7.350860622683155882e-08,7.544304323280080479e-08,7.737748023877005077e-08,7.931191724473929675e-08,8.124635425070854272e-08,8.318079125667778870e-08,8.511522826264703467e-08,8.704966526861628065e-08,8.898410227458552662e-08,9.091853928055477260e-08,9.285297628652401857e-08,9.478741329249326455e-08,9.672185029846251052e-08,9.865628730443175650e-08,1.005907243104010025e-07,1.025251613163702484e-07,1.044595983223394944e-07,1.063940353283087404e-07,1.083284723342779864e-07,1.102629093402472324e-07,1.121973463462164783e-07,1.141317833521857243e-07,1.160662203581549703e-07,1.180006573641242163e-07,1.199350943700934622e-07,1.218695313760627082e-07 +0.000000000000000000e+00,4.317446314641779137e-09,8.634892629283558274e-09,1.295233894392533824e-08,1.726978525856711986e-08,2.158723157320890148e-08,2.590467788785068309e-08,3.022212420249246802e-08,3.453957051713425295e-08,3.885701683177603788e-08,4.317446314641782280e-08,4.749190946105960773e-08,5.180935577570139266e-08,5.612680209034317758e-08,6.044424840498496251e-08,6.476169471962674744e-08,6.907914103426853237e-08,7.339658734891031729e-08,7.771403366355210222e-08,8.203147997819388715e-08,8.634892629283567208e-08,9.066637260747745700e-08,9.498381892211924193e-08,9.930126523676102686e-08,1.036187115514028118e-07,1.079361578660445967e-07,1.122536041806863816e-07,1.165710504953281666e-07,1.208884968099699515e-07,1.252059431246117232e-07,1.295233894392534949e-07,1.338408357538952666e-07,1.381582820685370383e-07,1.424757283831788100e-07,1.467931746978205816e-07,1.511106210124623533e-07,1.554280673271041250e-07,1.597455136417458967e-07,1.640629599563876684e-07,1.683804062710294401e-07,1.726978525856712118e-07,1.770152989003129835e-07,1.813327452149547552e-07,1.856501915295965269e-07,1.899676378442382986e-07,1.942850841588800703e-07,1.986025304735218420e-07,2.029199767881636136e-07,2.072374231028053853e-07,2.115548694174471570e-07,2.158723157320889287e-07,2.201897620467307004e-07,2.245072083613724721e-07,2.288246546760142438e-07,2.331421009906560155e-07,2.374595473052977872e-07,2.417769936199395324e-07,2.460944399345812776e-07,2.504118862492230229e-07,2.547293325638647681e-07,2.590467788785065133e-07,2.633642251931482585e-07,2.676816715077900037e-07,2.719991178224317490e-07 +0.000000000000000000e+00,3.054336899165574387e-09,6.108673798331148774e-09,9.163010697496722334e-09,1.221734759666229589e-08,1.527168449582786945e-08,1.832602139499344467e-08,2.138035829415901988e-08,2.443469519332459510e-08,2.748903209249017031e-08,3.054336899165574552e-08,3.359770589082131743e-08,3.665204278998688934e-08,3.970637968915246124e-08,4.276071658831803315e-08,4.581505348748360505e-08,4.886939038664917696e-08,5.192372728581474886e-08,5.497806418498032077e-08,5.803240108414589267e-08,6.108673798331146458e-08,6.414107488247703648e-08,6.719541178164260839e-08,7.024974868080818029e-08,7.330408557997375220e-08,7.635842247913932411e-08,7.941275937830489601e-08,8.246709627747046792e-08,8.552143317663603982e-08,8.857577007580161173e-08,9.163010697496718363e-08,9.468444387413275554e-08,9.773878077329832744e-08,1.007931176724638993e-07,1.038474545716294713e-07,1.069017914707950432e-07,1.099561283699606151e-07,1.130104652691261870e-07,1.160648021682917589e-07,1.191191390674573308e-07,1.221734759666229027e-07,1.252278128657884746e-07,1.282821497649540465e-07,1.313364866641196184e-07,1.343908235632851903e-07,1.374451604624507622e-07,1.404994973616163341e-07,1.435538342607819060e-07,1.466081711599474779e-07,1.496625080591130498e-07,1.527168449582786217e-07,1.557711818574441936e-07,1.588255187566097656e-07,1.618798556557753375e-07,1.649341925549409094e-07,1.679885294541064813e-07,1.710428663532720532e-07,1.740972032524376251e-07,1.771515401516031970e-07,1.802058770507687689e-07,1.832602139499343408e-07,1.863145508490999127e-07,1.893688877482654846e-07,1.924232246474310565e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.137507010778509257e-09,1.227501402155701851e-08,1.841252103233552612e-08,2.455002804311403372e-08,3.068753505389254132e-08,3.682504206467105223e-08,4.296254907544956315e-08,4.910005608622807406e-08,5.523756309700658497e-08,6.137507010778509588e-08,6.751257711856360017e-08,7.365008412934210447e-08,7.978759114012060876e-08,8.592509815089911306e-08,9.206260516167761735e-08,9.820011217245612164e-08,1.043376191832346259e-07,1.104751261940131302e-07,1.166126332047916345e-07,1.227501402155701388e-07,1.288876472263486431e-07,1.350251542371271474e-07,1.411626612479056517e-07,1.473001682586841560e-07,1.534376752694626603e-07,1.595751822802411646e-07,1.657126892910196689e-07,1.718501963017981732e-07,1.779877033125766775e-07,1.841252103233551818e-07,1.902627173341336861e-07,1.964002243449121903e-07,2.025377313556906946e-07,2.086752383664691989e-07,2.148127453772477032e-07,2.209502523880262075e-07,2.270877593988047118e-07,2.332252664095832161e-07,2.393627734203617469e-07,2.455002804311402776e-07,2.516377874419188084e-07,2.577752944526973392e-07,2.639128014634758699e-07,2.700503084742544007e-07,2.761878154850329315e-07,2.823253224958114622e-07,2.884628295065899930e-07,2.946003365173685237e-07,3.007378435281470545e-07,3.068753505389255853e-07,3.130128575497041160e-07,3.191503645604826468e-07,3.252878715712611776e-07,3.314253785820397083e-07,3.375628855928182391e-07,3.437003926035967699e-07,3.498378996143753006e-07,3.559754066251538314e-07,3.621129136359323622e-07,3.682504206467108929e-07,3.743879276574894237e-07,3.805254346682679544e-07,3.866629416790464852e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.915531090506794389e-09,5.831062181013588778e-09,8.746593271520383168e-09,1.166212436202717756e-08,1.457765545253397195e-08,1.749318654304076634e-08,2.040871763354756072e-08,2.332424872405435511e-08,2.623977981456114950e-08,2.915531090506794389e-08,3.207084199557473497e-08,3.498637308608152605e-08,3.790190417658831713e-08,4.081743526709510821e-08,4.373296635760189929e-08,4.664849744810869037e-08,4.956402853861548146e-08,5.247955962912227254e-08,5.539509071962906362e-08,5.831062181013585470e-08,6.122615290064264578e-08,6.414168399114944347e-08,6.705721508165624117e-08,6.997274617216303887e-08,7.288827726266983657e-08,7.580380835317663427e-08,7.871933944368343196e-08,8.163487053419022966e-08,8.455040162469702736e-08,8.746593271520382506e-08,9.038146380571062276e-08,9.329699489621742045e-08,9.621252598672421815e-08,9.912805707723101585e-08,1.020435881677378135e-07,1.049591192582446112e-07,1.078746503487514089e-07,1.107901814392582066e-07,1.137057125297650043e-07,1.166212436202718020e-07,1.195367747107786130e-07,1.224523058012854239e-07,1.253678368917922348e-07,1.282833679822990458e-07,1.311988990728058567e-07,1.341144301633126676e-07,1.370299612538194786e-07,1.399454923443262895e-07,1.428610234348331004e-07,1.457765545253399114e-07,1.486920856158467223e-07,1.516076167063535332e-07,1.545231477968603442e-07,1.574386788873671551e-07,1.603542099778739660e-07,1.632697410683807770e-07,1.661852721588875879e-07,1.691008032493943988e-07,1.720163343399012098e-07,1.749318654304080207e-07,1.778473965209148316e-07,1.807629276114216426e-07,1.836784587019284535e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.997808671427788536e-09,7.995617342855577073e-09,1.199342601428336478e-08,1.599123468571115084e-08,1.998904335713893689e-08,2.398685202856672295e-08,2.798466069999450900e-08,3.198246937142229506e-08,3.598027804285008442e-08,3.997808671427787378e-08,4.397589538570566315e-08,4.797370405713345251e-08,5.197151272856124187e-08,5.596932139998903124e-08,5.996713007141682060e-08,6.396493874284460335e-08,6.796274741427238609e-08,7.196055608570016884e-08,7.595836475712795158e-08,7.995617342855573433e-08,8.395398209998351708e-08,8.795179077141129982e-08,9.194959944283908257e-08,9.594740811426686532e-08,9.994521678569464806e-08,1.039430254571224308e-07,1.079408341285502136e-07,1.119386427999779963e-07,1.159364514714057790e-07,1.199342601428335618e-07,1.239320688142613578e-07,1.279298774856891538e-07,1.319276861571169497e-07,1.359254948285447457e-07,1.399233034999725417e-07,1.439211121714003377e-07,1.479189208428281337e-07,1.519167295142559296e-07,1.559145381856837256e-07,1.599123468571115216e-07,1.639101555285393176e-07,1.679079641999671136e-07,1.719057728713949095e-07,1.759035815428227055e-07,1.799013902142505015e-07,1.838991988856782975e-07,1.878970075571060935e-07,1.918948162285338894e-07,1.958926248999616854e-07,1.998904335713894814e-07,2.038882422428172774e-07,2.078860509142450734e-07,2.118838595856728694e-07,2.158816682571006653e-07,2.198794769285284613e-07,2.238772855999562573e-07,2.278750942713840533e-07,2.318729029428118493e-07,2.358707116142396452e-07,2.398685202856674412e-07,2.438663289570952372e-07,2.478641376285230332e-07,2.518619462999508292e-07 +0.000000000000000000e+00,6.090061733237730100e-09,1.218012346647546020e-08,1.827018519971319030e-08,2.436024693295092040e-08,3.045030866618865050e-08,3.654037039942638060e-08,4.263043213266411070e-08,4.872049386590184080e-08,5.481055559913957090e-08,6.090061733237730100e-08,6.699067906561503110e-08,7.308074079885276120e-08,7.917080253209049130e-08,8.526086426532822140e-08,9.135092599856595150e-08,9.744098773180368160e-08,1.035310494650414117e-07,1.096211111982791418e-07,1.157111729315168719e-07,1.218012346647546020e-07,1.278912963979923321e-07,1.339813581312300622e-07,1.400714198644677923e-07,1.461614815977055224e-07,1.522515433309432525e-07,1.583416050641809826e-07,1.644316667974187127e-07,1.705217285306564428e-07,1.766117902638941729e-07,1.827018519971319030e-07,1.887919137303696331e-07,1.948819754636073632e-07,2.009720371968450933e-07,2.070620989300828234e-07,2.131521606633205535e-07,2.192422223965582836e-07,2.253322841297960137e-07,2.314223458630337438e-07,2.375124075962714739e-07,2.436024693295092040e-07,2.496925310627469606e-07,2.557825927959847171e-07,2.618726545292224737e-07,2.679627162624602303e-07,2.740527779956979869e-07,2.801428397289357434e-07,2.862329014621735000e-07,2.923229631954112566e-07,2.984130249286490131e-07,3.045030866618867697e-07,3.105931483951245263e-07,3.166832101283622828e-07,3.227732718616000394e-07,3.288633335948377960e-07,3.349533953280755526e-07,3.410434570613133091e-07,3.471335187945510657e-07,3.532235805277888223e-07,3.593136422610265788e-07,3.654037039942643354e-07,3.714937657275020920e-07,3.775838274607398485e-07,3.836738891939776051e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.137507010777218028e-09,1.227501402155443606e-08,1.841252103233165491e-08,2.455002804310887542e-08,3.068753505388609593e-08,3.682504206466331644e-08,4.296254907544053695e-08,4.910005608621775746e-08,5.523756309699497797e-08,6.137507010777220510e-08,6.751257711854943884e-08,7.365008412932667259e-08,7.978759114010390633e-08,8.592509815088114008e-08,9.206260516165837382e-08,9.820011217243560756e-08,1.043376191832128413e-07,1.104751261939900751e-07,1.166126332047673088e-07,1.227501402155445425e-07,1.288876472263217763e-07,1.350251542370990100e-07,1.411626612478762438e-07,1.473001682586534775e-07,1.534376752694307113e-07,1.595751822802079450e-07,1.657126892909851788e-07,1.718501963017624125e-07,1.779877033125396462e-07,1.841252103233168800e-07,1.902627173340941137e-07,1.964002243448713475e-07,2.025377313556485812e-07,2.086752383664258150e-07,2.148127453772030487e-07,2.209502523879802825e-07,2.270877593987575162e-07,2.332252664095347499e-07,2.393627734203119837e-07,2.455002804310892439e-07,2.516377874418665041e-07,2.577752944526437643e-07,2.639128014634210245e-07,2.700503084741982848e-07,2.761878154849755450e-07,2.823253224957528052e-07,2.884628295065300654e-07,2.946003365173073256e-07,3.007378435280845858e-07,3.068753505388618460e-07,3.130128575496391063e-07,3.191503645604163665e-07,3.252878715711936267e-07,3.314253785819708869e-07,3.375628855927481471e-07,3.437003926035254073e-07,3.498378996143026675e-07,3.559754066250799278e-07,3.621129136358571880e-07,3.682504206466344482e-07,3.743879276574117084e-07,3.805254346681889686e-07,3.866629416789662288e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.934437005968356756e-09,3.868874011936713512e-09,5.803311017905070268e-09,7.737748023873427025e-09,9.672185029841782954e-09,1.160662203581013888e-08,1.354105904177849481e-08,1.547549604774685074e-08,1.740993305371520667e-08,1.934437005968356260e-08,2.127880706565191853e-08,2.321324407162027446e-08,2.514768107758863039e-08,2.708211808355698631e-08,2.901655508952534224e-08,3.095099209549369486e-08,3.288542910146204748e-08,3.481986610743040010e-08,3.675430311339875272e-08,3.868874011936710534e-08,4.062317712533545796e-08,4.255761413130381058e-08,4.449205113727216321e-08,4.642648814324051583e-08,4.836092514920886845e-08,5.029536215517722107e-08,5.222979916114557369e-08,5.416423616711392631e-08,5.609867317308227893e-08,5.803311017905063155e-08,5.996754718501899078e-08,6.190198419098735002e-08,6.383642119695570926e-08,6.577085820292406850e-08,6.770529520889242774e-08,6.963973221486078697e-08,7.157416922082914621e-08,7.350860622679750545e-08,7.544304323276586469e-08,7.737748023873422392e-08,7.931191724470258316e-08,8.124635425067094240e-08,8.318079125663930164e-08,8.511522826260766087e-08,8.704966526857602011e-08,8.898410227454437935e-08,9.091853928051273859e-08,9.285297628648109782e-08,9.478741329244945706e-08,9.672185029841781630e-08,9.865628730438617554e-08,1.005907243103545348e-07,1.025251613163228940e-07,1.044595983222912533e-07,1.063940353282596125e-07,1.083284723342279717e-07,1.102629093401963310e-07,1.121973463461646902e-07,1.141317833521330494e-07,1.160662203581014087e-07,1.180006573640697679e-07,1.199350943700381404e-07,1.218695313760065129e-07 +0.000000000000000000e+00,4.317446314639465513e-09,8.634892629278931026e-09,1.295233894391839654e-08,1.726978525855786205e-08,2.158723157319732756e-08,2.590467788783679308e-08,3.022212420247625528e-08,3.453957051711571749e-08,3.885701683175517969e-08,4.317446314639464189e-08,4.749190946103410410e-08,5.180935577567356630e-08,5.612680209031302851e-08,6.044424840495248409e-08,6.476169471959193968e-08,6.907914103423139527e-08,7.339658734887085085e-08,7.771403366351030644e-08,8.203147997814976203e-08,8.634892629278921761e-08,9.066637260742867320e-08,9.498381892206812879e-08,9.930126523670758437e-08,1.036187115513470400e-07,1.079361578659864955e-07,1.122536041806259511e-07,1.165710504952654067e-07,1.208884968099048623e-07,1.252059431245443311e-07,1.295233894391837999e-07,1.338408357538232688e-07,1.381582820684627376e-07,1.424757283831022064e-07,1.467931746977416752e-07,1.511106210123811441e-07,1.554280673270206129e-07,1.597455136416600817e-07,1.640629599562995505e-07,1.683804062709390193e-07,1.726978525855784882e-07,1.770152989002179570e-07,1.813327452148574258e-07,1.856501915294968946e-07,1.899676378441363634e-07,1.942850841587758323e-07,1.986025304734153011e-07,2.029199767880547699e-07,2.072374231026942387e-07,2.115548694173337076e-07,2.158723157319731764e-07,2.201897620466126452e-07,2.245072083612521140e-07,2.288246546758915828e-07,2.331421009905310517e-07,2.374595473051705205e-07,2.417769936198099893e-07,2.460944399344494581e-07,2.504118862490889270e-07,2.547293325637283958e-07,2.590467788783678646e-07,2.633642251930073334e-07,2.676816715076468022e-07,2.719991178222862711e-07 +0.000000000000000000e+00,3.054336899164213675e-09,6.108673798328427350e-09,9.163010697492641025e-09,1.221734759665685470e-08,1.527168449582107003e-08,1.832602139498528536e-08,2.138035829414950069e-08,2.443469519331371602e-08,2.748903209247793135e-08,3.054336899164214667e-08,3.359770589080636200e-08,3.665204278997057733e-08,3.970637968913479266e-08,4.276071658829900799e-08,4.581505348746322332e-08,4.886939038662743865e-08,5.192372728579165398e-08,5.497806418495586931e-08,5.803240108412008464e-08,6.108673798328430658e-08,6.414107488244852853e-08,6.719541178161275048e-08,7.024974868077697242e-08,7.330408557994119437e-08,7.635842247910541632e-08,7.941275937826963826e-08,8.246709627743386021e-08,8.552143317659808216e-08,8.857577007576230410e-08,9.163010697492652605e-08,9.468444387409074800e-08,9.773878077325496994e-08,1.007931176724191919e-07,1.038474545715834138e-07,1.069017914707476358e-07,1.099561283699118577e-07,1.130104652690760797e-07,1.160648021682403016e-07,1.191191390674045236e-07,1.221734759665687455e-07,1.252278128657329675e-07,1.282821497648971894e-07,1.313364866640614114e-07,1.343908235632256333e-07,1.374451604623898553e-07,1.404994973615540772e-07,1.435538342607182991e-07,1.466081711598825211e-07,1.496625080590467430e-07,1.527168449582109650e-07,1.557711818573751869e-07,1.588255187565394089e-07,1.618798556557036308e-07,1.649341925548678528e-07,1.679885294540320747e-07,1.710428663531962967e-07,1.740972032523605186e-07,1.771515401515247406e-07,1.802058770506889625e-07,1.832602139498531845e-07,1.863145508490174064e-07,1.893688877481816283e-07,1.924232246473458503e-07 +0.000000000000000000e+00,8.197289310127619035e-09,1.639457862025523807e-08,2.459186793038285545e-08,3.278915724051046952e-08,4.098644655063808359e-08,4.918373586076569767e-08,5.738102517089331174e-08,6.557831448102092581e-08,7.377560379114854650e-08,8.197289310127616719e-08,9.017018241140378788e-08,9.836747172153140857e-08,1.065647610316590293e-07,1.147620503417866499e-07,1.229593396519142706e-07,1.311566289620418781e-07,1.393539182721694855e-07,1.475512075822970930e-07,1.557484968924247005e-07,1.639457862025523079e-07,1.721430755126799154e-07,1.803403648228075228e-07,1.885376541329351303e-07,1.967349434430627377e-07,2.049322327531903452e-07,2.131295220633179526e-07,2.213268113734455601e-07,2.295241006835731675e-07,2.377213899937007750e-07,2.459186793038283825e-07,2.541159686139559899e-07,2.623132579240835974e-07,2.705105472342112048e-07,2.787078365443388123e-07,2.869051258544664197e-07,2.951024151645940272e-07,3.032997044747216346e-07,3.114969937848492421e-07,3.196942830949768495e-07,3.278915724051044570e-07,3.360888617152320645e-07,3.442861510253596719e-07,3.524834403354872794e-07,3.606807296456148868e-07,3.688780189557424943e-07,3.770753082658701017e-07,3.852725975759977092e-07,3.934698868861253166e-07,4.016671761962529241e-07,4.098644655063805315e-07,4.180617548165081390e-07,4.262590441266357465e-07,4.344563334367633539e-07,4.426536227468909614e-07,4.508509120570185688e-07,4.590482013671461763e-07,4.672454906772737837e-07,4.754427799874013912e-07,4.836400692975289986e-07,4.918373586076566590e-07,5.000346479177843194e-07,5.082319372279119798e-07,5.164292265380396402e-07 +0.000000000000000000e+00,1.132564423496343296e-08,2.265128846992686593e-08,3.397693270489030220e-08,4.530257693985373847e-08,5.662822117481717475e-08,6.795386540978060440e-08,7.927950964474403406e-08,9.060515387970746371e-08,1.019307981146708934e-07,1.132564423496343230e-07,1.245820865845977527e-07,1.359077308195611823e-07,1.472333750545246120e-07,1.585590192894880416e-07,1.698846635244514713e-07,1.812103077594149010e-07,1.925359519943783306e-07,2.038615962293417603e-07,2.151872404643051899e-07,2.265128846992686196e-07,2.378385289342320492e-07,2.491641731691955054e-07,2.604898174041589615e-07,2.718154616391224176e-07,2.831411058740858737e-07,2.944667501090493299e-07,3.057923943440127860e-07,3.171180385789762421e-07,3.284436828139396982e-07,3.397693270489031544e-07,3.510949712838666105e-07,3.624206155188300666e-07,3.737462597537935227e-07,3.850719039887569789e-07,3.963975482237204350e-07,4.077231924586838911e-07,4.190488366936473472e-07,4.303744809286108034e-07,4.417001251635742595e-07,4.530257693985377156e-07,4.643514136335011717e-07,4.756770578684646278e-07,4.870027021034280310e-07,4.983283463383914342e-07,5.096539905733548374e-07,5.209796348083182406e-07,5.323052790432816438e-07,5.436309232782450470e-07,5.549565675132084501e-07,5.662822117481718533e-07,5.776078559831352565e-07,5.889335002180986597e-07,6.002591444530620629e-07,6.115847886880254661e-07,6.229104329229888693e-07,6.342360771579522724e-07,6.455617213929156756e-07,6.568873656278790788e-07,6.682130098628424820e-07,6.795386540978058852e-07,6.908642983327692884e-07,7.021899425677326916e-07,7.135155868026960947e-07 +0.000000000000000000e+00,1.135807374313960657e-08,2.271614748627921315e-08,3.407422122941881972e-08,4.543229497255842630e-08,5.679036871569803287e-08,6.814844245883763944e-08,7.950651620197724602e-08,9.086458994511685259e-08,1.022226636882564592e-07,1.135807374313960657e-07,1.249388111745356723e-07,1.362968849176752789e-07,1.476549586608148855e-07,1.590130324039544920e-07,1.703711061470940986e-07,1.817291798902337052e-07,1.930872536333733118e-07,2.044453273765129183e-07,2.158034011196525249e-07,2.271614748627921315e-07,2.385195486059317381e-07,2.498776223490713446e-07,2.612356960922109512e-07,2.725937698353505578e-07,2.839518435784901644e-07,2.953099173216297709e-07,3.066679910647693775e-07,3.180260648079089841e-07,3.293841385510485907e-07,3.407422122941881972e-07,3.521002860373278038e-07,3.634583597804674104e-07,3.748164335236070169e-07,3.861745072667466235e-07,3.975325810098862301e-07,4.088906547530258367e-07,4.202487284961654432e-07,4.316068022393050498e-07,4.429648759824446564e-07,4.543229497255842630e-07,4.656810234687238695e-07,4.770390972118634761e-07,4.883971709550031356e-07,4.997552446981427951e-07,5.111133184412824547e-07,5.224713921844221142e-07,5.338294659275617737e-07,5.451875396707014332e-07,5.565456134138410927e-07,5.679036871569807522e-07,5.792617609001204117e-07,5.906198346432600713e-07,6.019779083863997308e-07,6.133359821295393903e-07,6.246940558726790498e-07,6.360521296158187093e-07,6.474102033589583688e-07,6.587682771020980283e-07,6.701263508452376878e-07,6.814844245883773474e-07,6.928424983315170069e-07,7.042005720746566664e-07,7.155586458177963259e-07 +0.000000000000000000e+00,6.057289545177917261e-09,1.211457909035583452e-08,1.817186863553375344e-08,2.422915818071167235e-08,3.028644772588959127e-08,3.634373727106750688e-08,4.240102681624542248e-08,4.845831636142333809e-08,5.451560590660125370e-08,6.057289545177916930e-08,6.663018499695707829e-08,7.268747454213498728e-08,7.874476408731289627e-08,8.480205363249080526e-08,9.085934317766871425e-08,9.691663272284662324e-08,1.029739222680245322e-07,1.090312118132024412e-07,1.150885013583803502e-07,1.211457909035582592e-07,1.272030804487361682e-07,1.332603699939140772e-07,1.393176595390919862e-07,1.453749490842698952e-07,1.514322386294478041e-07,1.574895281746257131e-07,1.635468177198036221e-07,1.696041072649815311e-07,1.756613968101594401e-07,1.817186863553373491e-07,1.877759759005152581e-07,1.938332654456931671e-07,1.998905549908710761e-07,2.059478445360489851e-07,2.120051340812268940e-07,2.180624236264048030e-07,2.241197131715827120e-07,2.301770027167606210e-07,2.362342922619385300e-07,2.422915818071164655e-07,2.483488713522944009e-07,2.544061608974723364e-07,2.604634504426502718e-07,2.665207399878282073e-07,2.725780295330061428e-07,2.786353190781840782e-07,2.846926086233620137e-07,2.907498981685399491e-07,2.968071877137178846e-07,3.028644772588958201e-07,3.089217668040737555e-07,3.149790563492516910e-07,3.210363458944296264e-07,3.270936354396075619e-07,3.331509249847854974e-07,3.392082145299634328e-07,3.452655040751413683e-07,3.513227936203193037e-07,3.573800831654972392e-07,3.634373727106751746e-07,3.694946622558531101e-07,3.755519518010310456e-07,3.816092413462089810e-07 +0.000000000000000000e+00,9.133543524672518952e-09,1.826708704934503790e-08,2.740063057401755520e-08,3.653417409869006919e-08,4.566771762336258318e-08,5.480126114803509717e-08,6.393480467270761116e-08,7.306834819738012515e-08,8.220189172205263914e-08,9.133543524672515313e-08,1.004689787713976671e-07,1.096025222960701811e-07,1.187360658207426951e-07,1.278696093454152223e-07,1.370031528700877495e-07,1.461366963947602768e-07,1.552702399194328040e-07,1.644037834441053312e-07,1.735373269687778584e-07,1.826708704934503857e-07,1.918044140181229129e-07,2.009379575427954401e-07,2.100715010674679673e-07,2.192050445921404946e-07,2.283385881168130218e-07,2.374721316414855490e-07,2.466056751661580498e-07,2.557392186908305505e-07,2.648727622155030513e-07,2.740063057401755520e-07,2.831398492648480528e-07,2.922733927895205535e-07,3.014069363141930543e-07,3.105404798388655550e-07,3.196740233635380558e-07,3.288075668882105566e-07,3.379411104128830573e-07,3.470746539375555581e-07,3.562081974622280588e-07,3.653417409869005596e-07,3.744752845115730603e-07,3.836088280362455611e-07,3.927423715609180618e-07,4.018759150855905626e-07,4.110094586102630633e-07,4.201430021349355641e-07,4.292765456596080649e-07,4.384100891842805656e-07,4.475436327089530664e-07,4.566771762336255671e-07,4.658107197582980679e-07,4.749442632829705686e-07,4.840778068076430694e-07,4.932113503323155701e-07,5.023448938569880709e-07,5.114784373816605716e-07,5.206119809063330724e-07,5.297455244310055732e-07,5.388790679556780739e-07,5.480126114803505747e-07,5.571461550050230754e-07,5.662796985296955762e-07,5.754132420543680769e-07 +0.000000000000000000e+00,8.779958733627044167e-09,1.755991746725408833e-08,2.633987620088113250e-08,3.511983493450817667e-08,4.389979366813522083e-08,5.267975240176226500e-08,6.145971113538930255e-08,7.023966986901634010e-08,7.901962860264337765e-08,8.779958733627041520e-08,9.657954606989745274e-08,1.053595048035244903e-07,1.141394635371515278e-07,1.229194222707785522e-07,1.316993810044055765e-07,1.404793397380326008e-07,1.492592984716596251e-07,1.580392572052866494e-07,1.668192159389136737e-07,1.755991746725406980e-07,1.843791334061677224e-07,1.931590921397947467e-07,2.019390508734217710e-07,2.107190096070487953e-07,2.194989683406758196e-07,2.282789270743028439e-07,2.370588858079298682e-07,2.458388445415568926e-07,2.546188032751839433e-07,2.633987620088109941e-07,2.721787207424380449e-07,2.809586794760650957e-07,2.897386382096921465e-07,2.985185969433191973e-07,3.072985556769462480e-07,3.160785144105732988e-07,3.248584731442003496e-07,3.336384318778274004e-07,3.424183906114544512e-07,3.511983493450815020e-07,3.599783080787085527e-07,3.687582668123356035e-07,3.775382255459626543e-07,3.863181842795897051e-07,3.950981430132167559e-07,4.038781017468438067e-07,4.126580604804708575e-07,4.214380192140979082e-07,4.302179779477249590e-07,4.389979366813520098e-07,4.477778954149790606e-07,4.565578541486061114e-07,4.653378128822331622e-07,4.741177716158602129e-07,4.828977303494872637e-07,4.916776890831143145e-07,5.004576478167413653e-07,5.092376065503684161e-07,5.180175652839954669e-07,5.267975240176225176e-07,5.355774827512495684e-07,5.443574414848766192e-07,5.531374002185036700e-07 +0.000000000000000000e+00,1.134734077791096734e-08,2.269468155582193468e-08,3.404202233373290202e-08,4.538936311164386937e-08,5.673670388955483671e-08,6.808404466746580405e-08,7.943138544537676477e-08,9.077872622328772550e-08,1.021260670011986862e-07,1.134734077791096469e-07,1.248207485570206077e-07,1.361680893349315816e-07,1.475154301128425556e-07,1.588627708907535295e-07,1.702101116686645035e-07,1.815574524465754775e-07,1.929047932244864514e-07,2.042521340023974254e-07,2.155994747803083993e-07,2.269468155582193733e-07,2.382941563361303473e-07,2.496414971140413212e-07,2.609888378919522952e-07,2.723361786698632691e-07,2.836835194477742431e-07,2.950308602256852171e-07,3.063782010035961910e-07,3.177255417815071650e-07,3.290728825594181389e-07,3.404202233373291129e-07,3.517675641152400869e-07,3.631149048931510608e-07,3.744622456710620348e-07,3.858095864489730087e-07,3.971569272268839827e-07,4.085042680047949566e-07,4.198516087827059306e-07,4.311989495606169046e-07,4.425462903385278785e-07,4.538936311164388525e-07,4.652409718943498264e-07,4.765883126722608004e-07,4.879356534501718273e-07,4.992829942280828542e-07,5.106303350059938811e-07,5.219776757839049080e-07,5.333250165618159349e-07,5.446723573397269618e-07,5.560196981176379887e-07,5.673670388955490156e-07,5.787143796734600425e-07,5.900617204513710694e-07,6.014090612292820963e-07,6.127564020071931232e-07,6.241037427851041501e-07,6.354510835630151770e-07,6.467984243409262039e-07,6.581457651188372308e-07,6.694931058967482577e-07,6.808404466746592846e-07,6.921877874525703115e-07,7.035351282304813384e-07,7.148824690083923653e-07 +0.000000000000000000e+00,8.820636426442798566e-09,1.764127285288559713e-08,2.646190927932839404e-08,3.528254570577118765e-08,4.410318213221398125e-08,5.292381855865677485e-08,6.174445498509956184e-08,7.056509141154234882e-08,7.938572783798513581e-08,8.820636426442792279e-08,9.702700069087070978e-08,1.058476371173134968e-07,1.146682735437562837e-07,1.234889099701990707e-07,1.323095463966418577e-07,1.411301828230846447e-07,1.499508192495274317e-07,1.587714556759702187e-07,1.675920921024130057e-07,1.764127285288557926e-07,1.852333649552985796e-07,1.940540013817413666e-07,2.028746378081841536e-07,2.116952742346269406e-07,2.205159106610697276e-07,2.293365470875125146e-07,2.381571835139553015e-07,2.469778199403980885e-07,2.557984563668408755e-07,2.646190927932836625e-07,2.734397292197264495e-07,2.822603656461692365e-07,2.910810020726120235e-07,2.999016384990548104e-07,3.087222749254975974e-07,3.175429113519403844e-07,3.263635477783831714e-07,3.351841842048259584e-07,3.440048206312687454e-07,3.528254570577115324e-07,3.616460934841543193e-07,3.704667299105971063e-07,3.792873663370398933e-07,3.881080027634826803e-07,3.969286391899254673e-07,4.057492756163682543e-07,4.145699120428110412e-07,4.233905484692538282e-07,4.322111848956966152e-07,4.410318213221394022e-07,4.498524577485821892e-07,4.586730941750249762e-07,4.674937306014677632e-07,4.763143670279105501e-07,4.851350034543533901e-07,4.939556398807962829e-07,5.027762763072391758e-07,5.115969127336820687e-07,5.204175491601249615e-07,5.292381855865678544e-07,5.380588220130107473e-07,5.468794584394536401e-07,5.557000948658965330e-07 +0.000000000000000000e+00,8.197289310124450933e-09,1.639457862024890187e-08,2.459186793037335280e-08,3.278915724049780373e-08,4.098644655062225467e-08,4.918373586074670560e-08,5.738102517087115653e-08,6.557831448099560747e-08,7.377560379112006502e-08,8.197289310124452257e-08,9.017018241136898012e-08,9.836747172149343767e-08,1.065647610316178952e-07,1.147620503417423528e-07,1.229593396518668103e-07,1.311566289619912679e-07,1.393539182721157254e-07,1.475512075822401830e-07,1.557484968923646405e-07,1.639457862024890981e-07,1.721430755126135556e-07,1.803403648227380132e-07,1.885376541328624707e-07,1.967349434429869283e-07,2.049322327531113858e-07,2.131295220632358434e-07,2.213268113733603009e-07,2.295241006834847585e-07,2.377213899936092160e-07,2.459186793037336736e-07,2.541159686138581576e-07,2.623132579239826416e-07,2.705105472341071256e-07,2.787078365442316097e-07,2.869051258543560937e-07,2.951024151644805777e-07,3.032997044746050617e-07,3.114969937847295457e-07,3.196942830948540298e-07,3.278915724049785138e-07,3.360888617151029978e-07,3.442861510252274818e-07,3.524834403353519659e-07,3.606807296454764499e-07,3.688780189556009339e-07,3.770753082657254179e-07,3.852725975758499019e-07,3.934698868859743860e-07,4.016671761960988700e-07,4.098644655062233540e-07,4.180617548163478380e-07,4.262590441264723220e-07,4.344563334365968061e-07,4.426536227467212901e-07,4.508509120568457741e-07,4.590482013669702581e-07,4.672454906770947421e-07,4.754427799872192262e-07,4.836400692973437102e-07,4.918373586074681942e-07,5.000346479175926782e-07,5.082319372277171622e-07,5.164292265378416463e-07 +0.000000000000000000e+00,1.132564423495868495e-08,2.265128846991736989e-08,3.397693270487605484e-08,4.530257693983473979e-08,5.662822117479342474e-08,6.795386540975210968e-08,7.927950964471078801e-08,9.060515387966946634e-08,1.019307981146281447e-07,1.132564423495868230e-07,1.245820865845455013e-07,1.359077308195041929e-07,1.472333750544628845e-07,1.585590192894215760e-07,1.698846635243802676e-07,1.812103077593389592e-07,1.925359519942976507e-07,2.038615962292563423e-07,2.151872404642150338e-07,2.265128846991737254e-07,2.378385289341324170e-07,2.491641731690911085e-07,2.604898174040498001e-07,2.718154616390084917e-07,2.831411058739671832e-07,2.944667501089258748e-07,3.057923943438845664e-07,3.171180385788432579e-07,3.284436828138019495e-07,3.397693270487606411e-07,3.510949712837193326e-07,3.624206155186780242e-07,3.737462597536367158e-07,3.850719039885954073e-07,3.963975482235540989e-07,4.077231924585127904e-07,4.190488366934714820e-07,4.303744809284301736e-07,4.417001251633888651e-07,4.530257693983475567e-07,4.643514136333062483e-07,4.756770578682649398e-07,4.870027021032236843e-07,4.983283463381824288e-07,5.096539905731411733e-07,5.209796348080999178e-07,5.323052790430586624e-07,5.436309232780174069e-07,5.549565675129761514e-07,5.662822117479348959e-07,5.776078559828936404e-07,5.889335002178523849e-07,6.002591444528111294e-07,6.115847886877698739e-07,6.229104329227286184e-07,6.342360771576873629e-07,6.455617213926461074e-07,6.568873656276048519e-07,6.682130098625635964e-07,6.795386540975223409e-07,6.908642983324810854e-07,7.021899425674398299e-07,7.135155868023985744e-07 +0.000000000000000000e+00,1.134734077790864462e-08,2.269468155581728924e-08,3.404202233372593386e-08,4.538936311163457847e-08,5.673670388954322309e-08,6.808404466745186771e-08,7.943138544536051233e-08,9.077872622326915695e-08,1.021260670011778016e-07,1.134734077790864462e-07,1.248207485569950908e-07,1.361680893349037354e-07,1.475154301128123800e-07,1.588627708907210247e-07,1.702101116686296693e-07,1.815574524465383139e-07,1.929047932244469585e-07,2.042521340023556031e-07,2.155994747802642478e-07,2.269468155581728924e-07,2.382941563360815370e-07,2.496414971139901816e-07,2.609888378918988262e-07,2.723361786698074708e-07,2.836835194477161155e-07,2.950308602256247601e-07,3.063782010035334047e-07,3.177255417814420493e-07,3.290728825593506939e-07,3.404202233372593386e-07,3.517675641151679832e-07,3.631149048930766278e-07,3.744622456709852724e-07,3.858095864488939170e-07,3.971569272268025616e-07,4.085042680047112063e-07,4.198516087826198509e-07,4.311989495605284955e-07,4.425462903384371401e-07,4.538936311163457847e-07,4.652409718942544294e-07,4.765883126721630740e-07,4.879356534500716657e-07,4.992829942279802573e-07,5.106303350058888490e-07,5.219776757837974407e-07,5.333250165617060324e-07,5.446723573396146240e-07,5.560196981175232157e-07,5.673670388954318074e-07,5.787143796733403991e-07,5.900617204512489908e-07,6.014090612291575824e-07,6.127564020070661741e-07,6.241037427849747658e-07,6.354510835628833575e-07,6.467984243407919492e-07,6.581457651187005408e-07,6.694931058966091325e-07,6.808404466745177242e-07,6.921877874524263159e-07,7.035351282303349076e-07,7.148824690082434992e-07 +0.000000000000000000e+00,6.057289545175398496e-09,1.211457909035079699e-08,1.817186863552619632e-08,2.422915818070159729e-08,3.028644772587699827e-08,3.634373727105239925e-08,4.240102681622780023e-08,4.845831636140320121e-08,5.451560590657860218e-08,6.057289545175399654e-08,6.663018499692939090e-08,7.268747454210478527e-08,7.874476408728017963e-08,8.480205363245557399e-08,9.085934317763096835e-08,9.691663272280636271e-08,1.029739222679817571e-07,1.090312118131571514e-07,1.150885013583325458e-07,1.211457909035079401e-07,1.272030804486833345e-07,1.332603699938587289e-07,1.393176595390341232e-07,1.453749490842095176e-07,1.514322386293849120e-07,1.574895281745603063e-07,1.635468177197357007e-07,1.696041072649110950e-07,1.756613968100864894e-07,1.817186863552618838e-07,1.877759759004372781e-07,1.938332654456126725e-07,1.998905549907880668e-07,2.059478445359634612e-07,2.120051340811388556e-07,2.180624236263142499e-07,2.241197131714896443e-07,2.301770027166650386e-07,2.362342922618404330e-07,2.422915818070158274e-07,2.483488713521912217e-07,2.544061608973666161e-07,2.604634504425420104e-07,2.665207399877174048e-07,2.725780295328927992e-07,2.786353190780681935e-07,2.846926086232435879e-07,2.907498981684189822e-07,2.968071877135943766e-07,3.028644772587697710e-07,3.089217668039451653e-07,3.149790563491205597e-07,3.210363458942959540e-07,3.270936354394713484e-07,3.331509249846467428e-07,3.392082145298221371e-07,3.452655040749975315e-07,3.513227936201729258e-07,3.573800831653483202e-07,3.634373727105237146e-07,3.694946622556991089e-07,3.755519518008745033e-07,3.816092413460498976e-07 +0.000000000000000000e+00,9.133543524668440952e-09,1.826708704933688190e-08,2.740063057400532286e-08,3.653417409867376381e-08,4.566771762334220145e-08,5.480126114801063909e-08,6.393480467267907674e-08,7.306834819734751438e-08,8.220189172201595202e-08,9.133543524668438967e-08,1.004689787713528273e-07,1.096025222960212650e-07,1.187360658206897026e-07,1.278696093453581535e-07,1.370031528700266044e-07,1.461366963946950552e-07,1.552702399193635061e-07,1.644037834440319570e-07,1.735373269687004079e-07,1.826708704933688587e-07,1.918044140180373096e-07,2.009379575427057605e-07,2.100715010673742114e-07,2.192050445920426623e-07,2.283385881167111131e-07,2.374721316413795640e-07,2.466056751660480414e-07,2.557392186907165187e-07,2.648727622153849961e-07,2.740063057400534734e-07,2.831398492647219508e-07,2.922733927893904281e-07,3.014069363140589054e-07,3.105404798387273828e-07,3.196740233633958601e-07,3.288075668880643375e-07,3.379411104127328148e-07,3.470746539374012922e-07,3.562081974620697695e-07,3.653417409867382469e-07,3.744752845114067242e-07,3.836088280360752016e-07,3.927423715607436789e-07,4.018759150854121563e-07,4.110094586100806336e-07,4.201430021347491110e-07,4.292765456594175883e-07,4.384100891840860657e-07,4.475436327087545430e-07,4.566771762334230204e-07,4.658107197580914977e-07,4.749442632827599751e-07,4.840778068074284524e-07,4.932113503320969298e-07,5.023448938567654071e-07,5.114784373814338844e-07,5.206119809061023618e-07,5.297455244307708391e-07,5.388790679554393165e-07,5.480126114801077938e-07,5.571461550047762712e-07,5.662796985294447485e-07,5.754132420541132259e-07 +0.000000000000000000e+00,8.779958733623237481e-09,1.755991746724647496e-08,2.633987620086971079e-08,3.511983493449294331e-08,4.389979366811617583e-08,5.267975240173940834e-08,6.145971113536264748e-08,7.023966986898588662e-08,7.901962860260912575e-08,8.779958733623236489e-08,9.657954606985560402e-08,1.053595048034788432e-07,1.141394635371020823e-07,1.229194222707253214e-07,1.316993810043485606e-07,1.404793397379717997e-07,1.492592984715950388e-07,1.580392572052182780e-07,1.668192159388415171e-07,1.755991746724647562e-07,1.843791334060879954e-07,1.931590921397112345e-07,2.019390508733344737e-07,2.107190096069577128e-07,2.194989683405809519e-07,2.282789270742041911e-07,2.370588858078274302e-07,2.458388445414506958e-07,2.546188032750739349e-07,2.633987620086971741e-07,2.721787207423204132e-07,2.809586794759436523e-07,2.897386382095668915e-07,2.985185969431901306e-07,3.072985556768133698e-07,3.160785144104366089e-07,3.248584731440598480e-07,3.336384318776830872e-07,3.424183906113063263e-07,3.511983493449295654e-07,3.599783080785528046e-07,3.687582668121760437e-07,3.775382255457992828e-07,3.863181842794225220e-07,3.950981430130457611e-07,4.038781017466690002e-07,4.126580604802922394e-07,4.214380192139154785e-07,4.302179779475387177e-07,4.389979366811619568e-07,4.477778954147851959e-07,4.565578541484084351e-07,4.653378128820316742e-07,4.741177716156549133e-07,4.828977303492781525e-07,4.916776890829013916e-07,5.004576478165246307e-07,5.092376065501478699e-07,5.180175652837711090e-07,5.267975240173943481e-07,5.355774827510175873e-07,5.443574414846408264e-07,5.531374002182640656e-07 +0.000000000000000000e+00,1.261726590808602150e-08,2.523453181617204301e-08,3.785179772425806782e-08,5.046906363234409263e-08,6.308632954043011744e-08,7.570359544851613563e-08,8.832086135660215383e-08,1.009381272646881720e-07,1.135553931727741902e-07,1.261726590808602084e-07,1.387899249889462266e-07,1.514071908970322448e-07,1.640244568051182630e-07,1.766417227132042812e-07,1.892589886212902994e-07,2.018762545293763176e-07,2.144935204374623358e-07,2.271107863455483540e-07,2.397280522536343986e-07,2.523453181617204698e-07,2.649625840698065409e-07,2.775798499778926120e-07,2.901971158859786832e-07,3.028143817940647543e-07,3.154316477021508254e-07,3.280489136102368966e-07,3.406661795183229677e-07,3.532834454264090388e-07,3.659007113344951100e-07,3.785179772425811811e-07,3.911352431506672522e-07,4.037525090587533234e-07,4.163697749668393945e-07,4.289870408749254656e-07,4.416043067830115368e-07,4.542215726910976079e-07,4.668388385991836790e-07,4.794561045072697502e-07,4.920733704153558213e-07,5.046906363234418924e-07,5.173079022315279636e-07,5.299251681396140347e-07,5.425424340477001058e-07,5.551596999557861770e-07,5.677769658638722481e-07,5.803942317719583192e-07,5.930114976800443904e-07,6.056287635881304615e-07,6.182460294962165326e-07,6.308632954043026038e-07,6.434805613123886749e-07,6.560978272204747460e-07,6.687150931285608172e-07,6.813323590366468883e-07,6.939496249447329594e-07,7.065668908528190306e-07,7.191841567609051017e-07,7.318014226689911728e-07,7.444186885770772440e-07,7.570359544851633151e-07,7.696532203932493862e-07,7.822704863013354574e-07,7.948877522094215285e-07 +0.000000000000000000e+00,1.605715395588605318e-08,3.211430791177210637e-08,4.817146186765815955e-08,6.422861582354421274e-08,8.028576977943025930e-08,9.634292373531630587e-08,1.124000776912023524e-07,1.284572316470883990e-07,1.445143856029744456e-07,1.605715395588604921e-07,1.766286935147465387e-07,1.926858474706325853e-07,2.087430014265186318e-07,2.248001553824046784e-07,2.408573093382906985e-07,2.569144632941767451e-07,2.729716172500627916e-07,2.890287712059488382e-07,3.050859251618348848e-07,3.211430791177209313e-07,3.372002330736069779e-07,3.532573870294930245e-07,3.693145409853790710e-07,3.853716949412651176e-07,4.014288488971511642e-07,4.174860028530372107e-07,4.335431568089232573e-07,4.496003107648093039e-07,4.656574647206953504e-07,4.817146186765813970e-07,4.977717726324674436e-07,5.138289265883534901e-07,5.298860805442395367e-07,5.459432345001255833e-07,5.620003884560116298e-07,5.780575424118976764e-07,5.941146963677837230e-07,6.101718503236697695e-07,6.262290042795558161e-07,6.422861582354418627e-07,6.583433121913279092e-07,6.744004661472139558e-07,6.904576201031000024e-07,7.065147740589860489e-07,7.225719280148720955e-07,7.386290819707581421e-07,7.546862359266441886e-07,7.707433898825302352e-07,7.868005438384162818e-07,8.028576977943023283e-07,8.189148517501883749e-07,8.349720057060744215e-07,8.510291596619604680e-07,8.670863136178465146e-07,8.831434675737325612e-07,8.992006215296186077e-07,9.152577754855046543e-07,9.313149294413907009e-07,9.473720833972767474e-07,9.634292373531627940e-07,9.794863913090488406e-07,9.955435452649348871e-07,1.011600699220820934e-06 +0.000000000000000000e+00,1.605873501528837887e-08,3.211747003057675775e-08,4.817620504586513662e-08,6.423494006115351549e-08,8.029367507644189437e-08,9.635241009173027324e-08,1.124111451070186521e-07,1.284698801223070310e-07,1.445286151375954099e-07,1.605873501528837887e-07,1.766460851681721676e-07,1.927048201834605465e-07,2.087635551987489254e-07,2.248222902140373042e-07,2.408810252293256831e-07,2.569397602446140620e-07,2.729984952599024408e-07,2.890572302751908197e-07,3.051159652904791986e-07,3.211747003057675775e-07,3.372334353210559563e-07,3.532921703363443352e-07,3.693509053516327141e-07,3.854096403669210930e-07,4.014683753822094718e-07,4.175271103974978507e-07,4.335858454127862296e-07,4.496445804280746085e-07,4.657033154433629873e-07,4.817620504586513662e-07,4.978207854739397451e-07,5.138795204892281239e-07,5.299382555045165028e-07,5.459969905198048817e-07,5.620557255350932606e-07,5.781144605503816394e-07,5.941731955656700183e-07,6.102319305809583972e-07,6.262906655962467761e-07,6.423494006115351549e-07,6.584081356268235338e-07,6.744668706421119127e-07,6.905256056574002916e-07,7.065843406726886704e-07,7.226430756879770493e-07,7.387018107032654282e-07,7.547605457185538071e-07,7.708192807338421859e-07,7.868780157491305648e-07,8.029367507644189437e-07,8.189954857797073225e-07,8.350542207949957014e-07,8.511129558102840803e-07,8.671716908255724592e-07,8.832304258408608380e-07,8.992891608561492169e-07,9.153478958714375958e-07,9.314066308867259747e-07,9.474653659020143535e-07,9.635241009173027324e-07,9.795828359325911113e-07,9.956415709478794902e-07,1.011700305963167869e-06 +0.000000000000000000e+00,1.039103872384388413e-08,2.078207744768776825e-08,3.117311617153165072e-08,4.156415489537552989e-08,5.195519361921940905e-08,6.234623234306328821e-08,7.273727106690716076e-08,8.312830979075103330e-08,9.351934851459490585e-08,1.039103872384387784e-07,1.143014259622826509e-07,1.246924646861265235e-07,1.350835034099703960e-07,1.454745421338142686e-07,1.558655808576581411e-07,1.662566195815020137e-07,1.766476583053458862e-07,1.870386970291897588e-07,1.974297357530336313e-07,2.078207744768775038e-07,2.182118132007213764e-07,2.286028519245652489e-07,2.389938906484091479e-07,2.493849293722530470e-07,2.597759680960969460e-07,2.701670068199408450e-07,2.805580455437847440e-07,2.909490842676286430e-07,3.013401229914725420e-07,3.117311617153164411e-07,3.221222004391603401e-07,3.325132391630042391e-07,3.429042778868481381e-07,3.532953166106920371e-07,3.636863553345359361e-07,3.740773940583798351e-07,3.844684327822237342e-07,3.948594715060676332e-07,4.052505102299115322e-07,4.156415489537554312e-07,4.260325876775993302e-07,4.364236264014432292e-07,4.468146651252871282e-07,4.572057038491310273e-07,4.675967425729749263e-07,4.779877812968188253e-07,4.883788200206627243e-07,4.987698587445066233e-07,5.091608974683505223e-07,5.195519361921944214e-07,5.299429749160383204e-07,5.403340136398822194e-07,5.507250523637261184e-07,5.611160910875700174e-07,5.715071298114139164e-07,5.818981685352578154e-07,5.922892072591017145e-07,6.026802459829456135e-07,6.130712847067895125e-07,6.234623234306334115e-07,6.338533621544773105e-07,6.442444008783212095e-07,6.546354396021651085e-07 +0.000000000000000000e+00,1.393208860125310293e-08,2.786417720250620585e-08,4.179626580375931209e-08,5.572835440501241832e-08,6.966044300626552456e-08,8.359253160751862417e-08,9.752462020877172379e-08,1.114567088100248234e-07,1.253887974112779230e-07,1.393208860125310226e-07,1.532529746137841223e-07,1.671850632150372219e-07,1.811171518162903215e-07,1.950492404175434211e-07,2.089813290187965207e-07,2.229134176200496203e-07,2.368455062213027200e-07,2.507775948225558461e-07,2.647096834238089721e-07,2.786417720250620982e-07,2.925738606263152243e-07,3.065059492275683504e-07,3.204380378288214765e-07,3.343701264300746026e-07,3.483022150313277287e-07,3.622343036325808547e-07,3.761663922338339808e-07,3.900984808350871069e-07,4.040305694363402330e-07,4.179626580375933591e-07,4.318947466388464852e-07,4.458268352400996113e-07,4.597589238413527374e-07,4.736910124426058634e-07,4.876231010438589895e-07,5.015551896451121156e-07,5.154872782463652417e-07,5.294193668476183678e-07,5.433514554488714939e-07,5.572835440501246200e-07,5.712156326513777461e-07,5.851477212526308721e-07,5.990798098538839982e-07,6.130118984551371243e-07,6.269439870563902504e-07,6.408760756576433765e-07,6.548081642588965026e-07,6.687402528601496287e-07,6.826723414614027547e-07,6.966044300626558808e-07,7.105365186639090069e-07,7.244686072651621330e-07,7.384006958664152591e-07,7.523327844676683852e-07,7.662648730689215113e-07,7.801969616701746374e-07,7.941290502714277634e-07,8.080611388726808895e-07,8.219932274739340156e-07,8.359253160751871417e-07,8.498574046764402678e-07,8.637894932776933939e-07,8.777215818789465200e-07 +0.000000000000000000e+00,1.372390418319741759e-08,2.744780836639483518e-08,4.117171254959225277e-08,5.489561673278967036e-08,6.861952091598708795e-08,8.234342509918450554e-08,9.606732928238192313e-08,1.097912334655793407e-07,1.235151376487767583e-07,1.372390418319741759e-07,1.509629460151715935e-07,1.646868501983690111e-07,1.784107543815664287e-07,1.921346585647638463e-07,2.058585627479612638e-07,2.195824669311586814e-07,2.333063711143560990e-07,2.470302752975535166e-07,2.607541794807509342e-07,2.744780836639483518e-07,2.882019878471457694e-07,3.019258920303431870e-07,3.156497962135406046e-07,3.293737003967380221e-07,3.430976045799354397e-07,3.568215087631328573e-07,3.705454129463302749e-07,3.842693171295276925e-07,3.979932213127251101e-07,4.117171254959225277e-07,4.254410296791199453e-07,4.391649338623173629e-07,4.528888380455147805e-07,4.666127422287121980e-07,4.803366464119096156e-07,4.940605505951070332e-07,5.077844547783044508e-07,5.215083589615018684e-07,5.352322631446992860e-07,5.489561673278967036e-07,5.626800715110941212e-07,5.764039756942915388e-07,5.901278798774889564e-07,6.038517840606863739e-07,6.175756882438837915e-07,6.312995924270812091e-07,6.450234966102786267e-07,6.587474007934760443e-07,6.724713049766734619e-07,6.861952091598708795e-07,6.999191133430682971e-07,7.136430175262657147e-07,7.273669217094631322e-07,7.410908258926605498e-07,7.548147300758579674e-07,7.685386342590553850e-07,7.822625384422528026e-07,7.959864426254502202e-07,8.097103468086476378e-07,8.234342509918450554e-07,8.371581551750424730e-07,8.508820593582398906e-07,8.646059635414373081e-07 +0.000000000000000000e+00,1.605921487975867774e-08,3.211842975951735548e-08,4.817764463927602992e-08,6.423685951903469773e-08,8.029607439879336555e-08,9.635528927855203337e-08,1.124145041583107012e-07,1.284737190380693690e-07,1.445329339178280501e-07,1.605921487975867311e-07,1.766513636773454122e-07,1.927105785571040932e-07,2.087697934368627743e-07,2.248290083166214553e-07,2.408882231963801364e-07,2.569474380761387909e-07,2.730066529558974455e-07,2.890658678356561001e-07,3.051250827154147547e-07,3.211842975951734093e-07,3.372435124749320638e-07,3.533027273546907184e-07,3.693619422344493730e-07,3.854211571142080276e-07,4.014803719939666822e-07,4.175395868737253368e-07,4.335988017534839913e-07,4.496580166332426459e-07,4.657172315130013005e-07,4.817764463927599551e-07,4.978356612725186626e-07,5.138948761522773701e-07,5.299540910320360776e-07,5.460133059117947852e-07,5.620725207915534927e-07,5.781317356713122002e-07,5.941909505510709077e-07,6.102501654308296152e-07,6.263093803105883228e-07,6.423685951903470303e-07,6.584278100701057378e-07,6.744870249498644453e-07,6.905462398296231528e-07,7.066054547093818604e-07,7.226646695891405679e-07,7.387238844688992754e-07,7.547830993486579829e-07,7.708423142284166905e-07,7.869015291081753980e-07,8.029607439879341055e-07,8.190199588676928130e-07,8.350791737474515205e-07,8.511383886272102281e-07,8.671976035069689356e-07,8.832568183867276431e-07,8.993160332664863506e-07,9.153752481462450581e-07,9.314344630260037657e-07,9.474936779057624732e-07,9.635528927855211807e-07,9.796121076652798882e-07,9.956713225450385957e-07,1.011730537424797303e-06 +0.000000000000000000e+00,1.373820094626885199e-08,2.747640189253770399e-08,4.121460283880655763e-08,5.495280378507541459e-08,6.869100473134426493e-08,8.242920567761311527e-08,9.616740662388196561e-08,1.099056075701508159e-07,1.236438085164196663e-07,1.373820094626885299e-07,1.511202104089573934e-07,1.648584113552262570e-07,1.785966123014951206e-07,1.923348132477639842e-07,2.060730141940328477e-07,2.198112151403017113e-07,2.335494160865705749e-07,2.472876170328394385e-07,2.610258179791083285e-07,2.747640189253772185e-07,2.885022198716461086e-07,3.022404208179149986e-07,3.159786217641838887e-07,3.297168227104527787e-07,3.434550236567216688e-07,3.571932246029905588e-07,3.709314255492594488e-07,3.846696264955283389e-07,3.984078274417972289e-07,4.121460283880661190e-07,4.258842293343350090e-07,4.396224302806038991e-07,4.533606312268727891e-07,4.670988321731416792e-07,4.808370331194105692e-07,4.945752340656794063e-07,5.083134350119482434e-07,5.220516359582170805e-07,5.357898369044859176e-07,5.495280378507547547e-07,5.632662387970235918e-07,5.770044397432924289e-07,5.907426406895612660e-07,6.044808416358301031e-07,6.182190425820989402e-07,6.319572435283677773e-07,6.456954444746366144e-07,6.594336454209054516e-07,6.731718463671742887e-07,6.869100473134431258e-07,7.006482482597119629e-07,7.143864492059808000e-07,7.281246501522496371e-07,7.418628510985184742e-07,7.556010520447873113e-07,7.693392529910561484e-07,7.830774539373249855e-07,7.968156548835938226e-07,8.105538558298626597e-07,8.242920567761314968e-07,8.380302577224003339e-07,8.517684586686691710e-07,8.655066596149380081e-07 +0.000000000000000000e+00,1.261726590808175160e-08,2.523453181616350319e-08,3.785179772424525644e-08,5.046906363232701300e-08,6.308632954040876956e-08,7.570359544849052612e-08,8.832086135657228268e-08,1.009381272646540392e-07,1.135553931727357958e-07,1.261726590808175656e-07,1.387899249888993486e-07,1.514071908969811317e-07,1.640244568050629147e-07,1.766417227131446977e-07,1.892589886212264807e-07,2.018762545293082638e-07,2.144935204373900468e-07,2.271107863454718298e-07,2.397280522535536129e-07,2.523453181616353959e-07,2.649625840697171789e-07,2.775798499777989620e-07,2.901971158858807450e-07,3.028143817939625280e-07,3.154316477020443110e-07,3.280489136101260941e-07,3.406661795182078771e-07,3.532834454262896601e-07,3.659007113343714432e-07,3.785179772424532262e-07,3.911352431505350092e-07,4.037525090586167922e-07,4.163697749666985753e-07,4.289870408747803583e-07,4.416043067828621413e-07,4.542215726909439244e-07,4.668388385990257074e-07,4.794561045071074375e-07,4.920733704151891676e-07,5.046906363232708977e-07,5.173079022313526278e-07,5.299251681394343578e-07,5.425424340475160879e-07,5.551596999555978180e-07,5.677769658636795481e-07,5.803942317717612782e-07,5.930114976798430083e-07,6.056287635879247384e-07,6.182460294960064685e-07,6.308632954040881986e-07,6.434805613121699287e-07,6.560978272202516587e-07,6.687150931283333888e-07,6.813323590364151189e-07,6.939496249444968490e-07,7.065668908525785791e-07,7.191841567606603092e-07,7.318014226687420393e-07,7.444186885768237694e-07,7.570359544849054995e-07,7.696532203929872295e-07,7.822704863010689596e-07,7.948877522091506897e-07 +0.000000000000000000e+00,1.605715395588012064e-08,3.211430791176024129e-08,4.817146186764036524e-08,6.422861582352049581e-08,8.028576977940062638e-08,9.634292373528075695e-08,1.124000776911608875e-07,1.284572316470410181e-07,1.445143856029211619e-07,1.605715395588013057e-07,1.766286935146814495e-07,1.926858474705615933e-07,2.087430014264417371e-07,2.248001553823218809e-07,2.408573093382020247e-07,2.569144632940821950e-07,2.729716172499623653e-07,2.890287712058425356e-07,3.050859251617227058e-07,3.211430791176028761e-07,3.372002330734830464e-07,3.532573870293632167e-07,3.693145409852433869e-07,3.853716949411235572e-07,4.014288488970037275e-07,4.174860028528838978e-07,4.335431568087640680e-07,4.496003107646442383e-07,4.656574647205244086e-07,4.817146186764045789e-07,4.977717726322846962e-07,5.138289265881648135e-07,5.298860805440449309e-07,5.459432344999250482e-07,5.620003884558051655e-07,5.780575424116852829e-07,5.941146963675654002e-07,6.101718503234455176e-07,6.262290042793256349e-07,6.422861582352057522e-07,6.583433121910858696e-07,6.744004661469659869e-07,6.904576201028461042e-07,7.065147740587262216e-07,7.225719280146063389e-07,7.386290819704864562e-07,7.546862359263665736e-07,7.707433898822466909e-07,7.868005438381268082e-07,8.028576977940069256e-07,8.189148517498870429e-07,8.349720057057671603e-07,8.510291596616472776e-07,8.670863136175273949e-07,8.831434675734075123e-07,8.992006215292876296e-07,9.152577754851677469e-07,9.313149294410478643e-07,9.473720833969279816e-07,9.634292373528080989e-07,9.794863913086882163e-07,9.955435452645683336e-07,1.011600699220448451e-06 +0.000000000000000000e+00,1.605921487975574291e-08,3.211842975951148581e-08,4.817764463926722872e-08,6.423685951902297162e-08,8.029607439877871453e-08,9.635528927853445743e-08,1.124145041582902003e-07,1.284737190380459432e-07,1.445329339178016861e-07,1.605921487975574291e-07,1.766513636773131720e-07,1.927105785570689149e-07,2.087697934368246578e-07,2.248290083165804007e-07,2.408882231963361436e-07,2.569474380760918865e-07,2.730066529558476294e-07,2.890658678356033723e-07,3.051250827153591152e-07,3.211842975951148581e-07,3.372435124748706010e-07,3.533027273546263439e-07,3.693619422343820868e-07,3.854211571141378297e-07,4.014803719938935726e-07,4.175395868736493155e-07,4.335988017534050584e-07,4.496580166331608014e-07,4.657172315129165443e-07,4.817764463926722872e-07,4.978356612724280301e-07,5.138948761521837730e-07,5.299540910319395159e-07,5.460133059116952588e-07,5.620725207914510017e-07,5.781317356712067446e-07,5.941909505509624875e-07,6.102501654307182304e-07,6.263093803104739733e-07,6.423685951902297162e-07,6.584278100699854591e-07,6.744870249497412020e-07,6.905462398294969449e-07,7.066054547092526878e-07,7.226646695890084307e-07,7.387238844687641737e-07,7.547830993485199166e-07,7.708423142282756595e-07,7.869015291080314024e-07,8.029607439877871453e-07,8.190199588675428882e-07,8.350791737472986311e-07,8.511383886270543740e-07,8.671976035068101169e-07,8.832568183865658598e-07,8.993160332663216027e-07,9.153752481460773456e-07,9.314344630258330885e-07,9.474936779055888314e-07,9.635528927853445743e-07,9.796121076651003172e-07,9.956713225448560601e-07,1.011730537424611803e-06 +0.000000000000000000e+00,1.039103872384012211e-08,2.078207744768024422e-08,3.117311617152036798e-08,4.156415489536049505e-08,5.195519361920062212e-08,6.234623234304074919e-08,7.273727106688087626e-08,8.312830979072100334e-08,9.351934851456113041e-08,1.039103872384012575e-07,1.143014259622413846e-07,1.246924646860815249e-07,1.350835034099216652e-07,1.454745421337618055e-07,1.558655808576019458e-07,1.662566195814420861e-07,1.766476583052822264e-07,1.870386970291223667e-07,1.974297357529625070e-07,2.078207744768026473e-07,2.182118132006427876e-07,2.286028519244829279e-07,2.389938906483230682e-07,2.493849293721632085e-07,2.597759680960033488e-07,2.701670068198434891e-07,2.805580455436836295e-07,2.909490842675237698e-07,3.013401229913639101e-07,3.117311617152040504e-07,3.221222004390441907e-07,3.325132391628843310e-07,3.429042778867244713e-07,3.532953166105646116e-07,3.636863553344047519e-07,3.740773940582448922e-07,3.844684327820850325e-07,3.948594715059251728e-07,4.052505102297653131e-07,4.156415489536054534e-07,4.260325876774455937e-07,4.364236264012857340e-07,4.468146651251258744e-07,4.572057038489660147e-07,4.675967425728061550e-07,4.779877812966463482e-07,4.883788200204865415e-07,4.987698587443267347e-07,5.091608974681669279e-07,5.195519361920071212e-07,5.299429749158473144e-07,5.403340136396875077e-07,5.507250523635277009e-07,5.611160910873678942e-07,5.715071298112080874e-07,5.818981685350482807e-07,5.922892072588884739e-07,6.026802459827286672e-07,6.130712847065688604e-07,6.234623234304090537e-07,6.338533621542492469e-07,6.442444008780894401e-07,6.546354396019296334e-07 +0.000000000000000000e+00,1.393208860124776265e-08,2.786417720249552530e-08,4.179626580374328464e-08,5.572835440499104397e-08,6.966044300623880331e-08,8.359253160748656927e-08,9.752462020873433523e-08,1.114567088099821012e-07,1.253887974112298539e-07,1.393208860124776066e-07,1.532529746137253593e-07,1.671850632149731121e-07,1.811171518162208648e-07,1.950492404174686175e-07,2.089813290187163702e-07,2.229134176199641230e-07,2.368455062212118757e-07,2.507775948224596019e-07,2.647096834237073282e-07,2.786417720249550544e-07,2.925738606262027807e-07,3.065059492274505069e-07,3.204380378286982332e-07,3.343701264299459594e-07,3.483022150311936857e-07,3.622343036324414119e-07,3.761663922336891382e-07,3.900984808349368645e-07,4.040305694361845907e-07,4.179626580374323170e-07,4.318947466386800432e-07,4.458268352399277695e-07,4.597589238411754957e-07,4.736910124424232220e-07,4.876231010436709482e-07,5.015551896449186745e-07,5.154872782461664007e-07,5.294193668474141270e-07,5.433514554486618532e-07,5.572835440499095795e-07,5.712156326511573057e-07,5.851477212524050320e-07,5.990798098536527582e-07,6.130118984549004845e-07,6.269439870561482107e-07,6.408760756573959370e-07,6.548081642586436632e-07,6.687402528598913895e-07,6.826723414611391157e-07,6.966044300623868420e-07,7.105365186636345682e-07,7.244686072648822945e-07,7.384006958661300208e-07,7.523327844673777470e-07,7.662648730686254733e-07,7.801969616698731995e-07,7.941290502711209258e-07,8.080611388723686520e-07,8.219932274736163783e-07,8.359253160748641045e-07,8.498574046761118308e-07,8.637894932773595570e-07,8.777215818786072833e-07 +0.000000000000000000e+00,1.372390418319200287e-08,2.744780836638400573e-08,4.117171254957600694e-08,5.489561673276800484e-08,6.861952091596000936e-08,8.234342509915201388e-08,9.606732928234401840e-08,1.097912334655360229e-07,1.235151376487280274e-07,1.372390418319200187e-07,1.509629460151120100e-07,1.646868501983040013e-07,1.784107543814959926e-07,1.921346585646879839e-07,2.058585627478799752e-07,2.195824669310719664e-07,2.333063711142639577e-07,2.470302752974559490e-07,2.607541794806479138e-07,2.744780836638398786e-07,2.882019878470318434e-07,3.019258920302238083e-07,3.156497962134157731e-07,3.293737003966077379e-07,3.430976045797997027e-07,3.568215087629916675e-07,3.705454129461836323e-07,3.842693171293755972e-07,3.979932213125675620e-07,4.117171254957595268e-07,4.254410296789514916e-07,4.391649338621434564e-07,4.528888380453354212e-07,4.666127422285273860e-07,4.803366464117193509e-07,4.940605505949113686e-07,5.077844547781033864e-07,5.215083589612954041e-07,5.352322631444874219e-07,5.489561673276794396e-07,5.626800715108714574e-07,5.764039756940634751e-07,5.901278798772554929e-07,6.038517840604475106e-07,6.175756882436395284e-07,6.312995924268315462e-07,6.450234966100235639e-07,6.587474007932155817e-07,6.724713049764075994e-07,6.861952091595996172e-07,6.999191133427916349e-07,7.136430175259836527e-07,7.273669217091756704e-07,7.410908258923676882e-07,7.548147300755597059e-07,7.685386342587517237e-07,7.822625384419437415e-07,7.959864426251357592e-07,8.097103468083277770e-07,8.234342509915197947e-07,8.371581551747118125e-07,8.508820593579038302e-07,8.646059635410958480e-07 +0.000000000000000000e+00,1.712441290218704497e-08,3.424882580437408994e-08,5.137323870656113160e-08,6.849765160874816664e-08,8.562206451093520169e-08,1.027464774131222367e-07,1.198708903153092585e-07,1.369953032174962803e-07,1.541197161196833022e-07,1.712441290218703240e-07,1.883685419240573458e-07,2.054929548262443676e-07,2.226173677284313894e-07,2.397417806306184112e-07,2.568661935328054330e-07,2.739906064349924548e-07,2.911150193371794766e-07,3.082394322393664984e-07,3.253638451415535202e-07,3.424882580437405420e-07,3.596126709459275639e-07,3.767370838481145857e-07,3.938614967503016075e-07,4.109859096524886293e-07,4.281103225546756511e-07,4.452347354568626729e-07,4.623591483590496947e-07,4.794835612612367165e-07,4.966079741634237383e-07,5.137323870656107601e-07,5.308567999677977819e-07,5.479812128699848037e-07,5.651056257721718255e-07,5.822300386743588474e-07,5.993544515765458692e-07,6.164788644787328910e-07,6.336032773809199128e-07,6.507276902831069346e-07,6.678521031852939564e-07,6.849765160874809782e-07,7.021009289896680000e-07,7.192253418918550218e-07,7.363497547940420436e-07,7.534741676962290654e-07,7.705985805984160872e-07,7.877229935006031091e-07,8.048474064027901309e-07,8.219718193049771527e-07,8.390962322071641745e-07,8.562206451093511963e-07,8.733450580115382181e-07,8.904694709137252399e-07,9.075938838159122617e-07,9.247182967180992835e-07,9.418427096202863053e-07,9.589671225224732213e-07,9.760915354246601372e-07,9.932159483268470531e-07,1.010340361229033969e-06,1.027464774131220885e-06,1.044589187033407801e-06,1.061713599935594717e-06,1.078838012837781633e-06 +0.000000000000000000e+00,2.064480713191270773e-08,4.128961426382541546e-08,6.193442139573812981e-08,8.257922852765084416e-08,1.032240356595635585e-07,1.238688427914762596e-07,1.445136499233889607e-07,1.651584570553016619e-07,1.858032641872143630e-07,2.064480713191270641e-07,2.270928784510397652e-07,2.477376855829524663e-07,2.683824927148651674e-07,2.890272998467778685e-07,3.096721069786905696e-07,3.303169141106032708e-07,3.509617212425159719e-07,3.716065283744286730e-07,3.922513355063413741e-07,4.128961426382540752e-07,4.335409497701667763e-07,4.541857569020794774e-07,4.748305640339921786e-07,4.954753711659048267e-07,5.161201782978174749e-07,5.367649854297301231e-07,5.574097925616427713e-07,5.780545996935554194e-07,5.986994068254680676e-07,6.193442139573807158e-07,6.399890210892933640e-07,6.606338282212060121e-07,6.812786353531186603e-07,7.019234424850313085e-07,7.225682496169439566e-07,7.432130567488566048e-07,7.638578638807692530e-07,7.845026710126819012e-07,8.051474781445945493e-07,8.257922852765071975e-07,8.464370924084198457e-07,8.670818995403324939e-07,8.877267066722451420e-07,9.083715138041577902e-07,9.290163209360704384e-07,9.496611280679830866e-07,9.703059351998958406e-07,9.909507423318085947e-07,1.011595549463721349e-06,1.032240356595634103e-06,1.052885163727546857e-06,1.073529970859459611e-06,1.094174777991372365e-06,1.114819585123285119e-06,1.135464392255197873e-06,1.156109199387110627e-06,1.176754006519023381e-06,1.197398813650936135e-06,1.218043620782848889e-06,1.238688427914761643e-06,1.259333235046674397e-06,1.279978042178587151e-06,1.300622849310499905e-06 +0.000000000000000000e+00,2.064546557604407862e-08,4.129093115208815725e-08,6.193639672813223257e-08,8.258186230417630126e-08,1.032273278802203700e-07,1.238727934562644387e-07,1.445182590323084941e-07,1.651637246083525496e-07,1.858091901843966051e-07,2.064546557604406605e-07,2.271001213364847160e-07,2.477455869125287714e-07,2.683910524885728269e-07,2.890365180646168824e-07,3.096819836406609378e-07,3.303274492167049933e-07,3.509729147927490488e-07,3.716183803687931042e-07,3.922638459448371597e-07,4.129093115208812152e-07,4.335547770969252706e-07,4.542002426729693261e-07,4.748457082490133815e-07,4.954911738250574370e-07,5.161366394011014925e-07,5.367821049771455479e-07,5.574275705531896034e-07,5.780730361292336589e-07,5.987185017052777143e-07,6.193639672813217698e-07,6.400094328573658253e-07,6.606548984334098807e-07,6.813003640094539362e-07,7.019458295854979916e-07,7.225912951615420471e-07,7.432367607375861026e-07,7.638822263136301580e-07,7.845276918896742135e-07,8.051731574657182690e-07,8.258186230417623244e-07,8.464640886178063799e-07,8.671095541938504354e-07,8.877550197698944908e-07,9.084004853459385463e-07,9.290459509219826017e-07,9.496914164980266572e-07,9.703368820740707127e-07,9.909823476501146623e-07,1.011627813226158612e-06,1.032273278802202561e-06,1.052918744378246511e-06,1.073564209954290461e-06,1.094209675530334410e-06,1.114855141106378360e-06,1.135500606682422309e-06,1.156146072258466259e-06,1.176791537834510209e-06,1.197437003410554158e-06,1.218082468986598108e-06,1.238727934562642057e-06,1.259373400138686007e-06,1.280018865714729956e-06,1.300664331290773906e-06 +0.000000000000000000e+00,1.486520268283489671e-08,2.973040536566979341e-08,4.459560804850469178e-08,5.946081073133959345e-08,7.432601341417448850e-08,8.919121609700938355e-08,1.040564187798442786e-07,1.189216214626791737e-07,1.337868241455140687e-07,1.486520268283489770e-07,1.635172295111838853e-07,1.783824321940187936e-07,1.932476348768537019e-07,2.081128375596886101e-07,2.229780402425235184e-07,2.378432429253584267e-07,2.527084456081933350e-07,2.675736482910282433e-07,2.824388509738631516e-07,2.973040536566980599e-07,3.121692563395329682e-07,3.270344590223678764e-07,3.418996617052027847e-07,3.567648643880376930e-07,3.716300670708726013e-07,3.864952697537075096e-07,4.013604724365424179e-07,4.162256751193773262e-07,4.310908778022122345e-07,4.459560804850471427e-07,4.608212831678820510e-07,4.756864858507169593e-07,4.905516885335518676e-07,5.054168912163867759e-07,5.202820938992216842e-07,5.351472965820565925e-07,5.500124992648915008e-07,5.648777019477264090e-07,5.797429046305613173e-07,5.946081073133962256e-07,6.094733099962311339e-07,6.243385126790660422e-07,6.392037153619009505e-07,6.540689180447358588e-07,6.689341207275707671e-07,6.837993234104056753e-07,6.986645260932405836e-07,7.135297287760754919e-07,7.283949314589104002e-07,7.432601341417453085e-07,7.581253368245802168e-07,7.729905395074151251e-07,7.878557421902500334e-07,8.027209448730849416e-07,8.175861475559198499e-07,8.324513502387547582e-07,8.473165529215896665e-07,8.621817556044245748e-07,8.770469582872594831e-07,8.919121609700943914e-07,9.067773636529292997e-07,9.216425663357642079e-07,9.365077690185991162e-07 +0.000000000000000000e+00,1.865683969149157035e-08,3.731367938298314070e-08,5.597051907447471105e-08,7.462735876596628140e-08,9.328419845745785837e-08,1.119410381489494353e-07,1.305978778404410123e-07,1.492547175319325893e-07,1.679115572234241662e-07,1.865683969149157432e-07,2.052252366064073202e-07,2.238820762978988971e-07,2.425389159893904741e-07,2.611957556808820246e-07,2.798525953723735751e-07,2.985094350638651256e-07,3.171662747553566761e-07,3.358231144468482266e-07,3.544799541383397771e-07,3.731367938298313276e-07,3.917936335213228781e-07,4.104504732128144286e-07,4.291073129043059791e-07,4.477641525957975296e-07,4.664209922872890801e-07,4.850778319787806306e-07,5.037346716702722340e-07,5.223915113617638375e-07,5.410483510532554409e-07,5.597051907447470443e-07,5.783620304362386478e-07,5.970188701277302512e-07,6.156757098192218547e-07,6.343325495107134581e-07,6.529893892022050615e-07,6.716462288936966650e-07,6.903030685851882684e-07,7.089599082766798718e-07,7.276167479681714753e-07,7.462735876596630787e-07,7.649304273511546822e-07,7.835872670426462856e-07,8.022441067341378890e-07,8.209009464256294925e-07,8.395577861171210959e-07,8.582146258086126994e-07,8.768714655001043028e-07,8.955283051915959062e-07,9.141851448830875097e-07,9.328419845745791131e-07,9.514988242660707165e-07,9.701556639575623200e-07,9.888125036490539234e-07,1.007469343340545527e-06,1.026126183032037130e-06,1.044783022723528734e-06,1.063439862415020337e-06,1.082096702106511941e-06,1.100753541798003544e-06,1.119410381489495147e-06,1.138067221180986751e-06,1.156724060872478354e-06,1.175380900563969958e-06 +0.000000000000000000e+00,1.836520859744459060e-08,3.673041719488918120e-08,5.509562579233377180e-08,7.346083438977836239e-08,9.182604298722294638e-08,1.101912515846675304e-07,1.285564601821121143e-07,1.469216687795566983e-07,1.652868773770012823e-07,1.836520859744458663e-07,2.020172945718904503e-07,2.203825031693350342e-07,2.387477117667796447e-07,2.571129203642242816e-07,2.754781289616689185e-07,2.938433375591135555e-07,3.122085461565581924e-07,3.305737547540028293e-07,3.489389633514474662e-07,3.673041719488921031e-07,3.856693805463367401e-07,4.040345891437813770e-07,4.223997977412260139e-07,4.407650063386706508e-07,4.591302149361152877e-07,4.774954235335599247e-07,4.958606321310045616e-07,5.142258407284491985e-07,5.325910493258938354e-07,5.509562579233384723e-07,5.693214665207831093e-07,5.876866751182277462e-07,6.060518837156723831e-07,6.244170923131170200e-07,6.427823009105616569e-07,6.611475095080062939e-07,6.795127181054509308e-07,6.978779267028955677e-07,7.162431353003402046e-07,7.346083438977848416e-07,7.529735524952294785e-07,7.713387610926741154e-07,7.897039696901187523e-07,8.080691782875633892e-07,8.264343868850080262e-07,8.447995954824526631e-07,8.631648040798973000e-07,8.815300126773419369e-07,8.998952212747865738e-07,9.182604298722312108e-07,9.366256384696758477e-07,9.549908470671204846e-07,9.733560556645651215e-07,9.917212642620097584e-07,1.010086472859454395e-06,1.028451681456899032e-06,1.046816890054343669e-06,1.065182098651788306e-06,1.083547307249232943e-06,1.101912515846677580e-06,1.120277724444122217e-06,1.138642933041566854e-06,1.157008141639011491e-06 +0.000000000000000000e+00,2.064567216720713908e-08,4.129134433441427816e-08,6.193701650162142055e-08,8.258268866882856955e-08,1.032283608360357186e-07,1.238740330032428676e-07,1.445197051704500166e-07,1.651653773376571656e-07,1.858110495048643146e-07,2.064567216720714636e-07,2.271023938392786126e-07,2.477480660064857881e-07,2.683937381736929900e-07,2.890394103409001920e-07,3.096850825081073939e-07,3.303307546753145959e-07,3.509764268425217978e-07,3.716220990097289997e-07,3.922677711769362017e-07,4.129134433441434036e-07,4.335591155113506056e-07,4.542047876785578075e-07,4.748504598457650095e-07,4.954961320129722114e-07,5.161418041801794134e-07,5.367874763473866153e-07,5.574331485145938173e-07,5.780788206818010192e-07,5.987244928490082211e-07,6.193701650162154231e-07,6.400158371834226250e-07,6.606615093506298270e-07,6.813071815178370289e-07,7.019528536850442309e-07,7.225985258522514328e-07,7.432441980194586348e-07,7.638898701866658367e-07,7.845355423538730387e-07,8.051812145210802406e-07,8.258268866882874425e-07,8.464725588554946445e-07,8.671182310227018464e-07,8.877639031899090484e-07,9.084095753571162503e-07,9.290552475243234523e-07,9.497009196915306542e-07,9.703465918587378562e-07,9.909922640259450581e-07,1.011637936193152260e-06,1.032283608360359462e-06,1.052929280527566664e-06,1.073574952694773866e-06,1.094220624861981068e-06,1.114866297029188270e-06,1.135511969196395472e-06,1.156157641363602674e-06,1.176803313530809876e-06,1.197448985698017078e-06,1.218094657865224280e-06,1.238740330032431481e-06,1.259386002199638683e-06,1.280031674366845885e-06,1.300677346534053087e-06 +0.000000000000000000e+00,1.836627793936574511e-08,3.673255587873149022e-08,5.509883381809723533e-08,7.346511175746298044e-08,9.183138969682873217e-08,1.101976676361944839e-07,1.285639455755602356e-07,1.469302235149259874e-07,1.652965014542917391e-07,1.836627793936574908e-07,2.020290573330232425e-07,2.203953352723889943e-07,2.387616132117547725e-07,2.571278911511205242e-07,2.754941690904862759e-07,2.938604470298520276e-07,3.122267249692177794e-07,3.305930029085835311e-07,3.489592808479492828e-07,3.673255587873150345e-07,3.856918367266807863e-07,4.040581146660465380e-07,4.224243926054122897e-07,4.407906705447780415e-07,4.591569484841437932e-07,4.775232264235095449e-07,4.958895043628752966e-07,5.142557823022410484e-07,5.326220602416068001e-07,5.509883381809725518e-07,5.693546161203383036e-07,5.877208940597040553e-07,6.060871719990698070e-07,6.244534499384355587e-07,6.428197278778013105e-07,6.611860058171670622e-07,6.795522837565328139e-07,6.979185616958985656e-07,7.162848396352643174e-07,7.346511175746300691e-07,7.530173955139958208e-07,7.713836734533615726e-07,7.897499513927273243e-07,8.081162293320930760e-07,8.264825072714588277e-07,8.448487852108245795e-07,8.632150631501903312e-07,8.815813410895560829e-07,8.999476190289218346e-07,9.183138969682875864e-07,9.366801749076533381e-07,9.550464528470190898e-07,9.734127307863848416e-07,9.917790087257505933e-07,1.010145286665116345e-06,1.028511564604482097e-06,1.046877842543847848e-06,1.065244120483213600e-06,1.083610398422579352e-06,1.101976676361945104e-06,1.120342954301310855e-06,1.138709232240676607e-06,1.157075510180042359e-06 +0.000000000000000000e+00,1.712441290218195615e-08,3.424882580436391231e-08,5.137323870654587177e-08,6.849765160872783785e-08,8.562206451090980393e-08,1.027464774130917700e-07,1.198708903152737361e-07,1.369953032174557022e-07,1.541197161196376683e-07,1.712441290218196343e-07,1.883685419240016004e-07,2.054929548261835665e-07,2.226173677283655326e-07,2.397417806305474722e-07,2.568661935327294118e-07,2.739906064349113514e-07,2.911150193370932910e-07,3.082394322392752306e-07,3.253638451414571702e-07,3.424882580436391098e-07,3.596126709458210495e-07,3.767370838480029891e-07,3.938614967501849287e-07,4.109859096523668683e-07,4.281103225545488079e-07,4.452347354567307475e-07,4.623591483589126871e-07,4.794835612610946267e-07,4.966079741632765663e-07,5.137323870654585060e-07,5.308567999676404456e-07,5.479812128698223852e-07,5.651056257720043248e-07,5.822300386741862644e-07,5.993544515763682040e-07,6.164788644785501436e-07,6.336032773807320832e-07,6.507276902829140228e-07,6.678521031850959624e-07,6.849765160872779021e-07,7.021009289894598417e-07,7.192253418916417813e-07,7.363497547938237209e-07,7.534741676960056605e-07,7.705985805981876001e-07,7.877229935003695397e-07,8.048474064025514793e-07,8.219718193047334189e-07,8.390962322069153586e-07,8.562206451090972982e-07,8.733450580112792378e-07,8.904694709134611774e-07,9.075938838156431170e-07,9.247182967178250566e-07,9.418427096200069962e-07,9.589671225221890417e-07,9.760915354243710872e-07,9.932159483265531327e-07,1.010340361228735178e-06,1.027464774130917224e-06,1.044589187033099269e-06,1.061713599935281315e-06,1.078838012837463360e-06 +0.000000000000000000e+00,2.064480713190595463e-08,4.128961426381190926e-08,6.193442139571786719e-08,8.257922852762383175e-08,1.032240356595297963e-07,1.238688427914357609e-07,1.445136499233417386e-07,1.651584570552477164e-07,1.858032641871536942e-07,2.064480713190596720e-07,2.270928784509656498e-07,2.477376855828716276e-07,2.683824927147776054e-07,2.890272998466835832e-07,3.096721069785895610e-07,3.303169141104955388e-07,3.509617212424015165e-07,3.716065283743074943e-07,3.922513355062134721e-07,4.128961426381194499e-07,4.335409497700254277e-07,4.541857569019314055e-07,4.748305640338373833e-07,4.954753711657433611e-07,5.161201782976493389e-07,5.367649854295553167e-07,5.574097925614612944e-07,5.780545996933672722e-07,5.986994068252732500e-07,6.193442139571792278e-07,6.399890210890852056e-07,6.606338282209911834e-07,6.812786353528971612e-07,7.019234424848031390e-07,7.225682496167091168e-07,7.432130567486150946e-07,7.638578638805210723e-07,7.845026710124270501e-07,8.051474781443330279e-07,8.257922852762390057e-07,8.464370924081449835e-07,8.670818995400509613e-07,8.877267066719569391e-07,9.083715138038629169e-07,9.290163209357688947e-07,9.496611280676748725e-07,9.703059351995807444e-07,9.909507423314865104e-07,1.011595549463392276e-06,1.032240356595298042e-06,1.052885163727203808e-06,1.073529970859109575e-06,1.094174777991015341e-06,1.114819585122921107e-06,1.135464392254826873e-06,1.156109199386732639e-06,1.176754006518638405e-06,1.197398813650544171e-06,1.218043620782449937e-06,1.238688427914355703e-06,1.259333235046261469e-06,1.279978042178167235e-06,1.300622849310073001e-06 +0.000000000000000000e+00,2.064567216720380389e-08,4.129134433440760778e-08,6.193701650161141497e-08,8.258268866881522878e-08,1.032283608360190426e-07,1.238740330032228564e-07,1.445197051704266702e-07,1.651653773376304840e-07,1.858110495048342979e-07,2.064567216720381117e-07,2.271023938392419255e-07,2.477480660064457658e-07,2.683937381736495796e-07,2.890394103408533934e-07,3.096850825080572072e-07,3.303307546752610210e-07,3.509764268424648348e-07,3.716220990096686486e-07,3.922677711768724625e-07,4.129134433440762763e-07,4.335591155112800901e-07,4.542047876784839039e-07,4.748504598456877177e-07,4.954961320128915315e-07,5.161418041800953453e-07,5.367874763472991592e-07,5.574331485145029730e-07,5.780788206817067868e-07,5.987244928489106006e-07,6.193701650161144144e-07,6.400158371833182282e-07,6.606615093505220420e-07,6.813071815177258559e-07,7.019528536849296697e-07,7.225985258521334835e-07,7.432441980193372973e-07,7.638898701865411111e-07,7.845355423537449249e-07,8.051812145209487387e-07,8.258268866881525525e-07,8.464725588553563664e-07,8.671182310225601802e-07,8.877639031897639940e-07,9.084095753569678078e-07,9.290552475241716216e-07,9.497009196913754354e-07,9.703465918585792492e-07,9.909922640257830631e-07,1.011637936192986877e-06,1.032283608360190691e-06,1.052929280527394504e-06,1.073574952694598318e-06,1.094220624861802132e-06,1.114866297029005946e-06,1.135511969196209760e-06,1.156157641363413574e-06,1.176803313530617387e-06,1.197448985697821201e-06,1.218094657865025015e-06,1.238740330032228829e-06,1.259386002199432643e-06,1.280031674366636456e-06,1.300677346533840270e-06 +0.000000000000000000e+00,1.486520268283020659e-08,2.973040536566041319e-08,4.459560804849061647e-08,5.946081073132081975e-08,7.432601341415102304e-08,8.919121609698123294e-08,1.040564187798114428e-07,1.189216214626416527e-07,1.337868241454718759e-07,1.486520268283020990e-07,1.635172295111323222e-07,1.783824321939625453e-07,1.932476348767927684e-07,2.081128375596229916e-07,2.229780402424532147e-07,2.378432429252834378e-07,2.527084456081136610e-07,2.675736482909438576e-07,2.824388509737740543e-07,2.973040536566042510e-07,3.121692563394344476e-07,3.270344590222646443e-07,3.418996617050948410e-07,3.567648643879250376e-07,3.716300670707552343e-07,3.864952697535854310e-07,4.013604724364156276e-07,4.162256751192458243e-07,4.310908778020760210e-07,4.459560804849062176e-07,4.608212831677364143e-07,4.756864858505666110e-07,4.905516885333968606e-07,5.054168912162271102e-07,5.202820938990573598e-07,5.351472965818876094e-07,5.500124992647178590e-07,5.648777019475481086e-07,5.797429046303783582e-07,5.946081073132086078e-07,6.094733099960388574e-07,6.243385126788691070e-07,6.392037153616993566e-07,6.540689180445296062e-07,6.689341207273598559e-07,6.837993234101901055e-07,6.986645260930203551e-07,7.135297287758506047e-07,7.283949314586808543e-07,7.432601341415111039e-07,7.581253368243413535e-07,7.729905395071716031e-07,7.878557421900018527e-07,8.027209448728321023e-07,8.175861475556623519e-07,8.324513502384926015e-07,8.473165529213228511e-07,8.621817556041531007e-07,8.770469582869833503e-07,8.919121609698135999e-07,9.067773636526438496e-07,9.216425663354740992e-07,9.365077690183043488e-07 +0.000000000000000000e+00,1.865683969148537642e-08,3.731367938297075284e-08,5.597051907445612927e-08,7.462735876594150569e-08,9.328419845742688873e-08,1.119410381489122718e-07,1.305978778403976548e-07,1.492547175318830378e-07,1.679115572233684209e-07,1.865683969148538039e-07,2.052252366063391870e-07,2.238820762978245700e-07,2.425389159893099530e-07,2.611957556807953096e-07,2.798525953722806662e-07,2.985094350637660228e-07,3.171662747552513793e-07,3.358231144467367359e-07,3.544799541382220925e-07,3.731367938297074490e-07,3.917936335211928056e-07,4.104504732126781622e-07,4.291073129041635187e-07,4.477641525956488753e-07,4.664209922871342319e-07,4.850778319786195885e-07,5.037346716701049450e-07,5.223915113615903016e-07,5.410483510530756582e-07,5.597051907445610147e-07,5.783620304360463713e-07,5.970188701275317279e-07,6.156757098190170844e-07,6.343325495105024410e-07,6.529893892019877976e-07,6.716462288934731542e-07,6.903030685849585107e-07,7.089599082764438673e-07,7.276167479679292239e-07,7.462735876594145804e-07,7.649304273508999370e-07,7.835872670423852936e-07,8.022441067338706501e-07,8.209009464253560067e-07,8.395577861168413633e-07,8.582146258083267199e-07,8.768714654998120764e-07,8.955283051912974330e-07,9.141851448827827896e-07,9.328419845742681461e-07,9.514988242657535027e-07,9.701556639572389652e-07,9.888125036487244276e-07,1.007469343340209890e-06,1.026126183031695352e-06,1.044783022723180815e-06,1.063439862414666277e-06,1.082096702106151740e-06,1.100753541797637202e-06,1.119410381489122665e-06,1.138067221180608127e-06,1.156724060872093590e-06,1.175380900563579052e-06 +0.000000000000000000e+00,1.836520859743817829e-08,3.673041719487635659e-08,5.509562579231453488e-08,7.346083438975271318e-08,9.182604298719089147e-08,1.101912515846290698e-07,1.285564601820672481e-07,1.469216687795054264e-07,1.652868773769436046e-07,1.836520859743817829e-07,2.020172945718199612e-07,2.203825031692581395e-07,2.387477117666963178e-07,2.571129203641344961e-07,2.754781289615726744e-07,2.938433375590108527e-07,3.122085461564490310e-07,3.305737547538872093e-07,3.489389633513253876e-07,3.673041719487635659e-07,3.856693805462017442e-07,4.040345891436399225e-07,4.223997977410781008e-07,4.407650063385162791e-07,4.591302149359544574e-07,4.774954235333926357e-07,4.958606321308308139e-07,5.142258407282689922e-07,5.325910493257071705e-07,5.509562579231453488e-07,5.693214665205835271e-07,5.876866751180217054e-07,6.060518837154598837e-07,6.244170923128980620e-07,6.427823009103362403e-07,6.611475095077744186e-07,6.795127181052125969e-07,6.978779267026507752e-07,7.162431353000889535e-07,7.346083438975271318e-07,7.529735524949653101e-07,7.713387610924034884e-07,7.897039696898416667e-07,8.080691782872798450e-07,8.264343868847180232e-07,8.447995954821562015e-07,8.631648040795943798e-07,8.815300126770325581e-07,8.998952212744707364e-07,9.182604298719089147e-07,9.366256384693470930e-07,9.549908470667852713e-07,9.733560556642235555e-07,9.917212642616618397e-07,1.010086472859100124e-06,1.028451681456538408e-06,1.046816890053976692e-06,1.065182098651414976e-06,1.083547307248853261e-06,1.101912515846291545e-06,1.120277724443729829e-06,1.138642933041168113e-06,1.157008141638606397e-06 +0.000000000000000000e+00,2.166780452286702232e-08,4.333560904573404464e-08,6.500341356860107358e-08,8.667121809146810252e-08,1.083390226143351315e-07,1.300068271372021472e-07,1.516746316600691629e-07,1.733424361829361786e-07,1.950102407058031943e-07,2.166780452286702100e-07,2.383458497515372257e-07,2.600136542744042414e-07,2.816814587972712571e-07,3.033492633201382728e-07,3.250170678430052885e-07,3.466848723658723042e-07,3.683526768887393199e-07,3.900204814116063356e-07,4.116882859344733513e-07,4.333560904573403670e-07,4.550238949802073827e-07,4.766916995030743984e-07,4.983595040259414671e-07,5.200273085488085887e-07,5.416951130716757102e-07,5.633629175945428318e-07,5.850307221174099534e-07,6.066985266402770750e-07,6.283663311631441966e-07,6.500341356860113182e-07,6.717019402088784397e-07,6.933697447317455613e-07,7.150375492546126829e-07,7.367053537774798045e-07,7.583731583003469261e-07,7.800409628232140477e-07,8.017087673460811692e-07,8.233765718689482908e-07,8.450443763918154124e-07,8.667121809146825340e-07,8.883799854375496556e-07,9.100477899604167772e-07,9.317155944832838987e-07,9.533833990061510203e-07,9.750512035290181419e-07,9.967190080518852635e-07,1.018386812574752385e-06,1.040054617097619507e-06,1.061722421620486628e-06,1.083390226143353750e-06,1.105058030666220871e-06,1.126725835189087993e-06,1.148393639711955115e-06,1.170061444234822236e-06,1.191729248757689358e-06,1.213397053280556479e-06,1.235064857803423601e-06,1.256732662326290722e-06,1.278400466849157844e-06,1.300068271372024966e-06,1.321736075894892087e-06,1.343403880417759209e-06,1.365071684940626330e-06 +0.000000000000000000e+00,2.521833376304441086e-08,5.043666752608882172e-08,7.565500128913322927e-08,1.008733350521776170e-07,1.260916688152220444e-07,1.513100025782664585e-07,1.765283363413108727e-07,2.017466701043552869e-07,2.269650038673996746e-07,2.521833376304440887e-07,2.774016713934884764e-07,3.026200051565328641e-07,3.278383389195772518e-07,3.530566726826215866e-07,3.782750064456660272e-07,4.034933402087104149e-07,4.287116739717548026e-07,4.539300077347992433e-07,4.791483414978435251e-07,5.043666752608878598e-07,5.295850090239321946e-07,5.548033427869765294e-07,5.800216765500208641e-07,6.052400103130651989e-07,6.304583440761095336e-07,6.556766778391538684e-07,6.808950116021980973e-07,7.061133453652425379e-07,7.313316791282868727e-07,7.565500128913312074e-07,7.817683466543756481e-07,8.069866804174198770e-07,8.322050141804642117e-07,8.574233479435085465e-07,8.826416817065527754e-07,9.078600154695972160e-07,9.330783492326415508e-07,9.582966829956857796e-07,9.835150167587300085e-07,1.008733350521774237e-06,1.033951684284818466e-06,1.059170018047862695e-06,1.084388351810906924e-06,1.109606685573951153e-06,1.134825019336995382e-06,1.160043353100039611e-06,1.185261686863083840e-06,1.210480020626128068e-06,1.235698354389172297e-06,1.260916688152216526e-06,1.286135021915260755e-06,1.311353355678304984e-06,1.336571689441349213e-06,1.361790023204393442e-06,1.387008356967437671e-06,1.412226690730481899e-06,1.437445024493526128e-06,1.462663358256570357e-06,1.487881692019614586e-06,1.513100025782658815e-06,1.538318359545703044e-06,1.563536693308747273e-06,1.588755027071791502e-06 +0.000000000000000000e+00,2.521663061847476610e-08,5.043326123694953219e-08,7.564989185542429829e-08,1.008665224738990644e-07,1.260831530923738437e-07,1.512997837108486230e-07,1.765164143293234024e-07,2.017330449477981552e-07,2.269496755662729610e-07,2.521663061847477404e-07,2.773829368032225197e-07,3.025995674216972990e-07,3.278161980401721313e-07,3.530328286586468577e-07,3.782494592771216370e-07,4.034660898955964164e-07,4.286827205140711428e-07,4.538993511325459750e-07,4.791159817510207544e-07,5.043326123694955866e-07,5.295492429879704189e-07,5.547658736064452512e-07,5.799825042249200834e-07,6.051991348433949157e-07,6.304157654618697480e-07,6.556323960803444744e-07,6.808490266988195184e-07,7.060656573172941389e-07,7.312822879357691829e-07,7.564989185542438035e-07,7.817155491727188475e-07,8.069321797911934680e-07,8.321488104096685120e-07,8.573654410281431325e-07,8.825820716466181766e-07,9.077987022650927971e-07,9.330153328835678411e-07,9.582319635020425675e-07,9.834485941205173998e-07,1.008665224738992232e-06,1.033881855357467064e-06,1.059098485975941897e-06,1.084315116594416729e-06,1.109531747212891561e-06,1.134748377831366393e-06,1.159965008449841226e-06,1.185181639068316058e-06,1.210398269686790890e-06,1.235614900305265722e-06,1.260831530923740555e-06,1.286048161542215387e-06,1.311264792160690219e-06,1.336481422779165052e-06,1.361698053397639884e-06,1.386914684016114716e-06,1.412131314634589548e-06,1.437347945253064381e-06,1.462564575871539213e-06,1.487781206490014045e-06,1.512997837108488877e-06,1.538214467726963710e-06,1.563431098345438542e-06,1.588647728963913374e-06 +0.000000000000000000e+00,1.939489328985730327e-08,3.878978657971460653e-08,5.818467986957191311e-08,7.757957315942922630e-08,9.697446644928653949e-08,1.163693597391438527e-07,1.357642530290011526e-07,1.551591463188584526e-07,1.745540396087157526e-07,1.939489328985730525e-07,2.133438261884303525e-07,2.327387194782876524e-07,2.521336127681449524e-07,2.715285060580022523e-07,2.909233993478595523e-07,3.103182926377168523e-07,3.297131859275741522e-07,3.491080792174314522e-07,3.685029725072887521e-07,3.878978657971460521e-07,4.072927590870033520e-07,4.266876523768606520e-07,4.460825456667179520e-07,4.654774389565752519e-07,4.848723322464326048e-07,5.042672255362900106e-07,5.236621188261474165e-07,5.430570121160048223e-07,5.624519054058622282e-07,5.818467986957196340e-07,6.012416919855770398e-07,6.206365852754344457e-07,6.400314785652918515e-07,6.594263718551492573e-07,6.788212651450066632e-07,6.982161584348640690e-07,7.176110517247214748e-07,7.370059450145788807e-07,7.564008383044362865e-07,7.757957315942936923e-07,7.951906248841510982e-07,8.145855181740085040e-07,8.339804114638659099e-07,8.533753047537233157e-07,8.727701980435807215e-07,8.921650913334381274e-07,9.115599846232955332e-07,9.309548779131529390e-07,9.503497712030103449e-07,9.697446644928677507e-07,9.891395577827251565e-07,1.008534451072582562e-06,1.027929344362439968e-06,1.047324237652297374e-06,1.066719130942154780e-06,1.086114024232012186e-06,1.105508917521869592e-06,1.124903810811726997e-06,1.144298704101584403e-06,1.163693597391441809e-06,1.183088490681299215e-06,1.202483383971156621e-06,1.221878277261014027e-06 +0.000000000000000000e+00,2.333122598869561890e-08,4.666245197739123781e-08,6.999367796608686002e-08,9.332490395478248885e-08,1.166561299434781177e-07,1.399873559321737465e-07,1.633185819208693886e-07,1.866498079095650306e-07,2.099810338982606727e-07,2.333122598869563148e-07,2.566434858756519568e-07,2.799747118643475989e-07,3.033059378530432410e-07,3.266371638417388830e-07,3.499683898304345251e-07,3.732996158191301672e-07,3.966308418078258092e-07,4.199620677965214513e-07,4.432932937852170934e-07,4.666245197739127354e-07,4.899557457626083775e-07,5.132869717513040196e-07,5.366181977399996616e-07,5.599494237286953037e-07,5.832806497173909458e-07,6.066118757060865878e-07,6.299431016947822299e-07,6.532743276834778720e-07,6.766055536721735140e-07,6.999367796608691561e-07,7.232680056495647981e-07,7.465992316382604402e-07,7.699304576269560823e-07,7.932616836156517243e-07,8.165929096043473664e-07,8.399241355930430085e-07,8.632553615817386505e-07,8.865865875704342926e-07,9.099178135591299347e-07,9.332490395478255767e-07,9.565802655365212188e-07,9.799114915252167550e-07,1.003242717513912291e-06,1.026573943502607827e-06,1.049905169491303364e-06,1.073236395479998900e-06,1.096567621468694436e-06,1.119898847457389972e-06,1.143230073446085508e-06,1.166561299434781044e-06,1.189892525423476581e-06,1.213223751412172117e-06,1.236554977400867653e-06,1.259886203389563189e-06,1.283217429378258725e-06,1.306548655366954262e-06,1.329879881355649798e-06,1.353211107344345334e-06,1.376542333333040870e-06,1.399873559321736406e-06,1.423204785310431943e-06,1.446536011299127479e-06,1.469867237287823015e-06 +0.000000000000000000e+00,2.293542455562483353e-08,4.587084911124966706e-08,6.880627366687450390e-08,9.174169822249934736e-08,1.146771227781241908e-07,1.376125473337490343e-07,1.605479718893738910e-07,1.834833964449987477e-07,2.064188210006236044e-07,2.293542455562484610e-07,2.522896701118733177e-07,2.752250946674981744e-07,2.981605192231230311e-07,3.210959437787478878e-07,3.440313683343727445e-07,3.669667928899976012e-07,3.899022174456224579e-07,4.128376420012473146e-07,4.357730665568721713e-07,4.587084911124970280e-07,4.816439156681219376e-07,5.045793402237468472e-07,5.275147647793717569e-07,5.504501893349966665e-07,5.733856138906215761e-07,5.963210384462464858e-07,6.192564630018713954e-07,6.421918875574963050e-07,6.651273121131212147e-07,6.880627366687461243e-07,7.109981612243710339e-07,7.339335857799959436e-07,7.568690103356208532e-07,7.798044348912457628e-07,8.027398594468706725e-07,8.256752840024955821e-07,8.486107085581204917e-07,8.715461331137454014e-07,8.944815576693703110e-07,9.174169822249952206e-07,9.403524067806201302e-07,9.632878313362451458e-07,9.862232558918701613e-07,1.009158680447495177e-06,1.032094105003120192e-06,1.055029529558745208e-06,1.077964954114370223e-06,1.100900378669995239e-06,1.123835803225620254e-06,1.146771227781245270e-06,1.169706652336870285e-06,1.192642076892495301e-06,1.215577501448120316e-06,1.238512926003745332e-06,1.261448350559370347e-06,1.284383775114995363e-06,1.307319199670620378e-06,1.330254624226245394e-06,1.353190048781870409e-06,1.376125473337495425e-06,1.399060897893120440e-06,1.421996322448745456e-06,1.444931747004370471e-06 +0.000000000000000000e+00,2.521721074475950006e-08,5.043442148951900013e-08,7.565163223427849688e-08,1.008688429790380003e-07,1.260860537237975036e-07,1.513032644685569938e-07,1.765204752133164574e-07,2.017376859580760005e-07,2.269548967028354377e-07,2.521721074475949543e-07,2.773893181923544444e-07,3.026065289371139346e-07,3.278237396818734247e-07,3.530409504266329149e-07,3.782581611713924050e-07,4.034753719161518951e-07,4.286925826609113853e-07,4.539097934056708754e-07,4.791270041504304185e-07,5.043442148951900145e-07,5.295614256399496105e-07,5.547786363847092065e-07,5.799958471294688025e-07,6.052130578742283986e-07,6.304302686189879946e-07,6.556474793637476965e-07,6.808646901085071866e-07,7.060819008532666767e-07,7.312991115980263786e-07,7.565163223427860805e-07,7.817335330875455707e-07,8.069507438323050608e-07,8.321679545770647627e-07,8.573851653218244646e-07,8.826023760665839547e-07,9.078195868113434449e-07,9.330367975561031468e-07,9.582540083008627428e-07,9.834712190456223388e-07,1.008688429790381935e-06,1.033905640535141531e-06,1.059122851279901127e-06,1.084340062024660723e-06,1.109557272769420319e-06,1.134774483514179915e-06,1.159991694258939511e-06,1.185208905003699107e-06,1.210426115748458703e-06,1.235643326493218299e-06,1.260860537237977895e-06,1.286077747982737703e-06,1.311294958727497087e-06,1.336512169472256683e-06,1.361729380217016279e-06,1.386946590961775663e-06,1.412163801706535471e-06,1.437381012451295067e-06,1.462598223196054663e-06,1.487815433940814471e-06,1.513032644685573855e-06,1.538249855430333451e-06,1.563467066175093047e-06,1.588684276919852431e-06 +0.000000000000000000e+00,2.293410674909642317e-08,4.586821349819284635e-08,6.880232024728926291e-08,9.173642699638567946e-08,1.146705337454820960e-07,1.376046404945785258e-07,1.605387472436749556e-07,1.834728539927713854e-07,2.064069607418678152e-07,2.293410674909642450e-07,2.522751742400606748e-07,2.752092809891571046e-07,2.981433877382535344e-07,3.210774944873499641e-07,3.440116012364463939e-07,3.669457079855428237e-07,3.898798147346392535e-07,4.128139214837356833e-07,4.357480282328321131e-07,4.586821349819285429e-07,4.816162417310249198e-07,5.045503484801212437e-07,5.274844552292175676e-07,5.504185619783138915e-07,5.733526687274102154e-07,5.962867754765065393e-07,6.192208822256028632e-07,6.421549889746991871e-07,6.650890957237955111e-07,6.880232024728918350e-07,7.109573092219881589e-07,7.338914159710844828e-07,7.568255227201808067e-07,7.797596294692771306e-07,8.026937362183734545e-07,8.256278429674697784e-07,8.485619497165661024e-07,8.714960564656624263e-07,8.944301632147587502e-07,9.173642699638550741e-07,9.402983767129513980e-07,9.632324834620477219e-07,9.861665902111440458e-07,1.009100696960240370e-06,1.032034803709336694e-06,1.054968910458433018e-06,1.077903017207529341e-06,1.100837123956625665e-06,1.123771230705721989e-06,1.146705337454818313e-06,1.169639444203914637e-06,1.192573550953010961e-06,1.215507657702107285e-06,1.238441764451203609e-06,1.261375871200299933e-06,1.284309977949396257e-06,1.307244084698492581e-06,1.330178191447588905e-06,1.353112298196685228e-06,1.376046404945781552e-06,1.398980511694877876e-06,1.421914618443974200e-06,1.444848725193070524e-06 +0.000000000000000000e+00,2.166780452286087802e-08,4.333560904572175605e-08,6.500341356858263738e-08,8.667121809144352533e-08,1.083390226143044133e-07,1.300068271371653012e-07,1.516746316600261759e-07,1.733424361828870507e-07,1.950102407057479254e-07,2.166780452286088001e-07,2.383458497514696748e-07,2.600136542743305495e-07,2.816814587971914242e-07,3.033492633200522990e-07,3.250170678429131737e-07,3.466848723657740484e-07,3.683526768886349231e-07,3.900204814114957978e-07,4.116882859343566725e-07,4.333560904572175472e-07,4.550238949800784220e-07,4.766916995029392967e-07,4.983595040258002243e-07,5.200273085486612049e-07,5.416951130715221855e-07,5.633629175943831661e-07,5.850307221172441467e-07,6.066985266401051273e-07,6.283663311629661079e-07,6.500341356858270885e-07,6.717019402086880691e-07,6.933697447315490497e-07,7.150375492544100303e-07,7.367053537772710109e-07,7.583731583001319915e-07,7.800409628229929721e-07,8.017087673458539527e-07,8.233765718687149333e-07,8.450443763915759138e-07,8.667121809144368944e-07,8.883799854372978750e-07,9.100477899601588556e-07,9.317155944830198362e-07,9.533833990058808168e-07,9.750512035287417974e-07,9.967190080516027780e-07,1.018386812574463759e-06,1.040054617097324739e-06,1.061722421620185720e-06,1.083390226143046700e-06,1.105058030665907681e-06,1.126725835188768662e-06,1.148393639711629642e-06,1.170061444234490623e-06,1.191729248757351603e-06,1.213397053280212584e-06,1.235064857803073565e-06,1.256732662325934545e-06,1.278400466848795526e-06,1.300068271371656506e-06,1.321736075894517487e-06,1.343403880417378468e-06,1.365071684940239448e-06 +0.000000000000000000e+00,2.521833376303739968e-08,5.043666752607479935e-08,7.565500128911219903e-08,1.008733350521495987e-07,1.260916688151869984e-07,1.513100025782243981e-07,1.765283363412618242e-07,2.017466701042991974e-07,2.269650038673365706e-07,2.521833376303739968e-07,2.774016713934113964e-07,3.026200051564487961e-07,3.278383389194861958e-07,3.530566726825236484e-07,3.782750064455609952e-07,4.034933402085983948e-07,4.287116739716357945e-07,4.539300077346731412e-07,4.791483414977105409e-07,5.043666752607478877e-07,5.295850090237852344e-07,5.548033427868225811e-07,5.800216765498599279e-07,6.052400103128972746e-07,6.304583440759346213e-07,6.556766778389719681e-07,6.808950116020092089e-07,7.061133453650466616e-07,7.313316791280840083e-07,7.565500128911213550e-07,7.817683466541588076e-07,8.069866804171960485e-07,8.322050141802333952e-07,8.574233479432707420e-07,8.826416817063079828e-07,9.078600154693454354e-07,9.330783492323827822e-07,9.582966829954202348e-07,9.835150167584576874e-07,1.008733350521495140e-06,1.033951684284532593e-06,1.059170018047570045e-06,1.084388351810607498e-06,1.109606685573644950e-06,1.134825019336682403e-06,1.160043353099719856e-06,1.185261686862757308e-06,1.210480020625794761e-06,1.235698354388832214e-06,1.260916688151869666e-06,1.286135021914906907e-06,1.311353355677944783e-06,1.336571689440981812e-06,1.361790023204019688e-06,1.387008356967056718e-06,1.412226690730094594e-06,1.437445024493131623e-06,1.462663358256169499e-06,1.487881692019206528e-06,1.513100025782244404e-06,1.538318359545281433e-06,1.563536693308319309e-06,1.588755027071356338e-06 +0.000000000000000000e+00,2.521721074475608877e-08,5.043442148951217754e-08,7.565163223426826631e-08,1.008688429790243551e-07,1.260860537237804571e-07,1.513032644685365591e-07,1.765204752132926876e-07,2.017376859580487366e-07,2.269548967028048916e-07,2.521721074475609671e-07,2.773893181923170691e-07,3.026065289370731711e-07,3.278237396818292731e-07,3.530409504265853751e-07,3.782581611713414771e-07,4.034753719160975791e-07,4.286925826608536811e-07,4.539097934056097831e-07,4.791270041503658322e-07,5.043442148951218283e-07,5.295614256398778245e-07,5.547786363846338206e-07,5.799958471293898167e-07,6.052130578741458128e-07,6.304302686189018090e-07,6.556474793636579110e-07,6.808646901084139071e-07,7.060819008531699032e-07,7.312991115979258994e-07,7.565163223426818955e-07,7.817335330874378916e-07,8.069507438321938877e-07,8.321679545769498839e-07,8.573851653217058800e-07,8.826023760664618761e-07,9.078195868112178722e-07,9.330367975559738684e-07,9.582540083007297586e-07,9.834712190454857547e-07,1.008688429790241751e-06,1.033905640534997747e-06,1.059122851279753743e-06,1.084340062024509739e-06,1.109557272769265735e-06,1.134774483514021731e-06,1.159991694258777728e-06,1.185208905003533724e-06,1.210426115748289720e-06,1.235643326493045716e-06,1.260860537237801712e-06,1.286077747982557708e-06,1.311294958727313704e-06,1.336512169472069700e-06,1.361729380216825697e-06,1.386946590961581693e-06,1.412163801706337689e-06,1.437381012451093685e-06,1.462598223195849681e-06,1.487815433940605677e-06,1.513032644685361673e-06,1.538249855430117669e-06,1.563467066174873666e-06,1.588684276919629662e-06 +0.000000000000000000e+00,1.939489328985171483e-08,3.878978657970342967e-08,5.818467986955514450e-08,7.757957315940685933e-08,9.697446644925857417e-08,1.163693597391102890e-07,1.357642530289620038e-07,1.551591463188137187e-07,1.745540396086654335e-07,1.939489328985171483e-07,2.133438261883688632e-07,2.327387194782205780e-07,2.521336127680722664e-07,2.715285060579239547e-07,2.909233993477756431e-07,3.103182926376273315e-07,3.297131859274790198e-07,3.491080792173307082e-07,3.685029725071823965e-07,3.878978657970340849e-07,4.072927590868857733e-07,4.266876523767374616e-07,4.460825456665891500e-07,4.654774389564408384e-07,4.848723322462925267e-07,5.042672255361442151e-07,5.236621188259959035e-07,5.430570121158475918e-07,5.624519054056992802e-07,5.818467986955509686e-07,6.012416919854026569e-07,6.206365852752543453e-07,6.400314785651060336e-07,6.594263718549577220e-07,6.788212651448094104e-07,6.982161584346610987e-07,7.176110517245127871e-07,7.370059450143644755e-07,7.564008383042161638e-07,7.757957315940678522e-07,7.951906248839195406e-07,8.145855181737712289e-07,8.339804114636229173e-07,8.533753047534746056e-07,8.727701980433262940e-07,8.921650913331779824e-07,9.115599846230296707e-07,9.309548779128813591e-07,9.503497712027330475e-07,9.697446644925848417e-07,9.891395577824367418e-07,1.008534451072288642e-06,1.027929344362140542e-06,1.047324237651992442e-06,1.066719130941844342e-06,1.086114024231696242e-06,1.105508917521548143e-06,1.124903810811400043e-06,1.144298704101251943e-06,1.163693597391103843e-06,1.183088490680955743e-06,1.202483383970807643e-06,1.221878277260659543e-06 +0.000000000000000000e+00,2.333122598868887573e-08,4.666245197737775146e-08,6.999367796606662388e-08,9.332490395475548968e-08,1.166561299434443555e-07,1.399873559321332213e-07,1.633185819208220871e-07,1.866498079095109529e-07,2.099810338981998187e-07,2.333122598868886845e-07,2.566434858755775238e-07,2.799747118642663896e-07,3.033059378529552554e-07,3.266371638416441212e-07,3.499683898303329870e-07,3.732996158190218528e-07,3.966308418077107186e-07,4.199620677963995844e-07,4.432932937850884502e-07,4.666245197737773160e-07,4.899557457624661818e-07,5.132869717511550476e-07,5.366181977398439134e-07,5.599494237285327792e-07,5.832806497172216450e-07,6.066118757059105108e-07,6.299431016945993767e-07,6.532743276832882425e-07,6.766055536719771083e-07,6.999367796606659741e-07,7.232680056493548399e-07,7.465992316380437057e-07,7.699304576267325715e-07,7.932616836154214373e-07,8.165929096041103031e-07,8.399241355927991689e-07,8.632553615814880347e-07,8.865865875701769005e-07,9.099178135588657663e-07,9.332490395475546321e-07,9.565802655362436038e-07,9.799114915249325754e-07,1.003242717513621547e-06,1.026573943502310519e-06,1.049905169490999490e-06,1.073236395479688462e-06,1.096567621468377434e-06,1.119898847457066406e-06,1.143230073445755377e-06,1.166561299434444349e-06,1.189892525423133321e-06,1.213223751411822292e-06,1.236554977400511264e-06,1.259886203389200236e-06,1.283217429377889207e-06,1.306548655366578179e-06,1.329879881355267151e-06,1.353211107343956122e-06,1.376542333332645094e-06,1.399873559321334066e-06,1.423204785310023037e-06,1.446536011298712009e-06,1.469867237287400981e-06 +0.000000000000000000e+00,2.293542455561787860e-08,4.587084911123575719e-08,6.880627366685363248e-08,9.174169822247150115e-08,1.146771227780893698e-07,1.376125473337072385e-07,1.605479718893251072e-07,1.834833964449429758e-07,2.064188210005608445e-07,2.293542455561787132e-07,2.522896701117966083e-07,2.752250946674145299e-07,2.981605192230324515e-07,3.210959437786503731e-07,3.440313683342682948e-07,3.669667928898862164e-07,3.899022174455041380e-07,4.128376420011220596e-07,4.357730665567399812e-07,4.587084911123579028e-07,4.816439156679758244e-07,5.045793402235937460e-07,5.275147647792116676e-07,5.504501893348295893e-07,5.733856138904475109e-07,5.963210384460654325e-07,6.192564630016833541e-07,6.421918875573012757e-07,6.651273121129191973e-07,6.880627366685371189e-07,7.109981612241550405e-07,7.339335857797729621e-07,7.568690103353908837e-07,7.798044348910088054e-07,8.027398594466267270e-07,8.256752840022446486e-07,8.486107085578625702e-07,8.715461331134804918e-07,8.944815576690984134e-07,9.174169822247163350e-07,9.403524067803342566e-07,9.632878313359520724e-07,9.862232558915698881e-07,1.009158680447187704e-06,1.032094105002805520e-06,1.055029529558423335e-06,1.077964954114041151e-06,1.100900378669658967e-06,1.123835803225276782e-06,1.146771227780894598e-06,1.169706652336512414e-06,1.192642076892130230e-06,1.215577501447748045e-06,1.238512926003365861e-06,1.261448350558983677e-06,1.284383775114601493e-06,1.307319199670219308e-06,1.330254624225837124e-06,1.353190048781454940e-06,1.376125473337072756e-06,1.399060897892690571e-06,1.421996322448308387e-06,1.444931747003926203e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.483170562349495368e-09,6.966341124698990736e-09,1.044951168704848652e-08,1.393268224939798313e-08,1.741585281174748139e-08,2.089902337409697965e-08,2.438219393644647792e-08,2.786536449879597618e-08,3.134853506114547444e-08,3.483170562349497601e-08,3.831487618584447758e-08,4.179804674819397916e-08,4.528121731054348073e-08,4.876438787289298230e-08,5.224755843524248387e-08,5.573072899759198544e-08,5.921389955994148702e-08,6.269707012229098859e-08,6.618024068464049016e-08,6.966341124698999173e-08,7.314658180933949330e-08,7.662975237168899487e-08,8.011292293403849645e-08,8.359609349638799802e-08,8.707926405873749959e-08,9.056243462108700116e-08,9.404560518343650273e-08,9.752877574578600431e-08,1.010119463081355059e-07,1.044951168704850074e-07,1.079782874328345090e-07,1.114614579951840106e-07,1.149446285575335122e-07,1.184277991198830137e-07,1.219109696822325021e-07,1.253941402445820036e-07,1.288773108069315052e-07,1.323604813692810068e-07,1.358436519316305084e-07,1.393268224939800099e-07,1.428099930563295115e-07,1.462931636186790131e-07,1.497763341810285146e-07,1.532595047433780162e-07,1.567426753057275178e-07,1.602258458680770194e-07,1.637090164304265209e-07,1.671921869927760225e-07,1.706753575551255241e-07,1.741585281174750256e-07,1.776416986798245272e-07,1.811248692421740288e-07,1.846080398045235304e-07,1.880912103668730319e-07,1.915743809292225335e-07,1.950575514915720351e-07,1.985407220539215367e-07,2.020238926162710382e-07,2.055070631786205398e-07,2.089902337409700414e-07,2.124734043033195429e-07,2.159565748656690445e-07,2.194397454280185461e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.724258697100857890e-09,3.448517394201715780e-09,5.172776091302573876e-09,6.897034788403432386e-09,8.621293485504290897e-09,1.034555218260514941e-08,1.206981087970600792e-08,1.379406957680686643e-08,1.551832827390772328e-08,1.724258697100857848e-08,1.896684566810943369e-08,2.069110436521028889e-08,2.241536306231114409e-08,2.413962175941199929e-08,2.586388045651285449e-08,2.758813915361370969e-08,2.931239785071456489e-08,3.103665654781542010e-08,3.276091524491627530e-08,3.448517394201713050e-08,3.620943263911798570e-08,3.793369133621884090e-08,3.965795003331969610e-08,4.138220873042055130e-08,4.310646742752140651e-08,4.483072612462226171e-08,4.655498482172311691e-08,4.827924351882397211e-08,5.000350221592482731e-08,5.172776091302568251e-08,5.345201961012653771e-08,5.517627830722739292e-08,5.690053700432824812e-08,5.862479570142910332e-08,6.034905439852995852e-08,6.207331309563081372e-08,6.379757179273166892e-08,6.552183048983252413e-08,6.724608918693337933e-08,6.897034788403423453e-08,7.069460658113508973e-08,7.241886527823594493e-08,7.414312397533680013e-08,7.586738267243765533e-08,7.759164136953851054e-08,7.931590006663936574e-08,8.104015876374022094e-08,8.276441746084107614e-08,8.448867615794193134e-08,8.621293485504278654e-08,8.793719355214364174e-08,8.966145224924449695e-08,9.138571094634535215e-08,9.310996964344620735e-08,9.483422834054706255e-08,9.655848703764791775e-08,9.828274573474877295e-08,1.000070044318496282e-07,1.017312631289504834e-07,1.034555218260513386e-07,1.051797805231521938e-07,1.069040392202530490e-07,1.086282979173539042e-07 +0.000000000000000000e+00,3.659309133305763939e-09,7.318618266611527878e-09,1.097792739991729264e-08,1.463723653322305741e-08,1.829654566652882218e-08,2.195585479983458529e-08,2.561516393314034840e-08,2.927447306644611151e-08,3.293378219975187462e-08,3.659309133305763774e-08,4.025240046636340085e-08,4.391170959966916396e-08,4.757101873297492707e-08,5.123032786628069018e-08,5.488963699958645330e-08,5.854894613289221641e-08,6.220825526619797952e-08,6.586756439950374925e-08,6.952687353280951898e-08,7.318618266611528871e-08,7.684549179942105844e-08,8.050480093272682817e-08,8.416411006603259789e-08,8.782341919933836762e-08,9.148272833264413735e-08,9.514203746594990708e-08,9.880134659925567681e-08,1.024606557325614465e-07,1.061199648658672163e-07,1.097792739991729860e-07,1.134385831324787557e-07,1.170978922657845255e-07,1.207572013990903084e-07,1.244165105323960914e-07,1.280758196657018744e-07,1.317351287990076573e-07,1.353944379323134403e-07,1.390537470656192232e-07,1.427130561989250062e-07,1.463723653322307892e-07,1.500316744655365721e-07,1.536909835988423551e-07,1.573502927321481381e-07,1.610096018654539210e-07,1.646689109987597040e-07,1.683282201320654870e-07,1.719875292653712699e-07,1.756468383986770529e-07,1.793061475319828358e-07,1.829654566652886188e-07,1.866247657985944018e-07,1.902840749319001847e-07,1.939433840652059677e-07,1.976026931985117507e-07,2.012620023318175336e-07,2.049213114651233166e-07,2.085806205984290996e-07,2.122399297317348825e-07,2.158992388650406655e-07,2.195585479983464485e-07,2.232178571316522314e-07,2.268771662649580144e-07,2.305364753982637973e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.483170562348633859e-09,6.966341124697267719e-09,1.044951168704590075e-08,1.393268224939453378e-08,1.741585281174316682e-08,2.089902337409180150e-08,2.438219393644043619e-08,2.786536449878907087e-08,3.134853506113770556e-08,3.483170562348634025e-08,3.831487618583497493e-08,4.179804674818360962e-08,4.528121731053224431e-08,4.876438787288087899e-08,5.224755843522951368e-08,5.573072899757814837e-08,5.921389955992678305e-08,6.269707012227541112e-08,6.618024068462403919e-08,6.966341124697266726e-08,7.314658180932129533e-08,7.662975237166992340e-08,8.011292293401855147e-08,8.359609349636717954e-08,8.707926405871580761e-08,9.056243462106443567e-08,9.404560518341306374e-08,9.752877574576169181e-08,1.010119463081103199e-07,1.044951168704589480e-07,1.079782874328075760e-07,1.114614579951562041e-07,1.149446285575048322e-07,1.184277991198534602e-07,1.219109696822020883e-07,1.253941402445507164e-07,1.288773108068993444e-07,1.323604813692479725e-07,1.358436519315966006e-07,1.393268224939452286e-07,1.428099930562938567e-07,1.462931636186424848e-07,1.497763341809911128e-07,1.532595047433397409e-07,1.567426753056883690e-07,1.602258458680369971e-07,1.637090164303856251e-07,1.671921869927342532e-07,1.706753575550828813e-07,1.741585281174315093e-07,1.776416986797801374e-07,1.811248692421287655e-07,1.846080398044773935e-07,1.880912103668260216e-07,1.915743809291746497e-07,1.950575514915232777e-07,1.985407220538719058e-07,2.020238926162205339e-07,2.055070631785691620e-07,2.089902337409177900e-07,2.124734043032664181e-07,2.159565748656150462e-07,2.194397454279636742e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.724258697100429203e-09,3.448517394200858407e-09,5.172776091301287610e-09,6.897034788401716814e-09,8.621293485502145190e-09,1.034555218260257357e-08,1.206981087970300194e-08,1.379406957680343032e-08,1.551832827390385870e-08,1.724258697100428707e-08,1.896684566810471545e-08,2.069110436520514382e-08,2.241536306230557220e-08,2.413962175940600058e-08,2.586388045650642895e-08,2.758813915360685733e-08,2.931239785070728571e-08,3.103665654780771739e-08,3.276091524490814908e-08,3.448517394200858076e-08,3.620943263910901245e-08,3.793369133620944413e-08,3.965795003330987582e-08,4.138220873041030750e-08,4.310646742751073919e-08,4.483072612461117087e-08,4.655498482171160255e-08,4.827924351881203424e-08,5.000350221591246592e-08,5.172776091301289761e-08,5.345201961011332929e-08,5.517627830721376098e-08,5.690053700431419266e-08,5.862479570141462435e-08,6.034905439851505603e-08,6.207331309561548772e-08,6.379757179271591940e-08,6.552183048981635109e-08,6.724608918691678277e-08,6.897034788401721446e-08,7.069460658111764614e-08,7.241886527821807783e-08,7.414312397531850951e-08,7.586738267241894120e-08,7.759164136951937288e-08,7.931590006661980457e-08,8.104015876372023625e-08,8.276441746082066794e-08,8.448867615792109962e-08,8.621293485502153131e-08,8.793719355212196299e-08,8.966145224922239468e-08,9.138571094632282636e-08,9.310996964342325805e-08,9.483422834052368973e-08,9.655848703762412142e-08,9.828274573472455310e-08,1.000070044318249848e-07,1.017312631289254165e-07,1.034555218260258482e-07,1.051797805231262798e-07,1.069040392202267115e-07,1.086282979173271432e-07 +0.000000000000000000e+00,3.659309133304454099e-09,7.318618266608908197e-09,1.097792739991336188e-08,1.463723653321781474e-08,1.829654566652226760e-08,2.195585479982672046e-08,2.561516393313117331e-08,2.927447306643562617e-08,3.293378219974008234e-08,3.659309133304454181e-08,4.025240046634900129e-08,4.391170959965346076e-08,4.757101873295792024e-08,5.123032786626237971e-08,5.488963699956683919e-08,5.854894613287129866e-08,6.220825526617575814e-08,6.586756439948021761e-08,6.952687353278467709e-08,7.318618266608913656e-08,7.684549179939359604e-08,8.050480093269805551e-08,8.416411006600251499e-08,8.782341919930697447e-08,9.148272833261143394e-08,9.514203746591589342e-08,9.880134659922035289e-08,1.024606557325248124e-07,1.061199648658292718e-07,1.097792739991337313e-07,1.134385831324381908e-07,1.170978922657426503e-07,1.207572013990471097e-07,1.244165105323515692e-07,1.280758196656560287e-07,1.317351287989604882e-07,1.353944379322649476e-07,1.390537470655694071e-07,1.427130561988738666e-07,1.463723653321783261e-07,1.500316744654827855e-07,1.536909835987872450e-07,1.573502927320917045e-07,1.610096018653961640e-07,1.646689109987006234e-07,1.683282201320050829e-07,1.719875292653095424e-07,1.756468383986140019e-07,1.793061475319184613e-07,1.829654566652229208e-07,1.866247657985273803e-07,1.902840749318318398e-07,1.939433840651362992e-07,1.976026931984407587e-07,2.012620023317452182e-07,2.049213114650496777e-07,2.085806205983541371e-07,2.122399297316585966e-07,2.158992388649630561e-07,2.195585479982675156e-07,2.232178571315719750e-07,2.268771662648764345e-07,2.305364753981808940e-07 +0.000000000000000000e+00,7.192203040214429551e-09,1.438440608042885910e-08,2.157660912064328948e-08,2.876881216085772151e-08,3.596101520107215024e-08,4.315321824128657896e-08,5.034542128150100769e-08,5.753762432171543641e-08,6.472982736192986514e-08,7.192203040214430048e-08,7.911423344235873582e-08,8.630643648257317116e-08,9.349863952278760650e-08,1.006908425630020418e-07,1.078830456032164772e-07,1.150752486434309125e-07,1.222674516836453346e-07,1.294596547238597567e-07,1.366518577640741788e-07,1.438440608042886010e-07,1.510362638445030231e-07,1.582284668847174452e-07,1.654206699249318673e-07,1.726128729651462894e-07,1.798050760053607115e-07,1.869972790455751336e-07,1.941894820857895557e-07,2.013816851260039778e-07,2.085738881662183999e-07,2.157660912064328220e-07,2.229582942466472441e-07,2.301504972868616662e-07,2.373427003270760883e-07,2.445349033672905104e-07,2.517271064075049326e-07,2.589193094477193547e-07,2.661115124879337768e-07,2.733037155281481989e-07,2.804959185683626210e-07,2.876881216085770431e-07,2.948803246487914652e-07,3.020725276890058873e-07,3.092647307292203094e-07,3.164569337694347315e-07,3.236491368096491536e-07,3.308413398498635757e-07,3.380335428900779978e-07,3.452257459302924199e-07,3.524179489705068421e-07,3.596101520107212642e-07,3.668023550509356863e-07,3.739945580911501084e-07,3.811867611313645305e-07,3.883789641715789526e-07,3.955711672117933747e-07,4.027633702520077968e-07,4.099555732922222189e-07,4.171477763324366410e-07,4.243399793726510631e-07,4.315321824128654852e-07,4.387243854530799073e-07,4.459165884932943294e-07,4.531087915335087515e-07 +0.000000000000000000e+00,5.331791858681930566e-09,1.066358371736386113e-08,1.599537557604579170e-08,2.132716743472772226e-08,2.665895929340965283e-08,3.199075115209158340e-08,3.732254301077351065e-08,4.265433486945543791e-08,4.798612672813736517e-08,5.331791858681929243e-08,5.864971044550121968e-08,6.398150230418315356e-08,6.931329416286508743e-08,7.464508602154702131e-08,7.997687788022895518e-08,8.530866973891088906e-08,9.064046159759282293e-08,9.597225345627475681e-08,1.013040453149566907e-07,1.066358371736386246e-07,1.119676290323205584e-07,1.172994208910024923e-07,1.226312127496844394e-07,1.279630046083663865e-07,1.332947964670483336e-07,1.386265883257302807e-07,1.439583801844122279e-07,1.492901720430941750e-07,1.546219639017761221e-07,1.599537557604580692e-07,1.652855476191400163e-07,1.706173394778219634e-07,1.759491313365039105e-07,1.812809231951858576e-07,1.866127150538678047e-07,1.919445069125497518e-07,1.972762987712316990e-07,2.026080906299136461e-07,2.079398824885955932e-07,2.132716743472775403e-07,2.186034662059594874e-07,2.239352580646414345e-07,2.292670499233233816e-07,2.345988417820053287e-07,2.399306336406872758e-07,2.452624254993691965e-07,2.505942173580511171e-07,2.559260092167330378e-07,2.612578010754149584e-07,2.665895929340968790e-07,2.719213847927787997e-07,2.772531766514607203e-07,2.825849685101426410e-07,2.879167603688245616e-07,2.932485522275064822e-07,2.985803440861884029e-07,3.039121359448703235e-07,3.092439278035522442e-07,3.145757196622341648e-07,3.199075115209160854e-07,3.252393033795980061e-07,3.305710952382799267e-07,3.359028870969618474e-07 +0.000000000000000000e+00,7.634874687915016952e-09,1.526974937583003390e-08,2.290462406374505086e-08,3.053949875166006781e-08,3.817437343957508476e-08,4.580924812749010171e-08,5.344412281540511867e-08,6.107899750332013562e-08,6.871387219123515919e-08,7.634874687915018276e-08,8.398362156706520633e-08,9.161849625498022990e-08,9.925337094289525347e-08,1.068882456308102770e-07,1.145231203187253006e-07,1.221579950066403242e-07,1.297928696945553477e-07,1.374277443824703713e-07,1.450626190703853949e-07,1.526974937583004185e-07,1.603323684462154420e-07,1.679672431341304656e-07,1.756021178220454892e-07,1.832369925099605127e-07,1.908718671978755363e-07,1.985067418857905599e-07,2.061416165737055834e-07,2.137764912616206070e-07,2.214113659495356306e-07,2.290462406374506542e-07,2.366811153253656777e-07,2.443159900132807013e-07,2.519508647011957249e-07,2.595857393891107484e-07,2.672206140770257720e-07,2.748554887649407956e-07,2.824903634528558191e-07,2.901252381407708427e-07,2.977601128286858663e-07,3.053949875166008899e-07,3.130298622045159134e-07,3.206647368924309370e-07,3.282996115803459606e-07,3.359344862682609841e-07,3.435693609561760077e-07,3.512042356440910313e-07,3.588391103320060548e-07,3.664739850199210784e-07,3.741088597078361020e-07,3.817437343957511256e-07,3.893786090836661491e-07,3.970134837715811727e-07,4.046483584594961963e-07,4.122832331474112198e-07,4.199181078353262434e-07,4.275529825232412670e-07,4.351878572111562905e-07,4.428227318990713141e-07,4.504576065869863377e-07,4.580924812749013613e-07,4.657273559628163848e-07,4.733622306507314084e-07,4.809971053386464320e-07 +0.000000000000000000e+00,7.192203040212939799e-09,1.438440608042587960e-08,2.157660912063881940e-08,2.876881216085175920e-08,3.596101520106469900e-08,4.315321824127763879e-08,5.034542128149057859e-08,5.753762432170351839e-08,6.472982736191645819e-08,7.192203040212939799e-08,7.911423344234233779e-08,8.630643648255527759e-08,9.349863952276821739e-08,1.006908425629811572e-07,1.078830456031940970e-07,1.150752486434070368e-07,1.222674516836199766e-07,1.294596547238329164e-07,1.366518577640458562e-07,1.438440608042587960e-07,1.510362638444717358e-07,1.582284668846846756e-07,1.654206699248976154e-07,1.726128729651105552e-07,1.798050760053234950e-07,1.869972790455364348e-07,1.941894820857493746e-07,2.013816851259623144e-07,2.085738881661752542e-07,2.157660912063881940e-07,2.229582942466011338e-07,2.301504972868140736e-07,2.373427003270270134e-07,2.445349033672399532e-07,2.517271064074528930e-07,2.589193094476658328e-07,2.661115124878787726e-07,2.733037155280917124e-07,2.804959185683046522e-07,2.876881216085175920e-07,2.948803246487305318e-07,3.020725276889434716e-07,3.092647307291564114e-07,3.164569337693693512e-07,3.236491368095822910e-07,3.308413398497952308e-07,3.380335428900081706e-07,3.452257459302211104e-07,3.524179489704340502e-07,3.596101520106469900e-07,3.668023550508599298e-07,3.739945580910728696e-07,3.811867611312858094e-07,3.883789641714987492e-07,3.955711672117116890e-07,4.027633702519246288e-07,4.099555732921375686e-07,4.171477763323505084e-07,4.243399793725634481e-07,4.315321824127763879e-07,4.387243854529893277e-07,4.459165884932022675e-07,4.531087915334152073e-07 +0.000000000000000000e+00,5.331791858680731981e-09,1.066358371736146396e-08,1.599537557604219512e-08,2.132716743472292462e-08,2.665895929340365412e-08,3.199075115208438362e-08,3.732254301076511312e-08,4.265433486944584262e-08,4.798612672812657212e-08,5.331791858680730162e-08,5.864971044548803112e-08,6.398150230416875400e-08,6.931329416284948350e-08,7.464508602153021300e-08,7.997687788021094250e-08,8.530866973889167200e-08,9.064046159757240150e-08,9.597225345625313100e-08,1.013040453149338605e-07,1.066358371736145900e-07,1.119676290322953195e-07,1.172994208909760490e-07,1.226312127496567785e-07,1.279630046083375080e-07,1.332947964670182375e-07,1.386265883256989670e-07,1.439583801843796965e-07,1.492901720430604260e-07,1.546219639017411555e-07,1.599537557604218850e-07,1.652855476191026145e-07,1.706173394777833440e-07,1.759491313364640735e-07,1.812809231951448030e-07,1.866127150538255325e-07,1.919445069125062620e-07,1.972762987711869915e-07,2.026080906298677210e-07,2.079398824885484505e-07,2.132716743472291800e-07,2.186034662059099095e-07,2.239352580645906390e-07,2.292670499232713685e-07,2.345988417819520980e-07,2.399306336406328010e-07,2.452624254993135041e-07,2.505942173579942071e-07,2.559260092166749101e-07,2.612578010753556131e-07,2.665895929340363162e-07,2.719213847927170192e-07,2.772531766513977222e-07,2.825849685100784253e-07,2.879167603687591283e-07,2.932485522274398313e-07,2.985803440861205344e-07,3.039121359448012374e-07,3.092439278034819404e-07,3.145757196621626434e-07,3.199075115208433465e-07,3.252393033795240495e-07,3.305710952382047525e-07,3.359028870968854556e-07 +0.000000000000000000e+00,7.634874687912616474e-09,1.526974937582523295e-08,2.290462406373785108e-08,3.053949875165047251e-08,3.817437343956309395e-08,4.580924812747571539e-08,5.344412281538833683e-08,6.107899750330095826e-08,6.871387219121358632e-08,7.634874687912621437e-08,8.398362156703884243e-08,9.161849625495147048e-08,9.925337094286409854e-08,1.068882456307767266e-07,1.145231203186893546e-07,1.221579950066019959e-07,1.297928696945146372e-07,1.374277443824272785e-07,1.450626190703399198e-07,1.526974937582525611e-07,1.603323684461652024e-07,1.679672431340778437e-07,1.756021178219904850e-07,1.832369925099031263e-07,1.908718671978157675e-07,1.985067418857284088e-07,2.061416165736410501e-07,2.137764912615536914e-07,2.214113659494663327e-07,2.290462406373789740e-07,2.366811153252916153e-07,2.443159900132042566e-07,2.519508647011168979e-07,2.595857393890295392e-07,2.672206140769421804e-07,2.748554887648548217e-07,2.824903634527674630e-07,2.901252381406801043e-07,2.977601128285927456e-07,3.053949875165053869e-07,3.130298622044180282e-07,3.206647368923306695e-07,3.282996115802433108e-07,3.359344862681559520e-07,3.435693609560685933e-07,3.512042356439812346e-07,3.588391103318938759e-07,3.664739850198065172e-07,3.741088597077191585e-07,3.817437343956317998e-07,3.893786090835444411e-07,3.970134837714570824e-07,4.046483584593697237e-07,4.122832331472823649e-07,4.199181078351950062e-07,4.275529825231076475e-07,4.351878572110202888e-07,4.428227318989329301e-07,4.504576065868455714e-07,4.580924812747582127e-07,4.657273559626708540e-07,4.733622306505834953e-07,4.809971053384960836e-07 +0.000000000000000000e+00,1.103427322732619358e-08,2.206854645465238716e-08,3.310281968197857908e-08,4.413709290930476770e-08,5.517136613663095632e-08,6.620563936395714493e-08,7.723991259128333355e-08,8.827418581860952216e-08,9.930845904593571078e-08,1.103427322732618994e-07,1.213770055005880880e-07,1.324112787279142634e-07,1.434455519552404388e-07,1.544798251825666142e-07,1.655140984098927895e-07,1.765483716372189649e-07,1.875826448645451403e-07,1.986169180918713157e-07,2.096511913191974911e-07,2.206854645465236664e-07,2.317197377738498418e-07,2.427540110011760172e-07,2.537882842285021926e-07,2.648225574558283680e-07,2.758568306831545433e-07,2.868911039104807187e-07,2.979253771378068941e-07,3.089596503651330695e-07,3.199939235924592449e-07,3.310281968197854203e-07,3.420624700471115956e-07,3.530967432744377710e-07,3.641310165017639464e-07,3.751652897290901218e-07,3.861995629564162972e-07,3.972338361837424725e-07,4.082681094110686479e-07,4.193023826383948233e-07,4.303366558657209987e-07,4.413709290930471741e-07,4.524052023203733494e-07,4.634394755476995248e-07,4.744737487750257002e-07,4.855080220023519285e-07,4.965422952296781039e-07,5.075765684570042793e-07,5.186108416843304547e-07,5.296451149116566301e-07,5.406793881389828054e-07,5.517136613663089808e-07,5.627479345936351562e-07,5.737822078209613316e-07,5.848164810482875070e-07,5.958507542756136823e-07,6.068850275029398577e-07,6.179193007302660331e-07,6.289535739575922085e-07,6.399878471849183839e-07,6.510221204122445592e-07,6.620563936395707346e-07,6.730906668668969100e-07,6.841249400942230854e-07,6.951592133215492608e-07 +0.000000000000000000e+00,9.100054830481694601e-09,1.820010966096338920e-08,2.730016449144508380e-08,3.640021932192677840e-08,4.550027415240846970e-08,5.460032898289016099e-08,6.370038381337185228e-08,7.280043864385354357e-08,8.190049347433523486e-08,9.100054830481692616e-08,1.001006031352986174e-07,1.092006579657803087e-07,1.183007127962620000e-07,1.274007676267436781e-07,1.365008224572253694e-07,1.456008772877070607e-07,1.547009321181887520e-07,1.638009869486704433e-07,1.729010417791521345e-07,1.820010966096338258e-07,1.911011514401155171e-07,2.002012062705972084e-07,2.093012611010788997e-07,2.184013159315605910e-07,2.275013707620422823e-07,2.366014255925239736e-07,2.457014804230056649e-07,2.548015352534873562e-07,2.639015900839690475e-07,2.730016449144507388e-07,2.821016997449324301e-07,2.912017545754141213e-07,3.003018094058958126e-07,3.094018642363775039e-07,3.185019190668591952e-07,3.276019738973408865e-07,3.367020287278225778e-07,3.458020835583042691e-07,3.549021383887859604e-07,3.640021932192676517e-07,3.731022480497493430e-07,3.822023028802310343e-07,3.913023577107127256e-07,4.004024125411944169e-07,4.095024673716761081e-07,4.186025222021577994e-07,4.277025770326394907e-07,4.368026318631211820e-07,4.459026866936028733e-07,4.550027415240845646e-07,4.641027963545662559e-07,4.732028511850479472e-07,4.823029060155296914e-07,4.914029608460114357e-07,5.005030156764931799e-07,5.096030705069749241e-07,5.187031253374566683e-07,5.278031801679384126e-07,5.369032349984201568e-07,5.460032898289019010e-07,5.551033446593836453e-07,5.642033994898653895e-07,5.733034543203471337e-07 +0.000000000000000000e+00,1.174533239261339826e-08,2.349066478522679653e-08,3.523599717784019313e-08,4.698132957045358643e-08,5.872666196306697973e-08,7.047199435568037303e-08,8.221732674829376633e-08,9.396265914090715963e-08,1.057079915335205529e-07,1.174533239261339462e-07,1.291986563187473528e-07,1.409439887113607725e-07,1.526893211039741923e-07,1.644346534965876121e-07,1.761799858892010318e-07,1.879253182818144516e-07,1.996706506744278714e-07,2.114159830670412911e-07,2.231613154596547109e-07,2.349066478522681307e-07,2.466519802448815505e-07,2.583973126374949702e-07,2.701426450301083900e-07,2.818879774227218098e-07,2.936333098153352295e-07,3.053786422079486493e-07,3.171239746005620691e-07,3.288693069931754888e-07,3.406146393857889086e-07,3.523599717784023284e-07,3.641053041710157481e-07,3.758506365636291679e-07,3.875959689562425877e-07,3.993413013488560075e-07,4.110866337414694272e-07,4.228319661340828470e-07,4.345772985266962668e-07,4.463226309193096865e-07,4.580679633119231063e-07,4.698132957045365261e-07,4.815586280971499458e-07,4.933039604897633127e-07,5.050492928823766795e-07,5.167946252749900463e-07,5.285399576676034132e-07,5.402852900602167800e-07,5.520306224528301468e-07,5.637759548454435136e-07,5.755212872380568805e-07,5.872666196306702473e-07,5.990119520232836141e-07,6.107572844158969810e-07,6.225026168085103478e-07,6.342479492011237146e-07,6.459932815937370815e-07,6.577386139863504483e-07,6.694839463789638151e-07,6.812292787715771819e-07,6.929746111641905488e-07,7.047199435568039156e-07,7.164652759494172824e-07,7.282106083420306493e-07,7.399559407346440161e-07 +0.000000000000000000e+00,1.103427322732407931e-08,2.206854645464815861e-08,3.310281968197223957e-08,4.413709290929632384e-08,5.517136613662040811e-08,6.620563936394449238e-08,7.723991259126857665e-08,8.827418581859266091e-08,9.930845904591674518e-08,1.103427322732408295e-07,1.213770055005649005e-07,1.324112787278889583e-07,1.434455519552130161e-07,1.544798251825370739e-07,1.655140984098611317e-07,1.765483716371851895e-07,1.875826448645092473e-07,1.986169180918333051e-07,2.096511913191573629e-07,2.206854645464814207e-07,2.317197377738054785e-07,2.427540110011295363e-07,2.537882842284535941e-07,2.648225574557776519e-07,2.758568306831017097e-07,2.868911039104257675e-07,2.979253771377498253e-07,3.089596503650738831e-07,3.199939235923979409e-07,3.310281968197219987e-07,3.420624700470460565e-07,3.530967432743701143e-07,3.641310165016941721e-07,3.751652897290182299e-07,3.861995629563422877e-07,3.972338361836663455e-07,4.082681094109904033e-07,4.193023826383144611e-07,4.303366558656385189e-07,4.413709290929625766e-07,4.524052023202866344e-07,4.634394755476106922e-07,4.744737487749347500e-07,4.855080220022587549e-07,4.965422952295828127e-07,5.075765684569068705e-07,5.186108416842309283e-07,5.296451149115549861e-07,5.406793881388790439e-07,5.517136613662031017e-07,5.627479345935271595e-07,5.737822078208512173e-07,5.848164810481752751e-07,5.958507542754993329e-07,6.068850275028233907e-07,6.179193007301474485e-07,6.289535739574715063e-07,6.399878471847955641e-07,6.510221204121196219e-07,6.620563936394436797e-07,6.730906668667677375e-07,6.841249400940917953e-07,6.951592133214158531e-07 +0.000000000000000000e+00,9.100054830479884730e-09,1.820010966095976946e-08,2.730016449143965419e-08,3.640021932191953892e-08,4.550027415239942365e-08,5.460032898287930838e-08,6.370038381335918649e-08,7.280043864383906460e-08,8.190049347431894271e-08,9.100054830479882083e-08,1.001006031352786989e-07,1.092006579657585771e-07,1.183007127962384552e-07,1.274007676267183200e-07,1.365008224571981849e-07,1.456008772876780498e-07,1.547009321181579147e-07,1.638009869486377795e-07,1.729010417791176444e-07,1.820010966095975093e-07,1.911011514400773742e-07,2.002012062705572391e-07,2.093012611010371039e-07,2.184013159315169688e-07,2.275013707619968337e-07,2.366014255924766986e-07,2.457014804229565899e-07,2.548015352534364813e-07,2.639015900839163726e-07,2.730016449143962640e-07,2.821016997448761553e-07,2.912017545753560466e-07,3.003018094058359380e-07,3.094018642363158293e-07,3.185019190667957207e-07,3.276019738972756120e-07,3.367020287277555034e-07,3.458020835582353947e-07,3.549021383887152861e-07,3.640021932191951774e-07,3.731022480496750688e-07,3.822023028801549601e-07,3.913023577106348515e-07,4.004024125411147428e-07,4.095024673715946342e-07,4.186025222020745255e-07,4.277025770325544169e-07,4.368026318630343082e-07,4.459026866935141995e-07,4.550027415239940909e-07,4.641027963544739822e-07,4.732028511849538736e-07,4.823029060154337649e-07,4.914029608459136033e-07,5.005030156763934418e-07,5.096030705068732802e-07,5.187031253373531186e-07,5.278031801678329570e-07,5.369032349983127954e-07,5.460032898287926338e-07,5.551033446592724722e-07,5.642033994897523106e-07,5.733034543202321490e-07 +0.000000000000000000e+00,1.174533239261018880e-08,2.349066478522037760e-08,3.523599717783056475e-08,4.698132957044074859e-08,5.872666196305093243e-08,7.047199435566111627e-08,8.221732674827130672e-08,9.396265914088149718e-08,1.057079915334916876e-07,1.174533239261018781e-07,1.291986563187120685e-07,1.409439887113222590e-07,1.526893211039324495e-07,1.644346534965426399e-07,1.761799858891528304e-07,1.879253182817630208e-07,1.996706506743732113e-07,2.114159830669834017e-07,2.231613154595935922e-07,2.349066478522037827e-07,2.466519802448139996e-07,2.583973126374241900e-07,2.701426450300343805e-07,2.818879774226445709e-07,2.936333098152547614e-07,3.053786422078649519e-07,3.171239746004751423e-07,3.288693069930853328e-07,3.406146393856955232e-07,3.523599717783057137e-07,3.641053041709159041e-07,3.758506365635260946e-07,3.875959689561362851e-07,3.993413013487464755e-07,4.110866337413566660e-07,4.228319661339668564e-07,4.345772985265770469e-07,4.463226309191872373e-07,4.580679633117974278e-07,4.698132957044076182e-07,4.815586280970178087e-07,4.933039604896279992e-07,5.050492928822381896e-07,5.167946252748483801e-07,5.285399576674585705e-07,5.402852900600687610e-07,5.520306224526789514e-07,5.637759548452891419e-07,5.755212872378993323e-07,5.872666196305095228e-07,5.990119520231197133e-07,6.107572844157299037e-07,6.225026168083400942e-07,6.342479492009502846e-07,6.459932815935604751e-07,6.577386139861706655e-07,6.694839463787808560e-07,6.812292787713910465e-07,6.929746111640012369e-07,7.047199435566114274e-07,7.164652759492216178e-07,7.282106083418318083e-07,7.399559407344419987e-07 +0.000000000000000000e+00,1.497160529000589622e-08,2.994321058001179243e-08,4.491481587001768865e-08,5.988642116002358486e-08,7.485802645002948769e-08,8.982963174003539053e-08,1.048012370300412934e-07,1.197728423200471962e-07,1.347444476100530990e-07,1.497160529000590019e-07,1.646876581900649047e-07,1.796592634800708075e-07,1.946308687700767104e-07,2.096024740600826132e-07,2.245740793500885160e-07,2.395456846400944453e-07,2.545172899301004011e-07,2.694888952201063569e-07,2.844605005101123126e-07,2.994321058001182684e-07,3.144037110901242242e-07,3.293753163801301800e-07,3.443469216701361357e-07,3.593185269601420915e-07,3.742901322501480473e-07,3.892617375401540030e-07,4.042333428301599588e-07,4.192049481201659146e-07,4.341765534101718704e-07,4.491481587001778261e-07,4.641197639901837819e-07,4.790913692801897377e-07,4.940629745701956934e-07,5.090345798602016492e-07,5.240061851502076050e-07,5.389777904402135608e-07,5.539493957302195165e-07,5.689210010202254723e-07,5.838926063102314281e-07,5.988642116002373838e-07,6.138358168902433396e-07,6.288074221802492954e-07,6.437790274702552512e-07,6.587506327602612069e-07,6.737222380502671627e-07,6.886938433402731185e-07,7.036654486302790743e-07,7.186370539202850300e-07,7.336086592102909858e-07,7.485802645002969416e-07,7.635518697903028973e-07,7.785234750803088531e-07,7.934950803703148089e-07,8.084666856603207647e-07,8.234382909503267204e-07,8.384098962403326762e-07,8.533815015303386320e-07,8.683531068203445877e-07,8.833247121103505435e-07,8.982963174003564993e-07,9.132679226903624551e-07,9.282395279803684108e-07,9.432111332703743666e-07 +0.000000000000000000e+00,1.298883602881432085e-08,2.597767205762864170e-08,3.896650808644296420e-08,5.195534411525729001e-08,6.494418014407161583e-08,7.793301617288594164e-08,9.092185220170026745e-08,1.039106882305145933e-07,1.168995242593289191e-07,1.298883602881432317e-07,1.428771963169575442e-07,1.558660323457718568e-07,1.688548683745861694e-07,1.818437044034004820e-07,1.948325404322147945e-07,2.078213764610291071e-07,2.208102124898434197e-07,2.337990485186577323e-07,2.467878845474720184e-07,2.597767205762863045e-07,2.727655566051005906e-07,2.857543926339148767e-07,2.987432286627291628e-07,3.117320646915434489e-07,3.247209007203577350e-07,3.377097367491720211e-07,3.506985727779863072e-07,3.636874088068005933e-07,3.766762448356148794e-07,3.896650808644291656e-07,4.026539168932434517e-07,4.156427529220577378e-07,4.286315889508720239e-07,4.416204249796863100e-07,4.546092610085005961e-07,4.675980970373148822e-07,4.805869330661291683e-07,4.935757690949434015e-07,5.065646051237576346e-07,5.195534411525718678e-07,5.325422771813861010e-07,5.455311132102003341e-07,5.585199492390145673e-07,5.715087852678288005e-07,5.844976212966430336e-07,5.974864573254572668e-07,6.104752933542715000e-07,6.234641293830857332e-07,6.364529654118999663e-07,6.494418014407141995e-07,6.624306374695284327e-07,6.754194734983426658e-07,6.884083095271568990e-07,7.013971455559711322e-07,7.143859815847853653e-07,7.273748176135995985e-07,7.403636536424138317e-07,7.533524896712280648e-07,7.663413257000422980e-07,7.793301617288565312e-07,7.923189977576707643e-07,8.053078337864849975e-07,8.182966698152992307e-07 +0.000000000000000000e+00,1.596202202935244580e-08,3.192404405870489159e-08,4.788606608805733739e-08,6.384808811740978318e-08,7.981011014676222236e-08,9.577213217611466154e-08,1.117341542054671007e-07,1.276961762348195399e-07,1.436581982641719791e-07,1.596202202935244183e-07,1.755822423228768574e-07,1.915442643522292966e-07,2.075062863815817358e-07,2.234683084109341750e-07,2.394303304402866141e-07,2.553923524696390269e-07,2.713543744989914396e-07,2.873163965283438523e-07,3.032784185576962650e-07,3.192404405870486777e-07,3.352024626164010904e-07,3.511644846457535031e-07,3.671265066751059158e-07,3.830885287044583285e-07,3.990505507338107412e-07,4.150125727631631539e-07,4.309745947925155667e-07,4.469366168218679794e-07,4.628986388512203921e-07,4.788606608805728048e-07,4.948226829099251645e-07,5.107847049392775243e-07,5.267467269686298841e-07,5.427087489979822439e-07,5.586707710273346036e-07,5.746327930566869634e-07,5.905948150860393232e-07,6.065568371153916829e-07,6.225188591447440427e-07,6.384808811740964025e-07,6.544429032034487622e-07,6.704049252328011220e-07,6.863669472621534818e-07,7.023289692915058415e-07,7.182909913208582013e-07,7.342530133502105611e-07,7.502150353795629209e-07,7.661770574089152806e-07,7.821390794382676404e-07,7.981011014676200002e-07,8.140631234969723599e-07,8.300251455263247197e-07,8.459871675556770795e-07,8.619491895850294392e-07,8.779112116143817990e-07,8.938732336437341588e-07,9.098352556730865185e-07,9.257972777024388783e-07,9.417592997317912381e-07,9.577213217611437037e-07,9.736833437904961694e-07,9.896453658198486350e-07,1.005607387849201101e-06 +0.000000000000000000e+00,1.497160529000338159e-08,2.994321058000676317e-08,4.491481587001014476e-08,5.988642116001352634e-08,7.485802645001691455e-08,8.982963174002030275e-08,1.048012370300236910e-07,1.197728423200270792e-07,1.347444476100304674e-07,1.497160529000338556e-07,1.646876581900372438e-07,1.796592634800406320e-07,1.946308687700440202e-07,2.096024740600474084e-07,2.245740793500507966e-07,2.395456846400542113e-07,2.545172899300576259e-07,2.694888952200610406e-07,2.844605005100644553e-07,2.994321058000678699e-07,3.144037110900712846e-07,3.293753163800746993e-07,3.443469216700781140e-07,3.593185269600815286e-07,3.742901322500849433e-07,3.892617375400883580e-07,4.042333428300917727e-07,4.192049481200951873e-07,4.341765534100986020e-07,4.491481587001020167e-07,4.641197639901054314e-07,4.790913692801088460e-07,4.940629745701122607e-07,5.090345798601156754e-07,5.240061851501190900e-07,5.389777904401225047e-07,5.539493957301259194e-07,5.689210010201293341e-07,5.838926063101327487e-07,5.988642116001361634e-07,6.138358168901395781e-07,6.288074221801429928e-07,6.437790274701464074e-07,6.587506327601498221e-07,6.737222380501532368e-07,6.886938433401566515e-07,7.036654486301600661e-07,7.186370539201634808e-07,7.336086592101668955e-07,7.485802645001703101e-07,7.635518697901737248e-07,7.785234750801771395e-07,7.934950803701805542e-07,8.084666856601839688e-07,8.234382909501873835e-07,8.384098962401907982e-07,8.533815015301942129e-07,8.683531068201976275e-07,8.833247121102010422e-07,8.982963174002044569e-07,9.132679226902078715e-07,9.282395279802112862e-07,9.432111332702147009e-07 +0.000000000000000000e+00,1.298883602881199316e-08,2.597767205762398633e-08,3.896650808643597618e-08,5.195534411524796603e-08,6.494418014405995589e-08,7.793301617287195236e-08,9.092185220168394883e-08,1.039106882304959453e-07,1.168995242593079418e-07,1.298883602881199382e-07,1.428771963169319480e-07,1.558660323457439577e-07,1.688548683745559674e-07,1.818437044033679771e-07,1.948325404321799868e-07,2.078213764609919965e-07,2.208102124898040062e-07,2.337990485186160159e-07,2.467878845474280256e-07,2.597767205762400353e-07,2.727655566050520450e-07,2.857543926338640547e-07,2.987432286626760644e-07,3.117320646914880741e-07,3.247209007203000838e-07,3.377097367491120935e-07,3.506985727779241033e-07,3.636874088067361130e-07,3.766762448355481227e-07,3.896650808643601324e-07,4.026539168931721421e-07,4.156427529219841518e-07,4.286315889507961615e-07,4.416204249796081712e-07,4.546092610084201809e-07,4.675980970372321906e-07,4.805869330660442533e-07,4.935757690948563688e-07,5.065646051236684844e-07,5.195534411524806000e-07,5.325422771812927156e-07,5.455311132101048312e-07,5.585199492389169468e-07,5.715087852677290624e-07,5.844976212965411779e-07,5.974864573253532935e-07,6.104752933541654091e-07,6.234641293829775247e-07,6.364529654117896403e-07,6.494418014406017559e-07,6.624306374694138714e-07,6.754194734982259870e-07,6.884083095270381026e-07,7.013971455558502182e-07,7.143859815846623338e-07,7.273748176134744494e-07,7.403636536422865650e-07,7.533524896710986805e-07,7.663413256999107961e-07,7.793301617287229117e-07,7.923189977575350273e-07,8.053078337863471429e-07,8.182966698151592585e-07 +0.000000000000000000e+00,1.596202202934859775e-08,3.192404405869719550e-08,4.788606608804578995e-08,6.384808811739437777e-08,7.981011014674296560e-08,9.577213217609155342e-08,1.117341542054401412e-07,1.276961762347887291e-07,1.436581982641373037e-07,1.596202202934858783e-07,1.755822423228344528e-07,1.915442643521830274e-07,2.075062863815316020e-07,2.234683084108801766e-07,2.394303304402287512e-07,2.553923524695772993e-07,2.713543744989258475e-07,2.873163965282743956e-07,3.032784185576229437e-07,3.192404405869714918e-07,3.352024626163200399e-07,3.511644846456685881e-07,3.671265066750171362e-07,3.830885287043656843e-07,3.990505507337142324e-07,4.150125727630627805e-07,4.309745947924113287e-07,4.469366168217598768e-07,4.628986388511084249e-07,4.788606608804569730e-07,4.948226829098055211e-07,5.107847049391540693e-07,5.267467269685026174e-07,5.427087489978511655e-07,5.586707710271997136e-07,5.746327930565482617e-07,5.905948150858968099e-07,6.065568371152453580e-07,6.225188591445939061e-07,6.384808811739424542e-07,6.544429032032910024e-07,6.704049252326395505e-07,6.863669472619880986e-07,7.023289692913366467e-07,7.182909913206851948e-07,7.342530133500337430e-07,7.502150353793822911e-07,7.661770574087308392e-07,7.821390794380793873e-07,7.981011014674279354e-07,8.140631234967764836e-07,8.300251455261250317e-07,8.459871675554735798e-07,8.619491895848221279e-07,8.779112116141706760e-07,8.938732336435192242e-07,9.098352556728677723e-07,9.257972777022163204e-07,9.417592997315648685e-07,9.577213217609133108e-07,9.736833437902617530e-07,9.896453658196101953e-07,1.005607387848958637e-06 +0.000000000000000000e+00,1.900214686734051972e-08,3.800429373468103944e-08,5.700644060202155585e-08,7.600858746936206564e-08,9.501073433670257543e-08,1.140128812040430852e-07,1.330150280713835950e-07,1.520171749387241048e-07,1.710193218060646146e-07,1.900214686734051244e-07,2.090236155407456342e-07,2.280257624080861440e-07,2.470279092754266802e-07,2.660300561427672430e-07,2.850322030101078057e-07,3.040343498774483684e-07,3.230364967447889312e-07,3.420386436121294939e-07,3.610407904794700566e-07,3.800429373468106194e-07,3.990450842141511821e-07,4.180472310814917448e-07,4.370493779488323076e-07,4.560515248161728703e-07,4.750536716835134330e-07,4.940558185508539958e-07,5.130579654181945585e-07,5.320601122855351212e-07,5.510622591528756840e-07,5.700644060202162467e-07,5.890665528875568094e-07,6.080686997548973722e-07,6.270708466222379349e-07,6.460729934895784976e-07,6.650751403569190604e-07,6.840772872242596231e-07,7.030794340916001858e-07,7.220815809589407486e-07,7.410837278262813113e-07,7.600858746936218740e-07,7.790880215609624368e-07,7.980901684283029995e-07,8.170923152956435622e-07,8.360944621629841250e-07,8.550966090303246877e-07,8.740987558976652504e-07,8.931009027650058132e-07,9.121030496323463759e-07,9.311051964996869386e-07,9.501073433670275013e-07,9.691094902343681700e-07,9.881116371017088386e-07,1.007113783969049507e-06,1.026115930836390176e-06,1.045118077703730844e-06,1.064120224571071513e-06,1.083122371438412182e-06,1.102124518305752850e-06,1.121126665173093519e-06,1.140128812040434187e-06,1.159130958907774856e-06,1.178133105775115525e-06,1.197135252642456193e-06 +0.000000000000000000e+00,1.697377776600466251e-08,3.394755553200932502e-08,5.092133329801398421e-08,6.789511106401863680e-08,8.486888883002328938e-08,1.018426665960279420e-07,1.188164443620325945e-07,1.357902221280372471e-07,1.527639998940418997e-07,1.697377776600465523e-07,1.867115554260512049e-07,2.036853331920558574e-07,2.206591109580605100e-07,2.376328887240651626e-07,2.546066664900698152e-07,2.715804442560744413e-07,2.885542220220790674e-07,3.055279997880836935e-07,3.225017775540883196e-07,3.394755553200929458e-07,3.564493330860975719e-07,3.734231108521021980e-07,3.903968886181068241e-07,4.073706663841114502e-07,4.243444441501160763e-07,4.413182219161207024e-07,4.582919996821253285e-07,4.752657774481299546e-07,4.922395552141345278e-07,5.092133329801391010e-07,5.261871107461436742e-07,5.431608885121482473e-07,5.601346662781528205e-07,5.771084440441573937e-07,5.940822218101619669e-07,6.110559995761665400e-07,6.280297773421711132e-07,6.450035551081756864e-07,6.619773328741802595e-07,6.789511106401848327e-07,6.959248884061894059e-07,7.128986661721939791e-07,7.298724439381985522e-07,7.468462217042031254e-07,7.638199994702076986e-07,7.807937772362122717e-07,7.977675550022168449e-07,8.147413327682214181e-07,8.317151105342259913e-07,8.486888883002305644e-07,8.656626660662351376e-07,8.826364438322397108e-07,8.996102215982442840e-07,9.165839993642488571e-07,9.335577771302534303e-07,9.505315548962580035e-07,9.675053326622625766e-07,9.844791104282671498e-07,1.001452888194271723e-06,1.018426665960276296e-06,1.035400443726280869e-06,1.052374221492285443e-06,1.069347999258290016e-06 +0.000000000000000000e+00,2.026287559415348833e-08,4.052575118830697667e-08,6.078862678246047162e-08,8.105150237661396657e-08,1.013143779707674615e-07,1.215772535649209432e-07,1.418401291590744250e-07,1.621030047532279067e-07,1.823658803473813884e-07,2.026287559415348701e-07,2.228916315356883518e-07,2.431545071298418335e-07,2.634173827239953153e-07,2.836802583181487970e-07,3.039431339123022787e-07,3.242060095064557604e-07,3.444688851006092421e-07,3.647317606947627238e-07,3.849946362889162056e-07,4.052575118830696873e-07,4.255203874772231690e-07,4.457832630713766507e-07,4.660461386655301324e-07,4.863090142596835612e-07,5.065718898538369900e-07,5.268347654479904188e-07,5.470976410421438475e-07,5.673605166362972763e-07,5.876233922304507051e-07,6.078862678246041339e-07,6.281491434187575626e-07,6.484120190129109914e-07,6.686748946070644202e-07,6.889377702012178490e-07,7.092006457953712778e-07,7.294635213895247065e-07,7.497263969836781353e-07,7.699892725778315641e-07,7.902521481719849929e-07,8.105150237661384216e-07,8.307778993602918504e-07,8.510407749544452792e-07,8.713036505485987080e-07,8.915665261427521368e-07,9.118294017369055655e-07,9.320922773310589943e-07,9.523551529252124231e-07,9.726180285193658519e-07,9.928809041135193865e-07,1.013143779707672921e-06,1.033406655301826456e-06,1.053669530895979990e-06,1.073932406490133525e-06,1.094195282084287060e-06,1.114458157678440594e-06,1.134721033272594129e-06,1.154983908866747664e-06,1.175246784460901198e-06,1.195509660055054733e-06,1.215772535649208268e-06,1.236035411243361802e-06,1.256298286837515337e-06,1.276561162431668872e-06 +0.000000000000000000e+00,1.900214686733753856e-08,3.800429373467507712e-08,5.700644060201261568e-08,7.600858746935015424e-08,9.501073433668769942e-08,1.140128812040252446e-07,1.330150280713627898e-07,1.520171749387003350e-07,1.710193218060378801e-07,1.900214686733754253e-07,2.090236155407129705e-07,2.280257624080505157e-07,2.470279092753880344e-07,2.660300561427255266e-07,2.850322030100630188e-07,3.040343498774005111e-07,3.230364967447380033e-07,3.420386436120754956e-07,3.610407904794129878e-07,3.800429373467504800e-07,3.990450842140879723e-07,4.180472310814254645e-07,4.370493779487629567e-07,4.560515248161004490e-07,4.750536716834379412e-07,4.940558185507754335e-07,5.130579654181129257e-07,5.320601122854504179e-07,5.510622591527879102e-07,5.700644060201254024e-07,5.890665528874628947e-07,6.080686997548003869e-07,6.270708466221378791e-07,6.460729934894753714e-07,6.650751403568128636e-07,6.840772872241503558e-07,7.030794340914878481e-07,7.220815809588253403e-07,7.410837278261628326e-07,7.600858746935003248e-07,7.790880215608378170e-07,7.980901684281753093e-07,8.170923152955128015e-07,8.360944621628502937e-07,8.550966090301877860e-07,8.740987558975252782e-07,8.931009027648627705e-07,9.121030496322002627e-07,9.311051964995377549e-07,9.501073433668752472e-07,9.691094902342127394e-07,9.881116371015502317e-07,1.007113783968887724e-06,1.026115930836225216e-06,1.045118077703562708e-06,1.064120224570900201e-06,1.083122371438237693e-06,1.102124518305575185e-06,1.121126665172912677e-06,1.140128812040250170e-06,1.159130958907587662e-06,1.178133105774925154e-06,1.197135252642262646e-06 +0.000000000000000000e+00,1.697377776600186333e-08,3.394755553200372666e-08,5.092133329800559329e-08,6.789511106400746655e-08,8.486888883000933980e-08,1.018426665960112131e-07,1.188164443620130863e-07,1.357902221280149596e-07,1.527639998940168328e-07,1.697377776600187061e-07,1.867115554260205793e-07,2.036853331920224526e-07,2.206591109580243258e-07,2.376328887240261991e-07,2.546066664900280459e-07,2.715804442560298662e-07,2.885542220220316865e-07,3.055279997880335068e-07,3.225017775540353271e-07,3.394755553200371475e-07,3.564493330860389678e-07,3.734231108520407881e-07,3.903968886180426084e-07,4.073706663840444287e-07,4.243444441500462490e-07,4.413182219160480693e-07,4.582919996820498897e-07,4.752657774480517100e-07,4.922395552140535303e-07,5.092133329800553506e-07,5.261871107460571709e-07,5.431608885120589912e-07,5.601346662780608116e-07,5.771084440440626319e-07,5.940822218100644522e-07,6.110559995760662725e-07,6.280297773420680928e-07,6.450035551080699131e-07,6.619773328740717334e-07,6.789511106400735538e-07,6.959248884060753741e-07,7.128986661720771944e-07,7.298724439380790147e-07,7.468462217040808350e-07,7.638199994700826553e-07,7.807937772360844757e-07,7.977675550020862960e-07,8.147413327680881163e-07,8.317151105340899366e-07,8.486888883000917569e-07,8.656626660660935772e-07,8.826364438320953975e-07,8.996102215980972179e-07,9.165839993640990382e-07,9.335577771301008585e-07,9.505315548961026788e-07,9.675053326621043932e-07,9.844791104281060018e-07,1.001452888194107610e-06,1.018426665960109219e-06,1.035400443726110827e-06,1.052374221492112436e-06,1.069347999258114045e-06 +0.000000000000000000e+00,2.026287559414915722e-08,4.052575118829831443e-08,6.078862678244747496e-08,8.105150237659664210e-08,1.013143779707458092e-07,1.215772535648949764e-07,1.418401291590441435e-07,1.621030047531933107e-07,1.823658803473424778e-07,2.026287559414916450e-07,2.228916315356408121e-07,2.431545071297900057e-07,2.634173827239391993e-07,2.836802583180883929e-07,3.039431339122375866e-07,3.242060095063867802e-07,3.444688851005359738e-07,3.647317606946851674e-07,3.849946362888343610e-07,4.052575118829835546e-07,4.255203874771327482e-07,4.457832630712819418e-07,4.660461386654311355e-07,4.863090142595803291e-07,5.065718898537295227e-07,5.268347654478787163e-07,5.470976410420279099e-07,5.673605166361771035e-07,5.876233922303262971e-07,6.078862678244754907e-07,6.281491434186246844e-07,6.484120190127738780e-07,6.686748946069230716e-07,6.889377702010722652e-07,7.092006457952214588e-07,7.294635213893706524e-07,7.497263969835198460e-07,7.699892725776690396e-07,7.902521481718182333e-07,8.105150237659674269e-07,8.307778993601166205e-07,8.510407749542658141e-07,8.713036505484150077e-07,8.915665261425642013e-07,9.118294017367133949e-07,9.320922773308625885e-07,9.523551529250117822e-07,9.726180285191608699e-07,9.928809041133099576e-07,1.013143779707459045e-06,1.033406655301608133e-06,1.053669530895757221e-06,1.073932406489906309e-06,1.094195282084055396e-06,1.114458157678204484e-06,1.134721033272353572e-06,1.154983908866502659e-06,1.175246784460651747e-06,1.195509660054800835e-06,1.215772535648949923e-06,1.236035411243099010e-06,1.256298286837248098e-06,1.276561162431397186e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.187158631970397449e-09,6.374317263940794899e-09,9.561475895911193176e-09,1.274863452788159145e-08,1.593579315985198973e-08,1.912295179182238635e-08,2.231011042379278297e-08,2.549726905576317960e-08,2.868442768773357622e-08,3.187158631970397284e-08,3.505874495167437277e-08,3.824590358364477270e-08,4.143306221561517263e-08,4.462022084758557256e-08,4.780737947955597250e-08,5.099453811152637243e-08,5.418169674349677236e-08,5.736885537546717229e-08,6.055601400743757222e-08,6.374317263940797215e-08,6.693033127137837208e-08,7.011748990334877201e-08,7.330464853531917194e-08,7.649180716728957187e-08,7.967896579925997181e-08,8.286612443123037174e-08,8.605328306320077167e-08,8.924044169517117160e-08,9.242760032714157153e-08,9.561475895911197146e-08,9.880191759108237139e-08,1.019890762230527713e-07,1.051762348550231713e-07,1.083633934869935712e-07,1.115505521189639711e-07,1.147377107509343710e-07,1.179248693829047710e-07,1.211120280148751709e-07,1.242991866468455841e-07,1.274863452788159972e-07,1.306735039107864104e-07,1.338606625427568236e-07,1.370478211747272367e-07,1.402349798066976499e-07,1.434221384386680631e-07,1.466092970706384762e-07,1.497964557026088894e-07,1.529836143345793026e-07,1.561707729665497157e-07,1.593579315985201289e-07,1.625450902304905421e-07,1.657322488624609552e-07,1.689194074944313684e-07,1.721065661264017816e-07,1.752937247583721947e-07,1.784808833903426079e-07,1.816680420223130211e-07,1.848552006542834342e-07,1.880423592862538474e-07,1.912295179182242606e-07,1.944166765501946737e-07,1.976038351821650869e-07,2.007909938141355001e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.578302811153026624e-09,3.156605622306053248e-09,4.734908433459079872e-09,6.313211244612106496e-09,7.891514055765133120e-09,9.469816866918159744e-09,1.104811967807118637e-08,1.262642248922421299e-08,1.420472530037723962e-08,1.578302811153026624e-08,1.736133092268329121e-08,1.893963373383631618e-08,2.051793654498934115e-08,2.209623935614236612e-08,2.367454216729539109e-08,2.525284497844841606e-08,2.683114778960144103e-08,2.840945060075446600e-08,2.998775341190749097e-08,3.156605622306051263e-08,3.314435903421353429e-08,3.472266184536655595e-08,3.630096465651957761e-08,3.787926746767259927e-08,3.945757027882562093e-08,4.103587308997864259e-08,4.261417590113166425e-08,4.419247871228468591e-08,4.577078152343770758e-08,4.734908433459072924e-08,4.892738714574375090e-08,5.050568995689677256e-08,5.208399276804979422e-08,5.366229557920281588e-08,5.524059839035583754e-08,5.681890120150885920e-08,5.839720401266188086e-08,5.997550682381490252e-08,6.155380963496791757e-08,6.313211244612093261e-08,6.471041525727394765e-08,6.628871806842696270e-08,6.786702087957997774e-08,6.944532369073299278e-08,7.102362650188600783e-08,7.260192931303902287e-08,7.418023212419203792e-08,7.575853493534505296e-08,7.733683774649806800e-08,7.891514055765108305e-08,8.049344336880409809e-08,8.207174617995711313e-08,8.365004899111012818e-08,8.522835180226314322e-08,8.680665461341615826e-08,8.838495742456917331e-08,8.996326023572218835e-08,9.154156304687520339e-08,9.311986585802821844e-08,9.469816866918123348e-08,9.627647148033424852e-08,9.785477429148726357e-08,9.943307710264027861e-08 +0.000000000000000000e+00,3.316248906849311960e-09,6.632497813698623921e-09,9.948746720547936295e-09,1.326499562739724950e-08,1.658124453424656270e-08,1.989749344109587590e-08,2.321374234794518910e-08,2.652999125479450230e-08,2.984624016164381550e-08,3.316248906849312539e-08,3.647873797534243529e-08,3.979498688219174518e-08,4.311123578904105507e-08,4.642748469589036496e-08,4.974373360273967486e-08,5.305998250958898475e-08,5.637623141643829464e-08,5.969248032328760453e-08,6.300872923013692104e-08,6.632497813698623755e-08,6.964122704383555406e-08,7.295747595068487057e-08,7.627372485753418708e-08,7.958997376438350359e-08,8.290622267123282010e-08,8.622247157808213661e-08,8.953872048493145312e-08,9.285496939178076963e-08,9.617121829863008614e-08,9.948746720547940265e-08,1.028037161123287192e-07,1.061199650191780357e-07,1.094362139260273522e-07,1.127524628328766687e-07,1.160687117397259852e-07,1.193849606465752885e-07,1.227012095534245918e-07,1.260174584602738950e-07,1.293337073671231983e-07,1.326499562739725016e-07,1.359662051808218049e-07,1.392824540876711081e-07,1.425987029945204114e-07,1.459149519013697147e-07,1.492312008082190180e-07,1.525474497150683212e-07,1.558636986219176245e-07,1.591799475287669278e-07,1.624961964356162311e-07,1.658124453424655343e-07,1.691286942493148376e-07,1.724449431561641409e-07,1.757611920630134441e-07,1.790774409698627474e-07,1.823936898767120507e-07,1.857099387835613540e-07,1.890261876904106572e-07,1.923424365972599605e-07,1.956586855041092638e-07,1.989749344109585671e-07,2.022911833178078703e-07,2.056074322246571736e-07,2.089236811315064769e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.187158631970403653e-09,6.374317263940807307e-09,9.561475895911211374e-09,1.274863452788161627e-08,1.593579315985201951e-08,1.912295179182242275e-08,2.231011042379282599e-08,2.549726905576322923e-08,2.868442768773363247e-08,3.187158631970403901e-08,3.505874495167444556e-08,3.824590358364485211e-08,4.143306221561525866e-08,4.462022084758566521e-08,4.780737947955607176e-08,5.099453811152647831e-08,5.418169674349688485e-08,5.736885537546729140e-08,6.055601400743769133e-08,6.374317263940809126e-08,6.693033127137849120e-08,7.011748990334889113e-08,7.330464853531929106e-08,7.649180716728969099e-08,7.967896579926009092e-08,8.286612443123049085e-08,8.605328306320089078e-08,8.924044169517129071e-08,9.242760032714169064e-08,9.561475895911209058e-08,9.880191759108249051e-08,1.019890762230528904e-07,1.051762348550232904e-07,1.083633934869936903e-07,1.115505521189640902e-07,1.147377107509344902e-07,1.179248693829048901e-07,1.211120280148752768e-07,1.242991866468456635e-07,1.274863452788160502e-07,1.306735039107864369e-07,1.338606625427568236e-07,1.370478211747272103e-07,1.402349798066975970e-07,1.434221384386679837e-07,1.466092970706383704e-07,1.497964557026087571e-07,1.529836143345791437e-07,1.561707729665495304e-07,1.593579315985199171e-07,1.625450902304903038e-07,1.657322488624606905e-07,1.689194074944310772e-07,1.721065661264014639e-07,1.752937247583718506e-07,1.784808833903422373e-07,1.816680420223126240e-07,1.848552006542830107e-07,1.880423592862533974e-07,1.912295179182237841e-07,1.944166765501941708e-07,1.976038351821645575e-07,2.007909938141349442e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.578302811153033655e-09,3.156605622306067310e-09,4.734908433459101379e-09,6.313211244612135447e-09,7.891514055765169516e-09,9.469816866918202757e-09,1.104811967807123600e-08,1.262642248922426924e-08,1.420472530037730248e-08,1.578302811153033572e-08,1.736133092268337062e-08,1.893963373383640551e-08,2.051793654498944041e-08,2.209623935614247531e-08,2.367454216729551020e-08,2.525284497844854510e-08,2.683114778960157999e-08,2.840945060075461489e-08,2.998775341190764979e-08,3.156605622306068468e-08,3.314435903421371958e-08,3.472266184536675447e-08,3.630096465651978937e-08,3.787926746767282426e-08,3.945757027882585916e-08,4.103587308997889406e-08,4.261417590113192895e-08,4.419247871228496385e-08,4.577078152343799874e-08,4.734908433459103364e-08,4.892738714574406854e-08,5.050568995689710343e-08,5.208399276805013833e-08,5.366229557920317322e-08,5.524059839035620812e-08,5.681890120150924301e-08,5.839720401266227791e-08,5.997550682381531281e-08,6.155380963496834108e-08,6.313211244612136936e-08,6.471041525727439764e-08,6.628871806842742592e-08,6.786702087958045420e-08,6.944532369073348248e-08,7.102362650188651075e-08,7.260192931303953903e-08,7.418023212419256731e-08,7.575853493534559559e-08,7.733683774649862387e-08,7.891514055765165215e-08,8.049344336880468042e-08,8.207174617995770870e-08,8.365004899111073698e-08,8.522835180226376526e-08,8.680665461341679354e-08,8.838495742456982182e-08,8.996326023572285009e-08,9.154156304687587837e-08,9.311986585802890665e-08,9.469816866918193493e-08,9.627647148033496321e-08,9.785477429148799149e-08,9.943307710264101976e-08 +0.000000000000000000e+00,3.316248906848922772e-09,6.632497813697845544e-09,9.948746720546768316e-09,1.326499562739569109e-08,1.658124453424461386e-08,1.989749344109353663e-08,2.321374234794245940e-08,2.652999125479138218e-08,2.984624016164030164e-08,3.316248906848922110e-08,3.647873797533814056e-08,3.979498688218706003e-08,4.311123578903597949e-08,4.642748469588489895e-08,4.974373360273381842e-08,5.305998250958273788e-08,5.637623141643165734e-08,5.969248032328057681e-08,6.300872923012949627e-08,6.632497813697841573e-08,6.964122704382733520e-08,7.295747595067625466e-08,7.627372485752517412e-08,7.958997376437409359e-08,8.290622267122301305e-08,8.622247157807193251e-08,8.953872048492085198e-08,9.285496939176977144e-08,9.617121829861869090e-08,9.948746720546761036e-08,1.028037161123165298e-07,1.061199650191654493e-07,1.094362139260143688e-07,1.127524628328632882e-07,1.160687117397122077e-07,1.193849606465611271e-07,1.227012095534100334e-07,1.260174584602589396e-07,1.293337073671078458e-07,1.326499562739567521e-07,1.359662051808056583e-07,1.392824540876545645e-07,1.425987029945034707e-07,1.459149519013523770e-07,1.492312008082012832e-07,1.525474497150501894e-07,1.558636986218990957e-07,1.591799475287480019e-07,1.624961964355969081e-07,1.658124453424458143e-07,1.691286942492947206e-07,1.724449431561436268e-07,1.757611920629925330e-07,1.790774409698414393e-07,1.823936898766903455e-07,1.857099387835392517e-07,1.890261876903881579e-07,1.923424365972370642e-07,1.956586855040859704e-07,1.989749344109348766e-07,2.022911833177837829e-07,2.056074322246326891e-07,2.089236811314815953e-07 +0.000000000000000000e+00,6.532624949352959529e-09,1.306524989870591906e-08,1.959787484805887693e-08,2.613049979741183481e-08,3.266312474676479268e-08,3.919574969611775387e-08,4.572837464547071505e-08,5.226099959482367623e-08,5.879362454417663742e-08,6.532624949352959860e-08,7.185887444288255978e-08,7.839149939223552097e-08,8.492412434158848215e-08,9.145674929094144333e-08,9.798937424029440452e-08,1.045219991896473657e-07,1.110546241390003269e-07,1.175872490883532881e-07,1.241198740377062492e-07,1.306524989870592237e-07,1.371851239364121981e-07,1.437177488857651725e-07,1.502503738351181469e-07,1.567829987844711213e-07,1.633156237338240958e-07,1.698482486831770702e-07,1.763808736325300446e-07,1.829134985818830190e-07,1.894461235312359934e-07,1.959787484805889679e-07,2.025113734299419423e-07,2.090439983792949167e-07,2.155766233286478911e-07,2.221092482780008655e-07,2.286418732273538399e-07,2.351744981767068144e-07,2.417071231260597888e-07,2.482397480754127632e-07,2.547723730247657376e-07,2.613049979741187120e-07,2.678376229234716865e-07,2.743702478728246609e-07,2.809028728221776353e-07,2.874354977715306097e-07,2.939681227208835841e-07,3.005007476702365585e-07,3.070333726195895330e-07,3.135659975689425074e-07,3.200986225182954818e-07,3.266312474676484562e-07,3.331638724170014306e-07,3.396964973663544051e-07,3.462291223157073795e-07,3.527617472650603539e-07,3.592943722144133283e-07,3.658269971637663027e-07,3.723596221131192771e-07,3.788922470624722516e-07,3.854248720118252260e-07,3.919574969611782004e-07,3.984901219105311748e-07,4.050227468598841492e-07,4.115553718092371237e-07 +0.000000000000000000e+00,4.854602442998000613e-09,9.709204885996001227e-09,1.456380732899400101e-08,1.941840977199199914e-08,2.427301221498999728e-08,2.912761465798799541e-08,3.398221710098599354e-08,3.883681954398399167e-08,4.369142198698198980e-08,4.854602442997998794e-08,5.340062687297798607e-08,5.825522931597598420e-08,6.310983175897398233e-08,6.796443420197198708e-08,7.281903664496999183e-08,7.767363908796799658e-08,8.252824153096600133e-08,8.738284397396400608e-08,9.223744641696201083e-08,9.709204885996001558e-08,1.019466513029580203e-07,1.068012537459560251e-07,1.116558561889540298e-07,1.165104586319520346e-07,1.213650610749500393e-07,1.262196635179480441e-07,1.310742659609460488e-07,1.359288684039440536e-07,1.407834708469420583e-07,1.456380732899400631e-07,1.504926757329380678e-07,1.553472781759360726e-07,1.602018806189340773e-07,1.650564830619320821e-07,1.699110855049300868e-07,1.747656879479280916e-07,1.796202903909260963e-07,1.844748928339241011e-07,1.893294952769221058e-07,1.941840977199201106e-07,1.990387001629181153e-07,2.038933026059161201e-07,2.087479050489141248e-07,2.136025074919121296e-07,2.184571099349101343e-07,2.233117123779081391e-07,2.281663148209061438e-07,2.330209172639041486e-07,2.378755197069021533e-07,2.427301221499001845e-07,2.475847245928982157e-07,2.524393270358962470e-07,2.572939294788942782e-07,2.621485319218923094e-07,2.670031343648903406e-07,2.718577368078883718e-07,2.767123392508864031e-07,2.815669416938844343e-07,2.864215441368824655e-07,2.912761465798804967e-07,2.961307490228785279e-07,3.009853514658765592e-07,3.058399539088745904e-07 +0.000000000000000000e+00,6.828030907047943525e-09,1.365606181409588705e-08,2.048409272114382975e-08,2.731212362819177079e-08,3.414015453523971184e-08,4.096818544228765288e-08,4.779621634933559392e-08,5.462424725638353497e-08,6.145227816343147601e-08,6.828030907047942367e-08,7.510833997752737133e-08,8.193637088457531900e-08,8.876440179162326666e-08,9.559243269867121432e-08,1.024204636057191620e-07,1.092484945127671096e-07,1.160765254198150573e-07,1.229045563268630050e-07,1.297325872339109526e-07,1.365606181409589003e-07,1.433886490480068479e-07,1.502166799550547956e-07,1.570447108621027433e-07,1.638727417691506909e-07,1.707007726761986386e-07,1.775288035832465863e-07,1.843568344902945339e-07,1.911848653973424816e-07,1.980128963043904292e-07,2.048409272114383769e-07,2.116689581184863246e-07,2.184969890255342722e-07,2.253250199325822199e-07,2.321530508396301675e-07,2.389810817466781152e-07,2.458091126537260629e-07,2.526371435607740105e-07,2.594651744678219582e-07,2.662932053748699059e-07,2.731212362819178535e-07,2.799492671889658012e-07,2.867772980960137488e-07,2.936053290030616965e-07,3.004333599101096442e-07,3.072613908171575918e-07,3.140894217242055395e-07,3.209174526312534871e-07,3.277454835383014348e-07,3.345735144453493825e-07,3.414015453523973301e-07,3.482295762594452778e-07,3.550576071664932254e-07,3.618856380735411731e-07,3.687136689805891208e-07,3.755416998876370684e-07,3.823697307946850161e-07,3.891977617017329638e-07,3.960257926087809114e-07,4.028538235158288591e-07,4.096818544228768067e-07,4.165098853299247544e-07,4.233379162369727021e-07,4.301659471440206497e-07 +0.000000000000000000e+00,6.532624949353002542e-09,1.306524989870600508e-08,1.959787484805900928e-08,2.613049979741201348e-08,3.266312474676501768e-08,3.919574969611801856e-08,4.572837464547101945e-08,5.226099959482402034e-08,5.879362454417702123e-08,6.532624949353002212e-08,7.185887444288302300e-08,7.839149939223602389e-08,8.492412434158902478e-08,9.145674929094202567e-08,9.798937424029502656e-08,1.045219991896480274e-07,1.110546241390010283e-07,1.175872490883540292e-07,1.241198740377070433e-07,1.306524989870600707e-07,1.371851239364130981e-07,1.437177488857661254e-07,1.502503738351191528e-07,1.567829987844721801e-07,1.633156237338252075e-07,1.698482486831782348e-07,1.763808736325312622e-07,1.829134985818842896e-07,1.894461235312373169e-07,1.959787484805903443e-07,2.025113734299433716e-07,2.090439983792963990e-07,2.155766233286494264e-07,2.221092482780024537e-07,2.286418732273554811e-07,2.351744981767085084e-07,2.417071231260615358e-07,2.482397480754145631e-07,2.547723730247675905e-07,2.613049979741206179e-07,2.678376229234736452e-07,2.743702478728266726e-07,2.809028728221796999e-07,2.874354977715327273e-07,2.939681227208857546e-07,3.005007476702387820e-07,3.070333726195918094e-07,3.135659975689448367e-07,3.200986225182978641e-07,3.266312474676508914e-07,3.331638724170039188e-07,3.396964973663569462e-07,3.462291223157099735e-07,3.527617472650630009e-07,3.592943722144160282e-07,3.658269971637690556e-07,3.723596221131220829e-07,3.788922470624751103e-07,3.854248720118281377e-07,3.919574969611811650e-07,3.984901219105341924e-07,4.050227468598872197e-07,4.115553718092402471e-07 +0.000000000000000000e+00,4.854602442998032046e-09,9.709204885996064093e-09,1.456380732899409697e-08,1.941840977199213149e-08,2.427301221499016602e-08,2.912761465798820055e-08,3.398221710098623177e-08,3.883681954398426299e-08,4.369142198698229421e-08,4.854602442998032543e-08,5.340062687297835664e-08,5.825522931597638786e-08,6.310983175897441908e-08,6.796443420197245030e-08,7.281903664497048152e-08,7.767363908796851274e-08,8.252824153096654396e-08,8.738284397396457518e-08,9.223744641696260640e-08,9.709204885996063762e-08,1.019466513029586688e-07,1.068012537459567001e-07,1.116558561889547313e-07,1.165104586319527625e-07,1.213650610749507805e-07,1.262196635179488117e-07,1.310742659609468429e-07,1.359288684039448741e-07,1.407834708469429054e-07,1.456380732899409366e-07,1.504926757329389678e-07,1.553472781759369990e-07,1.602018806189350302e-07,1.650564830619330614e-07,1.699110855049310927e-07,1.747656879479291239e-07,1.796202903909271551e-07,1.844748928339251863e-07,1.893294952769232175e-07,1.941840977199212488e-07,1.990387001629192800e-07,2.038933026059173112e-07,2.087479050489153424e-07,2.136025074919133736e-07,2.184571099349114049e-07,2.233117123779094361e-07,2.281663148209074673e-07,2.330209172639054985e-07,2.378755197069035297e-07,2.427301221499015610e-07,2.475847245928995922e-07,2.524393270358976234e-07,2.572939294788956546e-07,2.621485319218936858e-07,2.670031343648917171e-07,2.718577368078897483e-07,2.767123392508877795e-07,2.815669416938858107e-07,2.864215441368838419e-07,2.912761465798818731e-07,2.961307490228799044e-07,3.009853514658779356e-07,3.058399539088759668e-07 +0.000000000000000000e+00,6.828030907047206507e-09,1.365606181409441301e-08,2.048409272114161952e-08,2.731212362818882603e-08,3.414015453523603254e-08,4.096818544228323904e-08,4.779621634933044555e-08,5.462424725637765206e-08,6.145227816342485857e-08,6.828030907047206507e-08,7.510833997751927158e-08,8.193637088456647809e-08,8.876440179161368460e-08,9.559243269866089110e-08,1.024204636057080976e-07,1.092484945127553041e-07,1.160765254198025106e-07,1.229045563268497171e-07,1.297325872338969236e-07,1.365606181409441301e-07,1.433886490479913367e-07,1.502166799550385432e-07,1.570447108620857497e-07,1.638727417691329562e-07,1.707007726761801627e-07,1.775288035832273692e-07,1.843568344902745757e-07,1.911848653973217822e-07,1.980128963043689887e-07,2.048409272114161952e-07,2.116689581184634017e-07,2.184969890255106082e-07,2.253250199325578147e-07,2.321530508396050213e-07,2.389810817466522278e-07,2.458091126536994343e-07,2.526371435607466408e-07,2.594651744677938473e-07,2.662932053748410538e-07,2.731212362818882603e-07,2.799492671889354668e-07,2.867772980959826733e-07,2.936053290030298798e-07,3.004333599100770863e-07,3.072613908171242928e-07,3.140894217241714993e-07,3.209174526312187059e-07,3.277454835382659124e-07,3.345735144453131189e-07,3.414015453523603254e-07,3.482295762594075319e-07,3.550576071664547384e-07,3.618856380735019449e-07,3.687136689805491514e-07,3.755416998875963579e-07,3.823697307946435644e-07,3.891977617016907709e-07,3.960257926087379774e-07,4.028538235157851839e-07,4.096818544228323904e-07,4.165098853298795970e-07,4.233379162369268035e-07,4.301659471439740100e-07 +0.000000000000000000e+00,9.939023605179778300e-09,1.987804721035955660e-08,2.981707081553933325e-08,3.975609442071910658e-08,4.969511802589887992e-08,5.963414163107865326e-08,6.957316523625842660e-08,7.951218884143819993e-08,8.945121244661797327e-08,9.939023605179774661e-08,1.093292596569775199e-07,1.192682832621572800e-07,1.292073068673370402e-07,1.391463304725168003e-07,1.490853540776965604e-07,1.590243776828763205e-07,1.689634012880560806e-07,1.789024248932358407e-07,1.888414484984156008e-07,1.987804721035953609e-07,2.087194957087751210e-07,2.186585193139548811e-07,2.285975429191346412e-07,2.385365665243144013e-07,2.484755901294941879e-07,2.584146137346739744e-07,2.683536373398537610e-07,2.782926609450335476e-07,2.882316845502133341e-07,2.981707081553931207e-07,3.081097317605729073e-07,3.180487553657526939e-07,3.279877789709324804e-07,3.379268025761122670e-07,3.478658261812920536e-07,3.578048497864718401e-07,3.677438733916516267e-07,3.776828969968314133e-07,3.876219206020111999e-07,3.975609442071909864e-07,4.074999678123707730e-07,4.174389914175505596e-07,4.273780150227303462e-07,4.373170386279101327e-07,4.472560622330899193e-07,4.571950858382697059e-07,4.671341094434494924e-07,4.770731330486293320e-07,4.870121566538091715e-07,4.969511802589890110e-07,5.068902038641688505e-07,5.168292274693486900e-07,5.267682510745285295e-07,5.367072746797083690e-07,5.466462982848882085e-07,5.565853218900680480e-07,5.665243454952478876e-07,5.764633691004277271e-07,5.864023927056075666e-07,5.963414163107874061e-07,6.062804399159672456e-07,6.162194635211470851e-07,6.261584871263269246e-07 +0.000000000000000000e+00,8.230075726124040493e-09,1.646015145224808099e-08,2.469022717837212313e-08,3.292030290449616859e-08,4.115037863062021405e-08,4.938045435674425950e-08,5.761053008286830496e-08,6.584060580899235041e-08,7.407068153511639587e-08,8.230075726124044133e-08,9.053083298736448678e-08,9.876090871348853224e-08,1.069909844396125777e-07,1.152210601657366232e-07,1.234511358918606818e-07,1.316812116179847273e-07,1.399112873441087728e-07,1.481413630702328182e-07,1.563714387963568637e-07,1.646015145224809091e-07,1.728315902486049546e-07,1.810616659747290000e-07,1.892917417008530455e-07,1.975218174269770909e-07,2.057518931531011364e-07,2.139819688792251819e-07,2.222120446053492273e-07,2.304421203314732728e-07,2.386721960575973182e-07,2.469022717837213637e-07,2.551323475098454091e-07,2.633624232359694546e-07,2.715924989620935001e-07,2.798225746882175455e-07,2.880526504143415910e-07,2.962827261404656364e-07,3.045128018665896819e-07,3.127428775927137273e-07,3.209729533188377728e-07,3.292030290449618182e-07,3.374331047710858637e-07,3.456631804972099092e-07,3.538932562233339546e-07,3.621233319494580001e-07,3.703534076755820455e-07,3.785834834017060910e-07,3.868135591278301364e-07,3.950436348539541819e-07,4.032737105800782274e-07,4.115037863062022728e-07,4.197338620323263183e-07,4.279639377584503637e-07,4.361940134845744092e-07,4.444240892106984546e-07,4.526541649368225001e-07,4.608842406629465455e-07,4.691143163890705910e-07,4.773443921151946365e-07,4.855744678413187349e-07,4.938045435674428332e-07,5.020346192935669316e-07,5.102646950196910300e-07,5.184947707458151284e-07 +0.000000000000000000e+00,1.042833696354886756e-08,2.085667392709773512e-08,3.128501089064660267e-08,4.171334785419547023e-08,5.214168481774433779e-08,6.257002178129320535e-08,7.299835874484207952e-08,8.342669570839095370e-08,9.385503267193982787e-08,1.042833696354887020e-07,1.147117065990375762e-07,1.251400435625864372e-07,1.355683805261352981e-07,1.459967174896841590e-07,1.564250544532330200e-07,1.668533914167818809e-07,1.772817283803307419e-07,1.877100653438796028e-07,1.981384023074284637e-07,2.085667392709773247e-07,2.189950762345261856e-07,2.294234131980750466e-07,2.398517501616239075e-07,2.502800871251727684e-07,2.607084240887216294e-07,2.711367610522704903e-07,2.815650980158193513e-07,2.919934349793682122e-07,3.024217719429170731e-07,3.128501089064659341e-07,3.232784458700147950e-07,3.337067828335636560e-07,3.441351197971125169e-07,3.545634567606613778e-07,3.649917937242102388e-07,3.754201306877590997e-07,3.858484676513079607e-07,3.962768046148568216e-07,4.067051415784056825e-07,4.171334785419545435e-07,4.275618155055034044e-07,4.379901524690522654e-07,4.484184894326011263e-07,4.588468263961499872e-07,4.692751633596988482e-07,4.797035003232477091e-07,4.901318372867966230e-07,5.005601742503455369e-07,5.109885112138944508e-07,5.214168481774433646e-07,5.318451851409922785e-07,5.422735221045411924e-07,5.527018590680901063e-07,5.631301960316390202e-07,5.735585329951879340e-07,5.839868699587368479e-07,5.944152069222857618e-07,6.048435438858346757e-07,6.152718808493835896e-07,6.257002178129325034e-07,6.361285547764814173e-07,6.465568917400303312e-07,6.569852287035792451e-07 +0.000000000000000000e+00,9.939023605179753485e-09,1.987804721035950697e-08,2.981707081553926046e-08,3.975609442071901394e-08,4.969511802589876743e-08,5.963414163107852091e-08,6.957316523625826778e-08,7.951218884143801465e-08,8.945121244661776151e-08,9.939023605179750838e-08,1.093292596569772552e-07,1.192682832621570154e-07,1.292073068673367755e-07,1.391463304725165356e-07,1.490853540776962957e-07,1.590243776828760558e-07,1.689634012880558159e-07,1.789024248932355760e-07,1.888414484984153361e-07,1.987804721035950962e-07,2.087194957087748563e-07,2.186585193139546164e-07,2.285975429191343765e-07,2.385365665243141366e-07,2.484755901294938702e-07,2.584146137346736038e-07,2.683536373398533375e-07,2.782926609450330711e-07,2.882316845502128047e-07,2.981707081553925384e-07,3.081097317605722720e-07,3.180487553657520056e-07,3.279877789709317393e-07,3.379268025761114729e-07,3.478658261812912065e-07,3.578048497864709402e-07,3.677438733916506738e-07,3.776828969968304074e-07,3.876219206020101411e-07,3.975609442071898747e-07,4.074999678123696083e-07,4.174389914175493420e-07,4.273780150227290756e-07,4.373170386279088092e-07,4.472560622330885429e-07,4.571950858382682765e-07,4.671341094434480101e-07,4.770731330486277438e-07,4.870121566538074774e-07,4.969511802589872110e-07,5.068902038641669447e-07,5.168292274693466783e-07,5.267682510745264119e-07,5.367072746797061456e-07,5.466462982848858792e-07,5.565853218900656128e-07,5.665243454952453465e-07,5.764633691004250801e-07,5.864023927056048137e-07,5.963414163107845474e-07,6.062804399159642810e-07,6.162194635211440146e-07,6.261584871263237483e-07 +0.000000000000000000e+00,8.230075726124065308e-09,1.646015145224813062e-08,2.469022717837219593e-08,3.292030290449626123e-08,4.115037863062032654e-08,4.938045435674439185e-08,5.761053008286845716e-08,6.584060580899252247e-08,7.407068153511659439e-08,8.230075726124066632e-08,9.053083298736473825e-08,9.876090871348881017e-08,1.069909844396128821e-07,1.152210601657369540e-07,1.234511358918610259e-07,1.316812116179850979e-07,1.399112873441091698e-07,1.481413630702332417e-07,1.563714387963573137e-07,1.646015145224813856e-07,1.728315902486054575e-07,1.810616659747295294e-07,1.892917417008536014e-07,1.975218174269776733e-07,2.057518931531017452e-07,2.139819688792258171e-07,2.222120446053498891e-07,2.304421203314739610e-07,2.386721960575980064e-07,2.469022717837220519e-07,2.551323475098460974e-07,2.633624232359701428e-07,2.715924989620941883e-07,2.798225746882182337e-07,2.880526504143422792e-07,2.962827261404663246e-07,3.045128018665903701e-07,3.127428775927144155e-07,3.209729533188384610e-07,3.292030290449625065e-07,3.374331047710865519e-07,3.456631804972105974e-07,3.538932562233346428e-07,3.621233319494586883e-07,3.703534076755827337e-07,3.785834834017067792e-07,3.868135591278308247e-07,3.950436348539548701e-07,4.032737105800789156e-07,4.115037863062029610e-07,4.197338620323270065e-07,4.279639377584510519e-07,4.361940134845750974e-07,4.444240892106991428e-07,4.526541649368231883e-07,4.608842406629472338e-07,4.691143163890712792e-07,4.773443921151953776e-07,4.855744678413194760e-07,4.938045435674435744e-07,5.020346192935676728e-07,5.102646950196917712e-07,5.184947707458158696e-07 +0.000000000000000000e+00,1.042833696354782531e-08,2.085667392709565062e-08,3.128501089064347262e-08,4.171334785419129462e-08,5.214168481773911662e-08,6.257002178128694524e-08,7.299835874483477386e-08,8.342669570838260248e-08,9.385503267193043110e-08,1.042833696354782597e-07,1.147117065990260883e-07,1.251400435625739170e-07,1.355683805261217456e-07,1.459967174896695742e-07,1.564250544532174028e-07,1.668533914167652314e-07,1.772817283803130600e-07,1.877100653438608887e-07,1.981384023074087173e-07,2.085667392709565459e-07,2.189950762345043745e-07,2.294234131980522031e-07,2.398517501616000318e-07,2.502800871251478868e-07,2.607084240886957419e-07,2.711367610522435970e-07,2.815650980157914521e-07,2.919934349793393072e-07,3.024217719428871623e-07,3.128501089064350174e-07,3.232784458699828725e-07,3.337067828335307276e-07,3.441351197970785826e-07,3.545634567606264377e-07,3.649917937241742928e-07,3.754201306877221479e-07,3.858484676512700030e-07,3.962768046148178581e-07,4.067051415783657132e-07,4.171334785419135683e-07,4.275618155054614234e-07,4.379901524690092784e-07,4.484184894325571335e-07,4.588468263961049886e-07,4.692751633596528437e-07,4.797035003232006988e-07,4.901318372867485539e-07,5.005601742502964090e-07,5.109885112138442641e-07,5.214168481773921191e-07,5.318451851409399742e-07,5.422735221044878293e-07,5.527018590680356844e-07,5.631301960315835395e-07,5.735585329951313946e-07,5.839868699586792497e-07,5.944152069222271048e-07,6.048435438857749599e-07,6.152718808493228149e-07,6.257002178128706700e-07,6.361285547764185251e-07,6.465568917399663802e-07,6.569852287035142353e-07 +0.000000000000000000e+00,1.338975220423522087e-08,2.677950440847044173e-08,4.016925661270565929e-08,5.355900881694087684e-08,6.694876102117609440e-08,8.033851322541131857e-08,9.372826542964654275e-08,1.071180176338817669e-07,1.205077698381169911e-07,1.338975220423522153e-07,1.472872742465874394e-07,1.606770264508226636e-07,1.740667786550578878e-07,1.874565308592931120e-07,2.008462830635283361e-07,2.142360352677635603e-07,2.276257874719987845e-07,2.410155396762339822e-07,2.544052918804691799e-07,2.677950440847043776e-07,2.811847962889395753e-07,2.945745484931747730e-07,3.079643006974099707e-07,3.213540529016451684e-07,3.347438051058803661e-07,3.481335573101155638e-07,3.615233095143507615e-07,3.749130617185859592e-07,3.883028139228211569e-07,4.016925661270563546e-07,4.150823183312915523e-07,4.284720705355267501e-07,4.418618227397619478e-07,4.552515749439971455e-07,4.686413271482323432e-07,4.820310793524675409e-07,4.954208315567026856e-07,5.088105837609378304e-07,5.222003359651729752e-07,5.355900881694081199e-07,5.489798403736432647e-07,5.623695925778784095e-07,5.757593447821135542e-07,5.891490969863486990e-07,6.025388491905838437e-07,6.159286013948189885e-07,6.293183535990541333e-07,6.427081058032892780e-07,6.560978580075244228e-07,6.694876102117595676e-07,6.828773624159947123e-07,6.962671146202298571e-07,7.096568668244650019e-07,7.230466190287001466e-07,7.364363712329352914e-07,7.498261234371704362e-07,7.632158756414055809e-07,7.766056278456407257e-07,7.899953800498758705e-07,8.033851322541110152e-07,8.167748844583461600e-07,8.301646366625813047e-07,8.435543888668164495e-07 +0.000000000000000000e+00,1.165903218731543914e-08,2.331806437463087827e-08,3.497709656194631410e-08,4.663612874926174993e-08,5.829516093657718575e-08,6.995419312389262820e-08,8.161322531120807064e-08,9.327225749852351309e-08,1.049312896858389555e-07,1.165903218731543980e-07,1.282493540604698272e-07,1.399083862477852564e-07,1.515674184351006856e-07,1.632264506224161148e-07,1.748854828097315440e-07,1.865445149970469732e-07,1.982035471843624024e-07,2.098625793716778317e-07,2.215216115589932609e-07,2.331806437463086901e-07,2.448396759336241193e-07,2.564987081209395485e-07,2.681577403082549777e-07,2.798167724955704069e-07,2.914758046828858361e-07,3.031348368702012653e-07,3.147938690575166945e-07,3.264529012448321238e-07,3.381119334321475530e-07,3.497709656194629822e-07,3.614299978067784114e-07,3.730890299940938406e-07,3.847480621814092698e-07,3.964070943687246990e-07,4.080661265560401282e-07,4.197251587433555574e-07,4.313841909306709866e-07,4.430432231179864159e-07,4.547022553053018451e-07,4.663612874926172743e-07,4.780203196799326505e-07,4.896793518672480268e-07,5.013383840545634031e-07,5.129974162418787794e-07,5.246564484291941556e-07,5.363154806165095319e-07,5.479745128038249082e-07,5.596335449911402844e-07,5.712925771784556607e-07,5.829516093657710370e-07,5.946106415530864132e-07,6.062696737404017895e-07,6.179287059277171658e-07,6.295877381150325421e-07,6.412467703023479183e-07,6.529058024896632946e-07,6.645648346769786709e-07,6.762238668642940471e-07,6.878828990516094234e-07,6.995419312389247997e-07,7.112009634262401759e-07,7.228599956135555522e-07,7.345190278008709285e-07 +0.000000000000000000e+00,1.410482844236532675e-08,2.820965688473065349e-08,4.231448532709597693e-08,5.641931376946130037e-08,7.052414221182662381e-08,8.462897065419195387e-08,9.873379909655728392e-08,1.128386275389226140e-07,1.269434559812879440e-07,1.410482844236532741e-07,1.551531128660186041e-07,1.692579413083839342e-07,1.833627697507492643e-07,1.974675981931145943e-07,2.115724266354799244e-07,2.256772550778452544e-07,2.397820835202106110e-07,2.538869119625759410e-07,2.679917404049412711e-07,2.820965688473066011e-07,2.962013972896719312e-07,3.103062257320372612e-07,3.244110541744025913e-07,3.385158826167679213e-07,3.526207110591332514e-07,3.667255395014985815e-07,3.808303679438639115e-07,3.949351963862292416e-07,4.090400248285945716e-07,4.231448532709599017e-07,4.372496817133252317e-07,4.513545101556905618e-07,4.654593385980558918e-07,4.795641670404212219e-07,4.936689954827865520e-07,5.077738239251518820e-07,5.218786523675172121e-07,5.359834808098825421e-07,5.500883092522478722e-07,5.641931376946132022e-07,5.782979661369785323e-07,5.924027945793438623e-07,6.065076230217091924e-07,6.206124514640745225e-07,6.347172799064398525e-07,6.488221083488051826e-07,6.629269367911705126e-07,6.770317652335358427e-07,6.911365936759011727e-07,7.052414221182665028e-07,7.193462505606318329e-07,7.334510790029971629e-07,7.475559074453624930e-07,7.616607358877278230e-07,7.757655643300931531e-07,7.898703927724584831e-07,8.039752212148238132e-07,8.180800496571891432e-07,8.321848780995544733e-07,8.462897065419198034e-07,8.603945349842851334e-07,8.744993634266504635e-07,8.886041918690157935e-07 +0.000000000000000000e+00,1.338975220423516296e-08,2.677950440847032593e-08,4.016925661270548723e-08,5.355900881694064523e-08,6.694876102117580323e-08,8.033851322541096123e-08,9.372826542964611923e-08,1.071180176338812772e-07,1.205077698381164352e-07,1.338975220423516065e-07,1.472872742465867777e-07,1.606770264508219489e-07,1.740667786550571202e-07,1.874565308592922914e-07,2.008462830635274626e-07,2.142360352677626339e-07,2.276257874719978051e-07,2.410155396762329763e-07,2.544052918804681740e-07,2.677950440847033717e-07,2.811847962889385695e-07,2.945745484931737672e-07,3.079643006974089649e-07,3.213540529016441626e-07,3.347438051058793603e-07,3.481335573101145580e-07,3.615233095143497557e-07,3.749130617185849534e-07,3.883028139228201511e-07,4.016925661270553488e-07,4.150823183312905465e-07,4.284720705355257442e-07,4.418618227397609419e-07,4.552515749439961396e-07,4.686413271482313373e-07,4.820310793524664821e-07,4.954208315567016268e-07,5.088105837609367716e-07,5.222003359651719164e-07,5.355900881694070611e-07,5.489798403736422059e-07,5.623695925778773507e-07,5.757593447821124954e-07,5.891490969863476402e-07,6.025388491905827850e-07,6.159286013948179297e-07,6.293183535990530745e-07,6.427081058032882193e-07,6.560978580075233640e-07,6.694876102117585088e-07,6.828773624159936535e-07,6.962671146202287983e-07,7.096568668244639431e-07,7.230466190286990878e-07,7.364363712329342326e-07,7.498261234371693774e-07,7.632158756414045221e-07,7.766056278456396669e-07,7.899953800498748117e-07,8.033851322541099564e-07,8.167748844583451012e-07,8.301646366625802460e-07,8.435543888668153907e-07 +0.000000000000000000e+00,1.165903218731540605e-08,2.331806437463081210e-08,3.497709656194622146e-08,4.663612874926163081e-08,5.829516093657704017e-08,6.995419312389244291e-08,8.161322531120784565e-08,9.327225749852324839e-08,1.049312896858386511e-07,1.165903218731540539e-07,1.282493540604694566e-07,1.399083862477848594e-07,1.515674184351002621e-07,1.632264506224156648e-07,1.748854828097310676e-07,1.865445149970464703e-07,1.982035471843618731e-07,2.098625793716772758e-07,2.215216115589926785e-07,2.331806437463080813e-07,2.448396759336234840e-07,2.564987081209389132e-07,2.681577403082543424e-07,2.798167724955697716e-07,2.914758046828852009e-07,3.031348368702006301e-07,3.147938690575160593e-07,3.264529012448314885e-07,3.381119334321469177e-07,3.497709656194623469e-07,3.614299978067777761e-07,3.730890299940932053e-07,3.847480621814086345e-07,3.964070943687240637e-07,4.080661265560394929e-07,4.197251587433549222e-07,4.313841909306703514e-07,4.430432231179857806e-07,4.547022553053012098e-07,4.663612874926166390e-07,4.780203196799320153e-07,4.896793518672473915e-07,5.013383840545627678e-07,5.129974162418781441e-07,5.246564484291935203e-07,5.363154806165088966e-07,5.479745128038242729e-07,5.596335449911396492e-07,5.712925771784550254e-07,5.829516093657704017e-07,5.946106415530857780e-07,6.062696737404011542e-07,6.179287059277165305e-07,6.295877381150319068e-07,6.412467703023472831e-07,6.529058024896626593e-07,6.645648346769780356e-07,6.762238668642934119e-07,6.878828990516087881e-07,6.995419312389241644e-07,7.112009634262395407e-07,7.228599956135549169e-07,7.345190278008702932e-07 +0.000000000000000000e+00,1.410482844236398010e-08,2.820965688472796019e-08,4.231448532709194029e-08,5.641931376945592039e-08,7.052414221181990049e-08,8.462897065418388058e-08,9.873379909654786068e-08,1.128386275389118408e-07,1.269434559812758209e-07,1.410482844236398010e-07,1.551531128660037811e-07,1.692579413083677612e-07,1.833627697507317413e-07,1.974675981930957214e-07,2.115724266354597015e-07,2.256772550778236816e-07,2.397820835201876352e-07,2.538869119625515888e-07,2.679917404049155424e-07,2.820965688472794961e-07,2.962013972896434497e-07,3.103062257320074033e-07,3.244110541743713569e-07,3.385158826167353106e-07,3.526207110590992642e-07,3.667255395014632178e-07,3.808303679438271715e-07,3.949351963861911251e-07,4.090400248285550787e-07,4.231448532709190323e-07,4.372496817132829860e-07,4.513545101556469396e-07,4.654593385980108932e-07,4.795641670403748468e-07,4.936689954827388005e-07,5.077738239251027541e-07,5.218786523674667077e-07,5.359834808098306614e-07,5.500883092521946150e-07,5.641931376945585686e-07,5.782979661369225222e-07,5.924027945792864759e-07,6.065076230216504295e-07,6.206124514640143831e-07,6.347172799063783368e-07,6.488221083487422904e-07,6.629269367911062440e-07,6.770317652334701976e-07,6.911365936758341513e-07,7.052414221181981049e-07,7.193462505605620585e-07,7.334510790029260121e-07,7.475559074452899658e-07,7.616607358876539194e-07,7.757655643300178730e-07,7.898703927723818267e-07,8.039752212147457803e-07,8.180800496571097339e-07,8.321848780994736875e-07,8.462897065418376412e-07,8.603945349842015948e-07,8.744993634265655484e-07,8.886041918689295020e-07 +0.000000000000000000e+00,1.688415257990405715e-08,3.376830515980811430e-08,5.065245773971217146e-08,6.753661031961622861e-08,8.442076289952029238e-08,1.013049154794243561e-07,1.181890680593284199e-07,1.350732206392324837e-07,1.519573732191365475e-07,1.688415257990406112e-07,1.857256783789446750e-07,2.026098309588487388e-07,2.194939835387528025e-07,2.363781361186568663e-07,2.532622886985609565e-07,2.701464412784650203e-07,2.870305938583690841e-07,3.039147464382731479e-07,3.207988990181772116e-07,3.376830515980812754e-07,3.545672041779853392e-07,3.714513567578894029e-07,3.883355093377934667e-07,4.052196619176975305e-07,4.221038144976015942e-07,4.389879670775056580e-07,4.558721196574097218e-07,4.727562722373137856e-07,4.896404248172178493e-07,5.065245773971219131e-07,5.234087299770259769e-07,5.402928825569300406e-07,5.571770351368341044e-07,5.740611877167381682e-07,5.909453402966422319e-07,6.078294928765462957e-07,6.247136454564503595e-07,6.415977980363544232e-07,6.584819506162584870e-07,6.753661031961625508e-07,6.922502557760666146e-07,7.091344083559706783e-07,7.260185609358747421e-07,7.429027135157788059e-07,7.597868660956828696e-07,7.766710186755869334e-07,7.935551712554909972e-07,8.104393238353950609e-07,8.273234764152991247e-07,8.442076289952031885e-07,8.610917815751072523e-07,8.779759341550113160e-07,8.948600867349153798e-07,9.117442393148194436e-07,9.286283918947235073e-07,9.455125444746275711e-07,9.623966970545316349e-07,9.792808496344356986e-07,9.961650022143397624e-07,1.013049154794243826e-06,1.029933307374147890e-06,1.046817459954051954e-06,1.063701612533956017e-06 +0.000000000000000000e+00,1.513269558343348427e-08,3.026539116686696854e-08,4.539808675030044950e-08,6.053078233373392384e-08,7.566347791716739819e-08,9.079617350060087253e-08,1.059288690840343469e-07,1.210615646674678212e-07,1.361942602509012956e-07,1.513269558343347699e-07,1.664596514177682442e-07,1.815923470012017186e-07,1.967250425846351929e-07,2.118577381680686673e-07,2.269904337515021416e-07,2.421231293349355895e-07,2.572558249183690109e-07,2.723885205018024323e-07,2.875212160852358537e-07,3.026539116686692751e-07,3.177866072521026965e-07,3.329193028355361179e-07,3.480519984189695393e-07,3.631846940024029607e-07,3.783173895858363821e-07,3.934500851692698035e-07,4.085827807527032249e-07,4.237154763361366463e-07,4.388481719195700677e-07,4.539808675030034891e-07,4.691135630864369105e-07,4.842462586698703320e-07,4.993789542533037534e-07,5.145116498367371748e-07,5.296443454201705962e-07,5.447770410036040176e-07,5.599097365870374390e-07,5.750424321704708604e-07,5.901751277539042818e-07,6.053078233373377032e-07,6.204405189207711246e-07,6.355732145042045460e-07,6.507059100876379674e-07,6.658386056710713888e-07,6.809713012545048102e-07,6.961039968379382316e-07,7.112366924213716530e-07,7.263693880048050744e-07,7.415020835882384958e-07,7.566347791716719172e-07,7.717674747551053386e-07,7.869001703385387600e-07,8.020328659219721814e-07,8.171655615054056028e-07,8.322982570888390242e-07,8.474309526722724456e-07,8.625636482557058670e-07,8.776963438391392884e-07,8.928290394225727099e-07,9.079617350060061313e-07,9.230944305894395527e-07,9.382271261728729741e-07,9.533598217563063955e-07 +0.000000000000000000e+00,1.785425664179424145e-08,3.570851328358848290e-08,5.356276992538272435e-08,7.141702656717696580e-08,8.927128320897120725e-08,1.071255398507654487e-07,1.249797964925596902e-07,1.428340531343539316e-07,1.606883097761481731e-07,1.785425664179424145e-07,1.963968230597366560e-07,2.142510797015308974e-07,2.321053363433251389e-07,2.499595929851193803e-07,2.678138496269135953e-07,2.856681062687078103e-07,3.035223629105020253e-07,3.213766195522962402e-07,3.392308761940904552e-07,3.570851328358846702e-07,3.749393894776788852e-07,3.927936461194731002e-07,4.106479027612673151e-07,4.285021594030615301e-07,4.463564160448557451e-07,4.642106726866499601e-07,4.820649293284441751e-07,4.999191859702384430e-07,5.177734426120327109e-07,5.356276992538269788e-07,5.534819558956212467e-07,5.713362125374155147e-07,5.891904691792097826e-07,6.070447258210040505e-07,6.248989824627983184e-07,6.427532391045925863e-07,6.606074957463868543e-07,6.784617523881811222e-07,6.963160090299753901e-07,7.141702656717696580e-07,7.320245223135639259e-07,7.498787789553581939e-07,7.677330355971524618e-07,7.855872922389467297e-07,8.034415488807409976e-07,8.212958055225352656e-07,8.391500621643295335e-07,8.570043188061238014e-07,8.748585754479180693e-07,8.927128320897123372e-07,9.105670887315066052e-07,9.284213453733008731e-07,9.462756020150951410e-07,9.641298586568894089e-07,9.819841152986836768e-07,9.998383719404779448e-07,1.017692628582272213e-06,1.035546885224066481e-06,1.053401141865860749e-06,1.071255398507655016e-06,1.089109655149449284e-06,1.106963911791243552e-06,1.124818168433037820e-06 +0.000000000000000000e+00,1.688415257990367334e-08,3.376830515980734668e-08,5.065245773971102002e-08,6.753661031961469336e-08,8.442076289951836008e-08,1.013049154794220268e-07,1.181890680593256935e-07,1.350732206392293603e-07,1.519573732191330270e-07,1.688415257990366937e-07,1.857256783789403604e-07,2.026098309588440271e-07,2.194939835387476939e-07,2.363781361186513606e-07,2.532622886985550273e-07,2.701464412784586676e-07,2.870305938583623078e-07,3.039147464382659481e-07,3.207988990181695883e-07,3.376830515980732286e-07,3.545672041779768688e-07,3.714513567578805091e-07,3.883355093377841493e-07,4.052196619176877896e-07,4.221038144975914298e-07,4.389879670774950701e-07,4.558721196573987104e-07,4.727562722373023506e-07,4.896404248172059909e-07,5.065245773971096311e-07,5.234087299770132714e-07,5.402928825569169116e-07,5.571770351368205519e-07,5.740611877167241921e-07,5.909453402966278324e-07,6.078294928765314726e-07,6.247136454564351129e-07,6.415977980363387531e-07,6.584819506162423934e-07,6.753661031961460336e-07,6.922502557760496739e-07,7.091344083559533142e-07,7.260185609358569544e-07,7.429027135157605947e-07,7.597868660956642349e-07,7.766710186755678752e-07,7.935551712554715154e-07,8.104393238353751557e-07,8.273234764152787959e-07,8.442076289951824362e-07,8.610917815750860764e-07,8.779759341549897167e-07,8.948600867348933569e-07,9.117442393147969972e-07,9.286283918947006374e-07,9.455125444746042777e-07,9.623966970545079179e-07,9.792808496344115582e-07,9.961650022143151985e-07,1.013049154794218839e-06,1.029933307374122479e-06,1.046817459954026119e-06,1.063701612533929759e-06 +0.000000000000000000e+00,1.513269558343330229e-08,3.026539116686660458e-08,4.539808675029990687e-08,6.053078233373320916e-08,7.566347791716651145e-08,9.079617350059981374e-08,1.059288690840331160e-07,1.210615646674664183e-07,1.361942602508997338e-07,1.513269558343330494e-07,1.664596514177663649e-07,1.815923470011996804e-07,1.967250425846329959e-07,2.118577381680663115e-07,2.269904337514996270e-07,2.421231293349329425e-07,2.572558249183662580e-07,2.723885205017995736e-07,2.875212160852328891e-07,3.026539116686662046e-07,3.177866072520995201e-07,3.329193028355328357e-07,3.480519984189661512e-07,3.631846940023994667e-07,3.783173895858327822e-07,3.934500851692660978e-07,4.085827807526994133e-07,4.237154763361327288e-07,4.388481719195660443e-07,4.539808675029993599e-07,4.691135630864326754e-07,4.842462586698659909e-07,4.993789542532993064e-07,5.145116498367326220e-07,5.296443454201659375e-07,5.447770410035992530e-07,5.599097365870325685e-07,5.750424321704658841e-07,5.901751277538991996e-07,6.053078233373325151e-07,6.204405189207658306e-07,6.355732145041991462e-07,6.507059100876324617e-07,6.658386056710657772e-07,6.809713012544990927e-07,6.961039968379324083e-07,7.112366924213657238e-07,7.263693880047990393e-07,7.415020835882323548e-07,7.566347791716656704e-07,7.717674747550989859e-07,7.869001703385323014e-07,8.020328659219656169e-07,8.171655615053989324e-07,8.322982570888322480e-07,8.474309526722655635e-07,8.625636482556988790e-07,8.776963438391321945e-07,8.928290394225655101e-07,9.079617350059988256e-07,9.230944305894321411e-07,9.382271261728654566e-07,9.533598217562987722e-07 +0.000000000000000000e+00,1.785425664179262349e-08,3.570851328358524697e-08,5.356276992537786715e-08,7.141702656717048071e-08,8.927128320896309427e-08,1.071255398507557078e-07,1.249797964925483346e-07,1.428340531343409614e-07,1.606883097761335882e-07,1.785425664179262150e-07,1.963968230597188418e-07,2.142510797015114686e-07,2.321053363433040954e-07,2.499595929850967222e-07,2.678138496268893490e-07,2.856681062686819758e-07,3.035223629104746026e-07,3.213766195522672294e-07,3.392308761940598561e-07,3.570851328358524829e-07,3.749393894776451097e-07,3.927936461194377365e-07,4.106479027612303633e-07,4.285021594030229901e-07,4.463564160448156169e-07,4.642106726866082437e-07,4.820649293284008705e-07,4.999191859701935502e-07,5.177734426119862300e-07,5.356276992537789097e-07,5.534819558955715894e-07,5.713362125373642692e-07,5.891904691791569489e-07,6.070447258209496286e-07,6.248989824627423084e-07,6.427532391045349881e-07,6.606074957463276678e-07,6.784617523881203476e-07,6.963160090299130273e-07,7.141702656717057070e-07,7.320245223134983868e-07,7.498787789552910665e-07,7.677330355970837462e-07,7.855872922388764260e-07,8.034415488806691057e-07,8.212958055224617854e-07,8.391500621642544652e-07,8.570043188060471449e-07,8.748585754478398246e-07,8.927128320896325044e-07,9.105670887314251841e-07,9.284213453732178638e-07,9.462756020150105436e-07,9.641298586568032233e-07,9.819841152985957972e-07,9.998383719403883710e-07,1.017692628582180945e-06,1.035546885223973519e-06,1.053401141865766093e-06,1.071255398507558666e-06,1.089109655149351240e-06,1.106963911791143814e-06,1.124818168432936388e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.069866240194782081e-09,6.139732480389564161e-09,9.209598720584347069e-09,1.227946496077912998e-08,1.534933120097391288e-08,1.841919744116869414e-08,2.148906368136347539e-08,2.455892992155825664e-08,2.762879616175303790e-08,3.069866240194781915e-08,3.376852864214259710e-08,3.683839488233737504e-08,3.990826112253215299e-08,4.297812736272693093e-08,4.604799360292170888e-08,4.911785984311648682e-08,5.218772608331126476e-08,5.525759232350604271e-08,5.832745856370082065e-08,6.139732480389559860e-08,6.446719104409037654e-08,6.753705728428515449e-08,7.060692352447993243e-08,7.367678976467471038e-08,7.674665600486948832e-08,7.981652224506426627e-08,8.288638848525904421e-08,8.595625472545382216e-08,8.902612096564860010e-08,9.209598720584337805e-08,9.516585344603815599e-08,9.823571968623293394e-08,1.013055859264277119e-07,1.043754521666224898e-07,1.074453184068172678e-07,1.105151846470120457e-07,1.135850508872068237e-07,1.166549171274016016e-07,1.197247833675963663e-07,1.227946496077911178e-07,1.258645158479858693e-07,1.289343820881806207e-07,1.320042483283753722e-07,1.350741145685701237e-07,1.381439808087648752e-07,1.412138470489596266e-07,1.442837132891543781e-07,1.473535795293491296e-07,1.504234457695438811e-07,1.534933120097386325e-07,1.565631782499333840e-07,1.596330444901281355e-07,1.627029107303228870e-07,1.657727769705176384e-07,1.688426432107123899e-07,1.719125094509071414e-07,1.749823756911018929e-07,1.780522419312966443e-07,1.811221081714913958e-07,1.841919744116861473e-07,1.872618406518808988e-07,1.903317068920756502e-07,1.934015731322704017e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.526578307813634705e-09,3.053156615627269409e-09,4.579734923440904114e-09,6.106313231254538818e-09,7.632891539068173523e-09,9.159469846881808227e-09,1.068604815469544293e-08,1.221262646250907764e-08,1.373920477032271234e-08,1.526578307813634705e-08,1.679236138594998175e-08,1.831893969376361645e-08,1.984551800157725116e-08,2.137209630939088586e-08,2.289867461720452057e-08,2.442525292501815527e-08,2.595183123283178998e-08,2.747840954064542468e-08,2.900498784845905939e-08,3.053156615627269409e-08,3.205814446408632880e-08,3.358472277189996350e-08,3.511130107971359820e-08,3.663787938752723291e-08,3.816445769534086761e-08,3.969103600315450232e-08,4.121761431096813702e-08,4.274419261878177173e-08,4.427077092659540643e-08,4.579734923440904114e-08,4.732392754222267584e-08,4.885050585003631055e-08,5.037708415784994525e-08,5.190366246566357995e-08,5.343024077347721466e-08,5.495681908129084936e-08,5.648339738910448407e-08,5.800997569691811877e-08,5.953655400473175348e-08,6.106313231254538818e-08,6.258971062035902950e-08,6.411628892817267083e-08,6.564286723598631215e-08,6.716944554379995347e-08,6.869602385161359479e-08,7.022260215942723611e-08,7.174918046724087744e-08,7.327575877505451876e-08,7.480233708286816008e-08,7.632891539068180140e-08,7.785549369849544272e-08,7.938207200630908405e-08,8.090865031412272537e-08,8.243522862193636669e-08,8.396180692975000801e-08,8.548838523756364933e-08,8.701496354537729065e-08,8.854154185319093198e-08,9.006812016100457330e-08,9.159469846881821462e-08,9.312127677663185594e-08,9.464785508444549726e-08,9.617443339225913859e-08 +0.000000000000000000e+00,3.097878460537927363e-09,6.195756921075854727e-09,9.293635381613781677e-09,1.239151384215170780e-08,1.548939230268963227e-08,1.858727076322755674e-08,2.168514922376548120e-08,2.478302768430340567e-08,2.788090614484133014e-08,3.097878460537925130e-08,3.407666306591717246e-08,3.717454152645509362e-08,4.027241998699301478e-08,4.337029844753093594e-08,4.646817690806885710e-08,4.956605536860677826e-08,5.266393382914469942e-08,5.576181228968262058e-08,5.885969075022054174e-08,6.195756921075846290e-08,6.505544767129637744e-08,6.815332613183429198e-08,7.125120459237220652e-08,7.434908305291012107e-08,7.744696151344803561e-08,8.054483997398595015e-08,8.364271843452386469e-08,8.674059689506177923e-08,8.983847535559969378e-08,9.293635381613760832e-08,9.603423227667552286e-08,9.913211073721343740e-08,1.022299891977513519e-07,1.053278676582892665e-07,1.084257461188271810e-07,1.115236245793650956e-07,1.146215030399030101e-07,1.177193815004409247e-07,1.208172599609788392e-07,1.239151384215167405e-07,1.270130168820546418e-07,1.301108953425925431e-07,1.332087738031304444e-07,1.363066522636683457e-07,1.394045307242062470e-07,1.425024091847441483e-07,1.456002876452820497e-07,1.486981661058199510e-07,1.517960445663578523e-07,1.548939230268957536e-07,1.579918014874336549e-07,1.610896799479715562e-07,1.641875584085094575e-07,1.672854368690473588e-07,1.703833153295852601e-07,1.734811937901231614e-07,1.765790722506610627e-07,1.796769507111989640e-07,1.827748291717368653e-07,1.858727076322747667e-07,1.889705860928126680e-07,1.920684645533505693e-07,1.951663430138884706e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.069866240195385509e-09,6.139732480390771018e-09,9.209598720586156940e-09,1.227946496078154369e-08,1.534933120097693044e-08,1.841919744117231719e-08,2.148906368136770394e-08,2.455892992156309069e-08,2.762879616175847744e-08,3.069866240195386750e-08,3.376852864214925425e-08,3.683839488234464100e-08,3.990826112254002775e-08,4.297812736273541449e-08,4.604799360293080124e-08,4.911785984312618799e-08,5.218772608332157474e-08,5.525759232351696149e-08,5.832745856371234824e-08,6.139732480390773499e-08,6.446719104410312174e-08,6.753705728429850849e-08,7.060692352449389524e-08,7.367678976468928199e-08,7.674665600488466874e-08,7.981652224508005549e-08,8.288638848527544224e-08,8.595625472547082899e-08,8.902612096566621574e-08,9.209598720586160249e-08,9.516585344605698924e-08,9.823571968625237599e-08,1.013055859264477627e-07,1.043754521666431495e-07,1.074453184068385362e-07,1.105151846470339230e-07,1.135850508872293097e-07,1.166549171274246965e-07,1.197247833676200832e-07,1.227946496078154700e-07,1.258645158480108567e-07,1.289343820882062435e-07,1.320042483284016302e-07,1.350741145685970170e-07,1.381439808087924037e-07,1.412138470489877905e-07,1.442837132891831772e-07,1.473535795293785640e-07,1.504234457695739507e-07,1.534933120097693375e-07,1.565631782499647242e-07,1.596330444901601110e-07,1.627029107303554977e-07,1.657727769705508845e-07,1.688426432107462712e-07,1.719125094509416580e-07,1.749823756911370447e-07,1.780522419313324315e-07,1.811221081715278182e-07,1.841919744117232050e-07,1.872618406519185917e-07,1.903317068921139785e-07,1.934015731323093652e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.526578307813941175e-09,3.053156615627882350e-09,4.579734923441823938e-09,6.106313231255765527e-09,7.632891539069707116e-09,9.159469846883647877e-09,1.068604815469758864e-08,1.221262646251152940e-08,1.373920477032547016e-08,1.526578307813941092e-08,1.679236138595335003e-08,1.831893969376728914e-08,1.984551800158122824e-08,2.137209630939516735e-08,2.289867461720910646e-08,2.442525292502304556e-08,2.595183123283698467e-08,2.747840954065092378e-08,2.900498784846486289e-08,3.053156615627880199e-08,3.205814446409274110e-08,3.358472277190668021e-08,3.511130107972061931e-08,3.663787938753455842e-08,3.816445769534849753e-08,3.969103600316243663e-08,4.121761431097637574e-08,4.274419261879031485e-08,4.427077092660425396e-08,4.579734923441819306e-08,4.732392754223213217e-08,4.885050585004607128e-08,5.037708415786001038e-08,5.190366246567394949e-08,5.343024077348788860e-08,5.495681908130182770e-08,5.648339738911576681e-08,5.800997569692970592e-08,5.953655400474364503e-08,6.106313231255759075e-08,6.258971062037153647e-08,6.411628892818548220e-08,6.564286723599942792e-08,6.716944554381337365e-08,6.869602385162731937e-08,7.022260215944126510e-08,7.174918046725521082e-08,7.327575877506915655e-08,7.480233708288310227e-08,7.632891539069704799e-08,7.785549369851099372e-08,7.938207200632493944e-08,8.090865031413888517e-08,8.243522862195283089e-08,8.396180692976677662e-08,8.548838523758072234e-08,8.701496354539466807e-08,8.854154185320861379e-08,9.006812016102255951e-08,9.159469846883650524e-08,9.312127677665045096e-08,9.464785508446439669e-08,9.617443339227834241e-08 +0.000000000000000000e+00,3.097878460538279329e-09,6.195756921076558658e-09,9.293635381614838814e-09,1.239151384215311897e-08,1.548939230269139913e-08,1.858727076322967763e-08,2.168514922376795613e-08,2.478302768430623463e-08,2.788090614484451313e-08,3.097878460538279163e-08,3.407666306592107014e-08,3.717454152645934864e-08,4.027241998699762714e-08,4.337029844753590564e-08,4.646817690807418414e-08,4.956605536861246264e-08,5.266393382915074115e-08,5.576181228968901965e-08,5.885969075022729815e-08,6.195756921076557003e-08,6.505544767130384192e-08,6.815332613184211380e-08,7.125120459238038569e-08,7.434908305291865757e-08,7.744696151345692945e-08,8.054483997399520134e-08,8.364271843453347322e-08,8.674059689507174511e-08,8.983847535561001699e-08,9.293635381614828888e-08,9.603423227668656076e-08,9.913211073722483264e-08,1.022299891977631045e-07,1.053278676583013764e-07,1.084257461188396483e-07,1.115236245793779202e-07,1.146215030399161921e-07,1.177193815004544639e-07,1.208172599609927358e-07,1.239151384215310077e-07,1.270130168820692796e-07,1.301108953426075515e-07,1.332087738031458234e-07,1.363066522636840953e-07,1.394045307242223671e-07,1.425024091847606390e-07,1.456002876452989109e-07,1.486981661058371828e-07,1.517960445663754547e-07,1.548939230269137266e-07,1.579918014874519984e-07,1.610896799479902703e-07,1.641875584085285422e-07,1.672854368690668141e-07,1.703833153296050860e-07,1.734811937901433579e-07,1.765790722506816297e-07,1.796769507112199016e-07,1.827748291717581735e-07,1.858727076322964454e-07,1.889705860928347173e-07,1.920684645533729892e-07,1.951663430139112611e-07 +0.000000000000000000e+00,6.266004923343235806e-09,1.253200984668647161e-08,1.879801477002970659e-08,2.506401969337293992e-08,3.133002461671617655e-08,3.759602954005941318e-08,4.386203446340264982e-08,5.012803938674588645e-08,5.639404431008912308e-08,6.266004923343235310e-08,6.892605415677558312e-08,7.519205908011881313e-08,8.145806400346204315e-08,8.772406892680527316e-08,9.399007385014850318e-08,1.002560787734917332e-07,1.065220836968349632e-07,1.127880886201781932e-07,1.190540935435214232e-07,1.253200984668646533e-07,1.315861033902078833e-07,1.378521083135511133e-07,1.441181132368943433e-07,1.503841181602375733e-07,1.566501230835808033e-07,1.629161280069240334e-07,1.691821329302672634e-07,1.754481378536104934e-07,1.817141427769537234e-07,1.879801477002969534e-07,1.942461526236401834e-07,2.005121575469834135e-07,2.067781624703266435e-07,2.130441673936698735e-07,2.193101723170131035e-07,2.255761772403563335e-07,2.318421821636995635e-07,2.381081870870427935e-07,2.443741920103860236e-07,2.506401969337292536e-07,2.569062018570724836e-07,2.631722067804157136e-07,2.694382117037589436e-07,2.757042166271021736e-07,2.819702215504454037e-07,2.882362264737886337e-07,2.945022313971318637e-07,3.007682363204750937e-07,3.070342412438183237e-07,3.133002461671615537e-07,3.195662510905047838e-07,3.258322560138480138e-07,3.320982609371912438e-07,3.383642658605344738e-07,3.446302707838777038e-07,3.508962757072209338e-07,3.571622806305641639e-07,3.634282855539073939e-07,3.696942904772506239e-07,3.759602954005938539e-07,3.822263003239370839e-07,3.884923052472803139e-07,3.947583101706235440e-07 +0.000000000000000000e+00,4.668990700681170661e-09,9.337981401362341322e-09,1.400697210204351198e-08,1.867596280272468264e-08,2.334495350340585165e-08,2.801394420408702066e-08,3.268293490476818966e-08,3.735192560544935867e-08,4.202091630613052767e-08,4.668990700681169668e-08,5.135889770749286569e-08,5.602788840817403469e-08,6.069687910885521032e-08,6.536586980953639256e-08,7.003486051021757480e-08,7.470385121089875704e-08,7.937284191157993928e-08,8.404183261226112152e-08,8.871082331294230377e-08,9.337981401362348601e-08,9.804880471430466825e-08,1.027177954149858505e-07,1.073867861156670327e-07,1.120557768163482150e-07,1.167247675170293972e-07,1.213937582177105795e-07,1.260627489183917617e-07,1.307317396190729439e-07,1.354007303197541262e-07,1.400697210204353084e-07,1.447387117211164907e-07,1.494077024217976729e-07,1.540766931224788551e-07,1.587456838231600374e-07,1.634146745238412196e-07,1.680836652245224019e-07,1.727526559252035841e-07,1.774216466258847664e-07,1.820906373265659486e-07,1.867596280272471308e-07,1.914286187279283131e-07,1.960976094286094953e-07,2.007666001292906776e-07,2.054355908299718598e-07,2.101045815306530420e-07,2.147735722313342243e-07,2.194425629320154065e-07,2.241115536326965888e-07,2.287805443333777710e-07,2.334495350340589532e-07,2.381185257347401355e-07,2.427875164354213177e-07,2.474565071361024735e-07,2.521254978367836293e-07,2.567944885374647850e-07,2.614634792381459408e-07,2.661324699388270966e-07,2.708014606395082524e-07,2.754704513401894081e-07,2.801394420408705639e-07,2.848084327415517197e-07,2.894774234422328754e-07,2.941464141429140312e-07 +0.000000000000000000e+00,6.333594495816982830e-09,1.266718899163396566e-08,1.900078348745095014e-08,2.533437798326793463e-08,3.166797247908491911e-08,3.800156697490190029e-08,4.433516147071888147e-08,5.066875596653586264e-08,5.700235046235284382e-08,6.333594495816982499e-08,6.966953945398679955e-08,7.600313394980377411e-08,8.233672844562074867e-08,8.867032294143772323e-08,9.500391743725469779e-08,1.013375119330716723e-07,1.076711064288886469e-07,1.140047009247056215e-07,1.203382954205225960e-07,1.266718899163395706e-07,1.330054844121565451e-07,1.393390789079735197e-07,1.456726734037904943e-07,1.520062678996074688e-07,1.583398623954244434e-07,1.646734568912414179e-07,1.710070513870583925e-07,1.773406458828753670e-07,1.836742403786923416e-07,1.900078348745093162e-07,1.963414293703262907e-07,2.026750238661432653e-07,2.090086183619602398e-07,2.153422128577772144e-07,2.216758073535941890e-07,2.280094018494111635e-07,2.343429963452281381e-07,2.406765908410451391e-07,2.470101853368621666e-07,2.533437798326791941e-07,2.596773743284962216e-07,2.660109688243132491e-07,2.723445633201302766e-07,2.786781578159473041e-07,2.850117523117643316e-07,2.913453468075813591e-07,2.976789413033983866e-07,3.040125357992154141e-07,3.103461302950324416e-07,3.166797247908494691e-07,3.230133192866664966e-07,3.293469137824835241e-07,3.356805082783005516e-07,3.420141027741175791e-07,3.483476972699346066e-07,3.546812917657516341e-07,3.610148862615686616e-07,3.673484807573856891e-07,3.736820752532027166e-07,3.800156697490197441e-07,3.863492642448367716e-07,3.926828587406537990e-07,3.990164532364708265e-07 +0.000000000000000000e+00,6.266004923344271436e-09,1.253200984668854287e-08,1.879801477003281348e-08,2.506401969337708244e-08,3.133002461672135139e-08,3.759602954006562035e-08,4.386203446340988930e-08,5.012803938675415826e-08,5.639404431009842721e-08,6.266004923344270278e-08,6.892605415678697836e-08,7.519205908013125393e-08,8.145806400347552950e-08,8.772406892681980507e-08,9.399007385016408065e-08,1.002560787735083562e-07,1.065220836968526318e-07,1.127880886201969074e-07,1.190540935435411829e-07,1.253200984668854585e-07,1.315861033902297473e-07,1.378521083135740361e-07,1.441181132369183249e-07,1.503841181602626137e-07,1.566501230836069025e-07,1.629161280069511914e-07,1.691821329302954802e-07,1.754481378536397690e-07,1.817141427769840578e-07,1.879801477003283466e-07,1.942461526236726354e-07,2.005121575470169242e-07,2.067781624703612130e-07,2.130441673937055018e-07,2.193101723170497906e-07,2.255761772403940794e-07,2.318421821637383682e-07,2.381081870870826570e-07,2.443741920104269458e-07,2.506401969337712347e-07,2.569062018571155235e-07,2.631722067804598123e-07,2.694382117038041011e-07,2.757042166271483899e-07,2.819702215504926787e-07,2.882362264738369675e-07,2.945022313971812563e-07,3.007682363205255451e-07,3.070342412438698339e-07,3.133002461672141227e-07,3.195662510905584115e-07,3.258322560139027003e-07,3.320982609372469891e-07,3.383642658605912780e-07,3.446302707839355668e-07,3.508962757072798556e-07,3.571622806306241444e-07,3.634282855539684332e-07,3.696942904773127220e-07,3.759602954006570108e-07,3.822263003240012996e-07,3.884923052473455884e-07,3.947583101706898772e-07 +0.000000000000000000e+00,4.668990700682006113e-09,9.337981401364012226e-09,1.400697210204601834e-08,1.867596280272802445e-08,2.334495350341003057e-08,2.801394420409203668e-08,3.268293490477404610e-08,3.735192560545605552e-08,4.202091630613806494e-08,4.668990700682007437e-08,5.135889770750208379e-08,5.602788840818409321e-08,6.069687910886610263e-08,6.536586980954811867e-08,7.003486051023013471e-08,7.470385121091215075e-08,7.937284191159416679e-08,8.404183261227618283e-08,8.871082331295819887e-08,9.337981401364021491e-08,9.804880471432223095e-08,1.027177954150042470e-07,1.073867861156862630e-07,1.120557768163682791e-07,1.167247675170502951e-07,1.213937582177323111e-07,1.260627489184143404e-07,1.307317396190963697e-07,1.354007303197783990e-07,1.400697210204604282e-07,1.447387117211424575e-07,1.494077024218244868e-07,1.540766931225065161e-07,1.587456838231885453e-07,1.634146745238705746e-07,1.680836652245526039e-07,1.727526559252346332e-07,1.774216466259166624e-07,1.820906373265986917e-07,1.867596280272807210e-07,1.914286187279627503e-07,1.960976094286447795e-07,2.007666001293268088e-07,2.054355908300088381e-07,2.101045815306908674e-07,2.147735722313728966e-07,2.194425629320549259e-07,2.241115536327369552e-07,2.287805443334189845e-07,2.334495350341010137e-07,2.381185257347830430e-07,2.427875164354650987e-07,2.474565071361471545e-07,2.521254978368292102e-07,2.567944885375112660e-07,2.614634792381933217e-07,2.661324699388753775e-07,2.708014606395574332e-07,2.754704513402394890e-07,2.801394420409215447e-07,2.848084327416036004e-07,2.894774234422856562e-07,2.941464141429677119e-07 +0.000000000000000000e+00,6.333594495817599080e-09,1.266718899163519816e-08,1.900078348745279641e-08,2.533437798327039301e-08,3.166797247908798961e-08,3.800156697490558621e-08,4.433516147072318280e-08,5.066875596654077940e-08,5.700235046235837600e-08,6.333594495817596598e-08,6.966953945399354935e-08,7.600313394981113271e-08,8.233672844562871607e-08,8.867032294144629944e-08,9.500391743726388280e-08,1.013375119330814662e-07,1.076711064288990495e-07,1.140047009247166329e-07,1.203382954205342163e-07,1.266718899163517996e-07,1.330054844121693830e-07,1.393390789079869663e-07,1.456726734038045497e-07,1.520062678996221331e-07,1.583398623954397164e-07,1.646734568912572998e-07,1.710070513870748832e-07,1.773406458828924665e-07,1.836742403787100499e-07,1.900078348745276332e-07,1.963414293703452166e-07,2.026750238661628000e-07,2.090086183619803833e-07,2.153422128577979667e-07,2.216758073536155501e-07,2.280094018494331334e-07,2.343429963452507168e-07,2.406765908410683266e-07,2.470101853368859365e-07,2.533437798327035463e-07,2.596773743285211561e-07,2.660109688243387660e-07,2.723445633201563758e-07,2.786781578159739856e-07,2.850117523117915955e-07,2.913453468076092053e-07,2.976789413034268151e-07,3.040125357992444250e-07,3.103461302950620348e-07,3.166797247908796446e-07,3.230133192866972545e-07,3.293469137825148643e-07,3.356805082783324741e-07,3.420141027741500840e-07,3.483476972699676938e-07,3.546812917657853036e-07,3.610148862616029135e-07,3.673484807574205233e-07,3.736820752532381331e-07,3.800156697490557430e-07,3.863492642448733528e-07,3.926828587406909626e-07,3.990164532365085725e-07 +0.000000000000000000e+00,9.492435748812151103e-09,1.898487149762430221e-08,2.847730724643645331e-08,3.796974299524860441e-08,4.746217874406075552e-08,5.695461449287290662e-08,6.644705024168505772e-08,7.593948599049720883e-08,8.543192173930935993e-08,9.492435748812151103e-08,1.044167932369336621e-07,1.139092289857458132e-07,1.234016647345579643e-07,1.328941004833701154e-07,1.423865362321822666e-07,1.518789719809944177e-07,1.613714077298065688e-07,1.708638434786187199e-07,1.803562792274308710e-07,1.898487149762430221e-07,1.993411507250551732e-07,2.088335864738673243e-07,2.183260222226794754e-07,2.278184579714916265e-07,2.373108937203037776e-07,2.468033294691159287e-07,2.562957652179281063e-07,2.657882009667402838e-07,2.752806367155524614e-07,2.847730724643646390e-07,2.942655082131768166e-07,3.037579439619889941e-07,3.132503797108011717e-07,3.227428154596133493e-07,3.322352512084255268e-07,3.417276869572377044e-07,3.512201227060498820e-07,3.607125584548620596e-07,3.702049942036742371e-07,3.796974299524864147e-07,3.891898657012985923e-07,3.986823014501107699e-07,4.081747371989229474e-07,4.176671729477351250e-07,4.271596086965473026e-07,4.366520444453594801e-07,4.461444801941716577e-07,4.556369159429838353e-07,4.651293516917960129e-07,4.746217874406081904e-07,4.841142231894203680e-07,4.936066589382325985e-07,5.030990946870448290e-07,5.125915304358570596e-07,5.220839661846692901e-07,5.315764019334815206e-07,5.410688376822937511e-07,5.505612734311059816e-07,5.600537091799182121e-07,5.695461449287304426e-07,5.790385806775426731e-07,5.885310164263549037e-07,5.980234521751671342e-07 +0.000000000000000000e+00,7.877987136229065241e-09,1.575597427245813048e-08,2.363396140868719572e-08,3.151194854491626096e-08,3.938993568114532951e-08,4.726792281737439806e-08,5.514590995360346661e-08,6.302389708983253516e-08,7.090188422606160371e-08,7.877987136229067226e-08,8.665785849851974081e-08,9.453584563474880936e-08,1.024138327709778779e-07,1.102918199072069465e-07,1.181698070434360150e-07,1.260477941796650968e-07,1.339257813158941918e-07,1.418037684521232868e-07,1.496817555883523819e-07,1.575597427245814769e-07,1.654377298608105719e-07,1.733157169970396669e-07,1.811937041332687619e-07,1.890716912694978570e-07,1.969496784057269520e-07,2.048276655419560470e-07,2.127056526781851420e-07,2.205836398144142370e-07,2.284616269506433320e-07,2.363396140868724271e-07,2.442176012231015221e-07,2.520955883593306171e-07,2.599735754955597121e-07,2.678515626317888071e-07,2.757295497680179022e-07,2.836075369042469972e-07,2.914855240404760922e-07,2.993635111767051872e-07,3.072414983129342822e-07,3.151194854491633773e-07,3.229974725853924723e-07,3.308754597216215673e-07,3.387534468578506623e-07,3.466314339940797573e-07,3.545094211303088524e-07,3.623874082665379474e-07,3.702653954027670424e-07,3.781433825389961374e-07,3.860213696752252324e-07,3.938993568114543275e-07,4.017773439476834225e-07,4.096553310839125175e-07,4.175333182201416125e-07,4.254113053563707075e-07,4.332892924925998026e-07,4.411672796288288976e-07,4.490452667650579926e-07,4.569232539012870876e-07,4.648012410375161826e-07,4.726792281737452777e-07,4.805572153099743727e-07,4.884352024462034677e-07,4.963131895824325627e-07 +0.000000000000000000e+00,9.607400186920653030e-09,1.921480037384130606e-08,2.882220056076195909e-08,3.842960074768261212e-08,4.803700093460326515e-08,5.764440112152391818e-08,6.725180130844457783e-08,7.685920149536523747e-08,8.646660168228589712e-08,9.607400186920655677e-08,1.056814020561272164e-07,1.152888022430478761e-07,1.248962024299685357e-07,1.345036026168892086e-07,1.441110028038098815e-07,1.537184029907305544e-07,1.633258031776512272e-07,1.729332033645719001e-07,1.825406035514925730e-07,1.921480037384132459e-07,2.017554039253339188e-07,2.113628041122545916e-07,2.209702042991752645e-07,2.305776044860959374e-07,2.401850046730166103e-07,2.497924048599372832e-07,2.593998050468579561e-07,2.690072052337786289e-07,2.786146054206993018e-07,2.882220056076199747e-07,2.978294057945406476e-07,3.074368059814613205e-07,3.170442061683819934e-07,3.266516063553026662e-07,3.362590065422233391e-07,3.458664067291440120e-07,3.554738069160646849e-07,3.650812071029853578e-07,3.746886072899060306e-07,3.842960074768267035e-07,3.939034076637473764e-07,4.035108078506680493e-07,4.131182080375887222e-07,4.227256082245093951e-07,4.323330084114300679e-07,4.419404085983507408e-07,4.515478087852714137e-07,4.611552089721920866e-07,4.707626091591127595e-07,4.803700093460334323e-07,4.899774095329540523e-07,4.995848097198746722e-07,5.091922099067952922e-07,5.187996100937159121e-07,5.284070102806365321e-07,5.380144104675571520e-07,5.476218106544777719e-07,5.572292108413983919e-07,5.668366110283190118e-07,5.764440112152396318e-07,5.860514114021602517e-07,5.956588115890808717e-07,6.052662117760014916e-07 +0.000000000000000000e+00,9.492435748813739290e-09,1.898487149762747858e-08,2.847730724644121787e-08,3.796974299525495716e-08,4.746217874406869645e-08,5.695461449288243574e-08,6.644705024169617503e-08,7.593948599050991432e-08,8.543192173932365361e-08,9.492435748813739290e-08,1.044167932369511322e-07,1.139092289857648715e-07,1.234016647345786108e-07,1.328941004833923501e-07,1.423865362322060894e-07,1.518789719810198286e-07,1.613714077298335679e-07,1.708638434786473072e-07,1.803562792274610465e-07,1.898487149762747858e-07,1.993411507250885251e-07,2.088335864739022644e-07,2.183260222227160037e-07,2.278184579715297430e-07,2.373108937203434823e-07,2.468033294691572215e-07,2.562957652179709873e-07,2.657882009667847531e-07,2.752806367155985188e-07,2.847730724644122846e-07,2.942655082132260503e-07,3.037579439620398161e-07,3.132503797108535819e-07,3.227428154596673476e-07,3.322352512084811134e-07,3.417276869572948791e-07,3.512201227061086449e-07,3.607125584549224107e-07,3.702049942037361764e-07,3.796974299525499422e-07,3.891898657013637079e-07,3.986823014501774737e-07,4.081747371989912395e-07,4.176671729478050052e-07,4.271596086966187710e-07,4.366520444454325367e-07,4.461444801942463025e-07,4.556369159430600683e-07,4.651293516918738340e-07,4.746217874406875998e-07,4.841142231895013655e-07,4.936066589383151842e-07,5.030990946871290029e-07,5.125915304359428216e-07,5.220839661847566403e-07,5.315764019335704590e-07,5.410688376823842777e-07,5.505612734311980964e-07,5.600537091800119151e-07,5.695461449288257338e-07,5.790385806776395525e-07,5.885310164264533712e-07,5.980234521752671899e-07 +0.000000000000000000e+00,7.877987136230390384e-09,1.575597427246078077e-08,2.363396140869116950e-08,3.151194854492155492e-08,3.938993568115194034e-08,4.726792281738232576e-08,5.514590995361271118e-08,6.302389708984309661e-08,7.090188422607347541e-08,7.877987136230385421e-08,8.665785849853423302e-08,9.453584563476461182e-08,1.024138327709949906e-07,1.102918199072253694e-07,1.181698070434557482e-07,1.260477941796861138e-07,1.339257813159164794e-07,1.418037684521468449e-07,1.496817555883772105e-07,1.575597427246075761e-07,1.654377298608379416e-07,1.733157169970683072e-07,1.811937041332986728e-07,1.890716912695290384e-07,1.969496784057594039e-07,2.048276655419897695e-07,2.127056526782201351e-07,2.205836398144505006e-07,2.284616269506808662e-07,2.363396140869112318e-07,2.442176012231415973e-07,2.520955883593719629e-07,2.599735754956023285e-07,2.678515626318326940e-07,2.757295497680630596e-07,2.836075369042934252e-07,2.914855240405237907e-07,2.993635111767541563e-07,3.072414983129845219e-07,3.151194854492148875e-07,3.229974725854452530e-07,3.308754597216756186e-07,3.387534468579059842e-07,3.466314339941363497e-07,3.545094211303667153e-07,3.623874082665970809e-07,3.702653954028274464e-07,3.781433825390578120e-07,3.860213696752881776e-07,3.938993568115185431e-07,4.017773439477489087e-07,4.096553310839792743e-07,4.175333182202096399e-07,4.254113053564400054e-07,4.332892924926703710e-07,4.411672796289007366e-07,4.490452667651311021e-07,4.569232539013614677e-07,4.648012410375918333e-07,4.726792281738221988e-07,4.805572153100526173e-07,4.884352024462830888e-07,4.963131895825135602e-07 +0.000000000000000000e+00,9.607400186921417345e-09,1.921480037384283469e-08,2.882220056076425203e-08,3.842960074768566938e-08,4.803700093460708341e-08,5.764440112152849745e-08,6.725180130844991149e-08,7.685920149537132552e-08,8.646660168229273956e-08,9.607400186921415359e-08,1.056814020561355676e-07,1.152888022430569817e-07,1.248962024299783825e-07,1.345036026168997965e-07,1.441110028038212105e-07,1.537184029907426246e-07,1.633258031776640386e-07,1.729332033645854526e-07,1.825406035515068667e-07,1.921480037384282807e-07,2.017554039253496948e-07,2.113628041122711088e-07,2.209702042991925228e-07,2.305776044861139369e-07,2.401850046730353509e-07,2.497924048599567649e-07,2.593998050468781790e-07,2.690072052337995930e-07,2.786146054207210070e-07,2.882220056076424211e-07,2.978294057945638351e-07,3.074368059814852492e-07,3.170442061684066632e-07,3.266516063553280772e-07,3.362590065422494913e-07,3.458664067291709053e-07,3.554738069160923193e-07,3.650812071030137334e-07,3.746886072899351474e-07,3.842960074768565614e-07,3.939034076637779755e-07,4.035108078506993895e-07,4.131182080376208035e-07,4.227256082245422176e-07,4.323330084114636316e-07,4.419404085983850457e-07,4.515478087853064597e-07,4.611552089722278737e-07,4.707626091591492878e-07,4.803700093460707018e-07,4.899774095329921688e-07,4.995848097199136357e-07,5.091922099068351027e-07,5.187996100937565697e-07,5.284070102806780367e-07,5.380144104675995037e-07,5.476218106545209706e-07,5.572292108414424376e-07,5.668366110283639046e-07,5.764440112152853716e-07,5.860514114022068385e-07,5.956588115891283055e-07,6.052662117760497725e-07 +0.000000000000000000e+00,1.272970346246219998e-08,2.545940692492439996e-08,3.818911038738660159e-08,5.091881384984880653e-08,6.364851731231101148e-08,7.637822077477321642e-08,8.910792423723542136e-08,1.018376276996976263e-07,1.145673311621598312e-07,1.272970346246220230e-07,1.400267380870842147e-07,1.527564415495464064e-07,1.654861450120085981e-07,1.782158484744707898e-07,1.909455519369329815e-07,2.036752553993951732e-07,2.164049588618573649e-07,2.291346623243195566e-07,2.418643657867817748e-07,2.545940692492439930e-07,2.673237727117062111e-07,2.800534761741684293e-07,2.927831796366306475e-07,3.055128830990928657e-07,3.182425865615550839e-07,3.309722900240173020e-07,3.437019934864795202e-07,3.564316969489417384e-07,3.691614004114039566e-07,3.818911038738661747e-07,3.946208073363283929e-07,4.073505107987906111e-07,4.200802142612528293e-07,4.328099177237150475e-07,4.455396211861772656e-07,4.582693246486394838e-07,4.709990281111017020e-07,4.837287315735639731e-07,4.964584350360262442e-07,5.091881384984885153e-07,5.219178419609507865e-07,5.346475454234130576e-07,5.473772488858753287e-07,5.601069523483375998e-07,5.728366558107998709e-07,5.855663592732621420e-07,5.982960627357244132e-07,6.110257661981866843e-07,6.237554696606489554e-07,6.364851731231112265e-07,6.492148765855734976e-07,6.619445800480357687e-07,6.746742835104980399e-07,6.874039869729603110e-07,7.001336904354225821e-07,7.128633938978848532e-07,7.255930973603471243e-07,7.383228008228093954e-07,7.510525042852716666e-07,7.637822077477339377e-07,7.765119112101962088e-07,7.892416146726584799e-07,8.019713181351207510e-07 +0.000000000000000000e+00,1.111074539133544283e-08,2.222149078267088566e-08,3.333223617400632850e-08,4.444298156534177133e-08,5.555372695667721416e-08,6.666447234801265699e-08,7.777521773934809983e-08,8.888596313068354266e-08,9.999670852201898549e-08,1.111074539133544283e-07,1.222181993046898712e-07,1.333289446960253140e-07,1.444396900873607568e-07,1.555504354786961997e-07,1.666611808700316425e-07,1.777719262613670853e-07,1.888826716527025281e-07,1.999934170440379710e-07,2.111041624353734138e-07,2.222149078267088566e-07,2.333256532180442995e-07,2.444363986093797423e-07,2.555471440007151587e-07,2.666578893920505750e-07,2.777686347833859914e-07,2.888793801747214078e-07,2.999901255660568241e-07,3.111008709573922405e-07,3.222116163487276568e-07,3.333223617400630732e-07,3.444331071313984896e-07,3.555438525227339059e-07,3.666545979140693223e-07,3.777653433054047387e-07,3.888760886967401550e-07,3.999868340880755714e-07,4.110975794794109877e-07,4.222083248707464041e-07,4.333190702620818205e-07,4.444298156534172368e-07,4.555405610447526532e-07,4.666513064360880696e-07,4.777620518274234859e-07,4.888727972187589552e-07,4.999835426100944245e-07,5.110942880014298938e-07,5.222050333927653631e-07,5.333157787841008324e-07,5.444265241754363017e-07,5.555372695667717710e-07,5.666480149581072403e-07,5.777587603494427096e-07,5.888695057407781789e-07,5.999802511321136482e-07,6.110909965234491175e-07,6.222017419147845868e-07,6.333124873061200562e-07,6.444232326974555255e-07,6.555339780887909948e-07,6.666447234801264641e-07,6.777554688714619334e-07,6.888662142627974027e-07,6.999769596541328720e-07 +0.000000000000000000e+00,1.290216760904225784e-08,2.580433521808451569e-08,3.870650282712677023e-08,5.160867043616902476e-08,6.451083804521127930e-08,7.741300565425354045e-08,9.031517326329580160e-08,1.032173408723380628e-07,1.161195084813803239e-07,1.290216760904225851e-07,1.419238436994648330e-07,1.548260113085070809e-07,1.677281789175493288e-07,1.806303465265915767e-07,1.935325141356338247e-07,2.064346817446760726e-07,2.193368493537183205e-07,2.322390169627605684e-07,2.451411845718028163e-07,2.580433521808450643e-07,2.709455197898873122e-07,2.838476873989295601e-07,2.967498550079718080e-07,3.096520226170140559e-07,3.225541902260563038e-07,3.354563578350985518e-07,3.483585254441407997e-07,3.612606930531830476e-07,3.741628606622252955e-07,3.870650282712675434e-07,3.999671958803097914e-07,4.128693634893520393e-07,4.257715310983942872e-07,4.386736987074365351e-07,4.515758663164787830e-07,4.644780339255210309e-07,4.773802015345632789e-07,4.902823691436055268e-07,5.031845367526477747e-07,5.160867043616900226e-07,5.289888719707322705e-07,5.418910395797745185e-07,5.547932071888167664e-07,5.676953747978590143e-07,5.805975424069012622e-07,5.934997100159435101e-07,6.064018776249857581e-07,6.193040452340280060e-07,6.322062128430702539e-07,6.451083804521125018e-07,6.580105480611547497e-07,6.709127156701969976e-07,6.838148832792392456e-07,6.967170508882814935e-07,7.096192184973237414e-07,7.225213861063659893e-07,7.354235537154082372e-07,7.483257213244504852e-07,7.612278889334927331e-07,7.741300565425349810e-07,7.870322241515772289e-07,7.999343917606194768e-07,8.128365593696617247e-07 +0.000000000000000000e+00,1.272970346246401316e-08,2.545940692492802632e-08,3.818911038739204113e-08,5.091881384985605925e-08,6.364851731232007738e-08,7.637822077478409550e-08,8.910792423724811362e-08,1.018376276997121317e-07,1.145673311621761499e-07,1.272970346246401812e-07,1.400267380871041993e-07,1.527564415495682175e-07,1.654861450120322356e-07,1.782158484744962537e-07,1.909455519369602718e-07,2.036752553994242900e-07,2.164049588618883081e-07,2.291346623243523262e-07,2.418643657868163443e-07,2.545940692492803624e-07,2.673237727117443806e-07,2.800534761742083987e-07,2.927831796366724168e-07,3.055128830991364349e-07,3.182425865616004531e-07,3.309722900240644712e-07,3.437019934865284893e-07,3.564316969489925074e-07,3.691614004114565255e-07,3.818911038739205437e-07,3.946208073363845618e-07,4.073505107988485799e-07,4.200802142613125980e-07,4.328099177237766162e-07,4.455396211862406343e-07,4.582693246487046524e-07,4.709990281111686705e-07,4.837287315736326886e-07,4.964584350360966538e-07,5.091881384985606190e-07,5.219178419610245842e-07,5.346475454234885494e-07,5.473772488859525146e-07,5.601069523484164797e-07,5.728366558108804449e-07,5.855663592733444101e-07,5.982960627358083753e-07,6.110257661982723405e-07,6.237554696607363057e-07,6.364851731232002708e-07,6.492148765856642360e-07,6.619445800481282012e-07,6.746742835105921664e-07,6.874039869730561316e-07,7.001336904355200968e-07,7.128633938979840619e-07,7.255930973604480271e-07,7.383228008229119923e-07,7.510525042853759575e-07,7.637822077478399227e-07,7.765119112103038879e-07,7.892416146727678530e-07,8.019713181352318182e-07 +0.000000000000000000e+00,1.111074539133716668e-08,2.222149078267433335e-08,3.333223617401150334e-08,4.444298156534867332e-08,5.555372695668584331e-08,6.666447234802300668e-08,7.777521773936017005e-08,8.888596313069733341e-08,9.999670852203449678e-08,1.111074539133716601e-07,1.222181993047088235e-07,1.333289446960459869e-07,1.444396900873831503e-07,1.555504354787203136e-07,1.666611808700574770e-07,1.777719262613946404e-07,1.888826716527318037e-07,1.999934170440689671e-07,2.111041624354061305e-07,2.222149078267432938e-07,2.333256532180804572e-07,2.444363986094175941e-07,2.555471440007547575e-07,2.666578893920919208e-07,2.777686347834290842e-07,2.888793801747662476e-07,2.999901255661034109e-07,3.111008709574405743e-07,3.222116163487777377e-07,3.333223617401149010e-07,3.444331071314520644e-07,3.555438525227892278e-07,3.666545979141263911e-07,3.777653433054635545e-07,3.888760886968007179e-07,3.999868340881378812e-07,4.110975794794750446e-07,4.222083248708122080e-07,4.333190702621493714e-07,4.444298156534865347e-07,4.555405610448236981e-07,4.666513064361608615e-07,4.777620518274980248e-07,4.888727972188351882e-07,4.999835426101723516e-07,5.110942880015095149e-07,5.222050333928466783e-07,5.333157787841838417e-07,5.444265241755210050e-07,5.555372695668581684e-07,5.666480149581953318e-07,5.777587603495324951e-07,5.888695057408696585e-07,5.999802511322068219e-07,6.110909965235439852e-07,6.222017419148811486e-07,6.333124873062183120e-07,6.444232326975554753e-07,6.555339780888926387e-07,6.666447234802298021e-07,6.777554688715669654e-07,6.888662142629041288e-07,6.999769596542412922e-07 +0.000000000000000000e+00,1.290216760904309164e-08,2.580433521808618329e-08,3.870650282712927162e-08,5.160867043617235995e-08,6.451083804521544829e-08,7.741300565425854324e-08,9.031517326330163819e-08,1.032173408723447331e-07,1.161195084813878281e-07,1.290216760904309230e-07,1.419238436994740180e-07,1.548260113085171129e-07,1.677281789175602079e-07,1.806303465266033029e-07,1.935325141356463978e-07,2.064346817446894928e-07,2.193368493537325877e-07,2.322390169627756827e-07,2.451411845718188041e-07,2.580433521808618990e-07,2.709455197899049940e-07,2.838476873989480889e-07,2.967498550079911839e-07,3.096520226170342788e-07,3.225541902260773738e-07,3.354563578351204687e-07,3.483585254441635637e-07,3.612606930532066586e-07,3.741628606622497536e-07,3.870650282712928485e-07,3.999671958803359435e-07,4.128693634893790384e-07,4.257715310984221334e-07,4.386736987074652284e-07,4.515758663165083233e-07,4.644780339255514183e-07,4.773802015345945132e-07,4.902823691436376082e-07,5.031845367526807031e-07,5.160867043617237981e-07,5.289888719707668930e-07,5.418910395798099880e-07,5.547932071888530829e-07,5.676953747978961779e-07,5.805975424069392728e-07,5.934997100159823678e-07,6.064018776250254627e-07,6.193040452340685577e-07,6.322062128431116526e-07,6.451083804521547476e-07,6.580105480611978425e-07,6.709127156702409375e-07,6.838148832792840324e-07,6.967170508883271274e-07,7.096192184973702223e-07,7.225213861064133173e-07,7.354235537154564122e-07,7.483257213244995072e-07,7.612278889335426021e-07,7.741300565425856971e-07,7.870322241516287920e-07,7.999343917606718870e-07,8.128365593697149819e-07 +0.000000000000000000e+00,1.596521020331399509e-08,3.193042040662799018e-08,4.789563060994198196e-08,6.386084081325596713e-08,7.982605101656995229e-08,9.579126121988393745e-08,1.117564714231979226e-07,1.277216816265119078e-07,1.436868918298258797e-07,1.596521020331398516e-07,1.756173122364538236e-07,1.915825224397677955e-07,2.075477326430817674e-07,2.235129428463957394e-07,2.394781530497097113e-07,2.554433632530236567e-07,2.714085734563376022e-07,2.873737836596515477e-07,3.033389938629654931e-07,3.193042040662794386e-07,3.352694142695933840e-07,3.512346244729073295e-07,3.671998346762212750e-07,3.831650448795352204e-07,3.991302550828491659e-07,4.150954652861631113e-07,4.310606754894770568e-07,4.470258856927910023e-07,4.629910958961049477e-07,4.789563060994188932e-07,4.949215163027327857e-07,5.108867265060466782e-07,5.268519367093605707e-07,5.428171469126744633e-07,5.587823571159883558e-07,5.747475673193022483e-07,5.907127775226161408e-07,6.066779877259300333e-07,6.226431979292439259e-07,6.386084081325578184e-07,6.545736183358717109e-07,6.705388285391856034e-07,6.865040387424994959e-07,7.024692489458133885e-07,7.184344591491272810e-07,7.343996693524411735e-07,7.503648795557550660e-07,7.663300897590689585e-07,7.822952999623828511e-07,7.982605101656967436e-07,8.142257203690106361e-07,8.301909305723245286e-07,8.461561407756384211e-07,8.621213509789523137e-07,8.780865611822662062e-07,8.940517713855800987e-07,9.100169815888939912e-07,9.259821917922078837e-07,9.419474019955217763e-07,9.579126121988356688e-07,9.738778224021495613e-07,9.898430326054634538e-07,1.005808242808777346e-06 +0.000000000000000000e+00,1.435015183670550428e-08,2.870030367341100855e-08,4.305045551011651448e-08,5.740060734682202372e-08,7.175075918352753296e-08,8.610091102023304220e-08,1.004510628569385514e-07,1.148012146936440607e-07,1.291513665303495567e-07,1.435015183670550395e-07,1.578516702037605222e-07,1.722018220404660050e-07,1.865519738771714878e-07,2.009021257138769705e-07,2.152522775505824533e-07,2.296024293872879361e-07,2.439525812239934189e-07,2.583027330606989016e-07,2.726528848974043844e-07,2.870030367341098672e-07,3.013531885708153499e-07,3.157033404075208327e-07,3.300534922442263155e-07,3.444036440809317982e-07,3.587537959176372810e-07,3.731039477543427638e-07,3.874540995910482466e-07,4.018042514277537293e-07,4.161544032644592121e-07,4.305045551011646949e-07,4.448547069378701776e-07,4.592048587745756604e-07,4.735550106112811432e-07,4.879051624479866259e-07,5.022553142846921617e-07,5.166054661213976974e-07,5.309556179581032331e-07,5.453057697948087688e-07,5.596559216315143045e-07,5.740060734682198402e-07,5.883562253049253759e-07,6.027063771416309116e-07,6.170565289783364473e-07,6.314066808150419830e-07,6.457568326517475188e-07,6.601069844884530545e-07,6.744571363251585902e-07,6.888072881618641259e-07,7.031574399985696616e-07,7.175075918352751973e-07,7.318577436719807330e-07,7.462078955086862687e-07,7.605580473453918044e-07,7.749081991820973401e-07,7.892583510188028758e-07,8.036085028555084116e-07,8.179586546922139473e-07,8.323088065289194830e-07,8.466589583656250187e-07,8.610091102023305544e-07,8.753592620390360901e-07,8.897094138757416258e-07,9.040595657124471615e-07 +0.000000000000000000e+00,1.620914356912878495e-08,3.241828713825756991e-08,4.862743070738635817e-08,6.483657427651515305e-08,8.104571784564394792e-08,9.725486141477274280e-08,1.134640049839015377e-07,1.296731485530303326e-07,1.458822921221591274e-07,1.620914356912879223e-07,1.783005792604167172e-07,1.945097228295455121e-07,2.107188663986743070e-07,2.269280099678031018e-07,2.431371535369318967e-07,2.593462971060607181e-07,2.755554406751895394e-07,2.917645842443183608e-07,3.079737278134471821e-07,3.241828713825760035e-07,3.403920149517048248e-07,3.566011585208336462e-07,3.728103020899624675e-07,3.890194456590912889e-07,4.052285892282201102e-07,4.214377327973489315e-07,4.376468763664777529e-07,4.538560199356065742e-07,4.700651635047353956e-07,4.862743070738642169e-07,5.024834506429930383e-07,5.186925942121218596e-07,5.349017377812506810e-07,5.511108813503795023e-07,5.673200249195083237e-07,5.835291684886371450e-07,5.997383120577659664e-07,6.159474556268947877e-07,6.321565991960236091e-07,6.483657427651524304e-07,6.645748863342812518e-07,6.807840299034100731e-07,6.969931734725388945e-07,7.132023170416677158e-07,7.294114606107965372e-07,7.456206041799253585e-07,7.618297477490541799e-07,7.780388913181830012e-07,7.942480348873118226e-07,8.104571784564406439e-07,8.266663220255694653e-07,8.428754655946982866e-07,8.590846091638271080e-07,8.752937527329559293e-07,8.915028963020847507e-07,9.077120398712135720e-07,9.239211834403423934e-07,9.401303270094712147e-07,9.563394705786000361e-07,9.725486141477288574e-07,9.887577577168576788e-07,1.004966901285986500e-06,1.021176044855115321e-06 +0.000000000000000000e+00,1.596521020331558659e-08,3.193042040663117317e-08,4.789563060994675976e-08,6.386084081326234634e-08,7.982605101657793293e-08,9.579126121989351951e-08,1.117564714232091061e-07,1.277216816265246927e-07,1.436868918298402793e-07,1.596521020331558659e-07,1.756173122364714524e-07,1.915825224397870390e-07,2.075477326431026256e-07,2.235129428464182122e-07,2.394781530497337988e-07,2.554433632530493854e-07,2.714085734563649720e-07,2.873737836596805585e-07,3.033389938629961451e-07,3.193042040663117317e-07,3.352694142696273183e-07,3.512346244729429049e-07,3.671998346762584915e-07,3.831650448795740781e-07,3.991302550828896646e-07,4.150954652862052512e-07,4.310606754895208378e-07,4.470258856928364244e-07,4.629910958961520110e-07,4.789563060994675976e-07,4.949215163027831842e-07,5.108867265060987707e-07,5.268519367094143573e-07,5.428171469127299439e-07,5.587823571160455305e-07,5.747475673193611171e-07,5.907127775226767037e-07,6.066779877259922903e-07,6.226431979293078768e-07,6.386084081326234634e-07,6.545736183359390500e-07,6.705388285392546366e-07,6.865040387425702232e-07,7.024692489458858098e-07,7.184344591492013964e-07,7.343996693525169829e-07,7.503648795558325695e-07,7.663300897591481561e-07,7.822952999624637427e-07,7.982605101657793293e-07,8.142257203690949159e-07,8.301909305724105025e-07,8.461561407757260890e-07,8.621213509790416756e-07,8.780865611823572622e-07,8.940517713856728488e-07,9.100169815889884354e-07,9.259821917923040220e-07,9.419474019956196086e-07,9.579126121989351951e-07,9.738778224022507817e-07,9.898430326055663683e-07,1.005808242808881955e-06 +0.000000000000000000e+00,1.435015183670725128e-08,2.870030367341450256e-08,4.305045551012175550e-08,5.740060734682901175e-08,7.175075918353626799e-08,8.610091102024352424e-08,1.004510628569507805e-07,1.148012146936580367e-07,1.291513665303652797e-07,1.435015183670725095e-07,1.578516702037797393e-07,1.722018220404869691e-07,1.865519738771941988e-07,2.009021257139014286e-07,2.152522775506086584e-07,2.296024293873158882e-07,2.439525812240231179e-07,2.583027330607303477e-07,2.726528848974375775e-07,2.870030367341448073e-07,3.013531885708520370e-07,3.157033404075592668e-07,3.300534922442664966e-07,3.444036440809737264e-07,3.587537959176809561e-07,3.731039477543881859e-07,3.874540995910954157e-07,4.018042514278026455e-07,4.161544032645098753e-07,4.305045551012171050e-07,4.448547069379243348e-07,4.592048587746315646e-07,4.735550106113387944e-07,4.879051624480460241e-07,5.022553142847532539e-07,5.166054661214604837e-07,5.309556179581677135e-07,5.453057697948749432e-07,5.596559216315821730e-07,5.740060734682894028e-07,5.883562253049966326e-07,6.027063771417038623e-07,6.170565289784110921e-07,6.314066808151183219e-07,6.457568326518255517e-07,6.601069844885327814e-07,6.744571363252400112e-07,6.888072881619472410e-07,7.031574399986544708e-07,7.175075918353617005e-07,7.318577436720689303e-07,7.462078955087761601e-07,7.605580473454833899e-07,7.749081991821906196e-07,7.892583510188978494e-07,8.036085028556050792e-07,8.179586546923123090e-07,8.323088065290195387e-07,8.466589583657267685e-07,8.610091102024339983e-07,8.753592620391412281e-07,8.897094138758484578e-07,9.040595657125556876e-07 +0.000000000000000000e+00,1.620914356912956581e-08,3.241828713825913162e-08,4.862743070738870074e-08,6.483657427651827648e-08,8.104571784564785222e-08,9.725486141477742795e-08,1.134640049839070037e-07,1.296731485530365794e-07,1.458822921221661684e-07,1.620914356912957574e-07,1.783005792604253463e-07,1.945097228295549353e-07,2.107188663986845243e-07,2.269280099678141133e-07,2.431371535369437022e-07,2.593462971060733177e-07,2.755554406752029331e-07,2.917645842443325486e-07,3.079737278134621640e-07,3.241828713825917794e-07,3.403920149517213949e-07,3.566011585208510103e-07,3.728103020899806258e-07,3.890194456591102412e-07,4.052285892282398567e-07,4.214377327973694721e-07,4.376468763664990875e-07,4.538560199356287030e-07,4.700651635047583184e-07,4.862743070738879339e-07,5.024834506430176022e-07,5.186925942121472706e-07,5.349017377812769390e-07,5.511108813504066074e-07,5.673200249195362758e-07,5.835291684886659442e-07,5.997383120577956125e-07,6.159474556269252809e-07,6.321565991960549493e-07,6.483657427651846177e-07,6.645748863343142861e-07,6.807840299034439544e-07,6.969931734725736228e-07,7.132023170417032912e-07,7.294114606108329596e-07,7.456206041799626280e-07,7.618297477490922964e-07,7.780388913182219647e-07,7.942480348873516331e-07,8.104571784564813015e-07,8.266663220256109699e-07,8.428754655947406383e-07,8.590846091638703066e-07,8.752937527329999750e-07,8.915028963021296434e-07,9.077120398712593118e-07,9.239211834403889802e-07,9.401303270095186485e-07,9.563394705786483169e-07,9.725486141477779853e-07,9.887577577169076537e-07,1.004966901286037322e-06,1.021176044855166990e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.187158631969827108e-09,6.374317263939654217e-09,9.561475895909480912e-09,1.274863452787930678e-08,1.593579315984913430e-08,1.912295179181896182e-08,2.231011042378878935e-08,2.549726905575861687e-08,2.868442768772844439e-08,3.187158631969826860e-08,3.505874495166809282e-08,3.824590358363791703e-08,4.143306221560774124e-08,4.462022084757756546e-08,4.780737947954738967e-08,5.099453811151721388e-08,5.418169674348703810e-08,5.736885537545686231e-08,6.055601400742667991e-08,6.374317263939649750e-08,6.693033127136631510e-08,7.011748990333613269e-08,7.330464853530595029e-08,7.649180716727576788e-08,7.967896579924558548e-08,8.286612443121540308e-08,8.605328306318522067e-08,8.924044169515503827e-08,9.242760032712485586e-08,9.561475895909467346e-08,9.880191759106449106e-08,1.019890762230343087e-07,1.051762348550041262e-07,1.083633934869739438e-07,1.115505521189437614e-07,1.147377107509135790e-07,1.179248693828833966e-07,1.211120280148532010e-07,1.242991866468230054e-07,1.274863452787928097e-07,1.306735039107626141e-07,1.338606625427324184e-07,1.370478211747022228e-07,1.402349798066720272e-07,1.434221384386418315e-07,1.466092970706116359e-07,1.497964557025814402e-07,1.529836143345512446e-07,1.561707729665210490e-07,1.593579315984908533e-07,1.625450902304606577e-07,1.657322488624304620e-07,1.689194074944002664e-07,1.721065661263700708e-07,1.752937247583398751e-07,1.784808833903096795e-07,1.816680420222794839e-07,1.848552006542492882e-07,1.880423592862190926e-07,1.912295179181888969e-07,1.944166765501587013e-07,1.976038351821285057e-07,2.007909938140983100e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.578302811152740833e-09,3.156605622305481666e-09,4.734908433458222913e-09,6.313211244610964160e-09,7.891514055763705406e-09,9.469816866916445826e-09,1.104811967806918625e-08,1.262642248922192666e-08,1.420472530037466708e-08,1.578302811152740750e-08,1.736133092268014792e-08,1.893963373383288834e-08,2.051793654498562876e-08,2.209623935613836918e-08,2.367454216729110960e-08,2.525284497844385002e-08,2.683114778959659044e-08,2.840945060074933086e-08,2.998775341190207128e-08,3.156605622305480839e-08,3.314435903420754550e-08,3.472266184536028261e-08,3.630096465651301972e-08,3.787926746766575683e-08,3.945757027881849394e-08,4.103587308997123105e-08,4.261417590112396817e-08,4.419247871227670528e-08,4.577078152342944239e-08,4.734908433458217950e-08,4.892738714573491661e-08,5.050568995688765372e-08,5.208399276804039083e-08,5.366229557919312794e-08,5.524059839034586505e-08,5.681890120149860216e-08,5.839720401265133927e-08,5.997550682380407638e-08,6.155380963495681349e-08,6.313211244610955061e-08,6.471041525726228772e-08,6.628871806841502483e-08,6.786702087956776194e-08,6.944532369072049905e-08,7.102362650187323616e-08,7.260192931302597327e-08,7.418023212417871038e-08,7.575853493533144749e-08,7.733683774648418460e-08,7.891514055763692171e-08,8.049344336878965882e-08,8.207174617994239594e-08,8.365004899109513305e-08,8.522835180224787016e-08,8.680665461340060727e-08,8.838495742455334438e-08,8.996326023570608149e-08,9.154156304685881860e-08,9.311986585801155571e-08,9.469816866916429282e-08,9.627647148031702993e-08,9.785477429146976704e-08,9.943307710262250415e-08 +0.000000000000000000e+00,3.097878460537640745e-09,6.195756921075281491e-09,9.293635381612923063e-09,1.239151384215056464e-08,1.548939230268820621e-08,1.858727076322584613e-08,2.168514922376348604e-08,2.478302768430112596e-08,2.788090614483876588e-08,3.097878460537640580e-08,3.407666306591404241e-08,3.717454152645167902e-08,4.027241998698931563e-08,4.337029844752695224e-08,4.646817690806458885e-08,4.956605536860222546e-08,5.266393382913986207e-08,5.576181228967749868e-08,5.885969075021513529e-08,6.195756921075277189e-08,6.505544767129040850e-08,6.815332613182804511e-08,7.125120459236568172e-08,7.434908305290331833e-08,7.744696151344095494e-08,8.054483997397859155e-08,8.364271843451622816e-08,8.674059689505386477e-08,8.983847535559150138e-08,9.293635381612913799e-08,9.603423227666677460e-08,9.913211073720441121e-08,1.022299891977420478e-07,1.053278676582796844e-07,1.084257461188173210e-07,1.115236245793549576e-07,1.146215030398925943e-07,1.177193815004302309e-07,1.208172599609678807e-07,1.239151384215055173e-07,1.270130168820431539e-07,1.301108953425807905e-07,1.332087738031184271e-07,1.363066522636560638e-07,1.394045307241937004e-07,1.425024091847313370e-07,1.456002876452689736e-07,1.486981661058066102e-07,1.517960445663442468e-07,1.548939230268818834e-07,1.579918014874195200e-07,1.610896799479571566e-07,1.641875584084947932e-07,1.672854368690324299e-07,1.703833153295700665e-07,1.734811937901077031e-07,1.765790722506453397e-07,1.796769507111829763e-07,1.827748291717206129e-07,1.858727076322582495e-07,1.889705860927958861e-07,1.920684645533335227e-07,1.951663430138711593e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.187158631970761409e-09,6.374317263941522818e-09,9.561475895912285054e-09,1.274863452788304729e-08,1.593579315985380953e-08,1.912295179182457011e-08,2.231011042379533069e-08,2.549726905576609127e-08,2.868442768773685185e-08,3.187158631970761244e-08,3.505874495167836971e-08,3.824590358364912698e-08,4.143306221561988425e-08,4.462022084759064153e-08,4.780737947956139880e-08,5.099453811153215607e-08,5.418169674350291335e-08,5.736885537547367062e-08,6.055601400744442789e-08,6.374317263941518517e-08,6.693033127138594244e-08,7.011748990335669971e-08,7.330464853532745698e-08,7.649180716729821426e-08,7.967896579926897153e-08,8.286612443123972880e-08,8.605328306321048608e-08,8.924044169518124335e-08,9.242760032715200062e-08,9.561475895912275790e-08,9.880191759109351517e-08,1.019890762230642724e-07,1.051762348550350297e-07,1.083633934870057870e-07,1.115505521189765443e-07,1.147377107509473015e-07,1.179248693829180588e-07,1.211120280148888293e-07,1.242991866468596131e-07,1.274863452788303968e-07,1.306735039108011805e-07,1.338606625427719643e-07,1.370478211747427480e-07,1.402349798067135318e-07,1.434221384386843155e-07,1.466092970706550993e-07,1.497964557026258830e-07,1.529836143345966667e-07,1.561707729665674505e-07,1.593579315985382342e-07,1.625450902305090180e-07,1.657322488624798017e-07,1.689194074944505855e-07,1.721065661264213692e-07,1.752937247583921529e-07,1.784808833903629367e-07,1.816680420223337204e-07,1.848552006543045042e-07,1.880423592862752879e-07,1.912295179182460717e-07,1.944166765502168554e-07,1.976038351821876391e-07,2.007909938141584229e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.578302811153211912e-09,3.156605622306423825e-09,4.734908433459635737e-09,6.313211244612847650e-09,7.891514055766059562e-09,9.469816866919271475e-09,1.104811967807248339e-08,1.262642248922569530e-08,1.420472530037890721e-08,1.578302811153211912e-08,1.736133092268532938e-08,1.893963373383853964e-08,2.051793654499174990e-08,2.209623935614496016e-08,2.367454216729817042e-08,2.525284497845138067e-08,2.683114778960459093e-08,2.840945060075780119e-08,2.998775341191101145e-08,3.156605622306421840e-08,3.314435903421742535e-08,3.472266184537063230e-08,3.630096465652383924e-08,3.787926746767704619e-08,3.945757027883025314e-08,4.103587308998346009e-08,4.261417590113666704e-08,4.419247871228987399e-08,4.577078152344308094e-08,4.734908433459628789e-08,4.892738714574949484e-08,5.050568995690270179e-08,5.208399276805590874e-08,5.366229557920911569e-08,5.524059839036232264e-08,5.681890120151552959e-08,5.839720401266873654e-08,5.997550682382194349e-08,6.155380963497514382e-08,6.313211244612834415e-08,6.471041525728154448e-08,6.628871806843474481e-08,6.786702087958794515e-08,6.944532369074114548e-08,7.102362650189434581e-08,7.260192931304754614e-08,7.418023212420074647e-08,7.575853493535394680e-08,7.733683774650714714e-08,7.891514055766034747e-08,8.049344336881354780e-08,8.207174617996674813e-08,8.365004899111994846e-08,8.522835180227314880e-08,8.680665461342634913e-08,8.838495742457954946e-08,8.996326023573274979e-08,9.154156304688595012e-08,9.311986585803915046e-08,9.469816866919235079e-08,9.627647148034555112e-08,9.785477429149875145e-08,9.943307710265195178e-08 +0.000000000000000000e+00,3.097878460538454278e-09,6.195756921076908555e-09,9.293635381615363246e-09,1.239151384215381876e-08,1.548939230269227263e-08,1.858727076323072649e-08,2.168514922376918036e-08,2.478302768430763422e-08,2.788090614484608808e-08,3.097878460538454526e-08,3.407666306592300243e-08,3.717454152646145960e-08,4.027241998699991677e-08,4.337029844753837395e-08,4.646817690807683112e-08,4.956605536861528829e-08,5.266393382915374547e-08,5.576181228969220264e-08,5.885969075023065981e-08,6.195756921076911698e-08,6.505544767130757416e-08,6.815332613184603133e-08,7.125120459238448850e-08,7.434908305292294567e-08,7.744696151346140285e-08,8.054483997399986002e-08,8.364271843453831719e-08,8.674059689507677436e-08,8.983847535561523154e-08,9.293635381615368871e-08,9.603423227669214588e-08,9.913211073723060306e-08,1.022299891977690602e-07,1.053278676583075174e-07,1.084257461188459746e-07,1.115236245793844317e-07,1.146215030399228889e-07,1.177193815004613461e-07,1.208172599609998033e-07,1.239151384215382604e-07,1.270130168820767176e-07,1.301108953426151748e-07,1.332087738031536320e-07,1.363066522636920891e-07,1.394045307242305463e-07,1.425024091847690035e-07,1.456002876453074606e-07,1.486981661058459178e-07,1.517960445663843750e-07,1.548939230269228322e-07,1.579918014874612893e-07,1.610896799479997465e-07,1.641875584085382037e-07,1.672854368690766609e-07,1.703833153296151180e-07,1.734811937901535752e-07,1.765790722506920324e-07,1.796769507112304895e-07,1.827748291717689467e-07,1.858727076323074039e-07,1.889705860928458611e-07,1.920684645533843182e-07,1.951663430139227754e-07 +0.000000000000000000e+00,6.532624949351856070e-09,1.306524989870371214e-08,1.959787484805556821e-08,2.613049979740742428e-08,3.266312474675928035e-08,3.919574969611113642e-08,4.572837464546299249e-08,5.226099959481484856e-08,5.879362454416670463e-08,6.532624949351856070e-08,7.185887444287041015e-08,7.839149939222225961e-08,8.492412434157410906e-08,9.145674929092595851e-08,9.798937424027780796e-08,1.045219991896296574e-07,1.110546241389815069e-07,1.175872490883333563e-07,1.241198740376852058e-07,1.306524989870370420e-07,1.371851239363888782e-07,1.437177488857407144e-07,1.502503738350925506e-07,1.567829987844443869e-07,1.633156237337962231e-07,1.698482486831480593e-07,1.763808736324998955e-07,1.829134985818517317e-07,1.894461235312035680e-07,1.959787484805554042e-07,2.025113734299072404e-07,2.090439983792590766e-07,2.155766233286109128e-07,2.221092482779627490e-07,2.286418732273145853e-07,2.351744981766664215e-07,2.417071231260182312e-07,2.482397480753700410e-07,2.547723730247218507e-07,2.613049979740736605e-07,2.678376229234254702e-07,2.743702478727772800e-07,2.809028728221290897e-07,2.874354977714808995e-07,2.939681227208327092e-07,3.005007476701845190e-07,3.070333726195363287e-07,3.135659975688881385e-07,3.200986225182399482e-07,3.266312474675917579e-07,3.331638724169435677e-07,3.396964973662953774e-07,3.462291223156471872e-07,3.527617472649989969e-07,3.592943722143508067e-07,3.658269971637026164e-07,3.723596221130544262e-07,3.788922470624062359e-07,3.854248720117580457e-07,3.919574969611098554e-07,3.984901219104616652e-07,4.050227468598134749e-07,4.115553718091652847e-07 +0.000000000000000000e+00,4.854602442997158544e-09,9.709204885994317087e-09,1.456380732899147646e-08,1.941840977198863748e-08,2.427301221498579851e-08,2.912761465798295953e-08,3.398221710098011725e-08,3.883681954397727497e-08,4.369142198697443268e-08,4.854602442997159040e-08,5.340062687296874811e-08,5.825522931596590583e-08,6.310983175896306355e-08,6.796443420196022126e-08,7.281903664495737898e-08,7.767363908795453670e-08,8.252824153095169441e-08,8.738284397394885213e-08,9.223744641694600985e-08,9.709204885994316756e-08,1.019466513029403253e-07,1.068012537459374830e-07,1.116558561889346407e-07,1.165104586319317984e-07,1.213650610749289694e-07,1.262196635179261536e-07,1.310742659609233378e-07,1.359288684039205219e-07,1.407834708469177061e-07,1.456380732899148903e-07,1.504926757329120745e-07,1.553472781759092587e-07,1.602018806189064429e-07,1.650564830619036271e-07,1.699110855049008112e-07,1.747656879478979954e-07,1.796202903908951796e-07,1.844748928338923638e-07,1.893294952768895480e-07,1.941840977198867322e-07,1.990387001628839164e-07,2.038933026058811005e-07,2.087479050488782847e-07,2.136025074918754689e-07,2.184571099348726531e-07,2.233117123778698373e-07,2.281663148208670215e-07,2.330209172638642057e-07,2.378755197068613898e-07,2.427301221498585740e-07,2.475847245928557582e-07,2.524393270358529424e-07,2.572939294788501266e-07,2.621485319218473108e-07,2.670031343648444950e-07,2.718577368078416791e-07,2.767123392508388633e-07,2.815669416938360475e-07,2.864215441368332317e-07,2.912761465798304159e-07,2.961307490228276001e-07,3.009853514658247843e-07,3.058399539088219685e-07 +0.000000000000000000e+00,6.333594495816440200e-09,1.266718899163288040e-08,1.900078348744932225e-08,2.533437798326576411e-08,3.166797247908220596e-08,3.800156697489864451e-08,4.433516147071508305e-08,5.066875596653152160e-08,5.700235046234796014e-08,6.333594495816439869e-08,6.966953945398084385e-08,7.600313394979728901e-08,8.233672844561373418e-08,8.867032294143017934e-08,9.500391743724662450e-08,1.013375119330630697e-07,1.076711064288795148e-07,1.140047009246959600e-07,1.203382954205124052e-07,1.266718899163288503e-07,1.330054844121452955e-07,1.393390789079617406e-07,1.456726734037781858e-07,1.520062678995946310e-07,1.583398623954110761e-07,1.646734568912275213e-07,1.710070513870439665e-07,1.773406458828604116e-07,1.836742403786768568e-07,1.900078348744933019e-07,1.963414293703097471e-07,2.026750238661261923e-07,2.090086183619426374e-07,2.153422128577590826e-07,2.216758073535755278e-07,2.280094018493919729e-07,2.343429963452084181e-07,2.406765908410248632e-07,2.470101853368413084e-07,2.533437798326577536e-07,2.596773743284741987e-07,2.660109688242906439e-07,2.723445633201070891e-07,2.786781578159235342e-07,2.850117523117399794e-07,2.913453468075564245e-07,2.976789413033728697e-07,3.040125357991893149e-07,3.103461302950057600e-07,3.166797247908222052e-07,3.230133192866386504e-07,3.293469137824550955e-07,3.356805082782715407e-07,3.420141027740879859e-07,3.483476972699044310e-07,3.546812917657208762e-07,3.610148862615373213e-07,3.673484807573537665e-07,3.736820752531702117e-07,3.800156697489866568e-07,3.863492642448031020e-07,3.926828587406195472e-07,3.990164532364359923e-07 +0.000000000000000000e+00,6.532624949353581569e-09,1.306524989870716314e-08,1.959787484806074305e-08,2.613049979741432297e-08,3.266312474676790288e-08,3.919574969612148610e-08,4.572837464547506933e-08,5.226099959482865255e-08,5.879362454418223577e-08,6.532624949353581900e-08,7.185887444288940222e-08,7.839149939224298544e-08,8.492412434159656867e-08,9.145674929095015189e-08,9.798937424030373511e-08,1.045219991896573183e-07,1.110546241390109016e-07,1.175872490883644848e-07,1.241198740377180548e-07,1.306524989870716115e-07,1.371851239364251683e-07,1.437177488857787250e-07,1.502503738351322818e-07,1.567829987844858385e-07,1.633156237338393953e-07,1.698482486831929520e-07,1.763808736325465088e-07,1.829134985819000656e-07,1.894461235312536223e-07,1.959787484806071791e-07,2.025113734299607358e-07,2.090439983793142926e-07,2.155766233286678493e-07,2.221092482780214061e-07,2.286418732273749628e-07,2.351744981767285196e-07,2.417071231260820763e-07,2.482397480754356331e-07,2.547723730247891898e-07,2.613049979741427466e-07,2.678376229234963033e-07,2.743702478728498601e-07,2.809028728222034169e-07,2.874354977715569736e-07,2.939681227209105304e-07,3.005007476702640871e-07,3.070333726196176439e-07,3.135659975689712006e-07,3.200986225183247574e-07,3.266312474676783141e-07,3.331638724170318709e-07,3.396964973663854276e-07,3.462291223157389844e-07,3.527617472650925411e-07,3.592943722144460979e-07,3.658269971637996546e-07,3.723596221131532114e-07,3.788922470625067682e-07,3.854248720118603249e-07,3.919574969612138817e-07,3.984901219105674384e-07,4.050227468599209952e-07,4.115553718092745519e-07 +0.000000000000000000e+00,4.854602442998506848e-09,9.709204885997013696e-09,1.456380732899551972e-08,1.941840977199402408e-08,2.427301221499252845e-08,2.912761465799103282e-08,3.398221710098954049e-08,3.883681954398804817e-08,4.369142198698655584e-08,4.854602442998506352e-08,5.340062687298357119e-08,5.825522931598207887e-08,6.310983175898058654e-08,6.796443420197909422e-08,7.281903664497760189e-08,7.767363908797610957e-08,8.252824153097461724e-08,8.738284397397312492e-08,9.223744641697163259e-08,9.709204885997014027e-08,1.019466513029686479e-07,1.068012537459671556e-07,1.116558561889656633e-07,1.165104586319641710e-07,1.213650610749626919e-07,1.262196635179611996e-07,1.310742659609597072e-07,1.359288684039582149e-07,1.407834708469567226e-07,1.456380732899552303e-07,1.504926757329537379e-07,1.553472781759522456e-07,1.602018806189507533e-07,1.650564830619492610e-07,1.699110855049477686e-07,1.747656879479462763e-07,1.796202903909447840e-07,1.844748928339432917e-07,1.893294952769417993e-07,1.941840977199403070e-07,1.990387001629388147e-07,2.038933026059373224e-07,2.087479050489358300e-07,2.136025074919343377e-07,2.184571099349328454e-07,2.233117123779313531e-07,2.281663148209298607e-07,2.330209172639283684e-07,2.378755197069268761e-07,2.427301221499253838e-07,2.475847245929238914e-07,2.524393270359223991e-07,2.572939294789209068e-07,2.621485319219194145e-07,2.670031343649179221e-07,2.718577368079164298e-07,2.767123392509149375e-07,2.815669416939134452e-07,2.864215441369119528e-07,2.912761465799104605e-07,2.961307490229089682e-07,3.009853514659074759e-07,3.058399539089059835e-07 +0.000000000000000000e+00,6.333594495817920026e-09,1.266718899163584005e-08,1.900078348745375925e-08,2.533437798327167679e-08,3.166797247908959765e-08,3.800156697490751850e-08,4.433516147072543935e-08,5.066875596654336021e-08,5.700235046236128106e-08,6.333594495817919530e-08,6.966953945399710953e-08,7.600313394981502377e-08,8.233672844563293800e-08,8.867032294145085224e-08,9.500391743726876647e-08,1.013375119330866807e-07,1.076711064289045949e-07,1.140047009247225092e-07,1.203382954205404102e-07,1.266718899163583112e-07,1.330054844121762122e-07,1.393390789079941132e-07,1.456726734038120142e-07,1.520062678996299152e-07,1.583398623954478162e-07,1.646734568912657172e-07,1.710070513870836182e-07,1.773406458829015192e-07,1.836742403787194202e-07,1.900078348745373212e-07,1.963414293703552222e-07,2.026750238661731232e-07,2.090086183619910242e-07,2.153422128578089252e-07,2.216758073536268262e-07,2.280094018494447272e-07,2.343429963452626282e-07,2.406765908410805027e-07,2.470101853368983773e-07,2.533437798327162518e-07,2.596773743285341263e-07,2.660109688243520008e-07,2.723445633201698754e-07,2.786781578159877499e-07,2.850117523118056244e-07,2.913453468076234990e-07,2.976789413034413735e-07,3.040125357992592480e-07,3.103461302950771226e-07,3.166797247908949971e-07,3.230133192867128716e-07,3.293469137825307462e-07,3.356805082783486207e-07,3.420141027741664952e-07,3.483476972699843697e-07,3.546812917658022443e-07,3.610148862616201188e-07,3.673484807574379933e-07,3.736820752532558679e-07,3.800156697490737424e-07,3.863492642448916169e-07,3.926828587407094915e-07,3.990164532365273660e-07 +0.000000000000000000e+00,9.939023605178117322e-09,1.987804721035623464e-08,2.981707081553435031e-08,3.975609442071246267e-08,4.969511802589057503e-08,5.963414163106868739e-08,6.957316523624680636e-08,7.951218884142492534e-08,8.945121244660304432e-08,9.939023605178116329e-08,1.093292596569592823e-07,1.192682832621374012e-07,1.292073068673155202e-07,1.391463304724936392e-07,1.490853540776717582e-07,1.590243776828498771e-07,1.689634012880279961e-07,1.789024248932061151e-07,1.888414484983842341e-07,1.987804721035623531e-07,2.087194957087404720e-07,2.186585193139185910e-07,2.285975429190967100e-07,2.385365665242748554e-07,2.484755901294530009e-07,2.584146137346311463e-07,2.683536373398092918e-07,2.782926609449874372e-07,2.882316845501655827e-07,2.981707081553437281e-07,3.081097317605218736e-07,3.180487553657000190e-07,3.279877789708781644e-07,3.379268025760563099e-07,3.478658261812344553e-07,3.578048497864126008e-07,3.677438733915907462e-07,3.776828969967688917e-07,3.876219206019470371e-07,3.975609442071251826e-07,4.074999678123033280e-07,4.174389914174814735e-07,4.273780150226596189e-07,4.373170386278377643e-07,4.472560622330159098e-07,4.571950858381940552e-07,4.671341094433722007e-07,4.770731330485503461e-07,4.870121566537284916e-07,4.969511802589066370e-07,5.068902038640847825e-07,5.168292274692629279e-07,5.267682510744410734e-07,5.367072746796192188e-07,5.466462982847973643e-07,5.565853218899755097e-07,5.665243454951536551e-07,5.764633691003318006e-07,5.864023927055099460e-07,5.963414163106880915e-07,6.062804399158662369e-07,6.162194635210443824e-07,6.261584871262225278e-07 +0.000000000000000000e+00,8.230075726122664065e-09,1.646015145224532813e-08,2.469022717836799385e-08,3.292030290449066288e-08,4.115037863061333190e-08,4.938045435673600093e-08,5.761053008285866996e-08,6.584060580898133899e-08,7.407068153510400801e-08,8.230075726122667704e-08,9.053083298734934607e-08,9.876090871347201510e-08,1.069909844395946841e-07,1.152210601657173532e-07,1.234511358918400354e-07,1.316812116179627044e-07,1.399112873440853735e-07,1.481413630702080425e-07,1.563714387963307115e-07,1.646015145224533806e-07,1.728315902485760496e-07,1.810616659746987186e-07,1.892917417008213876e-07,1.975218174269440567e-07,2.057518931530667257e-07,2.139819688791893947e-07,2.222120446053120637e-07,2.304421203314347328e-07,2.386721960575574018e-07,2.469022717836800708e-07,2.551323475098027399e-07,2.633624232359254089e-07,2.715924989620480779e-07,2.798225746881707469e-07,2.880526504142934160e-07,2.962827261404160850e-07,3.045128018665387540e-07,3.127428775926614230e-07,3.209729533187840921e-07,3.292030290449067611e-07,3.374331047710294301e-07,3.456631804971520992e-07,3.538932562232747682e-07,3.621233319493974372e-07,3.703534076755201062e-07,3.785834834016427753e-07,3.868135591277654443e-07,3.950436348538881133e-07,4.032737105800107824e-07,4.115037863061334514e-07,4.197338620322561204e-07,4.279639377583787894e-07,4.361940134845014585e-07,4.444240892106241275e-07,4.526541649367467965e-07,4.608842406628694655e-07,4.691143163889921346e-07,4.773443921151148036e-07,4.855744678412374197e-07,4.938045435673600358e-07,5.020346192934826519e-07,5.102646950196052680e-07,5.184947707457278840e-07 +0.000000000000000000e+00,9.607400186919863899e-09,1.921480037383972780e-08,2.882220056075959004e-08,3.842960074767944898e-08,4.803700093459930792e-08,5.764440112151916685e-08,6.725180130843901917e-08,7.685920149535887149e-08,8.646660168227872381e-08,9.607400186919857613e-08,1.056814020561184284e-07,1.152888022430382808e-07,1.248962024299581331e-07,1.345036026168779854e-07,1.441110028037978377e-07,1.537184029907176900e-07,1.633258031776375424e-07,1.729332033645573947e-07,1.825406035514772470e-07,1.921480037383970993e-07,2.017554039253169516e-07,2.113628041122368040e-07,2.209702042991566563e-07,2.305776044860765086e-07,2.401850046729963344e-07,2.497924048599161603e-07,2.593998050468359861e-07,2.690072052337558120e-07,2.786146054206756378e-07,2.882220056075954637e-07,2.978294057945152895e-07,3.074368059814351154e-07,3.170442061683549412e-07,3.266516063552747671e-07,3.362590065421945929e-07,3.458664067291144188e-07,3.554738069160342446e-07,3.650812071029540705e-07,3.746886072898738963e-07,3.842960074767937222e-07,3.939034076637135480e-07,4.035108078506333739e-07,4.131182080375531997e-07,4.227256082244730256e-07,4.323330084113928514e-07,4.419404085983126773e-07,4.515478087852325031e-07,4.611552089721523290e-07,4.707626091590721548e-07,4.803700093459920336e-07,4.899774095329119124e-07,4.995848097198317912e-07,5.091922099067516700e-07,5.187996100936715488e-07,5.284070102805914276e-07,5.380144104675113063e-07,5.476218106544311851e-07,5.572292108413510639e-07,5.668366110282709427e-07,5.764440112151908215e-07,5.860514114021107003e-07,5.956588115890305791e-07,6.052662117759504579e-07 +0.000000000000000000e+00,9.939023605180620370e-09,1.987804721036124074e-08,2.981707081554186111e-08,3.975609442072248148e-08,4.969511802590310185e-08,5.963414163108372222e-08,6.957316523626434259e-08,7.951218884144496296e-08,8.945121244662558333e-08,9.939023605180620370e-08,1.093292596569868241e-07,1.192682832621674444e-07,1.292073068673480780e-07,1.391463304725287117e-07,1.490853540777093453e-07,1.590243776828899789e-07,1.689634012880706125e-07,1.789024248932512461e-07,1.888414484984318797e-07,1.987804721036125133e-07,2.087194957087931469e-07,2.186585193139737805e-07,2.285975429191544141e-07,2.385365665243350477e-07,2.484755901295156813e-07,2.584146137346963149e-07,2.683536373398769485e-07,2.782926609450575821e-07,2.882316845502382157e-07,2.981707081554188493e-07,3.081097317605994829e-07,3.180487553657801165e-07,3.279877789709607502e-07,3.379268025761413838e-07,3.478658261813220174e-07,3.578048497865026510e-07,3.677438733916832846e-07,3.776828969968639182e-07,3.876219206020445518e-07,3.975609442072251854e-07,4.074999678124058190e-07,4.174389914175864526e-07,4.273780150227670862e-07,4.373170386279477198e-07,4.472560622331283534e-07,4.571950858383089870e-07,4.671341094434896206e-07,4.770731330486702013e-07,4.870121566538507820e-07,4.969511802590313626e-07,5.068902038642119433e-07,5.168292274693925240e-07,5.267682510745731046e-07,5.367072746797536853e-07,5.466462982849342660e-07,5.565853218901148466e-07,5.665243454952954273e-07,5.764633691004760080e-07,5.864023927056565886e-07,5.963414163108371693e-07,6.062804399160177499e-07,6.162194635211983306e-07,6.261584871263789113e-07 +0.000000000000000000e+00,8.230075726124786610e-09,1.646015145224957322e-08,2.469022717837435983e-08,3.292030290449914644e-08,4.115037863062393305e-08,4.938045435674871966e-08,5.761053008287350627e-08,6.584060580899829288e-08,7.407068153512307949e-08,8.230075726124786610e-08,9.053083298737265271e-08,9.876090871349743932e-08,1.069909844396222259e-07,1.152210601657470125e-07,1.234511358918717991e-07,1.316812116179965858e-07,1.399112873441213724e-07,1.481413630702461590e-07,1.563714387963709456e-07,1.646015145224957322e-07,1.728315902486205188e-07,1.810616659747453054e-07,1.892917417008700920e-07,1.975218174269948786e-07,2.057518931531196652e-07,2.139819688792444519e-07,2.222120446053692385e-07,2.304421203314940251e-07,2.386721960576188117e-07,2.469022717837435983e-07,2.551323475098683849e-07,2.633624232359931715e-07,2.715924989621179581e-07,2.798225746882427447e-07,2.880526504143675313e-07,2.962827261404923180e-07,3.045128018666171046e-07,3.127428775927418912e-07,3.209729533188666778e-07,3.292030290449914644e-07,3.374331047711162510e-07,3.456631804972410376e-07,3.538932562233658242e-07,3.621233319494906108e-07,3.703534076756153974e-07,3.785834834017401841e-07,3.868135591278649707e-07,3.950436348539897573e-07,4.032737105801145439e-07,4.115037863062393305e-07,4.197338620323641171e-07,4.279639377584889037e-07,4.361940134846136903e-07,4.444240892107384769e-07,4.526541649368632635e-07,4.608842406629880502e-07,4.691143163891128368e-07,4.773443921152376234e-07,4.855744678413623570e-07,4.938045435674870907e-07,5.020346192936118244e-07,5.102646950197365581e-07,5.184947707458612917e-07 +0.000000000000000000e+00,9.607400186921873948e-09,1.921480037384374790e-08,2.882220056076562185e-08,3.842960074768749579e-08,4.803700093460937305e-08,5.764440112153125031e-08,6.725180130845312756e-08,7.685920149537500482e-08,8.646660168229688208e-08,9.607400186921875934e-08,1.056814020561406366e-07,1.152888022430625139e-07,1.248962024299843911e-07,1.345036026169062551e-07,1.441110028038281192e-07,1.537184029907499832e-07,1.633258031776718472e-07,1.729332033645937112e-07,1.825406035515155752e-07,1.921480037384374393e-07,2.017554039253593033e-07,2.113628041122811673e-07,2.209702042992030313e-07,2.305776044861248954e-07,2.401850046730467329e-07,2.497924048599685705e-07,2.593998050468904080e-07,2.690072052338122456e-07,2.786146054207340831e-07,2.882220056076559207e-07,2.978294057945777582e-07,3.074368059814995958e-07,3.170442061684214333e-07,3.266516063553432709e-07,3.362590065422651084e-07,3.458664067291869460e-07,3.554738069161087835e-07,3.650812071030306211e-07,3.746886072899524586e-07,3.842960074768742962e-07,3.939034076637961337e-07,4.035108078507179713e-07,4.131182080376398088e-07,4.227256082245616464e-07,4.323330084114834840e-07,4.419404085984053215e-07,4.515478087853271591e-07,4.611552089722489966e-07,4.707626091591708342e-07,4.803700093460926188e-07,4.899774095330144034e-07,4.995848097199361880e-07,5.091922099068579726e-07,5.187996100937797572e-07,5.284070102807015418e-07,5.380144104676233265e-07,5.476218106545451111e-07,5.572292108414668957e-07,5.668366110283886803e-07,5.764440112153104649e-07,5.860514114022322495e-07,5.956588115891540341e-07,6.052662117760758187e-07 +0.000000000000000000e+00,1.338975220423304869e-08,2.677950440846609738e-08,4.016925661269914772e-08,5.355900881693220137e-08,6.694876102116525503e-08,8.033851322539830868e-08,9.372826542963136233e-08,1.071180176338644160e-07,1.205077698380974564e-07,1.338975220423304836e-07,1.472872742465635108e-07,1.606770264507965379e-07,1.740667786550295651e-07,1.874565308592625923e-07,2.008462830634956195e-07,2.142360352677286467e-07,2.276257874719616739e-07,2.410155396761947010e-07,2.544052918804277282e-07,2.677950440846607554e-07,2.811847962888937826e-07,2.945745484931268098e-07,3.079643006973598370e-07,3.213540529015928641e-07,3.347438051058258913e-07,3.481335573100589185e-07,3.615233095142919457e-07,3.749130617185249729e-07,3.883028139227580000e-07,4.016925661269910272e-07,4.150823183312240544e-07,4.284720705354570816e-07,4.418618227396901088e-07,4.552515749439231360e-07,4.686413271481561631e-07,4.820310793523891903e-07,4.954208315566222175e-07,5.088105837608552447e-07,5.222003359650882719e-07,5.355900881693212990e-07,5.489798403735543262e-07,5.623695925777873534e-07,5.757593447820203806e-07,5.891490969862534078e-07,6.025388491904864350e-07,6.159286013947194621e-07,6.293183535989524893e-07,6.427081058031855165e-07,6.560978580074185437e-07,6.694876102116515709e-07,6.828773624158845981e-07,6.962671146201176252e-07,7.096568668243506524e-07,7.230466190285836796e-07,7.364363712328167068e-07,7.498261234370497340e-07,7.632158756412827611e-07,7.766056278455157883e-07,7.899953800497488155e-07,8.033851322539818427e-07,8.167748844582148699e-07,8.301646366624478971e-07,8.435543888666809242e-07 +0.000000000000000000e+00,1.165903218731350684e-08,2.331806437462701368e-08,3.497709656194051722e-08,4.663612874925402075e-08,5.829516093656752428e-08,6.995419312388103444e-08,8.161322531119454459e-08,9.327225749850805474e-08,1.049312896858215649e-07,1.165903218731350750e-07,1.282493540604485984e-07,1.399083862477621218e-07,1.515674184350756452e-07,1.632264506223891686e-07,1.748854828097026920e-07,1.865445149970162154e-07,1.982035471843297387e-07,2.098625793716432621e-07,2.215216115589567855e-07,2.331806437462703089e-07,2.448396759335838323e-07,2.564987081208973557e-07,2.681577403082108791e-07,2.798167724955244024e-07,2.914758046828379258e-07,3.031348368701514492e-07,3.147938690574649726e-07,3.264529012447784960e-07,3.381119334320920194e-07,3.497709656194055428e-07,3.614299978067190661e-07,3.730890299940325895e-07,3.847480621813461129e-07,3.964070943686596363e-07,4.080661265559731597e-07,4.197251587432866831e-07,4.313841909306002065e-07,4.430432231179137298e-07,4.547022553052272532e-07,4.663612874925407766e-07,4.780203196798543000e-07,4.896793518671678763e-07,5.013383840544814526e-07,5.129974162417950290e-07,5.246564484291086053e-07,5.363154806164221816e-07,5.479745128037357579e-07,5.596335449910493343e-07,5.712925771783629106e-07,5.829516093656764869e-07,5.946106415529900632e-07,6.062696737403036396e-07,6.179287059276172159e-07,6.295877381149307922e-07,6.412467703022443685e-07,6.529058024895579449e-07,6.645648346768715212e-07,6.762238668641850975e-07,6.878828990514986738e-07,6.995419312388122502e-07,7.112009634261258265e-07,7.228599956134394028e-07,7.345190278007529792e-07 +0.000000000000000000e+00,1.290216760904130162e-08,2.580433521808260325e-08,3.870650282712390487e-08,5.160867043616520650e-08,6.451083804520650150e-08,7.741300565424779651e-08,9.031517326328909152e-08,1.032173408723303865e-07,1.161195084813716815e-07,1.290216760904129765e-07,1.419238436994542715e-07,1.548260113084955665e-07,1.677281789175368616e-07,1.806303465265781566e-07,1.935325141356194516e-07,2.064346817446607466e-07,2.193368493537020416e-07,2.322390169627433366e-07,2.451411845717846051e-07,2.580433521808259001e-07,2.709455197898671951e-07,2.838476873989084901e-07,2.967498550079497851e-07,3.096520226169910802e-07,3.225541902260323752e-07,3.354563578350736702e-07,3.483585254441149652e-07,3.612606930531562602e-07,3.741628606621975552e-07,3.870650282712388502e-07,3.999671958802801452e-07,4.128693634893214402e-07,4.257715310983627352e-07,4.386736987074040302e-07,4.515758663164453252e-07,4.644780339254866202e-07,4.773802015345279152e-07,4.902823691435692102e-07,5.031845367526105053e-07,5.160867043616518003e-07,5.289888719706930953e-07,5.418910395797343903e-07,5.547932071887756853e-07,5.676953747978169803e-07,5.805975424068582753e-07,5.934997100158995703e-07,6.064018776249408653e-07,6.193040452339821603e-07,6.322062128430234553e-07,6.451083804520647503e-07,6.580105480611060453e-07,6.709127156701473403e-07,6.838148832791886353e-07,6.967170508882299304e-07,7.096192184972712254e-07,7.225213861063125204e-07,7.354235537153538154e-07,7.483257213243951104e-07,7.612278889334364054e-07,7.741300565424777004e-07,7.870322241515189954e-07,7.999343917605602904e-07,8.128365593696015854e-07 +0.000000000000000000e+00,1.338975220423626973e-08,2.677950440847253946e-08,4.016925661270880919e-08,5.355900881694507892e-08,6.694876102118134865e-08,8.033851322541761838e-08,9.372826542965388811e-08,1.071180176338901578e-07,1.205077698381264143e-07,1.338975220423626708e-07,1.472872742465989273e-07,1.606770264508351838e-07,1.740667786550714403e-07,1.874565308593076968e-07,2.008462830635439533e-07,2.142360352677802098e-07,2.276257874720164663e-07,2.410155396762527228e-07,2.544052918804889793e-07,2.677950440847252358e-07,2.811847962889614923e-07,2.945745484931977488e-07,3.079643006974340053e-07,3.213540529016702618e-07,3.347438051059065183e-07,3.481335573101427748e-07,3.615233095143790313e-07,3.749130617186152878e-07,3.883028139228515442e-07,4.016925661270878007e-07,4.150823183313240572e-07,4.284720705355603137e-07,4.418618227397965702e-07,4.552515749440328267e-07,4.686413271482690832e-07,4.820310793525053397e-07,4.954208315567416491e-07,5.088105837609779586e-07,5.222003359652142680e-07,5.355900881694505775e-07,5.489798403736868869e-07,5.623695925779231963e-07,5.757593447821595058e-07,5.891490969863958152e-07,6.025388491906321246e-07,6.159286013948684341e-07,6.293183535991047435e-07,6.427081058033410529e-07,6.560978580075773624e-07,6.694876102118136718e-07,6.828773624160499812e-07,6.962671146202862907e-07,7.096568668245226001e-07,7.230466190287589095e-07,7.364363712329952190e-07,7.498261234372315284e-07,7.632158756414678378e-07,7.766056278457041473e-07,7.899953800499404567e-07,8.033851322541767662e-07,8.167748844584130756e-07,8.301646366626493850e-07,8.435543888668856945e-07 +0.000000000000000000e+00,1.165903218731638543e-08,2.331806437463277086e-08,3.497709656194915960e-08,4.663612874926554834e-08,5.829516093658193708e-08,6.995419312389831920e-08,8.161322531121470132e-08,9.327225749853108344e-08,1.049312896858474656e-07,1.165903218731638477e-07,1.282493540604802298e-07,1.399083862477966119e-07,1.515674184351129941e-07,1.632264506224293762e-07,1.748854828097457583e-07,1.865445149970621404e-07,1.982035471843785225e-07,2.098625793716949047e-07,2.215216115590112868e-07,2.331806437463276689e-07,2.448396759336440775e-07,2.564987081209605126e-07,2.681577403082769476e-07,2.798167724955933827e-07,2.914758046829098177e-07,3.031348368702262528e-07,3.147938690575426879e-07,3.264529012448591229e-07,3.381119334321755580e-07,3.497709656194919931e-07,3.614299978068084281e-07,3.730890299941248632e-07,3.847480621814412982e-07,3.964070943687577333e-07,4.080661265560741684e-07,4.197251587433906034e-07,4.313841909307070385e-07,4.430432231180234735e-07,4.547022553053399086e-07,4.663612874926563437e-07,4.780203196799727787e-07,4.896793518672892138e-07,5.013383840546056489e-07,5.129974162419220839e-07,5.246564484292385190e-07,5.363154806165549540e-07,5.479745128038713891e-07,5.596335449911878242e-07,5.712925771785042592e-07,5.829516093658206943e-07,5.946106415531371293e-07,6.062696737404535644e-07,6.179287059277699995e-07,6.295877381150864345e-07,6.412467703024028696e-07,6.529058024897193047e-07,6.645648346770357397e-07,6.762238668643521748e-07,6.878828990516686098e-07,6.995419312389850449e-07,7.112009634263014800e-07,7.228599956136179150e-07,7.345190278009343501e-07 +0.000000000000000000e+00,1.290216760904369052e-08,2.580433521808738104e-08,3.870650282713107156e-08,5.160867043617476209e-08,6.451083804521845261e-08,7.741300565426214313e-08,9.031517326330583365e-08,1.032173408723495242e-07,1.161195084813932147e-07,1.290216760904369052e-07,1.419238436994806090e-07,1.548260113085243127e-07,1.677281789175680165e-07,1.806303465266117202e-07,1.935325141356554240e-07,2.064346817446991278e-07,2.193368493537428315e-07,2.322390169627865353e-07,2.451411845718302390e-07,2.580433521808739692e-07,2.709455197899176995e-07,2.838476873989614297e-07,2.967498550080051599e-07,3.096520226170488902e-07,3.225541902260926204e-07,3.354563578351363506e-07,3.483585254441800808e-07,3.612606930532238111e-07,3.741628606622675413e-07,3.870650282713112715e-07,3.999671958803550017e-07,4.128693634893987320e-07,4.257715310984424622e-07,4.386736987074861924e-07,4.515758663165299226e-07,4.644780339255736529e-07,4.773802015346173831e-07,4.902823691436611133e-07,5.031845367527048435e-07,5.160867043617485738e-07,5.289888719707923040e-07,5.418910395798360342e-07,5.547932071888797645e-07,5.676953747979234947e-07,5.805975424069672249e-07,5.934997100160109551e-07,6.064018776250546854e-07,6.193040452340984156e-07,6.322062128431421458e-07,6.451083804521858760e-07,6.580105480612296063e-07,6.709127156702733365e-07,6.838148832793170667e-07,6.967170508883607969e-07,7.096192184974045272e-07,7.225213861064482574e-07,7.354235537154919876e-07,7.483257213245357178e-07,7.612278889335794481e-07,7.741300565426231783e-07,7.870322241516669085e-07,7.999343917607106388e-07,8.128365593697543690e-07 +0.000000000000000000e+00,1.688415257990141348e-08,3.376830515980282697e-08,5.065245773970423714e-08,6.753661031960564070e-08,8.442076289950704425e-08,1.013049154794084478e-07,1.181890680593098514e-07,1.350732206392112549e-07,1.519573732191126452e-07,1.688415257990140356e-07,1.857256783789154259e-07,2.026098309588168162e-07,2.194939835387182065e-07,2.363781361186195969e-07,2.532622886985209872e-07,2.701464412784223510e-07,2.870305938583237149e-07,3.039147464382250787e-07,3.207988990181264426e-07,3.376830515980278064e-07,3.545672041779291703e-07,3.714513567578305341e-07,3.883355093377318980e-07,4.052196619176332618e-07,4.221038144975346257e-07,4.389879670774359896e-07,4.558721196573373534e-07,4.727562722372387173e-07,4.896404248171401340e-07,5.065245773970415508e-07,5.234087299769429676e-07,5.402928825568443844e-07,5.571770351367458012e-07,5.740611877166472180e-07,5.909453402965486348e-07,6.078294928764500516e-07,6.247136454563514684e-07,6.415977980362528852e-07,6.584819506161543020e-07,6.753661031960557188e-07,6.922502557759571355e-07,7.091344083558585523e-07,7.260185609357599691e-07,7.429027135156613859e-07,7.597868660955628027e-07,7.766710186754642195e-07,7.935551712553656363e-07,8.104393238352670531e-07,8.273234764151684699e-07,8.442076289950698867e-07,8.610917815749713035e-07,8.779759341548727203e-07,8.948600867347741370e-07,9.117442393146755538e-07,9.286283918945769706e-07,9.455125444744783874e-07,9.623966970543798042e-07,9.792808496342811151e-07,9.961650022141824260e-07,1.013049154794083737e-06,1.029933307373985048e-06,1.046817459953886359e-06,1.063701612533787670e-06 +0.000000000000000000e+00,1.513269558343110199e-08,3.026539116686220398e-08,4.539808675029330266e-08,6.053078233372439472e-08,7.566347791715548679e-08,9.079617350058657885e-08,1.059288690840176709e-07,1.210615646674487630e-07,1.361942602508798550e-07,1.513269558343109471e-07,1.664596514177420392e-07,1.815923470011731312e-07,1.967250425846042233e-07,2.118577381680353154e-07,2.269904337514664074e-07,2.421231293348974730e-07,2.572558249183285651e-07,2.723885205017596571e-07,2.875212160851907492e-07,3.026539116686218413e-07,3.177866072520529333e-07,3.329193028354840254e-07,3.480519984189151175e-07,3.631846940023462095e-07,3.783173895857773016e-07,3.934500851692083936e-07,4.085827807526394857e-07,4.237154763360705778e-07,4.388481719195016698e-07,4.539808675029327619e-07,4.691135630863638540e-07,4.842462586697949460e-07,4.993789542532260381e-07,5.145116498366571301e-07,5.296443454200882222e-07,5.447770410035193143e-07,5.599097365869504063e-07,5.750424321703814984e-07,5.901751277538125905e-07,6.053078233372436825e-07,6.204405189206747746e-07,6.355732145041058667e-07,6.507059100875369587e-07,6.658386056709680508e-07,6.809713012543991428e-07,6.961039968378302349e-07,7.112366924212613270e-07,7.263693880046924190e-07,7.415020835881235111e-07,7.566347791715546032e-07,7.717674747549856952e-07,7.869001703384167873e-07,8.020328659218478793e-07,8.171655615052789714e-07,8.322982570887100635e-07,8.474309526721411555e-07,8.625636482555722476e-07,8.776963438390033397e-07,8.928290394224344317e-07,9.079617350058655238e-07,9.230944305892966159e-07,9.382271261727277079e-07,9.533598217561588000e-07 +0.000000000000000000e+00,1.620914356912766660e-08,3.241828713825533321e-08,4.862743070738299650e-08,6.483657427651065318e-08,8.104571784563830986e-08,9.725486141476596654e-08,1.134640049838936232e-07,1.296731485530212799e-07,1.458822921221489366e-07,1.620914356912765933e-07,1.783005792604042499e-07,1.945097228295319066e-07,2.107188663986595633e-07,2.269280099677872200e-07,2.431371535369148502e-07,2.593462971060425069e-07,2.755554406751701635e-07,2.917645842442978202e-07,3.079737278134254769e-07,3.241828713825531336e-07,3.403920149516807902e-07,3.566011585208084469e-07,3.728103020899361036e-07,3.890194456590637603e-07,4.052285892281914170e-07,4.214377327973190736e-07,4.376468763664467303e-07,4.538560199355743870e-07,4.700651635047020437e-07,4.862743070738297004e-07,5.024834506429573570e-07,5.186925942120850137e-07,5.349017377812126704e-07,5.511108813503403271e-07,5.673200249194679837e-07,5.835291684885956404e-07,5.997383120577232971e-07,6.159474556268509538e-07,6.321565991959786105e-07,6.483657427651062671e-07,6.645748863342339238e-07,6.807840299033615805e-07,6.969931734724892372e-07,7.132023170416168938e-07,7.294114606107445505e-07,7.456206041798722072e-07,7.618297477489998639e-07,7.780388913181275206e-07,7.942480348872551772e-07,8.104571784563828339e-07,8.266663220255104906e-07,8.428754655946381473e-07,8.590846091637658040e-07,8.752937527328934606e-07,8.915028963020211173e-07,9.077120398711487740e-07,9.239211834402764307e-07,9.401303270094040873e-07,9.563394705785318499e-07,9.725486141476596125e-07,9.887577577167873750e-07,1.004966901285915138e-06,1.021176044855042900e-06 +0.000000000000000000e+00,1.688415257990507293e-08,3.376830515981014586e-08,5.065245773971522210e-08,6.753661031962030496e-08,8.442076289952538781e-08,1.013049154794304707e-07,1.181890680593355535e-07,1.350732206392406364e-07,1.519573732191457325e-07,1.688415257990508286e-07,1.857256783789559247e-07,2.026098309588610207e-07,2.194939835387661168e-07,2.363781361186712129e-07,2.532622886985763090e-07,2.701464412784814316e-07,2.870305938583865541e-07,3.039147464382916767e-07,3.207988990181967993e-07,3.376830515981019218e-07,3.545672041780070444e-07,3.714513567579121669e-07,3.883355093378172895e-07,4.052196619177224121e-07,4.221038144976275346e-07,4.389879670775326572e-07,4.558721196574377797e-07,4.727562722373429023e-07,4.896404248172480249e-07,5.065245773971531474e-07,5.234087299770582700e-07,5.402928825569633926e-07,5.571770351368685151e-07,5.740611877167736377e-07,5.909453402966787602e-07,6.078294928765838828e-07,6.247136454564890054e-07,6.415977980363941279e-07,6.584819506162992505e-07,6.753661031962043730e-07,6.922502557761094956e-07,7.091344083560146182e-07,7.260185609359197407e-07,7.429027135158248633e-07,7.597868660957299858e-07,7.766710186756351084e-07,7.935551712555402310e-07,8.104393238354453535e-07,8.273234764153504761e-07,8.442076289952555986e-07,8.610917815751607212e-07,8.779759341550658438e-07,8.948600867349709663e-07,9.117442393148760889e-07,9.286283918947812115e-07,9.455125444746863340e-07,9.623966970545913507e-07,9.792808496344962615e-07,9.961650022144011723e-07,1.013049154794306083e-06,1.029933307374210994e-06,1.046817459954115905e-06,1.063701612534020816e-06 +0.000000000000000000e+00,1.513269558343450997e-08,3.026539116686901995e-08,4.539808675030353323e-08,6.053078233373805313e-08,7.566347791717257303e-08,9.079617350060709293e-08,1.059288690840416128e-07,1.210615646674761327e-07,1.361942602509106394e-07,1.513269558343451461e-07,1.664596514177796527e-07,1.815923470012141594e-07,1.967250425846486661e-07,2.118577381680831727e-07,2.269904337515176794e-07,2.421231293349522125e-07,2.572558249183867456e-07,2.723885205018212788e-07,2.875212160852558119e-07,3.026539116686903451e-07,3.177866072521248782e-07,3.329193028355594113e-07,3.480519984189939445e-07,3.631846940024284776e-07,3.783173895858630107e-07,3.934500851692975439e-07,4.085827807527320770e-07,4.237154763361666101e-07,4.388481719196011433e-07,4.539808675030356764e-07,4.691135630864702095e-07,4.842462586699047427e-07,4.993789542533392229e-07,5.145116498367737031e-07,5.296443454202081833e-07,5.447770410036426634e-07,5.599097365870771436e-07,5.750424321705116238e-07,5.901751277539461040e-07,6.053078233373805842e-07,6.204405189208150644e-07,6.355732145042495446e-07,6.507059100876840248e-07,6.658386056711185050e-07,6.809713012545529852e-07,6.961039968379874654e-07,7.112366924214219456e-07,7.263693880048564258e-07,7.415020835882909060e-07,7.566347791717253862e-07,7.717674747551598664e-07,7.869001703385943466e-07,8.020328659220288268e-07,8.171655615054633070e-07,8.322982570888977871e-07,8.474309526723322673e-07,8.625636482557667475e-07,8.776963438392012277e-07,8.928290394226357079e-07,9.079617350060701881e-07,9.230944305895046683e-07,9.382271261729391485e-07,9.533598217563736287e-07 +0.000000000000000000e+00,1.620914356913041284e-08,3.241828713826082569e-08,4.862743070739124184e-08,6.483657427652166461e-08,8.104571784565208738e-08,9.725486141478251015e-08,1.134640049839129329e-07,1.296731485530433557e-07,1.458822921221737917e-07,1.620914356913042277e-07,1.783005792604346637e-07,1.945097228295650997e-07,2.107188663986955357e-07,2.269280099678259717e-07,2.431371535369564077e-07,2.593462971060868702e-07,2.755554406752173327e-07,2.917645842443477952e-07,3.079737278134782576e-07,3.241828713826087201e-07,3.403920149517391826e-07,3.566011585208696451e-07,3.728103020900001075e-07,3.890194456591305700e-07,4.052285892282610325e-07,4.214377327973914950e-07,4.376468763665219574e-07,4.538560199356524199e-07,4.700651635047828824e-07,4.862743070739133449e-07,5.024834506430438603e-07,5.186925942121743757e-07,5.349017377813048911e-07,5.511108813504354065e-07,5.673200249195659219e-07,5.835291684886964373e-07,5.997383120578269528e-07,6.159474556269574682e-07,6.321565991960879836e-07,6.483657427652184990e-07,6.645748863343490144e-07,6.807840299034795298e-07,6.969931734726100452e-07,7.132023170417405607e-07,7.294114606108710761e-07,7.456206041800015915e-07,7.618297477491321069e-07,7.780388913182626223e-07,7.942480348873931377e-07,8.104571784565236531e-07,8.266663220256541686e-07,8.428754655947846840e-07,8.590846091639151994e-07,8.752937527330457148e-07,8.915028963021762302e-07,9.077120398713067456e-07,9.239211834404372610e-07,9.401303270095677765e-07,9.563394705786982919e-07,9.725486141478288073e-07,9.887577577169593227e-07,1.004966901286089838e-06,1.021176044855220354e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.483170562348292234e-09,6.966341124696584467e-09,1.044951168704487670e-08,1.393268224939316893e-08,1.741585281174145951e-08,2.089902337408975009e-08,2.438219393643804067e-08,2.786536449878633125e-08,3.134853506113462183e-08,3.483170562348291241e-08,3.831487618583120299e-08,4.179804674817949357e-08,4.528121731052778415e-08,4.876438787287607473e-08,5.224755843522436531e-08,5.573072899757265589e-08,5.921389955992094647e-08,6.269707012226924366e-08,6.618024068461754086e-08,6.966341124696583806e-08,7.314658180931413525e-08,7.662975237166243245e-08,8.011292293401072965e-08,8.359609349635902684e-08,8.707926405870732404e-08,9.056243462105562124e-08,9.404560518340391843e-08,9.752877574575221563e-08,1.010119463081005128e-07,1.044951168704488100e-07,1.079782874327971072e-07,1.114614579951454044e-07,1.149446285574937016e-07,1.184277991198419988e-07,1.219109696821903092e-07,1.253941402445386197e-07,1.288773108068869301e-07,1.323604813692352405e-07,1.358436519315835510e-07,1.393268224939318614e-07,1.428099930562801718e-07,1.462931636186284823e-07,1.497763341809767927e-07,1.532595047433251031e-07,1.567426753056734136e-07,1.602258458680217240e-07,1.637090164303700344e-07,1.671921869927183449e-07,1.706753575550666553e-07,1.741585281174149657e-07,1.776416986797632762e-07,1.811248692421115866e-07,1.846080398044598970e-07,1.880912103668082074e-07,1.915743809291565179e-07,1.950575514915048283e-07,1.985407220538531387e-07,2.020238926162014492e-07,2.055070631785497596e-07,2.089902337408980700e-07,2.124734043032463805e-07,2.159565748655946909e-07,2.194397454279430013e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.724258697100279691e-09,3.448517394200559381e-09,5.172776091300839278e-09,6.897034788401119589e-09,8.621293485501400727e-09,1.034555218260168187e-08,1.206981087970196300e-08,1.379406957680224414e-08,1.551832827390252528e-08,1.724258697100280807e-08,1.896684566810309086e-08,2.069110436520337366e-08,2.241536306230365645e-08,2.413962175940393924e-08,2.586388045650422203e-08,2.758813915360450483e-08,2.931239785070478762e-08,3.103665654780507041e-08,3.276091524490535651e-08,3.448517394200564261e-08,3.620943263910592872e-08,3.793369133620621482e-08,3.965795003330650092e-08,4.138220873040678702e-08,4.310646742750707312e-08,4.483072612460735922e-08,4.655498482170764532e-08,4.827924351880793142e-08,5.000350221590821753e-08,5.172776091300850363e-08,5.345201961010878973e-08,5.517627830720907583e-08,5.690053700430936193e-08,5.862479570140964803e-08,6.034905439850993413e-08,6.207331309561022023e-08,6.379757179271050633e-08,6.552183048981079244e-08,6.724608918691107854e-08,6.897034788401136464e-08,7.069460658111165074e-08,7.241886527821193684e-08,7.414312397531222294e-08,7.586738267241250904e-08,7.759164136951279514e-08,7.931590006661308125e-08,8.104015876371336735e-08,8.276441746081365345e-08,8.448867615791393955e-08,8.621293485501422565e-08,8.793719355211451175e-08,8.966145224921479785e-08,9.138571094631508395e-08,9.310996964341537006e-08,9.483422834051565616e-08,9.655848703761594226e-08,9.828274573471622836e-08,1.000070044318165145e-07,1.017312631289168006e-07,1.034555218260170867e-07,1.051797805231173728e-07,1.069040392202176589e-07,1.086282979173179450e-07 +0.000000000000000000e+00,3.316248906848428118e-09,6.632497813696856236e-09,9.948746720545284354e-09,1.326499562739371247e-08,1.658124453424214224e-08,1.989749344109057202e-08,2.321374234793900179e-08,2.652999125478743156e-08,2.984624016163586133e-08,3.316248906848429110e-08,3.647873797533272088e-08,3.979498688218115065e-08,4.311123578902958042e-08,4.642748469587801019e-08,4.974373360272643997e-08,5.305998250957486974e-08,5.637623141642329951e-08,5.969248032327173590e-08,6.300872923012016567e-08,6.632497813696859544e-08,6.964122704381702522e-08,7.295747595066545499e-08,7.627372485751388476e-08,7.958997376436231453e-08,8.290622267121074431e-08,8.622247157805917408e-08,8.953872048490760385e-08,9.285496939175603362e-08,9.617121829860446339e-08,9.948746720545289317e-08,1.028037161123013229e-07,1.061199650191497527e-07,1.094362139259981825e-07,1.127524628328466123e-07,1.160687117396950420e-07,1.193849606465434718e-07,1.227012095533919016e-07,1.260174584602403313e-07,1.293337073670887611e-07,1.326499562739371909e-07,1.359662051807856207e-07,1.392824540876340504e-07,1.425987029944824802e-07,1.459149519013309100e-07,1.492312008081793398e-07,1.525474497150277695e-07,1.558636986218761993e-07,1.591799475287246291e-07,1.624961964355730588e-07,1.658124453424214886e-07,1.691286942492699184e-07,1.724449431561183482e-07,1.757611920629667779e-07,1.790774409698152077e-07,1.823936898766636375e-07,1.857099387835120672e-07,1.890261876903604970e-07,1.923424365972089268e-07,1.956586855040573566e-07,1.989749344109057863e-07,2.022911833177542161e-07,2.056074322246026459e-07,2.089236811314510757e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.483170562349504467e-09,6.966341124699008934e-09,1.044951168704851299e-08,1.393268224939801621e-08,1.741585281174752109e-08,2.089902337409702597e-08,2.438219393644653085e-08,2.786536449879603574e-08,3.134853506114554062e-08,3.483170562349504219e-08,3.831487618584454376e-08,4.179804674819404533e-08,4.528121731054354690e-08,4.876438787289304847e-08,5.224755843524255005e-08,5.573072899759205162e-08,5.921389955994155319e-08,6.269707012229105476e-08,6.618024068464055633e-08,6.966341124699005791e-08,7.314658180933955948e-08,7.662975237168906105e-08,8.011292293403856262e-08,8.359609349638806419e-08,8.707926405873756576e-08,9.056243462108706734e-08,9.404560518343656891e-08,9.752877574578607048e-08,1.010119463081355721e-07,1.044951168704850736e-07,1.079782874328345752e-07,1.114614579951840768e-07,1.149446285575335783e-07,1.184277991198830799e-07,1.219109696822325815e-07,1.253941402445820831e-07,1.288773108069315846e-07,1.323604813692810862e-07,1.358436519316305878e-07,1.393268224939800893e-07,1.428099930563295909e-07,1.462931636186790925e-07,1.497763341810285941e-07,1.532595047433780956e-07,1.567426753057275972e-07,1.602258458680770988e-07,1.637090164304266003e-07,1.671921869927761019e-07,1.706753575551256035e-07,1.741585281174751051e-07,1.776416986798246066e-07,1.811248692421741082e-07,1.846080398045236098e-07,1.880912103668731113e-07,1.915743809292226129e-07,1.950575514915721145e-07,1.985407220539216161e-07,2.020238926162711176e-07,2.055070631786206192e-07,2.089902337409701208e-07,2.124734043033196223e-07,2.159565748656691239e-07,2.194397454280186255e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.724258697100867609e-09,3.448517394201735218e-09,5.172776091302602827e-09,6.897034788403470437e-09,8.621293485504338873e-09,1.034555218260520731e-08,1.206981087970607575e-08,1.379406957680694418e-08,1.551832827390781262e-08,1.724258697100868105e-08,1.896684566810954949e-08,2.069110436521041793e-08,2.241536306231128636e-08,2.413962175941215480e-08,2.586388045651302324e-08,2.758813915361389167e-08,2.931239785071476011e-08,3.103665654781563185e-08,3.276091524491650029e-08,3.448517394201736873e-08,3.620943263911823716e-08,3.793369133621910560e-08,3.965795003331997404e-08,4.138220873042084247e-08,4.310646742752171091e-08,4.483072612462257934e-08,4.655498482172344778e-08,4.827924351882431622e-08,5.000350221592518465e-08,5.172776091302605309e-08,5.345201961012692153e-08,5.517627830722778996e-08,5.690053700432865840e-08,5.862479570142952684e-08,6.034905439853039527e-08,6.207331309563126371e-08,6.379757179273213214e-08,6.552183048983300058e-08,6.724608918693386902e-08,6.897034788403473745e-08,7.069460658113560589e-08,7.241886527823647433e-08,7.414312397533734276e-08,7.586738267243821120e-08,7.759164136953907964e-08,7.931590006663994807e-08,8.104015876374081651e-08,8.276441746084168494e-08,8.448867615794255338e-08,8.621293485504342182e-08,8.793719355214429025e-08,8.966145224924515869e-08,9.138571094634602713e-08,9.310996964344689556e-08,9.483422834054776400e-08,9.655848703764863244e-08,9.828274573474950087e-08,1.000070044318503693e-07,1.017312631289512377e-07,1.034555218260521062e-07,1.051797805231529746e-07,1.069040392202538431e-07,1.086282979173547115e-07 +0.000000000000000000e+00,3.316248906849512138e-09,6.632497813699024276e-09,9.948746720548536828e-09,1.326499562739805021e-08,1.658124453424756193e-08,1.989749344109707366e-08,2.321374234794658538e-08,2.652999125479609710e-08,2.984624016164560883e-08,3.316248906849512386e-08,3.647873797534463890e-08,3.979498688219415393e-08,4.311123578904366896e-08,4.642748469589318400e-08,4.974373360274269903e-08,5.305998250959221406e-08,5.637623141644172909e-08,5.969248032329124413e-08,6.300872923014075916e-08,6.632497813699027419e-08,6.964122704383978923e-08,7.295747595068930426e-08,7.627372485753881929e-08,7.958997376438833433e-08,8.290622267123784936e-08,8.622247157808736439e-08,8.953872048493687943e-08,9.285496939178639446e-08,9.617121829863590949e-08,9.948746720548542453e-08,1.028037161123349396e-07,1.061199650191844546e-07,1.094362139260339696e-07,1.127524628328834847e-07,1.160687117397329997e-07,1.193849606465825147e-07,1.227012095534320298e-07,1.260174584602815448e-07,1.293337073671310598e-07,1.326499562739805749e-07,1.359662051808300899e-07,1.392824540876796049e-07,1.425987029945291200e-07,1.459149519013786350e-07,1.492312008082281500e-07,1.525474497150776651e-07,1.558636986219271801e-07,1.591799475287766951e-07,1.624961964356262102e-07,1.658124453424757252e-07,1.691286942493252402e-07,1.724449431561747553e-07,1.757611920630242703e-07,1.790774409698737853e-07,1.823936898767233004e-07,1.857099387835728154e-07,1.890261876904223304e-07,1.923424365972718455e-07,1.956586855041213605e-07,1.989749344109708755e-07,2.022911833178203906e-07,2.056074322246699056e-07,2.089236811315194206e-07 +0.000000000000000000e+00,7.192203040212079531e-09,1.438440608042415906e-08,2.157660912063623859e-08,2.876881216084831813e-08,3.596101520106039766e-08,4.315321824127247719e-08,5.034542128148455672e-08,5.753762432169663625e-08,6.472982736190871578e-08,7.192203040212079531e-08,7.911423344233287484e-08,8.630643648254495438e-08,9.349863952275703391e-08,1.006908425629691134e-07,1.078830456031811930e-07,1.150752486433932725e-07,1.222674516836053653e-07,1.294596547238174580e-07,1.366518577640295508e-07,1.438440608042416436e-07,1.510362638444537363e-07,1.582284668846658291e-07,1.654206699248779219e-07,1.726128729650900146e-07,1.798050760053021074e-07,1.869972790455142002e-07,1.941894820857262929e-07,2.013816851259383857e-07,2.085738881661504785e-07,2.157660912063625712e-07,2.229582942465746640e-07,2.301504972867867568e-07,2.373427003269988495e-07,2.445349033672109423e-07,2.517271064074230351e-07,2.589193094476351278e-07,2.661115124878472206e-07,2.733037155280593134e-07,2.804959185682714061e-07,2.876881216084834989e-07,2.948803246486955917e-07,3.020725276889076844e-07,3.092647307291197772e-07,3.164569337693318700e-07,3.236491368095439627e-07,3.308413398497560555e-07,3.380335428899681483e-07,3.452257459301802410e-07,3.524179489703923338e-07,3.596101520106044266e-07,3.668023550508165193e-07,3.739945580910286121e-07,3.811867611312407049e-07,3.883789641714527976e-07,3.955711672116648904e-07,4.027633702518769831e-07,4.099555732920890759e-07,4.171477763323011687e-07,4.243399793725132614e-07,4.315321824127253542e-07,4.387243854529374470e-07,4.459165884931495397e-07,4.531087915333616325e-07 +0.000000000000000000e+00,5.331791858680134757e-09,1.066358371736026951e-08,1.599537557604040510e-08,2.132716743472054234e-08,2.665895929340067958e-08,3.199075115208081681e-08,3.732254301076095074e-08,4.265433486944108467e-08,4.798612672812121860e-08,5.331791858680135253e-08,5.864971044548148646e-08,6.398150230416162039e-08,6.931329416284175432e-08,7.464508602152188825e-08,7.997687788020202218e-08,8.530866973888215611e-08,9.064046159756229004e-08,9.597225345624242397e-08,1.013040453149225579e-07,1.066358371736026918e-07,1.119676290322828258e-07,1.172994208909629597e-07,1.226312127496430936e-07,1.279630046083232143e-07,1.332947964670033350e-07,1.386265883256834557e-07,1.439583801843635764e-07,1.492901720430436971e-07,1.546219639017238178e-07,1.599537557604039385e-07,1.652855476190840592e-07,1.706173394777641799e-07,1.759491313364443006e-07,1.812809231951244213e-07,1.866127150538045420e-07,1.919445069124846627e-07,1.972762987711647834e-07,2.026080906298449040e-07,2.079398824885250247e-07,2.132716743472051454e-07,2.186034662058852661e-07,2.239352580645653868e-07,2.292670499232455075e-07,2.345988417819256282e-07,2.399306336406057489e-07,2.452624254992858696e-07,2.505942173579659903e-07,2.559260092166461110e-07,2.612578010753262317e-07,2.665895929340063524e-07,2.719213847926864731e-07,2.772531766513665938e-07,2.825849685100467145e-07,2.879167603687268352e-07,2.932485522274069559e-07,2.985803440860870766e-07,3.039121359447671973e-07,3.092439278034473179e-07,3.145757196621274386e-07,3.199075115208075593e-07,3.252393033794876800e-07,3.305710952381678007e-07,3.359028870968479214e-07 +0.000000000000000000e+00,6.828030907046244496e-09,1.365606181409248899e-08,2.048409272113873432e-08,2.731212362818498129e-08,3.414015453523122827e-08,4.096818544227747525e-08,4.779621634932372223e-08,5.462424725636996921e-08,6.145227816341621618e-08,6.828030907046245654e-08,7.510833997750869691e-08,8.193637088455493727e-08,8.876440179160117763e-08,9.559243269864741799e-08,1.024204636056936583e-07,1.092484945127398987e-07,1.160765254197861391e-07,1.229045563268323794e-07,1.297325872338786066e-07,1.365606181409248337e-07,1.433886490479710608e-07,1.502166799550172879e-07,1.570447108620635151e-07,1.638727417691097422e-07,1.707007726761559693e-07,1.775288035832021964e-07,1.843568344902484236e-07,1.911848653972946507e-07,1.980128963043408778e-07,2.048409272113871049e-07,2.116689581184333321e-07,2.184969890254795592e-07,2.253250199325257863e-07,2.321530508395720134e-07,2.389810817466182406e-07,2.458091126536644942e-07,2.526371435607107478e-07,2.594651744677570014e-07,2.662932053748032549e-07,2.731212362818495085e-07,2.799492671888957621e-07,2.867772980959420157e-07,2.936053290029882693e-07,3.004333599100345229e-07,3.072613908170807765e-07,3.140894217241270301e-07,3.209174526311732837e-07,3.277454835382195373e-07,3.345735144452657909e-07,3.414015453523120445e-07,3.482295762593582981e-07,3.550576071664045517e-07,3.618856380734508053e-07,3.687136689804970589e-07,3.755416998875433125e-07,3.823697307945895661e-07,3.891977617016358197e-07,3.960257926086820733e-07,4.028538235157283269e-07,4.096818544227745805e-07,4.165098853298208340e-07,4.233379162368670876e-07,4.301659471439133412e-07 +0.000000000000000000e+00,7.192203040214456848e-09,1.438440608042891370e-08,2.157660912064337220e-08,2.876881216085783070e-08,3.596101520107228921e-08,4.315321824128674440e-08,5.034542128150119959e-08,5.753762432171565479e-08,6.472982736193011660e-08,7.192203040214457841e-08,7.911423344235904022e-08,8.630643648257350203e-08,9.349863952278796384e-08,1.006908425630024257e-07,1.078830456032168875e-07,1.150752486434313493e-07,1.222674516836458111e-07,1.294596547238602861e-07,1.366518577640747612e-07,1.438440608042892362e-07,1.510362638445037113e-07,1.582284668847181863e-07,1.654206699249326614e-07,1.726128729651471364e-07,1.798050760053616115e-07,1.869972790455760865e-07,1.941894820857905616e-07,2.013816851260050366e-07,2.085738881662195116e-07,2.157660912064339867e-07,2.229582942466484617e-07,2.301504972868629368e-07,2.373427003270774118e-07,2.445349033672918869e-07,2.517271064075063619e-07,2.589193094477208370e-07,2.661115124879353120e-07,2.733037155281497871e-07,2.804959185683642621e-07,2.876881216085787372e-07,2.948803246487932122e-07,3.020725276890076872e-07,3.092647307292221623e-07,3.164569337694366373e-07,3.236491368096511124e-07,3.308413398498655874e-07,3.380335428900800625e-07,3.452257459302945375e-07,3.524179489705090126e-07,3.596101520107234876e-07,3.668023550509379627e-07,3.739945580911524377e-07,3.811867611313669128e-07,3.883789641715813878e-07,3.955711672117958629e-07,4.027633702520103379e-07,4.099555732922248129e-07,4.171477763324392880e-07,4.243399793726537630e-07,4.315321824128682381e-07,4.387243854530827131e-07,4.459165884932971882e-07,4.531087915335116632e-07 +0.000000000000000000e+00,5.331791858681952900e-09,1.066358371736390580e-08,1.599537557604585787e-08,2.132716743472780829e-08,2.665895929340975871e-08,3.199075115209170913e-08,3.732254301077365624e-08,4.265433486945560335e-08,4.798612672813755046e-08,5.331791858681949757e-08,5.864971044550144468e-08,6.398150230418339179e-08,6.931329416286533890e-08,7.464508602154728601e-08,7.997687788022923312e-08,8.530866973891118023e-08,9.064046159759312734e-08,9.597225345627507445e-08,1.013040453149570216e-07,1.066358371736389687e-07,1.119676290323209158e-07,1.172994208910028629e-07,1.226312127496848100e-07,1.279630046083667571e-07,1.332947964670487042e-07,1.386265883257306513e-07,1.439583801844125984e-07,1.492901720430945455e-07,1.546219639017764927e-07,1.599537557604584398e-07,1.652855476191403869e-07,1.706173394778223340e-07,1.759491313365042811e-07,1.812809231951862282e-07,1.866127150538681753e-07,1.919445069125501224e-07,1.972762987712320695e-07,2.026080906299140166e-07,2.079398824885959638e-07,2.132716743472779109e-07,2.186034662059598580e-07,2.239352580646418051e-07,2.292670499233237522e-07,2.345988417820056993e-07,2.399306336406876464e-07,2.452624254993696200e-07,2.505942173580515936e-07,2.559260092167335671e-07,2.612578010754155407e-07,2.665895929340975143e-07,2.719213847927794879e-07,2.772531766514614615e-07,2.825849685101434350e-07,2.879167603688254086e-07,2.932485522275073822e-07,2.985803440861893558e-07,3.039121359448713294e-07,3.092439278035533029e-07,3.145757196622352765e-07,3.199075115209172501e-07,3.252393033795992237e-07,3.305710952382811973e-07,3.359028870969631708e-07 +0.000000000000000000e+00,6.828030907048295077e-09,1.365606181409659015e-08,2.048409272114488523e-08,2.731212362819318031e-08,3.414015453524147208e-08,4.096818544228976385e-08,4.779621634933805561e-08,5.462424725638634738e-08,6.145227816343463915e-08,6.828030907048293092e-08,7.510833997753122269e-08,8.193637088457951446e-08,8.876440179162780622e-08,9.559243269867609799e-08,1.024204636057243898e-07,1.092484945127726815e-07,1.160765254198209733e-07,1.229045563268692518e-07,1.297325872339175171e-07,1.365606181409657824e-07,1.433886490480140477e-07,1.502166799550623130e-07,1.570447108621105783e-07,1.638727417691588436e-07,1.707007726762071089e-07,1.775288035832553742e-07,1.843568344903036395e-07,1.911848653973519048e-07,1.980128963044001701e-07,2.048409272114484354e-07,2.116689581184967007e-07,2.184969890255449660e-07,2.253250199325932313e-07,2.321530508396414966e-07,2.389810817466897619e-07,2.458091126537380272e-07,2.526371435607862925e-07,2.594651744678345578e-07,2.662932053748828231e-07,2.731212362819310884e-07,2.799492671889793537e-07,2.867772980960276190e-07,2.936053290030758843e-07,3.004333599101241496e-07,3.072613908171724149e-07,3.140894217242206802e-07,3.209174526312689455e-07,3.277454835383172108e-07,3.345735144453654761e-07,3.414015453524137414e-07,3.482295762594620067e-07,3.550576071665102720e-07,3.618856380735585373e-07,3.687136689806068026e-07,3.755416998876550679e-07,3.823697307947033332e-07,3.891977617017515985e-07,3.960257926087998638e-07,4.028538235158481291e-07,4.096818544228963944e-07,4.165098853299446597e-07,4.233379162369929250e-07,4.301659471440411903e-07 +0.000000000000000000e+00,1.103427322732296096e-08,2.206854645464592191e-08,3.310281968196888453e-08,4.413709290929185045e-08,5.517136613661481637e-08,6.620563936393778229e-08,7.723991259126075483e-08,8.827418581858372736e-08,9.930845904590669990e-08,1.103427322732296724e-07,1.213770055005526450e-07,1.324112787278756175e-07,1.434455519551985901e-07,1.544798251825215626e-07,1.655140984098445351e-07,1.765483716371675077e-07,1.875826448644904802e-07,1.986169180918134527e-07,2.096511913191364253e-07,2.206854645464593978e-07,2.317197377737823704e-07,2.427540110011053429e-07,2.537882842284283419e-07,2.648225574557513409e-07,2.758568306830743399e-07,2.868911039103973389e-07,2.979253771377203379e-07,3.089596503650433369e-07,3.199939235923663359e-07,3.310281968196893350e-07,3.420624700470123340e-07,3.530967432743353330e-07,3.641310165016583320e-07,3.751652897289813310e-07,3.861995629563043300e-07,3.972338361836273290e-07,4.082681094109503280e-07,4.193023826382733270e-07,4.303366558655963260e-07,4.413709290929193250e-07,4.524052023202423240e-07,4.634394755475653230e-07,4.744737487748883221e-07,4.855080220022113211e-07,4.965422952295343201e-07,5.075765684568573191e-07,5.186108416841803181e-07,5.296451149115033171e-07,5.406793881388263161e-07,5.517136613661493151e-07,5.627479345934723141e-07,5.737822078207953131e-07,5.848164810481183121e-07,5.958507542754413111e-07,6.068850275027643101e-07,6.179193007300873092e-07,6.289535739574103082e-07,6.399878471847333072e-07,6.510221204120563062e-07,6.620563936393793052e-07,6.730906668667023042e-07,6.841249400940253032e-07,6.951592133213483022e-07 +0.000000000000000000e+00,9.100054830478887150e-09,1.820010966095777430e-08,2.730016449143666310e-08,3.640021932191555522e-08,4.550027415239444733e-08,5.460032898287333944e-08,6.370038381335222494e-08,7.280043864383111043e-08,8.190049347430999593e-08,9.100054830478888142e-08,1.001006031352677669e-07,1.092006579657466524e-07,1.183007127962255379e-07,1.274007676267044234e-07,1.365008224571833089e-07,1.456008772876621944e-07,1.547009321181410799e-07,1.638009869486199654e-07,1.729010417790988509e-07,1.820010966095777364e-07,1.911011514400566219e-07,2.002012062705355074e-07,2.093012611010143929e-07,2.184013159314932784e-07,2.275013707619721639e-07,2.366014255924510494e-07,2.457014804229299084e-07,2.548015352534087939e-07,2.639015900838876794e-07,2.730016449143665649e-07,2.821016997448454504e-07,2.912017545753243359e-07,3.003018094058032213e-07,3.094018642362821068e-07,3.185019190667609923e-07,3.276019738972398778e-07,3.367020287277187633e-07,3.458020835581976488e-07,3.549021383886765343e-07,3.640021932191554198e-07,3.731022480496343053e-07,3.822023028801131908e-07,3.913023577105920763e-07,4.004024125410709618e-07,4.095024673715498473e-07,4.186025222020287328e-07,4.277025770325076183e-07,4.368026318629865038e-07,4.459026866934653893e-07,4.550027415239442748e-07,4.641027963544231603e-07,4.732028511849020458e-07,4.823029060153809313e-07,4.914029608458598168e-07,5.005030156763387022e-07,5.096030705068175877e-07,5.187031253372964732e-07,5.278031801677753587e-07,5.369032349982542442e-07,5.460032898287331297e-07,5.551033446592120152e-07,5.642033994896909007e-07,5.733034543201697862e-07 +0.000000000000000000e+00,1.042833696354640256e-08,2.085667392709280512e-08,3.128501089063921099e-08,4.171334785418561685e-08,5.214168481773202272e-08,6.257002178127842197e-08,7.299835874482482122e-08,8.342669570837122047e-08,9.385503267191761973e-08,1.042833696354640190e-07,1.147117065990104182e-07,1.251400435625568175e-07,1.355683805261032167e-07,1.459967174896496160e-07,1.564250544531960152e-07,1.668533914167424145e-07,1.772817283802888137e-07,1.877100653438352130e-07,1.981384023073816122e-07,2.085667392709280115e-07,2.189950762344744107e-07,2.294234131980208100e-07,2.398517501615672092e-07,2.502800871251135820e-07,2.607084240886599548e-07,2.711367610522063276e-07,2.815650980157527004e-07,2.919934349792990731e-07,3.024217719428454459e-07,3.128501089063918187e-07,3.232784458699381915e-07,3.337067828334845643e-07,3.441351197970309370e-07,3.545634567605773098e-07,3.649917937241236826e-07,3.754201306876700554e-07,3.858484676512164282e-07,3.962768046147628009e-07,4.067051415783091737e-07,4.171334785418555465e-07,4.275618155054019193e-07,4.379901524689482921e-07,4.484184894324946649e-07,4.588468263960410376e-07,4.692751633595874104e-07,4.797035003231337832e-07,4.901318372866801560e-07,5.005601742502265288e-07,5.109885112137729015e-07,5.214168481773192743e-07,5.318451851408656471e-07,5.422735221044120199e-07,5.527018590679583927e-07,5.631301960315047654e-07,5.735585329950511382e-07,5.839868699585975110e-07,5.944152069221438838e-07,6.048435438856902566e-07,6.152718808492366293e-07,6.257002178127830021e-07,6.361285547763293749e-07,6.465568917398757477e-07,6.569852287034221205e-07 +0.000000000000000000e+00,1.103427322732623163e-08,2.206854645465246326e-08,3.310281968197869820e-08,4.413709290930493314e-08,5.517136613663116807e-08,6.620563936395739639e-08,7.723991259128362471e-08,8.827418581860985304e-08,9.930845904593608136e-08,1.103427322732623097e-07,1.213770055005885380e-07,1.324112787279147663e-07,1.434455519552409946e-07,1.544798251825672230e-07,1.655140984098934513e-07,1.765483716372196796e-07,1.875826448645459079e-07,1.986169180918721362e-07,2.096511913191983646e-07,2.206854645465245929e-07,2.317197377738508212e-07,2.427540110011770231e-07,2.537882842285031984e-07,2.648225574558293738e-07,2.758568306831555492e-07,2.868911039104817246e-07,2.979253771378079000e-07,3.089596503651340753e-07,3.199939235924602507e-07,3.310281968197864261e-07,3.420624700471126015e-07,3.530967432744387769e-07,3.641310165017649522e-07,3.751652897290911276e-07,3.861995629564173030e-07,3.972338361837434784e-07,4.082681094110696538e-07,4.193023826383958292e-07,4.303366558657220045e-07,4.413709290930481799e-07,4.524052023203743553e-07,4.634394755477005307e-07,4.744737487750267061e-07,4.855080220023528814e-07,4.965422952296790568e-07,5.075765684570052322e-07,5.186108416843314076e-07,5.296451149116575830e-07,5.406793881389837583e-07,5.517136613663099337e-07,5.627479345936361091e-07,5.737822078209622845e-07,5.848164810482884599e-07,5.958507542756146353e-07,6.068850275029408106e-07,6.179193007302669860e-07,6.289535739575931614e-07,6.399878471849193368e-07,6.510221204122455122e-07,6.620563936395716875e-07,6.730906668668978629e-07,6.841249400942240383e-07,6.951592133215502137e-07 +0.000000000000000000e+00,9.100054830481726034e-09,1.820010966096345207e-08,2.730016449144517976e-08,3.640021932192691075e-08,4.550027415240864175e-08,5.460032898289037275e-08,6.370038381337210374e-08,7.280043864385383474e-08,8.190049347433556574e-08,9.100054830481729673e-08,1.001006031352990277e-07,1.092006579657807587e-07,1.183007127962624897e-07,1.274007676267442075e-07,1.365008224572259252e-07,1.456008772877076430e-07,1.547009321181893608e-07,1.638009869486710785e-07,1.729010417791527963e-07,1.820010966096345141e-07,1.911011514401162318e-07,2.002012062705979496e-07,2.093012611010796673e-07,2.184013159315613851e-07,2.275013707620431029e-07,2.366014255925248206e-07,2.457014804230065649e-07,2.548015352534883091e-07,2.639015900839700533e-07,2.730016449144517976e-07,2.821016997449335418e-07,2.912017545754152860e-07,3.003018094058970302e-07,3.094018642363787745e-07,3.185019190668605187e-07,3.276019738973422629e-07,3.367020287278240072e-07,3.458020835583057514e-07,3.549021383887874956e-07,3.640021932192692399e-07,3.731022480497509841e-07,3.822023028802327283e-07,3.913023577107144726e-07,4.004024125411962168e-07,4.095024673716779610e-07,4.186025222021597053e-07,4.277025770326414495e-07,4.368026318631231937e-07,4.459026866936049380e-07,4.550027415240866822e-07,4.641027963545684264e-07,4.732028511850501706e-07,4.823029060155319149e-07,4.914029608460136591e-07,5.005030156764954033e-07,5.096030705069771476e-07,5.187031253374588918e-07,5.278031801679406360e-07,5.369032349984223803e-07,5.460032898289041245e-07,5.551033446593858687e-07,5.642033994898676130e-07,5.733034543203493572e-07 +0.000000000000000000e+00,1.042833696354927288e-08,2.085667392709854575e-08,3.128501089064782028e-08,4.171334785419709812e-08,5.214168481774637596e-08,6.257002178129565380e-08,7.299835874484493826e-08,8.342669570839422271e-08,9.385503267194350717e-08,1.042833696354927916e-07,1.147117065990420761e-07,1.251400435625913605e-07,1.355683805261406450e-07,1.459967174896899295e-07,1.564250544532392139e-07,1.668533914167884984e-07,1.772817283803377828e-07,1.877100653438870673e-07,1.981384023074363517e-07,2.085667392709856362e-07,2.189950762345349206e-07,2.294234131980842051e-07,2.398517501616334896e-07,2.502800871251827740e-07,2.607084240887320585e-07,2.711367610522813429e-07,2.815650980158306274e-07,2.919934349793799118e-07,3.024217719429291963e-07,3.128501089064784808e-07,3.232784458700277652e-07,3.337067828335770497e-07,3.441351197971263341e-07,3.545634567606756186e-07,3.649917937242249030e-07,3.754201306877741875e-07,3.858484676513234720e-07,3.962768046148727564e-07,4.067051415784220409e-07,4.171334785419713253e-07,4.275618155055206098e-07,4.379901524690698942e-07,4.484184894326191787e-07,4.588468263961684631e-07,4.692751633597177476e-07,4.797035003232669791e-07,4.901318372868162106e-07,5.005601742503654422e-07,5.109885112139146737e-07,5.214168481774639052e-07,5.318451851410131367e-07,5.422735221045623682e-07,5.527018590681115997e-07,5.631301960316608313e-07,5.735585329952100628e-07,5.839868699587592943e-07,5.944152069223085258e-07,6.048435438858577573e-07,6.152718808494069888e-07,6.257002178129562204e-07,6.361285547765054519e-07,6.465568917400546834e-07,6.569852287036039149e-07 +0.000000000000000000e+00,1.497160529000190920e-08,2.994321058000381841e-08,4.491481587000573092e-08,5.988642116000765005e-08,7.485802645000956918e-08,8.982963174001148831e-08,1.048012370300134074e-07,1.197728423200153266e-07,1.347444476100172325e-07,1.497160529000191384e-07,1.646876581900210443e-07,1.796592634800229502e-07,1.946308687700248561e-07,2.096024740600267619e-07,2.245740793500286678e-07,2.395456846400306002e-07,2.545172899300325326e-07,2.694888952200344649e-07,2.844605005100363973e-07,2.994321058000383297e-07,3.144037110900402620e-07,3.293753163800421944e-07,3.443469216700441268e-07,3.593185269600460591e-07,3.742901322500479915e-07,3.892617375400499239e-07,4.042333428300518562e-07,4.192049481200537886e-07,4.341765534100557210e-07,4.491481587000576533e-07,4.641197639900595857e-07,4.790913692800615181e-07,4.940629745700634504e-07,5.090345798600653828e-07,5.240061851500673152e-07,5.389777904400692475e-07,5.539493957300711799e-07,5.689210010200731123e-07,5.838926063100750446e-07,5.988642116000769770e-07,6.138358168900789093e-07,6.288074221800808417e-07,6.437790274700827741e-07,6.587506327600847064e-07,6.737222380500866388e-07,6.886938433400885712e-07,7.036654486300905035e-07,7.186370539200924359e-07,7.336086592100943683e-07,7.485802645000963006e-07,7.635518697900982330e-07,7.785234750801001654e-07,7.934950803701020977e-07,8.084666856601040301e-07,8.234382909501059625e-07,8.384098962401078948e-07,8.533815015301098272e-07,8.683531068201117596e-07,8.833247121101136919e-07,8.982963174001156243e-07,9.132679226901175567e-07,9.282395279801194890e-07,9.432111332701214214e-07 +0.000000000000000000e+00,1.298883602881069945e-08,2.597767205762139890e-08,3.896650808643209836e-08,5.195534411524279781e-08,6.494418014405349726e-08,7.793301617286419671e-08,9.092185220167489617e-08,1.039106882304855956e-07,1.168995242592962951e-07,1.298883602881069945e-07,1.428771963169177072e-07,1.558660323457284199e-07,1.688548683745391326e-07,1.818437044033498453e-07,1.948325404321605580e-07,2.078213764609712706e-07,2.208102124897819833e-07,2.337990485185926960e-07,2.467878845474034087e-07,2.597767205762141479e-07,2.727655566050248870e-07,2.857543926338356262e-07,2.987432286626463653e-07,3.117320646914571045e-07,3.247209007202678436e-07,3.377097367490785828e-07,3.506985727778893220e-07,3.636874088067000611e-07,3.766762448355108003e-07,3.896650808643215394e-07,4.026539168931322786e-07,4.156427529219430177e-07,4.286315889507537569e-07,4.416204249795644961e-07,4.546092610083752352e-07,4.675980970371859744e-07,4.805869330659967135e-07,4.935757690948074527e-07,5.065646051236181918e-07,5.195534411524289310e-07,5.325422771812396702e-07,5.455311132100504093e-07,5.585199492388611485e-07,5.715087852676718876e-07,5.844976212964826268e-07,5.974864573252933659e-07,6.104752933541041051e-07,6.234641293829148443e-07,6.364529654117255834e-07,6.494418014405363226e-07,6.624306374693470617e-07,6.754194734981578009e-07,6.884083095269685400e-07,7.013971455557792792e-07,7.143859815845900184e-07,7.273748176134007575e-07,7.403636536422114967e-07,7.533524896710222358e-07,7.663413256998329750e-07,7.793301617286437141e-07,7.923189977574544533e-07,8.053078337862651925e-07,8.182966698150759316e-07 +0.000000000000000000e+00,1.410482844236217519e-08,2.820965688472435038e-08,4.231448532708652722e-08,5.641931376944870737e-08,7.052414221181088753e-08,8.462897065417306768e-08,9.873379909653524783e-08,1.128386275388974280e-07,1.269434559812595949e-07,1.410482844236217486e-07,1.551531128659839023e-07,1.692579413083460559e-07,1.833627697507082096e-07,1.974675981930703633e-07,2.115724266354325170e-07,2.256772550777946707e-07,2.397820835201568244e-07,2.538869119625189780e-07,2.679917404048811317e-07,2.820965688472432854e-07,2.962013972896054391e-07,3.103062257319675928e-07,3.244110541743297465e-07,3.385158826166919001e-07,3.526207110590540538e-07,3.667255395014162075e-07,3.808303679437783612e-07,3.949351963861405149e-07,4.090400248285026685e-07,4.231448532708648222e-07,4.372496817132269759e-07,4.513545101555891296e-07,4.654593385979512833e-07,4.795641670403134370e-07,4.936689954826755906e-07,5.077738239250377443e-07,5.218786523673998980e-07,5.359834808097620517e-07,5.500883092521242054e-07,5.641931376944863591e-07,5.782979661368485127e-07,5.924027945792106664e-07,6.065076230215728201e-07,6.206124514639349738e-07,6.347172799062971275e-07,6.488221083486592811e-07,6.629269367910214348e-07,6.770317652333835885e-07,6.911365936757457422e-07,7.052414221181078959e-07,7.193462505604700496e-07,7.334510790028322032e-07,7.475559074451943569e-07,7.616607358875565106e-07,7.757655643299186643e-07,7.898703927722808180e-07,8.039752212146429717e-07,8.180800496570051253e-07,8.321848780993672790e-07,8.462897065417294327e-07,8.603945349840915864e-07,8.744993634264537401e-07,8.886041918688158937e-07 +0.000000000000000000e+00,1.497160529000575725e-08,2.994321058001151450e-08,4.491481587001727175e-08,5.988642116002302899e-08,7.485802645002878624e-08,8.982963174003454349e-08,1.048012370300403007e-07,1.197728423200460580e-07,1.347444476100518020e-07,1.497160529000575460e-07,1.646876581900632900e-07,1.796592634800690340e-07,1.946308687700747781e-07,2.096024740600805221e-07,2.245740793500862661e-07,2.395456846400920101e-07,2.545172899300977541e-07,2.694888952201034981e-07,2.844605005101092421e-07,2.994321058001149862e-07,3.144037110901207302e-07,3.293753163801264742e-07,3.443469216701322182e-07,3.593185269601379622e-07,3.742901322501437062e-07,3.892617375401494502e-07,4.042333428301551943e-07,4.192049481201609383e-07,4.341765534101666823e-07,4.491481587001724263e-07,4.641197639901781703e-07,4.790913692801839143e-07,4.940629745701896583e-07,5.090345798601954023e-07,5.240061851502011464e-07,5.389777904402068904e-07,5.539493957302126344e-07,5.689210010202183784e-07,5.838926063102241224e-07,5.988642116002298664e-07,6.138358168902356104e-07,6.288074221802413545e-07,6.437790274702470985e-07,6.587506327602528425e-07,6.737222380502585865e-07,6.886938433402643305e-07,7.036654486302700745e-07,7.186370539202758185e-07,7.336086592102815626e-07,7.485802645002873066e-07,7.635518697902930506e-07,7.785234750802987946e-07,7.934950803703045386e-07,8.084666856603102826e-07,8.234382909503160266e-07,8.384098962403217707e-07,8.533815015303275147e-07,8.683531068203332587e-07,8.833247121103390027e-07,8.982963174003447467e-07,9.132679226903504907e-07,9.282395279803562347e-07,9.432111332703619787e-07 +0.000000000000000000e+00,1.298883602881428280e-08,2.597767205762856560e-08,3.896650808644284509e-08,5.195534411525712458e-08,6.494418014407140407e-08,7.793301617288569017e-08,9.092185220169997628e-08,1.039106882305142624e-07,1.168995242593285485e-07,1.298883602881428346e-07,1.428771963169571207e-07,1.558660323457714068e-07,1.688548683745856929e-07,1.818437044033999790e-07,1.948325404322142651e-07,2.078213764610285512e-07,2.208102124898428374e-07,2.337990485186571235e-07,2.467878845474713831e-07,2.597767205762856163e-07,2.727655566050998494e-07,2.857543926339140826e-07,2.987432286627283158e-07,3.117320646915425489e-07,3.247209007203567821e-07,3.377097367491710153e-07,3.506985727779852484e-07,3.636874088067994816e-07,3.766762448356137148e-07,3.896650808644279479e-07,4.026539168932421811e-07,4.156427529220564143e-07,4.286315889508706474e-07,4.416204249796848806e-07,4.546092610084991138e-07,4.675980970373133470e-07,4.805869330661275801e-07,4.935757690949418133e-07,5.065646051237560465e-07,5.195534411525702796e-07,5.325422771813845128e-07,5.455311132101987460e-07,5.585199492390129791e-07,5.715087852678272123e-07,5.844976212966414455e-07,5.974864573254556786e-07,6.104752933542699118e-07,6.234641293830841450e-07,6.364529654118983781e-07,6.494418014407126113e-07,6.624306374695268445e-07,6.754194734983410776e-07,6.884083095271553108e-07,7.013971455559695440e-07,7.143859815847837771e-07,7.273748176135980103e-07,7.403636536424122435e-07,7.533524896712264766e-07,7.663413257000407098e-07,7.793301617288549430e-07,7.923189977576691761e-07,8.053078337864834093e-07,8.182966698152976425e-07 +0.000000000000000000e+00,1.410482844236577508e-08,2.820965688473155016e-08,4.231448532709732689e-08,5.641931376946310693e-08,7.052414221182888698e-08,8.462897065419466702e-08,9.873379909656044706e-08,1.128386275389262271e-07,1.269434559812919939e-07,1.410482844236577475e-07,1.551531128660235011e-07,1.692579413083892546e-07,1.833627697507550082e-07,1.974675981931207618e-07,2.115724266354865153e-07,2.256772550778522689e-07,2.397820835202180225e-07,2.538869119625837761e-07,2.679917404049495296e-07,2.820965688473152832e-07,2.962013972896810368e-07,3.103062257320467904e-07,3.244110541744125439e-07,3.385158826167782975e-07,3.526207110591440511e-07,3.667255395015098046e-07,3.808303679438755582e-07,3.949351963862413118e-07,4.090400248286070654e-07,4.231448532709728189e-07,4.372496817133385725e-07,4.513545101557043261e-07,4.654593385980700796e-07,4.795641670404358332e-07,4.936689954828015868e-07,5.077738239251673404e-07,5.218786523675330939e-07,5.359834808098988475e-07,5.500883092522646011e-07,5.641931376946303547e-07,5.782979661369961082e-07,5.924027945793618618e-07,6.065076230217276154e-07,6.206124514640933689e-07,6.347172799064591225e-07,6.488221083488248761e-07,6.629269367911906297e-07,6.770317652335563832e-07,6.911365936759221368e-07,7.052414221182878904e-07,7.193462505606536440e-07,7.334510790030193975e-07,7.475559074453851511e-07,7.616607358877509047e-07,7.757655643301166582e-07,7.898703927724824118e-07,8.039752212148481654e-07,8.180800496572139190e-07,8.321848780995796725e-07,8.462897065419454261e-07,8.603945349843111797e-07,8.744993634266769332e-07,8.886041918690426868e-07 +0.000000000000000000e+00,1.900214686733549046e-08,3.800429373467098092e-08,5.700644060200646807e-08,7.600858746934194861e-08,9.501073433667742914e-08,1.140128812040129097e-07,1.330150280713483902e-07,1.520171749386838707e-07,1.710193218060193513e-07,1.900214686733548318e-07,2.090236155406903124e-07,2.280257624080257929e-07,2.470279092753612470e-07,2.660300561426967275e-07,2.850322030100322080e-07,3.040343498773676886e-07,3.230364967447031691e-07,3.420386436120386496e-07,3.610407904793741302e-07,3.800429373467096107e-07,3.990450842140450912e-07,4.180472310813805718e-07,4.370493779487160523e-07,4.560515248160515328e-07,4.750536716833870134e-07,4.940558185507224939e-07,5.130579654180579744e-07,5.320601122853934550e-07,5.510622591527289355e-07,5.700644060200644160e-07,5.890665528873998966e-07,6.080686997547353771e-07,6.270708466220708576e-07,6.460729934894063382e-07,6.650751403567418187e-07,6.840772872240772993e-07,7.030794340914127798e-07,7.220815809587482603e-07,7.410837278260837409e-07,7.600858746934192214e-07,7.790880215607547019e-07,7.980901684280901825e-07,8.170923152954256630e-07,8.360944621627611435e-07,8.550966090300966241e-07,8.740987558974321046e-07,8.931009027647675851e-07,9.121030496321030657e-07,9.311051964994385462e-07,9.501073433667740267e-07,9.691094902341094014e-07,9.881116371014447761e-07,1.007113783968780151e-06,1.026115930836115525e-06,1.045118077703450900e-06,1.064120224570786275e-06,1.083122371438121649e-06,1.102124518305457024e-06,1.121126665172792399e-06,1.140128812040127773e-06,1.159130958907463148e-06,1.178133105774798523e-06,1.197135252642133897e-06 +0.000000000000000000e+00,1.697377776600012294e-08,3.394755553200024588e-08,5.092133329800036551e-08,6.789511106400047853e-08,8.486888883000059154e-08,1.018426665960007046e-07,1.188164443620008176e-07,1.357902221280009306e-07,1.527639998940010304e-07,1.697377776600011301e-07,1.867115554260012299e-07,2.036853331920013297e-07,2.206591109580014295e-07,2.376328887240015293e-07,2.546066664900016290e-07,2.715804442560017024e-07,2.885542220220017757e-07,3.055279997880018490e-07,3.225017775540019223e-07,3.394755553200019956e-07,3.564493330860020689e-07,3.734231108520021422e-07,3.903968886180022155e-07,4.073706663840022888e-07,4.243444441500023621e-07,4.413182219160024354e-07,4.582919996820025088e-07,4.752657774480025821e-07,4.922395552140026024e-07,5.092133329800026228e-07,5.261871107460026432e-07,5.431608885120026635e-07,5.601346662780026839e-07,5.771084440440027043e-07,5.940822218100027247e-07,6.110559995760027450e-07,6.280297773420027654e-07,6.450035551080027858e-07,6.619773328740028061e-07,6.789511106400028265e-07,6.959248884060028469e-07,7.128986661720028673e-07,7.298724439380028876e-07,7.468462217040029080e-07,7.638199994700029284e-07,7.807937772360029487e-07,7.977675550020029691e-07,8.147413327680029895e-07,8.317151105340030098e-07,8.486888883000030302e-07,8.656626660660030506e-07,8.826364438320030710e-07,8.996102215980030913e-07,9.165839993640031117e-07,9.335577771300031321e-07,9.505315548960031524e-07,9.675053326620031728e-07,9.844791104280030873e-07,1.001452888194003002e-06,1.018426665960002916e-06,1.035400443726002831e-06,1.052374221492002745e-06,1.069347999258002660e-06 +0.000000000000000000e+00,1.785425664179043973e-08,3.570851328358087946e-08,5.356276992537131588e-08,7.141702656716174568e-08,8.927128320895217548e-08,1.071255398507426053e-07,1.249797964925330351e-07,1.428340531343234649e-07,1.606883097761138947e-07,1.785425664179043245e-07,1.963968230596947543e-07,2.142510797014851841e-07,2.321053363432756139e-07,2.499595929850660702e-07,2.678138496268565264e-07,2.856681062686469827e-07,3.035223629104374390e-07,3.213766195522278953e-07,3.392308761940183515e-07,3.570851328358088078e-07,3.749393894775992641e-07,3.927936461193897204e-07,4.106479027611801766e-07,4.285021594029706329e-07,4.463564160447610892e-07,4.642106726865515454e-07,4.820649293283420017e-07,4.999191859701324580e-07,5.177734426119229143e-07,5.356276992537133705e-07,5.534819558955038268e-07,5.713362125372942831e-07,5.891904691790847393e-07,6.070447258208751956e-07,6.248989824626656519e-07,6.427532391044561082e-07,6.606074957462465644e-07,6.784617523880370207e-07,6.963160090298274770e-07,7.141702656716179333e-07,7.320245223134083895e-07,7.498787789551988458e-07,7.677330355969893021e-07,7.855872922387797583e-07,8.034415488805702146e-07,8.212958055223606709e-07,8.391500621641511272e-07,8.570043188059415834e-07,8.748585754477320397e-07,8.927128320895224960e-07,9.105670887313129522e-07,9.284213453731034085e-07,9.462756020148938648e-07,9.641298586566842152e-07,9.819841152984746715e-07,9.998383719402651277e-07,1.017692628582055584e-06,1.035546885223846040e-06,1.053401141865636497e-06,1.071255398507426953e-06,1.089109655149217409e-06,1.106963911791007865e-06,1.124818168432798322e-06 +0.000000000000000000e+00,1.900214686734019546e-08,3.800429373468039093e-08,5.700644060202058970e-08,7.600858746936079509e-08,9.501073433670100048e-08,1.140128812040412059e-07,1.330150280713813980e-07,1.520171749387215902e-07,1.710193218060617823e-07,1.900214686734019745e-07,2.090236155407421667e-07,2.280257624080823588e-07,2.470279092754225510e-07,2.660300561427627431e-07,2.850322030101029353e-07,3.040343498774431274e-07,3.230364967447833196e-07,3.420386436121235117e-07,3.610407904794637039e-07,3.800429373468038961e-07,3.990450842141440882e-07,4.180472310814842804e-07,4.370493779488244725e-07,4.560515248161646647e-07,4.750536716835048568e-07,4.940558185508451019e-07,5.130579654181853470e-07,5.320601122855255921e-07,5.510622591528658372e-07,5.700644060202060823e-07,5.890665528875463274e-07,6.080686997548865725e-07,6.270708466222268176e-07,6.460729934895670627e-07,6.650751403569073078e-07,6.840772872242475529e-07,7.030794340915877980e-07,7.220815809589280431e-07,7.410837278262682882e-07,7.600858746936085333e-07,7.790880215609487784e-07,7.980901684282890234e-07,8.170923152956292685e-07,8.360944621629695136e-07,8.550966090303097587e-07,8.740987558976500038e-07,8.931009027649902489e-07,9.121030496323304940e-07,9.311051964996707391e-07,9.501073433670109842e-07,9.691094902343512293e-07,9.881116371016914744e-07,1.007113783969031719e-06,1.026115930836371965e-06,1.045118077703712210e-06,1.064120224571052455e-06,1.083122371438392700e-06,1.102124518305732945e-06,1.121126665173073190e-06,1.140128812040413435e-06,1.159130958907753680e-06,1.178133105775093925e-06,1.197135252642434170e-06 +0.000000000000000000e+00,1.697377776600443421e-08,3.394755553200886841e-08,5.092133329801330262e-08,6.789511106401773682e-08,8.486888883002217765e-08,1.018426665960266185e-07,1.188164443620310593e-07,1.357902221280355001e-07,1.527639998940399409e-07,1.697377776600443818e-07,1.867115554260488226e-07,2.036853331920532634e-07,2.206591109580577042e-07,2.376328887240621451e-07,2.546066664900665859e-07,2.715804442560710532e-07,2.885542220220755205e-07,3.055279997880799878e-07,3.225017775540844551e-07,3.394755553200889223e-07,3.564493330860933896e-07,3.734231108520978569e-07,3.903968886181023242e-07,4.073706663841067915e-07,4.243444441501112588e-07,4.413182219161157261e-07,4.582919996821201934e-07,4.752657774481246607e-07,4.922395552141291280e-07,5.092133329801335953e-07,5.261871107461380626e-07,5.431608885121425299e-07,5.601346662781469972e-07,5.771084440441514645e-07,5.940822218101559317e-07,6.110559995761603990e-07,6.280297773421648663e-07,6.450035551081693336e-07,6.619773328741738009e-07,6.789511106401782682e-07,6.959248884061827355e-07,7.128986661721872028e-07,7.298724439381916701e-07,7.468462217041961374e-07,7.638199994702006047e-07,7.807937772362050720e-07,7.977675550022095393e-07,8.147413327682140066e-07,8.317151105342184738e-07,8.486888883002229411e-07,8.656626660662274084e-07,8.826364438322318757e-07,8.996102215982363430e-07,9.165839993642408103e-07,9.335577771302452776e-07,9.505315548962497449e-07,9.675053326622543181e-07,9.844791104282588912e-07,1.001452888194263464e-06,1.018426665960268038e-06,1.035400443726272611e-06,1.052374221492277184e-06,1.069347999258281757e-06 +0.000000000000000000e+00,1.785425664179470798e-08,3.570851328358941596e-08,5.356276992538412725e-08,7.141702656717884516e-08,8.927128320897356306e-08,1.071255398507682810e-07,1.249797964925629989e-07,1.428340531343577168e-07,1.606883097761524347e-07,1.785425664179471526e-07,1.963968230597418705e-07,2.142510797015365884e-07,2.321053363433313063e-07,2.499595929851259978e-07,2.678138496269206892e-07,2.856681062687153806e-07,3.035223629105100721e-07,3.213766195523047635e-07,3.392308761940994549e-07,3.570851328358941464e-07,3.749393894776888378e-07,3.927936461194835293e-07,4.106479027612782207e-07,4.285021594030729121e-07,4.463564160448676036e-07,4.642106726866622950e-07,4.820649293284569864e-07,4.999191859702516779e-07,5.177734426120463693e-07,5.356276992538410607e-07,5.534819558956357522e-07,5.713362125374304436e-07,5.891904691792251351e-07,6.070447258210198265e-07,6.248989824628145179e-07,6.427532391046092094e-07,6.606074957464039008e-07,6.784617523881985922e-07,6.963160090299932837e-07,7.141702656717879751e-07,7.320245223135826666e-07,7.498787789553773580e-07,7.677330355971720494e-07,7.855872922389667409e-07,8.034415488807614323e-07,8.212958055225561237e-07,8.391500621643508152e-07,8.570043188061455066e-07,8.748585754479401980e-07,8.927128320897348895e-07,9.105670887315295809e-07,9.284213453733242724e-07,9.462756020151189638e-07,9.641298586569137611e-07,9.819841152987084525e-07,9.998383719405031440e-07,1.017692628582297835e-06,1.035546885224092527e-06,1.053401141865887218e-06,1.071255398507681910e-06,1.089109655149476601e-06,1.106963911791271293e-06,1.124818168433065984e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.997808671427732288e-09,7.995617342855464576e-09,1.199342601428319604e-08,1.599123468571092584e-08,1.998904335713865565e-08,2.398685202856638546e-08,2.798466069999411526e-08,3.198246937142184507e-08,3.598027804284957488e-08,3.997808671427730468e-08,4.397589538570503449e-08,4.797370405713276430e-08,5.197151272856049410e-08,5.596932139998822391e-08,5.996713007141596033e-08,6.396493874284370337e-08,6.796274741427144642e-08,7.196055608569918946e-08,7.595836475712693250e-08,7.995617342855467554e-08,8.395398209998241858e-08,8.795179077141016162e-08,9.194959944283790466e-08,9.594740811426564771e-08,9.994521678569339075e-08,1.039430254571211338e-07,1.079408341285488768e-07,1.119386427999766199e-07,1.159364514714043629e-07,1.199342601428321060e-07,1.239320688142598490e-07,1.279298774856875920e-07,1.319276861571153351e-07,1.359254948285430781e-07,1.399233034999708212e-07,1.439211121713985642e-07,1.479189208428263072e-07,1.519167295142540503e-07,1.559145381856817933e-07,1.599123468571095364e-07,1.639101555285372794e-07,1.679079641999650225e-07,1.719057728713927655e-07,1.759035815428205085e-07,1.799013902142482516e-07,1.838991988856759946e-07,1.878970075571037377e-07,1.918948162285314807e-07,1.958926248999592237e-07,1.998904335713869668e-07,2.038882422428147098e-07,2.078860509142424529e-07,2.118838595856701959e-07,2.158816682570979389e-07,2.198794769285256820e-07,2.238772855999534250e-07,2.278750942713811681e-07,2.318729029428089111e-07,2.358707116142366542e-07,2.398685202856643707e-07,2.438663289570921138e-07,2.478641376285198568e-07,2.518619462999475999e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.934437005968317879e-09,3.868874011936635757e-09,5.803311017904953636e-09,7.737748023873271515e-09,9.672185029841589393e-09,1.160662203580990727e-08,1.354105904177822515e-08,1.547549604774654303e-08,1.740993305371486256e-08,1.934437005968318210e-08,2.127880706565150163e-08,2.321324407161982116e-08,2.514768107758814069e-08,2.708211808355646023e-08,2.901655508952477976e-08,3.095099209549309929e-08,3.288542910146141883e-08,3.481986610742973836e-08,3.675430311339805789e-08,3.868874011936637743e-08,4.062317712533469696e-08,4.255761413130301649e-08,4.449205113727133602e-08,4.642648814323965556e-08,4.836092514920797509e-08,5.029536215517629462e-08,5.222979916114461416e-08,5.416423616711293369e-08,5.609867317308125322e-08,5.803311017904957276e-08,5.996754718501789229e-08,6.190198419098621182e-08,6.383642119695453135e-08,6.577085820292285089e-08,6.770529520889117042e-08,6.963973221485948995e-08,7.157416922082780949e-08,7.350860622679612902e-08,7.544304323276444855e-08,7.737748023873276809e-08,7.931191724470108762e-08,8.124635425066940715e-08,8.318079125663772668e-08,8.511522826260604622e-08,8.704966526857436575e-08,8.898410227454268528e-08,9.091853928051100482e-08,9.285297628647932435e-08,9.478741329244764388e-08,9.672185029841596342e-08,9.865628730438428295e-08,1.005907243103526025e-07,1.025251613163209220e-07,1.044595983222892415e-07,1.063940353282575611e-07,1.083284723342258806e-07,1.102629093401942001e-07,1.121973463461625197e-07,1.141317833521308392e-07,1.160662203580991587e-07,1.180006573640674783e-07,1.199350943700358110e-07,1.218695313760041306e-07 +0.000000000000000000e+00,3.659309133304271705e-09,7.318618266608543410e-09,1.097792739991281594e-08,1.463723653321708848e-08,1.829654566652136101e-08,2.195585479982563189e-08,2.561516393312990276e-08,2.927447306643417364e-08,3.293378219973844121e-08,3.659309133304270878e-08,4.025240046634697635e-08,4.391170959965124392e-08,4.757101873295551149e-08,5.123032786625977906e-08,5.488963699956404663e-08,5.854894613286831420e-08,6.220825526617258177e-08,6.586756439947685595e-08,6.952687353278113014e-08,7.318618266608540433e-08,7.684549179938967851e-08,8.050480093269395270e-08,8.416411006599822689e-08,8.782341919930250107e-08,9.148272833260677526e-08,9.514203746591104945e-08,9.880134659921532363e-08,1.024606557325195978e-07,1.061199648658238720e-07,1.097792739991281462e-07,1.134385831324324204e-07,1.170978922657366946e-07,1.207572013990409688e-07,1.244165105323452429e-07,1.280758196656495171e-07,1.317351287989537913e-07,1.353944379322580655e-07,1.390537470655623397e-07,1.427130561988666139e-07,1.463723653321708881e-07,1.500316744654751622e-07,1.536909835987794364e-07,1.573502927320837106e-07,1.610096018653879848e-07,1.646689109986922590e-07,1.683282201319965332e-07,1.719875292653008074e-07,1.756468383986050816e-07,1.793061475319093557e-07,1.829654566652136299e-07,1.866247657985179041e-07,1.902840749318221783e-07,1.939433840651264525e-07,1.976026931984307267e-07,2.012620023317350009e-07,2.049213114650392750e-07,2.085806205983435492e-07,2.122399297316478234e-07,2.158992388649520976e-07,2.195585479982563718e-07,2.232178571315606460e-07,2.268771662648649202e-07,2.305364753981691944e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.997808671429364315e-09,7.995617342858728631e-09,1.199342601428809295e-08,1.599123468571745726e-08,1.998904335714682158e-08,2.398685202857618589e-08,2.798466070000555021e-08,3.198246937143491452e-08,3.598027804286427884e-08,3.997808671429364315e-08,4.397589538572300747e-08,4.797370405715237178e-08,5.197151272858173610e-08,5.596932140001110042e-08,5.996713007144047135e-08,6.396493874286984228e-08,6.796274741429921321e-08,7.196055608572858415e-08,7.595836475715795508e-08,7.995617342858732601e-08,8.395398210001669695e-08,8.795179077144606788e-08,9.194959944287543881e-08,9.594740811430480974e-08,9.994521678573418068e-08,1.039430254571635516e-07,1.079408341285929225e-07,1.119386428000222935e-07,1.159364514714516644e-07,1.199342601428810486e-07,1.239320688143104327e-07,1.279298774857398169e-07,1.319276861571692011e-07,1.359254948285985852e-07,1.399233035000279694e-07,1.439211121714573536e-07,1.479189208428867378e-07,1.519167295143161219e-07,1.559145381857455061e-07,1.599123468571748903e-07,1.639101555286042744e-07,1.679079642000336586e-07,1.719057728714630428e-07,1.759035815428924269e-07,1.799013902143218111e-07,1.838991988857511953e-07,1.878970075571805794e-07,1.918948162286099636e-07,1.958926249000393478e-07,1.998904335714687319e-07,2.038882422428981161e-07,2.078860509143275003e-07,2.118838595857568844e-07,2.158816682571862686e-07,2.198794769286156528e-07,2.238772856000450369e-07,2.278750942714744211e-07,2.318729029429038053e-07,2.358707116143331894e-07,2.398685202857625736e-07,2.438663289571919578e-07,2.478641376286213419e-07,2.518619463000507261e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.934437005969136374e-09,3.868874011938272748e-09,5.803311017907408708e-09,7.737748023876543841e-09,9.672185029845678974e-09,1.160662203581481411e-08,1.354105904178394924e-08,1.547549604775308437e-08,1.740993305372222116e-08,1.934437005969135795e-08,2.127880706566049474e-08,2.321324407162963152e-08,2.514768107759876831e-08,2.708211808356790510e-08,2.901655508953704189e-08,3.095099209550617536e-08,3.288542910147530884e-08,3.481986610744444232e-08,3.675430311341357580e-08,3.868874011938270928e-08,4.062317712535184276e-08,4.255761413132097624e-08,4.449205113729010972e-08,4.642648814325924319e-08,4.836092514922837667e-08,5.029536215519751015e-08,5.222979916116664363e-08,5.416423616713577711e-08,5.609867317310491059e-08,5.803311017907404407e-08,5.996754718504318416e-08,6.190198419101232426e-08,6.383642119698146436e-08,6.577085820295060445e-08,6.770529520891974455e-08,6.963973221488888464e-08,7.157416922085802474e-08,7.350860622682716484e-08,7.544304323279630493e-08,7.737748023876544503e-08,7.931191724473458512e-08,8.124635425070372522e-08,8.318079125667286532e-08,8.511522826264200541e-08,8.704966526861114551e-08,8.898410227458028561e-08,9.091853928054942570e-08,9.285297628651856580e-08,9.478741329248770589e-08,9.672185029845684599e-08,9.865628730442598609e-08,1.005907243103951262e-07,1.025251613163642663e-07,1.044595983223334064e-07,1.063940353283025465e-07,1.083284723342716866e-07,1.102629093402408267e-07,1.121973463462099668e-07,1.141317833521791069e-07,1.160662203581482470e-07,1.180006573641173870e-07,1.199350943700865271e-07,1.218695313760556672e-07 +0.000000000000000000e+00,3.659309133305661782e-09,7.318618266611323564e-09,1.097792739991698493e-08,1.463723653322264547e-08,1.829654566652830602e-08,2.195585479983396656e-08,2.561516393313962710e-08,2.927447306644528764e-08,3.293378219975094818e-08,3.659309133305661203e-08,4.025240046636227588e-08,4.391170959966793973e-08,4.757101873297360358e-08,5.123032786627926743e-08,5.488963699958493128e-08,5.854894613289059513e-08,6.220825526619625898e-08,6.586756439950192283e-08,6.952687353280758668e-08,7.318618266611325053e-08,7.684549179941891438e-08,8.050480093272457823e-08,8.416411006603024208e-08,8.782341919933590593e-08,9.148272833264156978e-08,9.514203746594723363e-08,9.880134659925289748e-08,1.024606557325585613e-07,1.061199648658642252e-07,1.097792739991698890e-07,1.134385831324755529e-07,1.170978922657812167e-07,1.207572013990868674e-07,1.244165105323925180e-07,1.280758196656981686e-07,1.317351287990038192e-07,1.353944379323094698e-07,1.390537470656151204e-07,1.427130561989207710e-07,1.463723653322264217e-07,1.500316744655320723e-07,1.536909835988377229e-07,1.573502927321433735e-07,1.610096018654490241e-07,1.646689109987546747e-07,1.683282201320603253e-07,1.719875292653659760e-07,1.756468383986716266e-07,1.793061475319772772e-07,1.829654566652829278e-07,1.866247657985885784e-07,1.902840749318942290e-07,1.939433840651998797e-07,1.976026931985055303e-07,2.012620023318111809e-07,2.049213114651168315e-07,2.085806205984224821e-07,2.122399297317281327e-07,2.158992388650337833e-07,2.195585479983394340e-07,2.232178571316450846e-07,2.268771662649507352e-07,2.305364753982563858e-07 +0.000000000000000000e+00,8.197289310124333474e-09,1.639457862024866695e-08,2.459186793037300208e-08,3.278915724049734051e-08,4.098644655062167895e-08,4.918373586074601739e-08,5.738102517087035582e-08,6.557831448099469426e-08,7.377560379111903270e-08,8.197289310124337113e-08,9.017018241136770957e-08,9.836747172149204801e-08,1.065647610316163864e-07,1.147620503417407249e-07,1.229593396518650633e-07,1.311566289619894150e-07,1.393539182721137667e-07,1.475512075822381183e-07,1.557484968923624700e-07,1.639457862024868217e-07,1.721430755126111733e-07,1.803403648227355250e-07,1.885376541328598767e-07,1.967349434429842284e-07,2.049322327531085800e-07,2.131295220632329317e-07,2.213268113733572834e-07,2.295241006834816350e-07,2.377213899936059867e-07,2.459186793037303384e-07,2.541159686138546636e-07,2.623132579239789888e-07,2.705105472341033140e-07,2.787078365442276392e-07,2.869051258543519644e-07,2.951024151644762896e-07,3.032997044746006148e-07,3.114969937847249400e-07,3.196942830948492652e-07,3.278915724049735904e-07,3.360888617150979156e-07,3.442861510252222408e-07,3.524834403353465660e-07,3.606807296454708912e-07,3.688780189555952164e-07,3.770753082657195416e-07,3.852725975758438668e-07,3.934698868859681920e-07,4.016671761960925172e-07,4.098644655062168424e-07,4.180617548163411676e-07,4.262590441264654928e-07,4.344563334365898180e-07,4.426536227467141432e-07,4.508509120568384684e-07,4.590482013669627936e-07,4.672454906770871188e-07,4.754427799872114440e-07,4.836400692973357692e-07,4.918373586074601474e-07,5.000346479175845255e-07,5.082319372277089037e-07,5.164292265378332818e-07 +0.000000000000000000e+00,6.057289545175316606e-09,1.211457909035063321e-08,1.817186863552595147e-08,2.422915818070126973e-08,3.028644772587658799e-08,3.634373727105190294e-08,4.240102681622721789e-08,4.845831636140253284e-08,5.451560590657784780e-08,6.057289545175316275e-08,6.663018499692847770e-08,7.268747454210379265e-08,7.874476408727910760e-08,8.480205363245442255e-08,9.085934317762973750e-08,9.691663272280505245e-08,1.029739222679803674e-07,1.090312118131556824e-07,1.150885013583309973e-07,1.211457909035062990e-07,1.272030804486815875e-07,1.332603699938568760e-07,1.393176595390321645e-07,1.453749490842074529e-07,1.514322386293827414e-07,1.574895281745580299e-07,1.635468177197333184e-07,1.696041072649086069e-07,1.756613968100838954e-07,1.817186863552591838e-07,1.877759759004344723e-07,1.938332654456097608e-07,1.998905549907850493e-07,2.059478445359603378e-07,2.120051340811356262e-07,2.180624236263109147e-07,2.241197131714862032e-07,2.301770027166614917e-07,2.362342922618367802e-07,2.422915818070120687e-07,2.483488713521873571e-07,2.544061608973626456e-07,2.604634504425379341e-07,2.665207399877132226e-07,2.725780295328885111e-07,2.786353190780637995e-07,2.846926086232390880e-07,2.907498981684143765e-07,2.968071877135896650e-07,3.028644772587649535e-07,3.089217668039402419e-07,3.149790563491155304e-07,3.210363458942908189e-07,3.270936354394661074e-07,3.331509249846413959e-07,3.392082145298166844e-07,3.452655040749919728e-07,3.513227936201672613e-07,3.573800831653425498e-07,3.634373727105178383e-07,3.694946622556931268e-07,3.755519518008684152e-07,3.816092413460437037e-07 +0.000000000000000000e+00,7.634874687912194612e-09,1.526974937582438922e-08,2.290462406373658384e-08,3.053949875164877845e-08,3.817437343956096975e-08,4.580924812747316106e-08,5.344412281538535236e-08,6.107899750329754366e-08,6.871387219120973497e-08,7.634874687912192627e-08,8.398362156703411757e-08,9.161849625494630888e-08,9.925337094285850018e-08,1.068882456307706915e-07,1.145231203186828828e-07,1.221579950065950609e-07,1.297928696945072257e-07,1.374277443824193905e-07,1.450626190703315554e-07,1.526974937582437202e-07,1.603323684461558850e-07,1.679672431340680499e-07,1.756021178219802147e-07,1.832369925098923795e-07,1.908718671978045444e-07,1.985067418857167092e-07,2.061416165736288740e-07,2.137764912615410389e-07,2.214113659494532037e-07,2.290462406373653685e-07,2.366811153252775334e-07,2.443159900131896982e-07,2.519508647011018630e-07,2.595857393890140279e-07,2.672206140769261927e-07,2.748554887648383575e-07,2.824903634527505224e-07,2.901252381406626872e-07,2.977601128285748520e-07,3.053949875164870169e-07,3.130298622043991817e-07,3.206647368923113465e-07,3.282996115802235114e-07,3.359344862681356762e-07,3.435693609560478410e-07,3.512042356439600059e-07,3.588391103318721707e-07,3.664739850197843355e-07,3.741088597076965004e-07,3.817437343956086652e-07,3.893786090835208300e-07,3.970134837714329949e-07,4.046483584593451597e-07,4.122832331472573245e-07,4.199181078351694894e-07,4.275529825230816542e-07,4.351878572109938190e-07,4.428227318989059839e-07,4.504576065868181487e-07,4.580924812747303135e-07,4.657273559626424784e-07,4.733622306505546432e-07,4.809971053384668610e-07 +0.000000000000000000e+00,8.197289310127311324e-09,1.639457862025462265e-08,2.459186793038193563e-08,3.278915724050925191e-08,4.098644655063656820e-08,4.918373586076388449e-08,5.738102517089120077e-08,6.557831448101851706e-08,7.377560379114583335e-08,8.197289310127314963e-08,9.017018241140046592e-08,9.836747172152778221e-08,1.065647610316550985e-07,1.147620503417824148e-07,1.229593396519097178e-07,1.311566289620370077e-07,1.393539182721642975e-07,1.475512075822915873e-07,1.557484968924188771e-07,1.639457862025461669e-07,1.721430755126734567e-07,1.803403648228007466e-07,1.885376541329280364e-07,1.967349434430553262e-07,2.049322327531826160e-07,2.131295220633099058e-07,2.213268113734371956e-07,2.295241006835644855e-07,2.377213899936917753e-07,2.459186793038190651e-07,2.541159686139463549e-07,2.623132579240736447e-07,2.705105472342009345e-07,2.787078365443282244e-07,2.869051258544555142e-07,2.951024151645828040e-07,3.032997044747100938e-07,3.114969937848373836e-07,3.196942830949646734e-07,3.278915724050919633e-07,3.360888617152192531e-07,3.442861510253465429e-07,3.524834403354738327e-07,3.606807296456011225e-07,3.688780189557284124e-07,3.770753082658557022e-07,3.852725975759829920e-07,3.934698868861102818e-07,4.016671761962375716e-07,4.098644655063648614e-07,4.180617548164921513e-07,4.262590441266194411e-07,4.344563334367467309e-07,4.426536227468740207e-07,4.508509120570013105e-07,4.590482013671286003e-07,4.672454906772558902e-07,4.754427799873831800e-07,4.836400692975104698e-07,4.918373586076378125e-07,5.000346479177651553e-07,5.082319372278924981e-07,5.164292265380198408e-07 +0.000000000000000000e+00,6.057289545177660008e-09,1.211457909035532002e-08,1.817186863553297920e-08,2.422915818071063672e-08,3.028644772588829425e-08,3.634373727106595178e-08,4.240102681624360930e-08,4.845831636142126683e-08,5.451560590659892436e-08,6.057289545177657527e-08,6.663018499695421956e-08,7.268747454213186385e-08,7.874476408730950814e-08,8.480205363248715243e-08,9.085934317766479673e-08,9.691663272284244102e-08,1.029739222680200853e-07,1.090312118131977296e-07,1.150885013583753739e-07,1.211457909035530182e-07,1.272030804487306625e-07,1.332603699939083068e-07,1.393176595390859511e-07,1.453749490842635954e-07,1.514322386294412396e-07,1.574895281746188839e-07,1.635468177197965282e-07,1.696041072649741725e-07,1.756613968101518168e-07,1.817186863553294611e-07,1.877759759005071054e-07,1.938332654456847497e-07,1.998905549908623940e-07,2.059478445360400383e-07,2.120051340812176826e-07,2.180624236263953269e-07,2.241197131715729711e-07,2.301770027167506154e-07,2.362342922619282597e-07,2.422915818071058775e-07,2.483488713522834954e-07,2.544061608974611132e-07,2.604634504426387310e-07,2.665207399878163488e-07,2.725780295329939667e-07,2.786353190781715845e-07,2.846926086233492023e-07,2.907498981685268201e-07,2.968071877137044379e-07,3.028644772588820558e-07,3.089217668040596736e-07,3.149790563492372914e-07,3.210363458944149092e-07,3.270936354395925271e-07,3.331509249847701449e-07,3.392082145299477627e-07,3.452655040751253805e-07,3.513227936203029983e-07,3.573800831654806162e-07,3.634373727106582340e-07,3.694946622558358518e-07,3.755519518010134696e-07,3.816092413461910875e-07 +0.000000000000000000e+00,7.634874687914833318e-09,1.526974937582966664e-08,2.290462406374450161e-08,3.053949875165933989e-08,3.817437343957417817e-08,4.580924812748901645e-08,5.344412281540385473e-08,6.107899750331869302e-08,6.871387219123353130e-08,7.634874687914836958e-08,8.398362156706320786e-08,9.161849625497804614e-08,9.925337094289288442e-08,1.068882456308077227e-07,1.145231203187225610e-07,1.221579950066374125e-07,1.297928696945522773e-07,1.374277443824671420e-07,1.450626190703820068e-07,1.526974937582968715e-07,1.603323684462117363e-07,1.679672431341266010e-07,1.756021178220414658e-07,1.832369925099563305e-07,1.908718671978711953e-07,1.985067418857860600e-07,2.061416165737009248e-07,2.137764912616157895e-07,2.214113659495306543e-07,2.290462406374455190e-07,2.366811153253603838e-07,2.443159900132752485e-07,2.519508647011901133e-07,2.595857393891049780e-07,2.672206140770198428e-07,2.748554887649347075e-07,2.824903634528495723e-07,2.901252381407644370e-07,2.977601128286793018e-07,3.053949875165941665e-07,3.130298622045090313e-07,3.206647368924238960e-07,3.282996115803387608e-07,3.359344862682536255e-07,3.435693609561684903e-07,3.512042356440833550e-07,3.588391103319982198e-07,3.664739850199130845e-07,3.741088597078279493e-07,3.817437343957428140e-07,3.893786090836576788e-07,3.970134837715725435e-07,4.046483584594874083e-07,4.122832331474022730e-07,4.199181078353171378e-07,4.275529825232320025e-07,4.351878572111468673e-07,4.428227318990617321e-07,4.504576065869765968e-07,4.580924812748914616e-07,4.657273559628063263e-07,4.733622306507211911e-07,4.809971053386360558e-07 +0.000000000000000000e+00,1.261726590808160767e-08,2.523453181616321533e-08,3.785179772424481969e-08,5.046906363232642405e-08,6.308632954040802841e-08,7.570359544848963939e-08,8.832086135657125036e-08,1.009381272646528613e-07,1.135553931727344723e-07,1.261726590808160833e-07,1.387899249888977075e-07,1.514071908969793317e-07,1.640244568050609559e-07,1.766417227131425801e-07,1.892589886212242043e-07,2.018762545293058286e-07,2.144935204373874528e-07,2.271107863454690770e-07,2.397280522535507012e-07,2.523453181616323254e-07,2.649625840697139496e-07,2.775798499777955738e-07,2.901971158858771980e-07,3.028143817939588222e-07,3.154316477020404465e-07,3.280489136101220707e-07,3.406661795182036949e-07,3.532834454262853191e-07,3.659007113343669433e-07,3.785179772424485675e-07,3.911352431505301917e-07,4.037525090586118159e-07,4.163697749666934401e-07,4.289870408747750643e-07,4.416043067828566886e-07,4.542215726909383128e-07,4.668388385990199370e-07,4.794561045071015083e-07,4.920733704151830266e-07,5.046906363232645449e-07,5.173079022313460632e-07,5.299251681394275816e-07,5.425424340475090999e-07,5.551596999555906182e-07,5.677769658636721366e-07,5.803942317717536549e-07,5.930114976798351732e-07,6.056287635879166916e-07,6.182460294959982099e-07,6.308632954040797282e-07,6.434805613121612466e-07,6.560978272202427649e-07,6.687150931283242832e-07,6.813323590364058016e-07,6.939496249444873199e-07,7.065668908525688382e-07,7.191841567606503566e-07,7.318014226687318749e-07,7.444186885768133932e-07,7.570359544848949115e-07,7.696532203929764299e-07,7.822704863010579482e-07,7.948877522091394665e-07 +0.000000000000000000e+00,1.039103872383999307e-08,2.078207744767998614e-08,3.117311617151997755e-08,4.156415489535996566e-08,5.195519361919995376e-08,6.234623234303994187e-08,7.273727106687992335e-08,8.312830979071990484e-08,9.351934851455988633e-08,1.039103872383998678e-07,1.143014259622398493e-07,1.246924646860798308e-07,1.350835034099198123e-07,1.454745421337597938e-07,1.558655808575997753e-07,1.662566195814397567e-07,1.766476583052797382e-07,1.870386970291197197e-07,1.974297357529597012e-07,2.078207744767996827e-07,2.182118132006396642e-07,2.286028519244796457e-07,2.389938906483196272e-07,2.493849293721596086e-07,2.597759680959995901e-07,2.701670068198395716e-07,2.805580455436795531e-07,2.909490842675195346e-07,3.013401229913595161e-07,3.117311617151994976e-07,3.221222004390394791e-07,3.325132391628794605e-07,3.429042778867194420e-07,3.532953166105594235e-07,3.636863553343994050e-07,3.740773940582393865e-07,3.844684327820793680e-07,3.948594715059193495e-07,4.052505102297593310e-07,4.156415489535993124e-07,4.260325876774392939e-07,4.364236264012792754e-07,4.468146651251192569e-07,4.572057038489592384e-07,4.675967425727992199e-07,4.779877812966391484e-07,4.883788200204790240e-07,4.987698587443188996e-07,5.091608974681587753e-07,5.195519361919986509e-07,5.299429749158385265e-07,5.403340136396784021e-07,5.507250523635182777e-07,5.611160910873581533e-07,5.715071298111980289e-07,5.818981685350379045e-07,5.922892072588777801e-07,6.026802459827176557e-07,6.130712847065575313e-07,6.234623234303974069e-07,6.338533621542372826e-07,6.442444008780771582e-07,6.546354396019170338e-07 +0.000000000000000000e+00,1.174533239260940960e-08,2.349066478521881920e-08,3.523599717782822879e-08,4.698132957043763839e-08,5.872666196304704799e-08,7.047199435565645759e-08,8.221732674826586718e-08,9.396265914087527678e-08,1.057079915334846864e-07,1.174533239260940960e-07,1.291986563187035188e-07,1.409439887113129416e-07,1.526893211039223645e-07,1.644346534965317873e-07,1.761799858891412101e-07,1.879253182817506330e-07,1.996706506743600558e-07,2.114159830669694786e-07,2.231613154595789015e-07,2.349066478521883243e-07,2.466519802447977471e-07,2.583973126374071435e-07,2.701426450300165399e-07,2.818879774226259362e-07,2.936333098152353326e-07,3.053786422078447289e-07,3.171239746004541253e-07,3.288693069930635217e-07,3.406146393856729180e-07,3.523599717782823144e-07,3.641053041708917108e-07,3.758506365635011071e-07,3.875959689561105035e-07,3.993413013487198998e-07,4.110866337413292962e-07,4.228319661339386926e-07,4.345772985265480889e-07,4.463226309191574853e-07,4.580679633117668817e-07,4.698132957043762780e-07,4.815586280969857273e-07,4.933039604895951766e-07,5.050492928822046259e-07,5.167946252748140752e-07,5.285399576674235245e-07,5.402852900600329738e-07,5.520306224526424231e-07,5.637759548452518724e-07,5.755212872378613217e-07,5.872666196304707710e-07,5.990119520230802203e-07,6.107572844156896697e-07,6.225026168082991190e-07,6.342479492009085683e-07,6.459932815935180176e-07,6.577386139861274669e-07,6.694839463787369162e-07,6.812292787713463655e-07,6.929746111639558148e-07,7.047199435565652641e-07,7.164652759491747134e-07,7.282106083417841627e-07,7.399559407343936120e-07 +0.000000000000000000e+00,1.261726590808561949e-08,2.523453181617123899e-08,3.785179772425685683e-08,5.046906363234247136e-08,6.308632954042807927e-08,7.570359544851368718e-08,8.832086135659929509e-08,1.009381272646849030e-07,1.135553931727705109e-07,1.261726590808561056e-07,1.387899249889417003e-07,1.514071908970272950e-07,1.640244568051128896e-07,1.766417227131984843e-07,1.892589886212840790e-07,2.018762545293696737e-07,2.144935204374552683e-07,2.271107863455408630e-07,2.397280522536264577e-07,2.523453181617120524e-07,2.649625840697976471e-07,2.775798499778832417e-07,2.901971158859688364e-07,3.028143817940544311e-07,3.154316477021400258e-07,3.280489136102256204e-07,3.406661795183112151e-07,3.532834454263968098e-07,3.659007113344824045e-07,3.785179772425679992e-07,3.911352431506535938e-07,4.037525090587391885e-07,4.163697749668247832e-07,4.289870408749103779e-07,4.416043067829959725e-07,4.542215726910815672e-07,4.668388385991671619e-07,4.794561045072527036e-07,4.920733704153382454e-07,5.046906363234237871e-07,5.173079022315093288e-07,5.299251681395948706e-07,5.425424340476804123e-07,5.551596999557659541e-07,5.677769658638514958e-07,5.803942317719370375e-07,5.930114976800225793e-07,6.056287635881081210e-07,6.182460294961936628e-07,6.308632954042792045e-07,6.434805613123647462e-07,6.560978272204502880e-07,6.687150931285358297e-07,6.813323590366213714e-07,6.939496249447069132e-07,7.065668908527924549e-07,7.191841567608779967e-07,7.318014226689635384e-07,7.444186885770490801e-07,7.570359544851346219e-07,7.696532203932201636e-07,7.822704863013057053e-07,7.948877522093912471e-07 +0.000000000000000000e+00,1.039103872384352347e-08,2.078207744768704695e-08,3.117311617153057208e-08,4.156415489537410052e-08,5.195519361921762896e-08,6.234623234306115739e-08,7.273727106690468583e-08,8.312830979074821427e-08,9.351934851459174271e-08,1.039103872384352711e-07,1.143014259622787996e-07,1.246924646861223413e-07,1.350835034099658697e-07,1.454745421338093981e-07,1.558655808576529266e-07,1.662566195814964550e-07,1.766476583053399834e-07,1.870386970291835119e-07,1.974297357530270403e-07,2.078207744768705688e-07,2.182118132007140972e-07,2.286028519245576256e-07,2.389938906484011541e-07,2.493849293722446825e-07,2.597759680960882110e-07,2.701670068199317394e-07,2.805580455437752678e-07,2.909490842676187963e-07,3.013401229914623247e-07,3.117311617153058531e-07,3.221222004391493816e-07,3.325132391629929100e-07,3.429042778868364385e-07,3.532953166106799669e-07,3.636863553345234953e-07,3.740773940583670238e-07,3.844684327822105522e-07,3.948594715060540806e-07,4.052505102298976091e-07,4.156415489537411375e-07,4.260325876775846660e-07,4.364236264014281944e-07,4.468146651252717228e-07,4.572057038491152513e-07,4.675967425729587797e-07,4.779877812968023082e-07,4.883788200206458895e-07,4.987698587444894709e-07,5.091608974683330523e-07,5.195519361921766337e-07,5.299429749160202150e-07,5.403340136398637964e-07,5.507250523637073778e-07,5.611160910875509592e-07,5.715071298113945405e-07,5.818981685352381219e-07,5.922892072590817033e-07,6.026802459829252847e-07,6.130712847067688661e-07,6.234623234306124474e-07,6.338533621544560288e-07,6.442444008782996102e-07,6.546354396021431916e-07 +0.000000000000000000e+00,1.174533239261312695e-08,2.349066478522625389e-08,3.523599717783937919e-08,4.698132957045250117e-08,5.872666196306562316e-08,7.047199435567874514e-08,8.221732674829187374e-08,9.396265914090500234e-08,1.057079915335181309e-07,1.174533239261312595e-07,1.291986563187443881e-07,1.409439887113575167e-07,1.526893211039706454e-07,1.644346534965837740e-07,1.761799858891969026e-07,1.879253182818100312e-07,1.996706506744231598e-07,2.114159830670362884e-07,2.231613154596494170e-07,2.349066478522625456e-07,2.466519802448756742e-07,2.583973126374887763e-07,2.701426450301018784e-07,2.818879774227149806e-07,2.936333098153280827e-07,3.053786422079411848e-07,3.171239746005542870e-07,3.288693069931673891e-07,3.406146393857804912e-07,3.523599717783935934e-07,3.641053041710066955e-07,3.758506365636197976e-07,3.875959689562328997e-07,3.993413013488460019e-07,4.110866337414591040e-07,4.228319661340722061e-07,4.345772985266853083e-07,4.463226309192984104e-07,4.580679633119115125e-07,4.698132957045246147e-07,4.815586280971377697e-07,4.933039604897509248e-07,5.050492928823640799e-07,5.167946252749772350e-07,5.285399576675903900e-07,5.402852900602035451e-07,5.520306224528167002e-07,5.637759548454298552e-07,5.755212872380430103e-07,5.872666196306561654e-07,5.990119520232693205e-07,6.107572844158824755e-07,6.225026168084956306e-07,6.342479492011087857e-07,6.459932815937219407e-07,6.577386139863350958e-07,6.694839463789482509e-07,6.812292787715614060e-07,6.929746111641745610e-07,7.047199435567877161e-07,7.164652759494008712e-07,7.282106083420140262e-07,7.399559407346271813e-07 +0.000000000000000000e+00,1.712441290218148962e-08,3.424882580436297925e-08,5.137323870654446887e-08,6.849765160872595850e-08,8.562206451090744812e-08,1.027464774130889377e-07,1.198708903152704274e-07,1.369953032174519170e-07,1.541197161196334066e-07,1.712441290218148962e-07,1.883685419239963859e-07,2.054929548261778755e-07,2.226173677283593651e-07,2.397417806305408547e-07,2.568661935327223179e-07,2.739906064349037810e-07,2.911150193370852442e-07,3.082394322392667074e-07,3.253638451414481705e-07,3.424882580436296337e-07,3.596126709458110968e-07,3.767370838479925600e-07,3.938614967501740231e-07,4.109859096523554863e-07,4.281103225545369494e-07,4.452347354567184126e-07,4.623591483588998757e-07,4.794835612610813918e-07,4.966079741632629079e-07,5.137323870654444240e-07,5.308567999676259401e-07,5.479812128698074562e-07,5.651056257719889723e-07,5.822300386741704884e-07,5.993544515763520045e-07,6.164788644785335206e-07,6.336032773807150367e-07,6.507276902828965528e-07,6.678521031850780689e-07,6.849765160872595850e-07,7.021009289894411011e-07,7.192253418916226172e-07,7.363497547938041333e-07,7.534741676959856493e-07,7.705985805981671654e-07,7.877229935003486815e-07,8.048474064025301976e-07,8.219718193047117137e-07,8.390962322068932298e-07,8.562206451090747459e-07,8.733450580112562620e-07,8.904694709134377781e-07,9.075938838156192942e-07,9.247182967178008103e-07,9.418427096199823264e-07,9.589671225221638425e-07,9.760915354243454644e-07,9.932159483265270864e-07,1.010340361228708708e-06,1.027464774130890330e-06,1.044589187033071952e-06,1.061713599935253574e-06,1.078838012837435196e-06 +0.000000000000000000e+00,1.486520268282989226e-08,2.973040536565978453e-08,4.459560804848967679e-08,5.946081073131956906e-08,7.432601341414946132e-08,8.919121609697935359e-08,1.040564187798092458e-07,1.189216214626391381e-07,1.337868241454690171e-07,1.486520268282988962e-07,1.635172295111287752e-07,1.783824321939586542e-07,1.932476348767885333e-07,2.081128375596184123e-07,2.229780402424482913e-07,2.378432429252781703e-07,2.527084456081080494e-07,2.675736482909379284e-07,2.824388509737678074e-07,2.973040536565976865e-07,3.121692563394275655e-07,3.270344590222574445e-07,3.418996617050873236e-07,3.567648643879172026e-07,3.716300670707470816e-07,3.864952697535769606e-07,4.013604724364068397e-07,4.162256751192367187e-07,4.310908778020665977e-07,4.459560804848964768e-07,4.608212831677263558e-07,4.756864858505562348e-07,4.905516885333860609e-07,5.054168912162158870e-07,5.202820938990457131e-07,5.351472965818755392e-07,5.500124992647053653e-07,5.648777019475351914e-07,5.797429046303650174e-07,5.946081073131948435e-07,6.094733099960246696e-07,6.243385126788544957e-07,6.392037153616843218e-07,6.540689180445141479e-07,6.689341207273439740e-07,6.837993234101738001e-07,6.986645260930036262e-07,7.135297287758334523e-07,7.283949314586632783e-07,7.432601341414931044e-07,7.581253368243229305e-07,7.729905395071527566e-07,7.878557421899825827e-07,8.027209448728124088e-07,8.175861475556422349e-07,8.324513502384720610e-07,8.473165529213018871e-07,8.621817556041317132e-07,8.770469582869615392e-07,8.919121609697913653e-07,9.067773636526211914e-07,9.216425663354510175e-07,9.365077690182808436e-07 +0.000000000000000000e+00,1.596202202934746617e-08,3.192404405869493234e-08,4.788606608804240181e-08,6.384808811738987791e-08,7.981011014673735400e-08,9.577213217608483010e-08,1.117341542054323062e-07,1.276961762347797823e-07,1.436581982641272451e-07,1.596202202934747080e-07,1.755822423228221709e-07,1.915442643521696337e-07,2.075062863815170966e-07,2.234683084108645594e-07,2.394303304402120223e-07,2.553923524695595116e-07,2.713543744989070010e-07,2.873163965282544903e-07,3.032784185576019796e-07,3.192404405869494690e-07,3.352024626162969583e-07,3.511644846456444476e-07,3.671265066749919369e-07,3.830885287043394263e-07,3.990505507336869156e-07,4.150125727630344049e-07,4.309745947923818943e-07,4.469366168217293836e-07,4.628986388510768729e-07,4.788606608804243623e-07,4.948226829097718516e-07,5.107847049391193409e-07,5.267467269684668302e-07,5.427087489978143196e-07,5.586707710271618089e-07,5.746327930565092982e-07,5.905948150858567876e-07,6.065568371152042769e-07,6.225188591445517662e-07,6.384808811738992555e-07,6.544429032032467449e-07,6.704049252325942342e-07,6.863669472619417235e-07,7.023289692912892129e-07,7.182909913206367022e-07,7.342530133499841915e-07,7.502150353793316809e-07,7.661770574086791702e-07,7.821390794380266595e-07,7.981011014673741488e-07,8.140631234967216382e-07,8.300251455260691275e-07,8.459871675554166168e-07,8.619491895847641062e-07,8.779112116141115955e-07,8.938732336434590848e-07,9.098352556728065742e-07,9.257972777021540635e-07,9.417592997315015528e-07,9.577213217608489363e-07,9.736833437901963197e-07,9.896453658195437032e-07,1.005607387848891087e-06 +0.000000000000000000e+00,1.712441290218647256e-08,3.424882580437294512e-08,5.137323870655941768e-08,6.849765160874589024e-08,8.562206451093235618e-08,1.027464774131188221e-07,1.198708903153052881e-07,1.369953032174917540e-07,1.541197161196782200e-07,1.712441290218646859e-07,1.883685419240511518e-07,2.054929548262376178e-07,2.226173677284240837e-07,2.397417806306105761e-07,2.568661935327970686e-07,2.739906064349835610e-07,2.911150193371700534e-07,3.082394322393565458e-07,3.253638451415430382e-07,3.424882580437295306e-07,3.596126709459160230e-07,3.767370838481025154e-07,3.938614967502890079e-07,4.109859096524755003e-07,4.281103225546619927e-07,4.452347354568484851e-07,4.623591483590349775e-07,4.794835612612214699e-07,4.966079741634079623e-07,5.137323870655944547e-07,5.308567999677809472e-07,5.479812128699674396e-07,5.651056257721539320e-07,5.822300386743404244e-07,5.993544515765269168e-07,6.164788644787134092e-07,6.336032773808999016e-07,6.507276902830863940e-07,6.678521031852728865e-07,6.849765160874593789e-07,7.021009289896458713e-07,7.192253418918323637e-07,7.363497547940188561e-07,7.534741676962053485e-07,7.705985805983918409e-07,7.877229935005783333e-07,8.048474064027648258e-07,8.219718193049513182e-07,8.390962322071378106e-07,8.562206451093243030e-07,8.733450580115107954e-07,8.904694709136972878e-07,9.075938838158837802e-07,9.247182967180702726e-07,9.418427096202567651e-07,9.589671225224431516e-07,9.760915354246296440e-07,9.932159483268161364e-07,1.010340361229002629e-06,1.027464774131189121e-06,1.044589187033375614e-06,1.061713599935562106e-06,1.078838012837748598e-06 +0.000000000000000000e+00,1.486520268283442025e-08,2.973040536566884050e-08,4.459560804850326241e-08,5.946081073133768762e-08,7.432601341417210622e-08,8.919121609700652481e-08,1.040564187798409434e-07,1.189216214626753620e-07,1.337868241455097806e-07,1.486520268283442124e-07,1.635172295111786443e-07,1.783824321940130761e-07,1.932476348768475079e-07,2.081128375596819398e-07,2.229780402425163716e-07,2.378432429253508034e-07,2.527084456081852353e-07,2.675736482910196671e-07,2.824388509738540989e-07,2.973040536566885307e-07,3.121692563395229626e-07,3.270344590223573944e-07,3.418996617051918262e-07,3.567648643880262581e-07,3.716300670708606899e-07,3.864952697536951217e-07,4.013604724365295536e-07,4.162256751193639854e-07,4.310908778021984172e-07,4.459560804850328491e-07,4.608212831678672809e-07,4.756864858507017127e-07,4.905516885335361975e-07,5.054168912163706823e-07,5.202820938992051670e-07,5.351472965820396518e-07,5.500124992648741366e-07,5.648777019477086214e-07,5.797429046305431061e-07,5.946081073133775909e-07,6.094733099962120757e-07,6.243385126790465604e-07,6.392037153618810452e-07,6.540689180447155300e-07,6.689341207275500147e-07,6.837993234103844995e-07,6.986645260932189843e-07,7.135297287760534691e-07,7.283949314588879538e-07,7.432601341417224386e-07,7.581253368245569234e-07,7.729905395073914081e-07,7.878557421902258929e-07,8.027209448730603777e-07,8.175861475558948625e-07,8.324513502387293472e-07,8.473165529215638320e-07,8.621817556043983168e-07,8.770469582872328015e-07,8.919121609700672863e-07,9.067773636529017711e-07,9.216425663357362559e-07,9.365077690185707406e-07 +0.000000000000000000e+00,1.596202202935210831e-08,3.192404405870421661e-08,4.788606608805632492e-08,6.384808811740843322e-08,7.981011014676054153e-08,9.577213217611264984e-08,1.117341542054647581e-07,1.276961762348168664e-07,1.436581982641689615e-07,1.596202202935210566e-07,1.755822423228731517e-07,1.915442643522252467e-07,2.075062863815773418e-07,2.234683084109294369e-07,2.394303304402815319e-07,2.553923524696336270e-07,2.713543744989857221e-07,2.873163965283378172e-07,3.032784185576899122e-07,3.192404405870420073e-07,3.352024626163941024e-07,3.511644846457461974e-07,3.671265066750982925e-07,3.830885287044503876e-07,3.990505507338024827e-07,4.150125727631545777e-07,4.309745947925066728e-07,4.469366168218587679e-07,4.628986388512108629e-07,4.788606608805629580e-07,4.948226829099150002e-07,5.107847049392670423e-07,5.267467269686190844e-07,5.427087489979711265e-07,5.586707710273231687e-07,5.746327930566752108e-07,5.905948150860272529e-07,6.065568371153792951e-07,6.225188591447313372e-07,6.384808811740833793e-07,6.544429032034354215e-07,6.704049252327874636e-07,6.863669472621395057e-07,7.023289692914915479e-07,7.182909913208435900e-07,7.342530133501956321e-07,7.502150353795476743e-07,7.661770574088997164e-07,7.821390794382517585e-07,7.981011014676038007e-07,8.140631234969558428e-07,8.300251455263078849e-07,8.459871675556599270e-07,8.619491895850119692e-07,8.779112116143640113e-07,8.938732336437160534e-07,9.098352556730680956e-07,9.257972777024201377e-07,9.417592997317721798e-07,9.577213217611242220e-07,9.736833437904762641e-07,9.896453658198283062e-07,1.005607387849180348e-06 +0.000000000000000000e+00,2.166780452286003430e-08,4.333560904572006860e-08,6.500341356858010952e-08,8.667121809144015043e-08,1.083390226143001914e-07,1.300068271371602190e-07,1.516746316600202467e-07,1.733424361828802744e-07,1.950102407057403021e-07,2.166780452286003298e-07,2.383458497514603574e-07,2.600136542743203851e-07,2.816814587971804128e-07,3.033492633200404405e-07,3.250170678429004682e-07,3.466848723657604959e-07,3.683526768886205235e-07,3.900204814114805512e-07,4.116882859343405789e-07,4.333560904572006066e-07,4.550238949800606343e-07,4.766916995029206620e-07,4.983595040257807426e-07,5.200273085486408761e-07,5.416951130715010097e-07,5.633629175943611433e-07,5.850307221172212768e-07,6.066985266400814104e-07,6.283663311629415439e-07,6.500341356858016775e-07,6.717019402086618111e-07,6.933697447315219446e-07,7.150375492543820782e-07,7.367053537772422118e-07,7.583731583001023453e-07,7.800409628229624789e-07,8.017087673458226124e-07,8.233765718686827460e-07,8.450443763915428796e-07,8.667121809144030131e-07,8.883799854372631467e-07,9.100477899601232802e-07,9.317155944829834138e-07,9.533833990058435474e-07,9.750512035287036809e-07,9.967190080515638145e-07,1.018386812574423948e-06,1.040054617097284082e-06,1.061722421620144215e-06,1.083390226143004349e-06,1.105058030665864482e-06,1.126725835188724616e-06,1.148393639711584749e-06,1.170061444234444883e-06,1.191729248757305017e-06,1.213397053280165150e-06,1.235064857803025284e-06,1.256732662325885417e-06,1.278400466848745551e-06,1.300068271371605684e-06,1.321736075894465818e-06,1.343403880417325951e-06,1.365071684940186085e-06 +0.000000000000000000e+00,1.939489328985103985e-08,3.878978657970207971e-08,5.818467986955311956e-08,7.757957315940415942e-08,9.697446644925519927e-08,1.163693597391062391e-07,1.357642530289572657e-07,1.551591463188082924e-07,1.745540396086593190e-07,1.939489328985103456e-07,2.133438261883613722e-07,2.327387194782123988e-07,2.521336127680634255e-07,2.715285060579144256e-07,2.909233993477654258e-07,3.103182926376164259e-07,3.297131859274674261e-07,3.491080792173184262e-07,3.685029725071694264e-07,3.878978657970204265e-07,4.072927590868714267e-07,4.266876523767224268e-07,4.460825456665734270e-07,4.654774389564244271e-07,4.848723322462754802e-07,5.042672255361265333e-07,5.236621188259775864e-07,5.430570121158286395e-07,5.624519054056796926e-07,5.818467986955307456e-07,6.012416919853817987e-07,6.206365852752328518e-07,6.400314785650839049e-07,6.594263718549349580e-07,6.788212651447860111e-07,6.982161584346370642e-07,7.176110517244881173e-07,7.370059450143391704e-07,7.564008383041902234e-07,7.757957315940412765e-07,7.951906248838923296e-07,8.145855181737433827e-07,8.339804114635944358e-07,8.533753047534454889e-07,8.727701980432965420e-07,8.921650913331475951e-07,9.115599846229986482e-07,9.309548779128497012e-07,9.503497712027007543e-07,9.697446644925518074e-07,9.891395577824028605e-07,1.008534451072253914e-06,1.027929344362104967e-06,1.047324237651956020e-06,1.066719130941807073e-06,1.086114024231658126e-06,1.105508917521509179e-06,1.124903810811360232e-06,1.144298704101211285e-06,1.163693597391062338e-06,1.183088490680913391e-06,1.202483383970764444e-06,1.221878277260615498e-06 +0.000000000000000000e+00,2.026287559414752933e-08,4.052575118829505865e-08,6.078862678244259128e-08,8.105150237659013054e-08,1.013143779707376698e-07,1.215772535648852090e-07,1.418401291590327615e-07,1.621030047531803140e-07,1.823658803473278665e-07,2.026287559414754190e-07,2.228916315356229715e-07,2.431545071297705240e-07,2.634173827239180764e-07,2.836802583180656289e-07,3.039431339122131814e-07,3.242060095063607339e-07,3.444688851005082864e-07,3.647317606946558389e-07,3.849946362888033914e-07,4.052575118829509438e-07,4.255203874770984963e-07,4.457832630712460488e-07,4.660461386653936013e-07,4.863090142595411538e-07,5.065718898536886533e-07,5.268347654478361529e-07,5.470976410419836524e-07,5.673605166361311520e-07,5.876233922302786515e-07,6.078862678244261511e-07,6.281491434185736506e-07,6.484120190127211502e-07,6.686748946068686497e-07,6.889377702010161493e-07,7.092006457951636488e-07,7.294635213893111484e-07,7.497263969834586479e-07,7.699892725776061474e-07,7.902521481717536470e-07,8.105150237659011465e-07,8.307778993600486461e-07,8.510407749541961456e-07,8.713036505483436452e-07,8.915665261424911447e-07,9.118294017366386443e-07,9.320922773307861438e-07,9.523551529249336434e-07,9.726180285190812488e-07,9.928809041132288542e-07,1.013143779707376460e-06,1.033406655301524065e-06,1.053669530895671670e-06,1.073932406489819276e-06,1.094195282083966881e-06,1.114458157678114487e-06,1.134721033272262092e-06,1.154983908866409698e-06,1.175246784460557303e-06,1.195509660054704908e-06,1.215772535648852514e-06,1.236035411243000119e-06,1.256298286837147725e-06,1.276561162431295330e-06 +0.000000000000000000e+00,2.166780452286614882e-08,4.333560904573229764e-08,6.500341356859845307e-08,8.667121809146460851e-08,1.083390226143307639e-07,1.300068271371969061e-07,1.516746316600630484e-07,1.733424361829291906e-07,1.950102407057953328e-07,2.166780452286614750e-07,2.383458497515276172e-07,2.600136542743937594e-07,2.816814587972598751e-07,3.033492633201259908e-07,3.250170678429921066e-07,3.466848723658582223e-07,3.683526768887243380e-07,3.900204814115904537e-07,4.116882859344565695e-07,4.333560904573226852e-07,4.550238949801888009e-07,4.766916995030549167e-07,4.983595040259210324e-07,5.200273085487872011e-07,5.416951130716533698e-07,5.633629175945195384e-07,5.850307221173857071e-07,6.066985266402518758e-07,6.283663311631180444e-07,6.500341356859842131e-07,6.717019402088503818e-07,6.933697447317165505e-07,7.150375492545827191e-07,7.367053537774488878e-07,7.583731583003150565e-07,7.800409628231812251e-07,8.017087673460473938e-07,8.233765718689135625e-07,8.450443763917797312e-07,8.667121809146458998e-07,8.883799854375120685e-07,9.100477899603782372e-07,9.317155944832444058e-07,9.533833990061105745e-07,9.750512035289766373e-07,9.967190080518427001e-07,1.018386812574708763e-06,1.040054617097574826e-06,1.061722421620440888e-06,1.083390226143306951e-06,1.105058030666173014e-06,1.126725835189039077e-06,1.148393639711905140e-06,1.170061444234771202e-06,1.191729248757637265e-06,1.213397053280503328e-06,1.235064857803369391e-06,1.256732662326235454e-06,1.278400466849101516e-06,1.300068271371967579e-06,1.321736075894833642e-06,1.343403880417699705e-06,1.365071684940565768e-06 +0.000000000000000000e+00,1.939489328985660182e-08,3.878978657971320363e-08,5.818467986956980876e-08,7.757957315942642050e-08,9.697446644928303224e-08,1.163693597391396440e-07,1.357642530289962557e-07,1.551591463188528675e-07,1.745540396087094792e-07,1.939489328985660910e-07,2.133438261884227027e-07,2.327387194782793144e-07,2.521336127681358997e-07,2.715285060579924585e-07,2.909233993478490173e-07,3.103182926377055761e-07,3.297131859275621349e-07,3.491080792174186937e-07,3.685029725072752525e-07,3.878978657971318113e-07,4.072927590869883701e-07,4.266876523768449289e-07,4.460825456667014877e-07,4.654774389565580466e-07,4.848723322464146054e-07,5.042672255362711642e-07,5.236621188261277230e-07,5.430570121159842818e-07,5.624519054058408406e-07,5.818467986956973994e-07,6.012416919855539582e-07,6.206365852754105170e-07,6.400314785652670758e-07,6.594263718551236346e-07,6.788212651449801934e-07,6.982161584348367522e-07,7.176110517246933110e-07,7.370059450145498698e-07,7.564008383044064286e-07,7.757957315942629874e-07,7.951906248841195462e-07,8.145855181739761050e-07,8.339804114638326638e-07,8.533753047536892226e-07,8.727701980435457814e-07,8.921650913334023402e-07,9.115599846232588990e-07,9.309548779131154578e-07,9.503497712029720166e-07,9.697446644928285754e-07,9.891395577826851342e-07,1.008534451072541693e-06,1.027929344362398252e-06,1.047324237652254811e-06,1.066719130942111369e-06,1.086114024231967928e-06,1.105508917521824487e-06,1.124903810811681046e-06,1.144298704101537605e-06,1.163693597391394163e-06,1.183088490681250722e-06,1.202483383971107281e-06,1.221878277260963840e-06 +0.000000000000000000e+00,2.026287559415302180e-08,4.052575118830604361e-08,6.078862678245906872e-08,8.105150237661210045e-08,1.013143779707651322e-07,1.215772535649181639e-07,1.418401291590711956e-07,1.621030047532242274e-07,1.823658803473772591e-07,2.026287559415302908e-07,2.228916315356833226e-07,2.431545071298363808e-07,2.634173827239894390e-07,2.836802583181424972e-07,3.039431339122955554e-07,3.242060095064486136e-07,3.444688851006016718e-07,3.647317606947547300e-07,3.849946362889077882e-07,4.052575118830608464e-07,4.255203874772139046e-07,4.457832630713669628e-07,4.660461386655200210e-07,4.863090142596730792e-07,5.065718898538260844e-07,5.268347654479790897e-07,5.470976410421320950e-07,5.673605166362851002e-07,5.876233922304381055e-07,6.078862678245911107e-07,6.281491434187441160e-07,6.484120190128971213e-07,6.686748946070501265e-07,6.889377702012031318e-07,7.092006457953561370e-07,7.294635213895091423e-07,7.497263969836621476e-07,7.699892725778151528e-07,7.902521481719681581e-07,8.105150237661211633e-07,8.307778993602741686e-07,8.510407749544271739e-07,8.713036505485801791e-07,8.915665261427331844e-07,9.118294017368861897e-07,9.320922773310391949e-07,9.523551529251922002e-07,9.726180285193450996e-07,9.928809041134979989e-07,1.013143779707650898e-06,1.033406655301803798e-06,1.053669530895956697e-06,1.073932406490109596e-06,1.094195282084262496e-06,1.114458157678415395e-06,1.134721033272568295e-06,1.154983908866721194e-06,1.175246784460874093e-06,1.195509660055026993e-06,1.215772535649179892e-06,1.236035411243332792e-06,1.256298286837485691e-06,1.276561162431638590e-06 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.090061733237998934e-09,1.218012346647599787e-08,1.827018519971399763e-08,2.436024693295199904e-08,3.045030866619000046e-08,3.654037039942800187e-08,4.263043213266600329e-08,4.872049386590400471e-08,5.481055559914200612e-08,6.090061733238000092e-08,6.699067906561799572e-08,7.308074079885599051e-08,7.917080253209398531e-08,8.526086426533198011e-08,9.135092599856997491e-08,9.744098773180796971e-08,1.035310494650459645e-07,1.096211111982839593e-07,1.157111729315219541e-07,1.218012346647599489e-07,1.278912963979979437e-07,1.339813581312359385e-07,1.400714198644739333e-07,1.461614815977119281e-07,1.522515433309499229e-07,1.583416050641879177e-07,1.644316667974259125e-07,1.705217285306639073e-07,1.766117902639019021e-07,1.827018519971398969e-07,1.887919137303778917e-07,1.948819754636158865e-07,2.009720371968538813e-07,2.070620989300918761e-07,2.131521606633298709e-07,2.192422223965678657e-07,2.253322841298058605e-07,2.314223458630438553e-07,2.375124075962818501e-07,2.436024693295198449e-07,2.496925310627578661e-07,2.557825927959958874e-07,2.618726545292339087e-07,2.679627162624719299e-07,2.740527779957099512e-07,2.801428397289479725e-07,2.862329014621859937e-07,2.923229631954240150e-07,2.984130249286620363e-07,3.045030866619000575e-07,3.105931483951380788e-07,3.166832101283761001e-07,3.227732718616141213e-07,3.288633335948521426e-07,3.349533953280901639e-07,3.410434570613281851e-07,3.471335187945662064e-07,3.532235805278042277e-07,3.593136422610422489e-07,3.654037039942802702e-07,3.714937657275182915e-07,3.775838274607563127e-07,3.836738891939943340e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.183709370682568583e-09,1.236741874136513717e-08,1.855112811204770492e-08,2.473483748273027102e-08,3.091854685341283381e-08,3.710225622409539661e-08,4.328596559477795940e-08,4.946967496546052219e-08,5.565338433614308498e-08,6.183709370682564116e-08,6.802080307750819733e-08,7.420451244819075351e-08,8.038822181887330968e-08,8.657193118955586586e-08,9.275564056023842203e-08,9.893934993092097821e-08,1.051230593016035344e-07,1.113067686722860906e-07,1.174904780429686467e-07,1.236741874136512029e-07,1.298578967843337591e-07,1.360416061550163153e-07,1.422253155256988714e-07,1.484090248963814276e-07,1.545927342670639838e-07,1.607764436377465400e-07,1.669601530084290961e-07,1.731438623791116523e-07,1.793275717497942085e-07,1.855112811204767647e-07,1.916949904911593208e-07,1.978786998618418770e-07,2.040624092325244332e-07,2.102461186032069894e-07,2.164298279738895455e-07,2.226135373445721017e-07,2.287972467152546579e-07,2.349809560859372141e-07,2.411646654566197438e-07,2.473483748273022470e-07,2.535320841979847502e-07,2.597157935686672535e-07,2.658995029393497567e-07,2.720832123100322599e-07,2.782669216807147632e-07,2.844506310513972664e-07,2.906343404220797696e-07,2.968180497927622729e-07,3.030017591634447761e-07,3.091854685341272794e-07,3.153691779048097826e-07,3.215528872754922858e-07,3.277365966461747891e-07,3.339203060168572923e-07,3.401040153875397955e-07,3.462877247582222988e-07,3.524714341289048020e-07,3.586551434995873052e-07,3.648388528702698085e-07,3.710225622409523117e-07,3.772062716116348149e-07,3.833899809823173182e-07,3.895736903529998214e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.054336899164382006e-09,6.108673798328764012e-09,9.163010697493145605e-09,1.221734759665752637e-08,1.527168449582190714e-08,1.832602139498628790e-08,2.138035829415066867e-08,2.443469519331504943e-08,2.748903209247943020e-08,3.054336899164380765e-08,3.359770589080818842e-08,3.665204278997256918e-08,3.970637968913694995e-08,4.276071658830133072e-08,4.581505348746571148e-08,4.886939038663009225e-08,5.192372728579447301e-08,5.497806418495885378e-08,5.803240108412323454e-08,6.108673798328761531e-08,6.414107488245199607e-08,6.719541178161637684e-08,7.024974868078075760e-08,7.330408557994513837e-08,7.635842247910951913e-08,7.941275937827389990e-08,8.246709627743828066e-08,8.552143317660266143e-08,8.857577007576704220e-08,9.163010697493142296e-08,9.468444387409580373e-08,9.773878077326018449e-08,1.007931176724245653e-07,1.038474545715889460e-07,1.069017914707533268e-07,1.099561283699177076e-07,1.130104652690820883e-07,1.160648021682464691e-07,1.191191390674108498e-07,1.221734759665752306e-07,1.252278128657396114e-07,1.282821497649039921e-07,1.313364866640683729e-07,1.343908235632327537e-07,1.374451604623971344e-07,1.404994973615615152e-07,1.435538342607258960e-07,1.466081711598902767e-07,1.496625080590546575e-07,1.527168449582190383e-07,1.557711818573834190e-07,1.588255187565477998e-07,1.618798556557121806e-07,1.649341925548765613e-07,1.679885294540409421e-07,1.710428663532053229e-07,1.740972032523697036e-07,1.771515401515340844e-07,1.802058770506984652e-07,1.832602139498628459e-07,1.863145508490272267e-07,1.893688877481916075e-07,1.924232246473559882e-07 +0.000000000000000000e+00,4.317446314639556503e-09,8.634892629279113005e-09,1.295233894391866951e-08,1.726978525855822601e-08,2.158723157319778086e-08,2.590467788783733571e-08,3.022212420247689056e-08,3.453957051711644540e-08,3.885701683175600025e-08,4.317446314639555510e-08,4.749190946103510995e-08,5.180935577567466480e-08,5.612680209031421965e-08,6.044424840495378111e-08,6.476169471959334258e-08,6.907914103423290404e-08,7.339658734887246551e-08,7.771403366351202697e-08,8.203147997815158844e-08,8.634892629279114991e-08,9.066637260743071137e-08,9.498381892207027284e-08,9.930126523670983430e-08,1.036187115513493958e-07,1.079361578659889572e-07,1.122536041806285187e-07,1.165710504952680802e-07,1.208884968099076416e-07,1.252059431245471899e-07,1.295233894391867381e-07,1.338408357538262863e-07,1.381582820684658346e-07,1.424757283831053828e-07,1.467931746977449310e-07,1.511106210123844792e-07,1.554280673270240275e-07,1.597455136416635757e-07,1.640629599563031239e-07,1.683804062709426722e-07,1.726978525855822204e-07,1.770152989002217686e-07,1.813327452148613169e-07,1.856501915295008651e-07,1.899676378441404133e-07,1.942850841587799616e-07,1.986025304734195098e-07,2.029199767880590580e-07,2.072374231026986062e-07,2.115548694173381545e-07,2.158723157319777027e-07,2.201897620466172509e-07,2.245072083612567992e-07,2.288246546758963474e-07,2.331421009905358956e-07,2.374595473051754439e-07,2.417769936198150186e-07,2.460944399344545933e-07,2.504118862490941680e-07,2.547293325637337427e-07,2.590467788783733174e-07,2.633642251930128921e-07,2.676816715076524668e-07,2.719991178222920415e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.137507010777347895e-09,1.227501402155469579e-08,1.841252103233204534e-08,2.455002804310939489e-08,3.068753505388674444e-08,3.682504206466409068e-08,4.296254907544143692e-08,4.910005608621878316e-08,5.523756309699612941e-08,6.137507010777347565e-08,6.751257711855081527e-08,7.365008412932815489e-08,7.978759114010549452e-08,8.592509815088283414e-08,9.206260516166017376e-08,9.820011217243751339e-08,1.043376191832148530e-07,1.104751261939921926e-07,1.166126332047695323e-07,1.227501402155468719e-07,1.288876472263242115e-07,1.350251542371015511e-07,1.411626612478788908e-07,1.473001682586562304e-07,1.534376752694335700e-07,1.595751822802109096e-07,1.657126892909882492e-07,1.718501963017655889e-07,1.779877033125429285e-07,1.841252103233202681e-07,1.902627173340976077e-07,1.964002243448749474e-07,2.025377313556522870e-07,2.086752383664296266e-07,2.148127453772069662e-07,2.209502523879843059e-07,2.270877593987616455e-07,2.332252664095389851e-07,2.393627734203163247e-07,2.455002804310936908e-07,2.516377874418710569e-07,2.577752944526484230e-07,2.639128014634257891e-07,2.700503084742031552e-07,2.761878154849805213e-07,2.823253224957578874e-07,2.884628295065352535e-07,2.946003365173126196e-07,3.007378435280899857e-07,3.068753505388673518e-07,3.130128575496447179e-07,3.191503645604220839e-07,3.252878715711994500e-07,3.314253785819768161e-07,3.375628855927541822e-07,3.437003926035315483e-07,3.498378996143089144e-07,3.559754066250862805e-07,3.621129136358636466e-07,3.682504206466410127e-07,3.743879276574183788e-07,3.805254346681957449e-07,3.866629416789731110e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.915531090506816309e-09,5.831062181013632619e-09,8.746593271520449342e-09,1.166212436202726689e-08,1.457765545253408444e-08,1.749318654304090199e-08,2.040871763354771954e-08,2.332424872405453709e-08,2.623977981456135464e-08,2.915531090506817219e-08,3.207084199557498644e-08,3.498637308608179737e-08,3.790190417658860830e-08,4.081743526709541923e-08,4.373296635760223017e-08,4.664849744810904110e-08,4.956402853861585203e-08,5.247955962912266296e-08,5.539509071962947390e-08,5.831062181013628483e-08,6.122615290064309576e-08,6.414168399114990670e-08,6.705721508165671763e-08,6.997274617216352856e-08,7.288827726267033949e-08,7.580380835317715043e-08,7.871933944368396136e-08,8.163487053419077229e-08,8.455040162469758323e-08,8.746593271520439416e-08,9.038146380571120509e-08,9.329699489621801602e-08,9.621252598672482696e-08,9.912805707723163789e-08,1.020435881677384488e-07,1.049591192582452598e-07,1.078746503487520707e-07,1.107901814392588816e-07,1.137057125297656926e-07,1.166212436202725035e-07,1.195367747107793012e-07,1.224523058012861121e-07,1.253678368917929230e-07,1.282833679822997340e-07,1.311988990728065449e-07,1.341144301633133558e-07,1.370299612538201668e-07,1.399454923443269777e-07,1.428610234348337886e-07,1.457765545253405996e-07,1.486920856158474105e-07,1.516076167063542214e-07,1.545231477968610324e-07,1.574386788873678433e-07,1.603542099778746542e-07,1.632697410683814652e-07,1.661852721588882761e-07,1.691008032493950870e-07,1.720163343399018980e-07,1.749318654304087089e-07,1.778473965209155198e-07,1.807629276114223308e-07,1.836784587019291417e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.090061733240080120e-09,1.218012346648016024e-08,1.827018519972024119e-08,2.436024693296032379e-08,3.045030866620040308e-08,3.654037039944048238e-08,4.263043213268056167e-08,4.872049386592064096e-08,5.481055559916072025e-08,6.090061733240080617e-08,6.699067906564089208e-08,7.308074079888097799e-08,7.917080253212106390e-08,8.526086426536114981e-08,9.135092599860123572e-08,9.744098773184132163e-08,1.035310494650814075e-07,1.096211111983214934e-07,1.157111729315615794e-07,1.218012346648016653e-07,1.278912963980417512e-07,1.339813581312818371e-07,1.400714198645219230e-07,1.461614815977620089e-07,1.522515433310020948e-07,1.583416050642421807e-07,1.644316667974822666e-07,1.705217285307223526e-07,1.766117902639624385e-07,1.827018519972025244e-07,1.887919137304426103e-07,1.948819754636826962e-07,2.009720371969227821e-07,2.070620989301628680e-07,2.131521606634029539e-07,2.192422223966430398e-07,2.253322841298831257e-07,2.314223458631232117e-07,2.375124075963632976e-07,2.436024693296033835e-07,2.496925310628434694e-07,2.557825927960835553e-07,2.618726545293236412e-07,2.679627162625637271e-07,2.740527779958038130e-07,2.801428397290438989e-07,2.862329014622839849e-07,2.923229631955240708e-07,2.984130249287641567e-07,3.045030866620042426e-07,3.105931483952443285e-07,3.166832101284844144e-07,3.227732718617245003e-07,3.288633335949645862e-07,3.349533953282046721e-07,3.410434570614447580e-07,3.471335187946848440e-07,3.532235805279249299e-07,3.593136422611650158e-07,3.654037039944051017e-07,3.714937657276451876e-07,3.775838274608852735e-07,3.836738891941253594e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.137507010778362019e-09,1.227501402155672404e-08,1.841252103233508606e-08,2.455002804311344808e-08,3.068753505389180679e-08,3.682504206467016550e-08,4.296254907544852421e-08,4.910005608622688292e-08,5.523756309700524163e-08,6.137507010778360034e-08,6.751257711856195905e-08,7.365008412934031776e-08,7.978759114011867647e-08,8.592509815089703518e-08,9.206260516167539389e-08,9.820011217245375260e-08,1.043376191832321113e-07,1.104751261940104700e-07,1.166126332047888287e-07,1.227501402155671742e-07,1.288876472263455197e-07,1.350251542371238652e-07,1.411626612479022106e-07,1.473001682586805561e-07,1.534376752694589016e-07,1.595751822802372471e-07,1.657126892910155925e-07,1.718501963017939380e-07,1.779877033125722835e-07,1.841252103233506290e-07,1.902627173341289744e-07,1.964002243449073199e-07,2.025377313556856654e-07,2.086752383664640109e-07,2.148127453772423563e-07,2.209502523880207018e-07,2.270877593987990473e-07,2.332252664095773928e-07,2.393627734203557118e-07,2.455002804311340308e-07,2.516377874419123498e-07,2.577752944526906688e-07,2.639128014634689878e-07,2.700503084742473068e-07,2.761878154850256258e-07,2.823253224958039448e-07,2.884628295065822638e-07,2.946003365173605828e-07,3.007378435281389018e-07,3.068753505389172208e-07,3.130128575496955398e-07,3.191503645604738588e-07,3.252878715712521778e-07,3.314253785820304968e-07,3.375628855928088159e-07,3.437003926035871349e-07,3.498378996143654539e-07,3.559754066251437729e-07,3.621129136359220919e-07,3.682504206467004109e-07,3.743879276574787299e-07,3.805254346682570489e-07,3.866629416790353679e-07 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.054336899165417223e-09,6.108673798330834445e-09,9.163010697496252495e-09,1.221734759666167055e-08,1.527168449582708859e-08,1.832602139499250499e-08,2.138035829415792139e-08,2.443469519332333778e-08,2.748903209248875418e-08,3.054336899165417057e-08,3.359770589081958366e-08,3.665204278998499675e-08,3.970637968915040983e-08,4.276071658831582292e-08,4.581505348748123601e-08,4.886939038664664909e-08,5.192372728581206218e-08,5.497806418497747527e-08,5.803240108414288835e-08,6.108673798330830144e-08,6.414107488247371453e-08,6.719541178163912761e-08,7.024974868080454070e-08,7.330408557996995379e-08,7.635842247913536687e-08,7.941275937830077996e-08,8.246709627746619305e-08,8.552143317663160613e-08,8.857577007579701922e-08,9.163010697496243231e-08,9.468444387412784539e-08,9.773878077329325848e-08,1.007931176724586716e-07,1.038474545716240847e-07,1.069017914707894977e-07,1.099561283699549108e-07,1.130104652691203239e-07,1.160648021682857370e-07,1.191191390674511501e-07,1.221734759666165764e-07,1.252278128657819895e-07,1.282821497649474026e-07,1.313364866641128157e-07,1.343908235632782288e-07,1.374451604624436418e-07,1.404994973616090549e-07,1.435538342607744680e-07,1.466081711599398811e-07,1.496625080591052942e-07,1.527168449582707073e-07,1.557711818574361204e-07,1.588255187566015335e-07,1.618798556557669465e-07,1.649341925549323596e-07,1.679885294540977727e-07,1.710428663532631858e-07,1.740972032524285989e-07,1.771515401515940120e-07,1.802058770507594251e-07,1.832602139499248381e-07,1.863145508490902512e-07,1.893688877482556643e-07,1.924232246474210774e-07 +0.000000000000000000e+00,4.317446314641473080e-09,8.634892629282946160e-09,1.295233894392441841e-08,1.726978525856588901e-08,2.158723157320735961e-08,2.590467788784883021e-08,3.022212420249029750e-08,3.453957051713176479e-08,3.885701683177323208e-08,4.317446314641469937e-08,4.749190946105616666e-08,5.180935577569763395e-08,5.612680209033910124e-08,6.044424840498056853e-08,6.476169471962203582e-08,6.907914103426350311e-08,7.339658734890497040e-08,7.771403366354643769e-08,8.203147997818790498e-08,8.634892629282937227e-08,9.066637260747083956e-08,9.498381892211230685e-08,9.930126523675377414e-08,1.036187115513952414e-07,1.079361578660367087e-07,1.122536041806781760e-07,1.165710504953196433e-07,1.208884968099611106e-07,1.252059431246025646e-07,1.295233894392440187e-07,1.338408357538854728e-07,1.381582820685269268e-07,1.424757283831683809e-07,1.467931746978098349e-07,1.511106210124512890e-07,1.554280673270927430e-07,1.597455136417341971e-07,1.640629599563756511e-07,1.683804062710171052e-07,1.726978525856585592e-07,1.770152989003000133e-07,1.813327452149414674e-07,1.856501915295829214e-07,1.899676378442243755e-07,1.942850841588658295e-07,1.986025304735072836e-07,2.029199767881487376e-07,2.072374231027901917e-07,2.115548694174316457e-07,2.158723157320730998e-07,2.201897620467145539e-07,2.245072083613560079e-07,2.288246546759974620e-07,2.331421009906389160e-07,2.374595473052803701e-07,2.417769936199218506e-07,2.460944399345633311e-07,2.504118862492048116e-07,2.547293325638462922e-07,2.590467788784877727e-07,2.633642251931292532e-07,2.676816715077707337e-07,2.719991178224122143e-07 +0.000000000000000000e+00,1.132564423495885700e-08,2.265128846991771400e-08,3.397693270487657100e-08,4.530257693983542800e-08,5.662822117479428500e-08,6.795386540975314200e-08,7.927950964471200562e-08,9.060515387967086924e-08,1.019307981146297329e-07,1.132564423495885965e-07,1.245820865845474601e-07,1.359077308195063105e-07,1.472333750544651609e-07,1.585590192894240112e-07,1.698846635243828616e-07,1.812103077593417120e-07,1.925359519943005624e-07,2.038615962292594128e-07,2.151872404642182632e-07,2.265128846991771135e-07,2.378385289341359639e-07,2.491641731690948143e-07,2.604898174040536647e-07,2.718154616390125151e-07,2.831411058739713655e-07,2.944667501089302158e-07,3.057923943438890662e-07,3.171180385788479166e-07,3.284436828138067670e-07,3.397693270487656174e-07,3.510949712837244678e-07,3.624206155186833181e-07,3.737462597536421685e-07,3.850719039886010189e-07,3.963975482235598693e-07,4.077231924585187197e-07,4.190488366934775701e-07,4.303744809284364204e-07,4.417001251633952708e-07,4.530257693983541212e-07,4.643514136333129716e-07,4.756770578682718220e-07,4.870027021032306724e-07,4.983283463381895227e-07,5.096539905731483731e-07,5.209796348081072235e-07,5.323052790430660739e-07,5.436309232780249243e-07,5.549565675129837747e-07,5.662822117479426250e-07,5.776078559829014754e-07,5.889335002178603258e-07,6.002591444528191762e-07,6.115847886877780266e-07,6.229104329227368770e-07,6.342360771576957273e-07,6.455617213926545777e-07,6.568873656276134281e-07,6.682130098625722785e-07,6.795386540975311289e-07,6.908642983324899793e-07,7.021899425674488296e-07,7.135155868024076800e-07 +0.000000000000000000e+00,1.135807374313940971e-08,2.271614748627881941e-08,3.407422122941823077e-08,4.543229497255764544e-08,5.679036871569706011e-08,6.814844245883647477e-08,7.950651620197589606e-08,9.086458994511531735e-08,1.022226636882547386e-07,1.135807374313941599e-07,1.249388111745335812e-07,1.362968849176730025e-07,1.476549586608124238e-07,1.590130324039518451e-07,1.703711061470912663e-07,1.817291798902306876e-07,1.930872536333701089e-07,2.044453273765095302e-07,2.158034011196489515e-07,2.271614748627883728e-07,2.385195486059277676e-07,2.498776223490671624e-07,2.612356960922065572e-07,2.725937698353459520e-07,2.839518435784853469e-07,2.953099173216247417e-07,3.066679910647641365e-07,3.180260648079035313e-07,3.293841385510429261e-07,3.407422122941823209e-07,3.521002860373217157e-07,3.634583597804611106e-07,3.748164335236005054e-07,3.861745072667399002e-07,3.975325810098792950e-07,4.088906547530186898e-07,4.202487284961580846e-07,4.316068022392974795e-07,4.429648759824368743e-07,4.543229497255762691e-07,4.656810234687156639e-07,4.770390972118551117e-07,4.883971709549945594e-07,4.997552446981340072e-07,5.111133184412734549e-07,5.224713921844129027e-07,5.338294659275523504e-07,5.451875396706917982e-07,5.565456134138312460e-07,5.679036871569706937e-07,5.792617609001101415e-07,5.906198346432495892e-07,6.019779083863890370e-07,6.133359821295284847e-07,6.246940558726679325e-07,6.360521296158073802e-07,6.474102033589468280e-07,6.587682771020862758e-07,6.701263508452257235e-07,6.814844245883651713e-07,6.928424983315046190e-07,7.042005720746440668e-07,7.155586458177835145e-07 +0.000000000000000000e+00,8.779958733623485636e-09,1.755991746724697127e-08,2.633987620087045856e-08,3.511983493449394916e-08,4.389979366811743976e-08,5.267975240174093036e-08,6.145971113536442096e-08,7.023966986898791155e-08,7.901962860261140215e-08,8.779958733623489275e-08,9.657954606985838335e-08,1.053595048034818739e-07,1.141394635371053645e-07,1.229194222707288419e-07,1.316993810043523193e-07,1.404793397379757966e-07,1.492592984715992740e-07,1.580392572052227514e-07,1.668192159388462287e-07,1.755991746724697061e-07,1.843791334060931835e-07,1.931590921397166608e-07,2.019390508733401382e-07,2.107190096069636155e-07,2.194989683405870929e-07,2.282789270742105703e-07,2.370588858078340476e-07,2.458388445414575250e-07,2.546188032750810288e-07,2.633987620087045327e-07,2.721787207423280365e-07,2.809586794759515403e-07,2.897386382095750442e-07,2.985185969431985480e-07,3.072985556768220518e-07,3.160785144104455557e-07,3.248584731440690595e-07,3.336384318776925633e-07,3.424183906113160672e-07,3.511983493449395710e-07,3.599783080785630748e-07,3.687582668121865787e-07,3.775382255458100825e-07,3.863181842794335863e-07,3.950981430130570902e-07,4.038781017466805940e-07,4.126580604803040978e-07,4.214380192139276017e-07,4.302179779475511055e-07,4.389979366811746093e-07,4.477778954147981132e-07,4.565578541484216170e-07,4.653378128820451208e-07,4.741177716156686247e-07,4.828977303492921285e-07,4.916776890829155794e-07,5.004576478165390303e-07,5.092376065501624812e-07,5.180175652837859321e-07,5.267975240174093830e-07,5.355774827510328339e-07,5.443574414846562848e-07,5.531374002182797357e-07 +0.000000000000000000e+00,9.133543524668475694e-09,1.826708704933695139e-08,2.740063057400542543e-08,3.653417409867389616e-08,4.566771762334236689e-08,5.480126114801083762e-08,6.393480467267931497e-08,7.306834819734779231e-08,8.220189172201626966e-08,9.133543524668474701e-08,1.004689787713532244e-07,1.096025222960217017e-07,1.187360658206901791e-07,1.278696093453586564e-07,1.370031528700271337e-07,1.461366963946956111e-07,1.552702399193640884e-07,1.644037834440325658e-07,1.735373269687010431e-07,1.826708704933695205e-07,1.918044140180379978e-07,2.009379575427064752e-07,2.100715010673749525e-07,2.192050445920434299e-07,2.283385881167119072e-07,2.374721316413803846e-07,2.466056751660488884e-07,2.557392186907173657e-07,2.648727622153858431e-07,2.740063057400543204e-07,2.831398492647227978e-07,2.922733927893912751e-07,3.014069363140597525e-07,3.105404798387282298e-07,3.196740233633967072e-07,3.288075668880651845e-07,3.379411104127336619e-07,3.470746539374021392e-07,3.562081974620706166e-07,3.653417409867390939e-07,3.744752845114075713e-07,3.836088280360760486e-07,3.927423715607445260e-07,4.018759150854130033e-07,4.110094586100814807e-07,4.201430021347499580e-07,4.292765456594184354e-07,4.384100891840869127e-07,4.475436327087553900e-07,4.566771762334238674e-07,4.658107197580923447e-07,4.749442632827608221e-07,4.840778068074292994e-07,4.932113503320977768e-07,5.023448938567662541e-07,5.114784373814347315e-07,5.206119809061032088e-07,5.297455244307716862e-07,5.388790679554401635e-07,5.480126114801086409e-07,5.571461550047771182e-07,5.662796985294455956e-07,5.754132420541140729e-07 +0.000000000000000000e+00,1.134734077790862477e-08,2.269468155581724953e-08,3.404202233372587430e-08,4.538936311163449906e-08,5.673670388954312383e-08,6.808404466745174860e-08,7.943138544536037998e-08,9.077872622326901136e-08,1.021260670011776427e-07,1.134734077790862741e-07,1.248207485569949055e-07,1.361680893349035237e-07,1.475154301128121418e-07,1.588627708907207600e-07,1.702101116686293781e-07,1.815574524465379963e-07,1.929047932244466144e-07,2.042521340023552326e-07,2.155994747802638507e-07,2.269468155581724689e-07,2.382941563360810870e-07,2.496414971139897052e-07,2.609888378918983498e-07,2.723361786698069944e-07,2.836835194477156390e-07,2.950308602256242836e-07,3.063782010035329282e-07,3.177255417814415729e-07,3.290728825593502175e-07,3.404202233372588621e-07,3.517675641151675067e-07,3.631149048930761513e-07,3.744622456709847960e-07,3.858095864488934406e-07,3.971569272268020852e-07,4.085042680047107298e-07,4.198516087826193744e-07,4.311989495605280190e-07,4.425462903384366637e-07,4.538936311163453083e-07,4.652409718942539529e-07,4.765883126721625975e-07,4.879356534500712421e-07,4.992829942279799397e-07,5.106303350058886373e-07,5.219776757837973348e-07,5.333250165617060324e-07,5.446723573396147299e-07,5.560196981175234275e-07,5.673670388954321250e-07,5.787143796733408226e-07,5.900617204512495202e-07,6.014090612291582177e-07,6.127564020070669153e-07,6.241037427849756128e-07,6.354510835628843104e-07,6.467984243407930080e-07,6.581457651187017055e-07,6.694931058966104031e-07,6.808404466745191006e-07,6.921877874524277982e-07,7.035351282303364957e-07,7.148824690082451933e-07 +0.000000000000000000e+00,8.820636426442692687e-09,1.764127285288538537e-08,2.646190927932807641e-08,3.528254570577076413e-08,4.410318213221345185e-08,5.292381855865613958e-08,6.174445498509882068e-08,7.056509141154150179e-08,7.938572783798418290e-08,8.820636426442686400e-08,9.702700069086954511e-08,1.058476371173122262e-07,1.146682735437549073e-07,1.234889099701975884e-07,1.323095463966402695e-07,1.411301828230829506e-07,1.499508192495256317e-07,1.587714556759683129e-07,1.675920921024109940e-07,1.764127285288536751e-07,1.852333649552963562e-07,1.940540013817390373e-07,2.028746378081817184e-07,2.116952742346243995e-07,2.205159106610670806e-07,2.293365470875097617e-07,2.381571835139524428e-07,2.469778199403951239e-07,2.557984563668378050e-07,2.646190927932804861e-07,2.734397292197231672e-07,2.822603656461658483e-07,2.910810020726085294e-07,2.999016384990512105e-07,3.087222749254938917e-07,3.175429113519365728e-07,3.263635477783792539e-07,3.351841842048219350e-07,3.440048206312646161e-07,3.528254570577072972e-07,3.616460934841499783e-07,3.704667299105926594e-07,3.792873663370353405e-07,3.881080027634780216e-07,3.969286391899207027e-07,4.057492756163633838e-07,4.145699120428060649e-07,4.233905484692487460e-07,4.322111848956914271e-07,4.410318213221341082e-07,4.498524577485767894e-07,4.586730941750194705e-07,4.674937306014621516e-07,4.763143670279048327e-07,4.851350034543474608e-07,4.939556398807901419e-07,5.027762763072328231e-07,5.115969127336755042e-07,5.204175491601181853e-07,5.292381855865608664e-07,5.380588220130035475e-07,5.468794584394462286e-07,5.557000948658889097e-07 +0.000000000000000000e+00,1.132564423496272490e-08,2.265128846992544979e-08,3.397693270488817138e-08,4.530257693985089297e-08,5.662822117481361456e-08,6.795386540977634277e-08,7.927950964473907097e-08,9.060515387970179918e-08,1.019307981146645274e-07,1.132564423496272556e-07,1.245820865845899706e-07,1.359077308195526855e-07,1.472333750545154005e-07,1.585590192894781155e-07,1.698846635244408304e-07,1.812103077594035454e-07,1.925359519943662604e-07,2.038615962293289754e-07,2.151872404642916903e-07,2.265128846992544053e-07,2.378385289342171203e-07,2.491641731691798352e-07,2.604898174041425502e-07,2.718154616391052652e-07,2.831411058740679802e-07,2.944667501090306951e-07,3.057923943439934101e-07,3.171180385789561251e-07,3.284436828139188400e-07,3.397693270488815550e-07,3.510949712838442700e-07,3.624206155188069850e-07,3.737462597537696999e-07,3.850719039887324149e-07,3.963975482236951299e-07,4.077231924586578448e-07,4.190488366936205598e-07,4.303744809285832748e-07,4.417001251635459898e-07,4.530257693985087047e-07,4.643514136334714197e-07,4.756770578684341347e-07,4.870027021033969026e-07,4.983283463383596705e-07,5.096539905733224384e-07,5.209796348082852063e-07,5.323052790432479742e-07,5.436309232782107421e-07,5.549565675131735100e-07,5.662822117481362779e-07,5.776078559830990459e-07,5.889335002180618138e-07,6.002591444530245817e-07,6.115847886879873496e-07,6.229104329229501175e-07,6.342360771579128854e-07,6.455617213928756533e-07,6.568873656278384212e-07,6.682130098628011891e-07,6.795386540977639571e-07,6.908642983327267250e-07,7.021899425676894929e-07,7.135155868026522608e-07 +0.000000000000000000e+00,1.134734077791053721e-08,2.269468155582107442e-08,3.404202233373161162e-08,4.538936311164214883e-08,5.673670388955268604e-08,6.808404466746322325e-08,7.943138544537376045e-08,9.077872622328429766e-08,1.021260670011948349e-07,1.134734077791053721e-07,1.248207485570158960e-07,1.361680893349264200e-07,1.475154301128369440e-07,1.588627708907474680e-07,1.702101116686579919e-07,1.815574524465685159e-07,1.929047932244790399e-07,2.042521340023895639e-07,2.155994747803000878e-07,2.269468155582106118e-07,2.382941563361211358e-07,2.496414971140316862e-07,2.609888378919422367e-07,2.723361786698527871e-07,2.836835194477633375e-07,2.950308602256738880e-07,3.063782010035844384e-07,3.177255417814949889e-07,3.290728825594055393e-07,3.404202233373160898e-07,3.517675641152266402e-07,3.631149048931371906e-07,3.744622456710477411e-07,3.858095864489582915e-07,3.971569272268688420e-07,4.085042680047793924e-07,4.198516087826899429e-07,4.311989495606004933e-07,4.425462903385110437e-07,4.538936311164215942e-07,4.652409718943321446e-07,4.765883126722426951e-07,4.879356534501531926e-07,4.992829942280636901e-07,5.106303350059741876e-07,5.219776757838846851e-07,5.333250165617951826e-07,5.446723573397056801e-07,5.560196981176161776e-07,5.673670388955266751e-07,5.787143796734371726e-07,5.900617204513476701e-07,6.014090612292581676e-07,6.127564020071686651e-07,6.241037427850791626e-07,6.354510835629896601e-07,6.467984243409001576e-07,6.581457651188106551e-07,6.694931058967211526e-07,6.808404466746316501e-07,6.921877874525421476e-07,7.035351282304526451e-07,7.148824690083631426e-07 +0.000000000000000000e+00,8.779958733626519734e-09,1.755991746725303947e-08,2.633987620087955755e-08,3.511983493450607232e-08,4.389979366813258709e-08,5.267975240175910186e-08,6.145971113538562325e-08,7.023966986901214464e-08,7.901962860263866603e-08,8.779958733626518741e-08,9.657954606989170880e-08,1.053595048035182302e-07,1.141394635371447516e-07,1.229194222707712730e-07,1.316993810043977944e-07,1.404793397380243157e-07,1.492592984716508371e-07,1.580392572052773585e-07,1.668192159389038799e-07,1.755991746725304013e-07,1.843791334061569227e-07,1.931590921397834441e-07,2.019390508734099655e-07,2.107190096070364869e-07,2.194989683406630082e-07,2.282789270742895296e-07,2.370588858079160510e-07,2.458388445415425989e-07,2.546188032751691203e-07,2.633987620087956417e-07,2.721787207424221630e-07,2.809586794760486844e-07,2.897386382096752058e-07,2.985185969433017272e-07,3.072985556769282486e-07,3.160785144105547700e-07,3.248584731441812914e-07,3.336384318778078128e-07,3.424183906114343341e-07,3.511983493450608555e-07,3.599783080786873769e-07,3.687582668123138983e-07,3.775382255459404197e-07,3.863181842795669411e-07,3.950981430131934625e-07,4.038781017468199839e-07,4.126580604804465053e-07,4.214380192140730266e-07,4.302179779476995480e-07,4.389979366813260694e-07,4.477778954149525908e-07,4.565578541485791122e-07,4.653378128822056336e-07,4.741177716158321550e-07,4.828977303494586764e-07,4.916776890830851978e-07,5.004576478167117191e-07,5.092376065503382405e-07,5.180175652839647619e-07,5.267975240175912833e-07,5.355774827512178047e-07,5.443574414848443261e-07,5.531374002184708475e-07 +0.000000000000000000e+00,9.133543524671938272e-09,1.826708704934387654e-08,2.740063057401581481e-08,3.653417409868775309e-08,4.566771762335969136e-08,5.480126114803162963e-08,6.393480467270356128e-08,7.306834819737549294e-08,8.220189172204742459e-08,9.133543524671935625e-08,1.004689787713912879e-07,1.096025222960632196e-07,1.187360658207351512e-07,1.278696093454070696e-07,1.370031528700789880e-07,1.461366963947509065e-07,1.552702399194228249e-07,1.644037834440947433e-07,1.735373269687666617e-07,1.826708704934385801e-07,1.918044140181104986e-07,2.009379575427824170e-07,2.100715010674543354e-07,2.192050445921262538e-07,2.283385881167981722e-07,2.374721316414700907e-07,2.466056751661420091e-07,2.557392186908139275e-07,2.648727622154858459e-07,2.740063057401577643e-07,2.831398492648296828e-07,2.922733927895016012e-07,3.014069363141735196e-07,3.105404798388454380e-07,3.196740233635173564e-07,3.288075668881892749e-07,3.379411104128611933e-07,3.470746539375331117e-07,3.562081974622050301e-07,3.653417409868769485e-07,3.744752845115488669e-07,3.836088280362207854e-07,3.927423715608927038e-07,4.018759150855646222e-07,4.110094586102365406e-07,4.201430021349084590e-07,4.292765456595803775e-07,4.384100891842522959e-07,4.475436327089242143e-07,4.566771762335961327e-07,4.658107197582680511e-07,4.749442632829399696e-07,4.840778068076119409e-07,4.932113503322839123e-07,5.023448938569558836e-07,5.114784373816278550e-07,5.206119809062998264e-07,5.297455244309717977e-07,5.388790679556437691e-07,5.480126114803157404e-07,5.571461550049877118e-07,5.662796985296596831e-07,5.754132420543316545e-07 +0.000000000000000000e+00,1.605715395588019344e-08,3.211430791176038687e-08,4.817146186764057700e-08,6.422861582352076051e-08,8.028576977940094402e-08,9.634292373528112753e-08,1.124000776911613110e-07,1.284572316470414946e-07,1.445143856029216913e-07,1.605715395588018880e-07,1.766286935146820848e-07,1.926858474705622815e-07,2.087430014264424783e-07,2.248001553823226750e-07,2.408573093382028718e-07,2.569144632940830420e-07,2.729716172499632123e-07,2.890287712058433826e-07,3.050859251617235529e-07,3.211430791176037231e-07,3.372002330734838934e-07,3.532573870293640637e-07,3.693145409852442340e-07,3.853716949411244042e-07,4.014288488970045745e-07,4.174860028528847448e-07,4.335431568087649151e-07,4.496003107646450853e-07,4.656574647205252556e-07,4.817146186764054259e-07,4.977717726322855432e-07,5.138289265881656606e-07,5.298860805440457779e-07,5.459432344999258952e-07,5.620003884558060126e-07,5.780575424116861299e-07,5.941146963675662472e-07,6.101718503234463646e-07,6.262290042793264819e-07,6.422861582352065993e-07,6.583433121910867166e-07,6.744004661469668339e-07,6.904576201028469513e-07,7.065147740587270686e-07,7.225719280146071859e-07,7.386290819704873033e-07,7.546862359263674206e-07,7.707433898822475379e-07,7.868005438381276553e-07,8.028576977940077726e-07,8.189148517498878899e-07,8.349720057057680073e-07,8.510291596616481246e-07,8.670863136175282420e-07,8.831434675734083593e-07,8.992006215292884766e-07,9.152577754851685940e-07,9.313149294410487113e-07,9.473720833969288286e-07,9.634292373528089460e-07,9.794863913086890633e-07,9.955435452645691806e-07,1.011600699220449298e-06 +0.000000000000000000e+00,1.605873501528792558e-08,3.211747003057585116e-08,4.817620504586377343e-08,6.423494006115168908e-08,8.029367507643960473e-08,9.635241009172752038e-08,1.124111451070154360e-07,1.284698801223033517e-07,1.445286151375912806e-07,1.605873501528792095e-07,1.766460851681671383e-07,1.927048201834550672e-07,2.087635551987429961e-07,2.248222902140309250e-07,2.408810252293188539e-07,2.569397602446067563e-07,2.729984952598946587e-07,2.890572302751825612e-07,3.051159652904704636e-07,3.211747003057583660e-07,3.372334353210462684e-07,3.532921703363341708e-07,3.693509053516220732e-07,3.854096403669099757e-07,4.014683753821978781e-07,4.175271103974857805e-07,4.335858454127736829e-07,4.496445804280615853e-07,4.657033154433494877e-07,4.817620504586373902e-07,4.978207854739253455e-07,5.138795204892133009e-07,5.299382555045012562e-07,5.459969905197892116e-07,5.620557255350771669e-07,5.781144605503651223e-07,5.941731955656530777e-07,6.102319305809410330e-07,6.262906655962289884e-07,6.423494006115169437e-07,6.584081356268048991e-07,6.744668706420928544e-07,6.905256056573808098e-07,7.065843406726687652e-07,7.226430756879567205e-07,7.387018107032446759e-07,7.547605457185326312e-07,7.708192807338205866e-07,7.868780157491085419e-07,8.029367507643964973e-07,8.189954857796844527e-07,8.350542207949724080e-07,8.511129558102603634e-07,8.671716908255483187e-07,8.832304258408362741e-07,8.992891608561242294e-07,9.153478958714121848e-07,9.314066308867001402e-07,9.474653659019880955e-07,9.635241009172760509e-07,9.795828359325640062e-07,9.956415709478519616e-07,1.011700305963139917e-06 +0.000000000000000000e+00,1.372390418319215010e-08,2.744780836638430021e-08,4.117171254957645031e-08,5.489561673276860041e-08,6.861952091596075052e-08,8.234342509915290062e-08,9.606732928234505072e-08,1.097912334655372008e-07,1.235151376487293509e-07,1.372390418319215010e-07,1.509629460151136511e-07,1.646868501983058012e-07,1.784107543814979513e-07,1.921346585646901014e-07,2.058585627478822516e-07,2.195824669310744017e-07,2.333063711142665518e-07,2.470302752974587019e-07,2.607541794806508784e-07,2.744780836638430550e-07,2.882019878470352316e-07,3.019258920302274082e-07,3.156497962134195847e-07,3.293737003966117613e-07,3.430976045798039379e-07,3.568215087629961144e-07,3.705454129461882910e-07,3.842693171293804676e-07,3.979932213125726442e-07,4.117171254957648207e-07,4.254410296789569973e-07,4.391649338621491739e-07,4.528888380453413505e-07,4.666127422285335270e-07,4.803366464117257036e-07,4.940605505949179331e-07,5.077844547781101626e-07,5.215083589613023921e-07,5.352322631444946217e-07,5.489561673276868512e-07,5.626800715108790807e-07,5.764039756940713102e-07,5.901278798772635397e-07,6.038517840604557692e-07,6.175756882436479987e-07,6.312995924268402282e-07,6.450234966100324578e-07,6.587474007932246873e-07,6.724713049764169168e-07,6.861952091596091463e-07,6.999191133428013758e-07,7.136430175259936053e-07,7.273669217091858348e-07,7.410908258923780643e-07,7.548147300755702939e-07,7.685386342587625234e-07,7.822625384419547529e-07,7.959864426251469824e-07,8.097103468083392119e-07,8.234342509915314414e-07,8.371581551747236709e-07,8.508820593579159004e-07,8.646059635411081300e-07 +0.000000000000000000e+00,1.393208860124757736e-08,2.786417720249515472e-08,4.179626580374272877e-08,5.572835440499030282e-08,6.966044300623787687e-08,8.359253160748545754e-08,9.752462020873303821e-08,1.114567088099806189e-07,1.253887974112282128e-07,1.393208860124758067e-07,1.532529746137234006e-07,1.671850632149709945e-07,1.811171518162185884e-07,1.950492404174661823e-07,2.089813290187137762e-07,2.229134176199613701e-07,2.368455062212089640e-07,2.507775948224565314e-07,2.647096834237040989e-07,2.786417720249516663e-07,2.925738606261992337e-07,3.065059492274468012e-07,3.204380378286943686e-07,3.343701264299419360e-07,3.483022150311895035e-07,3.622343036324370709e-07,3.761663922336846383e-07,3.900984808349322058e-07,4.040305694361797732e-07,4.179626580374273406e-07,4.318947466386749081e-07,4.458268352399224755e-07,4.597589238411700429e-07,4.736910124424176104e-07,4.876231010436652307e-07,5.015551896449128511e-07,5.154872782461604715e-07,5.294193668474080919e-07,5.433514554486557122e-07,5.572835440499033326e-07,5.712156326511509530e-07,5.851477212523985734e-07,5.990798098536461937e-07,6.130118984548938141e-07,6.269439870561414345e-07,6.408760756573890548e-07,6.548081642586366752e-07,6.687402528598842956e-07,6.826723414611319160e-07,6.966044300623795363e-07,7.105365186636271567e-07,7.244686072648747771e-07,7.384006958661223975e-07,7.523327844673700178e-07,7.662648730686176382e-07,7.801969616698652586e-07,7.941290502711128789e-07,8.080611388723604993e-07,8.219932274736081197e-07,8.359253160748557401e-07,8.498574046761033604e-07,8.637894932773509808e-07,8.777215818785986012e-07 +0.000000000000000000e+00,1.605921487975554769e-08,3.211842975951109538e-08,4.817764463926664638e-08,6.423685951902220400e-08,8.029607439877776162e-08,9.635528927853331923e-08,1.124145041582888768e-07,1.284737190380444345e-07,1.445329339177999921e-07,1.605921487975555497e-07,1.766513636773111073e-07,1.927105785570666649e-07,2.087697934368222226e-07,2.248290083165777802e-07,2.408882231963333378e-07,2.569474380760889219e-07,2.730066529558445060e-07,2.890658678356000900e-07,3.051250827153556741e-07,3.211842975951112582e-07,3.372435124748668423e-07,3.533027273546224264e-07,3.693619422343780105e-07,3.854211571141335946e-07,4.014803719938891787e-07,4.175395868736447627e-07,4.335988017534003468e-07,4.496580166331559309e-07,4.657172315129115150e-07,4.817764463926670991e-07,4.978356612724227361e-07,5.138948761521783731e-07,5.299540910319340102e-07,5.460133059116896472e-07,5.620725207914452842e-07,5.781317356712009212e-07,5.941909505509565583e-07,6.102501654307121953e-07,6.263093803104678323e-07,6.423685951902234694e-07,6.584278100699791064e-07,6.744870249497347434e-07,6.905462398294903804e-07,7.066054547092460175e-07,7.226646695890016545e-07,7.387238844687572915e-07,7.547830993485129285e-07,7.708423142282685656e-07,7.869015291080242026e-07,8.029607439877798396e-07,8.190199588675354766e-07,8.350791737472911137e-07,8.511383886270467507e-07,8.671976035068023877e-07,8.832568183865580247e-07,8.993160332663136618e-07,9.153752481460692988e-07,9.314344630258249358e-07,9.474936779055805729e-07,9.635528927853361040e-07,9.796121076650916351e-07,9.956713225448471663e-07,1.011730537424602697e-06 +0.000000000000000000e+00,1.373820094626852112e-08,2.747640189253704224e-08,4.121460283880556502e-08,5.495280378507409110e-08,6.869100473134262380e-08,8.242920567761115651e-08,9.616740662387968921e-08,1.099056075701482219e-07,1.236438085164167546e-07,1.373820094626853005e-07,1.511202104089538465e-07,1.648584113552223924e-07,1.785966123014909384e-07,1.923348132477594843e-07,2.060730141940280302e-07,2.198112151402965762e-07,2.335494160865651221e-07,2.472876170328336680e-07,2.610258179791021875e-07,2.747640189253707070e-07,2.885022198716392264e-07,3.022404208179077459e-07,3.159786217641762654e-07,3.297168227104447848e-07,3.434550236567133043e-07,3.571932246029818238e-07,3.709314255492503432e-07,3.846696264955188627e-07,3.984078274417873822e-07,4.121460283880559016e-07,4.258842293343244211e-07,4.396224302805929406e-07,4.533606312268614600e-07,4.670988321731299795e-07,4.808370331193984990e-07,4.945752340656670184e-07,5.083134350119355379e-07,5.220516359582040574e-07,5.357898369044725768e-07,5.495280378507410963e-07,5.632662387970096158e-07,5.770044397432781352e-07,5.907426406895466547e-07,6.044808416358151742e-07,6.182190425820836936e-07,6.319572435283522131e-07,6.456954444746207326e-07,6.594336454208892520e-07,6.731718463671577715e-07,6.869100473134262910e-07,7.006482482596948104e-07,7.143864492059633299e-07,7.281246501522318494e-07,7.418628510985003689e-07,7.556010520447688883e-07,7.693392529910374078e-07,7.830774539373059273e-07,7.968156548835744467e-07,8.105538558298429662e-07,8.242920567761114857e-07,8.380302577223800051e-07,8.517684586686485246e-07,8.655066596149170441e-07 +0.000000000000000000e+00,1.605715395588521608e-08,3.211430791177043215e-08,4.817146186765565154e-08,6.422861582354087754e-08,8.028576977942610355e-08,9.634292373531132955e-08,1.124000776911965556e-07,1.284572316470817816e-07,1.445143856029670076e-07,1.605715395588522336e-07,1.766286935147374596e-07,1.926858474706226856e-07,2.087430014265079116e-07,2.248001553823931376e-07,2.408573093382783636e-07,2.569144632941636161e-07,2.729716172500488685e-07,2.890287712059341210e-07,3.050859251618193735e-07,3.211430791177046259e-07,3.372002330735898784e-07,3.532573870294751309e-07,3.693145409853603834e-07,3.853716949412456358e-07,4.014288488971308883e-07,4.174860028530161408e-07,4.335431568089013933e-07,4.496003107647866457e-07,4.656574647206718982e-07,4.817146186765571507e-07,4.977717726324424561e-07,5.138289265883277615e-07,5.298860805442130669e-07,5.459432345000983723e-07,5.620003884559836777e-07,5.780575424118689831e-07,5.941146963677542886e-07,6.101718503236395940e-07,6.262290042795248994e-07,6.422861582354102048e-07,6.583433121912955102e-07,6.744004661471808156e-07,6.904576201030661210e-07,7.065147740589514265e-07,7.225719280148367319e-07,7.386290819707220373e-07,7.546862359266073427e-07,7.707433898824926481e-07,7.868005438383779535e-07,8.028576977942632589e-07,8.189148517501485643e-07,8.349720057060338698e-07,8.510291596619191752e-07,8.670863136178044806e-07,8.831434675736897860e-07,8.992006215295750914e-07,9.152577754854603968e-07,9.313149294413457022e-07,9.473720833972310076e-07,9.634292373531162072e-07,9.794863913090014067e-07,9.955435452648866062e-07,1.011600699220771806e-06 +0.000000000000000000e+00,1.605921487975803916e-08,3.211842975951607832e-08,4.817764463927411748e-08,6.423685951903215664e-08,8.029607439879020241e-08,9.635528927854824819e-08,1.124145041583062940e-07,1.284737190380643397e-07,1.445329339178223855e-07,1.605921487975804313e-07,1.766513636773384771e-07,1.927105785570965228e-07,2.087697934368545686e-07,2.248290083166126144e-07,2.408882231963706602e-07,2.569474380761287324e-07,2.730066529558868047e-07,2.890658678356448769e-07,3.051250827154029492e-07,3.211842975951610214e-07,3.372435124749190937e-07,3.533027273546771659e-07,3.693619422344352381e-07,3.854211571141933104e-07,4.014803719939513826e-07,4.175395868737094549e-07,4.335988017534675271e-07,4.496580166332255994e-07,4.657172315129836716e-07,4.817764463927417439e-07,4.978356612724998161e-07,5.138948761522578884e-07,5.299540910320159606e-07,5.460133059117740329e-07,5.620725207915321051e-07,5.781317356712901773e-07,5.941909505510482496e-07,6.102501654308063218e-07,6.263093803105643941e-07,6.423685951903224663e-07,6.584278100700805386e-07,6.744870249498386108e-07,6.905462398295966831e-07,7.066054547093547553e-07,7.226646695891128276e-07,7.387238844688708998e-07,7.547830993486289721e-07,7.708423142283870443e-07,7.869015291081451165e-07,8.029607439879031888e-07,8.190199588676612610e-07,8.350791737474193333e-07,8.511383886271774055e-07,8.671976035069354778e-07,8.832568183866935500e-07,8.993160332664516223e-07,9.153752481462096945e-07,9.314344630259677668e-07,9.474936779057258390e-07,9.635528927854839113e-07,9.796121076652419835e-07,9.956713225450000557e-07,1.011730537424758128e-06 +0.000000000000000000e+00,1.372390418319663342e-08,2.744780836639326684e-08,4.117171254958989696e-08,5.489561673278652707e-08,6.861952091598315719e-08,8.234342509917979392e-08,9.606732928237643065e-08,1.097912334655730674e-07,1.235151376487697173e-07,1.372390418319663673e-07,1.509629460151630173e-07,1.646868501983596672e-07,1.784107543815563172e-07,1.921346585647529672e-07,2.058585627479496171e-07,2.195824669311462671e-07,2.333063711143429171e-07,2.470302752975395406e-07,2.607541794807361641e-07,2.744780836639327876e-07,2.882019878471294111e-07,3.019258920303260346e-07,3.156497962135226580e-07,3.293737003967192815e-07,3.430976045799159050e-07,3.568215087631125285e-07,3.705454129463091520e-07,3.842693171295057755e-07,3.979932213127023990e-07,4.117171254958990225e-07,4.254410296790956460e-07,4.391649338622922695e-07,4.528888380454888930e-07,4.666127422286855165e-07,4.803366464118820871e-07,4.940605505950786576e-07,5.077844547782752282e-07,5.215083589614717987e-07,5.352322631446683693e-07,5.489561673278649398e-07,5.626800715110615104e-07,5.764039756942580810e-07,5.901278798774546515e-07,6.038517840606512221e-07,6.175756882438477926e-07,6.312995924270443632e-07,6.450234966102409337e-07,6.587474007934375043e-07,6.724713049766340749e-07,6.861952091598306454e-07,6.999191133430272160e-07,7.136430175262237865e-07,7.273669217094203571e-07,7.410908258926169276e-07,7.548147300758134982e-07,7.685386342590100688e-07,7.822625384422066393e-07,7.959864426254032099e-07,8.097103468085997804e-07,8.234342509917963510e-07,8.371581551749929215e-07,8.508820593581894921e-07,8.646059635413860626e-07 +0.000000000000000000e+00,1.393208860125227575e-08,2.786417720250455149e-08,4.179626580375682393e-08,5.572835440500909636e-08,6.966044300626136880e-08,8.359253160751364785e-08,9.752462020876592691e-08,1.114567088100182060e-07,1.253887974112704850e-07,1.393208860125227641e-07,1.532529746137750431e-07,1.671850632150273222e-07,1.811171518162796012e-07,1.950492404175318803e-07,2.089813290187841593e-07,2.229134176200364384e-07,2.368455062212887174e-07,2.507775948225410230e-07,2.647096834237933020e-07,2.786417720250455811e-07,2.925738606262978601e-07,3.065059492275501392e-07,3.204380378288024182e-07,3.343701264300546973e-07,3.483022150313069764e-07,3.622343036325592554e-07,3.761663922338115345e-07,3.900984808350638135e-07,4.040305694363160926e-07,4.179626580375683716e-07,4.318947466388206507e-07,4.458268352400729297e-07,4.597589238413252088e-07,4.736910124425774878e-07,4.876231010438297669e-07,5.015551896450820459e-07,5.154872782463343250e-07,5.294193668475866041e-07,5.433514554488388831e-07,5.572835440500911622e-07,5.712156326513434412e-07,5.851477212525957203e-07,5.990798098538479993e-07,6.130118984551002784e-07,6.269439870563525574e-07,6.408760756576048365e-07,6.548081642588571155e-07,6.687402528601093946e-07,6.826723414613616737e-07,6.966044300626139527e-07,7.105365186638662318e-07,7.244686072651185108e-07,7.384006958663707899e-07,7.523327844676230689e-07,7.662648730688753480e-07,7.801969616701276270e-07,7.941290502713799061e-07,8.080611388726321851e-07,8.219932274738844642e-07,8.359253160751367432e-07,8.498574046763890223e-07,8.637894932776413014e-07,8.777215818788935804e-07 +0.000000000000000000e+00,2.064480713190552780e-08,4.128961426381105561e-08,6.193442139571658341e-08,8.257922852762211121e-08,1.032240356595276390e-07,1.238688427914331668e-07,1.445136499233386946e-07,1.651584570552442224e-07,1.858032641871497502e-07,2.064480713190552780e-07,2.270928784509608058e-07,2.477376855828663336e-07,2.683824927147718879e-07,2.890272998466774422e-07,3.096721069785829965e-07,3.303169141104885507e-07,3.509617212423941050e-07,3.716065283742996593e-07,3.922513355062052136e-07,4.128961426381107678e-07,4.335409497700163221e-07,4.541857569019218764e-07,4.748305640338274306e-07,4.954753711657329849e-07,5.161201782976385392e-07,5.367649854295440935e-07,5.574097925614496477e-07,5.780545996933552020e-07,5.986994068252607563e-07,6.193442139571663106e-07,6.399890210890718648e-07,6.606338282209774191e-07,6.812786353528829734e-07,7.019234424847885277e-07,7.225682496166940819e-07,7.432130567485996362e-07,7.638578638805051905e-07,7.845026710124107447e-07,8.051474781443162990e-07,8.257922852762218533e-07,8.464370924081274076e-07,8.670818995400329618e-07,8.877267066719385161e-07,9.083715138038440704e-07,9.290163209357496247e-07,9.496611280676551789e-07,9.703059351995608391e-07,9.909507423314666051e-07,1.011595549463372371e-06,1.032240356595278137e-06,1.052885163727183903e-06,1.073529970859089669e-06,1.094174777990995435e-06,1.114819585122901201e-06,1.135464392254806967e-06,1.156109199386712733e-06,1.176754006518618499e-06,1.197398813650524265e-06,1.218043620782430031e-06,1.238688427914335797e-06,1.259333235046241564e-06,1.279978042178147330e-06,1.300622849310053096e-06 +0.000000000000000000e+00,2.064546557604347975e-08,4.129093115208695949e-08,6.193639672813044586e-08,8.258186230417393222e-08,1.032273278802174186e-07,1.238727934562608917e-07,1.445182590323043648e-07,1.651637246083478380e-07,1.858091901843913111e-07,2.064546557604347842e-07,2.271001213364782574e-07,2.477455869125217305e-07,2.683910524885652036e-07,2.890365180646086767e-07,3.096819836406521499e-07,3.303274492166956230e-07,3.509729147927390961e-07,3.716183803687825693e-07,3.922638459448260424e-07,4.129093115208695155e-07,4.335547770969129886e-07,4.542002426729564618e-07,4.748457082489999349e-07,4.954911738250433551e-07,5.161366394010867753e-07,5.367821049771301955e-07,5.574275705531736157e-07,5.780730361292170358e-07,5.987185017052604560e-07,6.193639672813038762e-07,6.400094328573472964e-07,6.606548984333907166e-07,6.813003640094341368e-07,7.019458295854775570e-07,7.225912951615209772e-07,7.432367607375643974e-07,7.638822263136078175e-07,7.845276918896512377e-07,8.051731574656946579e-07,8.258186230417380781e-07,8.464640886177814983e-07,8.671095541938249185e-07,8.877550197698683387e-07,9.084004853459117589e-07,9.290459509219551791e-07,9.496914164979985992e-07,9.703368820740421253e-07,9.909823476500856514e-07,1.011627813226129177e-06,1.032273278802172704e-06,1.052918744378216230e-06,1.073564209954259756e-06,1.094209675530303282e-06,1.114855141106346808e-06,1.135500606682390334e-06,1.156146072258433860e-06,1.176791537834477386e-06,1.197437003410520912e-06,1.218082468986564438e-06,1.238727934562607964e-06,1.259373400138651490e-06,1.280018865714695016e-06,1.300664331290738542e-06 +0.000000000000000000e+00,1.836520859743802278e-08,3.673041719487604557e-08,5.509562579231407166e-08,7.346083438975210437e-08,9.182604298719013708e-08,1.101912515846281698e-07,1.285564601820661893e-07,1.469216687795042087e-07,1.652868773769422282e-07,1.836520859743802477e-07,2.020172945718182672e-07,2.203825031692562866e-07,2.387477117666943061e-07,2.571129203641323256e-07,2.754781289615703451e-07,2.938433375590083646e-07,3.122085461564463840e-07,3.305737547538844035e-07,3.489389633513224230e-07,3.673041719487604425e-07,3.856693805461984619e-07,4.040345891436364814e-07,4.223997977410745009e-07,4.407650063385125204e-07,4.591302149359505398e-07,4.774954235333886122e-07,4.958606321308266847e-07,5.142258407282647571e-07,5.325910493257028295e-07,5.509562579231409019e-07,5.693214665205789743e-07,5.876866751180170467e-07,6.060518837154551192e-07,6.244170923128931916e-07,6.427823009103312640e-07,6.611475095077693364e-07,6.795127181052074088e-07,6.978779267026454812e-07,7.162431353000835536e-07,7.346083438975216261e-07,7.529735524949596985e-07,7.713387610923977709e-07,7.897039696898358433e-07,8.080691782872739157e-07,8.264343868847119881e-07,8.447995954821500606e-07,8.631648040795881330e-07,8.815300126770262054e-07,8.998952212744642778e-07,9.182604298719023502e-07,9.366256384693404226e-07,9.549908470667784950e-07,9.733560556642165675e-07,9.917212642616546399e-07,1.010086472859092712e-06,1.028451681456530785e-06,1.046816890053968857e-06,1.065182098651406930e-06,1.083547307248845002e-06,1.101912515846283074e-06,1.120277724443721147e-06,1.138642933041159219e-06,1.157008141638597292e-06 +0.000000000000000000e+00,1.865683969148488342e-08,3.731367938296976685e-08,5.597051907445465358e-08,7.462735876593954693e-08,9.328419845742444027e-08,1.119410381489093336e-07,1.305978778403942137e-07,1.492547175318790939e-07,1.679115572233639740e-07,1.865683969148488541e-07,2.052252366063337342e-07,2.238820762978186143e-07,2.425389159893034944e-07,2.611957556807883745e-07,2.798525953722732546e-07,2.985094350637581348e-07,3.171662747552430149e-07,3.358231144467278950e-07,3.544799541382127751e-07,3.731367938296976552e-07,3.917936335211825353e-07,4.104504732126674154e-07,4.291073129041522956e-07,4.477641525956371757e-07,4.664209922871220558e-07,4.850778319786069888e-07,5.037346716700919219e-07,5.223915113615768549e-07,5.410483510530617880e-07,5.597051907445467211e-07,5.783620304360316541e-07,5.970188701275165872e-07,6.156757098190015202e-07,6.343325495104864533e-07,6.529893892019713863e-07,6.716462288934563194e-07,6.903030685849412524e-07,7.089599082764261855e-07,7.276167479679111185e-07,7.462735876593960516e-07,7.649304273508809846e-07,7.835872670423659177e-07,8.022441067338508507e-07,8.209009464253357838e-07,8.395577861168207169e-07,8.582146258083056499e-07,8.768714654997905830e-07,8.955283051912755160e-07,9.141851448827604491e-07,9.328419845742453821e-07,9.514988242657303152e-07,9.701556639572152482e-07,9.888125036487000754e-07,1.007469343340184903e-06,1.026126183031669730e-06,1.044783022723154557e-06,1.063439862414639384e-06,1.082096702106124211e-06,1.100753541797609038e-06,1.119410381489093866e-06,1.138067221180578693e-06,1.156724060872063520e-06,1.175380900563548347e-06 +0.000000000000000000e+00,2.064567216720327449e-08,4.129134433440654898e-08,6.193701650160982678e-08,8.258268866881311120e-08,1.032283608360163956e-07,1.238740330032196800e-07,1.445197051704229645e-07,1.651653773376262489e-07,1.858110495048295333e-07,2.064567216720328177e-07,2.271023938392361021e-07,2.477480660064394130e-07,2.683937381736426974e-07,2.890394103408459819e-07,3.096850825080492663e-07,3.303307546752525507e-07,3.509764268424558351e-07,3.716220990096591195e-07,3.922677711768624039e-07,4.129134433440656884e-07,4.335591155112689728e-07,4.542047876784722572e-07,4.748504598456755416e-07,4.954961320128788260e-07,5.161418041800821105e-07,5.367874763472853949e-07,5.574331485144886793e-07,5.780788206816919637e-07,5.987244928488952481e-07,6.193701650160985325e-07,6.400158371833018170e-07,6.606615093505051014e-07,6.813071815177083858e-07,7.019528536849116702e-07,7.225985258521149546e-07,7.432441980193182391e-07,7.638898701865215235e-07,7.845355423537248079e-07,8.051812145209280923e-07,8.258268866881313767e-07,8.464725588553346611e-07,8.671182310225379456e-07,8.877639031897412300e-07,9.084095753569445144e-07,9.290552475241477988e-07,9.497009196913510832e-07,9.703465918585542618e-07,9.909922640257574403e-07,1.011637936192960619e-06,1.032283608360163797e-06,1.052929280527366976e-06,1.073574952694570154e-06,1.094220624861773333e-06,1.114866297028976512e-06,1.135511969196179690e-06,1.156157641363382869e-06,1.176803313530586047e-06,1.197448985697789226e-06,1.218094657864992404e-06,1.238740330032195583e-06,1.259386002199398761e-06,1.280031674366601940e-06,1.300677346533805118e-06 +0.000000000000000000e+00,1.836627793936521902e-08,3.673255587873043805e-08,5.509883381809565376e-08,7.346511175746086286e-08,9.183138969682607195e-08,1.101976676361912811e-07,1.285639455755565034e-07,1.469302235149217257e-07,1.652965014542869480e-07,1.836627793936521704e-07,2.020290573330173927e-07,2.203953352723826150e-07,2.387616132117478374e-07,2.571278911511130597e-07,2.754941690904782820e-07,2.938604470298435044e-07,3.122267249692087267e-07,3.305930029085739490e-07,3.489592808479391714e-07,3.673255587873043937e-07,3.856918367266696160e-07,4.040581146660348384e-07,4.224243926054000607e-07,4.407906705447652830e-07,4.591569484841305054e-07,4.775232264234957806e-07,4.958895043628611088e-07,5.142557823022264371e-07,5.326220602415917653e-07,5.509883381809570935e-07,5.693546161203224217e-07,5.877208940596877499e-07,6.060871719990530781e-07,6.244534499384184063e-07,6.428197278777837345e-07,6.611860058171490627e-07,6.795522837565143910e-07,6.979185616958797192e-07,7.162848396352450474e-07,7.346511175746103756e-07,7.530173955139757038e-07,7.713836734533410320e-07,7.897499513927063602e-07,8.081162293320716884e-07,8.264825072714370166e-07,8.448487852108023448e-07,8.632150631501676731e-07,8.815813410895330013e-07,8.999476190288983295e-07,9.183138969682636577e-07,9.366801749076289859e-07,9.550464528469943141e-07,9.734127307863596423e-07,9.917790087257249705e-07,1.010145286665090299e-06,1.028511564604455627e-06,1.046877842543820955e-06,1.065244120483186283e-06,1.083610398422551612e-06,1.101976676361916940e-06,1.120342954301282268e-06,1.138709232240647596e-06,1.157075510180012924e-06 +0.000000000000000000e+00,2.064480713191180114e-08,4.128961426382360228e-08,6.193442139573540342e-08,8.257922852764720457e-08,1.032240356595590057e-07,1.238688427914708068e-07,1.445136499233826080e-07,1.651584570552944091e-07,1.858032641872062103e-07,2.064480713191180114e-07,2.270928784510298126e-07,2.477376855829416137e-07,2.683824927148534148e-07,2.890272998467652160e-07,3.096721069786770171e-07,3.303169141105888183e-07,3.509617212425006194e-07,3.716065283744124205e-07,3.922513355063242217e-07,4.128961426382360228e-07,4.335409497701478240e-07,4.541857569020596251e-07,4.748305640339714263e-07,4.954753711658832274e-07,5.161201782977950285e-07,5.367649854297068297e-07,5.574097925616186308e-07,5.780545996935304320e-07,5.986994068254422331e-07,6.193442139573540342e-07,6.399890210892658354e-07,6.606338282211776365e-07,6.812786353530894377e-07,7.019234424850012388e-07,7.225682496169130399e-07,7.432130567488248411e-07,7.638578638807366422e-07,7.845026710126484434e-07,8.051474781445602445e-07,8.257922852764720457e-07,8.464370924083838468e-07,8.670818995402956479e-07,8.877267066722074491e-07,9.083715138041192502e-07,9.290163209360310514e-07,9.496611280679428525e-07,9.703059351998547595e-07,9.909507423317666665e-07,1.011595549463678574e-06,1.032240356595590481e-06,1.052885163727502388e-06,1.073529970859414295e-06,1.094174777991326202e-06,1.114819585123238109e-06,1.135464392255150016e-06,1.156109199387061923e-06,1.176754006518973830e-06,1.197398813650885737e-06,1.218043620782797644e-06,1.238688427914709551e-06,1.259333235046621458e-06,1.279978042178533365e-06,1.300622849310445272e-06 +0.000000000000000000e+00,2.064567216720640785e-08,4.129134433441281570e-08,6.193701650161922356e-08,8.258268866882563141e-08,1.032283608360320393e-07,1.238740330032384471e-07,1.445197051704448550e-07,1.651653773376512628e-07,1.858110495048576707e-07,2.064567216720640785e-07,2.271023938392704864e-07,2.477480660064768942e-07,2.683937381736833021e-07,2.890394103408897099e-07,3.096850825080961178e-07,3.303307546753025256e-07,3.509764268425089335e-07,3.716220990097153413e-07,3.922677711769217492e-07,4.129134433441281570e-07,4.335591155113345649e-07,4.542047876785409727e-07,4.748504598457473806e-07,4.954961320129537884e-07,5.161418041801601434e-07,5.367874763473664983e-07,5.574331485145728532e-07,5.780788206817792081e-07,5.987244928489855630e-07,6.193701650161919179e-07,6.400158371833982728e-07,6.606615093506046277e-07,6.813071815178109827e-07,7.019528536850173376e-07,7.225985258522236925e-07,7.432441980194300474e-07,7.638898701866364023e-07,7.845355423538427572e-07,8.051812145210491121e-07,8.258268866882554670e-07,8.464725588554618220e-07,8.671182310226681769e-07,8.877639031898745318e-07,9.084095753570808867e-07,9.290552475242872416e-07,9.497009196914935965e-07,9.703465918586999514e-07,9.909922640259063064e-07,1.011637936193112661e-06,1.032283608360319016e-06,1.052929280527525371e-06,1.073574952694731726e-06,1.094220624861938081e-06,1.114866297029144436e-06,1.135511969196350791e-06,1.156157641363557146e-06,1.176803313530763501e-06,1.197448985697969855e-06,1.218094657865176210e-06,1.238740330032382565e-06,1.259386002199588920e-06,1.280031674366795275e-06,1.300677346534001630e-06 +0.000000000000000000e+00,1.836520859744371379e-08,3.673041719488742757e-08,5.509562579233114467e-08,7.346083438977486838e-08,9.182604298721859210e-08,1.101912515846623158e-07,1.285564601821060528e-07,1.469216687795497897e-07,1.652868773769935267e-07,1.836520859744372636e-07,2.020172945718810006e-07,2.203825031693247375e-07,2.387477117667684744e-07,2.571129203642122114e-07,2.754781289616559483e-07,2.938433375590996853e-07,3.122085461565434222e-07,3.305737547539871592e-07,3.489389633514308961e-07,3.673041719488746331e-07,3.856693805463183700e-07,4.040345891437621070e-07,4.223997977412058439e-07,4.407650063386495809e-07,4.591302149360933178e-07,4.774954235335370548e-07,4.958606321309808447e-07,5.142258407284246345e-07,5.325910493258684244e-07,5.509562579233122143e-07,5.693214665207560042e-07,5.876866751181997941e-07,6.060518837156435840e-07,6.244170923130873739e-07,6.427823009105311638e-07,6.611475095079749536e-07,6.795127181054187435e-07,6.978779267028625334e-07,7.162431353003063233e-07,7.346083438977501132e-07,7.529735524951939031e-07,7.713387610926376930e-07,7.897039696900814829e-07,8.080691782875252728e-07,8.264343868849690626e-07,8.447995954824128525e-07,8.631648040798566424e-07,8.815300126773004323e-07,8.998952212747442222e-07,9.182604298721880121e-07,9.366256384696318020e-07,9.549908470670755919e-07,9.733560556645193817e-07,9.917212642619631716e-07,1.010086472859406962e-06,1.028451681456850751e-06,1.046816890054294541e-06,1.065182098651738331e-06,1.083547307249182121e-06,1.101912515846625911e-06,1.120277724444069701e-06,1.138642933041513491e-06,1.157008141638957281e-06 +0.000000000000000000e+00,1.865683969149060420e-08,3.731367938298120841e-08,5.597051907447181261e-08,7.462735876596241681e-08,9.328419845745301440e-08,1.119410381489436120e-07,1.305978778404342096e-07,1.492547175319248072e-07,1.679115572234154047e-07,1.865683969149060023e-07,2.052252366063965999e-07,2.238820762978871975e-07,2.425389159893778216e-07,2.611957556808684721e-07,2.798525953723591226e-07,2.985094350638497731e-07,3.171662747553404237e-07,3.358231144468310742e-07,3.544799541383217247e-07,3.731367938298123752e-07,3.917936335213030258e-07,4.104504732127936763e-07,4.291073129042843268e-07,4.477641525957749773e-07,4.664209922872656279e-07,4.850778319787562784e-07,5.037346716702469289e-07,5.223915113617375794e-07,5.410483510532282300e-07,5.597051907447188805e-07,5.783620304362095310e-07,5.970188701277001816e-07,6.156757098191908321e-07,6.343325495106814826e-07,6.529893892021721331e-07,6.716462288936627837e-07,6.903030685851534342e-07,7.089599082766440847e-07,7.276167479681347352e-07,7.462735876596253858e-07,7.649304273511160363e-07,7.835872670426066868e-07,8.022441067340973373e-07,8.209009464255879879e-07,8.395577861170786384e-07,8.582146258085692889e-07,8.768714655000599394e-07,8.955283051915505900e-07,9.141851448830412405e-07,9.328419845745318910e-07,9.514988242660225415e-07,9.701556639575131921e-07,9.888125036490037367e-07,1.007469343340494281e-06,1.026126183031984826e-06,1.044783022723475371e-06,1.063439862414965915e-06,1.082096702106456460e-06,1.100753541797947005e-06,1.119410381489437549e-06,1.138067221180928094e-06,1.156724060872418639e-06,1.175380900563909183e-06 +0.000000000000000000e+00,2.521833376303635412e-08,5.043666752607270824e-08,7.565500128910906236e-08,1.008733350521454165e-07,1.260916688151817574e-07,1.513100025782180983e-07,1.765283363412544391e-07,2.017466701042908065e-07,2.269650038673271209e-07,2.521833376303634618e-07,2.774016713933998027e-07,3.026200051564361436e-07,3.278383389194724845e-07,3.530566726825088253e-07,3.782750064455451133e-07,4.034933402085815071e-07,4.287116739716178480e-07,4.539300077346541889e-07,4.791483414976905298e-07,5.043666752607268177e-07,5.295850090237631057e-07,5.548033427867993936e-07,5.800216765498356815e-07,6.052400103128719695e-07,6.304583440759082574e-07,6.556766778389445454e-07,6.808950116019808333e-07,7.061133453650170154e-07,7.313316791280534092e-07,7.565500128910896972e-07,7.817683466541259851e-07,8.069866804171623789e-07,8.322050141801985610e-07,8.574233479432348490e-07,8.826416817062711369e-07,9.078600154693073190e-07,9.330783492323437128e-07,9.582966829953800007e-07,9.835150167584161828e-07,1.008733350521452365e-06,1.033951684284488547e-06,1.059170018047524729e-06,1.084388351810560911e-06,1.109606685573597093e-06,1.134825019336633275e-06,1.160043353099669457e-06,1.185261686862705639e-06,1.210480020625741821e-06,1.235698354388778003e-06,1.260916688151814186e-06,1.286135021914850579e-06,1.311353355677886550e-06,1.336571689440922520e-06,1.361790023203958914e-06,1.387008356966995308e-06,1.412226690730031278e-06,1.437445024493067248e-06,1.462663358256103642e-06,1.487881692019140036e-06,1.513100025782176006e-06,1.538318359545211977e-06,1.563536693308248370e-06,1.588755027071284764e-06 +0.000000000000000000e+00,2.521663061847386282e-08,5.043326123694772563e-08,7.564989185542158514e-08,1.008665224738954513e-07,1.260831530923692909e-07,1.512997837108431438e-07,1.765164143293169702e-07,2.017330449477908496e-07,2.269496755662647025e-07,2.521663061847385818e-07,2.773829368032124612e-07,3.025995674216863405e-07,3.278161980401602728e-07,3.530328286586340993e-07,3.782494592771079257e-07,4.034660898955818580e-07,4.286827205140557903e-07,4.538993511325296167e-07,4.791159817510034961e-07,5.043326123694773754e-07,5.295492429879512548e-07,5.547658736064251341e-07,5.799825042248990135e-07,6.051991348433728929e-07,6.304157654618467722e-07,6.556323960803206516e-07,6.808490266987945309e-07,7.060656573172685162e-07,7.312822879357422897e-07,7.564989185542161690e-07,7.817155491726900484e-07,8.069321797911638218e-07,8.321488104096378071e-07,8.573654410281116864e-07,8.825820716465855658e-07,9.077987022650595510e-07,9.330153328835333245e-07,9.582319635020072039e-07,9.834485941204811891e-07,1.008665224738955174e-06,1.033881855357429160e-06,1.059098485975903145e-06,1.084315116594377130e-06,1.109531747212851115e-06,1.134748377831325101e-06,1.159965008449799086e-06,1.185181639068273071e-06,1.210398269686747056e-06,1.235614900305221041e-06,1.260831530923695027e-06,1.286048161542169224e-06,1.311264792160642997e-06,1.336481422779116771e-06,1.361698053397590968e-06,1.386914684016065165e-06,1.412131314634538938e-06,1.437347945253012712e-06,1.462564575871486909e-06,1.487781206489961106e-06,1.512997837108434879e-06,1.538214467726908653e-06,1.563431098345382850e-06,1.588647728963857047e-06 +0.000000000000000000e+00,2.293542455561717053e-08,4.587084911123434106e-08,6.880627366685151490e-08,9.174169822246869536e-08,1.146771227780858758e-07,1.376125473337030563e-07,1.605479718893202367e-07,1.834833964449374172e-07,2.064188210005545976e-07,2.293542455561717781e-07,2.522896701117889850e-07,2.752250946674061655e-07,2.981605192230233459e-07,3.210959437786405264e-07,3.440313683342577068e-07,3.669667928898748873e-07,3.899022174454920678e-07,4.128376420011092482e-07,4.357730665567264287e-07,4.587084911123436091e-07,4.816439156679607896e-07,5.045793402235779700e-07,5.275147647791951505e-07,5.504501893348123310e-07,5.733856138904295114e-07,5.963210384460466919e-07,6.192564630016638723e-07,6.421918875572810528e-07,6.651273121128982332e-07,6.880627366685154137e-07,7.109981612241325942e-07,7.339335857797497746e-07,7.568690103353669551e-07,7.798044348909841355e-07,8.027398594466013160e-07,8.256752840022184964e-07,8.486107085578356769e-07,8.715461331134528573e-07,8.944815576690700378e-07,9.174169822246872183e-07,9.403524067803043987e-07,9.632878313359215792e-07,9.862232558915387596e-07,1.009158680447155940e-06,1.032094105002773121e-06,1.055029529558390301e-06,1.077964954114007481e-06,1.100900378669624662e-06,1.123835803225241842e-06,1.146771227780859023e-06,1.169706652336476203e-06,1.192642076892093384e-06,1.215577501447710564e-06,1.238512926003327745e-06,1.261448350558944925e-06,1.284383775114562106e-06,1.307319199670179286e-06,1.330254624225796466e-06,1.353190048781413647e-06,1.376125473337030827e-06,1.399060897892648008e-06,1.421996322448265188e-06,1.444931747003882369e-06 +0.000000000000000000e+00,2.333122598868795590e-08,4.666245197737591181e-08,6.999367796606387102e-08,9.332490395475183685e-08,1.166561299434398027e-07,1.399873559321277685e-07,1.633185819208157343e-07,1.866498079095037002e-07,2.099810338981916660e-07,2.333122598868796318e-07,2.566434858755675712e-07,2.799747118642554841e-07,3.033059378529433970e-07,3.266371638416313099e-07,3.499683898303192227e-07,3.732996158190071356e-07,3.966308418076950485e-07,4.199620677963829614e-07,4.432932937850708743e-07,4.666245197737587872e-07,4.899557457624467001e-07,5.132869717511346130e-07,5.366181977398225259e-07,5.599494237285104388e-07,5.832806497171983516e-07,6.066118757058862645e-07,6.299431016945741774e-07,6.532743276832620903e-07,6.766055536719500032e-07,6.999367796606379161e-07,7.232680056493258290e-07,7.465992316380137419e-07,7.699304576267016548e-07,7.932616836153895676e-07,8.165929096040774805e-07,8.399241355927653934e-07,8.632553615814533063e-07,8.865865875701412192e-07,9.099178135588291321e-07,9.332490395475170450e-07,9.565802655362050638e-07,9.799114915248931884e-07,1.003242717513581313e-06,1.026573943502269438e-06,1.049905169490957562e-06,1.073236395479645687e-06,1.096567621468333812e-06,1.119898847457021936e-06,1.143230073445710061e-06,1.166561299434398186e-06,1.189892525423086310e-06,1.213223751411774435e-06,1.236554977400462560e-06,1.259886203389150684e-06,1.283217429377838809e-06,1.306548655366526933e-06,1.329879881355215058e-06,1.353211107343903183e-06,1.376542333332591307e-06,1.399873559321279432e-06,1.423204785309967557e-06,1.446536011298655681e-06,1.469867237287343806e-06 +0.000000000000000000e+00,2.521721074475502998e-08,5.043442148951005996e-08,7.565163223426508994e-08,1.008688429790201199e-07,1.260860537237751631e-07,1.513032644685302063e-07,1.765204752132852760e-07,2.017376859580402663e-07,2.269548967027953625e-07,2.521721074475503792e-07,2.773893181923054224e-07,3.026065289370604656e-07,3.278237396818155088e-07,3.530409504265705521e-07,3.782581611713255953e-07,4.034753719160806385e-07,4.286925826608356817e-07,4.539097934055907249e-07,4.791270041503457152e-07,5.043442148951006525e-07,5.295614256398555899e-07,5.547786363846105272e-07,5.799958471293654645e-07,6.052130578741204019e-07,6.304302686188753392e-07,6.556474793636301706e-07,6.808646901083852139e-07,7.060819008531402571e-07,7.312991115978950885e-07,7.565163223426499200e-07,7.817335330874049632e-07,8.069507438321600064e-07,8.321679545769148379e-07,8.573851653216696693e-07,8.826023760664247125e-07,9.078195868111797557e-07,9.330367975559345872e-07,9.582540083006895245e-07,9.834712190454444619e-07,1.008688429790199399e-06,1.033905640534954337e-06,1.059122851279709274e-06,1.084340062024464211e-06,1.109557272769219149e-06,1.134774483513974086e-06,1.159991694258729023e-06,1.185208905003483961e-06,1.210426115748238898e-06,1.235643326492993835e-06,1.260860537237748773e-06,1.286077747982503922e-06,1.311294958727258647e-06,1.336512169472013585e-06,1.361729380216768522e-06,1.386946590961523247e-06,1.412163801706278397e-06,1.437381012451033334e-06,1.462598223195788271e-06,1.487815433940543420e-06,1.513032644685298146e-06,1.538249855430053083e-06,1.563467066174808021e-06,1.588684276919562746e-06 +0.000000000000000000e+00,2.293410674909569195e-08,4.586821349819138389e-08,6.880232024728707915e-08,9.173642699638278102e-08,1.146705337454784829e-07,1.376046404945741848e-07,1.605387472436698734e-07,1.834728539927655620e-07,2.064069607418612507e-07,2.293410674909569393e-07,2.522751742400526280e-07,2.752092809891483166e-07,2.981433877382440052e-07,3.210774944873396939e-07,3.440116012364353825e-07,3.669457079855310711e-07,3.898798147346267598e-07,4.128139214837224484e-07,4.357480282328181371e-07,4.586821349819138257e-07,4.816162417310094614e-07,5.045503484801051500e-07,5.274844552292008387e-07,5.504185619782965273e-07,5.733526687273922160e-07,5.962867754764879046e-07,6.192208822255835932e-07,6.421549889746792819e-07,6.650890957237749705e-07,6.880232024728706591e-07,7.109573092219663478e-07,7.338914159710620364e-07,7.568255227201577251e-07,7.797596294692534137e-07,8.026937362183491023e-07,8.256278429674447910e-07,8.485619497165404796e-07,8.714960564656361682e-07,8.944301632147318569e-07,9.173642699638275455e-07,9.402983767129232342e-07,9.632324834620189228e-07,9.861665902111146114e-07,1.009100696960210300e-06,1.032034803709305989e-06,1.054968910458401677e-06,1.077903017207497366e-06,1.100837123956593055e-06,1.123771230705688743e-06,1.146705337454784432e-06,1.169639444203880121e-06,1.192573550952975809e-06,1.215507657702071498e-06,1.238441764451167186e-06,1.261375871200262875e-06,1.284309977949358564e-06,1.307244084698454252e-06,1.330178191447549941e-06,1.353112298196645630e-06,1.376046404945741318e-06,1.398980511694837007e-06,1.421914618443932696e-06,1.444848725193028384e-06 +0.000000000000000000e+00,2.521833376304374250e-08,5.043666752608748500e-08,7.565500128913123080e-08,1.008733350521749700e-07,1.260916688152187356e-07,1.513100025782624881e-07,1.765283363413062405e-07,2.017466701043499929e-07,2.269650038673937453e-07,2.521833376304375242e-07,2.774016713934813296e-07,3.026200051565251350e-07,3.278383389195688874e-07,3.530566726826126928e-07,3.782750064456564981e-07,4.034933402087003035e-07,4.287116739717441088e-07,4.539300077347879142e-07,4.791483414978317725e-07,5.043666752608755779e-07,5.295850090239193832e-07,5.548033427869631886e-07,5.800216765500069940e-07,6.052400103130507993e-07,6.304583440760946047e-07,6.556766778391384101e-07,6.808950116021822154e-07,7.061133453652260208e-07,7.313316791282698261e-07,7.565500128913136315e-07,7.817683466543574369e-07,8.069866804174012422e-07,8.322050141804450476e-07,8.574233479434888530e-07,8.826416817065326583e-07,9.078600154695764637e-07,9.330783492326202690e-07,9.582966829956641803e-07,9.835150167587079857e-07,1.008733350521751791e-06,1.033951684284795596e-06,1.059170018047839402e-06,1.084388351810883207e-06,1.109606685573927012e-06,1.134825019336970818e-06,1.160043353100014623e-06,1.185261686863058429e-06,1.210480020626102234e-06,1.235698354389146039e-06,1.260916688152189845e-06,1.286135021915233650e-06,1.311353355678277244e-06,1.336571689441321261e-06,1.361790023204365278e-06,1.387008356967408871e-06,1.412226690730452465e-06,1.437445024493496482e-06,1.462663358256540499e-06,1.487881692019584093e-06,1.513100025782627687e-06,1.538318359545671704e-06,1.563536693308715721e-06,1.588755027071759314e-06 +0.000000000000000000e+00,2.521721074475869935e-08,5.043442148951739870e-08,7.565163223427610136e-08,1.008688429790348239e-07,1.260860537237935332e-07,1.513032644685522557e-07,1.765204752133109517e-07,2.017376859580697007e-07,2.269548967028284232e-07,2.521721074475871722e-07,2.773893181923459212e-07,3.026065289371046702e-07,3.278237396818633662e-07,3.530409504266222211e-07,3.782581611713808642e-07,4.034753719161397190e-07,4.286925826608983621e-07,4.539097934056572170e-07,4.791270041504159130e-07,5.043442148951746620e-07,5.295614256399334110e-07,5.547786363846921600e-07,5.799958471294509090e-07,6.052130578742096580e-07,6.304302686189684069e-07,6.556474793637271559e-07,6.808646901084859049e-07,7.060819008532446539e-07,7.312991115980034029e-07,7.565163223427621518e-07,7.817335330875209008e-07,8.069507438322796498e-07,8.321679545770383988e-07,8.573851653217971478e-07,8.826023760665558968e-07,9.078195868113146457e-07,9.330367975560733947e-07,9.582540083008320378e-07,9.834712190455905751e-07,1.008688429790349112e-06,1.033905640535107650e-06,1.059122851279866187e-06,1.084340062024624724e-06,1.109557272769383261e-06,1.134774483514141798e-06,1.159991694258900336e-06,1.185208905003658873e-06,1.210426115748417410e-06,1.235643326493175947e-06,1.260860537237934485e-06,1.286077747982693022e-06,1.311294958727451559e-06,1.336512169472210096e-06,1.361729380216968633e-06,1.386946590961727171e-06,1.412163801706485708e-06,1.437381012451244245e-06,1.462598223196002782e-06,1.487815433940761320e-06,1.513032644685519857e-06,1.538249855430278394e-06,1.563467066175036931e-06,1.588684276919795468e-06 +0.000000000000000000e+00,2.293542455562401628e-08,4.587084911124803255e-08,6.880627366687205545e-08,9.174169822249607834e-08,1.146771227781201012e-07,1.376125473337441109e-07,1.605479718893681206e-07,1.834833964449921302e-07,2.064188210006161399e-07,2.293542455562401495e-07,2.522896701118641592e-07,2.752250946674881689e-07,2.981605192231121785e-07,3.210959437787361882e-07,3.440313683343601978e-07,3.669667928899842075e-07,3.899022174456082172e-07,4.128376420012322268e-07,4.357730665568562365e-07,4.587084911124802461e-07,4.816439156681042558e-07,5.045793402237283184e-07,5.275147647793523810e-07,5.504501893349764436e-07,5.733856138906005062e-07,5.963210384462245688e-07,6.192564630018486314e-07,6.421918875574726940e-07,6.651273121130967566e-07,6.880627366687208192e-07,7.109981612243448818e-07,7.339335857799689444e-07,7.568690103355930070e-07,7.798044348912170696e-07,8.027398594468411322e-07,8.256752840024651948e-07,8.486107085580892574e-07,8.715461331137133200e-07,8.944815576693373826e-07,9.174169822249614452e-07,9.403524067805855078e-07,9.632878313362095704e-07,9.862232558918335271e-07,1.009158680447457484e-06,1.032094105003081441e-06,1.055029529558705397e-06,1.077964954114329354e-06,1.100900378669953311e-06,1.123835803225577267e-06,1.146771227781201224e-06,1.169706652336825181e-06,1.192642076892449138e-06,1.215577501448073094e-06,1.238512926003697051e-06,1.261448350559321008e-06,1.284383775114944964e-06,1.307319199670568921e-06,1.330254624226192878e-06,1.353190048781816835e-06,1.376125473337440791e-06,1.399060897893064748e-06,1.421996322448688705e-06,1.444931747004312661e-06 +0.000000000000000000e+00,2.333122598869450056e-08,4.666245197738900111e-08,6.999367796608349836e-08,9.332490395477798899e-08,1.166561299434724796e-07,1.399873559321669702e-07,1.633185819208614476e-07,1.866498079095559250e-07,2.099810338982504024e-07,2.333122598869448798e-07,2.566434858756393572e-07,2.799747118643338346e-07,3.033059378530283120e-07,3.266371638417227894e-07,3.499683898304172668e-07,3.732996158191117442e-07,3.966308418078062216e-07,4.199620677965006990e-07,4.432932937851951764e-07,4.666245197738896538e-07,4.899557457625841312e-07,5.132869717512786086e-07,5.366181977399730860e-07,5.599494237286675634e-07,5.832806497173620408e-07,6.066118757060565182e-07,6.299431016947509955e-07,6.532743276834454729e-07,6.766055536721399503e-07,6.999367796608344277e-07,7.232680056495289051e-07,7.465992316382233825e-07,7.699304576269178599e-07,7.932616836156123373e-07,8.165929096043068147e-07,8.399241355930012921e-07,8.632553615816957695e-07,8.865865875703902469e-07,9.099178135590847243e-07,9.332490395477792017e-07,9.565802655364735732e-07,9.799114915251680506e-07,1.003242717513862528e-06,1.026573943502557005e-06,1.049905169491251483e-06,1.073236395479945960e-06,1.096567621468640438e-06,1.119898847457334915e-06,1.143230073446029392e-06,1.166561299434723870e-06,1.189892525423418347e-06,1.213223751412112825e-06,1.236554977400807302e-06,1.259886203389501779e-06,1.283217429378196257e-06,1.306548655366890734e-06,1.329879881355585212e-06,1.353211107344279689e-06,1.376542333332974166e-06,1.399873559321668644e-06,1.423204785310363121e-06,1.446536011299057598e-06,1.469867237287752076e-06 +0.000000000000000000e+00,7.287277895419926011e-08,1.457455579083985202e-07,2.186183368625977936e-07,2.914911158167970934e-07,3.643638947709963932e-07,4.372366737251956930e-07,5.101094526793949399e-07,5.829822316335941867e-07,6.558550105877934336e-07,7.287277895419926805e-07,8.016005684961919273e-07,8.744733474503911742e-07,9.473461264045904211e-07,1.020218905358789668e-06,1.093091684312988915e-06,1.165964463267188162e-06,1.238837242221387409e-06,1.311710021175586655e-06,1.384582800129785902e-06,1.457455579083985149e-06,1.530328358038184396e-06,1.603201136992383643e-06,1.676073915946582890e-06,1.748946694900782137e-06,1.821819473854981384e-06,1.894692252809180630e-06,1.967565031763379877e-06,2.040437810717578912e-06,2.113310589671777948e-06,2.186183368625976983e-06,2.259056147580176018e-06,2.331928926534375053e-06,2.404801705488574088e-06,2.477674484442773123e-06,2.550547263396972158e-06,2.623420042351171193e-06,2.696292821305370228e-06,2.769165600259569264e-06,2.842038379213768299e-06,2.914911158167967334e-06,2.987783937122166369e-06,3.060656716076365404e-06,3.133529495030564439e-06,3.206402273984763474e-06,3.279275052938962509e-06,3.352147831893161544e-06,3.425020610847360580e-06,3.497893389801559615e-06,3.570766168755758650e-06,3.643638947709957685e-06,3.716511726664156720e-06,3.789384505618355755e-06,3.862257284572554367e-06,3.935130063526752978e-06,4.008002842480951590e-06,4.080875621435150201e-06,4.153748400389348813e-06,4.226621179343547425e-06,4.299493958297746036e-06,4.372366737251944648e-06,4.445239516206143259e-06,4.518112295160341871e-06,4.590985074114540483e-06 +0.000000000000000000e+00,7.111755052123974748e-08,1.422351010424794950e-07,2.133526515637192424e-07,2.844702020849589899e-07,3.555877526061987374e-07,4.267053031274384849e-07,4.978228536486782853e-07,5.689404041699180857e-07,6.400579546911578861e-07,7.111755052123976865e-07,7.822930557336374870e-07,8.534106062548772874e-07,9.245281567761170878e-07,9.956457072973569941e-07,1.066763257818596900e-06,1.137880808339836807e-06,1.208998358861076713e-06,1.280115909382316619e-06,1.351233459903556526e-06,1.422351010424796432e-06,1.493468560946036338e-06,1.564586111467276244e-06,1.635703661988516151e-06,1.706821212509756057e-06,1.777938763030995963e-06,1.849056313552235870e-06,1.920173864073475776e-06,1.991291414594715682e-06,2.062408965115955589e-06,2.133526515637195495e-06,2.204644066158435401e-06,2.275761616679675307e-06,2.346879167200915214e-06,2.417996717722155120e-06,2.489114268243395026e-06,2.560231818764634933e-06,2.631349369285874839e-06,2.702466919807114745e-06,2.773584470328354652e-06,2.844702020849594558e-06,2.915819571370834464e-06,2.986937121892074370e-06,3.058054672413314277e-06,3.129172222934554183e-06,3.200289773455794089e-06,3.271407323977033996e-06,3.342524874498273902e-06,3.413642425019513808e-06,3.484759975540753715e-06,3.555877526061993621e-06,3.626995076583233527e-06,3.698112627104473433e-06,3.769230177625713340e-06,3.840347728146953246e-06,3.911465278668193152e-06,3.982582829189433059e-06,4.053700379710672965e-06,4.124817930231912871e-06,4.195935480753152777e-06,4.267053031274392684e-06,4.338170581795632590e-06,4.409288132316872496e-06,4.480405682838112403e-06 +0.000000000000000000e+00,7.936507936507451395e-08,1.587301587301490279e-07,2.380952380952235286e-07,3.174603174602980028e-07,3.968253968253724771e-07,4.761904761904469513e-07,5.555555555555214256e-07,6.349206349205958998e-07,7.142857142856703741e-07,7.936507936507448483e-07,8.730158730158193225e-07,9.523809523808937968e-07,1.031746031745968377e-06,1.111111111111043063e-06,1.190476190476117749e-06,1.269841269841192435e-06,1.349206349206267121e-06,1.428571428571341807e-06,1.507936507936416493e-06,1.587301587301491179e-06,1.666666666666565865e-06,1.746031746031640551e-06,1.825396825396715237e-06,1.904761904761789923e-06,1.984126984126864609e-06,2.063492063491939295e-06,2.142857142857013981e-06,2.222222222222088667e-06,2.301587301587163353e-06,2.380952380952238039e-06,2.460317460317312725e-06,2.539682539682387411e-06,2.619047619047462097e-06,2.698412698412536783e-06,2.777777777777611469e-06,2.857142857142686155e-06,2.936507936507760841e-06,3.015873015872835527e-06,3.095238095237910213e-06,3.174603174602984899e-06,3.253968253968059585e-06,3.333333333333134271e-06,3.412698412698208957e-06,3.492063492063283643e-06,3.571428571428358329e-06,3.650793650793433015e-06,3.730158730158507701e-06,3.809523809523582387e-06,3.888888888888656649e-06,3.968253968253730912e-06,4.047619047618805174e-06,4.126984126983879437e-06,4.206349206348953699e-06,4.285714285714027962e-06,4.365079365079102224e-06,4.444444444444176487e-06,4.523809523809250749e-06,4.603174603174325012e-06,4.682539682539399274e-06,4.761904761904473537e-06,4.841269841269547799e-06,4.920634920634622062e-06,4.999999999999696324e-06 +0.000000000000000000e+00,7.936507936507807413e-08,1.587301587301561483e-07,2.380952380952342224e-07,3.174603174603122965e-07,3.968253968253903707e-07,4.761904761904684448e-07,5.555555555555465189e-07,6.349206349206245931e-07,7.142857142857026672e-07,7.936507936507807413e-07,8.730158730158588155e-07,9.523809523809368896e-07,1.031746031746014964e-06,1.111111111111093038e-06,1.190476190476171112e-06,1.269841269841249186e-06,1.349206349206327260e-06,1.428571428571405334e-06,1.507936507936483409e-06,1.587301587301561483e-06,1.666666666666639557e-06,1.746031746031717631e-06,1.825396825396795705e-06,1.904761904761873779e-06,1.984126984126951853e-06,2.063492063492029927e-06,2.142857142857108002e-06,2.222222222222186076e-06,2.301587301587264150e-06,2.380952380952342224e-06,2.460317460317420298e-06,2.539682539682498372e-06,2.619047619047576446e-06,2.698412698412654520e-06,2.777777777777732595e-06,2.857142857142810669e-06,2.936507936507888743e-06,3.015873015872966817e-06,3.095238095238044891e-06,3.174603174603122965e-06,3.253968253968201039e-06,3.333333333333279114e-06,3.412698412698357188e-06,3.492063492063435262e-06,3.571428571428513336e-06,3.650793650793591410e-06,3.730158730158669484e-06,3.809523809523747558e-06,3.888888888888826056e-06,3.968253968253904554e-06,4.047619047618983051e-06,4.126984126984061549e-06,4.206349206349140047e-06,4.285714285714218544e-06,4.365079365079297042e-06,4.444444444444375540e-06,4.523809523809454037e-06,4.603174603174532535e-06,4.682539682539611032e-06,4.761904761904689530e-06,4.841269841269768028e-06,4.920634920634846525e-06,4.999999999999925023e-06 +0.000000000000000000e+00,7.100120854334833078e-08,1.420024170866966616e-07,2.130036256300450056e-07,2.840048341733933761e-07,3.550060427167417465e-07,4.260072512600901170e-07,4.970084598034384346e-07,5.680096683467867521e-07,6.390108768901350697e-07,7.100120854334833872e-07,7.810132939768317047e-07,8.520145025201800223e-07,9.230157110635283398e-07,9.940169196068766574e-07,1.065018128150224975e-06,1.136019336693573292e-06,1.207020545236921610e-06,1.278021753780269928e-06,1.349022962323618245e-06,1.420024170866966563e-06,1.491025379410314880e-06,1.562026587953663198e-06,1.633027796497011515e-06,1.704029005040359833e-06,1.775030213583708150e-06,1.846031422127056468e-06,1.917032630670404997e-06,1.988033839213753738e-06,2.059035047757102479e-06,2.130036256300451220e-06,2.201037464843799961e-06,2.272038673387148703e-06,2.343039881930497444e-06,2.414041090473846185e-06,2.485042299017194926e-06,2.556043507560543667e-06,2.627044716103892408e-06,2.698045924647241149e-06,2.769047133190589890e-06,2.840048341733938631e-06,2.911049550277287372e-06,2.982050758820636113e-06,3.053051967363984854e-06,3.124053175907333595e-06,3.195054384450682336e-06,3.266055592994031077e-06,3.337056801537379818e-06,3.408058010080728560e-06,3.479059218624077301e-06,3.550060427167426042e-06,3.621061635710774783e-06,3.692062844254123524e-06,3.763064052797472265e-06,3.834065261340821006e-06,3.905066469884169747e-06,3.976067678427518488e-06,4.047068886970867229e-06,4.118070095514215970e-06,4.189071304057564711e-06,4.260072512600913452e-06,4.331073721144262193e-06,4.402074929687610934e-06,4.473076138230959675e-06 +0.000000000000000000e+00,7.936507936507602272e-08,1.587301587301520454e-07,2.380952380952280814e-07,3.174603174603041438e-07,3.968253968253802063e-07,4.761904761904562687e-07,5.555555555555323311e-07,6.349206349206083936e-07,7.142857142856844560e-07,7.936507936507605184e-07,8.730158730158365808e-07,9.523809523809126433e-07,1.031746031745988706e-06,1.111111111111064662e-06,1.190476190476140619e-06,1.269841269841216575e-06,1.349206349206292532e-06,1.428571428571368488e-06,1.507936507936444445e-06,1.587301587301520402e-06,1.666666666666596358e-06,1.746031746031672315e-06,1.825396825396748271e-06,1.904761904761824228e-06,1.984126984126900184e-06,2.063492063491976141e-06,2.142857142857052097e-06,2.222222222222128054e-06,2.301587301587204010e-06,2.380952380952279967e-06,2.460317460317355924e-06,2.539682539682431880e-06,2.619047619047507837e-06,2.698412698412583793e-06,2.777777777777659750e-06,2.857142857142735706e-06,2.936507936507811663e-06,3.015873015872887619e-06,3.095238095237963576e-06,3.174603174603039533e-06,3.253968253968115489e-06,3.333333333333191446e-06,3.412698412698267402e-06,3.492063492063343359e-06,3.571428571428419315e-06,3.650793650793495272e-06,3.730158730158571228e-06,3.809523809523647185e-06,3.888888888888722718e-06,3.968253968253797827e-06,4.047619047618872937e-06,4.126984126983948047e-06,4.206349206349023156e-06,4.285714285714098266e-06,4.365079365079173375e-06,4.444444444444248485e-06,4.523809523809323594e-06,4.603174603174398704e-06,4.682539682539473813e-06,4.761904761904548923e-06,4.841269841269624032e-06,4.920634920634699142e-06,4.999999999999774251e-06 +0.000000000000000000e+00,7.245441162571312804e-08,1.449088232514262561e-07,2.173632348771393709e-07,2.898176465028524592e-07,3.622720581285655476e-07,4.347264697542786359e-07,5.071808813799916713e-07,5.796352930057047067e-07,6.520897046314177421e-07,7.245441162571307775e-07,7.969985278828438129e-07,8.694529395085568483e-07,9.419073511342698837e-07,1.014361762759982919e-06,1.086816174385695955e-06,1.159270586011408990e-06,1.231724997637122025e-06,1.304179409262835061e-06,1.376633820888548096e-06,1.449088232514261131e-06,1.521542644139974167e-06,1.593997055765687202e-06,1.666451467391400238e-06,1.738905879017113273e-06,1.811360290642826308e-06,1.883814702268539344e-06,1.956269113894252379e-06,2.028723525519965415e-06,2.101177937145678450e-06,2.173632348771391485e-06,2.246086760397104521e-06,2.318541172022817556e-06,2.390995583648530592e-06,2.463449995274243627e-06,2.535904406899956662e-06,2.608358818525669698e-06,2.680813230151382733e-06,2.753267641777095769e-06,2.825722053402808804e-06,2.898176465028521839e-06,2.970630876654234875e-06,3.043085288279947910e-06,3.115539699905660946e-06,3.187994111531373981e-06,3.260448523157087016e-06,3.332902934782800052e-06,3.405357346408513087e-06,3.477811758034226123e-06,3.550266169659939158e-06,3.622720581285652193e-06,3.695174992911365229e-06,3.767629404537078264e-06,3.840083816162791723e-06,3.912538227788505606e-06,3.984992639414219488e-06,4.057447051039933370e-06,4.129901462665647253e-06,4.202355874291361135e-06,4.274810285917075018e-06,4.347264697542788900e-06,4.419719109168502783e-06,4.492173520794216665e-06,4.564627932419930547e-06 +0.000000000000000000e+00,7.521454786136217720e-08,1.504290957227243544e-07,2.256436435840865316e-07,3.008581914454487088e-07,3.760727393068108860e-07,4.512872871681730632e-07,5.265018350295352404e-07,6.017163828908974176e-07,6.769309307522595948e-07,7.521454786136217720e-07,8.273600264749839492e-07,9.025745743363461263e-07,9.777891221977084094e-07,1.053003670059070692e-06,1.128218217920432976e-06,1.203432765781795259e-06,1.278647313643157542e-06,1.353861861504519825e-06,1.429076409365882108e-06,1.504290957227244391e-06,1.579505505088606674e-06,1.654720052949968957e-06,1.729934600811331240e-06,1.805149148672693523e-06,1.880363696534055806e-06,1.955578244395418089e-06,2.030792792256780372e-06,2.106007340118142656e-06,2.181221887979504939e-06,2.256436435840867222e-06,2.331650983702229505e-06,2.406865531563591788e-06,2.482080079424954071e-06,2.557294627286316354e-06,2.632509175147678637e-06,2.707723723009040920e-06,2.782938270870403203e-06,2.858152818731765486e-06,2.933367366593127769e-06,3.008581914454490052e-06,3.083796462315852336e-06,3.159011010177214619e-06,3.234225558038576902e-06,3.309440105899939185e-06,3.384654653761301468e-06,3.459869201622663751e-06,3.535083749484026034e-06,3.610298297345388317e-06,3.685512845206750600e-06,3.760727393068112883e-06,3.835941940929475590e-06,3.911156488790838720e-06,3.986371036652201850e-06,4.061585584513564980e-06,4.136800132374928110e-06,4.212014680236291240e-06,4.287229228097654370e-06,4.362443775959017501e-06,4.437658323820380631e-06,4.512872871681743761e-06,4.588087419543106891e-06,4.663301967404470021e-06,4.738516515265833151e-06 +0.000000000000000000e+00,7.936507936507769032e-08,1.587301587301553806e-07,2.380952380952330577e-07,3.174603174603107083e-07,3.968253968253883590e-07,4.761904761904660096e-07,5.555555555555436602e-07,6.349206349206213108e-07,7.142857142856989614e-07,7.936507936507766120e-07,8.730158730158542627e-07,9.523809523809319133e-07,1.031746031746009458e-06,1.111111111111087109e-06,1.190476190476164759e-06,1.269841269841242410e-06,1.349206349206320060e-06,1.428571428571397711e-06,1.507936507936475362e-06,1.587301587301553012e-06,1.666666666666630663e-06,1.746031746031708314e-06,1.825396825396785964e-06,1.904761904761863615e-06,1.984126984126941265e-06,2.063492063492018916e-06,2.142857142857096567e-06,2.222222222222174217e-06,2.301587301587251868e-06,2.380952380952329518e-06,2.460317460317407169e-06,2.539682539682484820e-06,2.619047619047562470e-06,2.698412698412640121e-06,2.777777777777717772e-06,2.857142857142795422e-06,2.936507936507873073e-06,3.015873015872950723e-06,3.095238095238028374e-06,3.174603174603106025e-06,3.253968253968183675e-06,3.333333333333261326e-06,3.412698412698338976e-06,3.492063492063416627e-06,3.571428571428494278e-06,3.650793650793571928e-06,3.730158730158649579e-06,3.809523809523727230e-06,3.888888888888804880e-06,3.968253968253882531e-06,4.047619047618960181e-06,4.126984126984037832e-06,4.206349206349115483e-06,4.285714285714193133e-06,4.365079365079270784e-06,4.444444444444348434e-06,4.523809523809426085e-06,4.603174603174503736e-06,4.682539682539581386e-06,4.761904761904659037e-06,4.841269841269736688e-06,4.920634920634814338e-06,4.999999999999891989e-06 +0.000000000000000000e+00,7.611627140951231427e-08,1.522325428190246285e-07,2.283488142285369428e-07,3.044650856380492571e-07,3.805813570475615714e-07,4.566976284570738856e-07,5.328138998665861999e-07,6.089301712760985142e-07,6.850464426856108284e-07,7.611627140951231427e-07,8.372789855046354570e-07,9.133952569141477713e-07,9.895115283236600855e-07,1.065627799733172400e-06,1.141744071142684714e-06,1.217860342552197028e-06,1.293976613961709343e-06,1.370092885371221657e-06,1.446209156780733971e-06,1.522325428190246285e-06,1.598441699599758600e-06,1.674557971009270914e-06,1.750674242418783228e-06,1.826790513828295543e-06,1.902906785237807857e-06,1.979023056647320171e-06,2.055139328056832485e-06,2.131255599466344800e-06,2.207371870875857114e-06,2.283488142285369428e-06,2.359604413694881742e-06,2.435720685104394057e-06,2.511836956513906371e-06,2.587953227923418685e-06,2.664069499332931000e-06,2.740185770742443314e-06,2.816302042151955628e-06,2.892418313561467942e-06,2.968534584970980257e-06,3.044650856380492571e-06,3.120767127790004885e-06,3.196883399199517199e-06,3.272999670609029514e-06,3.349115942018541828e-06,3.425232213428054142e-06,3.501348484837566457e-06,3.577464756247078771e-06,3.653581027656591085e-06,3.729697299066103399e-06,3.805813570475615714e-06,3.881929841885128451e-06,3.958046113294641189e-06,4.034162384704153927e-06,4.110278656113666665e-06,4.186394927523179403e-06,4.262511198932692140e-06,4.338627470342204878e-06,4.414743741751717616e-06,4.490860013161230354e-06,4.566976284570743091e-06,4.643092555980255829e-06,4.719208827389768567e-06,4.795325098799281305e-06 +0.000000000000000000e+00,7.102682856665179634e-08,1.420536571333035927e-07,2.130804856999553758e-07,2.841073142666071324e-07,3.551341428332588890e-07,4.261609713999106457e-07,4.971877999665624023e-07,5.682146285332141589e-07,6.392414570998659156e-07,7.102682856665176722e-07,7.812951142331694288e-07,8.523219427998211855e-07,9.233487713664729421e-07,9.943755999331248046e-07,1.065402428499776667e-06,1.136429257066428530e-06,1.207456085633080392e-06,1.278482914199732255e-06,1.349509742766384117e-06,1.420536571333035980e-06,1.491563399899687842e-06,1.562590228466339705e-06,1.633617057032991567e-06,1.704643885599643430e-06,1.775670714166295292e-06,1.846697542732947155e-06,1.917724371299598806e-06,1.988751199866250456e-06,2.059778028432902107e-06,2.130804856999553758e-06,2.201831685566205409e-06,2.272858514132857059e-06,2.343885342699508710e-06,2.414912171266160361e-06,2.485938999832812012e-06,2.556965828399463662e-06,2.627992656966115313e-06,2.699019485532766964e-06,2.770046314099418615e-06,2.841073142666070265e-06,2.912099971232721916e-06,2.983126799799373567e-06,3.054153628366025218e-06,3.125180456932676868e-06,3.196207285499328519e-06,3.267234114065980170e-06,3.338260942632631821e-06,3.409287771199283471e-06,3.480314599765935122e-06,3.551341428332586773e-06,3.622368256899238424e-06,3.693395085465890074e-06,3.764421914032541725e-06,3.835448742599193376e-06,3.906475571165845027e-06,3.977502399732496677e-06,4.048529228299148328e-06,4.119556056865799979e-06,4.190582885432451630e-06,4.261609713999103280e-06,4.332636542565754931e-06,4.403663371132406582e-06,4.474690199699058233e-06 +0.000000000000000000e+00,7.936507936507537421e-08,1.587301587301507484e-07,2.380952380952261226e-07,3.174603174603014969e-07,3.968253968253768711e-07,4.761904761904522453e-07,5.555555555555276724e-07,6.349206349206030996e-07,7.142857142856785268e-07,7.936507936507539539e-07,8.730158730158293811e-07,9.523809523809048082e-07,1.031746031745980235e-06,1.111111111111055768e-06,1.190476190476131301e-06,1.269841269841206834e-06,1.349206349206282368e-06,1.428571428571357901e-06,1.507936507936433434e-06,1.587301587301508967e-06,1.666666666666584500e-06,1.746031746031660033e-06,1.825396825396735566e-06,1.904761904761811099e-06,1.984126984126886632e-06,2.063492063491962165e-06,2.142857142857037698e-06,2.222222222222113231e-06,2.301587301587188764e-06,2.380952380952264297e-06,2.460317460317339830e-06,2.539682539682415363e-06,2.619047619047490896e-06,2.698412698412566429e-06,2.777777777777641962e-06,2.857142857142717495e-06,2.936507936507793028e-06,3.015873015872868561e-06,3.095238095237944094e-06,3.174603174603019627e-06,3.253968253968095160e-06,3.333333333333170693e-06,3.412698412698246226e-06,3.492063492063321759e-06,3.571428571428397292e-06,3.650793650793472825e-06,3.730158730158548359e-06,3.809523809523623892e-06,3.888888888888699001e-06,3.968253968253774111e-06,4.047619047618849220e-06,4.126984126983924330e-06,4.206349206348999439e-06,4.285714285714074549e-06,4.365079365079149658e-06,4.444444444444224768e-06,4.523809523809299877e-06,4.603174603174374987e-06,4.682539682539450096e-06,4.761904761904525206e-06,4.841269841269600315e-06,4.920634920634675425e-06,4.999999999999750534e-06 +0.000000000000000000e+00,7.515328144035195318e-08,1.503065628807039064e-07,2.254598443210558463e-07,3.006131257614077598e-07,3.757664072017596733e-07,4.509196886421115868e-07,5.260729700824634473e-07,6.012262515228153078e-07,6.763795329631671684e-07,7.515328144035190289e-07,8.266860958438708895e-07,9.018393772842227500e-07,9.769926587245746105e-07,1.052145940164926471e-06,1.127299221605278332e-06,1.202452503045630192e-06,1.277605784485982053e-06,1.352759065926333913e-06,1.427912347366685774e-06,1.503065628807037634e-06,1.578218910247389495e-06,1.653372191687741355e-06,1.728525473128093216e-06,1.803678754568445076e-06,1.878832036008796937e-06,1.953985317449148798e-06,2.029138598889500870e-06,2.104291880329852942e-06,2.179445161770205014e-06,2.254598443210557087e-06,2.329751724650909159e-06,2.404905006091261231e-06,2.480058287531613304e-06,2.555211568971965376e-06,2.630364850412317448e-06,2.705518131852669521e-06,2.780671413293021593e-06,2.855824694733373665e-06,2.930977976173725737e-06,3.006131257614077810e-06,3.081284539054429882e-06,3.156437820494781954e-06,3.231591101935134027e-06,3.306744383375486099e-06,3.381897664815838171e-06,3.457050946256190244e-06,3.532204227696542316e-06,3.607357509136894388e-06,3.682510790577246460e-06,3.757664072017598533e-06,3.832817353457950605e-06,3.907970634898302677e-06,3.983123916338654750e-06,4.058277197779006822e-06,4.133430479219358894e-06,4.208583760659710967e-06,4.283737042100063039e-06,4.358890323540415111e-06,4.434043604980767183e-06,4.509196886421119256e-06,4.584350167861471328e-06,4.659503449301823400e-06,4.734656730742175473e-06 +0.000000000000000000e+00,7.287277895420137769e-08,1.457455579084027554e-07,2.186183368626041463e-07,2.914911158168055637e-07,3.643638947710069811e-07,4.372366737252083985e-07,5.101094526794097629e-07,5.829822316336111274e-07,6.558550105878124918e-07,7.287277895420138563e-07,8.016005684962152207e-07,8.744733474504165852e-07,9.473461264046179497e-07,1.020218905358819314e-06,1.093091684313020679e-06,1.165964463267222043e-06,1.238837242221423407e-06,1.311710021175624772e-06,1.384582800129826136e-06,1.457455579084027501e-06,1.530328358038228865e-06,1.603201136992430230e-06,1.676073915946631594e-06,1.748946694900832959e-06,1.821819473855034323e-06,1.894692252809235688e-06,1.967565031763437052e-06,2.040437810717638205e-06,2.113310589671839357e-06,2.186183368626040510e-06,2.259056147580241663e-06,2.331928926534442815e-06,2.404801705488643968e-06,2.477674484442845121e-06,2.550547263397046274e-06,2.623420042351247426e-06,2.696292821305448579e-06,2.769165600259649732e-06,2.842038379213850884e-06,2.914911158168052037e-06,2.987783937122253190e-06,3.060656716076454342e-06,3.133529495030655495e-06,3.206402273984856648e-06,3.279275052939057801e-06,3.352147831893258953e-06,3.425020610847460106e-06,3.497893389801661259e-06,3.570766168755862411e-06,3.643638947710063564e-06,3.716511726664264717e-06,3.789384505618465869e-06,3.862257284572667022e-06,3.935130063526868175e-06,4.008002842481069327e-06,4.080875621435270480e-06,4.153748400389471633e-06,4.226621179343672786e-06,4.299493958297873938e-06,4.372366737252075091e-06,4.445239516206276244e-06,4.518112295160477396e-06,4.590985074114678549e-06 +0.000000000000000000e+00,7.111755052124288415e-08,1.422351010424857683e-07,2.133526515637286657e-07,2.844702020849715895e-07,3.555877526062145134e-07,4.267053031274574372e-07,4.978228536487003081e-07,5.689404041699431791e-07,6.400579546911860500e-07,7.111755052124289209e-07,7.822930557336717918e-07,8.534106062549146627e-07,9.245281567761575336e-07,9.956457072974004045e-07,1.066763257818643275e-06,1.137880808339886146e-06,1.208998358861129017e-06,1.280115909382371888e-06,1.351233459903614759e-06,1.422351010424857630e-06,1.493468560946100501e-06,1.564586111467343372e-06,1.635703661988586243e-06,1.706821212509829114e-06,1.777938763031071985e-06,1.849056313552314855e-06,1.920173864073557938e-06,1.991291414594801233e-06,2.062408965116044527e-06,2.133526515637287821e-06,2.204644066158531116e-06,2.275761616679774410e-06,2.346879167201017705e-06,2.417996717722260999e-06,2.489114268243504294e-06,2.560231818764747588e-06,2.631349369285990882e-06,2.702466919807234177e-06,2.773584470328477471e-06,2.844702020849720766e-06,2.915819571370964060e-06,2.986937121892207355e-06,3.058054672413450649e-06,3.129172222934693943e-06,3.200289773455937238e-06,3.271407323977180532e-06,3.342524874498423827e-06,3.413642425019667121e-06,3.484759975540910416e-06,3.555877526062153710e-06,3.626995076583397004e-06,3.698112627104640299e-06,3.769230177625883593e-06,3.840347728147126888e-06,3.911465278668370182e-06,3.982582829189613477e-06,4.053700379710856771e-06,4.124817930232100065e-06,4.195935480753343360e-06,4.267053031274586654e-06,4.338170581795829949e-06,4.409288132317073243e-06,4.480405682838316538e-06 +0.000000000000000000e+00,7.936507936507766385e-08,1.587301587301553277e-07,2.380952380952330048e-07,3.174603174603107083e-07,3.968253968253884119e-07,4.761904761904661155e-07,5.555555555555437661e-07,6.349206349206214167e-07,7.142857142856990673e-07,7.936507936507767179e-07,8.730158730158543685e-07,9.523809523809320191e-07,1.031746031746009670e-06,1.111111111111087320e-06,1.190476190476164971e-06,1.269841269841242622e-06,1.349206349206320272e-06,1.428571428571397923e-06,1.507936507936475573e-06,1.587301587301553224e-06,1.666666666666630875e-06,1.746031746031708525e-06,1.825396825396786176e-06,1.904761904761863827e-06,1.984126984126941265e-06,2.063492063492018916e-06,2.142857142857096567e-06,2.222222222222174217e-06,2.301587301587251868e-06,2.380952380952329518e-06,2.460317460317407169e-06,2.539682539682484820e-06,2.619047619047562470e-06,2.698412698412640121e-06,2.777777777777717772e-06,2.857142857142795422e-06,2.936507936507873073e-06,3.015873015872950723e-06,3.095238095238028374e-06,3.174603174603106025e-06,3.253968253968183675e-06,3.333333333333261326e-06,3.412698412698338976e-06,3.492063492063416627e-06,3.571428571428494278e-06,3.650793650793571928e-06,3.730158730158649579e-06,3.809523809523727230e-06,3.888888888888804880e-06,3.968253968253882531e-06,4.047619047618960181e-06,4.126984126984037832e-06,4.206349206349115483e-06,4.285714285714193133e-06,4.365079365079270784e-06,4.444444444444348434e-06,4.523809523809426085e-06,4.603174603174503736e-06,4.682539682539581386e-06,4.761904761904659037e-06,4.841269841269736688e-06,4.920634920634814338e-06,4.999999999999891989e-06 +0.000000000000000000e+00,7.936507936508021818e-08,1.587301587301604364e-07,2.380952380952406546e-07,3.174603174603208727e-07,3.968253968254010645e-07,4.761904761904812562e-07,5.555555555555614479e-07,6.349206349206416396e-07,7.142857142857218313e-07,7.936507936508020230e-07,8.730158730158822147e-07,9.523809523809624065e-07,1.031746031746042492e-06,1.111111111111122684e-06,1.190476190476202876e-06,1.269841269841283067e-06,1.349206349206363259e-06,1.428571428571443451e-06,1.507936507936523643e-06,1.587301587301603834e-06,1.666666666666684026e-06,1.746031746031764218e-06,1.825396825396844409e-06,1.904761904761924601e-06,1.984126984127004793e-06,2.063492063492084985e-06,2.142857142857165176e-06,2.222222222222245368e-06,2.301587301587325560e-06,2.380952380952405751e-06,2.460317460317485943e-06,2.539682539682566135e-06,2.619047619047646327e-06,2.698412698412726518e-06,2.777777777777806710e-06,2.857142857142886902e-06,2.936507936507967093e-06,3.015873015873047285e-06,3.095238095238127477e-06,3.174603174603207669e-06,3.253968253968287860e-06,3.333333333333368052e-06,3.412698412698448244e-06,3.492063492063528435e-06,3.571428571428608627e-06,3.650793650793688819e-06,3.730158730158769011e-06,3.809523809523849202e-06,3.888888888888929394e-06,3.968253968254009586e-06,4.047619047619089777e-06,4.126984126984169969e-06,4.206349206349250161e-06,4.285714285714330353e-06,4.365079365079410544e-06,4.444444444444490736e-06,4.523809523809570928e-06,4.603174603174651119e-06,4.682539682539731311e-06,4.761904761904811503e-06,4.841269841269891695e-06,4.920634920634971886e-06,5.000000000000052078e-06 +0.000000000000000000e+00,7.102682856665337129e-08,1.420536571333067426e-07,2.130804856999601139e-07,2.841073142666134852e-07,3.551341428332668300e-07,4.261609713999201748e-07,4.971877999665735196e-07,5.682146285332268644e-07,6.392414570998802093e-07,7.102682856665335541e-07,7.812951142331868989e-07,8.523219427998402437e-07,9.233487713664935885e-07,9.943755999331468275e-07,1.065402428499800172e-06,1.136429257066453517e-06,1.207456085633106862e-06,1.278482914199760207e-06,1.349509742766413552e-06,1.420536571333066896e-06,1.491563399899720241e-06,1.562590228466373586e-06,1.633617057033026931e-06,1.704643885599680276e-06,1.775670714166333621e-06,1.846697542732986965e-06,1.917724371299640310e-06,1.988751199866293655e-06,2.059778028432947000e-06,2.130804856999600345e-06,2.201831685566253689e-06,2.272858514132907034e-06,2.343885342699560379e-06,2.414912171266213724e-06,2.485938999832867069e-06,2.556965828399520414e-06,2.627992656966173758e-06,2.699019485532827103e-06,2.770046314099480448e-06,2.841073142666133793e-06,2.912099971232787138e-06,2.983126799799440482e-06,3.054153628366093827e-06,3.125180456932747172e-06,3.196207285499400517e-06,3.267234114066053862e-06,3.338260942632707207e-06,3.409287771199360551e-06,3.480314599766013896e-06,3.551341428332667241e-06,3.622368256899320586e-06,3.693395085465973931e-06,3.764421914032627275e-06,3.835448742599280620e-06,3.906475571165933965e-06,3.977502399732587310e-06,4.048529228299240655e-06,4.119556056865894000e-06,4.190582885432547344e-06,4.261609713999200689e-06,4.332636542565854034e-06,4.403663371132507379e-06,4.474690199699160724e-06 +0.000000000000000000e+00,7.936507936507676388e-08,1.587301587301535278e-07,2.380952380952303049e-07,3.174603174603071085e-07,3.968253968253839120e-07,4.761904761904607156e-07,5.555555555555375192e-07,6.349206349206143228e-07,7.142857142856911264e-07,7.936507936507679299e-07,8.730158730158447335e-07,9.523809523809215371e-07,1.031746031745998447e-06,1.111111111111075250e-06,1.190476190476152054e-06,1.269841269841228857e-06,1.349206349206305661e-06,1.428571428571382464e-06,1.507936507936459268e-06,1.587301587301536072e-06,1.666666666666612875e-06,1.746031746031689679e-06,1.825396825396766482e-06,1.904761904761843286e-06,1.984126984126920090e-06,2.063492063491996893e-06,2.142857142857073697e-06,2.222222222222150500e-06,2.301587301587227304e-06,2.380952380952304107e-06,2.460317460317380911e-06,2.539682539682457715e-06,2.619047619047534518e-06,2.698412698412611322e-06,2.777777777777688125e-06,2.857142857142764929e-06,2.936507936507841733e-06,3.015873015872918536e-06,3.095238095237995340e-06,3.174603174603072143e-06,3.253968253968148947e-06,3.333333333333225750e-06,3.412698412698302554e-06,3.492063492063379358e-06,3.571428571428456161e-06,3.650793650793532965e-06,3.730158730158609768e-06,3.809523809523686572e-06,3.888888888888763376e-06,3.968253968253840179e-06,4.047619047618916983e-06,4.126984126983993786e-06,4.206349206349070590e-06,4.285714285714147393e-06,4.365079365079224197e-06,4.444444444444301001e-06,4.523809523809377804e-06,4.603174603174454608e-06,4.682539682539531411e-06,4.761904761904608215e-06,4.841269841269685019e-06,4.920634920634761822e-06,4.999999999999838626e-06 +0.000000000000000000e+00,7.245441162571590737e-08,1.449088232514318147e-07,2.173632348771477353e-07,2.898176465028636824e-07,3.622720581285796295e-07,4.347264697542955766e-07,5.071808813800115766e-07,5.796352930057275766e-07,6.520897046314435766e-07,7.245441162571595766e-07,7.969985278828755766e-07,8.694529395085915767e-07,9.419073511343075767e-07,1.014361762760023577e-06,1.086816174385739577e-06,1.159270586011455577e-06,1.231724997637171577e-06,1.304179409262887577e-06,1.376633820888603577e-06,1.449088232514319577e-06,1.521542644140035577e-06,1.593997055765751577e-06,1.666451467391467577e-06,1.738905879017183577e-06,1.811360290642899577e-06,1.883814702268615577e-06,1.956269113894331577e-06,2.028723525520047577e-06,2.101177937145763577e-06,2.173632348771479577e-06,2.246086760397195577e-06,2.318541172022911577e-06,2.390995583648627577e-06,2.463449995274343577e-06,2.535904406900059577e-06,2.608358818525775577e-06,2.680813230151491577e-06,2.753267641777207577e-06,2.825722053402923577e-06,2.898176465028639577e-06,2.970630876654355577e-06,3.043085288280071577e-06,3.115539699905787577e-06,3.187994111531503577e-06,3.260448523157219577e-06,3.332902934782935577e-06,3.405357346408651577e-06,3.477811758034367577e-06,3.550266169660083577e-06,3.622720581285799577e-06,3.695174992911515577e-06,3.767629404537231577e-06,3.840083816162947577e-06,3.912538227788663154e-06,3.984992639414378730e-06,4.057447051040094307e-06,4.129901462665809883e-06,4.202355874291525460e-06,4.274810285917241036e-06,4.347264697542956613e-06,4.419719109168672189e-06,4.492173520794387766e-06,4.564627932420103342e-06 +0.000000000000000000e+00,7.521454786136531386e-08,1.504290957227306277e-07,2.256436435840959548e-07,3.008581914454613084e-07,3.760727393068266620e-07,4.512872871681920155e-07,5.265018350295573691e-07,6.017163828909227227e-07,6.769309307522880762e-07,7.521454786136534298e-07,8.273600264750187834e-07,9.025745743363841370e-07,9.777891221977494905e-07,1.053003670059114738e-06,1.128218217920479986e-06,1.203432765781845234e-06,1.278647313643210481e-06,1.353861861504575729e-06,1.429076409365940977e-06,1.504290957227306224e-06,1.579505505088671472e-06,1.654720052950036720e-06,1.729934600811401967e-06,1.805149148672767215e-06,1.880363696534132463e-06,1.955578244395497710e-06,2.030792792256862958e-06,2.106007340118228206e-06,2.181221887979593454e-06,2.256436435840958701e-06,2.331650983702323949e-06,2.406865531563689197e-06,2.482080079425054444e-06,2.557294627286419692e-06,2.632509175147784940e-06,2.707723723009150187e-06,2.782938270870515435e-06,2.858152818731880683e-06,2.933367366593245930e-06,3.008581914454611178e-06,3.083796462315976426e-06,3.159011010177341674e-06,3.234225558038706921e-06,3.309440105900072169e-06,3.384654653761437417e-06,3.459869201622802664e-06,3.535083749484167912e-06,3.610298297345533160e-06,3.685512845206898407e-06,3.760727393068263655e-06,3.835941940929628903e-06,3.911156488790994574e-06,3.986371036652360245e-06,4.061585584513725916e-06,4.136800132375091588e-06,4.212014680236457259e-06,4.287229228097822930e-06,4.362443775959188601e-06,4.437658323820554272e-06,4.512872871681919944e-06,4.588087419543285615e-06,4.663301967404651286e-06,4.738516515266016957e-06 +0.000000000000000000e+00,7.936507936508039024e-08,1.587301587301607805e-07,2.380952380952411575e-07,3.174603174603215080e-07,3.968253968254018585e-07,4.761904761904822091e-07,5.555555555555626126e-07,6.349206349206430160e-07,7.142857142857234195e-07,7.936507936508038230e-07,8.730158730158842264e-07,9.523809523809646299e-07,1.031746031746045033e-06,1.111111111111125437e-06,1.190476190476205840e-06,1.269841269841286244e-06,1.349206349206366647e-06,1.428571428571447051e-06,1.507936507936527454e-06,1.587301587301607858e-06,1.666666666666688261e-06,1.746031746031768665e-06,1.825396825396849068e-06,1.904761904761929472e-06,1.984126984127009875e-06,2.063492063492090067e-06,2.142857142857170258e-06,2.222222222222250450e-06,2.301587301587330642e-06,2.380952380952410834e-06,2.460317460317491025e-06,2.539682539682571217e-06,2.619047619047651409e-06,2.698412698412731600e-06,2.777777777777811792e-06,2.857142857142891984e-06,2.936507936507972176e-06,3.015873015873052367e-06,3.095238095238132559e-06,3.174603174603212751e-06,3.253968253968292942e-06,3.333333333333373134e-06,3.412698412698453326e-06,3.492063492063533518e-06,3.571428571428613709e-06,3.650793650793693901e-06,3.730158730158774093e-06,3.809523809523854285e-06,3.888888888888934476e-06,3.968253968254014668e-06,4.047619047619094860e-06,4.126984126984175051e-06,4.206349206349255243e-06,4.285714285714335435e-06,4.365079365079415627e-06,4.444444444444495818e-06,4.523809523809576010e-06,4.603174603174656202e-06,4.682539682539736393e-06,4.761904761904816585e-06,4.841269841269896777e-06,4.920634920634976969e-06,5.000000000000057160e-06 +0.000000000000000000e+00,7.611627140951445832e-08,1.522325428190289166e-07,2.283488142285433750e-07,3.044650856380578333e-07,3.805813570475722652e-07,4.566976284570866970e-07,5.328138998666011289e-07,6.089301712761155607e-07,6.850464426856299926e-07,7.611627140951444244e-07,8.372789855046588563e-07,9.133952569141732881e-07,9.895115283236876141e-07,1.065627799733202046e-06,1.141744071142716478e-06,1.217860342552230910e-06,1.293976613961745342e-06,1.370092885371259773e-06,1.446209156780774205e-06,1.522325428190288637e-06,1.598441699599803069e-06,1.674557971009317501e-06,1.750674242418831933e-06,1.826790513828346365e-06,1.902906785237860796e-06,1.979023056647375228e-06,2.055139328056889660e-06,2.131255599466404092e-06,2.207371870875918524e-06,2.283488142285432956e-06,2.359604413694947387e-06,2.435720685104461819e-06,2.511836956513976251e-06,2.587953227923490683e-06,2.664069499333005115e-06,2.740185770742519547e-06,2.816302042152033979e-06,2.892418313561548410e-06,2.968534584971062842e-06,3.044650856380577274e-06,3.120767127790091706e-06,3.196883399199606138e-06,3.272999670609120570e-06,3.349115942018635002e-06,3.425232213428149433e-06,3.501348484837663865e-06,3.577464756247178297e-06,3.653581027656692729e-06,3.729697299066207161e-06,3.805813570475721593e-06,3.881929841885236025e-06,3.958046113294750456e-06,4.034162384704264888e-06,4.110278656113779320e-06,4.186394927523293752e-06,4.262511198932808184e-06,4.338627470342322616e-06,4.414743741751837048e-06,4.490860013161351479e-06,4.566976284570865911e-06,4.643092555980380343e-06,4.719208827389894775e-06,4.795325098799409207e-06 +0.000000000000000000e+00,7.254784548383005261e-08,1.450956909676601052e-07,2.176435364514901578e-07,2.901913819353202104e-07,3.627392274191502630e-07,4.352870729029803156e-07,5.078349183868103682e-07,5.803827638706404208e-07,6.529306093544704735e-07,7.254784548383005261e-07,7.980263003221305787e-07,8.705741458059606313e-07,9.431219912897906839e-07,1.015669836773620736e-06,1.088217682257450789e-06,1.160765527741280842e-06,1.233313373225110894e-06,1.305861218708940947e-06,1.378409064192771000e-06,1.450956909676601052e-06,1.523504755160431105e-06,1.596052600644261157e-06,1.668600446128091210e-06,1.741148291611921263e-06,1.813696137095751315e-06,1.886243982579581368e-06,1.958791828063411632e-06,2.031339673547241896e-06,2.103887519031072161e-06,2.176435364514902425e-06,2.248983209998732690e-06,2.321531055482562954e-06,2.394078900966393218e-06,2.466626746450223483e-06,2.539174591934053747e-06,2.611722437417884011e-06,2.684270282901714276e-06,2.756818128385544540e-06,2.829365973869374804e-06,2.901913819353205069e-06,2.974461664837035333e-06,3.047009510320865598e-06,3.119557355804695862e-06,3.192105201288526126e-06,3.264653046772356391e-06,3.337200892256186655e-06,3.409748737740016919e-06,3.482296583223847184e-06,3.554844428707677448e-06,3.627392274191507712e-06,3.699940119675337977e-06,3.772487965159168241e-06,3.845035810642998506e-06,3.917583656126828346e-06,3.990131501610658187e-06,4.062679347094488028e-06,4.135227192578317869e-06,4.207775038062147710e-06,4.280322883545977551e-06,4.352870729029807392e-06,4.425418574513637232e-06,4.497966419997467073e-06,4.570514265481296914e-06 +0.000000000000000000e+00,7.936507936507884176e-08,1.587301587301576835e-07,2.380952380952365253e-07,3.174603174603153670e-07,3.968253968253941823e-07,4.761904761904729976e-07,5.555555555555518129e-07,6.349206349206306282e-07,7.142857142857094435e-07,7.936507936507882587e-07,8.730158730158670740e-07,9.523809523809458893e-07,1.031746031746024705e-06,1.111111111111103626e-06,1.190476190476182547e-06,1.269841269841261468e-06,1.349206349206340389e-06,1.428571428571419310e-06,1.507936507936498232e-06,1.587301587301577153e-06,1.666666666666656074e-06,1.746031746031734995e-06,1.825396825396813916e-06,1.904761904761892837e-06,1.984126984126971759e-06,2.063492063492050680e-06,2.142857142857129601e-06,2.222222222222208522e-06,2.301587301587287443e-06,2.380952380952366364e-06,2.460317460317445286e-06,2.539682539682524207e-06,2.619047619047603128e-06,2.698412698412682049e-06,2.777777777777760970e-06,2.857142857142839891e-06,2.936507936507918813e-06,3.015873015872997734e-06,3.095238095238076655e-06,3.174603174603155576e-06,3.253968253968234497e-06,3.333333333333313418e-06,3.412698412698392340e-06,3.492063492063471261e-06,3.571428571428550182e-06,3.650793650793629103e-06,3.730158730158708024e-06,3.809523809523786945e-06,3.888888888888865867e-06,3.968253968253945211e-06,4.047619047619024556e-06,4.126984126984103901e-06,4.206349206349183245e-06,4.285714285714262590e-06,4.365079365079341935e-06,4.444444444444421279e-06,4.523809523809500624e-06,4.603174603174579969e-06,4.682539682539659313e-06,4.761904761904738658e-06,4.841269841269818003e-06,4.920634920634897347e-06,4.999999999999976692e-06 +0.000000000000000000e+00,7.282913123391004951e-08,1.456582624678200990e-07,2.184873937017301485e-07,2.913165249356401980e-07,3.641456561695502211e-07,4.369747874034602441e-07,5.098039186373702672e-07,5.826330498712802902e-07,6.554621811051903132e-07,7.282913123391003363e-07,8.011204435730103593e-07,8.739495748069203824e-07,9.467787060408304054e-07,1.019607837274740534e-06,1.092436968508650663e-06,1.165266099742560792e-06,1.238095230976470921e-06,1.310924362210381050e-06,1.383753493444291179e-06,1.456582624678201308e-06,1.529411755912111437e-06,1.602240887146021566e-06,1.675070018379931695e-06,1.747899149613841823e-06,1.820728280847751952e-06,1.893557412081662081e-06,1.966386543315572210e-06,2.039215674549482339e-06,2.112044805783392468e-06,2.184873937017302597e-06,2.257703068251212726e-06,2.330532199485122855e-06,2.403361330719032984e-06,2.476190461952943113e-06,2.549019593186853242e-06,2.621848724420763371e-06,2.694677855654673499e-06,2.767506986888583628e-06,2.840336118122493757e-06,2.913165249356403886e-06,2.985994380590314015e-06,3.058823511824224144e-06,3.131652643058134273e-06,3.204481774292044402e-06,3.277310905525954531e-06,3.350140036759864660e-06,3.422969167993774789e-06,3.495798299227684918e-06,3.568627430461595046e-06,3.641456561695505175e-06,3.714285692929415304e-06,3.787114824163325433e-06,3.859943955397235986e-06,3.932773086631146962e-06,4.005602217865057938e-06,4.078431349098968913e-06,4.151260480332879889e-06,4.224089611566790865e-06,4.296918742800701841e-06,4.369747874034612817e-06,4.442577005268523793e-06,4.515406136502434769e-06,4.588235267736345745e-06 +0.000000000000000000e+00,7.936507936507856382e-08,1.587301587301571276e-07,2.380952380952357047e-07,3.174603174603143082e-07,3.968253968253929118e-07,4.761904761904715153e-07,5.555555555555501188e-07,6.349206349206287223e-07,7.142857142857073259e-07,7.936507936507859294e-07,8.730158730158645329e-07,9.523809523809431365e-07,1.031746031746021740e-06,1.111111111111100238e-06,1.190476190476178735e-06,1.269841269841257233e-06,1.349206349206335731e-06,1.428571428571414228e-06,1.507936507936492726e-06,1.587301587301571224e-06,1.666666666666649721e-06,1.746031746031728219e-06,1.825396825396806716e-06,1.904761904761885214e-06,1.984126984126963712e-06,2.063492063492042209e-06,2.142857142857120707e-06,2.222222222222199205e-06,2.301587301587277702e-06,2.380952380952356200e-06,2.460317460317434698e-06,2.539682539682513195e-06,2.619047619047591693e-06,2.698412698412670191e-06,2.777777777777748688e-06,2.857142857142827186e-06,2.936507936507905684e-06,3.015873015872984181e-06,3.095238095238062679e-06,3.174603174603141177e-06,3.253968253968219674e-06,3.333333333333298172e-06,3.412698412698376669e-06,3.492063492063455167e-06,3.571428571428533665e-06,3.650793650793612162e-06,3.730158730158690660e-06,3.809523809523769158e-06,3.888888888888848079e-06,3.968253968253926577e-06,4.047619047619005074e-06,4.126984126984083572e-06,4.206349206349162069e-06,4.285714285714240567e-06,4.365079365079319065e-06,4.444444444444397562e-06,4.523809523809476060e-06,4.603174603174554558e-06,4.682539682539633055e-06,4.761904761904711553e-06,4.841269841269790051e-06,4.920634920634868548e-06,4.999999999999947046e-06 +0.000000000000000000e+00,7.598597532050955618e-08,1.519719506410191124e-07,2.279579259615286685e-07,3.039439012820382247e-07,3.799298766025478074e-07,4.559158519230573900e-07,5.319018272435669727e-07,6.078878025640765553e-07,6.838737778845861379e-07,7.598597532050957206e-07,8.358457285256053032e-07,9.118317038461148859e-07,9.878176791666244685e-07,1.063803654487133945e-06,1.139789629807643422e-06,1.215775605128152899e-06,1.291761580448662376e-06,1.367747555769171852e-06,1.443733531089681329e-06,1.519719506410190806e-06,1.595705481730700283e-06,1.671691457051209759e-06,1.747677432371719236e-06,1.823663407692228713e-06,1.899649383012738190e-06,1.975635358333247667e-06,2.051621333653757143e-06,2.127607308974266620e-06,2.203593284294776097e-06,2.279579259615285574e-06,2.355565234935795050e-06,2.431551210256304527e-06,2.507537185576814004e-06,2.583523160897323481e-06,2.659509136217832957e-06,2.735495111538342434e-06,2.811481086858851911e-06,2.887467062179361388e-06,2.963453037499870865e-06,3.039439012820380341e-06,3.115424988140889818e-06,3.191410963461399295e-06,3.267396938781908772e-06,3.343382914102418248e-06,3.419368889422927725e-06,3.495354864743437202e-06,3.571340840063946679e-06,3.647326815384456155e-06,3.723312790704965632e-06,3.799298766025475109e-06,3.875284741345984586e-06,3.951270716666494486e-06,4.027256691987004386e-06,4.103242667307514287e-06,4.179228642628024187e-06,4.255214617948534087e-06,4.331200593269043987e-06,4.407186568589553888e-06,4.483172543910063788e-06,4.559158519230573688e-06,4.635144494551083589e-06,4.711130469871593489e-06,4.787116445192103389e-06 +0.000000000000000000e+00,7.254784548383066141e-08,1.450956909676613228e-07,2.176435364514919842e-07,2.901913819353226456e-07,3.627392274191533335e-07,4.352870729029840214e-07,5.078349183868147093e-07,5.803827638706453972e-07,6.529306093544760850e-07,7.254784548383067729e-07,7.980263003221374608e-07,8.705741458059681487e-07,9.431219912897988366e-07,1.015669836773629630e-06,1.088217682257460318e-06,1.160765527741291006e-06,1.233313373225121694e-06,1.305861218708952382e-06,1.378409064192783070e-06,1.450956909676613758e-06,1.523504755160444445e-06,1.596052600644275133e-06,1.668600446128105821e-06,1.741148291611936509e-06,1.813696137095767197e-06,1.886243982579597885e-06,1.958791828063428573e-06,2.031339673547259261e-06,2.103887519031089949e-06,2.176435364514920636e-06,2.248983209998751324e-06,2.321531055482582012e-06,2.394078900966412700e-06,2.466626746450243388e-06,2.539174591934074076e-06,2.611722437417904764e-06,2.684270282901735452e-06,2.756818128385566139e-06,2.829365973869396827e-06,2.901913819353227515e-06,2.974461664837058203e-06,3.047009510320888891e-06,3.119557355804719579e-06,3.192105201288550267e-06,3.264653046772380955e-06,3.337200892256211643e-06,3.409748737740042330e-06,3.482296583223873018e-06,3.554844428707703706e-06,3.627392274191534394e-06,3.699940119675365082e-06,3.772487965159195770e-06,3.845035810643026458e-06,3.917583656126857146e-06,3.990131501610687833e-06,4.062679347094518521e-06,4.135227192578349209e-06,4.207775038062179897e-06,4.280322883546010585e-06,4.352870729029841273e-06,4.425418574513671961e-06,4.497966419997502649e-06,4.570514265481333336e-06 +0.000000000000000000e+00,7.936507936507964908e-08,1.587301587301592982e-07,2.380952380952389340e-07,3.174603174603185434e-07,3.968253968253981528e-07,4.761904761904777622e-07,5.555555555555573186e-07,6.349206349206368750e-07,7.142857142857164315e-07,7.936507936507959879e-07,8.730158730158755444e-07,9.523809523809551008e-07,1.031746031746034657e-06,1.111111111111114214e-06,1.190476190476193770e-06,1.269841269841273327e-06,1.349206349206352883e-06,1.428571428571432439e-06,1.507936507936511996e-06,1.587301587301591552e-06,1.666666666666671109e-06,1.746031746031750665e-06,1.825396825396830222e-06,1.904761904761909778e-06,1.984126984126989546e-06,2.063492063492069314e-06,2.142857142857149083e-06,2.222222222222228851e-06,2.301587301587308619e-06,2.380952380952388387e-06,2.460317460317468155e-06,2.539682539682547924e-06,2.619047619047627692e-06,2.698412698412707460e-06,2.777777777777787228e-06,2.857142857142866996e-06,2.936507936507946765e-06,3.015873015873026533e-06,3.095238095238106301e-06,3.174603174603186069e-06,3.253968253968265837e-06,3.333333333333345606e-06,3.412698412698425374e-06,3.492063492063505142e-06,3.571428571428584910e-06,3.650793650793664678e-06,3.730158730158744447e-06,3.809523809523824215e-06,3.888888888888903983e-06,3.968253968253984175e-06,4.047619047619064366e-06,4.126984126984144558e-06,4.206349206349224750e-06,4.285714285714304942e-06,4.365079365079385133e-06,4.444444444444465325e-06,4.523809523809545517e-06,4.603174603174625708e-06,4.682539682539705900e-06,4.761904761904786092e-06,4.841269841269866284e-06,4.920634920634946475e-06,5.000000000000026667e-06 +0.000000000000000000e+00,7.282913123391137300e-08,1.456582624678227460e-07,2.184873937017341190e-07,2.913165249356454920e-07,3.641456561695568915e-07,4.369747874034682909e-07,5.098039186373796904e-07,5.826330498712910899e-07,6.554621811052024893e-07,7.282913123391138888e-07,8.011204435730252883e-07,8.739495748069366877e-07,9.467787060408480872e-07,1.019607837274759593e-06,1.092436968508670992e-06,1.165266099742582391e-06,1.238095230976493791e-06,1.310924362210405190e-06,1.383753493444316590e-06,1.456582624678227989e-06,1.529411755912139389e-06,1.602240887146050788e-06,1.675070018379962188e-06,1.747899149613873587e-06,1.820728280847784987e-06,1.893557412081696386e-06,1.966386543315607786e-06,2.039215674549519185e-06,2.112044805783430585e-06,2.184873937017341984e-06,2.257703068251253384e-06,2.330532199485164783e-06,2.403361330719076182e-06,2.476190461952987582e-06,2.549019593186898981e-06,2.621848724420810381e-06,2.694677855654721780e-06,2.767506986888633180e-06,2.840336118122544579e-06,2.913165249356455979e-06,2.985994380590367378e-06,3.058823511824278778e-06,3.131652643058190177e-06,3.204481774292101577e-06,3.277310905526012976e-06,3.350140036759924376e-06,3.422969167993835775e-06,3.495798299227747174e-06,3.568627430461658574e-06,3.641456561695569973e-06,3.714285692929481373e-06,3.787114824163392772e-06,3.859943955397303748e-06,3.932773086631214724e-06,4.005602217865125700e-06,4.078431349099036676e-06,4.151260480332947652e-06,4.224089611566858628e-06,4.296918742800769604e-06,4.369747874034680580e-06,4.442577005268591556e-06,4.515406136502502532e-06,4.588235267736413508e-06 +0.000000000000000000e+00,7.936507936507995349e-08,1.587301587301599070e-07,2.380952380952398605e-07,3.174603174603198139e-07,3.968253968253997939e-07,4.761904761904797739e-07,5.555555555555597538e-07,6.349206349206397338e-07,7.142857142857197137e-07,7.936507936507996937e-07,8.730158730158796736e-07,9.523809523809596536e-07,1.031746031746039528e-06,1.111111111111119296e-06,1.190476190476199064e-06,1.269841269841278832e-06,1.349206349206358600e-06,1.428571428571438369e-06,1.507936507936518137e-06,1.587301587301597905e-06,1.666666666666677673e-06,1.746031746031757441e-06,1.825396825396837210e-06,1.904761904761916978e-06,1.984126984126996746e-06,2.063492063492076514e-06,2.142857142857156282e-06,2.222222222222236051e-06,2.301587301587315819e-06,2.380952380952395587e-06,2.460317460317475355e-06,2.539682539682555123e-06,2.619047619047634892e-06,2.698412698412714660e-06,2.777777777777794428e-06,2.857142857142874196e-06,2.936507936507953964e-06,3.015873015873033733e-06,3.095238095238113501e-06,3.174603174603193269e-06,3.253968253968273037e-06,3.333333333333352805e-06,3.412698412698432574e-06,3.492063492063512342e-06,3.571428571428592110e-06,3.650793650793671878e-06,3.730158730158751646e-06,3.809523809523831415e-06,3.888888888888910759e-06,3.968253968253990104e-06,4.047619047619069449e-06,4.126984126984148793e-06,4.206349206349228138e-06,4.285714285714307483e-06,4.365079365079386827e-06,4.444444444444466172e-06,4.523809523809545517e-06,4.603174603174624861e-06,4.682539682539704206e-06,4.761904761904783551e-06,4.841269841269862895e-06,4.920634920634942240e-06,5.000000000000021585e-06 +0.000000000000000000e+00,7.598597532051037674e-08,1.519719506410207535e-07,2.279579259615311302e-07,3.039439012820415070e-07,3.799298766025518837e-07,4.559158519230622604e-07,5.319018272435726901e-07,6.078878025640831198e-07,6.838737778845935495e-07,7.598597532051039792e-07,8.358457285256144088e-07,9.118317038461248385e-07,9.878176791666352682e-07,1.063803654487145804e-06,1.139789629807656339e-06,1.215775605128166875e-06,1.291761580448677410e-06,1.367747555769187946e-06,1.443733531089698482e-06,1.519719506410209017e-06,1.595705481730719553e-06,1.671691457051230088e-06,1.747677432371740624e-06,1.823663407692251159e-06,1.899649383012761695e-06,1.975635358333272230e-06,2.051621333653782554e-06,2.127607308974292878e-06,2.203593284294803202e-06,2.279579259615313526e-06,2.355565234935823849e-06,2.431551210256334173e-06,2.507537185576844497e-06,2.583523160897354821e-06,2.659509136217865145e-06,2.735495111538375468e-06,2.811481086858885792e-06,2.887467062179396116e-06,2.963453037499906440e-06,3.039439012820416764e-06,3.115424988140927088e-06,3.191410963461437411e-06,3.267396938781947735e-06,3.343382914102458059e-06,3.419368889422968383e-06,3.495354864743478707e-06,3.571340840063989030e-06,3.647326815384499354e-06,3.723312790705009678e-06,3.799298766025520002e-06,3.875284741346030326e-06,3.951270716666540226e-06,4.027256691987050126e-06,4.103242667307560026e-06,4.179228642628069927e-06,4.255214617948579827e-06,4.331200593269089727e-06,4.407186568589599628e-06,4.483172543910109528e-06,4.559158519230619428e-06,4.635144494551129328e-06,4.711130469871639229e-06,4.787116445192149129e-06 +0.000000000000000000e+00,7.165755106485228812e-08,1.433151021297045762e-07,2.149726531945568644e-07,2.866302042594091525e-07,3.582877553242614406e-07,4.299453063891137287e-07,5.016028574539660168e-07,5.732604085188183049e-07,6.449179595836705931e-07,7.165755106485228812e-07,7.882330617133751693e-07,8.598906127782274574e-07,9.315481638430797455e-07,1.003205714907932034e-06,1.074863265972784428e-06,1.146520817037636822e-06,1.218178368102489216e-06,1.289835919167341610e-06,1.361493470232194004e-06,1.433151021297046398e-06,1.504808572361898792e-06,1.576466123426751186e-06,1.648123674491603580e-06,1.719781225556455974e-06,1.791438776621308368e-06,1.863096327686160762e-06,1.934753878751013156e-06,2.006411429815865338e-06,2.078068980880717520e-06,2.149726531945569702e-06,2.221384083010421885e-06,2.293041634075274067e-06,2.364699185140126249e-06,2.436356736204978431e-06,2.508014287269830614e-06,2.579671838334682796e-06,2.651329389399534978e-06,2.722986940464387160e-06,2.794644491529239342e-06,2.866302042594091525e-06,2.937959593658943707e-06,3.009617144723795889e-06,3.081274695788648071e-06,3.152932246853500254e-06,3.224589797918352436e-06,3.296247348983204618e-06,3.367904900048056800e-06,3.439562451112908983e-06,3.511220002177761165e-06,3.582877553242613347e-06,3.654535104307465529e-06,3.726192655372317712e-06,3.797850206437169894e-06,3.869507757502022076e-06,3.941165308566873835e-06,4.012822859631725594e-06,4.084480410696577352e-06,4.156137961761429111e-06,4.227795512826280870e-06,4.299453063891132628e-06,4.371110614955984387e-06,4.442768166020836146e-06,4.514425717085687905e-06 +0.000000000000000000e+00,7.936507936507929174e-08,1.587301587301585835e-07,2.380952380952378752e-07,3.174603174603171670e-07,3.968253968253964587e-07,4.761904761904757505e-07,5.555555555555549893e-07,6.349206349206342281e-07,7.142857142857134669e-07,7.936507936507927057e-07,8.730158730158719445e-07,9.523809523809511833e-07,1.031746031746030422e-06,1.111111111111109555e-06,1.190476190476188688e-06,1.269841269841267821e-06,1.349206349206346954e-06,1.428571428571426087e-06,1.507936507936505220e-06,1.587301587301584353e-06,1.666666666666663485e-06,1.746031746031742618e-06,1.825396825396821751e-06,1.904761904761900884e-06,1.984126984126980229e-06,2.063492063492059574e-06,2.142857142857138918e-06,2.222222222222218263e-06,2.301587301587297608e-06,2.380952380952376952e-06,2.460317460317456297e-06,2.539682539682535642e-06,2.619047619047614986e-06,2.698412698412694331e-06,2.777777777777773676e-06,2.857142857142853020e-06,2.936507936507932365e-06,3.015873015873011710e-06,3.095238095238091054e-06,3.174603174603170399e-06,3.253968253968249744e-06,3.333333333333329089e-06,3.412698412698408433e-06,3.492063492063487778e-06,3.571428571428567123e-06,3.650793650793646467e-06,3.730158730158725812e-06,3.809523809523805157e-06,3.888888888888884501e-06,3.968253968253963846e-06,4.047619047619043191e-06,4.126984126984122535e-06,4.206349206349201880e-06,4.285714285714281225e-06,4.365079365079360569e-06,4.444444444444439914e-06,4.523809523809519259e-06,4.603174603174598603e-06,4.682539682539677948e-06,4.761904761904757293e-06,4.841269841269836637e-06,4.920634920634915982e-06,4.999999999999995327e-06 +0.000000000000000000e+00,7.214017688221217039e-08,1.442803537644243408e-07,2.164205306466365112e-07,2.885607075288486816e-07,3.607008844110608784e-07,4.328410612932730753e-07,5.049812381754852721e-07,5.771214150576974690e-07,6.492615919399096659e-07,7.214017688221218627e-07,7.935419457043340596e-07,8.656821225865462564e-07,9.378222994687584533e-07,1.009962476350970544e-06,1.082102653233182635e-06,1.154242830115394726e-06,1.226383006997606817e-06,1.298523183879818908e-06,1.370663360762030999e-06,1.442803537644243090e-06,1.514943714526455181e-06,1.587083891408667272e-06,1.659224068290879363e-06,1.731364245173091454e-06,1.803504422055303545e-06,1.875644598937515636e-06,1.947784775819727727e-06,2.019924952701939818e-06,2.092065129584151909e-06,2.164205306466364000e-06,2.236345483348576091e-06,2.308485660230788182e-06,2.380625837113000273e-06,2.452766013995212364e-06,2.524906190877424455e-06,2.597046367759636546e-06,2.669186544641848637e-06,2.741326721524060728e-06,2.813466898406272819e-06,2.885607075288484910e-06,2.957747252170697001e-06,3.029887429052909092e-06,3.102027605935121183e-06,3.174167782817333274e-06,3.246307959699545365e-06,3.318448136581757456e-06,3.390588313463969547e-06,3.462728490346181638e-06,3.534868667228393729e-06,3.607008844110605820e-06,3.679149020992817911e-06,3.751289197875030002e-06,3.823429374757242092e-06,3.895569551639453760e-06,3.967709728521665427e-06,4.039849905403877095e-06,4.111990082286088762e-06,4.184130259168300430e-06,4.256270436050512097e-06,4.328410612932723765e-06,4.400550789814935432e-06,4.472690966697147100e-06,4.544831143579358767e-06 +0.000000000000000000e+00,7.936507936507914616e-08,1.587301587301582923e-07,2.380952380952374517e-07,3.174603174603166376e-07,3.968253968253958234e-07,4.761904761904750093e-07,5.555555555555541422e-07,6.349206349206332751e-07,7.142857142857124081e-07,7.936507936507915410e-07,8.730158730158706739e-07,9.523809523809498068e-07,1.031746031746028940e-06,1.111111111111108073e-06,1.190476190476187206e-06,1.269841269841266339e-06,1.349206349206345471e-06,1.428571428571424604e-06,1.507936507936503737e-06,1.587301587301582870e-06,1.666666666666662003e-06,1.746031746031741136e-06,1.825396825396820269e-06,1.904761904761899402e-06,1.984126984126978535e-06,2.063492063492057880e-06,2.142857142857137224e-06,2.222222222222216569e-06,2.301587301587295914e-06,2.380952380952375258e-06,2.460317460317454603e-06,2.539682539682533948e-06,2.619047619047613292e-06,2.698412698412692637e-06,2.777777777777771982e-06,2.857142857142851326e-06,2.936507936507930671e-06,3.015873015873010016e-06,3.095238095238089360e-06,3.174603174603168705e-06,3.253968253968248050e-06,3.333333333333327394e-06,3.412698412698406739e-06,3.492063492063486084e-06,3.571428571428565428e-06,3.650793650793644773e-06,3.730158730158724118e-06,3.809523809523803463e-06,3.888888888888882807e-06,3.968253968253962152e-06,4.047619047619041497e-06,4.126984126984120841e-06,4.206349206349200186e-06,4.285714285714279531e-06,4.365079365079358875e-06,4.444444444444438220e-06,4.523809523809517565e-06,4.603174603174596909e-06,4.682539682539676254e-06,4.761904761904755599e-06,4.841269841269834943e-06,4.920634920634914288e-06,4.999999999999993633e-06 +0.000000000000000000e+00,7.554975029793248822e-08,1.510995005958649764e-07,2.266492508937974647e-07,3.021990011917299529e-07,3.777487514896624676e-07,4.532985017875949822e-07,5.288482520855274969e-07,6.043980023834600116e-07,6.799477526813925263e-07,7.554975029793250410e-07,8.310472532772575557e-07,9.065970035751900704e-07,9.821467538731225851e-07,1.057696504171054994e-06,1.133246254468987403e-06,1.208796004766919811e-06,1.284345755064852220e-06,1.359895505362784629e-06,1.435445255660717038e-06,1.510995005958649447e-06,1.586544756256581856e-06,1.662094506554514264e-06,1.737644256852446673e-06,1.813194007150379082e-06,1.888743757448311491e-06,1.964293507746243900e-06,2.039843258044176520e-06,2.115393008342109141e-06,2.190942758640041761e-06,2.266492508937974382e-06,2.342042259235907002e-06,2.417592009533839623e-06,2.493141759831772244e-06,2.568691510129704864e-06,2.644241260427637485e-06,2.719791010725570105e-06,2.795340761023502726e-06,2.870890511321435346e-06,2.946440261619367967e-06,3.021990011917300587e-06,3.097539762215233208e-06,3.173089512513165829e-06,3.248639262811098449e-06,3.324189013109031070e-06,3.399738763406963690e-06,3.475288513704896311e-06,3.550838264002828931e-06,3.626388014300761552e-06,3.701937764598694173e-06,3.777487514896626793e-06,3.853037265194559414e-06,3.928587015492492034e-06,4.004136765790424655e-06,4.079686516088357275e-06,4.155236266386289896e-06,4.230786016684222517e-06,4.306335766982155137e-06,4.381885517280087758e-06,4.457435267578020378e-06,4.532985017875952999e-06,4.608534768173885619e-06,4.684084518471818240e-06,4.759634268769750861e-06 +0.000000000000000000e+00,7.165755106485141462e-08,1.433151021297028292e-07,2.149726531945542438e-07,2.866302042594056585e-07,3.582877553242570995e-07,4.299453063891085406e-07,5.016028574539599817e-07,5.732604085188114228e-07,6.449179595836628639e-07,7.165755106485143050e-07,7.882330617133657461e-07,8.598906127782171871e-07,9.315481638430686282e-07,1.003205714907919963e-06,1.074863265972771299e-06,1.146520817037622634e-06,1.218178368102473969e-06,1.289835919167325304e-06,1.361493470232176639e-06,1.433151021297027975e-06,1.504808572361879310e-06,1.576466123426730645e-06,1.648123674491581980e-06,1.719781225556433316e-06,1.791438776621284651e-06,1.863096327686135986e-06,1.934753878750987321e-06,2.006411429815838656e-06,2.078068980880689992e-06,2.149726531945541327e-06,2.221384083010392662e-06,2.293041634075243997e-06,2.364699185140095332e-06,2.436356736204946668e-06,2.508014287269798003e-06,2.579671838334649338e-06,2.651329389399500673e-06,2.722986940464352008e-06,2.794644491529203344e-06,2.866302042594054679e-06,2.937959593658906014e-06,3.009617144723757349e-06,3.081274695788608684e-06,3.152932246853460020e-06,3.224589797918311355e-06,3.296247348983162690e-06,3.367904900048014025e-06,3.439562451112865360e-06,3.511220002177716696e-06,3.582877553242568031e-06,3.654535104307419366e-06,3.726192655372270701e-06,3.797850206437122036e-06,3.869507757501972948e-06,3.941165308566823860e-06,4.012822859631674772e-06,4.084480410696525683e-06,4.156137961761376595e-06,4.227795512826227507e-06,4.299453063891078418e-06,4.371110614955929330e-06,4.442768166020780242e-06,4.514425717085631153e-06 +0.000000000000000000e+00,7.936507936508009907e-08,1.587301587301601981e-07,2.380952380952403104e-07,3.174603174603204492e-07,3.968253968254005880e-07,4.761904761904807268e-07,5.555555555555609185e-07,6.349206349206411102e-07,7.142857142857213019e-07,7.936507936508014936e-07,8.730158730158816853e-07,9.523809523809618771e-07,1.031746031746042069e-06,1.111111111111122260e-06,1.190476190476202452e-06,1.269841269841282644e-06,1.349206349206362836e-06,1.428571428571443027e-06,1.507936507936523219e-06,1.587301587301603411e-06,1.666666666666683602e-06,1.746031746031763794e-06,1.825396825396843986e-06,1.904761904761924178e-06,1.984126984127004369e-06,2.063492063492084561e-06,2.142857142857164753e-06,2.222222222222244944e-06,2.301587301587325136e-06,2.380952380952405328e-06,2.460317460317485520e-06,2.539682539682565711e-06,2.619047619047645903e-06,2.698412698412726095e-06,2.777777777777806286e-06,2.857142857142886478e-06,2.936507936507966670e-06,3.015873015873046862e-06,3.095238095238127053e-06,3.174603174603207245e-06,3.253968253968287437e-06,3.333333333333367629e-06,3.412698412698447820e-06,3.492063492063528012e-06,3.571428571428608204e-06,3.650793650793688395e-06,3.730158730158768587e-06,3.809523809523848779e-06,3.888888888888929394e-06,3.968253968254009586e-06,4.047619047619089777e-06,4.126984126984169969e-06,4.206349206349250161e-06,4.285714285714330353e-06,4.365079365079410544e-06,4.444444444444490736e-06,4.523809523809570928e-06,4.603174603174651119e-06,4.682539682539731311e-06,4.761904761904811503e-06,4.841269841269891695e-06,4.920634920634971886e-06,5.000000000000052078e-06 +0.000000000000000000e+00,7.214017688221215715e-08,1.442803537644243143e-07,2.164205306466364847e-07,2.885607075288486816e-07,3.607008844110608784e-07,4.328410612932730753e-07,5.049812381754852721e-07,5.771214150576974690e-07,6.492615919399096659e-07,7.214017688221218627e-07,7.935419457043340596e-07,8.656821225865462564e-07,9.378222994687584533e-07,1.009962476350970544e-06,1.082102653233182635e-06,1.154242830115394726e-06,1.226383006997606817e-06,1.298523183879818908e-06,1.370663360762030999e-06,1.442803537644243090e-06,1.514943714526455181e-06,1.587083891408667272e-06,1.659224068290879363e-06,1.731364245173091454e-06,1.803504422055303545e-06,1.875644598937515636e-06,1.947784775819727727e-06,2.019924952701939818e-06,2.092065129584151909e-06,2.164205306466364000e-06,2.236345483348576091e-06,2.308485660230788182e-06,2.380625837113000273e-06,2.452766013995212364e-06,2.524906190877424455e-06,2.597046367759636546e-06,2.669186544641848637e-06,2.741326721524060728e-06,2.813466898406272819e-06,2.885607075288484910e-06,2.957747252170697001e-06,3.029887429052909092e-06,3.102027605935121183e-06,3.174167782817333274e-06,3.246307959699545365e-06,3.318448136581757456e-06,3.390588313463969547e-06,3.462728490346181638e-06,3.534868667228393729e-06,3.607008844110605820e-06,3.679149020992817911e-06,3.751289197875030002e-06,3.823429374757242092e-06,3.895569551639453760e-06,3.967709728521665427e-06,4.039849905403877095e-06,4.111990082286088762e-06,4.184130259168300430e-06,4.256270436050512097e-06,4.328410612932723765e-06,4.400550789814935432e-06,4.472690966697147100e-06,4.544831143579358767e-06 +0.000000000000000000e+00,7.936507936507995349e-08,1.587301587301599070e-07,2.380952380952398605e-07,3.174603174603198139e-07,3.968253968253997939e-07,4.761904761904797739e-07,5.555555555555597538e-07,6.349206349206397338e-07,7.142857142857197137e-07,7.936507936507996937e-07,8.730158730158796736e-07,9.523809523809596536e-07,1.031746031746039528e-06,1.111111111111119296e-06,1.190476190476199064e-06,1.269841269841278832e-06,1.349206349206358600e-06,1.428571428571438369e-06,1.507936507936518137e-06,1.587301587301597905e-06,1.666666666666677673e-06,1.746031746031757441e-06,1.825396825396837210e-06,1.904761904761916978e-06,1.984126984126996746e-06,2.063492063492076514e-06,2.142857142857156282e-06,2.222222222222236051e-06,2.301587301587315819e-06,2.380952380952395587e-06,2.460317460317475355e-06,2.539682539682555123e-06,2.619047619047634892e-06,2.698412698412714660e-06,2.777777777777794428e-06,2.857142857142874196e-06,2.936507936507953964e-06,3.015873015873033733e-06,3.095238095238113501e-06,3.174603174603193269e-06,3.253968253968273037e-06,3.333333333333352805e-06,3.412698412698432574e-06,3.492063492063512342e-06,3.571428571428592110e-06,3.650793650793671878e-06,3.730158730158751646e-06,3.809523809523831415e-06,3.888888888888910759e-06,3.968253968253990104e-06,4.047619047619069449e-06,4.126984126984148793e-06,4.206349206349228138e-06,4.285714285714307483e-06,4.365079365079386827e-06,4.444444444444466172e-06,4.523809523809545517e-06,4.603174603174624861e-06,4.682539682539704206e-06,4.761904761904783551e-06,4.841269841269862895e-06,4.920634920634942240e-06,5.000000000000021585e-06 +0.000000000000000000e+00,7.554975029793259410e-08,1.510995005958651882e-07,2.266492508937977823e-07,3.021990011917303764e-07,3.777487514896629970e-07,4.532985017875956175e-07,5.288482520855282381e-07,6.043980023834608587e-07,6.799477526813934792e-07,7.554975029793260998e-07,8.310472532772587204e-07,9.065970035751913409e-07,9.821467538731240674e-07,1.057696504171056688e-06,1.133246254468989308e-06,1.208796004766921929e-06,1.284345755064854550e-06,1.359895505362787170e-06,1.435445255660719791e-06,1.510995005958652411e-06,1.586544756256585032e-06,1.662094506554517652e-06,1.737644256852450273e-06,1.813194007150382894e-06,1.888743757448315514e-06,1.964293507746248135e-06,2.039843258044180755e-06,2.115393008342113376e-06,2.190942758640045996e-06,2.266492508937978617e-06,2.342042259235911238e-06,2.417592009533843858e-06,2.493141759831776479e-06,2.568691510129709099e-06,2.644241260427641720e-06,2.719791010725574340e-06,2.795340761023506961e-06,2.870890511321439582e-06,2.946440261619372202e-06,3.021990011917304823e-06,3.097539762215237443e-06,3.173089512513170064e-06,3.248639262811102684e-06,3.324189013109035305e-06,3.399738763406967925e-06,3.475288513704900546e-06,3.550838264002833167e-06,3.626388014300765787e-06,3.701937764598698408e-06,3.777487514896631028e-06,3.853037265194563649e-06,3.928587015492496269e-06,4.004136765790428890e-06,4.079686516088361511e-06,4.155236266386294131e-06,4.230786016684226752e-06,4.306335766982159372e-06,4.381885517280091993e-06,4.457435267578024613e-06,4.532985017875957234e-06,4.608534768173889855e-06,4.684084518471822475e-06,4.759634268769755096e-06 +0.000000000000000000e+00,7.059455649291206511e-08,1.411891129858241302e-07,2.117836694787361953e-07,2.823782259716482604e-07,3.529727824645602991e-07,4.235673389574723377e-07,4.941618954503843763e-07,5.647564519432964150e-07,6.353510084362084536e-07,7.059455649291204922e-07,7.765401214220325309e-07,8.471346779149445695e-07,9.177292344078566082e-07,9.883237909007687527e-07,1.058918347393680897e-06,1.129512903886593042e-06,1.200107460379505186e-06,1.270702016872417331e-06,1.341296573365329475e-06,1.411891129858241620e-06,1.482485686351153764e-06,1.553080242844065909e-06,1.623674799336978053e-06,1.694269355829890198e-06,1.764863912322802342e-06,1.835458468815714487e-06,1.906053025308626631e-06,1.976647581801538776e-06,2.047242138294450920e-06,2.117836694787363065e-06,2.188431251280275209e-06,2.259025807773187354e-06,2.329620364266099498e-06,2.400214920759011643e-06,2.470809477251923788e-06,2.541404033744835932e-06,2.611998590237748077e-06,2.682593146730660221e-06,2.753187703223572366e-06,2.823782259716484510e-06,2.894376816209396655e-06,2.964971372702308799e-06,3.035565929195220944e-06,3.106160485688133088e-06,3.176755042181045233e-06,3.247349598673957377e-06,3.317944155166869522e-06,3.388538711659781666e-06,3.459133268152693811e-06,3.529727824645605955e-06,3.600322381138518100e-06,3.670916937631430244e-06,3.741511494124342389e-06,3.812106050617254533e-06,3.882700607110166254e-06,3.953295163603078399e-06,4.023889720095990543e-06,4.094484276588902688e-06,4.165078833081814832e-06,4.235673389574726977e-06,4.306267946067639121e-06,4.376862502560551266e-06,4.447457059053463410e-06 +0.000000000000000000e+00,7.936507936507872264e-08,1.587301587301574453e-07,2.380952380952361812e-07,3.174603174603149435e-07,3.968253968253937059e-07,4.761904761904724682e-07,5.555555555555511776e-07,6.349206349206298870e-07,7.142857142857085964e-07,7.936507936507873058e-07,8.730158730158660152e-07,9.523809523809447246e-07,1.031746031746023434e-06,1.111111111111102143e-06,1.190476190476180853e-06,1.269841269841259562e-06,1.349206349206338272e-06,1.428571428571416981e-06,1.507936507936495690e-06,1.587301587301574400e-06,1.666666666666653109e-06,1.746031746031731819e-06,1.825396825396810528e-06,1.904761904761889238e-06,1.984126984126967947e-06,2.063492063492046868e-06,2.142857142857125789e-06,2.222222222222204710e-06,2.301587301587283632e-06,2.380952380952362553e-06,2.460317460317441474e-06,2.539682539682520395e-06,2.619047619047599316e-06,2.698412698412678237e-06,2.777777777777757159e-06,2.857142857142836080e-06,2.936507936507915001e-06,3.015873015872993922e-06,3.095238095238072843e-06,3.174603174603151764e-06,3.253968253968230686e-06,3.333333333333309607e-06,3.412698412698388528e-06,3.492063492063467449e-06,3.571428571428546370e-06,3.650793650793625291e-06,3.730158730158704213e-06,3.809523809523783134e-06,3.888888888888861631e-06,3.968253968253940129e-06,4.047619047619018627e-06,4.126984126984097124e-06,4.206349206349175622e-06,4.285714285714254120e-06,4.365079365079332617e-06,4.444444444444411115e-06,4.523809523809489613e-06,4.603174603174568110e-06,4.682539682539646608e-06,4.761904761904725106e-06,4.841269841269803603e-06,4.920634920634882101e-06,4.999999999999960598e-06 +0.000000000000000000e+00,7.113465335541875023e-08,1.422693067108375005e-07,2.134039600662562507e-07,2.845386134216750009e-07,3.556732667770937512e-07,4.268079201325125014e-07,4.979425734879313046e-07,5.690772268433501078e-07,6.402118801987689109e-07,7.113465335541877141e-07,7.824811869096065173e-07,8.536158402650253205e-07,9.247504936204441236e-07,9.958851469758630327e-07,1.067019800331281942e-06,1.138154453686700851e-06,1.209289107042119760e-06,1.280423760397538669e-06,1.351558413752957578e-06,1.422693067108376487e-06,1.493827720463795396e-06,1.564962373819214305e-06,1.636097027174633214e-06,1.707231680530052123e-06,1.778366333885471032e-06,1.849500987240889941e-06,1.920635640596309062e-06,1.991770293951728183e-06,2.062904947307147304e-06,2.134039600662566425e-06,2.205174254017985545e-06,2.276308907373404666e-06,2.347443560728823787e-06,2.418578214084242908e-06,2.489712867439662029e-06,2.560847520795081149e-06,2.631982174150500270e-06,2.703116827505919391e-06,2.774251480861338512e-06,2.845386134216757633e-06,2.916520787572176753e-06,2.987655440927595874e-06,3.058790094283014995e-06,3.129924747638434116e-06,3.201059400993853237e-06,3.272194054349272358e-06,3.343328707704691478e-06,3.414463361060110599e-06,3.485598014415529720e-06,3.556732667770948841e-06,3.627867321126367962e-06,3.699001974481787082e-06,3.770136627837206203e-06,3.841271281192624901e-06,3.912405934548043598e-06,3.983540587903462295e-06,4.054675241258880992e-06,4.125809894614299690e-06,4.196944547969718387e-06,4.268079201325137084e-06,4.339213854680555782e-06,4.410348508035974479e-06,4.481483161391393176e-06 +0.000000000000000000e+00,7.936507936507922557e-08,1.587301587301584511e-07,2.380952380952376635e-07,3.174603174603168493e-07,3.968253968253960352e-07,4.761904761904752211e-07,5.555555555555543540e-07,6.349206349206334869e-07,7.142857142857126198e-07,7.936507936507917528e-07,8.730158730158708857e-07,9.523809523809500186e-07,1.031746031746029152e-06,1.111111111111108284e-06,1.190476190476187417e-06,1.269841269841266550e-06,1.349206349206345683e-06,1.428571428571424816e-06,1.507936507936503949e-06,1.587301587301583082e-06,1.666666666666662215e-06,1.746031746031741348e-06,1.825396825396820481e-06,1.904761904761899614e-06,1.984126984126978535e-06,2.063492063492057456e-06,2.142857142857136377e-06,2.222222222222215298e-06,2.301587301587294220e-06,2.380952380952373141e-06,2.460317460317452062e-06,2.539682539682530983e-06,2.619047619047609904e-06,2.698412698412688825e-06,2.777777777777767746e-06,2.857142857142846668e-06,2.936507936507925589e-06,3.015873015873004510e-06,3.095238095238083431e-06,3.174603174603162352e-06,3.253968253968241273e-06,3.333333333333320195e-06,3.412698412698399116e-06,3.492063492063478037e-06,3.571428571428556958e-06,3.650793650793635879e-06,3.730158730158714800e-06,3.809523809523793722e-06,3.888888888888872643e-06,3.968253968253951987e-06,4.047619047619031332e-06,4.126984126984110677e-06,4.206349206349190022e-06,4.285714285714269366e-06,4.365079365079348711e-06,4.444444444444428056e-06,4.523809523809507400e-06,4.603174603174586745e-06,4.682539682539666090e-06,4.761904761904745434e-06,4.841269841269824779e-06,4.920634920634904124e-06,4.999999999999983468e-06 +0.000000000000000000e+00,7.502163779027647409e-08,1.500432755805529482e-07,2.250649133708294223e-07,3.000865511611058964e-07,3.751081889513823969e-07,4.501298267416588975e-07,5.251514645319353981e-07,6.001731023222118986e-07,6.751947401124883992e-07,7.502163779027648998e-07,8.252380156930414003e-07,9.002596534833179009e-07,9.752812912735944014e-07,1.050302929063870796e-06,1.125324566854147191e-06,1.200346204644423585e-06,1.275367842434699980e-06,1.350389480224976375e-06,1.425411118015252770e-06,1.500432755805529164e-06,1.575454393595805559e-06,1.650476031386081954e-06,1.725497669176358348e-06,1.800519306966634743e-06,1.875540944756911138e-06,1.950562582547187532e-06,2.025584220337463927e-06,2.100605858127740322e-06,2.175627495918016716e-06,2.250649133708293111e-06,2.325670771498569506e-06,2.400692409288845900e-06,2.475714047079122295e-06,2.550735684869398690e-06,2.625757322659675084e-06,2.700778960449951479e-06,2.775800598240227874e-06,2.850822236030504269e-06,2.925843873820780663e-06,3.000865511611057058e-06,3.075887149401333453e-06,3.150908787191609847e-06,3.225930424981886242e-06,3.300952062772162637e-06,3.375973700562439031e-06,3.450995338352715426e-06,3.526016976142991821e-06,3.601038613933268215e-06,3.676060251723544610e-06,3.751081889513821005e-06,3.826103527304096976e-06,3.901125165094372524e-06,3.976146802884648071e-06,4.051168440674923619e-06,4.126190078465199167e-06,4.201211716255474714e-06,4.276233354045750262e-06,4.351254991836025809e-06,4.426276629626301357e-06,4.501298267416576905e-06,4.576319905206852452e-06,4.651341542997128000e-06,4.726363180787403548e-06 +0.000000000000000000e+00,7.059455649291063574e-08,1.411891129858212715e-07,2.117836694787319072e-07,2.823782259716425430e-07,3.529727824645532052e-07,4.235673389574638674e-07,4.941618954503745296e-07,5.647564519432851918e-07,6.353510084361958540e-07,7.059455649291065162e-07,7.765401214220171784e-07,8.471346779149278406e-07,9.177292344078385028e-07,9.883237909007492709e-07,1.058918347393660145e-06,1.129512903886571019e-06,1.200107460379481893e-06,1.270702016872392767e-06,1.341296573365303641e-06,1.411891129858214515e-06,1.482485686351125389e-06,1.553080242844036263e-06,1.623674799336947137e-06,1.694269355829858011e-06,1.764863912322768885e-06,1.835458468815679759e-06,1.906053025308590632e-06,1.976647581801501506e-06,2.047242138294412380e-06,2.117836694787323254e-06,2.188431251280234128e-06,2.259025807773145002e-06,2.329620364266055876e-06,2.400214920758966750e-06,2.470809477251877624e-06,2.541404033744788498e-06,2.611998590237699372e-06,2.682593146730610246e-06,2.753187703223521120e-06,2.823782259716431994e-06,2.894376816209342868e-06,2.964971372702253742e-06,3.035565929195164616e-06,3.106160485688075490e-06,3.176755042180986364e-06,3.247349598673897238e-06,3.317944155166808112e-06,3.388538711659718986e-06,3.459133268152629860e-06,3.529727824645540734e-06,3.600322381138451608e-06,3.670916937631362482e-06,3.741511494124273356e-06,3.812106050617184230e-06,3.882700607110095104e-06,3.953295163603005554e-06,4.023889720095916004e-06,4.094484276588826455e-06,4.165078833081736905e-06,4.235673389574647356e-06,4.306267946067557806e-06,4.376862502560468257e-06,4.447457059053378707e-06 +0.000000000000000000e+00,7.936507936508011231e-08,1.587301587301602246e-07,2.380952380952403369e-07,3.174603174603204492e-07,3.968253968254005351e-07,4.761904761904806209e-07,5.555555555555607067e-07,6.349206349206407926e-07,7.142857142857208784e-07,7.936507936508009642e-07,8.730158730158810501e-07,9.523809523809611359e-07,1.031746031746041222e-06,1.111111111111121413e-06,1.190476190476201605e-06,1.269841269841281797e-06,1.349206349206361989e-06,1.428571428571442180e-06,1.507936507936522372e-06,1.587301587301602564e-06,1.666666666666682755e-06,1.746031746031762947e-06,1.825396825396843139e-06,1.904761904761923331e-06,1.984126984127003522e-06,2.063492063492083714e-06,2.142857142857163906e-06,2.222222222222244097e-06,2.301587301587324289e-06,2.380952380952404481e-06,2.460317460317484673e-06,2.539682539682564864e-06,2.619047619047645056e-06,2.698412698412725248e-06,2.777777777777805439e-06,2.857142857142885631e-06,2.936507936507965823e-06,3.015873015873046015e-06,3.095238095238126206e-06,3.174603174603206398e-06,3.253968253968286590e-06,3.333333333333366781e-06,3.412698412698446973e-06,3.492063492063527165e-06,3.571428571428607357e-06,3.650793650793687548e-06,3.730158730158767740e-06,3.809523809523847932e-06,3.888888888888927700e-06,3.968253968254007892e-06,4.047619047619088083e-06,4.126984126984168275e-06,4.206349206349248467e-06,4.285714285714328659e-06,4.365079365079408850e-06,4.444444444444489042e-06,4.523809523809569234e-06,4.603174603174649425e-06,4.682539682539729617e-06,4.761904761904809809e-06,4.841269841269890001e-06,4.920634920634970192e-06,5.000000000000050384e-06 +0.000000000000000000e+00,7.113465335541774438e-08,1.422693067108354888e-07,2.134039600662532331e-07,2.845386134216709775e-07,3.556732667770887219e-07,4.268079201325064663e-07,4.979425734879242107e-07,5.690772268433419551e-07,6.402118801987596994e-07,7.113465335541774438e-07,7.824811869095951882e-07,8.536158402650129326e-07,9.247504936204306770e-07,9.958851469758484214e-07,1.067019800331266060e-06,1.138154453686683698e-06,1.209289107042101337e-06,1.280423760397518975e-06,1.351558413752936614e-06,1.422693067108354252e-06,1.493827720463771891e-06,1.564962373819189529e-06,1.636097027174607168e-06,1.707231680530024806e-06,1.778366333885442445e-06,1.849500987240860083e-06,1.920635640596277722e-06,1.991770293951695572e-06,2.062904947307113422e-06,2.134039600662531273e-06,2.205174254017949123e-06,2.276308907373366973e-06,2.347443560728784823e-06,2.418578214084202674e-06,2.489712867439620524e-06,2.560847520795038374e-06,2.631982174150456225e-06,2.703116827505874075e-06,2.774251480861291925e-06,2.845386134216709775e-06,2.916520787572127626e-06,2.987655440927545476e-06,3.058790094282963326e-06,3.129924747638381176e-06,3.201059400993799027e-06,3.272194054349216877e-06,3.343328707704634727e-06,3.414463361060052577e-06,3.485598014415470428e-06,3.556732667770888278e-06,3.627867321126306128e-06,3.699001974481723978e-06,3.770136627837141829e-06,3.841271281192559679e-06,3.912405934547977529e-06,3.983540587903395380e-06,4.054675241258813230e-06,4.125809894614231080e-06,4.196944547969648930e-06,4.268079201325066781e-06,4.339213854680484631e-06,4.410348508035902481e-06,4.481483161391320331e-06 +0.000000000000000000e+00,7.936507936507999319e-08,1.587301587301599864e-07,2.380952380952399928e-07,3.174603174603200257e-07,3.968253968254000586e-07,4.761904761904800915e-07,5.555555555555600715e-07,6.349206349206400514e-07,7.142857142857200314e-07,7.936507936508000113e-07,8.730158730158799913e-07,9.523809523809599712e-07,1.031746031746039951e-06,1.111111111111119931e-06,1.190476190476199911e-06,1.269841269841279891e-06,1.349206349206359871e-06,1.428571428571439851e-06,1.507936507936519831e-06,1.587301587301599811e-06,1.666666666666679791e-06,1.746031746031759771e-06,1.825396825396839751e-06,1.904761904761919731e-06,1.984126984126999711e-06,2.063492063492079902e-06,2.142857142857160094e-06,2.222222222222240286e-06,2.301587301587320478e-06,2.380952380952400669e-06,2.460317460317480861e-06,2.539682539682561053e-06,2.619047619047641244e-06,2.698412698412721436e-06,2.777777777777801628e-06,2.857142857142881820e-06,2.936507936507962011e-06,3.015873015873042203e-06,3.095238095238122395e-06,3.174603174603202586e-06,3.253968253968282778e-06,3.333333333333362970e-06,3.412698412698443162e-06,3.492063492063523353e-06,3.571428571428603545e-06,3.650793650793683737e-06,3.730158730158763928e-06,3.809523809523844120e-06,3.888888888888924312e-06,3.968253968254004504e-06,4.047619047619084695e-06,4.126984126984164887e-06,4.206349206349245079e-06,4.285714285714325270e-06,4.365079365079405462e-06,4.444444444444485654e-06,4.523809523809565846e-06,4.603174603174646037e-06,4.682539682539726229e-06,4.761904761904806421e-06,4.841269841269886612e-06,4.920634920634966804e-06,5.000000000000046996e-06 +0.000000000000000000e+00,7.502163779027610352e-08,1.500432755805522070e-07,2.250649133708283105e-07,3.000865511611044141e-07,3.751081889513804911e-07,4.501298267416565682e-07,5.251514645319326452e-07,6.001731023222087223e-07,6.751947401124847993e-07,7.502163779027608763e-07,8.252380156930369534e-07,9.002596534833130304e-07,9.752812912735891075e-07,1.050302929063865290e-06,1.125324566854141473e-06,1.200346204644417656e-06,1.275367842434693839e-06,1.350389480224970022e-06,1.425411118015246205e-06,1.500432755805522388e-06,1.575454393595798571e-06,1.650476031386074754e-06,1.725497669176350937e-06,1.800519306966627120e-06,1.875540944756903303e-06,1.950562582547179486e-06,2.025584220337455880e-06,2.100605858127732275e-06,2.175627495918008670e-06,2.250649133708285064e-06,2.325670771498561459e-06,2.400692409288837854e-06,2.475714047079114248e-06,2.550735684869390643e-06,2.625757322659667038e-06,2.700778960449943432e-06,2.775800598240219827e-06,2.850822236030496222e-06,2.925843873820772616e-06,3.000865511611049011e-06,3.075887149401325406e-06,3.150908787191601800e-06,3.225930424981878195e-06,3.300952062772154590e-06,3.375973700562430985e-06,3.450995338352707379e-06,3.526016976142983774e-06,3.601038613933260169e-06,3.676060251723536563e-06,3.751081889513812958e-06,3.826103527304089353e-06,3.901125165094365747e-06,3.976146802884642142e-06,4.051168440674918537e-06,4.126190078465194931e-06,4.201211716255471326e-06,4.276233354045747721e-06,4.351254991836024115e-06,4.426276629626300510e-06,4.501298267416576905e-06,4.576319905206853299e-06,4.651341542997129694e-06,4.726363180787406089e-06 +0.000000000000000000e+00,6.952925441092671356e-08,1.390585088218534271e-07,2.085877632327801407e-07,2.781170176437068543e-07,3.476462720546335678e-07,4.171755264655602814e-07,4.867047808764869420e-07,5.562340352874136026e-07,6.257632896983402633e-07,6.952925441092669239e-07,7.648217985201935845e-07,8.343510529311202451e-07,9.038803073420469057e-07,9.734095617529734605e-07,1.042938816163900015e-06,1.112468070574826570e-06,1.181997324985753125e-06,1.251526579396679679e-06,1.321055833807606234e-06,1.390585088218532789e-06,1.460114342629459344e-06,1.529643597040385898e-06,1.599172851451312453e-06,1.668702105862239008e-06,1.738231360273165563e-06,1.807760614684092117e-06,1.877289869095018672e-06,1.946819123505945227e-06,2.016348377916871782e-06,2.085877632327798336e-06,2.155406886738724891e-06,2.224936141149651446e-06,2.294465395560578001e-06,2.363994649971504555e-06,2.433523904382431110e-06,2.503053158793357665e-06,2.572582413204284220e-06,2.642111667615210774e-06,2.711640922026137329e-06,2.781170176437063884e-06,2.850699430847990439e-06,2.920228685258916993e-06,2.989757939669843548e-06,3.059287194080770103e-06,3.128816448491696658e-06,3.198345702902623212e-06,3.267874957313549767e-06,3.337404211724476322e-06,3.406933466135402877e-06,3.476462720546329431e-06,3.545991974957255986e-06,3.615521229368182541e-06,3.685050483779109096e-06,3.754579738190035650e-06,3.824108992600962205e-06,3.893638247011888760e-06,3.963167501422815315e-06,4.032696755833741869e-06,4.102226010244668424e-06,4.171755264655594979e-06,4.241284519066521533e-06,4.310813773477448088e-06,4.380343027888374643e-06 +0.000000000000000000e+00,7.936507936507872264e-08,1.587301587301574453e-07,2.380952380952361812e-07,3.174603174603149435e-07,3.968253968253937059e-07,4.761904761904724682e-07,5.555555555555511776e-07,6.349206349206298870e-07,7.142857142857085964e-07,7.936507936507873058e-07,8.730158730158660152e-07,9.523809523809447246e-07,1.031746031746023434e-06,1.111111111111102143e-06,1.190476190476180853e-06,1.269841269841259562e-06,1.349206349206338272e-06,1.428571428571416981e-06,1.507936507936495690e-06,1.587301587301574400e-06,1.666666666666653109e-06,1.746031746031731819e-06,1.825396825396810528e-06,1.904761904761889238e-06,1.984126984126967947e-06,2.063492063492046868e-06,2.142857142857125789e-06,2.222222222222204710e-06,2.301587301587283632e-06,2.380952380952362553e-06,2.460317460317441474e-06,2.539682539682520395e-06,2.619047619047599316e-06,2.698412698412678237e-06,2.777777777777757159e-06,2.857142857142836080e-06,2.936507936507915001e-06,3.015873015872993922e-06,3.095238095238072843e-06,3.174603174603151764e-06,3.253968253968230686e-06,3.333333333333309607e-06,3.412698412698388528e-06,3.492063492063467449e-06,3.571428571428546370e-06,3.650793650793625291e-06,3.730158730158704213e-06,3.809523809523783134e-06,3.888888888888861631e-06,3.968253968253940129e-06,4.047619047619018627e-06,4.126984126984097124e-06,4.206349206349175622e-06,4.285714285714254120e-06,4.365079365079332617e-06,4.444444444444411115e-06,4.523809523809489613e-06,4.603174603174568110e-06,4.682539682539646608e-06,4.761904761904725106e-06,4.841269841269803603e-06,4.920634920634882101e-06,4.999999999999960598e-06 +0.000000000000000000e+00,7.005431477206588664e-08,1.401086295441317733e-07,2.101629443161976732e-07,2.802172590882635995e-07,3.502715738603295258e-07,4.203258886323954522e-07,4.903802034044613785e-07,5.604345181765273049e-07,6.304888329485932312e-07,7.005431477206591576e-07,7.705974624927250839e-07,8.406517772647910102e-07,9.107060920368569366e-07,9.807604068089229688e-07,1.050814721580988895e-06,1.120869036353054821e-06,1.190923351125120748e-06,1.260977665897186674e-06,1.331031980669252601e-06,1.401086295441318527e-06,1.471140610213384453e-06,1.541194924985450380e-06,1.611249239757516306e-06,1.681303554529582232e-06,1.751357869301648159e-06,1.821412184073714085e-06,1.891466498845780011e-06,1.961520813617845938e-06,2.031575128389911864e-06,2.101629443161977790e-06,2.171683757934043717e-06,2.241738072706109643e-06,2.311792387478175569e-06,2.381846702250241496e-06,2.451901017022307422e-06,2.521955331794373348e-06,2.592009646566439275e-06,2.662063961338505201e-06,2.732118276110571127e-06,2.802172590882637054e-06,2.872226905654702980e-06,2.942281220426768906e-06,3.012335535198834833e-06,3.082389849970900759e-06,3.152444164742966685e-06,3.222498479515032612e-06,3.292552794287098538e-06,3.362607109059164464e-06,3.432661423831230391e-06,3.502715738603296317e-06,3.572770053375362244e-06,3.642824368147428170e-06,3.712878682919494096e-06,3.782932997691560023e-06,3.852987312463625949e-06,3.923041627235691875e-06,3.993095942007757802e-06,4.063150256779823728e-06,4.133204571551889654e-06,4.203258886323955581e-06,4.273313201096021507e-06,4.343367515868087433e-06,4.413421830640153360e-06 +0.000000000000000000e+00,7.936507936507905351e-08,1.587301587301581070e-07,2.380952380952371605e-07,3.174603174603162141e-07,3.968253968253952411e-07,4.761904761904742681e-07,5.555555555555532952e-07,6.349206349206323222e-07,7.142857142857113493e-07,7.936507936507903763e-07,8.730158730158694034e-07,9.523809523809484304e-07,1.031746031746027457e-06,1.111111111111106590e-06,1.190476190476185723e-06,1.269841269841264856e-06,1.349206349206343989e-06,1.428571428571423122e-06,1.507936507936502255e-06,1.587301587301581388e-06,1.666666666666660521e-06,1.746031746031739654e-06,1.825396825396818787e-06,1.904761904761897920e-06,1.984126984126976841e-06,2.063492063492055762e-06,2.142857142857134683e-06,2.222222222222213604e-06,2.301587301587292525e-06,2.380952380952371447e-06,2.460317460317450368e-06,2.539682539682529289e-06,2.619047619047608210e-06,2.698412698412687131e-06,2.777777777777766052e-06,2.857142857142844974e-06,2.936507936507923895e-06,3.015873015873002816e-06,3.095238095238081737e-06,3.174603174603160658e-06,3.253968253968239579e-06,3.333333333333318501e-06,3.412698412698397422e-06,3.492063492063476343e-06,3.571428571428555264e-06,3.650793650793634185e-06,3.730158730158713106e-06,3.809523809523792028e-06,3.888888888888870949e-06,3.968253968253950293e-06,4.047619047619029638e-06,4.126984126984108983e-06,4.206349206349188327e-06,4.285714285714267672e-06,4.365079365079347017e-06,4.444444444444426362e-06,4.523809523809505706e-06,4.603174603174585051e-06,4.682539682539664396e-06,4.761904761904743740e-06,4.841269841269823085e-06,4.920634920634902430e-06,4.999999999999981774e-06 +0.000000000000000000e+00,7.448942454793903816e-08,1.489788490958780763e-07,2.234682736438171012e-07,2.979576981917560997e-07,3.724471227396950981e-07,4.469365472876340966e-07,5.214259718355730950e-07,5.959153963835120935e-07,6.704048209314510919e-07,7.448942454793900904e-07,8.193836700273290889e-07,8.938730945752680873e-07,9.683625191232070858e-07,1.042851943671146190e-06,1.117341368219085294e-06,1.191830792767024399e-06,1.266320217314963503e-06,1.340809641862902607e-06,1.415299066410841712e-06,1.489788490958780816e-06,1.564277915506719920e-06,1.638767340054659025e-06,1.713256764602598129e-06,1.787746189150537233e-06,1.862235613698476338e-06,1.936725038246415442e-06,2.011214462794354758e-06,2.085703887342294074e-06,2.160193311890233390e-06,2.234682736438172706e-06,2.309172160986112023e-06,2.383661585534051339e-06,2.458151010081990655e-06,2.532640434629929971e-06,2.607129859177869287e-06,2.681619283725808603e-06,2.756108708273747919e-06,2.830598132821687235e-06,2.905087557369626551e-06,2.979576981917565867e-06,3.054066406465505183e-06,3.128555831013444499e-06,3.203045255561383816e-06,3.277534680109323132e-06,3.352024104657262448e-06,3.426513529205201764e-06,3.501002953753141080e-06,3.575492378301080396e-06,3.649981802849019712e-06,3.724471227396959028e-06,3.798960651944898344e-06,3.873450076492837660e-06,3.947939501040776976e-06,4.022428925588716293e-06,4.096918350136655609e-06,4.171407774684594925e-06,4.245897199232534241e-06,4.320386623780473557e-06,4.394876048328412873e-06,4.469365472876352189e-06,4.543854897424291505e-06,4.618344321972230821e-06,4.692833746520170137e-06 +0.000000000000000000e+00,6.952925441092337837e-08,1.390585088218467567e-07,2.085877632327701351e-07,2.781170176436935135e-07,3.476462720546168919e-07,4.171755264655402702e-07,4.867047808764636486e-07,5.562340352873870270e-07,6.257632896983104053e-07,6.952925441092337837e-07,7.648217985201571621e-07,8.343510529310805405e-07,9.038803073420039188e-07,9.734095617529272972e-07,1.042938816163850676e-06,1.112468070574774054e-06,1.181997324985697432e-06,1.251526579396620811e-06,1.321055833807544189e-06,1.390585088218467567e-06,1.460114342629390946e-06,1.529643597040314324e-06,1.599172851451237703e-06,1.668702105862161081e-06,1.738231360273084459e-06,1.807760614684007838e-06,1.877289869094931216e-06,1.946819123505854594e-06,2.016348377916777761e-06,2.085877632327700928e-06,2.155406886738624094e-06,2.224936141149547261e-06,2.294465395560470427e-06,2.363994649971393594e-06,2.433523904382316761e-06,2.503053158793239927e-06,2.572582413204163094e-06,2.642111667615086261e-06,2.711640922026009427e-06,2.781170176436932594e-06,2.850699430847855760e-06,2.920228685258778927e-06,2.989757939669702094e-06,3.059287194080625260e-06,3.128816448491548427e-06,3.198345702902471593e-06,3.267874957313394760e-06,3.337404211724317927e-06,3.406933466135241093e-06,3.476462720546164260e-06,3.545991974957087426e-06,3.615521229368010593e-06,3.685050483778933760e-06,3.754579738189856926e-06,3.824108992600780093e-06,3.893638247011703260e-06,3.963167501422626426e-06,4.032696755833549593e-06,4.102226010244472759e-06,4.171755264655395926e-06,4.241284519066319093e-06,4.310813773477242259e-06,4.380343027888165426e-06 +0.000000000000000000e+00,7.936507936507934468e-08,1.587301587301586894e-07,2.380952380952380340e-07,3.174603174603173787e-07,3.968253968253967234e-07,4.761904761904760681e-07,5.555555555555554128e-07,6.349206349206347575e-07,7.142857142857141021e-07,7.936507936507934468e-07,8.730158730158727915e-07,9.523809523809521362e-07,1.031746031746031481e-06,1.111111111111110826e-06,1.190476190476190170e-06,1.269841269841269515e-06,1.349206349206348860e-06,1.428571428571428204e-06,1.507936507936507549e-06,1.587301587301586894e-06,1.666666666666666238e-06,1.746031746031745583e-06,1.825396825396824928e-06,1.904761904761904272e-06,1.984126984126983617e-06,2.063492063492062962e-06,2.142857142857142306e-06,2.222222222222221651e-06,2.301587301587300996e-06,2.380952380952380340e-06,2.460317460317459685e-06,2.539682539682539030e-06,2.619047619047618374e-06,2.698412698412697719e-06,2.777777777777777064e-06,2.857142857142856409e-06,2.936507936507935753e-06,3.015873015873015098e-06,3.095238095238094443e-06,3.174603174603173787e-06,3.253968253968253132e-06,3.333333333333332477e-06,3.412698412698411821e-06,3.492063492063491166e-06,3.571428571428570511e-06,3.650793650793649855e-06,3.730158730158729200e-06,3.809523809523808545e-06,3.888888888888887889e-06,3.968253968253967234e-06,4.047619047619046579e-06,4.126984126984125923e-06,4.206349206349205268e-06,4.285714285714284613e-06,4.365079365079363957e-06,4.444444444444443302e-06,4.523809523809522647e-06,4.603174603174601992e-06,4.682539682539681336e-06,4.761904761904760681e-06,4.841269841269840026e-06,4.920634920634919370e-06,4.999999999999998715e-06 +0.000000000000000000e+00,7.005431477206353083e-08,1.401086295441270617e-07,2.101629443161905793e-07,2.802172590882540704e-07,3.502715738603175615e-07,4.203258886323810526e-07,4.903802034044445437e-07,5.604345181765080349e-07,6.304888329485715260e-07,7.005431477206350171e-07,7.705974624926985082e-07,8.406517772647619994e-07,9.107060920368254905e-07,9.807604068088890875e-07,1.050814721580952684e-06,1.120869036353016281e-06,1.190923351125079879e-06,1.260977665897143476e-06,1.331031980669207073e-06,1.401086295441270670e-06,1.471140610213334267e-06,1.541194924985397864e-06,1.611249239757461461e-06,1.681303554529525058e-06,1.751357869301588655e-06,1.821412184073652252e-06,1.891466498845715849e-06,1.961520813617779446e-06,2.031575128389843254e-06,2.101629443161907063e-06,2.171683757933970872e-06,2.241738072706034681e-06,2.311792387478098489e-06,2.381846702250162298e-06,2.451901017022226107e-06,2.521955331794289916e-06,2.592009646566353724e-06,2.662063961338417533e-06,2.732118276110481342e-06,2.802172590882545151e-06,2.872226905654608959e-06,2.942281220426672768e-06,3.012335535198736577e-06,3.082389849970800386e-06,3.152444164742864194e-06,3.222498479514928003e-06,3.292552794286991812e-06,3.362607109059055621e-06,3.432661423831119430e-06,3.502715738603183238e-06,3.572770053375247047e-06,3.642824368147310856e-06,3.712878682919374665e-06,3.782932997691438473e-06,3.852987312463502282e-06,3.923041627235566514e-06,3.993095942007630747e-06,4.063150256779694979e-06,4.133204571551759211e-06,4.203258886323823443e-06,4.273313201095887676e-06,4.343367515867951908e-06,4.413421830640016140e-06 +0.000000000000000000e+00,7.936507936507955644e-08,1.587301587301591129e-07,2.380952380952386693e-07,3.174603174603182258e-07,3.968253968253977822e-07,4.761904761904773386e-07,5.555555555555568951e-07,6.349206349206364515e-07,7.142857142857160080e-07,7.936507936507955644e-07,8.730158730158751208e-07,9.523809523809546773e-07,1.031746031746034234e-06,1.111111111111113790e-06,1.190476190476193347e-06,1.269841269841272903e-06,1.349206349206352459e-06,1.428571428571432016e-06,1.507936507936511572e-06,1.587301587301591129e-06,1.666666666666670685e-06,1.746031746031750242e-06,1.825396825396829798e-06,1.904761904761909355e-06,1.984126984126988699e-06,2.063492063492068044e-06,2.142857142857147389e-06,2.222222222222226733e-06,2.301587301587306078e-06,2.380952380952385423e-06,2.460317460317464767e-06,2.539682539682544112e-06,2.619047619047623457e-06,2.698412698412702801e-06,2.777777777777782146e-06,2.857142857142861491e-06,2.936507936507940835e-06,3.015873015873020180e-06,3.095238095238099525e-06,3.174603174603178869e-06,3.253968253968258214e-06,3.333333333333337559e-06,3.412698412698416904e-06,3.492063492063496248e-06,3.571428571428575593e-06,3.650793650793654938e-06,3.730158730158734282e-06,3.809523809523813627e-06,3.888888888888892972e-06,3.968253968253972316e-06,4.047619047619051661e-06,4.126984126984131006e-06,4.206349206349210350e-06,4.285714285714289695e-06,4.365079365079369040e-06,4.444444444444448384e-06,4.523809523809527729e-06,4.603174603174607074e-06,4.682539682539686418e-06,4.761904761904765763e-06,4.841269841269845108e-06,4.920634920634924452e-06,5.000000000000003797e-06 +0.000000000000000000e+00,7.448942454793788672e-08,1.489788490958757734e-07,2.234682736438136602e-07,2.979576981917515469e-07,3.724471227396894336e-07,4.469365472876273203e-07,5.214259718355652600e-07,5.959153963835031997e-07,6.704048209314411393e-07,7.448942454793790790e-07,8.193836700273170186e-07,8.938730945752549583e-07,9.683625191231928980e-07,1.042851943671130943e-06,1.117341368219068989e-06,1.191830792767007035e-06,1.266320217314945080e-06,1.340809641862883126e-06,1.415299066410821171e-06,1.489788490958759217e-06,1.564277915506697262e-06,1.638767340054635308e-06,1.713256764602573353e-06,1.787746189150511399e-06,1.862235613698449444e-06,1.936725038246387490e-06,2.011214462794325536e-06,2.085703887342263581e-06,2.160193311890201627e-06,2.234682736438139672e-06,2.309172160986077718e-06,2.383661585534015763e-06,2.458151010081953809e-06,2.532640434629891854e-06,2.607129859177829900e-06,2.681619283725767945e-06,2.756108708273705991e-06,2.830598132821644036e-06,2.905087557369582082e-06,2.979576981917520128e-06,3.054066406465458173e-06,3.128555831013396219e-06,3.203045255561334264e-06,3.277534680109272310e-06,3.352024104657210355e-06,3.426513529205148401e-06,3.501002953753086446e-06,3.575492378301024492e-06,3.649981802848962537e-06,3.724471227396900583e-06,3.798960651944838628e-06,3.873450076492776674e-06,3.947939501040715143e-06,4.022428925588653612e-06,4.096918350136592081e-06,4.171407774684530550e-06,4.245897199232469019e-06,4.320386623780407488e-06,4.394876048328345957e-06,4.469365472876284426e-06,4.543854897424222896e-06,4.618344321972161365e-06,4.692833746520099834e-06 +0.000000000000000000e+00,6.858155517247149748e-08,1.371631103449429950e-07,2.057446655174144924e-07,2.743262206898859899e-07,3.429077758623574874e-07,4.114893310348289849e-07,4.800708862073004294e-07,5.486524413797718740e-07,6.172339965522433185e-07,6.858155517247147630e-07,7.543971068971862076e-07,8.229786620696576521e-07,8.915602172421290967e-07,9.601417724146004353e-07,1.028723327587071774e-06,1.097304882759543113e-06,1.165886437932014451e-06,1.234467993104485790e-06,1.303049548276957129e-06,1.371631103449428467e-06,1.440212658621899806e-06,1.508794213794371145e-06,1.577375768966842483e-06,1.645957324139313822e-06,1.714538879311785161e-06,1.783120434484256499e-06,1.851701989656727838e-06,1.920283544829199177e-06,1.988865100001670515e-06,2.057446655174141854e-06,2.126028210346613193e-06,2.194609765519084531e-06,2.263191320691555870e-06,2.331772875864027209e-06,2.400354431036498547e-06,2.468935986208969886e-06,2.537517541381441225e-06,2.606099096553912563e-06,2.674680651726383902e-06,2.743262206898855240e-06,2.811843762071326579e-06,2.880425317243797918e-06,2.949006872416269256e-06,3.017588427588740595e-06,3.086169982761211934e-06,3.154751537933683272e-06,3.223333093106154611e-06,3.291914648278625950e-06,3.360496203451097288e-06,3.429077758623568627e-06,3.497659313796039966e-06,3.566240868968511304e-06,3.634822424140982643e-06,3.703403979313453982e-06,3.771985534485925320e-06,3.840567089658396659e-06,3.909148644830867574e-06,3.977730200003338489e-06,4.046311755175809404e-06,4.114893310348280320e-06,4.183474865520751235e-06,4.252056420693222150e-06,4.320637975865693065e-06 +0.000000000000000000e+00,7.936507936507906675e-08,1.587301587301581335e-07,2.380952380952371870e-07,3.174603174603162141e-07,3.968253968253952411e-07,4.761904761904742681e-07,5.555555555555532952e-07,6.349206349206323222e-07,7.142857142857113493e-07,7.936507936507903763e-07,8.730158730158694034e-07,9.523809523809484304e-07,1.031746031746027457e-06,1.111111111111106590e-06,1.190476190476185723e-06,1.269841269841264856e-06,1.349206349206343989e-06,1.428571428571423122e-06,1.507936507936502255e-06,1.587301587301581388e-06,1.666666666666660521e-06,1.746031746031739654e-06,1.825396825396818787e-06,1.904761904761897920e-06,1.984126984126976841e-06,2.063492063492055762e-06,2.142857142857134683e-06,2.222222222222213604e-06,2.301587301587292525e-06,2.380952380952371447e-06,2.460317460317450368e-06,2.539682539682529289e-06,2.619047619047608210e-06,2.698412698412687131e-06,2.777777777777766052e-06,2.857142857142844974e-06,2.936507936507923895e-06,3.015873015873002816e-06,3.095238095238081737e-06,3.174603174603160658e-06,3.253968253968239579e-06,3.333333333333318501e-06,3.412698412698397422e-06,3.492063492063476343e-06,3.571428571428555264e-06,3.650793650793634185e-06,3.730158730158713106e-06,3.809523809523792028e-06,3.888888888888870949e-06,3.968253968253950293e-06,4.047619047619029638e-06,4.126984126984108983e-06,4.206349206349188327e-06,4.285714285714267672e-06,4.365079365079347017e-06,4.444444444444426362e-06,4.523809523809505706e-06,4.603174603174585051e-06,4.682539682539664396e-06,4.761904761904743740e-06,4.841269841269823085e-06,4.920634920634902430e-06,4.999999999999981774e-06 +0.000000000000000000e+00,6.903141786252006635e-08,1.380628357250401327e-07,2.070942535875601858e-07,2.761256714500802124e-07,3.451570893126002391e-07,4.141885071751202657e-07,4.832199250376402924e-07,5.522513429001603190e-07,6.212827607626803456e-07,6.903141786252003723e-07,7.593455964877203989e-07,8.283770143502404256e-07,8.974084322127604522e-07,9.664398500752805847e-07,1.035471267937800717e-06,1.104502685800320850e-06,1.173534103662840982e-06,1.242565521525361115e-06,1.311596939387881247e-06,1.380628357250401380e-06,1.449659775112921512e-06,1.518691192975441645e-06,1.587722610837961777e-06,1.656754028700481910e-06,1.725785446563002042e-06,1.794816864425522175e-06,1.863848282288042307e-06,1.932879700150562440e-06,2.001911118013082573e-06,2.070942535875602705e-06,2.139973953738122838e-06,2.209005371600642970e-06,2.278036789463163103e-06,2.347068207325683235e-06,2.416099625188203368e-06,2.485131043050723500e-06,2.554162460913243633e-06,2.623193878775763765e-06,2.692225296638283898e-06,2.761256714500804030e-06,2.830288132363324163e-06,2.899319550225844295e-06,2.968350968088364428e-06,3.037382385950884560e-06,3.106413803813404693e-06,3.175445221675924825e-06,3.244476639538444958e-06,3.313508057400965090e-06,3.382539475263485223e-06,3.451570893126005355e-06,3.520602310988525488e-06,3.589633728851045620e-06,3.658665146713565753e-06,3.727696564576085886e-06,3.796727982438606018e-06,3.865759400301125727e-06,3.934790818163645436e-06,4.003822236026165145e-06,4.072853653888684854e-06,4.141885071751204563e-06,4.210916489613724272e-06,4.279947907476243981e-06,4.348979325338763690e-06 +0.000000000000000000e+00,7.936507936507911969e-08,1.587301587301582394e-07,2.380952380952373458e-07,3.174603174603164258e-07,3.968253968253955058e-07,4.761904761904745858e-07,5.555555555555537187e-07,6.349206349206328516e-07,7.142857142857119846e-07,7.936507936507911175e-07,8.730158730158702504e-07,9.523809523809493833e-07,1.031746031746028516e-06,1.111111111111107649e-06,1.190476190476186782e-06,1.269841269841265915e-06,1.349206349206345048e-06,1.428571428571424181e-06,1.507936507936503314e-06,1.587301587301582447e-06,1.666666666666661580e-06,1.746031746031740713e-06,1.825396825396819845e-06,1.904761904761898978e-06,1.984126984126978111e-06,2.063492063492057032e-06,2.142857142857135954e-06,2.222222222222214875e-06,2.301587301587293796e-06,2.380952380952372717e-06,2.460317460317451638e-06,2.539682539682530559e-06,2.619047619047609481e-06,2.698412698412688402e-06,2.777777777777767323e-06,2.857142857142846244e-06,2.936507936507925165e-06,3.015873015873004086e-06,3.095238095238083008e-06,3.174603174603161929e-06,3.253968253968240850e-06,3.333333333333319771e-06,3.412698412698398692e-06,3.492063492063477613e-06,3.571428571428556535e-06,3.650793650793635456e-06,3.730158730158714377e-06,3.809523809523793298e-06,3.888888888888871796e-06,3.968253968253950293e-06,4.047619047619028791e-06,4.126984126984107289e-06,4.206349206349185786e-06,4.285714285714264284e-06,4.365079365079342782e-06,4.444444444444421279e-06,4.523809523809499777e-06,4.603174603174578275e-06,4.682539682539656772e-06,4.761904761904735270e-06,4.841269841269813768e-06,4.920634920634892265e-06,4.999999999999970763e-06 +0.000000000000000000e+00,7.401945331067492777e-08,1.480389066213498555e-07,2.220583599320247833e-07,2.960778132426997111e-07,3.700972665533746653e-07,4.441167198640496196e-07,5.181361731747245738e-07,5.921556264853995281e-07,6.661750797960744823e-07,7.401945331067494365e-07,8.142139864174243908e-07,8.882334397280993450e-07,9.622528930387744051e-07,1.036272346349449359e-06,1.110291799660124314e-06,1.184311252970799268e-06,1.258330706281474222e-06,1.332350159592149176e-06,1.406369612902824131e-06,1.480389066213499085e-06,1.554408519524174039e-06,1.628427972834848993e-06,1.702447426145523948e-06,1.776466879456198902e-06,1.850486332766873856e-06,1.924505786077548810e-06,1.998525239388223765e-06,2.072544692698898719e-06,2.146564146009573673e-06,2.220583599320248627e-06,2.294603052630923581e-06,2.368622505941598536e-06,2.442641959252273490e-06,2.516661412562948444e-06,2.590680865873623398e-06,2.664700319184298353e-06,2.738719772494973307e-06,2.812739225805648261e-06,2.886758679116323215e-06,2.960778132426998170e-06,3.034797585737673124e-06,3.108817039048348078e-06,3.182836492359023032e-06,3.256855945669697987e-06,3.330875398980372941e-06,3.404894852291047895e-06,3.478914305601722849e-06,3.552933758912397804e-06,3.626953212223072758e-06,3.700972665533747712e-06,3.774992118844422666e-06,3.849011572155097621e-06,3.923031025465772151e-06,3.997050478776446682e-06,4.071069932087121213e-06,4.145089385397795743e-06,4.219108838708470274e-06,4.293128292019144805e-06,4.367147745329819336e-06,4.441167198640493866e-06,4.515186651951168397e-06,4.589206105261842928e-06,4.663225558572517459e-06 +0.000000000000000000e+00,6.858155517246764613e-08,1.371631103449352923e-07,2.057446655174029516e-07,2.743262206898706374e-07,3.429077758623383233e-07,4.114893310348060091e-07,4.800708862072737479e-07,5.486524413797414866e-07,6.172339965522092254e-07,6.858155517246769642e-07,7.543971068971447030e-07,8.229786620696124417e-07,8.915602172420801805e-07,9.601417724145479193e-07,1.028723327587015658e-06,1.097304882759483397e-06,1.165886437931951136e-06,1.234467993104418874e-06,1.303049548276886613e-06,1.371631103449354352e-06,1.440212658621822091e-06,1.508794213794289829e-06,1.577375768966757568e-06,1.645957324139225307e-06,1.714538879311693046e-06,1.783120434484160785e-06,1.851701989656628523e-06,1.920283544829096262e-06,1.988865100001564213e-06,2.057446655174032163e-06,2.126028210346500114e-06,2.194609765518968064e-06,2.263191320691436015e-06,2.331772875863903965e-06,2.400354431036371916e-06,2.468935986208839866e-06,2.537517541381307817e-06,2.606099096553775767e-06,2.674680651726243718e-06,2.743262206898711668e-06,2.811843762071179619e-06,2.880425317243647569e-06,2.949006872416115520e-06,3.017588427588583471e-06,3.086169982761051421e-06,3.154751537933519372e-06,3.223333093105987322e-06,3.291914648278455273e-06,3.360496203450923223e-06,3.429077758623391174e-06,3.497659313795859124e-06,3.566240868968327075e-06,3.634822424140795025e-06,3.703403979313262976e-06,3.771985534485730926e-06,3.840567089658198453e-06,3.909148644830665980e-06,3.977730200003133507e-06,4.046311755175601034e-06,4.114893310348068561e-06,4.183474865520536088e-06,4.252056420693003615e-06,4.320637975865471142e-06 +0.000000000000000000e+00,7.936507936507992702e-08,1.587301587301598540e-07,2.380952380952397811e-07,3.174603174603197081e-07,3.968253968253996351e-07,4.761904761904795621e-07,5.555555555555594362e-07,6.349206349206393103e-07,7.142857142857191843e-07,7.936507936507990584e-07,8.730158730158789325e-07,9.523809523809588066e-07,1.031746031746038681e-06,1.111111111111118449e-06,1.190476190476198217e-06,1.269841269841277985e-06,1.349206349206357753e-06,1.428571428571437522e-06,1.507936507936517290e-06,1.587301587301597058e-06,1.666666666666676826e-06,1.746031746031756594e-06,1.825396825396836363e-06,1.904761904761916131e-06,1.984126984126995899e-06,2.063492063492075667e-06,2.142857142857155435e-06,2.222222222222235204e-06,2.301587301587314972e-06,2.380952380952394740e-06,2.460317460317474508e-06,2.539682539682554276e-06,2.619047619047634045e-06,2.698412698412713813e-06,2.777777777777793581e-06,2.857142857142873349e-06,2.936507936507953117e-06,3.015873015873032886e-06,3.095238095238112654e-06,3.174603174603192422e-06,3.253968253968272190e-06,3.333333333333351958e-06,3.412698412698431727e-06,3.492063492063511495e-06,3.571428571428591263e-06,3.650793650793671031e-06,3.730158730158750799e-06,3.809523809523830568e-06,3.888888888888910759e-06,3.968253968253990951e-06,4.047619047619071143e-06,4.126984126984151334e-06,4.206349206349231526e-06,4.285714285714311718e-06,4.365079365079391910e-06,4.444444444444472101e-06,4.523809523809552293e-06,4.603174603174632485e-06,4.682539682539712676e-06,4.761904761904792868e-06,4.841269841269873060e-06,4.920634920634953252e-06,5.000000000000033443e-06 +0.000000000000000000e+00,6.903141786251655910e-08,1.380628357250331182e-07,2.070942535875496773e-07,2.761256714500662364e-07,3.451570893125827690e-07,4.141885071750993017e-07,4.832199250376158343e-07,5.522513429001323669e-07,6.212827607626488995e-07,6.903141786251654322e-07,7.593455964876819648e-07,8.283770143501984974e-07,8.974084322127150301e-07,9.664398500752314568e-07,1.035471267937747778e-06,1.104502685800264099e-06,1.173534103662780419e-06,1.242565521525296740e-06,1.311596939387813061e-06,1.380628357250329382e-06,1.449659775112845703e-06,1.518691192975362024e-06,1.587722610837878345e-06,1.656754028700394666e-06,1.725785446562910986e-06,1.794816864425427307e-06,1.863848282287943628e-06,1.932879700150459949e-06,2.001911118012976270e-06,2.070942535875492591e-06,2.139973953738008912e-06,2.209005371600525233e-06,2.278036789463041553e-06,2.347068207325557874e-06,2.416099625188074195e-06,2.485131043050590516e-06,2.554162460913106837e-06,2.623193878775623158e-06,2.692225296638139479e-06,2.761256714500655799e-06,2.830288132363172120e-06,2.899319550225688441e-06,2.968350968088204762e-06,3.037382385950721083e-06,3.106413803813237404e-06,3.175445221675753725e-06,3.244476639538270046e-06,3.313508057400786366e-06,3.382539475263302687e-06,3.451570893125819008e-06,3.520602310988335329e-06,3.589633728850851650e-06,3.658665146713367971e-06,3.727696564575884292e-06,3.796727982438400613e-06,3.865759400300917357e-06,3.934790818163434525e-06,4.003822236025951693e-06,4.072853653888468861e-06,4.141885071750986029e-06,4.210916489613503196e-06,4.279947907476020364e-06,4.348979325338537532e-06 +0.000000000000000000e+00,7.936507936507956967e-08,1.587301587301591393e-07,2.380952380952387223e-07,3.174603174603183316e-07,3.968253968253979410e-07,4.761904761904775504e-07,5.555555555555571068e-07,6.349206349206366633e-07,7.142857142857162197e-07,7.936507936507957762e-07,8.730158730158753326e-07,9.523809523809548890e-07,1.031746031746034445e-06,1.111111111111114002e-06,1.190476190476193558e-06,1.269841269841273115e-06,1.349206349206352671e-06,1.428571428571432228e-06,1.507936507936511784e-06,1.587301587301591341e-06,1.666666666666670897e-06,1.746031746031750453e-06,1.825396825396830010e-06,1.904761904761909566e-06,1.984126984126989123e-06,2.063492063492068891e-06,2.142857142857148659e-06,2.222222222222228427e-06,2.301587301587308196e-06,2.380952380952387964e-06,2.460317460317467732e-06,2.539682539682547500e-06,2.619047619047627268e-06,2.698412698412707037e-06,2.777777777777786805e-06,2.857142857142866573e-06,2.936507936507946341e-06,3.015873015873026109e-06,3.095238095238105878e-06,3.174603174603185646e-06,3.253968253968265414e-06,3.333333333333345182e-06,3.412698412698424950e-06,3.492063492063504719e-06,3.571428571428584487e-06,3.650793650793664255e-06,3.730158730158744023e-06,3.809523809523823791e-06,3.888888888888903983e-06,3.968253968253984175e-06,4.047619047619064366e-06,4.126984126984144558e-06,4.206349206349224750e-06,4.285714285714304942e-06,4.365079365079385133e-06,4.444444444444465325e-06,4.523809523809545517e-06,4.603174603174625708e-06,4.682539682539705900e-06,4.761904761904786092e-06,4.841269841269866284e-06,4.920634920634946475e-06,5.000000000000026667e-06 +0.000000000000000000e+00,7.401945331067300871e-08,1.480389066213460174e-07,2.220583599320190394e-07,2.960778132426920878e-07,3.700972665533651362e-07,4.441167198640381846e-07,5.181361731747112330e-07,5.921556264853842815e-07,6.661750797960573299e-07,7.401945331067303783e-07,8.142139864174034267e-07,8.882334397280764751e-07,9.622528930387494177e-07,1.036272346349422254e-06,1.110291799660095091e-06,1.184311252970767928e-06,1.258330706281440764e-06,1.332350159592113601e-06,1.406369612902786438e-06,1.480389066213459274e-06,1.554408519524132111e-06,1.628427972834804948e-06,1.702447426145477784e-06,1.776466879456150621e-06,1.850486332766823458e-06,1.924505786077496294e-06,1.998525239388169131e-06,2.072544692698841968e-06,2.146564146009514804e-06,2.220583599320187641e-06,2.294603052630860478e-06,2.368622505941533314e-06,2.442641959252206151e-06,2.516661412562878988e-06,2.590680865873551824e-06,2.664700319184224661e-06,2.738719772494897497e-06,2.812739225805570334e-06,2.886758679116243171e-06,2.960778132426916007e-06,3.034797585737588844e-06,3.108817039048261681e-06,3.182836492358934517e-06,3.256855945669607354e-06,3.330875398980280191e-06,3.404894852290953027e-06,3.478914305601625864e-06,3.552933758912298701e-06,3.626953212222971537e-06,3.700972665533644374e-06,3.774992118844317211e-06,3.849011572154990047e-06,3.923031025465662884e-06,3.997050478776335721e-06,4.071069932087008557e-06,4.145089385397681394e-06,4.219108838708354231e-06,4.293128292019027067e-06,4.367147745329699904e-06,4.441167198640372741e-06,4.515186651951045577e-06,4.589206105261718414e-06,4.663225558572391251e-06 +0.000000000000000000e+00,6.789347254215916370e-08,1.357869450843183274e-07,2.036804176264774911e-07,2.715738901686366548e-07,3.394673627107958185e-07,4.073608352529549822e-07,4.752543077951141459e-07,5.431477803372733096e-07,6.110412528794324733e-07,6.789347254215916370e-07,7.468281979637508007e-07,8.147216705059099644e-07,8.826151430480691281e-07,9.505086155902282918e-07,1.018402088132387455e-06,1.086295560674546619e-06,1.154189033216705783e-06,1.222082505758864947e-06,1.289975978301024110e-06,1.357869450843183274e-06,1.425762923385342438e-06,1.493656395927501601e-06,1.561549868469660765e-06,1.629443341011819929e-06,1.697336813553979092e-06,1.765230286096138256e-06,1.833123758638297420e-06,1.901017231180456584e-06,1.968910703722615959e-06,2.036804176264775334e-06,2.104697648806934710e-06,2.172591121349094085e-06,2.240484593891253461e-06,2.308378066433412836e-06,2.376271538975572212e-06,2.444165011517731587e-06,2.512058484059890963e-06,2.579951956602050338e-06,2.647845429144209714e-06,2.715738901686369089e-06,2.783632374228528465e-06,2.851525846770687840e-06,2.919419319312847215e-06,2.987312791855006591e-06,3.055206264397165966e-06,3.123099736939325342e-06,3.190993209481484717e-06,3.258886682023644093e-06,3.326780154565803468e-06,3.394673627107962844e-06,3.462567099650122219e-06,3.530460572192281595e-06,3.598354044734440970e-06,3.666247517276600345e-06,3.734140989818759721e-06,3.802034462360919096e-06,3.869927934903078472e-06,3.937821407445237847e-06,4.005714879987397223e-06,4.073608352529556598e-06,4.141501825071715974e-06,4.209395297613875349e-06,4.277288770156034725e-06 +0.000000000000000000e+00,7.936507936507966232e-08,1.587301587301593246e-07,2.380952380952389870e-07,3.174603174603186493e-07,3.968253968253983116e-07,4.761904761904779739e-07,5.555555555555576362e-07,6.349206349206372986e-07,7.142857142857169609e-07,7.936507936507966232e-07,8.730158730158762855e-07,9.523809523809559478e-07,1.031746031746035716e-06,1.111111111111115484e-06,1.190476190476195252e-06,1.269841269841275021e-06,1.349206349206354789e-06,1.428571428571434557e-06,1.507936507936514325e-06,1.587301587301594093e-06,1.666666666666673862e-06,1.746031746031753630e-06,1.825396825396833398e-06,1.904761904761913166e-06,1.984126984126992934e-06,2.063492063492072703e-06,2.142857142857152471e-06,2.222222222222232239e-06,2.301587301587312007e-06,2.380952380952391775e-06,2.460317460317471544e-06,2.539682539682551312e-06,2.619047619047631080e-06,2.698412698412710848e-06,2.777777777777790616e-06,2.857142857142870385e-06,2.936507936507950153e-06,3.015873015873029921e-06,3.095238095238109689e-06,3.174603174603189457e-06,3.253968253968269226e-06,3.333333333333348994e-06,3.412698412698428762e-06,3.492063492063508530e-06,3.571428571428588298e-06,3.650793650793668067e-06,3.730158730158747835e-06,3.809523809523827603e-06,3.888888888888907371e-06,3.968253968253987563e-06,4.047619047619067755e-06,4.126984126984147946e-06,4.206349206349228138e-06,4.285714285714308330e-06,4.365079365079388521e-06,4.444444444444468713e-06,4.523809523809548905e-06,4.603174603174629097e-06,4.682539682539709288e-06,4.761904761904789480e-06,4.841269841269869672e-06,4.920634920634949863e-06,5.000000000000030055e-06 +0.000000000000000000e+00,6.818934512964336572e-08,1.363786902592867314e-07,2.045680353889301104e-07,2.727573805185735158e-07,3.409467256482169212e-07,4.091360707778603267e-07,4.773254159075037321e-07,5.455147610371471375e-07,6.137041061667905429e-07,6.818934512964339484e-07,7.500827964260773538e-07,8.182721415557207592e-07,8.864614866853641646e-07,9.546508318150074642e-07,1.022840176944650764e-06,1.091029522074294063e-06,1.159218867203937363e-06,1.227408212333580662e-06,1.295597557463223962e-06,1.363786902592867261e-06,1.431976247722510561e-06,1.500165592852153861e-06,1.568354937981797160e-06,1.636544283111440460e-06,1.704733628241083759e-06,1.772922973370727059e-06,1.841112318500370358e-06,1.909301663630013658e-06,1.977491008759656957e-06,2.045680353889300257e-06,2.113869699018943556e-06,2.182059044148586856e-06,2.250248389278230156e-06,2.318437734407873455e-06,2.386627079537516755e-06,2.454816424667160054e-06,2.523005769796803354e-06,2.591195114926446653e-06,2.659384460056089953e-06,2.727573805185733252e-06,2.795763150315376552e-06,2.863952495445019851e-06,2.932141840574663151e-06,3.000331185704306450e-06,3.068520530833949750e-06,3.136709875963593050e-06,3.204899221093236349e-06,3.273088566222879649e-06,3.341277911352522948e-06,3.409467256482166248e-06,3.477656601611809547e-06,3.545845946741452847e-06,3.614035291871096146e-06,3.682224637000739446e-06,3.750413982130382745e-06,3.818603327260026469e-06,3.886792672389670192e-06,3.954982017519313915e-06,4.023171362648957638e-06,4.091360707778601361e-06,4.159550052908245084e-06,4.227739398037888807e-06,4.295928743167532530e-06 +0.000000000000000000e+00,7.936507936507952997e-08,1.587301587301590599e-07,2.380952380952385899e-07,3.174603174603181199e-07,3.968253968253976763e-07,4.761904761904772328e-07,5.555555555555567892e-07,6.349206349206363456e-07,7.142857142857159021e-07,7.936507936507954585e-07,8.730158730158750150e-07,9.523809523809545714e-07,1.031746031746034022e-06,1.111111111111113367e-06,1.190476190476192711e-06,1.269841269841272056e-06,1.349206349206351401e-06,1.428571428571430745e-06,1.507936507936510090e-06,1.587301587301589435e-06,1.666666666666668779e-06,1.746031746031748124e-06,1.825396825396827469e-06,1.904761904761906813e-06,1.984126984126986158e-06,2.063492063492065503e-06,2.142857142857144848e-06,2.222222222222224192e-06,2.301587301587303537e-06,2.380952380952382882e-06,2.460317460317462226e-06,2.539682539682541571e-06,2.619047619047620916e-06,2.698412698412700260e-06,2.777777777777779605e-06,2.857142857142858950e-06,2.936507936507938294e-06,3.015873015873017639e-06,3.095238095238096984e-06,3.174603174603176328e-06,3.253968253968255673e-06,3.333333333333335018e-06,3.412698412698414362e-06,3.492063492063493707e-06,3.571428571428573052e-06,3.650793650793652396e-06,3.730158730158731741e-06,3.809523809523811086e-06,3.888888888888890431e-06,3.968253968253969775e-06,4.047619047619049120e-06,4.126984126984128465e-06,4.206349206349207809e-06,4.285714285714287154e-06,4.365079365079366499e-06,4.444444444444445843e-06,4.523809523809525188e-06,4.603174603174604533e-06,4.682539682539683877e-06,4.761904761904763222e-06,4.841269841269842567e-06,4.920634920634921911e-06,5.000000000000001256e-06 +0.000000000000000000e+00,7.369813172027899433e-08,1.473962634405579887e-07,2.210943951608369830e-07,2.947925268811159773e-07,3.684906586013949716e-07,4.421887903216739660e-07,5.158869220419529073e-07,5.895850537622318487e-07,6.632831854825107901e-07,7.369813172027897315e-07,8.106794489230686729e-07,8.843775806433476143e-07,9.580757123636265557e-07,1.031773844083905391e-06,1.105471975804184227e-06,1.179170107524463062e-06,1.252868239244741898e-06,1.326566370965020733e-06,1.400264502685299569e-06,1.473962634405578404e-06,1.547660766125857240e-06,1.621358897846136075e-06,1.695057029566414911e-06,1.768755161286693746e-06,1.842453293006972582e-06,1.916151424727251417e-06,1.989849556447530465e-06,2.063547688167809512e-06,2.137245819888088559e-06,2.210943951608367606e-06,2.284642083328646654e-06,2.358340215048925701e-06,2.432038346769204748e-06,2.505736478489483795e-06,2.579434610209762843e-06,2.653132741930041890e-06,2.726830873650320937e-06,2.800529005370599984e-06,2.874227137090879032e-06,2.947925268811158079e-06,3.021623400531437126e-06,3.095321532251716173e-06,3.169019663971995221e-06,3.242717795692274268e-06,3.316415927412553315e-06,3.390114059132832363e-06,3.463812190853111410e-06,3.537510322573390457e-06,3.611208454293669504e-06,3.684906586013948552e-06,3.758604717734227599e-06,3.832302849454507070e-06,3.906000981174786540e-06,3.979699112895066011e-06,4.053397244615345482e-06,4.127095376335624953e-06,4.200793508055904424e-06,4.274491639776183894e-06,4.348189771496463365e-06,4.421887903216742836e-06,4.495586034937022307e-06,4.569284166657301777e-06,4.642982298377581248e-06 +0.000000000000000000e+00,6.789347254215441237e-08,1.357869450843088247e-07,2.036804176264632504e-07,2.715738901686177024e-07,3.394673627107721545e-07,4.073608352529266066e-07,4.752543077950810587e-07,5.431477803372355107e-07,6.110412528793899099e-07,6.789347254215443090e-07,7.468281979636987082e-07,8.147216705058531073e-07,8.826151430480075064e-07,9.505086155901619056e-07,1.018402088132316305e-06,1.086295560674470810e-06,1.154189033216625315e-06,1.222082505758779820e-06,1.289975978300934325e-06,1.357869450843088830e-06,1.425762923385243335e-06,1.493656395927397840e-06,1.561549868469552345e-06,1.629443341011706850e-06,1.697336813553861355e-06,1.765230286096015860e-06,1.833123758638170365e-06,1.901017231180324870e-06,1.968910703722479587e-06,2.036804176264634304e-06,2.104697648806789020e-06,2.172591121348943737e-06,2.240484593891098454e-06,2.308378066433253171e-06,2.376271538975407887e-06,2.444165011517562604e-06,2.512058484059717321e-06,2.579951956601872038e-06,2.647845429144026754e-06,2.715738901686181471e-06,2.783632374228336188e-06,2.851525846770490905e-06,2.919419319312645622e-06,2.987312791854800338e-06,3.055206264396955055e-06,3.123099736939109772e-06,3.190993209481264489e-06,3.258886682023419205e-06,3.326780154565573922e-06,3.394673627107728639e-06,3.462567099649883356e-06,3.530460572192038073e-06,3.598354044734192789e-06,3.666247517276347506e-06,3.734140989818502223e-06,3.802034462360656940e-06,3.869927934902811656e-06,3.937821407444965950e-06,4.005714879987120243e-06,4.073608352529274536e-06,4.141501825071428830e-06,4.209395297613583123e-06,4.277288770155737416e-06 +0.000000000000000000e+00,7.936507936507986084e-08,1.587301587301597217e-07,2.380952380952395693e-07,3.174603174603193904e-07,3.968253968253992116e-07,4.761904761904790327e-07,5.555555555555588009e-07,6.349206349206385691e-07,7.142857142857183373e-07,7.936507936507981055e-07,8.730158730158778737e-07,9.523809523809576419e-07,1.031746031746037410e-06,1.111111111111117178e-06,1.190476190476196946e-06,1.269841269841276715e-06,1.349206349206356483e-06,1.428571428571436251e-06,1.507936507936516019e-06,1.587301587301595787e-06,1.666666666666675556e-06,1.746031746031755324e-06,1.825396825396835092e-06,1.904761904761914860e-06,1.984126984126994628e-06,2.063492063492074397e-06,2.142857142857154165e-06,2.222222222222233933e-06,2.301587301587313701e-06,2.380952380952393469e-06,2.460317460317473238e-06,2.539682539682553006e-06,2.619047619047632774e-06,2.698412698412712542e-06,2.777777777777792310e-06,2.857142857142872079e-06,2.936507936507951847e-06,3.015873015873031615e-06,3.095238095238111383e-06,3.174603174603191151e-06,3.253968253968270920e-06,3.333333333333350688e-06,3.412698412698430456e-06,3.492063492063510224e-06,3.571428571428589992e-06,3.650793650793669761e-06,3.730158730158749529e-06,3.809523809523829297e-06,3.888888888888909065e-06,3.968253968253989257e-06,4.047619047619069449e-06,4.126984126984149640e-06,4.206349206349229832e-06,4.285714285714310024e-06,4.365079365079390216e-06,4.444444444444470407e-06,4.523809523809550599e-06,4.603174603174630791e-06,4.682539682539710982e-06,4.761904761904791174e-06,4.841269841269871366e-06,4.920634920634951558e-06,5.000000000000031749e-06 +0.000000000000000000e+00,6.818934512963911732e-08,1.363786902592782346e-07,2.045680353889173520e-07,2.727573805185564693e-07,3.409467256481955866e-07,4.091360707778347039e-07,4.773254159074738742e-07,5.455147610371130444e-07,6.137041061667522147e-07,6.818934512963913849e-07,7.500827964260305552e-07,8.182721415556697255e-07,8.864614866853088957e-07,9.546508318149481719e-07,1.022840176944587448e-06,1.091029522074226724e-06,1.159218867203866000e-06,1.227408212333505276e-06,1.295597557463144553e-06,1.363786902592783829e-06,1.431976247722423105e-06,1.500165592852062381e-06,1.568354937981701657e-06,1.636544283111340933e-06,1.704733628240980209e-06,1.772922973370619486e-06,1.841112318500258762e-06,1.909301663629898038e-06,1.977491008759537526e-06,2.045680353889177014e-06,2.113869699018816501e-06,2.182059044148455989e-06,2.250248389278095477e-06,2.318437734407734965e-06,2.386627079537374453e-06,2.454816424667013941e-06,2.523005769796653429e-06,2.591195114926292917e-06,2.659384460055932405e-06,2.727573805185571893e-06,2.795763150315211380e-06,2.863952495444850868e-06,2.932141840574490356e-06,3.000331185704129844e-06,3.068520530833769332e-06,3.136709875963408820e-06,3.204899221093048308e-06,3.273088566222687796e-06,3.341277911352327284e-06,3.409467256481966771e-06,3.477656601611606259e-06,3.545845946741245747e-06,3.614035291870885235e-06,3.682224637000524723e-06,3.750413982130164211e-06,3.818603327259803699e-06,3.886792672389443187e-06,3.954982017519082675e-06,4.023171362648722163e-06,4.091360707778361650e-06,4.159550052908001138e-06,4.227739398037640626e-06,4.295928743167280114e-06 +0.000000000000000000e+00,7.936507936507978143e-08,1.587301587301595629e-07,2.380952380952393575e-07,3.174603174603191787e-07,3.968253968253989998e-07,4.761904761904788209e-07,5.555555555555585891e-07,6.349206349206383573e-07,7.142857142857181255e-07,7.936507936507978937e-07,8.730158730158776619e-07,9.523809523809574301e-07,1.031746031746037198e-06,1.111111111111116967e-06,1.190476190476196735e-06,1.269841269841276503e-06,1.349206349206356271e-06,1.428571428571436039e-06,1.507936507936515808e-06,1.587301587301595576e-06,1.666666666666675344e-06,1.746031746031755112e-06,1.825396825396834880e-06,1.904761904761914649e-06,1.984126984126994628e-06,2.063492063492074820e-06,2.142857142857155012e-06,2.222222222222235204e-06,2.301587301587315395e-06,2.380952380952395587e-06,2.460317460317475779e-06,2.539682539682555970e-06,2.619047619047636162e-06,2.698412698412716354e-06,2.777777777777796546e-06,2.857142857142876737e-06,2.936507936507956929e-06,3.015873015873037121e-06,3.095238095238117312e-06,3.174603174603197504e-06,3.253968253968277696e-06,3.333333333333357888e-06,3.412698412698438079e-06,3.492063492063518271e-06,3.571428571428598463e-06,3.650793650793678654e-06,3.730158730158758846e-06,3.809523809523839038e-06,3.888888888888919230e-06,3.968253968253999421e-06,4.047619047619079613e-06,4.126984126984159805e-06,4.206349206349239996e-06,4.285714285714320188e-06,4.365079365079400380e-06,4.444444444444480572e-06,4.523809523809560763e-06,4.603174603174640955e-06,4.682539682539721147e-06,4.761904761904801338e-06,4.841269841269881530e-06,4.920634920634961722e-06,5.000000000000041914e-06 +0.000000000000000000e+00,7.369813172027678410e-08,1.473962634405535682e-07,2.210943951608303655e-07,2.947925268811071893e-07,3.684906586013840131e-07,4.421887903216608369e-07,5.158869220419376607e-07,5.895850537622144845e-07,6.632831854824913084e-07,7.369813172027681322e-07,8.106794489230449560e-07,8.843775806433217798e-07,9.580757123635986036e-07,1.031773844083875321e-06,1.105471975804152039e-06,1.179170107524428757e-06,1.252868239244705475e-06,1.326566370964982193e-06,1.400264502685258911e-06,1.473962634405535629e-06,1.547660766125812347e-06,1.621358897846089065e-06,1.695057029566365783e-06,1.768755161286642501e-06,1.842453293006919219e-06,1.916151424727195937e-06,1.989849556447472866e-06,2.063547688167749796e-06,2.137245819888026726e-06,2.210943951608303655e-06,2.284642083328580585e-06,2.358340215048857515e-06,2.432038346769134444e-06,2.505736478489411374e-06,2.579434610209688304e-06,2.653132741929965233e-06,2.726830873650242163e-06,2.800529005370519093e-06,2.874227137090796022e-06,2.947925268811072952e-06,3.021623400531349882e-06,3.095321532251626812e-06,3.169019663971903741e-06,3.242717795692180671e-06,3.316415927412457601e-06,3.390114059132734530e-06,3.463812190853011460e-06,3.537510322573288390e-06,3.611208454293565319e-06,3.684906586013842249e-06,3.758604717734119179e-06,3.832302849454396108e-06,3.906000981174673038e-06,3.979699112894949968e-06,4.053397244615226897e-06,4.127095376335503827e-06,4.200793508055780757e-06,4.274491639776057686e-06,4.348189771496334616e-06,4.421887903216611546e-06,4.495586034936888475e-06,4.569284166657165405e-06,4.642982298377442335e-06 +0.000000000000000000e+00,6.769509935966338473e-08,1.353901987193267695e-07,2.030852980789901542e-07,2.707803974386535389e-07,3.384754967983169236e-07,4.061705961579803084e-07,4.738656955176436931e-07,5.415607948773070778e-07,6.092558942369705155e-07,6.769509935966339532e-07,7.446460929562973908e-07,8.123411923159608285e-07,8.800362916756242662e-07,9.477313910352877039e-07,1.015426490394951142e-06,1.083121589754614579e-06,1.150816689114278017e-06,1.218511788473941455e-06,1.286206887833604892e-06,1.353901987193268330e-06,1.421597086552931768e-06,1.489292185912595205e-06,1.556987285272258643e-06,1.624682384631922081e-06,1.692377483991585518e-06,1.760072583351248956e-06,1.827767682710912394e-06,1.895462782070575831e-06,1.963157881430239481e-06,2.030852980789903130e-06,2.098548080149566780e-06,2.166243179509230429e-06,2.233938278868894078e-06,2.301633378228557728e-06,2.369328477588221377e-06,2.437023576947885027e-06,2.504718676307548676e-06,2.572413775667212326e-06,2.640108875026875975e-06,2.707803974386539624e-06,2.775499073746203274e-06,2.843194173105866923e-06,2.910889272465530573e-06,2.978584371825194222e-06,3.046279471184857871e-06,3.113974570544521521e-06,3.181669669904185170e-06,3.249364769263848820e-06,3.317059868623512469e-06,3.384754967983176119e-06,3.452450067342839768e-06,3.520145166702503417e-06,3.587840266062167067e-06,3.655535365421830716e-06,3.723230464781494366e-06,3.790925564141158015e-06,3.858620663500821665e-06,3.926315762860485738e-06,3.994010862220149811e-06,4.061705961579813883e-06,4.129401060939477956e-06,4.197096160299142029e-06,4.264791259658806102e-06 +0.000000000000000000e+00,7.936507936507992702e-08,1.587301587301598540e-07,2.380952380952397811e-07,3.174603174603197081e-07,3.968253968253996351e-07,4.761904761904795621e-07,5.555555555555594362e-07,6.349206349206393103e-07,7.142857142857191843e-07,7.936507936507990584e-07,8.730158730158789325e-07,9.523809523809588066e-07,1.031746031746038681e-06,1.111111111111118449e-06,1.190476190476198217e-06,1.269841269841277985e-06,1.349206349206357753e-06,1.428571428571437522e-06,1.507936507936517290e-06,1.587301587301597058e-06,1.666666666666676826e-06,1.746031746031756594e-06,1.825396825396836363e-06,1.904761904761916131e-06,1.984126984126995899e-06,2.063492063492075667e-06,2.142857142857155435e-06,2.222222222222235204e-06,2.301587301587314972e-06,2.380952380952394740e-06,2.460317460317474508e-06,2.539682539682554276e-06,2.619047619047634045e-06,2.698412698412713813e-06,2.777777777777793581e-06,2.857142857142873349e-06,2.936507936507953117e-06,3.015873015873032886e-06,3.095238095238112654e-06,3.174603174603192422e-06,3.253968253968272190e-06,3.333333333333351958e-06,3.412698412698431727e-06,3.492063492063511495e-06,3.571428571428591263e-06,3.650793650793671031e-06,3.730158730158750799e-06,3.809523809523830568e-06,3.888888888888910759e-06,3.968253968253990951e-06,4.047619047619071143e-06,4.126984126984151334e-06,4.206349206349231526e-06,4.285714285714311718e-06,4.365079365079391910e-06,4.444444444444472101e-06,4.523809523809552293e-06,4.603174603174632485e-06,4.682539682539712676e-06,4.761904761904792868e-06,4.841269841269873060e-06,4.920634920634953252e-06,5.000000000000033443e-06 +0.000000000000000000e+00,6.770164175797820710e-08,1.354032835159564142e-07,2.031049252739346213e-07,2.708065670319128284e-07,3.385082087898910355e-07,4.062098505478692426e-07,4.739114923058474497e-07,5.416131340638256568e-07,6.093147758218038109e-07,6.770164175797819651e-07,7.447180593377601193e-07,8.124197010957382734e-07,8.801213428537164276e-07,9.478229846116945817e-07,1.015524626369672736e-06,1.083226268127650890e-06,1.150927909885629044e-06,1.218629551643607198e-06,1.286331193401585353e-06,1.354032835159563507e-06,1.421734476917541661e-06,1.489436118675519815e-06,1.557137760433497969e-06,1.624839402191476123e-06,1.692541043949454277e-06,1.760242685707432432e-06,1.827944327465410586e-06,1.895645969223388740e-06,1.963347610981366894e-06,2.031049252739345048e-06,2.098750894497323202e-06,2.166452536255301357e-06,2.234154178013279511e-06,2.301855819771257665e-06,2.369557461529235819e-06,2.437259103287213973e-06,2.504960745045192127e-06,2.572662386803170282e-06,2.640364028561148436e-06,2.708065670319126590e-06,2.775767312077104744e-06,2.843468953835082898e-06,2.911170595593061052e-06,2.978872237351039206e-06,3.046573879109017361e-06,3.114275520866995515e-06,3.181977162624973669e-06,3.249678804382951823e-06,3.317380446140929977e-06,3.385082087898908131e-06,3.452783729656886286e-06,3.520485371414864440e-06,3.588187013172842594e-06,3.655888654930820748e-06,3.723590296688798902e-06,3.791291938446777056e-06,3.858993580204755634e-06,3.926695221962734635e-06,3.994396863720713636e-06,4.062098505478692638e-06,4.129800147236671639e-06,4.197501788994650640e-06,4.265203430752629641e-06 +0.000000000000000000e+00,7.936507936508000643e-08,1.587301587301600129e-07,2.380952380952400193e-07,3.174603174603200257e-07,3.968253968254000057e-07,4.761904761904799856e-07,5.555555555555599656e-07,6.349206349206399455e-07,7.142857142857199255e-07,7.936507936507999054e-07,8.730158730158798854e-07,9.523809523809598654e-07,1.031746031746039951e-06,1.111111111111120143e-06,1.190476190476200335e-06,1.269841269841280526e-06,1.349206349206360718e-06,1.428571428571440910e-06,1.507936507936521101e-06,1.587301587301601293e-06,1.666666666666681485e-06,1.746031746031761677e-06,1.825396825396841868e-06,1.904761904761922060e-06,1.984126984127002252e-06,2.063492063492082443e-06,2.142857142857162635e-06,2.222222222222242827e-06,2.301587301587323019e-06,2.380952380952403210e-06,2.460317460317483402e-06,2.539682539682563594e-06,2.619047619047643785e-06,2.698412698412723977e-06,2.777777777777804169e-06,2.857142857142884361e-06,2.936507936507964552e-06,3.015873015873044744e-06,3.095238095238124936e-06,3.174603174603205127e-06,3.253968253968285319e-06,3.333333333333365511e-06,3.412698412698445703e-06,3.492063492063525894e-06,3.571428571428606086e-06,3.650793650793686278e-06,3.730158730158766469e-06,3.809523809523846661e-06,3.888888888888926853e-06,3.968253968254007045e-06,4.047619047619087236e-06,4.126984126984167428e-06,4.206349206349247620e-06,4.285714285714327811e-06,4.365079365079408003e-06,4.444444444444488195e-06,4.523809523809568387e-06,4.603174603174648578e-06,4.682539682539728770e-06,4.761904761904808962e-06,4.841269841269889153e-06,4.920634920634969345e-06,5.000000000000049537e-06 +0.000000000000000000e+00,6.770451144148882803e-08,1.354090228829776561e-07,2.031135343244664841e-07,2.708180457659553121e-07,3.385225572074441402e-07,4.062270686489329682e-07,4.739315800904217962e-07,5.416360915319106243e-07,6.093406029733993994e-07,6.770451144148881744e-07,7.447496258563769495e-07,8.124541372978657246e-07,8.801586487393544997e-07,9.478631601808432748e-07,1.015567671622332050e-06,1.083272183063820825e-06,1.150976694505309600e-06,1.218681205946798375e-06,1.286385717388287150e-06,1.354090228829775925e-06,1.421794740271264700e-06,1.489499251712753476e-06,1.557203763154242251e-06,1.624908274595731026e-06,1.692612786037219801e-06,1.760317297478708576e-06,1.828021808920197351e-06,1.895726320361686126e-06,1.963430831803174689e-06,2.031135343244663253e-06,2.098839854686151816e-06,2.166544366127640379e-06,2.234248877569128943e-06,2.301953389010617506e-06,2.369657900452106069e-06,2.437362411893594633e-06,2.505066923335083196e-06,2.572771434776571759e-06,2.640475946218060323e-06,2.708180457659548886e-06,2.775884969101037449e-06,2.843589480542526013e-06,2.911293991984014576e-06,2.978998503425503139e-06,3.046703014866991703e-06,3.114407526308480266e-06,3.182112037749968829e-06,3.249816549191457393e-06,3.317521060632945956e-06,3.385225572074434519e-06,3.452930083515923083e-06,3.520634594957411646e-06,3.588339106398900209e-06,3.656043617840388773e-06,3.723748129281877336e-06,3.791452640723365900e-06,3.859157152164854463e-06,3.926861663606342603e-06,3.994566175047830742e-06,4.062270686489318882e-06,4.129975197930807022e-06,4.197679709372295162e-06,4.265384220813783302e-06 +0.000000000000000000e+00,7.936507936507990055e-08,1.587301587301598011e-07,2.380952380952397016e-07,3.174603174603196022e-07,3.968253968253994763e-07,4.761904761904793503e-07,5.555555555555592244e-07,6.349206349206390985e-07,7.142857142857189726e-07,7.936507936507988467e-07,8.730158730158787207e-07,9.523809523809585948e-07,1.031746031746038469e-06,1.111111111111118449e-06,1.190476190476198429e-06,1.269841269841278409e-06,1.349206349206358389e-06,1.428571428571438369e-06,1.507936507936518349e-06,1.587301587301598329e-06,1.666666666666678309e-06,1.746031746031758288e-06,1.825396825396838268e-06,1.904761904761918248e-06,1.984126984126998017e-06,2.063492063492077785e-06,2.142857142857157553e-06,2.222222222222237321e-06,2.301587301587317089e-06,2.380952380952396858e-06,2.460317460317476626e-06,2.539682539682556394e-06,2.619047619047636162e-06,2.698412698412715930e-06,2.777777777777795699e-06,2.857142857142875467e-06,2.936507936507955235e-06,3.015873015873035003e-06,3.095238095238114771e-06,3.174603174603194540e-06,3.253968253968274308e-06,3.333333333333354076e-06,3.412698412698433844e-06,3.492063492063513612e-06,3.571428571428593381e-06,3.650793650793673149e-06,3.730158730158752917e-06,3.809523809523832685e-06,3.888888888888912453e-06,3.968253968253992645e-06,4.047619047619072837e-06,4.126984126984153029e-06,4.206349206349233220e-06,4.285714285714313412e-06,4.365079365079393604e-06,4.444444444444473795e-06,4.523809523809553987e-06,4.603174603174634179e-06,4.682539682539714371e-06,4.761904761904794562e-06,4.841269841269874754e-06,4.920634920634954946e-06,5.000000000000035137e-06 +0.000000000000000000e+00,7.367267593547712293e-08,1.473453518709542459e-07,2.210180278064313688e-07,2.946907037419084917e-07,3.683633796773856146e-07,4.420360556128627376e-07,5.157087315483399134e-07,5.893814074838170893e-07,6.630540834192942652e-07,7.367267593547714410e-07,8.103994352902486169e-07,8.840721112257257928e-07,9.577447871612029686e-07,1.031417463096680250e-06,1.105090139032157532e-06,1.178762814967634814e-06,1.252435490903112096e-06,1.326108166838589377e-06,1.399780842774066659e-06,1.473453518709543941e-06,1.547126194645021223e-06,1.620798870580498504e-06,1.694471546515975786e-06,1.768144222451453068e-06,1.841816898386930350e-06,1.915489574322407631e-06,1.989162250257884701e-06,2.062834926193361771e-06,2.136507602128838841e-06,2.210180278064315911e-06,2.283852953999792981e-06,2.357525629935270051e-06,2.431198305870747121e-06,2.504870981806224191e-06,2.578543657741701261e-06,2.652216333677178331e-06,2.725889009612655401e-06,2.799561685548132471e-06,2.873234361483609541e-06,2.946907037419086611e-06,3.020579713354563681e-06,3.094252389290040751e-06,3.167925065225517821e-06,3.241597741160994891e-06,3.315270417096471961e-06,3.388943093031949031e-06,3.462615768967426101e-06,3.536288444902903171e-06,3.609961120838380241e-06,3.683633796773857311e-06,3.757306472709334381e-06,3.830979148644811028e-06,3.904651824580287674e-06,3.978324500515764320e-06,4.051997176451240967e-06,4.125669852386717613e-06,4.199342528322194260e-06,4.273015204257670906e-06,4.346687880193147553e-06,4.420360556128624199e-06,4.494033232064100846e-06,4.567705907999577492e-06,4.641378583935054139e-06 +0.000000000000000000e+00,6.770049623856970489e-08,1.354009924771394098e-07,2.031014887157091279e-07,2.708019849542788725e-07,3.385024811928486171e-07,4.062029774314183617e-07,4.739034736699881063e-07,5.416039699085578509e-07,6.093044661471276484e-07,6.770049623856974459e-07,7.447054586242672435e-07,8.124059548628370410e-07,8.801064511014068385e-07,9.478069473399766360e-07,1.015507443578546434e-06,1.083207939817116337e-06,1.150908436055686240e-06,1.218608932294256144e-06,1.286309428532826047e-06,1.354009924771395951e-06,1.421710421009965854e-06,1.489410917248535757e-06,1.557111413487105661e-06,1.624811909725675564e-06,1.692512405964245468e-06,1.760212902202815371e-06,1.827913398441385275e-06,1.895613894679955178e-06,1.963314390918525293e-06,2.031014887157095408e-06,2.098715383395665523e-06,2.166415879634235639e-06,2.234116375872805754e-06,2.301816872111375869e-06,2.369517368349945984e-06,2.437217864588516099e-06,2.504918360827086214e-06,2.572618857065656330e-06,2.640319353304226445e-06,2.708019849542796560e-06,2.775720345781366675e-06,2.843420842019936790e-06,2.911121338258506905e-06,2.978821834497077021e-06,3.046522330735647136e-06,3.114222826974217251e-06,3.181923323212787366e-06,3.249623819451357481e-06,3.317324315689927596e-06,3.385024811928497712e-06,3.452725308167067827e-06,3.520425804405637942e-06,3.588126300644208057e-06,3.655826796882778172e-06,3.723527293121348287e-06,3.791227789359918403e-06,3.858928285598488518e-06,3.926628781837059057e-06,3.994329278075629595e-06,4.062029774314200134e-06,4.129730270552770673e-06,4.197430766791341211e-06,4.265131263029911750e-06 +0.000000000000000000e+00,7.936507936507997996e-08,1.587301587301599599e-07,2.380952380952399399e-07,3.174603174603199198e-07,3.968253968253998998e-07,4.761904761904798797e-07,5.555555555555598597e-07,6.349206349206398397e-07,7.142857142857198196e-07,7.936507936507997996e-07,8.730158730158797795e-07,9.523809523809597595e-07,1.031746031746039739e-06,1.111111111111119719e-06,1.190476190476199699e-06,1.269841269841279679e-06,1.349206349206359659e-06,1.428571428571439639e-06,1.507936507936519619e-06,1.587301587301599599e-06,1.666666666666679579e-06,1.746031746031759559e-06,1.825396825396839539e-06,1.904761904761919519e-06,1.984126984126999711e-06,2.063492063492079902e-06,2.142857142857160094e-06,2.222222222222240286e-06,2.301587301587320478e-06,2.380952380952400669e-06,2.460317460317480861e-06,2.539682539682561053e-06,2.619047619047641244e-06,2.698412698412721436e-06,2.777777777777801628e-06,2.857142857142881820e-06,2.936507936507962011e-06,3.015873015873042203e-06,3.095238095238122395e-06,3.174603174603202586e-06,3.253968253968282778e-06,3.333333333333362970e-06,3.412698412698443162e-06,3.492063492063523353e-06,3.571428571428603545e-06,3.650793650793683737e-06,3.730158730158763928e-06,3.809523809523844120e-06,3.888888888888924312e-06,3.968253968254004504e-06,4.047619047619084695e-06,4.126984126984164887e-06,4.206349206349245079e-06,4.285714285714325270e-06,4.365079365079405462e-06,4.444444444444485654e-06,4.523809523809565846e-06,4.603174603174646037e-06,4.682539682539726229e-06,4.761904761904806421e-06,4.841269841269886612e-06,4.920634920634966804e-06,5.000000000000046996e-06 +0.000000000000000000e+00,7.367720913733758693e-08,1.473544182746751739e-07,2.210316274120127475e-07,2.947088365493502948e-07,3.683860456866878420e-07,4.420632548240253892e-07,5.157404639613629364e-07,5.894176730987004836e-07,6.630948822360380309e-07,7.367720913733755781e-07,8.104493005107131253e-07,8.841265096480506725e-07,9.578037187853881139e-07,1.031480927922725661e-06,1.105158137060063208e-06,1.178835346197400756e-06,1.252512555334738303e-06,1.326189764472075850e-06,1.399866973609413397e-06,1.473544182746750944e-06,1.547221391884088492e-06,1.620898601021426039e-06,1.694575810158763586e-06,1.768253019296101133e-06,1.841930228433438681e-06,1.915607437570776228e-06,1.989284646708113775e-06,2.062961855845451322e-06,2.136639064982788869e-06,2.210316274120126417e-06,2.283993483257463964e-06,2.357670692394801511e-06,2.431347901532139058e-06,2.505025110669476606e-06,2.578702319806814153e-06,2.652379528944151700e-06,2.726056738081489247e-06,2.799733947218826794e-06,2.873411156356164342e-06,2.947088365493501889e-06,3.020765574630839436e-06,3.094442783768176983e-06,3.168119992905514530e-06,3.241797202042852078e-06,3.315474411180189625e-06,3.389151620317527172e-06,3.462828829454864719e-06,3.536506038592202267e-06,3.610183247729539814e-06,3.683860456866877361e-06,3.757537666004214908e-06,3.831214875141552455e-06,3.904892084278890003e-06,3.978569293416227550e-06,4.052246502553565097e-06,4.125923711690902644e-06,4.199600920828240192e-06,4.273278129965577739e-06,4.346955339102915286e-06,4.420632548240252833e-06,4.494309757377590380e-06,4.567986966514927928e-06,4.641664175652265475e-06 +0.000000000000000000e+00,6.769509935965815695e-08,1.353901987193163139e-07,2.030852980789744841e-07,2.707803974386326807e-07,3.384754967982908774e-07,4.061705961579490740e-07,4.738656955176072707e-07,5.415607948772654673e-07,6.092558942369237169e-07,6.769509935965819665e-07,7.446460929562402161e-07,8.123411923158984657e-07,8.800362916755567153e-07,9.477313910352149649e-07,1.015426490394873214e-06,1.083121589754531570e-06,1.150816689114189925e-06,1.218511788473848281e-06,1.286206887833506636e-06,1.353901987193164992e-06,1.421597086552823347e-06,1.489292185912481703e-06,1.556987285272140058e-06,1.624682384631798414e-06,1.692377483991456769e-06,1.760072583351115125e-06,1.827767682710773480e-06,1.895462782070431836e-06,1.963157881430090403e-06,2.030852980789748970e-06,2.098548080149407537e-06,2.166243179509066105e-06,2.233938278868724672e-06,2.301633378228383239e-06,2.369328477588041806e-06,2.437023576947700373e-06,2.504718676307358941e-06,2.572413775667017508e-06,2.640108875026676075e-06,2.707803974386334642e-06,2.775499073745993210e-06,2.843194173105651777e-06,2.910889272465310344e-06,2.978584371824968911e-06,3.046279471184627479e-06,3.113974570544286046e-06,3.181669669903944613e-06,3.249364769263603180e-06,3.317059868623261747e-06,3.384754967982920315e-06,3.452450067342578882e-06,3.520145166702237449e-06,3.587840266061896016e-06,3.655535365421554584e-06,3.723230464781213151e-06,3.790925564140871718e-06,3.858620663500530285e-06,3.926315762860189276e-06,3.994010862219848267e-06,4.061705961579507258e-06,4.129401060939166248e-06,4.197096160298825239e-06,4.264791259658484230e-06 +0.000000000000000000e+00,7.936507936508013878e-08,1.587301587301602776e-07,2.380952380952404163e-07,3.174603174603205551e-07,3.968253968254006939e-07,4.761904761904808327e-07,5.555555555555609185e-07,6.349206349206410043e-07,7.142857142857210902e-07,7.936507936508011760e-07,8.730158730158812618e-07,9.523809523809613477e-07,1.031746031746041433e-06,1.111111111111121413e-06,1.190476190476201393e-06,1.269841269841281373e-06,1.349206349206361353e-06,1.428571428571441333e-06,1.507936507936521313e-06,1.587301587301601293e-06,1.666666666666681273e-06,1.746031746031761253e-06,1.825396825396841233e-06,1.904761904761921213e-06,1.984126984127001405e-06,2.063492063492081596e-06,2.142857142857161788e-06,2.222222222222241980e-06,2.301587301587322172e-06,2.380952380952402363e-06,2.460317460317482555e-06,2.539682539682562747e-06,2.619047619047642938e-06,2.698412698412723130e-06,2.777777777777803322e-06,2.857142857142883514e-06,2.936507936507963705e-06,3.015873015873043897e-06,3.095238095238124089e-06,3.174603174603204280e-06,3.253968253968284472e-06,3.333333333333364664e-06,3.412698412698444856e-06,3.492063492063525047e-06,3.571428571428605239e-06,3.650793650793685431e-06,3.730158730158765622e-06,3.809523809523845814e-06,3.888888888888926006e-06,3.968253968254006198e-06,4.047619047619086389e-06,4.126984126984166581e-06,4.206349206349246773e-06,4.285714285714326964e-06,4.365079365079407156e-06,4.444444444444487348e-06,4.523809523809567540e-06,4.603174603174647731e-06,4.682539682539727923e-06,4.761904761904808115e-06,4.841269841269888306e-06,4.920634920634968498e-06,5.000000000000048690e-06 +0.000000000000000000e+00,6.770049623856712408e-08,1.354009924771342482e-07,2.031014887157013723e-07,2.708019849542684963e-07,3.385024811928356469e-07,4.062029774314027974e-07,4.739034736699699480e-07,5.416039699085370986e-07,6.093044661471042491e-07,6.770049623856713997e-07,7.447054586242385502e-07,8.124059548628057008e-07,8.801064511013728513e-07,9.478069473399400019e-07,1.015507443578507258e-06,1.083207939817074409e-06,1.150908436055641559e-06,1.218608932294208710e-06,1.286309428532775861e-06,1.354009924771343011e-06,1.421710421009910162e-06,1.489410917248477312e-06,1.557111413487044463e-06,1.624811909725611613e-06,1.692512405964178764e-06,1.760212902202745914e-06,1.827913398441313065e-06,1.895613894679880216e-06,1.963314390918447366e-06,2.031014887157014517e-06,2.098715383395581667e-06,2.166415879634148818e-06,2.234116375872715968e-06,2.301816872111283119e-06,2.369517368349850269e-06,2.437217864588417420e-06,2.504918360826984570e-06,2.572618857065551721e-06,2.640319353304118872e-06,2.708019849542686022e-06,2.775720345781253173e-06,2.843420842019820323e-06,2.911121338258387474e-06,2.978821834496954624e-06,3.046522330735521775e-06,3.114222826974088925e-06,3.181923323212656076e-06,3.249623819451223227e-06,3.317324315689790377e-06,3.385024811928357528e-06,3.452725308166924678e-06,3.520425804405491829e-06,3.588126300644058979e-06,3.655826796882626130e-06,3.723527293121193280e-06,3.791227789359760431e-06,3.858928285598327582e-06,3.926628781836894732e-06,3.994329278075461883e-06,4.062029774314029033e-06,4.129730270552596184e-06,4.197430766791163334e-06,4.265131263029730485e-06 +0.000000000000000000e+00,7.936507936508012554e-08,1.587301587301602511e-07,2.380952380952403634e-07,3.174603174603204492e-07,3.968253968254005351e-07,4.761904761904806209e-07,5.555555555555607067e-07,6.349206349206407926e-07,7.142857142857208784e-07,7.936507936508009642e-07,8.730158730158810501e-07,9.523809523809611359e-07,1.031746031746041222e-06,1.111111111111121413e-06,1.190476190476201605e-06,1.269841269841281797e-06,1.349206349206361989e-06,1.428571428571442180e-06,1.507936507936522372e-06,1.587301587301602564e-06,1.666666666666682755e-06,1.746031746031762947e-06,1.825396825396843139e-06,1.904761904761923331e-06,1.984126984127003522e-06,2.063492063492083714e-06,2.142857142857163906e-06,2.222222222222244097e-06,2.301587301587324289e-06,2.380952380952404481e-06,2.460317460317484673e-06,2.539682539682564864e-06,2.619047619047645056e-06,2.698412698412725248e-06,2.777777777777805439e-06,2.857142857142885631e-06,2.936507936507965823e-06,3.015873015873046015e-06,3.095238095238126206e-06,3.174603174603206398e-06,3.253968253968286590e-06,3.333333333333366781e-06,3.412698412698446973e-06,3.492063492063527165e-06,3.571428571428607357e-06,3.650793650793687548e-06,3.730158730158767740e-06,3.809523809523847932e-06,3.888888888888927700e-06,3.968253968254007892e-06,4.047619047619088083e-06,4.126984126984168275e-06,4.206349206349248467e-06,4.285714285714328659e-06,4.365079365079408850e-06,4.444444444444489042e-06,4.523809523809569234e-06,4.603174603174649425e-06,4.682539682539729617e-06,4.761904761904809809e-06,4.841269841269890001e-06,4.920634920634970192e-06,5.000000000000050384e-06 +0.000000000000000000e+00,6.770451144148370613e-08,1.354090228829674123e-07,2.031135343244511316e-07,2.708180457659348775e-07,3.385225572074186233e-07,4.062270686489023691e-07,4.739315800903861150e-07,5.416360915318698608e-07,6.093406029733536596e-07,6.770451144148374584e-07,7.447496258563212571e-07,8.124541372978050559e-07,8.801586487392888547e-07,9.478631601807726534e-07,1.015567671622256452e-06,1.083272183063740357e-06,1.150976694505224262e-06,1.218681205946708166e-06,1.286385717388192071e-06,1.354090228829675975e-06,1.421794740271159880e-06,1.489499251712643785e-06,1.557203763154127689e-06,1.624908274595611594e-06,1.692612786037095499e-06,1.760317297478579403e-06,1.828021808920063308e-06,1.895726320361547213e-06,1.963430831803031117e-06,2.031135343244515022e-06,2.098839854685998927e-06,2.166544366127482831e-06,2.234248877568966736e-06,2.301953389010450641e-06,2.369657900451934545e-06,2.437362411893418450e-06,2.505066923334902355e-06,2.572771434776386259e-06,2.640475946217870164e-06,2.708180457659354069e-06,2.775884969100837973e-06,2.843589480542321878e-06,2.911293991983805783e-06,2.978998503425289687e-06,3.046703014866773592e-06,3.114407526308257496e-06,3.182112037749741401e-06,3.249816549191225306e-06,3.317521060632709210e-06,3.385225572074193115e-06,3.452930083515677020e-06,3.520634594957160924e-06,3.588339106398644829e-06,3.656043617840128734e-06,3.723748129281612638e-06,3.791452640723096543e-06,3.859157152164580871e-06,3.926861663606064776e-06,3.994566175047548681e-06,4.062270686489032585e-06,4.129975197930516490e-06,4.197679709372000394e-06,4.265384220813484299e-06 +0.000000000000000000e+00,7.936507936507994025e-08,1.587301587301598805e-07,2.380952380952398340e-07,3.174603174603198139e-07,3.968253968253997939e-07,4.761904761904797739e-07,5.555555555555597538e-07,6.349206349206397338e-07,7.142857142857197137e-07,7.936507936507996937e-07,8.730158730158796736e-07,9.523809523809596536e-07,1.031746031746039528e-06,1.111111111111119296e-06,1.190476190476199064e-06,1.269841269841278832e-06,1.349206349206358600e-06,1.428571428571438369e-06,1.507936507936518137e-06,1.587301587301597905e-06,1.666666666666677673e-06,1.746031746031757441e-06,1.825396825396837210e-06,1.904761904761916978e-06,1.984126984126996746e-06,2.063492063492076514e-06,2.142857142857156282e-06,2.222222222222236051e-06,2.301587301587315819e-06,2.380952380952395587e-06,2.460317460317475355e-06,2.539682539682555123e-06,2.619047619047634892e-06,2.698412698412714660e-06,2.777777777777794428e-06,2.857142857142874196e-06,2.936507936507953964e-06,3.015873015873033733e-06,3.095238095238113501e-06,3.174603174603193269e-06,3.253968253968273037e-06,3.333333333333352805e-06,3.412698412698432574e-06,3.492063492063512342e-06,3.571428571428592110e-06,3.650793650793671878e-06,3.730158730158751646e-06,3.809523809523831415e-06,3.888888888888910759e-06,3.968253968253990104e-06,4.047619047619069449e-06,4.126984126984148793e-06,4.206349206349228138e-06,4.285714285714307483e-06,4.365079365079386827e-06,4.444444444444466172e-06,4.523809523809545517e-06,4.603174603174624861e-06,4.682539682539704206e-06,4.761904761904783551e-06,4.841269841269862895e-06,4.920634920634942240e-06,5.000000000000021585e-06 +0.000000000000000000e+00,7.367267593547444948e-08,1.473453518709488990e-07,2.210180278064233484e-07,2.946907037418977979e-07,3.683633796773722209e-07,4.420360556128466439e-07,5.157087315483210670e-07,5.893814074837954900e-07,6.630540834192699130e-07,7.367267593547443360e-07,8.103994352902187590e-07,8.840721112256931820e-07,9.577447871611676050e-07,1.031417463096642134e-06,1.105090139032116663e-06,1.178762814967591192e-06,1.252435490903065721e-06,1.326108166838540249e-06,1.399780842774014778e-06,1.473453518709489307e-06,1.547126194644963836e-06,1.620798870580438365e-06,1.694471546515912894e-06,1.768144222451387423e-06,1.841816898386861952e-06,1.915489574322336481e-06,1.989162250257811009e-06,2.062834926193285538e-06,2.136507602128760067e-06,2.210180278064234596e-06,2.283852953999709125e-06,2.357525629935183654e-06,2.431198305870658183e-06,2.504870981806132712e-06,2.578543657741607241e-06,2.652216333677081769e-06,2.725889009612556298e-06,2.799561685548030827e-06,2.873234361483505356e-06,2.946907037418979885e-06,3.020579713354454414e-06,3.094252389289928943e-06,3.167925065225403472e-06,3.241597741160878001e-06,3.315270417096352529e-06,3.388943093031827058e-06,3.462615768967301587e-06,3.536288444902776116e-06,3.609961120838250645e-06,3.683633796773725174e-06,3.757306472709199703e-06,3.830979148644673808e-06,3.904651824580147914e-06,3.978324500515622019e-06,4.051997176451096124e-06,4.125669852386570230e-06,4.199342528322044335e-06,4.273015204257518440e-06,4.346687880192992546e-06,4.420360556128466651e-06,4.494033232063940757e-06,4.567705907999414862e-06,4.641378583934888967e-06 +0.000000000000000000e+00,6.633328433869168294e-08,1.326665686773833659e-07,1.989998530160750621e-07,2.653331373547667847e-07,3.316664216934585074e-07,3.979997060321502300e-07,4.643329903708419527e-07,5.306662747095336753e-07,5.969995590482253450e-07,6.633328433869170147e-07,7.296661277256086844e-07,7.959994120643003541e-07,8.623326964029920239e-07,9.286659807416836936e-07,9.949992650803753633e-07,1.061332549419067139e-06,1.127665833757758914e-06,1.193999118096450690e-06,1.260332402435142466e-06,1.326665686773834241e-06,1.392998971112526017e-06,1.459332255451217792e-06,1.525665539789909568e-06,1.591998824128601344e-06,1.658332108467293119e-06,1.724665392805984895e-06,1.790998677144676670e-06,1.857331961483368446e-06,1.923665245822060222e-06,1.989998530160751997e-06,2.056331814499443773e-06,2.122665098838135548e-06,2.188998383176827324e-06,2.255331667515519099e-06,2.321664951854210875e-06,2.387998236192902651e-06,2.454331520531594426e-06,2.520664804870286202e-06,2.586998089208977977e-06,2.653331373547669753e-06,2.719664657886361529e-06,2.785997942225053304e-06,2.852331226563745080e-06,2.918664510902436855e-06,2.984997795241128631e-06,3.051331079579820407e-06,3.117664363918512182e-06,3.183997648257203958e-06,3.250330932595895733e-06,3.316664216934587509e-06,3.382997501273279284e-06,3.449330785611971060e-06,3.515664069950662836e-06,3.581997354289354611e-06,3.648330638628046387e-06,3.714663922966738162e-06,3.780997207305429938e-06,3.847330491644121290e-06,3.913663775982812219e-06,3.979997060321503147e-06,4.046330344660194076e-06,4.112663628998885004e-06,4.178996913337575933e-06 +0.000000000000000000e+00,6.318577277435504637e-08,1.263715455487100927e-07,1.895573183230651391e-07,2.527430910974201855e-07,3.159288638717752054e-07,3.791146366461302253e-07,4.423004094204852452e-07,5.054861821948402651e-07,5.686719549691952850e-07,6.318577277435503049e-07,6.950435005179053248e-07,7.582292732922603447e-07,8.214150460666153645e-07,8.846008188409703844e-07,9.477865916153254043e-07,1.010972364389680318e-06,1.074158137164035232e-06,1.137343909938390146e-06,1.200529682712745060e-06,1.263715455487099974e-06,1.326901228261454888e-06,1.390087001035809802e-06,1.453272773810164716e-06,1.516458546584519631e-06,1.579644319358874545e-06,1.642830092133229459e-06,1.706015864907584373e-06,1.769201637681939287e-06,1.832387410456294201e-06,1.895573183230649115e-06,1.958758956005003817e-06,2.021944728779358519e-06,2.085130501553713221e-06,2.148316274328067924e-06,2.211502047102422626e-06,2.274687819876777328e-06,2.337873592651132030e-06,2.401059365425486733e-06,2.464245138199841435e-06,2.527430910974196137e-06,2.590616683748550839e-06,2.653802456522905542e-06,2.716988229297260244e-06,2.780174002071614946e-06,2.843359774845969649e-06,2.906545547620324351e-06,2.969731320394679053e-06,3.032917093169033755e-06,3.096102865943388458e-06,3.159288638717743160e-06,3.222474411492097862e-06,3.285660184266452564e-06,3.348845957040807267e-06,3.412031729815161969e-06,3.475217502589516671e-06,3.538403275363871373e-06,3.601589048138226076e-06,3.664774820912580778e-06,3.727960593686935480e-06,3.791146366461290182e-06,3.854332139235644885e-06,3.917517912009999163e-06,3.980703684784353442e-06 +0.000000000000000000e+00,6.299087845290480339e-08,1.259817569058096068e-07,1.889726353587144102e-07,2.519635138116192135e-07,3.149543922645240434e-07,3.779452707174288733e-07,4.409361491703337031e-07,5.039270276232385330e-07,5.669179060761433628e-07,6.299087845290481927e-07,6.928996629819530225e-07,7.558905414348578524e-07,8.188814198877626822e-07,8.818722983406675121e-07,9.448631767935723420e-07,1.007854055246477278e-06,1.070844933699382213e-06,1.133835812152287149e-06,1.196826690605192085e-06,1.259817569058097021e-06,1.322808447511001956e-06,1.385799325963906892e-06,1.448790204416811828e-06,1.511781082869716764e-06,1.574771961322621699e-06,1.637762839775526635e-06,1.700753718228431571e-06,1.763744596681336507e-06,1.826735475134241442e-06,1.889726353587146378e-06,1.952717232040051314e-06,2.015708110492956249e-06,2.078698988945861185e-06,2.141689867398766121e-06,2.204680745851671057e-06,2.267671624304575992e-06,2.330662502757480928e-06,2.393653381210385864e-06,2.456644259663290800e-06,2.519635138116195735e-06,2.582626016569100671e-06,2.645616895022005607e-06,2.708607773474910543e-06,2.771598651927815478e-06,2.834589530380720414e-06,2.897580408833625350e-06,2.960571287286530285e-06,3.023562165739435221e-06,3.086553044192340157e-06,3.149543922645245093e-06,3.212534801098150028e-06,3.275525679551054964e-06,3.338516558003959900e-06,3.401507436456864836e-06,3.464498314909769771e-06,3.527489193362674707e-06,3.590480071815579643e-06,3.653470950268484579e-06,3.716461828721389514e-06,3.779452707174294450e-06,3.842443585627198962e-06,3.905434464080103474e-06,3.968425342533007987e-06 +0.000000000000000000e+00,6.570947414532707911e-08,1.314189482906541582e-07,1.971284224359812373e-07,2.628378965813083164e-07,3.285473707266353691e-07,3.942568448719624217e-07,4.599663190172894744e-07,5.256757931626165270e-07,5.913852673079435796e-07,6.570947414532706323e-07,7.228042155985976849e-07,7.885136897439247376e-07,8.542231638892517902e-07,9.199326380345788428e-07,9.856421121799057896e-07,1.051351586325232842e-06,1.117061060470559895e-06,1.182770534615886948e-06,1.248480008761214000e-06,1.314189482906541053e-06,1.379898957051868105e-06,1.445608431197195158e-06,1.511317905342522211e-06,1.577027379487849263e-06,1.642736853633176316e-06,1.708446327778503369e-06,1.774155801923830421e-06,1.839865276069157474e-06,1.905574750214484527e-06,1.971284224359811579e-06,2.036993698505138632e-06,2.102703172650465684e-06,2.168412646795792737e-06,2.234122120941119790e-06,2.299831595086446842e-06,2.365541069231773895e-06,2.431250543377100948e-06,2.496960017522428000e-06,2.562669491667755053e-06,2.628378965813082106e-06,2.694088439958409158e-06,2.759797914103736211e-06,2.825507388249063264e-06,2.891216862394390316e-06,2.956926336539717369e-06,3.022635810685044421e-06,3.088345284830371474e-06,3.154054758975698527e-06,3.219764233121025579e-06,3.285473707266352632e-06,3.351183181411679685e-06,3.416892655557006737e-06,3.482602129702333790e-06,3.548311603847660843e-06,3.614021077992987895e-06,3.679730552138314948e-06,3.745440026283642000e-06,3.811149500428969053e-06,3.876858974574296529e-06,3.942568448719624005e-06,4.008277922864951482e-06,4.073987397010278958e-06,4.139696871155606434e-06 +0.000000000000000000e+00,6.707933754066076583e-08,1.341586750813215317e-07,2.012380126219822842e-07,2.683173501626430104e-07,3.353966877033037365e-07,4.024760252439644626e-07,4.695553627846251887e-07,5.366347003252859149e-07,6.037140378659465880e-07,6.707933754066072612e-07,7.378727129472679344e-07,8.049520504879286076e-07,8.720313880285892808e-07,9.391107255692499539e-07,1.006190063109910627e-06,1.073269400650571194e-06,1.140348738191231762e-06,1.207428075731892329e-06,1.274507413272552896e-06,1.341586750813213464e-06,1.408666088353874031e-06,1.475745425894534598e-06,1.542824763435195166e-06,1.609904100975855733e-06,1.676983438516516300e-06,1.744062776057176867e-06,1.811142113597837435e-06,1.878221451138498002e-06,1.945300788679158358e-06,2.012380126219818713e-06,2.079459463760479069e-06,2.146538801301139424e-06,2.213618138841799780e-06,2.280697476382460135e-06,2.347776813923120491e-06,2.414856151463780846e-06,2.481935489004441202e-06,2.549014826545101558e-06,2.616094164085761913e-06,2.683173501626422269e-06,2.750252839167082624e-06,2.817332176707742980e-06,2.884411514248403335e-06,2.951490851789063691e-06,3.018570189329724046e-06,3.085649526870384402e-06,3.152728864411044757e-06,3.219808201951705113e-06,3.286887539492365468e-06,3.353966877033025824e-06,3.421046214573686180e-06,3.488125552114346535e-06,3.555204889655006891e-06,3.622284227195667246e-06,3.689363564736327602e-06,3.756442902276987957e-06,3.823522239817648313e-06,3.890601577358308245e-06,3.957680914898968177e-06,4.024760252439628109e-06,4.091839589980288041e-06,4.158918927520947973e-06,4.225998265061607905e-06 +0.000000000000000000e+00,6.959831049996425286e-08,1.391966209999285057e-07,2.087949314998927453e-07,2.783932419998569585e-07,3.479915524998211716e-07,4.175898629997853848e-07,4.871881734997495979e-07,5.567864839997138111e-07,6.263847944996780243e-07,6.959831049996422374e-07,7.655814154996064506e-07,8.351797259995706637e-07,9.047780364995348769e-07,9.743763469994991959e-07,1.043974657499463515e-06,1.113572967999427834e-06,1.183171278499392153e-06,1.252769588999356472e-06,1.322367899499320791e-06,1.391966209999285110e-06,1.461564520499249429e-06,1.531162830999213748e-06,1.600761141499178067e-06,1.670359451999142386e-06,1.739957762499106705e-06,1.809556072999071024e-06,1.879154383499035343e-06,1.948752693998999662e-06,2.018351004498963981e-06,2.087949314998928300e-06,2.157547625498892619e-06,2.227145935998856938e-06,2.296744246498821258e-06,2.366342556998785577e-06,2.435940867498749896e-06,2.505539177998714215e-06,2.575137488498678534e-06,2.644735798998642853e-06,2.714334109498607172e-06,2.783932419998571491e-06,2.853530730498535810e-06,2.923129040998500129e-06,2.992727351498464448e-06,3.062325661998428767e-06,3.131923972498393086e-06,3.201522282998357405e-06,3.271120593498321724e-06,3.340718903998286043e-06,3.410317214498250362e-06,3.479915524998214681e-06,3.549513835498179000e-06,3.619112145998143319e-06,3.688710456498107638e-06,3.758308766998071957e-06,3.827907077498036276e-06,3.897505387998000172e-06,3.967103698497964067e-06,4.036702008997927963e-06,4.106300319497891858e-06,4.175898629997855754e-06,4.245496940497819649e-06,4.315095250997783545e-06,4.384693561497747440e-06 +0.000000000000000000e+00,6.303568964531848922e-08,1.260713792906369784e-07,1.891070689359554544e-07,2.521427585812739039e-07,3.151784482265923535e-07,3.782141378719108030e-07,4.412498275172292525e-07,5.042855171625477020e-07,5.673212068078661515e-07,6.303568964531846010e-07,6.933925860985030505e-07,7.564282757438215001e-07,8.194639653891399496e-07,8.824996550344583991e-07,9.455353446797768486e-07,1.008571034325095192e-06,1.071606723970413430e-06,1.134642413615731668e-06,1.197678103261049906e-06,1.260713792906368143e-06,1.323749482551686381e-06,1.386785172197004619e-06,1.449820861842322857e-06,1.512856551487641094e-06,1.575892241132959332e-06,1.638927930778277570e-06,1.701963620423595808e-06,1.764999310068914045e-06,1.828034999714232283e-06,1.891070689359550521e-06,1.954106379004868759e-06,2.017142068650186996e-06,2.080177758295505234e-06,2.143213447940823472e-06,2.206249137586141710e-06,2.269284827231459947e-06,2.332320516876778185e-06,2.395356206522096423e-06,2.458391896167414661e-06,2.521427585812732898e-06,2.584463275458051136e-06,2.647498965103369374e-06,2.710534654748687612e-06,2.773570344394005849e-06,2.836606034039324087e-06,2.899641723684642325e-06,2.962677413329960563e-06,3.025713102975278800e-06,3.088748792620597038e-06,3.151784482265915276e-06,3.214820171911233514e-06,3.277855861556551752e-06,3.340891551201869989e-06,3.403927240847188227e-06,3.466962930492506465e-06,3.529998620137824703e-06,3.593034309783142940e-06,3.656069999428461178e-06,3.719105689073779416e-06,3.782141378719097654e-06,3.845177068364415891e-06,3.908212758009734129e-06,3.971248447655052367e-06 +0.000000000000000000e+00,6.691551957236978610e-08,1.338310391447395722e-07,2.007465587171093715e-07,2.676620782894791973e-07,3.345775978618490231e-07,4.014931174342188489e-07,4.684086370065886747e-07,5.353241565789585005e-07,6.022396761513283264e-07,6.691551957236981522e-07,7.360707152960679780e-07,8.029862348684378038e-07,8.699017544408076296e-07,9.368172740131774554e-07,1.003732793585547175e-06,1.070648313157916789e-06,1.137563832730286403e-06,1.204479352302656017e-06,1.271394871875025631e-06,1.338310391447395246e-06,1.405225911019764860e-06,1.472141430592134474e-06,1.539056950164504088e-06,1.605972469736873702e-06,1.672887989309243316e-06,1.739803508881612930e-06,1.806719028453982544e-06,1.873634548026352158e-06,1.940550067598721772e-06,2.007465587171091386e-06,2.074381106743461000e-06,2.141296626315830614e-06,2.208212145888200228e-06,2.275127665460569842e-06,2.342043185032939456e-06,2.408958704605309070e-06,2.475874224177678684e-06,2.542789743750048298e-06,2.609705263322417912e-06,2.676620782894787526e-06,2.743536302467157140e-06,2.810451822039526755e-06,2.877367341611896369e-06,2.944282861184265983e-06,3.011198380756635597e-06,3.078113900329005211e-06,3.145029419901374825e-06,3.211944939473744439e-06,3.278860459046114053e-06,3.345775978618483667e-06,3.412691498190853281e-06,3.479607017763222895e-06,3.546522537335592509e-06,3.613438056907962123e-06,3.680353576480331737e-06,3.747269096052701351e-06,3.814184615625070965e-06,3.881100135197440156e-06,3.948015654769809346e-06,4.014931174342178537e-06,4.081846693914547727e-06,4.148762213486916918e-06,4.215677733059286108e-06 +0.000000000000000000e+00,6.633328433869365494e-08,1.326665686773873099e-07,1.989998530160809648e-07,2.653331373547746198e-07,3.316664216934683012e-07,3.979997060321619826e-07,4.643329903708556640e-07,5.306662747095493454e-07,5.969995590482430268e-07,6.633328433869367082e-07,7.296661277256303897e-07,7.959994120643240711e-07,8.623326964030177525e-07,9.286659807417114339e-07,9.949992650804050094e-07,1.061332549419098479e-06,1.127665833757791949e-06,1.193999118096485418e-06,1.260332402435178888e-06,1.326665686773872358e-06,1.392998971112565827e-06,1.459332255451259297e-06,1.525665539789952767e-06,1.591998824128646236e-06,1.658332108467339706e-06,1.724665392806033176e-06,1.790998677144726645e-06,1.857331961483420115e-06,1.923665245822113585e-06,1.989998530160807054e-06,2.056331814499500524e-06,2.122665098838193994e-06,2.188998383176887463e-06,2.255331667515580933e-06,2.321664951854274403e-06,2.387998236192967872e-06,2.454331520531661342e-06,2.520664804870354811e-06,2.586998089209048281e-06,2.653331373547741751e-06,2.719664657886435220e-06,2.785997942225128690e-06,2.852331226563822160e-06,2.918664510902515629e-06,2.984997795241209099e-06,3.051331079579902569e-06,3.117664363918596038e-06,3.183997648257289508e-06,3.250330932595982978e-06,3.316664216934676447e-06,3.382997501273369917e-06,3.449330785612063387e-06,3.515664069950756856e-06,3.581997354289450326e-06,3.648330638628143796e-06,3.714663922966837265e-06,3.780997207305530735e-06,3.847330491644224628e-06,3.913663775982918945e-06,3.979997060321613261e-06,4.046330344660307578e-06,4.112663628999001895e-06,4.178996913337696211e-06 +0.000000000000000000e+00,6.318577277435877861e-08,1.263715455487175572e-07,1.895573183230763358e-07,2.527430910974351144e-07,3.159288638717938930e-07,3.791146366461526716e-07,4.423004094205114502e-07,5.054861821948702289e-07,5.686719549692289545e-07,6.318577277435876802e-07,6.950435005179464059e-07,7.582292732923051315e-07,8.214150460666638572e-07,8.846008188410225829e-07,9.477865916153813085e-07,1.010972364389740034e-06,1.074158137164098760e-06,1.137343909938457486e-06,1.200529682712816211e-06,1.263715455487174937e-06,1.326901228261533663e-06,1.390087001035892388e-06,1.453272773810251114e-06,1.516458546584609840e-06,1.579644319358968565e-06,1.642830092133327291e-06,1.706015864907686017e-06,1.769201637682044742e-06,1.832387410456403468e-06,1.895573183230762194e-06,1.958758956005120707e-06,2.021944728779479221e-06,2.085130501553837735e-06,2.148316274328196249e-06,2.211502047102554763e-06,2.274687819876913277e-06,2.337873592651271791e-06,2.401059365425630305e-06,2.464245138199988819e-06,2.527430910974347333e-06,2.590616683748705847e-06,2.653802456523064360e-06,2.716988229297422874e-06,2.780174002071781388e-06,2.843359774846139902e-06,2.906545547620498416e-06,2.969731320394856930e-06,3.032917093169215444e-06,3.096102865943573958e-06,3.159288638717932472e-06,3.222474411492290986e-06,3.285660184266649500e-06,3.348845957041008013e-06,3.412031729815366527e-06,3.475217502589725041e-06,3.538403275364083555e-06,3.601589048138442069e-06,3.664774820912800583e-06,3.727960593687159097e-06,3.791146366461517611e-06,3.854332139235876125e-06,3.917517912010234639e-06,3.980703684784593153e-06 +0.000000000000000000e+00,6.303568964532013035e-08,1.260713792906402607e-07,1.891070689359603778e-07,2.521427585812804684e-07,3.151784482266005591e-07,3.782141378719206497e-07,4.412498275172407404e-07,5.042855171625608310e-07,5.673212068078808687e-07,6.303568964532009064e-07,6.933925860985209441e-07,7.564282757438409818e-07,8.194639653891610195e-07,8.824996550344810572e-07,9.455353446798010949e-07,1.008571034325121027e-06,1.071606723970440959e-06,1.134642413615760890e-06,1.197678103261080822e-06,1.260713792906400754e-06,1.323749482551720686e-06,1.386785172197040618e-06,1.449820861842360550e-06,1.512856551487680481e-06,1.575892241133000413e-06,1.638927930778320345e-06,1.701963620423640277e-06,1.764999310068960209e-06,1.828034999714280140e-06,1.891070689359600072e-06,1.954106379004920004e-06,2.017142068650239936e-06,2.080177758295559868e-06,2.143213447940879800e-06,2.206249137586199731e-06,2.269284827231519663e-06,2.332320516876839595e-06,2.395356206522159527e-06,2.458391896167479459e-06,2.521427585812799391e-06,2.584463275458119322e-06,2.647498965103439254e-06,2.710534654748759186e-06,2.773570344394079118e-06,2.836606034039399050e-06,2.899641723684718981e-06,2.962677413330038913e-06,3.025713102975358845e-06,3.088748792620678777e-06,3.151784482265998709e-06,3.214820171911318641e-06,3.277855861556638572e-06,3.340891551201958504e-06,3.403927240847278436e-06,3.466962930492598368e-06,3.529998620137918300e-06,3.593034309783238231e-06,3.656069999428558163e-06,3.719105689073878095e-06,3.782141378719198027e-06,3.845177068364517535e-06,3.908212758009837467e-06,3.971248447655157399e-06 +0.000000000000000000e+00,6.570947414532985844e-08,1.314189482906597169e-07,1.971284224359895753e-07,2.628378965813194337e-07,3.285473707266492922e-07,3.942568448719791506e-07,4.599663190173090091e-07,5.256757931626388675e-07,5.913852673079686730e-07,6.570947414532984785e-07,7.228042155986282840e-07,7.885136897439580895e-07,8.542231638892878950e-07,9.199326380346177005e-07,9.856421121799475060e-07,1.051351586325277311e-06,1.117061060470607117e-06,1.182770534615936922e-06,1.248480008761266728e-06,1.314189482906596533e-06,1.379898957051926339e-06,1.445608431197256144e-06,1.511317905342585950e-06,1.577027379487915755e-06,1.642736853633245561e-06,1.708446327778575366e-06,1.774155801923905172e-06,1.839865276069234977e-06,1.905574750214564783e-06,1.971284224359894588e-06,2.036993698505224606e-06,2.102703172650554623e-06,2.168412646795884640e-06,2.234122120941214657e-06,2.299831595086544675e-06,2.365541069231874692e-06,2.431250543377204709e-06,2.496960017522534726e-06,2.562669491667864744e-06,2.628378965813194761e-06,2.694088439958524778e-06,2.759797914103854795e-06,2.825507388249184813e-06,2.891216862394514830e-06,2.956926336539844847e-06,3.022635810685174865e-06,3.088345284830504882e-06,3.154054758975834899e-06,3.219764233121164916e-06,3.285473707266494934e-06,3.351183181411824951e-06,3.416892655557154968e-06,3.482602129702484985e-06,3.548311603847815003e-06,3.614021077993145020e-06,3.679730552138475037e-06,3.745440026283805054e-06,3.811149500429135072e-06,3.876858974574465089e-06,3.942568448719795106e-06,4.008277922865125123e-06,4.073987397010455141e-06,4.139696871155785158e-06 +0.000000000000000000e+00,6.707933754066418043e-08,1.341586750813283609e-07,2.012380126219925545e-07,2.683173501626567747e-07,3.353966877033209948e-07,4.024760252439852149e-07,4.695553627846494350e-07,5.366347003253136552e-07,6.037140378659779283e-07,6.707933754066422013e-07,7.378727129473064744e-07,8.049520504879707475e-07,8.720313880286350205e-07,9.391107255692992936e-07,1.006190063109963567e-06,1.073269400650627946e-06,1.140348738191292325e-06,1.207428075731956704e-06,1.274507413272621082e-06,1.341586750813285461e-06,1.408666088353949840e-06,1.475745425894614219e-06,1.542824763435278598e-06,1.609904100975942977e-06,1.676983438516607356e-06,1.744062776057271735e-06,1.811142113597936114e-06,1.878221451138600493e-06,1.945300788679265084e-06,2.012380126219929674e-06,2.079459463760594265e-06,2.146538801301258856e-06,2.213618138841923447e-06,2.280697476382588037e-06,2.347776813923252628e-06,2.414856151463917219e-06,2.481935489004581809e-06,2.549014826545246400e-06,2.616094164085910991e-06,2.683173501626575582e-06,2.750252839167240172e-06,2.817332176707904763e-06,2.884411514248569354e-06,2.951490851789233944e-06,3.018570189329898535e-06,3.085649526870563126e-06,3.152728864411227717e-06,3.219808201951892307e-06,3.286887539492556898e-06,3.353966877033221489e-06,3.421046214573886079e-06,3.488125552114550670e-06,3.555204889655215261e-06,3.622284227195879851e-06,3.689363564736544442e-06,3.756442902277209033e-06,3.823522239817873624e-06,3.890601577358538638e-06,3.957680914899203652e-06,4.024760252439868666e-06,4.091839589980533681e-06,4.158918927521198695e-06,4.225998265061863709e-06 +0.000000000000000000e+00,6.959831049996637044e-08,1.391966209999327409e-07,2.087949314998990981e-07,2.783932419998654288e-07,3.479915524998317596e-07,4.175898629997980903e-07,4.871881734997644210e-07,5.567864839997307518e-07,6.263847944996970825e-07,6.959831049996634132e-07,7.655814154996297440e-07,8.351797259995960747e-07,9.047780364995624054e-07,9.743763469995288421e-07,1.043974657499495279e-06,1.113572967999461715e-06,1.183171278499428152e-06,1.252769588999394589e-06,1.322367899499361025e-06,1.391966209999327462e-06,1.461564520499293898e-06,1.531162830999260335e-06,1.600761141499226772e-06,1.670359451999193208e-06,1.739957762499159645e-06,1.809556072999126081e-06,1.879154383499092518e-06,1.948752693999058955e-06,2.018351004499025391e-06,2.087949314998991828e-06,2.157547625498958264e-06,2.227145935998924701e-06,2.296744246498891138e-06,2.366342556998857574e-06,2.435940867498824011e-06,2.505539177998790448e-06,2.575137488498756884e-06,2.644735798998723321e-06,2.714334109498689757e-06,2.783932419998656194e-06,2.853530730498622631e-06,2.923129040998589067e-06,2.992727351498555504e-06,3.062325661998521940e-06,3.131923972498488377e-06,3.201522282998454814e-06,3.271120593498421250e-06,3.340718903998387687e-06,3.410317214498354124e-06,3.479915524998320560e-06,3.549513835498286997e-06,3.619112145998253433e-06,3.688710456498219870e-06,3.758308766998186307e-06,3.827907077498153167e-06,3.897505387998120450e-06,3.967103698498087734e-06,4.036702008998055018e-06,4.106300319498022301e-06,4.175898629997989585e-06,4.245496940497956869e-06,4.315095250997924152e-06,4.384693561497891436e-06 +0.000000000000000000e+00,6.543456033953663304e-08,1.308691206790732661e-07,1.963036810186098859e-07,2.617382413581464792e-07,3.271728016976830726e-07,3.926073620372196659e-07,4.580419223767562592e-07,5.234764827162928526e-07,5.889110430558294459e-07,6.543456033953660393e-07,7.197801637349026326e-07,7.852147240744392259e-07,8.506492844139758193e-07,9.160838447535124126e-07,9.815184050930491118e-07,1.046952965432585917e-06,1.112387525772122722e-06,1.177822086111659527e-06,1.243256646451196332e-06,1.308691206790733137e-06,1.374125767130269942e-06,1.439560327469806747e-06,1.504994887809343553e-06,1.570429448148880358e-06,1.635864008488417163e-06,1.701298568827953968e-06,1.766733129167490773e-06,1.832167689507027578e-06,1.897602249846564383e-06,1.963036810186101188e-06,2.028471370525637993e-06,2.093905930865174798e-06,2.159340491204711604e-06,2.224775051544248409e-06,2.290209611883785214e-06,2.355644172223322019e-06,2.421078732562858824e-06,2.486513292902395629e-06,2.551947853241932434e-06,2.617382413581469239e-06,2.682816973921006044e-06,2.748251534260542849e-06,2.813686094600079655e-06,2.879120654939616460e-06,2.944555215279153265e-06,3.009989775618690070e-06,3.075424335958226875e-06,3.140858896297763680e-06,3.206293456637300485e-06,3.271728016976837290e-06,3.337162577316374095e-06,3.402597137655910900e-06,3.468031697995447705e-06,3.533466258334984511e-06,3.598900818674521316e-06,3.664335379014058121e-06,3.729769939353594926e-06,3.795204499693131731e-06,3.860639060032668960e-06,3.926073620372206612e-06,3.991508180711744264e-06,4.056942741051281916e-06,4.122377301390819568e-06 +0.000000000000000000e+00,6.609095152406688157e-08,1.321819030481337631e-07,1.982728545722006315e-07,2.643638060962674733e-07,3.304547576203343152e-07,3.965457091444011571e-07,4.626366606684679989e-07,5.287276121925348408e-07,5.948185637166016297e-07,6.609095152406684186e-07,7.270004667647352075e-07,7.930914182888019965e-07,8.591823698128687854e-07,9.252733213369355743e-07,9.913642728610023632e-07,1.057455224385069046e-06,1.123546175909135729e-06,1.189637127433202412e-06,1.255728078957269095e-06,1.321819030481335778e-06,1.387909982005402462e-06,1.454000933529469145e-06,1.520091885053535828e-06,1.586182836577602511e-06,1.652273788101669194e-06,1.718364739625735877e-06,1.784455691149802560e-06,1.850546642673869243e-06,1.916637594197935714e-06,1.982728545722002185e-06,2.048819497246068657e-06,2.114910448770135128e-06,2.181001400294201599e-06,2.247092351818268071e-06,2.313183303342334542e-06,2.379274254866401013e-06,2.445365206390467484e-06,2.511456157914533956e-06,2.577547109438600427e-06,2.643638060962666898e-06,2.709729012486733370e-06,2.775819964010799841e-06,2.841910915534866312e-06,2.908001867058932783e-06,2.974092818582999255e-06,3.040183770107065726e-06,3.106274721631132197e-06,3.172365673155198669e-06,3.238456624679265140e-06,3.304547576203331611e-06,3.370638527727398082e-06,3.436729479251464554e-06,3.502820430775531025e-06,3.568911382299597496e-06,3.635002333823663968e-06,3.701093285347730439e-06,3.767184236871796910e-06,3.833275188395862958e-06,3.899366139919929006e-06,3.965457091443995053e-06,4.031548042968061101e-06,4.097638994492127149e-06,4.163729946016193197e-06 +0.000000000000000000e+00,6.904163420978408051e-08,1.380832684195681610e-07,2.071249026293522415e-07,2.761665368391363220e-07,3.452081710489203761e-07,4.142498052587044301e-07,4.832914394684884842e-07,5.523330736782725382e-07,6.213747078880565923e-07,6.904163420978406463e-07,7.594579763076247003e-07,8.284996105174087544e-07,8.975412447271928084e-07,9.665828789369769683e-07,1.035624513146761128e-06,1.104666147356545288e-06,1.173707781566329448e-06,1.242749415776113608e-06,1.311791049985897768e-06,1.380832684195681928e-06,1.449874318405466088e-06,1.518915952615250248e-06,1.587957586825034408e-06,1.656999221034818568e-06,1.726040855244602727e-06,1.795082489454386887e-06,1.864124123664171047e-06,1.933165757873955207e-06,2.002207392083739155e-06,2.071249026293523104e-06,2.140290660503307052e-06,2.209332294713091000e-06,2.278373928922874948e-06,2.347415563132658896e-06,2.416457197342442844e-06,2.485498831552226793e-06,2.554540465762010741e-06,2.623582099971794689e-06,2.692623734181578637e-06,2.761665368391362585e-06,2.830707002601146533e-06,2.899748636810930482e-06,2.968790271020714430e-06,3.037831905230498378e-06,3.106873539440282326e-06,3.175915173650066274e-06,3.244956807859850222e-06,3.313998442069634170e-06,3.383040076279418119e-06,3.452081710489202067e-06,3.521123344698986015e-06,3.590164978908769963e-06,3.659206613118553911e-06,3.728248247328337859e-06,3.797289881538121808e-06,3.866331515747906179e-06,3.935373149957690551e-06,4.004414784167474923e-06,4.073456418377259294e-06,4.142498052587043666e-06,4.211539686796828038e-06,4.280581321006612409e-06,4.349622955216396781e-06 +0.000000000000000000e+00,6.543456033953710950e-08,1.308691206790742190e-07,1.963036810186113153e-07,2.617382413581483851e-07,3.271728016976854548e-07,3.926073620372225246e-07,4.580419223767595944e-07,5.234764827162966642e-07,5.889110430558337870e-07,6.543456033953709097e-07,7.197801637349080324e-07,7.852147240744451552e-07,8.506492844139822779e-07,9.160838447535194006e-07,9.815184050930565234e-07,1.046952965432593540e-06,1.112387525772130557e-06,1.177822086111667574e-06,1.243256646451204591e-06,1.308691206790741608e-06,1.374125767130278624e-06,1.439560327469815641e-06,1.504994887809352658e-06,1.570429448148889675e-06,1.635864008488426692e-06,1.701298568827963709e-06,1.766733129167500726e-06,1.832167689507037742e-06,1.897602249846574759e-06,1.963036810186111776e-06,2.028471370525648581e-06,2.093905930865185386e-06,2.159340491204722191e-06,2.224775051544258997e-06,2.290209611883795802e-06,2.355644172223332607e-06,2.421078732562869412e-06,2.486513292902406217e-06,2.551947853241943022e-06,2.617382413581479827e-06,2.682816973921016632e-06,2.748251534260553437e-06,2.813686094600090242e-06,2.879120654939627048e-06,2.944555215279163853e-06,3.009989775618700658e-06,3.075424335958237463e-06,3.140858896297774268e-06,3.206293456637311073e-06,3.271728016976847878e-06,3.337162577316384683e-06,3.402597137655921488e-06,3.468031697995458293e-06,3.533466258334995098e-06,3.598900818674531904e-06,3.664335379014068709e-06,3.729769939353605514e-06,3.795204499693142319e-06,3.860639060032679124e-06,3.926073620372215929e-06,3.991508180711752734e-06,4.056942741051289539e-06,4.122377301390826344e-06 +0.000000000000000000e+00,6.609095152406788742e-08,1.321819030481357748e-07,1.982728545722036490e-07,2.643638060962714967e-07,3.304547576203393444e-07,3.965457091444071922e-07,4.626366606684750399e-07,5.287276121925428876e-07,5.948185637166107353e-07,6.609095152406785830e-07,7.270004667647464307e-07,7.930914182888142784e-07,8.591823698128821262e-07,9.252733213369499739e-07,9.913642728610178216e-07,1.057455224385085563e-06,1.123546175909153305e-06,1.189637127433221047e-06,1.255728078957288789e-06,1.321819030481356531e-06,1.387909982005424273e-06,1.454000933529492014e-06,1.520091885053559756e-06,1.586182836577627498e-06,1.652273788101695240e-06,1.718364739625762982e-06,1.784455691149830724e-06,1.850546642673898465e-06,1.916637594197966207e-06,1.982728545722033949e-06,2.048819497246101691e-06,2.114910448770169433e-06,2.181001400294237175e-06,2.247092351818304916e-06,2.313183303342372658e-06,2.379274254866440400e-06,2.445365206390508142e-06,2.511456157914575884e-06,2.577547109438643626e-06,2.643638060962711367e-06,2.709729012486779109e-06,2.775819964010846851e-06,2.841910915534914593e-06,2.908001867058982335e-06,2.974092818583050077e-06,3.040183770107117818e-06,3.106274721631185560e-06,3.172365673155253302e-06,3.238456624679321044e-06,3.304547576203388786e-06,3.370638527727456528e-06,3.436729479251524269e-06,3.502820430775592011e-06,3.568911382299659753e-06,3.635002333823727495e-06,3.701093285347795237e-06,3.767184236871862979e-06,3.833275188395930720e-06,3.899366139919998462e-06,3.965457091444066204e-06,4.031548042968133946e-06,4.097638994492201688e-06,4.163729946016269430e-06 +0.000000000000000000e+00,6.904163420978447756e-08,1.380832684195689551e-07,2.071249026293534327e-07,2.761665368391379102e-07,3.452081710489223878e-07,4.142498052587068653e-07,4.832914394684913429e-07,5.523330736782758205e-07,6.213747078880602980e-07,6.904163420978447756e-07,7.594579763076292531e-07,8.284996105174137307e-07,8.975412447271982083e-07,9.665828789369826858e-07,1.035624513146767269e-06,1.104666147356551853e-06,1.173707781566336436e-06,1.242749415776121020e-06,1.311791049985905603e-06,1.380832684195690186e-06,1.449874318405474770e-06,1.518915952615259353e-06,1.587957586825043937e-06,1.656999221034828520e-06,1.726040855244613104e-06,1.795082489454397687e-06,1.864124123664182270e-06,1.933165757873966642e-06,2.002207392083751014e-06,2.071249026293535386e-06,2.140290660503319757e-06,2.209332294713104129e-06,2.278373928922888501e-06,2.347415563132672872e-06,2.416457197342457244e-06,2.485498831552241616e-06,2.554540465762025987e-06,2.623582099971810359e-06,2.692623734181594731e-06,2.761665368391379102e-06,2.830707002601163474e-06,2.899748636810947846e-06,2.968790271020732217e-06,3.037831905230516589e-06,3.106873539440300961e-06,3.175915173650085332e-06,3.244956807859869704e-06,3.313998442069654076e-06,3.383040076279438447e-06,3.452081710489222819e-06,3.521123344699007191e-06,3.590164978908791562e-06,3.659206613118575934e-06,3.728248247328360306e-06,3.797289881538144678e-06,3.866331515747929049e-06,3.935373149957713421e-06,4.004414784167497793e-06,4.073456418377282164e-06,4.142498052587066536e-06,4.211539686796850908e-06,4.280581321006635279e-06,4.349622955216419651e-06 +0.000000000000000000e+00,6.355845001498641855e-08,1.271169000299728371e-07,1.906753500449592689e-07,2.542338000599457271e-07,3.177922500749321854e-07,3.813507000899186437e-07,4.449091501049051019e-07,5.084676001198915602e-07,5.720260501348779655e-07,6.355845001498643708e-07,6.991429501648507761e-07,7.627014001798371814e-07,8.262598501948235868e-07,8.898183002098099921e-07,9.533767502247963974e-07,1.016935200239782909e-06,1.080493650254769420e-06,1.144052100269755931e-06,1.207610550284742442e-06,1.271169000299728953e-06,1.334727450314715465e-06,1.398285900329701976e-06,1.461844350344688487e-06,1.525402800359674998e-06,1.588961250374661509e-06,1.652519700389648021e-06,1.716078150404634532e-06,1.779636600419621043e-06,1.843195050434607554e-06,1.906753500449594065e-06,1.970311950464580577e-06,2.033870400479567088e-06,2.097428850494553599e-06,2.160987300509540110e-06,2.224545750524526621e-06,2.288104200539513133e-06,2.351662650554499644e-06,2.415221100569486155e-06,2.478779550584472666e-06,2.542338000599459177e-06,2.605896450614445688e-06,2.669454900629432200e-06,2.733013350644418711e-06,2.796571800659405222e-06,2.860130250674391733e-06,2.923688700689378244e-06,2.987247150704364756e-06,3.050805600719351267e-06,3.114364050734337778e-06,3.177922500749324289e-06,3.241480950764310800e-06,3.305039400779297312e-06,3.368597850794283823e-06,3.432156300809270334e-06,3.495714750824256845e-06,3.559273200839243356e-06,3.622831650854229868e-06,3.686390100869216379e-06,3.749948550884202890e-06,3.813507000899189401e-06,3.877065450914175912e-06,3.940623900929162847e-06,4.004182350944149782e-06 +0.000000000000000000e+00,6.455782865693209837e-08,1.291156573138641967e-07,1.936734859707962951e-07,2.582313146277283935e-07,3.227891432846604654e-07,3.873469719415925373e-07,4.519048005985246092e-07,5.164626292554566811e-07,5.810204579123887530e-07,6.455782865693208249e-07,7.101361152262528968e-07,7.746939438831849687e-07,8.392517725401170406e-07,9.038096011970491125e-07,9.683674298539811844e-07,1.032925258510913150e-06,1.097483087167845116e-06,1.162040915824777082e-06,1.226598744481709049e-06,1.291156573138641015e-06,1.355714401795572981e-06,1.420272230452504947e-06,1.484830059109436913e-06,1.549387887766368879e-06,1.613945716423300845e-06,1.678503545080232811e-06,1.743061373737164777e-06,1.807619202394096743e-06,1.872177031051028709e-06,1.936734859707960675e-06,2.001292688364892853e-06,2.065850517021825030e-06,2.130408345678757208e-06,2.194966174335689386e-06,2.259524002992621564e-06,2.324081831649553741e-06,2.388639660306485919e-06,2.453197488963418097e-06,2.517755317620350275e-06,2.582313146277282453e-06,2.646870974934214630e-06,2.711428803591146808e-06,2.775986632248078986e-06,2.840544460905011164e-06,2.905102289561943341e-06,2.969660118218875519e-06,3.034217946875807697e-06,3.098775775532739875e-06,3.163333604189672053e-06,3.227891432846604230e-06,3.292449261503536408e-06,3.357007090160468586e-06,3.421564918817400764e-06,3.486122747474332942e-06,3.550680576131265119e-06,3.615238404788197297e-06,3.679796233445129475e-06,3.744354062102061653e-06,3.808911890758993830e-06,3.873469719415925585e-06,3.938027548072857339e-06,4.002585376729789093e-06,4.067143205386720847e-06 +0.000000000000000000e+00,6.766585879169905714e-08,1.353317175833981143e-07,2.029975763750971582e-07,2.706634351667961756e-07,3.383292939584951931e-07,4.059951527501942105e-07,4.736610115418932279e-07,5.413268703335922454e-07,6.089927291252912099e-07,6.766585879169901744e-07,7.443244467086891389e-07,8.119903055003881034e-07,8.796561642920870678e-07,9.473220230837860323e-07,1.014987881875484997e-06,1.082653740667183855e-06,1.150319599458882714e-06,1.217985458250581573e-06,1.285651317042280431e-06,1.353317175833979290e-06,1.420983034625678149e-06,1.488648893417377007e-06,1.556314752209075866e-06,1.623980611000774724e-06,1.691646469792473583e-06,1.759312328584172442e-06,1.826978187375871300e-06,1.894644046167570159e-06,1.962309904959269229e-06,2.029975763750968300e-06,2.097641622542667370e-06,2.165307481334366440e-06,2.232973340126065511e-06,2.300639198917764581e-06,2.368305057709463651e-06,2.435970916501162722e-06,2.503636775292861792e-06,2.571302634084560863e-06,2.638968492876259933e-06,2.706634351667959003e-06,2.774300210459658074e-06,2.841966069251357144e-06,2.909631928043056214e-06,2.977297786834755285e-06,3.044963645626454355e-06,3.112629504418153426e-06,3.180295363209852496e-06,3.247961222001551566e-06,3.315627080793250637e-06,3.383292939584949707e-06,3.450958798376648777e-06,3.518624657168347848e-06,3.586290515960046918e-06,3.653956374751745989e-06,3.721622233543445059e-06,3.789288092335144129e-06,3.856953951126843200e-06,3.924619809918541847e-06,3.992285668710240493e-06,4.059951527501939140e-06,4.127617386293637787e-06,4.195283245085336434e-06,4.262949103877035081e-06 +0.000000000000000000e+00,6.355845001498443332e-08,1.271169000299688666e-07,1.906753500449532867e-07,2.542338000599376803e-07,3.177922500749220739e-07,3.813507000899064676e-07,4.449091501048908612e-07,5.084676001198752548e-07,5.720260501348596484e-07,6.355845001498440420e-07,6.991429501648284356e-07,7.627014001798128292e-07,8.262598501947972229e-07,8.898183002097816165e-07,9.533767502247660101e-07,1.016935200239750298e-06,1.080493650254734691e-06,1.144052100269719085e-06,1.207610550284703479e-06,1.271169000299687872e-06,1.334727450314672266e-06,1.398285900329656660e-06,1.461844350344641053e-06,1.525402800359625447e-06,1.588961250374609840e-06,1.652519700389594234e-06,1.716078150404578628e-06,1.779636600419563021e-06,1.843195050434547415e-06,1.906753500449531808e-06,1.970311950464516202e-06,2.033870400479500596e-06,2.097428850494484989e-06,2.160987300509469383e-06,2.224545750524453776e-06,2.288104200539438170e-06,2.351662650554422564e-06,2.415221100569406957e-06,2.478779550584391351e-06,2.542338000599375745e-06,2.605896450614360138e-06,2.669454900629344532e-06,2.733013350644328925e-06,2.796571800659313319e-06,2.860130250674297713e-06,2.923688700689282106e-06,2.987247150704266500e-06,3.050805600719250893e-06,3.114364050734235287e-06,3.177922500749219681e-06,3.241480950764204074e-06,3.305039400779188468e-06,3.368597850794172862e-06,3.432156300809157255e-06,3.495714750824141649e-06,3.559273200839126042e-06,3.622831650854110436e-06,3.686390100869094830e-06,3.749948550884079223e-06,3.813507000899063617e-06,3.877065450914048010e-06,3.940623900929032404e-06,4.004182350944016798e-06 +0.000000000000000000e+00,6.455782865693125134e-08,1.291156573138625027e-07,1.936734859707937540e-07,2.582313146277250054e-07,3.227891432846562302e-07,3.873469719415874551e-07,4.519048005985186800e-07,5.164626292554499048e-07,5.810204579123811297e-07,6.455782865693123546e-07,7.101361152262435794e-07,7.746939438831748043e-07,8.392517725401060292e-07,9.038096011970372540e-07,9.683674298539684789e-07,1.032925258510899598e-06,1.097483087167830717e-06,1.162040915824761836e-06,1.226598744481692955e-06,1.291156573138624074e-06,1.355714401795555193e-06,1.420272230452486312e-06,1.484830059109417431e-06,1.549387887766348550e-06,1.613945716423279669e-06,1.678503545080210788e-06,1.743061373737141907e-06,1.807619202394073026e-06,1.872177031051004145e-06,1.936734859707935264e-06,2.001292688364866595e-06,2.065850517021797925e-06,2.130408345678729256e-06,2.194966174335660587e-06,2.259524002992591918e-06,2.324081831649523248e-06,2.388639660306454579e-06,2.453197488963385910e-06,2.517755317620317241e-06,2.582313146277248571e-06,2.646870974934179902e-06,2.711428803591111233e-06,2.775986632248042563e-06,2.840544460904973894e-06,2.905102289561905225e-06,2.969660118218836556e-06,3.034217946875767886e-06,3.098775775532699217e-06,3.163333604189630548e-06,3.227891432846561879e-06,3.292449261503493209e-06,3.357007090160424540e-06,3.421564918817355871e-06,3.486122747474287202e-06,3.550680576131218532e-06,3.615238404788149863e-06,3.679796233445081194e-06,3.744354062102012525e-06,3.808911890758943855e-06,3.873469719415874763e-06,3.938027548072805670e-06,4.002585376729736577e-06,4.067143205386667484e-06 +0.000000000000000000e+00,6.766585879169769395e-08,1.353317175833953879e-07,2.029975763750930818e-07,2.706634351667907758e-07,3.383292939584884697e-07,4.059951527501861637e-07,4.736610115418838576e-07,5.413268703335815516e-07,6.089927291252792455e-07,6.766585879169769395e-07,7.443244467086746334e-07,8.119903055003723274e-07,8.796561642920700213e-07,9.473220230837677153e-07,1.014987881875465303e-06,1.082653740667162891e-06,1.150319599458860479e-06,1.217985458250558068e-06,1.285651317042255656e-06,1.353317175833953244e-06,1.420983034625650832e-06,1.488648893417348420e-06,1.556314752209046008e-06,1.623980611000743596e-06,1.691646469792441184e-06,1.759312328584138772e-06,1.826978187375836360e-06,1.894644046167533948e-06,1.962309904959231536e-06,2.029975763750928913e-06,2.097641622542626289e-06,2.165307481334323665e-06,2.232973340126021042e-06,2.300639198917718418e-06,2.368305057709415794e-06,2.435970916501113170e-06,2.503636775292810547e-06,2.571302634084507923e-06,2.638968492876205299e-06,2.706634351667902676e-06,2.774300210459600052e-06,2.841966069251297428e-06,2.909631928042994805e-06,2.977297786834692181e-06,3.044963645626389557e-06,3.112629504418086934e-06,3.180295363209784310e-06,3.247961222001481686e-06,3.315627080793179062e-06,3.383292939584876439e-06,3.450958798376573815e-06,3.518624657168271191e-06,3.586290515959968568e-06,3.653956374751665944e-06,3.721622233543363320e-06,3.789288092335060697e-06,3.856953951126757649e-06,3.924619809918454602e-06,3.992285668710151555e-06,4.059951527501848508e-06,4.127617386293545461e-06,4.195283245085242413e-06,4.262949103876939366e-06 +0.000000000000000000e+00,6.141016479853404230e-08,1.228203295970680846e-07,1.842304943956021269e-07,2.456406591941361692e-07,3.070508239926702115e-07,3.684609887912042538e-07,4.298711535897382961e-07,4.912813183882723384e-07,5.526914831868063807e-07,6.141016479853404230e-07,6.755118127838744653e-07,7.369219775824085076e-07,7.983321423809425499e-07,8.597423071794765923e-07,9.211524719780106346e-07,9.825626367765446769e-07,1.043972801575078613e-06,1.105382966373612550e-06,1.166793131172146486e-06,1.228203295970680423e-06,1.289613460769214359e-06,1.351023625567748295e-06,1.412433790366282232e-06,1.473843955164816168e-06,1.535254119963350105e-06,1.596664284761884041e-06,1.658074449560417978e-06,1.719484614358951914e-06,1.780894779157485850e-06,1.842304943956019787e-06,1.903715108754553723e-06,1.965125273553087660e-06,2.026535438351621596e-06,2.087945603150155532e-06,2.149355767948689469e-06,2.210765932747223405e-06,2.272176097545757342e-06,2.333586262344291278e-06,2.394996427142825215e-06,2.456406591941359151e-06,2.517816756739893087e-06,2.579226921538427024e-06,2.640637086336960960e-06,2.702047251135494897e-06,2.763457415934028833e-06,2.824867580732562770e-06,2.886277745531096706e-06,2.947687910329630642e-06,3.009098075128164579e-06,3.070508239926698515e-06,3.131918404725232452e-06,3.193328569523766388e-06,3.254738734322300325e-06,3.316148899120834261e-06,3.377559063919368197e-06,3.438969228717902134e-06,3.500379393516436070e-06,3.561789558314970007e-06,3.623199723113503943e-06,3.684609887912037880e-06,3.746020052710571816e-06,3.807430217509105752e-06,3.868840382307640112e-06 +0.000000000000000000e+00,6.249667144855706188e-08,1.249933428971141238e-07,1.874900143456711724e-07,2.499866857942281946e-07,3.124833572427852168e-07,3.749800286913422390e-07,4.374767001398992611e-07,4.999733715884562833e-07,5.624700430370133055e-07,6.249667144855703277e-07,6.874633859341273498e-07,7.499600573826843720e-07,8.124567288312413942e-07,8.749534002797984164e-07,9.374500717283554386e-07,9.999467431769123549e-07,1.062443414625469377e-06,1.124940086074026399e-06,1.187436757522583421e-06,1.249933428971140444e-06,1.312430100419697466e-06,1.374926771868254488e-06,1.437423443316811510e-06,1.499920114765368532e-06,1.562416786213925554e-06,1.624913457662482577e-06,1.687410129111039599e-06,1.749906800559596621e-06,1.812403472008153643e-06,1.874900143456710665e-06,1.937396814905267688e-06,1.999893486353824710e-06,2.062390157802381732e-06,2.124886829250938754e-06,2.187383500699495776e-06,2.249880172148052798e-06,2.312376843596609821e-06,2.374873515045166843e-06,2.437370186493723865e-06,2.499866857942280887e-06,2.562363529390837909e-06,2.624860200839394932e-06,2.687356872287951954e-06,2.749853543736508976e-06,2.812350215185065998e-06,2.874846886633623020e-06,2.937343558082180042e-06,2.999840229530737065e-06,3.062336900979294087e-06,3.124833572427851109e-06,3.187330243876408131e-06,3.249826915324965153e-06,3.312323586773522175e-06,3.374820258222079198e-06,3.437316929670636220e-06,3.499813601119193242e-06,3.562310272567750264e-06,3.624806944016307286e-06,3.687303615464864309e-06,3.749800286913421331e-06,3.812296958361978353e-06,3.874793629810535375e-06,3.937290301259091974e-06 +0.000000000000000000e+00,6.606059624657996178e-08,1.321211924931599236e-07,1.981817887397398854e-07,2.642423849863198471e-07,3.303029812328998089e-07,3.963635774794797707e-07,4.624241737260597325e-07,5.284847699726396943e-07,5.945453662192196561e-07,6.606059624657996178e-07,7.266665587123795796e-07,7.927271549589595414e-07,8.587877512055395032e-07,9.248483474521194650e-07,9.909089436986993209e-07,1.056969539945279177e-06,1.123030136191859033e-06,1.189090732438438889e-06,1.255151328685018744e-06,1.321211924931598600e-06,1.387272521178178456e-06,1.453333117424758312e-06,1.519393713671338168e-06,1.585454309917918024e-06,1.651514906164497880e-06,1.717575502411077736e-06,1.783636098657657592e-06,1.849696694904237448e-06,1.915757291150817304e-06,1.981817887397396948e-06,2.047878483643976592e-06,2.113939079890556236e-06,2.179999676137135880e-06,2.246060272383715524e-06,2.312120868630295168e-06,2.378181464876874813e-06,2.444242061123454457e-06,2.510302657370034101e-06,2.576363253616613745e-06,2.642423849863193389e-06,2.708484446109773033e-06,2.774545042356352677e-06,2.840605638602932322e-06,2.906666234849511966e-06,2.972726831096091610e-06,3.038787427342671254e-06,3.104848023589250898e-06,3.170908619835830542e-06,3.236969216082410186e-06,3.303029812328989831e-06,3.369090408575569475e-06,3.435151004822149119e-06,3.501211601068728763e-06,3.567272197315308407e-06,3.633332793561888051e-06,3.699393389808467695e-06,3.765453986055047340e-06,3.831514582301626984e-06,3.897575178548206628e-06,3.963635774794786272e-06,4.029696371041365916e-06,4.095756967287945560e-06,4.161817563534525205e-06 +0.000000000000000000e+00,6.141016479853064094e-08,1.228203295970612819e-07,1.842304943955919096e-07,2.456406591941225108e-07,3.070508239926531120e-07,3.684609887911837133e-07,4.298711535897143145e-07,4.912813183882449157e-07,5.526914831867755699e-07,6.141016479853062241e-07,6.755118127838368783e-07,7.369219775823675324e-07,7.983321423808981866e-07,8.597423071794288408e-07,9.211524719779594949e-07,9.825626367764900432e-07,1.043972801575020592e-06,1.105382966373551140e-06,1.166793131172081688e-06,1.228203295970612236e-06,1.289613460769142785e-06,1.351023625567673333e-06,1.412433790366203881e-06,1.473843955164734430e-06,1.535254119963264978e-06,1.596664284761795526e-06,1.658074449560326074e-06,1.719484614358856623e-06,1.780894779157387171e-06,1.842304943955917719e-06,1.903715108754448268e-06,1.965125273552978816e-06,2.026535438351509364e-06,2.087945603150039913e-06,2.149355767948570461e-06,2.210765932747101009e-06,2.272176097545631557e-06,2.333586262344162106e-06,2.394996427142692654e-06,2.456406591941223202e-06,2.517816756739753751e-06,2.579226921538284299e-06,2.640637086336814847e-06,2.702047251135345395e-06,2.763457415933875944e-06,2.824867580732406492e-06,2.886277745530937040e-06,2.947687910329467589e-06,3.009098075127998137e-06,3.070508239926528685e-06,3.131918404725059233e-06,3.193328569523589782e-06,3.254738734322120330e-06,3.316148899120650878e-06,3.377559063919181427e-06,3.438969228717711975e-06,3.500379393516242523e-06,3.561789558314773072e-06,3.623199723113303620e-06,3.684609887911834168e-06,3.746020052710364716e-06,3.807430217508895265e-06,3.868840382307425813e-06 +0.000000000000000000e+00,6.249667144855446785e-08,1.249933428971089357e-07,1.874900143456633903e-07,2.499866857942178184e-07,3.124833572427722466e-07,3.749800286913266747e-07,4.374767001398811029e-07,4.999733715884355310e-07,5.624700430369899062e-07,6.249667144855442814e-07,6.874633859340986566e-07,7.499600573826530318e-07,8.124567288312074070e-07,8.749534002797617822e-07,9.374500717283161574e-07,9.999467431768704267e-07,1.062443414625424696e-06,1.124940086073978965e-06,1.187436757522533235e-06,1.249933428971087504e-06,1.312430100419641773e-06,1.374926771868196043e-06,1.437423443316750312e-06,1.499920114765304581e-06,1.562416786213858851e-06,1.624913457662413120e-06,1.687410129110967389e-06,1.749906800559521659e-06,1.812403472008075928e-06,1.874900143456630197e-06,1.937396814905184255e-06,1.999893486353738312e-06,2.062390157802292370e-06,2.124886829250846427e-06,2.187383500699400485e-06,2.249880172147954543e-06,2.312376843596508600e-06,2.374873515045062658e-06,2.437370186493616715e-06,2.499866857942170773e-06,2.562363529390724830e-06,2.624860200839278888e-06,2.687356872287832946e-06,2.749853543736387003e-06,2.812350215184941061e-06,2.874846886633495118e-06,2.937343558082049176e-06,2.999840229530603233e-06,3.062336900979157291e-06,3.124833572427711349e-06,3.187330243876265406e-06,3.249826915324819464e-06,3.312323586773373521e-06,3.374820258221927579e-06,3.437316929670481636e-06,3.499813601119035694e-06,3.562310272567589751e-06,3.624806944016143809e-06,3.687303615464697867e-06,3.749800286913251924e-06,3.812296958361805982e-06,3.874793629810360039e-06,3.937290301258914097e-06 +0.000000000000000000e+00,6.606059624657727510e-08,1.321211924931545502e-07,1.981817887397318385e-07,2.642423849863091533e-07,3.303029812328864681e-07,3.963635774794637830e-07,4.624241737260410978e-07,5.284847699726184126e-07,5.945453662191957274e-07,6.606059624657730422e-07,7.266665587123503570e-07,7.927271549589276718e-07,8.587877512055049866e-07,9.248483474520823014e-07,9.909089436986595103e-07,1.056969539945236613e-06,1.123030136191813716e-06,1.189090732438390819e-06,1.255151328684967923e-06,1.321211924931545026e-06,1.387272521178122129e-06,1.453333117424699232e-06,1.519393713671276335e-06,1.585454309917853438e-06,1.651514906164430541e-06,1.717575502411007644e-06,1.783636098657584747e-06,1.849696694904161850e-06,1.915757291150738953e-06,1.981817887397316056e-06,2.047878483643893159e-06,2.113939079890470262e-06,2.179999676137047365e-06,2.246060272383624468e-06,2.312120868630201571e-06,2.378181464876778674e-06,2.444242061123355777e-06,2.510302657369932880e-06,2.576363253616509983e-06,2.642423849863087087e-06,2.708484446109664190e-06,2.774545042356241293e-06,2.840605638602818396e-06,2.906666234849395499e-06,2.972726831095972602e-06,3.038787427342549705e-06,3.104848023589126808e-06,3.170908619835703911e-06,3.236969216082281014e-06,3.303029812328858117e-06,3.369090408575435220e-06,3.435151004822012323e-06,3.501211601068589426e-06,3.567272197315166529e-06,3.633332793561743632e-06,3.699393389808320735e-06,3.765453986054897838e-06,3.831514582301475365e-06,3.897575178548053315e-06,3.963635774794631265e-06,4.029696371041209215e-06,4.095756967287787165e-06,4.161817563534365115e-06 +0.000000000000000000e+00,5.926660600987562733e-08,1.185332120197512547e-07,1.777998180296268754e-07,2.370664240395024829e-07,2.963330300493780903e-07,3.555996360592536978e-07,4.148662420691293053e-07,4.741328480790049128e-07,5.333994540888805203e-07,5.926660600987561807e-07,6.519326661086318411e-07,7.111992721185075015e-07,7.704658781283831619e-07,8.297324841382588224e-07,8.889990901481344828e-07,9.482656961580101432e-07,1.007532302167885909e-06,1.066798908177761676e-06,1.126065514187637442e-06,1.185332120197513208e-06,1.244598726207388975e-06,1.303865332217264741e-06,1.363131938227140507e-06,1.422398544237016274e-06,1.481665150246892040e-06,1.540931756256767806e-06,1.600198362266643572e-06,1.659464968276519339e-06,1.718731574286395105e-06,1.777998180296270871e-06,1.837264786306146638e-06,1.896531392316022404e-06,1.955797998325898170e-06,2.015064604335773937e-06,2.074331210345649703e-06,2.133597816355525469e-06,2.192864422365401235e-06,2.252131028375277002e-06,2.311397634385152768e-06,2.370664240395028534e-06,2.429930846404904301e-06,2.489197452414780067e-06,2.548464058424655833e-06,2.607730664434531600e-06,2.666997270444407366e-06,2.726263876454283132e-06,2.785530482464158898e-06,2.844797088474034665e-06,2.904063694483910431e-06,2.963330300493786197e-06,3.022596906503661964e-06,3.081863512513537730e-06,3.141130118523413496e-06,3.200396724533289263e-06,3.259663330543165029e-06,3.318929936553040795e-06,3.378196542562916561e-06,3.437463148572792328e-06,3.496729754582668094e-06,3.555996360592543860e-06,3.615262966602419627e-06,3.674529572612295393e-06,3.733796178622171159e-06 +0.000000000000000000e+00,6.032579662217151589e-08,1.206515932443430318e-07,1.809773898665145477e-07,2.413031864886860636e-07,3.016289831108575530e-07,3.619547797330290424e-07,4.222805763552005318e-07,4.826063729773720213e-07,5.429321695995435107e-07,6.032579662217150001e-07,6.635837628438864895e-07,7.239095594660579789e-07,7.842353560882294684e-07,8.445611527104009578e-07,9.048869493325724472e-07,9.652127459547438308e-07,1.025538542576915214e-06,1.085864339199086598e-06,1.146190135821257981e-06,1.206515932443429365e-06,1.266841729065600748e-06,1.327167525687772132e-06,1.387493322309943516e-06,1.447819118932114899e-06,1.508144915554286283e-06,1.568470712176457666e-06,1.628796508798629050e-06,1.689122305420800433e-06,1.749448102042971817e-06,1.809773898665143200e-06,1.870099695287314584e-06,1.930425491909485967e-06,1.990751288531657139e-06,2.051077085153828311e-06,2.111402881775999483e-06,2.171728678398170655e-06,2.232054475020341826e-06,2.292380271642512998e-06,2.352706068264684170e-06,2.413031864886855342e-06,2.473357661509026514e-06,2.533683458131197685e-06,2.594009254753368857e-06,2.654335051375540029e-06,2.714660847997711201e-06,2.774986644619882372e-06,2.835312441242053544e-06,2.895638237864224716e-06,2.955964034486395888e-06,3.016289831108567060e-06,3.076615627730738231e-06,3.136941424352909403e-06,3.197267220975080575e-06,3.257593017597251747e-06,3.317918814219422919e-06,3.378244610841594090e-06,3.438570407463765262e-06,3.498896204085936434e-06,3.559222000708107606e-06,3.619547797330278777e-06,3.679873593952449949e-06,3.740199390574621121e-06,3.800525187196792293e-06 +0.000000000000000000e+00,6.445486749865799498e-08,1.289097349973159900e-07,1.933646024959739982e-07,2.578194699946320329e-07,3.222743374932900676e-07,3.867292049919481022e-07,4.511840724906061369e-07,5.156389399892641716e-07,5.800938074879221534e-07,6.445486749865801351e-07,7.090035424852381168e-07,7.734584099838960986e-07,8.379132774825540803e-07,9.023681449812120621e-07,9.668230124798700438e-07,1.031277879978528131e-06,1.095732747477186219e-06,1.160187614975844307e-06,1.224642482474502394e-06,1.289097349973160482e-06,1.353552217471818570e-06,1.418007084970476657e-06,1.482461952469134745e-06,1.546916819967792832e-06,1.611371687466450920e-06,1.675826554965109008e-06,1.740281422463767095e-06,1.804736289962425183e-06,1.869191157461083271e-06,1.933646024959741358e-06,1.998100892458399658e-06,2.062555759957057957e-06,2.127010627455716256e-06,2.191465494954374556e-06,2.255920362453032855e-06,2.320375229951691155e-06,2.384830097450349454e-06,2.449284964949007753e-06,2.513739832447666053e-06,2.578194699946324352e-06,2.642649567444982651e-06,2.707104434943640951e-06,2.771559302442299250e-06,2.836014169940957550e-06,2.900469037439615849e-06,2.964923904938274148e-06,3.029378772436932448e-06,3.093833639935590747e-06,3.158288507434249047e-06,3.222743374932907346e-06,3.287198242431565645e-06,3.351653109930223945e-06,3.416107977428882244e-06,3.480562844927540543e-06,3.545017712426198843e-06,3.609472579924857142e-06,3.673927447423515442e-06,3.738382314922173741e-06,3.802837182420832040e-06,3.867292049919490340e-06,3.931746917418148639e-06,3.996201784916806938e-06,4.060656652415465238e-06 +0.000000000000000000e+00,5.926660600987016132e-08,1.185332120197403226e-07,1.777998180296104906e-07,2.370664240394806718e-07,2.963330300493508794e-07,3.555996360592210870e-07,4.148662420690912947e-07,4.741328480789615023e-07,5.333994540888317100e-07,5.926660600987019706e-07,6.519326661085722312e-07,7.111992721184424917e-07,7.704658781283127523e-07,8.297324841381830129e-07,8.889990901480532735e-07,9.482656961579235341e-07,1.007532302167793795e-06,1.066798908177664055e-06,1.126065514187534316e-06,1.185332120197404576e-06,1.244598726207274837e-06,1.303865332217145098e-06,1.363131938227015358e-06,1.422398544236885619e-06,1.481665150246755879e-06,1.540931756256626140e-06,1.600198362266496400e-06,1.659464968276366661e-06,1.718731574286236922e-06,1.777998180296107182e-06,1.837264786305977443e-06,1.896531392315847703e-06,1.955797998325717752e-06,2.015064604335588013e-06,2.074331210345458273e-06,2.133597816355328534e-06,2.192864422365198795e-06,2.252131028375069055e-06,2.311397634384939316e-06,2.370664240394809576e-06,2.429930846404679837e-06,2.489197452414550098e-06,2.548464058424420358e-06,2.607730664434290619e-06,2.666997270444160879e-06,2.726263876454031140e-06,2.785530482463901400e-06,2.844797088473771661e-06,2.904063694483641922e-06,2.963330300493512182e-06,3.022596906503382443e-06,3.081863512513252703e-06,3.141130118523122964e-06,3.200396724532993225e-06,3.259663330542863485e-06,3.318929936552733746e-06,3.378196542562604006e-06,3.437463148572474267e-06,3.496729754582344527e-06,3.555996360592214788e-06,3.615262966602085049e-06,3.674529572611955309e-06,3.733796178621825570e-06 +0.000000000000000000e+00,6.032579662216714838e-08,1.206515932443342968e-07,1.809773898665014451e-07,2.413031864886685935e-07,3.016289831108357419e-07,3.619547797330028903e-07,4.222805763551700387e-07,4.826063729773371870e-07,5.429321695995043354e-07,6.032579662216714838e-07,6.635837628438386322e-07,7.239095594660057805e-07,7.842353560881729289e-07,8.445611527103400773e-07,9.048869493325072257e-07,9.652127459546743741e-07,1.025538542576841522e-06,1.085864339199008671e-06,1.146190135821175819e-06,1.206515932443342968e-06,1.266841729065510116e-06,1.327167525687677264e-06,1.387493322309844413e-06,1.447819118932011561e-06,1.508144915554178709e-06,1.568470712176345858e-06,1.628796508798513006e-06,1.689122305420680155e-06,1.749448102042847303e-06,1.809773898665014451e-06,1.870099695287181600e-06,1.930425491909348748e-06,1.990751288531515685e-06,2.051077085153682621e-06,2.111402881775849558e-06,2.171728678398016495e-06,2.232054475020183431e-06,2.292380271642350368e-06,2.352706068264517304e-06,2.413031864886684241e-06,2.473357661508851178e-06,2.533683458131018114e-06,2.594009254753185051e-06,2.654335051375351988e-06,2.714660847997518924e-06,2.774986644619685861e-06,2.835312441241852797e-06,2.895638237864019734e-06,2.955964034486186671e-06,3.016289831108353607e-06,3.076615627730520544e-06,3.136941424352687481e-06,3.197267220974854417e-06,3.257593017597021354e-06,3.317918814219188290e-06,3.378244610841355227e-06,3.438570407463522164e-06,3.498896204085689100e-06,3.559222000707856037e-06,3.619547797330022973e-06,3.679873593952189910e-06,3.740199390574356847e-06,3.800525187196523783e-06 +0.000000000000000000e+00,6.445486749865378629e-08,1.289097349973075726e-07,1.933646024959613456e-07,2.578194699946150922e-07,3.222743374932688388e-07,3.867292049919225854e-07,4.511840724905763319e-07,5.156389399892300785e-07,5.800938074878838251e-07,6.445486749865375717e-07,7.090035424851913183e-07,7.734584099838450649e-07,8.379132774824988114e-07,9.023681449811525580e-07,9.668230124798063046e-07,1.031277879978459945e-06,1.095732747477113586e-06,1.160187614975767227e-06,1.224642482474420867e-06,1.289097349973074508e-06,1.353552217471728149e-06,1.418007084970381790e-06,1.482461952469035430e-06,1.546916819967689071e-06,1.611371687466342712e-06,1.675826554964996352e-06,1.740281422463649993e-06,1.804736289962303634e-06,1.869191157460957274e-06,1.933646024959610915e-06,1.998100892458264556e-06,2.062555759956918197e-06,2.127010627455571837e-06,2.191465494954225478e-06,2.255920362452879119e-06,2.320375229951532759e-06,2.384830097450186400e-06,2.449284964948840041e-06,2.513739832447493681e-06,2.578194699946147322e-06,2.642649567444800963e-06,2.707104434943454604e-06,2.771559302442108244e-06,2.836014169940761885e-06,2.900469037439415526e-06,2.964923904938069166e-06,3.029378772436722807e-06,3.093833639935376448e-06,3.158288507434030088e-06,3.222743374932683729e-06,3.287198242431337370e-06,3.351653109929991011e-06,3.416107977428644651e-06,3.480562844927298292e-06,3.545017712425951933e-06,3.609472579924605573e-06,3.673927447423259214e-06,3.738382314921912855e-06,3.802837182420566496e-06,3.867292049919220136e-06,3.931746917417874200e-06,3.996201784916528265e-06,4.060656652415182329e-06 +0.000000000000000000e+00,5.729171603117423689e-08,1.145834320623484738e-07,1.718751480935227107e-07,2.291668641246969475e-07,2.864585801558711844e-07,3.437502961870454213e-07,4.010420122182196582e-07,4.583337282493938951e-07,5.156254442805681849e-07,5.729171603117424747e-07,6.302088763429167646e-07,6.875005923740910544e-07,7.447923084052653442e-07,8.020840244364396340e-07,8.593757404676139239e-07,9.166674564987882137e-07,9.739591725299625035e-07,1.031250888561136793e-06,1.088542604592311083e-06,1.145834320623485373e-06,1.203126036654659663e-06,1.260417752685833953e-06,1.317709468717008242e-06,1.375001184748182532e-06,1.432292900779356822e-06,1.489584616810531112e-06,1.546876332841705402e-06,1.604168048872879692e-06,1.661459764904053981e-06,1.718751480935228271e-06,1.776043196966402561e-06,1.833334912997576851e-06,1.890626629028751141e-06,1.947918345059925431e-06,2.005210061091099932e-06,2.062501777122274434e-06,2.119793493153448935e-06,2.177085209184623437e-06,2.234376925215797938e-06,2.291668641246972440e-06,2.348960357278146942e-06,2.406252073309321443e-06,2.463543789340495945e-06,2.520835505371670446e-06,2.578127221402844948e-06,2.635418937434019450e-06,2.692710653465193951e-06,2.750002369496368453e-06,2.807294085527542954e-06,2.864585801558717456e-06,2.921877517589891957e-06,2.979169233621066459e-06,3.036460949652240961e-06,3.093752665683415462e-06,3.151044381714589964e-06,3.208336097745764465e-06,3.265627813776938967e-06,3.322919529808113469e-06,3.380211245839287970e-06,3.437502961870462472e-06,3.494794677901636973e-06,3.552086393932811475e-06,3.609378109963985976e-06 +0.000000000000000000e+00,5.824829713344320360e-08,1.164965942668864072e-07,1.747448914003296042e-07,2.329931885337727879e-07,2.912414856672159982e-07,3.494897828006592084e-07,4.077380799341024186e-07,4.659863770675456288e-07,5.242346742009888390e-07,5.824829713344319963e-07,6.407312684678751536e-07,6.989795656013183109e-07,7.572278627347614682e-07,8.154761598682046254e-07,8.737244570016477827e-07,9.319727541350909400e-07,9.902210512685340973e-07,1.048469348401977255e-06,1.106717645535420412e-06,1.164965942668863569e-06,1.223214239802306726e-06,1.281462536935749884e-06,1.339710834069193041e-06,1.397959131202636198e-06,1.456207428336079356e-06,1.514455725469522513e-06,1.572704022602965670e-06,1.630952319736408827e-06,1.689200616869851985e-06,1.747448914003295142e-06,1.805697211136738299e-06,1.863945508270181456e-06,1.922193805403624614e-06,1.980442102537067771e-06,2.038690399670510928e-06,2.096938696803954086e-06,2.155186993937397243e-06,2.213435291070840400e-06,2.271683588204283557e-06,2.329931885337726715e-06,2.388180182471169872e-06,2.446428479604613029e-06,2.504676776738056187e-06,2.562925073871499344e-06,2.621173371004942501e-06,2.679421668138385658e-06,2.737669965271828816e-06,2.795918262405271973e-06,2.854166559538715130e-06,2.912414856672158288e-06,2.970663153805601445e-06,3.028911450939044602e-06,3.087159748072487759e-06,3.145408045205930917e-06,3.203656342339374074e-06,3.261904639472817231e-06,3.320152936606260388e-06,3.378401233739703546e-06,3.436649530873146703e-06,3.494897828006589860e-06,3.553146125140033018e-06,3.611394422273476175e-06,3.669642719406919332e-06 +0.000000000000000000e+00,6.300302027979501168e-08,1.260060405595900234e-07,1.890090608393850350e-07,2.520120811191800467e-07,3.150151013989750584e-07,3.780181216787700701e-07,4.410211419585650817e-07,5.040241622383600934e-07,5.670271825181551051e-07,6.300302027979501168e-07,6.930332230777451284e-07,7.560362433575401401e-07,8.190392636373351518e-07,8.820422839171301635e-07,9.450453041969251751e-07,1.008048324476720187e-06,1.071051344756515093e-06,1.134054365036309998e-06,1.197057385316104904e-06,1.260060405595899810e-06,1.323063425875694716e-06,1.386066446155489622e-06,1.449069466435284527e-06,1.512072486715079433e-06,1.575075506994874339e-06,1.638078527274669245e-06,1.701081547554464151e-06,1.764084567834259056e-06,1.827087588114053962e-06,1.890090608393848868e-06,1.953093628673643774e-06,2.016096648953438680e-06,2.079099669233233585e-06,2.142102689513028491e-06,2.205105709792823397e-06,2.268108730072618303e-06,2.331111750352413209e-06,2.394114770632208114e-06,2.457117790912003020e-06,2.520120811191797926e-06,2.583123831471592832e-06,2.646126851751387737e-06,2.709129872031182643e-06,2.772132892310977549e-06,2.835135912590772455e-06,2.898138932870567361e-06,2.961141953150362266e-06,3.024144973430157172e-06,3.087147993709952078e-06,3.150151013989746984e-06,3.213154034269541890e-06,3.276157054549336795e-06,3.339160074829131701e-06,3.402163095108926607e-06,3.465166115388721513e-06,3.528169135668516419e-06,3.591172155948311324e-06,3.654175176228106230e-06,3.717178196507901136e-06,3.780181216787696042e-06,3.843184237067490948e-06,3.906187257347285853e-06,3.969190277627080759e-06 +0.000000000000000000e+00,5.729171603116749371e-08,1.145834320623349874e-07,1.718751480935024877e-07,2.291668641246700013e-07,2.864585801558375149e-07,3.437502961870050284e-07,4.010420122181725420e-07,4.583337282493400556e-07,5.156254442805076221e-07,5.729171603116751356e-07,6.302088763428426492e-07,6.875005923740101627e-07,7.447923084051776763e-07,8.020840244363451899e-07,8.593757404675127034e-07,9.166674564986802170e-07,9.739591725298477305e-07,1.031250888561015244e-06,1.088542604592182758e-06,1.145834320623350271e-06,1.203126036654517785e-06,1.260417752685685298e-06,1.317709468716852812e-06,1.375001184748020325e-06,1.432292900779187839e-06,1.489584616810355353e-06,1.546876332841522866e-06,1.604168048872690380e-06,1.661459764903857893e-06,1.718751480935025407e-06,1.776043196966192920e-06,1.833334912997360434e-06,1.890626629028527948e-06,1.947918345059695461e-06,2.005210061090862763e-06,2.062501777122030065e-06,2.119793493153197366e-06,2.177085209184364668e-06,2.234376925215531970e-06,2.291668641246699272e-06,2.348960357277866574e-06,2.406252073309033876e-06,2.463543789340201177e-06,2.520835505371368479e-06,2.578127221402535781e-06,2.635418937433703083e-06,2.692710653464870385e-06,2.750002369496037686e-06,2.807294085527204988e-06,2.864585801558372290e-06,2.921877517589539592e-06,2.979169233620706894e-06,3.036460949651874195e-06,3.093752665683041497e-06,3.151044381714208799e-06,3.208336097745376101e-06,3.265627813776543403e-06,3.322919529807710704e-06,3.380211245838878006e-06,3.437502961870045308e-06,3.494794677901212610e-06,3.552086393932379912e-06,3.609378109963547213e-06 +0.000000000000000000e+00,5.824829713343728761e-08,1.164965942668745752e-07,1.747448914003118694e-07,2.329931885337491769e-07,2.912414856671864579e-07,3.494897828006237389e-07,4.077380799340610199e-07,4.659863770674983009e-07,5.242346742009355818e-07,5.824829713343729158e-07,6.407312684678102497e-07,6.989795656012475836e-07,7.572278627346849176e-07,8.154761598681222515e-07,8.737244570015595854e-07,9.319727541349969193e-07,9.902210512684341474e-07,1.048469348401871375e-06,1.106717645535308603e-06,1.164965942668745832e-06,1.223214239802183060e-06,1.281462536935620288e-06,1.339710834069057516e-06,1.397959131202494744e-06,1.456207428335931972e-06,1.514455725469369200e-06,1.572704022602806428e-06,1.630952319736243656e-06,1.689200616869680884e-06,1.747448914003118112e-06,1.805697211136555340e-06,1.863945508269992568e-06,1.922193805403429796e-06,1.980442102536867024e-06,2.038690399670304252e-06,2.096938696803741480e-06,2.155186993937178708e-06,2.213435291070615936e-06,2.271683588204053164e-06,2.329931885337490393e-06,2.388180182470927621e-06,2.446428479604364849e-06,2.504676776737802077e-06,2.562925073871239305e-06,2.621173371004676533e-06,2.679421668138113761e-06,2.737669965271550989e-06,2.795918262404988217e-06,2.854166559538425445e-06,2.912414856671862673e-06,2.970663153805299901e-06,3.028911450938737129e-06,3.087159748072174357e-06,3.145408045205611585e-06,3.203656342339048813e-06,3.261904639472486041e-06,3.320152936605923269e-06,3.378401233739360497e-06,3.436649530872797725e-06,3.494897828006234954e-06,3.553146125139672182e-06,3.611394422273109410e-06,3.669642719406546638e-06 +0.000000000000000000e+00,6.300302027978962507e-08,1.260060405595792501e-07,1.890090608393688885e-07,2.520120811191585532e-07,3.150151013989482180e-07,3.780181216787378828e-07,4.410211419585275476e-07,5.040241622383172124e-07,5.670271825181069301e-07,6.300302027978966478e-07,6.930332230776863655e-07,7.560362433574760832e-07,8.190392636372658010e-07,8.820422839170555187e-07,9.450453041968452364e-07,1.008048324476635060e-06,1.071051344756424884e-06,1.134054365036214707e-06,1.197057385316004531e-06,1.260060405595794354e-06,1.323063425875584178e-06,1.386066446155374002e-06,1.449069466435163825e-06,1.512072486714953649e-06,1.575075506994743472e-06,1.638078527274533296e-06,1.701081547554323120e-06,1.764084567834112943e-06,1.827087588113902767e-06,1.890090608393692590e-06,1.953093628673482414e-06,2.016096648953272238e-06,2.079099669233062061e-06,2.142102689512851885e-06,2.205105709792641708e-06,2.268108730072431532e-06,2.331111750352221356e-06,2.394114770632011179e-06,2.457117790911801003e-06,2.520120811191590826e-06,2.583123831471380650e-06,2.646126851751170474e-06,2.709129872030960297e-06,2.772132892310750121e-06,2.835135912590539944e-06,2.898138932870329768e-06,2.961141953150119592e-06,3.024144973429909415e-06,3.087147993709699239e-06,3.150151013989489062e-06,3.213154034269278886e-06,3.276157054549068710e-06,3.339160074828858533e-06,3.402163095108648357e-06,3.465166115388438180e-06,3.528169135668228004e-06,3.591172155948017828e-06,3.654175176227807651e-06,3.717178196507597475e-06,3.780181216787387298e-06,3.843184237067176698e-06,3.906187257346965675e-06,3.969190277626754652e-06 +0.000000000000000000e+00,5.560373754117155859e-08,1.112074750823431172e-07,1.668112126235146625e-07,2.224149501646862079e-07,2.780186877058577532e-07,3.336224252470293251e-07,3.892261627882008969e-07,4.448299003293724687e-07,5.004336378705440935e-07,5.560373754117157182e-07,6.116411129528873430e-07,6.672448504940589677e-07,7.228485880352305925e-07,7.784523255764022173e-07,8.340560631175738420e-07,8.896598006587454668e-07,9.452635381999170916e-07,1.000867275741088610e-06,1.056471013282260129e-06,1.112074750823431648e-06,1.167678488364603167e-06,1.223282225905774686e-06,1.278885963446946205e-06,1.334489700988117724e-06,1.390093438529289243e-06,1.445697176070460761e-06,1.501300913611632280e-06,1.556904651152803799e-06,1.612508388693975318e-06,1.668112126235146837e-06,1.723715863776318356e-06,1.779319601317489875e-06,1.834923338858661394e-06,1.890527076399832913e-06,1.946130813941004220e-06,2.001734551482175527e-06,2.057338289023346834e-06,2.112942026564518141e-06,2.168545764105689448e-06,2.224149501646860755e-06,2.279753239188032062e-06,2.335356976729203370e-06,2.390960714270374677e-06,2.446564451811545984e-06,2.502168189352717291e-06,2.557771926893888598e-06,2.613375664435059905e-06,2.668979401976231212e-06,2.724583139517402519e-06,2.780186877058573827e-06,2.835790614599745134e-06,2.891394352140916441e-06,2.946998089682087748e-06,3.002601827223259055e-06,3.058205564764430362e-06,3.113809302305601669e-06,3.169413039846772976e-06,3.225016777387944284e-06,3.280620514929115591e-06,3.336224252470286898e-06,3.391827990011458205e-06,3.447431727552629512e-06,3.503035465093800819e-06 +0.000000000000000000e+00,5.640384906319446289e-08,1.128076981263889258e-07,1.692115471895833820e-07,2.256153962527778251e-07,2.820192453159722416e-07,3.384230943791666582e-07,3.948269434423610748e-07,4.512307925055554913e-07,5.076346415687499079e-07,5.640384906319442715e-07,6.204423396951386351e-07,6.768461887583329988e-07,7.332500378215273624e-07,7.896538868847217260e-07,8.460577359479160896e-07,9.024615850111104533e-07,9.588654340743047110e-07,1.015269283137498969e-06,1.071673132200693226e-06,1.128076981263887484e-06,1.184480830327081742e-06,1.240884679390276000e-06,1.297288528453470257e-06,1.353692377516664515e-06,1.410096226579858773e-06,1.466500075643053031e-06,1.522903924706247288e-06,1.579307773769441546e-06,1.635711622832635804e-06,1.692115471895830062e-06,1.748519320959024319e-06,1.804923170022218577e-06,1.861327019085412835e-06,1.917730868148606881e-06,1.974134717211800927e-06,2.030538566274994973e-06,2.086942415338189019e-06,2.143346264401383065e-06,2.199750113464577111e-06,2.256153962527771157e-06,2.312557811590965203e-06,2.368961660654159249e-06,2.425365509717353295e-06,2.481769358780547341e-06,2.538173207843741387e-06,2.594577056906935433e-06,2.650980905970129479e-06,2.707384755033323525e-06,2.763788604096517571e-06,2.820192453159711617e-06,2.876596302222905663e-06,2.933000151286099709e-06,2.989404000349293755e-06,3.045807849412487801e-06,3.102211698475681847e-06,3.158615547538875893e-06,3.215019396602069939e-06,3.271423245665263985e-06,3.327827094728458031e-06,3.384230943791652077e-06,3.440634792854846123e-06,3.497038641918040169e-06,3.553442490981234215e-06 +0.000000000000000000e+00,6.185952244869933146e-08,1.237190448973986629e-07,1.855785673460979944e-07,2.474380897947973258e-07,3.092976122434966308e-07,3.711571346921959358e-07,4.330166571408952408e-07,4.948761795895945458e-07,5.567357020382938508e-07,6.185952244869931558e-07,6.804547469356924608e-07,7.423142693843917658e-07,8.041737918330910707e-07,8.660333142817903757e-07,9.278928367304896807e-07,9.897523591791888798e-07,1.051611881627888185e-06,1.113471404076587490e-06,1.175330926525286795e-06,1.237190448973986100e-06,1.299049971422685405e-06,1.360909493871384710e-06,1.422769016320084015e-06,1.484628538768783320e-06,1.546488061217482625e-06,1.608347583666181930e-06,1.670207106114881235e-06,1.732066628563580540e-06,1.793926151012279845e-06,1.855785673460979150e-06,1.917645195909678455e-06,1.979504718358377760e-06,2.041364240807077065e-06,2.103223763255776370e-06,2.165083285704475675e-06,2.226942808153174980e-06,2.288802330601874285e-06,2.350661853050573590e-06,2.412521375499272895e-06,2.474380897947972200e-06,2.536240420396671505e-06,2.598099942845370810e-06,2.659959465294070115e-06,2.721818987742769420e-06,2.783678510191468725e-06,2.845538032640168030e-06,2.907397555088867335e-06,2.969257077537566640e-06,3.031116599986265945e-06,3.092976122434965249e-06,3.154835644883664554e-06,3.216695167332363859e-06,3.278554689781063164e-06,3.340414212229762469e-06,3.402273734678461774e-06,3.464133257127161079e-06,3.525992779575860384e-06,3.587852302024559689e-06,3.649711824473258994e-06,3.711571346921958299e-06,3.773430869370657604e-06,3.835290391819356909e-06,3.897149914268056214e-06 +0.000000000000000000e+00,5.560373754116322722e-08,1.112074750823264544e-07,1.668112126234896751e-07,2.224149501646528824e-07,2.780186877058160898e-07,3.336224252469792972e-07,3.892261627881425045e-07,4.448299003293057119e-07,5.004336378704689193e-07,5.560373754116321796e-07,6.116411129527954399e-07,6.672448504939587002e-07,7.228485880351219605e-07,7.784523255762852208e-07,8.340560631174484812e-07,8.896598006586117415e-07,9.452635381997750018e-07,1.000867275740938262e-06,1.056471013282101522e-06,1.112074750823264783e-06,1.167678488364428043e-06,1.223282225905591303e-06,1.278885963446754564e-06,1.334489700987917824e-06,1.390093438529081084e-06,1.445697176070244345e-06,1.501300913611407605e-06,1.556904651152570865e-06,1.612508388693734126e-06,1.668112126234897386e-06,1.723715863776060646e-06,1.779319601317223906e-06,1.834923338858387167e-06,1.890527076399550427e-06,1.946130813940713687e-06,2.001734551481876948e-06,2.057338289023040208e-06,2.112942026564203468e-06,2.168545764105366729e-06,2.224149501646529989e-06,2.279753239187693249e-06,2.335356976728856510e-06,2.390960714270019770e-06,2.446564451811183030e-06,2.502168189352346290e-06,2.557771926893509551e-06,2.613375664434672811e-06,2.668979401975836071e-06,2.724583139516999332e-06,2.780186877058162592e-06,2.835790614599325852e-06,2.891394352140489113e-06,2.946998089681652373e-06,3.002601827222815633e-06,3.058205564763978894e-06,3.113809302305142154e-06,3.169413039846305414e-06,3.225016777387468675e-06,3.280620514928631935e-06,3.336224252469795195e-06,3.391827990010958455e-06,3.447431727552121716e-06,3.503035465093284976e-06 +0.000000000000000000e+00,5.640384906318708443e-08,1.128076981263741689e-07,1.692115471895612533e-07,2.256153962527483377e-07,2.820192453159353957e-07,3.384230943791224537e-07,3.948269434423095116e-07,4.512307925054965696e-07,5.076346415686836276e-07,5.640384906318706855e-07,6.204423396950577435e-07,6.768461887582448015e-07,7.332500378214318594e-07,7.896538868846189174e-07,8.460577359478059753e-07,9.024615850109930333e-07,9.588654340741801972e-07,1.015269283137367467e-06,1.071673132200554737e-06,1.128076981263742006e-06,1.184480830326929276e-06,1.240884679390116546e-06,1.297288528453303815e-06,1.353692377516491085e-06,1.410096226579678355e-06,1.466500075642865625e-06,1.522903924706052894e-06,1.579307773769240164e-06,1.635711622832427434e-06,1.692115471895614704e-06,1.748519320958801973e-06,1.804923170021989243e-06,1.861327019085176513e-06,1.917730868148363782e-06,1.974134717211551052e-06,2.030538566274738322e-06,2.086942415337925592e-06,2.143346264401112861e-06,2.199750113464300131e-06,2.256153962527487401e-06,2.312557811590674671e-06,2.368961660653861940e-06,2.425365509717049210e-06,2.481769358780236480e-06,2.538173207843423749e-06,2.594577056906611019e-06,2.650980905969798289e-06,2.707384755032985559e-06,2.763788604096172828e-06,2.820192453159360098e-06,2.876596302222547368e-06,2.933000151285734637e-06,2.989404000348921907e-06,3.045807849412109177e-06,3.102211698475296447e-06,3.158615547538483716e-06,3.215019396601670986e-06,3.271423245664858256e-06,3.327827094728045526e-06,3.384230943791232795e-06,3.440634792854420065e-06,3.497038641917607335e-06,3.553442490980794604e-06 +0.000000000000000000e+00,6.185952244869284636e-08,1.237190448973856927e-07,1.855785673460785391e-07,2.474380897947713855e-07,3.092976122434642318e-07,3.711571346921570782e-07,4.330166571408499245e-07,4.948761795895427709e-07,5.567357020382356173e-07,6.185952244869284636e-07,6.804547469356213100e-07,7.423142693843141564e-07,8.041737918330070027e-07,8.660333142816998491e-07,9.278928367303926955e-07,9.897523591790855418e-07,1.051611881627778494e-06,1.113471404076471446e-06,1.175330926525164399e-06,1.237190448973857351e-06,1.299049971422550303e-06,1.360909493871243255e-06,1.422769016319936208e-06,1.484628538768629160e-06,1.546488061217322112e-06,1.608347583666015064e-06,1.670207106114708016e-06,1.732066628563400969e-06,1.793926151012093921e-06,1.855785673460786873e-06,1.917645195909479825e-06,1.979504718358172778e-06,2.041364240806865730e-06,2.103223763255558682e-06,2.165083285704251634e-06,2.226942808152944587e-06,2.288802330601637539e-06,2.350661853050330491e-06,2.412521375499023443e-06,2.474380897947716396e-06,2.536240420396409348e-06,2.598099942845102300e-06,2.659959465293795252e-06,2.721818987742488205e-06,2.783678510191181157e-06,2.845538032639874109e-06,2.907397555088567061e-06,2.969257077537260014e-06,3.031116599985952966e-06,3.092976122434645918e-06,3.154835644883338870e-06,3.216695167332031823e-06,3.278554689780724775e-06,3.340414212229417727e-06,3.402273734678110679e-06,3.464133257126803632e-06,3.525992779575496584e-06,3.587852302024189536e-06,3.649711824472882488e-06,3.711571346921575441e-06,3.773430869370268393e-06,3.835290391818961345e-06,3.897149914267653874e-06 +0.000000000000000000e+00,5.426591553641922269e-08,1.085318310728384454e-07,1.627977466092576747e-07,2.170636621456769172e-07,2.713295776820961333e-07,3.255954932185153494e-07,3.798614087549345655e-07,4.341273242913537815e-07,4.883932398277729976e-07,5.426591553641922666e-07,5.969250709006115356e-07,6.511909864370308046e-07,7.054569019734500737e-07,7.597228175098693427e-07,8.139887330462886117e-07,8.682546485827078807e-07,9.225205641191271497e-07,9.767864796555464187e-07,1.031052395191965582e-06,1.085318310728384745e-06,1.139584226264803908e-06,1.193850141801223071e-06,1.248116057337642234e-06,1.302381972874061398e-06,1.356647888410480561e-06,1.410913803946899724e-06,1.465179719483318887e-06,1.519445635019738050e-06,1.573711550556157213e-06,1.627977466092576376e-06,1.682243381628995539e-06,1.736509297165414703e-06,1.790775212701833866e-06,1.845041128238253029e-06,1.899307043774672192e-06,1.953572959311091567e-06,2.007838874847510942e-06,2.062104790383930317e-06,2.116370705920349692e-06,2.170636621456769066e-06,2.224902536993188441e-06,2.279168452529607816e-06,2.333434368066027191e-06,2.387700283602446566e-06,2.441966199138865941e-06,2.496232114675285316e-06,2.550498030211704691e-06,2.604763945748124066e-06,2.659029861284543440e-06,2.713295776820962815e-06,2.767561692357382190e-06,2.821827607893801565e-06,2.876093523430220940e-06,2.930359438966640315e-06,2.984625354503059690e-06,3.038891270039479065e-06,3.093157185575898440e-06,3.147423101112317815e-06,3.201689016648737189e-06,3.255954932185156564e-06,3.310220847721575939e-06,3.364486763257995314e-06,3.418752678794414689e-06 +0.000000000000000000e+00,5.426931798827648487e-08,1.085386359765529697e-07,1.628079539648294480e-07,2.170772719531059130e-07,2.713465899413823780e-07,3.256159079296588431e-07,3.798852259179353081e-07,4.341545439062117731e-07,4.884238618944882911e-07,5.426931798827648620e-07,5.969624978710414329e-07,6.512318158593180038e-07,7.055011338475945747e-07,7.597704518358711456e-07,8.140397698241477165e-07,8.683090878124242874e-07,9.225784058007008583e-07,9.768477237889774292e-07,1.031117041777254000e-06,1.085386359765530571e-06,1.139655677753807142e-06,1.193924995742083713e-06,1.248194313730360284e-06,1.302463631718636855e-06,1.356732949706913425e-06,1.411002267695189996e-06,1.465271585683466567e-06,1.519540903671743138e-06,1.573810221660019709e-06,1.628079539648296280e-06,1.682348857636572851e-06,1.736618175624849422e-06,1.790887493613125993e-06,1.845156811601402564e-06,1.899426129589679134e-06,1.953695447577955705e-06,2.007964765566232276e-06,2.062234083554508847e-06,2.116503401542785418e-06,2.170772719531061989e-06,2.225042037519338560e-06,2.279311355507615131e-06,2.333580673495891702e-06,2.387849991484168273e-06,2.442119309472444843e-06,2.496388627460721414e-06,2.550657945448997985e-06,2.604927263437274556e-06,2.659196581425551127e-06,2.713465899413827698e-06,2.767735217402104269e-06,2.822004535390380840e-06,2.876273853378657411e-06,2.930543171366933982e-06,2.984812489355210552e-06,3.039081807343487123e-06,3.093351125331763694e-06,3.147620443320040265e-06,3.201889761308316836e-06,3.256159079296593407e-06,3.310428397284869978e-06,3.364697715273146549e-06,3.418967033261423120e-06 +0.000000000000000000e+00,5.489086727684347980e-08,1.097817345536869596e-07,1.646726018305304328e-07,2.195634691073738927e-07,2.744543363842173527e-07,3.293452036610608126e-07,3.842360709379042725e-07,4.391269382147477325e-07,4.940178054915911924e-07,5.489086727684347053e-07,6.037995400452782182e-07,6.586904073221217311e-07,7.135812745989652440e-07,7.684721418758087568e-07,8.233630091526522697e-07,8.782538764294957826e-07,9.331447437063392955e-07,9.880356109831828084e-07,1.042926478260026321e-06,1.097817345536869834e-06,1.152708212813713347e-06,1.207599080090556860e-06,1.262489947367400373e-06,1.317380814644243886e-06,1.372271681921087399e-06,1.427162549197930911e-06,1.482053416474774424e-06,1.536944283751617937e-06,1.591835151028461450e-06,1.646726018305304963e-06,1.701616885582148476e-06,1.756507752858991989e-06,1.811398620135835502e-06,1.866289487412679015e-06,1.921180354689522527e-06,1.976071221966366040e-06,2.030962089243209553e-06,2.085852956520053066e-06,2.140743823796896579e-06,2.195634691073740092e-06,2.250525558350583605e-06,2.305416425627427118e-06,2.360307292904270630e-06,2.415198160181114143e-06,2.470089027457957656e-06,2.524979894734801169e-06,2.579870762011644682e-06,2.634761629288488195e-06,2.689652496565331708e-06,2.744543363842175221e-06,2.799434231119018734e-06,2.854325098395862246e-06,2.909215965672705759e-06,2.964106832949549272e-06,3.018997700226392785e-06,3.073888567503236298e-06,3.128779434780079811e-06,3.183670302056923324e-06,3.238561169333766837e-06,3.293452036610610349e-06,3.348342903887453862e-06,3.403233771164297375e-06,3.458124638441140888e-06 +0.000000000000000000e+00,6.119220174419581285e-08,1.223844034883916257e-07,1.835766052325874385e-07,2.447688069767832514e-07,3.059610087209790642e-07,3.671532104651748771e-07,4.283454122093706899e-07,4.895376139535665028e-07,5.507298156977623686e-07,6.119220174419582344e-07,6.731142191861541001e-07,7.343064209303499659e-07,7.954986226745458317e-07,8.566908244187416975e-07,9.178830261629375633e-07,9.790752279071334291e-07,1.040267429651329295e-06,1.101459631395525161e-06,1.162651833139721026e-06,1.223844034883916892e-06,1.285036236628112758e-06,1.346228438372308624e-06,1.407420640116504490e-06,1.468612841860700355e-06,1.529805043604896221e-06,1.590997245349092087e-06,1.652189447093287953e-06,1.713381648837483819e-06,1.774573850581679684e-06,1.835766052325875550e-06,1.896958254070071416e-06,1.958150455814267282e-06,2.019342657558463147e-06,2.080534859302659013e-06,2.141727061046854879e-06,2.202919262791050745e-06,2.264111464535246611e-06,2.325303666279442476e-06,2.386495868023638342e-06,2.447688069767834208e-06,2.508880271512030074e-06,2.570072473256225940e-06,2.631264675000421805e-06,2.692456876744617671e-06,2.753649078488813537e-06,2.814841280233009403e-06,2.876033481977205268e-06,2.937225683721401134e-06,2.998417885465597000e-06,3.059610087209792866e-06,3.120802288953988732e-06,3.181994490698184597e-06,3.243186692442380463e-06,3.304378894186576329e-06,3.365571095930772195e-06,3.426763297674968061e-06,3.487955499419163926e-06,3.549147701163359792e-06,3.610339902907555658e-06,3.671532104651751524e-06,3.732724306395947390e-06,3.793916508140143255e-06,3.855108709884338698e-06 +0.000000000000000000e+00,5.426882007058329847e-08,1.085376401411665969e-07,1.628064602117499086e-07,2.170752802823332203e-07,2.713441003529165320e-07,3.256129204234998173e-07,3.798817404940831025e-07,4.341505605646663877e-07,4.884193806352496730e-07,5.426882007058329582e-07,5.969570207764162434e-07,6.512258408469995287e-07,7.054946609175828139e-07,7.597634809881660991e-07,8.140323010587493844e-07,8.683011211293326696e-07,9.225699411999159548e-07,9.768387612704991342e-07,1.031107581341082419e-06,1.085376401411665705e-06,1.139645221482248990e-06,1.193914041552832275e-06,1.248182861623415560e-06,1.302451681693998846e-06,1.356720501764582131e-06,1.410989321835165416e-06,1.465258141905748701e-06,1.519526961976331987e-06,1.573795782046915272e-06,1.628064602117498557e-06,1.682333422188081842e-06,1.736602242258665127e-06,1.790871062329248413e-06,1.845139882399831698e-06,1.899408702470414983e-06,1.953677522540998268e-06,2.007946342611581554e-06,2.062215162682164839e-06,2.116483982752748124e-06,2.170752802823331409e-06,2.225021622893914695e-06,2.279290442964497980e-06,2.333559263035081265e-06,2.387828083105664550e-06,2.442096903176247835e-06,2.496365723246831121e-06,2.550634543317414406e-06,2.604903363387997691e-06,2.659172183458580976e-06,2.713441003529164262e-06,2.767709823599747547e-06,2.821978643670330832e-06,2.876247463740914117e-06,2.930516283811497403e-06,2.984785103882080688e-06,3.039053923952663973e-06,3.093322744023247258e-06,3.147591564093830544e-06,3.201860384164413829e-06,3.256129204234997114e-06,3.310398024305580399e-06,3.364666844376163684e-06,3.418935664446746970e-06 +0.000000000000000000e+00,6.119888347873587830e-08,1.223977669574717566e-07,1.835966504362076217e-07,2.447955339149434602e-07,3.059944173936792988e-07,3.671933008724151374e-07,4.283921843511509760e-07,4.895910678298868146e-07,5.507899513086226532e-07,6.119888347873584918e-07,6.731877182660943304e-07,7.343866017448301690e-07,7.955854852235660076e-07,8.567843687023018462e-07,9.179832521810376848e-07,9.791821356597734175e-07,1.040381019138509044e-06,1.101579902617244671e-06,1.162778786095980298e-06,1.223977669574715925e-06,1.285176553053451552e-06,1.346375436532187178e-06,1.407574320010922805e-06,1.468773203489658432e-06,1.529972086968394059e-06,1.591170970447129686e-06,1.652369853925865313e-06,1.713568737404600939e-06,1.774767620883336566e-06,1.835966504362072193e-06,1.897165387840807820e-06,1.958364271319543447e-06,2.019563154798279074e-06,2.080762038277014700e-06,2.141960921755750327e-06,2.203159805234485954e-06,2.264358688713221581e-06,2.325557572191957208e-06,2.386756455670692835e-06,2.447955339149428461e-06,2.509154222628164088e-06,2.570353106106899715e-06,2.631551989585635342e-06,2.692750873064370969e-06,2.753949756543106596e-06,2.815148640021842222e-06,2.876347523500577849e-06,2.937546406979313476e-06,2.998745290458049103e-06,3.059944173936784730e-06,3.121143057415520357e-06,3.182341940894255983e-06,3.243540824372991610e-06,3.304739707851727237e-06,3.365938591330462864e-06,3.427137474809198491e-06,3.488336358287934118e-06,3.549535241766669744e-06,3.610734125245405371e-06,3.671933008724140998e-06,3.733131892202876625e-06,3.794330775681612252e-06,3.855529659160348302e-06 +0.000000000000000000e+00,5.426591553641051413e-08,1.085318310728210283e-07,1.627977466092315490e-07,2.170636621456420830e-07,2.713295776820526170e-07,3.255954932184631510e-07,3.798614087548736850e-07,4.341273242912842189e-07,4.883932398276947529e-07,5.426591553641052340e-07,5.969250709005157150e-07,6.511909864369261961e-07,7.054569019733366771e-07,7.597228175097471582e-07,8.139887330461576392e-07,8.682546485825681203e-07,9.225205641189786013e-07,9.767864796553890824e-07,1.031052395191799563e-06,1.085318310728210044e-06,1.139584226264620525e-06,1.193850141801031007e-06,1.248116057337441488e-06,1.302381972873851969e-06,1.356647888410262450e-06,1.410913803946672931e-06,1.465179719483083412e-06,1.519445635019493893e-06,1.573711550555904374e-06,1.627977466092314855e-06,1.682243381628725336e-06,1.736509297165135817e-06,1.790775212701546298e-06,1.845041128237956779e-06,1.899307043774367260e-06,1.953572959310777741e-06,2.007838874847188222e-06,2.062104790383598703e-06,2.116370705920009184e-06,2.170636621456419665e-06,2.224902536992830146e-06,2.279168452529240627e-06,2.333434368065651109e-06,2.387700283602061590e-06,2.441966199138472071e-06,2.496232114674882552e-06,2.550498030211293033e-06,2.604763945747703514e-06,2.659029861284113995e-06,2.713295776820524476e-06,2.767561692356934957e-06,2.821827607893345438e-06,2.876093523429755919e-06,2.930359438966166400e-06,2.984625354502576881e-06,3.038891270038987362e-06,3.093157185575397843e-06,3.147423101111808324e-06,3.201689016648218805e-06,3.255954932184629286e-06,3.310220847721039767e-06,3.364486763257450248e-06,3.418752678793860729e-06 +0.000000000000000000e+00,5.426882007057905669e-08,1.085376401411581134e-07,1.628064602117371767e-07,2.170752802823162532e-07,2.713441003528953562e-07,3.256129204234744592e-07,3.798817404940535622e-07,4.341505605646326652e-07,4.884193806352117682e-07,5.426882007057909242e-07,5.969570207763700801e-07,6.512258408469492361e-07,7.054946609175283920e-07,7.597634809881075480e-07,8.140323010586867039e-07,8.683011211292658599e-07,9.225699411998450158e-07,9.768387612704241718e-07,1.031107581341003222e-06,1.085376401411582272e-06,1.139645221482161322e-06,1.193914041552740372e-06,1.248182861623319422e-06,1.302451681693898472e-06,1.356720501764477522e-06,1.410989321835056572e-06,1.465258141905635622e-06,1.519526961976214672e-06,1.573795782046793723e-06,1.628064602117372773e-06,1.682333422187951823e-06,1.736602242258530873e-06,1.790871062329109923e-06,1.845139882399688973e-06,1.899408702470268023e-06,1.953677522540847073e-06,2.007946342611426123e-06,2.062215162682005173e-06,2.116483982752584223e-06,2.170752802823163273e-06,2.225021622893742323e-06,2.279290442964321373e-06,2.333559263034900423e-06,2.387828083105479474e-06,2.442096903176058524e-06,2.496365723246637574e-06,2.550634543317216624e-06,2.604903363387795674e-06,2.659172183458374724e-06,2.713441003528953774e-06,2.767709823599532824e-06,2.821978643670111874e-06,2.876247463740690924e-06,2.930516283811269974e-06,2.984785103881849024e-06,3.039053923952428074e-06,3.093322744023007124e-06,3.147591564093586174e-06,3.201860384164165225e-06,3.256129204234744275e-06,3.310398024305323325e-06,3.364666844375902375e-06,3.418935664446481425e-06 +0.000000000000000000e+00,5.489086727683487712e-08,1.097817345536697542e-07,1.646726018305046247e-07,2.195634691073394820e-07,2.744543363841743657e-07,3.293452036610092495e-07,3.842360709378441332e-07,4.391269382146790169e-07,4.940178054915139007e-07,5.489086727683487315e-07,6.037995400451835623e-07,6.586904073220183931e-07,7.135812745988532239e-07,7.684721418756880546e-07,8.233630091525228854e-07,8.782538764293577162e-07,9.331447437061925470e-07,9.880356109830273778e-07,1.042926478259862209e-06,1.097817345536697039e-06,1.152708212813531870e-06,1.207599080090366701e-06,1.262489947367201532e-06,1.317380814644036363e-06,1.372271681920871193e-06,1.427162549197706024e-06,1.482053416474540855e-06,1.536944283751375686e-06,1.591835151028210517e-06,1.646726018305045347e-06,1.701616885581880178e-06,1.756507752858715009e-06,1.811398620135549840e-06,1.866289487412384671e-06,1.921180354689219713e-06,1.976071221966054756e-06,2.030962089242889798e-06,2.085852956519724841e-06,2.140743823796559883e-06,2.195634691073394926e-06,2.250525558350229968e-06,2.305416425627065011e-06,2.360307292903900054e-06,2.415198160180735096e-06,2.470089027457570139e-06,2.524979894734405181e-06,2.579870762011240224e-06,2.634761629288075266e-06,2.689652496564910309e-06,2.744543363841745351e-06,2.799434231118580394e-06,2.854325098395415437e-06,2.909215965672250479e-06,2.964106832949085522e-06,3.018997700225920564e-06,3.073888567502755607e-06,3.128779434779590649e-06,3.183670302056425692e-06,3.238561169333260734e-06,3.293452036610095777e-06,3.348342903886930819e-06,3.403233771163765862e-06,3.458124638440600905e-06 +0.000000000000000000e+00,6.119220174418850719e-08,1.223844034883770144e-07,1.835766052325655216e-07,2.447688069767540288e-07,3.059610087209425359e-07,3.671532104651310431e-07,4.283454122093195503e-07,4.895376139535080575e-07,5.507298156976965118e-07,6.119220174418849660e-07,6.731142191860734203e-07,7.343064209302618745e-07,7.954986226744503288e-07,8.566908244186387830e-07,9.178830261628272373e-07,9.790752279070156915e-07,1.040267429651204146e-06,1.101459631395392600e-06,1.162651833139581054e-06,1.223844034883769508e-06,1.285036236627957963e-06,1.346228438372146417e-06,1.407420640116334871e-06,1.468612841860523325e-06,1.529805043604711780e-06,1.590997245348900234e-06,1.652189447093088688e-06,1.713381648837277142e-06,1.774573850581465597e-06,1.835766052325654051e-06,1.896958254069842505e-06,1.958150455814030959e-06,2.019342657558219625e-06,2.080534859302408292e-06,2.141727061046596958e-06,2.202919262790785624e-06,2.264111464534974290e-06,2.325303666279162956e-06,2.386495868023351622e-06,2.447688069767540288e-06,2.508880271511728954e-06,2.570072473255917620e-06,2.631264675000106286e-06,2.692456876744294952e-06,2.753649078488483618e-06,2.814841280232672284e-06,2.876033481976860950e-06,2.937225683721049616e-06,2.998417885465238282e-06,3.059610087209426948e-06,3.120802288953615614e-06,3.181994490697804280e-06,3.243186692441992946e-06,3.304378894186181612e-06,3.365571095930370278e-06,3.426763297674558944e-06,3.487955499418747610e-06,3.549147701162936276e-06,3.610339902907124942e-06,3.671532104651313608e-06,3.732724306395502274e-06,3.793916508139690940e-06,3.855108709883879606e-06 +0.000000000000000000e+00,5.978528258304797534e-08,1.195705651660959507e-07,1.793558477491439260e-07,2.391411303321919014e-07,2.989264129152398502e-07,3.587116954982877991e-07,4.184969780813357480e-07,4.782822606643836969e-07,5.380675432474316457e-07,5.978528258304795946e-07,6.576381084135275435e-07,7.174233909965754923e-07,7.772086735796234412e-07,8.369939561626713901e-07,8.967792387457193390e-07,9.565645213287671820e-07,1.016349803911815131e-06,1.076135086494863080e-06,1.135920369077911029e-06,1.195705651660958977e-06,1.255490934244006926e-06,1.315276216827054875e-06,1.375061499410102824e-06,1.434846781993150773e-06,1.494632064576198722e-06,1.554417347159246671e-06,1.614202629742294620e-06,1.673987912325342568e-06,1.733773194908390517e-06,1.793558477491438466e-06,1.853343760074486415e-06,1.913129042657534364e-06,1.972914325240582313e-06,2.032699607823630262e-06,2.092484890406678211e-06,2.152270172989726159e-06,2.212055455572774108e-06,2.271840738155822057e-06,2.331626020738870006e-06,2.391411303321917955e-06,2.451196585904965904e-06,2.510981868488013853e-06,2.570767151071061801e-06,2.630552433654109750e-06,2.690337716237157699e-06,2.750122998820205648e-06,2.809908281403253597e-06,2.869693563986301546e-06,2.929478846569349495e-06,2.989264129152397444e-06,3.049049411735445392e-06,3.108834694318493341e-06,3.168619976901541290e-06,3.228405259484589239e-06,3.288190542067637188e-06,3.347975824650685137e-06,3.407761107233733086e-06,3.467546389816781035e-06,3.527331672399828983e-06,3.587116954982876932e-06,3.646902237565924881e-06,3.706687520148972830e-06,3.766472802732020779e-06 +0.000000000000000000e+00,5.587080497932250816e-08,1.117416099586450163e-07,1.676124149379675179e-07,2.234832199172900062e-07,2.793540248966124945e-07,3.352248298759349828e-07,3.910956348552574711e-07,4.469664398345799594e-07,5.028372448139023948e-07,5.587080497932248831e-07,6.145788547725473714e-07,6.704496597518698597e-07,7.263204647311923480e-07,7.821912697105148363e-07,8.380620746898373247e-07,8.939328796691598130e-07,9.498036846484823013e-07,1.005674489627804790e-06,1.061545294607127278e-06,1.117416099586449766e-06,1.173286904565772255e-06,1.229157709545094743e-06,1.285028514524417231e-06,1.340899319503739719e-06,1.396770124483062208e-06,1.452640929462384696e-06,1.508511734441707184e-06,1.564382539421029673e-06,1.620253344400352161e-06,1.676124149379674649e-06,1.731994954358997138e-06,1.787865759338319626e-06,1.843736564317642114e-06,1.899607369296964603e-06,1.955478174276286879e-06,2.011348979255609156e-06,2.067219784234931432e-06,2.123090589214253709e-06,2.178961394193575985e-06,2.234832199172898262e-06,2.290703004152220538e-06,2.346573809131542815e-06,2.402444614110865092e-06,2.458315419090187368e-06,2.514186224069509645e-06,2.570057029048831921e-06,2.625927834028154198e-06,2.681798639007476474e-06,2.737669443986798751e-06,2.793540248966121027e-06,2.849411053945443304e-06,2.905281858924765580e-06,2.961152663904087857e-06,3.017023468883410134e-06,3.072894273862732410e-06,3.128765078842054687e-06,3.184635883821376963e-06,3.240506688800699240e-06,3.296377493780021516e-06,3.352248298759343793e-06,3.408119103738666069e-06,3.463989908717988346e-06,3.519860713697310623e-06 +0.000000000000000000e+00,5.567278812285391365e-08,1.113455762457078273e-07,1.670183643685617343e-07,2.226911524914156281e-07,2.783639406142695220e-07,3.340367287371234158e-07,3.897095168599773096e-07,4.453823049828312034e-07,5.010550931056851501e-07,5.567278812285391498e-07,6.124006693513931495e-07,6.680734574742471491e-07,7.237462455971011488e-07,7.794190337199551485e-07,8.350918218428091482e-07,8.907646099656631479e-07,9.464373980885171476e-07,1.002110186211371147e-06,1.057782974334225147e-06,1.113455762457079147e-06,1.169128550579933146e-06,1.224801338702787146e-06,1.280474126825641146e-06,1.336146914948495145e-06,1.391819703071349145e-06,1.447492491194203145e-06,1.503165279317057144e-06,1.558838067439911144e-06,1.614510855562765144e-06,1.670183643685619143e-06,1.725856431808473143e-06,1.781529219931327143e-06,1.837202008054181142e-06,1.892874796177035142e-06,1.948547584299889354e-06,2.004220372422743565e-06,2.059893160545597776e-06,2.115565948668451988e-06,2.171238736791306199e-06,2.226911524914160411e-06,2.282584313037014622e-06,2.338257101159868834e-06,2.393929889282723045e-06,2.449602677405577257e-06,2.505275465528431468e-06,2.560948253651285679e-06,2.616621041774139891e-06,2.672293829896994102e-06,2.727966618019848314e-06,2.783639406142702525e-06,2.839312194265556737e-06,2.894984982388410948e-06,2.950657770511265159e-06,3.006330558634119371e-06,3.062003346756973582e-06,3.117676134879827794e-06,3.173348923002682005e-06,3.229021711125536217e-06,3.284694499248390428e-06,3.340367287371244640e-06,3.396040075494098851e-06,3.451712863616953062e-06,3.507385651739807274e-06 +0.000000000000000000e+00,5.921977514771322332e-08,1.184395502954264466e-07,1.776593254431396633e-07,2.368791005908528668e-07,2.960988757385660967e-07,3.553186508862793267e-07,4.145384260339925566e-07,4.737582011817057865e-07,5.329779763294190165e-07,5.921977514771321935e-07,6.514175266248453705e-07,7.106373017725585474e-07,7.698570769202717244e-07,8.290768520679849014e-07,8.882966272156980784e-07,9.475164023634112554e-07,1.006736177511124538e-06,1.065955952658837821e-06,1.125175727806551104e-06,1.184395502954264387e-06,1.243615278101977670e-06,1.302835053249690953e-06,1.362054828397404236e-06,1.421274603545117518e-06,1.480494378692830801e-06,1.539714153840544084e-06,1.598933928988257367e-06,1.658153704135970650e-06,1.717373479283683933e-06,1.776593254431397216e-06,1.835813029579110499e-06,1.895032804726823781e-06,1.954252579874537064e-06,2.013472355022250347e-06,2.072692130169963630e-06,2.131911905317676913e-06,2.191131680465390196e-06,2.250351455613103479e-06,2.309571230760816762e-06,2.368791005908530044e-06,2.428010781056243327e-06,2.487230556203956610e-06,2.546450331351669893e-06,2.605670106499383176e-06,2.664889881647096459e-06,2.724109656794809742e-06,2.783329431942523024e-06,2.842549207090236307e-06,2.901768982237949590e-06,2.960988757385662873e-06,3.020208532533376156e-06,3.079428307681089439e-06,3.138648082828802722e-06,3.197867857976516005e-06,3.257087633124229287e-06,3.316307408271942570e-06,3.375527183419655853e-06,3.434746958567369136e-06,3.493966733715082419e-06,3.553186508862795702e-06,3.612406284010508985e-06,3.671626059158222268e-06,3.730845834305935550e-06 +0.000000000000000000e+00,5.942703660609422515e-08,1.188540732121884503e-07,1.782811098182826688e-07,2.377081464243768741e-07,2.971351830304710794e-07,3.565622196365652848e-07,4.159892562426594901e-07,4.754162928487536954e-07,5.348433294548479007e-07,5.942703660609421589e-07,6.536974026670364171e-07,7.131244392731306754e-07,7.725514758792249336e-07,8.319785124853191919e-07,8.914055490914134501e-07,9.508325856975077083e-07,1.010259622303601967e-06,1.069686658909696225e-06,1.129113695515790483e-06,1.188540732121884741e-06,1.247967768727979000e-06,1.307394805334073258e-06,1.366821841940167516e-06,1.426248878546261774e-06,1.485675915152356033e-06,1.545102951758450291e-06,1.604529988364544549e-06,1.663957024970638807e-06,1.723384061576733065e-06,1.782811098182827324e-06,1.842238134788921582e-06,1.901665171395015840e-06,1.961092208001109887e-06,2.020519244607203933e-06,2.079946281213297980e-06,2.139373317819392026e-06,2.198800354425486073e-06,2.258227391031580119e-06,2.317654427637674166e-06,2.377081464243768212e-06,2.436508500849862259e-06,2.495935537455956305e-06,2.555362574062050352e-06,2.614789610668144398e-06,2.674216647274238444e-06,2.733643683880332491e-06,2.793070720486426537e-06,2.852497757092520584e-06,2.911924793698614630e-06,2.971351830304708677e-06,3.030778866910802723e-06,3.090205903516896770e-06,3.149632940122990816e-06,3.209059976729084863e-06,3.268487013335178909e-06,3.327914049941272956e-06,3.387341086547367002e-06,3.446768123153461049e-06,3.506195159759555095e-06,3.565622196365649142e-06,3.625049232971743188e-06,3.684476269577837235e-06,3.743903306183931281e-06 +0.000000000000000000e+00,6.304628749726617953e-08,1.260925749945323591e-07,1.891388624917985386e-07,2.521851499890647181e-07,3.152314374863309241e-07,3.782777249835971301e-07,4.413240124808633361e-07,5.043702999781295421e-07,5.674165874753957481e-07,6.304628749726619541e-07,6.935091624699281601e-07,7.565554499671943661e-07,8.196017374644605721e-07,8.826480249617267781e-07,9.456943124589929841e-07,1.008740599956259296e-06,1.071786887453525608e-06,1.134833174950791920e-06,1.197879462448058232e-06,1.260925749945324543e-06,1.323972037442590855e-06,1.387018324939857167e-06,1.450064612437123479e-06,1.513110899934389791e-06,1.576157187431656103e-06,1.639203474928922415e-06,1.702249762426188727e-06,1.765296049923455038e-06,1.828342337420721350e-06,1.891388624917987662e-06,1.954434912415253974e-06,2.017481199912520286e-06,2.080527487409786598e-06,2.143573774907052910e-06,2.206620062404319222e-06,2.269666349901585534e-06,2.332712637398851845e-06,2.395758924896118157e-06,2.458805212393384469e-06,2.521851499890650781e-06,2.584897787387917093e-06,2.647944074885183405e-06,2.710990362382449717e-06,2.774036649879716029e-06,2.837082937376982340e-06,2.900129224874248652e-06,2.963175512371514964e-06,3.026221799868781276e-06,3.089268087366047588e-06,3.152314374863313900e-06,3.215360662360580212e-06,3.278406949857846524e-06,3.341453237355112835e-06,3.404499524852379147e-06,3.467545812349645459e-06,3.530592099846911771e-06,3.593638387344178083e-06,3.656684674841444395e-06,3.719730962338710707e-06,3.782777249835977019e-06,3.845823537333243754e-06,3.908869824830510489e-06,3.971916112327777225e-06 +0.000000000000000000e+00,5.572103540603628881e-08,1.114420708120725776e-07,1.671631062181088797e-07,2.228841416241451817e-07,2.786051770301814838e-07,3.343262124362177593e-07,3.900472478422540349e-07,4.457682832482903105e-07,5.014893186543265861e-07,5.572103540603628616e-07,6.129313894663991372e-07,6.686524248724354128e-07,7.243734602784716884e-07,7.800944956845079639e-07,8.358155310905442395e-07,8.915365664965805151e-07,9.472576019026167907e-07,1.002978637308653172e-06,1.058699672714689554e-06,1.114420708120725935e-06,1.170141743526762316e-06,1.225862778932798698e-06,1.281583814338835079e-06,1.337304849744871461e-06,1.393025885150907842e-06,1.448746920556944224e-06,1.504467955962980605e-06,1.560188991369016987e-06,1.615910026775053368e-06,1.671631062181089750e-06,1.727352097587126131e-06,1.783073132993162513e-06,1.838794168399198894e-06,1.894515203805235275e-06,1.950236239211271445e-06,2.005957274617307615e-06,2.061678310023343785e-06,2.117399345429379954e-06,2.173120380835416124e-06,2.228841416241452294e-06,2.284562451647488463e-06,2.340283487053524633e-06,2.396004522459560803e-06,2.451725557865596972e-06,2.507446593271633142e-06,2.563167628677669312e-06,2.618888664083705481e-06,2.674609699489741651e-06,2.730330734895777821e-06,2.786051770301813991e-06,2.841772805707850160e-06,2.897493841113886330e-06,2.953214876519922500e-06,3.008935911925958669e-06,3.064656947331994839e-06,3.120377982738031009e-06,3.176099018144067178e-06,3.231820053550103348e-06,3.287541088956139518e-06,3.343262124362175688e-06,3.398983159768211857e-06,3.454704195174248027e-06,3.510425230580284197e-06 +0.000000000000000000e+00,5.922161214600216376e-08,1.184432242920043275e-07,1.776648364380064913e-07,2.368864485840086550e-07,2.961080607300108188e-07,3.553296728760129826e-07,4.145512850220151463e-07,4.737728971680173101e-07,5.329945093140194739e-07,5.922161214600216376e-07,6.514377336060238014e-07,7.106593457520259651e-07,7.698809578980281289e-07,8.291025700440302927e-07,8.883241821900324564e-07,9.475457943360346202e-07,1.006767406482036678e-06,1.065989018628038736e-06,1.125210630774040794e-06,1.184432242920042852e-06,1.243653855066044910e-06,1.302875467212046967e-06,1.362097079358049025e-06,1.421318691504051083e-06,1.480540303650053141e-06,1.539761915796055199e-06,1.598983527942057257e-06,1.658205140088059315e-06,1.717426752234061373e-06,1.776648364380063431e-06,1.835869976526065488e-06,1.895091588672067546e-06,1.954313200818069604e-06,2.013534812964071662e-06,2.072756425110073720e-06,2.131978037256075778e-06,2.191199649402077836e-06,2.250421261548079894e-06,2.309642873694081952e-06,2.368864485840084009e-06,2.428086097986086067e-06,2.487307710132088125e-06,2.546529322278090183e-06,2.605750934424092241e-06,2.664972546570094299e-06,2.724194158716096357e-06,2.783415770862098415e-06,2.842637383008100472e-06,2.901858995154102530e-06,2.961080607300104588e-06,3.020302219446106646e-06,3.079523831592108704e-06,3.138745443738110762e-06,3.197967055884112820e-06,3.257188668030114878e-06,3.316410280176116936e-06,3.375631892322118993e-06,3.434853504468121051e-06,3.494075116614123109e-06,3.553296728760125167e-06,3.612518340906127225e-06,3.671739953052129283e-06,3.730961565198131341e-06 +0.000000000000000000e+00,5.978528258304945765e-08,1.195705651660989153e-07,1.793558477491483729e-07,2.391411303321978306e-07,2.989264129152472618e-07,3.587116954982966930e-07,4.184969780813461241e-07,4.782822606643955553e-07,5.380675432474449865e-07,5.978528258304944177e-07,6.576381084135438489e-07,7.174233909965932800e-07,7.772086735796427112e-07,8.369939561626921424e-07,8.967792387457415736e-07,9.565645213287908989e-07,1.016349803911840118e-06,1.076135086494889338e-06,1.135920369077938557e-06,1.195705651660987777e-06,1.255490934244036996e-06,1.315276216827086215e-06,1.375061499410135435e-06,1.434846781993184654e-06,1.494632064576233874e-06,1.554417347159283093e-06,1.614202629742332313e-06,1.673987912325381532e-06,1.733773194908430751e-06,1.793558477491479971e-06,1.853343760074529190e-06,1.913129042657578410e-06,1.972914325240627629e-06,2.032699607823676848e-06,2.092484890406726068e-06,2.152270172989775287e-06,2.212055455572824507e-06,2.271840738155873726e-06,2.331626020738922946e-06,2.391411303321972165e-06,2.451196585905021384e-06,2.510981868488070604e-06,2.570767151071119823e-06,2.630552433654169043e-06,2.690337716237218262e-06,2.750122998820267482e-06,2.809908281403316701e-06,2.869693563986365920e-06,2.929478846569415140e-06,2.989264129152464359e-06,3.049049411735513579e-06,3.108834694318562798e-06,3.168619976901612017e-06,3.228405259484661237e-06,3.288190542067710456e-06,3.347975824650759676e-06,3.407761107233808895e-06,3.467546389816858115e-06,3.527331672399907334e-06,3.587116954982956553e-06,3.646902237566005773e-06,3.706687520149054992e-06,3.766472802732104212e-06 +0.000000000000000000e+00,5.587080497932574409e-08,1.117416099586514882e-07,1.676124149379772323e-07,2.234832199173029764e-07,2.793540248966287469e-07,3.352248298759545175e-07,3.910956348552802881e-07,4.469664398346060586e-07,5.028372448139318292e-07,5.587080497932575997e-07,6.145788547725833703e-07,6.704496597519091409e-07,7.263204647312349114e-07,7.821912697105606820e-07,8.380620746898864526e-07,8.939328796692122231e-07,9.498036846485379937e-07,1.005674489627863658e-06,1.061545294607189323e-06,1.117416099586514988e-06,1.173286904565840652e-06,1.229157709545166317e-06,1.285028514524491982e-06,1.340899319503817646e-06,1.396770124483143311e-06,1.452640929462468976e-06,1.508511734441794641e-06,1.564382539421120305e-06,1.620253344400445970e-06,1.676124149379771635e-06,1.731994954359097299e-06,1.787865759338422964e-06,1.843736564317748629e-06,1.899607369297074293e-06,1.955478174276399958e-06,2.011348979255725623e-06,2.067219784235051287e-06,2.123090589214376952e-06,2.178961394193702617e-06,2.234832199173028281e-06,2.290703004152353946e-06,2.346573809131679611e-06,2.402444614111005275e-06,2.458315419090330940e-06,2.514186224069656605e-06,2.570057029048982270e-06,2.625927834028307934e-06,2.681798639007633599e-06,2.737669443986959264e-06,2.793540248966284928e-06,2.849411053945610593e-06,2.905281858924936258e-06,2.961152663904261922e-06,3.017023468883587587e-06,3.072894273862913252e-06,3.128765078842238916e-06,3.184635883821564581e-06,3.240506688800890246e-06,3.296377493780215910e-06,3.352248298759541575e-06,3.408119103738867240e-06,3.463989908718192904e-06,3.519860713697518569e-06 +0.000000000000000000e+00,5.572103540603778435e-08,1.114420708120755687e-07,1.671631062181133531e-07,2.228841416241511374e-07,2.786051770301888953e-07,3.343262124362266532e-07,3.900472478422644111e-07,4.457682832483021689e-07,5.014893186543399268e-07,5.572103540603776847e-07,6.129313894664154426e-07,6.686524248724532005e-07,7.243734602784909584e-07,7.800944956845287163e-07,8.358155310905664741e-07,8.915365664966042320e-07,9.472576019026419899e-07,1.002978637308679854e-06,1.058699672714717717e-06,1.114420708120755581e-06,1.170141743526793445e-06,1.225862778932831309e-06,1.281583814338869172e-06,1.337304849744907036e-06,1.393025885150944900e-06,1.448746920556982764e-06,1.504467955963020628e-06,1.560188991369058491e-06,1.615910026775096355e-06,1.671631062181134219e-06,1.727352097587172083e-06,1.783073132993209946e-06,1.838794168399247810e-06,1.894515203805285674e-06,1.950236239211323538e-06,2.005957274617361401e-06,2.061678310023399265e-06,2.117399345429437129e-06,2.173120380835474993e-06,2.228841416241512856e-06,2.284562451647550720e-06,2.340283487053588584e-06,2.396004522459626448e-06,2.451725557865664312e-06,2.507446593271702175e-06,2.563167628677740039e-06,2.618888664083777903e-06,2.674609699489815767e-06,2.730330734895853630e-06,2.786051770301891494e-06,2.841772805707929358e-06,2.897493841113967222e-06,2.953214876520005085e-06,3.008935911926042949e-06,3.064656947332080813e-06,3.120377982738118677e-06,3.176099018144156540e-06,3.231820053550194404e-06,3.287541088956232268e-06,3.343262124362270132e-06,3.398983159768307995e-06,3.454704195174345859e-06,3.510425230580383723e-06 +0.000000000000000000e+00,5.921977514771581074e-08,1.184395502954316215e-07,1.776593254431474190e-07,2.368791005908632165e-07,2.960988757385790140e-07,3.553186508862948380e-07,4.145384260340106619e-07,4.737582011817264859e-07,5.329779763294423099e-07,5.921977514771581338e-07,6.514175266248739578e-07,7.106373017725897818e-07,7.698570769203056058e-07,8.290768520680214297e-07,8.882966272157372537e-07,9.475164023634530777e-07,1.006736177511169008e-06,1.065955952658884831e-06,1.125175727806600655e-06,1.184395502954316479e-06,1.243615278102032303e-06,1.302835053249748127e-06,1.362054828397463951e-06,1.421274603545179775e-06,1.480494378692895599e-06,1.539714153840611423e-06,1.598933928988327247e-06,1.658153704136043071e-06,1.717373479283758895e-06,1.776593254431474719e-06,1.835813029579190543e-06,1.895032804726906367e-06,1.954252579874622191e-06,2.013472355022338015e-06,2.072692130170053839e-06,2.131911905317769663e-06,2.191131680465485487e-06,2.250351455613201311e-06,2.309571230760917135e-06,2.368791005908632959e-06,2.428010781056348783e-06,2.487230556204064607e-06,2.546450331351780431e-06,2.605670106499496255e-06,2.664889881647212079e-06,2.724109656794927903e-06,2.783329431942643727e-06,2.842549207090359551e-06,2.901768982238075375e-06,2.960988757385791199e-06,3.020208532533507023e-06,3.079428307681222847e-06,3.138648082828938671e-06,3.197867857976654494e-06,3.257087633124370318e-06,3.316307408272086142e-06,3.375527183419801966e-06,3.434746958567517790e-06,3.493966733715233614e-06,3.553186508862949438e-06,3.612406284010665262e-06,3.671626059158381086e-06,3.730845834306096910e-06 +0.000000000000000000e+00,5.942703660609779857e-08,1.188540732121955971e-07,1.782811098182933891e-07,2.377081464243911678e-07,2.971351830304889730e-07,3.565622196365867782e-07,4.159892562426845834e-07,4.754162928487823886e-07,5.348433294548801938e-07,5.942703660609779460e-07,6.536974026670756983e-07,7.131244392731734505e-07,7.725514758792712028e-07,8.319785124853689550e-07,8.914055490914667073e-07,9.508325856975644596e-07,1.010259622303662318e-06,1.069686658909760176e-06,1.129113695515858034e-06,1.188540732121955892e-06,1.247967768728053750e-06,1.307394805334151608e-06,1.366821841940249466e-06,1.426248878546347325e-06,1.485675915152445183e-06,1.545102951758543041e-06,1.604529988364640899e-06,1.663957024970738757e-06,1.723384061576836615e-06,1.782811098182934473e-06,1.842238134789032332e-06,1.901665171395130190e-06,1.961092208001228048e-06,2.020519244607325906e-06,2.079946281213423764e-06,2.139373317819521622e-06,2.198800354425619480e-06,2.258227391031717338e-06,2.317654427637815197e-06,2.377081464243913055e-06,2.436508500850010913e-06,2.495935537456108771e-06,2.555362574062206629e-06,2.614789610668304487e-06,2.674216647274402345e-06,2.733643683880500203e-06,2.793070720486598062e-06,2.852497757092695920e-06,2.911924793698793778e-06,2.971351830304891636e-06,3.030778866910989494e-06,3.090205903517087352e-06,3.149632940123185210e-06,3.209059976729283069e-06,3.268487013335380927e-06,3.327914049941478785e-06,3.387341086547576643e-06,3.446768123153674501e-06,3.506195159759772359e-06,3.565622196365870217e-06,3.625049232971968075e-06,3.684476269578065934e-06,3.743903306184163792e-06 +0.000000000000000000e+00,6.304628749726786036e-08,1.260925749945357207e-07,1.891388624918035943e-07,2.521851499890714944e-07,3.152314374863393944e-07,3.782777249836072945e-07,4.413240124808751946e-07,5.043702999781430946e-07,5.674165874754109947e-07,6.304628749726788948e-07,6.935091624699467948e-07,7.565554499672146949e-07,8.196017374644825950e-07,8.826480249617504950e-07,9.456943124590183951e-07,1.008740599956286401e-06,1.071786887453554407e-06,1.134833174950822413e-06,1.197879462448090419e-06,1.260925749945358425e-06,1.323972037442626431e-06,1.387018324939894437e-06,1.450064612437162443e-06,1.513110899934430449e-06,1.576157187431698455e-06,1.639203474928966460e-06,1.702249762426234466e-06,1.765296049923502472e-06,1.828342337420770478e-06,1.891388624918038484e-06,1.954434912415306490e-06,2.017481199912574496e-06,2.080527487409842502e-06,2.143573774907110508e-06,2.206620062404378514e-06,2.269666349901646520e-06,2.332712637398914526e-06,2.395758924896182532e-06,2.458805212393450538e-06,2.521851499890718544e-06,2.584897787387986550e-06,2.647944074885254556e-06,2.710990362382522561e-06,2.774036649879790567e-06,2.837082937377058573e-06,2.900129224874326579e-06,2.963175512371594585e-06,3.026221799868862591e-06,3.089268087366130597e-06,3.152314374863398603e-06,3.215360662360666609e-06,3.278406949857934615e-06,3.341453237355202621e-06,3.404499524852470627e-06,3.467545812349738633e-06,3.530592099847006639e-06,3.593638387344274645e-06,3.656684674841542651e-06,3.719730962338810657e-06,3.782777249836078663e-06,3.845823537333347092e-06,3.908869824830615521e-06,3.971916112327883951e-06 +0.000000000000000000e+00,5.815412740712318649e-08,1.163082548142463730e-07,1.744623822213695727e-07,2.326165096284927724e-07,2.907706370356159722e-07,3.489247644427391454e-07,4.070788918498623187e-07,4.652330192569854920e-07,5.233871466641086652e-07,5.815412740712318385e-07,6.396954014783550117e-07,6.978495288854781850e-07,7.560036562926013582e-07,8.141577836997245315e-07,8.723119111068477048e-07,9.304660385139708780e-07,9.886201659210940513e-07,1.046774293328217330e-06,1.104928420735340610e-06,1.163082548142463889e-06,1.221236675549587168e-06,1.279390802956710447e-06,1.337544930363833726e-06,1.395699057770957005e-06,1.453853185178080284e-06,1.512007312585203564e-06,1.570161439992326843e-06,1.628315567399450122e-06,1.686469694806573401e-06,1.744623822213696680e-06,1.802777949620819959e-06,1.860932077027943238e-06,1.919086204435066517e-06,1.977240331842189797e-06,2.035394459249313076e-06,2.093548586656436355e-06,2.151702714063559634e-06,2.209856841470682913e-06,2.268010968877806192e-06,2.326165096284929471e-06,2.384319223692052751e-06,2.442473351099176030e-06,2.500627478506299309e-06,2.558781605913422588e-06,2.616935733320545867e-06,2.675089860727669146e-06,2.733243988134792425e-06,2.791398115541915705e-06,2.849552242949038984e-06,2.907706370356162263e-06,2.965860497763285542e-06,3.024014625170408821e-06,3.082168752577532100e-06,3.140322879984655379e-06,3.198477007391778659e-06,3.256631134798901938e-06,3.314785262206025217e-06,3.372939389613148496e-06,3.431093517020271775e-06,3.489247644427395054e-06,3.547401771834518333e-06,3.605555899241641612e-06,3.663710026648764892e-06 +0.000000000000000000e+00,5.923270642742192152e-08,1.184654128548438430e-07,1.776981192822657513e-07,2.369308257096876596e-07,2.961635321371095679e-07,3.553962385645315027e-07,4.146289449919534374e-07,4.738616514193753722e-07,5.330943578467972540e-07,5.923270642742191358e-07,6.515597707016410176e-07,7.107924771290628994e-07,7.700251835564847812e-07,8.292578899839066631e-07,8.884905964113285449e-07,9.477233028387504267e-07,1.006956009266172309e-06,1.066188715693594084e-06,1.125421422121015860e-06,1.184654128548437636e-06,1.243886834975859412e-06,1.303119541403281188e-06,1.362352247830702964e-06,1.421584954258124740e-06,1.480817660685546516e-06,1.540050367112968292e-06,1.599283073540390068e-06,1.658515779967811844e-06,1.717748486395233620e-06,1.776981192822655396e-06,1.836213899250077172e-06,1.895446605677498948e-06,1.954679312104920723e-06,2.013912018532342499e-06,2.073144724959764275e-06,2.132377431387186051e-06,2.191610137814607827e-06,2.250842844242029603e-06,2.310075550669451379e-06,2.369308257096873155e-06,2.428540963524294931e-06,2.487773669951716707e-06,2.547006376379138483e-06,2.606239082806560259e-06,2.665471789233982035e-06,2.724704495661403811e-06,2.783937202088825587e-06,2.843169908516247363e-06,2.902402614943669138e-06,2.961635321371090914e-06,3.020868027798512690e-06,3.080100734225934466e-06,3.139333440653356242e-06,3.198566147080778018e-06,3.257798853508199794e-06,3.317031559935621570e-06,3.376264266363043346e-06,3.435496972790465122e-06,3.494729679217886898e-06,3.553962385645308674e-06,3.613195092072730450e-06,3.672427798500152226e-06,3.731660504927574002e-06 +0.000000000000000000e+00,6.180310941044470312e-08,1.236062188208894062e-07,1.854093282313341093e-07,2.472124376417788125e-07,3.090155470522234891e-07,3.708186564626681658e-07,4.326217658731128424e-07,4.944248752835575190e-07,5.562279846940021957e-07,6.180310941044468723e-07,6.798342035148915490e-07,7.416373129253362256e-07,8.034404223357809023e-07,8.652435317462255789e-07,9.270466411566702556e-07,9.888497505671148263e-07,1.050652859977559397e-06,1.112455969388003968e-06,1.174259078798448539e-06,1.236062188208893109e-06,1.297865297619337680e-06,1.359668407029782251e-06,1.421471516440226822e-06,1.483274625850671392e-06,1.545077735261115963e-06,1.606880844671560534e-06,1.668683954082005105e-06,1.730487063492449676e-06,1.792290172902894246e-06,1.854093282313338817e-06,1.915896391723783600e-06,1.977699501134228382e-06,2.039502610544673165e-06,2.101305719955117947e-06,2.163108829365562730e-06,2.224911938776007512e-06,2.286715048186452295e-06,2.348518157596897077e-06,2.410321267007341860e-06,2.472124376417786642e-06,2.533927485828231425e-06,2.595730595238676207e-06,2.657533704649120990e-06,2.719336814059565772e-06,2.781139923470010555e-06,2.842943032880455337e-06,2.904746142290900120e-06,2.966549251701344903e-06,3.028352361111789685e-06,3.090155470522234468e-06,3.151958579932679250e-06,3.213761689343124033e-06,3.275564798753568815e-06,3.337367908164013598e-06,3.399171017574458380e-06,3.460974126984903163e-06,3.522777236395347945e-06,3.584580345805792728e-06,3.646383455216237510e-06,3.708186564626682293e-06,3.769989674037127075e-06,3.831792783447572281e-06,3.893595892858017487e-06 +0.000000000000000000e+00,5.815412740712301444e-08,1.163082548142460289e-07,1.744623822213690433e-07,2.326165096284920578e-07,2.907706370356150722e-07,3.489247644427380866e-07,4.070788918498611011e-07,4.652330192569841155e-07,5.233871466641071829e-07,5.815412740712302503e-07,6.396954014783533177e-07,6.978495288854763850e-07,7.560036562925994524e-07,8.141577836997225198e-07,8.723119111068455872e-07,9.304660385139686546e-07,9.886201659210917219e-07,1.046774293328214789e-06,1.104928420735337857e-06,1.163082548142460924e-06,1.221236675549583991e-06,1.279390802956707059e-06,1.337544930363830126e-06,1.395699057770953194e-06,1.453853185178076261e-06,1.512007312585199328e-06,1.570161439992322396e-06,1.628315567399445463e-06,1.686469694806568530e-06,1.744623822213691598e-06,1.802777949620814665e-06,1.860932077027937733e-06,1.919086204435061012e-06,1.977240331842184291e-06,2.035394459249307570e-06,2.093548586656430849e-06,2.151702714063554128e-06,2.209856841470677407e-06,2.268010968877800687e-06,2.326165096284923966e-06,2.384319223692047245e-06,2.442473351099170524e-06,2.500627478506293803e-06,2.558781605913417082e-06,2.616935733320540361e-06,2.675089860727663641e-06,2.733243988134786920e-06,2.791398115541910199e-06,2.849552242949033478e-06,2.907706370356156757e-06,2.965860497763280036e-06,3.024014625170403315e-06,3.082168752577526595e-06,3.140322879984649874e-06,3.198477007391773153e-06,3.256631134798896432e-06,3.314785262206019711e-06,3.372939389613142990e-06,3.431093517020266269e-06,3.489247644427389549e-06,3.547401771834512828e-06,3.605555899241636107e-06,3.663710026648759386e-06 +0.000000000000000000e+00,5.923270642742231857e-08,1.184654128548446371e-07,1.776981192822669689e-07,2.369308257096893007e-07,2.961635321371116325e-07,3.553962385645339379e-07,4.146289449919562432e-07,4.738616514193785485e-07,5.330943578468008539e-07,5.923270642742231592e-07,6.515597707016454645e-07,7.107924771290677699e-07,7.700251835564900752e-07,8.292578899839123805e-07,8.884905964113346859e-07,9.477233028387569912e-07,1.006956009266179297e-06,1.066188715693601708e-06,1.125421422121024119e-06,1.184654128548446530e-06,1.243886834975868941e-06,1.303119541403291353e-06,1.362352247830713764e-06,1.421584954258136175e-06,1.480817660685558586e-06,1.540050367112980997e-06,1.599283073540403409e-06,1.658515779967825820e-06,1.717748486395248231e-06,1.776981192822670642e-06,1.836213899250093053e-06,1.895446605677515465e-06,1.954679312104937664e-06,2.013912018532359864e-06,2.073144724959782063e-06,2.132377431387204263e-06,2.191610137814626462e-06,2.250842844242048661e-06,2.310075550669470861e-06,2.369308257096893060e-06,2.428540963524315260e-06,2.487773669951737459e-06,2.547006376379159659e-06,2.606239082806581858e-06,2.665471789234004058e-06,2.724704495661426257e-06,2.783937202088848457e-06,2.843169908516270656e-06,2.902402614943692855e-06,2.961635321371115055e-06,3.020868027798537254e-06,3.080100734225959454e-06,3.139333440653381653e-06,3.198566147080803853e-06,3.257798853508226052e-06,3.317031559935648252e-06,3.376264266363070451e-06,3.435496972790492650e-06,3.494729679217914850e-06,3.553962385645337049e-06,3.613195092072759249e-06,3.672427798500181448e-06,3.731660504927603648e-06 +0.000000000000000000e+00,6.180310941044478253e-08,1.236062188208895651e-07,1.854093282313343476e-07,2.472124376417791301e-07,3.090155470522239126e-07,3.708186564626686952e-07,4.326217658731134777e-07,4.944248752835582602e-07,5.562279846940030427e-07,6.180310941044478253e-07,6.798342035148926078e-07,7.416373129253373903e-07,8.034404223357821728e-07,8.652435317462269554e-07,9.270466411566717379e-07,9.888497505671165204e-07,1.050652859977561303e-06,1.112455969388006085e-06,1.174259078798450868e-06,1.236062188208895651e-06,1.297865297619340433e-06,1.359668407029785216e-06,1.421471516440229998e-06,1.483274625850674781e-06,1.545077735261119563e-06,1.606880844671564346e-06,1.668683954082009128e-06,1.730487063492453911e-06,1.792290172902898693e-06,1.854093282313343476e-06,1.915896391723788258e-06,1.977699501134233041e-06,2.039502610544677823e-06,2.101305719955122606e-06,2.163108829365567388e-06,2.224911938776012171e-06,2.286715048186456953e-06,2.348518157596901736e-06,2.410321267007346518e-06,2.472124376417791301e-06,2.533927485828236084e-06,2.595730595238680866e-06,2.657533704649125649e-06,2.719336814059570431e-06,2.781139923470015214e-06,2.842943032880459996e-06,2.904746142290904779e-06,2.966549251701349561e-06,3.028352361111794344e-06,3.090155470522239126e-06,3.151958579932683909e-06,3.213761689343128691e-06,3.275564798753573474e-06,3.337367908164018256e-06,3.399171017574463039e-06,3.460974126984907821e-06,3.522777236395352604e-06,3.584580345805797386e-06,3.646383455216242169e-06,3.708186564626686952e-06,3.769989674037131734e-06,3.831792783447576517e-06,3.893595892858021723e-06 +0.000000000000000000e+00,5.526929347023083785e-08,1.105385869404616757e-07,1.658078804106925136e-07,2.210771738809233514e-07,2.763464673511541893e-07,3.316157608213850271e-07,3.868850542916158650e-07,4.421543477618467028e-07,4.974236412320774877e-07,5.526929347023082726e-07,6.079622281725390575e-07,6.632315216427698425e-07,7.185008151130006274e-07,7.737701085832314123e-07,8.290394020534621972e-07,8.843086955236929821e-07,9.395779889939237670e-07,9.948472824641545519e-07,1.050116575934385337e-06,1.105385869404616122e-06,1.160655162874846907e-06,1.215924456345077692e-06,1.271193749815308476e-06,1.326463043285539261e-06,1.381732336755770046e-06,1.437001630226000831e-06,1.492270923696231616e-06,1.547540217166462401e-06,1.602809510636693186e-06,1.658078804106923971e-06,1.713348097577154756e-06,1.768617391047385541e-06,1.823886684517616326e-06,1.879155977987847110e-06,1.934425271458077895e-06,1.989694564928308680e-06,2.044963858398539465e-06,2.100233151868770250e-06,2.155502445339001035e-06,2.210771738809231820e-06,2.266041032279462605e-06,2.321310325749693390e-06,2.376579619219924175e-06,2.431848912690154960e-06,2.487118206160385745e-06,2.542387499630616529e-06,2.597656793100847314e-06,2.652926086571078099e-06,2.708195380041308884e-06,2.763464673511539669e-06,2.818733966981770454e-06,2.874003260452001239e-06,2.929272553922232024e-06,2.984541847392462809e-06,3.039811140862693594e-06,3.095080434332924379e-06,3.150349727803155163e-06,3.205619021273385948e-06,3.260888314743616733e-06,3.316157608213847518e-06,3.371426901684078303e-06,3.426696195154309088e-06,3.481965488624539873e-06 +0.000000000000000000e+00,5.678421927424214452e-08,1.135684385484842890e-07,1.703526578227264269e-07,2.271368770969685516e-07,2.839210963712106763e-07,3.407053156454528010e-07,3.974895349196949256e-07,4.542737541939370503e-07,5.110579734681792279e-07,5.678421927424214585e-07,6.246264120166636890e-07,6.814106312909059196e-07,7.381948505651481501e-07,7.949790698393903807e-07,8.517632891136326112e-07,9.085475083878748418e-07,9.653317276621170723e-07,1.022115946936359303e-06,1.078900166210601533e-06,1.135684385484843764e-06,1.192468604759085995e-06,1.249252824033328225e-06,1.306037043307570456e-06,1.362821262581812686e-06,1.419605481856054917e-06,1.476389701130297147e-06,1.533173920404539378e-06,1.589958139678781608e-06,1.646742358953023839e-06,1.703526578227266069e-06,1.760310797501508300e-06,1.817095016775750531e-06,1.873879236049992761e-06,1.930663455324234992e-06,1.987447674598477222e-06,2.044231893872719453e-06,2.101016113146961683e-06,2.157800332421203914e-06,2.214584551695446144e-06,2.271368770969688375e-06,2.328152990243930605e-06,2.384937209518172836e-06,2.441721428792415067e-06,2.498505648066657297e-06,2.555289867340899528e-06,2.612074086615141758e-06,2.668858305889383989e-06,2.725642525163626219e-06,2.782426744437868450e-06,2.839210963712110680e-06,2.895995182986352911e-06,2.952779402260595142e-06,3.009563621534837372e-06,3.066347840809079603e-06,3.123132060083321833e-06,3.179916279357564064e-06,3.236700498631806294e-06,3.293484717906048525e-06,3.350268937180290755e-06,3.407053156454532986e-06,3.463837375728775216e-06,3.520621595003017447e-06,3.577405814277259678e-06 +0.000000000000000000e+00,5.941829884180828139e-08,1.188365976836165628e-07,1.782548965254248309e-07,2.376731953672330991e-07,2.970914942090413672e-07,3.565097930508496619e-07,4.159280918926579565e-07,4.753463907344662511e-07,5.347646895762744928e-07,5.941829884180827345e-07,6.536012872598909762e-07,7.130195861016992179e-07,7.724378849435074595e-07,8.318561837853157012e-07,8.912744826271239429e-07,9.506927814689321846e-07,1.010111080310740426e-06,1.069529379152548562e-06,1.128947677994356698e-06,1.188365976836164834e-06,1.247784275677972970e-06,1.307202574519781105e-06,1.366620873361589241e-06,1.426039172203397377e-06,1.485457471045205513e-06,1.544875769887013649e-06,1.604294068728821784e-06,1.663712367570629920e-06,1.723130666412438056e-06,1.782548965254246192e-06,1.841967264096054328e-06,1.901385562937862463e-06,1.960803861779670387e-06,2.020222160621478311e-06,2.079640459463286236e-06,2.139058758305094160e-06,2.198477057146902084e-06,2.257895355988710008e-06,2.317313654830517932e-06,2.376731953672325856e-06,2.436150252514133780e-06,2.495568551355941704e-06,2.554986850197749628e-06,2.614405149039557552e-06,2.673823447881365476e-06,2.733241746723173400e-06,2.792660045564981324e-06,2.852078344406789248e-06,2.911496643248597172e-06,2.970914942090405096e-06,3.030333240932213020e-06,3.089751539774020944e-06,3.149169838615828868e-06,3.208588137457636792e-06,3.268006436299444716e-06,3.327424735141252641e-06,3.386843033983060565e-06,3.446261332824868489e-06,3.505679631666676413e-06,3.565097930508484337e-06,3.624516229350292261e-06,3.683934528192100185e-06,3.743352827033908109e-06 +0.000000000000000000e+00,5.526929347022829675e-08,1.105385869404565935e-07,1.658078804106848903e-07,2.210771738809131870e-07,2.763464673511414838e-07,3.316157608213697805e-07,3.868850542915980773e-07,4.421543477618263740e-07,4.974236412320546178e-07,5.526929347022828616e-07,6.079622281725111055e-07,6.632315216427393493e-07,7.185008151129675931e-07,7.737701085831958369e-07,8.290394020534240807e-07,8.843086955236523245e-07,9.395779889938805683e-07,9.948472824641088121e-07,1.050116575934337056e-06,1.105385869404565300e-06,1.160655162874793544e-06,1.215924456345021787e-06,1.271193749815250031e-06,1.326463043285478275e-06,1.381732336755706519e-06,1.437001630225934763e-06,1.492270923696163006e-06,1.547540217166391250e-06,1.602809510636619494e-06,1.658078804106847738e-06,1.713348097577075982e-06,1.768617391047304226e-06,1.823886684517532469e-06,1.879155977987760713e-06,1.934425271457988957e-06,1.989694564928217201e-06,2.044963858398445445e-06,2.100233151868673688e-06,2.155502445338901932e-06,2.210771738809130176e-06,2.266041032279358420e-06,2.321310325749586664e-06,2.376579619219814907e-06,2.431848912690043151e-06,2.487118206160271395e-06,2.542387499630499639e-06,2.597656793100727883e-06,2.652926086570956127e-06,2.708195380041184370e-06,2.763464673511412614e-06,2.818733966981640858e-06,2.874003260451869102e-06,2.929272553922097346e-06,2.984541847392325589e-06,3.039811140862553833e-06,3.095080434332782077e-06,3.150349727803010321e-06,3.205619021273238565e-06,3.260888314743466808e-06,3.316157608213695052e-06,3.371426901683923296e-06,3.426696195154151540e-06,3.481965488624379784e-06 +0.000000000000000000e+00,5.678421927424044384e-08,1.135684385484808877e-07,1.703526578227213448e-07,2.271368770969618018e-07,2.839210963712022589e-07,3.407053156454426895e-07,3.974895349196831201e-07,4.542737541939235507e-07,5.110579734681639813e-07,5.678421927424044119e-07,6.246264120166448425e-07,6.814106312908852731e-07,7.381948505651257037e-07,7.949790698393661343e-07,8.517632891136065649e-07,9.085475083878469955e-07,9.653317276620874262e-07,1.022115946936327963e-06,1.078900166210568499e-06,1.135684385484809036e-06,1.192468604759049572e-06,1.249252824033290109e-06,1.306037043307530645e-06,1.362821262581771182e-06,1.419605481856011718e-06,1.476389701130252255e-06,1.533173920404492791e-06,1.589958139678733327e-06,1.646742358952973864e-06,1.703526578227214400e-06,1.760310797501454937e-06,1.817095016775695473e-06,1.873879236049936010e-06,1.930663455324176546e-06,1.987447674598417083e-06,2.044231893872657619e-06,2.101016113146898156e-06,2.157800332421138692e-06,2.214584551695379229e-06,2.271368770969619765e-06,2.328152990243860302e-06,2.384937209518100838e-06,2.441721428792341375e-06,2.498505648066581911e-06,2.555289867340822448e-06,2.612074086615062984e-06,2.668858305889303521e-06,2.725642525163544057e-06,2.782426744437784594e-06,2.839210963712025130e-06,2.895995182986265667e-06,2.952779402260506203e-06,3.009563621534746740e-06,3.066347840808987276e-06,3.123132060083227813e-06,3.179916279357468349e-06,3.236700498631708885e-06,3.293484717905949422e-06,3.350268937180189958e-06,3.407053156454430495e-06,3.463837375728671031e-06,3.520621595002911568e-06,3.577405814277152104e-06 +0.000000000000000000e+00,5.941829884180607116e-08,1.188365976836121423e-07,1.782548965254182135e-07,2.376731953672242847e-07,2.970914942090303558e-07,3.565097930508364270e-07,4.159280918926424981e-07,4.753463907344485693e-07,5.347646895762545875e-07,5.941829884180606058e-07,6.536012872598666240e-07,7.130195861016726422e-07,7.724378849434786604e-07,8.318561837852846787e-07,8.912744826270906969e-07,9.506927814688967151e-07,1.010111080310702733e-06,1.069529379152508752e-06,1.128947677994314770e-06,1.188365976836120788e-06,1.247784275677926806e-06,1.307202574519732824e-06,1.366620873361538843e-06,1.426039172203344861e-06,1.485457471045150879e-06,1.544875769886956897e-06,1.604294068728762916e-06,1.663712367570568934e-06,1.723130666412374952e-06,1.782548965254180970e-06,1.841967264095986988e-06,1.901385562937793007e-06,1.960803861779599237e-06,2.020222160621405467e-06,2.079640459463211697e-06,2.139058758305017927e-06,2.198477057146824157e-06,2.257895355988630387e-06,2.317313654830436617e-06,2.376731953672242847e-06,2.436150252514049077e-06,2.495568551355855307e-06,2.554986850197661536e-06,2.614405149039467766e-06,2.673823447881273996e-06,2.733241746723080226e-06,2.792660045564886456e-06,2.852078344406692686e-06,2.911496643248498916e-06,2.970914942090305146e-06,3.030333240932111376e-06,3.089751539773917606e-06,3.149169838615723836e-06,3.208588137457530066e-06,3.268006436299336296e-06,3.327424735141142526e-06,3.386843033982948756e-06,3.446261332824754986e-06,3.505679631666561216e-06,3.565097930508367446e-06,3.624516229350173676e-06,3.683934528191979906e-06,3.743352827033786136e-06 +0.000000000000000000e+00,5.204395527129435782e-08,1.040879105425887156e-07,1.561318658138830669e-07,2.081758210851774048e-07,2.602197763564717163e-07,3.122637316277660278e-07,3.643076868990603393e-07,4.163516421703546508e-07,4.683955974416489623e-07,5.204395527129432209e-07,5.724835079842374795e-07,6.245274632555317380e-07,6.765714185268259966e-07,7.286153737981202552e-07,7.806593290694145137e-07,8.327032843407087723e-07,8.847472396120030308e-07,9.367911948832972894e-07,9.888351501545915480e-07,1.040879105425885807e-06,1.092923060697180065e-06,1.144967015968474324e-06,1.197010971239768582e-06,1.249054926511062841e-06,1.301098881782357099e-06,1.353142837053651358e-06,1.405186792324945616e-06,1.457230747596239875e-06,1.509274702867534134e-06,1.561318658138828392e-06,1.613362613410122651e-06,1.665406568681416909e-06,1.717450523952711168e-06,1.769494479224005426e-06,1.821538434495299685e-06,1.873582389766593944e-06,1.925626345037888202e-06,1.977670300309182249e-06,2.029714255580476296e-06,2.081758210851770343e-06,2.133802166123064389e-06,2.185846121394358436e-06,2.237890076665652483e-06,2.289934031936946530e-06,2.341977987208240577e-06,2.394021942479534623e-06,2.446065897750828670e-06,2.498109853022122717e-06,2.550153808293416764e-06,2.602197763564710811e-06,2.654241718836004857e-06,2.706285674107298904e-06,2.758329629378592951e-06,2.810373584649886998e-06,2.862417539921181045e-06,2.914461495192475091e-06,2.966505450463769138e-06,3.018549405735063185e-06,3.070593361006357232e-06,3.122637316277651279e-06,3.174681271548945325e-06,3.226725226820239372e-06,3.278769182091533419e-06 +0.000000000000000000e+00,5.367199940802129837e-08,1.073439988160425967e-07,1.610159982240638885e-07,2.146879976320851670e-07,2.683599970401064720e-07,3.220319964481277770e-07,3.757039958561490820e-07,4.293759952641703869e-07,4.830479946721916919e-07,5.367199940802129440e-07,5.903919934882341960e-07,6.440639928962554481e-07,6.977359923042767001e-07,7.514079917122979522e-07,8.050799911203192042e-07,8.587519905283404563e-07,9.124239899363617083e-07,9.660959893443829603e-07,1.019767988752404212e-06,1.073439988160425464e-06,1.127111987568446716e-06,1.180783986976467969e-06,1.234455986384489221e-06,1.288127985792510473e-06,1.341799985200531725e-06,1.395471984608552977e-06,1.449143984016574229e-06,1.502815983424595481e-06,1.556487982832616733e-06,1.610159982240637985e-06,1.663831981648659237e-06,1.717503981056680489e-06,1.771175980464701741e-06,1.824847979872722993e-06,1.878519979280744245e-06,1.932191978688765497e-06,1.985863978096786537e-06,2.039535977504807578e-06,2.093207976912828618e-06,2.146879976320849658e-06,2.200551975728870699e-06,2.254223975136891739e-06,2.307895974544912779e-06,2.361567973952933819e-06,2.415239973360954860e-06,2.468911972768975900e-06,2.522583972176996940e-06,2.576255971585017981e-06,2.629927970993039021e-06,2.683599970401060061e-06,2.737271969809081101e-06,2.790943969217102142e-06,2.844615968625123182e-06,2.898287968033144222e-06,2.951959967441165263e-06,3.005631966849186303e-06,3.059303966257207343e-06,3.112975965665228383e-06,3.166647965073249424e-06,3.220319964481270464e-06,3.273991963889291504e-06,3.327663963297312545e-06,3.381335962705333585e-06 +0.000000000000000000e+00,5.672791011834316314e-08,1.134558202366863263e-07,1.701837303550295027e-07,2.269116404733726790e-07,2.836395505917158554e-07,3.403674607100590053e-07,3.970953708284021552e-07,4.538232809467453051e-07,5.105511910650884550e-07,5.672791011834316049e-07,6.240070113017747548e-07,6.807349214201179047e-07,7.374628315384610546e-07,7.941907416568042045e-07,8.509186517751473544e-07,9.076465618934905043e-07,9.643744720118336543e-07,1.021102382130176910e-06,1.077830292248520166e-06,1.134558202366863422e-06,1.191286112485206677e-06,1.248014022603549933e-06,1.304741932721893189e-06,1.361469842840236445e-06,1.418197752958579701e-06,1.474925663076922956e-06,1.531653573195266212e-06,1.588381483313609468e-06,1.645109393431952724e-06,1.701837303550295979e-06,1.758565213668639235e-06,1.815293123786982491e-06,1.872021033905325747e-06,1.928748944023669003e-06,1.985476854142012258e-06,2.042204764260355514e-06,2.098932674378698770e-06,2.155660584497042026e-06,2.212388494615385281e-06,2.269116404733728537e-06,2.325844314852071793e-06,2.382572224970415049e-06,2.439300135088758305e-06,2.496028045207101560e-06,2.552755955325444816e-06,2.609483865443788072e-06,2.666211775562131328e-06,2.722939685680474584e-06,2.779667595798817839e-06,2.836395505917161095e-06,2.893123416035504351e-06,2.949851326153847607e-06,3.006579236272190862e-06,3.063307146390534118e-06,3.120035056508877374e-06,3.176762966627220630e-06,3.233490876745563886e-06,3.290218786863907141e-06,3.346946696982250397e-06,3.403674607100593653e-06,3.460402517218936909e-06,3.517130427337280165e-06,3.573858337455623420e-06 +0.000000000000000000e+00,5.204395527128930210e-08,1.040879105425786042e-07,1.561318658138678997e-07,2.081758210851571819e-07,2.602197763564464642e-07,3.122637316277357464e-07,3.643076868990250286e-07,4.163516421703143109e-07,4.683955974416035931e-07,5.204395527128928224e-07,5.724835079841819988e-07,6.245274632554711752e-07,6.765714185267603515e-07,7.286153737980495279e-07,7.806593290693387043e-07,8.327032843406278806e-07,8.847472396119170570e-07,9.367911948832062334e-07,9.888351501544954097e-07,1.040879105425784586e-06,1.092923060697073762e-06,1.144967015968362939e-06,1.197010971239652115e-06,1.249054926510941292e-06,1.301098881782230468e-06,1.353142837053519644e-06,1.405186792324808821e-06,1.457230747596097997e-06,1.509274702867387173e-06,1.561318658138676350e-06,1.613362613409965526e-06,1.665406568681254702e-06,1.717450523952543879e-06,1.769494479223833055e-06,1.821538434495122232e-06,1.873582389766411408e-06,1.925626345037700584e-06,1.977670300308989972e-06,2.029714255580279361e-06,2.081758210851568749e-06,2.133802166122858137e-06,2.185846121394147525e-06,2.237890076665436913e-06,2.289934031936726301e-06,2.341977987208015689e-06,2.394021942479305077e-06,2.446065897750594466e-06,2.498109853021883854e-06,2.550153808293173242e-06,2.602197763564462630e-06,2.654241718835752018e-06,2.706285674107041406e-06,2.758329629378330794e-06,2.810373584649620182e-06,2.862417539920909571e-06,2.914461495192198959e-06,2.966505450463488347e-06,3.018549405734777735e-06,3.070593361006067123e-06,3.122637316277356511e-06,3.174681271548645899e-06,3.226725226819935287e-06,3.278769182091224676e-06 +0.000000000000000000e+00,5.367199940801747348e-08,1.073439988160349470e-07,1.610159982240524271e-07,2.146879976320699204e-07,2.683599970400874137e-07,3.220319964481049071e-07,3.757039958561224004e-07,4.293759952641398938e-07,4.830479946721573871e-07,5.367199940801748275e-07,5.903919934881922679e-07,6.440639928962097083e-07,6.977359923042271487e-07,7.514079917122445891e-07,8.050799911202620295e-07,8.587519905282794699e-07,9.124239899362969103e-07,9.660959893443143507e-07,1.019767988752331791e-06,1.073439988160349231e-06,1.127111987568366672e-06,1.180783986976384112e-06,1.234455986384401553e-06,1.288127985792418993e-06,1.341799985200436433e-06,1.395471984608453874e-06,1.449143984016471314e-06,1.502815983424488755e-06,1.556487982832506195e-06,1.610159982240523635e-06,1.663831981648541076e-06,1.717503981056558516e-06,1.771175980464575957e-06,1.824847979872593397e-06,1.878519979280610837e-06,1.932191978688628278e-06,1.985863978096645930e-06,2.039535977504663582e-06,2.093207976912681234e-06,2.146879976320698886e-06,2.200551975728716539e-06,2.254223975136734191e-06,2.307895974544751843e-06,2.361567973952769495e-06,2.415239973360787147e-06,2.468911972768804799e-06,2.522583972176822452e-06,2.576255971584840104e-06,2.629927970992857756e-06,2.683599970400875408e-06,2.737271969808893060e-06,2.790943969216910712e-06,2.844615968624928364e-06,2.898287968032946017e-06,2.951959967440963669e-06,3.005631966848981321e-06,3.059303966256998973e-06,3.112975965665016625e-06,3.166647965073034277e-06,3.220319964481051930e-06,3.273991963889069582e-06,3.327663963297087234e-06,3.381335962705104886e-06 +0.000000000000000000e+00,5.672791011833894121e-08,1.134558202366778824e-07,1.701837303550168236e-07,2.269116404733557648e-07,2.836395505916946796e-07,3.403674607100335943e-07,3.970953708283725091e-07,4.538232809467114238e-07,5.105511910650503385e-07,5.672791011833892533e-07,6.240070113017281680e-07,6.807349214200670828e-07,7.374628315384059975e-07,7.941907416567449122e-07,8.509186517750838270e-07,9.076465618934227417e-07,9.643744720117616565e-07,1.021102382130100677e-06,1.077830292248439698e-06,1.134558202366778718e-06,1.191286112485117739e-06,1.248014022603456760e-06,1.304741932721795780e-06,1.361469842840134801e-06,1.418197752958473821e-06,1.474925663076812842e-06,1.531653573195151863e-06,1.588381483313490883e-06,1.645109393431829904e-06,1.701837303550168924e-06,1.758565213668507945e-06,1.815293123786846966e-06,1.872021033905185986e-06,1.928748944023525007e-06,1.985476854141864028e-06,2.042204764260203048e-06,2.098932674378542069e-06,2.155660584496881089e-06,2.212388494615220110e-06,2.269116404733559131e-06,2.325844314851898151e-06,2.382572224970237172e-06,2.439300135088576193e-06,2.496028045206915213e-06,2.552755955325254234e-06,2.609483865443593254e-06,2.666211775561932275e-06,2.722939685680271296e-06,2.779667595798610316e-06,2.836395505916949337e-06,2.893123416035288357e-06,2.949851326153627378e-06,3.006579236271966399e-06,3.063307146390305419e-06,3.120035056508644440e-06,3.176762966626983461e-06,3.233490876745322481e-06,3.290218786863661502e-06,3.346946696982000522e-06,3.403674607100339543e-06,3.460402517218678564e-06,3.517130427337017584e-06,3.573858337455356605e-06 +0.000000000000000000e+00,4.879747660858575081e-08,9.759495321717150161e-08,1.463924298257572524e-07,1.951899064343430032e-07,2.439873830429287805e-07,2.927848596515145578e-07,3.415823362601003350e-07,3.903798128686861123e-07,4.391772894772718896e-07,4.879747660858576669e-07,5.367722426944434441e-07,5.855697193030292214e-07,6.343671959116149987e-07,6.831646725202007760e-07,7.319621491287865533e-07,7.807596257373723305e-07,8.295571023459581078e-07,8.783545789545438851e-07,9.271520555631296624e-07,9.759495321717155455e-07,1.024747008780301535e-06,1.073544485388887524e-06,1.122341961997473513e-06,1.171139438606059502e-06,1.219936915214645491e-06,1.268734391823231480e-06,1.317531868431817469e-06,1.366329345040403458e-06,1.415126821648989447e-06,1.463924298257575436e-06,1.512721774866161425e-06,1.561519251474747414e-06,1.610316728083333403e-06,1.659114204691919392e-06,1.707911681300505381e-06,1.756709157909091370e-06,1.805506634517677359e-06,1.854304111126263348e-06,1.903101587734849337e-06,1.951899064343435326e-06,2.000696540952021315e-06,2.049494017560607304e-06,2.098291494169193293e-06,2.147088970777779282e-06,2.195886447386365271e-06,2.244683923994951260e-06,2.293481400603537249e-06,2.342278877212123238e-06,2.391076353820709227e-06,2.439873830429295217e-06,2.488671307037881206e-06,2.537468783646467195e-06,2.586266260255053184e-06,2.635063736863639173e-06,2.683861213472225162e-06,2.732658690080811151e-06,2.781456166689397140e-06,2.830253643297983129e-06,2.879051119906569118e-06,2.927848596515155107e-06,2.976646073123741096e-06,3.025443549732327085e-06,3.074241026340913074e-06 +0.000000000000000000e+00,5.041085260154777724e-08,1.008217052030955545e-07,1.512325578046433383e-07,2.016434104061911354e-07,2.520542630077389061e-07,3.024651156092866767e-07,3.528759682108344473e-07,4.032868208123822179e-07,4.536976734139299886e-07,5.041085260154778121e-07,5.545193786170256357e-07,6.049302312185734592e-07,6.553410838201212828e-07,7.057519364216691064e-07,7.561627890232169299e-07,8.065736416247647535e-07,8.569844942263125771e-07,9.073953468278604006e-07,9.578061994294081183e-07,1.008217052030955836e-06,1.058627904632503554e-06,1.109038757234051271e-06,1.159449609835598989e-06,1.209860462437146707e-06,1.260271315038694424e-06,1.310682167640242142e-06,1.361093020241789860e-06,1.411503872843337577e-06,1.461914725444885295e-06,1.512325578046433013e-06,1.562736430647980731e-06,1.613147283249528448e-06,1.663558135851076166e-06,1.713968988452623884e-06,1.764379841054171601e-06,1.814790693655719319e-06,1.865201546257267037e-06,1.915612398858814543e-06,1.966023251460362048e-06,2.016434104061909554e-06,2.066844956663457060e-06,2.117255809265004566e-06,2.167666661866552072e-06,2.218077514468099578e-06,2.268488367069647084e-06,2.318899219671194590e-06,2.369310072272742096e-06,2.419720924874289602e-06,2.470131777475837108e-06,2.520542630077384614e-06,2.570953482678932120e-06,2.621364335280479626e-06,2.671775187882027131e-06,2.722186040483574637e-06,2.772596893085122143e-06,2.823007745686669649e-06,2.873418598288217155e-06,2.923829450889764661e-06,2.974240303491312167e-06,3.024651156092859673e-06,3.075062008694407179e-06,3.125472861295954685e-06,3.175883713897502191e-06 +0.000000000000000000e+00,5.403495113202261303e-08,1.080699022640452261e-07,1.621048533960678457e-07,2.161398045280904786e-07,2.701747556601130850e-07,3.242097067921356914e-07,3.782446579241582978e-07,4.322796090561809042e-07,4.863145601882035106e-07,5.403495113202261700e-07,5.943844624522488293e-07,6.484194135842714887e-07,7.024543647162941480e-07,7.564893158483168074e-07,8.105242669803394667e-07,8.645592181123621261e-07,9.185941692443847854e-07,9.726291203764074448e-07,1.026664071508430104e-06,1.080699022640452763e-06,1.134733973772475423e-06,1.188768924904498082e-06,1.242803876036520742e-06,1.296838827168543401e-06,1.350873778300566060e-06,1.404908729432588720e-06,1.458943680564611379e-06,1.512978631696634038e-06,1.567013582828656698e-06,1.621048533960679357e-06,1.675083485092702016e-06,1.729118436224724676e-06,1.783153387356747335e-06,1.837188338488769994e-06,1.891223289620792654e-06,1.945258240752815313e-06,1.999293191884837761e-06,2.053328143016860208e-06,2.107363094148882656e-06,2.161398045280905103e-06,2.215432996412927551e-06,2.269467947544949999e-06,2.323502898676972446e-06,2.377537849808994894e-06,2.431572800941017341e-06,2.485607752073039789e-06,2.539642703205062237e-06,2.593677654337084684e-06,2.647712605469107132e-06,2.701747556601129579e-06,2.755782507733152027e-06,2.809817458865174475e-06,2.863852409997196922e-06,2.917887361129219370e-06,2.971922312261241817e-06,3.025957263393264265e-06,3.079992214525286712e-06,3.134027165657309160e-06,3.188062116789331608e-06,3.242097067921354055e-06,3.296132019053376503e-06,3.350166970185398950e-06,3.404201921317421398e-06 +0.000000000000000000e+00,4.879747660857965614e-08,9.759495321715931228e-08,1.463924298257389618e-07,1.951899064343185981e-07,2.439873830428982344e-07,2.927848596514778707e-07,3.415823362600575069e-07,3.903798128686371432e-07,4.391772894772167795e-07,4.879747660857963629e-07,5.367722426943759992e-07,5.855697193029556354e-07,6.343671959115352717e-07,6.831646725201149080e-07,7.319621491286945443e-07,7.807596257372741806e-07,8.295571023458538169e-07,8.783545789544334532e-07,9.271520555630130894e-07,9.759495321715927257e-07,1.024747008780172362e-06,1.073544485388751998e-06,1.122341961997331635e-06,1.171139438605911271e-06,1.219936915214490907e-06,1.268734391823070543e-06,1.317531868431650180e-06,1.366329345040229816e-06,1.415126821648809452e-06,1.463924298257389089e-06,1.512721774865968725e-06,1.561519251474548361e-06,1.610316728083127997e-06,1.659114204691707634e-06,1.707911681300287270e-06,1.756709157908866906e-06,1.805506634517446543e-06,1.854304111126026179e-06,1.903101587734605815e-06,1.951899064343185451e-06,2.000696540951765088e-06,2.049494017560344724e-06,2.098291494168924360e-06,2.147088970777503997e-06,2.195886447386083633e-06,2.244683923994663269e-06,2.293481400603242905e-06,2.342278877211822542e-06,2.391076353820402178e-06,2.439873830428981814e-06,2.488671307037561451e-06,2.537468783646141087e-06,2.586266260254720723e-06,2.635063736863300359e-06,2.683861213471879996e-06,2.732658690080459632e-06,2.781456166689039268e-06,2.830253643297618905e-06,2.879051119906198541e-06,2.927848596514778177e-06,2.976646073123357813e-06,3.025443549731937450e-06,3.074241026340517086e-06 +0.000000000000000000e+00,5.041085260154229800e-08,1.008217052030845960e-07,1.512325578046269006e-07,2.016434104061692185e-07,2.520542630077115363e-07,3.024651156092538542e-07,3.528759682107961720e-07,4.032868208123384899e-07,4.536976734138808077e-07,5.041085260154231785e-07,5.545193786169656022e-07,6.049302312185080260e-07,6.553410838200504497e-07,7.057519364215928734e-07,7.561627890231352971e-07,8.065736416246777209e-07,8.569844942262201446e-07,9.073953468277625683e-07,9.578061994293049921e-07,1.008217052030847416e-06,1.058627904632389840e-06,1.109038757233932263e-06,1.159449609835474687e-06,1.209860462437017111e-06,1.260271315038559534e-06,1.310682167640101958e-06,1.361093020241644382e-06,1.411503872843186806e-06,1.461914725444729229e-06,1.512325578046271653e-06,1.562736430647814077e-06,1.613147283249356501e-06,1.663558135850898924e-06,1.713968988452441348e-06,1.764379841053983772e-06,1.814790693655526195e-06,1.865201546257068619e-06,1.915612398858611255e-06,1.966023251460154102e-06,2.016434104061696949e-06,2.066844956663239796e-06,2.117255809264782644e-06,2.167666661866325491e-06,2.218077514467868338e-06,2.268488367069411185e-06,2.318899219670954033e-06,2.369310072272496880e-06,2.419720924874039727e-06,2.470131777475582574e-06,2.520542630077125422e-06,2.570953482678668269e-06,2.621364335280211116e-06,2.671775187881753963e-06,2.722186040483296811e-06,2.772596893084839658e-06,2.823007745686382505e-06,2.873418598287925352e-06,2.923829450889468200e-06,2.974240303491011047e-06,3.024651156092553894e-06,3.075062008694096741e-06,3.125472861295639589e-06,3.175883713897182436e-06 +0.000000000000000000e+00,5.403495113201678968e-08,1.080699022640335794e-07,1.621048533960503756e-07,2.161398045280671852e-07,2.701747556600839682e-07,3.242097067921007513e-07,3.782446579241175343e-07,4.322796090561343174e-07,4.863145601881511005e-07,5.403495113201679365e-07,5.943844624521847725e-07,6.484194135842016085e-07,7.024543647162184445e-07,7.564893158482352805e-07,8.105242669802521165e-07,8.645592181122689524e-07,9.185941692442857884e-07,9.726291203763026244e-07,1.026664071508319355e-06,1.080699022640336085e-06,1.134733973772352815e-06,1.188768924904369545e-06,1.242803876036386275e-06,1.296838827168403005e-06,1.350873778300419735e-06,1.404908729432436465e-06,1.458943680564453196e-06,1.512978631696469926e-06,1.567013582828486656e-06,1.621048533960503386e-06,1.675083485092520116e-06,1.729118436224536846e-06,1.783153387356553576e-06,1.837188338488570306e-06,1.891223289620587036e-06,1.945258240752603978e-06,1.999293191884620920e-06,2.053328143016637862e-06,2.107363094148654804e-06,2.161398045280671746e-06,2.215432996412688688e-06,2.269467947544705630e-06,2.323502898676722571e-06,2.377537849808739513e-06,2.431572800940756455e-06,2.485607752072773397e-06,2.539642703204790339e-06,2.593677654336807281e-06,2.647712605468824223e-06,2.701747556600841165e-06,2.755782507732858106e-06,2.809817458864875048e-06,2.863852409996891990e-06,2.917887361128908932e-06,2.971922312260925874e-06,3.025957263392942816e-06,3.079992214524959758e-06,3.134027165656976700e-06,3.188062116788993642e-06,3.242097067921010583e-06,3.296132019053027525e-06,3.350166970185044467e-06,3.404201921317061409e-06 +0.000000000000000000e+00,4.566703083557851164e-08,9.133406167115702329e-08,1.370010925067355415e-07,1.826681233423140730e-07,2.283351541778926045e-07,2.740021850134711360e-07,3.196692158490496411e-07,3.653362466846281461e-07,4.110032775202066511e-07,4.566703083557851561e-07,5.023373391913636612e-07,5.480043700269421662e-07,5.936714008625206712e-07,6.393384316980991762e-07,6.850054625336776813e-07,7.306724933692561863e-07,7.763395242048346913e-07,8.220065550404131963e-07,8.676735858759917014e-07,9.133406167115702064e-07,9.590076475471487114e-07,1.004674678382727322e-06,1.050341709218305933e-06,1.096008740053884544e-06,1.141675770889463155e-06,1.187342801725041766e-06,1.233009832560620377e-06,1.278676863396198988e-06,1.324343894231777599e-06,1.370010925067356210e-06,1.415677955902934820e-06,1.461344986738513431e-06,1.507012017574092042e-06,1.552679048409670653e-06,1.598346079245249264e-06,1.644013110080827875e-06,1.689680140916406486e-06,1.735347171751985097e-06,1.781014202587563708e-06,1.826681233423142319e-06,1.872348264258720929e-06,1.918015295094299540e-06,1.963682325929878363e-06,2.009349356765457186e-06,2.055016387601036008e-06,2.100683418436614831e-06,2.146350449272193654e-06,2.192017480107772476e-06,2.237684510943351299e-06,2.283351541778930122e-06,2.329018572614508944e-06,2.374685603450087767e-06,2.420352634285666590e-06,2.466019665121245412e-06,2.511686695956824235e-06,2.557353726792403058e-06,2.603020757627981880e-06,2.648687788463560703e-06,2.694354819299139526e-06,2.740021850134718348e-06,2.785688880970297171e-06,2.831355911805875994e-06,2.877022942641454816e-06 +0.000000000000000000e+00,4.721323175830922206e-08,9.442646351661844411e-08,1.416396952749276728e-07,1.888529270332369147e-07,2.360661587915461566e-07,2.832793905498553985e-07,3.304926223081646404e-07,3.777058540664738823e-07,4.249190858247831242e-07,4.721323175830923661e-07,5.193455493414016081e-07,5.665587810997109029e-07,6.137720128580201977e-07,6.609852446163294926e-07,7.081984763746387874e-07,7.554117081329480823e-07,8.026249398912573771e-07,8.498381716495666720e-07,8.970514034078759668e-07,9.442646351661852617e-07,9.914778669244946624e-07,1.038691098682804063e-06,1.085904330441113464e-06,1.133117562199422865e-06,1.180330793957732265e-06,1.227544025716041666e-06,1.274757257474351067e-06,1.321970489232660467e-06,1.369183720990969868e-06,1.416396952749279269e-06,1.463610184507588670e-06,1.510823416265898070e-06,1.558036648024207471e-06,1.605249879782516872e-06,1.652463111540826273e-06,1.699676343299135673e-06,1.746889575057445074e-06,1.794102806815754475e-06,1.841316038574063875e-06,1.888529270332373276e-06,1.935742502090682677e-06,1.982955733848991866e-06,2.030168965607301055e-06,2.077382197365610244e-06,2.124595429123919433e-06,2.171808660882228622e-06,2.219021892640537811e-06,2.266235124398847000e-06,2.313448356157156189e-06,2.360661587915465378e-06,2.407874819673774567e-06,2.455088051432083756e-06,2.502301283190392945e-06,2.549514514948702134e-06,2.596727746707011323e-06,2.643940978465320511e-06,2.691154210223629700e-06,2.738367441981938889e-06,2.785580673740248078e-06,2.832793905498557267e-06,2.880007137256866456e-06,2.927220369015175645e-06,2.974433600773484834e-06 +0.000000000000000000e+00,5.149731199298648913e-08,1.029946239859729783e-07,1.544919359789594740e-07,2.059892479719459830e-07,2.574865599649324920e-07,3.089838719579190010e-07,3.604811839509055100e-07,4.119784959438920189e-07,4.634758079368785279e-07,5.149731199298650898e-07,5.664704319228517047e-07,6.179677439158383196e-07,6.694650559088249344e-07,7.209623679018115493e-07,7.724596798947981642e-07,8.239569918877847790e-07,8.754543038807713939e-07,9.269516158737580088e-07,9.784489278667446236e-07,1.029946239859731238e-06,1.081443551852717853e-06,1.132940863845704468e-06,1.184438175838691083e-06,1.235935487831677698e-06,1.287432799824664313e-06,1.338930111817650928e-06,1.390427423810637543e-06,1.441924735803624157e-06,1.493422047796610772e-06,1.544919359789597387e-06,1.596416671782584002e-06,1.647913983775570617e-06,1.699411295768557232e-06,1.750908607761543847e-06,1.802405919754530461e-06,1.853903231747517076e-06,1.905400543740503691e-06,1.956897855733490094e-06,2.008395167726476497e-06,2.059892479719462900e-06,2.111389791712449304e-06,2.162887103705435707e-06,2.214384415698422110e-06,2.265881727691408513e-06,2.317379039684394916e-06,2.368876351677381319e-06,2.420373663670367722e-06,2.471870975663354125e-06,2.523368287656340528e-06,2.574865599649326932e-06,2.626362911642313335e-06,2.677860223635299738e-06,2.729357535628286141e-06,2.780854847621272544e-06,2.832352159614258947e-06,2.883849471607245350e-06,2.935346783600231753e-06,2.986844095593218156e-06,3.038341407586204559e-06,3.089838719579190963e-06,3.141336031572177366e-06,3.192833343565163769e-06,3.244330655558150172e-06 +0.000000000000000000e+00,4.566703083557120598e-08,9.133406167114241197e-08,1.370010925067136246e-07,1.826681233422848504e-07,2.283351541778560762e-07,2.740021850134273021e-07,3.196692158489985014e-07,3.653362466845697008e-07,4.110032775201409002e-07,4.566703083557120995e-07,5.023373391912832989e-07,5.480043700268544983e-07,5.936714008624256976e-07,6.393384316979968970e-07,6.850054625335680964e-07,7.306724933691392957e-07,7.763395242047104951e-07,8.220065550402816945e-07,8.676735858758528938e-07,9.133406167114240932e-07,9.590076475469951867e-07,1.004674678382566386e-06,1.050341709218137585e-06,1.096008740053708785e-06,1.141675770889279984e-06,1.187342801724851184e-06,1.233009832560422383e-06,1.278676863395993582e-06,1.324343894231564782e-06,1.370010925067135981e-06,1.415677955902707180e-06,1.461344986738278380e-06,1.507012017573849579e-06,1.552679048409420778e-06,1.598346079244991978e-06,1.644013110080563177e-06,1.689680140916134377e-06,1.735347171751705576e-06,1.781014202587276775e-06,1.826681233422847975e-06,1.872348264258419174e-06,1.918015295093990373e-06,1.963682325929561573e-06,2.009349356765132772e-06,2.055016387600703971e-06,2.100683418436275171e-06,2.146350449271846370e-06,2.192017480107417570e-06,2.237684510942988769e-06,2.283351541778559968e-06,2.329018572614131168e-06,2.374685603449702367e-06,2.420352634285273566e-06,2.466019665120844766e-06,2.511686695956415965e-06,2.557353726791987164e-06,2.603020757627558364e-06,2.648687788463129563e-06,2.694354819298700763e-06,2.740021850134271962e-06,2.785688880969843161e-06,2.831355911805414361e-06,2.877022942640985560e-06 +0.000000000000000000e+00,4.721323175830249873e-08,9.442646351660499746e-08,1.416396952749075028e-07,1.888529270332100214e-07,2.360661587915125400e-07,2.832793905498150586e-07,3.304926223081175771e-07,3.777058540664200957e-07,4.249190858247226143e-07,4.721323175830251329e-07,5.193455493413275985e-07,5.665587810996300113e-07,6.137720128579324240e-07,6.609852446162348367e-07,7.081984763745372494e-07,7.554117081328396621e-07,8.026249398911420748e-07,8.498381716494444875e-07,8.970514034077469002e-07,9.442646351660493129e-07,9.914778669243517256e-07,1.038691098682654138e-06,1.085904330440956551e-06,1.133117562199258964e-06,1.180330793957561376e-06,1.227544025715863789e-06,1.274757257474166202e-06,1.321970489232468615e-06,1.369183720990771027e-06,1.416396952749073440e-06,1.463610184507375853e-06,1.510823416265678265e-06,1.558036648023980678e-06,1.605249879782283091e-06,1.652463111540585503e-06,1.699676343298887916e-06,1.746889575057190329e-06,1.794102806815492742e-06,1.841316038573795154e-06,1.888529270332097567e-06,1.935742502090399768e-06,1.982955733848702181e-06,2.030168965607004593e-06,2.077382197365307006e-06,2.124595429123609419e-06,2.171808660881911831e-06,2.219021892640214244e-06,2.266235124398516657e-06,2.313448356156819070e-06,2.360661587915121482e-06,2.407874819673423895e-06,2.455088051431726308e-06,2.502301283190028720e-06,2.549514514948331133e-06,2.596727746706633546e-06,2.643940978464935959e-06,2.691154210223238371e-06,2.738367441981540784e-06,2.785580673739843197e-06,2.832793905498145609e-06,2.880007137256448022e-06,2.927220369014750435e-06,2.974433600773052847e-06 +0.000000000000000000e+00,5.149731199297946141e-08,1.029946239859589228e-07,1.544919359789383776e-07,2.059892479719178192e-07,2.574865599648972872e-07,3.089838719578767552e-07,3.604811839508562232e-07,4.119784959438356912e-07,4.634758079368151593e-07,5.149731199297945744e-07,5.664704319227739894e-07,6.179677439157534045e-07,6.694650559087328196e-07,7.209623679017122347e-07,7.724596798946916498e-07,8.239569918876710649e-07,8.754543038806504799e-07,9.269516158736298950e-07,9.784489278666093101e-07,1.029946239859588725e-06,1.081443551852568140e-06,1.132940863845547555e-06,1.184438175838526970e-06,1.235935487831506386e-06,1.287432799824485801e-06,1.338930111817465216e-06,1.390427423810444631e-06,1.441924735803424046e-06,1.493422047796403461e-06,1.544919359789382876e-06,1.596416671782362291e-06,1.647913983775341706e-06,1.699411295768321121e-06,1.750908607761300536e-06,1.802405919754279951e-06,1.853903231747259367e-06,1.905400543740238782e-06,1.956897855733218197e-06,2.008395167726197824e-06,2.059892479719177450e-06,2.111389791712157077e-06,2.162887103705136704e-06,2.214384415698116331e-06,2.265881727691095958e-06,2.317379039684075585e-06,2.368876351677055211e-06,2.420373663670034838e-06,2.471870975663014465e-06,2.523368287655994092e-06,2.574865599648973719e-06,2.626362911641953346e-06,2.677860223634932972e-06,2.729357535627912599e-06,2.780854847620892226e-06,2.832352159613871853e-06,2.883849471606851480e-06,2.935346783599831107e-06,2.986844095592810734e-06,3.038341407585790360e-06,3.089838719578769987e-06,3.141336031571749614e-06,3.192833343564729241e-06,3.244330655557708868e-06 +0.000000000000000000e+00,4.267057750857346373e-08,8.534115501714692746e-08,1.280117325257203978e-07,1.706823100342938814e-07,2.133528875428673650e-07,2.560234650514408486e-07,2.986940425600143321e-07,3.413646200685878157e-07,3.840351975771612993e-07,4.267057750857347829e-07,4.693763525943082665e-07,5.120469301028818030e-07,5.547175076114553395e-07,5.973880851200288760e-07,6.400586626286024126e-07,6.827292401371759491e-07,7.253998176457494856e-07,7.680703951543230221e-07,8.107409726628965586e-07,8.534115501714700952e-07,8.960821276800436317e-07,9.387527051886171682e-07,9.814232826971907047e-07,1.024093860205764241e-06,1.066764437714337778e-06,1.109435015222911314e-06,1.152105592731484851e-06,1.194776170240058387e-06,1.237446747748631924e-06,1.280117325257205460e-06,1.322787902765778997e-06,1.365458480274352533e-06,1.408129057782926070e-06,1.450799635291499606e-06,1.493470212800073143e-06,1.536140790308646680e-06,1.578811367817220216e-06,1.621481945325793753e-06,1.664152522834367289e-06,1.706823100342940826e-06,1.749493677851514362e-06,1.792164255360087899e-06,1.834834832868661435e-06,1.877505410377234972e-06,1.920175987885808508e-06,1.962846565394382256e-06,2.005517142902956005e-06,2.048187720411529753e-06,2.090858297920103501e-06,2.133528875428677250e-06,2.176199452937250998e-06,2.218870030445824746e-06,2.261540607954398494e-06,2.304211185462972243e-06,2.346881762971545991e-06,2.389552340480119739e-06,2.432222917988693488e-06,2.474893495497267236e-06,2.517564073005840984e-06,2.560234650514414732e-06,2.602905228022988481e-06,2.645575805531562229e-06,2.688246383040135977e-06 +0.000000000000000000e+00,4.415698983184236036e-08,8.831397966368472073e-08,1.324709694955270745e-07,1.766279593273694150e-07,2.207849491592117555e-07,2.649419389910540960e-07,3.090989288228964365e-07,3.532559186547387770e-07,3.974129084865811175e-07,4.415698983184234581e-07,4.857268881502657456e-07,5.298838779821080861e-07,5.740408678139504267e-07,6.181978576457927672e-07,6.623548474776351077e-07,7.065118373094774482e-07,7.506688271413197887e-07,7.948258169731621292e-07,8.389828068050044697e-07,8.831397966368468102e-07,9.272967864686891507e-07,9.714537763005314913e-07,1.015610766132373832e-06,1.059767755964216172e-06,1.103924745796058513e-06,1.148081735627900853e-06,1.192238725459743194e-06,1.236395715291585534e-06,1.280552705123427875e-06,1.324709694955270215e-06,1.368866684787112556e-06,1.413023674618954896e-06,1.457180664450797237e-06,1.501337654282639577e-06,1.545494644114481918e-06,1.589651633946324258e-06,1.633808623778166599e-06,1.677965613610008939e-06,1.722122603441851280e-06,1.766279593273693620e-06,1.810436583105535961e-06,1.854593572937378301e-06,1.898750562769220642e-06,1.942907552601062983e-06,1.987064542432905323e-06,2.031221532264747664e-06,2.075378522096590004e-06,2.119535511928432345e-06,2.163692501760274685e-06,2.207849491592117026e-06,2.252006481423959366e-06,2.296163471255801707e-06,2.340320461087644047e-06,2.384477450919486388e-06,2.428634440751328728e-06,2.472791430583171069e-06,2.516948420415013409e-06,2.561105410246855750e-06,2.605262400078698090e-06,2.649419389910540431e-06,2.693576379742382771e-06,2.737733369574225112e-06,2.781890359406067452e-06 +0.000000000000000000e+00,4.918444746211598914e-08,9.836889492423197829e-08,1.475533423863479740e-07,1.967377898484639830e-07,2.459222373105800185e-07,2.951066847726960540e-07,3.442911322348120894e-07,3.934755796969281249e-07,4.426600271590441604e-07,4.918444746211602488e-07,5.410289220832763372e-07,5.902133695453924256e-07,6.393978170075085140e-07,6.885822644696246024e-07,7.377667119317406908e-07,7.869511593938567792e-07,8.361356068559728676e-07,8.853200543180889560e-07,9.345045017802050444e-07,9.836889492423211328e-07,1.032873396704437221e-06,1.082057844166553310e-06,1.131242291628669398e-06,1.180426739090785486e-06,1.229611186552901575e-06,1.278795634015017663e-06,1.327980081477133752e-06,1.377164528939249840e-06,1.426348976401365928e-06,1.475533423863482017e-06,1.524717871325598105e-06,1.573902318787714194e-06,1.623086766249830282e-06,1.672271213711946370e-06,1.721455661174062459e-06,1.770640108636178547e-06,1.819824556098294636e-06,1.869009003560410724e-06,1.918193451022526601e-06,1.967377898484642689e-06,2.016562345946758778e-06,2.065746793408874866e-06,2.114931240870990954e-06,2.164115688333107043e-06,2.213300135795223131e-06,2.262484583257339220e-06,2.311669030719455308e-06,2.360853478181571396e-06,2.410037925643687485e-06,2.459222373105803573e-06,2.508406820567919662e-06,2.557591268030035750e-06,2.606775715492151838e-06,2.655960162954267927e-06,2.705144610416384015e-06,2.754329057878500104e-06,2.803513505340616192e-06,2.852697952802732280e-06,2.901882400264848369e-06,2.951066847726964457e-06,3.000251295189080546e-06,3.049435742651196634e-06,3.098620190113312722e-06 +0.000000000000000000e+00,4.267057750856511913e-08,8.534115501713023826e-08,1.280117325256953574e-07,1.706823100342604765e-07,2.133528875428255957e-07,2.560234650513907148e-07,2.986940425599558339e-07,3.413646200685209531e-07,3.840351975770860722e-07,4.267057750856511913e-07,4.693763525942163105e-07,5.120469301027814296e-07,5.547175076113464958e-07,5.973880851199115620e-07,6.400586626284766282e-07,6.827292401370416944e-07,7.253998176456067605e-07,7.680703951541718267e-07,8.107409726627368929e-07,8.534115501713019591e-07,8.960821276798670253e-07,9.387527051884320915e-07,9.814232826969971577e-07,1.024093860205562224e-06,1.066764437714127290e-06,1.109435015222692356e-06,1.152105592731257422e-06,1.194776170239822489e-06,1.237446747748387555e-06,1.280117325256952621e-06,1.322787902765517687e-06,1.365458480274082753e-06,1.408129057782647820e-06,1.450799635291212886e-06,1.493470212799777952e-06,1.536140790308343018e-06,1.578811367816908084e-06,1.621481945325473151e-06,1.664152522834038217e-06,1.706823100342603283e-06,1.749493677851168349e-06,1.792164255359733415e-06,1.834834832868298482e-06,1.877505410376863548e-06,1.920175987885428614e-06,1.962846565393993468e-06,2.005517142902558323e-06,2.048187720411123177e-06,2.090858297919688032e-06,2.133528875428252886e-06,2.176199452936817741e-06,2.218870030445382595e-06,2.261540607953947449e-06,2.304211185462512304e-06,2.346881762971077158e-06,2.389552340479642013e-06,2.432222917988206867e-06,2.474893495496771722e-06,2.517564073005336576e-06,2.560234650513901430e-06,2.602905228022466285e-06,2.645575805531031139e-06,2.688246383039595994e-06 +0.000000000000000000e+00,4.415698983183447237e-08,8.831397966366894474e-08,1.324709694955034105e-07,1.766279593273378630e-07,2.207849491591723155e-07,2.649419389910067680e-07,3.090989288228412206e-07,3.532559186546756731e-07,3.974129084865101256e-07,4.415698983183445781e-07,4.857268881501790306e-07,5.298838779820134302e-07,5.740408678138478298e-07,6.181978576456822294e-07,6.623548474775166289e-07,7.065118373093510285e-07,7.506688271411854281e-07,7.948258169730198277e-07,8.389828068048542273e-07,8.831397966366886268e-07,9.272967864685230264e-07,9.714537763003574260e-07,1.015610766132191720e-06,1.059767755964026013e-06,1.103924745795860307e-06,1.148081735627694601e-06,1.192238725459528894e-06,1.236395715291363188e-06,1.280552705123197482e-06,1.324709694955031776e-06,1.368866684786866069e-06,1.413023674618700363e-06,1.457180664450534657e-06,1.501337654282368950e-06,1.545494644114203244e-06,1.589651633946037538e-06,1.633808623777871831e-06,1.677965613609706125e-06,1.722122603441540419e-06,1.766279593273374713e-06,1.810436583105209006e-06,1.854593572937043300e-06,1.898750562768877594e-06,1.942907552600711887e-06,1.987064542432546181e-06,2.031221532264380475e-06,2.075378522096214768e-06,2.119535511928049062e-06,2.163692501759883356e-06,2.207849491591717650e-06,2.252006481423551943e-06,2.296163471255386237e-06,2.340320461087220531e-06,2.384477450919054824e-06,2.428634440750889118e-06,2.472791430582723412e-06,2.516948420414557705e-06,2.561105410246391999e-06,2.605262400078226293e-06,2.649419389910060587e-06,2.693576379741894880e-06,2.737733369573729174e-06,2.781890359405563468e-06 +0.000000000000000000e+00,4.918444746210755852e-08,9.836889492421511704e-08,1.475533423863226689e-07,1.967377898484302076e-07,2.459222373105377727e-07,2.951066847726453379e-07,3.442911322347529030e-07,3.934755796968604681e-07,4.426600271589680333e-07,4.918444746210755455e-07,5.410289220831830577e-07,5.902133695452905699e-07,6.393978170073980821e-07,6.885822644695055943e-07,7.377667119316131065e-07,7.869511593937206187e-07,8.361356068558281309e-07,8.853200543179356431e-07,9.345045017800431552e-07,9.836889492421506674e-07,1.032873396704258286e-06,1.082057844166365904e-06,1.131242291628473522e-06,1.180426739090581140e-06,1.229611186552688758e-06,1.278795634014796376e-06,1.327980081476903994e-06,1.377164528939011612e-06,1.426348976401119230e-06,1.475533423863226848e-06,1.524717871325334466e-06,1.573902318787442084e-06,1.623086766249549702e-06,1.672271213711657320e-06,1.721455661173764939e-06,1.770640108635872557e-06,1.819824556097980175e-06,1.869009003560087793e-06,1.918193451022195411e-06,1.967377898484303029e-06,2.016562345946410647e-06,2.065746793408518265e-06,2.114931240870625883e-06,2.164115688332733501e-06,2.213300135794841119e-06,2.262484583256948737e-06,2.311669030719056355e-06,2.360853478181163974e-06,2.410037925643271592e-06,2.459222373105379210e-06,2.508406820567486828e-06,2.557591268029594446e-06,2.606775715491702064e-06,2.655960162953809682e-06,2.705144610415917300e-06,2.754329057878024918e-06,2.803513505340132536e-06,2.852697952802240154e-06,2.901882400264347772e-06,2.951066847726455390e-06,3.000251295188563009e-06,3.049435742650670627e-06,3.098620190112778245e-06 +0.000000000000000000e+00,3.970304349713478585e-08,7.940608699426957171e-08,1.191091304914043576e-07,1.588121739885391434e-07,1.985152174856739425e-07,2.382182609828087416e-07,2.779213044799435407e-07,3.176243479770783398e-07,3.573273914742131389e-07,3.970304349713479380e-07,4.367334784684827370e-07,4.764365219656175361e-07,5.161395654627523882e-07,5.558426089598871872e-07,5.955456524570219863e-07,6.352486959541567854e-07,6.749517394512915845e-07,7.146547829484263836e-07,7.543578264455611827e-07,7.940608699426959818e-07,8.337639134398307809e-07,8.734669569369655800e-07,9.131700004341003790e-07,9.528730439312351781e-07,9.925760874283699772e-07,1.032279130925504776e-06,1.071982174422639575e-06,1.111685217919774374e-06,1.151388261416909174e-06,1.191091304914043973e-06,1.230794348411178772e-06,1.270497391908313571e-06,1.310200435405448370e-06,1.349903478902583169e-06,1.389606522399717968e-06,1.429309565896852767e-06,1.469012609393987566e-06,1.508715652891122365e-06,1.548418696388257164e-06,1.588121739885391964e-06,1.627824783382526763e-06,1.667527826879661562e-06,1.707230870376796361e-06,1.746933913873931160e-06,1.786636957371065959e-06,1.826340000868200758e-06,1.866043044365335557e-06,1.905746087862470356e-06,1.945449131359604944e-06,1.985152174856739531e-06,2.024855218353874118e-06,2.064558261851008706e-06,2.104261305348143293e-06,2.143964348845277880e-06,2.183667392342412468e-06,2.223370435839547055e-06,2.263073479336681642e-06,2.302776522833816230e-06,2.342479566330950817e-06,2.382182609828085404e-06,2.421885653325219992e-06,2.461588696822354579e-06,2.501291740319489166e-06 +0.000000000000000000e+00,3.970219460904345934e-08,7.940438921808691869e-08,1.191065838271303780e-07,1.588087784361738374e-07,1.985109730452172967e-07,2.382131676542607561e-07,2.779153622633042154e-07,3.176175568723476747e-07,3.573197514813911341e-07,3.970219460904345934e-07,4.367241406994780528e-07,4.764263353085215121e-07,5.161285299175650244e-07,5.558307245266085367e-07,5.955329191356520490e-07,6.352351137446955613e-07,6.749373083537390735e-07,7.146395029627825858e-07,7.543416975718260981e-07,7.940438921808696104e-07,8.337460867899131227e-07,8.734482813989566350e-07,9.131504760080001472e-07,9.528526706170436595e-07,9.925548652260871718e-07,1.032257059835130684e-06,1.071959254444174196e-06,1.111661449053217709e-06,1.151363643662261221e-06,1.191065838271304733e-06,1.230768032880348245e-06,1.270470227489391758e-06,1.310172422098435270e-06,1.349874616707478782e-06,1.389576811316522295e-06,1.429279005925565807e-06,1.468981200534609319e-06,1.508683395143652831e-06,1.548385589752696344e-06,1.588087784361739856e-06,1.627789978970783368e-06,1.667492173579826881e-06,1.707194368188870393e-06,1.746896562797913905e-06,1.786598757406957417e-06,1.826300952016000930e-06,1.866003146625044442e-06,1.905705341234087954e-06,1.945407535843131467e-06,1.985109730452175191e-06,2.024811925061218915e-06,2.064514119670262639e-06,2.104216314279306363e-06,2.143918508888350087e-06,2.183620703497393811e-06,2.223322898106437535e-06,2.263025092715481259e-06,2.302727287324524983e-06,2.342429481933568707e-06,2.382131676542612431e-06,2.421833871151656155e-06,2.461536065760699879e-06,2.501238260369743603e-06 +0.000000000000000000e+00,4.120302747635824728e-08,8.240605495271649455e-08,1.236090824290747418e-07,1.648121099054329891e-07,2.060151373817912364e-07,2.472181648581494837e-07,2.884211923345077309e-07,3.296242198108659782e-07,3.708272472872242255e-07,4.120302747635824728e-07,4.532333022399407200e-07,4.944363297162989673e-07,5.356393571926571617e-07,5.768423846690153560e-07,6.180454121453735503e-07,6.592484396217317447e-07,7.004514670980899390e-07,7.416544945744481333e-07,7.828575220508063277e-07,8.240605495271645220e-07,8.652635770035227164e-07,9.064666044798809107e-07,9.476696319562391050e-07,9.888726594325972994e-07,1.030075686908955494e-06,1.071278714385313688e-06,1.112481741861671882e-06,1.153684769338030077e-06,1.194887796814388271e-06,1.236090824290746465e-06,1.277293851767104660e-06,1.318496879243462854e-06,1.359699906719821048e-06,1.400902934196179243e-06,1.442105961672537437e-06,1.483308989148895631e-06,1.524512016625253826e-06,1.565715044101612020e-06,1.606918071577970214e-06,1.648121099054328409e-06,1.689324126530686603e-06,1.730527154007044797e-06,1.771730181483402992e-06,1.812933208959761186e-06,1.854136236436119380e-06,1.895339263912477575e-06,1.936542291388835769e-06,1.977745318865194175e-06,2.018948346341552581e-06,2.060151373817910987e-06,2.101354401294269394e-06,2.142557428770627800e-06,2.183760456246986206e-06,2.224963483723344612e-06,2.266166511199703018e-06,2.307369538676061424e-06,2.348572566152419830e-06,2.389775593628778236e-06,2.430978621105136642e-06,2.472181648581495048e-06,2.513384676057853454e-06,2.554587703534211861e-06,2.595790731010570267e-06 +0.000000000000000000e+00,4.704477594433596276e-08,9.408955188867192551e-08,1.411343278330079015e-07,1.881791037773438775e-07,2.352238797216798535e-07,2.822686556660158030e-07,3.293134316103517525e-07,3.763582075546877021e-07,4.234029834990236516e-07,4.704477594433596011e-07,5.174925353876954977e-07,5.645373113320313943e-07,6.115820872763672908e-07,6.586268632207031874e-07,7.056716391650390840e-07,7.527164151093749806e-07,7.997611910537108772e-07,8.468059669980467738e-07,8.938507429423826703e-07,9.408955188867185669e-07,9.879402948310544635e-07,1.034985070775390360e-06,1.082029846719726257e-06,1.129074622664062153e-06,1.176119398608398050e-06,1.223164174552733946e-06,1.270208950497069843e-06,1.317253726441405740e-06,1.364298502385741636e-06,1.411343278330077533e-06,1.458388054274413429e-06,1.505432830218749326e-06,1.552477606163085222e-06,1.599522382107421119e-06,1.646567158051757016e-06,1.693611933996092912e-06,1.740656709940428809e-06,1.787701485884764705e-06,1.834746261829100602e-06,1.881791037773436499e-06,1.928835813717772607e-06,1.975880589662108503e-06,2.022925365606444400e-06,2.069970141550780297e-06,2.117014917495116193e-06,2.164059693439452090e-06,2.211104469383787986e-06,2.258149245328123883e-06,2.305194021272459780e-06,2.352238797216795676e-06,2.399283573161131573e-06,2.446328349105467469e-06,2.493373125049803366e-06,2.540417900994139262e-06,2.587462676938475159e-06,2.634507452882811056e-06,2.681552228827146952e-06,2.728597004771482849e-06,2.775641780715818745e-06,2.822686556660154642e-06,2.869731332604490539e-06,2.916776108548826435e-06,2.963820884493162332e-06 +0.000000000000000000e+00,3.970233216568101467e-08,7.940466433136202933e-08,1.191069964970430440e-07,1.588093286627240587e-07,1.985116608284050866e-07,2.382139929940861145e-07,2.779163251597671424e-07,3.176186573254481703e-07,3.573209894911291982e-07,3.970233216568102261e-07,4.367256538224912540e-07,4.764279859881722819e-07,5.161303181538532568e-07,5.558326503195341788e-07,5.955349824852151009e-07,6.352373146508960229e-07,6.749396468165769449e-07,7.146419789822578669e-07,7.543443111479387890e-07,7.940466433136197110e-07,8.337489754793006330e-07,8.734513076449815550e-07,9.131536398106624770e-07,9.528559719763433991e-07,9.925583041420243211e-07,1.032260636307705243e-06,1.071962968473386165e-06,1.111665300639067087e-06,1.151367632804748009e-06,1.191069964970428931e-06,1.230772297136109853e-06,1.270474629301790775e-06,1.310176961467471697e-06,1.349879293633152619e-06,1.389581625798833541e-06,1.429283957964514463e-06,1.468986290130195385e-06,1.508688622295876307e-06,1.548390954461557229e-06,1.588093286627238151e-06,1.627795618792919073e-06,1.667497950958599995e-06,1.707200283124280917e-06,1.746902615289961839e-06,1.786604947455642762e-06,1.826307279621323684e-06,1.866009611787004606e-06,1.905711943952685528e-06,1.945414276118366661e-06,1.985116608284047795e-06,2.024818940449728929e-06,2.064521272615410063e-06,2.104223604781091196e-06,2.143925936946772330e-06,2.183628269112453464e-06,2.223330601278134598e-06,2.263032933443815732e-06,2.302735265609496865e-06,2.342437597775177999e-06,2.382139929940859133e-06,2.421842262106540267e-06,2.461544594272221400e-06,2.501246926437902534e-06 +0.000000000000000000e+00,4.704675989827127085e-08,9.409351979654254169e-08,1.411402796948138059e-07,1.881870395930850569e-07,2.352337994913563079e-07,2.822805593896275589e-07,3.293273192878988364e-07,3.763740791861701138e-07,4.234208390844413913e-07,4.704675989827126688e-07,5.175143588809839462e-07,5.645611187792552237e-07,6.116078786775265011e-07,6.586546385757977786e-07,7.057013984740690561e-07,7.527481583723403335e-07,7.997949182706116110e-07,8.468416781688828885e-07,8.938884380671541659e-07,9.409351979654254434e-07,9.879819578636968267e-07,1.035028717761968104e-06,1.082075477660239382e-06,1.129122237558510659e-06,1.176168997456781937e-06,1.223215757355053214e-06,1.270262517253324492e-06,1.317309277151595769e-06,1.364356037049867046e-06,1.411402796948138324e-06,1.458449556846409601e-06,1.505496316744680879e-06,1.552543076642952156e-06,1.599589836541223434e-06,1.646636596439494711e-06,1.693683356337765989e-06,1.740730116236037266e-06,1.787776876134308544e-06,1.834823636032579821e-06,1.881870395930851099e-06,1.928917155829122376e-06,1.975963915727393653e-06,2.023010675625664931e-06,2.070057435523936208e-06,2.117104195422207486e-06,2.164150955320478763e-06,2.211197715218750041e-06,2.258244475117021318e-06,2.305291235015292596e-06,2.352337994913563873e-06,2.399384754811835151e-06,2.446431514710106428e-06,2.493478274608377706e-06,2.540525034506648983e-06,2.587571794404920260e-06,2.634618554303191538e-06,2.681665314201462815e-06,2.728712074099734093e-06,2.775758833998005370e-06,2.822805593896276648e-06,2.869852353794547925e-06,2.916899113692819203e-06,2.963945873591090480e-06 +0.000000000000000000e+00,3.970304349712570010e-08,7.940608699425140020e-08,1.191091304913771069e-07,1.588121739885028269e-07,1.985152174856285468e-07,2.382182609827542668e-07,2.779213044798799603e-07,3.176243479770056538e-07,3.573273914741313472e-07,3.970304349712570407e-07,4.367334784683827342e-07,4.764365219655084277e-07,5.161395654626341212e-07,5.558426089597598147e-07,5.955456524568855082e-07,6.352486959540112016e-07,6.749517394511368951e-07,7.146547829482625886e-07,7.543578264453882821e-07,7.940608699425139756e-07,8.337639134396396691e-07,8.734669569367653625e-07,9.131700004338910560e-07,9.528730439310167495e-07,9.925760874281423371e-07,1.032279130925268031e-06,1.071982174422393724e-06,1.111685217919519418e-06,1.151388261416645111e-06,1.191091304913770805e-06,1.230794348410896498e-06,1.270497391908022192e-06,1.310200435405147885e-06,1.349903478902273578e-06,1.389606522399399272e-06,1.429309565896524965e-06,1.469012609393650659e-06,1.508715652890776352e-06,1.548418696387902046e-06,1.588121739885027739e-06,1.627824783382153433e-06,1.667527826879279126e-06,1.707230870376404820e-06,1.746933913873530513e-06,1.786636957370656207e-06,1.826340000867781900e-06,1.866043044364907594e-06,1.905746087862033287e-06,1.945449131359158981e-06,1.985152174856284674e-06,2.024855218353410368e-06,2.064558261850536061e-06,2.104261305347661755e-06,2.143964348844787448e-06,2.183667392341913142e-06,2.223370435839038835e-06,2.263073479336164529e-06,2.302776522833290222e-06,2.342479566330415916e-06,2.382182609827541609e-06,2.421885653324667303e-06,2.461588696821792996e-06,2.501291740318918690e-06 +0.000000000000000000e+00,3.970233216567656112e-08,7.940466433135312225e-08,1.191069964970296900e-07,1.588093286627062710e-07,1.985116608283828519e-07,2.382139929940594329e-07,2.779163251597360139e-07,3.176186573254125949e-07,3.573209894910891759e-07,3.970233216567657568e-07,4.367256538224423378e-07,4.764279859881189188e-07,5.161303181537954468e-07,5.558326503194719219e-07,5.955349824851483970e-07,6.352373146508248721e-07,6.749396468165013472e-07,7.146419789821778223e-07,7.543443111478542974e-07,7.940466433135307725e-07,8.337489754792072476e-07,8.734513076448837227e-07,9.131536398105601978e-07,9.528559719762366729e-07,9.925583041419131480e-07,1.032260636307589623e-06,1.071962968473266098e-06,1.111665300638942573e-06,1.151367632804619048e-06,1.191069964970295523e-06,1.230772297135971999e-06,1.270474629301648474e-06,1.310176961467324949e-06,1.349879293633001424e-06,1.389581625798677899e-06,1.429283957964354374e-06,1.468986290130030849e-06,1.508688622295707324e-06,1.548390954461383799e-06,1.588093286627060274e-06,1.627795618792736750e-06,1.667497950958413225e-06,1.707200283124089700e-06,1.746902615289766175e-06,1.786604947455442650e-06,1.826307279621119125e-06,1.866009611786795600e-06,1.905711943952472075e-06,1.945414276118148550e-06,1.985116608283825025e-06,2.024818940449501501e-06,2.064521272615177976e-06,2.104223604780854451e-06,2.143925936946530926e-06,2.183628269112207401e-06,2.223330601277883876e-06,2.263032933443560351e-06,2.302735265609236826e-06,2.342437597774913301e-06,2.382139929940589776e-06,2.421842262106266252e-06,2.461544594271942727e-06,2.501246926437619202e-06 +0.000000000000000000e+00,4.120302747634926079e-08,8.240605495269852157e-08,1.236090824290477956e-07,1.648121099053970696e-07,2.060151373817463436e-07,2.472181648580955912e-07,2.884211923344448387e-07,3.296242198107940863e-07,3.708272472871433338e-07,4.120302747634925814e-07,4.532333022398418290e-07,4.944363297161910765e-07,5.356393571925402711e-07,5.768423846688894657e-07,6.180454121452386603e-07,6.592484396215878550e-07,7.004514670979370496e-07,7.416544945742862442e-07,7.828575220506354388e-07,8.240605495269846334e-07,8.652635770033338280e-07,9.064666044796830226e-07,9.476696319560322172e-07,9.888726594323815177e-07,1.030075686908730818e-06,1.071278714385080119e-06,1.112481741861429419e-06,1.153684769337778720e-06,1.194887796814128020e-06,1.236090824290477321e-06,1.277293851766826621e-06,1.318496879243175922e-06,1.359699906719525222e-06,1.400902934195874523e-06,1.442105961672223823e-06,1.483308989148573124e-06,1.524512016624922424e-06,1.565715044101271725e-06,1.606918071577621025e-06,1.648121099053970326e-06,1.689324126530319626e-06,1.730527154006668927e-06,1.771730181483018227e-06,1.812933208959367528e-06,1.854136236435716828e-06,1.895339263912066129e-06,1.936542291388415641e-06,1.977745318864765153e-06,2.018948346341114665e-06,2.060151373817464178e-06,2.101354401293813690e-06,2.142557428770163202e-06,2.183760456246512714e-06,2.224963483722862227e-06,2.266166511199211739e-06,2.307369538675561251e-06,2.348572566151910763e-06,2.389775593628260276e-06,2.430978621104609788e-06,2.472181648580959300e-06,2.513384676057308812e-06,2.554587703533658325e-06,2.595790731010007837e-06 +0.000000000000000000e+00,4.704477594432667848e-08,9.408955188865335696e-08,1.411343278329800288e-07,1.881791037773066875e-07,2.352238797216333461e-07,2.822686556659600047e-07,3.293134316102866898e-07,3.763582075546133749e-07,4.234029834989400600e-07,4.704477594432667451e-07,5.174925353875934302e-07,5.645373113319201153e-07,6.115820872762468004e-07,6.586268632205734855e-07,7.056716391649001706e-07,7.527164151092268557e-07,7.997611910535535408e-07,8.468059669978802259e-07,8.938507429422069110e-07,9.408955188865335961e-07,9.879402948308602812e-07,1.034985070775186860e-06,1.082029846719513440e-06,1.129074622663840019e-06,1.176119398608166598e-06,1.223164174552493177e-06,1.270208950496819757e-06,1.317253726441146336e-06,1.364298502385472915e-06,1.411343278329799494e-06,1.458388054274126073e-06,1.505432830218452653e-06,1.552477606162779232e-06,1.599522382107105811e-06,1.646567158051432390e-06,1.693611933995758970e-06,1.740656709940085549e-06,1.787701485884412128e-06,1.834746261828738707e-06,1.881791037773065286e-06,1.928835813717391866e-06,1.975880589661718445e-06,2.022925365606045024e-06,2.069970141550371603e-06,2.117014917494698182e-06,2.164059693439024762e-06,2.211104469383351341e-06,2.258149245327677920e-06,2.305194021272004499e-06,2.352238797216331079e-06,2.399283573160657658e-06,2.446328349104984237e-06,2.493373125049310816e-06,2.540417900993637395e-06,2.587462676937963975e-06,2.634507452882290554e-06,2.681552228826617133e-06,2.728597004770943712e-06,2.775641780715270292e-06,2.822686556659596871e-06,2.869731332603923450e-06,2.916776108548250029e-06,2.963820884492576608e-06 +0.000000000000000000e+00,5.346633500048050065e-08,1.069326700009610013e-07,1.603990050014415152e-07,2.138653400019220291e-07,2.673316750024025430e-07,3.207980100028830304e-07,3.742643450033635178e-07,4.277306800038440052e-07,4.811970150043245456e-07,5.346633500048050859e-07,5.881296850052856263e-07,6.415960200057661666e-07,6.950623550062467070e-07,7.485286900067272474e-07,8.019950250072077877e-07,8.554613600076883281e-07,9.089276950081688684e-07,9.623940300086495147e-07,1.015860365009130161e-06,1.069326700009610807e-06,1.122793035010091453e-06,1.176259370010572100e-06,1.229725705011052746e-06,1.283192040011533392e-06,1.336658375012014038e-06,1.390124710012494685e-06,1.443591045012975331e-06,1.497057380013455977e-06,1.550523715013936623e-06,1.603990050014417269e-06,1.657456385014897916e-06,1.710922720015378562e-06,1.764389055015859208e-06,1.817855390016339854e-06,1.871321725016820501e-06,1.924788060017301147e-06,1.978254395017781793e-06,2.031720730018262439e-06,2.085187065018743086e-06,2.138653400019223732e-06,2.192119735019704378e-06,2.245586070020185024e-06,2.299052405020665671e-06,2.352518740021146317e-06,2.405985075021626963e-06,2.459451410022107609e-06,2.512917745022588255e-06,2.566384080023068902e-06,2.619850415023549548e-06,2.673316750024030194e-06,2.726783085024510840e-06,2.780249420024991487e-06,2.833715755025472133e-06,2.887182090025952779e-06,2.940648425026433425e-06,2.994114760026914072e-06,3.047581095027394718e-06,3.101047430027875364e-06,3.154513765028356010e-06,3.207980100028836657e-06,3.261446435029317303e-06,3.314912770029797949e-06,3.368379105030278595e-06 +0.000000000000000000e+00,4.951580765588263775e-08,9.903161531176527549e-08,1.485474229676479066e-07,1.980632306235305245e-07,2.475790382794131424e-07,2.970948459352957603e-07,3.466106535911783782e-07,3.961264612470609961e-07,4.456422689029436140e-07,4.951580765588262848e-07,5.446738842147089557e-07,5.941896918705916265e-07,6.437054995264742973e-07,6.932213071823569682e-07,7.427371148382396390e-07,7.922529224941223098e-07,8.417687301500049807e-07,8.912845378058876515e-07,9.408003454617703223e-07,9.903161531176529932e-07,1.039831960773535558e-06,1.089347768429418123e-06,1.138863576085300688e-06,1.188379383741183253e-06,1.237895191397065818e-06,1.287410999052948383e-06,1.336926806708830948e-06,1.386442614364713513e-06,1.435958422020596078e-06,1.485474229676478643e-06,1.534990037332361208e-06,1.584505844988243773e-06,1.634021652644126338e-06,1.683537460300008903e-06,1.733053267955891467e-06,1.782569075611774032e-06,1.832084883267656597e-06,1.881600690923539162e-06,1.931116498579421727e-06,1.980632306235304292e-06,2.030148113891186857e-06,2.079663921547069422e-06,2.129179729202951987e-06,2.178695536858834552e-06,2.228211344514717117e-06,2.277727152170599682e-06,2.327242959826482247e-06,2.376758767482364812e-06,2.426274575138247377e-06,2.475790382794129942e-06,2.525306190450012507e-06,2.574821998105895072e-06,2.624337805761777637e-06,2.673853613417660202e-06,2.723369421073542767e-06,2.772885228729425332e-06,2.822401036385307896e-06,2.871916844041190461e-06,2.921432651697073026e-06,2.970948459352955591e-06,3.020464267008838156e-06,3.069980074664720721e-06,3.119495882320603286e-06 +0.000000000000000000e+00,4.937304181533583415e-08,9.874608363067166829e-08,1.481191254460075091e-07,1.974921672613433631e-07,2.468652090766792171e-07,2.962382508920150711e-07,3.456112927073509251e-07,3.949843345226867791e-07,4.443573763380226331e-07,4.937304181533585400e-07,5.431034599686944999e-07,5.924765017840304598e-07,6.418495435993664196e-07,6.912225854147023795e-07,7.405956272300383394e-07,7.899686690453742993e-07,8.393417108607102591e-07,8.887147526760462190e-07,9.380877944913821789e-07,9.874608363067181388e-07,1.036833878122054099e-06,1.086206919937390059e-06,1.135579961752726018e-06,1.184953003568061978e-06,1.234326045383397938e-06,1.283699087198733898e-06,1.333072129014069858e-06,1.382445170829405818e-06,1.431818212644741778e-06,1.481191254460077738e-06,1.530564296275413697e-06,1.579937338090749657e-06,1.629310379906085617e-06,1.678683421721421577e-06,1.728056463536757537e-06,1.777429505352093497e-06,1.826802547167429457e-06,1.876175588982765417e-06,1.925548630798101588e-06,1.974921672613437548e-06,2.024294714428773508e-06,2.073667756244109468e-06,2.123040798059445428e-06,2.172413839874781388e-06,2.221786881690117348e-06,2.271159923505453307e-06,2.320532965320789267e-06,2.369906007136125227e-06,2.419279048951461187e-06,2.468652090766797147e-06,2.518025132582133107e-06,2.567398174397469067e-06,2.616771216212805027e-06,2.666144258028140986e-06,2.715517299843476946e-06,2.764890341658812906e-06,2.814263383474148866e-06,2.863636425289484826e-06,2.913009467104820786e-06,2.962382508920156746e-06,3.011755550735492706e-06,3.061128592550828665e-06,3.110501634366164625e-06 +0.000000000000000000e+00,5.308023185652278711e-08,1.061604637130455742e-07,1.592406955695683746e-07,2.123209274260911749e-07,2.654011592826139753e-07,3.184813911391367491e-07,3.715616229956595230e-07,4.246418548521822969e-07,4.777220867087050178e-07,5.308023185652277388e-07,5.838825504217504597e-07,6.369627822782731806e-07,6.900430141347959016e-07,7.431232459913186225e-07,7.962034778478413434e-07,8.492837097043640644e-07,9.023639415608867853e-07,9.554441734174096121e-07,1.008524405273932439e-06,1.061604637130455266e-06,1.114684868986978093e-06,1.167765100843500919e-06,1.220845332700023746e-06,1.273925564556546573e-06,1.327005796413069400e-06,1.380086028269592227e-06,1.433166260126115053e-06,1.486246491982637880e-06,1.539326723839160707e-06,1.592406955695683534e-06,1.645487187552206361e-06,1.698567419408729188e-06,1.751647651265252014e-06,1.804727883121774841e-06,1.857808114978297668e-06,1.910888346834820495e-06,1.963968578691343533e-06,2.017048810547866572e-06,2.070129042404389611e-06,2.123209274260912649e-06,2.176289506117435688e-06,2.229369737973958726e-06,2.282449969830481765e-06,2.335530201687004803e-06,2.388610433543527842e-06,2.441690665400050881e-06,2.494770897256573919e-06,2.547851129113096958e-06,2.600931360969619996e-06,2.654011592826143035e-06,2.707091824682666073e-06,2.760172056539189112e-06,2.813252288395712151e-06,2.866332520252235189e-06,2.919412752108758228e-06,2.972492983965281266e-06,3.025573215821804305e-06,3.078653447678327343e-06,3.131733679534850382e-06,3.184813911391373421e-06,3.237894143247896459e-06,3.290974375104419498e-06,3.344054606960942536e-06 +0.000000000000000000e+00,5.257123224733607820e-08,1.051424644946721564e-07,1.577136967420082346e-07,2.102849289893443128e-07,2.628561612366803910e-07,3.154273934840164692e-07,3.679986257313525474e-07,4.205698579786886256e-07,4.731410902260247038e-07,5.257123224733607820e-07,5.782835547206968073e-07,6.308547869680328326e-07,6.834260192153688578e-07,7.359972514627048831e-07,7.885684837100409084e-07,8.411397159573769336e-07,8.937109482047129589e-07,9.462821804520489841e-07,9.988534126993850094e-07,1.051424644946720929e-06,1.103995877194056848e-06,1.156567109441392768e-06,1.209138341688728687e-06,1.261709573936064606e-06,1.314280806183400526e-06,1.366852038430736445e-06,1.419423270678072364e-06,1.471994502925408284e-06,1.524565735172744203e-06,1.577136967420080123e-06,1.629708199667416042e-06,1.682279431914751961e-06,1.734850664162087881e-06,1.787421896409423800e-06,1.839993128656759720e-06,1.892564360904095639e-06,1.945135593151431770e-06,1.997706825398767901e-06,2.050278057646104032e-06,2.102849289893440164e-06,2.155420522140776295e-06,2.207991754388112426e-06,2.260562986635448557e-06,2.313134218882784688e-06,2.365705451130120819e-06,2.418276683377456950e-06,2.470847915624793082e-06,2.523419147872129213e-06,2.575990380119465344e-06,2.628561612366801475e-06,2.681132844614137606e-06,2.733704076861473737e-06,2.786275309108809868e-06,2.838846541356146000e-06,2.891417773603482131e-06,2.943989005850818262e-06,2.996560238098154393e-06,3.049131470345490524e-06,3.101702702592826655e-06,3.154273934840162786e-06,3.206845167087498918e-06,3.259416399334835049e-06,3.311987631582171180e-06 +0.000000000000000000e+00,5.658441562766077984e-08,1.131688312553215597e-07,1.697532468829823395e-07,2.263376625106431194e-07,2.829220781383038727e-07,3.395064937659646261e-07,3.960909093936253795e-07,4.526753250212861328e-07,5.092597406489468862e-07,5.658441562766076396e-07,6.224285719042683929e-07,6.790129875319291463e-07,7.355974031595898997e-07,7.921818187872506531e-07,8.487662344149114064e-07,9.053506500425721598e-07,9.619350656702329132e-07,1.018519481297893772e-06,1.075103896925554632e-06,1.131688312553215491e-06,1.188272728180876350e-06,1.244857143808537209e-06,1.301441559436198069e-06,1.358025975063858928e-06,1.414610390691519787e-06,1.471194806319180646e-06,1.527779221946841506e-06,1.584363637574502365e-06,1.640948053202163224e-06,1.697532468829824083e-06,1.754116884457484943e-06,1.810701300085145802e-06,1.867285715712806661e-06,1.923870131340467520e-06,1.980454546968128168e-06,2.037038962595788815e-06,2.093623378223449463e-06,2.150207793851110110e-06,2.206792209478770758e-06,2.263376625106431405e-06,2.319961040734092053e-06,2.376545456361752700e-06,2.433129871989413348e-06,2.489714287617073995e-06,2.546298703244734643e-06,2.602883118872395290e-06,2.659467534500055938e-06,2.716051950127716585e-06,2.772636365755377233e-06,2.829220781383037880e-06,2.885805197010698528e-06,2.942389612638359175e-06,2.998974028266019823e-06,3.055558443893680470e-06,3.112142859521341118e-06,3.168727275149001765e-06,3.225311690776662413e-06,3.281896106404323060e-06,3.338480522031983708e-06,3.395064937659644355e-06,3.451649353287305003e-06,3.508233768914965650e-06,3.564818184542626298e-06 +0.000000000000000000e+00,4.940904850368791511e-08,9.881809700737583022e-08,1.482271455110637519e-07,1.976361940147516869e-07,2.470452425184396219e-07,2.964542910221275568e-07,3.458633395258154918e-07,3.952723880295034268e-07,4.446814365331913617e-07,4.940904850368793496e-07,5.434995335405673905e-07,5.929085820442554313e-07,6.423176305479434722e-07,6.917266790516315130e-07,7.411357275553195538e-07,7.905447760590075947e-07,8.399538245626956355e-07,8.893628730663836764e-07,9.387719215700717172e-07,9.881809700737597580e-07,1.037590018577447799e-06,1.086999067081135840e-06,1.136408115584823881e-06,1.185817164088511921e-06,1.235226212592199962e-06,1.284635261095888003e-06,1.334044309599576044e-06,1.383453358103264085e-06,1.432862406606952126e-06,1.482271455110640166e-06,1.531680503614328207e-06,1.581089552118016248e-06,1.630498600621704289e-06,1.679907649125392330e-06,1.729316697629080371e-06,1.778725746132768412e-06,1.828134794636456452e-06,1.877543843140144493e-06,1.926952891643832534e-06,1.976361940147520787e-06,2.025770988651209039e-06,2.075180037154897292e-06,2.124589085658585544e-06,2.173998134162273797e-06,2.223407182665962050e-06,2.272816231169650302e-06,2.322225279673338555e-06,2.371634328177026807e-06,2.421043376680715060e-06,2.470452425184403313e-06,2.519861473688091565e-06,2.569270522191779818e-06,2.618679570695468070e-06,2.668088619199156323e-06,2.717497667702844576e-06,2.766906716206532828e-06,2.816315764710221081e-06,2.865724813213909333e-06,2.915133861717597586e-06,2.964542910221285839e-06,3.013951958724974091e-06,3.063361007228662344e-06,3.112770055732350596e-06 +0.000000000000000000e+00,5.239566558362044818e-08,1.047913311672408964e-07,1.571869967508613578e-07,2.095826623344818192e-07,2.619783279181022806e-07,3.143739935017227156e-07,3.667696590853431505e-07,4.191653246689635855e-07,4.715609902525840204e-07,5.239566558362044554e-07,5.763523214198249432e-07,6.287479870034454311e-07,6.811436525870659190e-07,7.335393181706864069e-07,7.859349837543068948e-07,8.383306493379273827e-07,8.907263149215478706e-07,9.431219805051683585e-07,9.955176460887888463e-07,1.047913311672409334e-06,1.100308977256029822e-06,1.152704642839650310e-06,1.205100308423270798e-06,1.257495974006891286e-06,1.309891639590511774e-06,1.362287305174132262e-06,1.414682970757752749e-06,1.467078636341373237e-06,1.519474301924993725e-06,1.571869967508614213e-06,1.624265633092234701e-06,1.676661298675855189e-06,1.729056964259475677e-06,1.781452629843096165e-06,1.833848295426716653e-06,1.886243961010337140e-06,1.938639626593957628e-06,1.991035292177578116e-06,2.043430957761198604e-06,2.095826623344819092e-06,2.148222288928439580e-06,2.200617954512060068e-06,2.253013620095680556e-06,2.305409285679301044e-06,2.357804951262921531e-06,2.410200616846542019e-06,2.462596282430162507e-06,2.514991948013782995e-06,2.567387613597403483e-06,2.619783279181023971e-06,2.672178944764644459e-06,2.724574610348264947e-06,2.776970275931885435e-06,2.829365941515505922e-06,2.881761607099126410e-06,2.934157272682746898e-06,2.986552938266367386e-06,3.038948603849987874e-06,3.091344269433608362e-06,3.143739935017228850e-06,3.196135600600849338e-06,3.248531266184469825e-06,3.300926931768090313e-06 +0.000000000000000000e+00,5.346633500048161900e-08,1.069326700009632380e-07,1.603990050014448504e-07,2.138653400019264495e-07,2.673316750024080487e-07,3.207980100028896478e-07,3.742643450033712470e-07,4.277306800038528461e-07,4.811970150043344982e-07,5.346633500048162032e-07,5.881296850052979083e-07,6.415960200057796133e-07,6.950623550062613183e-07,7.485286900067430233e-07,8.019950250072247284e-07,8.554613600077064334e-07,9.089276950081881384e-07,9.623940300086698435e-07,1.015860365009151548e-06,1.069326700009633254e-06,1.122793035010114959e-06,1.176259370010596664e-06,1.229725705011078369e-06,1.283192040011560074e-06,1.336658375012041779e-06,1.390124710012523484e-06,1.443591045013005189e-06,1.497057380013486894e-06,1.550523715013968599e-06,1.603990050014450304e-06,1.657456385014932009e-06,1.710922720015413714e-06,1.764389055015895419e-06,1.817855390016377124e-06,1.871321725016858829e-06,1.924788060017340534e-06,1.978254395017822451e-06,2.031720730018304368e-06,2.085187065018786284e-06,2.138653400019268201e-06,2.192119735019750118e-06,2.245586070020232035e-06,2.299052405020713951e-06,2.352518740021195868e-06,2.405985075021677785e-06,2.459451410022159702e-06,2.512917745022641619e-06,2.566384080023123535e-06,2.619850415023605452e-06,2.673316750024087369e-06,2.726783085024569286e-06,2.780249420025051202e-06,2.833715755025533119e-06,2.887182090026015036e-06,2.940648425026496953e-06,2.994114760026978870e-06,3.047581095027460786e-06,3.101047430027942703e-06,3.154513765028424620e-06,3.207980100028906537e-06,3.261446435029388454e-06,3.314912770029870370e-06,3.368379105030352287e-06 +0.000000000000000000e+00,4.951580765588576118e-08,9.903161531177152236e-08,1.485474229676572769e-07,1.980632306235430183e-07,2.475790382794287596e-07,2.970948459353145009e-07,3.466106535912002422e-07,3.961264612470859836e-07,4.456422689029717249e-07,4.951580765588574133e-07,5.446738842147431546e-07,5.941896918706288959e-07,6.437054995265146373e-07,6.932213071824003786e-07,7.427371148382861199e-07,7.922529224941718613e-07,8.417687301500576026e-07,8.912845378059433439e-07,9.408003454618290852e-07,9.903161531177148266e-07,1.039831960773600568e-06,1.089347768429486309e-06,1.138863576085372051e-06,1.188379383741257792e-06,1.237895191397143533e-06,1.287410999053029275e-06,1.336926806708915016e-06,1.386442614364800757e-06,1.435958422020686499e-06,1.485474229676572240e-06,1.534990037332457981e-06,1.584505844988343723e-06,1.634021652644229464e-06,1.683537460300115205e-06,1.733053267956000946e-06,1.782569075611886688e-06,1.832084883267772429e-06,1.881600690923658170e-06,1.931116498579543700e-06,1.980632306235429230e-06,2.030148113891314759e-06,2.079663921547200289e-06,2.129179729203085818e-06,2.178695536858971348e-06,2.228211344514856877e-06,2.277727152170742407e-06,2.327242959826627937e-06,2.376758767482513466e-06,2.426274575138398996e-06,2.475790382794284525e-06,2.525306190450170055e-06,2.574821998106055584e-06,2.624337805761941114e-06,2.673853613417826644e-06,2.723369421073712173e-06,2.772885228729597703e-06,2.822401036385483232e-06,2.871916844041368762e-06,2.921432651697254291e-06,2.970948459353139821e-06,3.020464267009025351e-06,3.069980074664910880e-06,3.119495882320796410e-06 +0.000000000000000000e+00,4.940904850368954962e-08,9.881809700737909924e-08,1.482271455110686489e-07,1.976361940147581985e-07,2.470452425184477216e-07,2.964542910221372448e-07,3.458633395258267679e-07,3.952723880295162911e-07,4.446814365332058142e-07,4.940904850368953374e-07,5.434995335405848605e-07,5.929085820442743837e-07,6.423176305479639068e-07,6.917266790516534300e-07,7.411357275553429531e-07,7.905447760590324763e-07,8.399538245627219994e-07,8.893628730664115226e-07,9.387719215701010457e-07,9.881809700737904630e-07,1.037590018577479986e-06,1.086999067081169509e-06,1.136408115584859032e-06,1.185817164088548556e-06,1.235226212592238079e-06,1.284635261095927602e-06,1.334044309599617125e-06,1.383453358103306648e-06,1.432862406606996171e-06,1.482271455110685694e-06,1.531680503614375218e-06,1.581089552118064741e-06,1.630498600621754264e-06,1.679907649125443787e-06,1.729316697629133310e-06,1.778725746132822833e-06,1.828134794636512357e-06,1.877543843140201880e-06,1.926952891643891403e-06,1.976361940147580926e-06,2.025770988651270449e-06,2.075180037154959972e-06,2.124589085658649495e-06,2.173998134162339019e-06,2.223407182666028542e-06,2.272816231169718065e-06,2.322225279673407588e-06,2.371634328177097111e-06,2.421043376680786634e-06,2.470452425184476157e-06,2.519861473688165681e-06,2.569270522191855204e-06,2.618679570695544727e-06,2.668088619199234250e-06,2.717497667702923773e-06,2.766906716206613296e-06,2.816315764710302820e-06,2.865724813213992343e-06,2.915133861717681866e-06,2.964542910221371389e-06,3.013951958725060912e-06,3.063361007228750435e-06,3.112770055732439958e-06 +0.000000000000000000e+00,5.308023185652496425e-08,1.061604637130499285e-07,1.592406955695748861e-07,2.123209274260998305e-07,2.654011592826247749e-07,3.184813911391497193e-07,3.715616229956746637e-07,4.246418548521996081e-07,4.777220867087244996e-07,5.308023185652494440e-07,5.838825504217743884e-07,6.369627822782993328e-07,6.900430141348242772e-07,7.431232459913492216e-07,7.962034778478741660e-07,8.492837097043991104e-07,9.023639415609240548e-07,9.554441734174489992e-07,1.008524405273973944e-06,1.061604637130498888e-06,1.114684868987023832e-06,1.167765100843548777e-06,1.220845332700073721e-06,1.273925564556598666e-06,1.327005796413123610e-06,1.380086028269648554e-06,1.433166260126173499e-06,1.486246491982698443e-06,1.539326723839223388e-06,1.592406955695748332e-06,1.645487187552273276e-06,1.698567419408798221e-06,1.751647651265323165e-06,1.804727883121848110e-06,1.857808114978373054e-06,1.910888346834897998e-06,1.963968578691423155e-06,2.017048810547948311e-06,2.070129042404473467e-06,2.123209274260998623e-06,2.176289506117523779e-06,2.229369737974048935e-06,2.282449969830574091e-06,2.335530201687099248e-06,2.388610433543624404e-06,2.441690665400149560e-06,2.494770897256674716e-06,2.547851129113199872e-06,2.600931360969725028e-06,2.654011592826250185e-06,2.707091824682775341e-06,2.760172056539300497e-06,2.813252288395825653e-06,2.866332520252350809e-06,2.919412752108875965e-06,2.972492983965401121e-06,3.025573215821926278e-06,3.078653447678451434e-06,3.131733679534976590e-06,3.184813911391501746e-06,3.237894143248026902e-06,3.290974375104552058e-06,3.344054606961077215e-06 +0.000000000000000000e+00,5.257123224733918179e-08,1.051424644946783636e-07,1.577136967420175520e-07,2.102849289893567536e-07,2.628561612366959552e-07,3.154273934840351569e-07,3.679986257313743585e-07,4.205698579787135602e-07,4.731410902260527618e-07,5.257123224733920164e-07,5.782835547207313239e-07,6.308547869680706314e-07,6.834260192154099389e-07,7.359972514627492464e-07,7.885684837100885540e-07,8.411397159574278615e-07,8.937109482047671690e-07,9.462821804521064765e-07,9.988534126994457840e-07,1.051424644946785092e-06,1.103995877194124399e-06,1.156567109441463707e-06,1.209138341688803014e-06,1.261709573936142322e-06,1.314280806183481629e-06,1.366852038430820937e-06,1.419423270678160244e-06,1.471994502925499552e-06,1.524565735172838859e-06,1.577136967420178167e-06,1.629708199667517474e-06,1.682279431914856782e-06,1.734850664162196089e-06,1.787421896409535397e-06,1.839993128656874704e-06,1.892564360904214012e-06,1.945135593151553319e-06,1.997706825398892415e-06,2.050278057646231511e-06,2.102849289893570607e-06,2.155420522140909702e-06,2.207991754388248798e-06,2.260562986635587894e-06,2.313134218882926990e-06,2.365705451130266085e-06,2.418276683377605181e-06,2.470847915624944277e-06,2.523419147872283373e-06,2.575990380119622468e-06,2.628561612366961564e-06,2.681132844614300660e-06,2.733704076861639756e-06,2.786275309108978851e-06,2.838846541356317947e-06,2.891417773603657043e-06,2.943989005850996139e-06,2.996560238098335234e-06,3.049131470345674330e-06,3.101702702593013426e-06,3.154273934840352522e-06,3.206845167087691618e-06,3.259416399335030713e-06,3.311987631582369809e-06 +0.000000000000000000e+00,5.658441562766213642e-08,1.131688312553242728e-07,1.697532468829864159e-07,2.263376625106485721e-07,2.829220781383107549e-07,3.395064937659729376e-07,3.960909093936351203e-07,4.526753250212973031e-07,5.092597406489594858e-07,5.658441562766217215e-07,6.224285719042839572e-07,6.790129875319461929e-07,7.355974031596084285e-07,7.921818187872706642e-07,8.487662344149328999e-07,9.053506500425951356e-07,9.619350656702572654e-07,1.018519481297919395e-06,1.075103896925581525e-06,1.131688312553243655e-06,1.188272728180905785e-06,1.244857143808567914e-06,1.301441559436230044e-06,1.358025975063892174e-06,1.414610390691554304e-06,1.471194806319216434e-06,1.527779221946878563e-06,1.584363637574540693e-06,1.640948053202202823e-06,1.697532468829864953e-06,1.754116884457527083e-06,1.810701300085189212e-06,1.867285715712851342e-06,1.923870131340513684e-06,1.980454546968176025e-06,2.037038962595838367e-06,2.093623378223500708e-06,2.150207793851163050e-06,2.206792209478825391e-06,2.263376625106487733e-06,2.319961040734150075e-06,2.376545456361812416e-06,2.433129871989474758e-06,2.489714287617137099e-06,2.546298703244799441e-06,2.602883118872461782e-06,2.659467534500124124e-06,2.716051950127786465e-06,2.772636365755448807e-06,2.829220781383111149e-06,2.885805197010773490e-06,2.942389612638435832e-06,2.998974028266098173e-06,3.055558443893760515e-06,3.112142859521422856e-06,3.168727275149085198e-06,3.225311690776747539e-06,3.281896106404409881e-06,3.338480522032072223e-06,3.395064937659734564e-06,3.451649353287396906e-06,3.508233768915059247e-06,3.564818184542721589e-06 +0.000000000000000000e+00,5.113272748987202986e-08,1.022654549797440597e-07,1.533981824696160896e-07,2.045309099594881194e-07,2.556636374493601493e-07,3.067963649392321792e-07,3.579290924291042090e-07,4.090618199189762389e-07,4.601945474088482687e-07,5.113272748987202986e-07,5.624600023885923284e-07,6.135927298784643583e-07,6.647254573683363882e-07,7.158581848582084180e-07,7.669909123480804479e-07,8.181236398379524777e-07,8.692563673278245076e-07,9.203890948176965375e-07,9.715218223075685673e-07,1.022654549797440597e-06,1.073787277287312627e-06,1.124920004777184657e-06,1.176052732267056687e-06,1.227185459756928717e-06,1.278318187246800746e-06,1.329450914736672776e-06,1.380583642226544806e-06,1.431716369716416836e-06,1.482849097206288866e-06,1.533981824696160896e-06,1.585114552186032926e-06,1.636247279675904955e-06,1.687380007165776985e-06,1.738512734655649015e-06,1.789645462145521045e-06,1.840778189635393075e-06,1.891910917125265105e-06,1.943043644615137135e-06,1.994176372105008953e-06,2.045309099594880771e-06,2.096441827084752589e-06,2.147574554574624407e-06,2.198707282064496225e-06,2.249840009554368043e-06,2.300972737044239861e-06,2.352105464534111679e-06,2.403238192023983498e-06,2.454370919513855316e-06,2.505503647003727134e-06,2.556636374493598952e-06,2.607769101983470770e-06,2.658901829473342588e-06,2.710034556963214406e-06,2.761167284453086224e-06,2.812300011942958042e-06,2.863432739432829860e-06,2.914565466922701679e-06,2.965698194412573497e-06,3.016830921902445315e-06,3.067963649392317133e-06,3.119096376882188951e-06,3.170229104372060769e-06,3.221361831861932587e-06 +0.000000000000000000e+00,5.263807375103459195e-08,1.052761475020691839e-07,1.579142212531037692e-07,2.105522950041383413e-07,2.631903687551729399e-07,3.158284425062075385e-07,3.684665162572421370e-07,4.211045900082767356e-07,4.737426637593113342e-07,5.263807375103458798e-07,5.790188112613804254e-07,6.316568850124149711e-07,6.842949587634495167e-07,7.369330325144840623e-07,7.895711062655186080e-07,8.422091800165531536e-07,8.948472537675876992e-07,9.474853275186222448e-07,1.000123401269656790e-06,1.052761475020691336e-06,1.105399548771725882e-06,1.158037622522760427e-06,1.210675696273794973e-06,1.263313770024829519e-06,1.315951843775864064e-06,1.368589917526898610e-06,1.421227991277933156e-06,1.473866065028967701e-06,1.526504138780002247e-06,1.579142212531036792e-06,1.631780286282071338e-06,1.684418360033105884e-06,1.737056433784140429e-06,1.789694507535174975e-06,1.842332581286209521e-06,1.894970655037244066e-06,1.947608728788278612e-06,2.000246802539313157e-06,2.052884876290347703e-06,2.105522950041382249e-06,2.158161023792416794e-06,2.210799097543451340e-06,2.263437171294485886e-06,2.316075245045520431e-06,2.368713318796554977e-06,2.421351392547589522e-06,2.473989466298624068e-06,2.526627540049658614e-06,2.579265613800693159e-06,2.631903687551727705e-06,2.684541761302762251e-06,2.737179835053796796e-06,2.789817908804831342e-06,2.842455982555865888e-06,2.895094056306900433e-06,2.947732130057934979e-06,3.000370203808969524e-06,3.053008277560004070e-06,3.105646351311038616e-06,3.158284425062073161e-06,3.210922498813107707e-06,3.263560572564142253e-06,3.316198646315176798e-06 +0.000000000000000000e+00,5.459616587551741223e-08,1.091923317510348245e-07,1.637884976265522433e-07,2.183846635020696754e-07,2.729808293775871075e-07,3.275769952531045395e-07,3.821731611286219716e-07,4.367693270041394037e-07,4.913654928796568887e-07,5.459616587551743208e-07,6.005578246306917529e-07,6.551539905062091850e-07,7.097501563817266170e-07,7.643463222572440491e-07,8.189424881327614812e-07,8.735386540082789133e-07,9.281348198837963454e-07,9.827309857593137774e-07,1.037327151634831210e-06,1.091923317510348642e-06,1.146519483385866074e-06,1.201115649261383506e-06,1.255711815136900938e-06,1.310307981012418370e-06,1.364904146887935802e-06,1.419500312763453234e-06,1.474096478638970666e-06,1.528692644514488098e-06,1.583288810390005530e-06,1.637884976265522962e-06,1.692481142141040394e-06,1.747077308016557827e-06,1.801673473892075259e-06,1.856269639767592691e-06,1.910865805643109911e-06,1.965461971518627131e-06,2.020058137394144352e-06,2.074654303269661572e-06,2.129250469145178792e-06,2.183846635020696013e-06,2.238442800896213233e-06,2.293038966771730453e-06,2.347635132647247674e-06,2.402231298522764894e-06,2.456827464398282114e-06,2.511423630273799335e-06,2.566019796149316555e-06,2.620615962024833775e-06,2.675212127900350996e-06,2.729808293775868216e-06,2.784404459651385436e-06,2.839000625526902656e-06,2.893596791402419877e-06,2.948192957277937097e-06,3.002789123153454317e-06,3.057385289028971538e-06,3.111981454904488758e-06,3.166577620780005978e-06,3.221173786655523199e-06,3.275769952531040419e-06,3.330366118406557639e-06,3.384962284282074860e-06,3.439558450157592080e-06 +0.000000000000000000e+00,5.113272748987038873e-08,1.022654549797407775e-07,1.533981824696111662e-07,2.045309099594815549e-07,2.556636374493519437e-07,3.067963649392223324e-07,3.579290924290927211e-07,4.090618199189631099e-07,4.601945474088334986e-07,5.113272748987038873e-07,5.624600023885743290e-07,6.135927298784447707e-07,6.647254573683152123e-07,7.158581848581856540e-07,7.669909123480560957e-07,8.181236398379265374e-07,8.692563673277969790e-07,9.203890948176674207e-07,9.715218223075378624e-07,1.022654549797408410e-06,1.073787277287278957e-06,1.124920004777149505e-06,1.176052732267020053e-06,1.227185459756890600e-06,1.278318187246761148e-06,1.329450914736631695e-06,1.380583642226502243e-06,1.431716369716372790e-06,1.482849097206243338e-06,1.533981824696113885e-06,1.585114552185984433e-06,1.636247279675854981e-06,1.687380007165725528e-06,1.738512734655596076e-06,1.789645462145466623e-06,1.840778189635337171e-06,1.891910917125207718e-06,1.943043644615078266e-06,1.994176372104948813e-06,2.045309099594819361e-06,2.096441827084689909e-06,2.147574554574560456e-06,2.198707282064431004e-06,2.249840009554301551e-06,2.300972737044172099e-06,2.352105464534042646e-06,2.403238192023913194e-06,2.454370919513783741e-06,2.505503647003654289e-06,2.556636374493524836e-06,2.607769101983395384e-06,2.658901829473265932e-06,2.710034556963136479e-06,2.761167284453007027e-06,2.812300011942877574e-06,2.863432739432748122e-06,2.914565466922618669e-06,2.965698194412489217e-06,3.016830921902359764e-06,3.067963649392230312e-06,3.119096376882100860e-06,3.170229104371971407e-06,3.221361831861841955e-06 +0.000000000000000000e+00,5.263807375103444637e-08,1.052761475020688927e-07,1.579142212531033457e-07,2.105522950041378119e-07,2.631903687551723046e-07,3.158284425062067973e-07,3.684665162572412900e-07,4.211045900082757827e-07,4.737426637593102754e-07,5.263807375103448210e-07,5.790188112613793666e-07,6.316568850124139123e-07,6.842949587634484579e-07,7.369330325144830035e-07,7.895711062655175492e-07,8.422091800165520948e-07,8.948472537675866404e-07,9.474853275186211861e-07,1.000123401269655732e-06,1.052761475020690277e-06,1.105399548771724823e-06,1.158037622522759369e-06,1.210675696273793914e-06,1.263313770024828460e-06,1.315951843775863005e-06,1.368589917526897551e-06,1.421227991277932097e-06,1.473866065028966642e-06,1.526504138780001188e-06,1.579142212531035734e-06,1.631780286282070279e-06,1.684418360033104825e-06,1.737056433784139370e-06,1.789694507535173916e-06,1.842332581286208462e-06,1.894970655037243007e-06,1.947608728788277765e-06,2.000246802539312734e-06,2.052884876290347703e-06,2.105522950041382672e-06,2.158161023792417641e-06,2.210799097543452610e-06,2.263437171294487580e-06,2.316075245045522549e-06,2.368713318796557518e-06,2.421351392547592487e-06,2.473989466298627456e-06,2.526627540049662425e-06,2.579265613800697395e-06,2.631903687551732364e-06,2.684541761302767333e-06,2.737179835053802302e-06,2.789817908804837271e-06,2.842455982555872240e-06,2.895094056306907209e-06,2.947732130057942179e-06,3.000370203808977148e-06,3.053008277560012117e-06,3.105646351311047086e-06,3.158284425062082055e-06,3.210922498813117024e-06,3.263560572564151993e-06,3.316198646315186963e-06 +0.000000000000000000e+00,5.459616587551647917e-08,1.091923317510329583e-07,1.637884976265494375e-07,2.183846635020659167e-07,2.729808293775823958e-07,3.275769952530988750e-07,3.821731611286153542e-07,4.367693270041318333e-07,4.913654928796483125e-07,5.459616587551647917e-07,6.005578246306812708e-07,6.551539905061977500e-07,7.097501563817142292e-07,7.643463222572307083e-07,8.189424881327471875e-07,8.735386540082636667e-07,9.281348198837801459e-07,9.827309857592966250e-07,1.037327151634813210e-06,1.091923317510329795e-06,1.146519483385846380e-06,1.201115649261362965e-06,1.255711815136879550e-06,1.310307981012396135e-06,1.364904146887912720e-06,1.419500312763429305e-06,1.474096478638945890e-06,1.528692644514462475e-06,1.583288810389979061e-06,1.637884976265495646e-06,1.692481142141012231e-06,1.747077308016528816e-06,1.801673473892045401e-06,1.856269639767561986e-06,1.910865805643078571e-06,1.965461971518595368e-06,2.020058137394112164e-06,2.074654303269628961e-06,2.129250469145145758e-06,2.183846635020662555e-06,2.238442800896179352e-06,2.293038966771696148e-06,2.347635132647212945e-06,2.402231298522729742e-06,2.456827464398246539e-06,2.511423630273763336e-06,2.566019796149280132e-06,2.620615962024796929e-06,2.675212127900313726e-06,2.729808293775830523e-06,2.784404459651347320e-06,2.839000625526864117e-06,2.893596791402380913e-06,2.948192957277897710e-06,3.002789123153414507e-06,3.057385289028931304e-06,3.111981454904448101e-06,3.166577620779964897e-06,3.221173786655481694e-06,3.275769952530998491e-06,3.330366118406515288e-06,3.384962284282032085e-06,3.439558450157548881e-06 +0.000000000000000000e+00,4.728537232265671599e-08,9.457074464531343198e-08,1.418561169679701612e-07,1.891414892906268904e-07,2.364268616132836197e-07,2.837122339359403224e-07,3.309976062585970252e-07,3.782829785812537279e-07,4.255683509039104307e-07,4.728537232265671334e-07,5.201390955492238362e-07,5.674244678718805389e-07,6.147098401945372417e-07,6.619952125171939444e-07,7.092805848398506472e-07,7.565659571625073500e-07,8.038513294851640527e-07,8.511367018078207555e-07,8.984220741304774582e-07,9.457074464531341610e-07,9.929928187757907579e-07,1.040278191098447461e-06,1.087563563421104163e-06,1.134848935743760866e-06,1.182134308066417569e-06,1.229419680389074272e-06,1.276705052711730974e-06,1.323990425034387677e-06,1.371275797357044380e-06,1.418561169679701083e-06,1.465846542002357785e-06,1.513131914325014488e-06,1.560417286647671191e-06,1.607702658970327894e-06,1.654988031292984596e-06,1.702273403615641299e-06,1.749558775938298002e-06,1.796844148260954705e-06,1.844129520583611407e-06,1.891414892906268110e-06,1.938700265228924813e-06,1.985985637551581516e-06,2.033271009874238218e-06,2.080556382196894921e-06,2.127841754519551624e-06,2.175127126842208327e-06,2.222412499164865029e-06,2.269697871487521732e-06,2.316983243810178435e-06,2.364268616132835138e-06,2.411553988455491840e-06,2.458839360778148543e-06,2.506124733100805246e-06,2.553410105423461949e-06,2.600695477746118652e-06,2.647980850068775354e-06,2.695266222391432057e-06,2.742551594714088760e-06,2.789836967036745463e-06,2.837122339359402165e-06,2.884407711682058868e-06,2.931693084004715571e-06,2.978978456327372274e-06 +0.000000000000000000e+00,4.931166278235809388e-08,9.862332556471618777e-08,1.479349883470742817e-07,1.972466511294323755e-07,2.465583139117904959e-07,2.958699766941486162e-07,3.451816394765067366e-07,3.944933022588648570e-07,4.438049650412229773e-07,4.931166278235810977e-07,5.424282906059392180e-07,5.917399533882973384e-07,6.410516161706554587e-07,6.903632789530135791e-07,7.396749417353716994e-07,7.889866045177298198e-07,8.382982673000879401e-07,8.876099300824460605e-07,9.369215928648041809e-07,9.862332556471624071e-07,1.035544918429520633e-06,1.084856581211878860e-06,1.134168243994237086e-06,1.183479906776595312e-06,1.232791569558953538e-06,1.282103232341311764e-06,1.331414895123669991e-06,1.380726557906028217e-06,1.430038220688386443e-06,1.479349883470744669e-06,1.528661546253102896e-06,1.577973209035461122e-06,1.627284871817819348e-06,1.676596534600177574e-06,1.725908197382535801e-06,1.775219860164894027e-06,1.824531522947252253e-06,1.873843185729610479e-06,1.923154848511968917e-06,1.972466511294327355e-06,2.021778174076685793e-06,2.071089836859044231e-06,2.120401499641402669e-06,2.169713162423761107e-06,2.219024825206119545e-06,2.268336487988477983e-06,2.317648150770836421e-06,2.366959813553194859e-06,2.416271476335553297e-06,2.465583139117911735e-06,2.514894801900270173e-06,2.564206464682628611e-06,2.613518127464987049e-06,2.662829790247345487e-06,2.712141453029703925e-06,2.761453115812062363e-06,2.810764778594420801e-06,2.860076441376779239e-06,2.909388104159137677e-06,2.958699766941496115e-06,3.008011429723854553e-06,3.057323092506212991e-06,3.106634755288571429e-06 +0.000000000000000000e+00,5.122948286895456670e-08,1.024589657379091334e-07,1.536884486068636935e-07,2.049179314758182403e-07,2.561474143447728137e-07,3.073768972137273870e-07,3.586063800826819603e-07,4.098358629516365336e-07,4.610653458205911069e-07,5.122948286895456273e-07,5.635243115585001477e-07,6.147537944274546681e-07,6.659832772964091885e-07,7.172127601653637088e-07,7.684422430343182292e-07,8.196717259032727496e-07,8.709012087722272700e-07,9.221306916411817903e-07,9.733601745101362048e-07,1.024589657379090619e-06,1.075819140248045034e-06,1.127048623116999448e-06,1.178278105985953863e-06,1.229507588854908277e-06,1.280737071723862692e-06,1.331966554592817106e-06,1.383196037461771521e-06,1.434425520330725935e-06,1.485655003199680350e-06,1.536884486068634764e-06,1.588113968937589179e-06,1.639343451806543593e-06,1.690572934675498008e-06,1.741802417544452422e-06,1.793031900413406837e-06,1.844261383282361251e-06,1.895490866151315666e-06,1.946720349020269869e-06,1.997949831889224071e-06,2.049179314758178274e-06,2.100408797627132477e-06,2.151638280496086680e-06,2.202867763365040882e-06,2.254097246233995085e-06,2.305326729102949288e-06,2.356556211971903491e-06,2.407785694840857693e-06,2.459015177709811896e-06,2.510244660578766099e-06,2.561474143447720302e-06,2.612703626316674504e-06,2.663933109185628707e-06,2.715162592054582910e-06,2.766392074923537112e-06,2.817621557792491315e-06,2.868851040661445518e-06,2.920080523530399721e-06,2.971310006399353923e-06,3.022539489268308126e-06,3.073768972137262329e-06,3.124998455006216532e-06,3.176227937875170734e-06,3.227457420744124937e-06 +0.000000000000000000e+00,4.728537232265303007e-08,9.457074464530606015e-08,1.418561169679590968e-07,1.891414892906121468e-07,2.364268616132651967e-07,2.837122339359182466e-07,3.309976062585712965e-07,3.782829785812243465e-07,4.255683509038773964e-07,4.728537232265304463e-07,5.201390955491834962e-07,5.674244678718365991e-07,6.147098401944897020e-07,6.619952125171428048e-07,7.092805848397959077e-07,7.565659571624490106e-07,8.038513294851021134e-07,8.511367018077552163e-07,8.984220741304083192e-07,9.457074464530614220e-07,9.929928187757145249e-07,1.040278191098367628e-06,1.087563563421020731e-06,1.134848935743673833e-06,1.182134308066326936e-06,1.229419680388980039e-06,1.276705052711633142e-06,1.323990425034286245e-06,1.371275797356939348e-06,1.418561169679592451e-06,1.465846542002245554e-06,1.513131914324898656e-06,1.560417286647551759e-06,1.607702658970204862e-06,1.654988031292857965e-06,1.702273403615511068e-06,1.749558775938164171e-06,1.796844148260817274e-06,1.844129520583470376e-06,1.891414892906123479e-06,1.938700265228776582e-06,1.985985637551429897e-06,2.033271009874083211e-06,2.080556382196736526e-06,2.127841754519389841e-06,2.175127126842043155e-06,2.222412499164696470e-06,2.269697871487349785e-06,2.316983243810003099e-06,2.364268616132656414e-06,2.411553988455309728e-06,2.458839360777963043e-06,2.506124733100616358e-06,2.553410105423269672e-06,2.600695477745922987e-06,2.647980850068576302e-06,2.695266222391229616e-06,2.742551594713882931e-06,2.789836967036536245e-06,2.837122339359189560e-06,2.884407711681842875e-06,2.931693084004496189e-06,2.978978456327149504e-06 +0.000000000000000000e+00,4.931166278235564543e-08,9.862332556471129086e-08,1.479349883470669495e-07,1.972466511294226082e-07,2.465583139117782669e-07,2.958699766941338990e-07,3.451816394764895312e-07,3.944933022588451634e-07,4.438049650412007956e-07,4.931166278235564278e-07,5.424282906059121130e-07,5.917399533882677981e-07,6.410516161706234832e-07,6.903632789529791684e-07,7.396749417353348535e-07,7.889866045176905386e-07,8.382982673000462238e-07,8.876099300824019089e-07,9.369215928647575940e-07,9.862332556471132792e-07,1.035544918429468964e-06,1.084856581211824649e-06,1.134168243994180335e-06,1.183479906776536020e-06,1.232791569558891705e-06,1.282103232341247390e-06,1.331414895123603075e-06,1.380726557905958760e-06,1.430038220688314445e-06,1.479349883470670131e-06,1.528661546253025816e-06,1.577973209035381501e-06,1.627284871817737186e-06,1.676596534600092871e-06,1.725908197382448556e-06,1.775219860164804241e-06,1.824531522947159926e-06,1.873843185729515612e-06,1.923154848511871508e-06,1.972466511294227405e-06,2.021778174076583302e-06,2.071089836858939199e-06,2.120401499641295096e-06,2.169713162423650993e-06,2.219024825206006890e-06,2.268336487988362787e-06,2.317648150770718684e-06,2.366959813553074581e-06,2.416271476335430477e-06,2.465583139117786374e-06,2.514894801900142271e-06,2.564206464682498168e-06,2.613518127464854065e-06,2.662829790247209962e-06,2.712141453029565859e-06,2.761453115811921756e-06,2.810764778594277653e-06,2.860076441376633549e-06,2.909388104158989446e-06,2.958699766941345343e-06,3.008011429723701240e-06,3.057323092506057137e-06,3.106634755288413034e-06 +0.000000000000000000e+00,5.122948286895139695e-08,1.024589657379027939e-07,1.536884486068541908e-07,2.049179314758055878e-07,2.561474143447569847e-07,3.073768972137083817e-07,3.586063800826597786e-07,4.098358629516111756e-07,4.610653458205625725e-07,5.122948286895139695e-07,5.635243115584653135e-07,6.147537944274166575e-07,6.659832772963680015e-07,7.172127601653193455e-07,7.684422430342706895e-07,8.196717259032220335e-07,8.709012087721733775e-07,9.221306916411247215e-07,9.733601745100760655e-07,1.024589657379027304e-06,1.075819140247978542e-06,1.127048623116929780e-06,1.178278105985881018e-06,1.229507588854832256e-06,1.280737071723783494e-06,1.331966554592734732e-06,1.383196037461685971e-06,1.434425520330637209e-06,1.485655003199588447e-06,1.536884486068539685e-06,1.588113968937490923e-06,1.639343451806442161e-06,1.690572934675393399e-06,1.741802417544344637e-06,1.793031900413295876e-06,1.844261383282247114e-06,1.895490866151198352e-06,1.946720349020149590e-06,1.997949831889100828e-06,2.049179314758052066e-06,2.100408797627003304e-06,2.151638280495954542e-06,2.202867763364905781e-06,2.254097246233857019e-06,2.305326729102808257e-06,2.356556211971759495e-06,2.407785694840710733e-06,2.459015177709661971e-06,2.510244660578613209e-06,2.561474143447564447e-06,2.612703626316515686e-06,2.663933109185466924e-06,2.715162592054418162e-06,2.766392074923369400e-06,2.817621557792320638e-06,2.868851040661271876e-06,2.920080523530223114e-06,2.971310006399174352e-06,3.022539489268125591e-06,3.073768972137076829e-06,3.124998455006028067e-06,3.176227937874979305e-06,3.227457420743930543e-06 +0.000000000000000000e+00,4.297545762935393966e-08,8.595091525870787932e-08,1.289263728880618190e-07,1.719018305174157586e-07,2.148772881467696983e-07,2.578527457761236380e-07,3.008282034054776041e-07,3.438036610348315702e-07,3.867791186641855364e-07,4.297545762935395025e-07,4.727300339228934686e-07,5.157054915522473818e-07,5.586809491816012950e-07,6.016564068109552082e-07,6.446318644403091214e-07,6.876073220696630346e-07,7.305827796990169478e-07,7.735582373283708609e-07,8.165336949577247741e-07,8.595091525870786873e-07,9.024846102164326005e-07,9.454600678457865137e-07,9.884355254751403210e-07,1.031410983104494128e-06,1.074386440733847936e-06,1.117361898363201743e-06,1.160337355992555550e-06,1.203312813621909358e-06,1.246288271251263165e-06,1.289263728880616972e-06,1.332239186509970780e-06,1.375214644139324587e-06,1.418190101768678394e-06,1.461165559398032201e-06,1.504141017027386009e-06,1.547116474656739816e-06,1.590091932286093623e-06,1.633067389915447431e-06,1.676042847544801238e-06,1.719018305174155045e-06,1.761993762803508853e-06,1.804969220432862660e-06,1.847944678062216467e-06,1.890920135691570275e-06,1.933895593320924082e-06,1.976871050950278101e-06,2.019846508579632120e-06,2.062821966208986139e-06,2.105797423838340158e-06,2.148772881467694177e-06,2.191748339097048196e-06,2.234723796726402215e-06,2.277699254355756234e-06,2.320674711985110253e-06,2.363650169614464273e-06,2.406625627243818292e-06,2.449601084873172311e-06,2.492576542502526330e-06,2.535552000131880349e-06,2.578527457761234368e-06,2.621502915390588387e-06,2.664478373019942406e-06,2.707453830649296425e-06 +0.000000000000000000e+00,4.516111564283497263e-08,9.032223128566994525e-08,1.354833469285049245e-07,1.806444625713399170e-07,2.258055782141749095e-07,2.709666938570099019e-07,3.161278094998448944e-07,3.612889251426798869e-07,4.064500407855148794e-07,4.516111564283498718e-07,4.967722720711849173e-07,5.419333877140199097e-07,5.870945033568549022e-07,6.322556189996898947e-07,6.774167346425248872e-07,7.225778502853598797e-07,7.677389659281948721e-07,8.129000815710298646e-07,8.580611972138648571e-07,9.032223128566998496e-07,9.483834284995348420e-07,9.935445441423698345e-07,1.038705659785204827e-06,1.083866775428039819e-06,1.129027891070874812e-06,1.174189006713709804e-06,1.219350122356544797e-06,1.264511237999379789e-06,1.309672353642214782e-06,1.354833469285049774e-06,1.399994584927884767e-06,1.445155700570719759e-06,1.490316816213554752e-06,1.535477931856389744e-06,1.580639047499224737e-06,1.625800163142059729e-06,1.670961278784894722e-06,1.716122394427729714e-06,1.761283510070564707e-06,1.806444625713399699e-06,1.851605741356234692e-06,1.896766856999069684e-06,1.941927972641904677e-06,1.987089088284739669e-06,2.032250203927574662e-06,2.077411319570409654e-06,2.122572435213244646e-06,2.167733550856079639e-06,2.212894666498914631e-06,2.258055782141749624e-06,2.303216897784584616e-06,2.348378013427419609e-06,2.393539129070254601e-06,2.438700244713089594e-06,2.483861360355924586e-06,2.529022475998759579e-06,2.574183591641594571e-06,2.619344707284429564e-06,2.664505822927264556e-06,2.709666938570099549e-06,2.754828054212934541e-06,2.799989169855769534e-06,2.845150285498604526e-06 +0.000000000000000000e+00,4.746373347410161042e-08,9.492746694820322084e-08,1.423912004223048246e-07,1.898549338964064152e-07,2.373186673705080058e-07,2.847824008446095963e-07,3.322461343187112134e-07,3.797098677928128304e-07,4.271736012669144475e-07,4.746373347410160645e-07,5.221010682151176815e-07,5.695648016892192986e-07,6.170285351633209156e-07,6.644922686374225326e-07,7.119560021115241497e-07,7.594197355856257667e-07,8.068834690597273838e-07,8.543472025338290008e-07,9.018109360079306178e-07,9.492746694820322349e-07,9.967384029561338519e-07,1.044202136430235363e-06,1.091665869904336874e-06,1.139129603378438385e-06,1.186593336852539897e-06,1.234057070326641408e-06,1.281520803800742919e-06,1.328984537274844430e-06,1.376448270748945941e-06,1.423912004223047452e-06,1.471375737697148963e-06,1.518839471171250475e-06,1.566303204645351986e-06,1.613766938119453497e-06,1.661230671593555008e-06,1.708694405067656519e-06,1.756158138541758030e-06,1.803621872015859542e-06,1.851085605489961053e-06,1.898549338964062564e-06,1.946013072438163863e-06,1.993476805912265163e-06,2.040940539386366462e-06,2.088404272860467762e-06,2.135868006334569061e-06,2.183331739808670360e-06,2.230795473282771660e-06,2.278259206756872959e-06,2.325722940230974259e-06,2.373186673705075558e-06,2.420650407179176857e-06,2.468114140653278157e-06,2.515577874127379456e-06,2.563041607601480756e-06,2.610505341075582055e-06,2.657969074549683354e-06,2.705432808023784654e-06,2.752896541497885953e-06,2.800360274971987253e-06,2.847824008446088552e-06,2.895287741920189851e-06,2.942751475394291151e-06,2.990215208868392450e-06 +0.000000000000000000e+00,4.297545762934935377e-08,8.595091525869870754e-08,1.289263728880480547e-07,1.719018305173973886e-07,2.148772881467467225e-07,2.578527457760960565e-07,3.008282034054454168e-07,3.438036610347947772e-07,3.867791186641441376e-07,4.297545762934934980e-07,4.727300339228428584e-07,5.157054915521922188e-07,5.586809491815415792e-07,6.016564068108909396e-07,6.446318644402402999e-07,6.876073220695896603e-07,7.305827796989390207e-07,7.735582373282883811e-07,8.165336949576377415e-07,8.595091525869871019e-07,9.024846102163364623e-07,9.454600678456858227e-07,9.884355254750352889e-07,1.031410983104384649e-06,1.074386440733734010e-06,1.117361898363083370e-06,1.160337355992432730e-06,1.203312813621782091e-06,1.246288271251131451e-06,1.289263728880480812e-06,1.332239186509830172e-06,1.375214644139179532e-06,1.418190101768528893e-06,1.461165559397878253e-06,1.504141017027227614e-06,1.547116474656576974e-06,1.590091932285926334e-06,1.633067389915275695e-06,1.676042847544625055e-06,1.719018305173974416e-06,1.761993762803323776e-06,1.804969220432673136e-06,1.847944678062022497e-06,1.890920135691371857e-06,1.933895593320721217e-06,1.976871050950070578e-06,2.019846508579419938e-06,2.062821966208769299e-06,2.105797423838118659e-06,2.148772881467468019e-06,2.191748339096817380e-06,2.234723796726166740e-06,2.277699254355516101e-06,2.320674711984865461e-06,2.363650169614214821e-06,2.406625627243564182e-06,2.449601084872913542e-06,2.492576542502262903e-06,2.535552000131612263e-06,2.578527457760961623e-06,2.621502915390310984e-06,2.664478373019660344e-06,2.707453830649009704e-06 +0.000000000000000000e+00,4.516111564283090290e-08,9.032223128566180579e-08,1.354833469284926955e-07,1.806444625713235851e-07,2.258055782141544748e-07,2.709666938569853909e-07,3.161278094998163070e-07,3.612889251426472232e-07,4.064500407854781393e-07,4.516111564283090554e-07,4.967722720711400245e-07,5.419333877139709936e-07,5.870945033568019627e-07,6.322556189996329317e-07,6.774167346424639008e-07,7.225778502852948699e-07,7.677389659281258389e-07,8.129000815709568080e-07,8.580611972137877771e-07,9.032223128566187462e-07,9.483834284994497152e-07,9.935445441422806843e-07,1.038705659785111653e-06,1.083866775427942622e-06,1.129027891070773592e-06,1.174189006713604561e-06,1.219350122356435530e-06,1.264511237999266499e-06,1.309672353642097468e-06,1.354833469284928437e-06,1.399994584927759406e-06,1.445155700570590375e-06,1.490316816213421344e-06,1.535477931856252313e-06,1.580639047499083282e-06,1.625800163141914251e-06,1.670961278784745220e-06,1.716122394427576189e-06,1.761283510070407159e-06,1.806444625713238128e-06,1.851605741356069097e-06,1.896766856998900066e-06,1.941927972641731035e-06,1.987089088284561792e-06,2.032250203927392549e-06,2.077411319570223307e-06,2.122572435213054064e-06,2.167733550855884821e-06,2.212894666498715579e-06,2.258055782141546336e-06,2.303216897784377093e-06,2.348378013427207851e-06,2.393539129070038608e-06,2.438700244712869365e-06,2.483861360355700123e-06,2.529022475998530880e-06,2.574183591641361637e-06,2.619344707284192395e-06,2.664505822927023152e-06,2.709666938569853909e-06,2.754828054212684666e-06,2.799989169855515424e-06,2.845150285498346181e-06 +0.000000000000000000e+00,4.746373347409677969e-08,9.492746694819355937e-08,1.423912004222903457e-07,1.898549338963871452e-07,2.373186673704839447e-07,2.847824008445807443e-07,3.322461343186775438e-07,3.797098677927743434e-07,4.271736012668711429e-07,4.746373347409679424e-07,5.221010682150647420e-07,5.695648016891615945e-07,6.170285351632584469e-07,6.644922686373552994e-07,7.119560021114521519e-07,7.594197355855490044e-07,8.068834690596458568e-07,8.543472025337427093e-07,9.018109360078395618e-07,9.492746694819364143e-07,9.967384029560332667e-07,1.044202136430130119e-06,1.091665869904226972e-06,1.139129603378323824e-06,1.186593336852420677e-06,1.234057070326517529e-06,1.281520803800614382e-06,1.328984537274711234e-06,1.376448270748808087e-06,1.423912004222904939e-06,1.471375737697001792e-06,1.518839471171098644e-06,1.566303204645195496e-06,1.613766938119292349e-06,1.661230671593389201e-06,1.708694405067486054e-06,1.756158138541582906e-06,1.803621872015679759e-06,1.851085605489776611e-06,1.898549338963873464e-06,1.946013072437970316e-06,1.993476805912067381e-06,2.040940539386164445e-06,2.088404272860261509e-06,2.135868006334358573e-06,2.183331739808455637e-06,2.230795473282552702e-06,2.278259206756649766e-06,2.325722940230746830e-06,2.373186673704843894e-06,2.420650407178940959e-06,2.468114140653038023e-06,2.515577874127135087e-06,2.563041607601232151e-06,2.610505341075329216e-06,2.657969074549426280e-06,2.705432808023523344e-06,2.752896541497620408e-06,2.800360274971717473e-06,2.847824008445814537e-06,2.895287741919911601e-06,2.942751475394008665e-06,2.990215208868105729e-06 +0.000000000000000000e+00,3.854447883854715058e-08,7.708895767709430115e-08,1.156334365156414517e-07,1.541779153541886023e-07,1.927223941927357529e-07,2.312668730312829035e-07,2.698113518698300276e-07,3.083558307083771517e-07,3.469003095469242758e-07,3.854447883854713999e-07,4.239892672240185240e-07,4.625337460625656481e-07,5.010782249011127722e-07,5.396227037396598434e-07,5.781671825782069146e-07,6.167116614167539857e-07,6.552561402553010569e-07,6.938006190938481281e-07,7.323450979323951992e-07,7.708895767709422704e-07,8.094340556094893416e-07,8.479785344480364127e-07,8.865230132865834839e-07,9.250674921251305551e-07,9.636119709636776262e-07,1.002156449802224697e-06,1.040700928640771769e-06,1.079245407479318840e-06,1.117789886317865911e-06,1.156334365156412982e-06,1.194878843994960053e-06,1.233423322833507124e-06,1.271967801672054196e-06,1.310512280510601267e-06,1.349056759349148338e-06,1.387601238187695409e-06,1.426145717026242480e-06,1.464690195864789551e-06,1.503234674703336623e-06,1.541779153541883694e-06,1.580323632380430765e-06,1.618868111218977836e-06,1.657412590057524907e-06,1.695957068896071978e-06,1.734501547734619050e-06,1.773046026573166121e-06,1.811590505411713192e-06,1.850134984250260263e-06,1.888679463088807334e-06,1.927223941927354405e-06,1.965768420765901688e-06,2.004312899604448971e-06,2.042857378442996254e-06,2.081401857281543537e-06,2.119946336120090820e-06,2.158490814958638103e-06,2.197035293797185386e-06,2.235579772635732669e-06,2.274124251474279952e-06,2.312668730312827235e-06,2.351213209151374518e-06,2.389757687989921801e-06,2.428302166828469083e-06 +0.000000000000000000e+00,4.076611771102919816e-08,8.153223542205839631e-08,1.222983531330876011e-07,1.630644708441168191e-07,2.038305885551460371e-07,2.445967062661752551e-07,2.853628239772044731e-07,3.261289416882336911e-07,3.668950593992629091e-07,4.076611771102921272e-07,4.484272948213213452e-07,4.891934125323506161e-07,5.299595302433798341e-07,5.707256479544090521e-07,6.114917656654382701e-07,6.522578833764674882e-07,6.930240010874967062e-07,7.337901187985259242e-07,7.745562365095551422e-07,8.153223542205843602e-07,8.560884719316135782e-07,8.968545896426427962e-07,9.376207073536720142e-07,9.783868250647012322e-07,1.019152942775730450e-06,1.059919060486759668e-06,1.100685178197788886e-06,1.141451295908818104e-06,1.182217413619847322e-06,1.222983531330876540e-06,1.263749649041905758e-06,1.304515766752934976e-06,1.345281884463964194e-06,1.386048002174993412e-06,1.426814119886022630e-06,1.467580237597051848e-06,1.508346355308081066e-06,1.549112473019110284e-06,1.589878590730139502e-06,1.630644708441168720e-06,1.671410826152197938e-06,1.712176943863227156e-06,1.752943061574256374e-06,1.793709179285285592e-06,1.834475296996314810e-06,1.875241414707344028e-06,1.916007532418373035e-06,1.956773650129402041e-06,1.997539767840431047e-06,2.038305885551460053e-06,2.079072003262489060e-06,2.119838120973518066e-06,2.160604238684547072e-06,2.201370356395576078e-06,2.242136474106605085e-06,2.282902591817634091e-06,2.323668709528663097e-06,2.364434827239692103e-06,2.405200944950721110e-06,2.445967062661750116e-06,2.486733180372779122e-06,2.527499298083808128e-06,2.568265415794837135e-06 +0.000000000000000000e+00,4.363682918139294343e-08,8.727365836278588685e-08,1.309104875441788237e-07,1.745473167255717472e-07,2.181841459069646708e-07,2.618209750883575944e-07,3.054578042697505180e-07,3.490946334511434415e-07,3.927314626325363651e-07,4.363682918139292887e-07,4.800051209953221593e-07,5.236419501767150829e-07,5.672787793581080065e-07,6.109156085395009300e-07,6.545524377208938536e-07,6.981892669022867772e-07,7.418260960836797008e-07,7.854629252650726243e-07,8.290997544464655479e-07,8.727365836278584715e-07,9.163734128092513951e-07,9.600102419906443186e-07,1.003647071172037242e-06,1.047283900353430166e-06,1.090920729534823089e-06,1.134557558716216013e-06,1.178194387897608937e-06,1.221831217079001860e-06,1.265468046260394784e-06,1.309104875441787707e-06,1.352741704623180631e-06,1.396378533804573554e-06,1.440015362985966478e-06,1.483652192167359402e-06,1.527289021348752325e-06,1.570925850530145249e-06,1.614562679711538172e-06,1.658199508892931096e-06,1.701836338074324019e-06,1.745473167255716943e-06,1.789109996437109867e-06,1.832746825618502790e-06,1.876383654799895714e-06,1.920020483981288637e-06,1.963657313162681561e-06,2.007294142344074484e-06,2.050930971525467408e-06,2.094567800706860332e-06,2.138204629888253255e-06,2.181841459069646179e-06,2.225478288251039102e-06,2.269115117432432026e-06,2.312751946613824949e-06,2.356388775795217873e-06,2.400025604976610797e-06,2.443662434158003720e-06,2.487299263339396644e-06,2.530936092520789567e-06,2.574572921702182491e-06,2.618209750883575414e-06,2.661846580064968338e-06,2.705483409246361262e-06,2.749120238427754185e-06 +0.000000000000000000e+00,3.854447883854136693e-08,7.708895767708273386e-08,1.156334365156241008e-07,1.541779153541654677e-07,1.927223941927068214e-07,2.312668730312481751e-07,2.698113518697895288e-07,3.083558307083308825e-07,3.469003095468722362e-07,3.854447883854135899e-07,4.239892672239549436e-07,4.625337460624962973e-07,5.010782249010375980e-07,5.396227037395789517e-07,5.781671825781203054e-07,6.167116614166616591e-07,6.552561402552030128e-07,6.938006190937443665e-07,7.323450979322857202e-07,7.708895767708270739e-07,8.094340556093684276e-07,8.479785344479097813e-07,8.865230132864511350e-07,9.250674921249924887e-07,9.636119709635338424e-07,1.002156449802075196e-06,1.040700928640616550e-06,1.079245407479157903e-06,1.117789886317699257e-06,1.156334365156240611e-06,1.194878843994781965e-06,1.233423322833323318e-06,1.271967801671864672e-06,1.310512280510406026e-06,1.349056759348947379e-06,1.387601238187488733e-06,1.426145717026030087e-06,1.464690195864571440e-06,1.503234674703112794e-06,1.541779153541654148e-06,1.580323632380195502e-06,1.618868111218736855e-06,1.657412590057278209e-06,1.695957068895819563e-06,1.734501547734360916e-06,1.773046026572902270e-06,1.811590505411443624e-06,1.850134984249984977e-06,1.888679463088526331e-06,1.927223941927067685e-06,1.965768420765609038e-06,2.004312899604150392e-06,2.042857378442691746e-06,2.081401857281233100e-06,2.119946336119774453e-06,2.158490814958315807e-06,2.197035293796857161e-06,2.235579772635398514e-06,2.274124251473939868e-06,2.312668730312481222e-06,2.351213209151022575e-06,2.389757687989563929e-06,2.428302166828105283e-06 +0.000000000000000000e+00,4.076611771102394391e-08,8.153223542204788781e-08,1.222983531330718251e-07,1.630644708440957492e-07,2.038305885551196732e-07,2.445967062661435973e-07,2.853628239771675213e-07,3.261289416881914454e-07,3.668950593992153694e-07,4.076611771102392935e-07,4.484272948212632175e-07,4.891934125322870886e-07,5.299595302433110127e-07,5.707256479543349368e-07,6.114917656653588608e-07,6.522578833763827849e-07,6.930240010874067089e-07,7.337901187984306330e-07,7.745562365094545570e-07,8.153223542204784811e-07,8.560884719315024051e-07,8.968545896425263292e-07,9.376207073535502532e-07,9.783868250645741773e-07,1.019152942775598101e-06,1.059919060486622025e-06,1.100685178197645949e-06,1.141451295908669874e-06,1.182217413619693798e-06,1.222983531330717722e-06,1.263749649041741646e-06,1.304515766752765570e-06,1.345281884463789494e-06,1.386048002174813418e-06,1.426814119885837342e-06,1.467580237596861266e-06,1.508346355307885190e-06,1.549112473018909114e-06,1.589878590729933038e-06,1.630644708440956962e-06,1.671410826151980886e-06,1.712176943863004810e-06,1.752943061574028734e-06,1.793709179285052658e-06,1.834475296996076582e-06,1.875241414707100506e-06,1.916007532418124431e-06,1.956773650129148355e-06,1.997539767840172279e-06,2.038305885551196203e-06,2.079072003262220127e-06,2.119838120973244051e-06,2.160604238684267975e-06,2.201370356395291899e-06,2.242136474106315823e-06,2.282902591817339747e-06,2.323668709528363671e-06,2.364434827239387595e-06,2.405200944950411519e-06,2.445967062661435443e-06,2.486733180372459367e-06,2.527499298083483291e-06,2.568265415794507215e-06 +0.000000000000000000e+00,4.363682918138698773e-08,8.727365836277397545e-08,1.309104875441609566e-07,1.745473167255479244e-07,2.181841459069348923e-07,2.618209750883218602e-07,3.054578042697088545e-07,3.490946334510958489e-07,3.927314626324828432e-07,4.363682918138698376e-07,4.800051209952568319e-07,5.236419501766438263e-07,5.672787793580308206e-07,6.109156085394178149e-07,6.545524377208048093e-07,6.981892669021918036e-07,7.418260960835787980e-07,7.854629252649657923e-07,8.290997544463527867e-07,8.727365836277397810e-07,9.163734128091267753e-07,9.600102419905138756e-07,1.003647071171900870e-06,1.047283900353287864e-06,1.090920729534674859e-06,1.134557558716061853e-06,1.178194387897448847e-06,1.221831217078835842e-06,1.265468046260222836e-06,1.309104875441609830e-06,1.352741704622996825e-06,1.396378533804383819e-06,1.440015362985770813e-06,1.483652192167157808e-06,1.527289021348544802e-06,1.570925850529931796e-06,1.614562679711318791e-06,1.658199508892705785e-06,1.701836338074092779e-06,1.745473167255479774e-06,1.789109996436866768e-06,1.832746825618253762e-06,1.876383654799640757e-06,1.920020483981027751e-06,1.963657313162414745e-06,2.007294142343801740e-06,2.050930971525188734e-06,2.094567800706575729e-06,2.138204629887962723e-06,2.181841459069349717e-06,2.225478288250736712e-06,2.269115117432123706e-06,2.312751946613510700e-06,2.356388775794897695e-06,2.400025604976284689e-06,2.443662434157671683e-06,2.487299263339058678e-06,2.530936092520445672e-06,2.574572921701832666e-06,2.618209750883219661e-06,2.661846580064606655e-06,2.705483409245993649e-06,2.749120238427380644e-06 +0.000000000000000000e+00,3.409305361253274929e-08,6.818610722506549857e-08,1.022791608375982545e-07,1.363722144501310236e-07,1.704652680626637928e-07,2.045583216751965619e-07,2.386513752877293046e-07,2.727444289002620472e-07,3.068374825127947899e-07,3.409305361253275326e-07,3.750235897378602752e-07,4.091166433503930179e-07,4.432096969629257606e-07,4.773027505754585032e-07,5.113958041879912459e-07,5.454888578005239886e-07,5.795819114130567312e-07,6.136749650255894739e-07,6.477680186381222166e-07,6.818610722506549593e-07,7.159541258631877019e-07,7.500471794757204446e-07,7.841402330882531873e-07,8.182332867007859299e-07,8.523263403133186726e-07,8.864193939258514153e-07,9.205124475383841579e-07,9.546055011509167947e-07,9.886985547634494315e-07,1.022791608375982068e-06,1.056884661988514705e-06,1.090977715601047342e-06,1.125070769213579979e-06,1.159163822826112615e-06,1.193256876438645252e-06,1.227349930051177889e-06,1.261442983663710526e-06,1.295536037276243163e-06,1.329629090888775799e-06,1.363722144501308436e-06,1.397815198113841073e-06,1.431908251726373710e-06,1.466001305338906347e-06,1.500094358951438983e-06,1.534187412563971620e-06,1.568280466176504257e-06,1.602373519789036894e-06,1.636466573401569531e-06,1.670559627014102167e-06,1.704652680626634804e-06,1.738745734239167441e-06,1.772838787851700078e-06,1.806931841464232714e-06,1.841024895076765351e-06,1.875117948689297988e-06,1.909211002301830625e-06,1.943304055914363262e-06,1.977397109526895898e-06,2.011490163139428535e-06,2.045583216751961172e-06,2.079676270364493809e-06,2.113769323977026446e-06,2.147862377589559082e-06 +0.000000000000000000e+00,3.632022435772892239e-08,7.264044871545784478e-08,1.089606730731867672e-07,1.452808974309156896e-07,1.816011217886446119e-07,2.179213461463735343e-07,2.542415705041024567e-07,2.905617948618313791e-07,3.268820192195603015e-07,3.632022435772892239e-07,3.995224679350181463e-07,4.358426922927470687e-07,4.721629166504759910e-07,5.084831410082049134e-07,5.448033653659337829e-07,5.811235897236626523e-07,6.174438140813915218e-07,6.537640384391203912e-07,6.900842627968492607e-07,7.264044871545781301e-07,7.627247115123069996e-07,7.990449358700358690e-07,8.353651602277647385e-07,8.716853845854936079e-07,9.080056089432224774e-07,9.443258333009513468e-07,9.806460576586802163e-07,1.016966282016409192e-06,1.053286506374138167e-06,1.089606730731867142e-06,1.125926955089596118e-06,1.162247179447325093e-06,1.198567403805054068e-06,1.234887628162783044e-06,1.271207852520512019e-06,1.307528076878240994e-06,1.343848301235969970e-06,1.380168525593698945e-06,1.416488749951427920e-06,1.452808974309156896e-06,1.489129198666885871e-06,1.525449423024614846e-06,1.561769647382343822e-06,1.598089871740072797e-06,1.634410096097801772e-06,1.670730320455530747e-06,1.707050544813259723e-06,1.743370769170988698e-06,1.779690993528717673e-06,1.816011217886446649e-06,1.852331442244175624e-06,1.888651666601904599e-06,1.924971890959633787e-06,1.961292115317362974e-06,1.997612339675092161e-06,2.033932564032821348e-06,2.070252788390550535e-06,2.106573012748279722e-06,2.142893237106008909e-06,2.179213461463738096e-06,2.215533685821467283e-06,2.251853910179196470e-06,2.288174134536925657e-06 +0.000000000000000000e+00,3.986710932914615127e-08,7.973421865829230254e-08,1.196013279874384604e-07,1.594684373165846316e-07,1.993355466457308027e-07,2.392026559748769738e-07,2.790697653040231184e-07,3.189368746331692631e-07,3.588039839623154078e-07,3.986710932914615524e-07,4.385382026206076971e-07,4.784053119497538417e-07,5.182724212788999864e-07,5.581395306080461310e-07,5.980066399371922757e-07,6.378737492663384203e-07,6.777408585954845650e-07,7.176079679246307096e-07,7.574750772537768543e-07,7.973421865829229989e-07,8.372092959120691436e-07,8.770764052412152882e-07,9.169435145703614329e-07,9.568106238995074717e-07,9.966777332286535104e-07,1.036544842557799549e-06,1.076411951886945588e-06,1.116279061216091627e-06,1.156146170545237666e-06,1.196013279874383704e-06,1.235880389203529743e-06,1.275747498532675782e-06,1.315614607861821821e-06,1.355481717190967859e-06,1.395348826520113898e-06,1.435215935849259937e-06,1.475083045178405976e-06,1.514950154507552014e-06,1.554817263836698053e-06,1.594684373165844092e-06,1.634551482494990131e-06,1.674418591824136170e-06,1.714285701153282208e-06,1.754152810482428247e-06,1.794019919811574286e-06,1.833887029140720325e-06,1.873754138469866363e-06,1.913621247799012402e-06,1.953488357128158653e-06,1.993355466457304903e-06,2.033222575786451154e-06,2.073089685115597404e-06,2.112956794444743655e-06,2.152823903773889905e-06,2.192691013103036156e-06,2.232558122432182406e-06,2.272425231761328657e-06,2.312292341090474908e-06,2.352159450419621158e-06,2.392026559748767409e-06,2.431893669077913659e-06,2.471760778407059910e-06,2.511627887736206160e-06 +0.000000000000000000e+00,3.409305361252605243e-08,6.818610722505210486e-08,1.022791608375781639e-07,1.363722144501042362e-07,1.704652680626303085e-07,2.045583216751563808e-07,2.386513752876824530e-07,2.727444289002085253e-07,3.068374825127345976e-07,3.409305361252606699e-07,3.750235897377867422e-07,4.091166433503128145e-07,4.432096969628388868e-07,4.773027505753650120e-07,5.113958041878910843e-07,5.454888578004171565e-07,5.795819114129432288e-07,6.136749650254693011e-07,6.477680186379953734e-07,6.818610722505214457e-07,7.159541258630475180e-07,7.500471794755735903e-07,7.841402330880996625e-07,8.182332867006257348e-07,8.523263403131518071e-07,8.864193939256778794e-07,9.205124475382039517e-07,9.546055011507300240e-07,9.886985547632560962e-07,1.022791608375782169e-06,1.056884661988308241e-06,1.090977715600834313e-06,1.125070769213360385e-06,1.159163822825886458e-06,1.193256876438412530e-06,1.227349930050938602e-06,1.261442983663464675e-06,1.295536037275990747e-06,1.329629090888516819e-06,1.363722144501042891e-06,1.397815198113568964e-06,1.431908251726095036e-06,1.466001305338621108e-06,1.500094358951147181e-06,1.534187412563673253e-06,1.568280466176199325e-06,1.602373519788725397e-06,1.636466573401251470e-06,1.670559627013777542e-06,1.704652680626303614e-06,1.738745734238829686e-06,1.772838787851355759e-06,1.806931841463881831e-06,1.841024895076407903e-06,1.875117948688933976e-06,1.909211002301460048e-06,1.943304055913986332e-06,1.977397109526512616e-06,2.011490163139038900e-06,2.045583216751565184e-06,2.079676270364091468e-06,2.113769323976617752e-06,2.147862377589144036e-06 +0.000000000000000000e+00,3.632022435772261596e-08,7.264044871544523193e-08,1.089606730731678413e-07,1.452808974308904374e-07,1.816011217886130335e-07,2.179213461463356296e-07,2.542415705040582522e-07,2.905617948617808748e-07,3.268820192195034973e-07,3.632022435772261199e-07,3.995224679349487425e-07,4.358426922926713651e-07,4.721629166503939877e-07,5.084831410081166102e-07,5.448033653658392328e-07,5.811235897235618554e-07,6.174438140812844780e-07,6.537640384390071006e-07,6.900842627967297231e-07,7.264044871544523457e-07,7.627247115121749683e-07,7.990449358698975909e-07,8.353651602276202135e-07,8.716853845853428361e-07,9.080056089430654586e-07,9.443258333007880812e-07,9.806460576585105979e-07,1.016966282016233009e-06,1.053286506373955420e-06,1.089606730731677830e-06,1.125926955089400241e-06,1.162247179447122652e-06,1.198567403804845063e-06,1.234887628162567474e-06,1.271207852520289884e-06,1.307528076878012295e-06,1.343848301235734706e-06,1.380168525593457117e-06,1.416488749951179528e-06,1.452808974308901939e-06,1.489129198666624349e-06,1.525449423024346760e-06,1.561769647382069171e-06,1.598089871739791582e-06,1.634410096097513993e-06,1.670730320455236404e-06,1.707050544812958814e-06,1.743370769170681225e-06,1.779690993528403636e-06,1.816011217886126047e-06,1.852331442243848458e-06,1.888651666601570868e-06,1.924971890959293279e-06,1.961292115317015690e-06,1.997612339674738101e-06,2.033932564032460512e-06,2.070252788390182923e-06,2.106573012747905333e-06,2.142893237105627744e-06,2.179213461463350155e-06,2.215533685821072566e-06,2.251853910178794977e-06,2.288174134536517388e-06 +0.000000000000000000e+00,3.986710932913905737e-08,7.973421865827811474e-08,1.196013279874171787e-07,1.594684373165562559e-07,1.993355466456953332e-07,2.392026559748344104e-07,2.790697653039734611e-07,3.189368746331125119e-07,3.588039839622515626e-07,3.986710932913906134e-07,4.385382026205296641e-07,4.784053119496687149e-07,5.182724212788077657e-07,5.581395306079468164e-07,5.980066399370858672e-07,6.378737492662249179e-07,6.777408585953639687e-07,7.176079679245030194e-07,7.574750772536420702e-07,7.973421865827811209e-07,8.372092959119201717e-07,8.770764052410592224e-07,9.169435145701982732e-07,9.568106238993372180e-07,9.966777332284762688e-07,1.036544842557615320e-06,1.076411951886754370e-06,1.116279061215893421e-06,1.156146170545032472e-06,1.196013279874171523e-06,1.235880389203310573e-06,1.275747498532449624e-06,1.315614607861588675e-06,1.355481717190727726e-06,1.395348826519866776e-06,1.435215935849005827e-06,1.475083045178144878e-06,1.514950154507283929e-06,1.554817263836422979e-06,1.594684373165562030e-06,1.634551482494701081e-06,1.674418591823840132e-06,1.714285701152979182e-06,1.754152810482118233e-06,1.794019919811257284e-06,1.833887029140396335e-06,1.873754138469535385e-06,1.913621247798674436e-06,1.953488357127813487e-06,1.993355466456952538e-06,2.033222575786091588e-06,2.073089685115230639e-06,2.112956794444369690e-06,2.152823903773508741e-06,2.192691013102647791e-06,2.232558122431786842e-06,2.272425231760925893e-06,2.312292341090064944e-06,2.352159450419203994e-06,2.392026559748343045e-06,2.431893669077482096e-06,2.471760778406621147e-06,2.511627887735760197e-06 +0.000000000000000000e+00,2.962548517191069810e-08,5.925097034382139621e-08,8.887645551573209431e-08,1.185019406876427924e-07,1.481274258595534905e-07,1.777529110314641886e-07,2.073783962033748867e-07,2.370038813752855848e-07,2.666293665471962829e-07,2.962548517191069810e-07,3.258803368910176791e-07,3.555058220629283772e-07,3.851313072348390753e-07,4.147567924067497734e-07,4.443822775786604715e-07,4.740077627505711696e-07,5.036332479224819207e-07,5.332587330943926717e-07,5.628842182663034228e-07,5.925097034382141738e-07,6.221351886101249249e-07,6.517606737820356759e-07,6.813861589539464269e-07,7.110116441258571780e-07,7.406371292977679290e-07,7.702626144696786801e-07,7.998880996415894311e-07,8.295135848135001821e-07,8.591390699854109332e-07,8.887645551573216842e-07,9.183900403292324353e-07,9.480155255011431863e-07,9.776410106730539374e-07,1.007266495844964688e-06,1.036891981016875439e-06,1.066517466188786190e-06,1.096142951360696942e-06,1.125768436532607693e-06,1.155393921704518444e-06,1.185019406876429195e-06,1.214644892048339946e-06,1.244270377220250697e-06,1.273895862392161448e-06,1.303521347564072199e-06,1.333146832735982950e-06,1.362772317907893701e-06,1.392397803079804452e-06,1.422023288251715203e-06,1.451648773423625954e-06,1.481274258595536705e-06,1.510899743767447456e-06,1.540525228939358207e-06,1.570150714111268958e-06,1.599776199283179709e-06,1.629401684455090460e-06,1.659027169627001211e-06,1.688652654798911962e-06,1.718278139970822713e-06,1.747903625142733464e-06,1.777529110314644215e-06,1.807154595486554967e-06,1.836780080658465718e-06,1.866405565830376469e-06 +0.000000000000000000e+00,3.186158776530154875e-08,6.372317553060309750e-08,9.558476329590463964e-08,1.274463510612061685e-07,1.593079388265076974e-07,1.911695265918092263e-07,2.230311143571107552e-07,2.548927021224122841e-07,2.867542898877138130e-07,3.186158776530153419e-07,3.504774654183168708e-07,3.823390531836183997e-07,4.142006409489199286e-07,4.460622287142214575e-07,4.779238164795230394e-07,5.097854042448246742e-07,5.416469920101263089e-07,5.735085797754279437e-07,6.053701675407295785e-07,6.372317553060312133e-07,6.690933430713328480e-07,7.009549308366344828e-07,7.328165186019361176e-07,7.646781063672377524e-07,7.965396941325393872e-07,8.284012818978410219e-07,8.602628696631426567e-07,8.921244574284442915e-07,9.239860451937459263e-07,9.558476329590475611e-07,9.877092207243491958e-07,1.019570808489650831e-06,1.051432396254952465e-06,1.083293984020254100e-06,1.115155571785555735e-06,1.147017159550857370e-06,1.178878747316159005e-06,1.210740335081460639e-06,1.242601922846762274e-06,1.274463510612063909e-06,1.306325098377365544e-06,1.338186686142667178e-06,1.370048273907968813e-06,1.401909861673270448e-06,1.433771449438572083e-06,1.465633037203873718e-06,1.497494624969175352e-06,1.529356212734476987e-06,1.561217800499778622e-06,1.593079388265080257e-06,1.624940976030381891e-06,1.656802563795683526e-06,1.688664151560985161e-06,1.720525739326286796e-06,1.752387327091588431e-06,1.784248914856890065e-06,1.816110502622191700e-06,1.847972090387493335e-06,1.879833678152794970e-06,1.911695265918096393e-06,1.943556853683397604e-06,1.975418441448698815e-06,2.007280029214000026e-06 +0.000000000000000000e+00,3.615148897244123146e-08,7.230297794488246291e-08,1.084544669173236944e-07,1.446059558897649258e-07,1.807574448622061440e-07,2.169089338346473623e-07,2.530604228070885805e-07,2.892119117795297987e-07,3.253634007519710169e-07,3.615148897244122352e-07,3.976663786968534534e-07,4.338178676692946716e-07,4.699693566417358898e-07,5.061208456141770551e-07,5.422723345866182733e-07,5.784238235590594916e-07,6.145753125315007098e-07,6.507268015039419280e-07,6.868782904763831462e-07,7.230297794488243644e-07,7.591812684212655827e-07,7.953327573937068009e-07,8.314842463661480191e-07,8.676357353385892373e-07,9.037872243110304556e-07,9.399387132834716738e-07,9.760902022559128920e-07,1.012241691228354110e-06,1.048393180200795328e-06,1.084544669173236547e-06,1.120696158145677765e-06,1.156847647118118983e-06,1.192999136090560201e-06,1.229150625063001420e-06,1.265302114035442638e-06,1.301453603007883856e-06,1.337605091980325074e-06,1.373756580952766292e-06,1.409908069925207511e-06,1.446059558897648729e-06,1.482211047870089947e-06,1.518362536842531165e-06,1.554514025814972384e-06,1.590665514787413602e-06,1.626817003759854820e-06,1.662968492732296038e-06,1.699119981704737256e-06,1.735271470677178475e-06,1.771422959649619693e-06,1.807574448622060911e-06,1.843725937594502129e-06,1.879877426566943348e-06,1.916028915539384566e-06,1.952180404511825784e-06,1.988331893484267002e-06,2.024483382456708220e-06,2.060634871429149439e-06,2.096786360401590657e-06,2.132937849374031875e-06,2.169089338346473093e-06,2.205240827318914312e-06,2.241392316291355530e-06,2.277543805263796748e-06 +0.000000000000000000e+00,2.962548517190329649e-08,5.925097034380659298e-08,8.887645551570988616e-08,1.185019406876131727e-07,1.481274258595164593e-07,1.777529110314197459e-07,2.073783962033230324e-07,2.370038813752263190e-07,2.666293665471296320e-07,2.962548517190329715e-07,3.258803368909363110e-07,3.555058220628396505e-07,3.851313072347429900e-07,4.147567924066463295e-07,4.443822775785496690e-07,4.740077627504530085e-07,5.036332479223563480e-07,5.332587330942596876e-07,5.628842182661630271e-07,5.925097034380663666e-07,6.221351886099697061e-07,6.517606737818730456e-07,6.813861589537763851e-07,7.110116441256797246e-07,7.406371292975830641e-07,7.702626144694864036e-07,7.998880996413897431e-07,8.295135848132930826e-07,8.591390699851964221e-07,8.887645551570997616e-07,9.183900403290031011e-07,9.480155255009064406e-07,9.776410106728097801e-07,1.007266495844713120e-06,1.036891981016616459e-06,1.066517466188519799e-06,1.096142951360423138e-06,1.125768436532326478e-06,1.155393921704229817e-06,1.185019406876133157e-06,1.214644892048036496e-06,1.244270377219939836e-06,1.273895862391843175e-06,1.303521347563746515e-06,1.333146832735649854e-06,1.362772317907553194e-06,1.392397803079456533e-06,1.422023288251359873e-06,1.451648773423263212e-06,1.481274258595166552e-06,1.510899743767069891e-06,1.540525228938973231e-06,1.570150714110876570e-06,1.599776199282779910e-06,1.629401684454683249e-06,1.659027169626586589e-06,1.688652654798489928e-06,1.718278139970393268e-06,1.747903625142296607e-06,1.777529110314199947e-06,1.807154595486103286e-06,1.836780080658006626e-06,1.866405565829909965e-06 +0.000000000000000000e+00,3.186158776529444162e-08,6.372317553058888323e-08,9.558476329588333147e-08,1.274463510611777929e-07,1.593079388264722544e-07,1.911695265917667159e-07,2.230311143570611773e-07,2.548927021223556388e-07,2.867542898876501267e-07,3.186158776529446147e-07,3.504774654182391026e-07,3.823390531835335906e-07,4.142006409488280785e-07,4.460622287141225664e-07,4.779238164794170544e-07,5.097854042447115953e-07,5.416469920100061361e-07,5.735085797753006770e-07,6.053701675405952179e-07,6.372317553058897588e-07,6.690933430711842996e-07,7.009549308364788405e-07,7.328165186017733814e-07,7.646781063670679223e-07,7.965396941323624632e-07,8.284012818976570040e-07,8.602628696629515449e-07,8.921244574282460858e-07,9.239860451935406267e-07,9.558476329588351675e-07,9.877092207241296025e-07,1.019570808489424038e-06,1.051432396254718473e-06,1.083293984020012908e-06,1.115155571785307343e-06,1.147017159550601778e-06,1.178878747315896213e-06,1.210740335081190648e-06,1.242601922846485083e-06,1.274463510611779518e-06,1.306325098377073953e-06,1.338186686142368388e-06,1.370048273907662823e-06,1.401909861672957258e-06,1.433771449438251693e-06,1.465633037203546128e-06,1.497494624968840563e-06,1.529356212734134998e-06,1.561217800499429433e-06,1.593079388264723868e-06,1.624940976030018303e-06,1.656802563795312738e-06,1.688664151560607173e-06,1.720525739325901608e-06,1.752387327091196043e-06,1.784248914856490478e-06,1.816110502621784913e-06,1.847972090387079348e-06,1.879833678152373783e-06,1.911695265917668218e-06,1.943556853682962653e-06,1.975418441448257088e-06,2.007280029213551523e-06 +0.000000000000000000e+00,3.615148897243323758e-08,7.230297794486647517e-08,1.084544669172997128e-07,1.446059558897329503e-07,1.807574448621661747e-07,2.169089338345993990e-07,2.530604228070326234e-07,2.892119117794658477e-07,3.253634007518990721e-07,3.615148897243322964e-07,3.976663786967655208e-07,4.338178676691987451e-07,4.699693566416319695e-07,5.061208456140652468e-07,5.422723345864985240e-07,5.784238235589318013e-07,6.145753125313650786e-07,6.507268015037983559e-07,6.868782904762316332e-07,7.230297794486649105e-07,7.591812684210981878e-07,7.953327573935314651e-07,8.314842463659647424e-07,8.676357353383980196e-07,9.037872243108312969e-07,9.399387132832645742e-07,9.760902022556977456e-07,1.012241691228130917e-06,1.048393180200564088e-06,1.084544669172997260e-06,1.120696158145430431e-06,1.156847647117863603e-06,1.192999136090296774e-06,1.229150625062729945e-06,1.265302114035163117e-06,1.301453603007596288e-06,1.337605091980029460e-06,1.373756580952462631e-06,1.409908069924895803e-06,1.446059558897328974e-06,1.482211047869762145e-06,1.518362536842195317e-06,1.554514025814628488e-06,1.590665514787061660e-06,1.626817003759494831e-06,1.662968492731928002e-06,1.699119981704361174e-06,1.735271470676794345e-06,1.771422959649227517e-06,1.807574448621660688e-06,1.843725937594093859e-06,1.879877426566527031e-06,1.916028915538960202e-06,1.952180404511393374e-06,1.988331893483826545e-06,2.024483382456259716e-06,2.060634871428692888e-06,2.096786360401126059e-06,2.132937849373559231e-06,2.169089338345992402e-06,2.205240827318425574e-06,2.241392316290858745e-06,2.277543805263291916e-06 +0.000000000000000000e+00,2.740600253039384816e-08,5.481200506078769633e-08,8.221800759118153787e-08,1.096240101215753794e-07,1.370300126519692210e-07,1.644360151823630757e-07,1.918420177127569305e-07,2.192480202431507853e-07,2.466540227735446666e-07,2.740600253039385478e-07,3.014660278343324291e-07,3.288720303647263103e-07,3.562780328951201916e-07,3.836840354255140728e-07,4.110900379559079541e-07,4.384960404863018353e-07,4.659020430166957166e-07,4.933080455470895449e-07,5.207140480774833732e-07,5.481200506078772015e-07,5.755260531382710298e-07,6.029320556686648581e-07,6.303380581990586864e-07,6.577440607294525147e-07,6.851500632598463430e-07,7.125560657902401713e-07,7.399620683206339997e-07,7.673680708510278280e-07,7.947740733814216563e-07,8.221800759118154846e-07,8.495860784422093129e-07,8.769920809726031412e-07,9.043980835029969695e-07,9.318040860333907978e-07,9.592100885637845203e-07,9.866160910941782427e-07,1.014022093624571965e-06,1.041428096154965688e-06,1.068834098685359410e-06,1.096240101215753132e-06,1.123646103746146855e-06,1.151052106276540577e-06,1.178458108806934300e-06,1.205864111337328022e-06,1.233270113867721745e-06,1.260676116398115467e-06,1.288082118928509189e-06,1.315488121458902912e-06,1.342894123989296634e-06,1.370300126519690357e-06,1.397706129050084079e-06,1.425112131580477802e-06,1.452518134110871524e-06,1.479924136641265246e-06,1.507330139171658969e-06,1.534736141702052691e-06,1.562142144232446414e-06,1.589548146762840136e-06,1.616954149293233859e-06,1.644360151823627581e-06,1.671766154354021303e-06,1.699172156884415026e-06,1.726578159414808748e-06 +0.000000000000000000e+00,3.241828678601741663e-08,6.483657357203483326e-08,9.725486035805224989e-08,1.296731471440696665e-07,1.620914339300870699e-07,1.945097207161044733e-07,2.269280075021218767e-07,2.593462942881392801e-07,2.917645810741566835e-07,3.241828678601740869e-07,3.566011546461914903e-07,3.890194414322088937e-07,4.214377282182262971e-07,4.538560150042437005e-07,4.862743017902611568e-07,5.186925885762786661e-07,5.511108753622961753e-07,5.835291621483136846e-07,6.159474489343311939e-07,6.483657357203487032e-07,6.807840225063662124e-07,7.132023092923837217e-07,7.456205960784012310e-07,7.780388828644187403e-07,8.104571696504362495e-07,8.428754564364537588e-07,8.752937432224712681e-07,9.077120300084887774e-07,9.401303167945062866e-07,9.725486035805237959e-07,1.004966890366541305e-06,1.037385177152558814e-06,1.069803463938576324e-06,1.102221750724593833e-06,1.134640037510611342e-06,1.167058324296628852e-06,1.199476611082646361e-06,1.231894897868663870e-06,1.264313184654681379e-06,1.296731471440698889e-06,1.329149758226716398e-06,1.361568045012733907e-06,1.393986331798751416e-06,1.426404618584768926e-06,1.458822905370786435e-06,1.491241192156803944e-06,1.523659478942821454e-06,1.556077765728838963e-06,1.588496052514856472e-06,1.620914339300873981e-06,1.653332626086891491e-06,1.685750912872909000e-06,1.718169199658926509e-06,1.750587486444944018e-06,1.783005773230961528e-06,1.815424060016979037e-06,1.847842346802996546e-06,1.880260633589014056e-06,1.912678920375031565e-06,1.945097207161048862e-06,1.977515493947066160e-06,2.009933780733083457e-06,2.042352067519100755e-06 +0.000000000000000000e+00,3.241676977470099970e-08,6.483353954940199941e-08,9.725030932410300573e-08,1.296670790988040253e-07,1.620838488735050448e-07,1.945006186482060644e-07,2.269173884229070840e-07,2.593341581976081035e-07,2.917509279723090966e-07,3.241676977470100897e-07,3.565844675217110828e-07,3.890012372964120759e-07,4.214180070711130689e-07,4.538347768458140620e-07,4.862515466205150551e-07,5.186683163952161011e-07,5.510850861699171472e-07,5.835018559446181932e-07,6.159186257193192392e-07,6.483353954940202852e-07,6.807521652687213313e-07,7.131689350434223773e-07,7.455857048181234233e-07,7.780024745928244693e-07,8.104192443675255154e-07,8.428360141422265614e-07,8.752527839169276074e-07,9.076695536916286534e-07,9.400863234663296995e-07,9.725030932410307455e-07,1.004919863015731792e-06,1.037336632790432838e-06,1.069753402565133884e-06,1.102170172339834930e-06,1.134586942114535976e-06,1.167003711889237022e-06,1.199420481663938068e-06,1.231837251438639114e-06,1.264254021213340160e-06,1.296670790988041206e-06,1.329087560762742252e-06,1.361504330537443298e-06,1.393921100312144344e-06,1.426337870086845390e-06,1.458754639861546436e-06,1.491171409636247482e-06,1.523588179410948528e-06,1.556004949185649574e-06,1.588421718960350620e-06,1.620838488735051666e-06,1.653255258509752712e-06,1.685672028284453758e-06,1.718088798059154804e-06,1.750505567833855850e-06,1.782922337608556896e-06,1.815339107383257942e-06,1.847755877157958988e-06,1.880172646932660034e-06,1.912589416707361292e-06,1.945006186482062762e-06,1.977422956256764231e-06,2.009839726031465701e-06,2.042256495806167170e-06 +0.000000000000000000e+00,2.740600253038632744e-08,5.481200506077265487e-08,8.221800759115898562e-08,1.096240101215453230e-07,1.370300126519316603e-07,1.644360151823179977e-07,1.918420177127043351e-07,2.192480202430906724e-07,2.466540227734770098e-07,2.740600253038633207e-07,3.014660278342496316e-07,3.288720303646359425e-07,3.562780328950222534e-07,3.836840354254085643e-07,4.110900379557948752e-07,4.384960404861811860e-07,4.659020430165674969e-07,4.933080455469538078e-07,5.207140480773401187e-07,5.481200506077264296e-07,5.755260531381127405e-07,6.029320556684990514e-07,6.303380581988853623e-07,6.577440607292716732e-07,6.851500632596579841e-07,7.125560657900442950e-07,7.399620683204306059e-07,7.673680708508169168e-07,7.947740733812032277e-07,8.221800759115895385e-07,8.495860784419758494e-07,8.769920809723621603e-07,9.043980835027484712e-07,9.318040860331347821e-07,9.592100885635210930e-07,9.866160910939074039e-07,1.014022093624293715e-06,1.041428096154680026e-06,1.068834098685066337e-06,1.096240101215452647e-06,1.123646103745838958e-06,1.151052106276225269e-06,1.178458108806611580e-06,1.205864111336997891e-06,1.233270113867384202e-06,1.260676116397770513e-06,1.288082118928156824e-06,1.315488121458543135e-06,1.342894123988929446e-06,1.370300126519315756e-06,1.397706129049702067e-06,1.425112131580088378e-06,1.452518134110474689e-06,1.479924136640861000e-06,1.507330139171247311e-06,1.534736141701633622e-06,1.562142144232019933e-06,1.589548146762406244e-06,1.616954149292792554e-06,1.644360151823178865e-06,1.671766154353565176e-06,1.699172156883951487e-06,1.726578159414337798e-06 +0.000000000000000000e+00,3.241828678600915144e-08,6.483657357201830288e-08,9.725486035802746094e-08,1.296731471440366322e-07,1.620914339300458035e-07,1.945097207160549748e-07,2.269280075020641461e-07,2.593462942880733174e-07,2.917645810740825152e-07,3.241828678600917129e-07,3.566011546461009107e-07,3.890194414321101085e-07,4.214377282181193062e-07,4.538560150041285040e-07,4.862743017901377017e-07,5.186925885761469525e-07,5.511108753621562032e-07,5.835291621481654539e-07,6.159474489341747046e-07,6.483657357201839553e-07,6.807840225061932060e-07,7.132023092922024567e-07,7.456205960782117074e-07,7.780388828642209581e-07,8.104571696502302088e-07,8.428754564362394595e-07,8.752937432222487102e-07,9.077120300082579609e-07,9.401303167942672116e-07,9.725486035802764623e-07,1.004966890366285713e-06,1.037385177152294964e-06,1.069803463938304214e-06,1.102221750724313465e-06,1.134640037510322716e-06,1.167058324296331967e-06,1.199476611082341217e-06,1.231894897868350468e-06,1.264313184654359719e-06,1.296731471440368969e-06,1.329149758226378220e-06,1.361568045012387471e-06,1.393986331798396721e-06,1.426404618584405972e-06,1.458822905370415223e-06,1.491241192156424474e-06,1.523659478942433724e-06,1.556077765728442975e-06,1.588496052514452226e-06,1.620914339300461476e-06,1.653332626086470727e-06,1.685750912872479978e-06,1.718169199658489228e-06,1.750587486444498479e-06,1.783005773230507730e-06,1.815424060016516981e-06,1.847842346802526231e-06,1.880260633588535482e-06,1.912678920374544521e-06,1.945097207160553348e-06,1.977515493946562175e-06,2.009933780732571002e-06,2.042352067518579830e-06 +0.000000000000000000e+00,4.755748841430058675e-08,9.511497682860117349e-08,1.426724652429017735e-07,1.902299536572023735e-07,2.377874420715029734e-07,2.853449304858035469e-07,3.329024189001041205e-07,3.804599073144046940e-07,4.280173957287052675e-07,4.755748841430058410e-07,5.231323725573064145e-07,5.706898609716069880e-07,6.182473493859075615e-07,6.658048378002081350e-07,7.133623262145087086e-07,7.609198146288092821e-07,8.084773030431098556e-07,8.560347914574104291e-07,9.035922798717110026e-07,9.511497682860115761e-07,9.987072567003121496e-07,1.046264745114612829e-06,1.093822233528913508e-06,1.141379721943214188e-06,1.188937210357514867e-06,1.236494698771815547e-06,1.284052187186116226e-06,1.331609675600416905e-06,1.379167164014717585e-06,1.426724652429018264e-06,1.474282140843318944e-06,1.521839629257619623e-06,1.569397117671920302e-06,1.616954606086220982e-06,1.664512094500521661e-06,1.712069582914822340e-06,1.759627071329123020e-06,1.807184559743423699e-06,1.854742048157724379e-06,1.902299536572025058e-06,1.949857024986325526e-06,1.997414513400625993e-06,2.044972001814926461e-06,2.092529490229226929e-06,2.140086978643527396e-06,2.187644467057827864e-06,2.235201955472128331e-06,2.282759443886428799e-06,2.330316932300729267e-06,2.377874420715029734e-06,2.425431909129330202e-06,2.472989397543630670e-06,2.520546885957931137e-06,2.568104374372231605e-06,2.615661862786532073e-06,2.663219351200832540e-06,2.710776839615133008e-06,2.758334328029433475e-06,2.805891816443733943e-06,2.853449304858034411e-06,2.901006793272334878e-06,2.948564281686635346e-06,2.996121770100935814e-06 +0.000000000000000000e+00,4.419244117448031140e-08,8.838488234896062279e-08,1.325773235234409408e-07,1.767697646979212721e-07,2.209622058724016033e-07,2.651546470468819345e-07,3.093470882213622923e-07,3.535395293958426500e-07,3.977319705703230077e-07,4.419244117448033654e-07,4.861168529192837231e-07,5.303092940937640808e-07,5.745017352682444386e-07,6.186941764427247963e-07,6.628866176172051540e-07,7.070790587916855117e-07,7.512714999661658694e-07,7.954639411406462272e-07,8.396563823151265849e-07,8.838488234896069426e-07,9.280412646640873003e-07,9.722337058385676580e-07,1.016426147013047910e-06,1.060618588187528162e-06,1.104811029362008414e-06,1.149003470536488665e-06,1.193195911710968917e-06,1.237388352885449169e-06,1.281580794059929421e-06,1.325773235234409673e-06,1.369965676408889925e-06,1.414158117583370176e-06,1.458350558757850428e-06,1.502542999932330680e-06,1.546735441106810932e-06,1.590927882281291184e-06,1.635120323455771436e-06,1.679312764630251687e-06,1.723505205804731939e-06,1.767697646979212191e-06,1.811890088153692443e-06,1.856082529328172695e-06,1.900274970502652947e-06,1.944467411677133198e-06,1.988659852851613450e-06,2.032852294026093702e-06,2.077044735200573954e-06,2.121237176375054206e-06,2.165429617549534458e-06,2.209622058724014709e-06,2.253814499898494961e-06,2.298006941072975213e-06,2.342199382247455465e-06,2.386391823421935717e-06,2.430584264596415969e-06,2.474776705770896221e-06,2.518969146945376472e-06,2.563161588119856724e-06,2.607354029294336976e-06,2.651546470468817228e-06,2.695738911643297480e-06,2.739931352817777732e-06,2.784123793992257983e-06 +0.000000000000000000e+00,4.414876771923650291e-08,8.829753543847300582e-08,1.324463031577095220e-07,1.765950708769460381e-07,2.207438385961825542e-07,2.648926063154190439e-07,3.090413740346555336e-07,3.531901417538920233e-07,3.973389094731285129e-07,4.414876771923650026e-07,4.856364449116015452e-07,5.297852126308380878e-07,5.739339803500746304e-07,6.180827480693111731e-07,6.622315157885477157e-07,7.063802835077842583e-07,7.505290512270208009e-07,7.946778189462573435e-07,8.388265866654938861e-07,8.829753543847304287e-07,9.271241221039669713e-07,9.712728898232035140e-07,1.015421657542440057e-06,1.059570425261676599e-06,1.103719192980913142e-06,1.147867960700149684e-06,1.192016728419386227e-06,1.236165496138622770e-06,1.280314263857859312e-06,1.324463031577095855e-06,1.368611799296332397e-06,1.412760567015568940e-06,1.456909334734805483e-06,1.501058102454042025e-06,1.545206870173278568e-06,1.589355637892515111e-06,1.633504405611751653e-06,1.677653173330988196e-06,1.721801941050224738e-06,1.765950708769461281e-06,1.810099476488697824e-06,1.854248244207934366e-06,1.898397011927170909e-06,1.942545779646407451e-06,1.986694547365643994e-06,2.030843315084880537e-06,2.074992082804117079e-06,2.119140850523353622e-06,2.163289618242590164e-06,2.207438385961826707e-06,2.251587153681063250e-06,2.295735921400299792e-06,2.339884689119536335e-06,2.384033456838772878e-06,2.428182224558009420e-06,2.472330992277245963e-06,2.516479759996482505e-06,2.560628527715719048e-06,2.604777295434955591e-06,2.648926063154192133e-06,2.693074830873428676e-06,2.737223598592665218e-06,2.781372366311901761e-06 +0.000000000000000000e+00,4.678187297285950018e-08,9.356374594571900035e-08,1.403456189185785071e-07,1.871274918914380272e-07,2.339093648642975472e-07,2.806912378371570672e-07,3.274731108100165608e-07,3.742549837828760544e-07,4.210368567557355479e-07,4.678187297285950415e-07,5.146006027014545350e-07,5.613824756743140286e-07,6.081643486471735222e-07,6.549462216200330157e-07,7.017280945928925093e-07,7.485099675657520028e-07,7.952918405386114964e-07,8.420737135114709900e-07,8.888555864843304835e-07,9.356374594571899771e-07,9.824193324300495765e-07,1.029201205402909282e-06,1.075983078375768987e-06,1.122764951348628692e-06,1.169546824321488398e-06,1.216328697294348103e-06,1.263110570267207808e-06,1.309892443240067514e-06,1.356674316212927219e-06,1.403456189185786924e-06,1.450238062158646630e-06,1.497019935131506335e-06,1.543801808104366040e-06,1.590583681077225746e-06,1.637365554050085451e-06,1.684147427022945156e-06,1.730929299995804862e-06,1.777711172968664567e-06,1.824493045941524272e-06,1.871274918914383978e-06,1.918056791887243683e-06,1.964838664860103388e-06,2.011620537832963094e-06,2.058402410805822799e-06,2.105184283778682504e-06,2.151966156751542209e-06,2.198748029724401915e-06,2.245529902697261620e-06,2.292311775670121325e-06,2.339093648642981031e-06,2.385875521615840736e-06,2.432657394588700441e-06,2.479439267561560147e-06,2.526221140534419852e-06,2.573003013507279557e-06,2.619784886480139263e-06,2.666566759452998968e-06,2.713348632425858673e-06,2.760130505398718379e-06,2.806912378371578084e-06,2.853694251344437789e-06,2.900476124317297495e-06,2.947257997290157200e-06 +0.000000000000000000e+00,4.668937903408556576e-08,9.337875806817113151e-08,1.400681371022567039e-07,1.867575161363422895e-07,2.334468951704278751e-07,2.801362742045134607e-07,3.268256532385990463e-07,3.735150322726846319e-07,4.202044113067702175e-07,4.668937903408558031e-07,5.135831693749413358e-07,5.602725484090268155e-07,6.069619274431122953e-07,6.536513064771977750e-07,7.003406855112832547e-07,7.470300645453687344e-07,7.937194435794542142e-07,8.404088226135396939e-07,8.870982016476251736e-07,9.337875806817106534e-07,9.804769597157961331e-07,1.027166338749881613e-06,1.073855717783967093e-06,1.120545096818052572e-06,1.167234475852138052e-06,1.213923854886223532e-06,1.260613233920309011e-06,1.307302612954394491e-06,1.353991991988479971e-06,1.400681371022565451e-06,1.447370750056650930e-06,1.494060129090736410e-06,1.540749508124821890e-06,1.587438887158907370e-06,1.634128266192992849e-06,1.680817645227078329e-06,1.727507024261163809e-06,1.774196403295249288e-06,1.820885782329334768e-06,1.867575161363420248e-06,1.914264540397505939e-06,1.960953919431591843e-06,2.007643298465677746e-06,2.054332677499763649e-06,2.101022056533849552e-06,2.147711435567935456e-06,2.194400814602021359e-06,2.241090193636107262e-06,2.287779572670193165e-06,2.334468951704279069e-06,2.381158330738364972e-06,2.427847709772450875e-06,2.474537088806536778e-06,2.521226467840622682e-06,2.567915846874708585e-06,2.614605225908794488e-06,2.661294604942880391e-06,2.707983983976966295e-06,2.754673363011052198e-06,2.801362742045138101e-06,2.848052121079224004e-06,2.894741500113309908e-06,2.941430879147395811e-06 +0.000000000000000000e+00,5.056018720752462800e-08,1.011203744150492560e-07,1.516805616225738906e-07,2.022407488300985385e-07,2.528009360376231863e-07,3.033611232451478342e-07,3.539213104526724820e-07,4.044814976601971299e-07,4.550416848677217777e-07,5.056018720752464785e-07,5.561620592827711263e-07,6.067222464902957742e-07,6.572824336978204220e-07,7.078426209053450699e-07,7.584028081128697177e-07,8.089629953203943656e-07,8.595231825279190134e-07,9.100833697354436613e-07,9.606435569429683091e-07,1.011203744150492957e-06,1.061763931358017605e-06,1.112324118565542253e-06,1.162884305773066901e-06,1.213444492980591548e-06,1.264004680188116196e-06,1.314564867395640844e-06,1.365125054603165492e-06,1.415685241810690140e-06,1.466245429018214788e-06,1.516805616225739435e-06,1.567365803433264083e-06,1.617925990640788731e-06,1.668486177848313379e-06,1.719046365055838027e-06,1.769606552263362675e-06,1.820166739470887323e-06,1.870726926678411970e-06,1.921287113885936618e-06,1.971847301093461478e-06,2.022407488300986337e-06,2.072967675508511197e-06,2.123527862716036057e-06,2.174088049923560916e-06,2.224648237131085776e-06,2.275208424338610636e-06,2.325768611546135495e-06,2.376328798753660355e-06,2.426888985961185214e-06,2.477449173168710074e-06,2.528009360376234934e-06,2.578569547583759793e-06,2.629129734791284653e-06,2.679689921998809512e-06,2.730250109206334372e-06,2.780810296413859232e-06,2.831370483621384091e-06,2.881930670828908951e-06,2.932490858036433810e-06,2.983051045243958670e-06,3.033611232451483530e-06,3.084171419659008389e-06,3.134731606866533249e-06,3.185291794074058108e-06 +0.000000000000000000e+00,4.416009116481551099e-08,8.832018232963102199e-08,1.324802734944465264e-07,1.766403646592620175e-07,2.208004558240775086e-07,2.649605469888929998e-07,3.091206381537084645e-07,3.532807293185239291e-07,3.974408204833393938e-07,4.416009116481548585e-07,4.857610028129703231e-07,5.299210939777857878e-07,5.740811851426012525e-07,6.182412763074167172e-07,6.624013674722321818e-07,7.065614586370476465e-07,7.507215498018631112e-07,7.948816409666785759e-07,8.390417321314940405e-07,8.832018232963095052e-07,9.273619144611249699e-07,9.715220056259404345e-07,1.015682096790755793e-06,1.059842187955571152e-06,1.104002279120386511e-06,1.148162370285201870e-06,1.192322461450017229e-06,1.236482552614832587e-06,1.280642643779647946e-06,1.324802734944463305e-06,1.368962826109278664e-06,1.413122917274094022e-06,1.457283008438909381e-06,1.501443099603724740e-06,1.545603190768540099e-06,1.589763281933355458e-06,1.633923373098170816e-06,1.678083464262986175e-06,1.722243555427801534e-06,1.766403646592616893e-06,1.810563737757432252e-06,1.854723828922247610e-06,1.898883920087062969e-06,1.943044011251878328e-06,1.987204102416693687e-06,2.031364193581509046e-06,2.075524284746324404e-06,2.119684375911139763e-06,2.163844467075955122e-06,2.208004558240770481e-06,2.252164649405585840e-06,2.296324740570401198e-06,2.340484831735216557e-06,2.384644922900031916e-06,2.428805014064847275e-06,2.472965105229662633e-06,2.517125196394477992e-06,2.561285287559293351e-06,2.605445378724108710e-06,2.649605469888924069e-06,2.693765561053739427e-06,2.737925652218554786e-06,2.782085743383370145e-06 +0.000000000000000000e+00,4.659167500377412425e-08,9.318335000754824849e-08,1.397750250113223727e-07,1.863667000150964970e-07,2.329583750188706212e-07,2.795500500226447455e-07,3.261417250264188432e-07,3.727334000301929410e-07,4.193250750339670388e-07,4.659167500377411366e-07,5.125084250415152343e-07,5.591001000452893851e-07,6.056917750490635358e-07,6.522834500528376865e-07,6.988751250566118372e-07,7.454668000603859879e-07,7.920584750641601386e-07,8.386501500679342894e-07,8.852418250717084401e-07,9.318335000754825908e-07,9.784251750792566356e-07,1.025016850083030680e-06,1.071608525086804725e-06,1.118200200090578770e-06,1.164791875094352815e-06,1.211383550098126860e-06,1.257975225101900905e-06,1.304566900105674949e-06,1.351158575109448994e-06,1.397750250113223039e-06,1.444341925116997084e-06,1.490933600120771129e-06,1.537525275124545174e-06,1.584116950128319218e-06,1.630708625132093263e-06,1.677300300135867308e-06,1.723891975139641353e-06,1.770483650143415398e-06,1.817075325147189443e-06,1.863667000150963488e-06,1.910258675154737532e-06,1.956850350158511577e-06,2.003442025162285622e-06,2.050033700166059667e-06,2.096625375169833712e-06,2.143217050173607757e-06,2.189808725177381801e-06,2.236400400181155846e-06,2.282992075184929891e-06,2.329583750188703936e-06,2.376175425192477981e-06,2.422767100196252026e-06,2.469358775200026070e-06,2.515950450203800115e-06,2.562542125207574160e-06,2.609133800211348205e-06,2.655725475215122250e-06,2.702317150218896295e-06,2.748908825222670339e-06,2.795500500226444384e-06,2.842092175230218429e-06,2.888683850233992474e-06,2.935275525237766519e-06 +0.000000000000000000e+00,4.755748841430207567e-08,9.511497682860415134e-08,1.426724652429062204e-07,1.902299536572082762e-07,2.377874420715103320e-07,2.853449304858123879e-07,3.329024189001144437e-07,3.804599073144164995e-07,4.280173957287185553e-07,4.755748841430206111e-07,5.231323725573227199e-07,5.706898609716248816e-07,6.182473493859270433e-07,6.658048378002292050e-07,7.133623262145313667e-07,7.609198146288335284e-07,8.084773030431356901e-07,8.560347914574378518e-07,9.035922798717400135e-07,9.511497682860421752e-07,9.987072567003443369e-07,1.046264745114646499e-06,1.093822233528948660e-06,1.141379721943250822e-06,1.188937210357552984e-06,1.236494698771855145e-06,1.284052187186157307e-06,1.331609675600459469e-06,1.379167164014761630e-06,1.426724652429063792e-06,1.474282140843365954e-06,1.521839629257668116e-06,1.569397117671970277e-06,1.616954606086272439e-06,1.664512094500574601e-06,1.712069582914876762e-06,1.759627071329178924e-06,1.807184559743481086e-06,1.854742048157783247e-06,1.902299536572085409e-06,1.949857024986387359e-06,1.997414513400689097e-06,2.044972001814990835e-06,2.092529490229292574e-06,2.140086978643594312e-06,2.187644467057896050e-06,2.235201955472197788e-06,2.282759443886499526e-06,2.330316932300801265e-06,2.377874420715103003e-06,2.425431909129404741e-06,2.472989397543706479e-06,2.520546885958008217e-06,2.568104374372309955e-06,2.615661862786611694e-06,2.663219351200913432e-06,2.710776839615215170e-06,2.758334328029516908e-06,2.805891816443818646e-06,2.853449304858120385e-06,2.901006793272422123e-06,2.948564281686723861e-06,2.996121770101025599e-06 +0.000000000000000000e+00,4.419244117448360688e-08,8.838488234896721377e-08,1.325773235234508140e-07,1.767697646979344011e-07,2.209622058724179881e-07,2.651546470469015751e-07,3.093470882213851622e-07,3.535395293958687492e-07,3.977319705703523362e-07,4.419244117448359232e-07,4.861168529193195103e-07,5.303092940938030444e-07,5.745017352682865785e-07,6.186941764427701125e-07,6.628866176172536466e-07,7.070790587917371807e-07,7.512714999662207148e-07,7.954639411407042489e-07,8.396563823151877830e-07,8.838488234896713171e-07,9.280412646641548512e-07,9.722337058386383853e-07,1.016426147013122025e-06,1.060618588187605665e-06,1.104811029362089305e-06,1.149003470536572945e-06,1.193195911711056585e-06,1.237388352885540225e-06,1.281580794060023865e-06,1.325773235234507505e-06,1.369965676408991145e-06,1.414158117583474785e-06,1.458350558757958425e-06,1.502542999932442065e-06,1.546735441106925705e-06,1.590927882281409345e-06,1.635120323455892985e-06,1.679312764630376625e-06,1.723505205804860265e-06,1.767697646979343905e-06,1.811890088153827545e-06,1.856082529328311185e-06,1.900274970502794825e-06,1.944467411677278465e-06,1.988659852851762105e-06,2.032852294026245745e-06,2.077044735200729385e-06,2.121237176375213024e-06,2.165429617549696664e-06,2.209622058724180304e-06,2.253814499898663944e-06,2.298006941073147584e-06,2.342199382247631224e-06,2.386391823422114864e-06,2.430584264596598504e-06,2.474776705771082144e-06,2.518969146945565784e-06,2.563161588120049424e-06,2.607354029294533064e-06,2.651546470469016704e-06,2.695738911643500344e-06,2.739931352817983984e-06,2.784123793992467624e-06 +0.000000000000000000e+00,4.416009116481715874e-08,8.832018232963431748e-08,1.324802734944514762e-07,1.766403646592686350e-07,2.208004558240857937e-07,2.649605469889029524e-07,3.091206381537201112e-07,3.532807293185372699e-07,3.974408204833544286e-07,4.416009116481715874e-07,4.857610028129887461e-07,5.299210939778059049e-07,5.740811851426230636e-07,6.182412763074402223e-07,6.624013674722573811e-07,7.065614586370745398e-07,7.507215498018916985e-07,7.948816409667088573e-07,8.390417321315260160e-07,8.832018232963431748e-07,9.273619144611603335e-07,9.715220056259774922e-07,1.015682096790794757e-06,1.059842187955612021e-06,1.104002279120429286e-06,1.148162370285246551e-06,1.192322461450063815e-06,1.236482552614881080e-06,1.280642643779698345e-06,1.324802734944515609e-06,1.368962826109332874e-06,1.413122917274150138e-06,1.457283008438967403e-06,1.501443099603784668e-06,1.545603190768601932e-06,1.589763281933419197e-06,1.633923373098236461e-06,1.678083464263053726e-06,1.722243555427870991e-06,1.766403646592688255e-06,1.810563737757505520e-06,1.854723828922322785e-06,1.898883920087140049e-06,1.943044011251957102e-06,1.987204102416774155e-06,2.031364193581591208e-06,2.075524284746408261e-06,2.119684375911225313e-06,2.163844467076042366e-06,2.208004558240859419e-06,2.252164649405676472e-06,2.296324740570493525e-06,2.340484831735310578e-06,2.384644922900127631e-06,2.428805014064944683e-06,2.472965105229761736e-06,2.517125196394578789e-06,2.561285287559395842e-06,2.605445378724212895e-06,2.649605469889029948e-06,2.693765561053847001e-06,2.737925652218664054e-06,2.782085743383481106e-06 +0.000000000000000000e+00,4.678187297286197510e-08,9.356374594572395020e-08,1.403456189185859187e-07,1.871274918914478739e-07,2.339093648643098292e-07,2.806912378371717844e-07,3.274731108100337132e-07,3.742549837828956420e-07,4.210368567557575708e-07,4.678187297286194996e-07,5.146006027014814283e-07,5.613824756743433571e-07,6.081643486472052859e-07,6.549462216200672147e-07,7.017280945929291434e-07,7.485099675657910722e-07,7.952918405386530010e-07,8.420737135115149298e-07,8.888555864843768586e-07,9.356374594572387873e-07,9.824193324301008220e-07,1.029201205402962857e-06,1.075983078375824891e-06,1.122764951348686926e-06,1.169546824321548961e-06,1.216328697294410995e-06,1.263110570267273030e-06,1.309892443240135065e-06,1.356674316212997099e-06,1.403456189185859134e-06,1.450238062158721169e-06,1.497019935131583203e-06,1.543801808104445238e-06,1.590583681077307273e-06,1.637365554050169307e-06,1.684147427023031342e-06,1.730929299995893377e-06,1.777711172968755411e-06,1.824493045941617446e-06,1.871274918914479481e-06,1.918056791887341515e-06,1.964838664860203338e-06,2.011620537833065161e-06,2.058402410805926984e-06,2.105184283778788807e-06,2.151966156751650630e-06,2.198748029724512453e-06,2.245529902697374275e-06,2.292311775670236098e-06,2.339093648643097921e-06,2.385875521615959744e-06,2.432657394588821567e-06,2.479439267561683390e-06,2.526221140534545213e-06,2.573003013507407036e-06,2.619784886480268859e-06,2.666566759453130682e-06,2.713348632425992504e-06,2.760130505398854327e-06,2.806912378371716150e-06,2.853694251344577973e-06,2.900476124317439796e-06,2.947257997290301619e-06 +0.000000000000000000e+00,4.668937903408872228e-08,9.337875806817744455e-08,1.400681371022661801e-07,1.867575161363549156e-07,2.334468951704436511e-07,2.801362742045323601e-07,3.268256532386210692e-07,3.735150322727097782e-07,4.202044113067984873e-07,4.668937903408871963e-07,5.135831693749758524e-07,5.602725484090645085e-07,6.069619274431531646e-07,6.536513064772418207e-07,7.003406855113304768e-07,7.470300645454191329e-07,7.937194435795077890e-07,8.404088226135964451e-07,8.870982016476851012e-07,9.337875806817737573e-07,9.804769597158624134e-07,1.027166338749951070e-06,1.073855717784039726e-06,1.120545096818128382e-06,1.167234475852217038e-06,1.213923854886305694e-06,1.260613233920394350e-06,1.307302612954483006e-06,1.353991991988571662e-06,1.400681371022660318e-06,1.447370750056748974e-06,1.494060129090837631e-06,1.540749508124926287e-06,1.587438887159014943e-06,1.634128266193103599e-06,1.680817645227192255e-06,1.727507024261280911e-06,1.774196403295369567e-06,1.820885782329458223e-06,1.867575161363546879e-06,1.914264540397635535e-06,1.960953919431723980e-06,2.007643298465812424e-06,2.054332677499900868e-06,2.101022056533989313e-06,2.147711435568077757e-06,2.194400814602166202e-06,2.241090193636254646e-06,2.287779572670343090e-06,2.334468951704431535e-06,2.381158330738519979e-06,2.427847709772608423e-06,2.474537088806696868e-06,2.521226467840785312e-06,2.567915846874873756e-06,2.614605225908962201e-06,2.661294604943050645e-06,2.707983983977139089e-06,2.754673363011227534e-06,2.801362742045315978e-06,2.848052121079404422e-06,2.894741500113492867e-06,2.941430879147581311e-06 +0.000000000000000000e+00,5.056018720752595149e-08,1.011203744150519030e-07,1.516805616225778611e-07,2.022407488301038324e-07,2.528009360376298038e-07,3.033611232451557751e-07,3.539213104526817464e-07,4.044814976602077178e-07,4.550416848677336891e-07,5.056018720752596075e-07,5.561620592827855259e-07,6.067222464903114443e-07,6.572824336978373627e-07,7.078426209053632811e-07,7.584028081128891995e-07,8.089629953204151179e-07,8.595231825279410363e-07,9.100833697354669547e-07,9.606435569429928731e-07,1.011203744150518791e-06,1.061763931358044710e-06,1.112324118565570628e-06,1.162884305773096547e-06,1.213444492980622465e-06,1.264004680188148383e-06,1.314564867395674302e-06,1.365125054603200220e-06,1.415685241810726139e-06,1.466245429018252057e-06,1.516805616225777975e-06,1.567365803433303894e-06,1.617925990640829812e-06,1.668486177848355731e-06,1.719046365055881649e-06,1.769606552263407567e-06,1.820166739470933486e-06,1.870726926678459404e-06,1.921287113885985323e-06,1.971847301093511453e-06,2.022407488301037583e-06,2.072967675508563713e-06,2.123527862716089843e-06,2.174088049923615973e-06,2.224648237131142104e-06,2.275208424338668234e-06,2.325768611546194364e-06,2.376328798753720494e-06,2.426888985961246624e-06,2.477449173168772754e-06,2.528009360376298885e-06,2.578569547583825015e-06,2.629129734791351145e-06,2.679689921998877275e-06,2.730250109206403405e-06,2.780810296413929535e-06,2.831370483621455665e-06,2.881930670828981796e-06,2.932490858036507926e-06,2.983051045244034056e-06,3.033611232451560186e-06,3.084171419659086316e-06,3.134731606866612446e-06,3.185291794074138577e-06 +0.000000000000000000e+00,4.615271449831015577e-08,9.230542899662031154e-08,1.384581434949304805e-07,1.846108579932406495e-07,2.307635724915508185e-07,2.769162869898609611e-07,3.230690014881711036e-07,3.692217159864812461e-07,4.153744304847913887e-07,4.615271449831015312e-07,5.076798594814117267e-07,5.538325739797219222e-07,5.999852884780321176e-07,6.461380029763423131e-07,6.922907174746525086e-07,7.384434319729627040e-07,7.845961464712728995e-07,8.307488609695830950e-07,8.769015754678932905e-07,9.230542899662034859e-07,9.692070044645136814e-07,1.015359718962823877e-06,1.061512433461134072e-06,1.107665147959444268e-06,1.153817862457754463e-06,1.199970576956064659e-06,1.246123291454374854e-06,1.292276005952685050e-06,1.338428720450995245e-06,1.384581434949305441e-06,1.430734149447615636e-06,1.476886863945925832e-06,1.523039578444236027e-06,1.569192292942546223e-06,1.615345007440856418e-06,1.661497721939166613e-06,1.707650436437476809e-06,1.753803150935787004e-06,1.799955865434097200e-06,1.846108579932407395e-06,1.892261294430717591e-06,1.938414008929027786e-06,1.984566723427337982e-06,2.030719437925648177e-06,2.076872152423958373e-06,2.123024866922268568e-06,2.169177581420578764e-06,2.215330295918888959e-06,2.261483010417199155e-06,2.307635724915509350e-06,2.353788439413819546e-06,2.399941153912129741e-06,2.446093868410439937e-06,2.492246582908750132e-06,2.538399297407060327e-06,2.584552011905370523e-06,2.630704726403680718e-06,2.676857440901990914e-06,2.723010155400301109e-06,2.769162869898611305e-06,2.815315584396921500e-06,2.861468298895231696e-06,2.907621013393541891e-06 +0.000000000000000000e+00,4.716166736010826096e-08,9.432333472021652192e-08,1.414850020803247763e-07,1.886466694404330174e-07,2.358083368005412585e-07,2.829700041606494996e-07,3.301316715207577407e-07,3.772933388808659818e-07,4.244550062409742229e-07,4.716166736010824640e-07,5.187783409611907581e-07,5.659400083212991051e-07,6.131016756814074521e-07,6.602633430415157991e-07,7.074250104016241460e-07,7.545866777617324930e-07,8.017483451218408400e-07,8.489100124819491870e-07,8.960716798420575340e-07,9.432333472021658810e-07,9.903950145622742280e-07,1.037556681922382575e-06,1.084718349282490922e-06,1.131880016642599269e-06,1.179041684002707616e-06,1.226203351362815963e-06,1.273365018722924310e-06,1.320526686083032657e-06,1.367688353443141004e-06,1.414850020803249351e-06,1.462011688163357698e-06,1.509173355523466045e-06,1.556335022883574392e-06,1.603496690243682739e-06,1.650658357603791086e-06,1.697820024963899433e-06,1.744981692324007780e-06,1.792143359684116127e-06,1.839305027044224474e-06,1.886466694404332821e-06,1.933628361764441168e-06,1.980790029124549303e-06,2.027951696484657438e-06,2.075113363844765573e-06,2.122275031204873709e-06,2.169436698564981844e-06,2.216598365925089979e-06,2.263760033285198114e-06,2.310921700645306250e-06,2.358083368005414385e-06,2.405245035365522520e-06,2.452406702725630655e-06,2.499568370085738791e-06,2.546730037445846926e-06,2.593891704805955061e-06,2.641053372166063196e-06,2.688215039526171331e-06,2.735376706886279467e-06,2.782538374246387602e-06,2.829700041606495737e-06,2.876861708966603872e-06,2.924023376326712008e-06,2.971185043686820143e-06 +0.000000000000000000e+00,4.873998455824612305e-08,9.747996911649224611e-08,1.462199536747383824e-07,1.949599382329845187e-07,2.436999227912306550e-07,2.924399073494767648e-07,3.411798919077228746e-07,3.899198764659689844e-07,4.386598610242150942e-07,4.873998455824612041e-07,5.361398301407073139e-07,5.848798146989534237e-07,6.336197992571995335e-07,6.823597838154456433e-07,7.310997683736917532e-07,7.798397529319378630e-07,8.285797374901839728e-07,8.773197220484300826e-07,9.260597066066761924e-07,9.747996911649221964e-07,1.023539675723168200e-06,1.072279660281414204e-06,1.121019644839660208e-06,1.169759629397906212e-06,1.218499613956152216e-06,1.267239598514398220e-06,1.315979583072644224e-06,1.364719567630890228e-06,1.413459552189136232e-06,1.462199536747382236e-06,1.510939521305628240e-06,1.559679505863874244e-06,1.608419490422120248e-06,1.657159474980366252e-06,1.705899459538612255e-06,1.754639444096858259e-06,1.803379428655104263e-06,1.852119413213350267e-06,1.900859397771596271e-06,1.949599382329842275e-06,1.998339366888088491e-06,2.047079351446334707e-06,2.095819336004580922e-06,2.144559320562827138e-06,2.193299305121073354e-06,2.242039289679319569e-06,2.290779274237565785e-06,2.339519258795812001e-06,2.388259243354058216e-06,2.436999227912304432e-06,2.485739212470550648e-06,2.534479197028796864e-06,2.583219181587043079e-06,2.631959166145289295e-06,2.680699150703535511e-06,2.729439135261781726e-06,2.778179119820027942e-06,2.826919104378274158e-06,2.875659088936520373e-06,2.924399073494766589e-06,2.973139058053012805e-06,3.021879042611259020e-06,3.070619027169505236e-06 +0.000000000000000000e+00,4.615271449830989769e-08,9.230542899661979537e-08,1.384581434949296864e-07,1.846108579932395643e-07,2.307635724915494421e-07,2.769162869898593199e-07,3.230690014881691978e-07,3.692217159864790756e-07,4.153744304847889535e-07,4.615271449830988313e-07,5.076798594814087621e-07,5.538325739797187458e-07,5.999852884780287295e-07,6.461380029763387132e-07,6.922907174746486969e-07,7.384434319729586806e-07,7.845961464712686643e-07,8.307488609695786481e-07,8.769015754678886318e-07,9.230542899661986155e-07,9.692070044645085992e-07,1.015359718962818583e-06,1.061512433461128567e-06,1.107665147959438550e-06,1.153817862457748534e-06,1.199970576956058518e-06,1.246123291454368501e-06,1.292276005952678485e-06,1.338428720450988469e-06,1.384581434949298453e-06,1.430734149447608436e-06,1.476886863945918420e-06,1.523039578444228404e-06,1.569192292942538387e-06,1.615345007440848371e-06,1.661497721939158355e-06,1.707650436437468339e-06,1.753803150935778322e-06,1.799955865434088306e-06,1.846108579932398290e-06,1.892261294430708273e-06,1.938414008929018045e-06,1.984566723427327817e-06,2.030719437925637589e-06,2.076872152423947361e-06,2.123024866922257133e-06,2.169177581420566905e-06,2.215330295918876677e-06,2.261483010417186449e-06,2.307635724915496221e-06,2.353788439413805993e-06,2.399941153912115765e-06,2.446093868410425537e-06,2.492246582908735309e-06,2.538399297407045081e-06,2.584552011905354853e-06,2.630704726403664625e-06,2.676857440901974397e-06,2.723010155400284169e-06,2.769162869898593941e-06,2.815315584396903713e-06,2.861468298895213485e-06,2.907621013393523257e-06 +0.000000000000000000e+00,4.716166736010886977e-08,9.432333472021773953e-08,1.414850020803266027e-07,1.886466694404354526e-07,2.358083368005443025e-07,2.829700041606531524e-07,3.301316715207620288e-07,3.772933388808709052e-07,4.244550062409797816e-07,4.716166736010886580e-07,5.187783409611975344e-07,5.659400083213064107e-07,6.131016756814152871e-07,6.602633430415241635e-07,7.074250104016330399e-07,7.545866777617419163e-07,8.017483451218507927e-07,8.489100124819596690e-07,8.960716798420685454e-07,9.432333472021774218e-07,9.903950145622862982e-07,1.037556681922395069e-06,1.084718349282503839e-06,1.131880016642612610e-06,1.179041684002721380e-06,1.226203351362830151e-06,1.273365018722938921e-06,1.320526686083047692e-06,1.367688353443156462e-06,1.414850020803265233e-06,1.462011688163374003e-06,1.509173355523482774e-06,1.556335022883591544e-06,1.603496690243700315e-06,1.650658357603809085e-06,1.697820024963917856e-06,1.744981692324026626e-06,1.792143359684135397e-06,1.839305027044244167e-06,1.886466694404352938e-06,1.933628361764461920e-06,1.980790029124570902e-06,2.027951696484679885e-06,2.075113363844788867e-06,2.122275031204897849e-06,2.169436698565006831e-06,2.216598365925115814e-06,2.263760033285224796e-06,2.310921700645333778e-06,2.358083368005442760e-06,2.405245035365551743e-06,2.452406702725660725e-06,2.499568370085769707e-06,2.546730037445878690e-06,2.593891704805987672e-06,2.641053372166096654e-06,2.688215039526205636e-06,2.735376706886314619e-06,2.782538374246423601e-06,2.829700041606532583e-06,2.876861708966641565e-06,2.924023376326750548e-06,2.971185043686859530e-06 +0.000000000000000000e+00,4.873998455824525617e-08,9.747996911649051234e-08,1.462199536747357619e-07,1.949599382329809982e-07,2.436999227912262080e-07,2.924399073494714179e-07,3.411798919077166277e-07,3.899198764659618376e-07,4.386598610242070474e-07,4.873998455824522043e-07,5.361398301406973612e-07,5.848798146989425182e-07,6.336197992571876751e-07,6.823597838154328320e-07,7.310997683736779889e-07,7.798397529319231458e-07,8.285797374901683027e-07,8.773197220484134596e-07,9.260597066066586165e-07,9.747996911649037734e-07,1.023539675723148930e-06,1.072279660281394087e-06,1.121019644839639244e-06,1.169759629397884401e-06,1.218499613956129558e-06,1.267239598514374715e-06,1.315979583072619872e-06,1.364719567630865029e-06,1.413459552189110186e-06,1.462199536747355342e-06,1.510939521305600499e-06,1.559679505863845656e-06,1.608419490422090813e-06,1.657159474980335970e-06,1.705899459538581127e-06,1.754639444096826284e-06,1.803379428655071441e-06,1.852119413213316598e-06,1.900859397771561755e-06,1.949599382329807123e-06,1.998339366888052492e-06,2.047079351446297861e-06,2.095819336004543229e-06,2.144559320562788598e-06,2.193299305121033967e-06,2.242039289679279335e-06,2.290779274237524704e-06,2.339519258795770073e-06,2.388259243354015441e-06,2.436999227912260810e-06,2.485739212470506179e-06,2.534479197028751547e-06,2.583219181586996916e-06,2.631959166145242285e-06,2.680699150703487653e-06,2.729439135261733022e-06,2.778179119819978391e-06,2.826919104378223759e-06,2.875659088936469128e-06,2.924399073494714497e-06,2.973139058052959865e-06,3.021879042611205234e-06,3.070619027169450603e-06 +0.000000000000000000e+00,4.307763743042821990e-08,8.615527486085643979e-08,1.292329122912846531e-07,1.723105497217128531e-07,2.153881871521410532e-07,2.584658245825692532e-07,3.015434620129974532e-07,3.446210994434256533e-07,3.876987368738538533e-07,4.307763743042820534e-07,4.738540117347102534e-07,5.169316491651384005e-07,5.600092865955666006e-07,6.030869240259948006e-07,6.461645614564230006e-07,6.892421988868512007e-07,7.323198363172794007e-07,7.753974737477076008e-07,8.184751111781358008e-07,8.615527486085640009e-07,9.046303860389922009e-07,9.477080234694204009e-07,9.907856608998486010e-07,1.033863298330276801e-06,1.076940935760705001e-06,1.120018573191133201e-06,1.163096210621561401e-06,1.206173848051989601e-06,1.249251485482417801e-06,1.292329122912846001e-06,1.335406760343274201e-06,1.378484397773702401e-06,1.421562035204130601e-06,1.464639672634558801e-06,1.507717310064987002e-06,1.550794947495415202e-06,1.593872584925843402e-06,1.636950222356271602e-06,1.680027859786699802e-06,1.723105497217128002e-06,1.766183134647556202e-06,1.809260772077984402e-06,1.852338409508412602e-06,1.895416046938840802e-06,1.938493684369268790e-06,1.981571321799696778e-06,2.024648959230124767e-06,2.067726596660552755e-06,2.110804234090980743e-06,2.153881871521408732e-06,2.196959508951836720e-06,2.240037146382264708e-06,2.283114783812692696e-06,2.326192421243120685e-06,2.369270058673548673e-06,2.412347696103976661e-06,2.455425333534404650e-06,2.498502970964832638e-06,2.541580608395260626e-06,2.584658245825688614e-06,2.627735883256116603e-06,2.670813520686544591e-06,2.713891158116972579e-06 +0.000000000000000000e+00,4.474248820104834687e-08,8.948497640209669375e-08,1.342274646031450472e-07,1.789699528041934140e-07,2.237124410052417807e-07,2.684549292062901474e-07,3.131974174073385406e-07,3.579399056083869338e-07,4.026823938094353270e-07,4.474248820104837202e-07,4.921673702115321134e-07,5.369098584125805066e-07,5.816523466136288998e-07,6.263948348146772930e-07,6.711373230157256862e-07,7.158798112167740794e-07,7.606222994178224726e-07,8.053647876188708658e-07,8.501072758199192590e-07,8.948497640209676522e-07,9.395922522220160454e-07,9.843347404230644385e-07,1.029077228624112938e-06,1.073819716825161437e-06,1.118562205026209936e-06,1.163304693227258435e-06,1.208047181428306934e-06,1.252789669629355433e-06,1.297532157830403932e-06,1.342274646031452431e-06,1.387017134232500930e-06,1.431759622433549429e-06,1.476502110634597928e-06,1.521244598835646427e-06,1.565987087036694927e-06,1.610729575237743426e-06,1.655472063438791925e-06,1.700214551639840424e-06,1.744957039840888923e-06,1.789699528041937422e-06,1.834442016242985921e-06,1.879184504444034420e-06,1.923926992645082919e-06,1.968669480846131418e-06,2.013411969047179917e-06,2.058154457248228416e-06,2.102896945449276915e-06,2.147639433650325414e-06,2.192381921851373914e-06,2.237124410052422413e-06,2.281866898253470912e-06,2.326609386454519411e-06,2.371351874655567910e-06,2.416094362856616409e-06,2.460836851057664908e-06,2.505579339258713407e-06,2.550321827459761906e-06,2.595064315660810405e-06,2.639806803861858904e-06,2.684549292062907403e-06,2.729291780263955902e-06,2.774034268465004402e-06,2.818776756666052901e-06 +0.000000000000000000e+00,4.528409519538545809e-08,9.056819039077091618e-08,1.358522855861563743e-07,1.811363807815418324e-07,2.264204759769272905e-07,2.717045711723127485e-07,3.169886663676982331e-07,3.622727615630837177e-07,4.075568567584692022e-07,4.528409519538546868e-07,4.981250471492401713e-07,5.434091423446256030e-07,5.886932375400110346e-07,6.339773327353964662e-07,6.792614279307818978e-07,7.245455231261673294e-07,7.698296183215527611e-07,8.151137135169381927e-07,8.603978087123236243e-07,9.056819039077090559e-07,9.509659991030944876e-07,9.962500942984799192e-07,1.041534189493865457e-06,1.086818284689250994e-06,1.132102379884636532e-06,1.177386475080022069e-06,1.222670570275407607e-06,1.267954665470793144e-06,1.313238760666178682e-06,1.358522855861564219e-06,1.403806951056949757e-06,1.449091046252335294e-06,1.494375141447720832e-06,1.539659236643106369e-06,1.584943331838491907e-06,1.630227427033877444e-06,1.675511522229262982e-06,1.720795617424648519e-06,1.766079712620034057e-06,1.811363807815419594e-06,1.856647903010805132e-06,1.901931998206190669e-06,1.947216093401576207e-06,1.992500188596961956e-06,2.037784283792347705e-06,2.083068378987733454e-06,2.128352474183119204e-06,2.173636569378504953e-06,2.218920664573890702e-06,2.264204759769276451e-06,2.309488854964662201e-06,2.354772950160047950e-06,2.400057045355433699e-06,2.445341140550819449e-06,2.490625235746205198e-06,2.535909330941590947e-06,2.581193426136976696e-06,2.626477521332362446e-06,2.671761616527748195e-06,2.717045711723133944e-06,2.762329806918519693e-06,2.807613902113905443e-06,2.852897997309291192e-06 +0.000000000000000000e+00,4.307763743042671112e-08,8.615527486085342224e-08,1.292329122912801267e-07,1.723105497217068180e-07,2.153881871521335093e-07,2.584658245825602005e-07,3.015434620129869183e-07,3.446210994434136360e-07,3.876987368738403537e-07,4.307763743042670715e-07,4.738540117346937892e-07,5.169316491651205069e-07,5.600092865955472247e-07,6.030869240259739424e-07,6.461645614564006602e-07,6.892421988868273779e-07,7.323198363172540956e-07,7.753974737476808134e-07,8.184751111781075311e-07,8.615527486085342488e-07,9.046303860389609666e-07,9.477080234693876843e-07,9.907856608998145079e-07,1.033863298330241226e-06,1.076940935760667943e-06,1.120018573191094661e-06,1.163096210621521379e-06,1.206173848051948097e-06,1.249251485482374814e-06,1.292329122912801532e-06,1.335406760343228250e-06,1.378484397773654968e-06,1.421562035204081685e-06,1.464639672634508403e-06,1.507717310064935121e-06,1.550794947495361838e-06,1.593872584925788556e-06,1.636950222356215274e-06,1.680027859786641992e-06,1.723105497217068709e-06,1.766183134647495427e-06,1.809260772077922145e-06,1.852338409508348863e-06,1.895416046938775580e-06,1.938493684369202298e-06,1.981571321799629016e-06,2.024648959230055734e-06,2.067726596660482451e-06,2.110804234090909169e-06,2.153881871521335887e-06,2.196959508951762605e-06,2.240037146382189322e-06,2.283114783812616040e-06,2.326192421243042758e-06,2.369270058673469475e-06,2.412347696103896193e-06,2.455425333534322911e-06,2.498502970964749629e-06,2.541580608395176346e-06,2.584658245825603064e-06,2.627735883256029782e-06,2.670813520686456500e-06,2.713891158116883217e-06 +0.000000000000000000e+00,4.474248820104728808e-08,8.948497640209457616e-08,1.342274646031418709e-07,1.789699528041891788e-07,2.237124410052364867e-07,2.684549292062837947e-07,3.131974174073311291e-07,3.579399056083784635e-07,4.026823938094257979e-07,4.474248820104731323e-07,4.921673702115204667e-07,5.369098584125678011e-07,5.816523466136151355e-07,6.263948348146624699e-07,6.711373230157098043e-07,7.158798112167571387e-07,7.606222994178044731e-07,8.053647876188518075e-07,8.501072758198991419e-07,8.948497640209464763e-07,9.395922522219938107e-07,9.843347404230411451e-07,1.029077228624088374e-06,1.073819716825135602e-06,1.118562205026182831e-06,1.163304693227230059e-06,1.208047181428277288e-06,1.252789669629324516e-06,1.297532157830371745e-06,1.342274646031418973e-06,1.387017134232466202e-06,1.431759622433513430e-06,1.476502110634560659e-06,1.521244598835607887e-06,1.565987087036655116e-06,1.610729575237702344e-06,1.655472063438749573e-06,1.700214551639796802e-06,1.744957039840844030e-06,1.789699528041891259e-06,1.834442016242938487e-06,1.879184504443985716e-06,1.923926992645032944e-06,1.968669480846080173e-06,2.013411969047127401e-06,2.058154457248174630e-06,2.102896945449221858e-06,2.147639433650269087e-06,2.192381921851316315e-06,2.237124410052363544e-06,2.281866898253410772e-06,2.326609386454458001e-06,2.371351874655505229e-06,2.416094362856552458e-06,2.460836851057599686e-06,2.505579339258646915e-06,2.550321827459694144e-06,2.595064315660741372e-06,2.639806803861788601e-06,2.684549292062835829e-06,2.729291780263883058e-06,2.774034268464930286e-06,2.818776756665977515e-06 +0.000000000000000000e+00,4.528409519538281111e-08,9.056819039076562223e-08,1.358522855861484333e-07,1.811363807815312445e-07,2.264204759769140556e-07,2.717045711722968667e-07,3.169886663676797043e-07,3.622727615630625418e-07,4.075568567584453794e-07,4.528409519538282170e-07,4.981250471492110546e-07,5.434091423445938392e-07,5.886932375399766239e-07,6.339773327353594085e-07,6.792614279307421932e-07,7.245455231261249778e-07,7.698296183215077624e-07,8.151137135168905471e-07,8.603978087122733317e-07,9.056819039076561164e-07,9.509659991030389010e-07,9.962500942984216857e-07,1.041534189493804470e-06,1.086818284689187255e-06,1.132102379884570040e-06,1.177386475079952824e-06,1.222670570275335609e-06,1.267954665470718394e-06,1.313238760666101178e-06,1.358522855861483963e-06,1.403806951056866747e-06,1.449091046252249532e-06,1.494375141447632317e-06,1.539659236643015101e-06,1.584943331838397886e-06,1.630227427033780671e-06,1.675511522229163455e-06,1.720795617424546240e-06,1.766079712619929025e-06,1.811363807815311809e-06,1.856647903010694594e-06,1.901931998206077379e-06,1.947216093401460163e-06,1.992500188596842948e-06,2.037784283792225732e-06,2.083068378987608517e-06,2.128352474182991302e-06,2.173636569378374086e-06,2.218920664573756871e-06,2.264204759769139656e-06,2.309488854964522440e-06,2.354772950159905225e-06,2.400057045355288010e-06,2.445341140550670794e-06,2.490625235746053579e-06,2.535909330941436364e-06,2.581193426136819148e-06,2.626477521332201933e-06,2.671761616527584717e-06,2.717045711722967502e-06,2.762329806918350287e-06,2.807613902113733071e-06,2.852897997309115856e-06 +0.000000000000000000e+00,3.928421827978837578e-08,7.856843655957675157e-08,1.178526548393651340e-07,1.571368731191535296e-07,1.964210913989419252e-07,2.357053096787303209e-07,2.749895279585187165e-07,3.142737462383071121e-07,3.535579645180955078e-07,3.928421827978839034e-07,4.321264010776722990e-07,4.714106193574606947e-07,5.106948376372490903e-07,5.499790559170374330e-07,5.892632741968257757e-07,6.285474924766141184e-07,6.678317107564024611e-07,7.071159290361908038e-07,7.464001473159791465e-07,7.856843655957674892e-07,8.249685838755558319e-07,8.642528021553441746e-07,9.035370204351325173e-07,9.428212387149208600e-07,9.821054569947090968e-07,1.021389675274497334e-06,1.060673893554285570e-06,1.099958111834073807e-06,1.139242330113862044e-06,1.178526548393650281e-06,1.217810766673438518e-06,1.257094984953226754e-06,1.296379203233014991e-06,1.335663421512803228e-06,1.374947639792591465e-06,1.414231858072379702e-06,1.453516076352167939e-06,1.492800294631956175e-06,1.532084512911744412e-06,1.571368731191532649e-06,1.610652949471320886e-06,1.649937167751109123e-06,1.689221386030897359e-06,1.728505604310685596e-06,1.767789822590473833e-06,1.807074040870262070e-06,1.846358259150050307e-06,1.885642477429838544e-06,1.924926695709626780e-06,1.964210913989414805e-06,2.003495132269202830e-06,2.042779350548990856e-06,2.082063568828778881e-06,2.121347787108566906e-06,2.160632005388354931e-06,2.199916223668142956e-06,2.239200441947930981e-06,2.278484660227719006e-06,2.317768878507507031e-06,2.357053096787295056e-06,2.396337315067083081e-06,2.435621533346871106e-06,2.474905751626659131e-06 +0.000000000000000000e+00,4.124194089486651944e-08,8.248388178973303887e-08,1.237258226845995517e-07,1.649677635794660513e-07,2.062097044743325509e-07,2.474516453691990504e-07,2.886935862640655500e-07,3.299355271589320496e-07,3.711774680537985492e-07,4.124194089486650488e-07,4.536613498435315484e-07,4.949032907383979950e-07,5.361452316332643887e-07,5.773871725281307824e-07,6.186291134229971761e-07,6.598710543178635698e-07,7.011129952127299635e-07,7.423549361075963572e-07,7.835968770024627509e-07,8.248388178973291446e-07,8.660807587921955383e-07,9.073226996870619320e-07,9.485646405819283257e-07,9.898065814767947195e-07,1.031048522371661113e-06,1.072290463266527507e-06,1.113532404161393901e-06,1.154774345056260294e-06,1.196016285951126688e-06,1.237258226845993082e-06,1.278500167740859475e-06,1.319742108635725869e-06,1.360984049530592263e-06,1.402225990425458656e-06,1.443467931320325050e-06,1.484709872215191444e-06,1.525951813110057838e-06,1.567193754004924231e-06,1.608435694899790625e-06,1.649677635794657019e-06,1.690919576689523412e-06,1.732161517584389806e-06,1.773403458479256200e-06,1.814645399374122594e-06,1.855887340268988987e-06,1.897129281163855381e-06,1.938371222058721775e-06,1.979613162953588168e-06,2.020855103848454562e-06,2.062097044743320956e-06,2.103338985638187349e-06,2.144580926533053743e-06,2.185822867427920137e-06,2.227064808322786531e-06,2.268306749217652924e-06,2.309548690112519318e-06,2.350790631007385712e-06,2.392032571902252105e-06,2.433274512797118499e-06,2.474516453691984893e-06,2.515758394586851287e-06,2.557000335481717680e-06,2.598242276376584074e-06 +0.000000000000000000e+00,4.121033803815289013e-08,8.242067607630578025e-08,1.236310141144586638e-07,1.648413521526115340e-07,2.060516901907644043e-07,2.472620282289172746e-07,2.884723662670701184e-07,3.296827043052229622e-07,3.708930423433758060e-07,4.121033803815286498e-07,4.533137184196814936e-07,4.945240564578343374e-07,5.357343944959871812e-07,5.769447325341400250e-07,6.181550705722928688e-07,6.593654086104457126e-07,7.005757466485985564e-07,7.417860846867514002e-07,7.829964227249042440e-07,8.242067607630570878e-07,8.654170988012099316e-07,9.066274368393627754e-07,9.478377748775156192e-07,9.890481129156684630e-07,1.030258450953821307e-06,1.071468788991974151e-06,1.112679127030126994e-06,1.153889465068279838e-06,1.195099803106432682e-06,1.236310141144585526e-06,1.277520479182738370e-06,1.318730817220891213e-06,1.359941155259044057e-06,1.401151493297196901e-06,1.442361831335349745e-06,1.483572169373502589e-06,1.524782507411655432e-06,1.565992845449808276e-06,1.607203183487961120e-06,1.648413521526113964e-06,1.689623859564266808e-06,1.730834197602419652e-06,1.772044535640572495e-06,1.813254873678725339e-06,1.854465211716878183e-06,1.895675549755031027e-06,1.936885887793183871e-06,1.978096225831336503e-06,2.019306563869489135e-06,2.060516901907641767e-06,2.101727239945794399e-06,2.142937577983947031e-06,2.184147916022099663e-06,2.225358254060252295e-06,2.266568592098404927e-06,2.307778930136557559e-06,2.348989268174710191e-06,2.390199606212862823e-06,2.431409944251015455e-06,2.472620282289168087e-06,2.513830620327320719e-06,2.555040958365473351e-06,2.596251296403625983e-06 +0.000000000000000000e+00,3.928421827978558984e-08,7.856843655957117968e-08,1.178526548393567695e-07,1.571368731191423594e-07,1.964210913989279492e-07,2.357053096787135390e-07,2.749895279584991289e-07,3.142737462382847187e-07,3.535579645180703085e-07,3.928421827978558984e-07,4.321264010776414882e-07,4.714106193574270781e-07,5.106948376372126679e-07,5.499790559169982577e-07,5.892632741967838476e-07,6.285474924765694374e-07,6.678317107563550273e-07,7.071159290361406171e-07,7.464001473159262069e-07,7.856843655957117968e-07,8.249685838754973866e-07,8.642528021552829764e-07,9.035370204350685663e-07,9.428212387148541561e-07,9.821054569946396401e-07,1.021389675274425124e-06,1.060673893554210608e-06,1.099958111833996092e-06,1.139242330113781576e-06,1.178526548393567060e-06,1.217810766673352544e-06,1.257094984953138028e-06,1.296379203232923512e-06,1.335663421512708996e-06,1.374947639792494480e-06,1.414231858072279964e-06,1.453516076352065448e-06,1.492800294631850932e-06,1.532084512911636416e-06,1.571368731191421899e-06,1.610652949471207383e-06,1.649937167750992867e-06,1.689221386030778351e-06,1.728505604310563835e-06,1.767789822590349319e-06,1.807074040870134803e-06,1.846358259149920287e-06,1.885642477429705771e-06,1.924926695709491255e-06,1.964210913989276739e-06,2.003495132269062223e-06,2.042779350548847707e-06,2.082063568828633191e-06,2.121347787108418675e-06,2.160632005388204159e-06,2.199916223667989643e-06,2.239200441947775127e-06,2.278484660227560611e-06,2.317768878507346095e-06,2.357053096787131579e-06,2.396337315066917063e-06,2.435621533346702547e-06,2.474905751626488031e-06 +0.000000000000000000e+00,4.124194089486421656e-08,8.248388178972843313e-08,1.237258226845926431e-07,1.649677635794568398e-07,2.062097044743210365e-07,2.474516453691852332e-07,2.886935862640494035e-07,3.299355271589135737e-07,3.711774680537777439e-07,4.124194089486419142e-07,4.536613498435060844e-07,4.949032907383702547e-07,5.361452316332344249e-07,5.773871725280985952e-07,6.186291134229627654e-07,6.598710543178269356e-07,7.011129952126911059e-07,7.423549361075552761e-07,7.835968770024194464e-07,8.248388178972836166e-07,8.660807587921477869e-07,9.073226996870119571e-07,9.485646405818761273e-07,9.898065814767402976e-07,1.031048522371604362e-06,1.072290463266468426e-06,1.113532404161332491e-06,1.154774345056196555e-06,1.196016285951060619e-06,1.237258226845924684e-06,1.278500167740788748e-06,1.319742108635652812e-06,1.360984049530516877e-06,1.402225990425380941e-06,1.443467931320245006e-06,1.484709872215109070e-06,1.525951813109973134e-06,1.567193754004837199e-06,1.608435694899701263e-06,1.649677635794565327e-06,1.690919576689429392e-06,1.732161517584293456e-06,1.773403458479157520e-06,1.814645399374021585e-06,1.855887340268885649e-06,1.897129281163749714e-06,1.938371222058613778e-06,1.979613162953477631e-06,2.020855103848341483e-06,2.062097044743205336e-06,2.103338985638069188e-06,2.144580926532933041e-06,2.185822867427796894e-06,2.227064808322660746e-06,2.268306749217524599e-06,2.309548690112388451e-06,2.350790631007252304e-06,2.392032571902116157e-06,2.433274512796980009e-06,2.474516453691843862e-06,2.515758394586707714e-06,2.557000335481571567e-06,2.598242276376435420e-06 +0.000000000000000000e+00,4.121033803814902554e-08,8.242067607629805108e-08,1.236310141144470700e-07,1.648413521525960757e-07,2.060516901907450814e-07,2.472620282288940871e-07,2.884723662670431192e-07,3.296827043051921514e-07,3.708930423433411835e-07,4.121033803814902157e-07,4.533137184196392478e-07,4.945240564577882800e-07,5.357343944959373121e-07,5.769447325340863443e-07,6.181550705722353764e-07,6.593654086103844086e-07,7.005757466485334408e-07,7.417860846866824729e-07,7.829964227248315051e-07,8.242067607629805372e-07,8.654170988011295694e-07,9.066274368392786015e-07,9.478377748774276337e-07,9.890481129155767717e-07,1.030258450953726016e-06,1.071468788991875260e-06,1.112679127030024503e-06,1.153889465068173747e-06,1.195099803106322991e-06,1.236310141144472235e-06,1.277520479182621479e-06,1.318730817220770723e-06,1.359941155258919967e-06,1.401151493297069211e-06,1.442361831335218455e-06,1.483572169373367699e-06,1.524782507411516943e-06,1.565992845449666187e-06,1.607203183487815430e-06,1.648413521525964674e-06,1.689623859564113918e-06,1.730834197602263162e-06,1.772044535640412406e-06,1.813254873678561650e-06,1.854465211716710894e-06,1.895675549754860138e-06,1.936885887793009382e-06,1.978096225831158626e-06,2.019306563869307870e-06,2.060516901907457113e-06,2.101727239945606357e-06,2.142937577983755601e-06,2.184147916021904845e-06,2.225358254060054089e-06,2.266568592098203333e-06,2.307778930136352577e-06,2.348989268174501821e-06,2.390199606212651065e-06,2.431409944250800309e-06,2.472620282288949553e-06,2.513830620327098797e-06,2.555040958365248040e-06,2.596251296403397284e-06 +0.000000000000000000e+00,3.513920724557370219e-08,7.027841449114740439e-08,1.054176217367211066e-07,1.405568289822948088e-07,1.756960362278685242e-07,2.108352434734422396e-07,2.459744507190159551e-07,2.811136579645896705e-07,3.162528652101633859e-07,3.513920724557371014e-07,3.865312797013108168e-07,4.216704869468845322e-07,4.568096941924582476e-07,4.919489014380320160e-07,5.270881086836058373e-07,5.622273159291796586e-07,5.973665231747534799e-07,6.325057304203273013e-07,6.676449376659011226e-07,7.027841449114749439e-07,7.379233521570487652e-07,7.730625594026225865e-07,8.082017666481964078e-07,8.433409738937702291e-07,8.784801811393440504e-07,9.136193883849178717e-07,9.487585956304916930e-07,9.838978028760655143e-07,1.019037010121639336e-06,1.054176217367213157e-06,1.089315424612786978e-06,1.124454631858360800e-06,1.159593839103934621e-06,1.194733046349508442e-06,1.229872253595082264e-06,1.265011460840656085e-06,1.300150668086229906e-06,1.335289875331803727e-06,1.370429082577377549e-06,1.405568289822951370e-06,1.440707497068525191e-06,1.475846704314099013e-06,1.510985911559672834e-06,1.546125118805246655e-06,1.581264326050820477e-06,1.616403533296394298e-06,1.651542740541968119e-06,1.686681947787541941e-06,1.721821155033115762e-06,1.756960362278689583e-06,1.792099569524263404e-06,1.827238776769837226e-06,1.862377984015411047e-06,1.897517191260984868e-06,1.932656398506558478e-06,1.967795605752132299e-06,2.002934812997706121e-06,2.038074020243279942e-06,2.073213227488853763e-06,2.108352434734427584e-06,2.143491641980001406e-06,2.178630849225575227e-06,2.213770056471149048e-06 +0.000000000000000000e+00,3.724405484595744357e-08,7.448810969191488714e-08,1.117321645378723241e-07,1.489762193838297478e-07,1.862202742297871715e-07,2.234643290757445952e-07,2.607083839217019925e-07,2.979524387676593897e-07,3.351964936136167870e-07,3.724405484595741842e-07,4.096846033055315815e-07,4.469286581514889787e-07,4.841727129974463760e-07,5.214167678434037732e-07,5.586608226893611705e-07,5.959048775353185677e-07,6.331489323812759650e-07,6.703929872272333622e-07,7.076370420731907595e-07,7.448810969191481567e-07,7.821251517651055540e-07,8.193692066110629512e-07,8.566132614570203485e-07,8.938573163029777457e-07,9.311013711489351430e-07,9.683454259948925402e-07,1.005589480840849937e-06,1.042833535686807335e-06,1.080077590532764732e-06,1.117321645378722129e-06,1.154565700224679526e-06,1.191809755070636924e-06,1.229053809916594321e-06,1.266297864762551718e-06,1.303541919608509115e-06,1.340785974454466513e-06,1.378030029300423910e-06,1.415274084146381307e-06,1.452518138992338704e-06,1.489762193838296102e-06,1.527006248684253499e-06,1.564250303530210896e-06,1.601494358376168293e-06,1.638738413222125691e-06,1.675982468068083088e-06,1.713226522914040485e-06,1.750470577759997882e-06,1.787714632605955280e-06,1.824958687451912677e-06,1.862202742297870074e-06,1.899446797143827471e-06,1.936690851989784657e-06,1.973934906835742054e-06,2.011178961681699451e-06,2.048423016527656849e-06,2.085667071373614246e-06,2.122911126219571643e-06,2.160155181065529040e-06,2.197399235911486438e-06,2.234643290757443835e-06,2.271887345603401232e-06,2.309131400449358629e-06,2.346375455295316027e-06 +0.000000000000000000e+00,3.688597790620995070e-08,7.377195581241990141e-08,1.106579337186298521e-07,1.475439116248398028e-07,1.844298895310497535e-07,2.213158674372597042e-07,2.582018453434696814e-07,2.950878232496796586e-07,3.319738011558896357e-07,3.688597790620996129e-07,4.057457569683095901e-07,4.426317348745195673e-07,4.795177127807295444e-07,5.164036906869395746e-07,5.532896685931496047e-07,5.901756464993596348e-07,6.270616244055696649e-07,6.639476023117796950e-07,7.008335802179897251e-07,7.377195581241997552e-07,7.746055360304097854e-07,8.114915139366198155e-07,8.483774918428298456e-07,8.852634697490398757e-07,9.221494476552499058e-07,9.590354255614599359e-07,9.959214034676700719e-07,1.032807381373880208e-06,1.069693359280090344e-06,1.106579337186300480e-06,1.143465315092510616e-06,1.180351292998720752e-06,1.217237270904930888e-06,1.254123248811141024e-06,1.291009226717351160e-06,1.327895204623561296e-06,1.364781182529771432e-06,1.401667160435981568e-06,1.438553138342191704e-06,1.475439116248401840e-06,1.512325094154611976e-06,1.549211072060822112e-06,1.586097049967032248e-06,1.622983027873242384e-06,1.659869005779452520e-06,1.696754983685662656e-06,1.733640961591872792e-06,1.770526939498082928e-06,1.807412917404293064e-06,1.844298895310503200e-06,1.881184873216713336e-06,1.918070851122923683e-06,1.954956829029134031e-06,1.991842806935344379e-06,2.028728784841554727e-06,2.065614762747765075e-06,2.102500740653975422e-06,2.139386718560185770e-06,2.176272696466396118e-06,2.213158674372606466e-06,2.250044652278816813e-06,2.286930630185027161e-06,2.323816608091237509e-06 +0.000000000000000000e+00,3.513920724556979790e-08,7.027841449113959580e-08,1.054176217367093937e-07,1.405568289822791916e-07,1.756960362278489895e-07,2.108352434734187874e-07,2.459744507189885853e-07,2.811136579645583832e-07,3.162528652101281811e-07,3.513920724556979790e-07,3.865312797012677769e-07,4.216704869468375748e-07,4.568096941924073727e-07,4.919489014379771706e-07,5.270881086835469685e-07,5.622273159291167664e-07,5.973665231746865643e-07,6.325057304202563622e-07,6.676449376658261601e-07,7.027841449113959580e-07,7.379233521569657560e-07,7.730625594025355539e-07,8.082017666481053518e-07,8.433409738936751497e-07,8.784801811392449476e-07,9.136193883848147455e-07,9.487585956303845434e-07,9.838978028759543413e-07,1.019037010121524139e-06,1.054176217367093937e-06,1.089315424612663735e-06,1.124454631858233533e-06,1.159593839103803331e-06,1.194733046349373129e-06,1.229872253594942927e-06,1.265011460840512724e-06,1.300150668086082522e-06,1.335289875331652320e-06,1.370429082577222118e-06,1.405568289822791916e-06,1.440707497068361714e-06,1.475846704313931512e-06,1.510985911559501310e-06,1.546125118805071108e-06,1.581264326050640906e-06,1.616403533296210704e-06,1.651542740541780501e-06,1.686681947787350299e-06,1.721821155032920097e-06,1.756960362278489895e-06,1.792099569524059693e-06,1.827238776769629491e-06,1.862377984015199289e-06,1.897517191260769087e-06,1.932656398506339096e-06,1.967795605751909106e-06,2.002934812997479116e-06,2.038074020243049125e-06,2.073213227488619135e-06,2.108352434734189145e-06,2.143491641979759154e-06,2.178630849225329164e-06,2.213770056470899174e-06 +0.000000000000000000e+00,3.724405484595402235e-08,7.448810969190804470e-08,1.117321645378620671e-07,1.489762193838160894e-07,1.862202742297700985e-07,2.234643290757241076e-07,2.607083839216781168e-07,2.979524387676321259e-07,3.351964936135861350e-07,3.724405484595401441e-07,4.096846033054941532e-07,4.469286581514481623e-07,4.841727129974021185e-07,5.214167678433561276e-07,5.586608226893101367e-07,5.959048775352641459e-07,6.331489323812181550e-07,6.703929872271721641e-07,7.076370420731261732e-07,7.448810969190801823e-07,7.821251517650341914e-07,8.193692066109882006e-07,8.566132614569422097e-07,8.938573163028962188e-07,9.311013711488502279e-07,9.683454259948042370e-07,1.005589480840758246e-06,1.042833535686712255e-06,1.080077590532666264e-06,1.117321645378620273e-06,1.154565700224574283e-06,1.191809755070528292e-06,1.229053809916482301e-06,1.266297864762436310e-06,1.303541919608390319e-06,1.340785974454344328e-06,1.378030029300298337e-06,1.415274084146252346e-06,1.452518138992206356e-06,1.489762193838160365e-06,1.527006248684114374e-06,1.564250303530068383e-06,1.601494358376022392e-06,1.638738413221976401e-06,1.675982468067930410e-06,1.713226522913884419e-06,1.750470577759838428e-06,1.787714632605792438e-06,1.824958687451746447e-06,1.862202742297700456e-06,1.899446797143654465e-06,1.936690851989608474e-06,1.973934906835562483e-06,2.011178961681516492e-06,2.048423016527470501e-06,2.085667071373424511e-06,2.122911126219378520e-06,2.160155181065332529e-06,2.197399235911286538e-06,2.234643290757240547e-06,2.271887345603194556e-06,2.309131400449148565e-06,2.346375455295102574e-06 +0.000000000000000000e+00,3.688597790620512659e-08,7.377195581241025317e-08,1.106579337186153731e-07,1.475439116248204799e-07,1.844298895310255866e-07,2.213158674372306933e-07,2.582018453434358001e-07,2.950878232496409068e-07,3.319738011558460136e-07,3.688597790620511203e-07,4.057457569682562270e-07,4.426317348744613338e-07,4.795177127806664405e-07,5.164036906868716002e-07,5.532896685930767598e-07,5.901756464992819195e-07,6.270616244054870792e-07,6.639476023116922389e-07,7.008335802178973985e-07,7.377195581241025582e-07,7.746055360303077179e-07,8.114915139365128776e-07,8.483774918427180372e-07,8.852634697489231969e-07,9.221494476551283566e-07,9.590354255613335163e-07,9.959214034675387818e-07,1.032807381373744047e-06,1.069693359279949313e-06,1.106579337186154578e-06,1.143465315092359844e-06,1.180351292998565110e-06,1.217237270904770375e-06,1.254123248810975641e-06,1.291009226717180906e-06,1.327895204623386172e-06,1.364781182529591437e-06,1.401667160435796703e-06,1.438553138342001968e-06,1.475439116248207234e-06,1.512325094154412500e-06,1.549211072060617765e-06,1.586097049966823031e-06,1.622983027873028296e-06,1.659869005779233562e-06,1.696754983685438827e-06,1.733640961591644093e-06,1.770526939497849358e-06,1.807412917404054624e-06,1.844298895310259890e-06,1.881184873216465155e-06,1.918070851122670421e-06,1.954956829028875686e-06,1.991842806935080952e-06,2.028728784841286217e-06,2.065614762747491483e-06,2.102500740653696748e-06,2.139386718559902014e-06,2.176272696466107280e-06,2.213158674372312545e-06,2.250044652278517811e-06,2.286930630184723076e-06,2.323816608090928342e-06 +0.000000000000000000e+00,3.079642335349032671e-08,6.159284670698065343e-08,9.238927006047097352e-08,1.231856934139612804e-07,1.539821167674515872e-07,1.847785401209418941e-07,2.155749634744322010e-07,2.463713868279225078e-07,2.771678101814128412e-07,3.079642335349031745e-07,3.387606568883935078e-07,3.695570802418838411e-07,4.003535035953741745e-07,4.311499269488645078e-07,4.619463503023548411e-07,4.927427736558451215e-07,5.235391970093354019e-07,5.543356203628256823e-07,5.851320437163159627e-07,6.159284670698062431e-07,6.467248904232965235e-07,6.775213137767868039e-07,7.083177371302770843e-07,7.391141604837673647e-07,7.699105838372576451e-07,8.007070071907479254e-07,8.315034305442382058e-07,8.622998538977284862e-07,8.930962772512187666e-07,9.238927006047090470e-07,9.546891239581992215e-07,9.854855473116893960e-07,1.016281970665179571e-06,1.047078394018669745e-06,1.077874817372159920e-06,1.108671240725650094e-06,1.139467664079140269e-06,1.170264087432630443e-06,1.201060510786120618e-06,1.231856934139610792e-06,1.262653357493100967e-06,1.293449780846591141e-06,1.324246204200081316e-06,1.355042627553571490e-06,1.385839050907061665e-06,1.416635474260551839e-06,1.447431897614042014e-06,1.478228320967532188e-06,1.509024744321022363e-06,1.539821167674512537e-06,1.570617591028002712e-06,1.601414014381492886e-06,1.632210437734983061e-06,1.663006861088473235e-06,1.693803284441963410e-06,1.724599707795453584e-06,1.755396131148943759e-06,1.786192554502433933e-06,1.816988977855924108e-06,1.847785401209414282e-06,1.878581824562904457e-06,1.909378247916394631e-06,1.940174671269884806e-06 +0.000000000000000000e+00,3.298879349218586677e-08,6.597758698437173353e-08,9.896638047655760030e-08,1.319551739687434671e-07,1.649439674609293206e-07,1.979327609531151741e-07,2.309215544453010277e-07,2.639103479374868812e-07,2.968991414296727347e-07,3.298879349218585883e-07,3.628767284140444418e-07,3.958655219062302953e-07,4.288543153984161489e-07,4.618431088906020024e-07,4.948319023827878559e-07,5.278206958749736565e-07,5.608094893671594571e-07,5.937982828593452577e-07,6.267870763515310583e-07,6.597758698437168589e-07,6.927646633359026595e-07,7.257534568280884601e-07,7.587422503202742607e-07,7.917310438124600613e-07,8.247198373046458618e-07,8.577086307968316624e-07,8.906974242890174630e-07,9.236862177812032636e-07,9.566750112733889583e-07,9.896638047655746530e-07,1.022652598257760348e-06,1.055641391749946042e-06,1.088630185242131737e-06,1.121618978734317432e-06,1.154607772226503127e-06,1.187596565718688821e-06,1.220585359210874516e-06,1.253574152703060211e-06,1.286562946195245905e-06,1.319551739687431600e-06,1.352540533179617295e-06,1.385529326671802990e-06,1.418518120163988684e-06,1.451506913656174379e-06,1.484495707148360074e-06,1.517484500640545768e-06,1.550473294132731463e-06,1.583462087624917158e-06,1.616450881117102853e-06,1.649439674609288547e-06,1.682428468101474242e-06,1.715417261593659937e-06,1.748406055085845631e-06,1.781394848578031326e-06,1.814383642070217021e-06,1.847372435562402716e-06,1.880361229054588410e-06,1.913350022546774105e-06,1.946338816038959800e-06,1.979327609531145494e-06,2.012316403023331189e-06,2.045305196515516884e-06,2.078293990007702579e-06 +0.000000000000000000e+00,3.244475819871469636e-08,6.488951639742939272e-08,9.733427459614409570e-08,1.297790327948588119e-07,1.622237909935735281e-07,1.946685491922882443e-07,2.271133073910029605e-07,2.595580655897176768e-07,2.920028237884323930e-07,3.244475819871471092e-07,3.568923401858618254e-07,3.893370983845765416e-07,4.217818565832912578e-07,4.542266147820059740e-07,4.866713729807206373e-07,5.191161311794352476e-07,5.515608893781498580e-07,5.840056475768644683e-07,6.164504057755790786e-07,6.488951639742936890e-07,6.813399221730082993e-07,7.137846803717229096e-07,7.462294385704375200e-07,7.786741967691521303e-07,8.111189549678667406e-07,8.435637131665813510e-07,8.760084713652959613e-07,9.084532295640105716e-07,9.408979877627251820e-07,9.733427459614397923e-07,1.005787504160154403e-06,1.038232262358869013e-06,1.070677020557583623e-06,1.103121778756298234e-06,1.135566536955012844e-06,1.168011295153727454e-06,1.200456053352442065e-06,1.232900811551156675e-06,1.265345569749871285e-06,1.297790327948585896e-06,1.330235086147300506e-06,1.362679844346015116e-06,1.395124602544729727e-06,1.427569360743444337e-06,1.460014118942158947e-06,1.492458877140873558e-06,1.524903635339588168e-06,1.557348393538302778e-06,1.589793151737017389e-06,1.622237909935731999e-06,1.654682668134446609e-06,1.687127426333161220e-06,1.719572184531875830e-06,1.752016942730590440e-06,1.784461700929305051e-06,1.816906459128019661e-06,1.849351217326734271e-06,1.881795975525448882e-06,1.914240733724163704e-06,1.946685491922878314e-06,1.979130250121592924e-06,2.011575008320307535e-06,2.044019766519022145e-06 +0.000000000000000000e+00,3.079642335348591949e-08,6.159284670697183899e-08,9.238927006045776510e-08,1.231856934139437044e-07,1.539821167674296438e-07,1.847785401209155831e-07,2.155749634744015225e-07,2.463713868278874618e-07,2.771678101813734012e-07,3.079642335348593405e-07,3.387606568883452799e-07,3.695570802418312192e-07,4.003535035953171586e-07,4.311499269488030979e-07,4.619463503022890373e-07,4.927427736557750296e-07,5.235391970092609689e-07,5.543356203627469083e-07,5.851320437162328476e-07,6.159284670697187869e-07,6.467248904232047263e-07,6.775213137766906656e-07,7.083177371301766050e-07,7.391141604836625443e-07,7.699105838371484837e-07,8.007070071906344230e-07,8.315034305441203624e-07,8.622998538976063017e-07,8.930962772510922411e-07,9.238927006045781804e-07,9.546891239580641198e-07,9.854855473115500591e-07,1.016281970665035998e-06,1.047078394018521938e-06,1.077874817372007877e-06,1.108671240725493817e-06,1.139467664078979756e-06,1.170264087432465695e-06,1.201060510785951635e-06,1.231856934139437574e-06,1.262653357492923513e-06,1.293449780846409453e-06,1.324246204199895392e-06,1.355042627553381331e-06,1.385839050906867271e-06,1.416635474260353210e-06,1.447431897613839149e-06,1.478228320967325089e-06,1.509024744320811028e-06,1.539821167674296967e-06,1.570617591027782907e-06,1.601414014381268846e-06,1.632210437734754785e-06,1.663006861088240725e-06,1.693803284441726664e-06,1.724599707795212603e-06,1.755396131148698543e-06,1.786192554502184482e-06,1.816988977855670421e-06,1.847785401209156361e-06,1.878581824562642300e-06,1.909378247916128240e-06,1.940174671269614179e-06 +0.000000000000000000e+00,3.298879349218165807e-08,6.597758698436331614e-08,9.896638047654497422e-08,1.319551739687266323e-07,1.649439674609083036e-07,1.979327609530899749e-07,2.309215544452716462e-07,2.639103479374533175e-07,2.968991414296349888e-07,3.298879349218166601e-07,3.628767284139983314e-07,3.958655219061800027e-07,4.288543153983616740e-07,4.618431088905433454e-07,4.948319023827250696e-07,5.278206958749067409e-07,5.608094893670884122e-07,5.937982828592700835e-07,6.267870763514517548e-07,6.597758698436334261e-07,6.927646633358150974e-07,7.257534568279967687e-07,7.587422503201784401e-07,7.917310438123601114e-07,8.247198373045417827e-07,8.577086307967234540e-07,8.906974242889051253e-07,9.236862177810867966e-07,9.566750112732684679e-07,9.896638047654501392e-07,1.022652598257631811e-06,1.055641391749813482e-06,1.088630185241995153e-06,1.121618978734176824e-06,1.154607772226358496e-06,1.187596565718540167e-06,1.220585359210721838e-06,1.253574152702903510e-06,1.286562946195085181e-06,1.319551739687266852e-06,1.352540533179448524e-06,1.385529326671630195e-06,1.418518120163811866e-06,1.451506913655993537e-06,1.484495707148175209e-06,1.517484500640356880e-06,1.550473294132538551e-06,1.583462087624720223e-06,1.616450881116901894e-06,1.649439674609083565e-06,1.682428468101265237e-06,1.715417261593446908e-06,1.748406055085628579e-06,1.781394848577810251e-06,1.814383642069991922e-06,1.847372435562173593e-06,1.880361229054355264e-06,1.913350022546536936e-06,1.946338816038718395e-06,1.979327609530899855e-06,2.012316403023081314e-06,2.045305196515262774e-06,2.078293990007444234e-06 +0.000000000000000000e+00,3.244475819870904506e-08,6.488951639741809012e-08,9.733427459612712857e-08,1.297790327948361538e-07,1.622237909935451790e-07,1.946685491922542042e-07,2.271133073909632294e-07,2.595580655896722546e-07,2.920028237883813063e-07,3.244475819870903580e-07,3.568923401857994097e-07,3.893370983845084613e-07,4.217818565832175130e-07,4.542266147819265647e-07,4.866713729806356164e-07,5.191161311793446151e-07,5.515608893780536139e-07,5.840056475767626126e-07,6.164504057754716113e-07,6.488951639741806101e-07,6.813399221728896088e-07,7.137846803715986076e-07,7.462294385703076063e-07,7.786741967690166050e-07,8.111189549677256038e-07,8.435637131664346025e-07,8.760084713651436013e-07,9.084532295638526000e-07,9.408979877625615987e-07,9.733427459612705975e-07,1.005787504159979702e-06,1.038232262358688807e-06,1.070677020557397911e-06,1.103121778756107016e-06,1.135566536954816121e-06,1.168011295153525225e-06,1.200456053352234330e-06,1.232900811550943434e-06,1.265345569749652539e-06,1.297790327948361644e-06,1.330235086147070748e-06,1.362679844345779853e-06,1.395124602544488958e-06,1.427569360743198062e-06,1.460014118941907167e-06,1.492458877140616271e-06,1.524903635339325376e-06,1.557348393538034481e-06,1.589793151736743585e-06,1.622237909935452690e-06,1.654682668134161794e-06,1.687127426332870899e-06,1.719572184531580004e-06,1.752016942730289108e-06,1.784461700928998213e-06,1.816906459127707318e-06,1.849351217326416422e-06,1.881795975525125527e-06,1.914240733723834631e-06,1.946685491922543736e-06,1.979130250121252841e-06,2.011575008319961945e-06,2.044019766518671050e-06 +0.000000000000000000e+00,2.630648771860510423e-08,5.261297543721020845e-08,7.891946315581531599e-08,1.052259508744204301e-07,1.315324385930255443e-07,1.578389263116306584e-07,1.841454140302357726e-07,2.104519017488408867e-07,2.367583894674460009e-07,2.630648771860511415e-07,2.893713649046563086e-07,3.156778526232614757e-07,3.419843403418666428e-07,3.682908280604718099e-07,3.945973157790769770e-07,4.209038034976821441e-07,4.472102912162873112e-07,4.735167789348924783e-07,4.998232666534976453e-07,5.261297543721028124e-07,5.524362420907079795e-07,5.787427298093131466e-07,6.050492175279183137e-07,6.313557052465234808e-07,6.576621929651286479e-07,6.839686806837338150e-07,7.102751684023389821e-07,7.365816561209441492e-07,7.628881438395493163e-07,7.891946315581544834e-07,8.155011192767596505e-07,8.418076069953648175e-07,8.681140947139699846e-07,8.944205824325751517e-07,9.207270701511803188e-07,9.470335578697854859e-07,9.733400455883905471e-07,9.996465333069955025e-07,1.025953021025600458e-06,1.052259508744205413e-06,1.078565996462810368e-06,1.104872484181415324e-06,1.131178971900020279e-06,1.157485459618625234e-06,1.183791947337230190e-06,1.210098435055835145e-06,1.236404922774440100e-06,1.262711410493045056e-06,1.289017898211650011e-06,1.315324385930254966e-06,1.341630873648859922e-06,1.367937361367464877e-06,1.394243849086069832e-06,1.420550336804674788e-06,1.446856824523279743e-06,1.473163312241884698e-06,1.499469799960489654e-06,1.525776287679094609e-06,1.552082775397699564e-06,1.578389263116304520e-06,1.604695750834909475e-06,1.631002238553514430e-06,1.657308726272119386e-06 +0.000000000000000000e+00,2.856962980942904985e-08,5.713925961885809969e-08,8.570888942828714623e-08,1.142785192377161862e-07,1.428481490471452128e-07,1.714177788565742395e-07,1.999874086660032662e-07,2.285570384754322929e-07,2.571266682848613196e-07,2.856962980942903198e-07,3.142659279037193200e-07,3.428355577131483202e-07,3.714051875225773204e-07,3.999748173320063207e-07,4.285444471414353209e-07,4.571140769508643211e-07,4.856837067602933213e-07,5.142533365697223215e-07,5.428229663791513217e-07,5.713925961885803220e-07,5.999622259980093222e-07,6.285318558074383224e-07,6.571014856168673226e-07,6.856711154262963228e-07,7.142407452357253230e-07,7.428103750451543233e-07,7.713800048545833235e-07,7.999496346640123237e-07,8.285192644734413239e-07,8.570888942828703241e-07,8.856585240922993243e-07,9.142281539017283246e-07,9.427977837111573248e-07,9.713674135205864309e-07,9.999370433300156428e-07,1.028506673139444855e-06,1.057076302948874067e-06,1.085645932758303279e-06,1.114215562567732491e-06,1.142785192377161703e-06,1.171354822186590915e-06,1.199924451996020127e-06,1.228494081805449339e-06,1.257063711614878551e-06,1.285633341424307763e-06,1.314202971233736975e-06,1.342772601043166187e-06,1.371342230852595399e-06,1.399911860662024610e-06,1.428481490471453822e-06,1.457051120280883034e-06,1.485620750090312246e-06,1.514190379899741458e-06,1.542760009709170670e-06,1.571329639518599882e-06,1.599899269328029094e-06,1.628468899137458306e-06,1.657038528946887518e-06,1.685608158756316730e-06,1.714177788565745942e-06,1.742747418375175154e-06,1.771317048184604366e-06,1.799886677994033578e-06 +0.000000000000000000e+00,2.792016164985104854e-08,5.584032329970209709e-08,8.376048494955314232e-08,1.116806465994041809e-07,1.396008082492552196e-07,1.675209698991062582e-07,1.954411315489572968e-07,2.233612931988083354e-07,2.512814548486593475e-07,2.792016164985103862e-07,3.071217781483614248e-07,3.350419397982124634e-07,3.629621014480635020e-07,3.908822630979145406e-07,4.188024247477655792e-07,4.467225863976166179e-07,4.746427480474676565e-07,5.025629096973186951e-07,5.304830713471697337e-07,5.584032329970207723e-07,5.863233946468718109e-07,6.142435562967228496e-07,6.421637179465738882e-07,6.700838795964249268e-07,6.980040412462759654e-07,7.259242028961270040e-07,7.538443645459780426e-07,7.817645261958290813e-07,8.096846878456801199e-07,8.376048494955311585e-07,8.655250111453821971e-07,8.934451727952332357e-07,9.213653344450842743e-07,9.492854960949353130e-07,9.772056577447863516e-07,1.005125819394637390e-06,1.033045981044488429e-06,1.060966142694339467e-06,1.088886304344190506e-06,1.116806465994041545e-06,1.144726627643892583e-06,1.172646789293743622e-06,1.200566950943594661e-06,1.228487112593445699e-06,1.256407274243296738e-06,1.284327435893147776e-06,1.312247597542998815e-06,1.340167759192849854e-06,1.368087920842700892e-06,1.396008082492551931e-06,1.423928244142402969e-06,1.451848405792254008e-06,1.479768567442105047e-06,1.507688729091956085e-06,1.535608890741807124e-06,1.563529052391658163e-06,1.591449214041509201e-06,1.619369375691360240e-06,1.647289537341211278e-06,1.675209698991062317e-06,1.703129860640913356e-06,1.731050022290764394e-06,1.758970183940615433e-06 +0.000000000000000000e+00,2.630648771859992938e-08,5.261297543719985877e-08,7.891946315579979146e-08,1.052259508743997308e-07,1.315324385929996833e-07,1.578389263115996359e-07,1.841454140301995884e-07,2.104519017487995410e-07,2.367583894673994935e-07,2.630648771859994725e-07,2.893713649045994515e-07,3.156778526231994305e-07,3.419843403417994096e-07,3.682908280603993886e-07,3.945973157789993676e-07,4.209038034975993466e-07,4.472102912161993256e-07,4.735167789347993046e-07,4.998232666533992836e-07,5.261297543719992627e-07,5.524362420905992417e-07,5.787427298091992207e-07,6.050492175277991997e-07,6.313557052463991787e-07,6.576621929649991577e-07,6.839686806835991368e-07,7.102751684021991158e-07,7.365816561207990948e-07,7.628881438393990738e-07,7.891946315579990528e-07,8.155011192765990318e-07,8.418076069951990108e-07,8.681140947137989899e-07,8.944205824323989689e-07,9.207270701509989479e-07,9.470335578695989269e-07,9.733400455881989059e-07,9.996465333067989908e-07,1.025953021025399076e-06,1.052259508743999161e-06,1.078565996462599245e-06,1.104872484181199330e-06,1.131178971899799415e-06,1.157485459618399500e-06,1.183791947336999585e-06,1.210098435055599670e-06,1.236404922774199755e-06,1.262711410492799840e-06,1.289017898211399925e-06,1.315324385930000010e-06,1.341630873648600094e-06,1.367937361367200179e-06,1.394243849085800264e-06,1.420550336804400349e-06,1.446856824523000434e-06,1.473163312241600519e-06,1.499469799960200604e-06,1.525776287678800689e-06,1.552082775397400774e-06,1.578389263116000858e-06,1.604695750834600943e-06,1.631002238553201028e-06,1.657308726271801113e-06 +0.000000000000000000e+00,2.856962980942427536e-08,5.713925961884855072e-08,8.570888942827282608e-08,1.142785192376971014e-07,1.428481490471213900e-07,1.714177788565456786e-07,1.999874086659699672e-07,2.285570384753942558e-07,2.571266682848185444e-07,2.856962980942428330e-07,3.142659279036671216e-07,3.428355577130914102e-07,3.714051875225156988e-07,3.999748173319399874e-07,4.285444471413642760e-07,4.571140769507885646e-07,4.856837067602128532e-07,5.142533365696370888e-07,5.428229663790613245e-07,5.713925961884855601e-07,5.999622259979097958e-07,6.285318558073340315e-07,6.571014856167582671e-07,6.856711154261825028e-07,7.142407452356067384e-07,7.428103750450309741e-07,7.713800048544552097e-07,7.999496346638794454e-07,8.285192644733036810e-07,8.570888942827279167e-07,8.856585240921521524e-07,9.142281539015763880e-07,9.427977837110006237e-07,9.713674135204248593e-07,9.999370433298492009e-07,1.028506673139273542e-06,1.057076302948697884e-06,1.085645932758122225e-06,1.114215562567546567e-06,1.142785192376970909e-06,1.171354822186395250e-06,1.199924451995819592e-06,1.228494081805243933e-06,1.257063711614668275e-06,1.285633341424092616e-06,1.314202971233516958e-06,1.342772601042941299e-06,1.371342230852365641e-06,1.399911860661789982e-06,1.428481490471214324e-06,1.457051120280638665e-06,1.485620750090063007e-06,1.514190379899487348e-06,1.542760009708911690e-06,1.571329639518336032e-06,1.599899269327760373e-06,1.628468899137184715e-06,1.657038528946609056e-06,1.685608158756033398e-06,1.714177788565457739e-06,1.742747418374882081e-06,1.771317048184306422e-06,1.799886677993730764e-06 +0.000000000000000000e+00,2.792016164984469580e-08,5.584032329968939159e-08,8.376048494953408408e-08,1.116806465993787699e-07,1.396008082492234558e-07,1.675209698990681417e-07,1.954411315489128276e-07,2.233612931987575134e-07,2.512814548486021728e-07,2.792016164984468587e-07,3.071217781482915446e-07,3.350419397981362304e-07,3.629621014479809163e-07,3.908822630978256022e-07,4.188024247476702880e-07,4.467225863975149739e-07,4.746427480473596598e-07,5.025629096972043456e-07,5.304830713470490315e-07,5.584032329968937174e-07,5.863233946467384033e-07,6.142435562965830891e-07,6.421637179464277750e-07,6.700838795962724609e-07,6.980040412461171467e-07,7.259242028959618326e-07,7.538443645458065185e-07,7.817645261956512043e-07,8.096846878454958902e-07,8.376048494953405761e-07,8.655250111451852620e-07,8.934451727950299478e-07,9.213653344448746337e-07,9.492854960947193196e-07,9.772056577445640054e-07,1.005125819394408691e-06,1.033045981044253377e-06,1.060966142694098063e-06,1.088886304343942749e-06,1.116806465993787435e-06,1.144726627643632121e-06,1.172646789293476807e-06,1.200566950943321492e-06,1.228487112593166178e-06,1.256407274243010864e-06,1.284327435892855550e-06,1.312247597542700236e-06,1.340167759192544922e-06,1.368087920842389608e-06,1.396008082492234293e-06,1.423928244142078979e-06,1.451848405791923665e-06,1.479768567441768351e-06,1.507688729091613037e-06,1.535608890741457723e-06,1.563529052391302409e-06,1.591449214041147095e-06,1.619369375690991780e-06,1.647289537340836466e-06,1.675209698990681152e-06,1.703129860640525838e-06,1.731050022290370524e-06,1.758970183940215210e-06 +0.000000000000000000e+00,2.400815863470079902e-08,4.801631726940159803e-08,7.202447590410240036e-08,9.603263453880320930e-08,1.200407931735040315e-07,1.440489518082048537e-07,1.680571104429056758e-07,1.920652690776064980e-07,2.160734277123073202e-07,2.400815863470081688e-07,2.640897449817090175e-07,2.880979036164098661e-07,3.121060622511107148e-07,3.361142208858115634e-07,3.601223795205124121e-07,3.841305381552132607e-07,4.081386967899141094e-07,4.321468554246149580e-07,4.561550140593158067e-07,4.801631726940166553e-07,5.041713313287174510e-07,5.281794899634182467e-07,5.521876485981190425e-07,5.761958072328198382e-07,6.002039658675206339e-07,6.242121245022214296e-07,6.482202831369222253e-07,6.722284417716230210e-07,6.962366004063238167e-07,7.202447590410246124e-07,7.442529176757254081e-07,7.682610763104262038e-07,7.922692349451269995e-07,8.162773935798277953e-07,8.402855522145285910e-07,8.642937108492293867e-07,8.883018694839301824e-07,9.123100281186309781e-07,9.363181867533317738e-07,9.603263453880326754e-07,9.843345040227335770e-07,1.008342662657434479e-06,1.032350821292135380e-06,1.056358979926836282e-06,1.080367138561537183e-06,1.104375297196238085e-06,1.128383455830938986e-06,1.152391614465639888e-06,1.176399773100340790e-06,1.200407931735041691e-06,1.224416090369742593e-06,1.248424249004443494e-06,1.272432407639144396e-06,1.296440566273845298e-06,1.320448724908546199e-06,1.344456883543247101e-06,1.368465042177948002e-06,1.392473200812648904e-06,1.416481359447349806e-06,1.440489518082050707e-06,1.464497676716751609e-06,1.488505835351452510e-06,1.512513993986153412e-06 +0.000000000000000000e+00,2.400815863469518412e-08,4.801631726939036823e-08,7.202447590408555235e-08,9.603263453878073646e-08,1.200407931734759206e-07,1.440489518081711047e-07,1.680571104428662888e-07,1.920652690775614729e-07,2.160734277122566570e-07,2.400815863469518412e-07,2.640897449816470253e-07,2.880979036163422094e-07,3.121060622510373935e-07,3.361142208857325776e-07,3.601223795204277617e-07,3.841305381551229458e-07,4.081386967898181300e-07,4.321468554245133141e-07,4.561550140592084982e-07,4.801631726939036823e-07,5.041713313285988664e-07,5.281794899632940505e-07,5.521876485979892347e-07,5.761958072326844188e-07,6.002039658673796029e-07,6.242121245020747870e-07,6.482202831367699711e-07,6.722284417714651552e-07,6.962366004061603393e-07,7.202447590408555235e-07,7.442529176755507076e-07,7.682610763102458917e-07,7.922692349449410758e-07,8.162773935796362599e-07,8.402855522143314440e-07,8.642937108490266282e-07,8.883018694837218123e-07,9.123100281184169964e-07,9.363181867531121805e-07,9.603263453878073646e-07,9.843345040225025487e-07,1.008342662657197733e-06,1.032350821291892917e-06,1.056358979926588101e-06,1.080367138561283285e-06,1.104375297195978469e-06,1.128383455830673653e-06,1.152391614465368838e-06,1.176399773100064022e-06,1.200407931734759206e-06,1.224416090369454390e-06,1.248424249004149574e-06,1.272432407638844758e-06,1.296440566273539942e-06,1.320448724908235126e-06,1.344456883542930310e-06,1.368465042177625495e-06,1.392473200812320679e-06,1.416481359447015863e-06,1.440489518081711047e-06,1.464497676716406231e-06,1.488505835351101415e-06,1.512513993985796599e-06 +0.000000000000000000e+00,4.187371926846397056e-08,8.374743853692794112e-08,1.256211578053919051e-07,1.674948770738558558e-07,2.093685963423198065e-07,2.512423156107837572e-07,2.931160348792477079e-07,3.349897541477116586e-07,3.768634734161756093e-07,4.187371926846395600e-07,4.606109119531035108e-07,5.024846312215674085e-07,5.443583504900313592e-07,5.862320697584953099e-07,6.281057890269592607e-07,6.699795082954232114e-07,7.118532275638871621e-07,7.537269468323511128e-07,7.956006661008150635e-07,8.374743853692790142e-07,8.793481046377429649e-07,9.212218239062069156e-07,9.630955431746708663e-07,1.004969262443134817e-06,1.046842981711598768e-06,1.088716700980062718e-06,1.130590420248526669e-06,1.172464139516990620e-06,1.214337858785454571e-06,1.256211578053918521e-06,1.298085297322382472e-06,1.339959016590846423e-06,1.381832735859310373e-06,1.423706455127774324e-06,1.465580174396238275e-06,1.507453893664702226e-06,1.549327612933166176e-06,1.591201332201630127e-06,1.633075051470094078e-06,1.674948770738558028e-06,1.716822490007021979e-06,1.758696209275485930e-06,1.800569928543949881e-06,1.842443647812413831e-06,1.884317367080877782e-06,1.926191086349341733e-06,1.968064805617805472e-06,2.009938524886269211e-06,2.051812244154732950e-06,2.093685963423196688e-06,2.135559682691660427e-06,2.177433401960124166e-06,2.219307121228587905e-06,2.261180840497051644e-06,2.303054559765515383e-06,2.344928279033979122e-06,2.386801998302442861e-06,2.428675717570906600e-06,2.470549436839370339e-06,2.512423156107834078e-06,2.554296875376297817e-06,2.596170594644761556e-06,2.638044313913225295e-06 +0.000000000000000000e+00,4.016215593554366072e-08,8.032431187108732143e-08,1.204864678066309954e-07,1.606486237421746693e-07,2.008107796777183433e-07,2.409729356132619908e-07,2.811350915488056383e-07,3.212972474843492857e-07,3.614594034198929332e-07,4.016215593554365807e-07,4.417837152909802282e-07,4.819458712265238757e-07,5.221080271620675232e-07,5.622701830976111706e-07,6.024323390331548181e-07,6.425944949686984656e-07,6.827566509042421131e-07,7.229188068397857606e-07,7.630809627753294080e-07,8.032431187108730555e-07,8.434052746464167030e-07,8.835674305819603505e-07,9.237295865175039980e-07,9.638917424530475396e-07,1.004053898388591081e-06,1.044216054324134623e-06,1.084378210259678164e-06,1.124540366195221706e-06,1.164702522130765248e-06,1.204864678066308789e-06,1.245026834001852331e-06,1.285188989937395872e-06,1.325351145872939414e-06,1.365513301808482956e-06,1.405675457744026497e-06,1.445837613679570039e-06,1.485999769615113580e-06,1.526161925550657122e-06,1.566324081486200664e-06,1.606486237421744205e-06,1.646648393357287747e-06,1.686810549292831288e-06,1.726972705228374830e-06,1.767134861163918372e-06,1.807297017099461913e-06,1.847459173035005455e-06,1.887621328970548996e-06,1.927783484906092538e-06,1.967945640841636291e-06,2.008107796777180045e-06,2.048269952712723798e-06,2.088432108648267552e-06,2.128594264583811305e-06,2.168756420519355058e-06,2.208918576454898812e-06,2.249080732390442565e-06,2.289242888325986318e-06,2.329405044261530072e-06,2.369567200197073825e-06,2.409729356132617578e-06,2.449891512068161332e-06,2.490053668003705085e-06,2.530215823939248838e-06 +0.000000000000000000e+00,4.025134581922471170e-08,8.050269163844942340e-08,1.207540374576741351e-07,1.610053832768988468e-07,2.012567290961235585e-07,2.415080749153482702e-07,2.817594207345729819e-07,3.220107665537976936e-07,3.622621123730224053e-07,4.025134581922471170e-07,4.427648040114718287e-07,4.830161498306965404e-07,5.232674956499212521e-07,5.635188414691459638e-07,6.037701872883706755e-07,6.440215331075953872e-07,6.842728789268200989e-07,7.245242247460448106e-07,7.647755705652695223e-07,8.050269163844942340e-07,8.452782622037189457e-07,8.855296080229436574e-07,9.257809538421683691e-07,9.660322996613930808e-07,1.006283645480617793e-06,1.046534991299842504e-06,1.086786337119067216e-06,1.127037682938291928e-06,1.167289028757516639e-06,1.207540374576741351e-06,1.247791720395966063e-06,1.288043066215190774e-06,1.328294412034415486e-06,1.368545757853640198e-06,1.408797103672864910e-06,1.449048449492089621e-06,1.489299795311314333e-06,1.529551141130539045e-06,1.569802486949763756e-06,1.610053832768988468e-06,1.650305178588213180e-06,1.690556524407437891e-06,1.730807870226662603e-06,1.771059216045887315e-06,1.811310561865112027e-06,1.851561907684336738e-06,1.891813253503561450e-06,1.932064599322786162e-06,1.972315945142010873e-06,2.012567290961235585e-06,2.052818636780460297e-06,2.093069982599685008e-06,2.133321328418909720e-06,2.173572674238134432e-06,2.213824020057359144e-06,2.254075365876583855e-06,2.294326711695808567e-06,2.334578057515033279e-06,2.374829403334257990e-06,2.415080749153482702e-06,2.455332094972707414e-06,2.495583440791932125e-06,2.535834786611156837e-06 +0.000000000000000000e+00,4.136228662312528864e-08,8.272457324625057728e-08,1.240868598693758593e-07,1.654491464925011281e-07,2.068114331156263969e-07,2.481737197387516657e-07,2.895360063618769345e-07,3.308982929850022032e-07,3.722605796081274720e-07,4.136228662312527408e-07,4.549851528543780096e-07,4.963474394775032255e-07,5.377097261006284413e-07,5.790720127237536571e-07,6.204342993468788730e-07,6.617965859700040888e-07,7.031588725931293047e-07,7.445211592162545205e-07,7.858834458393797364e-07,8.272457324625049522e-07,8.686080190856301681e-07,9.099703057087553839e-07,9.513325923318805998e-07,9.926948789550058156e-07,1.034057165578131031e-06,1.075419452201256247e-06,1.116781738824381463e-06,1.158144025447506679e-06,1.199506312070631895e-06,1.240868598693757111e-06,1.282230885316882327e-06,1.323593171940007542e-06,1.364955458563132758e-06,1.406317745186257974e-06,1.447680031809383190e-06,1.489042318432508406e-06,1.530404605055633622e-06,1.571766891678758838e-06,1.613129178301884053e-06,1.654491464925009269e-06,1.695853751548134485e-06,1.737216038171259701e-06,1.778578324794384917e-06,1.819940611417510133e-06,1.861302898040635348e-06,1.902665184663760564e-06,1.944027471286885568e-06,1.985389757910010361e-06,2.026752044533135153e-06,2.068114331156259945e-06,2.109476617779384738e-06,2.150838904402509530e-06,2.192201191025634322e-06,2.233563477648759115e-06,2.274925764271883907e-06,2.316288050895008699e-06,2.357650337518133492e-06,2.399012624141258284e-06,2.440374910764383076e-06,2.481737197387507869e-06,2.523099484010632661e-06,2.564461770633757453e-06,2.605824057256882246e-06 +0.000000000000000000e+00,4.197159301453054534e-08,8.394318602906109068e-08,1.259147790435916426e-07,1.678863720581222078e-07,2.098579650726527730e-07,2.518295580871833382e-07,2.938011511017139299e-07,3.357727441162445215e-07,3.777443371307751132e-07,4.197159301453057049e-07,4.616875231598362965e-07,5.036591161743668882e-07,5.456307091888974798e-07,5.876023022034280715e-07,6.295738952179586632e-07,6.715454882324892548e-07,7.135170812470198465e-07,7.554886742615504381e-07,7.974602672760810298e-07,8.394318602906116215e-07,8.814034533051422131e-07,9.233750463196728048e-07,9.653466393342033964e-07,1.007318232348733988e-06,1.049289825363264580e-06,1.091261418377795171e-06,1.133233011392325763e-06,1.175204604406856355e-06,1.217176197421386946e-06,1.259147790435917538e-06,1.301119383450448130e-06,1.343090976464978721e-06,1.385062569479509313e-06,1.427034162494039905e-06,1.469005755508570496e-06,1.510977348523101088e-06,1.552948941537631680e-06,1.594920534552162271e-06,1.636892127566692863e-06,1.678863720581223455e-06,1.720835313595754046e-06,1.762806906610284638e-06,1.804778499624815230e-06,1.846750092639345821e-06,1.888721685653876413e-06,1.930693278668406793e-06,1.972664871682937173e-06,2.014636464697467553e-06,2.056608057711997933e-06,2.098579650726528313e-06,2.140551243741058692e-06,2.182522836755589072e-06,2.224494429770119452e-06,2.266466022784649832e-06,2.308437615799180212e-06,2.350409208813710592e-06,2.392380801828240972e-06,2.434352394842771352e-06,2.476323987857301732e-06,2.518295580871832112e-06,2.560267173886362491e-06,2.602238766900892871e-06,2.644210359915423251e-06 +0.000000000000000000e+00,4.461367813833734312e-08,8.922735627667468623e-08,1.338410344150120293e-07,1.784547125533493725e-07,2.230683906916867156e-07,2.676820688300240587e-07,3.122957469683614018e-07,3.569094251066987449e-07,4.015231032450360880e-07,4.461367813833734312e-07,4.907504595217107743e-07,5.353641376600481174e-07,5.799778157983854605e-07,6.245914939367228036e-07,6.692051720750601467e-07,7.138188502133974899e-07,7.584325283517348330e-07,8.030462064900721761e-07,8.476598846284095192e-07,8.922735627667468623e-07,9.368872409050842054e-07,9.815009190434215486e-07,1.026114597181758998e-06,1.070728275320096447e-06,1.115341953458433896e-06,1.159955631596771345e-06,1.204569309735108794e-06,1.249182987873446243e-06,1.293796666011783692e-06,1.338410344150121141e-06,1.383024022288458590e-06,1.427637700426796039e-06,1.472251378565133488e-06,1.516865056703470937e-06,1.561478734841808386e-06,1.606092412980145834e-06,1.650706091118483283e-06,1.695319769256820732e-06,1.739933447395158181e-06,1.784547125533495630e-06,1.829160803671833079e-06,1.873774481810170528e-06,1.918388159948507977e-06,1.963001838086845215e-06,2.007615516225182452e-06,2.052229194363519689e-06,2.096842872501856926e-06,2.141456550640194164e-06,2.186070228778531401e-06,2.230683906916868638e-06,2.275297585055205875e-06,2.319911263193543113e-06,2.364524941331880350e-06,2.409138619470217587e-06,2.453752297608554824e-06,2.498365975746892062e-06,2.542979653885229299e-06,2.587593332023566536e-06,2.632207010161903773e-06,2.676820688300241010e-06,2.721434366438578248e-06,2.766048044576915485e-06,2.810661722715252722e-06 +0.000000000000000000e+00,4.022971347046181368e-08,8.045942694092362736e-08,1.206891404113854344e-07,1.609188538818472282e-07,2.011485673523090221e-07,2.413782808227708159e-07,2.816079942932326097e-07,3.218377077636944036e-07,3.620674212341561974e-07,4.022971347046179912e-07,4.425268481750797850e-07,4.827565616455415259e-07,5.229862751160032668e-07,5.632159885864650077e-07,6.034457020569267486e-07,6.436754155273884895e-07,6.839051289978502304e-07,7.241348424683119713e-07,7.643645559387737121e-07,8.045942694092354530e-07,8.448239828796971939e-07,8.850536963501589348e-07,9.252834098206206757e-07,9.655131232910824166e-07,1.005742836761544157e-06,1.045972550232005898e-06,1.086202263702467639e-06,1.126431977172929380e-06,1.166661690643391121e-06,1.206891404113852862e-06,1.247121117584314603e-06,1.287350831054776344e-06,1.327580544525238085e-06,1.367810257995699825e-06,1.408039971466161566e-06,1.448269684936623307e-06,1.488499398407085048e-06,1.528729111877546789e-06,1.568958825348008530e-06,1.609188538818470271e-06,1.649418252288932012e-06,1.689647965759393753e-06,1.729877679229855493e-06,1.770107392700317234e-06,1.810337106170778975e-06,1.850566819641240716e-06,1.890796533111702457e-06,1.931026246582164410e-06,1.971255960052626574e-06,2.011485673523088738e-06,2.051715386993550903e-06,2.091945100464013067e-06,2.132174813934475232e-06,2.172404527404937396e-06,2.212634240875399560e-06,2.252863954345861725e-06,2.293093667816323889e-06,2.333323381286786054e-06,2.373553094757248218e-06,2.413782808227710383e-06,2.454012521698172547e-06,2.494242235168634711e-06,2.534471948639096876e-06 +0.000000000000000000e+00,4.199270077337741844e-08,8.398540154675483687e-08,1.259781023201322553e-07,1.679708030935096737e-07,2.099635038668870922e-07,2.519562046402645106e-07,2.939489054136419291e-07,3.359416061870193475e-07,3.779343069603967659e-07,4.199270077337741844e-07,4.619197085071516028e-07,5.039124092805290212e-07,5.459051100539064926e-07,5.878978108272839640e-07,6.298905116006614354e-07,6.718832123740389067e-07,7.138759131474163781e-07,7.558686139207938495e-07,7.978613146941713209e-07,8.398540154675487923e-07,8.818467162409262636e-07,9.238394170143037350e-07,9.658321177876812064e-07,1.007824818561058678e-06,1.049817519334436149e-06,1.091810220107813621e-06,1.133802920881191092e-06,1.175795621654568563e-06,1.217788322427946035e-06,1.259781023201323506e-06,1.301773723974700977e-06,1.343766424748078449e-06,1.385759125521455920e-06,1.427751826294833392e-06,1.469744527068210863e-06,1.511737227841588334e-06,1.553729928614965806e-06,1.595722629388343277e-06,1.637715330161720748e-06,1.679708030935098220e-06,1.721700731708475691e-06,1.763693432481853163e-06,1.805686133255230634e-06,1.847678834028608105e-06,1.889671534801985577e-06,1.931664235575362836e-06,1.973656936348740308e-06,2.015649637122117779e-06,2.057642337895495250e-06,2.099635038668872722e-06,2.141627739442250193e-06,2.183620440215627665e-06,2.225613140989005136e-06,2.267605841762382607e-06,2.309598542535760079e-06,2.351591243309137550e-06,2.393583944082515021e-06,2.435576644855892493e-06,2.477569345629269964e-06,2.519562046402647436e-06,2.561554747176024907e-06,2.603547447949402378e-06,2.645540148722779850e-06 +0.000000000000000000e+00,4.187371926846612123e-08,8.374743853693224246e-08,1.256211578053983637e-07,1.674948770738644849e-07,2.093685963423306062e-07,2.512423156107967274e-07,2.931160348792628486e-07,3.349897541477289699e-07,3.768634734161950911e-07,4.187371926846612123e-07,4.606109119531273336e-07,5.024846312215934548e-07,5.443583504900595231e-07,5.862320697585255914e-07,6.281057890269916597e-07,6.699795082954577280e-07,7.118532275639237962e-07,7.537269468323898645e-07,7.956006661008559328e-07,8.374743853693220011e-07,8.793481046377880694e-07,9.212218239062541377e-07,9.630955431747202060e-07,1.004969262443186274e-06,1.046842981711652343e-06,1.088716700980118411e-06,1.130590420248584479e-06,1.172464139517050547e-06,1.214337858785516616e-06,1.256211578053982684e-06,1.298085297322448752e-06,1.339959016590914821e-06,1.381832735859380889e-06,1.423706455127846957e-06,1.465580174396313026e-06,1.507453893664779094e-06,1.549327612933245162e-06,1.591201332201711230e-06,1.633075051470177299e-06,1.674948770738643367e-06,1.716822490007109435e-06,1.758696209275575504e-06,1.800569928544041572e-06,1.842443647812507640e-06,1.884317367080973708e-06,1.926191086349439565e-06,1.968064805617905422e-06,2.009938524886371278e-06,2.051812244154837135e-06,2.093685963423302991e-06,2.135559682691768848e-06,2.177433401960234704e-06,2.219307121228700561e-06,2.261180840497166417e-06,2.303054559765632274e-06,2.344928279034098130e-06,2.386801998302563987e-06,2.428675717571029843e-06,2.470549436839495700e-06,2.512423156107961556e-06,2.554296875376427413e-06,2.596170594644893270e-06,2.638044313913359126e-06 +0.000000000000000000e+00,4.016215593554704223e-08,8.032431187109408446e-08,1.204864678066411333e-07,1.606486237421881954e-07,2.008107796777352575e-07,2.409729356132823196e-07,2.811350915488293552e-07,3.212972474843763908e-07,3.614594034199234264e-07,4.016215593554704620e-07,4.417837152910174976e-07,4.819458712265645332e-07,5.221080271621115689e-07,5.622701830976586045e-07,6.024323390332056401e-07,6.425944949687526757e-07,6.827566509042997113e-07,7.229188068398467469e-07,7.630809627753937825e-07,8.032431187109408182e-07,8.434052746464878538e-07,8.835674305820348894e-07,9.237295865175819250e-07,9.638917424531288547e-07,1.004053898388675784e-06,1.044216054324222714e-06,1.084378210259769644e-06,1.124540366195316574e-06,1.164702522130863503e-06,1.204864678066410433e-06,1.245026834001957363e-06,1.285188989937504293e-06,1.325351145873051222e-06,1.365513301808598152e-06,1.405675457744145082e-06,1.445837613679692012e-06,1.485999769615238941e-06,1.526161925550785871e-06,1.566324081486332801e-06,1.606486237421879731e-06,1.646648393357426660e-06,1.686810549292973590e-06,1.726972705228520520e-06,1.767134861164067449e-06,1.807297017099614379e-06,1.847459173035161309e-06,1.887621328970708239e-06,1.927783484906255168e-06,1.967945640841802310e-06,2.008107796777349451e-06,2.048269952712896593e-06,2.088432108648443734e-06,2.128594264583990876e-06,2.168756420519538017e-06,2.208918576455085159e-06,2.249080732390632300e-06,2.289242888326179442e-06,2.329405044261726583e-06,2.369567200197273725e-06,2.409729356132820866e-06,2.449891512068368008e-06,2.490053668003915149e-06,2.530215823939462291e-06 +0.000000000000000000e+00,4.022971347046343495e-08,8.045942694092686991e-08,1.206891404113903049e-07,1.609188538818537398e-07,2.011485673523171748e-07,2.413782808227806097e-07,2.816079942932440447e-07,3.218377077637074796e-07,3.620674212341709146e-07,4.022971347046343495e-07,4.425268481750977845e-07,4.827565616455612194e-07,5.229862751160246544e-07,5.632159885864880894e-07,6.034457020569515243e-07,6.436754155274149593e-07,6.839051289978783942e-07,7.241348424683418292e-07,7.643645559388052641e-07,8.045942694092686991e-07,8.448239828797321340e-07,8.850536963501955690e-07,9.252834098206590039e-07,9.655131232911224389e-07,1.005742836761585874e-06,1.045972550232049309e-06,1.086202263702512744e-06,1.126431977172976179e-06,1.166661690643439614e-06,1.206891404113903049e-06,1.247121117584366484e-06,1.287350831054829919e-06,1.327580544525293353e-06,1.367810257995756788e-06,1.408039971466220223e-06,1.448269684936683658e-06,1.488499398407147093e-06,1.528729111877610528e-06,1.568958825348073963e-06,1.609188538818537398e-06,1.649418252289000833e-06,1.689647965759464268e-06,1.729877679229927703e-06,1.770107392700391138e-06,1.810337106170854573e-06,1.850566819641318008e-06,1.890796533111781443e-06,1.931026246582244878e-06,1.971255960052708313e-06,2.011485673523171748e-06,2.051715386993635183e-06,2.091945100464098618e-06,2.132174813934562053e-06,2.172404527405025488e-06,2.212634240875488922e-06,2.252863954345952357e-06,2.293093667816415792e-06,2.333323381286879227e-06,2.373553094757342662e-06,2.413782808227806097e-06,2.454012521698269532e-06,2.494242235168732967e-06,2.534471948639196402e-06 +0.000000000000000000e+00,4.136228662312814076e-08,8.272457324625628152e-08,1.240868598693844355e-07,1.654491464925125895e-07,2.068114331156407435e-07,2.481737197387688710e-07,2.895360063618969985e-07,3.308982929850251261e-07,3.722605796081532536e-07,4.136228662312813811e-07,4.549851528544095086e-07,4.963474394775376362e-07,5.377097261006657108e-07,5.790720127237937853e-07,6.204342993469218599e-07,6.617965859700499345e-07,7.031588725931780091e-07,7.445211592163060837e-07,7.858834458394341583e-07,8.272457324625622328e-07,8.686080190856903074e-07,9.099703057088183820e-07,9.513325923319464566e-07,9.926948789550746371e-07,1.034057165578202818e-06,1.075419452201330998e-06,1.116781738824459178e-06,1.158144025447587359e-06,1.199506312070715539e-06,1.240868598693843720e-06,1.282230885316971900e-06,1.323593171940100081e-06,1.364955458563228261e-06,1.406317745186356442e-06,1.447680031809484622e-06,1.489042318432612803e-06,1.530404605055740983e-06,1.571766891678869164e-06,1.613129178301997344e-06,1.654491464925125524e-06,1.695853751548253705e-06,1.737216038171381885e-06,1.778578324794510066e-06,1.819940611417638246e-06,1.861302898040766427e-06,1.902665184663894607e-06,1.944027471287022788e-06,1.985389757910150968e-06,2.026752044533279149e-06,2.068114331156407329e-06,2.109476617779535510e-06,2.150838904402663690e-06,2.192201191025791871e-06,2.233563477648920051e-06,2.274925764272048231e-06,2.316288050895176412e-06,2.357650337518304592e-06,2.399012624141432773e-06,2.440374910764560953e-06,2.481737197387689134e-06,2.523099484010817314e-06,2.564461770633945495e-06,2.605824057257073675e-06 +0.000000000000000000e+00,4.197159301453387391e-08,8.394318602906774783e-08,1.259147790436016217e-07,1.678863720581354957e-07,2.098579650726693696e-07,2.518295580872032435e-07,2.938011511017371174e-07,3.357727441162709913e-07,3.777443371308048652e-07,4.197159301453387391e-07,4.616875231598726131e-07,5.036591161744064870e-07,5.456307091889403609e-07,5.876023022034742348e-07,6.295738952180081087e-07,6.715454882325419826e-07,7.135170812470758565e-07,7.554886742616097304e-07,7.974602672761436044e-07,8.394318602906774783e-07,8.814034533052113522e-07,9.233750463197452261e-07,9.653466393342792059e-07,1.007318232348813186e-06,1.049289825363347165e-06,1.091261418377881145e-06,1.133233011392415125e-06,1.175204604406949105e-06,1.217176197421483085e-06,1.259147790436017064e-06,1.301119383450551044e-06,1.343090976465085024e-06,1.385062569479619004e-06,1.427034162494152984e-06,1.469005755508686963e-06,1.510977348523220943e-06,1.552948941537754923e-06,1.594920534552288903e-06,1.636892127566822883e-06,1.678863720581356862e-06,1.720835313595890842e-06,1.762806906610424822e-06,1.804778499624958802e-06,1.846750092639492782e-06,1.888721685654026761e-06,1.930693278668560953e-06,1.972664871683095144e-06,2.014636464697629336e-06,2.056608057712163528e-06,2.098579650726697719e-06,2.140551243741231911e-06,2.182522836755766102e-06,2.224494429770300294e-06,2.266466022784834485e-06,2.308437615799368677e-06,2.350409208813902868e-06,2.392380801828437060e-06,2.434352394842971252e-06,2.476323987857505443e-06,2.518295580872039635e-06,2.560267173886573826e-06,2.602238766901108018e-06,2.644210359915642209e-06 +0.000000000000000000e+00,4.461367813833914306e-08,8.922735627667828612e-08,1.338410344150174292e-07,1.784547125533565722e-07,2.230683906916957153e-07,2.676820688300348584e-07,3.122957469683740014e-07,3.569094251067131445e-07,4.015231032450522876e-07,4.461367813833914306e-07,4.907504595217305737e-07,5.353641376600697167e-07,5.799778157984088598e-07,6.245914939367480029e-07,6.692051720750871459e-07,7.138188502134262890e-07,7.584325283517654320e-07,8.030462064901045751e-07,8.476598846284437182e-07,8.922735627667828612e-07,9.368872409051220043e-07,9.815009190434611474e-07,1.026114597181800290e-06,1.070728275320139433e-06,1.115341953458478577e-06,1.159955631596817720e-06,1.204569309735156863e-06,1.249182987873496006e-06,1.293796666011835149e-06,1.338410344150174292e-06,1.383024022288513435e-06,1.427637700426852578e-06,1.472251378565191721e-06,1.516865056703530864e-06,1.561478734841870007e-06,1.606092412980209150e-06,1.650706091118548293e-06,1.695319769256887436e-06,1.739933447395226579e-06,1.784547125533565722e-06,1.829160803671904866e-06,1.873774481810244009e-06,1.918388159948582940e-06,1.963001838086921871e-06,2.007615516225260802e-06,2.052229194363599734e-06,2.096842872501938665e-06,2.141456550640277596e-06,2.186070228778616528e-06,2.230683906916955459e-06,2.275297585055294390e-06,2.319911263193633322e-06,2.364524941331972253e-06,2.409138619470311184e-06,2.453752297608650116e-06,2.498365975746989047e-06,2.542979653885327978e-06,2.587593332023666909e-06,2.632207010162005841e-06,2.676820688300344772e-06,2.721434366438683703e-06,2.766048044577022635e-06,2.810661722715361566e-06 +0.000000000000000000e+00,4.090952501185577906e-08,8.181905002371155811e-08,1.227285750355673438e-07,1.636381000474231427e-07,2.045476250592789416e-07,2.454571500711347405e-07,2.863666750829905394e-07,3.272762000948463383e-07,3.681857251067021372e-07,4.090952501185579361e-07,4.500047751304137350e-07,4.909143001422695869e-07,5.318238251541254387e-07,5.727333501659812906e-07,6.136428751778371424e-07,6.545524001896929943e-07,6.954619252015488461e-07,7.363714502134046980e-07,7.772809752252605498e-07,8.181905002371164017e-07,8.591000252489722535e-07,9.000095502608281054e-07,9.409190752726839572e-07,9.818286002845398091e-07,1.022738125296395555e-06,1.063647650308251301e-06,1.104557175320107047e-06,1.145466700331962793e-06,1.186376225343818539e-06,1.227285750355674285e-06,1.268195275367530031e-06,1.309104800379385777e-06,1.350014325391241523e-06,1.390923850403097269e-06,1.431833375414953015e-06,1.472742900426808761e-06,1.513652425438664507e-06,1.554561950450520253e-06,1.595471475462375999e-06,1.636381000474231745e-06,1.677290525486087491e-06,1.718200050497943236e-06,1.759109575509798982e-06,1.800019100521654728e-06,1.840928625533510474e-06,1.881838150545366220e-06,1.922747675557221966e-06,1.963657200569077501e-06,2.004566725580933035e-06,2.045476250592788569e-06,2.086385775604644103e-06,2.127295300616499637e-06,2.168204825628355172e-06,2.209114350640210706e-06,2.250023875652066240e-06,2.290933400663921774e-06,2.331842925675777308e-06,2.372752450687632843e-06,2.413661975699488377e-06,2.454571500711343911e-06,2.495481025723199445e-06,2.536390550735054979e-06,2.577300075746910514e-06 +0.000000000000000000e+00,4.164055804061104776e-08,8.328111608122209553e-08,1.249216741218331367e-07,1.665622321624441646e-07,2.082027902030551925e-07,2.498433482436662204e-07,2.914839062842772218e-07,3.331244643248882233e-07,3.747650223654992247e-07,4.164055804061102262e-07,4.580461384467212276e-07,4.996866964873322290e-07,5.413272545279432305e-07,5.829678125685542319e-07,6.246083706091652334e-07,6.662489286497762348e-07,7.078894866903872363e-07,7.495300447309982377e-07,7.911706027716092391e-07,8.328111608122202406e-07,8.744517188528312420e-07,9.160922768934422435e-07,9.577328349340533508e-07,9.993733929746644581e-07,1.041013951015275565e-06,1.082654509055886673e-06,1.124295067096497780e-06,1.165935625137108887e-06,1.207576183177719995e-06,1.249216741218331102e-06,1.290857299258942209e-06,1.332497857299553317e-06,1.374138415340164424e-06,1.415778973380775531e-06,1.457419531421386639e-06,1.499060089461997746e-06,1.540700647502608853e-06,1.582341205543219961e-06,1.623981763583831068e-06,1.665622321624442175e-06,1.707262879665053283e-06,1.748903437705664390e-06,1.790543995746275497e-06,1.832184553786886604e-06,1.873825111827497712e-06,1.915465669868108819e-06,1.957106227908719926e-06,1.998746785949331034e-06,2.040387343989942141e-06,2.082027902030553248e-06,2.123668460071164356e-06,2.165309018111775463e-06,2.206949576152386570e-06,2.248590134192997678e-06,2.290230692233608785e-06,2.331871250274219892e-06,2.373511808314831000e-06,2.415152366355442107e-06,2.456792924396053214e-06,2.498433482436664322e-06,2.540074040477275429e-06,2.581714598517886536e-06,2.623355156558497644e-06 +0.000000000000000000e+00,4.353161200287852669e-08,8.706322400575705339e-08,1.305948360086355801e-07,1.741264480115141068e-07,2.176580600143926335e-07,2.611896720172711602e-07,3.047212840201496869e-07,3.482528960230282136e-07,3.917845080259067402e-07,4.353161200287852669e-07,4.788477320316637936e-07,5.223793440345423203e-07,5.659109560374208470e-07,6.094425680402993737e-07,6.529741800431779004e-07,6.965057920460564271e-07,7.400374040489349538e-07,7.835690160518134805e-07,8.271006280546920072e-07,8.706322400575705339e-07,9.141638520604490606e-07,9.576954640633275873e-07,1.001227076066206008e-06,1.044758688069084429e-06,1.088290300071962850e-06,1.131821912074841271e-06,1.175353524077719691e-06,1.218885136080598112e-06,1.262416748083476533e-06,1.305948360086354954e-06,1.349479972089233375e-06,1.393011584092111795e-06,1.436543196094990216e-06,1.480074808097868637e-06,1.523606420100747058e-06,1.567138032103625479e-06,1.610669644106503899e-06,1.654201256109382320e-06,1.697732868112260741e-06,1.741264480115139162e-06,1.784796092118017583e-06,1.828327704120896004e-06,1.871859316123774424e-06,1.915390928126653057e-06,1.958922540129531690e-06,2.002454152132410322e-06,2.045985764135288955e-06,2.089517376138167587e-06,2.133048988141046220e-06,2.176580600143924852e-06,2.220112212146803485e-06,2.263643824149682118e-06,2.307175436152560750e-06,2.350707048155439383e-06,2.394238660158318015e-06,2.437770272161196648e-06,2.481301884164075280e-06,2.524833496166953913e-06,2.568365108169832546e-06,2.611896720172711178e-06,2.655428332175589811e-06,2.698959944178468443e-06,2.742491556181347076e-06 +0.000000000000000000e+00,4.090952501185661285e-08,8.181905002371322571e-08,1.227285750355698319e-07,1.636381000474264249e-07,2.045476250592830179e-07,2.454571500711396109e-07,2.863666750829962039e-07,3.272762000948527969e-07,3.681857251067093899e-07,4.090952501185659830e-07,4.500047751304225760e-07,4.909143001422791160e-07,5.318238251541357090e-07,5.727333501659923020e-07,6.136428751778488950e-07,6.545524001897054880e-07,6.954619252015620810e-07,7.363714502134186740e-07,7.772809752252752670e-07,8.181905002371318600e-07,8.591000252489884530e-07,9.000095502608450460e-07,9.409190752727016390e-07,9.818286002845582320e-07,1.022738125296414825e-06,1.063647650308271418e-06,1.104557175320128011e-06,1.145466700331984604e-06,1.186376225343841197e-06,1.227285750355697790e-06,1.268195275367554383e-06,1.309104800379410976e-06,1.350014325391267569e-06,1.390923850403124162e-06,1.431833375414980755e-06,1.472742900426837348e-06,1.513652425438693941e-06,1.554561950450550534e-06,1.595471475462407127e-06,1.636381000474263720e-06,1.677290525486120313e-06,1.718200050497976906e-06,1.759109575509833499e-06,1.800019100521690092e-06,1.840928625533546685e-06,1.881838150545403278e-06,1.922747675557260083e-06,1.963657200569116888e-06,2.004566725580973692e-06,2.045476250592830497e-06,2.086385775604687302e-06,2.127295300616544107e-06,2.168204825628400911e-06,2.209114350640257716e-06,2.250023875652114521e-06,2.290933400663971326e-06,2.331842925675828130e-06,2.372752450687684935e-06,2.413661975699541740e-06,2.454571500711398545e-06,2.495481025723255349e-06,2.536390550735112154e-06,2.577300075746968959e-06 +0.000000000000000000e+00,4.164055804061246390e-08,8.328111608122492779e-08,1.249216741218373983e-07,1.665622321624498821e-07,2.082027902030623658e-07,2.498433482436748496e-07,2.914839062842873333e-07,3.331244643248998170e-07,3.747650223655123008e-07,4.164055804061247845e-07,4.580461384467372683e-07,4.996866964873498050e-07,5.413272545279623946e-07,5.829678125685749842e-07,6.246083706091875739e-07,6.662489286498001635e-07,7.078894866904127531e-07,7.495300447310253427e-07,7.911706027716379324e-07,8.328111608122505220e-07,8.744517188528631116e-07,9.160922768934757013e-07,9.577328349340882909e-07,9.993733929747008805e-07,1.041013951015313470e-06,1.082654509055926060e-06,1.124295067096538649e-06,1.165935625137151239e-06,1.207576183177763829e-06,1.249216741218376418e-06,1.290857299258989008e-06,1.332497857299601598e-06,1.374138415340214187e-06,1.415778973380826777e-06,1.457419531421439366e-06,1.499060089462051956e-06,1.540700647502664546e-06,1.582341205543277135e-06,1.623981763583889725e-06,1.665622321624502315e-06,1.707262879665114904e-06,1.748903437705727494e-06,1.790543995746340083e-06,1.832184553786952673e-06,1.873825111827565263e-06,1.915465669868177852e-06,1.957106227908790230e-06,1.998746785949402608e-06,2.040387343990014986e-06,2.082027902030627364e-06,2.123668460071239742e-06,2.165309018111852120e-06,2.206949576152464497e-06,2.248590134193076875e-06,2.290230692233689253e-06,2.331871250274301631e-06,2.373511808314914009e-06,2.415152366355526387e-06,2.456792924396138765e-06,2.498433482436751142e-06,2.540074040477363520e-06,2.581714598517975898e-06,2.623355156558588276e-06 +0.000000000000000000e+00,4.353161200287877816e-08,8.706322400575755631e-08,1.305948360086363212e-07,1.741264480115150862e-07,2.176580600143938511e-07,2.611896720172726425e-07,3.047212840201514339e-07,3.482528960230302253e-07,3.917845080259090166e-07,4.353161200287878080e-07,4.788477320316666524e-07,5.223793440345454967e-07,5.659109560374243410e-07,6.094425680403031854e-07,6.529741800431820297e-07,6.965057920460608740e-07,7.400374040489397184e-07,7.835690160518185627e-07,8.271006280546974070e-07,8.706322400575762514e-07,9.141638520604550957e-07,9.576954640633339400e-07,1.001227076066212784e-06,1.044758688069091629e-06,1.088290300071970473e-06,1.131821912074849317e-06,1.175353524077728162e-06,1.218885136080607006e-06,1.262416748083485850e-06,1.305948360086364695e-06,1.349479972089243539e-06,1.393011584092122383e-06,1.436543196095001228e-06,1.480074808097880072e-06,1.523606420100758916e-06,1.567138032103637761e-06,1.610669644106516605e-06,1.654201256109395449e-06,1.697732868112274294e-06,1.741264480115153138e-06,1.784796092118031982e-06,1.828327704120910827e-06,1.871859316123789671e-06,1.915390928126668304e-06,1.958922540129546936e-06,2.002454152132425569e-06,2.045985764135304201e-06,2.089517376138182834e-06,2.133048988141061466e-06,2.176580600143940099e-06,2.220112212146818732e-06,2.263643824149697364e-06,2.307175436152575997e-06,2.350707048155454629e-06,2.394238660158333262e-06,2.437770272161211894e-06,2.481301884164090527e-06,2.524833496166969160e-06,2.568365108169847792e-06,2.611896720172726425e-06,2.655428332175605057e-06,2.698959944178483690e-06,2.742491556181362322e-06 +0.000000000000000000e+00,3.846641072550528572e-08,7.693282145101057143e-08,1.153992321765158505e-07,1.538656429020211164e-07,1.923320536275263823e-07,2.307984643530316481e-07,2.692648750785369140e-07,3.077312858040421798e-07,3.461976965295474457e-07,3.846641072550527116e-07,4.231305179805579774e-07,4.615969287060632433e-07,5.000633394315685621e-07,5.385297501570739338e-07,5.769961608825793056e-07,6.154625716080846773e-07,6.539289823335900491e-07,6.923953930590954208e-07,7.308618037846007925e-07,7.693282145101061643e-07,8.077946252356115360e-07,8.462610359611169078e-07,8.847274466866222795e-07,9.231938574121276513e-07,9.616602681376330230e-07,1.000126678863138395e-06,1.038593089588643766e-06,1.077059500314149138e-06,1.115525911039654510e-06,1.153992321765159882e-06,1.192458732490665253e-06,1.230925143216170625e-06,1.269391553941675997e-06,1.307857964667181369e-06,1.346324375392686740e-06,1.384790786118192112e-06,1.423257196843697484e-06,1.461723607569202856e-06,1.500190018294708227e-06,1.538656429020213599e-06,1.577122839745718971e-06,1.615589250471224343e-06,1.654055661196729714e-06,1.692522071922235086e-06,1.730988482647740458e-06,1.769454893373245830e-06,1.807921304098751201e-06,1.846387714824256573e-06,1.884854125549761945e-06,1.923320536275267317e-06,1.961786947000772688e-06,2.000253357726278060e-06,2.038719768451783432e-06,2.077186179177288804e-06,2.115652589902794175e-06,2.154119000628299547e-06,2.192585411353804919e-06,2.231051822079310290e-06,2.269518232804815662e-06,2.307984643530321034e-06,2.346451054255826406e-06,2.384917464981331777e-06,2.423383875706837149e-06 +0.000000000000000000e+00,3.982252350899123219e-08,7.964504701798246438e-08,1.194675705269736833e-07,1.592900940359649023e-07,1.991126175449561213e-07,2.389351410539473667e-07,2.787576645629386121e-07,3.185801880719298575e-07,3.584027115809211030e-07,3.982252350899123484e-07,4.380477585989035938e-07,4.778702821078948392e-07,5.176928056168860317e-07,5.575153291258772242e-07,5.973378526348684167e-07,6.371603761438596092e-07,6.769828996528508017e-07,7.168054231618419942e-07,7.566279466708331866e-07,7.964504701798243791e-07,8.362729936888155716e-07,8.760955171978067641e-07,9.159180407067979566e-07,9.557405642157890432e-07,9.955630877247801298e-07,1.035385611233771216e-06,1.075208134742762303e-06,1.115030658251753390e-06,1.154853181760744476e-06,1.194675705269735563e-06,1.234498228778726649e-06,1.274320752287717736e-06,1.314143275796708823e-06,1.353965799305699909e-06,1.393788322814690996e-06,1.433610846323682082e-06,1.473433369832673169e-06,1.513255893341664256e-06,1.553078416850655342e-06,1.592900940359646429e-06,1.632723463868637516e-06,1.672545987377628602e-06,1.712368510886619689e-06,1.752191034395610775e-06,1.792013557904601862e-06,1.831836081413592949e-06,1.871658604922584035e-06,1.911481128431575122e-06,1.951303651940566208e-06,1.991126175449557295e-06,2.030948698958548382e-06,2.070771222467539468e-06,2.110593745976530555e-06,2.150416269485521641e-06,2.190238792994512728e-06,2.230061316503503815e-06,2.269883840012494901e-06,2.309706363521485988e-06,2.349528887030477074e-06,2.389351410539468161e-06,2.429173934048459248e-06,2.468996457557450334e-06,2.508818981066441421e-06 +0.000000000000000000e+00,4.080631685456846641e-08,8.161263370913693282e-08,1.224189505637054125e-07,1.632252674182738921e-07,2.040315842728423718e-07,2.448379011274108249e-07,2.856442179819792781e-07,3.264505348365477313e-07,3.672568516911161845e-07,4.080631685456846377e-07,4.488694854002530908e-07,4.896758022548215440e-07,5.304821191093899442e-07,5.712884359639583445e-07,6.120947528185267447e-07,6.529010696730951450e-07,6.937073865276635452e-07,7.345137033822319454e-07,7.753200202368003457e-07,8.161263370913687459e-07,8.569326539459371461e-07,8.977389708005055464e-07,9.385452876550739466e-07,9.793516045096424527e-07,1.020157921364210959e-06,1.060964238218779465e-06,1.101770555073347971e-06,1.142576871927916477e-06,1.183383188782484983e-06,1.224189505637053489e-06,1.264995822491621996e-06,1.305802139346190502e-06,1.346608456200759008e-06,1.387414773055327514e-06,1.428221089909896020e-06,1.469027406764464526e-06,1.509833723619033032e-06,1.550640040473601538e-06,1.591446357328170044e-06,1.632252674182738551e-06,1.673058991037307057e-06,1.713865307891875563e-06,1.754671624746444069e-06,1.795477941601012575e-06,1.836284258455581081e-06,1.877090575310149587e-06,1.917896892164718305e-06,1.958703209019287023e-06,1.999509525873855741e-06,2.040315842728424459e-06,2.081122159582993177e-06,2.121928476437561895e-06,2.162734793292130612e-06,2.203541110146699330e-06,2.244347427001268048e-06,2.285153743855836766e-06,2.325960060710405484e-06,2.366766377564974202e-06,2.407572694419542920e-06,2.448379011274111638e-06,2.489185328128680355e-06,2.529991644983249073e-06,2.570797961837817791e-06 +0.000000000000000000e+00,3.846641072550491514e-08,7.693282145100983028e-08,1.153992321765147388e-07,1.538656429020196341e-07,1.923320536275245294e-07,2.307984643530294247e-07,2.692648750785343199e-07,3.077312858040392152e-07,3.461976965295441105e-07,3.846641072550490058e-07,4.231305179805539011e-07,4.615969287060587964e-07,5.000633394315636917e-07,5.385297501570686399e-07,5.769961608825735881e-07,6.154625716080785363e-07,6.539289823335834846e-07,6.923953930590884328e-07,7.308618037845933810e-07,7.693282145100983292e-07,8.077946252356032775e-07,8.462610359611082257e-07,8.847274466866131739e-07,9.231938574121181221e-07,9.616602681376230704e-07,1.000126678863128019e-06,1.038593089588632967e-06,1.077059500314137915e-06,1.115525911039642863e-06,1.153992321765147811e-06,1.192458732490652760e-06,1.230925143216157708e-06,1.269391553941662656e-06,1.307857964667167604e-06,1.346324375392672553e-06,1.384790786118177501e-06,1.423257196843682449e-06,1.461723607569187397e-06,1.500190018294692346e-06,1.538656429020197294e-06,1.577122839745702242e-06,1.615589250471207190e-06,1.654055661196712138e-06,1.692522071922217087e-06,1.730988482647722035e-06,1.769454893373226983e-06,1.807921304098731931e-06,1.846387714824236880e-06,1.884854125549741828e-06,1.923320536275246564e-06,1.961786947000751089e-06,2.000253357726255614e-06,2.038719768451760138e-06,2.077186179177264663e-06,2.115652589902769188e-06,2.154119000628273712e-06,2.192585411353778237e-06,2.231051822079282762e-06,2.269518232804787287e-06,2.307984643530291811e-06,2.346451054255796336e-06,2.384917464981300861e-06,2.423383875706805385e-06 +0.000000000000000000e+00,3.982252350899134469e-08,7.964504701798268938e-08,1.194675705269740274e-07,1.592900940359653523e-07,1.991126175449566771e-07,2.389351410539480020e-07,2.787576645629393003e-07,3.185801880719305987e-07,3.584027115809218971e-07,3.982252350899131954e-07,4.380477585989044938e-07,4.778702821078957921e-07,5.176928056168870905e-07,5.575153291258783889e-07,5.973378526348696872e-07,6.371603761438609856e-07,6.769828996528522840e-07,7.168054231618435823e-07,7.566279466708348807e-07,7.964504701798261791e-07,8.362729936888174774e-07,8.760955171978087758e-07,9.159180407068000742e-07,9.557405642157913725e-07,9.955630877247826709e-07,1.035385611233773969e-06,1.075208134742765268e-06,1.115030658251756566e-06,1.154853181760747864e-06,1.194675705269739163e-06,1.234498228778730461e-06,1.274320752287721759e-06,1.314143275796713058e-06,1.353965799305704356e-06,1.393788322814695655e-06,1.433610846323686953e-06,1.473433369832678251e-06,1.513255893341669550e-06,1.553078416850660848e-06,1.592900940359652146e-06,1.632723463868643445e-06,1.672545987377634743e-06,1.712368510886626041e-06,1.752191034395617340e-06,1.792013557904608638e-06,1.831836081413599937e-06,1.871658604922591235e-06,1.911481128431582322e-06,1.951303651940573408e-06,1.991126175449564495e-06,2.030948698958555581e-06,2.070771222467546668e-06,2.110593745976537755e-06,2.150416269485528841e-06,2.190238792994519928e-06,2.230061316503511014e-06,2.269883840012502101e-06,2.309706363521493188e-06,2.349528887030484274e-06,2.389351410539475361e-06,2.429173934048466447e-06,2.468996457557457534e-06,2.508818981066448621e-06 +0.000000000000000000e+00,4.080631685456754659e-08,8.161263370913509317e-08,1.224189505637026331e-07,1.632252674182701599e-07,2.040315842728376866e-07,2.448379011274052133e-07,2.856442179819727666e-07,3.264505348365403198e-07,3.672568516911078730e-07,4.080631685456754262e-07,4.488694854002429794e-07,4.896758022548105326e-07,5.304821191093780858e-07,5.712884359639456390e-07,6.120947528185131922e-07,6.529010696730807454e-07,6.937073865276482986e-07,7.345137033822158518e-07,7.753200202367834050e-07,8.161263370913509582e-07,8.569326539459185114e-07,8.977389708004860646e-07,9.385452876550536178e-07,9.793516045096212769e-07,1.020157921364188936e-06,1.060964238218756595e-06,1.101770555073324254e-06,1.142576871927891913e-06,1.183383188782459572e-06,1.224189505637027231e-06,1.264995822491594891e-06,1.305802139346162550e-06,1.346608456200730209e-06,1.387414773055297868e-06,1.428221089909865527e-06,1.469027406764433186e-06,1.509833723619000845e-06,1.550640040473568504e-06,1.591446357328136163e-06,1.632252674182703822e-06,1.673058991037271481e-06,1.713865307891839140e-06,1.754671624746406800e-06,1.795477941600974459e-06,1.836284258455542118e-06,1.877090575310109777e-06,1.917896892164677648e-06,1.958703209019245518e-06,1.999509525873813389e-06,2.040315842728381260e-06,2.081122159582949131e-06,2.121928476437517002e-06,2.162734793292084873e-06,2.203541110146652743e-06,2.244347427001220614e-06,2.285153743855788485e-06,2.325960060710356356e-06,2.366766377564924227e-06,2.407572694419492098e-06,2.448379011274059969e-06,2.489185328128627839e-06,2.529991644983195710e-06,2.570797961837763581e-06 +0.000000000000000000e+00,3.521854222589728680e-08,7.043708445179457360e-08,1.056556266776918670e-07,1.408741689035891737e-07,1.760927111294864803e-07,2.113112533553837870e-07,2.465297955812810936e-07,2.817483378071784003e-07,3.169668800330757070e-07,3.521854222589730136e-07,3.874039644848703203e-07,4.226225067107676269e-07,4.578410489366649336e-07,4.930595911625621873e-07,5.282781333884594410e-07,5.634966756143566947e-07,5.987152178402539484e-07,6.339337600661512021e-07,6.691523022920484559e-07,7.043708445179457096e-07,7.395893867438429633e-07,7.748079289697402170e-07,8.100264711956374707e-07,8.452450134215347244e-07,8.804635556474319782e-07,9.156820978733292319e-07,9.509006400992264856e-07,9.861191823251237393e-07,1.021337724551021099e-06,1.056556266776918458e-06,1.091774809002815818e-06,1.126993351228713178e-06,1.162211893454610537e-06,1.197430435680507897e-06,1.232648977906405256e-06,1.267867520132302616e-06,1.303086062358199976e-06,1.338304604584097335e-06,1.373523146809994695e-06,1.408741689035892054e-06,1.443960231261789414e-06,1.479178773487686774e-06,1.514397315713584133e-06,1.549615857939481493e-06,1.584834400165378852e-06,1.620052942391276212e-06,1.655271484617173572e-06,1.690490026843070931e-06,1.725708569068968291e-06,1.760927111294865650e-06,1.796145653520763010e-06,1.831364195746660370e-06,1.866582737972557729e-06,1.901801280198455089e-06,1.937019822424352448e-06,1.972238364650249596e-06,2.007456906876146744e-06,2.042675449102043892e-06,2.077893991327941040e-06,2.113112533553838188e-06,2.148331075779735335e-06,2.183549618005632483e-06,2.218768160231529631e-06 +0.000000000000000000e+00,3.691728436862821273e-08,7.383456873725642545e-08,1.107518531058846316e-07,1.476691374745128244e-07,1.845864218431410173e-07,2.215037062117692102e-07,2.584209905803974031e-07,2.953382749490255959e-07,3.322555593176537888e-07,3.691728436862819817e-07,4.060901280549101745e-07,4.430074124235383674e-07,4.799246967921665603e-07,5.168419811607948061e-07,5.537592655294230519e-07,5.906765498980512977e-07,6.275938342666795435e-07,6.645111186353077894e-07,7.014284030039360352e-07,7.383456873725642810e-07,7.752629717411925268e-07,8.121802561098207726e-07,8.490975404784490184e-07,8.860148248470772642e-07,9.229321092157055101e-07,9.598493935843337559e-07,9.967666779529621076e-07,1.033683962321590459e-06,1.070601246690218811e-06,1.107518531058847163e-06,1.144435815427475514e-06,1.181353099796103866e-06,1.218270384164732218e-06,1.255187668533360569e-06,1.292104952901988921e-06,1.329022237270617273e-06,1.365939521639245624e-06,1.402856806007873976e-06,1.439774090376502328e-06,1.476691374745130680e-06,1.513608659113759031e-06,1.550525943482387383e-06,1.587443227851015735e-06,1.624360512219644086e-06,1.661277796588272438e-06,1.698195080956900790e-06,1.735112365325529141e-06,1.772029649694157493e-06,1.808946934062785845e-06,1.845864218431414196e-06,1.882781502800042548e-06,1.919698787168670900e-06,1.956616071537299252e-06,1.993533355905927603e-06,2.030450640274555955e-06,2.067367924643184307e-06,2.104285209011812658e-06,2.141202493380441010e-06,2.178119777749069362e-06,2.215037062117697713e-06,2.251954346486326065e-06,2.288871630854954417e-06,2.325788915223582768e-06 +0.000000000000000000e+00,3.729250649803624511e-08,7.458501299607249022e-08,1.118775194941087353e-07,1.491700259921449804e-07,1.864625324901812123e-07,2.237550389882174442e-07,2.610475454862536760e-07,2.983400519842899079e-07,3.356325584823261398e-07,3.729250649803623717e-07,4.102175714783986035e-07,4.475100779764348354e-07,4.848025844744710673e-07,5.220950909725073521e-07,5.593875974705436369e-07,5.966801039685799217e-07,6.339726104666162065e-07,6.712651169646524913e-07,7.085576234626887762e-07,7.458501299607250610e-07,7.831426364587613458e-07,8.204351429567976306e-07,8.577276494548339154e-07,8.950201559528702002e-07,9.323126624509064850e-07,9.696051689489427698e-07,1.006897675446979055e-06,1.044190181945015339e-06,1.081482688443051624e-06,1.118775194941087909e-06,1.156067701439124194e-06,1.193360207937160479e-06,1.230652714435196764e-06,1.267945220933233048e-06,1.305237727431269333e-06,1.342530233929305618e-06,1.379822740427341903e-06,1.417115246925378188e-06,1.454407753423414472e-06,1.491700259921450757e-06,1.528992766419487042e-06,1.566285272917523327e-06,1.603577779415559612e-06,1.640870285913595896e-06,1.678162792411632181e-06,1.715455298909668466e-06,1.752747805407704751e-06,1.790040311905741036e-06,1.827332818403777321e-06,1.864625324901813605e-06,1.901917831399849890e-06,1.939210337897885963e-06,1.976502844395922036e-06,2.013795350893958109e-06,2.051087857391994182e-06,2.088380363890030255e-06,2.125672870388066328e-06,2.162965376886102402e-06,2.200257883384138475e-06,2.237550389882174548e-06,2.274842896380210621e-06,2.312135402878246694e-06,2.349427909376282767e-06 +0.000000000000000000e+00,3.521854222589640006e-08,7.043708445179280013e-08,1.056556266776891936e-07,1.408741689035855738e-07,1.760927111294819540e-07,2.113112533553783342e-07,2.465297955812747409e-07,2.817483378071711476e-07,3.169668800330675543e-07,3.521854222589639609e-07,3.874039644848603676e-07,4.226225067107567743e-07,4.578410489366531810e-07,4.930595911625495877e-07,5.282781333884459944e-07,5.634966756143424010e-07,5.987152178402388077e-07,6.339337600661352144e-07,6.691523022920316211e-07,7.043708445179280278e-07,7.395893867438244344e-07,7.748079289697208411e-07,8.100264711956172478e-07,8.452450134215136545e-07,8.804635556474100612e-07,9.156820978733064679e-07,9.509006400992028745e-07,9.861191823250993871e-07,1.021337724550995900e-06,1.056556266776892412e-06,1.091774809002788925e-06,1.126993351228685437e-06,1.162211893454581950e-06,1.197430435680478462e-06,1.232648977906374975e-06,1.267867520132271488e-06,1.303086062358168000e-06,1.338304604584064513e-06,1.373523146809961025e-06,1.408741689035857538e-06,1.443960231261754050e-06,1.479178773487650563e-06,1.514397315713547076e-06,1.549615857939443588e-06,1.584834400165340101e-06,1.620052942391236613e-06,1.655271484617133126e-06,1.690490026843029638e-06,1.725708569068926151e-06,1.760927111294822663e-06,1.796145653520719176e-06,1.831364195746615689e-06,1.866582737972512201e-06,1.901801280198408714e-06,1.937019822424305438e-06,1.972238364650202162e-06,2.007456906876098887e-06,2.042675449101995611e-06,2.077893991327892335e-06,2.113112533553789060e-06,2.148331075779685784e-06,2.183549618005582508e-06,2.218768160231479233e-06 +0.000000000000000000e+00,3.691728436862764363e-08,7.383456873725528725e-08,1.107518531058829375e-07,1.476691374745106010e-07,1.845864218431382645e-07,2.215037062117659279e-07,2.584209905803935914e-07,2.953382749490212549e-07,3.322555593176489184e-07,3.691728436862765818e-07,4.060901280549042453e-07,4.430074124235319088e-07,4.799246967921595723e-07,5.168419811607871828e-07,5.537592655294147934e-07,5.906765498980424039e-07,6.275938342666700144e-07,6.645111186352976250e-07,7.014284030039252355e-07,7.383456873725528460e-07,7.752629717411804566e-07,8.121802561098080671e-07,8.490975404784356777e-07,8.860148248470632882e-07,9.229321092156908987e-07,9.598493935843185093e-07,9.967666779529460139e-07,1.033683962321573519e-06,1.070601246690201023e-06,1.107518531058828528e-06,1.144435815427456033e-06,1.181353099796083537e-06,1.218270384164711042e-06,1.255187668533338547e-06,1.292104952901966051e-06,1.329022237270593556e-06,1.365939521639221061e-06,1.402856806007848565e-06,1.439774090376476070e-06,1.476691374745103575e-06,1.513608659113731079e-06,1.550525943482358584e-06,1.587443227850986088e-06,1.624360512219613593e-06,1.661277796588241098e-06,1.698195080956868602e-06,1.735112365325496107e-06,1.772029649694123612e-06,1.808946934062751116e-06,1.845864218431378621e-06,1.882781502800006126e-06,1.919698787168633630e-06,1.956616071537261135e-06,1.993533355905888640e-06,2.030450640274516144e-06,2.067367924643143649e-06,2.104285209011771154e-06,2.141202493380398658e-06,2.178119777749026163e-06,2.215037062117653668e-06,2.251954346486281172e-06,2.288871630854908677e-06,2.325788915223536182e-06 +0.000000000000000000e+00,3.729250649803432605e-08,7.458501299606865210e-08,1.118775194941029781e-07,1.491700259921373042e-07,1.864625324901716302e-07,2.237550389882059563e-07,2.610475454862402823e-07,2.983400519842746084e-07,3.356325584823089344e-07,3.729250649803432605e-07,4.102175714783775865e-07,4.475100779764119126e-07,4.848025844744462916e-07,5.220950909724806706e-07,5.593875974705150495e-07,5.966801039685494285e-07,6.339726104665838075e-07,6.712651169646181865e-07,7.085576234626525655e-07,7.458501299606869445e-07,7.831426364587213235e-07,8.204351429567557025e-07,8.577276494547900815e-07,8.950201559528244604e-07,9.323126624508588394e-07,9.696051689488932184e-07,1.006897675446927597e-06,1.044190181944961976e-06,1.081482688442996355e-06,1.118775194941030734e-06,1.156067701439065113e-06,1.193360207937099492e-06,1.230652714435133871e-06,1.267945220933168250e-06,1.305237727431202629e-06,1.342530233929237008e-06,1.379822740427271387e-06,1.417115246925305766e-06,1.454407753423340145e-06,1.491700259921374524e-06,1.528992766419408903e-06,1.566285272917443282e-06,1.603577779415477661e-06,1.640870285913512040e-06,1.678162792411546419e-06,1.715455298909580798e-06,1.752747805407615177e-06,1.790040311905649556e-06,1.827332818403683935e-06,1.864625324901718314e-06,1.901917831399752693e-06,1.939210337897786860e-06,1.976502844395821239e-06,2.013795350893855618e-06,2.051087857391889997e-06,2.088380363889924376e-06,2.125672870387958755e-06,2.162965376885993134e-06,2.200257883384027513e-06,2.237550389882061892e-06,2.274842896380096271e-06,2.312135402878130650e-06,2.349427909376165029e-06 +0.000000000000000000e+00,3.151224017894936350e-08,6.302448035789872699e-08,9.453672053684809049e-08,1.260489607157974540e-07,1.575612008947468175e-07,1.890734410736961810e-07,2.205856812526455445e-07,2.520979214315949080e-07,2.836101616105442450e-07,3.151224017894935820e-07,3.466346419684429191e-07,3.781468821473922561e-07,4.096591223263415931e-07,4.411713625052909301e-07,4.726836026842402672e-07,5.041958428631896042e-07,5.357080830421389412e-07,5.672203232210882783e-07,5.987325634000376153e-07,6.302448035789869523e-07,6.617570437579362893e-07,6.932692839368856264e-07,7.247815241158349634e-07,7.562937642947843004e-07,7.878060044737336374e-07,8.193182446526829745e-07,8.508304848316323115e-07,8.823427250105816485e-07,9.138549651895309856e-07,9.453672053684803226e-07,9.768794455474295537e-07,1.008391685726378785e-06,1.039903925905328016e-06,1.071416166084277247e-06,1.102928406263226478e-06,1.134440646442175709e-06,1.165952886621124941e-06,1.197465126800074172e-06,1.228977366979023403e-06,1.260489607157972634e-06,1.292001847336921865e-06,1.323514087515871096e-06,1.355026327694820328e-06,1.386538567873769559e-06,1.418050808052718790e-06,1.449563048231668021e-06,1.481075288410617252e-06,1.512587528589566483e-06,1.544099768768515714e-06,1.575612008947464946e-06,1.607124249126414177e-06,1.638636489305363408e-06,1.670148729484312639e-06,1.701660969663261870e-06,1.733173209842211101e-06,1.764685450021160332e-06,1.796197690200109564e-06,1.827709930379058795e-06,1.859222170558008026e-06,1.890734410736957257e-06,1.922246650915906488e-06,1.953758891094855719e-06,1.985271131273804950e-06 +0.000000000000000000e+00,3.341006915190315475e-08,6.682013830380630951e-08,1.002302074557094709e-07,1.336402766076126455e-07,1.670503457595158201e-07,2.004604149114189947e-07,2.338704840633221693e-07,2.672805532152253439e-07,3.006906223671285450e-07,3.341006915190317461e-07,3.675107606709349471e-07,4.009208298228381482e-07,4.343308989747413493e-07,4.677409681266445504e-07,5.011510372785477515e-07,5.345611064304510055e-07,5.679711755823542595e-07,6.013812447342575135e-07,6.347913138861607675e-07,6.682013830380640215e-07,7.016114521899672755e-07,7.350215213418705296e-07,7.684315904937737836e-07,8.018416596456770376e-07,8.352517287975802916e-07,8.686617979494835456e-07,9.020718671013867996e-07,9.354819362532900537e-07,9.688920054051933077e-07,1.002302074557096562e-06,1.035712143708999816e-06,1.069122212860903070e-06,1.102532282012806324e-06,1.135942351164709578e-06,1.169352420316612832e-06,1.202762489468516086e-06,1.236172558620419340e-06,1.269582627772322594e-06,1.302992696924225848e-06,1.336402766076129102e-06,1.369812835228032356e-06,1.403222904379935610e-06,1.436632973531838864e-06,1.470043042683742118e-06,1.503453111835645372e-06,1.536863180987548626e-06,1.570273250139451880e-06,1.603683319291355134e-06,1.637093388443258388e-06,1.670503457595161642e-06,1.703913526747064896e-06,1.737323595898968150e-06,1.770733665050871404e-06,1.804143734202774658e-06,1.837553803354677912e-06,1.870963872506581166e-06,1.904373941658484420e-06,1.937784010810387462e-06,1.971194079962290505e-06,2.004604149114193547e-06,2.038014218266096589e-06,2.071424287417999631e-06,2.104834356569902674e-06 +0.000000000000000000e+00,3.335703160992715566e-08,6.671406321985431133e-08,1.000710948297814736e-07,1.334281264397086491e-07,1.667851580496358246e-07,2.001421896595630002e-07,2.334992212694901757e-07,2.668562528794173512e-07,3.002132844893445002e-07,3.335703160992716493e-07,3.669273477091987983e-07,4.002843793191259474e-07,4.336414109290530964e-07,4.669984425389802455e-07,5.003554741489073945e-07,5.337125057588345965e-07,5.670695373687617985e-07,6.004265689786890005e-07,6.337836005886162025e-07,6.671406321985434044e-07,7.004976638084706064e-07,7.338546954183978084e-07,7.672117270283250104e-07,8.005687586382522124e-07,8.339257902481794144e-07,8.672828218581066164e-07,9.006398534680338183e-07,9.339968850779610203e-07,9.673539166878881164e-07,1.000710948297815213e-06,1.034067979907742309e-06,1.067425011517669405e-06,1.100782043127596501e-06,1.134139074737523597e-06,1.167496106347450693e-06,1.200853137957377789e-06,1.234210169567304885e-06,1.267567201177231981e-06,1.300924232787159077e-06,1.334281264397086174e-06,1.367638296007013270e-06,1.400995327616940366e-06,1.434352359226867462e-06,1.467709390836794558e-06,1.501066422446721654e-06,1.534423454056648750e-06,1.567780485666575846e-06,1.601137517276502942e-06,1.634494548886430039e-06,1.667851580496357135e-06,1.701208612106284231e-06,1.734565643716211327e-06,1.767922675326138423e-06,1.801279706936065519e-06,1.834636738545992615e-06,1.867993770155919711e-06,1.901350801765846807e-06,1.934707833375773692e-06,1.968064864985700576e-06,2.001421896595627460e-06,2.034778928205554345e-06,2.068135959815481229e-06,2.101492991425408114e-06 +0.000000000000000000e+00,3.151224017894757679e-08,6.302448035789515357e-08,9.453672053684273036e-08,1.260489607157903071e-07,1.575612008947378972e-07,1.890734410736854872e-07,2.205856812526330772e-07,2.520979214315806672e-07,2.836101616105282573e-07,3.151224017894758473e-07,3.466346419684234373e-07,3.781468821473710273e-07,4.096591223263186173e-07,4.411713625052662074e-07,4.726836026842137974e-07,5.041958428631614404e-07,5.357080830421090833e-07,5.672203232210567263e-07,5.987325634000043692e-07,6.302448035789520122e-07,6.617570437578996552e-07,6.932692839368472981e-07,7.247815241157949411e-07,7.562937642947425840e-07,7.878060044736902270e-07,8.193182446526378700e-07,8.508304848315855129e-07,8.823427250105331559e-07,9.138549651894807989e-07,9.453672053684284418e-07,9.768794455473761907e-07,1.008391685726323940e-06,1.039903925905271688e-06,1.071416166084219437e-06,1.102928406263167186e-06,1.134440646442114935e-06,1.165952886621062684e-06,1.197465126800010433e-06,1.228977366978958181e-06,1.260489607157905930e-06,1.292001847336853679e-06,1.323514087515801428e-06,1.355026327694749177e-06,1.386538567873696926e-06,1.418050808052644674e-06,1.449563048231592423e-06,1.481075288410540172e-06,1.512587528589487921e-06,1.544099768768435670e-06,1.575612008947383419e-06,1.607124249126331167e-06,1.638636489305278916e-06,1.670148729484226665e-06,1.701660969663174414e-06,1.733173209842122163e-06,1.764685450021069912e-06,1.796197690200017661e-06,1.827709930378965409e-06,1.859222170557913158e-06,1.890734410736860907e-06,1.922246650915808656e-06,1.953758891094756616e-06,1.985271131273704577e-06 +0.000000000000000000e+00,3.341006915190177171e-08,6.682013830380354342e-08,1.002302074557053151e-07,1.336402766076070868e-07,1.670503457595088585e-07,2.004604149114106303e-07,2.338704840633124020e-07,2.672805532152141737e-07,3.006906223671159454e-07,3.341006915190177171e-07,3.675107606709194888e-07,4.009208298228212605e-07,4.343308989747230322e-07,4.677409681266248039e-07,5.011510372785265756e-07,5.345611064304283473e-07,5.679711755823301190e-07,6.013812447342318908e-07,6.347913138861336625e-07,6.682013830380354342e-07,7.016114521899372059e-07,7.350215213418389776e-07,7.684315904937407493e-07,8.018416596456425210e-07,8.352517287975442927e-07,8.686617979494460644e-07,9.020718671013478361e-07,9.354819362532496078e-07,9.688920054051513795e-07,1.002302074557053151e-06,1.035712143708954923e-06,1.069122212860856695e-06,1.102532282012758466e-06,1.135942351164660238e-06,1.169352420316562010e-06,1.202762489468463782e-06,1.236172558620365553e-06,1.269582627772267325e-06,1.302992696924169097e-06,1.336402766076070868e-06,1.369812835227972640e-06,1.403222904379874412e-06,1.436632973531776183e-06,1.470043042683677955e-06,1.503453111835579727e-06,1.536863180987481499e-06,1.570273250139383270e-06,1.603683319291285042e-06,1.637093388443186814e-06,1.670503457595088585e-06,1.703913526746990357e-06,1.737323595898892129e-06,1.770733665050793901e-06,1.804143734202695672e-06,1.837553803354597444e-06,1.870963872506499216e-06,1.904373941658400987e-06,1.937784010810302759e-06,1.971194079962204531e-06,2.004604149114106303e-06,2.038014218266008074e-06,2.071424287417909846e-06,2.104834356569811618e-06 +0.000000000000000000e+00,3.335703160992423737e-08,6.671406321984847474e-08,1.000710948297727121e-07,1.334281264396969495e-07,1.667851580496211869e-07,2.001421896595454242e-07,2.334992212694696616e-07,2.668562528793938990e-07,3.002132844893181363e-07,3.335703160992423737e-07,3.669273477091666111e-07,4.002843793190908484e-07,4.336414109290150858e-07,4.669984425389393232e-07,5.003554741488635606e-07,5.337125057587877979e-07,5.670695373687120353e-07,6.004265689786362727e-07,6.337836005885605100e-07,6.671406321984847474e-07,7.004976638084089848e-07,7.338546954183332221e-07,7.672117270282574595e-07,8.005687586381816969e-07,8.339257902481059343e-07,8.672828218580301716e-07,9.006398534679544090e-07,9.339968850778786464e-07,9.673539166878029896e-07,1.000710948297727333e-06,1.034067979907651676e-06,1.067425011517576019e-06,1.100782043127500363e-06,1.134139074737424706e-06,1.167496106347349049e-06,1.200853137957273392e-06,1.234210169567197736e-06,1.267567201177122079e-06,1.300924232787046422e-06,1.334281264396970765e-06,1.367638296006895109e-06,1.400995327616819452e-06,1.434352359226743795e-06,1.467709390836668138e-06,1.501066422446592482e-06,1.534423454056516825e-06,1.567780485666441168e-06,1.601137517276365511e-06,1.634494548886289855e-06,1.667851580496214198e-06,1.701208612106138541e-06,1.734565643716062884e-06,1.767922675325987228e-06,1.801279706935911571e-06,1.834636738545835914e-06,1.867993770155760257e-06,1.901350801765684601e-06,1.934707833375608944e-06,1.968064864985533287e-06,2.001421896595457630e-06,2.034778928205381974e-06,2.068135959815306317e-06,2.101492991425230660e-06 +0.000000000000000000e+00,2.752298278938471725e-08,5.504596557876943449e-08,8.256894836815414843e-08,1.100919311575388557e-07,1.376149139469235498e-07,1.651378967363082439e-07,1.926608795256929380e-07,2.201838623150776321e-07,2.477068451044623262e-07,2.752298278938469938e-07,3.027528106832316614e-07,3.302757934726163290e-07,3.577987762620009966e-07,3.853217590513856642e-07,4.128447418407703319e-07,4.403677246301549995e-07,4.678907074195396671e-07,4.954136902089243347e-07,5.229366729983089494e-07,5.504596557876935641e-07,5.779826385770781787e-07,6.055056213664627934e-07,6.330286041558474081e-07,6.605515869452320228e-07,6.880745697346166374e-07,7.155975525240012521e-07,7.431205353133858668e-07,7.706435181027704815e-07,7.981665008921550961e-07,8.256894836815397108e-07,8.532124664709243255e-07,8.807354492603089402e-07,9.082584320496935548e-07,9.357814148390781695e-07,9.633043976284627842e-07,9.908273804178473989e-07,1.018350363207232014e-06,1.045873345996616628e-06,1.073396328786001243e-06,1.100919311575385858e-06,1.128442294364770472e-06,1.155965277154155087e-06,1.183488259943539702e-06,1.211011242732924316e-06,1.238534225522308931e-06,1.266057208311693546e-06,1.293580191101078160e-06,1.321103173890462775e-06,1.348626156679847390e-06,1.376149139469232004e-06,1.403672122258616619e-06,1.431195105048001234e-06,1.458718087837385848e-06,1.486241070626770463e-06,1.513764053416155078e-06,1.541287036205539692e-06,1.568810018994924307e-06,1.596333001784308922e-06,1.623855984573693536e-06,1.651378967363078151e-06,1.678901950152462766e-06,1.706424932941847380e-06,1.733947915731231995e-06 +0.000000000000000000e+00,2.954688669401132661e-08,5.909377338802265322e-08,8.864066008203397983e-08,1.181875467760453064e-07,1.477344334700566463e-07,1.772813201640679861e-07,2.068282068580793260e-07,2.363750935520906658e-07,2.659219802461020057e-07,2.954688669401133455e-07,3.250157536341246853e-07,3.545626403281360252e-07,3.841095270221473650e-07,4.136564137161587049e-07,4.432033004101700447e-07,4.727501871041813846e-07,5.022970737981927244e-07,5.318439604922040113e-07,5.613908471862152982e-07,5.909377338802265851e-07,6.204846205742378720e-07,6.500315072682491589e-07,6.795783939622604458e-07,7.091252806562717327e-07,7.386721673502830196e-07,7.682190540442943065e-07,7.977659407383055935e-07,8.273128274323168804e-07,8.568597141263281673e-07,8.864066008203394542e-07,9.159534875143507411e-07,9.455003742083620280e-07,9.750472609023733149e-07,1.004594147596384602e-06,1.034141034290395889e-06,1.063687920984407176e-06,1.093234807678418462e-06,1.122781694372429749e-06,1.152328581066441036e-06,1.181875467760452323e-06,1.211422354454463610e-06,1.240969241148474897e-06,1.270516127842486184e-06,1.300063014536497471e-06,1.329609901230508758e-06,1.359156787924520045e-06,1.388703674618531332e-06,1.418250561312542618e-06,1.447797448006553905e-06,1.477344334700565192e-06,1.506891221394576479e-06,1.536438108088587766e-06,1.565984994782599053e-06,1.595531881476610340e-06,1.625078768170621627e-06,1.654625654864632914e-06,1.684172541558644201e-06,1.713719428252655487e-06,1.743266314946666774e-06,1.772813201640678061e-06,1.802360088334689348e-06,1.831906975028700635e-06,1.861453861722711922e-06 +0.000000000000000000e+00,2.916770963831382833e-08,5.833541927662765667e-08,8.750312891494148500e-08,1.166708385532553133e-07,1.458385481915691417e-07,1.750062578298829700e-07,2.041739674681967983e-07,2.333416771065106267e-07,2.625093867448244285e-07,2.916770963831382304e-07,3.208448060214520323e-07,3.500125156597658341e-07,3.791802252980796360e-07,4.083479349363934378e-07,4.375156445747072397e-07,4.666833542130210416e-07,4.958510638513348434e-07,5.250187734896486453e-07,5.541864831279624472e-07,5.833541927662762490e-07,6.125219024045900509e-07,6.416896120429038528e-07,6.708573216812176546e-07,7.000250313195314565e-07,7.291927409578452583e-07,7.583604505961590602e-07,7.875281602344728621e-07,8.166958698727866639e-07,8.458635795111004658e-07,8.750312891494142677e-07,9.041989987877280695e-07,9.333667084260418714e-07,9.625344180643556733e-07,9.917021277026694751e-07,1.020869837340983277e-06,1.050037546979297079e-06,1.079205256617610881e-06,1.108372966255924683e-06,1.137540675894238484e-06,1.166708385532552286e-06,1.195876095170866088e-06,1.225043804809179890e-06,1.254211514447493692e-06,1.283379224085807494e-06,1.312546933724121296e-06,1.341714643362435097e-06,1.370882353000748899e-06,1.400050062639062701e-06,1.429217772277376503e-06,1.458385481915690305e-06,1.487553191554004107e-06,1.516720901192317909e-06,1.545888610830631711e-06,1.575056320468945512e-06,1.604224030107259314e-06,1.633391739745573116e-06,1.662559449383886918e-06,1.691727159022200720e-06,1.720894868660514522e-06,1.750062578298828324e-06,1.779230287937142125e-06,1.808397997575455927e-06,1.837565707213769729e-06 +0.000000000000000000e+00,2.752298278938200078e-08,5.504596557876400157e-08,8.256894836814600897e-08,1.100919311575280164e-07,1.376149139469100238e-07,1.651378967362920179e-07,1.926608795256740121e-07,2.201838623150560063e-07,2.477068451044380269e-07,2.752298278938200476e-07,3.027528106832020682e-07,3.302757934725840888e-07,3.577987762619661095e-07,3.853217590513481301e-07,4.128447418407301507e-07,4.403677246301121714e-07,4.678907074194941920e-07,4.954136902088762656e-07,5.229366729982583392e-07,5.504596557876404127e-07,5.779826385770224863e-07,6.055056213664045599e-07,6.330286041557866335e-07,6.605515869451687071e-07,6.880745697345507806e-07,7.155975525239328542e-07,7.431205353133149278e-07,7.706435181026970014e-07,7.981665008920790749e-07,8.256894836814611485e-07,8.532124664708432221e-07,8.807354492602252957e-07,9.082584320496073692e-07,9.357814148389894428e-07,9.633043976283715164e-07,9.908273804177535900e-07,1.018350363207135664e-06,1.045873345996517737e-06,1.073396328785899811e-06,1.100919311575281884e-06,1.128442294364663958e-06,1.155965277154046031e-06,1.183488259943428105e-06,1.211011242732810179e-06,1.238534225522192252e-06,1.266057208311574326e-06,1.293580191100956399e-06,1.321103173890338473e-06,1.348626156679720546e-06,1.376149139469102620e-06,1.403672122258484694e-06,1.431195105047866767e-06,1.458718087837248841e-06,1.486241070626630914e-06,1.513764053416012988e-06,1.541287036205395062e-06,1.568810018994777135e-06,1.596333001784159209e-06,1.623855984573541282e-06,1.651378967362923356e-06,1.678901950152305429e-06,1.706424932941687503e-06,1.733947915731069577e-06 +0.000000000000000000e+00,2.954688669400904028e-08,5.909377338801808056e-08,8.864066008202712415e-08,1.181875467760361744e-07,1.477344334700452113e-07,1.772813201640542483e-07,2.068282068580632853e-07,2.363750935520723223e-07,2.659219802460813592e-07,2.954688669400904227e-07,3.250157536340994861e-07,3.545626403281085496e-07,3.841095270221176130e-07,4.136564137161266764e-07,4.432033004101357399e-07,4.727501871041448033e-07,5.022970737981538668e-07,5.318439604921629302e-07,5.613908471861719937e-07,5.909377338801810571e-07,6.204846205741901205e-07,6.500315072681991840e-07,6.795783939622082474e-07,7.091252806562173109e-07,7.386721673502263743e-07,7.682190540442354378e-07,7.977659407382445012e-07,8.273128274322535646e-07,8.568597141262626281e-07,8.864066008202716915e-07,9.159534875142807550e-07,9.455003742082898184e-07,9.750472609022987760e-07,1.004594147596307734e-06,1.034141034290316691e-06,1.063687920984325649e-06,1.093234807678334606e-06,1.122781694372343564e-06,1.152328581066352521e-06,1.181875467760361479e-06,1.211422354454370436e-06,1.240969241148379394e-06,1.270516127842388352e-06,1.300063014536397309e-06,1.329609901230406267e-06,1.359156787924415224e-06,1.388703674618424182e-06,1.418250561312433139e-06,1.447797448006442097e-06,1.477344334700451055e-06,1.506891221394460012e-06,1.536438108088468970e-06,1.565984994782477927e-06,1.595531881476486885e-06,1.625078768170495842e-06,1.654625654864504800e-06,1.684172541558513758e-06,1.713719428252522715e-06,1.743266314946531673e-06,1.772813201640540630e-06,1.802360088334549588e-06,1.831906975028558545e-06,1.861453861722567503e-06 +0.000000000000000000e+00,2.916770963831025822e-08,5.833541927662051644e-08,8.750312891493077797e-08,1.166708385532410461e-07,1.458385481915513275e-07,1.750062578298616089e-07,2.041739674681718903e-07,2.333416771064821717e-07,2.625093867447924530e-07,2.916770963831027609e-07,3.208448060214130687e-07,3.500125156597233766e-07,3.791802252980336844e-07,4.083479349363439923e-07,4.375156445746543002e-07,4.666833542129646080e-07,4.958510638512749159e-07,5.250187734895852237e-07,5.541864831278955316e-07,5.833541927662058394e-07,6.125219024045161473e-07,6.416896120428264551e-07,6.708573216811367630e-07,7.000250313194470708e-07,7.291927409577573787e-07,7.583604505960676865e-07,7.875281602343779944e-07,8.166958698726883022e-07,8.458635795109986101e-07,8.750312891493089179e-07,9.041989987876192258e-07,9.333667084259295336e-07,9.625344180642398415e-07,9.917021277025502552e-07,1.020869837340860669e-06,1.050037546979171083e-06,1.079205256617481496e-06,1.108372966255791910e-06,1.137540675894102324e-06,1.166708385532412738e-06,1.195876095170723151e-06,1.225043804809033565e-06,1.254211514447343979e-06,1.283379224085654393e-06,1.312546933723964806e-06,1.341714643362275220e-06,1.370882353000585634e-06,1.400050062638896047e-06,1.429217772277206461e-06,1.458385481915516875e-06,1.487553191553827289e-06,1.516720901192137702e-06,1.545888610830448116e-06,1.575056320468758530e-06,1.604224030107068944e-06,1.633391739745379357e-06,1.662559449383689771e-06,1.691727159022000185e-06,1.720894868660310599e-06,1.750062578298621012e-06,1.779230287936931426e-06,1.808397997575241840e-06,1.837565707213552253e-06 +0.000000000000000000e+00,2.333848071255248860e-08,4.667696142510497720e-08,7.001544213765746249e-08,9.335392285020994116e-08,1.166924035627624198e-07,1.400308842753148985e-07,1.633693649878673772e-07,1.867078457004198559e-07,2.100463264129723345e-07,2.333848071255248132e-07,2.567232878380772654e-07,2.800617685506297441e-07,3.034002492631822228e-07,3.267387299757347014e-07,3.500772106882871801e-07,3.734156914008396588e-07,3.967541721133921374e-07,4.200926528259446161e-07,4.434311335384970948e-07,4.667696142510495735e-07,4.901080949636020521e-07,5.134465756761545308e-07,5.367850563887070095e-07,5.601235371012594882e-07,5.834620178138119668e-07,6.068004985263644455e-07,6.301389792389169242e-07,6.534774599514694029e-07,6.768159406640218815e-07,7.001544213765743602e-07,7.234929020891268389e-07,7.468313828016793175e-07,7.701698635142317962e-07,7.935083442267842749e-07,8.168468249393367536e-07,8.401853056518892322e-07,8.635237863644417109e-07,8.868622670769941896e-07,9.102007477895466683e-07,9.335392285020991469e-07,9.568777092146517315e-07,9.802161899272043160e-07,1.003554670639756901e-06,1.026893151352309485e-06,1.050231632064862070e-06,1.073570112777414654e-06,1.096908593489967239e-06,1.120247074202519823e-06,1.143585554915072408e-06,1.166924035627624992e-06,1.190262516340177577e-06,1.213600997052730162e-06,1.236939477765282746e-06,1.260277958477835331e-06,1.283616439190387915e-06,1.306954919902940500e-06,1.330293400615493084e-06,1.353631881328045669e-06,1.376970362040598253e-06,1.400308842753150838e-06,1.423647323465703423e-06,1.446985804178256007e-06,1.470324284890808592e-06 +0.000000000000000000e+00,2.545256413034446038e-08,5.090512826068892076e-08,7.635769239103337782e-08,1.018102565213778283e-07,1.272628206517222920e-07,1.527153847820667556e-07,1.781679489124112193e-07,2.036205130427556830e-07,2.290730771731001467e-07,2.545256413034445839e-07,2.799782054337890211e-07,3.054307695641334584e-07,3.308833336944778956e-07,3.563358978248223328e-07,3.817884619551667700e-07,4.072410260855112072e-07,4.326935902158556444e-07,4.581461543462000817e-07,4.835987184765444659e-07,5.090512826068888502e-07,5.345038467372332345e-07,5.599564108675776188e-07,5.854089749979220030e-07,6.108615391282663873e-07,6.363141032586107716e-07,6.617666673889551559e-07,6.872192315192995402e-07,7.126717956496439244e-07,7.381243597799883087e-07,7.635769239103326930e-07,7.890294880406770773e-07,8.144820521710214615e-07,8.399346163013658458e-07,8.653871804317102301e-07,8.908397445620546144e-07,9.162923086923989987e-07,9.417448728227433829e-07,9.671974369530876613e-07,9.926500010834319397e-07,1.018102565213776218e-06,1.043555129344120497e-06,1.069007693474464775e-06,1.094460257604809053e-06,1.119912821735153332e-06,1.145365385865497610e-06,1.170817949995841889e-06,1.196270514126186167e-06,1.221723078256530445e-06,1.247175642386874724e-06,1.272628206517219002e-06,1.298080770647563281e-06,1.323533334777907559e-06,1.348985898908251837e-06,1.374438463038596116e-06,1.399891027168940394e-06,1.425343591299284672e-06,1.450796155429628951e-06,1.476248719559973229e-06,1.501701283690317508e-06,1.527153847820661786e-06,1.552606411951006064e-06,1.578058976081350343e-06,1.603511540211694621e-06 +0.000000000000000000e+00,2.479571387010717392e-08,4.959142774021434784e-08,7.438714161032151514e-08,9.918285548042868244e-08,1.239785693505358497e-07,1.487742832206430303e-07,1.735699970907502108e-07,1.983657109608573914e-07,2.231614248309645719e-07,2.479571387010717524e-07,2.727528525711789065e-07,2.975485664412860606e-07,3.223442803113932146e-07,3.471399941815003687e-07,3.719357080516075228e-07,3.967314219217146768e-07,4.215271357918218309e-07,4.463228496619289850e-07,4.711185635320361390e-07,4.959142774021432931e-07,5.207099912722504472e-07,5.455057051423576012e-07,5.703014190124647553e-07,5.950971328825719094e-07,6.198928467526790634e-07,6.446885606227862175e-07,6.694842744928933716e-07,6.942799883630005256e-07,7.190757022331076797e-07,7.438714161032148338e-07,7.686671299733219878e-07,7.934628438434291419e-07,8.182585577135362960e-07,8.430542715836434500e-07,8.678499854537506041e-07,8.926456993238577582e-07,9.174414131939649122e-07,9.422371270640720663e-07,9.670328409341792204e-07,9.918285548042863744e-07,1.016624268674393528e-06,1.041419982544500683e-06,1.066215696414607837e-06,1.091011410284714991e-06,1.115807124154822145e-06,1.140602838024929299e-06,1.165398551895036453e-06,1.190194265765143607e-06,1.214989979635250761e-06,1.239785693505357915e-06,1.264581407375465069e-06,1.289377121245572223e-06,1.314172835115679377e-06,1.338968548985786531e-06,1.363764262855893685e-06,1.388559976726000839e-06,1.413355690596107994e-06,1.438151404466215148e-06,1.462947118336322302e-06,1.487742832206429456e-06,1.512538546076536610e-06,1.537334259946643764e-06,1.562129973816750918e-06 +0.000000000000000000e+00,2.333848071254975890e-08,4.667696142509951781e-08,7.001544213764928333e-08,9.335392285019904885e-08,1.166924035627488144e-07,1.400308842752985667e-07,1.633693649878483189e-07,1.867078457003980712e-07,2.100463264129478235e-07,2.333848071254975758e-07,2.567232878380473016e-07,2.800617685505970274e-07,3.034002492631467532e-07,3.267387299756964791e-07,3.500772106882462049e-07,3.734156914007959307e-07,3.967541721133456565e-07,4.200926528258953823e-07,4.434311335384451081e-07,4.667696142509948340e-07,4.901080949635445598e-07,5.134465756760942856e-07,5.367850563886440114e-07,5.601235371011937372e-07,5.834620178137434630e-07,6.068004985262931889e-07,6.301389792388429147e-07,6.534774599513926405e-07,6.768159406639423663e-07,7.001544213764920921e-07,7.234929020890418179e-07,7.468313828015915438e-07,7.701698635141412696e-07,7.935083442266909954e-07,8.168468249392407212e-07,8.401853056517904470e-07,8.635237863643401728e-07,8.868622670768898987e-07,9.102007477894396245e-07,9.335392285019893503e-07,9.568777092145390761e-07,9.802161899270886960e-07,1.003554670639638316e-06,1.026893151352187936e-06,1.050231632064737556e-06,1.073570112777287176e-06,1.096908593489836796e-06,1.120247074202386416e-06,1.143585554914936036e-06,1.166924035627485656e-06,1.190262516340035275e-06,1.213600997052584895e-06,1.236939477765134515e-06,1.260277958477684135e-06,1.283616439190233755e-06,1.306954919902783375e-06,1.330293400615332995e-06,1.353631881327882615e-06,1.376970362040432235e-06,1.400308842752981855e-06,1.423647323465531475e-06,1.446985804178081095e-06,1.470324284890630715e-06 +0.000000000000000000e+00,2.545256413034172406e-08,5.090512826068344813e-08,7.635769239102517219e-08,1.018102565213668963e-07,1.272628206517086336e-07,1.527153847820503709e-07,1.781679489123921082e-07,2.036205130427338455e-07,2.290730771730755828e-07,2.545256413034173201e-07,2.799782054337590574e-07,3.054307695641007947e-07,3.308833336944425320e-07,3.563358978247842693e-07,3.817884619551260065e-07,4.072410260854677438e-07,4.326935902158094811e-07,4.581461543461512184e-07,4.835987184764930087e-07,5.090512826068347460e-07,5.345038467371764833e-07,5.599564108675182206e-07,5.854089749978599579e-07,6.108615391282016952e-07,6.363141032585434325e-07,6.617666673888851698e-07,6.872192315192269071e-07,7.126717956495686444e-07,7.381243597799103817e-07,7.635769239102521190e-07,7.890294880405938563e-07,8.144820521709355936e-07,8.399346163012773309e-07,8.653871804316190682e-07,8.908397445619608055e-07,9.162923086923025428e-07,9.417448728226442801e-07,9.671974369529860174e-07,9.926500010833277547e-07,1.018102565213669492e-06,1.043555129344011229e-06,1.069007693474352967e-06,1.094460257604694704e-06,1.119912821735036441e-06,1.145365385865378178e-06,1.170817949995719916e-06,1.196270514126061653e-06,1.221723078256403390e-06,1.247175642386745128e-06,1.272628206517086865e-06,1.298080770647428602e-06,1.323533334777770340e-06,1.348985898908112077e-06,1.374438463038453814e-06,1.399891027168795551e-06,1.425343591299137289e-06,1.450796155429479026e-06,1.476248719559820763e-06,1.501701283690162501e-06,1.527153847820504238e-06,1.552606411950845975e-06,1.578058976081187713e-06,1.603511540211529450e-06 +0.000000000000000000e+00,2.479571387010320014e-08,4.959142774020640029e-08,7.438714161030960374e-08,9.918285548041281381e-08,1.239785693505160239e-07,1.487742832206192339e-07,1.735699970907224440e-07,1.983657109608256541e-07,2.231614248309288642e-07,2.479571387010320478e-07,2.727528525711352314e-07,2.975485664412384150e-07,3.223442803113415986e-07,3.471399941814447822e-07,3.719357080515479658e-07,3.967314219216511494e-07,4.215271357917543330e-07,4.463228496618575166e-07,4.711185635319607002e-07,4.959142774020638838e-07,5.207099912721670144e-07,5.455057051422701451e-07,5.703014190123732757e-07,5.950971328824764064e-07,6.198928467525795371e-07,6.446885606226826677e-07,6.694842744927857984e-07,6.942799883628889290e-07,7.190757022329920597e-07,7.438714161030951904e-07,7.686671299731983210e-07,7.934628438433014517e-07,8.182585577134045823e-07,8.430542715835077130e-07,8.678499854536108437e-07,8.926456993237139743e-07,9.174414131938171050e-07,9.422371270639202356e-07,9.670328409340233663e-07,9.918285548041264970e-07,1.016624268674229628e-06,1.041419982544332758e-06,1.066215696414435889e-06,1.091011410284539020e-06,1.115807124154642150e-06,1.140602838024745281e-06,1.165398551894848412e-06,1.190194265764951542e-06,1.214989979635054673e-06,1.239785693505157804e-06,1.264581407375260934e-06,1.289377121245364065e-06,1.314172835115467196e-06,1.338968548985570326e-06,1.363764262855673457e-06,1.388559976725776588e-06,1.413355690595879718e-06,1.438151404465982849e-06,1.462947118336085979e-06,1.487742832206189110e-06,1.512538546076292241e-06,1.537334259946395371e-06,1.562129973816498502e-06 +0.000000000000000000e+00,2.118826751186524260e-08,4.237653502373048520e-08,6.356480253559572449e-08,8.475307004746095716e-08,1.059413375593261898e-07,1.271296050711914225e-07,1.483178725830566684e-07,1.695061400949219143e-07,1.906944076067871602e-07,2.118826751186524061e-07,2.330709426305176520e-07,2.542592101423828979e-07,2.754474776542481439e-07,2.966357451661133898e-07,3.178240126779786357e-07,3.390122801898438816e-07,3.602005477017091275e-07,3.813888152135743734e-07,4.025770827254396193e-07,4.237653502373048652e-07,4.449536177491701111e-07,4.661418852610353570e-07,4.873301527729006029e-07,5.085184202847659018e-07,5.297066877966312006e-07,5.508949553084964995e-07,5.720832228203617983e-07,5.932714903322270972e-07,6.144597578440923960e-07,6.356480253559576948e-07,6.568362928678229937e-07,6.780245603796882925e-07,6.992128278915535914e-07,7.204010954034188902e-07,7.415893629152841891e-07,7.627776304271494879e-07,7.839658979390147868e-07,8.051541654508800856e-07,8.263424329627453845e-07,8.475307004746106833e-07,8.687189679864759822e-07,8.899072354983412810e-07,9.110955030102065799e-07,9.322837705220718787e-07,9.534720380339371775e-07,9.746603055458024764e-07,9.958485730576678811e-07,1.017036840569533286e-06,1.038225108081398691e-06,1.059413375593264095e-06,1.080601643105129500e-06,1.101789910616994905e-06,1.122978178128860309e-06,1.144166445640725714e-06,1.165354713152591119e-06,1.186542980664456524e-06,1.207731248176321928e-06,1.228919515688187333e-06,1.250107783200052738e-06,1.271296050711918143e-06,1.292484318223783547e-06,1.313672585735648952e-06,1.334860853247514357e-06 +0.000000000000000000e+00,2.118826751186240371e-08,4.237653502372480743e-08,6.356480253558721445e-08,8.475307004744962809e-08,1.059413375593120417e-07,1.271296050711744554e-07,1.483178725830368690e-07,1.695061400948992827e-07,1.906944076067616963e-07,2.118826751186241099e-07,2.330709426304865236e-07,2.542592101423489637e-07,2.754474776542114038e-07,2.966357451660738439e-07,3.178240126779362840e-07,3.390122801897987241e-07,3.602005477016611642e-07,3.813888152135236043e-07,4.025770827253860445e-07,4.237653502372484846e-07,4.449536177491109247e-07,4.661418852609733648e-07,4.873301527728358049e-07,5.085184202846982450e-07,5.297066877965606851e-07,5.508949553084231252e-07,5.720832228202855653e-07,5.932714903321480055e-07,6.144597578440104456e-07,6.356480253558728857e-07,6.568362928677353258e-07,6.780245603795977659e-07,6.992128278914602060e-07,7.204010954033226461e-07,7.415893629151850862e-07,7.627776304270475263e-07,7.839658979389099664e-07,8.051541654507724066e-07,8.263424329626348467e-07,8.475307004744972868e-07,8.687189679863597269e-07,8.899072354982221670e-07,9.110955030100846071e-07,9.322837705219470472e-07,9.534720380338094873e-07,9.746603055456718216e-07,9.958485730575340499e-07,1.017036840569396278e-06,1.038225108081258507e-06,1.059413375593120735e-06,1.080601643104982963e-06,1.101789910616845192e-06,1.122978178128707420e-06,1.144166445640569648e-06,1.165354713152431877e-06,1.186542980664294105e-06,1.207731248176156333e-06,1.228919515688018562e-06,1.250107783199880790e-06,1.271296050711743018e-06,1.292484318223605247e-06,1.313672585735467475e-06,1.334860853247329704e-06 +0.000000000000000000e+00,3.769645928468562912e-08,7.539291856937125824e-08,1.130893778540568940e-07,1.507858371387425429e-07,1.884822964234281919e-07,2.261787557081138409e-07,2.638752149927994899e-07,3.015716742774851388e-07,3.392681335621707878e-07,3.769645928468564368e-07,4.146610521315420857e-07,4.523575114162277347e-07,4.900539707009133837e-07,5.277504299855989797e-07,5.654468892702845758e-07,6.031433485549701718e-07,6.408398078396557678e-07,6.785362671243413639e-07,7.162327264090269599e-07,7.539291856937125559e-07,7.916256449783981519e-07,8.293221042630837480e-07,8.670185635477693440e-07,9.047150228324549400e-07,9.424114821171405361e-07,9.801079414018261321e-07,1.017804400686511834e-06,1.055500859971197536e-06,1.093197319255883238e-06,1.130893778540568940e-06,1.168590237825254642e-06,1.206286697109940344e-06,1.243983156394626045e-06,1.281679615679311747e-06,1.319376074963997449e-06,1.357072534248683151e-06,1.394768993533368853e-06,1.432465452818054555e-06,1.470161912102740257e-06,1.507858371387425959e-06,1.545554830672111661e-06,1.583251289956797363e-06,1.620947749241483065e-06,1.658644208526168767e-06,1.696340667810854468e-06,1.734037127095540170e-06,1.771733586380225872e-06,1.809430045664911574e-06,1.847126504949597276e-06,1.884822964234282978e-06,1.922519423518968680e-06,1.960215882803654382e-06,1.997912342088340084e-06,2.035608801373025786e-06,2.073305260657711488e-06,2.111001719942397189e-06,2.148698179227082891e-06,2.186394638511768593e-06,2.224091097796454295e-06,2.261787557081139997e-06,2.299484016365825699e-06,2.337180475650511401e-06,2.374876934935197103e-06 +0.000000000000000000e+00,3.766988182550751497e-08,7.533976365101502993e-08,1.130096454765225383e-07,1.506795273020300334e-07,1.883494091275375285e-07,2.260192909530450236e-07,2.636891727785525187e-07,3.013590546040600139e-07,3.390289364295675090e-07,3.766988182550750041e-07,4.143687000805824992e-07,4.520385819060899943e-07,4.897084637315974365e-07,5.273783455571049316e-07,5.650482273826124267e-07,6.027181092081199218e-07,6.403879910336274170e-07,6.780578728591349121e-07,7.157277546846424072e-07,7.533976365101499023e-07,7.910675183356573974e-07,8.287374001611648925e-07,8.664072819866723876e-07,9.040771638121798828e-07,9.417470456376873779e-07,9.794169274631948730e-07,1.017086809288702368e-06,1.054756691114209863e-06,1.092426572939717358e-06,1.130096454765224853e-06,1.167766336590732349e-06,1.205436218416239844e-06,1.243106100241747339e-06,1.280775982067254834e-06,1.318445863892762329e-06,1.356115745718269824e-06,1.393785627543777319e-06,1.431455509369284814e-06,1.469125391194792309e-06,1.506795273020299805e-06,1.544465154845807300e-06,1.582135036671314795e-06,1.619804918496822290e-06,1.657474800322329785e-06,1.695144682147837280e-06,1.732814563973344775e-06,1.770484445798852270e-06,1.808154327624359766e-06,1.845824209449867261e-06,1.883494091275374756e-06,1.921163973100882463e-06,1.958833854926390169e-06,1.996503736751897876e-06,2.034173618577405583e-06,2.071843500402913290e-06,2.109513382228420997e-06,2.147183264053928704e-06,2.184853145879436411e-06,2.222523027704944118e-06,2.260192909530451824e-06,2.297862791355959531e-06,2.335532673181467238e-06,2.373202555006974945e-06 +0.000000000000000000e+00,3.785805827884149183e-08,7.571611655768298366e-08,1.135741748365244755e-07,1.514322331153659673e-07,1.892902913942074592e-07,2.271483496730489510e-07,2.650064079518904428e-07,3.028644662307319347e-07,3.407225245095734265e-07,3.785805827884149183e-07,4.164386410672564102e-07,4.542966993460979020e-07,4.921547576249394468e-07,5.300128159037809915e-07,5.678708741826225363e-07,6.057289324614640811e-07,6.435869907403056258e-07,6.814450490191471706e-07,7.193031072979887154e-07,7.571611655768302602e-07,7.950192238556718049e-07,8.328772821345133497e-07,8.707353404133548945e-07,9.085933986921964392e-07,9.464514569710379840e-07,9.843095152498795288e-07,1.022167573528721074e-06,1.060025631807562618e-06,1.097883690086404163e-06,1.135741748365245708e-06,1.173599806644087253e-06,1.211457864922928797e-06,1.249315923201770342e-06,1.287173981480611887e-06,1.325032039759453432e-06,1.362890098038294976e-06,1.400748156317136521e-06,1.438606214595978066e-06,1.476464272874819611e-06,1.514322331153661156e-06,1.552180389432502700e-06,1.590038447711344245e-06,1.627896505990185790e-06,1.665754564269027335e-06,1.703612622547868879e-06,1.741470680826710424e-06,1.779328739105551969e-06,1.817186797384393514e-06,1.855044855663235059e-06,1.892902913942076603e-06,1.930760972220918148e-06,1.968619030499759481e-06,2.006477088778600814e-06,2.044335147057442147e-06,2.082193205336283480e-06,2.120051263615124813e-06,2.157909321893966146e-06,2.195767380172807479e-06,2.233625438451648812e-06,2.271483496730490145e-06,2.309341555009331478e-06,2.347199613288172811e-06,2.385057671567014144e-06 +0.000000000000000000e+00,3.768338439408486862e-08,7.536676878816973724e-08,1.130501531822546059e-07,1.507335375763394745e-07,1.884169219704243563e-07,2.261003063645092382e-07,2.637836907585941200e-07,3.014670751526790019e-07,3.391504595467638837e-07,3.768338439408487656e-07,4.145172283349336474e-07,4.522006127290185293e-07,4.898839971231033582e-07,5.275673815171881342e-07,5.652507659112729102e-07,6.029341503053576861e-07,6.406175346994424621e-07,6.783009190935272381e-07,7.159843034876120141e-07,7.536676878816967900e-07,7.913510722757815660e-07,8.290344566698663420e-07,8.667178410639511180e-07,9.044012254580358939e-07,9.420846098521206699e-07,9.797679942462054459e-07,1.017451378640290222e-06,1.055134763034374998e-06,1.092818147428459774e-06,1.130501531822544550e-06,1.168184916216629326e-06,1.205868300610714102e-06,1.243551685004798878e-06,1.281235069398883654e-06,1.318918453792968430e-06,1.356601838187053206e-06,1.394285222581137982e-06,1.431968606975222758e-06,1.469651991369307534e-06,1.507335375763392310e-06,1.545018760157477085e-06,1.582702144551561861e-06,1.620385528945646637e-06,1.658068913339731413e-06,1.695752297733816189e-06,1.733435682127900965e-06,1.771119066521985741e-06,1.808802450916070517e-06,1.846485835310155293e-06,1.884169219704240069e-06,1.921852604098325057e-06,1.959535988492410045e-06,1.997219372886495032e-06,2.034902757280580020e-06,2.072586141674665008e-06,2.110269526068749996e-06,2.147952910462834983e-06,2.185636294856919971e-06,2.223319679251004959e-06,2.261003063645089947e-06,2.298686448039174934e-06,2.336369832433259922e-06,2.374053216827344910e-06 +0.000000000000000000e+00,3.869032809325156085e-08,7.738065618650312170e-08,1.160709842797546826e-07,1.547613123730062434e-07,1.934516404662578043e-07,2.321419685595093651e-07,2.708322966527609260e-07,3.095226247460124868e-07,3.482129528392640477e-07,3.869032809325156085e-07,4.255936090257671694e-07,4.642839371190187302e-07,5.029742652122702911e-07,5.416645933055218519e-07,5.803549213987734128e-07,6.190452494920249736e-07,6.577355775852765345e-07,6.964259056785280953e-07,7.351162337717796562e-07,7.738065618650312170e-07,8.124968899582827779e-07,8.511872180515343387e-07,8.898775461447858996e-07,9.285678742380374604e-07,9.672582023312890213e-07,1.005948530424540582e-06,1.044638858517792143e-06,1.083329186611043704e-06,1.122019514704295265e-06,1.160709842797546826e-06,1.199400170890798386e-06,1.238090498984049947e-06,1.276780827077301508e-06,1.315471155170553069e-06,1.354161483263804630e-06,1.392851811357056191e-06,1.431542139450307751e-06,1.470232467543559312e-06,1.508922795636810873e-06,1.547613123730062434e-06,1.586303451823313995e-06,1.624993779916565556e-06,1.663684108009817117e-06,1.702374436103068677e-06,1.741064764196320238e-06,1.779755092289571799e-06,1.818445420382823360e-06,1.857135748476074921e-06,1.895826076569326482e-06,1.934516404662578043e-06,1.973206732755829815e-06,2.011897060849081588e-06,2.050587388942333360e-06,2.089277717035585133e-06,2.127968045128836906e-06,2.166658373222088678e-06,2.205348701315340451e-06,2.244039029408592223e-06,2.282729357501843996e-06,2.321419685595095769e-06,2.360110013688347541e-06,2.398800341781599314e-06,2.437490669874851086e-06 +0.000000000000000000e+00,3.951526011484509149e-08,7.903052022969018298e-08,1.185457803445352745e-07,1.580610404593803660e-07,1.975763005742254707e-07,2.370915606890705754e-07,2.766068208039156801e-07,3.161220809187607849e-07,3.556373410336058896e-07,3.951526011484509943e-07,4.346678612632960990e-07,4.741831213781412038e-07,5.136983814929863085e-07,5.532136416078313603e-07,5.927289017226764121e-07,6.322441618375214638e-07,6.717594219523665156e-07,7.112746820672115674e-07,7.507899421820566192e-07,7.903052022969016710e-07,8.298204624117467228e-07,8.693357225265917745e-07,9.088509826414368263e-07,9.483662427562818781e-07,9.878815028711269299e-07,1.027396762985971982e-06,1.066912023100817033e-06,1.106427283215662085e-06,1.145942543330507137e-06,1.185457803445352189e-06,1.224973063560197241e-06,1.264488323675042292e-06,1.304003583789887344e-06,1.343518843904732396e-06,1.383034104019577448e-06,1.422549364134422500e-06,1.462064624249267551e-06,1.501579884364112603e-06,1.541095144478957655e-06,1.580610404593802707e-06,1.620125664708647758e-06,1.659640924823492810e-06,1.699156184938337862e-06,1.738671445053182914e-06,1.778186705168027966e-06,1.817701965282873017e-06,1.857217225397718069e-06,1.896732485512563121e-06,1.936247745627408384e-06,1.975763005742253436e-06,2.015278265857098488e-06,2.054793525971943540e-06,2.094308786086788592e-06,2.133824046201633643e-06,2.173339306316478695e-06,2.212854566431323747e-06,2.252369826546168799e-06,2.291885086661013851e-06,2.331400346775858902e-06,2.370915606890703954e-06,2.410430867005549006e-06,2.449946127120394058e-06,2.489461387235239109e-06 +0.000000000000000000e+00,3.781375078899865366e-08,7.562750157799730731e-08,1.134412523669959543e-07,1.512550031559945882e-07,1.890687539449932220e-07,2.268825047339918558e-07,2.646962555229904896e-07,3.025100063119891234e-07,3.403237571009877572e-07,3.781375078899863910e-07,4.159512586789850248e-07,4.537650094679836586e-07,4.915787602569822924e-07,5.293925110459809791e-07,5.672062618349796659e-07,6.050200126239783526e-07,6.428337634129770393e-07,6.806475142019757261e-07,7.184612649909744128e-07,7.562750157799730996e-07,7.940887665689717863e-07,8.319025173579704731e-07,8.697162681469691598e-07,9.075300189359678465e-07,9.453437697249665333e-07,9.831575205139652200e-07,1.020971271302963907e-06,1.058785022091962594e-06,1.096598772880961280e-06,1.134412523669959967e-06,1.172226274458958654e-06,1.210040025247957340e-06,1.247853776036956027e-06,1.285667526825954714e-06,1.323481277614953401e-06,1.361295028403952087e-06,1.399108779192950774e-06,1.436922529981949461e-06,1.474736280770948148e-06,1.512550031559946834e-06,1.550363782348945521e-06,1.588177533137944208e-06,1.625991283926942895e-06,1.663805034715941581e-06,1.701618785504940268e-06,1.739432536293938955e-06,1.777246287082937642e-06,1.815060037871936328e-06,1.852873788660935015e-06,1.890687539449933702e-06,1.928501290238932389e-06,1.966315041027930864e-06,2.004128791816929339e-06,2.041942542605927814e-06,2.079756293394926289e-06,2.117570044183924764e-06,2.155383794972923238e-06,2.193197545761921713e-06,2.231011296550920188e-06,2.268825047339918663e-06,2.306638798128917138e-06,2.344452548917915613e-06,2.382266299706914088e-06 +0.000000000000000000e+00,3.883456451316317504e-08,7.766912902632635008e-08,1.165036935394895185e-07,1.553382580526526737e-07,1.941728225658158289e-07,2.330073870789789841e-07,2.718419515921421128e-07,3.106765161053052415e-07,3.495110806184683702e-07,3.883456451316314989e-07,4.271802096447946276e-07,4.660147741579577563e-07,5.048493386711208851e-07,5.436839031842840138e-07,5.825184676974471425e-07,6.213530322106102712e-07,6.601875967237733999e-07,6.990221612369365286e-07,7.378567257500996574e-07,7.766912902632627861e-07,8.155258547764259148e-07,8.543604192895890435e-07,8.931949838027521722e-07,9.320295483159153009e-07,9.708641128290785355e-07,1.009698677342241770e-06,1.048533241855405005e-06,1.087367806368568239e-06,1.126202370881731474e-06,1.165036935394894709e-06,1.203871499908057943e-06,1.242706064421221178e-06,1.281540628934384412e-06,1.320375193447547647e-06,1.359209757960710881e-06,1.398044322473874116e-06,1.436878886987037351e-06,1.475713451500200585e-06,1.514548016013363820e-06,1.553382580526527054e-06,1.592217145039690289e-06,1.631051709552853524e-06,1.669886274066016758e-06,1.708720838579179993e-06,1.747555403092343227e-06,1.786389967605506462e-06,1.825224532118669697e-06,1.864059096631832931e-06,1.902893661144996166e-06,1.941728225658159612e-06,1.980562790171323059e-06,2.019397354684486505e-06,2.058231919197649951e-06,2.097066483710813398e-06,2.135901048223976844e-06,2.174735612737140290e-06,2.213570177250303737e-06,2.252404741763467183e-06,2.291239306276630629e-06,2.330073870789794076e-06,2.368908435302957522e-06,2.407742999816120968e-06,2.446577564329284415e-06 +0.000000000000000000e+00,3.769645928468848124e-08,7.539291856937696248e-08,1.130893778540654437e-07,1.507858371387539250e-07,1.884822964234424062e-07,2.261787557081308874e-07,2.638752149928193951e-07,3.015716742775079028e-07,3.392681335621964106e-07,3.769645928468849183e-07,4.146610521315734260e-07,4.523575114162619337e-07,4.900539707009504414e-07,5.277504299856390020e-07,5.654468892703275627e-07,6.031433485550161233e-07,6.408398078397046840e-07,6.785362671243932446e-07,7.162327264090818053e-07,7.539291856937703659e-07,7.916256449784589266e-07,8.293221042631474872e-07,8.670185635478360479e-07,9.047150228325246085e-07,9.424114821172131692e-07,9.801079414019017298e-07,1.017804400686590185e-06,1.055500859971278639e-06,1.093197319255967094e-06,1.130893778540655549e-06,1.168590237825344004e-06,1.206286697110032458e-06,1.243983156394720913e-06,1.281679615679409368e-06,1.319376074964097823e-06,1.357072534248786277e-06,1.394768993533474732e-06,1.432465452818163187e-06,1.470161912102851642e-06,1.507858371387540097e-06,1.545554830672228551e-06,1.583251289956917006e-06,1.620947749241605461e-06,1.658644208526293916e-06,1.696340667810982370e-06,1.734037127095670825e-06,1.771733586380359280e-06,1.809430045665047735e-06,1.847126504949736189e-06,1.884822964234424644e-06,1.922519423519113099e-06,1.960215882803801342e-06,1.997912342088489585e-06,2.035608801373177828e-06,2.073305260657866071e-06,2.111001719942554314e-06,2.148698179227242557e-06,2.186394638511930800e-06,2.224091097796619043e-06,2.261787557081307286e-06,2.299484016365995529e-06,2.337180475650683772e-06,2.374876934935372015e-06 +0.000000000000000000e+00,3.766988182551145235e-08,7.533976365102290469e-08,1.130096454765343570e-07,1.506795273020458094e-07,1.883494091275572750e-07,2.260192909530687406e-07,2.636891727785802061e-07,3.013590546040916717e-07,3.390289364296031373e-07,3.766988182551146029e-07,4.143687000806260685e-07,4.520385819061375340e-07,4.897084637316489996e-07,5.273783455571604123e-07,5.650482273826718249e-07,6.027181092081832375e-07,6.403879910336946502e-07,6.780578728592060628e-07,7.157277546847174755e-07,7.533976365102288881e-07,7.910675183357403008e-07,8.287374001612517134e-07,8.664072819867631260e-07,9.040771638122745387e-07,9.417470456377859513e-07,9.794169274632973640e-07,1.017086809288808882e-06,1.054756691114320401e-06,1.092426572939831920e-06,1.130096454765343438e-06,1.167766336590854957e-06,1.205436218416366475e-06,1.243106100241877994e-06,1.280775982067389512e-06,1.318445863892901031e-06,1.356115745718412549e-06,1.393785627543924068e-06,1.431455509369435586e-06,1.469125391194947105e-06,1.506795273020458623e-06,1.544465154845970142e-06,1.582135036671481660e-06,1.619804918496993179e-06,1.657474800322504697e-06,1.695144682148016216e-06,1.732814563973527734e-06,1.770484445799039253e-06,1.808154327624550771e-06,1.845824209450062290e-06,1.883494091275573808e-06,1.921163973101085327e-06,1.958833854926596846e-06,1.996503736752108364e-06,2.034173618577619883e-06,2.071843500403131401e-06,2.109513382228642920e-06,2.147183264054154438e-06,2.184853145879665957e-06,2.222523027705177475e-06,2.260192909530688994e-06,2.297862791356200512e-06,2.335532673181712031e-06,2.373202555007223549e-06 +0.000000000000000000e+00,3.781375078900060580e-08,7.562750157800121160e-08,1.134412523670018174e-07,1.512550031560024232e-07,1.890687539450030158e-07,2.268825047340036083e-07,2.646962555230042009e-07,3.025100063120047935e-07,3.403237571010053860e-07,3.781375078900059786e-07,4.159512586790065712e-07,4.537650094680071637e-07,4.915787602570077034e-07,5.293925110460082959e-07,5.672062618350088885e-07,6.050200126240094811e-07,6.428337634130100736e-07,6.806475142020106662e-07,7.184612649910112588e-07,7.562750157800118513e-07,7.940887665690124439e-07,8.319025173580130365e-07,8.697162681470136290e-07,9.075300189360142216e-07,9.453437697250148142e-07,9.831575205140154067e-07,1.020971271303015999e-06,1.058785022092016592e-06,1.096598772881017184e-06,1.134412523670017777e-06,1.172226274459018370e-06,1.210040025248018962e-06,1.247853776037019555e-06,1.285667526826020147e-06,1.323481277615020740e-06,1.361295028404021332e-06,1.399108779193021925e-06,1.436922529982022518e-06,1.474736280771023110e-06,1.512550031560023703e-06,1.550363782349024295e-06,1.588177533138024888e-06,1.625991283927025480e-06,1.663805034716026073e-06,1.701618785505026665e-06,1.739432536294027258e-06,1.777246287083027851e-06,1.815060037872028443e-06,1.852873788661029036e-06,1.890687539450029628e-06,1.928501290239030221e-06,1.966315041028030813e-06,2.004128791817031406e-06,2.041942542606031999e-06,2.079756293395032591e-06,2.117570044184033184e-06,2.155383794973033776e-06,2.193197545762034369e-06,2.231011296551034961e-06,2.268825047340035554e-06,2.306638798129036147e-06,2.344452548918036739e-06,2.382266299707037332e-06 +0.000000000000000000e+00,3.768338439408823690e-08,7.536676878817647380e-08,1.130501531822647041e-07,1.507335375763529211e-07,1.884169219704411382e-07,2.261003063645293552e-07,2.637836907586175723e-07,3.014670751527057893e-07,3.391504595467940063e-07,3.768338439408822234e-07,4.145172283349704404e-07,4.522006127290586575e-07,4.898839971231468745e-07,5.275673815172351445e-07,5.652507659113234145e-07,6.029341503054116845e-07,6.406175346994999545e-07,6.783009190935882245e-07,7.159843034876764944e-07,7.536676878817647644e-07,7.913510722758530344e-07,8.290344566699413044e-07,8.667178410640295744e-07,9.044012254581178444e-07,9.420846098522061143e-07,9.797679942462943843e-07,1.017451378640382760e-06,1.055134763034471136e-06,1.092818147428559512e-06,1.130501531822647888e-06,1.168184916216736264e-06,1.205868300610824640e-06,1.243551685004913015e-06,1.281235069399001391e-06,1.318918453793089767e-06,1.356601838187178143e-06,1.394285222581266519e-06,1.431968606975354895e-06,1.469651991369443271e-06,1.507335375763531646e-06,1.545018760157620022e-06,1.582702144551708398e-06,1.620385528945796774e-06,1.658068913339885150e-06,1.695752297733973526e-06,1.733435682128061902e-06,1.771119066522150277e-06,1.808802450916238653e-06,1.846485835310327029e-06,1.884169219704415405e-06,1.921852604098503781e-06,1.959535988492592157e-06,1.997219372886680533e-06,2.034902757280768909e-06,2.072586141674857284e-06,2.110269526068945660e-06,2.147952910463034036e-06,2.185636294857122412e-06,2.223319679251210788e-06,2.261003063645299164e-06,2.298686448039387540e-06,2.336369832433475915e-06,2.374053216827564291e-06 +0.000000000000000000e+00,3.869032809325510118e-08,7.738065618651020237e-08,1.160709842797652969e-07,1.547613123730203783e-07,1.934516404662754596e-07,2.321419685595305409e-07,2.708322966527855958e-07,3.095226247460406507e-07,3.482129528392957055e-07,3.869032809325507604e-07,4.255936090258058152e-07,4.642839371190608701e-07,5.029742652123159250e-07,5.416645933055709798e-07,5.803549213988260347e-07,6.190452494920810896e-07,6.577355775853361444e-07,6.964259056785911993e-07,7.351162337718462541e-07,7.738065618651013090e-07,8.124968899583563639e-07,8.511872180516114187e-07,8.898775461448664736e-07,9.285678742381215284e-07,9.672582023313764774e-07,1.005948530424631426e-06,1.044638858517886375e-06,1.083329186611141324e-06,1.122019514704396273e-06,1.160709842797651222e-06,1.199400170890906171e-06,1.238090498984161120e-06,1.276780827077416069e-06,1.315471155170671018e-06,1.354161483263925967e-06,1.392851811357180916e-06,1.431542139450435865e-06,1.470232467543690814e-06,1.508922795636945763e-06,1.547613123730200712e-06,1.586303451823455661e-06,1.624993779916710610e-06,1.663684108009965559e-06,1.702374436103220508e-06,1.741064764196475457e-06,1.779755092289730406e-06,1.818445420382985355e-06,1.857135748476240304e-06,1.895826076569495253e-06,1.934516404662750414e-06,1.973206732756005575e-06,2.011897060849260735e-06,2.050587388942515896e-06,2.089277717035771057e-06,2.127968045129026217e-06,2.166658373222281378e-06,2.205348701315536539e-06,2.244039029408791700e-06,2.282729357502046860e-06,2.321419685595302021e-06,2.360110013688557182e-06,2.398800341781812343e-06,2.437490669875067503e-06 +0.000000000000000000e+00,3.951526011484751347e-08,7.903052022969502695e-08,1.185457803445425404e-07,1.580610404593900539e-07,1.975763005742375674e-07,2.370915606890850808e-07,2.766068208039326208e-07,3.161220809187801607e-07,3.556373410336277007e-07,3.951526011484752406e-07,4.346678612633227806e-07,4.741831213781703205e-07,5.136983814930178605e-07,5.532136416078654533e-07,5.927289017227130462e-07,6.322441618375606391e-07,6.717594219524082320e-07,7.112746820672558249e-07,7.507899421821034178e-07,7.903052022969510106e-07,8.298204624117986035e-07,8.693357225266461964e-07,9.088509826414937893e-07,9.483662427563413822e-07,9.878815028711889751e-07,1.027396762986036568e-06,1.066912023100884161e-06,1.106427283215731754e-06,1.145942543330579347e-06,1.185457803445426939e-06,1.224973063560274532e-06,1.264488323675122125e-06,1.304003583789969718e-06,1.343518843904817311e-06,1.383034104019664904e-06,1.422549364134512497e-06,1.462064624249360090e-06,1.501579884364207683e-06,1.541095144479055275e-06,1.580610404593902868e-06,1.620125664708750461e-06,1.659640924823598054e-06,1.699156184938445647e-06,1.738671445053293240e-06,1.778186705168140833e-06,1.817701965282988426e-06,1.857217225397836019e-06,1.896732485512683611e-06,1.936247745627531204e-06,1.975763005742378797e-06,2.015278265857226390e-06,2.054793525972073983e-06,2.094308786086921576e-06,2.133824046201769169e-06,2.173339306316616762e-06,2.212854566431464354e-06,2.252369826546311947e-06,2.291885086661159540e-06,2.331400346776007133e-06,2.370915606890854726e-06,2.410430867005702319e-06,2.449946127120549912e-06,2.489461387235397505e-06 +0.000000000000000000e+00,3.665426653054744827e-08,7.330853306109489653e-08,1.099627995916423514e-07,1.466170661221898195e-07,1.832713326527372877e-07,2.199255991832847558e-07,2.565798657138322239e-07,2.932341322443796920e-07,3.298883987749271601e-07,3.665426653054746282e-07,4.031969318360220964e-07,4.398511983665695645e-07,4.765054648971170326e-07,5.131597314276645537e-07,5.498139979582120218e-07,5.864682644887594899e-07,6.231225310193069580e-07,6.597767975498544261e-07,6.964310640804018942e-07,7.330853306109493624e-07,7.697395971414968305e-07,8.063938636720442986e-07,8.430481302025917667e-07,8.797023967331392348e-07,9.163566632636867029e-07,9.530109297942341711e-07,9.896651963247816392e-07,1.026319462855329107e-06,1.062973729385876575e-06,1.099627995916424044e-06,1.136282262446971512e-06,1.172936528977518980e-06,1.209590795508066448e-06,1.246245062038613916e-06,1.282899328569161384e-06,1.319553595099708852e-06,1.356207861630256320e-06,1.392862128160803788e-06,1.429516394691351257e-06,1.466170661221898725e-06,1.502824927752446193e-06,1.539479194282993661e-06,1.576133460813541129e-06,1.612787727344088597e-06,1.649441993874636065e-06,1.686096260405183533e-06,1.722750526935731002e-06,1.759404793466278470e-06,1.796059059996825938e-06,1.832713326527373406e-06,1.869367593057920874e-06,1.906021859588468342e-06,1.942676126119015810e-06,1.979330392649563278e-06,2.015984659180110746e-06,2.052638925710658215e-06,2.089293192241205683e-06,2.125947458771753151e-06,2.162601725302300619e-06,2.199255991832848087e-06,2.235910258363395555e-06,2.272564524893943023e-06,2.309218791424490491e-06 +0.000000000000000000e+00,3.733209053903184444e-08,7.466418107806368887e-08,1.119962716170955267e-07,1.493283621561273513e-07,1.866604526951591759e-07,2.239925432341910004e-07,2.613246337732228515e-07,2.986567243122547025e-07,3.359888148512865536e-07,3.733209053903184047e-07,4.106529959293502557e-07,4.479850864683821068e-07,4.853171770074139578e-07,5.226492675464458089e-07,5.599813580854776599e-07,5.973134486245095110e-07,6.346455391635413620e-07,6.719776297025732131e-07,7.093097202416050641e-07,7.466418107806369152e-07,7.839739013196687662e-07,8.213059918587006173e-07,8.586380823977324684e-07,8.959701729367643194e-07,9.333022634757961705e-07,9.706343540148281274e-07,1.007966444553860190e-06,1.045298535092892253e-06,1.082630625631924316e-06,1.119962716170956379e-06,1.157294806709988441e-06,1.194626897249020504e-06,1.231958987788052567e-06,1.269291078327084630e-06,1.306623168866116693e-06,1.343955259405148756e-06,1.381287349944180818e-06,1.418619440483212881e-06,1.455951531022244944e-06,1.493283621561277007e-06,1.530615712100309070e-06,1.567947802639341132e-06,1.605279893178373195e-06,1.642611983717405258e-06,1.679944074256437321e-06,1.717276164795469384e-06,1.754608255334501446e-06,1.791940345873533509e-06,1.829272436412565572e-06,1.866604526951597635e-06,1.903936617490629698e-06,1.941268708029661760e-06,1.978600798568693823e-06,2.015932889107725886e-06,2.053264979646757949e-06,2.090597070185790012e-06,2.127929160724822075e-06,2.165261251263854137e-06,2.202593341802886200e-06,2.239925432341918263e-06,2.277257522880950326e-06,2.314589613419982389e-06,2.351921703959014451e-06 +0.000000000000000000e+00,3.858249895681157465e-08,7.716499791362314929e-08,1.157474968704347306e-07,1.543299958272463251e-07,1.929124947840579196e-07,2.314949937408695141e-07,2.700774926976810821e-07,3.086599916544926501e-07,3.472424906113042181e-07,3.858249895681157862e-07,4.244074885249273542e-07,4.629899874817389222e-07,5.015724864385504903e-07,5.401549853953620583e-07,5.787374843521736263e-07,6.173199833089851943e-07,6.559024822657967624e-07,6.944849812226083304e-07,7.330674801794198984e-07,7.716499791362314665e-07,8.102324780930430345e-07,8.488149770498546025e-07,8.873974760066661705e-07,9.259799749634777386e-07,9.645624739202892007e-07,1.003144972877100769e-06,1.041727471833912337e-06,1.080309970790723905e-06,1.118892469747535473e-06,1.157474968704347041e-06,1.196057467661158609e-06,1.234639966617970177e-06,1.273222465574781745e-06,1.311804964531593313e-06,1.350387463488404881e-06,1.388969962445216449e-06,1.427552461402028017e-06,1.466134960358839585e-06,1.504717459315651153e-06,1.543299958272462721e-06,1.581882457229274289e-06,1.620464956186085857e-06,1.659047455142897425e-06,1.697629954099708993e-06,1.736212453056520561e-06,1.774794952013332129e-06,1.813377450970143697e-06,1.851959949926955265e-06,1.890542448883766833e-06,1.929124947840578401e-06,1.967707446797389969e-06,2.006289945754201538e-06,2.044872444711013106e-06,2.083454943667824674e-06,2.122037442624636242e-06,2.160619941581447810e-06,2.199202440538259378e-06,2.237784939495070946e-06,2.276367438451882514e-06,2.314949937408694082e-06,2.353532436365505650e-06,2.392114935322317218e-06,2.430697434279128786e-06 +0.000000000000000000e+00,3.665426653054869896e-08,7.330853306109739793e-08,1.099627995916460969e-07,1.466170661221947959e-07,1.832713326527434816e-07,2.199255991832921673e-07,2.565798657138408530e-07,2.932341322443895388e-07,3.298883987749382245e-07,3.665426653054869102e-07,4.031969318360355959e-07,4.398511983665842817e-07,4.765054648971329674e-07,5.131597314276817061e-07,5.498139979582304447e-07,5.864682644887791834e-07,6.231225310193279221e-07,6.597767975498766607e-07,6.964310640804253994e-07,7.330853306109741381e-07,7.697395971415228767e-07,8.063938636720716154e-07,8.430481302026203541e-07,8.797023967331690927e-07,9.163566632637178314e-07,9.530109297942665701e-07,9.896651963248153087e-07,1.026319462855364047e-06,1.062973729385912786e-06,1.099627995916461525e-06,1.136282262447010263e-06,1.172936528977559002e-06,1.209590795508107741e-06,1.246245062038656479e-06,1.282899328569205218e-06,1.319553595099753957e-06,1.356207861630302695e-06,1.392862128160851434e-06,1.429516394691400173e-06,1.466170661221948911e-06,1.502824927752497650e-06,1.539479194283046389e-06,1.576133460813595127e-06,1.612787727344143866e-06,1.649441993874692605e-06,1.686096260405241343e-06,1.722750526935790082e-06,1.759404793466338821e-06,1.796059059996887559e-06,1.832713326527436298e-06,1.869367593057985037e-06,1.906021859588533775e-06,1.942676126119082726e-06,1.979330392649631888e-06,2.015984659180181050e-06,2.052638925710730212e-06,2.089293192241279375e-06,2.125947458771828537e-06,2.162601725302377699e-06,2.199255991832926861e-06,2.235910258363476023e-06,2.272564524894025186e-06,2.309218791424574348e-06 +0.000000000000000000e+00,3.733209053903386937e-08,7.466418107806773875e-08,1.119962716171016147e-07,1.493283621561355040e-07,1.866604526951693932e-07,2.239925432342032824e-07,2.613246337732371452e-07,2.986567243122710079e-07,3.359888148513048707e-07,3.733209053903387334e-07,4.106529959293725962e-07,4.479850864684064590e-07,4.853171770074403217e-07,5.226492675464741845e-07,5.599813580855080472e-07,5.973134486245419100e-07,6.346455391635757727e-07,6.719776297026096355e-07,7.093097202416434983e-07,7.466418107806773610e-07,7.839739013197112238e-07,8.213059918587450865e-07,8.586380823977789493e-07,8.959701729368128120e-07,9.333022634758466748e-07,9.706343540148806434e-07,1.007966444553914612e-06,1.045298535092948581e-06,1.082630625631982549e-06,1.119962716171016518e-06,1.157294806710050487e-06,1.194626897249084455e-06,1.231958987788118424e-06,1.269291078327152393e-06,1.306623168866186361e-06,1.343955259405220330e-06,1.381287349944254298e-06,1.418619440483288267e-06,1.455951531022322236e-06,1.493283621561356204e-06,1.530615712100390173e-06,1.567947802639424142e-06,1.605279893178458110e-06,1.642611983717492079e-06,1.679944074256526048e-06,1.717276164795560016e-06,1.754608255334593985e-06,1.791940345873627953e-06,1.829272436412661922e-06,1.866604526951695891e-06,1.903936617490729859e-06,1.941268708029763828e-06,1.978600798568797585e-06,2.015932889107831342e-06,2.053264979646865099e-06,2.090597070185898855e-06,2.127929160724932612e-06,2.165261251263966369e-06,2.202593341803000126e-06,2.239925432342033883e-06,2.277257522881067640e-06,2.314589613420101397e-06,2.351921703959135154e-06 +0.000000000000000000e+00,3.858249895681281873e-08,7.716499791362563745e-08,1.157474968704384628e-07,1.543299958272513014e-07,1.929124947840641400e-07,2.314949937408769785e-07,2.700774926976898171e-07,3.086599916545026557e-07,3.472424906113154943e-07,3.858249895681283328e-07,4.244074885249411714e-07,4.629899874817540100e-07,5.015724864385669015e-07,5.401549853953797401e-07,5.787374843521925787e-07,6.173199833090054173e-07,6.559024822658182558e-07,6.944849812226310944e-07,7.330674801794439330e-07,7.716499791362567716e-07,8.102324780930696101e-07,8.488149770498824487e-07,8.873974760066952873e-07,9.259799749635081259e-07,9.645624739203209645e-07,1.003144972877133803e-06,1.041727471833946642e-06,1.080309970790759480e-06,1.118892469747572319e-06,1.157474968704385157e-06,1.196057467661197996e-06,1.234639966618010835e-06,1.273222465574823673e-06,1.311804964531636512e-06,1.350387463488449350e-06,1.388969962445262189e-06,1.427552461402075027e-06,1.466134960358887866e-06,1.504717459315700705e-06,1.543299958272513543e-06,1.581882457229326382e-06,1.620464956186139220e-06,1.659047455142952059e-06,1.697629954099764897e-06,1.736212453056577736e-06,1.774794952013390575e-06,1.813377450970203413e-06,1.851959949927016252e-06,1.890542448883829090e-06,1.929124947840641929e-06,1.967707446797454767e-06,2.006289945754267606e-06,2.044872444711080445e-06,2.083454943667893283e-06,2.122037442624706122e-06,2.160619941581518960e-06,2.199202440538331799e-06,2.237784939495144638e-06,2.276367438451957476e-06,2.314949937408770315e-06,2.353532436365583153e-06,2.392114935322395992e-06,2.430697434279208830e-06 +0.000000000000000000e+00,3.450447708699985811e-08,6.900895417399971623e-08,1.035134312609995810e-07,1.380179083479994589e-07,1.725223854349993369e-07,2.070268625219992149e-07,2.415313396089991193e-07,2.760358166959990237e-07,3.105402937829989282e-07,3.450447708699988326e-07,3.795492479569987370e-07,4.140537250439986415e-07,4.485582021309985459e-07,4.830626792179984504e-07,5.175671563049983548e-07,5.520716333919982592e-07,5.865761104789981637e-07,6.210805875659980681e-07,6.555850646529979725e-07,6.900895417399978770e-07,7.245940188269977814e-07,7.590984959139976859e-07,7.936029730009975903e-07,8.281074500879974947e-07,8.626119271749973992e-07,8.971164042619973036e-07,9.316208813489972080e-07,9.661253584359971125e-07,1.000629835522997017e-06,1.035134312609996921e-06,1.069638789696996826e-06,1.104143266783996730e-06,1.138647743870996635e-06,1.173152220957996539e-06,1.207656698044996444e-06,1.242161175131996348e-06,1.276665652218996252e-06,1.311170129305996157e-06,1.345674606392996061e-06,1.380179083479995966e-06,1.414683560566995870e-06,1.449188037653995775e-06,1.483692514740995679e-06,1.518196991827995583e-06,1.552701468914995488e-06,1.587205946001995392e-06,1.621710423088995297e-06,1.656214900175995201e-06,1.690719377262995106e-06,1.725223854349995010e-06,1.759728331436994915e-06,1.794232808523994819e-06,1.828737285610994723e-06,1.863241762697994628e-06,1.897746239784994532e-06,1.932250716871994648e-06,1.966755193958994553e-06,2.001259671045994457e-06,2.035764148132994362e-06,2.070268625219994266e-06,2.104773102306994171e-06,2.139277579393994075e-06,2.173782056480993980e-06 +0.000000000000000000e+00,3.569154782616159629e-08,7.138309565232319257e-08,1.070746434784847822e-07,1.427661913046463587e-07,1.784577391308079351e-07,2.141492869569695115e-07,2.498408347831311144e-07,2.855323826092927173e-07,3.212239304354543202e-07,3.569154782616159231e-07,3.926070260877775261e-07,4.282985739139391290e-07,4.639901217401007319e-07,4.996816695662623348e-07,5.353732173924239377e-07,5.710647652185855406e-07,6.067563130447471435e-07,6.424478608709087464e-07,6.781394086970703493e-07,7.138309565232319522e-07,7.495225043493935551e-07,7.852140521755551580e-07,8.209056000017167609e-07,8.565971478278783638e-07,8.922886956540399667e-07,9.279802434802015696e-07,9.636717913063631725e-07,9.993633391325248813e-07,1.035054886958686590e-06,1.070746434784848299e-06,1.106437982611010008e-06,1.142129530437171716e-06,1.177821078263333425e-06,1.213512626089495134e-06,1.249204173915656843e-06,1.284895721741818552e-06,1.320587269567980260e-06,1.356278817394141969e-06,1.391970365220303678e-06,1.427661913046465387e-06,1.463353460872627095e-06,1.499045008698788804e-06,1.534736556524950513e-06,1.570428104351112222e-06,1.606119652177273931e-06,1.641811200003435639e-06,1.677502747829597348e-06,1.713194295655759057e-06,1.748885843481920766e-06,1.784577391308082474e-06,1.820268939134244183e-06,1.855960486960405892e-06,1.891652034786567601e-06,1.927343582612729310e-06,1.963035130438890807e-06,1.998726678265052304e-06,2.034418226091213801e-06,2.070109773917375298e-06,2.105801321743536795e-06,2.141492869569698292e-06,2.177184417395859789e-06,2.212875965222021286e-06,2.248567513048182783e-06 +0.000000000000000000e+00,3.632807290234385716e-08,7.265614580468771431e-08,1.089842187070315715e-07,1.453122916093754286e-07,1.816403645117192858e-07,2.179684374140631429e-07,2.542965103164070266e-07,2.906245832187509102e-07,3.269526561210947938e-07,3.632807290234386775e-07,3.996088019257825611e-07,4.359368748281264447e-07,4.722649477304703283e-07,5.085930206328142649e-07,5.449210935351582015e-07,5.812491664375021380e-07,6.175772393398460746e-07,6.539053122421900112e-07,6.902333851445339477e-07,7.265614580468778843e-07,7.628895309492218209e-07,7.992176038515657574e-07,8.355456767539096940e-07,8.718737496562536306e-07,9.082018225585975671e-07,9.445298954609415037e-07,9.808579683632854403e-07,1.017186041265629377e-06,1.053514114167973313e-06,1.089842187070317250e-06,1.126170259972661187e-06,1.162498332875005123e-06,1.198826405777349060e-06,1.235154478679692996e-06,1.271482551582036933e-06,1.307810624484380869e-06,1.344138697386724806e-06,1.380466770289068742e-06,1.416794843191412679e-06,1.453122916093756616e-06,1.489450988996100552e-06,1.525779061898444489e-06,1.562107134800788425e-06,1.598435207703132362e-06,1.634763280605476298e-06,1.671091353507820235e-06,1.707419426410164172e-06,1.743747499312508108e-06,1.780075572214852045e-06,1.816403645117195981e-06,1.852731718019539918e-06,1.889059790921883854e-06,1.925387863824227791e-06,1.961715936726571728e-06,1.998044009628915664e-06,2.034372082531259601e-06,2.070700155433603537e-06,2.107028228335947474e-06,2.143356301238291410e-06,2.179684374140635347e-06,2.216012447042979284e-06,2.252340519945323220e-06,2.288668592847667157e-06 +0.000000000000000000e+00,3.450447708700124778e-08,6.900895417400249556e-08,1.035134312610037367e-07,1.380179083480049646e-07,1.725223854350061926e-07,2.070268625220074205e-07,2.415313396090086484e-07,2.760358166960098763e-07,3.105402937830111043e-07,3.450447708700123322e-07,3.795492479570135601e-07,4.140537250440147881e-07,4.485582021310160160e-07,4.830626792180172968e-07,5.175671563050185777e-07,5.520716333920198586e-07,5.865761104790211394e-07,6.210805875660224203e-07,6.555850646530237012e-07,6.900895417400249820e-07,7.245940188270262629e-07,7.590984959140275438e-07,7.936029730010288246e-07,8.281074500880301055e-07,8.626119271750313864e-07,8.971164042620326672e-07,9.316208813490339481e-07,9.661253584360352290e-07,1.000629835523036616e-06,1.035134312610038002e-06,1.069638789697039389e-06,1.104143266784040776e-06,1.138647743871042163e-06,1.173152220958043549e-06,1.207656698045044936e-06,1.242161175132046323e-06,1.276665652219047710e-06,1.311170129306049096e-06,1.345674606393050483e-06,1.380179083480051870e-06,1.414683560567053257e-06,1.449188037654054643e-06,1.483692514741056030e-06,1.518196991828057417e-06,1.552701468915058804e-06,1.587205946002060190e-06,1.621710423089061577e-06,1.656214900176062964e-06,1.690719377263064351e-06,1.725223854350065737e-06,1.759728331437067124e-06,1.794232808524068511e-06,1.828737285611069898e-06,1.863241762698071284e-06,1.897746239785072671e-06,1.932250716872074270e-06,1.966755193959075868e-06,2.001259671046077467e-06,2.035764148133079065e-06,2.070268625220080664e-06,2.104773102307082262e-06,2.139277579394083861e-06,2.173782056481085459e-06 +0.000000000000000000e+00,3.569154782616291977e-08,7.138309565232583955e-08,1.070746434784887527e-07,1.427661913046516526e-07,1.784577391308145525e-07,2.141492869569774525e-07,2.498408347831403259e-07,2.855323826093031994e-07,3.212239304354660728e-07,3.569154782616289463e-07,3.926070260877918197e-07,4.282985739139546932e-07,4.639901217401175666e-07,4.996816695662804401e-07,5.353732173924433135e-07,5.710647652186061870e-07,6.067563130447690604e-07,6.424478608709319339e-07,6.781394086970948074e-07,7.138309565232576808e-07,7.495225043494205543e-07,7.852140521755834277e-07,8.209056000017463012e-07,8.565971478279091746e-07,8.922886956540720481e-07,9.279802434802349215e-07,9.636717913063976891e-07,9.993633391325604567e-07,1.035054886958723224e-06,1.070746434784885992e-06,1.106437982611048759e-06,1.142129530437211527e-06,1.177821078263374295e-06,1.213512626089537062e-06,1.249204173915699830e-06,1.284895721741862597e-06,1.320587269568025365e-06,1.356278817394188132e-06,1.391970365220350900e-06,1.427661913046513668e-06,1.463353460872676435e-06,1.499045008698839203e-06,1.534736556525001970e-06,1.570428104351164738e-06,1.606119652177327505e-06,1.641811200003490273e-06,1.677502747829653041e-06,1.713194295655815808e-06,1.748885843481978576e-06,1.784577391308141343e-06,1.820268939134304111e-06,1.855960486960466878e-06,1.891652034786629646e-06,1.927343582612792414e-06,1.963035130438955181e-06,1.998726678265117949e-06,2.034418226091280716e-06,2.070109773917443484e-06,2.105801321743606251e-06,2.141492869569769019e-06,2.177184417395931787e-06,2.212875965222094554e-06,2.248567513048257322e-06 +0.000000000000000000e+00,3.632807290234439979e-08,7.265614580468879958e-08,1.089842187070331994e-07,1.453122916093775992e-07,1.816403645117220122e-07,2.179684374140664252e-07,2.542965103164108382e-07,2.906245832187552512e-07,3.269526561210996643e-07,3.632807290234440773e-07,3.996088019257884903e-07,4.359368748281329033e-07,4.722649477304773164e-07,5.085930206328216764e-07,5.449210935351660365e-07,5.812491664375103966e-07,6.175772393398547567e-07,6.539053122421991168e-07,6.902333851445434769e-07,7.265614580468878369e-07,7.628895309492321970e-07,7.992176038515765571e-07,8.355456767539209172e-07,8.718737496562652773e-07,9.082018225586096373e-07,9.445298954609539974e-07,9.808579683632983575e-07,1.017186041265642718e-06,1.053514114167987078e-06,1.089842187070331438e-06,1.126170259972675798e-06,1.162498332875020158e-06,1.198826405777364518e-06,1.235154478679708878e-06,1.271482551582053238e-06,1.307810624484397598e-06,1.344138697386741958e-06,1.380466770289086318e-06,1.416794843191430679e-06,1.453122916093775039e-06,1.489450988996119399e-06,1.525779061898463759e-06,1.562107134800808119e-06,1.598435207703152479e-06,1.634763280605496839e-06,1.671091353507841199e-06,1.707419426410185559e-06,1.743747499312529919e-06,1.780075572214874279e-06,1.816403645117218639e-06,1.852731718019563000e-06,1.889059790921907360e-06,1.925387863824251931e-06,1.961715936726596292e-06,1.998044009628940652e-06,2.034372082531285012e-06,2.070700155433629372e-06,2.107028228335973732e-06,2.143356301238318092e-06,2.179684374140662452e-06,2.216012447043006812e-06,2.252340519945351172e-06,2.288668592847695532e-06 +0.000000000000000000e+00,3.161803971537685750e-08,6.323607943075371500e-08,9.485411914613056588e-08,1.264721588615074035e-07,1.580901985768842412e-07,1.897082382922610788e-07,2.213262780076379165e-07,2.529443177230147541e-07,2.845623574383915653e-07,3.161803971537683765e-07,3.477984368691451876e-07,3.794164765845219988e-07,4.110345162998988100e-07,4.426525560152756212e-07,4.742705957306524323e-07,5.058886354460291906e-07,5.375066751614059488e-07,5.691247148767827070e-07,6.007427545921594653e-07,6.323607943075362235e-07,6.639788340229129817e-07,6.955968737382897400e-07,7.272149134536664982e-07,7.588329531690432565e-07,7.904509928844200147e-07,8.220690325997967729e-07,8.536870723151735312e-07,8.853051120305502894e-07,9.169231517459270476e-07,9.485411914613038059e-07,9.801592311766804582e-07,1.011777270892057111e-06,1.043395310607433763e-06,1.075013350322810415e-06,1.106631390038187068e-06,1.138249429753563720e-06,1.169867469468940372e-06,1.201485509184317025e-06,1.233103548899693677e-06,1.264721588615070329e-06,1.296339628330446982e-06,1.327957668045823634e-06,1.359575707761200287e-06,1.391193747476576939e-06,1.422811787191953591e-06,1.454429826907330244e-06,1.486047866622706896e-06,1.517665906338083548e-06,1.549283946053460201e-06,1.580901985768836853e-06,1.612520025484213505e-06,1.644138065199590158e-06,1.675756104914966810e-06,1.707374144630343462e-06,1.738992184345720115e-06,1.770610224061096767e-06,1.802228263776473420e-06,1.833846303491850072e-06,1.865464343207226724e-06,1.897082382922603377e-06,1.928700422637980029e-06,1.960318462353356681e-06,1.991936502068733334e-06 +0.000000000000000000e+00,3.313296195533575161e-08,6.626592391067150322e-08,9.939888586600726145e-08,1.325318478213430329e-07,1.656648097766788044e-07,1.987977717320145758e-07,2.319307336873503473e-07,2.650636956426861188e-07,2.981966575980218902e-07,3.313296195533576617e-07,3.644625815086934332e-07,3.975955434640292046e-07,4.307285054193649761e-07,4.638614673747007476e-07,4.969944293300365190e-07,5.301273912853723434e-07,5.632603532407081678e-07,5.963933151960439922e-07,6.295262771513798166e-07,6.626592391067156410e-07,6.957922010620514655e-07,7.289251630173872899e-07,7.620581249727231143e-07,7.951910869280589387e-07,8.283240488833947631e-07,8.614570108387305875e-07,8.945899727940664119e-07,9.277229347494022363e-07,9.608558967047380607e-07,9.939888586600738851e-07,1.027121820615409709e-06,1.060254782570745534e-06,1.093387744526081358e-06,1.126520706481417183e-06,1.159653668436753007e-06,1.192786630392088832e-06,1.225919592347424656e-06,1.259052554302760480e-06,1.292185516258096305e-06,1.325318478213432129e-06,1.358451440168767954e-06,1.391584402124103778e-06,1.424717364079439602e-06,1.457850326034775427e-06,1.490983287990111251e-06,1.524116249945447076e-06,1.557249211900782900e-06,1.590382173856118724e-06,1.623515135811454549e-06,1.656648097766790373e-06,1.689781059722126198e-06,1.722914021677462022e-06,1.756046983632797846e-06,1.789179945588133671e-06,1.822312907543469495e-06,1.855445869498805320e-06,1.888578831454141144e-06,1.921711793409476968e-06,1.954844755364813005e-06,1.987977717320149041e-06,2.021110679275485077e-06,2.054243641230821113e-06,2.087376603186157149e-06 +0.000000000000000000e+00,3.329055044171889297e-08,6.658110088343778595e-08,9.987165132515667892e-08,1.331622017668755719e-07,1.664527522085944516e-07,1.997433026503133314e-07,2.330338530920322111e-07,2.663244035337510909e-07,2.996149539754699706e-07,3.329055044171888503e-07,3.661960548589077301e-07,3.994866053006266098e-07,4.327771557423454895e-07,4.660677061840643693e-07,4.993582566257833020e-07,5.326488070675022876e-07,5.659393575092212732e-07,5.992299079509402588e-07,6.325204583926592444e-07,6.658110088343782301e-07,6.991015592760972157e-07,7.323921097178162013e-07,7.656826601595351869e-07,7.989732106012541725e-07,8.322637610429731582e-07,8.655543114846921438e-07,8.988448619264111294e-07,9.321354123681301150e-07,9.654259628098491006e-07,9.987165132515680862e-07,1.032007063693287072e-06,1.065297614135006057e-06,1.098588164576725043e-06,1.131878715018444029e-06,1.165169265460163014e-06,1.198459815901882000e-06,1.231750366343600986e-06,1.265040916785319971e-06,1.298331467227038957e-06,1.331622017668757942e-06,1.364912568110476928e-06,1.398203118552195914e-06,1.431493668993914899e-06,1.464784219435633885e-06,1.498074769877352871e-06,1.531365320319071856e-06,1.564655870760790842e-06,1.597946421202509827e-06,1.631236971644228813e-06,1.664527522085947799e-06,1.697818072527666784e-06,1.731108622969385770e-06,1.764399173411104755e-06,1.797689723852823741e-06,1.830980274294542727e-06,1.864270824736261712e-06,1.897561375177980698e-06,1.930851925619699895e-06,1.964142476061419093e-06,1.997433026503138290e-06,2.030723576944857487e-06,2.064014127386576685e-06,2.097304677828295882e-06 +0.000000000000000000e+00,3.161803971537828687e-08,6.323607943075657373e-08,9.485411914613485398e-08,1.264721588615131210e-07,1.580901985768913880e-07,1.897082382922696550e-07,2.213262780076479220e-07,2.529443177230261890e-07,2.845623574384044825e-07,3.161803971537827760e-07,3.477984368691610695e-07,3.794164765845393630e-07,4.110345162999176565e-07,4.426525560152959499e-07,4.742705957306742434e-07,5.058886354460524840e-07,5.375066751614307245e-07,5.691247148768089651e-07,6.007427545921872056e-07,6.323607943075654461e-07,6.639788340229436867e-07,6.955968737383219272e-07,7.272149134537001678e-07,7.588329531690784083e-07,7.904509928844566489e-07,8.220690325998348894e-07,8.536870723152131300e-07,8.853051120305913705e-07,9.169231517459696110e-07,9.485411914613478516e-07,9.801592311767261980e-07,1.011777270892104544e-06,1.043395310607482891e-06,1.075013350322861237e-06,1.106631390038239584e-06,1.138249429753617930e-06,1.169867469468996277e-06,1.201485509184374623e-06,1.233103548899752969e-06,1.264721588615131316e-06,1.296339628330509662e-06,1.327957668045888009e-06,1.359575707761266355e-06,1.391193747476644701e-06,1.422811787192023048e-06,1.454429826907401394e-06,1.486047866622779741e-06,1.517665906338158087e-06,1.549283946053536434e-06,1.580901985768914780e-06,1.612520025484293126e-06,1.644138065199671473e-06,1.675756104915049819e-06,1.707374144630428166e-06,1.738992184345806512e-06,1.770610224061184859e-06,1.802228263776563205e-06,1.833846303491941551e-06,1.865464343207319898e-06,1.897082382922698244e-06,1.928700422638076591e-06,1.960318462353454937e-06,1.991936502068833284e-06 +0.000000000000000000e+00,3.313296195533706187e-08,6.626592391067412373e-08,9.939888586601117898e-08,1.325318478213482210e-07,1.656648097766852630e-07,1.987977717320223050e-07,2.319307336873593470e-07,2.650636956426963891e-07,2.981966575980334311e-07,3.313296195533704731e-07,3.644625815087075151e-07,3.975955434640445571e-07,4.307285054193815991e-07,4.638614673747186411e-07,4.969944293300556831e-07,5.301273912853926722e-07,5.632603532407296613e-07,5.963933151960666504e-07,6.295262771514036394e-07,6.626592391067406285e-07,6.957922010620776176e-07,7.289251630174146067e-07,7.620581249727515957e-07,7.951910869280885848e-07,8.283240488834255739e-07,8.614570108387625630e-07,8.945899727940995520e-07,9.277229347494365411e-07,9.608558967047734243e-07,9.939888586601103075e-07,1.027121820615447191e-06,1.060254782570784074e-06,1.093387744526120957e-06,1.126520706481457840e-06,1.159653668436794723e-06,1.192786630392131607e-06,1.225919592347468490e-06,1.259052554302805373e-06,1.292185516258142256e-06,1.325318478213479139e-06,1.358451440168816023e-06,1.391584402124152906e-06,1.424717364079489789e-06,1.457850326034826672e-06,1.490983287990163555e-06,1.524116249945500439e-06,1.557249211900837322e-06,1.590382173856174205e-06,1.623515135811511088e-06,1.656648097766847971e-06,1.689781059722184855e-06,1.722914021677521738e-06,1.756046983632858621e-06,1.789179945588195504e-06,1.822312907543532387e-06,1.855445869498869271e-06,1.888578831454206154e-06,1.921711793409543037e-06,1.954844755364879920e-06,1.987977717320216803e-06,2.021110679275553687e-06,2.054243641230890570e-06,2.087376603186227453e-06 +0.000000000000000000e+00,3.329055044171879371e-08,6.658110088343758742e-08,9.987165132515637452e-08,1.331622017668751484e-07,1.664527522085939222e-07,1.997433026503126961e-07,2.330338530920314700e-07,2.663244035337502438e-07,2.996149539754690177e-07,3.329055044171877915e-07,3.661960548589065654e-07,3.994866053006253393e-07,4.327771557423441131e-07,4.660677061840628870e-07,4.993582566257816079e-07,5.326488070675003818e-07,5.659393575092191556e-07,5.992299079509379295e-07,6.325204583926567033e-07,6.658110088343754772e-07,6.991015592760942511e-07,7.323921097178130249e-07,7.656826601595317988e-07,7.989732106012505726e-07,8.322637610429693465e-07,8.655543114846881204e-07,8.988448619264068942e-07,9.321354123681256681e-07,9.654259628098444419e-07,9.987165132515632158e-07,1.032007063693281990e-06,1.065297614135000764e-06,1.098588164576719537e-06,1.131878715018438311e-06,1.165169265460157085e-06,1.198459815901875859e-06,1.231750366343594633e-06,1.265040916785313407e-06,1.298331467227032181e-06,1.331622017668750954e-06,1.364912568110469728e-06,1.398203118552188502e-06,1.431493668993907276e-06,1.464784219435626050e-06,1.498074769877344824e-06,1.531365320319063598e-06,1.564655870760782371e-06,1.597946421202501145e-06,1.631236971644219919e-06,1.664527522085938693e-06,1.697818072527657467e-06,1.731108622969376241e-06,1.764399173411095015e-06,1.797689723852813788e-06,1.830980274294532562e-06,1.864270824736251336e-06,1.897561375177970110e-06,1.930851925619688884e-06,1.964142476061407658e-06,1.997433026503126432e-06,2.030723576944845205e-06,2.064014127386563979e-06,2.097304677828282753e-06 +0.000000000000000000e+00,2.827102710323599925e-08,5.654205420647199850e-08,8.481308130970799775e-08,1.130841084129439970e-07,1.413551355161799962e-07,1.696261626194159955e-07,1.978971897226519947e-07,2.261682168258879940e-07,2.544392439291239932e-07,2.827102710323599925e-07,3.109812981355959917e-07,3.392523252388319910e-07,3.675233523420679902e-07,3.957943794453039895e-07,4.240654065485399887e-07,4.523364336517759880e-07,4.806074607550119872e-07,5.088784878582479865e-07,5.371495149614839857e-07,5.654205420647199850e-07,5.936915691679559842e-07,6.219625962711919835e-07,6.502336233744279827e-07,6.785046504776639820e-07,7.067756775808999812e-07,7.350467046841359805e-07,7.633177317873719797e-07,7.915887588906079790e-07,8.198597859938439782e-07,8.481308130970799775e-07,8.764018402003159767e-07,9.046728673035519760e-07,9.329438944067879752e-07,9.612149215100239745e-07,9.894859486132599737e-07,1.017756975716495973e-06,1.046028002819731972e-06,1.074299029922967971e-06,1.102570057026203971e-06,1.130841084129439970e-06,1.159112111232675969e-06,1.187383138335911968e-06,1.215654165439147968e-06,1.243925192542383967e-06,1.272196219645619966e-06,1.300467246748855965e-06,1.328738273852091965e-06,1.357009300955327964e-06,1.385280328058563963e-06,1.413551355161799962e-06,1.441822382265035962e-06,1.470093409368271961e-06,1.498364436471507960e-06,1.526635463574743959e-06,1.554906490677979959e-06,1.583177517781215958e-06,1.611448544884451957e-06,1.639719571987687956e-06,1.667990599090923956e-06,1.696261626194159955e-06,1.724532653297395954e-06,1.752803680400631953e-06,1.781074707503867953e-06 +0.000000000000000000e+00,2.998983714523388068e-08,5.997967429046776136e-08,8.996951143570164204e-08,1.199593485809355227e-07,1.499491857261693902e-07,1.799390228714032576e-07,2.099288600166371250e-07,2.399186971618709925e-07,2.699085343071048599e-07,2.998983714523387274e-07,3.298882085975725948e-07,3.598780457428064623e-07,3.898678828880403297e-07,4.198577200332741972e-07,4.498475571785080646e-07,4.798373943237418791e-07,5.098272314689756407e-07,5.398170686142094022e-07,5.698069057594431638e-07,5.997967429046769254e-07,6.297865800499106869e-07,6.597764171951444485e-07,6.897662543403782101e-07,7.197560914856119716e-07,7.497459286308457332e-07,7.797357657760794947e-07,8.097256029213132563e-07,8.397154400665470179e-07,8.697052772117807794e-07,8.996951143570145410e-07,9.296849515022483026e-07,9.596747886474820641e-07,9.896646257927158257e-07,1.019654462937949587e-06,1.049644300083183349e-06,1.079634137228417110e-06,1.109623974373650872e-06,1.139613811518884634e-06,1.169603648664118395e-06,1.199593485809352157e-06,1.229583322954585918e-06,1.259573160099819680e-06,1.289562997245053441e-06,1.319552834390287203e-06,1.349542671535520964e-06,1.379532508680754726e-06,1.409522345825988488e-06,1.439512182971222249e-06,1.469502020116456011e-06,1.499491857261689772e-06,1.529481694406923534e-06,1.559471531552157295e-06,1.589461368697391057e-06,1.619451205842624819e-06,1.649441042987858580e-06,1.679430880133092342e-06,1.709420717278326103e-06,1.739410554423559865e-06,1.769400391568793626e-06,1.799390228714027388e-06,1.829380065859261150e-06,1.859369903004494911e-06,1.889359740149728673e-06 +0.000000000000000000e+00,2.978191748634833701e-08,5.956383497269667401e-08,8.934575245904501764e-08,1.191276699453933613e-07,1.489095874317417049e-07,1.786915049180900353e-07,2.084734224044383657e-07,2.382553398907866960e-07,2.680372573771350264e-07,2.978191748634833568e-07,3.276010923498316872e-07,3.573830098361800176e-07,3.871649273225283480e-07,4.169468448088766784e-07,4.467287622952250088e-07,4.765106797815733392e-07,5.062925972679216695e-07,5.360745147542700529e-07,5.658564322406184362e-07,5.956383497269668195e-07,6.254202672133152029e-07,6.552021846996635862e-07,6.849841021860119695e-07,7.147660196723603528e-07,7.445479371587087362e-07,7.743298546450571195e-07,8.041117721314055028e-07,8.338936896177538862e-07,8.636756071041022695e-07,8.934575245904506528e-07,9.232394420767990361e-07,9.530213595631474195e-07,9.828032770494958028e-07,1.012585194535844186e-06,1.042367112022192569e-06,1.072149029508540953e-06,1.101930946994889336e-06,1.131712864481237719e-06,1.161494781967586103e-06,1.191276699453934486e-06,1.221058616940282869e-06,1.250840534426631253e-06,1.280622451912979636e-06,1.310404369399328019e-06,1.340186286885676403e-06,1.369968204372024786e-06,1.399750121858373169e-06,1.429532039344721553e-06,1.459313956831069936e-06,1.489095874317418319e-06,1.518877791803766703e-06,1.548659709290115086e-06,1.578441626776463469e-06,1.608223544262811853e-06,1.638005461749160236e-06,1.667787379235508619e-06,1.697569296721857003e-06,1.727351214208205386e-06,1.757133131694553769e-06,1.786915049180902153e-06,1.816696966667250536e-06,1.846478884153598919e-06,1.876260801639947303e-06 +0.000000000000000000e+00,2.827102710323574448e-08,5.654205420647148896e-08,8.481308130970723013e-08,1.130841084129429647e-07,1.413551355161786992e-07,1.696261626194144338e-07,1.978971897226501683e-07,2.261682168258859029e-07,2.544392439291216639e-07,2.827102710323574514e-07,3.109812981355932389e-07,3.392523252388290264e-07,3.675233523420648139e-07,3.957943794453006014e-07,4.240654065485363889e-07,4.523364336517721763e-07,4.806074607550079638e-07,5.088784878582437513e-07,5.371495149614795388e-07,5.654205420647153263e-07,5.936915691679511138e-07,6.219625962711869013e-07,6.502336233744226888e-07,6.785046504776584763e-07,7.067756775808942638e-07,7.350467046841300513e-07,7.633177317873658388e-07,7.915887588906016262e-07,8.198597859938374137e-07,8.481308130970732012e-07,8.764018402003089887e-07,9.046728673035447762e-07,9.329438944067805637e-07,9.612149215100163512e-07,9.894859486132521387e-07,1.017756975716487926e-06,1.046028002819723714e-06,1.074299029922959501e-06,1.102570057026195289e-06,1.130841084129431076e-06,1.159112111232666864e-06,1.187383138335902651e-06,1.215654165439138439e-06,1.243925192542374226e-06,1.272196219645610014e-06,1.300467246748845801e-06,1.328738273852081589e-06,1.357009300955317376e-06,1.385280328058553164e-06,1.413551355161788951e-06,1.441822382265024739e-06,1.470093409368260526e-06,1.498364436471496314e-06,1.526635463574732101e-06,1.554906490677967889e-06,1.583177517781203676e-06,1.611448544884439464e-06,1.639719571987675251e-06,1.667990599090911038e-06,1.696261626194146826e-06,1.724532653297382613e-06,1.752803680400618401e-06,1.781074707503854188e-06 +0.000000000000000000e+00,2.998983714523452919e-08,5.997967429046905838e-08,8.996951143570358756e-08,1.199593485809381168e-07,1.499491857261726459e-07,1.799390228714071751e-07,2.099288600166417043e-07,2.399186971618762335e-07,2.699085343071107362e-07,2.998983714523452389e-07,3.298882085975797417e-07,3.598780457428142444e-07,3.898678828880487471e-07,4.198577200332832498e-07,4.498475571785177525e-07,4.798373943237522553e-07,5.098272314689867580e-07,5.398170686142212607e-07,5.698069057594557634e-07,5.997967429046902661e-07,6.297865800499247688e-07,6.597764171951592716e-07,6.897662543403937743e-07,7.197560914856282770e-07,7.497459286308627797e-07,7.797357657760972824e-07,8.097256029213317852e-07,8.397154400665662879e-07,8.697052772118007906e-07,8.996951143570352933e-07,9.296849515022697960e-07,9.596747886475042987e-07,9.896646257927389073e-07,1.019654462937973516e-06,1.049644300083208125e-06,1.079634137228442733e-06,1.109623974373677342e-06,1.139613811518911950e-06,1.169603648664146559e-06,1.199593485809381168e-06,1.229583322954615776e-06,1.259573160099850385e-06,1.289562997245084993e-06,1.319552834390319602e-06,1.349542671535554211e-06,1.379532508680788819e-06,1.409522345826023428e-06,1.439512182971258036e-06,1.469502020116492645e-06,1.499491857261727254e-06,1.529481694406961862e-06,1.559471531552196471e-06,1.589461368697431079e-06,1.619451205842665688e-06,1.649441042987900296e-06,1.679430880133134905e-06,1.709420717278369514e-06,1.739410554423604122e-06,1.769400391568838731e-06,1.799390228714073339e-06,1.829380065859307948e-06,1.859369903004542557e-06,1.889359740149777165e-06 +0.000000000000000000e+00,2.978191748634748997e-08,5.956383497269497995e-08,8.934575245904247654e-08,1.191276699453899731e-07,1.489095874317374697e-07,1.786915049180849531e-07,2.084734224044324364e-07,2.382553398907799198e-07,2.680372573771274031e-07,2.978191748634748865e-07,3.276010923498223699e-07,3.573830098361698532e-07,3.871649273225173366e-07,4.169468448088648199e-07,4.467287622952123033e-07,4.765106797815597866e-07,5.062925972679072700e-07,5.360745147542548063e-07,5.658564322406023426e-07,5.956383497269498789e-07,6.254202672132974152e-07,6.552021846996449515e-07,6.849841021859924878e-07,7.147660196723400240e-07,7.445479371586875603e-07,7.743298546450350966e-07,8.041117721313826329e-07,8.338936896177301692e-07,8.636756071040777055e-07,8.934575245904252418e-07,9.232394420767727781e-07,9.530213595631203144e-07,9.828032770494678507e-07,1.012585194535815387e-06,1.042367112022162923e-06,1.072149029508510460e-06,1.101930946994857996e-06,1.131712864481205532e-06,1.161494781967553068e-06,1.191276699453900605e-06,1.221058616940248141e-06,1.250840534426595677e-06,1.280622451912943214e-06,1.310404369399290750e-06,1.340186286885638286e-06,1.369968204371985823e-06,1.399750121858333359e-06,1.429532039344680895e-06,1.459313956831028431e-06,1.489095874317375968e-06,1.518877791803723504e-06,1.548659709290071040e-06,1.578441626776418577e-06,1.608223544262766113e-06,1.638005461749113649e-06,1.667787379235461185e-06,1.697569296721808722e-06,1.727351214208156258e-06,1.757133131694503794e-06,1.786915049180851331e-06,1.816696966667198867e-06,1.846478884153546403e-06,1.876260801639893940e-06 +0.000000000000000000e+00,2.463344410949830378e-08,4.926688821899660756e-08,7.390033232849490803e-08,9.853377643799320189e-08,1.231672205474914825e-07,1.478006646569897631e-07,1.724341087664880437e-07,1.970675528759863244e-07,2.217009969854846050e-07,2.463344410949828591e-07,2.709678852044811133e-07,2.956013293139793674e-07,3.202347734234776216e-07,3.448682175329758757e-07,3.695016616424741299e-07,3.941351057519723840e-07,4.187685498614706382e-07,4.434019939709688923e-07,4.680354380804671465e-07,4.926688821899654006e-07,5.173023262994637077e-07,5.419357704089620148e-07,5.665692145184603219e-07,5.912026586279586290e-07,6.158361027374569361e-07,6.404695468469552432e-07,6.651029909564535503e-07,6.897364350659518573e-07,7.143698791754501644e-07,7.390033232849484715e-07,7.636367673944467786e-07,7.882702115039450857e-07,8.129036556134433928e-07,8.375370997229416999e-07,8.621705438324400070e-07,8.868039879419383141e-07,9.114374320514366211e-07,9.360708761609349282e-07,9.607043202704332353e-07,9.853377643799314365e-07,1.009971208489429638e-06,1.034604652598927839e-06,1.059238096708426040e-06,1.083871540817924241e-06,1.108504984927422443e-06,1.133138429036920644e-06,1.157771873146418845e-06,1.182405317255917046e-06,1.207038761365415247e-06,1.231672205474913449e-06,1.256305649584411650e-06,1.280939093693909851e-06,1.305572537803408052e-06,1.330205981912906253e-06,1.354839426022404455e-06,1.379472870131902656e-06,1.404106314241400857e-06,1.428739758350899058e-06,1.453373202460397260e-06,1.478006646569895461e-06,1.502640090679393662e-06,1.527273534788891863e-06,1.551906978898390064e-06 +0.000000000000000000e+00,2.648074346430253426e-08,5.296148692860506853e-08,7.944223039290760610e-08,1.059229738572101503e-07,1.324037173215126945e-07,1.588844607858152387e-07,1.853652042501177829e-07,2.118459477144203271e-07,2.383266911787228712e-07,2.648074346430254419e-07,2.912881781073280390e-07,3.177689215716306362e-07,3.442496650359332333e-07,3.707304085002358304e-07,3.972111519645384276e-07,4.236918954288410247e-07,4.501726388931436218e-07,4.766533823574462189e-07,5.031341258217488161e-07,5.296148692860514132e-07,5.560956127503540103e-07,5.825763562146566075e-07,6.090570996789592046e-07,6.355378431432618017e-07,6.620185866075643988e-07,6.884993300718669960e-07,7.149800735361695931e-07,7.414608170004721902e-07,7.679415604647747874e-07,7.944223039290773845e-07,8.209030473933799816e-07,8.473837908576825788e-07,8.738645343219851759e-07,9.003452777862877730e-07,9.268260212505903701e-07,9.533067647148929673e-07,9.797875081791956703e-07,1.006268251643498267e-06,1.032748995107800865e-06,1.059229738572103462e-06,1.085710482036406059e-06,1.112191225500708656e-06,1.138671968965011253e-06,1.165152712429313850e-06,1.191633455893616447e-06,1.218114199357919044e-06,1.244594942822221642e-06,1.271075686286524239e-06,1.297556429750826836e-06,1.324037173215129433e-06,1.350517916679432030e-06,1.376998660143734627e-06,1.403479403608037224e-06,1.429960147072339821e-06,1.456440890536642419e-06,1.482921634000945016e-06,1.509402377465247613e-06,1.535883120929550210e-06,1.562363864393852807e-06,1.588844607858155404e-06,1.615325351322458001e-06,1.641806094786760599e-06,1.668286838251063196e-06 +0.000000000000000000e+00,2.597903661745517751e-08,5.195807323491035502e-08,7.793710985236553914e-08,1.039161464698207233e-07,1.298951830872759074e-07,1.558742197047310783e-07,1.818532563221862492e-07,2.078322929396414201e-07,2.338113295570965910e-07,2.597903661745517618e-07,2.857694027920069327e-07,3.117484394094621036e-07,3.377274760269172745e-07,3.637065126443724454e-07,3.896855492618276163e-07,4.156645858792827872e-07,4.416436224967379581e-07,4.676226591141931290e-07,4.936016957316483528e-07,5.195807323491036296e-07,5.455597689665589063e-07,5.715388055840141831e-07,5.975178422014694599e-07,6.234968788189247366e-07,6.494759154363800134e-07,6.754549520538352902e-07,7.014339886712905669e-07,7.274130252887458437e-07,7.533920619062011205e-07,7.793710985236563973e-07,8.053501351411116740e-07,8.313291717585669508e-07,8.573082083760222276e-07,8.832872449934775043e-07,9.092662816109327811e-07,9.352453182283880579e-07,9.612243548458433346e-07,9.872033914632986114e-07,1.013182428080753888e-06,1.039161464698209165e-06,1.065140501315664442e-06,1.091119537933119718e-06,1.117098574550574995e-06,1.143077611168030272e-06,1.169056647785485549e-06,1.195035684402940826e-06,1.221014721020396102e-06,1.246993757637851379e-06,1.272972794255306656e-06,1.298951830872761933e-06,1.324930867490217209e-06,1.350909904107672486e-06,1.376888940725127763e-06,1.402867977342583040e-06,1.428847013960038316e-06,1.454826050577493593e-06,1.480805087194948870e-06,1.506784123812404147e-06,1.532763160429859424e-06,1.558742197047314700e-06,1.584721233664769977e-06,1.610700270282225254e-06,1.636679306899680531e-06 +0.000000000000000000e+00,2.463344410949787696e-08,4.926688821899575391e-08,7.390033232849362425e-08,9.853377643799149459e-08,1.231672205474893649e-07,1.478006646569872485e-07,1.724341087664851321e-07,1.970675528759830156e-07,2.217009969854808992e-07,2.463344410949787828e-07,2.709678852044766664e-07,2.956013293139745499e-07,3.202347734234724335e-07,3.448682175329703171e-07,3.695016616424682006e-07,3.941351057519660842e-07,4.187685498614639678e-07,4.434019939709618514e-07,4.680354380804597349e-07,4.926688821899576715e-07,5.173023262994556609e-07,5.419357704089536504e-07,5.665692145184516398e-07,5.912026586279496293e-07,6.158361027374476187e-07,6.404695468469456082e-07,6.651029909564435976e-07,6.897364350659415871e-07,7.143698791754395765e-07,7.390033232849375660e-07,7.636367673944355554e-07,7.882702115039335449e-07,8.129036556134315343e-07,8.375370997229295238e-07,8.621705438324275132e-07,8.868039879419255027e-07,9.114374320514234921e-07,9.360708761609214816e-07,9.607043202704194710e-07,9.853377643799174605e-07,1.009971208489415450e-06,1.034604652598913439e-06,1.059238096708411429e-06,1.083871540817909418e-06,1.108504984927407408e-06,1.133138429036905397e-06,1.157771873146403387e-06,1.182405317255901376e-06,1.207038761365399366e-06,1.231672205474897355e-06,1.256305649584395344e-06,1.280939093693893334e-06,1.305572537803391323e-06,1.330205981912889313e-06,1.354839426022387302e-06,1.379472870131885292e-06,1.404106314241383281e-06,1.428739758350881271e-06,1.453373202460379260e-06,1.478006646569877250e-06,1.502640090679375239e-06,1.527273534788873228e-06,1.551906978898371218e-06 +0.000000000000000000e+00,2.648074346430217361e-08,5.296148692860434723e-08,7.944223039290652084e-08,1.059229738572086945e-07,1.324037173215108681e-07,1.588844607858130417e-07,1.853652042501152153e-07,2.118459477144173889e-07,2.383266911787195625e-07,2.648074346430217361e-07,2.912881781073239097e-07,3.177689215716260834e-07,3.442496650359282570e-07,3.707304085002304306e-07,3.972111519645326042e-07,4.236918954288347778e-07,4.501726388931369514e-07,4.766533823574391250e-07,5.031341258217412987e-07,5.296148692860434723e-07,5.560956127503456459e-07,5.825763562146478195e-07,6.090570996789499931e-07,6.355378431432521667e-07,6.620185866075543403e-07,6.884993300718565139e-07,7.149800735361586876e-07,7.414608170004608612e-07,7.679415604647630348e-07,7.944223039290652084e-07,8.209030473933673820e-07,8.473837908576695556e-07,8.738645343219717292e-07,9.003452777862739029e-07,9.268260212505760765e-07,9.533067647148782501e-07,9.797875081791804237e-07,1.006268251643482597e-06,1.032748995107784771e-06,1.059229738572086945e-06,1.085710482036389118e-06,1.112191225500691292e-06,1.138671968964993465e-06,1.165152712429295639e-06,1.191633455893597813e-06,1.218114199357899986e-06,1.244594942822202160e-06,1.271075686286504333e-06,1.297556429750806507e-06,1.324037173215108681e-06,1.350517916679410854e-06,1.376998660143713028e-06,1.403479403608015202e-06,1.429960147072317375e-06,1.456440890536619549e-06,1.482921634000921722e-06,1.509402377465223896e-06,1.535883120929526070e-06,1.562363864393828243e-06,1.588844607858130417e-06,1.615325351322432590e-06,1.641806094786734764e-06,1.668286838251036938e-06 +0.000000000000000000e+00,2.597903661745372498e-08,5.195807323490744996e-08,7.793710985236117163e-08,1.039161464698148867e-07,1.298951830872686017e-07,1.558742197047223168e-07,1.818532563221760318e-07,2.078322929396297469e-07,2.338113295570834619e-07,2.597903661745372035e-07,2.857694027919909450e-07,3.117484394094446865e-07,3.377274760268984280e-07,3.637065126443521696e-07,3.896855492618059111e-07,4.156645858792596526e-07,4.416436224967133941e-07,4.676226591141671356e-07,4.936016957316208242e-07,5.195807323490745128e-07,5.455597689665282014e-07,5.715388055839818900e-07,5.975178422014355786e-07,6.234968788188892671e-07,6.494759154363429557e-07,6.754549520537966443e-07,7.014339886712503329e-07,7.274130252887040215e-07,7.533920619061577100e-07,7.793710985236113986e-07,8.053501351410650872e-07,8.313291717585187758e-07,8.573082083759724644e-07,8.832872449934261530e-07,9.092662816108798415e-07,9.352453182283335301e-07,9.612243548457872187e-07,9.872033914632408014e-07,1.013182428080694384e-06,1.039161464698147967e-06,1.065140501315601550e-06,1.091119537933055132e-06,1.117098574550508715e-06,1.143077611167962298e-06,1.169056647785415880e-06,1.195035684402869463e-06,1.221014721020323046e-06,1.246993757637776628e-06,1.272972794255230211e-06,1.298951830872683794e-06,1.324930867490137377e-06,1.350909904107590959e-06,1.376888940725044542e-06,1.402867977342498125e-06,1.428847013959951707e-06,1.454826050577405290e-06,1.480805087194858873e-06,1.506784123812312455e-06,1.532763160429766038e-06,1.558742197047219621e-06,1.584721233664673204e-06,1.610700270282126786e-06,1.636679306899580369e-06 +0.000000000000000000e+00,2.081372271753047470e-08,4.162744543506094940e-08,6.244116815259142079e-08,8.325489087012188556e-08,1.040686135876523503e-07,1.248823363051828151e-07,1.456960590227132799e-07,1.665097817402437447e-07,1.873235044577742094e-07,2.081372271753046742e-07,2.289509498928351390e-07,2.497646726103655773e-07,2.705783953278960156e-07,2.913921180454264539e-07,3.122058407629568922e-07,3.330195634804873305e-07,3.538332861980177688e-07,3.746470089155482071e-07,3.954607316330786454e-07,4.162744543506090837e-07,4.370881770681395220e-07,4.579018997856699603e-07,4.787156225032003457e-07,4.995293452207307310e-07,5.203430679382611164e-07,5.411567906557915018e-07,5.619705133733218871e-07,5.827842360908522725e-07,6.035979588083826579e-07,6.244116815259130432e-07,6.452254042434434286e-07,6.660391269609738140e-07,6.868528496785041993e-07,7.076665723960345847e-07,7.284802951135649700e-07,7.492940178310953554e-07,7.701077405486257408e-07,7.909214632661561261e-07,8.117351859836865115e-07,8.325489087012168969e-07,8.533626314187472822e-07,8.741763541362776676e-07,8.949900768538080530e-07,9.158037995713384383e-07,9.366175222888688237e-07,9.574312450063992091e-07,9.782449677239295944e-07,9.990586904414599798e-07,1.019872413158990365e-06,1.040686135876520751e-06,1.061499858594051136e-06,1.082313581311581521e-06,1.103127304029111907e-06,1.123941026746642292e-06,1.144754749464172677e-06,1.165568472181703063e-06,1.186382194899233448e-06,1.207195917616763833e-06,1.228009640334294219e-06,1.248823363051824604e-06,1.269637085769354990e-06,1.290450808486885375e-06,1.311264531204415760e-06 +0.000000000000000000e+00,2.274107307557169893e-08,4.548214615114339786e-08,6.822321922671509348e-08,9.096429230228678249e-08,1.137053653778584715e-07,1.364464384534301605e-07,1.591875115290018363e-07,1.819285846045735120e-07,2.046696576801451878e-07,2.274107307557168636e-07,2.501518038312885394e-07,2.728928769068602151e-07,2.956339499824318909e-07,3.183750230580035667e-07,3.411160961335752424e-07,3.638571692091469182e-07,3.865982422847185940e-07,4.093393153602902697e-07,4.320803884358619455e-07,4.548214615114336213e-07,4.775625345870052971e-07,5.003036076625769728e-07,5.230446807381486486e-07,5.457857538137203244e-07,5.685268268892920001e-07,5.912678999648636759e-07,6.140089730404353517e-07,6.367500461160070274e-07,6.594911191915787032e-07,6.822321922671503790e-07,7.049732653427220548e-07,7.277143384182937305e-07,7.504554114938654063e-07,7.731964845694370821e-07,7.959375576450087578e-07,8.186786307205804336e-07,8.414197037961521094e-07,8.641607768717237851e-07,8.869018499472954609e-07,9.096429230228671367e-07,9.323839960984388125e-07,9.551250691740103823e-07,9.778661422495818464e-07,1.000607215325153310e-06,1.023348288400724774e-06,1.046089361476296238e-06,1.068830434551867702e-06,1.091571507627439166e-06,1.114312580703010630e-06,1.137053653778582094e-06,1.159794726854153558e-06,1.182535799929725022e-06,1.205276873005296486e-06,1.228017946080867950e-06,1.250759019156439415e-06,1.273500092232010879e-06,1.296241165307582343e-06,1.318982238383153807e-06,1.341723311458725271e-06,1.364464384534296735e-06,1.387205457609868199e-06,1.409946530685439663e-06,1.432687603761011127e-06 +0.000000000000000000e+00,2.198356634531246682e-08,4.396713269062493364e-08,6.595069903593739715e-08,8.793426538124985404e-08,1.099178317265623109e-07,1.319013980718747678e-07,1.538849644171872380e-07,1.758685307624997081e-07,1.978520971078121782e-07,2.198356634531246483e-07,2.418192297984371185e-07,2.638027961437495886e-07,2.857863624890620587e-07,3.077699288343745288e-07,3.297534951796869990e-07,3.517370615249994691e-07,3.737206278703119392e-07,3.957041942156244094e-07,4.176877605609368795e-07,4.396713269062493496e-07,4.616548932515618197e-07,4.836384595968742369e-07,5.056220259421866541e-07,5.276055922874990713e-07,5.495891586328114885e-07,5.715727249781239057e-07,5.935562913234363229e-07,6.155398576687487401e-07,6.375234240140611572e-07,6.595069903593735744e-07,6.814905567046859916e-07,7.034741230499984088e-07,7.254576893953108260e-07,7.474412557406232432e-07,7.694248220859356604e-07,7.914083884312480776e-07,8.133919547765604948e-07,8.353755211218729119e-07,8.573590874671853291e-07,8.793426538124977463e-07,9.013262201578101635e-07,9.233097865031225807e-07,9.452933528484349979e-07,9.672769191937474151e-07,9.892604855390599381e-07,1.011244051884372461e-06,1.033227618229684984e-06,1.055211184574997507e-06,1.077194750920310030e-06,1.099178317265622553e-06,1.121161883610935077e-06,1.143145449956247600e-06,1.165129016301560123e-06,1.187112582646872646e-06,1.209096148992185169e-06,1.231079715337497692e-06,1.253063281682810215e-06,1.275046848028122738e-06,1.297030414373435261e-06,1.319013980718747784e-06,1.340997547064060307e-06,1.362981113409372830e-06,1.384964679754685353e-06 +0.000000000000000000e+00,2.081372271752975340e-08,4.162744543505950680e-08,6.244116815258926350e-08,8.325489087011902683e-08,1.040686135876487902e-07,1.248823363051785535e-07,1.456960590227083036e-07,1.665097817402380537e-07,1.873235044577678037e-07,2.081372271752975538e-07,2.289509498928273039e-07,2.497646726103570540e-07,2.705783953278868041e-07,2.913921180454165542e-07,3.122058407629463043e-07,3.330195634804760544e-07,3.538332861980058045e-07,3.746470089155355545e-07,3.954607316330653046e-07,4.162744543505950547e-07,4.370881770681248048e-07,4.579018997856545549e-07,4.787156225031842521e-07,4.995293452207140021e-07,5.203430679382437522e-07,5.411567906557735023e-07,5.619705133733032524e-07,5.827842360908330025e-07,6.035979588083627526e-07,6.244116815258925027e-07,6.452254042434222528e-07,6.660391269609520029e-07,6.868528496784817529e-07,7.076665723960115030e-07,7.284802951135412531e-07,7.492940178310710032e-07,7.701077405486007533e-07,7.909214632661305034e-07,8.117351859836602535e-07,8.325489087011900036e-07,8.533626314187197537e-07,8.741763541362495038e-07,8.949900768537792538e-07,9.158037995713090039e-07,9.366175222888387540e-07,9.574312450063685041e-07,9.782449677238982542e-07,9.990586904414280043e-07,1.019872413158957754e-06,1.040686135876487504e-06,1.061499858594017255e-06,1.082313581311547005e-06,1.103127304029076755e-06,1.123941026746606505e-06,1.144754749464136255e-06,1.165568472181666005e-06,1.186382194899195755e-06,1.207195917616725505e-06,1.228009640334255255e-06,1.248823363051785005e-06,1.269637085769314755e-06,1.290450808486844506e-06,1.311264531204374256e-06 +0.000000000000000000e+00,2.274107307557108682e-08,4.548214615114217364e-08,6.822321922671325384e-08,9.096429230228433404e-08,1.137053653778554142e-07,1.364464384534265077e-07,1.591875115289976011e-07,1.819285846045686945e-07,2.046696576801397880e-07,2.274107307557108814e-07,2.501518038312819748e-07,2.728928769068530683e-07,2.956339499824241617e-07,3.183750230579952552e-07,3.411160961335663486e-07,3.638571692091374420e-07,3.865982422847085355e-07,4.093393153602796289e-07,4.320803884358507223e-07,4.548214615114218158e-07,4.775625345869929092e-07,5.003036076625639497e-07,5.230446807381349902e-07,5.457857538137060307e-07,5.685268268892770712e-07,5.912678999648481117e-07,6.140089730404191522e-07,6.367500461159901927e-07,6.594911191915612332e-07,6.822321922671322737e-07,7.049732653427033141e-07,7.277143384182743546e-07,7.504554114938453951e-07,7.731964845694164356e-07,7.959375576449874761e-07,8.186786307205585166e-07,8.414197037961295571e-07,8.641607768717005976e-07,8.869018499472716381e-07,9.096429230228426786e-07,9.323839960984137191e-07,9.551250691739847596e-07,9.778661422495558001e-07,1.000607215325126841e-06,1.023348288400697881e-06,1.046089361476268922e-06,1.068830434551839962e-06,1.091571507627411003e-06,1.114312580702982043e-06,1.137053653778553084e-06,1.159794726854124124e-06,1.182535799929695165e-06,1.205276873005266205e-06,1.228017946080837246e-06,1.250759019156408286e-06,1.273500092231979327e-06,1.296241165307550367e-06,1.318982238383121408e-06,1.341723311458692448e-06,1.364464384534263489e-06,1.387205457609834529e-06,1.409946530685405570e-06,1.432687603760976610e-06 +0.000000000000000000e+00,2.198356634531080584e-08,4.396713269062161168e-08,6.595069903593242083e-08,8.793426538124323660e-08,1.099178317265540524e-07,1.319013980718648681e-07,1.538849644171756971e-07,1.758685307624865261e-07,1.978520971077973551e-07,2.198356634531081841e-07,2.418192297984190131e-07,2.638027961437298421e-07,2.857863624890406711e-07,3.077699288343515001e-07,3.297534951796623291e-07,3.517370615249731581e-07,3.737206278702839871e-07,3.957041942155948161e-07,4.176877605609056451e-07,4.396713269062164741e-07,4.616548932515273032e-07,4.836384595968381322e-07,5.056220259421489612e-07,5.276055922874597902e-07,5.495891586327706192e-07,5.715727249780814482e-07,5.935562913233922772e-07,6.155398576687031062e-07,6.375234240140139352e-07,6.595069903593247642e-07,6.814905567046355932e-07,7.034741230499464222e-07,7.254576893952572512e-07,7.474412557405680802e-07,7.694248220858789092e-07,7.914083884311897382e-07,8.133919547765005672e-07,8.353755211218113962e-07,8.573590874671222252e-07,8.793426538124330542e-07,9.013262201577438832e-07,9.233097865030547122e-07,9.452933528483655412e-07,9.672769191936764761e-07,9.892604855389875168e-07,1.011244051884298558e-06,1.033227618229609598e-06,1.055211184574920639e-06,1.077194750920231680e-06,1.099178317265542721e-06,1.121161883610853761e-06,1.143145449956164802e-06,1.165129016301475843e-06,1.187112582646786884e-06,1.209096148992097924e-06,1.231079715337408965e-06,1.253063281682720006e-06,1.275046848028031047e-06,1.297030414373342087e-06,1.319013980718653128e-06,1.340997547063964169e-06,1.362981113409275210e-06,1.384964679754586250e-06 +0.000000000000000000e+00,1.885899892976480226e-08,3.771799785952960452e-08,5.657699678929440679e-08,7.543599571905920905e-08,9.429499464882401131e-08,1.131539935785888136e-07,1.320129925083536291e-07,1.508719914381184446e-07,1.697309903678832601e-07,1.885899892976480756e-07,2.074489882274128911e-07,2.263079871571777066e-07,2.451669860869425221e-07,2.640259850167073640e-07,2.828849839464722060e-07,3.017439828762370480e-07,3.206029818060018899e-07,3.394619807357667319e-07,3.583209796655315739e-07,3.771799785952964158e-07,3.960389775250612578e-07,4.148979764548260998e-07,4.337569753845909417e-07,4.526159743143557837e-07,4.714749732441206257e-07,4.903339721738854676e-07,5.091929711036503096e-07,5.280519700334151516e-07,5.469109689631799935e-07,5.657699678929448355e-07,5.846289668227096775e-07,6.034879657524745194e-07,6.223469646822393614e-07,6.412059636120042034e-07,6.600649625417690453e-07,6.789239614715338873e-07,6.977829604012987293e-07,7.166419593310635712e-07,7.355009582608284132e-07,7.543599571905932552e-07,7.732189561203580971e-07,7.920779550501229391e-07,8.109369539798877811e-07,8.297959529096526230e-07,8.486549518394174650e-07,8.675139507691823070e-07,8.863729496989471489e-07,9.052319486287119909e-07,9.240909475584768329e-07,9.429499464882416748e-07,9.618089454180065168e-07,9.806679443477713588e-07,9.995269432775362007e-07,1.018385942207301043e-06,1.037244941137065885e-06,1.056103940066830727e-06,1.074962938996595569e-06,1.093821937926360411e-06,1.112680936856125253e-06,1.131539935785890094e-06,1.150398934715654936e-06,1.169257933645419778e-06,1.188116932575184620e-06 +0.000000000000000000e+00,1.885899892976422654e-08,3.771799785952845309e-08,5.657699678929267963e-08,7.543599571905690618e-08,9.429499464882113934e-08,1.131539935785853725e-07,1.320129925083496057e-07,1.508719914381138388e-07,1.697309903678780720e-07,1.885899892976423051e-07,2.074489882274065383e-07,2.263079871571707715e-07,2.451669860869350046e-07,2.640259850166992113e-07,2.828849839464634180e-07,3.017439828762276247e-07,3.206029818059918314e-07,3.394619807357560381e-07,3.583209796655202448e-07,3.771799785952844515e-07,3.960389775250486582e-07,4.148979764548128649e-07,4.337569753845770716e-07,4.526159743143412782e-07,4.714749732441054849e-07,4.903339721738696916e-07,5.091929711036338983e-07,5.280519700333981050e-07,5.469109689631623117e-07,5.657699678929265184e-07,5.846289668226907251e-07,6.034879657524549318e-07,6.223469646822191385e-07,6.412059636119833452e-07,6.600649625417475519e-07,6.789239614715117585e-07,6.977829604012759652e-07,7.166419593310401719e-07,7.355009582608043786e-07,7.543599571905685853e-07,7.732189561203327920e-07,7.920779550500969987e-07,8.109369539798612054e-07,8.297959529096254121e-07,8.486549518393896188e-07,8.675139507691538255e-07,8.863729496989180322e-07,9.052319486286822389e-07,9.240909475584464455e-07,9.429499464882106522e-07,9.618089454179747531e-07,9.806679443477387480e-07,9.995269432775027429e-07,1.018385942207266738e-06,1.037244941137030733e-06,1.056103940066794728e-06,1.074962938996558723e-06,1.093821937926322718e-06,1.112680936856086713e-06,1.131539935785850707e-06,1.150398934715614702e-06,1.169257933645378697e-06,1.188116932575142692e-06 +0.000000000000000000e+00,3.615152595673599840e-08,7.230305191347199681e-08,1.084545778702079952e-07,1.446061038269439936e-07,1.807576297836799788e-07,2.169091557404159640e-07,2.530606816971519491e-07,2.892122076538879343e-07,3.253637336106239195e-07,3.615152595673599046e-07,3.976667855240958898e-07,4.338183114808318750e-07,4.699698374375678601e-07,5.061213633943037924e-07,5.422728893510397775e-07,5.784244153077757627e-07,6.145759412645117479e-07,6.507274672212477330e-07,6.868789931779837182e-07,7.230305191347197034e-07,7.591820450914556885e-07,7.953335710481916737e-07,8.314850970049276589e-07,8.676366229616636440e-07,9.037881489183996292e-07,9.399396748751356144e-07,9.760912008318715996e-07,1.012242726788607585e-06,1.048394252745343570e-06,1.084545778702079555e-06,1.120697304658815540e-06,1.156848830615551525e-06,1.193000356572287511e-06,1.229151882529023496e-06,1.265303408485759481e-06,1.301454934442495466e-06,1.337606460399231451e-06,1.373757986355967436e-06,1.409909512312703422e-06,1.446061038269439407e-06,1.482212564226175392e-06,1.518364090182911377e-06,1.554515616139647362e-06,1.590667142096383347e-06,1.626818668053119333e-06,1.662970194009855318e-06,1.699121719966591303e-06,1.735273245923327288e-06,1.771424771880063273e-06,1.807576297836799258e-06,1.843727823793535244e-06,1.879879349750271229e-06,1.916030875707007214e-06,1.952182401663743199e-06,1.988333927620479184e-06,2.024485453577215169e-06,2.060636979533951155e-06,2.096788505490687140e-06,2.132940031447423125e-06,2.169091557404159110e-06,2.205243083360895095e-06,2.241394609317631080e-06,2.277546135274367066e-06 +0.000000000000000000e+00,3.682820411618043811e-08,7.365640823236087623e-08,1.104846123485413210e-07,1.473128164647217789e-07,1.841410205809022369e-07,2.209692246970826949e-07,2.577974288132631528e-07,2.946256329294436108e-07,3.314538370456240688e-07,3.682820411618045267e-07,4.051102452779849847e-07,4.419384493941654427e-07,4.787666535103458477e-07,5.155948576265261998e-07,5.524230617427065519e-07,5.892512658588869039e-07,6.260794699750672560e-07,6.629076740912476081e-07,6.997358782074279602e-07,7.365640823236083123e-07,7.733922864397886644e-07,8.102204905559690165e-07,8.470486946721493685e-07,8.838768987883297206e-07,9.207051029045100727e-07,9.575333070206904248e-07,9.943615111368707769e-07,1.031189715253051129e-06,1.068017919369231481e-06,1.104846123485411833e-06,1.141674327601592185e-06,1.178502531717772537e-06,1.215330735833952889e-06,1.252158939950133241e-06,1.288987144066313594e-06,1.325815348182493946e-06,1.362643552298674298e-06,1.399471756414854650e-06,1.436299960531035002e-06,1.473128164647215354e-06,1.509956368763395706e-06,1.546784572879576058e-06,1.583612776995756410e-06,1.620440981111936762e-06,1.657269185228117114e-06,1.694097389344297467e-06,1.730925593460477819e-06,1.767753797576658171e-06,1.804582001692838523e-06,1.841410205809018875e-06,1.878238409925199227e-06,1.915066614041379579e-06,1.951894818157559931e-06,1.988723022273740283e-06,2.025551226389920635e-06,2.062379430506100987e-06,2.099207634622281339e-06,2.136035838738461692e-06,2.172864042854642044e-06,2.209692246970822396e-06,2.246520451087002748e-06,2.283348655203183100e-06,2.320176859319363452e-06 +0.000000000000000000e+00,3.705057503425373997e-08,7.410115006850747994e-08,1.111517251027612133e-07,1.482023001370149334e-07,1.852528751712686535e-07,2.223034502055223736e-07,2.593540252397760673e-07,2.964046002740297609e-07,3.334551753082834546e-07,3.705057503425371482e-07,4.075563253767908419e-07,4.446069004110445355e-07,4.816574754452982292e-07,5.187080504795519228e-07,5.557586255138056164e-07,5.928092005480593101e-07,6.298597755823130037e-07,6.669103506165666974e-07,7.039609256508203910e-07,7.410115006850740847e-07,7.780620757193277783e-07,8.151126507535814720e-07,8.521632257878351656e-07,8.892138008220888593e-07,9.262643758563425529e-07,9.633149508905962465e-07,1.000365525924849834e-06,1.037416100959103422e-06,1.074466675993357010e-06,1.111517251027610598e-06,1.148567826061864185e-06,1.185618401096117773e-06,1.222668976130371361e-06,1.259719551164624949e-06,1.296770126198878536e-06,1.333820701233132124e-06,1.370871276267385712e-06,1.407921851301639300e-06,1.444972426335892888e-06,1.482023001370146475e-06,1.519073576404400063e-06,1.556124151438653651e-06,1.593174726472907239e-06,1.630225301507160826e-06,1.667275876541414414e-06,1.704326451575668002e-06,1.741377026609921590e-06,1.778427601644175177e-06,1.815478176678428765e-06,1.852528751712682353e-06,1.889579326746935941e-06,1.926629901781189528e-06,1.963680476815443116e-06,2.000731051849696704e-06,2.037781626883950292e-06,2.074832201918203880e-06,2.111882776952457467e-06,2.148933351986711055e-06,2.185983927020964643e-06,2.223034502055218231e-06,2.260085077089471818e-06,2.297135652123725406e-06,2.334186227157978994e-06 +0.000000000000000000e+00,3.638463391024064024e-08,7.276926782048128048e-08,1.091539017307219141e-07,1.455385356409625345e-07,1.819231695512031549e-07,2.183078034614437753e-07,2.546924373716843692e-07,2.910770712819249631e-07,3.274617051921655570e-07,3.638463391024061509e-07,4.002309730126467448e-07,4.366156069228873388e-07,4.730002408331279327e-07,5.093848747433685266e-07,5.457695086536091205e-07,5.821541425638497144e-07,6.185387764740903083e-07,6.549234103843309023e-07,6.913080442945714962e-07,7.276926782048120901e-07,7.640773121150526840e-07,8.004619460252932779e-07,8.368465799355338718e-07,8.732312138457744658e-07,9.096158477560150597e-07,9.460004816662556536e-07,9.823851155764961416e-07,1.018769749486736630e-06,1.055154383396977118e-06,1.091539017307217606e-06,1.127923651217458094e-06,1.164308285127698582e-06,1.200692919037939070e-06,1.237077552948179558e-06,1.273462186858420046e-06,1.309846820768660534e-06,1.346231454678901022e-06,1.382616088589141510e-06,1.419000722499381998e-06,1.455385356409622486e-06,1.491769990319862974e-06,1.528154624230103462e-06,1.564539258140343950e-06,1.600923892050584438e-06,1.637308525960824926e-06,1.673693159871065414e-06,1.710077793781305902e-06,1.746462427691546390e-06,1.782847061601786878e-06,1.819231695512027366e-06,1.855616329422267855e-06,1.892000963332508343e-06,1.928385597242748831e-06,1.964770231152989319e-06,2.001154865063229807e-06,2.037539498973470295e-06,2.073924132883710783e-06,2.110308766793951271e-06,2.146693400704191759e-06,2.183078034614432247e-06,2.219462668524672735e-06,2.255847302434913223e-06,2.292231936345153711e-06 +0.000000000000000000e+00,3.702193414552752403e-08,7.404386829105504805e-08,1.110658024365825721e-07,1.480877365821100961e-07,1.851096707276376334e-07,2.221316048731651706e-07,2.591535390186927079e-07,2.961754731642202451e-07,3.331974073097477824e-07,3.702193414552753197e-07,4.072412756008028569e-07,4.442632097463303942e-07,4.812851438918578785e-07,5.183070780373853099e-07,5.553290121829127413e-07,5.923509463284401727e-07,6.293728804739676040e-07,6.663948146194950354e-07,7.034167487650224668e-07,7.404386829105498982e-07,7.774606170560773296e-07,8.144825512016047609e-07,8.515044853471321923e-07,8.885264194926596237e-07,9.255483536381870551e-07,9.625702877837144865e-07,9.995922219292419179e-07,1.036614156074769349e-06,1.073636090220296781e-06,1.110658024365824212e-06,1.147679958511351643e-06,1.184701892656879075e-06,1.221723826802406506e-06,1.258745760947933938e-06,1.295767695093461369e-06,1.332789629238988800e-06,1.369811563384516232e-06,1.406833497530043663e-06,1.443855431675571094e-06,1.480877365821098526e-06,1.517899299966625957e-06,1.554921234112153389e-06,1.591943168257680820e-06,1.628965102403208251e-06,1.665987036548735683e-06,1.703008970694263114e-06,1.740030904839790545e-06,1.777052838985317977e-06,1.814074773130845408e-06,1.851096707276372840e-06,1.888118641421900271e-06,1.925140575567427702e-06,1.962162509712955134e-06,1.999184443858482565e-06,2.036206378004009997e-06,2.073228312149537428e-06,2.110250246295064859e-06,2.147272180440592291e-06,2.184294114586119722e-06,2.221316048731647153e-06,2.258337982877174585e-06,2.295359917022702016e-06,2.332381851168229448e-06 +0.000000000000000000e+00,3.654363153972953067e-08,7.308726307945906134e-08,1.096308946191885986e-07,1.461745261589181492e-07,1.827181576986476997e-07,2.192617892383772502e-07,2.558054207781068272e-07,2.923490523178364042e-07,3.288926838575659812e-07,3.654363153972955582e-07,4.019799469370251352e-07,4.385235784767547122e-07,4.750672100164842892e-07,5.116108415562138662e-07,5.481544730959434432e-07,5.846981046356730201e-07,6.212417361754025971e-07,6.577853677151321741e-07,6.943289992548617511e-07,7.308726307945913281e-07,7.674162623343209051e-07,8.039598938740504821e-07,8.405035254137800591e-07,8.770471569535096361e-07,9.135907884932392131e-07,9.501344200329687901e-07,9.866780515726983671e-07,1.023221683112427944e-06,1.059765314652157521e-06,1.096308946191887098e-06,1.132852577731616675e-06,1.169396209271346252e-06,1.205939840811075829e-06,1.242483472350805406e-06,1.279027103890534983e-06,1.315570735430264560e-06,1.352114366969994137e-06,1.388657998509723714e-06,1.425201630049453291e-06,1.461745261589182868e-06,1.498288893128912445e-06,1.534832524668642022e-06,1.571376156208371599e-06,1.607919787748101176e-06,1.644463419287830753e-06,1.681007050827560330e-06,1.717550682367289907e-06,1.754094313907019484e-06,1.790637945446749061e-06,1.827181576986478638e-06,1.863725208526208215e-06,1.900268840065937792e-06,1.936812471605667369e-06,1.973356103145396734e-06,2.009899734685126099e-06,2.046443366224855465e-06,2.082986997764584830e-06,2.119530629304314195e-06,2.156074260844043560e-06,2.192617892383772926e-06,2.229161523923502291e-06,2.265705155463231656e-06,2.302248787002961021e-06 +0.000000000000000000e+00,3.699868309360682282e-08,7.399736618721364565e-08,1.109960492808204751e-07,1.479947323744273178e-07,1.849934154680341604e-07,2.219920985616410031e-07,2.589907816552478458e-07,2.959894647488546885e-07,3.329881478424615311e-07,3.699868309360683738e-07,4.069855140296752165e-07,4.439841971232820592e-07,4.809828802168889018e-07,5.179815633104956916e-07,5.549802464041024813e-07,5.919789294977092710e-07,6.289776125913160608e-07,6.659762956849228505e-07,7.029749787785296402e-07,7.399736618721364300e-07,7.769723449657432197e-07,8.139710280593500095e-07,8.509697111529567992e-07,8.879683942465635889e-07,9.249670773401703787e-07,9.619657604337771684e-07,9.989644435273838523e-07,1.035963126620990536e-06,1.072961809714597220e-06,1.109960492808203904e-06,1.146959175901810588e-06,1.183957858995417272e-06,1.220956542089023955e-06,1.257955225182630639e-06,1.294953908276237323e-06,1.331952591369844007e-06,1.368951274463450691e-06,1.405949957557057375e-06,1.442948640650664059e-06,1.479947323744270742e-06,1.516946006837877426e-06,1.553944689931484110e-06,1.590943373025090794e-06,1.627942056118697478e-06,1.664940739212304162e-06,1.701939422305910846e-06,1.738938105399517529e-06,1.775936788493124213e-06,1.812935471586730897e-06,1.849934154680337581e-06,1.886932837773944265e-06,1.923931520867550949e-06,1.960930203961157633e-06,1.997928887054764316e-06,2.034927570148371000e-06,2.071926253241977684e-06,2.108924936335584368e-06,2.145923619429191052e-06,2.182922302522797736e-06,2.219920985616404420e-06,2.256919668710011103e-06,2.293918351803617787e-06,2.330917034897224471e-06 +0.000000000000000000e+00,3.723624642254118372e-08,7.447249284508236744e-08,1.117087392676235445e-07,1.489449856901647084e-07,1.861812321127058723e-07,2.234174785352470362e-07,2.606537249577881736e-07,2.978899713803293110e-07,3.351262178028704484e-07,3.723624642254115858e-07,4.095987106479527232e-07,4.468349570704938606e-07,4.840712034930349980e-07,5.213074499155761354e-07,5.585436963381172728e-07,5.957799427606584102e-07,6.330161891831995476e-07,6.702524356057406850e-07,7.074886820282818224e-07,7.447249284508229598e-07,7.819611748733640972e-07,8.191974212959052346e-07,8.564336677184463720e-07,8.936699141409875094e-07,9.309061605635286468e-07,9.681424069860697842e-07,1.005378653408610922e-06,1.042614899831152059e-06,1.079851146253693196e-06,1.117087392676234334e-06,1.154323639098775471e-06,1.191559885521316609e-06,1.228796131943857746e-06,1.266032378366398883e-06,1.303268624788940021e-06,1.340504871211481158e-06,1.377741117634022296e-06,1.414977364056563433e-06,1.452213610479104570e-06,1.489449856901645708e-06,1.526686103324186845e-06,1.563922349746727983e-06,1.601158596169269120e-06,1.638394842591810257e-06,1.675631089014351395e-06,1.712867335436892532e-06,1.750103581859433670e-06,1.787339828281974807e-06,1.824576074704515944e-06,1.861812321127057082e-06,1.899048567549598219e-06,1.936284813972139145e-06,1.973521060394680070e-06,2.010757306817220996e-06,2.047993553239761922e-06,2.085229799662302847e-06,2.122466046084843773e-06,2.159702292507384699e-06,2.196938538929925624e-06,2.234174785352466550e-06,2.271411031775007476e-06,2.308647278197548401e-06,2.345883524620089327e-06 +0.000000000000000000e+00,3.615152595673949903e-08,7.230305191347899806e-08,1.084545778702184905e-07,1.446061038269579697e-07,1.807576297836974488e-07,2.169091557404369280e-07,2.530606816971764072e-07,2.892122076539158864e-07,3.253637336106553656e-07,3.615152595673948447e-07,3.976667855241343239e-07,4.338183114808738031e-07,4.699698374376132823e-07,5.061213633943527085e-07,5.422728893510920818e-07,5.784244153078314551e-07,6.145759412645708284e-07,6.507274672213102017e-07,6.868789931780495750e-07,7.230305191347889483e-07,7.591820450915283216e-07,7.953335710482676949e-07,8.314850970050070682e-07,8.676366229617464415e-07,9.037881489184858148e-07,9.399396748752251881e-07,9.760912008319645614e-07,1.012242726788703935e-06,1.048394252745443308e-06,1.084545778702182681e-06,1.120697304658922055e-06,1.156848830615661428e-06,1.193000356572400801e-06,1.229151882529140175e-06,1.265303408485879548e-06,1.301454934442618921e-06,1.337606460399358294e-06,1.373757986356097668e-06,1.409909512312837041e-06,1.446061038269576414e-06,1.482212564226315788e-06,1.518364090183055161e-06,1.554515616139794534e-06,1.590667142096533908e-06,1.626818668053273281e-06,1.662970194010012654e-06,1.699121719966752027e-06,1.735273245923491401e-06,1.771424771880230774e-06,1.807576297836970147e-06,1.843727823793709521e-06,1.879879349750448894e-06,1.916030875707188055e-06,1.952182401663927005e-06,1.988333927620665955e-06,2.024485453577404905e-06,2.060636979534143855e-06,2.096788505490882804e-06,2.132940031447621754e-06,2.169091557404360704e-06,2.205243083361099654e-06,2.241394609317838604e-06,2.277546135274577553e-06 +0.000000000000000000e+00,3.682820411618454093e-08,7.365640823236908186e-08,1.104846123485536294e-07,1.473128164647381902e-07,1.841410205809227510e-07,2.209692246971073118e-07,2.577974288132918990e-07,2.946256329294764863e-07,3.314538370456610735e-07,3.682820411618456608e-07,4.051102452780302480e-07,4.419384493942148353e-07,4.787666535103994225e-07,5.155948576265840098e-07,5.524230617427685970e-07,5.892512658589531843e-07,6.260794699751377715e-07,6.629076740913223588e-07,6.997358782075069460e-07,7.365640823236915333e-07,7.733922864398761205e-07,8.102204905560607078e-07,8.470486946722452950e-07,8.838768987884298823e-07,9.207051029046144695e-07,9.575333070207990568e-07,9.943615111369836440e-07,1.031189715253168231e-06,1.068017919369352819e-06,1.104846123485537406e-06,1.141674327601721993e-06,1.178502531717906580e-06,1.215330735834091168e-06,1.252158939950275755e-06,1.288987144066460342e-06,1.325815348182644929e-06,1.362643552298829517e-06,1.399471756415014104e-06,1.436299960531198691e-06,1.473128164647383278e-06,1.509956368763567866e-06,1.546784572879752453e-06,1.583612776995937040e-06,1.620440981112121627e-06,1.657269185228306215e-06,1.694097389344490802e-06,1.730925593460675389e-06,1.767753797576859976e-06,1.804582001693044564e-06,1.841410205809229151e-06,1.878238409925413738e-06,1.915066614041598537e-06,1.951894818157783124e-06,1.988723022273967712e-06,2.025551226390152299e-06,2.062379430506336886e-06,2.099207634622521473e-06,2.136035838738706061e-06,2.172864042854890648e-06,2.209692246971075235e-06,2.246520451087259822e-06,2.283348655203444410e-06,2.320176859319628997e-06 +0.000000000000000000e+00,3.699868309360887423e-08,7.399736618721774846e-08,1.109960492808266161e-07,1.479947323744354705e-07,1.849934154680443248e-07,2.219920985616531792e-07,2.589907816552620336e-07,2.959894647488708880e-07,3.329881478424797423e-07,3.699868309360885967e-07,4.069855140296974511e-07,4.439841971233063055e-07,4.809828802169151599e-07,5.179815633105240672e-07,5.549802464041329745e-07,5.919789294977418818e-07,6.289776125913507891e-07,6.659762956849596964e-07,7.029749787785686038e-07,7.399736618721775111e-07,7.769723449657864184e-07,8.139710280593953257e-07,8.509697111530042330e-07,8.879683942466131404e-07,9.249670773402220477e-07,9.619657604338309550e-07,9.989644435274397564e-07,1.035963126621048558e-06,1.072961809714657359e-06,1.109960492808266161e-06,1.146959175901874962e-06,1.183957858995483764e-06,1.220956542089092565e-06,1.257955225182701367e-06,1.294953908276310168e-06,1.331952591369918969e-06,1.368951274463527771e-06,1.405949957557136572e-06,1.442948640650745374e-06,1.479947323744354175e-06,1.516946006837962977e-06,1.553944689931571778e-06,1.590943373025180579e-06,1.627942056118789381e-06,1.664940739212398182e-06,1.701939422306006984e-06,1.738938105399615785e-06,1.775936788493224587e-06,1.812935471586833388e-06,1.849934154680442190e-06,1.886932837774050991e-06,1.923931520867659792e-06,1.960930203961268594e-06,1.997928887054877395e-06,2.034927570148486197e-06,2.071926253242094998e-06,2.108924936335703800e-06,2.145923619429312601e-06,2.182922302522921402e-06,2.219920985616530204e-06,2.256919668710139005e-06,2.293918351803747807e-06,2.330917034897356608e-06 +0.000000000000000000e+00,3.638463391024453130e-08,7.276926782048906259e-08,1.091539017307335873e-07,1.455385356409780987e-07,1.819231695512226102e-07,2.183078034614671216e-07,2.546924373717116330e-07,2.910770712819561445e-07,3.274617051922006559e-07,3.638463391024451674e-07,4.002309730126896788e-07,4.366156069229341903e-07,4.730002408331787017e-07,5.093848747434231602e-07,5.457695086536676717e-07,5.821541425639121831e-07,6.185387764741566945e-07,6.549234103844012060e-07,6.913080442946457174e-07,7.276926782048902289e-07,7.640773121151347403e-07,8.004619460253792518e-07,8.368465799356237632e-07,8.732312138458682747e-07,9.096158477561127861e-07,9.460004816663572975e-07,9.823851155766018090e-07,1.018769749486846320e-06,1.055154383397090832e-06,1.091539017307335343e-06,1.127923651217579855e-06,1.164308285127824366e-06,1.200692919038068878e-06,1.237077552948313389e-06,1.273462186858557901e-06,1.309846820768802412e-06,1.346231454679046923e-06,1.382616088589291435e-06,1.419000722499535946e-06,1.455385356409780458e-06,1.491769990320024969e-06,1.528154624230269481e-06,1.564539258140513992e-06,1.600923892050758504e-06,1.637308525961003015e-06,1.673693159871247526e-06,1.710077793781492038e-06,1.746462427691736549e-06,1.782847061601981061e-06,1.819231695512225572e-06,1.855616329422470084e-06,1.892000963332714595e-06,1.928385597242958895e-06,1.964770231153203194e-06,2.001154865063447494e-06,2.037539498973691794e-06,2.073924132883936094e-06,2.110308766794180393e-06,2.146693400704424693e-06,2.183078034614668993e-06,2.219462668524913292e-06,2.255847302435157592e-06,2.292231936345401892e-06 +0.000000000000000000e+00,3.702193414553142170e-08,7.404386829106284340e-08,1.110658024365942585e-07,1.480877365821256603e-07,1.851096707276570622e-07,2.221316048731884640e-07,2.591535390187198659e-07,2.961754731642512677e-07,3.331974073097826696e-07,3.702193414553140714e-07,4.072412756008454733e-07,4.442632097463768751e-07,4.812851438919082770e-07,5.183070780374397318e-07,5.553290121829711865e-07,5.923509463285026413e-07,6.293728804740340961e-07,6.663948146195655509e-07,7.034167487650970057e-07,7.404386829106284605e-07,7.774606170561599153e-07,8.144825512016913701e-07,8.515044853472228249e-07,8.885264194927542796e-07,9.255483536382857344e-07,9.625702877838171892e-07,9.995922219293486440e-07,1.036614156074880099e-06,1.073636090220411554e-06,1.110658024365943008e-06,1.147679958511474463e-06,1.184701892657005918e-06,1.221723826802537373e-06,1.258745760948068828e-06,1.295767695093600282e-06,1.332789629239131737e-06,1.369811563384663192e-06,1.406833497530194647e-06,1.443855431675726101e-06,1.480877365821257556e-06,1.517899299966789011e-06,1.554921234112320466e-06,1.591943168257851921e-06,1.628965102403383375e-06,1.665987036548914830e-06,1.703008970694446285e-06,1.740030904839977740e-06,1.777052838985509195e-06,1.814074773131040649e-06,1.851096707276572104e-06,1.888118641422103559e-06,1.925140575567634802e-06,1.962162509713166045e-06,1.999184443858697288e-06,2.036206378004228531e-06,2.073228312149759774e-06,2.110250246295291017e-06,2.147272180440822260e-06,2.184294114586353503e-06,2.221316048731884746e-06,2.258337982877415989e-06,2.295359917022947232e-06,2.332381851168478475e-06 +0.000000000000000000e+00,3.654363153973265411e-08,7.308726307946530821e-08,1.096308946191979689e-07,1.461745261589306429e-07,1.827181576986633169e-07,2.192617892383959908e-07,2.558054207781286383e-07,2.923490523178612858e-07,3.288926838575939333e-07,3.654363153973265808e-07,4.019799469370592283e-07,4.385235784767918757e-07,4.750672100165245232e-07,5.116108415562571707e-07,5.481544730959898182e-07,5.846981046357224657e-07,6.212417361754551132e-07,6.577853677151877607e-07,6.943289992549204082e-07,7.308726307946530556e-07,7.674162623343857031e-07,8.039598938741183506e-07,8.405035254138509981e-07,8.770471569535836456e-07,9.135907884933162931e-07,9.501344200330489406e-07,9.866780515727815881e-07,1.023221683112514130e-06,1.059765314652246671e-06,1.096308946191979213e-06,1.132852577731711755e-06,1.169396209271444296e-06,1.205939840811176838e-06,1.242483472350909379e-06,1.279027103890641921e-06,1.315570735430374463e-06,1.352114366970107004e-06,1.388657998509839546e-06,1.425201630049572087e-06,1.461745261589304629e-06,1.498288893129037171e-06,1.534832524668769712e-06,1.571376156208502254e-06,1.607919787748234795e-06,1.644463419287967337e-06,1.681007050827699879e-06,1.717550682367432420e-06,1.754094313907164962e-06,1.790637945446897503e-06,1.827181576986630045e-06,1.863725208526362587e-06,1.900268840066095128e-06,1.936812471605827458e-06,1.973356103145559788e-06,2.009899734685292118e-06,2.046443366225024448e-06,2.082986997764756778e-06,2.119530629304489107e-06,2.156074260844221437e-06,2.192617892383953767e-06,2.229161523923686097e-06,2.265705155463418427e-06,2.302248787003150757e-06 +0.000000000000000000e+00,3.497788529774813191e-08,6.995577059549626382e-08,1.049336558932443891e-07,1.399115411909925012e-07,1.748894264887406132e-07,2.098673117864887253e-07,2.448451970842368109e-07,2.798230823819848965e-07,3.148009676797329821e-07,3.497788529774810676e-07,3.847567382752291532e-07,4.197346235729772388e-07,4.547125088707253244e-07,4.896903941684734100e-07,5.246682794662214956e-07,5.596461647639695812e-07,5.946240500617176668e-07,6.296019353594657524e-07,6.645798206572138380e-07,6.995577059549619235e-07,7.345355912527100091e-07,7.695134765504580947e-07,8.044913618482061803e-07,8.394692471459542659e-07,8.744471324437023515e-07,9.094250177414504371e-07,9.444029030391985227e-07,9.793807883369466083e-07,1.014358673634694800e-06,1.049336558932442991e-06,1.084314444230191183e-06,1.119292329527939374e-06,1.154270214825687566e-06,1.189248100123435757e-06,1.224225985421183949e-06,1.259203870718932140e-06,1.294181756016680331e-06,1.329159641314428523e-06,1.364137526612176714e-06,1.399115411909924906e-06,1.434093297207673097e-06,1.469071182505421289e-06,1.504049067803169480e-06,1.539026953100917672e-06,1.574004838398665863e-06,1.608982723696414055e-06,1.643960608994162246e-06,1.678938494291910438e-06,1.713916379589658629e-06,1.748894264887406821e-06,1.783872150185155012e-06,1.818850035482903203e-06,1.853827920780651395e-06,1.888805806078399586e-06,1.923783691376147778e-06,1.958761576673896181e-06,1.993739461971644584e-06,2.028717347269392988e-06,2.063695232567141391e-06,2.098673117864889794e-06,2.133651003162638197e-06,2.168628888460386600e-06,2.203606773758135004e-06 +0.000000000000000000e+00,3.568171153733657093e-08,7.136342307467314185e-08,1.070451346120097062e-07,1.427268461493462572e-07,1.784085576866828083e-07,2.140902692240193594e-07,2.497719807613559105e-07,2.854536922986924615e-07,3.211354038360290126e-07,3.568171153733655637e-07,3.924988269107021148e-07,4.281805384480386658e-07,4.638622499853752169e-07,4.995439615227118209e-07,5.352256730600484249e-07,5.709073845973850289e-07,6.065890961347216330e-07,6.422708076720582370e-07,6.779525192093948410e-07,7.136342307467314450e-07,7.493159422840680490e-07,7.849976538214046530e-07,8.206793653587412570e-07,8.563610768960778610e-07,8.920427884334144651e-07,9.277244999707510691e-07,9.634062115080877790e-07,9.990879230454244889e-07,1.034769634582761199e-06,1.070451346120097909e-06,1.106133057657434619e-06,1.141814769194771328e-06,1.177496480732108038e-06,1.213178192269444748e-06,1.248859903806781458e-06,1.284541615344118168e-06,1.320223326881454878e-06,1.355905038418791588e-06,1.391586749956128298e-06,1.427268461493465008e-06,1.462950173030801717e-06,1.498631884568138427e-06,1.534313596105475137e-06,1.569995307642811847e-06,1.605677019180148557e-06,1.641358730717485267e-06,1.677040442254821977e-06,1.712722153792158687e-06,1.748403865329495397e-06,1.784085576866832106e-06,1.819767288404168816e-06,1.855448999941505526e-06,1.891130711478842236e-06,1.926812423016178946e-06,1.962494134553515656e-06,1.998175846090852366e-06,2.033857557628189076e-06,2.069539269165525786e-06,2.105220980702862496e-06,2.140902692240199205e-06,2.176584403777535915e-06,2.212266115314872625e-06,2.247947826852209335e-06 +0.000000000000000000e+00,3.543297966008793212e-08,7.086595932017586425e-08,1.062989389802637964e-07,1.417319186403517285e-07,1.771648983004396606e-07,2.125978779605275927e-07,2.480308576206155513e-07,2.834638372807035099e-07,3.188968169407914685e-07,3.543297966008794271e-07,3.897627762609673857e-07,4.251957559210553443e-07,4.606287355811433029e-07,4.960617152412313144e-07,5.314946949013193260e-07,5.669276745614073375e-07,6.023606542214953490e-07,6.377936338815833606e-07,6.732266135416713721e-07,7.086595932017593836e-07,7.440925728618473952e-07,7.795255525219354067e-07,8.149585321820234182e-07,8.503915118421114297e-07,8.858244915021994413e-07,9.212574711622874528e-07,9.566904508223753585e-07,9.921234304824632641e-07,1.027556410142551170e-06,1.062989389802639075e-06,1.098422369462726981e-06,1.133855349122814887e-06,1.169288328782902792e-06,1.204721308442990698e-06,1.240154288103078604e-06,1.275587267763166509e-06,1.311020247423254415e-06,1.346453227083342321e-06,1.381886206743430226e-06,1.417319186403518132e-06,1.452752166063606038e-06,1.488185145723693943e-06,1.523618125383781849e-06,1.559051105043869755e-06,1.594484084703957660e-06,1.629917064364045566e-06,1.665350044024133472e-06,1.700783023684221377e-06,1.736216003344309283e-06,1.771648983004397188e-06,1.807081962664485094e-06,1.842514942324573000e-06,1.877947921984660905e-06,1.913380901644749023e-06,1.948813881304837140e-06,1.984246860964925258e-06,2.019679840625013375e-06,2.055112820285101493e-06,2.090545799945189610e-06,2.125978779605277727e-06,2.161411759265365845e-06,2.196844738925453962e-06,2.232277718585542080e-06 +0.000000000000000000e+00,3.497788529775093771e-08,6.995577059550187542e-08,1.049336558932528065e-07,1.399115411910037244e-07,1.748894264887546422e-07,2.098673117865055601e-07,2.448451970842565044e-07,2.798230823820074487e-07,3.148009676797583930e-07,3.497788529775093374e-07,3.847567382752602817e-07,4.197346235730112260e-07,4.547125088707621703e-07,4.896903941685131147e-07,5.246682794662640590e-07,5.596461647640150033e-07,5.946240500617659477e-07,6.296019353595168920e-07,6.645798206572678363e-07,6.995577059550187806e-07,7.345355912527697250e-07,7.695134765505206693e-07,8.044913618482716136e-07,8.394692471460225579e-07,8.744471324437735023e-07,9.094250177415244466e-07,9.444029030392753909e-07,9.793807883370264411e-07,1.014358673634777385e-06,1.049336558932528330e-06,1.084314444230279274e-06,1.119292329528030218e-06,1.154270214825781163e-06,1.189248100123532107e-06,1.224225985421283051e-06,1.259203870719033996e-06,1.294181756016784940e-06,1.329159641314535884e-06,1.364137526612286829e-06,1.399115411910037773e-06,1.434093297207788717e-06,1.469071182505539662e-06,1.504049067803290606e-06,1.539026953101041550e-06,1.574004838398792495e-06,1.608982723696543439e-06,1.643960608994294383e-06,1.678938494292045328e-06,1.713916379589796272e-06,1.748894264887547216e-06,1.783872150185298161e-06,1.818850035483049105e-06,1.853827920780800049e-06,1.888805806078550994e-06,1.923783691376301938e-06,1.958761576674052882e-06,1.993739461971803827e-06,2.028717347269554771e-06,2.063695232567305715e-06,2.098673117865056660e-06,2.133651003162807604e-06,2.168628888460558548e-06,2.203606773758309492e-06 +0.000000000000000000e+00,3.568171153733972083e-08,7.136342307467944166e-08,1.070451346120191559e-07,1.427268461493588569e-07,1.784085576866985578e-07,2.140902692240382588e-07,2.497719807613779333e-07,2.854536922987176078e-07,3.211354038360572823e-07,3.568171153733969568e-07,3.924988269107366313e-07,4.281805384480763059e-07,4.638622499854159804e-07,4.995439615227556549e-07,5.352256730600953294e-07,5.709073845974350039e-07,6.065890961347746784e-07,6.422708076721143529e-07,6.779525192094540274e-07,7.136342307467937019e-07,7.493159422841333764e-07,7.849976538214730509e-07,8.206793653588127254e-07,8.563610768961523999e-07,8.920427884334920745e-07,9.277244999708317490e-07,9.634062115081714235e-07,9.990879230455110980e-07,1.034769634582850772e-06,1.070451346120190447e-06,1.106133057657530122e-06,1.141814769194869796e-06,1.177496480732209471e-06,1.213178192269549145e-06,1.248859903806888820e-06,1.284541615344228494e-06,1.320223326881568169e-06,1.355905038418907843e-06,1.391586749956247518e-06,1.427268461493587192e-06,1.462950173030926867e-06,1.498631884568266541e-06,1.534313596105606216e-06,1.569995307642945890e-06,1.605677019180285565e-06,1.641358730717625239e-06,1.677040442254964914e-06,1.712722153792304588e-06,1.748403865329644263e-06,1.784085576866983937e-06,1.819767288404323612e-06,1.855448999941663286e-06,1.891130711479002961e-06,1.926812423016342423e-06,1.962494134553682098e-06,1.998175846091021772e-06,2.033857557628361447e-06,2.069539269165701121e-06,2.105220980703040796e-06,2.140902692240380470e-06,2.176584403777720145e-06,2.212266115315059819e-06,2.247947826852399494e-06 +0.000000000000000000e+00,3.543297966009026146e-08,7.086595932018052293e-08,1.062989389802707844e-07,1.417319186403610459e-07,1.771648983004513073e-07,2.125978779605415688e-07,2.480308576206318567e-07,2.834638372807221447e-07,3.188968169408124326e-07,3.543297966009027205e-07,3.897627762609930085e-07,4.251957559210832964e-07,4.606287355811735843e-07,4.960617152412639252e-07,5.314946949013542661e-07,5.669276745614446069e-07,6.023606542215349478e-07,6.377936338816252887e-07,6.732266135417156296e-07,7.086595932018059704e-07,7.440925728618963113e-07,7.795255525219866522e-07,8.149585321820769931e-07,8.503915118421673339e-07,8.858244915022576748e-07,9.212574711623480157e-07,9.566904508224384624e-07,9.921234304825289092e-07,1.027556410142619356e-06,1.062989389802709803e-06,1.098422369462800249e-06,1.133855349122890696e-06,1.169288328782981143e-06,1.204721308443071590e-06,1.240154288103162036e-06,1.275587267763252483e-06,1.311020247423342930e-06,1.346453227083433377e-06,1.381886206743523823e-06,1.417319186403614270e-06,1.452752166063704717e-06,1.488185145723795164e-06,1.523618125383885610e-06,1.559051105043976057e-06,1.594484084704066504e-06,1.629917064364156951e-06,1.665350044024247397e-06,1.700783023684337844e-06,1.736216003344428291e-06,1.771648983004518738e-06,1.807081962664609184e-06,1.842514942324699631e-06,1.877947921984790078e-06,1.913380901644880313e-06,1.948813881304970548e-06,1.984246860965060783e-06,2.019679840625151018e-06,2.055112820285241253e-06,2.090545799945331488e-06,2.125978779605421723e-06,2.161411759265511958e-06,2.196844738925602193e-06,2.232277718585692428e-06 +0.000000000000000000e+00,3.288130190178106912e-08,6.576260380356213825e-08,9.864390570534320075e-08,1.315252076071242500e-07,1.644065095089052993e-07,1.972878114106863486e-07,2.301691133124673978e-07,2.630504152142484471e-07,2.959317171160294964e-07,3.288130190178105457e-07,3.616943209195915949e-07,3.945756228213726442e-07,4.274569247231536935e-07,4.603382266249347427e-07,4.932195285267157920e-07,5.261008304284967883e-07,5.589821323302777847e-07,5.918634342320587810e-07,6.247447361338397773e-07,6.576260380356207737e-07,6.905073399374017700e-07,7.233886418391827663e-07,7.562699437409637627e-07,7.891512456427447590e-07,8.220325475445257553e-07,8.549138494463067517e-07,8.877951513480877480e-07,9.206764532498687443e-07,9.535577551516497407e-07,9.864390570534307370e-07,1.019320358955211839e-06,1.052201660856992941e-06,1.085082962758774044e-06,1.117964264660555146e-06,1.150845566562336248e-06,1.183726868464117350e-06,1.216608170365898452e-06,1.249489472267679555e-06,1.282370774169460657e-06,1.315252076071241759e-06,1.348133377973022861e-06,1.381014679874803964e-06,1.413895981776585066e-06,1.446777283678366168e-06,1.479658585580147270e-06,1.512539887481928372e-06,1.545421189383709475e-06,1.578302491285490577e-06,1.611183793187271679e-06,1.644065095089052781e-06,1.676946396990833883e-06,1.709827698892614986e-06,1.742709000794396088e-06,1.775590302696177190e-06,1.808471604597958292e-06,1.841352906499739394e-06,1.874234208401520497e-06,1.907115510303301599e-06,1.939996812205082701e-06,1.972878114106863592e-06,2.005759416008644482e-06,2.038640717910425372e-06,2.071522019812206263e-06 +0.000000000000000000e+00,3.402861437933652141e-08,6.805722875867304283e-08,1.020858431380095576e-07,1.361144575173460592e-07,1.701430718966825608e-07,2.041716862760190623e-07,2.382003006553555639e-07,2.722289150346920654e-07,3.062575294140285670e-07,3.402861437933650686e-07,3.743147581727015701e-07,4.083433725520380717e-07,4.423719869313745732e-07,4.764006013107110748e-07,5.104292156900475764e-07,5.444578300693840250e-07,5.784864444487204736e-07,6.125150588280569222e-07,6.465436732073933709e-07,6.805722875867298195e-07,7.146009019660662681e-07,7.486295163454027167e-07,7.826581307247391654e-07,8.166867451040756140e-07,8.507153594834120626e-07,8.847439738627485112e-07,9.187725882420849598e-07,9.528012026214214085e-07,9.868298170007577512e-07,1.020858431380094094e-06,1.054887045759430437e-06,1.088915660138766779e-06,1.122944274518103122e-06,1.156972888897439465e-06,1.191001503276775808e-06,1.225030117656112150e-06,1.259058732035448493e-06,1.293087346414784836e-06,1.327115960794121179e-06,1.361144575173457521e-06,1.395173189552793864e-06,1.429201803932130207e-06,1.463230418311466550e-06,1.497259032690802892e-06,1.531287647070139235e-06,1.565316261449475578e-06,1.599344875828811921e-06,1.633373490208148263e-06,1.667402104587484606e-06,1.701430718966820949e-06,1.735459333346157292e-06,1.769487947725493634e-06,1.803516562104829977e-06,1.837545176484166320e-06,1.871573790863502663e-06,1.905602405242839005e-06,1.939631019622175348e-06,1.973659634001511691e-06,2.007688248380848034e-06,2.041716862760184376e-06,2.075745477139520719e-06,2.109774091518857062e-06,2.143802705898193404e-06 +0.000000000000000000e+00,3.332843600242400885e-08,6.665687200484801770e-08,9.998530800727202655e-08,1.333137440096960354e-07,1.666421800121200443e-07,1.999706160145440531e-07,2.332990520169680620e-07,2.666274880193920708e-07,2.999559240218160532e-07,3.332843600242400356e-07,3.666127960266640180e-07,3.999412320290880003e-07,4.332696680315119827e-07,4.665981040339359651e-07,4.999265400363599475e-07,5.332549760387839299e-07,5.665834120412079122e-07,5.999118480436318946e-07,6.332402840460558770e-07,6.665687200484798594e-07,6.998971560509038418e-07,7.332255920533278241e-07,7.665540280557518065e-07,7.998824640581757889e-07,8.332109000605997713e-07,8.665393360630237537e-07,8.998677720654477361e-07,9.331962080678717184e-07,9.665246440702957008e-07,9.998530800727196832e-07,1.033181516075143666e-06,1.066509952077567648e-06,1.099838388079991630e-06,1.133166824082415613e-06,1.166495260084839595e-06,1.199823696087263577e-06,1.233152132089687560e-06,1.266480568092111542e-06,1.299809004094535525e-06,1.333137440096959507e-06,1.366465876099383489e-06,1.399794312101807472e-06,1.433122748104231454e-06,1.466451184106655437e-06,1.499779620109079419e-06,1.533108056111503401e-06,1.566436492113927384e-06,1.599764928116351366e-06,1.633093364118775348e-06,1.666421800121199331e-06,1.699750236123623313e-06,1.733078672126047296e-06,1.766407108128471278e-06,1.799735544130895260e-06,1.833063980133319243e-06,1.866392416135743225e-06,1.899720852138167207e-06,1.933049288140591402e-06,1.966377724143015596e-06,1.999706160145439790e-06,2.033034596147863984e-06,2.066363032150288178e-06,2.099691468152712372e-06 +0.000000000000000000e+00,3.288130190178388154e-08,6.576260380356776308e-08,9.864390570535164461e-08,1.315252076071355262e-07,1.644065095089194077e-07,1.972878114107032892e-07,2.301691133124871708e-07,2.630504152142710523e-07,2.959317171160549074e-07,3.288130190178387624e-07,3.616943209196226175e-07,3.945756228214064726e-07,4.274569247231903276e-07,4.603382266249741827e-07,4.932195285267580378e-07,5.261008304285418928e-07,5.589821323303257479e-07,5.918634342321096030e-07,6.247447361338934580e-07,6.576260380356773131e-07,6.905073399374611682e-07,7.233886418392450233e-07,7.562699437410288783e-07,7.891512456428127334e-07,8.220325475445965885e-07,8.549138494463804435e-07,8.877951513481642986e-07,9.206764532499481537e-07,9.535577551517320087e-07,9.864390570535158638e-07,1.019320358955299719e-06,1.052201660857083574e-06,1.085082962758867429e-06,1.117964264660651284e-06,1.150845566562435139e-06,1.183726868464218994e-06,1.216608170366002849e-06,1.249489472267786704e-06,1.282370774169570559e-06,1.315252076071354414e-06,1.348133377973138270e-06,1.381014679874922125e-06,1.413895981776705980e-06,1.446777283678489835e-06,1.479658585580273690e-06,1.512539887482057545e-06,1.545421189383841400e-06,1.578302491285625255e-06,1.611183793187409110e-06,1.644065095089192965e-06,1.676946396990976820e-06,1.709827698892760675e-06,1.742709000794544530e-06,1.775590302696328385e-06,1.808471604598112240e-06,1.841352906499896096e-06,1.874234208401679951e-06,1.907115510303463806e-06,1.939996812205247873e-06,1.972878114107032151e-06,2.005759416008816430e-06,2.038640717910600708e-06,2.071522019812384987e-06 +0.000000000000000000e+00,3.402861437933927427e-08,6.805722875867854854e-08,1.020858431380178162e-07,1.361144575173570706e-07,1.701430718966963250e-07,2.041716862760355795e-07,2.382003006553748339e-07,2.722289150347140883e-07,3.062575294140533427e-07,3.402861437933925971e-07,3.743147581727318516e-07,4.083433725520711060e-07,4.423719869314103604e-07,4.764006013107496148e-07,5.104292156900888692e-07,5.444578300694280707e-07,5.784864444487672722e-07,6.125150588281064737e-07,6.465436732074456751e-07,6.805722875867848766e-07,7.146009019661240781e-07,7.486295163454632796e-07,7.826581307248024811e-07,8.166867451041416825e-07,8.507153594834808840e-07,8.847439738628200855e-07,9.187725882421592870e-07,9.528012026214984885e-07,9.868298170008377958e-07,1.020858431380177103e-06,1.054887045759516411e-06,1.088915660138855718e-06,1.122944274518195025e-06,1.156972888897534333e-06,1.191001503276873640e-06,1.225030117656212947e-06,1.259058732035552255e-06,1.293087346414891562e-06,1.327115960794230869e-06,1.361144575173570177e-06,1.395173189552909484e-06,1.429201803932248791e-06,1.463230418311588099e-06,1.497259032690927406e-06,1.531287647070266714e-06,1.565316261449606021e-06,1.599344875828945328e-06,1.633373490208284636e-06,1.667402104587623943e-06,1.701430718966963250e-06,1.735459333346302558e-06,1.769487947725641865e-06,1.803516562104981172e-06,1.837545176484320480e-06,1.871573790863659787e-06,1.905602405242999095e-06,1.939631019622338402e-06,1.973659634001677709e-06,2.007688248381017017e-06,2.041716862760356324e-06,2.075745477139695631e-06,2.109774091519034939e-06,2.143802705898374246e-06 +0.000000000000000000e+00,3.332843600242597423e-08,6.665687200485194846e-08,9.998530800727792931e-08,1.333137440097039234e-07,1.666421800121299175e-07,1.999706160145559116e-07,2.332990520169819057e-07,2.666274880194078997e-07,2.999559240218338938e-07,3.332843600242598879e-07,3.666127960266858820e-07,3.999412320291118761e-07,4.332696680315378702e-07,4.665981040339638642e-07,4.999265400363898054e-07,5.332549760388156936e-07,5.665834120412415818e-07,5.999118480436674700e-07,6.332402840460933582e-07,6.665687200485192464e-07,6.998971560509451346e-07,7.332255920533710228e-07,7.665540280557969110e-07,7.998824640582227992e-07,8.332109000606486874e-07,8.665393360630745756e-07,8.998677720655004639e-07,9.331962080679263521e-07,9.665246440703522403e-07,9.998530800727781285e-07,1.033181516075204017e-06,1.066509952077629905e-06,1.099838388080055793e-06,1.133166824082481681e-06,1.166495260084907569e-06,1.199823696087333458e-06,1.233152132089759346e-06,1.266480568092185234e-06,1.299809004094611122e-06,1.333137440097037011e-06,1.366465876099462899e-06,1.399794312101888787e-06,1.433122748104314675e-06,1.466451184106740563e-06,1.499779620109166452e-06,1.533108056111592340e-06,1.566436492114018228e-06,1.599764928116444116e-06,1.633093364118870004e-06,1.666421800121295893e-06,1.699750236123721781e-06,1.733078672126147669e-06,1.766407108128573557e-06,1.799735544130999445e-06,1.833063980133425334e-06,1.866392416135851222e-06,1.899720852138277110e-06,1.933049288140703210e-06,1.966377724143129522e-06,1.999706160145555833e-06,2.033034596147982145e-06,2.066363032150408457e-06,2.099691468152834769e-06 +0.000000000000000000e+00,3.010600245828833982e-08,6.021200491657667964e-08,9.031800737486501946e-08,1.204240098331533593e-07,1.505300122914416991e-07,1.806360147497300389e-07,2.107420172080183787e-07,2.408480196663067186e-07,2.709540221245950584e-07,3.010600245828833982e-07,3.311660270411717380e-07,3.612720294994600778e-07,3.913780319577484177e-07,4.214840344160367575e-07,4.515900368743250973e-07,4.816960393326134371e-07,5.118020417909017769e-07,5.419080442491901168e-07,5.720140467074784566e-07,6.021200491657667964e-07,6.322260516240551362e-07,6.623320540823434760e-07,6.924380565406318159e-07,7.225440589989201557e-07,7.526500614572084955e-07,7.827560639154968353e-07,8.128620663737851751e-07,8.429680688320735150e-07,8.730740712903618548e-07,9.031800737486501946e-07,9.332860762069385344e-07,9.633920786652268742e-07,9.934980811235152141e-07,1.023604083581803554e-06,1.053710086040091894e-06,1.083816088498380234e-06,1.113922090956668573e-06,1.144028093414956913e-06,1.174134095873245253e-06,1.204240098331533593e-06,1.234346100789821933e-06,1.264452103248110272e-06,1.294558105706398612e-06,1.324664108164686952e-06,1.354770110622975292e-06,1.384876113081263632e-06,1.414982115539551972e-06,1.445088117997840311e-06,1.475194120456128651e-06,1.505300122914416991e-06,1.535406125372705331e-06,1.565512127830993671e-06,1.595618130289282010e-06,1.625724132747570350e-06,1.655830135205858690e-06,1.685936137664147030e-06,1.716042140122435370e-06,1.746148142580723710e-06,1.776254145039012049e-06,1.806360147497300389e-06,1.836466149955588729e-06,1.866572152413877069e-06,1.896678154872165409e-06 +0.000000000000000000e+00,3.156097593354276058e-08,6.312195186708552117e-08,9.468292780062827513e-08,1.262439037341710159e-07,1.578048796677137566e-07,1.893658556012564973e-07,2.209268315347992381e-07,2.524878074683419788e-07,2.840487834018847195e-07,3.156097593354274602e-07,3.471707352689702010e-07,3.787317112025129417e-07,4.102926871360556824e-07,4.418536630695984232e-07,4.734146390031411639e-07,5.049756149366838517e-07,5.365365908702265395e-07,5.680975668037692273e-07,5.996585427373119151e-07,6.312195186708546029e-07,6.627804946043972906e-07,6.943414705379399784e-07,7.259024464714826662e-07,7.574634224050253540e-07,7.890243983385680418e-07,8.205853742721107296e-07,8.521463502056534174e-07,8.837073261391961052e-07,9.152683020727387930e-07,9.468292780062814808e-07,9.783902539398240627e-07,1.009951229873366645e-06,1.041512205806909226e-06,1.073073181740451808e-06,1.104634157673994390e-06,1.136195133607536972e-06,1.167756109541079554e-06,1.199317085474622136e-06,1.230878061408164718e-06,1.262439037341707300e-06,1.294000013275249882e-06,1.325560989208792464e-06,1.357121965142335046e-06,1.388682941075877628e-06,1.420243917009420209e-06,1.451804892942962791e-06,1.483365868876505373e-06,1.514926844810047955e-06,1.546487820743590537e-06,1.578048796677133119e-06,1.609609772610675701e-06,1.641170748544218283e-06,1.672731724477760865e-06,1.704292700411303447e-06,1.735853676344846029e-06,1.767414652278388610e-06,1.798975628211931192e-06,1.830536604145473774e-06,1.862097580079016356e-06,1.893658556012558938e-06,1.925219531946101520e-06,1.956780507879643890e-06,1.988341483813186260e-06 +0.000000000000000000e+00,3.052658958106018533e-08,6.105317916212037066e-08,9.157976874318054937e-08,1.221063583242407149e-07,1.526329479053008803e-07,1.831595374863610458e-07,2.136861270674212113e-07,2.442127166484813768e-07,2.747393062295415422e-07,3.052658958106017077e-07,3.357924853916618732e-07,3.663190749727220387e-07,3.968456645537822042e-07,4.273722541348423696e-07,4.578988437159025351e-07,4.884254332969626477e-07,5.189520228780227602e-07,5.494786124590828727e-07,5.800052020401429853e-07,6.105317916212030978e-07,6.410583812022632103e-07,6.715849707833233229e-07,7.021115603643834354e-07,7.326381499454435480e-07,7.631647395265036605e-07,7.936913291075637730e-07,8.242179186886238856e-07,8.547445082696839981e-07,8.852710978507441107e-07,9.157976874318042232e-07,9.463242770128643357e-07,9.768508665939244483e-07,1.007377456174984561e-06,1.037904045756044673e-06,1.068430635337104786e-06,1.098957224918164898e-06,1.129483814499225011e-06,1.160010404080285124e-06,1.190536993661345236e-06,1.221063583242405349e-06,1.251590172823465461e-06,1.282116762404525574e-06,1.312643351985585686e-06,1.343169941566645799e-06,1.373696531147705911e-06,1.404223120728766024e-06,1.434749710309826136e-06,1.465276299890886249e-06,1.495802889471946361e-06,1.526329479053006474e-06,1.556856068634066587e-06,1.587382658215126699e-06,1.617909247796186812e-06,1.648435837377246924e-06,1.678962426958307037e-06,1.709489016539367149e-06,1.740015606120427262e-06,1.770542195701487374e-06,1.801068785282547487e-06,1.831595374863607599e-06,1.862121964444667712e-06,1.892648554025727824e-06,1.923175143606787937e-06 +0.000000000000000000e+00,3.010600245829119194e-08,6.021200491658238388e-08,9.031800737487356920e-08,1.204240098331647413e-07,1.505300122914559134e-07,1.806360147497470855e-07,2.107420172080382575e-07,2.408480196663294296e-07,2.709540221246205752e-07,3.010600245829117209e-07,3.311660270412028665e-07,3.612720294994940121e-07,3.913780319577851577e-07,4.214840344160763033e-07,4.515900368743674490e-07,4.816960393326585416e-07,5.118020417909496343e-07,5.419080442492407270e-07,5.720140467075318197e-07,6.021200491658229123e-07,6.322260516241140050e-07,6.623320540824050977e-07,6.924380565406961904e-07,7.225440589989872830e-07,7.526500614572783757e-07,7.827560639155694684e-07,8.128620663738605611e-07,8.429680688321516538e-07,8.730740712904427464e-07,9.031800737487338391e-07,9.332860762070249318e-07,9.633920786653160245e-07,9.934980811236071171e-07,1.023604083581898210e-06,1.053710086040189302e-06,1.083816088498480395e-06,1.113922090956771488e-06,1.144028093415062581e-06,1.174134095873353673e-06,1.204240098331644766e-06,1.234346100789935859e-06,1.264452103248226951e-06,1.294558105706518044e-06,1.324664108164809137e-06,1.354770110623100229e-06,1.384876113081391322e-06,1.414982115539682415e-06,1.445088117997973507e-06,1.475194120456264600e-06,1.505300122914555693e-06,1.535406125372846785e-06,1.565512127831137878e-06,1.595618130289428971e-06,1.625724132747720063e-06,1.655830135206011156e-06,1.685936137664302249e-06,1.716042140122593341e-06,1.746148142580884434e-06,1.776254145039175527e-06,1.806360147497466619e-06,1.836466149955757712e-06,1.866572152414048805e-06,1.896678154872339897e-06 +0.000000000000000000e+00,3.156097593354563917e-08,6.312195186709127834e-08,9.468292780063691751e-08,1.262439037341825567e-07,1.578048796677282091e-07,1.893658556012738615e-07,2.209268315348195139e-07,2.524878074683651663e-07,2.840487834019108187e-07,3.156097593354564711e-07,3.471707352690021235e-07,3.787317112025477759e-07,4.102926871360934283e-07,4.418536630696390807e-07,4.734146390031847332e-07,5.049756149367304385e-07,5.365365908702761968e-07,5.680975668038219551e-07,5.996585427373677134e-07,6.312195186709134716e-07,6.627804946044592299e-07,6.943414705380049882e-07,7.259024464715507465e-07,7.574634224050965048e-07,7.890243983386422631e-07,8.205853742721880214e-07,8.521463502057337796e-07,8.837073261392795379e-07,9.152683020728252962e-07,9.468292780063710545e-07,9.783902539399168128e-07,1.009951229873462571e-06,1.041512205807008329e-06,1.073073181740554088e-06,1.104634157674099846e-06,1.136195133607645604e-06,1.167756109541191362e-06,1.199317085474737121e-06,1.230878061408282879e-06,1.262439037341828637e-06,1.294000013275374396e-06,1.325560989208920154e-06,1.357121965142465912e-06,1.388682941076011670e-06,1.420243917009557429e-06,1.451804892943103187e-06,1.483365868876648945e-06,1.514926844810194704e-06,1.546487820743740462e-06,1.578048796677286220e-06,1.609609772610831978e-06,1.641170748544377737e-06,1.672731724477923495e-06,1.704292700411469253e-06,1.735853676345015012e-06,1.767414652278560770e-06,1.798975628212106528e-06,1.830536604145652286e-06,1.862097580079198045e-06,1.893658556012743803e-06,1.925219531946289561e-06,1.956780507879835320e-06,1.988341483813381078e-06 +0.000000000000000000e+00,3.052658958106192572e-08,6.105317916212385144e-08,9.157976874318577716e-08,1.221063583242477029e-07,1.526329479053096154e-07,1.831595374863715278e-07,2.136861270674334403e-07,2.442127166484953528e-07,2.747393062295572653e-07,3.052658958106191778e-07,3.357924853916810903e-07,3.663190749727430027e-07,3.968456645538049152e-07,4.273722541348668277e-07,4.578988437159287402e-07,4.884254332969905997e-07,5.189520228780524063e-07,5.494786124591142130e-07,5.800052020401760196e-07,6.105317916212378262e-07,6.410583812022996328e-07,6.715849707833614394e-07,7.021115603644232460e-07,7.326381499454850526e-07,7.631647395265468592e-07,7.936913291076086658e-07,8.242179186886704724e-07,8.547445082697322790e-07,8.852710978507940856e-07,9.157976874318558922e-07,9.463242770129176988e-07,9.768508665939795054e-07,1.007377456175041312e-06,1.037904045756103119e-06,1.068430635337164925e-06,1.098957224918226732e-06,1.129483814499288538e-06,1.160010404080350345e-06,1.190536993661412152e-06,1.221063583242473958e-06,1.251590172823535765e-06,1.282116762404597571e-06,1.312643351985659378e-06,1.343169941566721185e-06,1.373696531147782991e-06,1.404223120728844798e-06,1.434749710309906604e-06,1.465276299890968411e-06,1.495802889472030218e-06,1.526329479053092024e-06,1.556856068634153831e-06,1.587382658215215638e-06,1.617909247796277444e-06,1.648435837377339251e-06,1.678962426958401057e-06,1.709489016539462864e-06,1.740015606120524671e-06,1.770542195701586477e-06,1.801068785282648284e-06,1.831595374863710090e-06,1.862121964444771897e-06,1.892648554025833704e-06,1.923175143606895510e-06 +0.000000000000000000e+00,2.688845133386774772e-08,5.377690266773549544e-08,8.066535400160324977e-08,1.075538053354710041e-07,1.344422566693387584e-07,1.613307080032064995e-07,1.882191593370742406e-07,2.151076106709419817e-07,2.419960620048097493e-07,2.688845133386775169e-07,2.957729646725452845e-07,3.226614160064130520e-07,3.495498673402808196e-07,3.764383186741485872e-07,4.033267700080163547e-07,4.302152213418841223e-07,4.571036726757518899e-07,4.839921240096197104e-07,5.108805753434875309e-07,5.377690266773553514e-07,5.646574780112231719e-07,5.915459293450909924e-07,6.184343806789588129e-07,6.453228320128266334e-07,6.722112833466944540e-07,6.990997346805622745e-07,7.259881860144300950e-07,7.528766373482979155e-07,7.797650886821657360e-07,8.066535400160335565e-07,8.335419913499013770e-07,8.604304426837691975e-07,8.873188940176370180e-07,9.142073453515048385e-07,9.410957966853726591e-07,9.679842480192404796e-07,9.948726993531083001e-07,1.021761150686976121e-06,1.048649602020843941e-06,1.075538053354711762e-06,1.102426504688579582e-06,1.129314956022447403e-06,1.156203407356315223e-06,1.183091858690183044e-06,1.209980310024050864e-06,1.236868761357918685e-06,1.263757212691786505e-06,1.290645664025654326e-06,1.317534115359522146e-06,1.344422566693389967e-06,1.371311018027257787e-06,1.398199469361125608e-06,1.425087920694993428e-06,1.451976372028861249e-06,1.478864823362729069e-06,1.505753274696596890e-06,1.532641726030464710e-06,1.559530177364332531e-06,1.586418628698200351e-06,1.613307080032068172e-06,1.640195531365935992e-06,1.667083982699803813e-06,1.693972434033671633e-06 +0.000000000000000000e+00,2.854068516673373342e-08,5.708137033346746684e-08,8.562205550020119695e-08,1.141627406669349204e-07,1.427034258336686307e-07,1.712441110004023410e-07,1.997847961671360512e-07,2.283254813338697615e-07,2.568661665006034717e-07,2.854068516673371555e-07,3.139475368340708393e-07,3.424882220008045231e-07,3.710289071675382069e-07,3.995695923342718907e-07,4.281102775010055745e-07,4.566509626677392583e-07,4.851916478344729421e-07,5.137323330012066259e-07,5.422730181679403096e-07,5.708137033346739934e-07,5.993543885014076772e-07,6.278950736681413610e-07,6.564357588348750448e-07,6.849764440016087286e-07,7.135171291683424124e-07,7.420578143350760962e-07,7.705984995018097800e-07,7.991391846685434638e-07,8.276798698352771475e-07,8.562205550020108313e-07,8.847612401687445151e-07,9.133019253354781989e-07,9.418426105022118827e-07,9.703832956689456724e-07,9.989239808356793562e-07,1.027464666002413040e-06,1.056005351169146724e-06,1.084546036335880408e-06,1.113086721502614091e-06,1.141627406669347775e-06,1.170168091836081459e-06,1.198708777002815143e-06,1.227249462169548826e-06,1.255790147336282510e-06,1.284330832503016194e-06,1.312871517669749878e-06,1.341412202836483562e-06,1.369952888003217245e-06,1.398493573169950929e-06,1.427034258336684613e-06,1.455574943503418297e-06,1.484115628670151981e-06,1.512656313836885664e-06,1.541196999003619348e-06,1.569737684170353032e-06,1.598278369337086716e-06,1.626819054503820400e-06,1.655359739670554083e-06,1.683900424837287767e-06,1.712441110004021451e-06,1.740981795170755135e-06,1.769522480337488818e-06,1.798063165504222502e-06 +0.000000000000000000e+00,2.727273965018945347e-08,5.454547930037890693e-08,8.181821895056836040e-08,1.090909586007578139e-07,1.363636982509472806e-07,1.636364379011367473e-07,1.909091775513262140e-07,2.181819172015156807e-07,2.454546568517051474e-07,2.727273965018946141e-07,3.000001361520840808e-07,3.272728758022735475e-07,3.545456154524630142e-07,3.818183551026524809e-07,4.090910947528419476e-07,4.363638344030314143e-07,4.636365740532208810e-07,4.909093137034102947e-07,5.181820533535997085e-07,5.454547930037891223e-07,5.727275326539785360e-07,6.000002723041679498e-07,6.272730119543573635e-07,6.545457516045467773e-07,6.818184912547361911e-07,7.090912309049256048e-07,7.363639705551150186e-07,7.636367102053044324e-07,7.909094498554938461e-07,8.181821895056832599e-07,8.454549291558726736e-07,8.727276688060620874e-07,9.000004084562515012e-07,9.272731481064409149e-07,9.545458877566304346e-07,9.818186274068199542e-07,1.009091367057009474e-06,1.036364106707198993e-06,1.063636846357388513e-06,1.090909586007578033e-06,1.118182325657767552e-06,1.145455065307957072e-06,1.172727804958146592e-06,1.200000544608336111e-06,1.227273284258525631e-06,1.254546023908715151e-06,1.281818763558904670e-06,1.309091503209094190e-06,1.336364242859283710e-06,1.363636982509473229e-06,1.390909722159662749e-06,1.418182461809852268e-06,1.445455201460041788e-06,1.472727941110231308e-06,1.500000680760420827e-06,1.527273420410610347e-06,1.554546160060799867e-06,1.581818899710989386e-06,1.609091639361178906e-06,1.636364379011368426e-06,1.663637118661557945e-06,1.690909858311747465e-06,1.718182597961936985e-06 +0.000000000000000000e+00,2.688845133386997449e-08,5.377690266773994898e-08,8.066535400160992016e-08,1.075538053354798847e-07,1.344422566693498493e-07,1.613307080032198138e-07,1.882191593370897784e-07,2.151076106709597430e-07,2.419960620048297075e-07,2.688845133386996986e-07,2.957729646725696896e-07,3.226614160064396806e-07,3.495498673403096717e-07,3.764383186741796627e-07,4.033267700080496537e-07,4.302152213419196447e-07,4.571036726757896358e-07,4.839921240096596268e-07,5.108805753435296708e-07,5.377690266773997148e-07,5.646574780112697587e-07,5.915459293451398027e-07,6.184343806790098467e-07,6.453228320128798906e-07,6.722112833467499346e-07,6.990997346806199786e-07,7.259881860144900226e-07,7.528766373483600665e-07,7.797650886822301105e-07,8.066535400161001545e-07,8.335419913499701984e-07,8.604304426838402424e-07,8.873188940177102864e-07,9.142073453515803304e-07,9.410957966854503743e-07,9.679842480193203124e-07,9.948726993531902505e-07,1.021761150687060189e-06,1.048649602020930127e-06,1.075538053354800065e-06,1.102426504688670003e-06,1.129314956022539941e-06,1.156203407356409879e-06,1.183091858690279817e-06,1.209980310024149755e-06,1.236868761358019693e-06,1.263757212691889631e-06,1.290645664025759570e-06,1.317534115359629508e-06,1.344422566693499446e-06,1.371311018027369384e-06,1.398199469361239322e-06,1.425087920695109260e-06,1.451976372028979198e-06,1.478864823362849136e-06,1.505753274696719074e-06,1.532641726030589012e-06,1.559530177364458950e-06,1.586418628698328889e-06,1.613307080032198827e-06,1.640195531366068765e-06,1.667083982699938703e-06,1.693972434033808641e-06 +0.000000000000000000e+00,2.854068516673628445e-08,5.708137033347256889e-08,8.562205550020885995e-08,1.141627406669451510e-07,1.427034258336814421e-07,1.712441110004177199e-07,1.997847961671539977e-07,2.283254813338902756e-07,2.568661665006265534e-07,2.854068516673628312e-07,3.139475368340991090e-07,3.424882220008353869e-07,3.710289071675716647e-07,3.995695923343079425e-07,4.281102775010442204e-07,4.566509626677804982e-07,4.851916478345167760e-07,5.137323330012531068e-07,5.422730181679894376e-07,5.708137033347257683e-07,5.993543885014620991e-07,6.278950736681984299e-07,6.564357588349347606e-07,6.849764440016710914e-07,7.135171291684074222e-07,7.420578143351437529e-07,7.705984995018800837e-07,7.991391846686164145e-07,8.276798698353527452e-07,8.562205550020890760e-07,8.847612401688254068e-07,9.133019253355617375e-07,9.418426105022980683e-07,9.703832956690343991e-07,9.989239808357708357e-07,1.027464666002507272e-06,1.056005351169243709e-06,1.084546036335980146e-06,1.113086721502716582e-06,1.141627406669453019e-06,1.170168091836189456e-06,1.198708777002925892e-06,1.227249462169662329e-06,1.255790147336398766e-06,1.284330832503135202e-06,1.312871517669871639e-06,1.341412202836608075e-06,1.369952888003344512e-06,1.398493573170080949e-06,1.427034258336817385e-06,1.455574943503553822e-06,1.484115628670290259e-06,1.512656313837026695e-06,1.541196999003763132e-06,1.569737684170499569e-06,1.598278369337236005e-06,1.626819054503972442e-06,1.655359739670708879e-06,1.683900424837445315e-06,1.712441110004181752e-06,1.740981795170918189e-06,1.769522480337654625e-06,1.798063165504391062e-06 +0.000000000000000000e+00,2.727273965019076372e-08,5.454547930038152744e-08,8.181821895057229116e-08,1.090909586007630549e-07,1.363636982509538186e-07,1.636364379011445823e-07,1.909091775513353460e-07,2.181819172015261098e-07,2.454546568517169000e-07,2.727273965019076901e-07,3.000001361520984803e-07,3.272728758022892705e-07,3.545456154524800607e-07,3.818183551026708509e-07,4.090910947528616411e-07,4.363638344030524313e-07,4.636365740532432215e-07,4.909093137034340117e-07,5.181820533536248019e-07,5.454547930038155920e-07,5.727275326540063822e-07,6.000002723041971724e-07,6.272730119543879626e-07,6.545457516045787528e-07,6.818184912547695430e-07,7.090912309049603332e-07,7.363639705551511234e-07,7.636367102053419136e-07,7.909094498555327038e-07,8.181821895057234939e-07,8.454549291559142841e-07,8.727276688061050743e-07,9.000004084562958645e-07,9.272731481064866547e-07,9.545458877566774449e-07,9.818186274068682351e-07,1.009091367057059025e-06,1.036364106707249815e-06,1.063636846357440606e-06,1.090909586007631396e-06,1.118182325657822186e-06,1.145455065308012976e-06,1.172727804958203766e-06,1.200000544608394557e-06,1.227273284258585347e-06,1.254546023908776137e-06,1.281818763558966927e-06,1.309091503209157717e-06,1.336364242859348508e-06,1.363636982509539298e-06,1.390909722159730088e-06,1.418182461809920878e-06,1.445455201460111668e-06,1.472727941110302459e-06,1.500000680760493249e-06,1.527273420410684039e-06,1.554546160060874829e-06,1.581818899711065619e-06,1.609091639361256409e-06,1.636364379011447200e-06,1.663637118661637990e-06,1.690909858311828780e-06,1.718182597962019570e-06 +0.000000000000000000e+00,2.339000366177539083e-08,4.678000732355078166e-08,7.017001098532617249e-08,9.356001464710156332e-08,1.169500183088769541e-07,1.403400219706523450e-07,1.637300256324277358e-07,1.871200292942031266e-07,2.105100329559785175e-07,2.339000366177539083e-07,2.572900402795292727e-07,2.806800439413046370e-07,3.040700476030800014e-07,3.274600512648553657e-07,3.508500549266307301e-07,3.742400585884060945e-07,3.976300622501814588e-07,4.210200659119568232e-07,4.444100695737321875e-07,4.678000732355075519e-07,4.911900768972829163e-07,5.145800805590583336e-07,5.379700842208337509e-07,5.613600878826091682e-07,5.847500915443845855e-07,6.081400952061600028e-07,6.315300988679354201e-07,6.549201025297108374e-07,6.783101061914862547e-07,7.017001098532616720e-07,7.250901135150370893e-07,7.484801171768125066e-07,7.718701208385879239e-07,7.952601245003633412e-07,8.186501281621387585e-07,8.420401318239141758e-07,8.654301354856895931e-07,8.888201391474650104e-07,9.122101428092404277e-07,9.356001464710158450e-07,9.589901501327911564e-07,9.823801537945664678e-07,1.005770157456341779e-06,1.029160161118117091e-06,1.052550164779892402e-06,1.075940168441667713e-06,1.099330172103443025e-06,1.122720175765218336e-06,1.146110179426993648e-06,1.169500183088768959e-06,1.192890186750544271e-06,1.216280190412319582e-06,1.239670194074094893e-06,1.263060197735870205e-06,1.286450201397645516e-06,1.309840205059420828e-06,1.333230208721196139e-06,1.356620212382971451e-06,1.380010216044746762e-06,1.403400219706522073e-06,1.426790223368297385e-06,1.450180227030072696e-06,1.473570230691848008e-06 +0.000000000000000000e+00,2.516612401158654878e-08,5.033224802317309755e-08,7.549837203475964302e-08,1.006644960463461819e-07,1.258306200579327207e-07,1.509967440695192596e-07,1.761628680811057984e-07,2.013289920926923373e-07,2.264951161042788761e-07,2.516612401158653885e-07,2.768273641274518744e-07,3.019934881390383603e-07,3.271596121506248462e-07,3.523257361622113321e-07,3.774918601737978180e-07,4.026579841853843040e-07,4.278241081969707899e-07,4.529902322085572758e-07,4.781563562201437617e-07,5.033224802317302476e-07,5.284886042433167335e-07,5.536547282549032194e-07,5.788208522664897053e-07,6.039869762780761912e-07,6.291531002896626771e-07,6.543192243012491631e-07,6.794853483128356490e-07,7.046514723244221349e-07,7.298175963360086208e-07,7.549837203475951067e-07,7.801498443591815926e-07,8.053159683707680785e-07,8.304820923823545644e-07,8.556482163939410503e-07,8.808143404055275362e-07,9.059804644171140222e-07,9.311465884287005081e-07,9.563127124402868881e-07,9.814788364518731623e-07,1.006644960463459436e-06,1.031811084475045711e-06,1.056977208486631985e-06,1.082143332498218259e-06,1.107309456509804533e-06,1.132475580521390807e-06,1.157641704532977081e-06,1.182807828544563355e-06,1.207973952556149630e-06,1.233140076567735904e-06,1.258306200579322178e-06,1.283472324590908452e-06,1.308638448602494726e-06,1.333804572614081000e-06,1.358970696625667275e-06,1.384136820637253549e-06,1.409302944648839823e-06,1.434469068660426097e-06,1.459635192672012371e-06,1.484801316683598645e-06,1.509967440695184919e-06,1.535133564706771194e-06,1.560299688718357468e-06,1.585465812729943742e-06 +0.000000000000000000e+00,2.373348730719106454e-08,4.746697461438212907e-08,7.120046192157319030e-08,9.493394922876424491e-08,1.186674365359552995e-07,1.424009238431463541e-07,1.661344111503374220e-07,1.898678984575284898e-07,2.136013857647195577e-07,2.373348730719106255e-07,2.610683603791016934e-07,2.848018476862927612e-07,3.085353349934838290e-07,3.322688223006748969e-07,3.560023096078659647e-07,3.797357969150570326e-07,4.034692842222481004e-07,4.272027715294391683e-07,4.509362588366302361e-07,4.746697461438213040e-07,4.984032334510123718e-07,5.221367207582033867e-07,5.458702080653944016e-07,5.696036953725854165e-07,5.933371826797764314e-07,6.170706699869674463e-07,6.408041572941584612e-07,6.645376446013494761e-07,6.882711319085404910e-07,7.120046192157315059e-07,7.357381065229225208e-07,7.594715938301135358e-07,7.832050811373045507e-07,8.069385684444955656e-07,8.306720557516865805e-07,8.544055430588775954e-07,8.781390303660686103e-07,9.018725176732596252e-07,9.256060049804506401e-07,9.493394922876416550e-07,9.730729795948326699e-07,9.968064669020236848e-07,1.020539954209214700e-06,1.044273441516405715e-06,1.068006928823596730e-06,1.091740416130787744e-06,1.115473903437978759e-06,1.139207390745169774e-06,1.162940878052360789e-06,1.186674365359551804e-06,1.210407852666742819e-06,1.234141339973933834e-06,1.257874827281124849e-06,1.281608314588315864e-06,1.305341801895506879e-06,1.329075289202697893e-06,1.352808776509888908e-06,1.376542263817079923e-06,1.400275751124270938e-06,1.424009238431461953e-06,1.447742725738652968e-06,1.471476213045843983e-06,1.495209700353034998e-06 +0.000000000000000000e+00,2.339000366177744555e-08,4.678000732355489109e-08,7.017001098533233995e-08,9.356001464710979542e-08,1.169500183088872509e-07,1.403400219706647064e-07,1.637300256324421618e-07,1.871200292942196173e-07,2.105100329559970728e-07,2.339000366177745283e-07,2.572900402795519837e-07,2.806800439413294657e-07,3.040700476031069476e-07,3.274600512648844296e-07,3.508500549266619115e-07,3.742400585884393934e-07,3.976300622502168754e-07,4.210200659119943573e-07,4.444100695737718393e-07,4.678000732355493212e-07,4.911900768973268561e-07,5.145800805591043910e-07,5.379700842208819259e-07,5.613600878826594607e-07,5.847500915444369956e-07,6.081400952062145305e-07,6.315300988679920654e-07,6.549201025297696003e-07,6.783101061915471351e-07,7.017001098533246700e-07,7.250901135151022049e-07,7.484801171768797398e-07,7.718701208386572747e-07,7.952601245004348096e-07,8.186501281622123444e-07,8.420401318239898793e-07,8.654301354857674142e-07,8.888201391475449491e-07,9.122101428093224840e-07,9.356001464711000189e-07,9.589901501328775537e-07,9.823801537946549827e-07,1.005770157456432412e-06,1.029160161118209841e-06,1.052550164779987270e-06,1.075940168441764699e-06,1.099330172103542128e-06,1.122720175765319557e-06,1.146110179427096986e-06,1.169500183088874415e-06,1.192890186750651844e-06,1.216280190412429273e-06,1.239670194074206702e-06,1.263060197735984131e-06,1.286450201397761560e-06,1.309840205059538989e-06,1.333230208721316418e-06,1.356620212383093847e-06,1.380010216044871276e-06,1.403400219706648705e-06,1.426790223368426134e-06,1.450180227030203563e-06,1.473570230691980992e-06 +0.000000000000000000e+00,2.516612401158869283e-08,5.033224802317738566e-08,7.549837203476607518e-08,1.006644960463547581e-07,1.258306200579434410e-07,1.509967440695321239e-07,1.761628680811208068e-07,2.013289920927094897e-07,2.264951161042981726e-07,2.516612401158868820e-07,2.768273641274755913e-07,3.019934881390643007e-07,3.271596121506530101e-07,3.523257361622417194e-07,3.774918601738304288e-07,4.026579841854191382e-07,4.278241081970078476e-07,4.529902322085965569e-07,4.781563562201852663e-07,5.033224802317739757e-07,5.284886042433626850e-07,5.536547282549513944e-07,5.788208522665401038e-07,6.039869762781288132e-07,6.291531002897175225e-07,6.543192243013062319e-07,6.794853483128949413e-07,7.046514723244836506e-07,7.298175963360723600e-07,7.549837203476610694e-07,7.801498443592497788e-07,8.053159683708384881e-07,8.304820923824271975e-07,8.556482163940159069e-07,8.808143404056046162e-07,9.059804644171933256e-07,9.311465884287820350e-07,9.563127124403707444e-07,9.814788364519595596e-07,1.006644960463548375e-06,1.031811084475137190e-06,1.056977208486726005e-06,1.082143332498314821e-06,1.107309456509903636e-06,1.132475580521492451e-06,1.157641704533081266e-06,1.182807828544670082e-06,1.207973952556258897e-06,1.233140076567847712e-06,1.258306200579436527e-06,1.283472324591025343e-06,1.308638448602614158e-06,1.333804572614202973e-06,1.358970696625791788e-06,1.384136820637380604e-06,1.409302944648969419e-06,1.434469068660558234e-06,1.459635192672147049e-06,1.484801316683735865e-06,1.509967440695324680e-06,1.535133564706913495e-06,1.560299688718502310e-06,1.585465812730091126e-06 +0.000000000000000000e+00,2.373348730719197113e-08,4.746697461438394225e-08,7.120046192157591669e-08,9.493394922876789774e-08,1.186674365359598788e-07,1.424009238431518598e-07,1.661344111503438277e-07,1.898678984575357955e-07,2.136013857647277633e-07,2.373348730719197311e-07,2.610683603791116989e-07,2.848018476863036667e-07,3.085353349934956346e-07,3.322688223006876024e-07,3.560023096078795702e-07,3.797357969150715380e-07,4.034692842222635058e-07,4.272027715294554736e-07,4.509362588366474415e-07,4.746697461438394093e-07,4.984032334510314300e-07,5.221367207582235037e-07,5.458702080654155774e-07,5.696036953726076511e-07,5.933371826797997248e-07,6.170706699869917985e-07,6.408041572941838722e-07,6.645376446013759459e-07,6.882711319085680196e-07,7.120046192157600933e-07,7.357381065229521670e-07,7.594715938301442407e-07,7.832050811373363144e-07,8.069385684445283881e-07,8.306720557517204618e-07,8.544055430589125355e-07,8.781390303661046092e-07,9.018725176732966829e-07,9.256060049804887566e-07,9.493394922876808303e-07,9.730729795948729040e-07,9.968064669020649777e-07,1.020539954209257051e-06,1.044273441516449125e-06,1.068006928823641199e-06,1.091740416130833272e-06,1.115473903438025346e-06,1.139207390745217420e-06,1.162940878052409494e-06,1.186674365359601567e-06,1.210407852666793641e-06,1.234141339973985715e-06,1.257874827281177788e-06,1.281608314588369862e-06,1.305341801895561936e-06,1.329075289202754009e-06,1.352808776509946083e-06,1.376542263817138157e-06,1.400275751124330230e-06,1.424009238431522304e-06,1.447742725738714378e-06,1.471476213045906452e-06,1.495209700353098525e-06 +0.000000000000000000e+00,1.972260634847039423e-08,3.944521269694078845e-08,5.916781904541117937e-08,7.889042539388156367e-08,9.861303174235194797e-08,1.183356380908223323e-07,1.380582444392927166e-07,1.577808507877631009e-07,1.775034571362334852e-07,1.972260634847038695e-07,2.169486698331742538e-07,2.366712761816446381e-07,2.563938825301150224e-07,2.761164888785854331e-07,2.958390952270558439e-07,3.155617015755262547e-07,3.352843079239966654e-07,3.550069142724670762e-07,3.747295206209374870e-07,3.944521269694078978e-07,4.141747333178783085e-07,4.338973396663487193e-07,4.536199460148191301e-07,4.733425523632895408e-07,4.930651587117598987e-07,5.127877650602302565e-07,5.325103714087006143e-07,5.522329777571709722e-07,5.719555841056413300e-07,5.916781904541116878e-07,6.114007968025820456e-07,6.311234031510524035e-07,6.508460094995227613e-07,6.705686158479931191e-07,6.902912221964634770e-07,7.100138285449338348e-07,7.297364348934041926e-07,7.494590412418745505e-07,7.691816475903449083e-07,7.889042539388152661e-07,8.086268602872856239e-07,8.283494666357559818e-07,8.480720729842263396e-07,8.677946793326966974e-07,8.875172856811670553e-07,9.072398920296374131e-07,9.269624983781077709e-07,9.466851047265781288e-07,9.664077110750484866e-07,9.861303174235189503e-07,1.005852923771989414e-06,1.025575530120459878e-06,1.045298136468930341e-06,1.065020742817400805e-06,1.084743349165871269e-06,1.104465955514341733e-06,1.124188561862812196e-06,1.143911168211282660e-06,1.163633774559753124e-06,1.183356380908223587e-06,1.203078987256694051e-06,1.222801593605164515e-06,1.242524199953634979e-06 +0.000000000000000000e+00,2.157161523887077800e-08,4.314323047774155600e-08,6.471484571661233400e-08,8.628646095548311200e-08,1.078580761943538900e-07,1.294296914332246680e-07,1.510013066720954328e-07,1.725729219109661975e-07,1.941445371498369623e-07,2.157161523887077271e-07,2.372877676275784918e-07,2.588593828664492831e-07,2.804309981053200743e-07,3.020026133441908655e-07,3.235742285830616568e-07,3.451458438219324480e-07,3.667174590608032392e-07,3.882890742996740305e-07,4.098606895385448217e-07,4.314323047774156129e-07,4.530039200162864042e-07,4.745755352551571954e-07,4.961471504940279866e-07,5.177187657328987779e-07,5.392903809717695691e-07,5.608619962106403603e-07,5.824336114495111516e-07,6.040052266883819428e-07,6.255768419272527340e-07,6.471484571661235253e-07,6.687200724049943165e-07,6.902916876438651078e-07,7.118633028827358990e-07,7.334349181216066902e-07,7.550065333604774815e-07,7.765781485993482727e-07,7.981497638382190639e-07,8.197213790770898552e-07,8.412929943159606464e-07,8.628646095548314376e-07,8.844362247937022289e-07,9.060078400325730201e-07,9.275794552714438113e-07,9.491510705103146026e-07,9.707226857491852879e-07,9.922943009880559733e-07,1.013865916226926659e-06,1.035437531465797344e-06,1.057009146704668029e-06,1.078580761943538715e-06,1.100152377182409400e-06,1.121723992421280085e-06,1.143295607660150771e-06,1.164867222899021456e-06,1.186438838137892141e-06,1.208010453376762827e-06,1.229582068615633512e-06,1.251153683854504198e-06,1.272725299093374883e-06,1.294296914332245568e-06,1.315868529571116254e-06,1.337440144809986939e-06,1.359011760048857624e-06 +0.000000000000000000e+00,2.002013510343828374e-08,4.004027020687656748e-08,6.006040531031484460e-08,8.008054041375312172e-08,1.001006755171913988e-07,1.201208106206296892e-07,1.401409457240679795e-07,1.601610808275062699e-07,1.801812159309445603e-07,2.002013510343828506e-07,2.202214861378211410e-07,2.402416212412594313e-07,2.602617563446977217e-07,2.802818914481360120e-07,3.003020265515743024e-07,3.203221616550125927e-07,3.403422967584508831e-07,3.603624318618891735e-07,3.803825669653274638e-07,4.004027020687657542e-07,4.204228371722040445e-07,4.404429722756423349e-07,4.604631073790806252e-07,4.804832424825189685e-07,5.005033775859572589e-07,5.205235126893955492e-07,5.405436477928338396e-07,5.605637828962721300e-07,5.805839179997104203e-07,6.006040531031487107e-07,6.206241882065870010e-07,6.406443233100252914e-07,6.606644584134635817e-07,6.806845935169018721e-07,7.007047286203401624e-07,7.207248637237784528e-07,7.407449988272167431e-07,7.607651339306550335e-07,7.807852690340933239e-07,8.008054041375316142e-07,8.208255392409699046e-07,8.408456743444081949e-07,8.608658094478464853e-07,8.808859445512847756e-07,9.009060796547230660e-07,9.209262147581613563e-07,9.409463498615996467e-07,9.609664849650379371e-07,9.809866200684762274e-07,1.001006755171914518e-06,1.021026890275352808e-06,1.041047025378791098e-06,1.061067160482229389e-06,1.081087295585667679e-06,1.101107430689105970e-06,1.121127565792544260e-06,1.141147700895982550e-06,1.161167835999420841e-06,1.181187971102859131e-06,1.201208106206297421e-06,1.221228241309735712e-06,1.241248376413174002e-06,1.261268511516612292e-06 +0.000000000000000000e+00,1.972260634847221071e-08,3.944521269694442143e-08,5.916781904541663214e-08,7.889042539388884286e-08,9.861303174236105357e-08,1.183356380908332643e-07,1.380582444393054750e-07,1.577808507877776857e-07,1.775034571362498964e-07,1.972260634847221071e-07,2.169486698331943179e-07,2.366712761816665286e-07,2.563938825301387393e-07,2.761164888786109500e-07,2.958390952270831607e-07,3.155617015755553714e-07,3.352843079240275821e-07,3.550069142724997929e-07,3.747295206209720036e-07,3.944521269694442143e-07,4.141747333179164250e-07,4.338973396663886357e-07,4.536199460148608464e-07,4.733425523633330572e-07,4.930651587118052149e-07,5.127877650602773727e-07,5.325103714087495305e-07,5.522329777572216883e-07,5.719555841056938460e-07,5.916781904541660038e-07,6.114007968026381616e-07,6.311234031511103194e-07,6.508460094995824771e-07,6.705686158480546349e-07,6.902912221965267927e-07,7.100138285449989505e-07,7.297364348934711082e-07,7.494590412419432660e-07,7.691816475904154238e-07,7.889042539388875816e-07,8.086268602873597393e-07,8.283494666358318971e-07,8.480720729843040549e-07,8.677946793327762127e-07,8.875172856812483704e-07,9.072398920297205282e-07,9.269624983781926860e-07,9.466851047266648438e-07,9.664077110751370015e-07,9.861303174236091593e-07,1.005852923772081317e-06,1.025575530120553475e-06,1.045298136469025633e-06,1.065020742817497790e-06,1.084743349165969948e-06,1.104465955514442106e-06,1.124188561862914264e-06,1.143911168211386422e-06,1.163633774559858579e-06,1.183356380908330737e-06,1.203078987256802895e-06,1.222801593605275053e-06,1.242524199953747210e-06 +0.000000000000000000e+00,2.157161523887270699e-08,4.314323047774541397e-08,6.471484571661811765e-08,8.628646095549081471e-08,1.078580761943635118e-07,1.294296914332362088e-07,1.510013066721089059e-07,1.725729219109816029e-07,1.941445371498543000e-07,2.157161523887269971e-07,2.372877676275996941e-07,2.588593828664723647e-07,2.804309981053450618e-07,3.020026133442177588e-07,3.235742285830904559e-07,3.451458438219631529e-07,3.667174590608358500e-07,3.882890742997085471e-07,4.098606895385812441e-07,4.314323047774539412e-07,4.530039200163266382e-07,4.745755352551993353e-07,4.961471504940720324e-07,5.177187657329447294e-07,5.392903809718174265e-07,5.608619962106901235e-07,5.824336114495628206e-07,6.040052266884355176e-07,6.255768419273082147e-07,6.471484571661809118e-07,6.687200724050536088e-07,6.902916876439263059e-07,7.118633028827990029e-07,7.334349181216717000e-07,7.550065333605443971e-07,7.765781485994170941e-07,7.981497638382897912e-07,8.197213790771624882e-07,8.412929943160351853e-07,8.628646095549078824e-07,8.844362247937805794e-07,9.060078400326532765e-07,9.275794552715259735e-07,9.491510705103986706e-07,9.707226857492712618e-07,9.922943009881438530e-07,1.013865916227016444e-06,1.035437531465889035e-06,1.057009146704761626e-06,1.078580761943634218e-06,1.100152377182506809e-06,1.121723992421379400e-06,1.143295607660251991e-06,1.164867222899124582e-06,1.186438838137997174e-06,1.208010453376869765e-06,1.229582068615742356e-06,1.251153683854614947e-06,1.272725299093487538e-06,1.294296914332360129e-06,1.315868529571232721e-06,1.337440144810105312e-06,1.359011760048977903e-06 +0.000000000000000000e+00,2.002013510343902489e-08,4.004027020687804978e-08,6.006040531031706806e-08,8.008054041375608633e-08,1.001006755171951046e-07,1.201208106206341361e-07,1.401409457240731676e-07,1.601610808275121991e-07,1.801812159309512306e-07,2.002013510343902622e-07,2.202214861378292937e-07,2.402416212412683252e-07,2.602617563447073567e-07,2.802818914481463882e-07,3.003020265515854197e-07,3.203221616550244512e-07,3.403422967584634827e-07,3.603624318619025142e-07,3.803825669653415457e-07,4.004027020687805772e-07,4.204228371722196088e-07,4.404429722756586403e-07,4.604631073790976718e-07,4.804832424825367562e-07,5.005033775859758936e-07,5.205235126894150310e-07,5.405436477928541684e-07,5.605637828962933058e-07,5.805839179997324432e-07,6.006040531031715806e-07,6.206241882066107179e-07,6.406443233100498553e-07,6.606644584134889927e-07,6.806845935169281301e-07,7.007047286203672675e-07,7.207248637238064049e-07,7.407449988272455423e-07,7.607651339306846797e-07,7.807852690341238170e-07,8.008054041375629544e-07,8.208255392410020918e-07,8.408456743444412292e-07,8.608658094478803666e-07,8.808859445513195040e-07,9.009060796547586414e-07,9.209262147581977788e-07,9.409463498616369162e-07,9.609664849650760535e-07,9.809866200685151909e-07,1.001006755171954328e-06,1.021026890275393466e-06,1.041047025378832603e-06,1.061067160482271740e-06,1.081087295585710878e-06,1.101107430689150015e-06,1.121127565792589153e-06,1.141147700896028290e-06,1.161167835999467427e-06,1.181187971102906565e-06,1.201208106206345702e-06,1.221228241309784840e-06,1.241248376413223977e-06,1.261268511516663114e-06 +0.000000000000000000e+00,1.785090946945121886e-08,3.570181893890243773e-08,5.355272840835365328e-08,7.140363787780486222e-08,8.925454734725607116e-08,1.071054568167072801e-07,1.249563662861584890e-07,1.428072757556096980e-07,1.606581852250609069e-07,1.785090946945121158e-07,1.963600041639633248e-07,2.142109136334145337e-07,2.320618231028657427e-07,2.499127325723169251e-07,2.677636420417680811e-07,2.856145515112192371e-07,3.034654609806703931e-07,3.213163704501215491e-07,3.391672799195727051e-07,3.570181893890238611e-07,3.748690988584750171e-07,3.927200083279261731e-07,4.105709177973773291e-07,4.284218272668284851e-07,4.462727367362796411e-07,4.641236462057307971e-07,4.819745556751819531e-07,4.998254651446331091e-07,5.176763746140842651e-07,5.355272840835354211e-07,5.533781935529865771e-07,5.712291030224377331e-07,5.890800124918888891e-07,6.069309219613400451e-07,6.247818314307912011e-07,6.426327409002423571e-07,6.604836503696935131e-07,6.783345598391446691e-07,6.961854693085958251e-07,7.140363787780469811e-07,7.318872882474981371e-07,7.497381977169492931e-07,7.675891071864004491e-07,7.854400166558516051e-07,8.032909261253027611e-07,8.211418355947539170e-07,8.389927450642050730e-07,8.568436545336562290e-07,8.746945640031073850e-07,8.925454734725585410e-07,9.103963829420096970e-07,9.282472924114608530e-07,9.460982018809120090e-07,9.639491113503630592e-07,9.818000208198141093e-07,9.996509302892651594e-07,1.017501839758716210e-06,1.035352749228167260e-06,1.053203658697618310e-06,1.071054568167069360e-06,1.088905477636520410e-06,1.106756387105971460e-06,1.124607296575422510e-06 +0.000000000000000000e+00,1.785090946945298241e-08,3.570181893890596483e-08,5.355272840835894724e-08,7.140363787781192965e-08,8.925454734726491206e-08,1.071054568167178945e-07,1.249563662861708769e-07,1.428072757556238593e-07,1.606581852250768417e-07,1.785090946945298241e-07,1.963600041639828065e-07,2.142109136334357890e-07,2.320618231028887714e-07,2.499127325723417538e-07,2.677636420417947627e-07,2.856145515112477715e-07,3.034654609807007804e-07,3.213163704501537893e-07,3.391672799196067982e-07,3.570181893890598071e-07,3.748690988585128160e-07,3.927200083279658248e-07,4.105709177974188337e-07,4.284218272668718426e-07,4.462727367363248515e-07,4.641236462057778604e-07,4.819745556752308692e-07,4.998254651446838252e-07,5.176763746141367811e-07,5.355272840835897371e-07,5.533781935530426930e-07,5.712291030224956490e-07,5.890800124919486049e-07,6.069309219614015608e-07,6.247818314308545168e-07,6.426327409003074727e-07,6.604836503697604287e-07,6.783345598392133846e-07,6.961854693086663406e-07,7.140363787781192965e-07,7.318872882475722524e-07,7.497381977170252084e-07,7.675891071864781643e-07,7.854400166559311203e-07,8.032909261253840762e-07,8.211418355948370322e-07,8.389927450642899881e-07,8.568436545337429440e-07,8.746945640031959000e-07,8.925454734726488559e-07,9.103963829421018119e-07,9.282472924115547678e-07,9.460982018810077238e-07,9.639491113504606797e-07,9.818000208199136356e-07,9.996509302893665916e-07,1.017501839758819548e-06,1.035352749228272503e-06,1.053203658697725459e-06,1.071054568167178415e-06,1.088905477636631371e-06,1.106756387106084327e-06,1.124607296575537283e-06 +0.000000000000000000e+00,3.769645928468400123e-08,7.539291856936800246e-08,1.130893778540519971e-07,1.507858371387359784e-07,1.884822964234199598e-07,2.261787557081039412e-07,2.638752149927879490e-07,3.015716742774719569e-07,3.392681335621559647e-07,3.769645928468399726e-07,4.146610521315239804e-07,4.523575114162079883e-07,4.900539707008919961e-07,5.277504299855760040e-07,5.654468892702600118e-07,6.031433485549440196e-07,6.408398078396280275e-07,6.785362671243120353e-07,7.162327264089960432e-07,7.539291856936800510e-07,7.916256449783640589e-07,8.293221042630480667e-07,8.670185635477320746e-07,9.047150228324160824e-07,9.424114821171000903e-07,9.801079414017842040e-07,1.017804400686468212e-06,1.055500859971152220e-06,1.093197319255836228e-06,1.130893778540520235e-06,1.168590237825204243e-06,1.206286697109888251e-06,1.243983156394572259e-06,1.281679615679256267e-06,1.319376074963940275e-06,1.357072534248624282e-06,1.394768993533308290e-06,1.432465452817992298e-06,1.470161912102676306e-06,1.507858371387360314e-06,1.545554830672044322e-06,1.583251289956728330e-06,1.620947749241412337e-06,1.658644208526096345e-06,1.696340667810780353e-06,1.734037127095464361e-06,1.771733586380148369e-06,1.809430045664832377e-06,1.847126504949516384e-06,1.884822964234200392e-06,1.922519423518884400e-06,1.960215882803568408e-06,1.997912342088252416e-06,2.035608801372936424e-06,2.073305260657620431e-06,2.111001719942304439e-06,2.148698179226988447e-06,2.186394638511672455e-06,2.224091097796356463e-06,2.261787557081040471e-06,2.299484016365724479e-06,2.337180475650408486e-06,2.374876934935092494e-06 +0.000000000000000000e+00,3.766988182550702528e-08,7.533976365101405055e-08,1.130096454765210824e-07,1.506795273020281276e-07,1.883494091275351727e-07,2.260192909530422178e-07,2.636891727785492894e-07,3.013590546040563610e-07,3.390289364295634326e-07,3.766988182550705042e-07,4.143687000805775758e-07,4.520385819060846474e-07,4.897084637315917190e-07,5.273783455570987906e-07,5.650482273826058622e-07,6.027181092081129338e-07,6.403879910336200054e-07,6.780578728591270770e-07,7.157277546846341486e-07,7.533976365101412202e-07,7.910675183356482918e-07,8.287374001611553634e-07,8.664072819866624350e-07,9.040771638121695066e-07,9.417470456376765782e-07,9.794169274631836498e-07,1.017086809288690721e-06,1.054756691114197793e-06,1.092426572939704865e-06,1.130096454765211936e-06,1.167766336590719008e-06,1.205436218416226079e-06,1.243106100241733151e-06,1.280775982067240223e-06,1.318445863892747294e-06,1.356115745718254366e-06,1.393785627543761437e-06,1.431455509369268509e-06,1.469125391194775581e-06,1.506795273020282652e-06,1.544465154845789724e-06,1.582135036671296795e-06,1.619804918496803867e-06,1.657474800322310939e-06,1.695144682147818010e-06,1.732814563973325082e-06,1.770484445798832153e-06,1.808154327624339225e-06,1.845824209449846297e-06,1.883494091275353368e-06,1.921163973100860440e-06,1.958833854926367723e-06,1.996503736751875006e-06,2.034173618577382290e-06,2.071843500402889573e-06,2.109513382228396857e-06,2.147183264053904140e-06,2.184853145879411423e-06,2.222523027704918707e-06,2.260192909530425990e-06,2.297862791355933273e-06,2.335532673181440557e-06,2.373202555006947840e-06 +0.000000000000000000e+00,3.785805827884135287e-08,7.571611655768270573e-08,1.135741748365240520e-07,1.514322331153653850e-07,1.892902913942067180e-07,2.271483496730480510e-07,2.650064079518893840e-07,3.028644662307307170e-07,3.407225245095720501e-07,3.785805827884133831e-07,4.164386410672547161e-07,4.542966993460960491e-07,4.921547576249373292e-07,5.300128159037786622e-07,5.678708741826199952e-07,6.057289324614613282e-07,6.435869907403026612e-07,6.814450490191439942e-07,7.193031072979853273e-07,7.571611655768266603e-07,7.950192238556679933e-07,8.328772821345093263e-07,8.707353404133506593e-07,9.085933986921919923e-07,9.464514569710333253e-07,9.843095152498746583e-07,1.022167573528715991e-06,1.060025631807557324e-06,1.097883690086398657e-06,1.135741748365239990e-06,1.173599806644081323e-06,1.211457864922922656e-06,1.249315923201763989e-06,1.287173981480605322e-06,1.325032039759446655e-06,1.362890098038287988e-06,1.400748156317129321e-06,1.438606214595970655e-06,1.476464272874811988e-06,1.514322331153653321e-06,1.552180389432494654e-06,1.590038447711335987e-06,1.627896505990177320e-06,1.665754564269018653e-06,1.703612622547859986e-06,1.741470680826701319e-06,1.779328739105542652e-06,1.817186797384383985e-06,1.855044855663225318e-06,1.892902913942066651e-06,1.930760972220907984e-06,1.968619030499749317e-06,2.006477088778590650e-06,2.044335147057431983e-06,2.082193205336273316e-06,2.120051263615114649e-06,2.157909321893955982e-06,2.195767380172797315e-06,2.233625438451638648e-06,2.271483496730479981e-06,2.309341555009321314e-06,2.347199613288162647e-06,2.385057671567003980e-06 +0.000000000000000000e+00,3.768338439408382306e-08,7.536676878816764612e-08,1.130501531822514692e-07,1.507335375763352922e-07,1.884169219704191153e-07,2.261003063645029384e-07,2.637836907585867614e-07,3.014670751526705845e-07,3.391504595467544076e-07,3.768338439408382306e-07,4.145172283349220537e-07,4.522006127290058767e-07,4.898839971230896998e-07,5.275673815171735229e-07,5.652507659112573459e-07,6.029341503053411690e-07,6.406175346994249921e-07,6.783009190935088151e-07,7.159843034875926382e-07,7.536676878816764612e-07,7.913510722757602843e-07,8.290344566698441074e-07,8.667178410639279304e-07,9.044012254580117535e-07,9.420846098520955765e-07,9.797679942461793996e-07,1.017451378640263329e-06,1.055134763034347257e-06,1.092818147428431186e-06,1.130501531822515115e-06,1.168184916216599044e-06,1.205868300610682973e-06,1.243551685004766902e-06,1.281235069398850831e-06,1.318918453792934760e-06,1.356601838187018689e-06,1.394285222581102618e-06,1.431968606975186547e-06,1.469651991369270476e-06,1.507335375763354405e-06,1.545018760157438334e-06,1.582702144551522263e-06,1.620385528945606192e-06,1.658068913339690121e-06,1.695752297733774049e-06,1.733435682127857978e-06,1.771119066521941907e-06,1.808802450916025836e-06,1.846485835310109765e-06,1.884169219704193694e-06,1.921852604098277623e-06,1.959535988492361764e-06,1.997219372886445905e-06,2.034902757280530045e-06,2.072586141674614186e-06,2.110269526068698327e-06,2.147952910462782467e-06,2.185636294856866608e-06,2.223319679250950749e-06,2.261003063645034889e-06,2.298686448039119030e-06,2.336369832433203171e-06,2.374053216827287312e-06 +0.000000000000000000e+00,3.702193414552706742e-08,7.404386829105413484e-08,1.110658024365812089e-07,1.480877365821082962e-07,1.851096707276353834e-07,2.221316048731624707e-07,2.591535390186895845e-07,2.961754731642166982e-07,3.331974073097438119e-07,3.702193414552709257e-07,4.072412756007980394e-07,4.442632097463251532e-07,4.812851438918522669e-07,5.183070780373793807e-07,5.553290121829064944e-07,5.923509463284336082e-07,6.293728804739607219e-07,6.663948146194878356e-07,7.034167487650149494e-07,7.404386829105420631e-07,7.774606170560691769e-07,8.144825512015962906e-07,8.515044853471234044e-07,8.885264194926505181e-07,9.255483536381776319e-07,9.625702877837047456e-07,9.995922219292317535e-07,1.036614156074758761e-06,1.073636090220285769e-06,1.110658024365812777e-06,1.147679958511339785e-06,1.184701892656866793e-06,1.221723826802393801e-06,1.258745760947920809e-06,1.295767695093447816e-06,1.332789629238974824e-06,1.369811563384501832e-06,1.406833497530028840e-06,1.443855431675555848e-06,1.480877365821082856e-06,1.517899299966609864e-06,1.554921234112136871e-06,1.591943168257663879e-06,1.628965102403190887e-06,1.665987036548717895e-06,1.703008970694244903e-06,1.740030904839771911e-06,1.777052838985298919e-06,1.814074773130825926e-06,1.851096707276352934e-06,1.888118641421879942e-06,1.925140575567406950e-06,1.962162509712933958e-06,1.999184443858460966e-06,2.036206378003987974e-06,2.073228312149514982e-06,2.110250246295041989e-06,2.147272180440568997e-06,2.184294114586096005e-06,2.221316048731623013e-06,2.258337982877150021e-06,2.295359917022677029e-06,2.332381851168204037e-06 +0.000000000000000000e+00,3.654363153972862408e-08,7.308726307945724816e-08,1.096308946191858722e-07,1.461745261589144963e-07,1.827181576986431204e-07,2.192617892383717445e-07,2.558054207781003686e-07,2.923490523178289927e-07,3.288926838575576167e-07,3.654363153972862408e-07,4.019799469370148649e-07,4.385235784767434890e-07,4.750672100164721131e-07,5.116108415562007371e-07,5.481544730959293612e-07,5.846981046356579853e-07,6.212417361753866094e-07,6.577853677151152335e-07,6.943289992548438576e-07,7.308726307945724816e-07,7.674162623343011057e-07,8.039598938740297298e-07,8.405035254137583539e-07,8.770471569534869780e-07,9.135907884932156020e-07,9.501344200329442261e-07,9.866780515726729561e-07,1.023221683112401686e-06,1.059765314652130416e-06,1.096308946191859146e-06,1.132852577731587876e-06,1.169396209271316606e-06,1.205939840811045336e-06,1.242483472350774066e-06,1.279027103890502796e-06,1.315570735430231526e-06,1.352114366969960256e-06,1.388657998509688986e-06,1.425201630049417716e-06,1.461745261589146446e-06,1.498288893128875176e-06,1.534832524668603906e-06,1.571376156208332635e-06,1.607919787748061365e-06,1.644463419287790095e-06,1.681007050827518825e-06,1.717550682367247555e-06,1.754094313906976285e-06,1.790637945446705015e-06,1.827181576986433745e-06,1.863725208526162475e-06,1.900268840065891205e-06,1.936812471605619935e-06,1.973356103145348453e-06,2.009899734685076971e-06,2.046443366224805490e-06,2.082986997764534008e-06,2.119530629304262526e-06,2.156074260843991044e-06,2.192617892383719562e-06,2.229161523923448081e-06,2.265705155463176599e-06,2.302248787002905117e-06 +0.000000000000000000e+00,3.781375078899840219e-08,7.562750157799680438e-08,1.134412523669952132e-07,1.512550031559936352e-07,1.890687539449920573e-07,2.268825047339904793e-07,2.646962555229889014e-07,3.025100063119873234e-07,3.403237571009857455e-07,3.781375078899841675e-07,4.159512586789825896e-07,4.537650094679810116e-07,4.915787602569794336e-07,5.293925110459778027e-07,5.672062618349761719e-07,6.050200126239745410e-07,6.428337634129729101e-07,6.806475142019712792e-07,7.184612649909696483e-07,7.562750157799680174e-07,7.940887665689663865e-07,8.319025173579647556e-07,8.697162681469631247e-07,9.075300189359614938e-07,9.453437697249598629e-07,9.831575205139582320e-07,1.020971271302956707e-06,1.058785022091955182e-06,1.096598772880953657e-06,1.134412523669952132e-06,1.172226274458950607e-06,1.210040025247949082e-06,1.247853776036947557e-06,1.285667526825946032e-06,1.323481277614944507e-06,1.361295028403942982e-06,1.399108779192941457e-06,1.436922529981939932e-06,1.474736280770938407e-06,1.512550031559936882e-06,1.550363782348935357e-06,1.588177533137933832e-06,1.625991283926932307e-06,1.663805034715930782e-06,1.701618785504929257e-06,1.739432536293927732e-06,1.777246287082926207e-06,1.815060037871924682e-06,1.852873788660923157e-06,1.890687539449921632e-06,1.928501290238920107e-06,1.966315041027918582e-06,2.004128791816917057e-06,2.041942542605915532e-06,2.079756293394914007e-06,2.117570044183912482e-06,2.155383794972910957e-06,2.193197545761909432e-06,2.231011296550907906e-06,2.268825047339906381e-06,2.306638798128904856e-06,2.344452548917903331e-06,2.382266299706901806e-06 +0.000000000000000000e+00,3.723624642254110431e-08,7.447249284508220863e-08,1.117087392676233063e-07,1.489449856901643908e-07,1.861812321127054752e-07,2.234174785352465597e-07,2.606537249577876442e-07,2.978899713803287286e-07,3.351262178028698131e-07,3.723624642254108975e-07,4.095987106479519820e-07,4.468349570704930665e-07,4.840712034930341509e-07,5.213074499155752883e-07,5.585436963381164257e-07,5.957799427606575631e-07,6.330161891831987005e-07,6.702524356057398379e-07,7.074886820282809753e-07,7.447249284508221127e-07,7.819611748733632501e-07,8.191974212959043875e-07,8.564336677184455249e-07,8.936699141409866623e-07,9.309061605635277997e-07,9.681424069860689371e-07,1.005378653408610075e-06,1.042614899831151212e-06,1.079851146253692349e-06,1.117087392676233487e-06,1.154323639098774624e-06,1.191559885521315762e-06,1.228796131943856899e-06,1.266032378366398036e-06,1.303268624788939174e-06,1.340504871211480311e-06,1.377741117634021449e-06,1.414977364056562586e-06,1.452213610479103723e-06,1.489449856901644861e-06,1.526686103324185998e-06,1.563922349746727136e-06,1.601158596169268273e-06,1.638394842591809410e-06,1.675631089014350548e-06,1.712867335436891685e-06,1.750103581859432823e-06,1.787339828281973960e-06,1.824576074704515097e-06,1.861812321127056235e-06,1.899048567549597372e-06,1.936284813972138298e-06,1.973521060394679223e-06,2.010757306817220149e-06,2.047993553239761075e-06,2.085229799662302000e-06,2.122466046084842926e-06,2.159702292507383852e-06,2.196938538929924777e-06,2.234174785352465703e-06,2.271411031775006629e-06,2.308647278197547554e-06,2.345883524620088480e-06 +0.000000000000000000e+00,3.769645928468826286e-08,7.539291856937652572e-08,1.130893778540647820e-07,1.507858371387530250e-07,1.884822964234412680e-07,2.261787557081295110e-07,2.638752149928177540e-07,3.015716742775059970e-07,3.392681335621942400e-07,3.769645928468824830e-07,4.146610521315707260e-07,4.523575114162589691e-07,4.900539707009471591e-07,5.277504299856354021e-07,5.654468892703236451e-07,6.031433485550118882e-07,6.408398078397001312e-07,6.785362671243883742e-07,7.162327264090766172e-07,7.539291856937648602e-07,7.916256449784531032e-07,8.293221042631413462e-07,8.670185635478295892e-07,9.047150228325178322e-07,9.424114821172060752e-07,9.801079414018943183e-07,1.017804400686582561e-06,1.055500859971270804e-06,1.093197319255959047e-06,1.130893778540647290e-06,1.168590237825335533e-06,1.206286697110023776e-06,1.243983156394712019e-06,1.281679615679400262e-06,1.319376074964088505e-06,1.357072534248776748e-06,1.394768993533464991e-06,1.432465452818153234e-06,1.470161912102841477e-06,1.507858371387529720e-06,1.545554830672217963e-06,1.583251289956906206e-06,1.620947749241594449e-06,1.658644208526282692e-06,1.696340667810970935e-06,1.734037127095659178e-06,1.771733586380347421e-06,1.809430045665035664e-06,1.847126504949723907e-06,1.884822964234412150e-06,1.922519423519100394e-06,1.960215882803788637e-06,1.997912342088476880e-06,2.035608801373165123e-06,2.073305260657853366e-06,2.111001719942541609e-06,2.148698179227229852e-06,2.186394638511918095e-06,2.224091097796606338e-06,2.261787557081294581e-06,2.299484016365982824e-06,2.337180475650671067e-06,2.374876934935359310e-06 +0.000000000000000000e+00,3.766988182551208762e-08,7.533976365102417524e-08,1.130096454765362629e-07,1.506795273020483505e-07,1.883494091275604513e-07,2.260192909530725522e-07,2.636891727785846531e-07,3.013590546040967539e-07,3.390289364296088548e-07,3.766988182551209556e-07,4.143687000806330565e-07,4.520385819061451573e-07,4.897084637316572582e-07,5.273783455571693061e-07,5.650482273826813540e-07,6.027181092081934019e-07,6.403879910337054499e-07,6.780578728592174978e-07,7.157277546847295457e-07,7.533976365102415936e-07,7.910675183357536415e-07,8.287374001612656894e-07,8.664072819867777374e-07,9.040771638122897853e-07,9.417470456378018332e-07,9.794169274633138811e-07,1.017086809288825823e-06,1.054756691114337765e-06,1.092426572939849707e-06,1.130096454765361649e-06,1.167766336590873591e-06,1.205436218416385533e-06,1.243106100241897475e-06,1.280775982067409417e-06,1.318445863892921359e-06,1.356115745718433301e-06,1.393785627543945244e-06,1.431455509369457186e-06,1.469125391194969128e-06,1.506795273020481070e-06,1.544465154845993012e-06,1.582135036671504954e-06,1.619804918497016896e-06,1.657474800322528838e-06,1.695144682148040780e-06,1.732814563973552722e-06,1.770484445799064664e-06,1.808154327624576606e-06,1.845824209450088548e-06,1.883494091275600490e-06,1.921163973101112432e-06,1.958833854926624374e-06,1.996503736752136316e-06,2.034173618577648258e-06,2.071843500403160200e-06,2.109513382228672142e-06,2.147183264054184084e-06,2.184853145879696026e-06,2.222523027705207968e-06,2.260192909530719910e-06,2.297862791356231852e-06,2.335532673181743794e-06,2.373202555007255737e-06 +0.000000000000000000e+00,3.781375078900089697e-08,7.562750157800179394e-08,1.134412523670026909e-07,1.512550031560035879e-07,1.890687539450044981e-07,2.268825047340054083e-07,2.646962555230063185e-07,3.025100063120072287e-07,3.403237571010081389e-07,3.781375078900090491e-07,4.159512586790099593e-07,4.537650094680108695e-07,4.915787602570117268e-07,5.293925110460125311e-07,5.672062618350133354e-07,6.050200126240141397e-07,6.428337634130149441e-07,6.806475142020157484e-07,7.184612649910165527e-07,7.562750157800173570e-07,7.940887665690181614e-07,8.319025173580189657e-07,8.697162681470197700e-07,9.075300189360205743e-07,9.453437697250213787e-07,9.831575205140221830e-07,1.020971271303022987e-06,1.058785022092023792e-06,1.096598772881024596e-06,1.134412523670025400e-06,1.172226274459026205e-06,1.210040025248027009e-06,1.247853776037027813e-06,1.285667526826028618e-06,1.323481277615029422e-06,1.361295028404030226e-06,1.399108779193031031e-06,1.436922529982031835e-06,1.474736280771032639e-06,1.512550031560033444e-06,1.550363782349034248e-06,1.588177533138035052e-06,1.625991283927035857e-06,1.663805034716036661e-06,1.701618785505037465e-06,1.739432536294038269e-06,1.777246287083039074e-06,1.815060037872039878e-06,1.852873788661040682e-06,1.890687539450041487e-06,1.928501290239042503e-06,1.966315041028043519e-06,2.004128791817044535e-06,2.041942542606045551e-06,2.079756293395046567e-06,2.117570044184047583e-06,2.155383794973048599e-06,2.193197545762049615e-06,2.231011296551050632e-06,2.268825047340051648e-06,2.306638798129052664e-06,2.344452548918053680e-06,2.382266299707054696e-06 +0.000000000000000000e+00,3.768338439408862071e-08,7.536676878817724142e-08,1.130501531822658687e-07,1.507335375763545093e-07,1.884169219704431499e-07,2.261003063645317904e-07,2.637836907586204310e-07,3.014670751527090716e-07,3.391504595467977121e-07,3.768338439408863527e-07,4.145172283349749932e-07,4.522006127290636338e-07,4.898839971231522744e-07,5.275673815172408620e-07,5.652507659113294496e-07,6.029341503054180372e-07,6.406175346995066249e-07,6.783009190935952125e-07,7.159843034876838001e-07,7.536676878817723877e-07,7.913510722758609753e-07,8.290344566699495630e-07,8.667178410640381506e-07,9.044012254581267382e-07,9.420846098522153258e-07,9.797679942463039135e-07,1.017451378640392501e-06,1.055134763034481089e-06,1.092818147428569676e-06,1.130501531822658264e-06,1.168184916216746852e-06,1.205868300610835439e-06,1.243551685004924027e-06,1.281235069399012614e-06,1.318918453793101202e-06,1.356601838187189790e-06,1.394285222581278377e-06,1.431968606975366965e-06,1.469651991369455553e-06,1.507335375763544140e-06,1.545018760157632728e-06,1.582702144551721315e-06,1.620385528945809903e-06,1.658068913339898491e-06,1.695752297733987078e-06,1.733435682128075666e-06,1.771119066522164254e-06,1.808802450916252841e-06,1.846485835310341429e-06,1.884169219704430016e-06,1.921852604098518604e-06,1.959535988492607403e-06,1.997219372886696203e-06,2.034902757280785002e-06,2.072586141674873802e-06,2.110269526068962601e-06,2.147952910463051400e-06,2.185636294857140200e-06,2.223319679251228999e-06,2.261003063645317798e-06,2.298686448039406598e-06,2.336369832433495397e-06,2.374053216827584197e-06 +0.000000000000000000e+00,3.702193414553157390e-08,7.404386829106314780e-08,1.110658024365947217e-07,1.480877365821262956e-07,1.851096707276578563e-07,2.221316048731894169e-07,2.591535390187209776e-07,2.961754731642525383e-07,3.331974073097840989e-07,3.702193414553156596e-07,4.072412756008472203e-07,4.442632097463787809e-07,4.812851438919103946e-07,5.183070780374420611e-07,5.553290121829737276e-07,5.923509463285053942e-07,6.293728804740370607e-07,6.663948146195687273e-07,7.034167487651003938e-07,7.404386829106320604e-07,7.774606170561637269e-07,8.144825512016953935e-07,8.515044853472270600e-07,8.885264194927587266e-07,9.255483536382903931e-07,9.625702877838220597e-07,9.995922219293537262e-07,1.036614156074885393e-06,1.073636090220417059e-06,1.110658024365948726e-06,1.147679958511480392e-06,1.184701892657012059e-06,1.221723826802543725e-06,1.258745760948075392e-06,1.295767695093607059e-06,1.332789629239138725e-06,1.369811563384670392e-06,1.406833497530202058e-06,1.443855431675733725e-06,1.480877365821265391e-06,1.517899299966797058e-06,1.554921234112328724e-06,1.591943168257860391e-06,1.628965102403392057e-06,1.665987036548923724e-06,1.703008970694455391e-06,1.740030904839987057e-06,1.777052838985518724e-06,1.814074773131050390e-06,1.851096707276582057e-06,1.888118641422113723e-06,1.925140575567645390e-06,1.962162509713177056e-06,1.999184443858708723e-06,2.036206378004240390e-06,2.073228312149772056e-06,2.110250246295303723e-06,2.147272180440835389e-06,2.184294114586367056e-06,2.221316048731898722e-06,2.258337982877430389e-06,2.295359917022962055e-06,2.332381851168493722e-06 +0.000000000000000000e+00,3.654363153973260778e-08,7.308726307946521557e-08,1.096308946191978234e-07,1.461745261589304311e-07,1.827181576986630257e-07,2.192617892383956202e-07,2.558054207781282148e-07,2.923490523178608093e-07,3.288926838575934039e-07,3.654363153973259984e-07,4.019799469370585930e-07,4.385235784767911875e-07,4.750672100165237821e-07,5.116108415562564296e-07,5.481544730959890771e-07,5.846981046357217245e-07,6.212417361754543720e-07,6.577853677151870195e-07,6.943289992549196670e-07,7.308726307946523145e-07,7.674162623343849620e-07,8.039598938741176095e-07,8.405035254138502570e-07,8.770471569535829044e-07,9.135907884933155519e-07,9.501344200330481994e-07,9.866780515727809528e-07,1.023221683112513706e-06,1.059765314652246460e-06,1.096308946191979213e-06,1.132852577731711966e-06,1.169396209271444720e-06,1.205939840811177473e-06,1.242483472350910226e-06,1.279027103890642980e-06,1.315570735430375733e-06,1.352114366970108486e-06,1.388657998509841240e-06,1.425201630049573993e-06,1.461745261589306747e-06,1.498288893129039500e-06,1.534832524668772253e-06,1.571376156208505007e-06,1.607919787748237760e-06,1.644463419287970513e-06,1.681007050827703267e-06,1.717550682367436020e-06,1.754094313907168774e-06,1.790637945446901527e-06,1.827181576986634280e-06,1.863725208526367034e-06,1.900268840066099787e-06,1.936812471605832540e-06,1.973356103145565294e-06,2.009899734685298047e-06,2.046443366225030800e-06,2.082986997764763554e-06,2.119530629304496307e-06,2.156074260844229061e-06,2.192617892383961814e-06,2.229161523923694567e-06,2.265705155463427321e-06,2.302248787003160074e-06 +0.000000000000000000e+00,3.665426653054541009e-08,7.330853306109082019e-08,1.099627995916362369e-07,1.466170661221816668e-07,1.832713326527270968e-07,2.199255991832725267e-07,2.565798657138179831e-07,2.932341322443634396e-07,3.298883987749088960e-07,3.665426653054543524e-07,4.031969318359998088e-07,4.398511983665452652e-07,4.765054648970907216e-07,5.131597314276361780e-07,5.498139979581816345e-07,5.864682644887270909e-07,6.231225310192725473e-07,6.597767975498180037e-07,6.964310640803634601e-07,7.330853306109089165e-07,7.697395971414543730e-07,8.063938636719998294e-07,8.430481302025452858e-07,8.797023967330907422e-07,9.163566632636361986e-07,9.530109297941816550e-07,9.896651963247270056e-07,1.026319462855272356e-06,1.062973729385817707e-06,1.099627995916363057e-06,1.136282262446908408e-06,1.172936528977453758e-06,1.209590795507999109e-06,1.246245062038544459e-06,1.282899328569089810e-06,1.319553595099635160e-06,1.356207861630180511e-06,1.392862128160725861e-06,1.429516394691271212e-06,1.466170661221816563e-06,1.502824927752361913e-06,1.539479194282907264e-06,1.576133460813452614e-06,1.612787727343997965e-06,1.649441993874543315e-06,1.686096260405088666e-06,1.722750526935634016e-06,1.759404793466179367e-06,1.796059059996724717e-06,1.832713326527270068e-06,1.869367593057815418e-06,1.906021859588360769e-06,1.942676126118906119e-06,1.979330392649451470e-06,2.015984659179996821e-06,2.052638925710542171e-06,2.089293192241087522e-06,2.125947458771632872e-06,2.162601725302178223e-06,2.199255991832723573e-06,2.235910258363268924e-06,2.272564524893814274e-06,2.309218791424359625e-06 +0.000000000000000000e+00,3.733209053902995185e-08,7.466418107805990369e-08,1.119962716170898622e-07,1.493283621561198339e-07,1.866604526951498056e-07,2.239925432341797773e-07,2.613246337732097225e-07,2.986567243122396677e-07,3.359888148512696129e-07,3.733209053902995582e-07,4.106529959293295034e-07,4.479850864683594486e-07,4.853171770073893939e-07,5.226492675464193391e-07,5.599813580854492843e-07,5.973134486244792295e-07,6.346455391635091748e-07,6.719776297025391200e-07,7.093097202415690652e-07,7.466418107805990105e-07,7.839739013196289557e-07,8.213059918586589009e-07,8.586380823976888462e-07,8.959701729367187914e-07,9.333022634757487366e-07,9.706343540147785760e-07,1.007966444553808521e-06,1.045298535092838466e-06,1.082630625631868412e-06,1.119962716170898357e-06,1.157294806709928302e-06,1.194626897248958247e-06,1.231958987787988193e-06,1.269291078327018138e-06,1.306623168866048083e-06,1.343955259405078028e-06,1.381287349944107973e-06,1.418619440483137919e-06,1.455951531022167864e-06,1.493283621561197809e-06,1.530615712100227754e-06,1.567947802639257700e-06,1.605279893178287645e-06,1.642611983717317590e-06,1.679944074256347535e-06,1.717276164795377481e-06,1.754608255334407426e-06,1.791940345873437371e-06,1.829272436412467316e-06,1.866604526951497261e-06,1.903936617490527207e-06,1.941268708029557152e-06,1.978600798568587097e-06,2.015932889107617042e-06,2.053264979646646988e-06,2.090597070185676933e-06,2.127929160724706878e-06,2.165261251263736823e-06,2.202593341802766769e-06,2.239925432341796714e-06,2.277257522880826659e-06,2.314589613419856604e-06,2.351921703958886549e-06 +0.000000000000000000e+00,3.543297966008682039e-08,7.086595932017364079e-08,1.062989389802604612e-07,1.417319186403472816e-07,1.771648983004341020e-07,2.125978779605209224e-07,2.480308576206077163e-07,2.834638372806945102e-07,3.188968169407813041e-07,3.543297966008680980e-07,3.897627762609548920e-07,4.251957559210416859e-07,4.606287355811284798e-07,4.960617152412152208e-07,5.314946949013019618e-07,5.669276745613887028e-07,6.023606542214754437e-07,6.377936338815621847e-07,6.732266135416489257e-07,7.086595932017356667e-07,7.440925728618224077e-07,7.795255525219091487e-07,8.149585321819958896e-07,8.503915118420826306e-07,8.858244915021693716e-07,9.212574711622561126e-07,9.566904508223427477e-07,9.921234304824293828e-07,1.027556410142516018e-06,1.062989389802602653e-06,1.098422369462689288e-06,1.133855349122775923e-06,1.169288328782862558e-06,1.204721308442949193e-06,1.240154288103035829e-06,1.275587267763122464e-06,1.311020247423209099e-06,1.346453227083295734e-06,1.381886206743382369e-06,1.417319186403469004e-06,1.452752166063555639e-06,1.488185145723642274e-06,1.523618125383728909e-06,1.559051105043815544e-06,1.594484084703902180e-06,1.629917064363988815e-06,1.665350044024075450e-06,1.700783023684162085e-06,1.736216003344248720e-06,1.771648983004335355e-06,1.807081962664421990e-06,1.842514942324508625e-06,1.877947921984595260e-06,1.913380901644682107e-06,1.948813881304768954e-06,1.984246860964855801e-06,2.019679840624942648e-06,2.055112820285029495e-06,2.090545799945116342e-06,2.125978779605203188e-06,2.161411759265290035e-06,2.196844738925376882e-06,2.232277718585463729e-06 +0.000000000000000000e+00,3.665426653054932762e-08,7.330853306109865524e-08,1.099627995916479895e-07,1.466170661221973369e-07,1.832713326527466844e-07,2.199255991832960319e-07,2.565798657138454058e-07,2.932341322443947798e-07,3.298883987749441537e-07,3.665426653054935277e-07,4.031969318360429016e-07,4.398511983665922755e-07,4.765054648971416495e-07,5.131597314276910234e-07,5.498139979582403974e-07,5.864682644887897713e-07,6.231225310193391453e-07,6.597767975498885192e-07,6.964310640804378931e-07,7.330853306109872671e-07,7.697395971415366410e-07,8.063938636720860150e-07,8.430481302026353889e-07,8.797023967331847629e-07,9.163566632637341368e-07,9.530109297942835107e-07,9.896651963248328847e-07,1.026319462855382259e-06,1.062973729385931633e-06,1.099627995916481007e-06,1.136282262447030380e-06,1.172936528977579754e-06,1.209590795508129128e-06,1.246245062038678502e-06,1.282899328569227876e-06,1.319553595099777250e-06,1.356207861630326624e-06,1.392862128160875998e-06,1.429516394691425372e-06,1.466170661221974746e-06,1.502824927752524120e-06,1.539479194283073494e-06,1.576133460813622868e-06,1.612787727344172242e-06,1.649441993874721616e-06,1.686096260405270990e-06,1.722750526935820364e-06,1.759404793466369737e-06,1.796059059996919111e-06,1.832713326527468485e-06,1.869367593058017859e-06,1.906021859588567233e-06,1.942676126119116607e-06,1.979330392649665769e-06,2.015984659180214932e-06,2.052638925710764094e-06,2.089293192241313256e-06,2.125947458771862418e-06,2.162601725302411580e-06,2.199255991832960742e-06,2.235910258363509905e-06,2.272564524894059067e-06,2.309218791424608229e-06 +0.000000000000000000e+00,3.733209053903406790e-08,7.466418107806813580e-08,1.119962716171021971e-07,1.493283621561362451e-07,1.866604526951702932e-07,2.239925432342043412e-07,2.613246337732384157e-07,2.986567243122724902e-07,3.359888148513065648e-07,3.733209053903406393e-07,4.106529959293747138e-07,4.479850864684087883e-07,4.853171770074428628e-07,5.226492675464769373e-07,5.599813580855110118e-07,5.973134486245450864e-07,6.346455391635791609e-07,6.719776297026132354e-07,7.093097202416473099e-07,7.466418107806813844e-07,7.839739013197154589e-07,8.213059918587495335e-07,8.586380823977836080e-07,8.959701729368176825e-07,9.333022634758517570e-07,9.706343540148857256e-07,1.007966444553919694e-06,1.045298535092953663e-06,1.082630625631987632e-06,1.119962716171021600e-06,1.157294806710055569e-06,1.194626897249089537e-06,1.231958987788123506e-06,1.269291078327157475e-06,1.306623168866191443e-06,1.343955259405225412e-06,1.381287349944259381e-06,1.418619440483293349e-06,1.455951531022327318e-06,1.493283621561361287e-06,1.530615712100395255e-06,1.567947802639429224e-06,1.605279893178463192e-06,1.642611983717497161e-06,1.679944074256531130e-06,1.717276164795565098e-06,1.754608255334599067e-06,1.791940345873633036e-06,1.829272436412667004e-06,1.866604526951700973e-06,1.903936617490734942e-06,1.941268708029768910e-06,1.978600798568802667e-06,2.015932889107836424e-06,2.053264979646870181e-06,2.090597070185903938e-06,2.127929160724937695e-06,2.165261251263971451e-06,2.202593341803005208e-06,2.239925432342038965e-06,2.277257522881072722e-06,2.314589613420106479e-06,2.351921703959140236e-06 +0.000000000000000000e+00,3.543297966009039381e-08,7.086595932018078763e-08,1.062989389802711814e-07,1.417319186403615753e-07,1.771648983004519691e-07,2.125978779605423629e-07,2.480308576206327567e-07,2.834638372807231505e-07,3.188968169408135443e-07,3.543297966009039381e-07,3.897627762609943319e-07,4.251957559210847258e-07,4.606287355811751196e-07,4.960617152412655134e-07,5.314946949013558543e-07,5.669276745614461951e-07,6.023606542215365360e-07,6.377936338816268769e-07,6.732266135417172177e-07,7.086595932018075586e-07,7.440925728618978995e-07,7.795255525219882404e-07,8.149585321820785812e-07,8.503915118421689221e-07,8.858244915022592630e-07,9.212574711623496039e-07,9.566904508224399447e-07,9.921234304825303915e-07,1.027556410142620838e-06,1.062989389802711285e-06,1.098422369462801732e-06,1.133855349122892178e-06,1.169288328782982625e-06,1.204721308443073072e-06,1.240154288103163519e-06,1.275587267763253966e-06,1.311020247423344412e-06,1.346453227083434859e-06,1.381886206743525306e-06,1.417319186403615753e-06,1.452752166063706199e-06,1.488185145723796646e-06,1.523618125383887093e-06,1.559051105043977540e-06,1.594484084704067986e-06,1.629917064364158433e-06,1.665350044024248880e-06,1.700783023684339327e-06,1.736216003344429773e-06,1.771648983004520220e-06,1.807081962664610667e-06,1.842514942324701114e-06,1.877947921984791560e-06,1.913380901644882007e-06,1.948813881304972242e-06,1.984246860965062477e-06,2.019679840625152712e-06,2.055112820285242947e-06,2.090545799945333182e-06,2.125978779605423417e-06,2.161411759265513652e-06,2.196844738925603887e-06,2.232277718585694122e-06 +0.000000000000000000e+00,3.450447708699787288e-08,6.900895417399574576e-08,1.035134312609936253e-07,1.380179083479915180e-07,1.725223854349894107e-07,2.070268625219873035e-07,2.415313396089851962e-07,2.760358166959830889e-07,3.105402937829809817e-07,3.450447708699788744e-07,3.795492479569767671e-07,4.140537250439746599e-07,4.485582021309725526e-07,4.830626792179704983e-07,5.175671563049684969e-07,5.520716333919664955e-07,5.865761104789644941e-07,6.210805875659624927e-07,6.555850646529604913e-07,6.900895417399584899e-07,7.245940188269564886e-07,7.590984959139544872e-07,7.936029730009524858e-07,8.281074500879504844e-07,8.626119271749484830e-07,8.971164042619464816e-07,9.316208813489444802e-07,9.661253584359424789e-07,1.000629835522940477e-06,1.035134312609938476e-06,1.069638789696936475e-06,1.104143266783934473e-06,1.138647743870932472e-06,1.173152220957930471e-06,1.207656698044928469e-06,1.242161175131926468e-06,1.276665652218924466e-06,1.311170129305922465e-06,1.345674606392920464e-06,1.380179083479918462e-06,1.414683560566916461e-06,1.449188037653914459e-06,1.483692514740912458e-06,1.518196991827910457e-06,1.552701468914908455e-06,1.587205946001906454e-06,1.621710423088904452e-06,1.656214900175902451e-06,1.690719377262900450e-06,1.725223854349898448e-06,1.759728331436896447e-06,1.794232808523894446e-06,1.828737285610892444e-06,1.863241762697890443e-06,1.897746239784888441e-06,1.932250716871886228e-06,1.966755193958884015e-06,2.001259671045881802e-06,2.035764148132879589e-06,2.070268625219877376e-06,2.104773102306875163e-06,2.139277579393872949e-06,2.173782056480870736e-06 +0.000000000000000000e+00,3.569154782615959120e-08,7.138309565231918240e-08,1.070746434784787736e-07,1.427661913046383648e-07,1.784577391307979560e-07,2.141492869569575472e-07,2.498408347831171384e-07,2.855323826092767296e-07,3.212239304354363208e-07,3.569154782615959120e-07,3.926070260877555032e-07,4.282985739139150944e-07,4.639901217400746856e-07,4.996816695662342768e-07,5.353732173923938680e-07,5.710647652185534592e-07,6.067563130447130504e-07,6.424478608708726416e-07,6.781394086970322328e-07,7.138309565231918240e-07,7.495225043493514152e-07,7.852140521755110064e-07,8.209056000016705976e-07,8.565971478278301888e-07,8.922886956539897800e-07,9.279802434801493712e-07,9.636717913063089624e-07,9.993633391324685536e-07,1.035054886958628145e-06,1.070746434784787736e-06,1.106437982610947327e-06,1.142129530437106918e-06,1.177821078263266510e-06,1.213512626089426101e-06,1.249204173915585692e-06,1.284895721741745283e-06,1.320587269567904874e-06,1.356278817394064466e-06,1.391970365220224057e-06,1.427661913046383648e-06,1.463353460872543239e-06,1.499045008698702830e-06,1.534736556524862422e-06,1.570428104351022013e-06,1.606119652177181604e-06,1.641811200003341195e-06,1.677502747829500786e-06,1.713194295655660378e-06,1.748885843481819969e-06,1.784577391307979560e-06,1.820268939134139151e-06,1.855960486960298742e-06,1.891652034786458334e-06,1.927343582612617925e-06,1.963035130438777304e-06,1.998726678264936684e-06,2.034418226091096063e-06,2.070109773917255443e-06,2.105801321743414822e-06,2.141492869569574201e-06,2.177184417395733581e-06,2.212875965221892960e-06,2.248567513048052340e-06 +0.000000000000000000e+00,3.332843600242297653e-08,6.665687200484595306e-08,9.998530800726892959e-08,1.333137440096919061e-07,1.666421800121148826e-07,1.999706160145378592e-07,2.332990520169608357e-07,2.666274880193838122e-07,2.999559240218067888e-07,3.332843600242297653e-07,3.666127960266527418e-07,3.999412320290757184e-07,4.332696680314986949e-07,4.665981040339216714e-07,4.999265400363447009e-07,5.332549760387677304e-07,5.665834120411907598e-07,5.999118480436137893e-07,6.332402840460368188e-07,6.665687200484598482e-07,6.998971560508828777e-07,7.332255920533059072e-07,7.665540280557289366e-07,7.998824640581519661e-07,8.332109000605749956e-07,8.665393360629980250e-07,8.998677720654210545e-07,9.331962080678440840e-07,9.665246440702671135e-07,9.998530800726902488e-07,1.033181516075113384e-06,1.066509952077536519e-06,1.099838388079959655e-06,1.133166824082382790e-06,1.166495260084805926e-06,1.199823696087229061e-06,1.233152132089652196e-06,1.266480568092075332e-06,1.299809004094498467e-06,1.333137440096921602e-06,1.366465876099344738e-06,1.399794312101767873e-06,1.433122748104191008e-06,1.466451184106614144e-06,1.499779620109037279e-06,1.533108056111460414e-06,1.566436492113883550e-06,1.599764928116306685e-06,1.633093364118729820e-06,1.666421800121152956e-06,1.699750236123576091e-06,1.733078672125999226e-06,1.766407108128422362e-06,1.799735544130845497e-06,1.833063980133268633e-06,1.866392416135691768e-06,1.899720852138114903e-06,1.933049288140538039e-06,1.966377724142960962e-06,1.999706160145383886e-06,2.033034596147806809e-06,2.066363032150229733e-06,2.099691468152652657e-06 +0.000000000000000000e+00,3.450447708700196908e-08,6.900895417400393816e-08,1.035134312610059072e-07,1.380179083480078763e-07,1.725223854350098454e-07,2.070268625220118145e-07,2.415313396090137836e-07,2.760358166960157526e-07,3.105402937830177217e-07,3.450447708700196908e-07,3.795492479570216599e-07,4.140537250440236290e-07,4.485582021310255980e-07,4.830626792180275671e-07,5.175671563050294833e-07,5.520716333920313994e-07,5.865761104790333155e-07,6.210805875660352317e-07,6.555850646530371478e-07,6.900895417400390640e-07,7.245940188270409801e-07,7.590984959140428962e-07,7.936029730010448124e-07,8.281074500880467285e-07,8.626119271750486447e-07,8.971164042620505608e-07,9.316208813490524769e-07,9.661253584360544990e-07,1.000629835523056521e-06,1.035134312610058543e-06,1.069638789697060565e-06,1.104143266784062587e-06,1.138647743871064609e-06,1.173152220958066631e-06,1.207656698045068653e-06,1.242161175132070675e-06,1.276665652219072697e-06,1.311170129306074719e-06,1.345674606393076741e-06,1.380179083480078763e-06,1.414683560567080785e-06,1.449188037654082807e-06,1.483692514741084829e-06,1.518196991828086851e-06,1.552701468915088873e-06,1.587205946002090895e-06,1.621710423089092917e-06,1.656214900176094939e-06,1.690719377263096961e-06,1.725223854350098983e-06,1.759728331437101005e-06,1.794232808524103027e-06,1.828737285611105049e-06,1.863241762698107071e-06,1.897746239785109093e-06,1.932250716872111115e-06,1.966755193959113138e-06,2.001259671046115160e-06,2.035764148133117182e-06,2.070268625220119204e-06,2.104773102307121226e-06,2.139277579394123248e-06,2.173782056481125270e-06 +0.000000000000000000e+00,3.569154782616362122e-08,7.138309565232724245e-08,1.070746434784908703e-07,1.427661913046545114e-07,1.784577391308181524e-07,2.141492869569817935e-07,2.498408347831454081e-07,2.855323826093090227e-07,3.212239304354726373e-07,3.569154782616362519e-07,3.926070260877998665e-07,4.282985739139634812e-07,4.639901217401270958e-07,4.996816695662907104e-07,5.353732173924543250e-07,5.710647652186179396e-07,6.067563130447815542e-07,6.424478608709451688e-07,6.781394086971087834e-07,7.138309565232723980e-07,7.495225043494360126e-07,7.852140521755996272e-07,8.209056000017632418e-07,8.565971478279268564e-07,8.922886956540904710e-07,9.279802434802540856e-07,9.636717913064175944e-07,9.993633391325812090e-07,1.035054886958744824e-06,1.070746434784908438e-06,1.106437982611072053e-06,1.142129530437235667e-06,1.177821078263399282e-06,1.213512626089562897e-06,1.249204173915726511e-06,1.284895721741890126e-06,1.320587269568053740e-06,1.356278817394217355e-06,1.391970365220380970e-06,1.427661913046544584e-06,1.463353460872708199e-06,1.499045008698871813e-06,1.534736556525035428e-06,1.570428104351199043e-06,1.606119652177362657e-06,1.641811200003526272e-06,1.677502747829689886e-06,1.713194295655853501e-06,1.748885843482017116e-06,1.784577391308180730e-06,1.820268939134344345e-06,1.855960486960507960e-06,1.891652034786671574e-06,1.927343582612835189e-06,1.963035130438998803e-06,1.998726678265162418e-06,2.034418226091326033e-06,2.070109773917489647e-06,2.105801321743653262e-06,2.141492869569816876e-06,2.177184417395980491e-06,2.212875965222144106e-06,2.248567513048307720e-06 +0.000000000000000000e+00,3.332843600242641760e-08,6.665687200485283520e-08,9.998530800727925280e-08,1.333137440097056704e-07,1.666421800121320880e-07,1.999706160145585056e-07,2.332990520169849232e-07,2.666274880194113408e-07,2.999559240218377584e-07,3.332843600242641760e-07,3.666127960266905936e-07,3.999412320291170112e-07,4.332696680315434288e-07,4.665981040339698464e-07,4.999265400363962640e-07,5.332549760388226816e-07,5.665834120412490992e-07,5.999118480436755168e-07,6.332402840461019344e-07,6.665687200485283520e-07,6.998971560509547696e-07,7.332255920533811872e-07,7.665540280558076048e-07,7.998824640582340224e-07,8.332109000606604400e-07,8.665393360630868576e-07,8.998677720655132752e-07,9.331962080679396928e-07,9.665246440703660046e-07,9.998530800727923163e-07,1.033181516075218628e-06,1.066509952077644940e-06,1.099838388080071251e-06,1.133166824082497563e-06,1.166495260084923875e-06,1.199823696087350187e-06,1.233152132089776498e-06,1.266480568092202810e-06,1.299809004094629122e-06,1.333137440097055433e-06,1.366465876099481745e-06,1.399794312101908057e-06,1.433122748104334369e-06,1.466451184106760680e-06,1.499779620109186992e-06,1.533108056111613304e-06,1.566436492114039616e-06,1.599764928116465927e-06,1.633093364118892239e-06,1.666421800121318551e-06,1.699750236123744862e-06,1.733078672126171174e-06,1.766407108128597486e-06,1.799735544131023798e-06,1.833063980133450109e-06,1.866392416135876421e-06,1.899720852138302733e-06,1.933049288140729044e-06,1.966377724143155356e-06,1.999706160145581668e-06,2.033034596148007980e-06,2.066363032150434291e-06,2.099691468152860603e-06 +0.000000000000000000e+00,3.161803971537540828e-08,6.323607943075081655e-08,9.485411914612622483e-08,1.264721588615016331e-07,1.580901985768770414e-07,1.897082382922524497e-07,2.213262780076278579e-07,2.529443177230032662e-07,2.845623574383786480e-07,3.161803971537540298e-07,3.477984368691294116e-07,3.794164765845047934e-07,4.110345162998801753e-07,4.426525560152555571e-07,4.742705957306309389e-07,5.058886354460063207e-07,5.375066751613817025e-07,5.691247148767570843e-07,6.007427545921324661e-07,6.323607943075078479e-07,6.639788340228832297e-07,6.955968737382586115e-07,7.272149134536339933e-07,7.588329531690093751e-07,7.904509928843847569e-07,8.220690325997601387e-07,8.536870723151355206e-07,8.853051120305109024e-07,9.169231517458862842e-07,9.485411914612616660e-07,9.801592311766370478e-07,1.011777270892012430e-06,1.043395310607387811e-06,1.075013350322763193e-06,1.106631390038138575e-06,1.138249429753513957e-06,1.169867469468889339e-06,1.201485509184264720e-06,1.233103548899640102e-06,1.264721588615015484e-06,1.296339628330390866e-06,1.327957668045766248e-06,1.359575707761141629e-06,1.391193747476517011e-06,1.422811787191892393e-06,1.454429826907267775e-06,1.486047866622643157e-06,1.517665906338018539e-06,1.549283946053393920e-06,1.580901985768769302e-06,1.612520025484144684e-06,1.644138065199520066e-06,1.675756104914895448e-06,1.707374144630270829e-06,1.738992184345646211e-06,1.770610224061021593e-06,1.802228263776396975e-06,1.833846303491772357e-06,1.865464343207147738e-06,1.897082382922523120e-06,1.928700422637898714e-06,1.960318462353274519e-06,1.991936502068650324e-06 +0.000000000000000000e+00,3.313296195533403769e-08,6.626592391066807539e-08,9.939888586600211308e-08,1.325318478213361508e-07,1.656648097766701752e-07,1.987977717320041997e-07,2.319307336873382242e-07,2.650636956426722486e-07,2.981966575980062731e-07,3.313296195533402975e-07,3.644625815086743220e-07,3.975955434640083464e-07,4.307285054193423709e-07,4.638614673746763954e-07,4.969944293300104728e-07,5.301273912853446031e-07,5.632603532406787334e-07,5.963933151960128638e-07,6.295262771513469941e-07,6.626592391066811245e-07,6.957922010620152548e-07,7.289251630173493851e-07,7.620581249726835155e-07,7.951910869280176458e-07,8.283240488833517761e-07,8.614570108386859065e-07,8.945899727940200368e-07,9.277229347493541672e-07,9.608558967046882975e-07,9.939888586600224278e-07,1.027121820615356558e-06,1.060254782570690689e-06,1.093387744526024819e-06,1.126520706481358949e-06,1.159653668436693080e-06,1.192786630392027210e-06,1.225919592347361340e-06,1.259052554302695471e-06,1.292185516258029601e-06,1.325318478213363731e-06,1.358451440168697862e-06,1.391584402124031992e-06,1.424717364079366122e-06,1.457850326034700253e-06,1.490983287990034383e-06,1.524116249945368513e-06,1.557249211900702644e-06,1.590382173856036774e-06,1.623515135811370904e-06,1.656648097766705035e-06,1.689781059722039165e-06,1.722914021677373295e-06,1.756046983632707426e-06,1.789179945588041556e-06,1.822312907543375686e-06,1.855445869498709817e-06,1.888578831454043947e-06,1.921711793409378289e-06,1.954844755364712631e-06,1.987977717320046973e-06,2.021110679275381315e-06,2.054243641230715657e-06,2.087376603186050000e-06 +0.000000000000000000e+00,3.052658958105917948e-08,6.105317916211835896e-08,9.157976874317753182e-08,1.221063583242366914e-07,1.526329479052958511e-07,1.831595374863550107e-07,2.136861270674141703e-07,2.442127166484733300e-07,2.747393062295324896e-07,3.052658958105916492e-07,3.357924853916508088e-07,3.663190749727099685e-07,3.968456645537691281e-07,4.273722541348282877e-07,4.578988437158874473e-07,4.884254332969465540e-07,5.189520228780056078e-07,5.494786124590646615e-07,5.800052020401237153e-07,6.105317916211827690e-07,6.410583812022418228e-07,6.715849707833008765e-07,7.021115603643599303e-07,7.326381499454189840e-07,7.631647395264780378e-07,7.936913291075370915e-07,8.242179186885961453e-07,8.547445082696551990e-07,8.852710978507142527e-07,9.157976874317733065e-07,9.463242770128323602e-07,9.768508665938914140e-07,1.007377456174950468e-06,1.037904045756009521e-06,1.068430635337068575e-06,1.098957224918127629e-06,1.129483814499186683e-06,1.160010404080245736e-06,1.190536993661304790e-06,1.221063583242363844e-06,1.251590172823422898e-06,1.282116762404481951e-06,1.312643351985541005e-06,1.343169941566600059e-06,1.373696531147659113e-06,1.404223120728718166e-06,1.434749710309777220e-06,1.465276299890836274e-06,1.495802889471895328e-06,1.526329479052954381e-06,1.556856068634013435e-06,1.587382658215072489e-06,1.617909247796131543e-06,1.648435837377190596e-06,1.678962426958249650e-06,1.709489016539308704e-06,1.740015606120367758e-06,1.770542195701426811e-06,1.801068785282485865e-06,1.831595374863544919e-06,1.862121964444603973e-06,1.892648554025663026e-06,1.923175143606721868e-06 +0.000000000000000000e+00,3.161803971538010005e-08,6.323607943076020009e-08,9.485411914614030675e-08,1.264721588615204267e-07,1.580901985769005466e-07,1.897082382922806664e-07,2.213262780076607863e-07,2.529443177230409062e-07,2.845623574384209997e-07,3.161803971538010931e-07,3.477984368691811865e-07,3.794164765845612800e-07,4.110345162999413734e-07,4.426525560153214668e-07,4.742705957307015602e-07,5.058886354460817066e-07,5.375066751614618530e-07,5.691247148768419993e-07,6.007427545922221457e-07,6.323607943076022921e-07,6.639788340229824384e-07,6.955968737383625848e-07,7.272149134537427312e-07,7.588329531691228776e-07,7.904509928845030239e-07,8.220690325998831703e-07,8.536870723152633167e-07,8.853051120306434630e-07,9.169231517460236094e-07,9.485411914614037558e-07,9.801592311767837962e-07,1.011777270892163837e-06,1.043395310607543877e-06,1.075013350322923918e-06,1.106631390038303958e-06,1.138249429753683999e-06,1.169867469469064039e-06,1.201485509184444080e-06,1.233103548899824120e-06,1.264721588615204161e-06,1.296339628330584201e-06,1.327957668045964242e-06,1.359575707761344282e-06,1.391193747476724323e-06,1.422811787192104363e-06,1.454429826907484404e-06,1.486047866622864444e-06,1.517665906338244485e-06,1.549283946053624525e-06,1.580901985769004566e-06,1.612520025484384606e-06,1.644138065199764647e-06,1.675756104915144687e-06,1.707374144630524727e-06,1.738992184345904768e-06,1.770610224061284808e-06,1.802228263776664849e-06,1.833846303492044889e-06,1.865464343207424930e-06,1.897082382922804970e-06,1.928700422638185011e-06,1.960318462353565051e-06,1.991936502068945092e-06 +0.000000000000000000e+00,3.313296195533838536e-08,6.626592391067677071e-08,9.939888586601514945e-08,1.325318478213535150e-07,1.656648097766918805e-07,1.987977717320302460e-07,2.319307336873686115e-07,2.650636956427069770e-07,2.981966575980453425e-07,3.313296195533837080e-07,3.644625815087220735e-07,3.975955434640604390e-07,4.307285054193988045e-07,4.638614673747371700e-07,4.969944293300754825e-07,5.301273912854138480e-07,5.632603532407522136e-07,5.963933151960905791e-07,6.295262771514289446e-07,6.626592391067673101e-07,6.957922010621056756e-07,7.289251630174440411e-07,7.620581249727824066e-07,7.951910869281207721e-07,8.283240488834591376e-07,8.614570108387975031e-07,8.945899727941358686e-07,9.277229347494742341e-07,9.608558967048125996e-07,9.939888586601509651e-07,1.027121820615489331e-06,1.060254782570827696e-06,1.093387744526166062e-06,1.126520706481504427e-06,1.159653668436842793e-06,1.192786630392181158e-06,1.225919592347519524e-06,1.259052554302857889e-06,1.292185516258196255e-06,1.325318478213534620e-06,1.358451440168872986e-06,1.391584402124211351e-06,1.424717364079549717e-06,1.457850326034888082e-06,1.490983287990226448e-06,1.524116249945564813e-06,1.557249211900903179e-06,1.590382173856241544e-06,1.623515135811579910e-06,1.656648097766918275e-06,1.689781059722256641e-06,1.722914021677595006e-06,1.756046983632933372e-06,1.789179945588271737e-06,1.822312907543610103e-06,1.855445869498948468e-06,1.888578831454286834e-06,1.921711793409625199e-06,1.954844755364963776e-06,1.987977717320302354e-06,2.021110679275640931e-06,2.054243641230979508e-06,2.087376603186318085e-06 +0.000000000000000000e+00,3.052658958106272643e-08,6.105317916212545286e-08,9.157976874318817267e-08,1.221063583242508792e-07,1.526329479053135858e-07,1.831595374863762924e-07,2.136861270674389990e-07,2.442127166485017056e-07,2.747393062295644121e-07,3.052658958106271187e-07,3.357924853916898253e-07,3.663190749727525319e-07,3.968456645538152384e-07,4.273722541348779450e-07,4.578988437159406516e-07,4.884254332970033052e-07,5.189520228780659589e-07,5.494786124591286125e-07,5.800052020401912661e-07,6.105317916212539198e-07,6.410583812023165734e-07,6.715849707833792271e-07,7.021115603644418807e-07,7.326381499455045343e-07,7.631647395265671880e-07,7.936913291076298416e-07,8.242179186886924952e-07,8.547445082697551489e-07,8.852710978508178025e-07,9.157976874318804562e-07,9.463242770129431098e-07,9.768508665940057634e-07,1.007377456175068417e-06,1.037904045756131071e-06,1.068430635337193724e-06,1.098957224918256378e-06,1.129483814499319032e-06,1.160010404080381685e-06,1.190536993661444339e-06,1.221063583242506993e-06,1.251590172823569646e-06,1.282116762404632300e-06,1.312643351985694953e-06,1.343169941566757607e-06,1.373696531147820261e-06,1.404223120728882914e-06,1.434749710309945568e-06,1.465276299891008222e-06,1.495802889472070875e-06,1.526329479053133529e-06,1.556856068634196183e-06,1.587382658215258836e-06,1.617909247796321490e-06,1.648435837377384143e-06,1.678962426958446797e-06,1.709489016539509451e-06,1.740015606120572104e-06,1.770542195701634758e-06,1.801068785282697412e-06,1.831595374863760065e-06,1.862121964444822719e-06,1.892648554025885373e-06,1.923175143606948026e-06 +0.000000000000000000e+00,2.827102710323351440e-08,5.654205420646702880e-08,8.481308130970054651e-08,1.130841084129340708e-07,1.413551355161676084e-07,1.696261626194011460e-07,1.978971897226346835e-07,2.261682168258682211e-07,2.544392439291017586e-07,2.827102710323353227e-07,3.109812981355688867e-07,3.392523252388024507e-07,3.675233523420360148e-07,3.957943794452695788e-07,4.240654065485031428e-07,4.523364336517367068e-07,4.806074607549702709e-07,5.088784878582038349e-07,5.371495149614373989e-07,5.654205420646709630e-07,5.936915691679045270e-07,6.219625962711380910e-07,6.502336233743716551e-07,6.785046504776052191e-07,7.067756775808387831e-07,7.350467046840723471e-07,7.633177317873059112e-07,7.915887588905394752e-07,8.198597859937730392e-07,8.481308130970066033e-07,8.764018402002401673e-07,9.046728673034737313e-07,9.329438944067072954e-07,9.612149215099409653e-07,9.894859486131746352e-07,1.017756975716408305e-06,1.046028002819641975e-06,1.074299029922875645e-06,1.102570057026109315e-06,1.130841084129342985e-06,1.159112111232576655e-06,1.187383138335810325e-06,1.215654165439043994e-06,1.243925192542277664e-06,1.272196219645511334e-06,1.300467246748745004e-06,1.328738273851978674e-06,1.357009300955212344e-06,1.385280328058446014e-06,1.413551355161679684e-06,1.441822382264913354e-06,1.470093409368147024e-06,1.498364436471380694e-06,1.526635463574614363e-06,1.554906490677848033e-06,1.583177517781081703e-06,1.611448544884315373e-06,1.639719571987549043e-06,1.667990599090782713e-06,1.696261626194016383e-06,1.724532653297250053e-06,1.752803680400483723e-06,1.781074707503717393e-06 +0.000000000000000000e+00,2.998983714523196162e-08,5.997967429046392324e-08,8.996951143569588486e-08,1.199593485809278465e-07,1.499491857261598081e-07,1.799390228713917697e-07,2.099288600166237313e-07,2.399186971618556930e-07,2.699085343070876546e-07,2.998983714523196162e-07,3.298882085975515778e-07,3.598780457427835394e-07,3.898678828880155011e-07,4.198577200332474627e-07,4.498475571784794243e-07,4.798373943237113859e-07,5.098272314689433475e-07,5.398170686141753092e-07,5.698069057594072708e-07,5.997967429046392324e-07,6.297865800498711940e-07,6.597764171951031556e-07,6.897662543403351172e-07,7.197560914855670789e-07,7.497459286307990405e-07,7.797357657760310021e-07,8.097256029212629637e-07,8.397154400664949253e-07,8.697052772117268870e-07,8.996951143569588486e-07,9.296849515021908102e-07,9.596747886474227718e-07,9.896646257926546276e-07,1.019654462937886483e-06,1.049644300083118339e-06,1.079634137228350195e-06,1.109623974373582051e-06,1.139613811518813906e-06,1.169603648664045762e-06,1.199593485809277618e-06,1.229583322954509473e-06,1.259573160099741329e-06,1.289562997244973185e-06,1.319552834390205041e-06,1.349542671535436896e-06,1.379532508680668752e-06,1.409522345825900608e-06,1.439512182971132464e-06,1.469502020116364319e-06,1.499491857261596175e-06,1.529481694406828031e-06,1.559471531552059887e-06,1.589461368697291742e-06,1.619451205842523598e-06,1.649441042987755454e-06,1.679430880132987310e-06,1.709420717278219165e-06,1.739410554423451021e-06,1.769400391568682877e-06,1.799390228713914733e-06,1.829380065859146588e-06,1.859369903004378444e-06,1.889359740149610300e-06 +0.000000000000000000e+00,2.727273965018838806e-08,5.454547930037677612e-08,8.181821895056517079e-08,1.090909586007535655e-07,1.363636982509419601e-07,1.636364379011303416e-07,1.909091775513187230e-07,2.181819172015071045e-07,2.454546568516955124e-07,2.727273965018839203e-07,3.000001361520723282e-07,3.272728758022607361e-07,3.545456154524491440e-07,3.818183551026375519e-07,4.090910947528259598e-07,4.363638344030143677e-07,4.636365740532027757e-07,4.909093137033912365e-07,5.181820533535796973e-07,5.454547930037681582e-07,5.727275326539566190e-07,6.000002723041450799e-07,6.272730119543335407e-07,6.545457516045220016e-07,6.818184912547104624e-07,7.090912309048989233e-07,7.363639705550873841e-07,7.636367102052758450e-07,7.909094498554643058e-07,8.181821895056527667e-07,8.454549291558412275e-07,8.727276688060296884e-07,9.000004084562181492e-07,9.272731481064066101e-07,9.545458877565950709e-07,9.818186274067835318e-07,1.009091367056971993e-06,1.036364106707160453e-06,1.063636846357348914e-06,1.090909586007537375e-06,1.118182325657725836e-06,1.145455065307914297e-06,1.172727804958102758e-06,1.200000544608291219e-06,1.227273284258479679e-06,1.254546023908668140e-06,1.281818763558856601e-06,1.309091503209045062e-06,1.336364242859233523e-06,1.363636982509421984e-06,1.390909722159610445e-06,1.418182461809798905e-06,1.445455201459987366e-06,1.472727941110175827e-06,1.500000680760364288e-06,1.527273420410552749e-06,1.554546160060741210e-06,1.581818899710929670e-06,1.609091639361118131e-06,1.636364379011306592e-06,1.663637118661495053e-06,1.690909858311683514e-06,1.718182597961871975e-06 +0.000000000000000000e+00,2.827102710323784221e-08,5.654205420647568442e-08,8.481308130971352993e-08,1.130841084129513821e-07,1.413551355161892342e-07,1.696261626194270863e-07,1.978971897226649385e-07,2.261682168259027906e-07,2.544392439291406163e-07,2.827102710323784155e-07,3.109812981356162147e-07,3.392523252388540139e-07,3.675233523420918131e-07,3.957943794453296122e-07,4.240654065485674114e-07,4.523364336518052106e-07,4.806074607550430098e-07,5.088784878582808090e-07,5.371495149615186082e-07,5.654205420647564074e-07,5.936915691679942066e-07,6.219625962712320058e-07,6.502336233744698050e-07,6.785046504777076042e-07,7.067756775809454034e-07,7.350467046841832026e-07,7.633177317874210018e-07,7.915887588906588010e-07,8.198597859938966002e-07,8.481308130971343994e-07,8.764018402003721986e-07,9.046728673036099978e-07,9.329438944068477969e-07,9.612149215100855961e-07,9.894859486133232895e-07,1.017756975716560983e-06,1.046028002819798676e-06,1.074299029923036369e-06,1.102570057026274063e-06,1.130841084129511756e-06,1.159112111232749449e-06,1.187383138335987143e-06,1.215654165439224836e-06,1.243925192542462529e-06,1.272196219645700223e-06,1.300467246748937916e-06,1.328738273852175609e-06,1.357009300955413303e-06,1.385280328058650996e-06,1.413551355161888689e-06,1.441822382265126383e-06,1.470093409368364076e-06,1.498364436471601769e-06,1.526635463574839462e-06,1.554906490678077156e-06,1.583177517781314849e-06,1.611448544884552542e-06,1.639719571987790236e-06,1.667990599091027929e-06,1.696261626194265622e-06,1.724532653297503316e-06,1.752803680400741009e-06,1.781074707503978702e-06 +0.000000000000000000e+00,2.998983714523646148e-08,5.997967429047292296e-08,8.996951143570938445e-08,1.199593485809458459e-07,1.499491857261823074e-07,1.799390228714187689e-07,2.099288600166552304e-07,2.399186971618916919e-07,2.699085343071281533e-07,2.998983714523646148e-07,3.298882085976010763e-07,3.598780457428375378e-07,3.898678828880739993e-07,4.198577200333104607e-07,4.498475571785469222e-07,4.798373943237833837e-07,5.098272314690198981e-07,5.398170686142564126e-07,5.698069057594929270e-07,5.997967429047294414e-07,6.297865800499659558e-07,6.597764171952024702e-07,6.897662543404389847e-07,7.197560914856754991e-07,7.497459286309120135e-07,7.797357657761485279e-07,8.097256029213850424e-07,8.397154400666215568e-07,8.697052772118580712e-07,8.996951143570945856e-07,9.296849515023311000e-07,9.596747886475676145e-07,9.896646257928041289e-07,1.019654462938040643e-06,1.049644300083277158e-06,1.079634137228513672e-06,1.109623974373750187e-06,1.139613811518986701e-06,1.169603648664223215e-06,1.199593485809459730e-06,1.229583322954696244e-06,1.259573160099932759e-06,1.289562997245169273e-06,1.319552834390405788e-06,1.349542671535642302e-06,1.379532508680878816e-06,1.409522345826115331e-06,1.439512182971351845e-06,1.469502020116588360e-06,1.499491857261824874e-06,1.529481694407061388e-06,1.559471531552297903e-06,1.589461368697534417e-06,1.619451205842770932e-06,1.649441042988007446e-06,1.679430880133243961e-06,1.709420717278480475e-06,1.739410554423716989e-06,1.769400391568953504e-06,1.799390228714190018e-06,1.829380065859426533e-06,1.859369903004663047e-06,1.889359740149899562e-06 +0.000000000000000000e+00,2.727273965019175634e-08,5.454547930038351267e-08,8.181821895057526901e-08,1.090909586007670253e-07,1.363636982509587685e-07,1.636364379011505116e-07,1.909091775513422547e-07,2.181819172015339978e-07,2.454546568517257409e-07,2.727273965019174840e-07,3.000001361521092271e-07,3.272728758023009702e-07,3.545456154524927133e-07,3.818183551026844564e-07,4.090910947528761995e-07,4.363638344030679426e-07,4.636365740532596857e-07,4.909093137034513758e-07,5.181820533536430131e-07,5.454547930038346503e-07,5.727275326540262875e-07,6.000002723042179247e-07,6.272730119544095620e-07,6.545457516046011992e-07,6.818184912547928364e-07,7.090912309049844736e-07,7.363639705551761108e-07,7.636367102053677481e-07,7.909094498555593853e-07,8.181821895057510225e-07,8.454549291559426597e-07,8.727276688061342970e-07,9.000004084563259342e-07,9.272731481065175714e-07,9.545458877567092086e-07,9.818186274069008459e-07,1.009091367057092483e-06,1.036364106707284120e-06,1.063636846357475758e-06,1.090909586007667395e-06,1.118182325657859032e-06,1.145455065308050669e-06,1.172727804958242306e-06,1.200000544608433944e-06,1.227273284258625581e-06,1.254546023908817218e-06,1.281818763559008855e-06,1.309091503209200493e-06,1.336364242859392130e-06,1.363636982509583767e-06,1.390909722159775404e-06,1.418182461809967041e-06,1.445455201460158679e-06,1.472727941110350316e-06,1.500000680760541953e-06,1.527273420410733590e-06,1.554546160060925228e-06,1.581818899711116865e-06,1.609091639361308502e-06,1.636364379011500139e-06,1.663637118661691776e-06,1.690909858311883414e-06,1.718182597962075051e-06 +0.000000000000000000e+00,2.463344410949606047e-08,4.926688821899212093e-08,7.390033232848818471e-08,9.853377643798425510e-08,1.231672205474803123e-07,1.478006646569763694e-07,1.724341087664724266e-07,1.970675528759684837e-07,2.217009969854645409e-07,2.463344410949606245e-07,2.709678852044567081e-07,2.956013293139527918e-07,3.202347734234488754e-07,3.448682175329449590e-07,3.695016616424410427e-07,3.941351057519371263e-07,4.187685498614332099e-07,4.434019939709292935e-07,4.680354380804253772e-07,4.926688821899214608e-07,5.173023262994175444e-07,5.419357704089136280e-07,5.665692145184097117e-07,5.912026586279057953e-07,6.158361027374018789e-07,6.404695468468979626e-07,6.651029909563940462e-07,6.897364350658901298e-07,7.143698791753862134e-07,7.390033232848822971e-07,7.636367673943783807e-07,7.882702115038744643e-07,8.129036556133705480e-07,8.375370997228666316e-07,8.621705438323627152e-07,8.868039879418587988e-07,9.114374320513548825e-07,9.360708761608509661e-07,9.607043202703470497e-07,9.853377643798431333e-07,1.009971208489339217e-06,1.034604652598835301e-06,1.059238096708331384e-06,1.083871540817827468e-06,1.108504984927323551e-06,1.133138429036819635e-06,1.157771873146315719e-06,1.182405317255811802e-06,1.207038761365307886e-06,1.231672205474803970e-06,1.256305649584300053e-06,1.280939093693796137e-06,1.305572537803292221e-06,1.330205981912788304e-06,1.354839426022284388e-06,1.379472870131780471e-06,1.404106314241276555e-06,1.428739758350772639e-06,1.453373202460268722e-06,1.478006646569764806e-06,1.502640090679260890e-06,1.527273534788756973e-06,1.551906978898253057e-06 +0.000000000000000000e+00,2.648074346430014537e-08,5.296148692860029073e-08,7.944223039290043279e-08,1.059229738572005682e-07,1.324037173215007037e-07,1.588844607858008391e-07,1.853652042501009746e-07,2.118459477144011100e-07,2.383266911787012454e-07,2.648074346430014073e-07,2.912881781073015693e-07,3.177689215716017312e-07,3.442496650359018931e-07,3.707304085002020550e-07,3.972111519645022169e-07,4.236918954288023788e-07,4.501726388931025407e-07,4.766533823574027026e-07,5.031341258217028645e-07,5.296148692860030264e-07,5.560956127503031884e-07,5.825763562146033503e-07,6.090570996789035122e-07,6.355378431432036741e-07,6.620185866075038360e-07,6.884993300718039979e-07,7.149800735361041598e-07,7.414608170004043217e-07,7.679415604647044836e-07,7.944223039290046455e-07,8.209030473933048075e-07,8.473837908576049694e-07,8.738645343219051313e-07,9.003452777862052932e-07,9.268260212505054551e-07,9.533067647148056170e-07,9.797875081791058848e-07,1.006268251643406153e-06,1.032748995107706420e-06,1.059229738572006688e-06,1.085710482036306956e-06,1.112191225500607224e-06,1.138671968964907492e-06,1.165152712429207759e-06,1.191633455893508027e-06,1.218114199357808295e-06,1.244594942822108563e-06,1.271075686286408830e-06,1.297556429750709098e-06,1.324037173215009366e-06,1.350517916679309634e-06,1.376998660143609902e-06,1.403479403607910169e-06,1.429960147072210437e-06,1.456440890536510705e-06,1.482921634000810973e-06,1.509402377465111241e-06,1.535883120929411508e-06,1.562363864393711776e-06,1.588844607858012044e-06,1.615325351322312312e-06,1.641806094786612580e-06,1.668286838250912847e-06 +0.000000000000000000e+00,2.373348730718986678e-08,4.746697461437973356e-08,7.120046192156960364e-08,9.493394922875948035e-08,1.186674365359493571e-07,1.424009238431392338e-07,1.661344111503291105e-07,1.898678984575189872e-07,2.136013857647088639e-07,2.373348730718987406e-07,2.610683603790886173e-07,2.848018476862785205e-07,3.085353349934684236e-07,3.322688223006583268e-07,3.560023096078482300e-07,3.797357969150381332e-07,4.034692842222280363e-07,4.272027715294179395e-07,4.509362588366078427e-07,4.746697461437977458e-07,4.984032334509875961e-07,5.221367207581774463e-07,5.458702080653672966e-07,5.696036953725571468e-07,5.933371826797469970e-07,6.170706699869368473e-07,6.408041572941266975e-07,6.645376446013165477e-07,6.882711319085063980e-07,7.120046192156962482e-07,7.357381065228860984e-07,7.594715938300759487e-07,7.832050811372657989e-07,8.069385684444556491e-07,8.306720557516454994e-07,8.544055430588353496e-07,8.781390303660251998e-07,9.018725176732150501e-07,9.256060049804049003e-07,9.493394922875947505e-07,9.730729795947846008e-07,9.968064669019743451e-07,1.020539954209164089e-06,1.044273441516353834e-06,1.068006928823543578e-06,1.091740416130733323e-06,1.115473903437923067e-06,1.139207390745112811e-06,1.162940878052302556e-06,1.186674365359492300e-06,1.210407852666682044e-06,1.234141339973871789e-06,1.257874827281061533e-06,1.281608314588251277e-06,1.305341801895441022e-06,1.329075289202630766e-06,1.352808776509820510e-06,1.376542263817010255e-06,1.400275751124199999e-06,1.424009238431389744e-06,1.447742725738579488e-06,1.471476213045769232e-06,1.495209700352958977e-06 +0.000000000000000000e+00,2.463344410950055040e-08,4.926688821900110081e-08,7.390033232850164459e-08,9.853377643800218838e-08,1.231672205475027322e-07,1.478006646570032892e-07,1.724341087665038462e-07,1.970675528760044032e-07,2.217009969855049602e-07,2.463344410950055173e-07,2.709678852045060478e-07,2.956013293140065784e-07,3.202347734235071089e-07,3.448682175330076395e-07,3.695016616425081700e-07,3.941351057520087006e-07,4.187685498615092311e-07,4.434019939710097617e-07,4.680354380805102922e-07,4.926688821900108228e-07,5.173023262995113533e-07,5.419357704090118839e-07,5.665692145185124144e-07,5.912026586280129450e-07,6.158361027375134755e-07,6.404695468470140061e-07,6.651029909565145366e-07,6.897364350660150672e-07,7.143698791755155977e-07,7.390033232850161283e-07,7.636367673945166588e-07,7.882702115040171894e-07,8.129036556135177199e-07,8.375370997230182505e-07,8.621705438325187810e-07,8.868039879420193116e-07,9.114374320515198421e-07,9.360708761610203727e-07,9.607043202705209032e-07,9.853377643800214338e-07,1.009971208489521964e-06,1.034604652599022495e-06,1.059238096708523025e-06,1.083871540818023556e-06,1.108504984927524087e-06,1.133138429037024617e-06,1.157771873146525148e-06,1.182405317256025678e-06,1.207038761365526209e-06,1.231672205475026739e-06,1.256305649584527270e-06,1.280939093694027800e-06,1.305572537803528331e-06,1.330205981913028861e-06,1.354839426022529392e-06,1.379472870132029923e-06,1.404106314241530453e-06,1.428739758351030984e-06,1.453373202460531514e-06,1.478006646570032045e-06,1.502640090679532575e-06,1.527273534789033106e-06,1.551906978898533636e-06 +0.000000000000000000e+00,2.648074346430455258e-08,5.296148692860910517e-08,7.944223039291365445e-08,1.059229738572181971e-07,1.324037173215227265e-07,1.588844607858272560e-07,1.853652042501317854e-07,2.118459477144363148e-07,2.383266911787408442e-07,2.648074346430453472e-07,2.912881781073498501e-07,3.177689215716543531e-07,3.442496650359588560e-07,3.707304085002633590e-07,3.972111519645678619e-07,4.236918954288723649e-07,4.501726388931768679e-07,4.766533823574813708e-07,5.031341258217858738e-07,5.296148692860903767e-07,5.560956127503948797e-07,5.825763562146993826e-07,6.090570996790038856e-07,6.355378431433083885e-07,6.620185866076128915e-07,6.884993300719173944e-07,7.149800735362218974e-07,7.414608170005264003e-07,7.679415604648309033e-07,7.944223039291354063e-07,8.209030473934399092e-07,8.473837908577444122e-07,8.738645343220489151e-07,9.003452777863534181e-07,9.268260212506579210e-07,9.533067647149624240e-07,9.797875081792668211e-07,1.006268251643571112e-06,1.032748995107875403e-06,1.059229738572179695e-06,1.085710482036483986e-06,1.112191225500788277e-06,1.138671968965092568e-06,1.165152712429396859e-06,1.191633455893701151e-06,1.218114199358005442e-06,1.244594942822309733e-06,1.271075686286614024e-06,1.297556429750918315e-06,1.324037173215222607e-06,1.350517916679526898e-06,1.376998660143831189e-06,1.403479403608135480e-06,1.429960147072439771e-06,1.456440890536744063e-06,1.482921634001048354e-06,1.509402377465352645e-06,1.535883120929656936e-06,1.562363864393961227e-06,1.588844607858265519e-06,1.615325351322569810e-06,1.641806094786874101e-06,1.668286838251178392e-06 +0.000000000000000000e+00,2.373348730719305970e-08,4.746697461438611939e-08,7.120046192157918570e-08,9.493394922877225202e-08,1.186674365359653183e-07,1.424009238431583714e-07,1.661344111503514245e-07,1.898678984575444776e-07,2.136013857647375306e-07,2.373348730719305837e-07,2.610683603791236103e-07,2.848018476863166369e-07,3.085353349935096635e-07,3.322688223007026902e-07,3.560023096078957168e-07,3.797357969150887434e-07,4.034692842222817700e-07,4.272027715294747966e-07,4.509362588366678232e-07,4.746697461438608498e-07,4.984032334510538764e-07,5.221367207582469030e-07,5.458702080654399296e-07,5.696036953726329562e-07,5.933371826798259828e-07,6.170706699870190095e-07,6.408041572942120361e-07,6.645376446014050627e-07,6.882711319085980893e-07,7.120046192157911159e-07,7.357381065229841425e-07,7.594715938301771691e-07,7.832050811373701957e-07,8.069385684445632223e-07,8.306720557517562489e-07,8.544055430589492755e-07,8.781390303661423021e-07,9.018725176733353288e-07,9.256060049805283554e-07,9.493394922877213820e-07,9.730729795949144086e-07,9.968064669021073293e-07,1.020539954209300250e-06,1.044273441516493171e-06,1.068006928823686091e-06,1.091740416130879012e-06,1.115473903438071933e-06,1.139207390745264854e-06,1.162940878052457774e-06,1.186674365359650695e-06,1.210407852666843616e-06,1.234141339974036537e-06,1.257874827281229457e-06,1.281608314588422378e-06,1.305341801895615299e-06,1.329075289202808220e-06,1.352808776510001140e-06,1.376542263817194061e-06,1.400275751124386982e-06,1.424009238431579902e-06,1.447742725738772823e-06,1.471476213045965744e-06,1.495209700353158665e-06 +0.000000000000000000e+00,2.081372271752799978e-08,4.162744543505599955e-08,6.244116815258399602e-08,8.325489087011198587e-08,1.040686135876399757e-07,1.248823363051679656e-07,1.456960590226959686e-07,1.665097817402239717e-07,1.873235044577519748e-07,2.081372271752799779e-07,2.289509498928079810e-07,2.497646726103359841e-07,2.705783953278639872e-07,2.913921180453919902e-07,3.122058407629199933e-07,3.330195634804479964e-07,3.538332861979759995e-07,3.746470089155040026e-07,3.954607316330320057e-07,4.162744543505600087e-07,4.370881770680880118e-07,4.579018997856160149e-07,4.787156225031440180e-07,4.995293452206720740e-07,5.203430679382001300e-07,5.411567906557281861e-07,5.619705133732562421e-07,5.827842360907842981e-07,6.035979588083123541e-07,6.244116815258404102e-07,6.452254042433684662e-07,6.660391269608965222e-07,6.868528496784245782e-07,7.076665723959526342e-07,7.284802951134806903e-07,7.492940178310087463e-07,7.701077405485368023e-07,7.909214632660648583e-07,8.117351859835929144e-07,8.325489087011209704e-07,8.533626314186490264e-07,8.741763541361770824e-07,8.949900768537051385e-07,9.158037995712331945e-07,9.366175222887612505e-07,9.574312450062893065e-07,9.782449677238173626e-07,9.990586904413454186e-07,1.019872413158873475e-06,1.040686135876401531e-06,1.061499858593929587e-06,1.082313581311457643e-06,1.103127304028985699e-06,1.123941026746513755e-06,1.144754749464041811e-06,1.165568472181569867e-06,1.186382194899097923e-06,1.207195917616625979e-06,1.228009640334154035e-06,1.248823363051682091e-06,1.269637085769210147e-06,1.290450808486738203e-06,1.311264531204266259e-06 +0.000000000000000000e+00,2.274107307556929680e-08,4.548214615113859360e-08,6.822321922670789370e-08,9.096429230227720043e-08,1.137053653778465072e-07,1.364464384534158139e-07,1.591875115289851074e-07,1.819285846045544009e-07,2.046696576801236943e-07,2.274107307556929878e-07,2.501518038312622813e-07,2.728928769068315748e-07,2.956339499824008683e-07,3.183750230579701618e-07,3.411160961335394553e-07,3.638571692091087488e-07,3.865982422846780423e-07,4.093393153602473358e-07,4.320803884358166292e-07,4.548214615113859227e-07,4.775625345869552162e-07,5.003036076625245627e-07,5.230446807380939091e-07,5.457857538136632555e-07,5.685268268892326019e-07,5.912678999648019484e-07,6.140089730403712948e-07,6.367500461159406412e-07,6.594911191915099877e-07,6.822321922670793341e-07,7.049732653426486805e-07,7.277143384182180270e-07,7.504554114937873734e-07,7.731964845693567198e-07,7.959375576449260662e-07,8.186786307204954127e-07,8.414197037960647591e-07,8.641607768716341055e-07,8.869018499472034520e-07,9.096429230227727984e-07,9.323839960983421448e-07,9.551250691739114912e-07,9.778661422494808377e-07,1.000607215325050184e-06,1.023348288400619531e-06,1.046089361476188877e-06,1.068830434551758223e-06,1.091571507627327570e-06,1.114312580702896916e-06,1.137053653778466263e-06,1.159794726854035609e-06,1.182535799929604956e-06,1.205276873005174302e-06,1.228017946080743648e-06,1.250759019156312995e-06,1.273500092231882341e-06,1.296241165307451688e-06,1.318982238383021034e-06,1.341723311458590381e-06,1.364464384534159727e-06,1.387205457609729073e-06,1.409946530685298420e-06,1.432687603760867766e-06 +0.000000000000000000e+00,2.002013510343706613e-08,4.004027020687413226e-08,6.006040531031119177e-08,8.008054041374825128e-08,1.001006755171853108e-07,1.201208106206223835e-07,1.401409457240594563e-07,1.601610808274965290e-07,1.801812159309336018e-07,2.002013510343706745e-07,2.202214861378077473e-07,2.402416212412448200e-07,2.602617563446818928e-07,2.802818914481189655e-07,3.003020265515560382e-07,3.203221616549931110e-07,3.403422967584301837e-07,3.603624318618672565e-07,3.803825669653043292e-07,4.004027020687414020e-07,4.204228371721784747e-07,4.404429722756155475e-07,4.604631073790526202e-07,4.804832424824897459e-07,5.005033775859268716e-07,5.205235126893639973e-07,5.405436477928011229e-07,5.605637828962382486e-07,5.805839179996753743e-07,6.006040531031125000e-07,6.206241882065496257e-07,6.406443233099867514e-07,6.606644584134238771e-07,6.806845935168610027e-07,7.007047286202981284e-07,7.207248637237352541e-07,7.407449988271723798e-07,7.607651339306095055e-07,7.807852690340466312e-07,8.008054041374837569e-07,8.208255392409208825e-07,8.408456743443580082e-07,8.608658094477951339e-07,8.808859445512322596e-07,9.009060796546693853e-07,9.209262147581065110e-07,9.409463498615436367e-07,9.609664849649807623e-07,9.809866200684179939e-07,1.001006755171855225e-06,1.021026890275292457e-06,1.041047025378729689e-06,1.061067160482166920e-06,1.081087295585604152e-06,1.101107430689041383e-06,1.121127565792478615e-06,1.141147700895915846e-06,1.161167835999353078e-06,1.181187971102790310e-06,1.201208106206227541e-06,1.221228241309664773e-06,1.241248376413102004e-06,1.261268511516539236e-06 +0.000000000000000000e+00,2.081372271753191730e-08,4.162744543506383460e-08,6.244116815259574860e-08,8.325489087012765598e-08,1.040686135876595634e-07,1.248823363051914707e-07,1.456960590227233913e-07,1.665097817402553120e-07,1.873235044577872326e-07,2.081372271753191532e-07,2.289509498928510738e-07,2.497646726103829944e-07,2.705783953279149150e-07,2.913921180454468356e-07,3.122058407629787562e-07,3.330195634805106768e-07,3.538332861980425975e-07,3.746470089155745181e-07,3.954607316331064387e-07,4.162744543506383593e-07,4.370881770681702799e-07,4.579018997857022005e-07,4.787156225032341211e-07,4.995293452207660947e-07,5.203430679382980682e-07,5.411567906558300418e-07,5.619705133733620153e-07,5.827842360908939889e-07,6.035979588084259624e-07,6.244116815259579360e-07,6.452254042434899095e-07,6.660391269610218831e-07,6.868528496785538566e-07,7.076665723960858302e-07,7.284802951136178037e-07,7.492940178311497773e-07,7.701077405486817508e-07,7.909214632662137244e-07,8.117351859837456979e-07,8.325489087012776715e-07,8.533626314188096450e-07,8.741763541363416186e-07,8.949900768538735921e-07,9.158037995714055657e-07,9.366175222889375392e-07,9.574312450064695128e-07,9.782449677240013805e-07,9.990586904415332481e-07,1.019872413159065116e-06,1.040686135876596983e-06,1.061499858594128851e-06,1.082313581311660719e-06,1.103127304029192586e-06,1.123941026746724454e-06,1.144754749464256322e-06,1.165568472181788190e-06,1.186382194899320057e-06,1.207195917616851925e-06,1.228009640334383793e-06,1.248823363051915660e-06,1.269637085769447528e-06,1.290450808486979396e-06,1.311264531204511263e-06 +0.000000000000000000e+00,2.274107307557349226e-08,4.548214615114698452e-08,6.822321922672048009e-08,9.096429230229398227e-08,1.137053653778674845e-07,1.364464384534409866e-07,1.591875115290144888e-07,1.819285846045879910e-07,2.046696576801614932e-07,2.274107307557349954e-07,2.501518038313084976e-07,2.728928769068820262e-07,2.956339499824555549e-07,3.183750230580290835e-07,3.411160961336026122e-07,3.638571692091761408e-07,3.865982422847496695e-07,4.093393153603231981e-07,4.320803884358967268e-07,4.548214615114702555e-07,4.775625345870437312e-07,5.003036076626172069e-07,5.230446807381906826e-07,5.457857538137641583e-07,5.685268268893376340e-07,5.912678999649111097e-07,6.140089730404845855e-07,6.367500461160580612e-07,6.594911191916315369e-07,6.822321922672050126e-07,7.049732653427784883e-07,7.277143384183519640e-07,7.504554114939254398e-07,7.731964845694989155e-07,7.959375576450723912e-07,8.186786307206458669e-07,8.414197037962193426e-07,8.641607768717928183e-07,8.869018499473662940e-07,9.096429230229397698e-07,9.323839960985132455e-07,9.551250691740866153e-07,9.778661422496599851e-07,1.000607215325233355e-06,1.023348288400806725e-06,1.046089361476380095e-06,1.068830434551953464e-06,1.091571507627526834e-06,1.114312580703100204e-06,1.137053653778673574e-06,1.159794726854246944e-06,1.182535799929820314e-06,1.205276873005393684e-06,1.228017946080967053e-06,1.250759019156540423e-06,1.273500092232113793e-06,1.296241165307687163e-06,1.318982238383260533e-06,1.341723311458833903e-06,1.364464384534407272e-06,1.387205457609980642e-06,1.409946530685554012e-06,1.432687603761127382e-06 +0.000000000000000000e+00,2.002013510344007045e-08,4.004027020688014090e-08,6.006040531032021796e-08,8.008054041376029503e-08,1.001006755172003721e-07,1.201208106206404359e-07,1.401409457240804998e-07,1.601610808275205636e-07,1.801812159309606274e-07,2.002013510344006912e-07,2.202214861378407551e-07,2.402416212412808189e-07,2.602617563447208563e-07,2.802818914481608936e-07,3.003020265516009310e-07,3.203221616550409684e-07,3.403422967584810057e-07,3.603624318619210431e-07,3.803825669653610804e-07,4.004027020688011178e-07,4.204228371722411552e-07,4.404429722756811925e-07,4.604631073791212299e-07,4.804832424825613202e-07,5.005033775860014105e-07,5.205235126894415008e-07,5.405436477928815911e-07,5.605637828963216814e-07,5.805839179997617717e-07,6.006040531032018620e-07,6.206241882066419523e-07,6.406443233100820426e-07,6.606644584135221329e-07,6.806845935169622232e-07,7.007047286204023135e-07,7.207248637238424038e-07,7.407449988272824941e-07,7.607651339307225844e-07,7.807852690341626747e-07,8.008054041376027650e-07,8.208255392410428553e-07,8.408456743444829456e-07,8.608658094479230359e-07,8.808859445513631262e-07,9.009060796548032165e-07,9.209262147582433068e-07,9.409463498616833971e-07,9.609664849651234874e-07,9.809866200685636836e-07,1.001006755172003880e-06,1.021026890275444076e-06,1.041047025378884272e-06,1.061067160482324468e-06,1.081087295585764664e-06,1.101107430689204861e-06,1.121127565792645057e-06,1.141147700896085253e-06,1.161167835999525449e-06,1.181187971102965645e-06,1.201208106206405842e-06,1.221228241309846038e-06,1.241248376413286234e-06,1.261268511516726430e-06 +0.000000000000000000e+00,1.885899892976223800e-08,3.771799785952447600e-08,5.657699678928671732e-08,7.543599571904896524e-08,9.429499464881121317e-08,1.131539935785734611e-07,1.320129925083357090e-07,1.508719914380979570e-07,1.697309903678602049e-07,1.885899892976224528e-07,2.074489882273847007e-07,2.263079871571469487e-07,2.451669860869091701e-07,2.640259850166713651e-07,2.828849839464335601e-07,3.017439828761957551e-07,3.206029818059579501e-07,3.394619807357201451e-07,3.583209796654823401e-07,3.771799785952445350e-07,3.960389775250067300e-07,4.148979764547689250e-07,4.337569753845311200e-07,4.526159743142933150e-07,4.714749732440555100e-07,4.903339721738177050e-07,5.091929711035799000e-07,5.280519700333420950e-07,5.469109689631042899e-07,5.657699678928664849e-07,5.846289668226286799e-07,6.034879657523908749e-07,6.223469646821530699e-07,6.412059636119152649e-07,6.600649625416774599e-07,6.789239614714396549e-07,6.977829604012018499e-07,7.166419593309640448e-07,7.355009582607262398e-07,7.543599571904884348e-07,7.732189561202506298e-07,7.920779550500128248e-07,8.109369539797750198e-07,8.297959529095372148e-07,8.486549518392994098e-07,8.675139507690616048e-07,8.863729496988237997e-07,9.052319486285859947e-07,9.240909475583481897e-07,9.429499464881103847e-07,9.618089454178726856e-07,9.806679443476349864e-07,9.995269432773972873e-07,1.018385942207159588e-06,1.037244941136921889e-06,1.056103940066684190e-06,1.074962938996446491e-06,1.093821937926208792e-06,1.112680936855971093e-06,1.131539935785733393e-06,1.150398934715495694e-06,1.169257933645257995e-06,1.188116932575020296e-06 +0.000000000000000000e+00,1.885899892976599671e-08,3.771799785953199342e-08,5.657699678929799344e-08,7.543599571906400008e-08,9.429499464883000672e-08,1.131539935785960134e-07,1.320129925083620200e-07,1.508719914381280266e-07,1.697309903678940333e-07,1.885899892976600399e-07,2.074489882274260465e-07,2.263079871571920532e-07,2.451669860869580863e-07,2.640259850167240929e-07,2.828849839464900996e-07,3.017439828762561062e-07,3.206029818060221128e-07,3.394619807357881195e-07,3.583209796655541261e-07,3.771799785953201327e-07,3.960389775250861394e-07,4.148979764548521460e-07,4.337569753846181527e-07,4.526159743143841593e-07,4.714749732441501659e-07,4.903339721739161726e-07,5.091929711036821792e-07,5.280519700334481858e-07,5.469109689632141925e-07,5.657699678929801991e-07,5.846289668227462057e-07,6.034879657525122124e-07,6.223469646822782190e-07,6.412059636120442257e-07,6.600649625418102323e-07,6.789239614715762389e-07,6.977829604013422456e-07,7.166419593311082522e-07,7.355009582608742588e-07,7.543599571906402655e-07,7.732189561204062721e-07,7.920779550501722788e-07,8.109369539799382854e-07,8.297959529097042920e-07,8.486549518394702987e-07,8.675139507692363053e-07,8.863729496990023119e-07,9.052319486287683186e-07,9.240909475585343252e-07,9.429499464883003319e-07,9.618089454180662326e-07,9.806679443478321334e-07,9.995269432775980341e-07,1.018385942207363935e-06,1.037244941137129836e-06,1.056103940066895736e-06,1.074962938996661637e-06,1.093821937926427538e-06,1.112680936856193439e-06,1.131539935785959339e-06,1.150398934715725240e-06,1.169257933645491141e-06,1.188116932575257042e-06 +0.000000000000000000e+00,4.187371926846114491e-08,8.374743853692228983e-08,1.256211578053834347e-07,1.674948770738445797e-07,2.093685963423057246e-07,2.512423156107668695e-07,2.931160348792280144e-07,3.349897541476891593e-07,3.768634734161503042e-07,4.187371926846114491e-07,4.606109119530725940e-07,5.024846312215337390e-07,5.443583504899949368e-07,5.862320697584561347e-07,6.281057890269173325e-07,6.699795082953785304e-07,7.118532275638397282e-07,7.537269468323009261e-07,7.956006661007621239e-07,8.374743853692233218e-07,8.793481046376845196e-07,9.212218239061457175e-07,9.630955431746069153e-07,1.004969262443068113e-06,1.046842981711529311e-06,1.088716700979990509e-06,1.130590420248451707e-06,1.172464139516912905e-06,1.214337858785374102e-06,1.256211578053835300e-06,1.298085297322296498e-06,1.339959016590757696e-06,1.381832735859218894e-06,1.423706455127680092e-06,1.465580174396141290e-06,1.507453893664602487e-06,1.549327612933063685e-06,1.591201332201524883e-06,1.633075051469986081e-06,1.674948770738447279e-06,1.716822490006908477e-06,1.758696209275369675e-06,1.800569928543830872e-06,1.842443647812292070e-06,1.884317367080753268e-06,1.926191086349214254e-06,1.968064805617675029e-06,2.009938524886135803e-06,2.051812244154596577e-06,2.093685963423057352e-06,2.135559682691518126e-06,2.177433401959978900e-06,2.219307121228439675e-06,2.261180840496900449e-06,2.303054559765361223e-06,2.344928279033821998e-06,2.386801998302282772e-06,2.428675717570743546e-06,2.470549436839204321e-06,2.512423156107665095e-06,2.554296875376125869e-06,2.596170594644586644e-06,2.638044313913047418e-06 +0.000000000000000000e+00,4.016215593554236370e-08,8.032431187108472740e-08,1.204864678066270779e-07,1.606486237421694283e-07,2.008107796777117788e-07,2.409729356132541557e-07,2.811350915487965327e-07,3.212972474843389096e-07,3.614594034198812865e-07,4.016215593554236635e-07,4.417837152909660404e-07,4.819458712265084173e-07,5.221080271620507942e-07,5.622701830975931712e-07,6.024323390331355481e-07,6.425944949686779250e-07,6.827566509042203020e-07,7.229188068397626789e-07,7.630809627753050558e-07,8.032431187108474328e-07,8.434052746463898097e-07,8.835674305819321866e-07,9.237295865174745636e-07,9.638917424530170464e-07,1.004053898388559529e-06,1.044216054324102012e-06,1.084378210259644495e-06,1.124540366195186978e-06,1.164702522130729460e-06,1.204864678066271943e-06,1.245026834001814426e-06,1.285188989937356909e-06,1.325351145872899392e-06,1.365513301808441875e-06,1.405675457743984357e-06,1.445837613679526840e-06,1.485999769615069323e-06,1.526161925550611806e-06,1.566324081486154289e-06,1.606486237421696771e-06,1.646648393357239254e-06,1.686810549292781737e-06,1.726972705228324220e-06,1.767134861163866703e-06,1.807297017099409185e-06,1.847459173034951668e-06,1.887621328970494151e-06,1.927783484906036634e-06,1.967945640841579117e-06,2.008107796777121600e-06,2.048269952712664082e-06,2.088432108648206565e-06,2.128594264583749048e-06,2.168756420519291531e-06,2.208918576454834014e-06,2.249080732390376496e-06,2.289242888325918979e-06,2.329405044261461462e-06,2.369567200197003945e-06,2.409729356132546428e-06,2.449891512068088910e-06,2.490053668003631393e-06,2.530215823939173876e-06 +0.000000000000000000e+00,4.025134581922448009e-08,8.050269163844896018e-08,1.207540374576734469e-07,1.610053832768979468e-07,2.012567290961224468e-07,2.415080749153469467e-07,2.817594207345714467e-07,3.220107665537959466e-07,3.622621123730204465e-07,4.025134581922449465e-07,4.427648040114694464e-07,4.830161498306939993e-07,5.232674956499184993e-07,5.635188414691429992e-07,6.037701872883674991e-07,6.440215331075919991e-07,6.842728789268164990e-07,7.245242247460409990e-07,7.647755705652654989e-07,8.050269163844899989e-07,8.452782622037144988e-07,8.855296080229389987e-07,9.257809538421634987e-07,9.660322996613879986e-07,1.006283645480612499e-06,1.046534991299836999e-06,1.086786337119061498e-06,1.127037682938285998e-06,1.167289028757510498e-06,1.207540374576734998e-06,1.247791720395959498e-06,1.288043066215183998e-06,1.328294412034408498e-06,1.368545757853632998e-06,1.408797103672857498e-06,1.449048449492081998e-06,1.489299795311306498e-06,1.529551141130530998e-06,1.569802486949755498e-06,1.610053832768979998e-06,1.650305178588204498e-06,1.690556524407428998e-06,1.730807870226653498e-06,1.771059216045877997e-06,1.811310561865102497e-06,1.851561907684326997e-06,1.891813253503551497e-06,1.932064599322775997e-06,1.972315945142000285e-06,2.012567290961224574e-06,2.052818636780448862e-06,2.093069982599673150e-06,2.133321328418897438e-06,2.173572674238121726e-06,2.213824020057346015e-06,2.254075365876570303e-06,2.294326711695794591e-06,2.334578057515018879e-06,2.374829403334243167e-06,2.415080749153467455e-06,2.455332094972691744e-06,2.495583440791916032e-06,2.535834786611140320e-06 +0.000000000000000000e+00,4.136228662312325708e-08,8.272457324624651417e-08,1.240868598693697713e-07,1.654491464924930283e-07,2.068114331156162854e-07,2.481737197387395425e-07,2.895360063618627996e-07,3.308982929849860567e-07,3.722605796081093138e-07,4.136228662312325708e-07,4.549851528543558279e-07,4.963474394774790850e-07,5.377097261006023950e-07,5.790720127237257051e-07,6.204342993468490151e-07,6.617965859699723251e-07,7.031588725930956351e-07,7.445211592162189452e-07,7.858834458393422552e-07,8.272457324624655652e-07,8.686080190855888752e-07,9.099703057087121853e-07,9.513325923318354953e-07,9.926948789549588053e-07,1.034057165578082115e-06,1.075419452201205425e-06,1.116781738824328735e-06,1.158144025447452045e-06,1.199506312070575355e-06,1.240868598693698665e-06,1.282230885316821975e-06,1.323593171939945285e-06,1.364955458563068596e-06,1.406317745186191906e-06,1.447680031809315216e-06,1.489042318432438526e-06,1.530404605055561836e-06,1.571766891678685146e-06,1.613129178301808456e-06,1.654491464924931766e-06,1.695853751548055076e-06,1.737216038171178386e-06,1.778578324794301696e-06,1.819940611417425006e-06,1.861302898040548316e-06,1.902665184663671626e-06,1.944027471286794936e-06,1.985389757909918034e-06,2.026752044533041132e-06,2.068114331156164231e-06,2.109476617779287329e-06,2.150838904402410427e-06,2.192201191025533525e-06,2.233563477648656624e-06,2.274925764271779722e-06,2.316288050894902820e-06,2.357650337518025919e-06,2.399012624141149017e-06,2.440374910764272115e-06,2.481737197387395213e-06,2.523099484010518312e-06,2.564461770633641410e-06,2.605824057256764508e-06 +0.000000000000000000e+00,3.869032809325050206e-08,7.738065618650100412e-08,1.160709842797515062e-07,1.547613123730020082e-07,1.934516404662525103e-07,2.321419685595030124e-07,2.708322966527535144e-07,3.095226247460040165e-07,3.482129528392545185e-07,3.869032809325050206e-07,4.255936090257555227e-07,4.642839371190060247e-07,5.029742652122565268e-07,5.416645933055070288e-07,5.803549213987575309e-07,6.190452494920080330e-07,6.577355775852585350e-07,6.964259056785090371e-07,7.351162337717595391e-07,7.738065618650100412e-07,8.124968899582605433e-07,8.511872180515110453e-07,8.898775461447615474e-07,9.285678742380120494e-07,9.672582023312625515e-07,1.005948530424513054e-06,1.044638858517763556e-06,1.083329186611014058e-06,1.122019514704264560e-06,1.160709842797515062e-06,1.199400170890765564e-06,1.238090498984016066e-06,1.276780827077266568e-06,1.315471155170517070e-06,1.354161483263767572e-06,1.392851811357018074e-06,1.431542139450268576e-06,1.470232467543519078e-06,1.508922795636769580e-06,1.547613123730020082e-06,1.586303451823270584e-06,1.624993779916521087e-06,1.663684108009771589e-06,1.702374436103022091e-06,1.741064764196272593e-06,1.779755092289523095e-06,1.818445420382773597e-06,1.857135748476024099e-06,1.895826076569274601e-06,1.934516404662525103e-06,1.973206732755775605e-06,2.011897060849026107e-06,2.050587388942276609e-06,2.089277717035527111e-06,2.127968045128777613e-06,2.166658373222028115e-06,2.205348701315278617e-06,2.244039029408529119e-06,2.282729357501779622e-06,2.321419685595030124e-06,2.360110013688280626e-06,2.398800341781531128e-06,2.437490669874781630e-06 +0.000000000000000000e+00,3.951526011484294082e-08,7.903052022968588164e-08,1.185457803445288291e-07,1.580610404593717898e-07,1.975763005742147504e-07,2.370915606890577111e-07,2.766068208039006453e-07,3.161220809187435795e-07,3.556373410335865137e-07,3.951526011484294479e-07,4.346678612632723821e-07,4.741831213781153163e-07,5.136983814929582505e-07,5.532136416078011847e-07,5.927289017226441189e-07,6.322441618374870531e-07,6.717594219523299873e-07,7.112746820671729215e-07,7.507899421820158557e-07,7.903052022968587899e-07,8.298204624117017241e-07,8.693357225265446583e-07,9.088509826413875925e-07,9.483662427562305267e-07,9.878815028710733551e-07,1.027396762985916289e-06,1.066912023100759223e-06,1.106427283215602158e-06,1.145942543330445092e-06,1.185457803445288026e-06,1.224973063560130960e-06,1.264488323674973894e-06,1.304003583789816829e-06,1.343518843904659763e-06,1.383034104019502697e-06,1.422549364134345631e-06,1.462064624249188565e-06,1.501579884364031500e-06,1.541095144478874434e-06,1.580610404593717368e-06,1.620125664708560302e-06,1.659640924823403237e-06,1.699156184938246171e-06,1.738671445053089105e-06,1.778186705167932039e-06,1.817701965282774973e-06,1.857217225397617908e-06,1.896732485512460842e-06,1.936247745627303776e-06,1.975763005742146710e-06,2.015278265856989644e-06,2.054793525971832579e-06,2.094308786086675513e-06,2.133824046201518447e-06,2.173339306316361381e-06,2.212854566431204315e-06,2.252369826546047250e-06,2.291885086660890184e-06,2.331400346775733118e-06,2.370915606890576052e-06,2.410430867005418986e-06,2.449946127120261921e-06,2.489461387235104855e-06 +0.000000000000000000e+00,4.022971347046100635e-08,8.045942694092201270e-08,1.206891404113830257e-07,1.609188538818440519e-07,2.011485673523050781e-07,2.413782808227661043e-07,2.816079942932271040e-07,3.218377077636881038e-07,3.620674212341491035e-07,4.022971347046101032e-07,4.425268481750711030e-07,4.827565616455321027e-07,5.229862751159931024e-07,5.632159885864541022e-07,6.034457020569151019e-07,6.436754155273761016e-07,6.839051289978371014e-07,7.241348424682981011e-07,7.643645559387591008e-07,8.045942694092201006e-07,8.448239828796811003e-07,8.850536963501421000e-07,9.252834098206030998e-07,9.655131232910639936e-07,1.005742836761524887e-06,1.045972550231985781e-06,1.086202263702446675e-06,1.126431977172907569e-06,1.166661690643368463e-06,1.206891404113829357e-06,1.247121117584290251e-06,1.287350831054751144e-06,1.327580544525212038e-06,1.367810257995672932e-06,1.408039971466133826e-06,1.448269684936594720e-06,1.488499398407055614e-06,1.528729111877516508e-06,1.568958825347977401e-06,1.609188538818438295e-06,1.649418252288899189e-06,1.689647965759360083e-06,1.729877679229820977e-06,1.770107392700281871e-06,1.810337106170742765e-06,1.850566819641203658e-06,1.890796533111664552e-06,1.931026246582125446e-06,1.971255960052586340e-06,2.011485673523047234e-06,2.051715386993508128e-06,2.091945100463969022e-06,2.132174813934429915e-06,2.172404527404890809e-06,2.212634240875351703e-06,2.252863954345812597e-06,2.293093667816273491e-06,2.333323381286734385e-06,2.373553094757195279e-06,2.413782808227656172e-06,2.454012521698117066e-06,2.494242235168577960e-06,2.534471948639038854e-06 +0.000000000000000000e+00,3.883456451316300960e-08,7.766912902632601920e-08,1.165036935394890288e-07,1.553382580526520384e-07,1.941728225658150612e-07,2.330073870789780841e-07,2.718419515921411069e-07,3.106765161053041298e-07,3.495110806184671526e-07,3.883456451316301754e-07,4.271802096447931983e-07,4.660147741579562211e-07,5.048493386711192969e-07,5.436839031842823197e-07,5.825184676974453425e-07,6.213530322106083654e-07,6.601875967237713882e-07,6.990221612369344111e-07,7.378567257500974339e-07,7.766912902632604567e-07,8.155258547764234796e-07,8.543604192895865024e-07,8.931949838027495252e-07,9.320295483159125481e-07,9.708641128290755709e-07,1.009698677342238594e-06,1.048533241855401617e-06,1.087367806368564639e-06,1.126202370881727662e-06,1.165036935394890685e-06,1.203871499908053708e-06,1.242706064421216731e-06,1.281540628934379754e-06,1.320375193447542776e-06,1.359209757960705799e-06,1.398044322473868822e-06,1.436878886987031845e-06,1.475713451500194868e-06,1.514548016013357891e-06,1.553382580526520913e-06,1.592217145039683936e-06,1.631051709552846959e-06,1.669886274066009982e-06,1.708720838579173005e-06,1.747555403092336028e-06,1.786389967605499050e-06,1.825224532118662073e-06,1.864059096631825096e-06,1.902893661144988119e-06,1.941728225658151142e-06,1.980562790171314165e-06,2.019397354684477188e-06,2.058231919197640210e-06,2.097066483710803233e-06,2.135901048223966256e-06,2.174735612737129279e-06,2.213570177250292302e-06,2.252404741763455325e-06,2.291239306276618347e-06,2.330073870789781370e-06,2.368908435302944393e-06,2.407742999816107416e-06,2.446577564329270439e-06 +0.000000000000000000e+00,4.187371926846672342e-08,8.374743853693344684e-08,1.256211578054001636e-07,1.674948770738668672e-07,2.093685963423335708e-07,2.512423156108002743e-07,2.931160348792669779e-07,3.349897541477336815e-07,3.768634734162003850e-07,4.187371926846670886e-07,4.606109119531337922e-07,5.024846312216004428e-07,5.443583504900671464e-07,5.862320697585338499e-07,6.281057890270005535e-07,6.699795082954672571e-07,7.118532275639339606e-07,7.537269468324006642e-07,7.956006661008673678e-07,8.374743853693340713e-07,8.793481046378007749e-07,9.212218239062674785e-07,9.630955431747341820e-07,1.004969262443200886e-06,1.046842981711667589e-06,1.088716700980134293e-06,1.130590420248600996e-06,1.172464139517067700e-06,1.214337858785534403e-06,1.256211578054001107e-06,1.298085297322467811e-06,1.339959016590934514e-06,1.381832735859401218e-06,1.423706455127867921e-06,1.465580174396334625e-06,1.507453893664801328e-06,1.549327612933268032e-06,1.591201332201734736e-06,1.633075051470201439e-06,1.674948770738668143e-06,1.716822490007134846e-06,1.758696209275601550e-06,1.800569928544068253e-06,1.842443647812534957e-06,1.884317367081001661e-06,1.926191086349468364e-06,1.968064805617935068e-06,2.009938524886401771e-06,2.051812244154868475e-06,2.093685963423335178e-06,2.135559682691801882e-06,2.177433401960268585e-06,2.219307121228735289e-06,2.261180840497201993e-06,2.303054559765668696e-06,2.344928279034135400e-06,2.386801998302602103e-06,2.428675717571068807e-06,2.470549436839535510e-06,2.512423156108002214e-06,2.554296875376468918e-06,2.596170594644935621e-06,2.638044313913402325e-06 +0.000000000000000000e+00,4.016215593554812088e-08,8.032431187109624175e-08,1.204864678066443626e-07,1.606486237421924835e-07,2.008107796777406044e-07,2.409729356132887253e-07,2.811350915488368726e-07,3.212972474843850199e-07,3.614594034199331673e-07,4.016215593554813146e-07,4.417837152910294620e-07,4.819458712265775564e-07,5.221080271621256508e-07,5.622701830976737452e-07,6.024323390332218396e-07,6.425944949687699340e-07,6.827566509043180284e-07,7.229188068398661228e-07,7.630809627754142172e-07,8.032431187109623116e-07,8.434052746465104060e-07,8.835674305820585004e-07,9.237295865176065948e-07,9.638917424531546892e-07,1.004053898388702678e-06,1.044216054324250666e-06,1.084378210259798655e-06,1.124540366195346643e-06,1.164702522130894632e-06,1.204864678066442620e-06,1.245026834001990609e-06,1.285188989937538597e-06,1.325351145873086586e-06,1.365513301808634575e-06,1.405675457744182563e-06,1.445837613679730552e-06,1.485999769615278540e-06,1.526161925550826529e-06,1.566324081486374517e-06,1.606486237421922506e-06,1.646648393357470494e-06,1.686810549293018483e-06,1.726972705228566471e-06,1.767134861164114460e-06,1.807297017099662448e-06,1.847459173035210437e-06,1.887621328970758425e-06,1.927783484906306414e-06,1.967945640841854402e-06,2.008107796777402391e-06,2.048269952712950379e-06,2.088432108648498368e-06,2.128594264584046357e-06,2.168756420519594345e-06,2.208918576455142334e-06,2.249080732390690322e-06,2.289242888326238311e-06,2.329405044261786299e-06,2.369567200197334288e-06,2.409729356132882276e-06,2.449891512068430265e-06,2.490053668003978253e-06,2.530215823939526242e-06 +0.000000000000000000e+00,4.022971347046383862e-08,8.045942694092767724e-08,1.206891404113915225e-07,1.609188538818553809e-07,2.011485673523192394e-07,2.413782808227830979e-07,2.816079942932469564e-07,3.218377077637108148e-07,3.620674212341746733e-07,4.022971347046385318e-07,4.425268481751023902e-07,4.827565616455663016e-07,5.229862751160301601e-07,5.632159885864940186e-07,6.034457020569578771e-07,6.436754155274217355e-07,6.839051289978855940e-07,7.241348424683494525e-07,7.643645559388133109e-07,8.045942694092771694e-07,8.448239828797410279e-07,8.850536963502048863e-07,9.252834098206687448e-07,9.655131232911326033e-07,1.005742836761596462e-06,1.045972550232060320e-06,1.086202263702524179e-06,1.126431977172988037e-06,1.166661690643451896e-06,1.206891404113915754e-06,1.247121117584379613e-06,1.287350831054843471e-06,1.327580544525307330e-06,1.367810257995771188e-06,1.408039971466235046e-06,1.448269684936698905e-06,1.488499398407162763e-06,1.528729111877626622e-06,1.568958825348090480e-06,1.609188538818554339e-06,1.649418252289018197e-06,1.689647965759482056e-06,1.729877679229945914e-06,1.770107392700409773e-06,1.810337106170873631e-06,1.850566819641337490e-06,1.890796533111801348e-06,1.931026246582265207e-06,1.971255960052729065e-06,2.011485673523192924e-06,2.051715386993656782e-06,2.091945100464120640e-06,2.132174813934584499e-06,2.172404527405048357e-06,2.212634240875512216e-06,2.252863954345976074e-06,2.293093667816439933e-06,2.333323381286903791e-06,2.373553094757367650e-06,2.413782808227831508e-06,2.454012521698295367e-06,2.494242235168759225e-06,2.534471948639223084e-06 +0.000000000000000000e+00,4.136228662312900764e-08,8.272457324625801529e-08,1.240868598693870295e-07,1.654491464925160570e-07,2.068114331156450845e-07,2.481737197387741120e-07,2.895360063619031395e-07,3.308982929850321670e-07,3.722605796081611945e-07,4.136228662312902220e-07,4.549851528544192495e-07,4.963474394775483300e-07,5.377097261006773575e-07,5.790720127238063850e-07,6.204342993469354124e-07,6.617965859700644399e-07,7.031588725931934674e-07,7.445211592163224949e-07,7.858834458394515224e-07,8.272457324625805499e-07,8.686080190857095774e-07,9.099703057088386049e-07,9.513325923319676324e-07,9.926948789550966599e-07,1.034057165578225687e-06,1.075419452201354715e-06,1.116781738824483742e-06,1.158144025447612770e-06,1.199506312070741797e-06,1.240868598693870825e-06,1.282230885316999852e-06,1.323593171940128880e-06,1.364955458563257907e-06,1.406317745186386935e-06,1.447680031809515962e-06,1.489042318432644990e-06,1.530404605055774017e-06,1.571766891678903045e-06,1.613129178302032072e-06,1.654491464925161100e-06,1.695853751548290127e-06,1.737216038171419155e-06,1.778578324794548182e-06,1.819940611417677210e-06,1.861302898040806237e-06,1.902665184663935265e-06,1.944027471287064292e-06,1.985389757910193320e-06,2.026752044533322347e-06,2.068114331156451375e-06,2.109476617779580402e-06,2.150838904402709430e-06,2.192201191025838457e-06,2.233563477648967485e-06,2.274925764272096512e-06,2.316288050895225540e-06,2.357650337518354567e-06,2.399012624141483595e-06,2.440374910764612622e-06,2.481737197387741650e-06,2.523099484010870677e-06,2.564461770633999705e-06,2.605824057257128732e-06 +0.000000000000000000e+00,3.869032809325586881e-08,7.738065618651173762e-08,1.160709842797675998e-07,1.547613123730234488e-07,1.934516404662792977e-07,2.321419685595351467e-07,2.708322966527909956e-07,3.095226247460468446e-07,3.482129528393026935e-07,3.869032809325585425e-07,4.255936090258143914e-07,4.642839371190702404e-07,5.029742652123260894e-07,5.416645933055819913e-07,5.803549213988378931e-07,6.190452494920937950e-07,6.577355775853496969e-07,6.964259056786055988e-07,7.351162337718615007e-07,7.738065618651174026e-07,8.124968899583733045e-07,8.511872180516292064e-07,8.898775461448851083e-07,9.285678742381410102e-07,9.672582023313968062e-07,1.005948530424652602e-06,1.044638858517908398e-06,1.083329186611164194e-06,1.122019514704419990e-06,1.160709842797675786e-06,1.199400170890931582e-06,1.238090498984187378e-06,1.276780827077443174e-06,1.315471155170698970e-06,1.354161483263954766e-06,1.392851811357210562e-06,1.431542139450466358e-06,1.470232467543722154e-06,1.508922795636977950e-06,1.547613123730233746e-06,1.586303451823489542e-06,1.624993779916745338e-06,1.663684108010001135e-06,1.702374436103256931e-06,1.741064764196512727e-06,1.779755092289768523e-06,1.818445420383024319e-06,1.857135748476280115e-06,1.895826076569535911e-06,1.934516404662791918e-06,1.973206732756047926e-06,2.011897060849303934e-06,2.050587388942559942e-06,2.089277717035815949e-06,2.127968045129071957e-06,2.166658373222327965e-06,2.205348701315583973e-06,2.244039029408839981e-06,2.282729357502095988e-06,2.321419685595351996e-06,2.360110013688608004e-06,2.398800341781864012e-06,2.437490669875120019e-06 +0.000000000000000000e+00,3.951526011484793699e-08,7.903052022969587398e-08,1.185457803445438110e-07,1.580610404593917480e-07,1.975763005742396850e-07,2.370915606890876219e-07,2.766068208039355854e-07,3.161220809187835489e-07,3.556373410336315123e-07,3.951526011484794758e-07,4.346678612633274392e-07,4.741831213781754027e-07,5.136983814930233662e-07,5.532136416078713826e-07,5.927289017227193990e-07,6.322441618375674154e-07,6.717594219524154318e-07,7.112746820672634482e-07,7.507899421821114646e-07,7.903052022969594810e-07,8.298204624118074974e-07,8.693357225266555138e-07,9.088509826415035302e-07,9.483662427563515466e-07,9.878815028711995630e-07,1.027396762986047579e-06,1.066912023100895596e-06,1.106427283215743612e-06,1.145942543330591629e-06,1.185457803445439645e-06,1.224973063560287661e-06,1.264488323675135678e-06,1.304003583789983694e-06,1.343518843904831711e-06,1.383034104019679727e-06,1.422549364134527743e-06,1.462064624249375760e-06,1.501579884364223776e-06,1.541095144479071793e-06,1.580610404593919809e-06,1.620125664708767825e-06,1.659640924823615842e-06,1.699156184938463858e-06,1.738671445053311875e-06,1.778186705168159891e-06,1.817701965283007907e-06,1.857217225397855924e-06,1.896732485512703940e-06,1.936247745627551957e-06,1.975763005742399973e-06,2.015278265857247989e-06,2.054793525972096006e-06,2.094308786086944022e-06,2.133824046201792039e-06,2.173339306316640055e-06,2.212854566431488071e-06,2.252369826546336088e-06,2.291885086661184104e-06,2.331400346776032121e-06,2.370915606890880137e-06,2.410430867005728153e-06,2.449946127120576170e-06,2.489461387235424186e-06 +0.000000000000000000e+00,4.090952501185245710e-08,8.181905002370491420e-08,1.227285750355573647e-07,1.636381000474098019e-07,2.045476250592622392e-07,2.454571500711146764e-07,2.863666750829671401e-07,3.272762000948196038e-07,3.681857251066720676e-07,4.090952501185245313e-07,4.500047751303769950e-07,4.909143001422294587e-07,5.318238251540819224e-07,5.727333501659343861e-07,6.136428751777868499e-07,6.545524001896393136e-07,6.954619252014917773e-07,7.363714502133442410e-07,7.772809752251967047e-07,8.181905002370491684e-07,8.591000252489016321e-07,9.000095502607540959e-07,9.409190752726065596e-07,9.818286002844591292e-07,1.022738125296311699e-06,1.063647650308164268e-06,1.104557175320016838e-06,1.145466700331869408e-06,1.186376225343721977e-06,1.227285750355574547e-06,1.268195275367427116e-06,1.309104800379279686e-06,1.350014325391132256e-06,1.390923850402984825e-06,1.431833375414837395e-06,1.472742900426689964e-06,1.513652425438542534e-06,1.554561950450395103e-06,1.595471475462247673e-06,1.636381000474100243e-06,1.677290525485952812e-06,1.718200050497805382e-06,1.759109575509657951e-06,1.800019100521510521e-06,1.840928625533363091e-06,1.881838150545215660e-06,1.922747675557068230e-06,1.963657200568920799e-06,2.004566725580773369e-06,2.045476250592625939e-06,2.086385775604478508e-06,2.127295300616331078e-06,2.168204825628183647e-06,2.209114350640036217e-06,2.250023875651888787e-06,2.290933400663741356e-06,2.331842925675593926e-06,2.372752450687446495e-06,2.413661975699299065e-06,2.454571500711151635e-06,2.495481025723004204e-06,2.536390550734856774e-06,2.577300075746709343e-06 +0.000000000000000000e+00,4.164055804060787139e-08,8.328111608121574278e-08,1.249216741218236076e-07,1.665622321624314591e-07,2.082027902030393106e-07,2.498433482436471622e-07,2.914839062842549872e-07,3.331244643248628123e-07,3.747650223654706374e-07,4.164055804060784624e-07,4.580461384466862875e-07,4.996866964872941126e-07,5.413272545279019376e-07,5.829678125685097627e-07,6.246083706091175878e-07,6.662489286497254128e-07,7.078894866903332379e-07,7.495300447309410630e-07,7.911706027715488880e-07,8.328111608121567131e-07,8.744517188527645382e-07,9.160922768933723632e-07,9.577328349339800824e-07,9.993733929745878016e-07,1.041013951015195521e-06,1.082654509055803240e-06,1.124295067096410959e-06,1.165935625137018678e-06,1.207576183177626398e-06,1.249216741218234117e-06,1.290857299258841836e-06,1.332497857299449555e-06,1.374138415340057274e-06,1.415778973380664993e-06,1.457419531421272713e-06,1.499060089461880432e-06,1.540700647502488151e-06,1.582341205543095870e-06,1.623981763583703589e-06,1.665622321624311309e-06,1.707262879664919028e-06,1.748903437705526747e-06,1.790543995746134466e-06,1.832184553786742185e-06,1.873825111827349905e-06,1.915465669867957624e-06,1.957106227908565343e-06,1.998746785949173062e-06,2.040387343989780781e-06,2.082027902030388501e-06,2.123668460070996220e-06,2.165309018111603939e-06,2.206949576152211658e-06,2.248590134192819377e-06,2.290230692233427096e-06,2.331871250274034816e-06,2.373511808314642535e-06,2.415152366355250254e-06,2.456792924395857973e-06,2.498433482436465692e-06,2.540074040477073412e-06,2.581714598517681131e-06,2.623355156558288850e-06 +0.000000000000000000e+00,3.858249895680887473e-08,7.716499791361774946e-08,1.157474968704266308e-07,1.543299958272355254e-07,1.929124947840444200e-07,2.314949937408533145e-07,2.700774926976622356e-07,3.086599916544711566e-07,3.472424906112800777e-07,3.858249895680889988e-07,4.244074885248979198e-07,4.629899874817068409e-07,5.015724864385157619e-07,5.401549853953246830e-07,5.787374843521336040e-07,6.173199833089425251e-07,6.559024822657514461e-07,6.944849812225603672e-07,7.330674801793692882e-07,7.716499791361782093e-07,8.102324780929871303e-07,8.488149770497960514e-07,8.873974760066049724e-07,9.259799749634138935e-07,9.645624739202227086e-07,1.003144972877031524e-06,1.041727471833840339e-06,1.080309970790649154e-06,1.118892469747457969e-06,1.157474968704266784e-06,1.196057467661075600e-06,1.234639966617884415e-06,1.273222465574693230e-06,1.311804964531502045e-06,1.350387463488310860e-06,1.388969962445119676e-06,1.427552461401928491e-06,1.466134960358737306e-06,1.504717459315546121e-06,1.543299958272354936e-06,1.581882457229163751e-06,1.620464956185972567e-06,1.659047455142781382e-06,1.697629954099590197e-06,1.736212453056399012e-06,1.774794952013207827e-06,1.813377450970016642e-06,1.851959949926825458e-06,1.890542448883634273e-06,1.929124947840442876e-06,1.967707446797251480e-06,2.006289945754060083e-06,2.044872444710868686e-06,2.083454943667677290e-06,2.122037442624485893e-06,2.160619941581294497e-06,2.199202440538103100e-06,2.237784939494911703e-06,2.276367438451720307e-06,2.314949937408528910e-06,2.353532436365337514e-06,2.392114935322146117e-06,2.430697434278954721e-06 +0.000000000000000000e+00,4.090952501185765179e-08,8.181905002371530358e-08,1.227285750355729554e-07,1.636381000474306072e-07,2.045476250592882590e-07,2.454571500711459108e-07,2.863666750830035625e-07,3.272762000948612143e-07,3.681857251067188661e-07,4.090952501185765179e-07,4.500047751304341697e-07,4.909143001422918215e-07,5.318238251541494733e-07,5.727333501660071251e-07,6.136428751778647769e-07,6.545524001897224287e-07,6.954619252015800805e-07,7.363714502134377323e-07,7.772809752252953841e-07,8.181905002371530358e-07,8.591000252490106876e-07,9.000095502608683394e-07,9.409190752727259912e-07,9.818286002845836430e-07,1.022738125296441295e-06,1.063647650308298947e-06,1.104557175320156598e-06,1.145466700332014250e-06,1.186376225343871902e-06,1.227285750355729554e-06,1.268195275367587206e-06,1.309104800379444857e-06,1.350014325391302509e-06,1.390923850403160161e-06,1.431833375415017813e-06,1.472742900426875465e-06,1.513652425438733116e-06,1.554561950450590768e-06,1.595471475462448420e-06,1.636381000474306072e-06,1.677290525486163723e-06,1.718200050498021375e-06,1.759109575509879027e-06,1.800019100521736679e-06,1.840928625533594331e-06,1.881838150545451982e-06,1.922747675557309634e-06,1.963657200569167286e-06,2.004566725581024938e-06,2.045476250592882590e-06,2.086385775604740241e-06,2.127295300616597893e-06,2.168204825628455545e-06,2.209114350640313197e-06,2.250023875652170849e-06,2.290933400664028500e-06,2.331842925675886152e-06,2.372752450687743804e-06,2.413661975699601456e-06,2.454571500711459108e-06,2.495481025723316759e-06,2.536390550735174411e-06,2.577300075747032063e-06 +0.000000000000000000e+00,4.164055804061320505e-08,8.328111608122641010e-08,1.249216741218396218e-07,1.665622321624528467e-07,2.082027902030660716e-07,2.498433482436792965e-07,2.914839062842925214e-07,3.331244643249057463e-07,3.747650223655189712e-07,4.164055804061321961e-07,4.580461384467454210e-07,4.996866964873586988e-07,5.413272545279719237e-07,5.829678125685851486e-07,6.246083706091983735e-07,6.662489286498115984e-07,7.078894866904248233e-07,7.495300447310380482e-07,7.911706027716512731e-07,8.328111608122644980e-07,8.744517188528777229e-07,9.160922768934909478e-07,9.577328349341041728e-07,9.993733929747173977e-07,1.041013951015330623e-06,1.082654509055943847e-06,1.124295067096557072e-06,1.165935625137170297e-06,1.207576183177783522e-06,1.249216741218396747e-06,1.290857299259009972e-06,1.332497857299623197e-06,1.374138415340236422e-06,1.415778973380849647e-06,1.457419531421462872e-06,1.499060089462076096e-06,1.540700647502689321e-06,1.582341205543302546e-06,1.623981763583915771e-06,1.665622321624528996e-06,1.707262879665142221e-06,1.748903437705755446e-06,1.790543995746368671e-06,1.832184553786981896e-06,1.873825111827595121e-06,1.915465669868208346e-06,1.957106227908821570e-06,1.998746785949434795e-06,2.040387343990048020e-06,2.082027902030661245e-06,2.123668460071274470e-06,2.165309018111887695e-06,2.206949576152500920e-06,2.248590134193114145e-06,2.290230692233727370e-06,2.331871250274340595e-06,2.373511808314953819e-06,2.415152366355567044e-06,2.456792924396180269e-06,2.498433482436793494e-06,2.540074040477406719e-06,2.581714598518019944e-06,2.623355156558633169e-06 +0.000000000000000000e+00,3.858249895681348047e-08,7.716499791362696094e-08,1.157474968704404480e-07,1.543299958272539484e-07,1.929124947840674487e-07,2.314949937408809490e-07,2.700774926976944229e-07,3.086599916545078967e-07,3.472424906113213706e-07,3.858249895681348444e-07,4.244074885249483183e-07,4.629899874817617921e-07,5.015724864385752660e-07,5.401549853953887398e-07,5.787374843522022137e-07,6.173199833090156875e-07,6.559024822658291614e-07,6.944849812226426352e-07,7.330674801794561091e-07,7.716499791362695829e-07,8.102324780930830568e-07,8.488149770498965306e-07,8.873974760067100045e-07,9.259799749635234784e-07,9.645624739203370581e-07,1.003144972877150744e-06,1.041727471833964429e-06,1.080309970790778115e-06,1.118892469747591801e-06,1.157474968704405486e-06,1.196057467661219172e-06,1.234639966618032857e-06,1.273222465574846543e-06,1.311804964531660229e-06,1.350387463488473914e-06,1.388969962445287600e-06,1.427552461402101285e-06,1.466134960358914971e-06,1.504717459315728657e-06,1.543299958272542342e-06,1.581882457229356028e-06,1.620464956186169713e-06,1.659047455142983399e-06,1.697629954099797085e-06,1.736212453056610770e-06,1.774794952013424456e-06,1.813377450970238142e-06,1.851959949927051827e-06,1.890542448883865513e-06,1.929124947840679198e-06,1.967707446797492884e-06,2.006289945754306570e-06,2.044872444711120255e-06,2.083454943667933941e-06,2.122037442624747626e-06,2.160619941581561312e-06,2.199202440538374998e-06,2.237784939495188683e-06,2.276367438452002369e-06,2.314949937408816054e-06,2.353532436365629740e-06,2.392114935322443426e-06,2.430697434279257111e-06 +0.000000000000000000e+00,3.846641072550155348e-08,7.693282145100310695e-08,1.153992321765046538e-07,1.538656429020061874e-07,1.923320536275077211e-07,2.307984643530092547e-07,2.692648750785108148e-07,3.077312858040123749e-07,3.461976965295139350e-07,3.846641072550154951e-07,4.231305179805170551e-07,4.615969287060186152e-07,5.000633394315201753e-07,5.385297501570217354e-07,5.769961608825232955e-07,6.154625716080248556e-07,6.539289823335264157e-07,6.923953930590279758e-07,7.308618037845295359e-07,7.693282145100310960e-07,8.077946252355326561e-07,8.462610359610342162e-07,8.847274466865357763e-07,9.231938574120373364e-07,9.616602681375390023e-07,1.000126678863040562e-06,1.038593089588542123e-06,1.077059500314043683e-06,1.115525911039545243e-06,1.153992321765046803e-06,1.192458732490548363e-06,1.230925143216049923e-06,1.269391553941551483e-06,1.307857964667053043e-06,1.346324375392554603e-06,1.384790786118056163e-06,1.423257196843557723e-06,1.461723607569059284e-06,1.500190018294560844e-06,1.538656429020062404e-06,1.577122839745563964e-06,1.615589250471065524e-06,1.654055661196567084e-06,1.692522071922068644e-06,1.730988482647570204e-06,1.769454893373071764e-06,1.807921304098573324e-06,1.846387714824074884e-06,1.884854125549576445e-06,1.923320536275078005e-06,1.961786947000579565e-06,2.000253357726081125e-06,2.038719768451582685e-06,2.077186179177084245e-06,2.115652589902585805e-06,2.154119000628087365e-06,2.192585411353588925e-06,2.231051822079090485e-06,2.269518232804592046e-06,2.307984643530093606e-06,2.346451054255595166e-06,2.384917464981096726e-06,2.423383875706598286e-06 +0.000000000000000000e+00,3.982252350898767201e-08,7.964504701797534401e-08,1.194675705269630160e-07,1.592900940359506880e-07,1.991126175449383600e-07,2.389351410539260320e-07,2.787576645629136776e-07,3.185801880719013231e-07,3.584027115808889686e-07,3.982252350898766142e-07,4.380477585988642597e-07,4.778702821078519582e-07,5.176928056168396567e-07,5.575153291258273551e-07,5.973378526348150536e-07,6.371603761438027521e-07,6.769828996527904506e-07,7.168054231617781491e-07,7.566279466707658475e-07,7.964504701797535460e-07,8.362729936887412445e-07,8.760955171977289430e-07,9.159180407067166414e-07,9.557405642157043399e-07,9.955630877246920384e-07,1.035385611233679737e-06,1.075208134742667435e-06,1.115030658251655134e-06,1.154853181760642832e-06,1.194675705269630531e-06,1.234498228778618229e-06,1.274320752287605928e-06,1.314143275796593626e-06,1.353965799305581325e-06,1.393788322814569023e-06,1.433610846323556722e-06,1.473433369832544420e-06,1.513255893341532119e-06,1.553078416850519817e-06,1.592900940359507516e-06,1.632723463868495214e-06,1.672545987377482912e-06,1.712368510886470611e-06,1.752191034395458309e-06,1.792013557904446008e-06,1.831836081413433706e-06,1.871658604922421405e-06,1.911481128431409103e-06,1.951303651940396802e-06,1.991126175449384500e-06,2.030948698958372199e-06,2.070771222467359897e-06,2.110593745976347596e-06,2.150416269485335294e-06,2.190238792994322993e-06,2.230061316503310691e-06,2.269883840012298390e-06,2.309706363521286088e-06,2.349528887030273787e-06,2.389351410539261485e-06,2.429173934048249184e-06,2.468996457557236882e-06,2.508818981066224580e-06 +0.000000000000000000e+00,3.632807290234114400e-08,7.265614580468228801e-08,1.089842187070234320e-07,1.453122916093645760e-07,1.816403645117057068e-07,2.179684374140468376e-07,2.542965103163879683e-07,2.906245832187290991e-07,3.269526561210702299e-07,3.632807290234113606e-07,3.996088019257524914e-07,4.359368748280936222e-07,4.722649477304347529e-07,5.085930206327759367e-07,5.449210935351171204e-07,5.812491664374583041e-07,6.175772393397994878e-07,6.539053122421406715e-07,6.902333851444818552e-07,7.265614580468230389e-07,7.628895309491642226e-07,7.992176038515054063e-07,8.355456767538465900e-07,8.718737496561877738e-07,9.082018225585289575e-07,9.445298954608701412e-07,9.808579683632113249e-07,1.017186041265552509e-06,1.053514114167893692e-06,1.089842187070234876e-06,1.126170259972576060e-06,1.162498332874917243e-06,1.198826405777258427e-06,1.235154478679599611e-06,1.271482551581940795e-06,1.307810624484281978e-06,1.344138697386623162e-06,1.380466770288964346e-06,1.416794843191305529e-06,1.453122916093646713e-06,1.489450988995987897e-06,1.525779061898329081e-06,1.562107134800670264e-06,1.598435207703011448e-06,1.634763280605352632e-06,1.671091353507693815e-06,1.707419426410034999e-06,1.743747499312376183e-06,1.780075572214717366e-06,1.816403645117058550e-06,1.852731718019399734e-06,1.889059790921740918e-06,1.925387863824082101e-06,1.961715936726423497e-06,1.998044009628764892e-06,2.034372082531106288e-06,2.070700155433447683e-06,2.107028228335789079e-06,2.143356301238130474e-06,2.179684374140471870e-06,2.216012447042813265e-06,2.252340519945154661e-06,2.288668592847496056e-06 +0.000000000000000000e+00,3.846641072550672832e-08,7.693282145101345664e-08,1.153992321765201916e-07,1.538656429020269397e-07,1.923320536275336879e-07,2.307984643530404361e-07,2.692648750785471843e-07,3.077312858040539324e-07,3.461976965295606806e-07,3.846641072550674288e-07,4.231305179805741769e-07,4.615969287060809251e-07,5.000633394315876203e-07,5.385297501570942626e-07,5.769961608826009049e-07,6.154625716081075472e-07,6.539289823336141895e-07,6.923953930591208318e-07,7.308618037846274741e-07,7.693282145101341164e-07,8.077946252356407587e-07,8.462610359611474010e-07,8.847274466866540432e-07,9.231938574121606855e-07,9.616602681376673278e-07,1.000126678863173970e-06,1.038593089588680612e-06,1.077059500314187255e-06,1.115525911039693897e-06,1.153992321765200539e-06,1.192458732490707182e-06,1.230925143216213824e-06,1.269391553941720466e-06,1.307857964667227108e-06,1.346324375392733751e-06,1.384790786118240393e-06,1.423257196843747035e-06,1.461723607569253678e-06,1.500190018294760320e-06,1.538656429020266962e-06,1.577122839745773604e-06,1.615589250471280247e-06,1.654055661196786889e-06,1.692522071922293531e-06,1.730988482647800174e-06,1.769454893373306816e-06,1.807921304098813458e-06,1.846387714824320101e-06,1.884854125549826743e-06,1.923320536275333385e-06,1.961786947000840027e-06,2.000253357726346670e-06,2.038719768451853312e-06,2.077186179177359954e-06,2.115652589902866597e-06,2.154119000628373239e-06,2.192585411353879881e-06,2.231051822079386523e-06,2.269518232804893166e-06,2.307984643530399808e-06,2.346451054255906450e-06,2.384917464981413093e-06,2.423383875706919735e-06 +0.000000000000000000e+00,3.982252350899274097e-08,7.964504701798548194e-08,1.194675705269782361e-07,1.592900940359709903e-07,1.991126175449637445e-07,2.389351410539564723e-07,2.787576645629492000e-07,3.185801880719419278e-07,3.584027115809346555e-07,3.982252350899273832e-07,4.380477585989201110e-07,4.778702821079128387e-07,5.176928056169055135e-07,5.575153291258981883e-07,5.973378526348908631e-07,6.371603761438835379e-07,6.769828996528762127e-07,7.168054231618688875e-07,7.566279466708615622e-07,7.964504701798542370e-07,8.362729936888469118e-07,8.760955171978395866e-07,9.159180407068322614e-07,9.557405642158250421e-07,9.955630877248178228e-07,1.035385611233810603e-06,1.075208134742803384e-06,1.115030658251796165e-06,1.154853181760788945e-06,1.194675705269781726e-06,1.234498228778774507e-06,1.274320752287767287e-06,1.314143275796760068e-06,1.353965799305752849e-06,1.393788322814745630e-06,1.433610846323738410e-06,1.473433369832731191e-06,1.513255893341723972e-06,1.553078416850716752e-06,1.592900940359709533e-06,1.632723463868702314e-06,1.672545987377695094e-06,1.712368510886687875e-06,1.752191034395680656e-06,1.792013557904673436e-06,1.831836081413666217e-06,1.871658604922658998e-06,1.911481128431651778e-06,1.951303651940644559e-06,1.991126175449637340e-06,2.030948698958630120e-06,2.070771222467622901e-06,2.110593745976615682e-06,2.150416269485608462e-06,2.190238792994601243e-06,2.230061316503594024e-06,2.269883840012586804e-06,2.309706363521579585e-06,2.349528887030572366e-06,2.389351410539565146e-06,2.429173934048557927e-06,2.468996457557550708e-06,2.508818981066543488e-06 +0.000000000000000000e+00,3.632807290234582916e-08,7.265614580469165831e-08,1.089842187070374875e-07,1.453122916093833166e-07,1.816403645117291590e-07,2.179684374140750014e-07,2.542965103164208438e-07,2.906245832187666862e-07,3.269526561211125286e-07,3.632807290234583710e-07,3.996088019258042134e-07,4.359368748281500557e-07,4.722649477304958981e-07,5.085930206328417935e-07,5.449210935351876359e-07,5.812491664375334783e-07,6.175772393398793206e-07,6.539053122422251630e-07,6.902333851445710054e-07,7.265614580469168478e-07,7.628895309492626902e-07,7.992176038516085326e-07,8.355456767539543750e-07,8.718737496563002174e-07,9.082018225586460598e-07,9.445298954609919022e-07,9.808579683633377445e-07,1.017186041265683587e-06,1.053514114168029429e-06,1.089842187070375272e-06,1.126170259972721114e-06,1.162498332875066957e-06,1.198826405777412799e-06,1.235154478679758641e-06,1.271482551582104484e-06,1.307810624484450326e-06,1.344138697386796168e-06,1.380466770289142011e-06,1.416794843191487853e-06,1.453122916093833696e-06,1.489450988996179538e-06,1.525779061898525380e-06,1.562107134800871223e-06,1.598435207703217065e-06,1.634763280605562908e-06,1.671091353507908750e-06,1.707419426410254592e-06,1.743747499312600435e-06,1.780075572214946277e-06,1.816403645117292120e-06,1.852731718019637962e-06,1.889059790921983804e-06,1.925387863824329858e-06,1.961715936726675913e-06,1.998044009629021967e-06,2.034372082531368021e-06,2.070700155433714075e-06,2.107028228336060129e-06,2.143356301238406183e-06,2.179684374140752238e-06,2.216012447043098292e-06,2.252340519945444346e-06,2.288668592847790400e-06 +0.000000000000000000e+00,3.521854222589303840e-08,7.043708445178607681e-08,1.056556266776791086e-07,1.408741689035721271e-07,1.760927111294651457e-07,2.113112533553581642e-07,2.465297955812511828e-07,2.817483378071442013e-07,3.169668800330372199e-07,3.521854222589302384e-07,3.874039644848232570e-07,4.226225067107162755e-07,4.578410489366092941e-07,4.930595911625022597e-07,5.282781333883951724e-07,5.634966756142880850e-07,5.987152178401809977e-07,6.339337600660739104e-07,6.691523022919668231e-07,7.043708445178597357e-07,7.395893867437526484e-07,7.748079289696455611e-07,8.100264711955384737e-07,8.452450134214313864e-07,8.804635556473242991e-07,9.156820978732172118e-07,9.509006400991101244e-07,9.861191823250030371e-07,1.021337724550895950e-06,1.056556266776788862e-06,1.091774809002681775e-06,1.126993351228574688e-06,1.162211893454467600e-06,1.197430435680360513e-06,1.232648977906253426e-06,1.267867520132146338e-06,1.303086062358039251e-06,1.338304604583932164e-06,1.373523146809825076e-06,1.408741689035717989e-06,1.443960231261610902e-06,1.479178773487503814e-06,1.514397315713396727e-06,1.549615857939289640e-06,1.584834400165182553e-06,1.620052942391075465e-06,1.655271484616968378e-06,1.690490026842861291e-06,1.725708569068754203e-06,1.760927111294647116e-06,1.796145653520540029e-06,1.831364195746432941e-06,1.866582737972325854e-06,1.901801280198218767e-06,1.937019822424111467e-06,1.972238364650003957e-06,2.007456906875896446e-06,2.042675449101788935e-06,2.077893991327681424e-06,2.113112533553573913e-06,2.148331075779466402e-06,2.183549618005358892e-06,2.218768160231251381e-06 +0.000000000000000000e+00,3.691728436862426211e-08,7.383456873724852422e-08,1.107518531058727863e-07,1.476691374744970484e-07,1.845864218431213238e-07,2.215037062117455991e-07,2.584209905803698745e-07,2.953382749489941498e-07,3.322555593176184252e-07,3.691728436862427005e-07,4.060901280548669759e-07,4.430074124234912512e-07,4.799246967921155266e-07,5.168419811607397490e-07,5.537592655293639714e-07,5.906765498979881938e-07,6.275938342666124162e-07,6.645111186352366386e-07,7.014284030038608610e-07,7.383456873724850834e-07,7.752629717411093058e-07,8.121802561097335282e-07,8.490975404783577506e-07,8.860148248469819730e-07,9.229321092156061954e-07,9.598493935842304178e-07,9.967666779528545344e-07,1.033683962321478651e-06,1.070601246690102767e-06,1.107518531058726884e-06,1.144435815427351000e-06,1.181353099795975117e-06,1.218270384164599234e-06,1.255187668533223350e-06,1.292104952901847467e-06,1.329022237270471583e-06,1.365939521639095700e-06,1.402856806007719816e-06,1.439774090376343933e-06,1.476691374744968049e-06,1.513608659113592166e-06,1.550525943482216282e-06,1.587443227850840399e-06,1.624360512219464515e-06,1.661277796588088632e-06,1.698195080956712748e-06,1.735112365325336865e-06,1.772029649693960981e-06,1.808946934062585098e-06,1.845864218431209215e-06,1.882781502799833331e-06,1.919698787168457448e-06,1.956616071537081564e-06,1.993533355905705681e-06,2.030450640274329797e-06,2.067367924642953914e-06,2.104285209011578030e-06,2.141202493380202147e-06,2.178119777748826263e-06,2.215037062117450380e-06,2.251954346486074496e-06,2.288871630854698613e-06,2.325788915223322729e-06 +0.000000000000000000e+00,3.329055044171574969e-08,6.658110088343149938e-08,9.987165132514724245e-08,1.331622017668629723e-07,1.664527522085787021e-07,1.997433026502944320e-07,2.330338530920101618e-07,2.663244035337258916e-07,2.996149539754416479e-07,3.329055044171574042e-07,3.661960548588731605e-07,3.994866053005889168e-07,4.327771557423046731e-07,4.660677061840204295e-07,4.993582566257361858e-07,5.326488070674518891e-07,5.659393575091675925e-07,5.992299079508832959e-07,6.325204583925989992e-07,6.658110088343147026e-07,6.991015592760304060e-07,7.323921097177461093e-07,7.656826601594618127e-07,7.989732106011775161e-07,8.322637610428932194e-07,8.655543114846089228e-07,8.988448619263246261e-07,9.321354123680403295e-07,9.654259628097559270e-07,9.987165132514715245e-07,1.032007063693187122e-06,1.065297614134902719e-06,1.098588164576618317e-06,1.131878715018333914e-06,1.165169265460049512e-06,1.198459815901765109e-06,1.231750366343480707e-06,1.265040916785196304e-06,1.298331467226911902e-06,1.331622017668627499e-06,1.364912568110343097e-06,1.398203118552058694e-06,1.431493668993774292e-06,1.464784219435489889e-06,1.498074769877205487e-06,1.531365320318921084e-06,1.564655870760636682e-06,1.597946421202352279e-06,1.631236971644067877e-06,1.664527522085783474e-06,1.697818072527499072e-06,1.731108622969214669e-06,1.764399173410930267e-06,1.797689723852645864e-06,1.830980274294361462e-06,1.864270824736077059e-06,1.897561375177792657e-06,1.930851925619508466e-06,1.964142476061224275e-06,1.997433026502940084e-06,2.030723576944655894e-06,2.064014127386371703e-06,2.097304677828087512e-06 +0.000000000000000000e+00,3.521854222589870955e-08,7.043708445179741911e-08,1.056556266776961287e-07,1.408741689035948382e-07,1.760927111294935478e-07,2.113112533553922573e-07,2.465297955812909404e-07,2.817483378071896235e-07,3.169668800330883066e-07,3.521854222589869897e-07,3.874039644848856727e-07,4.226225067107843558e-07,4.578410489366830389e-07,4.930595911625816690e-07,5.282781333884802992e-07,5.634966756143789293e-07,5.987152178402775595e-07,6.339337600661761896e-07,6.691523022920748198e-07,7.043708445179734499e-07,7.395893867438720800e-07,7.748079289697707102e-07,8.100264711956693403e-07,8.452450134215679705e-07,8.804635556474666006e-07,9.156820978733652308e-07,9.509006400992638609e-07,9.861191823251624911e-07,1.021337724551061121e-06,1.056556266776959751e-06,1.091774809002858381e-06,1.126993351228757012e-06,1.162211893454655642e-06,1.197430435680554272e-06,1.232648977906452902e-06,1.267867520132351532e-06,1.303086062358250162e-06,1.338304604584148792e-06,1.373523146810047423e-06,1.408741689035946053e-06,1.443960231261844683e-06,1.479178773487743313e-06,1.514397315713641943e-06,1.549615857939540573e-06,1.584834400165439203e-06,1.620052942391337834e-06,1.655271484617236464e-06,1.690490026843135094e-06,1.725708569069033724e-06,1.760927111294932354e-06,1.796145653520830984e-06,1.831364195746729615e-06,1.866582737972628245e-06,1.901801280198526875e-06,1.937019822424425717e-06,1.972238364650324559e-06,2.007456906876223400e-06,2.042675449102122242e-06,2.077893991328021084e-06,2.113112533553919926e-06,2.148331075779818768e-06,2.183549618005717610e-06,2.218768160231616452e-06 +0.000000000000000000e+00,3.691728436862975459e-08,7.383456873725950918e-08,1.107518531058892638e-07,1.476691374745190184e-07,1.845864218431487730e-07,2.215037062117785275e-07,2.584209905804083086e-07,2.953382749490380897e-07,3.322555593176678707e-07,3.691728436862976518e-07,4.060901280549274328e-07,4.430074124235572139e-07,4.799246967921869950e-07,5.168419811608168290e-07,5.537592655294466630e-07,5.906765498980764970e-07,6.275938342667063310e-07,6.645111186353361650e-07,7.014284030039659990e-07,7.383456873725958330e-07,7.752629717412256670e-07,8.121802561098555010e-07,8.490975404784853350e-07,8.860148248471151690e-07,9.229321092157450030e-07,9.598493935843748370e-07,9.967666779530046710e-07,1.033683962321634505e-06,1.070601246690264339e-06,1.107518531058894173e-06,1.144435815427524007e-06,1.181353099796153841e-06,1.218270384164783675e-06,1.255187668533413509e-06,1.292104952902043343e-06,1.329022237270673177e-06,1.365939521639303011e-06,1.402856806007932845e-06,1.439774090376562679e-06,1.476691374745192513e-06,1.513608659113822347e-06,1.550525943482452181e-06,1.587443227851082015e-06,1.624360512219711849e-06,1.661277796588341683e-06,1.698195080956971517e-06,1.735112365325601351e-06,1.772029649694231185e-06,1.808946934062861019e-06,1.845864218431490853e-06,1.882781502800120687e-06,1.919698787168750521e-06,1.956616071537380143e-06,1.993533355906009765e-06,2.030450640274639388e-06,2.067367924643269010e-06,2.104285209011898632e-06,2.141202493380528254e-06,2.178119777749157877e-06,2.215037062117787499e-06,2.251954346486417121e-06,2.288871630855046743e-06,2.325788915223676366e-06 +0.000000000000000000e+00,3.329055044172082527e-08,6.658110088344165054e-08,9.987165132516247580e-08,1.331622017668833011e-07,1.664527522086041396e-07,1.997433026503249781e-07,2.330338530920458166e-07,2.663244035337666551e-07,2.996149539754874936e-07,3.329055044172083321e-07,3.661960548589291706e-07,3.994866053006500091e-07,4.327771557423708476e-07,4.660677061840916861e-07,4.993582566258125246e-07,5.326488070675334160e-07,5.659393575092543075e-07,5.992299079509751989e-07,6.325204583926960904e-07,6.658110088344169818e-07,6.991015592761378733e-07,7.323921097178587647e-07,7.656826601595796561e-07,7.989732106013005476e-07,8.322637610430214390e-07,8.655543114847423305e-07,8.988448619264632219e-07,9.321354123681841134e-07,9.654259628099050048e-07,9.987165132516258962e-07,1.032007063693346788e-06,1.065297614135067679e-06,1.098588164576788571e-06,1.131878715018509462e-06,1.165169265460230353e-06,1.198459815901951245e-06,1.231750366343672136e-06,1.265040916785393028e-06,1.298331467227113919e-06,1.331622017668834811e-06,1.364912568110555702e-06,1.398203118552276594e-06,1.431493668993997485e-06,1.464784219435718376e-06,1.498074769877439268e-06,1.531365320319160159e-06,1.564655870760881051e-06,1.597946421202601942e-06,1.631236971644322834e-06,1.664527522086043725e-06,1.697818072527764617e-06,1.731108622969485508e-06,1.764399173411206399e-06,1.797689723852927291e-06,1.830980274294648182e-06,1.864270824736369074e-06,1.897561375178089965e-06,1.930851925619810857e-06,1.964142476061531748e-06,1.997433026503252640e-06,2.030723576944973531e-06,2.064014127386694422e-06,2.097304677828415314e-06 +0.000000000000000000e+00,3.151224017894424821e-08,6.302448035788849643e-08,9.453672053683273802e-08,1.260489607157769664e-07,1.575612008947211947e-07,1.890734410736654231e-07,2.205856812526096515e-07,2.520979214315538798e-07,2.836101616104980817e-07,3.151224017894422836e-07,3.466346419683864855e-07,3.781468821473306874e-07,4.096591223262748893e-07,4.411713625052190912e-07,4.726836026841632931e-07,5.041958428631074420e-07,5.357080830420515910e-07,5.672203232209957399e-07,5.987325633999398889e-07,6.302448035788840378e-07,6.617570437578281868e-07,6.932692839367723357e-07,7.247815241157164847e-07,7.562937642946606336e-07,7.878060044736047826e-07,8.193182446525489315e-07,8.508304848314930805e-07,8.823427250104372294e-07,9.138549651893813784e-07,9.453672053683255273e-07,9.768794455472696763e-07,1.008391685726213825e-06,1.039903925905157974e-06,1.071416166084102123e-06,1.102928406263046272e-06,1.134440646441990421e-06,1.165952886620934570e-06,1.197465126799878719e-06,1.228977366978822868e-06,1.260489607157767017e-06,1.292001847336711166e-06,1.323514087515655315e-06,1.355026327694599464e-06,1.386538567873543613e-06,1.418050808052487762e-06,1.449563048231431911e-06,1.481075288410376059e-06,1.512587528589320208e-06,1.544099768768264357e-06,1.575612008947208506e-06,1.607124249126152655e-06,1.638636489305096804e-06,1.670148729484040953e-06,1.701660969662985102e-06,1.733173209841929251e-06,1.764685450020873400e-06,1.796197690199817549e-06,1.827709930378761698e-06,1.859222170557705847e-06,1.890734410736649996e-06,1.922246650915593933e-06,1.953758891094538082e-06,1.985271131273482231e-06 +0.000000000000000000e+00,3.341006915189847622e-08,6.682013830379695244e-08,1.002302074556954287e-07,1.336402766075939049e-07,1.670503457594923943e-07,2.004604149113908838e-07,2.338704840632893733e-07,2.672805532151878627e-07,3.006906223670863522e-07,3.341006915189848416e-07,3.675107606708833311e-07,4.009208298227818205e-07,4.343308989746803100e-07,4.677409681265787994e-07,5.011510372784772360e-07,5.345611064303756195e-07,5.679711755822740031e-07,6.013812447341723867e-07,6.347913138860707703e-07,6.682013830379691538e-07,7.016114521898675374e-07,7.350215213417659210e-07,7.684315904936643046e-07,8.018416596455626881e-07,8.352517287974610717e-07,8.686617979493594553e-07,9.020718671012578389e-07,9.354819362531562225e-07,9.688920054050546060e-07,1.002302074556952990e-06,1.035712143708851373e-06,1.069122212860749757e-06,1.102532282012648140e-06,1.135942351164546524e-06,1.169352420316444907e-06,1.202762489468343291e-06,1.236172558620241675e-06,1.269582627772140058e-06,1.302992696924038442e-06,1.336402766075936825e-06,1.369812835227835209e-06,1.403222904379733593e-06,1.436632973531631976e-06,1.470043042683530360e-06,1.503453111835428743e-06,1.536863180987327127e-06,1.570273250139225510e-06,1.603683319291123894e-06,1.637093388443022278e-06,1.670503457594920661e-06,1.703913526746819045e-06,1.737323595898717428e-06,1.770733665050615812e-06,1.804143734202514195e-06,1.837553803354412579e-06,1.870963872506310963e-06,1.904373941658209346e-06,1.937784010810107942e-06,1.971194079962006749e-06,2.004604149113905556e-06,2.038014218265804363e-06,2.071424287417703170e-06,2.104834356569601977e-06 +0.000000000000000000e+00,2.978191748634475697e-08,5.956383497268951394e-08,8.934575245903427090e-08,1.191276699453790279e-07,1.489095874317237848e-07,1.786915049180685418e-07,2.084734224044132988e-07,2.382553398907580557e-07,2.680372573771028392e-07,2.978191748634476226e-07,3.276010923497924061e-07,3.573830098361371895e-07,3.871649273224819729e-07,4.169468448088267564e-07,4.467287622951715398e-07,4.765106797815163233e-07,5.062925972678611067e-07,5.360745147542058901e-07,5.658564322405506736e-07,5.956383497268954570e-07,6.254202672132402404e-07,6.552021846995850239e-07,6.849841021859298073e-07,7.147660196722745908e-07,7.445479371586193742e-07,7.743298546449641576e-07,8.041117721313089411e-07,8.338936896176537245e-07,8.636756071039985079e-07,8.934575245903432914e-07,9.232394420766880748e-07,9.530213595630328583e-07,9.828032770493776417e-07,1.012585194535722425e-06,1.042367112022067209e-06,1.072149029508411992e-06,1.101930946994756775e-06,1.131712864481101559e-06,1.161494781967446342e-06,1.191276699453791126e-06,1.221058616940135909e-06,1.250840534426480693e-06,1.280622451912825476e-06,1.310404369399170260e-06,1.340186286885515043e-06,1.369968204371859826e-06,1.399750121858204610e-06,1.429532039344549393e-06,1.459313956830894177e-06,1.489095874317238960e-06,1.518877791803583744e-06,1.548659709289928527e-06,1.578441626776273310e-06,1.608223544262618094e-06,1.638005461748962877e-06,1.667787379235307661e-06,1.697569296721652444e-06,1.727351214207997228e-06,1.757133131694342011e-06,1.786915049180686795e-06,1.816696966667031578e-06,1.846478884153376361e-06,1.876260801639721145e-06 +0.000000000000000000e+00,3.151224017895031641e-08,6.302448035790063282e-08,9.453672053685094923e-08,1.260489607158012656e-07,1.575612008947515820e-07,1.890734410737018985e-07,2.205856812526522149e-07,2.520979214316025313e-07,2.836101616105528212e-07,3.151224017895031112e-07,3.466346419684534011e-07,3.781468821474036910e-07,4.096591223263539810e-07,4.411713625053042709e-07,4.726836026842545609e-07,5.041958428632048508e-07,5.357080830421551407e-07,5.672203232211054307e-07,5.987325634000557206e-07,6.302448035790060106e-07,6.617570437579563005e-07,6.932692839369065904e-07,7.247815241158568804e-07,7.562937642948071703e-07,7.878060044737574603e-07,8.193182446527077502e-07,8.508304848316580401e-07,8.823427250106083301e-07,9.138549651895586200e-07,9.453672053685089099e-07,9.768794455474591999e-07,1.008391685726409490e-06,1.039903925905359780e-06,1.071416166084310070e-06,1.102928406263260360e-06,1.134440646442210650e-06,1.165952886621160940e-06,1.197465126800111229e-06,1.228977366979061519e-06,1.260489607158011809e-06,1.292001847336962099e-06,1.323514087515912389e-06,1.355026327694862679e-06,1.386538567873812969e-06,1.418050808052763259e-06,1.449563048231713549e-06,1.481075288410663839e-06,1.512587528589614129e-06,1.544099768768564419e-06,1.575612008947514709e-06,1.607124249126464999e-06,1.638636489305415289e-06,1.670148729484365579e-06,1.701660969663315869e-06,1.733173209842266158e-06,1.764685450021216448e-06,1.796197690200166738e-06,1.827709930379117028e-06,1.859222170558067318e-06,1.890734410737017608e-06,1.922246650915967898e-06,1.953758891094918400e-06,1.985271131273868901e-06 +0.000000000000000000e+00,3.341006915190430619e-08,6.682013830380861238e-08,1.002302074557129120e-07,1.336402766076171983e-07,1.670503457595214846e-07,2.004604149114257710e-07,2.338704840633300573e-07,2.672805532152343436e-07,3.006906223671386035e-07,3.341006915190428634e-07,3.675107606709471232e-07,4.009208298228513831e-07,4.343308989747556430e-07,4.677409681266599028e-07,5.011510372785641627e-07,5.345611064304683696e-07,5.679711755823725766e-07,6.013812447342767835e-07,6.347913138861809904e-07,6.682013830380851974e-07,7.016114521899894043e-07,7.350215213418936112e-07,7.684315904937978181e-07,8.018416596457020251e-07,8.352517287976062320e-07,8.686617979495104389e-07,9.020718671014146459e-07,9.354819362533188528e-07,9.688920054052229538e-07,1.002302074557127055e-06,1.035712143709031156e-06,1.069122212860935257e-06,1.102532282012839358e-06,1.135942351164743459e-06,1.169352420316647560e-06,1.202762489468551661e-06,1.236172558620455762e-06,1.269582627772359863e-06,1.302992696924263964e-06,1.336402766076168065e-06,1.369812835228072166e-06,1.403222904379976267e-06,1.436632973531880369e-06,1.470043042683784470e-06,1.503453111835688571e-06,1.536863180987592672e-06,1.570273250139496773e-06,1.603683319291400874e-06,1.637093388443304975e-06,1.670503457595209076e-06,1.703913526747113177e-06,1.737323595899017278e-06,1.770733665050921379e-06,1.804143734202825480e-06,1.837553803354729581e-06,1.870963872506633682e-06,1.904373941658537783e-06,1.937784010810441672e-06,1.971194079962345562e-06,2.004604149114249451e-06,2.038014218266153340e-06,2.071424287418057230e-06,2.104834356569961119e-06 +0.000000000000000000e+00,2.978191748634993512e-08,5.956383497269987024e-08,8.934575245904980867e-08,1.191276699453997537e-07,1.489095874317496988e-07,1.786915049180996438e-07,2.084734224044495888e-07,2.382553398907995339e-07,2.680372573771494789e-07,2.978191748634993975e-07,3.276010923498493161e-07,3.573830098361992347e-07,3.871649273225491532e-07,4.169468448088990718e-07,4.467287622952489904e-07,4.765106797815989090e-07,5.062925972679487746e-07,5.360745147542986402e-07,5.658564322406485059e-07,5.956383497269983715e-07,6.254202672133482371e-07,6.552021846996981028e-07,6.849841021860479684e-07,7.147660196723978340e-07,7.445479371587476997e-07,7.743298546450975653e-07,8.041117721314474310e-07,8.338936896177972966e-07,8.636756071041471622e-07,8.934575245904970279e-07,9.232394420768468935e-07,9.530213595631967591e-07,9.828032770495466248e-07,1.012585194535896490e-06,1.042367112022246356e-06,1.072149029508596222e-06,1.101930946994946087e-06,1.131712864481295953e-06,1.161494781967645819e-06,1.191276699453995684e-06,1.221058616940345550e-06,1.250840534426695415e-06,1.280622451913045281e-06,1.310404369399395147e-06,1.340186286885745012e-06,1.369968204372094878e-06,1.399750121858444744e-06,1.429532039344794609e-06,1.459313956831144475e-06,1.489095874317494341e-06,1.518877791803844206e-06,1.548659709290194072e-06,1.578441626776543937e-06,1.608223544262893803e-06,1.638005461749243669e-06,1.667787379235593534e-06,1.697569296721943400e-06,1.727351214208293266e-06,1.757133131694643131e-06,1.786915049180992997e-06,1.816696966667342863e-06,1.846478884153692728e-06,1.876260801640042594e-06 +0.000000000000000000e+00,2.752298278937892698e-08,5.504596557875785396e-08,8.256894836813678425e-08,1.100919311575157212e-07,1.376149139468946448e-07,1.651378967362735685e-07,1.926608795256524922e-07,2.201838623150314159e-07,2.477068451044103395e-07,2.752298278937892897e-07,3.027528106831682398e-07,3.302757934725471900e-07,3.577987762619261401e-07,3.853217590513050902e-07,4.128447418406840404e-07,4.403677246300629905e-07,4.678907074194419407e-07,4.954136902088208908e-07,5.229366729981998939e-07,5.504596557875788970e-07,5.779826385769579001e-07,6.055056213663369031e-07,6.330286041557159062e-07,6.605515869450949093e-07,6.880745697344739124e-07,7.155975525238529155e-07,7.431205353132319186e-07,7.706435181026109216e-07,7.981665008919899247e-07,8.256894836813689278e-07,8.532124664707479309e-07,8.807354492601269340e-07,9.082584320495059370e-07,9.357814148388849401e-07,9.633043976282639432e-07,9.908273804176428404e-07,1.018350363207021738e-06,1.045873345996400635e-06,1.073396328785779532e-06,1.100919311575158429e-06,1.128442294364537326e-06,1.155965277153916224e-06,1.183488259943295121e-06,1.211011242732674018e-06,1.238534225522052915e-06,1.266057208311431812e-06,1.293580191100810710e-06,1.321103173890189607e-06,1.348626156679568504e-06,1.376149139468947401e-06,1.403672122258326298e-06,1.431195105047705196e-06,1.458718087837084093e-06,1.486241070626462990e-06,1.513764053415841887e-06,1.541287036205220784e-06,1.568810018994599682e-06,1.596333001783978579e-06,1.623855984573357476e-06,1.651378967362736373e-06,1.678901950152115270e-06,1.706424932941494168e-06,1.733947915730873065e-06 +0.000000000000000000e+00,2.954688669400583082e-08,5.909377338801166164e-08,8.864066008201748915e-08,1.181875467760233100e-07,1.477344334700291177e-07,1.772813201640349254e-07,2.068282068580407330e-07,2.363750935520465407e-07,2.659219802460523483e-07,2.954688669400581295e-07,3.250157536340639107e-07,3.545626403280696919e-07,3.841095270220754731e-07,4.136564137160812543e-07,4.432033004100870355e-07,4.727501871040928167e-07,5.022970737980985979e-07,5.318439604921043791e-07,5.613908471861101603e-07,5.909377338801159414e-07,6.204846205741217226e-07,6.500315072681275038e-07,6.795783939621332850e-07,7.091252806561390662e-07,7.386721673501448474e-07,7.682190540441506286e-07,7.977659407381564098e-07,8.273128274321621910e-07,8.568597141261679722e-07,8.864066008201737533e-07,9.159534875141795345e-07,9.455003742081853157e-07,9.750472609021912028e-07,1.004594147596196984e-06,1.034141034290202765e-06,1.063687920984208546e-06,1.093234807678214328e-06,1.122781694372220109e-06,1.152328581066225890e-06,1.181875467760231671e-06,1.211422354454237452e-06,1.240969241148243234e-06,1.270516127842249015e-06,1.300063014536254796e-06,1.329609901230260577e-06,1.359156787924266358e-06,1.388703674618272139e-06,1.418250561312277921e-06,1.447797448006283702e-06,1.477344334700289483e-06,1.506891221394295264e-06,1.536438108088301045e-06,1.565984994782306827e-06,1.595531881476312608e-06,1.625078768170318389e-06,1.654625654864324170e-06,1.684172541558329951e-06,1.713719428252335733e-06,1.743266314946341514e-06,1.772813201640347295e-06,1.802360088334353076e-06,1.831906975028358857e-06,1.861453861722364639e-06 +0.000000000000000000e+00,2.597903661745111440e-08,5.195807323490222879e-08,7.793710985235333657e-08,1.039161464698044444e-07,1.298951830872555521e-07,1.558742197047066731e-07,1.818532563221577942e-07,2.078322929396089152e-07,2.338113295570600362e-07,2.597903661745111572e-07,2.857694027919623047e-07,3.117484394094134522e-07,3.377274760268645997e-07,3.637065126443157471e-07,3.896855492617668946e-07,4.156645858792180421e-07,4.416436224966691896e-07,4.676226591141203371e-07,4.936016957315714846e-07,5.195807323490226320e-07,5.455597689664737795e-07,5.715388055839249270e-07,5.975178422013760745e-07,6.234968788188272220e-07,6.494759154362783695e-07,6.754549520537295169e-07,7.014339886711806644e-07,7.274130252886318119e-07,7.533920619060829594e-07,7.793710985235341069e-07,8.053501351409852544e-07,8.313291717584364018e-07,8.573082083758875493e-07,8.832872449933386968e-07,9.092662816107898443e-07,9.352453182282409918e-07,9.612243548456921393e-07,9.872033914631433926e-07,1.013182428080594646e-06,1.039161464698045899e-06,1.065140501315497153e-06,1.091119537932948406e-06,1.117098574550399659e-06,1.143077611167850913e-06,1.169056647785302166e-06,1.195035684402753420e-06,1.221014721020204673e-06,1.246993757637655926e-06,1.272972794255107180e-06,1.298951830872558433e-06,1.324930867490009686e-06,1.350909904107460940e-06,1.376888940724912193e-06,1.402867977342363446e-06,1.428847013959814700e-06,1.454826050577265953e-06,1.480805087194717207e-06,1.506784123812168460e-06,1.532763160429619713e-06,1.558742197047070967e-06,1.584721233664522220e-06,1.610700270281973473e-06,1.636679306899424727e-06 +0.000000000000000000e+00,2.752298278938474702e-08,5.504596557876949405e-08,8.256894836815424107e-08,1.100919311575389881e-07,1.376149139469237351e-07,1.651378967363084821e-07,1.926608795256932292e-07,2.201838623150779762e-07,2.477068451044626968e-07,2.752298278938474173e-07,3.027528106832321379e-07,3.302757934726168584e-07,3.577987762620015790e-07,3.853217590513862995e-07,4.128447418407710201e-07,4.403677246301557406e-07,4.678907074195404612e-07,4.954136902089251817e-07,5.229366729983099023e-07,5.504596557876946229e-07,5.779826385770793434e-07,6.055056213664640640e-07,6.330286041558487845e-07,6.605515869452335051e-07,6.880745697346182256e-07,7.155975525240029462e-07,7.431205353133876667e-07,7.706435181027723873e-07,7.981665008921571078e-07,8.256894836815418284e-07,8.532124664709265490e-07,8.807354492603112695e-07,9.082584320496959901e-07,9.357814148390807106e-07,9.633043976284653253e-07,9.908273804178499400e-07,1.018350363207234555e-06,1.045873345996619169e-06,1.073396328786003784e-06,1.100919311575388399e-06,1.128442294364773013e-06,1.155965277154157628e-06,1.183488259943542243e-06,1.211011242732926857e-06,1.238534225522311472e-06,1.266057208311696087e-06,1.293580191101080701e-06,1.321103173890465316e-06,1.348626156679849931e-06,1.376149139469234545e-06,1.403672122258619160e-06,1.431195105048003775e-06,1.458718087837388389e-06,1.486241070626773004e-06,1.513764053416157619e-06,1.541287036205542233e-06,1.568810018994926848e-06,1.596333001784311463e-06,1.623855984573696078e-06,1.651378967363080692e-06,1.678901950152465307e-06,1.706424932941849922e-06,1.733947915731234536e-06 +0.000000000000000000e+00,2.954688669401177660e-08,5.909377338802355319e-08,8.864066008203532979e-08,1.181875467760471064e-07,1.477344334700588697e-07,1.772813201640706331e-07,2.068282068580823965e-07,2.363750935520941598e-07,2.659219802461059232e-07,2.954688669401176865e-07,3.250157536341294499e-07,3.545626403281412133e-07,3.841095270221529766e-07,4.136564137161647400e-07,4.432033004101765033e-07,4.727501871041882667e-07,5.022970737982000301e-07,5.318439604922118464e-07,5.613908471862236627e-07,5.909377338802354790e-07,6.204846205742472953e-07,6.500315072682591116e-07,6.795783939622709279e-07,7.091252806562827442e-07,7.386721673502945605e-07,7.682190540443063768e-07,7.977659407383181931e-07,8.273128274323300094e-07,8.568597141263418257e-07,8.864066008203536420e-07,9.159534875143654583e-07,9.455003742083772746e-07,9.750472609023889850e-07,1.004594147596400695e-06,1.034141034290412406e-06,1.063687920984424116e-06,1.093234807678435827e-06,1.122781694372447537e-06,1.152328581066459248e-06,1.181875467760470958e-06,1.211422354454482668e-06,1.240969241148494379e-06,1.270516127842506089e-06,1.300063014536517800e-06,1.329609901230529510e-06,1.359156787924541220e-06,1.388703674618552931e-06,1.418250561312564641e-06,1.447797448006576352e-06,1.477344334700588062e-06,1.506891221394599773e-06,1.536438108088611483e-06,1.565984994782623193e-06,1.595531881476634904e-06,1.625078768170646614e-06,1.654625654864658325e-06,1.684172541558670035e-06,1.713719428252681746e-06,1.743266314946693456e-06,1.772813201640705166e-06,1.802360088334716877e-06,1.831906975028728587e-06,1.861453861722740298e-06 +0.000000000000000000e+00,2.597903661745625946e-08,5.195807323491251892e-08,7.793710985236878169e-08,1.039161464698250511e-07,1.298951830872813072e-07,1.558742197047375634e-07,1.818532563221938195e-07,2.078322929396500757e-07,2.338113295571063318e-07,2.597903661745626145e-07,2.857694027920188971e-07,3.117484394094751797e-07,3.377274760269314623e-07,3.637065126443877449e-07,3.896855492618440276e-07,4.156645858793003102e-07,4.416436224967565928e-07,4.676226591142128754e-07,4.936016957316691051e-07,5.195807323491253348e-07,5.455597689665815645e-07,5.715388055840377941e-07,5.975178422014940238e-07,6.234968788189502535e-07,6.494759154364064832e-07,6.754549520538627129e-07,7.014339886713189425e-07,7.274130252887751722e-07,7.533920619062314019e-07,7.793710985236876316e-07,8.053501351411438613e-07,8.313291717586000910e-07,8.573082083760563206e-07,8.832872449935125503e-07,9.092662816109687800e-07,9.352453182284250097e-07,9.612243548458812394e-07,9.872033914633373632e-07,1.013182428080793487e-06,1.039161464698249611e-06,1.065140501315705735e-06,1.091119537933161858e-06,1.117098574550617982e-06,1.143077611168074106e-06,1.169056647785530230e-06,1.195035684402986354e-06,1.221014721020442477e-06,1.246993757637898601e-06,1.272972794255354725e-06,1.298951830872810849e-06,1.324930867490266973e-06,1.350909904107723096e-06,1.376888940725179220e-06,1.402867977342635344e-06,1.428847013960091468e-06,1.454826050577547592e-06,1.480805087195003715e-06,1.506784123812459839e-06,1.532763160429915963e-06,1.558742197047372087e-06,1.584721233664828211e-06,1.610700270282284334e-06,1.636679306899740458e-06 +0.000000000000000000e+00,2.333848071254712847e-08,4.667696142509425694e-08,7.001544213764138210e-08,9.335392285018850064e-08,1.166924035627356192e-07,1.400308842752827377e-07,1.633693649878298695e-07,1.867078457003770013e-07,2.100463264129241331e-07,2.333848071254712648e-07,2.567232878380183966e-07,2.800617685505655284e-07,3.034002492631126602e-07,3.267387299756597920e-07,3.500772106882069237e-07,3.734156914007540555e-07,3.967541721133011873e-07,4.200926528258483191e-07,4.434311335383954508e-07,4.667696142509425826e-07,4.901080949634897144e-07,5.134465756760367932e-07,5.367850563885838721e-07,5.601235371011309509e-07,5.834620178136780298e-07,6.068004985262251086e-07,6.301389792387721874e-07,6.534774599513192663e-07,6.768159406638663451e-07,7.001544213764134239e-07,7.234929020889605028e-07,7.468313828015075816e-07,7.701698635140546605e-07,7.935083442266017393e-07,8.168468249391488181e-07,8.401853056516958970e-07,8.635237863642429758e-07,8.868622670767900546e-07,9.102007477893371335e-07,9.335392285018842123e-07,9.568777092144312912e-07,9.802161899269783700e-07,1.003554670639525449e-06,1.026893151352072528e-06,1.050231632064619607e-06,1.073570112777166685e-06,1.096908593489713764e-06,1.120247074202260843e-06,1.143585554914807922e-06,1.166924035627355001e-06,1.190262516339902080e-06,1.213600997052449158e-06,1.236939477764996237e-06,1.260277958477543316e-06,1.283616439190090395e-06,1.306954919902637474e-06,1.330293400615184553e-06,1.353631881327731631e-06,1.376970362040278710e-06,1.400308842752825789e-06,1.423647323465372868e-06,1.446985804177919947e-06,1.470324284890467026e-06 +0.000000000000000000e+00,2.545256413033883224e-08,5.090512826067766448e-08,7.635769239101650334e-08,1.018102565213553422e-07,1.272628206516941811e-07,1.527153847820330067e-07,1.781679489123718323e-07,2.036205130427106579e-07,2.290730771730494836e-07,2.545256413033883092e-07,2.799782054337271348e-07,3.054307695640659604e-07,3.308833336944047860e-07,3.563358978247436117e-07,3.817884619550824373e-07,4.072410260854212629e-07,4.326935902157600885e-07,4.581461543460989142e-07,4.835987184764377398e-07,5.090512826067765125e-07,5.345038467371152852e-07,5.599564108674540578e-07,5.854089749977928305e-07,6.108615391281316032e-07,6.363141032584703759e-07,6.617666673888091486e-07,6.872192315191479213e-07,7.126717956494866939e-07,7.381243597798254666e-07,7.635769239101642393e-07,7.890294880405030120e-07,8.144820521708417847e-07,8.399346163011805574e-07,8.653871804315193300e-07,8.908397445618581027e-07,9.162923086921968754e-07,9.417448728225356481e-07,9.671974369528744208e-07,9.926500010832131935e-07,1.018102565213551966e-06,1.043555129343890739e-06,1.069007693474229512e-06,1.094460257604568284e-06,1.119912821734907057e-06,1.145365385865245830e-06,1.170817949995584602e-06,1.196270514125923375e-06,1.221723078256262148e-06,1.247175642386600920e-06,1.272628206516939693e-06,1.298080770647278466e-06,1.323533334777617238e-06,1.348985898907956011e-06,1.374438463038294784e-06,1.399891027168633556e-06,1.425343591298972329e-06,1.450796155429311102e-06,1.476248719559649874e-06,1.501701283689988647e-06,1.527153847820327420e-06,1.552606411950666193e-06,1.578058976081004965e-06,1.603511540211343738e-06 +0.000000000000000000e+00,2.198356634530829783e-08,4.396713269061659566e-08,6.595069903592489018e-08,8.793426538123317808e-08,1.099178317265414660e-07,1.319013980718497539e-07,1.538849644171580418e-07,1.758685307624663297e-07,1.978520971077746176e-07,2.198356634530829055e-07,2.418192297983911669e-07,2.638027961436994548e-07,2.857863624890077427e-07,3.077699288343160306e-07,3.297534951796243185e-07,3.517370615249326064e-07,3.737206278702408943e-07,3.957041942155491822e-07,4.176877605608574701e-07,4.396713269061657581e-07,4.616548932514740460e-07,4.836384595967823339e-07,5.056220259420906218e-07,5.276055922873989097e-07,5.495891586327071976e-07,5.715727249780154855e-07,5.935562913233237734e-07,6.155398576686320613e-07,6.375234240139403492e-07,6.595069903592486371e-07,6.814905567045569250e-07,7.034741230498652129e-07,7.254576893951735008e-07,7.474412557404817887e-07,7.694248220857900766e-07,7.914083884310983645e-07,8.133919547764066524e-07,8.353755211217149403e-07,8.573590874670232282e-07,8.793426538123315161e-07,9.013262201576398040e-07,9.233097865029480919e-07,9.452933528482563798e-07,9.672769191935646677e-07,9.892604855388729556e-07,1.011244051884181244e-06,1.033227618229489531e-06,1.055211184574797819e-06,1.077194750920106107e-06,1.099178317265414395e-06,1.121161883610722683e-06,1.143145449956030971e-06,1.165129016301339259e-06,1.187112582646647547e-06,1.209096148991955835e-06,1.231079715337264123e-06,1.253063281682572410e-06,1.275046848027880698e-06,1.297030414373188986e-06,1.319013980718497274e-06,1.340997547063805562e-06,1.362981113409113850e-06,1.384964679754422138e-06 +0.000000000000000000e+00,2.333848071255265073e-08,4.667696142510530145e-08,7.001544213765795218e-08,9.335392285021060291e-08,1.166924035627632536e-07,1.400308842753159044e-07,1.633693649878685683e-07,1.867078457004212323e-07,2.100463264129738962e-07,2.333848071255265602e-07,2.567232878380792242e-07,2.800617685506318617e-07,3.034002492631844992e-07,3.267387299757371366e-07,3.500772106882897741e-07,3.734156914008424116e-07,3.967541721133950491e-07,4.200926528259476866e-07,4.434311335385003241e-07,4.667696142510529616e-07,4.901080949636055462e-07,5.134465756761581307e-07,5.367850563887107153e-07,5.601235371012632998e-07,5.834620178138158844e-07,6.068004985263684689e-07,6.301389792389210535e-07,6.534774599514736380e-07,6.768159406640262226e-07,7.001544213765788071e-07,7.234929020891313917e-07,7.468313828016839762e-07,7.701698635142365608e-07,7.935083442267891453e-07,8.168468249393417299e-07,8.401853056518943144e-07,8.635237863644468990e-07,8.868622670769994835e-07,9.102007477895520681e-07,9.335392285021046527e-07,9.568777092146572372e-07,9.802161899272098218e-07,1.003554670639762406e-06,1.026893151352314991e-06,1.050231632064867575e-06,1.073570112777420160e-06,1.096908593489972745e-06,1.120247074202525329e-06,1.143585554915077914e-06,1.166924035627630498e-06,1.190262516340183083e-06,1.213600997052735667e-06,1.236939477765288252e-06,1.260277958477840836e-06,1.283616439190393421e-06,1.306954919902946005e-06,1.330293400615498590e-06,1.353631881328051175e-06,1.376970362040603759e-06,1.400308842753156344e-06,1.423647323465708928e-06,1.446985804178261513e-06,1.470324284890814097e-06 +0.000000000000000000e+00,2.545256413034458942e-08,5.090512826068917884e-08,7.635769239103376164e-08,1.018102565213783444e-07,1.272628206517229272e-07,1.527153847820675233e-07,1.781679489124121193e-07,2.036205130427567153e-07,2.290730771731013114e-07,2.545256413034459074e-07,2.799782054337905035e-07,3.054307695641350995e-07,3.308833336944796955e-07,3.563358978248242916e-07,3.817884619551688876e-07,4.072410260855134836e-07,4.326935902158580797e-07,4.581461543462026757e-07,4.835987184765472188e-07,5.090512826068917090e-07,5.345038467372361991e-07,5.599564108675806893e-07,5.854089749979251794e-07,6.108615391282696696e-07,6.363141032586141597e-07,6.617666673889586499e-07,6.872192315193031400e-07,7.126717956496476302e-07,7.381243597799921204e-07,7.635769239103366105e-07,7.890294880406811007e-07,8.144820521710255908e-07,8.399346163013700810e-07,8.653871804317145711e-07,8.908397445620590613e-07,9.162923086924035515e-07,9.417448728227480416e-07,9.671974369530925318e-07,9.926500010834370219e-07,1.018102565213781512e-06,1.043555129344126002e-06,1.069007693474470492e-06,1.094460257604814983e-06,1.119912821735159473e-06,1.145365385865503963e-06,1.170817949995848453e-06,1.196270514126192943e-06,1.221723078256537433e-06,1.247175642386881923e-06,1.272628206517226414e-06,1.298080770647570904e-06,1.323533334777915394e-06,1.348985898908259884e-06,1.374438463038604374e-06,1.399891027168948864e-06,1.425343591299293355e-06,1.450796155429637845e-06,1.476248719559982335e-06,1.501701283690326825e-06,1.527153847820671315e-06,1.552606411951015805e-06,1.578058976081360296e-06,1.603511540211704786e-06 +0.000000000000000000e+00,2.198356634531312525e-08,4.396713269062625051e-08,6.595069903593936915e-08,8.793426538125248778e-08,1.099178317265656064e-07,1.319013980718787383e-07,1.538849644171918702e-07,1.758685307625050020e-07,1.978520971078181339e-07,2.198356634531312658e-07,2.418192297984444241e-07,2.638027961437575825e-07,2.857863624890707408e-07,3.077699288343838992e-07,3.297534951796970575e-07,3.517370615250102158e-07,3.737206278703233742e-07,3.957041942156365325e-07,4.176877605609496909e-07,4.396713269062628492e-07,4.616548932515760075e-07,4.836384595968891659e-07,5.056220259422023242e-07,5.276055922875154826e-07,5.495891586328286409e-07,5.715727249781417993e-07,5.935562913234549576e-07,6.155398576687681159e-07,6.375234240140812743e-07,6.595069903593944326e-07,6.814905567047075910e-07,7.034741230500207493e-07,7.254576893953339076e-07,7.474412557406470660e-07,7.694248220859602243e-07,7.914083884312733827e-07,8.133919547765865410e-07,8.353755211218996994e-07,8.573590874672128577e-07,8.793426538125260160e-07,9.013262201578391744e-07,9.233097865031523327e-07,9.452933528484654911e-07,9.672769191937785435e-07,9.892604855390917019e-07,1.011244051884404860e-06,1.033227618229718019e-06,1.055211184575031177e-06,1.077194750920344335e-06,1.099178317265657494e-06,1.121161883610970652e-06,1.143145449956283810e-06,1.165129016301596969e-06,1.187112582646910127e-06,1.209096148992223285e-06,1.231079715337536444e-06,1.253063281682849602e-06,1.275046848028162760e-06,1.297030414373475919e-06,1.319013980718789077e-06,1.340997547064102235e-06,1.362981113409415394e-06,1.384964679754728552e-06 +0.000000000000000000e+00,2.118826751186002143e-08,4.237653502372004287e-08,6.356480253558006761e-08,8.475307004744009897e-08,1.059413375593001303e-07,1.271296050711601617e-07,1.483178725830201931e-07,1.695061400948802244e-07,1.906944076067402558e-07,2.118826751186002871e-07,2.330709426304603185e-07,2.542592101423203763e-07,2.754474776541804342e-07,2.966357451660404920e-07,3.178240126779005498e-07,3.390122801897606076e-07,3.602005477016206655e-07,3.813888152134807233e-07,4.025770827253407811e-07,4.237653502372008390e-07,4.449536177490608968e-07,4.661418852609209546e-07,4.873301527727810654e-07,5.085184202846411762e-07,5.297066877965012869e-07,5.508949553083613977e-07,5.720832228202215085e-07,5.932714903320816192e-07,6.144597578439417300e-07,6.356480253558018408e-07,6.568362928676619516e-07,6.780245603795220623e-07,6.992128278913821731e-07,7.204010954032422839e-07,7.415893629151023946e-07,7.627776304269625054e-07,7.839658979388226162e-07,8.051541654506827269e-07,8.263424329625428377e-07,8.475307004744029485e-07,8.687189679862630593e-07,8.899072354981231700e-07,9.110955030099832808e-07,9.322837705218433916e-07,9.534720380337035023e-07,9.746603055455636131e-07,9.958485730574237239e-07,1.017036840569283835e-06,1.038225108081143945e-06,1.059413375593004056e-06,1.080601643104864167e-06,1.101789910616724278e-06,1.122978178128584388e-06,1.144166445640444499e-06,1.165354713152304610e-06,1.186542980664164721e-06,1.207731248176024832e-06,1.228919515687884942e-06,1.250107783199745053e-06,1.271296050711605164e-06,1.292484318223465275e-06,1.313672585735325385e-06,1.334860853247185496e-06 +0.000000000000000000e+00,2.118826751186518966e-08,4.237653502373037932e-08,6.356480253559556567e-08,8.475307004746074540e-08,1.059413375593259251e-07,1.271296050711911049e-07,1.483178725830562978e-07,1.695061400949214908e-07,1.906944076067866838e-07,2.118826751186518767e-07,2.330709426305170697e-07,2.542592101423822627e-07,2.754474776542474556e-07,2.966357451661126486e-07,3.178240126779778416e-07,3.390122801898430345e-07,3.602005477017082275e-07,3.813888152135734205e-07,4.025770827254386134e-07,4.237653502373038064e-07,4.449536177491689994e-07,4.661418852610341923e-07,4.873301527728994383e-07,5.085184202847646312e-07,5.297066877966298242e-07,5.508949553084950172e-07,5.720832228203602101e-07,5.932714903322254031e-07,6.144597578440905961e-07,6.356480253559557890e-07,6.568362928678209820e-07,6.780245603796861750e-07,6.992128278915513679e-07,7.204010954034165609e-07,7.415893629152817539e-07,7.627776304271469468e-07,7.839658979390121398e-07,8.051541654508773328e-07,8.263424329627425257e-07,8.475307004746077187e-07,8.687189679864729117e-07,8.899072354983381046e-07,9.110955030102032976e-07,9.322837705220684906e-07,9.534720380339336835e-07,9.746603055457988765e-07,9.958485730576640695e-07,1.017036840569529262e-06,1.038225108081394455e-06,1.059413375593259648e-06,1.080601643105124841e-06,1.101789910616990034e-06,1.122978178128855227e-06,1.144166445640720420e-06,1.165354713152585613e-06,1.186542980664450806e-06,1.207731248176315999e-06,1.228919515688181192e-06,1.250107783200046385e-06,1.271296050711911578e-06,1.292484318223776771e-06,1.313672585735641964e-06,1.334860853247507157e-06 +0.000000000000000000e+00,4.755748841429662290e-08,9.511497682859324579e-08,1.426724652428898621e-07,1.902299536571864651e-07,2.377874420714830682e-07,2.853449304857796712e-07,3.329024189000762743e-07,3.804599073143728773e-07,4.280173957286694803e-07,4.755748841429660834e-07,5.231323725572626864e-07,5.706898609715592365e-07,6.182473493858557866e-07,6.658048378001523367e-07,7.133623262144488869e-07,7.609198146287454370e-07,8.084773030430419871e-07,8.560347914573385372e-07,9.035922798716350873e-07,9.511497682859316374e-07,9.987072567002280816e-07,1.046264745114524526e-06,1.093822233528820970e-06,1.141379721943117414e-06,1.188937210357413859e-06,1.236494698771710303e-06,1.284052187186006747e-06,1.331609675600303191e-06,1.379167164014599635e-06,1.426724652428896080e-06,1.474282140843192524e-06,1.521839629257488968e-06,1.569397117671785412e-06,1.616954606086081857e-06,1.664512094500378301e-06,1.712069582914674745e-06,1.759627071328971189e-06,1.807184559743267633e-06,1.854742048157564078e-06,1.902299536571860522e-06,1.949857024986156966e-06,1.997414513400453622e-06,2.044972001814750278e-06,2.092529490229046934e-06,2.140086978643343590e-06,2.187644467057640246e-06,2.235201955471936902e-06,2.282759443886233558e-06,2.330316932300530214e-06,2.377874420714826870e-06,2.425431909129123526e-06,2.472989397543420182e-06,2.520546885957716838e-06,2.568104374372013494e-06,2.615661862786310150e-06,2.663219351200606806e-06,2.710776839614903462e-06,2.758334328029200118e-06,2.805891816443496774e-06,2.853449304857793430e-06,2.901006793272090086e-06,2.948564281686386742e-06,2.996121770100683398e-06 +0.000000000000000000e+00,4.419244117447815411e-08,8.838488234895630822e-08,1.325773235234344557e-07,1.767697646979125900e-07,2.209622058723907242e-07,2.651546470468688585e-07,3.093470882213469927e-07,3.535395293958251270e-07,3.977319705703032612e-07,4.419244117447813955e-07,4.861168529192594768e-07,5.303092940937376111e-07,5.745017352682157453e-07,6.186941764426938796e-07,6.628866176171720138e-07,7.070790587916501481e-07,7.512714999661282823e-07,7.954639411406064166e-07,8.396563823150845509e-07,8.838488234895626851e-07,9.280412646640408194e-07,9.722337058385189536e-07,1.016426147012997088e-06,1.060618588187475222e-06,1.104811029361953356e-06,1.149003470536431491e-06,1.193195911710909625e-06,1.237388352885387759e-06,1.281580794059865893e-06,1.325773235234344028e-06,1.369965676408822162e-06,1.414158117583300296e-06,1.458350558757778430e-06,1.502542999932256565e-06,1.546735441106734699e-06,1.590927882281212833e-06,1.635120323455690967e-06,1.679312764630169102e-06,1.723505205804647236e-06,1.767697646979125370e-06,1.811890088153603504e-06,1.856082529328081639e-06,1.900274970502559773e-06,1.944467411677037907e-06,1.988659852851516042e-06,2.032852294025994176e-06,2.077044735200472310e-06,2.121237176374950444e-06,2.165429617549428579e-06,2.209622058723906713e-06,2.253814499898384847e-06,2.298006941072862981e-06,2.342199382247341116e-06,2.386391823421819250e-06,2.430584264596297384e-06,2.474776705770775518e-06,2.518969146945253653e-06,2.563161588119731787e-06,2.607354029294209921e-06,2.651546470468688055e-06,2.695738911643166190e-06,2.739931352817644324e-06,2.784123793992122458e-06 +0.000000000000000000e+00,4.414876771923627130e-08,8.829753543847254259e-08,1.324463031577088073e-07,1.765950708769450587e-07,2.207438385961813102e-07,2.648926063154175616e-07,3.090413740346537866e-07,3.531901417538900116e-07,3.973389094731262365e-07,4.414876771923624615e-07,4.856364449115986865e-07,5.297852126308349115e-07,5.739339803500711364e-07,6.180827480693073614e-07,6.622315157885435864e-07,7.063802835077798114e-07,7.505290512270160363e-07,7.946778189462522613e-07,8.388265866654884863e-07,8.829753543847247113e-07,9.271241221039609362e-07,9.712728898231971612e-07,1.015421657542433280e-06,1.059570425261669399e-06,1.103719192980905518e-06,1.147867960700141638e-06,1.192016728419377757e-06,1.236165496138613876e-06,1.280314263857849995e-06,1.324463031577086114e-06,1.368611799296322233e-06,1.412760567015558352e-06,1.456909334734794471e-06,1.501058102454030590e-06,1.545206870173266709e-06,1.589355637892502829e-06,1.633504405611738948e-06,1.677653173330975067e-06,1.721801941050211186e-06,1.765950708769447305e-06,1.810099476488683424e-06,1.854248244207919543e-06,1.898397011927155662e-06,1.942545779646391781e-06,1.986694547365627900e-06,2.030843315084864020e-06,2.074992082804100139e-06,2.119140850523336258e-06,2.163289618242572377e-06,2.207438385961808496e-06,2.251587153681044615e-06,2.295735921400280734e-06,2.339884689119516853e-06,2.384033456838752972e-06,2.428182224557989091e-06,2.472330992277225210e-06,2.516479759996461330e-06,2.560628527715697449e-06,2.604777295434933568e-06,2.648926063154169687e-06,2.693074830873405806e-06,2.737223598592641925e-06,2.781372366311878044e-06 +0.000000000000000000e+00,4.678187297285640983e-08,9.356374594571281966e-08,1.403456189185692163e-07,1.871274918914256129e-07,2.339093648642820094e-07,2.806912378371384325e-07,3.274731108099948556e-07,3.742549837828512786e-07,4.210368567557077017e-07,4.678187297285641248e-07,5.146006027014205478e-07,5.613824756742769709e-07,6.081643486471333940e-07,6.549462216199898170e-07,7.017280945928462401e-07,7.485099675657026632e-07,7.952918405385590862e-07,8.420737135114155093e-07,8.888555864842719324e-07,9.356374594571283554e-07,9.824193324299847785e-07,1.029201205402841096e-06,1.075983078375697413e-06,1.122764951348553730e-06,1.169546824321410047e-06,1.216328697294266364e-06,1.263110570267122682e-06,1.309892443239978999e-06,1.356674316212835316e-06,1.403456189185691633e-06,1.450238062158547950e-06,1.497019935131404268e-06,1.543801808104260585e-06,1.590583681077116902e-06,1.637365554049973219e-06,1.684147427022829536e-06,1.730929299995685853e-06,1.777711172968542171e-06,1.824493045941398488e-06,1.871274918914254805e-06,1.918056791887111122e-06,1.964838664859967439e-06,2.011620537832823757e-06,2.058402410805680074e-06,2.105184283778536391e-06,2.151966156751392708e-06,2.198748029724249025e-06,2.245529902697105343e-06,2.292311775669961660e-06,2.339093648642817977e-06,2.385875521615674294e-06,2.432657394588530611e-06,2.479439267561386928e-06,2.526221140534243246e-06,2.573003013507099563e-06,2.619784886479955880e-06,2.666566759452812197e-06,2.713348632425668514e-06,2.760130505398524832e-06,2.806912378371381149e-06,2.853694251344237466e-06,2.900476124317093783e-06,2.947257997289950100e-06 +0.000000000000000000e+00,4.197159301452885127e-08,8.394318602905770255e-08,1.259147790435865604e-07,1.678863720581154316e-07,2.098579650726443027e-07,2.518295580871731738e-07,2.938011511017020714e-07,3.357727441162309690e-07,3.777443371307598666e-07,4.197159301452887642e-07,4.616875231598176618e-07,5.036591161743465594e-07,5.456307091888754570e-07,5.876023022034043546e-07,6.295738952179332522e-07,6.715454882324621498e-07,7.135170812469910474e-07,7.554886742615199450e-07,7.974602672760488425e-07,8.394318602905777401e-07,8.814034533051066377e-07,9.233750463196355353e-07,9.653466393341644329e-07,1.007318232348693331e-06,1.049289825363222228e-06,1.091261418377751126e-06,1.133233011392280023e-06,1.175204604406808921e-06,1.217176197421337819e-06,1.259147790435866716e-06,1.301119383450395614e-06,1.343090976464924511e-06,1.385062569479453409e-06,1.427034162493982306e-06,1.469005755508511204e-06,1.510977348523040102e-06,1.552948941537568999e-06,1.594920534552097897e-06,1.636892127566626794e-06,1.678863720581155692e-06,1.720835313595684590e-06,1.762806906610213487e-06,1.804778499624742385e-06,1.846750092639271282e-06,1.888721685653800180e-06,1.930693278668328866e-06,1.972664871682857552e-06,2.014636464697386238e-06,2.056608057711914923e-06,2.098579650726443609e-06,2.140551243740972295e-06,2.182522836755500981e-06,2.224494429770029667e-06,2.266466022784558353e-06,2.308437615799087038e-06,2.350409208813615724e-06,2.392380801828144410e-06,2.434352394842673096e-06,2.476323987857201782e-06,2.518295580871730468e-06,2.560267173886259153e-06,2.602238766900787839e-06,2.644210359915316525e-06 +0.000000000000000000e+00,4.461367813833392190e-08,8.922735627666784379e-08,1.338410344150017591e-07,1.784547125533356611e-07,2.230683906916695632e-07,2.676820688300034652e-07,3.122957469683373673e-07,3.569094251066712693e-07,4.015231032450051713e-07,4.461367813833390734e-07,4.907504595216729754e-07,5.353641376600068245e-07,5.799778157983406736e-07,6.245914939366745228e-07,6.692051720750083719e-07,7.138188502133422210e-07,7.584325283516760701e-07,8.030462064900099192e-07,8.476598846283437683e-07,8.922735627666776174e-07,9.368872409050114665e-07,9.815009190433453156e-07,1.026114597181679165e-06,1.070728275320013014e-06,1.115341953458346863e-06,1.159955631596680712e-06,1.204569309735014561e-06,1.249182987873348410e-06,1.293796666011682259e-06,1.338410344150016108e-06,1.383024022288349958e-06,1.427637700426683807e-06,1.472251378565017656e-06,1.516865056703351505e-06,1.561478734841685354e-06,1.606092412980019203e-06,1.650706091118353052e-06,1.695319769256686901e-06,1.739933447395020750e-06,1.784547125533354599e-06,1.829160803671688449e-06,1.873774481810022298e-06,1.918388159948355935e-06,1.963001838086689361e-06,2.007615516225022786e-06,2.052229194363356212e-06,2.096842872501689637e-06,2.141456550640023063e-06,2.186070228778356489e-06,2.230683906916689914e-06,2.275297585055023340e-06,2.319911263193356765e-06,2.364524941331690191e-06,2.409138619470023617e-06,2.453752297608357042e-06,2.498365975746690468e-06,2.542979653885023893e-06,2.587593332023357319e-06,2.632207010161690744e-06,2.676820688300024170e-06,2.721434366438357596e-06,2.766048044576691021e-06,2.810661722715024447e-06 +0.000000000000000000e+00,4.416009116481431985e-08,8.832018232962863971e-08,1.324802734944429529e-07,1.766403646592572529e-07,2.208004558240715529e-07,2.649605469888858529e-07,3.091206381537001530e-07,3.532807293185144530e-07,3.974408204833287530e-07,4.416009116481430530e-07,4.857610028129573000e-07,5.299210939777716000e-07,5.740811851425859000e-07,6.182412763074002000e-07,6.624013674722145000e-07,7.065614586370288000e-07,7.507215498018431000e-07,7.948816409666574000e-07,8.390417321314717000e-07,8.832018232962860000e-07,9.273619144611003000e-07,9.715220056259146000e-07,1.015682096790728900e-06,1.059842187955543200e-06,1.104002279120357500e-06,1.148162370285171800e-06,1.192322461449986100e-06,1.236482552614800400e-06,1.280642643779614700e-06,1.324802734944429000e-06,1.368962826109243300e-06,1.413122917274057600e-06,1.457283008438871900e-06,1.501443099603686200e-06,1.545603190768500500e-06,1.589763281933314800e-06,1.633923373098129100e-06,1.678083464262943400e-06,1.722243555427757700e-06,1.766403646592572000e-06,1.810563737757386300e-06,1.854723828922200600e-06,1.898883920087014900e-06,1.943044011251829200e-06,1.987204102416643712e-06,2.031364193581458224e-06,2.075524284746272735e-06,2.119684375911087247e-06,2.163844467075901759e-06,2.208004558240716271e-06,2.252164649405530782e-06,2.296324740570345294e-06,2.340484831735159806e-06,2.384644922899974318e-06,2.428805014064788829e-06,2.472965105229603341e-06,2.517125196394417853e-06,2.561285287559232365e-06,2.605445378724046876e-06,2.649605469888861388e-06,2.693765561053675900e-06,2.737925652218490412e-06,2.782085743383304924e-06 +0.000000000000000000e+00,4.199270077337727285e-08,8.398540154675454571e-08,1.259781023201318318e-07,1.679708030935091179e-07,2.099635038668864040e-07,2.519562046402636636e-07,2.939489054136409232e-07,3.359416061870181828e-07,3.779343069603954424e-07,4.199270077337727021e-07,4.619197085071499617e-07,5.039124092805272213e-07,5.459051100539044809e-07,5.878978108272817405e-07,6.298905116006590002e-07,6.718832123740362598e-07,7.138759131474135194e-07,7.558686139207907790e-07,7.978613146941680386e-07,8.398540154675452982e-07,8.818467162409225579e-07,9.238394170142998175e-07,9.658321177876771830e-07,1.007824818561054654e-06,1.049817519334432126e-06,1.091810220107809597e-06,1.133802920881187068e-06,1.175795621654564540e-06,1.217788322427942011e-06,1.259781023201319483e-06,1.301773723974696954e-06,1.343766424748074425e-06,1.385759125521451897e-06,1.427751826294829368e-06,1.469744527068206839e-06,1.511737227841584311e-06,1.553729928614961782e-06,1.595722629388339254e-06,1.637715330161716725e-06,1.679708030935094196e-06,1.721700731708471668e-06,1.763693432481849139e-06,1.805686133255226611e-06,1.847678834028604082e-06,1.889671534801981553e-06,1.931664235575359025e-06,1.973656936348736496e-06,2.015649637122113967e-06,2.057642337895491439e-06,2.099635038668868910e-06,2.141627739442246382e-06,2.183620440215623853e-06,2.225613140989001324e-06,2.267605841762378796e-06,2.309598542535756267e-06,2.351591243309133738e-06,2.393583944082511210e-06,2.435576644855888681e-06,2.477569345629266153e-06,2.519562046402643624e-06,2.561554747176021095e-06,2.603547447949398567e-06,2.645540148722776038e-06 +0.000000000000000000e+00,4.755748841430243301e-08,9.511497682860486603e-08,1.426724652429073057e-07,1.902299536572097585e-07,2.377874420715122114e-07,2.853449304858146643e-07,3.329024189001171436e-07,3.804599073144196229e-07,4.280173957287221023e-07,4.755748841430245816e-07,5.231323725573270609e-07,5.706898609716295403e-07,6.182473493859320196e-07,6.658048378002344989e-07,7.133623262145369783e-07,7.609198146288394576e-07,8.084773030431419370e-07,8.560347914574444163e-07,9.035922798717468956e-07,9.511497682860493750e-07,9.987072567003517484e-07,1.046264745114654122e-06,1.093822233528956495e-06,1.141379721943258869e-06,1.188937210357561242e-06,1.236494698771863616e-06,1.284052187186165989e-06,1.331609675600468363e-06,1.379167164014770736e-06,1.426724652429073110e-06,1.474282140843375483e-06,1.521839629257677856e-06,1.569397117671980230e-06,1.616954606086282603e-06,1.664512094500584977e-06,1.712069582914887350e-06,1.759627071329189724e-06,1.807184559743492097e-06,1.854742048157794471e-06,1.902299536572096844e-06,1.949857024986399218e-06,1.997414513400701803e-06,2.044972001815004388e-06,2.092529490229306973e-06,2.140086978643609558e-06,2.187644467057912144e-06,2.235201955472214729e-06,2.282759443886517314e-06,2.330316932300819899e-06,2.377874420715122484e-06,2.425431909129425070e-06,2.472989397543727655e-06,2.520546885958030240e-06,2.568104374372332825e-06,2.615661862786635411e-06,2.663219351200937996e-06,2.710776839615240581e-06,2.758334328029543166e-06,2.805891816443845751e-06,2.853449304858148337e-06,2.901006793272450922e-06,2.948564281686753507e-06,2.996121770101056092e-06 +0.000000000000000000e+00,4.419244117448511566e-08,8.838488234897023132e-08,1.325773235234553404e-07,1.767697646979404362e-07,2.209622058724255320e-07,2.651546470469106278e-07,3.093470882213957501e-07,3.535395293958808723e-07,3.977319705703659946e-07,4.419244117448511169e-07,4.861168529193362392e-07,5.303092940938213615e-07,5.745017352683064837e-07,6.186941764427916060e-07,6.628866176172767283e-07,7.070790587917618506e-07,7.512714999662469728e-07,7.954639411407320951e-07,8.396563823152172174e-07,8.838488234897023397e-07,9.280412646641874619e-07,9.722337058386726901e-07,1.016426147013158024e-06,1.060618588187643358e-06,1.104811029362128692e-06,1.149003470536614026e-06,1.193195911711099360e-06,1.237388352885584694e-06,1.281580794060070028e-06,1.325773235234555362e-06,1.369965676409040696e-06,1.414158117583526030e-06,1.458350558758011364e-06,1.502542999932496699e-06,1.546735441106982033e-06,1.590927882281467367e-06,1.635120323455952701e-06,1.679312764630438035e-06,1.723505205804923369e-06,1.767697646979408703e-06,1.811890088153894037e-06,1.856082529328379371e-06,1.900274970502864705e-06,1.944467411677350039e-06,1.988659852851835373e-06,2.032852294026320707e-06,2.077044735200806041e-06,2.121237176375291375e-06,2.165429617549776709e-06,2.209622058724262043e-06,2.253814499898747377e-06,2.298006941073232711e-06,2.342199382247718045e-06,2.386391823422203379e-06,2.430584264596688713e-06,2.474776705771174047e-06,2.518969146945659381e-06,2.563161588120144715e-06,2.607354029294630049e-06,2.651546470469115383e-06,2.695738911643600718e-06,2.739931352818086052e-06,2.784123793992571386e-06 +0.000000000000000000e+00,4.416009116481779401e-08,8.832018232963558803e-08,1.324802734944533820e-07,1.766403646592711761e-07,2.208004558240889701e-07,2.649605469889067641e-07,3.091206381537245581e-07,3.532807293185423521e-07,3.974408204833601461e-07,4.416009116481779401e-07,4.857610028129957341e-07,5.299210939778135282e-07,5.740811851426313222e-07,6.182412763074491162e-07,6.624013674722669102e-07,7.065614586370847042e-07,7.507215498019024982e-07,7.948816409667202922e-07,8.390417321315380862e-07,8.832018232963558803e-07,9.273619144611736743e-07,9.715220056259914683e-07,1.015682096790809156e-06,1.059842187955626845e-06,1.104002279120444533e-06,1.148162370285262221e-06,1.192322461450079909e-06,1.236482552614897597e-06,1.280642643779715285e-06,1.324802734944532973e-06,1.368962826109350661e-06,1.413122917274168350e-06,1.457283008438986038e-06,1.501443099603803726e-06,1.545603190768621414e-06,1.589763281933439102e-06,1.633923373098256790e-06,1.678083464263074478e-06,1.722243555427892167e-06,1.766403646592709855e-06,1.810563737757527543e-06,1.854723828922345231e-06,1.898883920087162919e-06,1.943044011251980819e-06,1.987204102416798719e-06,2.031364193581616619e-06,2.075524284746434519e-06,2.119684375911252419e-06,2.163844467076070318e-06,2.208004558240888218e-06,2.252164649405706118e-06,2.296324740570524018e-06,2.340484831735341918e-06,2.384644922900159818e-06,2.428805014064977718e-06,2.472965105229795618e-06,2.517125196394613518e-06,2.561285287559431417e-06,2.605445378724249317e-06,2.649605469889067217e-06,2.693765561053885117e-06,2.737925652218703017e-06,2.782085743383520917e-06 +0.000000000000000000e+00,4.678187297286289493e-08,9.356374594572578985e-08,1.403456189185886980e-07,1.871274918914516062e-07,2.339093648643145143e-07,2.806912378371773960e-07,3.274731108100402777e-07,3.742549837829031594e-07,4.210368567557660411e-07,4.678187297286289228e-07,5.146006027014918045e-07,5.613824756743546862e-07,6.081643486472175679e-07,6.549462216200804496e-07,7.017280945929433313e-07,7.485099675658062129e-07,7.952918405386690946e-07,8.420737135115319763e-07,8.888555864843948580e-07,9.356374594572577397e-07,9.824193324301207273e-07,1.029201205402983821e-06,1.075983078375846914e-06,1.122764951348710008e-06,1.169546824321573101e-06,1.216328697294436195e-06,1.263110570267299288e-06,1.309892443240162381e-06,1.356674316213025475e-06,1.403456189185888568e-06,1.450238062158751662e-06,1.497019935131614755e-06,1.543801808104477849e-06,1.590583681077340942e-06,1.637365554050204036e-06,1.684147427023067129e-06,1.730929299995930222e-06,1.777711172968793316e-06,1.824493045941656409e-06,1.871274918914519503e-06,1.918056791887382596e-06,1.964838664860245690e-06,2.011620537833108783e-06,2.058402410805971877e-06,2.105184283778834970e-06,2.151966156751698064e-06,2.198748029724561157e-06,2.245529902697424250e-06,2.292311775670287344e-06,2.339093648643150437e-06,2.385875521616013531e-06,2.432657394588876624e-06,2.479439267561739718e-06,2.526221140534602811e-06,2.573003013507465905e-06,2.619784886480328998e-06,2.666566759453192091e-06,2.713348632426055185e-06,2.760130505398918278e-06,2.806912378371781372e-06,2.853694251344644465e-06,2.900476124317507559e-06,2.947257997290370652e-06 +0.000000000000000000e+00,4.197159301453523049e-08,8.394318602907046098e-08,1.259147790436056981e-07,1.678863720581409484e-07,2.098579650726761988e-07,2.518295580872114491e-07,2.938011511017466995e-07,3.357727441162819498e-07,3.777443371308172001e-07,4.197159301453524505e-07,4.616875231598877008e-07,5.036591161744230041e-07,5.456307091889582544e-07,5.876023022034935048e-07,6.295738952180287551e-07,6.715454882325640055e-07,7.135170812470992558e-07,7.554886742616345062e-07,7.974602672761697565e-07,8.394318602907050068e-07,8.814034533052402572e-07,9.233750463197755075e-07,9.653466393343107579e-07,1.007318232348846008e-06,1.049289825363381259e-06,1.091261418377916509e-06,1.133233011392451759e-06,1.175204604406987010e-06,1.217176197421522260e-06,1.259147790436057510e-06,1.301119383450592761e-06,1.343090976465128011e-06,1.385062569479663261e-06,1.427034162494198512e-06,1.469005755508733762e-06,1.510977348523269012e-06,1.552948941537804263e-06,1.594920534552339513e-06,1.636892127566874763e-06,1.678863720581410014e-06,1.720835313595945264e-06,1.762806906610480514e-06,1.804778499625015765e-06,1.846750092639551015e-06,1.888721685654086265e-06,1.930693278668621516e-06,1.972664871683156554e-06,2.014636464697691593e-06,2.056608057712226631e-06,2.098579650726761670e-06,2.140551243741296709e-06,2.182522836755831747e-06,2.224494429770366786e-06,2.266466022784901824e-06,2.308437615799436863e-06,2.350409208813971902e-06,2.392380801828506940e-06,2.434352394843041979e-06,2.476323987857577017e-06,2.518295580872112056e-06,2.560267173886647095e-06,2.602238766901182133e-06,2.644210359915717172e-06 +0.000000000000000000e+00,4.461367813833971216e-08,8.922735627667942432e-08,1.338410344150191233e-07,1.784547125533588222e-07,2.230683906916985211e-07,2.676820688300382465e-07,3.122957469683779719e-07,3.569094251067176973e-07,4.015231032450574227e-07,4.461367813833971481e-07,4.907504595217369264e-07,5.353641376600767048e-07,5.799778157984164831e-07,6.245914939367562614e-07,6.692051720750960398e-07,7.138188502134358181e-07,7.584325283517755964e-07,8.030462064901153748e-07,8.476598846284551531e-07,8.922735627667949314e-07,9.368872409051347098e-07,9.815009190434744881e-07,1.026114597181814266e-06,1.070728275320154045e-06,1.115341953458493823e-06,1.159955631596833601e-06,1.204569309735173380e-06,1.249182987873513158e-06,1.293796666011852936e-06,1.338410344150192715e-06,1.383024022288532493e-06,1.427637700426872271e-06,1.472251378565212050e-06,1.516865056703551828e-06,1.561478734841891606e-06,1.606092412980231385e-06,1.650706091118571163e-06,1.695319769256910941e-06,1.739933447395250720e-06,1.784547125533590498e-06,1.829160803671930277e-06,1.873774481810270055e-06,1.918388159948610045e-06,1.963001838086950247e-06,2.007615516225290449e-06,2.052229194363630650e-06,2.096842872501970852e-06,2.141456550640311054e-06,2.186070228778651256e-06,2.230683906916991458e-06,2.275297585055331660e-06,2.319911263193671862e-06,2.364524941332012063e-06,2.409138619470352265e-06,2.453752297608692467e-06,2.498365975747032669e-06,2.542979653885372871e-06,2.587593332023713073e-06,2.632207010162053275e-06,2.676820688300393476e-06,2.721434366438733678e-06,2.766048044577073880e-06,2.810661722715414082e-06 +0.000000000000000000e+00,4.615271449830543753e-08,9.230542899661087506e-08,1.384581434949163192e-07,1.846108579932217766e-07,2.307635724915272340e-07,2.769162869898326914e-07,3.230690014881381223e-07,3.692217159864435532e-07,4.153744304847489841e-07,4.615271449830544150e-07,5.076798594813598459e-07,5.538325739796652768e-07,5.999852884779707077e-07,6.461380029762761386e-07,6.922907174745815696e-07,7.384434319728870005e-07,7.845961464711924314e-07,8.307488609694978623e-07,8.769015754678032932e-07,9.230542899661087241e-07,9.692070044644141550e-07,1.015359718962719692e-06,1.061512433461025229e-06,1.107665147959330765e-06,1.153817862457636302e-06,1.199970576955941839e-06,1.246123291454247376e-06,1.292276005952552913e-06,1.338428720450858449e-06,1.384581434949163986e-06,1.430734149447469523e-06,1.476886863945775060e-06,1.523039578444080597e-06,1.569192292942386133e-06,1.615345007440691670e-06,1.661497721938997207e-06,1.707650436437302744e-06,1.753803150935608280e-06,1.799955865433913817e-06,1.846108579932219354e-06,1.892261294430524891e-06,1.938414008928830428e-06,1.984566723427135964e-06,2.030719437925441501e-06,2.076872152423747038e-06,2.123024866922052575e-06,2.169177581420358112e-06,2.215330295918663648e-06,2.261483010416969185e-06,2.307635724915274722e-06,2.353788439413580259e-06,2.399941153911885796e-06,2.446093868410191332e-06,2.492246582908496869e-06,2.538399297406802406e-06,2.584552011905107943e-06,2.630704726403413480e-06,2.676857440901719016e-06,2.723010155400024553e-06,2.769162869898330090e-06,2.815315584396635627e-06,2.861468298894941163e-06,2.907621013393246700e-06 +0.000000000000000000e+00,4.716166736010391330e-08,9.432333472020782660e-08,1.414850020803117531e-07,1.886466694404156797e-07,2.358083368005196062e-07,2.829700041606235063e-07,3.301316715207274063e-07,3.772933388808313064e-07,4.244550062409352065e-07,4.716166736010391065e-07,5.187783409611430066e-07,5.659400083212469067e-07,6.131016756813508067e-07,6.602633430414547068e-07,7.074250104015586069e-07,7.545866777616625069e-07,8.017483451217664070e-07,8.489100124818703071e-07,8.960716798419742071e-07,9.432333472020781072e-07,9.903950145621819014e-07,1.037556681922285801e-06,1.084718349282389702e-06,1.131880016642493602e-06,1.179041684002597502e-06,1.226203351362701402e-06,1.273365018722805302e-06,1.320526686082909202e-06,1.367688353443013102e-06,1.414850020803117002e-06,1.462011688163220902e-06,1.509173355523324802e-06,1.556335022883428702e-06,1.603496690243532602e-06,1.650658357603636502e-06,1.697820024963740402e-06,1.744981692323844302e-06,1.792143359683948203e-06,1.839305027044052103e-06,1.886466694404156003e-06,1.933628361764259903e-06,1.980790029124363803e-06,2.027951696484467703e-06,2.075113363844571603e-06,2.122275031204675503e-06,2.169436698564779403e-06,2.216598365924883303e-06,2.263760033284987203e-06,2.310921700645091103e-06,2.358083368005195003e-06,2.405245035365298903e-06,2.452406702725402803e-06,2.499568370085506704e-06,2.546730037445610604e-06,2.593891704805714504e-06,2.641053372165818404e-06,2.688215039525922304e-06,2.735376706886026204e-06,2.782538374246130104e-06,2.829700041606234004e-06,2.876861708966337904e-06,2.924023376326441804e-06,2.971185043686545704e-06 +0.000000000000000000e+00,4.353161200287444373e-08,8.706322400574888746e-08,1.305948360086233246e-07,1.741264480114977485e-07,2.176580600143721723e-07,2.611896720172465962e-07,3.047212840201209936e-07,3.482528960229953910e-07,3.917845080258697884e-07,4.353161200287441858e-07,4.788477320316185833e-07,5.223793440344929807e-07,5.659109560373673781e-07,6.094425680402417755e-07,6.529741800431161729e-07,6.965057920459905703e-07,7.400374040488649677e-07,7.835690160517393651e-07,8.271006280546137625e-07,8.706322400574881599e-07,9.141638520603625573e-07,9.576954640632369547e-07,1.001227076066111352e-06,1.044758688068985750e-06,1.088290300071860147e-06,1.131821912074734544e-06,1.175353524077608942e-06,1.218885136080483339e-06,1.262416748083357737e-06,1.305948360086232134e-06,1.349479972089106531e-06,1.393011584091980929e-06,1.436543196094855326e-06,1.480074808097729724e-06,1.523606420100604121e-06,1.567138032103478518e-06,1.610669644106352916e-06,1.654201256109227313e-06,1.697732868112101711e-06,1.741264480114976108e-06,1.784796092117850506e-06,1.828327704120724903e-06,1.871859316123599300e-06,1.915390928126473486e-06,1.958922540129347883e-06,2.002454152132222281e-06,2.045985764135096678e-06,2.089517376137971076e-06,2.133048988140845473e-06,2.176580600143719870e-06,2.220112212146594268e-06,2.263643824149468665e-06,2.307175436152343063e-06,2.350707048155217460e-06,2.394238660158091857e-06,2.437770272160966255e-06,2.481301884163840652e-06,2.524833496166715050e-06,2.568365108169589447e-06,2.611896720172463845e-06,2.655428332175338242e-06,2.698959944178212639e-06,2.742491556181087037e-06 +0.000000000000000000e+00,4.615271449831141970e-08,9.230542899662283940e-08,1.384581434949342657e-07,1.846108579932457053e-07,2.307635724915571448e-07,2.769162869898685844e-07,3.230690014881800504e-07,3.692217159864915164e-07,4.153744304848029824e-07,4.615271449831144485e-07,5.076798594814259145e-07,5.538325739797373805e-07,5.999852884780488465e-07,6.461380029763603125e-07,6.922907174746717786e-07,7.384434319729832446e-07,7.845961464712947106e-07,8.307488609696061766e-07,8.769015754679176427e-07,9.230542899662291087e-07,9.692070044645405747e-07,1.015359718962852041e-06,1.061512433461163507e-06,1.107665147959474973e-06,1.153817862457786439e-06,1.199970576956097905e-06,1.246123291454409371e-06,1.292276005952720837e-06,1.338428720451032303e-06,1.384581434949343769e-06,1.430734149447655235e-06,1.476886863945966701e-06,1.523039578444278167e-06,1.569192292942589633e-06,1.615345007440901099e-06,1.661497721939212565e-06,1.707650436437524031e-06,1.753803150935835497e-06,1.799955865434146963e-06,1.846108579932458429e-06,1.892261294430769895e-06,1.938414008929081573e-06,1.984566723427393462e-06,2.030719437925705352e-06,2.076872152424017242e-06,2.123024866922329131e-06,2.169177581420641021e-06,2.215330295918952910e-06,2.261483010417264800e-06,2.307635724915576689e-06,2.353788439413888579e-06,2.399941153912200468e-06,2.446093868410512358e-06,2.492246582908824247e-06,2.538399297407136137e-06,2.584552011905448026e-06,2.630704726403759916e-06,2.676857440902071806e-06,2.723010155400383695e-06,2.769162869898695585e-06,2.815315584397007474e-06,2.861468298895319364e-06,2.907621013393631253e-06 +0.000000000000000000e+00,4.716166736010962416e-08,9.432333472021924831e-08,1.414850020803288791e-07,1.886466694404385231e-07,2.358083368005481671e-07,2.829700041606578111e-07,3.301316715207674286e-07,3.772933388808770462e-07,4.244550062409866637e-07,4.716166736010962813e-07,5.187783409612058988e-07,5.659400083213155163e-07,6.131016756814251339e-07,6.602633430415347514e-07,7.074250104016443690e-07,7.545866777617539865e-07,8.017483451218636040e-07,8.489100124819732216e-07,8.960716798420828391e-07,9.432333472021924567e-07,9.903950145623021801e-07,1.037556681922412009e-06,1.084718349282521839e-06,1.131880016642631668e-06,1.179041684002741497e-06,1.226203351362851327e-06,1.273365018722961156e-06,1.320526686083070985e-06,1.367688353443180814e-06,1.414850020803290644e-06,1.462011688163400473e-06,1.509173355523510302e-06,1.556335022883620132e-06,1.603496690243729961e-06,1.650658357603839790e-06,1.697820024963949620e-06,1.744981692324059449e-06,1.792143359684169278e-06,1.839305027044279107e-06,1.886466694404388937e-06,1.933628361764498766e-06,1.980790029124608595e-06,2.027951696484718425e-06,2.075113363844828254e-06,2.122275031204938083e-06,2.169436698565047912e-06,2.216598365925157742e-06,2.263760033285267571e-06,2.310921700645377400e-06,2.358083368005487230e-06,2.405245035365597059e-06,2.452406702725706888e-06,2.499568370085816718e-06,2.546730037445926547e-06,2.593891704806036376e-06,2.641053372166146205e-06,2.688215039526256035e-06,2.735376706886365864e-06,2.782538374246475693e-06,2.829700041606585523e-06,2.876861708966695352e-06,2.924023376326805181e-06,2.971185043686915011e-06 +0.000000000000000000e+00,4.353161200287996268e-08,8.706322400575992536e-08,1.305948360086398947e-07,1.741264480115198772e-07,2.176580600143998597e-07,2.611896720172798423e-07,3.047212840201598513e-07,3.482528960230398603e-07,3.917845080259198693e-07,4.353161200287998783e-07,4.788477320316798873e-07,5.223793440345598963e-07,5.659109560374399053e-07,6.094425680403199143e-07,6.529741800431999233e-07,6.965057920460799323e-07,7.400374040489599413e-07,7.835690160518399503e-07,8.271006280547199593e-07,8.706322400575999683e-07,9.141638520604799773e-07,9.576954640633599863e-07,1.001227076066239889e-06,1.044758688069119793e-06,1.088290300071999696e-06,1.131821912074879599e-06,1.175353524077759502e-06,1.218885136080639405e-06,1.262416748083519308e-06,1.305948360086399211e-06,1.349479972089279114e-06,1.393011584092159018e-06,1.436543196095038921e-06,1.480074808097918824e-06,1.523606420100798727e-06,1.567138032103678630e-06,1.610669644106558533e-06,1.654201256109438436e-06,1.697732868112318339e-06,1.741264480115198242e-06,1.784796092118078146e-06,1.828327704120958049e-06,1.871859316123837952e-06,1.915390928126717855e-06,1.958922540129597758e-06,2.002454152132477661e-06,2.045985764135357564e-06,2.089517376138237467e-06,2.133048988141117371e-06,2.176580600143997274e-06,2.220112212146877177e-06,2.263643824149757080e-06,2.307175436152636983e-06,2.350707048155516886e-06,2.394238660158396789e-06,2.437770272161276692e-06,2.481301884164156596e-06,2.524833496167036499e-06,2.568365108169916402e-06,2.611896720172796305e-06,2.655428332175676208e-06,2.698959944178556111e-06,2.742491556181436014e-06 +0.000000000000000000e+00,4.307763743042287962e-08,8.615527486084575923e-08,1.292329122912686389e-07,1.723105497216915185e-07,2.153881871521143981e-07,2.584658245825372777e-07,3.015434620129601309e-07,3.446210994433829840e-07,3.876987368738058371e-07,4.307763743042286903e-07,4.738540117346515434e-07,5.169316491650744495e-07,5.600092865954973556e-07,6.030869240259202617e-07,6.461645614563431678e-07,6.892421988867660739e-07,7.323198363171889800e-07,7.753974737476118861e-07,8.184751111780347921e-07,8.615527486084576982e-07,9.046303860388806043e-07,9.477080234693035104e-07,9.907856608997264165e-07,1.033863298330149323e-06,1.076940935760572229e-06,1.120018573190995135e-06,1.163096210621418041e-06,1.206173848051840947e-06,1.249251485482263853e-06,1.292329122912686759e-06,1.335406760343109665e-06,1.378484397773532571e-06,1.421562035203955477e-06,1.464639672634378383e-06,1.507717310064801290e-06,1.550794947495224196e-06,1.593872584925647102e-06,1.636950222356070008e-06,1.680027859786492914e-06,1.723105497216915820e-06,1.766183134647338726e-06,1.809260772077761632e-06,1.852338409508184538e-06,1.895416046938607444e-06,1.938493684369030350e-06,1.981571321799453256e-06,2.024648959229876163e-06,2.067726596660299069e-06,2.110804234090721975e-06,2.153881871521144881e-06,2.196959508951567787e-06,2.240037146381990693e-06,2.283114783812413599e-06,2.326192421242836505e-06,2.369270058673259411e-06,2.412347696103682317e-06,2.455425333534105223e-06,2.498502970964528130e-06,2.541580608394951036e-06,2.584658245825373942e-06,2.627735883255796848e-06,2.670813520686219754e-06,2.713891158116642660e-06 +0.000000000000000000e+00,4.474248820104331100e-08,8.948497640208662200e-08,1.342274646031299330e-07,1.789699528041732440e-07,2.237124410052165550e-07,2.684549292062598660e-07,3.131974174073031770e-07,3.579399056083464880e-07,4.026823938093897990e-07,4.474248820104331100e-07,4.921673702114764210e-07,5.369098584125197320e-07,5.816523466135630430e-07,6.263948348146063540e-07,6.711373230156496650e-07,7.158798112166929760e-07,7.606222994177362870e-07,8.053647876187795980e-07,8.501072758198229090e-07,8.948497640208662200e-07,9.395922522219095310e-07,9.843347404229528420e-07,1.029077228623996047e-06,1.073819716825039252e-06,1.118562205026082457e-06,1.163304693227125662e-06,1.208047181428168868e-06,1.252789669629212073e-06,1.297532157830255278e-06,1.342274646031298483e-06,1.387017134232341688e-06,1.431759622433384893e-06,1.476502110634428098e-06,1.521244598835471303e-06,1.565987087036514509e-06,1.610729575237557714e-06,1.655472063438600919e-06,1.700214551639644124e-06,1.744957039840687329e-06,1.789699528041730534e-06,1.834442016242773739e-06,1.879184504443816944e-06,1.923926992644860149e-06,1.968669480845903566e-06,2.013411969046946983e-06,2.058154457247990400e-06,2.102896945449033817e-06,2.147639433650077234e-06,2.192381921851120651e-06,2.237124410052164068e-06,2.281866898253207484e-06,2.326609386454250901e-06,2.371351874655294318e-06,2.416094362856337735e-06,2.460836851057381152e-06,2.505579339258424569e-06,2.550321827459467986e-06,2.595064315660511403e-06,2.639806803861554819e-06,2.684549292062598236e-06,2.729291780263641653e-06,2.774034268464685070e-06,2.818776756665728487e-06 +0.000000000000000000e+00,4.080631685456383420e-08,8.161263370912766840e-08,1.224189505636914894e-07,1.632252674182553103e-07,2.040315842728191313e-07,2.448379011273829787e-07,2.856442179819468262e-07,3.264505348365106736e-07,3.672568516910745210e-07,4.080631685456383685e-07,4.488694854002022159e-07,4.896758022547660633e-07,5.304821191093299108e-07,5.712884359638937582e-07,6.120947528184576057e-07,6.529010696730214531e-07,6.937073865275853005e-07,7.345137033821491480e-07,7.753200202367129954e-07,8.161263370912768428e-07,8.569326539458406903e-07,8.977389708004045377e-07,9.385452876549683851e-07,9.793516045095323385e-07,1.020157921364096398e-06,1.060964238218660457e-06,1.101770555073224516e-06,1.142576871927788575e-06,1.183383188782352634e-06,1.224189505636916694e-06,1.264995822491480753e-06,1.305802139346044812e-06,1.346608456200608871e-06,1.387414773055172930e-06,1.428221089909736990e-06,1.469027406764301049e-06,1.509833723618865108e-06,1.550640040473429167e-06,1.591446357327993226e-06,1.632252674182557286e-06,1.673058991037121345e-06,1.713865307891685404e-06,1.754671624746249463e-06,1.795477941600813522e-06,1.836284258455377582e-06,1.877090575309941641e-06,1.917896892164505700e-06,1.958703209019069759e-06,1.999509525873633818e-06,2.040315842728197877e-06,2.081122159582761937e-06,2.121928476437325996e-06,2.162734793291890055e-06,2.203541110146454114e-06,2.244347427001018173e-06,2.285153743855582233e-06,2.325960060710146292e-06,2.366766377564710351e-06,2.407572694419274410e-06,2.448379011273838469e-06,2.489185328128402529e-06,2.529991644982966588e-06,2.570797961837530647e-06 +0.000000000000000000e+00,4.307763743042883532e-08,8.615527486085767064e-08,1.292329122912865060e-07,1.723105497217153413e-07,2.153881871521441766e-07,2.584658245825730119e-07,3.015434620130018472e-07,3.446210994434306825e-07,3.876987368738595179e-07,4.307763743042883532e-07,4.738540117347171885e-07,5.169316491651460238e-07,5.600092865955748591e-07,6.030869240260036944e-07,6.461645614564325298e-07,6.892421988868613651e-07,7.323198363172902004e-07,7.753974737477190357e-07,8.184751111781478710e-07,8.615527486085767064e-07,9.046303860390055417e-07,9.477080234694343770e-07,9.907856608998632123e-07,1.033863298330292048e-06,1.076940935760720883e-06,1.120018573191149718e-06,1.163096210621578554e-06,1.206173848052007389e-06,1.249251485482436224e-06,1.292329122912865060e-06,1.335406760343293895e-06,1.378484397773722730e-06,1.421562035204151565e-06,1.464639672634580401e-06,1.507717310065009236e-06,1.550794947495438071e-06,1.593872584925866907e-06,1.636950222356295742e-06,1.680027859786724577e-06,1.723105497217153413e-06,1.766183134647582248e-06,1.809260772078011083e-06,1.852338409508439919e-06,1.895416046938868754e-06,1.938493684369297589e-06,1.981571321799726425e-06,2.024648959230155260e-06,2.067726596660584095e-06,2.110804234091012931e-06,2.153881871521441766e-06,2.196959508951870601e-06,2.240037146382299437e-06,2.283114783812728272e-06,2.326192421243157107e-06,2.369270058673585942e-06,2.412347696104014778e-06,2.455425333534443613e-06,2.498502970964872448e-06,2.541580608395301284e-06,2.584658245825730119e-06,2.627735883256158954e-06,2.670813520686587790e-06,2.713891158117016625e-06 +0.000000000000000000e+00,4.474248820104929979e-08,8.948497640209859957e-08,1.342274646031479060e-07,1.789699528041972256e-07,2.237124410052465453e-07,2.684549292062958649e-07,3.131974174073452110e-07,3.579399056083945571e-07,4.026823938094439032e-07,4.474248820104932493e-07,4.921673702115425954e-07,5.369098584125919415e-07,5.816523466136412876e-07,6.263948348146906337e-07,6.711373230157399799e-07,7.158798112167893260e-07,7.606222994178386721e-07,8.053647876188880182e-07,8.501072758199373643e-07,8.948497640209867104e-07,9.395922522220360565e-07,9.843347404230854026e-07,1.029077228624134749e-06,1.073819716825184095e-06,1.118562205026233441e-06,1.163304693227282787e-06,1.208047181428332133e-06,1.252789669629381479e-06,1.297532157830430825e-06,1.342274646031480171e-06,1.387017134232529518e-06,1.431759622433578864e-06,1.476502110634628210e-06,1.521244598835677556e-06,1.565987087036726902e-06,1.610729575237776248e-06,1.655472063438825594e-06,1.700214551639874940e-06,1.744957039840924286e-06,1.789699528041973633e-06,1.834442016243022979e-06,1.879184504444072325e-06,1.923926992645121459e-06,1.968669480846170382e-06,2.013411969047219304e-06,2.058154457248268227e-06,2.102896945449317149e-06,2.147639433650366072e-06,2.192381921851414995e-06,2.237124410052463917e-06,2.281866898253512840e-06,2.326609386454561762e-06,2.371351874655610685e-06,2.416094362856659608e-06,2.460836851057708530e-06,2.505579339258757453e-06,2.550321827459806375e-06,2.595064315660855298e-06,2.639806803861904221e-06,2.684549292062953143e-06,2.729291780264002066e-06,2.774034268465050988e-06,2.818776756666099911e-06 +0.000000000000000000e+00,4.080631685456951197e-08,8.161263370913902394e-08,1.224189505637085359e-07,1.632252674182780479e-07,2.040315842728475598e-07,2.448379011274170718e-07,2.856442179819865838e-07,3.264505348365560957e-07,3.672568516911256077e-07,4.080631685456951197e-07,4.488694854002646317e-07,4.896758022548341436e-07,5.304821191094037085e-07,5.712884359639732734e-07,6.120947528185428383e-07,6.529010696731124033e-07,6.937073865276819682e-07,7.345137033822515331e-07,7.753200202368210980e-07,8.161263370913906629e-07,8.569326539459602278e-07,8.977389708005297927e-07,9.385452876550993576e-07,9.793516045096689225e-07,1.020157921364238487e-06,1.060964238218808052e-06,1.101770555073377617e-06,1.142576871927947182e-06,1.183383188782516747e-06,1.224189505637086312e-06,1.264995822491655877e-06,1.305802139346225442e-06,1.346608456200795007e-06,1.387414773055364572e-06,1.428221089909934137e-06,1.469027406764503701e-06,1.509833723619073266e-06,1.550640040473642831e-06,1.591446357328212396e-06,1.632252674182781961e-06,1.673058991037351526e-06,1.713865307891921091e-06,1.754671624746490656e-06,1.795477941601060221e-06,1.836284258455629786e-06,1.877090575310199350e-06,1.917896892164769127e-06,1.958703209019339116e-06,1.999509525873909104e-06,2.040315842728479092e-06,2.081122159583049081e-06,2.121928476437619069e-06,2.162734793292189058e-06,2.203541110146759046e-06,2.244347427001329035e-06,2.285153743855899023e-06,2.325960060710469011e-06,2.366766377565039000e-06,2.407572694419608988e-06,2.448379011274178977e-06,2.489185328128748965e-06,2.529991644983318954e-06,2.570797961837888942e-06 +0.000000000000000000e+00,3.928421827978161275e-08,7.856843655956322551e-08,1.178526548393448316e-07,1.571368731191264245e-07,1.964210913989080174e-07,2.357053096786896103e-07,2.749895279584711768e-07,3.142737462382527432e-07,3.535579645180343096e-07,3.928421827978158761e-07,4.321264010775974425e-07,4.714106193573790089e-07,5.106948376371605754e-07,5.499790559169421418e-07,5.892632741967237082e-07,6.285474924765052747e-07,6.678317107562868411e-07,7.071159290360684075e-07,7.464001473158499740e-07,7.856843655956315404e-07,8.249685838754131068e-07,8.642528021551946733e-07,9.035370204349762397e-07,9.428212387147578061e-07,9.821054569945392667e-07,1.021389675274320727e-06,1.060673893554102188e-06,1.099958111833883648e-06,1.139242330113665109e-06,1.178526548393446569e-06,1.217810766673228030e-06,1.257094984953009491e-06,1.296379203232790951e-06,1.335663421512572412e-06,1.374947639792353872e-06,1.414231858072135333e-06,1.453516076351916793e-06,1.492800294631698254e-06,1.532084512911479714e-06,1.571368731191261175e-06,1.610652949471042636e-06,1.649937167750824096e-06,1.689221386030605557e-06,1.728505604310387017e-06,1.767789822590168478e-06,1.807074040869949938e-06,1.846358259149731399e-06,1.885642477429512859e-06,1.924926695709294320e-06,1.964210913989075992e-06,2.003495132268857665e-06,2.042779350548639337e-06,2.082063568828421009e-06,2.121347787108202681e-06,2.160632005387984354e-06,2.199916223667766026e-06,2.239200441947547698e-06,2.278484660227329371e-06,2.317768878507111043e-06,2.357053096786892715e-06,2.396337315066674388e-06,2.435621533346456060e-06,2.474905751626237732e-06 +0.000000000000000000e+00,4.124194089486033212e-08,8.248388178972066425e-08,1.237258226845809964e-07,1.649677635794413285e-07,2.062097044743016606e-07,2.474516453691619927e-07,2.886935862640222984e-07,3.299355271588826041e-07,3.711774680537429097e-07,4.124194089486032154e-07,4.536613498434635210e-07,4.949032907383238796e-07,5.361452316331842382e-07,5.773871725280445968e-07,6.186291134229049554e-07,6.598710543177653140e-07,7.011129952126256726e-07,7.423549361074860312e-07,7.835968770023463898e-07,8.248388178972067484e-07,8.660807587920671070e-07,9.073226996869274656e-07,9.485646405817878242e-07,9.898065814766481828e-07,1.031048522371508647e-06,1.072290463266369112e-06,1.113532404161229576e-06,1.154774345056090041e-06,1.196016285950950505e-06,1.237258226845810970e-06,1.278500167740671434e-06,1.319742108635531899e-06,1.360984049530392363e-06,1.402225990425252827e-06,1.443467931320113292e-06,1.484709872214973756e-06,1.525951813109834221e-06,1.567193754004694685e-06,1.608435694899555150e-06,1.649677635794415614e-06,1.690919576689276079e-06,1.732161517584136543e-06,1.773403458478997008e-06,1.814645399373857472e-06,1.855887340268717937e-06,1.897129281163578401e-06,1.938371222058438866e-06,1.979613162953299330e-06,2.020855103848159795e-06,2.062097044743020259e-06,2.103338985637880724e-06,2.144580926532741188e-06,2.185822867427601652e-06,2.227064808322462117e-06,2.268306749217322581e-06,2.309548690112183046e-06,2.350790631007043510e-06,2.392032571901903975e-06,2.433274512796764439e-06,2.474516453691624904e-06,2.515758394586485368e-06,2.557000335481345833e-06,2.598242276376206297e-06 +0.000000000000000000e+00,3.729250649803067984e-08,7.458501299606135967e-08,1.118775194940920461e-07,1.491700259921227458e-07,1.864625324901534455e-07,2.237550389881841452e-07,2.610475454862148184e-07,2.983400519842454916e-07,3.356325584822761649e-07,3.729250649803068381e-07,4.102175714783375113e-07,4.475100779763681845e-07,4.848025844743988577e-07,5.220950909724295309e-07,5.593875974704602042e-07,5.966801039684908774e-07,6.339726104665215506e-07,6.712651169645522238e-07,7.085576234625828970e-07,7.458501299606135703e-07,7.831426364586442435e-07,8.204351429566749167e-07,8.577276494547055899e-07,8.950201559527362631e-07,9.323126624507669364e-07,9.696051689487977155e-07,1.006897675446828495e-06,1.044190181944859274e-06,1.081482688442890053e-06,1.118775194940920832e-06,1.156067701438951611e-06,1.193360207936982390e-06,1.230652714435013169e-06,1.267945220933043948e-06,1.305237727431074727e-06,1.342530233929105506e-06,1.379822740427136286e-06,1.417115246925167065e-06,1.454407753423197844e-06,1.491700259921228623e-06,1.528992766419259402e-06,1.566285272917290181e-06,1.603577779415320960e-06,1.640870285913351739e-06,1.678162792411382518e-06,1.715455298909413297e-06,1.752747805407444077e-06,1.790040311905474856e-06,1.827332818403505635e-06,1.864625324901536414e-06,1.901917831399567193e-06,1.939210337897597972e-06,1.976502844395628963e-06,2.013795350893659954e-06,2.051087857391690945e-06,2.088380363889721935e-06,2.125672870387752926e-06,2.162965376885783917e-06,2.200257883383814908e-06,2.237550389881845899e-06,2.274842896379876890e-06,2.312135402877907881e-06,2.349427909375938871e-06 +0.000000000000000000e+00,3.928421827978830961e-08,7.856843655957661922e-08,1.178526548393649222e-07,1.571368731191532120e-07,1.964210913989415017e-07,2.357053096787297915e-07,2.749895279585180812e-07,3.142737462383063710e-07,3.535579645180946607e-07,3.928421827978829505e-07,4.321264010776712403e-07,4.714106193574595300e-07,5.106948376372478198e-07,5.499790559170361625e-07,5.892632741968245052e-07,6.285474924766128479e-07,6.678317107564011905e-07,7.071159290361895332e-07,7.464001473159778759e-07,7.856843655957662186e-07,8.249685838755545613e-07,8.642528021553429040e-07,9.035370204351312467e-07,9.428212387149195894e-07,9.821054569947078262e-07,1.021389675274496063e-06,1.060673893554284300e-06,1.099958111834072537e-06,1.139242330113860773e-06,1.178526548393649010e-06,1.217810766673437247e-06,1.257094984953225484e-06,1.296379203233013721e-06,1.335663421512801958e-06,1.374947639792590194e-06,1.414231858072378431e-06,1.453516076352166668e-06,1.492800294631954905e-06,1.532084512911743142e-06,1.571368731191531378e-06,1.610652949471319615e-06,1.649937167751107852e-06,1.689221386030896089e-06,1.728505604310684326e-06,1.767789822590472563e-06,1.807074040870260799e-06,1.846358259150049036e-06,1.885642477429837273e-06,1.924926695709625510e-06,1.964210913989413958e-06,2.003495132269202407e-06,2.042779350548990856e-06,2.082063568828779304e-06,2.121347787108567753e-06,2.160632005388356201e-06,2.199916223668144650e-06,2.239200441947933098e-06,2.278484660227721547e-06,2.317768878507509996e-06,2.357053096787298444e-06,2.396337315067086893e-06,2.435621533346875341e-06,2.474905751626663790e-06 +0.000000000000000000e+00,4.124194089486665840e-08,8.248388178973331680e-08,1.237258226845999752e-07,1.649677635794666336e-07,2.062097044743332920e-07,2.474516453691999504e-07,2.886935862640666088e-07,3.299355271589332672e-07,3.711774680537999256e-07,4.124194089486665840e-07,4.536613498435332424e-07,4.949032907383999008e-07,5.361452316332665063e-07,5.773871725281331117e-07,6.186291134229997172e-07,6.598710543178663227e-07,7.011129952127329281e-07,7.423549361075995336e-07,7.835968770024661391e-07,8.248388178973327445e-07,8.660807587921993500e-07,9.073226996870659554e-07,9.485646405819325609e-07,9.898065814767991664e-07,1.031048522371665772e-06,1.072290463266532377e-06,1.113532404161398983e-06,1.154774345056265588e-06,1.196016285951132194e-06,1.237258226845998799e-06,1.278500167740865405e-06,1.319742108635732010e-06,1.360984049530598616e-06,1.402225990425465221e-06,1.443467931320331826e-06,1.484709872215198432e-06,1.525951813110065037e-06,1.567193754004931643e-06,1.608435694899798248e-06,1.649677635794664854e-06,1.690919576689531459e-06,1.732161517584398065e-06,1.773403458479264670e-06,1.814645399374131276e-06,1.855887340268997881e-06,1.897129281163864487e-06,1.938371222058731092e-06,1.979613162953597909e-06,2.020855103848464726e-06,2.062097044743331544e-06,2.103338985638198361e-06,2.144580926533065178e-06,2.185822867427931995e-06,2.227064808322798813e-06,2.268306749217665630e-06,2.309548690112532447e-06,2.350790631007399264e-06,2.392032571902266081e-06,2.433274512797132899e-06,2.474516453691999716e-06,2.515758394586866533e-06,2.557000335481733350e-06,2.598242276376600168e-06 +0.000000000000000000e+00,3.729250649803695979e-08,7.458501299607391958e-08,1.118775194941108794e-07,1.491700259921478392e-07,1.864625324901848122e-07,2.237550389882217852e-07,2.610475454862587582e-07,2.983400519842957313e-07,3.356325584823327043e-07,3.729250649803696773e-07,4.102175714784066504e-07,4.475100779764436234e-07,4.848025844744805964e-07,5.220950909725175165e-07,5.593875974705544366e-07,5.966801039685913567e-07,6.339726104666282768e-07,6.712651169646651968e-07,7.085576234627021169e-07,7.458501299607390370e-07,7.831426364587759571e-07,8.204351429568128772e-07,8.577276494548497973e-07,8.950201559528867174e-07,9.323126624509236374e-07,9.696051689489605575e-07,1.006897675446997478e-06,1.044190181945034398e-06,1.081482688443071318e-06,1.118775194941108238e-06,1.156067701439145158e-06,1.193360207937182078e-06,1.230652714435218998e-06,1.267945220933255918e-06,1.305237727431292838e-06,1.342530233929329758e-06,1.379822740427366678e-06,1.417115246925403599e-06,1.454407753423440519e-06,1.491700259921477439e-06,1.528992766419514359e-06,1.566285272917551279e-06,1.603577779415588199e-06,1.640870285913625119e-06,1.678162792411662039e-06,1.715455298909698959e-06,1.752747805407735879e-06,1.790040311905772799e-06,1.827332818403809720e-06,1.864625324901846640e-06,1.901917831399883560e-06,1.939210337897920692e-06,1.976502844395957612e-06,2.013795350893994532e-06,2.051087857392031452e-06,2.088380363890068372e-06,2.125672870388105292e-06,2.162965376886142212e-06,2.200257883384179132e-06,2.237550389882216052e-06,2.274842896380252972e-06,2.312135402878289892e-06,2.349427909376326813e-06 +0.000000000000000000e+00,3.513920724556611860e-08,7.027841449113223721e-08,1.054176217366983558e-07,1.405568289822644744e-07,1.756960362278305930e-07,2.108352434733967116e-07,2.459744507189628567e-07,2.811136579645290018e-07,3.162528652100951468e-07,3.513920724556612919e-07,3.865312797012274370e-07,4.216704869467935821e-07,4.568096941923597271e-07,4.919489014379259251e-07,5.270881086834921232e-07,5.622273159290583212e-07,5.973665231746245192e-07,6.325057304201907172e-07,6.676449376657569152e-07,7.027841449113231132e-07,7.379233521568893112e-07,7.730625594024555092e-07,8.082017666480217073e-07,8.433409738935879053e-07,8.784801811391541033e-07,9.136193883847203013e-07,9.487585956302864993e-07,9.838978028758526973e-07,1.019037010121418895e-06,1.054176217366985093e-06,1.089315424612551291e-06,1.124454631858117489e-06,1.159593839103683687e-06,1.194733046349249885e-06,1.229872253594816083e-06,1.265011460840382281e-06,1.300150668085948479e-06,1.335289875331514677e-06,1.370429082577080875e-06,1.405568289822647073e-06,1.440707497068213271e-06,1.475846704313779469e-06,1.510985911559345667e-06,1.546125118804911866e-06,1.581264326050478064e-06,1.616403533296044262e-06,1.651542740541610460e-06,1.686681947787176658e-06,1.721821155032742856e-06,1.756960362278309054e-06,1.792099569523875252e-06,1.827238776769441450e-06,1.862377984015007648e-06,1.897517191260573846e-06,1.932656398506140044e-06,1.967795605751706242e-06,2.002934812997272440e-06,2.038074020242838638e-06,2.073213227488404836e-06,2.108352434733971034e-06,2.143491641979537232e-06,2.178630849225103430e-06,2.213770056470669628e-06 +0.000000000000000000e+00,3.724405484595014453e-08,7.448810969190028906e-08,1.117321645378504336e-07,1.489762193838005781e-07,1.862202742297507226e-07,2.234643290757008672e-07,2.607083839216510117e-07,2.979524387676011562e-07,3.351964936135513008e-07,3.724405484595014453e-07,4.096846033054515898e-07,4.469286581514017343e-07,4.841727129973519318e-07,5.214167678433021293e-07,5.586608226892523267e-07,5.959048775352025242e-07,6.331489323811527217e-07,6.703929872271029192e-07,7.076370420730531166e-07,7.448810969190033141e-07,7.821251517649535116e-07,8.193692066109037090e-07,8.566132614568539065e-07,8.938573163028041040e-07,9.311013711487543014e-07,9.683454259947044989e-07,1.005589480840654696e-06,1.042833535686604894e-06,1.080077590532555091e-06,1.117321645378505289e-06,1.154565700224455486e-06,1.191809755070405684e-06,1.229053809916355881e-06,1.266297864762306079e-06,1.303541919608256276e-06,1.340785974454206474e-06,1.378030029300156671e-06,1.415274084146106869e-06,1.452518138992057066e-06,1.489762193838007263e-06,1.527006248683957461e-06,1.564250303529907658e-06,1.601494358375857856e-06,1.638738413221808053e-06,1.675982468067758251e-06,1.713226522913708448e-06,1.750470577759658646e-06,1.787714632605608843e-06,1.824958687451559041e-06,1.862202742297509238e-06,1.899446797143459436e-06,1.936690851989409421e-06,1.973934906835359195e-06,2.011178961681308969e-06,2.048423016527258743e-06,2.085667071373208517e-06,2.122911126219158291e-06,2.160155181065108065e-06,2.197399235911057839e-06,2.234643290757007613e-06,2.271887345602957387e-06,2.309131400448907161e-06,2.346375455294856935e-06 +0.000000000000000000e+00,3.335703160992077645e-08,6.671406321984155289e-08,1.000710948297623360e-07,1.334281264396831323e-07,1.667851580496039286e-07,2.001421896595247249e-07,2.334992212694455212e-07,2.668562528793663175e-07,3.002132844892871138e-07,3.335703160992079101e-07,3.669273477091287063e-07,4.002843793190495026e-07,4.336414109289702989e-07,4.669984425388910952e-07,5.003554741488118915e-07,5.337125057587327408e-07,5.670695373686535900e-07,6.004265689785744393e-07,6.337836005884952885e-07,6.671406321984161377e-07,7.004976638083369870e-07,7.338546954182578362e-07,7.672117270281786855e-07,8.005687586380995347e-07,8.339257902480203839e-07,8.672828218579412332e-07,9.006398534678620824e-07,9.339968850777829316e-07,9.673539166877038868e-07,1.000710948297624842e-06,1.034067979907545797e-06,1.067425011517466752e-06,1.100782043127387707e-06,1.134139074737308662e-06,1.167496106347229617e-06,1.200853137957150573e-06,1.234210169567071528e-06,1.267567201176992483e-06,1.300924232786913438e-06,1.334281264396834393e-06,1.367638296006755348e-06,1.400995327616676303e-06,1.434352359226597258e-06,1.467709390836518214e-06,1.501066422446439169e-06,1.534423454056360124e-06,1.567780485666281079e-06,1.601137517276202034e-06,1.634494548886122989e-06,1.667851580496043944e-06,1.701208612105964899e-06,1.734565643715885854e-06,1.767922675325806810e-06,1.801279706935727765e-06,1.834636738545648720e-06,1.867993770155569675e-06,1.901350801765490630e-06,1.934707833375411585e-06,1.968064864985332540e-06,2.001421896595253495e-06,2.034778928205174451e-06,2.068135959815095406e-06,2.101492991425016361e-06 +0.000000000000000000e+00,3.513920724557299413e-08,7.027841449114598826e-08,1.054176217367189758e-07,1.405568289822919500e-07,1.756960362278649243e-07,2.108352434734378986e-07,2.459744507190108729e-07,2.811136579645838471e-07,3.162528652101568214e-07,3.513920724557297957e-07,3.865312797013027700e-07,4.216704869468757443e-07,4.568096941924487185e-07,4.919489014380216399e-07,5.270881086835946141e-07,5.622273159291675884e-07,5.973665231747405627e-07,6.325057304203135370e-07,6.676449376658865112e-07,7.027841449114594855e-07,7.379233521570324598e-07,7.730625594026054341e-07,8.082017666481784083e-07,8.433409738937513826e-07,8.784801811393243569e-07,9.136193883848973312e-07,9.487585956304703055e-07,9.838978028760432797e-07,1.019037010121616254e-06,1.054176217367189228e-06,1.089315424612762203e-06,1.124454631858335177e-06,1.159593839103908151e-06,1.194733046349481125e-06,1.229872253595054100e-06,1.265011460840627074e-06,1.300150668086200048e-06,1.335289875331773022e-06,1.370429082577345997e-06,1.405568289822918971e-06,1.440707497068491945e-06,1.475846704314064920e-06,1.510985911559637894e-06,1.546125118805210868e-06,1.581264326050783842e-06,1.616403533296356817e-06,1.651542740541929791e-06,1.686681947787502765e-06,1.721821155033075740e-06,1.756960362278648714e-06,1.792099569524221688e-06,1.827238776769794662e-06,1.862377984015367637e-06,1.897517191260940611e-06,1.932656398506513585e-06,1.967795605752086559e-06,2.002934812997659534e-06,2.038074020243232508e-06,2.073213227488805482e-06,2.108352434734378457e-06,2.143491641979951431e-06,2.178630849225524405e-06,2.213770056471097379e-06 +0.000000000000000000e+00,3.724405484595688109e-08,7.448810969191376217e-08,1.117321645378706433e-07,1.489762193838275243e-07,1.862202742297843922e-07,2.234643290757412601e-07,2.607083839216981279e-07,2.979524387676549958e-07,3.351964936136118636e-07,3.724405484595687315e-07,4.096846033055255993e-07,4.469286581514824672e-07,4.841727129974393880e-07,5.214167678433963617e-07,5.586608226893533354e-07,5.959048775353103092e-07,6.331489323812672829e-07,6.703929872272242566e-07,7.076370420731812304e-07,7.448810969191382041e-07,7.821251517650951778e-07,8.193692066110521515e-07,8.566132614570091253e-07,8.938573163029660990e-07,9.311013711489230727e-07,9.683454259948800465e-07,1.005589480840837020e-06,1.042833535686793994e-06,1.080077590532750968e-06,1.117321645378707941e-06,1.154565700224664915e-06,1.191809755070621889e-06,1.229053809916578863e-06,1.266297864762535836e-06,1.303541919608492810e-06,1.340785974454449784e-06,1.378030029300406758e-06,1.415274084146363731e-06,1.452518138992320705e-06,1.489762193838277679e-06,1.527006248684234652e-06,1.564250303530191626e-06,1.601494358376148600e-06,1.638738413222105574e-06,1.675982468068062547e-06,1.713226522914019521e-06,1.750470577759976495e-06,1.787714632605933469e-06,1.824958687451890442e-06,1.862202742297847416e-06,1.899446797143804390e-06,1.936690851989761363e-06,1.973934906835718337e-06,2.011178961681675311e-06,2.048423016527632285e-06,2.085667071373589258e-06,2.122911126219546232e-06,2.160155181065503206e-06,2.197399235911460180e-06,2.234643290757417153e-06,2.271887345603374127e-06,2.309131400449331101e-06,2.346375455295288075e-06 +0.000000000000000000e+00,3.335703160992704978e-08,6.671406321985409957e-08,1.000710948297811560e-07,1.334281264397082256e-07,1.667851580496352952e-07,2.001421896595623649e-07,2.334992212694894345e-07,2.668562528794165042e-07,3.002132844893435473e-07,3.335703160992705905e-07,3.669273477091976337e-07,4.002843793191246768e-07,4.336414109290517200e-07,4.669984425389787632e-07,5.003554741489058063e-07,5.337125057588329024e-07,5.670695373687599985e-07,6.004265689786870946e-07,6.337836005886141908e-07,6.671406321985412869e-07,7.004976638084683830e-07,7.338546954183954791e-07,7.672117270283225752e-07,8.005687586382496713e-07,8.339257902481767674e-07,8.672828218581038635e-07,9.006398534680309596e-07,9.339968850779580557e-07,9.673539166878851518e-07,1.000710948297812248e-06,1.034067979907739344e-06,1.067425011517666440e-06,1.100782043127593536e-06,1.134139074737520632e-06,1.167496106347447728e-06,1.200853137957374825e-06,1.234210169567301921e-06,1.267567201177229017e-06,1.300924232787156113e-06,1.334281264397083209e-06,1.367638296007010305e-06,1.400995327616937401e-06,1.434352359226864497e-06,1.467709390836791593e-06,1.501066422446718690e-06,1.534423454056645786e-06,1.567780485666572882e-06,1.601137517276499978e-06,1.634494548886427074e-06,1.667851580496354170e-06,1.701208612106281266e-06,1.734565643716208362e-06,1.767922675326135458e-06,1.801279706936062554e-06,1.834636738545989651e-06,1.867993770155916747e-06,1.901350801765843843e-06,1.934707833375771151e-06,1.968064864985698459e-06,2.001421896595625766e-06,2.034778928205553074e-06,2.068135959815480382e-06,2.101492991425407690e-06 +0.000000000000000000e+00,3.079642335348305414e-08,6.159284670696610828e-08,9.238927006044916242e-08,1.231856934139322166e-07,1.539821167674152707e-07,1.847785401208983248e-07,2.155749634743813790e-07,2.463713868278644331e-07,2.771678101813475137e-07,3.079642335348305944e-07,3.387606568883136750e-07,3.695570802417967556e-07,4.003535035952798362e-07,4.311499269487629168e-07,4.619463503022459974e-07,4.927427736557290780e-07,5.235391970092121586e-07,5.543356203626952392e-07,5.851320437161783199e-07,6.159284670696614005e-07,6.467248904231444811e-07,6.775213137766275617e-07,7.083177371301106423e-07,7.391141604835937229e-07,7.699105838370768035e-07,8.007070071905598841e-07,8.315034305440429647e-07,8.622998538975260454e-07,8.930962772510091260e-07,9.238927006044922066e-07,9.546891239579751813e-07,9.854855473114581560e-07,1.016281970664941131e-06,1.047078394018424106e-06,1.077874817371907080e-06,1.108671240725390055e-06,1.139467664078873030e-06,1.170264087432356004e-06,1.201060510785838979e-06,1.231856934139321954e-06,1.262653357492804929e-06,1.293449780846287903e-06,1.324246204199770878e-06,1.355042627553253853e-06,1.385839050906736828e-06,1.416635474260219802e-06,1.447431897613702777e-06,1.478228320967185752e-06,1.509024744320668726e-06,1.539821167674151701e-06,1.570617591027634676e-06,1.601414014381117651e-06,1.632210437734600625e-06,1.663006861088083600e-06,1.693803284441566575e-06,1.724599707795049550e-06,1.755396131148532524e-06,1.786192554502015499e-06,1.816988977855498474e-06,1.847785401208981449e-06,1.878581824562464423e-06,1.909378247915947398e-06,1.940174671269430373e-06 +0.000000000000000000e+00,3.298879349217833611e-08,6.597758698435667223e-08,9.896638047653500834e-08,1.319551739687133445e-07,1.649439674608916806e-07,1.979327609530700167e-07,2.309215544452483528e-07,2.639103479374266889e-07,2.968991414296050250e-07,3.298879349217833611e-07,3.628767284139616973e-07,3.958655219061400334e-07,4.288543153983183695e-07,4.618431088904967056e-07,4.948319023826750947e-07,5.278206958748534837e-07,5.608094893670318728e-07,5.937982828592102618e-07,6.267870763513886509e-07,6.597758698435670399e-07,6.927646633357454290e-07,7.257534568279238180e-07,7.587422503201022071e-07,7.917310438122805961e-07,8.247198373044589852e-07,8.577086307966373743e-07,8.906974242888157633e-07,9.236862177809941524e-07,9.566750112731725414e-07,9.896638047653510363e-07,1.022652598257529531e-06,1.055641391749708026e-06,1.088630185241886521e-06,1.121618978734065016e-06,1.154607772226243511e-06,1.187596565718422006e-06,1.220585359210600501e-06,1.253574152702778996e-06,1.286562946194957491e-06,1.319551739687135986e-06,1.352540533179314481e-06,1.385529326671492976e-06,1.418518120163671470e-06,1.451506913655849965e-06,1.484495707148028460e-06,1.517484500640206955e-06,1.550473294132385450e-06,1.583462087624563945e-06,1.616450881116742440e-06,1.649439674608920935e-06,1.682428468101099430e-06,1.715417261593277925e-06,1.748406055085456420e-06,1.781394848577634915e-06,1.814383642069813410e-06,1.847372435561991905e-06,1.880361229054170400e-06,1.913350022546348894e-06,1.946338816038527389e-06,1.979327609530705884e-06,2.012316403022884379e-06,2.045305196515062874e-06,2.078293990007241369e-06 +0.000000000000000000e+00,2.916770963830712486e-08,5.833541927661424972e-08,8.750312891492136797e-08,1.166708385532284862e-07,1.458385481915356045e-07,1.750062578298427359e-07,2.041739674681498674e-07,2.333416771064569989e-07,2.625093867447641304e-07,2.916770963830712619e-07,3.208448060213783933e-07,3.500125156596855248e-07,3.791802252979926563e-07,4.083479349362997878e-07,4.375156445746069192e-07,4.666833542129140507e-07,4.958510638512211293e-07,5.250187734895281549e-07,5.541864831278351805e-07,5.833541927661422061e-07,6.125219024044492317e-07,6.416896120427562573e-07,6.708573216810632829e-07,7.000250313193703085e-07,7.291927409576773341e-07,7.583604505959843597e-07,7.875281602342913853e-07,8.166958698725984109e-07,8.458635795109054365e-07,8.750312891492124621e-07,9.041989987875194877e-07,9.333667084258265133e-07,9.625344180641335389e-07,9.917021277024405645e-07,1.020869837340747590e-06,1.050037546979054616e-06,1.079205256617361641e-06,1.108372966255668667e-06,1.137540675893975692e-06,1.166708385532282718e-06,1.195876095170589744e-06,1.225043804808896769e-06,1.254211514447203795e-06,1.283379224085510820e-06,1.312546933723817846e-06,1.341714643362124872e-06,1.370882353000431897e-06,1.400050062638738923e-06,1.429217772277045948e-06,1.458385481915352974e-06,1.487553191553660000e-06,1.516720901191967025e-06,1.545888610830274051e-06,1.575056320468581076e-06,1.604224030106888102e-06,1.633391739745195128e-06,1.662559449383502153e-06,1.691727159021809179e-06,1.720894868660116204e-06,1.750062578298423230e-06,1.779230287936730256e-06,1.808397997575037281e-06,1.837565707213344307e-06 +0.000000000000000000e+00,3.079642335348992967e-08,6.159284670697985933e-08,9.238927006046978238e-08,1.231856934139596922e-07,1.539821167674496020e-07,1.847785401209395118e-07,2.155749634744294216e-07,2.463713868279193315e-07,2.771678101814092413e-07,3.079642335348991511e-07,3.387606568883890609e-07,3.695570802418789707e-07,4.003535035953688805e-07,4.311499269488587903e-07,4.619463503023487002e-07,4.927427736558385570e-07,5.235391970093284139e-07,5.543356203628182708e-07,5.851320437163081277e-07,6.159284670697979845e-07,6.467248904232878414e-07,6.775213137767776983e-07,7.083177371302675551e-07,7.391141604837574120e-07,7.699105838372472689e-07,8.007070071907371258e-07,8.315034305442269826e-07,8.622998538977168395e-07,8.930962772512066964e-07,9.238927006046965533e-07,9.546891239581865160e-07,9.854855473116764788e-07,1.016281970665166442e-06,1.047078394018656404e-06,1.077874817372146367e-06,1.108671240725636330e-06,1.139467664079126293e-06,1.170264087432616255e-06,1.201060510786106218e-06,1.231856934139596181e-06,1.262653357493086144e-06,1.293449780846576106e-06,1.324246204200066069e-06,1.355042627553556032e-06,1.385839050907045995e-06,1.416635474260535957e-06,1.447431897614025920e-06,1.478228320967515883e-06,1.509024744321005846e-06,1.539821167674495808e-06,1.570617591027985771e-06,1.601414014381475734e-06,1.632210437734965697e-06,1.663006861088455659e-06,1.693803284441945622e-06,1.724599707795435585e-06,1.755396131148925548e-06,1.786192554502415510e-06,1.816988977855905473e-06,1.847785401209395436e-06,1.878581824562885399e-06,1.909378247916375573e-06,1.940174671269865748e-06 +0.000000000000000000e+00,3.298879349218529767e-08,6.597758698437059533e-08,9.896638047655589300e-08,1.319551739687411907e-07,1.649439674609264883e-07,1.979327609531117860e-07,2.309215544452970837e-07,2.639103479374823813e-07,2.968991414296676525e-07,3.298879349218529237e-07,3.628767284140381949e-07,3.958655219062234661e-07,4.288543153984087373e-07,4.618431088905940085e-07,4.948319023827792797e-07,5.278206958749645509e-07,5.608094893671498221e-07,5.937982828593350933e-07,6.267870763515203645e-07,6.597758698437056357e-07,6.927646633358909069e-07,7.257534568280761781e-07,7.587422503202614493e-07,7.917310438124467205e-07,8.247198373046319917e-07,8.577086307968172629e-07,8.906974242890025341e-07,9.236862177811878053e-07,9.566750112733730765e-07,9.896638047655583477e-07,1.022652598257743619e-06,1.055641391749928890e-06,1.088630185242114161e-06,1.121618978734299432e-06,1.154607772226484704e-06,1.187596565718669975e-06,1.220585359210855246e-06,1.253574152703040517e-06,1.286562946195225788e-06,1.319551739687411060e-06,1.352540533179596331e-06,1.385529326671781602e-06,1.418518120163966873e-06,1.451506913656152144e-06,1.484495707148337416e-06,1.517484500640522687e-06,1.550473294132707958e-06,1.583462087624893229e-06,1.616450881117078500e-06,1.649439674609263772e-06,1.682428468101449043e-06,1.715417261593634314e-06,1.748406055085819585e-06,1.781394848578004856e-06,1.814383642070190128e-06,1.847372435562375399e-06,1.880361229054560670e-06,1.913350022546745729e-06,1.946338816038931001e-06,1.979327609531116272e-06,2.012316403023301543e-06,2.045305196515486814e-06,2.078293990007672085e-06 +0.000000000000000000e+00,2.916770963831348092e-08,5.833541927662696184e-08,8.750312891494043944e-08,1.166708385532539104e-07,1.458385481915673682e-07,1.750062578298808259e-07,2.041739674681942837e-07,2.333416771065077415e-07,2.625093867448211992e-07,2.916770963831346305e-07,3.208448060214480618e-07,3.500125156597614931e-07,3.791802252980749244e-07,4.083479349363883557e-07,4.375156445747017869e-07,4.666833542130152182e-07,4.958510638513287025e-07,5.250187734896421867e-07,5.541864831279556709e-07,5.833541927662691551e-07,6.125219024045826394e-07,6.416896120428961236e-07,6.708573216812096078e-07,7.000250313195230920e-07,7.291927409578365763e-07,7.583604505961500605e-07,7.875281602344635447e-07,8.166958698727770289e-07,8.458635795110905132e-07,8.750312891494039974e-07,9.041989987877174816e-07,9.333667084260309658e-07,9.625344180643444501e-07,9.917021277026578284e-07,1.020869837340971207e-06,1.050037546979284585e-06,1.079205256617597963e-06,1.108372966255911342e-06,1.137540675894224720e-06,1.166708385532538098e-06,1.195876095170851477e-06,1.225043804809164855e-06,1.254211514447478234e-06,1.283379224085791612e-06,1.312546933724104990e-06,1.341714643362418369e-06,1.370882353000731747e-06,1.400050062639045125e-06,1.429217772277358504e-06,1.458385481915671882e-06,1.487553191553985260e-06,1.516720901192298639e-06,1.545888610830612017e-06,1.575056320468925395e-06,1.604224030107238774e-06,1.633391739745552152e-06,1.662559449383865530e-06,1.691727159022178909e-06,1.720894868660492287e-06,1.750062578298805665e-06,1.779230287937119044e-06,1.808397997575432422e-06,1.837565707213745800e-06 +0.000000000000000000e+00,2.630648771859791106e-08,5.261297543719582213e-08,7.891946315579372988e-08,1.052259508743916310e-07,1.315324385929895189e-07,1.578389263115874068e-07,1.841454140301852947e-07,2.104519017487831826e-07,2.367583894673810705e-07,2.630648771859789320e-07,2.893713649045767934e-07,3.156778526231746548e-07,3.419843403417725163e-07,3.682908280603703777e-07,3.945973157789682391e-07,4.209038034975661006e-07,4.472102912161639620e-07,4.735167789347618234e-07,4.998232666533596849e-07,5.261297543719575463e-07,5.524362420905554077e-07,5.787427298091532692e-07,6.050492175277511306e-07,6.313557052463489920e-07,6.576621929649468535e-07,6.839686806835447149e-07,7.102751684021425763e-07,7.365816561207404378e-07,7.628881438393382992e-07,7.891946315579361606e-07,8.155011192765340220e-07,8.418076069951318835e-07,8.681140947137297449e-07,8.944205824323276063e-07,9.207270701509254678e-07,9.470335578695233292e-07,9.733400455881211906e-07,9.996465333067189462e-07,1.025953021025316702e-06,1.052259508743914457e-06,1.078565996462512213e-06,1.104872484181109968e-06,1.131178971899707724e-06,1.157485459618305480e-06,1.183791947336903235e-06,1.210098435055500991e-06,1.236404922774098746e-06,1.262711410492696502e-06,1.289017898211294257e-06,1.315324385929892013e-06,1.341630873648489768e-06,1.367937361367087524e-06,1.394243849085685280e-06,1.420550336804283035e-06,1.446856824522880791e-06,1.473163312241478546e-06,1.499469799960076302e-06,1.525776287678674057e-06,1.552082775397271813e-06,1.578389263115869568e-06,1.604695750834467324e-06,1.631002238553065079e-06,1.657308726271662835e-06 +0.000000000000000000e+00,2.856962980942183021e-08,5.713925961884366043e-08,8.570888942826549395e-08,1.142785192376873341e-07,1.428481490471091610e-07,1.714177788565309879e-07,1.999874086659528148e-07,2.285570384753746417e-07,2.571266682847964686e-07,2.856962980942183220e-07,3.142659279036401754e-07,3.428355577130620287e-07,3.714051875224838821e-07,3.999748173319057355e-07,4.285444471413275889e-07,4.571140769507494423e-07,4.856837067601712427e-07,5.142533365695930431e-07,5.428229663790148436e-07,5.713925961884366440e-07,5.999622259978584444e-07,6.285318558072802449e-07,6.571014856167020453e-07,6.856711154261238457e-07,7.142407452355456462e-07,7.428103750449674466e-07,7.713800048543892470e-07,7.999496346638110475e-07,8.285192644732328479e-07,8.570888942826546484e-07,8.856585240920764488e-07,9.142281539014982492e-07,9.427977837109200497e-07,9.713674135203418501e-07,9.999370433297636505e-07,1.028506673139185451e-06,1.057076302948607251e-06,1.085645932758029052e-06,1.114215562567450852e-06,1.142785192376872653e-06,1.171354822186294453e-06,1.199924451995716254e-06,1.228494081805138054e-06,1.257063711614559854e-06,1.285633341423981655e-06,1.314202971233403455e-06,1.342772601042825256e-06,1.371342230852247056e-06,1.399911860661668857e-06,1.428481490471090657e-06,1.457051120280512458e-06,1.485620750089934258e-06,1.514190379899356058e-06,1.542760009708777859e-06,1.571329639518199659e-06,1.599899269327621460e-06,1.628468899137043260e-06,1.657038528946465061e-06,1.685608158755886861e-06,1.714177788565308661e-06,1.742747418374730462e-06,1.771317048184152262e-06,1.799886677993574063e-06 +0.000000000000000000e+00,2.479571387010072853e-08,4.959142774020145706e-08,7.438714161030219220e-08,9.918285548040292735e-08,1.239785693505036625e-07,1.487742832206043844e-07,1.735699970907051063e-07,1.983657109608058282e-07,2.231614248309065501e-07,2.479571387010072720e-07,2.727528525711079675e-07,2.975485664412086629e-07,3.223442803113093584e-07,3.471399941814100538e-07,3.719357080515107492e-07,3.967314219216114447e-07,4.215271357917121401e-07,4.463228496618128356e-07,4.711185635319135310e-07,4.959142774020142264e-07,5.207099912721149219e-07,5.455057051422156173e-07,5.703014190123163128e-07,5.950971328824170082e-07,6.198928467525177036e-07,6.446885606226183991e-07,6.694842744927190945e-07,6.942799883628197900e-07,7.190757022329204854e-07,7.438714161030211808e-07,7.686671299731218763e-07,7.934628438432225717e-07,8.182585577133232672e-07,8.430542715834239626e-07,8.678499854535246581e-07,8.926456993236253535e-07,9.174414131937260489e-07,9.422371270638267444e-07,9.670328409339274398e-07,9.918285548040282411e-07,1.016624268674129042e-06,1.041419982544229844e-06,1.066215696414330645e-06,1.091011410284431446e-06,1.115807124154532248e-06,1.140602838024633049e-06,1.165398551894733850e-06,1.190194265764834652e-06,1.214989979634935453e-06,1.239785693505036254e-06,1.264581407375137056e-06,1.289377121245237857e-06,1.314172835115338658e-06,1.338968548985439460e-06,1.363764262855540261e-06,1.388559976725641062e-06,1.413355690595741864e-06,1.438151404465842665e-06,1.462947118335943466e-06,1.487742832206044268e-06,1.512538546076145069e-06,1.537334259946245870e-06,1.562129973816346671e-06 +0.000000000000000000e+00,2.630648771860457152e-08,5.261297543720914304e-08,7.891946315581371457e-08,1.052259508744182861e-07,1.315324385930228708e-07,1.578389263116274556e-07,1.841454140302320404e-07,2.104519017488366251e-07,2.367583894674412099e-07,2.630648771860457946e-07,2.893713649046503794e-07,3.156778526232549641e-07,3.419843403418595489e-07,3.682908280604641337e-07,3.945973157790687184e-07,4.209038034976733032e-07,4.472102912162778879e-07,4.735167789348824727e-07,4.998232666534870574e-07,5.261297543720916951e-07,5.524362420906963328e-07,5.787427298093009705e-07,6.050492175279056082e-07,6.313557052465102459e-07,6.576621929651148836e-07,6.839686806837195213e-07,7.102751684023241590e-07,7.365816561209287967e-07,7.628881438395334344e-07,7.891946315581380721e-07,8.155011192767427098e-07,8.418076069953473475e-07,8.681140947139519852e-07,8.944205824325566229e-07,9.207270701511612606e-07,9.470335578697658983e-07,9.733400455883706418e-07,9.996465333069753854e-07,1.025953021025580129e-06,1.052259508744184873e-06,1.078565996462789616e-06,1.104872484181394360e-06,1.131178971899999103e-06,1.157485459618603847e-06,1.183791947337208590e-06,1.210098435055813334e-06,1.236404922774418078e-06,1.262711410493022821e-06,1.289017898211627565e-06,1.315324385930232308e-06,1.341630873648837052e-06,1.367937361367441795e-06,1.394243849086046539e-06,1.420550336804651283e-06,1.446856824523256026e-06,1.473163312241860770e-06,1.499469799960465513e-06,1.525776287679070257e-06,1.552082775397675001e-06,1.578389263116279744e-06,1.604695750834884488e-06,1.631002238553489231e-06,1.657308726272093975e-06 +0.000000000000000000e+00,2.856962980942863295e-08,5.713925961885726590e-08,8.570888942828590215e-08,1.142785192377145450e-07,1.428481490471432011e-07,1.714177788565718572e-07,1.999874086660005134e-07,2.285570384754291695e-07,2.571266682848578256e-07,2.856962980942865081e-07,3.142659279037151907e-07,3.428355577131438733e-07,3.714051875225725559e-07,3.999748173320012385e-07,4.285444471414299210e-07,4.571140769508586036e-07,4.856837067602872862e-07,5.142533365697159688e-07,5.428229663791446514e-07,5.713925961885733339e-07,5.999622259980020165e-07,6.285318558074306991e-07,6.571014856168593817e-07,6.856711154262880643e-07,7.142407452357167468e-07,7.428103750451454294e-07,7.713800048545741120e-07,7.999496346640027946e-07,8.285192644734314771e-07,8.570888942828601597e-07,8.856585240922888423e-07,9.142281539017175249e-07,9.427977837111462075e-07,9.713674135205749959e-07,9.999370433300037844e-07,1.028506673139432573e-06,1.057076302948861361e-06,1.085645932758290150e-06,1.114215562567718938e-06,1.142785192377147727e-06,1.171354822186576515e-06,1.199924451996005304e-06,1.228494081805434092e-06,1.257063711614862880e-06,1.285633341424291669e-06,1.314202971233720457e-06,1.342772601043149246e-06,1.371342230852578034e-06,1.399911860662006823e-06,1.428481490471435611e-06,1.457051120280864400e-06,1.485620750090293188e-06,1.514190379899721977e-06,1.542760009709150765e-06,1.571329639518579554e-06,1.599899269328008342e-06,1.628468899137437130e-06,1.657038528946865919e-06,1.685608158756294707e-06,1.714177788565723496e-06,1.742747418375152284e-06,1.771317048184581073e-06,1.799886677994009861e-06 +0.000000000000000000e+00,2.479571387010695885e-08,4.959142774021391770e-08,7.438714161032087986e-08,9.918285548042784864e-08,1.239785693505348174e-07,1.487742832206417862e-07,1.735699970907487550e-07,1.983657109608557238e-07,2.231614248309626925e-07,2.479571387010696348e-07,2.727528525711765772e-07,2.975485664412835195e-07,3.223442803113904618e-07,3.471399941814974041e-07,3.719357080516043464e-07,3.967314219217112887e-07,4.215271357918182310e-07,4.463228496619251733e-07,4.711185635320321156e-07,4.959142774021390579e-07,5.207099912722460002e-07,5.455057051423529425e-07,5.703014190124598849e-07,5.950971328825668272e-07,6.198928467526737695e-07,6.446885606227807118e-07,6.694842744928876541e-07,6.942799883629945964e-07,7.190757022331015387e-07,7.438714161032084810e-07,7.686671299733154233e-07,7.934628438434223656e-07,8.182585577135293079e-07,8.430542715836362502e-07,8.678499854537431926e-07,8.926456993238501349e-07,9.174414131939570772e-07,9.422371270640640195e-07,9.670328409341709618e-07,9.918285548042779041e-07,1.016624268674384846e-06,1.041419982544491789e-06,1.066215696414598731e-06,1.091011410284705673e-06,1.115807124154812616e-06,1.140602838024919558e-06,1.165398551895026500e-06,1.190194265765133443e-06,1.214989979635240385e-06,1.239785693505347327e-06,1.264581407375454269e-06,1.289377121245561212e-06,1.314172835115668154e-06,1.338968548985775096e-06,1.363764262855882039e-06,1.388559976725988981e-06,1.413355690596095923e-06,1.438151404466202866e-06,1.462947118336309808e-06,1.487742832206416750e-06,1.512538546076523693e-06,1.537334259946630635e-06,1.562129973816737577e-06 +0.000000000000000000e+00,2.400815863469367865e-08,4.801631726938735729e-08,7.202447590408103925e-08,9.603263453877472782e-08,1.200407931734684032e-07,1.440489518081620785e-07,1.680571104428557538e-07,1.920652690775494292e-07,2.160734277122431045e-07,2.400815863469368063e-07,2.640897449816305081e-07,2.880979036163242099e-07,3.121060622510179117e-07,3.361142208857116136e-07,3.601223795204053154e-07,3.841305381550990172e-07,4.081386967897927190e-07,4.321468554244864208e-07,4.561550140591801226e-07,4.801631726938738244e-07,5.041713313285675262e-07,5.281794899632612280e-07,5.521876485979549298e-07,5.761958072326486316e-07,6.002039658673423334e-07,6.242121245020360352e-07,6.482202831367297371e-07,6.722284417714234389e-07,6.962366004061171407e-07,7.202447590408108425e-07,7.442529176755045443e-07,7.682610763101982461e-07,7.922692349448919479e-07,8.162773935795856497e-07,8.402855522142793515e-07,8.642937108489730533e-07,8.883018694836667551e-07,9.123100281183604569e-07,9.363181867530541587e-07,9.603263453877478606e-07,9.843345040224415624e-07,1.008342662657135264e-06,1.032350821291828966e-06,1.056358979926522668e-06,1.080367138561216370e-06,1.104375297195910071e-06,1.128383455830603773e-06,1.152391614465297475e-06,1.176399773099991177e-06,1.200407931734684879e-06,1.224416090369378580e-06,1.248424249004072282e-06,1.272432407638765984e-06,1.296440566273459686e-06,1.320448724908153388e-06,1.344456883542847089e-06,1.368465042177540791e-06,1.392473200812234493e-06,1.416481359446928195e-06,1.440489518081621897e-06,1.464497676716315599e-06,1.488505835351009300e-06,1.512513993985703002e-06 +0.000000000000000000e+00,2.400815863470012735e-08,4.801631726940025469e-08,7.202447590410037542e-08,9.603263453880049615e-08,1.200407931735006169e-07,1.440489518082007508e-07,1.680571104429008848e-07,1.920652690776010188e-07,2.160734277123011527e-07,2.400815863470012867e-07,2.640897449817014471e-07,2.880979036164016076e-07,3.121060622511017680e-07,3.361142208858019284e-07,3.601223795205020889e-07,3.841305381552022493e-07,4.081386967899024097e-07,4.321468554246025702e-07,4.561550140593027306e-07,4.801631726940028910e-07,5.041713313287030515e-07,5.281794899634032119e-07,5.521876485981033723e-07,5.761958072328035328e-07,6.002039658675036932e-07,6.242121245022038536e-07,6.482202831369040141e-07,6.722284417716041745e-07,6.962366004063043349e-07,7.202447590410044954e-07,7.442529176757046558e-07,7.682610763104048163e-07,7.922692349451049767e-07,8.162773935798051371e-07,8.402855522145052976e-07,8.642937108492054580e-07,8.883018694839056184e-07,9.123100281186057789e-07,9.363181867533059393e-07,9.603263453880059938e-07,9.843345040227060484e-07,1.008342662657406103e-06,1.032350821292106158e-06,1.056358979926806212e-06,1.080367138561506267e-06,1.104375297196206321e-06,1.128383455830906376e-06,1.152391614465606430e-06,1.176399773100306485e-06,1.200407931735006539e-06,1.224416090369706594e-06,1.248424249004406649e-06,1.272432407639106703e-06,1.296440566273806758e-06,1.320448724908506812e-06,1.344456883543206867e-06,1.368465042177906921e-06,1.392473200812606976e-06,1.416481359447307030e-06,1.440489518082007085e-06,1.464497676716707139e-06,1.488505835351407194e-06,1.512513993986107249e-06 +0.000000000000000000e+00,5.346633500047574933e-08,1.069326700009514987e-07,1.603990050014272480e-07,2.138653400019029973e-07,2.673316750023787731e-07,3.207980100028545489e-07,3.742643450033303247e-07,4.277306800038061005e-07,4.811970150042818763e-07,5.346633500047576521e-07,5.881296850052334279e-07,6.415960200057092037e-07,6.950623550061849795e-07,7.485286900066607553e-07,8.019950250071365311e-07,8.554613600076123069e-07,9.089276950080880827e-07,9.623940300085639643e-07,1.015860365009039952e-06,1.069326700009515939e-06,1.122793035009991927e-06,1.176259370010467915e-06,1.229725705010943902e-06,1.283192040011419890e-06,1.336658375011895877e-06,1.390124710012371865e-06,1.443591045012847852e-06,1.497057380013323840e-06,1.550523715013799827e-06,1.603990050014275815e-06,1.657456385014751803e-06,1.710922720015227790e-06,1.764389055015703778e-06,1.817855390016179765e-06,1.871321725016655753e-06,1.924788060017131740e-06,1.978254395017607728e-06,2.031720730018083715e-06,2.085187065018559703e-06,2.138653400019035691e-06,2.192119735019511678e-06,2.245586070019987666e-06,2.299052405020463653e-06,2.352518740020939641e-06,2.405985075021415628e-06,2.459451410021891616e-06,2.512917745022367603e-06,2.566384080022843591e-06,2.619850415023319579e-06,2.673316750023795566e-06,2.726783085024271554e-06,2.780249420024747541e-06,2.833715755025223529e-06,2.887182090025699516e-06,2.940648425026175504e-06,2.994114760026651491e-06,3.047581095027127479e-06,3.101047430027603467e-06,3.154513765028079454e-06,3.207980100028555442e-06,3.261446435029031429e-06,3.314912770029507417e-06,3.368379105029983404e-06 +0.000000000000000000e+00,4.951580765587955402e-08,9.903161531175910803e-08,1.485474229676386687e-07,1.980632306235182425e-07,2.475790382793977899e-07,2.970948459352773373e-07,3.466106535911568847e-07,3.961264612470364321e-07,4.456422689029159795e-07,4.951580765587955799e-07,5.446738842146751802e-07,5.941896918705547806e-07,6.437054995264343809e-07,6.932213071823139812e-07,7.427371148381935816e-07,7.922529224940731819e-07,8.417687301499527823e-07,8.912845378058323826e-07,9.408003454617119829e-07,9.903161531175915833e-07,1.039831960773471184e-06,1.089347768429350784e-06,1.138863576085230384e-06,1.188379383741109985e-06,1.237895191396989585e-06,1.287410999052869185e-06,1.336926806708748786e-06,1.386442614364628386e-06,1.435958422020507986e-06,1.485474229676387587e-06,1.534990037332267187e-06,1.584505844988146787e-06,1.634021652644026388e-06,1.683537460299905988e-06,1.733053267955785588e-06,1.782569075611665189e-06,1.832084883267544789e-06,1.881600690923424389e-06,1.931116498579303990e-06,1.980632306235183590e-06,2.030148113891063190e-06,2.079663921546942791e-06,2.129179729202822391e-06,2.178695536858701991e-06,2.228211344514581592e-06,2.277727152170461192e-06,2.327242959826340792e-06,2.376758767482220393e-06,2.426274575138099993e-06,2.475790382793979593e-06,2.525306190449859194e-06,2.574821998105738794e-06,2.624337805761618394e-06,2.673853613417497995e-06,2.723369421073377595e-06,2.772885228729257195e-06,2.822401036385136796e-06,2.871916844041016396e-06,2.921432651696895997e-06,2.970948459352775597e-06,3.020464267008655197e-06,3.069980074664534798e-06,3.119495882320414398e-06 +0.000000000000000000e+00,4.937304181533492094e-08,9.874608363066984188e-08,1.481191254460047562e-07,1.974921672613396573e-07,2.468652090766745584e-07,2.962382508920094595e-07,3.456112927073443606e-07,3.949843345226792616e-07,4.443573763380141627e-07,4.937304181533490109e-07,5.431034599686839120e-07,5.924765017840188130e-07,6.418495435993537141e-07,6.912225854146886152e-07,7.405956272300235163e-07,7.899686690453584174e-07,8.393417108606933185e-07,8.887147526760282196e-07,9.380877944913631207e-07,9.874608363066980217e-07,1.036833878122032923e-06,1.086206919937367824e-06,1.135579961752702725e-06,1.184953003568037626e-06,1.234326045383372527e-06,1.283699087198707428e-06,1.333072129014042329e-06,1.382445170829377230e-06,1.431818212644712132e-06,1.481191254460047033e-06,1.530564296275381934e-06,1.579937338090716835e-06,1.629310379906051736e-06,1.678683421721386637e-06,1.728056463536721538e-06,1.777429505352056439e-06,1.826802547167391340e-06,1.876175588982726241e-06,1.925548630798060931e-06,1.974921672613395620e-06,2.024294714428730309e-06,2.073667756244064999e-06,2.123040798059399688e-06,2.172413839874734377e-06,2.221786881690069067e-06,2.271159923505403756e-06,2.320532965320738445e-06,2.369906007136073135e-06,2.419279048951407824e-06,2.468652090766742513e-06,2.518025132582077203e-06,2.567398174397411892e-06,2.616771216212746581e-06,2.666144258028081271e-06,2.715517299843415960e-06,2.764890341658750649e-06,2.814263383474085339e-06,2.863636425289420028e-06,2.913009467104754717e-06,2.962382508920089407e-06,3.011755550735424096e-06,3.061128592550758785e-06,3.110501634366093475e-06 +0.000000000000000000e+00,5.308023185651869753e-08,1.061604637130373951e-07,1.592406955695560926e-07,2.123209274260747901e-07,2.654011592825934877e-07,3.184813911391121852e-07,3.715616229956308827e-07,4.246418548521495802e-07,4.777220867086682778e-07,5.308023185651869753e-07,5.838825504217056728e-07,6.369627822782243704e-07,6.900430141347430679e-07,7.431232459912617654e-07,7.962034778477804630e-07,8.492837097042991605e-07,9.023639415608178580e-07,9.554441734173365555e-07,1.008524405273855147e-06,1.061604637130373739e-06,1.114684868986892331e-06,1.167765100843410922e-06,1.220845332699929514e-06,1.273925564556448105e-06,1.327005796412966697e-06,1.380086028269485289e-06,1.433166260126003880e-06,1.486246491982522472e-06,1.539326723839041064e-06,1.592406955695559655e-06,1.645487187552078247e-06,1.698567419408596839e-06,1.751647651265115430e-06,1.804727883121634022e-06,1.857808114978152614e-06,1.910888346834670994e-06,1.963968578691189373e-06,2.017048810547707753e-06,2.070129042404226133e-06,2.123209274260744513e-06,2.176289506117262893e-06,2.229369737973781273e-06,2.282449969830299653e-06,2.335530201686818033e-06,2.388610433543336413e-06,2.441690665399854792e-06,2.494770897256373172e-06,2.547851129112891552e-06,2.600931360969409932e-06,2.654011592825928312e-06,2.707091824682446692e-06,2.760172056538965072e-06,2.813252288395483452e-06,2.866332520252001832e-06,2.919412752108520211e-06,2.972492983965038591e-06,3.025573215821556971e-06,3.078653447678075351e-06,3.131733679534593731e-06,3.184813911391112111e-06,3.237894143247630491e-06,3.290974375104148871e-06,3.344054606960667251e-06 +0.000000000000000000e+00,4.668937903408291878e-08,9.337875806816583755e-08,1.400681371022487629e-07,1.867575161363317016e-07,2.334468951704146402e-07,2.801362742044975788e-07,3.268256532385805175e-07,3.735150322726634561e-07,4.202044113067463947e-07,4.668937903408293334e-07,5.135831693749123249e-07,5.602725484089952636e-07,6.069619274430782022e-07,6.536513064771611408e-07,7.003406855112440794e-07,7.470300645453270181e-07,7.937194435794099567e-07,8.404088226134928953e-07,8.870982016475758340e-07,9.337875806816587726e-07,9.804769597157417112e-07,1.027166338749824650e-06,1.073855717783907588e-06,1.120545096817990527e-06,1.167234475852073466e-06,1.213923854886156404e-06,1.260613233920239343e-06,1.307302612954322282e-06,1.353991991988405220e-06,1.400681371022488159e-06,1.447370750056571098e-06,1.494060129090654036e-06,1.540749508124736975e-06,1.587438887158819913e-06,1.634128266192902852e-06,1.680817645226985791e-06,1.727507024261068729e-06,1.774196403295151668e-06,1.820885782329234607e-06,1.867575161363317545e-06,1.914264540397400484e-06,1.960953919431483422e-06,2.007643298465566361e-06,2.054332677499649300e-06,2.101022056533732238e-06,2.147711435567815177e-06,2.194400814601898116e-06,2.241090193635981054e-06,2.287779572670063993e-06,2.334468951704146931e-06,2.381158330738229870e-06,2.427847709772312809e-06,2.474537088806395747e-06,2.521226467840478686e-06,2.567915846874561625e-06,2.614605225908644563e-06,2.661294604942727502e-06,2.707983983976810441e-06,2.754673363010893379e-06,2.801362742044976318e-06,2.848052121079059256e-06,2.894741500113142195e-06,2.941430879147225134e-06 +0.000000000000000000e+00,5.056018720752018769e-08,1.011203744150403754e-07,1.516805616225605498e-07,2.022407488300807243e-07,2.528009360376008988e-07,3.033611232451210997e-07,3.539213104526413006e-07,4.044814976601615015e-07,4.550416848676817025e-07,5.056018720752019034e-07,5.561620592827221043e-07,6.067222464902423052e-07,6.572824336977625062e-07,7.078426209052827071e-07,7.584028081128029080e-07,8.089629953203231089e-07,8.595231825278433099e-07,9.100833697353635108e-07,9.606435569428838176e-07,1.011203744150404019e-06,1.061763931357924219e-06,1.112324118565444420e-06,1.162884305772964621e-06,1.213444492980484822e-06,1.264004680188005023e-06,1.314564867395525224e-06,1.365125054603045425e-06,1.415685241810565626e-06,1.466245429018085827e-06,1.516805616225606028e-06,1.567365803433126229e-06,1.617925990640646430e-06,1.668486177848166631e-06,1.719046365055686831e-06,1.769606552263207032e-06,1.820166739470727233e-06,1.870726926678247434e-06,1.921287113885767635e-06,1.971847301093287836e-06,2.022407488300808037e-06,2.072967675508328238e-06,2.123527862715848439e-06,2.174088049923368640e-06,2.224648237130888841e-06,2.275208424338409042e-06,2.325768611545929243e-06,2.376328798753449444e-06,2.426888985960969644e-06,2.477449173168489845e-06,2.528009360376010046e-06,2.578569547583530247e-06,2.629129734791050448e-06,2.679689921998570649e-06,2.730250109206090850e-06,2.780810296413611051e-06,2.831370483621131252e-06,2.881930670828651453e-06,2.932490858036171654e-06,2.983051045243691855e-06,3.033611232451212056e-06,3.084171419658732256e-06,3.134731606866252457e-06,3.185291794073772658e-06 +0.000000000000000000e+00,4.940904850368600267e-08,9.881809700737200534e-08,1.482271455110580080e-07,1.976361940147440107e-07,2.470452425184300398e-07,2.964542910221160690e-07,3.458633395258020981e-07,3.952723880294881272e-07,4.446814365331741564e-07,4.940904850368601855e-07,5.434995335405462146e-07,5.929085820442322438e-07,6.423176305479182729e-07,6.917266790516043021e-07,7.411357275552903312e-07,7.905447760589763603e-07,8.399538245626623895e-07,8.893628730663484186e-07,9.387719215700344478e-07,9.881809700737205828e-07,1.037590018577406718e-06,1.086999067081092853e-06,1.136408115584778988e-06,1.185817164088465123e-06,1.235226212592151258e-06,1.284635261095837393e-06,1.334044309599523528e-06,1.383453358103209663e-06,1.432862406606895798e-06,1.482271455110581933e-06,1.531680503614268068e-06,1.581089552117954203e-06,1.630498600621640338e-06,1.679907649125326473e-06,1.729316697629012608e-06,1.778725746132698743e-06,1.828134794636384878e-06,1.877543843140071013e-06,1.926952891643757148e-06,1.976361940147443283e-06,2.025770988651129418e-06,2.075180037154815553e-06,2.124589085658501688e-06,2.173998134162187823e-06,2.223407182665873958e-06,2.272816231169560093e-06,2.322225279673246228e-06,2.371634328176932363e-06,2.421043376680618498e-06,2.470452425184304633e-06,2.519861473687990768e-06,2.569270522191676903e-06,2.618679570695363038e-06,2.668088619199049173e-06,2.717497667702735308e-06,2.766906716206421443e-06,2.816315764710107578e-06,2.865724813213793713e-06,2.915133861717479848e-06,2.964542910221165983e-06,3.013951958724852118e-06,3.063361007228538254e-06,3.112770055732224389e-06 +0.000000000000000000e+00,4.659167500377352206e-08,9.318335000754704412e-08,1.397750250113205728e-07,1.863667000150941147e-07,2.329583750188676566e-07,2.795500500226411985e-07,3.261417250264147140e-07,3.727334000301882294e-07,4.193250750339617448e-07,4.659167500377352603e-07,5.125084250415087757e-07,5.591001000452822912e-07,6.056917750490558066e-07,6.522834500528293220e-07,6.988751250566028375e-07,7.454668000603763529e-07,7.920584750641498684e-07,8.386501500679233838e-07,8.852418250716968992e-07,9.318335000754704147e-07,9.784251750792439301e-07,1.025016850083017551e-06,1.071608525086791173e-06,1.118200200090564794e-06,1.164791875094338415e-06,1.211383550098112037e-06,1.257975225101885658e-06,1.304566900105659279e-06,1.351158575109432901e-06,1.397750250113206522e-06,1.444341925116980143e-06,1.490933600120753765e-06,1.537525275124527386e-06,1.584116950128301007e-06,1.630708625132074629e-06,1.677300300135848250e-06,1.723891975139621871e-06,1.770483650143395493e-06,1.817075325147169114e-06,1.863667000150942735e-06,1.910258675154716357e-06,1.956850350158489978e-06,2.003442025162263599e-06,2.050033700166037220e-06,2.096625375169810842e-06,2.143217050173584463e-06,2.189808725177358084e-06,2.236400400181131706e-06,2.282992075184905327e-06,2.329583750188678948e-06,2.376175425192452570e-06,2.422767100196226191e-06,2.469358775199999812e-06,2.515950450203773434e-06,2.562542125207547055e-06,2.609133800211320676e-06,2.655725475215094298e-06,2.702317150218867919e-06,2.748908825222641540e-06,2.795500500226415162e-06,2.842092175230188783e-06,2.888683850233962404e-06,2.935275525237736026e-06 +0.000000000000000000e+00,5.346633500048187046e-08,1.069326700009637409e-07,1.603990050014456180e-07,2.138653400019275083e-07,2.673316750024093722e-07,3.207980100028912360e-07,3.742643450033730999e-07,4.277306800038549637e-07,4.811970150043368275e-07,5.346633500048187443e-07,5.881296850053006611e-07,6.415960200057825779e-07,6.950623550062644947e-07,7.485286900067464115e-07,8.019950250072283283e-07,8.554613600077102450e-07,9.089276950081921618e-07,9.623940300086740786e-07,1.015860365009155995e-06,1.069326700009637912e-06,1.122793035010119829e-06,1.176259370010601746e-06,1.229725705011083663e-06,1.283192040011565579e-06,1.336658375012047496e-06,1.390124710012529413e-06,1.443591045013011330e-06,1.497057380013493246e-06,1.550523715013975163e-06,1.603990050014457080e-06,1.657456385014938997e-06,1.710922720015420914e-06,1.764389055015902830e-06,1.817855390016384747e-06,1.871321725016866664e-06,1.924788060017348581e-06,1.978254395017830498e-06,2.031720730018312414e-06,2.085187065018794331e-06,2.138653400019276248e-06,2.192119735019758165e-06,2.245586070020240081e-06,2.299052405020721998e-06,2.352518740021203915e-06,2.405985075021685832e-06,2.459451410022167749e-06,2.512917745022649665e-06,2.566384080023131582e-06,2.619850415023613499e-06,2.673316750024095416e-06,2.726783085024577333e-06,2.780249420025059249e-06,2.833715755025541166e-06,2.887182090026023083e-06,2.940648425026505000e-06,2.994114760026986916e-06,3.047581095027468833e-06,3.101047430027950750e-06,3.154513765028432667e-06,3.207980100028914584e-06,3.261446435029396500e-06,3.314912770029878417e-06,3.368379105030360334e-06 +0.000000000000000000e+00,4.951580765588681335e-08,9.903161531177362671e-08,1.485474229676604533e-07,1.980632306235472799e-07,2.475790382794341065e-07,2.970948459353209066e-07,3.466106535912077067e-07,3.961264612470945068e-07,4.456422689029813070e-07,4.951580765588681071e-07,5.446738842147549072e-07,5.941896918706417073e-07,6.437054995265285074e-07,6.932213071824153075e-07,7.427371148383021077e-07,7.922529224941889078e-07,8.417687301500757079e-07,8.912845378059625080e-07,9.408003454618493081e-07,9.903161531177360024e-07,1.039831960773622803e-06,1.089347768429509603e-06,1.138863576085396403e-06,1.188379383741283203e-06,1.237895191397170003e-06,1.287410999053056803e-06,1.336926806708943603e-06,1.386442614364830403e-06,1.435958422020717203e-06,1.485474229676604004e-06,1.534990037332490804e-06,1.584505844988377604e-06,1.634021652644264404e-06,1.683537460300151204e-06,1.733053267956038004e-06,1.782569075611924804e-06,1.832084883267811604e-06,1.881600690923698405e-06,1.931116498579585205e-06,1.980632306235472005e-06,2.030148113891358805e-06,2.079663921547245605e-06,2.129179729203132405e-06,2.178695536859019205e-06,2.228211344514906005e-06,2.277727152170792805e-06,2.327242959826679606e-06,2.376758767482566406e-06,2.426274575138453206e-06,2.475790382794340006e-06,2.525306190450226806e-06,2.574821998106113606e-06,2.624337805762000406e-06,2.673853613417887206e-06,2.723369421073774007e-06,2.772885228729660807e-06,2.822401036385547607e-06,2.871916844041434407e-06,2.921432651697321207e-06,2.970948459353208007e-06,3.020464267009094807e-06,3.069980074664981607e-06,3.119495882320868408e-06 +0.000000000000000000e+00,4.940904850368958271e-08,9.881809700737916541e-08,1.482271455110687547e-07,1.976361940147583573e-07,2.470452425184479334e-07,2.964542910221375095e-07,3.458633395258270856e-07,3.952723880295166617e-07,4.446814365332062377e-07,4.940904850368958668e-07,5.434995335405854958e-07,5.929085820442751248e-07,6.423176305479647539e-07,6.917266790516543829e-07,7.411357275553440119e-07,7.905447760590336409e-07,8.399538245627232700e-07,8.893628730664128990e-07,9.387719215701025280e-07,9.881809700737921571e-07,1.037590018577481680e-06,1.086999067081171203e-06,1.136408115584860727e-06,1.185817164088550250e-06,1.235226212592239773e-06,1.284635261095929296e-06,1.334044309599618819e-06,1.383453358103308342e-06,1.432862406606997865e-06,1.482271455110687389e-06,1.531680503614376912e-06,1.581089552118066435e-06,1.630498600621755958e-06,1.679907649125445481e-06,1.729316697629135004e-06,1.778725746132824527e-06,1.828134794636514051e-06,1.877543843140203574e-06,1.926952891643893097e-06,1.976361940147582620e-06,2.025770988651272143e-06,2.075180037154961666e-06,2.124589085658651189e-06,2.173998134162340713e-06,2.223407182666030236e-06,2.272816231169719759e-06,2.322225279673409282e-06,2.371634328177098805e-06,2.421043376680788328e-06,2.470452425184477852e-06,2.519861473688167375e-06,2.569270522191856898e-06,2.618679570695546421e-06,2.668088619199235944e-06,2.717497667702925467e-06,2.766906716206614990e-06,2.816315764710304514e-06,2.865724813213994037e-06,2.915133861717683560e-06,2.964542910221373083e-06,3.013951958725062606e-06,3.063361007228752129e-06,3.112770055732441652e-06 +0.000000000000000000e+00,5.308023185652552012e-08,1.061604637130510402e-07,1.592406955695765537e-07,2.123209274261020540e-07,2.654011592826275807e-07,3.184813911391531075e-07,3.715616229956786342e-07,4.246418548522041609e-07,4.777220867087296877e-07,5.308023185652551615e-07,5.838825504217806353e-07,6.369627822783061090e-07,6.900430141348315828e-07,7.431232459913570566e-07,7.962034778478825304e-07,8.492837097044080042e-07,9.023639415609334780e-07,9.554441734174589518e-07,1.008524405273984320e-06,1.061604637130509688e-06,1.114684868987035056e-06,1.167765100843560423e-06,1.220845332700085791e-06,1.273925564556611159e-06,1.327005796413136527e-06,1.380086028269661895e-06,1.433166260126187263e-06,1.486246491982712631e-06,1.539326723839237999e-06,1.592406955695763367e-06,1.645487187552288735e-06,1.698567419408814103e-06,1.751647651265339471e-06,1.804727883121864838e-06,1.857808114978390206e-06,1.910888346834915786e-06,1.963968578691441366e-06,2.017048810547966945e-06,2.070129042404492525e-06,2.123209274261018105e-06,2.176289506117543684e-06,2.229369737974069264e-06,2.282449969830594844e-06,2.335530201687120423e-06,2.388610433543646003e-06,2.441690665400171583e-06,2.494770897256697162e-06,2.547851129113222742e-06,2.600931360969748322e-06,2.654011592826273901e-06,2.707091824682799481e-06,2.760172056539325061e-06,2.813252288395850640e-06,2.866332520252376220e-06,2.919412752108901800e-06,2.972492983965427379e-06,3.025573215821952959e-06,3.078653447678478539e-06,3.131733679535004119e-06,3.184813911391529698e-06,3.237894143248055278e-06,3.290974375104580858e-06,3.344054606961106437e-06 +0.000000000000000000e+00,4.668937903409004577e-08,9.337875806818009153e-08,1.400681371022701505e-07,1.867575161363602095e-07,2.334468951704502685e-07,2.801362742045403011e-07,3.268256532386303336e-07,3.735150322727203661e-07,4.202044113068103987e-07,4.668937903409004312e-07,5.135831693749904637e-07,5.602725484090804962e-07,6.069619274431705288e-07,6.536513064772605613e-07,7.003406855113505938e-07,7.470300645454406264e-07,7.937194435795306589e-07,8.404088226136206914e-07,8.870982016477107240e-07,9.337875806818007565e-07,9.804769597158907890e-07,1.027166338749980927e-06,1.073855717784071066e-06,1.120545096818161204e-06,1.167234475852251343e-06,1.213923854886341481e-06,1.260613233920431619e-06,1.307302612954521758e-06,1.353991991988611896e-06,1.400681371022702035e-06,1.447370750056792173e-06,1.494060129090882312e-06,1.540749508124972450e-06,1.587438887159062588e-06,1.634128266193152727e-06,1.680817645227242865e-06,1.727507024261333004e-06,1.774196403295423142e-06,1.820885782329513280e-06,1.867575161363603419e-06,1.914264540397693557e-06,1.960953919431783696e-06,2.007643298465873834e-06,2.054332677499963972e-06,2.101022056534054111e-06,2.147711435568144249e-06,2.194400814602234388e-06,2.241090193636324526e-06,2.287779572670414664e-06,2.334468951704504803e-06,2.381158330738594941e-06,2.427847709772685080e-06,2.474537088806775218e-06,2.521226467840865357e-06,2.567915846874955495e-06,2.614605225909045633e-06,2.661294604943135772e-06,2.707983983977225910e-06,2.754673363011316049e-06,2.801362742045406187e-06,2.848052121079496325e-06,2.894741500113586464e-06,2.941430879147676602e-06 +0.000000000000000000e+00,5.056018720752633530e-08,1.011203744150526706e-07,1.516805616225789993e-07,2.022407488301053147e-07,2.528009360376316037e-07,3.033611232451578927e-07,3.539213104526841816e-07,4.044814976602104706e-07,4.550416848677367596e-07,5.056018720752629956e-07,5.561620592827892317e-07,6.067222464903154677e-07,6.572824336978417037e-07,7.078426209053679398e-07,7.584028081128941758e-07,8.089629953204204118e-07,8.595231825279466479e-07,9.100833697354728839e-07,9.606435569429990141e-07,1.011203744150525144e-06,1.061763931358051274e-06,1.112324118565577405e-06,1.162884305773103535e-06,1.213444492980629665e-06,1.264004680188155795e-06,1.314564867395681925e-06,1.365125054603208055e-06,1.415685241810734185e-06,1.466245429018260316e-06,1.516805616225786446e-06,1.567365803433312576e-06,1.617925990640838706e-06,1.668486177848364836e-06,1.719046365055890966e-06,1.769606552263417097e-06,1.820166739470943227e-06,1.870726926678469357e-06,1.921287113885995487e-06,1.971847301093521617e-06,2.022407488301047747e-06,2.072967675508573878e-06,2.123527862716100008e-06,2.174088049923626138e-06,2.224648237131152268e-06,2.275208424338678398e-06,2.325768611546204528e-06,2.376328798753730658e-06,2.426888985961256789e-06,2.477449173168782919e-06,2.528009360376309049e-06,2.578569547583835179e-06,2.629129734791361309e-06,2.679689921998887439e-06,2.730250109206413570e-06,2.780810296413939700e-06,2.831370483621465830e-06,2.881930670828991960e-06,2.932490858036518090e-06,2.983051045244044220e-06,3.033611232451570351e-06,3.084171419659096481e-06,3.134731606866622611e-06,3.185291794074148741e-06 +0.000000000000000000e+00,5.113272748986591534e-08,1.022654549797318307e-07,1.533981824695977460e-07,2.045309099594636614e-07,2.556636374493295502e-07,3.067963649391954391e-07,3.579290924290613280e-07,4.090618199189272168e-07,4.601945474087931057e-07,5.113272748986589946e-07,5.624600023885248835e-07,6.135927298783907723e-07,6.647254573682566612e-07,7.158581848581225501e-07,7.669909123479884389e-07,8.181236398378543278e-07,8.692563673277202167e-07,9.203890948175861055e-07,9.715218223074518885e-07,1.022654549797317777e-06,1.073787277287183666e-06,1.124920004777049555e-06,1.176052732266915444e-06,1.227185459756781333e-06,1.278318187246647222e-06,1.329450914736513111e-06,1.380583642226378999e-06,1.431716369716244888e-06,1.482849097206110777e-06,1.533981824695976666e-06,1.585114552185842555e-06,1.636247279675708444e-06,1.687380007165574333e-06,1.738512734655440222e-06,1.789645462145306110e-06,1.840778189635171999e-06,1.891910917125037888e-06,1.943043644614903777e-06,1.994176372104769666e-06,2.045309099594635555e-06,2.096441827084501444e-06,2.147574554574367333e-06,2.198707282064233221e-06,2.249840009554099110e-06,2.300972737043964999e-06,2.352105464533830888e-06,2.403238192023696777e-06,2.454370919513562666e-06,2.505503647003428555e-06,2.556636374493294444e-06,2.607769101983160332e-06,2.658901829473026221e-06,2.710034556962892110e-06,2.761167284452757999e-06,2.812300011942623888e-06,2.863432739432489777e-06,2.914565466922355666e-06,2.965698194412221554e-06,3.016830921902087443e-06,3.067963649391953332e-06,3.119096376881819221e-06,3.170229104371685110e-06,3.221361831861550999e-06 +0.000000000000000000e+00,5.263807375102935094e-08,1.052761475020587019e-07,1.579142212530880462e-07,2.105522950041173773e-07,2.631903687551466819e-07,3.158284425061759865e-07,3.684665162572052911e-07,4.211045900082345957e-07,4.737426637592639003e-07,5.263807375102931520e-07,5.790188112613224037e-07,6.316568850123516554e-07,6.842949587633809070e-07,7.369330325144101587e-07,7.895711062654394104e-07,8.422091800164686620e-07,8.948472537674979137e-07,9.474853275185271654e-07,1.000123401269556417e-06,1.052761475020585669e-06,1.105399548771614920e-06,1.158037622522644172e-06,1.210675696273673424e-06,1.263313770024702675e-06,1.315951843775731927e-06,1.368589917526761179e-06,1.421227991277790430e-06,1.473866065028819682e-06,1.526504138779848934e-06,1.579142212530878185e-06,1.631780286281907437e-06,1.684418360032936689e-06,1.737056433783965940e-06,1.789694507534995192e-06,1.842332581286024444e-06,1.894970655037053696e-06,1.947608728788082947e-06,2.000246802539111987e-06,2.052884876290141027e-06,2.105522950041170067e-06,2.158161023792199107e-06,2.210799097543228147e-06,2.263437171294257187e-06,2.316075245045286227e-06,2.368713318796315267e-06,2.421351392547344306e-06,2.473989466298373346e-06,2.526627540049402386e-06,2.579265613800431426e-06,2.631903687551460466e-06,2.684541761302489506e-06,2.737179835053518546e-06,2.789817908804547586e-06,2.842455982555576626e-06,2.895094056306605666e-06,2.947732130057634706e-06,3.000370203808663745e-06,3.053008277559692785e-06,3.105646351310721825e-06,3.158284425061750865e-06,3.210922498812779905e-06,3.263560572563808945e-06,3.316198646314837985e-06 +0.000000000000000000e+00,4.873998455824082248e-08,9.747996911648164496e-08,1.462199536747224741e-07,1.949599382329633164e-07,2.436999227912041852e-07,2.924399073494450540e-07,3.411798919076859228e-07,3.899198764659267916e-07,4.386598610241676604e-07,4.873998455824085821e-07,5.361398301406495039e-07,5.848798146988904256e-07,6.336197992571313474e-07,6.823597838153722691e-07,7.310997683736131908e-07,7.798397529318541126e-07,8.285797374900950343e-07,8.773197220483359561e-07,9.260597066065768778e-07,9.747996911648177996e-07,1.023539675723058721e-06,1.072279660281299643e-06,1.121019644839540565e-06,1.169759629397781487e-06,1.218499613956022408e-06,1.267239598514263330e-06,1.315979583072504252e-06,1.364719567630745173e-06,1.413459552188986095e-06,1.462199536747227017e-06,1.510939521305467939e-06,1.559679505863708860e-06,1.608419490421949782e-06,1.657159474980190704e-06,1.705899459538431626e-06,1.754639444096672547e-06,1.803379428654913469e-06,1.852119413213154391e-06,1.900859397771395313e-06,1.949599382329636023e-06,1.998339366887876733e-06,2.047079351446117443e-06,2.095819336004358153e-06,2.144559320562598863e-06,2.193299305120839573e-06,2.242039289679080283e-06,2.290779274237320993e-06,2.339519258795561702e-06,2.388259243353802412e-06,2.436999227912043122e-06,2.485739212470283832e-06,2.534479197028524542e-06,2.583219181586765252e-06,2.631959166145005962e-06,2.680699150703246672e-06,2.729439135261487382e-06,2.778179119819728092e-06,2.826919104377968802e-06,2.875659088936209512e-06,2.924399073494450222e-06,2.973139058052690932e-06,3.021879042610931642e-06,3.070619027169172352e-06 +0.000000000000000000e+00,5.113272748987238720e-08,1.022654549797447744e-07,1.533981824696171484e-07,2.045309099594895223e-07,2.556636374493618963e-07,3.067963649392342967e-07,3.579290924291066972e-07,4.090618199189790976e-07,4.601945474088514980e-07,5.113272748987238985e-07,5.624600023885963519e-07,6.135927298784688052e-07,6.647254573683412586e-07,7.158581848582137120e-07,7.669909123480861654e-07,8.181236398379586187e-07,8.692563673278310721e-07,9.203890948177035255e-07,9.715218223075759789e-07,1.022654549797448432e-06,1.073787277287320886e-06,1.124920004777193339e-06,1.176052732267065792e-06,1.227185459756938246e-06,1.278318187246810699e-06,1.329450914736683152e-06,1.380583642226555606e-06,1.431716369716428059e-06,1.482849097206300513e-06,1.533981824696172966e-06,1.585114552186045419e-06,1.636247279675917873e-06,1.687380007165790326e-06,1.738512734655662779e-06,1.789645462145535233e-06,1.840778189635407686e-06,1.891910917125280140e-06,1.943043644615152805e-06,1.994176372105025470e-06,2.045309099594898135e-06,2.096441827084770800e-06,2.147574554574643465e-06,2.198707282064516130e-06,2.249840009554388796e-06,2.300972737044261461e-06,2.352105464534134126e-06,2.403238192024006791e-06,2.454370919513879456e-06,2.505503647003752121e-06,2.556636374493624786e-06,2.607769101983497451e-06,2.658901829473370117e-06,2.710034556963242782e-06,2.761167284453115447e-06,2.812300011942988112e-06,2.863432739432860777e-06,2.914565466922733442e-06,2.965698194412606107e-06,3.016830921902478773e-06,3.067963649392351438e-06,3.119096376882224103e-06,3.170229104372096768e-06,3.221361831861969433e-06 +0.000000000000000000e+00,5.263807375103541913e-08,1.052761475020708383e-07,1.579142212531062574e-07,2.105522950041416765e-07,2.631903687551770692e-07,3.158284425062124619e-07,3.684665162572478545e-07,4.211045900082832472e-07,4.737426637593186398e-07,5.263807375103540325e-07,5.790188112613894252e-07,6.316568850124248178e-07,6.842949587634602105e-07,7.369330325144956032e-07,7.895711062655309958e-07,8.422091800165663885e-07,8.948472537676017811e-07,9.474853275186371738e-07,1.000123401269672461e-06,1.052761475020707853e-06,1.105399548771743246e-06,1.158037622522778639e-06,1.210675696273814031e-06,1.263313770024849424e-06,1.315951843775884817e-06,1.368589917526920209e-06,1.421227991277955602e-06,1.473866065028990995e-06,1.526504138780026387e-06,1.579142212531061780e-06,1.631780286282097173e-06,1.684418360033132565e-06,1.737056433784167958e-06,1.789694507535203351e-06,1.842332581286238743e-06,1.894970655037274136e-06,1.947608728788309529e-06,2.000246802539344921e-06,2.052884876290380314e-06,2.105522950041415706e-06,2.158161023792451099e-06,2.210799097543486492e-06,2.263437171294521884e-06,2.316075245045557277e-06,2.368713318796592670e-06,2.421351392547628062e-06,2.473989466298663455e-06,2.526627540049698848e-06,2.579265613800734240e-06,2.631903687551769633e-06,2.684541761302805026e-06,2.737179835053840418e-06,2.789817908804875811e-06,2.842455982555911204e-06,2.895094056306946596e-06,2.947732130057981989e-06,3.000370203809017382e-06,3.053008277560052774e-06,3.105646351311088167e-06,3.158284425062123560e-06,3.210922498813158952e-06,3.263560572564194345e-06,3.316198646315229738e-06 +0.000000000000000000e+00,4.873998455824693038e-08,9.747996911649386076e-08,1.462199536747407911e-07,1.949599382329877215e-07,2.436999227912346784e-07,2.924399073494816352e-07,3.411798919077285921e-07,3.899198764659755489e-07,4.386598610242225058e-07,4.873998455824694626e-07,5.361398301407164195e-07,5.848798146989633763e-07,6.336197992572103332e-07,6.823597838154572900e-07,7.310997683737042469e-07,7.798397529319512037e-07,8.285797374901981606e-07,8.773197220484451174e-07,9.260597066066920743e-07,9.747996911649391370e-07,1.023539675723186200e-06,1.072279660281433262e-06,1.121019644839680325e-06,1.169759629397927388e-06,1.218499613956174451e-06,1.267239598514421513e-06,1.315979583072668576e-06,1.364719567630915639e-06,1.413459552189162702e-06,1.462199536747409764e-06,1.510939521305656827e-06,1.559679505863903890e-06,1.608419490422150953e-06,1.657159474980398015e-06,1.705899459538645078e-06,1.754639444096892141e-06,1.803379428655139203e-06,1.852119413213386266e-06,1.900859397771633329e-06,1.949599382329880392e-06,1.998339366888127454e-06,2.047079351446374517e-06,2.095819336004621580e-06,2.144559320562868643e-06,2.193299305121115705e-06,2.242039289679362768e-06,2.290779274237609831e-06,2.339519258795856893e-06,2.388259243354103956e-06,2.436999227912351019e-06,2.485739212470598082e-06,2.534479197028845144e-06,2.583219181587092207e-06,2.631959166145339270e-06,2.680699150703586333e-06,2.729439135261833395e-06,2.778179119820080458e-06,2.826919104378327521e-06,2.875659088936574584e-06,2.924399073494821646e-06,2.973139058053068709e-06,3.021879042611315772e-06,3.070619027169562834e-06 +0.000000000000000000e+00,4.728537232264903975e-08,9.457074464529807951e-08,1.418561169679471325e-07,1.891414892905961855e-07,2.364268616132452385e-07,2.837122339358942650e-07,3.309976062585432915e-07,3.782829785811923180e-07,4.255683509038413445e-07,4.728537232264903711e-07,5.201390955491394505e-07,5.674244678717885300e-07,6.147098401944376094e-07,6.619952125170866889e-07,7.092805848397357684e-07,7.565659571623848478e-07,8.038513294850339273e-07,8.511367018076830067e-07,8.984220741303320862e-07,9.457074464529811656e-07,9.929928187756302451e-07,1.040278191098279325e-06,1.087563563420928404e-06,1.134848935743577483e-06,1.182134308066226563e-06,1.229419680388875642e-06,1.276705052711524722e-06,1.323990425034173801e-06,1.371275797356822881e-06,1.418561169679471960e-06,1.465846542002121040e-06,1.513131914324770119e-06,1.560417286647419199e-06,1.607702658970068278e-06,1.654988031292717358e-06,1.702273403615366437e-06,1.749558775938015516e-06,1.796844148260664596e-06,1.844129520583313675e-06,1.891414892905962755e-06,1.938700265228611834e-06,1.985985637551260914e-06,2.033271009873909993e-06,2.080556382196559073e-06,2.127841754519208152e-06,2.175127126841857232e-06,2.222412499164506311e-06,2.269697871487155390e-06,2.316983243809804470e-06,2.364268616132453549e-06,2.411553988455102629e-06,2.458839360777751708e-06,2.506124733100400788e-06,2.553410105423049867e-06,2.600695477745698947e-06,2.647980850068348026e-06,2.695266222390997106e-06,2.742551594713646185e-06,2.789836967036295265e-06,2.837122339358944344e-06,2.884407711681593423e-06,2.931693084004242503e-06,2.978978456326891582e-06 +0.000000000000000000e+00,4.931166278235144997e-08,9.862332556470289994e-08,1.479349883470543499e-07,1.972466511294057999e-07,2.465583139117572498e-07,2.958699766941086998e-07,3.451816394764601498e-07,3.944933022588115998e-07,4.438049650411630497e-07,4.931166278235144997e-07,5.424282906058659497e-07,5.917399533882173996e-07,6.410516161705688496e-07,6.903632789529202996e-07,7.396749417352717495e-07,7.889866045176231995e-07,8.382982672999746495e-07,8.876099300823260995e-07,9.369215928646775494e-07,9.862332556470289994e-07,1.035544918429380449e-06,1.084856581211731899e-06,1.134168243994083349e-06,1.183479906776434799e-06,1.232791569558786249e-06,1.282103232341137699e-06,1.331414895123489149e-06,1.380726557905840599e-06,1.430038220688192049e-06,1.479349883470543499e-06,1.528661546252894949e-06,1.577973209035246399e-06,1.627284871817597849e-06,1.676596534599949299e-06,1.725908197382300749e-06,1.775219860164652199e-06,1.824531522947003649e-06,1.873843185729355099e-06,1.923154848511706337e-06,1.972466511294057575e-06,2.021778174076408813e-06,2.071089836858760052e-06,2.120401499641111290e-06,2.169713162423462528e-06,2.219024825205813766e-06,2.268336487988165005e-06,2.317648150770516243e-06,2.366959813552867481e-06,2.416271476335218719e-06,2.465583139117569957e-06,2.514894801899921196e-06,2.564206464682272434e-06,2.613518127464623672e-06,2.662829790246974910e-06,2.712141453029326148e-06,2.761453115811677387e-06,2.810764778594028625e-06,2.860076441376379863e-06,2.909388104158731101e-06,2.958699766941082340e-06,3.008011429723433578e-06,3.057323092505784816e-06,3.106634755288136054e-06 +0.000000000000000000e+00,4.528409519537893991e-08,9.056819039075787981e-08,1.358522855861368131e-07,1.811363807815157332e-07,2.264204759768946532e-07,2.717045711722735733e-07,3.169886663676524933e-07,3.622727615630314134e-07,4.075568567584103334e-07,4.528409519537892535e-07,4.981250471491681735e-07,5.434091423445470407e-07,5.886932375399259078e-07,6.339773327353047749e-07,6.792614279306836420e-07,7.245455231260625091e-07,7.698296183214413762e-07,8.151137135168202434e-07,8.603978087121991105e-07,9.056819039075779776e-07,9.509659991029568447e-07,9.962500942983357118e-07,1.041534189493714685e-06,1.086818284689093658e-06,1.132102379884472631e-06,1.177386475079851604e-06,1.222670570275230577e-06,1.267954665470609550e-06,1.313238760665988523e-06,1.358522855861367496e-06,1.403806951056746469e-06,1.449091046252125442e-06,1.494375141447504415e-06,1.539659236642883388e-06,1.584943331838262361e-06,1.630227427033641334e-06,1.675511522229020307e-06,1.720795617424399280e-06,1.766079712619778253e-06,1.811363807815157226e-06,1.856647903010536199e-06,1.901931998205915172e-06,1.947216093401294145e-06,1.992500188596673118e-06,2.037784283792052091e-06,2.083068378987431064e-06,2.128352474182810037e-06,2.173636569378189010e-06,2.218920664573567983e-06,2.264204759768946956e-06,2.309488854964325929e-06,2.354772950159704902e-06,2.400057045355083875e-06,2.445341140550462848e-06,2.490625235745841821e-06,2.535909330941220794e-06,2.581193426136599767e-06,2.626477521331978740e-06,2.671761616527357713e-06,2.717045711722736686e-06,2.762329806918115659e-06,2.807613902113494632e-06,2.852897997308873605e-06 +0.000000000000000000e+00,4.728537232265550500e-08,9.457074464531100999e-08,1.418561169679665084e-07,1.891414892906219935e-07,2.364268616132774787e-07,2.837122339359329638e-07,3.309976062585884490e-07,3.782829785812439341e-07,4.255683509038994192e-07,4.728537232265549044e-07,5.201390955492103895e-07,5.674244678718658217e-07,6.147098401945212539e-07,6.619952125171766861e-07,7.092805848398321184e-07,7.565659571624875506e-07,8.038513294851429828e-07,8.511367018077984150e-07,8.984220741304538472e-07,9.457074464531092794e-07,9.929928187757647116e-07,1.040278191098420144e-06,1.087563563421075576e-06,1.134848935743731008e-06,1.182134308066386440e-06,1.229419680389041873e-06,1.276705052711697305e-06,1.323990425034352737e-06,1.371275797357008169e-06,1.418561169679663601e-06,1.465846542002319034e-06,1.513131914324974466e-06,1.560417286647629898e-06,1.607702658970285330e-06,1.654988031292940762e-06,1.702273403615596195e-06,1.749558775938251627e-06,1.796844148260907059e-06,1.844129520583562491e-06,1.891414892906217923e-06,1.938700265228873567e-06,1.985985637551529000e-06,2.033271009874184432e-06,2.080556382196839864e-06,2.127841754519495296e-06,2.175127126842150728e-06,2.222412499164806161e-06,2.269697871487461593e-06,2.316983243810117025e-06,2.364268616132772457e-06,2.411553988455427890e-06,2.458839360778083322e-06,2.506124733100738754e-06,2.553410105423394186e-06,2.600695477746049618e-06,2.647980850068705051e-06,2.695266222391360483e-06,2.742551594714015915e-06,2.789836967036671347e-06,2.837122339359326779e-06,2.884407711681982212e-06,2.931693084004637644e-06,2.978978456327293076e-06 +0.000000000000000000e+00,4.931166278235782919e-08,9.862332556471565837e-08,1.479349883470734876e-07,1.972466511294313167e-07,2.465583139117891195e-07,2.958699766941469222e-07,3.451816394765047249e-07,3.944933022588625276e-07,4.438049650412203303e-07,4.931166278235781330e-07,5.424282906059359358e-07,5.917399533882937385e-07,6.410516161706515412e-07,6.903632789530093439e-07,7.396749417353671466e-07,7.889866045177249494e-07,8.382982673000827521e-07,8.876099300824405548e-07,9.369215928647983575e-07,9.862332556471560543e-07,1.035544918429513645e-06,1.084856581211871236e-06,1.134168243994228827e-06,1.183479906776586418e-06,1.232791569558944009e-06,1.282103232341301600e-06,1.331414895123659191e-06,1.380726557906016782e-06,1.430038220688374373e-06,1.479349883470731964e-06,1.528661546253089555e-06,1.577973209035447146e-06,1.627284871817804737e-06,1.676596534600162328e-06,1.725908197382519919e-06,1.775219860164877510e-06,1.824531522947235101e-06,1.873843185729592692e-06,1.923154848511950283e-06,1.972466511294307874e-06,2.021778174076665464e-06,2.071089836859023055e-06,2.120401499641380646e-06,2.169713162423738237e-06,2.219024825206095828e-06,2.268336487988453419e-06,2.317648150770811010e-06,2.366959813553168601e-06,2.416271476335526192e-06,2.465583139117883783e-06,2.514894801900241374e-06,2.564206464682598965e-06,2.613518127464956556e-06,2.662829790247314147e-06,2.712141453029671738e-06,2.761453115812029329e-06,2.810764778594386920e-06,2.860076441376744511e-06,2.909388104159102102e-06,2.958699766941459693e-06,3.008011429723817284e-06,3.057323092506174875e-06,3.106634755288532466e-06 +0.000000000000000000e+00,4.528409519538517354e-08,9.056819039077034708e-08,1.358522855861555272e-07,1.811363807815407206e-07,2.264204759769259140e-07,2.717045711723111074e-07,3.169886663676963273e-07,3.622727615630815471e-07,4.075568567584667670e-07,4.528409519538519869e-07,4.981250471492372067e-07,5.434091423446224266e-07,5.886932375400076465e-07,6.339773327353928663e-07,6.792614279307780862e-07,7.245455231261633060e-07,7.698296183215485259e-07,8.151137135169337458e-07,8.603978087123189656e-07,9.056819039077041855e-07,9.509659991030894054e-07,9.962500942984746252e-07,1.041534189493859951e-06,1.086818284689245277e-06,1.132102379884630602e-06,1.177386475080015928e-06,1.222670570275401254e-06,1.267954665470786580e-06,1.313238760666171905e-06,1.358522855861557231e-06,1.403806951056942557e-06,1.449091046252327883e-06,1.494375141447713208e-06,1.539659236643098534e-06,1.584943331838483860e-06,1.630227427033869186e-06,1.675511522229254511e-06,1.720795617424639837e-06,1.766079712620025163e-06,1.811363807815410489e-06,1.856647903010795814e-06,1.901931998206181140e-06,1.947216093401566466e-06,1.992500188596951792e-06,2.037784283792337117e-06,2.083068378987722443e-06,2.128352474183107769e-06,2.173636569378493094e-06,2.218920664573878420e-06,2.264204759769263746e-06,2.309488854964649072e-06,2.354772950160034397e-06,2.400057045355419723e-06,2.445341140550805049e-06,2.490625235746190375e-06,2.535909330941575700e-06,2.581193426136961026e-06,2.626477521332346352e-06,2.671761616527731678e-06,2.717045711723117003e-06,2.762329806918502329e-06,2.807613902113887655e-06,2.852897997309272981e-06 +0.000000000000000000e+00,4.297545762934546271e-08,8.595091525869092543e-08,1.289263728880363815e-07,1.719018305173818244e-07,2.148772881467272672e-07,2.578527457760727101e-07,3.008282034054181530e-07,3.438036610347635958e-07,3.867791186641090387e-07,4.297545762934544815e-07,4.727300339227999244e-07,5.157054915521453143e-07,5.586809491814906513e-07,6.016564068108359883e-07,6.446318644401813253e-07,6.876073220695266623e-07,7.305827796988719992e-07,7.735582373282173362e-07,8.165336949575626732e-07,8.595091525869080102e-07,9.024846102162533472e-07,9.454600678455986842e-07,9.884355254749440211e-07,1.031410983104289358e-06,1.074386440733634695e-06,1.117361898362980032e-06,1.160337355992325369e-06,1.203312813621670706e-06,1.246288271251016043e-06,1.289263728880361380e-06,1.332239186509706717e-06,1.375214644139052054e-06,1.418190101768397391e-06,1.461165559397742728e-06,1.504141017027088065e-06,1.547116474656433402e-06,1.590091932285778739e-06,1.633067389915124076e-06,1.676042847544469413e-06,1.719018305173814750e-06,1.761993762803160087e-06,1.804969220432505424e-06,1.847944678061850761e-06,1.890920135691196098e-06,1.933895593320541646e-06,1.976871050949887195e-06,2.019846508579232744e-06,2.062821966208578293e-06,2.105797423837923841e-06,2.148772881467269390e-06,2.191748339096614939e-06,2.234723796725960488e-06,2.277699254355306036e-06,2.320674711984651585e-06,2.363650169613997134e-06,2.406625627243342683e-06,2.449601084872688231e-06,2.492576542502033780e-06,2.535552000131379329e-06,2.578527457760724878e-06,2.621502915390070426e-06,2.664478373019415975e-06,2.707453830648761524e-06 +0.000000000000000000e+00,4.516111564282688611e-08,9.032223128565377222e-08,1.354833469284806517e-07,1.806444625713075180e-07,2.258055782141343842e-07,2.709666938569612505e-07,3.161278094997880903e-07,3.612889251426149300e-07,4.064500407854417698e-07,4.516111564282686096e-07,4.967722720710954494e-07,5.419333877139222892e-07,5.870945033567491290e-07,6.322556189995759688e-07,6.774167346424028086e-07,7.225778502852296483e-07,7.677389659280564881e-07,8.129000815708833279e-07,8.580611972137101677e-07,9.032223128565370075e-07,9.483834284993638473e-07,9.935445441421906871e-07,1.038705659785017633e-06,1.083866775427844578e-06,1.129027891070671524e-06,1.174189006713498470e-06,1.219350122356325415e-06,1.264511237999152361e-06,1.309672353641979307e-06,1.354833469284806252e-06,1.399994584927633198e-06,1.445155700570460144e-06,1.490316816213287089e-06,1.535477931856114035e-06,1.580639047498940981e-06,1.625800163141767926e-06,1.670961278784594872e-06,1.716122394427421818e-06,1.761283510070248763e-06,1.806444625713075709e-06,1.851605741355902655e-06,1.896766856998729600e-06,1.941927972641556546e-06,1.987089088284383492e-06,2.032250203927210437e-06,2.077411319570037383e-06,2.122572435212864329e-06,2.167733550855691274e-06,2.212894666498518220e-06,2.258055782141345166e-06,2.303216897784172111e-06,2.348378013426999057e-06,2.393539129069826003e-06,2.438700244712652948e-06,2.483861360355479894e-06,2.529022475998306840e-06,2.574183591641133785e-06,2.619344707283960731e-06,2.664505822926787677e-06,2.709666938569614622e-06,2.754828054212441568e-06,2.799989169855268514e-06,2.845150285498095459e-06 +0.000000000000000000e+00,4.121033803814502860e-08,8.242067607629005720e-08,1.236310141144350792e-07,1.648413521525800879e-07,2.060516901907250967e-07,2.472620282288701054e-07,2.884723662670151142e-07,3.296827043051601229e-07,3.708930423433051317e-07,4.121033803814501404e-07,4.533137184195951492e-07,4.945240564577401050e-07,5.357343944958851137e-07,5.769447325340301225e-07,6.181550705721751312e-07,6.593654086103201400e-07,7.005757466484651487e-07,7.417860846866101575e-07,7.829964227247551662e-07,8.242067607629001750e-07,8.654170988010451837e-07,9.066274368391901925e-07,9.478377748773352012e-07,9.890481129154802100e-07,1.030258450953625219e-06,1.071468788991770227e-06,1.112679127029915236e-06,1.153889465068060245e-06,1.195099803106205254e-06,1.236310141144350262e-06,1.277520479182495271e-06,1.318730817220640280e-06,1.359941155258785289e-06,1.401151493296930297e-06,1.442361831335075306e-06,1.483572169373220315e-06,1.524782507411365324e-06,1.565992845449510332e-06,1.607203183487655341e-06,1.648413521525800350e-06,1.689623859563945359e-06,1.730834197602090367e-06,1.772044535640235376e-06,1.813254873678380385e-06,1.854465211716525394e-06,1.895675549754670402e-06,1.936885887792815411e-06,1.978096225830960420e-06,2.019306563869105429e-06,2.060516901907250437e-06,2.101727239945395446e-06,2.142937577983540455e-06,2.184147916021685464e-06,2.225358254059830472e-06,2.266568592097975481e-06,2.307778930136120490e-06,2.348989268174265499e-06,2.390199606212410507e-06,2.431409944250555516e-06,2.472620282288700525e-06,2.513830620326845534e-06,2.555040958364990542e-06,2.596251296403135551e-06 +0.000000000000000000e+00,4.297545762935213972e-08,8.595091525870427943e-08,1.289263728880564191e-07,1.719018305174085589e-07,2.148772881467606986e-07,2.578527457761128383e-07,3.008282034054650045e-07,3.438036610348171707e-07,3.867791186641693368e-07,4.297545762935215030e-07,4.727300339228736692e-07,5.157054915522257825e-07,5.586809491815778957e-07,6.016564068109300090e-07,6.446318644402821222e-07,6.876073220696342354e-07,7.305827796989863487e-07,7.735582373283384619e-07,8.165336949576905752e-07,8.595091525870426884e-07,9.024846102163948017e-07,9.454600678457469149e-07,9.884355254750990282e-07,1.031410983104451141e-06,1.074386440733803255e-06,1.117361898363155368e-06,1.160337355992507481e-06,1.203312813621859594e-06,1.246288271251211708e-06,1.289263728880563821e-06,1.332239186509915934e-06,1.375214644139268047e-06,1.418190101768620161e-06,1.461165559397972274e-06,1.504141017027324387e-06,1.547116474656676500e-06,1.590091932286028614e-06,1.633067389915380727e-06,1.676042847544732840e-06,1.719018305174084953e-06,1.761993762803437067e-06,1.804969220432789180e-06,1.847944678062141293e-06,1.890920135691493406e-06,1.933895593320845731e-06,1.976871050950198056e-06,2.019846508579550381e-06,2.062821966208902706e-06,2.105797423838255031e-06,2.148772881467607356e-06,2.191748339096959681e-06,2.234723796726312006e-06,2.277699254355664331e-06,2.320674711985016656e-06,2.363650169614368981e-06,2.406625627243721306e-06,2.449601084873073631e-06,2.492576542502425956e-06,2.535552000131778281e-06,2.578527457761130606e-06,2.621502915390482931e-06,2.664478373019835256e-06,2.707453830649187581e-06 +0.000000000000000000e+00,4.516111564283362267e-08,9.032223128566724533e-08,1.354833469285008746e-07,1.806444625713345171e-07,2.258055782141681597e-07,2.709666938570018022e-07,3.161278094998354182e-07,3.612889251426690343e-07,4.064500407855026503e-07,4.516111564283362664e-07,4.967722720711698824e-07,5.419333877140034985e-07,5.870945033568371145e-07,6.322556189996707306e-07,6.774167346425043466e-07,7.225778502853379627e-07,7.677389659281715787e-07,8.129000815710051948e-07,8.580611972138388108e-07,9.032223128566724269e-07,9.483834284995060429e-07,9.935445441423397649e-07,1.038705659785173487e-06,1.083866775428007209e-06,1.129027891070840931e-06,1.174189006713674653e-06,1.219350122356508374e-06,1.264511237999342096e-06,1.309672353642175818e-06,1.354833469285009540e-06,1.399994584927843262e-06,1.445155700570676984e-06,1.490316816213510706e-06,1.535477931856344428e-06,1.580639047499178150e-06,1.625800163142011872e-06,1.670961278784845594e-06,1.716122394427679316e-06,1.761283510070513038e-06,1.806444625713346760e-06,1.851605741356180481e-06,1.896766856999014203e-06,1.941927972641847925e-06,1.987089088284681647e-06,2.032250203927515369e-06,2.077411319570349091e-06,2.122572435213182813e-06,2.167733550856016535e-06,2.212894666498850257e-06,2.258055782141683979e-06,2.303216897784517701e-06,2.348378013427351423e-06,2.393539129070185145e-06,2.438700244713018867e-06,2.483861360355852589e-06,2.529022475998686310e-06,2.574183591641520032e-06,2.619344707284353754e-06,2.664505822927187476e-06,2.709666938570021198e-06,2.754828054212854920e-06,2.799989169855688642e-06,2.845150285498522364e-06 +0.000000000000000000e+00,4.121033803815190413e-08,8.242067607630380825e-08,1.236310141144557256e-07,1.648413521526076430e-07,2.060516901907595603e-07,2.472620282289114512e-07,2.884723662670633421e-07,3.296827043052152330e-07,3.708930423433671239e-07,4.121033803815190148e-07,4.533137184196709057e-07,4.945240564578227966e-07,5.357343944959746875e-07,5.769447325341265784e-07,6.181550705722784692e-07,6.593654086104303601e-07,7.005757466485822510e-07,7.417860846867341419e-07,7.829964227248860328e-07,8.242067607630379237e-07,8.654170988011898146e-07,9.066274368393417055e-07,9.478377748774935964e-07,9.890481129156453814e-07,1.030258450953797166e-06,1.071468788991948951e-06,1.112679127030100736e-06,1.153889465068252521e-06,1.195099803106404306e-06,1.236310141144556091e-06,1.277520479182707876e-06,1.318730817220859661e-06,1.359941155259011447e-06,1.401151493297163232e-06,1.442361831335315017e-06,1.483572169373466802e-06,1.524782507411618587e-06,1.565992845449770372e-06,1.607203183487922157e-06,1.648413521526073942e-06,1.689623859564225727e-06,1.730834197602377512e-06,1.772044535640529297e-06,1.813254873678681082e-06,1.854465211716832867e-06,1.895675549754984652e-06,1.936885887793136437e-06,1.978096225831288222e-06,2.019306563869440007e-06,2.060516901907591792e-06,2.101727239945743577e-06,2.142937577983895362e-06,2.184147916022047147e-06,2.225358254060198932e-06,2.266568592098350717e-06,2.307778930136502502e-06,2.348989268174654287e-06,2.390199606212806072e-06,2.431409944250957857e-06,2.472620282289109642e-06,2.513830620327261427e-06,2.555040958365413212e-06,2.596251296403564997e-06 +0.000000000000000000e+00,3.854447883853828320e-08,7.708895767707656640e-08,1.156334365156148496e-07,1.541779153541531328e-07,1.927223941926914160e-07,2.312668730312296992e-07,2.698113518697679824e-07,3.083558307083062656e-07,3.469003095468445488e-07,3.854447883853828320e-07,4.239892672239211152e-07,4.625337460624593984e-07,5.010782249009976816e-07,5.396227037395359648e-07,5.781671825780742480e-07,6.167116614166125312e-07,6.552561402551508144e-07,6.938006190936890976e-07,7.323450979322273808e-07,7.708895767707656640e-07,8.094340556093039472e-07,8.479785344478422304e-07,8.865230132863805136e-07,9.250674921249187968e-07,9.636119709634571859e-07,1.002156449801995575e-06,1.040700928640533964e-06,1.079245407479072353e-06,1.117789886317610742e-06,1.156334365156149131e-06,1.194878843994687520e-06,1.233423322833225909e-06,1.271967801671764299e-06,1.310512280510302688e-06,1.349056759348841077e-06,1.387601238187379466e-06,1.426145717025917855e-06,1.464690195864456244e-06,1.503234674702994633e-06,1.541779153541533022e-06,1.580323632380071411e-06,1.618868111218609800e-06,1.657412590057148189e-06,1.695957068895686578e-06,1.734501547734224968e-06,1.773046026572763357e-06,1.811590505411301746e-06,1.850134984249840135e-06,1.888679463088378524e-06,1.927223941926916913e-06,1.965768420765455302e-06,2.004312899603993691e-06,2.042857378442532080e-06,2.081401857281070469e-06,2.119946336119608858e-06,2.158490814958147247e-06,2.197035293796685636e-06,2.235579772635224026e-06,2.274124251473762415e-06,2.312668730312300804e-06,2.351213209150839193e-06,2.389757687989377582e-06,2.428302166827915971e-06 +0.000000000000000000e+00,4.076611771102042343e-08,8.153223542204084685e-08,1.222983531330612637e-07,1.630644708440816672e-07,2.038305885551020708e-07,2.445967062661224744e-07,2.853628239771429044e-07,3.261289416881633345e-07,3.668950593991837645e-07,4.076611771102041945e-07,4.484272948212246246e-07,4.891934125322450546e-07,5.299595302432654847e-07,5.707256479542859147e-07,6.114917656653063448e-07,6.522578833763267748e-07,6.930240010873472048e-07,7.337901187983676349e-07,7.745562365093880649e-07,8.153223542204084950e-07,8.560884719314289250e-07,8.968545896424493551e-07,9.376207073534697851e-07,9.783868250644903210e-07,1.019152942775510857e-06,1.059919060486531393e-06,1.100685178197551929e-06,1.141451295908572465e-06,1.182217413619593001e-06,1.222983531330613537e-06,1.263749649041634072e-06,1.304515766752654608e-06,1.345281884463675144e-06,1.386048002174695680e-06,1.426814119885716216e-06,1.467580237596736752e-06,1.508346355307757288e-06,1.549112473018777824e-06,1.589878590729798360e-06,1.630644708440818896e-06,1.671410826151839432e-06,1.712176943862859968e-06,1.752943061573880504e-06,1.793709179284901039e-06,1.834475296995921575e-06,1.875241414706942111e-06,1.916007532417962647e-06,1.956773650128983183e-06,1.997539767840003719e-06,2.038305885551024255e-06,2.079072003262044791e-06,2.119838120973065327e-06,2.160604238684085863e-06,2.201370356395106399e-06,2.242136474106126935e-06,2.282902591817147471e-06,2.323668709528168006e-06,2.364434827239188542e-06,2.405200944950209078e-06,2.445967062661229614e-06,2.486733180372250150e-06,2.527499298083270686e-06,2.568265415794291222e-06 +0.000000000000000000e+00,3.688597790620170537e-08,7.377195581240341074e-08,1.106579337186051161e-07,1.475439116248068215e-07,1.844298895310085401e-07,2.213158674372102587e-07,2.582018453434119773e-07,2.950878232496136959e-07,3.319738011558154145e-07,3.688597790620171331e-07,4.057457569682188517e-07,4.426317348744205703e-07,4.795177127806222889e-07,5.164036906868239546e-07,5.532896685930256202e-07,5.901756464992272859e-07,6.270616244054289516e-07,6.639476023116306172e-07,7.008335802178322829e-07,7.377195581240339485e-07,7.746055360302356142e-07,8.114915139364372799e-07,8.483774918426389455e-07,8.852634697488406112e-07,9.221494476550422769e-07,9.590354255612439425e-07,9.959214034674456082e-07,1.032807381373647274e-06,1.069693359279848940e-06,1.106579337186050605e-06,1.143465315092252271e-06,1.180351292998453937e-06,1.217237270904655602e-06,1.254123248810857268e-06,1.291009226717058933e-06,1.327895204623260599e-06,1.364781182529462265e-06,1.401667160435663930e-06,1.438553138341865596e-06,1.475439116248067262e-06,1.512325094154268927e-06,1.549211072060470593e-06,1.586097049966672259e-06,1.622983027872873924e-06,1.659869005779075590e-06,1.696754983685277256e-06,1.733640961591478921e-06,1.770526939497680587e-06,1.807412917403882253e-06,1.844298895310083918e-06,1.881184873216285584e-06,1.918070851122487462e-06,1.954956829028689339e-06,1.991842806934891216e-06,2.028728784841093094e-06,2.065614762747294971e-06,2.102500740653496849e-06,2.139386718559698726e-06,2.176272696465900603e-06,2.213158674372102481e-06,2.250044652278304358e-06,2.286930630184506236e-06,2.323816608090708113e-06 +0.000000000000000000e+00,3.854447883854578738e-08,7.708895767709157477e-08,1.156334365156373622e-07,1.541779153541831495e-07,1.927223941927289502e-07,2.312668730312747508e-07,2.698113518698205514e-07,3.083558307083663520e-07,3.469003095469121526e-07,3.854447883854579532e-07,4.239892672240037539e-07,4.625337460625495545e-07,5.010782249010954080e-07,5.396227037396412087e-07,5.781671825781870093e-07,6.167116614167328099e-07,6.552561402552786105e-07,6.938006190938244111e-07,7.323450979323702118e-07,7.708895767709160124e-07,8.094340556094618130e-07,8.479785344480076136e-07,8.865230132865534142e-07,9.250674921250992148e-07,9.636119709636450155e-07,1.002156449802190816e-06,1.040700928640736617e-06,1.079245407479282417e-06,1.117789886317828218e-06,1.156334365156374019e-06,1.194878843994919819e-06,1.233423322833465620e-06,1.271967801672011420e-06,1.310512280510557221e-06,1.349056759349103022e-06,1.387601238187648822e-06,1.426145717026194623e-06,1.464690195864740424e-06,1.503234674703286224e-06,1.541779153541832025e-06,1.580323632380377825e-06,1.618868111218923626e-06,1.657412590057469427e-06,1.695957068896015227e-06,1.734501547734561028e-06,1.773046026573106828e-06,1.811590505411652629e-06,1.850134984250198430e-06,1.888679463088744230e-06,1.927223941927290031e-06,1.965768420765835620e-06,2.004312899604381209e-06,2.042857378442926798e-06,2.081401857281472386e-06,2.119946336120017975e-06,2.158490814958563564e-06,2.197035293797109153e-06,2.235579772635654742e-06,2.274124251474200331e-06,2.312668730312745920e-06,2.351213209151291508e-06,2.389757687989837097e-06,2.428302166828382686e-06 +0.000000000000000000e+00,4.076611771102766291e-08,8.153223542205532582e-08,1.222983531330829953e-07,1.630644708441106781e-07,2.038305885551383609e-07,2.445967062661660436e-07,2.853628239771937264e-07,3.261289416882214092e-07,3.668950593992490919e-07,4.076611771102767747e-07,4.484272948213044574e-07,4.891934125323321931e-07,5.299595302433599289e-07,5.707256479543876646e-07,6.114917656654154003e-07,6.522578833764431360e-07,6.930240010874708717e-07,7.337901187984986074e-07,7.745562365095263431e-07,8.153223542205540788e-07,8.560884719315818145e-07,8.968545896426095502e-07,9.376207073536372859e-07,9.783868250646650216e-07,1.019152942775692757e-06,1.059919060486720493e-06,1.100685178197748229e-06,1.141451295908775964e-06,1.182217413619803700e-06,1.222983531330831436e-06,1.263749649041859171e-06,1.304515766752886907e-06,1.345281884463914643e-06,1.386048002174942379e-06,1.426814119885970114e-06,1.467580237596997850e-06,1.508346355308025586e-06,1.549112473019053321e-06,1.589878590730081057e-06,1.630644708441108793e-06,1.671410826152136529e-06,1.712176943863164264e-06,1.752943061574192000e-06,1.793709179285219736e-06,1.834475296996247471e-06,1.875241414707275207e-06,1.916007532418302731e-06,1.956773650129330467e-06,1.997539767840358202e-06,2.038305885551385938e-06,2.079072003262413674e-06,2.119838120973441409e-06,2.160604238684469145e-06,2.201370356395496881e-06,2.242136474106524617e-06,2.282902591817552352e-06,2.323668709528580088e-06,2.364434827239607824e-06,2.405200944950635559e-06,2.445967062661663295e-06,2.486733180372691031e-06,2.527499298083718766e-06,2.568265415794746502e-06 +0.000000000000000000e+00,3.688597790620885883e-08,7.377195581241771765e-08,1.106579337186265699e-07,1.475439116248354088e-07,1.844298895310442478e-07,2.213158674372530868e-07,2.582018453434619522e-07,2.950878232496708177e-07,3.319738011558796831e-07,3.688597790620885486e-07,4.057457569682974140e-07,4.426317348745062794e-07,4.795177127807151449e-07,5.164036906869240103e-07,5.532896685931328758e-07,5.901756464993417412e-07,6.270616244055506067e-07,6.639476023117594721e-07,7.008335802179683375e-07,7.377195581241772030e-07,7.746055360303860684e-07,8.114915139365949339e-07,8.483774918428037993e-07,8.852634697490126648e-07,9.221494476552215302e-07,9.590354255614305015e-07,9.959214034676395787e-07,1.032807381373848656e-06,1.069693359280057733e-06,1.106579337186266810e-06,1.143465315092475888e-06,1.180351292998684965e-06,1.217237270904894042e-06,1.254123248811103119e-06,1.291009226717312196e-06,1.327895204623521274e-06,1.364781182529730351e-06,1.401667160435939428e-06,1.438553138342148505e-06,1.475439116248357582e-06,1.512325094154566660e-06,1.549211072060775737e-06,1.586097049966984814e-06,1.622983027873193891e-06,1.659869005779402968e-06,1.696754983685612046e-06,1.733640961591821123e-06,1.770526939498030200e-06,1.807412917404239277e-06,1.844298895310448354e-06,1.881184873216657432e-06,1.918070851122866509e-06,1.954956829029075586e-06,1.991842806935284663e-06,2.028728784841493740e-06,2.065614762747702818e-06,2.102500740653911895e-06,2.139386718560120972e-06,2.176272696466330049e-06,2.213158674372539126e-06,2.250044652278748204e-06,2.286930630184957281e-06,2.323816608091166358e-06 +0.000000000000000000e+00,3.409305361252369662e-08,6.818610722504739324e-08,1.022791608375710965e-07,1.363722144500948130e-07,1.704652680626185294e-07,2.045583216751422459e-07,2.386513752876659888e-07,2.727444289001897318e-07,3.068374825127134747e-07,3.409305361252372177e-07,3.750235897377609606e-07,4.091166433502847036e-07,4.432096969628084465e-07,4.773027505753321895e-07,5.113958041878559324e-07,5.454888578003796753e-07,5.795819114129034183e-07,6.136749650254271612e-07,6.477680186379509042e-07,6.818610722504746471e-07,7.159541258629983901e-07,7.500471794755221330e-07,7.841402330880458759e-07,8.182332867005696189e-07,8.523263403130933618e-07,8.864193939256171048e-07,9.205124475381408477e-07,9.546055011506645907e-07,9.886985547631883336e-07,1.022791608375712077e-06,1.056884661988235819e-06,1.090977715600759562e-06,1.125070769213283305e-06,1.159163822825807048e-06,1.193256876438330791e-06,1.227349930050854534e-06,1.261442983663378277e-06,1.295536037275902020e-06,1.329629090888425763e-06,1.363722144500949506e-06,1.397815198113473249e-06,1.431908251725996992e-06,1.466001305338520735e-06,1.500094358951044478e-06,1.534187412563568221e-06,1.568280466176091964e-06,1.602373519788615707e-06,1.636466573401139450e-06,1.670559627013663192e-06,1.704652680626186935e-06,1.738745734238710678e-06,1.772838787851234421e-06,1.806931841463758164e-06,1.841024895076281907e-06,1.875117948688805650e-06,1.909211002301329605e-06,1.943304055913853348e-06,1.977397109526377091e-06,2.011490163138900834e-06,2.045583216751424577e-06,2.079676270363948320e-06,2.113769323976472062e-06,2.147862377588995805e-06 +0.000000000000000000e+00,3.632022435771999545e-08,7.264044871543999091e-08,1.089606730731599797e-07,1.452808974308799553e-07,1.816011217885999310e-07,2.179213461463199066e-07,2.542415705040398822e-07,2.905617948617598578e-07,3.268820192194798334e-07,3.632022435771998090e-07,3.995224679349197846e-07,4.358426922926397602e-07,4.721629166503597358e-07,5.084831410080796584e-07,5.448033653657995282e-07,5.811235897235193979e-07,6.174438140812392676e-07,6.537640384389591373e-07,6.900842627966790071e-07,7.264044871543988768e-07,7.627247115121187465e-07,7.990449358698386162e-07,8.353651602275584859e-07,8.716853845852783557e-07,9.080056089429982254e-07,9.443258333007180951e-07,9.806460576584379648e-07,1.016966282016157835e-06,1.053286506373877704e-06,1.089606730731597574e-06,1.125926955089317444e-06,1.162247179447037313e-06,1.198567403804757183e-06,1.234887628162477053e-06,1.271207852520196923e-06,1.307528076877916792e-06,1.343848301235636662e-06,1.380168525593356532e-06,1.416488749951076402e-06,1.452808974308796271e-06,1.489129198666516141e-06,1.525449423024236011e-06,1.561769647381955880e-06,1.598089871739675750e-06,1.634410096097395620e-06,1.670730320455115490e-06,1.707050544812835359e-06,1.743370769170555229e-06,1.779690993528275099e-06,1.816011217885994968e-06,1.852331442243714838e-06,1.888651666601434708e-06,1.924971890959154366e-06,1.961292115316873812e-06,1.997612339674593258e-06,2.033932564032312705e-06,2.070252788390032151e-06,2.106573012747751597e-06,2.142893237105471043e-06,2.179213461463190489e-06,2.215533685820909936e-06,2.251853910178629382e-06,2.288174134536348828e-06 +0.000000000000000000e+00,3.244475819870652382e-08,6.488951639741304763e-08,9.733427459611957145e-08,1.297790327948260953e-07,1.622237909935326058e-07,1.946685491922391164e-07,2.271133073909456270e-07,2.595580655896521376e-07,2.920028237883586482e-07,3.244475819870651587e-07,3.568923401857716693e-07,3.893370983844781799e-07,4.217818565831846905e-07,4.542266147818912011e-07,4.866713729805977117e-07,5.191161311793041693e-07,5.515608893780106269e-07,5.840056475767170846e-07,6.164504057754235422e-07,6.488951639741299999e-07,6.813399221728364575e-07,7.137846803715429151e-07,7.462294385702493728e-07,7.786741967689558304e-07,8.111189549676622881e-07,8.435637131663687457e-07,8.760084713650752034e-07,9.084532295637816610e-07,9.408979877624881186e-07,9.733427459611945763e-07,1.005787504159900928e-06,1.038232262358607280e-06,1.070677020557313632e-06,1.103121778756019983e-06,1.135566536954726335e-06,1.168011295153432687e-06,1.200456053352139039e-06,1.232900811550845390e-06,1.265345569749551742e-06,1.297790327948258094e-06,1.330235086146964446e-06,1.362679844345670797e-06,1.395124602544377149e-06,1.427569360743083501e-06,1.460014118941789853e-06,1.492458877140496204e-06,1.524903635339202556e-06,1.557348393537908908e-06,1.589793151736615260e-06,1.622237909935321612e-06,1.654682668134027963e-06,1.687127426332734315e-06,1.719572184531440667e-06,1.752016942730147019e-06,1.784461700928853370e-06,1.816906459127559722e-06,1.849351217326266074e-06,1.881795975524972426e-06,1.914240733723678777e-06,1.946685491922385341e-06,1.979130250121091904e-06,2.011575008319798468e-06,2.044019766518505031e-06 +0.000000000000000000e+00,3.409305361253151844e-08,6.818610722506303688e-08,1.022791608375945487e-07,1.363722144501260473e-07,1.704652680626575459e-07,2.045583216751890445e-07,2.386513752877205166e-07,2.727444289002519887e-07,3.068374825127834608e-07,3.409305361253149329e-07,3.750235897378464051e-07,4.091166433503778772e-07,4.432096969629093493e-07,4.773027505754408214e-07,5.113958041879722935e-07,5.454888578005037657e-07,5.795819114130352378e-07,6.136749650255667099e-07,6.477680186380981820e-07,6.818610722506296541e-07,7.159541258631611263e-07,7.500471794756925984e-07,7.841402330882240705e-07,8.182332867007555426e-07,8.523263403132870147e-07,8.864193939258184869e-07,9.205124475383499590e-07,9.546055011508814311e-07,9.886985547634130091e-07,1.022791608375944587e-06,1.056884661988476165e-06,1.090977715601007743e-06,1.125070769213539321e-06,1.159163822826070899e-06,1.193256876438602477e-06,1.227349930051134055e-06,1.261442983663665633e-06,1.295536037276197211e-06,1.329629090888728789e-06,1.363722144501260367e-06,1.397815198113791945e-06,1.431908251726323523e-06,1.466001305338855101e-06,1.500094358951386679e-06,1.534187412563918257e-06,1.568280466176449835e-06,1.602373519788981413e-06,1.636466573401512991e-06,1.670559627014044569e-06,1.704652680626576147e-06,1.738745734239107725e-06,1.772838787851639303e-06,1.806931841464170881e-06,1.841024895076702459e-06,1.875117948689234037e-06,1.909211002301765827e-06,1.943304055914297617e-06,1.977397109526829406e-06,2.011490163139361196e-06,2.045583216751892986e-06,2.079676270364424776e-06,2.113769323976956565e-06,2.147862377589488355e-06 +0.000000000000000000e+00,3.632022435772761213e-08,7.264044871545522427e-08,1.089606730731828364e-07,1.452808974309104485e-07,1.816011217886380474e-07,2.179213461463656463e-07,2.542415705040932452e-07,2.905617948618208441e-07,3.268820192195484430e-07,3.632022435772760419e-07,3.995224679350036408e-07,4.358426922927312397e-07,4.721629166504588386e-07,5.084831410081863846e-07,5.448033653659138776e-07,5.811235897236413706e-07,6.174438140813688636e-07,6.537640384390963567e-07,6.900842627968238497e-07,7.264044871545513427e-07,7.627247115122788357e-07,7.990449358700063287e-07,8.353651602277338218e-07,8.716853845854613148e-07,9.080056089431888078e-07,9.443258333009163008e-07,9.806460576586437938e-07,1.016966282016371287e-06,1.053286506374098780e-06,1.089606730731826273e-06,1.125926955089553766e-06,1.162247179447281259e-06,1.198567403805008752e-06,1.234887628162736245e-06,1.271207852520463738e-06,1.307528076878191231e-06,1.343848301235918724e-06,1.380168525593646217e-06,1.416488749951373710e-06,1.452808974309101203e-06,1.489129198666828696e-06,1.525449423024556189e-06,1.561769647382283682e-06,1.598089871740011175e-06,1.634410096097738668e-06,1.670730320455466161e-06,1.707050544813193654e-06,1.743370769170921147e-06,1.779690993528648640e-06,1.816011217886376133e-06,1.852331442244103626e-06,1.888651666601831119e-06,1.924971890959558401e-06,1.961292115317285470e-06,1.997612339675012540e-06,2.033932564032739609e-06,2.070252788390466679e-06,2.106573012748193748e-06,2.142893237105920818e-06,2.179213461463647887e-06,2.215533685821374957e-06,2.251853910179102026e-06,2.288174134536829096e-06 +0.000000000000000000e+00,3.244475819871378977e-08,6.488951639742757954e-08,9.733427459614136931e-08,1.297790327948551591e-07,1.622237909935689489e-07,1.946685491922827386e-07,2.271133073909965284e-07,2.595580655897103182e-07,2.920028237884240815e-07,3.244475819871378448e-07,3.568923401858516081e-07,3.893370983845653714e-07,4.217818565832791347e-07,4.542266147819928980e-07,4.866713729807066613e-07,5.191161311794204246e-07,5.515608893781341879e-07,5.840056475768479512e-07,6.164504057755617145e-07,6.488951639742754778e-07,6.813399221729892411e-07,7.137846803717030044e-07,7.462294385704167677e-07,7.786741967691305310e-07,8.111189549678442943e-07,8.435637131665580576e-07,8.760084713652718209e-07,9.084532295639855842e-07,9.408979877626993475e-07,9.733427459614131108e-07,1.005787504160126874e-06,1.038232262358840637e-06,1.070677020557554401e-06,1.103121778756268164e-06,1.135566536954981927e-06,1.168011295153695691e-06,1.200456053352409454e-06,1.232900811551123217e-06,1.265345569749836980e-06,1.297790327948550744e-06,1.330235086147264507e-06,1.362679844345978270e-06,1.395124602544692034e-06,1.427569360743405797e-06,1.460014118942119560e-06,1.492458877140833324e-06,1.524903635339547087e-06,1.557348393538260850e-06,1.589793151736974613e-06,1.622237909935688377e-06,1.654682668134402140e-06,1.687127426333115903e-06,1.719572184531829667e-06,1.752016942730543430e-06,1.784461700929257193e-06,1.816906459127970957e-06,1.849351217326684720e-06,1.881795975525398483e-06,1.914240733724112035e-06,1.946685491922825798e-06,1.979130250121539561e-06,2.011575008320253325e-06,2.044019766518967088e-06 +0.000000000000000000e+00,2.962548517190188036e-08,5.925097034380376071e-08,8.887645551570563776e-08,1.185019406876075082e-07,1.481274258595093919e-07,1.777529110314112755e-07,2.073783962033131592e-07,2.370038813752150429e-07,2.666293665471169265e-07,2.962548517190187837e-07,3.258803368909206409e-07,3.555058220628224981e-07,3.851313072347243553e-07,4.147567924066262125e-07,4.443822775785280697e-07,4.740077627504299269e-07,5.036332479223317841e-07,5.332587330942336413e-07,5.628842182661354985e-07,5.925097034380373557e-07,6.221351886099392129e-07,6.517606737818410701e-07,6.813861589537429273e-07,7.110116441256447845e-07,7.406371292975466417e-07,7.702626144694484989e-07,7.998880996413503561e-07,8.295135848132522133e-07,8.591390699851540704e-07,8.887645551570559276e-07,9.183900403289577848e-07,9.480155255008596420e-07,9.776410106727614992e-07,1.007266495844663356e-06,1.036891981016565214e-06,1.066517466188467071e-06,1.096142951360368928e-06,1.125768436532270785e-06,1.155393921704172642e-06,1.185019406876074500e-06,1.214644892047976357e-06,1.244270377219878214e-06,1.273895862391780071e-06,1.303521347563681928e-06,1.333146832735583786e-06,1.362772317907485643e-06,1.392397803079387500e-06,1.422023288251289357e-06,1.451648773423191214e-06,1.481274258595093072e-06,1.510899743766994929e-06,1.540525228938896786e-06,1.570150714110798643e-06,1.599776199282700500e-06,1.629401684454602358e-06,1.659027169626504215e-06,1.688652654798406072e-06,1.718278139970307929e-06,1.747903625142209786e-06,1.777529110314111644e-06,1.807154595486013501e-06,1.836780080657915358e-06,1.866405565829817215e-06 +0.000000000000000000e+00,3.186158776529254241e-08,6.372317553058508482e-08,9.558476329587762723e-08,1.274463510611701696e-07,1.593079388264626988e-07,1.911695265917552280e-07,2.230311143570477572e-07,2.548927021223402863e-07,2.867542898876328155e-07,3.186158776529253447e-07,3.504774654182178739e-07,3.823390531835104030e-07,4.142006409488029322e-07,4.460622287140954614e-07,4.779238164793879376e-07,5.097854042446804668e-07,5.416469920099729960e-07,5.735085797752655251e-07,6.053701675405580543e-07,6.372317553058505835e-07,6.690933430711431127e-07,7.009549308364356418e-07,7.328165186017281710e-07,7.646781063670207002e-07,7.965396941323132294e-07,8.284012818976057585e-07,8.602628696628982877e-07,8.921244574281908169e-07,9.239860451934833461e-07,9.558476329587758752e-07,9.877092207240684044e-07,1.019570808489360934e-06,1.051432396254653463e-06,1.083293984019945992e-06,1.115155571785238521e-06,1.147017159550531050e-06,1.178878747315823579e-06,1.210740335081116109e-06,1.242601922846408638e-06,1.274463510611701167e-06,1.306325098376993696e-06,1.338186686142286225e-06,1.370048273907578755e-06,1.401909861672871284e-06,1.433771449438163813e-06,1.465633037203456342e-06,1.497494624968748871e-06,1.529356212734041400e-06,1.561217800499333930e-06,1.593079388264626459e-06,1.624940976029918988e-06,1.656802563795211517e-06,1.688664151560504046e-06,1.720525739325796575e-06,1.752387327091089105e-06,1.784248914856381634e-06,1.816110502621674163e-06,1.847972090386966692e-06,1.879833678152259221e-06,1.911695265917551750e-06,1.943556853682844491e-06,1.975418441448137232e-06,2.007280029213429973e-06 +0.000000000000000000e+00,2.792016164984297526e-08,5.584032329968595052e-08,8.376048494952892247e-08,1.116806465993718878e-07,1.396008082492148531e-07,1.675209698990578185e-07,1.954411315489007838e-07,2.233612931987437491e-07,2.512814548485867145e-07,2.792016164984297063e-07,3.071217781482726981e-07,3.350419397981156899e-07,3.629621014479586817e-07,3.908822630978016735e-07,4.188024247476446653e-07,4.467225863974876571e-07,4.746427480473306489e-07,5.025629096971736407e-07,5.304830713470166325e-07,5.584032329968596243e-07,5.863233946467026161e-07,6.142435562965456079e-07,6.421637179463885997e-07,6.700838795962315915e-07,6.980040412460745833e-07,7.259242028959175751e-07,7.538443645457605669e-07,7.817645261956035587e-07,8.096846878454465505e-07,8.376048494952895423e-07,8.655250111451325342e-07,8.934451727949755260e-07,9.213653344448185178e-07,9.492854960946615096e-07,9.772056577445045014e-07,1.005125819394347493e-06,1.033045981044190485e-06,1.060966142694033477e-06,1.088886304343876469e-06,1.116806465993719460e-06,1.144726627643562452e-06,1.172646789293405444e-06,1.200566950943248436e-06,1.228487112593091428e-06,1.256407274242934419e-06,1.284327435892777411e-06,1.312247597542620403e-06,1.340167759192463395e-06,1.368087920842306387e-06,1.396008082492149378e-06,1.423928244141992370e-06,1.451848405791835362e-06,1.479768567441678354e-06,1.507688729091521346e-06,1.535608890741364337e-06,1.563529052391207329e-06,1.591449214041050321e-06,1.619369375690893313e-06,1.647289537340736305e-06,1.675209698990579296e-06,1.703129860640422288e-06,1.731050022290265280e-06,1.758970183940108272e-06 +0.000000000000000000e+00,2.962548517190910661e-08,5.925097034381821321e-08,8.887645551572731651e-08,1.185019406876364132e-07,1.481274258595454966e-07,1.777529110314545801e-07,2.073783962033636635e-07,2.370038813752727470e-07,2.666293665471818304e-07,2.962548517190908874e-07,3.258803368909999444e-07,3.555058220629090014e-07,3.851313072348180583e-07,4.147567924067271153e-07,4.443822775786361723e-07,4.740077627505452293e-07,5.036332479224542862e-07,5.332587330943633432e-07,5.628842182662724002e-07,5.925097034381814572e-07,6.221351886100905141e-07,6.517606737819995711e-07,6.813861589539086281e-07,7.110116441258176851e-07,7.406371292977267420e-07,7.702626144696357990e-07,7.998880996415448560e-07,8.295135848134539130e-07,8.591390699853629699e-07,8.887645551572720269e-07,9.183900403291810839e-07,9.480155255010901409e-07,9.776410106729990920e-07,1.007266495844907937e-06,1.036891981016816782e-06,1.066517466188725628e-06,1.096142951360634473e-06,1.125768436532543318e-06,1.155393921704452163e-06,1.185019406876361009e-06,1.214644892048269854e-06,1.244270377220178699e-06,1.273895862392087544e-06,1.303521347563996389e-06,1.333146832735905235e-06,1.362772317907814080e-06,1.392397803079722925e-06,1.422023288251631770e-06,1.451648773423540615e-06,1.481274258595449461e-06,1.510899743767358306e-06,1.540525228939267151e-06,1.570150714111175996e-06,1.599776199283084842e-06,1.629401684454993687e-06,1.659027169626902532e-06,1.688652654798811377e-06,1.718278139970720222e-06,1.747903625142629068e-06,1.777529110314537913e-06,1.807154595486446758e-06,1.836780080658355603e-06,1.866405565830264449e-06 +0.000000000000000000e+00,3.186158776530005983e-08,6.372317553060011965e-08,9.558476329590017948e-08,1.274463510612002393e-07,1.593079388265002859e-07,1.911695265918003325e-07,2.230311143571003791e-07,2.548927021224004257e-07,2.867542898877004723e-07,3.186158776530005189e-07,3.504774654183005655e-07,3.823390531836006120e-07,4.142006409489006586e-07,4.460622287142007052e-07,4.779238164795008048e-07,5.097854042448009572e-07,5.416469920101011097e-07,5.735085797754012622e-07,6.053701675407014146e-07,6.372317553060015671e-07,6.690933430713017196e-07,7.009549308366018721e-07,7.328165186019020245e-07,7.646781063672021770e-07,7.965396941325023295e-07,8.284012818978024819e-07,8.602628696631026344e-07,8.921244574284027869e-07,9.239860451937029394e-07,9.558476329590030918e-07,9.877092207243032443e-07,1.019570808489603397e-06,1.051432396254903549e-06,1.083293984020203702e-06,1.115155571785503854e-06,1.147017159550804007e-06,1.178878747316104159e-06,1.210740335081404312e-06,1.242601922846704464e-06,1.274463510612004617e-06,1.306325098377304769e-06,1.338186686142604921e-06,1.370048273907905074e-06,1.401909861673205226e-06,1.433771449438505379e-06,1.465633037203805531e-06,1.497494624969105684e-06,1.529356212734405836e-06,1.561217800499705989e-06,1.593079388265006141e-06,1.624940976030306294e-06,1.656802563795606446e-06,1.688664151560906599e-06,1.720525739326206751e-06,1.752387327091506904e-06,1.784248914856807056e-06,1.816110502622107209e-06,1.847972090387407361e-06,1.879833678152707513e-06,1.911695265918007454e-06,1.943556853683307395e-06,1.975418441448607336e-06,2.007280029213907276e-06 +0.000000000000000000e+00,2.792016164984995666e-08,5.584032329969991333e-08,8.376048494954987330e-08,1.116806465993998399e-07,1.396008082492497932e-07,1.675209698990997466e-07,1.954411315489497000e-07,2.233612931987996533e-07,2.512814548486496067e-07,2.792016164984995865e-07,3.071217781483495663e-07,3.350419397981995461e-07,3.629621014480495260e-07,3.908822630978995058e-07,4.188024247477494856e-07,4.467225863975994654e-07,4.746427480474494453e-07,5.025629096972994251e-07,5.304830713471494049e-07,5.584032329969993847e-07,5.863233946468493646e-07,6.142435562966993444e-07,6.421637179465493242e-07,6.700838795963993041e-07,6.980040412462492839e-07,7.259242028960992637e-07,7.538443645459492435e-07,7.817645261957992234e-07,8.096846878456492032e-07,8.376048494954991830e-07,8.655250111453491628e-07,8.934451727951991427e-07,9.213653344450491225e-07,9.492854960948991023e-07,9.772056577447490821e-07,1.005125819394599062e-06,1.033045981044449042e-06,1.060966142694299022e-06,1.088886304344149001e-06,1.116806465993998981e-06,1.144726627643848961e-06,1.172646789293698941e-06,1.200566950943548921e-06,1.228487112593398901e-06,1.256407274243248880e-06,1.284327435893098860e-06,1.312247597542948840e-06,1.340167759192798820e-06,1.368087920842648800e-06,1.396008082492498780e-06,1.423928244142348759e-06,1.451848405792198739e-06,1.479768567442048719e-06,1.507688729091898699e-06,1.535608890741748679e-06,1.563529052391598658e-06,1.591449214041448638e-06,1.619369375691298618e-06,1.647289537341148598e-06,1.675209698990998578e-06,1.703129860640848558e-06,1.731050022290698537e-06,1.758970183940548517e-06 +0.000000000000000000e+00,2.740600253038529181e-08,5.481200506077058361e-08,8.221800759115587542e-08,1.096240101215411672e-07,1.370300126519264723e-07,1.644360151823117773e-07,1.918420177126970824e-07,2.192480202430823874e-07,2.466540227734676924e-07,2.740600253038529975e-07,3.014660278342383025e-07,3.288720303646236076e-07,3.562780328950089126e-07,3.836840354253942176e-07,4.110900379557795227e-07,4.384960404861648277e-07,4.659020430165501328e-07,4.933080455469353849e-07,5.207140480773206370e-07,5.481200506077058891e-07,5.755260531380911412e-07,6.029320556684763933e-07,6.303380581988616454e-07,6.577440607292468975e-07,6.851500632596321496e-07,7.125560657900174017e-07,7.399620683204026538e-07,7.673680708507879059e-07,7.947740733811731580e-07,8.221800759115584101e-07,8.495860784419436622e-07,8.769920809723289143e-07,9.043980835027141664e-07,9.318040860330994185e-07,9.592100885634846706e-07,9.866160910938699227e-07,1.014022093624255175e-06,1.041428096154640427e-06,1.068834098685025679e-06,1.096240101215410931e-06,1.123646103745796183e-06,1.151052106276181435e-06,1.178458108806566687e-06,1.205864111336951940e-06,1.233270113867337192e-06,1.260676116397722444e-06,1.288082118928107696e-06,1.315488121458492948e-06,1.342894123988878200e-06,1.370300126519263452e-06,1.397706129049648704e-06,1.425112131580033956e-06,1.452518134110419208e-06,1.479924136640804461e-06,1.507330139171189713e-06,1.534736141701574965e-06,1.562142144231960217e-06,1.589548146762345469e-06,1.616954149292730721e-06,1.644360151823115973e-06,1.671766154353501225e-06,1.699172156883886477e-06,1.726578159414271729e-06 +0.000000000000000000e+00,2.740600253039249490e-08,5.481200506078498979e-08,8.221800759117748799e-08,1.096240101215699928e-07,1.370300126519624976e-07,1.644360151823550025e-07,1.918420177127475073e-07,2.192480202431400121e-07,2.466540227735324905e-07,2.740600253039249423e-07,3.014660278343173942e-07,3.288720303647098461e-07,3.562780328951022980e-07,3.836840354254947499e-07,4.110900379558872017e-07,4.384960404862796536e-07,4.659020430166721055e-07,4.933080455470645574e-07,5.207140480774570093e-07,5.481200506078494612e-07,5.755260531382419130e-07,6.029320556686343649e-07,6.303380581990268168e-07,6.577440607294192687e-07,6.851500632598117206e-07,7.125560657902041724e-07,7.399620683205966243e-07,7.673680708509890762e-07,7.947740733813815281e-07,8.221800759117739800e-07,8.495860784421664319e-07,8.769920809725588837e-07,9.043980835029513356e-07,9.318040860333437875e-07,9.592100885637362394e-07,9.866160910941286913e-07,1.014022093624521143e-06,1.041428096154913595e-06,1.068834098685306047e-06,1.096240101215698499e-06,1.123646103746090951e-06,1.151052106276483403e-06,1.178458108806875854e-06,1.205864111337268306e-06,1.233270113867660758e-06,1.260676116398053210e-06,1.288082118928445662e-06,1.315488121458838114e-06,1.342894123989230566e-06,1.370300126519623018e-06,1.397706129050015469e-06,1.425112131580407921e-06,1.452518134110800373e-06,1.479924136641192825e-06,1.507330139171585277e-06,1.534736141701977729e-06,1.562142144232370181e-06,1.589548146762762633e-06,1.616954149293155085e-06,1.644360151823547536e-06,1.671766154353939988e-06,1.699172156884332440e-06,1.726578159414724892e-06 +0.000000000000000000e+00,5.978528258304321078e-08,1.195705651660864216e-07,1.793558477491296323e-07,2.391411303321728431e-07,2.989264129152160274e-07,3.587116954982592117e-07,4.184969780813023961e-07,4.782822606643455804e-07,5.380675432473887647e-07,5.978528258304319490e-07,6.576381084134751333e-07,7.174233909965183176e-07,7.772086735795615019e-07,8.369939561626046862e-07,8.967792387456478706e-07,9.565645213286909490e-07,1.016349803911734027e-06,1.076135086494777106e-06,1.135920369077820184e-06,1.195705651660863263e-06,1.255490934243906341e-06,1.315276216826949420e-06,1.375061499409992498e-06,1.434846781993035576e-06,1.494632064576078655e-06,1.554417347159121733e-06,1.614202629742164812e-06,1.673987912325207890e-06,1.733773194908250969e-06,1.793558477491294047e-06,1.853343760074337125e-06,1.913129042657380204e-06,1.972914325240423071e-06,2.032699607823465937e-06,2.092484890406508804e-06,2.152270172989551671e-06,2.212055455572594537e-06,2.271840738155637404e-06,2.331626020738680271e-06,2.391411303321723137e-06,2.451196585904766004e-06,2.510981868487808871e-06,2.570767151070851737e-06,2.630552433653894604e-06,2.690337716236937471e-06,2.750122998819980337e-06,2.809908281403023204e-06,2.869693563986066071e-06,2.929478846569108937e-06,2.989264129152151804e-06,3.049049411735194671e-06,3.108834694318237537e-06,3.168619976901280404e-06,3.228405259484323271e-06,3.288190542067366137e-06,3.347975824650409004e-06,3.407761107233451871e-06,3.467546389816494737e-06,3.527331672399537604e-06,3.587116954982580471e-06,3.646902237565623337e-06,3.706687520148666204e-06,3.766472802731709071e-06 +0.000000000000000000e+00,5.587080497931900092e-08,1.117416099586380018e-07,1.676124149379570094e-07,2.234832199172760301e-07,2.793540248965950774e-07,3.352248298759141246e-07,3.910956348552331719e-07,4.469664398345522191e-07,5.028372448138712663e-07,5.587080497931903665e-07,6.145788547725094667e-07,6.704496597518285669e-07,7.263204647311476670e-07,7.821912697104667672e-07,8.380620746897858674e-07,8.939328796691049676e-07,9.498036846484240678e-07,1.005674489627743168e-06,1.061545294607062268e-06,1.117416099586381368e-06,1.173286904565700468e-06,1.229157709545019569e-06,1.285028514524338669e-06,1.340899319503657769e-06,1.396770124482976869e-06,1.452640929462295969e-06,1.508511734441615070e-06,1.564382539420934170e-06,1.620253344400253270e-06,1.676124149379572370e-06,1.731994954358891470e-06,1.787865759338210570e-06,1.843736564317529671e-06,1.899607369296848771e-06,1.955478174276167871e-06,2.011348979255486759e-06,2.067219784234805648e-06,2.123090589214124536e-06,2.178961394193443425e-06,2.234832199172762313e-06,2.290703004152081201e-06,2.346573809131400090e-06,2.402444614110718978e-06,2.458315419090037867e-06,2.514186224069356755e-06,2.570057029048675644e-06,2.625927834027994532e-06,2.681798639007313420e-06,2.737669443986632309e-06,2.793540248965951197e-06,2.849411053945270086e-06,2.905281858924588974e-06,2.961152663903907863e-06,3.017023468883226751e-06,3.072894273862545639e-06,3.128765078841864528e-06,3.184635883821183416e-06,3.240506688800502305e-06,3.296377493779821193e-06,3.352248298759140081e-06,3.408119103738458970e-06,3.463989908717777858e-06,3.519860713697096747e-06 +0.000000000000000000e+00,5.567278812285243796e-08,1.113455762457048759e-07,1.670183643685573139e-07,2.226911524914097519e-07,2.783639406142621634e-07,3.340367287371145748e-07,3.897095168599669863e-07,4.453823049828193978e-07,5.010550931056718093e-07,5.567278812285242208e-07,6.124006693513766323e-07,6.680734574742290438e-07,7.237462455970814553e-07,7.794190337199338668e-07,8.350918218427862783e-07,8.907646099656386898e-07,9.464373980884911013e-07,1.002110186211343619e-06,1.057782974334196136e-06,1.113455762457048653e-06,1.169128550579901171e-06,1.224801338702753688e-06,1.280474126825606206e-06,1.336146914948458723e-06,1.391819703071311240e-06,1.447492491194163758e-06,1.503165279317016275e-06,1.558838067439868792e-06,1.614510855562721310e-06,1.670183643685573827e-06,1.725856431808426345e-06,1.781529219931278862e-06,1.837202008054131379e-06,1.892874796176983897e-06,1.948547584299836414e-06,2.004220372422688931e-06,2.059893160545541449e-06,2.115565948668393966e-06,2.171238736791246484e-06,2.226911524914099001e-06,2.282584313036951518e-06,2.338257101159804036e-06,2.393929889282656553e-06,2.449602677405509070e-06,2.505275465528361588e-06,2.560948253651214105e-06,2.616621041774066623e-06,2.672293829896919140e-06,2.727966618019771657e-06,2.783639406142624175e-06,2.839312194265476692e-06,2.894984982388329209e-06,2.950657770511181727e-06,3.006330558634034244e-06,3.062003346756886761e-06,3.117676134879739279e-06,3.173348923002591796e-06,3.229021711125444314e-06,3.284694499248296831e-06,3.340367287371149348e-06,3.396040075494001866e-06,3.451712863616854383e-06,3.507385651739706900e-06 +0.000000000000000000e+00,5.921977514770889551e-08,1.184395502954177910e-07,1.776593254431266931e-07,2.368791005908356085e-07,2.960988757385444974e-07,3.553186508862533863e-07,4.145384260339622752e-07,4.737582011816711641e-07,5.329779763293800529e-07,5.921977514770889948e-07,6.514175266247979366e-07,7.106373017725068784e-07,7.698570769202158203e-07,8.290768520679247621e-07,8.882966272156337039e-07,9.475164023633426458e-07,1.006736177511051693e-06,1.065955952658760741e-06,1.125175727806469789e-06,1.184395502954178837e-06,1.243615278101887884e-06,1.302835053249596932e-06,1.362054828397305980e-06,1.421274603545015027e-06,1.480494378692724075e-06,1.539714153840433123e-06,1.598933928988142171e-06,1.658153704135851218e-06,1.717373479283560266e-06,1.776593254431269314e-06,1.835813029578978361e-06,1.895032804726687409e-06,1.954252579874396457e-06,2.013472355022105505e-06,2.072692130169814552e-06,2.131911905317523600e-06,2.191131680465232648e-06,2.250351455612941695e-06,2.309571230760650743e-06,2.368791005908359791e-06,2.428010781056068838e-06,2.487230556203777886e-06,2.546450331351486934e-06,2.605670106499195982e-06,2.664889881646905029e-06,2.724109656794614077e-06,2.783329431942323125e-06,2.842549207090032172e-06,2.901768982237741220e-06,2.960988757385450268e-06,3.020208532533159316e-06,3.079428307680868363e-06,3.138648082828577411e-06,3.197867857976286459e-06,3.257087633123995506e-06,3.316307408271704554e-06,3.375527183419413602e-06,3.434746958567122650e-06,3.493966733714831697e-06,3.553186508862540745e-06,3.612406284010249793e-06,3.671626059157958840e-06,3.730845834305667888e-06 +0.000000000000000000e+00,5.257123224733271654e-08,1.051424644946654331e-07,1.577136967419981496e-07,2.102849289893308662e-07,2.628561612366636092e-07,3.154273934839963522e-07,3.679986257313290952e-07,4.205698579786618382e-07,4.731410902259945812e-07,5.257123224733273242e-07,5.782835547206600672e-07,6.308547869679928103e-07,6.834260192153255533e-07,7.359972514626582963e-07,7.885684837099910393e-07,8.411397159573237823e-07,8.937109482046565253e-07,9.462821804519892683e-07,9.988534126993221172e-07,1.051424644946654860e-06,1.103995877193987603e-06,1.156567109441320346e-06,1.209138341688653089e-06,1.261709573935985832e-06,1.314280806183318575e-06,1.366852038430651318e-06,1.419423270677984061e-06,1.471994502925316804e-06,1.524565735172649547e-06,1.577136967419982290e-06,1.629708199667315033e-06,1.682279431914647776e-06,1.734850664161980519e-06,1.787421896409313262e-06,1.839993128656646005e-06,1.892564360903978748e-06,1.945135593151311491e-06,1.997706825398644234e-06,2.050278057645976977e-06,2.102849289893309720e-06,2.155420522140642463e-06,2.207991754387975206e-06,2.260562986635307949e-06,2.313134218882640693e-06,2.365705451129973436e-06,2.418276683377306179e-06,2.470847915624638922e-06,2.523419147871971665e-06,2.575990380119304408e-06,2.628561612366637151e-06,2.681132844613969894e-06,2.733704076861302637e-06,2.786275309108635380e-06,2.838846541355968123e-06,2.891417773603300866e-06,2.943989005850633609e-06,2.996560238097966352e-06,3.049131470345299095e-06,3.101702702592631838e-06,3.154273934839964581e-06,3.206845167087297324e-06,3.259416399334630067e-06,3.311987631581962810e-06 +0.000000000000000000e+00,5.658441562765605498e-08,1.131688312553121100e-07,1.697532468829681782e-07,2.263376625106242464e-07,2.829220781382803146e-07,3.395064937659363564e-07,3.960909093935923981e-07,4.526753250212484399e-07,5.092597406489045346e-07,5.658441562765606292e-07,6.224285719042167239e-07,6.790129875318728186e-07,7.355974031595289133e-07,7.921818187871850080e-07,8.487662344148411027e-07,9.053506500424971974e-07,9.619350656701532921e-07,1.018519481297809493e-06,1.075103896925465693e-06,1.131688312553121894e-06,1.188272728180778094e-06,1.244857143808434295e-06,1.301441559436090495e-06,1.358025975063746696e-06,1.414610390691402897e-06,1.471194806319059097e-06,1.527779221946715298e-06,1.584363637574371498e-06,1.640948053202027699e-06,1.697532468829683899e-06,1.754116884457340100e-06,1.810701300084996301e-06,1.867285715712652501e-06,1.923870131340308702e-06,1.980454546967964691e-06,2.037038962595620679e-06,2.093623378223276668e-06,2.150207793850932657e-06,2.206792209478588646e-06,2.263376625106244635e-06,2.319961040733900623e-06,2.376545456361556612e-06,2.433129871989212601e-06,2.489714287616868590e-06,2.546298703244524579e-06,2.602883118872180567e-06,2.659467534499836556e-06,2.716051950127492545e-06,2.772636365755148534e-06,2.829220781382804523e-06,2.885805197010460511e-06,2.942389612638116500e-06,2.998974028265772489e-06,3.055558443893428478e-06,3.112142859521084467e-06,3.168727275148740456e-06,3.225311690776396444e-06,3.281896106404052433e-06,3.338480522031708422e-06,3.395064937659364411e-06,3.451649353287020400e-06,3.508233768914676388e-06,3.564818184542332377e-06 +0.000000000000000000e+00,5.572103540603368154e-08,1.114420708120673631e-07,1.671631062181010446e-07,2.228841416241347262e-07,2.786051770301684077e-07,3.343262124362020892e-07,3.900472478422357708e-07,4.457682832482694523e-07,5.014893186543030809e-07,5.572103540603367095e-07,6.129313894663703381e-07,6.686524248724039667e-07,7.243734602784375953e-07,7.800944956844712239e-07,8.358155310905048525e-07,8.915365664965384811e-07,9.472576019025721097e-07,1.002978637308605738e-06,1.058699672714639367e-06,1.114420708120672995e-06,1.170141743526706624e-06,1.225862778932740253e-06,1.281583814338773881e-06,1.337304849744807510e-06,1.393025885150841138e-06,1.448746920556874767e-06,1.504467955962908396e-06,1.560188991368942024e-06,1.615910026774975653e-06,1.671631062181009281e-06,1.727352097587042910e-06,1.783073132993076539e-06,1.838794168399110167e-06,1.894515203805143796e-06,1.950236239211177424e-06,2.005957274617211053e-06,2.061678310023244682e-06,2.117399345429278310e-06,2.173120380835311939e-06,2.228841416241345567e-06,2.284562451647379196e-06,2.340283487053412825e-06,2.396004522459446453e-06,2.451725557865480082e-06,2.507446593271513710e-06,2.563167628677547339e-06,2.618888664083580968e-06,2.674609699489614596e-06,2.730330734895648225e-06,2.786051770301681853e-06,2.841772805707715482e-06,2.897493841113749111e-06,2.953214876519782739e-06,3.008935911925816368e-06,3.064656947331849996e-06,3.120377982737883625e-06,3.176099018143917254e-06,3.231820053549950882e-06,3.287541088955984511e-06,3.343262124362018139e-06,3.398983159768051768e-06,3.454704195174085397e-06,3.510425230580119025e-06 +0.000000000000000000e+00,5.239566558361919087e-08,1.047913311672383817e-07,1.571869967508575726e-07,2.095826623344767635e-07,2.619783279180959808e-07,3.143739935017151981e-07,3.667696590853344155e-07,4.191653246689536328e-07,4.715609902525728502e-07,5.239566558361920675e-07,5.763523214198112848e-07,6.287479870034305022e-07,6.811436525870497195e-07,7.335393181706689368e-07,7.859349837542881542e-07,8.383306493379073715e-07,8.907263149215265889e-07,9.431219805051458062e-07,9.955176460887651294e-07,1.047913311672384347e-06,1.100308977256003564e-06,1.152704642839622781e-06,1.205100308423241999e-06,1.257495974006861216e-06,1.309891639590480433e-06,1.362287305174099651e-06,1.414682970757718868e-06,1.467078636341338085e-06,1.519474301924957303e-06,1.571869967508576520e-06,1.624265633092195737e-06,1.676661298675814955e-06,1.729056964259434172e-06,1.781452629843053389e-06,1.833848295426672607e-06,1.886243961010291824e-06,1.938639626593911041e-06,1.991035292177530259e-06,2.043430957761149476e-06,2.095826623344768694e-06,2.148222288928387911e-06,2.200617954512007128e-06,2.253013620095626346e-06,2.305409285679245563e-06,2.357804951262864780e-06,2.410200616846483998e-06,2.462596282430103215e-06,2.514991948013722432e-06,2.567387613597341650e-06,2.619783279180960867e-06,2.672178944764580084e-06,2.724574610348199302e-06,2.776970275931818519e-06,2.829365941515437736e-06,2.881761607099056954e-06,2.934157272682676171e-06,2.986552938266295388e-06,3.038948603849914606e-06,3.091344269433533823e-06,3.143739935017153040e-06,3.196135600600772258e-06,3.248531266184391475e-06,3.300926931768010692e-06 +0.000000000000000000e+00,5.978528258304924589e-08,1.195705651660984918e-07,1.793558477491477377e-07,2.391411303321969836e-07,2.989264129152462030e-07,3.587116954982954224e-07,4.184969780813446418e-07,4.782822606643938613e-07,5.380675432474430807e-07,5.978528258304923001e-07,6.576381084135415195e-07,7.174233909965907389e-07,7.772086735796399584e-07,8.369939561626891778e-07,8.967792387457383972e-07,9.565645213287875107e-07,1.016349803911836730e-06,1.076135086494885950e-06,1.135920369077935169e-06,1.195705651660984388e-06,1.255490934244033608e-06,1.315276216827082827e-06,1.375061499410132047e-06,1.434846781993181266e-06,1.494632064576230486e-06,1.554417347159279705e-06,1.614202629742328924e-06,1.673987912325378144e-06,1.733773194908427363e-06,1.793558477491476583e-06,1.853343760074525802e-06,1.913129042657575021e-06,1.972914325240624241e-06,2.032699607823673460e-06,2.092484890406722680e-06,2.152270172989771899e-06,2.212055455572821119e-06,2.271840738155870338e-06,2.331626020738919557e-06,2.391411303321968777e-06,2.451196585905017996e-06,2.510981868488067216e-06,2.570767151071116435e-06,2.630552433654165655e-06,2.690337716237214874e-06,2.750122998820264093e-06,2.809908281403313313e-06,2.869693563986362532e-06,2.929478846569411752e-06,2.989264129152460971e-06,3.049049411735510190e-06,3.108834694318559410e-06,3.168619976901608629e-06,3.228405259484657849e-06,3.288190542067707068e-06,3.347975824650756288e-06,3.407761107233805507e-06,3.467546389816854726e-06,3.527331672399903946e-06,3.587116954982953165e-06,3.646902237566002385e-06,3.706687520149051604e-06,3.766472802732100824e-06 +0.000000000000000000e+00,5.587080497932645216e-08,1.117416099586529043e-07,1.676124149379793499e-07,2.234832199173057822e-07,2.793540248966322409e-07,3.352248298759586997e-07,3.910956348552851585e-07,4.469664398346116173e-07,5.028372448139380761e-07,5.587080497932644819e-07,6.145788547725908877e-07,6.704496597519172936e-07,7.263204647312436994e-07,7.821912697105701052e-07,8.380620746898965111e-07,8.939328796692229169e-07,9.498036846485493228e-07,1.005674489627875729e-06,1.061545294607202029e-06,1.117416099586528329e-06,1.173286904565854628e-06,1.229157709545180928e-06,1.285028514524507228e-06,1.340899319503833528e-06,1.396770124483159828e-06,1.452640929462486128e-06,1.508511734441812428e-06,1.564382539421138728e-06,1.620253344400465028e-06,1.676124149379791328e-06,1.731994954359117628e-06,1.787865759338443928e-06,1.843736564317770228e-06,1.899607369297096528e-06,1.955478174276422828e-06,2.011348979255749340e-06,2.067219784235075851e-06,2.123090589214402363e-06,2.178961394193728875e-06,2.234832199173055386e-06,2.290703004152381898e-06,2.346573809131708410e-06,2.402444614111034922e-06,2.458315419090361433e-06,2.514186224069687945e-06,2.570057029049014457e-06,2.625927834028340968e-06,2.681798639007667480e-06,2.737669443986993992e-06,2.793540248966320504e-06,2.849411053945647015e-06,2.905281858924973527e-06,2.961152663904300039e-06,3.017023468883626550e-06,3.072894273862953062e-06,3.128765078842279574e-06,3.184635883821606086e-06,3.240506688800932597e-06,3.296377493780259109e-06,3.352248298759585621e-06,3.408119103738912133e-06,3.463989908718238644e-06,3.519860713697565156e-06 +0.000000000000000000e+00,5.572103540603734098e-08,1.114420708120746820e-07,1.671631062181120296e-07,2.228841416241493904e-07,2.786051770301867777e-07,3.343262124362241650e-07,3.900472478422615523e-07,4.457682832482989396e-07,5.014893186543363269e-07,5.572103540603737672e-07,6.129313894664112074e-07,6.686524248724486477e-07,7.243734602784860879e-07,7.800944956845235282e-07,8.358155310905609684e-07,8.915365664965984087e-07,9.472576019026358489e-07,1.002978637308673289e-06,1.058699672714710729e-06,1.114420708120748170e-06,1.170141743526785610e-06,1.225862778932823050e-06,1.281583814338860490e-06,1.337304849744897931e-06,1.393025885150935371e-06,1.448746920556972811e-06,1.504467955963010251e-06,1.560188991369047692e-06,1.615910026775085132e-06,1.671631062181122572e-06,1.727352097587160012e-06,1.783073132993197453e-06,1.838794168399234893e-06,1.894515203805272333e-06,1.950236239211309562e-06,2.005957274617347002e-06,2.061678310023384442e-06,2.117399345429421882e-06,2.173120380835459323e-06,2.228841416241496763e-06,2.284562451647534203e-06,2.340283487053571643e-06,2.396004522459609084e-06,2.451725557865646524e-06,2.507446593271683964e-06,2.563167628677721404e-06,2.618888664083758845e-06,2.674609699489796285e-06,2.730330734895833725e-06,2.786051770301871165e-06,2.841772805707908606e-06,2.897493841113946046e-06,2.953214876519983486e-06,3.008935911926020926e-06,3.064656947332058367e-06,3.120377982738095807e-06,3.176099018144133247e-06,3.231820053550170687e-06,3.287541088956208128e-06,3.343262124362245568e-06,3.398983159768283008e-06,3.454704195174320448e-06,3.510425230580357888e-06 +0.000000000000000000e+00,5.921977514771610190e-08,1.184395502954322038e-07,1.776593254431483189e-07,2.368791005908644341e-07,2.960988757385805492e-07,3.553186508862966379e-07,4.145384260340127266e-07,4.737582011817288152e-07,5.329779763294449568e-07,5.921977514771610985e-07,6.514175266248772401e-07,7.106373017725933817e-07,7.698570769203095233e-07,8.290768520680256649e-07,8.882966272157418065e-07,9.475164023634579481e-07,1.006736177511174090e-06,1.065955952658890337e-06,1.125175727806606585e-06,1.184395502954322832e-06,1.243615278102039080e-06,1.302835053249755327e-06,1.362054828397471575e-06,1.421274603545187822e-06,1.480494378692904070e-06,1.539714153840620317e-06,1.598933928988336565e-06,1.658153704136052812e-06,1.717373479283769060e-06,1.776593254431485307e-06,1.835813029579201555e-06,1.895032804726917802e-06,1.954252579874634050e-06,2.013472355022350297e-06,2.072692130170066545e-06,2.131911905317782792e-06,2.191131680465499039e-06,2.250351455613215287e-06,2.309571230760931534e-06,2.368791005908647782e-06,2.428010781056364029e-06,2.487230556204080277e-06,2.546450331351796524e-06,2.605670106499512772e-06,2.664889881647229019e-06,2.724109656794945267e-06,2.783329431942661514e-06,2.842549207090377762e-06,2.901768982238094009e-06,2.960988757385810257e-06,3.020208532533526504e-06,3.079428307681242752e-06,3.138648082828958999e-06,3.197867857976675247e-06,3.257087633124391494e-06,3.316307408272107742e-06,3.375527183419823989e-06,3.434746958567540237e-06,3.493966733715256484e-06,3.553186508862972732e-06,3.612406284010688979e-06,3.671626059158405227e-06,3.730845834306121474e-06 +0.000000000000000000e+00,5.257123224734010823e-08,1.051424644946802165e-07,1.577136967420203313e-07,2.102849289893604594e-07,2.628561612367005610e-07,3.154273934840406626e-07,3.679986257313807642e-07,4.205698579787208658e-07,4.731410902260609674e-07,5.257123224734011220e-07,5.782835547207412765e-07,6.308547869680814311e-07,6.834260192154215856e-07,7.359972514627617402e-07,7.885684837101018947e-07,8.411397159574420493e-07,8.937109482047822038e-07,9.462821804521223584e-07,9.988534126994625129e-07,1.051424644946802667e-06,1.103995877194142822e-06,1.156567109441482977e-06,1.209138341688823131e-06,1.261709573936163286e-06,1.314280806183503440e-06,1.366852038430843595e-06,1.419423270678183749e-06,1.471994502925523904e-06,1.524565735172864058e-06,1.577136967420204213e-06,1.629708199667544368e-06,1.682279431914884522e-06,1.734850664162224677e-06,1.787421896409564831e-06,1.839993128656904986e-06,1.892564360904245140e-06,1.945135593151585083e-06,1.997706825398925026e-06,2.050278057646264969e-06,2.102849289893604911e-06,2.155420522140944854e-06,2.207991754388284797e-06,2.260562986635624740e-06,2.313134218882964683e-06,2.365705451130304625e-06,2.418276683377644568e-06,2.470847915624984511e-06,2.523419147872324454e-06,2.575990380119664397e-06,2.628561612367004339e-06,2.681132844614344282e-06,2.733704076861684225e-06,2.786275309109024168e-06,2.838846541356364111e-06,2.891417773603704053e-06,2.943989005851043996e-06,2.996560238098383939e-06,3.049131470345723882e-06,3.101702702593063824e-06,3.154273934840403767e-06,3.206845167087743710e-06,3.259416399335083653e-06,3.311987631582423596e-06 +0.000000000000000000e+00,5.658441562766211656e-08,1.131688312553242331e-07,1.697532468829863365e-07,2.263376625106484398e-07,2.829220781383105431e-07,3.395064937659726729e-07,3.960909093936348027e-07,4.526753250212969325e-07,5.092597406489590623e-07,5.658441562766211921e-07,6.224285719042833219e-07,6.790129875319454517e-07,7.355974031596075815e-07,7.921818187872697113e-07,8.487662344149318411e-07,9.053506500425939709e-07,9.619350656702559948e-07,1.018519481297917913e-06,1.075103896925579831e-06,1.131688312553241749e-06,1.188272728180903667e-06,1.244857143808565585e-06,1.301441559436227503e-06,1.358025975063889421e-06,1.414610390691551339e-06,1.471194806319213257e-06,1.527779221946875175e-06,1.584363637574537093e-06,1.640948053202199011e-06,1.697532468829860929e-06,1.754116884457522847e-06,1.810701300085184765e-06,1.867285715712846683e-06,1.923870131340508601e-06,1.980454546968170520e-06,2.037038962595832438e-06,2.093623378223494356e-06,2.150207793851156274e-06,2.206792209478818192e-06,2.263376625106480110e-06,2.319961040734142028e-06,2.376545456361803946e-06,2.433129871989465864e-06,2.489714287617127782e-06,2.546298703244789700e-06,2.602883118872451618e-06,2.659467534500113536e-06,2.716051950127775454e-06,2.772636365755437372e-06,2.829220781383099290e-06,2.885805197010761208e-06,2.942389612638423126e-06,2.998974028266085044e-06,3.055558443893746962e-06,3.112142859521408880e-06,3.168727275149070798e-06,3.225311690776732716e-06,3.281896106404394634e-06,3.338480522032056552e-06,3.395064937659718471e-06,3.451649353287380389e-06,3.508233768915042307e-06,3.564818184542704225e-06 +0.000000000000000000e+00,5.815412740711764108e-08,1.163082548142352822e-07,1.744623822213529232e-07,2.326165096284705643e-07,2.907706370355882318e-07,3.489247644427058994e-07,4.070788918498235669e-07,4.652330192569412345e-07,5.233871466640589020e-07,5.815412740711765696e-07,6.396954014782942371e-07,6.978495288854119047e-07,7.560036562925295722e-07,8.141577836996472397e-07,8.723119111067649073e-07,9.304660385138825748e-07,9.886201659210002424e-07,1.046774293328117804e-06,1.104928420735235366e-06,1.163082548142352927e-06,1.221236675549470489e-06,1.279390802956588051e-06,1.337544930363705612e-06,1.395699057770823174e-06,1.453853185177940736e-06,1.512007312585058297e-06,1.570161439992175859e-06,1.628315567399293421e-06,1.686469694806410982e-06,1.744623822213528544e-06,1.802777949620646106e-06,1.860932077027763667e-06,1.919086204434881441e-06,1.977240331841999214e-06,2.035394459249116988e-06,2.093548586656234761e-06,2.151702714063352534e-06,2.209856841470470308e-06,2.268010968877588081e-06,2.326165096284705855e-06,2.384319223691823628e-06,2.442473351098941402e-06,2.500627478506059175e-06,2.558781605913176948e-06,2.616935733320294722e-06,2.675089860727412495e-06,2.733243988134530269e-06,2.791398115541648042e-06,2.849552242948765816e-06,2.907706370355883589e-06,2.965860497763001362e-06,3.024014625170119136e-06,3.082168752577236909e-06,3.140322879984354683e-06,3.198477007391472456e-06,3.256631134798590230e-06,3.314785262205708003e-06,3.372939389612825776e-06,3.431093517019943550e-06,3.489247644427061323e-06,3.547401771834179097e-06,3.605555899241296870e-06,3.663710026648414644e-06 +0.000000000000000000e+00,5.923270642741646213e-08,1.184654128548329243e-07,1.776981192822493930e-07,2.369308257096658750e-07,2.961635321370823570e-07,3.553962385644988389e-07,4.146289449919153209e-07,4.738616514193318029e-07,5.330943578467483378e-07,5.923270642741648198e-07,6.515597707015813018e-07,7.107924771289977838e-07,7.700251835564142658e-07,8.292578899838307477e-07,8.884905964112472297e-07,9.477233028386637117e-07,1.006956009266080194e-06,1.066188715693496676e-06,1.125421422120913158e-06,1.184654128548329640e-06,1.243886834975746122e-06,1.303119541403162604e-06,1.362352247830579086e-06,1.421584954257995568e-06,1.480817660685412050e-06,1.540050367112828532e-06,1.599283073540245013e-06,1.658515779967661495e-06,1.717748486395077977e-06,1.776981192822494459e-06,1.836213899249910941e-06,1.895446605677327423e-06,1.954679312104743694e-06,2.013912018532159964e-06,2.073144724959576234e-06,2.132377431386992504e-06,2.191610137814408775e-06,2.250842844241825045e-06,2.310075550669241315e-06,2.369308257096657585e-06,2.428540963524073855e-06,2.487773669951490126e-06,2.547006376378906396e-06,2.606239082806322666e-06,2.665471789233738936e-06,2.724704495661155207e-06,2.783937202088571477e-06,2.843169908515987747e-06,2.902402614943404017e-06,2.961635321370820287e-06,3.020868027798236558e-06,3.080100734225652828e-06,3.139333440653069098e-06,3.198566147080485368e-06,3.257798853507901639e-06,3.317031559935317909e-06,3.376264266362734179e-06,3.435496972790150449e-06,3.494729679217566719e-06,3.553962385644982990e-06,3.613195092072399260e-06,3.672427798499815530e-06,3.731660504927231800e-06 +0.000000000000000000e+00,5.459616587551157564e-08,1.091923317510231513e-07,1.637884976265347203e-07,2.183846635020462761e-07,2.729808293775578319e-07,3.275769952530693877e-07,3.821731611285809435e-07,4.367693270040924992e-07,4.913654928796040550e-07,5.459616587551156638e-07,6.005578246306272725e-07,6.551539905061388812e-07,7.097501563816504900e-07,7.643463222571620987e-07,8.189424881326737074e-07,8.735386540081853161e-07,9.281348198836969249e-07,9.827309857592085336e-07,1.037327151634720036e-06,1.091923317510231539e-06,1.146519483385743042e-06,1.201115649261254545e-06,1.255711815136766048e-06,1.310307981012277551e-06,1.364904146887789054e-06,1.419500312763300556e-06,1.474096478638812059e-06,1.528692644514323562e-06,1.583288810389835065e-06,1.637884976265346568e-06,1.692481142140858071e-06,1.747077308016369573e-06,1.801673473891881076e-06,1.856269639767392579e-06,1.910865805642904082e-06,1.965461971518415797e-06,2.020058137393927511e-06,2.074654303269439226e-06,2.129250469144950940e-06,2.183846635020462655e-06,2.238442800895974370e-06,2.293038966771486084e-06,2.347635132646997799e-06,2.402231298522509513e-06,2.456827464398021228e-06,2.511423630273532943e-06,2.566019796149044657e-06,2.620615962024556372e-06,2.675212127900068087e-06,2.729808293775579801e-06,2.784404459651091516e-06,2.839000625526603230e-06,2.893596791402114945e-06,2.948192957277626660e-06,3.002789123153138374e-06,3.057385289028650089e-06,3.111981454904161803e-06,3.166577620779673518e-06,3.221173786655185233e-06,3.275769952530696947e-06,3.330366118406208662e-06,3.384962284281720376e-06,3.439558450157232091e-06 +0.000000000000000000e+00,5.815412740712367618e-08,1.163082548142473524e-07,1.744623822213710286e-07,2.326165096284947047e-07,2.907706370356184074e-07,3.489247644427421100e-07,4.070788918498658127e-07,4.652330192569895154e-07,5.233871466641132180e-07,5.815412740712369207e-07,6.396954014783606233e-07,6.978495288854843260e-07,7.560036562926080286e-07,8.141577836997317313e-07,8.723119111068554339e-07,9.304660385139791366e-07,9.886201659211029451e-07,1.046774293328226648e-06,1.104928420735350350e-06,1.163082548142474053e-06,1.221236675549597756e-06,1.279390802956721458e-06,1.337544930363845161e-06,1.395699057770968864e-06,1.453853185178092566e-06,1.512007312585216269e-06,1.570161439992339972e-06,1.628315567399463674e-06,1.686469694806587377e-06,1.744623822213711080e-06,1.802777949620834782e-06,1.860932077027958485e-06,1.919086204435082188e-06,1.977240331842205890e-06,2.035394459249329593e-06,2.093548586656453296e-06,2.151702714063576998e-06,2.209856841470700701e-06,2.268010968877824404e-06,2.326165096284948106e-06,2.384319223692071809e-06,2.442473351099195511e-06,2.500627478506319214e-06,2.558781605913442917e-06,2.616935733320566619e-06,2.675089860727690322e-06,2.733243988134814025e-06,2.791398115541937727e-06,2.849552242949061430e-06,2.907706370356185133e-06,2.965860497763308835e-06,3.024014625170432538e-06,3.082168752577556241e-06,3.140322879984679943e-06,3.198477007391803646e-06,3.256631134798927349e-06,3.314785262206051051e-06,3.372939389613174754e-06,3.431093517020298457e-06,3.489247644427422159e-06,3.547401771834545862e-06,3.605555899241669565e-06,3.663710026648793267e-06 +0.000000000000000000e+00,5.923270642742267591e-08,1.184654128548453518e-07,1.776981192822680277e-07,2.369308257096907036e-07,2.961635321371133795e-07,3.553962385645360555e-07,4.146289449919587314e-07,4.738616514193814073e-07,5.330943578468040302e-07,5.923270642742266532e-07,6.515597707016492762e-07,7.107924771290718992e-07,7.700251835564945221e-07,8.292578899839171451e-07,8.884905964113397681e-07,9.477233028387623910e-07,1.006956009266185014e-06,1.066188715693607637e-06,1.125421422121030260e-06,1.184654128548452883e-06,1.243886834975875506e-06,1.303119541403298129e-06,1.362352247830720752e-06,1.421584954258143375e-06,1.480817660685565998e-06,1.540050367112988621e-06,1.599283073540411244e-06,1.658515779967833867e-06,1.717748486395256490e-06,1.776981192822679113e-06,1.836213899250101736e-06,1.895446605677524359e-06,1.954679312104946982e-06,2.013912018532369604e-06,2.073144724959792227e-06,2.132377431387214850e-06,2.191610137814637473e-06,2.250842844242060096e-06,2.310075550669482719e-06,2.369308257096905342e-06,2.428540963524327965e-06,2.487773669951750588e-06,2.547006376379173211e-06,2.606239082806595834e-06,2.665471789234018457e-06,2.724704495661441080e-06,2.783937202088863703e-06,2.843169908516286326e-06,2.902402614943708949e-06,2.961635321371131572e-06,3.020868027798554195e-06,3.080100734225976818e-06,3.139333440653399441e-06,3.198566147080822064e-06,3.257798853508244687e-06,3.317031559935667310e-06,3.376264266363089933e-06,3.435496972790512556e-06,3.494729679217935179e-06,3.553962385645357802e-06,3.613195092072780425e-06,3.672427798500203048e-06,3.731660504927625671e-06 +0.000000000000000000e+00,5.459616587551778942e-08,1.091923317510355788e-07,1.637884976265533550e-07,2.183846635020711312e-07,2.729808293775889074e-07,3.275769952531067101e-07,3.821731611286245127e-07,4.367693270041423154e-07,4.913654928796600651e-07,5.459616587551778148e-07,6.005578246306955645e-07,6.551539905062133142e-07,7.097501563817310640e-07,7.643463222572488137e-07,8.189424881327665634e-07,8.735386540082843131e-07,9.281348198838020628e-07,9.827309857593197067e-07,1.037327151634837351e-06,1.091923317510354994e-06,1.146519483385872638e-06,1.201115649261390282e-06,1.255711815136907926e-06,1.310307981012425570e-06,1.364904146887943214e-06,1.419500312763460857e-06,1.474096478638978501e-06,1.528692644514496145e-06,1.583288810390013789e-06,1.637884976265531433e-06,1.692481142141049077e-06,1.747077308016566720e-06,1.801673473892084364e-06,1.856269639767602008e-06,1.910865805643119652e-06,1.965461971518637296e-06,2.020058137394154940e-06,2.074654303269672583e-06,2.129250469145190227e-06,2.183846635020707871e-06,2.238442800896225515e-06,2.293038966771743159e-06,2.347635132647260803e-06,2.402231298522778446e-06,2.456827464398296090e-06,2.511423630273813734e-06,2.566019796149331378e-06,2.620615962024849022e-06,2.675212127900366666e-06,2.729808293775884309e-06,2.784404459651401953e-06,2.839000625526919597e-06,2.893596791402437241e-06,2.948192957277954885e-06,3.002789123153472529e-06,3.057385289028990173e-06,3.111981454904507816e-06,3.166577620780025460e-06,3.221173786655543104e-06,3.275769952531060748e-06,3.330366118406578392e-06,3.384962284282096036e-06,3.439558450157613679e-06 +0.000000000000000000e+00,5.526929347022342631e-08,1.105385869404468526e-07,1.658078804106702789e-07,2.210771738808937052e-07,2.763464673511171316e-07,3.316157608213405579e-07,3.868850542915639842e-07,4.421543477617874105e-07,4.974236412320107839e-07,5.526929347022341572e-07,6.079622281724575306e-07,6.632315216426809040e-07,7.185008151129042774e-07,7.737701085831276507e-07,8.290394020533510241e-07,8.843086955235743975e-07,9.395779889937977709e-07,9.948472824640211442e-07,1.050116575934244518e-06,1.105385869404467891e-06,1.160655162874691264e-06,1.215924456344914638e-06,1.271193749815138011e-06,1.326463043285361384e-06,1.381732336755584758e-06,1.437001630225808131e-06,1.492270923696031505e-06,1.547540217166254878e-06,1.602809510636478251e-06,1.658078804106701625e-06,1.713348097576924998e-06,1.768617391047148371e-06,1.823886684517371745e-06,1.879155977987595118e-06,1.934425271457818280e-06,1.989694564928041441e-06,2.044963858398264603e-06,2.100233151868487765e-06,2.155502445338710926e-06,2.210771738808934088e-06,2.266041032279157249e-06,2.321310325749380411e-06,2.376579619219603573e-06,2.431848912689826734e-06,2.487118206160049896e-06,2.542387499630273058e-06,2.597656793100496219e-06,2.652926086570719381e-06,2.708195380040942542e-06,2.763464673511165704e-06,2.818733966981388866e-06,2.874003260451612027e-06,2.929272553921835189e-06,2.984541847392058350e-06,3.039811140862281512e-06,3.095080434332504674e-06,3.150349727802727835e-06,3.205619021272950997e-06,3.260888314743174159e-06,3.316157608213397320e-06,3.371426901683620482e-06,3.426696195153843643e-06,3.481965488624066805e-06 +0.000000000000000000e+00,5.678421927423555355e-08,1.135684385484711071e-07,1.703526578227066540e-07,2.271368770969421877e-07,2.839210963711776949e-07,3.407053156454132022e-07,3.974895349196487094e-07,4.542737541938842166e-07,5.110579734681197238e-07,5.678421927423551781e-07,6.246264120165906324e-07,6.814106312908260867e-07,7.381948505650615410e-07,7.949790698392969953e-07,8.517632891135324496e-07,9.085475083877679038e-07,9.653317276620033581e-07,1.022115946936238812e-06,1.078900166210474267e-06,1.135684385484709721e-06,1.192468604758945175e-06,1.249252824033180630e-06,1.306037043307416084e-06,1.362821262581651538e-06,1.419605481855886992e-06,1.476389701130122447e-06,1.533173920404357901e-06,1.589958139678593355e-06,1.646742358952828810e-06,1.703526578227064264e-06,1.760310797501299718e-06,1.817095016775535172e-06,1.873879236049770627e-06,1.930663455324006293e-06,1.987447674598242171e-06,2.044231893872478048e-06,2.101016113146713926e-06,2.157800332420949804e-06,2.214584551695185682e-06,2.271368770969421560e-06,2.328152990243657437e-06,2.384937209517893315e-06,2.441721428792129193e-06,2.498505648066365071e-06,2.555289867340600949e-06,2.612074086614836826e-06,2.668858305889072704e-06,2.725642525163308582e-06,2.782426744437544460e-06,2.839210963711780338e-06,2.895995182986016215e-06,2.952779402260252093e-06,3.009563621534487971e-06,3.066347840808723849e-06,3.123132060082959727e-06,3.179916279357195604e-06,3.236700498631431482e-06,3.293484717905667360e-06,3.350268937179903238e-06,3.407053156454139116e-06,3.463837375728374993e-06,3.520621595002610871e-06,3.577405814276846749e-06 +0.000000000000000000e+00,5.122948286894699634e-08,1.024589657378939927e-07,1.536884486068409824e-07,2.049179314757879589e-07,2.561474143447349089e-07,3.073768972136818590e-07,3.586063800826288090e-07,4.098358629515757590e-07,4.610653458205227090e-07,5.122948286894696061e-07,5.635243115584165032e-07,6.147537944273634003e-07,6.659832772963102974e-07,7.172127601652571944e-07,7.684422430342040915e-07,8.196717259031509886e-07,8.709012087720978857e-07,9.221306916410447828e-07,9.733601745099917857e-07,1.024589657378938789e-06,1.075819140247885792e-06,1.127048623116832795e-06,1.178278105985779798e-06,1.229507588854726801e-06,1.280737071723673804e-06,1.331966554592620806e-06,1.383196037461567809e-06,1.434425520330514812e-06,1.485655003199461815e-06,1.536884486068408818e-06,1.588113968937355821e-06,1.639343451806302824e-06,1.690572934675249827e-06,1.741802417544196830e-06,1.793031900413143833e-06,1.844261383282090836e-06,1.895490866151037839e-06,1.946720349019984842e-06,1.997949831888931845e-06,2.049179314757878848e-06,2.100408797626825851e-06,2.151638280495772854e-06,2.202867763364719857e-06,2.254097246233666860e-06,2.305326729102613863e-06,2.356556211971560866e-06,2.407785694840507869e-06,2.459015177709454872e-06,2.510244660578401875e-06,2.561474143447348878e-06,2.612703626316295881e-06,2.663933109185242883e-06,2.715162592054189886e-06,2.766392074923136889e-06,2.817621557792083892e-06,2.868851040661030895e-06,2.920080523529977898e-06,2.971310006398924901e-06,3.022539489267871904e-06,3.073768972136818907e-06,3.124998455005765910e-06,3.176227937874712913e-06,3.227457420743659916e-06 +0.000000000000000000e+00,5.526929347022978568e-08,1.105385869404595714e-07,1.658078804106893636e-07,2.210771738809191692e-07,2.763464673511489482e-07,3.316157608213787273e-07,3.868850542916085064e-07,4.421543477618382854e-07,4.974236412320680645e-07,5.526929347022978965e-07,6.079622281725277285e-07,6.632315216427575605e-07,7.185008151129873925e-07,7.737701085832172245e-07,8.290394020534470565e-07,8.843086955236768885e-07,9.395779889939067205e-07,9.948472824641365525e-07,1.050116575934366279e-06,1.105385869404596005e-06,1.160655162874825731e-06,1.215924456345055457e-06,1.271193749815285183e-06,1.326463043285514909e-06,1.381732336755744635e-06,1.437001630225974361e-06,1.492270923696204088e-06,1.547540217166433814e-06,1.602809510636663540e-06,1.658078804106893266e-06,1.713348097577122992e-06,1.768617391047352718e-06,1.823886684517582444e-06,1.879155977987812170e-06,1.934425271458041897e-06,1.989694564928271834e-06,2.044963858398501772e-06,2.100233151868731710e-06,2.155502445338961648e-06,2.210771738809191586e-06,2.266041032279421524e-06,2.321310325749651462e-06,2.376579619219881400e-06,2.431848912690111337e-06,2.487118206160341275e-06,2.542387499630571213e-06,2.597656793100801151e-06,2.652926086571031089e-06,2.708195380041261027e-06,2.763464673511490965e-06,2.818733966981720903e-06,2.874003260451950840e-06,2.929272553922180778e-06,2.984541847392410716e-06,3.039811140862640654e-06,3.095080434332870592e-06,3.150349727803100530e-06,3.205619021273330468e-06,3.260888314743560406e-06,3.316157608213790343e-06,3.371426901684020281e-06,3.426696195154250219e-06,3.481965488624480157e-06 +0.000000000000000000e+00,5.678421927424171439e-08,1.135684385484834288e-07,1.703526578227251564e-07,2.271368770969668840e-07,2.839210963712086116e-07,3.407053156454503128e-07,3.974895349196920140e-07,4.542737541939337151e-07,5.110579734681754163e-07,5.678421927424171174e-07,6.246264120166588186e-07,6.814106312909005197e-07,7.381948505651422209e-07,7.949790698393839220e-07,8.517632891136256232e-07,9.085475083878673243e-07,9.653317276621090255e-07,1.022115946936350833e-06,1.078900166210592640e-06,1.135684385484834447e-06,1.192468604759076254e-06,1.249252824033318061e-06,1.306037043307559868e-06,1.362821262581801675e-06,1.419605481856043482e-06,1.476389701130285289e-06,1.533173920404527096e-06,1.589958139678768903e-06,1.646742358953010710e-06,1.703526578227252517e-06,1.760310797501494324e-06,1.817095016775736131e-06,1.873879236049977938e-06,1.930663455324219745e-06,1.987447674598461552e-06,2.044231893872703359e-06,2.101016113146945166e-06,2.157800332421186973e-06,2.214584551695428780e-06,2.271368770969670587e-06,2.328152990243912394e-06,2.384937209518154201e-06,2.441721428792396008e-06,2.498505648066637815e-06,2.555289867340879622e-06,2.612074086615121429e-06,2.668858305889363236e-06,2.725642525163605044e-06,2.782426744437846851e-06,2.839210963712088658e-06,2.895995182986330465e-06,2.952779402260572272e-06,3.009563621534814079e-06,3.066347840809055886e-06,3.123132060083297693e-06,3.179916279357539500e-06,3.236700498631781307e-06,3.293484717906023114e-06,3.350268937180264921e-06,3.407053156454506728e-06,3.463837375728748535e-06,3.520621595002990342e-06,3.577405814277232149e-06 +0.000000000000000000e+00,5.122948286895336894e-08,1.024589657379067379e-07,1.536884486068601201e-07,2.049179314758135022e-07,2.561474143447668844e-07,3.073768972137202401e-07,3.586063800826735958e-07,4.098358629516269516e-07,4.610653458205803073e-07,5.122948286895336630e-07,5.635243115584870187e-07,6.147537944274403744e-07,6.659832772963937301e-07,7.172127601653470858e-07,7.684422430343004415e-07,8.196717259032537972e-07,8.709012087722071529e-07,9.221306916411605086e-07,9.733601745101137585e-07,1.024589657379067114e-06,1.075819140248020470e-06,1.127048623116973826e-06,1.178278105985927181e-06,1.229507588854880537e-06,1.280737071723833893e-06,1.331966554592787248e-06,1.383196037461740604e-06,1.434425520330693960e-06,1.485655003199647316e-06,1.536884486068600671e-06,1.588113968937554027e-06,1.639343451806507383e-06,1.690572934675460738e-06,1.741802417544414094e-06,1.793031900413367450e-06,1.844261383282320806e-06,1.895490866151274161e-06,1.946720349020227517e-06,1.997949831889180873e-06,2.049179314758134228e-06,2.100408797627087584e-06,2.151638280496040940e-06,2.202867763364994295e-06,2.254097246233947651e-06,2.305326729102901007e-06,2.356556211971854363e-06,2.407785694840807718e-06,2.459015177709761074e-06,2.510244660578714430e-06,2.561474143447667785e-06,2.612703626316621141e-06,2.663933109185574497e-06,2.715162592054527853e-06,2.766392074923481208e-06,2.817621557792434564e-06,2.868851040661387920e-06,2.920080523530341275e-06,2.971310006399294631e-06,3.022539489268247987e-06,3.073768972137201343e-06,3.124998455006154698e-06,3.176227937875108054e-06,3.227457420744061410e-06 +0.000000000000000000e+00,5.204395527128581470e-08,1.040879105425716294e-07,1.561318658138574441e-07,2.081758210851432588e-07,2.602197763564290470e-07,3.122637316277148353e-07,3.643076868990006235e-07,4.163516421702864117e-07,4.683955974415722000e-07,5.204395527128579882e-07,5.724835079841437764e-07,6.245274632554295647e-07,6.765714185267153529e-07,7.286153737980011411e-07,7.806593290692869294e-07,8.327032843405727176e-07,8.847472396118585058e-07,9.367911948831442941e-07,9.888351501544301882e-07,1.040879105425716188e-06,1.092923060697002188e-06,1.144967015968288188e-06,1.197010971239574188e-06,1.249054926510860188e-06,1.301098881782146188e-06,1.353142837053432188e-06,1.405186792324718188e-06,1.457230747596004188e-06,1.509274702867290188e-06,1.561318658138576188e-06,1.613362613409862188e-06,1.665406568681148188e-06,1.717450523952434188e-06,1.769494479223720188e-06,1.821538434495006188e-06,1.873582389766292188e-06,1.925626345037578188e-06,1.977670300308864188e-06,2.029714255580150188e-06,2.081758210851436188e-06,2.133802166122722188e-06,2.185846121394008188e-06,2.237890076665294188e-06,2.289934031936580188e-06,2.341977987207866188e-06,2.394021942479152188e-06,2.446065897750438188e-06,2.498109853021724188e-06,2.550153808293010188e-06,2.602197763564296188e-06,2.654241718835582188e-06,2.706285674106868188e-06,2.758329629378154188e-06,2.810373584649440188e-06,2.862417539920726188e-06,2.914461495192012188e-06,2.966505450463298188e-06,3.018549405734584188e-06,3.070593361005870188e-06,3.122637316277156188e-06,3.174681271548442188e-06,3.226725226819728188e-06,3.278769182091014188e-06 +0.000000000000000000e+00,5.367199940801317215e-08,1.073439988160263443e-07,1.610159982240395098e-07,2.146879976320526621e-07,2.683599970400658144e-07,3.220319964480789667e-07,3.757039958560921190e-07,4.293759952641052713e-07,4.830479946721184236e-07,5.367199940801316288e-07,5.903919934881448340e-07,6.440639928961580393e-07,6.977359923041712445e-07,7.514079917121844497e-07,8.050799911201976550e-07,8.587519905282108602e-07,9.124239899362240654e-07,9.660959893442372707e-07,1.019767988752250476e-06,1.073439988160263681e-06,1.127111987568276886e-06,1.180783986976290092e-06,1.234455986384303297e-06,1.288127985792316502e-06,1.341799985200329707e-06,1.395471984608342913e-06,1.449143984016356118e-06,1.502815983424369323e-06,1.556487982832382528e-06,1.610159982240395733e-06,1.663831981648408939e-06,1.717503981056422144e-06,1.771175980464435349e-06,1.824847979872448554e-06,1.878519979280461760e-06,1.932191978688474965e-06,1.985863978096488382e-06,2.039535977504501799e-06,2.093207976912515216e-06,2.146879976320528633e-06,2.200551975728542050e-06,2.254223975136555467e-06,2.307895974544568884e-06,2.361567973952582301e-06,2.415239973360595718e-06,2.468911972768609135e-06,2.522583972176622552e-06,2.576255971584635969e-06,2.629927970992649386e-06,2.683599970400662803e-06,2.737271969808676220e-06,2.790943969216689637e-06,2.844615968624703054e-06,2.898287968032716471e-06,2.951959967440729888e-06,3.005631966848743305e-06,3.059303966256756722e-06,3.112975965664770139e-06,3.166647965072783556e-06,3.220319964480796973e-06,3.273991963888810390e-06,3.327663963296823807e-06,3.381335962704837224e-06 +0.000000000000000000e+00,4.746373347409300774e-08,9.492746694818601548e-08,1.423912004222790166e-07,1.898549338963720045e-07,2.373186673704649924e-07,2.847824008445579803e-07,3.322461343186509682e-07,3.797098677927439561e-07,4.271736012668369439e-07,4.746373347409299318e-07,5.221010682150229197e-07,5.695648016891158547e-07,6.170285351632087896e-07,6.644922686373017246e-07,7.119560021113946595e-07,7.594197355854875945e-07,8.068834690595805294e-07,8.543472025336734644e-07,9.018109360077663993e-07,9.492746694818593343e-07,9.967384029559523751e-07,1.044202136430045416e-06,1.091665869904138457e-06,1.139129603378231498e-06,1.186593336852324538e-06,1.234057070326417579e-06,1.281520803800510620e-06,1.328984537274603661e-06,1.376448270748696702e-06,1.423912004222789743e-06,1.471375737696882783e-06,1.518839471170975824e-06,1.566303204645068865e-06,1.613766938119161906e-06,1.661230671593254947e-06,1.708694405067347988e-06,1.756158138541441028e-06,1.803621872015534069e-06,1.851085605489627110e-06,1.898549338963720151e-06,1.946013072437813192e-06,1.993476805911906444e-06,2.040940539385999697e-06,2.088404272860092949e-06,2.135868006334186202e-06,2.183331739808279455e-06,2.230795473282372707e-06,2.278259206756465960e-06,2.325722940230559212e-06,2.373186673704652465e-06,2.420650407178745718e-06,2.468114140652838970e-06,2.515577874126932223e-06,2.563041607601025475e-06,2.610505341075118728e-06,2.657969074549211980e-06,2.705432808023305233e-06,2.752896541497398486e-06,2.800360274971491738e-06,2.847824008445584991e-06,2.895287741919678243e-06,2.942751475393771496e-06,2.990215208867864749e-06 +0.000000000000000000e+00,5.204395527129153879e-08,1.040879105425830776e-07,1.561318658138746230e-07,2.081758210851661816e-07,2.602197763564577403e-07,3.122637316277492989e-07,3.643076868990408576e-07,4.163516421703324162e-07,4.683955974416239749e-07,5.204395527129154806e-07,5.724835079842069863e-07,6.245274632554984920e-07,6.765714185267899977e-07,7.286153737980815034e-07,7.806593290693730091e-07,8.327032843406645148e-07,8.847472396119560205e-07,9.367911948832475262e-07,9.888351501545390319e-07,1.040879105425830538e-06,1.092923060697122043e-06,1.144967015968413549e-06,1.197010971239705055e-06,1.249054926510996560e-06,1.301098881782288066e-06,1.353142837053579572e-06,1.405186792324871078e-06,1.457230747596162583e-06,1.509274702867454089e-06,1.561318658138745595e-06,1.613362613410037100e-06,1.665406568681328606e-06,1.717450523952620112e-06,1.769494479223911618e-06,1.821538434495203123e-06,1.873582389766494629e-06,1.925626345037786135e-06,1.977670300309077640e-06,2.029714255580369146e-06,2.081758210851660652e-06,2.133802166122952157e-06,2.185846121394243663e-06,2.237890076665535169e-06,2.289934031936826675e-06,2.341977987208118180e-06,2.394021942479409686e-06,2.446065897750701192e-06,2.498109853021992697e-06,2.550153808293284203e-06,2.602197763564575709e-06,2.654241718835867215e-06,2.706285674107158720e-06,2.758329629378450226e-06,2.810373584649741732e-06,2.862417539921033237e-06,2.914461495192324743e-06,2.966505450463616249e-06,3.018549405734907754e-06,3.070593361006199260e-06,3.122637316277490766e-06,3.174681271548782272e-06,3.226725226820073777e-06,3.278769182091365283e-06 +0.000000000000000000e+00,5.367199940801957121e-08,1.073439988160391424e-07,1.610159982240587269e-07,2.146879976320783113e-07,2.683599970400978958e-07,3.220319964481174538e-07,3.757039958561370117e-07,4.293759952641565697e-07,4.830479946721761277e-07,5.367199940801956857e-07,5.903919934882152437e-07,6.440639928962348016e-07,6.977359923042543596e-07,7.514079917122739176e-07,8.050799911202934756e-07,8.587519905283130336e-07,9.124239899363325915e-07,9.660959893443520436e-07,1.019767988752371390e-06,1.073439988160390736e-06,1.127111987568410082e-06,1.180783986976429429e-06,1.234455986384448775e-06,1.288127985792468121e-06,1.341799985200487467e-06,1.395471984608506813e-06,1.449143984016526160e-06,1.502815983424545506e-06,1.556487982832564852e-06,1.610159982240584198e-06,1.663831981648603545e-06,1.717503981056622891e-06,1.771175980464642237e-06,1.824847979872661583e-06,1.878519979280680929e-06,1.932191978688700276e-06,1.985863978096719622e-06,2.039535977504738968e-06,2.093207976912758314e-06,2.146879976320777661e-06,2.200551975728797007e-06,2.254223975136816353e-06,2.307895974544835699e-06,2.361567973952855045e-06,2.415239973360874392e-06,2.468911972768893738e-06,2.522583972176913084e-06,2.576255971584932430e-06,2.629927970992951777e-06,2.683599970400971123e-06,2.737271969808990469e-06,2.790943969217009815e-06,2.844615968625029161e-06,2.898287968033048508e-06,2.951959967441067854e-06,3.005631966849087200e-06,3.059303966257106546e-06,3.112975965665125893e-06,3.166647965073145239e-06,3.220319964481164585e-06,3.273991963889183931e-06,3.327663963297203277e-06,3.381335962705222624e-06 +0.000000000000000000e+00,4.746373347409956563e-08,9.492746694819913126e-08,1.423912004222987101e-07,1.898549338963982890e-07,2.373186673704978679e-07,2.847824008445974202e-07,3.322461343186969726e-07,3.797098677927965250e-07,4.271736012668960774e-07,4.746373347409956298e-07,5.221010682150952352e-07,5.695648016891948405e-07,6.170285351632944458e-07,6.644922686373940512e-07,7.119560021114936565e-07,7.594197355855932618e-07,8.068834690596928672e-07,8.543472025337924725e-07,9.018109360078920778e-07,9.492746694819916832e-07,9.967384029560912885e-07,1.044202136430190894e-06,1.091665869904290499e-06,1.139129603378390105e-06,1.186593336852489710e-06,1.234057070326589315e-06,1.281520803800688921e-06,1.328984537274788526e-06,1.376448270748888131e-06,1.423912004222987737e-06,1.471375737697087342e-06,1.518839471171186947e-06,1.566303204645286553e-06,1.613766938119386158e-06,1.661230671593485763e-06,1.708694405067585369e-06,1.756158138541684974e-06,1.803621872015784579e-06,1.851085605489884185e-06,1.898549338963983790e-06,1.946013072438083395e-06,1.993476805912183001e-06,2.040940539386282606e-06,2.088404272860382211e-06,2.135868006334481817e-06,2.183331739808581422e-06,2.230795473282681027e-06,2.278259206756780633e-06,2.325722940230880238e-06,2.373186673704979843e-06,2.420650407179079449e-06,2.468114140653179054e-06,2.515577874127278659e-06,2.563041607601378265e-06,2.610505341075477870e-06,2.657969074549577475e-06,2.705432808023677081e-06,2.752896541497776686e-06,2.800360274971876291e-06,2.847824008445975897e-06,2.895287741920075502e-06,2.942751475394175107e-06,2.990215208868274713e-06 +0.000000000000000000e+00,4.879747660857574523e-08,9.759495321715149046e-08,1.463924298257272357e-07,1.951899064343029809e-07,2.439873830428786997e-07,2.927848596514544184e-07,3.415823362600301372e-07,3.903798128686058560e-07,4.391772894771815747e-07,4.879747660857572935e-07,5.367722426943330122e-07,5.855697193029087310e-07,6.343671959114844497e-07,6.831646725200601685e-07,7.319621491286358873e-07,7.807596257372116060e-07,8.295571023457873248e-07,8.783545789543630435e-07,9.271520555629387623e-07,9.759495321715143752e-07,1.024747008780089988e-06,1.073544485388665601e-06,1.122341961997241214e-06,1.171139438605816827e-06,1.219936915214392440e-06,1.268734391822968052e-06,1.317531868431543665e-06,1.366329345040119278e-06,1.415126821648694891e-06,1.463924298257270504e-06,1.512721774865846117e-06,1.561519251474421730e-06,1.610316728082997343e-06,1.659114204691572956e-06,1.707911681300148568e-06,1.756709157908724181e-06,1.805506634517299794e-06,1.854304111125875407e-06,1.903101587734451020e-06,1.951899064343026633e-06,2.000696540951602457e-06,2.049494017560178282e-06,2.098291494168754107e-06,2.147088970777329931e-06,2.195886447385905756e-06,2.244683923994481581e-06,2.293481400603057405e-06,2.342278877211633230e-06,2.391076353820209055e-06,2.439873830428784879e-06,2.488671307037360704e-06,2.537468783645936528e-06,2.586266260254512353e-06,2.635063736863088178e-06,2.683861213471664002e-06,2.732658690080239827e-06,2.781456166688815652e-06,2.830253643297391476e-06,2.879051119905967301e-06,2.927848596514543126e-06,2.976646073123118950e-06,3.025443549731694775e-06,3.074241026340270599e-06 +0.000000000000000000e+00,5.041085260153844664e-08,1.008217052030768933e-07,1.512325578046153333e-07,2.016434104061537601e-07,2.520542630076922134e-07,3.024651156092306666e-07,3.528759682107691199e-07,4.032868208123075732e-07,4.536976734138460264e-07,5.041085260153844267e-07,5.545193786169228271e-07,6.049302312184612274e-07,6.553410838199996277e-07,7.057519364215380280e-07,7.561627890230764283e-07,8.065736416246148287e-07,8.569844942261532290e-07,9.073953468276916293e-07,9.578061994292300296e-07,1.008217052030768430e-06,1.058627904632306830e-06,1.109038757233845231e-06,1.159449609835383631e-06,1.209860462436922031e-06,1.260271315038460432e-06,1.310682167639998832e-06,1.361093020241537232e-06,1.411503872843075633e-06,1.461914725444614033e-06,1.512325578046152433e-06,1.562736430647690833e-06,1.613147283249229234e-06,1.663558135850767634e-06,1.713968988452306034e-06,1.764379841053844435e-06,1.814790693655382835e-06,1.865201546256921235e-06,1.915612398858459636e-06,1.966023251459998248e-06,2.016434104061536860e-06,2.066844956663075472e-06,2.117255809264614084e-06,2.167666661866152696e-06,2.218077514467691308e-06,2.268488367069229920e-06,2.318899219670768532e-06,2.369310072272307144e-06,2.419720924873845757e-06,2.470131777475384369e-06,2.520542630076922981e-06,2.570953482678461593e-06,2.621364335280000205e-06,2.671775187881538817e-06,2.722186040483077429e-06,2.772596893084616041e-06,2.823007745686154653e-06,2.873418598287693265e-06,2.923829450889231877e-06,2.974240303490770489e-06,3.024651156092309102e-06,3.075062008693847714e-06,3.125472861295386326e-06,3.175883713896924938e-06 +0.000000000000000000e+00,4.363682918138343416e-08,8.727365836276686832e-08,1.309104875441502892e-07,1.745473167255337102e-07,2.181841459069171311e-07,2.618209750883005785e-07,3.054578042696840259e-07,3.490946334510674733e-07,3.927314626324509207e-07,4.363682918138343681e-07,4.800051209952177625e-07,5.236419501766011570e-07,5.672787793579845514e-07,6.109156085393679459e-07,6.545524377207513403e-07,6.981892669021347348e-07,7.418260960835181292e-07,7.854629252649015237e-07,8.290997544462849181e-07,8.727365836276683126e-07,9.163734128090517071e-07,9.600102419904351015e-07,1.003647071171818496e-06,1.047283900353201890e-06,1.090920729534585285e-06,1.134557558715968679e-06,1.178194387897352074e-06,1.221831217078735468e-06,1.265468046260118863e-06,1.309104875441502257e-06,1.352741704622885652e-06,1.396378533804269046e-06,1.440015362985652441e-06,1.483652192167035835e-06,1.527289021348419229e-06,1.570925850529802624e-06,1.614562679711186018e-06,1.658199508892569413e-06,1.701836338073952807e-06,1.745473167255336202e-06,1.789109996436719596e-06,1.832746825618102991e-06,1.876383654799486385e-06,1.920020483980869779e-06,1.963657313162253386e-06,2.007294142343636992e-06,2.050930971525020598e-06,2.094567800706404204e-06,2.138204629887787811e-06,2.181841459069171417e-06,2.225478288250555023e-06,2.269115117431938629e-06,2.312751946613322235e-06,2.356388775794705842e-06,2.400025604976089448e-06,2.443662434157473054e-06,2.487299263338856660e-06,2.530936092520240266e-06,2.574572921701623873e-06,2.618209750883007479e-06,2.661846580064391085e-06,2.705483409245774691e-06,2.749120238427158298e-06 +0.000000000000000000e+00,4.879747660858295824e-08,9.759495321716591649e-08,1.463924298257488615e-07,1.951899064343318065e-07,2.439873830429147515e-07,2.927848596514977230e-07,3.415823362600806945e-07,3.903798128686636660e-07,4.391772894772466374e-07,4.879747660858296089e-07,5.367722426944126333e-07,5.855697193029956577e-07,6.343671959115786822e-07,6.831646725201617066e-07,7.319621491287447310e-07,7.807596257373277554e-07,8.295571023459107798e-07,8.783545789544938043e-07,9.271520555630768287e-07,9.759495321716598531e-07,1.024747008780242878e-06,1.073544485388825902e-06,1.122341961997408926e-06,1.171139438605991951e-06,1.219936915214574975e-06,1.268734391823158000e-06,1.317531868431741024e-06,1.366329345040324048e-06,1.415126821648907073e-06,1.463924298257490097e-06,1.512721774866073122e-06,1.561519251474656146e-06,1.610316728083239171e-06,1.659114204691822195e-06,1.707911681300405219e-06,1.756709157908988244e-06,1.805506634517571268e-06,1.854304111126154293e-06,1.903101587734737317e-06,1.951899064343320130e-06,2.000696540951903154e-06,2.049494017560486179e-06,2.098291494169069203e-06,2.147088970777652227e-06,2.195886447386235252e-06,2.244683923994818276e-06,2.293481400603401301e-06,2.342278877211984325e-06,2.391076353820567349e-06,2.439873830429150374e-06,2.488671307037733398e-06,2.537468783646316423e-06,2.586266260254899447e-06,2.635063736863482472e-06,2.683861213472065496e-06,2.732658690080648520e-06,2.781456166689231545e-06,2.830253643297814569e-06,2.879051119906397594e-06,2.927848596514980618e-06,2.976646073123563642e-06,3.025443549732146667e-06,3.074241026340729691e-06 +0.000000000000000000e+00,5.041085260154520306e-08,1.008217052030904061e-07,1.512325578046356092e-07,2.016434104061808122e-07,2.520542630077259888e-07,3.024651156092711654e-07,3.528759682108163420e-07,4.032868208123615186e-07,4.536976734139066951e-07,5.041085260154518717e-07,5.545193786169970483e-07,6.049302312185422249e-07,6.553410838200874015e-07,7.057519364216325781e-07,7.561627890231777547e-07,8.065736416247229312e-07,8.569844942262681078e-07,9.073953468278132844e-07,9.578061994293585669e-07,1.008217052030903955e-06,1.058627904632449344e-06,1.109038757233994732e-06,1.159449609835540120e-06,1.209860462437085509e-06,1.260271315038630897e-06,1.310682167640176285e-06,1.361093020241721674e-06,1.411503872843267062e-06,1.461914725444812450e-06,1.512325578046357839e-06,1.562736430647903227e-06,1.613147283249448615e-06,1.663558135850994004e-06,1.713968988452539392e-06,1.764379841054084780e-06,1.814790693655630169e-06,1.865201546257175557e-06,1.915612398858720945e-06,1.966023251460266334e-06,2.016434104061811722e-06,2.066844956663357110e-06,2.117255809264902499e-06,2.167666661866447887e-06,2.218077514467993275e-06,2.268488367069538664e-06,2.318899219671084052e-06,2.369310072272629441e-06,2.419720924874174829e-06,2.470131777475720217e-06,2.520542630077265606e-06,2.570953482678810994e-06,2.621364335280356382e-06,2.671775187881901771e-06,2.722186040483447159e-06,2.772596893084992547e-06,2.823007745686537936e-06,2.873418598288083324e-06,2.923829450889628712e-06,2.974240303491174101e-06,3.024651156092719489e-06,3.075062008694264877e-06,3.125472861295810266e-06,3.175883713897355654e-06 +0.000000000000000000e+00,4.363682918139077952e-08,8.727365836278155905e-08,1.309104875441723386e-07,1.745473167255631181e-07,2.181841459069538976e-07,2.618209750883446771e-07,3.054578042697354302e-07,3.490946334511261832e-07,3.927314626325169363e-07,4.363682918139076893e-07,4.800051209952984424e-07,5.236419501766892484e-07,5.672787793580800544e-07,6.109156085394708604e-07,6.545524377208616664e-07,6.981892669022524724e-07,7.418260960836432784e-07,7.854629252650340843e-07,8.290997544464248903e-07,8.727365836278156963e-07,9.163734128092065023e-07,9.600102419905973083e-07,1.003647071171988114e-06,1.047283900353378920e-06,1.090920729534769726e-06,1.134557558716160532e-06,1.178194387897551338e-06,1.221831217078942144e-06,1.265468046260332950e-06,1.309104875441723756e-06,1.352741704623114562e-06,1.396378533804505368e-06,1.440015362985896174e-06,1.483652192167286980e-06,1.527289021348677786e-06,1.570925850530068592e-06,1.614562679711459398e-06,1.658199508892850204e-06,1.701836338074241010e-06,1.745473167255631816e-06,1.789109996437022622e-06,1.832746825618413428e-06,1.876383654799804234e-06,1.920020483981195040e-06,1.963657313162585846e-06,2.007294142343976652e-06,2.050930971525367458e-06,2.094567800706758264e-06,2.138204629888149070e-06,2.181841459069539876e-06,2.225478288250930682e-06,2.269115117432321488e-06,2.312751946613712294e-06,2.356388775795103100e-06,2.400025604976493906e-06,2.443662434157884712e-06,2.487299263339275518e-06,2.530936092520666324e-06,2.574572921702057130e-06,2.618209750883447936e-06,2.661846580064838742e-06,2.705483409246229548e-06,2.749120238427620354e-06 +0.000000000000000000e+00,4.566703083556782447e-08,9.133406167113564894e-08,1.370010925067034866e-07,1.826681233422713243e-07,2.283351541778391620e-07,2.740021850134069733e-07,3.196692158489747845e-07,3.653362466845425958e-07,4.110032775201104070e-07,4.566703083556782182e-07,5.023373391912460295e-07,5.480043700268138407e-07,5.936714008623816519e-07,6.393384316979494632e-07,6.850054625335172744e-07,7.306724933690850856e-07,7.763395242046528969e-07,8.220065550402207081e-07,8.676735858757885193e-07,9.133406167113563306e-07,9.590076475469240359e-07,1.004674678382491847e-06,1.050341709218059658e-06,1.096008740053627470e-06,1.141675770889195281e-06,1.187342801724763092e-06,1.233009832560330903e-06,1.278676863395898715e-06,1.324343894231466526e-06,1.370010925067034337e-06,1.415677955902602148e-06,1.461344986738169959e-06,1.507012017573737771e-06,1.552679048409305582e-06,1.598346079244873393e-06,1.644013110080441204e-06,1.689680140916009016e-06,1.735347171751576827e-06,1.781014202587144638e-06,1.826681233422712449e-06,1.872348264258280261e-06,1.918015295093848072e-06,1.963682325929415883e-06,2.009349356764983694e-06,2.055016387600551506e-06,2.100683418436119317e-06,2.146350449271687128e-06,2.192017480107254939e-06,2.237684510942822750e-06,2.283351541778390562e-06,2.329018572613958373e-06,2.374685603449526184e-06,2.420352634285093995e-06,2.466019665120661807e-06,2.511686695956229618e-06,2.557353726791797429e-06,2.603020757627365240e-06,2.648687788462933052e-06,2.694354819298500863e-06,2.740021850134068674e-06,2.785688880969636485e-06,2.831355911805204297e-06,2.877022942640772108e-06 +0.000000000000000000e+00,4.721323175829895178e-08,9.442646351659790356e-08,1.416396952748968620e-07,1.888529270331958336e-07,2.360661587914948052e-07,2.832793905497937769e-07,3.304926223080927485e-07,3.777058540663917201e-07,4.249190858246906918e-07,4.721323175829896634e-07,5.193455493412886350e-07,5.665587810995876596e-07,6.137720128578866842e-07,6.609852446161857088e-07,7.081984763744847333e-07,7.554117081327837579e-07,8.026249398910827825e-07,8.498381716493818070e-07,8.970514034076808316e-07,9.442646351659798562e-07,9.914778669242788808e-07,1.038691098682577905e-06,1.085904330440876930e-06,1.133117562199175954e-06,1.180330793957474979e-06,1.227544025715774004e-06,1.274757257474073028e-06,1.321970489232372053e-06,1.369183720990671077e-06,1.416396952748970102e-06,1.463610184507269126e-06,1.510823416265568151e-06,1.558036648023867176e-06,1.605249879782166200e-06,1.652463111540465225e-06,1.699676343298764249e-06,1.746889575057063274e-06,1.794102806815362299e-06,1.841316038573661323e-06,1.888529270331960348e-06,1.935742502090259160e-06,1.982955733848558185e-06,2.030168965606857210e-06,2.077382197365156234e-06,2.124595429123455259e-06,2.171808660881754283e-06,2.219021892640053308e-06,2.266235124398352332e-06,2.313448356156651357e-06,2.360661587914950382e-06,2.407874819673249406e-06,2.455088051431548431e-06,2.502301283189847455e-06,2.549514514948146480e-06,2.596727746706445504e-06,2.643940978464744529e-06,2.691154210223043554e-06,2.738367441981342578e-06,2.785580673739641603e-06,2.832793905497940627e-06,2.880007137256239652e-06,2.927220369014538677e-06,2.974433600772837701e-06 +0.000000000000000000e+00,3.986710932913629789e-08,7.973421865827259579e-08,1.196013279874088937e-07,1.594684373165451916e-07,1.993355466456814895e-07,2.392026559748177874e-07,2.790697653039540853e-07,3.189368746330903832e-07,3.588039839622266811e-07,3.986710932913629789e-07,4.385382026204992768e-07,4.784053119496355747e-07,5.182724212787718726e-07,5.581395306079081705e-07,5.980066399370444684e-07,6.378737492661807663e-07,6.777408585953170642e-07,7.176079679244533621e-07,7.574750772535896600e-07,7.973421865827259579e-07,8.372092959118622558e-07,8.770764052409985537e-07,9.169435145701348516e-07,9.568106238992711495e-07,9.966777332284074474e-07,1.036544842557543745e-06,1.076411951886680043e-06,1.116279061215816341e-06,1.156146170544952639e-06,1.196013279874088937e-06,1.235880389203225235e-06,1.275747498532361533e-06,1.315614607861497831e-06,1.355481717190634128e-06,1.395348826519770426e-06,1.435215935848906724e-06,1.475083045178043022e-06,1.514950154507179320e-06,1.554817263836315618e-06,1.594684373165451916e-06,1.634551482494588214e-06,1.674418591823724512e-06,1.714285701152860809e-06,1.754152810481997107e-06,1.794019919811133405e-06,1.833887029140269703e-06,1.873754138469406001e-06,1.913621247798542299e-06,1.953488357127678385e-06,1.993355466456814471e-06,2.033222575785950557e-06,2.073089685115086643e-06,2.112956794444222730e-06,2.152823903773358816e-06,2.192691013102494902e-06,2.232558122431630988e-06,2.272425231760767074e-06,2.312292341089903160e-06,2.352159450419039246e-06,2.392026559748175333e-06,2.431893669077311419e-06,2.471760778406447505e-06,2.511627887735583591e-06 +0.000000000000000000e+00,4.566703083557571908e-08,9.133406167115143816e-08,1.370010925067271506e-07,1.826681233423028499e-07,2.283351541778785491e-07,2.740021850134542483e-07,3.196692158490299475e-07,3.653362466846056468e-07,4.110032775201813460e-07,4.566703083557570452e-07,5.023373391913327445e-07,5.480043700269083907e-07,5.936714008624840370e-07,6.393384316980596833e-07,6.850054625336353296e-07,7.306724933692109759e-07,7.763395242047866222e-07,8.220065550403622685e-07,8.676735858759379148e-07,9.133406167115135611e-07,9.590076475470892073e-07,1.004674678382664854e-06,1.050341709218240500e-06,1.096008740053816146e-06,1.141675770889391792e-06,1.187342801724967439e-06,1.233009832560543085e-06,1.278676863396118731e-06,1.324343894231694378e-06,1.370010925067270024e-06,1.415677955902845670e-06,1.461344986738421317e-06,1.507012017573996963e-06,1.552679048409572609e-06,1.598346079245148255e-06,1.644013110080723902e-06,1.689680140916299548e-06,1.735347171751875194e-06,1.781014202587450841e-06,1.826681233423026487e-06,1.872348264258602133e-06,1.918015295094177568e-06,1.963682325929753002e-06,2.009349356765328437e-06,2.055016387600903871e-06,2.100683418436479306e-06,2.146350449272054740e-06,2.192017480107630175e-06,2.237684510943205609e-06,2.283351541778781044e-06,2.329018572614356478e-06,2.374685603449931913e-06,2.420352634285507347e-06,2.466019665121082782e-06,2.511686695956658217e-06,2.557353726792233651e-06,2.603020757627809086e-06,2.648687788463384520e-06,2.694354819298959955e-06,2.740021850134535389e-06,2.785688880970110824e-06,2.831355911805686258e-06,2.877022942641261693e-06 +0.000000000000000000e+00,4.721323175830655523e-08,9.442646351661311045e-08,1.416396952749196789e-07,1.888529270332262474e-07,2.360661587915328158e-07,2.832793905498393578e-07,3.304926223081458998e-07,3.777058540664524418e-07,4.249190858247589838e-07,4.721323175830655258e-07,5.193455493413720678e-07,5.665587810996786098e-07,6.137720128579851518e-07,6.609852446162916937e-07,7.081984763745982357e-07,7.554117081329047777e-07,8.026249398912113197e-07,8.498381716495178617e-07,8.970514034078244037e-07,9.442646351661309457e-07,9.914778669244374877e-07,1.038691098682744136e-06,1.085904330441050783e-06,1.133117562199357431e-06,1.180330793957664079e-06,1.227544025715970727e-06,1.274757257474277375e-06,1.321970489232584023e-06,1.369183720990890671e-06,1.416396952749197319e-06,1.463610184507503966e-06,1.510823416265810614e-06,1.558036648024117262e-06,1.605249879782423910e-06,1.652463111540730558e-06,1.699676343299037206e-06,1.746889575057343854e-06,1.794102806815650501e-06,1.841316038573957149e-06,1.888529270332263797e-06,1.935742502090570445e-06,1.982955733848877093e-06,2.030168965607183741e-06,2.077382197365490389e-06,2.124595429123797037e-06,2.171808660882103684e-06,2.219021892640410332e-06,2.266235124398716980e-06,2.313448356157023628e-06,2.360661587915330276e-06,2.407874819673636924e-06,2.455088051431943572e-06,2.502301283190250220e-06,2.549514514948556867e-06,2.596727746706863515e-06,2.643940978465170163e-06,2.691154210223476811e-06,2.738367441981783459e-06,2.785580673740090107e-06,2.832793905498396755e-06,2.880007137256703402e-06,2.927220369015010050e-06,2.974433600773316698e-06 +0.000000000000000000e+00,3.986710932914404031e-08,7.973421865828808061e-08,1.196013279874321342e-07,1.594684373165761877e-07,1.993355466457202412e-07,2.392026559748642683e-07,2.790697653040082954e-07,3.189368746331523224e-07,3.588039839622963495e-07,3.986710932914403766e-07,4.385382026205844037e-07,4.784053119497284307e-07,5.182724212788724578e-07,5.581395306080164849e-07,5.980066399371605119e-07,6.378737492663045390e-07,6.777408585954485661e-07,7.176079679245925931e-07,7.574750772537366202e-07,7.973421865828806473e-07,8.372092959120246744e-07,8.770764052411687014e-07,9.169435145703127285e-07,9.568106238994566497e-07,9.966777332286005709e-07,1.036544842557744492e-06,1.076411951886888413e-06,1.116279061216032334e-06,1.156146170545176256e-06,1.196013279874320177e-06,1.235880389203464098e-06,1.275747498532608019e-06,1.315614607861751940e-06,1.355481717190895862e-06,1.395348826520039783e-06,1.435215935849183704e-06,1.475083045178327625e-06,1.514950154507471546e-06,1.554817263836615468e-06,1.594684373165759389e-06,1.634551482494903310e-06,1.674418591824047231e-06,1.714285701153191152e-06,1.754152810482335074e-06,1.794019919811478995e-06,1.833887029140622916e-06,1.873754138469766837e-06,1.913621247798910758e-06,1.953488357128054468e-06,1.993355466457198177e-06,2.033222575786341887e-06,2.073089685115485596e-06,2.112956794444629305e-06,2.152823903773773015e-06,2.192691013102916724e-06,2.232558122432060434e-06,2.272425231761204143e-06,2.312292341090347853e-06,2.352159450419491562e-06,2.392026559748635271e-06,2.431893669077778981e-06,2.471760778406922690e-06,2.511627887736066400e-06 +0.000000000000000000e+00,4.267057750856253171e-08,8.534115501712506342e-08,1.280117325256876018e-07,1.706823100342501533e-07,2.133528875428127049e-07,2.560234650513752564e-07,2.986940425599377815e-07,3.413646200685003066e-07,3.840351975770628317e-07,4.267057750856253568e-07,4.693763525941878819e-07,5.120469301027504070e-07,5.547175076113129321e-07,5.973880851198754572e-07,6.400586626284379823e-07,6.827292401370005074e-07,7.253998176455630325e-07,7.680703951541255576e-07,8.107409726626880827e-07,8.534115501712506078e-07,8.960821276798131328e-07,9.387527051883756579e-07,9.814232826969382889e-07,1.024093860205501026e-06,1.066764437714063763e-06,1.109435015222626499e-06,1.152105592731189236e-06,1.194776170239751973e-06,1.237446747748314710e-06,1.280117325256877447e-06,1.322787902765440184e-06,1.365458480274002921e-06,1.408129057782565657e-06,1.450799635291128394e-06,1.493470212799691131e-06,1.536140790308253868e-06,1.578811367816816605e-06,1.621481945325379342e-06,1.664152522833942079e-06,1.706823100342504815e-06,1.749493677851067552e-06,1.792164255359630289e-06,1.834834832868193026e-06,1.877505410376755763e-06,1.920175987885318500e-06,1.962846565393881237e-06,2.005517142902443973e-06,2.048187720411006710e-06,2.090858297919569447e-06,2.133528875428132184e-06,2.176199452936694921e-06,2.218870030445257658e-06,2.261540607953820394e-06,2.304211185462383131e-06,2.346881762970945868e-06,2.389552340479508605e-06,2.432222917988071342e-06,2.474893495496634079e-06,2.517564073005196816e-06,2.560234650513759552e-06,2.602905228022322289e-06,2.645575805530885026e-06,2.688246383039447763e-06 +0.000000000000000000e+00,4.415698983183152099e-08,8.831397966366304198e-08,1.324709694954945696e-07,1.766279593273261104e-07,2.207849491591576513e-07,2.649419389909891921e-07,3.090989288228207330e-07,3.532559186546522738e-07,3.974129084864838146e-07,4.415698983183153555e-07,4.857268881501469493e-07,5.298838779819784901e-07,5.740408678138100309e-07,6.181978576456415718e-07,6.623548474774731126e-07,7.065118373093046535e-07,7.506688271411361943e-07,7.948258169729677352e-07,8.389828068047992760e-07,8.831397966366308168e-07,9.272967864684623577e-07,9.714537763002938985e-07,1.015610766132125439e-06,1.059767755963956980e-06,1.103924745795788521e-06,1.148081735627620062e-06,1.192238725459451603e-06,1.236395715291283144e-06,1.280552705123114684e-06,1.324709694954946225e-06,1.368866684786777766e-06,1.413023674618609307e-06,1.457180664450440848e-06,1.501337654282272389e-06,1.545494644114103929e-06,1.589651633945935470e-06,1.633808623777767011e-06,1.677965613609598552e-06,1.722122603441430093e-06,1.766279593273261634e-06,1.810436583105093175e-06,1.854593572936924715e-06,1.898750562768756256e-06,1.942907552600587797e-06,1.987064542432419126e-06,2.031221532264250455e-06,2.075378522096081784e-06,2.119535511927913113e-06,2.163692501759744442e-06,2.207849491591575772e-06,2.252006481423407101e-06,2.296163471255238430e-06,2.340320461087069759e-06,2.384477450918901088e-06,2.428634440750732417e-06,2.472791430582563746e-06,2.516948420414395075e-06,2.561105410246226404e-06,2.605262400078057733e-06,2.649419389909889062e-06,2.693576379741720391e-06,2.737733369573551721e-06,2.781890359405383050e-06 +0.000000000000000000e+00,3.615148897243128544e-08,7.230297794486257087e-08,1.084544669172938497e-07,1.446059558897251153e-07,1.807574448621563809e-07,2.169089338345876464e-07,2.530604228070189120e-07,2.892119117794501776e-07,3.253634007518814432e-07,3.615148897243127088e-07,3.976663786967439744e-07,4.338178676691752400e-07,4.699693566416065055e-07,5.061208456140377182e-07,5.422723345864689838e-07,5.784238235589002494e-07,6.145753125313315149e-07,6.507268015037627805e-07,6.868782904761940461e-07,7.230297794486253117e-07,7.591812684210565773e-07,7.953327573934878429e-07,8.314842463659191085e-07,8.676357353383503740e-07,9.037872243107816396e-07,9.399387132832129052e-07,9.760902022556441708e-07,1.012241691228075436e-06,1.048393180200506702e-06,1.084544669172937968e-06,1.120696158145369233e-06,1.156847647117800499e-06,1.192999136090231764e-06,1.229150625062663030e-06,1.265302114035094295e-06,1.301453603007525561e-06,1.337605091979956827e-06,1.373756580952388092e-06,1.409908069924819358e-06,1.446059558897250623e-06,1.482211047869681889e-06,1.518362536842113155e-06,1.554514025814544420e-06,1.590665514786975686e-06,1.626817003759406951e-06,1.662968492731838217e-06,1.699119981704269482e-06,1.735271470676700748e-06,1.771422959649132014e-06,1.807574448621563279e-06,1.843725937593994545e-06,1.879877426566425810e-06,1.916028915538856864e-06,1.952180404511287918e-06,1.988331893483718972e-06,2.024483382456150026e-06,2.060634871428581080e-06,2.096786360401012133e-06,2.132937849373443187e-06,2.169089338345874241e-06,2.205240827318305295e-06,2.241392316290736349e-06,2.277543805263167403e-06 +0.000000000000000000e+00,4.267057750857053882e-08,8.534115501714107764e-08,1.280117325257116098e-07,1.706823100342821288e-07,2.133528875428526478e-07,2.560234650514231667e-07,2.986940425599936857e-07,3.413646200685642047e-07,3.840351975771347236e-07,4.267057750857052426e-07,4.693763525942757616e-07,5.120469301028462276e-07,5.547175076114166936e-07,5.973880851199871597e-07,6.400586626285576257e-07,6.827292401371280917e-07,7.253998176456985577e-07,7.680703951542690238e-07,8.107409726628394898e-07,8.534115501714099558e-07,8.960821276799804219e-07,9.387527051885508879e-07,9.814232826971212480e-07,1.024093860205691608e-06,1.066764437714261968e-06,1.109435015222832328e-06,1.152105592731402689e-06,1.194776170239973049e-06,1.237446747748543409e-06,1.280117325257113769e-06,1.322787902765684129e-06,1.365458480274254489e-06,1.408129057782824850e-06,1.450799635291395210e-06,1.493470212799965570e-06,1.536140790308535930e-06,1.578811367817106290e-06,1.621481945325676650e-06,1.664152522834247010e-06,1.706823100342817371e-06,1.749493677851387731e-06,1.792164255359958091e-06,1.834834832868528451e-06,1.877505410377098811e-06,1.920175987885669171e-06,1.962846565394239531e-06,2.005517142902809892e-06,2.048187720411380252e-06,2.090858297919950612e-06,2.133528875428520972e-06,2.176199452937091332e-06,2.218870030445661692e-06,2.261540607954232052e-06,2.304211185462802413e-06,2.346881762971372773e-06,2.389552340479943133e-06,2.432222917988513493e-06,2.474893495497083853e-06,2.517564073005654213e-06,2.560234650514224574e-06,2.602905228022794934e-06,2.645575805531365294e-06,2.688246383039935654e-06 +0.000000000000000000e+00,4.415698983183951486e-08,8.831397966367902973e-08,1.324709694955185512e-07,1.766279593273580859e-07,2.207849491591976206e-07,2.649419389910371554e-07,3.090989288228766901e-07,3.532559186547162248e-07,3.974129084865557595e-07,4.415698983183952942e-07,4.857268881502348289e-07,5.298838779820744166e-07,5.740408678139140042e-07,6.181978576457535919e-07,6.623548474775931795e-07,7.065118373094327672e-07,7.506688271412723549e-07,7.948258169731119425e-07,8.389828068049515302e-07,8.831397966367911178e-07,9.272967864686307055e-07,9.714537763004702931e-07,1.015610766132309881e-06,1.059767755964149468e-06,1.103924745795989056e-06,1.148081735627828644e-06,1.192238725459668231e-06,1.236395715291507819e-06,1.280552705123347407e-06,1.324709694955186994e-06,1.368866684787026582e-06,1.413023674618866170e-06,1.457180664450705757e-06,1.501337654282545345e-06,1.545494644114384933e-06,1.589651633946224520e-06,1.633808623778064108e-06,1.677965613609903696e-06,1.722122603441743283e-06,1.766279593273582871e-06,1.810436583105422459e-06,1.854593572937262046e-06,1.898750562769101634e-06,1.942907552600941010e-06,1.987064542432780386e-06,2.031221532264619762e-06,2.075378522096459137e-06,2.119535511928298513e-06,2.163692501760137889e-06,2.207849491591977265e-06,2.252006481423816641e-06,2.296163471255656017e-06,2.340320461087495393e-06,2.384477450919334769e-06,2.428634440751174145e-06,2.472791430583013521e-06,2.516948420414852896e-06,2.561105410246692272e-06,2.605262400078531648e-06,2.649419389910371024e-06,2.693576379742210400e-06,2.737733369574049776e-06,2.781890359405889152e-06 +0.000000000000000000e+00,3.615148897243908079e-08,7.230297794487816157e-08,1.084544669173172490e-07,1.446059558897563496e-07,1.807574448621954503e-07,2.169089338346345509e-07,2.530604228070736515e-07,2.892119117795127522e-07,3.253634007519518528e-07,3.615148897243909535e-07,3.976663786968300541e-07,4.338178676692691547e-07,4.699693566417082554e-07,5.061208456141474090e-07,5.422723345865865096e-07,5.784238235590256102e-07,6.145753125314647109e-07,6.507268015039038115e-07,6.868782904763429122e-07,7.230297794487820128e-07,7.591812684212211134e-07,7.953327573936602141e-07,8.314842463660993147e-07,8.676357353385384154e-07,9.037872243109775160e-07,9.399387132834166166e-07,9.760902022558557173e-07,1.012241691228294818e-06,1.048393180200733919e-06,1.084544669173173019e-06,1.120696158145612120e-06,1.156847647118051220e-06,1.192999136090490321e-06,1.229150625062929422e-06,1.265302114035368522e-06,1.301453603007807623e-06,1.337605091980246724e-06,1.373756580952685824e-06,1.409908069925124925e-06,1.446059558897564026e-06,1.482211047870003126e-06,1.518362536842442227e-06,1.554514025814881328e-06,1.590665514787320428e-06,1.626817003759759529e-06,1.662968492732198629e-06,1.699119981704637730e-06,1.735271470677076831e-06,1.771422959649515931e-06,1.807574448621955032e-06,1.843725937594394133e-06,1.879877426566833233e-06,1.916028915539272334e-06,1.952180404511711435e-06,1.988331893484150535e-06,2.024483382456589636e-06,2.060634871429028736e-06,2.096786360401467837e-06,2.132937849373906938e-06,2.169089338346346038e-06,2.205240827318785139e-06,2.241392316291224240e-06,2.277543805263663340e-06 +0.000000000000000000e+00,3.970304349712396633e-08,7.940608699424793266e-08,1.191091304913718924e-07,1.588121739884958389e-07,1.985152174856197853e-07,2.382182609827437318e-07,2.779213044798676783e-07,3.176243479769916248e-07,3.573273914741155713e-07,3.970304349712395177e-07,4.367334784683634642e-07,4.764365219654874107e-07,5.161395654626113572e-07,5.558426089597353566e-07,5.955456524568593560e-07,6.352486959539833554e-07,6.749517394511073548e-07,7.146547829482313543e-07,7.543578264453553537e-07,7.940608699424793531e-07,8.337639134396033525e-07,8.734669569367273519e-07,9.131700004338513514e-07,9.528730439309753508e-07,9.925760874280993502e-07,1.032279130925223350e-06,1.071982174422347349e-06,1.111685217919471348e-06,1.151388261416595348e-06,1.191091304913719347e-06,1.230794348410843347e-06,1.270497391907967346e-06,1.310200435405091346e-06,1.349903478902215345e-06,1.389606522399339344e-06,1.429309565896463344e-06,1.469012609393587343e-06,1.508715652890711343e-06,1.548418696387835342e-06,1.588121739884959341e-06,1.627824783382083341e-06,1.667527826879207340e-06,1.707230870376331340e-06,1.746933913873455339e-06,1.786636957370579339e-06,1.826340000867703338e-06,1.866043044364827337e-06,1.905746087861951337e-06,1.945449131359075548e-06,1.985152174856199971e-06,2.024855218353324394e-06,2.064558261850448817e-06,2.104261305347573240e-06,2.143964348844697663e-06,2.183667392341822086e-06,2.223370435838946509e-06,2.263073479336070931e-06,2.302776522833195354e-06,2.342479566330319777e-06,2.382182609827444200e-06,2.421885653324568623e-06,2.461588696821693046e-06,2.501291740318817469e-06 +0.000000000000000000e+00,3.970219460904130867e-08,7.940438921808261735e-08,1.191065838271239194e-07,1.588087784361652082e-07,1.985109730452064970e-07,2.382131676542477859e-07,2.779153622632890747e-07,3.176175568723303635e-07,3.573197514813716523e-07,3.970219460904129412e-07,4.367241406994542300e-07,4.764263353084955188e-07,5.161285299175368606e-07,5.558307245265782553e-07,5.955329191356196500e-07,6.352351137446610447e-07,6.749373083537024394e-07,7.146395029627438341e-07,7.543416975717852288e-07,7.940438921808266235e-07,8.337460867898680182e-07,8.734482813989094129e-07,9.131504760079508076e-07,9.528526706169922023e-07,9.925548652260335970e-07,1.032257059835074992e-06,1.071959254444116386e-06,1.111661449053157781e-06,1.151363643662199176e-06,1.191065838271240570e-06,1.230768032880281965e-06,1.270470227489323360e-06,1.310172422098364755e-06,1.349874616707406149e-06,1.389576811316447544e-06,1.429279005925488939e-06,1.468981200534530333e-06,1.508683395143571728e-06,1.548385589752613123e-06,1.588087784361654517e-06,1.627789978970695912e-06,1.667492173579737307e-06,1.707194368188778702e-06,1.746896562797820096e-06,1.786598757406861491e-06,1.826300952015902886e-06,1.866003146624944280e-06,1.905705341233985675e-06,1.945407535843027282e-06,1.985109730452068888e-06,2.024811925061110494e-06,2.064514119670152101e-06,2.104216314279193707e-06,2.143918508888235314e-06,2.183620703497276920e-06,2.223322898106318527e-06,2.263025092715360133e-06,2.302727287324401740e-06,2.342429481933443346e-06,2.382131676542484953e-06,2.421833871151526559e-06,2.461536065760568166e-06,2.501238260369609772e-06 +0.000000000000000000e+00,4.120302747634714982e-08,8.240605495269429964e-08,1.236090824290414428e-07,1.648121099053885728e-07,2.060151373817357028e-07,2.472181648580828328e-07,2.884211923344299627e-07,3.296242198107770927e-07,3.708272472871242227e-07,4.120302747634713526e-07,4.532333022398184826e-07,4.944363297161655596e-07,5.356393571925126367e-07,5.768423846688597137e-07,6.180454121452067907e-07,6.592484396215538678e-07,7.004514670979009448e-07,7.416544945742480218e-07,7.828575220505950988e-07,8.240605495269421759e-07,8.652635770032892529e-07,9.064666044796363299e-07,9.476696319559834070e-07,9.888726594323304840e-07,1.030075686908677667e-06,1.071278714385024850e-06,1.112481741861372033e-06,1.153684769337719216e-06,1.194887796814066399e-06,1.236090824290413581e-06,1.277293851766760764e-06,1.318496879243107947e-06,1.359699906719455130e-06,1.400902934195802313e-06,1.442105961672149496e-06,1.483308989148496679e-06,1.524512016624843862e-06,1.565715044101191045e-06,1.606918071577538228e-06,1.648121099053885411e-06,1.689324126530232593e-06,1.730527154006579776e-06,1.771730181482926959e-06,1.812933208959274142e-06,1.854136236435621325e-06,1.895339263911968508e-06,1.936542291388315691e-06,1.977745318864663086e-06,2.018948346341010480e-06,2.060151373817357875e-06,2.101354401293705270e-06,2.142557428770052664e-06,2.183760456246400059e-06,2.224963483722747454e-06,2.266166511199094848e-06,2.307369538675442243e-06,2.348572566151789638e-06,2.389775593628137032e-06,2.430978621104484427e-06,2.472181648580831822e-06,2.513384676057179216e-06,2.554587703533526611e-06,2.595790731009874006e-06 +0.000000000000000000e+00,3.241828678600798015e-08,6.483657357201596031e-08,9.725486035802394046e-08,1.296731471440319206e-07,1.620914339300399008e-07,1.945097207160478809e-07,2.269280075020558611e-07,2.593462942880638412e-07,2.917645810740718214e-07,3.241828678600798015e-07,3.566011546460877817e-07,3.890194414320957618e-07,4.214377282181037420e-07,4.538560150041117221e-07,4.862743017901197023e-07,5.186925885761276825e-07,5.511108753621356626e-07,5.835291621481436428e-07,6.159474489341516229e-07,6.483657357201596031e-07,6.807840225061675832e-07,7.132023092921755634e-07,7.456205960781835435e-07,7.780388828641915237e-07,8.104571696501995038e-07,8.428754564362074840e-07,8.752937432222154641e-07,9.077120300082234443e-07,9.401303167942314244e-07,9.725486035802394046e-07,1.004966890366247385e-06,1.037385177152255365e-06,1.069803463938263345e-06,1.102221750724271325e-06,1.134640037510279305e-06,1.167058324296287286e-06,1.199476611082295266e-06,1.231894897868303246e-06,1.264313184654311226e-06,1.296731471440319206e-06,1.329149758226327186e-06,1.361568045012335166e-06,1.393986331798343147e-06,1.426404618584351127e-06,1.458822905370359107e-06,1.491241192156367087e-06,1.523659478942375067e-06,1.556077765728383047e-06,1.588496052514391028e-06,1.620914339300399008e-06,1.653332626086406988e-06,1.685750912872414968e-06,1.718169199658422948e-06,1.750587486444430928e-06,1.783005773230438908e-06,1.815424060016446889e-06,1.847842346802454869e-06,1.880260633588462849e-06,1.912678920374470829e-06,1.945097207160478809e-06,1.977515493946486789e-06,2.009933780732494770e-06,2.042352067518502750e-06 +0.000000000000000000e+00,3.970233216567460236e-08,7.940466433134920472e-08,1.191069964970238137e-07,1.588093286626984359e-07,1.985116608283730581e-07,2.382139929940476803e-07,2.779163251597223026e-07,3.176186573253969248e-07,3.573209894910715470e-07,3.970233216567461692e-07,4.367256538224207914e-07,4.764279859880954136e-07,5.161303181537700358e-07,5.558326503194446051e-07,5.955349824851191744e-07,6.352373146507937437e-07,6.749396468164683129e-07,7.146419789821428822e-07,7.543443111478174515e-07,7.940466433134920208e-07,8.337489754791665900e-07,8.734513076448411593e-07,9.131536398105157286e-07,9.528559719761902979e-07,9.925583041418648671e-07,1.032260636307539436e-06,1.071962968473214006e-06,1.111665300638888575e-06,1.151367632804563144e-06,1.191069964970237713e-06,1.230772297135912283e-06,1.270474629301586852e-06,1.310176961467261421e-06,1.349879293632935991e-06,1.389581625798610560e-06,1.429283957964285129e-06,1.468986290129959698e-06,1.508688622295634268e-06,1.548390954461308837e-06,1.588093286626983406e-06,1.627795618792657976e-06,1.667497950958332545e-06,1.707200283124007114e-06,1.746902615289681683e-06,1.786604947455356253e-06,1.826307279621030822e-06,1.866009611786705391e-06,1.905711943952379960e-06,1.945414276118054530e-06,1.985116608283728887e-06,2.024818940449403245e-06,2.064521272615077602e-06,2.104223604780751960e-06,2.143925936946426317e-06,2.183628269112100675e-06,2.223330601277775032e-06,2.263032933443449390e-06,2.302735265609123747e-06,2.342437597774798105e-06,2.382139929940472462e-06,2.421842262106146820e-06,2.461544594271821177e-06,2.501246926437495535e-06 +0.000000000000000000e+00,3.241676977469944460e-08,6.483353954939888921e-08,9.725030932409833381e-08,1.296670790987977784e-07,1.620838488734972363e-07,1.945006186481966941e-07,2.269173884228961519e-07,2.593341581975956098e-07,2.917509279722950676e-07,3.241676977469945254e-07,3.565844675216939833e-07,3.890012372963934411e-07,4.214180070710928990e-07,4.538347768457923568e-07,4.862515466204917617e-07,5.186683163951911137e-07,5.510850861698904656e-07,5.835018559445898176e-07,6.159186257192891695e-07,6.483353954939885215e-07,6.807521652686878735e-07,7.131689350433872254e-07,7.455857048180865774e-07,7.780024745927859293e-07,8.104192443674852813e-07,8.428360141421846333e-07,8.752527839168839852e-07,9.076695536915833372e-07,9.400863234662826891e-07,9.725030932409820411e-07,1.004919863015681393e-06,1.037336632790380745e-06,1.069753402565080097e-06,1.102170172339779449e-06,1.134586942114478801e-06,1.167003711889178153e-06,1.199420481663877505e-06,1.231837251438576857e-06,1.264254021213276209e-06,1.296670790987975561e-06,1.329087560762674913e-06,1.361504330537374265e-06,1.393921100312073617e-06,1.426337870086772969e-06,1.458754639861472320e-06,1.491171409636171672e-06,1.523588179410871024e-06,1.556004949185570376e-06,1.588421718960269728e-06,1.620838488734969080e-06,1.653255258509668432e-06,1.685672028284367784e-06,1.718088798059067136e-06,1.750505567833766488e-06,1.782922337608465840e-06,1.815339107383165192e-06,1.847755877157864544e-06,1.880172646932563896e-06,1.912589416707263036e-06,1.945006186481961965e-06,1.977422956256660893e-06,2.009839726031359822e-06,2.042256495806058750e-06 +0.000000000000000000e+00,3.970304349713201976e-08,7.940608699426403952e-08,1.191091304913960593e-07,1.588121739885280790e-07,1.985152174856600988e-07,2.382182609827921186e-07,2.779213044799241119e-07,3.176243479770561052e-07,3.573273914741880984e-07,3.970304349713200917e-07,4.367334784684520850e-07,4.764365219655840783e-07,5.161395654627160716e-07,5.558426089598480120e-07,5.955456524569799523e-07,6.352486959541118927e-07,6.749517394512438330e-07,7.146547829483757734e-07,7.543578264455077137e-07,7.940608699426396541e-07,8.337639134397715944e-07,8.734669569369035348e-07,9.131700004340354751e-07,9.528730439311674155e-07,9.925760874282994617e-07,1.032279130925431508e-06,1.071982174422563554e-06,1.111685217919695600e-06,1.151388261416827647e-06,1.191091304913959693e-06,1.230794348411091739e-06,1.270497391908223785e-06,1.310200435405355832e-06,1.349903478902487878e-06,1.389606522399619924e-06,1.429309565896751970e-06,1.469012609393884017e-06,1.508715652891016063e-06,1.548418696388148109e-06,1.588121739885280155e-06,1.627824783382412201e-06,1.667527826879544248e-06,1.707230870376676294e-06,1.746933913873808340e-06,1.786636957370940386e-06,1.826340000868072433e-06,1.866043044365204479e-06,1.905746087862336525e-06,1.945449131359468571e-06,1.985152174856600618e-06,2.024855218353732664e-06,2.064558261850864710e-06,2.104261305347996756e-06,2.143964348845128802e-06,2.183667392342260849e-06,2.223370435839392895e-06,2.263073479336524941e-06,2.302776522833656987e-06,2.342479566330789034e-06,2.382182609827921080e-06,2.421885653325053126e-06,2.461588696822185172e-06,2.501291740319317219e-06 +0.000000000000000000e+00,3.970233216567861253e-08,7.940466433135722507e-08,1.191069964970358310e-07,1.588093286627144237e-07,1.985116608283930163e-07,2.382139929940716090e-07,2.779163251597502017e-07,3.176186573254287944e-07,3.573209894911073871e-07,3.970233216567859797e-07,4.367256538224645724e-07,4.764279859881431651e-07,5.161303181538217048e-07,5.558326503195002975e-07,5.955349824851788902e-07,6.352373146508574829e-07,6.749396468165360756e-07,7.146419789822146682e-07,7.543443111478932609e-07,7.940466433135718536e-07,8.337489754792504463e-07,8.734513076449290390e-07,9.131536398106076317e-07,9.528559719762862243e-07,9.925583041419648170e-07,1.032260636307643410e-06,1.071962968473322002e-06,1.111665300639000595e-06,1.151367632804679188e-06,1.191069964970357780e-06,1.230772297136036373e-06,1.270474629301714966e-06,1.310176961467393558e-06,1.349879293633072151e-06,1.389581625798750744e-06,1.429283957964429336e-06,1.468986290130107929e-06,1.508688622295786522e-06,1.548390954461465115e-06,1.588093286627143707e-06,1.627795618792822300e-06,1.667497950958500893e-06,1.707200283124179485e-06,1.746902615289858078e-06,1.786604947455536671e-06,1.826307279621215263e-06,1.866009611786893856e-06,1.905711943952572449e-06,1.945414276118251041e-06,1.985116608283929634e-06,2.024818940449608227e-06,2.064521272615286819e-06,2.104223604780965412e-06,2.143925936946644005e-06,2.183628269112322597e-06,2.223330601278001190e-06,2.263032933443679783e-06,2.302735265609358375e-06,2.342437597775036968e-06,2.382139929940715561e-06,2.421842262106394154e-06,2.461544594272072746e-06,2.501246926437751339e-06 +0.000000000000000000e+00,4.120302747635530913e-08,8.240605495271061826e-08,1.236090824290659274e-07,1.648121099054212365e-07,2.060151373817765457e-07,2.472181648581318548e-07,2.884211923344871375e-07,3.296242198108424201e-07,3.708272472871977028e-07,4.120302747635529854e-07,4.532333022399082681e-07,4.944363297162636037e-07,5.356393571926189393e-07,5.768423846689742749e-07,6.180454121453296105e-07,6.592484396216849461e-07,7.004514670980402817e-07,7.416544945743956173e-07,7.828575220507509529e-07,8.240605495271062885e-07,8.652635770034616241e-07,9.064666044798169597e-07,9.476696319561722953e-07,9.888726594325276309e-07,1.030075686908883072e-06,1.071278714385238514e-06,1.112481741861593955e-06,1.153684769337949397e-06,1.194887796814304838e-06,1.236090824290660280e-06,1.277293851767015721e-06,1.318496879243371163e-06,1.359699906719726604e-06,1.400902934196082046e-06,1.442105961672437487e-06,1.483308989148792929e-06,1.524512016625148370e-06,1.565715044101503812e-06,1.606918071577859253e-06,1.648121099054214695e-06,1.689324126530570136e-06,1.730527154006925578e-06,1.771730181483281019e-06,1.812933208959636461e-06,1.854136236435991902e-06,1.895339263912347343e-06,1.936542291388702785e-06,1.977745318865058226e-06,2.018948346341413668e-06,2.060151373817769109e-06,2.101354401294124551e-06,2.142557428770479992e-06,2.183760456246835434e-06,2.224963483723190875e-06,2.266166511199546317e-06,2.307369538675901758e-06,2.348572566152257200e-06,2.389775593628612641e-06,2.430978621104968083e-06,2.472181648581323524e-06,2.513384676057678966e-06,2.554587703534034407e-06,2.595790731010389849e-06 +0.000000000000000000e+00,3.241828678601543801e-08,6.483657357203087603e-08,9.725486035804630742e-08,1.296731471440617256e-07,1.620914339300771437e-07,1.945097207160925619e-07,2.269280075021079801e-07,2.593462942881233982e-07,2.917645810741388429e-07,3.241828678601542875e-07,3.566011546461697321e-07,3.890194414321851768e-07,4.214377282182006214e-07,4.538560150042160660e-07,4.862743017902315106e-07,5.186925885762469023e-07,5.511108753622622940e-07,5.835291621482776857e-07,6.159474489342930774e-07,6.483657357203084691e-07,6.807840225063238608e-07,7.132023092923392525e-07,7.456205960783546442e-07,7.780388828643700359e-07,8.104571696503854276e-07,8.428754564364008193e-07,8.752937432224162109e-07,9.077120300084316026e-07,9.401303167944469943e-07,9.725486035804623860e-07,1.004966890366477778e-06,1.037385177152493169e-06,1.069803463938508561e-06,1.102221750724523953e-06,1.134640037510539344e-06,1.167058324296554736e-06,1.199476611082570128e-06,1.231894897868585520e-06,1.264313184654600911e-06,1.296731471440616303e-06,1.329149758226631695e-06,1.361568045012647086e-06,1.393986331798662478e-06,1.426404618584677870e-06,1.458822905370693261e-06,1.491241192156708653e-06,1.523659478942724045e-06,1.556077765728739436e-06,1.588496052514754828e-06,1.620914339300770220e-06,1.653332626086785612e-06,1.685750912872801003e-06,1.718169199658816395e-06,1.750587486444831787e-06,1.783005773230847178e-06,1.815424060016862570e-06,1.847842346802877962e-06,1.880260633588893353e-06,1.912678920374908745e-06,1.945097207160924349e-06,1.977515493946939952e-06,2.009933780732955555e-06,2.042352067518971159e-06 +0.000000000000000000e+00,6.633328433868646840e-08,1.326665686773729368e-07,1.989998530160593920e-07,2.653331373547458206e-07,3.316664216934322493e-07,3.979997060321186780e-07,4.643329903708051067e-07,5.306662747094915354e-07,5.969995590481779112e-07,6.633328433868642869e-07,7.296661277255506627e-07,7.959994120642370384e-07,8.623326964029234142e-07,9.286659807416097899e-07,9.949992650802961657e-07,1.061332549418982436e-06,1.127665833757668705e-06,1.193999118096354975e-06,1.260332402435041245e-06,1.326665686773727515e-06,1.392998971112413785e-06,1.459332255451100055e-06,1.525665539789786325e-06,1.591998824128472595e-06,1.658332108467158864e-06,1.724665392805845134e-06,1.790998677144531404e-06,1.857331961483217674e-06,1.923665245821903944e-06,1.989998530160590214e-06,2.056331814499276484e-06,2.122665098837962754e-06,2.188998383176649023e-06,2.255331667515335293e-06,2.321664951854021563e-06,2.387998236192707833e-06,2.454331520531394103e-06,2.520664804870080373e-06,2.586998089208766643e-06,2.653331373547452913e-06,2.719664657886139182e-06,2.785997942224825452e-06,2.852331226563511722e-06,2.918664510902197992e-06,2.984997795240884262e-06,3.051331079579570532e-06,3.117664363918256802e-06,3.183997648256943072e-06,3.250330932595629341e-06,3.316664216934315611e-06,3.382997501273001881e-06,3.449330785611688151e-06,3.515664069950374421e-06,3.581997354289060691e-06,3.648330638627746961e-06,3.714663922966433231e-06,3.780997207305119500e-06,3.847330491643806194e-06,3.913663775982492887e-06,3.979997060321179581e-06,4.046330344659866274e-06,4.112663628998552967e-06,4.178996913337239661e-06 +0.000000000000000000e+00,6.318577277435094355e-08,1.263715455487018871e-07,1.895573183230528307e-07,2.527430910974037742e-07,3.159288638717547178e-07,3.791146366461056613e-07,4.423004094204566049e-07,5.054861821948075484e-07,5.686719549691584390e-07,6.318577277435093296e-07,6.950435005178602202e-07,7.582292732922111109e-07,8.214150460665620015e-07,8.846008188409128921e-07,9.477865916152637827e-07,1.010972364389614673e-06,1.074158137163965564e-06,1.137343909938316455e-06,1.200529682712667345e-06,1.263715455487018236e-06,1.326901228261369126e-06,1.390087001035720017e-06,1.453272773810070908e-06,1.516458546584421798e-06,1.579644319358772689e-06,1.642830092133123579e-06,1.706015864907474470e-06,1.769201637681825361e-06,1.832387410456176251e-06,1.895573183230527142e-06,1.958758956004878032e-06,2.021944728779228923e-06,2.085130501553579814e-06,2.148316274327930704e-06,2.211502047102281595e-06,2.274687819876632486e-06,2.337873592650983376e-06,2.401059365425334267e-06,2.464245138199685157e-06,2.527430910974036048e-06,2.590616683748386939e-06,2.653802456522737829e-06,2.716988229297088720e-06,2.780174002071439610e-06,2.843359774845790501e-06,2.906545547620141392e-06,2.969731320394492282e-06,3.032917093168843173e-06,3.096102865943194064e-06,3.159288638717544954e-06,3.222474411491895845e-06,3.285660184266246735e-06,3.348845957040597626e-06,3.412031729814948517e-06,3.475217502589299407e-06,3.538403275363650298e-06,3.601589048138001188e-06,3.664774820912352079e-06,3.727960593686702970e-06,3.791146366461053860e-06,3.854332139235405174e-06,3.917517912009756912e-06,3.980703684784108650e-06 +0.000000000000000000e+00,6.299087845290257992e-08,1.259817569058051598e-07,1.889726353587077398e-07,2.519635138116103197e-07,3.149543922645129261e-07,3.779452707174155325e-07,4.409361491703181389e-07,5.039270276232207453e-07,5.669179060761233517e-07,6.299087845290259581e-07,6.928996629819285645e-07,7.558905414348311709e-07,8.188814198877337772e-07,8.818722983406363836e-07,9.448631767935389900e-07,1.007854055246441702e-06,1.070844933699344520e-06,1.133835812152247339e-06,1.196826690605150157e-06,1.259817569058052975e-06,1.322808447510955793e-06,1.385799325963858611e-06,1.448790204416761429e-06,1.511781082869664248e-06,1.574771961322567066e-06,1.637762839775469884e-06,1.700753718228372702e-06,1.763744596681275520e-06,1.826735475134178338e-06,1.889726353587081156e-06,1.952717232039983975e-06,2.015708110492886793e-06,2.078698988945789611e-06,2.141689867398692429e-06,2.204680745851595247e-06,2.267671624304498065e-06,2.330662502757400884e-06,2.393653381210303702e-06,2.456644259663206520e-06,2.519635138116109338e-06,2.582626016569012156e-06,2.645616895021914974e-06,2.708607773474817792e-06,2.771598651927720611e-06,2.834589530380623429e-06,2.897580408833526247e-06,2.960571287286429065e-06,3.023562165739331883e-06,3.086553044192234701e-06,3.149543922645137519e-06,3.212534801098040338e-06,3.275525679550943156e-06,3.338516558003845974e-06,3.401507436456748792e-06,3.464498314909651610e-06,3.527489193362554428e-06,3.590480071815457247e-06,3.653470950268360065e-06,3.716461828721262883e-06,3.779452707174165701e-06,3.842443585627068519e-06,3.905434464079971337e-06,3.968425342532874155e-06 +0.000000000000000000e+00,6.570947414532256601e-08,1.314189482906451320e-07,1.971284224359677113e-07,2.628378965812903170e-07,3.285473707266129227e-07,3.942568448719355284e-07,4.599663190172581341e-07,5.256757931625807399e-07,5.913852673079033456e-07,6.570947414532259513e-07,7.228042155985485570e-07,7.885136897438711627e-07,8.542231638891937684e-07,9.199326380345163742e-07,9.856421121798388740e-07,1.051351586325161268e-06,1.117061060470483662e-06,1.182770534615806056e-06,1.248480008761128450e-06,1.314189482906450844e-06,1.379898957051773238e-06,1.445608431197095632e-06,1.511317905342418026e-06,1.577027379487740420e-06,1.642736853633062814e-06,1.708446327778385208e-06,1.774155801923707602e-06,1.839865276069029995e-06,1.905574750214352389e-06,1.971284224359674783e-06,2.036993698504997177e-06,2.102703172650319571e-06,2.168412646795641965e-06,2.234122120940964359e-06,2.299831595086286753e-06,2.365541069231609147e-06,2.431250543376931541e-06,2.496960017522253935e-06,2.562669491667576329e-06,2.628378965812898723e-06,2.694088439958221117e-06,2.759797914103543511e-06,2.825507388248865905e-06,2.891216862394188299e-06,2.956926336539510693e-06,3.022635810684833087e-06,3.088345284830155481e-06,3.154054758975477875e-06,3.219764233120800269e-06,3.285473707266122663e-06,3.351183181411445057e-06,3.416892655556767450e-06,3.482602129702089844e-06,3.548311603847412238e-06,3.614021077992734632e-06,3.679730552138057026e-06,3.745440026283379420e-06,3.811149500428701814e-06,3.876858974574023785e-06,3.942568448719345332e-06,4.008277922864666879e-06,4.073987397009988425e-06,4.139696871155309972e-06 +0.000000000000000000e+00,5.942703660609043998e-08,1.188540732121808800e-07,1.782811098182713133e-07,2.377081464243617334e-07,2.971351830304521271e-07,3.565622196365425207e-07,4.159892562426329144e-07,4.754162928487233080e-07,5.348433294548137017e-07,5.942703660609040424e-07,6.536974026669943831e-07,7.131244392730847238e-07,7.725514758791750646e-07,8.319785124852654053e-07,8.914055490913557460e-07,9.508325856974460867e-07,1.010259622303536533e-06,1.069686658909626980e-06,1.129113695515717426e-06,1.188540732121807873e-06,1.247967768727898320e-06,1.307394805333988766e-06,1.366821841940079213e-06,1.426248878546169659e-06,1.485675915152260106e-06,1.545102951758350553e-06,1.604529988364440999e-06,1.663957024970531446e-06,1.723384061576621892e-06,1.782811098182712339e-06,1.842238134788802786e-06,1.901665171394893232e-06,1.961092208000983679e-06,2.020519244607073914e-06,2.079946281213164148e-06,2.139373317819254383e-06,2.198800354425344618e-06,2.258227391031434853e-06,2.317654427637525088e-06,2.377081464243615323e-06,2.436508500849705557e-06,2.495935537455795792e-06,2.555362574061886027e-06,2.614789610667976262e-06,2.674216647274066497e-06,2.733643683880156732e-06,2.793070720486246966e-06,2.852497757092337201e-06,2.911924793698427436e-06,2.971351830304517671e-06,3.030778866910607906e-06,3.090205903516698141e-06,3.149632940122788375e-06,3.209059976728878610e-06,3.268487013334968845e-06,3.327914049941059080e-06,3.387341086547149315e-06,3.446768123153239550e-06,3.506195159759329784e-06,3.565622196365420019e-06,3.625049232971510254e-06,3.684476269577600489e-06,3.743903306183690724e-06 +0.000000000000000000e+00,6.304628749726111057e-08,1.260925749945222211e-07,1.891388624917833185e-07,2.521851499890443893e-07,3.152314374863054602e-07,3.782777249835665310e-07,4.413240124808276019e-07,5.043702999780886728e-07,5.674165874753497966e-07,6.304628749726109204e-07,6.935091624698720442e-07,7.565554499671331680e-07,8.196017374643942918e-07,8.826480249616554156e-07,9.456943124589165394e-07,1.008740599956177557e-06,1.071786887453438575e-06,1.134833174950699593e-06,1.197879462447960611e-06,1.260925749945221629e-06,1.323972037442482647e-06,1.387018324939743665e-06,1.450064612437004683e-06,1.513110899934265701e-06,1.576157187431526719e-06,1.639203474928787737e-06,1.702249762426048754e-06,1.765296049923309772e-06,1.828342337420570790e-06,1.891388624917831808e-06,1.954434912415092614e-06,2.017481199912353421e-06,2.080527487409614227e-06,2.143573774906875033e-06,2.206620062404135839e-06,2.269666349901396645e-06,2.332712637398657451e-06,2.395758924895918257e-06,2.458805212393179064e-06,2.521851499890439870e-06,2.584897787387700676e-06,2.647944074884961482e-06,2.710990362382222288e-06,2.774036649879483094e-06,2.837082937376743901e-06,2.900129224874004707e-06,2.963175512371265513e-06,3.026221799868526319e-06,3.089268087365787125e-06,3.152314374863047931e-06,3.215360662360308738e-06,3.278406949857569544e-06,3.341453237354830350e-06,3.404499524852091156e-06,3.467545812349351962e-06,3.530592099846612768e-06,3.593638387343873575e-06,3.656684674841134381e-06,3.719730962338395187e-06,3.782777249835655993e-06,3.845823537332916799e-06,3.908869824830177605e-06,3.971916112327438412e-06 +0.000000000000000000e+00,6.303568964531527314e-08,1.260713792906305463e-07,1.891070689359458194e-07,2.521427585812610926e-07,3.151784482265763657e-07,3.782141378718916389e-07,4.412498275172069120e-07,5.042855171625221851e-07,5.673212068078374583e-07,6.303568964531527314e-07,6.933925860984680046e-07,7.564282757437832777e-07,8.194639653890985508e-07,8.824996550344138240e-07,9.455353446797290971e-07,1.008571034325044370e-06,1.071606723970359643e-06,1.134642413615674917e-06,1.197678103260990190e-06,1.260713792906305463e-06,1.323749482551620736e-06,1.386785172196936009e-06,1.449820861842251282e-06,1.512856551487566555e-06,1.575892241132881829e-06,1.638927930778197102e-06,1.701963620423512375e-06,1.764999310068827648e-06,1.828034999714142921e-06,1.891070689359458194e-06,1.954106379004773467e-06,2.017142068650088741e-06,2.080177758295404014e-06,2.143213447940719287e-06,2.206249137586034560e-06,2.269284827231349833e-06,2.332320516876665106e-06,2.395356206521980379e-06,2.458391896167295653e-06,2.521427585812610926e-06,2.584463275457926199e-06,2.647498965103241472e-06,2.710534654748556745e-06,2.773570344393872018e-06,2.836606034039187291e-06,2.899641723684502565e-06,2.962677413329817838e-06,3.025713102975133111e-06,3.088748792620448384e-06,3.151784482265763657e-06,3.214820171911078930e-06,3.277855861556394203e-06,3.340891551201709477e-06,3.403927240847024750e-06,3.466962930492340023e-06,3.529998620137655296e-06,3.593034309782970569e-06,3.656069999428285842e-06,3.719105689073601115e-06,3.782141378718916389e-06,3.845177068364231238e-06,3.908212758009546088e-06,3.971248447654860937e-06 +0.000000000000000000e+00,5.922161214600048955e-08,1.184432242920009791e-07,1.776648364380014620e-07,2.368864485840019317e-07,2.961080607300024014e-07,3.553296728760028711e-07,4.145512850220033408e-07,4.737728971680038105e-07,5.329945093140043331e-07,5.922161214600049087e-07,6.514377336060054843e-07,7.106593457520060599e-07,7.698809578980066354e-07,8.291025700440072110e-07,8.883241821900077866e-07,9.475457943360083622e-07,1.006767406482008938e-06,1.065989018628009513e-06,1.125210630774010089e-06,1.184432242920010664e-06,1.243653855066011240e-06,1.302875467212011816e-06,1.362097079358012391e-06,1.421318691504012967e-06,1.480540303650013542e-06,1.539761915796014118e-06,1.598983527942014694e-06,1.658205140088015269e-06,1.717426752234015845e-06,1.776648364380016420e-06,1.835869976526016996e-06,1.895091588672017571e-06,1.954313200818018359e-06,2.013534812964019146e-06,2.072756425110019933e-06,2.131978037256020721e-06,2.191199649402021508e-06,2.250421261548022295e-06,2.309642873694023083e-06,2.368864485840023870e-06,2.428086097986024657e-06,2.487307710132025445e-06,2.546529322278026232e-06,2.605750934424027019e-06,2.664972546570027807e-06,2.724194158716028594e-06,2.783415770862029381e-06,2.842637383008030169e-06,2.901858995154030956e-06,2.961080607300031743e-06,3.020302219446032531e-06,3.079523831592033318e-06,3.138745443738034105e-06,3.197967055884034893e-06,3.257188668030035680e-06,3.316410280176036467e-06,3.375631892322037255e-06,3.434853504468038042e-06,3.494075116614038829e-06,3.553296728760039617e-06,3.612518340906040404e-06,3.671739953052041191e-06,3.730961565198041979e-06 +0.000000000000000000e+00,6.633328433869366818e-08,1.326665686773873364e-07,1.989998530160809913e-07,2.653331373547746198e-07,3.316664216934682482e-07,3.979997060321618767e-07,4.643329903708555052e-07,5.306662747095491337e-07,5.969995590482427092e-07,6.633328433869362847e-07,7.296661277256298603e-07,7.959994120643234358e-07,8.623326964030170113e-07,9.286659807417105869e-07,9.949992650804041624e-07,1.061332549419097632e-06,1.127665833757791102e-06,1.193999118096484571e-06,1.260332402435178041e-06,1.326665686773871511e-06,1.392998971112564980e-06,1.459332255451258450e-06,1.525665539789951920e-06,1.591998824128645389e-06,1.658332108467338859e-06,1.724665392806032329e-06,1.790998677144725798e-06,1.857331961483419268e-06,1.923665245822112738e-06,1.989998530160806207e-06,2.056331814499499677e-06,2.122665098838193147e-06,2.188998383176886616e-06,2.255331667515580086e-06,2.321664951854273555e-06,2.387998236192967025e-06,2.454331520531660495e-06,2.520664804870353964e-06,2.586998089209047434e-06,2.653331373547740904e-06,2.719664657886434373e-06,2.785997942225127843e-06,2.852331226563821313e-06,2.918664510902514782e-06,2.984997795241208252e-06,3.051331079579901722e-06,3.117664363918595191e-06,3.183997648257288661e-06,3.250330932595982131e-06,3.316664216934675600e-06,3.382997501273369070e-06,3.449330785612062540e-06,3.515664069950756009e-06,3.581997354289449479e-06,3.648330638628142949e-06,3.714663922966836418e-06,3.780997207305529888e-06,3.847330491644222934e-06,3.913663775982915557e-06,3.979997060321608179e-06,4.046330344660300802e-06,4.112663628998993424e-06,4.178996913337686047e-06 +0.000000000000000000e+00,6.318577277435954623e-08,1.263715455487190925e-07,1.895573183230786387e-07,2.527430910974381849e-07,3.159288638717977576e-07,3.791146366461573303e-07,4.423004094205169030e-07,5.054861821948764757e-07,5.686719549692360484e-07,6.318577277435956211e-07,6.950435005179551938e-07,7.582292732923147665e-07,8.214150460666743392e-07,8.846008188410339119e-07,9.477865916153934846e-07,1.010972364389753163e-06,1.074158137164112948e-06,1.137343909938472732e-06,1.200529682712832517e-06,1.263715455487192301e-06,1.326901228261552085e-06,1.390087001035911870e-06,1.453272773810271654e-06,1.516458546584631439e-06,1.579644319358991223e-06,1.642830092133351008e-06,1.706015864907710792e-06,1.769201637682070577e-06,1.832387410456430361e-06,1.895573183230790146e-06,1.958758956005149930e-06,2.021944728779509715e-06,2.085130501553869499e-06,2.148316274328229283e-06,2.211502047102589068e-06,2.274687819876948852e-06,2.337873592651308637e-06,2.401059365425668421e-06,2.464245138200028206e-06,2.527430910974387990e-06,2.590616683748747775e-06,2.653802456523107559e-06,2.716988229297467344e-06,2.780174002071827128e-06,2.843359774846186912e-06,2.906545547620546697e-06,2.969731320394906481e-06,3.032917093169266266e-06,3.096102865943626050e-06,3.159288638717985835e-06,3.222474411492345619e-06,3.285660184266705404e-06,3.348845957041065188e-06,3.412031729815424973e-06,3.475217502589784757e-06,3.538403275364144542e-06,3.601589048138504326e-06,3.664774820912864110e-06,3.727960593687223895e-06,3.791146366461583679e-06,3.854332139235943887e-06,3.917517912010304095e-06,3.980703684784664303e-06 +0.000000000000000000e+00,6.303568964531946860e-08,1.260713792906389372e-07,1.891070689359584190e-07,2.521427585812779273e-07,3.151784482265974357e-07,3.782141378719169440e-07,4.412498275172364523e-07,5.042855171625559606e-07,5.673212068078754689e-07,6.303568964531949772e-07,6.933925860985144855e-07,7.564282757438339938e-07,8.194639653891535021e-07,8.824996550344730104e-07,9.455353446797925187e-07,1.008571034325112133e-06,1.071606723970431641e-06,1.134642413615751150e-06,1.197678103261070658e-06,1.260713792906390166e-06,1.323749482551709674e-06,1.386785172197029183e-06,1.449820861842348691e-06,1.512856551487668199e-06,1.575892241132987708e-06,1.638927930778307216e-06,1.701963620423626724e-06,1.764999310068946233e-06,1.828034999714265741e-06,1.891070689359585249e-06,1.954106379004904758e-06,2.017142068650224266e-06,2.080177758295543774e-06,2.143213447940863282e-06,2.206249137586182791e-06,2.269284827231502299e-06,2.332320516876821807e-06,2.395356206522141316e-06,2.458391896167460824e-06,2.521427585812780332e-06,2.584463275458099841e-06,2.647498965103419349e-06,2.710534654748738857e-06,2.773570344394058365e-06,2.836606034039377874e-06,2.899641723684697382e-06,2.962677413330016890e-06,3.025713102975336399e-06,3.088748792620655907e-06,3.151784482265975415e-06,3.214820171911294924e-06,3.277855861556614432e-06,3.340891551201933940e-06,3.403927240847253449e-06,3.466962930492572957e-06,3.529998620137892465e-06,3.593034309783211973e-06,3.656069999428531482e-06,3.719105689073850990e-06,3.782141378719170498e-06,3.845177068364490430e-06,3.908212758009810362e-06,3.971248447655130294e-06 +0.000000000000000000e+00,6.570947414532999079e-08,1.314189482906599816e-07,1.971284224359899724e-07,2.628378965813199631e-07,3.285473707266499804e-07,3.942568448719799977e-07,4.599663190173100149e-07,5.256757931626400322e-07,5.913852673079700494e-07,6.570947414533000667e-07,7.228042155986300839e-07,7.885136897439601012e-07,8.542231638892901184e-07,9.199326380346201357e-07,9.856421121799502588e-07,1.051351586325280276e-06,1.117061060470610293e-06,1.182770534615940311e-06,1.248480008761270328e-06,1.314189482906600345e-06,1.379898957051930362e-06,1.445608431197260380e-06,1.511317905342590397e-06,1.577027379487920414e-06,1.642736853633250431e-06,1.708446327778580449e-06,1.774155801923910466e-06,1.839865276069240483e-06,1.905574750214570500e-06,1.971284224359900518e-06,2.036993698505230535e-06,2.102703172650560552e-06,2.168412646795890569e-06,2.234122120941220587e-06,2.299831595086550604e-06,2.365541069231880621e-06,2.431250543377210638e-06,2.496960017522540656e-06,2.562669491667870673e-06,2.628378965813200690e-06,2.694088439958530707e-06,2.759797914103860725e-06,2.825507388249190742e-06,2.891216862394520759e-06,2.956926336539850776e-06,3.022635810685180794e-06,3.088345284830510811e-06,3.154054758975840828e-06,3.219764233121170846e-06,3.285473707266500863e-06,3.351183181411830880e-06,3.416892655557160897e-06,3.482602129702490915e-06,3.548311603847820932e-06,3.614021077993150949e-06,3.679730552138480966e-06,3.745440026283810984e-06,3.811149500429141001e-06,3.876858974574471018e-06,3.942568448719801035e-06,4.008277922865131053e-06,4.073987397010461070e-06,4.139696871155791087e-06 +0.000000000000000000e+00,5.942703660609853311e-08,1.188540732121970662e-07,1.782811098182955861e-07,2.377081464243941060e-07,2.971351830304926258e-07,3.565622196365911722e-07,4.159892562426897185e-07,4.754162928487882649e-07,5.348433294548868642e-07,5.942703660609854635e-07,6.536974026670840627e-07,7.131244392731826620e-07,7.725514758792812613e-07,8.319785124853798606e-07,8.914055490914784599e-07,9.508325856975770592e-07,1.010259622303675658e-06,1.069686658909774152e-06,1.129113695515872645e-06,1.188540732121971139e-06,1.247967768728069632e-06,1.307394805334168125e-06,1.366821841940266619e-06,1.426248878546365112e-06,1.485675915152463606e-06,1.545102951758562099e-06,1.604529988364660593e-06,1.663957024970759086e-06,1.723384061576857579e-06,1.782811098182956073e-06,1.842238134789054566e-06,1.901665171395153060e-06,1.961092208001251341e-06,2.020519244607349623e-06,2.079946281213447904e-06,2.139373317819546186e-06,2.198800354425644468e-06,2.258227391031742749e-06,2.317654427637841031e-06,2.377081464243939313e-06,2.436508500850037594e-06,2.495935537456135876e-06,2.555362574062234158e-06,2.614789610668332439e-06,2.674216647274430721e-06,2.733643683880529003e-06,2.793070720486627284e-06,2.852497757092725566e-06,2.911924793698823848e-06,2.971351830304922129e-06,3.030778866911020411e-06,3.090205903517118692e-06,3.149632940123216974e-06,3.209059976729315256e-06,3.268487013335413537e-06,3.327914049941511819e-06,3.387341086547610101e-06,3.446768123153708382e-06,3.506195159759806664e-06,3.565622196365904946e-06,3.625049232972003227e-06,3.684476269578101509e-06,3.743903306184199791e-06 +0.000000000000000000e+00,6.304628749726786036e-08,1.260925749945357207e-07,1.891388624918035943e-07,2.521851499890714944e-07,3.152314374863393944e-07,3.782777249836072945e-07,4.413240124808751946e-07,5.043702999781430946e-07,5.674165874754109947e-07,6.304628749726788948e-07,6.935091624699467948e-07,7.565554499672146949e-07,8.196017374644825950e-07,8.826480249617504950e-07,9.456943124590183951e-07,1.008740599956286401e-06,1.071786887453554407e-06,1.134833174950822413e-06,1.197879462448090419e-06,1.260925749945358425e-06,1.323972037442626431e-06,1.387018324939894437e-06,1.450064612437162443e-06,1.513110899934430449e-06,1.576157187431698455e-06,1.639203474928966460e-06,1.702249762426234466e-06,1.765296049923502472e-06,1.828342337420770478e-06,1.891388624918038484e-06,1.954434912415306490e-06,2.017481199912574496e-06,2.080527487409842502e-06,2.143573774907110508e-06,2.206620062404378514e-06,2.269666349901646520e-06,2.332712637398914526e-06,2.395758924896182532e-06,2.458805212393450538e-06,2.521851499890718544e-06,2.584897787387986550e-06,2.647944074885254556e-06,2.710990362382522561e-06,2.774036649879790567e-06,2.837082937377058573e-06,2.900129224874326579e-06,2.963175512371594585e-06,3.026221799868862591e-06,3.089268087366130597e-06,3.152314374863398603e-06,3.215360662360666609e-06,3.278406949857934615e-06,3.341453237355202621e-06,3.404499524852470627e-06,3.467545812349738633e-06,3.530592099847006639e-06,3.593638387344274645e-06,3.656684674841542651e-06,3.719730962338810657e-06,3.782777249836078663e-06,3.845823537333347092e-06,3.908869824830615521e-06,3.971916112327883951e-06 +0.000000000000000000e+00,6.543456033953096851e-08,1.308691206790619370e-07,1.963036810185928923e-07,2.617382413581238211e-07,3.271728016976547499e-07,3.926073620371856787e-07,4.580419223767166075e-07,5.234764827162475363e-07,5.889110430557785181e-07,6.543456033953094998e-07,7.197801637348404816e-07,7.852147240743714633e-07,8.506492844139024450e-07,9.160838447534334268e-07,9.815184050929644085e-07,1.046952965432495284e-06,1.112387525772026160e-06,1.177822086111557036e-06,1.243256646451087912e-06,1.308691206790618788e-06,1.374125767130149664e-06,1.439560327469680540e-06,1.504994887809211415e-06,1.570429448148742291e-06,1.635864008488273167e-06,1.701298568827804043e-06,1.766733129167334919e-06,1.832167689506865795e-06,1.897602249846396671e-06,1.963036810185927547e-06,2.028471370525458422e-06,2.093905930864989298e-06,2.159340491204520174e-06,2.224775051544051050e-06,2.290209611883581926e-06,2.355644172223112802e-06,2.421078732562643678e-06,2.486513292902174553e-06,2.551947853241705429e-06,2.617382413581236305e-06,2.682816973920767181e-06,2.748251534260298057e-06,2.813686094599828933e-06,2.879120654939359809e-06,2.944555215278890684e-06,3.009989775618421560e-06,3.075424335957952436e-06,3.140858896297483312e-06,3.206293456637014188e-06,3.271728016976545064e-06,3.337162577316075940e-06,3.402597137655606816e-06,3.468031697995137691e-06,3.533466258334668567e-06,3.598900818674199443e-06,3.664335379013730319e-06,3.729769939353261195e-06,3.795204499692792071e-06,3.860639060032323370e-06,3.926073620371854246e-06,3.991508180711385122e-06,4.056942741050915998e-06,4.122377301390446874e-06 +0.000000000000000000e+00,6.609095152406148173e-08,1.321819030481229635e-07,1.982728545721844320e-07,2.643638060962458740e-07,3.304547576203073160e-07,3.965457091443687580e-07,4.626366606684302001e-07,5.287276121924916421e-07,5.948185637165531371e-07,6.609095152406146320e-07,7.270004667646761270e-07,7.930914182887376220e-07,8.591823698127991169e-07,9.252733213368606119e-07,9.913642728609221069e-07,1.057455224384983496e-06,1.123546175909044885e-06,1.189637127433106274e-06,1.255728078957167663e-06,1.321819030481229052e-06,1.387909982005290441e-06,1.454000933529351830e-06,1.520091885053413220e-06,1.586182836577474609e-06,1.652273788101535998e-06,1.718364739625597387e-06,1.784455691149658776e-06,1.850546642673720165e-06,1.916637594197781554e-06,1.982728545721842943e-06,2.048819497245904332e-06,2.114910448769965721e-06,2.181001400294027110e-06,2.247092351818088500e-06,2.313183303342149889e-06,2.379274254866211278e-06,2.445365206390272667e-06,2.511456157914334056e-06,2.577547109438395445e-06,2.643638060962456834e-06,2.709729012486518223e-06,2.775819964010579612e-06,2.841910915534641001e-06,2.908001867058702390e-06,2.974092818582763779e-06,3.040183770106825169e-06,3.106274721630886558e-06,3.172365673154947947e-06,3.238456624679009336e-06,3.304547576203070725e-06,3.370638527727132114e-06,3.436729479251193503e-06,3.502820430775254892e-06,3.568911382299316281e-06,3.635002333823377670e-06,3.701093285347439059e-06,3.767184236871500449e-06,3.833275188395561414e-06,3.899366139919622380e-06,3.965457091443683345e-06,4.031548042967744311e-06,4.097638994491805276e-06,4.163729946015866242e-06 +0.000000000000000000e+00,6.180310941043911799e-08,1.236062188208782360e-07,1.854093282313173540e-07,2.472124376417564720e-07,3.090155470521955900e-07,3.708186564626347080e-07,4.326217658730738259e-07,4.944248752835129439e-07,5.562279846939520090e-07,6.180310941043910740e-07,6.798342035148301391e-07,7.416373129252692042e-07,8.034404223357082692e-07,8.652435317461473343e-07,9.270466411565863993e-07,9.888497505670254644e-07,1.050652859977464529e-06,1.112455969387903594e-06,1.174259078798342660e-06,1.236062188208781725e-06,1.297865297619220790e-06,1.359668407029659855e-06,1.421471516440098920e-06,1.483274625850537985e-06,1.545077735260977050e-06,1.606880844671416115e-06,1.668683954081855180e-06,1.730487063492294245e-06,1.792290172902733310e-06,1.854093282313172375e-06,1.915896391723611652e-06,1.977699501134050929e-06,2.039502610544490206e-06,2.101305719954929482e-06,2.163108829365368759e-06,2.224911938775808036e-06,2.286715048186247313e-06,2.348518157596686590e-06,2.410321267007125866e-06,2.472124376417565143e-06,2.533927485828004420e-06,2.595730595238443697e-06,2.657533704648882974e-06,2.719336814059322250e-06,2.781139923469761527e-06,2.842943032880200804e-06,2.904746142290640081e-06,2.966549251701079358e-06,3.028352361111518635e-06,3.090155470521957911e-06,3.151958579932397188e-06,3.213761689342836465e-06,3.275564798753275742e-06,3.337367908163715019e-06,3.399171017574154295e-06,3.460974126984593572e-06,3.522777236395032849e-06,3.584580345805472126e-06,3.646383455215911403e-06,3.708186564626350679e-06,3.769989674036789956e-06,3.831792783447229233e-06,3.893595892857668510e-06 +0.000000000000000000e+00,6.543456033953688451e-08,1.308691206790737690e-07,1.963036810186106535e-07,2.617382413581475380e-07,3.271728016976844490e-07,3.926073620372213600e-07,4.580419223767582709e-07,5.234764827162951819e-07,5.889110430558320929e-07,6.543456033953690039e-07,7.197801637349059148e-07,7.852147240744428258e-07,8.506492844139797368e-07,9.160838447535166478e-07,9.815184050930535587e-07,1.046952965432590576e-06,1.112387525772127592e-06,1.177822086111664609e-06,1.243256646451201626e-06,1.308691206790738643e-06,1.374125767130275660e-06,1.439560327469812677e-06,1.504994887809349694e-06,1.570429448148886710e-06,1.635864008488423727e-06,1.701298568827960744e-06,1.766733129167497761e-06,1.832167689507034778e-06,1.897602249846571795e-06,1.963036810186108812e-06,2.028471370525646040e-06,2.093905930865183269e-06,2.159340491204720497e-06,2.224775051544257726e-06,2.290209611883794955e-06,2.355644172223332183e-06,2.421078732562869412e-06,2.486513292902406640e-06,2.551947853241943869e-06,2.617382413581481098e-06,2.682816973921018326e-06,2.748251534260555555e-06,2.813686094600092784e-06,2.879120654939630012e-06,2.944555215279167241e-06,3.009989775618704469e-06,3.075424335958241698e-06,3.140858896297778927e-06,3.206293456637316155e-06,3.271728016976853384e-06,3.337162577316390612e-06,3.402597137655927841e-06,3.468031697995465070e-06,3.533466258335002298e-06,3.598900818674539527e-06,3.664335379014076755e-06,3.729769939353613984e-06,3.795204499693151213e-06,3.860639060032688441e-06,3.926073620372225246e-06,3.991508180711762052e-06,4.056942741051298857e-06,4.122377301390835662e-06 +0.000000000000000000e+00,6.609095152406788742e-08,1.321819030481357748e-07,1.982728545722036490e-07,2.643638060962714967e-07,3.304547576203393444e-07,3.965457091444071922e-07,4.626366606684750399e-07,5.287276121925428876e-07,5.948185637166107353e-07,6.609095152406785830e-07,7.270004667647464307e-07,7.930914182888142784e-07,8.591823698128821262e-07,9.252733213369499739e-07,9.913642728610178216e-07,1.057455224385085563e-06,1.123546175909153305e-06,1.189637127433221047e-06,1.255728078957288789e-06,1.321819030481356531e-06,1.387909982005424273e-06,1.454000933529492014e-06,1.520091885053559756e-06,1.586182836577627498e-06,1.652273788101695240e-06,1.718364739625762982e-06,1.784455691149830724e-06,1.850546642673898465e-06,1.916637594197966207e-06,1.982728545722033949e-06,2.048819497246101691e-06,2.114910448770169433e-06,2.181001400294237175e-06,2.247092351818304916e-06,2.313183303342372658e-06,2.379274254866440400e-06,2.445365206390508142e-06,2.511456157914575884e-06,2.577547109438643626e-06,2.643638060962711367e-06,2.709729012486779109e-06,2.775819964010846851e-06,2.841910915534914593e-06,2.908001867058982335e-06,2.974092818583050077e-06,3.040183770107117818e-06,3.106274721631185560e-06,3.172365673155253302e-06,3.238456624679321044e-06,3.304547576203388786e-06,3.370638527727456528e-06,3.436729479251524269e-06,3.502820430775592011e-06,3.568911382299659753e-06,3.635002333823727495e-06,3.701093285347795237e-06,3.767184236871862979e-06,3.833275188395930720e-06,3.899366139919998462e-06,3.965457091444066204e-06,4.031548042968133946e-06,4.097638994492201688e-06,4.163729946016269430e-06 +0.000000000000000000e+00,6.180310941044499428e-08,1.236062188208899886e-07,1.854093282313349829e-07,2.472124376417799771e-07,3.090155470522249714e-07,3.708186564626699657e-07,4.326217658731149600e-07,4.944248752835599543e-07,5.562279846940049486e-07,6.180310941044499428e-07,6.798342035148949371e-07,7.416373129253399314e-07,8.034404223357849257e-07,8.652435317462299200e-07,9.270466411566749143e-07,9.888497505671199085e-07,1.050652859977564903e-06,1.112455969388009897e-06,1.174259078798454891e-06,1.236062188208899886e-06,1.297865297619344880e-06,1.359668407029789874e-06,1.421471516440234869e-06,1.483274625850679863e-06,1.545077735261124857e-06,1.606880844671569851e-06,1.668683954082014846e-06,1.730487063492459840e-06,1.792290172902904834e-06,1.854093282313349829e-06,1.915896391723794611e-06,1.977699501134239394e-06,2.039502610544684176e-06,2.101305719955128959e-06,2.163108829365573741e-06,2.224911938776018524e-06,2.286715048186463306e-06,2.348518157596908089e-06,2.410321267007352871e-06,2.472124376417797654e-06,2.533927485828242436e-06,2.595730595238687219e-06,2.657533704649132001e-06,2.719336814059576784e-06,2.781139923470021566e-06,2.842943032880466349e-06,2.904746142290911131e-06,2.966549251701355914e-06,3.028352361111800696e-06,3.090155470522245479e-06,3.151958579932690262e-06,3.213761689343135044e-06,3.275564798753579827e-06,3.337367908164024609e-06,3.399171017574469392e-06,3.460974126984914174e-06,3.522777236395358957e-06,3.584580345805803739e-06,3.646383455216248522e-06,3.708186564626693304e-06,3.769989674037138087e-06,3.831792783447582446e-06,3.893595892858026805e-06 +0.000000000000000000e+00,6.355845001497905995e-08,1.271169000299581199e-07,1.906753500449371931e-07,2.542338000599162928e-07,3.177922500748953924e-07,3.813507000898744921e-07,4.449091501048535917e-07,5.084676001198326914e-07,5.720260501348117910e-07,6.355845001497908907e-07,6.991429501647699904e-07,7.627014001797490900e-07,8.262598501947281897e-07,8.898183002097072893e-07,9.533767502246863890e-07,1.016935200239665595e-06,1.080493650254644906e-06,1.144052100269624217e-06,1.207610550284603529e-06,1.271169000299582840e-06,1.334727450314562152e-06,1.398285900329541463e-06,1.461844350344520774e-06,1.525402800359500086e-06,1.588961250374479397e-06,1.652519700389458709e-06,1.716078150404438020e-06,1.779636600419417332e-06,1.843195050434396643e-06,1.906753500449375954e-06,1.970311950464355266e-06,2.033870400479334577e-06,2.097428850494313889e-06,2.160987300509293200e-06,2.224545750524272511e-06,2.288104200539251823e-06,2.351662650554231134e-06,2.415221100569210446e-06,2.478779550584189757e-06,2.542338000599169069e-06,2.605896450614148380e-06,2.669454900629127691e-06,2.733013350644107003e-06,2.796571800659086314e-06,2.860130250674065626e-06,2.923688700689044937e-06,2.987247150704024248e-06,3.050805600719003560e-06,3.114364050733982871e-06,3.177922500748962183e-06,3.241480950763941494e-06,3.305039400778920806e-06,3.368597850793900117e-06,3.432156300808879428e-06,3.495714750823858740e-06,3.559273200838838051e-06,3.622831650853817363e-06,3.686390100868796674e-06,3.749948550883775985e-06,3.813507000898755297e-06,3.877065450913734608e-06,3.940623900928713920e-06,4.004182350943693231e-06 +0.000000000000000000e+00,6.455782865692566622e-08,1.291156573138513324e-07,1.936734859707769986e-07,2.582313146277026649e-07,3.227891432846283311e-07,3.873469719415539973e-07,4.519048005984796635e-07,5.164626292554053297e-07,5.810204579123309430e-07,6.455782865692565563e-07,7.101361152261821696e-07,7.746939438831077828e-07,8.392517725400333961e-07,9.038096011969590094e-07,9.683674298538846227e-07,1.032925258510810236e-06,1.097483087167735849e-06,1.162040915824661462e-06,1.226598744481587076e-06,1.291156573138512689e-06,1.355714401795438302e-06,1.420272230452363916e-06,1.484830059109289529e-06,1.549387887766215142e-06,1.613945716423140755e-06,1.678503545080066369e-06,1.743061373736991982e-06,1.807619202393917595e-06,1.872177031050843209e-06,1.936734859707768822e-06,2.001292688364694647e-06,2.065850517021620472e-06,2.130408345678546297e-06,2.194966174335472122e-06,2.259524002992397947e-06,2.324081831649323772e-06,2.388639660306249597e-06,2.453197488963175422e-06,2.517755317620101247e-06,2.582313146277027072e-06,2.646870974933952897e-06,2.711428803590878722e-06,2.775986632247804547e-06,2.840544460904730372e-06,2.905102289561656197e-06,2.969660118218582022e-06,3.034217946875507847e-06,3.098775775532433672e-06,3.163333604189359497e-06,3.227891432846285322e-06,3.292449261503211148e-06,3.357007090160136973e-06,3.421564918817062798e-06,3.486122747473988623e-06,3.550680576130914448e-06,3.615238404787840273e-06,3.679796233444766098e-06,3.744354062101691923e-06,3.808911890758617748e-06,3.873469719415543573e-06,3.938027548072469398e-06,4.002585376729395223e-06,4.067143205386321048e-06 +0.000000000000000000e+00,5.941829884180106176e-08,1.188365976836021235e-07,1.782548965254031787e-07,2.376731953672042206e-07,2.970914942090052625e-07,3.565097930508063044e-07,4.159280918926073463e-07,4.753463907344083882e-07,5.347646895762094830e-07,5.941829884180106308e-07,6.536012872598117786e-07,7.130195861016129264e-07,7.724378849434140742e-07,8.318561837852152219e-07,8.912744826270163697e-07,9.506927814688175175e-07,1.010111080310618665e-06,1.069529379152419813e-06,1.128947677994220961e-06,1.188365976836022109e-06,1.247784275677823256e-06,1.307202574519624404e-06,1.366620873361425552e-06,1.426039172203226700e-06,1.485457471045027848e-06,1.544875769886828995e-06,1.604294068728630143e-06,1.663712367570431291e-06,1.723130666412232439e-06,1.782548965254033586e-06,1.841967264095834734e-06,1.901385562937635882e-06,1.960803861779437030e-06,2.020222160621238178e-06,2.079640459463039325e-06,2.139058758304840473e-06,2.198477057146641621e-06,2.257895355988442769e-06,2.317313654830243917e-06,2.376731953672045064e-06,2.436150252513846212e-06,2.495568551355647360e-06,2.554986850197448508e-06,2.614405149039249655e-06,2.673823447881050803e-06,2.733241746722851951e-06,2.792660045564653099e-06,2.852078344406454247e-06,2.911496643248255394e-06,2.970914942090056542e-06,3.030333240931857690e-06,3.089751539773658838e-06,3.149169838615459986e-06,3.208588137457261133e-06,3.268006436299062281e-06,3.327424735140863429e-06,3.386843033982664577e-06,3.446261332824465724e-06,3.505679631666266872e-06,3.565097930508068020e-06,3.624516229349869168e-06,3.683934528191670316e-06,3.743352827033471463e-06 +0.000000000000000000e+00,6.355845001498514800e-08,1.271169000299702960e-07,1.906753500449554572e-07,2.542338000599406449e-07,3.177922500749258327e-07,3.813507000899110204e-07,4.449091501048962081e-07,5.084676001198813958e-07,5.720260501348665305e-07,6.355845001498516653e-07,6.991429501648368001e-07,7.627014001798219348e-07,8.262598501948070696e-07,8.898183002097922044e-07,9.533767502247773392e-07,1.016935200239762580e-06,1.080493650254747820e-06,1.144052100269733061e-06,1.207610550284718302e-06,1.271169000299703542e-06,1.334727450314688783e-06,1.398285900329674024e-06,1.461844350344659264e-06,1.525402800359644505e-06,1.588961250374629746e-06,1.652519700389614986e-06,1.716078150404600227e-06,1.779636600419585468e-06,1.843195050434570708e-06,1.906753500449555949e-06,1.970311950464541189e-06,2.033870400479526430e-06,2.097428850494511671e-06,2.160987300509496911e-06,2.224545750524482152e-06,2.288104200539467393e-06,2.351662650554452633e-06,2.415221100569437874e-06,2.478779550584423115e-06,2.542338000599408355e-06,2.605896450614393596e-06,2.669454900629378837e-06,2.733013350644364077e-06,2.796571800659349318e-06,2.860130250674334559e-06,2.923688700689319799e-06,2.987247150704305040e-06,3.050805600719290280e-06,3.114364050734275521e-06,3.177922500749260762e-06,3.241480950764246002e-06,3.305039400779231243e-06,3.368597850794216484e-06,3.432156300809201724e-06,3.495714750824186965e-06,3.559273200839172206e-06,3.622831650854157446e-06,3.686390100869142687e-06,3.749948550884127928e-06,3.813507000899113168e-06,3.877065450914097985e-06,3.940623900929083226e-06,4.004182350944068467e-06 +0.000000000000000000e+00,6.455782865693166162e-08,1.291156573138633232e-07,1.936734859707949981e-07,2.582313146277266994e-07,3.227891432846584007e-07,3.873469719415901021e-07,4.519048005985218034e-07,5.164626292554535047e-07,5.810204579123851531e-07,6.455782865693168015e-07,7.101361152262484499e-07,7.746939438831800983e-07,8.392517725401117467e-07,9.038096011970433950e-07,9.683674298539750434e-07,1.032925258510906798e-06,1.097483087167838552e-06,1.162040915824770306e-06,1.226598744481702060e-06,1.291156573138633815e-06,1.355714401795565569e-06,1.420272230452497323e-06,1.484830059109429078e-06,1.549387887766360832e-06,1.613945716423292586e-06,1.678503545080224340e-06,1.743061373737156095e-06,1.807619202394087849e-06,1.872177031051019603e-06,1.936734859707951357e-06,2.001292688364883112e-06,2.065850517021814866e-06,2.130408345678746620e-06,2.194966174335678374e-06,2.259524002992610129e-06,2.324081831649541883e-06,2.388639660306473637e-06,2.453197488963405392e-06,2.517755317620337146e-06,2.582313146277268900e-06,2.646870974934200654e-06,2.711428803591132409e-06,2.775986632248064163e-06,2.840544460904995917e-06,2.905102289561927671e-06,2.969660118218859426e-06,3.034217946875791180e-06,3.098775775532722934e-06,3.163333604189654688e-06,3.227891432846586443e-06,3.292449261503518197e-06,3.357007090160449951e-06,3.421564918817381705e-06,3.486122747474313460e-06,3.550680576131245214e-06,3.615238404788176968e-06,3.679796233445108723e-06,3.744354062102040477e-06,3.808911890758972231e-06,3.873469719415903562e-06,3.938027548072835316e-06,4.002585376729767070e-06,4.067143205386698825e-06 +0.000000000000000000e+00,5.941829884180719613e-08,1.188365976836143923e-07,1.782548965254216016e-07,2.376731953672288110e-07,2.970914942090360203e-07,3.565097930508432032e-07,4.159280918926503861e-07,4.753463907344575690e-07,5.347646895762647519e-07,5.941829884180719348e-07,6.536012872598791177e-07,7.130195861016863006e-07,7.724378849434934835e-07,8.318561837853006664e-07,8.912744826271078493e-07,9.506927814689150322e-07,1.010111080310722215e-06,1.069529379152529504e-06,1.128947677994336793e-06,1.188365976836144081e-06,1.247784275677951370e-06,1.307202574519758659e-06,1.366620873361565948e-06,1.426039172203373236e-06,1.485457471045180525e-06,1.544875769886987814e-06,1.604294068728795103e-06,1.663712367570602392e-06,1.723130666412409680e-06,1.782548965254216969e-06,1.841967264096024258e-06,1.901385562937831547e-06,1.960803861779639047e-06,2.020222160621446548e-06,2.079640459463254048e-06,2.139058758305061549e-06,2.198477057146869049e-06,2.257895355988676550e-06,2.317313654830484050e-06,2.376731953672291551e-06,2.436150252514099051e-06,2.495568551355906552e-06,2.554986850197714053e-06,2.614405149039521553e-06,2.673823447881329054e-06,2.733241746723136554e-06,2.792660045564944055e-06,2.852078344406751555e-06,2.911496643248559056e-06,2.970914942090366556e-06,3.030333240932174057e-06,3.089751539773981557e-06,3.149169838615789058e-06,3.208588137457596558e-06,3.268006436299404059e-06,3.327424735141211559e-06,3.386843033983019060e-06,3.446261332824826560e-06,3.505679631666634061e-06,3.565097930508441562e-06,3.624516229350249062e-06,3.683934528192056563e-06,3.743352827033864063e-06 +0.000000000000000000e+00,6.141016479852574403e-08,1.228203295970514881e-07,1.842304943955772453e-07,2.456406591941030291e-07,3.070508239926288128e-07,3.684609887911545965e-07,4.298711535896803802e-07,4.912813183882061640e-07,5.526914831867319477e-07,6.141016479852577314e-07,6.755118127837835152e-07,7.369219775823092989e-07,7.983321423808350826e-07,8.597423071793608664e-07,9.211524719778866501e-07,9.825626367764125397e-07,1.043972801574938429e-06,1.105382966373464319e-06,1.166793131171990209e-06,1.228203295970516098e-06,1.289613460769041988e-06,1.351023625567567877e-06,1.412433790366093767e-06,1.473843955164619657e-06,1.535254119963145546e-06,1.596664284761671436e-06,1.658074449560197325e-06,1.719484614358723215e-06,1.780894779157249105e-06,1.842304943955774994e-06,1.903715108754300884e-06,1.965125273552826774e-06,2.026535438351352663e-06,2.087945603149878553e-06,2.149355767948404442e-06,2.210765932746930332e-06,2.272176097545456222e-06,2.333586262343982111e-06,2.394996427142508001e-06,2.456406591941033890e-06,2.517816756739559780e-06,2.579226921538085670e-06,2.640637086336611559e-06,2.702047251135137449e-06,2.763457415933663338e-06,2.824867580732189228e-06,2.886277745530715118e-06,2.947687910329241007e-06,3.009098075127766897e-06,3.070508239926292787e-06,3.131918404724818676e-06,3.193328569523344566e-06,3.254738734321870455e-06,3.316148899120396345e-06,3.377559063918922235e-06,3.438969228717448124e-06,3.500379393515974014e-06,3.561789558314499903e-06,3.623199723113025793e-06,3.684609887911551683e-06,3.746020052710077572e-06,3.807430217508603462e-06,3.868840382307129351e-06 +0.000000000000000000e+00,6.249667144854954447e-08,1.249933428970990889e-07,1.874900143456486202e-07,2.499866857941981249e-07,3.124833572427476297e-07,3.749800286912971344e-07,4.374767001398466392e-07,4.999733715883961440e-07,5.624700430369456487e-07,6.249667144854951535e-07,6.874633859340446583e-07,7.499600573825941630e-07,8.124567288311436678e-07,8.749534002796931725e-07,9.374500717282426773e-07,9.999467431767920762e-07,1.062443414625341475e-06,1.124940086073890874e-06,1.187436757522440273e-06,1.249933428970989672e-06,1.312430100419539071e-06,1.374926771868088469e-06,1.437423443316637868e-06,1.499920114765187267e-06,1.562416786213736666e-06,1.624913457662286065e-06,1.687410129110835464e-06,1.749906800559384863e-06,1.812403472007934262e-06,1.874900143456483661e-06,1.937396814905033059e-06,1.999893486353582458e-06,2.062390157802131857e-06,2.124886829250681256e-06,2.187383500699230655e-06,2.249880172147780054e-06,2.312376843596329453e-06,2.374873515044878852e-06,2.437370186493428250e-06,2.499866857941977649e-06,2.562363529390527048e-06,2.624860200839076447e-06,2.687356872287625846e-06,2.749853543736175245e-06,2.812350215184724644e-06,2.874846886633274043e-06,2.937343558081823442e-06,2.999840229530372840e-06,3.062336900978922239e-06,3.124833572427471638e-06,3.187330243876021037e-06,3.249826915324570436e-06,3.312323586773119835e-06,3.374820258221669234e-06,3.437316929670218633e-06,3.499813601118768031e-06,3.562310272567317430e-06,3.624806944015866829e-06,3.687303615464416228e-06,3.749800286912965627e-06,3.812296958361515026e-06,3.874793629810064425e-06,3.937290301258614247e-06 +0.000000000000000000e+00,5.672791011833462002e-08,1.134558202366692400e-07,1.701837303550038534e-07,2.269116404733384536e-07,2.836395505916730802e-07,3.403674607100077069e-07,3.970953708283423335e-07,4.538232809466769601e-07,5.105511910650115868e-07,5.672791011833461605e-07,6.240070113016807342e-07,6.807349214200153079e-07,7.374628315383498816e-07,7.941907416566844553e-07,8.509186517750190290e-07,9.076465618933536026e-07,9.643744720116881763e-07,1.021102382130022750e-06,1.077830292248357324e-06,1.134558202366691897e-06,1.191286112485026471e-06,1.248014022603361045e-06,1.304741932721695619e-06,1.361469842840030192e-06,1.418197752958364766e-06,1.474925663076699340e-06,1.531653573195033913e-06,1.588381483313368487e-06,1.645109393431703061e-06,1.701837303550037634e-06,1.758565213668372208e-06,1.815293123786706782e-06,1.872021033905041355e-06,1.928748944023375929e-06,1.985476854141710291e-06,2.042204764260044653e-06,2.098932674378379015e-06,2.155660584496713377e-06,2.212388494615047739e-06,2.269116404733382101e-06,2.325844314851716463e-06,2.382572224970050825e-06,2.439300135088385187e-06,2.496028045206719549e-06,2.552755955325053910e-06,2.609483865443388272e-06,2.666211775561722634e-06,2.722939685680056996e-06,2.779667595798391358e-06,2.836395505916725720e-06,2.893123416035060082e-06,2.949851326153394444e-06,3.006579236271728806e-06,3.063307146390063168e-06,3.120035056508397530e-06,3.176762966626731892e-06,3.233490876745066254e-06,3.290218786863400616e-06,3.346946696981734978e-06,3.403674607100069340e-06,3.460402517218403701e-06,3.517130427336738063e-06,3.573858337455072425e-06 +0.000000000000000000e+00,6.141016479853156738e-08,1.228203295970631348e-07,1.842304943955947154e-07,2.456406591941263225e-07,3.070508239926579295e-07,3.684609887911895366e-07,4.298711535897211437e-07,4.912813183882527508e-07,5.526914831867843579e-07,6.141016479853159650e-07,6.755118127838475720e-07,7.369219775823791791e-07,7.983321423809107862e-07,8.597423071794423933e-07,9.211524719779740004e-07,9.825626367765057133e-07,1.043972801575037532e-06,1.105382966373569351e-06,1.166793131172101170e-06,1.228203295970632989e-06,1.289613460769164808e-06,1.351023625567696626e-06,1.412433790366228445e-06,1.473843955164760264e-06,1.535254119963292083e-06,1.596664284761823902e-06,1.658074449560355721e-06,1.719484614358887539e-06,1.780894779157419358e-06,1.842304943955951177e-06,1.903715108754482996e-06,1.965125273553014815e-06,2.026535438351546634e-06,2.087945603150078453e-06,2.149355767948610271e-06,2.210765932747142090e-06,2.272176097545673909e-06,2.333586262344205728e-06,2.394996427142737547e-06,2.456406591941269366e-06,2.517816756739801184e-06,2.579226921538333003e-06,2.640637086336864822e-06,2.702047251135396641e-06,2.763457415933928460e-06,2.824867580732460279e-06,2.886277745530992097e-06,2.947687910329523916e-06,3.009098075128055735e-06,3.070508239926587554e-06,3.131918404725119373e-06,3.193328569523651192e-06,3.254738734322183011e-06,3.316148899120714829e-06,3.377559063919246648e-06,3.438969228717778467e-06,3.500379393516310286e-06,3.561789558314842105e-06,3.623199723113373924e-06,3.684609887911905742e-06,3.746020052710437561e-06,3.807430217508969380e-06,3.868840382307501199e-06 +0.000000000000000000e+00,6.249667144855559281e-08,1.249933428971111856e-07,1.874900143456667784e-07,2.499866857942223712e-07,3.124833572427779641e-07,3.749800286913335569e-07,4.374767001398891497e-07,4.999733715884447425e-07,5.624700430370002824e-07,6.249667144855558222e-07,6.874633859341113621e-07,7.499600573826669020e-07,8.124567288312224418e-07,8.749534002797779817e-07,9.374500717283335216e-07,9.999467431768890615e-07,1.062443414625444601e-06,1.124940086074000141e-06,1.187436757522555681e-06,1.249933428971111221e-06,1.312430100419666761e-06,1.374926771868222301e-06,1.437423443316777841e-06,1.499920114765333380e-06,1.562416786213888920e-06,1.624913457662444460e-06,1.687410129111000000e-06,1.749906800559555540e-06,1.812403472008111080e-06,1.874900143456666620e-06,1.937396814905222371e-06,1.999893486353778123e-06,2.062390157802333875e-06,2.124886829250889626e-06,2.187383500699445378e-06,2.249880172148001129e-06,2.312376843596556881e-06,2.374873515045112633e-06,2.437370186493668384e-06,2.499866857942224136e-06,2.562363529390779888e-06,2.624860200839335639e-06,2.687356872287891391e-06,2.749853543736447142e-06,2.812350215185002894e-06,2.874846886633558646e-06,2.937343558082114397e-06,2.999840229530670149e-06,3.062336900979225901e-06,3.124833572427781652e-06,3.187330243876337404e-06,3.249826915324893155e-06,3.312323586773448907e-06,3.374820258222004659e-06,3.437316929670560410e-06,3.499813601119116162e-06,3.562310272567671914e-06,3.624806944016227665e-06,3.687303615464783417e-06,3.749800286913339169e-06,3.812296958361894920e-06,3.874793629810450672e-06,3.937290301259006423e-06 +0.000000000000000000e+00,5.672791011834074777e-08,1.134558202366814955e-07,1.701837303550222499e-07,2.269116404733630176e-07,2.836395505917037852e-07,3.403674607100445528e-07,3.970953708283853204e-07,4.538232809467260881e-07,5.105511910650668557e-07,5.672791011834075704e-07,6.240070113017482850e-07,6.807349214200889997e-07,7.374628315384297144e-07,7.941907416567704291e-07,8.509186517751111438e-07,9.076465618934518585e-07,9.643744720117925732e-07,1.021102382130133288e-06,1.077830292248474003e-06,1.134558202366814717e-06,1.191286112485155432e-06,1.248014022603496147e-06,1.304741932721836861e-06,1.361469842840177576e-06,1.418197752958518291e-06,1.474925663076859005e-06,1.531653573195199720e-06,1.588381483313540435e-06,1.645109393431881149e-06,1.701837303550221864e-06,1.758565213668562579e-06,1.815293123786903293e-06,1.872021033905244008e-06,1.928748944023584723e-06,1.985476854141925437e-06,2.042204764260266152e-06,2.098932674378606867e-06,2.155660584496947582e-06,2.212388494615288296e-06,2.269116404733629011e-06,2.325844314851969726e-06,2.382572224970310440e-06,2.439300135088651155e-06,2.496028045206991870e-06,2.552755955325332584e-06,2.609483865443673299e-06,2.666211775562014014e-06,2.722939685680354728e-06,2.779667595798695443e-06,2.836395505917036158e-06,2.893123416035376872e-06,2.949851326153717587e-06,3.006579236272058302e-06,3.063307146390399016e-06,3.120035056508739731e-06,3.176762966627080446e-06,3.233490876745421161e-06,3.290218786863761875e-06,3.346946696982102590e-06,3.403674607100443305e-06,3.460402517218784019e-06,3.517130427337124734e-06,3.573858337455465449e-06 +0.000000000000000000e+00,5.926660600986535044e-08,1.185332120197307009e-07,1.777998180295960646e-07,2.370664240394614282e-07,2.963330300493267919e-07,3.555996360591921291e-07,4.148662420690574663e-07,4.741328480789228035e-07,5.333994540887880878e-07,5.926660600986533721e-07,6.519326661085186563e-07,7.111992721183839406e-07,7.704658781282492248e-07,8.297324841381145091e-07,8.889990901479797934e-07,9.482656961578450776e-07,1.007532302167710362e-06,1.066798908177575752e-06,1.126065514187441142e-06,1.185332120197306532e-06,1.244598726207171922e-06,1.303865332217037313e-06,1.363131938226902703e-06,1.422398544236768093e-06,1.481665150246633483e-06,1.540931756256498873e-06,1.600198362266364263e-06,1.659464968276229654e-06,1.718731574286095044e-06,1.777998180295960434e-06,1.837264786305825824e-06,1.896531392315691214e-06,1.955797998325556816e-06,2.015064604335422418e-06,2.074331210345288020e-06,2.133597816355153622e-06,2.192864422365019224e-06,2.252131028374884826e-06,2.311397634384750427e-06,2.370664240394616029e-06,2.429930846404481631e-06,2.489197452414347233e-06,2.548464058424212835e-06,2.607730664434078437e-06,2.666997270443944039e-06,2.726263876453809641e-06,2.785530482463675243e-06,2.844797088473540845e-06,2.904063694483406446e-06,2.963330300493272048e-06,3.022596906503137650e-06,3.081863512513003252e-06,3.141130118522868854e-06,3.200396724532734456e-06,3.259663330542600058e-06,3.318929936552465660e-06,3.378196542562331262e-06,3.437463148572196864e-06,3.496729754582062465e-06,3.555996360591928067e-06,3.615262966601793669e-06,3.674529572611659271e-06,3.733796178621524873e-06 +0.000000000000000000e+00,6.032579662216234411e-08,1.206515932443246882e-07,1.809773898664870456e-07,2.413031864886494294e-07,3.016289831108118132e-07,3.619547797329741970e-07,4.222805763551365808e-07,4.826063729772989647e-07,5.429321695994613485e-07,6.032579662216237323e-07,6.635837628437861161e-07,7.239095594659484999e-07,7.842353560881108838e-07,8.445611527102732676e-07,9.048869493324356514e-07,9.652127459545981411e-07,1.025538542576760631e-06,1.085864339198923120e-06,1.146190135821085610e-06,1.206515932443248100e-06,1.266841729065410590e-06,1.327167525687573079e-06,1.387493322309735569e-06,1.447819118931898059e-06,1.508144915554060548e-06,1.568470712176223038e-06,1.628796508798385528e-06,1.689122305420548017e-06,1.749448102042710507e-06,1.809773898664872997e-06,1.870099695287035487e-06,1.930425491909197976e-06,1.990751288531360678e-06,2.051077085153523379e-06,2.111402881775686081e-06,2.171728678397848782e-06,2.232054475020011484e-06,2.292380271642174185e-06,2.352706068264336886e-06,2.413031864886499588e-06,2.473357661508662289e-06,2.533683458130824991e-06,2.594009254752987692e-06,2.654335051375150394e-06,2.714660847997313095e-06,2.774986644619475797e-06,2.835312441241638498e-06,2.895638237863801200e-06,2.955964034485963901e-06,3.016289831108126602e-06,3.076615627730289304e-06,3.136941424352452005e-06,3.197267220974614707e-06,3.257593017596777408e-06,3.317918814218940110e-06,3.378244610841102811e-06,3.438570407463265513e-06,3.498896204085428214e-06,3.559222000707590916e-06,3.619547797329753617e-06,3.679873593951916318e-06,3.740199390574079020e-06,3.800525187196241721e-06 +0.000000000000000000e+00,5.403495113201260745e-08,1.080699022640252149e-07,1.621048533960378290e-07,2.161398045280504563e-07,2.701747556600631100e-07,3.242097067920757638e-07,3.782446579240884176e-07,4.322796090561010714e-07,4.863145601881137251e-07,5.403495113201264318e-07,5.943844624521391386e-07,6.484194135841518453e-07,7.024543647161645520e-07,7.564893158481772587e-07,8.105242669801899654e-07,8.645592181122026721e-07,9.185941692442153788e-07,9.726291203762280855e-07,1.026664071508240792e-06,1.080699022640253499e-06,1.134733973772266206e-06,1.188768924904278912e-06,1.242803876036291619e-06,1.296838827168304326e-06,1.350873778300317033e-06,1.404908729432329739e-06,1.458943680564342446e-06,1.512978631696355153e-06,1.567013582828367859e-06,1.621048533960380566e-06,1.675083485092393273e-06,1.729118436224405980e-06,1.783153387356418686e-06,1.837188338488431393e-06,1.891223289620444100e-06,1.945258240752456595e-06,1.999293191884469301e-06,2.053328143016482008e-06,2.107363094148494715e-06,2.161398045280507421e-06,2.215432996412520128e-06,2.269467947544532835e-06,2.323502898676545542e-06,2.377537849808558248e-06,2.431572800940570955e-06,2.485607752072583662e-06,2.539642703204596368e-06,2.593677654336609075e-06,2.647712605468621782e-06,2.701747556600634489e-06,2.755782507732647195e-06,2.809817458864659902e-06,2.863852409996672609e-06,2.917887361128685315e-06,2.971922312260698022e-06,3.025957263392710729e-06,3.079992214524723436e-06,3.134027165656736142e-06,3.188062116788748849e-06,3.242097067920761556e-06,3.296132019052774262e-06,3.350166970184786969e-06,3.404201921316799676e-06 +0.000000000000000000e+00,5.926660600987202744e-08,1.185332120197440549e-07,1.777998180296160757e-07,2.370664240394880833e-07,2.963330300493600909e-07,3.555996360592320985e-07,4.148662420691041061e-07,4.741328480789761137e-07,5.333994540888481212e-07,5.926660600987201818e-07,6.519326661085922423e-07,7.111992721184643028e-07,7.704658781283363634e-07,8.297324841382084239e-07,8.889990901480804844e-07,9.482656961579525450e-07,1.007532302167824500e-06,1.066798908177696454e-06,1.126065514187568409e-06,1.185332120197440364e-06,1.244598726207312318e-06,1.303865332217184273e-06,1.363131938227056228e-06,1.422398544236928182e-06,1.481665150246800137e-06,1.540931756256672091e-06,1.600198362266544046e-06,1.659464968276416001e-06,1.718731574286287955e-06,1.777998180296159910e-06,1.837264786306031865e-06,1.896531392315903819e-06,1.955797998325775774e-06,2.015064604335647729e-06,2.074331210345519683e-06,2.133597816355391638e-06,2.192864422365263593e-06,2.252131028375135547e-06,2.311397634385007502e-06,2.370664240394879457e-06,2.429930846404751411e-06,2.489197452414623366e-06,2.548464058424495321e-06,2.607730664434367275e-06,2.666997270444239230e-06,2.726263876454111184e-06,2.785530482463983139e-06,2.844797088473855094e-06,2.904063694483727048e-06,2.963330300493599003e-06,3.022596906503470958e-06,3.081863512513342912e-06,3.141130118523214867e-06,3.200396724533086822e-06,3.259663330542958776e-06,3.318929936552830731e-06,3.378196542562702686e-06,3.437463148572574640e-06,3.496729754582446595e-06,3.555996360592318550e-06,3.615262966602190504e-06,3.674529572612062459e-06,3.733796178621934414e-06 +0.000000000000000000e+00,6.032579662216877627e-08,1.206515932443375525e-07,1.809773898665063156e-07,2.413031864886750521e-07,3.016289831108437887e-07,3.619547797330125253e-07,4.222805763551812618e-07,4.826063729773499984e-07,5.429321695995187350e-07,6.032579662216874715e-07,6.635837628438562081e-07,7.239095594660249447e-07,7.842353560881936812e-07,8.445611527103624178e-07,9.048869493325311544e-07,9.652127459546997850e-07,1.025538542576868416e-06,1.085864339199037046e-06,1.146190135821205677e-06,1.206515932443374308e-06,1.266841729065542938e-06,1.327167525687711569e-06,1.387493322309880200e-06,1.447819118932048831e-06,1.508144915554217461e-06,1.568470712176386092e-06,1.628796508798554723e-06,1.689122305420723353e-06,1.749448102042891984e-06,1.809773898665060615e-06,1.870099695287229245e-06,1.930425491909397876e-06,1.990751288531566507e-06,2.051077085153735137e-06,2.111402881775903768e-06,2.171728678398072399e-06,2.232054475020241029e-06,2.292380271642409660e-06,2.352706068264578291e-06,2.413031864886746922e-06,2.473357661508915552e-06,2.533683458131084183e-06,2.594009254753252814e-06,2.654335051375421444e-06,2.714660847997590075e-06,2.774986644619758706e-06,2.835312441241927336e-06,2.895638237864095967e-06,2.955964034486264598e-06,3.016289831108433228e-06,3.076615627730601859e-06,3.136941424352770490e-06,3.197267220974939120e-06,3.257593017597107751e-06,3.317918814219276382e-06,3.378244610841445013e-06,3.438570407463613643e-06,3.498896204085782274e-06,3.559222000707950905e-06,3.619547797330119535e-06,3.679873593952288166e-06,3.740199390574456797e-06,3.800525187196625427e-06 +0.000000000000000000e+00,5.403495113201944327e-08,1.080699022640388865e-07,1.621048533960583430e-07,2.161398045280777996e-07,2.701747556600972561e-07,3.242097067921166861e-07,3.782446579241361161e-07,4.322796090561555462e-07,4.863145601881749233e-07,5.403495113201943004e-07,5.943844624522136775e-07,6.484194135842330546e-07,7.024543647162524317e-07,7.564893158482718087e-07,8.105242669802911858e-07,8.645592181123105629e-07,9.185941692443299400e-07,9.726291203763494230e-07,1.026664071508368906e-06,1.080699022640388389e-06,1.134733973772407872e-06,1.188768924904427355e-06,1.242803876036446838e-06,1.296838827168466321e-06,1.350873778300485804e-06,1.404908729432505287e-06,1.458943680564524770e-06,1.512978631696544253e-06,1.567013582828563736e-06,1.621048533960583219e-06,1.675083485092602702e-06,1.729118436224622185e-06,1.783153387356641668e-06,1.837188338488661151e-06,1.891223289620680634e-06,1.945258240752700117e-06,1.999293191884719600e-06,2.053328143016739083e-06,2.107363094148758566e-06,2.161398045280778048e-06,2.215432996412797531e-06,2.269467947544817014e-06,2.323502898676836497e-06,2.377537849808855980e-06,2.431572800940875463e-06,2.485607752072894946e-06,2.539642703204914429e-06,2.593677654336933912e-06,2.647712605468953395e-06,2.701747556600972878e-06,2.755782507732992361e-06,2.809817458865011844e-06,2.863852409997031327e-06,2.917887361129050810e-06,2.971922312261070293e-06,3.025957263393089776e-06,3.079992214525109259e-06,3.134027165657128742e-06,3.188062116789148225e-06,3.242097067921167708e-06,3.296132019053187191e-06,3.350166970185206674e-06,3.404201921317226157e-06 +0.000000000000000000e+00,5.729171603116373500e-08,1.145834320623274700e-07,1.718751480934912116e-07,2.291668641246549665e-07,2.864585801558187213e-07,3.437502961869824762e-07,4.010420122181462310e-07,4.583337282493099859e-07,5.156254442804737407e-07,5.729171603116374426e-07,6.302088763428011446e-07,6.875005923739648465e-07,7.447923084051285484e-07,8.020840244362922503e-07,8.593757404674559522e-07,9.166674564986196541e-07,9.739591725297833560e-07,1.031250888560947058e-06,1.088542604592110760e-06,1.145834320623274462e-06,1.203126036654438164e-06,1.260417752685601866e-06,1.317709468716765568e-06,1.375001184747929269e-06,1.432292900779092971e-06,1.489584616810256673e-06,1.546876332841420375e-06,1.604168048872584077e-06,1.661459764903747779e-06,1.718751480934911481e-06,1.776043196966075183e-06,1.833334912997238885e-06,1.890626629028402587e-06,1.947918345059566289e-06,2.005210061090729779e-06,2.062501777121893269e-06,2.119793493153056759e-06,2.177085209184220249e-06,2.234376925215383739e-06,2.291668641246547229e-06,2.348960357277710720e-06,2.406252073308874210e-06,2.463543789340037700e-06,2.520835505371201190e-06,2.578127221402364680e-06,2.635418937433528170e-06,2.692710653464691661e-06,2.750002369495855151e-06,2.807294085527018641e-06,2.864585801558182131e-06,2.921877517589345621e-06,2.979169233620509111e-06,3.036460949651672601e-06,3.093752665682836092e-06,3.151044381713999582e-06,3.208336097745163072e-06,3.265627813776326562e-06,3.322919529807490052e-06,3.380211245838653542e-06,3.437502961869817033e-06,3.494794677900980523e-06,3.552086393932144013e-06,3.609378109963307503e-06 +0.000000000000000000e+00,5.824829713343297303e-08,1.164965942668659461e-07,1.747448914002989257e-07,2.329931885337319186e-07,2.912414856671649115e-07,3.494897828005979044e-07,4.077380799340308973e-07,4.659863770674638901e-07,5.242346742008969360e-07,5.824829713343299288e-07,6.407312684677629217e-07,6.989795656011959146e-07,7.572278627346289075e-07,8.154761598680619004e-07,8.737244570014948933e-07,9.319727541349278862e-07,9.902210512683608790e-07,1.048469348401793872e-06,1.106717645535226865e-06,1.164965942668659858e-06,1.223214239802092851e-06,1.281462536935525843e-06,1.339710834068958836e-06,1.397959131202391829e-06,1.456207428335824822e-06,1.514455725469257815e-06,1.572704022602690808e-06,1.630952319736123801e-06,1.689200616869556794e-06,1.747448914002989787e-06,1.805697211136422779e-06,1.863945508269855772e-06,1.922193805403288765e-06,1.980442102536721758e-06,2.038690399670154751e-06,2.096938696803587744e-06,2.155186993937020737e-06,2.213435291070453730e-06,2.271683588203886723e-06,2.329931885337319715e-06,2.388180182470752708e-06,2.446428479604185701e-06,2.504676776737618694e-06,2.562925073871051687e-06,2.621173371004484680e-06,2.679421668137917673e-06,2.737669965271350666e-06,2.795918262404783658e-06,2.854166559538216651e-06,2.912414856671649644e-06,2.970663153805082637e-06,3.028911450938515630e-06,3.087159748071948623e-06,3.145408045205381616e-06,3.203656342338814609e-06,3.261904639472247602e-06,3.320152936605680594e-06,3.378401233739113587e-06,3.436649530872546580e-06,3.494897828005979573e-06,3.553146125139412566e-06,3.611394422272845559e-06,3.669642719406278552e-06 +0.000000000000000000e+00,5.149731199297566299e-08,1.029946239859513260e-07,1.544919359789269956e-07,2.059892479719026784e-07,2.574865599648783348e-07,3.089838719578539912e-07,3.604811839508296476e-07,4.119784959438053039e-07,4.634758079367809603e-07,5.149731199297566696e-07,5.664704319227323789e-07,6.179677439157080883e-07,6.694650559086837976e-07,7.209623679016595069e-07,7.724596798946352162e-07,8.239569918876109255e-07,8.754543038805866348e-07,9.269516158735623441e-07,9.784489278665379476e-07,1.029946239859513551e-06,1.081443551852489154e-06,1.132940863845464758e-06,1.184438175838440361e-06,1.235935487831415965e-06,1.287432799824391568e-06,1.338930111817367172e-06,1.390427423810342775e-06,1.441924735803318378e-06,1.493422047796293982e-06,1.544919359789269585e-06,1.596416671782245189e-06,1.647913983775220792e-06,1.699411295768196396e-06,1.750908607761171999e-06,1.802405919754147603e-06,1.853903231747123206e-06,1.905400543740098809e-06,1.956897855733074201e-06,2.008395167726049593e-06,2.059892479719024984e-06,2.111389791712000376e-06,2.162887103704975768e-06,2.214384415697951159e-06,2.265881727690926551e-06,2.317379039683901943e-06,2.368876351676877335e-06,2.420373663669852726e-06,2.471870975662828118e-06,2.523368287655803510e-06,2.574865599648778901e-06,2.626362911641754293e-06,2.677860223634729685e-06,2.729357535627705076e-06,2.780854847620680468e-06,2.832352159613655860e-06,2.883849471606631251e-06,2.935346783599606643e-06,2.986844095592582035e-06,3.038341407585557426e-06,3.089838719578532818e-06,3.141336031571508210e-06,3.192833343564483601e-06,3.244330655557458993e-06 +0.000000000000000000e+00,5.729171603117102742e-08,1.145834320623420548e-07,1.718751480935130757e-07,2.291668641246840832e-07,2.864585801558550908e-07,3.437502961870260984e-07,4.010420122181971059e-07,4.583337282493681135e-07,5.156254442805391740e-07,5.729171603117102875e-07,6.302088763428814009e-07,6.875005923740525144e-07,7.447923084052236278e-07,8.020840244363947413e-07,8.593757404675658547e-07,9.166674564987369682e-07,9.739591725299080816e-07,1.031250888561079195e-06,1.088542604592250309e-06,1.145834320623421422e-06,1.203126036654592535e-06,1.260417752685763649e-06,1.317709468716934762e-06,1.375001184748105876e-06,1.432292900779276989e-06,1.489584616810448103e-06,1.546876332841619216e-06,1.604168048872790330e-06,1.661459764903961443e-06,1.718751480935132557e-06,1.776043196966303670e-06,1.833334912997474783e-06,1.890626629028645897e-06,1.947918345059817010e-06,2.005210061090988124e-06,2.062501777122159237e-06,2.119793493153330351e-06,2.177085209184501464e-06,2.234376925215672578e-06,2.291668641246843691e-06,2.348960357278014804e-06,2.406252073309185918e-06,2.463543789340357031e-06,2.520835505371528145e-06,2.578127221402699258e-06,2.635418937433870372e-06,2.692710653465041485e-06,2.750002369496212599e-06,2.807294085527383712e-06,2.864585801558554826e-06,2.921877517589725939e-06,2.979169233620897052e-06,3.036460949652068166e-06,3.093752665683239279e-06,3.151044381714410393e-06,3.208336097745581506e-06,3.265627813776752620e-06,3.322919529807923733e-06,3.380211245839094847e-06,3.437502961870265960e-06,3.494794677901437073e-06,3.552086393932608187e-06,3.609378109963779300e-06 +0.000000000000000000e+00,5.824829713343984194e-08,1.164965942668796839e-07,1.747448914003195192e-07,2.329931885337593413e-07,2.912414856671991634e-07,3.494897828006389855e-07,4.077380799340788076e-07,4.659863770675186296e-07,5.242346742009584517e-07,5.824829713343983268e-07,6.407312684678382018e-07,6.989795656012780768e-07,7.572278627347179518e-07,8.154761598681578269e-07,8.737244570015977019e-07,9.319727541350375769e-07,9.902210512684773461e-07,1.048469348401917115e-06,1.106717645535356884e-06,1.164965942668796654e-06,1.223214239802236423e-06,1.281462536935676192e-06,1.339710834069115961e-06,1.397959131202555730e-06,1.456207428335995499e-06,1.514455725469435268e-06,1.572704022602875038e-06,1.630952319736314807e-06,1.689200616869754576e-06,1.747448914003194345e-06,1.805697211136634114e-06,1.863945508270073883e-06,1.922193805403513652e-06,1.980442102536953422e-06,2.038690399670393191e-06,2.096938696803832960e-06,2.155186993937272729e-06,2.213435291070712498e-06,2.271683588204152267e-06,2.329931885337592036e-06,2.388180182471031806e-06,2.446428479604471575e-06,2.504676776737911344e-06,2.562925073871351113e-06,2.621173371004790882e-06,2.679421668138230651e-06,2.737669965271670421e-06,2.795918262405110190e-06,2.854166559538549959e-06,2.912414856671989728e-06,2.970663153805429497e-06,3.028911450938869266e-06,3.087159748072309035e-06,3.145408045205748805e-06,3.203656342339188574e-06,3.261904639472628343e-06,3.320152936606068112e-06,3.378401233739507881e-06,3.436649530872947650e-06,3.494897828006387419e-06,3.553146125139827189e-06,3.611394422273266958e-06,3.669642719406706727e-06 +0.000000000000000000e+00,5.149731199298317379e-08,1.029946239859663476e-07,1.544919359789495214e-07,2.059892479719326952e-07,2.574865599649158690e-07,3.089838719578990428e-07,3.604811839508822165e-07,4.119784959438653903e-07,4.634758079368485641e-07,5.149731199298317379e-07,5.664704319228148588e-07,6.179677439157979796e-07,6.694650559087811005e-07,7.209623679017642213e-07,7.724596798947473422e-07,8.239569918877304630e-07,8.754543038807135839e-07,9.269516158736967047e-07,9.784489278666798256e-07,1.029946239859662841e-06,1.081443551852645856e-06,1.132940863845628871e-06,1.184438175838611885e-06,1.235935487831594900e-06,1.287432799824577915e-06,1.338930111817560930e-06,1.390427423810543945e-06,1.441924735803526960e-06,1.493422047796509975e-06,1.544919359789492990e-06,1.596416671782476005e-06,1.647913983775459020e-06,1.699411295768442035e-06,1.750908607761425050e-06,1.802405919754408065e-06,1.853903231747391080e-06,1.905400543740374095e-06,1.956897855733357110e-06,2.008395167726340125e-06,2.059892479719323140e-06,2.111389791712306155e-06,2.162887103705289170e-06,2.214384415698272185e-06,2.265881727691255200e-06,2.317379039684238215e-06,2.368876351677221230e-06,2.420373663670204245e-06,2.471870975663187260e-06,2.523368287656170275e-06,2.574865599649153290e-06,2.626362911642136305e-06,2.677860223635119320e-06,2.729357535628102335e-06,2.780854847621085350e-06,2.832352159614068365e-06,2.883849471607051380e-06,2.935346783600034395e-06,2.986844095593017410e-06,3.038341407586000425e-06,3.089838719578983440e-06,3.141336031571966454e-06,3.192833343564949469e-06,3.244330655557932484e-06 +0.000000000000000000e+00,5.560373754115836340e-08,1.112074750823167268e-07,1.668112126234750902e-07,2.224149501646334536e-07,2.780186877057918435e-07,3.336224252469502334e-07,3.892261627881086232e-07,4.448299003292670131e-07,5.004336378704254030e-07,5.560373754115837928e-07,6.116411129527421827e-07,6.672448504939005726e-07,7.228485880350589625e-07,7.784523255762173523e-07,8.340560631173757422e-07,8.896598006585341321e-07,9.452635381996925219e-07,1.000867275740851018e-06,1.056471013282009619e-06,1.112074750823168221e-06,1.167678488364326823e-06,1.223282225905485424e-06,1.278885963446644026e-06,1.334489700987802627e-06,1.390093438528961229e-06,1.445697176070119831e-06,1.501300913611278432e-06,1.556904651152437034e-06,1.612508388693595636e-06,1.668112126234754237e-06,1.723715863775912839e-06,1.779319601317071441e-06,1.834923338858230042e-06,1.890527076399388644e-06,1.946130813940547245e-06,2.001734551481705847e-06,2.057338289022864449e-06,2.112942026564023050e-06,2.168545764105181652e-06,2.224149501646340254e-06,2.279753239187498855e-06,2.335356976728657457e-06,2.390960714269816058e-06,2.446564451810974660e-06,2.502168189352133262e-06,2.557771926893291863e-06,2.613375664434450465e-06,2.668979401975609067e-06,2.724583139516767668e-06,2.780186877057926270e-06,2.835790614599084871e-06,2.891394352140243473e-06,2.946998089681402075e-06,3.002601827222560676e-06,3.058205564763719278e-06,3.113809302304877880e-06,3.169413039846036481e-06,3.225016777387195083e-06,3.280620514928353685e-06,3.336224252469512286e-06,3.391827990010670888e-06,3.447431727551829489e-06,3.503035465092988091e-06 +0.000000000000000000e+00,5.640384906318297500e-08,1.128076981263659500e-07,1.692115471895489184e-07,2.256153962527318735e-07,2.820192453159148552e-07,3.384230943790978368e-07,3.948269434422808184e-07,4.512307925054638000e-07,5.076346415686467816e-07,5.640384906318297103e-07,6.204423396950126390e-07,6.768461887581955677e-07,7.332500378213784963e-07,7.896538868845614250e-07,8.460577359477443537e-07,9.024615850109272824e-07,9.588654340741103169e-07,1.015269283137293351e-06,1.071673132200476386e-06,1.128076981263659421e-06,1.184480830326842455e-06,1.240884679390025490e-06,1.297288528453208524e-06,1.353692377516391559e-06,1.410096226579574593e-06,1.466500075642757628e-06,1.522903924705940663e-06,1.579307773769123697e-06,1.635711622832306732e-06,1.692115471895489766e-06,1.748519320958672801e-06,1.804923170021855835e-06,1.861327019085038870e-06,1.917730868148221904e-06,1.974134717211404939e-06,2.030538566274587974e-06,2.086942415337771008e-06,2.143346264400954043e-06,2.199750113464137077e-06,2.256153962527320112e-06,2.312557811590503146e-06,2.368961660653686181e-06,2.425365509716869215e-06,2.481769358780052250e-06,2.538173207843235285e-06,2.594577056906418319e-06,2.650980905969601354e-06,2.707384755032784388e-06,2.763788604095967423e-06,2.820192453159150457e-06,2.876596302222333492e-06,2.933000151285516526e-06,2.989404000348699561e-06,3.045807849411882596e-06,3.102211698475065630e-06,3.158615547538248665e-06,3.215019396601431699e-06,3.271423245664614734e-06,3.327827094727797768e-06,3.384230943790980803e-06,3.440634792854163837e-06,3.497038641917346872e-06,3.553442490980529907e-06 +0.000000000000000000e+00,4.918444746210423656e-08,9.836889492420847312e-08,1.475533423863127163e-07,1.967377898484169727e-07,2.459222373105212556e-07,2.951066847726255385e-07,3.442911322347298214e-07,3.934755796968341042e-07,4.426600271589383871e-07,4.918444746210427230e-07,5.410289220831470588e-07,5.902133695452513946e-07,6.393978170073557304e-07,6.885822644694600662e-07,7.377667119315644021e-07,7.869511593936687379e-07,8.361356068557730737e-07,8.853200543178774095e-07,9.345045017799817454e-07,9.836889492420860812e-07,1.032873396704190523e-06,1.082057844166294965e-06,1.131242291628399406e-06,1.180426739090503848e-06,1.229611186552608290e-06,1.278795634014712731e-06,1.327980081476817173e-06,1.377164528938921615e-06,1.426348976401026056e-06,1.475533423863130498e-06,1.524717871325234940e-06,1.573902318787339382e-06,1.623086766249443823e-06,1.672271213711548265e-06,1.721455661173652707e-06,1.770640108635757148e-06,1.819824556097861590e-06,1.869009003559966032e-06,1.918193451022070474e-06,1.967377898484175127e-06,2.016562345946279780e-06,2.065746793408384434e-06,2.114931240870489087e-06,2.164115688332593741e-06,2.213300135794698394e-06,2.262484583256803048e-06,2.311669030718907701e-06,2.360853478181012355e-06,2.410037925643117008e-06,2.459222373105221662e-06,2.508406820567326315e-06,2.557591268029430968e-06,2.606775715491535622e-06,2.655960162953640275e-06,2.705144610415744929e-06,2.754329057877849582e-06,2.803513505339954236e-06,2.852697952802058889e-06,2.901882400264163543e-06,2.951066847726268196e-06,3.000251295188372850e-06,3.049435742650477503e-06,3.098620190112582157e-06 +0.000000000000000000e+00,5.560373754116662859e-08,1.112074750823332572e-07,1.668112126234998924e-07,2.224149501646665408e-07,2.780186877058331893e-07,3.336224252469998377e-07,3.892261627881664862e-07,4.448299003293331346e-07,5.004336378704998360e-07,5.560373754116664844e-07,6.116411129528331329e-07,6.672448504939997813e-07,7.228485880351664298e-07,7.784523255763330782e-07,8.340560631174997266e-07,8.896598006586663751e-07,9.452635381998330235e-07,1.000867275740999672e-06,1.056471013282166320e-06,1.112074750823332969e-06,1.167678488364499617e-06,1.223282225905666266e-06,1.278885963446832914e-06,1.334489700987999563e-06,1.390093438529166211e-06,1.445697176070332860e-06,1.501300913611499508e-06,1.556904651152666156e-06,1.612508388693832805e-06,1.668112126234999453e-06,1.723715863776166102e-06,1.779319601317332750e-06,1.834923338858499399e-06,1.890527076399666047e-06,1.946130813940832696e-06,2.001734551481999344e-06,2.057338289023165992e-06,2.112942026564332641e-06,2.168545764105499289e-06,2.224149501646665938e-06,2.279753239187832586e-06,2.335356976728999235e-06,2.390960714270165883e-06,2.446564451811332531e-06,2.502168189352499180e-06,2.557771926893665828e-06,2.613375664434832477e-06,2.668979401975999125e-06,2.724583139517165774e-06,2.780186877058332422e-06,2.835790614599499071e-06,2.891394352140665719e-06,2.946998089681832367e-06,3.002601827222999016e-06,3.058205564764165664e-06,3.113809302305332313e-06,3.169413039846498961e-06,3.225016777387665610e-06,3.280620514928832258e-06,3.336224252469998907e-06,3.391827990011165555e-06,3.447431727552332203e-06,3.503035465093498852e-06 +0.000000000000000000e+00,5.640384906319049904e-08,1.128076981263809981e-07,1.692115471895714971e-07,2.256153962527619961e-07,2.820192453159524952e-07,3.384230943791429942e-07,3.948269434423334933e-07,4.512307925055239923e-07,5.076346415687144384e-07,5.640384906319048845e-07,6.204423396950953306e-07,6.768461887582857767e-07,7.332500378214762228e-07,7.896538868846666689e-07,8.460577359478571150e-07,9.024615850110475611e-07,9.588654340742380072e-07,1.015269283137428453e-06,1.071673132200618899e-06,1.128076981263809345e-06,1.184480830326999792e-06,1.240884679390190238e-06,1.297288528453380684e-06,1.353692377516571130e-06,1.410096226579761576e-06,1.466500075642952022e-06,1.522903924706142468e-06,1.579307773769332914e-06,1.635711622832523360e-06,1.692115471895713806e-06,1.748519320958904253e-06,1.804923170022094699e-06,1.861327019085285145e-06,1.917730868148475591e-06,1.974134717211665825e-06,2.030538566274856059e-06,2.086942415338046294e-06,2.143346264401236528e-06,2.199750113464426762e-06,2.256153962527616997e-06,2.312557811590807231e-06,2.368961660653997465e-06,2.425365509717187700e-06,2.481769358780377934e-06,2.538173207843568169e-06,2.594577056906758403e-06,2.650980905969948637e-06,2.707384755033138872e-06,2.763788604096329106e-06,2.820192453159519340e-06,2.876596302222709575e-06,2.933000151285899809e-06,2.989404000349090043e-06,3.045807849412280278e-06,3.102211698475470512e-06,3.158615547538660746e-06,3.215019396601850981e-06,3.271423245665041215e-06,3.327827094728231449e-06,3.384230943791421684e-06,3.440634792854611918e-06,3.497038641917802152e-06,3.553442490980992387e-06 +0.000000000000000000e+00,4.918444746211236278e-08,9.836889492422472557e-08,1.475533423863370950e-07,1.967377898484494776e-07,2.459222373105618602e-07,2.951066847726742429e-07,3.442911322347866255e-07,3.934755796968990081e-07,4.426600271590113908e-07,4.918444746211238264e-07,5.410289220832363149e-07,5.902133695453488034e-07,6.393978170074612919e-07,6.885822644695737804e-07,7.377667119316862689e-07,7.869511593937987574e-07,8.361356068559112460e-07,8.853200543180237345e-07,9.345045017801362230e-07,9.836889492422487115e-07,1.032873396704361200e-06,1.082057844166473689e-06,1.131242291628586177e-06,1.180426739090698666e-06,1.229611186552811154e-06,1.278795634014923643e-06,1.327980081477036131e-06,1.377164528939148620e-06,1.426348976401261108e-06,1.475533423863373597e-06,1.524717871325486085e-06,1.573902318787598574e-06,1.623086766249711062e-06,1.672271213711823551e-06,1.721455661173936039e-06,1.770640108636048528e-06,1.819824556098161016e-06,1.869009003560273505e-06,1.918193451022385993e-06,1.967377898484498694e-06,2.016562345946611394e-06,2.065746793408724094e-06,2.114931240870836794e-06,2.164115688332949495e-06,2.213300135795062195e-06,2.262484583257174895e-06,2.311669030719287595e-06,2.360853478181400296e-06,2.410037925643512996e-06,2.459222373105625696e-06,2.508406820567738397e-06,2.557591268029851097e-06,2.606775715491963797e-06,2.655960162954076497e-06,2.705144610416189198e-06,2.754329057878301898e-06,2.803513505340414598e-06,2.852697952802527298e-06,2.901882400264639999e-06,2.951066847726752699e-06,3.000251295188865399e-06,3.049435742650978100e-06,3.098620190113090800e-06 +0.000000000000000000e+00,5.426591553640730467e-08,1.085318310728146093e-07,1.627977466092219140e-07,2.170636621456292187e-07,2.713295776820365234e-07,3.255954932184438280e-07,3.798614087548511327e-07,4.341273242912584374e-07,4.883932398276657421e-07,5.426591553640730467e-07,5.969250709004803514e-07,6.511909864368876561e-07,7.054569019732949607e-07,7.597228175097022654e-07,8.139887330461095701e-07,8.682546485825168748e-07,9.225205641189241794e-07,9.767864796553314841e-07,1.031052395191738789e-06,1.085318310728146093e-06,1.139584226264553398e-06,1.193850141800960703e-06,1.248116057337368007e-06,1.302381972873775312e-06,1.356647888410182617e-06,1.410913803946589921e-06,1.465179719482997226e-06,1.519445635019404531e-06,1.573711550555811836e-06,1.627977466092219140e-06,1.682243381628626445e-06,1.736509297165033750e-06,1.790775212701441054e-06,1.845041128237848359e-06,1.899307043774255664e-06,1.953572959310662968e-06,2.007838874847070061e-06,2.062104790383477154e-06,2.116370705919884247e-06,2.170636621456291340e-06,2.224902536992698433e-06,2.279168452529105526e-06,2.333434368065512619e-06,2.387700283601919712e-06,2.441966199138326804e-06,2.496232114674733897e-06,2.550498030211140990e-06,2.604763945747548083e-06,2.659029861283955176e-06,2.713295776820362269e-06,2.767561692356769362e-06,2.821827607893176455e-06,2.876093523429583548e-06,2.930359438965990641e-06,2.984625354502397734e-06,3.038891270038804827e-06,3.093157185575211919e-06,3.147423101111619012e-06,3.201689016648026105e-06,3.255954932184433198e-06,3.310220847720840291e-06,3.364486763257247384e-06,3.418752678793654477e-06 +0.000000000000000000e+00,5.426931798827306365e-08,1.085386359765461273e-07,1.628079539648191777e-07,2.170772719530922281e-07,2.713465899413652786e-07,3.256159079296383555e-07,3.798852259179114323e-07,4.341545439061845092e-07,4.884238618944575861e-07,5.426931798827306630e-07,5.969624978710037399e-07,6.512318158592768168e-07,7.055011338475498937e-07,7.597704518358229706e-07,8.140397698240960474e-07,8.683090878123691243e-07,9.225784058006422012e-07,9.768477237889151722e-07,1.031117041777188143e-06,1.085386359765461114e-06,1.139655677753734085e-06,1.193924995742007056e-06,1.248194313730280027e-06,1.302463631718552998e-06,1.356732949706825969e-06,1.411002267695098940e-06,1.465271585683371911e-06,1.519540903671644882e-06,1.573810221659917853e-06,1.628079539648190824e-06,1.682348857636463795e-06,1.736618175624736766e-06,1.790887493613009737e-06,1.845156811601282708e-06,1.899426129589555679e-06,1.953695447577828650e-06,2.007964765566101833e-06,2.062234083554375016e-06,2.116503401542648199e-06,2.170772719530921381e-06,2.225042037519194564e-06,2.279311355507467747e-06,2.333580673495740930e-06,2.387849991484014113e-06,2.442119309472287295e-06,2.496388627460560478e-06,2.550657945448833661e-06,2.604927263437106844e-06,2.659196581425380026e-06,2.713465899413653209e-06,2.767735217401926392e-06,2.822004535390199575e-06,2.876273853378472757e-06,2.930543171366745940e-06,2.984812489355019123e-06,3.039081807343292306e-06,3.093351125331565489e-06,3.147620443319838671e-06,3.201889761308111854e-06,3.256159079296385037e-06,3.310428397284658220e-06,3.364697715272931402e-06,3.418967033261204585e-06 +0.000000000000000000e+00,5.489086727683107870e-08,1.097817345536621574e-07,1.646726018304932427e-07,2.195634691073243413e-07,2.744543363841554134e-07,3.293452036609864855e-07,3.842360709378175575e-07,4.391269382146486296e-07,4.940178054914797017e-07,5.489086727683108267e-07,6.037995400451419518e-07,6.586904073219730768e-07,7.135812745988042018e-07,7.684721418756353268e-07,8.233630091524664519e-07,8.782538764292975769e-07,9.331447437061287019e-07,9.880356109829598270e-07,1.042926478259790846e-06,1.097817345536621865e-06,1.152708212813452884e-06,1.207599080090283904e-06,1.262489947367114923e-06,1.317380814643945942e-06,1.372271681920776961e-06,1.427162549197607980e-06,1.482053416474438999e-06,1.536944283751270018e-06,1.591835151028101038e-06,1.646726018304932057e-06,1.701616885581763076e-06,1.756507752858594095e-06,1.811398620135425114e-06,1.866289487412256133e-06,1.921180354689087152e-06,1.976071221965918383e-06,2.030962089242749614e-06,2.085852956519580845e-06,2.140743823796412076e-06,2.195634691073243307e-06,2.250525558350074538e-06,2.305416425626905769e-06,2.360307292903737000e-06,2.415198160180568231e-06,2.470089027457399461e-06,2.524979894734230692e-06,2.579870762011061923e-06,2.634761629287893154e-06,2.689652496564724385e-06,2.744543363841555616e-06,2.799434231118386847e-06,2.854325098395218078e-06,2.909215965672049309e-06,2.964106832948880540e-06,3.018997700225711771e-06,3.073888567502543001e-06,3.128779434779374232e-06,3.183670302056205463e-06,3.238561169333036694e-06,3.293452036609867925e-06,3.348342903886699156e-06,3.403233771163530387e-06,3.458124638440361618e-06 +0.000000000000000000e+00,4.704477594432404474e-08,9.408955188864808948e-08,1.411343278329721408e-07,1.881791037772962054e-07,2.352238797216202700e-07,2.822686556659443346e-07,3.293134316102683727e-07,3.763582075545924108e-07,4.234029834989164490e-07,4.704477594432404871e-07,5.174925353875645252e-07,5.645373113318885633e-07,6.115820872762126015e-07,6.586268632205366396e-07,7.056716391648606777e-07,7.527164151091847158e-07,7.997611910535087539e-07,8.468059669978327921e-07,8.938507429421568302e-07,9.408955188864808683e-07,9.879402948308048005e-07,1.034985070775128839e-06,1.082029846719452877e-06,1.129074622663776915e-06,1.176119398608100953e-06,1.223164174552424991e-06,1.270208950496749029e-06,1.317253726441073067e-06,1.364298502385397106e-06,1.411343278329721144e-06,1.458388054274045182e-06,1.505432830218369220e-06,1.552477606162693258e-06,1.599522382107017296e-06,1.646567158051341334e-06,1.693611933995665372e-06,1.740656709939989410e-06,1.787701485884313449e-06,1.834746261828637487e-06,1.881791037772961525e-06,1.928835813717285563e-06,1.975880589661609601e-06,2.022925365605933639e-06,2.069970141550257677e-06,2.117014917494581715e-06,2.164059693438905754e-06,2.211104469383229792e-06,2.258149245327553830e-06,2.305194021271877868e-06,2.352238797216201906e-06,2.399283573160525944e-06,2.446328349104849982e-06,2.493373125049174020e-06,2.540417900993498059e-06,2.587462676937822097e-06,2.634507452882146135e-06,2.681552228826470173e-06,2.728597004770794211e-06,2.775641780715118249e-06,2.822686556659442287e-06,2.869731332603766325e-06,2.916776108548090364e-06,2.963820884492414402e-06 +0.000000000000000000e+00,5.426882007057560900e-08,1.085376401411512180e-07,1.628064602117268270e-07,2.170752802823024360e-07,2.713441003528780450e-07,3.256129204234536540e-07,3.798817404940292630e-07,4.341505605646048720e-07,4.884193806351805339e-07,5.426882007057561958e-07,5.969570207763318578e-07,6.512258408469075197e-07,7.054946609174831817e-07,7.597634809880588436e-07,8.140323010586345055e-07,8.683011211292101675e-07,9.225699411997858294e-07,9.768387612703614913e-07,1.031107581340937153e-06,1.085376401411512815e-06,1.139645221482088477e-06,1.193914041552664139e-06,1.248182861623239801e-06,1.302451681693815463e-06,1.356720501764391125e-06,1.410989321834966787e-06,1.465258141905542449e-06,1.519526961976118111e-06,1.573795782046693773e-06,1.628064602117269435e-06,1.682333422187845097e-06,1.736602242258420758e-06,1.790871062328996420e-06,1.845139882399572082e-06,1.899408702470147744e-06,1.953677522540723406e-06,2.007946342611299068e-06,2.062215162681874730e-06,2.116483982752450392e-06,2.170752802823026054e-06,2.225021622893601716e-06,2.279290442964177378e-06,2.333559263034753040e-06,2.387828083105328702e-06,2.442096903175904364e-06,2.496365723246480026e-06,2.550634543317055687e-06,2.604903363387631349e-06,2.659172183458207011e-06,2.713441003528782673e-06,2.767709823599358335e-06,2.821978643669933997e-06,2.876247463740509659e-06,2.930516283811085321e-06,2.984785103881660983e-06,3.039053923952236645e-06,3.093322744022812307e-06,3.147591564093387969e-06,3.201860384163963631e-06,3.256129204234539293e-06,3.310398024305114955e-06,3.364666844375690617e-06,3.418935664446266278e-06 +0.000000000000000000e+00,4.704675989826825991e-08,9.409351979653651982e-08,1.411402796948047797e-07,1.881870395930730396e-07,2.352337994913412995e-07,2.822805593896095594e-07,3.293273192878778194e-07,3.763740791861460793e-07,4.234208390844143392e-07,4.704675989826825991e-07,5.175143588809508060e-07,5.645611187792190130e-07,6.116078786774872200e-07,6.586546385757554270e-07,7.057013984740236339e-07,7.527481583722918409e-07,7.997949182705600479e-07,8.468416781688282548e-07,8.938884380670964618e-07,9.409351979653646688e-07,9.879819578636328757e-07,1.035028717761901189e-06,1.082075477660169501e-06,1.129122237558437814e-06,1.176168997456706127e-06,1.223215757354974440e-06,1.270262517253242753e-06,1.317309277151511066e-06,1.364356037049779379e-06,1.411402796948047691e-06,1.458449556846316004e-06,1.505496316744584317e-06,1.552543076642852630e-06,1.599589836541120943e-06,1.646636596439389256e-06,1.693683356337657568e-06,1.740730116235925881e-06,1.787776876134194194e-06,1.834823636032462507e-06,1.881870395930730820e-06,1.928917155828999133e-06,1.975963915727267446e-06,2.023010675625535758e-06,2.070057435523804071e-06,2.117104195422072384e-06,2.164150955320340697e-06,2.211197715218609010e-06,2.258244475116877323e-06,2.305291235015145635e-06,2.352337994913413948e-06,2.399384754811682261e-06,2.446431514709950574e-06,2.493478274608218887e-06,2.540525034506487200e-06,2.587571794404755513e-06,2.634618554303023825e-06,2.681665314201292138e-06,2.728712074099560451e-06,2.775758833997828764e-06,2.822805593896097077e-06,2.869852353794365390e-06,2.916899113692633702e-06,2.963945873590902015e-06 +0.000000000000000000e+00,5.426591553641533163e-08,1.085318310728306633e-07,1.627977466092460015e-07,2.170636621456613530e-07,2.713295776820767045e-07,3.255954932184920560e-07,3.798614087549074075e-07,4.341273242913227589e-07,4.883932398277381634e-07,5.426591553641535149e-07,5.969250709005688663e-07,6.511909864369842178e-07,7.054569019733995693e-07,7.597228175098149208e-07,8.139887330462302723e-07,8.682546485826456238e-07,9.225205641190609753e-07,9.767864796554763267e-07,1.031052395191891678e-06,1.085318310728307030e-06,1.139584226264722381e-06,1.193850141801137733e-06,1.248116057337553084e-06,1.302381972873968436e-06,1.356647888410383787e-06,1.410913803946799139e-06,1.465179719483214490e-06,1.519445635019629842e-06,1.573711550556045193e-06,1.627977466092460545e-06,1.682243381628875896e-06,1.736509297165291248e-06,1.790775212701706599e-06,1.845041128238121951e-06,1.899307043774537302e-06,1.953572959310952653e-06,2.007838874847368217e-06,2.062104790383783780e-06,2.116370705920199343e-06,2.170636621456614906e-06,2.224902536993030470e-06,2.279168452529446033e-06,2.333434368065861596e-06,2.387700283602277159e-06,2.441966199138692723e-06,2.496232114675108286e-06,2.550498030211523849e-06,2.604763945747939412e-06,2.659029861284354976e-06,2.713295776820770539e-06,2.767561692357186102e-06,2.821827607893601665e-06,2.876093523430017229e-06,2.930359438966432792e-06,2.984625354502848355e-06,3.038891270039263918e-06,3.093157185575679482e-06,3.147423101112095045e-06,3.201689016648510608e-06,3.255954932184926171e-06,3.310220847721341735e-06,3.364486763257757298e-06,3.418752678794172861e-06 +0.000000000000000000e+00,5.426882007057963902e-08,1.085376401411592780e-07,1.628064602117389237e-07,2.170752802823185826e-07,2.713441003528982150e-07,3.256129204234778474e-07,3.798817404940574798e-07,4.341505605646371122e-07,4.884193806352167446e-07,5.426882007057964299e-07,5.969570207763761153e-07,6.512258408469558006e-07,7.054946609175354859e-07,7.597634809881151713e-07,8.140323010586948566e-07,8.683011211292745420e-07,9.225699411998542273e-07,9.768387612704339127e-07,1.031107581341013598e-06,1.085376401411593283e-06,1.139645221482172969e-06,1.193914041552752654e-06,1.248182861623332339e-06,1.302451681693912025e-06,1.356720501764491710e-06,1.410989321835071395e-06,1.465258141905651081e-06,1.519526961976230766e-06,1.573795782046810451e-06,1.628064602117390137e-06,1.682333422187969822e-06,1.736602242258549507e-06,1.790871062329129193e-06,1.845139882399708878e-06,1.899408702470288563e-06,1.953677522540868249e-06,2.007946342611448146e-06,2.062215162682028043e-06,2.116483982752607940e-06,2.170752802823187837e-06,2.225021622893767734e-06,2.279290442964347631e-06,2.333559263034927529e-06,2.387828083105507426e-06,2.442096903176087323e-06,2.496365723246667220e-06,2.550634543317247117e-06,2.604903363387827014e-06,2.659172183458406911e-06,2.713441003528986808e-06,2.767709823599566705e-06,2.821978643670146602e-06,2.876247463740726500e-06,2.930516283811306397e-06,2.984785103881886294e-06,3.039053923952466191e-06,3.093322744023046088e-06,3.147591564093625985e-06,3.201860384164205882e-06,3.256129204234785779e-06,3.310398024305365676e-06,3.364666844375945573e-06,3.418935664446525471e-06 +0.000000000000000000e+00,5.489086727683929757e-08,1.097817345536785951e-07,1.646726018305178861e-07,2.195634691073571638e-07,2.744543363841964415e-07,3.293452036610357192e-07,3.842360709378749970e-07,4.391269382147142747e-07,4.940178054915534995e-07,5.489086727683927772e-07,6.037995400452320549e-07,6.586904073220713326e-07,7.135812745989106103e-07,7.684721418757498881e-07,8.233630091525891658e-07,8.782538764294284435e-07,9.331447437062677212e-07,9.880356109831069989e-07,1.042926478259946277e-06,1.097817345536785554e-06,1.152708212813624832e-06,1.207599080090464110e-06,1.262489947367303388e-06,1.317380814644142665e-06,1.372271681920981943e-06,1.427162549197821221e-06,1.482053416474660498e-06,1.536944283751499776e-06,1.591835151028339054e-06,1.646726018305178332e-06,1.701616885582017609e-06,1.756507752858856887e-06,1.811398620135696165e-06,1.866289487412535442e-06,1.921180354689374720e-06,1.976071221966213998e-06,2.030962089243053276e-06,2.085852956519892553e-06,2.140743823796731831e-06,2.195634691073571109e-06,2.250525558350410386e-06,2.305416425627249664e-06,2.360307292904088942e-06,2.415198160180928220e-06,2.470089027457767497e-06,2.524979894734606775e-06,2.579870762011446053e-06,2.634761629288285330e-06,2.689652496565124608e-06,2.744543363841963886e-06,2.799434231118803164e-06,2.854325098395642441e-06,2.909215965672481719e-06,2.964106832949320997e-06,3.018997700226160274e-06,3.073888567502999552e-06,3.128779434779838830e-06,3.183670302056678108e-06,3.238561169333517385e-06,3.293452036610356663e-06,3.348342903887195941e-06,3.403233771164035219e-06,3.458124638440874496e-06 +0.000000000000000000e+00,4.704477594433240257e-08,9.408955188866480514e-08,1.411343278329972077e-07,1.881791037773296103e-07,2.352238797216620129e-07,2.822686556659944154e-07,3.293134316103268180e-07,3.763582075546592206e-07,4.234029834989916231e-07,4.704477594433240257e-07,5.174925353876564283e-07,5.645373113319888309e-07,6.115820872763212334e-07,6.586268632206536360e-07,7.056716391649860386e-07,7.527164151093184411e-07,7.997611910536508437e-07,8.468059669979832463e-07,8.938507429423156489e-07,9.408955188866480514e-07,9.879402948309805599e-07,1.034985070775313068e-06,1.082029846719645577e-06,1.129074622663978085e-06,1.176119398608310594e-06,1.223164174552643102e-06,1.270208950496975611e-06,1.317253726441308119e-06,1.364298502385640627e-06,1.411343278329973136e-06,1.458388054274305644e-06,1.505432830218638153e-06,1.552477606162970661e-06,1.599522382107303170e-06,1.646567158051635678e-06,1.693611933995968187e-06,1.740656709940300695e-06,1.787701485884633204e-06,1.834746261828965712e-06,1.881791037773298220e-06,1.928835813717630729e-06,1.975880589661963237e-06,2.022925365606295746e-06,2.069970141550628254e-06,2.117014917494960763e-06,2.164059693439293271e-06,2.211104469383625780e-06,2.258149245327958288e-06,2.305194021272290797e-06,2.352238797216623305e-06,2.399283573160955813e-06,2.446328349105288322e-06,2.493373125049620830e-06,2.540417900993953339e-06,2.587462676938285847e-06,2.634507452882618356e-06,2.681552228826950864e-06,2.728597004771283373e-06,2.775641780715615881e-06,2.822686556659948389e-06,2.869731332604280898e-06,2.916776108548613406e-06,2.963820884492945915e-06 +0.000000000000000000e+00,7.287277895419399262e-08,1.457455579083879852e-07,2.186183368625819646e-07,2.914911158167759175e-07,3.643638947709698705e-07,4.372366737251638234e-07,5.101094526793577763e-07,5.829822316335517292e-07,6.558550105877456821e-07,7.287277895419396350e-07,8.016005684961335879e-07,8.744733474503275409e-07,9.473461264045214938e-07,1.020218905358715341e-06,1.093091684312909294e-06,1.165964463267103247e-06,1.238837242221297200e-06,1.311710021175491152e-06,1.384582800129685105e-06,1.457455579083879058e-06,1.530328358038073011e-06,1.603201136992266964e-06,1.676073915946460917e-06,1.748946694900654870e-06,1.821819473854848823e-06,1.894692252809042776e-06,1.967565031763236729e-06,2.040437810717430682e-06,2.113310589671624635e-06,2.186183368625818587e-06,2.259056147580012540e-06,2.331928926534206493e-06,2.404801705488400446e-06,2.477674484442594399e-06,2.550547263396788352e-06,2.623420042350982305e-06,2.696292821305176258e-06,2.769165600259370211e-06,2.842038379213564164e-06,2.914911158167758117e-06,2.987783937121952070e-06,3.060656716076146022e-06,3.133529495030339975e-06,3.206402273984533928e-06,3.279275052938727881e-06,3.352147831892921834e-06,3.425020610847115787e-06,3.497893389801309740e-06,3.570766168755503693e-06,3.643638947709697646e-06,3.716511726663891599e-06,3.789384505618085552e-06,3.862257284572279928e-06,3.935130063526474304e-06,4.008002842480668681e-06,4.080875621434863057e-06,4.153748400389057434e-06,4.226621179343251810e-06,4.299493958297446187e-06,4.372366737251640563e-06,4.445239516205834939e-06,4.518112295160029316e-06,4.590985074114223692e-06 +0.000000000000000000e+00,7.111755052123499615e-08,1.422351010424699923e-07,2.133526515637050017e-07,2.844702020849400376e-07,3.555877526061750734e-07,4.267053031274101093e-07,4.978228536486451451e-07,5.689404041698801810e-07,6.400579546911152168e-07,7.111755052123502527e-07,7.822930557335852886e-07,8.534106062548203244e-07,9.245281567760553603e-07,9.956457072972905020e-07,1.066763257818525750e-06,1.137880808339760997e-06,1.208998358860996245e-06,1.280115909382231492e-06,1.351233459903466740e-06,1.422351010424701988e-06,1.493468560945937235e-06,1.564586111467172483e-06,1.635703661988407731e-06,1.706821212509642978e-06,1.777938763030878226e-06,1.849056313552113473e-06,1.920173864073348721e-06,1.991291414594583969e-06,2.062408965115819216e-06,2.133526515637054464e-06,2.204644066158289711e-06,2.275761616679524959e-06,2.346879167200760207e-06,2.417996717721995454e-06,2.489114268243230702e-06,2.560231818764465950e-06,2.631349369285701197e-06,2.702466919806936445e-06,2.773584470328171692e-06,2.844702020849406940e-06,2.915819571370642188e-06,2.986937121891877435e-06,3.058054672413112683e-06,3.129172222934347930e-06,3.200289773455583178e-06,3.271407323976818426e-06,3.342524874498053673e-06,3.413642425019288921e-06,3.484759975540524169e-06,3.555877526061759416e-06,3.626995076582994664e-06,3.698112627104229911e-06,3.769230177625465159e-06,3.840347728146700830e-06,3.911465278667936501e-06,3.982582829189172172e-06,4.053700379710407844e-06,4.124817930231643515e-06,4.195935480752879186e-06,4.267053031274114857e-06,4.338170581795350528e-06,4.409288132316586199e-06,4.480405682837821870e-06 +0.000000000000000000e+00,7.100120854334585586e-08,1.420024170866917117e-07,2.130036256300375676e-07,2.840048341733834234e-07,3.550060427167293057e-07,4.260072512600751881e-07,4.970084598034210704e-07,5.680096683467669527e-07,6.390108768901128350e-07,7.100120854334587174e-07,7.810132939768045997e-07,8.520145025201504820e-07,9.230157110634963643e-07,9.940169196068421408e-07,1.065018128150187917e-06,1.136019336693533694e-06,1.207020545236879470e-06,1.278021753780225247e-06,1.349022962323571023e-06,1.420024170866916799e-06,1.491025379410262576e-06,1.562026587953608352e-06,1.633027796496954129e-06,1.704029005040299905e-06,1.775030213583645682e-06,1.846031422126991458e-06,1.917032630670337235e-06,1.988033839213683011e-06,2.059035047757028787e-06,2.130036256300374564e-06,2.201037464843720340e-06,2.272038673387066117e-06,2.343039881930411893e-06,2.414041090473757670e-06,2.485042299017103446e-06,2.556043507560449223e-06,2.627044716103794999e-06,2.698045924647140775e-06,2.769047133190486552e-06,2.840048341733832328e-06,2.911049550277178105e-06,2.982050758820523881e-06,3.053051967363869658e-06,3.124053175907215434e-06,3.195054384450561211e-06,3.266055592993906987e-06,3.337056801537252763e-06,3.408058010080598540e-06,3.479059218623944316e-06,3.550060427167290093e-06,3.621061635710635869e-06,3.692062844253981646e-06,3.763064052797327422e-06,3.834065261340672775e-06,3.905066469884018128e-06,3.976067678427363481e-06,4.047068886970708834e-06,4.118070095514054187e-06,4.189071304057399540e-06,4.260072512600744893e-06,4.331073721144090246e-06,4.402074929687435599e-06,4.473076138230780951e-06 +0.000000000000000000e+00,7.245441162570831054e-08,1.449088232514166211e-07,2.173632348771249184e-07,2.898176465028331892e-07,3.622720581285414601e-07,4.347264697542497309e-07,5.071808813799580017e-07,5.796352930056662726e-07,6.520897046313745434e-07,7.245441162570828143e-07,7.969985278827910851e-07,8.694529395084993559e-07,9.419073511342076268e-07,1.014361762759916003e-06,1.086816174385624380e-06,1.159270586011332757e-06,1.231724997637041134e-06,1.304179409262749510e-06,1.376633820888457887e-06,1.449088232514166264e-06,1.521542644139874641e-06,1.593997055765583017e-06,1.666451467391291394e-06,1.738905879016999771e-06,1.811360290642708147e-06,1.883814702268416524e-06,1.956269113894124901e-06,2.028723525519833278e-06,2.101177937145541654e-06,2.173632348771250031e-06,2.246086760396958408e-06,2.318541172022666784e-06,2.390995583648375161e-06,2.463449995274083538e-06,2.535904406899791915e-06,2.608358818525500291e-06,2.680813230151208668e-06,2.753267641776917045e-06,2.825722053402625421e-06,2.898176465028333798e-06,2.970630876654042175e-06,3.043085288279750552e-06,3.115539699905458928e-06,3.187994111531167305e-06,3.260448523156875682e-06,3.332902934782584058e-06,3.405357346408292435e-06,3.477811758034000812e-06,3.550266169659709189e-06,3.622720581285417565e-06,3.695174992911125942e-06,3.767629404536834319e-06,3.840083816162542695e-06,3.912538227788251496e-06,3.984992639413960296e-06,4.057447051039669096e-06,4.129901462665377896e-06,4.202355874291086697e-06,4.274810285916795497e-06,4.347264697542504297e-06,4.419719109168213097e-06,4.492173520793921898e-06,4.564627932419630698e-06 +0.000000000000000000e+00,6.707933754065630567e-08,1.341586750813126113e-07,2.012380126219689170e-07,2.683173501626252227e-07,3.353966877032815548e-07,4.024760252439378869e-07,4.695553627845942191e-07,5.366347003252505512e-07,6.037140378659068834e-07,6.707933754065632155e-07,7.378727129472195476e-07,8.049520504878758798e-07,8.720313880285322119e-07,9.391107255691885441e-07,1.006190063109844770e-06,1.073269400650500891e-06,1.140348738191157011e-06,1.207428075731813131e-06,1.274507413272469252e-06,1.341586750813125372e-06,1.408666088353781493e-06,1.475745425894437613e-06,1.542824763435093733e-06,1.609904100975749854e-06,1.676983438516405974e-06,1.744062776057062094e-06,1.811142113597718215e-06,1.878221451138374335e-06,1.945300788679030456e-06,2.012380126219686576e-06,2.079459463760342696e-06,2.146538801300998817e-06,2.213618138841654937e-06,2.280697476382311058e-06,2.347776813922967178e-06,2.414856151463623298e-06,2.481935489004279419e-06,2.549014826544935539e-06,2.616094164085591659e-06,2.683173501626247780e-06,2.750252839166903900e-06,2.817332176707560021e-06,2.884411514248216141e-06,2.951490851788872261e-06,3.018570189329528382e-06,3.085649526870184502e-06,3.152728864410840622e-06,3.219808201951496743e-06,3.286887539492152863e-06,3.353966877032808984e-06,3.421046214573465104e-06,3.488125552114121224e-06,3.555204889654777345e-06,3.622284227195433465e-06,3.689363564736089586e-06,3.756442902276745706e-06,3.823522239817401826e-06,3.890601577358057523e-06,3.957680914898713220e-06,4.024760252439368917e-06,4.091839589980024614e-06,4.158918927520680311e-06,4.225998265061336007e-06 +0.000000000000000000e+00,6.959831049995902508e-08,1.391966209999180502e-07,2.087949314998770752e-07,2.783932419998361003e-07,3.479915524997951254e-07,4.175898629997541505e-07,4.871881734997131755e-07,5.567864839996722006e-07,6.263847944996312257e-07,6.959831049995902508e-07,7.655814154995492758e-07,8.351797259995083009e-07,9.047780364994673260e-07,9.743763469994263511e-07,1.043974657499385376e-06,1.113572967999344401e-06,1.183171278499303426e-06,1.252769588999262451e-06,1.322367899499221476e-06,1.391966209999180502e-06,1.461564520499139527e-06,1.531162830999098552e-06,1.600761141499057577e-06,1.670359451999016602e-06,1.739957762498975627e-06,1.809556072998934652e-06,1.879154383498893677e-06,1.948752693998852702e-06,2.018351004498811515e-06,2.087949314998770329e-06,2.157547625498729142e-06,2.227145935998687955e-06,2.296744246498646769e-06,2.366342556998605582e-06,2.435940867498564395e-06,2.505539177998523209e-06,2.575137488498482022e-06,2.644735798998440835e-06,2.714334109498399649e-06,2.783932419998358462e-06,2.853530730498317275e-06,2.923129040998276089e-06,2.992727351498234902e-06,3.062325661998193715e-06,3.131923972498152529e-06,3.201522282998111342e-06,3.271120593498070155e-06,3.340718903998028968e-06,3.410317214497987782e-06,3.479915524997946595e-06,3.549513835497905408e-06,3.619112145997864222e-06,3.688710456497823035e-06,3.758308766997781848e-06,3.827907077497740662e-06,3.897505387997699475e-06,3.967103698497658288e-06,4.036702008997617102e-06,4.106300319497575915e-06,4.175898629997534728e-06,4.245496940497493542e-06,4.315095250997452355e-06,4.384693561497411168e-06 +0.000000000000000000e+00,7.102682856664816998e-08,1.420536571332963400e-07,2.130804856999445232e-07,2.841073142665927329e-07,3.551341428332409425e-07,4.261609713998891522e-07,4.971877999665374148e-07,5.682146285331856775e-07,6.392414570998339401e-07,7.102682856664822027e-07,7.812951142331304653e-07,8.523219427997787280e-07,9.233487713664269906e-07,9.943755999330752532e-07,1.065402428499723516e-06,1.136429257066371778e-06,1.207456085633020041e-06,1.278482914199668304e-06,1.349509742766316566e-06,1.420536571332964829e-06,1.491563399899613092e-06,1.562590228466261354e-06,1.633617057032909617e-06,1.704643885599557879e-06,1.775670714166206142e-06,1.846697542732854405e-06,1.917724371299502667e-06,1.988751199866150930e-06,2.059778028432799193e-06,2.130804856999447455e-06,2.201831685566095718e-06,2.272858514132743980e-06,2.343885342699392243e-06,2.414912171266040506e-06,2.485938999832688768e-06,2.556965828399337031e-06,2.627992656965985294e-06,2.699019485532633556e-06,2.770046314099281819e-06,2.841073142665930081e-06,2.912099971232578344e-06,2.983126799799226607e-06,3.054153628365874869e-06,3.125180456932523132e-06,3.196207285499171395e-06,3.267234114065819657e-06,3.338260942632467920e-06,3.409287771199116182e-06,3.480314599765764445e-06,3.551341428332412708e-06,3.622368256899060970e-06,3.693395085465709233e-06,3.764421914032357495e-06,3.835448742599006182e-06,3.906475571165655291e-06,3.977502399732304401e-06,4.048529228298953511e-06,4.119556056865602620e-06,4.190582885432251730e-06,4.261609713998900840e-06,4.332636542565549949e-06,4.403663371132199059e-06,4.474690199698848169e-06 +0.000000000000000000e+00,6.691551957236736411e-08,1.338310391447347282e-07,2.007465587171020923e-07,2.676620782894694565e-07,3.345775978618368470e-07,4.014931174342042376e-07,4.684086370065716282e-07,5.353241565789390188e-07,6.022396761513064094e-07,6.691551957236738000e-07,7.360707152960411905e-07,8.029862348684085811e-07,8.699017544407759717e-07,9.368172740131433623e-07,1.003732793585510753e-06,1.070648313157878249e-06,1.137563832730245746e-06,1.204479352302613242e-06,1.271394871874980739e-06,1.338310391447348235e-06,1.405225911019715732e-06,1.472141430592083228e-06,1.539056950164450725e-06,1.605972469736818221e-06,1.672887989309185718e-06,1.739803508881553214e-06,1.806719028453920710e-06,1.873634548026288207e-06,1.940550067598655703e-06,2.007465587171023200e-06,2.074381106743390696e-06,2.141296626315758193e-06,2.208212145888125689e-06,2.275127665460493186e-06,2.342043185032860682e-06,2.408958704605228179e-06,2.475874224177595675e-06,2.542789743749963172e-06,2.609705263322330668e-06,2.676620782894698164e-06,2.743536302467065661e-06,2.810451822039433157e-06,2.877367341611800654e-06,2.944282861184168150e-06,3.011198380756535647e-06,3.078113900328903143e-06,3.145029419901270640e-06,3.211944939473638136e-06,3.278860459046005633e-06,3.345775978618373129e-06,3.412691498190740626e-06,3.479607017763108122e-06,3.546522537335475618e-06,3.613438056907843115e-06,3.680353576480210611e-06,3.747269096052578108e-06,3.814184615624945604e-06,3.881100135197313101e-06,3.948015654769680597e-06,4.014931174342048094e-06,4.081846693914415590e-06,4.148762213486783087e-06,4.215677733059150583e-06 +0.000000000000000000e+00,7.287277895420099388e-08,1.457455579084019878e-07,2.186183368626029816e-07,2.914911158168039755e-07,3.643638947710049694e-07,4.372366737252059633e-07,5.101094526794070101e-07,5.829822316336080569e-07,6.558550105878091037e-07,7.287277895420101505e-07,8.016005684962111973e-07,8.744733474504122442e-07,9.473461264046132910e-07,1.020218905358814444e-06,1.093091684313015596e-06,1.165964463267216749e-06,1.238837242221417902e-06,1.311710021175619054e-06,1.384582800129820207e-06,1.457455579084021360e-06,1.530328358038222513e-06,1.603201136992423665e-06,1.676073915946624818e-06,1.748946694900825971e-06,1.821819473855027123e-06,1.894692252809228276e-06,1.967565031763429429e-06,2.040437810717630581e-06,2.113310589671831734e-06,2.186183368626032887e-06,2.259056147580234039e-06,2.331928926534435192e-06,2.404801705488636345e-06,2.477674484442837498e-06,2.550547263397038650e-06,2.623420042351239803e-06,2.696292821305440956e-06,2.769165600259642108e-06,2.842038379213843261e-06,2.914911158168044414e-06,2.987783937122245566e-06,3.060656716076446719e-06,3.133529495030647872e-06,3.206402273984849025e-06,3.279275052939050177e-06,3.352147831893251330e-06,3.425020610847452483e-06,3.497893389801653635e-06,3.570766168755854788e-06,3.643638947710055941e-06,3.716511726664257093e-06,3.789384505618458246e-06,3.862257284572659399e-06,3.935130063526860551e-06,4.008002842481061704e-06,4.080875621435262857e-06,4.153748400389464010e-06,4.226621179343665162e-06,4.299493958297866315e-06,4.372366737252067468e-06,4.445239516206268620e-06,4.518112295160469773e-06,4.590985074114670926e-06 +0.000000000000000000e+00,7.111755052124214299e-08,1.422351010424842860e-07,2.133526515637264422e-07,2.844702020849686249e-07,3.555877526062108076e-07,4.267053031274529903e-07,4.978228536486952259e-07,5.689404041699374616e-07,6.400579546911796972e-07,7.111755052124219329e-07,7.822930557336641685e-07,8.534106062549064041e-07,9.245281567761486398e-07,9.956457072973908754e-07,1.066763257818633111e-06,1.137880808339875347e-06,1.208998358861117582e-06,1.280115909382359818e-06,1.351233459903602054e-06,1.422351010424844289e-06,1.493468560946086525e-06,1.564586111467328761e-06,1.635703661988570996e-06,1.706821212509813232e-06,1.777938763031055467e-06,1.849056313552297703e-06,1.920173864073540150e-06,1.991291414594782598e-06,2.062408965116025045e-06,2.133526515637267493e-06,2.204644066158509940e-06,2.275761616679752387e-06,2.346879167200994835e-06,2.417996717722237282e-06,2.489114268243479730e-06,2.560231818764722177e-06,2.631349369285964624e-06,2.702466919807207072e-06,2.773584470328449519e-06,2.844702020849691967e-06,2.915819571370934414e-06,2.986937121892176861e-06,3.058054672413419309e-06,3.129172222934661756e-06,3.200289773455904204e-06,3.271407323977146651e-06,3.342524874498389098e-06,3.413642425019631546e-06,3.484759975540873993e-06,3.555877526062116441e-06,3.626995076583358888e-06,3.698112627104601335e-06,3.769230177625843783e-06,3.840347728147086230e-06,3.911465278668328678e-06,3.982582829189571125e-06,4.053700379710813572e-06,4.124817930232056020e-06,4.195935480753298467e-06,4.267053031274540915e-06,4.338170581795783362e-06,4.409288132317025809e-06,4.480405682838268257e-06 +0.000000000000000000e+00,7.102682856665167722e-08,1.420536571333033544e-07,2.130804856999550317e-07,2.841073142666067089e-07,3.551341428332583597e-07,4.261609713999100104e-07,4.971877999665616612e-07,5.682146285332133119e-07,6.392414570998649627e-07,7.102682856665166134e-07,7.812951142331682642e-07,8.523219427998199149e-07,9.233487713664715657e-07,9.943755999331231106e-07,1.065402428499774761e-06,1.136429257066426412e-06,1.207456085633078063e-06,1.278482914199729714e-06,1.349509742766381364e-06,1.420536571333033015e-06,1.491563399899684666e-06,1.562590228466336317e-06,1.633617057032987967e-06,1.704643885599639618e-06,1.775670714166291269e-06,1.846697542732942920e-06,1.917724371299594570e-06,1.988751199866246221e-06,2.059778028432897872e-06,2.130804856999549523e-06,2.201831685566201173e-06,2.272858514132852824e-06,2.343885342699504475e-06,2.414912171266156126e-06,2.485938999832807776e-06,2.556965828399459427e-06,2.627992656966111078e-06,2.699019485532762729e-06,2.770046314099414379e-06,2.841073142666066030e-06,2.912099971232717681e-06,2.983126799799369332e-06,3.054153628366020982e-06,3.125180456932672633e-06,3.196207285499324284e-06,3.267234114065975935e-06,3.338260942632627585e-06,3.409287771199279236e-06,3.480314599765930887e-06,3.551341428332582538e-06,3.622368256899234188e-06,3.693395085465885839e-06,3.764421914032537490e-06,3.835448742599189141e-06,3.906475571165840791e-06,3.977502399732492442e-06,4.048529228299144093e-06,4.119556056865795744e-06,4.190582885432447395e-06,4.261609713999099045e-06,4.332636542565750696e-06,4.403663371132402347e-06,4.474690199699053998e-06 +0.000000000000000000e+00,7.245441162571553679e-08,1.449088232514310736e-07,2.173632348771466236e-07,2.898176465028622001e-07,3.622720581285777766e-07,4.347264697542933531e-07,5.071808813800089296e-07,5.796352930057245061e-07,6.520897046314400826e-07,7.245441162571556591e-07,7.969985278828712356e-07,8.694529395085868121e-07,9.419073511343023886e-07,1.014361762760018071e-06,1.086816174385733647e-06,1.159270586011449224e-06,1.231724997637164800e-06,1.304179409262880377e-06,1.376633820888595953e-06,1.449088232514311530e-06,1.521542644140027106e-06,1.593997055765742683e-06,1.666451467391458259e-06,1.738905879017173836e-06,1.811360290642889412e-06,1.883814702268604989e-06,1.956269113894320565e-06,2.028723525520036142e-06,2.101177937145751718e-06,2.173632348771467295e-06,2.246086760397182871e-06,2.318541172022898448e-06,2.390995583648614024e-06,2.463449995274329601e-06,2.535904406900045177e-06,2.608358818525760754e-06,2.680813230151476330e-06,2.753267641777191907e-06,2.825722053402907483e-06,2.898176465028623060e-06,2.970630876654338636e-06,3.043085288280054213e-06,3.115539699905769789e-06,3.187994111531485366e-06,3.260448523157200942e-06,3.332902934782916519e-06,3.405357346408632095e-06,3.477811758034347672e-06,3.550266169660063248e-06,3.622720581285778825e-06,3.695174992911494401e-06,3.767629404537209978e-06,3.840083816162925554e-06,3.912538227788641131e-06,3.984992639414356707e-06,4.057447051040072284e-06,4.129901462665787860e-06,4.202355874291503437e-06,4.274810285917219013e-06,4.347264697542934590e-06,4.419719109168650166e-06,4.492173520794365743e-06,4.564627932420081319e-06 +0.000000000000000000e+00,6.707933754066415396e-08,1.341586750813283079e-07,2.012380126219924486e-07,2.683173501626565629e-07,3.353966877033206771e-07,4.024760252439847914e-07,4.695553627846489057e-07,5.366347003253130199e-07,6.037140378659770812e-07,6.707933754066411425e-07,7.378727129473052038e-07,8.049520504879692652e-07,8.720313880286333265e-07,9.391107255692973878e-07,1.006190063109961449e-06,1.073269400650625405e-06,1.140348738191289360e-06,1.207428075731953315e-06,1.274507413272617271e-06,1.341586750813281226e-06,1.408666088353945182e-06,1.475745425894609137e-06,1.542824763435273093e-06,1.609904100975937048e-06,1.676983438516601003e-06,1.744062776057264959e-06,1.811142113597928914e-06,1.878221451138592870e-06,1.945300788679256613e-06,2.012380126219920357e-06,2.079459463760584101e-06,2.146538801301247844e-06,2.213618138841911588e-06,2.280697476382575332e-06,2.347776813923239075e-06,2.414856151463902819e-06,2.481935489004566563e-06,2.549014826545230307e-06,2.616094164085894050e-06,2.683173501626557794e-06,2.750252839167221538e-06,2.817332176707885281e-06,2.884411514248549025e-06,2.951490851789212769e-06,3.018570189329876512e-06,3.085649526870540256e-06,3.152728864411204000e-06,3.219808201951867743e-06,3.286887539492531487e-06,3.353966877033195231e-06,3.421046214573858974e-06,3.488125552114522718e-06,3.555204889655186462e-06,3.622284227195850205e-06,3.689363564736513949e-06,3.756442902277177693e-06,3.823522239817841436e-06,3.890601577358504757e-06,3.957680914899168077e-06,4.024760252439831397e-06,4.091839589980494717e-06,4.158918927521158037e-06,4.225998265061821357e-06 +0.000000000000000000e+00,6.959831049996627780e-08,1.391966209999325556e-07,2.087949314998988334e-07,2.783932419998651112e-07,3.479915524998313890e-07,4.175898629997976668e-07,4.871881734997639975e-07,5.567864839997303282e-07,6.263847944996966590e-07,6.959831049996629897e-07,7.655814154996293204e-07,8.351797259995956512e-07,9.047780364995619819e-07,9.743763469995284185e-07,1.043974657499494855e-06,1.113572967999461292e-06,1.183171278499427728e-06,1.252769588999394165e-06,1.322367899499360602e-06,1.391966209999327038e-06,1.461564520499293475e-06,1.531162830999259911e-06,1.600761141499226348e-06,1.670359451999192785e-06,1.739957762499159221e-06,1.809556072999125658e-06,1.879154383499092095e-06,1.948752693999058531e-06,2.018351004499024968e-06,2.087949314998991404e-06,2.157547625498957841e-06,2.227145935998924278e-06,2.296744246498890714e-06,2.366342556998857151e-06,2.435940867498823587e-06,2.505539177998790024e-06,2.575137488498756461e-06,2.644735798998722897e-06,2.714334109498689334e-06,2.783932419998655771e-06,2.853530730498622207e-06,2.923129040998588644e-06,2.992727351498555080e-06,3.062325661998521517e-06,3.131923972498487954e-06,3.201522282998454390e-06,3.271120593498420827e-06,3.340718903998387263e-06,3.410317214498353700e-06,3.479915524998320137e-06,3.549513835498286573e-06,3.619112145998253010e-06,3.688710456498219446e-06,3.758308766998185883e-06,3.827907077498152320e-06,3.897505387998118756e-06,3.967103698498085193e-06,4.036702008998051630e-06,4.106300319498018066e-06,4.175898629997984503e-06,4.245496940497950939e-06,4.315095250997917376e-06,4.384693561497883813e-06 +0.000000000000000000e+00,7.254784548382467924e-08,1.450956909676493585e-07,2.176435364514740377e-07,2.901913819352987170e-07,3.627392274191233697e-07,4.352870729029480225e-07,5.078349183867726753e-07,5.803827638705973280e-07,6.529306093544219808e-07,7.254784548382466336e-07,7.980263003220712864e-07,8.705741458058959391e-07,9.431219912897205919e-07,1.015669836773545351e-06,1.088217682257370109e-06,1.160765527741194868e-06,1.233313373225019627e-06,1.305861218708844385e-06,1.378409064192669144e-06,1.450956909676493902e-06,1.523504755160318661e-06,1.596052600644143420e-06,1.668600446127968178e-06,1.741148291611792937e-06,1.813696137095617696e-06,1.886243982579442454e-06,1.958791828063267213e-06,2.031339673547091972e-06,2.103887519030916730e-06,2.176435364514741489e-06,2.248983209998566248e-06,2.321531055482391006e-06,2.394078900966215765e-06,2.466626746450040524e-06,2.539174591933865282e-06,2.611722437417690041e-06,2.684270282901514800e-06,2.756818128385339558e-06,2.829365973869164317e-06,2.901913819352989075e-06,2.974461664836813834e-06,3.047009510320638593e-06,3.119557355804463351e-06,3.192105201288288110e-06,3.264653046772112869e-06,3.337200892255937627e-06,3.409748737739762386e-06,3.482296583223587145e-06,3.554844428707411903e-06,3.627392274191236662e-06,3.699940119675061421e-06,3.772487965158886179e-06,3.845035810642711361e-06,3.917583656126536967e-06,3.990131501610362573e-06,4.062679347094188178e-06,4.135227192578013784e-06,4.207775038061839390e-06,4.280322883545664996e-06,4.352870729029490601e-06,4.425418574513316207e-06,4.497966419997141813e-06,4.570514265480967418e-06 +0.000000000000000000e+00,7.282913123390472908e-08,1.456582624678094582e-07,2.184873937017141873e-07,2.913165249356189163e-07,3.641456561695236454e-07,4.369747874034283745e-07,5.098039186373331036e-07,5.826330498712378327e-07,6.554621811051425618e-07,7.282913123390472908e-07,8.011204435729520199e-07,8.739495748068567490e-07,9.467787060407614781e-07,1.019607837274666207e-06,1.092436968508571042e-06,1.165266099742475877e-06,1.238095230976380712e-06,1.310924362210285547e-06,1.383753493444190382e-06,1.456582624678095217e-06,1.529411755912000052e-06,1.602240887145904887e-06,1.675070018379809722e-06,1.747899149613714557e-06,1.820728280847619392e-06,1.893557412081524227e-06,1.966386543315429062e-06,2.039215674549333685e-06,2.112044805783238308e-06,2.184873937017142931e-06,2.257703068251047554e-06,2.330532199484952178e-06,2.403361330718856801e-06,2.476190461952761424e-06,2.549019593186666047e-06,2.621848724420570671e-06,2.694677855654475294e-06,2.767506986888379917e-06,2.840336118122284540e-06,2.913165249356189163e-06,2.985994380590093787e-06,3.058823511823998410e-06,3.131652643057903033e-06,3.204481774291807656e-06,3.277310905525712279e-06,3.350140036759616903e-06,3.422969167993521526e-06,3.495798299227426149e-06,3.568627430461330772e-06,3.641456561695235395e-06,3.714285692929140019e-06,3.787114824163044642e-06,3.859943955396949689e-06,3.932773086630854735e-06,4.005602217864759782e-06,4.078431349098664829e-06,4.151260480332569875e-06,4.224089611566474922e-06,4.296918742800379969e-06,4.369747874034285016e-06,4.442577005268190062e-06,4.515406136502095109e-06,4.588235267736000156e-06 +0.000000000000000000e+00,6.904163420977849539e-08,1.380832684195569908e-07,2.071249026293354862e-07,2.761665368391139816e-07,3.452081710488924769e-07,4.142498052586709723e-07,4.832914394684495207e-07,5.523330736782280690e-07,6.213747078880066173e-07,6.904163420977851656e-07,7.594579763075637140e-07,8.284996105173422623e-07,8.975412447271208106e-07,9.665828789368994648e-07,1.035624513146678119e-06,1.104666147356456773e-06,1.173707781566235427e-06,1.242749415776014082e-06,1.311791049985792736e-06,1.380832684195571390e-06,1.449874318405350044e-06,1.518915952615128698e-06,1.587957586824907353e-06,1.656999221034686007e-06,1.726040855244464661e-06,1.795082489454243315e-06,1.864124123664021970e-06,1.933165757873800624e-06,2.002207392083579066e-06,2.071249026293357509e-06,2.140290660503135951e-06,2.209332294712914394e-06,2.278373928922692836e-06,2.347415563132471278e-06,2.416457197342249721e-06,2.485498831552028163e-06,2.554540465761806606e-06,2.623582099971585048e-06,2.692623734181363491e-06,2.761665368391141933e-06,2.830707002600920376e-06,2.899748636810698818e-06,2.968790271020477260e-06,3.037831905230255703e-06,3.106873539440034145e-06,3.175915173649812588e-06,3.244956807859591030e-06,3.313998442069369473e-06,3.383040076279147915e-06,3.452081710488926358e-06,3.521123344698704800e-06,3.590164978908483242e-06,3.659206613118261685e-06,3.728248247328040127e-06,3.797289881537818570e-06,3.866331515747597012e-06,3.935373149957375455e-06,4.004414784167153897e-06,4.073456418376932340e-06,4.142498052586710782e-06,4.211539686796489225e-06,4.280581321006267667e-06,4.349622955216046109e-06 +0.000000000000000000e+00,7.254784548383037024e-08,1.450956909676607405e-07,2.176435364514911107e-07,2.901913819353214810e-07,3.627392274191518512e-07,4.352870729029822215e-07,5.078349183868125917e-07,5.803827638706429619e-07,6.529306093544733322e-07,7.254784548383037024e-07,7.980263003221340727e-07,8.705741458059644429e-07,9.431219912897948132e-07,1.015669836773625183e-06,1.088217682257455660e-06,1.160765527741286136e-06,1.233313373225116612e-06,1.305861218708947088e-06,1.378409064192777564e-06,1.450956909676608040e-06,1.523504755160438516e-06,1.596052600644268992e-06,1.668600446128099469e-06,1.741148291611929945e-06,1.813696137095760421e-06,1.886243982579590897e-06,1.958791828063421373e-06,2.031339673547251637e-06,2.103887519031081902e-06,2.176435364514912166e-06,2.248983209998742430e-06,2.321531055482572695e-06,2.394078900966402959e-06,2.466626746450233224e-06,2.539174591934063488e-06,2.611722437417893752e-06,2.684270282901724017e-06,2.756818128385554281e-06,2.829365973869384545e-06,2.901913819353214810e-06,2.974461664837045074e-06,3.047009510320875338e-06,3.119557355804705603e-06,3.192105201288535867e-06,3.264653046772366132e-06,3.337200892256196396e-06,3.409748737740026660e-06,3.482296583223856925e-06,3.554844428707687189e-06,3.627392274191517453e-06,3.699940119675347718e-06,3.772487965159177982e-06,3.845035810643007823e-06,3.917583656126837664e-06,3.990131501610667505e-06,4.062679347094497345e-06,4.135227192578327186e-06,4.207775038062157027e-06,4.280322883545986868e-06,4.352870729029816709e-06,4.425418574513646550e-06,4.497966419997476391e-06,4.570514265481306231e-06 +0.000000000000000000e+00,7.282913123391122741e-08,1.456582624678224548e-07,2.184873937017336690e-07,2.913165249356448567e-07,3.641456561695560444e-07,4.369747874034672321e-07,5.098039186373784198e-07,5.826330498712896076e-07,6.554621811052007953e-07,7.282913123391119830e-07,8.011204435730231707e-07,8.739495748069343584e-07,9.467787060408455461e-07,1.019607837274756628e-06,1.092436968508667604e-06,1.165266099742578580e-06,1.238095230976489556e-06,1.310924362210400532e-06,1.383753493444311508e-06,1.456582624678222484e-06,1.529411755912133460e-06,1.602240887146044436e-06,1.675070018379955411e-06,1.747899149613866387e-06,1.820728280847777363e-06,1.893557412081688339e-06,1.966386543315599315e-06,2.039215674549510291e-06,2.112044805783421267e-06,2.184873937017332243e-06,2.257703068251243219e-06,2.330532199485154195e-06,2.403361330719065171e-06,2.476190461952976147e-06,2.549019593186887123e-06,2.621848724420798099e-06,2.694677855654709075e-06,2.767506986888620051e-06,2.840336118122531027e-06,2.913165249356442003e-06,2.985994380590352979e-06,3.058823511824263955e-06,3.131652643058174931e-06,3.204481774292085906e-06,3.277310905525996882e-06,3.350140036759907858e-06,3.422969167993818834e-06,3.495798299227729810e-06,3.568627430461640786e-06,3.641456561695551762e-06,3.714285692929462738e-06,3.787114824163373714e-06,3.859943955397285114e-06,3.932773086631196090e-06,4.005602217865107065e-06,4.078431349099018041e-06,4.151260480332929017e-06,4.224089611566839993e-06,4.296918742800750969e-06,4.369747874034661945e-06,4.442577005268572921e-06,4.515406136502483897e-06,4.588235267736394873e-06 +0.000000000000000000e+00,6.904163420978441138e-08,1.380832684195688228e-07,2.071249026293532209e-07,2.761665368391375926e-07,3.452081710489219643e-07,4.142498052587063360e-07,4.832914394684907076e-07,5.523330736782750793e-07,6.213747078880594510e-07,6.904163420978438227e-07,7.594579763076281943e-07,8.284996105174125660e-07,8.975412447271969377e-07,9.665828789369812035e-07,1.035624513146765575e-06,1.104666147356549947e-06,1.173707781566334319e-06,1.242749415776118690e-06,1.311791049985903062e-06,1.380832684195687434e-06,1.449874318405471805e-06,1.518915952615256177e-06,1.587957586825040549e-06,1.656999221034824920e-06,1.726040855244609292e-06,1.795082489454393664e-06,1.864124123664178035e-06,1.933165757873962407e-06,2.002207392083746779e-06,2.071249026293531150e-06,2.140290660503315522e-06,2.209332294713099894e-06,2.278373928922884265e-06,2.347415563132668637e-06,2.416457197342453009e-06,2.485498831552237380e-06,2.554540465762021752e-06,2.623582099971806124e-06,2.692623734181590495e-06,2.761665368391374867e-06,2.830707002601159239e-06,2.899748636810943611e-06,2.968790271020727982e-06,3.037831905230512354e-06,3.106873539440296726e-06,3.175915173650081097e-06,3.244956807859865469e-06,3.313998442069649841e-06,3.383040076279434212e-06,3.452081710489218584e-06,3.521123344699002956e-06,3.590164978908787327e-06,3.659206613118571699e-06,3.728248247328356071e-06,3.797289881538140442e-06,3.866331515747924814e-06,3.935373149957709186e-06,4.004414784167493557e-06,4.073456418377277929e-06,4.142498052587062301e-06,4.211539686796846672e-06,4.280581321006631044e-06,4.349622955216415416e-06 +0.000000000000000000e+00,7.165755106484551185e-08,1.433151021296910237e-07,2.149726531945365356e-07,2.866302042593820474e-07,3.582877553242275593e-07,4.299453063890730711e-07,5.016028574539185830e-07,5.732604085187640948e-07,6.449179595836096067e-07,7.165755106484551185e-07,7.882330617133006304e-07,8.598906127781461423e-07,9.315481638429916541e-07,1.003205714907837166e-06,1.074863265972682784e-06,1.146520817037528401e-06,1.218178368102374019e-06,1.289835919167219637e-06,1.361493470232065255e-06,1.433151021296910872e-06,1.504808572361756490e-06,1.576466123426602108e-06,1.648123674491447726e-06,1.719781225556293343e-06,1.791438776621138961e-06,1.863096327685984579e-06,1.934753878750830197e-06,2.006411429815675602e-06,2.078068980880521008e-06,2.149726531945366414e-06,2.221384083010211820e-06,2.293041634075057226e-06,2.364699185139902632e-06,2.436356736204748038e-06,2.508014287269593444e-06,2.579671838334438850e-06,2.651329389399284256e-06,2.722986940464129662e-06,2.794644491528975068e-06,2.866302042593820474e-06,2.937959593658665880e-06,3.009617144723511286e-06,3.081274695788356692e-06,3.152932246853202098e-06,3.224589797918047504e-06,3.296247348982892910e-06,3.367904900047738316e-06,3.439562451112583722e-06,3.511220002177429128e-06,3.582877553242274534e-06,3.654535104307119940e-06,3.726192655371965346e-06,3.797850206436810752e-06,3.869507757501656158e-06,3.941165308566501140e-06,4.012822859631346123e-06,4.084480410696191105e-06,4.156137961761036088e-06,4.227795512825881070e-06,4.299453063890726053e-06,4.371110614955571035e-06,4.442768166020416018e-06,4.514425717085261000e-06 +0.000000000000000000e+00,7.214017688220608234e-08,1.442803537644121647e-07,2.164205306466182470e-07,2.885607075288243294e-07,3.607008844110303852e-07,4.328410612932364411e-07,5.049812381754424970e-07,5.771214150576485528e-07,6.492615919398546087e-07,7.214017688220606646e-07,7.935419457042667205e-07,8.656821225864727763e-07,9.378222994686788322e-07,1.009962476350884994e-06,1.082102653233091156e-06,1.154242830115297317e-06,1.226383006997503479e-06,1.298523183879709641e-06,1.370663360761915803e-06,1.442803537644121964e-06,1.514943714526328126e-06,1.587083891408534288e-06,1.659224068290740450e-06,1.731364245172946611e-06,1.803504422055152773e-06,1.875644598937358935e-06,1.947784775819565097e-06,2.019924952701771258e-06,2.092065129583977420e-06,2.164205306466183582e-06,2.236345483348389744e-06,2.308485660230595905e-06,2.380625837112802067e-06,2.452766013995008229e-06,2.524906190877214391e-06,2.597046367759420552e-06,2.669186544641626714e-06,2.741326721523832876e-06,2.813466898406039038e-06,2.885607075288245199e-06,2.957747252170451361e-06,3.029887429052657523e-06,3.102027605934863685e-06,3.174167782817069846e-06,3.246307959699276008e-06,3.318448136581482170e-06,3.390588313463688332e-06,3.462728490345894493e-06,3.534868667228100655e-06,3.607008844110306817e-06,3.679149020992512979e-06,3.751289197874719140e-06,3.823429374756925302e-06,3.895569551639131887e-06,3.967709728521338473e-06,4.039849905403545058e-06,4.111990082285751643e-06,4.184130259167958228e-06,4.256270436050164814e-06,4.328410612932371399e-06,4.400550789814577984e-06,4.472690966696784570e-06,4.544831143578991155e-06 +0.000000000000000000e+00,6.766585879169189707e-08,1.353317175833837941e-07,2.029975763750756912e-07,2.706634351667675883e-07,3.383292939584594589e-07,4.059951527501513295e-07,4.736610115418432000e-07,5.413268703335350706e-07,6.089927291252269412e-07,6.766585879169188118e-07,7.443244467086106824e-07,8.119903055003025530e-07,8.796561642919944236e-07,9.473220230836862942e-07,1.014987881875378059e-06,1.082653740667069930e-06,1.150319599458761800e-06,1.217985458250453671e-06,1.285651317042145541e-06,1.353317175833837412e-06,1.420983034625529283e-06,1.488648893417221153e-06,1.556314752208913024e-06,1.623980611000604894e-06,1.691646469792296765e-06,1.759312328583988635e-06,1.826978187375680506e-06,1.894644046167372377e-06,1.962309904959064247e-06,2.029975763750756118e-06,2.097641622542447988e-06,2.165307481334139859e-06,2.232973340125831730e-06,2.300639198917523600e-06,2.368305057709215471e-06,2.435970916500907341e-06,2.503636775292599212e-06,2.571302634084291083e-06,2.638968492875982953e-06,2.706634351667674824e-06,2.774300210459366694e-06,2.841966069251058565e-06,2.909631928042750436e-06,2.977297786834442306e-06,3.044963645626134177e-06,3.112629504417826047e-06,3.180295363209517918e-06,3.247961222001209789e-06,3.315627080792901659e-06,3.383292939584593530e-06,3.450958798376285400e-06,3.518624657167977271e-06,3.586290515959669142e-06,3.653956374751361012e-06,3.721622233543052883e-06,3.789288092334744753e-06,3.856953951126436624e-06,3.924619809918128495e-06,3.992285668709820365e-06,4.059951527501512236e-06,4.127617386293204106e-06,4.195283245084895977e-06,4.262949103876587848e-06 +0.000000000000000000e+00,7.165755106485161314e-08,1.433151021297032263e-07,2.149726531945548527e-07,2.866302042594065055e-07,3.582877553242581583e-07,4.299453063891098112e-07,5.016028574539614640e-07,5.732604085188131169e-07,6.449179595836647697e-07,7.165755106485164226e-07,7.882330617133680754e-07,8.598906127782197282e-07,9.315481638430713811e-07,1.003205714907922928e-06,1.074863265972774475e-06,1.146520817037626022e-06,1.218178368102477569e-06,1.289835919167329116e-06,1.361493470232180663e-06,1.433151021297032210e-06,1.504808572361883757e-06,1.576466123426735304e-06,1.648123674491586851e-06,1.719781225556438398e-06,1.791438776621289945e-06,1.863096327686141492e-06,1.934753878750993250e-06,2.006411429815845009e-06,2.078068980880696768e-06,2.149726531945548527e-06,2.221384083010400285e-06,2.293041634075252044e-06,2.364699185140103803e-06,2.436356736204955561e-06,2.508014287269807320e-06,2.579671838334659079e-06,2.651329389399510838e-06,2.722986940464362596e-06,2.794644491529214355e-06,2.866302042594066114e-06,2.937959593658917872e-06,3.009617144723769631e-06,3.081274695788621390e-06,3.152932246853473149e-06,3.224589797918324907e-06,3.296247348983176666e-06,3.367904900048028425e-06,3.439562451112880184e-06,3.511220002177731942e-06,3.582877553242583701e-06,3.654535104307435460e-06,3.726192655372287218e-06,3.797850206437138977e-06,3.869507757501990736e-06,3.941165308566842495e-06,4.012822859631694253e-06,4.084480410696546012e-06,4.156137961761397771e-06,4.227795512826249529e-06,4.299453063891101288e-06,4.371110614955953047e-06,4.442768166020804806e-06,4.514425717085656564e-06 +0.000000000000000000e+00,7.214017688221211745e-08,1.442803537644242349e-07,2.164205306466363523e-07,2.885607075288484698e-07,3.607008844110605608e-07,4.328410612932726518e-07,5.049812381754847427e-07,5.771214150576968337e-07,6.492615919399089247e-07,7.214017688221210157e-07,7.935419457043331067e-07,8.656821225865451976e-07,9.378222994687572886e-07,1.009962476350969274e-06,1.082102653233181365e-06,1.154242830115393456e-06,1.226383006997605547e-06,1.298523183879817638e-06,1.370663360762029729e-06,1.442803537644241820e-06,1.514943714526453911e-06,1.587083891408666002e-06,1.659224068290878093e-06,1.731364245173090184e-06,1.803504422055302275e-06,1.875644598937514365e-06,1.947784775819726456e-06,2.019924952701938547e-06,2.092065129584150638e-06,2.164205306466362729e-06,2.236345483348574820e-06,2.308485660230786911e-06,2.380625837112999002e-06,2.452766013995211093e-06,2.524906190877423184e-06,2.597046367759635275e-06,2.669186544641847366e-06,2.741326721524059457e-06,2.813466898406271548e-06,2.885607075288483639e-06,2.957747252170695730e-06,3.029887429052907821e-06,3.102027605935119912e-06,3.174167782817332003e-06,3.246307959699544094e-06,3.318448136581756185e-06,3.390588313463968276e-06,3.462728490346180367e-06,3.534868667228392458e-06,3.607008844110604549e-06,3.679149020992816640e-06,3.751289197875028731e-06,3.823429374757241245e-06,3.895569551639453760e-06,3.967709728521666274e-06,4.039849905403878789e-06,4.111990082286091303e-06,4.184130259168303818e-06,4.256270436050516332e-06,4.328410612932728847e-06,4.400550789814941361e-06,4.472690966697153876e-06,4.544831143579366390e-06 +0.000000000000000000e+00,6.766585879169814393e-08,1.353317175833962879e-07,2.029975763750944318e-07,2.706634351667925757e-07,3.383292939584906932e-07,4.059951527501888107e-07,4.736610115418869281e-07,5.413268703335850456e-07,6.089927291252831630e-07,6.766585879169812805e-07,7.443244467086793980e-07,8.119903055003775154e-07,8.796561642920756329e-07,9.473220230837737504e-07,1.014987881875471868e-06,1.082653740667169879e-06,1.150319599458867891e-06,1.217985458250565903e-06,1.285651317042263914e-06,1.353317175833961926e-06,1.420983034625659937e-06,1.488648893417357949e-06,1.556314752209055961e-06,1.623980611000753972e-06,1.691646469792451984e-06,1.759312328584149995e-06,1.826978187375848007e-06,1.894644046167546018e-06,1.962309904959243818e-06,2.029975763750941618e-06,2.097641622542639418e-06,2.165307481334337218e-06,2.232973340126035018e-06,2.300639198917732817e-06,2.368305057709430617e-06,2.435970916501128417e-06,2.503636775292826217e-06,2.571302634084524017e-06,2.638968492876221817e-06,2.706634351667919616e-06,2.774300210459617416e-06,2.841966069251315216e-06,2.909631928043013016e-06,2.977297786834710816e-06,3.044963645626408615e-06,3.112629504418106415e-06,3.180295363209804215e-06,3.247961222001502015e-06,3.315627080793199815e-06,3.383292939584897615e-06,3.450958798376595414e-06,3.518624657168293214e-06,3.586290515959991014e-06,3.653956374751688814e-06,3.721622233543386614e-06,3.789288092335084414e-06,3.856953951126782213e-06,3.924619809918480013e-06,3.992285668710177813e-06,4.059951527501875613e-06,4.127617386293573413e-06,4.195283245085271213e-06,4.262949103876969012e-06 +0.000000000000000000e+00,7.059455649290456092e-08,1.411891129858091218e-07,2.117836694787136695e-07,2.823782259716181908e-07,3.529727824645227120e-07,4.235673389574272332e-07,4.941618954503317544e-07,5.647564519432362756e-07,6.353510084361407969e-07,7.059455649290453181e-07,7.765401214219498393e-07,8.471346779148543605e-07,9.177292344077588817e-07,9.883237909006632971e-07,1.058918347393567818e-06,1.129512903886472340e-06,1.200107460379376861e-06,1.270702016872281382e-06,1.341296573365185903e-06,1.411891129858090424e-06,1.482485686350994946e-06,1.553080242843899467e-06,1.623674799336803988e-06,1.694269355829708509e-06,1.764863912322613030e-06,1.835458468815517552e-06,1.906053025308422073e-06,1.976647581801326594e-06,2.047242138294231115e-06,2.117836694787135637e-06,2.188431251280040158e-06,2.259025807772944679e-06,2.329620364265849200e-06,2.400214920758753721e-06,2.470809477251658243e-06,2.541404033744562764e-06,2.611998590237467285e-06,2.682593146730371806e-06,2.753187703223276328e-06,2.823782259716180849e-06,2.894376816209085370e-06,2.964971372701989891e-06,3.035565929194894412e-06,3.106160485687798934e-06,3.176755042180703455e-06,3.247349598673607976e-06,3.317944155166512497e-06,3.388538711659417019e-06,3.459133268152321540e-06,3.529727824645226061e-06,3.600322381138130582e-06,3.670916937631035103e-06,3.741511494123939625e-06,3.812106050616844146e-06,3.882700607109748667e-06,3.953295163602653188e-06,4.023889720095557710e-06,4.094484276588462231e-06,4.165078833081366752e-06,4.235673389574271273e-06,4.306267946067175794e-06,4.376862502560080316e-06,4.447457059052984837e-06 +0.000000000000000000e+00,7.113465335541173574e-08,1.422693067108234715e-07,2.134039600662352072e-07,2.845386134216469430e-07,3.556732667770586522e-07,4.268079201324703615e-07,4.979425734878820708e-07,5.690772268432937801e-07,6.402118801987054893e-07,7.113465335541171986e-07,7.824811869095289079e-07,8.536158402649406172e-07,9.247504936203523264e-07,9.958851469757639298e-07,1.067019800331175427e-06,1.138154453686586925e-06,1.209289107041998422e-06,1.280423760397409920e-06,1.351558413752821417e-06,1.422693067108232915e-06,1.493827720463644412e-06,1.564962373819055910e-06,1.636097027174467407e-06,1.707231680529878905e-06,1.778366333885290402e-06,1.849500987240701900e-06,1.920635640596113398e-06,1.991770293951524895e-06,2.062904947306936393e-06,2.134039600662347890e-06,2.205174254017759388e-06,2.276308907373170885e-06,2.347443560728582383e-06,2.418578214083993880e-06,2.489712867439405378e-06,2.560847520794816875e-06,2.631982174150228373e-06,2.703116827505639870e-06,2.774251480861051368e-06,2.845386134216462865e-06,2.916520787571874363e-06,2.987655440927285860e-06,3.058790094282697358e-06,3.129924747638108855e-06,3.201059400993520353e-06,3.272194054348931850e-06,3.343328707704343348e-06,3.414463361059754845e-06,3.485598014415166343e-06,3.556732667770577840e-06,3.627867321125989338e-06,3.699001974481400835e-06,3.770136627836812333e-06,3.841271281192223407e-06,3.912405934547634481e-06,3.983540587903045555e-06,4.054675241258456629e-06,4.125809894613867703e-06,4.196944547969278777e-06,4.268079201324689851e-06,4.339213854680100925e-06,4.410348508035511999e-06,4.481483161390923073e-06 +0.000000000000000000e+00,6.606059624657192821e-08,1.321211924931438564e-07,1.981817887397157979e-07,2.642423849862877658e-07,3.303029812328597337e-07,3.963635774794317016e-07,4.624241737260036695e-07,5.284847699725756374e-07,5.945453662191475524e-07,6.606059624657194673e-07,7.266665587122913823e-07,7.927271549588632973e-07,8.587877512054352123e-07,9.248483474520071272e-07,9.909089436985790422e-07,1.056969539945151063e-06,1.123030136191723084e-06,1.189090732438295105e-06,1.255151328684867126e-06,1.321211924931439146e-06,1.387272521178011167e-06,1.453333117424583188e-06,1.519393713671155209e-06,1.585454309917727230e-06,1.651514906164299251e-06,1.717575502410871272e-06,1.783636098657443292e-06,1.849696694904015313e-06,1.915757291150587334e-06,1.981817887397159355e-06,2.047878483643731376e-06,2.113939079890303397e-06,2.179999676136875417e-06,2.246060272383447438e-06,2.312120868630019459e-06,2.378181464876591480e-06,2.444242061123163501e-06,2.510302657369735522e-06,2.576363253616307543e-06,2.642423849862879563e-06,2.708484446109451584e-06,2.774545042356023605e-06,2.840605638602595626e-06,2.906666234849167647e-06,2.972726831095739668e-06,3.038787427342311689e-06,3.104848023588883709e-06,3.170908619835455730e-06,3.236969216082027751e-06,3.303029812328599772e-06,3.369090408575171793e-06,3.435151004821743814e-06,3.501211601068315834e-06,3.567272197314887855e-06,3.633332793561459876e-06,3.699393389808031897e-06,3.765453986054603918e-06,3.831514582301175515e-06,3.897575178547746689e-06,3.963635774794317863e-06,4.029696371040889037e-06,4.095756967287460210e-06,4.161817563534031384e-06 +0.000000000000000000e+00,7.059455649291127101e-08,1.411891129858225420e-07,2.117836694787338130e-07,2.823782259716450841e-07,3.529727824645563815e-07,4.235673389574676790e-07,4.941618954503789765e-07,5.647564519432902740e-07,6.353510084362015715e-07,7.059455649291128690e-07,7.765401214220241664e-07,8.471346779149354639e-07,9.177292344078467614e-07,9.883237909007581648e-07,1.058918347393669462e-06,1.129512903886580760e-06,1.200107460379492057e-06,1.270702016872403355e-06,1.341296573365314652e-06,1.411891129858225950e-06,1.482485686351137247e-06,1.553080242844048545e-06,1.623674799336959842e-06,1.694269355829871140e-06,1.764863912322782437e-06,1.835458468815693735e-06,1.906053025308605032e-06,1.976647581801516330e-06,2.047242138294427627e-06,2.117836694787338924e-06,2.188431251280250222e-06,2.259025807773161519e-06,2.329620364266072817e-06,2.400214920758984114e-06,2.470809477251895412e-06,2.541404033744806709e-06,2.611998590237718007e-06,2.682593146730629304e-06,2.753187703223540602e-06,2.823782259716451899e-06,2.894376816209363197e-06,2.964971372702274494e-06,3.035565929195185792e-06,3.106160485688097089e-06,3.176755042181008387e-06,3.247349598673919684e-06,3.317944155166830982e-06,3.388538711659742279e-06,3.459133268152653577e-06,3.529727824645564874e-06,3.600322381138476172e-06,3.670916937631387469e-06,3.741511494124298767e-06,3.812106050617210064e-06,3.882700607110121362e-06,3.953295163603032659e-06,4.023889720095943957e-06,4.094484276588855254e-06,4.165078833081766551e-06,4.235673389574677849e-06,4.306267946067589146e-06,4.376862502560500444e-06,4.447457059053411741e-06 +0.000000000000000000e+00,7.113465335541795614e-08,1.422693067108359123e-07,2.134039600662538684e-07,2.845386134216718246e-07,3.556732667770897807e-07,4.268079201325077368e-07,4.979425734879256930e-07,5.690772268433436491e-07,6.402118801987616053e-07,7.113465335541795614e-07,7.824811869095975176e-07,8.536158402650154737e-07,9.247504936204334298e-07,9.958851469758513860e-07,1.067019800331269448e-06,1.138154453686687510e-06,1.209289107042105572e-06,1.280423760397523634e-06,1.351558413752941696e-06,1.422693067108359758e-06,1.493827720463777820e-06,1.564962373819195882e-06,1.636097027174613944e-06,1.707231680530032006e-06,1.778366333885450068e-06,1.849500987240868130e-06,1.920635640596286192e-06,1.991770293951704042e-06,2.062904947307121893e-06,2.134039600662539743e-06,2.205174254017957593e-06,2.276308907373375444e-06,2.347443560728793294e-06,2.418578214084211144e-06,2.489712867439628994e-06,2.560847520795046845e-06,2.631982174150464695e-06,2.703116827505882545e-06,2.774251480861300395e-06,2.845386134216718246e-06,2.916520787572136096e-06,2.987655440927553946e-06,3.058790094282971796e-06,3.129924747638389647e-06,3.201059400993807497e-06,3.272194054349225347e-06,3.343328707704643197e-06,3.414463361060061048e-06,3.485598014415478898e-06,3.556732667770896748e-06,3.627867321126314599e-06,3.699001974481732449e-06,3.770136627837150299e-06,3.841271281192568149e-06,3.912405934547986000e-06,3.983540587903403850e-06,4.054675241258821700e-06,4.125809894614239550e-06,4.196944547969657401e-06,4.268079201325075251e-06,4.339213854680493101e-06,4.410348508035910951e-06,4.481483161391328802e-06 +0.000000000000000000e+00,6.606059624657818831e-08,1.321211924931563766e-07,1.981817887397345649e-07,2.642423849863127532e-07,3.303029812328909151e-07,3.963635774794690769e-07,4.624241737260472388e-07,5.284847699726254006e-07,5.945453662192035624e-07,6.606059624657817243e-07,7.266665587123598861e-07,7.927271549589380479e-07,8.587877512055162098e-07,9.248483474520943716e-07,9.909089436986726393e-07,1.056969539945251013e-06,1.123030136191829387e-06,1.189090732438407760e-06,1.255151328684986134e-06,1.321211924931564507e-06,1.387272521178142881e-06,1.453333117424721255e-06,1.519393713671299628e-06,1.585454309917878002e-06,1.651514906164456375e-06,1.717575502411034749e-06,1.783636098657613123e-06,1.849696694904191496e-06,1.915757291150769870e-06,1.981817887397348243e-06,2.047878483643926617e-06,2.113939079890504990e-06,2.179999676137083364e-06,2.246060272383661738e-06,2.312120868630240111e-06,2.378181464876818485e-06,2.444242061123396858e-06,2.510302657369975232e-06,2.576363253616553606e-06,2.642423849863131979e-06,2.708484446109710353e-06,2.774545042356288726e-06,2.840605638602867100e-06,2.906666234849445474e-06,2.972726831096023847e-06,3.038787427342602221e-06,3.104848023589180594e-06,3.170908619835758968e-06,3.236969216082337342e-06,3.303029812328915715e-06,3.369090408575494089e-06,3.435151004822072462e-06,3.501211601068650836e-06,3.567272197315229210e-06,3.633332793561807583e-06,3.699393389808385957e-06,3.765453986054964330e-06,3.831514582301543128e-06,3.897575178548121925e-06,3.963635774794700722e-06,4.029696371041279519e-06,4.095756967287858316e-06,4.161817563534437113e-06 +0.000000000000000000e+00,6.952925441091849470e-08,1.390585088218369894e-07,2.085877632327554709e-07,2.781170176436739258e-07,3.476462720545923808e-07,4.171755264655108358e-07,4.867047808764293438e-07,5.562340352873478517e-07,6.257632896982663596e-07,6.952925441091848676e-07,7.648217985201033755e-07,8.343510529310218834e-07,9.038803073419403914e-07,9.734095617528588993e-07,1.042938816163777407e-06,1.112468070574695915e-06,1.181997324985614423e-06,1.251526579396532931e-06,1.321055833807451439e-06,1.390585088218369947e-06,1.460114342629288455e-06,1.529643597040206963e-06,1.599172851451125471e-06,1.668702105862043979e-06,1.738231360272962487e-06,1.807760614683880994e-06,1.877289869094799502e-06,1.946819123505718222e-06,2.016348377916637154e-06,2.085877632327556085e-06,2.155406886738475016e-06,2.224936141149393948e-06,2.294465395560312879e-06,2.363994649971231811e-06,2.433523904382150742e-06,2.503053158793069674e-06,2.572582413203988605e-06,2.642111667614907537e-06,2.711640922025826468e-06,2.781170176436745399e-06,2.850699430847664331e-06,2.920228685258583262e-06,2.989757939669502194e-06,3.059287194080421125e-06,3.128816448491340057e-06,3.198345702902258988e-06,3.267874957313177920e-06,3.337404211724096851e-06,3.406933466135015782e-06,3.476462720545934714e-06,3.545991974956853645e-06,3.615521229367772577e-06,3.685050483778691508e-06,3.754579738189610440e-06,3.824108992600529371e-06,3.893638247011448303e-06,3.963167501422367234e-06,4.032696755833286166e-06,4.102226010244205097e-06,4.171755264655124028e-06,4.241284519066042960e-06,4.310813773476961891e-06,4.380343027887880823e-06 +0.000000000000000000e+00,7.005431477205823687e-08,1.401086295441164737e-07,2.101629443161746974e-07,2.802172590882328946e-07,3.502715738602910917e-07,4.203258886323492889e-07,4.903802034044074861e-07,5.604345181764656832e-07,6.304888329485238804e-07,7.005431477205820776e-07,7.705974624926402747e-07,8.406517772646984719e-07,9.107060920367566691e-07,9.807604068088149721e-07,1.050814721580873275e-06,1.120869036352931578e-06,1.190923351124989881e-06,1.260977665897048184e-06,1.331031980669106487e-06,1.401086295441164790e-06,1.471140610213223093e-06,1.541194924985281396e-06,1.611249239757339700e-06,1.681303554529398003e-06,1.751357869301456306e-06,1.821412184073514609e-06,1.891466498845572912e-06,1.961520813617631215e-06,2.031575128389689518e-06,2.101629443161747821e-06,2.171683757933806124e-06,2.241738072705864427e-06,2.311792387477922730e-06,2.381846702249981033e-06,2.451901017022039336e-06,2.521955331794097639e-06,2.592009646566155942e-06,2.662063961338214245e-06,2.732118276110272548e-06,2.802172590882330851e-06,2.872226905654389154e-06,2.942281220426447457e-06,3.012335535198505760e-06,3.082389849970564064e-06,3.152444164742622367e-06,3.222498479514680670e-06,3.292552794286738973e-06,3.362607109058797276e-06,3.432661423830855579e-06,3.502715738602913882e-06,3.572770053374972185e-06,3.642824368147030488e-06,3.712878682919088791e-06,3.782932997691147094e-06,3.852987312463204974e-06,3.923041627235263277e-06,3.993095942007321580e-06,4.063150256779379883e-06,4.133204571551438186e-06,4.203258886323496489e-06,4.273313201095554792e-06,4.343367515867613095e-06,4.413421830639671398e-06 +0.000000000000000000e+00,6.445486749864900849e-08,1.289097349972980170e-07,1.933646024959470255e-07,2.578194699945960340e-07,3.222743374932450160e-07,3.867292049918939980e-07,4.511840724905429800e-07,5.156389399891919620e-07,5.800938074878409441e-07,6.445486749864899261e-07,7.090035424851389081e-07,7.734584099837878901e-07,8.379132774824368722e-07,9.023681449810858542e-07,9.668230124797347303e-07,1.031277879978383712e-06,1.095732747477032694e-06,1.160187614975681676e-06,1.224642482474330658e-06,1.289097349972979640e-06,1.353552217471628622e-06,1.418007084970277604e-06,1.482461952468926586e-06,1.546916819967575569e-06,1.611371687466224551e-06,1.675826554964873533e-06,1.740281422463522515e-06,1.804736289962171497e-06,1.869191157460820479e-06,1.933646024959469461e-06,1.998100892458118443e-06,2.062555759956767425e-06,2.127010627455416407e-06,2.191465494954065389e-06,2.255920362452714371e-06,2.320375229951363353e-06,2.384830097450012335e-06,2.449284964948661317e-06,2.513739832447310299e-06,2.578194699945959281e-06,2.642649567444608263e-06,2.707104434943257245e-06,2.771559302441906227e-06,2.836014169940555209e-06,2.900469037439204191e-06,2.964923904937853173e-06,3.029378772436502155e-06,3.093833639935151137e-06,3.158288507433800119e-06,3.222743374932449101e-06,3.287198242431098083e-06,3.351653109929747065e-06,3.416107977428396047e-06,3.480562844927045029e-06,3.545017712425694011e-06,3.609472579924342993e-06,3.673927447422991975e-06,3.738382314921640957e-06,3.802837182420289939e-06,3.867292049918938921e-06,3.931746917417587903e-06,3.996201784916236885e-06,4.060656652414885867e-06 +0.000000000000000000e+00,6.952925441092463569e-08,1.390585088218492714e-07,2.085877632327738938e-07,2.781170176436984898e-07,3.476462720546230858e-07,4.171755264655476818e-07,4.867047808764723307e-07,5.562340352873969796e-07,6.257632896983216285e-07,6.952925441092462774e-07,7.648217985201709264e-07,8.343510529310955753e-07,9.038803073420202242e-07,9.734095617529448731e-07,1.042938816163869522e-06,1.112468070574794171e-06,1.181997324985718820e-06,1.251526579396643469e-06,1.321055833807568118e-06,1.390585088218492767e-06,1.460114342629417416e-06,1.529643597040342064e-06,1.599172851451266713e-06,1.668702105862191362e-06,1.738231360273116011e-06,1.807760614684040660e-06,1.877289869094965309e-06,1.946819123505890170e-06,2.016348377916815030e-06,2.085877632327739891e-06,2.155406886738664752e-06,2.224936141149589612e-06,2.294465395560514473e-06,2.363994649971439334e-06,2.433523904382364195e-06,2.503053158793289055e-06,2.572582413204213916e-06,2.642111667615138777e-06,2.711640922026063637e-06,2.781170176436988498e-06,2.850699430847913359e-06,2.920228685258838219e-06,2.989757939669763080e-06,3.059287194080687941e-06,3.128816448491612801e-06,3.198345702902537662e-06,3.267874957313462523e-06,3.337404211724387383e-06,3.406933466135312244e-06,3.476462720546237105e-06,3.545991974957161965e-06,3.615521229368086826e-06,3.685050483779011687e-06,3.754579738189936547e-06,3.824108992600861408e-06,3.893638247011786269e-06,3.963167501422711129e-06,4.032696755833635990e-06,4.102226010244560851e-06,4.171755264655485711e-06,4.241284519066410572e-06,4.310813773477335433e-06,4.380343027888260294e-06 +0.000000000000000000e+00,7.005431477206443080e-08,1.401086295441288616e-07,2.101629443161932792e-07,2.802172590882576703e-07,3.502715738603220614e-07,4.203258886323864525e-07,4.903802034044508965e-07,5.604345181765153405e-07,6.304888329485797846e-07,7.005431477206442286e-07,7.705974624927086726e-07,8.406517772647731167e-07,9.107060920368375607e-07,9.807604068089020047e-07,1.050814721580966449e-06,1.120869036353030893e-06,1.190923351125095337e-06,1.260977665897159781e-06,1.331031980669224225e-06,1.401086295441288669e-06,1.471140610213353113e-06,1.541194924985417557e-06,1.611249239757482001e-06,1.681303554529546445e-06,1.751357869301610889e-06,1.821412184073675333e-06,1.891466498845739777e-06,1.961520813617804433e-06,2.031575128389869089e-06,2.101629443161933745e-06,2.171683757933998400e-06,2.241738072706063056e-06,2.311792387478127712e-06,2.381846702250192368e-06,2.451901017022257024e-06,2.521955331794321679e-06,2.592009646566386335e-06,2.662063961338450991e-06,2.732118276110515647e-06,2.802172590882580303e-06,2.872226905654644958e-06,2.942281220426709614e-06,3.012335535198774270e-06,3.082389849970838926e-06,3.152444164742903582e-06,3.222498479514968237e-06,3.292552794287032893e-06,3.362607109059097549e-06,3.432661423831162205e-06,3.502715738603226860e-06,3.572770053375291516e-06,3.642824368147356172e-06,3.712878682919420828e-06,3.782932997691485484e-06,3.852987312463550563e-06,3.923041627235615642e-06,3.993095942007680722e-06,4.063150256779745801e-06,4.133204571551810880e-06,4.203258886323875960e-06,4.273313201095941039e-06,4.343367515868006118e-06,4.413421830640071197e-06 +0.000000000000000000e+00,6.445486749865552006e-08,1.289097349973110401e-07,1.933646024959665602e-07,2.578194699946220802e-07,3.222743374932776268e-07,3.867292049919331733e-07,4.511840724905887198e-07,5.156389399892442663e-07,5.800938074878998129e-07,6.445486749865553594e-07,7.090035424852109059e-07,7.734584099838664524e-07,8.379132774825219990e-07,9.023681449811775455e-07,9.668230124798329861e-07,1.031277879978488321e-06,1.095732747477143656e-06,1.160187614975798990e-06,1.224642482474454325e-06,1.289097349973109660e-06,1.353552217471764995e-06,1.418007084970420330e-06,1.482461952469075664e-06,1.546916819967730999e-06,1.611371687466386334e-06,1.675826554965041669e-06,1.740281422463697003e-06,1.804736289962352338e-06,1.869191157461007673e-06,1.933646024959663008e-06,1.998100892458318342e-06,2.062555759956973677e-06,2.127010627455629012e-06,2.191465494954284347e-06,2.255920362452939682e-06,2.320375229951595016e-06,2.384830097450250351e-06,2.449284964948905686e-06,2.513739832447561021e-06,2.578194699946216355e-06,2.642649567444871690e-06,2.707104434943527025e-06,2.771559302442182360e-06,2.836014169940837694e-06,2.900469037439493029e-06,2.964923904938148364e-06,3.029378772436803699e-06,3.093833639935459033e-06,3.158288507434114368e-06,3.222743374932769703e-06,3.287198242431425038e-06,3.351653109930080373e-06,3.416107977428735707e-06,3.480562844927391042e-06,3.545017712426046377e-06,3.609472579924701712e-06,3.673927447423357046e-06,3.738382314922012381e-06,3.802837182420667716e-06,3.867292049919323474e-06,3.931746917417979233e-06,3.996201784916634991e-06,4.060656652415290749e-06 +0.000000000000000000e+00,6.858155517246310656e-08,1.371631103449262131e-07,2.057446655173893197e-07,2.743262206898524262e-07,3.429077758623155063e-07,4.114893310347785864e-07,4.800708862072416665e-07,5.486524413797047466e-07,6.172339965521678267e-07,6.858155517246309068e-07,7.543971068970939869e-07,8.229786620695570670e-07,8.915602172420201470e-07,9.601417724144831213e-07,1.028723327586945990e-06,1.097304882759408858e-06,1.165886437931871726e-06,1.234467993104334595e-06,1.303049548276797463e-06,1.371631103449260331e-06,1.440212658621723200e-06,1.508794213794186068e-06,1.577375768966648936e-06,1.645957324139111805e-06,1.714538879311574673e-06,1.783120434484037541e-06,1.851701989656500410e-06,1.920283544828963278e-06,1.988865100001426146e-06,2.057446655173889015e-06,2.126028210346351883e-06,2.194609765518814751e-06,2.263191320691277620e-06,2.331772875863740488e-06,2.400354431036203356e-06,2.468935986208666225e-06,2.537517541381129093e-06,2.606099096553591961e-06,2.674680651726054830e-06,2.743262206898517698e-06,2.811843762070980566e-06,2.880425317243443435e-06,2.949006872415906303e-06,3.017588427588369171e-06,3.086169982760832040e-06,3.154751537933294908e-06,3.223333093105757776e-06,3.291914648278220645e-06,3.360496203450683513e-06,3.429077758623146381e-06,3.497659313795609250e-06,3.566240868968072118e-06,3.634822424140534986e-06,3.703403979312997854e-06,3.771985534485460723e-06,3.840567089657924015e-06,3.909148644830387307e-06,3.977730200002850598e-06,4.046311755175313890e-06,4.114893310347777182e-06,4.183474865520240474e-06,4.252056420692703766e-06,4.320637975865167058e-06 +0.000000000000000000e+00,6.903141786251168866e-08,1.380628357250233773e-07,2.070942535875350660e-07,2.761256714500467546e-07,3.451570893125584168e-07,4.141885071750700790e-07,4.832199250375817412e-07,5.522513429000934034e-07,6.212827607626050656e-07,6.903141786251167278e-07,7.593455964876283900e-07,8.283770143501400522e-07,8.974084322126517144e-07,9.664398500751632707e-07,1.035471267937674933e-06,1.104502685800186595e-06,1.173534103662698257e-06,1.242565521525209919e-06,1.311596939387721582e-06,1.380628357250233244e-06,1.449659775112744906e-06,1.518691192975256568e-06,1.587722610837768230e-06,1.656754028700279893e-06,1.725785446562791555e-06,1.794816864425303217e-06,1.863848282287814879e-06,1.932879700150326541e-06,2.001911118012838204e-06,2.070942535875349866e-06,2.139973953737861528e-06,2.209005371600373190e-06,2.278036789462884852e-06,2.347068207325396514e-06,2.416099625187908177e-06,2.485131043050419839e-06,2.554162460912931501e-06,2.623193878775443163e-06,2.692225296637954825e-06,2.761256714500466488e-06,2.830288132362978150e-06,2.899319550225489812e-06,2.968350968088001474e-06,3.037382385950513136e-06,3.106413803813024799e-06,3.175445221675536461e-06,3.244476639538048123e-06,3.313508057400559785e-06,3.382539475263071447e-06,3.451570893125583110e-06,3.520602310988094772e-06,3.589633728850606434e-06,3.658665146713118096e-06,3.727696564575629758e-06,3.796727982438141420e-06,3.865759400300653083e-06,3.934790818163165168e-06,4.003822236025677254e-06,4.072853653888189340e-06,4.141885071750701425e-06,4.210916489613213511e-06,4.279947907475725597e-06,4.348979325338237683e-06 +0.000000000000000000e+00,6.300302027978504580e-08,1.260060405595700916e-07,1.890090608393551242e-07,2.520120811191401303e-07,3.150151013989251364e-07,3.780181216787101425e-07,4.410211419584951486e-07,5.040241622382801547e-07,5.670271825180652137e-07,6.300302027978502727e-07,6.930332230776353318e-07,7.560362433574203908e-07,8.190392636372054499e-07,8.820422839169905089e-07,9.450453041967755679e-07,1.008048324476560521e-06,1.071051344756345474e-06,1.134054365036130427e-06,1.197057385315915381e-06,1.260060405595700334e-06,1.323063425875485287e-06,1.386066446155270240e-06,1.449069466435055193e-06,1.512072486714840146e-06,1.575075506994625100e-06,1.638078527274410053e-06,1.701081547554195006e-06,1.764084567833979959e-06,1.827087588113764912e-06,1.890090608393549865e-06,1.953093628673334607e-06,2.016096648953119348e-06,2.079099669232904090e-06,2.142102689512688831e-06,2.205105709792473572e-06,2.268108730072258314e-06,2.331111750352043055e-06,2.394114770631827797e-06,2.457117790911612538e-06,2.520120811191397279e-06,2.583123831471182021e-06,2.646126851750966762e-06,2.709129872030751504e-06,2.772132892310536245e-06,2.835135912590320986e-06,2.898138932870105728e-06,2.961141953149890469e-06,3.024144973429675211e-06,3.087147993709459952e-06,3.150151013989244693e-06,3.213154034269029435e-06,3.276157054548814176e-06,3.339160074828598918e-06,3.402163095108383659e-06,3.465166115388168400e-06,3.528169135667953142e-06,3.591172155947737883e-06,3.654175176227522625e-06,3.717178196507307366e-06,3.780181216787092107e-06,3.843184237066876849e-06,3.906187257346661590e-06,3.969190277626446332e-06 +0.000000000000000000e+00,6.858155517246910196e-08,1.371631103449382039e-07,2.057446655174072927e-07,2.743262206898763549e-07,3.429077758623454172e-07,4.114893310348144794e-07,4.800708862072834888e-07,5.486524413797524981e-07,6.172339965522215074e-07,6.858155517246905167e-07,7.543971068971595260e-07,8.229786620696285354e-07,8.915602172420975447e-07,9.601417724145665540e-07,1.028723327587035563e-06,1.097304882759504573e-06,1.165886437931973582e-06,1.234467993104442591e-06,1.303049548276911601e-06,1.371631103449380610e-06,1.440212658621849619e-06,1.508794213794318629e-06,1.577375768966787638e-06,1.645957324139256647e-06,1.714538879311725657e-06,1.783120434484194666e-06,1.851701989656663675e-06,1.920283544829132684e-06,1.988865100001601482e-06,2.057446655174070280e-06,2.126028210346539077e-06,2.194609765519007875e-06,2.263191320691476672e-06,2.331772875863945470e-06,2.400354431036414267e-06,2.468935986208883065e-06,2.537517541381351863e-06,2.606099096553820660e-06,2.674680651726289458e-06,2.743262206898758255e-06,2.811843762071227053e-06,2.880425317243695850e-06,2.949006872416164648e-06,3.017588427588633445e-06,3.086169982761102243e-06,3.154751537933571041e-06,3.223333093106039838e-06,3.291914648278508636e-06,3.360496203450977433e-06,3.429077758623446231e-06,3.497659313795915028e-06,3.566240868968383826e-06,3.634822424140852624e-06,3.703403979313321421e-06,3.771985534485790219e-06,3.840567089658259440e-06,3.909148644830728661e-06,3.977730200003197882e-06,4.046311755175667103e-06,4.114893310348136324e-06,4.183474865520605545e-06,4.252056420693074766e-06,4.320637975865543987e-06 +0.000000000000000000e+00,6.903141786251794876e-08,1.380628357250358975e-07,2.070942535875538331e-07,2.761256714500717421e-07,3.451570893125896512e-07,4.141885071751075602e-07,4.832199250376254693e-07,5.522513429001433783e-07,6.212827607626612874e-07,6.903141786251791965e-07,7.593455964876971055e-07,8.283770143502150146e-07,8.974084322127329236e-07,9.664398500752509386e-07,1.035471267937768954e-06,1.104502685800286968e-06,1.173534103662804983e-06,1.242565521525322998e-06,1.311596939387841013e-06,1.380628357250359028e-06,1.449659775112877043e-06,1.518691192975395058e-06,1.587722610837913073e-06,1.656754028700431088e-06,1.725785446562949103e-06,1.794816864425467118e-06,1.863848282287985133e-06,1.932879700150503148e-06,2.001911118013021163e-06,2.070942535875539178e-06,2.139973953738057193e-06,2.209005371600575207e-06,2.278036789463093222e-06,2.347068207325611237e-06,2.416099625188129252e-06,2.485131043050647267e-06,2.554162460913165282e-06,2.623193878775683297e-06,2.692225296638201312e-06,2.761256714500719327e-06,2.830288132363237342e-06,2.899319550225755357e-06,2.968350968088273372e-06,3.037382385950791387e-06,3.106413803813309402e-06,3.175445221675827417e-06,3.244476639538345432e-06,3.313508057400863446e-06,3.382539475263381461e-06,3.451570893125899476e-06,3.520602310988417491e-06,3.589633728850935506e-06,3.658665146713453521e-06,3.727696564575971536e-06,3.796727982438489551e-06,3.865759400301007142e-06,3.934790818163524310e-06,4.003822236026041478e-06,4.072853653888558646e-06,4.141885071751075814e-06,4.210916489613592982e-06,4.279947907476110150e-06,4.348979325338627318e-06 +0.000000000000000000e+00,6.300302027979182207e-08,1.260060405595836441e-07,1.890090608393754530e-07,2.520120811191672353e-07,3.150151013989590177e-07,3.780181216787508001e-07,4.410211419585425824e-07,5.040241622383343648e-07,5.670271825181262001e-07,6.300302027979180354e-07,6.930332230777098707e-07,7.560362433575017060e-07,8.190392636372935413e-07,8.820422839170853766e-07,9.450453041968772119e-07,1.008048324476668941e-06,1.071051344756460671e-06,1.134054365036252400e-06,1.197057385316044130e-06,1.260060405595835859e-06,1.323063425875627588e-06,1.386066446155419318e-06,1.449069466435211047e-06,1.512072486715002777e-06,1.575075506994794506e-06,1.638078527274586236e-06,1.701081547554377965e-06,1.764084567834169694e-06,1.827087588113961424e-06,1.890090608393753153e-06,1.953093628673544671e-06,2.016096648953336189e-06,2.079099669233127706e-06,2.142102689512919224e-06,2.205105709792710742e-06,2.268108730072502259e-06,2.331111750352293777e-06,2.394114770632085295e-06,2.457117790911876812e-06,2.520120811191668330e-06,2.583123831471459848e-06,2.646126851751251365e-06,2.709129872031042883e-06,2.772132892310834401e-06,2.835135912590625918e-06,2.898138932870417436e-06,2.961141953150208954e-06,3.024144973430000471e-06,3.087147993709791989e-06,3.150151013989583507e-06,3.213154034269375024e-06,3.276157054549166542e-06,3.339160074828958059e-06,3.402163095108749577e-06,3.465166115388541095e-06,3.528169135668332612e-06,3.591172155948124130e-06,3.654175176227915648e-06,3.717178196507707165e-06,3.780181216787498683e-06,3.843184237067290201e-06,3.906187257347081718e-06,3.969190277626873236e-06 +0.000000000000000000e+00,6.789347254214915812e-08,1.357869450842983162e-07,2.036804176264474744e-07,2.715738901685966325e-07,3.394673627107457906e-07,4.073608352528949487e-07,4.752543077950441069e-07,5.431477803371932650e-07,6.110412528793424760e-07,6.789347254214916871e-07,7.468281979636408982e-07,8.147216705057901092e-07,8.826151430479393203e-07,9.505086155900885314e-07,1.018402088132237742e-06,1.086295560674386953e-06,1.154189033216536165e-06,1.222082505758685376e-06,1.289975978300834587e-06,1.357869450842983798e-06,1.425762923385133009e-06,1.493656395927282220e-06,1.561549868469431431e-06,1.629443341011580642e-06,1.697336813553729853e-06,1.765230286095879064e-06,1.833123758638028275e-06,1.901017231180177486e-06,1.968910703722326697e-06,2.036804176264475908e-06,2.104697648806625119e-06,2.172591121348774330e-06,2.240484593890923542e-06,2.308378066433072753e-06,2.376271538975221964e-06,2.444165011517371175e-06,2.512058484059520386e-06,2.579951956601669597e-06,2.647845429143818808e-06,2.715738901685968019e-06,2.783632374228117230e-06,2.851525846770266441e-06,2.919419319312415652e-06,2.987312791854564863e-06,3.055206264396714074e-06,3.123099736938863285e-06,3.190993209481012496e-06,3.258886682023161707e-06,3.326780154565310919e-06,3.394673627107460130e-06,3.462567099649609341e-06,3.530460572191758552e-06,3.598354044733907763e-06,3.666247517276056974e-06,3.734140989818206185e-06,3.802034462360355396e-06,3.869927934902504184e-06,3.937821407444652548e-06,4.005714879986800912e-06,4.073608352528949276e-06,4.141501825071097640e-06,4.209395297613246004e-06,4.277288770155394368e-06 +0.000000000000000000e+00,6.818934512963399542e-08,1.363786902592679908e-07,2.045680353889019995e-07,2.727573805185360346e-07,3.409467256481700697e-07,4.091360707778041048e-07,4.773254159074380870e-07,5.455147610370720692e-07,6.137041061667060514e-07,6.818934512963400336e-07,7.500827964259740158e-07,8.182721415556079979e-07,8.864614866852419801e-07,9.546508318148759623e-07,1.022840176944509944e-06,1.091029522074143927e-06,1.159218867203777909e-06,1.227408212333411891e-06,1.295597557463045873e-06,1.363786902592679855e-06,1.431976247722313838e-06,1.500165592851947820e-06,1.568354937981581802e-06,1.636544283111215784e-06,1.704733628240849766e-06,1.772922973370483748e-06,1.841112318500117731e-06,1.909301663629751501e-06,1.977491008759385060e-06,2.045680353889018618e-06,2.113869699018652177e-06,2.182059044148285736e-06,2.250248389277919294e-06,2.318437734407552853e-06,2.386627079537186412e-06,2.454816424666819970e-06,2.523005769796453529e-06,2.591195114926087088e-06,2.659384460055720646e-06,2.727573805185354205e-06,2.795763150314987764e-06,2.863952495444621322e-06,2.932141840574254881e-06,3.000331185703888440e-06,3.068520530833521998e-06,3.136709875963155557e-06,3.204899221092789116e-06,3.273088566222422674e-06,3.341277911352056233e-06,3.409467256481689792e-06,3.477656601611323350e-06,3.545845946740956909e-06,3.614035291870590468e-06,3.682224637000224026e-06,3.750413982129857585e-06,3.818603327259491144e-06,3.886792672389124702e-06,3.954982017518758261e-06,4.023171362648391820e-06,4.091360707778025378e-06,4.159550052907658937e-06,4.227739398037292496e-06,4.295928743166926054e-06 +0.000000000000000000e+00,6.185952244868804210e-08,1.237190448973760842e-07,1.855785673460641395e-07,2.474380897947522213e-07,3.092976122434403031e-07,3.711571346921283849e-07,4.330166571408164667e-07,4.948761795895045485e-07,5.567357020381926304e-07,6.185952244868807122e-07,6.804547469355687940e-07,7.423142693842568758e-07,8.041737918329449576e-07,8.660333142816330394e-07,9.278928367303211212e-07,9.897523591790093089e-07,1.051611881627697602e-06,1.113471404076385896e-06,1.175330926525074190e-06,1.237190448973762483e-06,1.299049971422450777e-06,1.360909493871139070e-06,1.422769016319827364e-06,1.484628538768515657e-06,1.546488061217203951e-06,1.608347583665892244e-06,1.670207106114580538e-06,1.732066628563268832e-06,1.793926151011957125e-06,1.855785673460645419e-06,1.917645195909333712e-06,1.979504718358022006e-06,2.041364240806710299e-06,2.103223763255398593e-06,2.165083285704086887e-06,2.226942808152775180e-06,2.288802330601463474e-06,2.350661853050151767e-06,2.412521375498840061e-06,2.474380897947528354e-06,2.536240420396216648e-06,2.598099942844904941e-06,2.659959465293593235e-06,2.721818987742281529e-06,2.783678510190969822e-06,2.845538032639658116e-06,2.907397555088346409e-06,2.969257077537034703e-06,3.031116599985722996e-06,3.092976122434411290e-06,3.154835644883099584e-06,3.216695167331787877e-06,3.278554689780476171e-06,3.340414212229164464e-06,3.402273734677852758e-06,3.464133257126541051e-06,3.525992779575229345e-06,3.587852302023917638e-06,3.649711824472605932e-06,3.711571346921294226e-06,3.773430869369982519e-06,3.835290391818670813e-06,3.897149914267359106e-06 +0.000000000000000000e+00,6.789347254215568292e-08,1.357869450843113658e-07,2.036804176264670620e-07,2.715738901686227846e-07,3.394673627107785073e-07,4.073608352529342299e-07,4.752543077950899525e-07,5.431477803372456751e-07,6.110412528794013448e-07,6.789347254215570145e-07,7.468281979637126842e-07,8.147216705058683539e-07,8.826151430480240236e-07,9.505086155901796933e-07,1.018402088132335363e-06,1.086295560674491139e-06,1.154189033216646914e-06,1.222082505758802690e-06,1.289975978300958465e-06,1.357869450843114241e-06,1.425762923385270016e-06,1.493656395927425792e-06,1.561549868469581568e-06,1.629443341011737343e-06,1.697336813553893119e-06,1.765230286096048894e-06,1.833123758638204670e-06,1.901017231180360445e-06,1.968910703722516009e-06,2.036804176264671573e-06,2.104697648806827137e-06,2.172591121348982701e-06,2.240484593891138264e-06,2.308378066433293828e-06,2.376271538975449392e-06,2.444165011517604956e-06,2.512058484059760520e-06,2.579951956601916083e-06,2.647845429144071647e-06,2.715738901686227211e-06,2.783632374228382775e-06,2.851525846770538339e-06,2.919419319312693902e-06,2.987312791854849466e-06,3.055206264397005030e-06,3.123099736939160594e-06,3.190993209481316158e-06,3.258886682023471722e-06,3.326780154565627285e-06,3.394673627107782849e-06,3.462567099649938413e-06,3.530460572192093977e-06,3.598354044734249541e-06,3.666247517276405104e-06,3.734140989818560668e-06,3.802034462360716232e-06,3.869927934902871796e-06,3.937821407445026936e-06,4.005714879987182076e-06,4.073608352529337217e-06,4.141501825071492357e-06,4.209395297613647497e-06,4.277288770155802638e-06 +0.000000000000000000e+00,6.818934512964046728e-08,1.363786902592809346e-07,2.045680353889214018e-07,2.727573805185618691e-07,3.409467256482023099e-07,4.091360707778427507e-07,4.773254159074831915e-07,5.455147610371236323e-07,6.137041061667640732e-07,6.818934512964045140e-07,7.500827964260449548e-07,8.182721415556853956e-07,8.864614866853258364e-07,9.546508318149663831e-07,1.022840176944606930e-06,1.091029522074247476e-06,1.159218867203888023e-06,1.227408212333528570e-06,1.295597557463169117e-06,1.363786902592809663e-06,1.431976247722450210e-06,1.500165592852090757e-06,1.568354937981731303e-06,1.636544283111371850e-06,1.704733628241012397e-06,1.772922973370652943e-06,1.841112318500293490e-06,1.909301663629934037e-06,1.977491008759574795e-06,2.045680353889215554e-06,2.113869699018856312e-06,2.182059044148497070e-06,2.250248389278137829e-06,2.318437734407778587e-06,2.386627079537419346e-06,2.454816424667060104e-06,2.523005769796700863e-06,2.591195114926341621e-06,2.659384460055982380e-06,2.727573805185623138e-06,2.795763150315263896e-06,2.863952495444904655e-06,2.932141840574545413e-06,3.000331185704186172e-06,3.068520530833826930e-06,3.136709875963467689e-06,3.204899221093108447e-06,3.273088566222749206e-06,3.341277911352389964e-06,3.409467256482030722e-06,3.477656601611671481e-06,3.545845946741312239e-06,3.614035291870952998e-06,3.682224637000593756e-06,3.750413982130234515e-06,3.818603327259875697e-06,3.886792672389516879e-06,3.954982017519158061e-06,4.023171362648799243e-06,4.091360707778440425e-06,4.159550052908081606e-06,4.227739398037722788e-06,4.295928743167363970e-06 +0.000000000000000000e+00,6.185952244869545364e-08,1.237190448973909073e-07,1.855785673460863741e-07,2.474380897947818675e-07,3.092976122434773608e-07,3.711571346921728542e-07,4.330166571408683475e-07,4.948761795895638409e-07,5.567357020382593342e-07,6.185952244869548275e-07,6.804547469356503209e-07,7.423142693843458142e-07,8.041737918330413076e-07,8.660333142817368009e-07,9.278928367304322942e-07,9.897523591791278935e-07,1.051611881627823387e-06,1.113471404076518880e-06,1.175330926525214373e-06,1.237190448973909867e-06,1.299049971422605360e-06,1.360909493871300854e-06,1.422769016319996347e-06,1.484628538768691840e-06,1.546488061217387334e-06,1.608347583666082827e-06,1.670207106114778320e-06,1.732066628563473814e-06,1.793926151012169307e-06,1.855785673460864800e-06,1.917645195909560294e-06,1.979504718358255787e-06,2.041364240806951280e-06,2.103223763255646774e-06,2.165083285704342267e-06,2.226942808153037760e-06,2.288802330601733254e-06,2.350661853050428747e-06,2.412521375499124240e-06,2.474380897947819734e-06,2.536240420396515227e-06,2.598099942845210720e-06,2.659959465293906214e-06,2.721818987742601707e-06,2.783678510191297200e-06,2.845538032639992694e-06,2.907397555088688187e-06,2.969257077537383680e-06,3.031116599986079174e-06,3.092976122434774667e-06,3.154835644883470160e-06,3.216695167332165654e-06,3.278554689780861147e-06,3.340414212229556640e-06,3.402273734678252134e-06,3.464133257126947627e-06,3.525992779575643120e-06,3.587852302024338614e-06,3.649711824473034107e-06,3.711571346921729600e-06,3.773430869370425094e-06,3.835290391819120587e-06,3.897149914267816504e-06 +0.000000000000000000e+00,6.769509935965310122e-08,1.353901987193062024e-07,2.030852980789592904e-07,2.707803974386123519e-07,3.384754967982654135e-07,4.061705961579184750e-07,4.738656955175715365e-07,5.415607948772245980e-07,6.092558942368776595e-07,6.769509935965307210e-07,7.446460929561837826e-07,8.123411923158368441e-07,8.800362916754899056e-07,9.477313910351429671e-07,1.015426490394795923e-06,1.083121589754448984e-06,1.150816689114102046e-06,1.218511788473755107e-06,1.286206887833408169e-06,1.353901987193061230e-06,1.421597086552714292e-06,1.489292185912367353e-06,1.556987285272020415e-06,1.624682384631673476e-06,1.692377483991326538e-06,1.760072583350979599e-06,1.827767682710632661e-06,1.895462782070285722e-06,1.963157881429938784e-06,2.030852980789591845e-06,2.098548080149244907e-06,2.166243179508897969e-06,2.233938278868551030e-06,2.301633378228204092e-06,2.369328477587857153e-06,2.437023576947510215e-06,2.504718676307163276e-06,2.572413775666816338e-06,2.640108875026469399e-06,2.707803974386122461e-06,2.775499073745775522e-06,2.843194173105428584e-06,2.910889272465081645e-06,2.978584371824734707e-06,3.046279471184387768e-06,3.113974570544040830e-06,3.181669669903693891e-06,3.249364769263346953e-06,3.317059868623000014e-06,3.384754967982653076e-06,3.452450067342306137e-06,3.520145166701959199e-06,3.587840266061612260e-06,3.655535365421265322e-06,3.723230464780918383e-06,3.790925564140571445e-06,3.858620663500224506e-06,3.926315762859877568e-06,3.994010862219530629e-06,4.061705961579183691e-06,4.129401060938836752e-06,4.197096160298489814e-06,4.264791259658142875e-06 +0.000000000000000000e+00,6.770164175797376017e-08,1.354032835159475203e-07,2.031049252739212805e-07,2.708065670318950407e-07,3.385082087898688009e-07,4.062098505478425610e-07,4.739114923058163212e-07,5.416131340637900814e-07,6.093147758217637886e-07,6.770164175797374959e-07,7.447180593377112031e-07,8.124197010956849103e-07,8.801213428536586176e-07,9.478229846116323248e-07,1.015524626369606032e-06,1.083226268127579739e-06,1.150927909885553447e-06,1.218629551643527154e-06,1.286331193401500861e-06,1.354032835159474568e-06,1.421734476917448275e-06,1.489436118675421983e-06,1.557137760433395690e-06,1.624839402191369397e-06,1.692541043949343104e-06,1.760242685707316812e-06,1.827944327465290519e-06,1.895645969223264226e-06,1.963347610981237722e-06,2.031049252739211217e-06,2.098750894497184713e-06,2.166452536255158208e-06,2.234154178013131703e-06,2.301855819771105199e-06,2.369557461529078694e-06,2.437259103287052190e-06,2.504960745045025685e-06,2.572662386802999181e-06,2.640364028560972676e-06,2.708065670318946172e-06,2.775767312076919667e-06,2.843468953834893163e-06,2.911170595592866658e-06,2.978872237350840154e-06,3.046573879108813649e-06,3.114275520866787145e-06,3.181977162624760640e-06,3.249678804382734136e-06,3.317380446140707631e-06,3.385082087898681127e-06,3.452783729656654622e-06,3.520485371414628118e-06,3.588187013172601613e-06,3.655888654930575109e-06,3.723590296688548604e-06,3.791291938446522099e-06,3.858993580204495595e-06,3.926695221962468667e-06,3.994396863720441739e-06,4.062098505478414811e-06,4.129800147236387883e-06,4.197501788994360955e-06,4.265203430752334027e-06 +0.000000000000000000e+00,6.770451144147846511e-08,1.354090228829569302e-07,2.031135343244354086e-07,2.708180457659139134e-07,3.385225572073924182e-07,4.062270686488709230e-07,4.739315800903494279e-07,5.416360915318279327e-07,6.093406029733064375e-07,6.770451144147849423e-07,7.447496258562634471e-07,8.124541372977419519e-07,8.801586487392204568e-07,9.478631601806989616e-07,1.015567671622177466e-06,1.083272183063656077e-06,1.150976694505134688e-06,1.218681205946613298e-06,1.286385717388091909e-06,1.354090228829570520e-06,1.421794740271049131e-06,1.489499251712527741e-06,1.557203763154006352e-06,1.624908274595484963e-06,1.692612786036963573e-06,1.760317297478442184e-06,1.828021808919920795e-06,1.895726320361399405e-06,1.963430831802878228e-06,2.031135343244357050e-06,2.098839854685835873e-06,2.166544366127314695e-06,2.234248877568793518e-06,2.301953389010272340e-06,2.369657900451751163e-06,2.437362411893229985e-06,2.505066923334708808e-06,2.572771434776187630e-06,2.640475946217666452e-06,2.708180457659145275e-06,2.775884969100624097e-06,2.843589480542102920e-06,2.911293991983581742e-06,2.978998503425060565e-06,3.046703014866539387e-06,3.114407526308018210e-06,3.182112037749497032e-06,3.249816549190975855e-06,3.317521060632454677e-06,3.385225572073933500e-06,3.452930083515412322e-06,3.520634594956891144e-06,3.588339106398369967e-06,3.656043617839848789e-06,3.723748129281327612e-06,3.791452640722806434e-06,3.859157152164285257e-06,3.926861663605764079e-06,3.994566175047242902e-06,4.062270686488721724e-06,4.129975197930200547e-06,4.197679709371679369e-06,4.265384220813158191e-06 +0.000000000000000000e+00,6.119220174418425879e-08,1.223844034883685176e-07,1.835766052325527631e-07,2.447688069767369822e-07,3.059610087209212013e-07,3.671532104651054204e-07,4.283454122092896395e-07,4.895376139534738586e-07,5.507298156976580776e-07,6.119220174418422967e-07,6.731142191860265158e-07,7.343064209302107349e-07,7.954986226743949540e-07,8.566908244185791731e-07,9.178830261627633921e-07,9.790752279069475054e-07,1.040267429651131513e-06,1.101459631395315520e-06,1.162651833139499527e-06,1.223844034883683535e-06,1.285036236627867542e-06,1.346228438372051549e-06,1.407420640116235557e-06,1.468612841860419564e-06,1.529805043604603571e-06,1.590997245348787579e-06,1.652189447092971586e-06,1.713381648837155593e-06,1.774573850581339601e-06,1.835766052325523608e-06,1.896958254069707615e-06,1.958150455813891623e-06,2.019342657558075630e-06,2.080534859302259637e-06,2.141727061046443645e-06,2.202919262790627652e-06,2.264111464534811659e-06,2.325303666278995667e-06,2.386495868023179674e-06,2.447688069767363681e-06,2.508880271511547689e-06,2.570072473255731696e-06,2.631264674999915703e-06,2.692456876744099710e-06,2.753649078488283718e-06,2.814841280232467725e-06,2.876033481976651732e-06,2.937225683720835740e-06,2.998417885465019747e-06,3.059610087209203754e-06,3.120802288953387762e-06,3.181994490697571769e-06,3.243186692441755776e-06,3.304378894185939784e-06,3.365571095930123791e-06,3.426763297674307798e-06,3.487955499418491806e-06,3.549147701162675813e-06,3.610339902906859820e-06,3.671532104651043828e-06,3.732724306395227835e-06,3.793916508139411842e-06,3.855108709883595850e-06 +0.000000000000000000e+00,6.770049623856238599e-08,1.354009924771247720e-07,2.031014887156871580e-07,2.708019849542495440e-07,3.385024811928119300e-07,4.062029774313743160e-07,4.739034736699367020e-07,5.416039699084990879e-07,6.093044661470614739e-07,6.770049623856238599e-07,7.447054586241862459e-07,8.124059548627486319e-07,8.801064511013110179e-07,9.478069473398734039e-07,1.015507443578435684e-06,1.083207939816997964e-06,1.150908436055560244e-06,1.218608932294122524e-06,1.286309428532684804e-06,1.354009924771247085e-06,1.421710421009809365e-06,1.489410917248371645e-06,1.557111413486933925e-06,1.624811909725496205e-06,1.692512405964058485e-06,1.760212902202620765e-06,1.827913398441183045e-06,1.895613894679745326e-06,1.963314390918307606e-06,2.031014887156869674e-06,2.098715383395431742e-06,2.166415879633993811e-06,2.234116375872555879e-06,2.301816872111117947e-06,2.369517368349680016e-06,2.437217864588242084e-06,2.504918360826804152e-06,2.572618857065366221e-06,2.640319353303928289e-06,2.708019849542490358e-06,2.775720345781052426e-06,2.843420842019614494e-06,2.911121338258176563e-06,2.978821834496738631e-06,3.046522330735300699e-06,3.114222826973862768e-06,3.181923323212424836e-06,3.249623819450986904e-06,3.317324315689548973e-06,3.385024811928111041e-06,3.452725308166673109e-06,3.520425804405235178e-06,3.588126300643797246e-06,3.655826796882359315e-06,3.723527293120921383e-06,3.791227789359483451e-06,3.858928285598045520e-06,3.926628781836607588e-06,3.994329278075169656e-06,4.062029774313731725e-06,4.129730270552293793e-06,4.197430766790855861e-06,4.265131263029417930e-06 +0.000000000000000000e+00,6.119888347873182842e-08,1.223977669574636568e-07,1.835966504361954985e-07,2.447955339149273666e-07,3.059944173936592347e-07,3.671933008723911029e-07,4.283921843511229710e-07,4.895910678298548391e-07,5.507899513085867602e-07,6.119888347873186813e-07,6.731877182660506023e-07,7.343866017447825234e-07,7.955854852235144444e-07,8.567843687022463655e-07,9.179832521809782866e-07,9.791821356597103135e-07,1.040381019138442340e-06,1.101579902617174367e-06,1.162778786095906394e-06,1.223977669574638421e-06,1.285176553053370448e-06,1.346375436532102475e-06,1.407574320010834502e-06,1.468773203489566529e-06,1.529972086968298556e-06,1.591170970447030583e-06,1.652369853925762610e-06,1.713568737404494637e-06,1.774767620883226664e-06,1.835966504361958691e-06,1.897165387840690718e-06,1.958364271319422745e-06,2.019563154798154983e-06,2.080762038276887222e-06,2.141960921755619461e-06,2.203159805234351699e-06,2.264358688713083938e-06,2.325557572191816177e-06,2.386756455670548416e-06,2.447955339149280654e-06,2.509154222628012893e-06,2.570353106106745132e-06,2.631551989585477370e-06,2.692750873064209609e-06,2.753949756542941848e-06,2.815148640021674086e-06,2.876347523500406325e-06,2.937546406979138564e-06,2.998745290457870803e-06,3.059944173936603041e-06,3.121143057415335280e-06,3.182341940894067519e-06,3.243540824372799757e-06,3.304739707851531996e-06,3.365938591330264235e-06,3.427137474808996473e-06,3.488336358287728712e-06,3.549535241766460951e-06,3.610734125245193190e-06,3.671933008723925428e-06,3.733131892202657667e-06,3.794330775681389906e-06,3.855529659160122144e-06 +0.000000000000000000e+00,6.769509935965954661e-08,1.353901987193190932e-07,2.030852980789786398e-07,2.707803974386381864e-07,3.384754967982977066e-07,4.061705961579572267e-07,4.738656955176167469e-07,5.415607948772762670e-07,6.092558942369357872e-07,6.769509935965953073e-07,7.446460929562548274e-07,8.123411923159143476e-07,8.800362916755738677e-07,9.477313910352333879e-07,1.015426490394892908e-06,1.083121589754552322e-06,1.150816689114211737e-06,1.218511788473871151e-06,1.286206887833530565e-06,1.353901987193189979e-06,1.421597086552849394e-06,1.489292185912508808e-06,1.556987285272168222e-06,1.624682384631827636e-06,1.692377483991487051e-06,1.760072583351146465e-06,1.827767682710805879e-06,1.895462782070465293e-06,1.963157881430124708e-06,2.030852980789784122e-06,2.098548080149443536e-06,2.166243179509102950e-06,2.233938278868762365e-06,2.301633378228421779e-06,2.369328477588081193e-06,2.437023576947740608e-06,2.504718676307400022e-06,2.572413775667059436e-06,2.640108875026718850e-06,2.707803974386378265e-06,2.775499073746037679e-06,2.843194173105697093e-06,2.910889272465356507e-06,2.978584371825015922e-06,3.046279471184675336e-06,3.113974570544334750e-06,3.181669669903994164e-06,3.249364769263653579e-06,3.317059868623312993e-06,3.384754967982972407e-06,3.452450067342631821e-06,3.520145166702291236e-06,3.587840266061950650e-06,3.655535365421610064e-06,3.723230464781269479e-06,3.790925564140928893e-06,3.858620663500587884e-06,3.926315762860246874e-06,3.994010862219905865e-06,4.061705961579564856e-06,4.129401060939223847e-06,4.197096160298882837e-06,4.264791259658541828e-06 +0.000000000000000000e+00,6.770049623856557560e-08,1.354009924771311512e-07,2.031014887156967400e-07,2.708019849542623553e-07,3.385024811928279707e-07,4.062029774313935860e-07,4.739034736699592013e-07,5.416039699085248166e-07,6.093044661470903789e-07,6.770049623856559413e-07,7.447054586242215037e-07,8.124059548627870660e-07,8.801064511013526284e-07,9.478069473399181908e-07,1.015507443578483753e-06,1.083207939817049421e-06,1.150908436055615090e-06,1.218608932294180758e-06,1.286309428532746426e-06,1.354009924771312094e-06,1.421710421009877763e-06,1.489410917248443431e-06,1.557111413487009099e-06,1.624811909725574767e-06,1.692512405964140436e-06,1.760212902202706104e-06,1.827913398441271772e-06,1.895613894679837440e-06,1.963314390918403320e-06,2.031014887156969200e-06,2.098715383395535080e-06,2.166415879634100960e-06,2.234116375872666840e-06,2.301816872111232720e-06,2.369517368349798600e-06,2.437217864588364480e-06,2.504918360826930360e-06,2.572618857065496240e-06,2.640319353304062120e-06,2.708019849542628000e-06,2.775720345781193880e-06,2.843420842019759760e-06,2.911121338258325640e-06,2.978821834496891520e-06,3.046522330735457400e-06,3.114222826974023280e-06,3.181923323212589160e-06,3.249623819451155040e-06,3.317324315689720920e-06,3.385024811928286800e-06,3.452725308166852680e-06,3.520425804405418560e-06,3.588126300643984440e-06,3.655826796882550320e-06,3.723527293121116200e-06,3.791227789359682080e-06,3.858928285598247960e-06,3.926628781836813417e-06,3.994329278075378873e-06,4.062029774313944330e-06,4.129730270552509786e-06,4.197430766791075243e-06,4.265131263029640699e-06 +0.000000000000000000e+00,6.770451144148491051e-08,1.354090228829698210e-07,2.031135343244547315e-07,2.708180457659396420e-07,3.385225572074245525e-07,4.062270686489094630e-07,4.739315800903943735e-07,5.416360915318792840e-07,6.093406029733642475e-07,6.770451144148492109e-07,7.447496258563341744e-07,8.124541372978191378e-07,8.801586487393041013e-07,9.478631601807890647e-07,1.015567671622274028e-06,1.083272183063758992e-06,1.150976694505243955e-06,1.218681205946728918e-06,1.286385717388213882e-06,1.354090228829698845e-06,1.421794740271183809e-06,1.489499251712668772e-06,1.557203763154153736e-06,1.624908274595638699e-06,1.692612786037123663e-06,1.760317297478608626e-06,1.828021808920093589e-06,1.895726320361578553e-06,1.963430831803063728e-06,2.031135343244548903e-06,2.098839854686034079e-06,2.166544366127519254e-06,2.234248877569004429e-06,2.301953389010489604e-06,2.369657900451974779e-06,2.437362411893459955e-06,2.505066923334945130e-06,2.572771434776430305e-06,2.640475946217915480e-06,2.708180457659400655e-06,2.775884969100885831e-06,2.843589480542371006e-06,2.911293991983856181e-06,2.978998503425341356e-06,3.046703014866826531e-06,3.114407526308311707e-06,3.182112037749796882e-06,3.249816549191282057e-06,3.317521060632767232e-06,3.385225572074252407e-06,3.452930083515737583e-06,3.520634594957222758e-06,3.588339106398707933e-06,3.656043617840193108e-06,3.723748129281678283e-06,3.791452640723163459e-06,3.859157152164648634e-06,3.926861663606134233e-06,3.994566175047619831e-06,4.062270686489105430e-06,4.129975197930591029e-06,4.197679709372076627e-06,4.265384220813562226e-06 +0.000000000000000000e+00,6.119220174419181591e-08,1.223844034883836318e-07,1.835766052325754477e-07,2.447688069767672636e-07,3.059610087209591060e-07,3.671532104651509484e-07,4.283454122093427908e-07,4.895376139535346332e-07,5.507298156977264755e-07,6.119220174419183179e-07,6.731142191861101603e-07,7.343064209303020027e-07,7.954986226744938451e-07,8.566908244186856875e-07,9.178830261628775298e-07,9.790752279070694781e-07,1.040267429651261532e-06,1.101459631395453586e-06,1.162651833139645641e-06,1.223844034883837695e-06,1.285036236628029749e-06,1.346228438372221803e-06,1.407420640116413857e-06,1.468612841860605911e-06,1.529805043604797965e-06,1.590997245348990019e-06,1.652189447093182074e-06,1.713381648837374128e-06,1.774573850581566182e-06,1.835766052325758236e-06,1.896958254069950290e-06,1.958150455814142344e-06,2.019342657558334398e-06,2.080534859302526453e-06,2.141727061046718507e-06,2.202919262790910561e-06,2.264111464535102615e-06,2.325303666279294669e-06,2.386495868023486723e-06,2.447688069767678777e-06,2.508880271511870832e-06,2.570072473256062886e-06,2.631264675000254940e-06,2.692456876744446994e-06,2.753649078488639048e-06,2.814841280232831102e-06,2.876033481977023156e-06,2.937225683721215211e-06,2.998417885465407265e-06,3.059610087209599319e-06,3.120802288953791373e-06,3.181994490697983427e-06,3.243186692442175481e-06,3.304378894186367535e-06,3.365571095930559590e-06,3.426763297674751644e-06,3.487955499418943698e-06,3.549147701163135752e-06,3.610339902907327806e-06,3.671532104651519860e-06,3.732724306395711914e-06,3.793916508139903968e-06,3.855108709884096446e-06 +0.000000000000000000e+00,7.936507936507364044e-08,1.587301587301472809e-07,2.380952380952209346e-07,3.174603174602946147e-07,3.968253968253682949e-07,4.761904761904419750e-07,5.555555555555156022e-07,6.349206349205892294e-07,7.142857142856628566e-07,7.936507936507364839e-07,8.730158730158101111e-07,9.523809523808837383e-07,1.031746031745957365e-06,1.111111111111030993e-06,1.190476190476104620e-06,1.269841269841178247e-06,1.349206349206251874e-06,1.428571428571325502e-06,1.507936507936399129e-06,1.587301587301472756e-06,1.666666666666546383e-06,1.746031746031620010e-06,1.825396825396693638e-06,1.904761904761767265e-06,1.984126984126840892e-06,2.063492063491914731e-06,2.142857142856988570e-06,2.222222222222062409e-06,2.301587301587136248e-06,2.380952380952210087e-06,2.460317460317283926e-06,2.539682539682357765e-06,2.619047619047431604e-06,2.698412698412505443e-06,2.777777777777579282e-06,2.857142857142653121e-06,2.936507936507726960e-06,3.015873015872800799e-06,3.095238095237874638e-06,3.174603174602948477e-06,3.253968253968022315e-06,3.333333333333096154e-06,3.412698412698169993e-06,3.492063492063243832e-06,3.571428571428317671e-06,3.650793650793391510e-06,3.730158730158465349e-06,3.809523809523539188e-06,3.888888888888612604e-06,3.968253968253686019e-06,4.047619047618759435e-06,4.126984126983832850e-06,4.206349206348906266e-06,4.285714285713979681e-06,4.365079365079053096e-06,4.444444444444126512e-06,4.523809523809199927e-06,4.603174603174273343e-06,4.682539682539346758e-06,4.761904761904420174e-06,4.841269841269493589e-06,4.920634920634567005e-06,4.999999999999640420e-06 +0.000000000000000000e+00,7.936507936507317722e-08,1.587301587301463544e-07,2.380952380952195317e-07,3.174603174602927089e-07,3.968253968253659126e-07,4.761904761904391163e-07,5.555555555555123200e-07,6.349206349205855237e-07,7.142857142856587274e-07,7.936507936507319310e-07,8.730158730158051347e-07,9.523809523808783384e-07,1.031746031745951436e-06,1.111111111111024428e-06,1.190476190476097420e-06,1.269841269841170412e-06,1.349206349206243404e-06,1.428571428571316396e-06,1.507936507936389388e-06,1.587301587301462380e-06,1.666666666666535372e-06,1.746031746031608364e-06,1.825396825396681356e-06,1.904761904761754348e-06,1.984126984126827339e-06,2.063492063491900331e-06,2.142857142856973323e-06,2.222222222222046315e-06,2.301587301587119307e-06,2.380952380952192299e-06,2.460317460317265291e-06,2.539682539682338283e-06,2.619047619047411275e-06,2.698412698412484267e-06,2.777777777777557259e-06,2.857142857142630251e-06,2.936507936507703243e-06,3.015873015872776235e-06,3.095238095237849227e-06,3.174603174602922218e-06,3.253968253967995210e-06,3.333333333333068202e-06,3.412698412698141194e-06,3.492063492063214186e-06,3.571428571428287178e-06,3.650793650793360170e-06,3.730158730158433162e-06,3.809523809523506154e-06,3.888888888888578722e-06,3.968253968253651291e-06,4.047619047618723859e-06,4.126984126983796428e-06,4.206349206348868996e-06,4.285714285713941564e-06,4.365079365079014133e-06,4.444444444444086701e-06,4.523809523809159270e-06,4.603174603174231838e-06,4.682539682539304407e-06,4.761904761904376975e-06,4.841269841269449543e-06,4.920634920634522112e-06,4.999999999999594680e-06 +0.000000000000000000e+00,7.936507936507622125e-08,1.587301587301524425e-07,2.380952380952286637e-07,3.174603174603048850e-07,3.968253968253811062e-07,4.761904761904573275e-07,5.555555555555336017e-07,6.349206349206098759e-07,7.142857142856861500e-07,7.936507936507624242e-07,8.730158730158386984e-07,9.523809523809149726e-07,1.031746031745991247e-06,1.111111111111067627e-06,1.190476190476144007e-06,1.269841269841220387e-06,1.349206349206296767e-06,1.428571428571373147e-06,1.507936507936449527e-06,1.587301587301525907e-06,1.666666666666602287e-06,1.746031746031678667e-06,1.825396825396755047e-06,1.904761904761831428e-06,1.984126984126907808e-06,2.063492063491984188e-06,2.142857142857060568e-06,2.222222222222136948e-06,2.301587301587213328e-06,2.380952380952289708e-06,2.460317460317366088e-06,2.539682539682442468e-06,2.619047619047518848e-06,2.698412698412595228e-06,2.777777777777671608e-06,2.857142857142747988e-06,2.936507936507824368e-06,3.015873015872900748e-06,3.095238095237977129e-06,3.174603174603053509e-06,3.253968253968129889e-06,3.333333333333206269e-06,3.412698412698282649e-06,3.492063492063359029e-06,3.571428571428435409e-06,3.650793650793511789e-06,3.730158730158588169e-06,3.809523809523664549e-06,3.888888888888741353e-06,3.968253968253818156e-06,4.047619047618894960e-06,4.126984126983971763e-06,4.206349206349048567e-06,4.285714285714125371e-06,4.365079365079202174e-06,4.444444444444278978e-06,4.523809523809355781e-06,4.603174603174432585e-06,4.682539682539509389e-06,4.761904761904586192e-06,4.841269841269662996e-06,4.920634920634739799e-06,4.999999999999816603e-06 +0.000000000000000000e+00,7.936507936507312428e-08,1.587301587301462486e-07,2.380952380952193729e-07,3.174603174602924971e-07,3.968253968253655949e-07,4.761904761904386928e-07,5.555555555555117906e-07,6.349206349205848884e-07,7.142857142856579862e-07,7.936507936507310840e-07,8.730158730158041818e-07,9.523809523808772796e-07,1.031746031745950377e-06,1.111111111111023581e-06,1.190476190476096785e-06,1.269841269841169989e-06,1.349206349206243192e-06,1.428571428571316396e-06,1.507936507936389600e-06,1.587301587301462803e-06,1.666666666666536007e-06,1.746031746031609211e-06,1.825396825396682414e-06,1.904761904761755618e-06,1.984126984126828610e-06,2.063492063491901602e-06,2.142857142856974594e-06,2.222222222222047586e-06,2.301587301587120578e-06,2.380952380952193570e-06,2.460317460317266562e-06,2.539682539682339554e-06,2.619047619047412545e-06,2.698412698412485537e-06,2.777777777777558529e-06,2.857142857142631521e-06,2.936507936507704513e-06,3.015873015872777505e-06,3.095238095237850497e-06,3.174603174602923489e-06,3.253968253967996481e-06,3.333333333333069473e-06,3.412698412698142465e-06,3.492063492063215457e-06,3.571428571428288449e-06,3.650793650793361441e-06,3.730158730158434433e-06,3.809523809523507425e-06,3.888888888888580416e-06,3.968253968253653832e-06,4.047619047618727247e-06,4.126984126983800663e-06,4.206349206348874078e-06,4.285714285713947494e-06,4.365079365079020909e-06,4.444444444444094325e-06,4.523809523809167740e-06,4.603174603174241156e-06,4.682539682539314571e-06,4.761904761904387986e-06,4.841269841269461402e-06,4.920634920634534817e-06,4.999999999999608233e-06 +0.000000000000000000e+00,7.521454786135775674e-08,1.504290957227155135e-07,2.256436435840732702e-07,3.008581914454310270e-07,3.760727393067887572e-07,4.512872871681464875e-07,5.265018350295042178e-07,6.017163828908619481e-07,6.769309307522196783e-07,7.521454786135774086e-07,8.273600264749351389e-07,9.025745743362928692e-07,9.777891221976505994e-07,1.053003670059008436e-06,1.128218217920366272e-06,1.203432765781724108e-06,1.278647313643081944e-06,1.353861861504439780e-06,1.429076409365797616e-06,1.504290957227155452e-06,1.579505505088513289e-06,1.654720052949871125e-06,1.729934600811228961e-06,1.805149148672586797e-06,1.880363696533944633e-06,1.955578244395302469e-06,2.030792792256660517e-06,2.106007340118018565e-06,2.181221887979376613e-06,2.256436435840734661e-06,2.331650983702092709e-06,2.406865531563450757e-06,2.482080079424808805e-06,2.557294627286166853e-06,2.632509175147524901e-06,2.707723723008882949e-06,2.782938270870240996e-06,2.858152818731599044e-06,2.933367366592957092e-06,3.008581914454315140e-06,3.083796462315673188e-06,3.159011010177031236e-06,3.234225558038389284e-06,3.309440105899747332e-06,3.384654653761105380e-06,3.459869201622463428e-06,3.535083749483821476e-06,3.610298297345179523e-06,3.685512845206537571e-06,3.760727393067895619e-06,3.835941940929253667e-06,3.911156488790611715e-06,3.986371036651969763e-06,4.061585584513327811e-06,4.136800132374685859e-06,4.212014680236043907e-06,4.287229228097401955e-06,4.362443775958760003e-06,4.437658323820118050e-06,4.512872871681476098e-06,4.588087419542834146e-06,4.663301967404192194e-06,4.738516515265550242e-06 +0.000000000000000000e+00,7.611627140950741736e-08,1.522325428190148347e-07,2.283488142285222521e-07,3.044650856380296695e-07,3.805813570475371133e-07,4.566976284570445571e-07,5.328138998665520009e-07,6.089301712760594448e-07,6.850464426855668886e-07,7.611627140950743324e-07,8.372789855045817763e-07,9.133952569140892201e-07,9.895115283235965581e-07,1.065627799733103790e-06,1.141744071142611022e-06,1.217860342552118254e-06,1.293976613961625486e-06,1.370092885371132718e-06,1.446209156780639951e-06,1.522325428190147183e-06,1.598441699599654415e-06,1.674557971009161647e-06,1.750674242418668879e-06,1.826790513828176111e-06,1.902906785237683343e-06,1.979023056647190575e-06,2.055139328056697807e-06,2.131255599466205039e-06,2.207371870875712271e-06,2.283488142285219503e-06,2.359604413694726735e-06,2.435720685104233967e-06,2.511836956513741200e-06,2.587953227923248432e-06,2.664069499332755664e-06,2.740185770742262896e-06,2.816302042151770128e-06,2.892418313561277360e-06,2.968534584970784592e-06,3.044650856380291824e-06,3.120767127789799056e-06,3.196883399199306288e-06,3.272999670608813520e-06,3.349115942018320752e-06,3.425232213427827984e-06,3.501348484837335217e-06,3.577464756246842449e-06,3.653581027656349681e-06,3.729697299065856913e-06,3.805813570475364145e-06,3.881929841884870953e-06,3.958046113294377762e-06,4.034162384703884570e-06,4.110278656113391379e-06,4.186394927522898188e-06,4.262511198932404996e-06,4.338627470341911805e-06,4.414743741751418613e-06,4.490860013160925422e-06,4.566976284570432230e-06,4.643092555979939039e-06,4.719208827389445848e-06,4.795325098798952656e-06 +0.000000000000000000e+00,7.936507936507475217e-08,1.587301587301495043e-07,2.380952380952242698e-07,3.174603174602990616e-07,3.968253968253738535e-07,4.761904761904486454e-07,5.555555555555234373e-07,6.349206349205982292e-07,7.142857142856730210e-07,7.936507936507478129e-07,8.730158730158226048e-07,9.523809523808973967e-07,1.031746031745972189e-06,1.111111111111046875e-06,1.190476190476121561e-06,1.269841269841196247e-06,1.349206349206270933e-06,1.428571428571345619e-06,1.507936507936420305e-06,1.587301587301494991e-06,1.666666666666569677e-06,1.746031746031644363e-06,1.825396825396719049e-06,1.904761904761793735e-06,1.984126984126868421e-06,2.063492063491943107e-06,2.142857142857017793e-06,2.222222222222092479e-06,2.301587301587167165e-06,2.380952380952241851e-06,2.460317460317316537e-06,2.539682539682391223e-06,2.619047619047465909e-06,2.698412698412540595e-06,2.777777777777615281e-06,2.857142857142689967e-06,2.936507936507764653e-06,3.015873015872839339e-06,3.095238095237914025e-06,3.174603174602988711e-06,3.253968253968063397e-06,3.333333333333138083e-06,3.412698412698212769e-06,3.492063492063287455e-06,3.571428571428362141e-06,3.650793650793436827e-06,3.730158730158511513e-06,3.809523809523586199e-06,3.888888888888660885e-06,3.968253968253735147e-06,4.047619047618809410e-06,4.126984126983883672e-06,4.206349206348957935e-06,4.285714285714032197e-06,4.365079365079106459e-06,4.444444444444180722e-06,4.523809523809254984e-06,4.603174603174329247e-06,4.682539682539403509e-06,4.761904761904477772e-06,4.841269841269552034e-06,4.920634920634626297e-06,4.999999999999700559e-06 +0.000000000000000000e+00,7.515328144035080175e-08,1.503065628807016035e-07,2.254598443210524052e-07,3.006131257614032070e-07,3.757664072017540087e-07,4.509196886421048105e-07,5.260729700824556122e-07,6.012262515228064140e-07,6.763795329631572157e-07,7.515328144035080175e-07,8.266860958438588192e-07,9.018393772842096210e-07,9.769926587245604227e-07,1.052145940164911224e-06,1.127299221605262026e-06,1.202452503045612828e-06,1.277605784485963630e-06,1.352759065926314431e-06,1.427912347366665233e-06,1.503065628807016035e-06,1.578218910247366837e-06,1.653372191687717638e-06,1.728525473128068440e-06,1.803678754568419242e-06,1.878832036008770044e-06,1.953985317449120845e-06,2.029138598889471647e-06,2.104291880329822449e-06,2.179445161770173251e-06,2.254598443210524052e-06,2.329751724650874854e-06,2.404905006091225656e-06,2.480058287531576458e-06,2.555211568971927259e-06,2.630364850412278061e-06,2.705518131852628863e-06,2.780671413292979665e-06,2.855824694733330466e-06,2.930977976173681268e-06,3.006131257614032070e-06,3.081284539054382872e-06,3.156437820494733673e-06,3.231591101935084475e-06,3.306744383375435277e-06,3.381897664815786079e-06,3.457050946256136880e-06,3.532204227696487682e-06,3.607357509136838484e-06,3.682510790577189286e-06,3.757664072017540087e-06,3.832817353457890466e-06,3.907970634898240844e-06,3.983123916338591222e-06,4.058277197778941600e-06,4.133430479219291979e-06,4.208583760659642357e-06,4.283737042099992735e-06,4.358890323540343113e-06,4.434043604980693492e-06,4.509196886421043870e-06,4.584350167861394248e-06,4.659503449301744626e-06,4.734656730742095004e-06 +0.000000000000000000e+00,7.936507936507935792e-08,1.587301587301587158e-07,2.380952380952380870e-07,3.174603174603174846e-07,3.968253968253968822e-07,4.761904761904762798e-07,5.555555555555556245e-07,6.349206349206349692e-07,7.142857142857143139e-07,7.936507936507936586e-07,8.730158730158730033e-07,9.523809523809523479e-07,1.031746031746031693e-06,1.111111111111111037e-06,1.190476190476190382e-06,1.269841269841269727e-06,1.349206349206349071e-06,1.428571428571428416e-06,1.507936507936507761e-06,1.587301587301587105e-06,1.666666666666666450e-06,1.746031746031745795e-06,1.825396825396825139e-06,1.904761904761904484e-06,1.984126984126983617e-06,2.063492063492062962e-06,2.142857142857142306e-06,2.222222222222221651e-06,2.301587301587300996e-06,2.380952380952380340e-06,2.460317460317459685e-06,2.539682539682539030e-06,2.619047619047618374e-06,2.698412698412697719e-06,2.777777777777777064e-06,2.857142857142856409e-06,2.936507936507935753e-06,3.015873015873015098e-06,3.095238095238094443e-06,3.174603174603173787e-06,3.253968253968253132e-06,3.333333333333332477e-06,3.412698412698411821e-06,3.492063492063491166e-06,3.571428571428570511e-06,3.650793650793649855e-06,3.730158730158729200e-06,3.809523809523808545e-06,3.888888888888887889e-06,3.968253968253967234e-06,4.047619047619046579e-06,4.126984126984125923e-06,4.206349206349205268e-06,4.285714285714284613e-06,4.365079365079363957e-06,4.444444444444443302e-06,4.523809523809522647e-06,4.603174603174601992e-06,4.682539682539681336e-06,4.761904761904760681e-06,4.841269841269840026e-06,4.920634920634919370e-06,4.999999999999998715e-06 +0.000000000000000000e+00,7.936507936507937115e-08,1.587301587301587423e-07,2.380952380952381135e-07,3.174603174603174846e-07,3.968253968253968293e-07,4.761904761904761740e-07,5.555555555555555187e-07,6.349206349206348633e-07,7.142857142857142080e-07,7.936507936507935527e-07,8.730158730158728974e-07,9.523809523809522421e-07,1.031746031746031481e-06,1.111111111111110826e-06,1.190476190476190170e-06,1.269841269841269515e-06,1.349206349206348860e-06,1.428571428571428204e-06,1.507936507936507549e-06,1.587301587301586894e-06,1.666666666666666238e-06,1.746031746031745583e-06,1.825396825396824928e-06,1.904761904761904272e-06,1.984126984126983617e-06,2.063492063492062962e-06,2.142857142857142306e-06,2.222222222222221651e-06,2.301587301587300996e-06,2.380952380952380340e-06,2.460317460317459685e-06,2.539682539682539030e-06,2.619047619047618374e-06,2.698412698412697719e-06,2.777777777777777064e-06,2.857142857142856409e-06,2.936507936507935753e-06,3.015873015873015098e-06,3.095238095238094443e-06,3.174603174603173787e-06,3.253968253968253132e-06,3.333333333333332477e-06,3.412698412698411821e-06,3.492063492063491166e-06,3.571428571428570511e-06,3.650793650793649855e-06,3.730158730158729200e-06,3.809523809523808545e-06,3.888888888888887889e-06,3.968253968253967234e-06,4.047619047619046579e-06,4.126984126984125923e-06,4.206349206349205268e-06,4.285714285714284613e-06,4.365079365079363957e-06,4.444444444444443302e-06,4.523809523809522647e-06,4.603174603174601992e-06,4.682539682539681336e-06,4.761904761904760681e-06,4.841269841269840026e-06,4.920634920634919370e-06,4.999999999999998715e-06 +0.000000000000000000e+00,7.936507936507771679e-08,1.587301587301554336e-07,2.380952380952331636e-07,3.174603174603109201e-07,3.968253968253886766e-07,4.761904761904664331e-07,5.555555555555441896e-07,6.349206349206219461e-07,7.142857142856997026e-07,7.936507936507774591e-07,8.730158730158552156e-07,9.523809523809329721e-07,1.031746031746010729e-06,1.111111111111088379e-06,1.190476190476166030e-06,1.269841269841243680e-06,1.349206349206321331e-06,1.428571428571398982e-06,1.507936507936476632e-06,1.587301587301554283e-06,1.666666666666631933e-06,1.746031746031709584e-06,1.825396825396787235e-06,1.904761904761864885e-06,1.984126984126942536e-06,2.063492063492020187e-06,2.142857142857097837e-06,2.222222222222175488e-06,2.301587301587253138e-06,2.380952380952330789e-06,2.460317460317408440e-06,2.539682539682486090e-06,2.619047619047563741e-06,2.698412698412641391e-06,2.777777777777719042e-06,2.857142857142796693e-06,2.936507936507874343e-06,3.015873015872951994e-06,3.095238095238029645e-06,3.174603174603107295e-06,3.253968253968184946e-06,3.333333333333262596e-06,3.412698412698340247e-06,3.492063492063417898e-06,3.571428571428495548e-06,3.650793650793573199e-06,3.730158730158650849e-06,3.809523809523728500e-06,3.888888888888805727e-06,3.968253968253882531e-06,4.047619047618959334e-06,4.126984126984036138e-06,4.206349206349112942e-06,4.285714285714189745e-06,4.365079365079266549e-06,4.444444444444343352e-06,4.523809523809420156e-06,4.603174603174496959e-06,4.682539682539573763e-06,4.761904761904650567e-06,4.841269841269727370e-06,4.920634920634804174e-06,4.999999999999880977e-06 +0.000000000000000000e+00,7.936507936507947703e-08,1.587301587301589541e-07,2.380952380952384311e-07,3.174603174603179081e-07,3.968253968253973587e-07,4.761904761904768092e-07,5.555555555555562598e-07,6.349206349206357104e-07,7.142857142857151609e-07,7.936507936507946115e-07,8.730158730158740620e-07,9.523809523809535126e-07,1.031746031746032963e-06,1.111111111111112520e-06,1.190476190476192076e-06,1.269841269841271632e-06,1.349206349206351189e-06,1.428571428571430745e-06,1.507936507936510302e-06,1.587301587301589858e-06,1.666666666666669415e-06,1.746031746031748971e-06,1.825396825396828528e-06,1.904761904761908084e-06,1.984126984126987852e-06,2.063492063492067620e-06,2.142857142857147389e-06,2.222222222222227157e-06,2.301587301587306925e-06,2.380952380952386693e-06,2.460317460317466461e-06,2.539682539682546230e-06,2.619047619047625998e-06,2.698412698412705766e-06,2.777777777777785534e-06,2.857142857142865302e-06,2.936507936507945071e-06,3.015873015873024839e-06,3.095238095238104607e-06,3.174603174603184375e-06,3.253968253968264143e-06,3.333333333333343912e-06,3.412698412698423680e-06,3.492063492063503448e-06,3.571428571428583216e-06,3.650793650793662984e-06,3.730158730158742753e-06,3.809523809523822521e-06,3.888888888888902289e-06,3.968253968253982481e-06,4.047619047619062672e-06,4.126984126984142864e-06,4.206349206349223056e-06,4.285714285714303248e-06,4.365079365079383439e-06,4.444444444444463631e-06,4.523809523809543823e-06,4.603174603174624014e-06,4.682539682539704206e-06,4.761904761904784398e-06,4.841269841269864590e-06,4.920634920634944781e-06,5.000000000000024973e-06 +0.000000000000000000e+00,7.521454786136454624e-08,1.504290957227290925e-07,2.256436435840936255e-07,3.008581914454581320e-07,3.760727393068226386e-07,4.512872871681871451e-07,5.265018350295516516e-07,6.017163828909161582e-07,6.769309307522806647e-07,7.521454786136451712e-07,8.273600264750096778e-07,9.025745743363741843e-07,9.777891221977386909e-07,1.053003670059103303e-06,1.128218217920467916e-06,1.203432765781832528e-06,1.278647313643197141e-06,1.353861861504561753e-06,1.429076409365926365e-06,1.504290957227290978e-06,1.579505505088655590e-06,1.654720052950020203e-06,1.729934600811384815e-06,1.805149148672749427e-06,1.880363696534114040e-06,1.955578244395478652e-06,2.030792792256843476e-06,2.106007340118208301e-06,2.181221887979573125e-06,2.256436435840937949e-06,2.331650983702302773e-06,2.406865531563667597e-06,2.482080079425032421e-06,2.557294627286397246e-06,2.632509175147762070e-06,2.707723723009126894e-06,2.782938270870491718e-06,2.858152818731856542e-06,2.933367366593221367e-06,3.008581914454586191e-06,3.083796462315951015e-06,3.159011010177315839e-06,3.234225558038680663e-06,3.309440105900045487e-06,3.384654653761410312e-06,3.459869201622775136e-06,3.535083749484139960e-06,3.610298297345504784e-06,3.685512845206869608e-06,3.760727393068234432e-06,3.835941940929599257e-06,3.911156488790964081e-06,3.986371036652328905e-06,4.061585584513693729e-06,4.136800132375058553e-06,4.212014680236423377e-06,4.287229228097788202e-06,4.362443775959153026e-06,4.437658323820517850e-06,4.512872871681882674e-06,4.588087419543247498e-06,4.663301967404612323e-06,4.738516515265977147e-06 +0.000000000000000000e+00,7.611627140951387599e-08,1.522325428190277520e-07,2.283488142285416280e-07,3.044650856380555040e-07,3.805813570475694064e-07,4.566976284570833089e-07,5.328138998665972113e-07,6.089301712761111138e-07,6.850464426856250162e-07,7.611627140951389187e-07,8.372789855046528212e-07,9.133952569141667236e-07,9.895115283236806261e-07,1.065627799733194423e-06,1.141744071142708219e-06,1.217860342552222016e-06,1.293976613961735812e-06,1.370092885371249609e-06,1.446209156780763406e-06,1.522325428190277202e-06,1.598441699599790999e-06,1.674557971009304795e-06,1.750674242418818592e-06,1.826790513828332388e-06,1.902906785237846185e-06,1.979023056647359982e-06,2.055139328056873566e-06,2.131255599466387151e-06,2.207371870875900736e-06,2.283488142285414321e-06,2.359604413694927906e-06,2.435720685104441491e-06,2.511836956513955075e-06,2.587953227923468660e-06,2.664069499332982245e-06,2.740185770742495830e-06,2.816302042152009415e-06,2.892418313561522999e-06,2.968534584971036584e-06,3.044650856380550169e-06,3.120767127790063754e-06,3.196883399199577339e-06,3.272999670609090924e-06,3.349115942018604508e-06,3.425232213428118093e-06,3.501348484837631678e-06,3.577464756247145263e-06,3.653581027656658848e-06,3.729697299066172433e-06,3.805813570475686017e-06,3.881929841885199602e-06,3.958046113294713187e-06,4.034162384704226772e-06,4.110278656113740357e-06,4.186394927523253941e-06,4.262511198932767526e-06,4.338627470342281111e-06,4.414743741751794696e-06,4.490860013161308281e-06,4.566976284570821866e-06,4.643092555980335450e-06,4.719208827389849035e-06,4.795325098799362620e-06 +0.000000000000000000e+00,7.936507936507366691e-08,1.587301587301473338e-07,2.380952380952209875e-07,3.174603174602946147e-07,3.968253968253682419e-07,4.761904761904418691e-07,5.555555555555154963e-07,6.349206349205891236e-07,7.142857142856627508e-07,7.936507936507363780e-07,8.730158730158100052e-07,9.523809523808836324e-07,1.031746031745957365e-06,1.111111111111031204e-06,1.190476190476105043e-06,1.269841269841178882e-06,1.349206349206252721e-06,1.428571428571326560e-06,1.507936507936400399e-06,1.587301587301474238e-06,1.666666666666548077e-06,1.746031746031621916e-06,1.825396825396695755e-06,1.904761904761769594e-06,1.984126984126843433e-06,2.063492063491917272e-06,2.142857142856991111e-06,2.222222222222064950e-06,2.301587301587138789e-06,2.380952380952212628e-06,2.460317460317286467e-06,2.539682539682360306e-06,2.619047619047434145e-06,2.698412698412507984e-06,2.777777777777581823e-06,2.857142857142655662e-06,2.936507936507729501e-06,3.015873015872803340e-06,3.095238095237877179e-06,3.174603174602951018e-06,3.253968253968024857e-06,3.333333333333098696e-06,3.412698412698172535e-06,3.492063492063246373e-06,3.571428571428320212e-06,3.650793650793394051e-06,3.730158730158467890e-06,3.809523809523541729e-06,3.888888888888615992e-06,3.968253968253690254e-06,4.047619047618764517e-06,4.126984126983838779e-06,4.206349206348913042e-06,4.285714285713987304e-06,4.365079365079061567e-06,4.444444444444135829e-06,4.523809523809210092e-06,4.603174603174284354e-06,4.682539682539358617e-06,4.761904761904432879e-06,4.841269841269507142e-06,4.920634920634581404e-06,4.999999999999655667e-06 +0.000000000000000000e+00,7.936507936507350810e-08,1.587301587301470162e-07,2.380952380952205111e-07,3.174603174602939794e-07,3.968253968253674478e-07,4.761904761904409162e-07,5.555555555555143317e-07,6.349206349205877471e-07,7.142857142856611626e-07,7.936507936507345780e-07,8.730158730158079935e-07,9.523809523808814089e-07,1.031746031745954824e-06,1.111111111111028240e-06,1.190476190476101655e-06,1.269841269841175071e-06,1.349206349206248486e-06,1.428571428571321902e-06,1.507936507936395317e-06,1.587301587301468733e-06,1.666666666666542148e-06,1.746031746031615563e-06,1.825396825396688979e-06,1.904761904761762394e-06,1.984126984126835810e-06,2.063492063491909225e-06,2.142857142856982641e-06,2.222222222222056056e-06,2.301587301587129472e-06,2.380952380952202887e-06,2.460317460317276303e-06,2.539682539682349718e-06,2.619047619047423133e-06,2.698412698412496549e-06,2.777777777777569964e-06,2.857142857142643380e-06,2.936507936507716795e-06,3.015873015872790211e-06,3.095238095237863626e-06,3.174603174602937042e-06,3.253968253968010457e-06,3.333333333333083872e-06,3.412698412698157288e-06,3.492063492063230703e-06,3.571428571428304119e-06,3.650793650793377534e-06,3.730158730158450950e-06,3.809523809523524365e-06,3.888888888888597357e-06,3.968253968253670773e-06,4.047619047618744188e-06,4.126984126983817603e-06,4.206349206348891019e-06,4.285714285713964434e-06,4.365079365079037850e-06,4.444444444444111265e-06,4.523809523809184681e-06,4.603174603174258096e-06,4.682539682539331512e-06,4.761904761904404927e-06,4.841269841269478343e-06,4.920634920634551758e-06,4.999999999999625173e-06 +0.000000000000000000e+00,7.598597532050416958e-08,1.519719506410083392e-07,2.279579259615124955e-07,3.039439012820166254e-07,3.799298766025207552e-07,4.559158519230248851e-07,5.319018272435290679e-07,6.078878025640332507e-07,6.838737778845374336e-07,7.598597532050416164e-07,8.358457285255457992e-07,9.118317038460499820e-07,9.878176791665541648e-07,1.063803654487058348e-06,1.139789629807562530e-06,1.215775605128066713e-06,1.291761580448570896e-06,1.367747555769075079e-06,1.443733531089579262e-06,1.519719506410083444e-06,1.595705481730587627e-06,1.671691457051091810e-06,1.747677432371595993e-06,1.823663407692100176e-06,1.899649383012604359e-06,1.975635358333108330e-06,2.051621333653612301e-06,2.127607308974116272e-06,2.203593284294620243e-06,2.279579259615124214e-06,2.355565234935628185e-06,2.431551210256132156e-06,2.507537185576636127e-06,2.583523160897140098e-06,2.659509136217644069e-06,2.735495111538148040e-06,2.811481086858652011e-06,2.887467062179155982e-06,2.963453037499659953e-06,3.039439012820163924e-06,3.115424988140667895e-06,3.191410963461171866e-06,3.267396938781675838e-06,3.343382914102179809e-06,3.419368889422683780e-06,3.495354864743187751e-06,3.571340840063691722e-06,3.647326815384195693e-06,3.723312790704699664e-06,3.799298766025203635e-06,3.875284741345707606e-06,3.951270716666211577e-06,4.027256691986715548e-06,4.103242667307219519e-06,4.179228642627723490e-06,4.255214617948227461e-06,4.331200593268731432e-06,4.407186568589235403e-06,4.483172543909739374e-06,4.559158519230243345e-06,4.635144494550747317e-06,4.711130469871251288e-06,4.787116445191755259e-06 +0.000000000000000000e+00,7.936507936507934468e-08,1.587301587301586894e-07,2.380952380952380340e-07,3.174603174603173787e-07,3.968253968253967234e-07,4.761904761904760681e-07,5.555555555555554128e-07,6.349206349206347575e-07,7.142857142857141021e-07,7.936507936507934468e-07,8.730158730158727915e-07,9.523809523809521362e-07,1.031746031746031481e-06,1.111111111111110826e-06,1.190476190476190170e-06,1.269841269841269515e-06,1.349206349206348860e-06,1.428571428571428204e-06,1.507936507936507549e-06,1.587301587301586894e-06,1.666666666666666238e-06,1.746031746031745583e-06,1.825396825396824928e-06,1.904761904761904272e-06,1.984126984126983617e-06,2.063492063492062962e-06,2.142857142857142306e-06,2.222222222222221651e-06,2.301587301587300996e-06,2.380952380952380340e-06,2.460317460317459685e-06,2.539682539682539030e-06,2.619047619047618374e-06,2.698412698412697719e-06,2.777777777777777064e-06,2.857142857142856409e-06,2.936507936507935753e-06,3.015873015873015098e-06,3.095238095238094443e-06,3.174603174603173787e-06,3.253968253968253132e-06,3.333333333333332477e-06,3.412698412698411821e-06,3.492063492063491166e-06,3.571428571428570511e-06,3.650793650793649855e-06,3.730158730158729200e-06,3.809523809523808545e-06,3.888888888888887889e-06,3.968253968253967234e-06,4.047619047619046579e-06,4.126984126984125923e-06,4.206349206349205268e-06,4.285714285714284613e-06,4.365079365079363957e-06,4.444444444444443302e-06,4.523809523809522647e-06,4.603174603174601992e-06,4.682539682539681336e-06,4.761904761904760681e-06,4.841269841269840026e-06,4.920634920634919370e-06,4.999999999999998715e-06 +0.000000000000000000e+00,7.936507936507925204e-08,1.587301587301585041e-07,2.380952380952377693e-07,3.174603174603170611e-07,3.968253968253963528e-07,4.761904761904756446e-07,5.555555555555549893e-07,6.349206349206343339e-07,7.142857142857136786e-07,7.936507936507930233e-07,8.730158730158723680e-07,9.523809523809517127e-07,1.031746031746031057e-06,1.111111111111110402e-06,1.190476190476189747e-06,1.269841269841269091e-06,1.349206349206348436e-06,1.428571428571427781e-06,1.507936507936507125e-06,1.587301587301586470e-06,1.666666666666665815e-06,1.746031746031745159e-06,1.825396825396824504e-06,1.904761904761903849e-06,1.984126984126983194e-06,2.063492063492062538e-06,2.142857142857141883e-06,2.222222222222221228e-06,2.301587301587300572e-06,2.380952380952379917e-06,2.460317460317459262e-06,2.539682539682538606e-06,2.619047619047617951e-06,2.698412698412697296e-06,2.777777777777776640e-06,2.857142857142855985e-06,2.936507936507935330e-06,3.015873015873014674e-06,3.095238095238094019e-06,3.174603174603173364e-06,3.253968253968252708e-06,3.333333333333332053e-06,3.412698412698411398e-06,3.492063492063490742e-06,3.571428571428570087e-06,3.650793650793649432e-06,3.730158730158728777e-06,3.809523809523808121e-06,3.888888888888887042e-06,3.968253968253965540e-06,4.047619047619044038e-06,4.126984126984122535e-06,4.206349206349201033e-06,4.285714285714279531e-06,4.365079365079358028e-06,4.444444444444436526e-06,4.523809523809515024e-06,4.603174603174593521e-06,4.682539682539672019e-06,4.761904761904750517e-06,4.841269841269829014e-06,4.920634920634907512e-06,4.999999999999986009e-06 +0.000000000000000000e+00,7.598597532051009881e-08,1.519719506410201976e-07,2.279579259615302832e-07,3.039439012820403423e-07,3.799298766025504014e-07,4.559158519230604605e-07,5.319018272435705725e-07,6.078878025640806846e-07,6.838737778845907966e-07,7.598597532051009087e-07,8.358457285256110207e-07,9.118317038461211328e-07,9.878176791666312448e-07,1.063803654487141357e-06,1.139789629807651469e-06,1.215775605128161581e-06,1.291761580448671693e-06,1.367747555769181805e-06,1.443733531089691917e-06,1.519719506410202029e-06,1.595705481730712141e-06,1.671691457051222253e-06,1.747677432371732365e-06,1.823663407692242477e-06,1.899649383012752589e-06,1.975635358333262490e-06,2.051621333653772390e-06,2.127607308974282290e-06,2.203593284294792190e-06,2.279579259615302091e-06,2.355565234935811991e-06,2.431551210256321891e-06,2.507537185576831792e-06,2.583523160897341692e-06,2.659509136217851592e-06,2.735495111538361492e-06,2.811481086858871393e-06,2.887467062179381293e-06,2.963453037499891193e-06,3.039439012820401094e-06,3.115424988140910994e-06,3.191410963461420894e-06,3.267396938781930794e-06,3.343382914102440695e-06,3.419368889422950595e-06,3.495354864743460495e-06,3.571340840063970396e-06,3.647326815384480296e-06,3.723312790704990196e-06,3.799298766025500096e-06,3.875284741346009997e-06,3.951270716666519897e-06,4.027256691987029797e-06,4.103242667307539698e-06,4.179228642628049598e-06,4.255214617948559498e-06,4.331200593269069398e-06,4.407186568589579299e-06,4.483172543910089199e-06,4.559158519230599099e-06,4.635144494551109000e-06,4.711130469871618900e-06,4.787116445192128800e-06 +0.000000000000000000e+00,7.936507936507346839e-08,1.587301587301469368e-07,2.380952380952204052e-07,3.174603174602938736e-07,3.968253968253673420e-07,4.761904761904408103e-07,5.555555555555143317e-07,6.349206349205878530e-07,7.142857142856613743e-07,7.936507936507348957e-07,8.730158730158084170e-07,9.523809523808819383e-07,1.031746031745955460e-06,1.111111111111029087e-06,1.190476190476102714e-06,1.269841269841176341e-06,1.349206349206249968e-06,1.428571428571323596e-06,1.507936507936397223e-06,1.587301587301470850e-06,1.666666666666544477e-06,1.746031746031618105e-06,1.825396825396691732e-06,1.904761904761765359e-06,1.984126984126838774e-06,2.063492063491912190e-06,2.142857142856985605e-06,2.222222222222059021e-06,2.301587301587132436e-06,2.380952380952205852e-06,2.460317460317279267e-06,2.539682539682352683e-06,2.619047619047426098e-06,2.698412698412499513e-06,2.777777777777572929e-06,2.857142857142646344e-06,2.936507936507719760e-06,3.015873015872793175e-06,3.095238095237866591e-06,3.174603174602940006e-06,3.253968253968013422e-06,3.333333333333086837e-06,3.412698412698160253e-06,3.492063492063233668e-06,3.571428571428307083e-06,3.650793650793380499e-06,3.730158730158453914e-06,3.809523809523527330e-06,3.888888888888600745e-06,3.968253968253674161e-06,4.047619047618747576e-06,4.126984126983820992e-06,4.206349206348894407e-06,4.285714285713967822e-06,4.365079365079041238e-06,4.444444444444114653e-06,4.523809523809188069e-06,4.603174603174261484e-06,4.682539682539334900e-06,4.761904761904408315e-06,4.841269841269481731e-06,4.920634920634555146e-06,4.999999999999628562e-06 +0.000000000000000000e+00,7.936507936507350810e-08,1.587301587301470162e-07,2.380952380952205111e-07,3.174603174602939794e-07,3.968253968253674478e-07,4.761904761904409162e-07,5.555555555555143317e-07,6.349206349205877471e-07,7.142857142856611626e-07,7.936507936507345780e-07,8.730158730158079935e-07,9.523809523808814089e-07,1.031746031745954824e-06,1.111111111111028240e-06,1.190476190476101655e-06,1.269841269841175071e-06,1.349206349206248486e-06,1.428571428571321902e-06,1.507936507936395317e-06,1.587301587301468733e-06,1.666666666666542148e-06,1.746031746031615563e-06,1.825396825396688979e-06,1.904761904761762394e-06,1.984126984126835810e-06,2.063492063491909225e-06,2.142857142856982641e-06,2.222222222222056056e-06,2.301587301587129472e-06,2.380952380952202887e-06,2.460317460317276303e-06,2.539682539682349718e-06,2.619047619047423133e-06,2.698412698412496549e-06,2.777777777777569964e-06,2.857142857142643380e-06,2.936507936507716795e-06,3.015873015872790211e-06,3.095238095237863626e-06,3.174603174602937042e-06,3.253968253968010457e-06,3.333333333333083872e-06,3.412698412698157288e-06,3.492063492063230703e-06,3.571428571428304119e-06,3.650793650793377534e-06,3.730158730158450950e-06,3.809523809523524365e-06,3.888888888888597357e-06,3.968253968253670773e-06,4.047619047618744188e-06,4.126984126983817603e-06,4.206349206348891019e-06,4.285714285713964434e-06,4.365079365079037850e-06,4.444444444444111265e-06,4.523809523809184681e-06,4.603174603174258096e-06,4.682539682539331512e-06,4.761904761904404927e-06,4.841269841269478343e-06,4.920634920634551758e-06,4.999999999999625173e-06 +0.000000000000000000e+00,7.554975029792622811e-08,1.510995005958524562e-07,2.266492508937786976e-07,3.021990011917049654e-07,3.777487514896312332e-07,4.532985017875575010e-07,5.288482520854837689e-07,6.043980023834100367e-07,6.799477526813363045e-07,7.554975029792625723e-07,8.310472532771888401e-07,9.065970035751151080e-07,9.821467538730414817e-07,1.057696504170967749e-06,1.133246254468894017e-06,1.208796004766820285e-06,1.284345755064746553e-06,1.359895505362672821e-06,1.435445255660599089e-06,1.510995005958525356e-06,1.586544756256451624e-06,1.662094506554377892e-06,1.737644256852304160e-06,1.813194007150230428e-06,1.888743757448156695e-06,1.964293507746082963e-06,2.039843258044009231e-06,2.115393008341935499e-06,2.190942758639861767e-06,2.266492508937788035e-06,2.342042259235714302e-06,2.417592009533640570e-06,2.493141759831566838e-06,2.568691510129493106e-06,2.644241260427419374e-06,2.719791010725345641e-06,2.795340761023271909e-06,2.870890511321198177e-06,2.946440261619124445e-06,3.021990011917050713e-06,3.097539762214976981e-06,3.173089512512903248e-06,3.248639262810829516e-06,3.324189013108755784e-06,3.399738763406682052e-06,3.475288513704608320e-06,3.550838264002534588e-06,3.626388014300460855e-06,3.701937764598387123e-06,3.777487514896313391e-06,3.853037265194240082e-06,3.928587015492166774e-06,4.004136765790093465e-06,4.079686516088020156e-06,4.155236266385946848e-06,4.230786016683873539e-06,4.306335766981800230e-06,4.381885517279726922e-06,4.457435267577653613e-06,4.532985017875580304e-06,4.608534768173506996e-06,4.684084518471433687e-06,4.759634268769360378e-06 +0.000000000000000000e+00,7.936507936507860353e-08,1.587301587301572071e-07,2.380952380952358106e-07,3.174603174603144141e-07,3.968253968253930176e-07,4.761904761904716212e-07,5.555555555555502247e-07,6.349206349206288282e-07,7.142857142857074318e-07,7.936507936507860353e-07,8.730158730158646388e-07,9.523809523809432423e-07,1.031746031746021740e-06,1.111111111111100238e-06,1.190476190476178735e-06,1.269841269841257233e-06,1.349206349206335731e-06,1.428571428571414228e-06,1.507936507936492726e-06,1.587301587301571224e-06,1.666666666666649721e-06,1.746031746031728219e-06,1.825396825396806716e-06,1.904761904761885214e-06,1.984126984126963712e-06,2.063492063492042209e-06,2.142857142857120707e-06,2.222222222222199205e-06,2.301587301587277702e-06,2.380952380952356200e-06,2.460317460317434698e-06,2.539682539682513195e-06,2.619047619047591693e-06,2.698412698412670191e-06,2.777777777777748688e-06,2.857142857142827186e-06,2.936507936507905684e-06,3.015873015872984181e-06,3.095238095238062679e-06,3.174603174603141177e-06,3.253968253968219674e-06,3.333333333333298172e-06,3.412698412698376669e-06,3.492063492063455167e-06,3.571428571428533665e-06,3.650793650793612162e-06,3.730158730158690660e-06,3.809523809523769158e-06,3.888888888888848079e-06,3.968253968253926577e-06,4.047619047619005074e-06,4.126984126984083572e-06,4.206349206349162069e-06,4.285714285714240567e-06,4.365079365079319065e-06,4.444444444444397562e-06,4.523809523809476060e-06,4.603174603174554558e-06,4.682539682539633055e-06,4.761904761904711553e-06,4.841269841269790051e-06,4.920634920634868548e-06,4.999999999999947046e-06 +0.000000000000000000e+00,7.936507936507880205e-08,1.587301587301576041e-07,2.380952380952363929e-07,3.174603174603151553e-07,3.968253968253939176e-07,4.761904761904726800e-07,5.555555555555513894e-07,6.349206349206300988e-07,7.142857142857088082e-07,7.936507936507875176e-07,8.730158730158662270e-07,9.523809523809449364e-07,1.031746031746023646e-06,1.111111111111102355e-06,1.190476190476181065e-06,1.269841269841259774e-06,1.349206349206338483e-06,1.428571428571417193e-06,1.507936507936495902e-06,1.587301587301574612e-06,1.666666666666653321e-06,1.746031746031732030e-06,1.825396825396810740e-06,1.904761904761889449e-06,1.984126984126968370e-06,2.063492063492047292e-06,2.142857142857126213e-06,2.222222222222205134e-06,2.301587301587284055e-06,2.380952380952362976e-06,2.460317460317441897e-06,2.539682539682520819e-06,2.619047619047599740e-06,2.698412698412678661e-06,2.777777777777757582e-06,2.857142857142836503e-06,2.936507936507915424e-06,3.015873015872994346e-06,3.095238095238073267e-06,3.174603174603152188e-06,3.253968253968231109e-06,3.333333333333310030e-06,3.412698412698388951e-06,3.492063492063467873e-06,3.571428571428546794e-06,3.650793650793625715e-06,3.730158730158704636e-06,3.809523809523783557e-06,3.888888888888862478e-06,3.968253968253941823e-06,4.047619047619021168e-06,4.126984126984100512e-06,4.206349206349179857e-06,4.285714285714259202e-06,4.365079365079338547e-06,4.444444444444417891e-06,4.523809523809497236e-06,4.603174603174576581e-06,4.682539682539655925e-06,4.761904761904735270e-06,4.841269841269814615e-06,4.920634920634893959e-06,4.999999999999973304e-06 +0.000000000000000000e+00,7.554975029793206470e-08,1.510995005958641294e-07,2.266492508937961941e-07,3.021990011917282588e-07,3.777487514896603500e-07,4.532985017875924411e-07,5.288482520855245323e-07,6.043980023834566235e-07,6.799477526813887147e-07,7.554975029793208058e-07,8.310472532772528970e-07,9.065970035751849882e-07,9.821467538731170793e-07,1.057696504171049065e-06,1.133246254468981050e-06,1.208796004766913035e-06,1.284345755064845021e-06,1.359895505362777006e-06,1.435445255660708991e-06,1.510995005958640976e-06,1.586544756256572962e-06,1.662094506554504947e-06,1.737644256852436932e-06,1.813194007150368918e-06,1.888743757448300903e-06,1.964293507746232888e-06,2.039843258044164662e-06,2.115393008342096435e-06,2.190942758640028209e-06,2.266492508937959982e-06,2.342042259235891756e-06,2.417592009533823529e-06,2.493141759831755303e-06,2.568691510129687076e-06,2.644241260427618850e-06,2.719791010725550623e-06,2.795340761023482397e-06,2.870890511321414171e-06,2.946440261619345944e-06,3.021990011917277718e-06,3.097539762215209491e-06,3.173089512513141265e-06,3.248639262811073038e-06,3.324189013109004812e-06,3.399738763406936585e-06,3.475288513704868359e-06,3.550838264002800132e-06,3.626388014300731906e-06,3.701937764598663679e-06,3.777487514896595453e-06,3.853037265194527226e-06,3.928587015492459000e-06,4.004136765790390774e-06,4.079686516088322547e-06,4.155236266386254321e-06,4.230786016684186094e-06,4.306335766982117868e-06,4.381885517280049641e-06,4.457435267577981415e-06,4.532985017875913188e-06,4.608534768173844962e-06,4.684084518471776735e-06,4.759634268769708509e-06 +0.000000000000000000e+00,7.936507936507337575e-08,1.587301587301467515e-07,2.380952380952201405e-07,3.174603174602935559e-07,3.968253968253669714e-07,4.761904761904403868e-07,5.555555555555138023e-07,6.349206349205872177e-07,7.142857142856606332e-07,7.936507936507340486e-07,8.730158730158074641e-07,9.523809523808808795e-07,1.031746031745954401e-06,1.111111111111027816e-06,1.190476190476101232e-06,1.269841269841174647e-06,1.349206349206248063e-06,1.428571428571321478e-06,1.507936507936394894e-06,1.587301587301468309e-06,1.666666666666541724e-06,1.746031746031615140e-06,1.825396825396688555e-06,1.904761904761761971e-06,1.984126984126835386e-06,2.063492063491908802e-06,2.142857142856982217e-06,2.222222222222055633e-06,2.301587301587129048e-06,2.380952380952202464e-06,2.460317460317275879e-06,2.539682539682349294e-06,2.619047619047422710e-06,2.698412698412496125e-06,2.777777777777569541e-06,2.857142857142642956e-06,2.936507936507716372e-06,3.015873015872789787e-06,3.095238095237863203e-06,3.174603174602936618e-06,3.253968253968010033e-06,3.333333333333083449e-06,3.412698412698156864e-06,3.492063492063230280e-06,3.571428571428303695e-06,3.650793650793377111e-06,3.730158730158450526e-06,3.809523809523523942e-06,3.888888888888597357e-06,3.968253968253670773e-06,4.047619047618744188e-06,4.126984126983817603e-06,4.206349206348891019e-06,4.285714285713964434e-06,4.365079365079037850e-06,4.444444444444111265e-06,4.523809523809184681e-06,4.603174603174258096e-06,4.682539682539331512e-06,4.761904761904404927e-06,4.841269841269478343e-06,4.920634920634551758e-06,4.999999999999625173e-06 +0.000000000000000000e+00,7.936507936507352133e-08,1.587301587301470427e-07,2.380952380952205640e-07,3.174603174602940853e-07,3.968253968253676067e-07,4.761904761904411280e-07,5.555555555555146493e-07,6.349206349205881706e-07,7.142857142856616920e-07,7.936507936507352133e-07,8.730158730158087346e-07,9.523809523808822560e-07,1.031746031745955671e-06,1.111111111111029087e-06,1.190476190476102502e-06,1.269841269841175918e-06,1.349206349206249333e-06,1.428571428571322749e-06,1.507936507936396164e-06,1.587301587301469580e-06,1.666666666666542995e-06,1.746031746031616410e-06,1.825396825396689826e-06,1.904761904761763241e-06,1.984126984126836657e-06,2.063492063491910072e-06,2.142857142856983488e-06,2.222222222222056903e-06,2.301587301587130319e-06,2.380952380952203734e-06,2.460317460317277150e-06,2.539682539682350565e-06,2.619047619047423980e-06,2.698412698412497396e-06,2.777777777777570811e-06,2.857142857142644227e-06,2.936507936507717642e-06,3.015873015872791058e-06,3.095238095237864473e-06,3.174603174602937889e-06,3.253968253968011304e-06,3.333333333333084719e-06,3.412698412698158135e-06,3.492063492063231550e-06,3.571428571428304966e-06,3.650793650793378381e-06,3.730158730158451797e-06,3.809523809523525212e-06,3.888888888888599051e-06,3.968253968253672467e-06,4.047619047618745882e-06,4.126984126983819298e-06,4.206349206348892713e-06,4.285714285713966128e-06,4.365079365079039544e-06,4.444444444444112959e-06,4.523809523809186375e-06,4.603174603174259790e-06,4.682539682539333206e-06,4.761904761904406621e-06,4.841269841269480037e-06,4.920634920634553452e-06,4.999999999999626867e-06 +0.000000000000000000e+00,7.502163779027000223e-08,1.500432755805400045e-07,2.250649133708100199e-07,3.000865511610800619e-07,3.751081889513501038e-07,4.501298267416201457e-07,5.251514645318901877e-07,6.001731023221602296e-07,6.751947401124302716e-07,7.502163779027003135e-07,8.252380156929703554e-07,9.002596534832403974e-07,9.752812912735105452e-07,1.050302929063780587e-06,1.125324566854050629e-06,1.200346204644320671e-06,1.275367842434590713e-06,1.350389480224860755e-06,1.425411118015130797e-06,1.500432755805400839e-06,1.575454393595670881e-06,1.650476031385940923e-06,1.725497669176210965e-06,1.800519306966481006e-06,1.875540944756751048e-06,1.950562582547021090e-06,2.025584220337291132e-06,2.100605858127561174e-06,2.175627495917831216e-06,2.250649133708101258e-06,2.325670771498371300e-06,2.400692409288641342e-06,2.475714047078911384e-06,2.550735684869181426e-06,2.625757322659451468e-06,2.700778960449721510e-06,2.775800598239991552e-06,2.850822236030261594e-06,2.925843873820531636e-06,3.000865511610801677e-06,3.075887149401071719e-06,3.150908787191341761e-06,3.225930424981611803e-06,3.300952062771881845e-06,3.375973700562151887e-06,3.450995338352421929e-06,3.526016976142691971e-06,3.601038613932962013e-06,3.676060251723232055e-06,3.751081889513502097e-06,3.826103527303771715e-06,3.901125165094041334e-06,3.976146802884310952e-06,4.051168440674580571e-06,4.126190078464850189e-06,4.201211716255119807e-06,4.276233354045389426e-06,4.351254991835659044e-06,4.426276629625928663e-06,4.501298267416198281e-06,4.576319905206467899e-06,4.651341542996737518e-06,4.726363180787007136e-06 +0.000000000000000000e+00,7.936507936507926527e-08,1.587301587301585305e-07,2.380952380952377958e-07,3.174603174603170611e-07,3.968253968253962999e-07,4.761904761904755387e-07,5.555555555555547775e-07,6.349206349206340163e-07,7.142857142857132551e-07,7.936507936507924939e-07,8.730158730158717327e-07,9.523809523809509715e-07,1.031746031746030210e-06,1.111111111111109555e-06,1.190476190476188900e-06,1.269841269841268244e-06,1.349206349206347589e-06,1.428571428571426934e-06,1.507936507936506278e-06,1.587301587301585623e-06,1.666666666666664968e-06,1.746031746031744312e-06,1.825396825396823657e-06,1.904761904761903002e-06,1.984126984126982346e-06,2.063492063492061691e-06,2.142857142857141036e-06,2.222222222222220381e-06,2.301587301587299725e-06,2.380952380952379070e-06,2.460317460317458415e-06,2.539682539682537759e-06,2.619047619047617104e-06,2.698412698412696449e-06,2.777777777777775793e-06,2.857142857142855138e-06,2.936507936507934483e-06,3.015873015873013827e-06,3.095238095238093172e-06,3.174603174603172517e-06,3.253968253968251861e-06,3.333333333333331206e-06,3.412698412698410551e-06,3.492063492063489895e-06,3.571428571428569240e-06,3.650793650793648585e-06,3.730158730158727929e-06,3.809523809523807274e-06,3.888888888888887042e-06,3.968253968253967234e-06,4.047619047619047426e-06,4.126984126984127618e-06,4.206349206349207809e-06,4.285714285714288001e-06,4.365079365079368193e-06,4.444444444444448384e-06,4.523809523809528576e-06,4.603174603174608768e-06,4.682539682539688960e-06,4.761904761904769151e-06,4.841269841269849343e-06,4.920634920634929535e-06,5.000000000000009726e-06 +0.000000000000000000e+00,7.936507936507870941e-08,1.587301587301574188e-07,2.380952380952361282e-07,3.174603174603148376e-07,3.968253968253935470e-07,4.761904761904722564e-07,5.555555555555509658e-07,6.349206349206296753e-07,7.142857142857083847e-07,7.936507936507870941e-07,8.730158730158658035e-07,9.523809523809445129e-07,1.031746031746023222e-06,1.111111111111101932e-06,1.190476190476180641e-06,1.269841269841259351e-06,1.349206349206338060e-06,1.428571428571416769e-06,1.507936507936495479e-06,1.587301587301574188e-06,1.666666666666652898e-06,1.746031746031731607e-06,1.825396825396810316e-06,1.904761904761889026e-06,1.984126984126967523e-06,2.063492063492046021e-06,2.142857142857124519e-06,2.222222222222203016e-06,2.301587301587281514e-06,2.380952380952360012e-06,2.460317460317438509e-06,2.539682539682517007e-06,2.619047619047595505e-06,2.698412698412674002e-06,2.777777777777752500e-06,2.857142857142830998e-06,2.936507936507909495e-06,3.015873015872987993e-06,3.095238095238066491e-06,3.174603174603144988e-06,3.253968253968223486e-06,3.333333333333301983e-06,3.412698412698380481e-06,3.492063492063458979e-06,3.571428571428537476e-06,3.650793650793615974e-06,3.730158730158694472e-06,3.809523809523772969e-06,3.888888888888851467e-06,3.968253968253929965e-06,4.047619047619008462e-06,4.126984126984086960e-06,4.206349206349165458e-06,4.285714285714243955e-06,4.365079365079322453e-06,4.444444444444400951e-06,4.523809523809479448e-06,4.603174603174557946e-06,4.682539682539636443e-06,4.761904761904714941e-06,4.841269841269793439e-06,4.920634920634871936e-06,4.999999999999950434e-06 +0.000000000000000000e+00,7.502163779027603734e-08,1.500432755805520747e-07,2.250649133708281253e-07,3.000865511611042023e-07,3.751081889513802794e-07,4.501298267416563564e-07,5.251514645319324334e-07,6.001731023222085105e-07,6.751947401124845875e-07,7.502163779027606646e-07,8.252380156930367416e-07,9.002596534833128187e-07,9.752812912735888957e-07,1.050302929063864867e-06,1.125324566854140838e-06,1.200346204644416809e-06,1.275367842434692780e-06,1.350389480224968752e-06,1.425411118015244723e-06,1.500432755805520694e-06,1.575454393595796665e-06,1.650476031386072636e-06,1.725497669176348607e-06,1.800519306966624579e-06,1.875540944756900550e-06,1.950562582547176521e-06,2.025584220337452492e-06,2.100605858127728463e-06,2.175627495918004434e-06,2.250649133708280406e-06,2.325670771498556377e-06,2.400692409288832348e-06,2.475714047079108319e-06,2.550735684869384290e-06,2.625757322659660261e-06,2.700778960449936233e-06,2.775800598240212204e-06,2.850822236030488175e-06,2.925843873820764146e-06,3.000865511611040117e-06,3.075887149401316088e-06,3.150908787191592060e-06,3.225930424981868031e-06,3.300952062772144002e-06,3.375973700562419973e-06,3.450995338352695944e-06,3.526016976142971915e-06,3.601038613933247887e-06,3.676060251723523858e-06,3.751081889513799829e-06,3.826103527304075800e-06,3.901125165094352195e-06,3.976146802884628589e-06,4.051168440674904984e-06,4.126190078465181379e-06,4.201211716255457774e-06,4.276233354045734168e-06,4.351254991836010563e-06,4.426276629626286958e-06,4.501298267416563352e-06,4.576319905206839747e-06,4.651341542997116142e-06,4.726363180787392536e-06 +0.000000000000000000e+00,7.936507936507312428e-08,1.587301587301462486e-07,2.380952380952193729e-07,3.174603174602924971e-07,3.968253968253655949e-07,4.761904761904386928e-07,5.555555555555117906e-07,6.349206349205848884e-07,7.142857142856579862e-07,7.936507936507310840e-07,8.730158730158041818e-07,9.523809523808772796e-07,1.031746031745950377e-06,1.111111111111023581e-06,1.190476190476096785e-06,1.269841269841169989e-06,1.349206349206243192e-06,1.428571428571316396e-06,1.507936507936389600e-06,1.587301587301462803e-06,1.666666666666536007e-06,1.746031746031609211e-06,1.825396825396682414e-06,1.904761904761755618e-06,1.984126984126828610e-06,2.063492063491901602e-06,2.142857142856974594e-06,2.222222222222047586e-06,2.301587301587120578e-06,2.380952380952193570e-06,2.460317460317266562e-06,2.539682539682339554e-06,2.619047619047412545e-06,2.698412698412485537e-06,2.777777777777558529e-06,2.857142857142631521e-06,2.936507936507704513e-06,3.015873015872777505e-06,3.095238095237850497e-06,3.174603174602923489e-06,3.253968253967996481e-06,3.333333333333069473e-06,3.412698412698142465e-06,3.492063492063215457e-06,3.571428571428288449e-06,3.650793650793361441e-06,3.730158730158434433e-06,3.809523809523507425e-06,3.888888888888580416e-06,3.968253968253653832e-06,4.047619047618727247e-06,4.126984126983800663e-06,4.206349206348874078e-06,4.285714285713947494e-06,4.365079365079020909e-06,4.444444444444094325e-06,4.523809523809167740e-06,4.603174603174241156e-06,4.682539682539314571e-06,4.761904761904387986e-06,4.841269841269461402e-06,4.920634920634534817e-06,4.999999999999608233e-06 +0.000000000000000000e+00,7.936507936507336251e-08,1.587301587301467250e-07,2.380952380952200875e-07,3.174603174602934500e-07,3.968253968253668126e-07,4.761904761904401751e-07,5.555555555555134846e-07,6.349206349205867942e-07,7.142857142856601038e-07,7.936507936507334134e-07,8.730158730158067229e-07,9.523809523808800325e-07,1.031746031745953342e-06,1.111111111111026546e-06,1.190476190476099749e-06,1.269841269841172953e-06,1.349206349206246157e-06,1.428571428571319361e-06,1.507936507936392564e-06,1.587301587301465768e-06,1.666666666666538972e-06,1.746031746031612175e-06,1.825396825396685379e-06,1.904761904761758583e-06,1.984126984126831998e-06,2.063492063491905414e-06,2.142857142856978829e-06,2.222222222222052244e-06,2.301587301587125660e-06,2.380952380952199075e-06,2.460317460317272491e-06,2.539682539682345906e-06,2.619047619047419322e-06,2.698412698412492737e-06,2.777777777777566153e-06,2.857142857142639568e-06,2.936507936507712984e-06,3.015873015872786399e-06,3.095238095237859814e-06,3.174603174602933230e-06,3.253968253968006645e-06,3.333333333333080061e-06,3.412698412698153476e-06,3.492063492063226892e-06,3.571428571428300307e-06,3.650793650793373723e-06,3.730158730158447138e-06,3.809523809523520554e-06,3.888888888888593969e-06,3.968253968253667384e-06,4.047619047618740800e-06,4.126984126983814215e-06,4.206349206348887631e-06,4.285714285713961046e-06,4.365079365079034462e-06,4.444444444444107877e-06,4.523809523809181293e-06,4.603174603174254708e-06,4.682539682539328123e-06,4.761904761904401539e-06,4.841269841269474954e-06,4.920634920634548370e-06,4.999999999999621785e-06 +0.000000000000000000e+00,7.448942454793215601e-08,1.489788490958643120e-07,2.234682736437964548e-07,2.979576981917285711e-07,3.724471227396606874e-07,4.469365472875928037e-07,5.214259718355249200e-07,5.959153963834570364e-07,6.704048209313891527e-07,7.448942454793212690e-07,8.193836700272533853e-07,8.938730945751855016e-07,9.683625191231175120e-07,1.042851943671049628e-06,1.117341368218981745e-06,1.191830792766913861e-06,1.266320217314845977e-06,1.340809641862778094e-06,1.415299066410710210e-06,1.489788490958642326e-06,1.564277915506574442e-06,1.638767340054506559e-06,1.713256764602438675e-06,1.787746189150370791e-06,1.862235613698302908e-06,1.936725038246235024e-06,2.011214462794167140e-06,2.085703887342099257e-06,2.160193311890031373e-06,2.234682736437963489e-06,2.309172160985895606e-06,2.383661585533827722e-06,2.458151010081759838e-06,2.532640434629691955e-06,2.607129859177624071e-06,2.681619283725556187e-06,2.756108708273488303e-06,2.830598132821420420e-06,2.905087557369352536e-06,2.979576981917284652e-06,3.054066406465216769e-06,3.128555831013148885e-06,3.203045255561081001e-06,3.277534680109013118e-06,3.352024104656945234e-06,3.426513529204877350e-06,3.501002953752809467e-06,3.575492378300741583e-06,3.649981802848673699e-06,3.724471227396605815e-06,3.798960651944537932e-06,3.873450076492470048e-06,3.947939501040401741e-06,4.022428925588333434e-06,4.096918350136265126e-06,4.171407774684196819e-06,4.245897199232128512e-06,4.320386623780060205e-06,4.394876048327991898e-06,4.469365472875923590e-06,4.543854897423855283e-06,4.618344321971786976e-06,4.692833746519718669e-06 +0.000000000000000000e+00,7.936507936507855059e-08,1.587301587301571012e-07,2.380952380952356518e-07,3.174603174603142024e-07,3.968253968253927529e-07,4.761904761904713035e-07,5.555555555555499071e-07,6.349206349206285106e-07,7.142857142857071141e-07,7.936507936507857176e-07,8.730158730158643212e-07,9.523809523809429247e-07,1.031746031746021528e-06,1.111111111111100238e-06,1.190476190476178947e-06,1.269841269841257656e-06,1.349206349206336366e-06,1.428571428571415075e-06,1.507936507936493785e-06,1.587301587301572494e-06,1.666666666666651203e-06,1.746031746031729913e-06,1.825396825396808622e-06,1.904761904761887332e-06,1.984126984126965829e-06,2.063492063492044327e-06,2.142857142857122825e-06,2.222222222222201322e-06,2.301587301587279820e-06,2.380952380952358318e-06,2.460317460317436815e-06,2.539682539682515313e-06,2.619047619047593811e-06,2.698412698412672308e-06,2.777777777777750806e-06,2.857142857142829303e-06,2.936507936507907801e-06,3.015873015872986299e-06,3.095238095238064796e-06,3.174603174603143294e-06,3.253968253968221792e-06,3.333333333333300289e-06,3.412698412698378787e-06,3.492063492063457285e-06,3.571428571428535782e-06,3.650793650793614280e-06,3.730158730158692778e-06,3.809523809523771275e-06,3.888888888888849773e-06,3.968253968253928271e-06,4.047619047619006768e-06,4.126984126984085266e-06,4.206349206349163764e-06,4.285714285714242261e-06,4.365079365079320759e-06,4.444444444444399256e-06,4.523809523809477754e-06,4.603174603174556252e-06,4.682539682539634749e-06,4.761904761904713247e-06,4.841269841269791745e-06,4.920634920634870242e-06,4.999999999999948740e-06 +0.000000000000000000e+00,7.936507936507870941e-08,1.587301587301574188e-07,2.380952380952361282e-07,3.174603174603148376e-07,3.968253968253935470e-07,4.761904761904722564e-07,5.555555555555509658e-07,6.349206349206296753e-07,7.142857142857083847e-07,7.936507936507870941e-07,8.730158730158658035e-07,9.523809523809445129e-07,1.031746031746023222e-06,1.111111111111101932e-06,1.190476190476180641e-06,1.269841269841259351e-06,1.349206349206338060e-06,1.428571428571416769e-06,1.507936507936495479e-06,1.587301587301574188e-06,1.666666666666652898e-06,1.746031746031731607e-06,1.825396825396810316e-06,1.904761904761889026e-06,1.984126984126967523e-06,2.063492063492046021e-06,2.142857142857124519e-06,2.222222222222203016e-06,2.301587301587281514e-06,2.380952380952360012e-06,2.460317460317438509e-06,2.539682539682517007e-06,2.619047619047595505e-06,2.698412698412674002e-06,2.777777777777752500e-06,2.857142857142830998e-06,2.936507936507909495e-06,3.015873015872987993e-06,3.095238095238066491e-06,3.174603174603144988e-06,3.253968253968223486e-06,3.333333333333301983e-06,3.412698412698380481e-06,3.492063492063458979e-06,3.571428571428537476e-06,3.650793650793615974e-06,3.730158730158694472e-06,3.809523809523772969e-06,3.888888888888851467e-06,3.968253968253929965e-06,4.047619047619008462e-06,4.126984126984086960e-06,4.206349206349165458e-06,4.285714285714243955e-06,4.365079365079322453e-06,4.444444444444400951e-06,4.523809523809479448e-06,4.603174603174557946e-06,4.682539682539636443e-06,4.761904761904714941e-06,4.841269841269793439e-06,4.920634920634871936e-06,4.999999999999950434e-06 +0.000000000000000000e+00,7.448942454793808524e-08,1.489788490958761705e-07,2.234682736438142425e-07,2.979576981917522880e-07,3.724471227396903336e-07,4.469365472876283791e-07,5.214259718355664247e-07,5.959153963835044702e-07,6.704048209314425157e-07,7.448942454793805613e-07,8.193836700273186068e-07,8.938730945752566524e-07,9.683625191231945920e-07,1.042851943671132638e-06,1.117341368219070683e-06,1.191830792767008729e-06,1.266320217314946774e-06,1.340809641862884820e-06,1.415299066410822865e-06,1.489788490958760911e-06,1.564277915506698956e-06,1.638767340054637002e-06,1.713256764602575047e-06,1.787746189150513093e-06,1.862235613698451139e-06,1.936725038246389184e-06,2.011214462794327230e-06,2.085703887342265275e-06,2.160193311890203321e-06,2.234682736438141366e-06,2.309172160986079412e-06,2.383661585534017457e-06,2.458151010081955503e-06,2.532640434629893548e-06,2.607129859177831594e-06,2.681619283725769639e-06,2.756108708273707685e-06,2.830598132821645731e-06,2.905087557369583776e-06,2.979576981917521822e-06,3.054066406465459867e-06,3.128555831013397913e-06,3.203045255561335958e-06,3.277534680109274004e-06,3.352024104657212049e-06,3.426513529205150095e-06,3.501002953753088140e-06,3.575492378301026186e-06,3.649981802848964231e-06,3.724471227396902277e-06,3.798960651944840323e-06,3.873450076492778368e-06,3.947939501040716837e-06,4.022428925588655306e-06,4.096918350136593775e-06,4.171407774684532244e-06,4.245897199232470713e-06,4.320386623780409182e-06,4.394876048328347651e-06,4.469365472876286121e-06,4.543854897424224590e-06,4.618344321972163059e-06,4.692833746520101528e-06 +0.000000000000000000e+00,7.936507936507371985e-08,1.587301587301474397e-07,2.380952380952211463e-07,3.174603174602948265e-07,3.968253968253685066e-07,4.761904761904421868e-07,5.555555555555158140e-07,6.349206349205894412e-07,7.142857142856630684e-07,7.936507936507366956e-07,8.730158730158103228e-07,9.523809523808839500e-07,1.031746031745957577e-06,1.111111111111031204e-06,1.190476190476104832e-06,1.269841269841178459e-06,1.349206349206252086e-06,1.428571428571325713e-06,1.507936507936399340e-06,1.587301587301472968e-06,1.666666666666546595e-06,1.746031746031620222e-06,1.825396825396693849e-06,1.904761904761767477e-06,1.984126984126841316e-06,2.063492063491915154e-06,2.142857142856988993e-06,2.222222222222062832e-06,2.301587301587136671e-06,2.380952380952210510e-06,2.460317460317284349e-06,2.539682539682358188e-06,2.619047619047432027e-06,2.698412698412505866e-06,2.777777777777579705e-06,2.857142857142653544e-06,2.936507936507727383e-06,3.015873015872801222e-06,3.095238095237875061e-06,3.174603174602948900e-06,3.253968253968022739e-06,3.333333333333096578e-06,3.412698412698170417e-06,3.492063492063244256e-06,3.571428571428318095e-06,3.650793650793391934e-06,3.730158730158465773e-06,3.809523809523539612e-06,3.888888888888613451e-06,3.968253968253687713e-06,4.047619047618761976e-06,4.126984126983836238e-06,4.206349206348910501e-06,4.285714285713984763e-06,4.365079365079059026e-06,4.444444444444133288e-06,4.523809523809207551e-06,4.603174603174281813e-06,4.682539682539356076e-06,4.761904761904430338e-06,4.841269841269504601e-06,4.920634920634578863e-06,4.999999999999653126e-06 +0.000000000000000000e+00,7.936507936507361397e-08,1.587301587301472279e-07,2.380952380952208287e-07,3.174603174602944030e-07,3.968253968253679772e-07,4.761904761904415515e-07,5.555555555555151787e-07,6.349206349205888059e-07,7.142857142856624331e-07,7.936507936507360603e-07,8.730158730158096875e-07,9.523809523808833148e-07,1.031746031745956942e-06,1.111111111111030569e-06,1.190476190476104196e-06,1.269841269841177824e-06,1.349206349206251451e-06,1.428571428571325078e-06,1.507936507936398705e-06,1.587301587301472332e-06,1.666666666666545960e-06,1.746031746031619587e-06,1.825396825396693214e-06,1.904761904761766841e-06,1.984126984126840468e-06,2.063492063491913884e-06,2.142857142856987299e-06,2.222222222222060715e-06,2.301587301587134130e-06,2.380952380952207546e-06,2.460317460317280961e-06,2.539682539682354377e-06,2.619047619047427792e-06,2.698412698412501208e-06,2.777777777777574623e-06,2.857142857142648038e-06,2.936507936507721454e-06,3.015873015872794869e-06,3.095238095237868285e-06,3.174603174602941700e-06,3.253968253968015116e-06,3.333333333333088531e-06,3.412698412698161947e-06,3.492063492063235362e-06,3.571428571428308777e-06,3.650793650793382193e-06,3.730158730158455608e-06,3.809523809523529024e-06,3.888888888888602439e-06,3.968253968253675855e-06,4.047619047618749270e-06,4.126984126983822686e-06,4.206349206348896101e-06,4.285714285713969517e-06,4.365079365079042932e-06,4.444444444444116347e-06,4.523809523809189763e-06,4.603174603174263178e-06,4.682539682539336594e-06,4.761904761904410009e-06,4.841269841269483425e-06,4.920634920634556840e-06,4.999999999999630256e-06 +0.000000000000000000e+00,7.401945331066756917e-08,1.480389066213351383e-07,2.220583599320027075e-07,2.960778132426702767e-07,3.700972665533378194e-07,4.441167198640053621e-07,5.181361731746729048e-07,5.921556264853404475e-07,6.661750797960079902e-07,7.401945331066755329e-07,8.142139864173430756e-07,8.882334397280106183e-07,9.622528930386782669e-07,1.036272346349346021e-06,1.110291799660013776e-06,1.184311252970681530e-06,1.258330706281349285e-06,1.332350159592017039e-06,1.406369612902684794e-06,1.480389066213352548e-06,1.554408519524020303e-06,1.628427972834688057e-06,1.702447426145355812e-06,1.776466879456023566e-06,1.850486332766691320e-06,1.924505786077359075e-06,1.998525239388026829e-06,2.072544692698694584e-06,2.146564146009362338e-06,2.220583599320030093e-06,2.294603052630697847e-06,2.368622505941365602e-06,2.442641959252033356e-06,2.516661412562701111e-06,2.590680865873368865e-06,2.664700319184036620e-06,2.738719772494704374e-06,2.812739225805372128e-06,2.886758679116039883e-06,2.960778132426707637e-06,3.034797585737375392e-06,3.108817039048043146e-06,3.182836492358710901e-06,3.256855945669378655e-06,3.330875398980046410e-06,3.404894852290714164e-06,3.478914305601381919e-06,3.552933758912049673e-06,3.626953212222717428e-06,3.700972665533385182e-06,3.774992118844052936e-06,3.849011572154720691e-06,3.923031025465388445e-06,3.997050478776056200e-06,4.071069932086723954e-06,4.145089385397391709e-06,4.219108838708059463e-06,4.293128292018727218e-06,4.367147745329394972e-06,4.441167198640062727e-06,4.515186651950730481e-06,4.589206105261398236e-06,4.663225558572065990e-06 +0.000000000000000000e+00,7.936507936507861676e-08,1.587301587301572335e-07,2.380952380952358635e-07,3.174603174603145200e-07,3.968253968253931765e-07,4.761904761904718329e-07,5.555555555555505423e-07,6.349206349206292517e-07,7.142857142857079611e-07,7.936507936507866706e-07,8.730158730158653800e-07,9.523809523809440894e-07,1.031746031746022799e-06,1.111111111111101508e-06,1.190476190476180218e-06,1.269841269841258927e-06,1.349206349206337636e-06,1.428571428571416346e-06,1.507936507936495055e-06,1.587301587301573765e-06,1.666666666666652474e-06,1.746031746031731183e-06,1.825396825396809893e-06,1.904761904761888602e-06,1.984126984126967523e-06,2.063492063492046445e-06,2.142857142857125366e-06,2.222222222222204287e-06,2.301587301587283208e-06,2.380952380952362129e-06,2.460317460317441050e-06,2.539682539682519972e-06,2.619047619047598893e-06,2.698412698412677814e-06,2.777777777777756735e-06,2.857142857142835656e-06,2.936507936507914577e-06,3.015873015872993499e-06,3.095238095238072420e-06,3.174603174603151341e-06,3.253968253968230262e-06,3.333333333333309183e-06,3.412698412698388104e-06,3.492063492063467026e-06,3.571428571428545947e-06,3.650793650793624868e-06,3.730158730158703789e-06,3.809523809523782710e-06,3.888888888888861631e-06,3.968253968253940129e-06,4.047619047619018627e-06,4.126984126984097124e-06,4.206349206349175622e-06,4.285714285714254120e-06,4.365079365079332617e-06,4.444444444444411115e-06,4.523809523809489613e-06,4.603174603174568110e-06,4.682539682539646608e-06,4.761904761904725106e-06,4.841269841269803603e-06,4.920634920634882101e-06,4.999999999999960598e-06 +0.000000000000000000e+00,7.936507936507853735e-08,1.587301587301570747e-07,2.380952380952355988e-07,3.174603174603140965e-07,3.968253968253925941e-07,4.761904761904710918e-07,5.555555555555495894e-07,6.349206349206280871e-07,7.142857142857065847e-07,7.936507936507850824e-07,8.730158730158635800e-07,9.523809523809420777e-07,1.031746031746020469e-06,1.111111111111098967e-06,1.190476190476177465e-06,1.269841269841255962e-06,1.349206349206334460e-06,1.428571428571412958e-06,1.507936507936491455e-06,1.587301587301569953e-06,1.666666666666648451e-06,1.746031746031726948e-06,1.825396825396805446e-06,1.904761904761883944e-06,1.984126984126962441e-06,2.063492063492040939e-06,2.142857142857119437e-06,2.222222222222197934e-06,2.301587301587276432e-06,2.380952380952354929e-06,2.460317460317433427e-06,2.539682539682511925e-06,2.619047619047590422e-06,2.698412698412668920e-06,2.777777777777747418e-06,2.857142857142825915e-06,2.936507936507904413e-06,3.015873015872982911e-06,3.095238095238061408e-06,3.174603174603139906e-06,3.253968253968218404e-06,3.333333333333296901e-06,3.412698412698375399e-06,3.492063492063453897e-06,3.571428571428532394e-06,3.650793650793610892e-06,3.730158730158689389e-06,3.809523809523767887e-06,3.888888888888846385e-06,3.968253968253924882e-06,4.047619047619003380e-06,4.126984126984081878e-06,4.206349206349160375e-06,4.285714285714238873e-06,4.365079365079317371e-06,4.444444444444395868e-06,4.523809523809474366e-06,4.603174603174552864e-06,4.682539682539631361e-06,4.761904761904709859e-06,4.841269841269788357e-06,4.920634920634866854e-06,4.999999999999945352e-06 +0.000000000000000000e+00,7.401945331067345870e-08,1.480389066213469174e-07,2.220583599320203629e-07,2.960778132426937819e-07,3.700972665533672009e-07,4.441167198640406198e-07,5.181361731747140918e-07,5.921556264853875637e-07,6.661750797960610356e-07,7.401945331067345076e-07,8.142139864174079795e-07,8.882334397280814515e-07,9.622528930387549234e-07,1.036272346349428395e-06,1.110291799660101867e-06,1.184311252970775339e-06,1.258330706281448811e-06,1.332350159592122283e-06,1.406369612902795755e-06,1.480389066213469227e-06,1.554408519524142699e-06,1.628427972834816171e-06,1.702447426145489643e-06,1.776466879456163115e-06,1.850486332766836587e-06,1.924505786077509847e-06,1.998525239388183107e-06,2.072544692698856367e-06,2.146564146009529627e-06,2.220583599320202887e-06,2.294603052630876148e-06,2.368622505941549408e-06,2.442641959252222668e-06,2.516661412562895928e-06,2.590680865873569188e-06,2.664700319184242449e-06,2.738719772494915709e-06,2.812739225805588969e-06,2.886758679116262229e-06,2.960778132426935489e-06,3.034797585737608749e-06,3.108817039048282010e-06,3.182836492358955270e-06,3.256855945669628530e-06,3.330875398980301790e-06,3.404894852290975050e-06,3.478914305601648310e-06,3.552933758912321571e-06,3.626953212222994831e-06,3.700972665533668091e-06,3.774992118844341351e-06,3.849011572155014611e-06,3.923031025465687448e-06,3.997050478776360285e-06,4.071069932087033121e-06,4.145089385397705958e-06,4.219108838708378795e-06,4.293128292019051631e-06,4.367147745329724468e-06,4.441167198640397305e-06,4.515186651951070141e-06,4.589206105261742978e-06,4.663225558572415815e-06 +0.000000000000000000e+00,7.936507936507311105e-08,1.587301587301462221e-07,2.380952380952193464e-07,3.174603174602924971e-07,3.968253968253656479e-07,4.761904761904387986e-07,5.555555555555120023e-07,6.349206349205852060e-07,7.142857142856584097e-07,7.936507936507316134e-07,8.730158730158048171e-07,9.523809523808780208e-07,1.031746031745951224e-06,1.111111111111024428e-06,1.190476190476097632e-06,1.269841269841170836e-06,1.349206349206244039e-06,1.428571428571317243e-06,1.507936507936390447e-06,1.587301587301463650e-06,1.666666666666536854e-06,1.746031746031610058e-06,1.825396825396683261e-06,1.904761904761756465e-06,1.984126984126829457e-06,2.063492063491902449e-06,2.142857142856975441e-06,2.222222222222048433e-06,2.301587301587121425e-06,2.380952380952194417e-06,2.460317460317267409e-06,2.539682539682340401e-06,2.619047619047413393e-06,2.698412698412486384e-06,2.777777777777559376e-06,2.857142857142632368e-06,2.936507936507705360e-06,3.015873015872778352e-06,3.095238095237851344e-06,3.174603174602924336e-06,3.253968253967997328e-06,3.333333333333070320e-06,3.412698412698143312e-06,3.492063492063216304e-06,3.571428571428289296e-06,3.650793650793362288e-06,3.730158730158435280e-06,3.809523809523508272e-06,3.888888888888581263e-06,3.968253968253653832e-06,4.047619047618726400e-06,4.126984126983798969e-06,4.206349206348871537e-06,4.285714285713944106e-06,4.365079365079016674e-06,4.444444444444089242e-06,4.523809523809161811e-06,4.603174603174234379e-06,4.682539682539306948e-06,4.761904761904379516e-06,4.841269841269452084e-06,4.920634920634524653e-06,4.999999999999597221e-06 +0.000000000000000000e+00,7.936507936507348163e-08,1.587301587301469633e-07,2.380952380952204581e-07,3.174603174602939794e-07,3.968253968253675008e-07,4.761904761904410221e-07,5.555555555555145434e-07,6.349206349205880648e-07,7.142857142856615861e-07,7.936507936507351074e-07,8.730158730158086288e-07,9.523809523808821501e-07,1.031746031745955671e-06,1.111111111111029087e-06,1.190476190476102502e-06,1.269841269841175918e-06,1.349206349206249333e-06,1.428571428571322749e-06,1.507936507936396164e-06,1.587301587301469580e-06,1.666666666666542995e-06,1.746031746031616410e-06,1.825396825396689826e-06,1.904761904761763241e-06,1.984126984126836657e-06,2.063492063491910072e-06,2.142857142856983488e-06,2.222222222222056903e-06,2.301587301587130319e-06,2.380952380952203734e-06,2.460317460317277150e-06,2.539682539682350565e-06,2.619047619047423980e-06,2.698412698412497396e-06,2.777777777777570811e-06,2.857142857142644227e-06,2.936507936507717642e-06,3.015873015872791058e-06,3.095238095237864473e-06,3.174603174602937889e-06,3.253968253968011304e-06,3.333333333333084719e-06,3.412698412698158135e-06,3.492063492063231550e-06,3.571428571428304966e-06,3.650793650793378381e-06,3.730158730158451797e-06,3.809523809523525212e-06,3.888888888888599051e-06,3.968253968253672467e-06,4.047619047618745882e-06,4.126984126983819298e-06,4.206349206348892713e-06,4.285714285713966128e-06,4.365079365079039544e-06,4.444444444444112959e-06,4.523809523809186375e-06,4.603174603174259790e-06,4.682539682539333206e-06,4.761904761904406621e-06,4.841269841269480037e-06,4.920634920634553452e-06,4.999999999999626867e-06 +0.000000000000000000e+00,7.369813172027068281e-08,1.473962634405413656e-07,2.210943951608120484e-07,2.947925268810827313e-07,3.684906586013534141e-07,4.421887903216240969e-07,5.158869220418947797e-07,5.895850537621654625e-07,6.632831854824361453e-07,7.369813172027068281e-07,8.106794489229775110e-07,8.843775806432481938e-07,9.580757123635187707e-07,1.031773844083789348e-06,1.105471975804059925e-06,1.179170107524330502e-06,1.252868239244601078e-06,1.326566370964871655e-06,1.400264502685142232e-06,1.473962634405412809e-06,1.547660766125683386e-06,1.621358897845953963e-06,1.695057029566224540e-06,1.768755161286495117e-06,1.842453293006765694e-06,1.916151424727036271e-06,1.989849556447306848e-06,2.063547688167577425e-06,2.137245819887848002e-06,2.210943951608118579e-06,2.284642083328389156e-06,2.358340215048659732e-06,2.432038346768930309e-06,2.505736478489200886e-06,2.579434610209471463e-06,2.653132741929742040e-06,2.726830873650012617e-06,2.800529005370283194e-06,2.874227137090553771e-06,2.947925268810824348e-06,3.021623400531094925e-06,3.095321532251365502e-06,3.169019663971636079e-06,3.242717795691906656e-06,3.316415927412177233e-06,3.390114059132447810e-06,3.463812190852718387e-06,3.537510322572988963e-06,3.611208454293259540e-06,3.684906586013530117e-06,3.758604717733800694e-06,3.832302849454071695e-06,3.906000981174342695e-06,3.979699112894613696e-06,4.053397244614884696e-06,4.127095376335155697e-06,4.200793508055426697e-06,4.274491639775697697e-06,4.348189771495968698e-06,4.421887903216239698e-06,4.495586034936510699e-06,4.569284166656781699e-06,4.642982298377052700e-06 +0.000000000000000000e+00,7.936507936507833883e-08,1.587301587301566777e-07,2.380952380952350165e-07,3.174603174603133553e-07,3.968253968253916942e-07,4.761904761904700330e-07,5.555555555555484248e-07,6.349206349206268165e-07,7.142857142857052083e-07,7.936507936507836001e-07,8.730158730158619918e-07,9.523809523809403836e-07,1.031746031746018775e-06,1.111111111111097273e-06,1.190476190476175771e-06,1.269841269841254268e-06,1.349206349206332766e-06,1.428571428571411264e-06,1.507936507936489761e-06,1.587301587301568259e-06,1.666666666666646757e-06,1.746031746031725254e-06,1.825396825396803752e-06,1.904761904761882250e-06,1.984126984126960747e-06,2.063492063492039245e-06,2.142857142857117742e-06,2.222222222222196240e-06,2.301587301587274738e-06,2.380952380952353235e-06,2.460317460317431733e-06,2.539682539682510231e-06,2.619047619047588728e-06,2.698412698412667226e-06,2.777777777777745724e-06,2.857142857142824221e-06,2.936507936507902719e-06,3.015873015872981217e-06,3.095238095238059714e-06,3.174603174603138212e-06,3.253968253968216710e-06,3.333333333333295207e-06,3.412698412698373705e-06,3.492063492063452202e-06,3.571428571428530700e-06,3.650793650793609198e-06,3.730158730158687695e-06,3.809523809523766193e-06,3.888888888888844691e-06,3.968253968253923188e-06,4.047619047619001686e-06,4.126984126984080184e-06,4.206349206349158681e-06,4.285714285714237179e-06,4.365079365079315677e-06,4.444444444444394174e-06,4.523809523809472672e-06,4.603174603174551170e-06,4.682539682539629667e-06,4.761904761904708165e-06,4.841269841269786663e-06,4.920634920634865160e-06,4.999999999999943658e-06 +0.000000000000000000e+00,7.936507936507844471e-08,1.587301587301568894e-07,2.380952380952353341e-07,3.174603174603137788e-07,3.968253968253922235e-07,4.761904761904706683e-07,5.555555555555490600e-07,6.349206349206274518e-07,7.142857142857058436e-07,7.936507936507842353e-07,8.730158730158626271e-07,9.523809523809410189e-07,1.031746031746019411e-06,1.111111111111097697e-06,1.190476190476175982e-06,1.269841269841254268e-06,1.349206349206332554e-06,1.428571428571410840e-06,1.507936507936489126e-06,1.587301587301567412e-06,1.666666666666645698e-06,1.746031746031723984e-06,1.825396825396802270e-06,1.904761904761880555e-06,1.984126984126959053e-06,2.063492063492037551e-06,2.142857142857116048e-06,2.222222222222194546e-06,2.301587301587273044e-06,2.380952380952351541e-06,2.460317460317430039e-06,2.539682539682508537e-06,2.619047619047587034e-06,2.698412698412665532e-06,2.777777777777744030e-06,2.857142857142822527e-06,2.936507936507901025e-06,3.015873015872979523e-06,3.095238095238058020e-06,3.174603174603136518e-06,3.253968253968215015e-06,3.333333333333293513e-06,3.412698412698372011e-06,3.492063492063450508e-06,3.571428571428529006e-06,3.650793650793607504e-06,3.730158730158686001e-06,3.809523809523764499e-06,3.888888888888842997e-06,3.968253968253921494e-06,4.047619047618999992e-06,4.126984126984078490e-06,4.206349206349156987e-06,4.285714285714235485e-06,4.365079365079313983e-06,4.444444444444392480e-06,4.523809523809470978e-06,4.603174603174549475e-06,4.682539682539627973e-06,4.761904761904706471e-06,4.841269841269784968e-06,4.920634920634863466e-06,4.999999999999941964e-06 +0.000000000000000000e+00,7.369813172027653264e-08,1.473962634405530653e-07,2.210943951608295979e-07,2.947925268811061305e-07,3.684906586013826367e-07,4.421887903216591429e-07,5.158869220419356490e-07,5.895850537622121552e-07,6.632831854824886614e-07,7.369813172027651675e-07,8.106794489230416737e-07,8.843775806433181799e-07,9.580757123635945802e-07,1.031773844083871086e-06,1.105471975804147592e-06,1.179170107524424099e-06,1.252868239244700605e-06,1.326566370964977111e-06,1.400264502685253617e-06,1.473962634405530123e-06,1.547660766125806629e-06,1.621358897846083136e-06,1.695057029566359642e-06,1.768755161286636148e-06,1.842453293006912654e-06,1.916151424727189160e-06,1.989849556447465666e-06,2.063547688167742173e-06,2.137245819888018679e-06,2.210943951608295185e-06,2.284642083328571691e-06,2.358340215048848197e-06,2.432038346769124703e-06,2.505736478489401210e-06,2.579434610209677716e-06,2.653132741929954222e-06,2.726830873650230728e-06,2.800529005370507234e-06,2.874227137090783740e-06,2.947925268811060247e-06,3.021623400531336753e-06,3.095321532251613259e-06,3.169019663971889765e-06,3.242717795692166271e-06,3.316415927412442777e-06,3.390114059132719284e-06,3.463812190852995790e-06,3.537510322573272296e-06,3.611208454293548802e-06,3.684906586013825308e-06,3.758604717734101814e-06,3.832302849454378321e-06,3.906000981174654403e-06,3.979699112894930486e-06,4.053397244615206569e-06,4.127095376335482651e-06,4.200793508055758734e-06,4.274491639776034817e-06,4.348189771496310899e-06,4.421887903216586982e-06,4.495586034936863064e-06,4.569284166657139147e-06,4.642982298377415230e-06 +0.000000000000000000e+00,7.936507936507323016e-08,1.587301587301464603e-07,2.380952380952196905e-07,3.174603174602929207e-07,3.968253968253661243e-07,4.761904761904393280e-07,5.555555555555125317e-07,6.349206349205857354e-07,7.142857142856589391e-07,7.936507936507321428e-07,8.730158730158053465e-07,9.523809523808785502e-07,1.031746031745951860e-06,1.111111111111025275e-06,1.190476190476098691e-06,1.269841269841172106e-06,1.349206349206245522e-06,1.428571428571318937e-06,1.507936507936392352e-06,1.587301587301465768e-06,1.666666666666539183e-06,1.746031746031612599e-06,1.825396825396686014e-06,1.904761904761759430e-06,1.984126984126832845e-06,2.063492063491906261e-06,2.142857142856979676e-06,2.222222222222053092e-06,2.301587301587126507e-06,2.380952380952199922e-06,2.460317460317273338e-06,2.539682539682346753e-06,2.619047619047420169e-06,2.698412698412493584e-06,2.777777777777567000e-06,2.857142857142640415e-06,2.936507936507713831e-06,3.015873015872787246e-06,3.095238095237860661e-06,3.174603174602934077e-06,3.253968253968007492e-06,3.333333333333080908e-06,3.412698412698154323e-06,3.492063492063227739e-06,3.571428571428301154e-06,3.650793650793374570e-06,3.730158730158447985e-06,3.809523809523521401e-06,3.888888888888594816e-06,3.968253968253668231e-06,4.047619047618741647e-06,4.126984126983815062e-06,4.206349206348888478e-06,4.285714285713961893e-06,4.365079365079035309e-06,4.444444444444108724e-06,4.523809523809182140e-06,4.603174603174255555e-06,4.682539682539328971e-06,4.761904761904402386e-06,4.841269841269475801e-06,4.920634920634549217e-06,4.999999999999622632e-06 +0.000000000000000000e+00,7.936507936507548009e-08,1.587301587301509602e-07,2.380952380952264403e-07,3.174603174603019204e-07,3.968253968253774005e-07,4.761904761904528806e-07,5.555555555555283077e-07,6.349206349206037349e-07,7.142857142856791620e-07,7.936507936507545892e-07,8.730158730158300163e-07,9.523809523809054435e-07,1.031746031745980871e-06,1.111111111111056192e-06,1.190476190476131513e-06,1.269841269841206834e-06,1.349206349206282156e-06,1.428571428571357477e-06,1.507936507936432798e-06,1.587301587301508120e-06,1.666666666666583441e-06,1.746031746031658762e-06,1.825396825396734083e-06,1.904761904761809405e-06,1.984126984126884514e-06,2.063492063491959624e-06,2.142857142857034733e-06,2.222222222222109843e-06,2.301587301587184952e-06,2.380952380952260062e-06,2.460317460317335171e-06,2.539682539682410281e-06,2.619047619047485390e-06,2.698412698412560500e-06,2.777777777777635609e-06,2.857142857142710719e-06,2.936507936507785828e-06,3.015873015872860938e-06,3.095238095237936047e-06,3.174603174603011157e-06,3.253968253968086266e-06,3.333333333333161376e-06,3.412698412698236485e-06,3.492063492063311595e-06,3.571428571428386705e-06,3.650793650793461814e-06,3.730158730158536924e-06,3.809523809523612033e-06,3.888888888888687143e-06,3.968253968253762252e-06,4.047619047618837362e-06,4.126984126983912471e-06,4.206349206348987581e-06,4.285714285714062690e-06,4.365079365079137800e-06,4.444444444444212909e-06,4.523809523809288019e-06,4.603174603174363128e-06,4.682539682539438238e-06,4.761904761904513347e-06,4.841269841269588457e-06,4.920634920634663566e-06,4.999999999999738676e-06 +0.000000000000000000e+00,7.936507936507321693e-08,1.587301587301464339e-07,2.380952380952196640e-07,3.174603174602929207e-07,3.968253968253661773e-07,4.761904761904394339e-07,5.555555555555126376e-07,6.349206349205858413e-07,7.142857142856590450e-07,7.936507936507322487e-07,8.730158730158054524e-07,9.523809523808786561e-07,1.031746031745951860e-06,1.111111111111025063e-06,1.190476190476098267e-06,1.269841269841171471e-06,1.349206349206244675e-06,1.428571428571317878e-06,1.507936507936391082e-06,1.587301587301464286e-06,1.666666666666537489e-06,1.746031746031610693e-06,1.825396825396683897e-06,1.904761904761757100e-06,1.984126984126830304e-06,2.063492063491903720e-06,2.142857142856977135e-06,2.222222222222050550e-06,2.301587301587123966e-06,2.380952380952197381e-06,2.460317460317270797e-06,2.539682539682344212e-06,2.619047619047417628e-06,2.698412698412491043e-06,2.777777777777564459e-06,2.857142857142637874e-06,2.936507936507711289e-06,3.015873015872784705e-06,3.095238095237858120e-06,3.174603174602931536e-06,3.253968253968004951e-06,3.333333333333078367e-06,3.412698412698151782e-06,3.492063492063225198e-06,3.571428571428298613e-06,3.650793650793372029e-06,3.730158730158445444e-06,3.809523809523518859e-06,3.888888888888592275e-06,3.968253968253665690e-06,4.047619047618739106e-06,4.126984126983812521e-06,4.206349206348885937e-06,4.285714285713959352e-06,4.365079365079032768e-06,4.444444444444106183e-06,4.523809523809179599e-06,4.603174603174253014e-06,4.682539682539326429e-06,4.761904761904399845e-06,4.841269841269473260e-06,4.920634920634546676e-06,4.999999999999620091e-06 +0.000000000000000000e+00,7.367267593546837467e-08,1.473453518709367493e-07,2.210180278064051108e-07,2.946907037418734457e-07,3.683633796773417807e-07,4.420360556128101156e-07,5.157087315482785035e-07,5.893814074837468914e-07,6.630540834192152793e-07,7.367267593546836672e-07,8.103994352901520551e-07,8.840721112256204430e-07,9.577447871610888310e-07,1.031417463096557219e-06,1.105090139032025607e-06,1.178762814967493995e-06,1.252435490902962383e-06,1.326108166838430770e-06,1.399780842773899158e-06,1.473453518709367546e-06,1.547126194644835934e-06,1.620798870580304322e-06,1.694471546515772710e-06,1.768144222451241098e-06,1.841816898386709486e-06,1.915489574322177662e-06,1.989162250257645838e-06,2.062834926193114014e-06,2.136507602128582190e-06,2.210180278064050366e-06,2.283852953999518543e-06,2.357525629934986719e-06,2.431198305870454895e-06,2.504870981805923071e-06,2.578543657741391247e-06,2.652216333676859423e-06,2.725889009612327599e-06,2.799561685547795776e-06,2.873234361483263952e-06,2.946907037418732128e-06,3.020579713354200304e-06,3.094252389289668480e-06,3.167925065225136656e-06,3.241597741160604832e-06,3.315270417096073009e-06,3.388943093031541185e-06,3.462615768967009361e-06,3.536288444902477537e-06,3.609961120837945713e-06,3.683633796773413889e-06,3.757306472708882065e-06,3.830979148644350242e-06,3.904651824579818418e-06,3.978324500515286594e-06,4.051997176450754770e-06,4.125669852386222946e-06,4.199342528321691122e-06,4.273015204257159298e-06,4.346687880192627475e-06,4.420360556128095651e-06,4.494033232063563827e-06,4.567705907999032003e-06,4.641378583934500179e-06 +0.000000000000000000e+00,7.936507936507436836e-08,1.587301587301487367e-07,2.380952380952231051e-07,3.174603174602974735e-07,3.968253968253718418e-07,4.761904761904462102e-07,5.555555555555205785e-07,6.349206349205949469e-07,7.142857142856693153e-07,7.936507936507436836e-07,8.730158730158180520e-07,9.523809523808924204e-07,1.031746031745966683e-06,1.111111111111040945e-06,1.190476190476115208e-06,1.269841269841189470e-06,1.349206349206263733e-06,1.428571428571337995e-06,1.507936507936412258e-06,1.587301587301486520e-06,1.666666666666560783e-06,1.746031746031635045e-06,1.825396825396709308e-06,1.904761904761783570e-06,1.984126984126857833e-06,2.063492063491932095e-06,2.142857142857006358e-06,2.222222222222080620e-06,2.301587301587154883e-06,2.380952380952229145e-06,2.460317460317303408e-06,2.539682539682377670e-06,2.619047619047451933e-06,2.698412698412526195e-06,2.777777777777600457e-06,2.857142857142674720e-06,2.936507936507748982e-06,3.015873015872823245e-06,3.095238095237897507e-06,3.174603174602971770e-06,3.253968253968046032e-06,3.333333333333120295e-06,3.412698412698194557e-06,3.492063492063268820e-06,3.571428571428343082e-06,3.650793650793417345e-06,3.730158730158491607e-06,3.809523809523565870e-06,3.888888888888639709e-06,3.968253968253713124e-06,4.047619047618786540e-06,4.126984126983859955e-06,4.206349206348933371e-06,4.285714285714006786e-06,4.365079365079080201e-06,4.444444444444153617e-06,4.523809523809227032e-06,4.603174603174300448e-06,4.682539682539373863e-06,4.761904761904447279e-06,4.841269841269520694e-06,4.920634920634594110e-06,4.999999999999667525e-06 +0.000000000000000000e+00,7.367720913733314000e-08,1.473544182746662800e-07,2.210316274119994068e-07,2.947088365493325071e-07,3.683860456866656074e-07,4.420632548239987077e-07,5.157404639613318080e-07,5.894176730986649083e-07,6.630948822359980086e-07,7.367720913733311089e-07,8.104493005106642092e-07,8.841265096479973095e-07,9.578037187853305156e-07,1.031480927922663828e-06,1.105158137059997140e-06,1.178835346197330452e-06,1.252512555334663764e-06,1.326189764471997076e-06,1.399866973609330388e-06,1.473544182746663700e-06,1.547221391883997012e-06,1.620898601021330324e-06,1.694575810158663636e-06,1.768253019295996948e-06,1.841930228433330260e-06,1.915607437570663572e-06,1.989284646707996884e-06,2.062961855845330196e-06,2.136639064982663509e-06,2.210316274119996821e-06,2.283993483257330133e-06,2.357670692394663445e-06,2.431347901531996757e-06,2.505025110669330069e-06,2.578702319806663381e-06,2.652379528943996693e-06,2.726056738081330005e-06,2.799733947218663317e-06,2.873411156355996629e-06,2.947088365493329941e-06,3.020765574630663253e-06,3.094442783767996565e-06,3.168119992905329877e-06,3.241797202042663189e-06,3.315474411179996501e-06,3.389151620317329813e-06,3.462828829454663126e-06,3.536506038591996438e-06,3.610183247729329750e-06,3.683860456866663062e-06,3.757537666003996374e-06,3.831214875141329686e-06,3.904892084278662998e-06,3.978569293415996310e-06,4.052246502553329622e-06,4.125923711690662934e-06,4.199600920827996246e-06,4.273278129965329558e-06,4.346955339102662870e-06,4.420632548239996182e-06,4.494309757377329494e-06,4.567986966514662806e-06,4.641664175651996118e-06 +0.000000000000000000e+00,7.936507936507791531e-08,1.587301587301558306e-07,2.380952380952337459e-07,3.174603174603116613e-07,3.968253968253895766e-07,4.761904761904674919e-07,5.555555555555454601e-07,6.349206349206234284e-07,7.142857142857013966e-07,7.936507936507793649e-07,8.730158730158573331e-07,9.523809523809353014e-07,1.031746031746013270e-06,1.111111111111091344e-06,1.190476190476169418e-06,1.269841269841247492e-06,1.349206349206325566e-06,1.428571428571403640e-06,1.507936507936481714e-06,1.587301587301559789e-06,1.666666666666637863e-06,1.746031746031715937e-06,1.825396825396794011e-06,1.904761904761872085e-06,1.984126984126950159e-06,2.063492063492028233e-06,2.142857142857106308e-06,2.222222222222184382e-06,2.301587301587262456e-06,2.380952380952340530e-06,2.460317460317418604e-06,2.539682539682496678e-06,2.619047619047574752e-06,2.698412698412652826e-06,2.777777777777730901e-06,2.857142857142808975e-06,2.936507936507887049e-06,3.015873015872965123e-06,3.095238095238043197e-06,3.174603174603121271e-06,3.253968253968199345e-06,3.333333333333277419e-06,3.412698412698355494e-06,3.492063492063433568e-06,3.571428571428511642e-06,3.650793650793589716e-06,3.730158730158667790e-06,3.809523809523745864e-06,3.888888888888824362e-06,3.968253968253902860e-06,4.047619047618981357e-06,4.126984126984059855e-06,4.206349206349138353e-06,4.285714285714216850e-06,4.365079365079295348e-06,4.444444444444373845e-06,4.523809523809452343e-06,4.603174603174530841e-06,4.682539682539609338e-06,4.761904761904687836e-06,4.841269841269766334e-06,4.920634920634844831e-06,4.999999999999923329e-06 +0.000000000000000000e+00,7.936507936507664476e-08,1.587301587301532895e-07,2.380952380952299343e-07,3.174603174603065791e-07,3.968253968253832238e-07,4.761904761904598686e-07,5.555555555555365663e-07,6.349206349206132640e-07,7.142857142856899617e-07,7.936507936507666594e-07,8.730158730158433571e-07,9.523809523809200548e-07,1.031746031745996753e-06,1.111111111111073556e-06,1.190476190476150360e-06,1.269841269841227163e-06,1.349206349206303967e-06,1.428571428571380770e-06,1.507936507936457574e-06,1.587301587301534378e-06,1.666666666666611181e-06,1.746031746031687985e-06,1.825396825396764788e-06,1.904761904761841592e-06,1.984126984126918396e-06,2.063492063491995199e-06,2.142857142857072003e-06,2.222222222222148806e-06,2.301587301587225610e-06,2.380952380952302413e-06,2.460317460317379217e-06,2.539682539682456021e-06,2.619047619047532824e-06,2.698412698412609628e-06,2.777777777777686431e-06,2.857142857142763235e-06,2.936507936507840039e-06,3.015873015872916842e-06,3.095238095237993646e-06,3.174603174603070449e-06,3.253968253968147253e-06,3.333333333333224056e-06,3.412698412698300860e-06,3.492063492063377664e-06,3.571428571428454467e-06,3.650793650793531271e-06,3.730158730158608074e-06,3.809523809523684878e-06,3.888888888888761681e-06,3.968253968253838485e-06,4.047619047618915289e-06,4.126984126983992092e-06,4.206349206349068896e-06,4.285714285714145699e-06,4.365079365079222503e-06,4.444444444444299307e-06,4.523809523809376110e-06,4.603174603174452914e-06,4.682539682539529717e-06,4.761904761904606521e-06,4.841269841269683324e-06,4.920634920634760128e-06,4.999999999999836932e-06 +0.000000000000000000e+00,7.936507936507815354e-08,1.587301587301563071e-07,2.380952380952344606e-07,3.174603174603126142e-07,3.968253968253907942e-07,4.761904761904689742e-07,5.555555555555471542e-07,6.349206349206253342e-07,7.142857142857035142e-07,7.936507936507816942e-07,8.730158730158598742e-07,9.523809523809380543e-07,1.031746031746016234e-06,1.111111111111094308e-06,1.190476190476172383e-06,1.269841269841250457e-06,1.349206349206328531e-06,1.428571428571406605e-06,1.507936507936484679e-06,1.587301587301562753e-06,1.666666666666640827e-06,1.746031746031718901e-06,1.825396825396796976e-06,1.904761904761875050e-06,1.984126984126953124e-06,2.063492063492031198e-06,2.142857142857109272e-06,2.222222222222187346e-06,2.301587301587265420e-06,2.380952380952343495e-06,2.460317460317421569e-06,2.539682539682499643e-06,2.619047619047577717e-06,2.698412698412655791e-06,2.777777777777733865e-06,2.857142857142811939e-06,2.936507936507890013e-06,3.015873015872968088e-06,3.095238095238046162e-06,3.174603174603124236e-06,3.253968253968202310e-06,3.333333333333280384e-06,3.412698412698358458e-06,3.492063492063436532e-06,3.571428571428514607e-06,3.650793650793592681e-06,3.730158730158670755e-06,3.809523809523748829e-06,3.888888888888826903e-06,3.968253968253904554e-06,4.047619047618982204e-06,4.126984126984059855e-06,4.206349206349137505e-06,4.285714285714215156e-06,4.365079365079292807e-06,4.444444444444370457e-06,4.523809523809448108e-06,4.603174603174525759e-06,4.682539682539603409e-06,4.761904761904681060e-06,4.841269841269758710e-06,4.920634920634836361e-06,4.999999999999914012e-06 +0.000000000000000000e+00,7.367267593547437007e-08,1.473453518709487401e-07,2.210180278064231102e-07,2.946907037418974803e-07,3.683633796773718504e-07,4.420360556128462204e-07,5.157087315483206434e-07,5.893814074837950664e-07,6.630540834192694895e-07,7.367267593547439125e-07,8.103994352902183355e-07,8.840721112256927585e-07,9.577447871611671815e-07,1.031417463096641710e-06,1.105090139032116239e-06,1.178762814967590768e-06,1.252435490903065297e-06,1.326108166838539826e-06,1.399780842774014355e-06,1.473453518709488884e-06,1.547126194644963413e-06,1.620798870580437942e-06,1.694471546515912470e-06,1.768144222451386999e-06,1.841816898386861528e-06,1.915489574322336057e-06,1.989162250257810586e-06,2.062834926193285115e-06,2.136507602128759644e-06,2.210180278064234173e-06,2.283852953999708702e-06,2.357525629935183230e-06,2.431198305870657759e-06,2.504870981806132288e-06,2.578543657741606817e-06,2.652216333677081346e-06,2.725889009612555875e-06,2.799561685548030404e-06,2.873234361483504933e-06,2.946907037418979462e-06,3.020579713354453990e-06,3.094252389289928519e-06,3.167925065225403048e-06,3.241597741160877577e-06,3.315270417096352106e-06,3.388943093031826635e-06,3.462615768967301164e-06,3.536288444902775693e-06,3.609961120838250222e-06,3.683633796773724750e-06,3.757306472709199279e-06,3.830979148644673808e-06,3.904651824580147914e-06,3.978324500515622019e-06,4.051997176451096124e-06,4.125669852386570230e-06,4.199342528322044335e-06,4.273015204257518440e-06,4.346687880192992546e-06,4.420360556128466651e-06,4.494033232063940757e-06,4.567705907999414862e-06,4.641378583934888967e-06 +0.000000000000000000e+00,8.761260820891624197e-08,1.752252164178324839e-07,2.628378246267487259e-07,3.504504328356649679e-07,4.380630410445812098e-07,5.256756492534974518e-07,6.132882574624136938e-07,7.009008656713299357e-07,7.885134738802461777e-07,8.761260820891624197e-07,9.637386902980786616e-07,1.051351298506994904e-06,1.138963906715911146e-06,1.226576514924827388e-06,1.314189123133743630e-06,1.401801731342659871e-06,1.489414339551576113e-06,1.577026947760492355e-06,1.664639555969408597e-06,1.752252164178324839e-06,1.839864772387241081e-06,1.927477380596157323e-06,2.015089988805073565e-06,2.102702597013989807e-06,2.190315205222906049e-06,2.277927813431822291e-06,2.365540421640738533e-06,2.453153029849654775e-06,2.540765638058571017e-06,2.628378246267487259e-06,2.715990854476403501e-06,2.803603462685319743e-06,2.891216070894235985e-06,2.978828679103152227e-06,3.066441287312068469e-06,3.154053895520984711e-06,3.241666503729900953e-06,3.329279111938817195e-06,3.416891720147733437e-06,3.504504328356649679e-06,3.592116936565565921e-06,3.679729544774482163e-06,3.767342152983398405e-06,3.854954761192314647e-06,3.942567369401230889e-06,4.030179977610147130e-06,4.117792585819063372e-06,4.205405194027979614e-06,4.293017802236895856e-06,4.380630410445812098e-06,4.468243018654728340e-06,4.555855626863644582e-06,4.643468235072560824e-06,4.731080843281477066e-06,4.818693451490393308e-06,4.906306059699309550e-06,4.993918667908225792e-06,5.081531276117142034e-06,5.169143884326058276e-06,5.256756492534974518e-06,5.344369100743890760e-06,5.431981708952807002e-06,5.519594317161723244e-06 +0.000000000000000000e+00,8.585737977595727197e-08,1.717147595519145439e-07,2.575721393278718159e-07,3.434295191038290879e-07,4.292868988797863599e-07,5.151442786557436318e-07,6.010016584317008509e-07,6.868590382076580699e-07,7.727164179836152889e-07,8.585737977595725079e-07,9.444311775355297270e-07,1.030288557311487052e-06,1.116145937087444377e-06,1.202003316863401702e-06,1.287860696639359027e-06,1.373718076415316352e-06,1.459575456191273676e-06,1.545432835967231001e-06,1.631290215743188326e-06,1.717147595519145651e-06,1.803004975295102976e-06,1.888862355071060301e-06,1.974719734847017414e-06,2.060577114622974527e-06,2.146434494398931640e-06,2.232291874174888754e-06,2.318149253950845867e-06,2.404006633726802980e-06,2.489864013502760093e-06,2.575721393278717206e-06,2.661578773054674319e-06,2.747436152830631433e-06,2.833293532606588546e-06,2.919150912382545659e-06,3.005008292158502772e-06,3.090865671934459885e-06,3.176723051710416998e-06,3.262580431486374111e-06,3.348437811262331225e-06,3.434295191038288338e-06,3.520152570814245451e-06,3.606009950590202564e-06,3.691867330366159677e-06,3.777724710142116790e-06,3.863582089918073903e-06,3.949439469694031440e-06,4.035296849469988977e-06,4.121154229245946513e-06,4.207011609021904050e-06,4.292868988797861587e-06,4.378726368573819123e-06,4.464583748349776660e-06,4.550441128125734197e-06,4.636298507901691733e-06,4.722155887677649270e-06,4.808013267453606807e-06,4.893870647229564343e-06,4.979728027005521880e-06,5.065585406781479417e-06,5.151442786557436954e-06,5.237300166333394490e-06,5.323157546109352027e-06,5.409014925885309564e-06 +0.000000000000000000e+00,8.772895018681000124e-08,1.754579003736200025e-07,2.631868505604300037e-07,3.509158007472400050e-07,4.386447509340500062e-07,5.263737011208600075e-07,6.141026513076700616e-07,7.018316014944801158e-07,7.895605516812901700e-07,8.772895018681002242e-07,9.650184520549102784e-07,1.052747402241720227e-06,1.140476352428530175e-06,1.228205302615340123e-06,1.315934252802150072e-06,1.403663202988960020e-06,1.491392153175769968e-06,1.579121103362579916e-06,1.666850053549389865e-06,1.754579003736199813e-06,1.842307953923009761e-06,1.930036904109819710e-06,2.017765854296629658e-06,2.105494804483439606e-06,2.193223754670249555e-06,2.280952704857059503e-06,2.368681655043869451e-06,2.456410605230679400e-06,2.544139555417489348e-06,2.631868505604299296e-06,2.719597455791109244e-06,2.807326405977919193e-06,2.895055356164729141e-06,2.982784306351539089e-06,3.070513256538349038e-06,3.158242206725158986e-06,3.245971156911968934e-06,3.333700107098778883e-06,3.421429057285588831e-06,3.509158007472398779e-06,3.596886957659208727e-06,3.684615907846018676e-06,3.772344858032828624e-06,3.860073808219638572e-06,3.947802758406448521e-06,4.035531708593258469e-06,4.123260658780068417e-06,4.210989608966878366e-06,4.298718559153688314e-06,4.386447509340498262e-06,4.474176459527308210e-06,4.561905409714118159e-06,4.649634359900928107e-06,4.737363310087738055e-06,4.825092260274548004e-06,4.912821210461357952e-06,5.000550160648167900e-06,5.088279110834977849e-06,5.176008061021787797e-06,5.263737011208597745e-06,5.351465961395407693e-06,5.439194911582217642e-06,5.526923861769027590e-06 +0.000000000000000000e+00,8.351561086879300492e-08,1.670312217375860098e-07,2.505468326063790015e-07,3.340624434751719667e-07,4.175780543439649320e-07,5.010936652127578972e-07,5.846092760815509153e-07,6.681248869503439335e-07,7.516404978191369517e-07,8.351561086879299698e-07,9.186717195567229880e-07,1.002187330425516006e-06,1.085702941294309024e-06,1.169218552163102042e-06,1.252734163031895061e-06,1.336249773900688079e-06,1.419765384769481097e-06,1.503280995638274115e-06,1.586796606507067133e-06,1.670312217375860151e-06,1.753827828244653170e-06,1.837343439113446188e-06,1.920859049982239418e-06,2.004374660851032436e-06,2.087890271719825454e-06,2.171405882588618472e-06,2.254921493457411490e-06,2.338437104326204508e-06,2.421952715194997527e-06,2.505468326063790545e-06,2.588983936932583563e-06,2.672499547801376581e-06,2.756015158670169599e-06,2.839530769538962617e-06,2.923046380407755635e-06,3.006561991276548654e-06,3.090077602145341672e-06,3.173593213014134690e-06,3.257108823882927708e-06,3.340624434751720726e-06,3.424140045620513744e-06,3.507655656489306763e-06,3.591171267358099781e-06,3.674686878226892799e-06,3.758202489095685817e-06,3.841718099964478835e-06,3.925233710833271853e-06,4.008749321702064872e-06,4.092264932570857890e-06,4.175780543439650908e-06,4.259296154308443926e-06,4.342811765177236944e-06,4.426327376046029962e-06,4.509842986914822980e-06,4.593358597783615999e-06,4.676874208652409017e-06,4.760389819521202035e-06,4.843905430389995053e-06,4.927421041258788071e-06,5.010936652127581089e-06,5.094452262996374108e-06,5.177967873865167126e-06,5.261483484733960144e-06 +0.000000000000000000e+00,8.627574710444243789e-08,1.725514942088848758e-07,2.588272413133273269e-07,3.451029884177698045e-07,4.313787355222122821e-07,5.176544826266547597e-07,6.039302297310972373e-07,6.902059768355397148e-07,7.764817239399821924e-07,8.627574710444246700e-07,9.490332181488671476e-07,1.035308965253309731e-06,1.121584712357752420e-06,1.207860459462195110e-06,1.294136206566637799e-06,1.380411953671080488e-06,1.466687700775523178e-06,1.552963447879965867e-06,1.639239194984408557e-06,1.725514942088851246e-06,1.811790689193293935e-06,1.898066436297736625e-06,1.984342183402179314e-06,2.070617930506622003e-06,2.156893677611064693e-06,2.243169424715507382e-06,2.329445171819950071e-06,2.415720918924392761e-06,2.501996666028835450e-06,2.588272413133278139e-06,2.674548160237720829e-06,2.760823907342163518e-06,2.847099654446606207e-06,2.933375401551048897e-06,3.019651148655491586e-06,3.105926895759934275e-06,3.192202642864376965e-06,3.278478389968819654e-06,3.364754137073262344e-06,3.451029884177705033e-06,3.537305631282147722e-06,3.623581378386590412e-06,3.709857125491033101e-06,3.796132872595475790e-06,3.882408619699918056e-06,3.968684366804360322e-06,4.054960113908802588e-06,4.141235861013244854e-06,4.227511608117687119e-06,4.313787355222129385e-06,4.400063102326571651e-06,4.486338849431013917e-06,4.572614596535456183e-06,4.658890343639898449e-06,4.745166090744340714e-06,4.831441837848782980e-06,4.917717584953225246e-06,5.003993332057667512e-06,5.090269079162109778e-06,5.176544826266552044e-06,5.262820573370994309e-06,5.349096320475436575e-06,5.435372067579878841e-06 +0.000000000000000000e+00,8.261388732064393987e-08,1.652277746412878797e-07,2.478416619619318196e-07,3.304555492825757595e-07,4.130694366032196994e-07,4.956833239238636392e-07,5.782972112445075791e-07,6.609110985651515190e-07,7.435249858857954588e-07,8.261388732064393987e-07,9.087527605270833386e-07,9.913666478477272785e-07,1.073980535168371112e-06,1.156594422489014946e-06,1.239208309809658780e-06,1.321822197130302614e-06,1.404436084450946448e-06,1.487049971771590282e-06,1.569663859092234116e-06,1.652277746412877950e-06,1.734891633733521784e-06,1.817505521054165618e-06,1.900119408374809452e-06,1.982733295695453286e-06,2.065347183016097120e-06,2.147961070336740954e-06,2.230574957657384788e-06,2.313188844978028622e-06,2.395802732298672456e-06,2.478416619619316290e-06,2.561030506939960124e-06,2.643644394260603958e-06,2.726258281581247792e-06,2.808872168901891626e-06,2.891486056222535460e-06,2.974099943543179294e-06,3.056713830863823128e-06,3.139327718184466962e-06,3.221941605505110796e-06,3.304555492825754630e-06,3.387169380146398464e-06,3.469783267467042298e-06,3.552397154787686132e-06,3.635011042108329966e-06,3.717624929428973800e-06,3.800238816749617634e-06,3.882852704070261468e-06,3.965466591390905726e-06,4.048080478711549983e-06,4.130694366032194241e-06,4.213308253352838498e-06,4.295922140673482756e-06,4.378536027994127013e-06,4.461149915314771271e-06,4.543763802635415528e-06,4.626377689956059786e-06,4.708991577276704043e-06,4.791605464597348301e-06,4.874219351917992558e-06,4.956833239238636816e-06,5.039447126559281073e-06,5.122061013879925331e-06,5.204674901200569588e-06 +0.000000000000000000e+00,8.770333016350545042e-08,1.754066603270109008e-07,2.631099904905163513e-07,3.508133206540218017e-07,4.385166508175272521e-07,5.262199809810327025e-07,6.139233111445381530e-07,7.016266413080436034e-07,7.893299714715490538e-07,8.770333016350545042e-07,9.647366317985600605e-07,1.052439961962065617e-06,1.140143292125571173e-06,1.227846622289076729e-06,1.315549952452582286e-06,1.403253282616087842e-06,1.490956612779593398e-06,1.578659942943098955e-06,1.666363273106604511e-06,1.754066603270110067e-06,1.841769933433615624e-06,1.929473263597120968e-06,2.017176593760626313e-06,2.104879923924131657e-06,2.192583254087637002e-06,2.280286584251142346e-06,2.367989914414647691e-06,2.455693244578153035e-06,2.543396574741658380e-06,2.631099904905163724e-06,2.718803235068669069e-06,2.806506565232174414e-06,2.894209895395679758e-06,2.981913225559185103e-06,3.069616555722690447e-06,3.157319885886195792e-06,3.245023216049701136e-06,3.332726546213206481e-06,3.420429876376711825e-06,3.508133206540217170e-06,3.595836536703722514e-06,3.683539866867227859e-06,3.771243197030733203e-06,3.858946527194238548e-06,3.946649857357743893e-06,4.034353187521249237e-06,4.122056517684754582e-06,4.209759847848259926e-06,4.297463178011765271e-06,4.385166508175270615e-06,4.472869838338775960e-06,4.560573168502281304e-06,4.648276498665786649e-06,4.735979828829291993e-06,4.823683158992797338e-06,4.911386489156302683e-06,4.999089819319808027e-06,5.086793149483313372e-06,5.174496479646818716e-06,5.262199809810324061e-06,5.349903139973829405e-06,5.437606470137334750e-06,5.525309800300840094e-06 +0.000000000000000000e+00,8.357687728980333481e-08,1.671537545796066696e-07,2.507306318694100044e-07,3.343075091592133392e-07,4.178843864490166741e-07,5.014612637388200089e-07,5.850381410286233437e-07,6.686150183184266785e-07,7.521918956082300133e-07,8.357687728980333481e-07,9.193456501878366829e-07,1.002922527477640018e-06,1.086499404767443247e-06,1.170076282057246476e-06,1.253653159347049705e-06,1.337230036636852933e-06,1.420806913926656162e-06,1.504383791216459391e-06,1.587960668506262620e-06,1.671537545796065849e-06,1.755114423085869078e-06,1.838691300375672307e-06,1.922268177665475536e-06,2.005845054955278765e-06,2.089421932245081994e-06,2.172998809534885223e-06,2.256575686824688452e-06,2.340152564114491681e-06,2.423729441404294910e-06,2.507306318694098139e-06,2.590883195983901367e-06,2.674460073273704596e-06,2.758036950563507825e-06,2.841613827853311054e-06,2.925190705143114283e-06,3.008767582432917512e-06,3.092344459722720741e-06,3.175921337012523970e-06,3.259498214302327199e-06,3.343075091592130428e-06,3.426651968881933657e-06,3.510228846171736886e-06,3.593805723461540115e-06,3.677382600751343344e-06,3.760959478041146573e-06,3.844536355330950225e-06,3.928113232620754301e-06,4.011690109910558377e-06,4.095266987200362453e-06,4.178843864490166529e-06,4.262420741779970605e-06,4.345997619069774681e-06,4.429574496359578757e-06,4.513151373649382833e-06,4.596728250939186909e-06,4.680305128228990985e-06,4.763882005518795061e-06,4.847458882808599137e-06,4.931035760098403213e-06,5.014612637388207289e-06,5.098189514678011364e-06,5.181766391967815440e-06,5.265343269257619516e-06 +0.000000000000000000e+00,8.761260820891866395e-08,1.752252164178373279e-07,2.628378246267559786e-07,3.504504328356746029e-07,4.380630410445932271e-07,5.256756492535118514e-07,6.132882574624304227e-07,7.009008656713489940e-07,7.885134738802675653e-07,8.761260820891861366e-07,9.637386902981047079e-07,1.051351298507023279e-06,1.138963906715941851e-06,1.226576514924860422e-06,1.314189123133778993e-06,1.401801731342697564e-06,1.489414339551616136e-06,1.577026947760534707e-06,1.664639555969453278e-06,1.752252164178371850e-06,1.839864772387290421e-06,1.927477380596208992e-06,2.015089988805127775e-06,2.102702597014046558e-06,2.190315205222965341e-06,2.277927813431884125e-06,2.365540421640802908e-06,2.453153029849721691e-06,2.540765638058640474e-06,2.628378246267559257e-06,2.715990854476478040e-06,2.803603462685396823e-06,2.891216070894315606e-06,2.978828679103234389e-06,3.066441287312153172e-06,3.154053895521071955e-06,3.241666503729990738e-06,3.329279111938909521e-06,3.416891720147828304e-06,3.504504328356747087e-06,3.592116936565665871e-06,3.679729544774584654e-06,3.767342152983503437e-06,3.854954761192422220e-06,3.942567369401341003e-06,4.030179977610259786e-06,4.117792585819178569e-06,4.205405194028097352e-06,4.293017802237016135e-06,4.380630410445934918e-06,4.468243018654853701e-06,4.555855626863772484e-06,4.643468235072691267e-06,4.731080843281610050e-06,4.818693451490528833e-06,4.906306059699447617e-06,4.993918667908366400e-06,5.081531276117285183e-06,5.169143884326203966e-06,5.256756492535122749e-06,5.344369100744041532e-06,5.431981708952960315e-06,5.519594317161879098e-06 +0.000000000000000000e+00,8.585737977595912486e-08,1.717147595519182497e-07,2.575721393278773746e-07,3.434295191038364994e-07,4.292868988797956243e-07,5.151442786557547491e-07,6.010016584317138740e-07,6.868590382076729988e-07,7.727164179836321237e-07,8.585737977595912486e-07,9.444311775355503734e-07,1.030288557311509498e-06,1.116145937087468729e-06,1.202003316863427960e-06,1.287860696639387190e-06,1.373718076415346421e-06,1.459575456191305652e-06,1.545432835967264883e-06,1.631290215743224113e-06,1.717147595519183344e-06,1.803004975295142575e-06,1.888862355071101806e-06,1.974719734847061036e-06,2.060577114623020267e-06,2.146434494398979498e-06,2.232291874174938729e-06,2.318149253950897959e-06,2.404006633726857190e-06,2.489864013502816421e-06,2.575721393278775651e-06,2.661578773054734882e-06,2.747436152830694113e-06,2.833293532606653344e-06,2.919150912382612574e-06,3.005008292158571805e-06,3.090865671934531036e-06,3.176723051710490267e-06,3.262580431486449497e-06,3.348437811262408728e-06,3.434295191038367959e-06,3.520152570814327190e-06,3.606009950590286420e-06,3.691867330366245651e-06,3.777724710142204882e-06,3.863582089918163689e-06,3.949439469694122920e-06,4.035296849470082150e-06,4.121154229246041381e-06,4.207011609022000612e-06,4.292868988797959843e-06,4.378726368573919073e-06,4.464583748349878304e-06,4.550441128125837535e-06,4.636298507901796766e-06,4.722155887677755996e-06,4.808013267453715227e-06,4.893870647229674458e-06,4.979728027005633689e-06,5.065585406781592919e-06,5.151442786557552150e-06,5.237300166333511381e-06,5.323157546109470611e-06,5.409014925885429842e-06 +0.000000000000000000e+00,8.770333016350670774e-08,1.754066603270134155e-07,2.631099904905201100e-07,3.508133206540267780e-07,4.385166508175334460e-07,5.262199809810401141e-07,6.139233111445467292e-07,7.016266413080533443e-07,7.893299714715599593e-07,8.770333016350665744e-07,9.647366317985731895e-07,1.052439961962079805e-06,1.140143292125586420e-06,1.227846622289093035e-06,1.315549952452599650e-06,1.403253282616106265e-06,1.490956612779612880e-06,1.578659942943119495e-06,1.666363273106626110e-06,1.754066603270132725e-06,1.841769933433639340e-06,1.929473263597145956e-06,2.017176593760652571e-06,2.104879923924159186e-06,2.192583254087665801e-06,2.280286584251172416e-06,2.367989914414679031e-06,2.455693244578185646e-06,2.543396574741692261e-06,2.631099904905198876e-06,2.718803235068705491e-06,2.806506565232212106e-06,2.894209895395718722e-06,2.981913225559225337e-06,3.069616555722731952e-06,3.157319885886238567e-06,3.245023216049745182e-06,3.332726546213251797e-06,3.420429876376758412e-06,3.508133206540265027e-06,3.595836536703771642e-06,3.683539866867278257e-06,3.771243197030784872e-06,3.858946527194291064e-06,3.946649857357797256e-06,4.034353187521303447e-06,4.122056517684809639e-06,4.209759847848315830e-06,4.297463178011822022e-06,4.385166508175328214e-06,4.472869838338834405e-06,4.560573168502340597e-06,4.648276498665846788e-06,4.735979828829352980e-06,4.823683158992859171e-06,4.911386489156365363e-06,4.999089819319871555e-06,5.086793149483377746e-06,5.174496479646883938e-06,5.262199809810390129e-06,5.349903139973896321e-06,5.437606470137402512e-06,5.525309800300908704e-06 +0.000000000000000000e+00,8.351561086879583719e-08,1.670312217375916744e-07,2.505468326063875248e-07,3.340624434751834017e-07,4.175780543439792786e-07,5.010936652127751555e-07,5.846092760815710324e-07,6.681248869503669093e-07,7.516404978191627862e-07,8.351561086879586631e-07,9.186717195567545399e-07,1.002187330425550523e-06,1.085702941294346505e-06,1.169218552163142488e-06,1.252734163031938471e-06,1.336249773900734454e-06,1.419765384769530437e-06,1.503280995638326419e-06,1.586796606507122402e-06,1.670312217375918385e-06,1.753827828244714368e-06,1.837343439113510350e-06,1.920859049982306333e-06,2.004374660851102316e-06,2.087890271719898299e-06,2.171405882588694282e-06,2.254921493457490264e-06,2.338437104326286247e-06,2.421952715195082230e-06,2.505468326063878213e-06,2.588983936932674195e-06,2.672499547801470178e-06,2.756015158670266161e-06,2.839530769539062144e-06,2.923046380407858126e-06,3.006561991276654109e-06,3.090077602145450092e-06,3.173593213014246075e-06,3.257108823883042058e-06,3.340624434751838040e-06,3.424140045620634023e-06,3.507655656489430006e-06,3.591171267358225989e-06,3.674686878227021971e-06,3.758202489095817954e-06,3.841718099964614360e-06,3.925233710833410767e-06,4.008749321702207173e-06,4.092264932571003579e-06,4.175780543439799986e-06,4.259296154308596392e-06,4.342811765177392798e-06,4.426327376046189205e-06,4.509842986914985611e-06,4.593358597783782017e-06,4.676874208652578423e-06,4.760389819521374830e-06,4.843905430390171236e-06,4.927421041258967642e-06,5.010936652127764049e-06,5.094452262996560455e-06,5.177967873865356861e-06,5.261483484734153267e-06 +0.000000000000000000e+00,8.627574710444484664e-08,1.725514942088896933e-07,2.588272413133345267e-07,3.451029884177793336e-07,4.313787355222241405e-07,5.176544826266689475e-07,6.039302297311137544e-07,6.902059768355585613e-07,7.764817239400033683e-07,8.627574710444481752e-07,9.490332181488929821e-07,1.035308965253337683e-06,1.121584712357782490e-06,1.207860459462227297e-06,1.294136206566672104e-06,1.380411953671116911e-06,1.466687700775561718e-06,1.552963447880006525e-06,1.639239194984451332e-06,1.725514942088896139e-06,1.811790689193340946e-06,1.898066436297785752e-06,1.984342183402230559e-06,2.070617930506675366e-06,2.156893677611120173e-06,2.243169424715564980e-06,2.329445171820009787e-06,2.415720918924454594e-06,2.501996666028899401e-06,2.588272413133344208e-06,2.674548160237789015e-06,2.760823907342233822e-06,2.847099654446678629e-06,2.933375401551123436e-06,3.019651148655568243e-06,3.105926895760013050e-06,3.192202642864457856e-06,3.278478389968902663e-06,3.364754137073347470e-06,3.451029884177792277e-06,3.537305631282237084e-06,3.623581378386681891e-06,3.709857125491126698e-06,3.796132872595571505e-06,3.882408619700016312e-06,3.968684366804461119e-06,4.054960113908905926e-06,4.141235861013350733e-06,4.227511608117795540e-06,4.313787355222240347e-06,4.400063102326685154e-06,4.486338849431129960e-06,4.572614596535574767e-06,4.658890343640019574e-06,4.745166090744464381e-06,4.831441837848909188e-06,4.917717584953353995e-06,5.003993332057798802e-06,5.090269079162243609e-06,5.176544826266688416e-06,5.262820573371133223e-06,5.349096320475578030e-06,5.435372067580022837e-06 +0.000000000000000000e+00,8.261388732064593834e-08,1.652277746412918767e-07,2.478416619619378018e-07,3.304555492825837004e-07,4.130694366032295991e-07,4.956833239238754977e-07,5.782972112445214493e-07,6.609110985651674008e-07,7.435249858858133524e-07,8.261388732064593040e-07,9.087527605271052556e-07,9.913666478477512071e-07,1.073980535168397159e-06,1.156594422489043110e-06,1.239208309809689062e-06,1.321822197130335013e-06,1.404436084450980965e-06,1.487049971771626917e-06,1.569663859092272868e-06,1.652277746412918820e-06,1.734891633733564771e-06,1.817505521054210723e-06,1.900119408374856674e-06,1.982733295695502838e-06,2.065347183016148789e-06,2.147961070336794741e-06,2.230574957657440693e-06,2.313188844978086644e-06,2.395802732298732596e-06,2.478416619619378547e-06,2.561030506940024499e-06,2.643644394260670450e-06,2.726258281581316402e-06,2.808872168901962354e-06,2.891486056222608305e-06,2.974099943543254257e-06,3.056713830863900208e-06,3.139327718184546160e-06,3.221941605505192111e-06,3.304555492825838063e-06,3.387169380146484015e-06,3.469783267467129966e-06,3.552397154787775918e-06,3.635011042108421869e-06,3.717624929429067821e-06,3.800238816749713772e-06,3.882852704070359724e-06,3.965466591391005676e-06,4.048080478711651627e-06,4.130694366032297579e-06,4.213308253352943530e-06,4.295922140673589482e-06,4.378536027994235433e-06,4.461149915314881385e-06,4.543763802635527337e-06,4.626377689956173288e-06,4.708991577276819240e-06,4.791605464597465191e-06,4.874219351918111143e-06,4.956833239238757095e-06,5.039447126559403046e-06,5.122061013880048998e-06,5.204674901200694949e-06 +0.000000000000000000e+00,8.618231324632796178e-08,1.723646264926559236e-07,2.585469397389838986e-07,3.447292529853119001e-07,4.309115662316399015e-07,5.170938794779679030e-07,6.032761927242959045e-07,6.894585059706239060e-07,7.756408192169519075e-07,8.618231324632799089e-07,9.480054457096079104e-07,1.034187758955936018e-06,1.120370072202264019e-06,1.206552385448592021e-06,1.292734698694920022e-06,1.378917011941248024e-06,1.465099325187576025e-06,1.551281638433904027e-06,1.637463951680232028e-06,1.723646264926560030e-06,1.809828578172888031e-06,1.896010891419216033e-06,1.982193204665544034e-06,2.068375517911872036e-06,2.154557831158200037e-06,2.240740144404528039e-06,2.326922457650856040e-06,2.413104770897184042e-06,2.499287084143512043e-06,2.585469397389840044e-06,2.671651710636168046e-06,2.757834023882496047e-06,2.844016337128824049e-06,2.930198650375152050e-06,3.016380963621480052e-06,3.102563276867808053e-06,3.188745590114136055e-06,3.274927903360464056e-06,3.361110216606792058e-06,3.447292529853120059e-06,3.533474843099448061e-06,3.619657156345776062e-06,3.705839469592104064e-06,3.792021782838432065e-06,3.878204096084760067e-06,3.964386409331088068e-06,4.050568722577416070e-06,4.136751035823744071e-06,4.222933349070072073e-06,4.309115662316400074e-06,4.395297975562728076e-06,4.481480288809056077e-06,4.567662602055384079e-06,4.653844915301712080e-06,4.740027228548040082e-06,4.826209541794368083e-06,4.912391855040696085e-06,4.998574168287024086e-06,5.084756481533352087e-06,5.170938794779680089e-06,5.257121108026008090e-06,5.343303421272336092e-06,5.429485734518664093e-06 +0.000000000000000000e+00,8.590102749624715755e-08,1.718020549924943151e-07,2.577030824887414462e-07,3.436041099849885772e-07,4.295051374812357083e-07,5.154061649774828923e-07,6.013071924737300764e-07,6.872082199699772604e-07,7.731092474662244444e-07,8.590102749624716284e-07,9.449113024587188124e-07,1.030812329954965996e-06,1.116713357451213075e-06,1.202614384947460153e-06,1.288515412443707231e-06,1.374416439939954309e-06,1.460317467436201387e-06,1.546218494932448465e-06,1.632119522428695543e-06,1.718020549924942622e-06,1.803921577421189700e-06,1.889822604917436778e-06,1.975723632413683856e-06,2.061624659909930722e-06,2.147525687406177589e-06,2.233426714902424455e-06,2.319327742398671321e-06,2.405228769894918188e-06,2.491129797391165054e-06,2.577030824887411921e-06,2.662931852383658787e-06,2.748832879879905653e-06,2.834733907376152520e-06,2.920634934872399386e-06,3.006535962368646253e-06,3.092436989864893119e-06,3.178338017361139985e-06,3.264239044857386852e-06,3.350140072353633718e-06,3.436041099849880584e-06,3.521942127346127451e-06,3.607843154842374317e-06,3.693744182338621184e-06,3.779645209834868050e-06,3.865546237331114916e-06,3.951447264827361783e-06,4.037348292323608649e-06,4.123249319819855515e-06,4.209150347316102382e-06,4.295051374812349248e-06,4.380952402308596115e-06,4.466853429804842981e-06,4.552754457301089847e-06,4.638655484797336714e-06,4.724556512293583580e-06,4.810457539789830446e-06,4.896358567286077313e-06,4.982259594782324179e-06,5.068160622278571046e-06,5.154061649774817912e-06,5.239962677271064778e-06,5.325863704767311645e-06,5.411764732263558511e-06 +0.000000000000000000e+00,8.274418340964827292e-08,1.654883668192965458e-07,2.482325502289448320e-07,3.309767336385931446e-07,4.137209170482414572e-07,4.964651004578897699e-07,5.792092838675381354e-07,6.619534672771865010e-07,7.446976506868348665e-07,8.274418340964832321e-07,9.101860175061315977e-07,9.929302009157799632e-07,1.075674384325428329e-06,1.158418567735076694e-06,1.241162751144725060e-06,1.323906934554373425e-06,1.406651117964021791e-06,1.489395301373670157e-06,1.572139484783318522e-06,1.654883668192966888e-06,1.737627851602615253e-06,1.820372035012263619e-06,1.903116218421911984e-06,1.985860401831560350e-06,2.068604585241208716e-06,2.151348768650857081e-06,2.234092952060505447e-06,2.316837135470153812e-06,2.399581318879802178e-06,2.482325502289450543e-06,2.565069685699098909e-06,2.647813869108747274e-06,2.730558052518395640e-06,2.813302235928044006e-06,2.896046419337692371e-06,2.978790602747340737e-06,3.061534786156989102e-06,3.144278969566637468e-06,3.227023152976285833e-06,3.309767336385934199e-06,3.392511519795582565e-06,3.475255703205230930e-06,3.557999886614879296e-06,3.640744070024527661e-06,3.723488253434176027e-06,3.806232436843824392e-06,3.888976620253472758e-06,3.971720803663121547e-06,4.054464987072770336e-06,4.137209170482419125e-06,4.219953353892067914e-06,4.302697537301716703e-06,4.385441720711365492e-06,4.468185904121014281e-06,4.550930087530663071e-06,4.633674270940311860e-06,4.716418454349960649e-06,4.799162637759609438e-06,4.881906821169258227e-06,4.964651004578907016e-06,5.047395187988555805e-06,5.130139371398204594e-06,5.212883554807853383e-06 +0.000000000000000000e+00,8.618231324632920586e-08,1.723646264926584117e-07,2.585469397389876043e-07,3.447292529853167705e-07,4.309115662316459366e-07,5.170938794779751028e-07,6.032761927243042690e-07,6.894585059706334351e-07,7.756408192169626013e-07,8.618231324632917674e-07,9.480054457096209336e-07,1.034187758955949994e-06,1.120370072202279054e-06,1.206552385448608114e-06,1.292734698694937175e-06,1.378917011941266235e-06,1.465099325187595295e-06,1.551281638433924355e-06,1.637463951680253416e-06,1.723646264926582476e-06,1.809828578172911536e-06,1.896010891419240597e-06,1.982193204665569445e-06,2.068375517911898294e-06,2.154557831158227142e-06,2.240740144404555991e-06,2.326922457650884839e-06,2.413104770897213688e-06,2.499287084143542536e-06,2.585469397389871385e-06,2.671651710636200233e-06,2.757834023882529082e-06,2.844016337128857930e-06,2.930198650375186779e-06,3.016380963621515627e-06,3.102563276867844476e-06,3.188745590114173324e-06,3.274927903360502173e-06,3.361110216606831021e-06,3.447292529853159870e-06,3.533474843099488718e-06,3.619657156345817567e-06,3.705839469592146415e-06,3.792021782838475264e-06,3.878204096084804112e-06,3.964386409331132961e-06,4.050568722577461809e-06,4.136751035823790658e-06,4.222933349070119506e-06,4.309115662316448355e-06,4.395297975562777204e-06,4.481480288809106052e-06,4.567662602055434901e-06,4.653844915301763749e-06,4.740027228548092598e-06,4.826209541794421446e-06,4.912391855040750295e-06,4.998574168287079143e-06,5.084756481533407992e-06,5.170938794779736840e-06,5.257121108026065689e-06,5.343303421272394537e-06,5.429485734518723386e-06 +0.000000000000000000e+00,8.590102749624865309e-08,1.718020549924973062e-07,2.577030824887459460e-07,3.436041099849945594e-07,4.295051374812431728e-07,5.154061649774917862e-07,6.013071924737403466e-07,6.872082199699889071e-07,7.731092474662374675e-07,8.590102749624860280e-07,9.449113024587345884e-07,1.030812329954983149e-06,1.116713357451231709e-06,1.202614384947480270e-06,1.288515412443728830e-06,1.374416439939977391e-06,1.460317467436225951e-06,1.546218494932474512e-06,1.632119522428723072e-06,1.718020549924971632e-06,1.803921577421220193e-06,1.889822604917468753e-06,1.975723632413717314e-06,2.061624659909965874e-06,2.147525687406214435e-06,2.233426714902462995e-06,2.319327742398711556e-06,2.405228769894960116e-06,2.491129797391208676e-06,2.577030824887457237e-06,2.662931852383705797e-06,2.748832879879954358e-06,2.834733907376202918e-06,2.920634934872451479e-06,3.006535962368700039e-06,3.092436989864948600e-06,3.178338017361197160e-06,3.264239044857445720e-06,3.350140072353694281e-06,3.436041099849942841e-06,3.521942127346191402e-06,3.607843154842439962e-06,3.693744182338688523e-06,3.779645209834937083e-06,3.865546237331186067e-06,3.951447264827435475e-06,4.037348292323684882e-06,4.123249319819934289e-06,4.209150347316183697e-06,4.295051374812433104e-06,4.380952402308682512e-06,4.466853429804931919e-06,4.552754457301181327e-06,4.638655484797430734e-06,4.724556512293680142e-06,4.810457539789929549e-06,4.896358567286178957e-06,4.982259594782428364e-06,5.068160622278677772e-06,5.154061649774927179e-06,5.239962677271176587e-06,5.325863704767425994e-06,5.411764732263675402e-06 +0.000000000000000000e+00,8.274418340964935818e-08,1.654883668192987164e-07,2.482325502289480613e-07,3.309767336385973798e-07,4.137209170482466983e-07,4.964651004578960167e-07,5.792092838675453352e-07,6.619534672771946537e-07,7.446976506868439721e-07,8.274418340964932906e-07,9.101860175061426091e-07,9.929302009157918217e-07,1.075674384325441034e-06,1.158418567735090247e-06,1.241162751144739459e-06,1.323906934554388672e-06,1.406651117964037885e-06,1.489395301373687097e-06,1.572139484783336310e-06,1.654883668192985522e-06,1.737627851602634735e-06,1.820372035012283948e-06,1.903116218421933160e-06,1.985860401831582373e-06,2.068604585241231585e-06,2.151348768650880798e-06,2.234092952060530011e-06,2.316837135470179223e-06,2.399581318879828436e-06,2.482325502289477648e-06,2.565069685699126861e-06,2.647813869108776074e-06,2.730558052518425286e-06,2.813302235928074499e-06,2.896046419337723711e-06,2.978790602747372924e-06,3.061534786157022137e-06,3.144278969566671349e-06,3.227023152976320562e-06,3.309767336385969774e-06,3.392511519795618987e-06,3.475255703205268200e-06,3.557999886614917412e-06,3.640744070024566625e-06,3.723488253434215837e-06,3.806232436843865050e-06,3.888976620253514263e-06,3.971720803663163899e-06,4.054464987072813535e-06,4.137209170482463171e-06,4.219953353892112807e-06,4.302697537301762443e-06,4.385441720711412079e-06,4.468185904121061715e-06,4.550930087530711351e-06,4.633674270940360988e-06,4.716418454350010624e-06,4.799162637759660260e-06,4.881906821169309896e-06,4.964651004578959532e-06,5.047395187988609168e-06,5.130139371398258804e-06,5.212883554807908440e-06 +0.000000000000000000e+00,8.707260766530681153e-08,1.741452153306136231e-07,2.612178229959204213e-07,3.482904306612271932e-07,4.353630383265339650e-07,5.224356459918407368e-07,6.095082536571474557e-07,6.965808613224541746e-07,7.836534689877608935e-07,8.707260766530676123e-07,9.577986843183743312e-07,1.044871291983681050e-06,1.131943899648987769e-06,1.219016507314294488e-06,1.306089114979601207e-06,1.393161722644907926e-06,1.480234330310214645e-06,1.567306937975521363e-06,1.654379545640828082e-06,1.741452153306134801e-06,1.828524760971441520e-06,1.915597368636748239e-06,2.002669976302055170e-06,2.089742583967362100e-06,2.176815191632669031e-06,2.263887799297975961e-06,2.350960406963282892e-06,2.438033014628589823e-06,2.525105622293896753e-06,2.612178229959203684e-06,2.699250837624510615e-06,2.786323445289817545e-06,2.873396052955124476e-06,2.960468660620431407e-06,3.047541268285738337e-06,3.134613875951045268e-06,3.221686483616352199e-06,3.308759091281659129e-06,3.395831698946966060e-06,3.482904306612272990e-06,3.569976914277579921e-06,3.657049521942886852e-06,3.744122129608193782e-06,3.831194737273500713e-06,3.918267344938807644e-06,4.005339952604114574e-06,4.092412560269421505e-06,4.179485167934728436e-06,4.266557775600035366e-06,4.353630383265342297e-06,4.440702990930649228e-06,4.527775598595956158e-06,4.614848206261263089e-06,4.701920813926570019e-06,4.788993421591876950e-06,4.876066029257183881e-06,4.963138636922490811e-06,5.050211244587797742e-06,5.137283852253104673e-06,5.224356459918411603e-06,5.311429067583718534e-06,5.398501675249025465e-06,5.485574282914332395e-06 +0.000000000000000000e+00,8.658998184794625428e-08,1.731799636958925086e-07,2.597699455438387364e-07,3.463599273917849642e-07,4.329499092397311920e-07,5.195398910876774727e-07,6.061298729356237535e-07,6.927198547835700342e-07,7.793098366315163150e-07,8.658998184794625957e-07,9.524898003274088764e-07,1.039079782175355157e-06,1.125669764023301544e-06,1.212259745871247930e-06,1.298849727719194317e-06,1.385439709567140704e-06,1.472029691415087090e-06,1.558619673263033477e-06,1.645209655110979864e-06,1.731799636958926250e-06,1.818389618806872637e-06,1.904979600654819023e-06,1.991569582502765410e-06,2.078159564350711585e-06,2.164749546198657760e-06,2.251339528046603935e-06,2.337929509894550110e-06,2.424519491742496284e-06,2.511109473590442459e-06,2.597699455438388634e-06,2.684289437286334809e-06,2.770879419134280984e-06,2.857469400982227159e-06,2.944059382830173334e-06,3.030649364678119508e-06,3.117239346526065683e-06,3.203829328374011858e-06,3.290419310221958033e-06,3.377009292069904208e-06,3.463599273917850383e-06,3.550189255765796558e-06,3.636779237613742733e-06,3.723369219461688907e-06,3.809959201309635082e-06,3.896549183157581257e-06,3.983139165005527432e-06,4.069729146853473607e-06,4.156319128701419782e-06,4.242909110549365957e-06,4.329499092397312131e-06,4.416089074245258306e-06,4.502679056093204481e-06,4.589269037941150656e-06,4.675859019789096831e-06,4.762449001637043006e-06,4.849038983484989181e-06,4.935628965332935356e-06,5.022218947180881530e-06,5.108808929028827705e-06,5.195398910876773880e-06,5.281988892724720055e-06,5.368578874572666230e-06,5.455168856420612405e-06 +0.000000000000000000e+00,8.318040843222604233e-08,1.663608168644520847e-07,2.495412252966781005e-07,3.327216337289041164e-07,4.159020421611301322e-07,4.990824505933562010e-07,5.822628590255822698e-07,6.654432674578083386e-07,7.486236758900344074e-07,8.318040843222604762e-07,9.149844927544865450e-07,9.981649011867126138e-07,1.081345309618938683e-06,1.164525718051164751e-06,1.247706126483390820e-06,1.330886534915616889e-06,1.414066943347842958e-06,1.497247351780069027e-06,1.580427760212295095e-06,1.663608168644521164e-06,1.746788577076747233e-06,1.829968985508973302e-06,1.913149393941199582e-06,1.996329802373425651e-06,2.079510210805651720e-06,2.162690619237877789e-06,2.245871027670103858e-06,2.329051436102329926e-06,2.412231844534555995e-06,2.495412252966782064e-06,2.578592661399008133e-06,2.661773069831234202e-06,2.744953478263460270e-06,2.828133886695686339e-06,2.911314295127912408e-06,2.994494703560138477e-06,3.077675111992364545e-06,3.160855520424590614e-06,3.244035928856816683e-06,3.327216337289042752e-06,3.410396745721268821e-06,3.493577154153494889e-06,3.576757562585720958e-06,3.659937971017947027e-06,3.743118379450173096e-06,3.826298787882399165e-06,3.909479196314625233e-06,3.992659604746851302e-06,4.075840013179077371e-06,4.159020421611303440e-06,4.242200830043529509e-06,4.325381238475755577e-06,4.408561646907981646e-06,4.491742055340207715e-06,4.574922463772433784e-06,4.658102872204659853e-06,4.741283280636885921e-06,4.824463689069111990e-06,4.907644097501338059e-06,4.990824505933564128e-06,5.074004914365790197e-06,5.157185322798016265e-06,5.240365731230242334e-06 +0.000000000000000000e+00,8.707260766530757915e-08,1.741452153306151583e-07,2.612178229959227507e-07,3.482904306612303695e-07,4.353630383265379884e-07,5.224356459918456073e-07,6.095082536571531732e-07,6.965808613224607391e-07,7.836534689877683050e-07,8.707260766530758709e-07,9.577986843183834368e-07,1.044871291983691003e-06,1.131943899648998569e-06,1.219016507314306135e-06,1.306089114979613700e-06,1.393161722644921266e-06,1.480234330310228832e-06,1.567306937975536398e-06,1.654379545640843964e-06,1.741452153306151530e-06,1.828524760971459096e-06,1.915597368636766874e-06,2.002669976302074651e-06,2.089742583967382429e-06,2.176815191632690207e-06,2.263887799297997984e-06,2.350960406963305762e-06,2.438033014628613540e-06,2.525105622293921317e-06,2.612178229959229095e-06,2.699250837624536873e-06,2.786323445289844650e-06,2.873396052955152428e-06,2.960468660620460206e-06,3.047541268285767983e-06,3.134613875951075761e-06,3.221686483616383539e-06,3.308759091281691316e-06,3.395831698946999094e-06,3.482904306612306872e-06,3.569976914277614649e-06,3.657049521942922427e-06,3.744122129608230205e-06,3.831194737273537982e-06,3.918267344938845760e-06,4.005339952604153538e-06,4.092412560269461315e-06,4.179485167934769093e-06,4.266557775600076871e-06,4.353630383265384649e-06,4.440702990930692426e-06,4.527775598596000204e-06,4.614848206261307982e-06,4.701920813926615759e-06,4.788993421591923537e-06,4.876066029257231315e-06,4.963138636922539092e-06,5.050211244587846870e-06,5.137283852253154648e-06,5.224356459918462425e-06,5.311429067583770203e-06,5.398501675249077981e-06,5.485574282914385758e-06 +0.000000000000000000e+00,8.658998184794741895e-08,1.731799636958948379e-07,2.597699455438422304e-07,3.463599273917896228e-07,4.329499092397370153e-07,5.195398910876844607e-07,6.061298729356319062e-07,6.927198547835793516e-07,7.793098366315267970e-07,8.658998184794742424e-07,9.524898003274216878e-07,1.039079782175369133e-06,1.125669764023316579e-06,1.212259745871264024e-06,1.298849727719211469e-06,1.385439709567158915e-06,1.472029691415106360e-06,1.558619673263053806e-06,1.645209655111001251e-06,1.731799636958948697e-06,1.818389618806896142e-06,1.904979600654843587e-06,1.991569582502790821e-06,2.078159564350737843e-06,2.164749546198684865e-06,2.251339528046631887e-06,2.337929509894578909e-06,2.424519491742525931e-06,2.511109473590472952e-06,2.597699455438419974e-06,2.684289437286366996e-06,2.770879419134314018e-06,2.857469400982261040e-06,2.944059382830208062e-06,3.030649364678155084e-06,3.117239346526102106e-06,3.203829328374049128e-06,3.290419310221996150e-06,3.377009292069943171e-06,3.463599273917890193e-06,3.550189255765837215e-06,3.636779237613784237e-06,3.723369219461731259e-06,3.809959201309678281e-06,3.896549183157625303e-06,3.983139165005572325e-06,4.069729146853519347e-06,4.156319128701466369e-06,4.242909110549413390e-06,4.329499092397360412e-06,4.416089074245307434e-06,4.502679056093254456e-06,4.589269037941201478e-06,4.675859019789148500e-06,4.762449001637095522e-06,4.849038983485042544e-06,4.935628965332989566e-06,5.022218947180936588e-06,5.108808929028883609e-06,5.195398910876830631e-06,5.281988892724777653e-06,5.368578874572724675e-06,5.455168856420671697e-06 +0.000000000000000000e+00,8.318040843222695553e-08,1.663608168644539111e-07,2.495412252966808534e-07,3.327216337289077692e-07,4.159020421611346850e-07,4.990824505933616009e-07,5.822628590255885167e-07,6.654432674578154325e-07,7.486236758900423483e-07,8.318040843222692642e-07,9.149844927544961800e-07,9.981649011867229900e-07,1.081345309618949906e-06,1.164525718051176822e-06,1.247706126483403737e-06,1.330886534915630653e-06,1.414066943347857569e-06,1.497247351780084485e-06,1.580427760212311401e-06,1.663608168644538317e-06,1.746788577076765232e-06,1.829968985508992148e-06,1.913149393941219064e-06,1.996329802373445980e-06,2.079510210805672896e-06,2.162690619237899812e-06,2.245871027670126727e-06,2.329051436102353643e-06,2.412231844534580559e-06,2.495412252966807475e-06,2.578592661399034391e-06,2.661773069831261307e-06,2.744953478263488222e-06,2.828133886695715138e-06,2.911314295127942054e-06,2.994494703560168970e-06,3.077675111992395886e-06,3.160855520424622802e-06,3.244035928856849717e-06,3.327216337289076633e-06,3.410396745721303549e-06,3.493577154153530465e-06,3.576757562585757381e-06,3.659937971017984297e-06,3.743118379450211212e-06,3.826298787882438128e-06,3.909479196314665044e-06,3.992659604746891960e-06,4.075840013179118876e-06,4.159020421611345791e-06,4.242200830043572707e-06,4.325381238475799623e-06,4.408561646908026539e-06,4.491742055340253455e-06,4.574922463772480371e-06,4.658102872204707286e-06,4.741283280636934202e-06,4.824463689069161118e-06,4.907644097501388034e-06,4.990824505933614950e-06,5.074004914365841866e-06,5.157185322798068781e-06,5.240365731230295697e-06 +0.000000000000000000e+00,8.813560223724752423e-08,1.762712044744950485e-07,2.644068067117425992e-07,3.525424089489901499e-07,4.406780111862377006e-07,5.288136134234851983e-07,6.169492156607326961e-07,7.050848178979801938e-07,7.932204201352276916e-07,8.813560223724751894e-07,9.694916246097225812e-07,1.057627226846969973e-06,1.145762829084217365e-06,1.233898431321464757e-06,1.322034033558712149e-06,1.410169635795959541e-06,1.498305238033206933e-06,1.586440840270454324e-06,1.674576442507701716e-06,1.762712044744949108e-06,1.850847646982196500e-06,1.938983249219443892e-06,2.027118851456691284e-06,2.115254453693938676e-06,2.203390055931186068e-06,2.291525658168433459e-06,2.379661260405680851e-06,2.467796862642928243e-06,2.555932464880175635e-06,2.644068067117423027e-06,2.732203669354670419e-06,2.820339271591917811e-06,2.908474873829165203e-06,2.996610476066412594e-06,3.084746078303659986e-06,3.172881680540907378e-06,3.261017282778154770e-06,3.349152885015402162e-06,3.437288487252649554e-06,3.525424089489896946e-06,3.613559691727144338e-06,3.701695293964391730e-06,3.789830896201639121e-06,3.877966498438886937e-06,3.966102100676135176e-06,4.054237702913383415e-06,4.142373305150631654e-06,4.230508907387879892e-06,4.318644509625128131e-06,4.406780111862376370e-06,4.494915714099624609e-06,4.583051316336872848e-06,4.671186918574121087e-06,4.759322520811369326e-06,4.847458123048617565e-06,4.935593725285865804e-06,5.023729327523114043e-06,5.111864929760362282e-06,5.200000531997610521e-06,5.288136134234858759e-06,5.376271736472106998e-06,5.464407338709355237e-06,5.552542940946603476e-06 +0.000000000000000000e+00,8.759550537474034941e-08,1.751910107494806988e-07,2.627865161242210350e-07,3.503820214989613447e-07,4.379775268737016544e-07,5.255730322484419641e-07,6.131685376231822738e-07,7.007640429979225835e-07,7.883595483726628932e-07,8.759550537474032029e-07,9.635505591221435126e-07,1.051146064496883716e-06,1.138741569871623920e-06,1.226337075246364124e-06,1.313932580621104328e-06,1.401528085995844532e-06,1.489123591370584736e-06,1.576719096745324939e-06,1.664314602120065143e-06,1.751910107494805347e-06,1.839505612869545551e-06,1.927101118244285755e-06,2.014696623619025747e-06,2.102292128993765739e-06,2.189887634368505731e-06,2.277483139743245723e-06,2.365078645117985715e-06,2.452674150492725707e-06,2.540269655867465699e-06,2.627865161242205691e-06,2.715460666616945683e-06,2.803056171991685675e-06,2.890651677366425667e-06,2.978247182741165660e-06,3.065842688115905652e-06,3.153438193490645644e-06,3.241033698865385636e-06,3.328629204240125628e-06,3.416224709614865620e-06,3.503820214989605612e-06,3.591415720364345604e-06,3.679011225739085596e-06,3.766606731113825588e-06,3.854202236488565580e-06,3.941797741863305572e-06,4.029393247238045564e-06,4.116988752612785556e-06,4.204584257987525549e-06,4.292179763362265541e-06,4.379775268737005533e-06,4.467370774111745525e-06,4.554966279486485517e-06,4.642561784861225509e-06,4.730157290235965501e-06,4.817752795610705493e-06,4.905348300985445485e-06,4.992943806360185477e-06,5.080539311734925469e-06,5.168134817109665461e-06,5.255730322484405453e-06,5.343325827859145445e-06,5.430921333233885437e-06,5.518516838608625430e-06 +0.000000000000000000e+00,8.370852093988226821e-08,1.674170418797645364e-07,2.511255628196467782e-07,3.348340837595290199e-07,4.185426046994112616e-07,5.022511256392935563e-07,5.859596465791758510e-07,6.696681675190581457e-07,7.533766884589404404e-07,8.370852093988227350e-07,9.207937303387050297e-07,1.004502251278587324e-06,1.088210772218469619e-06,1.171919293158351914e-06,1.255627814098234208e-06,1.339336335038116503e-06,1.423044855977998798e-06,1.506753376917881092e-06,1.590461897857763387e-06,1.674170418797645682e-06,1.757878939737527977e-06,1.841587460677410271e-06,1.925295981617292778e-06,2.009004502557175072e-06,2.092713023497057367e-06,2.176421544436939662e-06,2.260130065376821956e-06,2.343838586316704251e-06,2.427547107256586546e-06,2.511255628196468840e-06,2.594964149136351135e-06,2.678672670076233430e-06,2.762381191016115724e-06,2.846089711955998019e-06,2.929798232895880314e-06,3.013506753835762608e-06,3.097215274775644903e-06,3.180923795715527198e-06,3.264632316655409492e-06,3.348340837595291787e-06,3.432049358535174082e-06,3.515757879475056377e-06,3.599466400414938671e-06,3.683174921354820966e-06,3.766883442294703261e-06,3.850591963234585555e-06,3.934300484174467850e-06,4.018009005114350145e-06,4.101717526054232439e-06,4.185426046994114734e-06,4.269134567933997029e-06,4.352843088873879323e-06,4.436551609813761618e-06,4.520260130753643913e-06,4.603968651693526207e-06,4.687677172633408502e-06,4.771385693573290797e-06,4.855094214513173091e-06,4.938802735453055386e-06,5.022511256392937681e-06,5.106219777332819975e-06,5.189928298272702270e-06,5.273636819212584565e-06 +0.000000000000000000e+00,8.813560223724886095e-08,1.762712044744977219e-07,2.644068067117465696e-07,3.525424089489953909e-07,4.406780111862442121e-07,5.288136134234930334e-07,6.169492156607419076e-07,7.050848178979907817e-07,7.932204201352396559e-07,8.813560223724885301e-07,9.694916246097374043e-07,1.057627226846986278e-06,1.145762829084235153e-06,1.233898431321484027e-06,1.322034033558732901e-06,1.410169635795981775e-06,1.498305238033230649e-06,1.586440840270479524e-06,1.674576442507728398e-06,1.762712044744977272e-06,1.850847646982226146e-06,1.938983249219474809e-06,2.027118851456723471e-06,2.115254453693972133e-06,2.203390055931220796e-06,2.291525658168469458e-06,2.379661260405718121e-06,2.467796862642966783e-06,2.555932464880215446e-06,2.644068067117464108e-06,2.732203669354712770e-06,2.820339271591961433e-06,2.908474873829210095e-06,2.996610476066458758e-06,3.084746078303707420e-06,3.172881680540956083e-06,3.261017282778204745e-06,3.349152885015453407e-06,3.437288487252702070e-06,3.525424089489950732e-06,3.613559691727199395e-06,3.701695293964448057e-06,3.789830896201696720e-06,3.877966498438945382e-06,3.966102100676194468e-06,4.054237702913443554e-06,4.142373305150692640e-06,4.230508907387941726e-06,4.318644509625190812e-06,4.406780111862439898e-06,4.494915714099688984e-06,4.583051316336938070e-06,4.671186918574187156e-06,4.759322520811436242e-06,4.847458123048685327e-06,4.935593725285934413e-06,5.023729327523183499e-06,5.111864929760432585e-06,5.200000531997681671e-06,5.288136134234930757e-06,5.376271736472179843e-06,5.464407338709428929e-06,5.552542940946678015e-06 +0.000000000000000000e+00,8.759550537474163319e-08,1.751910107494832664e-07,2.627865161242248996e-07,3.503820214989665328e-07,4.379775268737081660e-07,5.255730322484497992e-07,6.131685376231913794e-07,7.007640429979329597e-07,7.883595483726745399e-07,8.759550537474161202e-07,9.635505591221577004e-07,1.051146064496899387e-06,1.138741569871641073e-06,1.226337075246382759e-06,1.313932580621124445e-06,1.401528085995866131e-06,1.489123591370607817e-06,1.576719096745349503e-06,1.664314602120091190e-06,1.751910107494832876e-06,1.839505612869574562e-06,1.927101118244316248e-06,2.014696623619057934e-06,2.102292128993799620e-06,2.189887634368541306e-06,2.277483139743282992e-06,2.365078645118024679e-06,2.452674150492766365e-06,2.540269655867508051e-06,2.627865161242249737e-06,2.715460666616991423e-06,2.803056171991733109e-06,2.890651677366474795e-06,2.978247182741216482e-06,3.065842688115958168e-06,3.153438193490699854e-06,3.241033698865441540e-06,3.328629204240183226e-06,3.416224709614924912e-06,3.503820214989666598e-06,3.591415720364408284e-06,3.679011225739149971e-06,3.766606731113891657e-06,3.854202236488633343e-06,3.941797741863375029e-06,4.029393247238116715e-06,4.116988752612858401e-06,4.204584257987600087e-06,4.292179763362341774e-06,4.379775268737083460e-06,4.467370774111825146e-06,4.554966279486566832e-06,4.642561784861308518e-06,4.730157290236050204e-06,4.817752795610791890e-06,4.905348300985533576e-06,4.992943806360275263e-06,5.080539311735016949e-06,5.168134817109758635e-06,5.255730322484500321e-06,5.343325827859242007e-06,5.430921333233983693e-06,5.518516838608725379e-06 +0.000000000000000000e+00,8.370852093988341964e-08,1.674170418797668393e-07,2.511255628196502722e-07,3.348340837595337315e-07,4.185426046994171909e-07,5.022511256393006502e-07,5.859596465791841096e-07,6.696681675190675689e-07,7.533766884589510283e-07,8.370852093988344876e-07,9.207937303387179470e-07,1.004502251278601512e-06,1.088210772218485077e-06,1.171919293158368643e-06,1.255627814098252208e-06,1.339336335038135773e-06,1.423044855978019338e-06,1.506753376917902904e-06,1.590461897857786469e-06,1.674170418797670034e-06,1.757878939737553599e-06,1.841587460677437164e-06,1.925295981617320730e-06,2.009004502557204295e-06,2.092713023497087860e-06,2.176421544436971425e-06,2.260130065376854991e-06,2.343838586316738556e-06,2.427547107256622121e-06,2.511255628196505686e-06,2.594964149136389252e-06,2.678672670076272817e-06,2.762381191016156382e-06,2.846089711956039947e-06,2.929798232895923512e-06,3.013506753835807078e-06,3.097215274775690643e-06,3.180923795715574208e-06,3.264632316655457773e-06,3.348340837595341339e-06,3.432049358535224904e-06,3.515757879475108469e-06,3.599466400414992034e-06,3.683174921354875600e-06,3.766883442294759165e-06,3.850591963234643153e-06,3.934300484174527142e-06,4.018009005114411131e-06,4.101717526054295120e-06,4.185426046994179108e-06,4.269134567934063097e-06,4.352843088873947086e-06,4.436551609813831075e-06,4.520260130753715063e-06,4.603968651693599052e-06,4.687677172633483041e-06,4.771385693573367030e-06,4.855094214513251018e-06,4.938802735453135007e-06,5.022511256393018996e-06,5.106219777332902985e-06,5.189928298272786973e-06,5.273636819212670962e-06 +0.000000000000000000e+00,8.920090431923348458e-08,1.784018086384669692e-07,2.676027129577004273e-07,3.568036172769338854e-07,4.460045215961673435e-07,5.352054259154008545e-07,6.244063302346343656e-07,7.136072345538678766e-07,8.028081388731013877e-07,8.920090431923348987e-07,9.812099475115683039e-07,1.070410851830801709e-06,1.159611756150035114e-06,1.248812660469268519e-06,1.338013564788501925e-06,1.427214469107735330e-06,1.516415373426968735e-06,1.605616277746202140e-06,1.694817182065435545e-06,1.784018086384668950e-06,1.873218990703902356e-06,1.962419895023135761e-06,2.051620799342369166e-06,2.140821703661602571e-06,2.230022607980835976e-06,2.319223512300069381e-06,2.408424416619302787e-06,2.497625320938536192e-06,2.586826225257769597e-06,2.676027129577003002e-06,2.765228033896236407e-06,2.854428938215469812e-06,2.943629842534703218e-06,3.032830746853936623e-06,3.122031651173170028e-06,3.211232555492403433e-06,3.300433459811636838e-06,3.389634364130870243e-06,3.478835268450103649e-06,3.568036172769337054e-06,3.657237077088570459e-06,3.746437981407803864e-06,3.835638885727036846e-06,3.924839790046269827e-06,4.014040694365502809e-06,4.103241598684735791e-06,4.192442503003968772e-06,4.281643407323201754e-06,4.370844311642434736e-06,4.460045215961667717e-06,4.549246120280900699e-06,4.638447024600133681e-06,4.727647928919366662e-06,4.816848833238599644e-06,4.906049737557832626e-06,4.995250641877065607e-06,5.084451546196298589e-06,5.173652450515531571e-06,5.262853354834764552e-06,5.352054259153997534e-06,5.441255163473230515e-06,5.530456067792463497e-06,5.619656972111696479e-06 +0.000000000000000000e+00,8.867584395809364976e-08,1.773516879161872995e-07,2.660275318742809360e-07,3.547033758323745461e-07,4.433792197904681561e-07,5.320550637485617662e-07,6.207309077066553762e-07,7.094067516647489863e-07,7.980825956228425964e-07,8.867584395809362064e-07,9.754342835390297106e-07,1.064110127497123321e-06,1.152785971455216931e-06,1.241461815413310541e-06,1.330137659371404151e-06,1.418813503329497761e-06,1.507489347287591371e-06,1.596165191245684981e-06,1.684841035203778591e-06,1.773516879161872201e-06,1.862192723119965811e-06,1.950868567078059421e-06,2.039544411036153031e-06,2.128220254994246641e-06,2.216896098952340251e-06,2.305571942910433861e-06,2.394247786868527471e-06,2.482923630826621081e-06,2.571599474784714692e-06,2.660275318742808302e-06,2.748951162700901912e-06,2.837627006658995522e-06,2.926302850617089132e-06,3.014978694575182742e-06,3.103654538533276352e-06,3.192330382491369962e-06,3.281006226449463572e-06,3.369682070407557182e-06,3.458357914365650792e-06,3.547033758323744402e-06,3.635709602281838012e-06,3.724385446239931622e-06,3.813061290198025232e-06,3.901737134156118842e-06,3.990412978114212452e-06,4.079088822072306062e-06,4.167764666030399672e-06,4.256440509988493283e-06,4.345116353946586893e-06,4.433792197904680503e-06,4.522468041862774113e-06,4.611143885820867723e-06,4.699819729778961333e-06,4.788495573737054943e-06,4.877171417695148553e-06,4.965847261653242163e-06,5.054523105611335773e-06,5.143198949569429383e-06,5.231874793527522993e-06,5.320550637485616603e-06,5.409226481443710213e-06,5.497902325401803823e-06,5.586578169359897433e-06 +0.000000000000000000e+00,8.424073418221978356e-08,1.684814683644395671e-07,2.527222025466593374e-07,3.369629367288790813e-07,4.212036709110988251e-07,5.054444050933185690e-07,5.896851392755383658e-07,6.739258734577581626e-07,7.581666076399779594e-07,8.424073418221977561e-07,9.266480760044175529e-07,1.010888810186637350e-06,1.095129544368857147e-06,1.179370278551076943e-06,1.263611012733296740e-06,1.347851746915516537e-06,1.432092481097736334e-06,1.516333215279956130e-06,1.600573949462175927e-06,1.684814683644395724e-06,1.769055417826615521e-06,1.853296152008835318e-06,1.937536886191054903e-06,2.021777620373274276e-06,2.106018354555493649e-06,2.190259088737713022e-06,2.274499822919932396e-06,2.358740557102151769e-06,2.442981291284371142e-06,2.527222025466590516e-06,2.611462759648809889e-06,2.695703493831029262e-06,2.779944228013248635e-06,2.864184962195468009e-06,2.948425696377687382e-06,3.032666430559906755e-06,3.116907164742126129e-06,3.201147898924345502e-06,3.285388633106564875e-06,3.369629367288784248e-06,3.453870101471003622e-06,3.538110835653222995e-06,3.622351569835442368e-06,3.706592304017661741e-06,3.790833038199881115e-06,3.875073772382100488e-06,3.959314506564319861e-06,4.043555240746539235e-06,4.127795974928758608e-06,4.212036709110977981e-06,4.296277443293197354e-06,4.380518177475416728e-06,4.464758911657636101e-06,4.548999645839855474e-06,4.633240380022074847e-06,4.717481114204294221e-06,4.801721848386513594e-06,4.885962582568732967e-06,4.970203316750952341e-06,5.054444050933171714e-06,5.138684785115391087e-06,5.222925519297610460e-06,5.307166253479829834e-06 +0.000000000000000000e+00,8.920090431923515217e-08,1.784018086384703043e-07,2.676027129577054565e-07,3.568036172769406087e-07,4.460045215961757609e-07,5.352054259154109130e-07,6.244063302346461182e-07,7.136072345538813233e-07,8.028081388731165284e-07,8.920090431923517335e-07,9.812099475115869386e-07,1.070410851830822038e-06,1.159611756150057137e-06,1.248812660469292236e-06,1.338013564788527336e-06,1.427214469107762435e-06,1.516415373426997534e-06,1.605616277746232633e-06,1.694817182065467732e-06,1.784018086384702832e-06,1.873218990703937931e-06,1.962419895023173030e-06,2.051620799342408129e-06,2.140821703661643229e-06,2.230022607980878328e-06,2.319223512300113427e-06,2.408424416619348526e-06,2.497625320938583626e-06,2.586826225257818725e-06,2.676027129577053824e-06,2.765228033896288923e-06,2.854428938215524023e-06,2.943629842534759122e-06,3.032830746853994221e-06,3.122031651173229320e-06,3.211232555492464419e-06,3.300433459811699519e-06,3.389634364130934618e-06,3.478835268450169717e-06,3.568036172769404816e-06,3.657237077088639916e-06,3.746437981407875015e-06,3.835638885727109691e-06,3.924839790046344366e-06,4.014040694365579042e-06,4.103241598684813718e-06,4.192442503004048393e-06,4.281643407323283069e-06,4.370844311642517745e-06,4.460045215961752421e-06,4.549246120280987096e-06,4.638447024600221772e-06,4.727647928919456448e-06,4.816848833238691123e-06,4.906049737557925799e-06,4.995250641877160475e-06,5.084451546196395151e-06,5.173652450515629826e-06,5.262853354834864502e-06,5.352054259154099178e-06,5.441255163473333854e-06,5.530456067792568529e-06,5.619656972111803205e-06 +0.000000000000000000e+00,8.867584395809542323e-08,1.773516879161908465e-07,2.660275318742862829e-07,3.547033758323817459e-07,4.433792197904772088e-07,5.320550637485726717e-07,6.207309077066681876e-07,7.094067516647637035e-07,7.980825956228592194e-07,8.867584395809547353e-07,9.754342835390502511e-07,1.064110127497145767e-06,1.152785971455241283e-06,1.241461815413336799e-06,1.330137659371432315e-06,1.418813503329527831e-06,1.507489347287623346e-06,1.596165191245718862e-06,1.684841035203814378e-06,1.773516879161909894e-06,1.862192723120005410e-06,1.950868567078100926e-06,2.039544411036196230e-06,2.128220254994291534e-06,2.216896098952386838e-06,2.305571942910482142e-06,2.394247786868577446e-06,2.482923630826672750e-06,2.571599474784768055e-06,2.660275318742863359e-06,2.748951162700958663e-06,2.837627006659053967e-06,2.926302850617149271e-06,3.014978694575244575e-06,3.103654538533339879e-06,3.192330382491435183e-06,3.281006226449530488e-06,3.369682070407625792e-06,3.458357914365721096e-06,3.547033758323816400e-06,3.635709602281911704e-06,3.724385446240007008e-06,3.813061290198102312e-06,3.901737134156197616e-06,3.990412978114292921e-06,4.079088822072388225e-06,4.167764666030483529e-06,4.256440509988578833e-06,4.345116353946674137e-06,4.433792197904769441e-06,4.522468041862864745e-06,4.611143885820960049e-06,4.699819729779055353e-06,4.788495573737150658e-06,4.877171417695245962e-06,4.965847261653341266e-06,5.054523105611436570e-06,5.143198949569531874e-06,5.231874793527627178e-06,5.320550637485722482e-06,5.409226481443817786e-06,5.497902325401913091e-06,5.586578169360008395e-06 +0.000000000000000000e+00,8.424073418222104087e-08,1.684814683644420817e-07,2.527222025466630961e-07,3.369629367288841105e-07,4.212036709111051249e-07,5.054444050933261923e-07,5.896851392755472596e-07,6.739258734577683270e-07,7.581666076399893943e-07,8.424073418222104616e-07,9.266480760044315290e-07,1.010888810186652596e-06,1.095129544368873664e-06,1.179370278551094731e-06,1.263611012733315798e-06,1.347851746915536866e-06,1.432092481097757933e-06,1.516333215279979000e-06,1.600573949462200068e-06,1.684814683644421135e-06,1.769055417826642202e-06,1.853296152008863270e-06,1.937536886191084549e-06,2.021777620373305616e-06,2.106018354555526683e-06,2.190259088737747751e-06,2.274499822919968818e-06,2.358740557102189886e-06,2.442981291284410953e-06,2.527222025466632020e-06,2.611462759648853088e-06,2.695703493831074155e-06,2.779944228013295222e-06,2.864184962195516290e-06,2.948425696377737357e-06,3.032666430559958424e-06,3.116907164742179492e-06,3.201147898924400559e-06,3.285388633106621626e-06,3.369629367288842694e-06,3.453870101471063761e-06,3.538110835653284828e-06,3.622351569835505896e-06,3.706592304017726963e-06,3.790833038199948030e-06,3.875073772382169098e-06,3.959314506564390165e-06,4.043555240746611232e-06,4.127795974928832300e-06,4.212036709111053367e-06,4.296277443293274434e-06,4.380518177475495502e-06,4.464758911657716569e-06,4.548999645839937636e-06,4.633240380022158704e-06,4.717481114204379771e-06,4.801721848386600838e-06,4.885962582568821906e-06,4.970203316751042973e-06,5.054444050933264040e-06,5.138684785115485108e-06,5.222925519297706175e-06,5.307166253479927242e-06 +0.000000000000000000e+00,9.014860355768803892e-08,1.802972071153760778e-07,2.704458106730641168e-07,3.605944142307521557e-07,4.507430177884401946e-07,5.408916213461282335e-07,6.310402249038163254e-07,7.211888284615044172e-07,8.113374320191925091e-07,9.014860355768806009e-07,9.916346391345686928e-07,1.081783242692256679e-06,1.171931846249944665e-06,1.262080449807632651e-06,1.352229053365320637e-06,1.442377656923008623e-06,1.532526260480696609e-06,1.622674864038384595e-06,1.712823467596072581e-06,1.802972071153760567e-06,1.893120674711448553e-06,1.983269278269136539e-06,2.073417881826824736e-06,2.163566485384512934e-06,2.253715088942201132e-06,2.343863692499889329e-06,2.434012296057577527e-06,2.524160899615265725e-06,2.614309503172953923e-06,2.704458106730642120e-06,2.794606710288330318e-06,2.884755313846018516e-06,2.974903917403706714e-06,3.065052520961394911e-06,3.155201124519083109e-06,3.245349728076771307e-06,3.335498331634459505e-06,3.425646935192147702e-06,3.515795538749835900e-06,3.605944142307524098e-06,3.696092745865212296e-06,3.786241349422900493e-06,3.876389952980588691e-06,3.966538556538277312e-06,4.056687160095965933e-06,4.146835763653654555e-06,4.236984367211343176e-06,4.327132970769031797e-06,4.417281574326720419e-06,4.507430177884409040e-06,4.597578781442097661e-06,4.687727384999786282e-06,4.777875988557474904e-06,4.868024592115163525e-06,4.958173195672852146e-06,5.048321799230540767e-06,5.138470402788229389e-06,5.228619006345918010e-06,5.318767609903606631e-06,5.408916213461295252e-06,5.499064817018983874e-06,5.589213420576672495e-06,5.679362024134361116e-06 +0.000000000000000000e+00,8.969874086763965534e-08,1.793974817352793107e-07,2.690962226029189528e-07,3.587949634705585684e-07,4.484937043381981841e-07,5.381924452058377997e-07,6.278911860734774153e-07,7.175899269411170310e-07,8.072886678087566466e-07,8.969874086763962622e-07,9.866861495440359837e-07,1.076384890411675811e-06,1.166083631279315639e-06,1.255782372146955466e-06,1.345481113014595293e-06,1.435179853882235121e-06,1.524878594749874948e-06,1.614577335617514775e-06,1.704276076485154603e-06,1.793974817352794430e-06,1.883673558220434258e-06,1.973372299088074085e-06,2.063071039955713912e-06,2.152769780823353740e-06,2.242468521690993567e-06,2.332167262558633395e-06,2.421866003426273222e-06,2.511564744293913049e-06,2.601263485161552877e-06,2.690962226029192704e-06,2.780660966896832532e-06,2.870359707764472359e-06,2.960058448632112186e-06,3.049757189499752014e-06,3.139455930367391841e-06,3.229154671235031669e-06,3.318853412102671496e-06,3.408552152970311323e-06,3.498250893837951151e-06,3.587949634705590978e-06,3.677648375573230806e-06,3.767347116440870633e-06,3.857045857308510884e-06,3.946744598176150711e-06,4.036443339043790539e-06,4.126142079911430366e-06,4.215840820779070193e-06,4.305539561646710021e-06,4.395238302514349848e-06,4.484937043381989676e-06,4.574635784249629503e-06,4.664334525117269330e-06,4.754033265984909158e-06,4.843732006852548985e-06,4.933430747720188813e-06,5.023129488587828640e-06,5.112828229455468467e-06,5.202526970323108295e-06,5.292225711190748122e-06,5.381924452058387950e-06,5.471623192926027777e-06,5.561321933793667604e-06,5.651020674661307432e-06 +0.000000000000000000e+00,8.471070541948422481e-08,1.694214108389684496e-07,2.541321162584526877e-07,3.388428216779369522e-07,4.235535270974212167e-07,5.082642325169054812e-07,5.929749379363897457e-07,6.776856433558740103e-07,7.623963487753582748e-07,8.471070541948425393e-07,9.318177596143268038e-07,1.016528465033811174e-06,1.101239170453295545e-06,1.185949875872779915e-06,1.270660581292264285e-06,1.355371286711748656e-06,1.440081992131233026e-06,1.524792697550717397e-06,1.609503402970201767e-06,1.694214108389686137e-06,1.778924813809170508e-06,1.863635519228654878e-06,1.948346224648139037e-06,2.033056930067623195e-06,2.117767635487107354e-06,2.202478340906591513e-06,2.287189046326075671e-06,2.371899751745559830e-06,2.456610457165043989e-06,2.541321162584528147e-06,2.626031868004012306e-06,2.710742573423496465e-06,2.795453278842980623e-06,2.880163984262464782e-06,2.964874689681948940e-06,3.049585395101433099e-06,3.134296100520917258e-06,3.219006805940401416e-06,3.303717511359885575e-06,3.388428216779369734e-06,3.473138922198853892e-06,3.557849627618338051e-06,3.642560333037822210e-06,3.727271038457306368e-06,3.811981743876790527e-06,3.896692449296274685e-06,3.981403154715758844e-06,4.066113860135243003e-06,4.150824565554727161e-06,4.235535270974211320e-06,4.320245976393695479e-06,4.404956681813179637e-06,4.489667387232663796e-06,4.574378092652147955e-06,4.659088798071632113e-06,4.743799503491116272e-06,4.828510208910600431e-06,4.913220914330084589e-06,4.997931619749568748e-06,5.082642325169052906e-06,5.167353030588537065e-06,5.252063736008021224e-06,5.336774441427505382e-06 +0.000000000000000000e+00,9.014860355769130793e-08,1.802972071153826159e-07,2.704458106730739106e-07,3.605944142307651788e-07,4.507430177884564470e-07,5.408916213461477153e-07,6.310402249038389835e-07,7.211888284615302517e-07,8.113374320192215200e-07,9.014860355769127882e-07,9.916346391346040564e-07,1.081783242692295219e-06,1.171931846249986381e-06,1.262080449807677543e-06,1.352229053365368706e-06,1.442377656923059868e-06,1.532526260480751031e-06,1.622674864038442193e-06,1.712823467596133355e-06,1.802972071153824518e-06,1.893120674711515680e-06,1.983269278269206842e-06,2.073417881826898005e-06,2.163566485384589167e-06,2.253715088942280329e-06,2.343863692499971492e-06,2.434012296057662654e-06,2.524160899615353816e-06,2.614309503173044979e-06,2.704458106730736141e-06,2.794606710288427303e-06,2.884755313846118466e-06,2.974903917403809628e-06,3.065052520961500790e-06,3.155201124519191953e-06,3.245349728076883115e-06,3.335498331634574278e-06,3.425646935192265440e-06,3.515795538749956602e-06,3.605944142307647765e-06,3.696092745865338927e-06,3.786241349423030089e-06,3.876389952980721675e-06,3.966538556538412838e-06,4.056687160096104000e-06,4.146835763653795162e-06,4.236984367211486325e-06,4.327132970769177487e-06,4.417281574326868649e-06,4.507430177884559812e-06,4.597578781442250974e-06,4.687727384999942136e-06,4.777875988557633299e-06,4.868024592115324461e-06,4.958173195673015623e-06,5.048321799230706786e-06,5.138470402788397948e-06,5.228619006346089110e-06,5.318767609903780273e-06,5.408916213461471435e-06,5.499064817019162597e-06,5.589213420576853760e-06,5.679362024134544922e-06 +0.000000000000000000e+00,8.969874086764203762e-08,1.793974817352840752e-07,2.690962226029260996e-07,3.587949634705680975e-07,4.484937043382100955e-07,5.381924452058520934e-07,6.278911860734940383e-07,7.175899269411359833e-07,8.072886678087779283e-07,8.969874086764198733e-07,9.866861495440618182e-07,1.076384890411703763e-06,1.166083631279345708e-06,1.255782372146987653e-06,1.345481113014629598e-06,1.435179853882271543e-06,1.524878594749913488e-06,1.614577335617555433e-06,1.704276076485197378e-06,1.793974817352839323e-06,1.883673558220481268e-06,1.973372299088123213e-06,2.063071039955765158e-06,2.152769780823407103e-06,2.242468521691049048e-06,2.332167262558690993e-06,2.421866003426332938e-06,2.511564744293974883e-06,2.601263485161616828e-06,2.690962226029258773e-06,2.780660966896900718e-06,2.870359707764542663e-06,2.960058448632184608e-06,3.049757189499826553e-06,3.139455930367468498e-06,3.229154671235110443e-06,3.318853412102752388e-06,3.408552152970394333e-06,3.498250893838036278e-06,3.587949634705678223e-06,3.677648375573320168e-06,3.767347116440962112e-06,3.857045857308604057e-06,3.946744598176245579e-06,4.036443339043887100e-06,4.126142079911528622e-06,4.215840820779170143e-06,4.305539561646811665e-06,4.395238302514453186e-06,4.484937043382094708e-06,4.574635784249736229e-06,4.664334525117377751e-06,4.754033265985019272e-06,4.843732006852660794e-06,4.933430747720302315e-06,5.023129488587943836e-06,5.112828229455585358e-06,5.202526970323226879e-06,5.292225711190868401e-06,5.381924452058509922e-06,5.471623192926151444e-06,5.561321933793792965e-06,5.651020674661434487e-06 +0.000000000000000000e+00,8.471070541948595858e-08,1.694214108389719172e-07,2.541321162584578757e-07,3.388428216779438343e-07,4.235535270974297929e-07,5.082642325169157515e-07,5.929749379364017101e-07,6.776856433558876687e-07,7.623963487753736272e-07,8.471070541948595858e-07,9.318177596143455444e-07,1.016528465033831503e-06,1.101239170453317356e-06,1.185949875872803208e-06,1.270660581292289061e-06,1.355371286711774914e-06,1.440081992131260767e-06,1.524792697550746619e-06,1.609503402970232472e-06,1.694214108389718325e-06,1.778924813809204177e-06,1.863635519228690030e-06,1.948346224648175883e-06,2.033056930067661735e-06,2.117767635487147588e-06,2.202478340906633441e-06,2.287189046326119294e-06,2.371899751745605146e-06,2.456610457165090999e-06,2.541321162584576852e-06,2.626031868004062704e-06,2.710742573423548557e-06,2.795453278843034410e-06,2.880163984262520262e-06,2.964874689682006115e-06,3.049585395101491968e-06,3.134296100520977821e-06,3.219006805940463673e-06,3.303717511359949526e-06,3.388428216779435379e-06,3.473138922198921231e-06,3.557849627618407084e-06,3.642560333037892937e-06,3.727271038457378790e-06,3.811981743876864642e-06,3.896692449296350918e-06,3.981403154715836771e-06,4.066113860135322624e-06,4.150824565554808477e-06,4.235535270974294329e-06,4.320245976393780182e-06,4.404956681813266035e-06,4.489667387232751887e-06,4.574378092652237740e-06,4.659088798071723593e-06,4.743799503491209445e-06,4.828510208910695298e-06,4.913220914330181151e-06,4.997931619749667004e-06,5.082642325169152856e-06,5.167353030588638709e-06,5.252063736008124562e-06,5.336774441427610414e-06 +0.000000000000000000e+00,9.083668618800169619e-08,1.816733723760033924e-07,2.725100585640050886e-07,3.633467447520067847e-07,4.541834309400084809e-07,5.450201171280101771e-07,6.358568033160119262e-07,7.266934895040136754e-07,8.175301756920154245e-07,9.083668618800171736e-07,9.992035480680189227e-07,1.090040234256020566e-06,1.180876920444022209e-06,1.271713606632023852e-06,1.362550292820025496e-06,1.453386979008027139e-06,1.544223665196028782e-06,1.635060351384030425e-06,1.725897037572032069e-06,1.816733723760033712e-06,1.907570409948035567e-06,1.998407096136037422e-06,2.089243782324039277e-06,2.180080468512041132e-06,2.270917154700042987e-06,2.361753840888044842e-06,2.452590527076046697e-06,2.543427213264048552e-06,2.634263899452050407e-06,2.725100585640052262e-06,2.815937271828054117e-06,2.906773958016055972e-06,2.997610644204057827e-06,3.088447330392059682e-06,3.179284016580061537e-06,3.270120702768063392e-06,3.360957388956065247e-06,3.451794075144067102e-06,3.542630761332068957e-06,3.633467447520070812e-06,3.724304133708072667e-06,3.815140819896074522e-06,3.905977506084076377e-06,3.996814192272078232e-06,4.087650878460080087e-06,4.178487564648081942e-06,4.269324250836083797e-06,4.360160937024085652e-06,4.450997623212087507e-06,4.541834309400089362e-06,4.632670995588091217e-06,4.723507681776093072e-06,4.814344367964094927e-06,4.905181054152096782e-06,4.996017740340098637e-06,5.086854426528100492e-06,5.177691112716102347e-06,5.268527798904104202e-06,5.359364485092106057e-06,5.450201171280107912e-06,5.541037857468109767e-06,5.631874543656111622e-06,5.722711229844113477e-06 +0.000000000000000000e+00,9.054081360051677948e-08,1.810816272010335590e-07,2.716224408015503517e-07,3.621632544020671709e-07,4.527040680025839901e-07,5.432448816031008092e-07,6.337856952036176814e-07,7.243265088041345535e-07,8.148673224046514256e-07,9.054081360051682978e-07,9.959489496056851699e-07,1.086489763206202042e-06,1.177030576806718914e-06,1.267571390407235786e-06,1.358112204007752658e-06,1.448653017608269531e-06,1.539193831208786403e-06,1.629734644809303275e-06,1.720275458409820147e-06,1.810816272010337019e-06,1.901357085610853891e-06,1.991897899211370763e-06,2.082438712811887424e-06,2.172979526412404084e-06,2.263520340012920744e-06,2.354061153613437405e-06,2.444601967213954065e-06,2.535142780814470725e-06,2.625683594414987386e-06,2.716224408015504046e-06,2.806765221616020707e-06,2.897306035216537367e-06,2.987846848817054027e-06,3.078387662417570688e-06,3.168928476018087348e-06,3.259469289618604008e-06,3.350010103219120669e-06,3.440550916819637329e-06,3.531091730420153990e-06,3.621632544020670650e-06,3.712173357621187310e-06,3.802714171221703971e-06,3.893254984822220631e-06,3.983795798422737291e-06,4.074336612023253952e-06,4.164877425623770612e-06,4.255418239224287272e-06,4.345959052824803933e-06,4.436499866425320593e-06,4.527040680025837254e-06,4.617581493626353914e-06,4.708122307226870574e-06,4.798663120827387235e-06,4.889203934427903895e-06,4.979744748028420555e-06,5.070285561628937216e-06,5.160826375229453876e-06,5.251367188829970537e-06,5.341908002430487197e-06,5.432448816031003857e-06,5.522989629631520518e-06,5.613530443232037178e-06,5.704071256832553838e-06 +0.000000000000000000e+00,8.503202700988080677e-08,1.700640540197616135e-07,2.550960810296424203e-07,3.401281080395232271e-07,4.251601350494040338e-07,5.101921620592848406e-07,5.952241890691656474e-07,6.802562160790464542e-07,7.652882430889272609e-07,8.503202700988080677e-07,9.353522971086888745e-07,1.020384324118569681e-06,1.105416351128450594e-06,1.190448378138331507e-06,1.275480405148212419e-06,1.360512432158093332e-06,1.445544459167974244e-06,1.530576486177855157e-06,1.615608513187736070e-06,1.700640540197616982e-06,1.785672567207497895e-06,1.870704594217378808e-06,1.955736621227259720e-06,2.040768648237140633e-06,2.125800675247021546e-06,2.210832702256902458e-06,2.295864729266783371e-06,2.380896756276664284e-06,2.465928783286545196e-06,2.550960810296426109e-06,2.635992837306307022e-06,2.721024864316187934e-06,2.806056891326068847e-06,2.891088918335949759e-06,2.976120945345830672e-06,3.061152972355711585e-06,3.146184999365592497e-06,3.231217026375473410e-06,3.316249053385354323e-06,3.401281080395235235e-06,3.486313107405116148e-06,3.571345134414997061e-06,3.656377161424877973e-06,3.741409188434758886e-06,3.826441215444639375e-06,3.911473242454520288e-06,3.996505269464401200e-06,4.081537296474282113e-06,4.166569323484163026e-06,4.251601350494043938e-06,4.336633377503924851e-06,4.421665404513805764e-06,4.506697431523686676e-06,4.591729458533567589e-06,4.676761485543448502e-06,4.761793512553329414e-06,4.846825539563210327e-06,4.931857566573091240e-06,5.016889593582972152e-06,5.101921620592853065e-06,5.186953647602733977e-06,5.271985674612614890e-06,5.357017701622495803e-06 +0.000000000000000000e+00,9.083668618800495197e-08,1.816733723760099039e-07,2.725100585640148824e-07,3.633467447520198608e-07,4.541834309400248393e-07,5.450201171280297648e-07,6.358568033160346903e-07,7.266934895040396158e-07,8.175301756920445413e-07,9.083668618800494668e-07,9.992035480680542864e-07,1.090040234256059106e-06,1.180876920444063926e-06,1.271713606632068745e-06,1.362550292820073565e-06,1.453386979008078384e-06,1.544223665196083204e-06,1.635060351384088024e-06,1.725897037572092843e-06,1.816733723760097663e-06,1.907570409948102483e-06,1.998407096136107302e-06,2.089243782324112122e-06,2.180080468512116941e-06,2.270917154700121761e-06,2.361753840888126581e-06,2.452590527076131400e-06,2.543427213264136220e-06,2.634263899452141040e-06,2.725100585640145859e-06,2.815937271828150679e-06,2.906773958016155498e-06,2.997610644204160318e-06,3.088447330392165138e-06,3.179284016580169957e-06,3.270120702768174777e-06,3.360957388956179596e-06,3.451794075144184416e-06,3.542630761332189236e-06,3.633467447520194055e-06,3.724304133708198875e-06,3.815140819896203271e-06,3.905977506084207667e-06,3.996814192272212063e-06,4.087650878460216459e-06,4.178487564648220855e-06,4.269324250836225252e-06,4.360160937024229648e-06,4.450997623212234044e-06,4.541834309400238440e-06,4.632670995588242836e-06,4.723507681776247232e-06,4.814344367964251628e-06,4.905181054152256024e-06,4.996017740340260420e-06,5.086854426528264817e-06,5.177691112716269213e-06,5.268527798904273609e-06,5.359364485092278005e-06,5.450201171280282401e-06,5.541037857468286797e-06,5.631874543656291193e-06,5.722711229844295589e-06 +0.000000000000000000e+00,9.054081360052015438e-08,1.810816272010403088e-07,2.716224408015604631e-07,3.621632544020806175e-07,4.527040680026007719e-07,5.432448816031209263e-07,6.337856952036410807e-07,7.243265088041612350e-07,8.148673224046813894e-07,9.054081360052015438e-07,9.959489496057218041e-07,1.086489763206242064e-06,1.177030576806762325e-06,1.267571390407282585e-06,1.358112204007802845e-06,1.448653017608323105e-06,1.539193831208843366e-06,1.629734644809363626e-06,1.720275458409883886e-06,1.810816272010404146e-06,1.901357085610924407e-06,1.991897899211444455e-06,2.082438712811964504e-06,2.172979526412484552e-06,2.263520340013004601e-06,2.354061153613524649e-06,2.444601967214044698e-06,2.535142780814564746e-06,2.625683594415084795e-06,2.716224408015604843e-06,2.806765221616124892e-06,2.897306035216644940e-06,2.987846848817164989e-06,3.078387662417685037e-06,3.168928476018205086e-06,3.259469289618725134e-06,3.350010103219245183e-06,3.440550916819765231e-06,3.531091730420285280e-06,3.621632544020805328e-06,3.712173357621325377e-06,3.802714171221845425e-06,3.893254984822365474e-06,3.983795798422885522e-06,4.074336612023405571e-06,4.164877425623925619e-06,4.255418239224445668e-06,4.345959052824965716e-06,4.436499866425485765e-06,4.527040680026005813e-06,4.617581493626525862e-06,4.708122307227045910e-06,4.798663120827565959e-06,4.889203934428086007e-06,4.979744748028606056e-06,5.070285561629126104e-06,5.160826375229646153e-06,5.251367188830166201e-06,5.341908002430686250e-06,5.432448816031206298e-06,5.522989629631726347e-06,5.613530443232246395e-06,5.704071256832766444e-06 +0.000000000000000000e+00,8.503202700988299053e-08,1.700640540197659811e-07,2.550960810296489848e-07,3.401281080395320150e-07,4.251601350494150453e-07,5.101921620592980755e-07,5.952241890691811057e-07,6.802562160790641360e-07,7.652882430889471662e-07,8.503202700988301964e-07,9.353522971087132267e-07,1.020384324118596363e-06,1.105416351128479393e-06,1.190448378138362423e-06,1.275480405148245453e-06,1.360512432158128484e-06,1.445544459168011514e-06,1.530576486177894544e-06,1.615608513187777574e-06,1.700640540197660605e-06,1.785672567207543635e-06,1.870704594217426665e-06,1.955736621227309695e-06,2.040768648237192726e-06,2.125800675247075756e-06,2.210832702256958786e-06,2.295864729266841816e-06,2.380896756276724846e-06,2.465928783286607877e-06,2.550960810296490907e-06,2.635992837306373937e-06,2.721024864316256967e-06,2.806056891326139998e-06,2.891088918336023028e-06,2.976120945345906058e-06,3.061152972355789088e-06,3.146184999365672119e-06,3.231217026375555149e-06,3.316249053385438179e-06,3.401281080395321209e-06,3.486313107405204239e-06,3.571345134415087270e-06,3.656377161424970300e-06,3.741409188434853330e-06,3.826441215444735937e-06,3.911473242454618544e-06,3.996505269464501150e-06,4.081537296474383757e-06,4.166569323484266364e-06,4.251601350494148970e-06,4.336633377504031577e-06,4.421665404513914184e-06,4.506697431523796791e-06,4.591729458533679397e-06,4.676761485543562004e-06,4.761793512553444611e-06,4.846825539563327217e-06,4.931857566573209824e-06,5.016889593583092431e-06,5.101921620592975038e-06,5.186953647602857644e-06,5.271985674612740251e-06,5.357017701622622858e-06 +0.000000000000000000e+00,9.103505937049658842e-08,1.820701187409931768e-07,2.731051781114897785e-07,3.641402374819864066e-07,4.551752968524830347e-07,5.462103562229796629e-07,6.372454155934762910e-07,7.282804749639729191e-07,8.193155343344695472e-07,9.103505937049661753e-07,1.001385653075462803e-06,1.092420712445959537e-06,1.183455771816456271e-06,1.274490831186953005e-06,1.365525890557449739e-06,1.456560949927946473e-06,1.547596009298443207e-06,1.638631068668939941e-06,1.729666128039436675e-06,1.820701187409933409e-06,1.911736246780430143e-06,2.002771306150926877e-06,2.093806365521423611e-06,2.184841424891920345e-06,2.275876484262417079e-06,2.366911543632913813e-06,2.457946603003410547e-06,2.548981662373907281e-06,2.640016721744404015e-06,2.731051781114900750e-06,2.822086840485397484e-06,2.913121899855894218e-06,3.004156959226390952e-06,3.095192018596887686e-06,3.186227077967384420e-06,3.277262137337881154e-06,3.368297196708377888e-06,3.459332256078874622e-06,3.550367315449371356e-06,3.641402374819868090e-06,3.732437434190364824e-06,3.823472493560861981e-06,3.914507552931359139e-06,4.005542612301856296e-06,4.096577671672353454e-06,4.187612731042850611e-06,4.278647790413347769e-06,4.369682849783844926e-06,4.460717909154342084e-06,4.551752968524839241e-06,4.642788027895336399e-06,4.733823087265833556e-06,4.824858146636330714e-06,4.915893206006827871e-06,5.006928265377325029e-06,5.097963324747822186e-06,5.188998384118319344e-06,5.280033443488816501e-06,5.371068502859313659e-06,5.462103562229810816e-06,5.553138621600307974e-06,5.644173680970805131e-06,5.735208740341302289e-06 +0.000000000000000000e+00,9.102851697218148812e-08,1.820570339443629762e-07,2.730855509165444644e-07,3.641140678887259525e-07,4.551425848609074406e-07,5.461711018330889287e-07,6.371996188052704168e-07,7.282281357774519049e-07,8.192566527496333931e-07,9.102851697218148812e-07,1.001313686693996475e-06,1.092342203666178069e-06,1.183370720638359663e-06,1.274399237610541257e-06,1.365427754582722851e-06,1.456456271554904445e-06,1.547484788527086039e-06,1.638513305499267633e-06,1.729541822471449227e-06,1.820570339443630821e-06,1.911598856415812415e-06,2.002627373387993797e-06,2.093655890360175180e-06,2.184684407332356562e-06,2.275712924304537944e-06,2.366741441276719326e-06,2.457769958248900709e-06,2.548798475221082091e-06,2.639826992193263473e-06,2.730855509165444855e-06,2.821884026137626238e-06,2.912912543109807620e-06,3.003941060081989002e-06,3.094969577054170384e-06,3.185998094026351766e-06,3.277026610998533149e-06,3.368055127970714531e-06,3.459083644942895913e-06,3.550112161915077295e-06,3.641140678887258678e-06,3.732169195859440060e-06,3.823197712831621442e-06,3.914226229803802824e-06,4.005254746775984207e-06,4.096283263748165589e-06,4.187311780720346971e-06,4.278340297692528353e-06,4.369368814664709736e-06,4.460397331636891118e-06,4.551425848609072500e-06,4.642454365581253882e-06,4.733482882553435265e-06,4.824511399525616647e-06,4.915539916497798029e-06,5.006568433469979411e-06,5.097596950442160793e-06,5.188625467414342176e-06,5.279653984386523558e-06,5.370682501358704940e-06,5.461711018330886322e-06,5.552739535303067705e-06,5.643768052275249087e-06,5.734796569247430469e-06 +0.000000000000000000e+00,9.102564728867159510e-08,1.820512945773431902e-07,2.730769418660147721e-07,3.641025891546863275e-07,4.551282364433578829e-07,5.461538837320294383e-07,6.371795310207010466e-07,7.282051783093726549e-07,8.192308255980442633e-07,9.102564728867158716e-07,1.001282120175387480e-06,1.092307767464059088e-06,1.183333414752730697e-06,1.274359062041402305e-06,1.365384709330073913e-06,1.456410356618745522e-06,1.547436003907417130e-06,1.638461651196088738e-06,1.729487298484760347e-06,1.820512945773431955e-06,1.911538593062103563e-06,2.002564240350774960e-06,2.093589887639446356e-06,2.184615534928117753e-06,2.275641182216789150e-06,2.366666829505460546e-06,2.457692476794131943e-06,2.548718124082803339e-06,2.639743771371474736e-06,2.730769418660146133e-06,2.821795065948817529e-06,2.912820713237488926e-06,3.003846360526160322e-06,3.094872007814831719e-06,3.185897655103503115e-06,3.276923302392174512e-06,3.367948949680845909e-06,3.458974596969517305e-06,3.550000244258188702e-06,3.641025891546860098e-06,3.732051538835531495e-06,3.823077186124202891e-06,3.914102833412874288e-06,4.005128480701545685e-06,4.096154127990217081e-06,4.187179775278888478e-06,4.278205422567559874e-06,4.369231069856231271e-06,4.460256717144902667e-06,4.551282364433574064e-06,4.642308011722245461e-06,4.733333659010916857e-06,4.824359306299588254e-06,4.915384953588259650e-06,5.006410600876931047e-06,5.097436248165602444e-06,5.188461895454273840e-06,5.279487542742945237e-06,5.370513190031616633e-06,5.461538837320288030e-06,5.552564484608959426e-06,5.643590131897630823e-06,5.734615779186302220e-06 +0.000000000000000000e+00,8.505748279468316786e-08,1.701149655893663357e-07,2.551724483840495168e-07,3.402299311787327244e-07,4.252874139734159319e-07,5.103448967680991395e-07,5.954023795627823471e-07,6.804598623574655546e-07,7.655173451521487622e-07,8.505748279468319697e-07,9.356323107415151773e-07,1.020689793536198491e-06,1.105747276330881804e-06,1.190804759125565118e-06,1.275862241920248431e-06,1.360919724714931745e-06,1.445977207509615058e-06,1.531034690304298371e-06,1.616092173098981685e-06,1.701149655893664998e-06,1.786207138688348312e-06,1.871264621483031625e-06,1.956322104277714939e-06,2.041379587072398252e-06,2.126437069867081565e-06,2.211494552661764879e-06,2.296552035456448192e-06,2.381609518251131506e-06,2.466667001045814819e-06,2.551724483840498133e-06,2.636781966635181446e-06,2.721839449429864760e-06,2.806896932224548073e-06,2.891954415019231386e-06,2.977011897813914700e-06,3.062069380608598013e-06,3.147126863403281327e-06,3.232184346197964640e-06,3.317241828992647954e-06,3.402299311787331267e-06,3.487356794582014581e-06,3.572414277376697894e-06,3.657471760171381207e-06,3.742529242966064521e-06,3.827586725760747834e-06,3.912644208555431571e-06,3.997701691350115308e-06,4.082759174144799045e-06,4.167816656939482782e-06,4.252874139734166519e-06,4.337931622528850256e-06,4.422989105323533993e-06,4.508046588118217730e-06,4.593104070912901467e-06,4.678161553707585204e-06,4.763219036502268941e-06,4.848276519296952678e-06,4.933334002091636415e-06,5.018391484886320152e-06,5.103448967681003889e-06,5.188506450475687626e-06,5.273563933270371363e-06,5.358621416065055100e-06 +0.000000000000000000e+00,9.102966249159008297e-08,1.820593249831801659e-07,2.730889874747702754e-07,3.641186499663603848e-07,4.551483124579504943e-07,5.461779749495405508e-07,6.372076374411306073e-07,7.282372999327206638e-07,8.192669624243107203e-07,9.102966249159007768e-07,1.001326287407490833e-06,1.092355949899080890e-06,1.183385612390670946e-06,1.274415274882261003e-06,1.365444937373851059e-06,1.456474599865441116e-06,1.547504262357031172e-06,1.638533924848621229e-06,1.729563587340211285e-06,1.820593249831801342e-06,1.911622912323391398e-06,2.002652574814981667e-06,2.093682237306571935e-06,2.184711899798162203e-06,2.275741562289752471e-06,2.366771224781342740e-06,2.457800887272933008e-06,2.548830549764523276e-06,2.639860212256113544e-06,2.730889874747703813e-06,2.821919537239294081e-06,2.912949199730884349e-06,3.003978862222474617e-06,3.095008524714064886e-06,3.186038187205655154e-06,3.277067849697245422e-06,3.368097512188835690e-06,3.459127174680425959e-06,3.550156837172016227e-06,3.641186499663606495e-06,3.732216162155196764e-06,3.823245824646787032e-06,3.914275487138377724e-06,4.005305149629968415e-06,4.096334812121559107e-06,4.187364474613149799e-06,4.278394137104740491e-06,4.369423799596331182e-06,4.460453462087921874e-06,4.551483124579512566e-06,4.642512787071103258e-06,4.733542449562693950e-06,4.824572112054284641e-06,4.915601774545875333e-06,5.006631437037466025e-06,5.097661099529056717e-06,5.188690762020647408e-06,5.279720424512238100e-06,5.370750087003828792e-06,5.461779749495419484e-06,5.552809411987010176e-06,5.643839074478600867e-06,5.734868736970191559e-06 +0.000000000000000000e+00,8.505294959282257151e-08,1.701058991856451430e-07,2.551588487784677145e-07,3.402117983712902860e-07,4.252647479641128576e-07,5.103176975569354291e-07,5.953706471497579476e-07,6.804235967425804662e-07,7.654765463354029848e-07,8.505294959282255034e-07,9.355824455210480219e-07,1.020635395113870646e-06,1.105688344706693271e-06,1.190741294299515895e-06,1.275794243892338520e-06,1.360847193485161144e-06,1.445900143077983769e-06,1.530953092670806393e-06,1.616006042263629018e-06,1.701058991856451642e-06,1.786111941449274266e-06,1.871164891042096891e-06,1.956217840634919304e-06,2.041270790227741716e-06,2.126323739820564129e-06,2.211376689413386542e-06,2.296429639006208954e-06,2.381482588599031367e-06,2.466535538191853780e-06,2.551588487784676192e-06,2.636641437377498605e-06,2.721694386970321018e-06,2.806747336563143430e-06,2.891800286155965843e-06,2.976853235748788256e-06,3.061906185341610669e-06,3.146959134934433081e-06,3.232012084527255494e-06,3.317065034120077907e-06,3.402117983712900319e-06,3.487170933305722732e-06,3.572223882898545145e-06,3.657276832491367557e-06,3.742329782084189970e-06,3.827382731677012383e-06,3.912435681269835219e-06,3.997488630862658055e-06,4.082541580455480891e-06,4.167594530048303728e-06,4.252647479641126564e-06,4.337700429233949400e-06,4.422753378826772236e-06,4.507806328419595072e-06,4.592859278012417909e-06,4.677912227605240745e-06,4.762965177198063581e-06,4.848018126790886417e-06,4.933071076383709254e-06,5.018124025976532090e-06,5.103176975569354926e-06,5.188229925162177762e-06,5.273282874755000598e-06,5.358335824347823435e-06 +0.000000000000000000e+00,9.103505937050152503e-08,1.820701187410030501e-07,2.731051781115046016e-07,3.641402374820061531e-07,4.551752968525077046e-07,5.462103562230092031e-07,6.372454155935107017e-07,7.282804749640122003e-07,8.193155343345136988e-07,9.103505937050151974e-07,1.001385653075516590e-06,1.092420712446017983e-06,1.183455771816519375e-06,1.274490831187020768e-06,1.365525890557522161e-06,1.456560949928023553e-06,1.547596009298524946e-06,1.638631068669026339e-06,1.729666128039527732e-06,1.820701187410029124e-06,1.911736246780530517e-06,2.002771306151031910e-06,2.093806365521533302e-06,2.184841424892034695e-06,2.275876484262536088e-06,2.366911543633037480e-06,2.457946603003538873e-06,2.548981662374040266e-06,2.640016721744541658e-06,2.731051781115043051e-06,2.822086840485544444e-06,2.913121899856045836e-06,3.004156959226547229e-06,3.095192018597048622e-06,3.186227077967550014e-06,3.277262137338051407e-06,3.368297196708552800e-06,3.459332256079054192e-06,3.550367315449555585e-06,3.641402374820056978e-06,3.732437434190558371e-06,3.823472493561060187e-06,3.914507552931561579e-06,4.005542612302062972e-06,4.096577671672564365e-06,4.187612731043065757e-06,4.278647790413567150e-06,4.369682849784068543e-06,4.460717909154569936e-06,4.551752968525071328e-06,4.642788027895572721e-06,4.733823087266074114e-06,4.824858146636575506e-06,4.915893206007076899e-06,5.006928265377578292e-06,5.097963324748079684e-06,5.188998384118581077e-06,5.280033443489082470e-06,5.371068502859583862e-06,5.462103562230085255e-06,5.553138621600586648e-06,5.644173680971088040e-06,5.735208740341589433e-06 +0.000000000000000000e+00,9.102966249159237261e-08,1.820593249831847452e-07,2.730889874747771046e-07,3.641186499663694375e-07,4.551483124579617704e-07,5.461779749495541033e-07,6.372076374411464891e-07,7.282372999327388750e-07,8.192669624243312608e-07,9.102966249159236467e-07,1.001326287407516033e-06,1.092355949899108418e-06,1.183385612390700804e-06,1.274415274882293190e-06,1.365444937373885576e-06,1.456474599865477962e-06,1.547504262357070348e-06,1.638533924848662733e-06,1.729563587340255119e-06,1.820593249831847505e-06,1.911622912323440103e-06,2.002652574815032489e-06,2.093682237306624874e-06,2.184711899798217260e-06,2.275741562289809646e-06,2.366771224781402032e-06,2.457800887272994418e-06,2.548830549764586804e-06,2.639860212256179189e-06,2.730889874747771575e-06,2.821919537239363961e-06,2.912949199730956347e-06,3.003978862222548733e-06,3.095008524714141119e-06,3.186038187205733504e-06,3.277067849697325890e-06,3.368097512188918276e-06,3.459127174680510662e-06,3.550156837172103048e-06,3.641186499663695434e-06,3.732216162155287820e-06,3.823245824646880205e-06,3.914275487138472591e-06,4.005305149630064977e-06,4.096334812121657363e-06,4.187364474613249749e-06,4.278394137104842135e-06,4.369423799596434520e-06,4.460453462088026906e-06,4.551483124579619292e-06,4.642512787071211678e-06,4.733542449562804064e-06,4.824572112054396450e-06,4.915601774545988836e-06,5.006631437037581221e-06,5.097661099529173607e-06,5.188690762020765993e-06,5.279720424512358379e-06,5.370750087003950765e-06,5.461779749495543151e-06,5.552809411987135536e-06,5.643839074478727922e-06,5.734868736970320308e-06 +0.000000000000000000e+00,9.102564728867594938e-08,1.820512945773518988e-07,2.730769418660278481e-07,3.641025891547037975e-07,4.551282364433797469e-07,5.461538837320556963e-07,6.371795310207316457e-07,7.282051783094075950e-07,8.192308255980835444e-07,9.102564728867594938e-07,1.001282120175435337e-06,1.092307767464111181e-06,1.183333414752787024e-06,1.274359062041462868e-06,1.365384709330138711e-06,1.456410356618814555e-06,1.547436003907490398e-06,1.638461651196166242e-06,1.729487298484842085e-06,1.820512945773517929e-06,1.911538593062193772e-06,2.002564240350869828e-06,2.093589887639545883e-06,2.184615534928221938e-06,2.275641182216897993e-06,2.366666829505574049e-06,2.457692476794250104e-06,2.548718124082926159e-06,2.639743771371602214e-06,2.730769418660278270e-06,2.821795065948954325e-06,2.912820713237630380e-06,3.003846360526306435e-06,3.094872007814982491e-06,3.185897655103658546e-06,3.276923302392334601e-06,3.367948949681010656e-06,3.458974596969686712e-06,3.550000244258362767e-06,3.641025891547038822e-06,3.732051538835714877e-06,3.823077186124390933e-06,3.914102833413066564e-06,4.005128480701742196e-06,4.096154127990417828e-06,4.187179775279093460e-06,4.278205422567769091e-06,4.369231069856444723e-06,4.460256717145120355e-06,4.551282364433795987e-06,4.642308011722471618e-06,4.733333659011147250e-06,4.824359306299822882e-06,4.915384953588498514e-06,5.006410600877174145e-06,5.097436248165849777e-06,5.188461895454525409e-06,5.279487542743201041e-06,5.370513190031876672e-06,5.461538837320552304e-06,5.552564484609227936e-06,5.643590131897903568e-06,5.734615779186579199e-06 +0.000000000000000000e+00,8.505748279468543102e-08,1.701149655893708620e-07,2.551724483840562931e-07,3.402299311787417241e-07,4.252874139734271551e-07,5.103448967681125861e-07,5.954023795627980172e-07,6.804598623574834482e-07,7.655173451521688792e-07,8.505748279468543102e-07,9.356323107415397413e-07,1.020689793536225172e-06,1.105747276330910603e-06,1.190804759125596034e-06,1.275862241920281465e-06,1.360919724714966896e-06,1.445977207509652327e-06,1.531034690304337758e-06,1.616092173099023189e-06,1.701149655893708620e-06,1.786207138688394051e-06,1.871264621483079483e-06,1.956322104277764914e-06,2.041379587072450345e-06,2.126437069867135776e-06,2.211494552661821207e-06,2.296552035456506638e-06,2.381609518251192069e-06,2.466667001045877500e-06,2.551724483840562931e-06,2.636781966635248362e-06,2.721839449429933793e-06,2.806896932224619224e-06,2.891954415019304655e-06,2.977011897813990086e-06,3.062069380608675517e-06,3.147126863403360948e-06,3.232184346198046379e-06,3.317241828992731810e-06,3.402299311787417241e-06,3.487356794582102672e-06,3.572414277376788103e-06,3.657471760171473534e-06,3.742529242966158965e-06,3.827586725760844396e-06,3.912644208555529827e-06,3.997701691350215258e-06,4.082759174144900689e-06,4.167816656939586120e-06,4.252874139734271551e-06,4.337931622528956982e-06,4.422989105323642413e-06,4.508046588118327844e-06,4.593104070913013275e-06,4.678161553707698706e-06,4.763219036502384137e-06,4.848276519297069568e-06,4.933334002091754999e-06,5.018391484886440430e-06,5.103448967681125861e-06,5.188506450475811292e-06,5.273563933270496723e-06,5.358621416065182154e-06 +0.000000000000000000e+00,9.554438595580016222e-08,1.910887719116003244e-07,2.866331578674004734e-07,3.821775438232005959e-07,4.777219297790006655e-07,5.732663157348007351e-07,6.688107016906008047e-07,7.643550876464008742e-07,8.598994736022009438e-07,9.554438595580009075e-07,1.050988245513800871e-06,1.146532631469600835e-06,1.242077017425400799e-06,1.337621403381200762e-06,1.433165789337000726e-06,1.528710175292800690e-06,1.624254561248600653e-06,1.719798947204400617e-06,1.815343333160200581e-06,1.910887719116000544e-06,2.006432105071800296e-06,2.101976491027600048e-06,2.197520876983399800e-06,2.293065262939199552e-06,2.388609648894999304e-06,2.484154034850799056e-06,2.579698420806598808e-06,2.675242806762398560e-06,2.770787192718198312e-06,2.866331578673998064e-06,2.961875964629797816e-06,3.057420350585597568e-06,3.152964736541397320e-06,3.248509122497197072e-06,3.344053508452996824e-06,3.439597894408796575e-06,3.535142280364596327e-06,3.630686666320396079e-06,3.726231052276195831e-06,3.821775438231995160e-06,3.917319824187794488e-06,4.012864210143593817e-06,4.108408596099393145e-06,4.203952982055192473e-06,4.299497368010991802e-06,4.395041753966791130e-06,4.490586139922590459e-06,4.586130525878389787e-06,4.681674911834189116e-06,4.777219297789988444e-06,4.872763683745787772e-06,4.968308069701587101e-06,5.063852455657386429e-06,5.159396841613185758e-06,5.254941227568985086e-06,5.350485613524784414e-06,5.446029999480583743e-06,5.541574385436383071e-06,5.637118771392182400e-06,5.732663157347981728e-06,5.828207543303781057e-06,5.923751929259580385e-06,6.019296315215379713e-06 +0.000000000000000000e+00,9.239687439146457120e-08,1.847937487829291424e-07,2.771906231743937004e-07,3.695874975658582319e-07,4.619843719573227634e-07,5.543812463487872949e-07,6.467781207402518793e-07,7.391749951317164637e-07,8.315718695231810482e-07,9.239687439146456326e-07,1.016365618306110217e-06,1.108762492697574801e-06,1.201159367089039386e-06,1.293556241480503970e-06,1.385953115871968555e-06,1.478349990263433139e-06,1.570746864654897724e-06,1.663143739046362308e-06,1.755540613437826893e-06,1.847937487829291477e-06,1.940334362220756061e-06,2.032731236612220434e-06,2.125128111003684807e-06,2.217524985395149179e-06,2.309921859786613552e-06,2.402318734178077925e-06,2.494715608569542297e-06,2.587112482961006670e-06,2.679509357352471043e-06,2.771906231743935415e-06,2.864303106135399788e-06,2.956699980526864161e-06,3.049096854918328533e-06,3.141493729309792906e-06,3.233890603701257279e-06,3.326287478092721652e-06,3.418684352484186024e-06,3.511081226875650397e-06,3.603478101267114770e-06,3.695874975658579142e-06,3.788271850050043515e-06,3.880668724441507888e-06,3.973065598832972260e-06,4.065462473224436633e-06,4.157859347615901006e-06,4.250256222007365378e-06,4.342653096398829751e-06,4.435049970790294124e-06,4.527446845181758496e-06,4.619843719573222869e-06,4.712240593964687242e-06,4.804637468356151614e-06,4.897034342747615987e-06,4.989431217139080360e-06,5.081828091530544732e-06,5.174224965922009105e-06,5.266621840313473478e-06,5.359018714704937850e-06,5.451415589096402223e-06,5.543812463487866596e-06,5.636209337879330968e-06,5.728606212270795341e-06,5.821003086662259714e-06 +0.000000000000000000e+00,9.573928027725346246e-08,1.914785605545069249e-07,2.872178408317604139e-07,3.829571211090139028e-07,4.786964013862673917e-07,5.744356816635208277e-07,6.701749619407742637e-07,7.659142422180276997e-07,8.616535224952811357e-07,9.573928027725345717e-07,1.053132083049787902e-06,1.148871363327041232e-06,1.244610643604294562e-06,1.340349923881547892e-06,1.436089204158801222e-06,1.531828484436054552e-06,1.627567764713307882e-06,1.723307044990561213e-06,1.819046325267814543e-06,1.914785605545067873e-06,2.010524885822321203e-06,2.106264166099574533e-06,2.202003446376827863e-06,2.297742726654081193e-06,2.393482006931334523e-06,2.489221287208587853e-06,2.584960567485841184e-06,2.680699847763094514e-06,2.776439128040347844e-06,2.872178408317601174e-06,2.967917688594854504e-06,3.063656968872107834e-06,3.159396249149361164e-06,3.255135529426614494e-06,3.350874809703867824e-06,3.446614089981121155e-06,3.542353370258374485e-06,3.638092650535627815e-06,3.733831930812881145e-06,3.829571211090134899e-06,3.925310491367389076e-06,4.021049771644643253e-06,4.116789051921897430e-06,4.212528332199151607e-06,4.308267612476405784e-06,4.404006892753659961e-06,4.499746173030914139e-06,4.595485453308168316e-06,4.691224733585422493e-06,4.786964013862676670e-06,4.882703294139930847e-06,4.978442574417185024e-06,5.074181854694439201e-06,5.169921134971693379e-06,5.265660415248947556e-06,5.361399695526201733e-06,5.457138975803455910e-06,5.552878256080710087e-06,5.648617536357964264e-06,5.744356816635218441e-06,5.840096096912472619e-06,5.935835377189726796e-06,6.031574657466980973e-06 +0.000000000000000000e+00,9.165082118949487951e-08,1.833016423789897590e-07,2.749524635684846253e-07,3.666032847579794651e-07,4.582541059474743049e-07,5.499049271369691447e-07,6.415557483264639845e-07,7.332065695159588243e-07,8.248573907054536642e-07,9.165082118949485040e-07,1.008159033084443344e-06,1.099809854273938078e-06,1.191460675463432812e-06,1.283111496652927546e-06,1.374762317842422279e-06,1.466413139031917013e-06,1.558063960221411747e-06,1.649714781410906481e-06,1.741365602600401215e-06,1.833016423789895949e-06,1.924667244979390895e-06,2.016318066168885841e-06,2.107968887358380786e-06,2.199619708547875732e-06,2.291270529737370678e-06,2.382921350926865623e-06,2.474572172116360569e-06,2.566222993305855515e-06,2.657873814495350460e-06,2.749524635684845406e-06,2.841175456874340352e-06,2.932826278063835297e-06,3.024477099253330243e-06,3.116127920442825189e-06,3.207778741632320134e-06,3.299429562821815080e-06,3.391080384011310026e-06,3.482731205200804971e-06,3.574382026390299917e-06,3.666032847579794863e-06,3.757683668769289809e-06,3.849334489958785178e-06,3.940985311148280547e-06,4.032636132337775916e-06,4.124286953527271285e-06,4.215937774716766655e-06,4.307588595906262024e-06,4.399239417095757393e-06,4.490890238285252762e-06,4.582541059474748131e-06,4.674191880664243501e-06,4.765842701853738870e-06,4.857493523043234239e-06,4.949144344232729608e-06,5.040795165422224977e-06,5.132445986611720347e-06,5.224096807801215716e-06,5.315747628990711085e-06,5.407398450180206454e-06,5.499049271369701823e-06,5.590700092559197193e-06,5.682350913748692562e-06,5.774001734938187931e-06 +0.000000000000000000e+00,9.302068458482883093e-08,1.860413691696576619e-07,2.790620537544864928e-07,3.720827383393153237e-07,4.651034229241441546e-07,5.581241075089729856e-07,6.511447920938017635e-07,7.441654766786305415e-07,8.371861612634593195e-07,9.302068458482880975e-07,1.023227530433116875e-06,1.116248215017945759e-06,1.209268899602774643e-06,1.302289584187603527e-06,1.395310268772432411e-06,1.488330953357261295e-06,1.581351637942090179e-06,1.674372322526919063e-06,1.767393007111747946e-06,1.860413691696576830e-06,1.953434376281405502e-06,2.046455060866234175e-06,2.139475745451062847e-06,2.232496430035891519e-06,2.325517114620720191e-06,2.418537799205548863e-06,2.511558483790377535e-06,2.604579168375206207e-06,2.697599852960034879e-06,2.790620537544863551e-06,2.883641222129692223e-06,2.976661906714520896e-06,3.069682591299349568e-06,3.162703275884178240e-06,3.255723960469006912e-06,3.348744645053835584e-06,3.441765329638664256e-06,3.534786014223492928e-06,3.627806698808321600e-06,3.720827383393150272e-06,3.813848067977978945e-06,3.906868752562807617e-06,3.999889437147636289e-06,4.092910121732464961e-06,4.185930806317293633e-06,4.278951490902122305e-06,4.371972175486950977e-06,4.464992860071779649e-06,4.558013544656608321e-06,4.651034229241436994e-06,4.744054913826265666e-06,4.837075598411094338e-06,4.930096282995923010e-06,5.023116967580751682e-06,5.116137652165580354e-06,5.209158336750409026e-06,5.302179021335237698e-06,5.395199705920066370e-06,5.488220390504895043e-06,5.581241075089723715e-06,5.674261759674552387e-06,5.767282444259381059e-06,5.860303128844209731e-06 +0.000000000000000000e+00,8.913184823019210717e-08,1.782636964603842143e-07,2.673955446905763347e-07,3.565273929207684816e-07,4.456592411509606285e-07,5.347910893811527753e-07,6.239229376113449222e-07,7.130547858415370691e-07,8.021866340717292160e-07,8.913184823019213628e-07,9.804503305321135097e-07,1.069582178762305762e-06,1.158714026992498015e-06,1.247845875222690268e-06,1.336977723452882521e-06,1.426109571683074773e-06,1.515241419913267026e-06,1.604373268143459279e-06,1.693505116373651532e-06,1.782636964603843784e-06,1.871768812834036037e-06,1.960900661064228290e-06,2.050032509294420543e-06,2.139164357524612795e-06,2.228296205754805048e-06,2.317428053984997301e-06,2.406559902215189554e-06,2.495691750445381806e-06,2.584823598675574059e-06,2.673955446905766312e-06,2.763087295135958565e-06,2.852219143366150817e-06,2.941350991596343070e-06,3.030482839826535323e-06,3.119614688056727576e-06,3.208746536286919828e-06,3.297878384517112081e-06,3.387010232747304334e-06,3.476142080977496587e-06,3.565273929207688839e-06,3.654405777437881092e-06,3.743537625668073345e-06,3.832669473898266021e-06,3.921801322128459121e-06,4.010933170358652221e-06,4.100065018588845321e-06,4.189196866819038420e-06,4.278328715049231520e-06,4.367460563279424620e-06,4.456592411509617720e-06,4.545724259739810819e-06,4.634856107970003919e-06,4.723987956200197019e-06,4.813119804430390119e-06,4.902251652660583219e-06,4.991383500890776318e-06,5.080515349120969418e-06,5.169647197351162518e-06,5.258779045581355618e-06,5.347910893811548717e-06,5.437042742041741817e-06,5.526174590271934917e-06,5.615306438502128017e-06 +0.000000000000000000e+00,9.569446908483853255e-08,1.913889381696770651e-07,2.870834072545155844e-07,3.827778763393540772e-07,4.784723454241925172e-07,5.741668145090309571e-07,6.698612835938693970e-07,7.655557526787078369e-07,8.612502217635462768e-07,9.569446908483846108e-07,1.052639159933222945e-06,1.148333629018061279e-06,1.244028098102899613e-06,1.339722567187737947e-06,1.435417036272576281e-06,1.531111505357414615e-06,1.626805974442252949e-06,1.722500443527091283e-06,1.818194912611929617e-06,1.913889381696767951e-06,2.009583850781606285e-06,2.105278319866444619e-06,2.200972788951282953e-06,2.296667258036121287e-06,2.392361727120959621e-06,2.488056196205797955e-06,2.583750665290636289e-06,2.679445134375474623e-06,2.775139603460312957e-06,2.870834072545151291e-06,2.966528541629989625e-06,3.062223010714827959e-06,3.157917479799666293e-06,3.253611948884504627e-06,3.349306417969342961e-06,3.445000887054181295e-06,3.540695356139019629e-06,3.636389825223857963e-06,3.732084294308696297e-06,3.827778763393535055e-06,3.923473232478373813e-06,4.019167701563212570e-06,4.114862170648051328e-06,4.210556639732890085e-06,4.306251108817728843e-06,4.401945577902567600e-06,4.497640046987406358e-06,4.593334516072245115e-06,4.689028985157083873e-06,4.784723454241922630e-06,4.880417923326761388e-06,4.976112392411600146e-06,5.071806861496438903e-06,5.167501330581277661e-06,5.263195799666116418e-06,5.358890268750955176e-06,5.454584737835793933e-06,5.550279206920632691e-06,5.645973676005471448e-06,5.741668145090310206e-06,5.837362614175148963e-06,5.933057083259987721e-06,6.028751552344826478e-06 +0.000000000000000000e+00,9.181463915778863857e-08,1.836292783155772771e-07,2.754439174733659025e-07,3.672585566311545013e-07,4.590731957889431002e-07,5.508878349467316991e-07,6.427024741045203509e-07,7.345171132623090027e-07,8.263317524200976545e-07,9.181463915778863063e-07,1.009961030735674958e-06,1.101775669893463610e-06,1.193590309051252262e-06,1.285404948209040913e-06,1.377219587366829565e-06,1.469034226524618217e-06,1.560848865682406869e-06,1.652663504840195521e-06,1.744478143997984172e-06,1.836292783155772824e-06,1.928107422313561688e-06,2.019922061471350340e-06,2.111736700629138991e-06,2.203551339786927643e-06,2.295365978944716295e-06,2.387180618102504947e-06,2.478995257260293599e-06,2.570809896418082250e-06,2.662624535575870902e-06,2.754439174733659554e-06,2.846253813891448206e-06,2.938068453049236858e-06,3.029883092207025509e-06,3.121697731364814161e-06,3.213512370522602813e-06,3.305327009680391465e-06,3.397141648838180117e-06,3.488956287995968768e-06,3.580770927153757420e-06,3.672585566311546072e-06,3.764400205469334724e-06,3.856214844627123376e-06,3.948029483784912027e-06,4.039844122942700679e-06,4.131658762100489331e-06,4.223473401258277983e-06,4.315288040416066635e-06,4.407102679573855286e-06,4.498917318731643938e-06,4.590731957889432590e-06,4.682546597047221242e-06,4.774361236205009894e-06,4.866175875362798546e-06,4.957990514520587197e-06,5.049805153678375849e-06,5.141619792836164501e-06,5.233434431993953153e-06,5.325249071151741805e-06,5.417063710309530456e-06,5.508878349467319108e-06,5.600692988625107760e-06,5.692507627782896412e-06,5.784322266940685064e-06 +0.000000000000000000e+00,9.554438595580242539e-08,1.910887719116048508e-07,2.866331578674073026e-07,3.821775438232097545e-07,4.777219297790122063e-07,5.732663157348146053e-07,6.688107016906170042e-07,7.643550876464194031e-07,8.598994736022218020e-07,9.554438595580242009e-07,1.050988245513826494e-06,1.146532631469628787e-06,1.242077017425431080e-06,1.337621403381233373e-06,1.433165789337035666e-06,1.528710175292837959e-06,1.624254561248640252e-06,1.719798947204442545e-06,1.815343333160244838e-06,1.910887719116047131e-06,2.006432105071849424e-06,2.101976491027651717e-06,2.197520876983454010e-06,2.293065262939256303e-06,2.388609648895058596e-06,2.484154034850860890e-06,2.579698420806663183e-06,2.675242806762465476e-06,2.770787192718267769e-06,2.866331578674070062e-06,2.961875964629872355e-06,3.057420350585674648e-06,3.152964736541476941e-06,3.248509122497279234e-06,3.344053508453081527e-06,3.439597894408883820e-06,3.535142280364686113e-06,3.630686666320488406e-06,3.726231052276290699e-06,3.821775438232093416e-06,3.917319824187896132e-06,4.012864210143698849e-06,4.108408596099501565e-06,4.203952982055304282e-06,4.299497368011106998e-06,4.395041753966909715e-06,4.490586139922712431e-06,4.586130525878515148e-06,4.681674911834317865e-06,4.777219297790120581e-06,4.872763683745923298e-06,4.968308069701726014e-06,5.063852455657528731e-06,5.159396841613331447e-06,5.254941227569134164e-06,5.350485613524936880e-06,5.446029999480739597e-06,5.541574385436542314e-06,5.637118771392345030e-06,5.732663157348147747e-06,5.828207543303950463e-06,5.923751929259753180e-06,6.019296315215555896e-06 +0.000000000000000000e+00,9.239687439146639761e-08,1.847937487829327952e-07,2.771906231743992061e-07,3.695874975658656434e-07,4.619843719573320807e-07,5.543812463487985180e-07,6.467781207402650083e-07,7.391749951317314986e-07,8.315718695231979888e-07,9.239687439146644791e-07,1.016365618306130969e-06,1.108762492697597460e-06,1.201159367089063950e-06,1.293556241480530440e-06,1.385953115871996930e-06,1.478349990263463421e-06,1.570746864654929911e-06,1.663143739046396401e-06,1.755540613437862891e-06,1.847937487829329382e-06,1.940334362220795872e-06,2.032731236612262362e-06,2.125128111003728852e-06,2.217524985395195343e-06,2.309921859786661833e-06,2.402318734178128323e-06,2.494715608569594813e-06,2.587112482961061304e-06,2.679509357352527794e-06,2.771906231743994284e-06,2.864303106135460775e-06,2.956699980526927265e-06,3.049096854918393755e-06,3.141493729309860245e-06,3.233890603701326736e-06,3.326287478092793226e-06,3.418684352484259716e-06,3.511081226875726206e-06,3.603478101267192697e-06,3.695874975658659187e-06,3.788271850050125677e-06,3.880668724441591744e-06,3.973065598833057811e-06,4.065462473224523877e-06,4.157859347615989944e-06,4.250256222007456011e-06,4.342653096398922078e-06,4.435049970790388144e-06,4.527446845181854211e-06,4.619843719573320278e-06,4.712240593964786345e-06,4.804637468356252411e-06,4.897034342747718478e-06,4.989431217139184545e-06,5.081828091530650611e-06,5.174224965922116678e-06,5.266621840313582745e-06,5.359018714705048812e-06,5.451415589096514878e-06,5.543812463487980945e-06,5.636209337879447012e-06,5.728606212270913079e-06,5.821003086662379145e-06 +0.000000000000000000e+00,9.569446908483939282e-08,1.913889381696787856e-07,2.870834072545181784e-07,3.827778763393575713e-07,4.784723454241969641e-07,5.741668145090363569e-07,6.698612835938757497e-07,7.655557526787151425e-07,8.612502217635545353e-07,9.569446908483939282e-07,1.052639159933233321e-06,1.148333629018072714e-06,1.244028098102912107e-06,1.339722567187751499e-06,1.435417036272590892e-06,1.531111505357430285e-06,1.626805974442269678e-06,1.722500443527109071e-06,1.818194912611948463e-06,1.913889381696787856e-06,2.009583850781627461e-06,2.105278319866467065e-06,2.200972788951306670e-06,2.296667258036146275e-06,2.392361727120985879e-06,2.488056196205825484e-06,2.583750665290665088e-06,2.679445134375504693e-06,2.775139603460344297e-06,2.870834072545183902e-06,2.966528541630023507e-06,3.062223010714863111e-06,3.157917479799702716e-06,3.253611948884542320e-06,3.349306417969381925e-06,3.445000887054221529e-06,3.540695356139061134e-06,3.636389825223900739e-06,3.732084294308740343e-06,3.827778763393579948e-06,3.923473232478419552e-06,4.019167701563259157e-06,4.114862170648098761e-06,4.210556639732938366e-06,4.306251108817777971e-06,4.401945577902617575e-06,4.497640046987457180e-06,4.593334516072296784e-06,4.689028985157136389e-06,4.784723454241975994e-06,4.880417923326815598e-06,4.976112392411655203e-06,5.071806861496494807e-06,5.167501330581334412e-06,5.263195799666174016e-06,5.358890268751013621e-06,5.454584737835853226e-06,5.550279206920692830e-06,5.645973676005532435e-06,5.741668145090372039e-06,5.837362614175211644e-06,5.933057083260051248e-06,6.028751552344890853e-06 +0.000000000000000000e+00,9.165082118949714268e-08,1.833016423789942854e-07,2.749524635684914016e-07,3.666032847579885178e-07,4.582541059474856340e-07,5.499049271369828031e-07,6.415557483264799723e-07,7.332065695159771414e-07,8.248573907054743106e-07,9.165082118949714797e-07,1.008159033084468543e-06,1.099809854273965606e-06,1.191460675463462670e-06,1.283111496652959733e-06,1.374762317842456796e-06,1.466413139031953859e-06,1.558063960221450923e-06,1.649714781410947986e-06,1.741365602600445049e-06,1.833016423789942112e-06,1.924667244979439176e-06,2.016318066168936239e-06,2.107968887358433302e-06,2.199619708547930366e-06,2.291270529737427429e-06,2.382921350926924492e-06,2.474572172116421555e-06,2.566222993305918619e-06,2.657873814495415682e-06,2.749524635684912745e-06,2.841175456874409808e-06,2.932826278063906872e-06,3.024477099253403935e-06,3.116127920442900998e-06,3.207778741632398061e-06,3.299429562821895125e-06,3.391080384011392188e-06,3.482731205200889251e-06,3.574382026390386315e-06,3.666032847579883378e-06,3.757683668769380441e-06,3.849334489958877504e-06,3.940985311148374568e-06,4.032636132337871631e-06,4.124286953527368694e-06,4.215937774716865757e-06,4.307588595906362821e-06,4.399239417095859884e-06,4.490890238285356947e-06,4.582541059474854011e-06,4.674191880664351074e-06,4.765842701853848137e-06,4.857493523043345200e-06,4.949144344232842264e-06,5.040795165422339327e-06,5.132445986611836390e-06,5.224096807801333453e-06,5.315747628990830517e-06,5.407398450180327580e-06,5.499049271369824643e-06,5.590700092559321706e-06,5.682350913748818770e-06,5.774001734938315833e-06 +0.000000000000000000e+00,9.302068458483040588e-08,1.860413691696608118e-07,2.790620537544912044e-07,3.720827383393215706e-07,4.651034229241519367e-07,5.581241075089823029e-07,6.511447920938126691e-07,7.441654766786430353e-07,8.371861612634734014e-07,9.302068458483037676e-07,1.023227530433134028e-06,1.116248215017964394e-06,1.209268899602794760e-06,1.302289584187625126e-06,1.395310268772455493e-06,1.488330953357285859e-06,1.581351637942116225e-06,1.674372322526946591e-06,1.767393007111776957e-06,1.860413691696607323e-06,1.953434376281437690e-06,2.046455060866268056e-06,2.139475745451098422e-06,2.232496430035928788e-06,2.325517114620759154e-06,2.418537799205589521e-06,2.511558483790419887e-06,2.604579168375250253e-06,2.697599852960080619e-06,2.790620537544910985e-06,2.883641222129741351e-06,2.976661906714571718e-06,3.069682591299402084e-06,3.162703275884232450e-06,3.255723960469062816e-06,3.348744645053893182e-06,3.441765329638723548e-06,3.534786014223553915e-06,3.627806698808384281e-06,3.720827383393214647e-06,3.813848067978045013e-06,3.906868752562875379e-06,3.999889437147705745e-06,4.092910121732536112e-06,4.185930806317366478e-06,4.278951490902196844e-06,4.371972175487027210e-06,4.464992860071857576e-06,4.558013544656687943e-06,4.651034229241518309e-06,4.744054913826348675e-06,4.837075598411179041e-06,4.930096282996009407e-06,5.023116967580839773e-06,5.116137652165670140e-06,5.209158336750500506e-06,5.302179021335330872e-06,5.395199705920161238e-06,5.488220390504991604e-06,5.581241075089821970e-06,5.674261759674652337e-06,5.767282444259482703e-06,5.860303128844313069e-06 +0.000000000000000000e+00,8.913184823019399975e-08,1.782636964603879995e-07,2.673955446905819993e-07,3.565273929207759990e-07,4.456592411509699988e-07,5.347910893811639985e-07,6.239229376113580512e-07,7.130547858415521039e-07,8.021866340717461566e-07,8.913184823019402093e-07,9.804503305321342620e-07,1.069582178762328209e-06,1.158714026992522156e-06,1.247845875222716102e-06,1.336977723452910049e-06,1.426109571683103996e-06,1.515241419913297943e-06,1.604373268143491890e-06,1.693505116373685837e-06,1.782636964603879783e-06,1.871768812834073730e-06,1.960900661064267677e-06,2.050032509294461624e-06,2.139164357524655571e-06,2.228296205754849517e-06,2.317428053985043464e-06,2.406559902215237411e-06,2.495691750445431358e-06,2.584823598675625305e-06,2.673955446905819251e-06,2.763087295136013198e-06,2.852219143366207145e-06,2.941350991596401092e-06,3.030482839826595039e-06,3.119614688056788986e-06,3.208746536286982932e-06,3.297878384517176879e-06,3.387010232747370826e-06,3.476142080977564773e-06,3.565273929207758720e-06,3.654405777437952666e-06,3.743537625668146613e-06,3.832669473898340560e-06,3.921801322128534507e-06,4.010933170358728454e-06,4.100065018588922401e-06,4.189196866819116347e-06,4.278328715049310294e-06,4.367460563279504241e-06,4.456592411509698188e-06,4.545724259739892135e-06,4.634856107970086081e-06,4.723987956200280028e-06,4.813119804430473975e-06,4.902251652660667922e-06,4.991383500890861869e-06,5.080515349121055815e-06,5.169647197351249762e-06,5.258779045581443709e-06,5.347910893811637656e-06,5.437042742041831603e-06,5.526174590272025550e-06,5.615306438502219496e-06 +0.000000000000000000e+00,9.329559839062196368e-08,1.865911967812439274e-07,2.798867951718658646e-07,3.731823935624878018e-07,4.664779919531097390e-07,5.597735903437317291e-07,6.530691887343537193e-07,7.463647871249757094e-07,8.396603855155976996e-07,9.329559839062196897e-07,1.026251582296841574e-06,1.119547180687463458e-06,1.212842779078085343e-06,1.306138377468707227e-06,1.399433975859329111e-06,1.492729574249950995e-06,1.586025172640572880e-06,1.679320771031194764e-06,1.772616369421816648e-06,1.865911967812438532e-06,1.959207566203060417e-06,2.052503164593682301e-06,2.145798762984304185e-06,2.239094361374926069e-06,2.332389959765547954e-06,2.425685558156169838e-06,2.518981156546791722e-06,2.612276754937413607e-06,2.705572353328035491e-06,2.798867951718657375e-06,2.892163550109279259e-06,2.985459148499901144e-06,3.078754746890523028e-06,3.172050345281144912e-06,3.265345943671766796e-06,3.358641542062388681e-06,3.451937140453010565e-06,3.545232738843632449e-06,3.638528337234254333e-06,3.731823935624876218e-06,3.825119534015498102e-06,3.918415132406119986e-06,4.011710730796741871e-06,4.105006329187363755e-06,4.198301927577985639e-06,4.291597525968607523e-06,4.384893124359229408e-06,4.478188722749851292e-06,4.571484321140473176e-06,4.664779919531095060e-06,4.758075517921716945e-06,4.851371116312338829e-06,4.944666714702960713e-06,5.037962313093582597e-06,5.131257911484204482e-06,5.224553509874826366e-06,5.317849108265448250e-06,5.411144706656070135e-06,5.504440305046692019e-06,5.597735903437313903e-06,5.691031501827935787e-06,5.784327100218557672e-06,5.877622698609179556e-06 +0.000000000000000000e+00,9.263920720609064313e-08,1.852784144121812863e-07,2.779176216182719426e-07,3.705568288243626254e-07,4.631960360304533083e-07,5.558352432365439911e-07,6.484744504426347269e-07,7.411136576487254626e-07,8.337528648548161984e-07,9.263920720609069342e-07,1.019031279266997670e-06,1.111670486473088406e-06,1.204309693679179141e-06,1.296948900885269877e-06,1.389588108091360613e-06,1.482227315297451349e-06,1.574866522503542085e-06,1.667505729709632820e-06,1.760144936915723556e-06,1.852784144121814292e-06,1.945423351327904816e-06,2.038062558533995340e-06,2.130701765740085864e-06,2.223340972946176388e-06,2.315980180152266912e-06,2.408619387358357436e-06,2.501258594564447960e-06,2.593897801770538484e-06,2.686537008976629008e-06,2.779176216182719532e-06,2.871815423388810056e-06,2.964454630594900580e-06,3.057093837800991104e-06,3.149733045007081628e-06,3.242372252213172152e-06,3.335011459419262676e-06,3.427650666625353200e-06,3.520289873831443724e-06,3.612929081037534248e-06,3.705568288243624772e-06,3.798207495449715296e-06,3.890846702655806244e-06,3.983485909861897191e-06,4.076125117067988139e-06,4.168764324274079086e-06,4.261403531480170034e-06,4.354042738686260981e-06,4.446681945892351929e-06,4.539321153098442876e-06,4.631960360304533824e-06,4.724599567510624771e-06,4.817238774716715719e-06,4.909877981922806666e-06,5.002517189128897614e-06,5.095156396334988562e-06,5.187795603541079509e-06,5.280434810747170457e-06,5.373074017953261404e-06,5.465713225159352352e-06,5.558352432365443299e-06,5.650991639571534247e-06,5.743630846777625194e-06,5.836270053983716142e-06 +0.000000000000000000e+00,8.968852452037405299e-08,1.793770490407481060e-07,2.690655735611221590e-07,3.587540980814962119e-07,4.484426226018702649e-07,5.381311471222443179e-07,6.278196716426183180e-07,7.175081961629923180e-07,8.071967206833663181e-07,8.968852452037403181e-07,9.865737697241143182e-07,1.076262294244488424e-06,1.165950818764862530e-06,1.255639343285236636e-06,1.345327867805610742e-06,1.435016392325984848e-06,1.524704916846358954e-06,1.614393441366733060e-06,1.704081965887107166e-06,1.793770490407481271e-06,1.883459014927855377e-06,1.973147539448229483e-06,2.062836063968603378e-06,2.152524588488977272e-06,2.242213113009351166e-06,2.331901637529725060e-06,2.421590162050098954e-06,2.511278686570472848e-06,2.600967211090846743e-06,2.690655735611220637e-06,2.780344260131594531e-06,2.870032784651968425e-06,2.959721309172342319e-06,3.049409833692716213e-06,3.139098358213090108e-06,3.228786882733464002e-06,3.318475407253837896e-06,3.408163931774211790e-06,3.497852456294585684e-06,3.587540980814959578e-06,3.677229505335333473e-06,3.766918029855707367e-06,3.856606554376081261e-06,3.946295078896454732e-06,4.035983603416828202e-06,4.125672127937201673e-06,4.215360652457575143e-06,4.305049176977948614e-06,4.394737701498322085e-06,4.484426226018695555e-06,4.574114750539069026e-06,4.663803275059442497e-06,4.753491799579815967e-06,4.843180324100189438e-06,4.932868848620562909e-06,5.022557373140936379e-06,5.112245897661309850e-06,5.201934422181683321e-06,5.291622946702056791e-06,5.381311471222430262e-06,5.470999995742803733e-06,5.560688520263177203e-06,5.650377044783550674e-06 +0.000000000000000000e+00,9.329559839062328717e-08,1.865911967812465743e-07,2.798867951718698880e-07,3.731823935624932016e-07,4.664779919531165152e-07,5.597735903437397759e-07,6.530691887343630366e-07,7.463647871249862973e-07,8.396603855156095580e-07,9.329559839062328187e-07,1.026251582296855974e-06,1.119547180687479128e-06,1.212842779078102283e-06,1.306138377468725438e-06,1.399433975859348593e-06,1.492729574249971748e-06,1.586025172640594902e-06,1.679320771031218057e-06,1.772616369421841212e-06,1.865911967812464367e-06,1.959207566203087522e-06,2.052503164593710677e-06,2.145798762984333831e-06,2.239094361374956986e-06,2.332389959765580141e-06,2.425685558156203296e-06,2.518981156546826451e-06,2.612276754937449605e-06,2.705572353328072760e-06,2.798867951718695915e-06,2.892163550109319070e-06,2.985459148499942225e-06,3.078754746890565380e-06,3.172050345281188534e-06,3.265345943671811689e-06,3.358641542062434844e-06,3.451937140453057999e-06,3.545232738843681154e-06,3.638528337234304308e-06,3.731823935624927463e-06,3.825119534015550618e-06,3.918415132406173349e-06,4.011710730796796081e-06,4.105006329187418812e-06,4.198301927578041543e-06,4.291597525968664275e-06,4.384893124359287006e-06,4.478188722749909737e-06,4.571484321140532468e-06,4.664779919531155200e-06,4.758075517921777931e-06,4.851371116312400662e-06,4.944666714703023394e-06,5.037962313093646125e-06,5.131257911484268856e-06,5.224553509874891588e-06,5.317849108265514319e-06,5.411144706656137050e-06,5.504440305046759781e-06,5.597735903437382513e-06,5.691031501828005244e-06,5.784327100218627975e-06,5.877622698609250707e-06 +0.000000000000000000e+00,9.263920720609166221e-08,1.852784144121833244e-07,2.779176216182749602e-07,3.705568288243665959e-07,4.631960360304582317e-07,5.558352432365499203e-07,6.484744504426416090e-07,7.411136576487332977e-07,8.337528648548249864e-07,9.263920720609166751e-07,1.019031279267008470e-06,1.111670486473100264e-06,1.204309693679192059e-06,1.296948900885283853e-06,1.389588108091375648e-06,1.482227315297467442e-06,1.574866522503559237e-06,1.667505729709651032e-06,1.760144936915742826e-06,1.852784144121834621e-06,1.945423351327926415e-06,2.038062558534018210e-06,2.130701765740110004e-06,2.223340972946201799e-06,2.315980180152293593e-06,2.408619387358385388e-06,2.501258594564477183e-06,2.593897801770568977e-06,2.686537008976660772e-06,2.779176216182752566e-06,2.871815423388844361e-06,2.964454630594936155e-06,3.057093837801027950e-06,3.149733045007119745e-06,3.242372252213211539e-06,3.335011459419303334e-06,3.427650666625395128e-06,3.520289873831486923e-06,3.612929081037578717e-06,3.705568288243670512e-06,3.798207495449762306e-06,3.890846702655853678e-06,3.983485909861945472e-06,4.076125117068037267e-06,4.168764324274129061e-06,4.261403531480220856e-06,4.354042738686312650e-06,4.446681945892404445e-06,4.539321153098496239e-06,4.631960360304588034e-06,4.724599567510679829e-06,4.817238774716771623e-06,4.909877981922863418e-06,5.002517189128955212e-06,5.095156396335047007e-06,5.187795603541138801e-06,5.280434810747230596e-06,5.373074017953322391e-06,5.465713225159414185e-06,5.558352432365505980e-06,5.650991639571597774e-06,5.743630846777689569e-06,5.836270053983781363e-06 +0.000000000000000000e+00,8.968852452037532354e-08,1.793770490407506471e-07,2.690655735611259706e-07,3.587540980815012941e-07,4.484426226018766177e-07,5.381311471222519412e-07,6.278196716426272118e-07,7.175081961630024824e-07,8.071967206833777530e-07,8.968852452037530236e-07,9.865737697241282942e-07,1.076262294244503671e-06,1.165950818764879047e-06,1.255639343285254424e-06,1.345327867805629800e-06,1.435016392326005177e-06,1.524704916846380553e-06,1.614393441366755930e-06,1.704081965887131306e-06,1.793770490407506682e-06,1.883459014927882059e-06,1.973147539448257435e-06,2.062836063968633024e-06,2.152524588489008612e-06,2.242213113009384200e-06,2.331901637529759788e-06,2.421590162050135377e-06,2.511278686570510965e-06,2.600967211090886553e-06,2.690655735611262141e-06,2.780344260131637730e-06,2.870032784652013318e-06,2.959721309172388906e-06,3.049409833692764494e-06,3.139098358213140082e-06,3.228786882733515671e-06,3.318475407253891259e-06,3.408163931774266847e-06,3.497852456294642435e-06,3.587540980815018024e-06,3.677229505335393612e-06,3.766918029855769200e-06,3.856606554376144788e-06,3.946295078896520800e-06,4.035983603416896812e-06,4.125672127937272824e-06,4.215360652457648835e-06,4.305049176978024847e-06,4.394737701498400859e-06,4.484426226018776871e-06,4.574114750539152882e-06,4.663803275059528894e-06,4.753491799579904906e-06,4.843180324100280918e-06,4.932868848620656929e-06,5.022557373141032941e-06,5.112245897661408953e-06,5.201934422181784965e-06,5.291622946702160976e-06,5.381311471222536988e-06,5.470999995742913000e-06,5.560688520263289012e-06,5.650377044783665023e-06 +0.000000000000000000e+00,9.517170871517261492e-08,1.903434174303452298e-07,2.855151261455178580e-07,3.806868348606905126e-07,4.758585435758631672e-07,5.710302522910358219e-07,6.662019610062084235e-07,7.613736697213810252e-07,8.565453784365536269e-07,9.517170871517262286e-07,1.046888795866898830e-06,1.142060504582071432e-06,1.237232213297244034e-06,1.332403922012416635e-06,1.427575630727589237e-06,1.522747339442761839e-06,1.617919048157934440e-06,1.713090756873107042e-06,1.808262465588279644e-06,1.903434174303452245e-06,1.998605883018624635e-06,2.093777591733797237e-06,2.188949300448969839e-06,2.284121009164142440e-06,2.379292717879315042e-06,2.474464426594487644e-06,2.569636135309660245e-06,2.664807844024832847e-06,2.759979552740005449e-06,2.855151261455178051e-06,2.950322970170350652e-06,3.045494678885523254e-06,3.140666387600695856e-06,3.235838096315868457e-06,3.331009805031041059e-06,3.426181513746213661e-06,3.521353222461386262e-06,3.616524931176558864e-06,3.711696639891731466e-06,3.806868348606904067e-06,3.902040057322076669e-06,3.997211766037249271e-06,4.092383474752421872e-06,4.187555183467594474e-06,4.282726892182767076e-06,4.377898600897939677e-06,4.473070309613112279e-06,4.568242018328284881e-06,4.663413727043457483e-06,4.758585435758630084e-06,4.853757144473802686e-06,4.948928853188975288e-06,5.044100561904147889e-06,5.139272270619320491e-06,5.234443979334493093e-06,5.329615688049665694e-06,5.424787396764838296e-06,5.519959105480010898e-06,5.615130814195183499e-06,5.710302522910356101e-06,5.805474231625528703e-06,5.900645940340701304e-06,5.995817649055873906e-06 +0.000000000000000000e+00,9.417233007322669687e-08,1.883446601464533937e-07,2.825169902196800641e-07,3.766893202929067345e-07,4.708616503661334049e-07,5.650339804393601283e-07,6.592063105125868516e-07,7.533786405858135750e-07,8.475509706590402983e-07,9.417233007322670216e-07,1.035895630805493745e-06,1.130067960878720468e-06,1.224240290951947192e-06,1.318412621025173915e-06,1.412584951098400638e-06,1.506757281171627362e-06,1.600929611244854085e-06,1.695101941318080808e-06,1.789274271391307532e-06,1.883446601464534255e-06,1.977618931537760978e-06,2.071791261610987490e-06,2.165963591684214002e-06,2.260135921757440513e-06,2.354308251830667025e-06,2.448480581903893536e-06,2.542652911977120048e-06,2.636825242050346559e-06,2.730997572123573071e-06,2.825169902196799583e-06,2.919342232270026094e-06,3.013514562343252606e-06,3.107686892416479117e-06,3.201859222489705629e-06,3.296031552562932141e-06,3.390203882636158652e-06,3.484376212709385164e-06,3.578548542782611675e-06,3.672720872855838187e-06,3.766893202929064698e-06,3.861065533002290787e-06,3.955237863075516875e-06,4.049410193148742963e-06,4.143582523221969051e-06,4.237754853295195139e-06,4.331927183368421227e-06,4.426099513441647315e-06,4.520271843514873403e-06,4.614444173588099491e-06,4.708616503661325579e-06,4.802788833734551667e-06,4.896961163807777755e-06,4.991133493881003843e-06,5.085305823954229931e-06,5.179478154027456019e-06,5.273650484100682108e-06,5.367822814173908196e-06,5.461995144247134284e-06,5.556167474320360372e-06,5.650339804393586460e-06,5.744512134466812548e-06,5.838684464540038636e-06,5.932856794613264724e-06 +0.000000000000000000e+00,9.106429993846026750e-08,1.821285998769205350e-07,2.731928998153808157e-07,3.642571997538411229e-07,4.553214996923014301e-07,5.463857996307617373e-07,6.374500995692219916e-07,7.285143995076822459e-07,8.195786994461425001e-07,9.106429993846027544e-07,1.001707299323063009e-06,1.092771599261523263e-06,1.183835899199983517e-06,1.274900199138443771e-06,1.365964499076904026e-06,1.457028799015364280e-06,1.548093098953824534e-06,1.639157398892284788e-06,1.730221698830745043e-06,1.821285998769205297e-06,1.912350298707665551e-06,2.003414598646126017e-06,2.094478898584586483e-06,2.185543198523046949e-06,2.276607498461507415e-06,2.367671798399967881e-06,2.458736098338428347e-06,2.549800398276888813e-06,2.640864698215349279e-06,2.731928998153809745e-06,2.822993298092270211e-06,2.914057598030730678e-06,3.005121897969191144e-06,3.096186197907651610e-06,3.187250497846112076e-06,3.278314797784572542e-06,3.369379097723033008e-06,3.460443397661493474e-06,3.551507697599953940e-06,3.642571997538414406e-06,3.733636297476874872e-06,3.824700597415335338e-06,3.915764897353796227e-06,4.006829197292257117e-06,4.097893497230718006e-06,4.188957797169178896e-06,4.280022097107639785e-06,4.371086397046100675e-06,4.462150696984561564e-06,4.553214996923022454e-06,4.644279296861483344e-06,4.735343596799944233e-06,4.826407896738405123e-06,4.917472196676866012e-06,5.008536496615326902e-06,5.099600796553787791e-06,5.190665096492248681e-06,5.281729396430709570e-06,5.372793696369170460e-06,5.463857996307631349e-06,5.554922296246092239e-06,5.645986596184553128e-06,5.737050896123014018e-06 +0.000000000000000000e+00,9.517170871517535454e-08,1.903434174303507091e-07,2.855151261455260636e-07,3.806868348607014182e-07,4.758585435758767727e-07,5.710302522910521272e-07,6.662019610062274818e-07,7.613736697214028363e-07,8.565453784365781909e-07,9.517170871517535454e-07,1.046888795866928900e-06,1.142060504582104254e-06,1.237232213297279609e-06,1.332403922012454964e-06,1.427575630727630318e-06,1.522747339442805673e-06,1.617919048157981027e-06,1.713090756873156382e-06,1.808262465588331736e-06,1.903434174303507091e-06,1.998605883018682234e-06,2.093777591733857376e-06,2.188949300449032519e-06,2.284121009164207662e-06,2.379292717879382805e-06,2.474464426594557948e-06,2.569636135309733090e-06,2.664807844024908233e-06,2.759979552740083376e-06,2.855151261455258519e-06,2.950322970170433661e-06,3.045494678885608804e-06,3.140666387600783947e-06,3.235838096315959090e-06,3.331009805031134233e-06,3.426181513746309375e-06,3.521353222461484518e-06,3.616524931176659661e-06,3.711696639891834804e-06,3.806868348607009946e-06,3.902040057322185089e-06,3.997211766037360232e-06,4.092383474752535375e-06,4.187555183467710518e-06,4.282726892182885660e-06,4.377898600898060803e-06,4.473070309613235946e-06,4.568242018328411089e-06,4.663413727043586232e-06,4.758585435758761374e-06,4.853757144473936517e-06,4.948928853189111660e-06,5.044100561904286803e-06,5.139272270619461945e-06,5.234443979334637088e-06,5.329615688049812231e-06,5.424787396764987374e-06,5.519959105480162517e-06,5.615130814195337659e-06,5.710302522910512802e-06,5.805474231625687945e-06,5.900645940340863088e-06,5.995817649056038230e-06 +0.000000000000000000e+00,9.417233007322821888e-08,1.883446601464564378e-07,2.825169902196846699e-07,3.766893202929129285e-07,4.708616503661411871e-07,5.650339804393694456e-07,6.592063105125976513e-07,7.533786405858258569e-07,8.475509706590540626e-07,9.417233007322822682e-07,1.035895630805510474e-06,1.130067960878738680e-06,1.224240290951966885e-06,1.318412621025195091e-06,1.412584951098423296e-06,1.506757281171651502e-06,1.600929611244879708e-06,1.695101941318107913e-06,1.789274271391336119e-06,1.883446601464564325e-06,1.977618931537792742e-06,2.071791261611021371e-06,2.165963591684250000e-06,2.260135921757478630e-06,2.354308251830707259e-06,2.448480581903935888e-06,2.542652911977164517e-06,2.636825242050393146e-06,2.730997572123621775e-06,2.825169902196850405e-06,2.919342232270079034e-06,3.013514562343307663e-06,3.107686892416536292e-06,3.201859222489764921e-06,3.296031552562993550e-06,3.390203882636222180e-06,3.484376212709450809e-06,3.578548542782679438e-06,3.672720872855908067e-06,3.766893202929136696e-06,3.861065533002365325e-06,3.955237863075593955e-06,4.049410193148822584e-06,4.143582523222051213e-06,4.237754853295279842e-06,4.331927183368508471e-06,4.426099513441737100e-06,4.520271843514965730e-06,4.614444173588194359e-06,4.708616503661422988e-06,4.802788833734651617e-06,4.896961163807880246e-06,4.991133493881108875e-06,5.085305823954337505e-06,5.179478154027566134e-06,5.273650484100794763e-06,5.367822814174023392e-06,5.461995144247252021e-06,5.556167474320480650e-06,5.650339804393709280e-06,5.744512134466937909e-06,5.838684464540166538e-06,5.932856794613395167e-06 +0.000000000000000000e+00,9.106429993846178951e-08,1.821285998769235790e-07,2.731928998153853685e-07,3.642571997538471580e-07,4.553214996923089476e-07,5.463857996307707371e-07,6.374500995692325795e-07,7.285143995076944220e-07,8.195786994461562644e-07,9.106429993846181069e-07,1.001707299323079949e-06,1.092771599261541686e-06,1.183835899200003422e-06,1.274900199138465159e-06,1.365964499076926896e-06,1.457028799015388632e-06,1.548093098953850369e-06,1.639157398892312105e-06,1.730221698830773842e-06,1.821285998769235578e-06,1.912350298707697315e-06,2.003414598646159052e-06,2.094478898584620788e-06,2.185543198523082525e-06,2.276607498461544261e-06,2.367671798400005998e-06,2.458736098338467734e-06,2.549800398276929471e-06,2.640864698215391208e-06,2.731928998153852944e-06,2.822993298092314681e-06,2.914057598030776417e-06,3.005121897969238154e-06,3.096186197907699890e-06,3.187250497846161627e-06,3.278314797784623364e-06,3.369379097723085100e-06,3.460443397661546837e-06,3.551507697600008573e-06,3.642571997538470310e-06,3.733636297476932046e-06,3.824700597415393783e-06,3.915764897353855520e-06,4.006829197292317256e-06,4.097893497230778993e-06,4.188957797169240729e-06,4.280022097107702466e-06,4.371086397046164202e-06,4.462150696984625939e-06,4.553214996923087676e-06,4.644279296861549412e-06,4.735343596800011149e-06,4.826407896738472885e-06,4.917472196676934622e-06,5.008536496615396358e-06,5.099600796553858095e-06,5.190665096492319832e-06,5.281729396430781568e-06,5.372793696369243305e-06,5.463857996307705041e-06,5.554922296246166778e-06,5.645986596184628514e-06,5.737050896123090251e-06 +0.000000000000000000e+00,9.731999393162606319e-08,1.946399878632521264e-07,2.919599817948781763e-07,3.892799757265041998e-07,4.865999696581302233e-07,5.839199635897562468e-07,6.812399575213822703e-07,7.785599514530082938e-07,8.758799453846343173e-07,9.731999393162602349e-07,1.070519933247886258e-06,1.167839927179512282e-06,1.265159921111138305e-06,1.362479915042764329e-06,1.459799908974390352e-06,1.557119902906016376e-06,1.654439896837642399e-06,1.751759890769268423e-06,1.849079884700894446e-06,1.946399878632520470e-06,2.043719872564146493e-06,2.141039866495772517e-06,2.238359860427398540e-06,2.335679854359024564e-06,2.432999848290650587e-06,2.530319842222276611e-06,2.627639836153902634e-06,2.724959830085528658e-06,2.822279824017154681e-06,2.919599817948780705e-06,3.016919811880406728e-06,3.114239805812032752e-06,3.211559799743658775e-06,3.308879793675284799e-06,3.406199787606910822e-06,3.503519781538536846e-06,3.600839775470162869e-06,3.698159769401788893e-06,3.795479763333414916e-06,3.892799757265040940e-06,3.990119751196666963e-06,4.087439745128292987e-06,4.184759739059919010e-06,4.282079732991545033e-06,4.379399726923171057e-06,4.476719720854797080e-06,4.574039714786423104e-06,4.671359708718049127e-06,4.768679702649675151e-06,4.865999696581301174e-06,4.963319690512927198e-06,5.060639684444553221e-06,5.157959678376179245e-06,5.255279672307805268e-06,5.352599666239431292e-06,5.449919660171057315e-06,5.547239654102683339e-06,5.644559648034309362e-06,5.741879641965935386e-06,5.839199635897561409e-06,5.936519629829187433e-06,6.033839623760813456e-06,6.131159617692439480e-06 +0.000000000000000000e+00,9.623348728160259363e-08,1.924669745632051873e-07,2.887004618448077544e-07,3.849339491264103216e-07,4.811674364080128887e-07,5.774009236896155088e-07,6.736344109712181289e-07,7.698678982528207490e-07,8.661013855344233691e-07,9.623348728160259892e-07,1.058568360097628503e-06,1.154801847379231018e-06,1.251035334660833532e-06,1.347268821942436046e-06,1.443502309224038560e-06,1.539735796505641075e-06,1.635969283787243589e-06,1.732202771068846103e-06,1.828436258350448617e-06,1.924669745632051131e-06,2.020903232913653646e-06,2.117136720195256160e-06,2.213370207476858674e-06,2.309603694758461188e-06,2.405837182040063702e-06,2.502070669321666217e-06,2.598304156603268731e-06,2.694537643884871245e-06,2.790771131166473759e-06,2.887004618448076274e-06,2.983238105729678788e-06,3.079471593011281302e-06,3.175705080292883816e-06,3.271938567574486330e-06,3.368172054856088845e-06,3.464405542137691359e-06,3.560639029419293873e-06,3.656872516700896387e-06,3.753106003982498902e-06,3.849339491264101416e-06,3.945572978545703506e-06,4.041806465827305597e-06,4.138039953108907688e-06,4.234273440390509779e-06,4.330506927672111869e-06,4.426740414953713960e-06,4.522973902235316051e-06,4.619207389516918141e-06,4.715440876798520232e-06,4.811674364080122323e-06,4.907907851361724413e-06,5.004141338643326504e-06,5.100374825924928595e-06,5.196608313206530686e-06,5.292841800488132776e-06,5.389075287769734867e-06,5.485308775051336958e-06,5.581542262332939048e-06,5.677775749614541139e-06,5.774009236896143230e-06,5.870242724177745320e-06,5.966476211459347411e-06,6.062709698740949502e-06 +0.000000000000000000e+00,9.266956248357994519e-08,1.853391249671598904e-07,2.780086874507398356e-07,3.706782499343197808e-07,4.633478124178997259e-07,5.560173749014796711e-07,6.486869373850596693e-07,7.413564998686396674e-07,8.340260623522196655e-07,9.266956248357996637e-07,1.019365187319379662e-06,1.112034749802959554e-06,1.204704312286539446e-06,1.297373874770119339e-06,1.390043437253699231e-06,1.482712999737279123e-06,1.575382562220859015e-06,1.668052124704438908e-06,1.760721687188018800e-06,1.853391249671598692e-06,1.946060812155178584e-06,2.038730374638758477e-06,2.131399937122338369e-06,2.224069499605918261e-06,2.316739062089498153e-06,2.409408624573078046e-06,2.502078187056657938e-06,2.594747749540237830e-06,2.687417312023817722e-06,2.780086874507397615e-06,2.872756436990977507e-06,2.965425999474557399e-06,3.058095561958137291e-06,3.150765124441717184e-06,3.243434686925297076e-06,3.336104249408876968e-06,3.428773811892456860e-06,3.521443374376036753e-06,3.614112936859616645e-06,3.706782499343196537e-06,3.799452061826776429e-06,3.892121624310356322e-06,3.984791186793936214e-06,4.077460749277516106e-06,4.170130311761095998e-06,4.262799874244675891e-06,4.355469436728255783e-06,4.448138999211835675e-06,4.540808561695415567e-06,4.633478124178995460e-06,4.726147686662575352e-06,4.818817249146155244e-06,4.911486811629735136e-06,5.004156374113315029e-06,5.096825936596894921e-06,5.189495499080474813e-06,5.282165061564054705e-06,5.374834624047634598e-06,5.467504186531214490e-06,5.560173749014794382e-06,5.652843311498374274e-06,5.745512873981954167e-06,5.838182436465534059e-06 +0.000000000000000000e+00,9.731999393162916016e-08,1.946399878632583203e-07,2.919599817948874937e-07,3.892799757265166936e-07,4.865999696581458934e-07,5.839199635897750933e-07,6.812399575214042932e-07,7.785599514530334930e-07,8.758799453846626929e-07,9.731999393162919986e-07,1.070519933247921410e-06,1.167839927179550822e-06,1.265159921111180233e-06,1.362479915042809645e-06,1.459799908974439057e-06,1.557119902906068468e-06,1.654439896837697880e-06,1.751759890769327292e-06,1.849079884700956703e-06,1.946399878632586115e-06,2.043719872564215526e-06,2.141039866495844938e-06,2.238359860427474350e-06,2.335679854359103761e-06,2.432999848290733173e-06,2.530319842222362585e-06,2.627639836153991996e-06,2.724959830085621408e-06,2.822279824017250819e-06,2.919599817948880231e-06,3.016919811880509643e-06,3.114239805812139054e-06,3.211559799743768466e-06,3.308879793675397878e-06,3.406199787607027289e-06,3.503519781538656701e-06,3.600839775470286112e-06,3.698159769401915524e-06,3.795479763333544936e-06,3.892799757265174771e-06,3.990119751196805029e-06,4.087439745128435288e-06,4.184759739060065547e-06,4.282079732991695805e-06,4.379399726923326064e-06,4.476719720854956323e-06,4.574039714786586581e-06,4.671359708718216840e-06,4.768679702649847099e-06,4.865999696581477357e-06,4.963319690513107616e-06,5.060639684444737875e-06,5.157959678376368133e-06,5.255279672307998392e-06,5.352599666239628651e-06,5.449919660171258909e-06,5.547239654102889168e-06,5.644559648034519426e-06,5.741879641966149685e-06,5.839199635897779944e-06,5.936519629829410202e-06,6.033839623761040461e-06,6.131159617692670720e-06 +0.000000000000000000e+00,9.623348728160501561e-08,1.924669745632100312e-07,2.887004618448150601e-07,3.849339491264201154e-07,4.811674364080251707e-07,5.774009236896302260e-07,6.736344109712352813e-07,7.698678982528403367e-07,8.661013855344453920e-07,9.623348728160505532e-07,1.058568360097655608e-06,1.154801847379260664e-06,1.251035334660865719e-06,1.347268821942470774e-06,1.443502309224075830e-06,1.539735796505680885e-06,1.635969283787285940e-06,1.732202771068890996e-06,1.828436258350496051e-06,1.924669745632101106e-06,2.020903232913706162e-06,2.117136720195311217e-06,2.213370207476916272e-06,2.309603694758521328e-06,2.405837182040126383e-06,2.502070669321731438e-06,2.598304156603336494e-06,2.694537643884941549e-06,2.790771131166546604e-06,2.887004618448151659e-06,2.983238105729756715e-06,3.079471593011361770e-06,3.175705080292966825e-06,3.271938567574571881e-06,3.368172054856176936e-06,3.464405542137781991e-06,3.560639029419387047e-06,3.656872516700992102e-06,3.753106003982597157e-06,3.849339491264202213e-06,3.945572978545806844e-06,4.041806465827411476e-06,4.138039953109016108e-06,4.234273440390620740e-06,4.330506927672225372e-06,4.426740414953830003e-06,4.522973902235434635e-06,4.619207389517039267e-06,4.715440876798643899e-06,4.811674364080248531e-06,4.907907851361853162e-06,5.004141338643457794e-06,5.100374825925062426e-06,5.196608313206667058e-06,5.292841800488271690e-06,5.389075287769876321e-06,5.485308775051480953e-06,5.581542262333085585e-06,5.677775749614690217e-06,5.774009236896294849e-06,5.870242724177899480e-06,5.966476211459504112e-06,6.062709698741108744e-06 +0.000000000000000000e+00,9.266956248358202307e-08,1.853391249671640461e-07,2.780086874507460824e-07,3.706782499343281452e-07,4.633478124179102080e-07,5.560173749014922708e-07,6.486869373850742806e-07,7.413564998686562904e-07,8.340260623522383003e-07,9.266956248358203101e-07,1.019365187319402320e-06,1.112034749802984330e-06,1.204704312286566340e-06,1.297373874770148349e-06,1.390043437253730359e-06,1.482712999737312369e-06,1.575382562220894379e-06,1.668052124704476389e-06,1.760721687188058399e-06,1.853391249671640408e-06,1.946060812155222630e-06,2.038730374638805063e-06,2.131399937122387497e-06,2.224069499605969930e-06,2.316739062089552363e-06,2.409408624573134797e-06,2.502078187056717230e-06,2.594747749540299663e-06,2.687417312023882097e-06,2.780086874507464530e-06,2.872756436991046963e-06,2.965425999474629397e-06,3.058095561958211830e-06,3.150765124441794264e-06,3.243434686925376697e-06,3.336104249408959130e-06,3.428773811892541564e-06,3.521443374376123997e-06,3.614112936859706430e-06,3.706782499343288864e-06,3.799452061826871297e-06,3.892121624310453730e-06,3.984791186794036164e-06,4.077460749277618597e-06,4.170130311761201030e-06,4.262799874244783464e-06,4.355469436728365897e-06,4.448138999211948330e-06,4.540808561695530764e-06,4.633478124179113197e-06,4.726147686662695630e-06,4.818817249146278064e-06,4.911486811629860497e-06,5.004156374113442931e-06,5.096825936597025364e-06,5.189495499080607797e-06,5.282165061564190231e-06,5.374834624047772664e-06,5.467504186531355097e-06,5.560173749014937531e-06,5.652843311498519964e-06,5.745512873982102397e-06,5.838182436465684831e-06 +0.000000000000000000e+00,9.946355272028472301e-08,1.989271054405694460e-07,2.983906581608541690e-07,3.978542108811388920e-07,4.973177636014236151e-07,5.967813163217083381e-07,6.962448690419930611e-07,7.957084217622777841e-07,8.951719744825625071e-07,9.946355272028472301e-07,1.094099079923132059e-06,1.193562632643416888e-06,1.293026185363701717e-06,1.392489738083986546e-06,1.491953290804271375e-06,1.591416843524556203e-06,1.690880396244841032e-06,1.790343948965125861e-06,1.889807501685410690e-06,1.989271054405695731e-06,2.088734607125980771e-06,2.188198159846265812e-06,2.287661712566550853e-06,2.387125265286835893e-06,2.486588818007120934e-06,2.586052370727405975e-06,2.685515923447691015e-06,2.784979476167976056e-06,2.884443028888261097e-06,2.983906581608546137e-06,3.083370134328831178e-06,3.182833687049116219e-06,3.282297239769401259e-06,3.381760792489686300e-06,3.481224345209971340e-06,3.580687897930256381e-06,3.680151450650541422e-06,3.779615003370826462e-06,3.879078556091111503e-06,3.978542108811396544e-06,4.078005661531681584e-06,4.177469214251966625e-06,4.276932766972251666e-06,4.376396319692536706e-06,4.475859872412821747e-06,4.575323425133106788e-06,4.674786977853391828e-06,4.774250530573676869e-06,4.873714083293961910e-06,4.973177636014246950e-06,5.072641188734531991e-06,5.172104741454817031e-06,5.271568294175102072e-06,5.371031846895387113e-06,5.470495399615672153e-06,5.569958952335957194e-06,5.669422505056242235e-06,5.768886057776527275e-06,5.868349610496812316e-06,5.967813163217097357e-06,6.067276715937382397e-06,6.166740268657667438e-06,6.266203821377952479e-06 +0.000000000000000000e+00,9.840436210798903959e-08,1.968087242159780792e-07,2.952130863239671055e-07,3.936174484319561054e-07,4.920218105399451053e-07,5.904261726479341052e-07,6.888305347559231051e-07,7.872348968639121050e-07,8.856392589719011049e-07,9.840436210798899989e-07,1.082447983187878787e-06,1.180852345295867575e-06,1.279256707403856363e-06,1.377661069511845151e-06,1.476065431619833939e-06,1.574469793727822728e-06,1.672874155835811516e-06,1.771278517943800304e-06,1.869682880051789092e-06,1.968087242159777880e-06,2.066491604267766668e-06,2.164895966375755456e-06,2.263300328483744245e-06,2.361704690591733033e-06,2.460109052699721821e-06,2.558513414807710609e-06,2.656917776915699397e-06,2.755322139023688185e-06,2.853726501131676973e-06,2.952130863239665761e-06,3.050535225347654550e-06,3.148939587455643338e-06,3.247343949563632126e-06,3.345748311671620914e-06,3.444152673779609702e-06,3.542557035887598490e-06,3.640961397995587278e-06,3.739365760103576066e-06,3.837770122211564855e-06,3.936174484319553219e-06,4.034578846427541584e-06,4.132983208535529948e-06,4.231387570643518313e-06,4.329791932751506678e-06,4.428196294859495042e-06,4.526600656967483407e-06,4.625005019075471771e-06,4.723409381183460136e-06,4.821813743291448501e-06,4.920218105399436865e-06,5.018622467507425230e-06,5.117026829615413595e-06,5.215431191723401959e-06,5.313835553831390324e-06,5.412239915939378688e-06,5.510644278047367053e-06,5.609048640155355418e-06,5.707453002263343782e-06,5.805857364371332147e-06,5.904261726479320511e-06,6.002666088587308876e-06,6.101070450695297241e-06,6.199474812803285605e-06 +0.000000000000000000e+00,9.427529123150220316e-08,1.885505824630044063e-07,2.828258736945066227e-07,3.771011649260088656e-07,4.713764561575111084e-07,5.656517473890133513e-07,6.599270386205156471e-07,7.542023298520179429e-07,8.484776210835202387e-07,9.427529123150225345e-07,1.037028203546524830e-06,1.131303494778027126e-06,1.225578786009529422e-06,1.319854077241031718e-06,1.414129368472534014e-06,1.508404659704036309e-06,1.602679950935538605e-06,1.696955242167040901e-06,1.791230533398543197e-06,1.885505824630045493e-06,1.979781115861548000e-06,2.074056407093050508e-06,2.168331698324553015e-06,2.262606989556055523e-06,2.356882280787558030e-06,2.451157572019060538e-06,2.545432863250563045e-06,2.639708154482065553e-06,2.733983445713568061e-06,2.828258736945070568e-06,2.922534028176573076e-06,3.016809319408075583e-06,3.111084610639578091e-06,3.205359901871080598e-06,3.299635193102583106e-06,3.393910484334085614e-06,3.488185775565588121e-06,3.582461066797090629e-06,3.676736358028593136e-06,3.771011649260095644e-06,3.865286940491598151e-06,3.959562231723101082e-06,4.053837522954604014e-06,4.148112814186106945e-06,4.242388105417609876e-06,4.336663396649112807e-06,4.430938687880615738e-06,4.525213979112118669e-06,4.619489270343621600e-06,4.713764561575124531e-06,4.808039852806627462e-06,4.902315144038130393e-06,4.996590435269633324e-06,5.090865726501136255e-06,5.185141017732639186e-06,5.279416308964142118e-06,5.373691600195645049e-06,5.467966891427147980e-06,5.562242182658650911e-06,5.656517473890153842e-06,5.750792765121656773e-06,5.845068056353159704e-06,5.939343347584662635e-06 +0.000000000000000000e+00,9.946355272028964639e-08,1.989271054405792928e-07,2.983906581608689392e-07,3.978542108811585856e-07,4.973177636014482849e-07,5.967813163217379842e-07,6.962448690420276835e-07,7.957084217623173829e-07,8.951719744826070822e-07,9.946355272028967815e-07,1.094099079923186481e-06,1.193562632643476180e-06,1.293026185363765880e-06,1.392489738084055579e-06,1.491953290804345278e-06,1.591416843524634978e-06,1.690880396244924677e-06,1.790343948965214376e-06,1.889807501685504075e-06,1.989271054405793987e-06,2.088734607126084109e-06,2.188198159846374232e-06,2.287661712566664355e-06,2.387125265286954478e-06,2.486588818007244601e-06,2.586052370727534724e-06,2.685515923447824846e-06,2.784979476168114969e-06,2.884443028888405092e-06,2.983906581608695215e-06,3.083370134328985338e-06,3.182833687049275461e-06,3.282297239769565584e-06,3.381760792489855706e-06,3.481224345210145829e-06,3.580687897930435952e-06,3.680151450650726075e-06,3.779615003371016198e-06,3.879078556091306321e-06,3.978542108811596443e-06,4.078005661531886566e-06,4.177469214252176689e-06,4.276932766972466812e-06,4.376396319692756935e-06,4.475859872413047058e-06,4.575323425133337181e-06,4.674786977853627303e-06,4.774250530573917426e-06,4.873714083294207549e-06,4.973177636014497672e-06,5.072641188734787795e-06,5.172104741455077918e-06,5.271568294175368040e-06,5.371031846895658163e-06,5.470495399615948286e-06,5.569958952336238409e-06,5.669422505056528532e-06,5.768886057776818655e-06,5.868349610497108778e-06,5.967813163217398900e-06,6.067276715937689023e-06,6.166740268657979146e-06,6.266203821378269269e-06 +0.000000000000000000e+00,9.840436210799249390e-08,1.968087242159849878e-07,2.952130863239774817e-07,3.936174484319699756e-07,4.920218105399624695e-07,5.904261726479549634e-07,6.888305347559474573e-07,7.872348968639399512e-07,8.856392589719324451e-07,9.840436210799249390e-07,1.082447983187917327e-06,1.180852345295909715e-06,1.279256707403902103e-06,1.377661069511894491e-06,1.476065431619886879e-06,1.574469793727879267e-06,1.672874155835871655e-06,1.771278517943864043e-06,1.869682880051856431e-06,1.968087242159848607e-06,2.066491604267840784e-06,2.164895966375832960e-06,2.263300328483825136e-06,2.361704690591817312e-06,2.460109052699809489e-06,2.558513414807801665e-06,2.656917776915793841e-06,2.755322139023786017e-06,2.853726501131778194e-06,2.952130863239770370e-06,3.050535225347762546e-06,3.148939587455754723e-06,3.247343949563746899e-06,3.345748311671739075e-06,3.444152673779731251e-06,3.542557035887723428e-06,3.640961397995715604e-06,3.739365760103707780e-06,3.837770122211699533e-06,3.936174484319691286e-06,4.034578846427683038e-06,4.132983208535674791e-06,4.231387570643666544e-06,4.329791932751658297e-06,4.428196294859650049e-06,4.526600656967641802e-06,4.625005019075633555e-06,4.723409381183625307e-06,4.821813743291617060e-06,4.920218105399608813e-06,5.018622467507600566e-06,5.117026829615592318e-06,5.215431191723584071e-06,5.313835553831575824e-06,5.412239915939567577e-06,5.510644278047559329e-06,5.609048640155551082e-06,5.707453002263542835e-06,5.805857364371534588e-06,5.904261726479526340e-06,6.002666088587518093e-06,6.101070450695509846e-06,6.199474812803501599e-06 +0.000000000000000000e+00,9.427529123150533983e-08,1.885505824630106797e-07,2.828258736945159930e-07,3.771011649260213064e-07,4.713764561575266197e-07,5.656517473890319860e-07,6.599270386205373523e-07,7.542023298520427186e-07,8.484776210835480849e-07,9.427529123150534512e-07,1.037028203546558923e-06,1.131303494778064396e-06,1.225578786009569868e-06,1.319854077241075340e-06,1.414129368472580812e-06,1.508404659704086284e-06,1.602679950935591756e-06,1.696955242167097229e-06,1.791230533398602701e-06,1.885505824630108173e-06,1.979781115861613645e-06,2.074056407093119117e-06,2.168331698324624590e-06,2.262606989556130062e-06,2.356882280787635534e-06,2.451157572019141006e-06,2.545432863250646478e-06,2.639708154482151950e-06,2.733983445713657423e-06,2.828258736945162895e-06,2.922534028176668367e-06,3.016809319408173839e-06,3.111084610639679311e-06,3.205359901871184783e-06,3.299635193102690256e-06,3.393910484334195728e-06,3.488185775565701200e-06,3.582461066797206672e-06,3.676736358028712144e-06,3.771011649260217617e-06,3.865286940491723512e-06,3.959562231723229831e-06,4.053837522954736151e-06,4.148112814186242470e-06,4.242388105417748789e-06,4.336663396649255108e-06,4.430938687880761428e-06,4.525213979112267747e-06,4.619489270343774066e-06,4.713764561575280385e-06,4.808039852806786704e-06,4.902315144038293024e-06,4.996590435269799343e-06,5.090865726501305662e-06,5.185141017732811981e-06,5.279416308964318300e-06,5.373691600195824620e-06,5.467966891427330939e-06,5.562242182658837258e-06,5.656517473890343577e-06,5.750792765121849896e-06,5.845068056353356216e-06,5.939343347584862535e-06 +0.000000000000000000e+00,1.014384426989864112e-07,2.028768853979728225e-07,3.043153280969592337e-07,4.057537707959456450e-07,5.071922134949320562e-07,6.086306561939184675e-07,7.100690988929048787e-07,8.115075415918912899e-07,9.129459842908777012e-07,1.014384426989864112e-06,1.115822869688850630e-06,1.217261312387837147e-06,1.318699755086823664e-06,1.420138197785810181e-06,1.521576640484796698e-06,1.623015083183783215e-06,1.724453525882769732e-06,1.825891968581756249e-06,1.927330411280742767e-06,2.028768853979729495e-06,2.130207296678716224e-06,2.231645739377702953e-06,2.333084182076689682e-06,2.434522624775676411e-06,2.535961067474663140e-06,2.637399510173649869e-06,2.738837952872636598e-06,2.840276395571623326e-06,2.941714838270610055e-06,3.043153280969596784e-06,3.144591723668583513e-06,3.246030166367570242e-06,3.347468609066556971e-06,3.448907051765543700e-06,3.550345494464530429e-06,3.651783937163517157e-06,3.753222379862503886e-06,3.854660822561490615e-06,3.956099265260477344e-06,4.057537707959464073e-06,4.158976150658450802e-06,4.260414593357437531e-06,4.361853036056424260e-06,4.463291478755410988e-06,4.564729921454397717e-06,4.666168364153384446e-06,4.767606806852371175e-06,4.869045249551357904e-06,4.970483692250344633e-06,5.071922134949331362e-06,5.173360577648318091e-06,5.274799020347304820e-06,5.376237463046291548e-06,5.477675905745278277e-06,5.579114348444265006e-06,5.680552791143251735e-06,5.781991233842238464e-06,5.883429676541225193e-06,5.984868119240211922e-06,6.086306561939198651e-06,6.187745004638185379e-06,6.289183447337172108e-06,6.390621890036158837e-06 +0.000000000000000000e+00,1.004818615967171732e-07,2.009637231934343464e-07,3.014455847901515196e-07,4.019274463868686928e-07,5.024093079835859190e-07,6.028911695803031451e-07,7.033730311770203713e-07,8.038548927737375974e-07,9.043367543704548236e-07,1.004818615967172050e-06,1.105300477563889276e-06,1.205782339160606502e-06,1.306264200757323728e-06,1.406746062354040954e-06,1.507227923950758180e-06,1.607709785547475407e-06,1.708191647144192633e-06,1.808673508740909859e-06,1.909155370337627297e-06,2.009637231934344523e-06,2.110119093531061749e-06,2.210600955127778975e-06,2.311082816724496201e-06,2.411564678321213428e-06,2.512046539917930654e-06,2.612528401514647880e-06,2.713010263111365106e-06,2.813492124708082332e-06,2.913973986304799558e-06,3.014455847901516784e-06,3.114937709498234011e-06,3.215419571094951237e-06,3.315901432691668463e-06,3.416383294288385689e-06,3.516865155885102915e-06,3.617347017481820141e-06,3.717828879078537368e-06,3.818310740675254594e-06,3.918792602271971820e-06,4.019274463868689046e-06,4.119756325465406272e-06,4.220238187062123498e-06,4.320720048658840724e-06,4.421201910255557951e-06,4.521683771852275177e-06,4.622165633448992403e-06,4.722647495045709629e-06,4.823129356642426855e-06,4.923611218239144081e-06,5.024093079835861307e-06,5.124574941432578534e-06,5.225056803029295760e-06,5.325538664626012986e-06,5.426020526222730212e-06,5.526502387819447438e-06,5.626984249416164664e-06,5.727466111012881891e-06,5.827947972609599117e-06,5.928429834206316343e-06,6.028911695803033569e-06,6.129393557399750795e-06,6.229875418996468021e-06,6.330357280593185247e-06 +0.000000000000000000e+00,9.572713845036519970e-08,1.914542769007303994e-07,2.871814153510955859e-07,3.829085538014607459e-07,4.786356922518259059e-07,5.743628307021910659e-07,6.700899691525562259e-07,7.658171076029213858e-07,8.615442460532865458e-07,9.572713845036518117e-07,1.052998522954017078e-06,1.148725661404382343e-06,1.244452799854747609e-06,1.340179938305112875e-06,1.435907076755478141e-06,1.531634215205843407e-06,1.627361353656208673e-06,1.723088492106573939e-06,1.818815630556939205e-06,1.914542769007304470e-06,2.010269907457669948e-06,2.105997045908035426e-06,2.201724184358400903e-06,2.297451322808766381e-06,2.393178461259131859e-06,2.488905599709497336e-06,2.584632738159862814e-06,2.680359876610228292e-06,2.776087015060593769e-06,2.871814153510959247e-06,2.967541291961324724e-06,3.063268430411690202e-06,3.158995568862055680e-06,3.254722707312421157e-06,3.350449845762786635e-06,3.446176984213152113e-06,3.541904122663517590e-06,3.637631261113883068e-06,3.733358399564248546e-06,3.829085538014614023e-06,3.924812676464979501e-06,4.020539814915344978e-06,4.116266953365710456e-06,4.211994091816075934e-06,4.307721230266441411e-06,4.403448368716806889e-06,4.499175507167172367e-06,4.594902645617537844e-06,4.690629784067903322e-06,4.786356922518268799e-06,4.882084060968634277e-06,4.977811199418999755e-06,5.073538337869365232e-06,5.169265476319730710e-06,5.264992614770096188e-06,5.360719753220461665e-06,5.456446891670827143e-06,5.552174030121192621e-06,5.647901168571558098e-06,5.743628307021923576e-06,5.839355445472289053e-06,5.935082583922654531e-06,6.030809722373020009e-06 +0.000000000000000000e+00,1.014384426989913346e-07,2.028768853979826692e-07,3.043153280969740039e-07,4.057537707959653385e-07,5.071922134949567260e-07,6.086306561939481136e-07,7.100690988929395012e-07,8.115075415919308887e-07,9.129459842909222763e-07,1.014384426989913664e-06,1.115822869688905051e-06,1.217261312387896439e-06,1.318699755086887827e-06,1.420138197785879214e-06,1.521576640484870602e-06,1.623015083183861989e-06,1.724453525882853377e-06,1.825891968581844764e-06,1.927330411280835940e-06,2.028768853979826904e-06,2.130207296678817868e-06,2.231645739377808832e-06,2.333084182076799796e-06,2.434522624775790760e-06,2.535961067474781724e-06,2.637399510173772688e-06,2.738837952872763652e-06,2.840276395571754617e-06,2.941714838270745581e-06,3.043153280969736545e-06,3.144591723668727509e-06,3.246030166367718473e-06,3.347468609066709437e-06,3.448907051765700401e-06,3.550345494464691365e-06,3.651783937163682329e-06,3.753222379862673293e-06,3.854660822561664257e-06,3.956099265260655221e-06,4.057537707959646185e-06,4.158976150658637149e-06,4.260414593357628113e-06,4.361853036056619077e-06,4.463291478755610041e-06,4.564729921454601005e-06,4.666168364153591969e-06,4.767606806852582933e-06,4.869045249551573897e-06,4.970483692250564861e-06,5.071922134949555825e-06,5.173360577648546790e-06,5.274799020347537754e-06,5.376237463046528718e-06,5.477675905745519682e-06,5.579114348444510646e-06,5.680552791143501610e-06,5.781991233842492574e-06,5.883429676541483538e-06,5.984868119240474502e-06,6.086306561939465466e-06,6.187745004638456430e-06,6.289183447337447394e-06,6.390621890036438358e-06 +0.000000000000000000e+00,1.004818615967223613e-07,2.009637231934447226e-07,3.014455847901670839e-07,4.019274463868894451e-07,5.024093079836117535e-07,6.028911695803340618e-07,7.033730311770563702e-07,8.038548927737786785e-07,9.043367543705009869e-07,1.004818615967223295e-06,1.105300477563945604e-06,1.205782339160667912e-06,1.306264200757390220e-06,1.406746062354112529e-06,1.507227923950834837e-06,1.607709785547557145e-06,1.708191647144279454e-06,1.808673508741001762e-06,1.909155370337723859e-06,2.009637231934446167e-06,2.110119093531168475e-06,2.210600955127890784e-06,2.311082816724613092e-06,2.411564678321335400e-06,2.512046539918057709e-06,2.612528401514780017e-06,2.713010263111502325e-06,2.813492124708224634e-06,2.913973986304946942e-06,3.014455847901669250e-06,3.114937709498391559e-06,3.215419571095113867e-06,3.315901432691836175e-06,3.416383294288558484e-06,3.516865155885280792e-06,3.617347017482003100e-06,3.717828879078725409e-06,3.818310740675447717e-06,3.918792602272170026e-06,4.019274463868892334e-06,4.119756325465614642e-06,4.220238187062336951e-06,4.320720048659059259e-06,4.421201910255781567e-06,4.521683771852503876e-06,4.622165633449226184e-06,4.722647495045948492e-06,4.823129356642670801e-06,4.923611218239393109e-06,5.024093079836115417e-06,5.124574941432837726e-06,5.225056803029560034e-06,5.325538664626282342e-06,5.426020526223004651e-06,5.526502387819726959e-06,5.626984249416449267e-06,5.727466111013171576e-06,5.827947972609893884e-06,5.928429834206616192e-06,6.028911695803338501e-06,6.129393557400060809e-06,6.229875418996783118e-06,6.330357280593505426e-06 +0.000000000000000000e+00,9.572713845036962015e-08,1.914542769007392403e-07,2.871814153511088737e-07,3.829085538014785336e-07,4.786356922518481405e-07,5.743628307022177474e-07,6.700899691525873543e-07,7.658171076029569612e-07,8.615442460533265682e-07,9.572713845036962809e-07,1.052998522954065994e-06,1.148725661404435707e-06,1.244452799854805419e-06,1.340179938305175132e-06,1.435907076755544845e-06,1.531634215205914558e-06,1.627361353656284271e-06,1.723088492106653983e-06,1.818815630557023696e-06,1.914542769007393409e-06,2.010269907457763122e-06,2.105997045908132835e-06,2.201724184358502547e-06,2.297451322808872260e-06,2.393178461259241973e-06,2.488905599709611686e-06,2.584632738159981399e-06,2.680359876610351111e-06,2.776087015060720824e-06,2.871814153511090537e-06,2.967541291961460250e-06,3.063268430411829963e-06,3.158995568862199675e-06,3.254722707312569388e-06,3.350449845762939101e-06,3.446176984213308814e-06,3.541904122663678526e-06,3.637631261114048239e-06,3.733358399564417952e-06,3.829085538014787665e-06,3.924812676465157378e-06,4.020539814915527090e-06,4.116266953365896803e-06,4.211994091816266516e-06,4.307721230266636229e-06,4.403448368717005942e-06,4.499175507167375654e-06,4.594902645617745367e-06,4.690629784068115080e-06,4.786356922518484793e-06,4.882084060968854506e-06,4.977811199419224218e-06,5.073538337869593931e-06,5.169265476319963644e-06,5.264992614770333357e-06,5.360719753220703070e-06,5.456446891671072782e-06,5.552174030121442495e-06,5.647901168571812208e-06,5.743628307022181921e-06,5.839355445472551634e-06,5.935082583922921346e-06,6.030809722373291059e-06 +0.000000000000000000e+00,1.031264211889895395e-07,2.062528423779790791e-07,3.093792635669686053e-07,4.125056847559581052e-07,5.156321059449476050e-07,6.187585271339371048e-07,7.218849483229266046e-07,8.250113695119161045e-07,9.281377907009056043e-07,1.031264211889894998e-06,1.134390633078884498e-06,1.237517054267873998e-06,1.340643475456863498e-06,1.443769896645852998e-06,1.546896317834842497e-06,1.650022739023831997e-06,1.753149160212821497e-06,1.856275581401810997e-06,1.959402002590800497e-06,2.062528423779789996e-06,2.165654844968779496e-06,2.268781266157768996e-06,2.371907687346758496e-06,2.475034108535747996e-06,2.578160529724737496e-06,2.681286950913726995e-06,2.784413372102716495e-06,2.887539793291705995e-06,2.990666214480695495e-06,3.093792635669684995e-06,3.196919056858674494e-06,3.300045478047663994e-06,3.403171899236653494e-06,3.506298320425642994e-06,3.609424741614632494e-06,3.712551162803621994e-06,3.815677583992611917e-06,3.918804005181601840e-06,4.021930426370591764e-06,4.125056847559581687e-06,4.228183268748571610e-06,4.331309689937561534e-06,4.434436111126551457e-06,4.537562532315541380e-06,4.640688953504531304e-06,4.743815374693521227e-06,4.846941795882511150e-06,4.950068217071501074e-06,5.053194638260490997e-06,5.156321059449480920e-06,5.259447480638470844e-06,5.362573901827460767e-06,5.465700323016450690e-06,5.568826744205440614e-06,5.671953165394430537e-06,5.775079586583420460e-06,5.878206007772410384e-06,5.981332428961400307e-06,6.084458850150390230e-06,6.187585271339380154e-06,6.290711692528370077e-06,6.393838113717360000e-06,6.496964534906349924e-06 +0.000000000000000000e+00,1.023263096669665360e-07,2.046526193339330719e-07,3.069789290008995947e-07,4.093052386678660909e-07,5.116315483348325342e-07,6.139578580017989776e-07,7.162841676687654209e-07,8.186104773357318642e-07,9.209367870026983075e-07,1.023263096669664645e-06,1.125589406336630982e-06,1.227915716003597320e-06,1.330242025670563657e-06,1.432568335337529995e-06,1.534894645004496332e-06,1.637220954671462670e-06,1.739547264338429007e-06,1.841873574005395345e-06,1.944199883672361682e-06,2.046526193339328019e-06,2.148852503006294357e-06,2.251178812673260694e-06,2.353505122340227032e-06,2.455831432007193369e-06,2.558157741674159707e-06,2.660484051341126044e-06,2.762810361008092382e-06,2.865136670675058719e-06,2.967462980342025056e-06,3.069789290008991394e-06,3.172115599675957731e-06,3.274441909342924069e-06,3.376768219009890406e-06,3.479094528676856744e-06,3.581420838343823081e-06,3.683747148010789418e-06,3.786073457677755756e-06,3.888399767344721670e-06,3.990726077011687584e-06,4.093052386678653498e-06,4.195378696345619412e-06,4.297705006012585326e-06,4.400031315679551239e-06,4.502357625346517153e-06,4.604683935013483067e-06,4.707010244680448981e-06,4.809336554347414895e-06,4.911662864014380809e-06,5.013989173681346723e-06,5.116315483348312637e-06,5.218641793015278551e-06,5.320968102682244465e-06,5.423294412349210379e-06,5.525620722016176293e-06,5.627947031683142207e-06,5.730273341350108121e-06,5.832599651017074034e-06,5.934925960684039948e-06,6.037252270351005862e-06,6.139578580017971776e-06,6.241904889684937690e-06,6.344231199351903604e-06,6.446557509018869518e-06 +0.000000000000000000e+00,9.687063628146115785e-08,1.937412725629223157e-07,2.906119088443834471e-07,3.874825451258445785e-07,4.843531814073057098e-07,5.812238176887668942e-07,6.780944539702280785e-07,7.749650902516892628e-07,8.718357265331504471e-07,9.687063628146116314e-07,1.065576999096072710e-06,1.162447635377533788e-06,1.259318271658994867e-06,1.356188907940455945e-06,1.453059544221917024e-06,1.549930180503378102e-06,1.646800816784839181e-06,1.743671453066300259e-06,1.840542089347761337e-06,1.937412725629222416e-06,2.034283361910683494e-06,2.131153998192144573e-06,2.228024634473605651e-06,2.324895270755066730e-06,2.421765907036527808e-06,2.518636543317988886e-06,2.615507179599449965e-06,2.712377815880911043e-06,2.809248452162372122e-06,2.906119088443833200e-06,3.002989724725294279e-06,3.099860361006755357e-06,3.196730997288216436e-06,3.293601633569677514e-06,3.390472269851138592e-06,3.487342906132599671e-06,3.584213542414060749e-06,3.681084178695521828e-06,3.777954814976982906e-06,3.874825451258443985e-06,3.971696087539905063e-06,4.068566723821366141e-06,4.165437360102827220e-06,4.262307996384288298e-06,4.359178632665749377e-06,4.456049268947210455e-06,4.552919905228671534e-06,4.649790541510132612e-06,4.746661177791593691e-06,4.843531814073054769e-06,4.940402450354515847e-06,5.037273086635976926e-06,5.134143722917438004e-06,5.231014359198899083e-06,5.327884995480360161e-06,5.424755631761821240e-06,5.521626268043282318e-06,5.618496904324743397e-06,5.715367540606204475e-06,5.812238176887665553e-06,5.909108813169126632e-06,6.005979449450587710e-06,6.102850085732048789e-06 +0.000000000000000000e+00,1.031264211889968452e-07,2.062528423779936904e-07,3.093792635669905223e-07,4.125056847559873278e-07,5.156321059449841333e-07,6.187585271339809388e-07,7.218849483229777442e-07,8.250113695119745497e-07,9.281377907009713552e-07,1.031264211889968267e-06,1.134390633078965178e-06,1.237517054267962089e-06,1.340643475456959001e-06,1.443769896645955912e-06,1.546896317834952823e-06,1.650022739023949735e-06,1.753149160212946646e-06,1.856275581401943557e-06,1.959402002590940681e-06,2.062528423779937804e-06,2.165654844968934927e-06,2.268781266157932050e-06,2.371907687346929173e-06,2.475034108535926296e-06,2.578160529724923419e-06,2.681286950913920542e-06,2.784413372102917666e-06,2.887539793291914789e-06,2.990666214480911912e-06,3.093792635669909035e-06,3.196919056858906158e-06,3.300045478047903281e-06,3.403171899236900404e-06,3.506298320425897527e-06,3.609424741614894650e-06,3.712551162803891774e-06,3.815677583992888897e-06,3.918804005181886443e-06,4.021930426370883990e-06,4.125056847559881537e-06,4.228183268748879083e-06,4.331309689937876630e-06,4.434436111126874176e-06,4.537562532315871723e-06,4.640688953504869270e-06,4.743815374693866816e-06,4.846941795882864363e-06,4.950068217071861910e-06,5.053194638260859456e-06,5.156321059449857003e-06,5.259447480638854550e-06,5.362573901827852096e-06,5.465700323016849643e-06,5.568826744205847189e-06,5.671953165394844736e-06,5.775079586583842283e-06,5.878206007772839829e-06,5.981332428961837376e-06,6.084458850150834923e-06,6.187585271339832469e-06,6.290711692528830016e-06,6.393838113717827563e-06,6.496964534906825109e-06 +0.000000000000000000e+00,1.023263096669723328e-07,2.046526193339446657e-07,3.069789290009170118e-07,4.093052386678893843e-07,5.116315483348617569e-07,6.139578580018341294e-07,7.162841676688065020e-07,8.186104773357788745e-07,9.209367870027512471e-07,1.023263096669723514e-06,1.125589406336695780e-06,1.227915716003668047e-06,1.330242025670640314e-06,1.432568335337612580e-06,1.534894645004584847e-06,1.637220954671557114e-06,1.739547264338529380e-06,1.841873574005501647e-06,1.944199883672473914e-06,2.046526193339446181e-06,2.148852503006418447e-06,2.251178812673390714e-06,2.353505122340362981e-06,2.455831432007335247e-06,2.558157741674307514e-06,2.660484051341279781e-06,2.762810361008252047e-06,2.865136670675224314e-06,2.967462980342196581e-06,3.069789290009168847e-06,3.172115599676141114e-06,3.274441909343113381e-06,3.376768219010085647e-06,3.479094528677057914e-06,3.581420838344030181e-06,3.683747148011002447e-06,3.786073457677974714e-06,3.888399767344946981e-06,3.990726077011918824e-06,4.093052386678890667e-06,4.195378696345862510e-06,4.297705006012834353e-06,4.400031315679806196e-06,4.502357625346778040e-06,4.604683935013749883e-06,4.707010244680721726e-06,4.809336554347693569e-06,4.911662864014665412e-06,5.013989173681637255e-06,5.116315483348609099e-06,5.218641793015580942e-06,5.320968102682552785e-06,5.423294412349524628e-06,5.525620722016496471e-06,5.627947031683468314e-06,5.730273341350440157e-06,5.832599651017412001e-06,5.934925960684383844e-06,6.037252270351355687e-06,6.139578580018327530e-06,6.241904889685299373e-06,6.344231199352271216e-06,6.446557509019243060e-06 +0.000000000000000000e+00,9.687063628146684885e-08,1.937412725629336977e-07,2.906119088444005466e-07,3.874825451258673954e-07,4.843531814073341913e-07,5.812238176888009872e-07,6.780944539702677831e-07,7.749650902517345791e-07,8.718357265332013750e-07,9.687063628146681709e-07,1.065576999096134967e-06,1.162447635377601763e-06,1.259318271659068559e-06,1.356188907940535355e-06,1.453059544222002150e-06,1.549930180503468946e-06,1.646800816784935742e-06,1.743671453066402538e-06,1.840542089347869334e-06,1.937412725629335918e-06,2.034283361910802502e-06,2.131153998192269087e-06,2.228024634473735671e-06,2.324895270755202255e-06,2.421765907036668839e-06,2.518636543318135423e-06,2.615507179599602007e-06,2.712377815881068591e-06,2.809248452162535176e-06,2.906119088444001760e-06,3.002989724725468344e-06,3.099860361006934928e-06,3.196730997288401512e-06,3.293601633569868096e-06,3.390472269851334681e-06,3.487342906132801265e-06,3.584213542414267849e-06,3.681084178695734433e-06,3.777954814977201017e-06,3.874825451258667601e-06,3.971696087540133762e-06,4.068566723821599923e-06,4.165437360103066083e-06,4.262307996384532244e-06,4.359178632665998404e-06,4.456049268947464565e-06,4.552919905228930726e-06,4.649790541510396886e-06,4.746661177791863047e-06,4.843531814073329208e-06,4.940402450354795368e-06,5.037273086636261529e-06,5.134143722917727690e-06,5.231014359199193850e-06,5.327884995480660011e-06,5.424755631762126172e-06,5.521626268043592332e-06,5.618496904325058493e-06,5.715367540606524653e-06,5.812238176887990814e-06,5.909108813169456975e-06,6.005979449450923135e-06,6.102850085732389296e-06 +0.000000000000000000e+00,1.044642431937406247e-07,2.089284863874812495e-07,3.133927295812218609e-07,4.178569727749624460e-07,5.223212159687030310e-07,6.267854591624436160e-07,7.312497023561842010e-07,8.357139455499247860e-07,9.401781887436653711e-07,1.044642431937405850e-06,1.149106675131146435e-06,1.253570918324887020e-06,1.358035161518627605e-06,1.462499404712368190e-06,1.566963647906108775e-06,1.671427891099849360e-06,1.775892134293589945e-06,1.880356377487330530e-06,1.984820620681071115e-06,2.089284863874811700e-06,2.193749107068552285e-06,2.298213350262292870e-06,2.402677593456033455e-06,2.507141836649774040e-06,2.611606079843514626e-06,2.716070323037255211e-06,2.820534566230995796e-06,2.924998809424736381e-06,3.029463052618476966e-06,3.133927295812217551e-06,3.238391539005958136e-06,3.342855782199698721e-06,3.447320025393439306e-06,3.551784268587179891e-06,3.656248511780920476e-06,3.760712754974661061e-06,3.865176998168401646e-06,3.969641241362142231e-06,4.074105484555882816e-06,4.178569727749623401e-06,4.283033970943363986e-06,4.387498214137104571e-06,4.491962457330845156e-06,4.596426700524585741e-06,4.700890943718326326e-06,4.805355186912066911e-06,4.909819430105807496e-06,5.014283673299548081e-06,5.118747916493288666e-06,5.223212159687029251e-06,5.327676402880769836e-06,5.432140646074510421e-06,5.536604889268251006e-06,5.641069132461991591e-06,5.745533375655732176e-06,5.849997618849472761e-06,5.954461862043213346e-06,6.058926105236953931e-06,6.163390348430694516e-06,6.267854591624435101e-06,6.372318834818175686e-06,6.476783078011916271e-06,6.581247321205656856e-06 +0.000000000000000000e+00,1.044608407418835081e-07,2.089216814837670163e-07,3.133825222256505376e-07,4.178433629675340854e-07,5.223042037094175803e-07,6.267650444513010752e-07,7.312258851931845701e-07,8.356867259350680650e-07,9.401475666769515599e-07,1.044608407418835161e-06,1.149069248160718761e-06,1.253530088902602362e-06,1.357990929644485963e-06,1.462451770386369564e-06,1.566912611128253165e-06,1.671373451870136765e-06,1.775834292612020366e-06,1.880295133353903967e-06,1.984755974095787356e-06,2.089216814837670745e-06,2.193677655579554134e-06,2.298138496321437523e-06,2.402599337063320912e-06,2.507060177805204301e-06,2.611521018547087690e-06,2.715981859288971079e-06,2.820442700030854468e-06,2.924903540772737857e-06,3.029364381514621246e-06,3.133825222256504635e-06,3.238286062998388024e-06,3.342746903740271413e-06,3.447207744482154802e-06,3.551668585224038191e-06,3.656129425965921580e-06,3.760590266707804969e-06,3.865051107449688358e-06,3.969511948191571324e-06,4.073972788933454289e-06,4.178433629675337255e-06,4.282894470417220220e-06,4.387355311159103186e-06,4.491816151900986151e-06,4.596276992642869117e-06,4.700737833384752082e-06,4.805198674126635048e-06,4.909659514868518013e-06,5.014120355610400979e-06,5.118581196352283944e-06,5.223042037094166910e-06,5.327502877836049875e-06,5.431963718577932841e-06,5.536424559319815806e-06,5.640885400061698772e-06,5.745346240803581737e-06,5.849807081545464703e-06,5.954267922287347668e-06,6.058728763029230634e-06,6.163189603771113599e-06,6.267650444512996565e-06,6.372111285254879530e-06,6.476572125996762496e-06,6.581032966738645461e-06 +0.000000000000000000e+00,1.038392914533170955e-07,2.076785829066341911e-07,3.115178743599512999e-07,4.153571658132684351e-07,5.191964572665856233e-07,6.230357487199028115e-07,7.268750401732199996e-07,8.307143316265371878e-07,9.345536230798543760e-07,1.038392914533171670e-06,1.142232205986488964e-06,1.246071497439806258e-06,1.349910788893123552e-06,1.453750080346440846e-06,1.557589371799758140e-06,1.661428663253075434e-06,1.765267954706392729e-06,1.869107246159710023e-06,1.972946537613027317e-06,2.076785829066344611e-06,2.180625120519661905e-06,2.284464411972979199e-06,2.388303703426296493e-06,2.492142994879613787e-06,2.595982286332931081e-06,2.699821577786248375e-06,2.803660869239565669e-06,2.907500160692882963e-06,3.011339452146200257e-06,3.115178743599517551e-06,3.219018035052834845e-06,3.322857326506152139e-06,3.426696617959469434e-06,3.530535909412786728e-06,3.634375200866104022e-06,3.738214492319421316e-06,3.842053783772738610e-06,3.945893075226056327e-06,4.049732366679374045e-06,4.153571658132691763e-06,4.257410949586009480e-06,4.361250241039327198e-06,4.465089532492644915e-06,4.568928823945962633e-06,4.672768115399280350e-06,4.776607406852598068e-06,4.880446698305915786e-06,4.984285989759233503e-06,5.088125281212551221e-06,5.191964572665868938e-06,5.295803864119186656e-06,5.399643155572504373e-06,5.503482447025822091e-06,5.607321738479139809e-06,5.711161029932457526e-06,5.815000321385775244e-06,5.918839612839092961e-06,6.022678904292410679e-06,6.126518195745728397e-06,6.230357487199046114e-06,6.334196778652363832e-06,6.438036070105681549e-06,6.541875361558999267e-06 +0.000000000000000000e+00,9.753795698596437206e-08,1.950759139719287441e-07,2.926138709578931294e-07,3.901518279438575412e-07,4.876897849298219529e-07,5.852277419157863647e-07,6.827656989017507765e-07,7.803036558877151882e-07,8.778416128736796000e-07,9.753795698596439059e-07,1.072917526845608212e-06,1.170455483831572518e-06,1.267993440817536824e-06,1.365531397803501129e-06,1.463069354789465435e-06,1.560607311775429741e-06,1.658145268761394047e-06,1.755683225747358353e-06,1.853221182733322659e-06,1.950759139719286965e-06,2.048297096705251482e-06,2.145835053691216000e-06,2.243373010677180518e-06,2.340910967663145035e-06,2.438448924649109553e-06,2.535986881635074071e-06,2.633524838621038588e-06,2.731062795607003106e-06,2.828600752592967623e-06,2.926138709578932141e-06,3.023676666564896659e-06,3.121214623550861176e-06,3.218752580536825694e-06,3.316290537522790212e-06,3.413828494508754729e-06,3.511366451494719247e-06,3.608904408480683765e-06,3.706442365466648282e-06,3.803980322452612800e-06,3.901518279438577318e-06,3.999056236424541835e-06,4.096594193410506353e-06,4.194132150396470870e-06,4.291670107382435388e-06,4.389208064368399906e-06,4.486746021354364423e-06,4.584283978340328941e-06,4.681821935326293459e-06,4.779359892312257976e-06,4.876897849298222494e-06,4.974435806284187012e-06,5.071973763270151529e-06,5.169511720256116047e-06,5.267049677242080565e-06,5.364587634228045082e-06,5.462125591214009600e-06,5.559663548199974117e-06,5.657201505185938635e-06,5.754739462171903153e-06,5.852277419157867670e-06,5.949815376143832188e-06,6.047353333129796706e-06,6.144891290115761223e-06 +0.000000000000000000e+00,1.044613386595767011e-07,2.089226773191534023e-07,3.133840159787301299e-07,4.178453546383068575e-07,5.223066932978835852e-07,6.267680319574602598e-07,7.312293706170369345e-07,8.356907092766136092e-07,9.401520479361902839e-07,1.044613386595766959e-06,1.149074725255343633e-06,1.253536063914920308e-06,1.357997402574496983e-06,1.462458741234073657e-06,1.566920079893650332e-06,1.671381418553227007e-06,1.775842757212803681e-06,1.880304095872380356e-06,1.984765434531956819e-06,2.089226773191533494e-06,2.193688111851110168e-06,2.298149450510686843e-06,2.402610789170263518e-06,2.507072127829840192e-06,2.611533466489416867e-06,2.715994805148993542e-06,2.820456143808570216e-06,2.924917482468146891e-06,3.029378821127723566e-06,3.133840159787300240e-06,3.238301498446876915e-06,3.342762837106453590e-06,3.447224175766030264e-06,3.551685514425606939e-06,3.656146853085183614e-06,3.760608191744760288e-06,3.865069530404336963e-06,3.969530869063913638e-06,4.073992207723490313e-06,4.178453546383066987e-06,4.282914885042643662e-06,4.387376223702220337e-06,4.491837562361797011e-06,4.596298901021373686e-06,4.700760239680950361e-06,4.805221578340527035e-06,4.909682917000103710e-06,5.014144255659680385e-06,5.118605594319257059e-06,5.223066932978833734e-06,5.327528271638410409e-06,5.431989610297987083e-06,5.536450948957563758e-06,5.640912287617140433e-06,5.745373626276717107e-06,5.849834964936293782e-06,5.954296303595870457e-06,6.058757642255447131e-06,6.163218980915023806e-06,6.267680319574600481e-06,6.372141658234177155e-06,6.476602996893753830e-06,6.581064335553330505e-06 +0.000000000000000000e+00,9.753127525142397574e-08,1.950625505028479515e-07,2.925938257542719404e-07,3.901251010056959559e-07,4.876563762571199713e-07,5.851876515085439868e-07,6.827189267599680022e-07,7.802502020113920177e-07,8.777814772628160331e-07,9.753127525142399427e-07,1.072844027765663852e-06,1.170375303017087762e-06,1.267906578268511671e-06,1.365437853519935581e-06,1.462969128771359490e-06,1.560500404022783400e-06,1.658031679274207310e-06,1.755562954525631219e-06,1.853094229777055129e-06,1.950625505028479038e-06,2.048156780279902948e-06,2.145688055531326857e-06,2.243219330782750767e-06,2.340750606034174677e-06,2.438281881285598586e-06,2.535813156537022496e-06,2.633344431788446405e-06,2.730875707039870315e-06,2.828406982291294224e-06,2.925938257542718134e-06,3.023469532794142043e-06,3.121000808045565953e-06,3.218532083296989863e-06,3.316063358548413772e-06,3.413594633799837682e-06,3.511125909051261591e-06,3.608657184302685501e-06,3.706188459554109410e-06,3.803719734805533320e-06,3.901251010056957230e-06,3.998782285308381563e-06,4.096313560559805896e-06,4.193844835811230229e-06,4.291376111062654562e-06,4.388907386314078895e-06,4.486438661565503228e-06,4.583969936816927561e-06,4.681501212068351894e-06,4.779032487319776227e-06,4.876563762571200560e-06,4.974095037822624893e-06,5.071626313074049226e-06,5.169157588325473560e-06,5.266688863576897893e-06,5.364220138828322226e-06,5.461751414079746559e-06,5.559282689331170892e-06,5.656813964582595225e-06,5.754345239834019558e-06,5.851876515085443891e-06,5.949407790336868224e-06,6.046939065588292557e-06,6.144470340839716890e-06 +0.000000000000000000e+00,1.044642431937494656e-07,2.089284863874989313e-07,3.133927295812483837e-07,4.178569727749978096e-07,5.223212159687471826e-07,6.267854591624965556e-07,7.312497023562459285e-07,8.357139455499953015e-07,9.401781887437446745e-07,1.044642431937493942e-06,1.149106675131243209e-06,1.253570918324992476e-06,1.358035161518741743e-06,1.462499404712491010e-06,1.566963647906240277e-06,1.671427891099989544e-06,1.775892134293738811e-06,1.880356377487488078e-06,1.984820620681237134e-06,2.089284863874986189e-06,2.193749107068735245e-06,2.298213350262484300e-06,2.402677593456233355e-06,2.507141836649982411e-06,2.611606079843731466e-06,2.716070323037480521e-06,2.820534566231229577e-06,2.924998809424978632e-06,3.029463052618727687e-06,3.133927295812476743e-06,3.238391539006225798e-06,3.342855782199974853e-06,3.447320025393723909e-06,3.551784268587472964e-06,3.656248511781222019e-06,3.760712754974971075e-06,3.865176998168720130e-06,3.969641241362469185e-06,4.074105484556218241e-06,4.178569727749967296e-06,4.283033970943716352e-06,4.387498214137465407e-06,4.491962457331214462e-06,4.596426700524963518e-06,4.700890943718712573e-06,4.805355186912461628e-06,4.909819430106210684e-06,5.014283673299959739e-06,5.118747916493708794e-06,5.223212159687457850e-06,5.327676402881206905e-06,5.432140646074955960e-06,5.536604889268705016e-06,5.641069132462454071e-06,5.745533375656203126e-06,5.849997618849952182e-06,5.954461862043701237e-06,6.058926105237450292e-06,6.163390348431199348e-06,6.267854591624948403e-06,6.372318834818697459e-06,6.476783078012446514e-06,6.581247321206195569e-06 +0.000000000000000000e+00,1.044613386595810819e-07,2.089226773191621638e-07,3.133840159787432589e-07,4.178453546383243805e-07,5.223066932979055021e-07,6.267680319574866237e-07,7.312293706170677453e-07,8.356907092766488669e-07,9.401520479362299885e-07,1.044613386595811216e-06,1.149074725255392549e-06,1.253536063914973883e-06,1.357997402574555216e-06,1.462458741234136549e-06,1.566920079893717883e-06,1.671381418553299216e-06,1.775842757212880550e-06,1.880304095872461883e-06,1.984765434532043216e-06,2.089226773191624550e-06,2.193688111851205883e-06,2.298149450510787216e-06,2.402610789170368550e-06,2.507072127829949883e-06,2.611533466489531216e-06,2.715994805149112550e-06,2.820456143808693883e-06,2.924917482468275217e-06,3.029378821127856550e-06,3.133840159787437883e-06,3.238301498447019217e-06,3.342762837106600550e-06,3.447224175766181883e-06,3.551685514425763217e-06,3.656146853085344550e-06,3.760608191744925883e-06,3.865069530404507217e-06,3.969530869064088127e-06,4.073992207723669036e-06,4.178453546383249946e-06,4.282914885042830856e-06,4.387376223702411766e-06,4.491837562361992676e-06,4.596298901021573586e-06,4.700760239681154496e-06,4.805221578340735405e-06,4.909682917000316315e-06,5.014144255659897225e-06,5.118605594319478135e-06,5.223066932979059045e-06,5.327528271638639955e-06,5.431989610298220864e-06,5.536450948957801774e-06,5.640912287617382684e-06,5.745373626276963594e-06,5.849834964936544504e-06,5.954296303596125414e-06,6.058757642255706324e-06,6.163218980915287233e-06,6.267680319574868143e-06,6.372141658234449053e-06,6.476602996894029963e-06,6.581064335553610873e-06 +0.000000000000000000e+00,1.038392914533250894e-07,2.076785829066501788e-07,3.115178743599752815e-07,4.153571658133004106e-07,5.191964572666255397e-07,6.230357487199506688e-07,7.268750401732757979e-07,8.307143316266009271e-07,9.345536230799260562e-07,1.038392914533251291e-06,1.142232205986576632e-06,1.246071497439901973e-06,1.349910788893227314e-06,1.453750080346552655e-06,1.557589371799877996e-06,1.661428663253203336e-06,1.765267954706528677e-06,1.869107246159854018e-06,1.972946537613179359e-06,2.076785829066504700e-06,2.180625120519830041e-06,2.284464411973155382e-06,2.388303703426480723e-06,2.492142994879806063e-06,2.595982286333131404e-06,2.699821577786456745e-06,2.803660869239782086e-06,2.907500160693107427e-06,3.011339452146432768e-06,3.115178743599758109e-06,3.219018035053083450e-06,3.322857326506408790e-06,3.426696617959734131e-06,3.530535909413059472e-06,3.634375200866384813e-06,3.738214492319710154e-06,3.842053783773035071e-06,3.945893075226359565e-06,4.049732366679684059e-06,4.153571658133008553e-06,4.257410949586333047e-06,4.361250241039657541e-06,4.465089532492982034e-06,4.568928823946306528e-06,4.672768115399631022e-06,4.776607406852955516e-06,4.880446698306280010e-06,4.984285989759604504e-06,5.088125281212928997e-06,5.191964572666253491e-06,5.295803864119577985e-06,5.399643155572902479e-06,5.503482447026226973e-06,5.607321738479551467e-06,5.711161029932875960e-06,5.815000321386200454e-06,5.918839612839524948e-06,6.022678904292849442e-06,6.126518195746173936e-06,6.230357487199498430e-06,6.334196778652822924e-06,6.438036070106147417e-06,6.541875361559471911e-06 +0.000000000000000000e+00,9.753795698597120126e-08,1.950759139719424025e-07,2.926138709579136170e-07,3.901518279438848580e-07,4.876897849298560460e-07,5.852277419158272340e-07,6.827656989017984221e-07,7.803036558877696101e-07,8.778416128737407981e-07,9.753795698597120920e-07,1.072917526845683386e-06,1.170455483831654680e-06,1.267993440817625974e-06,1.365531397803597268e-06,1.463069354789568562e-06,1.560607311775539855e-06,1.658145268761511149e-06,1.755683225747482443e-06,1.853221182733453737e-06,1.950759139719425031e-06,2.048297096705396325e-06,2.145835053691367619e-06,2.243373010677338913e-06,2.340910967663310207e-06,2.438448924649281501e-06,2.535986881635252795e-06,2.633524838621224088e-06,2.731062795607195382e-06,2.828600752593166676e-06,2.926138709579137970e-06,3.023676666565109264e-06,3.121214623551080558e-06,3.218752580537051852e-06,3.316290537523023146e-06,3.413828494508994440e-06,3.511366451494965734e-06,3.608904408480937027e-06,3.706442365466908321e-06,3.803980322452879615e-06,3.901518279438850909e-06,3.999056236424822203e-06,4.096594193410793497e-06,4.194132150396764791e-06,4.291670107382736085e-06,4.389208064368707379e-06,4.486746021354678673e-06,4.584283978340649967e-06,4.681821935326621260e-06,4.779359892312592554e-06,4.876897849298563848e-06,4.974435806284535142e-06,5.071973763270506436e-06,5.169511720256477730e-06,5.267049677242449024e-06,5.364587634228420318e-06,5.462125591214391612e-06,5.559663548200362906e-06,5.657201505186334199e-06,5.754739462172305493e-06,5.852277419158276787e-06,5.949815376144248081e-06,6.047353333130219375e-06,6.144891290116190669e-06 +0.000000000000000000e+00,1.028593537508333953e-07,2.057187075016667905e-07,3.085780612525001858e-07,4.114374150033335810e-07,5.142967687541670292e-07,6.171561225050004774e-07,7.200154762558339256e-07,8.228748300066673738e-07,9.257341837575008220e-07,1.028593537508334270e-06,1.131452891259167718e-06,1.234312245010001167e-06,1.337171598760834615e-06,1.440030952511668063e-06,1.542890306262501511e-06,1.645749660013334959e-06,1.748609013764168408e-06,1.851468367515001856e-06,1.954327721265835516e-06,2.057187075016668964e-06,2.160046428767502412e-06,2.262905782518335860e-06,2.365765136269169309e-06,2.468624490020002757e-06,2.571483843770836205e-06,2.674343197521669653e-06,2.777202551272503101e-06,2.880061905023336549e-06,2.982921258774169998e-06,3.085780612525003446e-06,3.188639966275836894e-06,3.291499320026670342e-06,3.394358673777503790e-06,3.497218027528337239e-06,3.600077381279170687e-06,3.702936735030004135e-06,3.805796088780837583e-06,3.908655442531671031e-06,4.011514796282504480e-06,4.114374150033337928e-06,4.217233503784171376e-06,4.320092857535004824e-06,4.422952211285838272e-06,4.525811565036671721e-06,4.628670918787505169e-06,4.731530272538338617e-06,4.834389626289172065e-06,4.937248980040005513e-06,5.040108333790838962e-06,5.142967687541672410e-06,5.245827041292505858e-06,5.348686395043339306e-06,5.451545748794172754e-06,5.554405102545006203e-06,5.657264456295839651e-06,5.760123810046673099e-06,5.862983163797506547e-06,5.965842517548339995e-06,6.068701871299173444e-06,6.171561225050006892e-06,6.274420578800840340e-06,6.377279932551673788e-06,6.480139286302507236e-06 +0.000000000000000000e+00,9.894487614710931112e-08,1.978897522942186222e-07,2.968346284413279334e-07,3.957795045884372445e-07,4.947243807355465027e-07,5.936692568826557609e-07,6.926141330297650190e-07,7.915590091768742772e-07,8.905038853239835354e-07,9.894487614710927936e-07,1.088393637618202052e-06,1.187338513765311310e-06,1.286283389912420568e-06,1.385228266059529826e-06,1.484173142206639085e-06,1.583118018353748343e-06,1.682062894500857601e-06,1.781007770647966859e-06,1.879952646795076117e-06,1.978897522942185164e-06,2.077842399089294210e-06,2.176787275236403257e-06,2.275732151383512303e-06,2.374677027530621349e-06,2.473621903677730396e-06,2.572566779824839442e-06,2.671511655971948489e-06,2.770456532119057535e-06,2.869401408266166582e-06,2.968346284413275628e-06,3.067291160560384674e-06,3.166236036707493721e-06,3.265180912854602767e-06,3.364125789001711814e-06,3.463070665148820860e-06,3.562015541295929906e-06,3.660960417443038953e-06,3.759905293590147999e-06,3.858850169737257046e-06,3.957795045884366092e-06,4.056739922031475139e-06,4.155684798178584185e-06,4.254629674325693231e-06,4.353574550472802278e-06,4.452519426619911324e-06,4.551464302767020371e-06,4.650409178914129417e-06,4.749354055061238464e-06,4.848298931208347510e-06,4.947243807355456556e-06,5.046188683502565603e-06,5.145133559649674649e-06,5.244078435796783696e-06,5.343023311943892742e-06,5.441968188091001789e-06,5.540913064238110835e-06,5.639857940385219881e-06,5.738802816532328928e-06,5.837747692679437974e-06,5.936692568826547021e-06,6.035637444973656067e-06,6.134582321120765114e-06,6.233527197267874160e-06 +0.000000000000000000e+00,1.030573706073038029e-07,2.061147412146076059e-07,3.091721118219114221e-07,4.122294824292152647e-07,5.152868530365191074e-07,6.183442236438229500e-07,7.214015942511267927e-07,8.244589648584306353e-07,9.275163354657344780e-07,1.030573706073038426e-06,1.133631076680342481e-06,1.236688447287646535e-06,1.339745817894950590e-06,1.442803188502254644e-06,1.545860559109558699e-06,1.648917929716862753e-06,1.751975300324166807e-06,1.855032670931470862e-06,1.958090041538774916e-06,2.061147412146078971e-06,2.164204782753383025e-06,2.267262153360687079e-06,2.370319523967991134e-06,2.473376894575295188e-06,2.576434265182599243e-06,2.679491635789903297e-06,2.782549006397207351e-06,2.885606377004511406e-06,2.988663747611815460e-06,3.091721118219119515e-06,3.194778488826423569e-06,3.297835859433727623e-06,3.400893230041031678e-06,3.503950600648335732e-06,3.607007971255639787e-06,3.710065341862943841e-06,3.813122712470247895e-06,3.916180083077552373e-06,4.019237453684856428e-06,4.122294824292160482e-06,4.225352194899464537e-06,4.328409565506768591e-06,4.431466936114072645e-06,4.534524306721376700e-06,4.637581677328680754e-06,4.740639047935984809e-06,4.843696418543288863e-06,4.946753789150592917e-06,5.049811159757896972e-06,5.152868530365201026e-06,5.255925900972505081e-06,5.358983271579809135e-06,5.462040642187113190e-06,5.565098012794417244e-06,5.668155383401721298e-06,5.771212754009025353e-06,5.874270124616329407e-06,5.977327495223633462e-06,6.080384865830937516e-06,6.183442236438241570e-06,6.286499607045545625e-06,6.389556977652849679e-06,6.492614348260153734e-06 +0.000000000000000000e+00,9.930312212406112240e-08,1.986062442481222448e-07,2.979093663721833407e-07,3.972124884962444367e-07,4.965156106203055326e-07,5.958187327443666815e-07,6.951218548684278303e-07,7.944249769924889792e-07,8.937280991165501281e-07,9.930312212406112769e-07,1.092334343364672532e-06,1.191637465488733786e-06,1.290940587612795041e-06,1.390243709736856296e-06,1.489546831860917551e-06,1.588849953984978805e-06,1.688153076109040060e-06,1.787456198233101315e-06,1.886759320357162570e-06,1.986062442481223824e-06,2.085365564605285079e-06,2.184668686729346334e-06,2.283971808853407589e-06,2.383274930977468843e-06,2.482578053101530098e-06,2.581881175225591353e-06,2.681184297349652608e-06,2.780487419473713862e-06,2.879790541597775117e-06,2.979093663721836372e-06,3.078396785845897627e-06,3.177699907969958881e-06,3.277003030094020136e-06,3.376306152218081391e-06,3.475609274342142646e-06,3.574912396466203900e-06,3.674215518590265155e-06,3.773518640714326410e-06,3.872821762838387665e-06,3.972124884962448496e-06,4.071428007086509327e-06,4.170731129210570158e-06,4.270034251334630990e-06,4.369337373458691821e-06,4.468640495582752652e-06,4.567943617706813483e-06,4.667246739830874315e-06,4.766549861954935146e-06,4.865852984078995977e-06,4.965156106203056808e-06,5.064459228327117639e-06,5.163762350451178471e-06,5.263065472575239302e-06,5.362368594699300133e-06,5.461671716823360964e-06,5.560974838947421796e-06,5.660277961071482627e-06,5.759581083195543458e-06,5.858884205319604289e-06,5.958187327443665121e-06,6.057490449567725952e-06,6.156793571691786783e-06,6.256096693815847614e-06 +0.000000000000000000e+00,9.951038358244332861e-08,1.990207671648866572e-07,2.985311507473299726e-07,3.980415343297732615e-07,4.975519179122165504e-07,5.970623014946598393e-07,6.965726850771031282e-07,7.960830686595464171e-07,8.955934522419897061e-07,9.951038358244328891e-07,1.094614219406876178e-06,1.194124602989319467e-06,1.293634986571762756e-06,1.393145370154206045e-06,1.492655753736649334e-06,1.592166137319092623e-06,1.691676520901535911e-06,1.791186904483979200e-06,1.890697288066422489e-06,1.990207671648865778e-06,2.089718055231309067e-06,2.189228438813752356e-06,2.288738822396195645e-06,2.388249205978638934e-06,2.487759589561082223e-06,2.587269973143525512e-06,2.686780356725968801e-06,2.786290740308412089e-06,2.885801123890855378e-06,2.985311507473298667e-06,3.084821891055741956e-06,3.184332274638185245e-06,3.283842658220628534e-06,3.383353041803071823e-06,3.482863425385515112e-06,3.582373808967958401e-06,3.681884192550401690e-06,3.781394576132844978e-06,3.880904959715288267e-06,3.980415343297731556e-06,4.079925726880174845e-06,4.179436110462618134e-06,4.278946494045061423e-06,4.378456877627504712e-06,4.477967261209948001e-06,4.577477644792391290e-06,4.676988028374834579e-06,4.776498411957277868e-06,4.876008795539721156e-06,4.975519179122164445e-06,5.075029562704607734e-06,5.174539946287051023e-06,5.274050329869494312e-06,5.373560713451937601e-06,5.473071097034380890e-06,5.572581480616824179e-06,5.672091864199267468e-06,5.771602247781710757e-06,5.871112631364154046e-06,5.970623014946597334e-06,6.070133398529040623e-06,6.169643782111483912e-06,6.269154165693927201e-06 +0.000000000000000000e+00,9.568387123289084224e-08,1.913677424657816845e-07,2.870516136986725267e-07,3.827354849315633690e-07,4.784193561644542641e-07,5.741032273973451593e-07,6.697870986302360545e-07,7.654709698631269497e-07,8.611548410960178448e-07,9.568387123289087400e-07,1.052522583561799635e-06,1.148206454794690530e-06,1.243890326027581426e-06,1.339574197260472321e-06,1.435258068493363216e-06,1.530941939726254111e-06,1.626625810959145006e-06,1.722309682192035901e-06,1.817993553424926797e-06,1.913677424657817904e-06,2.009361295890709011e-06,2.105045167123600117e-06,2.200729038356491224e-06,2.296412909589382331e-06,2.392096780822273438e-06,2.487780652055164545e-06,2.583464523288055652e-06,2.679148394520946759e-06,2.774832265753837866e-06,2.870516136986728973e-06,2.966200008219620080e-06,3.061883879452511187e-06,3.157567750685402294e-06,3.253251621918293401e-06,3.348935493151184508e-06,3.444619364384075615e-06,3.540303235616966721e-06,3.635987106849857828e-06,3.731670978082748935e-06,3.827354849315640042e-06,3.923038720548531149e-06,4.018722591781422256e-06,4.114406463014313363e-06,4.210090334247204470e-06,4.305774205480095577e-06,4.401458076712986684e-06,4.497141947945877791e-06,4.592825819178768898e-06,4.688509690411660005e-06,4.784193561644551112e-06,4.879877432877442219e-06,4.975561304110333326e-06,5.071245175343224432e-06,5.166929046576115539e-06,5.262612917809006646e-06,5.358296789041897753e-06,5.453980660274788860e-06,5.549664531507679967e-06,5.645348402740571074e-06,5.741032273973462181e-06,5.836716145206353288e-06,5.932400016439244395e-06,6.028083887672135502e-06 +0.000000000000000000e+00,1.030091233241205212e-07,2.060182466482410424e-07,3.090273699723615768e-07,4.120364932964821377e-07,5.150456166206026457e-07,6.180547399447231537e-07,7.210638632688436616e-07,8.240729865929641696e-07,9.270821099170846775e-07,1.030091233241205291e-06,1.133100356565325905e-06,1.236109479889446519e-06,1.339118603213567133e-06,1.442127726537687747e-06,1.545136849861808361e-06,1.648145973185928974e-06,1.751155096510049588e-06,1.854164219834170202e-06,1.957173343158291028e-06,2.060182466482411853e-06,2.163191589806532679e-06,2.266200713130653505e-06,2.369209836454774330e-06,2.472218959778895156e-06,2.575228083103015981e-06,2.678237206427136807e-06,2.781246329751257633e-06,2.884255453075378458e-06,2.987264576399499284e-06,3.090273699723620109e-06,3.193282823047740935e-06,3.296291946371861761e-06,3.399301069695982586e-06,3.502310193020103412e-06,3.605319316344224237e-06,3.708328439668345063e-06,3.811337562992465889e-06,3.914346686316587138e-06,4.017355809640708387e-06,4.120364932964829636e-06,4.223374056288950885e-06,4.326383179613072134e-06,4.429392302937193383e-06,4.532401426261314632e-06,4.635410549585435881e-06,4.738419672909557131e-06,4.841428796233678380e-06,4.944437919557799629e-06,5.047447042881920878e-06,5.150456166206042127e-06,5.253465289530163376e-06,5.356474412854284625e-06,5.459483536178405874e-06,5.562492659502527124e-06,5.665501782826648373e-06,5.768510906150769622e-06,5.871520029474890871e-06,5.974529152799012120e-06,6.077538276123133369e-06,6.180547399447254618e-06,6.283556522771375867e-06,6.386565646095497116e-06,6.489574769419618366e-06 +0.000000000000000000e+00,9.950854658415577121e-08,1.990170931683115424e-07,2.985256397524673004e-07,3.980341863366230319e-07,4.975427329207787105e-07,5.970512795049343890e-07,6.965598260890900676e-07,7.960683726732457462e-07,8.955769192574014248e-07,9.950854658415569974e-07,1.094594012425712570e-06,1.194102559009868143e-06,1.293611105594023716e-06,1.393119652178179288e-06,1.492628198762334861e-06,1.592136745346490434e-06,1.691645291930646006e-06,1.791153838514801579e-06,1.890662385098957152e-06,1.990170931683112724e-06,2.089679478267268509e-06,2.189188024851424293e-06,2.288696571435580078e-06,2.388205118019735862e-06,2.487713664603891647e-06,2.587222211188047431e-06,2.686730757772203215e-06,2.786239304356359000e-06,2.885747850940514784e-06,2.985256397524670569e-06,3.084764944108826353e-06,3.184273490692982138e-06,3.283782037277137922e-06,3.383290583861293707e-06,3.482799130445449491e-06,3.582307677029605275e-06,3.681816223613761060e-06,3.781324770197916844e-06,3.880833316782072629e-06,3.980341863366227990e-06,4.079850409950383351e-06,4.179358956534538712e-06,4.278867503118694073e-06,4.378376049702849433e-06,4.477884596287004794e-06,4.577393142871160155e-06,4.676901689455315516e-06,4.776410236039470877e-06,4.875918782623626238e-06,4.975427329207781599e-06,5.074935875791936960e-06,5.174444422376092321e-06,5.273952968960247682e-06,5.373461515544403043e-06,5.472970062128558404e-06,5.572478608712713765e-06,5.671987155296869126e-06,5.771495701881024487e-06,5.871004248465179847e-06,5.970512795049335208e-06,6.070021341633490569e-06,6.169529888217645930e-06,6.269038434801801291e-06 +0.000000000000000000e+00,1.028593537508338320e-07,2.057187075016676640e-07,3.085780612525015093e-07,4.114374150033353810e-07,5.142967687541692527e-07,6.171561225050031244e-07,7.200154762558369961e-07,8.228748300066708678e-07,9.257341837575047395e-07,1.028593537508338717e-06,1.131452891259172589e-06,1.234312245010006461e-06,1.337171598760840332e-06,1.440030952511674204e-06,1.542890306262508076e-06,1.645749660013341947e-06,1.748609013764175819e-06,1.851468367515009691e-06,1.954327721265843563e-06,2.057187075016677434e-06,2.160046428767511306e-06,2.262905782518345178e-06,2.365765136269179049e-06,2.468624490020012921e-06,2.571483843770846793e-06,2.674343197521680665e-06,2.777202551272514536e-06,2.880061905023348408e-06,2.982921258774182280e-06,3.085780612525016151e-06,3.188639966275850023e-06,3.291499320026683895e-06,3.394358673777517767e-06,3.497218027528351638e-06,3.600077381279185510e-06,3.702936735030019382e-06,3.805796088780853253e-06,3.908655442531687125e-06,4.011514796282521420e-06,4.114374150033355716e-06,4.217233503784190011e-06,4.320092857535024306e-06,4.422952211285858601e-06,4.525811565036692896e-06,4.628670918787527192e-06,4.731530272538361487e-06,4.834389626289195782e-06,4.937248980040030077e-06,5.040108333790864373e-06,5.142967687541698668e-06,5.245827041292532963e-06,5.348686395043367258e-06,5.451545748794201554e-06,5.554405102545035849e-06,5.657264456295870144e-06,5.760123810046704439e-06,5.862983163797538734e-06,5.965842517548373030e-06,6.068701871299207325e-06,6.171561225050041620e-06,6.274420578800875915e-06,6.377279932551710211e-06,6.480139286302544506e-06 +0.000000000000000000e+00,9.894487614710949641e-08,1.978897522942189928e-07,2.968346284413285157e-07,3.957795045884380386e-07,4.947243807355475615e-07,5.936692568826570314e-07,6.926141330297665014e-07,7.915590091768759713e-07,8.905038853239854412e-07,9.894487614710949112e-07,1.088393637618204381e-06,1.187338513765313851e-06,1.286283389912423321e-06,1.385228266059532791e-06,1.484173142206642261e-06,1.583118018353751731e-06,1.682062894500861201e-06,1.781007770647970671e-06,1.879952646795080141e-06,1.978897522942189399e-06,2.077842399089298445e-06,2.176787275236407492e-06,2.275732151383516538e-06,2.374677027530625585e-06,2.473621903677734631e-06,2.572566779824843677e-06,2.671511655971952724e-06,2.770456532119061770e-06,2.869401408266170817e-06,2.968346284413279863e-06,3.067291160560388910e-06,3.166236036707497956e-06,3.265180912854607002e-06,3.364125789001716049e-06,3.463070665148825095e-06,3.562015541295934142e-06,3.660960417443043188e-06,3.759905293590152234e-06,3.858850169737261281e-06,3.957795045884370327e-06,4.056739922031479374e-06,4.155684798178588420e-06,4.254629674325697467e-06,4.353574550472806513e-06,4.452519426619915559e-06,4.551464302767024606e-06,4.650409178914133652e-06,4.749354055061242699e-06,4.848298931208351745e-06,4.947243807355460792e-06,5.046188683502569838e-06,5.145133559649678884e-06,5.244078435796787931e-06,5.343023311943896977e-06,5.441968188091006024e-06,5.540913064238115070e-06,5.639857940385224117e-06,5.738802816532333163e-06,5.837747692679442209e-06,5.936692568826551256e-06,6.035637444973660302e-06,6.134582321120769349e-06,6.233527197267878395e-06 +0.000000000000000000e+00,1.030091233241207197e-07,2.060182466482414394e-07,3.090273699723621592e-07,4.120364932964828789e-07,5.150456166206035986e-07,6.180547399447243183e-07,7.210638632688450380e-07,8.240729865929657578e-07,9.270821099170864775e-07,1.030091233241207197e-06,1.133100356565327811e-06,1.236109479889448425e-06,1.339118603213569039e-06,1.442127726537689653e-06,1.545136849861810266e-06,1.648145973185930880e-06,1.751155096510051494e-06,1.854164219834172108e-06,1.957173343158292722e-06,2.060182466482413124e-06,2.163191589806533526e-06,2.266200713130653928e-06,2.369209836454774330e-06,2.472218959778894732e-06,2.575228083103015134e-06,2.678237206427135536e-06,2.781246329751255938e-06,2.884255453075376341e-06,2.987264576399496743e-06,3.090273699723617145e-06,3.193282823047737547e-06,3.296291946371857949e-06,3.399301069695978351e-06,3.502310193020098753e-06,3.605319316344219155e-06,3.708328439668339557e-06,3.811337562992459959e-06,3.914346686316580361e-06,4.017355809640700763e-06,4.120364932964821166e-06,4.223374056288941568e-06,4.326383179613061970e-06,4.429392302937182372e-06,4.532401426261302774e-06,4.635410549585423176e-06,4.738419672909543578e-06,4.841428796233663980e-06,4.944437919557784382e-06,5.047447042881904784e-06,5.150456166206025186e-06,5.253465289530145588e-06,5.356474412854265991e-06,5.459483536178386393e-06,5.562492659502506795e-06,5.665501782826627197e-06,5.768510906150747599e-06,5.871520029474868001e-06,5.974529152798988403e-06,6.077538276123108805e-06,6.180547399447229207e-06,6.283556522771349609e-06,6.386565646095470011e-06,6.489574769419590413e-06 +0.000000000000000000e+00,9.930312212406273706e-08,1.986062442481254741e-07,2.979093663721882112e-07,3.972124884962509482e-07,4.965156106203136853e-07,5.958187327443764223e-07,6.951218548684391594e-07,7.944249769925018965e-07,8.937280991165646335e-07,9.930312212406273706e-07,1.092334343364690108e-06,1.191637465488752845e-06,1.290940587612815582e-06,1.390243709736878319e-06,1.489546831860941056e-06,1.588849953985003793e-06,1.688153076109066530e-06,1.787456198233129267e-06,1.886759320357192004e-06,1.986062442481254741e-06,2.085365564605317266e-06,2.184668686729379792e-06,2.283971808853442317e-06,2.383274930977504842e-06,2.482578053101567368e-06,2.581881175225629893e-06,2.681184297349692418e-06,2.780487419473754944e-06,2.879790541597817469e-06,2.979093663721879994e-06,3.078396785845942519e-06,3.177699907970005045e-06,3.277003030094067570e-06,3.376306152218130095e-06,3.475609274342192621e-06,3.574912396466255146e-06,3.674215518590317671e-06,3.773518640714380196e-06,3.872821762838442722e-06,3.972124884962505247e-06,4.071428007086567772e-06,4.170731129210630298e-06,4.270034251334692823e-06,4.369337373458755348e-06,4.468640495582817874e-06,4.567943617706880399e-06,4.667246739830942924e-06,4.766549861955005449e-06,4.865852984079067975e-06,4.965156106203130500e-06,5.064459228327193025e-06,5.163762350451255551e-06,5.263065472575318076e-06,5.362368594699380601e-06,5.461671716823443127e-06,5.560974838947505652e-06,5.660277961071568177e-06,5.759581083195630702e-06,5.858884205319693228e-06,5.958187327443755753e-06,6.057490449567818278e-06,6.156793571691880804e-06,6.256096693815943329e-06 +0.000000000000000000e+00,9.951038358244380507e-08,1.990207671648876101e-07,2.985311507473314020e-07,3.980415343297751673e-07,4.975519179122189856e-07,5.970623014946628039e-07,6.965726850771066222e-07,7.960830686595504405e-07,8.955934522419942589e-07,9.951038358244379713e-07,1.094614219406881684e-06,1.194124602989325396e-06,1.293634986571769109e-06,1.393145370154212821e-06,1.492655753736656533e-06,1.592166137319100246e-06,1.691676520901543958e-06,1.791186904483987671e-06,1.890697288066431383e-06,1.990207671648875096e-06,2.089718055231318808e-06,2.189228438813762520e-06,2.288738822396206233e-06,2.388249205978649945e-06,2.487759589561093658e-06,2.587269973143537370e-06,2.686780356725981082e-06,2.786290740308424795e-06,2.885801123890868507e-06,2.985311507473312220e-06,3.084821891055755932e-06,3.184332274638199645e-06,3.283842658220643357e-06,3.383353041803087069e-06,3.482863425385530782e-06,3.582373808967974494e-06,3.681884192550418207e-06,3.781394576132861919e-06,3.880904959715305208e-06,3.980415343297748497e-06,4.079925726880191786e-06,4.179436110462635075e-06,4.278946494045078364e-06,4.378456877627521653e-06,4.477967261209964942e-06,4.577477644792408230e-06,4.676988028374851519e-06,4.776498411957294808e-06,4.876008795539738097e-06,4.975519179122181386e-06,5.075029562704624675e-06,5.174539946287067964e-06,5.274050329869511253e-06,5.373560713451954542e-06,5.473071097034397831e-06,5.572581480616841120e-06,5.672091864199284408e-06,5.771602247781727697e-06,5.871112631364170986e-06,5.970623014946614275e-06,6.070133398529057564e-06,6.169643782111500853e-06,6.269154165693944142e-06 +0.000000000000000000e+00,9.568387123289160986e-08,1.913677424657832197e-07,2.870516136986748031e-07,3.827354849315663865e-07,4.784193561644579699e-07,5.741032273973496062e-07,6.697870986302412426e-07,7.654709698631328789e-07,8.611548410960245152e-07,9.568387123289161516e-07,1.052522583561807682e-06,1.148206454794699212e-06,1.243890326027590743e-06,1.339574197260482273e-06,1.435258068493373804e-06,1.530941939726265334e-06,1.626625810959156865e-06,1.722309682192048395e-06,1.817993553424939926e-06,1.913677424657831456e-06,2.009361295890722987e-06,2.105045167123614517e-06,2.200729038356506047e-06,2.296412909589397578e-06,2.392096780822289108e-06,2.487780652055180639e-06,2.583464523288072169e-06,2.679148394520963700e-06,2.774832265753855230e-06,2.870516136986746761e-06,2.966200008219638291e-06,3.061883879452529822e-06,3.157567750685421352e-06,3.253251621918312882e-06,3.348935493151204413e-06,3.444619364384095943e-06,3.540303235616987474e-06,3.635987106849879004e-06,3.731670978082770535e-06,3.827354849315662065e-06,3.923038720548553172e-06,4.018722591781444279e-06,4.114406463014335386e-06,4.210090334247226493e-06,4.305774205480117600e-06,4.401458076713008707e-06,4.497141947945899814e-06,4.592825819178790921e-06,4.688509690411682028e-06,4.784193561644573135e-06,4.879877432877464241e-06,4.975561304110355348e-06,5.071245175343246455e-06,5.166929046576137562e-06,5.262612917809028669e-06,5.358296789041919776e-06,5.453980660274810883e-06,5.549664531507701990e-06,5.645348402740593097e-06,5.741032273973484204e-06,5.836716145206375311e-06,5.932400016439266418e-06,6.028083887672157525e-06 +0.000000000000000000e+00,1.005760313230352249e-07,2.011520626460704499e-07,3.017280939691057013e-07,4.023041252921409527e-07,5.028801566151762041e-07,6.034561879382114026e-07,7.040322192612466010e-07,8.046082505842817995e-07,9.051842819073169980e-07,1.005760313230352196e-06,1.106336344553387395e-06,1.206912375876422593e-06,1.307488407199457792e-06,1.408064438522492990e-06,1.508640469845528189e-06,1.609216501168563387e-06,1.709792532491598586e-06,1.810368563814633784e-06,1.910944595137668983e-06,2.011520626460703969e-06,2.112096657783738956e-06,2.212672689106773943e-06,2.313248720429808929e-06,2.413824751752843916e-06,2.514400783075878903e-06,2.614976814398913890e-06,2.715552845721948876e-06,2.816128877044983863e-06,2.916704908368018850e-06,3.017280939691053836e-06,3.117856971014088823e-06,3.218433002337123810e-06,3.319009033660158797e-06,3.419585064983193783e-06,3.520161096306228770e-06,3.620737127629263757e-06,3.721313158952298743e-06,3.821889190275333730e-06,3.922465221598368717e-06,4.023041252921403704e-06,4.123617284244438690e-06,4.224193315567473677e-06,4.324769346890508664e-06,4.425345378213543650e-06,4.525921409536578637e-06,4.626497440859613624e-06,4.727073472182648610e-06,4.827649503505683597e-06,4.928225534828718584e-06,5.028801566151753571e-06,5.129377597474788557e-06,5.229953628797823544e-06,5.330529660120858531e-06,5.431105691443893517e-06,5.531681722766928504e-06,5.632257754089963491e-06,5.732833785412998478e-06,5.833409816736033464e-06,5.933985848059068451e-06,6.034561879382103438e-06,6.135137910705138424e-06,6.235713942028173411e-06,6.336289973351208398e-06 +0.000000000000000000e+00,9.949745230273623845e-08,1.989949046054724769e-07,2.984923569082087286e-07,3.979898092109450067e-07,4.974872615136812849e-07,5.969847138164175630e-07,6.964821661191538412e-07,7.959796184218901193e-07,8.954770707246263975e-07,9.949745230273627815e-07,1.094471975330099271e-06,1.193969427632835761e-06,1.293466879935572251e-06,1.392964332238308741e-06,1.492461784541045231e-06,1.591959236843781721e-06,1.691456689146518211e-06,1.790954141449254701e-06,1.890451593751991191e-06,1.989949046054727681e-06,2.089446498357464171e-06,2.188943950660200660e-06,2.288441402962937150e-06,2.387938855265673640e-06,2.487436307568410130e-06,2.586933759871146620e-06,2.686431212173883110e-06,2.785928664476619600e-06,2.885426116779356090e-06,2.984923569082092580e-06,3.084421021384829070e-06,3.183918473687565560e-06,3.283415925990302049e-06,3.382913378293038539e-06,3.482410830595775029e-06,3.581908282898511519e-06,3.681405735201248009e-06,3.780903187503984499e-06,3.880400639806720565e-06,3.979898092109456208e-06,4.079395544412191851e-06,4.178892996714927494e-06,4.278390449017663137e-06,4.377887901320398780e-06,4.477385353623134423e-06,4.576882805925870066e-06,4.676380258228605708e-06,4.775877710531341351e-06,4.875375162834076994e-06,4.974872615136812637e-06,5.074370067439548280e-06,5.173867519742283923e-06,5.273364972045019566e-06,5.372862424347755209e-06,5.472359876650490851e-06,5.571857328953226494e-06,5.671354781255962137e-06,5.770852233558697780e-06,5.870349685861433423e-06,5.969847138164169066e-06,6.069344590466904709e-06,6.168842042769640352e-06,6.268339495072375994e-06 +0.000000000000000000e+00,9.692704931971365538e-08,1.938540986394273108e-07,2.907811479591409794e-07,3.877081972788546744e-07,4.846352465985683695e-07,5.815622959182820646e-07,6.784893452379957597e-07,7.754163945577094548e-07,8.723434438774231498e-07,9.692704931971369508e-07,1.066197542516850858e-06,1.163124591836564764e-06,1.260051641156278671e-06,1.356978690475992578e-06,1.453905739795706485e-06,1.550832789115420392e-06,1.647759838435134299e-06,1.744686887754848206e-06,1.841613937074562112e-06,1.938540986394276019e-06,2.035468035713989926e-06,2.132395085033703833e-06,2.229322134353417740e-06,2.326249183673131647e-06,2.423176232992845553e-06,2.520103282312559460e-06,2.617030331632273367e-06,2.713957380951987274e-06,2.810884430271701181e-06,2.907811479591415088e-06,3.004738528911128994e-06,3.101665578230842901e-06,3.198592627550556808e-06,3.295519676870270715e-06,3.392446726189984622e-06,3.489373775509698529e-06,3.586300824829412435e-06,3.683227874149126342e-06,3.780154923468840249e-06,3.877081972788554579e-06,3.974009022108268910e-06,4.070936071427983240e-06,4.167863120747697571e-06,4.264790170067411901e-06,4.361717219387126231e-06,4.458644268706840562e-06,4.555571318026554892e-06,4.652498367346269222e-06,4.749425416665983553e-06,4.846352465985697883e-06,4.943279515305412213e-06,5.040206564625126544e-06,5.137133613944840874e-06,5.234060663264555204e-06,5.330987712584269535e-06,5.427914761903983865e-06,5.524841811223698195e-06,5.621768860543412526e-06,5.718695909863126856e-06,5.815622959182841187e-06,5.912550008502555517e-06,6.009477057822269847e-06,6.106404107141984178e-06 +0.000000000000000000e+00,1.005760313230348544e-07,2.011520626460697087e-07,3.017280939691045366e-07,4.023041252921393645e-07,5.028801566151741924e-07,6.034561879382090732e-07,7.040322192612439541e-07,8.046082505842788349e-07,9.051842819073137157e-07,1.005760313230348597e-06,1.106336344553383583e-06,1.206912375876418570e-06,1.307488407199453557e-06,1.408064438522488543e-06,1.508640469845523530e-06,1.609216501168558517e-06,1.709792532491593504e-06,1.810368563814628490e-06,1.910944595137663477e-06,2.011520626460698464e-06,2.112096657783733450e-06,2.212672689106768437e-06,2.313248720429803424e-06,2.413824751752838410e-06,2.514400783075873397e-06,2.614976814398908384e-06,2.715552845721943371e-06,2.816128877044978357e-06,2.916704908368013344e-06,3.017280939691048331e-06,3.117856971014083317e-06,3.218433002337118304e-06,3.319009033660153291e-06,3.419585064983188278e-06,3.520161096306223264e-06,3.620737127629258251e-06,3.721313158952293238e-06,3.821889190275327801e-06,3.922465221598361941e-06,4.023041252921396080e-06,4.123617284244430220e-06,4.224193315567464360e-06,4.324769346890498499e-06,4.425345378213532639e-06,4.525921409536566779e-06,4.626497440859600918e-06,4.727073472182635058e-06,4.827649503505669198e-06,4.928225534828703337e-06,5.028801566151737477e-06,5.129377597474771617e-06,5.229953628797805756e-06,5.330529660120839896e-06,5.431105691443874036e-06,5.531681722766908175e-06,5.632257754089942315e-06,5.732833785412976455e-06,5.833409816736010594e-06,5.933985848059044734e-06,6.034561879382078874e-06,6.135137910705113013e-06,6.235713942028147153e-06,6.336289973351181293e-06 +0.000000000000000000e+00,9.949745230273633109e-08,1.989949046054726622e-07,2.984923569082089933e-07,3.979898092109453244e-07,4.974872615136816025e-07,5.969847138164178807e-07,6.964821661191541588e-07,7.959796184218904370e-07,8.954770707246267151e-07,9.949745230273629933e-07,1.094471975330099271e-06,1.193969427632835550e-06,1.293466879935571828e-06,1.392964332238308106e-06,1.492461784541044384e-06,1.591959236843780662e-06,1.691456689146516940e-06,1.790954141449253218e-06,1.890451593751989497e-06,1.989949046054725563e-06,2.089446498357461629e-06,2.188943950660197696e-06,2.288441402962933762e-06,2.387938855265669829e-06,2.487436307568405895e-06,2.586933759871141961e-06,2.686431212173878028e-06,2.785928664476614094e-06,2.885426116779350161e-06,2.984923569082086227e-06,3.084421021384822293e-06,3.183918473687558360e-06,3.283415925990294426e-06,3.382913378293030493e-06,3.482410830595766559e-06,3.581908282898502625e-06,3.681405735201238692e-06,3.780903187503974758e-06,3.880400639806710401e-06,3.979898092109446044e-06,4.079395544412181687e-06,4.178892996714917330e-06,4.278390449017652973e-06,4.377887901320388615e-06,4.477385353623124258e-06,4.576882805925859901e-06,4.676380258228595544e-06,4.775877710531331187e-06,4.875375162834066830e-06,4.974872615136802473e-06,5.074370067439538116e-06,5.173867519742273758e-06,5.273364972045009401e-06,5.372862424347745044e-06,5.472359876650480687e-06,5.571857328953216330e-06,5.671354781255951973e-06,5.770852233558687616e-06,5.870349685861423259e-06,5.969847138164158901e-06,6.069344590466894544e-06,6.168842042769630187e-06,6.268339495072365830e-06 +0.000000000000000000e+00,9.692704931971437006e-08,1.938540986394287401e-07,2.907811479591430969e-07,3.877081972788574273e-07,4.846352465985717577e-07,5.815622959182860880e-07,6.784893452380004184e-07,7.754163945577147487e-07,8.723434438774290791e-07,9.692704931971433035e-07,1.066197542516857634e-06,1.163124591836571964e-06,1.260051641156286295e-06,1.356978690476000625e-06,1.453905739795714955e-06,1.550832789115429286e-06,1.647759838435143616e-06,1.744686887754857946e-06,1.841613937074572277e-06,1.938540986394286607e-06,2.035468035714000937e-06,2.132395085033715268e-06,2.229322134353429598e-06,2.326249183673143929e-06,2.423176232992858259e-06,2.520103282312572589e-06,2.617030331632286920e-06,2.713957380952001250e-06,2.810884430271715580e-06,2.907811479591429911e-06,3.004738528911144241e-06,3.101665578230858571e-06,3.198592627550572902e-06,3.295519676870287232e-06,3.392446726190001562e-06,3.489373775509715893e-06,3.586300824829430223e-06,3.683227874149144553e-06,3.780154923468858884e-06,3.877081972788573214e-06,3.974009022108287545e-06,4.070936071428001875e-06,4.167863120747716205e-06,4.264790170067430536e-06,4.361717219387144866e-06,4.458644268706859196e-06,4.555571318026573527e-06,4.652498367346287857e-06,4.749425416666002187e-06,4.846352465985716518e-06,4.943279515305430848e-06,5.040206564625145178e-06,5.137133613944859509e-06,5.234060663264573839e-06,5.330987712584288170e-06,5.427914761904002500e-06,5.524841811223716830e-06,5.621768860543431161e-06,5.718695909863145491e-06,5.815622959182859821e-06,5.912550008502574152e-06,6.009477057822288482e-06,6.106404107142002812e-06 +0.000000000000000000e+00,1.034608652599293338e-07,2.069217305198586676e-07,3.103825957797880015e-07,4.138434610397173353e-07,5.173043262996467220e-07,6.207651915595761088e-07,7.242260568195054956e-07,8.276869220794348823e-07,9.311477873393642691e-07,1.034608652599293656e-06,1.138069517859223043e-06,1.241530383119152429e-06,1.344991248379081816e-06,1.448452113639011203e-06,1.551912978898940590e-06,1.655373844158869976e-06,1.758834709418799363e-06,1.862295574678728750e-06,1.965756439938658137e-06,2.069217305198587735e-06,2.172678170458517334e-06,2.276139035718446932e-06,2.379599900978376531e-06,2.483060766238306129e-06,2.586521631498235728e-06,2.689982496758165326e-06,2.793443362018094925e-06,2.896904227278024523e-06,3.000365092537954122e-06,3.103825957797883720e-06,3.207286823057813319e-06,3.310747688317742917e-06,3.414208553577672516e-06,3.517669418837602114e-06,3.621130284097531713e-06,3.724591149357461311e-06,3.828052014617390910e-06,3.931512879877320509e-06,4.034973745137250107e-06,4.138434610397179706e-06,4.241895475657109304e-06,4.345356340917038903e-06,4.448817206176968501e-06,4.552278071436898100e-06,4.655738936696827698e-06,4.759199801956757297e-06,4.862660667216686895e-06,4.966121532476616494e-06,5.069582397736546092e-06,5.173043262996475691e-06,5.276504128256405289e-06,5.379964993516334888e-06,5.483425858776264486e-06,5.586886724036194085e-06,5.690347589296123683e-06,5.793808454556053282e-06,5.897269319815982880e-06,6.000730185075912479e-06,6.104191050335842077e-06,6.207651915595771676e-06,6.311112780855701274e-06,6.414573646115630873e-06,6.518034511375560471e-06 +0.000000000000000000e+00,1.019459394559172264e-07,2.038918789118344529e-07,3.058378183677517058e-07,4.077837578236689587e-07,5.097296972795862116e-07,6.116756367355034116e-07,7.136215761914206115e-07,8.155675156473378115e-07,9.175134551032550115e-07,1.019459394559172211e-06,1.121405334015089517e-06,1.223351273471006823e-06,1.325297212926924129e-06,1.427243152382841435e-06,1.529189091838758741e-06,1.631135031294676047e-06,1.733080970750593352e-06,1.835026910206510658e-06,1.936972849662427964e-06,2.038918789118345270e-06,2.140864728574262576e-06,2.242810668030179882e-06,2.344756607486097187e-06,2.446702546942014493e-06,2.548648486397931799e-06,2.650594425853849105e-06,2.752540365309766411e-06,2.854486304765683717e-06,2.956432244221601023e-06,3.058378183677518328e-06,3.160324123133435634e-06,3.262270062589352940e-06,3.364216002045270246e-06,3.466161941501187552e-06,3.568107880957104858e-06,3.670053820413022163e-06,3.771999759868939469e-06,3.873945699324856775e-06,3.975891638780773657e-06,4.077837578236690540e-06,4.179783517692607422e-06,4.281729457148524304e-06,4.383675396604441187e-06,4.485621336060358069e-06,4.587567275516274951e-06,4.689513214972191834e-06,4.791459154428108716e-06,4.893405093884025598e-06,4.995351033339942481e-06,5.097296972795859363e-06,5.199242912251776245e-06,5.301188851707693128e-06,5.403134791163610010e-06,5.505080730619526892e-06,5.607026670075443775e-06,5.708972609531360657e-06,5.810918548987277539e-06,5.912864488443194422e-06,6.014810427899111304e-06,6.116756367355028186e-06,6.218702306810945069e-06,6.320648246266861951e-06,6.422594185722778833e-06 +0.000000000000000000e+00,9.931185988835142706e-08,1.986237197767028541e-07,2.979355796650543076e-07,3.972474395534057612e-07,4.965592994417572147e-07,5.958711593301086153e-07,6.951830192184600159e-07,7.944948791068114165e-07,8.938067389951628171e-07,9.931185988835142177e-07,1.092430458771865618e-06,1.191742318660217019e-06,1.291054178548568419e-06,1.390366038436919820e-06,1.489677898325271221e-06,1.588989758213622621e-06,1.688301618101974022e-06,1.787613477990325422e-06,1.886925337878676823e-06,1.986237197767028012e-06,2.085549057655379201e-06,2.184860917543730389e-06,2.284172777432081578e-06,2.383484637320432767e-06,2.482796497208783956e-06,2.582108357097135145e-06,2.681420216985486334e-06,2.780732076873837522e-06,2.880043936762188711e-06,2.979355796650539900e-06,3.078667656538891089e-06,3.177979516427242278e-06,3.277291376315593467e-06,3.376603236203944655e-06,3.475915096092295844e-06,3.575226955980647033e-06,3.674538815868998222e-06,3.773850675757349411e-06,3.873162535645700600e-06,3.972474395534051788e-06,4.071786255422402977e-06,4.171098115310754166e-06,4.270409975199105355e-06,4.369721835087456544e-06,4.469033694975807733e-06,4.568345554864158921e-06,4.667657414752510110e-06,4.766969274640861299e-06,4.866281134529212488e-06,4.965592994417563677e-06,5.064904854305914866e-06,5.164216714194266054e-06,5.263528574082617243e-06,5.362840433970968432e-06,5.462152293859319621e-06,5.561464153747670810e-06,5.660776013636021999e-06,5.760087873524373187e-06,5.859399733412724376e-06,5.958711593301075565e-06,6.058023453189426754e-06,6.157335313077777943e-06,6.256647172966129132e-06 +0.000000000000000000e+00,1.034608652599303397e-07,2.069217305198606793e-07,3.103825957797910190e-07,4.138434610397213587e-07,5.173043262996516984e-07,6.207651915595820380e-07,7.242260568195123777e-07,8.276869220794427174e-07,9.311477873393730570e-07,1.034608652599303397e-06,1.138069517859233631e-06,1.241530383119163864e-06,1.344991248379094098e-06,1.448452113639024332e-06,1.551912978898954566e-06,1.655373844158884799e-06,1.758834709418815033e-06,1.862295574678745267e-06,1.965756439938675501e-06,2.069217305198605523e-06,2.172678170458535545e-06,2.276139035718465567e-06,2.379599900978395589e-06,2.483060766238325611e-06,2.586521631498255633e-06,2.689982496758185655e-06,2.793443362018115677e-06,2.896904227278045699e-06,3.000365092537975721e-06,3.103825957797905743e-06,3.207286823057835765e-06,3.310747688317765787e-06,3.414208553577695809e-06,3.517669418837625831e-06,3.621130284097555853e-06,3.724591149357485875e-06,3.828052014617415474e-06,3.931512879877345072e-06,4.034973745137274671e-06,4.138434610397204270e-06,4.241895475657133868e-06,4.345356340917063467e-06,4.448817206176993065e-06,4.552278071436922664e-06,4.655738936696852262e-06,4.759199801956781861e-06,4.862660667216711459e-06,4.966121532476641058e-06,5.069582397736570656e-06,5.173043262996500255e-06,5.276504128256429853e-06,5.379964993516359452e-06,5.483425858776289050e-06,5.586886724036218649e-06,5.690347589296148247e-06,5.793808454556077846e-06,5.897269319816007444e-06,6.000730185075937043e-06,6.104191050335866641e-06,6.207651915595796240e-06,6.311112780855725838e-06,6.414573646115655437e-06,6.518034511375585035e-06 +0.000000000000000000e+00,1.019459394559178220e-07,2.038918789118356440e-07,3.058378183677534528e-07,4.077837578236712351e-07,5.097296972795890703e-07,6.116756367355069056e-07,7.136215761914247408e-07,8.155675156473425761e-07,9.175134551032604113e-07,1.019459394559178141e-06,1.121405334015095870e-06,1.223351273471013599e-06,1.325297212926931329e-06,1.427243152382849058e-06,1.529189091838766787e-06,1.631135031294684517e-06,1.733080970750602246e-06,1.835026910206519976e-06,1.936972849662437705e-06,2.038918789118355434e-06,2.140864728574273164e-06,2.242810668030190893e-06,2.344756607486108622e-06,2.446702546942026352e-06,2.548648486397944081e-06,2.650594425853861810e-06,2.752540365309779540e-06,2.854486304765697269e-06,2.956432244221614999e-06,3.058378183677532728e-06,3.160324123133450457e-06,3.262270062589368187e-06,3.364216002045285916e-06,3.466161941501203645e-06,3.568107880957121375e-06,3.670053820413039104e-06,3.771999759868956833e-06,3.873945699324874563e-06,3.975891638780792292e-06,4.077837578236710022e-06,4.179783517692627751e-06,4.281729457148545480e-06,4.383675396604463210e-06,4.485621336060380939e-06,4.587567275516298668e-06,4.689513214972216398e-06,4.791459154428134127e-06,4.893405093884051856e-06,4.995351033339969586e-06,5.097296972795887315e-06,5.199242912251805045e-06,5.301188851707722774e-06,5.403134791163640503e-06,5.505080730619558233e-06,5.607026670075475962e-06,5.708972609531393691e-06,5.810918548987311421e-06,5.912864488443229150e-06,6.014810427899146879e-06,6.116756367355064609e-06,6.218702306810982338e-06,6.320648246266900068e-06,6.422594185722817797e-06 +0.000000000000000000e+00,9.931185988835305495e-08,1.986237197767061099e-07,2.979355796650591781e-07,3.972474395534122727e-07,4.965592994417653674e-07,5.958711593301184621e-07,6.951830192184715567e-07,7.944948791068246514e-07,8.938067389951777460e-07,9.931185988835309466e-07,1.092430458771884253e-06,1.191742318660237559e-06,1.291054178548590866e-06,1.390366038436944172e-06,1.489677898325297479e-06,1.588989758213650785e-06,1.688301618102004091e-06,1.787613477990357398e-06,1.886925337878710704e-06,1.986237197767064011e-06,2.085549057655417317e-06,2.184860917543770624e-06,2.284172777432123930e-06,2.383484637320477236e-06,2.482796497208830543e-06,2.582108357097183849e-06,2.681420216985537156e-06,2.780732076873890462e-06,2.880043936762243768e-06,2.979355796650597075e-06,3.078667656538950381e-06,3.177979516427303688e-06,3.277291376315656994e-06,3.376603236204010301e-06,3.475915096092363607e-06,3.575226955980716913e-06,3.674538815869070220e-06,3.773850675757423526e-06,3.873162535645776833e-06,3.972474395534130563e-06,4.071786255422484292e-06,4.171098115310838022e-06,4.270409975199191752e-06,4.369721835087545482e-06,4.469033694975899212e-06,4.568345554864252942e-06,4.667657414752606672e-06,4.766969274640960402e-06,4.866281134529314132e-06,4.965592994417667862e-06,5.064904854306021592e-06,5.164216714194375322e-06,5.263528574082729052e-06,5.362840433971082782e-06,5.462152293859436511e-06,5.561464153747790241e-06,5.660776013636143971e-06,5.760087873524497701e-06,5.859399733412851431e-06,5.958711593301205161e-06,6.058023453189558891e-06,6.157335313077912621e-06,6.256647172966266351e-06 +0.000000000000000000e+00,1.066862034588683219e-07,2.133724069177366437e-07,3.200586103766049391e-07,4.267448138354732345e-07,5.334310172943415299e-07,6.401172207532098782e-07,7.468034242120782265e-07,8.534896276709465749e-07,9.601758311298148173e-07,1.066862034588683060e-06,1.173548238047551302e-06,1.280234441506419545e-06,1.386920644965287787e-06,1.493606848424156030e-06,1.600293051883024272e-06,1.706979255341892514e-06,1.813665458800760757e-06,1.920351662259628788e-06,2.027037865718496818e-06,2.133724069177364849e-06,2.240410272636232880e-06,2.347096476095100910e-06,2.453782679553968941e-06,2.560468883012836972e-06,2.667155086471705002e-06,2.773841289930573033e-06,2.880527493389441064e-06,2.987213696848309095e-06,3.093899900307177125e-06,3.200586103766045156e-06,3.307272307224913187e-06,3.413958510683781217e-06,3.520644714142649248e-06,3.627330917601517279e-06,3.734017121060385309e-06,3.840703324519253340e-06,3.947389527978121794e-06,4.054075731436990248e-06,4.160761934895858703e-06,4.267448138354727157e-06,4.374134341813595611e-06,4.480820545272464065e-06,4.587506748731332519e-06,4.694192952190200974e-06,4.800879155649069428e-06,4.907565359107937882e-06,5.014251562566806336e-06,5.120937766025674791e-06,5.227623969484543245e-06,5.334310172943411699e-06,5.440996376402280153e-06,5.547682579861148607e-06,5.654368783320017062e-06,5.761054986778885516e-06,5.867741190237753970e-06,5.974427393696622424e-06,6.081113597155490878e-06,6.187799800614359333e-06,6.294486004073227787e-06,6.401172207532096241e-06,6.507858410990964695e-06,6.614544614449833149e-06,6.721230817908701604e-06 +0.000000000000000000e+00,1.050581593221398990e-07,2.101163186442797980e-07,3.151744779664197235e-07,4.202326372885596490e-07,5.252907966106995744e-07,6.303489559328394470e-07,7.354071152549793195e-07,8.404652745771191921e-07,9.455234338992590646e-07,1.050581593221398937e-06,1.155639752543538704e-06,1.260697911865678470e-06,1.365756071187818237e-06,1.470814230509958004e-06,1.575872389832097770e-06,1.680930549154237537e-06,1.785988708476377304e-06,1.891046867798517070e-06,1.996105027120656837e-06,2.101163186442796604e-06,2.206221345764936370e-06,2.311279505087076137e-06,2.416337664409215904e-06,2.521395823731355670e-06,2.626453983053495437e-06,2.731512142375635204e-06,2.836570301697774970e-06,2.941628461019914737e-06,3.046686620342054504e-06,3.151744779664194270e-06,3.256802938986334037e-06,3.361861098308473804e-06,3.466919257630613570e-06,3.571977416952753337e-06,3.677035576274893104e-06,3.782093735597032870e-06,3.887151894919172213e-06,3.992210054241311133e-06,4.097268213563450053e-06,4.202326372885588972e-06,4.307384532207727892e-06,4.412442691529866812e-06,4.517500850852005731e-06,4.622559010174144651e-06,4.727617169496283570e-06,4.832675328818422490e-06,4.937733488140561410e-06,5.042791647462700329e-06,5.147849806784839249e-06,5.252907966106978169e-06,5.357966125429117088e-06,5.463024284751256008e-06,5.568082444073394927e-06,5.673140603395533847e-06,5.778198762717672767e-06,5.883256922039811686e-06,5.988315081361950606e-06,6.093373240684089526e-06,6.198431400006228445e-06,6.303489559328367365e-06,6.408547718650506284e-06,6.513605877972645204e-06,6.618664037294784124e-06 +0.000000000000000000e+00,1.020022486118177497e-07,2.040044972236354994e-07,3.060067458354532358e-07,4.080089944472709458e-07,5.100112430590886028e-07,6.120134916709062599e-07,7.140157402827239169e-07,8.160179888945415740e-07,9.180202375063592310e-07,1.020022486118176782e-06,1.122024734729994333e-06,1.224026983341811884e-06,1.326029231953629436e-06,1.428031480565446987e-06,1.530033729177264538e-06,1.632035977789082089e-06,1.734038226400899640e-06,1.836040475012717191e-06,1.938042723624534743e-06,2.040044972236352294e-06,2.142047220848169845e-06,2.244049469459987396e-06,2.346051718071804947e-06,2.448053966683622498e-06,2.550056215295440050e-06,2.652058463907257601e-06,2.754060712519075152e-06,2.856062961130892703e-06,2.958065209742710254e-06,3.060067458354527805e-06,3.162069706966345357e-06,3.264071955578162908e-06,3.366074204189980459e-06,3.468076452801798010e-06,3.570078701413615561e-06,3.672080950025433112e-06,3.774083198637250664e-06,3.876085447249068638e-06,3.978087695860886189e-06,4.080089944472703741e-06,4.182092193084521292e-06,4.284094441696338843e-06,4.386096690308156394e-06,4.488098938919973945e-06,4.590101187531791496e-06,4.692103436143609048e-06,4.794105684755426599e-06,4.896107933367244150e-06,4.998110181979061701e-06,5.100112430590879252e-06,5.202114679202696803e-06,5.304116927814514355e-06,5.406119176426331906e-06,5.508121425038149457e-06,5.610123673649967008e-06,5.712125922261784559e-06,5.814128170873602110e-06,5.916130419485419661e-06,6.018132668097237213e-06,6.120134916709054764e-06,6.222137165320872315e-06,6.324139413932689866e-06,6.426141662544507417e-06 +0.000000000000000000e+00,1.066862034588703600e-07,2.133724069177407201e-07,3.200586103766110801e-07,4.267448138354814401e-07,5.334310172943518002e-07,6.401172207532221602e-07,7.468034242120925202e-07,8.534896276709628802e-07,9.601758311298332403e-07,1.066862034588703600e-06,1.173548238047573960e-06,1.280234441506444320e-06,1.386920644965314680e-06,1.493606848424185040e-06,1.600293051883055400e-06,1.706979255341925760e-06,1.813665458800796121e-06,1.920351662259666481e-06,2.027037865718537052e-06,2.133724069177407624e-06,2.240410272636278196e-06,2.347096476095148768e-06,2.453782679554019340e-06,2.560468883012889911e-06,2.667155086471760483e-06,2.773841289930631055e-06,2.880527493389501627e-06,2.987213696848372198e-06,3.093899900307242770e-06,3.200586103766113342e-06,3.307272307224983914e-06,3.413958510683854486e-06,3.520644714142725057e-06,3.627330917601595629e-06,3.734017121060466201e-06,3.840703324519337196e-06,3.947389527978208192e-06,4.054075731437079187e-06,4.160761934895950182e-06,4.267448138354821178e-06,4.374134341813692173e-06,4.480820545272563168e-06,4.587506748731434163e-06,4.694192952190305159e-06,4.800879155649176154e-06,4.907565359108047149e-06,5.014251562566918145e-06,5.120937766025789140e-06,5.227623969484660135e-06,5.334310172943531131e-06,5.440996376402402126e-06,5.547682579861273121e-06,5.654368783320144116e-06,5.761054986779015112e-06,5.867741190237886107e-06,5.974427393696757102e-06,6.081113597155628098e-06,6.187799800614499093e-06,6.294486004073370088e-06,6.401172207532241084e-06,6.507858410991112079e-06,6.614544614449983074e-06,6.721230817908854070e-06 +0.000000000000000000e+00,1.050581593221412887e-07,2.101163186442825773e-07,3.151744779664238528e-07,4.202326372885651017e-07,5.252907966107063507e-07,6.303489559328475997e-07,7.354071152549888486e-07,8.404652745771300976e-07,9.455234338992713466e-07,1.050581593221412490e-06,1.155639752543553527e-06,1.260697911865694564e-06,1.365756071187835601e-06,1.470814230509976638e-06,1.575872389832117676e-06,1.680930549154258713e-06,1.785988708476399750e-06,1.891046867798540787e-06,1.996105027120681825e-06,2.101163186442822862e-06,2.206221345764963899e-06,2.311279505087104936e-06,2.416337664409245973e-06,2.521395823731387011e-06,2.626453983053528048e-06,2.731512142375669085e-06,2.836570301697810122e-06,2.941628461019951159e-06,3.046686620342092197e-06,3.151744779664233234e-06,3.256802938986374271e-06,3.361861098308515308e-06,3.466919257630656345e-06,3.571977416952797383e-06,3.677035576274938420e-06,3.782093735597079457e-06,3.887151894919220494e-06,3.992210054241361955e-06,4.097268213563503416e-06,4.202326372885644876e-06,4.307384532207786337e-06,4.412442691529927798e-06,4.517500850852069259e-06,4.622559010174210719e-06,4.727617169496352180e-06,4.832675328818493641e-06,4.937733488140635102e-06,5.042791647462776562e-06,5.147849806784918023e-06,5.252907966107059484e-06,5.357966125429200944e-06,5.463024284751342405e-06,5.568082444073483866e-06,5.673140603395625327e-06,5.778198762717766787e-06,5.883256922039908248e-06,5.988315081362049709e-06,6.093373240684191169e-06,6.198431400006332630e-06,6.303489559328474091e-06,6.408547718650615552e-06,6.513605877972757012e-06,6.618664037294898473e-06 +0.000000000000000000e+00,1.020022486118209261e-07,2.040044972236418521e-07,3.060067458354627649e-07,4.080089944472836513e-07,5.100112430591044847e-07,6.120134916709253181e-07,7.140157402827461515e-07,8.160179888945669850e-07,9.180202375063878184e-07,1.020022486118208546e-06,1.122024734730029273e-06,1.224026983341850001e-06,1.326029231953670729e-06,1.428031480565491456e-06,1.530033729177312184e-06,1.632035977789132911e-06,1.734038226400953639e-06,1.836040475012774366e-06,1.938042723624595305e-06,2.040044972236416245e-06,2.142047220848237184e-06,2.244049469460058123e-06,2.346051718071879063e-06,2.448053966683700002e-06,2.550056215295520941e-06,2.652058463907341881e-06,2.754060712519162820e-06,2.856062961130983759e-06,2.958065209742804698e-06,3.060067458354625638e-06,3.162069706966446577e-06,3.264071955578267516e-06,3.366074204190088456e-06,3.468076452801909395e-06,3.570078701413730334e-06,3.672080950025551273e-06,3.774083198637372213e-06,3.876085447249193152e-06,3.978087695861014091e-06,4.080089944472835031e-06,4.182092193084655970e-06,4.284094441696476909e-06,4.386096690308297849e-06,4.488098938920118788e-06,4.590101187531939727e-06,4.692103436143760666e-06,4.794105684755581606e-06,4.896107933367402545e-06,4.998110181979223484e-06,5.100112430591044424e-06,5.202114679202865363e-06,5.304116927814686302e-06,5.406119176426507241e-06,5.508121425038328181e-06,5.610123673650149120e-06,5.712125922261970059e-06,5.814128170873790999e-06,5.916130419485611938e-06,6.018132668097432877e-06,6.120134916709253817e-06,6.222137165321074756e-06,6.324139413932895695e-06,6.426141662544716634e-06 +0.000000000000000000e+00,1.099326821215752811e-07,2.198653642431505623e-07,3.297980463647258302e-07,4.397307284863010716e-07,5.496634106078763130e-07,6.595960927294515545e-07,7.695287748510267959e-07,8.794614569726020373e-07,9.893941390941771729e-07,1.099326821215752414e-06,1.209259503337327656e-06,1.319192185458902897e-06,1.429124867580478139e-06,1.539057549702053380e-06,1.648990231823628621e-06,1.758922913945203863e-06,1.868855596066779104e-06,1.978788278188354346e-06,2.088720960309929587e-06,2.198653642431504829e-06,2.308586324553080070e-06,2.418519006674655311e-06,2.528451688796230553e-06,2.638384370917805794e-06,2.748317053039381036e-06,2.858249735160956277e-06,2.968182417282531519e-06,3.078115099404106760e-06,3.188047781525682001e-06,3.297980463647257243e-06,3.407913145768832484e-06,3.517845827890407726e-06,3.627778510011982967e-06,3.737711192133558209e-06,3.847643874255133874e-06,3.957576556376709538e-06,4.067509238498285203e-06,4.177441920619860868e-06,4.287374602741436533e-06,4.397307284863012198e-06,4.507239966984587863e-06,4.617172649106163528e-06,4.727105331227739193e-06,4.837038013349314858e-06,4.946970695470890523e-06,5.056903377592466188e-06,5.166836059714041853e-06,5.276768741835617518e-06,5.386701423957193183e-06,5.496634106078768848e-06,5.606566788200344513e-06,5.716499470321920178e-06,5.826432152443495843e-06,5.936364834565071507e-06,6.046297516686647172e-06,6.156230198808222837e-06,6.266162880929798502e-06,6.376095563051374167e-06,6.486028245172949832e-06,6.595960927294525497e-06,6.705893609416101162e-06,6.815826291537676827e-06,6.925758973659252492e-06 +0.000000000000000000e+00,1.083193061286138834e-07,2.166386122572277667e-07,3.249579183858416501e-07,4.332772245144555334e-07,5.415965306430694697e-07,6.499158367716834060e-07,7.582351429002973423e-07,8.665544490289112786e-07,9.748737551575252149e-07,1.083193061286139151e-06,1.191512367414753087e-06,1.299831673543367024e-06,1.408150979671980960e-06,1.516470285800594896e-06,1.624789591929208833e-06,1.733108898057822769e-06,1.841428204186436705e-06,1.949747510315050430e-06,2.058066816443664154e-06,2.166386122572277879e-06,2.274705428700891603e-06,2.383024734829505328e-06,2.491344040958119052e-06,2.599663347086732777e-06,2.707982653215346502e-06,2.816301959343960226e-06,2.924621265472573951e-06,3.032940571601187675e-06,3.141259877729801400e-06,3.249579183858415124e-06,3.357898489987028849e-06,3.466217796115642573e-06,3.574537102244256298e-06,3.682856408372870022e-06,3.791175714501483747e-06,3.899495020630097471e-06,4.007814326758711619e-06,4.116133632887325768e-06,4.224452939015939916e-06,4.332772245144554064e-06,4.441091551273168212e-06,4.549410857401782360e-06,4.657730163530396508e-06,4.766049469659010656e-06,4.874368775787624804e-06,4.982688081916238952e-06,5.091007388044853100e-06,5.199326694173467248e-06,5.307646000302081396e-06,5.415965306430695544e-06,5.524284612559309692e-06,5.632603918687923840e-06,5.740923224816537988e-06,5.849242530945152136e-06,5.957561837073766284e-06,6.065881143202380432e-06,6.174200449330994581e-06,6.282519755459608729e-06,6.390839061588222877e-06,6.499158367716837025e-06,6.607477673845451173e-06,6.715796979974065321e-06,6.824116286102679469e-06 +0.000000000000000000e+00,1.046952075981383726e-07,2.093904151962767452e-07,3.140856227944151310e-07,4.187808303925535433e-07,5.234760379906920085e-07,6.281712455888304738e-07,7.328664531869689390e-07,8.375616607851074042e-07,9.422568683832458695e-07,1.046952075981384441e-06,1.151647283579523012e-06,1.256342491177661583e-06,1.361037698775800154e-06,1.465732906373938725e-06,1.570428113972077296e-06,1.675123321570215867e-06,1.779818529168354438e-06,1.884513736766493009e-06,1.989208944364631369e-06,2.093904151962769728e-06,2.198599359560908088e-06,2.303294567159046447e-06,2.407989774757184806e-06,2.512684982355323166e-06,2.617380189953461525e-06,2.722075397551599884e-06,2.826770605149738244e-06,2.931465812747876603e-06,3.036161020346014962e-06,3.140856227944153322e-06,3.245551435542291681e-06,3.350246643140430040e-06,3.454941850738568400e-06,3.559637058336706759e-06,3.664332265934845119e-06,3.769027473532983478e-06,3.873722681131121837e-06,3.978417888729260197e-06,4.083113096327398556e-06,4.187808303925536915e-06,4.292503511523675275e-06,4.397198719121813634e-06,4.501893926719951993e-06,4.606589134318090353e-06,4.711284341916228712e-06,4.815979549514367071e-06,4.920674757112505431e-06,5.025369964710643790e-06,5.130065172308782149e-06,5.234760379906920509e-06,5.339455587505058868e-06,5.444150795103197228e-06,5.548846002701335587e-06,5.653541210299473946e-06,5.758236417897612306e-06,5.862931625495750665e-06,5.967626833093889024e-06,6.072322040692027384e-06,6.177017248290165743e-06,6.281712455888304102e-06,6.386407663486442462e-06,6.491102871084580821e-06,6.595798078682719180e-06 +0.000000000000000000e+00,1.099326821215804824e-07,2.198653642431609649e-07,3.297980463647414473e-07,4.397307284863219298e-07,5.496634106079024652e-07,6.595960927294830005e-07,7.695287748510635359e-07,8.794614569726440713e-07,9.893941390942246067e-07,1.099326821215805142e-06,1.209259503337385677e-06,1.319192185458966213e-06,1.429124867580546748e-06,1.539057549702127284e-06,1.648990231823707819e-06,1.758922913945288354e-06,1.868855596066868890e-06,1.978788278188449213e-06,2.088720960310029537e-06,2.198653642431609861e-06,2.308586324553190184e-06,2.418519006674770508e-06,2.528451688796350832e-06,2.638384370917931155e-06,2.748317053039511479e-06,2.858249735161091802e-06,2.968182417282672126e-06,3.078115099404252450e-06,3.188047781525832773e-06,3.297980463647413097e-06,3.407913145768993421e-06,3.517845827890573744e-06,3.627778510012154068e-06,3.737711192133734391e-06,3.847643874255315139e-06,3.957576556376895886e-06,4.067509238498476633e-06,4.177441920620057380e-06,4.287374602741638127e-06,4.397307284863218874e-06,4.507239966984799621e-06,4.617172649106380369e-06,4.727105331227961116e-06,4.837038013349541863e-06,4.946970695471122610e-06,5.056903377592703357e-06,5.166836059714284104e-06,5.276768741835864851e-06,5.386701423957445599e-06,5.496634106079026346e-06,5.606566788200607093e-06,5.716499470322187840e-06,5.826432152443768587e-06,5.936364834565349334e-06,6.046297516686930081e-06,6.156230198808510829e-06,6.266162880930091576e-06,6.376095563051672323e-06,6.486028245173253070e-06,6.595960927294833817e-06,6.705893609416414564e-06,6.815826291537995311e-06,6.925758973659576059e-06 +0.000000000000000000e+00,1.083193061286171391e-07,2.166386122572342783e-07,3.249579183858514439e-07,4.332772245144686095e-07,5.415965306430857751e-07,6.499158367717028878e-07,7.582351429003200004e-07,8.665544490289371131e-07,9.748737551575542258e-07,1.083193061286171338e-06,1.191512367414788451e-06,1.299831673543405564e-06,1.408150979672022676e-06,1.516470285800639789e-06,1.624789591929256902e-06,1.733108898057874014e-06,1.841428204186491127e-06,1.949747510315108028e-06,2.058066816443724717e-06,2.166386122572341406e-06,2.274705428700958095e-06,2.383024734829574785e-06,2.491344040958191474e-06,2.599663347086808163e-06,2.707982653215424852e-06,2.816301959344041541e-06,2.924621265472658230e-06,3.032940571601274920e-06,3.141259877729891609e-06,3.249579183858508298e-06,3.357898489987124987e-06,3.466217796115741676e-06,3.574537102244358365e-06,3.682856408372975054e-06,3.791175714501591744e-06,3.899495020630208433e-06,4.007814326758825122e-06,4.116133632887441811e-06,4.224452939016058500e-06,4.332772245144675189e-06,4.441091551273291879e-06,4.549410857401908568e-06,4.657730163530525257e-06,4.766049469659141946e-06,4.874368775787758635e-06,4.982688081916375324e-06,5.091007388044992013e-06,5.199326694173608703e-06,5.307646000302225392e-06,5.415965306430842081e-06,5.524284612559458770e-06,5.632603918688075459e-06,5.740923224816692148e-06,5.849242530945308837e-06,5.957561837073925527e-06,6.065881143202542216e-06,6.174200449331158905e-06,6.282519755459775594e-06,6.390839061588392283e-06,6.499158367717008972e-06,6.607477673845625662e-06,6.715796979974242351e-06,6.824116286102859040e-06 +0.000000000000000000e+00,1.046952075981428063e-07,2.093904151962856126e-07,3.140856227944284188e-07,4.187808303925712251e-07,5.234760379907140314e-07,6.281712455888568377e-07,7.328664531869996439e-07,8.375616607851424502e-07,9.422568683832852565e-07,1.046952075981428063e-06,1.151647283579570869e-06,1.256342491177713675e-06,1.361037698775856482e-06,1.465732906373999288e-06,1.570428113972142094e-06,1.675123321570284900e-06,1.779818529168427707e-06,1.884513736766570513e-06,1.989208944364713531e-06,2.093904151962856549e-06,2.198599359560999567e-06,2.303294567159142585e-06,2.407989774757285603e-06,2.512684982355428621e-06,2.617380189953571639e-06,2.722075397551714657e-06,2.826770605149857675e-06,2.931465812748000693e-06,3.036161020346143711e-06,3.140856227944286729e-06,3.245551435542429747e-06,3.350246643140572766e-06,3.454941850738715784e-06,3.559637058336858802e-06,3.664332265935001820e-06,3.769027473533144838e-06,3.873722681131287856e-06,3.978417888729430450e-06,4.083113096327573045e-06,4.187808303925715639e-06,4.292503511523858234e-06,4.397198719122000828e-06,4.501893926720143423e-06,4.606589134318286017e-06,4.711284341916428612e-06,4.815979549514571206e-06,4.920674757112713801e-06,5.025369964710856395e-06,5.130065172308998990e-06,5.234760379907141584e-06,5.339455587505284179e-06,5.444150795103426773e-06,5.548846002701569368e-06,5.653541210299711963e-06,5.758236417897854557e-06,5.862931625495997152e-06,5.967626833094139746e-06,6.072322040692282341e-06,6.177017248290424935e-06,6.281712455888567530e-06,6.386407663486710124e-06,6.491102871084852719e-06,6.595798078682995313e-06 +0.000000000000000000e+00,1.130631278945828975e-07,2.261262557891657950e-07,3.391893836837487057e-07,4.522525115783316429e-07,5.653156394729145801e-07,6.783787673674975173e-07,7.914418952620804545e-07,9.045050231566633917e-07,1.017568151051246329e-06,1.130631278945829160e-06,1.243694406840411992e-06,1.356757534734994823e-06,1.469820662629577654e-06,1.582883790524160485e-06,1.695946918418743317e-06,1.809010046313326148e-06,1.922073174207908979e-06,2.035136302102491811e-06,2.148199429997074642e-06,2.261262557891657473e-06,2.374325685786240305e-06,2.487388813680823136e-06,2.600451941575405967e-06,2.713515069469988799e-06,2.826578197364571630e-06,2.939641325259154461e-06,3.052704453153737293e-06,3.165767581048320124e-06,3.278830708942902955e-06,3.391893836837485787e-06,3.504956964732068618e-06,3.618020092626651449e-06,3.731083220521234280e-06,3.844146348415817112e-06,3.957209476310400367e-06,4.070272604204983621e-06,4.183335732099566876e-06,4.296398859994150131e-06,4.409461987888733386e-06,4.522525115783316641e-06,4.635588243677899896e-06,4.748651371572483150e-06,4.861714499467066405e-06,4.974777627361649660e-06,5.087840755256232915e-06,5.200903883150816170e-06,5.313967011045399425e-06,5.427030138939982679e-06,5.540093266834565934e-06,5.653156394729149189e-06,5.766219522623732444e-06,5.879282650518315699e-06,5.992345778412898954e-06,6.105408906307482208e-06,6.218472034202065463e-06,6.331535162096648718e-06,6.444598289991231973e-06,6.557661417885815228e-06,6.670724545780398483e-06,6.783787673674981737e-06,6.896850801569564992e-06,7.009913929464148247e-06,7.122977057358731502e-06 +0.000000000000000000e+00,1.115169269718521077e-07,2.230338539437042153e-07,3.345507809155563362e-07,4.460677078874084836e-07,5.575846348592606310e-07,6.691015618311127784e-07,7.806184888029649257e-07,8.921354157748170731e-07,1.003652342746669220e-06,1.115169269718521262e-06,1.226686196690373303e-06,1.338203123662225345e-06,1.449720050634077386e-06,1.561236977605929428e-06,1.672753904577781469e-06,1.784270831549633511e-06,1.895787758521485552e-06,2.007304685493337594e-06,2.118821612465189635e-06,2.230338539437041677e-06,2.341855466408893718e-06,2.453372393380745760e-06,2.564889320352597801e-06,2.676406247324449843e-06,2.787923174296301884e-06,2.899440101268153926e-06,3.010957028240005967e-06,3.122473955211858009e-06,3.233990882183710050e-06,3.345507809155562092e-06,3.457024736127414133e-06,3.568541663099266175e-06,3.680058590071118216e-06,3.791575517042970258e-06,3.903092444014822299e-06,4.014609370986674341e-06,4.126126297958526382e-06,4.237643224930378424e-06,4.349160151902230465e-06,4.460677078874082507e-06,4.572194005845934548e-06,4.683710932817786590e-06,4.795227859789638631e-06,4.906744786761490673e-06,5.018261713733342714e-06,5.129778640705194756e-06,5.241295567677046797e-06,5.352812494648898839e-06,5.464329421620750880e-06,5.575846348592602922e-06,5.687363275564454963e-06,5.798880202536307005e-06,5.910397129508159046e-06,6.021914056480011088e-06,6.133430983451863129e-06,6.244947910423715171e-06,6.356464837395567212e-06,6.467981764367419254e-06,6.579498691339271295e-06,6.691015618311123337e-06,6.802532545282975378e-06,6.914049472254827420e-06,7.025566399226679461e-06 +0.000000000000000000e+00,1.072328467371745627e-07,2.144656934743491253e-07,3.216985402115236880e-07,4.289313869486982506e-07,5.361642336858728662e-07,6.433970804230474818e-07,7.506299271602220974e-07,8.578627738973967130e-07,9.650956206345713286e-07,1.072328467371745944e-06,1.179561314108920560e-06,1.286794160846095175e-06,1.394027007583269791e-06,1.501259854320444407e-06,1.608492701057619022e-06,1.715725547794793638e-06,1.822958394531968253e-06,1.930191241269142657e-06,2.037424088006317061e-06,2.144656934743491465e-06,2.251889781480665869e-06,2.359122628217840273e-06,2.466355474955014676e-06,2.573588321692189080e-06,2.680821168429363484e-06,2.788054015166537888e-06,2.895286861903712292e-06,3.002519708640886696e-06,3.109752555378061100e-06,3.216985402115235503e-06,3.324218248852409907e-06,3.431451095589584311e-06,3.538683942326758715e-06,3.645916789063933119e-06,3.753149635801107523e-06,3.860382482538281926e-06,3.967615329275455907e-06,4.074848176012629887e-06,4.182081022749803867e-06,4.289313869486977848e-06,4.396546716224151828e-06,4.503779562961325808e-06,4.611012409698499789e-06,4.718245256435673769e-06,4.825478103172847749e-06,4.932710949910021730e-06,5.039943796647195710e-06,5.147176643384369690e-06,5.254409490121543671e-06,5.361642336858717651e-06,5.468875183595891631e-06,5.576108030333065612e-06,5.683340877070239592e-06,5.790573723807413572e-06,5.897806570544587553e-06,6.005039417281761533e-06,6.112272264018935513e-06,6.219505110756109494e-06,6.326737957493283474e-06,6.433970804230457454e-06,6.541203650967631434e-06,6.648436497704805415e-06,6.755669344441979395e-06 +0.000000000000000000e+00,1.130631278945887076e-07,2.261262557891774152e-07,3.391893836837661228e-07,4.522525115783548304e-07,5.653156394729435910e-07,6.783787673675323515e-07,7.914418952621211121e-07,9.045050231567098726e-07,1.017568151051298633e-06,1.130631278945887394e-06,1.243694406840476154e-06,1.356757534735064915e-06,1.469820662629653675e-06,1.582883790524242436e-06,1.695946918418831196e-06,1.809010046313419957e-06,1.922073174208008506e-06,2.035136302102596843e-06,2.148199429997185180e-06,2.261262557891773517e-06,2.374325685786361854e-06,2.487388813680950191e-06,2.600451941575538528e-06,2.713515069470126865e-06,2.826578197364715202e-06,2.939641325259303539e-06,3.052704453153891876e-06,3.165767581048480213e-06,3.278830708943068550e-06,3.391893836837656887e-06,3.504956964732245224e-06,3.618020092626833561e-06,3.731083220521421898e-06,3.844146348416010235e-06,3.957209476310598572e-06,4.070272604205186909e-06,4.183335732099775246e-06,4.296398859994363583e-06,4.409461987888951920e-06,4.522525115783540257e-06,4.635588243678128595e-06,4.748651371572716932e-06,4.861714499467305269e-06,4.974777627361893606e-06,5.087840755256481943e-06,5.200903883151070280e-06,5.313967011045658617e-06,5.427030138940246954e-06,5.540093266834835291e-06,5.653156394729423628e-06,5.766219522624011965e-06,5.879282650518600302e-06,5.992345778413188639e-06,6.105408906307776976e-06,6.218472034202365313e-06,6.331535162096953650e-06,6.444598289991541987e-06,6.557661417886130324e-06,6.670724545780718661e-06,6.783787673675306998e-06,6.896850801569895335e-06,7.009913929464483672e-06,7.122977057359072009e-06 +0.000000000000000000e+00,1.115169269718571105e-07,2.230338539437142209e-07,3.345507809155713181e-07,4.460677078874283889e-07,5.575846348592854067e-07,6.691015618311424245e-07,7.806184888029994423e-07,8.921354157748564601e-07,1.003652342746713478e-06,1.115169269718570390e-06,1.226686196690427302e-06,1.338203123662284214e-06,1.449720050634141126e-06,1.561236977605998038e-06,1.672753904577854950e-06,1.784270831549711861e-06,1.895787758521568773e-06,2.007304685493425685e-06,2.118821612465282809e-06,2.230338539437139933e-06,2.341855466408997056e-06,2.453372393380854180e-06,2.564889320352711304e-06,2.676406247324568427e-06,2.787923174296425551e-06,2.899440101268282675e-06,3.010957028240139799e-06,3.122473955211996922e-06,3.233990882183854046e-06,3.345507809155711170e-06,3.457024736127568293e-06,3.568541663099425417e-06,3.680058590071282541e-06,3.791575517043139664e-06,3.903092444014996788e-06,4.014609370986853912e-06,4.126126297958711035e-06,4.237643224930568159e-06,4.349160151902425283e-06,4.460677078874282407e-06,4.572194005846139530e-06,4.683710932817996654e-06,4.795227859789853778e-06,4.906744786761710901e-06,5.018261713733568025e-06,5.129778640705425149e-06,5.241295567677282272e-06,5.352812494649139396e-06,5.464329421620996520e-06,5.575846348592853643e-06,5.687363275564710767e-06,5.798880202536567891e-06,5.910397129508425015e-06,6.021914056480282138e-06,6.133430983452139262e-06,6.244947910423996386e-06,6.356464837395853509e-06,6.467981764367710633e-06,6.579498691339567757e-06,6.691015618311424880e-06,6.802532545283282004e-06,6.914049472255139128e-06,7.025566399226996251e-06 +0.000000000000000000e+00,1.072328467371802669e-07,2.144656934743605338e-07,3.216985402115407875e-07,4.289313869487210146e-07,5.361642336859012418e-07,6.433970804230814690e-07,7.506299271602616962e-07,8.578627738974419234e-07,9.650956206346221506e-07,1.072328467371802484e-06,1.179561314108982817e-06,1.286794160846163150e-06,1.394027007583343483e-06,1.501259854320523816e-06,1.608492701057704149e-06,1.715725547794884482e-06,1.822958394532064815e-06,1.930191241269245148e-06,2.037424088006425481e-06,2.144656934743605814e-06,2.251889781480786147e-06,2.359122628217966481e-06,2.466355474955146814e-06,2.573588321692327147e-06,2.680821168429507480e-06,2.788054015166687813e-06,2.895286861903868146e-06,3.002519708641048479e-06,3.109752555378228812e-06,3.216985402115409145e-06,3.324218248852589478e-06,3.431451095589769811e-06,3.538683942326950144e-06,3.645916789064130477e-06,3.753149635801310810e-06,3.860382482538491144e-06,3.967615329275671053e-06,4.074848176012850963e-06,4.182081022750030872e-06,4.289313869487210782e-06,4.396546716224390691e-06,4.503779562961570601e-06,4.611012409698750510e-06,4.718245256435930420e-06,4.825478103173110330e-06,4.932710949910290239e-06,5.039943796647470149e-06,5.147176643384650058e-06,5.254409490121829968e-06,5.361642336859009877e-06,5.468875183596189787e-06,5.576108030333369696e-06,5.683340877070549606e-06,5.790573723807729516e-06,5.897806570544909425e-06,6.005039417282089335e-06,6.112272264019269244e-06,6.219505110756449154e-06,6.326737957493629063e-06,6.433970804230808973e-06,6.541203650967988882e-06,6.648436497705168792e-06,6.755669344442348701e-06 +0.000000000000000000e+00,1.160595812215882101e-07,2.321191624431764202e-07,3.481787436647646171e-07,4.642383248863527875e-07,5.802979061079410108e-07,6.963574873295292341e-07,8.124170685511174575e-07,9.284766497727056808e-07,1.044536230994293904e-06,1.160595812215882022e-06,1.276655393437470139e-06,1.392714974659058257e-06,1.508774555880646374e-06,1.624834137102234491e-06,1.740893718323822609e-06,1.856953299545410726e-06,1.973012880766999056e-06,2.089072461988587385e-06,2.205132043210175714e-06,2.321191624431764043e-06,2.437251205653352372e-06,2.553310786874940702e-06,2.669370368096529031e-06,2.785429949318117360e-06,2.901489530539705689e-06,3.017549111761294018e-06,3.133608692982882348e-06,3.249668274204470677e-06,3.365727855426059006e-06,3.481787436647647335e-06,3.597847017869235665e-06,3.713906599090823994e-06,3.829966180312412323e-06,3.946025761534000652e-06,4.062085342755588981e-06,4.178144923977177311e-06,4.294204505198765640e-06,4.410264086420353969e-06,4.526323667641942298e-06,4.642383248863530627e-06,4.758442830085118957e-06,4.874502411306707286e-06,4.990561992528295615e-06,5.106621573749883944e-06,5.222681154971472274e-06,5.338740736193060603e-06,5.454800317414648932e-06,5.570859898636237261e-06,5.686919479857825590e-06,5.802979061079413920e-06,5.919038642301002249e-06,6.035098223522590578e-06,6.151157804744178907e-06,6.267217385965767237e-06,6.383276967187355566e-06,6.499336548408943895e-06,6.615396129630532224e-06,6.731455710852120553e-06,6.847515292073708883e-06,6.963574873295297212e-06,7.079634454516885541e-06,7.195694035738473870e-06,7.311753616960062199e-06 +0.000000000000000000e+00,1.145731688983191546e-07,2.291463377966383093e-07,3.437195066949574639e-07,4.582926755932766186e-07,5.728658444915957203e-07,6.874390133899148220e-07,8.020121822882339237e-07,9.165853511865530254e-07,1.031158520084872127e-06,1.145731688983191229e-06,1.260304857881510331e-06,1.374878026779829432e-06,1.489451195678148534e-06,1.604024364576467636e-06,1.718597533474786737e-06,1.833170702373105839e-06,1.947743871271424941e-06,2.062317040169744254e-06,2.176890209068063568e-06,2.291463377966382881e-06,2.406036546864702195e-06,2.520609715763021508e-06,2.635182884661340822e-06,2.749756053559660135e-06,2.864329222457979449e-06,2.978902391356298762e-06,3.093475560254618075e-06,3.208048729152937389e-06,3.322621898051256702e-06,3.437195066949576016e-06,3.551768235847895329e-06,3.666341404746214643e-06,3.780914573644533956e-06,3.895487742542853270e-06,4.010060911441173007e-06,4.124634080339492744e-06,4.239207249237812481e-06,4.353780418136132218e-06,4.468353587034451955e-06,4.582926755932771692e-06,4.697499924831091429e-06,4.812073093729411166e-06,4.926646262627730903e-06,5.041219431526050640e-06,5.155792600424370377e-06,5.270365769322690114e-06,5.384938938221009851e-06,5.499512107119329588e-06,5.614085276017649324e-06,5.728658444915969061e-06,5.843231613814288798e-06,5.957804782712608535e-06,6.072377951610928272e-06,6.186951120509248009e-06,6.301524289407567746e-06,6.416097458305887483e-06,6.530670627204207220e-06,6.645243796102526957e-06,6.759816965000846694e-06,6.874390133899166431e-06,6.988963302797486168e-06,7.103536471695805905e-06,7.218109640594125642e-06 +0.000000000000000000e+00,1.095457112680449832e-07,2.190914225360899665e-07,3.286371338041349497e-07,4.381828450721799330e-07,5.477285563402248633e-07,6.572742676082697936e-07,7.668199788763147239e-07,8.763656901443596542e-07,9.859114014124045845e-07,1.095457112680449515e-06,1.205002823948494445e-06,1.314548535216539375e-06,1.424094246484584306e-06,1.533639957752629236e-06,1.643185669020674166e-06,1.752731380288719097e-06,1.862277091556764027e-06,1.971822802824809169e-06,2.081368514092854311e-06,2.190914225360899453e-06,2.300459936628944595e-06,2.410005647896989737e-06,2.519551359165034879e-06,2.629097070433080021e-06,2.738642781701125163e-06,2.848188492969170305e-06,2.957734204237215447e-06,3.067279915505260589e-06,3.176825626773305732e-06,3.286371338041350874e-06,3.395917049309396016e-06,3.505462760577441158e-06,3.615008471845486300e-06,3.724554183113531442e-06,3.834099894381576584e-06,3.943645605649621726e-06,4.053191316917666868e-06,4.162737028185712010e-06,4.272282739453757152e-06,4.381828450721802294e-06,4.491374161989847436e-06,4.600919873257892578e-06,4.710465584525937720e-06,4.820011295793982862e-06,4.929557007062028004e-06,5.039102718330073147e-06,5.148648429598118289e-06,5.258194140866163431e-06,5.367739852134208573e-06,5.477285563402253715e-06,5.586831274670298857e-06,5.696376985938343999e-06,5.805922697206389141e-06,5.915468408474434283e-06,6.025014119742479425e-06,6.134559831010524567e-06,6.244105542278569709e-06,6.353651253546614851e-06,6.463196964814659993e-06,6.572742676082705135e-06,6.682288387350750277e-06,6.791834098618795419e-06,6.901379809886840561e-06 +0.000000000000000000e+00,1.160595812215957937e-07,2.321191624431915874e-07,3.481787436647873811e-07,4.642383248863831748e-07,5.802979061079789155e-07,6.963574873295746563e-07,8.124170685511703970e-07,9.284766497727661378e-07,1.044536230994361879e-06,1.160595812215957619e-06,1.276655393437553360e-06,1.392714974659149101e-06,1.508774555880744842e-06,1.624834137102340582e-06,1.740893718323936323e-06,1.856953299545532064e-06,1.973012880767127805e-06,2.089072461988723757e-06,2.205132043210319710e-06,2.321191624431915662e-06,2.437251205653511615e-06,2.553310786875107567e-06,2.669370368096703520e-06,2.785429949318299472e-06,2.901489530539895425e-06,3.017549111761491377e-06,3.133608692983087330e-06,3.249668274204683282e-06,3.365727855426279235e-06,3.481787436647875187e-06,3.597847017869471140e-06,3.713906599091067092e-06,3.829966180312663045e-06,3.946025761534258997e-06,4.062085342755854950e-06,4.178144923977450902e-06,4.294204505199046855e-06,4.410264086420642807e-06,4.526323667642238760e-06,4.642383248863834712e-06,4.758442830085430665e-06,4.874502411307026617e-06,4.990561992528622570e-06,5.106621573750218522e-06,5.222681154971814475e-06,5.338740736193410427e-06,5.454800317415006380e-06,5.570859898636602332e-06,5.686919479858198285e-06,5.802979061079794237e-06,5.919038642301390190e-06,6.035098223522986142e-06,6.151157804744582095e-06,6.267217385966178047e-06,6.383276967187774000e-06,6.499336548409369953e-06,6.615396129630965905e-06,6.731455710852561858e-06,6.847515292074157810e-06,6.963574873295753763e-06,7.079634454517349715e-06,7.195694035738945668e-06,7.311753616960541620e-06 +0.000000000000000000e+00,1.145731688983260897e-07,2.291463377966521795e-07,3.437195066949782692e-07,4.582926755933043589e-07,5.728658444916304487e-07,6.874390133899565384e-07,8.020121822882826281e-07,9.165853511866087178e-07,1.031158520084934808e-06,1.145731688983260897e-06,1.260304857881586987e-06,1.374878026779913077e-06,1.489451195678239166e-06,1.604024364576565256e-06,1.718597533474891346e-06,1.833170702373217436e-06,1.947743871271543525e-06,2.062317040169869615e-06,2.176890209068195705e-06,2.291463377966521795e-06,2.406036546864847884e-06,2.520609715763173974e-06,2.635182884661500064e-06,2.749756053559826154e-06,2.864329222458152243e-06,2.978902391356478333e-06,3.093475560254804423e-06,3.208048729153130512e-06,3.322621898051456602e-06,3.437195066949782692e-06,3.551768235848108782e-06,3.666341404746434871e-06,3.780914573644760961e-06,3.895487742543087051e-06,4.010060911441413564e-06,4.124634080339740077e-06,4.239207249238066591e-06,4.353780418136393104e-06,4.468353587034719617e-06,4.582926755933046130e-06,4.697499924831372644e-06,4.812073093729699157e-06,4.926646262628025670e-06,5.041219431526352183e-06,5.155792600424678697e-06,5.270365769323005210e-06,5.384938938221331723e-06,5.499512107119658236e-06,5.614085276017984750e-06,5.728658444916311263e-06,5.843231613814637776e-06,5.957804782712964289e-06,6.072377951611290803e-06,6.186951120509617316e-06,6.301524289407943829e-06,6.416097458306270342e-06,6.530670627204596856e-06,6.645243796102923369e-06,6.759816965001249882e-06,6.874390133899576395e-06,6.988963302797902909e-06,7.103536471696229422e-06,7.218109640594555935e-06 +0.000000000000000000e+00,1.095457112680527389e-07,2.190914225361054778e-07,3.286371338041581902e-07,4.381828450722109026e-07,5.477285563402636150e-07,6.572742676083163804e-07,7.668199788763691457e-07,8.763656901444219111e-07,9.859114014124746764e-07,1.095457112680527442e-06,1.205002823948580207e-06,1.314548535216632972e-06,1.424094246484685738e-06,1.533639957752738503e-06,1.643185669020791269e-06,1.752731380288844034e-06,1.862277091556896799e-06,1.971822802824949776e-06,2.081368514093002542e-06,2.190914225361055307e-06,2.300459936629108072e-06,2.410005647897160838e-06,2.519551359165213603e-06,2.629097070433266368e-06,2.738642781701319134e-06,2.848188492969371899e-06,2.957734204237424665e-06,3.067279915505477430e-06,3.176825626773530195e-06,3.286371338041582961e-06,3.395917049309635726e-06,3.505462760577688491e-06,3.615008471845741257e-06,3.724554183113794022e-06,3.834099894381846787e-06,3.943645605649899553e-06,4.053191316917952318e-06,4.162737028186005083e-06,4.272282739454057849e-06,4.381828450722110614e-06,4.491374161990163380e-06,4.600919873258216145e-06,4.710465584526268910e-06,4.820011295794321676e-06,4.929557007062374441e-06,5.039102718330427206e-06,5.148648429598479972e-06,5.258194140866532737e-06,5.367739852134585502e-06,5.477285563402638268e-06,5.586831274670691033e-06,5.696376985938743798e-06,5.805922697206796564e-06,5.915468408474849329e-06,6.025014119742902094e-06,6.134559831010954860e-06,6.244105542279007625e-06,6.353651253547060391e-06,6.463196964815113156e-06,6.572742676083165921e-06,6.682288387351218687e-06,6.791834098619271452e-06,6.901379809887324217e-06 +0.000000000000000000e+00,1.190271152330251211e-07,2.380542304660502422e-07,3.570813456990753766e-07,4.761084609321005374e-07,5.951355761651256982e-07,7.141626913981508591e-07,8.331898066311760199e-07,9.522169218642011807e-07,1.071244037097226236e-06,1.190271152330251185e-06,1.309298267563276134e-06,1.428325382796301083e-06,1.547352498029326032e-06,1.666379613262350981e-06,1.785406728495375930e-06,1.904433843728400879e-06,2.023460958961425828e-06,2.142488074194450777e-06,2.261515189427475726e-06,2.380542304660500675e-06,2.499569419893525624e-06,2.618596535126550574e-06,2.737623650359575523e-06,2.856650765592600472e-06,2.975677880825625421e-06,3.094704996058650370e-06,3.213732111291675319e-06,3.332759226524700268e-06,3.451786341757725217e-06,3.570813456990750166e-06,3.689840572223775115e-06,3.808867687456800064e-06,3.927894802689825013e-06,4.046921917922849962e-06,4.165949033155874911e-06,4.284976148388899860e-06,4.404003263621924809e-06,4.523030378854949759e-06,4.642057494087974708e-06,4.761084609320999657e-06,4.880111724554024606e-06,4.999138839787049555e-06,5.118165955020074504e-06,5.237193070253099453e-06,5.356220185486124402e-06,5.475247300719149351e-06,5.594274415952174300e-06,5.713301531185199249e-06,5.832328646418224198e-06,5.951355761651249147e-06,6.070382876884274096e-06,6.189409992117299045e-06,6.308437107350323995e-06,6.427464222583348944e-06,6.546491337816373893e-06,6.665518453049398842e-06,6.784545568282423791e-06,6.903572683515448740e-06,7.022599798748473689e-06,7.141626913981498638e-06,7.260654029214523587e-06,7.379681144447548536e-06,7.498708259680573485e-06 +0.000000000000000000e+00,1.190279641211170432e-07,2.380559282422340864e-07,3.570838923633511428e-07,4.761118564844682257e-07,5.951398206055853086e-07,7.141677847267023915e-07,8.331957488478194745e-07,9.522237129689365574e-07,1.071251677090053746e-06,1.190279641211170829e-06,1.309307605332287912e-06,1.428335569453404995e-06,1.547363533574522078e-06,1.666391497695639161e-06,1.785419461816756244e-06,1.904447425937873326e-06,2.023475390058990409e-06,2.142503354180107492e-06,2.261531318301224575e-06,2.380559282422341658e-06,2.499587246543458741e-06,2.618615210664575824e-06,2.737643174785692907e-06,2.856671138906809990e-06,2.975699103027927073e-06,3.094727067149044156e-06,3.213755031270161238e-06,3.332782995391278321e-06,3.451810959512395404e-06,3.570838923633512487e-06,3.689866887754629570e-06,3.808894851875746653e-06,3.927922815996864159e-06,4.046950780117981666e-06,4.165978744239099172e-06,4.285006708360216679e-06,4.404034672481334185e-06,4.523062636602451691e-06,4.642090600723569198e-06,4.761118564844686704e-06,4.880146528965804211e-06,4.999174493086921717e-06,5.118202457208039224e-06,5.237230421329156730e-06,5.356258385450274236e-06,5.475286349571391743e-06,5.594314313692509249e-06,5.713342277813626756e-06,5.832370241934744262e-06,5.951398206055861769e-06,6.070426170176979275e-06,6.189454134298096781e-06,6.308482098419214288e-06,6.427510062540331794e-06,6.546538026661449301e-06,6.665565990782566807e-06,6.784593954903684313e-06,6.903621919024801820e-06,7.022649883145919326e-06,7.141677847267036833e-06,7.260705811388154339e-06,7.379733775509271846e-06,7.498761739630389352e-06 +0.000000000000000000e+00,1.175271312538025200e-07,2.350542625076050399e-07,3.525813937614075731e-07,4.701085250152101328e-07,5.876356562690126395e-07,7.051627875228151463e-07,8.226899187766176530e-07,9.402170500304201597e-07,1.057744181284222666e-06,1.175271312538025279e-06,1.292798443791827892e-06,1.410325575045630504e-06,1.527852706299433117e-06,1.645379837553235729e-06,1.762906968807038342e-06,1.880434100060840955e-06,1.997961231314643779e-06,2.115488362568446603e-06,2.233015493822249428e-06,2.350542625076052252e-06,2.468069756329855077e-06,2.585596887583657901e-06,2.703124018837460725e-06,2.820651150091263550e-06,2.938178281345066374e-06,3.055705412598869198e-06,3.173232543852672023e-06,3.290759675106474847e-06,3.408286806360277671e-06,3.525813937614080496e-06,3.643341068867883320e-06,3.760868200121686145e-06,3.878395331375488969e-06,3.995922462629291793e-06,4.113449593883094618e-06,4.230976725136897442e-06,4.348503856390700266e-06,4.466030987644503091e-06,4.583558118898305915e-06,4.701085250152108739e-06,4.818612381405911564e-06,4.936139512659714388e-06,5.053666643913517213e-06,5.171193775167320037e-06,5.288720906421122861e-06,5.406248037674925686e-06,5.523775168928728510e-06,5.641302300182531334e-06,5.758829431436334159e-06,5.876356562690136983e-06,5.993883693943939808e-06,6.111410825197742632e-06,6.228937956451545456e-06,6.346465087705348281e-06,6.463992218959151105e-06,6.581519350212953929e-06,6.699046481466756754e-06,6.816573612720559578e-06,6.934100743974362402e-06,7.051627875228165227e-06,7.169155006481968051e-06,7.286682137735770876e-06,7.404209268989573700e-06 +0.000000000000000000e+00,1.116853827858246986e-07,2.233707655716493972e-07,3.350561483574740958e-07,4.467415311432987944e-07,5.584269139291234930e-07,6.701122967149481916e-07,7.817976795007728902e-07,8.934830622865975888e-07,1.005168445072422287e-06,1.116853827858246986e-06,1.228539210644071685e-06,1.340224593429896383e-06,1.451909976215721082e-06,1.563595359001545780e-06,1.675280741787370479e-06,1.786966124573195178e-06,1.898651507359019876e-06,2.010336890144844575e-06,2.122022272930669485e-06,2.233707655716494396e-06,2.345393038502319306e-06,2.457078421288144216e-06,2.568763804073969127e-06,2.680449186859794037e-06,2.792134569645618947e-06,2.903819952431443858e-06,3.015505335217268768e-06,3.127190718003093679e-06,3.238876100788918589e-06,3.350561483574743499e-06,3.462246866360568410e-06,3.573932249146393320e-06,3.685617631932218230e-06,3.797303014718043141e-06,3.908988397503868051e-06,4.020673780289693385e-06,4.132359163075518719e-06,4.244044545861344053e-06,4.355729928647169387e-06,4.467415311432994720e-06,4.579100694218820054e-06,4.690786077004645388e-06,4.802471459790470722e-06,4.914156842576296056e-06,5.025842225362121390e-06,5.137527608147946724e-06,5.249212990933772058e-06,5.360898373719597392e-06,5.472583756505422725e-06,5.584269139291248059e-06,5.695954522077073393e-06,5.807639904862898727e-06,5.919325287648724061e-06,6.031010670434549395e-06,6.142696053220374729e-06,6.254381436006200063e-06,6.366066818792025396e-06,6.477752201577850730e-06,6.589437584363676064e-06,6.701122967149501398e-06,6.812808349935326732e-06,6.924493732721152066e-06,7.036179115506977400e-06 +0.000000000000000000e+00,1.190278265644790114e-07,2.380556531289580228e-07,3.570834796934370078e-07,4.761113062579159927e-07,5.951391328223949777e-07,7.141669593868740156e-07,8.331947859513530535e-07,9.522226125158320914e-07,1.071250439080311129e-06,1.190278265644790167e-06,1.309306092209269205e-06,1.428333918773748243e-06,1.547361745338227281e-06,1.666389571902706319e-06,1.785417398467185357e-06,1.904445225031664395e-06,2.023473051596143432e-06,2.142500878160622259e-06,2.261528704725101085e-06,2.380556531289579911e-06,2.499584357854058737e-06,2.618612184418537563e-06,2.737640010983016389e-06,2.856667837547495215e-06,2.975695664111974041e-06,3.094723490676452868e-06,3.213751317240931694e-06,3.332779143805410520e-06,3.451806970369889346e-06,3.570834796934368172e-06,3.689862623498846998e-06,3.808890450063325824e-06,3.927918276627804651e-06,4.046946103192283477e-06,4.165973929756762303e-06,4.285001756321241129e-06,4.404029582885719955e-06,4.523057409450198781e-06,4.642085236014677607e-06,4.761113062579156433e-06,4.880140889143635260e-06,4.999168715708114086e-06,5.118196542272592912e-06,5.237224368837071738e-06,5.356252195401550564e-06,5.475280021966029390e-06,5.594307848530508216e-06,5.713335675094987043e-06,5.832363501659465869e-06,5.951391328223944695e-06,6.070419154788423521e-06,6.189446981352902347e-06,6.308474807917381173e-06,6.427502634481859999e-06,6.546530461046338825e-06,6.665558287610817652e-06,6.784586114175296478e-06,6.903613940739775304e-06,7.022641767304254130e-06,7.141669593868732956e-06,7.260697420433211782e-06,7.379725246997690608e-06,7.498753073562169435e-06 +0.000000000000000000e+00,1.116833988318894368e-07,2.233667976637788737e-07,3.350501964956683238e-07,4.467335953275578003e-07,5.584169941594472239e-07,6.701003929913366475e-07,7.817837918232260711e-07,8.934671906551154947e-07,1.005150589487004918e-06,1.116833988318894448e-06,1.228517387150783977e-06,1.340200785982673507e-06,1.451884184814563036e-06,1.563567583646452566e-06,1.675250982478342095e-06,1.786934381310231625e-06,1.898617780142121154e-06,2.010301178974010684e-06,2.121984577805900213e-06,2.233667976637789743e-06,2.345351375469679272e-06,2.457034774301568802e-06,2.568718173133458331e-06,2.680401571965347861e-06,2.792084970797237390e-06,2.903768369629126920e-06,3.015451768461016449e-06,3.127135167292905978e-06,3.238818566124795508e-06,3.350501964956685037e-06,3.462185363788574567e-06,3.573868762620464096e-06,3.685552161452353626e-06,3.797235560284243155e-06,3.908918959116133108e-06,4.020602357948023061e-06,4.132285756779913014e-06,4.243969155611802967e-06,4.355652554443692920e-06,4.467335953275582873e-06,4.579019352107472826e-06,4.690702750939362779e-06,4.802386149771252732e-06,4.914069548603142685e-06,5.025752947435032638e-06,5.137436346266922591e-06,5.249119745098812544e-06,5.360803143930702497e-06,5.472486542762592450e-06,5.584169941594482403e-06,5.695853340426372356e-06,5.807536739258262309e-06,5.919220138090152262e-06,6.030903536922042215e-06,6.142586935753932168e-06,6.254270334585822121e-06,6.365953733417712074e-06,6.477637132249602027e-06,6.589320531081491980e-06,6.701003929913381933e-06,6.812687328745271886e-06,6.924370727577161839e-06,7.036054126409051792e-06 +0.000000000000000000e+00,1.190271152330361061e-07,2.380542304660722122e-07,3.570813456991083050e-07,4.761084609321443714e-07,5.951355761651804377e-07,7.141626913982165041e-07,8.331898066312525705e-07,9.522169218642886369e-07,1.071244037097324703e-06,1.190271152330360875e-06,1.309298267563397048e-06,1.428325382796433220e-06,1.547352498029469392e-06,1.666379613262505564e-06,1.785406728495541737e-06,1.904433843728577909e-06,2.023460958961613869e-06,2.142488074194649830e-06,2.261515189427685790e-06,2.380542304660721751e-06,2.499569419893757711e-06,2.618596535126793672e-06,2.737623650359829632e-06,2.856650765592865593e-06,2.975677880825901553e-06,3.094704996058937514e-06,3.213732111291973474e-06,3.332759226525009435e-06,3.451786341758045395e-06,3.570813456991081356e-06,3.689840572224117316e-06,3.808867687457153277e-06,3.927894802690189237e-06,4.046921917923225198e-06,4.165949033156261158e-06,4.284976148389297119e-06,4.404003263622333079e-06,4.523030378855369040e-06,4.642057494088405000e-06,4.761084609321440961e-06,4.880111724554476921e-06,4.999138839787512882e-06,5.118165955020548842e-06,5.237193070253584803e-06,5.356220185486620763e-06,5.475247300719656724e-06,5.594274415952692684e-06,5.713301531185728645e-06,5.832328646418764605e-06,5.951355761651800566e-06,6.070382876884836526e-06,6.189409992117872487e-06,6.308437107350908447e-06,6.427464222583944408e-06,6.546491337816980368e-06,6.665518453050016329e-06,6.784545568283052289e-06,6.903572683516088250e-06,7.022599798749124210e-06,7.141626913982160171e-06,7.260654029215196131e-06,7.379681144448232092e-06,7.498708259681268052e-06 +0.000000000000000000e+00,1.190278265644846230e-07,2.380556531289692460e-07,3.570834796934538426e-07,4.761113062579384391e-07,5.951391328224230357e-07,7.141669593869076852e-07,8.331947859513923346e-07,9.522226125158769841e-07,1.071250439080361528e-06,1.190278265644846071e-06,1.309306092209330615e-06,1.428333918773815159e-06,1.547361745338299702e-06,1.666389571902784246e-06,1.785417398467268789e-06,1.904445225031753333e-06,2.023473051596237877e-06,2.142500878160722208e-06,2.261528704725206540e-06,2.380556531289690872e-06,2.499584357854175204e-06,2.618612184418659536e-06,2.737640010983143868e-06,2.856667837547628200e-06,2.975695664112112531e-06,3.094723490676596863e-06,3.213751317241081195e-06,3.332779143805565527e-06,3.451806970370049859e-06,3.570834796934534191e-06,3.689862623499018522e-06,3.808890450063502854e-06,3.927918276627986763e-06,4.046946103192470671e-06,4.165973929756954579e-06,4.285001756321438488e-06,4.404029582885922396e-06,4.523057409450406304e-06,4.642085236014890213e-06,4.761113062579374121e-06,4.880140889143858029e-06,4.999168715708341938e-06,5.118196542272825846e-06,5.237224368837309754e-06,5.356252195401793663e-06,5.475280021966277571e-06,5.594307848530761479e-06,5.713335675095245388e-06,5.832363501659729296e-06,5.951391328224213204e-06,6.070419154788697113e-06,6.189446981353181021e-06,6.308474807917664929e-06,6.427502634482148838e-06,6.546530461046632746e-06,6.665558287611116654e-06,6.784586114175600563e-06,6.903613940740084471e-06,7.022641767304568379e-06,7.141669593869052288e-06,7.260697420433536196e-06,7.379725246998020104e-06,7.498753073562504013e-06 +0.000000000000000000e+00,1.175271312538123800e-07,2.350542625076247599e-07,3.525813937614371663e-07,4.701085250152495728e-07,5.876356562690619792e-07,7.051627875228743327e-07,8.226899187766866862e-07,9.402170500304990397e-07,1.057744181284311393e-06,1.175271312538123747e-06,1.292798443791936100e-06,1.410325575045748454e-06,1.527852706299560807e-06,1.645379837553373161e-06,1.762906968807185514e-06,1.880434100060997868e-06,1.997961231314810221e-06,2.115488362568622786e-06,2.233015493822435352e-06,2.350542625076247917e-06,2.468069756330060482e-06,2.585596887583873047e-06,2.703124018837685613e-06,2.820651150091498178e-06,2.938178281345310743e-06,3.055705412599123308e-06,3.173232543852935873e-06,3.290759675106748439e-06,3.408286806360561004e-06,3.525813937614373569e-06,3.643341068868186134e-06,3.760868200121998700e-06,3.878395331375810841e-06,3.995922462629622983e-06,4.113449593883435125e-06,4.230976725137247267e-06,4.348503856391059408e-06,4.466030987644871550e-06,4.583558118898683692e-06,4.701085250152495834e-06,4.818612381406307975e-06,4.936139512660120117e-06,5.053666643913932259e-06,5.171193775167744400e-06,5.288720906421556542e-06,5.406248037675368684e-06,5.523775168929180826e-06,5.641302300182992967e-06,5.758829431436805109e-06,5.876356562690617251e-06,5.993883693944429393e-06,6.111410825198241534e-06,6.228937956452053676e-06,6.346465087705865818e-06,6.463992218959677959e-06,6.581519350213490101e-06,6.699046481467302243e-06,6.816573612721114385e-06,6.934100743974926526e-06,7.051627875228738668e-06,7.169155006482550810e-06,7.286682137736362952e-06,7.404209268990175093e-06 +0.000000000000000000e+00,1.116853827858341880e-07,2.233707655716683760e-07,3.350561483575025773e-07,4.467415311433368050e-07,5.584269139291710327e-07,6.701122967150052605e-07,7.817976795008394882e-07,8.934830622866737159e-07,1.005168445072508050e-06,1.116853827858342277e-06,1.228539210644176505e-06,1.340224593430010733e-06,1.451909976215844960e-06,1.563595359001679188e-06,1.675280741787513416e-06,1.786966124573347644e-06,1.898651507359181871e-06,2.010336890145016099e-06,2.122022272930850327e-06,2.233707655716684555e-06,2.345393038502518782e-06,2.457078421288353010e-06,2.568763804074187238e-06,2.680449186860021465e-06,2.792134569645855693e-06,2.903819952431689921e-06,3.015505335217524149e-06,3.127190718003358376e-06,3.238876100789192604e-06,3.350561483575026832e-06,3.462246866360861059e-06,3.573932249146695287e-06,3.685617631932529515e-06,3.797303014718363743e-06,3.908988397504198394e-06,4.020673780290033045e-06,4.132359163075867696e-06,4.244044545861702348e-06,4.355729928647536999e-06,4.467415311433371650e-06,4.579100694219206301e-06,4.690786077005040953e-06,4.802471459790875604e-06,4.914156842576710255e-06,5.025842225362544906e-06,5.137527608148379558e-06,5.249212990934214209e-06,5.360898373720048860e-06,5.472583756505883511e-06,5.584269139291718163e-06,5.695954522077552814e-06,5.807639904863387465e-06,5.919325287649222116e-06,6.031010670435056768e-06,6.142696053220891419e-06,6.254381436006726070e-06,6.366066818792560721e-06,6.477752201578395372e-06,6.589437584364230024e-06,6.701122967150064675e-06,6.812808349935899326e-06,6.924493732721733977e-06,7.036179115507568629e-06 +0.000000000000000000e+00,1.092143510742730804e-07,2.184287021485461608e-07,3.276430532228192676e-07,4.368574042970923745e-07,5.460717553713654813e-07,6.552861064456385352e-07,7.645004575199115892e-07,8.737148085941846431e-07,9.829291596684575911e-07,1.092143510742730539e-06,1.201357861817003487e-06,1.310572212891276435e-06,1.419786563965549383e-06,1.529000915039822331e-06,1.638215266114095279e-06,1.747429617188368227e-06,1.856643968262641175e-06,1.965858319336914335e-06,2.075072670411187495e-06,2.184287021485460655e-06,2.293501372559733815e-06,2.402715723634006974e-06,2.511930074708280134e-06,2.621144425782553294e-06,2.730358776856826454e-06,2.839573127931099614e-06,2.948787479005372773e-06,3.058001830079645933e-06,3.167216181153919093e-06,3.276430532228192253e-06,3.385644883302465413e-06,3.494859234376738572e-06,3.604073585451011732e-06,3.713287936525284892e-06,3.822502287599557628e-06,3.931716638673830364e-06,4.040930989748103101e-06,4.150145340822375837e-06,4.259359691896648573e-06,4.368574042970921310e-06,4.477788394045194046e-06,4.587002745119466782e-06,4.696217096193739518e-06,4.805431447268012255e-06,4.914645798342284991e-06,5.023860149416557727e-06,5.133074500490830463e-06,5.242288851565103200e-06,5.351503202639375936e-06,5.460717553713648672e-06,5.569931904787921409e-06,5.679146255862194145e-06,5.788360606936466881e-06,5.897574958010739617e-06,6.006789309085012354e-06,6.116003660159285090e-06,6.225218011233557826e-06,6.334432362307830563e-06,6.443646713382103299e-06,6.552861064456376035e-06,6.662075415530648771e-06,6.771289766604921508e-06,6.880504117679194244e-06 +0.000000000000000000e+00,1.052638237296776196e-07,2.105276474593552392e-07,3.157914711890328588e-07,4.210552949187104784e-07,5.263191186483880981e-07,6.315829423780657177e-07,7.368467661077433373e-07,8.421105898374209569e-07,9.473744135670985765e-07,1.052638237296776196e-06,1.157902061026453816e-06,1.263165884756131435e-06,1.368429708485809055e-06,1.473693532215486675e-06,1.578957355945164294e-06,1.684221179674841914e-06,1.789485003404519533e-06,1.894748827134197153e-06,2.000012650863874773e-06,2.105276474593552392e-06,2.210540298323230012e-06,2.315804122052907631e-06,2.421067945782585251e-06,2.526331769512262871e-06,2.631595593241940490e-06,2.736859416971618110e-06,2.842123240701295730e-06,2.947387064430973349e-06,3.052650888160650969e-06,3.157914711890328588e-06,3.263178535620006208e-06,3.368442359349683828e-06,3.473706183079361447e-06,3.578970006809039067e-06,3.684233830538716686e-06,3.789497654268394306e-06,3.894761477998071926e-06,4.000025301727749545e-06,4.105289125457427165e-06,4.210552949187104784e-06,4.315816772916782404e-06,4.421080596646460024e-06,4.526344420376137643e-06,4.631608244105815263e-06,4.736872067835492883e-06,4.842135891565170502e-06,4.947399715294848122e-06,5.052663539024525741e-06,5.157927362754203361e-06,5.263191186483880981e-06,5.368455010213558600e-06,5.473718833943236220e-06,5.578982657672913839e-06,5.684246481402591459e-06,5.789510305132269079e-06,5.894774128861946698e-06,6.000037952591624318e-06,6.105301776321301937e-06,6.210565600050979557e-06,6.315829423780657177e-06,6.421093247510334796e-06,6.526357071240012416e-06,6.631620894969690036e-06 +0.000000000000000000e+00,1.093571169148214457e-07,2.187142338296428914e-07,3.280713507444643239e-07,4.374284676592857299e-07,5.467855845741070829e-07,6.561427014889284360e-07,7.654998184037497890e-07,8.748569353185711421e-07,9.842140522333924951e-07,1.093571169148213742e-06,1.202928286063034989e-06,1.312285402977856237e-06,1.421642519892677484e-06,1.530999636807498731e-06,1.640356753722319978e-06,1.749713870637141225e-06,1.859070987551962473e-06,1.968428104466783720e-06,2.077785221381604755e-06,2.187142338296425791e-06,2.296499455211246826e-06,2.405856572126067861e-06,2.515213689040888897e-06,2.624570805955709932e-06,2.733927922870530968e-06,2.843285039785352003e-06,2.952642156700173039e-06,3.061999273614994074e-06,3.171356390529815109e-06,3.280713507444636145e-06,3.390070624359457180e-06,3.499427741274278216e-06,3.608784858189099251e-06,3.718141975103920286e-06,3.827499092018741322e-06,3.936856208933562357e-06,4.046213325848383393e-06,4.155570442763204428e-06,4.264927559678025464e-06,4.374284676592846499e-06,4.483641793507667534e-06,4.592998910422488570e-06,4.702356027337309605e-06,4.811713144252130641e-06,4.921070261166951676e-06,5.030427378081772711e-06,5.139784494996593747e-06,5.249141611911414782e-06,5.358498728826235818e-06,5.467855845741056853e-06,5.577212962655877889e-06,5.686570079570698924e-06,5.795927196485519959e-06,5.905284313400340995e-06,6.014641430315162030e-06,6.123998547229983066e-06,6.233355664144804101e-06,6.342712781059625137e-06,6.452069897974446172e-06,6.561427014889267207e-06,6.670784131804088243e-06,6.780141248718909278e-06,6.889498365633730314e-06 +0.000000000000000000e+00,1.061589264828197524e-07,2.123178529656395048e-07,3.184767794484592573e-07,4.246357059312790097e-07,5.307946324140988151e-07,6.369535588969186204e-07,7.431124853797384258e-07,8.492714118625582311e-07,9.554303383453780365e-07,1.061589264828197842e-06,1.167748191311017647e-06,1.273907117793837453e-06,1.380066044276657258e-06,1.486224970759477063e-06,1.592383897242296869e-06,1.698542823725116674e-06,1.804701750207936479e-06,1.910860676690756073e-06,2.017019603173575667e-06,2.123178529656395260e-06,2.229337456139214854e-06,2.335496382622034447e-06,2.441655309104854041e-06,2.547814235587673635e-06,2.653973162070493228e-06,2.760132088553312822e-06,2.866291015036132415e-06,2.972449941518952009e-06,3.078608868001771603e-06,3.184767794484591196e-06,3.290926720967410790e-06,3.397085647450230383e-06,3.503244573933049977e-06,3.609403500415869571e-06,3.715562426898689164e-06,3.821721353381508758e-06,3.927880279864327928e-06,4.034039206347147098e-06,4.140198132829966268e-06,4.246357059312785438e-06,4.352515985795604608e-06,4.458674912278423778e-06,4.564833838761242949e-06,4.670992765244062119e-06,4.777151691726881289e-06,4.883310618209700459e-06,4.989469544692519629e-06,5.095628471175338799e-06,5.201787397658157969e-06,5.307946324140977139e-06,5.414105250623796309e-06,5.520264177106615479e-06,5.626423103589434649e-06,5.732582030072253820e-06,5.838740956555072990e-06,5.944899883037892160e-06,6.051058809520711330e-06,6.157217736003530500e-06,6.263376662486349670e-06,6.369535588969168840e-06,6.475694515451988010e-06,6.581853441934807180e-06,6.688012368417626350e-06 +0.000000000000000000e+00,1.056499268736343935e-07,2.112998537472687869e-07,3.169497806209031937e-07,4.225997074945376268e-07,5.282496343681721130e-07,6.338995612418065991e-07,7.395494881154410852e-07,8.451994149890755713e-07,9.508493418627100574e-07,1.056499268736344649e-06,1.162149195609979241e-06,1.267799122483613833e-06,1.373449049357248425e-06,1.479098976230883017e-06,1.584748903104517609e-06,1.690398829978152201e-06,1.796048756851786793e-06,1.901698683725421385e-06,2.007348610599055766e-06,2.112998537472690146e-06,2.218648464346324526e-06,2.324298391219958906e-06,2.429948318093593287e-06,2.535598244967227667e-06,2.641248171840862047e-06,2.746898098714496427e-06,2.852548025588130808e-06,2.958197952461765188e-06,3.063847879335399568e-06,3.169497806209033948e-06,3.275147733082668329e-06,3.380797659956302709e-06,3.486447586829937089e-06,3.592097513703571469e-06,3.697747440577205849e-06,3.803397367450840230e-06,3.909047294324474610e-06,4.014697221198108990e-06,4.120347148071743370e-06,4.225997074945377751e-06,4.331647001819012131e-06,4.437296928692646511e-06,4.542946855566280891e-06,4.648596782439915272e-06,4.754246709313549652e-06,4.859896636187184032e-06,4.965546563060818412e-06,5.071196489934452793e-06,5.176846416808087173e-06,5.282496343681721553e-06,5.388146270555355933e-06,5.493796197428990314e-06,5.599446124302624694e-06,5.705096051176259074e-06,5.810745978049893454e-06,5.916395904923527835e-06,6.022045831797162215e-06,6.127695758670796595e-06,6.233345685544430975e-06,6.338995612418065355e-06,6.444645539291699736e-06,6.550295466165334116e-06,6.655945393038968496e-06 +0.000000000000000000e+00,1.021457431024969301e-07,2.042914862049938603e-07,3.064372293074907904e-07,4.085829724099877206e-07,5.107287155124847037e-07,6.128744586149816867e-07,7.150202017174786698e-07,8.171659448199756529e-07,9.193116879224726360e-07,1.021457431024969619e-06,1.123603174127466602e-06,1.225748917229963585e-06,1.327894660332460568e-06,1.430040403434957551e-06,1.532186146537454534e-06,1.634331889639951518e-06,1.736477632742448501e-06,1.838623375844945484e-06,1.940769118947442467e-06,2.042914862049939662e-06,2.145060605152436856e-06,2.247206348254934051e-06,2.349352091357431246e-06,2.451497834459928441e-06,2.553643577562425636e-06,2.655789320664922831e-06,2.757935063767420026e-06,2.860080806869917220e-06,2.962226549972414415e-06,3.064372293074911610e-06,3.166518036177408805e-06,3.268663779279906000e-06,3.370809522382403195e-06,3.472955265484900389e-06,3.575101008587397584e-06,3.677246751689894779e-06,3.779392494792391974e-06,3.881538237894889169e-06,3.983683980997386787e-06,4.085829724099884405e-06,4.187975467202382024e-06,4.290121210304879642e-06,4.392266953407377261e-06,4.494412696509874879e-06,4.596558439612372497e-06,4.698704182714870116e-06,4.800849925817367734e-06,4.902995668919865352e-06,5.005141412022362971e-06,5.107287155124860589e-06,5.209432898227358207e-06,5.311578641329855826e-06,5.413724384432353444e-06,5.515870127534851062e-06,5.618015870637348681e-06,5.720161613739846299e-06,5.822307356842343918e-06,5.924453099944841536e-06,6.026598843047339154e-06,6.128744586149836773e-06,6.230890329252334391e-06,6.333036072354832009e-06,6.435181815457329628e-06 +0.000000000000000000e+00,1.093211102264686765e-07,2.186422204529373530e-07,3.279633306794060163e-07,4.372844409058746532e-07,5.466055511323432900e-07,6.559266613588119268e-07,7.652477715852805636e-07,8.745688818117492004e-07,9.838899920382178372e-07,1.093211102264686580e-06,1.202532212491155323e-06,1.311853322717624065e-06,1.421174432944092808e-06,1.530495543170561551e-06,1.639816653397030293e-06,1.749137763623499036e-06,1.858458873849967779e-06,1.967779984076436522e-06,2.077101094302905264e-06,2.186422204529374007e-06,2.295743314755842750e-06,2.405064424982311492e-06,2.514385535208780235e-06,2.623706645435248978e-06,2.733027755661717720e-06,2.842348865888186463e-06,2.951669976114655206e-06,3.060991086341123948e-06,3.170312196567592691e-06,3.279633306794061434e-06,3.388954417020530177e-06,3.498275527246998919e-06,3.607596637473467662e-06,3.716917747699936405e-06,3.826238857926405571e-06,3.935559968152874737e-06,4.044881078379343903e-06,4.154202188605813070e-06,4.263523298832282236e-06,4.372844409058751402e-06,4.482165519285220568e-06,4.591486629511689734e-06,4.700807739738158901e-06,4.810128849964628067e-06,4.919449960191097233e-06,5.028771070417566399e-06,5.138092180644035565e-06,5.247413290870504732e-06,5.356734401096973898e-06,5.466055511323443064e-06,5.575376621549912230e-06,5.684697731776381397e-06,5.794018842002850563e-06,5.903339952229319729e-06,6.012661062455788895e-06,6.121982172682258061e-06,6.231303282908727228e-06,6.340624393135196394e-06,6.449945503361665560e-06,6.559266613588134726e-06,6.668587723814603892e-06,6.777908834041073059e-06,6.887229944267542225e-06 +0.000000000000000000e+00,1.063344931465370633e-07,2.126689862930741266e-07,3.190034794396112163e-07,4.253379725861483060e-07,5.316724657326853958e-07,6.380069588792224326e-07,7.443414520257594694e-07,8.506759451722965062e-07,9.570104383188336489e-07,1.063344931465370792e-06,1.169679424611907934e-06,1.276013917758445077e-06,1.382348410904982220e-06,1.488682904051519362e-06,1.595017397198056505e-06,1.701351890344593648e-06,1.807686383491130790e-06,1.914020876637668145e-06,2.020355369784205499e-06,2.126689862930742854e-06,2.233024356077280208e-06,2.339358849223817563e-06,2.445693342370354917e-06,2.552027835516892271e-06,2.658362328663429626e-06,2.764696821809966980e-06,2.871031314956504335e-06,2.977365808103041689e-06,3.083700301249579044e-06,3.190034794396116398e-06,3.296369287542653753e-06,3.402703780689191107e-06,3.509038273835728461e-06,3.615372766982265816e-06,3.721707260128803170e-06,3.828041753275340525e-06,3.934376246421877879e-06,4.040710739568415234e-06,4.147045232714952588e-06,4.253379725861489943e-06,4.359714219008027297e-06,4.466048712154564651e-06,4.572383205301102006e-06,4.678717698447639360e-06,4.785052191594176715e-06,4.891386684740714069e-06,4.997721177887251424e-06,5.104055671033788778e-06,5.210390164180326133e-06,5.316724657326863487e-06,5.423059150473400841e-06,5.529393643619938196e-06,5.635728136766475550e-06,5.742062629913012905e-06,5.848397123059550259e-06,5.954731616206087614e-06,6.061066109352624968e-06,6.167400602499162323e-06,6.273735095645699677e-06,6.380069588792237031e-06,6.486404081938774386e-06,6.592738575085311740e-06,6.699073068231849095e-06 +0.000000000000000000e+00,1.092143510742721804e-07,2.184287021485443608e-07,3.276430532228165148e-07,4.368574042970886687e-07,5.460717553713608226e-07,6.552861064456330295e-07,7.645004575199052364e-07,8.737148085941774433e-07,9.829291596684495443e-07,1.092143510742721645e-06,1.201357861816993746e-06,1.310572212891265847e-06,1.419786563965537948e-06,1.529000915039810049e-06,1.638215266114082150e-06,1.747429617188354251e-06,1.856643968262626352e-06,1.965858319336898242e-06,2.075072670411170131e-06,2.184287021485442020e-06,2.293501372559713909e-06,2.402715723633985799e-06,2.511930074708257688e-06,2.621144425782529577e-06,2.730358776856801466e-06,2.839573127931073356e-06,2.948787479005345245e-06,3.058001830079617134e-06,3.167216181153889023e-06,3.276430532228160912e-06,3.385644883302432802e-06,3.494859234376704691e-06,3.604073585450976580e-06,3.713287936525248469e-06,3.822502287599520359e-06,3.931716638673792248e-06,4.040930989748064137e-06,4.150145340822336026e-06,4.259359691896607916e-06,4.368574042970879805e-06,4.477788394045151694e-06,4.587002745119423583e-06,4.696217096193695473e-06,4.805431447267967362e-06,4.914645798342239251e-06,5.023860149416511140e-06,5.133074500490783030e-06,5.242288851565054919e-06,5.351503202639326808e-06,5.460717553713598697e-06,5.569931904787870587e-06,5.679146255862142476e-06,5.788360606936414365e-06,5.897574958010686254e-06,6.006789309084958144e-06,6.116003660159230033e-06,6.225218011233501922e-06,6.334432362307773811e-06,6.443646713382045701e-06,6.552861064456317590e-06,6.662075415530589479e-06,6.771289766604861368e-06,6.880504117679133258e-06 +0.000000000000000000e+00,1.052638237296761241e-07,2.105276474593522481e-07,3.157914711890283590e-07,4.210552949187044433e-07,5.263191186483804748e-07,6.315829423780565062e-07,7.368467661077325376e-07,8.421105898374085690e-07,9.473744135670846005e-07,1.052638237296760526e-06,1.157902061026436452e-06,1.263165884756112377e-06,1.368429708485788303e-06,1.473693532215464228e-06,1.578957355945140154e-06,1.684221179674816079e-06,1.789485003404492005e-06,1.894748827134167930e-06,2.000012650863843856e-06,2.105276474593519781e-06,2.210540298323195707e-06,2.315804122052871633e-06,2.421067945782547558e-06,2.526331769512223484e-06,2.631595593241899409e-06,2.736859416971575335e-06,2.842123240701251260e-06,2.947387064430927186e-06,3.052650888160603111e-06,3.157914711890279037e-06,3.263178535619954962e-06,3.368442359349630888e-06,3.473706183079306814e-06,3.578970006808982739e-06,3.684233830538658665e-06,3.789497654268334590e-06,3.894761477998010939e-06,4.000025301727686865e-06,4.105289125457362790e-06,4.210552949187038716e-06,4.315816772916714641e-06,4.421080596646390567e-06,4.526344420376066493e-06,4.631608244105742418e-06,4.736872067835418344e-06,4.842135891565094269e-06,4.947399715294770195e-06,5.052663539024446120e-06,5.157927362754122046e-06,5.263191186483797971e-06,5.368455010213473897e-06,5.473718833943149822e-06,5.578982657672825748e-06,5.684246481402501674e-06,5.789510305132177599e-06,5.894774128861853525e-06,6.000037952591529450e-06,6.105301776321205376e-06,6.210565600050881301e-06,6.315829423780557227e-06,6.421093247510233152e-06,6.526357071239909078e-06,6.631620894969585003e-06 +0.000000000000000000e+00,1.093211102264679751e-07,2.186422204529359501e-07,3.279633306794038988e-07,4.372844409058718474e-07,5.466055511323397960e-07,6.559266613588077975e-07,7.652477715852757990e-07,8.745688818117438006e-07,9.838899920382119080e-07,1.093211102264680015e-06,1.202532212491148123e-06,1.311853322717616230e-06,1.421174432944084338e-06,1.530495543170552445e-06,1.639816653397020553e-06,1.749137763623488660e-06,1.858458873849956767e-06,1.967779984076424663e-06,2.077101094302892559e-06,2.186422204529360454e-06,2.295743314755828350e-06,2.405064424982296246e-06,2.514385535208764141e-06,2.623706645435232037e-06,2.733027755661699933e-06,2.842348865888167828e-06,2.951669976114635724e-06,3.060991086341103620e-06,3.170312196567571515e-06,3.279633306794039411e-06,3.388954417020507307e-06,3.498275527246975202e-06,3.607596637473443098e-06,3.716917747699910994e-06,3.826238857926378466e-06,3.935559968152845938e-06,4.044881078379313410e-06,4.154202188605780882e-06,4.263523298832248354e-06,4.372844409058715827e-06,4.482165519285183299e-06,4.591486629511650771e-06,4.700807739738118243e-06,4.810128849964585715e-06,4.919449960191053187e-06,5.028771070417520659e-06,5.138092180643988132e-06,5.247413290870455604e-06,5.356734401096923076e-06,5.466055511323390548e-06,5.575376621549858020e-06,5.684697731776325492e-06,5.794018842002792965e-06,5.903339952229260437e-06,6.012661062455727909e-06,6.121982172682195381e-06,6.231303282908662853e-06,6.340624393135130325e-06,6.449945503361597797e-06,6.559266613588065270e-06,6.668587723814532742e-06,6.777908834041000214e-06,6.887229944267467686e-06 +0.000000000000000000e+00,1.061589264828195142e-07,2.123178529656390284e-07,3.184767794484585691e-07,4.246357059312781097e-07,5.307946324140976504e-07,6.369535588969171381e-07,7.431124853797366258e-07,8.492714118625561136e-07,9.554303383453754954e-07,1.061589264828194877e-06,1.167748191311014259e-06,1.273907117793833641e-06,1.380066044276653023e-06,1.486224970759472405e-06,1.592383897242291786e-06,1.698542823725111168e-06,1.804701750207930550e-06,1.910860676690750144e-06,2.017019603173569737e-06,2.123178529656389331e-06,2.229337456139208925e-06,2.335496382622028518e-06,2.441655309104848112e-06,2.547814235587667705e-06,2.653973162070487299e-06,2.760132088553306893e-06,2.866291015036126486e-06,2.972449941518946080e-06,3.078608868001765673e-06,3.184767794484585267e-06,3.290926720967404861e-06,3.397085647450224454e-06,3.503244573933044048e-06,3.609403500415863641e-06,3.715562426898683235e-06,3.821721353381502829e-06,3.927880279864322846e-06,4.034039206347142863e-06,4.140198132829962880e-06,4.246357059312782897e-06,4.352515985795602914e-06,4.458674912278422931e-06,4.564833838761242949e-06,4.670992765244062966e-06,4.777151691726882983e-06,4.883310618209703000e-06,4.989469544692523017e-06,5.095628471175343034e-06,5.201787397658163051e-06,5.307946324140983068e-06,5.414105250623803086e-06,5.520264177106623103e-06,5.626423103589443120e-06,5.732582030072263137e-06,5.838740956555083154e-06,5.944899883037903171e-06,6.051058809520723188e-06,6.157217736003543205e-06,6.263376662486363222e-06,6.369535588969183240e-06,6.475694515452003257e-06,6.581853441934823274e-06,6.688012368417643291e-06 +0.000000000000000000e+00,1.056499268736332950e-07,2.112998537472665900e-07,3.169497806208998585e-07,4.225997074945331270e-07,5.282496343681663955e-07,6.338995612417997169e-07,7.395494881154330384e-07,8.451994149890663598e-07,9.508493418626996813e-07,1.056499268736333003e-06,1.162149195609966324e-06,1.267799122483599646e-06,1.373449049357232967e-06,1.479098976230866289e-06,1.584748903104499610e-06,1.690398829978132931e-06,1.796048756851766253e-06,1.901698683725399574e-06,2.007348610599032896e-06,2.112998537472666429e-06,2.218648464346299962e-06,2.324298391219933495e-06,2.429948318093567029e-06,2.535598244967200562e-06,2.641248171840834095e-06,2.746898098714467628e-06,2.852548025588101161e-06,2.958197952461734695e-06,3.063847879335368228e-06,3.169497806209001761e-06,3.275147733082635294e-06,3.380797659956268827e-06,3.486447586829902361e-06,3.592097513703535894e-06,3.697747440577169427e-06,3.803397367450802960e-06,3.909047294324436493e-06,4.014697221198070027e-06,4.120347148071703560e-06,4.225997074945337093e-06,4.331647001818970626e-06,4.437296928692604160e-06,4.542946855566237693e-06,4.648596782439871226e-06,4.754246709313504759e-06,4.859896636187138292e-06,4.965546563060771826e-06,5.071196489934405359e-06,5.176846416808038892e-06,5.282496343681672425e-06,5.388146270555305958e-06,5.493796197428939492e-06,5.599446124302573025e-06,5.705096051176206558e-06,5.810745978049840091e-06,5.916395904923473624e-06,6.022045831797107158e-06,6.127695758670740691e-06,6.233345685544374224e-06,6.338995612418007757e-06,6.444645539291641290e-06,6.550295466165274824e-06,6.655945393038908357e-06 +0.000000000000000000e+00,1.021457431024964537e-07,2.042914862049929074e-07,3.064372293074893611e-07,4.085829724099858147e-07,5.107287155124822684e-07,6.128744586149787221e-07,7.150202017174751758e-07,8.171659448199716295e-07,9.193116879224680832e-07,1.021457431024964537e-06,1.123603174127461096e-06,1.225748917229957656e-06,1.327894660332454216e-06,1.430040403434950775e-06,1.532186146537447335e-06,1.634331889639943894e-06,1.736477632742440454e-06,1.838623375844937013e-06,1.940769118947433573e-06,2.042914862049930344e-06,2.145060605152427116e-06,2.247206348254923887e-06,2.349352091357420658e-06,2.451497834459917430e-06,2.553643577562414201e-06,2.655789320664910972e-06,2.757935063767407744e-06,2.860080806869904515e-06,2.962226549972401286e-06,3.064372293074898058e-06,3.166518036177394829e-06,3.268663779279891600e-06,3.370809522382388371e-06,3.472955265484885143e-06,3.575101008587381914e-06,3.677246751689878685e-06,3.779392494792375457e-06,3.881538237894872228e-06,3.983683980997368999e-06,4.085829724099865771e-06,4.187975467202362542e-06,4.290121210304859313e-06,4.392266953407356085e-06,4.494412696509852856e-06,4.596558439612349627e-06,4.698704182714846399e-06,4.800849925817343170e-06,4.902995668919839941e-06,5.005141412022336713e-06,5.107287155124833484e-06,5.209432898227330255e-06,5.311578641329827027e-06,5.413724384432323798e-06,5.515870127534820569e-06,5.618015870637317341e-06,5.720161613739814112e-06,5.822307356842310883e-06,5.924453099944807655e-06,6.026598843047304426e-06,6.128744586149801197e-06,6.230890329252297969e-06,6.333036072354794740e-06,6.435181815457291511e-06 +0.000000000000000000e+00,1.075974312402874007e-07,2.151948624805748013e-07,3.227922937208622020e-07,4.303897249611496026e-07,5.379871562014370033e-07,6.455845874417244040e-07,7.531820186820118046e-07,8.607794499222992053e-07,9.683768811625865000e-07,1.075974312402873795e-06,1.183571743643161090e-06,1.291169174883448384e-06,1.398766606123735679e-06,1.506364037364022974e-06,1.613961468604310269e-06,1.721558899844597564e-06,1.829156331084884858e-06,1.936753762325172153e-06,2.044351193565459448e-06,2.151948624805746743e-06,2.259546056046034037e-06,2.367143487286321332e-06,2.474740918526608627e-06,2.582338349766895922e-06,2.689935781007183217e-06,2.797533212247470511e-06,2.905130643487757806e-06,3.012728074728045101e-06,3.120325505968332396e-06,3.227922937208619690e-06,3.335520368448906985e-06,3.443117799689194280e-06,3.550715230929481575e-06,3.658312662169768870e-06,3.765910093410056164e-06,3.873507524650343459e-06,3.981104955890630754e-06,4.088702387130918049e-06,4.196299818371205343e-06,4.303897249611492638e-06,4.411494680851779933e-06,4.519092112092067228e-06,4.626689543332354523e-06,4.734286974572641817e-06,4.841884405812929112e-06,4.949481837053216407e-06,5.057079268293503702e-06,5.164676699533790996e-06,5.272274130774078291e-06,5.379871562014365586e-06,5.487468993254652881e-06,5.595066424494940176e-06,5.702663855735227470e-06,5.810261286975514765e-06,5.917858718215802060e-06,6.025456149456089355e-06,6.133053580696376649e-06,6.240651011936663944e-06,6.348248443176951239e-06,6.455845874417238534e-06,6.563443305657525829e-06,6.671040736897813123e-06,6.778638168138100418e-06 +0.000000000000000000e+00,1.060920849791240908e-07,2.121841699582481816e-07,3.182762549373722724e-07,4.243683399164963632e-07,5.304604248956205069e-07,6.365525098747446506e-07,7.426445948538687944e-07,8.487366798329929381e-07,9.548287648121170818e-07,1.060920849791241226e-06,1.167012934770365369e-06,1.273105019749489513e-06,1.379197104728613657e-06,1.485289189707737801e-06,1.591381274686861944e-06,1.697473359665986088e-06,1.803565444645110232e-06,1.909657529624234587e-06,2.015749614603359154e-06,2.121841699582483722e-06,2.227933784561608289e-06,2.334025869540732856e-06,2.440117954519857423e-06,2.546210039498981991e-06,2.652302124478106558e-06,2.758394209457231125e-06,2.864486294436355692e-06,2.970578379415480260e-06,3.076670464394604827e-06,3.182762549373729394e-06,3.288854634352853961e-06,3.394946719331978529e-06,3.501038804311103096e-06,3.607130889290227663e-06,3.713222974269352230e-06,3.819315059248476798e-06,3.925407144227601365e-06,4.031499229206725932e-06,4.137591314185850499e-06,4.243683399164975067e-06,4.349775484144099634e-06,4.455867569123224201e-06,4.561959654102348768e-06,4.668051739081473336e-06,4.774143824060597903e-06,4.880235909039722470e-06,4.986327994018847037e-06,5.092420078997971605e-06,5.198512163977096172e-06,5.304604248956220739e-06,5.410696333935345306e-06,5.516788418914469874e-06,5.622880503893594441e-06,5.728972588872719008e-06,5.835064673851843575e-06,5.941156758830968143e-06,6.047248843810092710e-06,6.153340928789217277e-06,6.259433013768341844e-06,6.365525098747466412e-06,6.471617183726590979e-06,6.577709268705715546e-06,6.683801353684840113e-06 +0.000000000000000000e+00,1.041339928546414955e-07,2.082679857092829910e-07,3.124019785639245130e-07,4.165359714185660350e-07,5.206699642732075570e-07,6.248039571278490260e-07,7.289379499824904951e-07,8.330719428371319641e-07,9.372059356917734331e-07,1.041339928546414902e-06,1.145473921401056371e-06,1.249607914255697840e-06,1.353741907110339309e-06,1.457875899964980778e-06,1.562009892819622247e-06,1.666143885674263716e-06,1.770277878528905185e-06,1.874411871383546655e-06,1.978545864238188335e-06,2.082679857092830228e-06,2.186813849947472120e-06,2.290947842802114013e-06,2.395081835656755906e-06,2.499215828511397798e-06,2.603349821366039691e-06,2.707483814220681583e-06,2.811617807075323476e-06,2.915751799929965368e-06,3.019885792784607261e-06,3.124019785639249153e-06,3.228153778493891046e-06,3.332287771348532939e-06,3.436421764203174831e-06,3.540555757057816724e-06,3.644689749912458616e-06,3.748823742767100509e-06,3.852957735621742401e-06,3.957091728476384294e-06,4.061225721331026186e-06,4.165359714185668079e-06,4.269493707040309972e-06,4.373627699894951864e-06,4.477761692749593757e-06,4.581895685604235649e-06,4.686029678458877542e-06,4.790163671313519434e-06,4.894297664168161327e-06,4.998431657022803220e-06,5.102565649877445112e-06,5.206699642732087005e-06,5.310833635586728897e-06,5.414967628441370790e-06,5.519101621296012682e-06,5.623235614150654575e-06,5.727369607005296467e-06,5.831503599859938360e-06,5.935637592714580253e-06,6.039771585569222145e-06,6.143905578423864038e-06,6.248039571278505930e-06,6.352173564133147823e-06,6.456307556987789715e-06,6.560441549842431608e-06 +0.000000000000000000e+00,1.075974312402867521e-07,2.151948624805735043e-07,3.227922937208602432e-07,4.303897249611469557e-07,5.379871562014337210e-07,6.455845874417204864e-07,7.531820186820072518e-07,8.607794499222940172e-07,9.683768811625807826e-07,1.075974312402867442e-06,1.183571743643154102e-06,1.291169174883440761e-06,1.398766606123727421e-06,1.506364037364014080e-06,1.613961468604300740e-06,1.721558899844587399e-06,1.829156331084874059e-06,1.936753762325160718e-06,2.044351193565447589e-06,2.151948624805734461e-06,2.259546056046021332e-06,2.367143487286308203e-06,2.474740918526595074e-06,2.582338349766881946e-06,2.689935781007168817e-06,2.797533212247455688e-06,2.905130643487742559e-06,3.012728074728029431e-06,3.120325505968316302e-06,3.227922937208603173e-06,3.335520368448890045e-06,3.443117799689176916e-06,3.550715230929463787e-06,3.658312662169750658e-06,3.765910093410037530e-06,3.873507524650323977e-06,3.981104955890610425e-06,4.088702387130896873e-06,4.196299818371183321e-06,4.303897249611469768e-06,4.411494680851756216e-06,4.519092112092042664e-06,4.626689543332329112e-06,4.734286974572615559e-06,4.841884405812902007e-06,4.949481837053188455e-06,5.057079268293474903e-06,5.164676699533761350e-06,5.272274130774047798e-06,5.379871562014334246e-06,5.487468993254620694e-06,5.595066424494907141e-06,5.702663855735193589e-06,5.810261286975480037e-06,5.917858718215766485e-06,6.025456149456052932e-06,6.133053580696339380e-06,6.240651011936625828e-06,6.348248443176912275e-06,6.455845874417198723e-06,6.563443305657485171e-06,6.671040736897771619e-06,6.778638168138058066e-06 +0.000000000000000000e+00,1.060920849791226482e-07,2.121841699582452964e-07,3.182762549373679313e-07,4.243683399164905398e-07,5.304604248956130954e-07,6.365525098747356509e-07,7.426445948538582065e-07,8.487366798329807620e-07,9.548287648121033176e-07,1.060920849791225767e-06,1.167012934770348217e-06,1.273105019749470667e-06,1.379197104728593116e-06,1.485289189707715566e-06,1.591381274686838016e-06,1.697473359665960465e-06,1.803565444645082915e-06,1.909657529624205365e-06,2.015749614603327814e-06,2.121841699582450264e-06,2.227933784561572714e-06,2.334025869540695163e-06,2.440117954519817613e-06,2.546210039498940063e-06,2.652302124478062512e-06,2.758394209457184962e-06,2.864486294436307412e-06,2.970578379415429861e-06,3.076670464394552311e-06,3.182762549373674761e-06,3.288854634352797210e-06,3.394946719331919660e-06,3.501038804311042110e-06,3.607130889290164559e-06,3.713222974269287009e-06,3.819315059248409882e-06,3.925407144227532755e-06,4.031499229206655628e-06,4.137591314185778502e-06,4.243683399164901375e-06,4.349775484144024248e-06,4.455867569123147121e-06,4.561959654102269994e-06,4.668051739081392868e-06,4.774143824060515741e-06,4.880235909039638614e-06,4.986327994018761487e-06,5.092420078997884360e-06,5.198512163977007234e-06,5.304604248956130107e-06,5.410696333935252980e-06,5.516788418914375853e-06,5.622880503893498726e-06,5.728972588872621599e-06,5.835064673851744473e-06,5.941156758830867346e-06,6.047248843809990219e-06,6.153340928789113092e-06,6.259433013768235965e-06,6.365525098747358839e-06,6.471617183726481712e-06,6.577709268705604585e-06,6.683801353684727458e-06 +0.000000000000000000e+00,1.041339928546410058e-07,2.082679857092820116e-07,3.124019785639230307e-07,4.165359714185640762e-07,5.206699642732051217e-07,6.248039571278461673e-07,7.289379499824872128e-07,8.330719428371282583e-07,9.372059356917693039e-07,1.041339928546410455e-06,1.145473921401051501e-06,1.249607914255692546e-06,1.353741907110333592e-06,1.457875899964974637e-06,1.562009892819615683e-06,1.666143885674256728e-06,1.770277878528897774e-06,1.874411871383538819e-06,1.978545864238179865e-06,2.082679857092820911e-06,2.186813849947461956e-06,2.290947842802103002e-06,2.395081835656744047e-06,2.499215828511385093e-06,2.603349821366026138e-06,2.707483814220667184e-06,2.811617807075308229e-06,2.915751799929949275e-06,3.019885792784590320e-06,3.124019785639231366e-06,3.228153778493872411e-06,3.332287771348513457e-06,3.436421764203154502e-06,3.540555757057795548e-06,3.644689749912436593e-06,3.748823742767077639e-06,3.852957735621718684e-06,3.957091728476359730e-06,4.061225721331000775e-06,4.165359714185641821e-06,4.269493707040282867e-06,4.373627699894923912e-06,4.477761692749564958e-06,4.581895685604206003e-06,4.686029678458847049e-06,4.790163671313488094e-06,4.894297664168129140e-06,4.998431657022770185e-06,5.102565649877411231e-06,5.206699642732052276e-06,5.310833635586693322e-06,5.414967628441334367e-06,5.519101621295975413e-06,5.623235614150616458e-06,5.727369607005257504e-06,5.831503599859898549e-06,5.935637592714539595e-06,6.039771585569180640e-06,6.143905578423821686e-06,6.248039571278462732e-06,6.352173564133103777e-06,6.456307556987744823e-06,6.560441549842385868e-06 +0.000000000000000000e+00,1.114447864075044086e-07,2.228895728150088172e-07,3.343343592225132125e-07,4.457791456300175814e-07,5.572239320375220033e-07,6.686687184450264251e-07,7.801135048525308469e-07,8.915582912600352687e-07,1.003003077667539691e-06,1.114447864075044007e-06,1.225892650482548322e-06,1.337337436890052638e-06,1.448782223297556954e-06,1.560227009705061270e-06,1.671671796112565586e-06,1.783116582520069902e-06,1.894561368927574218e-06,2.006006155335078534e-06,2.117450941742583062e-06,2.228895728150087590e-06,2.340340514557592117e-06,2.451785300965096645e-06,2.563230087372601173e-06,2.674674873780105700e-06,2.786119660187610228e-06,2.897564446595114756e-06,3.009009233002619283e-06,3.120454019410123811e-06,3.231898805817628339e-06,3.343343592225132867e-06,3.454788378632637394e-06,3.566233165040141922e-06,3.677677951447646450e-06,3.789122737855150977e-06,3.900567524262655505e-06,4.012012310670159609e-06,4.123457097077663714e-06,4.234901883485167818e-06,4.346346669892671922e-06,4.457791456300176026e-06,4.569236242707680130e-06,4.680681029115184234e-06,4.792125815522688339e-06,4.903570601930192443e-06,5.015015388337696547e-06,5.126460174745200651e-06,5.237904961152704755e-06,5.349349747560208860e-06,5.460794533967712964e-06,5.572239320375217068e-06,5.683684106782721172e-06,5.795128893190225276e-06,5.906573679597729381e-06,6.018018466005233485e-06,6.129463252412737589e-06,6.240908038820241693e-06,6.352352825227745797e-06,6.463797611635249902e-06,6.575242398042754006e-06,6.686687184450258110e-06,6.798131970857762214e-06,6.909576757265266318e-06,7.021021543672770422e-06 +0.000000000000000000e+00,1.094184959478020116e-07,2.188369918956040232e-07,3.282554878434060481e-07,4.376739837912080994e-07,5.470924797390101507e-07,6.565109756868122020e-07,7.659294716346142533e-07,8.753479675824163047e-07,9.847664635302183560e-07,1.094184959478020301e-06,1.203603455425822247e-06,1.313021951373624192e-06,1.422440447321426138e-06,1.531858943269228083e-06,1.641277439217030029e-06,1.750695935164831974e-06,1.860114431112633919e-06,1.969532927060435865e-06,2.078951423008237810e-06,2.188369918956039756e-06,2.297788414903841701e-06,2.407206910851643647e-06,2.516625406799445592e-06,2.626043902747247538e-06,2.735462398695049483e-06,2.844880894642851428e-06,2.954299390590653374e-06,3.063717886538455319e-06,3.173136382486257265e-06,3.282554878434059210e-06,3.391973374381861156e-06,3.501391870329663101e-06,3.610810366277465046e-06,3.720228862225266992e-06,3.829647358173068937e-06,3.939065854120870883e-06,4.048484350068672828e-06,4.157902846016474774e-06,4.267321341964276719e-06,4.376739837912078665e-06,4.486158333859880610e-06,4.595576829807682555e-06,4.704995325755484501e-06,4.814413821703286446e-06,4.923832317651088392e-06,5.033250813598890337e-06,5.142669309546692283e-06,5.252087805494494228e-06,5.361506301442296173e-06,5.470924797390098119e-06,5.580343293337900064e-06,5.689761789285702010e-06,5.799180285233503955e-06,5.908598781181305901e-06,6.018017277129107846e-06,6.127435773076909792e-06,6.236854269024711737e-06,6.346272764972513682e-06,6.455691260920315628e-06,6.565109756868117573e-06,6.674528252815919519e-06,6.783946748763721464e-06,6.893365244711523410e-06 +0.000000000000000000e+00,1.075006758612061013e-07,2.150013517224122026e-07,3.225020275836183303e-07,4.300027034448244581e-07,5.375033793060305858e-07,6.450040551672366606e-07,7.525047310284427354e-07,8.600054068896488102e-07,9.675060827508547792e-07,1.075006758612060748e-06,1.182507434473266717e-06,1.290008110334472686e-06,1.397508786195678655e-06,1.505009462056884624e-06,1.612510137918090593e-06,1.720010813779296562e-06,1.827511489640502531e-06,1.935012165501708711e-06,2.042512841362914892e-06,2.150013517224121073e-06,2.257514193085327253e-06,2.365014868946533434e-06,2.472515544807739615e-06,2.580016220668945795e-06,2.687516896530151976e-06,2.795017572391358157e-06,2.902518248252564337e-06,3.010018924113770518e-06,3.117519599974976699e-06,3.225020275836182880e-06,3.332520951697389060e-06,3.440021627558595241e-06,3.547522303419801422e-06,3.655022979281007602e-06,3.762523655142213783e-06,3.870024331003419964e-06,3.977525006864626568e-06,4.085025682725833172e-06,4.192526358587039776e-06,4.300027034448246380e-06,4.407527710309452985e-06,4.515028386170659589e-06,4.622529062031866193e-06,4.730029737893072797e-06,4.837530413754279401e-06,4.945031089615486006e-06,5.052531765476692610e-06,5.160032441337899214e-06,5.267533117199105818e-06,5.375033793060312422e-06,5.482534468921519027e-06,5.590035144782725631e-06,5.697535820643932235e-06,5.805036496505138839e-06,5.912537172366345444e-06,6.020037848227552048e-06,6.127538524088758652e-06,6.235039199949965256e-06,6.342539875811171860e-06,6.450040551672378465e-06,6.557541227533585069e-06,6.665041903394791673e-06,6.772542579255998277e-06 +0.000000000000000000e+00,1.114447864075040115e-07,2.228895728150080231e-07,3.343343592225120479e-07,4.457791456300160991e-07,5.572239320375200974e-07,6.686687184450240958e-07,7.801135048525280941e-07,8.915582912600320924e-07,1.003003077667536091e-06,1.114447864075040195e-06,1.225892650482544299e-06,1.337337436890048403e-06,1.448782223297552507e-06,1.560227009705056612e-06,1.671671796112560716e-06,1.783116582520064820e-06,1.894561368927568924e-06,2.006006155335073028e-06,2.117450941742577133e-06,2.228895728150081237e-06,2.340340514557585341e-06,2.451785300965089445e-06,2.563230087372593549e-06,2.674674873780097654e-06,2.786119660187601758e-06,2.897564446595105862e-06,3.009009233002609966e-06,3.120454019410114070e-06,3.231898805817618175e-06,3.343343592225122279e-06,3.454788378632626383e-06,3.566233165040130487e-06,3.677677951447634591e-06,3.789122737855138695e-06,3.900567524262642800e-06,4.012012310670146904e-06,4.123457097077651008e-06,4.234901883485155112e-06,4.346346669892659216e-06,4.457791456300163321e-06,4.569236242707667425e-06,4.680681029115171529e-06,4.792125815522675633e-06,4.903570601930179737e-06,5.015015388337683842e-06,5.126460174745187946e-06,5.237904961152692050e-06,5.349349747560196154e-06,5.460794533967700258e-06,5.572239320375204363e-06,5.683684106782708467e-06,5.795128893190212571e-06,5.906573679597716675e-06,6.018018466005220779e-06,6.129463252412724883e-06,6.240908038820228988e-06,6.352352825227733092e-06,6.463797611635237196e-06,6.575242398042741300e-06,6.686687184450245404e-06,6.798131970857749509e-06,6.909576757265253613e-06,7.021021543672757717e-06 +0.000000000000000000e+00,1.094184959478013631e-07,2.188369918956027262e-07,3.282554878434040893e-07,4.376739837912054524e-07,5.470924797390067626e-07,6.565109756868080727e-07,7.659294716346093829e-07,8.753479675824106931e-07,9.847664635302120032e-07,1.094184959478013313e-06,1.203603455425814624e-06,1.313021951373615934e-06,1.422440447321417244e-06,1.531858943269218554e-06,1.641277439217019864e-06,1.750695935164821174e-06,1.860114431112622485e-06,1.969532927060424006e-06,2.078951423008225528e-06,2.188369918956027050e-06,2.297788414903828572e-06,2.407206910851630094e-06,2.516625406799431616e-06,2.626043902747233138e-06,2.735462398695034660e-06,2.844880894642836182e-06,2.954299390590637704e-06,3.063717886538439226e-06,3.173136382486240748e-06,3.282554878434042270e-06,3.391973374381843791e-06,3.501391870329645313e-06,3.610810366277446835e-06,3.720228862225248357e-06,3.829647358173050303e-06,3.939065854120852248e-06,4.048484350068654194e-06,4.157902846016456139e-06,4.267321341964258084e-06,4.376739837912060030e-06,4.486158333859861975e-06,4.595576829807663921e-06,4.704995325755465866e-06,4.814413821703267812e-06,4.923832317651069757e-06,5.033250813598871702e-06,5.142669309546673648e-06,5.252087805494475593e-06,5.361506301442277539e-06,5.470924797390079484e-06,5.580343293337881430e-06,5.689761789285683375e-06,5.799180285233485321e-06,5.908598781181287266e-06,6.018017277129089211e-06,6.127435773076891157e-06,6.236854269024693102e-06,6.346272764972495048e-06,6.455691260920296993e-06,6.565109756868098939e-06,6.674528252815900884e-06,6.783946748763702829e-06,6.893365244711504775e-06 +0.000000000000000000e+00,1.075006758612064322e-07,2.150013517224128643e-07,3.225020275836192832e-07,4.300027034448256757e-07,5.375033793060320681e-07,6.450040551672384606e-07,7.525047310284448530e-07,8.600054068896512454e-07,9.675060827508577438e-07,1.075006758612064348e-06,1.182507434473270952e-06,1.290008110334477556e-06,1.397508786195684161e-06,1.505009462056890765e-06,1.612510137918097369e-06,1.720010813779303973e-06,1.827511489640510577e-06,1.935012165501717182e-06,2.042512841362923786e-06,2.150013517224130390e-06,2.257514193085336994e-06,2.365014868946543598e-06,2.472515544807750203e-06,2.580016220668956807e-06,2.687516896530163411e-06,2.795017572391370015e-06,2.902518248252576619e-06,3.010018924113783224e-06,3.117519599974989828e-06,3.225020275836196432e-06,3.332520951697403036e-06,3.440021627558609640e-06,3.547522303419816245e-06,3.655022979281022849e-06,3.762523655142229453e-06,3.870024331003436057e-06,3.977525006864642661e-06,4.085025682725849266e-06,4.192526358587055870e-06,4.300027034448262474e-06,4.407527710309469078e-06,4.515028386170675682e-06,4.622529062031882287e-06,4.730029737893088891e-06,4.837530413754295495e-06,4.945031089615502099e-06,5.052531765476708704e-06,5.160032441337915308e-06,5.267533117199121912e-06,5.375033793060328516e-06,5.482534468921535120e-06,5.590035144782741725e-06,5.697535820643948329e-06,5.805036496505154933e-06,5.912537172366361537e-06,6.020037848227568141e-06,6.127538524088774746e-06,6.235039199949981350e-06,6.342539875811187954e-06,6.450040551672394558e-06,6.557541227533601162e-06,6.665041903394807767e-06,6.772542579256014371e-06 +0.000000000000000000e+00,1.157547011008080187e-07,2.315094022016160374e-07,3.472641033024240694e-07,4.630188044032321278e-07,5.787735055040401862e-07,6.945282066048482447e-07,8.102829077056563031e-07,9.260376088064643615e-07,1.041792309907272526e-06,1.157547011008080584e-06,1.273301712108888643e-06,1.389056413209696701e-06,1.504811114310504760e-06,1.620565815411312818e-06,1.736320516512120876e-06,1.852075217612928935e-06,1.967829918713736993e-06,2.083584619814545052e-06,2.199339320915353110e-06,2.315094022016161169e-06,2.430848723116969227e-06,2.546603424217777285e-06,2.662358125318585344e-06,2.778112826419393402e-06,2.893867527520201461e-06,3.009622228621009519e-06,3.125376929721817577e-06,3.241131630822625636e-06,3.356886331923433694e-06,3.472641033024241753e-06,3.588395734125049811e-06,3.704150435225857870e-06,3.819905136326665505e-06,3.935659837427473139e-06,4.051414538528280774e-06,4.167169239629088409e-06,4.282923940729896044e-06,4.398678641830703679e-06,4.514433342931511314e-06,4.630188044032318949e-06,4.745942745133126584e-06,4.861697446233934219e-06,4.977452147334741854e-06,5.093206848435549489e-06,5.208961549536357123e-06,5.324716250637164758e-06,5.440470951737972393e-06,5.556225652838780028e-06,5.671980353939587663e-06,5.787735055040395298e-06,5.903489756141202933e-06,6.019244457242010568e-06,6.134999158342818203e-06,6.250753859443625838e-06,6.366508560544433473e-06,6.482263261645241107e-06,6.598017962746048742e-06,6.713772663846856377e-06,6.829527364947664012e-06,6.945282066048471647e-06,7.061036767149279282e-06,7.176791468250086917e-06,7.292546169350894552e-06 +0.000000000000000000e+00,1.135690430873263968e-07,2.271380861746527936e-07,3.407071292619791904e-07,4.542761723493055872e-07,5.678452154366320370e-07,6.814142585239584867e-07,7.949833016112849364e-07,9.085523446986113862e-07,1.022121387785937836e-06,1.135690430873264286e-06,1.249259473960590735e-06,1.362828517047917185e-06,1.476397560135243635e-06,1.589966603222570085e-06,1.703535646309896534e-06,1.817104689397222984e-06,1.930673732484549434e-06,2.044242775571875672e-06,2.157811818659201910e-06,2.271380861746528148e-06,2.384949904833854386e-06,2.498518947921180624e-06,2.612087991008506862e-06,2.725657034095833100e-06,2.839226077183159338e-06,2.952795120270485576e-06,3.066364163357811814e-06,3.179933206445138052e-06,3.293502249532464290e-06,3.407071292619790528e-06,3.520640335707116766e-06,3.634209378794443004e-06,3.747778421881769242e-06,3.861347464969095480e-06,3.974916508056421718e-06,4.088485551143747956e-06,4.202054594231074194e-06,4.315623637318400432e-06,4.429192680405726670e-06,4.542761723493052907e-06,4.656330766580379145e-06,4.769899809667705383e-06,4.883468852755031621e-06,4.997037895842357859e-06,5.110606938929684097e-06,5.224175982017010335e-06,5.337745025104336573e-06,5.451314068191662811e-06,5.564883111278989049e-06,5.678452154366315287e-06,5.792021197453641525e-06,5.905590240540967763e-06,6.019159283628294001e-06,6.132728326715620239e-06,6.246297369802946477e-06,6.359866412890272715e-06,6.473435455977598953e-06,6.587004499064925191e-06,6.700573542152251429e-06,6.814142585239577667e-06,6.927711628326903905e-06,7.041280671414230143e-06,7.154849714501556381e-06 +0.000000000000000000e+00,1.112664252560603810e-07,2.225328505121207621e-07,3.337992757681811696e-07,4.450657010242415771e-07,5.563321262803019847e-07,6.675985515363623392e-07,7.788649767924226938e-07,8.901314020484830484e-07,1.001397827304543403e-06,1.112664252560603758e-06,1.223930677816664112e-06,1.335197103072724467e-06,1.446463528328784821e-06,1.557729953584845176e-06,1.668996378840905530e-06,1.780262804096965885e-06,1.891529229353026240e-06,2.002795654609086382e-06,2.114062079865146737e-06,2.225328505121207092e-06,2.336594930377267446e-06,2.447861355633327801e-06,2.559127780889388155e-06,2.670394206145448510e-06,2.781660631401508864e-06,2.892927056657569219e-06,3.004193481913629574e-06,3.115459907169689928e-06,3.226726332425750283e-06,3.337992757681810637e-06,3.449259182937870992e-06,3.560525608193931347e-06,3.671792033449991701e-06,3.783058458706052056e-06,3.894324883962112410e-06,4.005591309218172765e-06,4.116857734474233119e-06,4.228124159730293474e-06,4.339390584986353829e-06,4.450657010242414183e-06,4.561923435498474538e-06,4.673189860754534892e-06,4.784456286010595247e-06,4.895722711266655601e-06,5.006989136522715956e-06,5.118255561778776311e-06,5.229521987034836665e-06,5.340788412290897020e-06,5.452054837546957374e-06,5.563321262803017729e-06,5.674587688059078084e-06,5.785854113315138438e-06,5.897120538571198793e-06,6.008386963827259147e-06,6.119653389083319502e-06,6.230919814339379856e-06,6.342186239595440211e-06,6.453452664851500566e-06,6.564719090107560920e-06,6.675985515363621275e-06,6.787251940619681629e-06,6.898518365875741984e-06,7.009784791131802338e-06 +0.000000000000000000e+00,1.157547011008099245e-07,2.315094022016198491e-07,3.472641033024297869e-07,4.630188044032397511e-07,5.787735055040497154e-07,6.945282066048596796e-07,8.102829077056696439e-07,9.260376088064796081e-07,1.041792309907289466e-06,1.157547011008099219e-06,1.273301712108908971e-06,1.389056413209718724e-06,1.504811114310528476e-06,1.620565815411338229e-06,1.736320516512147981e-06,1.852075217612957734e-06,1.967829918713767486e-06,2.083584619814577239e-06,2.199339320915386991e-06,2.315094022016196744e-06,2.430848723117006496e-06,2.546603424217816249e-06,2.662358125318626001e-06,2.778112826419435754e-06,2.893867527520245506e-06,3.009622228621055259e-06,3.125376929721865011e-06,3.241131630822674764e-06,3.356886331923484516e-06,3.472641033024294269e-06,3.588395734125104021e-06,3.704150435225913774e-06,3.819905136326723103e-06,3.935659837427532432e-06,4.051414538528341761e-06,4.167169239629151090e-06,4.282923940729960419e-06,4.398678641830769748e-06,4.514433342931579077e-06,4.630188044032388406e-06,4.745942745133197735e-06,4.861697446234007064e-06,4.977452147334816393e-06,5.093206848435625721e-06,5.208961549536435050e-06,5.324716250637244379e-06,5.440470951738053708e-06,5.556225652838863037e-06,5.671980353939672366e-06,5.787735055040481695e-06,5.903489756141291024e-06,6.019244457242100353e-06,6.134999158342909682e-06,6.250753859443719011e-06,6.366508560544528340e-06,6.482263261645337669e-06,6.598017962746146998e-06,6.713772663846956327e-06,6.829527364947765656e-06,6.945282066048574985e-06,7.061036767149384314e-06,7.176791468250193643e-06,7.292546169351002972e-06 +0.000000000000000000e+00,1.135690430873272041e-07,2.271380861746544083e-07,3.407071292619816256e-07,4.542761723493088695e-07,5.678452154366360604e-07,6.814142585239632513e-07,7.949833016112904422e-07,9.085523446986176330e-07,1.022121387785944824e-06,1.135690430873272121e-06,1.249259473960599417e-06,1.362828517047926714e-06,1.476397560135254011e-06,1.589966603222581308e-06,1.703535646309908605e-06,1.817104689397235901e-06,1.930673732484562986e-06,2.044242775571890071e-06,2.157811818659217156e-06,2.271380861746544241e-06,2.384949904833871326e-06,2.498518947921198411e-06,2.612087991008525496e-06,2.725657034095852582e-06,2.839226077183179667e-06,2.952795120270506752e-06,3.066364163357833837e-06,3.179933206445160922e-06,3.293502249532488007e-06,3.407071292619815092e-06,3.520640335707142177e-06,3.634209378794469262e-06,3.747778421881796347e-06,3.861347464969123432e-06,3.974916508056450517e-06,4.088485551143777602e-06,4.202054594231104687e-06,4.315623637318431772e-06,4.429192680405758857e-06,4.542761723493085942e-06,4.656330766580413027e-06,4.769899809667740112e-06,4.883468852755067197e-06,4.997037895842394282e-06,5.110606938929721367e-06,5.224175982017048452e-06,5.337745025104375537e-06,5.451314068191702622e-06,5.564883111279029707e-06,5.678452154366356792e-06,5.792021197453683877e-06,5.905590240541010962e-06,6.019159283628338047e-06,6.132728326715665132e-06,6.246297369802992217e-06,6.359866412890319302e-06,6.473435455977646387e-06,6.587004499064973472e-06,6.700573542152300557e-06,6.814142585239627642e-06,6.927711628326954727e-06,7.041280671414281812e-06,7.154849714501608897e-06 +0.000000000000000000e+00,1.112664252560625251e-07,2.225328505121250502e-07,3.337992757681875753e-07,4.450657010242501004e-07,5.563321262803125726e-07,6.675985515363750447e-07,7.788649767924375169e-07,8.901314020484999890e-07,1.001397827304562461e-06,1.112664252560624933e-06,1.223930677816687406e-06,1.335197103072749878e-06,1.446463528328812350e-06,1.557729953584874822e-06,1.668996378840937294e-06,1.780262804096999766e-06,1.891529229353062238e-06,2.002795654609124499e-06,2.114062079865186548e-06,2.225328505121248596e-06,2.336594930377310645e-06,2.447861355633372693e-06,2.559127780889434742e-06,2.670394206145496791e-06,2.781660631401558839e-06,2.892927056657620888e-06,3.004193481913682937e-06,3.115459907169744985e-06,3.226726332425807034e-06,3.337992757681869083e-06,3.449259182937931131e-06,3.560525608193993180e-06,3.671792033450055229e-06,3.783058458706117277e-06,3.894324883962179326e-06,4.005591309218241374e-06,4.116857734474303423e-06,4.228124159730365472e-06,4.339390584986427520e-06,4.450657010242489569e-06,4.561923435498551618e-06,4.673189860754613666e-06,4.784456286010675715e-06,4.895722711266737764e-06,5.006989136522799812e-06,5.118255561778861861e-06,5.229521987034923910e-06,5.340788412290985958e-06,5.452054837547048007e-06,5.563321262803110056e-06,5.674587688059172104e-06,5.785854113315234153e-06,5.897120538571296201e-06,6.008386963827358250e-06,6.119653389083420299e-06,6.230919814339482347e-06,6.342186239595544396e-06,6.453452664851606445e-06,6.564719090107668493e-06,6.675985515363730542e-06,6.787251940619792591e-06,6.898518365875854639e-06,7.009784791131916688e-06 +0.000000000000000000e+00,1.201856798916139740e-07,2.403713597832279480e-07,3.605570396748419485e-07,4.807427195664560019e-07,6.009283994580700553e-07,7.211140793496841087e-07,8.412997592412981621e-07,9.614854391329122156e-07,1.081671119024526375e-06,1.201856798916140534e-06,1.322042478807754693e-06,1.442228158699368853e-06,1.562413838590983012e-06,1.682599518482597171e-06,1.802785198374211331e-06,1.922970878265825702e-06,2.043156558157440073e-06,2.163342238049054444e-06,2.283527917940668815e-06,2.403713597832283186e-06,2.523899277723897557e-06,2.644084957615511928e-06,2.764270637507126299e-06,2.884456317398740670e-06,3.004641997290355041e-06,3.124827677181969412e-06,3.245013357073583783e-06,3.365199036965198154e-06,3.485384716856812525e-06,3.605570396748426896e-06,3.725756076640041267e-06,3.845941756531655639e-06,3.966127436423270010e-06,4.086313116314884381e-06,4.206498796206498752e-06,4.326684476098113123e-06,4.446870155989727494e-06,4.567055835881341865e-06,4.687241515772956236e-06,4.807427195664570607e-06,4.927612875556184978e-06,5.047798555447799349e-06,5.167984235339413720e-06,5.288169915231028091e-06,5.408355595122642462e-06,5.528541275014256833e-06,5.648726954905871204e-06,5.768912634797485575e-06,5.889098314689099946e-06,6.009283994580714317e-06,6.129469674472328689e-06,6.249655354363943060e-06,6.369841034255557431e-06,6.490026714147171802e-06,6.610212394038786173e-06,6.730398073930400544e-06,6.850583753822014915e-06,6.970769433713629286e-06,7.090955113605243657e-06,7.211140793496858028e-06,7.331326473388472399e-06,7.451512153280086770e-06,7.571697833171701141e-06 +0.000000000000000000e+00,1.179640410191325021e-07,2.359280820382650043e-07,3.538921230573975197e-07,4.718561640765300615e-07,5.898202050956626034e-07,7.077842461147951452e-07,8.257482871339276871e-07,9.437123281530602289e-07,1.061676369172192771e-06,1.179640410191325207e-06,1.297604451210457643e-06,1.415568492229590079e-06,1.533532533248722515e-06,1.651496574267854951e-06,1.769460615286987387e-06,1.887424656306119823e-06,2.005388697325252470e-06,2.123352738344385118e-06,2.241316779363517766e-06,2.359280820382650413e-06,2.477244861401783061e-06,2.595208902420915709e-06,2.713172943440048357e-06,2.831136984459181004e-06,2.949101025478313652e-06,3.067065066497446300e-06,3.185029107516578948e-06,3.302993148535711595e-06,3.420957189554844243e-06,3.538921230573976891e-06,3.656885271593109538e-06,3.774849312612242186e-06,3.892813353631374834e-06,4.010777394650507482e-06,4.128741435669640129e-06,4.246705476688772777e-06,4.364669517707905425e-06,4.482633558727038073e-06,4.600597599746170720e-06,4.718561640765303368e-06,4.836525681784436016e-06,4.954489722803568663e-06,5.072453763822701311e-06,5.190417804841833959e-06,5.308381845860966607e-06,5.426345886880099254e-06,5.544309927899231902e-06,5.662273968918364550e-06,5.780238009937497198e-06,5.898202050956629845e-06,6.016166091975762493e-06,6.134130132994895141e-06,6.252094174014027788e-06,6.370058215033160436e-06,6.488022256052293084e-06,6.605986297071425732e-06,6.723950338090558379e-06,6.841914379109691027e-06,6.959878420128823675e-06,7.077842461147956323e-06,7.195806502167088970e-06,7.313770543186221618e-06,7.431734584205354266e-06 +0.000000000000000000e+00,1.150933295487683069e-07,2.301866590975366138e-07,3.452799886463049207e-07,4.603733181950732276e-07,5.754666477438415344e-07,6.905599772926098413e-07,8.056533068413781482e-07,9.207466363901464551e-07,1.035839965938914762e-06,1.150933295487683069e-06,1.266026625036451376e-06,1.381119954585219683e-06,1.496213284133987990e-06,1.611306613682756296e-06,1.726399943231524603e-06,1.841493272780292910e-06,1.956586602329061217e-06,2.071679931877829524e-06,2.186773261426597831e-06,2.301866590975366138e-06,2.416959920524134445e-06,2.532053250072902752e-06,2.647146579621671058e-06,2.762239909170439365e-06,2.877333238719207672e-06,2.992426568267975979e-06,3.107519897816744286e-06,3.222613227365512593e-06,3.337706556914280900e-06,3.452799886463049207e-06,3.567893216011817514e-06,3.682986545560585820e-06,3.798079875109354127e-06,3.913173204658122434e-06,4.028266534206890318e-06,4.143359863755658201e-06,4.258453193304426084e-06,4.373546522853193968e-06,4.488639852401961851e-06,4.603733181950729734e-06,4.718826511499497618e-06,4.833919841048265501e-06,4.949013170597033385e-06,5.064106500145801268e-06,5.179199829694569151e-06,5.294293159243337035e-06,5.409386488792104918e-06,5.524479818340872801e-06,5.639573147889640685e-06,5.754666477438408568e-06,5.869759806987176451e-06,5.984853136535944335e-06,6.099946466084712218e-06,6.215039795633480102e-06,6.330133125182247985e-06,6.445226454731015868e-06,6.560319784279783752e-06,6.675413113828551635e-06,6.790506443377319518e-06,6.905599772926087402e-06,7.020693102474855285e-06,7.135786432023623169e-06,7.250879761572391052e-06 +0.000000000000000000e+00,1.201856798916178121e-07,2.403713597832356242e-07,3.605570396748534364e-07,4.807427195664712485e-07,6.009283994580890077e-07,7.211140793497067669e-07,8.412997592413245260e-07,9.614854391329422852e-07,1.081671119024560044e-06,1.201856798916177804e-06,1.322042478807795563e-06,1.442228158699413322e-06,1.562413838591031081e-06,1.682599518482648840e-06,1.802785198374266600e-06,1.922970878265884147e-06,2.043156558157501906e-06,2.163342238049119665e-06,2.283527917940737424e-06,2.403713597832355184e-06,2.523899277723972943e-06,2.644084957615590702e-06,2.764270637507208461e-06,2.884456317398826220e-06,3.004641997290443980e-06,3.124827677182061739e-06,3.245013357073679498e-06,3.365199036965297257e-06,3.485384716856915016e-06,3.605570396748532776e-06,3.725756076640150535e-06,3.845941756531768294e-06,3.966127436423386053e-06,4.086313116315003812e-06,4.206498796206621571e-06,4.326684476098239331e-06,4.446870155989857090e-06,4.567055835881474849e-06,4.687241515773092608e-06,4.807427195664710367e-06,4.927612875556328127e-06,5.047798555447945886e-06,5.167984235339563645e-06,5.288169915231181404e-06,5.408355595122799163e-06,5.528541275014416922e-06,5.648726954906034682e-06,5.768912634797652441e-06,5.889098314689270200e-06,6.009283994580887959e-06,6.129469674472505718e-06,6.249655354364123478e-06,6.369841034255741237e-06,6.490026714147358996e-06,6.610212394038976755e-06,6.730398073930594514e-06,6.850583753822212273e-06,6.970769433713830033e-06,7.090955113605447792e-06,7.211140793497065551e-06,7.331326473388683310e-06,7.451512153280301069e-06,7.571697833171918829e-06 +0.000000000000000000e+00,1.179640410191353741e-07,2.359280820382707482e-07,3.538921230574060959e-07,4.718561640765414435e-07,5.898202050956767912e-07,7.077842461148121917e-07,8.257482871339475923e-07,9.437123281530829929e-07,1.061676369172218394e-06,1.179640410191353794e-06,1.297604451210489195e-06,1.415568492229624595e-06,1.533532533248759996e-06,1.651496574267895396e-06,1.769460615287030797e-06,1.887424656306166198e-06,2.005388697325301598e-06,2.123352738344436787e-06,2.241316779363571976e-06,2.359280820382707165e-06,2.477244861401842353e-06,2.595208902420977542e-06,2.713172943440112731e-06,2.831136984459247920e-06,2.949101025478383109e-06,3.067065066497518298e-06,3.185029107516653486e-06,3.302993148535788675e-06,3.420957189554923864e-06,3.538921230574059053e-06,3.656885271593194242e-06,3.774849312612329431e-06,3.892813353631464619e-06,4.010777394650599808e-06,4.128741435669734997e-06,4.246705476688870186e-06,4.364669517708005375e-06,4.482633558727140564e-06,4.600597599746275752e-06,4.718561640765410941e-06,4.836525681784546130e-06,4.954489722803681319e-06,5.072453763822816508e-06,5.190417804841951696e-06,5.308381845861086885e-06,5.426345886880222074e-06,5.544309927899357263e-06,5.662273968918492452e-06,5.780238009937627641e-06,5.898202050956762829e-06,6.016166091975898018e-06,6.134130132995033207e-06,6.252094174014168396e-06,6.370058215033303585e-06,6.488022256052438774e-06,6.605986297071573962e-06,6.723950338090709151e-06,6.841914379109844340e-06,6.959878420128979529e-06,7.077842461148114718e-06,7.195806502167249907e-06,7.313770543186385095e-06,7.431734584205520284e-06 +0.000000000000000000e+00,1.150933295487725421e-07,2.301866590975450841e-07,3.452799886463176262e-07,4.603733181950901682e-07,5.754666477438627103e-07,6.905599772926352523e-07,8.056533068414077944e-07,9.207466363901803364e-07,1.035839965938952878e-06,1.150933295487725421e-06,1.266026625036497963e-06,1.381119954585270505e-06,1.496213284134043047e-06,1.611306613682815589e-06,1.726399943231588131e-06,1.841493272780360673e-06,1.956586602329133215e-06,2.071679931877905757e-06,2.186773261426678299e-06,2.301866590975450841e-06,2.416959920524223383e-06,2.532053250072995925e-06,2.647146579621768467e-06,2.762239909170541009e-06,2.877333238719313551e-06,2.992426568268086093e-06,3.107519897816858635e-06,3.222613227365631177e-06,3.337706556914403720e-06,3.452799886463176262e-06,3.567893216011948804e-06,3.682986545560721346e-06,3.798079875109493888e-06,3.913173204658266430e-06,4.028266534207039395e-06,4.143359863755812361e-06,4.258453193304585326e-06,4.373546522853358292e-06,4.488639852402131258e-06,4.603733181950904223e-06,4.718826511499677189e-06,4.833919841048450154e-06,4.949013170597223120e-06,5.064106500145996085e-06,5.179199829694769051e-06,5.294293159243542017e-06,5.409386488792314982e-06,5.524479818341087948e-06,5.639573147889860913e-06,5.754666477438633879e-06,5.869759806987406844e-06,5.984853136536179810e-06,6.099946466084952776e-06,6.215039795633725741e-06,6.330133125182498707e-06,6.445226454731271672e-06,6.560319784280044638e-06,6.675413113828817603e-06,6.790506443377590569e-06,6.905599772926363535e-06,7.020693102475136500e-06,7.135786432023909466e-06,7.250879761572682431e-06 +0.000000000000000000e+00,1.246371051176301289e-07,2.492742102352602578e-07,3.739113153528903868e-07,4.985484204705205157e-07,6.231855255881505917e-07,7.478226307057806676e-07,8.724597358234107436e-07,9.970968409410408196e-07,1.121733946058670896e-06,1.246371051176300972e-06,1.371008156293931048e-06,1.495645261411561124e-06,1.620282366529191200e-06,1.744919471646821275e-06,1.869556576764451351e-06,1.994193681882081216e-06,2.118830786999711080e-06,2.243467892117340944e-06,2.368104997234970808e-06,2.492742102352600673e-06,2.617379207470230537e-06,2.742016312587860401e-06,2.866653417705490265e-06,2.991290522823120129e-06,3.115927627940749994e-06,3.240564733058379858e-06,3.365201838176009722e-06,3.489838943293639586e-06,3.614476048411269451e-06,3.739113153528899315e-06,3.863750258646529179e-06,3.988387363764159043e-06,4.113024468881788907e-06,4.237661573999418772e-06,4.362298679117048636e-06,4.486935784234678500e-06,4.611572889352308364e-06,4.736209994469938229e-06,4.860847099587568093e-06,4.985484204705197957e-06,5.110121309822827821e-06,5.234758414940457685e-06,5.359395520058087550e-06,5.484032625175717414e-06,5.608669730293347278e-06,5.733306835410977142e-06,5.857943940528607007e-06,5.982581045646236871e-06,6.107218150763866735e-06,6.231855255881496599e-06,6.356492360999126463e-06,6.481129466116756328e-06,6.605766571234386192e-06,6.730403676352016056e-06,6.855040781469645920e-06,6.979677886587275785e-06,7.104314991704905649e-06,7.228952096822535513e-06,7.353589201940165377e-06,7.478226307057795241e-06,7.602863412175425106e-06,7.727500517293054970e-06,7.852137622410685681e-06 +0.000000000000000000e+00,1.224099343724325728e-07,2.448198687448651455e-07,3.672298031172977183e-07,4.896397374897302911e-07,6.120496718621628639e-07,7.344596062345954366e-07,8.568695406070280094e-07,9.792794749794605822e-07,1.101689409351893049e-06,1.224099343724325516e-06,1.346509278096757983e-06,1.468919212469190450e-06,1.591329146841622917e-06,1.713739081214055384e-06,1.836149015586487850e-06,1.958558949958920317e-06,2.080968884331352784e-06,2.203378818703785251e-06,2.325788753076217718e-06,2.448198687448650185e-06,2.570608621821082652e-06,2.693018556193515119e-06,2.815428490565947586e-06,2.937838424938380052e-06,3.060248359310812519e-06,3.182658293683244986e-06,3.305068228055677453e-06,3.427478162428109920e-06,3.549888096800542387e-06,3.672298031172974854e-06,3.794707965545407321e-06,3.917117899917839788e-06,4.039527834290272255e-06,4.161937768662704721e-06,4.284347703035137188e-06,4.406757637407569655e-06,4.529167571780002122e-06,4.651577506152434589e-06,4.773987440524867056e-06,4.896397374897299523e-06,5.018807309269731990e-06,5.141217243642164457e-06,5.263627178014596923e-06,5.386037112387029390e-06,5.508447046759461857e-06,5.630856981131894324e-06,5.753266915504326791e-06,5.875676849876759258e-06,5.998086784249191725e-06,6.120496718621624192e-06,6.242906652994056659e-06,6.365316587366489125e-06,6.487726521738921592e-06,6.610136456111354059e-06,6.732546390483786526e-06,6.854956324856218993e-06,6.977366259228651460e-06,7.099776193601083927e-06,7.222186127973516394e-06,7.344596062345948861e-06,7.467005996718381328e-06,7.589415931090813794e-06,7.711825865463247108e-06 +0.000000000000000000e+00,1.188630494010156417e-07,2.377260988020312833e-07,3.565891482030469515e-07,4.754521976040626196e-07,5.943152470050782878e-07,7.131782964060939030e-07,8.320413458071095182e-07,9.509043952081251334e-07,1.069767444609140749e-06,1.188630494010156364e-06,1.307493543411171979e-06,1.426356592812187594e-06,1.545219642213203209e-06,1.664082691614218825e-06,1.782945741015234440e-06,1.901808790416250055e-06,2.020671839817265670e-06,2.139534889218281497e-06,2.258397938619297324e-06,2.377260988020313151e-06,2.496124037421328978e-06,2.614987086822344805e-06,2.733850136223360632e-06,2.852713185624376459e-06,2.971576235025392286e-06,3.090439284426408113e-06,3.209302333827423940e-06,3.328165383228439767e-06,3.447028432629455594e-06,3.565891482030471421e-06,3.684754531431487248e-06,3.803617580832503075e-06,3.922480630233518902e-06,4.041343679634534729e-06,4.160206729035550556e-06,4.279069778436566383e-06,4.397932827837582210e-06,4.516795877238598036e-06,4.635658926639613863e-06,4.754521976040629690e-06,4.873385025441645517e-06,4.992248074842661344e-06,5.111111124243677171e-06,5.229974173644692998e-06,5.348837223045708825e-06,5.467700272446724652e-06,5.586563321847740479e-06,5.705426371248756306e-06,5.824289420649772133e-06,5.943152470050787960e-06,6.062015519451803787e-06,6.180878568852819614e-06,6.299741618253835441e-06,6.418604667654851268e-06,6.537467717055867095e-06,6.656330766456882922e-06,6.775193815857898749e-06,6.894056865258914576e-06,7.012919914659930403e-06,7.131782964060946230e-06,7.250646013461962057e-06,7.369509062862977884e-06,7.488372112263993711e-06 +0.000000000000000000e+00,1.246371051176351582e-07,2.492742102352703164e-07,3.739113153529054745e-07,4.985484204705406327e-07,6.231855255881757909e-07,7.478226307058109491e-07,8.724597358234461072e-07,9.970968409410812654e-07,1.121733946058716424e-06,1.246371051176351582e-06,1.371008156293986740e-06,1.495645261411621898e-06,1.620282366529257056e-06,1.744919471646892214e-06,1.869556576764527373e-06,1.994193681882162531e-06,2.118830786999797477e-06,2.243467892117432424e-06,2.368104997235067370e-06,2.492742102352702317e-06,2.617379207470337263e-06,2.742016312587972209e-06,2.866653417705607156e-06,2.991290522823242102e-06,3.115927627940877049e-06,3.240564733058511995e-06,3.365201838176146941e-06,3.489838943293781888e-06,3.614476048411416834e-06,3.739113153529051781e-06,3.863750258646686727e-06,3.988387363764321674e-06,4.113024468881956620e-06,4.237661573999591566e-06,4.362298679117226513e-06,4.486935784234861459e-06,4.611572889352496406e-06,4.736209994470131352e-06,4.860847099587766299e-06,4.985484204705401245e-06,5.110121309823036191e-06,5.234758414940671138e-06,5.359395520058306084e-06,5.484032625175941031e-06,5.608669730293575977e-06,5.733306835411210923e-06,5.857943940528845870e-06,5.982581045646480816e-06,6.107218150764115763e-06,6.231855255881750709e-06,6.356492360999385656e-06,6.481129466117020602e-06,6.605766571234655548e-06,6.730403676352290495e-06,6.855040781469925441e-06,6.979677886587560388e-06,7.104314991705195334e-06,7.228952096822830280e-06,7.353589201940465227e-06,7.478226307058100173e-06,7.602863412175735120e-06,7.727500517293370066e-06,7.852137622411004166e-06 +0.000000000000000000e+00,1.224099343724374697e-07,2.448198687448749394e-07,3.672298031173124355e-07,4.896397374897499846e-07,6.120496718621875337e-07,7.344596062346250828e-07,8.568695406070626319e-07,9.792794749795001810e-07,1.101689409351937730e-06,1.224099343724375279e-06,1.346509278096812828e-06,1.468919212469250377e-06,1.591329146841687926e-06,1.713739081214125476e-06,1.836149015586563025e-06,1.958558949959000785e-06,2.080968884331438335e-06,2.203378818703875884e-06,2.325788753076313433e-06,2.448198687448750982e-06,2.570608621821188531e-06,2.693018556193626080e-06,2.815428490566063629e-06,2.937838424938501178e-06,3.060248359310938727e-06,3.182658293683376276e-06,3.305068228055813825e-06,3.427478162428251375e-06,3.549888096800688924e-06,3.672298031173126473e-06,3.794707965545564022e-06,3.917117899918001571e-06,4.039527834290439120e-06,4.161937768662876669e-06,4.284347703035314218e-06,4.406757637407751767e-06,4.529167571780189316e-06,4.651577506152626865e-06,4.773987440525064415e-06,4.896397374897501964e-06,5.018807309269939513e-06,5.141217243642377062e-06,5.263627178014814611e-06,5.386037112387252160e-06,5.508447046759689709e-06,5.630856981132127258e-06,5.753266915504564807e-06,5.875676849877002356e-06,5.998086784249439905e-06,6.120496718621877455e-06,6.242906652994315004e-06,6.365316587366752553e-06,6.487726521739190102e-06,6.610136456111627651e-06,6.732546390484065200e-06,6.854956324856502749e-06,6.977366259228940298e-06,7.099776193601377847e-06,7.222186127973815396e-06,7.344596062346252945e-06,7.467005996718690495e-06,7.589415931091128044e-06,7.711825865463565593e-06 +0.000000000000000000e+00,1.188630494010214386e-07,2.377260988020428771e-07,3.565891482030643157e-07,4.754521976040857542e-07,5.943152470051071928e-07,7.131782964061286313e-07,8.320413458071500699e-07,9.509043952081715085e-07,1.069767444609192841e-06,1.188630494010214174e-06,1.307493543411235506e-06,1.426356592812256839e-06,1.545219642213278172e-06,1.664082691614299505e-06,1.782945741015320837e-06,1.901808790416342170e-06,2.020671839817363503e-06,2.139534889218384835e-06,2.258397938619406168e-06,2.377260988020427501e-06,2.496124037421448833e-06,2.614987086822470166e-06,2.733850136223491499e-06,2.852713185624512831e-06,2.971576235025534164e-06,3.090439284426555497e-06,3.209302333827576829e-06,3.328165383228598162e-06,3.447028432629619495e-06,3.565891482030640827e-06,3.684754531431662160e-06,3.803617580832683493e-06,3.922480630233704402e-06,4.041343679634725311e-06,4.160206729035746220e-06,4.279069778436767129e-06,4.397932827837788039e-06,4.516795877238808948e-06,4.635658926639829857e-06,4.754521976040850766e-06,4.873385025441871675e-06,4.992248074842892584e-06,5.111111124243913493e-06,5.229974173644934403e-06,5.348837223045955312e-06,5.467700272446976221e-06,5.586563321847997130e-06,5.705426371249018039e-06,5.824289420650038948e-06,5.943152470051059858e-06,6.062015519452080767e-06,6.180878568853101676e-06,6.299741618254122585e-06,6.418604667655143494e-06,6.537467717056164403e-06,6.656330766457185313e-06,6.775193815858206222e-06,6.894056865259227131e-06,7.012919914660248040e-06,7.131782964061268949e-06,7.250646013462289858e-06,7.369509062863310768e-06,7.488372112264331677e-06 +0.000000000000000000e+00,1.291046735582501353e-07,2.582093471165002706e-07,3.873140206747503795e-07,5.164186942330004354e-07,6.455233677912504913e-07,7.746280413495005472e-07,9.037327149077506031e-07,1.032837388466000659e-06,1.161942062024250715e-06,1.291046735582500771e-06,1.420151409140750827e-06,1.549256082699000883e-06,1.678360756257250939e-06,1.807465429815500994e-06,1.936570103373751050e-06,2.065674776932000894e-06,2.194779450490250739e-06,2.323884124048500583e-06,2.452988797606750427e-06,2.582093471165000271e-06,2.711198144723250115e-06,2.840302818281499959e-06,2.969407491839749803e-06,3.098512165397999648e-06,3.227616838956249492e-06,3.356721512514499336e-06,3.485826186072749180e-06,3.614930859630999024e-06,3.744035533189248868e-06,3.873140206747498712e-06,4.002244880305748980e-06,4.131349553863999248e-06,4.260454227422249515e-06,4.389558900980499783e-06,4.518663574538750051e-06,4.647768248097000318e-06,4.776872921655250586e-06,4.905977595213500854e-06,5.035082268771751121e-06,5.164186942330001389e-06,5.293291615888251657e-06,5.422396289446501924e-06,5.551500963004752192e-06,5.680605636563002460e-06,5.809710310121252727e-06,5.938814983679502995e-06,6.067919657237753263e-06,6.197024330796003530e-06,6.326129004354253798e-06,6.455233677912504066e-06,6.584338351470754333e-06,6.713443025029004601e-06,6.842547698587254869e-06,6.971652372145505136e-06,7.100757045703755404e-06,7.229861719262005672e-06,7.358966392820255939e-06,7.488071066378506207e-06,7.617175739936756475e-06,7.746280413495005895e-06,7.875385087053255316e-06,8.004489760611504737e-06,8.133594434169754157e-06 +0.000000000000000000e+00,1.268685709648600192e-07,2.537371419297200384e-07,3.806057128945800576e-07,5.074742838594400768e-07,6.343428548243000960e-07,7.612114257891601152e-07,8.880799967540201344e-07,1.014948567718880154e-06,1.141817138683740173e-06,1.268685709648600192e-06,1.395554280613460211e-06,1.522422851578320230e-06,1.649291422543180250e-06,1.776159993508040269e-06,1.903028564472900288e-06,2.029897135437760307e-06,2.156765706402620326e-06,2.283634277367480346e-06,2.410502848332340365e-06,2.537371419297200384e-06,2.664239990262060403e-06,2.791108561226920422e-06,2.917977132191780442e-06,3.044845703156640461e-06,3.171714274121500480e-06,3.298582845086360499e-06,3.425451416051220518e-06,3.552319987016080538e-06,3.679188557980940557e-06,3.806057128945800576e-06,3.932925699910660595e-06,4.059794270875520614e-06,4.186662841840380634e-06,4.313531412805240653e-06,4.440399983770100672e-06,4.567268554734960691e-06,4.694137125699820710e-06,4.821005696664680730e-06,4.947874267629540749e-06,5.074742838594400768e-06,5.201611409559260787e-06,5.328479980524120806e-06,5.455348551488980826e-06,5.582217122453840845e-06,5.709085693418700864e-06,5.835954264383560883e-06,5.962822835348420902e-06,6.089691406313280922e-06,6.216559977278140941e-06,6.343428548243000960e-06,6.470297119207860979e-06,6.597165690172720998e-06,6.724034261137581018e-06,6.850902832102441037e-06,6.977771403067301056e-06,7.104639974032161075e-06,7.231508544997021094e-06,7.358377115961881114e-06,7.485245686926741133e-06,7.612114257891601152e-06,7.738982828856461171e-06,7.865851399821321190e-06,7.992719970786181210e-06 +0.000000000000000000e+00,1.225786697577201711e-07,2.451573395154403421e-07,3.677360092731605132e-07,4.903146790308806842e-07,6.128933487886009082e-07,7.354720185463211322e-07,8.580506883040413562e-07,9.806293580617615802e-07,1.103208027819481804e-06,1.225786697577202028e-06,1.348365367334922252e-06,1.470944037092642476e-06,1.593522706850362700e-06,1.716101376608082924e-06,1.838680046365803148e-06,1.961258716123523584e-06,2.083837385881244020e-06,2.206416055638964455e-06,2.328994725396684891e-06,2.451573395154405327e-06,2.574152064912125763e-06,2.696730734669846199e-06,2.819309404427566634e-06,2.941888074185287070e-06,3.064466743943007506e-06,3.187045413700727942e-06,3.309624083458448377e-06,3.432202753216168813e-06,3.554781422973889249e-06,3.677360092731609685e-06,3.799938762489330120e-06,3.922517432247050556e-06,4.045096102004771415e-06,4.167674771762492275e-06,4.290253441520213134e-06,4.412832111277933993e-06,4.535410781035654852e-06,4.657989450793375712e-06,4.780568120551096571e-06,4.903146790308817430e-06,5.025725460066538290e-06,5.148304129824259149e-06,5.270882799581980008e-06,5.393461469339700867e-06,5.516040139097421727e-06,5.638618808855142586e-06,5.761197478612863445e-06,5.883776148370584304e-06,6.006354818128305164e-06,6.128933487886026023e-06,6.251512157643746882e-06,6.374090827401467742e-06,6.496669497159188601e-06,6.619248166916909460e-06,6.741826836674630319e-06,6.864405506432351179e-06,6.986984176190072038e-06,7.109562845947792897e-06,7.232141515705513756e-06,7.354720185463234616e-06,7.477298855220955475e-06,7.599877524978676334e-06,7.722456194736397194e-06 +0.000000000000000000e+00,1.291046735582611732e-07,2.582093471165223464e-07,3.873140206747835196e-07,5.164186942330446928e-07,6.455233677913058661e-07,7.746280413495670393e-07,9.037327149078282125e-07,1.032837388466089386e-06,1.161942062024350665e-06,1.291046735582611944e-06,1.420151409140873223e-06,1.549256082699134502e-06,1.678360756257395781e-06,1.807465429815657060e-06,1.936570103373918339e-06,2.065674776932179618e-06,2.194779450490440898e-06,2.323884124048702177e-06,2.452988797606963456e-06,2.582093471165224735e-06,2.711198144723486014e-06,2.840302818281747293e-06,2.969407491840008572e-06,3.098512165398269851e-06,3.227616838956531130e-06,3.356721512514792409e-06,3.485826186073053688e-06,3.614930859631314967e-06,3.744035533189576247e-06,3.873140206747837526e-06,4.002244880306098805e-06,4.131349553864360084e-06,4.260454227422621363e-06,4.389558900980882642e-06,4.518663574539143921e-06,4.647768248097405200e-06,4.776872921655666479e-06,4.905977595213927758e-06,5.035082268772189037e-06,5.164186942330450317e-06,5.293291615888711596e-06,5.422396289446972875e-06,5.551500963005234154e-06,5.680605636563495433e-06,5.809710310121756712e-06,5.938814983680017991e-06,6.067919657238279270e-06,6.197024330796540549e-06,6.326129004354801828e-06,6.455233677913063107e-06,6.584338351471324387e-06,6.713443025029585666e-06,6.842547698587846945e-06,6.971652372146108224e-06,7.100757045704369503e-06,7.229861719262630782e-06,7.358966392820892061e-06,7.488071066379153340e-06,7.617175739937414619e-06,7.746280413495676745e-06,7.875385087053938025e-06,8.004489760612199304e-06,8.133594434170460583e-06 +0.000000000000000000e+00,1.268685709648684895e-07,2.537371419297369791e-07,3.806057128946054686e-07,5.074742838594739581e-07,6.343428548243424476e-07,7.612114257892109372e-07,8.880799967540794267e-07,1.014948567718947916e-06,1.141817138683816406e-06,1.268685709648684895e-06,1.395554280613553385e-06,1.522422851578421874e-06,1.649291422543290364e-06,1.776159993508158853e-06,1.903028564473027343e-06,2.029897135437895832e-06,2.156765706402764322e-06,2.283634277367632812e-06,2.410502848332501301e-06,2.537371419297369791e-06,2.664239990262238280e-06,2.791108561227106770e-06,2.917977132191975259e-06,3.044845703156843749e-06,3.171714274121712238e-06,3.298582845086580728e-06,3.425451416051449217e-06,3.552319987016317707e-06,3.679188557981186196e-06,3.806057128946054686e-06,3.932925699910923175e-06,4.059794270875791665e-06,4.186662841840660154e-06,4.313531412805528644e-06,4.440399983770397134e-06,4.567268554735265623e-06,4.694137125700134113e-06,4.821005696665002602e-06,4.947874267629871092e-06,5.074742838594739581e-06,5.201611409559608071e-06,5.328479980524476560e-06,5.455348551489345050e-06,5.582217122454213539e-06,5.709085693419082029e-06,5.835954264383950518e-06,5.962822835348819008e-06,6.089691406313687497e-06,6.216559977278555987e-06,6.343428548243424476e-06,6.470297119208292966e-06,6.597165690173161456e-06,6.724034261138029945e-06,6.850902832102898435e-06,6.977771403067766924e-06,7.104639974032635414e-06,7.231508544997503903e-06,7.358377115962372393e-06,7.485245686927240882e-06,7.612114257892109372e-06,7.738982828856977861e-06,7.865851399821846351e-06,7.992719970786714840e-06 +0.000000000000000000e+00,1.225786697577292502e-07,2.451573395154585004e-07,3.677360092731877770e-07,4.903146790309171067e-07,6.128933487886464363e-07,7.354720185463757659e-07,8.580506883041050955e-07,9.806293580618344251e-07,1.103208027819563755e-06,1.225786697577293084e-06,1.348365367335022414e-06,1.470944037092751743e-06,1.593522706850481073e-06,1.716101376608210403e-06,1.838680046365939732e-06,1.961258716123669274e-06,2.083837385881398603e-06,2.206416055639127933e-06,2.328994725396857262e-06,2.451573395154586592e-06,2.574152064912315922e-06,2.696730734670045251e-06,2.819309404427774581e-06,2.941888074185503910e-06,3.064466743943233240e-06,3.187045413700962570e-06,3.309624083458691899e-06,3.432202753216421229e-06,3.554781422974150558e-06,3.677360092731879888e-06,3.799938762489609218e-06,3.922517432247338547e-06,4.045096102005067877e-06,4.167674771762797206e-06,4.290253441520526536e-06,4.412832111278255866e-06,4.535410781035985195e-06,4.657989450793714525e-06,4.780568120551443855e-06,4.903146790309173184e-06,5.025725460066902514e-06,5.148304129824631843e-06,5.270882799582361173e-06,5.393461469340090503e-06,5.516040139097819832e-06,5.638618808855549162e-06,5.761197478613278491e-06,5.883776148371007821e-06,6.006354818128737151e-06,6.128933487886466480e-06,6.251512157644195810e-06,6.374090827401925139e-06,6.496669497159654469e-06,6.619248166917383799e-06,6.741826836675113128e-06,6.864405506432842458e-06,6.986984176190571787e-06,7.109562845948301117e-06,7.232141515706030447e-06,7.354720185463759776e-06,7.477298855221489106e-06,7.599877524979218435e-06,7.722456194736947765e-06 +0.000000000000000000e+00,1.335118249671192780e-07,2.670236499342385560e-07,4.005354749013578340e-07,5.340472998684771119e-07,6.675591248355964429e-07,8.010709498027158797e-07,9.345827747698351047e-07,1.068094599736954436e-06,1.201606424704073767e-06,1.335118249671193097e-06,1.468630074638312428e-06,1.602141899605431759e-06,1.735653724572550878e-06,1.869165549539670421e-06,2.002677374506789752e-06,2.136189199473909295e-06,2.269701024441028837e-06,2.403212849408148380e-06,2.536724674375267923e-06,2.670236499342387465e-06,2.803748324309506585e-06,2.937260149276626551e-06,3.070771974243746517e-06,3.204283799210865636e-06,3.337795624177984755e-06,3.471307449145104722e-06,3.604819274112224688e-06,3.738331099079343807e-06,3.871842924046463350e-06,4.005354749013582892e-06,4.138866573980702435e-06,4.272378398947821978e-06,4.405890223914941520e-06,4.539402048882061063e-06,4.672913873849180606e-06,4.806425698816300148e-06,4.939937523783419691e-06,5.073449348750539234e-06,5.206961173717658776e-06,5.340472998684778319e-06,5.473984823651897862e-06,5.607496648619018252e-06,5.741008473586136947e-06,5.874520298553256490e-06,6.008032123520376033e-06,6.141543948487494728e-06,6.275055773454615118e-06,6.408567598421734661e-06,6.542079423388854203e-06,6.675591248355974593e-06,6.809103073323093289e-06,6.942614898290212831e-06,7.076126723257332374e-06,7.209638548224451070e-06,7.343150373191571459e-06,7.476662198158691002e-06,7.610174023125810545e-06,7.743685848092930087e-06,7.877197673060048783e-06,8.010709498027167479e-06,8.144221322994286174e-06,8.277733147961404870e-06,8.411244972928523566e-06 +0.000000000000000000e+00,1.335135281116885952e-07,2.670270562233771904e-07,4.005405843350657591e-07,5.340541124467542749e-07,6.675676405584428965e-07,8.010811686701314123e-07,9.345946967818199281e-07,1.068108224893508338e-06,1.201621753005196854e-06,1.335135281116885369e-06,1.468648809228573885e-06,1.602162337340262401e-06,1.735675865451950917e-06,1.869189393563639433e-06,2.002702921675327737e-06,2.136216449787016252e-06,2.269729977898704768e-06,2.403243506010393284e-06,2.536757034122081800e-06,2.670270562233770315e-06,2.803784090345458831e-06,2.937297618457147347e-06,3.070811146568835863e-06,3.204324674680524379e-06,3.337838202792212894e-06,3.471351730903901410e-06,3.604865259015589926e-06,3.738378787127278442e-06,3.871892315238966957e-06,4.005405843350655473e-06,4.138919371462343989e-06,4.272432899574032505e-06,4.405946427685721021e-06,4.539459955797409536e-06,4.672973483909098052e-06,4.806487012020786568e-06,4.940000540132475084e-06,5.073514068244163599e-06,5.207027596355852962e-06,5.340541124467540631e-06,5.474054652579228300e-06,5.607568180690917662e-06,5.741081708802607025e-06,5.874595236914294694e-06,6.008108765025982363e-06,6.141622293137671726e-06,6.275135821249361088e-06,6.408649349361048757e-06,6.542162877472736426e-06,6.675676405584425789e-06,6.809189933696115151e-06,6.942703461807802820e-06,7.076216989919490489e-06,7.209730518031179852e-06,7.343244046142869215e-06,7.476757574254556883e-06,7.610271102366244552e-06,7.743784630477933915e-06,7.877298158589622431e-06,8.010811686701310946e-06,8.144325214812999462e-06,8.277838742924687978e-06,8.411352271036376494e-06 +0.000000000000000000e+00,1.313241561997677992e-07,2.626483123995355984e-07,3.939724685993033711e-07,5.252966247990710909e-07,6.566207809988388107e-07,7.879449371986065305e-07,9.192690933983742503e-07,1.050593249598141970e-06,1.181917405797909690e-06,1.313241561997677410e-06,1.444565718197445129e-06,1.575889874397212849e-06,1.707214030596980569e-06,1.838538186796748289e-06,1.969862342996516009e-06,2.101186499196283517e-06,2.232510655396051025e-06,2.363834811595818533e-06,2.495158967795586041e-06,2.626483123995353549e-06,2.757807280195121057e-06,2.889131436394888565e-06,3.020455592594656073e-06,3.151779748794423581e-06,3.283103904994191089e-06,3.414428061193958597e-06,3.545752217393726105e-06,3.677076373593493613e-06,3.808400529793261121e-06,3.939724685993028629e-06,4.071048842192796137e-06,4.202372998392563645e-06,4.333697154592331153e-06,4.465021310792098661e-06,4.596345466991866169e-06,4.727669623191633677e-06,4.858993779391401185e-06,4.990317935591168693e-06,5.121642091790936201e-06,5.252966247990703709e-06,5.384290404190471217e-06,5.515614560390238725e-06,5.646938716590006233e-06,5.778262872789773741e-06,5.909587028989541250e-06,6.040911185189308758e-06,6.172235341389076266e-06,6.303559497588843774e-06,6.434883653788611282e-06,6.566207809988378790e-06,6.697531966188146298e-06,6.828856122387913806e-06,6.960180278587681314e-06,7.091504434787448822e-06,7.222828590987216330e-06,7.354152747186983838e-06,7.485476903386751346e-06,7.616801059586518854e-06,7.748125215786286362e-06,7.879449371986053870e-06,8.010773528185821378e-06,8.142097684385588886e-06,8.273421840585356394e-06 +0.000000000000000000e+00,1.263118719441432712e-07,2.526237438882865424e-07,3.789356158324297871e-07,5.052474877765729789e-07,6.315593597207161707e-07,7.578712316648593625e-07,8.841831036090025543e-07,1.010494975553145746e-06,1.136806847497289044e-06,1.263118719441432341e-06,1.389430591385575639e-06,1.515742463329718937e-06,1.642054335273862234e-06,1.768366207218005532e-06,1.894678079162148830e-06,2.020989951106291916e-06,2.147301823050435002e-06,2.273613694994578088e-06,2.399925566938721173e-06,2.526237438882864259e-06,2.652549310827007345e-06,2.778861182771150431e-06,2.905173054715293517e-06,3.031484926659436603e-06,3.157796798603579689e-06,3.284108670547722775e-06,3.410420542491865861e-06,3.536732414436008947e-06,3.663044286380152033e-06,3.789356158324295119e-06,3.915668030268438204e-06,4.041979902212581290e-06,4.168291774156724376e-06,4.294603646100867462e-06,4.420915518045010548e-06,4.547227389989153634e-06,4.673539261933296720e-06,4.799851133877439806e-06,4.926163005821582892e-06,5.052474877765725978e-06,5.178786749709869064e-06,5.305098621654012149e-06,5.431410493598155235e-06,5.557722365542298321e-06,5.684034237486441407e-06,5.810346109430584493e-06,5.936657981374727579e-06,6.062969853318870665e-06,6.189281725263013751e-06,6.315593597207156837e-06,6.441905469151299923e-06,6.568217341095443009e-06,6.694529213039586095e-06,6.820841084983729180e-06,6.947152956927872266e-06,7.073464828872015352e-06,7.199776700816158438e-06,7.326088572760301524e-06,7.452400444704444610e-06,7.578712316648587696e-06,7.705024188592729935e-06,7.831336060536871327e-06,7.957647932481012718e-06 +0.000000000000000000e+00,1.335129479854041755e-07,2.670258959708083511e-07,4.005388439562125266e-07,5.340517919416167022e-07,6.675647399270207718e-07,8.010776879124250533e-07,9.345906358978293347e-07,1.068103583883233404e-06,1.201616531868637580e-06,1.335129479854041544e-06,1.468642427839445931e-06,1.602155375824850107e-06,1.735668323810254282e-06,1.869181271795658669e-06,2.002694219781062421e-06,2.136207167766466385e-06,2.269720115751870349e-06,2.403233063737274313e-06,2.536746011722678277e-06,2.670258959708082240e-06,2.803771907693486628e-06,2.937284855678890168e-06,3.070797803664294132e-06,3.204310751649698096e-06,3.337823699635101636e-06,3.471336647620506023e-06,3.604849595605909987e-06,3.738362543591313951e-06,3.871875491576717914e-06,4.005388439562121455e-06,4.138901387547524995e-06,4.272414335532928535e-06,4.405927283518332076e-06,4.539440231503735616e-06,4.672953179489139156e-06,4.806466127474542696e-06,4.939979075459946237e-06,5.073492023445349777e-06,5.207004971430753317e-06,5.340517919416157704e-06,5.474030867401560398e-06,5.607543815386963938e-06,5.741056763372367478e-06,5.874569711357770171e-06,6.008082659343174559e-06,6.141595607328578099e-06,6.275108555313981639e-06,6.408621503299386027e-06,6.542134451284788720e-06,6.675647399270192260e-06,6.809160347255595800e-06,6.942673295240998494e-06,7.076186243226402881e-06,7.209699191211806421e-06,7.343212139197209961e-06,7.476725087182614349e-06,7.610238035168017042e-06,7.743750983153420582e-06,7.877263931138824970e-06,8.010776879124229357e-06,8.144289827109633744e-06,8.277802775095038132e-06,8.411315723080442519e-06 +0.000000000000000000e+00,1.263133889554612168e-07,2.526267779109224335e-07,3.789401668663836238e-07,5.052535558218447612e-07,6.315669447773058985e-07,7.578803337327670359e-07,8.841937226882281732e-07,1.010507111643689311e-06,1.136820500599150554e-06,1.263133889554611797e-06,1.389447278510073040e-06,1.515760667465534283e-06,1.642074056420995527e-06,1.768387445376456770e-06,1.894700834331918013e-06,2.021014223287379045e-06,2.147327612242840076e-06,2.273641001198301108e-06,2.399954390153762139e-06,2.526267779109223170e-06,2.652581168064684202e-06,2.778894557020145233e-06,2.905207945975606265e-06,3.031521334931067296e-06,3.157834723886528328e-06,3.284148112841989359e-06,3.410461501797450391e-06,3.536774890752911422e-06,3.663088279708372454e-06,3.789401668663833485e-06,3.915715057619294093e-06,4.042028446574754701e-06,4.168341835530215309e-06,4.294655224485675917e-06,4.420968613441136525e-06,4.547282002396597133e-06,4.673595391352057741e-06,4.799908780307518349e-06,4.926222169262978957e-06,5.052535558218439565e-06,5.178848947173900173e-06,5.305162336129360781e-06,5.431475725084821389e-06,5.557789114040281997e-06,5.684102502995742604e-06,5.810415891951203212e-06,5.936729280906663820e-06,6.063042669862124428e-06,6.189356058817585036e-06,6.315669447773045644e-06,6.441982836728506252e-06,6.568296225683966860e-06,6.694609614639427468e-06,6.820923003594888076e-06,6.947236392550348684e-06,7.073549781505809292e-06,7.199863170461269900e-06,7.326176559416730508e-06,7.452489948372191116e-06,7.578803337327651724e-06,7.705116726283112332e-06,7.831430115238572940e-06,7.957743504194033548e-06 +0.000000000000000000e+00,1.335118249671255778e-07,2.670236499342511556e-07,4.005354749013766804e-07,5.340472998685023112e-07,6.675591248356278890e-07,8.010709498027533609e-07,9.345827747698790445e-07,1.068094599737004622e-06,1.201606424704130094e-06,1.335118249671255566e-06,1.468630074638381038e-06,1.602141899605506510e-06,1.735653724572631982e-06,1.869165549539757454e-06,2.002677374506882926e-06,2.136189199474008398e-06,2.269701024441133870e-06,2.403212849408259341e-06,2.536724674375384813e-06,2.670236499342510709e-06,2.803748324309635334e-06,2.937260149276761653e-06,3.070771974243886277e-06,3.204283799211012596e-06,3.337795624178137221e-06,3.471307449145263540e-06,3.604819274112388165e-06,3.738331099079514484e-06,3.871842924046639532e-06,4.005354749013765004e-06,4.138866573980890476e-06,4.272378398948015948e-06,4.405890223915141420e-06,4.539402048882266892e-06,4.672913873849392364e-06,4.806425698816517836e-06,4.939937523783643308e-06,5.073449348750768780e-06,5.206961173717894252e-06,5.340472998685019724e-06,5.473984823652145195e-06,5.607496648619270667e-06,5.741008473586396139e-06,5.874520298553521611e-06,6.008032123520647083e-06,6.141543948487772555e-06,6.275055773454898027e-06,6.408567598422023499e-06,6.542079423389148971e-06,6.675591248356274443e-06,6.809103073323399915e-06,6.942614898290525386e-06,7.076126723257650858e-06,7.209638548224776330e-06,7.343150373191901802e-06,7.476662198159027274e-06,7.610174023126152746e-06,7.743685848093277371e-06,7.877197673060401149e-06,8.010709498027524927e-06,8.144221322994648704e-06,8.277733147961772482e-06,8.411244972928896260e-06 +0.000000000000000000e+00,1.335129479854071137e-07,2.670258959708142274e-07,4.005388439562213675e-07,5.340517919416283489e-07,6.675647399270353832e-07,8.010776879124424174e-07,9.345906358978494517e-07,1.068103583883256486e-06,1.201616531868663626e-06,1.335129479854070766e-06,1.468642427839477906e-06,1.602155375824885047e-06,1.735668323810291975e-06,1.869181271795699327e-06,2.002694219781106467e-06,2.136207167766513396e-06,2.269720115751920324e-06,2.403233063737327252e-06,2.536746011722734181e-06,2.670258959708140686e-06,2.803771907693548038e-06,2.937284855678955389e-06,3.070797803664361894e-06,3.204310751649768399e-06,3.337823699635175751e-06,3.471336647620583103e-06,3.604849595605989608e-06,3.738362543591396113e-06,3.871875491576803465e-06,4.005388439562210393e-06,4.138901387547617322e-06,4.272414335533024250e-06,4.405927283518431178e-06,4.539440231503838107e-06,4.672953179489245035e-06,4.806466127474651964e-06,4.939979075460058892e-06,5.073492023445465820e-06,5.207004971430872749e-06,5.340517919416279677e-06,5.474030867401685759e-06,5.607543815387093534e-06,5.741056763372500462e-06,5.874569711357907391e-06,6.008082659343315166e-06,6.141595607328721248e-06,6.275108555314128176e-06,6.408621503299535104e-06,6.542134451284941186e-06,6.675647399270348961e-06,6.809160347255755890e-06,6.942673295241162818e-06,7.076186243226570593e-06,7.209699191211976675e-06,7.343212139197383603e-06,7.476725087182790532e-06,7.610238035168196613e-06,7.743750983153603541e-06,7.877263931139009623e-06,8.010776879124415704e-06,8.144289827109821786e-06,8.277802775095227867e-06,8.411315723080633948e-06 +0.000000000000000000e+00,1.313241561997775665e-07,2.626483123995551331e-07,3.939724685993326996e-07,5.252966247991102662e-07,6.566207809988878327e-07,7.879449371986653993e-07,9.192690933984429658e-07,1.050593249598220532e-06,1.181917405797998205e-06,1.313241561997775877e-06,1.444565718197553550e-06,1.575889874397331222e-06,1.707214030597108895e-06,1.838538186796886567e-06,1.969862342996664239e-06,2.101186499196441912e-06,2.232510655396219584e-06,2.363834811595997257e-06,2.495158967795774929e-06,2.626483123995552601e-06,2.757807280195330274e-06,2.889131436395107946e-06,3.020455592594885619e-06,3.151779748794663291e-06,3.283103904994440964e-06,3.414428061194218636e-06,3.545752217393996308e-06,3.677076373593773981e-06,3.808400529793551653e-06,3.939724685993329326e-06,4.071048842193106998e-06,4.202372998392884671e-06,4.333697154592662343e-06,4.465021310792440015e-06,4.596345466992217688e-06,4.727669623191995360e-06,4.858993779391773033e-06,4.990317935591550705e-06,5.121642091791328378e-06,5.252966247991106050e-06,5.384290404190883722e-06,5.515614560390661395e-06,5.646938716590439067e-06,5.778262872790216740e-06,5.909587028989994412e-06,6.040911185189772085e-06,6.172235341389549757e-06,6.303559497589327429e-06,6.434883653789105102e-06,6.566207809988882774e-06,6.697531966188660447e-06,6.828856122388438119e-06,6.960180278588215792e-06,7.091504434787993464e-06,7.222828590987771136e-06,7.354152747187548809e-06,7.485476903387326481e-06,7.616801059587104154e-06,7.748125215786880979e-06,7.879449371986656957e-06,8.010773528186432936e-06,8.142097684386208914e-06,8.273421840585984893e-06 +0.000000000000000000e+00,1.263118719441541503e-07,2.526237438883083006e-07,3.789356158324624508e-07,5.052474877766166011e-07,6.315593597207706985e-07,7.578712316649247958e-07,8.841831036090788932e-07,1.010494975553232990e-06,1.136806847497387088e-06,1.263118719441541185e-06,1.389430591385695283e-06,1.515742463329849380e-06,1.642054335274003477e-06,1.768366207218157575e-06,1.894678079162311672e-06,2.020989951106465557e-06,2.147301823050619655e-06,2.273613694994773752e-06,2.399925566938927849e-06,2.526237438883081947e-06,2.652549310827236044e-06,2.778861182771390142e-06,2.905173054715544239e-06,3.031484926659698336e-06,3.157796798603852434e-06,3.284108670548006531e-06,3.410420542492160628e-06,3.536732414436314726e-06,3.663044286380468823e-06,3.789356158324622920e-06,3.915668030268777018e-06,4.041979902212931115e-06,4.168291774157085212e-06,4.294603646101239310e-06,4.420915518045393407e-06,4.547227389989547504e-06,4.673539261933701602e-06,4.799851133877855699e-06,4.926163005822009796e-06,5.052474877766163894e-06,5.178786749710317991e-06,5.305098621654472088e-06,5.431410493598626186e-06,5.557722365542780283e-06,5.684034237486934380e-06,5.810346109431088478e-06,5.936657981375242575e-06,6.062969853319396672e-06,6.189281725263550770e-06,6.315593597207704867e-06,6.441905469151858964e-06,6.568217341096013062e-06,6.694529213040167159e-06,6.820841084984321256e-06,6.947152956928475354e-06,7.073464828872629451e-06,7.199776700816783548e-06,7.326088572760937646e-06,7.452400444705091743e-06,7.578712316649245841e-06,7.705024188593400785e-06,7.831336060537555729e-06,7.957647932481710674e-06 +0.000000000000000000e+00,1.145377175556764258e-07,2.290754351113528516e-07,3.436131526670292775e-07,4.581508702227057033e-07,5.726885877783821291e-07,6.872263053340585549e-07,8.017640228897349808e-07,9.163017404454114066e-07,1.030839458001087727e-06,1.145377175556764046e-06,1.259914893112440366e-06,1.374452610668116686e-06,1.488990328223793006e-06,1.603528045779469326e-06,1.718065763335145646e-06,1.832603480890821966e-06,1.947141198446498286e-06,2.061678916002174606e-06,2.176216633557850926e-06,2.290754351113527246e-06,2.405292068669203566e-06,2.519829786224879886e-06,2.634367503780556206e-06,2.748905221336232526e-06,2.863442938891908846e-06,2.977980656447585166e-06,3.092518374003261485e-06,3.207056091558937805e-06,3.321593809114614125e-06,3.436131526670290445e-06,3.550669244225966765e-06,3.665206961781643085e-06,3.779744679337319405e-06,3.894282396892995725e-06,4.008820114448672045e-06,4.123357832004348365e-06,4.237895549560024685e-06,4.352433267115701005e-06,4.466970984671377325e-06,4.581508702227053645e-06,4.696046419782729965e-06,4.810584137338406285e-06,4.925121854894082605e-06,5.039659572449758925e-06,5.154197290005435244e-06,5.268735007561111564e-06,5.383272725116787884e-06,5.497810442672464204e-06,5.612348160228140524e-06,5.726885877783816844e-06,5.841423595339493164e-06,5.955961312895169484e-06,6.070499030450845804e-06,6.185036748006522124e-06,6.299574465562198444e-06,6.414112183117874764e-06,6.528649900673551084e-06,6.643187618229227404e-06,6.757725335784903724e-06,6.872263053340580044e-06,6.986800770896256364e-06,7.101338488451932684e-06,7.215876206007609003e-06 +0.000000000000000000e+00,1.111726703158578644e-07,2.223453406317157288e-07,3.335180109475736064e-07,4.446906812634315105e-07,5.558633515792894146e-07,6.670360218951473187e-07,7.782086922110052228e-07,8.893813625268631269e-07,1.000554032842721031e-06,1.111726703158578829e-06,1.222899373474436627e-06,1.334072043790294426e-06,1.445244714106152224e-06,1.556417384422010022e-06,1.667590054737867820e-06,1.778762725053725618e-06,1.889935395369583417e-06,2.001108065685441215e-06,2.112280736001299013e-06,2.223453406317156811e-06,2.334626076633014610e-06,2.445798746948872408e-06,2.556971417264730206e-06,2.668144087580588004e-06,2.779316757896445802e-06,2.890489428212303601e-06,3.001662098528161399e-06,3.112834768844019197e-06,3.224007439159876995e-06,3.335180109475734793e-06,3.446352779791592592e-06,3.557525450107450390e-06,3.668698120423308188e-06,3.779870790739165986e-06,3.891043461055023785e-06,4.002216131370881583e-06,4.113388801686739381e-06,4.224561472002597179e-06,4.335734142318454977e-06,4.446906812634312776e-06,4.558079482950170574e-06,4.669252153266028372e-06,4.780424823581886170e-06,4.891597493897743968e-06,5.002770164213601767e-06,5.113942834529459565e-06,5.225115504845317363e-06,5.336288175161175161e-06,5.447460845477032960e-06,5.558633515792890758e-06,5.669806186108748556e-06,5.780978856424606354e-06,5.892151526740464152e-06,6.003324197056321951e-06,6.114496867372179749e-06,6.225669537688037547e-06,6.336842208003895345e-06,6.448014878319753143e-06,6.559187548635610942e-06,6.670360218951468740e-06,6.781532889267326538e-06,6.892705559583184336e-06,7.003878229899042135e-06 +0.000000000000000000e+00,1.145813910109201086e-07,2.291627820218402172e-07,3.437441730327602993e-07,4.583255640436803814e-07,5.729069550546004635e-07,6.874883460655205985e-07,8.020697370764407336e-07,9.166511280873608686e-07,1.031232519098281110e-06,1.145813910109201350e-06,1.260395301120121591e-06,1.374976692131041832e-06,1.489558083141962073e-06,1.604139474152882314e-06,1.718720865163802555e-06,1.833302256174722796e-06,1.947883647185643037e-06,2.062465038196563066e-06,2.177046429207483095e-06,2.291627820218403124e-06,2.406209211229323154e-06,2.520790602240243183e-06,2.635371993251163212e-06,2.749953384262083241e-06,2.864534775273003270e-06,2.979116166283923299e-06,3.093697557294843329e-06,3.208278948305763358e-06,3.322860339316683387e-06,3.437441730327603416e-06,3.552023121338523445e-06,3.666604512349443474e-06,3.781185903360363504e-06,3.895767294371283533e-06,4.010348685382203986e-06,4.124930076393124438e-06,4.239511467404044891e-06,4.354092858414965344e-06,4.468674249425885796e-06,4.583255640436806249e-06,4.697837031447726702e-06,4.812418422458647154e-06,4.926999813469567607e-06,5.041581204480488060e-06,5.156162595491408512e-06,5.270743986502328965e-06,5.385325377513249418e-06,5.499906768524169870e-06,5.614488159535090323e-06,5.729069550546010776e-06,5.843650941556931228e-06,5.958232332567851681e-06,6.072813723578772134e-06,6.187395114589692587e-06,6.301976505600613039e-06,6.416557896611533492e-06,6.531139287622453945e-06,6.645720678633374397e-06,6.760302069644294850e-06,6.874883460655215303e-06,6.989464851666135755e-06,7.104046242677056208e-06,7.218627633687976661e-06 +0.000000000000000000e+00,1.120407796960706024e-07,2.240815593921412047e-07,3.361223390882117939e-07,4.481631187842823565e-07,5.602038984803529192e-07,6.722446781764234818e-07,7.842854578724940445e-07,8.963262375685646071e-07,1.008367017264635170e-06,1.120407796960705838e-06,1.232448576656776507e-06,1.344489356352847175e-06,1.456530136048917844e-06,1.568570915744988512e-06,1.680611695441059181e-06,1.792652475137129850e-06,1.904693254833200518e-06,2.016734034529271187e-06,2.128774814225341855e-06,2.240815593921412524e-06,2.352856373617483192e-06,2.464897153313553861e-06,2.576937933009624529e-06,2.688978712705695198e-06,2.801019492401765866e-06,2.913060272097836535e-06,3.025101051793907203e-06,3.137141831489977872e-06,3.249182611186048541e-06,3.361223390882119209e-06,3.473264170578189878e-06,3.585304950274260546e-06,3.697345729970331215e-06,3.809386509666401883e-06,3.921427289362472128e-06,4.033468069058542373e-06,4.145508848754612618e-06,4.257549628450682863e-06,4.369590408146753108e-06,4.481631187842823353e-06,4.593671967538893598e-06,4.705712747234963843e-06,4.817753526931034088e-06,4.929794306627104333e-06,5.041835086323174578e-06,5.153875866019244823e-06,5.265916645715315068e-06,5.377957425411385313e-06,5.489998205107455558e-06,5.602038984803525804e-06,5.714079764499596049e-06,5.826120544195666294e-06,5.938161323891736539e-06,6.050202103587806784e-06,6.162242883283877029e-06,6.274283662979947274e-06,6.386324442676017519e-06,6.498365222372087764e-06,6.610406002068158009e-06,6.722446781764228254e-06,6.834487561460298499e-06,6.946528341156368744e-06,7.058569120852438989e-06 +0.000000000000000000e+00,1.119482857572977267e-07,2.238965715145954535e-07,3.358448572718931934e-07,4.477931430291909599e-07,5.597414287864887792e-07,6.716897145437865986e-07,7.836380003010844180e-07,8.955862860583822374e-07,1.007534571815680057e-06,1.119482857572977982e-06,1.231431143330275907e-06,1.343379429087573833e-06,1.455327714844871758e-06,1.567276000602169683e-06,1.679224286359467608e-06,1.791172572116765534e-06,1.903120857874063459e-06,2.015069143631361384e-06,2.127017429388659098e-06,2.238965715145956811e-06,2.350914000903254525e-06,2.462862286660552238e-06,2.574810572417849952e-06,2.686758858175147665e-06,2.798707143932445379e-06,2.910655429689743092e-06,3.022603715447040805e-06,3.134552001204338519e-06,3.246500286961636232e-06,3.358448572718933946e-06,3.470396858476231659e-06,3.582345144233529373e-06,3.694293429990827086e-06,3.806241715748124800e-06,3.918190001505422513e-06,4.030138287262720227e-06,4.142086573020017940e-06,4.254034858777315654e-06,4.365983144534613367e-06,4.477931430291911081e-06,4.589879716049208794e-06,4.701828001806506508e-06,4.813776287563804221e-06,4.925724573321101935e-06,5.037672859078399648e-06,5.149621144835697362e-06,5.261569430592995075e-06,5.373517716350292789e-06,5.485466002107590502e-06,5.597414287864888216e-06,5.709362573622185929e-06,5.821310859379483643e-06,5.933259145136781356e-06,6.045207430894079070e-06,6.157155716651376783e-06,6.269104002408674497e-06,6.381052288165972210e-06,6.493000573923269924e-06,6.604948859680567637e-06,6.716897145437865351e-06,6.828845431195163064e-06,6.940793716952460778e-06,7.052742002709758491e-06 +0.000000000000000000e+00,1.081699715226337636e-07,2.163399430452675272e-07,3.245099145679012775e-07,4.326798860905350014e-07,5.408498576131687253e-07,6.490198291358024491e-07,7.571898006584361730e-07,8.653597721810698969e-07,9.735297437037036208e-07,1.081699715226337451e-06,1.189869686748971280e-06,1.298039658271605110e-06,1.406209629794238940e-06,1.514379601316872770e-06,1.622549572839506599e-06,1.730719544362140429e-06,1.838889515884774259e-06,1.947059487407408089e-06,2.055229458930041918e-06,2.163399430452675748e-06,2.271569401975309578e-06,2.379739373497943408e-06,2.487909345020577237e-06,2.596079316543211067e-06,2.704249288065844897e-06,2.812419259588478727e-06,2.920589231111112556e-06,3.028759202633746386e-06,3.136929174156380216e-06,3.245099145679014046e-06,3.353269117201647875e-06,3.461439088724281705e-06,3.569609060246915535e-06,3.677779031769549365e-06,3.785949003292183194e-06,3.894118974814817024e-06,4.002288946337451277e-06,4.110458917860085531e-06,4.218628889382719784e-06,4.326798860905354037e-06,4.434968832427988291e-06,4.543138803950622544e-06,4.651308775473256797e-06,4.759478746995891050e-06,4.867648718518525304e-06,4.975818690041159557e-06,5.083988661563793810e-06,5.192158633086428063e-06,5.300328604609062317e-06,5.408498576131696570e-06,5.516668547654330823e-06,5.624838519176965077e-06,5.733008490699599330e-06,5.841178462222233583e-06,5.949348433744867836e-06,6.057518405267502090e-06,6.165688376790136343e-06,6.273858348312770596e-06,6.382028319835404849e-06,6.490198291358039103e-06,6.598368262880673356e-06,6.706538234403307609e-06,6.814708205925941863e-06 +0.000000000000000000e+00,1.145700675653412130e-07,2.291401351306824260e-07,3.437102026960236390e-07,4.582802702613648520e-07,5.728503378267060649e-07,6.874204053920472779e-07,8.019904729573884909e-07,9.165605405227297039e-07,1.031130608088070917e-06,1.145700675653412130e-06,1.260270743218753343e-06,1.374840810784094556e-06,1.489410878349435769e-06,1.603980945914776982e-06,1.718551013480118195e-06,1.833121081045459408e-06,1.947691148610800621e-06,2.062261216176141834e-06,2.176831283741483047e-06,2.291401351306824260e-06,2.405971418872165473e-06,2.520541486437506686e-06,2.635111554002847899e-06,2.749681621568189112e-06,2.864251689133530325e-06,2.978821756698871538e-06,3.093391824264212751e-06,3.207961891829553964e-06,3.322531959394895177e-06,3.437102026960236390e-06,3.551672094525577603e-06,3.666242162090918816e-06,3.780812229656260029e-06,3.895382297221601242e-06,4.009952364786942031e-06,4.124522432352282821e-06,4.239092499917623610e-06,4.353662567482964399e-06,4.468232635048305189e-06,4.582802702613645978e-06,4.697372770178986768e-06,4.811942837744327557e-06,4.926512905309668347e-06,5.041082972875009136e-06,5.155653040440349926e-06,5.270223108005690715e-06,5.384793175571031505e-06,5.499363243136372294e-06,5.613933310701713084e-06,5.728503378267053873e-06,5.843073445832394663e-06,5.957643513397735452e-06,6.072213580963076242e-06,6.186783648528417031e-06,6.301353716093757821e-06,6.415923783659098610e-06,6.530493851224439399e-06,6.645063918789780189e-06,6.759633986355120978e-06,6.874204053920461768e-06,6.988774121485802557e-06,7.103344189051143347e-06,7.217914256616484136e-06 +0.000000000000000000e+00,1.121384837263828843e-07,2.242769674527657686e-07,3.364154511791486396e-07,4.485539349055314842e-07,5.606924186319143288e-07,6.728309023582971734e-07,7.849693860846800180e-07,8.971078698110628625e-07,1.009246353537445707e-06,1.121384837263828658e-06,1.233523320990211608e-06,1.345661804716594559e-06,1.457800288442977509e-06,1.569938772169360459e-06,1.682077255895743410e-06,1.794215739622126360e-06,1.906354223348509311e-06,2.018492707074892261e-06,2.130631190801275212e-06,2.242769674527658162e-06,2.354908158254041113e-06,2.467046641980424063e-06,2.579185125706807014e-06,2.691323609433189964e-06,2.803462093159572915e-06,2.915600576885955865e-06,3.027739060612338815e-06,3.139877544338721766e-06,3.252016028065104716e-06,3.364154511791487667e-06,3.476292995517870617e-06,3.588431479244253568e-06,3.700569962970636518e-06,3.812708446697019469e-06,3.924846930423402843e-06,4.036985414149786217e-06,4.149123897876169591e-06,4.261262381602552965e-06,4.373400865328936339e-06,4.485539349055319713e-06,4.597677832781703087e-06,4.709816316508086460e-06,4.821954800234469834e-06,4.934093283960853208e-06,5.046231767687236582e-06,5.158370251413619956e-06,5.270508735140003330e-06,5.382647218866386704e-06,5.494785702592770078e-06,5.606924186319153452e-06,5.719062670045536826e-06,5.831201153771920200e-06,5.943339637498303574e-06,6.055478121224686948e-06,6.167616604951070322e-06,6.279755088677453696e-06,6.391893572403837070e-06,6.504032056130220444e-06,6.616170539856603818e-06,6.728309023582987192e-06,6.840447507309370566e-06,6.952585991035753940e-06,7.064724474762137314e-06 +0.000000000000000000e+00,1.145377175556721377e-07,2.290754351113442754e-07,3.436131526670164132e-07,4.581508702226885509e-07,5.726885877783606356e-07,6.872263053340327204e-07,8.017640228897048052e-07,9.163017404453768900e-07,1.030839458001048975e-06,1.145377175556721060e-06,1.259914893112393144e-06,1.374452610668065229e-06,1.488990328223737314e-06,1.603528045779409399e-06,1.718065763335081483e-06,1.832603480890753568e-06,1.947141198446425441e-06,2.061678916002097526e-06,2.176216633557769611e-06,2.290754351113441696e-06,2.405292068669113780e-06,2.519829786224785865e-06,2.634367503780457950e-06,2.748905221336130035e-06,2.863442938891802119e-06,2.977980656447474204e-06,3.092518374003146289e-06,3.207056091558818374e-06,3.321593809114490459e-06,3.436131526670162543e-06,3.550669244225834628e-06,3.665206961781506713e-06,3.779744679337178798e-06,3.894282396892850882e-06,4.008820114448522967e-06,4.123357832004195052e-06,4.237895549559867137e-06,4.352433267115539222e-06,4.466970984671211306e-06,4.581508702226883391e-06,4.696046419782555476e-06,4.810584137338227561e-06,4.925121854893899645e-06,5.039659572449571730e-06,5.154197290005243815e-06,5.268735007560915900e-06,5.383272725116587985e-06,5.497810442672260069e-06,5.612348160227932154e-06,5.726885877783604239e-06,5.841423595339276324e-06,5.955961312894948408e-06,6.070499030450620493e-06,6.185036748006292578e-06,6.299574465561964663e-06,6.414112183117636748e-06,6.528649900673308832e-06,6.643187618228980917e-06,6.757725335784653002e-06,6.872263053340325087e-06,6.986800770895997171e-06,7.101338488451669256e-06,7.215876206007341341e-06 +0.000000000000000000e+00,1.111726703158540924e-07,2.223453406317081849e-07,3.335180109475622773e-07,4.446906812634163698e-07,5.558633515792704622e-07,6.670360218951245547e-07,7.782086922109786471e-07,8.893813625268327396e-07,1.000554032842686726e-06,1.111726703158540713e-06,1.222899373474394699e-06,1.334072043790248686e-06,1.445244714106102672e-06,1.556417384421956659e-06,1.667590054737810646e-06,1.778762725053664632e-06,1.889935395369518619e-06,2.001108065685372605e-06,2.112280736001226592e-06,2.223453406317080578e-06,2.334626076632934565e-06,2.445798746948788551e-06,2.556971417264642538e-06,2.668144087580496525e-06,2.779316757896350511e-06,2.890489428212204498e-06,3.001662098528058484e-06,3.112834768843912471e-06,3.224007439159766457e-06,3.335180109475620444e-06,3.446352779791474431e-06,3.557525450107328417e-06,3.668698120423182404e-06,3.779870790739036390e-06,3.891043461054889953e-06,4.002216131370743516e-06,4.113388801686597079e-06,4.224561472002450642e-06,4.335734142318304206e-06,4.446906812634157769e-06,4.558079482950011332e-06,4.669252153265864895e-06,4.780424823581718458e-06,4.891597493897572021e-06,5.002770164213425584e-06,5.113942834529279147e-06,5.225115504845132710e-06,5.336288175160986273e-06,5.447460845476839836e-06,5.558633515792693399e-06,5.669806186108546962e-06,5.780978856424400525e-06,5.892151526740254088e-06,6.003324197056107651e-06,6.114496867371961214e-06,6.225669537687814777e-06,6.336842208003668340e-06,6.448014878319521903e-06,6.559187548635375467e-06,6.670360218951229030e-06,6.781532889267082593e-06,6.892705559582936156e-06,7.003878229898789719e-06 +0.000000000000000000e+00,1.145700675653390425e-07,2.291401351306780849e-07,3.437102026960171274e-07,4.582802702613561699e-07,5.728503378266952653e-07,6.874204053920343607e-07,8.019904729573734561e-07,9.165605405227125515e-07,1.031130608088051647e-06,1.145700675653390742e-06,1.260270743218729838e-06,1.374840810784068933e-06,1.489410878349408029e-06,1.603980945914747124e-06,1.718551013480086219e-06,1.833121081045425315e-06,1.947691148610764622e-06,2.062261216176103717e-06,2.176831283741442813e-06,2.291401351306781908e-06,2.405971418872121004e-06,2.520541486437460099e-06,2.635111554002799194e-06,2.749681621568138290e-06,2.864251689133477385e-06,2.978821756698816481e-06,3.093391824264155576e-06,3.207961891829494671e-06,3.322531959394833767e-06,3.437102026960172862e-06,3.551672094525511958e-06,3.666242162090851053e-06,3.780812229656190148e-06,3.895382297221529244e-06,4.009952364786868339e-06,4.124522432352207435e-06,4.239092499917546530e-06,4.353662567482885625e-06,4.468232635048224721e-06,4.582802702613563816e-06,4.697372770178902912e-06,4.811942837744242007e-06,4.926512905309581102e-06,5.041082972874920198e-06,5.155653040440259293e-06,5.270223108005598389e-06,5.384793175570937484e-06,5.499363243136276579e-06,5.613933310701615675e-06,5.728503378266954770e-06,5.843073445832293866e-06,5.957643513397632961e-06,6.072213580962972057e-06,6.186783648528311152e-06,6.301353716093650247e-06,6.415923783658989343e-06,6.530493851224328438e-06,6.645063918789667534e-06,6.759633986355006629e-06,6.874204053920345724e-06,6.988774121485684820e-06,7.103344189051023915e-06,7.217914256616363011e-06 +0.000000000000000000e+00,1.120407796960682466e-07,2.240815593921364931e-07,3.361223390882047529e-07,4.481631187842730391e-07,5.602038984803412725e-07,6.722446781764095058e-07,7.842854578724777391e-07,8.963262375685459724e-07,1.008367017264614206e-06,1.120407796960682545e-06,1.232448576656750884e-06,1.344489356352819223e-06,1.456530136048887563e-06,1.568570915744955902e-06,1.680611695441024241e-06,1.792652475137092580e-06,1.904693254833160919e-06,2.016734034529229258e-06,2.128774814225297386e-06,2.240815593921365513e-06,2.352856373617433641e-06,2.464897153313501768e-06,2.576937933009569896e-06,2.688978712705638023e-06,2.801019492401706151e-06,2.913060272097774278e-06,3.025101051793842405e-06,3.137141831489910533e-06,3.249182611185978660e-06,3.361223390882046788e-06,3.473264170578114915e-06,3.585304950274183043e-06,3.697345729970251170e-06,3.809386509666319297e-06,3.921427289362387425e-06,4.033468069058455976e-06,4.145508848754524527e-06,4.257549628450593078e-06,4.369590408146661629e-06,4.481631187842730180e-06,4.593671967538798731e-06,4.705712747234867282e-06,4.817753526930935833e-06,4.929794306627004384e-06,5.041835086323072934e-06,5.153875866019141485e-06,5.265916645715210036e-06,5.377957425411278587e-06,5.489998205107347138e-06,5.602038984803415689e-06,5.714079764499484240e-06,5.826120544195552791e-06,5.938161323891621342e-06,6.050202103587689893e-06,6.162242883283758444e-06,6.274283662979826995e-06,6.386324442675895546e-06,6.498365222371964097e-06,6.610406002068032648e-06,6.722446781764101199e-06,6.834487561460169750e-06,6.946528341156238301e-06,7.058569120852306852e-06 +0.000000000000000000e+00,1.119482857572945239e-07,2.238965715145890478e-07,3.358448572718835584e-07,4.477931430291780426e-07,5.597414287864724739e-07,6.716897145437669051e-07,7.836380003010613363e-07,8.955862860583557676e-07,1.007534571815650199e-06,1.119482857572944524e-06,1.231431143330238850e-06,1.343379429087533175e-06,1.455327714844827500e-06,1.567276000602121826e-06,1.679224286359416151e-06,1.791172572116710476e-06,1.903120857874004802e-06,2.015069143631299127e-06,2.127017429388593452e-06,2.238965715145887778e-06,2.350914000903182103e-06,2.462862286660476429e-06,2.574810572417770754e-06,2.686758858175065079e-06,2.798707143932359405e-06,2.910655429689653730e-06,3.022603715446948055e-06,3.134552001204242381e-06,3.246500286961536706e-06,3.358448572718831031e-06,3.470396858476125357e-06,3.582345144233419682e-06,3.694293429990714008e-06,3.806241715748008333e-06,3.918190001505303082e-06,4.030138287262597407e-06,4.142086573019891733e-06,4.254034858777186058e-06,4.365983144534480383e-06,4.477931430291774709e-06,4.589879716049069034e-06,4.701828001806363359e-06,4.813776287563657685e-06,4.925724573320952010e-06,5.037672859078246335e-06,5.149621144835540661e-06,5.261569430592834986e-06,5.373517716350129312e-06,5.485466002107423637e-06,5.597414287864717962e-06,5.709362573622012288e-06,5.821310859379306613e-06,5.933259145136600938e-06,6.045207430893895264e-06,6.157155716651189589e-06,6.269104002408483914e-06,6.381052288165778240e-06,6.493000573923072565e-06,6.604948859680366891e-06,6.716897145437661216e-06,6.828845431194955541e-06,6.940793716952249867e-06,7.052742002709544192e-06 +0.000000000000000000e+00,1.081699715226312887e-07,2.163399430452625773e-07,3.245099145678938660e-07,4.326798860905251546e-07,5.408498576131564433e-07,6.490198291357877319e-07,7.571898006584190206e-07,8.653597721810503093e-07,9.735297437036815979e-07,1.081699715226312887e-06,1.189869686748944175e-06,1.298039658271575464e-06,1.406209629794206753e-06,1.514379601316838041e-06,1.622549572839469330e-06,1.730719544362100619e-06,1.838889515884731907e-06,1.947059487407363196e-06,2.055229458929994484e-06,2.163399430452625773e-06,2.271569401975257062e-06,2.379739373497888350e-06,2.487909345020519639e-06,2.596079316543150928e-06,2.704249288065782216e-06,2.812419259588413505e-06,2.920589231111044794e-06,3.028759202633676082e-06,3.136929174156307371e-06,3.245099145678938660e-06,3.353269117201569948e-06,3.461439088724201237e-06,3.569609060246832526e-06,3.677779031769463814e-06,3.785949003292095103e-06,3.894118974814726392e-06,4.002288946337358104e-06,4.110458917859989816e-06,4.218628889382621528e-06,4.326798860905253240e-06,4.434968832427884953e-06,4.543138803950516665e-06,4.651308775473148377e-06,4.759478746995780089e-06,4.867648718518411801e-06,4.975818690041043513e-06,5.083988661563675226e-06,5.192158633086306938e-06,5.300328604608938650e-06,5.408498576131570362e-06,5.516668547654202074e-06,5.624838519176833786e-06,5.733008490699465499e-06,5.841178462222097211e-06,5.949348433744728923e-06,6.057518405267360635e-06,6.165688376789992347e-06,6.273858348312624059e-06,6.382028319835255772e-06,6.490198291357887484e-06,6.598368262880519196e-06,6.706538234403150908e-06,6.814708205925782620e-06 +0.000000000000000000e+00,1.125774442318489836e-07,2.251548884636979672e-07,3.377323326955469640e-07,4.503097769273959873e-07,5.628872211592450106e-07,6.754646653910940338e-07,7.880421096229430571e-07,9.006195538547920804e-07,1.013196998086641104e-06,1.125774442318490021e-06,1.238351886550338939e-06,1.350929330782187856e-06,1.463506775014036773e-06,1.576084219245885691e-06,1.688661663477734608e-06,1.801239107709583526e-06,1.913816551941432443e-06,2.026393996173281360e-06,2.138971440405130278e-06,2.251548884636979195e-06,2.364126328868828113e-06,2.476703773100677030e-06,2.589281217332525947e-06,2.701858661564374865e-06,2.814436105796223782e-06,2.927013550028072700e-06,3.039590994259921617e-06,3.152168438491770534e-06,3.264745882723619452e-06,3.377323326955468369e-06,3.489900771187317287e-06,3.602478215419166204e-06,3.715055659651015121e-06,3.827633103882864039e-06,3.940210548114712533e-06,4.052787992346561027e-06,4.165365436578409521e-06,4.277942880810258014e-06,4.390520325042106508e-06,4.503097769273955002e-06,4.615675213505803496e-06,4.728252657737651990e-06,4.840830101969500484e-06,4.953407546201348978e-06,5.065984990433197472e-06,5.178562434665045966e-06,5.291139878896894459e-06,5.403717323128742953e-06,5.516294767360591447e-06,5.628872211592439941e-06,5.741449655824288435e-06,5.854027100056136929e-06,5.966604544287985423e-06,6.079181988519833917e-06,6.191759432751682411e-06,6.304336876983530904e-06,6.416914321215379398e-06,6.529491765447227892e-06,6.642069209679076386e-06,6.754646653910924880e-06,6.867224098142773374e-06,6.979801542374621868e-06,7.092378986606470362e-06 +0.000000000000000000e+00,1.115684913700502630e-07,2.231369827401005259e-07,3.347054741101508154e-07,4.462739654802011048e-07,5.578424568502513942e-07,6.694109482203016307e-07,7.809794395903518672e-07,8.925479309604021037e-07,1.004116422330452446e-06,1.115684913700502788e-06,1.227253405070553131e-06,1.338821896440603473e-06,1.450390387810653816e-06,1.561958879180704158e-06,1.673527370550754500e-06,1.785095861920804843e-06,1.896664353290855185e-06,2.008232844660905739e-06,2.119801336030956293e-06,2.231369827401006847e-06,2.342938318771057402e-06,2.454506810141107956e-06,2.566075301511158510e-06,2.677643792881209064e-06,2.789212284251259618e-06,2.900780775621310172e-06,3.012349266991360726e-06,3.123917758361411281e-06,3.235486249731461835e-06,3.347054741101512389e-06,3.458623232471562943e-06,3.570191723841613497e-06,3.681760215211664051e-06,3.793328706581714605e-06,3.904897197951764736e-06,4.016465689321814867e-06,4.128034180691864997e-06,4.239602672061915128e-06,4.351171163431965258e-06,4.462739654802015389e-06,4.574308146172065520e-06,4.685876637542115650e-06,4.797445128912165781e-06,4.909013620282215911e-06,5.020582111652266042e-06,5.132150603022316173e-06,5.243719094392366303e-06,5.355287585762416434e-06,5.466856077132466565e-06,5.578424568502516695e-06,5.689993059872566826e-06,5.801561551242616956e-06,5.913130042612667087e-06,6.024698533982717218e-06,6.136267025352767348e-06,6.247835516722817479e-06,6.359404008092867610e-06,6.470972499462917740e-06,6.582540990832967871e-06,6.694109482203018001e-06,6.805677973573068132e-06,6.917246464943118263e-06,7.028814956313168393e-06 +0.000000000000000000e+00,1.099901741719132413e-07,2.199803483438264826e-07,3.299705225157397503e-07,4.399606966876530181e-07,5.499508708595662859e-07,6.599410450314795007e-07,7.699312192033927155e-07,8.799213933753059303e-07,9.899115675472190393e-07,1.099901741719132148e-06,1.209891915891045257e-06,1.319882090062958366e-06,1.429872264234871475e-06,1.539862438406784584e-06,1.649852612578697693e-06,1.759842786750610802e-06,1.869832960922523911e-06,1.979823135094437231e-06,2.089813309266350552e-06,2.199803483438263873e-06,2.309793657610177194e-06,2.419783831782090514e-06,2.529774005954003835e-06,2.639764180125917156e-06,2.749754354297830476e-06,2.859744528469743797e-06,2.969734702641657118e-06,3.079724876813570438e-06,3.189715050985483759e-06,3.299705225157397080e-06,3.409695399329310401e-06,3.519685573501223721e-06,3.629675747673137042e-06,3.739665921845050363e-06,3.849656096016964107e-06,3.959646270188877851e-06,4.069636444360791595e-06,4.179626618532705340e-06,4.289616792704619084e-06,4.399606966876532828e-06,4.509597141048446572e-06,4.619587315220360316e-06,4.729577489392274061e-06,4.839567663564187805e-06,4.949557837736101549e-06,5.059548011908015293e-06,5.169538186079929037e-06,5.279528360251842782e-06,5.389518534423756526e-06,5.499508708595670270e-06,5.609498882767584014e-06,5.719489056939497759e-06,5.829479231111411503e-06,5.939469405283325247e-06,6.049459579455238991e-06,6.159449753627152735e-06,6.269439927799066480e-06,6.379430101970980224e-06,6.489420276142893968e-06,6.599410450314807712e-06,6.709400624486721456e-06,6.819390798658635201e-06,6.929380972830548945e-06 +0.000000000000000000e+00,1.125774442318455425e-07,2.251548884636910850e-07,3.377323326955366408e-07,4.503097769273822230e-07,5.628872211592278581e-07,6.754646653910734933e-07,7.880421096229191284e-07,9.006195538547647636e-07,1.013196998086610399e-06,1.125774442318456140e-06,1.238351886550301881e-06,1.350929330782147622e-06,1.463506775013993363e-06,1.576084219245839104e-06,1.688661663477684845e-06,1.801239107709530586e-06,1.913816551941376115e-06,2.026393996173221645e-06,2.138971440405067174e-06,2.251548884636912703e-06,2.364126328868758232e-06,2.476703773100603762e-06,2.589281217332449291e-06,2.701858661564294820e-06,2.814436105796140349e-06,2.927013550027985879e-06,3.039590994259831408e-06,3.152168438491676937e-06,3.264745882723522467e-06,3.377323326955367996e-06,3.489900771187213525e-06,3.602478215419059054e-06,3.715055659650904584e-06,3.827633103882750536e-06,3.940210548114596489e-06,4.052787992346442442e-06,4.165365436578288395e-06,4.277942880810134348e-06,4.390520325041980300e-06,4.503097769273826253e-06,4.615675213505672206e-06,4.728252657737518159e-06,4.840830101969364112e-06,4.953407546201210064e-06,5.065984990433056017e-06,5.178562434664901970e-06,5.291139878896747923e-06,5.403717323128593876e-06,5.516294767360439828e-06,5.628872211592285781e-06,5.741449655824131734e-06,5.854027100055977687e-06,5.966604544287823640e-06,6.079181988519669592e-06,6.191759432751515545e-06,6.304336876983361498e-06,6.416914321215207451e-06,6.529491765447053403e-06,6.642069209678899356e-06,6.754646653910745309e-06,6.867224098142591262e-06,6.979801542374437215e-06,7.092378986606283167e-06 +0.000000000000000000e+00,1.115684913700470337e-07,2.231369827400940673e-07,3.347054741101410745e-07,4.462739654801880817e-07,5.578424568502350888e-07,6.694109482202821490e-07,7.809794395903292091e-07,8.925479309603762692e-07,1.004116422330423223e-06,1.115684913700470178e-06,1.227253405070517132e-06,1.338821896440564086e-06,1.450390387810611040e-06,1.561958879180657995e-06,1.673527370550704949e-06,1.785095861920751903e-06,1.896664353290798857e-06,2.008232844660845600e-06,2.119801336030892342e-06,2.231369827400939085e-06,2.342938318770985827e-06,2.454506810141032570e-06,2.566075301511079312e-06,2.677643792881126055e-06,2.789212284251172797e-06,2.900780775621219540e-06,3.012349266991266282e-06,3.123917758361313025e-06,3.235486249731359767e-06,3.347054741101406510e-06,3.458623232471453252e-06,3.570191723841499995e-06,3.681760215211546737e-06,3.793328706581593480e-06,3.904897197951640222e-06,4.016465689321686965e-06,4.128034180691733707e-06,4.239602672061780450e-06,4.351171163431827192e-06,4.462739654801873935e-06,4.574308146171920677e-06,4.685876637541967420e-06,4.797445128912014162e-06,4.909013620282060904e-06,5.020582111652107647e-06,5.132150603022154389e-06,5.243719094392201132e-06,5.355287585762247874e-06,5.466856077132294617e-06,5.578424568502341359e-06,5.689993059872388102e-06,5.801561551242434844e-06,5.913130042612481587e-06,6.024698533982528329e-06,6.136267025352575072e-06,6.247835516722621814e-06,6.359404008092668557e-06,6.470972499462715299e-06,6.582540990832762042e-06,6.694109482202808784e-06,6.805677973572855527e-06,6.917246464942902269e-06,7.028814956312949012e-06 +0.000000000000000000e+00,1.099901741719109517e-07,2.199803483438219033e-07,3.299705225157328682e-07,4.399606966876438596e-07,5.499508708595548509e-07,6.599410450314658423e-07,7.699312192033768336e-07,8.799213933752878250e-07,9.899115675471987105e-07,1.099901741719109490e-06,1.209891915891020270e-06,1.319882090062931049e-06,1.429872264234841829e-06,1.539862438406752608e-06,1.649852612578663388e-06,1.759842786750574168e-06,1.869832960922484947e-06,1.979823135094395727e-06,2.089813309266306506e-06,2.199803483438217286e-06,2.309793657610128066e-06,2.419783831782038845e-06,2.529774005953949625e-06,2.639764180125860404e-06,2.749754354297771184e-06,2.859744528469681964e-06,2.969734702641592743e-06,3.079724876813503523e-06,3.189715050985414302e-06,3.299705225157325082e-06,3.409695399329235862e-06,3.519685573501146641e-06,3.629675747673057421e-06,3.739665921844968200e-06,3.849656096016879404e-06,3.959646270188790607e-06,4.069636444360701810e-06,4.179626618532613013e-06,4.289616792704524216e-06,4.399606966876435419e-06,4.509597141048346622e-06,4.619587315220257825e-06,4.729577489392169029e-06,4.839567663564080232e-06,4.949557837735991435e-06,5.059548011907902638e-06,5.169538186079813841e-06,5.279528360251725044e-06,5.389518534423636247e-06,5.499508708595547450e-06,5.609498882767458653e-06,5.719489056939369857e-06,5.829479231111281060e-06,5.939469405283192263e-06,6.049459579455103466e-06,6.159449753627014669e-06,6.269439927798925872e-06,6.379430101970837075e-06,6.489420276142748278e-06,6.599410450314659481e-06,6.709400624486570685e-06,6.819390798658481888e-06,6.929380972830393091e-06 +0.000000000000000000e+00,1.156525212997320113e-07,2.313050425994640227e-07,3.469575638991960208e-07,4.626100851989279924e-07,5.782626064986599640e-07,6.939151277983919356e-07,8.095676490981239073e-07,9.252201703978558789e-07,1.040872691697587745e-06,1.156525212997319716e-06,1.272177734297051688e-06,1.387830255596783660e-06,1.503482776896515631e-06,1.619135298196247603e-06,1.734787819495979574e-06,1.850440340795711546e-06,1.966092862095443518e-06,2.081745383395175489e-06,2.197397904694907461e-06,2.313050425994639433e-06,2.428702947294371404e-06,2.544355468594103376e-06,2.660007989893835347e-06,2.775660511193567319e-06,2.891313032493299291e-06,3.006965553793031262e-06,3.122618075092763234e-06,3.238270596392495206e-06,3.353923117692227177e-06,3.469575638991959149e-06,3.585228160291691120e-06,3.700880681591423092e-06,3.816533202891155487e-06,3.932185724190887882e-06,4.047838245490620278e-06,4.163490766790352673e-06,4.279143288090085068e-06,4.394795809389817463e-06,4.510448330689549858e-06,4.626100851989282253e-06,4.741753373289014648e-06,4.857405894588747044e-06,4.973058415888479439e-06,5.088710937188211834e-06,5.204363458487944229e-06,5.320015979787676624e-06,5.435668501087409019e-06,5.551321022387141414e-06,5.666973543686873810e-06,5.782626064986606205e-06,5.898278586286338600e-06,6.013931107586070995e-06,6.129583628885803390e-06,6.245236150185535785e-06,6.360888671485268180e-06,6.476541192785000576e-06,6.592193714084732971e-06,6.707846235384465366e-06,6.823498756684197761e-06,6.939151277983930156e-06,7.054803799283662551e-06,7.170456320583394946e-06,7.286108841883127342e-06 +0.000000000000000000e+00,1.139876705291112623e-07,2.279753410582225246e-07,3.419630115873338002e-07,4.559506821164451022e-07,5.699383526455564572e-07,6.839260231746678121e-07,7.979136937037791671e-07,9.119013642328905220e-07,1.025889034762001877e-06,1.139876705291113338e-06,1.253864375820224799e-06,1.367852046349336260e-06,1.481839716878447720e-06,1.595827387407559181e-06,1.709815057936670642e-06,1.823802728465782103e-06,1.937790398994893564e-06,2.051778069524005025e-06,2.165765740053116485e-06,2.279753410582227946e-06,2.393741081111339407e-06,2.507728751640450868e-06,2.621716422169562329e-06,2.735704092698673790e-06,2.849691763227785250e-06,2.963679433756896711e-06,3.077667104286008172e-06,3.191654774815119633e-06,3.305642445344231094e-06,3.419630115873342555e-06,3.533617786402454015e-06,3.647605456931565476e-06,3.761593127460676937e-06,3.875580797989787974e-06,3.989568468518899435e-06,4.103556139048010896e-06,4.217543809577122357e-06,4.331531480106233818e-06,4.445519150635345279e-06,4.559506821164456739e-06,4.673494491693568200e-06,4.787482162222679661e-06,4.901469832751791122e-06,5.015457503280902583e-06,5.129445173810014044e-06,5.243432844339125504e-06,5.357420514868236965e-06,5.471408185397348426e-06,5.585395855926459887e-06,5.699383526455571348e-06,5.813371196984682809e-06,5.927358867513794270e-06,6.041346538042905730e-06,6.155334208572017191e-06,6.269321879101128652e-06,6.383309549630240113e-06,6.497297220159351574e-06,6.611284890688463035e-06,6.725272561217574495e-06,6.839260231746685956e-06,6.953247902275797417e-06,7.067235572804908878e-06,7.181223243334020339e-06 +0.000000000000000000e+00,1.134460635347749253e-07,2.268921270695498507e-07,3.403381906043247495e-07,4.537842541390996484e-07,5.672303176738745473e-07,6.806763812086494991e-07,7.941224447434244509e-07,9.075685082781994027e-07,1.021014571812974249e-06,1.134460635347749095e-06,1.247906698882523940e-06,1.361352762417298786e-06,1.474798825952073632e-06,1.588244889486848478e-06,1.701690953021623324e-06,1.815137016556398170e-06,1.928583080091173016e-06,2.042029143625947650e-06,2.155475207160722284e-06,2.268921270695496919e-06,2.382367334230271553e-06,2.495813397765046187e-06,2.609259461299820821e-06,2.722705524834595455e-06,2.836151588369370089e-06,2.949597651904144724e-06,3.063043715438919358e-06,3.176489778973693992e-06,3.289935842508468626e-06,3.403381906043243260e-06,3.516827969578017894e-06,3.630274033112792529e-06,3.743720096647567163e-06,3.857166160182341797e-06,3.970612223717116431e-06,4.084058287251891065e-06,4.197504350786665700e-06,4.310950414321440334e-06,4.424396477856214968e-06,4.537842541390989602e-06,4.651288604925764236e-06,4.764734668460538870e-06,4.878180731995313505e-06,4.991626795530088139e-06,5.105072859064862773e-06,5.218518922599637407e-06,5.331964986134412041e-06,5.445411049669186675e-06,5.558857113203961310e-06,5.672303176738735944e-06,5.785749240273510578e-06,5.899195303808285212e-06,6.012641367343059846e-06,6.126087430877834480e-06,6.239533494412609115e-06,6.352979557947383749e-06,6.466425621482158383e-06,6.579871685016933017e-06,6.693317748551707651e-06,6.806763812086482285e-06,6.920209875621256920e-06,7.033655939156031554e-06,7.147102002690806188e-06 +0.000000000000000000e+00,1.156525212997288350e-07,2.313050425994576699e-07,3.469575638991864916e-07,4.626100851989152869e-07,5.782626064986440822e-07,6.939151277983728774e-07,8.095676490981016727e-07,9.252201703978304679e-07,1.040872691697559369e-06,1.156525212997288376e-06,1.272177734297017383e-06,1.387830255596746390e-06,1.503482776896475397e-06,1.619135298196204404e-06,1.734787819495933411e-06,1.850440340795662418e-06,1.966092862095391425e-06,2.081745383395120432e-06,2.197397904694849439e-06,2.313050425994578446e-06,2.428702947294307453e-06,2.544355468594036460e-06,2.660007989893765467e-06,2.775660511193494474e-06,2.891313032493223481e-06,3.006965553792952488e-06,3.122618075092681495e-06,3.238270596392410502e-06,3.353923117692139509e-06,3.469575638991868516e-06,3.585228160291597523e-06,3.700880681591326530e-06,3.816533202891055537e-06,3.932185724190784544e-06,4.047838245490513551e-06,4.163490766790242558e-06,4.279143288089971565e-06,4.394795809389700572e-06,4.510448330689429579e-06,4.626100851989158586e-06,4.741753373288887593e-06,4.857405894588616600e-06,4.973058415888345607e-06,5.088710937188074614e-06,5.204363458487803622e-06,5.320015979787532629e-06,5.435668501087261636e-06,5.551321022386990643e-06,5.666973543686719650e-06,5.782626064986448657e-06,5.898278586286177664e-06,6.013931107585906671e-06,6.129583628885635678e-06,6.245236150185364685e-06,6.360888671485093692e-06,6.476541192784822699e-06,6.592193714084551706e-06,6.707846235384280713e-06,6.823498756684009720e-06,6.939151277983738727e-06,7.054803799283467734e-06,7.170456320583196741e-06,7.286108841882925748e-06 +0.000000000000000000e+00,1.139876705291079933e-07,2.279753410582159866e-07,3.419630115873240064e-07,4.559506821164320261e-07,5.699383526455400459e-07,6.839260231746480127e-07,7.979136937037559795e-07,9.119013642328639464e-07,1.025889034761971807e-06,1.139876705291079668e-06,1.253864375820187529e-06,1.367852046349295390e-06,1.481839716878403251e-06,1.595827387407511112e-06,1.709815057936618973e-06,1.823802728465726834e-06,1.937790398994834695e-06,2.051778069523942768e-06,2.165765740053050840e-06,2.279753410582158913e-06,2.393741081111266986e-06,2.507728751640375058e-06,2.621716422169483131e-06,2.735704092698591204e-06,2.849691763227699277e-06,2.963679433756807349e-06,3.077667104285915422e-06,3.191654774815023495e-06,3.305642445344131567e-06,3.419630115873239640e-06,3.533617786402347713e-06,3.647605456931455786e-06,3.761593127460563858e-06,3.875580797989671931e-06,3.989568468518780004e-06,4.103556139047888076e-06,4.217543809576996149e-06,4.331531480106104222e-06,4.445519150635212294e-06,4.559506821164320367e-06,4.673494491693428440e-06,4.787482162222536513e-06,4.901469832751644585e-06,5.015457503280752658e-06,5.129445173809860731e-06,5.243432844338968803e-06,5.357420514868076876e-06,5.471408185397184949e-06,5.585395855926293022e-06,5.699383526455401094e-06,5.813371196984509167e-06,5.927358867513617240e-06,6.041346538042725312e-06,6.155334208571833385e-06,6.269321879100941458e-06,6.383309549630049530e-06,6.497297220159157603e-06,6.611284890688265676e-06,6.725272561217373749e-06,6.839260231746481821e-06,6.953247902275589894e-06,7.067235572804697967e-06,7.181223243333806039e-06 +0.000000000000000000e+00,1.134460635347734430e-07,2.268921270695468861e-07,3.403381906043203026e-07,4.537842541390937192e-07,5.672303176738671357e-07,6.806763812086406052e-07,7.941224447434140747e-07,9.075685082781875442e-07,1.021014571812961120e-06,1.134460635347734695e-06,1.247906698882508270e-06,1.361352762417281846e-06,1.474798825952055421e-06,1.588244889486828997e-06,1.701690953021602572e-06,1.815137016556376147e-06,1.928583080091149723e-06,2.042029143625923086e-06,2.155475207160696450e-06,2.268921270695469814e-06,2.382367334230243177e-06,2.495813397765016541e-06,2.609259461299789904e-06,2.722705524834563268e-06,2.836151588369336632e-06,2.949597651904109995e-06,3.063043715438883359e-06,3.176489778973656723e-06,3.289935842508430086e-06,3.403381906043203450e-06,3.516827969577976813e-06,3.630274033112750177e-06,3.743720096647523541e-06,3.857166160182296904e-06,3.970612223717069844e-06,4.084058287251842784e-06,4.197504350786615725e-06,4.310950414321388665e-06,4.424396477856161605e-06,4.537842541390934545e-06,4.651288604925707485e-06,4.764734668460480425e-06,4.878180731995253365e-06,4.991626795530026305e-06,5.105072859064799245e-06,5.218518922599572186e-06,5.331964986134345126e-06,5.445411049669118066e-06,5.558857113203891006e-06,5.672303176738663946e-06,5.785749240273436886e-06,5.899195303808209826e-06,6.012641367342982766e-06,6.126087430877755706e-06,6.239533494412528646e-06,6.352979557947301587e-06,6.466425621482074527e-06,6.579871685016847467e-06,6.693317748551620407e-06,6.806763812086393347e-06,6.920209875621166287e-06,7.033655939155939227e-06,7.147102002690712167e-06 +0.000000000000000000e+00,1.194459404503718554e-07,2.388918809007437109e-07,3.583378213511155928e-07,4.777837618014875277e-07,5.972297022518594625e-07,7.166756427022313974e-07,8.361215831526033322e-07,9.555675236029752671e-07,1.075013464053347202e-06,1.194459404503719137e-06,1.313905344954091072e-06,1.433351285404463006e-06,1.552797225854834941e-06,1.672243166305206876e-06,1.791689106755578811e-06,1.911135047205950958e-06,2.030580987656322893e-06,2.150026928106694827e-06,2.269472868557066762e-06,2.388918809007438697e-06,2.508364749457810632e-06,2.627810689908182567e-06,2.747256630358554502e-06,2.866702570808926437e-06,2.986148511259298371e-06,3.105594451709670306e-06,3.225040392160042241e-06,3.344486332610414176e-06,3.463932273060786111e-06,3.583378213511158046e-06,3.702824153961529980e-06,3.822270094411901915e-06,3.941716034862273850e-06,4.061161975312645785e-06,4.180607915763017720e-06,4.300053856213389655e-06,4.419499796663761590e-06,4.538945737114133524e-06,4.658391677564505459e-06,4.777837618014877394e-06,4.897283558465249329e-06,5.016729498915621264e-06,5.136175439365993199e-06,5.255621379816365134e-06,5.375067320266737068e-06,5.494513260717109003e-06,5.613959201167480938e-06,5.733405141617852873e-06,5.852851082068224808e-06,5.972297022518596743e-06,6.091742962968968678e-06,6.211188903419340612e-06,6.330634843869712547e-06,6.450080784320084482e-06,6.569526724770456417e-06,6.688972665220828352e-06,6.808418605671200287e-06,6.927864546121572222e-06,7.047310486571944156e-06,7.166756427022316091e-06,7.286202367472688026e-06,7.405648307923059961e-06,7.525094248373431896e-06 +0.000000000000000000e+00,1.174882178352940824e-07,2.349764356705881647e-07,3.524646535058822339e-07,4.699528713411762765e-07,5.874410891764703721e-07,7.049293070117644677e-07,8.224175248470585634e-07,9.399057426823526590e-07,1.057393960517646755e-06,1.174882178352940744e-06,1.292370396188234734e-06,1.409858614023528724e-06,1.527346831858822713e-06,1.644835049694116703e-06,1.762323267529410693e-06,1.879811485364704683e-06,1.997299703199998672e-06,2.114787921035292662e-06,2.232276138870586652e-06,2.349764356705880642e-06,2.467252574541174631e-06,2.584740792376468621e-06,2.702229010211762611e-06,2.819717228047056600e-06,2.937205445882350590e-06,3.054693663717644580e-06,3.172181881552938570e-06,3.289670099388232559e-06,3.407158317223526549e-06,3.524646535058820539e-06,3.642134752894114529e-06,3.759622970729408518e-06,3.877111188564702508e-06,3.994599406399996498e-06,4.112087624235290487e-06,4.229575842070584477e-06,4.347064059905878467e-06,4.464552277741172457e-06,4.582040495576466446e-06,4.699528713411760436e-06,4.817016931247054426e-06,4.934505149082348415e-06,5.051993366917642405e-06,5.169481584752936395e-06,5.286969802588230385e-06,5.404458020423524374e-06,5.521946238258818364e-06,5.639434456094112354e-06,5.756922673929406344e-06,5.874410891764700333e-06,5.991899109599994323e-06,6.109387327435288313e-06,6.226875545270582302e-06,6.344363763105876292e-06,6.461851980941170282e-06,6.579340198776464272e-06,6.696828416611758261e-06,6.814316634447052251e-06,6.931804852282346241e-06,7.049293070117640231e-06,7.166781287952934220e-06,7.284269505788228210e-06,7.401757723623522200e-06 +0.000000000000000000e+00,1.175198206920083867e-07,2.350396413840167733e-07,3.525594620760251600e-07,4.700792827680335466e-07,5.875991034600419333e-07,7.051189241520503200e-07,8.226387448440587066e-07,9.401585655360670933e-07,1.057678386228075480e-06,1.175198206920083867e-06,1.292718027612092253e-06,1.410237848304100640e-06,1.527757668996109027e-06,1.645277489688117413e-06,1.762797310380125800e-06,1.880317131072134187e-06,1.997836951764142785e-06,2.115356772456151383e-06,2.232876593148159982e-06,2.350396413840168580e-06,2.467916234532177179e-06,2.585436055224185777e-06,2.702955875916194375e-06,2.820475696608202974e-06,2.937995517300211572e-06,3.055515337992220171e-06,3.173035158684228769e-06,3.290554979376237368e-06,3.408074800068245966e-06,3.525594620760254564e-06,3.643114441452263163e-06,3.760634262144271761e-06,3.878154082836280360e-06,3.995673903528288958e-06,4.113193724220297556e-06,4.230713544912306155e-06,4.348233365604314753e-06,4.465753186296323352e-06,4.583273006988331950e-06,4.700792827680340549e-06,4.818312648372349147e-06,4.935832469064357745e-06,5.053352289756366344e-06,5.170872110448374942e-06,5.288391931140383541e-06,5.405911751832392139e-06,5.523431572524400737e-06,5.640951393216409336e-06,5.758471213908417934e-06,5.875991034600426533e-06,5.993510855292435131e-06,6.111030675984443730e-06,6.228550496676452328e-06,6.346070317368460926e-06,6.463590138060469525e-06,6.581109958752478123e-06,6.698629779444486722e-06,6.816149600136495320e-06,6.933669420828503918e-06,7.051189241520512517e-06,7.168709062212521115e-06,7.286228882904529714e-06,7.403748703596538312e-06 +0.000000000000000000e+00,1.194459404503705055e-07,2.388918809007410110e-07,3.583378213511115165e-07,4.777837618014820219e-07,5.972297022518524745e-07,7.166756427022229270e-07,8.361215831525933796e-07,9.555675236029638321e-07,1.075013464053334285e-06,1.194459404503704737e-06,1.313905344954075190e-06,1.433351285404445642e-06,1.552797225854816095e-06,1.672243166305186547e-06,1.791689106755557000e-06,1.911135047205927241e-06,2.030580987656297482e-06,2.150026928106667722e-06,2.269472868557037963e-06,2.388918809007408204e-06,2.508364749457778445e-06,2.627810689908148685e-06,2.747256630358518926e-06,2.866702570808889167e-06,2.986148511259259408e-06,3.105594451709629649e-06,3.225040392159999889e-06,3.344486332610370130e-06,3.463932273060740371e-06,3.583378213511110612e-06,3.702824153961480853e-06,3.822270094411851093e-06,3.941716034862221334e-06,4.061161975312591575e-06,4.180607915762961816e-06,4.300053856213332057e-06,4.419499796663702297e-06,4.538945737114072538e-06,4.658391677564442779e-06,4.777837618014813020e-06,4.897283558465183260e-06,5.016729498915553501e-06,5.136175439365923742e-06,5.255621379816293983e-06,5.375067320266664224e-06,5.494513260717034464e-06,5.613959201167404705e-06,5.733405141617774946e-06,5.852851082068145187e-06,5.972297022518515428e-06,6.091742962968885668e-06,6.211188903419255909e-06,6.330634843869626150e-06,6.450080784319996391e-06,6.569526724770366632e-06,6.688972665220736872e-06,6.808418605671107113e-06,6.927864546121477354e-06,7.047310486571847595e-06,7.166756427022217835e-06,7.286202367472588076e-06,7.405648307922958317e-06,7.525094248373328558e-06 +0.000000000000000000e+00,1.174882178352911972e-07,2.349764356705823943e-07,3.524646535058736047e-07,4.699528713411648416e-07,5.874410891764560785e-07,7.049293070117473153e-07,8.224175248470385522e-07,9.399057426823297891e-07,1.057393960517620920e-06,1.174882178352911945e-06,1.292370396188202970e-06,1.409858614023493995e-06,1.527346831858785020e-06,1.644835049694076046e-06,1.762323267529367071e-06,1.879811485364658096e-06,1.997299703199949121e-06,2.114787921035240146e-06,2.232276138870531171e-06,2.349764356705822196e-06,2.467252574541113221e-06,2.584740792376404246e-06,2.702229010211695272e-06,2.819717228046986297e-06,2.937205445882277322e-06,3.054693663717568347e-06,3.172181881552859372e-06,3.289670099388150397e-06,3.407158317223441422e-06,3.524646535058732447e-06,3.642134752894023472e-06,3.759622970729314498e-06,3.877111188564605099e-06,3.994599406399895701e-06,4.112087624235186302e-06,4.229575842070476904e-06,4.347064059905767506e-06,4.464552277741058107e-06,4.582040495576348709e-06,4.699528713411639310e-06,4.817016931246929912e-06,4.934505149082220514e-06,5.051993366917511115e-06,5.169481584752801717e-06,5.286969802588092318e-06,5.404458020423382920e-06,5.521946238258673521e-06,5.639434456093964123e-06,5.756922673929254725e-06,5.874410891764545326e-06,5.991899109599835928e-06,6.109387327435126529e-06,6.226875545270417131e-06,6.344363763105707733e-06,6.461851980940998334e-06,6.579340198776288936e-06,6.696828416611579537e-06,6.814316634446870139e-06,6.931804852282160741e-06,7.049293070117451342e-06,7.166781287952741944e-06,7.284269505788032545e-06,7.401757723623323147e-06 +0.000000000000000000e+00,1.175198206920081617e-07,2.350396413840163233e-07,3.525594620760244718e-07,4.700792827680325937e-07,5.875991034600406627e-07,7.051189241520487318e-07,8.226387448440568008e-07,9.401585655360648698e-07,1.057678386228072939e-06,1.175198206920080902e-06,1.292718027612088865e-06,1.410237848304096828e-06,1.527757668996104791e-06,1.645277489688112755e-06,1.762797310380120718e-06,1.880317131072128681e-06,1.997836951764136856e-06,2.115356772456145031e-06,2.232876593148153206e-06,2.350396413840161380e-06,2.467916234532169555e-06,2.585436055224177730e-06,2.702955875916185905e-06,2.820475696608194080e-06,2.937995517300202255e-06,3.055515337992210430e-06,3.173035158684218605e-06,3.290554979376226780e-06,3.408074800068234955e-06,3.525594620760243129e-06,3.643114441452251304e-06,3.760634262144259479e-06,3.878154082836267654e-06,3.995673903528275406e-06,4.113193724220283157e-06,4.230713544912290908e-06,4.348233365604298660e-06,4.465753186296306411e-06,4.583273006988314162e-06,4.700792827680321914e-06,4.818312648372329665e-06,4.935832469064337417e-06,5.053352289756345168e-06,5.170872110448352919e-06,5.288391931140360671e-06,5.405911751832368422e-06,5.523431572524376174e-06,5.640951393216383925e-06,5.758471213908391676e-06,5.875991034600399428e-06,5.993510855292407179e-06,6.111030675984414930e-06,6.228550496676422682e-06,6.346070317368430433e-06,6.463590138060438185e-06,6.581109958752445936e-06,6.698629779444453687e-06,6.816149600136461439e-06,6.933669420828469190e-06,7.051189241520476942e-06,7.168709062212484693e-06,7.286228882904492444e-06,7.403748703596500196e-06 +0.000000000000000000e+00,1.235909514845875680e-07,2.471819029691751359e-07,3.707728544537627039e-07,4.943638059383502719e-07,6.179547574229378928e-07,7.415457089075255137e-07,8.651366603921131346e-07,9.887276118767007555e-07,1.112318563361288376e-06,1.235909514845875997e-06,1.359500466330463618e-06,1.483091417815051239e-06,1.606682369299638860e-06,1.730273320784226481e-06,1.853864272268814102e-06,1.977455223753401935e-06,2.101046175237989767e-06,2.224637126722577600e-06,2.348228078207165433e-06,2.471819029691753265e-06,2.595409981176341098e-06,2.719000932660928931e-06,2.842591884145516763e-06,2.966182835630104596e-06,3.089773787114692429e-06,3.213364738599280261e-06,3.336955690083868094e-06,3.460546641568455927e-06,3.584137593053043759e-06,3.707728544537631592e-06,3.831319496022219848e-06,3.954910447506808104e-06,4.078501398991396361e-06,4.202092350475984617e-06,4.325683301960572873e-06,4.449274253445161129e-06,4.572865204929749385e-06,4.696456156414337641e-06,4.820047107898925898e-06,4.943638059383514154e-06,5.067229010868102410e-06,5.190819962352690666e-06,5.314410913837278922e-06,5.438001865321867179e-06,5.561592816806455435e-06,5.685183768291043691e-06,5.808774719775631947e-06,5.932365671260220203e-06,6.055956622744808460e-06,6.179547574229396716e-06,6.303138525713984972e-06,6.426729477198573228e-06,6.550320428683161484e-06,6.673911380167749740e-06,6.797502331652337997e-06,6.921093283136926253e-06,7.044684234621514509e-06,7.168275186106102765e-06,7.291866137590691021e-06,7.415457089075279278e-06,7.539048040559867534e-06,7.662638992044456637e-06,7.786229943529045740e-06 +0.000000000000000000e+00,1.214861038842032773e-07,2.429722077684065547e-07,3.644583116526098056e-07,4.859444155368130035e-07,6.074305194210162015e-07,7.289166233052193994e-07,8.504027271894225973e-07,9.718888310736257953e-07,1.093374934957828993e-06,1.214861038842032191e-06,1.336347142726235389e-06,1.457833246610438587e-06,1.579319350494641785e-06,1.700805454378844983e-06,1.822291558263048181e-06,1.943777662147251167e-06,2.065263766031454153e-06,2.186749869915657139e-06,2.308235973799860126e-06,2.429722077684063112e-06,2.551208181568266098e-06,2.672694285452469084e-06,2.794180389336672070e-06,2.915666493220875056e-06,3.037152597105078043e-06,3.158638700989281029e-06,3.280124804873484015e-06,3.401610908757687001e-06,3.523097012641889987e-06,3.644583116526092974e-06,3.766069220410295960e-06,3.887555324294498946e-06,4.009041428178701932e-06,4.130527532062904918e-06,4.252013635947107904e-06,4.373499739831310891e-06,4.494985843715513877e-06,4.616471947599716863e-06,4.737958051483919849e-06,4.859444155368122835e-06,4.980930259252325822e-06,5.102416363136528808e-06,5.223902467020731794e-06,5.345388570904934780e-06,5.466874674789137766e-06,5.588360778673340752e-06,5.709846882557543739e-06,5.831332986441746725e-06,5.952819090325949711e-06,6.074305194210152697e-06,6.195791298094355683e-06,6.317277401978558670e-06,6.438763505862761656e-06,6.560249609746964642e-06,6.681735713631167628e-06,6.803221817515370614e-06,6.924707921399573600e-06,7.046194025283776587e-06,7.167680129167979573e-06,7.289166233052182559e-06,7.410652336936385545e-06,7.532138440820588531e-06,7.653624544704790671e-06 +0.000000000000000000e+00,1.218441808239512798e-07,2.436883616479025595e-07,3.655325424718538128e-07,4.873767232958050132e-07,6.092209041197562135e-07,7.310650849437074138e-07,8.529092657676586142e-07,9.747534465916098145e-07,1.096597627415560909e-06,1.218441808239512003e-06,1.340285989063463098e-06,1.462130169887414192e-06,1.583974350711365287e-06,1.705818531535316381e-06,1.827662712359267476e-06,1.949506893183218359e-06,2.071351074007169241e-06,2.193195254831120124e-06,2.315039435655071007e-06,2.436883616479021889e-06,2.558727797302972772e-06,2.680571978126923655e-06,2.802416158950874538e-06,2.924260339774825420e-06,3.046104520598776303e-06,3.167948701422727186e-06,3.289792882246678068e-06,3.411637063070628951e-06,3.533481243894579834e-06,3.655325424718530717e-06,3.777169605542481599e-06,3.899013786366432482e-06,4.020857967190382941e-06,4.142702148014333400e-06,4.264546328838283860e-06,4.386390509662234319e-06,4.508234690486184778e-06,4.630078871310135237e-06,4.751923052134085696e-06,4.873767232958036155e-06,4.995611413781986615e-06,5.117455594605937074e-06,5.239299775429887533e-06,5.361143956253837992e-06,5.482988137077788451e-06,5.604832317901738911e-06,5.726676498725689370e-06,5.848520679549639829e-06,5.970364860373590288e-06,6.092209041197540747e-06,6.214053222021491207e-06,6.335897402845441666e-06,6.457741583669392125e-06,6.579585764493342584e-06,6.701429945317293043e-06,6.823274126141243503e-06,6.945118306965193962e-06,7.066962487789144421e-06,7.188806668613094880e-06,7.310650849437045339e-06,7.432495030260995799e-06,7.554339211084946258e-06,7.676183391908896717e-06 +0.000000000000000000e+00,1.235909514845868268e-07,2.471819029691736536e-07,3.707728544537604805e-07,4.943638059383473073e-07,6.179547574229340812e-07,7.415457089075208550e-07,8.651366603921076289e-07,9.887276118766944028e-07,1.112318563361281177e-06,1.235909514845867951e-06,1.359500466330454724e-06,1.483091417815041498e-06,1.606682369299628272e-06,1.730273320784215046e-06,1.853864272268801820e-06,1.977455223753388382e-06,2.101046175237974944e-06,2.224637126722561506e-06,2.348228078207148068e-06,2.471819029691734631e-06,2.595409981176321193e-06,2.719000932660907755e-06,2.842591884145494317e-06,2.966182835630080879e-06,3.089773787114667441e-06,3.213364738599254003e-06,3.336955690083840565e-06,3.460546641568427128e-06,3.584137593053013690e-06,3.707728544537600252e-06,3.831319496022186814e-06,3.954910447506773376e-06,4.078501398991359938e-06,4.202092350475946500e-06,4.325683301960533062e-06,4.449274253445119624e-06,4.572865204929706187e-06,4.696456156414292749e-06,4.820047107898879311e-06,4.943638059383465873e-06,5.067229010868052435e-06,5.190819962352638997e-06,5.314410913837225559e-06,5.438001865321812121e-06,5.561592816806398684e-06,5.685183768290985246e-06,5.808774719775571808e-06,5.932365671260158370e-06,6.055956622744744932e-06,6.179547574229331494e-06,6.303138525713918056e-06,6.426729477198504618e-06,6.550320428683091181e-06,6.673911380167677743e-06,6.797502331652264305e-06,6.921093283136850867e-06,7.044684234621437429e-06,7.168275186106023991e-06,7.291866137590610553e-06,7.415457089075197115e-06,7.539048040559783677e-06,7.662638992044370240e-06,7.786229943528955955e-06 +0.000000000000000000e+00,1.214861038842021921e-07,2.429722077684043842e-07,3.644583116526065763e-07,4.859444155368087684e-07,6.074305194210109075e-07,7.289166233052130466e-07,8.504027271894151858e-07,9.718888310736173249e-07,1.093374934957819464e-06,1.214861038842021603e-06,1.336347142726223742e-06,1.457833246610425882e-06,1.579319350494628021e-06,1.700805454378830160e-06,1.822291558263032299e-06,1.943777662147234226e-06,2.065263766031436366e-06,2.186749869915638505e-06,2.308235973799840644e-06,2.429722077684042783e-06,2.551208181568244922e-06,2.672694285452447061e-06,2.794180389336649200e-06,2.915666493220851340e-06,3.037152597105053479e-06,3.158638700989255618e-06,3.280124804873457757e-06,3.401610908757659896e-06,3.523097012641862035e-06,3.644583116526064174e-06,3.766069220410266314e-06,3.887555324294468453e-06,4.009041428178670592e-06,4.130527532062872731e-06,4.252013635947074870e-06,4.373499739831277009e-06,4.494985843715479148e-06,4.616471947599681288e-06,4.737958051483883427e-06,4.859444155368085566e-06,4.980930259252287705e-06,5.102416363136489844e-06,5.223902467020691983e-06,5.345388570904894123e-06,5.466874674789096262e-06,5.588360778673298401e-06,5.709846882557500540e-06,5.831332986441702679e-06,5.952819090325904818e-06,6.074305194210106957e-06,6.195791298094309097e-06,6.317277401978511236e-06,6.438763505862713375e-06,6.560249609746915514e-06,6.681735713631117653e-06,6.803221817515319792e-06,6.924707921399521931e-06,7.046194025283724071e-06,7.167680129167926210e-06,7.289166233052128349e-06,7.410652336936330488e-06,7.532138440820532627e-06,7.653624544704734766e-06 +0.000000000000000000e+00,1.218441808239531591e-07,2.436883616479063182e-07,3.655325424718594773e-07,4.873767232958126364e-07,6.092209041197658485e-07,7.310650849437190606e-07,8.529092657676722726e-07,9.747534465916254847e-07,1.096597627415578697e-06,1.218441808239531909e-06,1.340285989063485121e-06,1.462130169887438333e-06,1.583974350711391545e-06,1.705818531535344757e-06,1.827662712359297969e-06,1.949506893183251393e-06,2.071351074007204817e-06,2.193195254831158240e-06,2.315039435655111664e-06,2.436883616479065088e-06,2.558727797303018512e-06,2.680571978126971936e-06,2.802416158950925359e-06,2.924260339774878783e-06,3.046104520598832207e-06,3.167948701422785631e-06,3.289792882246739055e-06,3.411637063070692479e-06,3.533481243894645902e-06,3.655325424718599326e-06,3.777169605542552750e-06,3.899013786366506174e-06,4.020857967190459174e-06,4.142702148014412174e-06,4.264546328838365175e-06,4.386390509662318175e-06,4.508234690486271175e-06,4.630078871310224176e-06,4.751923052134177176e-06,4.873767232958130176e-06,4.995611413782083176e-06,5.117455594606036177e-06,5.239299775429989177e-06,5.361143956253942177e-06,5.482988137077895178e-06,5.604832317901848178e-06,5.726676498725801178e-06,5.848520679549754178e-06,5.970364860373707179e-06,6.092209041197660179e-06,6.214053222021613179e-06,6.335897402845566180e-06,6.457741583669519180e-06,6.579585764493472180e-06,6.701429945317425181e-06,6.823274126141378181e-06,6.945118306965331181e-06,7.066962487789284181e-06,7.188806668613237182e-06,7.310650849437190182e-06,7.432495030261143182e-06,7.554339211085096183e-06,7.676183391909049183e-06 +0.000000000000000000e+00,1.279337353766700501e-07,2.558674707533401002e-07,3.838012061300101503e-07,5.117349415066802004e-07,6.396686768833501976e-07,7.676024122600201947e-07,8.955361476366901919e-07,1.023469883013360189e-06,1.151403618390030186e-06,1.279337353766700183e-06,1.407271089143370181e-06,1.535204824520040178e-06,1.663138559896710175e-06,1.791072295273380172e-06,1.919006030650050169e-06,2.046939766026719955e-06,2.174873501403389740e-06,2.302807236780059525e-06,2.430740972156729311e-06,2.558674707533399096e-06,2.686608442910068882e-06,2.814542178286738667e-06,2.942475913663408452e-06,3.070409649040078238e-06,3.198343384416748023e-06,3.326277119793417809e-06,3.454210855170087594e-06,3.582144590546757379e-06,3.710078325923427165e-06,3.838012061300096950e-06,3.965945796676766736e-06,4.093879532053436521e-06,4.221813267430106306e-06,4.349747002806776092e-06,4.477680738183445877e-06,4.605614473560115663e-06,4.733548208936785448e-06,4.861481944313455233e-06,4.989415679690125019e-06,5.117349415066794804e-06,5.245283150443464590e-06,5.373216885820134375e-06,5.501150621196804160e-06,5.629084356573473946e-06,5.757018091950143731e-06,5.884951827326813517e-06,6.012885562703483302e-06,6.140819298080153087e-06,6.268753033456822873e-06,6.396686768833492658e-06,6.524620504210162444e-06,6.652554239586832229e-06,6.780487974963502014e-06,6.908421710340171800e-06,7.036355445716841585e-06,7.164289181093511371e-06,7.292222916470181156e-06,7.420156651846850941e-06,7.548090387223520727e-06,7.676024122600190512e-06,7.803957857976861145e-06,7.931891593353531777e-06,8.059825328730202409e-06 +0.000000000000000000e+00,1.257413652379749005e-07,2.514827304759498009e-07,3.772240957139247014e-07,5.029654609518996019e-07,6.287068261898745024e-07,7.544481914278494028e-07,8.801895566658243033e-07,1.005930921903799204e-06,1.131672287141774104e-06,1.257413652379749005e-06,1.383155017617723905e-06,1.508896382855698806e-06,1.634637748093673706e-06,1.760379113331648607e-06,1.886120478569623507e-06,2.011861843807598408e-06,2.137603209045573520e-06,2.263344574283548632e-06,2.389085939521523744e-06,2.514827304759498857e-06,2.640568669997473969e-06,2.766310035235449081e-06,2.892051400473424193e-06,3.017792765711399305e-06,3.143534130949374418e-06,3.269275496187349530e-06,3.395016861425324642e-06,3.520758226663299754e-06,3.646499591901274867e-06,3.772240957139249979e-06,3.897982322377225091e-06,4.023723687615200203e-06,4.149465052853175316e-06,4.275206418091150428e-06,4.400947783329125540e-06,4.526689148567100652e-06,4.652430513805075764e-06,4.778171879043050877e-06,4.903913244281025989e-06,5.029654609519001101e-06,5.155395974756976213e-06,5.281137339994951326e-06,5.406878705232926438e-06,5.532620070470901550e-06,5.658361435708876662e-06,5.784102800946851775e-06,5.909844166184826887e-06,6.035585531422801999e-06,6.161326896660777111e-06,6.287068261898752223e-06,6.412809627136727336e-06,6.538550992374702448e-06,6.664292357612677560e-06,6.790033722850652672e-06,6.915775088088627785e-06,7.041516453326602897e-06,7.167257818564578009e-06,7.292999183802553121e-06,7.418740549040528234e-06,7.544481914278503346e-06,7.670223279516477611e-06,7.795964644754451876e-06,7.921706009992426141e-06 +0.000000000000000000e+00,1.262854005314462231e-07,2.525708010628924462e-07,3.788562015943386957e-07,5.051416021257849982e-07,6.314270026572313007e-07,7.577124031886776032e-07,8.839978037201239057e-07,1.010283204251570208e-06,1.136568604783016617e-06,1.262854005314463025e-06,1.389139405845909433e-06,1.515424806377355842e-06,1.641710206908802250e-06,1.767995607440248658e-06,1.894281007971695067e-06,2.020566408503141687e-06,2.146851809034588307e-06,2.273137209566034927e-06,2.399422610097481547e-06,2.525708010628928167e-06,2.651993411160374788e-06,2.778278811691821408e-06,2.904564212223268028e-06,3.030849612754714648e-06,3.157135013286161268e-06,3.283420413817607888e-06,3.409705814349054508e-06,3.535991214880501128e-06,3.662276615411947749e-06,3.788562015943394369e-06,3.914847416474840989e-06,4.041132817006287609e-06,4.167418217537734229e-06,4.293703618069180849e-06,4.419989018600627469e-06,4.546274419132074089e-06,4.672559819663520710e-06,4.798845220194967330e-06,4.925130620726413950e-06,5.051416021257860570e-06,5.177701421789307190e-06,5.303986822320753810e-06,5.430272222852200430e-06,5.556557623383647050e-06,5.682843023915093671e-06,5.809128424446540291e-06,5.935413824977986911e-06,6.061699225509433531e-06,6.187984626040880151e-06,6.314270026572326771e-06,6.440555427103773391e-06,6.566840827635220012e-06,6.693126228166666632e-06,6.819411628698113252e-06,6.945697029229559872e-06,7.071982429761006492e-06,7.198267830292453112e-06,7.324553230823899732e-06,7.450838631355346352e-06,7.577124031886792973e-06,7.703409432418240440e-06,7.829694832949687060e-06,7.955980233481133680e-06 +0.000000000000000000e+00,1.279337353766723794e-07,2.558674707533447589e-07,3.838012061300171383e-07,5.117349415066895178e-07,6.396686768833618443e-07,7.676024122600341708e-07,8.955361476367064973e-07,1.023469883013378824e-06,1.151403618390051150e-06,1.279337353766723477e-06,1.407271089143395803e-06,1.535204824520068130e-06,1.663138559896740456e-06,1.791072295273412783e-06,1.919006030650084897e-06,2.046939766026757224e-06,2.174873501403429550e-06,2.302807236780101877e-06,2.430740972156774203e-06,2.558674707533446530e-06,2.686608442910118856e-06,2.814542178286791183e-06,2.942475913663463509e-06,3.070409649040135836e-06,3.198343384416808162e-06,3.326277119793480489e-06,3.454210855170152815e-06,3.582144590546825142e-06,3.710078325923497468e-06,3.838012061300169795e-06,3.965945796676842121e-06,4.093879532053514448e-06,4.221813267430186774e-06,4.349747002806859101e-06,4.477680738183531427e-06,4.605614473560203754e-06,4.733548208936876080e-06,4.861481944313548407e-06,4.989415679690220733e-06,5.117349415066893060e-06,5.245283150443565386e-06,5.373216885820237713e-06,5.501150621196910039e-06,5.629084356573582366e-06,5.757018091950254692e-06,5.884951827326927019e-06,6.012885562703599345e-06,6.140819298080271672e-06,6.268753033456943998e-06,6.396686768833616325e-06,6.524620504210288651e-06,6.652554239586960978e-06,6.780487974963633304e-06,6.908421710340305631e-06,7.036355445716977957e-06,7.164289181093650284e-06,7.292222916470322610e-06,7.420156651846994937e-06,7.548090387223667263e-06,7.676024122600339590e-06,7.803957857977011916e-06,7.931891593353684243e-06,8.059825328730356569e-06 +0.000000000000000000e+00,1.257413652379756946e-07,2.514827304759513891e-07,3.772240957139270837e-07,5.029654609519027783e-07,6.287068261898785258e-07,7.544481914278542733e-07,8.801895566658300208e-07,1.005930921903805768e-06,1.131672287141781516e-06,1.257413652379757263e-06,1.383155017617733011e-06,1.508896382855708758e-06,1.634637748093684506e-06,1.760379113331660253e-06,1.886120478569636001e-06,2.011861843807611960e-06,2.137603209045587919e-06,2.263344574283563879e-06,2.389085939521539838e-06,2.514827304759515797e-06,2.640568669997491756e-06,2.766310035235467716e-06,2.892051400473443675e-06,3.017792765711419634e-06,3.143534130949395594e-06,3.269275496187371553e-06,3.395016861425347512e-06,3.520758226663323471e-06,3.646499591901299431e-06,3.772240957139275390e-06,3.897982322377251349e-06,4.023723687615227308e-06,4.149465052853203268e-06,4.275206418091179227e-06,4.400947783329155186e-06,4.526689148567131145e-06,4.652430513805107105e-06,4.778171879043083064e-06,4.903913244281059023e-06,5.029654609519034982e-06,5.155395974757010942e-06,5.281137339994986901e-06,5.406878705232962860e-06,5.532620070470938820e-06,5.658361435708914779e-06,5.784102800946890738e-06,5.909844166184866697e-06,6.035585531422842657e-06,6.161326896660818616e-06,6.287068261898794575e-06,6.412809627136770534e-06,6.538550992374746494e-06,6.664292357612722453e-06,6.790033722850698412e-06,6.915775088088674371e-06,7.041516453326650331e-06,7.167257818564626290e-06,7.292999183802602249e-06,7.418740549040578209e-06,7.544481914278554168e-06,7.670223279516530127e-06,7.795964644754506086e-06,7.921706009992482046e-06 +0.000000000000000000e+00,1.262854005314509347e-07,2.525708010629018694e-07,3.788562015943527776e-07,5.051416021258036329e-07,6.314270026572544882e-07,7.577124031887053435e-07,8.839978037201561988e-07,1.010283204251607054e-06,1.136568604783057909e-06,1.262854005314508765e-06,1.389139405845959620e-06,1.515424806377410475e-06,1.641710206908861331e-06,1.767995607440312186e-06,1.894281007971763041e-06,2.020566408503213685e-06,2.146851809034664540e-06,2.273137209566115395e-06,2.399422610097566251e-06,2.525708010629017106e-06,2.651993411160467961e-06,2.778278811691918816e-06,2.904564212223369672e-06,3.030849612754820527e-06,3.157135013286271382e-06,3.283420413817722238e-06,3.409705814349173093e-06,3.535991214880623948e-06,3.662276615412074804e-06,3.788562015943525659e-06,3.914847416474976514e-06,4.041132817006427369e-06,4.167418217537878225e-06,4.293703618069329080e-06,4.419989018600779935e-06,4.546274419132230791e-06,4.672559819663681646e-06,4.798845220195132501e-06,4.925130620726583356e-06,5.051416021258034212e-06,5.177701421789485067e-06,5.303986822320935922e-06,5.430272222852386778e-06,5.556557623383837633e-06,5.682843023915288488e-06,5.809128424446739343e-06,5.935413824978190199e-06,6.061699225509641054e-06,6.187984626041091909e-06,6.314270026572542765e-06,6.440555427103993620e-06,6.566840827635444475e-06,6.693126228166895331e-06,6.819411628698346186e-06,6.945697029229797041e-06,7.071982429761247896e-06,7.198267830292698752e-06,7.324553230824149607e-06,7.450838631355600462e-06,7.577124031887051318e-06,7.703409432418501326e-06,7.829694832949951334e-06,7.955980233481401342e-06 +0.000000000000000000e+00,1.324236710115540517e-07,2.648473420231081033e-07,3.972710130346621550e-07,5.296946840462162067e-07,6.621183550577702583e-07,7.945420260693243100e-07,9.269656970808783617e-07,1.059389368092432413e-06,1.191813039103986571e-06,1.324236710115540728e-06,1.456660381127094886e-06,1.589084052138649044e-06,1.721507723150203201e-06,1.853931394161757359e-06,1.986355065173311516e-06,2.118778736184865674e-06,2.251202407196419831e-06,2.383626078207973989e-06,2.516049749219528146e-06,2.648473420231082304e-06,2.780897091242636461e-06,2.913320762254190619e-06,3.045744433265744777e-06,3.178168104277298934e-06,3.310591775288853092e-06,3.443015446300407249e-06,3.575439117311961407e-06,3.707862788323515564e-06,3.840286459335069722e-06,3.972710130346623879e-06,4.105133801358178037e-06,4.237557472369732194e-06,4.369981143381286352e-06,4.502404814392840510e-06,4.634828485404394667e-06,4.767252156415948825e-06,4.899675827427502982e-06,5.032099498439057140e-06,5.164523169450611297e-06,5.296946840462165455e-06,5.429370511473719612e-06,5.561794182485273770e-06,5.694217853496827927e-06,5.826641524508382085e-06,5.959065195519936243e-06,6.091488866531490400e-06,6.223912537543044558e-06,6.356336208554598715e-06,6.488759879566152873e-06,6.621183550577707030e-06,6.753607221589261188e-06,6.886030892600815345e-06,7.018454563612369503e-06,7.150878234623923660e-06,7.283301905635477818e-06,7.415725576647031976e-06,7.548149247658586133e-06,7.680572918670141138e-06,7.812996589681695295e-06,7.945420260693249453e-06,8.077843931704803610e-06,8.210267602716357768e-06,8.342691273727911925e-06 +0.000000000000000000e+00,1.301605289207305627e-07,2.603210578414611253e-07,3.904815867621917144e-07,5.206421156829223565e-07,6.508026446036529985e-07,7.809631735243836406e-07,9.111237024451142827e-07,1.041284231365844925e-06,1.171444760286575461e-06,1.301605289207305997e-06,1.431765818128036533e-06,1.561926347048767069e-06,1.692086875969497606e-06,1.822247404890228142e-06,1.952407933810958678e-06,2.082568462731689426e-06,2.212728991652420174e-06,2.342889520573150922e-06,2.473050049493881670e-06,2.603210578414612418e-06,2.733371107335343166e-06,2.863531636256073914e-06,2.993692165176804661e-06,3.123852694097535409e-06,3.254013223018266157e-06,3.384173751938996905e-06,3.514334280859727653e-06,3.644494809780458401e-06,3.774655338701189149e-06,3.904815867621919897e-06,4.034976396542650645e-06,4.165136925463381393e-06,4.295297454384112141e-06,4.425457983304842889e-06,4.555618512225573637e-06,4.685779041146304385e-06,4.815939570067035133e-06,4.946100098987765881e-06,5.076260627908496629e-06,5.206421156829227376e-06,5.336581685749958124e-06,5.466742214670688872e-06,5.596902743591419620e-06,5.727063272512150368e-06,5.857223801432881116e-06,5.987384330353611864e-06,6.117544859274342612e-06,6.247705388195073360e-06,6.377865917115804108e-06,6.508026446036534856e-06,6.638186974957265604e-06,6.768347503877996352e-06,6.898508032798727100e-06,7.028668561719457848e-06,7.158829090640188596e-06,7.288989619560919343e-06,7.419150148481650091e-06,7.549310677402380839e-06,7.679471206323111587e-06,7.809631735243841488e-06,7.939792264164571389e-06,8.069952793085301290e-06,8.200113322006031191e-06 +0.000000000000000000e+00,1.308099970803093448e-07,2.616199941606186896e-07,3.924299912409280344e-07,5.232399883212373793e-07,6.540499854015467241e-07,7.848599824818560689e-07,9.156699795621654137e-07,1.046479976642474759e-06,1.177289973722784103e-06,1.308099970803093448e-06,1.438909967883402793e-06,1.569719964963712138e-06,1.700529962044021483e-06,1.831339959124330827e-06,1.962149956204640384e-06,2.092959953284949941e-06,2.223769950365259497e-06,2.354579947445569054e-06,2.485389944525878610e-06,2.616199941606188167e-06,2.747009938686497723e-06,2.877819935766807280e-06,3.008629932847116837e-06,3.139439929927426393e-06,3.270249927007735950e-06,3.401059924088045506e-06,3.531869921168355063e-06,3.662679918248664619e-06,3.793489915328974176e-06,3.924299912409284156e-06,4.055109909489594136e-06,4.185919906569904116e-06,4.316729903650214096e-06,4.447539900730524076e-06,4.578349897810834056e-06,4.709159894891144037e-06,4.839969891971454017e-06,4.970779889051763997e-06,5.101589886132073977e-06,5.232399883212383957e-06,5.363209880292693937e-06,5.494019877373003917e-06,5.624829874453313897e-06,5.755639871533623877e-06,5.886449868613933857e-06,6.017259865694243837e-06,6.148069862774553818e-06,6.278879859854863798e-06,6.409689856935173778e-06,6.540499854015483758e-06,6.671309851095793738e-06,6.802119848176103718e-06,6.932929845256413698e-06,7.063739842336723678e-06,7.194549839417033658e-06,7.325359836497343638e-06,7.456169833577653618e-06,7.586979830657963598e-06,7.717789827738274426e-06,7.848599824818585253e-06,7.979409821898896080e-06,8.110219818979206907e-06,8.241029816059517734e-06 +0.000000000000000000e+00,1.324236710115607750e-07,2.648473420231215500e-07,3.972710130346823250e-07,5.296946840462431000e-07,6.621183550578038220e-07,7.945420260693645441e-07,9.269656970809252661e-07,1.059389368092485988e-06,1.191813039104046710e-06,1.324236710115607432e-06,1.456660381127168154e-06,1.589084052138728876e-06,1.721507723150289598e-06,1.853931394161850320e-06,1.986355065173411043e-06,2.118778736184971553e-06,2.251202407196532063e-06,2.383626078208092573e-06,2.516049749219653084e-06,2.648473420231213594e-06,2.780897091242774104e-06,2.913320762254334615e-06,3.045744433265895125e-06,3.178168104277455635e-06,3.310591775289016145e-06,3.443015446300576656e-06,3.575439117312137166e-06,3.707862788323697676e-06,3.840286459335258610e-06,3.972710130346819544e-06,4.105133801358380478e-06,4.237557472369941412e-06,4.369981143381502345e-06,4.502404814393063279e-06,4.634828485404624213e-06,4.767252156416185147e-06,4.899675827427746081e-06,5.032099498439307014e-06,5.164523169450867948e-06,5.296946840462428882e-06,5.429370511473989816e-06,5.561794182485550750e-06,5.694217853497111683e-06,5.826641524508672617e-06,5.959065195520233551e-06,6.091488866531794485e-06,6.223912537543355419e-06,6.356336208554916353e-06,6.488759879566477286e-06,6.621183550578038220e-06,6.753607221589599154e-06,6.886030892601160088e-06,7.018454563612721022e-06,7.150878234624281955e-06,7.283301905635842889e-06,7.415725576647403823e-06,7.548149247658964757e-06,7.680572918670525691e-06,7.812996589682086624e-06,7.945420260693647558e-06,8.077843931705208492e-06,8.210267602716769426e-06,8.342691273728330360e-06 +0.000000000000000000e+00,1.301605289207352478e-07,2.603210578414704956e-07,3.904815867622057434e-07,5.206421156829409912e-07,6.508026446036761861e-07,7.809631735244113809e-07,9.111237024451465758e-07,1.041284231365881771e-06,1.171444760286616966e-06,1.301605289207352160e-06,1.431765818128087355e-06,1.561926347048822550e-06,1.692086875969557745e-06,1.822247404890292940e-06,1.952407933811028135e-06,2.082568462731763118e-06,2.212728991652498101e-06,2.342889520573233084e-06,2.473050049493968067e-06,2.603210578414703050e-06,2.733371107335438033e-06,2.863531636256173016e-06,2.993692165176908000e-06,3.123852694097642983e-06,3.254013223018377966e-06,3.384173751939112949e-06,3.514334280859847932e-06,3.644494809780582915e-06,3.774655338701317898e-06,3.904815867622052881e-06,4.034976396542787864e-06,4.165136925463522847e-06,4.295297454384257831e-06,4.425457983304992814e-06,4.555618512225727797e-06,4.685779041146462780e-06,4.815939570067197763e-06,4.946100098987932746e-06,5.076260627908667729e-06,5.206421156829402712e-06,5.336581685750137695e-06,5.466742214670872678e-06,5.596902743591607662e-06,5.727063272512342645e-06,5.857223801433077628e-06,5.987384330353812611e-06,6.117544859274547594e-06,6.247705388195282577e-06,6.377865917116017560e-06,6.508026446036752543e-06,6.638186974957487526e-06,6.768347503878222510e-06,6.898508032798957493e-06,7.028668561719692476e-06,7.158829090640427459e-06,7.288989619561162442e-06,7.419150148481897425e-06,7.549310677402632408e-06,7.679471206323367391e-06,7.809631735244102374e-06,7.939792264164837357e-06,8.069952793085572341e-06,8.200113322006307324e-06 +0.000000000000000000e+00,1.308099970803177093e-07,2.616199941606354185e-07,3.924299912409531278e-07,5.232399883212708371e-07,6.540499854015885463e-07,7.848599824819062556e-07,9.156699795622239648e-07,1.046479976642541674e-06,1.177289973722859277e-06,1.308099970803176881e-06,1.438909967883494484e-06,1.569719964963812088e-06,1.700529962044129691e-06,1.831339959124447294e-06,1.962149956204764898e-06,2.092959953285082501e-06,2.223769950365400105e-06,2.354579947445717708e-06,2.485389944526035311e-06,2.616199941606352915e-06,2.747009938686670518e-06,2.877819935766988121e-06,3.008629932847305725e-06,3.139439929927623328e-06,3.270249927007940932e-06,3.401059924088258535e-06,3.531869921168576138e-06,3.662679918248893742e-06,3.793489915329211345e-06,3.924299912409528949e-06,4.055109909489846552e-06,4.185919906570164155e-06,4.316729903650481759e-06,4.447539900730799362e-06,4.578349897811116965e-06,4.709159894891434569e-06,4.839969891971752172e-06,4.970779889052069776e-06,5.101589886132387379e-06,5.232399883212704982e-06,5.363209880293022586e-06,5.494019877373340189e-06,5.624829874453657793e-06,5.755639871533975396e-06,5.886449868614292999e-06,6.017259865694610603e-06,6.148069862774928206e-06,6.278879859855245809e-06,6.409689856935563413e-06,6.540499854015881016e-06,6.671309851096198620e-06,6.802119848176516223e-06,6.932929845256833826e-06,7.063739842337151430e-06,7.194549839417469033e-06,7.325359836497786637e-06,7.456169833578104240e-06,7.586979830658421843e-06,7.717789827738738600e-06,7.848599824819056203e-06,7.979409821899373806e-06,8.110219818979691410e-06,8.241029816060009013e-06 +0.000000000000000000e+00,1.370623542072921501e-07,2.741247084145843002e-07,4.111870626218764503e-07,5.482494168291686005e-07,6.853117710364608035e-07,8.223741252437530066e-07,9.594364794510452096e-07,1.096498833658337413e-06,1.233561187865629616e-06,1.370623542072921819e-06,1.507685896280214022e-06,1.644748250487506225e-06,1.781810604694798428e-06,1.918872958902090843e-06,2.055935313109383046e-06,2.192997667316675249e-06,2.330060021523967452e-06,2.467122375731259655e-06,2.604184729938551858e-06,2.741247084145844061e-06,2.878309438353136264e-06,3.015371792560428467e-06,3.152434146767720670e-06,3.289496500975012873e-06,3.426558855182305076e-06,3.563621209389597279e-06,3.700683563596889482e-06,3.837745917804181686e-06,3.974808272011473889e-06,4.111870626218766092e-06,4.248932980426058295e-06,4.385995334633350498e-06,4.523057688840642701e-06,4.660120043047934904e-06,4.797182397255227107e-06,4.934244751462519310e-06,5.071307105669811513e-06,5.208369459877103716e-06,5.345431814084395919e-06,5.482494168291688122e-06,5.619556522498980325e-06,5.756618876706272528e-06,5.893681230913564731e-06,6.030743585120856934e-06,6.167805939328149137e-06,6.304868293535441341e-06,6.441930647742733544e-06,6.578993001950025747e-06,6.716055356157317950e-06,6.853117710364610153e-06,6.990180064571902356e-06,7.127242418779194559e-06,7.264304772986486762e-06,7.401367127193778965e-06,7.538429481401071168e-06,7.675491835608363371e-06,7.812554189815656421e-06,7.949616544022949471e-06,8.086678898230242521e-06,8.223741252437535571e-06,8.360803606644828622e-06,8.497865960852121672e-06,8.634928315059414722e-06 +0.000000000000000000e+00,1.347220000954583966e-07,2.694440001909167932e-07,4.041660002863751633e-07,5.388880003818334804e-07,6.736100004772917976e-07,8.083320005727501148e-07,9.430540006682084320e-07,1.077776000763666749e-06,1.212498000859124960e-06,1.347220000954583172e-06,1.481942001050041383e-06,1.616664001145499594e-06,1.751386001240957806e-06,1.886108001336416017e-06,2.020830001431874228e-06,2.155552001527332228e-06,2.290274001622790227e-06,2.424996001718248227e-06,2.559718001813706226e-06,2.694440001909164226e-06,2.829162002004622225e-06,2.963884002100080225e-06,3.098606002195538224e-06,3.233328002290996224e-06,3.368050002386454224e-06,3.502772002481912223e-06,3.637494002577370223e-06,3.772216002672828222e-06,3.906938002768286222e-06,4.041660002863744221e-06,4.176382002959202221e-06,4.311104003054660220e-06,4.445826003150118220e-06,4.580548003245576219e-06,4.715270003341034219e-06,4.849992003436492218e-06,4.984714003531950218e-06,5.119436003627408217e-06,5.254158003722866217e-06,5.388880003818324217e-06,5.523602003913782216e-06,5.658324004009240216e-06,5.793046004104698215e-06,5.927768004200156215e-06,6.062490004295614214e-06,6.197212004391072214e-06,6.331934004486530213e-06,6.466656004581988213e-06,6.601378004677446212e-06,6.736100004772904212e-06,6.870822004868362211e-06,7.005544004963820211e-06,7.140266005059278210e-06,7.274988005154736210e-06,7.409710005250194210e-06,7.544432005345652209e-06,7.679154005441109362e-06,7.813876005536567361e-06,7.948598005632025361e-06,8.083320005727483360e-06,8.218042005822941360e-06,8.352764005918399359e-06,8.487486006013857359e-06 +0.000000000000000000e+00,1.353989327414647678e-07,2.707978654829295357e-07,4.061967982243943300e-07,5.415957309658591772e-07,6.769946637073240245e-07,8.123935964487888717e-07,9.477925291902537189e-07,1.083191461931718566e-06,1.218590394673183413e-06,1.353989327414648261e-06,1.489388260156113108e-06,1.624787192897577955e-06,1.760186125639042802e-06,1.895585058380507650e-06,2.030983991121972497e-06,2.166382923863437556e-06,2.301781856604902615e-06,2.437180789346367674e-06,2.572579722087832733e-06,2.707978654829297792e-06,2.843377587570762851e-06,2.978776520312227910e-06,3.114175453053692969e-06,3.249574385795158028e-06,3.384973318536623087e-06,3.520372251278088146e-06,3.655771184019553205e-06,3.791170116761018264e-06,3.926569049502483323e-06,4.061967982243948382e-06,4.197366914985413441e-06,4.332765847726878500e-06,4.468164780468343559e-06,4.603563713209808618e-06,4.738962645951273677e-06,4.874361578692738736e-06,5.009760511434203795e-06,5.145159444175668854e-06,5.280558376917133913e-06,5.415957309658598972e-06,5.551356242400064031e-06,5.686755175141529090e-06,5.822154107882994149e-06,5.957553040624459208e-06,6.092951973365924267e-06,6.228350906107389326e-06,6.363749838848854385e-06,6.499148771590319444e-06,6.634547704331784503e-06,6.769946637073249562e-06,6.905345569814714621e-06,7.040744502556179680e-06,7.176143435297644739e-06,7.311542368039109798e-06,7.446941300780574857e-06,7.582340233522039916e-06,7.717739166263504975e-06,7.853138099004970034e-06,7.988537031746435093e-06,8.123935964487900152e-06,8.259334897229365211e-06,8.394733829970830270e-06,8.530132762712295329e-06 +0.000000000000000000e+00,1.370623542073008851e-07,2.741247084146017703e-07,4.111870626219026554e-07,5.482494168292035406e-07,6.853117710365044257e-07,8.223741252438053109e-07,9.594364794511061960e-07,1.096498833658407081e-06,1.233561187865707966e-06,1.370623542073008851e-06,1.507685896280309737e-06,1.644748250487610622e-06,1.781810604694911507e-06,1.918872958902212392e-06,2.055935313109513489e-06,2.192997667316814586e-06,2.330060021524115683e-06,2.467122375731416780e-06,2.604184729938717876e-06,2.741247084146018973e-06,2.878309438353320070e-06,3.015371792560621167e-06,3.152434146767922264e-06,3.289496500975223361e-06,3.426558855182524458e-06,3.563621209389825555e-06,3.700683563597126652e-06,3.837745917804427325e-06,3.974808272011727998e-06,4.111870626219028672e-06,4.248932980426329345e-06,4.385995334633630019e-06,4.523057688840930692e-06,4.660120043048231365e-06,4.797182397255532039e-06,4.934244751462832712e-06,5.071307105670133386e-06,5.208369459877434059e-06,5.345431814084734732e-06,5.482494168292035406e-06,5.619556522499336079e-06,5.756618876706636752e-06,5.893681230913937426e-06,6.030743585121238099e-06,6.167805939328538773e-06,6.304868293535839446e-06,6.441930647743140119e-06,6.578993001950440793e-06,6.716055356157741466e-06,6.853117710365042140e-06,6.990180064572342813e-06,7.127242418779643486e-06,7.264304772986944160e-06,7.401367127194244833e-06,7.538429481401545506e-06,7.675491835608846180e-06,7.812554189816147700e-06,7.949616544023449221e-06,8.086678898230750741e-06,8.223741252438052262e-06,8.360803606645353782e-06,8.497865960852655302e-06,8.634928315059956823e-06 +0.000000000000000000e+00,1.347220000954663110e-07,2.694440001909326221e-07,4.041660002863989331e-07,5.388880003818652442e-07,6.736100004773315023e-07,8.083320005727977604e-07,9.430540006682640185e-07,1.077776000763730277e-06,1.212498000859196535e-06,1.347220000954662793e-06,1.481942001050129051e-06,1.616664001145595309e-06,1.751386001241061567e-06,1.886108001336527825e-06,2.020830001431994083e-06,2.155552001527460130e-06,2.290274001622926176e-06,2.424996001718392222e-06,2.559718001813858269e-06,2.694440001909324315e-06,2.829162002004790361e-06,2.963884002100256408e-06,3.098606002195722454e-06,3.233328002291188500e-06,3.368050002386654547e-06,3.502772002482120593e-06,3.637494002577586639e-06,3.772216002673052686e-06,3.906938002768519156e-06,4.041660002863985626e-06,4.176382002959452095e-06,4.311104003054918565e-06,4.445826003150385035e-06,4.580548003245851505e-06,4.715270003341317975e-06,4.849992003436784445e-06,4.984714003532250915e-06,5.119436003627717384e-06,5.254158003723183854e-06,5.388880003818650324e-06,5.523602003914116794e-06,5.658324004009583264e-06,5.793046004105049734e-06,5.927768004200516204e-06,6.062490004295982674e-06,6.197212004391449143e-06,6.331934004486915613e-06,6.466656004582382083e-06,6.601378004677848553e-06,6.736100004773315023e-06,6.870822004868781493e-06,7.005544004964247963e-06,7.140266005059714432e-06,7.274988005155180902e-06,7.409710005250647372e-06,7.544432005346113842e-06,7.679154005441580312e-06,7.813876005537046782e-06,7.948598005632513252e-06,8.083320005727979721e-06,8.218042005823446191e-06,8.352764005918912661e-06,8.487486006014379131e-06 +0.000000000000000000e+00,1.353989327414738205e-07,2.707978654829476410e-07,4.061967982244214350e-07,5.415957309658951761e-07,6.769946637073689172e-07,8.123935964488426583e-07,9.477925291903163994e-07,1.083191461931790140e-06,1.218590394673263882e-06,1.353989327414737623e-06,1.489388260156211364e-06,1.624787192897685105e-06,1.760186125639158846e-06,1.895585058380632587e-06,2.030983991122106328e-06,2.166382923863579857e-06,2.301781856605053387e-06,2.437180789346526916e-06,2.572579722088000445e-06,2.707978654829473975e-06,2.843377587570947504e-06,2.978776520312421033e-06,3.114175453053894563e-06,3.249574385795368092e-06,3.384973318536841621e-06,3.520372251278315151e-06,3.655771184019788680e-06,3.791170116761262209e-06,3.926569049502735739e-06,4.061967982244209268e-06,4.197366914985682797e-06,4.332765847727156327e-06,4.468164780468629856e-06,4.603563713210103385e-06,4.738962645951576915e-06,4.874361578693050444e-06,5.009760511434523973e-06,5.145159444175997503e-06,5.280558376917471032e-06,5.415957309658944561e-06,5.551356242400418091e-06,5.686755175141891620e-06,5.822154107883365149e-06,5.957553040624838679e-06,6.092951973366312208e-06,6.228350906107785737e-06,6.363749838849259267e-06,6.499148771590732796e-06,6.634547704332206325e-06,6.769946637073679855e-06,6.905345569815153384e-06,7.040744502556626913e-06,7.176143435298100443e-06,7.311542368039573972e-06,7.446941300781047501e-06,7.582340233522521031e-06,7.717739166263994560e-06,7.853138099005468089e-06,7.988537031746941619e-06,8.123935964488415148e-06,8.259334897229888677e-06,8.394733829971362207e-06,8.530132762712835736e-06 +0.000000000000000000e+00,1.185680027946130302e-07,2.371360055892260604e-07,3.557040083838390905e-07,4.742720111784521207e-07,5.928400139730651509e-07,7.114080167676781811e-07,8.299760195622912112e-07,9.485440223569042414e-07,1.067112025151517272e-06,1.185680027946130302e-06,1.304248030740743332e-06,1.422816033535356362e-06,1.541384036329969392e-06,1.659952039124582422e-06,1.778520041919195453e-06,1.897088044713808483e-06,2.015656047508421725e-06,2.134224050303034967e-06,2.252792053097648209e-06,2.371360055892261451e-06,2.489928058686874693e-06,2.608496061481487934e-06,2.727064064276101176e-06,2.845632067070714418e-06,2.964200069865327660e-06,3.082768072659940902e-06,3.201336075454554144e-06,3.319904078249167386e-06,3.438472081043780628e-06,3.557040083838393870e-06,3.675608086633007112e-06,3.794176089427620354e-06,3.912744092222233596e-06,4.031312095016846838e-06,4.149880097811460080e-06,4.268448100606073322e-06,4.387016103400686564e-06,4.505584106195299805e-06,4.624152108989913047e-06,4.742720111784526289e-06,4.861288114579139531e-06,4.979856117373752773e-06,5.098424120168366015e-06,5.216992122962979257e-06,5.335560125757592499e-06,5.454128128552205741e-06,5.572696131346818983e-06,5.691264134141432225e-06,5.809832136936045467e-06,5.928400139730658709e-06,6.046968142525271951e-06,6.165536145319885193e-06,6.284104148114498434e-06,6.402672150909111676e-06,6.521240153703724918e-06,6.639808156498338160e-06,6.758376159292951402e-06,6.876944162087564644e-06,6.995512164882177886e-06,7.114080167676791128e-06,7.232648170471404370e-06,7.351216173266017612e-06,7.469784176060630854e-06 +0.000000000000000000e+00,1.168564394616939049e-07,2.337128789233878097e-07,3.505693183850817278e-07,4.674257578467756724e-07,5.842821973084696699e-07,7.011386367701636674e-07,8.179950762318576649e-07,9.348515156935516624e-07,1.051707955155245660e-06,1.168564394616939763e-06,1.285420834078633867e-06,1.402277273540327970e-06,1.519133713002022073e-06,1.635990152463716177e-06,1.752846591925410280e-06,1.869703031387104384e-06,1.986559470848798487e-06,2.103415910310492590e-06,2.220272349772186694e-06,2.337128789233880797e-06,2.453985228695574900e-06,2.570841668157269004e-06,2.687698107618963107e-06,2.804554547080657211e-06,2.921410986542351314e-06,3.038267426004045417e-06,3.155123865465739521e-06,3.271980304927433624e-06,3.388836744389127727e-06,3.505693183850821831e-06,3.622549623312515934e-06,3.739406062774210038e-06,3.856262502235904141e-06,3.973118941697598668e-06,4.089975381159293195e-06,4.206831820620987722e-06,4.323688260082682249e-06,4.440544699544376775e-06,4.557401139006071302e-06,4.674257578467765829e-06,4.791114017929460356e-06,4.907970457391154883e-06,5.024826896852849410e-06,5.141683336314543937e-06,5.258539775776238464e-06,5.375396215237932991e-06,5.492252654699627517e-06,5.609109094161322044e-06,5.725965533623016571e-06,5.842821973084711098e-06,5.959678412546405625e-06,6.076534852008100152e-06,6.193391291469794679e-06,6.310247730931489206e-06,6.427104170393183733e-06,6.543960609854878260e-06,6.660817049316572786e-06,6.777673488778267313e-06,6.894529928239961840e-06,7.011386367701656367e-06,7.128242807163350894e-06,7.245099246625045421e-06,7.361955686086739948e-06 +0.000000000000000000e+00,1.184788129109311454e-07,2.369576258218622908e-07,3.554364387327934627e-07,4.739152516437246345e-07,5.923940645546558064e-07,7.108728774655869253e-07,8.293516903765180442e-07,9.478305032874491632e-07,1.066309316198380388e-06,1.184788129109311613e-06,1.303266942020242838e-06,1.421745754931174062e-06,1.540224567842105287e-06,1.658703380753036512e-06,1.777182193663967737e-06,1.895661006574898962e-06,2.014139819485830186e-06,2.132618632396761623e-06,2.251097445307693060e-06,2.369576258218624496e-06,2.488055071129555933e-06,2.606533884040487369e-06,2.725012696951418806e-06,2.843491509862350242e-06,2.961970322773281679e-06,3.080449135684213115e-06,3.198927948595144552e-06,3.317406761506075989e-06,3.435885574417007425e-06,3.554364387327938862e-06,3.672843200238870298e-06,3.791322013149801735e-06,3.909800826060732748e-06,4.028279638971663761e-06,4.146758451882594774e-06,4.265237264793525787e-06,4.383716077704456800e-06,4.502194890615387813e-06,4.620673703526318826e-06,4.739152516437249839e-06,4.857631329348180852e-06,4.976110142259111865e-06,5.094588955170042878e-06,5.213067768080973891e-06,5.331546580991904904e-06,5.450025393902835918e-06,5.568504206813766931e-06,5.686983019724697944e-06,5.805461832635628957e-06,5.923940645546559970e-06,6.042419458457490983e-06,6.160898271368421996e-06,6.279377084279353009e-06,6.397855897190284022e-06,6.516334710101215035e-06,6.634813523012146048e-06,6.753292335923077061e-06,6.871771148834008074e-06,6.990249961744939087e-06,7.108728774655870100e-06,7.227207587566801113e-06,7.345686400477732126e-06,7.464165213388663139e-06 +0.000000000000000000e+00,1.167585657156260860e-07,2.335171314312521720e-07,3.502756971468782580e-07,4.670342628625043440e-07,5.837928285781304300e-07,7.005513942937565160e-07,8.173099600093826020e-07,9.340685257250086880e-07,1.050827091440634880e-06,1.167585657156261072e-06,1.284344222871887264e-06,1.401102788587513456e-06,1.517861354303139647e-06,1.634619920018765839e-06,1.751378485734392031e-06,1.868137051450018223e-06,1.984895617165644415e-06,2.101654182881270607e-06,2.218412748596896799e-06,2.335171314312522991e-06,2.451929880028149182e-06,2.568688445743775374e-06,2.685447011459401566e-06,2.802205577175027758e-06,2.918964142890653950e-06,3.035722708606280142e-06,3.152481274321906334e-06,3.269239840037532526e-06,3.385998405753158717e-06,3.502756971468784909e-06,3.619515537184411101e-06,3.736274102900037293e-06,3.853032668615663061e-06,3.969791234331288830e-06,4.086549800046914598e-06,4.203308365762540367e-06,4.320066931478166135e-06,4.436825497193791903e-06,4.553584062909417672e-06,4.670342628625043440e-06,4.787101194340669208e-06,4.903859760056294977e-06,5.020618325771920745e-06,5.137376891487546513e-06,5.254135457203172282e-06,5.370894022918798050e-06,5.487652588634423819e-06,5.604411154350049587e-06,5.721169720065675355e-06,5.837928285781301124e-06,5.954686851496926892e-06,6.071445417212552660e-06,6.188203982928178429e-06,6.304962548643804197e-06,6.421721114359429965e-06,6.538479680075055734e-06,6.655238245790681502e-06,6.771996811506307270e-06,6.888755377221933039e-06,7.005513942937558807e-06,7.122272508653184576e-06,7.239031074368810344e-06,7.355789640084436112e-06 +0.000000000000000000e+00,1.173678721070322294e-07,2.347357442140644589e-07,3.521036163210967148e-07,4.694714884281289707e-07,5.868393605351612266e-07,7.042072326421934296e-07,8.215751047492256325e-07,9.389429768562578355e-07,1.056310848963290038e-06,1.173678721070322241e-06,1.291046593177354444e-06,1.408414465284386647e-06,1.525782337391418850e-06,1.643150209498451053e-06,1.760518081605483256e-06,1.877885953712515459e-06,1.995253825819547450e-06,2.112621697926579653e-06,2.229989570033611856e-06,2.347357442140644059e-06,2.464725314247676262e-06,2.582093186354708465e-06,2.699461058461740668e-06,2.816828930568772871e-06,2.934196802675805074e-06,3.051564674782837277e-06,3.168932546889869480e-06,3.286300418996901683e-06,3.403668291103933886e-06,3.521036163210966089e-06,3.638404035317998292e-06,3.755771907425030495e-06,3.873139779532062698e-06,3.990507651639094901e-06,4.107875523746127104e-06,4.225243395853159307e-06,4.342611267960191510e-06,4.459979140067223713e-06,4.577347012174255916e-06,4.694714884281288119e-06,4.812082756388320322e-06,4.929450628495352525e-06,5.046818500602384728e-06,5.164186372709416930e-06,5.281554244816449133e-06,5.398922116923481336e-06,5.516289989030513539e-06,5.633657861137545742e-06,5.751025733244577945e-06,5.868393605351610148e-06,5.985761477458642351e-06,6.103129349565674554e-06,6.220497221672706757e-06,6.337865093779738960e-06,6.455232965886771163e-06,6.572600837993803366e-06,6.689968710100835569e-06,6.807336582207867772e-06,6.924704454314899975e-06,7.042072326421932178e-06,7.159440198528964381e-06,7.276808070635996584e-06,7.394175942743028787e-06 +0.000000000000000000e+00,1.141164805918208830e-07,2.282329611836417661e-07,3.423494417754626623e-07,4.564659223672835850e-07,5.705824029591045078e-07,6.846988835509254305e-07,7.988153641427463532e-07,9.129318447345672760e-07,1.027048325326388199e-06,1.141164805918209016e-06,1.255281286510029832e-06,1.369397767101850649e-06,1.483514247693671466e-06,1.597630728285492283e-06,1.711747208877313100e-06,1.825863689469133917e-06,1.939980170060954945e-06,2.054096650652775974e-06,2.168213131244597002e-06,2.282329611836418031e-06,2.396446092428239060e-06,2.510562573020060088e-06,2.624679053611881117e-06,2.738795534203702146e-06,2.852912014795523174e-06,2.967028495387344203e-06,3.081144975979165231e-06,3.195261456570986260e-06,3.309377937162807289e-06,3.423494417754628317e-06,3.537610898346449346e-06,3.651727378938270374e-06,3.765843859530091403e-06,3.879960340121912432e-06,3.994076820713733460e-06,4.108193301305554489e-06,4.222309781897375517e-06,4.336426262489196546e-06,4.450542743081017575e-06,4.564659223672838603e-06,4.678775704264659632e-06,4.792892184856480661e-06,4.907008665448301689e-06,5.021125146040122718e-06,5.135241626631943746e-06,5.249358107223764775e-06,5.363474587815585804e-06,5.477591068407406832e-06,5.591707548999227861e-06,5.705824029591048889e-06,5.819940510182869918e-06,5.934056990774690947e-06,6.048173471366511975e-06,6.162289951958333004e-06,6.276406432550154032e-06,6.390522913141975061e-06,6.504639393733796090e-06,6.618755874325617118e-06,6.732872354917438147e-06,6.846988835509259175e-06,6.961105316101080204e-06,7.075221796692901233e-06,7.189338277284722261e-06 +0.000000000000000000e+00,1.185004452596944736e-07,2.370008905193889471e-07,3.555013357790834339e-07,4.740017810387779471e-07,5.925022262984724604e-07,7.110026715581669737e-07,8.295031168178614869e-07,9.480035620775560002e-07,1.066504007337250513e-06,1.185004452596944921e-06,1.303504897856639328e-06,1.422005343116333736e-06,1.540505788376028143e-06,1.659006233635722550e-06,1.777506678895416958e-06,1.896007124155111365e-06,2.014507569414805772e-06,2.133008014674500180e-06,2.251508459934194587e-06,2.370008905193888995e-06,2.488509350453583402e-06,2.607009795713277809e-06,2.725510240972972217e-06,2.844010686232666624e-06,2.962511131492361031e-06,3.081011576752055439e-06,3.199512022011749846e-06,3.318012467271444254e-06,3.436512912531138661e-06,3.555013357790833068e-06,3.673513803050527476e-06,3.792014248310221883e-06,3.910514693569915867e-06,4.029015138829609851e-06,4.147515584089303835e-06,4.266016029348997819e-06,4.384516474608691802e-06,4.503016919868385786e-06,4.621517365128079770e-06,4.740017810387773754e-06,4.858518255647467738e-06,4.977018700907161722e-06,5.095519146166855706e-06,5.214019591426549689e-06,5.332520036686243673e-06,5.451020481945937657e-06,5.569520927205631641e-06,5.688021372465325625e-06,5.806521817725019609e-06,5.925022262984713593e-06,6.043522708244407576e-06,6.162023153504101560e-06,6.280523598763795544e-06,6.399024044023489528e-06,6.517524489283183512e-06,6.636024934542877496e-06,6.754525379802571480e-06,6.873025825062265463e-06,6.991526270321959447e-06,7.110026715581653431e-06,7.228527160841347415e-06,7.347027606101041399e-06,7.465528051360735383e-06 +0.000000000000000000e+00,1.167374579567787034e-07,2.334749159135574067e-07,3.502123738703361365e-07,4.669498318271148664e-07,5.836872897838935962e-07,7.004247477406722731e-07,8.171622056974509500e-07,9.338996636542296269e-07,1.050637121611008304e-06,1.167374579567786981e-06,1.284112037524565658e-06,1.400849495481344334e-06,1.517586953438123011e-06,1.634324411394901688e-06,1.751061869351680365e-06,1.867799327308459042e-06,1.984536785265237507e-06,2.101274243222016184e-06,2.218011701178794861e-06,2.334749159135573538e-06,2.451486617092352215e-06,2.568224075049130892e-06,2.684961533005909568e-06,2.801698990962688245e-06,2.918436448919466922e-06,3.035173906876245599e-06,3.151911364833024276e-06,3.268648822789802953e-06,3.385386280746581630e-06,3.502123738703360307e-06,3.618861196660138984e-06,3.735598654616917660e-06,3.852336112573696337e-06,3.969073570530475014e-06,4.085811028487253691e-06,4.202548486444032368e-06,4.319285944400811045e-06,4.436023402357589722e-06,4.552760860314368399e-06,4.669498318271147076e-06,4.786235776227925752e-06,4.902973234184704429e-06,5.019710692141483106e-06,5.136448150098261783e-06,5.253185608055040460e-06,5.369923066011819137e-06,5.486660523968597814e-06,5.603397981925376491e-06,5.720135439882155168e-06,5.836872897838933844e-06,5.953610355795712521e-06,6.070347813752491198e-06,6.187085271709269875e-06,6.303822729666048552e-06,6.420560187622827229e-06,6.537297645579605906e-06,6.654035103536384583e-06,6.770772561493163260e-06,6.887510019449941936e-06,7.004247477406720613e-06,7.120984935363499290e-06,7.237722393320277967e-06,7.354459851277056644e-06 +0.000000000000000000e+00,1.185680027946076833e-07,2.371360055892153666e-07,3.557040083838230498e-07,4.742720111784307331e-07,5.928400139730384694e-07,7.114080167676462056e-07,8.299760195622539418e-07,9.485440223568616780e-07,1.067112025151469414e-06,1.185680027946077150e-06,1.304248030740684887e-06,1.422816033535292623e-06,1.541384036329900359e-06,1.659952039124508095e-06,1.778520041919115832e-06,1.897088044713723568e-06,2.015656047508331092e-06,2.134224050302938405e-06,2.252792053097545718e-06,2.371360055892153030e-06,2.489928058686760343e-06,2.608496061481367656e-06,2.727064064275974968e-06,2.845632067070582281e-06,2.964200069865189594e-06,3.082768072659796907e-06,3.201336075454404219e-06,3.319904078249011532e-06,3.438472081043618845e-06,3.557040083838226157e-06,3.675608086632833470e-06,3.794176089427440783e-06,3.912744092222048096e-06,4.031312095016655408e-06,4.149880097811262721e-06,4.268448100605870034e-06,4.387016103400477346e-06,4.505584106195084659e-06,4.624152108989691972e-06,4.742720111784299284e-06,4.861288114578906597e-06,4.979856117373513910e-06,5.098424120168121223e-06,5.216992122962728535e-06,5.335560125757335848e-06,5.454128128551943161e-06,5.572696131346550473e-06,5.691264134141157786e-06,5.809832136935765099e-06,5.928400139730372412e-06,6.046968142524979724e-06,6.165536145319587037e-06,6.284104148114194350e-06,6.402672150908801662e-06,6.521240153703408975e-06,6.639808156498016288e-06,6.758376159292623600e-06,6.876944162087230913e-06,6.995512164881838226e-06,7.114080167676445539e-06,7.232648170471052851e-06,7.351216173265660164e-06,7.469784176060267477e-06 +0.000000000000000000e+00,1.168564394616889682e-07,2.337128789233779365e-07,3.505693183850669047e-07,4.674257578467558730e-07,5.842821973084448941e-07,7.011386367701339153e-07,8.179950762318229365e-07,9.348515156935119577e-07,1.051707955155200979e-06,1.168564394616890000e-06,1.285420834078579021e-06,1.402277273540268042e-06,1.519133713001957064e-06,1.635990152463646085e-06,1.752846591925335106e-06,1.869703031387024127e-06,1.986559470848712937e-06,2.103415910310401534e-06,2.220272349772090132e-06,2.337128789233778730e-06,2.453985228695467327e-06,2.570841668157155925e-06,2.687698107618844523e-06,2.804554547080533120e-06,2.921410986542221718e-06,3.038267426003910316e-06,3.155123865465598913e-06,3.271980304927287511e-06,3.388836744388976109e-06,3.505693183850664706e-06,3.622549623312353304e-06,3.739406062774041902e-06,3.856262502235730499e-06,3.973118941697419097e-06,4.089975381159107695e-06,4.206831820620796292e-06,4.323688260082484890e-06,4.440544699544173488e-06,4.557401139005862085e-06,4.674257578467550683e-06,4.791114017929239281e-06,4.907970457390927878e-06,5.024826896852616476e-06,5.141683336314305074e-06,5.258539775775993671e-06,5.375396215237682269e-06,5.492252654699370866e-06,5.609109094161059464e-06,5.725965533622748062e-06,5.842821973084436659e-06,5.959678412546125257e-06,6.076534852007813855e-06,6.193391291469502452e-06,6.310247730931191050e-06,6.427104170392879648e-06,6.543960609854568245e-06,6.660817049316256843e-06,6.777673488777945441e-06,6.894529928239634038e-06,7.011386367701322636e-06,7.128242807163011234e-06,7.245099246624699831e-06,7.361955686086388429e-06 +0.000000000000000000e+00,1.185004452596917604e-07,2.370008905193835208e-07,3.555013357790752812e-07,4.740017810387670416e-07,5.925022262984588020e-07,7.110026715581505624e-07,8.295031168178423228e-07,9.480035620775340832e-07,1.066504007337225949e-06,1.185004452596917816e-06,1.303504897856609682e-06,1.422005343116301548e-06,1.540505788375993415e-06,1.659006233635685281e-06,1.777506678895377147e-06,1.896007124155069013e-06,2.014507569414760880e-06,2.133008014674452746e-06,2.251508459934144612e-06,2.370008905193836479e-06,2.488509350453528345e-06,2.607009795713220211e-06,2.725510240972912077e-06,2.844010686232603944e-06,2.962511131492295810e-06,3.081011576751987676e-06,3.199512022011679542e-06,3.318012467271371409e-06,3.436512912531063275e-06,3.555013357790755141e-06,3.673513803050447008e-06,3.792014248310138874e-06,3.910514693569831164e-06,4.029015138829523453e-06,4.147515584089215743e-06,4.266016029348908033e-06,4.384516474608600323e-06,4.503016919868292613e-06,4.621517365127984902e-06,4.740017810387677192e-06,4.858518255647369482e-06,4.977018700907061772e-06,5.095519146166754062e-06,5.214019591426446351e-06,5.332520036686138641e-06,5.451020481945830931e-06,5.569520927205523221e-06,5.688021372465215511e-06,5.806521817724907800e-06,5.925022262984600090e-06,6.043522708244292380e-06,6.162023153503984670e-06,6.280523598763676960e-06,6.399024044023369249e-06,6.517524489283061539e-06,6.636024934542753829e-06,6.754525379802446119e-06,6.873025825062138409e-06,6.991526270321830698e-06,7.110026715581522988e-06,7.228527160841215278e-06,7.347027606100907568e-06,7.465528051360599857e-06 +0.000000000000000000e+00,1.167585657156214273e-07,2.335171314312428546e-07,3.502756971468642820e-07,4.670342628624857093e-07,5.837928285781071366e-07,7.005513942937285639e-07,8.173099600093499912e-07,9.340685257249714185e-07,1.050827091440592952e-06,1.167585657156214485e-06,1.284344222871836018e-06,1.401102788587457551e-06,1.517861354303079085e-06,1.634619920018700618e-06,1.751378485734322151e-06,1.868137051449943684e-06,1.984895617165565217e-06,2.101654182881186751e-06,2.218412748596808284e-06,2.335171314312429817e-06,2.451929880028051350e-06,2.568688445743672883e-06,2.685447011459294417e-06,2.802205577174915950e-06,2.918964142890537483e-06,3.035722708606159016e-06,3.152481274321780549e-06,3.269239840037402082e-06,3.385998405753023616e-06,3.502756971468645149e-06,3.619515537184266682e-06,3.736274102899888215e-06,3.853032668615509748e-06,3.969791234331131282e-06,4.086549800046752815e-06,4.203308365762374348e-06,4.320066931477995881e-06,4.436825497193617414e-06,4.553584062909238948e-06,4.670342628624860481e-06,4.787101194340482014e-06,4.903859760056103547e-06,5.020618325771725080e-06,5.137376891487346614e-06,5.254135457202968147e-06,5.370894022918589680e-06,5.487652588634211213e-06,5.604411154349832746e-06,5.721169720065454280e-06,5.837928285781075813e-06,5.954686851496697346e-06,6.071445417212318879e-06,6.188203982927940412e-06,6.304962548643561946e-06,6.421721114359183479e-06,6.538479680074805012e-06,6.655238245790426545e-06,6.771996811506048078e-06,6.888755377221669612e-06,7.005513942937291145e-06,7.122272508652912678e-06,7.239031074368534211e-06,7.355789640084155744e-06 +0.000000000000000000e+00,1.173678721070270811e-07,2.347357442140541621e-07,3.521036163210812564e-07,4.694714884281083772e-07,5.868393605351354980e-07,7.042072326421626187e-07,8.215751047491897395e-07,9.389429768562168603e-07,1.056310848963244087e-06,1.173678721070271208e-06,1.291046593177298328e-06,1.408414465284325449e-06,1.525782337391352570e-06,1.643150209498379691e-06,1.760518081605406812e-06,1.877885953712433932e-06,1.995253825819461053e-06,2.112621697926488174e-06,2.229989570033515295e-06,2.347357442140542415e-06,2.464725314247569536e-06,2.582093186354596657e-06,2.699461058461623778e-06,2.816828930568650898e-06,2.934196802675678019e-06,3.051564674782705140e-06,3.168932546889732261e-06,3.286300418996759382e-06,3.403668291103786502e-06,3.521036163210813623e-06,3.638404035317840744e-06,3.755771907424867865e-06,3.873139779531894985e-06,3.990507651638922106e-06,4.107875523745949227e-06,4.225243395852976348e-06,4.342611267960003468e-06,4.459979140067030589e-06,4.577347012174057710e-06,4.694714884281084831e-06,4.812082756388111951e-06,4.929450628495139072e-06,5.046818500602166193e-06,5.164186372709193314e-06,5.281554244816220435e-06,5.398922116923247555e-06,5.516289989030274676e-06,5.633657861137301797e-06,5.751025733244328918e-06,5.868393605351356038e-06,5.985761477458383159e-06,6.103129349565410280e-06,6.220497221672437401e-06,6.337865093779464521e-06,6.455232965886491642e-06,6.572600837993518763e-06,6.689968710100545884e-06,6.807336582207573005e-06,6.924704454314600125e-06,7.042072326421627246e-06,7.159440198528654367e-06,7.276808070635681488e-06,7.394175942742708608e-06 +0.000000000000000000e+00,1.141164805918165023e-07,2.282329611836330046e-07,3.423494417754495333e-07,4.564659223672660620e-07,5.705824029590825908e-07,6.846988835508990666e-07,7.988153641427155424e-07,9.129318447345320182e-07,1.027048325326348600e-06,1.141164805918165182e-06,1.255281286509981763e-06,1.369397767101798345e-06,1.483514247693614927e-06,1.597630728285431508e-06,1.711747208877248090e-06,1.825863689469064672e-06,1.939980170060881253e-06,2.054096650652698047e-06,2.168213131244514840e-06,2.282329611836331634e-06,2.396446092428148427e-06,2.510562573019965221e-06,2.624679053611782014e-06,2.738795534203598808e-06,2.852912014795415601e-06,2.967028495387232394e-06,3.081144975979049188e-06,3.195261456570865981e-06,3.309377937162682775e-06,3.423494417754499568e-06,3.537610898346316362e-06,3.651727378938133155e-06,3.765843859529949949e-06,3.879960340121766742e-06,3.994076820713583535e-06,4.108193301305400329e-06,4.222309781897217122e-06,4.336426262489033916e-06,4.450542743080850709e-06,4.564659223672667503e-06,4.678775704264484296e-06,4.792892184856301090e-06,4.907008665448117883e-06,5.021125146039934676e-06,5.135241626631751470e-06,5.249358107223568263e-06,5.363474587815385057e-06,5.477591068407201850e-06,5.591707548999018644e-06,5.705824029590835437e-06,5.819940510182652231e-06,5.934056990774469024e-06,6.048173471366285817e-06,6.162289951958102611e-06,6.276406432549919404e-06,6.390522913141736198e-06,6.504639393733552991e-06,6.618755874325369785e-06,6.732872354917186578e-06,6.846988835509003372e-06,6.961105316100820165e-06,7.075221796692636958e-06,7.189338277284453752e-06 +0.000000000000000000e+00,1.178206337183028375e-07,2.356412674366056750e-07,3.534619011549085125e-07,4.712825348732113501e-07,5.891031685915141876e-07,7.069238023098170251e-07,8.247444360281198626e-07,9.425650697464227001e-07,1.060385703464725432e-06,1.178206337183028163e-06,1.296026970901330895e-06,1.413847604619633627e-06,1.531668238337936358e-06,1.649488872056239090e-06,1.767309505774541822e-06,1.885130139492844553e-06,2.002950773211147285e-06,2.120771406929450017e-06,2.238592040647752748e-06,2.356412674366055480e-06,2.474233308084358211e-06,2.592053941802660943e-06,2.709874575520963675e-06,2.827695209239266406e-06,2.945515842957569138e-06,3.063336476675871870e-06,3.181157110394174601e-06,3.298977744112477333e-06,3.416798377830780065e-06,3.534619011549082796e-06,3.652439645267385528e-06,3.770260278985688259e-06,3.888080912703990568e-06,4.005901546422292876e-06,4.123722180140595184e-06,4.241542813858897492e-06,4.359363447577199800e-06,4.477184081295502108e-06,4.595004715013804416e-06,4.712825348732106724e-06,4.830645982450409033e-06,4.948466616168711341e-06,5.066287249887013649e-06,5.184107883605315957e-06,5.301928517323618265e-06,5.419749151041920573e-06,5.537569784760222881e-06,5.655390418478525189e-06,5.773211052196827497e-06,5.891031685915129806e-06,6.008852319633432114e-06,6.126672953351734422e-06,6.244493587070036730e-06,6.362314220788339038e-06,6.480134854506641346e-06,6.597955488224943654e-06,6.715776121943245962e-06,6.833596755661548271e-06,6.951417389379850579e-06,7.069238023098152887e-06,7.187058656816455195e-06,7.304879290534757503e-06,7.422699924253059811e-06 +0.000000000000000000e+00,1.170896006895473968e-07,2.341792013790947935e-07,3.512688020686422167e-07,4.683584027581896400e-07,5.854480034477370632e-07,7.025376041372844335e-07,8.196272048268318038e-07,9.367168055163791740e-07,1.053806406205926544e-06,1.170896006895473915e-06,1.287985607585021285e-06,1.405075208274568655e-06,1.522164808964116025e-06,1.639254409653663396e-06,1.756344010343210766e-06,1.873433611032758136e-06,1.990523211722305507e-06,2.107612812411853089e-06,2.224702413101400671e-06,2.341792013790948253e-06,2.458881614480495835e-06,2.575971215170043417e-06,2.693060815859590999e-06,2.810150416549138581e-06,2.927240017238686163e-06,3.044329617928233745e-06,3.161419218617781327e-06,3.278508819307328909e-06,3.395598419996876491e-06,3.512688020686424073e-06,3.629777621375971655e-06,3.746867222065519237e-06,3.863956822755067243e-06,3.981046423444615248e-06,4.098136024134163254e-06,4.215225624823711260e-06,4.332315225513259265e-06,4.449404826202807271e-06,4.566494426892355276e-06,4.683584027581903282e-06,4.800673628271451287e-06,4.917763228960999293e-06,5.034852829650547298e-06,5.151942430340095304e-06,5.269032031029643310e-06,5.386121631719191315e-06,5.503211232408739321e-06,5.620300833098287326e-06,5.737390433787835332e-06,5.854480034477383337e-06,5.971569635166931343e-06,6.088659235856479348e-06,6.205748836546027354e-06,6.322838437235575360e-06,6.439928037925123365e-06,6.557017638614671371e-06,6.674107239304219376e-06,6.791196839993767382e-06,6.908286440683315387e-06,7.025376041372863393e-06,7.142465642062411399e-06,7.259555242751959404e-06,7.376644843441507410e-06 +0.000000000000000000e+00,1.151985467272800965e-07,2.303970934545601930e-07,3.455956401818402763e-07,4.607941869091203330e-07,5.759927336364003898e-07,6.911912803636804466e-07,8.063898270909605034e-07,9.215883738182405602e-07,1.036786920545520511e-06,1.151985467272800568e-06,1.267184014000080625e-06,1.382382560727360681e-06,1.497581107454640738e-06,1.612779654181920795e-06,1.727978200909200852e-06,1.843176747636480909e-06,1.958375294363760965e-06,2.073573841091041022e-06,2.188772387818321079e-06,2.303970934545601136e-06,2.419169481272881193e-06,2.534368028000161249e-06,2.649566574727441306e-06,2.764765121454721363e-06,2.879963668182001420e-06,2.995162214909281477e-06,3.110360761636561533e-06,3.225559308363841590e-06,3.340757855091121647e-06,3.455956401818401704e-06,3.571154948545681761e-06,3.686353495272961817e-06,3.801552042000241874e-06,3.916750588727521931e-06,4.031949135454801988e-06,4.147147682182082044e-06,4.262346228909362101e-06,4.377544775636642158e-06,4.492743322363922215e-06,4.607941869091202272e-06,4.723140415818482328e-06,4.838338962545762385e-06,4.953537509273042442e-06,5.068736056000322499e-06,5.183934602727602556e-06,5.299133149454882612e-06,5.414331696182162669e-06,5.529530242909442726e-06,5.644728789636722783e-06,5.759927336364002840e-06,5.875125883091282896e-06,5.990324429818562953e-06,6.105522976545843010e-06,6.220721523273123067e-06,6.335920070000403123e-06,6.451118616727683180e-06,6.566317163454963237e-06,6.681515710182243294e-06,6.796714256909523351e-06,6.911912803636803407e-06,7.027111350364083464e-06,7.142309897091363521e-06,7.257508443818643578e-06 +0.000000000000000000e+00,1.178206337182977553e-07,2.356412674365955106e-07,3.534619011548932660e-07,4.712825348731910213e-07,5.891031685914887766e-07,7.069238023097865319e-07,8.247444360280842872e-07,9.425650697463820425e-07,1.060385703464679692e-06,1.178206337182977341e-06,1.296026970901274991e-06,1.413847604619572640e-06,1.531668238337870290e-06,1.649488872056167939e-06,1.767309505774465589e-06,1.885130139492763238e-06,2.002950773211060888e-06,2.120771406929358537e-06,2.238592040647656186e-06,2.356412674365953836e-06,2.474233308084251485e-06,2.592053941802549135e-06,2.709874575520846784e-06,2.827695209239144434e-06,2.945515842957442083e-06,3.063336476675739732e-06,3.181157110394037382e-06,3.298977744112335031e-06,3.416798377830632681e-06,3.534619011548930330e-06,3.652439645267227980e-06,3.770260278985525629e-06,3.888080912703822855e-06,4.005901546422120081e-06,4.123722180140417307e-06,4.241542813858714533e-06,4.359363447577011759e-06,4.477184081295308985e-06,4.595004715013606211e-06,4.712825348731903436e-06,4.830645982450200662e-06,4.948466616168497888e-06,5.066287249886795114e-06,5.184107883605092340e-06,5.301928517323389566e-06,5.419749151041686792e-06,5.537569784759984018e-06,5.655390418478281244e-06,5.773211052196578470e-06,5.891031685914875696e-06,6.008852319633172922e-06,6.126672953351470148e-06,6.244493587069767373e-06,6.362314220788064599e-06,6.480134854506361825e-06,6.597955488224659051e-06,6.715776121942956277e-06,6.833596755661253503e-06,6.951417389379550729e-06,7.069238023097847955e-06,7.187058656816145181e-06,7.304879290534442407e-06,7.422699924252739633e-06 +0.000000000000000000e+00,1.170896006895422087e-07,2.341792013790844174e-07,3.512688020686266525e-07,4.683584027581688877e-07,5.854480034477111228e-07,7.025376041372533050e-07,8.196272048267954872e-07,9.367168055163376694e-07,1.053806406205879958e-06,1.170896006895422246e-06,1.287985607584964534e-06,1.405075208274506822e-06,1.522164808964049110e-06,1.639254409653591398e-06,1.756344010343133686e-06,1.873433611032675974e-06,1.990523211722218262e-06,2.107612812411760762e-06,2.224702413101303262e-06,2.341792013790845762e-06,2.458881614480388262e-06,2.575971215169930761e-06,2.693060815859473261e-06,2.810150416549015761e-06,2.927240017238558261e-06,3.044329617928100761e-06,3.161419218617643261e-06,3.278508819307185761e-06,3.395598419996728260e-06,3.512688020686270760e-06,3.629777621375813260e-06,3.746867222065355760e-06,3.863956822754897836e-06,3.981046423444439913e-06,4.098136024133981989e-06,4.215225624823524065e-06,4.332315225513066142e-06,4.449404826202608218e-06,4.566494426892150294e-06,4.683584027581692371e-06,4.800673628271234447e-06,4.917763228960776523e-06,5.034852829650318600e-06,5.151942430339860676e-06,5.269032031029402752e-06,5.386121631718944829e-06,5.503211232408486905e-06,5.620300833098028981e-06,5.737390433787571058e-06,5.854480034477113134e-06,5.971569635166655210e-06,6.088659235856197286e-06,6.205748836545739363e-06,6.322838437235281439e-06,6.439928037924823515e-06,6.557017638614365592e-06,6.674107239303907668e-06,6.791196839993449744e-06,6.908286440682991821e-06,7.025376041372533897e-06,7.142465642062075973e-06,7.259555242751618050e-06,7.376644843441160126e-06 +0.000000000000000000e+00,1.151985467272757952e-07,2.303970934545515903e-07,3.455956401818273590e-07,4.607941869091031277e-07,5.759927336363788964e-07,6.911912803636547180e-07,8.063898270909305396e-07,9.215883738182063612e-07,1.036786920545482183e-06,1.151985467272758004e-06,1.267184014000033826e-06,1.382382560727309648e-06,1.497581107454585469e-06,1.612779654181861291e-06,1.727978200909137113e-06,1.843176747636412934e-06,1.958375294363688968e-06,2.073573841090964789e-06,2.188772387818240611e-06,2.303970934545516433e-06,2.419169481272792254e-06,2.534368028000068076e-06,2.649566574727343897e-06,2.764765121454619719e-06,2.879963668181895541e-06,2.995162214909171362e-06,3.110360761636447184e-06,3.225559308363723006e-06,3.340757855090998827e-06,3.455956401818274649e-06,3.571154948545550470e-06,3.686353495272826292e-06,3.801552042000102114e-06,3.916750588727377935e-06,4.031949135454653757e-06,4.147147682181929579e-06,4.262346228909205400e-06,4.377544775636481222e-06,4.492743322363757043e-06,4.607941869091032865e-06,4.723140415818308687e-06,4.838338962545584508e-06,4.953537509272860330e-06,5.068736056000136152e-06,5.183934602727411973e-06,5.299133149454687795e-06,5.414331696181963616e-06,5.529530242909239438e-06,5.644728789636515260e-06,5.759927336363791081e-06,5.875125883091066903e-06,5.990324429818342725e-06,6.105522976545618546e-06,6.220721523272894368e-06,6.335920070000170189e-06,6.451118616727446011e-06,6.566317163454721833e-06,6.681515710181997654e-06,6.796714256909273476e-06,6.911912803636549298e-06,7.027111350363825119e-06,7.142309897091100941e-06,7.257508443818376762e-06 +0.000000000000000000e+00,1.202637480046539794e-07,2.405274960093079587e-07,3.607912440139619646e-07,4.810549920186160233e-07,6.013187400232700821e-07,7.215824880279241409e-07,8.418462360325781997e-07,9.621099840372322584e-07,1.082373732041886211e-06,1.202637480046540164e-06,1.322901228051194117e-06,1.443164976055848070e-06,1.563428724060502023e-06,1.683692472065155976e-06,1.803956220069809929e-06,1.924219968074464093e-06,2.044483716079118258e-06,2.164747464083772423e-06,2.285011212088426587e-06,2.405274960093080752e-06,2.525538708097734917e-06,2.645802456102389081e-06,2.766066204107043246e-06,2.886329952111697411e-06,3.006593700116351575e-06,3.126857448121005740e-06,3.247121196125659905e-06,3.367384944130314069e-06,3.487648692134968234e-06,3.607912440139622399e-06,3.728176188144276563e-06,3.848439936148930728e-06,3.968703684153584893e-06,4.088967432158239057e-06,4.209231180162893222e-06,4.329494928167547386e-06,4.449758676172201551e-06,4.570022424176855716e-06,4.690286172181509880e-06,4.810549920186164045e-06,4.930813668190818210e-06,5.051077416195472374e-06,5.171341164200126539e-06,5.291604912204780704e-06,5.411868660209434868e-06,5.532132408214089033e-06,5.652396156218743198e-06,5.772659904223397362e-06,5.892923652228051527e-06,6.013187400232705692e-06,6.133451148237359856e-06,6.253714896242014021e-06,6.373978644246668186e-06,6.494242392251322350e-06,6.614506140255976515e-06,6.734769888260630680e-06,6.855033636265284844e-06,6.975297384269939009e-06,7.095561132274593174e-06,7.215824880279247338e-06,7.336088628283901503e-06,7.456352376288555667e-06,7.576616124293209832e-06 +0.000000000000000000e+00,1.189076352211676028e-07,2.378152704423352055e-07,3.567229056635028083e-07,4.756305408846704110e-07,5.945381761058380138e-07,7.134458113270056165e-07,8.323534465481732193e-07,9.512610817693408220e-07,1.070168716990508425e-06,1.189076352211676028e-06,1.307983987432843630e-06,1.426891622654011233e-06,1.545799257875178836e-06,1.664706893096346439e-06,1.783614528317514041e-06,1.902522163538681644e-06,2.021429798759849247e-06,2.140337433981016850e-06,2.259245069202184452e-06,2.378152704423352055e-06,2.497060339644519658e-06,2.615967974865687261e-06,2.734875610086854863e-06,2.853783245308022466e-06,2.972690880529190069e-06,3.091598515750357672e-06,3.210506150971525274e-06,3.329413786192692877e-06,3.448321421413860480e-06,3.567229056635028083e-06,3.686136691856195685e-06,3.805044327077363288e-06,3.923951962298530891e-06,4.042859597519698494e-06,4.161767232740866096e-06,4.280674867962033699e-06,4.399582503183201302e-06,4.518490138404368905e-06,4.637397773625536507e-06,4.756305408846704110e-06,4.875213044067871713e-06,4.994120679289039316e-06,5.113028314510206918e-06,5.231935949731374521e-06,5.350843584952542124e-06,5.469751220173709727e-06,5.588658855394877330e-06,5.707566490616044932e-06,5.826474125837212535e-06,5.945381761058380138e-06,6.064289396279547741e-06,6.183197031500715343e-06,6.302104666721882946e-06,6.421012301943050549e-06,6.539919937164218152e-06,6.658827572385385754e-06,6.777735207606553357e-06,6.896642842827720960e-06,7.015550478048888563e-06,7.134458113270056165e-06,7.253365748491223768e-06,7.372273383712391371e-06,7.491181018933558974e-06 +0.000000000000000000e+00,1.179238418755912685e-07,2.358476837511825370e-07,3.537715256267738320e-07,4.716953675023651270e-07,5.896192093779564219e-07,7.075430512535476640e-07,8.254668931291389060e-07,9.433907350047301481e-07,1.061314576880321390e-06,1.179238418755912632e-06,1.297162260631503874e-06,1.415086102507095116e-06,1.533009944382686358e-06,1.650933786258277600e-06,1.768857628133868842e-06,1.886781470009460084e-06,2.004705311885051115e-06,2.122629153760642357e-06,2.240552995636233599e-06,2.358476837511824841e-06,2.476400679387416083e-06,2.594324521263007325e-06,2.712248363138598567e-06,2.830172205014189809e-06,2.948096046889781051e-06,3.066019888765372293e-06,3.183943730640963535e-06,3.301867572516554777e-06,3.419791414392146019e-06,3.537715256267737261e-06,3.655639098143328503e-06,3.773562940018919745e-06,3.891486781894510987e-06,4.009410623770102229e-06,4.127334465645693471e-06,4.245258307521284713e-06,4.363182149396875955e-06,4.481105991272467197e-06,4.599029833148058439e-06,4.716953675023649682e-06,4.834877516899240924e-06,4.952801358774832166e-06,5.070725200650423408e-06,5.188649042526014650e-06,5.306572884401605892e-06,5.424496726277197134e-06,5.542420568152788376e-06,5.660344410028379618e-06,5.778268251903970860e-06,5.896192093779562102e-06,6.014115935655153344e-06,6.132039777530744586e-06,6.249963619406335828e-06,6.367887461281927070e-06,6.485811303157518312e-06,6.603735145033109554e-06,6.721658986908700796e-06,6.839582828784292038e-06,6.957506670659883280e-06,7.075430512535474522e-06,7.193354354411065764e-06,7.311278196286657006e-06,7.429202038162248248e-06 +0.000000000000000000e+00,1.202637480046477590e-07,2.405274960092955179e-07,3.607912440139432769e-07,4.810549920185910359e-07,6.013187400232388478e-07,7.215824880278866597e-07,8.418462360325344716e-07,9.621099840371822835e-07,1.082373732041830095e-06,1.202637480046477907e-06,1.322901228051125719e-06,1.443164976055773531e-06,1.563428724060421343e-06,1.683692472065069155e-06,1.803956220069716967e-06,1.924219968074364991e-06,2.044483716079013226e-06,2.164747464083661461e-06,2.285011212088309697e-06,2.405274960092957932e-06,2.525538708097606168e-06,2.645802456102254403e-06,2.766066204106902638e-06,2.886329952111550874e-06,3.006593700116199109e-06,3.126857448120847345e-06,3.247121196125495580e-06,3.367384944130143816e-06,3.487648692134792051e-06,3.607912440139440286e-06,3.728176188144088522e-06,3.848439936148736757e-06,3.968703684153384993e-06,4.088967432158033228e-06,4.209231180162681464e-06,4.329494928167329699e-06,4.449758676171977934e-06,4.570022424176626170e-06,4.690286172181274405e-06,4.810549920185922641e-06,4.930813668190570876e-06,5.051077416195219112e-06,5.171341164199867347e-06,5.291604912204515582e-06,5.411868660209163818e-06,5.532132408213812053e-06,5.652396156218460289e-06,5.772659904223108524e-06,5.892923652227756760e-06,6.013187400232404995e-06,6.133451148237053230e-06,6.253714896241701466e-06,6.373978644246349701e-06,6.494242392250997937e-06,6.614506140255646172e-06,6.734769888260294407e-06,6.855033636264942643e-06,6.975297384269590878e-06,7.095561132274239114e-06,7.215824880278887349e-06,7.336088628283535585e-06,7.456352376288183820e-06,7.576616124292832055e-06 +0.000000000000000000e+00,1.189076352211620706e-07,2.378152704423241411e-07,3.567229056634861852e-07,4.756305408846482293e-07,5.945381761058102734e-07,7.134458113269723705e-07,8.323534465481344675e-07,9.512610817692965646e-07,1.070168716990458662e-06,1.189076352211620759e-06,1.307983987432782856e-06,1.426891622653944953e-06,1.545799257875107050e-06,1.664706893096269147e-06,1.783614528317431244e-06,1.902522163538593341e-06,2.021429798759755226e-06,2.140337433980916900e-06,2.259245069202078573e-06,2.378152704423240247e-06,2.497060339644401920e-06,2.615967974865563594e-06,2.734875610086725267e-06,2.853783245307886941e-06,2.972690880529048614e-06,3.091598515750210288e-06,3.210506150971371961e-06,3.329413786192533635e-06,3.448321421413695308e-06,3.567229056634856982e-06,3.686136691856018656e-06,3.805044327077180329e-06,3.923951962298342003e-06,4.042859597519503676e-06,4.161767232740665350e-06,4.280674867961827023e-06,4.399582503182988697e-06,4.518490138404150370e-06,4.637397773625312044e-06,4.756305408846473717e-06,4.875213044067635391e-06,4.994120679288797064e-06,5.113028314509958738e-06,5.231935949731120411e-06,5.350843584952282085e-06,5.469751220173443758e-06,5.588658855394605432e-06,5.707566490615767105e-06,5.826474125836928779e-06,5.945381761058090453e-06,6.064289396279252126e-06,6.183197031500413800e-06,6.302104666721575473e-06,6.421012301942737147e-06,6.539919937163898820e-06,6.658827572385060494e-06,6.777735207606222167e-06,6.896642842827383841e-06,7.015550478048545514e-06,7.134458113269707188e-06,7.253365748490868861e-06,7.372273383712030535e-06,7.491181018933192208e-06 +0.000000000000000000e+00,1.179238418755867157e-07,2.358476837511734314e-07,3.537715256267601736e-07,4.716953675023469158e-07,5.896192093779336579e-07,7.075430512535203472e-07,8.254668931291070364e-07,9.433907350046937256e-07,1.061314576880280521e-06,1.179238418755867316e-06,1.297162260631454111e-06,1.415086102507040906e-06,1.533009944382627701e-06,1.650933786258214496e-06,1.768857628133801291e-06,1.886781470009388087e-06,2.004705311884974882e-06,2.122629153760561889e-06,2.240552995636148895e-06,2.358476837511735902e-06,2.476400679387322909e-06,2.594324521262909916e-06,2.712248363138496923e-06,2.830172205014083930e-06,2.948096046889670937e-06,3.066019888765257944e-06,3.183943730640844950e-06,3.301867572516431957e-06,3.419791414392018964e-06,3.537715256267605971e-06,3.655639098143192978e-06,3.773562940018779985e-06,3.891486781894366992e-06,4.009410623769953999e-06,4.127334465645541005e-06,4.245258307521128012e-06,4.363182149396715019e-06,4.481105991272302026e-06,4.599029833147889033e-06,4.716953675023476040e-06,4.834877516899063047e-06,4.952801358774650054e-06,5.070725200650237060e-06,5.188649042525824067e-06,5.306572884401411074e-06,5.424496726276998081e-06,5.542420568152585088e-06,5.660344410028172095e-06,5.778268251903759102e-06,5.896192093779346108e-06,6.014115935654933115e-06,6.132039777530520122e-06,6.249963619406107129e-06,6.367887461281694136e-06,6.485811303157281143e-06,6.603735145032868150e-06,6.721658986908455157e-06,6.839582828784042163e-06,6.957506670659629170e-06,7.075430512535216177e-06,7.193354354410803184e-06,7.311278196286390191e-06,7.429202038161977198e-06 +0.000000000000000000e+00,1.235116165042632356e-07,2.470232330085264712e-07,3.705348495127897068e-07,4.940464660170529424e-07,6.175580825213161780e-07,7.410696990255794136e-07,8.645813155298426492e-07,9.880929320341058847e-07,1.111604548538369120e-06,1.235116165042632356e-06,1.358627781546895592e-06,1.482139398051158827e-06,1.605651014555422063e-06,1.729162631059685298e-06,1.852674247563948534e-06,1.976185864068211769e-06,2.099697480572475005e-06,2.223209097076738241e-06,2.346720713581001476e-06,2.470232330085264712e-06,2.593743946589527947e-06,2.717255563093791183e-06,2.840767179598054419e-06,2.964278796102317654e-06,3.087790412606580890e-06,3.211302029110844125e-06,3.334813645615107361e-06,3.458325262119370597e-06,3.581836878623633832e-06,3.705348495127897068e-06,3.828860111632159880e-06,3.952371728136422692e-06,4.075883344640685504e-06,4.199394961144948316e-06,4.322906577649211128e-06,4.446418194153473940e-06,4.569929810657736752e-06,4.693441427161999564e-06,4.816953043666262376e-06,4.940464660170525189e-06,5.063976276674788001e-06,5.187487893179050813e-06,5.310999509683313625e-06,5.434511126187576437e-06,5.558022742691839249e-06,5.681534359196102061e-06,5.805045975700364873e-06,5.928557592204627685e-06,6.052069208708890497e-06,6.175580825213153309e-06,6.299092441717416121e-06,6.422604058221678933e-06,6.546115674725941746e-06,6.669627291230204558e-06,6.793138907734467370e-06,6.916650524238730182e-06,7.040162140742992994e-06,7.163673757247255806e-06,7.287185373751518618e-06,7.410696990255781430e-06,7.534208606760044242e-06,7.657720223264306207e-06,7.781231839768568172e-06 +0.000000000000000000e+00,1.218128743615315288e-07,2.436257487230630576e-07,3.654386230845946129e-07,4.872514974461262211e-07,6.090643718076578293e-07,7.308772461691894376e-07,8.526901205307210458e-07,9.745029948922526540e-07,1.096315869253784262e-06,1.218128743615315870e-06,1.339941617976847479e-06,1.461754492338379087e-06,1.583567366699910695e-06,1.705380241061442303e-06,1.827193115422973912e-06,1.949005989784505732e-06,2.070818864146037340e-06,2.192631738507568948e-06,2.314444612869100556e-06,2.436257487230632164e-06,2.558070361592163773e-06,2.679883235953695381e-06,2.801696110315226989e-06,2.923508984676758597e-06,3.045321859038290206e-06,3.167134733399821814e-06,3.288947607761353422e-06,3.410760482122885030e-06,3.532573356484416638e-06,3.654386230845948247e-06,3.776199105207479855e-06,3.898011979569011463e-06,4.019824853930543071e-06,4.141637728292074680e-06,4.263450602653606288e-06,4.385263477015137896e-06,4.507076351376669504e-06,4.628889225738201112e-06,4.750702100099732721e-06,4.872514974461264329e-06,4.994327848822795937e-06,5.116140723184327545e-06,5.237953597545859153e-06,5.359766471907390762e-06,5.481579346268922370e-06,5.603392220630453978e-06,5.725205094991985586e-06,5.847017969353517195e-06,5.968830843715048803e-06,6.090643718076580411e-06,6.212456592438112019e-06,6.334269466799643627e-06,6.456082341161175236e-06,6.577895215522706844e-06,6.699708089884238452e-06,6.821520964245770060e-06,6.943333838607301669e-06,7.065146712968833277e-06,7.186959587330364885e-06,7.308772461691896493e-06,7.430585336053428101e-06,7.552398210414959710e-06,7.674211084776490471e-06 +0.000000000000000000e+00,1.214376522321240986e-07,2.428753044642481972e-07,3.643129566963722959e-07,4.857506089284963945e-07,6.071882611606204931e-07,7.286259133927445917e-07,8.500635656248686903e-07,9.715012178569927889e-07,1.092938870089116888e-06,1.214376522321240986e-06,1.335814174553365085e-06,1.457251826785489183e-06,1.578689479017613282e-06,1.700127131249737381e-06,1.821564783481861479e-06,1.943002435713985578e-06,2.064440087946109888e-06,2.185877740178234199e-06,2.307315392410358509e-06,2.428753044642482819e-06,2.550190696874607130e-06,2.671628349106731440e-06,2.793066001338855751e-06,2.914503653570980061e-06,3.035941305803104371e-06,3.157378958035228682e-06,3.278816610267352992e-06,3.400254262499477302e-06,3.521691914731601613e-06,3.643129566963725923e-06,3.764567219195850234e-06,3.886004871427974544e-06,4.007442523660098854e-06,4.128880175892223165e-06,4.250317828124347475e-06,4.371755480356471785e-06,4.493193132588596096e-06,4.614630784820720406e-06,4.736068437052844717e-06,4.857506089284969027e-06,4.978943741517093337e-06,5.100381393749217648e-06,5.221819045981341958e-06,5.343256698213466268e-06,5.464694350445590579e-06,5.586132002677714889e-06,5.707569654909839200e-06,5.829007307141963510e-06,5.950444959374087820e-06,6.071882611606212131e-06,6.193320263838336441e-06,6.314757916070460751e-06,6.436195568302585062e-06,6.557633220534709372e-06,6.679070872766833683e-06,6.800508524998957993e-06,6.921946177231082303e-06,7.043383829463206614e-06,7.164821481695330924e-06,7.286259133927455234e-06,7.407696786159579545e-06,7.529134438391703855e-06,7.650572090623829013e-06 +0.000000000000000000e+00,1.235116165042570681e-07,2.470232330085141363e-07,3.705348495127711779e-07,4.940464660170281667e-07,6.175580825212851554e-07,7.410696990255421441e-07,8.645813155297991328e-07,9.880929320340561216e-07,1.111604548538313216e-06,1.235116165042570311e-06,1.358627781546827405e-06,1.482139398051084500e-06,1.605651014555341595e-06,1.729162631059598689e-06,1.852674247563855784e-06,1.976185864068112667e-06,2.099697480572369549e-06,2.223209097076626432e-06,2.346720713580883315e-06,2.470232330085140198e-06,2.593743946589397081e-06,2.717255563093653964e-06,2.840767179597910847e-06,2.964278796102167729e-06,3.087790412606424612e-06,3.211302029110681495e-06,3.334813645614938378e-06,3.458325262119195261e-06,3.581836878623452144e-06,3.705348495127709026e-06,3.828860111631965909e-06,3.952371728136222792e-06,4.075883344640479675e-06,4.199394961144736558e-06,4.322906577648993441e-06,4.446418194153250324e-06,4.569929810657507206e-06,4.693441427161764089e-06,4.816953043666020972e-06,4.940464660170277855e-06,5.063976276674534738e-06,5.187487893178791621e-06,5.310999509683048503e-06,5.434511126187305386e-06,5.558022742691562269e-06,5.681534359195819152e-06,5.805045975700076035e-06,5.928557592204332918e-06,6.052069208708589801e-06,6.175580825212846683e-06,6.299092441717103566e-06,6.422604058221360449e-06,6.546115674725617332e-06,6.669627291229874215e-06,6.793138907734131098e-06,6.916650524238387980e-06,7.040162140742644863e-06,7.163673757246901746e-06,7.287185373751158629e-06,7.410696990255415512e-06,7.534208606759672395e-06,7.657720223263930125e-06,7.781231839768187007e-06 +0.000000000000000000e+00,1.218128743615256790e-07,2.436257487230513580e-07,3.654386230845770370e-07,4.872514974461027160e-07,6.090643718076283950e-07,7.308772461691540739e-07,8.526901205306797529e-07,9.745029948922054319e-07,1.096315869253731111e-06,1.218128743615256790e-06,1.339941617976782469e-06,1.461754492338308148e-06,1.583567366699833827e-06,1.705380241061359506e-06,1.827193115422885185e-06,1.949005989784410864e-06,2.070818864145936543e-06,2.192631738507462222e-06,2.314444612868987901e-06,2.436257487230513580e-06,2.558070361592039259e-06,2.679883235953564938e-06,2.801696110315090617e-06,2.923508984676616296e-06,3.045321859038141975e-06,3.167134733399667654e-06,3.288947607761193333e-06,3.410760482122719012e-06,3.532573356484244691e-06,3.654386230845770370e-06,3.776199105207296049e-06,3.898011979568821728e-06,4.019824853930347407e-06,4.141637728291873086e-06,4.263450602653398765e-06,4.385263477014924444e-06,4.507076351376450123e-06,4.628889225737975802e-06,4.750702100099501481e-06,4.872514974461027160e-06,4.994327848822552839e-06,5.116140723184078518e-06,5.237953597545604197e-06,5.359766471907129876e-06,5.481579346268655555e-06,5.603392220630181234e-06,5.725205094991706913e-06,5.847017969353232592e-06,5.968830843714758271e-06,6.090643718076283950e-06,6.212456592437809628e-06,6.334269466799335307e-06,6.456082341160860986e-06,6.577895215522386665e-06,6.699708089883912344e-06,6.821520964245438023e-06,6.943333838606963702e-06,7.065146712968489381e-06,7.186959587330015060e-06,7.308772461691540739e-06,7.430585336053066418e-06,7.552398210414592097e-06,7.674211084776117776e-06 +0.000000000000000000e+00,1.214376522321202605e-07,2.428753044642405210e-07,3.643129566963607550e-07,4.857506089284809361e-07,6.071882611606011172e-07,7.286259133927212983e-07,8.500635656248414794e-07,9.715012178569616605e-07,1.092938870089081947e-06,1.214376522321202234e-06,1.335814174553322521e-06,1.457251826785442808e-06,1.578689479017563095e-06,1.700127131249683382e-06,1.821564783481803669e-06,1.943002435713923744e-06,2.064440087946043820e-06,2.185877740178163895e-06,2.307315392410283970e-06,2.428753044642404045e-06,2.550190696874524121e-06,2.671628349106644196e-06,2.793066001338764271e-06,2.914503653570884346e-06,3.035941305803004421e-06,3.157378958035124497e-06,3.278816610267244572e-06,3.400254262499364647e-06,3.521691914731484722e-06,3.643129566963604797e-06,3.764567219195724873e-06,3.886004871427844948e-06,4.007442523659965023e-06,4.128880175892085098e-06,4.250317828124205173e-06,4.371755480356325249e-06,4.493193132588445324e-06,4.614630784820565399e-06,4.736068437052685474e-06,4.857506089284805550e-06,4.978943741516925625e-06,5.100381393749045700e-06,5.221819045981165775e-06,5.343256698213285850e-06,5.464694350445405926e-06,5.586132002677526001e-06,5.707569654909646076e-06,5.829007307141766151e-06,5.950444959373886226e-06,6.071882611606006302e-06,6.193320263838126377e-06,6.314757916070246452e-06,6.436195568302366527e-06,6.557633220534486602e-06,6.679070872766606678e-06,6.800508524998726753e-06,6.921946177230846828e-06,7.043383829462966903e-06,7.164821481695086979e-06,7.286259133927207054e-06,7.407696786159327129e-06,7.529134438391447204e-06,7.650572090623568126e-06 +0.000000000000000000e+00,1.272179185512104111e-07,2.544358371024208223e-07,3.816537556536312334e-07,5.088716742048416445e-07,6.360895927560520556e-07,7.633075113072624668e-07,8.905254298584728779e-07,1.017743348409683289e-06,1.144961266960893594e-06,1.272179185512103900e-06,1.399397104063314205e-06,1.526615022614524510e-06,1.653832941165734815e-06,1.781050859716945121e-06,1.908268778268155426e-06,2.035486696819365731e-06,2.162704615370576036e-06,2.289922533921786341e-06,2.417140452472996647e-06,2.544358371024206952e-06,2.671576289575417257e-06,2.798794208126627562e-06,2.926012126677837868e-06,3.053230045229048173e-06,3.180447963780258478e-06,3.307665882331468783e-06,3.434883800882679089e-06,3.562101719433889394e-06,3.689319637985099699e-06,3.816537556536310004e-06,3.943755475087520310e-06,4.070973393638730615e-06,4.198191312189940920e-06,4.325409230741151225e-06,4.452627149292361531e-06,4.579845067843571836e-06,4.707062986394782141e-06,4.834280904945992446e-06,4.961498823497202752e-06,5.088716742048413057e-06,5.215934660599623362e-06,5.343152579150833667e-06,5.470370497702043973e-06,5.597588416253254278e-06,5.724806334804464583e-06,5.852024253355674888e-06,5.979242171906885194e-06,6.106460090458095499e-06,6.233678009009305804e-06,6.360895927560516109e-06,6.488113846111726415e-06,6.615331764662936720e-06,6.742549683214147025e-06,6.869767601765357330e-06,6.996985520316567636e-06,7.124203438867777941e-06,7.251421357418988246e-06,7.378639275970198551e-06,7.505857194521408857e-06,7.633075113072618315e-06,7.760293031623827773e-06,7.887510950175037231e-06,8.014728868726246690e-06 +0.000000000000000000e+00,1.253200895782568118e-07,2.506401791565136236e-07,3.759602687347704353e-07,5.012803583130272471e-07,6.266004478912840589e-07,7.519205374695408707e-07,8.772406270477976824e-07,1.002560716626054494e-06,1.127880806204311412e-06,1.253200895782568330e-06,1.378520985360825247e-06,1.503841074939082165e-06,1.629161164517339082e-06,1.754481254095596000e-06,1.879801343673852918e-06,2.005121433252109835e-06,2.130441522830366753e-06,2.255761612408623671e-06,2.381081701986880588e-06,2.506401791565137506e-06,2.631721881143394424e-06,2.757041970721651341e-06,2.882362060299908259e-06,3.007682149878165177e-06,3.133002239456422094e-06,3.258322329034679012e-06,3.383642418612935930e-06,3.508962508191192847e-06,3.634282597769449765e-06,3.759602687347706683e-06,3.884922776925964024e-06,4.010242866504221365e-06,4.135562956082478706e-06,4.260883045660736047e-06,4.386203135238993388e-06,4.511523224817250730e-06,4.636843314395508071e-06,4.762163403973765412e-06,4.887483493552022753e-06,5.012803583130280094e-06,5.138123672708537436e-06,5.263443762286794777e-06,5.388763851865052118e-06,5.514083941443309459e-06,5.639404031021566800e-06,5.764724120599824141e-06,5.890044210178081483e-06,6.015364299756338824e-06,6.140684389334596165e-06,6.266004478912853506e-06,6.391324568491110847e-06,6.516644658069368188e-06,6.641964747647625530e-06,6.767284837225882871e-06,6.892604926804140212e-06,7.017925016382397553e-06,7.143245105960654894e-06,7.268565195538912235e-06,7.393885285117169577e-06,7.519205374695426918e-06,7.644525464273684259e-06,7.769845553851941600e-06,7.895165643430198941e-06 +0.000000000000000000e+00,1.253731271202327579e-07,2.507462542404655159e-07,3.761193813606982738e-07,5.014925084809310317e-07,6.268656356011637896e-07,7.522387627213965476e-07,8.776118898416293055e-07,1.002985016961862063e-06,1.128358144082094715e-06,1.253731271202327368e-06,1.379104398322560020e-06,1.504477525442792672e-06,1.629850652563025324e-06,1.755223779683257976e-06,1.880596906803490628e-06,2.005970033923723280e-06,2.131343161043955932e-06,2.256716288164188584e-06,2.382089415284421236e-06,2.507462542404653888e-06,2.632835669524886540e-06,2.758208796645119192e-06,2.883581923765351844e-06,3.008955050885584496e-06,3.134328178005817148e-06,3.259701305126049800e-06,3.385074432246282452e-06,3.510447559366515104e-06,3.635820686486747756e-06,3.761193813606980408e-06,3.886566940727213484e-06,4.011940067847446560e-06,4.137313194967679635e-06,4.262686322087912711e-06,4.388059449208145786e-06,4.513432576328378862e-06,4.638805703448611937e-06,4.764178830568845013e-06,4.889551957689078089e-06,5.014925084809311164e-06,5.140298211929544240e-06,5.265671339049777315e-06,5.391044466170010391e-06,5.516417593290243466e-06,5.641790720410476542e-06,5.767163847530709618e-06,5.892536974650942693e-06,6.017910101771175769e-06,6.143283228891408844e-06,6.268656356011641920e-06,6.394029483131874995e-06,6.519402610252108071e-06,6.644775737372341146e-06,6.770148864492574222e-06,6.895521991612807298e-06,7.020895118733040373e-06,7.146268245853273449e-06,7.271641372973506524e-06,7.397014500093739600e-06,7.522387627213972675e-06,7.647760754334205751e-06,7.773133881454438827e-06,7.898507008574671902e-06 +0.000000000000000000e+00,1.272179185512068112e-07,2.544358371024136225e-07,3.816537556536204337e-07,5.088716742048272449e-07,6.360895927560340562e-07,7.633075113072408674e-07,8.905254298584476787e-07,1.017743348409654490e-06,1.144961266960861407e-06,1.272179185512068324e-06,1.399397104063275241e-06,1.526615022614482158e-06,1.653832941165689075e-06,1.781050859716895993e-06,1.908268778268102910e-06,2.035486696819309827e-06,2.162704615370516744e-06,2.289922533921723661e-06,2.417140452472930578e-06,2.544358371024137495e-06,2.671576289575344412e-06,2.798794208126551330e-06,2.926012126677758247e-06,3.053230045228965164e-06,3.180447963780172081e-06,3.307665882331378998e-06,3.434883800882585915e-06,3.562101719433792832e-06,3.689319637984999749e-06,3.816537556536206666e-06,3.943755475087413584e-06,4.070973393638620501e-06,4.198191312189827418e-06,4.325409230741034335e-06,4.452627149292241252e-06,4.579845067843448169e-06,4.707062986394655086e-06,4.834280904945862003e-06,4.961498823497068920e-06,5.088716742048275838e-06,5.215934660599482755e-06,5.343152579150689672e-06,5.470370497701896589e-06,5.597588416253103506e-06,5.724806334804310423e-06,5.852024253355517340e-06,5.979242171906724257e-06,6.106460090457931175e-06,6.233678009009138092e-06,6.360895927560345009e-06,6.488113846111551926e-06,6.615331764662758843e-06,6.742549683213965760e-06,6.869767601765172677e-06,6.996985520316379594e-06,7.124203438867586511e-06,7.251421357418793429e-06,7.378639275970000346e-06,7.505857194521207263e-06,7.633075113072415027e-06,7.760293031623622791e-06,7.887510950174830555e-06,8.014728868726038319e-06 +0.000000000000000000e+00,1.253200895782523913e-07,2.506401791565047826e-07,3.759602687347572004e-07,5.012803583130096712e-07,6.266004478912621419e-07,7.519205374695146126e-07,8.772406270477670834e-07,1.002560716626019554e-06,1.127880806204272025e-06,1.253200895782524496e-06,1.378520985360776966e-06,1.503841074939029437e-06,1.629161164517281908e-06,1.754481254095534378e-06,1.879801343673786849e-06,2.005121433252039532e-06,2.130441522830292214e-06,2.255761612408544897e-06,2.381081701986797579e-06,2.506401791565050262e-06,2.631721881143302944e-06,2.757041970721555627e-06,2.882362060299808309e-06,3.007682149878060992e-06,3.133002239456313674e-06,3.258322329034566357e-06,3.383642418612819039e-06,3.508962508191071722e-06,3.634282597769324404e-06,3.759602687347577087e-06,3.884922776925830193e-06,4.010242866504083299e-06,4.135562956082336405e-06,4.260883045660589511e-06,4.386203135238842617e-06,4.511523224817095723e-06,4.636843314395348829e-06,4.762163403973601935e-06,4.887483493551855041e-06,5.012803583130108147e-06,5.138123672708361253e-06,5.263443762286614359e-06,5.388763851864867465e-06,5.514083941443120571e-06,5.639404031021373677e-06,5.764724120599626783e-06,5.890044210177879889e-06,6.015364299756132995e-06,6.140684389334386101e-06,6.266004478912639207e-06,6.391324568490892313e-06,6.516644658069145419e-06,6.641964747647398525e-06,6.767284837225651631e-06,6.892604926803904737e-06,7.017925016382157843e-06,7.143245105960410949e-06,7.268565195538664055e-06,7.393885285116917161e-06,7.519205374695170267e-06,7.644525464273423373e-06,7.769845553851677326e-06,7.895165643429931279e-06 +0.000000000000000000e+00,1.253731271202314344e-07,2.507462542404628689e-07,3.761193813606943033e-07,5.014925084809257378e-07,6.268656356011571193e-07,7.522387627213885008e-07,8.776118898416198822e-07,1.002985016961851264e-06,1.128358144082082645e-06,1.253731271202314027e-06,1.379104398322545408e-06,1.504477525442776790e-06,1.629850652563008171e-06,1.755223779683239553e-06,1.880596906803470934e-06,2.005970033923702104e-06,2.131343161043933485e-06,2.256716288164164867e-06,2.382089415284396248e-06,2.507462542404627630e-06,2.632835669524859011e-06,2.758208796645090393e-06,2.883581923765321774e-06,3.008955050885553156e-06,3.134328178005784537e-06,3.259701305126015919e-06,3.385074432246247300e-06,3.510447559366478682e-06,3.635820686486710063e-06,3.761193813606941445e-06,3.886566940727172826e-06,4.011940067847404208e-06,4.137313194967635589e-06,4.262686322087866971e-06,4.388059449208098352e-06,4.513432576328329734e-06,4.638805703448561115e-06,4.764178830568792497e-06,4.889551957689023878e-06,5.014925084809255260e-06,5.140298211929486641e-06,5.265671339049718023e-06,5.391044466169949404e-06,5.516417593290180786e-06,5.641790720410412167e-06,5.767163847530643549e-06,5.892536974650874930e-06,6.017910101771106312e-06,6.143283228891337693e-06,6.268656356011569075e-06,6.394029483131800456e-06,6.519402610252031838e-06,6.644775737372263219e-06,6.770148864492494601e-06,6.895521991612725982e-06,7.020895118732957364e-06,7.146268245853188745e-06,7.271641372973420127e-06,7.397014500093651508e-06,7.522387627213882890e-06,7.647760754334114271e-06,7.773133881454345653e-06,7.898507008574577034e-06 +0.000000000000000000e+00,1.312071759407742070e-07,2.624143518815484141e-07,3.936215278223226476e-07,5.248287037630969340e-07,6.560358797038712205e-07,7.872430556446455069e-07,9.184502315854197934e-07,1.049657407526194080e-06,1.180864583466968366e-06,1.312071759407742653e-06,1.443278935348516939e-06,1.574486111289291226e-06,1.705693287230065512e-06,1.836900463170839798e-06,1.968107639111614085e-06,2.099314815052388583e-06,2.230521990993163081e-06,2.361729166933937580e-06,2.492936342874712078e-06,2.624143518815486576e-06,2.755350694756261074e-06,2.886557870697035572e-06,3.017765046637810071e-06,3.148972222578584569e-06,3.280179398519359067e-06,3.411386574460133565e-06,3.542593750400908063e-06,3.673800926341682562e-06,3.805008102282457060e-06,3.936215278223231558e-06,4.067422454164005633e-06,4.198629630104779707e-06,4.329836806045553782e-06,4.461043981986327857e-06,4.592251157927101931e-06,4.723458333867876006e-06,4.854665509808650081e-06,4.985872685749424156e-06,5.117079861690198230e-06,5.248287037630972305e-06,5.379494213571746380e-06,5.510701389512520454e-06,5.641908565453294529e-06,5.773115741394068604e-06,5.904322917334842678e-06,6.035530093275616753e-06,6.166737269216390828e-06,6.297944445157164902e-06,6.429151621097938977e-06,6.560358797038713052e-06,6.691565972979487126e-06,6.822773148920261201e-06,6.953980324861035276e-06,7.085187500801809351e-06,7.216394676742583425e-06,7.347601852683357500e-06,7.478809028624131575e-06,7.610016204564905649e-06,7.741223380505679724e-06,7.872430556446454646e-06,8.003637732387229567e-06,8.134844908328004489e-06,8.266052084268779411e-06 +0.000000000000000000e+00,1.291832720361479848e-07,2.583665440722959696e-07,3.875498161084439544e-07,5.167330881445919392e-07,6.459163601807399769e-07,7.750996322168880146e-07,9.042829042530360524e-07,1.033466176289184090e-06,1.162649448325332128e-06,1.291832720361480166e-06,1.421015992397628203e-06,1.550199264433776241e-06,1.679382536469924279e-06,1.808565808506072317e-06,1.937749080542220354e-06,2.066932352578368604e-06,2.196115624614516853e-06,2.325298896650665103e-06,2.454482168686813352e-06,2.583665440722961602e-06,2.712848712759109851e-06,2.842031984795258101e-06,2.971215256831406350e-06,3.100398528867554600e-06,3.229581800903702849e-06,3.358765072939851099e-06,3.487948344975999348e-06,3.617131617012147598e-06,3.746314889048295847e-06,3.875498161084444097e-06,4.004681433120592770e-06,4.133864705156741443e-06,4.263047977192890116e-06,4.392231249229038789e-06,4.521414521265187462e-06,4.650597793301336135e-06,4.779781065337484808e-06,4.908964337373633481e-06,5.038147609409782154e-06,5.167330881445930827e-06,5.296514153482079500e-06,5.425697425518228173e-06,5.554880697554376846e-06,5.684063969590525519e-06,5.813247241626674192e-06,5.942430513662822865e-06,6.071613785698971538e-06,6.200797057735120211e-06,6.329980329771268884e-06,6.459163601807417557e-06,6.588346873843566230e-06,6.717530145879714903e-06,6.846713417915863576e-06,6.975896689952012249e-06,7.105079961988160922e-06,7.234263234024309595e-06,7.363446506060458268e-06,7.492629778096606941e-06,7.621813050132755614e-06,7.750996322168903440e-06,7.880179594205051266e-06,8.009362866241199092e-06,8.138546138277346918e-06 +0.000000000000000000e+00,1.295624490918455228e-07,2.591248981836910455e-07,3.886873472755365683e-07,5.182497963673820911e-07,6.478122454592276139e-07,7.773746945510731366e-07,9.069371436429186594e-07,1.036499592734764182e-06,1.166062041826609705e-06,1.295624490918455228e-06,1.425186940010300751e-06,1.554749389102146273e-06,1.684311838193991796e-06,1.813874287285837319e-06,1.943436736377682842e-06,2.072999185469528364e-06,2.202561634561373887e-06,2.332124083653219410e-06,2.461686532745064933e-06,2.591248981836910455e-06,2.720811430928755978e-06,2.850373880020601501e-06,2.979936329112447024e-06,3.109498778204292547e-06,3.239061227296138069e-06,3.368623676387983592e-06,3.498186125479829115e-06,3.627748574571674638e-06,3.757311023663520160e-06,3.886873472755365683e-06,4.016435921847211206e-06,4.145998370939056729e-06,4.275560820030902252e-06,4.405123269122747774e-06,4.534685718214593297e-06,4.664248167306438820e-06,4.793810616398284343e-06,4.923373065490129865e-06,5.052935514581975388e-06,5.182497963673820911e-06,5.312060412765666434e-06,5.441622861857511957e-06,5.571185310949357479e-06,5.700747760041203002e-06,5.830310209133048525e-06,5.959872658224894048e-06,6.089435107316739570e-06,6.218997556408585093e-06,6.348560005500430616e-06,6.478122454592276139e-06,6.607684903684121662e-06,6.737247352775967184e-06,6.866809801867812707e-06,6.996372250959658230e-06,7.125934700051503753e-06,7.255497149143349275e-06,7.385059598235194798e-06,7.514622047327040321e-06,7.644184496418884997e-06,7.773746945510729672e-06,7.903309394602574348e-06,8.032871843694419024e-06,8.162434292786263700e-06 +0.000000000000000000e+00,1.312071759407732806e-07,2.624143518815465612e-07,3.936215278223198418e-07,5.248287037630931224e-07,6.560358797038663500e-07,7.872430556446395777e-07,9.184502315854128053e-07,1.049657407526186033e-06,1.180864583466959261e-06,1.312071759407732488e-06,1.443278935348505716e-06,1.574486111289278944e-06,1.705693287230052171e-06,1.836900463170825399e-06,1.968107639111598415e-06,2.099314815052371642e-06,2.230521990993144870e-06,2.361729166933918098e-06,2.492936342874691325e-06,2.624143518815464553e-06,2.755350694756237781e-06,2.886557870697011008e-06,3.017765046637784236e-06,3.148972222578557464e-06,3.280179398519330691e-06,3.411386574460103919e-06,3.542593750400877147e-06,3.673800926341650374e-06,3.805008102282423602e-06,3.936215278223196830e-06,4.067422454163970057e-06,4.198629630104743285e-06,4.329836806045516513e-06,4.461043981986289740e-06,4.592251157927062968e-06,4.723458333867836196e-06,4.854665509808609423e-06,4.985872685749382651e-06,5.117079861690155879e-06,5.248287037630929106e-06,5.379494213571702334e-06,5.510701389512475562e-06,5.641908565453248789e-06,5.773115741394022017e-06,5.904322917334795244e-06,6.035530093275568472e-06,6.166737269216341700e-06,6.297944445157114927e-06,6.429151621097888155e-06,6.560358797038661383e-06,6.691565972979434610e-06,6.822773148920207838e-06,6.953980324860981066e-06,7.085187500801754293e-06,7.216394676742527521e-06,7.347601852683300749e-06,7.478809028624073976e-06,7.610016204564847204e-06,7.741223380505620432e-06,7.872430556446393659e-06,8.003637732387166887e-06,8.134844908327940115e-06,8.266052084268713342e-06 +0.000000000000000000e+00,1.291832720361456290e-07,2.583665440722912580e-07,3.875498161084369134e-07,5.167330881445826218e-07,6.459163601807283302e-07,7.750996322168740386e-07,9.042829042530197470e-07,1.033466176289165455e-06,1.162649448325311164e-06,1.291832720361456872e-06,1.421015992397602581e-06,1.550199264433748289e-06,1.679382536469893997e-06,1.808565808506039706e-06,1.937749080542185202e-06,2.066932352578330487e-06,2.196115624614475772e-06,2.325298896650621057e-06,2.454482168686766342e-06,2.583665440722911627e-06,2.712848712759056912e-06,2.842031984795202197e-06,2.971215256831347481e-06,3.100398528867492766e-06,3.229581800903638051e-06,3.358765072939783336e-06,3.487948344975928621e-06,3.617131617012073906e-06,3.746314889048219191e-06,3.875498161084364476e-06,4.004681433120509760e-06,4.133864705156655045e-06,4.263047977192800330e-06,4.392231249228945615e-06,4.521414521265090900e-06,4.650597793301236185e-06,4.779781065337381470e-06,4.908964337373526755e-06,5.038147609409672039e-06,5.167330881445817324e-06,5.296514153481962609e-06,5.425697425518107894e-06,5.554880697554253179e-06,5.684063969590398464e-06,5.813247241626543749e-06,5.942430513662689034e-06,6.071613785698834318e-06,6.200797057734979603e-06,6.329980329771124888e-06,6.459163601807270173e-06,6.588346873843415458e-06,6.717530145879560743e-06,6.846713417915706028e-06,6.975896689951851313e-06,7.105079961987996597e-06,7.234263234024141882e-06,7.363446506060287167e-06,7.492629778096432452e-06,7.621813050132577737e-06,7.750996322168723869e-06,7.880179594204870001e-06,8.009362866241016133e-06,8.138546138277162265e-06 +0.000000000000000000e+00,1.295624490918469786e-07,2.591248981836939572e-07,3.886873472755409094e-07,5.182497963673878086e-07,6.478122454592347078e-07,7.773746945510816070e-07,9.069371436429285062e-07,1.036499592734775405e-06,1.166062041826622410e-06,1.295624490918469416e-06,1.425186940010316421e-06,1.554749389102163426e-06,1.684311838194010431e-06,1.813874287285857436e-06,1.943436736377704441e-06,2.072999185469551234e-06,2.202561634561398028e-06,2.332124083653244821e-06,2.461686532745091614e-06,2.591248981836938408e-06,2.720811430928785201e-06,2.850373880020631994e-06,2.979936329112478788e-06,3.109498778204325581e-06,3.239061227296172374e-06,3.368623676388019168e-06,3.498186125479865961e-06,3.627748574571712754e-06,3.757311023663559547e-06,3.886873472755406341e-06,4.016435921847252711e-06,4.145998370939099080e-06,4.275560820030945450e-06,4.405123269122791820e-06,4.534685718214638190e-06,4.664248167306484560e-06,4.793810616398330929e-06,4.923373065490177299e-06,5.052935514582023669e-06,5.182497963673870039e-06,5.312060412765716409e-06,5.441622861857562779e-06,5.571185310949409148e-06,5.700747760041255518e-06,5.830310209133101888e-06,5.959872658224948258e-06,6.089435107316794628e-06,6.218997556408640997e-06,6.348560005500487367e-06,6.478122454592333737e-06,6.607684903684180107e-06,6.737247352776026477e-06,6.866809801867872846e-06,6.996372250959719216e-06,7.125934700051565586e-06,7.255497149143411956e-06,7.385059598235258326e-06,7.514622047327104695e-06,7.644184496418951065e-06,7.773746945510797435e-06,7.903309394602643805e-06,8.032871843694490175e-06,8.162434292786336544e-06 +0.000000000000000000e+00,1.353916780176054431e-07,2.707833560352108861e-07,4.061750340528163027e-07,5.415667120704216664e-07,6.769583900880270300e-07,8.123500681056323937e-07,9.477417461232377574e-07,1.083133424140843121e-06,1.218525102158448591e-06,1.353916780176054060e-06,1.489308458193659530e-06,1.624700136211264999e-06,1.760091814228870469e-06,1.895483492246475938e-06,2.030875170264081408e-06,2.166266848281686666e-06,2.301658526299291923e-06,2.437050204316897181e-06,2.572441882334502439e-06,2.707833560352107697e-06,2.843225238369712954e-06,2.978616916387318212e-06,3.114008594404923470e-06,3.249400272422528728e-06,3.384791950440133986e-06,3.520183628457739243e-06,3.655575306475344501e-06,3.790966984492949759e-06,3.926358662510555440e-06,4.061750340528161121e-06,4.197142018545766803e-06,4.332533696563372484e-06,4.467925374580978165e-06,4.603317052598583847e-06,4.738708730616189528e-06,4.874100408633795209e-06,5.009492086651400891e-06,5.144883764669006572e-06,5.280275442686612253e-06,5.415667120704217934e-06,5.551058798721823616e-06,5.686450476739429297e-06,5.821842154757034978e-06,5.957233832774640660e-06,6.092625510792246341e-06,6.228017188809852022e-06,6.363408866827457703e-06,6.498800544845063385e-06,6.634192222862669066e-06,6.769583900880274747e-06,6.904975578897880429e-06,7.040367256915486110e-06,7.175758934933091791e-06,7.311150612950697473e-06,7.446542290968303154e-06,7.581933968985908835e-06,7.717325647003514516e-06,7.852717325021121045e-06,7.988109003038727573e-06,8.123500681056334101e-06,8.258892359073940630e-06,8.394284037091547158e-06,8.529675715109153686e-06 +0.000000000000000000e+00,1.332775945998138286e-07,2.665551891996276573e-07,3.998327837994414859e-07,5.331103783992553145e-07,6.663879729990690902e-07,7.996655675988828659e-07,9.329431621986966416e-07,1.066220756798510417e-06,1.199498351398324193e-06,1.332775945998137969e-06,1.466053540597951744e-06,1.599331135197765520e-06,1.732608729797579296e-06,1.865886324397393071e-06,1.999163918997206847e-06,2.132441513597020411e-06,2.265719108196833975e-06,2.398996702796647539e-06,2.532274297396461103e-06,2.665551891996274667e-06,2.798829486596088231e-06,2.932107081195901795e-06,3.065384675795715359e-06,3.198662270395528923e-06,3.331939864995342486e-06,3.465217459595156050e-06,3.598495054194969614e-06,3.731772648794783178e-06,3.865050243394596742e-06,3.998327837994410306e-06,4.131605432594223870e-06,4.264883027194037434e-06,4.398160621793850998e-06,4.531438216393664562e-06,4.664715810993478126e-06,4.797993405593291690e-06,4.931271000193105254e-06,5.064548594792918818e-06,5.197826189392732381e-06,5.331103783992545945e-06,5.464381378592359509e-06,5.597658973192173073e-06,5.730936567791986637e-06,5.864214162391800201e-06,5.997491756991613765e-06,6.130769351591427329e-06,6.264046946191240893e-06,6.397324540791054457e-06,6.530602135390868021e-06,6.663879729990681585e-06,6.797157324590495149e-06,6.930434919190308713e-06,7.063712513790122277e-06,7.196990108389935840e-06,7.330267702989749404e-06,7.463545297589562968e-06,7.596822892189376532e-06,7.730100486789190096e-06,7.863378081389003660e-06,7.996655675988817224e-06,8.129933270588630788e-06,8.263210865188444352e-06,8.396488459788257916e-06 +0.000000000000000000e+00,1.339344448600513500e-07,2.678688897201027000e-07,4.018033345801540765e-07,5.357377794402055059e-07,6.696722243002569353e-07,8.036066691603083647e-07,9.375411140203597942e-07,1.071475558880411224e-06,1.205410003740462547e-06,1.339344448600513871e-06,1.473278893460565194e-06,1.607213338320616518e-06,1.741147783180667841e-06,1.875082228040719165e-06,2.009016672900770488e-06,2.142951117760822024e-06,2.276885562620873559e-06,2.410820007480925094e-06,2.544754452340976630e-06,2.678688897201028165e-06,2.812623342061079700e-06,2.946557786921131235e-06,3.080492231781182771e-06,3.214426676641234306e-06,3.348361121501285841e-06,3.482295566361337377e-06,3.616230011221388912e-06,3.750164456081440447e-06,3.884098900941491983e-06,4.018033345801543518e-06,4.151967790661595053e-06,4.285902235521646588e-06,4.419836680381698124e-06,4.553771125241749659e-06,4.687705570101801194e-06,4.821640014961852730e-06,4.955574459821904265e-06,5.089508904681955800e-06,5.223443349542007335e-06,5.357377794402058871e-06,5.491312239262110406e-06,5.625246684122161941e-06,5.759181128982213477e-06,5.893115573842265012e-06,6.027050018702316547e-06,6.160984463562368083e-06,6.294918908422419618e-06,6.428853353282471153e-06,6.562787798142522688e-06,6.696722243002574224e-06,6.830656687862625759e-06,6.964591132722677294e-06,7.098525577582728830e-06,7.232460022442780365e-06,7.366394467302831900e-06,7.500328912162883436e-06,7.634263357022934971e-06,7.768197801882987353e-06,7.902132246743039735e-06,8.036066691603092118e-06,8.170001136463144500e-06,8.303935581323196882e-06,8.437870026183249265e-06 +0.000000000000000000e+00,1.353916780176078783e-07,2.707833560352157566e-07,4.061750340528236084e-07,5.415667120704314073e-07,6.769583900880392061e-07,8.123500681056470050e-07,9.477417461232548039e-07,1.083133424140862603e-06,1.218525102158470402e-06,1.353916780176078201e-06,1.489308458193685999e-06,1.624700136211293798e-06,1.760091814228901597e-06,1.895483492246509396e-06,2.030875170264117407e-06,2.166266848281725629e-06,2.301658526299333851e-06,2.437050204316942074e-06,2.572441882334550296e-06,2.707833560352158519e-06,2.843225238369766741e-06,2.978616916387374963e-06,3.114008594404983186e-06,3.249400272422591408e-06,3.384791950440199631e-06,3.520183628457807853e-06,3.655575306475416075e-06,3.790966984493024298e-06,3.926358662510632520e-06,4.061750340528240743e-06,4.197142018545848965e-06,4.332533696563457187e-06,4.467925374581065410e-06,4.603317052598673632e-06,4.738708730616281855e-06,4.874100408633890077e-06,5.009492086651498299e-06,5.144883764669106522e-06,5.280275442686714744e-06,5.415667120704322967e-06,5.551058798721931189e-06,5.686450476739539411e-06,5.821842154757147634e-06,5.957233832774755856e-06,6.092625510792364078e-06,6.228017188809972301e-06,6.363408866827580523e-06,6.498800544845188746e-06,6.634192222862796968e-06,6.769583900880405190e-06,6.904975578898013413e-06,7.040367256915621635e-06,7.175758934933229858e-06,7.311150612950838080e-06,7.446542290968446302e-06,7.581933968986054525e-06,7.717325647003663594e-06,7.852717325021273511e-06,7.988109003038883427e-06,8.123500681056493344e-06,8.258892359074103260e-06,8.394284037091713177e-06,8.529675715109323093e-06 +0.000000000000000000e+00,1.332775945998147815e-07,2.665551891996295631e-07,3.998327837994443446e-07,5.331103783992591262e-07,6.663879729990739607e-07,7.996655675988887951e-07,9.329431621987036296e-07,1.066220756798518464e-06,1.199498351398333299e-06,1.332775945998148133e-06,1.466053540597962968e-06,1.599331135197777802e-06,1.732608729797592637e-06,1.865886324397407471e-06,1.999163918997222094e-06,2.132441513597036505e-06,2.265719108196850916e-06,2.398996702796665327e-06,2.532274297396479738e-06,2.665551891996294149e-06,2.798829486596108560e-06,2.932107081195922970e-06,3.065384675795737381e-06,3.198662270395551792e-06,3.331939864995366203e-06,3.465217459595180614e-06,3.598495054194995025e-06,3.731772648794809436e-06,3.865050243394623847e-06,3.998327837994438258e-06,4.131605432594252669e-06,4.264883027194067080e-06,4.398160621793881491e-06,4.531438216393695902e-06,4.664715810993510313e-06,4.797993405593324724e-06,4.931271000193139135e-06,5.064548594792953546e-06,5.197826189392767957e-06,5.331103783992582368e-06,5.464381378592396779e-06,5.597658973192211190e-06,5.730936567792025601e-06,5.864214162391840012e-06,5.997491756991654423e-06,6.130769351591468834e-06,6.264046946191283245e-06,6.397324540791097656e-06,6.530602135390912067e-06,6.663879729990726477e-06,6.797157324590540888e-06,6.930434919190355299e-06,7.063712513790169710e-06,7.196990108389984121e-06,7.330267702989798532e-06,7.463545297589612943e-06,7.596822892189427354e-06,7.730100486789240918e-06,7.863378081389054482e-06,7.996655675988868046e-06,8.129933270588681610e-06,8.263210865188495174e-06,8.396488459788308738e-06 +0.000000000000000000e+00,1.339344448600564851e-07,2.678688897201129703e-07,4.018033345801694290e-07,5.357377794402258347e-07,6.696722243002822404e-07,8.036066691603386462e-07,9.375411140203950519e-07,1.071475558880451458e-06,1.205410003740507863e-06,1.339344448600564269e-06,1.473278893460620675e-06,1.607213338320677081e-06,1.741147783180733486e-06,1.875082228040789892e-06,2.009016672900846298e-06,2.142951117760902492e-06,2.276885562620958686e-06,2.410820007481014880e-06,2.544754452341071074e-06,2.678688897201127268e-06,2.812623342061183462e-06,2.946557786921239656e-06,3.080492231781295850e-06,3.214426676641352044e-06,3.348361121501408238e-06,3.482295566361464432e-06,3.616230011221520626e-06,3.750164456081576820e-06,3.884098900941632590e-06,4.018033345801688360e-06,4.151967790661744131e-06,4.285902235521799901e-06,4.419836680381855672e-06,4.553771125241911442e-06,4.687705570101967213e-06,4.821640014962022983e-06,4.955574459822078754e-06,5.089508904682134524e-06,5.223443349542190295e-06,5.357377794402246065e-06,5.491312239262301836e-06,5.625246684122357606e-06,5.759181128982413376e-06,5.893115573842469147e-06,6.027050018702524917e-06,6.160984463562580688e-06,6.294918908422636458e-06,6.428853353282692229e-06,6.562787798142747999e-06,6.696722243002803770e-06,6.830656687862859540e-06,6.964591132722915311e-06,7.098525577582971081e-06,7.232460022443026852e-06,7.366394467303082622e-06,7.500328912163138392e-06,7.634263357023194163e-06,7.768197801883249933e-06,7.902132246743305704e-06,8.036066691603361474e-06,8.170001136463417245e-06,8.303935581323473015e-06,8.437870026183528786e-06 +0.000000000000000000e+00,1.397280118628169620e-07,2.794560237256339239e-07,4.191840355884508859e-07,5.589120474512678478e-07,6.986400593140848098e-07,8.383680711769017718e-07,9.780960830397187337e-07,1.117824094902535696e-06,1.257552106765352658e-06,1.397280118628169620e-06,1.537008130490986582e-06,1.676736142353803544e-06,1.816464154216620505e-06,1.956192166079437467e-06,2.095920177942254218e-06,2.235648189805070968e-06,2.375376201667887718e-06,2.515104213530704468e-06,2.654832225393521218e-06,2.794560237256337969e-06,2.934288249119154719e-06,3.074016260981971469e-06,3.213744272844788219e-06,3.353472284707604969e-06,3.493200296570421720e-06,3.632928308433238470e-06,3.772656320296055220e-06,3.912384332158872394e-06,4.052112344021689568e-06,4.191840355884506741e-06,4.331568367747323915e-06,4.471296379610141089e-06,4.611024391472958262e-06,4.750752403335775436e-06,4.890480415198592610e-06,5.030208427061409784e-06,5.169936438924226957e-06,5.309664450787044131e-06,5.449392462649861305e-06,5.589120474512678478e-06,5.728848486375495652e-06,5.868576498238312826e-06,6.008304510101130000e-06,6.148032521963947173e-06,6.287760533826764347e-06,6.427488545689581521e-06,6.567216557552398694e-06,6.706944569415215868e-06,6.846672581278033042e-06,6.986400593140850216e-06,7.126128605003667389e-06,7.265856616866484563e-06,7.405584628729301737e-06,7.545312640592118910e-06,7.685040652454935237e-06,7.824768664317751564e-06,7.964496676180567891e-06,8.104224688043384217e-06,8.243952699906200544e-06,8.383680711769016871e-06,8.523408723631833197e-06,8.663136735494649524e-06,8.802864747357465851e-06 +0.000000000000000000e+00,1.375418912182925435e-07,2.750837824365850870e-07,4.126256736548776305e-07,5.501675648731701739e-07,6.877094560914627174e-07,8.252513473097552609e-07,9.627932385280476985e-07,1.100335129746340136e-06,1.237877020964632574e-06,1.375418912182925011e-06,1.512960803401217449e-06,1.650502694619509887e-06,1.788044585837802324e-06,1.925586477056094550e-06,2.063128368274386776e-06,2.200670259492679002e-06,2.338212150710971228e-06,2.475754041929263453e-06,2.613295933147555679e-06,2.750837824365847905e-06,2.888379715584140131e-06,3.025921606802432357e-06,3.163463498020724583e-06,3.301005389239016808e-06,3.438547280457309034e-06,3.576089171675601260e-06,3.713631062893893486e-06,3.851172954112185712e-06,3.988714845330478361e-06,4.126256736548771011e-06,4.263798627767063660e-06,4.401340518985356309e-06,4.538882410203648959e-06,4.676424301421941608e-06,4.813966192640234257e-06,4.951508083858526907e-06,5.089049975076819556e-06,5.226591866295112205e-06,5.364133757513404855e-06,5.501675648731697504e-06,5.639217539949990154e-06,5.776759431168282803e-06,5.914301322386575452e-06,6.051843213604868102e-06,6.189385104823160751e-06,6.326926996041453400e-06,6.464468887259746050e-06,6.602010778478038699e-06,6.739552669696331348e-06,6.877094560914623998e-06,7.014636452132916647e-06,7.152178343351209297e-06,7.289720234569501946e-06,7.427262125787794595e-06,7.564804017006087245e-06,7.702345908224379894e-06,7.839887799442672543e-06,7.977429690660965193e-06,8.114971581879257842e-06,8.252513473097550491e-06,8.390055364315843141e-06,8.527597255534135790e-06,8.665139146752428440e-06 +0.000000000000000000e+00,1.384672831360044136e-07,2.769345662720088271e-07,4.154018494080132407e-07,5.538691325440176542e-07,6.923364156800220678e-07,8.308036988160264813e-07,9.692709819520310008e-07,1.107738265088035520e-06,1.246205548224040040e-06,1.384672831360044559e-06,1.523140114496049078e-06,1.661607397632053598e-06,1.800074680768058117e-06,1.938541963904062849e-06,2.077009247040067580e-06,2.215476530176072311e-06,2.353943813312077042e-06,2.492411096448081773e-06,2.630878379584086504e-06,2.769345662720091236e-06,2.907812945856095967e-06,3.046280228992100698e-06,3.184747512128105429e-06,3.323214795264110160e-06,3.461682078400114892e-06,3.600149361536119623e-06,3.738616644672124354e-06,3.877083927808129085e-06,4.015551210944133393e-06,4.154018494080137701e-06,4.292485777216142008e-06,4.430953060352146316e-06,4.569420343488150624e-06,4.707887626624154931e-06,4.846354909760159239e-06,4.984822192896163547e-06,5.123289476032167854e-06,5.261756759168172162e-06,5.400224042304176470e-06,5.538691325440180777e-06,5.677158608576185085e-06,5.815625891712189393e-06,5.954093174848193700e-06,6.092560457984198008e-06,6.231027741120202316e-06,6.369495024256206623e-06,6.507962307392210931e-06,6.646429590528215239e-06,6.784896873664219546e-06,6.923364156800223854e-06,7.061831439936228162e-06,7.200298723072232469e-06,7.338766006208236777e-06,7.477233289344241085e-06,7.615700572480245392e-06,7.754167855616249700e-06,7.892635138752254008e-06,8.031102421888258315e-06,8.169569705024262623e-06,8.308036988160266931e-06,8.446504271296271238e-06,8.584971554432275546e-06,8.723438837568279854e-06 +0.000000000000000000e+00,1.397280118628241353e-07,2.794560237256482705e-07,4.191840355884723793e-07,5.589120474512964352e-07,6.986400593141204911e-07,8.383680711769445469e-07,9.780960830397684969e-07,1.117824094902592447e-06,1.257552106765416397e-06,1.397280118628240347e-06,1.537008130491064297e-06,1.676736142353888247e-06,1.816464154216712197e-06,1.956192166079536147e-06,2.095920177942360097e-06,2.235648189805184047e-06,2.375376201668007997e-06,2.515104213530831947e-06,2.654832225393655897e-06,2.794560237256479847e-06,2.934288249119303797e-06,3.074016260982127747e-06,3.213744272844951697e-06,3.353472284707775647e-06,3.493200296570599597e-06,3.632928308433423547e-06,3.772656320296247497e-06,3.912384332159071447e-06,4.052112344021895397e-06,4.191840355884719347e-06,4.331568367747543296e-06,4.471296379610367246e-06,4.611024391473191196e-06,4.750752403336015146e-06,4.890480415198839096e-06,5.030208427061663046e-06,5.169936438924486996e-06,5.309664450787310946e-06,5.449392462650134896e-06,5.589120474512958846e-06,5.728848486375782796e-06,5.868576498238606746e-06,6.008304510101430696e-06,6.148032521964254646e-06,6.287760533827078596e-06,6.427488545689902546e-06,6.567216557552726496e-06,6.706944569415550446e-06,6.846672581278374396e-06,6.986400593141198346e-06,7.126128605004022296e-06,7.265856616866846246e-06,7.405584628729670196e-06,7.545312640592494146e-06,7.685040652455318096e-06,7.824768664318141199e-06,7.964496676180964302e-06,8.104224688043787405e-06,8.243952699906610508e-06,8.383680711769433611e-06,8.523408723632256714e-06,8.663136735495079817e-06,8.802864747357902920e-06 +0.000000000000000000e+00,1.375418912182974404e-07,2.750837824365948808e-07,4.126256736548923476e-07,5.501675648731898675e-07,6.877094560914873873e-07,8.252513473097849071e-07,9.627932385280824269e-07,1.100335129746379947e-06,1.237877020964677466e-06,1.375418912182974986e-06,1.512960803401272506e-06,1.650502694619570026e-06,1.788044585837867546e-06,1.925586477056164854e-06,2.063128368274462162e-06,2.200670259492759470e-06,2.338212150711056778e-06,2.475754041929354086e-06,2.613295933147651394e-06,2.750837824365948702e-06,2.888379715584246010e-06,3.025921606802543318e-06,3.163463498020840626e-06,3.301005389239137934e-06,3.438547280457435242e-06,3.576089171675732550e-06,3.713631062894029858e-06,3.851172954112327166e-06,3.988714845330624051e-06,4.126256736548920935e-06,4.263798627767217820e-06,4.401340518985514704e-06,4.538882410203811589e-06,4.676424301422108474e-06,4.813966192640405358e-06,4.951508083858702243e-06,5.089049975076999127e-06,5.226591866295296012e-06,5.364133757513592896e-06,5.501675648731889781e-06,5.639217539950186665e-06,5.776759431168483550e-06,5.914301322386780434e-06,6.051843213605077319e-06,6.189385104823374203e-06,6.326926996041671088e-06,6.464468887259967972e-06,6.602010778478264857e-06,6.739552669696561741e-06,6.877094560914858626e-06,7.014636452133155510e-06,7.152178343351452395e-06,7.289720234569749280e-06,7.427262125788046164e-06,7.564804017006343049e-06,7.702345908224639086e-06,7.839887799442935124e-06,7.977429690661231161e-06,8.114971581879527199e-06,8.252513473097823236e-06,8.390055364316119274e-06,8.527597255534415311e-06,8.665139146752711349e-06 +0.000000000000000000e+00,1.384672831360121427e-07,2.769345662720242855e-07,4.154018494080364282e-07,5.538691325440485709e-07,6.923364156800607136e-07,8.308036988160728564e-07,9.692709819520849991e-07,1.107738265088097142e-06,1.246205548224109285e-06,1.384672831360121427e-06,1.523140114496133570e-06,1.661607397632145713e-06,1.800074680768157855e-06,1.938541963904169998e-06,2.077009247040182353e-06,2.215476530176194707e-06,2.353943813312207062e-06,2.492411096448219416e-06,2.630878379584231771e-06,2.769345662720244125e-06,2.907812945856256480e-06,3.046280228992268834e-06,3.184747512128281189e-06,3.323214795264293543e-06,3.461682078400305898e-06,3.600149361536318252e-06,3.738616644672330607e-06,3.877083927808342538e-06,4.015551210944354468e-06,4.154018494080366399e-06,4.292485777216378330e-06,4.430953060352390261e-06,4.569420343488402192e-06,4.707887626624414123e-06,4.846354909760426054e-06,4.984822192896437985e-06,5.123289476032449916e-06,5.261756759168461847e-06,5.400224042304473778e-06,5.538691325440485709e-06,5.677158608576497640e-06,5.815625891712509571e-06,5.954093174848521502e-06,6.092560457984533433e-06,6.231027741120545364e-06,6.369495024256557295e-06,6.507962307392569226e-06,6.646429590528581157e-06,6.784896873664593088e-06,6.923364156800605019e-06,7.061831439936616950e-06,7.200298723072628881e-06,7.338766006208640812e-06,7.477233289344652743e-06,7.615700572480664674e-06,7.754167855616676605e-06,7.892635138752689383e-06,8.031102421888702161e-06,8.169569705024714939e-06,8.308036988160727717e-06,8.446504271296740495e-06,8.584971554432753273e-06,8.723438837568766051e-06 +0.000000000000000000e+00,1.210602769046490502e-07,2.421205538092981004e-07,3.631808307139471241e-07,4.842411076185960949e-07,6.053013845232450657e-07,7.263616614278940365e-07,8.474219383325430073e-07,9.684822152371919781e-07,1.089542492141841055e-06,1.210602769046490131e-06,1.331663045951139208e-06,1.452723322855788285e-06,1.573783599760437361e-06,1.694843876665086438e-06,1.815904153569735515e-06,1.936964430474384380e-06,2.058024707379033245e-06,2.179084984283682109e-06,2.300145261188330974e-06,2.421205538092979839e-06,2.542265814997628704e-06,2.663326091902277569e-06,2.784386368806926434e-06,2.905446645711575299e-06,3.026506922616224164e-06,3.147567199520873029e-06,3.268627476425521894e-06,3.389687753330170759e-06,3.510748030234819623e-06,3.631808307139468488e-06,3.752868584044117353e-06,3.873928860948766218e-06,3.994989137853415083e-06,4.116049414758063948e-06,4.237109691662712813e-06,4.358169968567361678e-06,4.479230245472010543e-06,4.600290522376659408e-06,4.721350799281308273e-06,4.842411076185957137e-06,4.963471353090606002e-06,5.084531629995254867e-06,5.205591906899903732e-06,5.326652183804552597e-06,5.447712460709201462e-06,5.568772737613850327e-06,5.689833014518499192e-06,5.810893291423148057e-06,5.931953568327796922e-06,6.053013845232445787e-06,6.174074122137094651e-06,6.295134399041743516e-06,6.416194675946392381e-06,6.537254952851041246e-06,6.658315229755690111e-06,6.779375506660338976e-06,6.900435783564987841e-06,7.021496060469636706e-06,7.142556337374285571e-06,7.263616614278934436e-06,7.384676891183583300e-06,7.505737168088232165e-06,7.626797444992881030e-06 +0.000000000000000000e+00,1.210336994454726433e-07,2.420673988909452867e-07,3.631010983364179036e-07,4.841347977818904675e-07,6.051684972273630314e-07,7.262021966728355954e-07,8.472358961183081593e-07,9.682695955637807232e-07,1.089303295009253287e-06,1.210336994454725851e-06,1.331370693900198415e-06,1.452404393345670979e-06,1.573438092791143543e-06,1.694471792236616107e-06,1.815505491682088671e-06,1.936539191127561023e-06,2.057572890573033163e-06,2.178606590018505304e-06,2.299640289463977444e-06,2.420673988909449585e-06,2.541707688354921725e-06,2.662741387800393865e-06,2.783775087245866006e-06,2.904808786691338146e-06,3.025842486136810287e-06,3.146876185582282427e-06,3.267909885027754568e-06,3.388943584473226708e-06,3.509977283918698848e-06,3.631010983364170989e-06,3.752044682809643129e-06,3.873078382255115270e-06,3.994112081700587410e-06,4.115145781146059551e-06,4.236179480591531691e-06,4.357213180037003831e-06,4.478246879482475972e-06,4.599280578927948112e-06,4.720314278373420253e-06,4.841347977818892393e-06,4.962381677264364533e-06,5.083415376709836674e-06,5.204449076155308814e-06,5.325482775600780955e-06,5.446516475046253095e-06,5.567550174491725236e-06,5.688583873937197376e-06,5.809617573382669516e-06,5.930651272828141657e-06,6.051684972273613797e-06,6.172718671719085938e-06,6.293752371164558078e-06,6.414786070610030218e-06,6.535819770055502359e-06,6.656853469500974499e-06,6.777887168946446640e-06,6.898920868391918780e-06,7.019954567837390921e-06,7.140988267282863061e-06,7.262021966728335201e-06,7.383055666173807342e-06,7.504089365619279482e-06,7.625123065064751623e-06 +0.000000000000000000e+00,1.208721004513133859e-07,2.417442009026267718e-07,3.626163013539401576e-07,4.834884018052535435e-07,6.043605022565668765e-07,7.252326027078802094e-07,8.461047031591935424e-07,9.669768036105068753e-07,1.087848904061820208e-06,1.208721004513133541e-06,1.329593104964446874e-06,1.450465205415760207e-06,1.571337305867073540e-06,1.692209406318386873e-06,1.813081506769700206e-06,1.933953607221013327e-06,2.054825707672326448e-06,2.175697808123639569e-06,2.296569908574952691e-06,2.417442009026265812e-06,2.538314109477578933e-06,2.659186209928892054e-06,2.780058310380205175e-06,2.900930410831518297e-06,3.021802511282831418e-06,3.142674611734144539e-06,3.263546712185457660e-06,3.384418812636770781e-06,3.505290913088083903e-06,3.626163013539397024e-06,3.747035113990710145e-06,3.867907214442023266e-06,3.988779314893336811e-06,4.109651415344650355e-06,4.230523515795963900e-06,4.351395616247277445e-06,4.472267716698590990e-06,4.593139817149904534e-06,4.714011917601218079e-06,4.834884018052531624e-06,4.955756118503845168e-06,5.076628218955158713e-06,5.197500319406472258e-06,5.318372419857785802e-06,5.439244520309099347e-06,5.560116620760412892e-06,5.680988721211726437e-06,5.801860821663039981e-06,5.922732922114353526e-06,6.043605022565667071e-06,6.164477123016980615e-06,6.285349223468294160e-06,6.406221323919607705e-06,6.527093424370921250e-06,6.647965524822234794e-06,6.768837625273548339e-06,6.889709725724861884e-06,7.010581826176175428e-06,7.131453926627488973e-06,7.252326027078802518e-06,7.373198127530116062e-06,7.494070227981429607e-06,7.614942328432743152e-06 +0.000000000000000000e+00,1.200398306369052756e-07,2.400796612738105513e-07,3.601194919107158269e-07,4.801593225476211025e-07,6.001991531845263252e-07,7.202389838214315479e-07,8.402788144583367706e-07,9.603186450952419933e-07,1.080358475732147216e-06,1.200398306369052439e-06,1.320438137005957661e-06,1.440477967642862884e-06,1.560517798279768107e-06,1.680557628916673329e-06,1.800597459553578552e-06,1.920637290190483563e-06,2.040677120827388362e-06,2.160716951464293161e-06,2.280756782101197961e-06,2.400796612738102760e-06,2.520836443375007559e-06,2.640876274011912358e-06,2.760916104648817157e-06,2.880955935285721956e-06,3.000995765922626756e-06,3.121035596559531555e-06,3.241075427196436354e-06,3.361115257833341153e-06,3.481155088470245952e-06,3.601194919107150751e-06,3.721234749744055551e-06,3.841274580380960350e-06,3.961314411017865149e-06,4.081354241654769948e-06,4.201394072291674747e-06,4.321433902928579546e-06,4.441473733565484346e-06,4.561513564202389145e-06,4.681553394839293944e-06,4.801593225476198743e-06,4.921633056113103542e-06,5.041672886750008341e-06,5.161712717386913141e-06,5.281752548023817940e-06,5.401792378660722739e-06,5.521832209297627538e-06,5.641872039934532337e-06,5.761911870571437137e-06,5.881951701208341936e-06,6.001991531845246735e-06,6.122031362482151534e-06,6.242071193119056333e-06,6.362111023755961132e-06,6.482150854392865932e-06,6.602190685029770731e-06,6.722230515666675530e-06,6.842270346303580329e-06,6.962310176940485128e-06,7.082350007577389927e-06,7.202389838214294727e-06,7.322429668851199526e-06,7.442469499488104325e-06,7.562509330125009124e-06 +0.000000000000000000e+00,1.210467743360724046e-07,2.420935486721448092e-07,3.631403230082171874e-07,4.841870973442895126e-07,6.052338716803618378e-07,7.262806460164341630e-07,8.473274203525064882e-07,9.683741946885788134e-07,1.089420969024651033e-06,1.210467743360723252e-06,1.331514517696795471e-06,1.452561292032867691e-06,1.573608066368939910e-06,1.694654840705012129e-06,1.815701615041084349e-06,1.936748389377156356e-06,2.057795163713228364e-06,2.178841938049300371e-06,2.299888712385372379e-06,2.420935486721444386e-06,2.541982261057516394e-06,2.663029035393588402e-06,2.784075809729660409e-06,2.905122584065732417e-06,3.026169358401804424e-06,3.147216132737876432e-06,3.268262907073948439e-06,3.389309681410020447e-06,3.510356455746092455e-06,3.631403230082164462e-06,3.752450004418236470e-06,3.873496778754308477e-06,3.994543553090380485e-06,4.115590327426452492e-06,4.236637101762524500e-06,4.357683876098596508e-06,4.478730650434668515e-06,4.599777424770740523e-06,4.720824199106812530e-06,4.841870973442884538e-06,4.962917747778956545e-06,5.083964522115028553e-06,5.205011296451100560e-06,5.326058070787172568e-06,5.447104845123244576e-06,5.568151619459316583e-06,5.689198393795388591e-06,5.810245168131460598e-06,5.931291942467532606e-06,6.052338716803604613e-06,6.173385491139676621e-06,6.294432265475748629e-06,6.415479039811820636e-06,6.536525814147892644e-06,6.657572588483964651e-06,6.778619362820036659e-06,6.899666137156108666e-06,7.020712911492180674e-06,7.141759685828252682e-06,7.262806460164324689e-06,7.383853234500396697e-06,7.504900008836468704e-06,7.625946783172540712e-06 +0.000000000000000000e+00,1.192148986153130552e-07,2.384297972306261105e-07,3.576446958459391657e-07,4.768595944612522210e-07,5.960744930765652233e-07,7.152893916918782256e-07,8.345042903071912279e-07,9.537191889225042302e-07,1.072934087537817232e-06,1.192148986153130235e-06,1.311363884768443237e-06,1.430578783383756239e-06,1.549793681999069242e-06,1.669008580614382244e-06,1.788223479229695246e-06,1.907438377845008037e-06,2.026653276460320827e-06,2.145868175075633618e-06,2.265083073690946408e-06,2.384297972306259199e-06,2.503512870921571990e-06,2.622727769536884780e-06,2.741942668152197571e-06,2.861157566767510361e-06,2.980372465382823152e-06,3.099587363998135942e-06,3.218802262613448733e-06,3.338017161228761523e-06,3.457232059844074314e-06,3.576446958459387104e-06,3.695661857074699895e-06,3.814876755690012686e-06,3.934091654305325476e-06,4.053306552920638267e-06,4.172521451535951057e-06,4.291736350151263848e-06,4.410951248766576638e-06,4.530166147381889429e-06,4.649381045997202219e-06,4.768595944612515010e-06,4.887810843227827800e-06,5.007025741843140591e-06,5.126240640458453382e-06,5.245455539073766172e-06,5.364670437689078963e-06,5.483885336304391753e-06,5.603100234919704544e-06,5.722315133535017334e-06,5.841530032150330125e-06,5.960744930765642915e-06,6.079959829380955706e-06,6.199174727996268496e-06,6.318389626611581287e-06,6.437604525226894078e-06,6.556819423842206868e-06,6.676034322457519659e-06,6.795249221072832449e-06,6.914464119688145240e-06,7.033679018303458030e-06,7.152893916918770821e-06,7.272108815534083611e-06,7.391323714149396402e-06,7.510538612764709192e-06 +0.000000000000000000e+00,1.209164079411569851e-07,2.418328158823139701e-07,3.627492238234709552e-07,4.836656317646279403e-07,6.045820397057849783e-07,7.254984476469420163e-07,8.464148555880990543e-07,9.673312635292560923e-07,1.088247671470413130e-06,1.209164079411570168e-06,1.330080487352727206e-06,1.450996895293884244e-06,1.571913303235041282e-06,1.692829711176198320e-06,1.813746119117355358e-06,1.934662527058512608e-06,2.055578934999669858e-06,2.176495342940827108e-06,2.297411750881984357e-06,2.418328158823141607e-06,2.539244566764298857e-06,2.660160974705456107e-06,2.781077382646613356e-06,2.901993790587770606e-06,3.022910198528927856e-06,3.143826606470085106e-06,3.264743014411242355e-06,3.385659422352399605e-06,3.506575830293556855e-06,3.627492238234714105e-06,3.748408646175871355e-06,3.869325054117028604e-06,3.990241462058185431e-06,4.111157869999342257e-06,4.232074277940499083e-06,4.352990685881655909e-06,4.473907093822812736e-06,4.594823501763969562e-06,4.715739909705126388e-06,4.836656317646283214e-06,4.957572725587440041e-06,5.078489133528596867e-06,5.199405541469753693e-06,5.320321949410910519e-06,5.441238357352067346e-06,5.562154765293224172e-06,5.683071173234380998e-06,5.803987581175537824e-06,5.924903989116694651e-06,6.045820397057851477e-06,6.166736804999008303e-06,6.287653212940165129e-06,6.408569620881321956e-06,6.529486028822478782e-06,6.650402436763635608e-06,6.771318844704792434e-06,6.892235252645949261e-06,7.013151660587106087e-06,7.134068068528262913e-06,7.254984476469419739e-06,7.375900884410576565e-06,7.496817292351733392e-06,7.617733700292890218e-06 +0.000000000000000000e+00,1.198955942169923578e-07,2.397911884339847156e-07,3.596867826509770469e-07,4.795823768679693253e-07,5.994779710849616037e-07,7.193735653019538821e-07,8.392691595189461605e-07,9.591647537359384389e-07,1.079060347952930717e-06,1.198955942169922996e-06,1.318851536386915274e-06,1.438747130603907552e-06,1.558642724820899831e-06,1.678538319037892109e-06,1.798433913254884388e-06,1.918329507471876454e-06,2.038225101688868733e-06,2.158120695905861011e-06,2.278016290122853290e-06,2.397911884339845568e-06,2.517807478556837846e-06,2.637703072773830125e-06,2.757598666990822403e-06,2.877494261207814681e-06,2.997389855424806960e-06,3.117285449641799238e-06,3.237181043858791517e-06,3.357076638075783795e-06,3.476972232292776073e-06,3.596867826509768352e-06,3.716763420726760630e-06,3.836659014943752909e-06,3.956554609160745187e-06,4.076450203377737465e-06,4.196345797594729744e-06,4.316241391811722022e-06,4.436136986028714301e-06,4.556032580245706579e-06,4.675928174462698857e-06,4.795823768679691136e-06,4.915719362896683414e-06,5.035614957113675693e-06,5.155510551330667971e-06,5.275406145547660249e-06,5.395301739764652528e-06,5.515197333981644806e-06,5.635092928198637085e-06,5.754988522415629363e-06,5.874884116632621641e-06,5.994779710849613920e-06,6.114675305066606198e-06,6.234570899283598477e-06,6.354466493500590755e-06,6.474362087717583033e-06,6.594257681934575312e-06,6.714153276151567590e-06,6.834048870368559869e-06,6.953944464585552147e-06,7.073840058802544425e-06,7.193735653019536704e-06,7.313631247236528982e-06,7.433526841453521260e-06,7.553422435670513539e-06 +0.000000000000000000e+00,1.210602769046416916e-07,2.421205538092833832e-07,3.631808307139251013e-07,4.842411076185668723e-07,6.053013845232086433e-07,7.263616614278504143e-07,8.474219383324921853e-07,9.684822152371339563e-07,1.089542492141775833e-06,1.210602769046417710e-06,1.331663045951059587e-06,1.452723322855701464e-06,1.573783599760343341e-06,1.694843876664985218e-06,1.815904153569627095e-06,1.936964430474269183e-06,2.058024707378911272e-06,2.179084984283553360e-06,2.300145261188195449e-06,2.421205538092837538e-06,2.542265814997479626e-06,2.663326091902121715e-06,2.784386368806763804e-06,2.905446645711405892e-06,3.026506922616047981e-06,3.147567199520690070e-06,3.268627476425332158e-06,3.389687753329974247e-06,3.510748030234616336e-06,3.631808307139258424e-06,3.752868584043900513e-06,3.873928860948542601e-06,3.994989137853184690e-06,4.116049414757826779e-06,4.237109691662468867e-06,4.358169968567110956e-06,4.479230245471753045e-06,4.600290522376395133e-06,4.721350799281037222e-06,4.842411076185679311e-06,4.963471353090321399e-06,5.084531629994963488e-06,5.205591906899605577e-06,5.326652183804247665e-06,5.447712460708889754e-06,5.568772737613531842e-06,5.689833014518173931e-06,5.810893291422816020e-06,5.931953568327458108e-06,6.053013845232100197e-06,6.174074122136742286e-06,6.295134399041384374e-06,6.416194675946026463e-06,6.537254952850668552e-06,6.658315229755310640e-06,6.779375506659952729e-06,6.900435783564594818e-06,7.021496060469236906e-06,7.142556337373878995e-06,7.263616614278521084e-06,7.384676891183163172e-06,7.505737168087805261e-06,7.626797444992447349e-06 +0.000000000000000000e+00,1.210336994454654965e-07,2.420673988909309930e-07,3.631010983363965160e-07,4.841347977818620919e-07,6.051684972273276678e-07,7.262021966727932437e-07,8.472358961182588196e-07,9.682695955637243956e-07,1.089303295009189971e-06,1.210336994454655547e-06,1.331370693900121123e-06,1.452404393345586699e-06,1.573438092791052275e-06,1.694471792236517851e-06,1.815505491681983427e-06,1.936539191127449215e-06,2.057572890572915002e-06,2.178606590018380790e-06,2.299640289463846578e-06,2.420673988909312365e-06,2.541707688354778153e-06,2.662741387800243941e-06,2.783775087245709728e-06,2.904808786691175516e-06,3.025842486136641304e-06,3.146876185582107091e-06,3.267909885027572879e-06,3.388943584473038667e-06,3.509977283918504454e-06,3.631010983363970242e-06,3.752044682809436030e-06,3.873078382254901817e-06,3.994112081700367182e-06,4.115145781145832546e-06,4.236179480591297910e-06,4.357213180036763274e-06,4.478246879482228638e-06,4.599280578927694002e-06,4.720314278373159366e-06,4.841347977818624731e-06,4.962381677264090095e-06,5.083415376709555459e-06,5.204449076155020823e-06,5.325482775600486187e-06,5.446516475045951551e-06,5.567550174491416916e-06,5.688583873936882280e-06,5.809617573382347644e-06,5.930651272827813008e-06,6.051684972273278372e-06,6.172718671718743736e-06,6.293752371164209100e-06,6.414786070609674465e-06,6.535819770055139829e-06,6.656853469500605193e-06,6.777887168946070557e-06,6.898920868391535921e-06,7.019954567837001285e-06,7.140988267282466650e-06,7.262021966727932014e-06,7.383055666173397378e-06,7.504089365618862742e-06,7.625123065064328106e-06 +0.000000000000000000e+00,1.209164079411534381e-07,2.418328158823068762e-07,3.627492238234603143e-07,4.836656317646137525e-07,6.045820397057671906e-07,7.254984476469206287e-07,8.464148555880740668e-07,9.673312635292275049e-07,1.088247671470380943e-06,1.209164079411534381e-06,1.330080487352687819e-06,1.450996895293841257e-06,1.571913303234994696e-06,1.692829711176148134e-06,1.813746119117301572e-06,1.934662527058455010e-06,2.055578934999608448e-06,2.176495342940761886e-06,2.297411750881915324e-06,2.418328158823068762e-06,2.539244566764222200e-06,2.660160974705375639e-06,2.781077382646529077e-06,2.901993790587682515e-06,3.022910198528835953e-06,3.143826606469989391e-06,3.264743014411142829e-06,3.385659422352296267e-06,3.506575830293449705e-06,3.627492238234603143e-06,3.748408646175756582e-06,3.869325054116910020e-06,3.990241462058063458e-06,4.111157869999216896e-06,4.232074277940370334e-06,4.352990685881523772e-06,4.473907093822677210e-06,4.594823501763830648e-06,4.715739909704984087e-06,4.836656317646137525e-06,4.957572725587290963e-06,5.078489133528444401e-06,5.199405541469597839e-06,5.320321949410751277e-06,5.441238357351904715e-06,5.562154765293058153e-06,5.683071173234211591e-06,5.803987581175365030e-06,5.924903989116518468e-06,6.045820397057671906e-06,6.166736804998825344e-06,6.287653212939978782e-06,6.408569620881132220e-06,6.529486028822285658e-06,6.650402436763439096e-06,6.771318844704592534e-06,6.892235252645745973e-06,7.013151660586899411e-06,7.134068068528052849e-06,7.254984476469206287e-06,7.375900884410359725e-06,7.496817292351513163e-06,7.617733700292666601e-06 +0.000000000000000000e+00,1.200398306368988170e-07,2.400796612737976340e-07,3.601194919106964510e-07,4.801593225475952680e-07,6.001991531844941379e-07,7.202389838213930079e-07,8.402788144582918778e-07,9.603186450951907478e-07,1.080358475732089618e-06,1.200398306368988488e-06,1.320438137005887358e-06,1.440477967642786228e-06,1.560517798279685097e-06,1.680557628916583967e-06,1.800597459553482837e-06,1.920637290190381919e-06,2.040677120827280789e-06,2.160716951464179659e-06,2.280756782101078529e-06,2.400796612737977399e-06,2.520836443374876269e-06,2.640876274011775139e-06,2.760916104648674009e-06,2.880955935285572879e-06,3.000995765922471749e-06,3.121035596559370618e-06,3.241075427196269488e-06,3.361115257833168358e-06,3.481155088470067228e-06,3.601194919106966098e-06,3.721234749743864968e-06,3.841274580380763838e-06,3.961314411017662708e-06,4.081354241654561578e-06,4.201394072291460448e-06,4.321433902928359318e-06,4.441473733565258188e-06,4.561513564202157058e-06,4.681553394839055928e-06,4.801593225475954798e-06,4.921633056112853668e-06,5.041672886749752538e-06,5.161712717386651407e-06,5.281752548023550277e-06,5.401792378660449147e-06,5.521832209297348017e-06,5.641872039934246887e-06,5.761911870571145757e-06,5.881951701208044627e-06,6.001991531844943497e-06,6.122031362481842367e-06,6.242071193118741237e-06,6.362111023755640107e-06,6.482150854392538977e-06,6.602190685029437847e-06,6.722230515666336717e-06,6.842270346303235587e-06,6.962310176940134457e-06,7.082350007577033327e-06,7.202389838213932196e-06,7.322429668850831066e-06,7.442469499487729936e-06,7.562509330124628806e-06 +0.000000000000000000e+00,1.210467743360653637e-07,2.420935486721307273e-07,3.631403230081961174e-07,4.841870973442615605e-07,6.052338716803270035e-07,7.262806460163924466e-07,8.473274203524578897e-07,9.683741946885233327e-07,1.089420969024588776e-06,1.210467743360654219e-06,1.331514517696719662e-06,1.452561292032785105e-06,1.573608066368850548e-06,1.694654840704915991e-06,1.815701615040981434e-06,1.936748389377047089e-06,2.057795163713112744e-06,2.178841938049178399e-06,2.299888712385244053e-06,2.420935486721309708e-06,2.541982261057375363e-06,2.663029035393441018e-06,2.784075809729506673e-06,2.905122584065572328e-06,3.026169358401637982e-06,3.147216132737703637e-06,3.268262907073769292e-06,3.389309681409834947e-06,3.510356455745900602e-06,3.631403230081966256e-06,3.752450004418031911e-06,3.873496778754097566e-06,3.994543553090162797e-06,4.115590327426228029e-06,4.236637101762293260e-06,4.357683876098358491e-06,4.478730650434423723e-06,4.599777424770488954e-06,4.720824199106554185e-06,4.841870973442619416e-06,4.962917747778684648e-06,5.083964522114749879e-06,5.205011296450815110e-06,5.326058070786880342e-06,5.447104845122945573e-06,5.568151619459010804e-06,5.689198393795076036e-06,5.810245168131141267e-06,5.931291942467206498e-06,6.052338716803271729e-06,6.173385491139336961e-06,6.294432265475402192e-06,6.415479039811467423e-06,6.536525814147532655e-06,6.657572588483597886e-06,6.778619362819663117e-06,6.899666137155728349e-06,7.020712911491793580e-06,7.141759685827858811e-06,7.262806460163924043e-06,7.383853234499989274e-06,7.504900008836054505e-06,7.625946783172119736e-06 +0.000000000000000000e+00,1.192148986153070201e-07,2.384297972306140403e-07,3.576446958459210604e-07,4.768595944612280805e-07,5.960744930765351536e-07,7.152893916918422267e-07,8.345042903071492998e-07,9.537191889224563728e-07,1.072934087537763446e-06,1.192148986153070519e-06,1.311363884768377592e-06,1.430578783383684665e-06,1.549793681998991738e-06,1.669008580614298811e-06,1.788223479229605884e-06,1.907438377844913169e-06,2.026653276460220454e-06,2.145868175075527739e-06,2.265083073690835024e-06,2.384297972306142308e-06,2.503512870921449593e-06,2.622727769536756878e-06,2.741942668152064163e-06,2.861157566767371448e-06,2.980372465382678733e-06,3.099587363997986017e-06,3.218802262613293302e-06,3.338017161228600587e-06,3.457232059843907872e-06,3.576446958459215157e-06,3.695661857074522442e-06,3.814876755689829726e-06,3.934091654305137435e-06,4.053306552920445143e-06,4.172521451535752852e-06,4.291736350151060560e-06,4.410951248766368268e-06,4.530166147381675977e-06,4.649381045996983685e-06,4.768595944612291393e-06,4.887810843227599102e-06,5.007025741842906810e-06,5.126240640458214518e-06,5.245455539073522227e-06,5.364670437688829935e-06,5.483885336304137643e-06,5.603100234919445352e-06,5.722315133534753060e-06,5.841530032150060768e-06,5.960744930765368477e-06,6.079959829380676185e-06,6.199174727995983893e-06,6.318389626611291602e-06,6.437604525226599310e-06,6.556819423841907018e-06,6.676034322457214727e-06,6.795249221072522435e-06,6.914464119687830144e-06,7.033679018303137852e-06,7.152893916918445560e-06,7.272108815533753269e-06,7.391323714149060977e-06,7.510538612764368685e-06 +0.000000000000000000e+00,1.220758921996112742e-07,2.441517843992225484e-07,3.662276765988338226e-07,4.883035687984450967e-07,6.103794609980563180e-07,7.324553531976675392e-07,8.545312453972787605e-07,9.766071375968899817e-07,1.098683029796501203e-06,1.220758921996112424e-06,1.342834814195723645e-06,1.464910706395334867e-06,1.586986598594946088e-06,1.709062490794557309e-06,1.831138382994168530e-06,1.953214275193779540e-06,2.075290167393390761e-06,2.197366059593001982e-06,2.319441951792613204e-06,2.441517843992224425e-06,2.563593736191835646e-06,2.685669628391446867e-06,2.807745520591058089e-06,2.929821412790669310e-06,3.051897304990280531e-06,3.173973197189891752e-06,3.296049089389502974e-06,3.418124981589114195e-06,3.540200873788725416e-06,3.662276765988336637e-06,3.784352658187947859e-06,3.906428550387559080e-06,4.028504442587170301e-06,4.150580334786781522e-06,4.272656226986392744e-06,4.394732119186003965e-06,4.516808011385615186e-06,4.638883903585226407e-06,4.760959795784837629e-06,4.883035687984448850e-06,5.005111580184060071e-06,5.127187472383671292e-06,5.249263364583282514e-06,5.371339256782893735e-06,5.493415148982504956e-06,5.615491041182116177e-06,5.737566933381727399e-06,5.859642825581338620e-06,5.981718717780949841e-06,6.103794609980561062e-06,6.225870502180172284e-06,6.347946394379783505e-06,6.470022286579394726e-06,6.592098178779005947e-06,6.714174070978617169e-06,6.836249963178228390e-06,6.958325855377839611e-06,7.080401747577450832e-06,7.202477639777062053e-06,7.324553531976673275e-06,7.446629424176284496e-06,7.568705316375895717e-06,7.690781208575506091e-06 +0.000000000000000000e+00,1.213980681911265471e-07,2.427961363822530943e-07,3.641942045733796679e-07,4.855922727645062944e-07,6.069903409556329210e-07,7.283884091467595476e-07,8.497864773378861741e-07,9.711845455290128007e-07,1.092582613720139427e-06,1.213980681911266054e-06,1.335378750102392680e-06,1.456776818293519307e-06,1.578174886484645933e-06,1.699572954675772560e-06,1.820971022866899187e-06,1.942369091058026025e-06,2.063767159249152651e-06,2.185165227440279278e-06,2.306563295631405904e-06,2.427961363822532531e-06,2.549359432013659158e-06,2.670757500204785784e-06,2.792155568395912411e-06,2.913553636587039037e-06,3.034951704778165664e-06,3.156349772969292290e-06,3.277747841160418917e-06,3.399145909351545543e-06,3.520543977542672170e-06,3.641942045733798797e-06,3.763340113924925423e-06,3.884738182116052050e-06,4.006136250307178676e-06,4.127534318498305303e-06,4.248932386689431929e-06,4.370330454880558556e-06,4.491728523071685182e-06,4.613126591262811809e-06,4.734524659453938436e-06,4.855922727645065062e-06,4.977320795836191689e-06,5.098718864027318315e-06,5.220116932218444942e-06,5.341515000409571568e-06,5.462913068600698195e-06,5.584311136791824821e-06,5.705709204982951448e-06,5.827107273174078074e-06,5.948505341365204701e-06,6.069903409556331328e-06,6.191301477747457954e-06,6.312699545938584581e-06,6.434097614129711207e-06,6.555495682320837834e-06,6.676893750511964460e-06,6.798291818703091087e-06,6.919689886894217713e-06,7.041087955085344340e-06,7.162486023276470967e-06,7.283884091467597593e-06,7.405282159658724220e-06,7.526680227849850846e-06,7.648078296040978320e-06 +0.000000000000000000e+00,1.201476597733469096e-07,2.402953195466938192e-07,3.604429793200407287e-07,4.805906390933876383e-07,6.007382988667345479e-07,7.208859586400814575e-07,8.410336184134283670e-07,9.611812781867752766e-07,1.081328937960122186e-06,1.201476597733469096e-06,1.321624257506816005e-06,1.441771917280162915e-06,1.561919577053509824e-06,1.682067236826856734e-06,1.802214896600203644e-06,1.922362556373550553e-06,2.042510216146897675e-06,2.162657875920244796e-06,2.282805535693591917e-06,2.402953195466939039e-06,2.523100855240286160e-06,2.643248515013633281e-06,2.763396174786980403e-06,2.883543834560327524e-06,3.003691494333674645e-06,3.123839154107021767e-06,3.243986813880368888e-06,3.364134473653716009e-06,3.484282133427063131e-06,3.604429793200410252e-06,3.724577452973757373e-06,3.844725112747104495e-06,3.964872772520451616e-06,4.085020432293798737e-06,4.205168092067145859e-06,4.325315751840492980e-06,4.445463411613840101e-06,4.565611071387187223e-06,4.685758731160534344e-06,4.805906390933881465e-06,4.926054050707228587e-06,5.046201710480575708e-06,5.166349370253922829e-06,5.286497030027269951e-06,5.406644689800617072e-06,5.526792349573964193e-06,5.646940009347311315e-06,5.767087669120658436e-06,5.887235328894005557e-06,6.007382988667352679e-06,6.127530648440699800e-06,6.247678308214046921e-06,6.367825967987394043e-06,6.487973627760741164e-06,6.608121287534088285e-06,6.728268947307435407e-06,6.848416607080782528e-06,6.968564266854129649e-06,7.088711926627476771e-06,7.208859586400823892e-06,7.329007246174171013e-06,7.449154905947518135e-06,7.569302565720865256e-06 +0.000000000000000000e+00,1.220758921996043920e-07,2.441517843992087841e-07,3.662276765988131761e-07,4.883035687984175682e-07,6.103794609980220132e-07,7.324553531976264581e-07,8.545312453972309031e-07,9.766071375968353481e-07,1.098683029796439793e-06,1.220758921996044238e-06,1.342834814195648683e-06,1.464910706395253128e-06,1.586986598594857573e-06,1.709062490794462018e-06,1.831138382994066463e-06,1.953214275193671120e-06,2.075290167393275565e-06,2.197366059592880010e-06,2.319441951792484455e-06,2.441517843992088900e-06,2.563593736191693345e-06,2.685669628391297790e-06,2.807745520590902235e-06,2.929821412790506680e-06,3.051897304990111125e-06,3.173973197189715570e-06,3.296049089389320015e-06,3.418124981588924459e-06,3.540200873788528904e-06,3.662276765988133349e-06,3.784352658187737794e-06,3.906428550387342239e-06,4.028504442586946684e-06,4.150580334786551129e-06,4.272656226986155574e-06,4.394732119185760019e-06,4.516808011385364464e-06,4.638883903584968909e-06,4.760959795784573354e-06,4.883035687984177799e-06,5.005111580183782244e-06,5.127187472383386689e-06,5.249263364582991134e-06,5.371339256782595579e-06,5.493415148982200024e-06,5.615491041181804469e-06,5.737566933381408914e-06,5.859642825581013359e-06,5.981718717780617804e-06,6.103794609980222249e-06,6.225870502179826694e-06,6.347946394379431139e-06,6.470022286579035584e-06,6.592098178778640029e-06,6.714174070978244474e-06,6.836249963177848919e-06,6.958325855377453364e-06,7.080401747577057809e-06,7.202477639776662254e-06,7.324553531976266699e-06,7.446629424175871144e-06,7.568705316375475589e-06,7.690781208575079187e-06 +0.000000000000000000e+00,1.213980681911196385e-07,2.427961363822392771e-07,3.641942045733589156e-07,4.855922727644785541e-07,6.069903409555981926e-07,7.283884091467178312e-07,8.497864773378374697e-07,9.711845455289571082e-07,1.092582613720076747e-06,1.213980681911196385e-06,1.335378750102316024e-06,1.456776818293435662e-06,1.578174886484555301e-06,1.699572954675674939e-06,1.820971022866794578e-06,1.942369091057914216e-06,2.063767159249034067e-06,2.185165227440153917e-06,2.306563295631273767e-06,2.427961363822393618e-06,2.549359432013513468e-06,2.670757500204633318e-06,2.792155568395753168e-06,2.913553636586873019e-06,3.034951704777992869e-06,3.156349772969112719e-06,3.277747841160232570e-06,3.399145909351352420e-06,3.520543977542472270e-06,3.641942045733592121e-06,3.763340113924711971e-06,3.884738182115831821e-06,4.006136250306951671e-06,4.127534318498071522e-06,4.248932386689191372e-06,4.370330454880311222e-06,4.491728523071431073e-06,4.613126591262550923e-06,4.734524659453670773e-06,4.855922727644790623e-06,4.977320795835910474e-06,5.098718864027030324e-06,5.220116932218150174e-06,5.341515000409270025e-06,5.462913068600389875e-06,5.584311136791509725e-06,5.705709204982629575e-06,5.827107273173749426e-06,5.948505341364869276e-06,6.069903409555989126e-06,6.191301477747108977e-06,6.312699545938228827e-06,6.434097614129348677e-06,6.555495682320468527e-06,6.676893750511588378e-06,6.798291818702708228e-06,6.919689886893828078e-06,7.041087955084947929e-06,7.162486023276067779e-06,7.283884091467187629e-06,7.405282159658307479e-06,7.526680227849427330e-06,7.648078296040548027e-06 +0.000000000000000000e+00,1.201476597733410333e-07,2.402953195466820666e-07,3.604429793200230999e-07,4.805906390933641331e-07,6.007382988667051135e-07,7.208859586400460938e-07,8.410336184133870742e-07,9.611812781867280545e-07,1.081328937960069035e-06,1.201476597733410015e-06,1.321624257506750996e-06,1.441771917280091976e-06,1.561919577053432956e-06,1.682067236826773937e-06,1.802214896600114917e-06,1.922362556373455686e-06,2.042510216146796454e-06,2.162657875920137223e-06,2.282805535693477991e-06,2.402953195466818760e-06,2.523100855240159528e-06,2.643248515013500297e-06,2.763396174786841066e-06,2.883543834560181834e-06,3.003691494333522603e-06,3.123839154106863371e-06,3.243986813880204140e-06,3.364134473653544909e-06,3.484282133426885677e-06,3.604429793200226446e-06,3.724577452973567214e-06,3.844725112746907983e-06,3.964872772520248328e-06,4.085020432293588673e-06,4.205168092066929018e-06,4.325315751840269363e-06,4.445463411613609708e-06,4.565611071386950053e-06,4.685758731160290398e-06,4.805906390933630743e-06,4.926054050706971089e-06,5.046201710480311434e-06,5.166349370253651779e-06,5.286497030026992124e-06,5.406644689800332469e-06,5.526792349573672814e-06,5.646940009347013159e-06,5.767087669120353504e-06,5.887235328893693849e-06,6.007382988667034194e-06,6.127530648440374539e-06,6.247678308213714884e-06,6.367825967987055229e-06,6.487973627760395574e-06,6.608121287533735920e-06,6.728268947307076265e-06,6.848416607080416610e-06,6.968564266853756955e-06,7.088711926627097300e-06,7.208859586400437645e-06,7.329007246173777990e-06,7.449154905947118335e-06,7.569302565720458680e-06 +0.000000000000000000e+00,1.242256816431576732e-07,2.484513632863153464e-07,3.726770449294730196e-07,4.969027265726306928e-07,6.211284082157884189e-07,7.453540898589461451e-07,8.695797715021038712e-07,9.938054531452615973e-07,1.118031134788419323e-06,1.242256816431577050e-06,1.366482498074734776e-06,1.490708179717892502e-06,1.614933861361050228e-06,1.739159543004207954e-06,1.863385224647365680e-06,1.987610906290523618e-06,2.111836587933681556e-06,2.236062269576839494e-06,2.360287951219997432e-06,2.484513632863155370e-06,2.608739314506313308e-06,2.732964996149471246e-06,2.857190677792629183e-06,2.981416359435787121e-06,3.105642041078945059e-06,3.229867722722102997e-06,3.354093404365260935e-06,3.478319086008418873e-06,3.602544767651576811e-06,3.726770449294734749e-06,3.850996130937892687e-06,3.975221812581050624e-06,4.099447494224208562e-06,4.223673175867366500e-06,4.347898857510524438e-06,4.472124539153682376e-06,4.596350220796840314e-06,4.720575902439998252e-06,4.844801584083156190e-06,4.969027265726314128e-06,5.093252947369472066e-06,5.217478629012630003e-06,5.341704310655787941e-06,5.465929992298945879e-06,5.590155673942103817e-06,5.714381355585261755e-06,5.838607037228419693e-06,5.962832718871577631e-06,6.087058400514735569e-06,6.211284082157893507e-06,6.335509763801051444e-06,6.459735445444209382e-06,6.583961127087367320e-06,6.708186808730525258e-06,6.832412490373683196e-06,6.956638172016841134e-06,7.080863853659999072e-06,7.205089535303157010e-06,7.329315216946314948e-06,7.453540898589472885e-06,7.577766580232630823e-06,7.701992261875788761e-06,7.826217943518947546e-06 +0.000000000000000000e+00,1.230386109039965041e-07,2.460772218079930083e-07,3.691158327119895124e-07,4.921544436159860165e-07,6.151930545199825736e-07,7.382316654239791306e-07,8.612702763279756877e-07,9.843088872319722448e-07,1.107347498135968802e-06,1.230386109039965359e-06,1.353424719943961916e-06,1.476463330847958473e-06,1.599501941751955030e-06,1.722540552655951587e-06,1.845579163559948144e-06,1.968617774463944913e-06,2.091656385367941682e-06,2.214694996271938451e-06,2.337733607175935220e-06,2.460772218079931988e-06,2.583810828983928757e-06,2.706849439887925526e-06,2.829888050791922295e-06,2.952926661695919064e-06,3.075965272599915832e-06,3.199003883503912601e-06,3.322042494407909370e-06,3.445081105311906139e-06,3.568119716215902908e-06,3.691158327119899677e-06,3.814196938023896445e-06,3.937235548927893214e-06,4.060274159831889560e-06,4.183312770735885905e-06,4.306351381639882250e-06,4.429389992543878595e-06,4.552428603447874941e-06,4.675467214351871286e-06,4.798505825255867631e-06,4.921544436159863977e-06,5.044583047063860322e-06,5.167621657967856667e-06,5.290660268871853013e-06,5.413698879775849358e-06,5.536737490679845703e-06,5.659776101583842049e-06,5.782814712487838394e-06,5.905853323391834739e-06,6.028891934295831084e-06,6.151930545199827430e-06,6.274969156103823775e-06,6.398007767007820120e-06,6.521046377911816466e-06,6.644084988815812811e-06,6.767123599719809156e-06,6.890162210623805502e-06,7.013200821527801847e-06,7.136239432431798192e-06,7.259278043335794537e-06,7.382316654239790883e-06,7.505355265143787228e-06,7.628393876047783573e-06,7.751432486951779919e-06 +0.000000000000000000e+00,1.224020858278145940e-07,2.448041716556291880e-07,3.672062574834437819e-07,4.896083433112583759e-07,6.120104291390729170e-07,7.344125149668874580e-07,8.568146007947019990e-07,9.792166866225165401e-07,1.101618772450331081e-06,1.224020858278145622e-06,1.346422944105960163e-06,1.468825029933774704e-06,1.591227115761589245e-06,1.713629201589403786e-06,1.836031287417218327e-06,1.958433373245032657e-06,2.080835459072846986e-06,2.203237544900661315e-06,2.325639630728475644e-06,2.448041716556289974e-06,2.570443802384104303e-06,2.692845888211918632e-06,2.815247974039732962e-06,2.937650059867547291e-06,3.060052145695361620e-06,3.182454231523175949e-06,3.304856317350990279e-06,3.427258403178804608e-06,3.549660489006618937e-06,3.672062574834433267e-06,3.794464660662247596e-06,3.916866746490061925e-06,4.039268832317876254e-06,4.161670918145690584e-06,4.284073003973504913e-06,4.406475089801319242e-06,4.528877175629133572e-06,4.651279261456947901e-06,4.773681347284762230e-06,4.896083433112576559e-06,5.018485518940390889e-06,5.140887604768205218e-06,5.263289690596019547e-06,5.385691776423833876e-06,5.508093862251648206e-06,5.630495948079462535e-06,5.752898033907276864e-06,5.875300119735091194e-06,5.997702205562905523e-06,6.120104291390719852e-06,6.242506377218534181e-06,6.364908463046348511e-06,6.487310548874162840e-06,6.609712634701977169e-06,6.732114720529791499e-06,6.854516806357605828e-06,6.976918892185420157e-06,7.099320978013234486e-06,7.221723063841048816e-06,7.344125149668863145e-06,7.466527235496677474e-06,7.588929321324491804e-06,7.711331407152305286e-06 +0.000000000000000000e+00,1.242256816431523263e-07,2.484513632863046526e-07,3.726770449294569789e-07,4.969027265726093052e-07,6.211284082157616315e-07,7.453540898589139578e-07,8.695797715020662841e-07,9.938054531452186104e-07,1.118031134788371043e-06,1.242256816431523475e-06,1.366482498074675907e-06,1.490708179717828339e-06,1.614933861360980771e-06,1.739159543004133203e-06,1.863385224647285636e-06,1.987610906290438068e-06,2.111836587933590500e-06,2.236062269576742932e-06,2.360287951219895364e-06,2.484513632863047797e-06,2.608739314506200229e-06,2.732964996149352661e-06,2.857190677792505093e-06,2.981416359435657525e-06,3.105642041078809957e-06,3.229867722721962390e-06,3.354093404365114822e-06,3.478319086008267254e-06,3.602544767651419686e-06,3.726770449294572118e-06,3.850996130937724127e-06,3.975221812580876136e-06,4.099447494224028144e-06,4.223673175867180153e-06,4.347898857510332162e-06,4.472124539153484170e-06,4.596350220796636179e-06,4.720575902439788188e-06,4.844801584082940196e-06,4.969027265726092205e-06,5.093252947369244214e-06,5.217478629012396222e-06,5.341704310655548231e-06,5.465929992298700240e-06,5.590155673941852248e-06,5.714381355585004257e-06,5.838607037228156266e-06,5.962832718871308274e-06,6.087058400514460283e-06,6.211284082157612292e-06,6.335509763800764300e-06,6.459735445443916309e-06,6.583961127087068318e-06,6.708186808730220326e-06,6.832412490373372335e-06,6.956638172016524344e-06,7.080863853659676352e-06,7.205089535302828361e-06,7.329315216945980370e-06,7.453540898589132378e-06,7.577766580232284387e-06,7.701992261875436396e-06,7.826217943518588404e-06 +0.000000000000000000e+00,1.230386109039901778e-07,2.460772218079803557e-07,3.691158327119705071e-07,4.921544436159606055e-07,6.151930545199507040e-07,7.382316654239408024e-07,8.612702763279309008e-07,9.843088872319209993e-07,1.107347498135911204e-06,1.230386109039901408e-06,1.353424719943891612e-06,1.476463330847881817e-06,1.599501941751872021e-06,1.722540552655862225e-06,1.845579163559852429e-06,1.968617774463842422e-06,2.091656385367832415e-06,2.214694996271822407e-06,2.337733607175812400e-06,2.460772218079802392e-06,2.583810828983792385e-06,2.706849439887782377e-06,2.829888050791772370e-06,2.952926661695762363e-06,3.075965272599752355e-06,3.199003883503742348e-06,3.322042494407732340e-06,3.445081105311722333e-06,3.568119716215712325e-06,3.691158327119702318e-06,3.814196938023692310e-06,3.937235548927682303e-06,4.060274159831672719e-06,4.183312770735663135e-06,4.306351381639653551e-06,4.429389992543643967e-06,4.552428603447634383e-06,4.675467214351624799e-06,4.798505825255615216e-06,4.921544436159605632e-06,5.044583047063596048e-06,5.167621657967586464e-06,5.290660268871576880e-06,5.413698879775567296e-06,5.536737490679557712e-06,5.659776101583548128e-06,5.782814712487538544e-06,5.905853323391528960e-06,6.028891934295519376e-06,6.151930545199509792e-06,6.274969156103500208e-06,6.398007767007490625e-06,6.521046377911481041e-06,6.644084988815471457e-06,6.767123599719461873e-06,6.890162210623452289e-06,7.013200821527442705e-06,7.136239432431433121e-06,7.259278043335423537e-06,7.382316654239413953e-06,7.505355265143404369e-06,7.628393876047394785e-06,7.751432486951385201e-06 +0.000000000000000000e+00,1.224020858278087971e-07,2.448041716556175942e-07,3.672062574834263648e-07,4.896083433112350825e-07,6.120104291390438002e-07,7.344125149668525179e-07,8.568146007946612356e-07,9.792166866224699533e-07,1.101618772450278565e-06,1.224020858278087177e-06,1.346422944105895789e-06,1.468825029933704400e-06,1.591227115761513012e-06,1.713629201589321624e-06,1.836031287417130236e-06,1.958433373244938636e-06,2.080835459072747036e-06,2.203237544900555436e-06,2.325639630728363836e-06,2.448041716556172236e-06,2.570443802383980636e-06,2.692845888211789036e-06,2.815247974039597436e-06,2.937650059867405836e-06,3.060052145695214236e-06,3.182454231523022636e-06,3.304856317350831037e-06,3.427258403178639437e-06,3.549660489006447837e-06,3.672062574834256237e-06,3.794464660662064637e-06,3.916866746489873037e-06,4.039268832317681437e-06,4.161670918145489837e-06,4.284073003973298237e-06,4.406475089801106637e-06,4.528877175628915037e-06,4.651279261456723437e-06,4.773681347284531837e-06,4.896083433112340237e-06,5.018485518940148637e-06,5.140887604767957037e-06,5.263289690595765437e-06,5.385691776423573837e-06,5.508093862251382237e-06,5.630495948079190637e-06,5.752898033906999038e-06,5.875300119734807438e-06,5.997702205562615838e-06,6.120104291390424238e-06,6.242506377218232638e-06,6.364908463046041038e-06,6.487310548873849438e-06,6.609712634701657838e-06,6.732114720529466238e-06,6.854516806357274638e-06,6.976918892185083038e-06,7.099320978012891438e-06,7.221723063840699838e-06,7.344125149668508238e-06,7.466527235496316638e-06,7.588929321324125038e-06,7.711331407151932591e-06 +0.000000000000000000e+00,1.271121190147810576e-07,2.542242380295621152e-07,3.813363570443431464e-07,5.084484760591241246e-07,6.355605950739051028e-07,7.626727140886860811e-07,8.897848331034670593e-07,1.016896952118248037e-06,1.144009071133029016e-06,1.271121190147809994e-06,1.398233309162590972e-06,1.525345428177371950e-06,1.652457547192152929e-06,1.779569666206933907e-06,1.906681785221714885e-06,2.033793904236495651e-06,2.160906023251276418e-06,2.288018142266057184e-06,2.415130261280837951e-06,2.542242380295618717e-06,2.669354499310399484e-06,2.796466618325180250e-06,2.923578737339961017e-06,3.050690856354741783e-06,3.177802975369522550e-06,3.304915094384303316e-06,3.432027213399084082e-06,3.559139332413864849e-06,3.686251451428645615e-06,3.813363570443426382e-06,3.940475689458207572e-06,4.067587808472988762e-06,4.194699927487769952e-06,4.321812046502551142e-06,4.448924165517332332e-06,4.576036284532113522e-06,4.703148403546894712e-06,4.830260522561675902e-06,4.957372641576457092e-06,5.084484760591238282e-06,5.211596879606019472e-06,5.338708998620800662e-06,5.465821117635581852e-06,5.592933236650363041e-06,5.720045355665144231e-06,5.847157474679925421e-06,5.974269593694706611e-06,6.101381712709487801e-06,6.228493831724268991e-06,6.355605950739050181e-06,6.482718069753831371e-06,6.609830188768612561e-06,6.736942307783393751e-06,6.864054426798174941e-06,6.991166545812956131e-06,7.118278664827737321e-06,7.245390783842518511e-06,7.372502902857299701e-06,7.499615021872080891e-06,7.626727140886862081e-06,7.753839259901643271e-06,7.880951378916425308e-06,8.008063497931207345e-06 +0.000000000000000000e+00,1.255971967748219915e-07,2.511943935496439829e-07,3.767915903244659479e-07,5.023887870992878599e-07,6.279859838741097720e-07,7.535831806489316840e-07,8.791803774237535961e-07,1.004777574198575508e-06,1.130374770973397526e-06,1.255971967748219544e-06,1.381569164523041562e-06,1.507166361297863580e-06,1.632763558072685598e-06,1.758360754847507616e-06,1.883957951622329634e-06,2.009555148397151440e-06,2.135152345171973246e-06,2.260749541946795052e-06,2.386346738721616858e-06,2.511943935496438664e-06,2.637541132271260471e-06,2.763138329046082277e-06,2.888735525820904083e-06,3.014332722595725889e-06,3.139929919370547695e-06,3.265527116145369501e-06,3.391124312920191308e-06,3.516721509695013114e-06,3.642318706469834920e-06,3.767915903244656726e-06,3.893513100019478109e-06,4.019110296794299491e-06,4.144707493569120874e-06,4.270304690343942257e-06,4.395901887118763639e-06,4.521499083893585022e-06,4.647096280668406405e-06,4.772693477443227787e-06,4.898290674218049170e-06,5.023887870992870553e-06,5.149485067767691935e-06,5.275082264542513318e-06,5.400679461317334701e-06,5.526276658092156083e-06,5.651873854866977466e-06,5.777471051641798849e-06,5.903068248416620231e-06,6.028665445191441614e-06,6.154262641966262997e-06,6.279859838741084379e-06,6.405457035515905762e-06,6.531054232290727144e-06,6.656651429065548527e-06,6.782248625840369910e-06,6.907845822615191292e-06,7.033443019390012675e-06,7.159040216164834058e-06,7.284637412939655440e-06,7.410234609714476823e-06,7.535831806489298206e-06,7.661429003264119588e-06,7.787026200038940971e-06,7.912623396813762354e-06 +0.000000000000000000e+00,1.254396082884401802e-07,2.508792165768803604e-07,3.763188248653205406e-07,5.017584331537607208e-07,6.271980414422008481e-07,7.526376497306409753e-07,8.780772580190811026e-07,1.003516866307521230e-06,1.128956474595961357e-06,1.254396082884401484e-06,1.379835691172841612e-06,1.505275299461281739e-06,1.630714907749721866e-06,1.756154516038161993e-06,1.881594124326602121e-06,2.007033732615042036e-06,2.132473340903481952e-06,2.257912949191921867e-06,2.383352557480361783e-06,2.508792165768801698e-06,2.634231774057241614e-06,2.759671382345681529e-06,2.885110990634121445e-06,3.010550598922561360e-06,3.135990207211001276e-06,3.261429815499441191e-06,3.386869423787881107e-06,3.512309032076321022e-06,3.637748640364760938e-06,3.763188248653200853e-06,3.888627856941641192e-06,4.014067465230081531e-06,4.139507073518521870e-06,4.264946681806962209e-06,4.390386290095402548e-06,4.515825898383842887e-06,4.641265506672283226e-06,4.766705114960723565e-06,4.892144723249163904e-06,5.017584331537604243e-06,5.143023939826044582e-06,5.268463548114484921e-06,5.393903156402925260e-06,5.519342764691365600e-06,5.644782372979805939e-06,5.770221981268246278e-06,5.895661589556686617e-06,6.021101197845126956e-06,6.146540806133567295e-06,6.271980414422007634e-06,6.397420022710447973e-06,6.522859630998888312e-06,6.648299239287328651e-06,6.773738847575768990e-06,6.899178455864209329e-06,7.024618064152649668e-06,7.150057672441090007e-06,7.275497280729530346e-06,7.400936889017970685e-06,7.526376497306411024e-06,7.651816105594851363e-06,7.777255713883292549e-06,7.902695322171733735e-06 +0.000000000000000000e+00,1.271121190147742814e-07,2.542242380295485627e-07,3.813363570443228176e-07,5.084484760590970196e-07,6.355605950738712215e-07,7.626727140886454235e-07,8.897848331034196254e-07,1.016896952118193827e-06,1.144009071132968029e-06,1.271121190147742231e-06,1.398233309162516433e-06,1.525345428177290635e-06,1.652457547192064837e-06,1.779569666206839039e-06,1.906681785221613241e-06,2.033793904236387231e-06,2.160906023251161221e-06,2.288018142265935212e-06,2.415130261280709202e-06,2.542242380295483192e-06,2.669354499310257182e-06,2.796466618325031172e-06,2.923578737339805163e-06,3.050690856354579153e-06,3.177802975369353143e-06,3.304915094384127133e-06,3.432027213398901123e-06,3.559139332413675114e-06,3.686251451428449104e-06,3.813363570443223094e-06,3.940475689457997508e-06,4.067587808472771921e-06,4.194699927487546335e-06,4.321812046502320749e-06,4.448924165517095162e-06,4.576036284531869576e-06,4.703148403546643990e-06,4.830260522561418404e-06,4.957372641576192817e-06,5.084484760590967231e-06,5.211596879605741645e-06,5.338708998620516058e-06,5.465821117635290472e-06,5.592933236650064886e-06,5.720045355664839300e-06,5.847157474679613713e-06,5.974269593694388127e-06,6.101381712709162541e-06,6.228493831723936954e-06,6.355605950738711368e-06,6.482718069753485782e-06,6.609830188768260196e-06,6.736942307783034609e-06,6.864054426797809023e-06,6.991166545812583437e-06,7.118278664827357850e-06,7.245390783842132264e-06,7.372502902856906678e-06,7.499615021871681092e-06,7.626727140886455505e-06,7.753839259901229919e-06,7.880951378916005180e-06,8.008063497930780440e-06 +0.000000000000000000e+00,1.255971967748158505e-07,2.511943935496317009e-07,3.767915903244475249e-07,5.023887870992632960e-07,6.279859838740790671e-07,7.535831806488948381e-07,8.791803774237106092e-07,1.004777574198526380e-06,1.130374770973342045e-06,1.255971967748157711e-06,1.381569164522973376e-06,1.507166361297789041e-06,1.632763558072604706e-06,1.758360754847420371e-06,1.883957951622236036e-06,2.009555148397051490e-06,2.135152345171866943e-06,2.260749541946682397e-06,2.386346738721497850e-06,2.511943935496313304e-06,2.637541132271128757e-06,2.763138329045944210e-06,2.888735525820759664e-06,3.014332722595575117e-06,3.139929919370390571e-06,3.265527116145206024e-06,3.391124312920021478e-06,3.516721509694836931e-06,3.642318706469652384e-06,3.767915903244467838e-06,3.893513100019283291e-06,4.019110296794098745e-06,4.144707493568914198e-06,4.270304690343729651e-06,4.395901887118545105e-06,4.521499083893360558e-06,4.647096280668176012e-06,4.772693477442991465e-06,4.898290674217806919e-06,5.023887870992622372e-06,5.149485067767437825e-06,5.275082264542253279e-06,5.400679461317068732e-06,5.526276658091884186e-06,5.651873854866699639e-06,5.777471051641515093e-06,5.903068248416330546e-06,6.028665445191145999e-06,6.154262641965961453e-06,6.279859838740776906e-06,6.405457035515592360e-06,6.531054232290407813e-06,6.656651429065223266e-06,6.782248625840038720e-06,6.907845822614854173e-06,7.033443019389669627e-06,7.159040216164485080e-06,7.284637412939300534e-06,7.410234609714115987e-06,7.535831806488931440e-06,7.661429003263746894e-06,7.787026200038563194e-06,7.912623396813379495e-06 +0.000000000000000000e+00,1.254396082884344098e-07,2.508792165768688196e-07,3.763188248653032294e-07,5.017584331537376392e-07,6.271980414421720489e-07,7.526376497306064587e-07,8.780772580190408685e-07,1.003516866307475278e-06,1.128956474595909688e-06,1.254396082884344098e-06,1.379835691172778508e-06,1.505275299461212917e-06,1.630714907749647327e-06,1.756154516038081737e-06,1.881594124326516147e-06,2.007033732614950557e-06,2.132473340903384966e-06,2.257912949191819376e-06,2.383352557480253786e-06,2.508792165768688196e-06,2.634231774057122606e-06,2.759671382345557015e-06,2.885110990633991425e-06,3.010550598922425835e-06,3.135990207210860245e-06,3.261429815499294655e-06,3.386869423787729064e-06,3.512309032076163474e-06,3.637748640364597884e-06,3.763188248653032294e-06,3.888627856941466703e-06,4.014067465229901113e-06,4.139507073518335523e-06,4.264946681806769933e-06,4.390386290095204343e-06,4.515825898383638752e-06,4.641265506672073162e-06,4.766705114960507572e-06,4.892144723248941982e-06,5.017584331537376392e-06,5.143023939825810801e-06,5.268463548114245211e-06,5.393903156402679621e-06,5.519342764691114031e-06,5.644782372979548441e-06,5.770221981267982850e-06,5.895661589556417260e-06,6.021101197844851670e-06,6.146540806133286080e-06,6.271980414421720489e-06,6.397420022710154899e-06,6.522859630998589309e-06,6.648299239287023719e-06,6.773738847575458129e-06,6.899178455863892538e-06,7.024618064152326948e-06,7.150057672440761358e-06,7.275497280729195768e-06,7.400936889017630178e-06,7.526376497306064587e-06,7.651816105594498997e-06,7.777255713882933407e-06,7.902695322171367817e-06 +0.000000000000000000e+00,1.304591316269227431e-07,2.609182632538454861e-07,3.913773948807682292e-07,5.218365265076909722e-07,6.522956581346136623e-07,7.827547897615363524e-07,9.132139213884590426e-07,1.043673053015381733e-06,1.174132184642304423e-06,1.304591316269227113e-06,1.435050447896149803e-06,1.565509579523072493e-06,1.695968711149995183e-06,1.826427842776917873e-06,1.956886974403840563e-06,2.087346106030763042e-06,2.217805237657685520e-06,2.348264369284607999e-06,2.478723500911530477e-06,2.609182632538452955e-06,2.739641764165375434e-06,2.870100895792297912e-06,3.000560027419220390e-06,3.131019159046142869e-06,3.261478290673065347e-06,3.391937422299987825e-06,3.522396553926910304e-06,3.652855685553832782e-06,3.783314817180755260e-06,3.913773948807677739e-06,4.044233080434600641e-06,4.174692212061523543e-06,4.305151343688446444e-06,4.435610475315369346e-06,4.566069606942292248e-06,4.696528738569215150e-06,4.826987870196138052e-06,4.957447001823060954e-06,5.087906133449983856e-06,5.218365265076906758e-06,5.348824396703829659e-06,5.479283528330752561e-06,5.609742659957675463e-06,5.740201791584598365e-06,5.870660923211521267e-06,6.001120054838444169e-06,6.131579186465367071e-06,6.262038318092289972e-06,6.392497449719212874e-06,6.522956581346135776e-06,6.653415712973058678e-06,6.783874844599981580e-06,6.914333976226904482e-06,7.044793107853827384e-06,7.175252239480750286e-06,7.305711371107673187e-06,7.436170502734596089e-06,7.566629634361518991e-06,7.697088765988441893e-06,7.827547897615363948e-06,7.958007029242286003e-06,8.088466160869208058e-06,8.218925292496130112e-06 +0.000000000000000000e+00,1.287403215849246631e-07,2.574806431698493262e-07,3.862209647547739893e-07,5.149612863396986524e-07,6.437016079246233684e-07,7.724419295095480845e-07,9.011822510944728005e-07,1.029922572679397517e-06,1.158662894264322233e-06,1.287403215849246949e-06,1.416143537434171665e-06,1.544883859019096381e-06,1.673624180604021097e-06,1.802364502188945813e-06,1.931104823773870741e-06,2.059845145358795457e-06,2.188585466943720173e-06,2.317325788528644889e-06,2.446066110113569605e-06,2.574806431698494321e-06,2.703546753283419037e-06,2.832287074868343753e-06,2.961027396453268469e-06,3.089767718038193185e-06,3.218508039623117901e-06,3.347248361208042617e-06,3.475988682792967333e-06,3.604729004377892049e-06,3.733469325962816765e-06,3.862209647547741481e-06,3.990949969132666197e-06,4.119690290717590913e-06,4.248430612302515629e-06,4.377170933887440345e-06,4.505911255472365061e-06,4.634651577057289777e-06,4.763391898642214494e-06,4.892132220227139210e-06,5.020872541812063926e-06,5.149612863396988642e-06,5.278353184981913358e-06,5.407093506566838074e-06,5.535833828151762790e-06,5.664574149736687506e-06,5.793314471321612222e-06,5.922054792906536938e-06,6.050795114491461654e-06,6.179535436076386370e-06,6.308275757661311086e-06,6.437016079246235802e-06,6.565756400831160518e-06,6.694496722416085234e-06,6.823237044001009950e-06,6.951977365585934666e-06,7.080717687170859382e-06,7.209458008755784098e-06,7.338198330340708814e-06,7.466938651925633530e-06,7.595678973510558246e-06,7.724419295095482962e-06,7.853159616680408526e-06,7.981899938265334089e-06,8.110640259850259652e-06 +0.000000000000000000e+00,1.289482412438107296e-07,2.578964824876214591e-07,3.868447237314321887e-07,5.157929649752429182e-07,6.447412062190536478e-07,7.736894474628643773e-07,9.026376887066751069e-07,1.031585929950485836e-06,1.160534171194296566e-06,1.289482412438107296e-06,1.418430653681918025e-06,1.547378894925728755e-06,1.676327136169539484e-06,1.805275377413350214e-06,1.934223618657161155e-06,2.063171859900972096e-06,2.192120101144783038e-06,2.321068342388593979e-06,2.450016583632404920e-06,2.578964824876215862e-06,2.707913066120026803e-06,2.836861307363837744e-06,2.965809548607648686e-06,3.094757789851459627e-06,3.223706031095270568e-06,3.352654272339081509e-06,3.481602513582892451e-06,3.610550754826703392e-06,3.739498996070514333e-06,3.868447237314325698e-06,3.997395478558137063e-06,4.126343719801948428e-06,4.255291961045759793e-06,4.384240202289571158e-06,4.513188443533382522e-06,4.642136684777193887e-06,4.771084926021005252e-06,4.900033167264816617e-06,5.028981408508627982e-06,5.157929649752439346e-06,5.286877890996250711e-06,5.415826132240062076e-06,5.544774373483873441e-06,5.673722614727684806e-06,5.802670855971496171e-06,5.931619097215307535e-06,6.060567338459118900e-06,6.189515579702930265e-06,6.318463820946741630e-06,6.447412062190552995e-06,6.576360303434364360e-06,6.705308544678175724e-06,6.834256785921987089e-06,6.963205027165798454e-06,7.092153268409609819e-06,7.221101509653421184e-06,7.350049750897232549e-06,7.478997992141043913e-06,7.607946233384855278e-06,7.736894474628666643e-06,7.865842715872477161e-06,7.994790957116287679e-06,8.123739198360098196e-06 +0.000000000000000000e+00,1.304591316269165491e-07,2.609182632538330982e-07,3.913773948807496474e-07,5.218365265076661965e-07,6.522956581345827456e-07,7.827547897614992947e-07,9.132139213884158439e-07,1.043673053015332393e-06,1.174132184642248942e-06,1.304591316269165491e-06,1.435050447896082040e-06,1.565509579522998589e-06,1.695968711149915139e-06,1.826427842776831688e-06,1.956886974403748237e-06,2.087346106030664786e-06,2.217805237657581335e-06,2.348264369284497884e-06,2.478723500911414433e-06,2.609182632538330982e-06,2.739641764165247532e-06,2.870100895792164081e-06,3.000560027419080630e-06,3.131019159045997179e-06,3.261478290672913728e-06,3.391937422299830277e-06,3.522396553926746826e-06,3.652855685553663375e-06,3.783314817180579925e-06,3.913773948807496474e-06,4.044233080434412599e-06,4.174692212061328725e-06,4.305151343688244851e-06,4.435610475315160976e-06,4.566069606942077102e-06,4.696528738568993227e-06,4.826987870195909353e-06,4.957447001822825479e-06,5.087906133449741604e-06,5.218365265076657730e-06,5.348824396703573855e-06,5.479283528330489981e-06,5.609742659957406107e-06,5.740201791584322232e-06,5.870660923211238358e-06,6.001120054838154483e-06,6.131579186465070609e-06,6.262038318091986735e-06,6.392497449718902860e-06,6.522956581345818986e-06,6.653415712972735112e-06,6.783874844599651237e-06,6.914333976226567363e-06,7.044793107853483488e-06,7.175252239480399614e-06,7.305711371107315740e-06,7.436170502734231865e-06,7.566629634361147991e-06,7.697088765988064116e-06,7.827547897614981089e-06,7.958007029241898062e-06,8.088466160868815034e-06,8.218925292495732007e-06 +0.000000000000000000e+00,1.287403215849179662e-07,2.574806431698359325e-07,3.862209647547539252e-07,5.149612863396719709e-07,6.437016079245900165e-07,7.724419295095080622e-07,9.011822510944261078e-07,1.029922572679344153e-06,1.158662894264262305e-06,1.287403215849180457e-06,1.416143537434098608e-06,1.544883859019016760e-06,1.673624180603934911e-06,1.802364502188853063e-06,1.931104823773771214e-06,2.059845145358689578e-06,2.188585466943607941e-06,2.317325788528526304e-06,2.446066110113444667e-06,2.574806431698363031e-06,2.703546753283281394e-06,2.832287074868199757e-06,2.961027396453118121e-06,3.089767718038036484e-06,3.218508039622954847e-06,3.347248361207873210e-06,3.475988682792791574e-06,3.604729004377709937e-06,3.733469325962628300e-06,3.862209647547546664e-06,3.990949969132465450e-06,4.119690290717384237e-06,4.248430612302303024e-06,4.377170933887221811e-06,4.505911255472140598e-06,4.634651577057059385e-06,4.763391898641978171e-06,4.892132220226896958e-06,5.020872541811815745e-06,5.149612863396734532e-06,5.278353184981653319e-06,5.407093506566572105e-06,5.535833828151490892e-06,5.664574149736409679e-06,5.793314471321328466e-06,5.922054792906247253e-06,6.050795114491166039e-06,6.179535436076084826e-06,6.308275757661003613e-06,6.437016079245922400e-06,6.565756400830841187e-06,6.694496722415759973e-06,6.823237044000678760e-06,6.951977365585597547e-06,7.080717687170516334e-06,7.209458008755435121e-06,7.338198330340353908e-06,7.466938651925272694e-06,7.595678973510191481e-06,7.724419295095110268e-06,7.853159616680029055e-06,7.981899938264947842e-06,8.110640259849866628e-06 +0.000000000000000000e+00,1.289482412438062297e-07,2.578964824876124594e-07,3.868447237314186891e-07,5.157929649752249188e-07,6.447412062190312014e-07,7.736894474628374840e-07,9.026376887066437666e-07,1.031585929950450049e-06,1.160534171194256332e-06,1.289482412438062615e-06,1.418430653681868897e-06,1.547378894925675180e-06,1.676327136169481462e-06,1.805275377413287745e-06,1.934223618657094239e-06,2.063171859900900522e-06,2.192120101144706805e-06,2.321068342388513087e-06,2.450016583632319370e-06,2.578964824876125653e-06,2.707913066119931935e-06,2.836861307363738218e-06,2.965809548607544500e-06,3.094757789851350783e-06,3.223706031095157066e-06,3.352654272338963348e-06,3.481602513582769631e-06,3.610550754826575914e-06,3.739498996070382196e-06,3.868447237314188479e-06,3.997395478557994761e-06,4.126343719801801044e-06,4.255291961045607327e-06,4.384240202289413609e-06,4.513188443533219892e-06,4.642136684777026175e-06,4.771084926020832457e-06,4.900033167264638740e-06,5.028981408508445023e-06,5.157929649752251305e-06,5.286877890996057588e-06,5.415826132239863870e-06,5.544774373483670153e-06,5.673722614727476436e-06,5.802670855971282718e-06,5.931619097215089001e-06,6.060567338458895284e-06,6.189515579702701566e-06,6.318463820946507849e-06,6.447412062190314131e-06,6.576360303434120414e-06,6.705308544677926697e-06,6.834256785921732979e-06,6.963205027165539262e-06,7.092153268409345545e-06,7.221101509653151827e-06,7.350049750896958110e-06,7.478997992140764392e-06,7.607946233384570675e-06,7.736894474628376958e-06,7.865842715872182393e-06,7.994790957115987829e-06,8.123739198359793265e-06 +0.000000000000000000e+00,1.340967146206595352e-07,2.681934292413190705e-07,4.022901438619786057e-07,5.363868584826381410e-07,6.704835731032976762e-07,8.045802877239572114e-07,9.386770023446167467e-07,1.072773716965276282e-06,1.206870431585935711e-06,1.340967146206595141e-06,1.475063860827254570e-06,1.609160575447913999e-06,1.743257290068573429e-06,1.877354004689232858e-06,2.011450719309892287e-06,2.145547433930551717e-06,2.279644148551211146e-06,2.413740863171870576e-06,2.547837577792530005e-06,2.681934292413189434e-06,2.816031007033848864e-06,2.950127721654508293e-06,3.084224436275167722e-06,3.218321150895827152e-06,3.352417865516486581e-06,3.486514580137146010e-06,3.620611294757805440e-06,3.754708009378464869e-06,3.888804723999124722e-06,4.022901438619784575e-06,4.156998153240444428e-06,4.291094867861104281e-06,4.425191582481764134e-06,4.559288297102423986e-06,4.693385011723083839e-06,4.827481726343743692e-06,4.961578440964403545e-06,5.095675155585063398e-06,5.229771870205723251e-06,5.363868584826383104e-06,5.497965299447042957e-06,5.632062014067702809e-06,5.766158728688362662e-06,5.900255443309022515e-06,6.034352157929682368e-06,6.168448872550342221e-06,6.302545587171002074e-06,6.436642301791661927e-06,6.570739016412321780e-06,6.704835731032981633e-06,6.838932445653641485e-06,6.973029160274301338e-06,7.107125874894961191e-06,7.241222589515621044e-06,7.375319304136280897e-06,7.509416018756940750e-06,7.643512733377600603e-06,7.777609447998259609e-06,7.911706162618918614e-06,8.045802877239577620e-06,8.179899591860236626e-06,8.313996306480895632e-06,8.448093021101554638e-06 +0.000000000000000000e+00,1.322494152658560128e-07,2.644988305317120256e-07,3.967482457975680649e-07,5.289976610634241572e-07,6.612470763292802494e-07,7.934964915951363416e-07,9.257459068609924339e-07,1.057995322126848526e-06,1.190244737392704618e-06,1.322494152658560711e-06,1.454743567924416803e-06,1.586992983190272895e-06,1.719242398456128987e-06,1.851491813721985080e-06,1.983741228987841384e-06,2.115990644253697476e-06,2.248240059519553568e-06,2.380489474785409660e-06,2.512738890051265752e-06,2.644988305317121845e-06,2.777237720582977937e-06,2.909487135848834029e-06,3.041736551114690121e-06,3.173985966380546214e-06,3.306235381646402306e-06,3.438484796912258398e-06,3.570734212178114490e-06,3.702983627443970583e-06,3.835233042709826675e-06,3.967482457975682767e-06,4.099731873241538859e-06,4.231981288507394951e-06,4.364230703773251044e-06,4.496480119039107136e-06,4.628729534304963228e-06,4.760978949570819320e-06,4.893228364836675413e-06,5.025477780102531505e-06,5.157727195368387597e-06,5.289976610634243689e-06,5.422226025900099782e-06,5.554475441165955874e-06,5.686724856431811966e-06,5.818974271697668058e-06,5.951223686963524151e-06,6.083473102229380243e-06,6.215722517495236335e-06,6.347971932761092427e-06,6.480221348026948519e-06,6.612470763292804612e-06,6.744720178558660704e-06,6.876969593824516796e-06,7.009219009090372888e-06,7.141468424356228981e-06,7.273717839622085073e-06,7.405967254887941165e-06,7.538216670153797257e-06,7.670466085419653350e-06,7.802715500685508595e-06,7.934964915951363840e-06,8.067214331217219085e-06,8.199463746483074330e-06,8.331713161748929576e-06 +0.000000000000000000e+00,1.327511221127032802e-07,2.655022442254065605e-07,3.982533663381098143e-07,5.310044884508130151e-07,6.637556105635162159e-07,7.965067326762194168e-07,9.292578547889226176e-07,1.062008976901625818e-06,1.194760099014329019e-06,1.327511221127032220e-06,1.460262343239735421e-06,1.593013465352438622e-06,1.725764587465141823e-06,1.858515709577845023e-06,1.991266831690548224e-06,2.124017953803251213e-06,2.256769075915954202e-06,2.389520198028657192e-06,2.522271320141360181e-06,2.655022442254063170e-06,2.787773564366766159e-06,2.920524686479469148e-06,3.053275808592172137e-06,3.186026930704875126e-06,3.318778052817578115e-06,3.451529174930281104e-06,3.584280297042984093e-06,3.717031419155687082e-06,3.849782541268390071e-06,3.982533663381093060e-06,4.115284785493796050e-06,4.248035907606499039e-06,4.380787029719202028e-06,4.513538151831905017e-06,4.646289273944608006e-06,4.779040396057310995e-06,4.911791518170013984e-06,5.044542640282716973e-06,5.177293762395419962e-06,5.310044884508122951e-06,5.442796006620825940e-06,5.575547128733528929e-06,5.708298250846231918e-06,5.841049372958934908e-06,5.973800495071637897e-06,6.106551617184340886e-06,6.239302739297043875e-06,6.372053861409746864e-06,6.504804983522449853e-06,6.637556105635152842e-06,6.770307227747855831e-06,6.903058349860558820e-06,7.035809471973261809e-06,7.168560594085964798e-06,7.301311716198667787e-06,7.434062838311370776e-06,7.566813960424073766e-06,7.699565082536776755e-06,7.832316204649478897e-06,7.965067326762181039e-06,8.097818448874883181e-06,8.230569570987585323e-06,8.363320693100287465e-06 +0.000000000000000000e+00,1.340967146206552736e-07,2.681934292413105472e-07,4.022901438619657944e-07,5.363868584826209885e-07,6.704835731032761827e-07,8.045802877239313769e-07,9.386770023445865711e-07,1.072773716965241765e-06,1.206870431585896960e-06,1.340967146206552154e-06,1.475063860827207348e-06,1.609160575447862542e-06,1.743257290068517736e-06,1.877354004689172931e-06,2.011450719309828336e-06,2.145547433930483954e-06,2.279644148551139572e-06,2.413740863171795190e-06,2.547837577792450807e-06,2.681934292413106425e-06,2.816031007033762043e-06,2.950127721654417660e-06,3.084224436275073278e-06,3.218321150895728896e-06,3.352417865516384514e-06,3.486514580137040131e-06,3.620611294757695749e-06,3.754708009378351367e-06,3.888804723999006984e-06,4.022901438619662602e-06,4.156998153240318220e-06,4.291094867860973838e-06,4.425191582481629455e-06,4.559288297102285073e-06,4.693385011722940691e-06,4.827481726343596308e-06,4.961578440964251926e-06,5.095675155584907544e-06,5.229771870205563162e-06,5.363868584826218779e-06,5.497965299446874397e-06,5.632062014067530015e-06,5.766158728688185632e-06,5.900255443308841250e-06,6.034352157929496868e-06,6.168448872550152486e-06,6.302545587170808103e-06,6.436642301791463721e-06,6.570739016412119339e-06,6.704835731032774956e-06,6.838932445653430574e-06,6.973029160274086192e-06,7.107125874894741810e-06,7.241222589515397427e-06,7.375319304136053045e-06,7.509416018756708663e-06,7.643512733377363433e-06,7.777609447998019051e-06,7.911706162618674669e-06,8.045802877239330287e-06,8.179899591859985904e-06,8.313996306480641522e-06,8.448093021101297140e-06 +0.000000000000000000e+00,1.322494152658503218e-07,2.644988305317006436e-07,3.967482457975509655e-07,5.289976610634012873e-07,6.612470763292516620e-07,7.934964915951020368e-07,9.257459068609524116e-07,1.057995322126802786e-06,1.190244737392653161e-06,1.322494152658503536e-06,1.454743567924353911e-06,1.586992983190204285e-06,1.719242398456054660e-06,1.851491813721905035e-06,1.983741228987755410e-06,2.115990644253605996e-06,2.248240059519456583e-06,2.380489474785307169e-06,2.512738890051157756e-06,2.644988305317008342e-06,2.777237720582858929e-06,2.909487135848709515e-06,3.041736551114560102e-06,3.173985966380410688e-06,3.306235381646261275e-06,3.438484796912111861e-06,3.570734212177962448e-06,3.702983627443813034e-06,3.835233042709663197e-06,3.967482457975513360e-06,4.099731873241363523e-06,4.231981288507213686e-06,4.364230703773063849e-06,4.496480119038914012e-06,4.628729534304764175e-06,4.760978949570614338e-06,4.893228364836464501e-06,5.025477780102314664e-06,5.157727195368164827e-06,5.289976610634014990e-06,5.422226025899865153e-06,5.554475441165715316e-06,5.686724856431565479e-06,5.818974271697415642e-06,5.951223686963265805e-06,6.083473102229115968e-06,6.215722517494966131e-06,6.347971932760816294e-06,6.480221348026666457e-06,6.612470763292516620e-06,6.744720178558366783e-06,6.876969593824216946e-06,7.009219009090067109e-06,7.141468424355917272e-06,7.273717839621767435e-06,7.405967254887617599e-06,7.538216670153467762e-06,7.670466085419317925e-06,7.802715500685168088e-06,7.934964915951018251e-06,8.067214331216868414e-06,8.199463746482718577e-06,8.331713161748568740e-06 +0.000000000000000000e+00,1.327511221127008715e-07,2.655022442254017430e-07,3.982533663381026145e-07,5.310044884508034860e-07,6.637556105635043575e-07,7.965067326762052290e-07,9.292578547889061005e-07,1.062008976901606972e-06,1.194760099014307843e-06,1.327511221127008715e-06,1.460262343239709586e-06,1.593013465352410458e-06,1.725764587465111329e-06,1.858515709577812201e-06,1.991266831690513072e-06,2.124017953803213944e-06,2.256769075915914815e-06,2.389520198028615687e-06,2.522271320141316558e-06,2.655022442254017430e-06,2.787773564366718301e-06,2.920524686479419173e-06,3.053275808592120044e-06,3.186026930704820916e-06,3.318778052817521787e-06,3.451529174930222659e-06,3.584280297042923530e-06,3.717031419155624402e-06,3.849782541268324850e-06,3.982533663381025298e-06,4.115284785493725746e-06,4.248035907606426194e-06,4.380787029719126642e-06,4.513538151831827090e-06,4.646289273944527538e-06,4.779040396057227986e-06,4.911791518169928434e-06,5.044542640282628882e-06,5.177293762395329330e-06,5.310044884508029778e-06,5.442796006620730226e-06,5.575547128733430674e-06,5.708298250846131122e-06,5.841049372958831570e-06,5.973800495071532018e-06,6.106551617184232465e-06,6.239302739296932913e-06,6.372053861409633361e-06,6.504804983522333809e-06,6.637556105635034257e-06,6.770307227747734705e-06,6.903058349860435153e-06,7.035809471973135601e-06,7.168560594085836049e-06,7.301311716198536497e-06,7.434062838311236945e-06,7.566813960423937393e-06,7.699565082536637841e-06,7.832316204649338289e-06,7.965067326762038737e-06,8.097818448874739185e-06,8.230569570987439633e-06,8.363320693100140081e-06 +0.000000000000000000e+00,1.379164360126266364e-07,2.758328720252532728e-07,4.137493080378799357e-07,5.516657440505066515e-07,6.895821800631333673e-07,8.274986160757600831e-07,9.654150520883866931e-07,1.103331488101013303e-06,1.241247924113639913e-06,1.379164360126266523e-06,1.517080796138893133e-06,1.654997232151519743e-06,1.792913668164146353e-06,1.930830104176772963e-06,2.068746540189399573e-06,2.206662976202026182e-06,2.344579412214652792e-06,2.482495848227279402e-06,2.620412284239906012e-06,2.758328720252532622e-06,2.896245156265159232e-06,3.034161592277785842e-06,3.172078028290412452e-06,3.309994464303039062e-06,3.447910900315665672e-06,3.585827336328292282e-06,3.723743772340918892e-06,3.861660208353545078e-06,3.999576644366171688e-06,4.137493080378798298e-06,4.275409516391424908e-06,4.413325952404051518e-06,4.551242388416678128e-06,4.689158824429304738e-06,4.827075260441931348e-06,4.964991696454557958e-06,5.102908132467184568e-06,5.240824568479811177e-06,5.378741004492437787e-06,5.516657440505064397e-06,5.654573876517691007e-06,5.792490312530317617e-06,5.930406748542944227e-06,6.068323184555570837e-06,6.206239620568197447e-06,6.344156056580824057e-06,6.482072492593450667e-06,6.619988928606077277e-06,6.757905364618703887e-06,6.895821800631330497e-06,7.033738236643957107e-06,7.171654672656583717e-06,7.309571108669210326e-06,7.447487544681836936e-06,7.585403980694463546e-06,7.723320416707090156e-06,7.861236852719716766e-06,7.999153288732343376e-06,8.137069724744969986e-06,8.274986160757596596e-06,8.412902596770223206e-06,8.550819032782849816e-06,8.688735468795476426e-06 +0.000000000000000000e+00,1.359890856545859283e-07,2.719781713091718567e-07,4.079672569637577585e-07,5.439563426183436075e-07,6.799454282729294564e-07,8.159345139275153053e-07,9.519235995821011542e-07,1.087912685236687003e-06,1.223901770891272746e-06,1.359890856545858489e-06,1.495879942200444232e-06,1.631869027855029975e-06,1.767858113509615718e-06,1.903847199164201461e-06,2.039836284818787204e-06,2.175825370473372736e-06,2.311814456127958267e-06,2.447803541782543798e-06,2.583792627437129330e-06,2.719781713091714861e-06,2.855770798746300392e-06,2.991759884400885923e-06,3.127748970055471455e-06,3.263738055710056986e-06,3.399727141364642517e-06,3.535716227019228049e-06,3.671705312673813580e-06,3.807694398328399111e-06,3.943683483982984642e-06,4.079672569637570174e-06,4.215661655292155705e-06,4.351650740946741236e-06,4.487639826601326768e-06,4.623628912255912299e-06,4.759617997910497830e-06,4.895607083565083361e-06,5.031596169219668893e-06,5.167585254874254424e-06,5.303574340528839955e-06,5.439563426183425487e-06,5.575552511838011018e-06,5.711541597492596549e-06,5.847530683147182080e-06,5.983519768801767612e-06,6.119508854456353143e-06,6.255497940110938674e-06,6.391487025765524206e-06,6.527476111420109737e-06,6.663465197074695268e-06,6.799454282729280799e-06,6.935443368383866331e-06,7.071432454038451862e-06,7.207421539693037393e-06,7.343410625347622925e-06,7.479399711002208456e-06,7.615388796656793987e-06,7.751377882311380365e-06,7.887366967965967591e-06,8.023356053620554816e-06,8.159345139275142042e-06,8.295334224929729267e-06,8.431323310584316492e-06,8.567312396238903718e-06 +0.000000000000000000e+00,1.367465923848447105e-07,2.734931847696894209e-07,4.102397771545341578e-07,5.469863695393789477e-07,6.837329619242237376e-07,8.204795543090685274e-07,9.572261466939132114e-07,1.093972739078757895e-06,1.230719331463602579e-06,1.367465923848447263e-06,1.504212516233291947e-06,1.640959108618136631e-06,1.777705701002981315e-06,1.914452293387825999e-06,2.051198885772670683e-06,2.187945478157515367e-06,2.324692070542360051e-06,2.461438662927204735e-06,2.598185255312049419e-06,2.734931847696894103e-06,2.871678440081738787e-06,3.008425032466583471e-06,3.145171624851428155e-06,3.281918217236272839e-06,3.418664809621117523e-06,3.555411402005962207e-06,3.692157994390806891e-06,3.828904586775651152e-06,3.965651179160494989e-06,4.102397771545338826e-06,4.239144363930182663e-06,4.375890956315026500e-06,4.512637548699870336e-06,4.649384141084714173e-06,4.786130733469558010e-06,4.922877325854401847e-06,5.059623918239245684e-06,5.196370510624089521e-06,5.333117103008933358e-06,5.469863695393777195e-06,5.606610287778621032e-06,5.743356880163464869e-06,5.880103472548308706e-06,6.016850064933152543e-06,6.153596657317996380e-06,6.290343249702840217e-06,6.427089842087684054e-06,6.563836434472527891e-06,6.700583026857371728e-06,6.837329619242215565e-06,6.974076211627059402e-06,7.110822804011903239e-06,7.247569396396747076e-06,7.384315988781590913e-06,7.521062581166434749e-06,7.657809173551278586e-06,7.794555765936122423e-06,7.931302358320966260e-06,8.068048950705810097e-06,8.204795543090653934e-06,8.341542135475497771e-06,8.478288727860341608e-06,8.615035320245185445e-06 +0.000000000000000000e+00,1.379164360126256835e-07,2.758328720252513670e-07,4.137493080378770769e-07,5.516657440505028398e-07,6.895821800631286027e-07,8.274986160757543656e-07,9.654150520883801285e-07,1.103331488101005891e-06,1.241247924113631654e-06,1.379164360126257417e-06,1.517080796138883180e-06,1.654997232151508943e-06,1.792913668164134706e-06,1.930830104176760681e-06,2.068746540189386444e-06,2.206662976202012206e-06,2.344579412214637969e-06,2.482495848227263732e-06,2.620412284239889495e-06,2.758328720252515258e-06,2.896245156265141021e-06,3.034161592277766784e-06,3.172078028290392547e-06,3.309994464303018310e-06,3.447910900315644073e-06,3.585827336328269835e-06,3.723743772340895598e-06,3.861660208353521361e-06,3.999576644366147124e-06,4.137493080378772887e-06,4.275409516391398650e-06,4.413325952404024413e-06,4.551242388416650176e-06,4.689158824429275939e-06,4.827075260441901702e-06,4.964991696454527464e-06,5.102908132467153227e-06,5.240824568479778990e-06,5.378741004492404753e-06,5.516657440505030516e-06,5.654573876517656279e-06,5.792490312530282042e-06,5.930406748542907805e-06,6.068323184555533568e-06,6.206239620568159331e-06,6.344156056580785093e-06,6.482072492593410856e-06,6.619988928606036619e-06,6.757905364618662382e-06,6.895821800631288145e-06,7.033738236643913908e-06,7.171654672656539671e-06,7.309571108669165434e-06,7.447487544681791197e-06,7.585403980694416960e-06,7.723320416707042722e-06,7.861236852719669332e-06,7.999153288732295942e-06,8.137069724744922552e-06,8.274986160757549162e-06,8.412902596770175772e-06,8.550819032782802382e-06,8.688735468795428992e-06 +0.000000000000000000e+00,1.359890856545832019e-07,2.719781713091664039e-07,4.079672569637496058e-07,5.439563426183328078e-07,6.799454282729160097e-07,8.159345139274992117e-07,9.519235995820824136e-07,1.087912685236665616e-06,1.223901770891248818e-06,1.359890856545832019e-06,1.495879942200415221e-06,1.631869027854998423e-06,1.767858113509581625e-06,1.903847199164164827e-06,2.039836284818748241e-06,2.175825370473331655e-06,2.311814456127915068e-06,2.447803541782498482e-06,2.583792627437081896e-06,2.719781713091665309e-06,2.855770798746248723e-06,2.991759884400832137e-06,3.127748970055415551e-06,3.263738055709998964e-06,3.399727141364582378e-06,3.535716227019165792e-06,3.671705312673749205e-06,3.807694398328332619e-06,3.943683483982916033e-06,4.079672569637499870e-06,4.215661655292083707e-06,4.351650740946667544e-06,4.487639826601251382e-06,4.623628912255835219e-06,4.759617997910419056e-06,4.895607083565002893e-06,5.031596169219586731e-06,5.167585254874170568e-06,5.303574340528754405e-06,5.439563426183338242e-06,5.575552511837922079e-06,5.711541597492505917e-06,5.847530683147089754e-06,5.983519768801673591e-06,6.119508854456257428e-06,6.255497940110841266e-06,6.391487025765425103e-06,6.527476111420008940e-06,6.663465197074592777e-06,6.799454282729176614e-06,6.935443368383760452e-06,7.071432454038344289e-06,7.207421539692928126e-06,7.343410625347511963e-06,7.479399711002095800e-06,7.615388796656679638e-06,7.751377882311263475e-06,7.887366967965847312e-06,8.023356053620431149e-06,8.159345139275014987e-06,8.295334224929598824e-06,8.431323310584182661e-06,8.567312396238766498e-06 +0.000000000000000000e+00,1.367465923848456634e-07,2.734931847696913267e-07,4.102397771545370166e-07,5.469863695393827594e-07,6.837329619242285021e-07,8.204795543090742449e-07,9.572261466939199877e-07,1.093972739078765730e-06,1.230719331463611473e-06,1.367465923848457216e-06,1.504212516233302959e-06,1.640959108618148702e-06,1.777705701002994444e-06,1.914452293387839975e-06,2.051198885772685506e-06,2.187945478157531037e-06,2.324692070542376568e-06,2.461438662927222099e-06,2.598185255312067631e-06,2.734931847696913162e-06,2.871678440081758693e-06,3.008425032466604224e-06,3.145171624851449755e-06,3.281918217236295286e-06,3.418664809621140817e-06,3.555411402005986348e-06,3.692157994390831879e-06,3.828904586775677410e-06,3.965651179160522941e-06,4.102397771545368472e-06,4.239144363930214003e-06,4.375890956315059534e-06,4.512637548699905065e-06,4.649384141084750596e-06,4.786130733469596127e-06,4.922877325854441658e-06,5.059623918239287189e-06,5.196370510624132720e-06,5.333117103008978251e-06,5.469863695393823782e-06,5.606610287778669313e-06,5.743356880163514844e-06,5.880103472548360375e-06,6.016850064933205906e-06,6.153596657318051437e-06,6.290343249702896968e-06,6.427089842087742499e-06,6.563836434472588030e-06,6.700583026857433561e-06,6.837329619242279092e-06,6.974076211627124623e-06,7.110822804011970154e-06,7.247569396396815685e-06,7.384315988781661216e-06,7.521062581166506747e-06,7.657809173551353125e-06,7.794555765936198656e-06,7.931302358321044187e-06,8.068048950705889718e-06,8.204795543090735249e-06,8.341542135475580780e-06,8.478288727860426311e-06,8.615035320245271842e-06 +0.000000000000000000e+00,1.418460061502517404e-07,2.836920123005034808e-07,4.255380184507551947e-07,5.673840246010068557e-07,7.092300307512585167e-07,8.510760369015101776e-07,9.929220430517618386e-07,1.134768049202013500e-06,1.276614055352265161e-06,1.418460061502516822e-06,1.560306067652768483e-06,1.702152073803020143e-06,1.843998079953271804e-06,1.985844086103523254e-06,2.127690092253774491e-06,2.269536098404025729e-06,2.411382104554276966e-06,2.553228110704528204e-06,2.695074116854779441e-06,2.836920123005030678e-06,2.978766129155281916e-06,3.120612135305533153e-06,3.262458141455784391e-06,3.404304147606035628e-06,3.546150153756286866e-06,3.687996159906538103e-06,3.829842166056789341e-06,3.971688172207040578e-06,4.113534178357291816e-06,4.255380184507543053e-06,4.397226190657794291e-06,4.539072196808045528e-06,4.680918202958296765e-06,4.822764209108548003e-06,4.964610215258799240e-06,5.106456221409050478e-06,5.248302227559301715e-06,5.390148233709552953e-06,5.531994239859804190e-06,5.673840246010055428e-06,5.815686252160306665e-06,5.957532258310557903e-06,6.099378264460809140e-06,6.241224270611060378e-06,6.383070276761311615e-06,6.524916282911562852e-06,6.666762289061814090e-06,6.808608295212065327e-06,6.950454301362316565e-06,7.092300307512567802e-06,7.234146313662819040e-06,7.375992319813070277e-06,7.517838325963321515e-06,7.659684332113571905e-06,7.801530338263822296e-06,7.943376344414072686e-06,8.085222350564323076e-06,8.227068356714573467e-06,8.368914362864823857e-06,8.510760369015074248e-06,8.652606375165324638e-06,8.794452381315575029e-06,8.936298387465825419e-06 +0.000000000000000000e+00,1.398711598003916239e-07,2.797423196007832479e-07,4.196134794011748718e-07,5.594846392015664957e-07,6.993557990019581197e-07,8.392269588023497436e-07,9.790981186027412617e-07,1.118969278403132780e-06,1.258840438203524298e-06,1.398711598003915816e-06,1.538582757804307334e-06,1.678453917604698852e-06,1.818325077405090370e-06,1.958196237205481676e-06,2.098067397005872983e-06,2.237938556806264289e-06,2.377809716606655595e-06,2.517680876407046901e-06,2.657552036207438208e-06,2.797423196007829514e-06,2.937294355808220820e-06,3.077165515608612127e-06,3.217036675409003433e-06,3.356907835209394739e-06,3.496778995009786046e-06,3.636650154810177352e-06,3.776521314610568658e-06,3.916392474410959964e-06,4.056263634211351271e-06,4.196134794011742577e-06,4.336005953812133883e-06,4.475877113612525190e-06,4.615748273412916496e-06,4.755619433213307802e-06,4.895490593013699109e-06,5.035361752814090415e-06,5.175232912614481721e-06,5.315104072414873027e-06,5.454975232215264334e-06,5.594846392015655640e-06,5.734717551816046946e-06,5.874588711616438253e-06,6.014459871416829559e-06,6.154331031217220865e-06,6.294202191017612172e-06,6.434073350818003478e-06,6.573944510618394784e-06,6.713815670418786090e-06,6.853686830219177397e-06,6.993557990019568703e-06,7.133429149819960009e-06,7.273300309620351316e-06,7.413171469420742622e-06,7.553042629221133928e-06,7.692913789021525235e-06,7.832784948821916541e-06,7.972656108622307847e-06,8.112527268422699153e-06,8.252398428223090460e-06,8.392269588023481766e-06,8.532140747823873072e-06,8.672011907624264379e-06,8.811883067424655685e-06 +0.000000000000000000e+00,1.408759020883616686e-07,2.817518041767233372e-07,4.226277062650850058e-07,5.635036083534466743e-07,7.043795104418083429e-07,8.452554125301700115e-07,9.861313146185316801e-07,1.127007216706893349e-06,1.267883118795255017e-06,1.408759020883616686e-06,1.549634922971978354e-06,1.690510825060340023e-06,1.831386727148701692e-06,1.972262629237063360e-06,2.113138531325425241e-06,2.254014433413787121e-06,2.394890335502149001e-06,2.535766237590510882e-06,2.676642139678872762e-06,2.817518041767234642e-06,2.958393943855596523e-06,3.099269845943958403e-06,3.240145748032320283e-06,3.381021650120682164e-06,3.521897552209044044e-06,3.662773454297405924e-06,3.803649356385767805e-06,3.944525258474129262e-06,4.085401160562490718e-06,4.226277062650852175e-06,4.367152964739213632e-06,4.508028866827575089e-06,4.648904768915936546e-06,4.789780671004298002e-06,4.930656573092659459e-06,5.071532475181020916e-06,5.212408377269382373e-06,5.353284279357743830e-06,5.494160181446105287e-06,5.635036083534466743e-06,5.775911985622828200e-06,5.916787887711189657e-06,6.057663789799551114e-06,6.198539691887912571e-06,6.339415593976274028e-06,6.480291496064635484e-06,6.621167398152996941e-06,6.762043300241358398e-06,6.902919202329719855e-06,7.043795104418081312e-06,7.184671006506442769e-06,7.325546908594804225e-06,7.466422810683165682e-06,7.607298712771527139e-06,7.748174614859888596e-06,7.889050516948250053e-06,8.029926419036611510e-06,8.170802321124972966e-06,8.311678223213334423e-06,8.452554125301695880e-06,8.593430027390057337e-06,8.734305929478418794e-06,8.875181831566780250e-06 +0.000000000000000000e+00,1.418460061502538580e-07,2.836920123005077159e-07,4.255380184507615474e-07,5.673840246010153260e-07,7.092300307512691046e-07,8.510760369015228831e-07,9.929220430517766617e-07,1.134768049202030440e-06,1.276614055352284219e-06,1.418460061502537997e-06,1.560306067652791776e-06,1.702152073803045554e-06,1.843998079953299333e-06,1.985844086103552900e-06,2.127690092253806678e-06,2.269536098404060457e-06,2.411382104554314236e-06,2.553228110704568014e-06,2.695074116854821793e-06,2.836920123005075571e-06,2.978766129155329350e-06,3.120612135305583128e-06,3.262458141455836907e-06,3.404304147606090685e-06,3.546150153756344464e-06,3.687996159906598243e-06,3.829842166056852021e-06,3.971688172207105800e-06,4.113534178357359578e-06,4.255380184507613357e-06,4.397226190657867135e-06,4.539072196808120914e-06,4.680918202958374693e-06,4.822764209108628471e-06,4.964610215258882250e-06,5.106456221409136028e-06,5.248302227559389807e-06,5.390148233709643585e-06,5.531994239859897364e-06,5.673840246010151142e-06,5.815686252160404921e-06,5.957532258310658700e-06,6.099378264460912478e-06,6.241224270611166257e-06,6.383070276761420035e-06,6.524916282911673814e-06,6.666762289061927592e-06,6.808608295212181371e-06,6.950454301362435149e-06,7.092300307512688928e-06,7.234146313662942707e-06,7.375992319813196485e-06,7.517838325963450264e-06,7.659684332113704042e-06,7.801530338263957821e-06,7.943376344414211599e-06,8.085222350564465378e-06,8.227068356714719157e-06,8.368914362864972935e-06,8.510760369015226714e-06,8.652606375165480492e-06,8.794452381315734271e-06,8.936298387465988049e-06 +0.000000000000000000e+00,1.398711598003921269e-07,2.797423196007842537e-07,4.196134794011763541e-07,5.594846392015684016e-07,6.993557990019604490e-07,8.392269588023524965e-07,9.790981186027446498e-07,1.118969278403136803e-06,1.258840438203528956e-06,1.398711598003921110e-06,1.538582757804313263e-06,1.678453917604705416e-06,1.818325077405097570e-06,1.958196237205489723e-06,2.098067397005881876e-06,2.237938556806274030e-06,2.377809716606666183e-06,2.517680876407058336e-06,2.657552036207450490e-06,2.797423196007842643e-06,2.937294355808234796e-06,3.077165515608626950e-06,3.217036675409019103e-06,3.356907835209411256e-06,3.496778995009803410e-06,3.636650154810195563e-06,3.776521314610587716e-06,3.916392474410980293e-06,4.056263634211373294e-06,4.196134794011766294e-06,4.336005953812159294e-06,4.475877113612552295e-06,4.615748273412945295e-06,4.755619433213338295e-06,4.895490593013731296e-06,5.035361752814124296e-06,5.175232912614517297e-06,5.315104072414910297e-06,5.454975232215303297e-06,5.594846392015696298e-06,5.734717551816089298e-06,5.874588711616482298e-06,6.014459871416875299e-06,6.154331031217268299e-06,6.294202191017661299e-06,6.434073350818054300e-06,6.573944510618447300e-06,6.713815670418840301e-06,6.853686830219233301e-06,6.993557990019626301e-06,7.133429149820019302e-06,7.273300309620412302e-06,7.413171469420805302e-06,7.553042629221198303e-06,7.692913789021591303e-06,7.832784948821984303e-06,7.972656108622377304e-06,8.112527268422770304e-06,8.252398428223163305e-06,8.392269588023556305e-06,8.532140747823949305e-06,8.672011907624342306e-06,8.811883067424735306e-06 +0.000000000000000000e+00,1.408759020883659567e-07,2.817518041767319134e-07,4.226277062650978701e-07,5.635036083534638268e-07,7.043795104418297305e-07,8.452554125301956343e-07,9.861313146185615380e-07,1.127007216706927442e-06,1.267883118795293346e-06,1.408759020883659249e-06,1.549634922972025153e-06,1.690510825060391057e-06,1.831386727148756961e-06,1.972262629237123076e-06,2.113138531325489192e-06,2.254014433413855307e-06,2.394890335502221423e-06,2.535766237590587538e-06,2.676642139678953654e-06,2.817518041767319769e-06,2.958393943855685885e-06,3.099269845944052000e-06,3.240145748032418116e-06,3.381021650120784231e-06,3.521897552209150347e-06,3.662773454297516462e-06,3.803649356385882578e-06,3.944525258474248693e-06,4.085401160562614385e-06,4.226277062650980077e-06,4.367152964739345769e-06,4.508028866827711461e-06,4.648904768916077153e-06,4.789780671004442845e-06,4.930656573092808537e-06,5.071532475181174229e-06,5.212408377269539921e-06,5.353284279357905613e-06,5.494160181446271305e-06,5.635036083534636997e-06,5.775911985623002689e-06,5.916787887711368381e-06,6.057663789799734073e-06,6.198539691888099765e-06,6.339415593976465457e-06,6.480291496064831149e-06,6.621167398153196841e-06,6.762043300241562533e-06,6.902919202329928225e-06,7.043795104418293917e-06,7.184671006506659609e-06,7.325546908595025301e-06,7.466422810683390993e-06,7.607298712771756685e-06,7.748174614860122377e-06,7.889050516948488916e-06,8.029926419036855455e-06,8.170802321125221994e-06,8.311678223213588533e-06,8.452554125301955072e-06,8.593430027390321611e-06,8.734305929478688150e-06,8.875181831567054689e-06 +0.000000000000000000e+00,1.219019546139759021e-07,2.438039092279518041e-07,3.657058638419277062e-07,4.876078184559036082e-07,6.095097730698795103e-07,7.314117276838554123e-07,8.533136822978313144e-07,9.752156369118072165e-07,1.097117591525783013e-06,1.219019546139758809e-06,1.340921500753734605e-06,1.462823455367710401e-06,1.584725409981686197e-06,1.706627364595661994e-06,1.828529319209637790e-06,1.950431273823613586e-06,2.072333228437589382e-06,2.194235183051565178e-06,2.316137137665540974e-06,2.438039092279516771e-06,2.559941046893492567e-06,2.681843001507468363e-06,2.803744956121444159e-06,2.925646910735419955e-06,3.047548865349395751e-06,3.169450819963371548e-06,3.291352774577347344e-06,3.413254729191323140e-06,3.535156683805298936e-06,3.657058638419274732e-06,3.778960593033250529e-06,3.900862547647226325e-06,4.022764502261202121e-06,4.144666456875177917e-06,4.266568411489153713e-06,4.388470366103129509e-06,4.510372320717105306e-06,4.632274275331081102e-06,4.754176229945056898e-06,4.876078184559032694e-06,4.997980139173008490e-06,5.119882093786984287e-06,5.241784048400960083e-06,5.363686003014935879e-06,5.485587957628911675e-06,5.607489912242887471e-06,5.729391866856863267e-06,5.851293821470839064e-06,5.973195776084814860e-06,6.095097730698790656e-06,6.216999685312766452e-06,6.338901639926742248e-06,6.460803594540718044e-06,6.582705549154693841e-06,6.704607503768669637e-06,6.826509458382645433e-06,6.948411412996621229e-06,7.070313367610597025e-06,7.192215322224572822e-06,7.314117276838548618e-06,7.436019231452524414e-06,7.557921186066500210e-06,7.679823140680476853e-06 +0.000000000000000000e+00,1.225786327734203219e-07,2.451572655468406438e-07,3.677358983202609657e-07,4.903145310936812877e-07,6.128931638671016625e-07,7.354717966405220374e-07,8.580504294139424122e-07,9.806290621873627871e-07,1.103207694960783162e-06,1.225786327734203537e-06,1.348364960507623912e-06,1.470943593281044286e-06,1.593522226054464661e-06,1.716100858827885036e-06,1.838679491601305411e-06,1.961258124374725998e-06,2.083836757148146584e-06,2.206415389921567171e-06,2.328994022694987758e-06,2.451572655468408344e-06,2.574151288241828931e-06,2.696729921015249517e-06,2.819308553788670104e-06,2.941887186562090691e-06,3.064465819335511277e-06,3.187044452108931864e-06,3.309623084882352450e-06,3.432201717655773037e-06,3.554780350429193624e-06,3.677358983202614210e-06,3.799937615976034797e-06,3.922516248749455383e-06,4.045094881522875970e-06,4.167673514296296557e-06,4.290252147069717143e-06,4.412830779843137730e-06,4.535409412616558317e-06,4.657988045389978903e-06,4.780566678163399490e-06,4.903145310936820076e-06,5.025723943710240663e-06,5.148302576483661250e-06,5.270881209257081836e-06,5.393459842030502423e-06,5.516038474803923009e-06,5.638617107577343596e-06,5.761195740350764183e-06,5.883774373124184769e-06,6.006353005897605356e-06,6.128931638671025942e-06,6.251510271444446529e-06,6.374088904217867116e-06,6.496667536991287702e-06,6.619246169764708289e-06,6.741824802538128876e-06,6.864403435311549462e-06,6.986982068084970049e-06,7.109560700858390635e-06,7.232139333631811222e-06,7.354717966405231809e-06,7.477296599178652395e-06,7.599875231952072982e-06,7.722453864725494415e-06 +0.000000000000000000e+00,1.216795836959008400e-07,2.433591673918016799e-07,3.650387510877024934e-07,4.867183347836032540e-07,6.083979184795040145e-07,7.300775021754047751e-07,8.517570858713055356e-07,9.734366695672062962e-07,1.095116253263106951e-06,1.216795836959007606e-06,1.338475420654908260e-06,1.460155004350808915e-06,1.581834588046709570e-06,1.703514171742610224e-06,1.825193755438510879e-06,1.946873339134411322e-06,2.068552922830311765e-06,2.190232506526212208e-06,2.311912090222112651e-06,2.433591673918013093e-06,2.555271257613913536e-06,2.676950841309813979e-06,2.798630425005714422e-06,2.920310008701614865e-06,3.041989592397515308e-06,3.163669176093415751e-06,3.285348759789316194e-06,3.407028343485216637e-06,3.528707927181117080e-06,3.650387510877017523e-06,3.772067094572917966e-06,3.893746678268818408e-06,4.015426261964718851e-06,4.137105845660619294e-06,4.258785429356519737e-06,4.380465013052420180e-06,4.502144596748320623e-06,4.623824180444221066e-06,4.745503764140121509e-06,4.867183347836021952e-06,4.988862931531922395e-06,5.110542515227822838e-06,5.232222098923723281e-06,5.353901682619623723e-06,5.475581266315524166e-06,5.597260850011424609e-06,5.718940433707325052e-06,5.840620017403225495e-06,5.962299601099125938e-06,6.083979184795026381e-06,6.205658768490926824e-06,6.327338352186827267e-06,6.449017935882727710e-06,6.570697519578628153e-06,6.692377103274528596e-06,6.814056686970429038e-06,6.935736270666329481e-06,7.057415854362229924e-06,7.179095438058130367e-06,7.300775021754030810e-06,7.422454605449931253e-06,7.544134189145831696e-06,7.665813772841732139e-06 +0.000000000000000000e+00,1.217082245846291933e-07,2.434164491692583867e-07,3.651246737538875800e-07,4.868328983385167734e-07,6.085411229231459138e-07,7.302493475077750542e-07,8.519575720924041946e-07,9.736657966770333350e-07,1.095374021261662475e-06,1.217082245846291616e-06,1.338790470430920756e-06,1.460498695015549897e-06,1.582206919600179037e-06,1.703915144184808177e-06,1.825623368769437318e-06,1.947331593354066246e-06,2.069039817938695387e-06,2.190748042523324527e-06,2.312456267107953668e-06,2.434164491692582808e-06,2.555872716277211948e-06,2.677580940861841089e-06,2.799289165446470229e-06,2.920997390031099370e-06,3.042705614615728510e-06,3.164413839200357650e-06,3.286122063784986791e-06,3.407830288369615931e-06,3.529538512954245072e-06,3.651246737538874212e-06,3.772954962123503352e-06,3.894663186708132493e-06,4.016371411292761633e-06,4.138079635877390774e-06,4.259787860462019914e-06,4.381496085046649054e-06,4.503204309631278195e-06,4.624912534215907335e-06,4.746620758800536476e-06,4.868328983385165616e-06,4.990037207969794756e-06,5.111745432554423897e-06,5.233453657139053037e-06,5.355161881723682178e-06,5.476870106308311318e-06,5.598578330892940458e-06,5.720286555477569599e-06,5.841994780062198739e-06,5.963703004646827880e-06,6.085411229231457020e-06,6.207119453816086160e-06,6.328827678400715301e-06,6.450535902985344441e-06,6.572244127569973582e-06,6.693952352154602722e-06,6.815660576739231862e-06,6.937368801323861003e-06,7.059077025908490143e-06,7.180785250493119284e-06,7.302493475077748424e-06,7.424201699662377564e-06,7.545909924247006705e-06,7.667618148831635845e-06 +0.000000000000000000e+00,1.223455248199156073e-07,2.446910496398312146e-07,3.670365744597468219e-07,4.893820992796624292e-07,6.117276240995780894e-07,7.340731489194937496e-07,8.564186737394094098e-07,9.787641985593250701e-07,1.101109723379240730e-06,1.223455248199156391e-06,1.345800773019072051e-06,1.468146297838987711e-06,1.590491822658903371e-06,1.712837347478819031e-06,1.835182872298734692e-06,1.957528397118650564e-06,2.079873921938566647e-06,2.202219446758482731e-06,2.324564971578398815e-06,2.446910496398314899e-06,2.569256021218230982e-06,2.691601546038147066e-06,2.813947070858063150e-06,2.936292595677979234e-06,3.058638120497895317e-06,3.180983645317811401e-06,3.303329170137727485e-06,3.425674694957643569e-06,3.548020219777559652e-06,3.670365744597475736e-06,3.792711269417391820e-06,3.915056794237307904e-06,4.037402319057223987e-06,4.159747843877140071e-06,4.282093368697056155e-06,4.404438893516972239e-06,4.526784418336888322e-06,4.649129943156804406e-06,4.771475467976720490e-06,4.893820992796636573e-06,5.016166517616552657e-06,5.138512042436468741e-06,5.260857567256384825e-06,5.383203092076300908e-06,5.505548616896216992e-06,5.627894141716133076e-06,5.750239666536049160e-06,5.872585191355965243e-06,5.994930716175881327e-06,6.117276240995797411e-06,6.239621765815713495e-06,6.361967290635629578e-06,6.484312815455545662e-06,6.606658340275461746e-06,6.729003865095377830e-06,6.851349389915293913e-06,6.973694914735209997e-06,7.096040439555126081e-06,7.218385964375042165e-06,7.340731489194958248e-06,7.463077014014874332e-06,7.585422538834790416e-06,7.707768063654705653e-06 +0.000000000000000000e+00,1.221865271904276301e-07,2.443730543808552601e-07,3.665595815712828902e-07,4.887461087617105202e-07,6.109326359521381503e-07,7.331191631425657804e-07,8.553056903329934104e-07,9.774922175234210405e-07,1.099678744713848671e-06,1.221865271904276301e-06,1.344051799094703931e-06,1.466238326285131561e-06,1.588424853475559191e-06,1.710611380665986821e-06,1.832797907856414451e-06,1.954984435046842081e-06,2.077170962237269711e-06,2.199357489427697341e-06,2.321544016618124971e-06,2.443730543808552601e-06,2.565917070998980231e-06,2.688103598189407861e-06,2.810290125379835491e-06,2.932476652570263121e-06,3.054663179760690752e-06,3.176849706951118382e-06,3.299036234141546012e-06,3.421222761331973642e-06,3.543409288522401272e-06,3.665595815712828902e-06,3.787782342903256532e-06,3.909968870093684162e-06,4.032155397284111792e-06,4.154341924474539422e-06,4.276528451664967052e-06,4.398714978855394682e-06,4.520901506045822312e-06,4.643088033236249942e-06,4.765274560426677572e-06,4.887461087617105202e-06,5.009647614807532833e-06,5.131834141997960463e-06,5.254020669188388093e-06,5.376207196378815723e-06,5.498393723569243353e-06,5.620580250759670983e-06,5.742766777950098613e-06,5.864953305140526243e-06,5.987139832330953873e-06,6.109326359521381503e-06,6.231512886711809133e-06,6.353699413902236763e-06,6.475885941092664393e-06,6.598072468283092023e-06,6.720258995473519653e-06,6.842445522663947283e-06,6.964632049854374914e-06,7.086818577044802544e-06,7.209005104235230174e-06,7.331191631425657804e-06,7.453378158616085434e-06,7.575564685806513064e-06,7.697751212996939847e-06 +0.000000000000000000e+00,1.217314756365486968e-07,2.434629512730973936e-07,3.651944269096460639e-07,4.869259025461946813e-07,6.086573781827432986e-07,7.303888538192919160e-07,8.521203294558405334e-07,9.738518050923891508e-07,1.095583280728937768e-06,1.217314756365486386e-06,1.339046232002035003e-06,1.460777707638583620e-06,1.582509183275132238e-06,1.704240658911680855e-06,1.825972134548229472e-06,1.947703610184777878e-06,2.069435085821326495e-06,2.191166561457875113e-06,2.312898037094423730e-06,2.434629512730972348e-06,2.556360988367520965e-06,2.678092464004069582e-06,2.799823939640618200e-06,2.921555415277166817e-06,3.043286890913715434e-06,3.165018366550264052e-06,3.286749842186812669e-06,3.408481317823361287e-06,3.530212793459909904e-06,3.651944269096458521e-06,3.773675744733007139e-06,3.895407220369555756e-06,4.017138696006104373e-06,4.138870171642652991e-06,4.260601647279201608e-06,4.382333122915750226e-06,4.504064598552298843e-06,4.625796074188847460e-06,4.747527549825396078e-06,4.869259025461944695e-06,4.990990501098493312e-06,5.112721976735041930e-06,5.234453452371590547e-06,5.356184928008139165e-06,5.477916403644687782e-06,5.599647879281236399e-06,5.721379354917785017e-06,5.843110830554333634e-06,5.964842306190882251e-06,6.086573781827430869e-06,6.208305257463979486e-06,6.330036733100528104e-06,6.451768208737076721e-06,6.573499684373625338e-06,6.695231160010173956e-06,6.816962635646722573e-06,6.938694111283271190e-06,7.060425586919819808e-06,7.182157062556368425e-06,7.303888538192917043e-06,7.425620013829465660e-06,7.547351489466014277e-06,7.669082965102562048e-06 +0.000000000000000000e+00,1.214939123076134227e-07,2.429878246152268454e-07,3.644817369228402680e-07,4.859756492304536907e-07,6.074695615380671134e-07,7.289634738456805361e-07,8.504573861532939587e-07,9.719512984609073814e-07,1.093445210768520910e-06,1.214939123076134439e-06,1.336433035383747967e-06,1.457926947691361496e-06,1.579420859998975024e-06,1.700914772306588553e-06,1.822408684614202081e-06,1.943902596921815610e-06,2.065396509229429138e-06,2.186890421537042667e-06,2.308384333844656196e-06,2.429878246152269724e-06,2.551372158459883253e-06,2.672866070767496781e-06,2.794359983075110310e-06,2.915853895382723838e-06,3.037347807690337367e-06,3.158841719997950895e-06,3.280335632305564424e-06,3.401829544613177953e-06,3.523323456920791481e-06,3.644817369228405010e-06,3.766311281536018538e-06,3.887805193843632067e-06,4.009299106151246019e-06,4.130793018458859971e-06,4.252286930766473923e-06,4.373780843074087875e-06,4.495274755381701827e-06,4.616768667689315779e-06,4.738262579996929731e-06,4.859756492304543683e-06,4.981250404612157635e-06,5.102744316919771588e-06,5.224238229227385540e-06,5.345732141534999492e-06,5.467226053842613444e-06,5.588719966150227396e-06,5.710213878457841348e-06,5.831707790765455300e-06,5.953201703073069252e-06,6.074695615380683204e-06,6.196189527688297156e-06,6.317683439995911108e-06,6.439177352303525060e-06,6.560671264611139012e-06,6.682165176918752964e-06,6.803659089226366917e-06,6.925153001533980869e-06,7.046646913841594821e-06,7.168140826149208773e-06,7.289634738456822725e-06,7.411128650764436677e-06,7.532622563072050629e-06,7.654116475379664581e-06 +0.000000000000000000e+00,1.219019546139676170e-07,2.438039092279352340e-07,3.657058638419028246e-07,4.876078184558703622e-07,6.095097730698378998e-07,7.314117276838054374e-07,8.533136822977729750e-07,9.752156369117405126e-07,1.097117591525708050e-06,1.219019546139675588e-06,1.340921500753643125e-06,1.462823455367610663e-06,1.584725409981578201e-06,1.706627364595545738e-06,1.828529319209513276e-06,1.950431273823480602e-06,2.072333228437447928e-06,2.194235183051415253e-06,2.316137137665382579e-06,2.438039092279349905e-06,2.559941046893317231e-06,2.681843001507284557e-06,2.803744956121251883e-06,2.925646910735219208e-06,3.047548865349186534e-06,3.169450819963153860e-06,3.291352774577121186e-06,3.413254729191088512e-06,3.535156683805055838e-06,3.657058638419023164e-06,3.778960593032990489e-06,3.900862547646957815e-06,4.022764502260925141e-06,4.144666456874892467e-06,4.266568411488859793e-06,4.388470366102827119e-06,4.510372320716794445e-06,4.632274275330761770e-06,4.754176229944729096e-06,4.876078184558696422e-06,4.997980139172663748e-06,5.119882093786631074e-06,5.241784048400598400e-06,5.363686003014565725e-06,5.485587957628533051e-06,5.607489912242500377e-06,5.729391866856467703e-06,5.851293821470435029e-06,5.973195776084402355e-06,6.095097730698369681e-06,6.216999685312337006e-06,6.338901639926304332e-06,6.460803594540271658e-06,6.582705549154238984e-06,6.704607503768206310e-06,6.826509458382173636e-06,6.948411412996140961e-06,7.070313367610108287e-06,7.192215322224075613e-06,7.314117276838042939e-06,7.436019231452010265e-06,7.557921186065977591e-06,7.679823140679944917e-06 +0.000000000000000000e+00,1.225786327734118251e-07,2.451572655468236502e-07,3.677358983202355018e-07,4.903145310936474063e-07,6.128931638670593109e-07,7.354717966404712154e-07,8.580504294138831199e-07,9.806290621872950244e-07,1.103207694960706929e-06,1.225786327734118833e-06,1.348364960507530738e-06,1.470943593280942643e-06,1.593522226054354547e-06,1.716100858827766452e-06,1.838679491601178356e-06,1.961258124374590472e-06,2.083836757148002589e-06,2.206415389921414705e-06,2.328994022694826821e-06,2.451572655468238938e-06,2.574151288241651054e-06,2.696729921015063170e-06,2.819308553788475286e-06,2.941887186561887403e-06,3.064465819335299519e-06,3.187044452108711635e-06,3.309623084882123752e-06,3.432201717655535868e-06,3.554780350428947984e-06,3.677358983202360100e-06,3.799937615975772217e-06,3.922516248749184333e-06,4.045094881522596449e-06,4.167673514296008565e-06,4.290252147069420682e-06,4.412830779842832798e-06,4.535409412616244914e-06,4.657988045389657031e-06,4.780566678163069147e-06,4.903145310936481263e-06,5.025723943709893379e-06,5.148302576483305496e-06,5.270881209256717612e-06,5.393459842030129728e-06,5.516038474803541845e-06,5.638617107576953961e-06,5.761195740350366077e-06,5.883774373123778193e-06,6.006353005897190310e-06,6.128931638670602426e-06,6.251510271444014542e-06,6.374088904217426659e-06,6.496667536990838775e-06,6.619246169764250891e-06,6.741824802537663007e-06,6.864403435311075124e-06,6.986982068084487240e-06,7.109560700857899356e-06,7.232139333631311473e-06,7.354717966404723589e-06,7.477296599178135705e-06,7.599875231951547821e-06,7.722453864724959091e-06 +0.000000000000000000e+00,1.217314756365443557e-07,2.434629512730887115e-07,3.651944269096330408e-07,4.869259025461773171e-07,6.086573781827215934e-07,7.303888538192658697e-07,8.521203294558101461e-07,9.738518050923544224e-07,1.095583280728898593e-06,1.217314756365442763e-06,1.339046232001986934e-06,1.460777707638531104e-06,1.582509183275075275e-06,1.704240658911619445e-06,1.825972134548163616e-06,1.947703610184707574e-06,2.069435085821251533e-06,2.191166561457795492e-06,2.312898037094339450e-06,2.434629512730883409e-06,2.556360988367427368e-06,2.678092464003971326e-06,2.799823939640515285e-06,2.921555415277059244e-06,3.043286890913603203e-06,3.165018366550147161e-06,3.286749842186691120e-06,3.408481317823235079e-06,3.530212793459779037e-06,3.651944269096322996e-06,3.773675744732866955e-06,3.895407220369410913e-06,4.017138696005954449e-06,4.138870171642497984e-06,4.260601647279041519e-06,4.382333122915585054e-06,4.504064598552128589e-06,4.625796074188672124e-06,4.747527549825215660e-06,4.869259025461759195e-06,4.990990501098302730e-06,5.112721976734846265e-06,5.234453452371389800e-06,5.356184928007933336e-06,5.477916403644476871e-06,5.599647879281020406e-06,5.721379354917563941e-06,5.843110830554107476e-06,5.964842306190651011e-06,6.086573781827194547e-06,6.208305257463738082e-06,6.330036733100281617e-06,6.451768208736825152e-06,6.573499684373368687e-06,6.695231160009912222e-06,6.816962635646455758e-06,6.938694111282999293e-06,7.060425586919542828e-06,7.182157062556086363e-06,7.303888538192629898e-06,7.425620013829173434e-06,7.547351489465716969e-06,7.669082965102260504e-06 +0.000000000000000000e+00,1.217082245846210936e-07,2.434164491692421872e-07,3.651246737538632808e-07,4.868328983384843743e-07,6.085411229231054679e-07,7.302493475077265615e-07,8.519575720923476551e-07,9.736657966769687487e-07,1.095374021261589842e-06,1.217082245846210936e-06,1.338790470430832029e-06,1.460498695015453123e-06,1.582206919600074217e-06,1.703915144184695310e-06,1.825623368769316404e-06,1.947331593353937497e-06,2.069039817938558591e-06,2.190748042523179685e-06,2.312456267107800778e-06,2.434164491692421872e-06,2.555872716277042965e-06,2.677580940861664059e-06,2.799289165446285152e-06,2.920997390030906246e-06,3.042705614615527340e-06,3.164413839200148433e-06,3.286122063784769527e-06,3.407830288369390620e-06,3.529538512954011714e-06,3.651246737538632808e-06,3.772954962123253901e-06,3.894663186707874995e-06,4.016371411292495665e-06,4.138079635877116335e-06,4.259787860461737005e-06,4.381496085046357675e-06,4.503204309630978345e-06,4.624912534215599015e-06,4.746620758800219685e-06,4.868328983384840355e-06,4.990037207969461025e-06,5.111745432554081695e-06,5.233453657138702366e-06,5.355161881723323036e-06,5.476870106307943706e-06,5.598578330892564376e-06,5.720286555477185046e-06,5.841994780061805716e-06,5.963703004646426386e-06,6.085411229231047056e-06,6.207119453815667726e-06,6.328827678400288396e-06,6.450535902984909066e-06,6.572244127569529736e-06,6.693952352154150406e-06,6.815660576738771076e-06,6.937368801323391747e-06,7.059077025908012417e-06,7.180785250492633087e-06,7.302493475077253757e-06,7.424201699661874427e-06,7.545909924246495097e-06,7.667618148831115767e-06 +0.000000000000000000e+00,1.223455248199072428e-07,2.446910496398144857e-07,3.670365744597217285e-07,4.893820992796289713e-07,6.117276240995361612e-07,7.340731489194433511e-07,8.564186737393505410e-07,9.787641985592577309e-07,1.101109723379164921e-06,1.223455248199072111e-06,1.345800773018979301e-06,1.468146297838886491e-06,1.590491822658793680e-06,1.712837347478700870e-06,1.835182872298608060e-06,1.957528397118515038e-06,2.079873921938421805e-06,2.202219446758328571e-06,2.324564971578235338e-06,2.446910496398142104e-06,2.569256021218048870e-06,2.691601546037955637e-06,2.813947070857862403e-06,2.936292595677769169e-06,3.058638120497675936e-06,3.180983645317582702e-06,3.303329170137489469e-06,3.425674694957396235e-06,3.548020219777303001e-06,3.670365744597209768e-06,3.792711269417116534e-06,3.915056794237023300e-06,4.037402319056930067e-06,4.159747843876836833e-06,4.282093368696743600e-06,4.404438893516650366e-06,4.526784418336557132e-06,4.649129943156463899e-06,4.771475467976370665e-06,4.893820992796277432e-06,5.016166517616184198e-06,5.138512042436090964e-06,5.260857567255997731e-06,5.383203092075904497e-06,5.505548616895811263e-06,5.627894141715718030e-06,5.750239666535624796e-06,5.872585191355531563e-06,5.994930716175438329e-06,6.117276240995345095e-06,6.239621765815251862e-06,6.361967290635158628e-06,6.484312815455065394e-06,6.606658340274972161e-06,6.729003865094878927e-06,6.851349389914785694e-06,6.973694914734692460e-06,7.096040439554599226e-06,7.218385964374505993e-06,7.340731489194412759e-06,7.463077014014319526e-06,7.585422538834226292e-06,7.707768063654133058e-06 +0.000000000000000000e+00,1.221865271904199009e-07,2.443730543808398018e-07,3.665595815712597027e-07,4.887461087616796035e-07,6.109326359520995044e-07,7.331191631425194053e-07,8.553056903329393062e-07,9.774922175233592071e-07,1.099678744713779214e-06,1.221865271904199221e-06,1.344051799094619227e-06,1.466238326285039234e-06,1.588424853475459241e-06,1.710611380665879248e-06,1.832797907856299254e-06,1.954984435046719261e-06,2.077170962237139268e-06,2.199357489427559275e-06,2.321544016617979282e-06,2.443730543808399288e-06,2.565917070998819295e-06,2.688103598189239302e-06,2.810290125379659309e-06,2.932476652570079315e-06,3.054663179760499322e-06,3.176849706950919329e-06,3.299036234141339336e-06,3.421222761331759342e-06,3.543409288522179349e-06,3.665595815712599356e-06,3.787782342903019363e-06,3.909968870093439369e-06,4.032155397283859376e-06,4.154341924474279383e-06,4.276528451664699390e-06,4.398714978855119397e-06,4.520901506045539403e-06,4.643088033235959410e-06,4.765274560426379417e-06,4.887461087616799424e-06,5.009647614807219430e-06,5.131834141997639437e-06,5.254020669188059444e-06,5.376207196378479451e-06,5.498393723568899457e-06,5.620580250759319464e-06,5.742766777949739471e-06,5.864953305140159478e-06,5.987139832330579484e-06,6.109326359520999491e-06,6.231512886711419498e-06,6.353699413901839505e-06,6.475885941092259512e-06,6.598072468282679518e-06,6.720258995473099525e-06,6.842445522663519532e-06,6.964632049853939539e-06,7.086818577044359545e-06,7.209005104234779552e-06,7.331191631425199559e-06,7.453378158615619566e-06,7.575564685806039572e-06,7.697751212996458732e-06 +0.000000000000000000e+00,1.237522734324086185e-07,2.475045468648172371e-07,3.712568202972258821e-07,4.950090937296345800e-07,6.187613671620432780e-07,7.425136405944519759e-07,8.662659140268606739e-07,9.900181874592693718e-07,1.113770460891678176e-06,1.237522734324086980e-06,1.361275007756495783e-06,1.485027281188904587e-06,1.608779554621313391e-06,1.732531828053722195e-06,1.856284101486130999e-06,1.980036374918540014e-06,2.103788648350949030e-06,2.227540921783358045e-06,2.351293195215767061e-06,2.475045468648176077e-06,2.598797742080585092e-06,2.722550015512994108e-06,2.846302288945403123e-06,2.970054562377812139e-06,3.093806835810221155e-06,3.217559109242630170e-06,3.341311382675039186e-06,3.465063656107448201e-06,3.588815929539857217e-06,3.712568202972266232e-06,3.836320476404675248e-06,3.960072749837084264e-06,4.083825023269493279e-06,4.207577296701902295e-06,4.331329570134311310e-06,4.455081843566720326e-06,4.578834116999129342e-06,4.702586390431538357e-06,4.826338663863947373e-06,4.950090937296356388e-06,5.073843210728765404e-06,5.197595484161174420e-06,5.321347757593583435e-06,5.445100031025992451e-06,5.568852304458401466e-06,5.692604577890810482e-06,5.816356851323219497e-06,5.940109124755628513e-06,6.063861398188037529e-06,6.187613671620446544e-06,6.311365945052855560e-06,6.435118218485264575e-06,6.558870491917673591e-06,6.682622765350082607e-06,6.806375038782491622e-06,6.930127312214900638e-06,7.053879585647309653e-06,7.177631859079718669e-06,7.301384132512127685e-06,7.425136405944536700e-06,7.548888679376945716e-06,7.672640952809355578e-06,7.796393226241764594e-06 +0.000000000000000000e+00,1.230484471928199942e-07,2.460968943856399885e-07,3.691453415784600092e-07,4.921937887712800828e-07,6.152422359641001565e-07,7.382906831569202301e-07,8.613391303497403038e-07,9.843875775425603774e-07,1.107436024735380451e-06,1.230484471928200525e-06,1.353532919121020598e-06,1.476581366313840672e-06,1.599629813506660746e-06,1.722678260699480819e-06,1.845726707892300893e-06,1.968775155085121178e-06,2.091823602277941464e-06,2.214872049470761749e-06,2.337920496663582035e-06,2.460968943856402320e-06,2.584017391049222605e-06,2.707065838242042891e-06,2.830114285434863176e-06,2.953162732627683462e-06,3.076211179820503747e-06,3.199259627013324032e-06,3.322308074206144318e-06,3.445356521398964603e-06,3.568404968591784889e-06,3.691453415784605174e-06,3.814501862977425459e-06,3.937550310170245745e-06,4.060598757363065607e-06,4.183647204555885469e-06,4.306695651748705330e-06,4.429744098941525192e-06,4.552792546134345054e-06,4.675840993327164916e-06,4.798889440519984778e-06,4.921937887712804640e-06,5.044986334905624502e-06,5.168034782098444364e-06,5.291083229291264226e-06,5.414131676484084087e-06,5.537180123676903949e-06,5.660228570869723811e-06,5.783277018062543673e-06,5.906325465255363535e-06,6.029373912448183397e-06,6.152422359641003259e-06,6.275470806833823121e-06,6.398519254026642983e-06,6.521567701219462844e-06,6.644616148412282706e-06,6.767664595605102568e-06,6.890713042797922430e-06,7.013761489990742292e-06,7.136809937183562154e-06,7.259858384376382016e-06,7.382906831569201878e-06,7.505955278762021740e-06,7.629003725954841601e-06,7.752052173147661463e-06 +0.000000000000000000e+00,1.232971790700695661e-07,2.465943581401391322e-07,3.698915372102086983e-07,4.931887162802782644e-07,6.164858953503477776e-07,7.397830744204172907e-07,8.630802534904868039e-07,9.863774325605563170e-07,1.109674611630625830e-06,1.232971790700695343e-06,1.356268969770764857e-06,1.479566148840834370e-06,1.602863327910903883e-06,1.726160506980973396e-06,1.849457686051042909e-06,1.972754865121112211e-06,2.096052044191181512e-06,2.219349223261250813e-06,2.342646402331320115e-06,2.465943581401389416e-06,2.589240760471458718e-06,2.712537939541528019e-06,2.835835118611597320e-06,2.959132297681666622e-06,3.082429476751735923e-06,3.205726655821805225e-06,3.329023834891874526e-06,3.452321013961943827e-06,3.575618193032013129e-06,3.698915372102082430e-06,3.822212551172151732e-06,3.945509730242221033e-06,4.068806909312290334e-06,4.192104088382359636e-06,4.315401267452428937e-06,4.438698446522498239e-06,4.561995625592567540e-06,4.685292804662636841e-06,4.808589983732706143e-06,4.931887162802775444e-06,5.055184341872844746e-06,5.178481520942914047e-06,5.301778700012983348e-06,5.425075879083052650e-06,5.548373058153121951e-06,5.671670237223191253e-06,5.794967416293260554e-06,5.918264595363329855e-06,6.041561774433399157e-06,6.164858953503468458e-06,6.288156132573537760e-06,6.411453311643607061e-06,6.534750490713676362e-06,6.658047669783745664e-06,6.781344848853814965e-06,6.904642027923884267e-06,7.027939206993953568e-06,7.151236386064022869e-06,7.274533565134092171e-06,7.397830744204161472e-06,7.521127923274230774e-06,7.644425102344300075e-06,7.767722281414369376e-06 +0.000000000000000000e+00,1.237522734323998835e-07,2.475045468647997670e-07,3.712568202971996241e-07,4.950090937295994282e-07,6.187613671619992323e-07,7.425136405943990364e-07,8.662659140267988405e-07,9.900181874591986446e-07,1.113770460891598555e-06,1.237522734323998465e-06,1.361275007756398375e-06,1.485027281188798285e-06,1.608779554621198195e-06,1.732531828053598104e-06,1.856284101485998014e-06,1.980036374918397713e-06,2.103788648350797411e-06,2.227540921783197109e-06,2.351293195215596807e-06,2.475045468647996506e-06,2.598797742080396204e-06,2.722550015512795902e-06,2.846302288945195600e-06,2.970054562377595299e-06,3.093806835809994997e-06,3.217559109242394695e-06,3.341311382674794393e-06,3.465063656107194091e-06,3.588815929539593790e-06,3.712568202971993488e-06,3.836320476404393186e-06,3.960072749836792884e-06,4.083825023269192583e-06,4.207577296701592281e-06,4.331329570133991979e-06,4.455081843566391677e-06,4.578834116998791375e-06,4.702586390431191074e-06,4.826338663863590772e-06,4.950090937295990470e-06,5.073843210728390168e-06,5.197595484160789867e-06,5.321347757593189565e-06,5.445100031025589263e-06,5.568852304457988961e-06,5.692604577890388659e-06,5.816356851322788358e-06,5.940109124755188056e-06,6.063861398187587754e-06,6.187613671619987452e-06,6.311365945052387151e-06,6.435118218484786849e-06,6.558870491917186547e-06,6.682622765349586245e-06,6.806375038781985943e-06,6.930127312214385642e-06,7.053879585646785340e-06,7.177631859079185038e-06,7.301384132511584736e-06,7.425136405943984435e-06,7.548888679376384133e-06,7.672640952808782984e-06,7.796393226241181835e-06 +0.000000000000000000e+00,1.230484471928114974e-07,2.460968943856229949e-07,3.691453415784344923e-07,4.921937887712459898e-07,6.152422359640574872e-07,7.382906831568689846e-07,8.613391303496804821e-07,9.843875775424919795e-07,1.107436024735303371e-06,1.230484471928114763e-06,1.353532919120926154e-06,1.476581366313737546e-06,1.599629813506548937e-06,1.722678260699360329e-06,1.845726707892171720e-06,1.968775155084983112e-06,2.091823602277794504e-06,2.214872049470605895e-06,2.337920496663417287e-06,2.460968943856228678e-06,2.584017391049040070e-06,2.707065838241851461e-06,2.830114285434662853e-06,2.953162732627474244e-06,3.076211179820285636e-06,3.199259627013097028e-06,3.322308074205908419e-06,3.445356521398719811e-06,3.568404968591531202e-06,3.691453415784342594e-06,3.814501862977153985e-06,3.937550310169965377e-06,4.060598757362776768e-06,4.183647204555588160e-06,4.306695651748399552e-06,4.429744098941210943e-06,4.552792546134022335e-06,4.675840993326833726e-06,4.798889440519645118e-06,4.921937887712456509e-06,5.044986334905267901e-06,5.168034782098079293e-06,5.291083229290890684e-06,5.414131676483702076e-06,5.537180123676513467e-06,5.660228570869324859e-06,5.783277018062136250e-06,5.906325465254947642e-06,6.029373912447759033e-06,6.152422359640570425e-06,6.275470806833381817e-06,6.398519254026193208e-06,6.521567701219004600e-06,6.644616148411815991e-06,6.767664595604627383e-06,6.890713042797438774e-06,7.013761489990250166e-06,7.136809937183061557e-06,7.259858384375872949e-06,7.382906831568684341e-06,7.505955278761495732e-06,7.629003725954307124e-06,7.752052173147119362e-06 +0.000000000000000000e+00,1.232971790700620487e-07,2.465943581401240974e-07,3.698915372101861460e-07,4.931887162802481947e-07,6.164858953503102964e-07,7.397830744203723980e-07,8.630802534904344996e-07,9.863774325604966012e-07,1.109674611630558703e-06,1.232971790700620804e-06,1.356268969770682906e-06,1.479566148840745008e-06,1.602863327910807109e-06,1.726160506980869211e-06,1.849457686050931313e-06,1.972754865120993626e-06,2.096052044191056151e-06,2.219349223261118676e-06,2.342646402331181201e-06,2.465943581401243727e-06,2.589240760471306252e-06,2.712537939541368777e-06,2.835835118611431302e-06,2.959132297681493827e-06,3.082429476751556352e-06,3.205726655821618877e-06,3.329023834891681402e-06,3.452321013961743928e-06,3.575618193031806453e-06,3.698915372101868978e-06,3.822212551171931503e-06,3.945509730241994028e-06,4.068806909312056553e-06,4.192104088382119078e-06,4.315401267452181604e-06,4.438698446522244129e-06,4.561995625592306654e-06,4.685292804662369179e-06,4.808589983732431704e-06,4.931887162802494229e-06,5.055184341872556754e-06,5.178481520942619280e-06,5.301778700012681805e-06,5.425075879082744330e-06,5.548373058152806855e-06,5.671670237222869380e-06,5.794967416292931905e-06,5.918264595362994430e-06,6.041561774433056956e-06,6.164858953503119481e-06,6.288156132573182006e-06,6.411453311643244531e-06,6.534750490713307056e-06,6.658047669783369581e-06,6.781344848853432106e-06,6.904642027923494632e-06,7.027939206993557157e-06,7.151236386063619682e-06,7.274533565133682207e-06,7.397830744203744732e-06,7.521127923273807257e-06,7.644425102343869782e-06,7.767722281413932307e-06 +0.000000000000000000e+00,1.258488568283761578e-07,2.516977136567523156e-07,3.775465704851284734e-07,5.033954273135046311e-07,6.292442841418807360e-07,7.550931409702568408e-07,8.809419977986329457e-07,1.006790854627009051e-06,1.132639711455385155e-06,1.258488568283761260e-06,1.384337425112137365e-06,1.510186281940513470e-06,1.636035138768889575e-06,1.761883995597265680e-06,1.887732852425641784e-06,2.013581709254017678e-06,2.139430566082393782e-06,2.265279422910769887e-06,2.391128279739145992e-06,2.516977136567522097e-06,2.642825993395898202e-06,2.768674850224274307e-06,2.894523707052650411e-06,3.020372563881026516e-06,3.146221420709402621e-06,3.272070277537778726e-06,3.397919134366154831e-06,3.523767991194530936e-06,3.649616848022907041e-06,3.775465704851283145e-06,3.901314561679659250e-06,4.027163418508035355e-06,4.153012275336411460e-06,4.278861132164787565e-06,4.404709988993163670e-06,4.530558845821539774e-06,4.656407702649915879e-06,4.782256559478291984e-06,4.908105416306668089e-06,5.033954273135044194e-06,5.159803129963420299e-06,5.285651986791796403e-06,5.411500843620172508e-06,5.537349700448548613e-06,5.663198557276924718e-06,5.789047414105300823e-06,5.914896270933676928e-06,6.040745127762053033e-06,6.166593984590429137e-06,6.292442841418805242e-06,6.418291698247181347e-06,6.544140555075557452e-06,6.669989411903933557e-06,6.795838268732309662e-06,6.921687125560685766e-06,7.047535982389061871e-06,7.173384839217437976e-06,7.299233696045814081e-06,7.425082552874190186e-06,7.550931409702566291e-06,7.676780266530942396e-06,7.802629123359318500e-06,7.928477980187694605e-06 +0.000000000000000000e+00,1.247015443508205996e-07,2.494030887016411992e-07,3.741046330524617988e-07,4.988061774032823985e-07,6.235077217541030510e-07,7.482092661049237036e-07,8.729108104557443561e-07,9.976123548065650087e-07,1.122313899157385661e-06,1.247015443508206314e-06,1.371716987859026966e-06,1.496418532209847619e-06,1.621120076560668271e-06,1.745821620911488924e-06,1.870523165262309577e-06,1.995224709613130441e-06,2.119926253963951517e-06,2.244627798314772593e-06,2.369329342665593669e-06,2.494030887016414745e-06,2.618732431367235821e-06,2.743433975718056897e-06,2.868135520068877973e-06,2.992837064419699049e-06,3.117538608770520126e-06,3.242240153121341202e-06,3.366941697472162278e-06,3.491643241822983354e-06,3.616344786173804430e-06,3.741046330524625506e-06,3.865747874875446582e-06,3.990449419226267658e-06,4.115150963577088734e-06,4.239852507927909810e-06,4.364554052278730886e-06,4.489255596629551962e-06,4.613957140980373038e-06,4.738658685331194114e-06,4.863360229682015190e-06,4.988061774032836267e-06,5.112763318383657343e-06,5.237464862734478419e-06,5.362166407085299495e-06,5.486867951436120571e-06,5.611569495786941647e-06,5.736271040137762723e-06,5.860972584488583799e-06,5.985674128839404875e-06,6.110375673190225951e-06,6.235077217541047027e-06,6.359778761891868103e-06,6.484480306242689179e-06,6.609181850593510255e-06,6.733883394944331332e-06,6.858584939295152408e-06,6.983286483645973484e-06,7.107988027996794560e-06,7.232689572347615636e-06,7.357391116698436712e-06,7.482092661049257788e-06,7.606794205400078864e-06,7.731495749750899940e-06,7.856197294101721016e-06 +0.000000000000000000e+00,1.254017227277337276e-07,2.508034454554674552e-07,3.762051681832011563e-07,5.016068909109348045e-07,6.270086136386684527e-07,7.524103363664021009e-07,8.778120590941357491e-07,1.003213781821869397e-06,1.128615504549603045e-06,1.254017227277336694e-06,1.379418950005070342e-06,1.504820672732803990e-06,1.630222395460537638e-06,1.755624118188271286e-06,1.881025840916004935e-06,2.006427563643738371e-06,2.131829286371471596e-06,2.257231009099204820e-06,2.382632731826938045e-06,2.508034454554671270e-06,2.633436177282404494e-06,2.758837900010137719e-06,2.884239622737870944e-06,3.009641345465604168e-06,3.135043068193337393e-06,3.260444790921070618e-06,3.385846513648803842e-06,3.511248236376537067e-06,3.636649959104270292e-06,3.762051681832003516e-06,3.887453404559736741e-06,4.012855127287469966e-06,4.138256850015203191e-06,4.263658572742936415e-06,4.389060295470669640e-06,4.514462018198402865e-06,4.639863740926136089e-06,4.765265463653869314e-06,4.890667186381602539e-06,5.016068909109335763e-06,5.141470631837068988e-06,5.266872354564802213e-06,5.392274077292535437e-06,5.517675800020268662e-06,5.643077522748001887e-06,5.768479245475735111e-06,5.893880968203468336e-06,6.019282690931201561e-06,6.144684413658934785e-06,6.270086136386668010e-06,6.395487859114401235e-06,6.520889581842134459e-06,6.646291304569867684e-06,6.771693027297600909e-06,6.897094750025334133e-06,7.022496472753067358e-06,7.147898195480800583e-06,7.273299918208533807e-06,7.398701640936267032e-06,7.524103363664000257e-06,7.649505086391733481e-06,7.774906809119466706e-06,7.900308531847199931e-06 +0.000000000000000000e+00,1.258488568283675022e-07,2.516977136567350043e-07,3.775465704851024800e-07,5.033954273134699028e-07,6.292442841418373255e-07,7.550931409702047483e-07,8.809419977985721711e-07,1.006790854626939594e-06,1.132639711455307017e-06,1.258488568283674439e-06,1.384337425112041862e-06,1.510186281940409285e-06,1.636035138768776708e-06,1.761883995597144130e-06,1.887732852425511553e-06,2.013581709253878764e-06,2.139430566082245975e-06,2.265279422910613186e-06,2.391128279738980397e-06,2.516977136567347608e-06,2.642825993395714819e-06,2.768674850224082030e-06,2.894523707052449241e-06,3.020372563880816452e-06,3.146221420709183663e-06,3.272070277537550874e-06,3.397919134365918085e-06,3.523767991194285296e-06,3.649616848022652507e-06,3.775465704851019718e-06,3.901314561679386506e-06,4.027163418507753293e-06,4.153012275336120081e-06,4.278861132164486868e-06,4.404709988992853656e-06,4.530558845821220443e-06,4.656407702649587230e-06,4.782256559477954018e-06,4.908105416306320805e-06,5.033954273134687593e-06,5.159803129963054380e-06,5.285651986791421168e-06,5.411500843619787955e-06,5.537349700448154743e-06,5.663198557276521530e-06,5.789047414104888318e-06,5.914896270933255105e-06,6.040745127761621893e-06,6.166593984589988680e-06,6.292442841418355468e-06,6.418291698246722255e-06,6.544140555075089043e-06,6.669989411903455830e-06,6.795838268731822618e-06,6.921687125560189405e-06,7.047535982388556193e-06,7.173384839216922980e-06,7.299233696045289768e-06,7.425082552873656555e-06,7.550931409702023343e-06,7.676780266530390130e-06,7.802629123358756071e-06,7.928477980187122011e-06 +0.000000000000000000e+00,1.247015443508121293e-07,2.494030887016242586e-07,3.741046330524363879e-07,4.988061774032485171e-07,6.235077217540606994e-07,7.482092661048728816e-07,8.729108104556850638e-07,9.976123548064972460e-07,1.122313899157309428e-06,1.247015443508121610e-06,1.371716987858933793e-06,1.496418532209745975e-06,1.621120076560558157e-06,1.745821620911370339e-06,1.870523165262182522e-06,1.995224709612994916e-06,2.119926253963807521e-06,2.244627798314620127e-06,2.369329342665432733e-06,2.494030887016245339e-06,2.618732431367057944e-06,2.743433975717870550e-06,2.868135520068683156e-06,2.992837064419495762e-06,3.117538608770308367e-06,3.242240153121120973e-06,3.366941697471933579e-06,3.491643241822746184e-06,3.616344786173558790e-06,3.741046330524371396e-06,3.865747874875184002e-06,3.990449419225996607e-06,4.115150963576809213e-06,4.239852507927621819e-06,4.364554052278434425e-06,4.489255596629247030e-06,4.613957140980059636e-06,4.738658685330872242e-06,4.863360229681684848e-06,4.988061774032497453e-06,5.112763318383310059e-06,5.237464862734122665e-06,5.362166407084935271e-06,5.486867951435747876e-06,5.611569495786560482e-06,5.736271040137373088e-06,5.860972584488185694e-06,5.985674128838998299e-06,6.110375673189810905e-06,6.235077217540623511e-06,6.359778761891436117e-06,6.484480306242248722e-06,6.609181850593061328e-06,6.733883394943873934e-06,6.858584939294686539e-06,6.983286483645499145e-06,7.107988027996311751e-06,7.232689572347124357e-06,7.357391116697936962e-06,7.482092661048749568e-06,7.606794205399562174e-06,7.731495749750374780e-06,7.856197294101187385e-06 +0.000000000000000000e+00,1.254017227277264219e-07,2.508034454554528439e-07,3.762051681831792394e-07,5.016068909109055819e-07,6.270086136386319244e-07,7.524103363663582669e-07,8.778120590940846095e-07,1.003213781821810952e-06,1.128615504549537189e-06,1.254017227277263425e-06,1.379418950004989662e-06,1.504820672732715899e-06,1.630222395460442135e-06,1.755624118188168372e-06,1.881025840915894609e-06,2.006427563643620633e-06,2.131829286371346658e-06,2.257231009099072683e-06,2.382632731826798708e-06,2.508034454554524733e-06,2.633436177282250758e-06,2.758837900009976783e-06,2.884239622737702808e-06,3.009641345465428833e-06,3.135043068193154858e-06,3.260444790920880882e-06,3.385846513648606907e-06,3.511248236376332932e-06,3.636649959104058957e-06,3.762051681831784982e-06,3.887453404559511430e-06,4.012855127287237879e-06,4.138256850014964327e-06,4.263658572742690776e-06,4.389060295470417224e-06,4.514462018198143672e-06,4.639863740925870121e-06,4.765265463653596569e-06,4.890667186381323018e-06,5.016068909109049466e-06,5.141470631836775915e-06,5.266872354564502363e-06,5.392274077292228811e-06,5.517675800019955260e-06,5.643077522747681708e-06,5.768479245475408157e-06,5.893880968203134605e-06,6.019282690930861053e-06,6.144684413658587502e-06,6.270086136386313950e-06,6.395487859114040399e-06,6.520889581841766847e-06,6.646291304569493295e-06,6.771693027297219744e-06,6.897094750024946192e-06,7.022496472752672641e-06,7.147898195480399089e-06,7.273299918208125538e-06,7.398701640935851986e-06,7.524103363663578434e-06,7.649505086391304883e-06,7.774906809119031331e-06,7.900308531846757780e-06 +0.000000000000000000e+00,1.286241562718688937e-07,2.572483125437377874e-07,3.858724688156067076e-07,5.144966250874756807e-07,6.431207813593446538e-07,7.717449376312136269e-07,9.003690939030826000e-07,1.028993250174951573e-06,1.157617406446820440e-06,1.286241562718689308e-06,1.414865718990558175e-06,1.543489875262427042e-06,1.672114031534295909e-06,1.800738187806164777e-06,1.929362344078033644e-06,2.057986500349902723e-06,2.186610656621771802e-06,2.315234812893640881e-06,2.443858969165509960e-06,2.572483125437379039e-06,2.701107281709248118e-06,2.829731437981117197e-06,2.958355594252986276e-06,3.086979750524855355e-06,3.215603906796724434e-06,3.344228063068593513e-06,3.472852219340462592e-06,3.601476375612331671e-06,3.730100531884200750e-06,3.858724688156069829e-06,3.987348844427939331e-06,4.115973000699808834e-06,4.244597156971678336e-06,4.373221313243547839e-06,4.501845469515417341e-06,4.630469625787286844e-06,4.759093782059156346e-06,4.887717938331025849e-06,5.016342094602895351e-06,5.144966250874764854e-06,5.273590407146634356e-06,5.402214563418503859e-06,5.530838719690373361e-06,5.659462875962242864e-06,5.788087032234112366e-06,5.916711188505981869e-06,6.045335344777851371e-06,6.173959501049720874e-06,6.302583657321590376e-06,6.431207813593459879e-06,6.559831969865329381e-06,6.688456126137198884e-06,6.817080282409068386e-06,6.945704438680937889e-06,7.074328594952807391e-06,7.202952751224676894e-06,7.331576907496546396e-06,7.460201063768415899e-06,7.588825220040285402e-06,7.717449376312154904e-06,7.846073532584024407e-06,7.974697688855893909e-06,8.103321845127763412e-06 +0.000000000000000000e+00,1.271691827966141487e-07,2.543383655932282974e-07,3.815075483898424461e-07,5.086767311864565948e-07,6.358459139830707964e-07,7.630150967796849980e-07,8.901842795762991996e-07,1.017353462372913401e-06,1.144522645169527603e-06,1.271691827966141805e-06,1.398861010762756006e-06,1.526030193559370208e-06,1.653199376355984409e-06,1.780368559152598611e-06,1.907537741949212601e-06,2.034706924745826379e-06,2.161876107542440157e-06,2.289045290339053935e-06,2.416214473135667713e-06,2.543383655932281491e-06,2.670552838728895270e-06,2.797722021525509048e-06,2.924891204322122826e-06,3.052060387118736604e-06,3.179229569915350382e-06,3.306398752711964160e-06,3.433567935508577938e-06,3.560737118305191716e-06,3.687906301101805494e-06,3.815075483898419273e-06,3.942244666695033051e-06,4.069413849491646829e-06,4.196583032288260607e-06,4.323752215084874385e-06,4.450921397881488163e-06,4.578090580678101941e-06,4.705259763474715719e-06,4.832428946271329497e-06,4.959598129067943276e-06,5.086767311864557054e-06,5.213936494661170832e-06,5.341105677457784610e-06,5.468274860254398388e-06,5.595444043051012166e-06,5.722613225847625944e-06,5.849782408644239722e-06,5.976951591440853500e-06,6.104120774237467279e-06,6.231289957034081057e-06,6.358459139830694835e-06,6.485628322627308613e-06,6.612797505423922391e-06,6.739966688220536169e-06,6.867135871017149947e-06,6.994305053813763725e-06,7.121474236610377503e-06,7.248643419406991282e-06,7.375812602203605060e-06,7.502981785000218838e-06,7.630150967796833463e-06,7.757320150593448088e-06,7.884489333390062713e-06,8.011658516186677338e-06 +0.000000000000000000e+00,1.282035691490974122e-07,2.564071382981948243e-07,3.846107074472922365e-07,5.128142765963896486e-07,6.410178457454870608e-07,7.692214148945844729e-07,8.974249840436818851e-07,1.025628553192779297e-06,1.153832122341876604e-06,1.282035691490973910e-06,1.410239260640071216e-06,1.538442829789168522e-06,1.666646398938265829e-06,1.794849968087363135e-06,1.923053537236460441e-06,2.051257106385557747e-06,2.179460675534655054e-06,2.307664244683752360e-06,2.435867813832849666e-06,2.564071382981946973e-06,2.692274952131044279e-06,2.820478521280141585e-06,2.948682090429238891e-06,3.076885659578336198e-06,3.205089228727433504e-06,3.333292797876530810e-06,3.461496367025628116e-06,3.589699936174725423e-06,3.717903505323822729e-06,3.846107074472920035e-06,3.974310643622017765e-06,4.102514212771115495e-06,4.230717781920213225e-06,4.358921351069310954e-06,4.487124920218408684e-06,4.615328489367506414e-06,4.743532058516604144e-06,4.871735627665701874e-06,4.999939196814799603e-06,5.128142765963897333e-06,5.256346335112995063e-06,5.384549904262092793e-06,5.512753473411190523e-06,5.640957042560288252e-06,5.769160611709385982e-06,5.897364180858483712e-06,6.025567750007581442e-06,6.153771319156679172e-06,6.281974888305776901e-06,6.410178457454874631e-06,6.538382026603972361e-06,6.666585595753070091e-06,6.794789164902167821e-06,6.922992734051265550e-06,7.051196303200363280e-06,7.179399872349461010e-06,7.307603441498558740e-06,7.435807010647656469e-06,7.564010579796754199e-06,7.692214148945851929e-06,7.820417718094949659e-06,7.948621287244047389e-06,8.076824856393145118e-06 +0.000000000000000000e+00,1.286241562718613498e-07,2.572483125437226996e-07,3.858724688155840495e-07,5.144966250874453993e-07,6.431207813593067491e-07,7.717449376311680989e-07,9.003690939030294487e-07,1.028993250174890799e-06,1.157617406446752254e-06,1.286241562718613710e-06,1.414865718990475166e-06,1.543489875262336621e-06,1.672114031534198077e-06,1.800738187806059533e-06,1.929362344077920988e-06,2.057986500349782444e-06,2.186610656621643900e-06,2.315234812893505356e-06,2.443858969165366811e-06,2.572483125437228267e-06,2.701107281709089723e-06,2.829731437980951178e-06,2.958355594252812634e-06,3.086979750524674090e-06,3.215603906796535545e-06,3.344228063068397001e-06,3.472852219340258457e-06,3.601476375612119912e-06,3.730100531883981368e-06,3.858724688155842824e-06,3.987348844427703856e-06,4.115973000699564888e-06,4.244597156971425920e-06,4.373221313243286953e-06,4.501845469515147985e-06,4.630469625787009017e-06,4.759093782058870049e-06,4.887717938330731081e-06,5.016342094602592114e-06,5.144966250874453146e-06,5.273590407146314178e-06,5.402214563418175210e-06,5.530838719690036242e-06,5.659462875961897274e-06,5.788087032233758307e-06,5.916711188505619339e-06,6.045335344777480371e-06,6.173959501049341403e-06,6.302583657321202435e-06,6.431207813593063468e-06,6.559831969864924500e-06,6.688456126136785532e-06,6.817080282408646564e-06,6.945704438680507596e-06,7.074328594952368628e-06,7.202952751224229661e-06,7.331576907496090693e-06,7.460201063767951725e-06,7.588825220039812757e-06,7.717449376311673789e-06,7.846073532583534821e-06,7.974697688855395854e-06,8.103321845127256886e-06 +0.000000000000000000e+00,1.271691827966062872e-07,2.543383655932125743e-07,3.815075483898188880e-07,5.086767311864252545e-07,6.358459139830316211e-07,7.630150967796379877e-07,8.901842795762443543e-07,1.017353462372850721e-06,1.144522645169457087e-06,1.271691827966063454e-06,1.398861010762669821e-06,1.526030193559276187e-06,1.653199376355882554e-06,1.780368559152488920e-06,1.907537741949095287e-06,2.034706924745701865e-06,2.161876107542308443e-06,2.289045290338915022e-06,2.416214473135521600e-06,2.543383655932128178e-06,2.670552838728734757e-06,2.797722021525341335e-06,2.924891204321947913e-06,3.052060387118554492e-06,3.179229569915161070e-06,3.306398752711767648e-06,3.433567935508374227e-06,3.560737118304980805e-06,3.687906301101587383e-06,3.815075483898193962e-06,3.942244666694800964e-06,4.069413849491407965e-06,4.196583032288014967e-06,4.323752215084621969e-06,4.450921397881228971e-06,4.578090580677835973e-06,4.705259763474442975e-06,4.832428946271049977e-06,4.959598129067656978e-06,5.086767311864263980e-06,5.213936494660870982e-06,5.341105677457477984e-06,5.468274860254084986e-06,5.595444043050691988e-06,5.722613225847298990e-06,5.849782408643905991e-06,5.976951591440512993e-06,6.104120774237119995e-06,6.231289957033726997e-06,6.358459139830333999e-06,6.485628322626941001e-06,6.612797505423548002e-06,6.739966688220155004e-06,6.867135871016762006e-06,6.994305053813369008e-06,7.121474236609976010e-06,7.248643419406583012e-06,7.375812602203190014e-06,7.502981784999797015e-06,7.630150967796403170e-06,7.757320150593009325e-06,7.884489333389615480e-06,8.011658516186221635e-06 +0.000000000000000000e+00,1.282035691490907153e-07,2.564071382981814306e-07,3.846107074472721194e-07,5.128142765963627553e-07,6.410178457454533912e-07,7.692214148945440271e-07,8.974249840436346630e-07,1.025628553192725299e-06,1.153832122341816041e-06,1.282035691490906782e-06,1.410239260639997524e-06,1.538442829789088266e-06,1.666646398938179008e-06,1.794849968087269750e-06,1.923053537236360491e-06,2.051257106385451021e-06,2.179460675534541551e-06,2.307664244683632081e-06,2.435867813832722611e-06,2.564071382981813141e-06,2.692274952130903671e-06,2.820478521279994201e-06,2.948682090429084731e-06,3.076885659578175261e-06,3.205089228727265791e-06,3.333292797876356321e-06,3.461496367025446851e-06,3.589699936174537381e-06,3.717903505323627911e-06,3.846107074472718441e-06,3.974310643621809395e-06,4.102514212770900349e-06,4.230717781919991302e-06,4.358921351069082256e-06,4.487124920218173209e-06,4.615328489367264163e-06,4.743532058516355116e-06,4.871735627665446070e-06,4.999939196814537023e-06,5.128142765963627977e-06,5.256346335112718930e-06,5.384549904261809884e-06,5.512753473410900837e-06,5.640957042559991791e-06,5.769160611709082744e-06,5.897364180858173698e-06,6.025567750007264651e-06,6.153771319156355605e-06,6.281974888305446558e-06,6.410178457454537512e-06,6.538382026603628466e-06,6.666585595752719419e-06,6.794789164901810373e-06,6.922992734050901326e-06,7.051196303199992280e-06,7.179399872349083233e-06,7.307603441498174187e-06,7.435807010647265140e-06,7.564010579796356094e-06,7.692214148945447047e-06,7.820417718094538001e-06,7.948621287243628954e-06,8.076824856392719908e-06 +0.000000000000000000e+00,1.318417073962907894e-07,2.636834147925815789e-07,3.955251221888723948e-07,5.273668295851632637e-07,6.592085369814541325e-07,7.910502443777450014e-07,9.228919517740358702e-07,1.054733659170326739e-06,1.186575366566617608e-06,1.318417073962908477e-06,1.450258781359199346e-06,1.582100488755490214e-06,1.713942196151781083e-06,1.845783903548071952e-06,1.977625610944362821e-06,2.109467318340653902e-06,2.241309025736944982e-06,2.373150733133236063e-06,2.504992440529527143e-06,2.636834147925818224e-06,2.768675855322109305e-06,2.900517562718400385e-06,3.032359270114691466e-06,3.164200977510982547e-06,3.296042684907273627e-06,3.427884392303564708e-06,3.559726099699855788e-06,3.691567807096146869e-06,3.823409514492437950e-06,3.955251221888729030e-06,4.087092929285020111e-06,4.218934636681311191e-06,4.350776344077602272e-06,4.482618051473893353e-06,4.614459758870184433e-06,4.746301466266475514e-06,4.878143173662766595e-06,5.009984881059057675e-06,5.141826588455348756e-06,5.273668295851639836e-06,5.405510003247930917e-06,5.537351710644221998e-06,5.669193418040513078e-06,5.801035125436804159e-06,5.932876832833095239e-06,6.064718540229386320e-06,6.196560247625677401e-06,6.328401955021968481e-06,6.460243662418259562e-06,6.592085369814550642e-06,6.723927077210841723e-06,6.855768784607132804e-06,6.987610492003423884e-06,7.119452199399714965e-06,7.251293906796006046e-06,7.383135614192297126e-06,7.514977321588588207e-06,7.646819028984879287e-06,7.778660736381170368e-06,7.910502443777461449e-06,8.042344151173752529e-06,8.174185858570043610e-06,8.306027565966334690e-06 +0.000000000000000000e+00,1.301894735634241321e-07,2.603789471268482641e-07,3.905684206902723697e-07,5.207578942536964224e-07,6.509473678171204751e-07,7.811368413805445277e-07,9.113263149439685804e-07,1.041515788507392633e-06,1.171705262070816580e-06,1.301894735634240527e-06,1.432084209197664473e-06,1.562273682761088420e-06,1.692463156324512367e-06,1.822652629887936314e-06,1.952842103451360261e-06,2.083031577014783996e-06,2.213221050578207731e-06,2.343410524141631466e-06,2.473599997705055201e-06,2.603789471268478936e-06,2.733978944831902671e-06,2.864168418395326406e-06,2.994357891958750141e-06,3.124547365522173876e-06,3.254736839085597611e-06,3.384926312649021346e-06,3.515115786212445081e-06,3.645305259775868816e-06,3.775494733339292551e-06,3.905684206902716286e-06,4.035873680466140021e-06,4.166063154029563756e-06,4.296252627592987491e-06,4.426442101156411226e-06,4.556631574719834961e-06,4.686821048283258696e-06,4.817010521846682431e-06,4.947199995410106166e-06,5.077389468973529901e-06,5.207578942536953636e-06,5.337768416100377371e-06,5.467957889663801106e-06,5.598147363227224841e-06,5.728336836790648576e-06,5.858526310354072311e-06,5.988715783917496046e-06,6.118905257480919781e-06,6.249094731044343516e-06,6.379284204607767251e-06,6.509473678171190986e-06,6.639663151734614721e-06,6.769852625298038456e-06,6.900042098861462191e-06,7.030231572424885926e-06,7.160421045988309662e-06,7.290610519551733397e-06,7.420799993115157132e-06,7.550989466678580867e-06,7.681178940242004602e-06,7.811368413805427490e-06,7.941557887368850378e-06,8.071747360932273266e-06,8.201936834495696154e-06 +0.000000000000000000e+00,1.314574190799686933e-07,2.629148381599373865e-07,3.943722572399060798e-07,5.258296763198747731e-07,6.572870953998435193e-07,7.887445144798122655e-07,9.202019335597810117e-07,1.051659352639749758e-06,1.183116771719718504e-06,1.314574190799687250e-06,1.446031609879655997e-06,1.577489028959624743e-06,1.708946448039593489e-06,1.840403867119562235e-06,1.971861286199530981e-06,2.103318705279499939e-06,2.234776124359468897e-06,2.366233543439437855e-06,2.497690962519406813e-06,2.629148381599375771e-06,2.760605800679344729e-06,2.892063219759313687e-06,3.023520638839282645e-06,3.154978057919251603e-06,3.286435476999220561e-06,3.417892896079189519e-06,3.549350315159158477e-06,3.680807734239127435e-06,3.812265153319096393e-06,3.943722572399065351e-06,4.075179991479034732e-06,4.206637410559004114e-06,4.338094829638973495e-06,4.469552248718942877e-06,4.601009667798912258e-06,4.732467086878881640e-06,4.863924505958851021e-06,4.995381925038820403e-06,5.126839344118789784e-06,5.258296763198759166e-06,5.389754182278728547e-06,5.521211601358697929e-06,5.652669020438667310e-06,5.784126439518636692e-06,5.915583858598606073e-06,6.047041277678575455e-06,6.178498696758544836e-06,6.309956115838514217e-06,6.441413534918483599e-06,6.572870953998452980e-06,6.704328373078422362e-06,6.835785792158391743e-06,6.967243211238361125e-06,7.098700630318330506e-06,7.230158049398299888e-06,7.361615468478269269e-06,7.493072887558238651e-06,7.624530306638208032e-06,7.755987725718177414e-06,7.887445144798145948e-06,8.018902563878114483e-06,8.150359982958083017e-06,8.281817402038051552e-06 +0.000000000000000000e+00,1.318417073962830073e-07,2.636834147925660147e-07,3.955251221888489955e-07,5.273668295851319234e-07,6.592085369814148514e-07,7.910502443776977793e-07,9.228919517739807072e-07,1.054733659170263635e-06,1.186575366566546457e-06,1.318417073962829279e-06,1.450258781359112101e-06,1.582100488755394923e-06,1.713942196151677745e-06,1.845783903547960567e-06,1.977625610944243389e-06,2.109467318340526000e-06,2.241309025736808610e-06,2.373150733133091220e-06,2.504992440529373831e-06,2.636834147925656441e-06,2.768675855321939051e-06,2.900517562718221661e-06,3.032359270114504272e-06,3.164200977510786882e-06,3.296042684907069492e-06,3.427884392303352103e-06,3.559726099699634713e-06,3.691567807095917323e-06,3.823409514492199933e-06,3.955251221888482544e-06,4.087092929284765154e-06,4.218934636681047764e-06,4.350776344077330374e-06,4.482618051473612985e-06,4.614459758869895595e-06,4.746301466266178205e-06,4.878143173662460816e-06,5.009984881058743426e-06,5.141826588455026036e-06,5.273668295851308646e-06,5.405510003247591257e-06,5.537351710643873867e-06,5.669193418040156477e-06,5.801035125436439088e-06,5.932876832832721698e-06,6.064718540229004308e-06,6.196560247625286918e-06,6.328401955021569529e-06,6.460243662417852139e-06,6.592085369814134749e-06,6.723927077210417360e-06,6.855768784606699970e-06,6.987610492002982580e-06,7.119452199399265190e-06,7.251293906795547801e-06,7.383135614191830411e-06,7.514977321588113021e-06,7.646819028984394785e-06,7.778660736380677395e-06,7.910502443776960005e-06,8.042344151173242615e-06,8.174185858569525226e-06,8.306027565965807836e-06 +0.000000000000000000e+00,1.301894735634164823e-07,2.603789471268329646e-07,3.905684206902494469e-07,5.207578942536659292e-07,6.509473678170824645e-07,7.811368413804989997e-07,9.113263149439155350e-07,1.041515788507332070e-06,1.171705262070748605e-06,1.301894735634165141e-06,1.432084209197581676e-06,1.562273682760998211e-06,1.692463156324414746e-06,1.822652629887831282e-06,1.952842103451247605e-06,2.083031577014663717e-06,2.213221050578079829e-06,2.343410524141495940e-06,2.473599997704912052e-06,2.603789471268328164e-06,2.733978944831744276e-06,2.864168418395160387e-06,2.994357891958576499e-06,3.124547365521992611e-06,3.254736839085408722e-06,3.384926312648824834e-06,3.515115786212240946e-06,3.645305259775657058e-06,3.775494733339073169e-06,3.905684206902489281e-06,4.035873680465905393e-06,4.166063154029321505e-06,4.296252627592737616e-06,4.426442101156153728e-06,4.556631574719569840e-06,4.686821048282985951e-06,4.817010521846402063e-06,4.947199995409818175e-06,5.077389468973234287e-06,5.207578942536650398e-06,5.337768416100066510e-06,5.467957889663482622e-06,5.598147363226898734e-06,5.728336836790314845e-06,5.858526310353730957e-06,5.988715783917147069e-06,6.118905257480563180e-06,6.249094731043979292e-06,6.379284204607395404e-06,6.509473678170811516e-06,6.639663151734227627e-06,6.769852625297643739e-06,6.900042098861059851e-06,7.030231572424475963e-06,7.160421045987892074e-06,7.290610519551308186e-06,7.420799993114724298e-06,7.550989466678140409e-06,7.681178940241557368e-06,7.811368413804973480e-06,7.941557887368389592e-06,8.071747360931805703e-06,8.201936834495221815e-06 +0.000000000000000000e+00,1.314574190799621817e-07,2.629148381599243634e-07,3.943722572398865451e-07,5.258296763198487268e-07,6.572870953998109085e-07,7.887445144797730902e-07,9.202019335597352719e-07,1.051659352639697454e-06,1.183116771719659635e-06,1.314574190799621817e-06,1.446031609879583999e-06,1.577489028959546180e-06,1.708946448039508362e-06,1.840403867119470544e-06,1.971861286199432726e-06,2.103318705279394907e-06,2.234776124359357089e-06,2.366233543439319271e-06,2.497690962519281452e-06,2.629148381599243634e-06,2.760605800679205816e-06,2.892063219759167997e-06,3.023520638839130179e-06,3.154978057919092361e-06,3.286435476999054543e-06,3.417892896079016724e-06,3.549350315158978906e-06,3.680807734238941088e-06,3.812265153318903269e-06,3.943722572398865451e-06,4.075179991478828056e-06,4.206637410558790661e-06,4.338094829638753267e-06,4.469552248718715872e-06,4.601009667798678477e-06,4.732467086878641082e-06,4.863924505958603688e-06,4.995381925038566293e-06,5.126839344118528898e-06,5.258296763198491503e-06,5.389754182278454108e-06,5.521211601358416714e-06,5.652669020438379319e-06,5.784126439518341924e-06,5.915583858598304529e-06,6.047041277678267135e-06,6.178498696758229740e-06,6.309956115838192345e-06,6.441413534918154950e-06,6.572870953998117555e-06,6.704328373078080161e-06,6.835785792158042766e-06,6.967243211238005371e-06,7.098700630317967976e-06,7.230158049397930581e-06,7.361615468477893187e-06,7.493072887557855792e-06,7.624530306637818397e-06,7.755987725717781002e-06,7.887445144797742761e-06,8.018902563877704519e-06,8.150359982957666277e-06,8.281817402037628035e-06 +0.000000000000000000e+00,1.353401550683823986e-07,2.706803101367647971e-07,4.060204652051471692e-07,5.413606202735294884e-07,6.767007753419118075e-07,8.120409304102941267e-07,9.473810854786764458e-07,1.082721240547058765e-06,1.218061395615441084e-06,1.353401550683823403e-06,1.488741705752205722e-06,1.624081860820588042e-06,1.759422015888970361e-06,1.894762170957352680e-06,2.030102326025734999e-06,2.165442481094117106e-06,2.300782636162499214e-06,2.436122791230881321e-06,2.571462946299263429e-06,2.706803101367645536e-06,2.842143256436027643e-06,2.977483411504409751e-06,3.112823566572791858e-06,3.248163721641173966e-06,3.383503876709556073e-06,3.518844031777938180e-06,3.654184186846320288e-06,3.789524341914702395e-06,3.924864496983084503e-06,4.060204652051466610e-06,4.195544807119848717e-06,4.330884962188230825e-06,4.466225117256612932e-06,4.601565272324995040e-06,4.736905427393377147e-06,4.872245582461759254e-06,5.007585737530141362e-06,5.142925892598523469e-06,5.278266047666905576e-06,5.413606202735287684e-06,5.548946357803669791e-06,5.684286512872051899e-06,5.819626667940434006e-06,5.954966823008816113e-06,6.090306978077198221e-06,6.225647133145580328e-06,6.360987288213962436e-06,6.496327443282344543e-06,6.631667598350726650e-06,6.767007753419108758e-06,6.902347908487490865e-06,7.037688063555872973e-06,7.173028218624255080e-06,7.308368373692637187e-06,7.443708528761019295e-06,7.579048683829401402e-06,7.714388838897784357e-06,7.849728993966167311e-06,7.985069149034550265e-06,8.120409304102933220e-06,8.255749459171316174e-06,8.391089614239699129e-06,8.526429769308082083e-06 +0.000000000000000000e+00,1.335640347185715946e-07,2.671280694371431893e-07,4.006921041557148104e-07,5.342561388742864845e-07,6.678201735928581585e-07,8.013842083114298326e-07,9.349482430300015066e-07,1.068512277748573181e-06,1.202076312467144961e-06,1.335640347185716741e-06,1.469204381904288521e-06,1.602768416622860300e-06,1.736332451341432080e-06,1.869896486060003860e-06,2.003460520778575640e-06,2.137024555497147632e-06,2.270588590215719624e-06,2.404152624934291615e-06,2.537716659652863607e-06,2.671280694371435599e-06,2.804844729090007590e-06,2.938408763808579582e-06,3.071972798527151574e-06,3.205536833245723566e-06,3.339100867964295557e-06,3.472664902682867549e-06,3.606228937401439541e-06,3.739792972120011532e-06,3.873357006838583100e-06,4.006921041557154669e-06,4.140485076275726237e-06,4.274049110994297805e-06,4.407613145712869373e-06,4.541177180431440941e-06,4.674741215150012510e-06,4.808305249868584078e-06,4.941869284587155646e-06,5.075433319305727214e-06,5.208997354024298782e-06,5.342561388742870350e-06,5.476125423461441919e-06,5.609689458180013487e-06,5.743253492898585055e-06,5.876817527617156623e-06,6.010381562335728191e-06,6.143945597054299760e-06,6.277509631772871328e-06,6.411073666491442896e-06,6.544637701210014464e-06,6.678201735928586032e-06,6.811765770647157600e-06,6.945329805365729169e-06,7.078893840084300737e-06,7.212457874802872305e-06,7.346021909521443873e-06,7.479585944240015441e-06,7.613149978958587009e-06,7.746714013677159425e-06,7.880278048395731840e-06,8.013842083114304255e-06,8.147406117832876670e-06,8.280970152551449086e-06,8.414534187270021501e-06 +0.000000000000000000e+00,1.349966714229667745e-07,2.699933428459335490e-07,4.049900142689003235e-07,5.399866856918670979e-07,6.749833571148339254e-07,8.099800285378007528e-07,9.449766999607675802e-07,1.079973371383734408e-06,1.214970042806701235e-06,1.349966714229668062e-06,1.484963385652634890e-06,1.619960057075601717e-06,1.754956728498568545e-06,1.889953399921535372e-06,2.024950071344502200e-06,2.159946742767469239e-06,2.294943414190436278e-06,2.429940085613403317e-06,2.564936757036370356e-06,2.699933428459337396e-06,2.834930099882304435e-06,2.969926771305271474e-06,3.104923442728238513e-06,3.239920114151205552e-06,3.374916785574172591e-06,3.509913456997139631e-06,3.644910128420106670e-06,3.779906799843073709e-06,3.914903471266040325e-06,4.049900142689006940e-06,4.184896814111973556e-06,4.319893485534940172e-06,4.454890156957906787e-06,4.589886828380873403e-06,4.724883499803840019e-06,4.859880171226806634e-06,4.994876842649773250e-06,5.129873514072739866e-06,5.264870185495706481e-06,5.399866856918673097e-06,5.534863528341639713e-06,5.669860199764606328e-06,5.804856871187572944e-06,5.939853542610539560e-06,6.074850214033506175e-06,6.209846885456472791e-06,6.344843556879439407e-06,6.479840228302406022e-06,6.614836899725372638e-06,6.749833571148339254e-06,6.884830242571305869e-06,7.019826913994272485e-06,7.154823585417239101e-06,7.289820256840205716e-06,7.424816928263172332e-06,7.559813599686138948e-06,7.694810271109105563e-06,7.829806942532072179e-06,7.964803613955038795e-06,8.099800285378005410e-06,8.234796956800972026e-06,8.369793628223938642e-06,8.504790299646905257e-06 +0.000000000000000000e+00,1.353401550683761517e-07,2.706803101367523034e-07,4.060204652051284286e-07,5.413606202735045009e-07,6.767007753418805732e-07,8.120409304102566455e-07,9.473810854786327177e-07,1.082721240547008790e-06,1.218061395615384756e-06,1.353401550683760723e-06,1.488741705752136689e-06,1.624081860820512656e-06,1.759422015888888622e-06,1.894762170957264588e-06,2.030102326025640555e-06,2.165442481094016310e-06,2.300782636162392064e-06,2.436122791230767819e-06,2.571462946299143573e-06,2.706803101367519328e-06,2.842143256435895083e-06,2.977483411504270837e-06,3.112823566572646592e-06,3.248163721641022347e-06,3.383503876709398101e-06,3.518844031777773856e-06,3.654184186846149611e-06,3.789524341914525365e-06,3.924864496982900696e-06,4.060204652051276028e-06,4.195544807119651359e-06,4.330884962188026690e-06,4.466225117256402021e-06,4.601565272324777352e-06,4.736905427393152683e-06,4.872245582461528014e-06,5.007585737529903345e-06,5.142925892598278677e-06,5.278266047666654008e-06,5.413606202735029339e-06,5.548946357803404670e-06,5.684286512871780001e-06,5.819626667940155332e-06,5.954966823008530663e-06,6.090306978076905994e-06,6.225647133145281326e-06,6.360987288213656657e-06,6.496327443282031988e-06,6.631667598350407319e-06,6.767007753418782650e-06,6.902347908487157981e-06,7.037688063555533312e-06,7.173028218623908644e-06,7.308368373692283975e-06,7.443708528760659306e-06,7.579048683829034637e-06,7.714388838897409968e-06,7.849728993965784452e-06,7.985069149034158936e-06,8.120409304102533420e-06,8.255749459170907904e-06,8.391089614239282389e-06,8.526429769307656873e-06 +0.000000000000000000e+00,1.335640347185648713e-07,2.671280694371297426e-07,4.006921041556945875e-07,5.342561388742593794e-07,6.678201735928241713e-07,8.013842083113889632e-07,9.349482430299537552e-07,1.068512277748518547e-06,1.202076312467083339e-06,1.335640347185648131e-06,1.469204381904212923e-06,1.602768416622777715e-06,1.736332451341342507e-06,1.869896486059907299e-06,2.003460520778471879e-06,2.137024555497036671e-06,2.270588590215601463e-06,2.404152624934166254e-06,2.537716659652731046e-06,2.671280694371295838e-06,2.804844729089860630e-06,2.938408763808425422e-06,3.071972798526990214e-06,3.205536833245555006e-06,3.339100867964119798e-06,3.472664902682684590e-06,3.606228937401249382e-06,3.739792972119814174e-06,3.873357006838378966e-06,4.006921041556943757e-06,4.140485076275508549e-06,4.274049110994073341e-06,4.407613145712638133e-06,4.541177180431202925e-06,4.674741215149767717e-06,4.808305249868332509e-06,4.941869284586897301e-06,5.075433319305462093e-06,5.208997354024026885e-06,5.342561388742591677e-06,5.476125423461156469e-06,5.609689458179721260e-06,5.743253492898286052e-06,5.876817527616850844e-06,6.010381562335415636e-06,6.143945597053980428e-06,6.277509631772545220e-06,6.411073666491110012e-06,6.544637701209674804e-06,6.678201735928239596e-06,6.811765770646804388e-06,6.945329805365369180e-06,7.078893840083933971e-06,7.212457874802498763e-06,7.346021909521063555e-06,7.479585944239628347e-06,7.613149978958193139e-06,7.746714013676757931e-06,7.880278048395321876e-06,8.013842083113885821e-06,8.147406117832449766e-06,8.280970152551013711e-06,8.414534187269577655e-06 +0.000000000000000000e+00,1.349966714229617452e-07,2.699933428459234905e-07,4.049900142688852357e-07,5.399866856918469809e-07,6.749833571148087261e-07,8.099800285377704714e-07,9.449766999607322166e-07,1.079973371383693962e-06,1.214970042806655707e-06,1.349966714229617452e-06,1.484963385652579198e-06,1.619960057075540943e-06,1.754956728498502688e-06,1.889953399921464433e-06,2.024950071344426390e-06,2.159946742767388347e-06,2.294943414190350304e-06,2.429940085613312261e-06,2.564936757036274218e-06,2.699933428459236175e-06,2.834930099882198132e-06,2.969926771305160089e-06,3.104923442728122046e-06,3.239920114151084003e-06,3.374916785574045960e-06,3.509913456997007917e-06,3.644910128419969874e-06,3.779906799842931831e-06,3.914903471265893788e-06,4.049900142688856168e-06,4.184896814111818549e-06,4.319893485534780929e-06,4.454890156957743310e-06,4.589886828380705690e-06,4.724883499803668071e-06,4.859880171226630451e-06,4.994876842649592832e-06,5.129873514072555213e-06,5.264870185495517593e-06,5.399866856918479974e-06,5.534863528341442354e-06,5.669860199764404735e-06,5.804856871187367115e-06,5.939853542610329496e-06,6.074850214033291876e-06,6.209846885456254257e-06,6.344843556879216637e-06,6.479840228302179018e-06,6.614836899725141398e-06,6.749833571148103779e-06,6.884830242571066159e-06,7.019826913994028540e-06,7.154823585416990920e-06,7.289820256839953301e-06,7.424816928262915681e-06,7.559813599685878062e-06,7.694810271108839595e-06,7.829806942531801128e-06,7.964803613954762662e-06,8.099800285377724195e-06,8.234796956800685729e-06,8.369793628223647262e-06,8.504790299646608796e-06 +0.000000000000000000e+00,1.390075523816864522e-07,2.780151047633729044e-07,4.170226571450593830e-07,5.560302095267459146e-07,6.950377619084324462e-07,8.340453142901189778e-07,9.730528666718055094e-07,1.112060419053492041e-06,1.251067971435178573e-06,1.390075523816865104e-06,1.529083076198551636e-06,1.668090628580238167e-06,1.807098180961924699e-06,1.946105733343611019e-06,2.085113285725297339e-06,2.224120838106983658e-06,2.363128390488669978e-06,2.502135942870356298e-06,2.641143495252042618e-06,2.780151047633728938e-06,2.919158600015415258e-06,3.058166152397101577e-06,3.197173704778787897e-06,3.336181257160474217e-06,3.475188809542160537e-06,3.614196361923846857e-06,3.753203914305533177e-06,3.892211466687219496e-06,4.031219019068905393e-06,4.170226571450591289e-06,4.309234123832277185e-06,4.448241676213963082e-06,4.587249228595648978e-06,4.726256780977334874e-06,4.865264333359020771e-06,5.004271885740706667e-06,5.143279438122392563e-06,5.282286990504078459e-06,5.421294542885764356e-06,5.560302095267450252e-06,5.699309647649136148e-06,5.838317200030822045e-06,5.977324752412507941e-06,6.116332304794193837e-06,6.255339857175879734e-06,6.394347409557565630e-06,6.533354961939251526e-06,6.672362514320937423e-06,6.811370066702623319e-06,6.950377619084309215e-06,7.089385171465995112e-06,7.228392723847681008e-06,7.367400276229366904e-06,7.506407828611052800e-06,7.645415380992738697e-06,7.784422933374423746e-06,7.923430485756108795e-06,8.062438038137793845e-06,8.201445590519478894e-06,8.340453142901163943e-06,8.479460695282848992e-06,8.618468247664534042e-06,8.757475800046219091e-06 +0.000000000000000000e+00,1.371585434912866011e-07,2.743170869825732022e-07,4.114756304738597769e-07,5.486341739651462986e-07,6.857927174564328203e-07,8.229512609477193420e-07,9.601098044390058637e-07,1.097268347930292385e-06,1.234426891421578907e-06,1.371585434912865429e-06,1.508743978404151950e-06,1.645902521895438472e-06,1.783061065386724994e-06,1.920219608878011304e-06,2.057378152369297402e-06,2.194536695860583500e-06,2.331695239351869598e-06,2.468853782843155697e-06,2.606012326334441795e-06,2.743170869825727893e-06,2.880329413317013991e-06,3.017487956808300089e-06,3.154646500299586187e-06,3.291805043790872286e-06,3.428963587282158384e-06,3.566122130773444482e-06,3.703280674264730580e-06,3.840439217756016678e-06,3.977597761247302777e-06,4.114756304738588875e-06,4.251914848229874973e-06,4.389073391721161071e-06,4.526231935212447169e-06,4.663390478703733267e-06,4.800549022195019366e-06,4.937707565686305464e-06,5.074866109177591562e-06,5.212024652668877660e-06,5.349183196160163758e-06,5.486341739651449857e-06,5.623500283142735955e-06,5.760658826634022053e-06,5.897817370125308151e-06,6.034975913616594249e-06,6.172134457107880347e-06,6.309293000599166446e-06,6.446451544090452544e-06,6.583610087581738642e-06,6.720768631073024740e-06,6.857927174564310838e-06,6.995085718055596937e-06,7.132244261546883035e-06,7.269402805038169133e-06,7.406561348529455231e-06,7.543719892020741329e-06,7.680878435512028275e-06,7.818036979003315220e-06,7.955195522494602165e-06,8.092354065985889110e-06,8.229512609477176055e-06,8.366671152968463001e-06,8.503829696459749946e-06,8.640988239951036891e-06 +0.000000000000000000e+00,1.387100236267187049e-07,2.774200472534374099e-07,4.161300708801561148e-07,5.548400945068748198e-07,6.935501181335935247e-07,8.322601417603122297e-07,9.709701653870309346e-07,1.109680189013749640e-06,1.248390212640468344e-06,1.387100236267187049e-06,1.525810259893905754e-06,1.664520283520624459e-06,1.803230307147343164e-06,1.941940330774061869e-06,2.080650354400780786e-06,2.219360378027499703e-06,2.358070401654218619e-06,2.496780425280937536e-06,2.635490448907656453e-06,2.774200472534375369e-06,2.912910496161094286e-06,3.051620519787813203e-06,3.190330543414532119e-06,3.329040567041251036e-06,3.467750590667969953e-06,3.606460614294688870e-06,3.745170637921407786e-06,3.883880661548126279e-06,4.022590685174844773e-06,4.161300708801563266e-06,4.300010732428281759e-06,4.438720756055000252e-06,4.577430779681718745e-06,4.716140803308437239e-06,4.854850826935155732e-06,4.993560850561874225e-06,5.132270874188592718e-06,5.270980897815311211e-06,5.409690921442029705e-06,5.548400945068748198e-06,5.687110968695466691e-06,5.825820992322185184e-06,5.964531015948903677e-06,6.103241039575622170e-06,6.241951063202340664e-06,6.380661086829059157e-06,6.519371110455777650e-06,6.658081134082496143e-06,6.796791157709214636e-06,6.935501181335933130e-06,7.074211204962651623e-06,7.212921228589370116e-06,7.351631252216088609e-06,7.490341275842807102e-06,7.629051299469525595e-06,7.767761323096244089e-06,7.906471346722962582e-06,8.045181370349681075e-06,8.183891393976399568e-06,8.322601417603118061e-06,8.461311441229836555e-06,8.600021464856555048e-06,8.738731488483273541e-06 +0.000000000000000000e+00,1.390075523816816082e-07,2.780151047633632164e-07,4.170226571450448246e-07,5.560302095267264328e-07,6.950377619084080940e-07,8.340453142900897551e-07,9.730528666717714163e-07,1.112060419053453077e-06,1.251067971435134739e-06,1.390075523816816400e-06,1.529083076198498061e-06,1.668090628580179722e-06,1.807098180961861383e-06,1.946105733343543256e-06,2.085113285725224917e-06,2.224120838106906578e-06,2.363128390488588240e-06,2.502135942870269901e-06,2.641143495251951562e-06,2.780151047633633223e-06,2.919158600015314884e-06,3.058166152396996545e-06,3.197173704778678206e-06,3.336181257160359868e-06,3.475188809542041529e-06,3.614196361923723190e-06,3.753203914305404851e-06,3.892211466687086512e-06,4.031219019068768173e-06,4.170226571450449834e-06,4.309234123832131496e-06,4.448241676213813157e-06,4.587249228595494818e-06,4.726256780977176479e-06,4.865264333358858140e-06,5.004271885740539801e-06,5.143279438122221463e-06,5.282286990503903124e-06,5.421294542885584785e-06,5.560302095267266446e-06,5.699309647648948107e-06,5.838317200030629768e-06,5.977324752412311429e-06,6.116332304793993091e-06,6.255339857175674752e-06,6.394347409557356413e-06,6.533354961939038074e-06,6.672362514320719735e-06,6.811370066702401396e-06,6.950377619084083057e-06,7.089385171465764719e-06,7.228392723847446380e-06,7.367400276229128041e-06,7.506407828610809702e-06,7.645415380992491363e-06,7.784422933374173024e-06,7.923430485755854685e-06,8.062438038137536347e-06,8.201445590519218008e-06,8.340453142900899669e-06,8.479460695282581330e-06,8.618468247664262991e-06,8.757475800045944652e-06 +0.000000000000000000e+00,1.371585434912810160e-07,2.743170869825620320e-07,4.114756304738430480e-07,5.486341739651240639e-07,6.857927174564050799e-07,8.229512609476860959e-07,9.601098044389671119e-07,1.097268347930248128e-06,1.234426891421529144e-06,1.371585434912810160e-06,1.508743978404091176e-06,1.645902521895372192e-06,1.783061065386653208e-06,1.920219608877934224e-06,2.057378152369215240e-06,2.194536695860496256e-06,2.331695239351777272e-06,2.468853782843058288e-06,2.606012326334339304e-06,2.743170869825620320e-06,2.880329413316901336e-06,3.017487956808182352e-06,3.154646500299463368e-06,3.291805043790744384e-06,3.428963587282025400e-06,3.566122130773306416e-06,3.703280674264587432e-06,3.840439217755868448e-06,3.977597761247149464e-06,4.114756304738430480e-06,4.251914848229711496e-06,4.389073391720992512e-06,4.526231935212273528e-06,4.663390478703554544e-06,4.800549022194835560e-06,4.937707565686116575e-06,5.074866109177397591e-06,5.212024652668678607e-06,5.349183196159959623e-06,5.486341739651240639e-06,5.623500283142521655e-06,5.760658826633802671e-06,5.897817370125083687e-06,6.034975913616364703e-06,6.172134457107645719e-06,6.309293000598926735e-06,6.446451544090207751e-06,6.583610087581488767e-06,6.720768631072769783e-06,6.857927174564050799e-06,6.995085718055331815e-06,7.132244261546612831e-06,7.269402805037893847e-06,7.406561348529174863e-06,7.543719892020455879e-06,7.680878435511736895e-06,7.818036979003018758e-06,7.955195522494300621e-06,8.092354065985582484e-06,8.229512609476864347e-06,8.366671152968146210e-06,8.503829696459428073e-06,8.640988239950709936e-06 +0.000000000000000000e+00,1.387100236267158462e-07,2.774200472534316924e-07,4.161300708801475386e-07,5.548400945068633848e-07,6.935501181335792310e-07,8.322601417602950772e-07,9.709701653870108176e-07,1.109680189013726558e-06,1.248390212640442298e-06,1.387100236267158039e-06,1.525810259893873779e-06,1.664520283520589519e-06,1.803230307147305260e-06,1.941940330774020788e-06,2.080650354400736317e-06,2.219360378027451845e-06,2.358070401654167374e-06,2.496780425280882902e-06,2.635490448907598431e-06,2.774200472534313960e-06,2.912910496161029488e-06,3.051620519787745017e-06,3.190330543414460545e-06,3.329040567041176074e-06,3.467750590667891602e-06,3.606460614294607131e-06,3.745170637921322659e-06,3.883880661548038188e-06,4.022590685174753293e-06,4.161300708801468398e-06,4.300010732428183503e-06,4.438720756054898608e-06,4.577430779681613713e-06,4.716140803308328818e-06,4.854850826935043923e-06,4.993560850561759028e-06,5.132270874188474134e-06,5.270980897815189239e-06,5.409690921441904344e-06,5.548400945068619449e-06,5.687110968695334554e-06,5.825820992322049659e-06,5.964531015948764764e-06,6.103241039575479869e-06,6.241951063202194974e-06,6.380661086828910079e-06,6.519371110455625184e-06,6.658081134082340289e-06,6.796791157709055394e-06,6.935501181335770499e-06,7.074211204962485604e-06,7.212921228589200709e-06,7.351631252215915814e-06,7.490341275842630919e-06,7.629051299469346024e-06,7.767761323096061130e-06,7.906471346722776235e-06,8.045181370349491340e-06,8.183891393976206445e-06,8.322601417602921550e-06,8.461311441229636655e-06,8.600021464856351760e-06,8.738731488483066865e-06 +0.000000000000000000e+00,1.427649485268406146e-07,2.855298970536812292e-07,4.282948455805218439e-07,5.710597941073624585e-07,7.138247426342030202e-07,8.565896911610435818e-07,9.993546396878841435e-07,1.142119588214724705e-06,1.284884536741565267e-06,1.427649485268405829e-06,1.570414433795246390e-06,1.713179382322086952e-06,1.855944330848927514e-06,1.998709279375767864e-06,2.141474227902608002e-06,2.284239176429448140e-06,2.427004124956288278e-06,2.569769073483128416e-06,2.712534022009968554e-06,2.855298970536808692e-06,2.998063919063648831e-06,3.140828867590488969e-06,3.283593816117329107e-06,3.426358764644169245e-06,3.569123713171009383e-06,3.711888661697849521e-06,3.854653610224689660e-06,3.997418558751529798e-06,4.140183507278369936e-06,4.282948455805210074e-06,4.425713404332050212e-06,4.568478352858890350e-06,4.711243301385730489e-06,4.854008249912570627e-06,4.996773198439410765e-06,5.139538146966250903e-06,5.282303095493091041e-06,5.425068044019931179e-06,5.567832992546771318e-06,5.710597941073611456e-06,5.853362889600451594e-06,5.996127838127291732e-06,6.138892786654131870e-06,6.281657735180972008e-06,6.424422683707812147e-06,6.567187632234652285e-06,6.709952580761492423e-06,6.852717529288332561e-06,6.995482477815172699e-06,7.138247426342012837e-06,7.281012374868852976e-06,7.423777323395693114e-06,7.566542271922533252e-06,7.709307220449374237e-06,7.852072168976214375e-06,7.994837117503054513e-06,8.137602066029894652e-06,8.280367014556734790e-06,8.423131963083574928e-06,8.565896911610415066e-06,8.708661860137255204e-06,8.851426808664095342e-06,8.994191757190935480e-06 +0.000000000000000000e+00,1.408792492607043570e-07,2.817584985214087140e-07,4.226377477821130710e-07,5.635169970428174280e-07,7.043962463035217850e-07,8.452754955642261420e-07,9.861547448249306048e-07,1.127033994085635068e-06,1.267913243346339531e-06,1.408792492607043993e-06,1.549671741867748456e-06,1.690550991128452919e-06,1.831430240389157382e-06,1.972309489649862057e-06,2.113188738910566731e-06,2.254067988171271406e-06,2.394947237431976081e-06,2.535826486692680755e-06,2.676705735953385430e-06,2.817584985214090104e-06,2.958464234474794779e-06,3.099343483735499454e-06,3.240222732996204128e-06,3.381101982256908803e-06,3.521981231517613478e-06,3.662860480778318152e-06,3.803739730039022827e-06,3.944618979299727501e-06,4.085498228560432600e-06,4.226377477821137698e-06,4.367256727081842796e-06,4.508135976342547894e-06,4.649015225603252992e-06,4.789894474863958090e-06,4.930773724124663189e-06,5.071652973385368287e-06,5.212532222646073385e-06,5.353411471906778483e-06,5.494290721167483581e-06,5.635169970428188679e-06,5.776049219688893777e-06,5.916928468949598876e-06,6.057807718210303974e-06,6.198686967471009072e-06,6.339566216731714170e-06,6.480445465992419268e-06,6.621324715253124366e-06,6.762203964513829464e-06,6.903083213774534563e-06,7.043962463035239661e-06,7.184841712295944759e-06,7.325720961556649857e-06,7.466600210817354955e-06,7.607479460078060053e-06,7.748358709338765151e-06,7.889237958599470250e-06,8.030117207860175348e-06,8.170996457120880446e-06,8.311875706381585544e-06,8.452754955642290642e-06,8.593634204902995740e-06,8.734513454163700838e-06,8.875392703424405937e-06 +0.000000000000000000e+00,1.425210151610270357e-07,2.850420303220540715e-07,4.275630454830811337e-07,5.700840606441082489e-07,7.126050758051353640e-07,8.551260909661624792e-07,9.976471061271895943e-07,1.140168121288216710e-06,1.282689136449243825e-06,1.425210151610270940e-06,1.567731166771298055e-06,1.710252181932325170e-06,1.852773197093352285e-06,1.995294212254379189e-06,2.137815227415406092e-06,2.280336242576432995e-06,2.422857257737459899e-06,2.565378272898486802e-06,2.707899288059513706e-06,2.850420303220540609e-06,2.992941318381567512e-06,3.135462333542594416e-06,3.277983348703621319e-06,3.420504363864648223e-06,3.563025379025675126e-06,3.705546394186702029e-06,3.848067409347729356e-06,3.990588424508756683e-06,4.133109439669784010e-06,4.275630454830811337e-06,4.418151469991838664e-06,4.560672485152865991e-06,4.703193500313893318e-06,4.845714515474920645e-06,4.988235530635947972e-06,5.130756545796975299e-06,5.273277560958002626e-06,5.415798576119029952e-06,5.558319591280057279e-06,5.700840606441084606e-06,5.843361621602111933e-06,5.985882636763139260e-06,6.128403651924166587e-06,6.270924667085193914e-06,6.413445682246221241e-06,6.555966697407248568e-06,6.698487712568275895e-06,6.841008727729303222e-06,6.983529742890330549e-06,7.126050758051357875e-06,7.268571773212385202e-06,7.411092788373412529e-06,7.553613803534439856e-06,7.696134818695467183e-06,7.838655833856494510e-06,7.981176849017521837e-06,8.123697864178549164e-06,8.266218879339576491e-06,8.408739894500603818e-06,8.551260909661631145e-06,8.693781924822658472e-06,8.836302939983685798e-06,8.978823955144713125e-06 +0.000000000000000000e+00,1.427649485268387882e-07,2.855298970536775764e-07,4.282948455805163911e-07,5.710597941073552587e-07,7.138247426341941263e-07,8.565896911610329939e-07,9.993546396878718615e-07,1.142119588214710729e-06,1.284884536741549597e-06,1.427649485268388464e-06,1.570414433795227332e-06,1.713179382322066200e-06,1.855944330848905067e-06,1.998709279375744147e-06,2.141474227902583438e-06,2.284239176429422729e-06,2.427004124956262020e-06,2.569769073483101311e-06,2.712534022009940602e-06,2.855298970536779893e-06,2.998063919063619184e-06,3.140828867590458476e-06,3.283593816117297767e-06,3.426358764644137058e-06,3.569123713170976349e-06,3.711888661697815640e-06,3.854653610224654931e-06,3.997418558751494222e-06,4.140183507278333514e-06,4.282948455805172805e-06,4.425713404332012096e-06,4.568478352858851387e-06,4.711243301385690678e-06,4.854008249912529969e-06,4.996773198439369260e-06,5.139538146966208551e-06,5.282303095493047843e-06,5.425068044019887134e-06,5.567832992546726425e-06,5.710597941073565716e-06,5.853362889600405007e-06,5.996127838127244298e-06,6.138892786654083589e-06,6.281657735180922880e-06,6.424422683707762172e-06,6.567187632234601463e-06,6.709952580761440754e-06,6.852717529288280045e-06,6.995482477815119336e-06,7.138247426341958627e-06,7.281012374868797918e-06,7.423777323395637209e-06,7.566542271922476501e-06,7.709307220449316639e-06,7.852072168976156777e-06,7.994837117502996915e-06,8.137602066029837053e-06,8.280367014556677191e-06,8.423131963083517330e-06,8.565896911610357468e-06,8.708661860137197606e-06,8.851426808664037744e-06,8.994191757190877882e-06 +0.000000000000000000e+00,1.408792492607012600e-07,2.817584985214025201e-07,4.226377477821037536e-07,5.635169970428049342e-07,7.043962463035061149e-07,8.452754955642072955e-07,9.861547448249085820e-07,1.127033994085609868e-06,1.267913243346311155e-06,1.408792492607012441e-06,1.549671741867713728e-06,1.690550991128415014e-06,1.831430240389116301e-06,1.972309489649817587e-06,2.113188738910518874e-06,2.254067988171220160e-06,2.394947237431921447e-06,2.535826486692622733e-06,2.676705735953324020e-06,2.817584985214025306e-06,2.958464234474726593e-06,3.099343483735427879e-06,3.240222732996129166e-06,3.381101982256830452e-06,3.521981231517531739e-06,3.662860480778233025e-06,3.803739730038934312e-06,3.944618979299636022e-06,4.085498228560337732e-06,4.226377477821039442e-06,4.367256727081741152e-06,4.508135976342442862e-06,4.649015225603144572e-06,4.789894474863846282e-06,4.930773724124547992e-06,5.071652973385249702e-06,5.212532222645951412e-06,5.353411471906653122e-06,5.494290721167354832e-06,5.635169970428056542e-06,5.776049219688758252e-06,5.916928468949459962e-06,6.057807718210161672e-06,6.198686967470863382e-06,6.339566216731565092e-06,6.480445465992266802e-06,6.621324715252968512e-06,6.762203964513670222e-06,6.903083213774371932e-06,7.043962463035073642e-06,7.184841712295775352e-06,7.325720961556477062e-06,7.466600210817178772e-06,7.607479460077880482e-06,7.748358709338582192e-06,7.889237958599283902e-06,8.030117207859985612e-06,8.170996457120687322e-06,8.311875706381389032e-06,8.452754955642090742e-06,8.593634204902792452e-06,8.734513454163494162e-06,8.875392703424195872e-06 +0.000000000000000000e+00,1.425210151610271946e-07,2.850420303220543891e-07,4.275630454830815572e-07,5.700840606441086724e-07,7.126050758051357875e-07,8.551260909661629027e-07,9.976471061271900179e-07,1.140168121288217133e-06,1.282689136449244248e-06,1.425210151610271363e-06,1.567731166771298478e-06,1.710252181932325594e-06,1.852773197093352709e-06,1.995294212254380036e-06,2.137815227415407363e-06,2.280336242576434690e-06,2.422857257737462016e-06,2.565378272898489343e-06,2.707899288059516670e-06,2.850420303220543997e-06,2.992941318381571324e-06,3.135462333542598651e-06,3.277983348703625978e-06,3.420504363864653305e-06,3.563025379025680632e-06,3.705546394186707959e-06,3.848067409347735286e-06,3.990588424508762613e-06,4.133109439669789939e-06,4.275630454830817266e-06,4.418151469991844593e-06,4.560672485152871920e-06,4.703193500313899247e-06,4.845714515474926574e-06,4.988235530635953901e-06,5.130756545796981228e-06,5.273277560958008555e-06,5.415798576119035882e-06,5.558319591280063209e-06,5.700840606441090536e-06,5.843361621602117862e-06,5.985882636763145189e-06,6.128403651924172516e-06,6.270924667085199843e-06,6.413445682246227170e-06,6.555966697407254497e-06,6.698487712568281824e-06,6.841008727729309151e-06,6.983529742890336478e-06,7.126050758051363805e-06,7.268571773212391132e-06,7.411092788373418459e-06,7.553613803534445785e-06,7.696134818695472265e-06,7.838655833856499592e-06,7.981176849017526919e-06,8.123697864178554246e-06,8.266218879339581573e-06,8.408739894500608900e-06,8.551260909661636227e-06,8.693781924822663554e-06,8.836302939983690881e-06,8.978823955144718208e-06 +0.000000000000000000e+00,8.585737977595326180e-08,1.717147595519065236e-07,2.575721393278597986e-07,3.434295191038131001e-07,4.292868988797664016e-07,5.151442786557197031e-07,6.010016584316730046e-07,6.868590382076263061e-07,7.727164179835796077e-07,8.585737977595329092e-07,9.444311775354862107e-07,1.030288557311439618e-06,1.116145937087392920e-06,1.202003316863346221e-06,1.287860696639299523e-06,1.373718076415252824e-06,1.459575456191206126e-06,1.545432835967159427e-06,1.631290215743112729e-06,1.717147595519066030e-06,1.803004975295019332e-06,1.888862355070972633e-06,1.974719734846925935e-06,2.060577114622879236e-06,2.146434494398832538e-06,2.232291874174785839e-06,2.318149253950739141e-06,2.404006633726692442e-06,2.489864013502645744e-06,2.575721393278599045e-06,2.661578773054552347e-06,2.747436152830505648e-06,2.833293532606458950e-06,2.919150912382412251e-06,3.005008292158365553e-06,3.090865671934318854e-06,3.176723051710272156e-06,3.262580431486225457e-06,3.348437811262178759e-06,3.434295191038132060e-06,3.520152570814085362e-06,3.606009950590038663e-06,3.691867330365991965e-06,3.777724710141945266e-06,3.863582089917898568e-06,3.949439469693851869e-06,4.035296849469805171e-06,4.121154229245758472e-06,4.207011609021711774e-06,4.292868988797665075e-06,4.378726368573618377e-06,4.464583748349571678e-06,4.550441128125524980e-06,4.636298507901478281e-06,4.722155887677431583e-06,4.808013267453384884e-06,4.893870647229338186e-06,4.979728027005291487e-06,5.065585406781244789e-06,5.151442786557198090e-06,5.237300166333151392e-06,5.323157546109104693e-06,5.409014925885057995e-06 +0.000000000000000000e+00,8.761260820891194063e-08,1.752252164178238813e-07,2.628378246267358086e-07,3.504504328356477096e-07,4.380630410445596105e-07,5.256756492534715114e-07,6.132882574623834123e-07,7.009008656712953133e-07,7.885134738802072142e-07,8.761260820891191151e-07,9.637386902980310160e-07,1.051351298506942811e-06,1.138963906715854606e-06,1.226576514924766401e-06,1.314189123133678196e-06,1.401801731342589991e-06,1.489414339551501786e-06,1.577026947760413581e-06,1.664639555969325376e-06,1.752252164178237171e-06,1.839864772387148966e-06,1.927477380596060762e-06,2.015089988804972768e-06,2.102702597013884775e-06,2.190315205222796782e-06,2.277927813431708789e-06,2.365540421640620796e-06,2.453153029849532802e-06,2.540765638058444809e-06,2.628378246267356816e-06,2.715990854476268823e-06,2.803603462685180830e-06,2.891216070894092836e-06,2.978828679103004843e-06,3.066441287311916850e-06,3.154053895520828857e-06,3.241666503729740864e-06,3.329279111938652870e-06,3.416891720147564877e-06,3.504504328356476884e-06,3.592116936565388891e-06,3.679729544774300898e-06,3.767342152983212904e-06,3.854954761192124911e-06,3.942567369401036918e-06,4.030179977609948925e-06,4.117792585818860932e-06,4.205405194027772938e-06,4.293017802236684945e-06,4.380630410445596952e-06,4.468243018654508959e-06,4.555855626863420966e-06,4.643468235072332972e-06,4.731080843281244979e-06,4.818693451490156986e-06,4.906306059699068993e-06,4.993918667907981000e-06,5.081531276116893006e-06,5.169143884325805013e-06,5.256756492534717020e-06,5.344369100743629027e-06,5.431981708952541034e-06,5.519594317161453040e-06 +0.000000000000000000e+00,8.772895018680636165e-08,1.754579003736127233e-07,2.631868505604190982e-07,3.509158007472254995e-07,4.386447509340319009e-07,5.263737011208383022e-07,6.141026513076446506e-07,7.018316014944509991e-07,7.895605516812573475e-07,8.772895018680636959e-07,9.650184520548700443e-07,1.052747402241676393e-06,1.140476352428482741e-06,1.228205302615289090e-06,1.315934252802095438e-06,1.403663202988901786e-06,1.491392153175708135e-06,1.579121103362514483e-06,1.666850053549320832e-06,1.754579003736127180e-06,1.842307953922933528e-06,1.930036904109740089e-06,2.017765854296546649e-06,2.105494804483353209e-06,2.193223754670159769e-06,2.280952704856966329e-06,2.368681655043772889e-06,2.456410605230579450e-06,2.544139555417386010e-06,2.631868505604192570e-06,2.719597455790999130e-06,2.807326405977805690e-06,2.895055356164612250e-06,2.982784306351418811e-06,3.070513256538225371e-06,3.158242206725031931e-06,3.245971156911838491e-06,3.333700107098645051e-06,3.421429057285451611e-06,3.509158007472258172e-06,3.596886957659064732e-06,3.684615907845871292e-06,3.772344858032677852e-06,3.860073808219484412e-06,3.947802758406290973e-06,4.035531708593097533e-06,4.123260658779904093e-06,4.210989608966710653e-06,4.298718559153517213e-06,4.386447509340323773e-06,4.474176459527130334e-06,4.561905409713936894e-06,4.649634359900743454e-06,4.737363310087550014e-06,4.825092260274356574e-06,4.912821210461163134e-06,5.000550160647969695e-06,5.088279110834776255e-06,5.176008061021582815e-06,5.263737011208389375e-06,5.351465961395195935e-06,5.439194911582002495e-06,5.526923861768809056e-06 +0.000000000000000000e+00,8.627574710443841448e-08,1.725514942088768290e-07,2.588272413133152567e-07,3.451029884177537109e-07,4.313787355221921650e-07,5.176544826266306192e-07,6.039302297310690734e-07,6.902059768355075276e-07,7.764817239399459818e-07,8.627574710443844360e-07,9.490332181488228901e-07,1.035308965253261450e-06,1.121584712357699904e-06,1.207860459462138359e-06,1.294136206566576813e-06,1.380411953671015267e-06,1.466687700775453721e-06,1.552963447879892175e-06,1.639239194984330630e-06,1.725514942088769084e-06,1.811790689193207538e-06,1.898066436297645992e-06,1.984342183402084446e-06,2.070617930506522900e-06,2.156893677610961355e-06,2.243169424715399809e-06,2.329445171819838263e-06,2.415720918924276717e-06,2.501996666028715171e-06,2.588272413133153626e-06,2.674548160237592080e-06,2.760823907342030534e-06,2.847099654446468988e-06,2.933375401550907442e-06,3.019651148655345896e-06,3.105926895759784351e-06,3.192202642864222805e-06,3.278478389968661259e-06,3.364754137073099713e-06,3.451029884177538167e-06,3.537305631281976622e-06,3.623581378386415076e-06,3.709857125490853530e-06,3.796132872595291984e-06,3.882408619699730015e-06,3.968684366804168045e-06,4.054960113908606076e-06,4.141235861013044107e-06,4.227511608117482137e-06,4.313787355221920168e-06,4.400063102326358199e-06,4.486338849430796229e-06,4.572614596535234260e-06,4.658890343639672291e-06,4.745166090744110321e-06,4.831441837848548352e-06,4.917717584952986383e-06,5.003993332057424413e-06,5.090269079161862444e-06,5.176544826266300475e-06,5.262820573370738505e-06,5.349096320475176536e-06,5.435372067579614567e-06 +0.000000000000000000e+00,8.351561086878871682e-08,1.670312217375774336e-07,2.505468326063661372e-07,3.340624434751548143e-07,4.175780543439434914e-07,5.010936652127321686e-07,5.846092760815208457e-07,6.681248869503095228e-07,7.516404978190981999e-07,8.351561086878868770e-07,9.186717195566755541e-07,1.002187330425464125e-06,1.085702941294252697e-06,1.169218552163041268e-06,1.252734163031829839e-06,1.336249773900618410e-06,1.419765384769406982e-06,1.503280995638195553e-06,1.586796606506984124e-06,1.670312217375772695e-06,1.753827828244561266e-06,1.837343439113349838e-06,1.920859049982138621e-06,2.004374660850927404e-06,2.087890271719716187e-06,2.171405882588504970e-06,2.254921493457293753e-06,2.338437104326082536e-06,2.421952715194871319e-06,2.505468326063660102e-06,2.588983936932448885e-06,2.672499547801237668e-06,2.756015158670026451e-06,2.839530769538815234e-06,2.923046380407604017e-06,3.006561991276392800e-06,3.090077602145181583e-06,3.173593213013970366e-06,3.257108823882759149e-06,3.340624434751547932e-06,3.424140045620336715e-06,3.507655656489125498e-06,3.591171267357914281e-06,3.674686878226703064e-06,3.758202489095491847e-06,3.841718099964280630e-06,3.925233710833069412e-06,4.008749321701858195e-06,4.092264932570646978e-06,4.175780543439435761e-06,4.259296154308224544e-06,4.342811765177013327e-06,4.426327376045802110e-06,4.509842986914590893e-06,4.593358597783379676e-06,4.676874208652168459e-06,4.760389819520957242e-06,4.843905430389746025e-06,4.927421041258534808e-06,5.010936652127323591e-06,5.094452262996112374e-06,5.177967873864901157e-06,5.261483484733689940e-06 +0.000000000000000000e+00,8.261388732063979735e-08,1.652277746412795947e-07,2.478416619619193788e-07,3.304555492825591365e-07,4.130694366031988941e-07,4.956833239238386518e-07,5.782972112444784623e-07,6.609110985651182729e-07,7.435249858857580835e-07,8.261388732063978941e-07,9.087527605270377047e-07,9.913666478476775153e-07,1.073980535168317326e-06,1.156594422488957136e-06,1.239208309809596947e-06,1.321822197130236758e-06,1.404436084450876568e-06,1.487049971771516379e-06,1.569663859092156189e-06,1.652277746412796000e-06,1.734891633733435811e-06,1.817505521054075621e-06,1.900119408374715432e-06,1.982733295695355454e-06,2.065347183015995476e-06,2.147961070336635499e-06,2.230574957657275521e-06,2.313188844977915543e-06,2.395802732298555566e-06,2.478416619619195588e-06,2.561030506939835610e-06,2.643644394260475633e-06,2.726258281581115655e-06,2.808872168901755678e-06,2.891486056222395700e-06,2.974099943543035722e-06,3.056713830863675745e-06,3.139327718184315767e-06,3.221941605504955789e-06,3.304555492825595812e-06,3.387169380146235834e-06,3.469783267466875856e-06,3.552397154787515879e-06,3.635011042108155901e-06,3.717624929428795923e-06,3.800238816749435946e-06,3.882852704070075968e-06,3.965466591390715990e-06,4.048080478711356013e-06,4.130694366031996035e-06,4.213308253352636057e-06,4.295922140673276080e-06,4.378536027993916102e-06,4.461149915314556124e-06,4.543763802635196147e-06,4.626377689955836169e-06,4.708991577276476191e-06,4.791605464597116214e-06,4.874219351917756236e-06,4.956833239238396258e-06,5.039447126559036281e-06,5.122061013879676303e-06,5.204674901200316325e-06 +0.000000000000000000e+00,8.770333016350145349e-08,1.754066603270029070e-07,2.631099904905043869e-07,3.508133206540058669e-07,4.385166508175073468e-07,5.262199809810087739e-07,6.139233111445102009e-07,7.016266413080116279e-07,7.893299714715130549e-07,8.770333016350144819e-07,9.647366317985160148e-07,1.052439961962017548e-06,1.140143292125519081e-06,1.227846622289020613e-06,1.315549952452522146e-06,1.403253282616023679e-06,1.490956612779525212e-06,1.578659942943026745e-06,1.666363273106528278e-06,1.754066603270029811e-06,1.841769933433531344e-06,1.929473263597032877e-06,2.017176593760534410e-06,2.104879923924035942e-06,2.192583254087537475e-06,2.280286584251039008e-06,2.367989914414540541e-06,2.455693244578042074e-06,2.543396574741543607e-06,2.631099904905045140e-06,2.718803235068546673e-06,2.806506565232048206e-06,2.894209895395549738e-06,2.981913225559051271e-06,3.069616555722552804e-06,3.157319885886054337e-06,3.245023216049555870e-06,3.332726546213057403e-06,3.420429876376558936e-06,3.508133206540060469e-06,3.595836536703562002e-06,3.683539866867063535e-06,3.771243197030565067e-06,3.858946527194066600e-06,3.946649857357568557e-06,4.034353187521070513e-06,4.122056517684572470e-06,4.209759847848074426e-06,4.297463178011576382e-06,4.385166508175078339e-06,4.472869838338580295e-06,4.560573168502082252e-06,4.648276498665584208e-06,4.735979828829086164e-06,4.823683158992588121e-06,4.911386489156090077e-06,4.999089819319592034e-06,5.086793149483093990e-06,5.174496479646595947e-06,5.262199809810097903e-06,5.349903139973599859e-06,5.437606470137101816e-06,5.525309800300603772e-06 +0.000000000000000000e+00,8.357687728980156134e-08,1.671537545796031227e-07,2.507306318694047105e-07,3.343075091592062983e-07,4.178843864490078861e-07,5.014612637388094210e-07,5.850381410286109558e-07,6.686150183184124907e-07,7.521918956082140256e-07,8.357687728980155604e-07,9.193456501878170953e-07,1.002922527477618630e-06,1.086499404767420165e-06,1.170076282057221700e-06,1.253653159347023235e-06,1.337230036636824770e-06,1.420806913926626305e-06,1.504383791216427839e-06,1.587960668506229374e-06,1.671537545796030909e-06,1.755114423085832444e-06,1.838691300375633979e-06,1.922268177665435302e-06,2.005845054955236837e-06,2.089421932245038372e-06,2.172998809534839907e-06,2.256575686824641441e-06,2.340152564114442976e-06,2.423729441404244511e-06,2.507306318694046046e-06,2.590883195983847581e-06,2.674460073273649116e-06,2.758036950563450651e-06,2.841613827853252185e-06,2.925190705143053720e-06,3.008767582432855255e-06,3.092344459722656790e-06,3.175921337012458325e-06,3.259498214302259860e-06,3.343075091592061395e-06,3.426651968881862930e-06,3.510228846171664464e-06,3.593805723461465999e-06,3.677382600751267534e-06,3.760959478041069069e-06,3.844536355330870604e-06,3.928113232620672139e-06,4.011690109910473674e-06,4.095266987200275208e-06,4.178843864490076743e-06,4.262420741779878278e-06,4.345997619069679813e-06,4.429574496359481348e-06,4.513151373649282883e-06,4.596728250939084418e-06,4.680305128228885953e-06,4.763882005518687487e-06,4.847458882808489022e-06,4.931035760098290557e-06,5.014612637388092092e-06,5.098189514677893627e-06,5.181766391967695162e-06,5.265343269257496697e-06 +0.000000000000000000e+00,8.585737977595700727e-08,1.717147595519140145e-07,2.575721393278710218e-07,3.434295191038280291e-07,4.292868988797850364e-07,5.151442786557420436e-07,6.010016584316990509e-07,6.868590382076560582e-07,7.727164179836130655e-07,8.585737977595700727e-07,9.444311775355270800e-07,1.030288557311484087e-06,1.116145937087441200e-06,1.202003316863398314e-06,1.287860696639355427e-06,1.373718076415312540e-06,1.459575456191269653e-06,1.545432835967226766e-06,1.631290215743183879e-06,1.717147595519140992e-06,1.803004975295098106e-06,1.888862355071055219e-06,1.974719734847012332e-06,2.060577114622969445e-06,2.146434494398926558e-06,2.232291874174883671e-06,2.318149253950840785e-06,2.404006633726797898e-06,2.489864013502755011e-06,2.575721393278712124e-06,2.661578773054669237e-06,2.747436152830626350e-06,2.833293532606583463e-06,2.919150912382540577e-06,3.005008292158497690e-06,3.090865671934454803e-06,3.176723051710411916e-06,3.262580431486369029e-06,3.348437811262326142e-06,3.434295191038283256e-06,3.520152570814240369e-06,3.606009950590197482e-06,3.691867330366154595e-06,3.777724710142111708e-06,3.863582089918068821e-06,3.949439469694026358e-06,4.035296849469983895e-06,4.121154229245941431e-06,4.207011609021898968e-06,4.292868988797856505e-06,4.378726368573814041e-06,4.464583748349771578e-06,4.550441128125729115e-06,4.636298507901686651e-06,4.722155887677644188e-06,4.808013267453601725e-06,4.893870647229559261e-06,4.979728027005516798e-06,5.065585406781474335e-06,5.151442786557431871e-06,5.237300166333389408e-06,5.323157546109346945e-06,5.409014925885304481e-06 +0.000000000000000000e+00,8.761260820891636108e-08,1.752252164178327222e-07,2.628378246267490965e-07,3.504504328356654973e-07,4.380630410445818981e-07,5.256756492534982988e-07,6.132882574624147526e-07,7.009008656713312063e-07,7.885134738802476600e-07,8.761260820891641137e-07,9.637386902980805675e-07,1.051351298506997021e-06,1.138963906715913475e-06,1.226576514924829929e-06,1.314189123133746382e-06,1.401801731342662836e-06,1.489414339551579290e-06,1.577026947760495744e-06,1.664639555969412197e-06,1.752252164178328651e-06,1.839864772387245105e-06,1.927477380596161558e-06,2.015089988805077800e-06,2.102702597013994042e-06,2.190315205222910284e-06,2.277927813431826526e-06,2.365540421640742768e-06,2.453153029849659010e-06,2.540765638058575252e-06,2.628378246267491494e-06,2.715990854476407736e-06,2.803603462685323978e-06,2.891216070894240220e-06,2.978828679103156462e-06,3.066441287312072704e-06,3.154053895520988946e-06,3.241666503729905188e-06,3.329279111938821430e-06,3.416891720147737672e-06,3.504504328356653914e-06,3.592116936565570156e-06,3.679729544774486398e-06,3.767342152983402640e-06,3.854954761192318882e-06,3.942567369401235124e-06,4.030179977610151366e-06,4.117792585819067608e-06,4.205405194027983850e-06,4.293017802236900092e-06,4.380630410445816334e-06,4.468243018654732575e-06,4.555855626863648817e-06,4.643468235072565059e-06,4.731080843281481301e-06,4.818693451490397543e-06,4.906306059699313785e-06,4.993918667908230027e-06,5.081531276117146269e-06,5.169143884326062511e-06,5.256756492534978753e-06,5.344369100743894995e-06,5.431981708952811237e-06,5.519594317161727479e-06 +0.000000000000000000e+00,8.770333016350353136e-08,1.754066603270070627e-07,2.631099904905105809e-07,3.508133206540140725e-07,4.385166508175175642e-07,5.262199809810210558e-07,6.139233111445244945e-07,7.016266413080279333e-07,7.893299714715313720e-07,8.770333016350348107e-07,9.647366317985382494e-07,1.052439961962041688e-06,1.140143292125545127e-06,1.227846622289048566e-06,1.315549952452552004e-06,1.403253282616055443e-06,1.490956612779558882e-06,1.578659942943062320e-06,1.666363273106565759e-06,1.754066603270069198e-06,1.841769933433572637e-06,1.929473263597076075e-06,2.017176593760579726e-06,2.104879923924083376e-06,2.192583254087587027e-06,2.280286584251090677e-06,2.367989914414594328e-06,2.455693244578097978e-06,2.543396574741601629e-06,2.631099904905105279e-06,2.718803235068608930e-06,2.806506565232112580e-06,2.894209895395616231e-06,2.981913225559119881e-06,3.069616555722623532e-06,3.157319885886127182e-06,3.245023216049630832e-06,3.332726546213134483e-06,3.420429876376638133e-06,3.508133206540141784e-06,3.595836536703645434e-06,3.683539866867149085e-06,3.771243197030652735e-06,3.858946527194156386e-06,3.946649857357660036e-06,4.034353187521163687e-06,4.122056517684667337e-06,4.209759847848170988e-06,4.297463178011674638e-06,4.385166508175178289e-06,4.472869838338681939e-06,4.560573168502185590e-06,4.648276498665689240e-06,4.735979828829192891e-06,4.823683158992696541e-06,4.911386489156200192e-06,4.999089819319703842e-06,5.086793149483207493e-06,5.174496479646711143e-06,5.262199809810214793e-06,5.349903139973718444e-06,5.437606470137222094e-06,5.525309800300725745e-06 +0.000000000000000000e+00,8.627574710444291434e-08,1.725514942088858287e-07,2.588272413133287563e-07,3.451029884177717103e-07,4.313787355222146644e-07,5.176544826266576184e-07,6.039302297311005195e-07,6.902059768355434206e-07,7.764817239399863217e-07,8.627574710444292228e-07,9.490332181488721239e-07,1.035308965253315025e-06,1.121584712357757926e-06,1.207860459462200827e-06,1.294136206566643728e-06,1.380411953671086629e-06,1.466687700775529531e-06,1.552963447879972432e-06,1.639239194984415333e-06,1.725514942088858234e-06,1.811790689193301135e-06,1.898066436297744036e-06,1.984342183402186937e-06,2.070617930506629627e-06,2.156893677611072316e-06,2.243169424715515005e-06,2.329445171819957695e-06,2.415720918924400384e-06,2.501996666028843073e-06,2.588272413133285763e-06,2.674548160237728452e-06,2.760823907342171141e-06,2.847099654446613831e-06,2.933375401551056520e-06,3.019651148655499209e-06,3.105926895759941899e-06,3.192202642864384588e-06,3.278478389968827277e-06,3.364754137073269967e-06,3.451029884177712656e-06,3.537305631282155346e-06,3.623581378386598035e-06,3.709857125491040724e-06,3.796132872595483414e-06,3.882408619699926526e-06,3.968684366804369639e-06,4.054960113908812752e-06,4.141235861013255865e-06,4.227511608117698978e-06,4.313787355222142091e-06,4.400063102326585204e-06,4.486338849431028316e-06,4.572614596535471429e-06,4.658890343639914542e-06,4.745166090744357655e-06,4.831441837848800768e-06,4.917717584953243881e-06,5.003993332057686994e-06,5.090269079162130107e-06,5.176544826266573219e-06,5.262820573371016332e-06,5.349096320475459445e-06,5.435372067579902558e-06 +0.000000000000000000e+00,8.351561086879406371e-08,1.670312217375881274e-07,2.505468326063821779e-07,3.340624434751762019e-07,4.175780543439702259e-07,5.010936652127642499e-07,5.846092760815583269e-07,6.681248869503524038e-07,7.516404978191464808e-07,8.351561086879405577e-07,9.186717195567346347e-07,1.002187330425528712e-06,1.085702941294322789e-06,1.169218552163116866e-06,1.252734163031910942e-06,1.336249773900705019e-06,1.419765384769499096e-06,1.503280995638293173e-06,1.586796606507087250e-06,1.670312217375881327e-06,1.753827828244675404e-06,1.837343439113469481e-06,1.920859049982263558e-06,2.004374660851057847e-06,2.087890271719852135e-06,2.171405882588646424e-06,2.254921493457440713e-06,2.338437104326235002e-06,2.421952715195029290e-06,2.505468326063823579e-06,2.588983936932617868e-06,2.672499547801412156e-06,2.756015158670206445e-06,2.839530769539000734e-06,2.923046380407795023e-06,3.006561991276589311e-06,3.090077602145383600e-06,3.173593213014177889e-06,3.257108823882972177e-06,3.340624434751766466e-06,3.424140045620560755e-06,3.507655656489355043e-06,3.591171267358149332e-06,3.674686878226943621e-06,3.758202489095737910e-06,3.841718099964532198e-06,3.925233710833326911e-06,4.008749321702121623e-06,4.092264932570916335e-06,4.175780543439711047e-06,4.259296154308505759e-06,4.342811765177300472e-06,4.426327376046095184e-06,4.509842986914889896e-06,4.593358597783684608e-06,4.676874208652479321e-06,4.760389819521274033e-06,4.843905430390068745e-06,4.927421041258863457e-06,5.010936652127658169e-06,5.094452262996452882e-06,5.177967873865247594e-06,5.261483484734042306e-06 +0.000000000000000000e+00,8.261388732064468103e-08,1.652277746412893621e-07,2.478416619619340431e-07,3.304555492825787241e-07,4.130694366032234051e-07,4.956833239238680862e-07,5.782972112445127672e-07,6.609110985651574482e-07,7.435249858858021292e-07,8.261388732064468103e-07,9.087527605270914913e-07,9.913666478477361723e-07,1.073980535168380853e-06,1.156594422489025534e-06,1.239208309809670215e-06,1.321822197130314896e-06,1.404436084450959577e-06,1.487049971771604258e-06,1.569663859092248939e-06,1.652277746412893621e-06,1.734891633733538302e-06,1.817505521054182983e-06,1.900119408374827664e-06,1.982733295695472345e-06,2.065347183016117026e-06,2.147961070336761707e-06,2.230574957657406388e-06,2.313188844978051069e-06,2.395802732298695750e-06,2.478416619619340431e-06,2.561030506939985112e-06,2.643644394260629793e-06,2.726258281581274474e-06,2.808872168901919155e-06,2.891486056222563836e-06,2.974099943543208517e-06,3.056713830863853198e-06,3.139327718184497879e-06,3.221941605505142560e-06,3.304555492825787241e-06,3.387169380146431922e-06,3.469783267467076603e-06,3.552397154787721284e-06,3.635011042108365965e-06,3.717624929429010646e-06,3.800238816749655327e-06,3.882852704070299585e-06,3.965466591390943842e-06,4.048080478711588100e-06,4.130694366032232357e-06,4.213308253352876615e-06,4.295922140673520872e-06,4.378536027994165130e-06,4.461149915314809387e-06,4.543763802635453645e-06,4.626377689956097902e-06,4.708991577276742160e-06,4.791605464597386417e-06,4.874219351918030675e-06,4.956833239238674932e-06,5.039447126559319190e-06,5.122061013879963447e-06,5.204674901200607705e-06 +0.000000000000000000e+00,8.618231324632319722e-08,1.723646264926463944e-07,2.585469397389696049e-07,3.447292529852928418e-07,4.309115662316160787e-07,5.170938794779393157e-07,6.032761927242625526e-07,6.894585059705857895e-07,7.756408192169090264e-07,8.618231324632322633e-07,9.480054457095555003e-07,1.034187758955878843e-06,1.120370072202202186e-06,1.206552385448525529e-06,1.292734698694848871e-06,1.378917011941172214e-06,1.465099325187495557e-06,1.551281638433818900e-06,1.637463951680142243e-06,1.723646264926465585e-06,1.809828578172788928e-06,1.896010891419112271e-06,1.982193204665435614e-06,2.068375517911758957e-06,2.154557831158082299e-06,2.240740144404405642e-06,2.326922457650728985e-06,2.413104770897052328e-06,2.499287084143375671e-06,2.585469397389699013e-06,2.671651710636022356e-06,2.757834023882345699e-06,2.844016337128669042e-06,2.930198650374992385e-06,3.016380963621315728e-06,3.102563276867639070e-06,3.188745590113962413e-06,3.274927903360285756e-06,3.361110216606609099e-06,3.447292529852932442e-06,3.533474843099255784e-06,3.619657156345579127e-06,3.705839469591902470e-06,3.792021782838225813e-06,3.878204096084549156e-06,3.964386409330872922e-06,4.050568722577196688e-06,4.136751035823520454e-06,4.222933349069844221e-06,4.309115662316167987e-06,4.395297975562491753e-06,4.481480288808815520e-06,4.567662602055139286e-06,4.653844915301463052e-06,4.740027228547786819e-06,4.826209541794110585e-06,4.912391855040434351e-06,4.998574168286758118e-06,5.084756481533081884e-06,5.170938794779405650e-06,5.257121108025729417e-06,5.343303421272053183e-06,5.429485734518376949e-06 +0.000000000000000000e+00,8.590102749624280327e-08,1.718020549924856065e-07,2.577030824887284230e-07,3.436041099849712660e-07,4.295051374812141090e-07,5.154061649774569520e-07,6.013071924736997949e-07,6.872082199699426379e-07,7.731092474661854809e-07,8.590102749624283238e-07,9.449113024586711668e-07,1.030812329954914116e-06,1.116713357451157170e-06,1.202614384947400225e-06,1.288515412443643280e-06,1.374416439939886335e-06,1.460317467436129389e-06,1.546218494932372444e-06,1.632119522428615499e-06,1.718020549924858554e-06,1.803921577421101608e-06,1.889822604917344663e-06,1.975723632413587718e-06,2.061624659909830772e-06,2.147525687406073827e-06,2.233426714902316882e-06,2.319327742398559937e-06,2.405228769894802991e-06,2.491129797391046046e-06,2.577030824887289101e-06,2.662931852383532156e-06,2.748832879879775210e-06,2.834733907376018265e-06,2.920634934872261320e-06,3.006535962368504374e-06,3.092436989864747429e-06,3.178338017360990484e-06,3.264239044857233539e-06,3.350140072353476593e-06,3.436041099849719648e-06,3.521942127345962703e-06,3.607843154842205758e-06,3.693744182338448812e-06,3.779645209834691867e-06,3.865546237330935345e-06,3.951447264827178824e-06,4.037348292323422302e-06,4.123249319819665780e-06,4.209150347315909258e-06,4.295051374812152737e-06,4.380952402308396215e-06,4.466853429804639693e-06,4.552754457300883171e-06,4.638655484797126650e-06,4.724556512293370128e-06,4.810457539789613606e-06,4.896358567285857084e-06,4.982259594782100563e-06,5.068160622278344041e-06,5.154061649774587519e-06,5.239962677270830997e-06,5.325863704767074476e-06,5.411764732263317954e-06 +0.000000000000000000e+00,8.274418340964328336e-08,1.654883668192865667e-07,2.482325502289298501e-07,3.309767336385731335e-07,4.137209170482164168e-07,4.964651004578597002e-07,5.792092838675029836e-07,6.619534672771462669e-07,7.446976506867895503e-07,8.274418340964328336e-07,9.101860175060761170e-07,9.929302009157194004e-07,1.075674384325362684e-06,1.158418567735005967e-06,1.241162751144649250e-06,1.323906934554292534e-06,1.406651117963935817e-06,1.489395301373579101e-06,1.572139484783222384e-06,1.654883668192865667e-06,1.737627851602508951e-06,1.820372035012152234e-06,1.903116218421795517e-06,1.985860401831438801e-06,2.068604585241082084e-06,2.151348768650725367e-06,2.234092952060368651e-06,2.316837135470011934e-06,2.399581318879655218e-06,2.482325502289298501e-06,2.565069685698941784e-06,2.647813869108585068e-06,2.730558052518228351e-06,2.813302235927871634e-06,2.896046419337514918e-06,2.978790602747158201e-06,3.061534786156801484e-06,3.144278969566444768e-06,3.227023152976088051e-06,3.309767336385731335e-06,3.392511519795374618e-06,3.475255703205017901e-06,3.557999886614661185e-06,3.640744070024304468e-06,3.723488253433947751e-06,3.806232436843591035e-06,3.888976620253233895e-06,3.971720803662876754e-06,4.054464987072519614e-06,4.137209170482162474e-06,4.219953353891805334e-06,4.302697537301448194e-06,4.385441720711091054e-06,4.468185904120733914e-06,4.550930087530376773e-06,4.633674270940019633e-06,4.716418454349662493e-06,4.799162637759305353e-06,4.881906821168948213e-06,4.964651004578591073e-06,5.047395187988233932e-06,5.130139371397876792e-06,5.212883554807519652e-06 +0.000000000000000000e+00,8.618231324632655888e-08,1.723646264926531178e-07,2.585469397389796634e-07,3.447292529853061826e-07,4.309115662316327018e-07,5.170938794779592209e-07,6.032761927242857401e-07,6.894585059706122593e-07,7.756408192169387785e-07,8.618231324632652976e-07,9.480054457095918168e-07,1.034187758955918230e-06,1.120370072202244538e-06,1.206552385448570845e-06,1.292734698694897152e-06,1.378917011941223460e-06,1.465099325187549767e-06,1.551281638433876075e-06,1.637463951680202382e-06,1.723646264926528689e-06,1.809828578172854997e-06,1.896010891419181304e-06,1.982193204665507612e-06,2.068375517911833919e-06,2.154557831158160227e-06,2.240740144404486534e-06,2.326922457650812841e-06,2.413104770897139149e-06,2.499287084143465456e-06,2.585469397389791764e-06,2.671651710636118071e-06,2.757834023882444378e-06,2.844016337128770686e-06,2.930198650375096993e-06,3.016380963621423301e-06,3.102563276867749608e-06,3.188745590114075916e-06,3.274927903360402223e-06,3.361110216606728530e-06,3.447292529853054838e-06,3.533474843099381145e-06,3.619657156345707453e-06,3.705839469592033760e-06,3.792021782838360067e-06,3.878204096084686375e-06,3.964386409331012682e-06,4.050568722577338990e-06,4.136751035823665297e-06,4.222933349069991605e-06,4.309115662316317912e-06,4.395297975562644219e-06,4.481480288808970527e-06,4.567662602055296834e-06,4.653844915301623142e-06,4.740027228547949449e-06,4.826209541794275756e-06,4.912391855040602064e-06,4.998574168286928371e-06,5.084756481533254679e-06,5.170938794779580986e-06,5.257121108025907294e-06,5.343303421272233601e-06,5.429485734518559908e-06 +0.000000000000000000e+00,8.590102749624645610e-08,1.718020549924929122e-07,2.577030824887393815e-07,3.436041099849858773e-07,4.295051374812323731e-07,5.154061649774788689e-07,6.013071924737253118e-07,6.872082199699717547e-07,7.731092474662181975e-07,8.590102749624646404e-07,9.449113024587110832e-07,1.030812329954957526e-06,1.116713357451203969e-06,1.202614384947450412e-06,1.288515412443696855e-06,1.374416439939943298e-06,1.460317467436189740e-06,1.546218494932436183e-06,1.632119522428682626e-06,1.718020549924929069e-06,1.803921577421175512e-06,1.889822604917421955e-06,1.975723632413668609e-06,2.061624659909915476e-06,2.147525687406162342e-06,2.233426714902409208e-06,2.319327742398656075e-06,2.405228769894902941e-06,2.491129797391149808e-06,2.577030824887396674e-06,2.662931852383643540e-06,2.748832879879890407e-06,2.834733907376137273e-06,2.920634934872384140e-06,3.006535962368631006e-06,3.092436989864877872e-06,3.178338017361124739e-06,3.264239044857371605e-06,3.350140072353618471e-06,3.436041099849865338e-06,3.521942127346112204e-06,3.607843154842359071e-06,3.693744182338605937e-06,3.779645209834852803e-06,3.865546237331099670e-06,3.951447264827346536e-06,4.037348292323593402e-06,4.123249319819840269e-06,4.209150347316087135e-06,4.295051374812334002e-06,4.380952402308580868e-06,4.466853429804827734e-06,4.552754457301074601e-06,4.638655484797321467e-06,4.724556512293568333e-06,4.810457539789815200e-06,4.896358567286062066e-06,4.982259594782308933e-06,5.068160622278555799e-06,5.154061649774802665e-06,5.239962677271049532e-06,5.325863704767296398e-06,5.411764732263543265e-06 +0.000000000000000000e+00,8.274418340964787587e-08,1.654883668192957517e-07,2.482325502289436144e-07,3.309767336385914505e-07,4.137209170482392867e-07,4.964651004578871229e-07,5.792092838675349590e-07,6.619534672771827952e-07,7.446976506868306314e-07,8.274418340964784675e-07,9.101860175061263037e-07,9.929302009157740340e-07,1.075674384325421764e-06,1.158418567735069495e-06,1.241162751144717225e-06,1.323906934554364955e-06,1.406651117964012685e-06,1.489395301373660416e-06,1.572139484783308146e-06,1.654883668192955876e-06,1.737627851602603607e-06,1.820372035012251337e-06,1.903116218421899067e-06,1.985860401831546797e-06,2.068604585241194316e-06,2.151348768650841835e-06,2.234092952060489353e-06,2.316837135470136872e-06,2.399581318879784390e-06,2.482325502289431909e-06,2.565069685699079427e-06,2.647813869108726946e-06,2.730558052518374464e-06,2.813302235928021983e-06,2.896046419337669501e-06,2.978790602747317020e-06,3.061534786156964538e-06,3.144278969566612057e-06,3.227023152976259575e-06,3.309767336385907094e-06,3.392511519795554612e-06,3.475255703205202131e-06,3.557999886614849650e-06,3.640744070024497168e-06,3.723488253434144687e-06,3.806232436843792205e-06,3.888976620253439724e-06,3.971720803663087666e-06,4.054464987072735608e-06,4.137209170482383550e-06,4.219953353892031492e-06,4.302697537301679434e-06,4.385441720711327376e-06,4.468185904120975318e-06,4.550930087530623260e-06,4.633674270940271202e-06,4.716418454349919144e-06,4.799162637759567086e-06,4.881906821169215028e-06,4.964651004578862970e-06,5.047395187988510912e-06,5.130139371398158854e-06,5.212883554807806796e-06 +0.000000000000000000e+00,8.707260766530219255e-08,1.741452153306043851e-07,2.612178229959066041e-07,3.482904306612088231e-07,4.353630383265110422e-07,5.224356459918132082e-07,6.095082536571153743e-07,6.965808613224175404e-07,7.836534689877197065e-07,8.707260766530218726e-07,9.577986843183241445e-07,1.044871291983626416e-06,1.131943899648928688e-06,1.219016507314230960e-06,1.306089114979533232e-06,1.393161722644835504e-06,1.480234330310137776e-06,1.567306937975440048e-06,1.654379545640742320e-06,1.741452153306044592e-06,1.828524760971346864e-06,1.915597368636649136e-06,2.002669976301951408e-06,2.089742583967253680e-06,2.176815191632555952e-06,2.263887799297858224e-06,2.350960406963160496e-06,2.438033014628462768e-06,2.525105622293765040e-06,2.612178229959067312e-06,2.699250837624369584e-06,2.786323445289671856e-06,2.873396052954974128e-06,2.960468660620276400e-06,3.047541268285578672e-06,3.134613875950880944e-06,3.221686483616183215e-06,3.308759091281485487e-06,3.395831698946787759e-06,3.482904306612090031e-06,3.569976914277392303e-06,3.657049521942694575e-06,3.744122129607996847e-06,3.831194737273299119e-06,3.918267344938601815e-06,4.005339952603904510e-06,4.092412560269207206e-06,4.179485167934509901e-06,4.266557775599812597e-06,4.353630383265115292e-06,4.440702990930417988e-06,4.527775598595720683e-06,4.614848206261023378e-06,4.701920813926326074e-06,4.788993421591628769e-06,4.876066029256931465e-06,4.963138636922234160e-06,5.050211244587536856e-06,5.137283852252839551e-06,5.224356459918142247e-06,5.311429067583444942e-06,5.398501675248747638e-06,5.485574282914050333e-06 +0.000000000000000000e+00,8.658998184794168824e-08,1.731799636958833765e-07,2.597699455438250780e-07,3.463599273917668059e-07,4.329499092397085338e-07,5.195398910876502618e-07,6.061298729355919897e-07,6.927198547835337177e-07,7.793098366314754456e-07,8.658998184794171736e-07,9.524898003273589015e-07,1.039079782175300735e-06,1.125669764023242675e-06,1.212259745871184615e-06,1.298849727719126554e-06,1.385439709567068494e-06,1.472029691415010434e-06,1.558619673262952374e-06,1.645209655110894313e-06,1.731799636958836253e-06,1.818389618806778193e-06,1.904979600654720132e-06,1.991569582502662072e-06,2.078159564350604012e-06,2.164749546198545951e-06,2.251339528046487891e-06,2.337929509894429831e-06,2.424519491742371771e-06,2.511109473590313710e-06,2.597699455438255650e-06,2.684289437286197590e-06,2.770879419134139529e-06,2.857469400982081469e-06,2.944059382830023409e-06,3.030649364677965348e-06,3.117239346525907288e-06,3.203829328373849228e-06,3.290419310221791168e-06,3.377009292069733107e-06,3.463599273917675047e-06,3.550189255765616987e-06,3.636779237613558926e-06,3.723369219461500866e-06,3.809959201309442806e-06,3.896549183157384746e-06,3.983139165005326685e-06,4.069729146853268625e-06,4.156319128701210565e-06,4.242909110549152504e-06,4.329499092397094444e-06,4.416089074245036384e-06,4.502679056092978323e-06,4.589269037940920263e-06,4.675859019788862203e-06,4.762449001636804143e-06,4.849038983484746082e-06,4.935628965332688022e-06,5.022218947180629962e-06,5.108808929028571901e-06,5.195398910876513841e-06,5.281988892724455781e-06,5.368578874572397720e-06,5.455168856420339660e-06 +0.000000000000000000e+00,8.318040843222057632e-08,1.663608168644411526e-07,2.495412252966617422e-07,3.327216337288823582e-07,4.159020421611029742e-07,4.990824505933235903e-07,5.822628590255441533e-07,6.654432674577647164e-07,7.486236758899852795e-07,8.318040843222058426e-07,9.149844927544264057e-07,9.981649011866469688e-07,1.081345309618867532e-06,1.164525718051088095e-06,1.247706126483308658e-06,1.330886534915529221e-06,1.414066943347749784e-06,1.497247351779970347e-06,1.580427760212190910e-06,1.663608168644411473e-06,1.746788577076632036e-06,1.829968985508852600e-06,1.913149393941073374e-06,1.996329802373294361e-06,2.079510210805515348e-06,2.162690619237736334e-06,2.245871027669957321e-06,2.329051436102178307e-06,2.412231844534399294e-06,2.495412252966620281e-06,2.578592661398841267e-06,2.661773069831062254e-06,2.744953478263283240e-06,2.828133886695504227e-06,2.911314295127725214e-06,2.994494703559946200e-06,3.077675111992167187e-06,3.160855520424388173e-06,3.244035928856609160e-06,3.327216337288830147e-06,3.410396745721051133e-06,3.493577154153272120e-06,3.576757562585493106e-06,3.659937971017714093e-06,3.743118379449935080e-06,3.826298787882156066e-06,3.909479196314377053e-06,3.992659604746598039e-06,4.075840013178819026e-06,4.159020421611040013e-06,4.242200830043260999e-06,4.325381238475481986e-06,4.408561646907702972e-06,4.491742055339923959e-06,4.574922463772144946e-06,4.658102872204365932e-06,4.741283280636586919e-06,4.824463689068807905e-06,4.907644097501028892e-06,4.990824505933249879e-06,5.074004914365470865e-06,5.157185322797691852e-06,5.240365731229912838e-06 +0.000000000000000000e+00,8.707260766530486600e-08,1.741452153306097320e-07,2.612178229959145980e-07,3.482904306612194640e-07,4.353630383265243300e-07,5.224356459918291960e-07,6.095082536571341149e-07,6.965808613224390339e-07,7.836534689877439528e-07,8.707260766530488717e-07,9.577986843183537907e-07,1.044871291983658604e-06,1.131943899648963417e-06,1.219016507314268230e-06,1.306089114979573043e-06,1.393161722644877856e-06,1.480234330310182669e-06,1.567306937975487482e-06,1.654379545640792295e-06,1.741452153306097108e-06,1.828524760971401921e-06,1.915597368636706734e-06,2.002669976302011547e-06,2.089742583967316360e-06,2.176815191632621173e-06,2.263887799297925987e-06,2.350960406963230800e-06,2.438033014628535613e-06,2.525105622293840426e-06,2.612178229959145239e-06,2.699250837624450052e-06,2.786323445289754865e-06,2.873396052955059678e-06,2.960468660620364491e-06,3.047541268285669304e-06,3.134613875950974117e-06,3.221686483616278930e-06,3.308759091281583743e-06,3.395831698946888556e-06,3.482904306612193369e-06,3.569976914277498182e-06,3.657049521942802995e-06,3.744122129608107809e-06,3.831194737273412622e-06,3.918267344938717011e-06,4.005339952604021401e-06,4.092412560269325790e-06,4.179485167934630180e-06,4.266557775599934569e-06,4.353630383265238959e-06,4.440702990930543348e-06,4.527775598595847738e-06,4.614848206261152127e-06,4.701920813926456517e-06,4.788993421591760907e-06,4.876066029257065296e-06,4.963138636922369686e-06,5.050211244587674075e-06,5.137283852252978465e-06,5.224356459918282854e-06,5.311429067583587244e-06,5.398501675248891633e-06,5.485574282914196023e-06 +0.000000000000000000e+00,8.658998184794470579e-08,1.731799636958894116e-07,2.597699455438341306e-07,3.463599273917788761e-07,4.329499092397236216e-07,5.195398910876683671e-07,6.061298729356130597e-07,6.927198547835577522e-07,7.793098366315024448e-07,8.658998184794471374e-07,9.524898003273918299e-07,1.039079782175336522e-06,1.125669764023281215e-06,1.212259745871225908e-06,1.298849727719170600e-06,1.385439709567115293e-06,1.472029691415059985e-06,1.558619673263004678e-06,1.645209655110949370e-06,1.731799636958894063e-06,1.818389618806838756e-06,1.904979600654783448e-06,1.991569582502728141e-06,2.078159564350672621e-06,2.164749546198617102e-06,2.251339528046561583e-06,2.337929509894506064e-06,2.424519491742450545e-06,2.511109473590395025e-06,2.597699455438339506e-06,2.684289437286283987e-06,2.770879419134228468e-06,2.857469400982172949e-06,2.944059382830117429e-06,3.030649364678061910e-06,3.117239346526006391e-06,3.203829328373950872e-06,3.290419310221895353e-06,3.377009292069839833e-06,3.463599273917784314e-06,3.550189255765728795e-06,3.636779237613673276e-06,3.723369219461617757e-06,3.809959201309562237e-06,3.896549183157506718e-06,3.983139165005451199e-06,4.069729146853395680e-06,4.156319128701340161e-06,4.242909110549284641e-06,4.329499092397229122e-06,4.416089074245173603e-06,4.502679056093118084e-06,4.589269037941062565e-06,4.675859019789007045e-06,4.762449001636951526e-06,4.849038983484896007e-06,4.935628965332840488e-06,5.022218947180784969e-06,5.108808929028729449e-06,5.195398910876673930e-06,5.281988892724618411e-06,5.368578874572562892e-06,5.455168856420507373e-06 +0.000000000000000000e+00,8.318040843222490413e-08,1.663608168644498083e-07,2.495412252966747124e-07,3.327216337288996165e-07,4.159020421611245206e-07,4.990824505933494248e-07,5.822628590255743289e-07,6.654432674577992330e-07,7.486236758900241371e-07,8.318040843222490413e-07,9.149844927544739454e-07,9.981649011866988495e-07,1.081345309618923648e-06,1.164525718051148446e-06,1.247706126483373244e-06,1.330886534915598043e-06,1.414066943347822841e-06,1.497247351780047639e-06,1.580427760212272437e-06,1.663608168644497236e-06,1.746788577076722034e-06,1.829968985508946832e-06,1.913149393941171630e-06,1.996329802373396428e-06,2.079510210805621227e-06,2.162690619237846025e-06,2.245871027670070823e-06,2.329051436102295621e-06,2.412231844534520420e-06,2.495412252966745218e-06,2.578592661398970016e-06,2.661773069831194814e-06,2.744953478263419613e-06,2.828133886695644411e-06,2.911314295127869209e-06,2.994494703560094007e-06,3.077675111992318806e-06,3.160855520424543604e-06,3.244035928856768402e-06,3.327216337288993200e-06,3.410396745721217999e-06,3.493577154153442797e-06,3.576757562585667595e-06,3.659937971017892393e-06,3.743118379450117192e-06,3.826298787882341566e-06,3.909479196314565941e-06,3.992659604746790316e-06,4.075840013179014691e-06,4.159020421611239065e-06,4.242200830043463440e-06,4.325381238475687815e-06,4.408561646907912190e-06,4.491742055340136564e-06,4.574922463772360939e-06,4.658102872204585314e-06,4.741283280636809688e-06,4.824463689069034063e-06,4.907644097501258438e-06,4.990824505933482813e-06,5.074004914365707187e-06,5.157185322797931562e-06,5.240365731230155937e-06 +0.000000000000000000e+00,8.813560223724343465e-08,1.762712044744868693e-07,2.644068067117303172e-07,3.525424089489737915e-07,4.406780111862172659e-07,5.288136134234607402e-07,6.169492156607042146e-07,7.050848178979476889e-07,7.932204201351911633e-07,8.813560223724346377e-07,9.694916246096781120e-07,1.057627226846921692e-06,1.145762829084165272e-06,1.233898431321408853e-06,1.322034033558652433e-06,1.410169635795896013e-06,1.498305238033139593e-06,1.586440840270383174e-06,1.674576442507626754e-06,1.762712044744870334e-06,1.850847646982113914e-06,1.938983249219357495e-06,2.027118851456601075e-06,2.115254453693844655e-06,2.203390055931088235e-06,2.291525658168331815e-06,2.379661260405575396e-06,2.467796862642818976e-06,2.555932464880062556e-06,2.644068067117306136e-06,2.732203669354549717e-06,2.820339271591793297e-06,2.908474873829036877e-06,2.996610476066280457e-06,3.084746078303524038e-06,3.172881680540767618e-06,3.261017282778011198e-06,3.349152885015254778e-06,3.437288487252498359e-06,3.525424089489741939e-06,3.613559691726985519e-06,3.701695293964229099e-06,3.789830896201472679e-06,3.877966498438715836e-06,3.966102100675958993e-06,4.054237702913202150e-06,4.142373305150445306e-06,4.230508907387688463e-06,4.318644509624931620e-06,4.406780111862174776e-06,4.494915714099417933e-06,4.583051316336661090e-06,4.671186918573904247e-06,4.759322520811147403e-06,4.847458123048390560e-06,4.935593725285633717e-06,5.023729327522876873e-06,5.111864929760120030e-06,5.200000531997363187e-06,5.288136134234606344e-06,5.376271736471849500e-06,5.464407338709092657e-06,5.552542940946335814e-06 +0.000000000000000000e+00,8.759550537473596866e-08,1.751910107494719373e-07,2.627865161242079060e-07,3.503820214989438746e-07,4.379775268736798433e-07,5.255730322484158120e-07,6.131685376231517806e-07,7.007640429978877493e-07,7.883595483726237180e-07,8.759550537473596866e-07,9.635505591220956553e-07,1.051146064496831624e-06,1.138741569871567593e-06,1.226337075246303561e-06,1.313932580621039530e-06,1.401528085995775499e-06,1.489123591370511467e-06,1.576719096745247436e-06,1.664314602119983405e-06,1.751910107494719373e-06,1.839505612869455342e-06,1.927101118244191311e-06,2.014696623618927491e-06,2.102292128993663671e-06,2.189887634368399852e-06,2.277483139743136032e-06,2.365078645117872213e-06,2.452674150492608393e-06,2.540269655867344574e-06,2.627865161242080754e-06,2.715460666616816934e-06,2.803056171991553115e-06,2.890651677366289295e-06,2.978247182741025476e-06,3.065842688115761656e-06,3.153438193490497836e-06,3.241033698865234017e-06,3.328629204239970197e-06,3.416224709614706378e-06,3.503820214989442558e-06,3.591415720364178739e-06,3.679011225738914919e-06,3.766606731113651099e-06,3.854202236488386856e-06,3.941797741863122613e-06,4.029393247237858370e-06,4.116988752612594127e-06,4.204584257987329884e-06,4.292179763362065641e-06,4.379775268736801398e-06,4.467370774111537155e-06,4.554966279486272912e-06,4.642561784861008668e-06,4.730157290235744425e-06,4.817752795610480182e-06,4.905348300985215939e-06,4.992943806359951696e-06,5.080539311734687453e-06,5.168134817109423210e-06,5.255730322484158967e-06,5.343325827858894724e-06,5.430921333233630481e-06,5.518516838608366237e-06 +0.000000000000000000e+00,8.370852093987735807e-08,1.674170418797547161e-07,2.511255628196320610e-07,3.348340837595093793e-07,4.185426046993866977e-07,5.022511256392640160e-07,5.859596465791413344e-07,6.696681675190186528e-07,7.533766884588959711e-07,8.370852093987732895e-07,9.207937303386506078e-07,1.004502251278527820e-06,1.088210772218405033e-06,1.171919293158282245e-06,1.255627814098159458e-06,1.339336335038036670e-06,1.423044855977913883e-06,1.506753376917791095e-06,1.590461897857668308e-06,1.674170418797545520e-06,1.757878939737422733e-06,1.841587460677299945e-06,1.925295981617177158e-06,2.009004502557054370e-06,2.092713023496931583e-06,2.176421544436808795e-06,2.260130065376686008e-06,2.343838586316563220e-06,2.427547107256440433e-06,2.511255628196317645e-06,2.594964149136194857e-06,2.678672670076072070e-06,2.762381191015949282e-06,2.846089711955826495e-06,2.929798232895703707e-06,3.013506753835580920e-06,3.097215274775458132e-06,3.180923795715335345e-06,3.264632316655212557e-06,3.348340837595089770e-06,3.432049358534966982e-06,3.515757879474844195e-06,3.599466400414721407e-06,3.683174921354598620e-06,3.766883442294475832e-06,3.850591963234353468e-06,3.934300484174231528e-06,4.018009005114109587e-06,4.101717526053987647e-06,4.185426046993865706e-06,4.269134567933743766e-06,4.352843088873621825e-06,4.436551609813499885e-06,4.520260130753377944e-06,4.603968651693256004e-06,4.687677172633134063e-06,4.771385693573012123e-06,4.855094214512890182e-06,4.938802735452768242e-06,5.022511256392646301e-06,5.106219777332524361e-06,5.189928298272402420e-06,5.273636819212280480e-06 +0.000000000000000000e+00,8.813560223724499637e-08,1.762712044744899927e-07,2.644068067117349759e-07,3.525424089489799325e-07,4.406780111862248892e-07,5.288136134234698458e-07,6.169492156607148025e-07,7.050848178979597592e-07,7.932204201352047158e-07,8.813560223724496725e-07,9.694916246096946291e-07,1.057627226846939480e-06,1.145762829084184331e-06,1.233898431321429181e-06,1.322034033558674032e-06,1.410169635795918883e-06,1.498305238033163734e-06,1.586440840270408585e-06,1.674576442507653435e-06,1.762712044744898286e-06,1.850847646982143137e-06,1.938983249219387988e-06,2.027118851456632839e-06,2.115254453693877689e-06,2.203390055931122540e-06,2.291525658168367391e-06,2.379661260405612242e-06,2.467796862642857092e-06,2.555932464880101943e-06,2.644068067117346794e-06,2.732203669354591645e-06,2.820339271591836496e-06,2.908474873829081346e-06,2.996610476066326197e-06,3.084746078303571048e-06,3.172881680540815899e-06,3.261017282778060749e-06,3.349152885015305600e-06,3.437288487252550451e-06,3.525424089489795302e-06,3.613559691727040153e-06,3.701695293964285003e-06,3.789830896201529854e-06,3.877966498438775128e-06,3.966102100676019979e-06,4.054237702913264830e-06,4.142373305150509681e-06,4.230508907387754532e-06,4.318644509624999382e-06,4.406780111862244233e-06,4.494915714099489084e-06,4.583051316336733935e-06,4.671186918573978785e-06,4.759322520811223636e-06,4.847458123048468487e-06,4.935593725285713338e-06,5.023729327522958189e-06,5.111864929760203039e-06,5.200000531997447890e-06,5.288136134234692741e-06,5.376271736471937592e-06,5.464407338709182443e-06,5.552542940946427293e-06 +0.000000000000000000e+00,8.759550537473815242e-08,1.751910107494763048e-07,2.627865161242144705e-07,3.503820214989526626e-07,4.379775268736908547e-07,5.255730322484290469e-07,6.131685376231672390e-07,7.007640429979054311e-07,7.883595483726436232e-07,8.759550537473818154e-07,9.635505591221200075e-07,1.051146064496858305e-06,1.138741569871596603e-06,1.226337075246334901e-06,1.313932580621073199e-06,1.401528085995811497e-06,1.489123591370549795e-06,1.576719096745288093e-06,1.664314602120026392e-06,1.751910107494764690e-06,1.839505612869502988e-06,1.927101118244241286e-06,2.014696623618979584e-06,2.102292128993717882e-06,2.189887634368456180e-06,2.277483139743194478e-06,2.365078645117932776e-06,2.452674150492671074e-06,2.540269655867409372e-06,2.627865161242147670e-06,2.715460666616885968e-06,2.803056171991624266e-06,2.890651677366362564e-06,2.978247182741100862e-06,3.065842688115839160e-06,3.153438193490577458e-06,3.241033698865315756e-06,3.328629204240054054e-06,3.416224709614792352e-06,3.503820214989530650e-06,3.591415720364268948e-06,3.679011225739007246e-06,3.766606731113745544e-06,3.854202236488483418e-06,3.941797741863220869e-06,4.029393247237958320e-06,4.116988752612695771e-06,4.204584257987433222e-06,4.292179763362170673e-06,4.379775268736908124e-06,4.467370774111645575e-06,4.554966279486383026e-06,4.642561784861120477e-06,4.730157290235857928e-06,4.817752795610595379e-06,4.905348300985332830e-06,4.992943806360070281e-06,5.080539311734807732e-06,5.168134817109545183e-06,5.255730322484282634e-06,5.343325827859020085e-06,5.430921333233757536e-06,5.518516838608494986e-06 +0.000000000000000000e+00,8.370852093988107707e-08,1.674170418797621541e-07,2.511255628196432312e-07,3.348340837595243083e-07,4.185426046994053853e-07,5.022511256392864624e-07,5.859596465791675924e-07,6.696681675190487224e-07,7.533766884589298524e-07,8.370852093988109825e-07,9.207937303386921125e-07,1.004502251278573137e-06,1.088210772218454161e-06,1.171919293158335185e-06,1.255627814098216209e-06,1.339336335038097233e-06,1.423044855977978257e-06,1.506753376917859281e-06,1.590461897857740306e-06,1.674170418797621330e-06,1.757878939737502354e-06,1.841587460677383378e-06,1.925295981617264402e-06,2.009004502557145426e-06,2.092713023497026450e-06,2.176421544436907474e-06,2.260130065376788499e-06,2.343838586316669523e-06,2.427547107256550547e-06,2.511255628196431571e-06,2.594964149136312595e-06,2.678672670076193619e-06,2.762381191016074643e-06,2.846089711955955667e-06,2.929798232895836692e-06,3.013506753835717716e-06,3.097215274775598740e-06,3.180923795715479764e-06,3.264632316655360788e-06,3.348340837595241812e-06,3.432049358535122836e-06,3.515757879475003860e-06,3.599466400414884885e-06,3.683174921354765909e-06,3.766883442294646933e-06,3.850591963234527957e-06,3.934300484174409405e-06,4.018009005114290852e-06,4.101717526054172300e-06,4.185426046994053748e-06,4.269134567933935195e-06,4.352843088873816643e-06,4.436551609813698091e-06,4.520260130753579538e-06,4.603968651693460986e-06,4.687677172633342433e-06,4.771385693573223881e-06,4.855094214513105329e-06,4.938802735452986776e-06,5.022511256392868224e-06,5.106219777332749672e-06,5.189928298272631119e-06,5.273636819212512567e-06 +0.000000000000000000e+00,8.920090431923034791e-08,1.784018086384606958e-07,2.676027129576910570e-07,3.568036172769214446e-07,4.460045215961518322e-07,5.352054259153822198e-07,6.244063302346126604e-07,7.136072345538431009e-07,8.028081388730735415e-07,8.920090431923039820e-07,9.812099475115344226e-07,1.070410851830764863e-06,1.159611756149995304e-06,1.248812660469225744e-06,1.338013564788456185e-06,1.427214469107686625e-06,1.516415373426917066e-06,1.605616277746147506e-06,1.694817182065377947e-06,1.784018086384608388e-06,1.873218990703838828e-06,1.962419895023069269e-06,2.051620799342299709e-06,2.140821703661530150e-06,2.230022607980760590e-06,2.319223512299991031e-06,2.408424416619221471e-06,2.497625320938451912e-06,2.586826225257682353e-06,2.676027129576912793e-06,2.765228033896143234e-06,2.854428938215373674e-06,2.943629842534604115e-06,3.032830746853834555e-06,3.122031651173064996e-06,3.211232555492295436e-06,3.300433459811525877e-06,3.389634364130756317e-06,3.478835268449986758e-06,3.568036172769217199e-06,3.657237077088447639e-06,3.746437981407678080e-06,3.835638885726908097e-06,3.924839790046137690e-06,4.014040694365367284e-06,4.103241598684596877e-06,4.192442503003826471e-06,4.281643407323056064e-06,4.370844311642285658e-06,4.460045215961515251e-06,4.549246120280744845e-06,4.638447024599974438e-06,4.727647928919204032e-06,4.816848833238433625e-06,4.906049737557663219e-06,4.995250641876892813e-06,5.084451546196122406e-06,5.173652450515352000e-06,5.262853354834581593e-06,5.352054259153811187e-06,5.441255163473040780e-06,5.530456067792270374e-06,5.619656972111499967e-06 +0.000000000000000000e+00,8.867584395809027486e-08,1.773516879161805497e-07,2.660275318742708246e-07,3.547033758323610994e-07,4.433792197904513743e-07,5.320550637485416492e-07,6.207309077066319770e-07,7.094067516647223048e-07,7.980825956228126326e-07,8.867584395809029604e-07,9.754342835389932882e-07,1.064110127497083510e-06,1.152785971455173732e-06,1.241461815413263954e-06,1.330137659371354176e-06,1.418813503329444398e-06,1.507489347287534620e-06,1.596165191245624842e-06,1.684841035203715064e-06,1.773516879161805285e-06,1.862192723119895507e-06,1.950868567077985729e-06,2.039544411036075951e-06,2.128220254994166173e-06,2.216896098952256395e-06,2.305571942910346617e-06,2.394247786868436839e-06,2.482923630826527061e-06,2.571599474784617283e-06,2.660275318742707505e-06,2.748951162700797727e-06,2.837627006658887949e-06,2.926302850616978170e-06,3.014978694575068392e-06,3.103654538533158614e-06,3.192330382491248836e-06,3.281006226449339058e-06,3.369682070407429280e-06,3.458357914365519502e-06,3.547033758323609724e-06,3.635709602281699946e-06,3.724385446239790168e-06,3.813061290197880390e-06,3.901737134155970612e-06,3.990412978114060833e-06,4.079088822072151055e-06,4.167764666030241277e-06,4.256440509988331499e-06,4.345116353946421721e-06,4.433792197904511943e-06,4.522468041862602165e-06,4.611143885820692387e-06,4.699819729778782609e-06,4.788495573736872831e-06,4.877171417694963053e-06,4.965847261653053275e-06,5.054523105611143497e-06,5.143198949569233718e-06,5.231874793527323940e-06,5.320550637485414162e-06,5.409226481443504384e-06,5.497902325401594606e-06,5.586578169359684828e-06 +0.000000000000000000e+00,8.424073418221542928e-08,1.684814683644308586e-07,2.527222025466462614e-07,3.369629367288616642e-07,4.212036709110770670e-07,5.054444050932925227e-07,5.896851392755079785e-07,6.739258734577234342e-07,7.581666076399388900e-07,8.424073418221543457e-07,9.266480760043698015e-07,1.010888810186585257e-06,1.095129544368800607e-06,1.179370278551015957e-06,1.263611012733231307e-06,1.347851746915446657e-06,1.432092481097662007e-06,1.516333215279877356e-06,1.600573949462092706e-06,1.684814683644308056e-06,1.769055417826523406e-06,1.853296152008738756e-06,1.937536886190954106e-06,2.021777620373169244e-06,2.106018354555384382e-06,2.190259088737599520e-06,2.274499822919814658e-06,2.358740557102029796e-06,2.442981291284244934e-06,2.527222025466460073e-06,2.611462759648675211e-06,2.695703493830890349e-06,2.779944228013105487e-06,2.864184962195320625e-06,2.948425696377535763e-06,3.032666430559750901e-06,3.116907164741966039e-06,3.201147898924181177e-06,3.285388633106396315e-06,3.369629367288611454e-06,3.453870101470826592e-06,3.538110835653041730e-06,3.622351569835256868e-06,3.706592304017472006e-06,3.790833038199687144e-06,3.875073772381902282e-06,3.959314506564117420e-06,4.043555240746332558e-06,4.127795974928547697e-06,4.212036709110762835e-06,4.296277443292977973e-06,4.380518177475193111e-06,4.464758911657408249e-06,4.548999645839623387e-06,4.633240380021838525e-06,4.717481114204053663e-06,4.801721848386268801e-06,4.885962582568483940e-06,4.970203316750699078e-06,5.054444050932914216e-06,5.138684785115129354e-06,5.222925519297344492e-06,5.307166253479559630e-06 +0.000000000000000000e+00,8.920090431923138023e-08,1.784018086384627605e-07,2.676027129576941275e-07,3.568036172769254680e-07,4.460045215961568085e-07,5.352054259153881490e-07,6.244063302346194366e-07,7.136072345538507242e-07,8.028081388730820118e-07,8.920090431923132994e-07,9.812099475115445870e-07,1.070410851830775875e-06,1.159611756150007162e-06,1.248812660469238450e-06,1.338013564788469737e-06,1.427214469107701025e-06,1.516415373426932312e-06,1.605616277746163600e-06,1.694817182065394888e-06,1.784018086384626175e-06,1.873218990703857463e-06,1.962419895023088750e-06,2.051620799342320038e-06,2.140821703661551326e-06,2.230022607980782613e-06,2.319223512300013901e-06,2.408424416619245188e-06,2.497625320938476476e-06,2.586826225257707764e-06,2.676027129576939051e-06,2.765228033896170339e-06,2.854428938215401626e-06,2.943629842534632914e-06,3.032830746853864201e-06,3.122031651173095489e-06,3.211232555492326777e-06,3.300433459811558064e-06,3.389634364130789352e-06,3.478835268450020639e-06,3.568036172769251927e-06,3.657237077088483215e-06,3.746437981407714502e-06,3.835638885726945366e-06,3.924839790046176654e-06,4.014040694365407941e-06,4.103241598684639229e-06,4.192442503003870517e-06,4.281643407323101804e-06,4.370844311642333092e-06,4.460045215961564379e-06,4.549246120280795667e-06,4.638447024600026954e-06,4.727647928919258242e-06,4.816848833238489530e-06,4.906049737557720817e-06,4.995250641876952105e-06,5.084451546196183392e-06,5.173652450515414680e-06,5.262853354834645968e-06,5.352054259153877255e-06,5.441255163473108543e-06,5.530456067792339830e-06,5.619656972111571118e-06 +0.000000000000000000e+00,8.867584395809151894e-08,1.773516879161830379e-07,2.660275318742745833e-07,3.547033758323661287e-07,4.433792197904576741e-07,5.320550637485491666e-07,6.207309077066406591e-07,7.094067516647321515e-07,7.980825956228236440e-07,8.867584395809151365e-07,9.754342835390066289e-07,1.064110127497098121e-06,1.152785971455189614e-06,1.241461815413281106e-06,1.330137659371372599e-06,1.418813503329464091e-06,1.507489347287555584e-06,1.596165191245647076e-06,1.684841035203738569e-06,1.773516879161830061e-06,1.862192723119921554e-06,1.950868567078012834e-06,2.039544411036103903e-06,2.128220254994194972e-06,2.216896098952286041e-06,2.305571942910377110e-06,2.394247786868468179e-06,2.482923630826559248e-06,2.571599474784650317e-06,2.660275318742741386e-06,2.748951162700832455e-06,2.837627006658923524e-06,2.926302850617014593e-06,3.014978694575105662e-06,3.103654538533196731e-06,3.192330382491287800e-06,3.281006226449378869e-06,3.369682070407469938e-06,3.458357914365561007e-06,3.547033758323652076e-06,3.635709602281743144e-06,3.724385446239834213e-06,3.813061290197925282e-06,3.901737134156016351e-06,3.990412978114107420e-06,4.079088822072198489e-06,4.167764666030289558e-06,4.256440509988380627e-06,4.345116353946471696e-06,4.433792197904562765e-06,4.522468041862653834e-06,4.611143885820744903e-06,4.699819729778835972e-06,4.788495573736927041e-06,4.877171417695018110e-06,4.965847261653109179e-06,5.054523105611200248e-06,5.143198949569291317e-06,5.231874793527382386e-06,5.320550637485473455e-06,5.409226481443564524e-06,5.497902325401655593e-06,5.586578169359746661e-06 +0.000000000000000000e+00,8.424073418221873800e-08,1.684814683644374760e-07,2.527222025466562140e-07,3.369629367288749520e-07,4.212036709110936900e-07,5.054444050933124280e-07,5.896851392755311660e-07,6.739258734577499040e-07,7.581666076399686420e-07,8.424073418221873800e-07,9.266480760044061180e-07,1.010888810186624856e-06,1.095129544368843594e-06,1.179370278551062332e-06,1.263611012733281070e-06,1.347851746915499808e-06,1.432092481097718546e-06,1.516333215279937284e-06,1.600573949462156022e-06,1.684814683644374760e-06,1.769055417826593498e-06,1.853296152008812236e-06,1.937536886191031186e-06,2.021777620373250135e-06,2.106018354555469085e-06,2.190259088737688035e-06,2.274499822919906985e-06,2.358740557102125935e-06,2.442981291284344884e-06,2.527222025466563834e-06,2.611462759648782784e-06,2.695703493831001734e-06,2.779944228013220683e-06,2.864184962195439633e-06,2.948425696377658583e-06,3.032666430559877533e-06,3.116907164742096482e-06,3.201147898924315432e-06,3.285388633106534382e-06,3.369629367288753332e-06,3.453870101470972281e-06,3.538110835653191231e-06,3.622351569835410181e-06,3.706592304017629131e-06,3.790833038199848080e-06,3.875073772382067454e-06,3.959314506564286827e-06,4.043555240746506200e-06,4.127795974928725574e-06,4.212036709110944947e-06,4.296277443293164320e-06,4.380518177475383693e-06,4.464758911657603067e-06,4.548999645839822440e-06,4.633240380022041813e-06,4.717481114204261186e-06,4.801721848386480560e-06,4.885962582568699933e-06,4.970203316750919306e-06,5.054444050933138680e-06,5.138684785115358053e-06,5.222925519297577426e-06,5.307166253479796799e-06 +0.000000000000000000e+00,9.014860355768647720e-08,1.802972071153729544e-07,2.704458106730594051e-07,3.605944142307458559e-07,4.507430177884323066e-07,5.408916213461188103e-07,6.310402249038053139e-07,7.211888284614918176e-07,8.113374320191783213e-07,9.014860355768648249e-07,9.916346391345513286e-07,1.081783242692237832e-06,1.171931846249924336e-06,1.262080449807610840e-06,1.352229053365297343e-06,1.442377656922983847e-06,1.532526260480670351e-06,1.622674864038356854e-06,1.712823467596043358e-06,1.802972071153729862e-06,1.893120674711416365e-06,1.983269278269103081e-06,2.073417881826790008e-06,2.163566485384476935e-06,2.253715088942163862e-06,2.343863692499850789e-06,2.434012296057537717e-06,2.524160899615224644e-06,2.614309503172911571e-06,2.704458106730598498e-06,2.794606710288285425e-06,2.884755313845972353e-06,2.974903917403659280e-06,3.065052520961346207e-06,3.155201124519033134e-06,3.245349728076720061e-06,3.335498331634406989e-06,3.425646935192093916e-06,3.515795538749780843e-06,3.605944142307467770e-06,3.696092745865154697e-06,3.786241349422841624e-06,3.876389952980528552e-06,3.966538556538215479e-06,4.056687160095902406e-06,4.146835763653589333e-06,4.236984367211276260e-06,4.327132970768963188e-06,4.417281574326650115e-06,4.507430177884337042e-06,4.597578781442023969e-06,4.687727384999710896e-06,4.777875988557397824e-06,4.868024592115084751e-06,4.958173195672771678e-06,5.048321799230458605e-06,5.138470402788145532e-06,5.228619006345832459e-06,5.318767609903519387e-06,5.408916213461206314e-06,5.499064817018893241e-06,5.589213420576580168e-06,5.679362024134267095e-06 +0.000000000000000000e+00,8.969874086763740541e-08,1.793974817352748108e-07,2.690962226029122295e-07,3.587949634705496746e-07,4.484937043381871197e-07,5.381924452058245648e-07,6.278911860734620629e-07,7.175899269410995609e-07,8.072886678087370590e-07,8.969874086763745570e-07,9.866861495440120551e-07,1.076384890411649553e-06,1.166083631279287051e-06,1.255782372146924549e-06,1.345481113014562047e-06,1.435179853882199545e-06,1.524878594749837043e-06,1.614577335617474541e-06,1.704276076485112039e-06,1.793974817352749538e-06,1.883673558220387036e-06,1.973372299088024534e-06,2.063071039955661820e-06,2.152769780823299106e-06,2.242468521690936393e-06,2.332167262558573679e-06,2.421866003426210965e-06,2.511564744293848251e-06,2.601263485161485538e-06,2.690962226029122824e-06,2.780660966896760110e-06,2.870359707764397397e-06,2.960058448632034683e-06,3.049757189499671969e-06,3.139455930367309255e-06,3.229154671234946542e-06,3.318853412102583828e-06,3.408552152970221114e-06,3.498250893837858401e-06,3.587949634705495687e-06,3.677648375573132973e-06,3.767347116440770260e-06,3.857045857308407546e-06,3.946744598176044832e-06,4.036443339043682118e-06,4.126142079911319405e-06,4.215840820778956691e-06,4.305539561646593977e-06,4.395238302514231264e-06,4.484937043381868550e-06,4.574635784249505836e-06,4.664334525117143122e-06,4.754033265984780409e-06,4.843732006852417695e-06,4.933430747720054981e-06,5.023129488587692268e-06,5.112828229455329554e-06,5.202526970322966840e-06,5.292225711190604127e-06,5.381924452058241413e-06,5.471623192925878699e-06,5.561321933793515985e-06,5.651020674661153272e-06 +0.000000000000000000e+00,8.471070541948053228e-08,1.694214108389610646e-07,2.541321162584415704e-07,3.388428216779220762e-07,4.235535270974025820e-07,5.082642325168831407e-07,5.929749379363636995e-07,6.776856433558442582e-07,7.623963487753248170e-07,8.471070541948053757e-07,9.318177596142859345e-07,1.016528465033766493e-06,1.101239170453247052e-06,1.185949875872727611e-06,1.270660581292208169e-06,1.355371286711688728e-06,1.440081992131169287e-06,1.524792697550649846e-06,1.609503402970130404e-06,1.694214108389610963e-06,1.778924813809091522e-06,1.863635519228572081e-06,1.948346224648052639e-06,2.033056930067533410e-06,2.117767635487014180e-06,2.202478340906494951e-06,2.287189046325975721e-06,2.371899751745456492e-06,2.456610457164937262e-06,2.541321162584418033e-06,2.626031868003898804e-06,2.710742573423379574e-06,2.795453278842860345e-06,2.880163984262341115e-06,2.964874689681821886e-06,3.049585395101302656e-06,3.134296100520783427e-06,3.219006805940264197e-06,3.303717511359744968e-06,3.388428216779225738e-06,3.473138922198706509e-06,3.557849627618187279e-06,3.642560333037668050e-06,3.727271038457148820e-06,3.811981743876629591e-06,3.896692449296110361e-06,3.981403154715591132e-06,4.066113860135071902e-06,4.150824565554552673e-06,4.235535270974033443e-06,4.320245976393514214e-06,4.404956681812994984e-06,4.489667387232475755e-06,4.574378092651956525e-06,4.659088798071437296e-06,4.743799503490918066e-06,4.828510208910398837e-06,4.913220914329879607e-06,4.997931619749360378e-06,5.082642325168841148e-06,5.167353030588321919e-06,5.252063736007802689e-06,5.336774441427283460e-06 +0.000000000000000000e+00,9.014860355768613309e-08,1.802972071153722662e-07,2.704458106730583993e-07,3.605944142307445324e-07,4.507430177884306655e-07,5.408916213461167986e-07,6.310402249038029846e-07,7.211888284614891706e-07,8.113374320191753567e-07,9.014860355768615427e-07,9.916346391345477287e-07,1.081783242692233809e-06,1.171931846249919889e-06,1.262080449807605969e-06,1.352229053365292049e-06,1.442377656922978129e-06,1.532526260480664210e-06,1.622674864038350290e-06,1.712823467596036370e-06,1.802972071153722450e-06,1.893120674711408530e-06,1.983269278269094610e-06,2.073417881826780691e-06,2.163566485384466771e-06,2.253715088942152851e-06,2.343863692499838931e-06,2.434012296057525011e-06,2.524160899615211091e-06,2.614309503172897171e-06,2.704458106730583252e-06,2.794606710288269332e-06,2.884755313845955412e-06,2.974903917403641492e-06,3.065052520961327572e-06,3.155201124519013652e-06,3.245349728076699733e-06,3.335498331634385813e-06,3.425646935192071893e-06,3.515795538749757973e-06,3.605944142307444053e-06,3.696092745865130133e-06,3.786241349422816213e-06,3.876389952980502294e-06,3.966538556538188374e-06,4.056687160095874454e-06,4.146835763653560534e-06,4.236984367211246614e-06,4.327132970768932694e-06,4.417281574326618775e-06,4.507430177884304855e-06,4.597578781441990935e-06,4.687727384999677015e-06,4.777875988557363095e-06,4.868024592115049175e-06,4.958173195672735255e-06,5.048321799230421336e-06,5.138470402788107416e-06,5.228619006345793496e-06,5.318767609903479576e-06,5.408916213461165656e-06,5.499064817018851736e-06,5.589213420576537817e-06,5.679362024134223897e-06 +0.000000000000000000e+00,8.969874086763768334e-08,1.793974817352753667e-07,2.690962226029130236e-07,3.587949634705506804e-07,4.484937043381883373e-07,5.381924452058260471e-07,6.278911860734637569e-07,7.175899269411014667e-07,8.072886678087391765e-07,8.969874086763768864e-07,9.866861495440145962e-07,1.076384890411652306e-06,1.166083631279290016e-06,1.255782372146927726e-06,1.345481113014565435e-06,1.435179853882203145e-06,1.524878594749840855e-06,1.614577335617478565e-06,1.704276076485116275e-06,1.793974817352753984e-06,1.883673558220391694e-06,1.973372299088029616e-06,2.063071039955667749e-06,2.152769780823305882e-06,2.242468521690944016e-06,2.332167262558582149e-06,2.421866003426220282e-06,2.511564744293858416e-06,2.601263485161496549e-06,2.690962226029134682e-06,2.780660966896772816e-06,2.870359707764410949e-06,2.960058448632049082e-06,3.049757189499687216e-06,3.139455930367325349e-06,3.229154671234963482e-06,3.318853412102601616e-06,3.408552152970239749e-06,3.498250893837877882e-06,3.587949634705516016e-06,3.677648375573154149e-06,3.767347116440792282e-06,3.857045857308430416e-06,3.946744598176068549e-06,4.036443339043706682e-06,4.126142079911344816e-06,4.215840820778982949e-06,4.305539561646621082e-06,4.395238302514259216e-06,4.484937043381897349e-06,4.574635784249535482e-06,4.664334525117173616e-06,4.754033265984811749e-06,4.843732006852449882e-06,4.933430747720088016e-06,5.023129488587726149e-06,5.112828229455364282e-06,5.202526970323002416e-06,5.292225711190640549e-06,5.381924452058278682e-06,5.471623192925916816e-06,5.561321933793554949e-06,5.651020674661193082e-06 +0.000000000000000000e+00,8.471070541948311308e-08,1.694214108389662262e-07,2.541321162584493525e-07,3.388428216779325053e-07,4.235535270974156581e-07,5.082642325168988108e-07,5.929749379363819107e-07,6.776856433558650105e-07,7.623963487753481104e-07,8.471070541948312102e-07,9.318177596143143101e-07,1.016528465033797410e-06,1.101239170453280510e-06,1.185949875872763610e-06,1.270660581292246709e-06,1.355371286711729809e-06,1.440081992131212909e-06,1.524792697550696009e-06,1.609503402970179109e-06,1.694214108389662209e-06,1.778924813809145309e-06,1.863635519228628408e-06,1.948346224648111508e-06,2.033056930067594396e-06,2.117767635487077284e-06,2.202478340906560173e-06,2.287189046326043061e-06,2.371899751745525949e-06,2.456610457165008837e-06,2.541321162584491725e-06,2.626031868003974613e-06,2.710742573423457501e-06,2.795453278842940389e-06,2.880163984262423277e-06,2.964874689681906165e-06,3.049585395101389053e-06,3.134296100520871941e-06,3.219006805940354830e-06,3.303717511359837718e-06,3.388428216779320606e-06,3.473138922198803494e-06,3.557849627618286382e-06,3.642560333037769270e-06,3.727271038457252158e-06,3.811981743876735046e-06,3.896692449296217934e-06,3.981403154715701246e-06,4.066113860135184557e-06,4.150824565554667869e-06,4.235535270974151181e-06,4.320245976393634492e-06,4.404956681813117804e-06,4.489667387232601116e-06,4.574378092652084427e-06,4.659088798071567739e-06,4.743799503491051050e-06,4.828510208910534362e-06,4.913220914330017674e-06,4.997931619749500985e-06,5.082642325168984297e-06,5.167353030588467608e-06,5.252063736007950920e-06,5.336774441427434232e-06 +0.000000000000000000e+00,9.083668618800026682e-08,1.816733723760005336e-07,2.725100585640008005e-07,3.633467447520010673e-07,4.541834309400013341e-07,5.450201171280016009e-07,6.358568033160018677e-07,7.266934895040021345e-07,8.175301756920024014e-07,9.083668618800026682e-07,9.992035480680030409e-07,1.090040234256003414e-06,1.180876920444003786e-06,1.271713606632004159e-06,1.362550292820004532e-06,1.453386979008004904e-06,1.544223665196005277e-06,1.635060351384005650e-06,1.725897037572006022e-06,1.816733723760006395e-06,1.907570409948006768e-06,1.998407096136006929e-06,2.089243782324007090e-06,2.180080468512007251e-06,2.270917154700007412e-06,2.361753840888007573e-06,2.452590527076007733e-06,2.543427213264007894e-06,2.634263899452008055e-06,2.725100585640008216e-06,2.815937271828008377e-06,2.906773958016008538e-06,2.997610644204008699e-06,3.088447330392008860e-06,3.179284016580009021e-06,3.270120702768009182e-06,3.360957388956009343e-06,3.451794075144009504e-06,3.542630761332009665e-06,3.633467447520009826e-06,3.724304133708009987e-06,3.815140819896010148e-06,3.905977506084010309e-06,3.996814192272010469e-06,4.087650878460010630e-06,4.178487564648010791e-06,4.269324250836010952e-06,4.360160937024011113e-06,4.450997623212011274e-06,4.541834309400011435e-06,4.632670995588011596e-06,4.723507681776011757e-06,4.814344367964011918e-06,4.905181054152012079e-06,4.996017740340012240e-06,5.086854426528012401e-06,5.177691112716012562e-06,5.268527798904012723e-06,5.359364485092012884e-06,5.450201171280013044e-06,5.541037857468013205e-06,5.631874543656013366e-06,5.722711229844013527e-06 +0.000000000000000000e+00,9.054081360051531041e-08,1.810816272010306208e-07,2.716224408015459577e-07,3.621632544020612946e-07,4.527040680025766315e-07,5.432448816030919154e-07,6.337856952036071993e-07,7.243265088041224833e-07,8.148673224046377672e-07,9.054081360051530512e-07,9.959489496056684410e-07,1.086489763206183831e-06,1.177030576806699221e-06,1.267571390407214610e-06,1.358112204007730000e-06,1.448653017608245390e-06,1.539193831208760780e-06,1.629734644809276170e-06,1.720275458409791560e-06,1.810816272010306949e-06,1.901357085610822339e-06,1.991897899211337729e-06,2.082438712811853119e-06,2.172979526412368509e-06,2.263520340012883898e-06,2.354061153613399288e-06,2.444601967213914678e-06,2.535142780814430068e-06,2.625683594414945458e-06,2.716224408015460848e-06,2.806765221615976237e-06,2.897306035216491627e-06,2.987846848817007017e-06,3.078387662417522407e-06,3.168928476018037797e-06,3.259469289618553186e-06,3.350010103219068576e-06,3.440550916819583966e-06,3.531091730420099356e-06,3.621632544020614746e-06,3.712173357621130136e-06,3.802714171221645525e-06,3.893254984822161339e-06,3.983795798422677152e-06,4.074336612023192965e-06,4.164877425623708779e-06,4.255418239224224592e-06,4.345959052824740405e-06,4.436499866425256219e-06,4.527040680025772032e-06,4.617581493626287845e-06,4.708122307226803659e-06,4.798663120827319472e-06,4.889203934427835285e-06,4.979744748028351099e-06,5.070285561628866912e-06,5.160826375229382725e-06,5.251367188829898539e-06,5.341908002430414352e-06,5.432448816030930165e-06,5.522989629631445979e-06,5.613530443231961792e-06,5.704071256832477605e-06 +0.000000000000000000e+00,8.503202700987737893e-08,1.700640540197547579e-07,2.550960810296321500e-07,3.401281080395095687e-07,4.251601350493869873e-07,5.101921620592644059e-07,5.952241890691418246e-07,6.802562160790192432e-07,7.652882430888966619e-07,8.503202700987740805e-07,9.353522971086514991e-07,1.020384324118529024e-06,1.105416351128406548e-06,1.190448378138284073e-06,1.275480405148161597e-06,1.360512432158039122e-06,1.445544459167916646e-06,1.530576486177794171e-06,1.615608513187671695e-06,1.700640540197549220e-06,1.785672567207426744e-06,1.870704594217304269e-06,1.955736621227181793e-06,2.040768648237059318e-06,2.125800675246936842e-06,2.210832702256814367e-06,2.295864729266691891e-06,2.380896756276569416e-06,2.465928783286446940e-06,2.550960810296324465e-06,2.635992837306201989e-06,2.721024864316079514e-06,2.806056891325957038e-06,2.891088918335834563e-06,2.976120945345712088e-06,3.061152972355589612e-06,3.146184999365467137e-06,3.231217026375344661e-06,3.316249053385222186e-06,3.401281080395099710e-06,3.486313107404977235e-06,3.571345134414854759e-06,3.656377161424732284e-06,3.741409188434609808e-06,3.826441215444486909e-06,3.911473242454364434e-06,3.996505269464241958e-06,4.081537296474119483e-06,4.166569323483997007e-06,4.251601350493874532e-06,4.336633377503752056e-06,4.421665404513629581e-06,4.506697431523507105e-06,4.591729458533384630e-06,4.676761485543262154e-06,4.761793512553139679e-06,4.846825539563017203e-06,4.931857566572894728e-06,5.016889593582772252e-06,5.101921620592649777e-06,5.186953647602527301e-06,5.271985674612404826e-06,5.357017701622282350e-06 +0.000000000000000000e+00,9.083668618799878451e-08,1.816733723759975690e-07,2.725100585639963535e-07,3.633467447519951380e-07,4.541834309399939226e-07,5.450201171279927071e-07,6.358568033159914916e-07,7.266934895039902761e-07,8.175301756919890606e-07,9.083668618799878451e-07,9.992035480679865237e-07,1.090040234255985202e-06,1.180876920443983881e-06,1.271713606631982560e-06,1.362550292819981238e-06,1.453386979007979917e-06,1.544223665195978596e-06,1.635060351383977274e-06,1.725897037571975953e-06,1.816733723759974631e-06,1.907570409947973310e-06,1.998407096135972200e-06,2.089243782323971091e-06,2.180080468511969981e-06,2.270917154699968872e-06,2.361753840887967762e-06,2.452590527075966652e-06,2.543427213263965543e-06,2.634263899451964433e-06,2.725100585639963324e-06,2.815937271827962214e-06,2.906773958015961104e-06,2.997610644203959995e-06,3.088447330391958885e-06,3.179284016579957776e-06,3.270120702767956666e-06,3.360957388955955556e-06,3.451794075143954447e-06,3.542630761331953337e-06,3.633467447519952227e-06,3.724304133707951118e-06,3.815140819895950008e-06,3.905977506083949322e-06,3.996814192271948636e-06,4.087650878459947950e-06,4.178487564647947264e-06,4.269324250835946578e-06,4.360160937023945892e-06,4.450997623211945206e-06,4.541834309399944519e-06,4.632670995587943833e-06,4.723507681775943147e-06,4.814344367963942461e-06,4.905181054151941775e-06,4.996017740339941089e-06,5.086854426527940403e-06,5.177691112715939717e-06,5.268527798903939031e-06,5.359364485091938345e-06,5.450201171279937659e-06,5.541037857467936972e-06,5.631874543655936286e-06,5.722711229843935600e-06 +0.000000000000000000e+00,9.054081360051430456e-08,1.810816272010286091e-07,2.716224408015428872e-07,3.621632544020571653e-07,4.527040680025714434e-07,5.432448816030857744e-07,6.337856952036001054e-07,7.243265088041144365e-07,8.148673224046287675e-07,9.054081360051430985e-07,9.959489496056574296e-07,1.086489763206171761e-06,1.177030576806686092e-06,1.267571390407200423e-06,1.358112204007714754e-06,1.448653017608229085e-06,1.539193831208743416e-06,1.629734644809257747e-06,1.720275458409772078e-06,1.810816272010286409e-06,1.901357085610800740e-06,1.991897899211314859e-06,2.082438712811828978e-06,2.172979526412343098e-06,2.263520340012857217e-06,2.354061153613371336e-06,2.444601967213885455e-06,2.535142780814399575e-06,2.625683594414913694e-06,2.716224408015427813e-06,2.806765221615941933e-06,2.897306035216456052e-06,2.987846848816970171e-06,3.078387662417484290e-06,3.168928476017998410e-06,3.259469289618512529e-06,3.350010103219026648e-06,3.440550916819540767e-06,3.531091730420054887e-06,3.621632544020569006e-06,3.712173357621083125e-06,3.802714171221597245e-06,3.893254984822111364e-06,3.983795798422625483e-06,4.074336612023139602e-06,4.164877425623653722e-06,4.255418239224167841e-06,4.345959052824681960e-06,4.436499866425196079e-06,4.527040680025710199e-06,4.617581493626224318e-06,4.708122307226738437e-06,4.798663120827252556e-06,4.889203934427766676e-06,4.979744748028280795e-06,5.070285561628794914e-06,5.160826375229309034e-06,5.251367188829823153e-06,5.341908002430337272e-06,5.432448816030851391e-06,5.522989629631365511e-06,5.613530443231879630e-06,5.704071256832393749e-06 +0.000000000000000000e+00,8.503202700987916564e-08,1.700640540197583313e-07,2.550960810296374969e-07,3.401281080395166626e-07,4.251601350493958282e-07,5.101921620592749939e-07,5.952241890691541066e-07,6.802562160790332193e-07,7.652882430889123320e-07,8.503202700987914447e-07,9.353522971086705574e-07,1.020384324118549776e-06,1.105416351128428995e-06,1.190448378138308213e-06,1.275480405148187432e-06,1.360512432158066650e-06,1.445544459167945869e-06,1.530576486177825087e-06,1.615608513187704306e-06,1.700640540197583525e-06,1.785672567207462743e-06,1.870704594217341962e-06,1.955736621227221180e-06,2.040768648237100399e-06,2.125800675246979618e-06,2.210832702256858836e-06,2.295864729266738055e-06,2.380896756276617273e-06,2.465928783286496492e-06,2.550960810296375710e-06,2.635992837306254929e-06,2.721024864316134148e-06,2.806056891326013366e-06,2.891088918335892585e-06,2.976120945345771803e-06,3.061152972355651022e-06,3.146184999365530241e-06,3.231217026375409459e-06,3.316249053385288678e-06,3.401281080395167896e-06,3.486313107405047115e-06,3.571345134414926333e-06,3.656377161424805552e-06,3.741409188434684771e-06,3.826441215444563989e-06,3.911473242454443208e-06,3.996505269464322426e-06,4.081537296474201645e-06,4.166569323484080863e-06,4.251601350493960082e-06,4.336633377503839301e-06,4.421665404513718519e-06,4.506697431523597738e-06,4.591729458533476956e-06,4.676761485543356175e-06,4.761793512553235394e-06,4.846825539563114612e-06,4.931857566572993831e-06,5.016889593582873049e-06,5.101921620592752268e-06,5.186953647602631486e-06,5.271985674612510705e-06,5.357017701622389924e-06 +0.000000000000000000e+00,9.103505937049877217e-08,1.820701187409975443e-07,2.731051781114963430e-07,3.641402374819951416e-07,4.551752968524939403e-07,5.462103562229926860e-07,6.372454155934914317e-07,7.282804749639901774e-07,8.193155343344889231e-07,9.103505937049876688e-07,1.001385653075486520e-06,1.092420712445985372e-06,1.183455771816484224e-06,1.274490831186983075e-06,1.365525890557481927e-06,1.456560949927980778e-06,1.547596009298479630e-06,1.638631068668978481e-06,1.729666128039477333e-06,1.820701187409976185e-06,1.911736246780475036e-06,2.002771306150973888e-06,2.093806365521472739e-06,2.184841424891971591e-06,2.275876484262470443e-06,2.366911543632969294e-06,2.457946603003468146e-06,2.548981662373966997e-06,2.640016721744465849e-06,2.731051781114964700e-06,2.822086840485463552e-06,2.913121899855962404e-06,3.004156959226461255e-06,3.095192018596960107e-06,3.186227077967458958e-06,3.277262137337957810e-06,3.368297196708456662e-06,3.459332256078955513e-06,3.550367315449454365e-06,3.641402374819953216e-06,3.732437434190452068e-06,3.823472493560950919e-06,3.914507552931449771e-06,4.005542612301948623e-06,4.096577671672447474e-06,4.187612731042946326e-06,4.278647790413445177e-06,4.369682849783944029e-06,4.460717909154442881e-06,4.551752968524941732e-06,4.642788027895440584e-06,4.733823087265939435e-06,4.824858146636438287e-06,4.915893206006937139e-06,5.006928265377435990e-06,5.097963324747934842e-06,5.188998384118433693e-06,5.280033443488932545e-06,5.371068502859431396e-06,5.462103562229930248e-06,5.553138621600429100e-06,5.644173680970927951e-06,5.735208740341426803e-06 +0.000000000000000000e+00,9.102851697217956906e-08,1.820570339443591381e-07,2.730855509165386939e-07,3.641140678887182233e-07,4.551425848608977526e-07,5.461711018330772820e-07,6.371996188052567584e-07,7.282281357774362348e-07,8.192566527496157112e-07,9.102851697217951877e-07,1.001313686693974664e-06,1.092342203666154140e-06,1.183370720638333617e-06,1.274399237610513093e-06,1.365427754582692570e-06,1.456456271554872046e-06,1.547484788527051523e-06,1.638513305499230999e-06,1.729541822471410475e-06,1.820570339443589952e-06,1.911598856415769216e-06,2.002627373387948481e-06,2.093655890360127746e-06,2.184684407332307010e-06,2.275712924304486275e-06,2.366741441276665540e-06,2.457769958248844804e-06,2.548798475221024069e-06,2.639826992193203334e-06,2.730855509165382598e-06,2.821884026137561863e-06,2.912912543109741128e-06,3.003941060081920392e-06,3.094969577054099657e-06,3.185998094026278922e-06,3.277026610998458186e-06,3.368055127970637451e-06,3.459083644942816716e-06,3.550112161914995980e-06,3.641140678887175245e-06,3.732169195859354510e-06,3.823197712831533351e-06,3.914226229803712192e-06,4.005254746775891033e-06,4.096283263748069874e-06,4.187311780720248715e-06,4.278340297692427556e-06,4.369368814664606398e-06,4.460397331636785239e-06,4.551425848608964080e-06,4.642454365581142921e-06,4.733482882553321762e-06,4.824511399525500603e-06,4.915539916497679444e-06,5.006568433469858286e-06,5.097596950442037127e-06,5.188625467414215968e-06,5.279653984386394809e-06,5.370682501358573650e-06,5.461711018330752491e-06,5.552739535302931332e-06,5.643768052275110173e-06,5.734796569247289015e-06 +0.000000000000000000e+00,9.102564728867200538e-08,1.820512945773440108e-07,2.730769418660159897e-07,3.641025891546879686e-07,4.551282364433599475e-07,5.461538837320319794e-07,6.371795310207040112e-07,7.282051783093760431e-07,8.192308255980480749e-07,9.102564728867201068e-07,1.001282120175392139e-06,1.092307767464064170e-06,1.183333414752736202e-06,1.274359062041408234e-06,1.365384709330080266e-06,1.456410356618752298e-06,1.547436003907424330e-06,1.638461651196096362e-06,1.729487298484768393e-06,1.820512945773440425e-06,1.911538593062112457e-06,2.002564240350784277e-06,2.093589887639456097e-06,2.184615534928127917e-06,2.275641182216799738e-06,2.366666829505471558e-06,2.457692476794143378e-06,2.548718124082815198e-06,2.639743771371487018e-06,2.730769418660158838e-06,2.821795065948830658e-06,2.912820713237502478e-06,3.003846360526174298e-06,3.094872007814846118e-06,3.185897655103517938e-06,3.276923302392189759e-06,3.367948949680861579e-06,3.458974596969533399e-06,3.550000244258205219e-06,3.641025891546877039e-06,3.732051538835548859e-06,3.823077186124220679e-06,3.914102833412892076e-06,4.005128480701563472e-06,4.096154127990234869e-06,4.187179775278906265e-06,4.278205422567577662e-06,4.369231069856249059e-06,4.460256717144920455e-06,4.551282364433591852e-06,4.642308011722263248e-06,4.733333659010934645e-06,4.824359306299606041e-06,4.915384953588277438e-06,5.006410600876948835e-06,5.097436248165620231e-06,5.188461895454291628e-06,5.279487542742963024e-06,5.370513190031634421e-06,5.461538837320305818e-06,5.552564484608977214e-06,5.643590131897648611e-06,5.734615779186320007e-06 +0.000000000000000000e+00,8.505748279468017677e-08,1.701149655893603535e-07,2.551724483840405171e-07,3.402299311787206541e-07,4.252874139734007912e-07,5.103448967680809283e-07,5.954023795627610654e-07,6.804598623574412024e-07,7.655173451521213395e-07,8.505748279468014766e-07,9.356323107414816136e-07,1.020689793536161645e-06,1.105747276330841570e-06,1.190804759125521495e-06,1.275862241920201421e-06,1.360919724714881346e-06,1.445977207509561271e-06,1.531034690304241197e-06,1.616092173098921122e-06,1.701149655893601047e-06,1.786207138688280973e-06,1.871264621482960898e-06,1.956322104277640823e-06,2.041379587072320749e-06,2.126437069867000674e-06,2.211494552661680599e-06,2.296552035456360524e-06,2.381609518251040450e-06,2.466667001045720375e-06,2.551724483840400300e-06,2.636781966635080226e-06,2.721839449429760151e-06,2.806896932224440076e-06,2.891954415019120002e-06,2.977011897813799927e-06,3.062069380608479852e-06,3.147126863403159778e-06,3.232184346197839703e-06,3.317241828992519628e-06,3.402299311787199553e-06,3.487356794581879479e-06,3.572414277376559404e-06,3.657471760171239329e-06,3.742529242965919255e-06,3.827586725760599604e-06,3.912644208555279952e-06,3.997701691349960301e-06,4.082759174144640650e-06,4.167816656939320999e-06,4.252874139734001348e-06,4.337931622528681696e-06,4.422989105323362045e-06,4.508046588118042394e-06,4.593104070912722743e-06,4.678161553707403092e-06,4.763219036502083441e-06,4.848276519296763789e-06,4.933334002091444138e-06,5.018391484886124487e-06,5.103448967680804836e-06,5.188506450475485185e-06,5.273563933270165534e-06,5.358621416064845882e-06 +0.000000000000000000e+00,9.102966249159020209e-08,1.820593249831804042e-07,2.730889874747705930e-07,3.641186499663607554e-07,4.551483124579509178e-07,5.461779749495410802e-07,6.372076374411312425e-07,7.282372999327214049e-07,8.192669624243115673e-07,9.102966249159017297e-07,1.001326287407491892e-06,1.092355949899081949e-06,1.183385612390672005e-06,1.274415274882262062e-06,1.365444937373852118e-06,1.456474599865442175e-06,1.547504262357032231e-06,1.638533924848622288e-06,1.729563587340212344e-06,1.820593249831802401e-06,1.911622912323392669e-06,2.002652574814982937e-06,2.093682237306573205e-06,2.184711899798163474e-06,2.275741562289753742e-06,2.366771224781344010e-06,2.457800887272934278e-06,2.548830549764524547e-06,2.639860212256114815e-06,2.730889874747705083e-06,2.821919537239295351e-06,2.912949199730885620e-06,3.003978862222475888e-06,3.095008524714066156e-06,3.186038187205656424e-06,3.277067849697246693e-06,3.368097512188836961e-06,3.459127174680427229e-06,3.550156837172017498e-06,3.641186499663607766e-06,3.732216162155198034e-06,3.823245824646788726e-06,3.914275487138379418e-06,4.005305149629970109e-06,4.096334812121560801e-06,4.187364474613151493e-06,4.278394137104742185e-06,4.369423799596332876e-06,4.460453462087923568e-06,4.551483124579514260e-06,4.642512787071104952e-06,4.733542449562695644e-06,4.824572112054286335e-06,4.915601774545877027e-06,5.006631437037467719e-06,5.097661099529058411e-06,5.188690762020649102e-06,5.279720424512239794e-06,5.370750087003830486e-06,5.461779749495421178e-06,5.552809411987011870e-06,5.643839074478602561e-06,5.734868736970193253e-06 +0.000000000000000000e+00,8.505294959281898486e-08,1.701058991856379697e-07,2.551588487784569678e-07,3.402117983712759924e-07,4.252647479640950169e-07,5.103176975569140415e-07,5.953706471497330660e-07,6.804235967425520906e-07,7.654765463353711152e-07,8.505294959281901397e-07,9.355824455210091643e-07,1.020635395113828295e-06,1.105688344706647319e-06,1.190741294299466344e-06,1.275794243892285368e-06,1.360847193485104393e-06,1.445900143077923418e-06,1.530953092670742442e-06,1.616006042263561467e-06,1.701058991856380491e-06,1.786111941449199516e-06,1.871164891042018540e-06,1.956217840634837565e-06,2.041270790227656589e-06,2.126323739820475614e-06,2.211376689413294639e-06,2.296429639006113663e-06,2.381482588598932688e-06,2.466535538191751712e-06,2.551588487784570737e-06,2.636641437377389761e-06,2.721694386970208786e-06,2.806747336563027810e-06,2.891800286155846835e-06,2.976853235748665860e-06,3.061906185341484884e-06,3.146959134934303909e-06,3.232012084527122933e-06,3.317065034119941958e-06,3.402117983712760982e-06,3.487170933305580007e-06,3.572223882898399032e-06,3.657276832491218056e-06,3.742329782084037081e-06,3.827382731676855682e-06,3.912435681269674283e-06,3.997488630862492884e-06,4.082541580455311485e-06,4.167594530048130086e-06,4.252647479640948687e-06,4.337700429233767288e-06,4.422753378826585889e-06,4.507806328419404490e-06,4.592859278012223091e-06,4.677912227605041692e-06,4.762965177197860293e-06,4.848018126790678894e-06,4.933071076383497495e-06,5.018124025976316096e-06,5.103176975569134697e-06,5.188229925161953298e-06,5.273282874754771899e-06,5.358335824347590500e-06 +0.000000000000000000e+00,9.103505937049534434e-08,1.820701187409906887e-07,2.731051781114860198e-07,3.641402374819813244e-07,4.551752968524766290e-07,5.462103562229719337e-07,6.372454155934671854e-07,7.282804749639624371e-07,8.193155343344576888e-07,9.103505937049529405e-07,1.001385653075448192e-06,1.092420712445943444e-06,1.183455771816438696e-06,1.274490831186933947e-06,1.365525890557429199e-06,1.456560949927924451e-06,1.547596009298419702e-06,1.638631068668914954e-06,1.729666128039410206e-06,1.820701187409905457e-06,1.911736246780400497e-06,2.002771306150895537e-06,2.093806365521390577e-06,2.184841424891885617e-06,2.275876484262380657e-06,2.366911543632875697e-06,2.457946603003370737e-06,2.548981662373865777e-06,2.640016721744360817e-06,2.731051781114855857e-06,2.822086840485350897e-06,2.913121899855845937e-06,3.004156959226340977e-06,3.095192018596836016e-06,3.186227077967331056e-06,3.277262137337826096e-06,3.368297196708321136e-06,3.459332256078816176e-06,3.550367315449311216e-06,3.641402374819806256e-06,3.732437434190301296e-06,3.823472493560795912e-06,3.914507552931290529e-06,4.005542612301785145e-06,4.096577671672279762e-06,4.187612731042774378e-06,4.278647790413268995e-06,4.369682849783763611e-06,4.460717909154258227e-06,4.551752968524752844e-06,4.642788027895247460e-06,4.733823087265742077e-06,4.824858146636236693e-06,4.915893206006731309e-06,5.006928265377225926e-06,5.097963324747720542e-06,5.188998384118215159e-06,5.280033443488709775e-06,5.371068502859204392e-06,5.462103562229699008e-06,5.553138621600193624e-06,5.644173680970688241e-06,5.735208740341182857e-06 +0.000000000000000000e+00,9.102966249158850802e-08,1.820593249831770160e-07,2.730889874747655108e-07,3.641186499663539791e-07,4.551483124579424475e-07,5.461779749495309158e-07,6.372076374411193841e-07,7.282372999327078524e-07,8.192669624242963207e-07,9.102966249158847890e-07,1.001326287407473257e-06,1.092355949899061620e-06,1.183385612390649982e-06,1.274415274882238345e-06,1.365444937373826707e-06,1.456474599865415070e-06,1.547504262357003432e-06,1.638533924848591794e-06,1.729563587340180157e-06,1.820593249831768519e-06,1.911622912323357093e-06,2.002652574814945668e-06,2.093682237306534242e-06,2.184711899798122816e-06,2.275741562289711390e-06,2.366771224781299964e-06,2.457800887272888539e-06,2.548830549764477113e-06,2.639860212256065687e-06,2.730889874747654261e-06,2.821919537239242835e-06,2.912949199730831410e-06,3.003978862222419984e-06,3.095008524714008558e-06,3.186038187205597132e-06,3.277067849697185706e-06,3.368097512188774281e-06,3.459127174680362855e-06,3.550156837171951429e-06,3.641186499663540003e-06,3.732216162155128577e-06,3.823245824646717575e-06,3.914275487138306573e-06,4.005305149629895570e-06,4.096334812121484568e-06,4.187364474613073566e-06,4.278394137104662564e-06,4.369423799596251561e-06,4.460453462087840559e-06,4.551483124579429557e-06,4.642512787071018554e-06,4.733542449562607552e-06,4.824572112054196550e-06,4.915601774545785548e-06,5.006631437037374545e-06,5.097661099528963543e-06,5.188690762020552541e-06,5.279720424512141538e-06,5.370750087003730536e-06,5.461779749495319534e-06,5.552809411986908532e-06,5.643839074478497529e-06,5.734868736970086527e-06 +0.000000000000000000e+00,9.102564728866959663e-08,1.820512945773391933e-07,2.730769418660087899e-07,3.641025891546783865e-07,4.551282364433479832e-07,5.461538837320175798e-07,6.371795310206871764e-07,7.282051783093567731e-07,8.192308255980263697e-07,9.102564728866959663e-07,1.001282120175365457e-06,1.092307767464034948e-06,1.183333414752704439e-06,1.274359062041373929e-06,1.365384709330043420e-06,1.456410356618712911e-06,1.547436003907382402e-06,1.638461651196051892e-06,1.729487298484721383e-06,1.820512945773390874e-06,1.911538593062060365e-06,2.002564240350730067e-06,2.093589887639399770e-06,2.184615534928069472e-06,2.275641182216739175e-06,2.366666829505408877e-06,2.457692476794078580e-06,2.548718124082748282e-06,2.639743771371417985e-06,2.730769418660087687e-06,2.821795065948757390e-06,2.912820713237427092e-06,3.003846360526096795e-06,3.094872007814766497e-06,3.185897655103436200e-06,3.276923302392105902e-06,3.367948949680775605e-06,3.458974596969445307e-06,3.550000244258115010e-06,3.641025891546784712e-06,3.732051538835454415e-06,3.823077186124124117e-06,3.914102833412793820e-06,4.005128480701463522e-06,4.096154127990133225e-06,4.187179775278802927e-06,4.278205422567472630e-06,4.369231069856142332e-06,4.460256717144812035e-06,4.551282364433481737e-06,4.642308011722151440e-06,4.733333659010821142e-06,4.824359306299490845e-06,4.915384953588160548e-06,5.006410600876830250e-06,5.097436248165499953e-06,5.188461895454169655e-06,5.279487542742839358e-06,5.370513190031509060e-06,5.461538837320178763e-06,5.552564484608848465e-06,5.643590131897518168e-06,5.734615779186187870e-06 +0.000000000000000000e+00,8.505748279468148703e-08,1.701149655893629741e-07,2.551724483840444346e-07,3.402299311787258952e-07,4.252874139734073557e-07,5.103448967680888692e-07,5.954023795627703827e-07,6.804598623574518962e-07,7.655173451521334097e-07,8.505748279468149232e-07,9.356323107414964367e-07,1.020689793536177950e-06,1.105747276330859358e-06,1.190804759125540765e-06,1.275862241920222173e-06,1.360919724714903581e-06,1.445977207509584988e-06,1.531034690304266396e-06,1.616092173098947804e-06,1.701149655893629211e-06,1.786207138688310619e-06,1.871264621482992026e-06,1.956322104277673434e-06,2.041379587072354630e-06,2.126437069867035826e-06,2.211494552661717022e-06,2.296552035456398217e-06,2.381609518251079413e-06,2.466667001045760609e-06,2.551724483840441805e-06,2.636781966635123001e-06,2.721839449429804197e-06,2.806896932224485393e-06,2.891954415019166588e-06,2.977011897813847784e-06,3.062069380608528980e-06,3.147126863403210176e-06,3.232184346197891372e-06,3.317241828992572568e-06,3.402299311787253764e-06,3.487356794581934959e-06,3.572414277376616155e-06,3.657471760171297351e-06,3.742529242965978547e-06,3.827586725760659743e-06,3.912644208555340939e-06,3.997701691350022135e-06,4.082759174144703330e-06,4.167816656939384526e-06,4.252874139734065722e-06,4.337931622528746918e-06,4.422989105323428114e-06,4.508046588118109310e-06,4.593104070912790506e-06,4.678161553707471701e-06,4.763219036502152897e-06,4.848276519296834093e-06,4.933334002091515289e-06,5.018391484886196485e-06,5.103448967680877681e-06,5.188506450475558877e-06,5.273563933270240072e-06,5.358621416064921268e-06 +0.000000000000000000e+00,9.239687439146138159e-08,1.847937487829227632e-07,2.771906231743841183e-07,3.695874975658454734e-07,4.619843719573068285e-07,5.543812463487682366e-07,6.467781207402296447e-07,7.391749951316910527e-07,8.315718695231524608e-07,9.239687439146138689e-07,1.016365618306075277e-06,1.108762492697536685e-06,1.201159367088998093e-06,1.293556241480459501e-06,1.385953115871920909e-06,1.478349990263382317e-06,1.570746864654843725e-06,1.663143739046305133e-06,1.755540613437766541e-06,1.847937487829227949e-06,1.940334362220689146e-06,2.032731236612150130e-06,2.125128111003611115e-06,2.217524985395072099e-06,2.309921859786533084e-06,2.402318734177994068e-06,2.494715608569455053e-06,2.587112482960916038e-06,2.679509357352377022e-06,2.771906231743838007e-06,2.864303106135298991e-06,2.956699980526759976e-06,3.049096854918220960e-06,3.141493729309681945e-06,3.233890603701142929e-06,3.326287478092603914e-06,3.418684352484064898e-06,3.511081226875525883e-06,3.603478101266986868e-06,3.695874975658447852e-06,3.788271850049908837e-06,3.880668724441369821e-06,3.973065598832830806e-06,4.065462473224291790e-06,4.157859347615752775e-06,4.250256222007213759e-06,4.342653096398674744e-06,4.435049970790135728e-06,4.527446845181596713e-06,4.619843719573057698e-06,4.712240593964518682e-06,4.804637468355979667e-06,4.897034342747440651e-06,4.989431217138901636e-06,5.081828091530362620e-06,5.174224965921823605e-06,5.266621840313284589e-06,5.359018714704745574e-06,5.451415589096206558e-06,5.543812463487667543e-06,5.636209337879128528e-06,5.728606212270589512e-06,5.821003086662050497e-06 +0.000000000000000000e+00,9.554438595579636381e-08,1.910887719115927276e-07,2.866331578673890914e-07,3.821775438231854552e-07,4.777219297789818190e-07,5.732663157347781828e-07,6.688107016905745466e-07,7.643550876463709105e-07,8.598994736021672743e-07,9.554438595579636381e-07,1.050988245513760002e-06,1.146532631469556366e-06,1.242077017425352729e-06,1.337621403381149093e-06,1.433165789336945457e-06,1.528710175292741821e-06,1.624254561248538185e-06,1.719798947204334549e-06,1.815343333160130912e-06,1.910887719115927276e-06,2.006432105071723640e-06,2.101976491027520004e-06,2.197520876983316368e-06,2.293065262939112731e-06,2.388609648894909095e-06,2.484154034850705459e-06,2.579698420806501823e-06,2.675242806762298187e-06,2.770787192718094550e-06,2.866331578673890914e-06,2.961875964629687278e-06,3.057420350585483642e-06,3.152964736541280006e-06,3.248509122497076369e-06,3.344053508452872733e-06,3.439597894408669097e-06,3.535142280364465461e-06,3.630686666320261825e-06,3.726231052276058188e-06,3.821775438231854552e-06,3.917319824187651340e-06,4.012864210143448127e-06,4.108408596099244914e-06,4.203952982055041702e-06,4.299497368010838489e-06,4.395041753966635276e-06,4.490586139922432064e-06,4.586130525878228851e-06,4.681674911834025638e-06,4.777219297789822425e-06,4.872763683745619213e-06,4.968308069701416000e-06,5.063852455657212787e-06,5.159396841613009575e-06,5.254941227568806362e-06,5.350485613524603149e-06,5.446029999480399937e-06,5.541574385436196724e-06,5.637118771391993511e-06,5.732663157347790299e-06,5.828207543303587086e-06,5.923751929259383873e-06,6.019296315215180661e-06 +0.000000000000000000e+00,9.573928027724998168e-08,1.914785605544999634e-07,2.872178408317499318e-07,3.829571211089998738e-07,4.786964013862498158e-07,5.744356816634997578e-07,6.701749619407496997e-07,7.659142422179996417e-07,8.616535224952495837e-07,9.573928027724994198e-07,1.053132083049749362e-06,1.148871363326999304e-06,1.244610643604249246e-06,1.340349923881499188e-06,1.436089204158749130e-06,1.531828484435999072e-06,1.627567764713249014e-06,1.723307044990498956e-06,1.819046325267748898e-06,1.914785605544998840e-06,2.010524885822248782e-06,2.106264166099498724e-06,2.202003446376748666e-06,2.297742726653998608e-06,2.393482006931248550e-06,2.489221287208498491e-06,2.584960567485748433e-06,2.680699847762998375e-06,2.776439128040248317e-06,2.872178408317498259e-06,2.967917688594748201e-06,3.063656968871998143e-06,3.159396249149248085e-06,3.255135529426498027e-06,3.350874809703747969e-06,3.446614089980997911e-06,3.542353370258247853e-06,3.638092650535497795e-06,3.733831930812747737e-06,3.829571211089997679e-06,3.925310491367247621e-06,4.021049771644497563e-06,4.116789051921747505e-06,4.212528332198997447e-06,4.308267612476247389e-06,4.404006892753497331e-06,4.499746173030747273e-06,4.595485453307997215e-06,4.691224733585247157e-06,4.786964013862497099e-06,4.882703294139747041e-06,4.978442574416996983e-06,5.074181854694246925e-06,5.169921134971496867e-06,5.265660415248746809e-06,5.361399695525996751e-06,5.457138975803246693e-06,5.552878256080496635e-06,5.648617536357746577e-06,5.744356816634996519e-06,5.840096096912246461e-06,5.935835377189496403e-06,6.031574657466746345e-06 +0.000000000000000000e+00,9.302068458482533692e-08,1.860413691696506738e-07,2.790620537544760107e-07,3.720827383393013477e-07,4.651034229241266846e-07,5.581241075089520215e-07,6.511447920937774114e-07,7.441654766786028012e-07,8.371861612634281911e-07,9.302068458482535809e-07,1.023227530433078971e-06,1.116248215017904255e-06,1.209268899602729539e-06,1.302289584187554823e-06,1.395310268772380107e-06,1.488330953357205391e-06,1.581351637942030675e-06,1.674372322526855959e-06,1.767393007111681243e-06,1.860413691696506527e-06,1.953434376281331811e-06,2.046455060866157095e-06,2.139475745450982378e-06,2.232496430035807662e-06,2.325517114620632946e-06,2.418537799205458230e-06,2.511558483790283514e-06,2.604579168375108798e-06,2.697599852959934082e-06,2.790620537544759366e-06,2.883641222129584650e-06,2.976661906714409934e-06,3.069682591299235218e-06,3.162703275884060502e-06,3.255723960468885786e-06,3.348744645053711070e-06,3.441765329638536354e-06,3.534786014223361638e-06,3.627806698808186922e-06,3.720827383393012206e-06,3.813848067977837490e-06,3.906868752562662774e-06,3.999889437147488058e-06,4.092910121732313342e-06,4.185930806317138626e-06,4.278951490901963910e-06,4.371972175486789194e-06,4.464992860071614478e-06,4.558013544656439762e-06,4.651034229241265046e-06,4.744054913826090330e-06,4.837075598410915614e-06,4.930096282995740898e-06,5.023116967580566182e-06,5.116137652165391466e-06,5.209158336750216750e-06,5.302179021335042034e-06,5.395199705919867318e-06,5.488220390504692602e-06,5.581241075089517886e-06,5.674261759674343170e-06,5.767282444259168454e-06,5.860303128843993738e-06 +0.000000000000000000e+00,9.165082118949080317e-08,1.833016423789816063e-07,2.749524635684723963e-07,3.666032847579631597e-07,4.582541059474539232e-07,5.499049271369446867e-07,6.415557483264353972e-07,7.332065695159261077e-07,8.248573907054168182e-07,9.165082118949075287e-07,1.008159033084398239e-06,1.099809854273888950e-06,1.191460675463379660e-06,1.283111496652870371e-06,1.374762317842361081e-06,1.466413139031851792e-06,1.558063960221342502e-06,1.649714781410833213e-06,1.741365602600323923e-06,1.833016423789814634e-06,1.924667244979305344e-06,2.016318066168796055e-06,2.107968887358286766e-06,2.199619708547777476e-06,2.291270529737268187e-06,2.382921350926758897e-06,2.474572172116249608e-06,2.566222993305740318e-06,2.657873814495231029e-06,2.749524635684721739e-06,2.841175456874212450e-06,2.932826278063703160e-06,3.024477099253193871e-06,3.116127920442684581e-06,3.207778741632175292e-06,3.299429562821666002e-06,3.391080384011156713e-06,3.482731205200647423e-06,3.574382026390138134e-06,3.666032847579628844e-06,3.757683668769119555e-06,3.849334489958610689e-06,3.940985311148101823e-06,4.032636132337592957e-06,4.124286953527084091e-06,4.215937774716575225e-06,4.307588595906066359e-06,4.399239417095557493e-06,4.490890238285048627e-06,4.582541059474539761e-06,4.674191880664030895e-06,4.765842701853522029e-06,4.857493523043013163e-06,4.949144344232504297e-06,5.040795165421995431e-06,5.132445986611486566e-06,5.224096807800977700e-06,5.315747628990468834e-06,5.407398450179959968e-06,5.499049271369451102e-06,5.590700092558942236e-06,5.682350913748433370e-06,5.774001734937924504e-06 +0.000000000000000000e+00,8.913184823018858668e-08,1.782636964603771734e-07,2.673955446905657468e-07,3.565273929207542938e-07,4.456592411509428408e-07,5.347910893811313878e-07,6.239229376113199347e-07,7.130547858415084817e-07,8.021866340716970287e-07,8.913184823018855757e-07,9.804503305320741227e-07,1.069582178762262564e-06,1.158714026992451005e-06,1.247845875222639446e-06,1.336977723452827887e-06,1.426109571683016328e-06,1.515241419913204769e-06,1.604373268143393210e-06,1.693505116373581651e-06,1.782636964603770093e-06,1.871768812833958534e-06,1.960900661064146975e-06,2.050032509294335416e-06,2.139164357524523857e-06,2.228296205754712298e-06,2.317428053984900739e-06,2.406559902215089180e-06,2.495691750445277621e-06,2.584823598675466062e-06,2.673955446905654504e-06,2.763087295135842945e-06,2.852219143366031386e-06,2.941350991596219827e-06,3.030482839826408268e-06,3.119614688056596709e-06,3.208746536286785150e-06,3.297878384516973591e-06,3.387010232747162032e-06,3.476142080977350473e-06,3.565273929207538915e-06,3.654405777437727356e-06,3.743537625667915797e-06,3.832669473898104238e-06,3.921801322128293103e-06,4.010933170358481967e-06,4.100065018588670832e-06,4.189196866818859696e-06,4.278328715049048561e-06,4.367460563279237426e-06,4.456592411509426290e-06,4.545724259739615155e-06,4.634856107969804019e-06,4.723987956199992884e-06,4.813119804430181749e-06,4.902251652660370613e-06,4.991383500890559478e-06,5.080515349120748343e-06,5.169647197350937207e-06,5.258779045581126072e-06,5.347910893811314936e-06,5.437042742041503801e-06,5.526174590271692666e-06,5.615306438501881530e-06 +0.000000000000000000e+00,9.569446908483478707e-08,1.913889381696695741e-07,2.870834072545043612e-07,3.827778763393391483e-07,4.784723454241738824e-07,5.741668145090086166e-07,6.698612835938433507e-07,7.655557526786780848e-07,8.612502217635128190e-07,9.569446908483475531e-07,1.052639159933182287e-06,1.148333629018017021e-06,1.244028098102851755e-06,1.339722567187686490e-06,1.435417036272521224e-06,1.531111505357355958e-06,1.626805974442190692e-06,1.722500443527025426e-06,1.818194912611860160e-06,1.913889381696694683e-06,2.009583850781529205e-06,2.105278319866363727e-06,2.200972788951198250e-06,2.296667258036032772e-06,2.392361727120867295e-06,2.488056196205701817e-06,2.583750665290536339e-06,2.679445134375370862e-06,2.775139603460205384e-06,2.870834072545039906e-06,2.966528541629874429e-06,3.062223010714708951e-06,3.157917479799543474e-06,3.253611948884377996e-06,3.349306417969212518e-06,3.445000887054047041e-06,3.540695356138881563e-06,3.636389825223716085e-06,3.732084294308550608e-06,3.827778763393385130e-06,3.923473232478219653e-06,4.019167701563054175e-06,4.114862170647888697e-06,4.210556639732723220e-06,4.306251108817557742e-06,4.401945577902392264e-06,4.497640046987226787e-06,4.593334516072061309e-06,4.689028985156895832e-06,4.784723454241730354e-06,4.880417923326564876e-06,4.976112392411399399e-06,5.071806861496233921e-06,5.167501330581068443e-06,5.263195799665902966e-06,5.358890268750737488e-06,5.454584737835572011e-06,5.550279206920406533e-06,5.645973676005241055e-06,5.741668145090075578e-06,5.837362614174910100e-06,5.933057083259744622e-06,6.028751552344579145e-06 +0.000000000000000000e+00,9.181463915778507838e-08,1.836292783155701568e-07,2.754439174733552616e-07,3.672585566311403665e-07,4.590731957889254713e-07,5.508878349467105232e-07,6.427024741044955751e-07,7.345171132622806271e-07,8.263317524200656790e-07,9.181463915778507309e-07,1.009961030735635783e-06,1.101775669893420835e-06,1.193590309051205887e-06,1.285404948208990939e-06,1.377219587366775990e-06,1.469034226524561042e-06,1.560848865682346094e-06,1.652663504840131146e-06,1.744478143997916198e-06,1.836292783155701250e-06,1.928107422313486302e-06,2.019922061471271566e-06,2.111736700629056829e-06,2.203551339786842093e-06,2.295365978944627357e-06,2.387180618102412620e-06,2.478995257260197884e-06,2.570809896417983148e-06,2.662624535575768411e-06,2.754439174733553675e-06,2.846253813891338939e-06,2.938068453049124202e-06,3.029883092206909466e-06,3.121697731364694730e-06,3.213512370522479993e-06,3.305327009680265257e-06,3.397141648838050521e-06,3.488956287995835784e-06,3.580770927153621048e-06,3.672585566311406312e-06,3.764400205469191575e-06,3.856214844626976839e-06,3.948029483784762103e-06,4.039844122942547366e-06,4.131658762100332630e-06,4.223473401258117894e-06,4.315288040415903157e-06,4.407102679573688421e-06,4.498917318731473685e-06,4.590731957889258948e-06,4.682546597047044212e-06,4.774361236204829476e-06,4.866175875362614739e-06,4.957990514520400003e-06,5.049805153678185267e-06,5.141619792835970530e-06,5.233434431993755794e-06,5.325249071151541058e-06,5.417063710309326321e-06,5.508878349467111585e-06,5.600692988624896849e-06,5.692507627782682112e-06,5.784322266940467376e-06 +0.000000000000000000e+00,9.239687439146302272e-08,1.847937487829260454e-07,2.771906231743890946e-07,3.695874975658521438e-07,4.619843719573151930e-07,5.543812463487781892e-07,6.467781207402411855e-07,7.391749951317041817e-07,8.315718695231671780e-07,9.239687439146301742e-07,1.016365618306093276e-06,1.108762492697556378e-06,1.201159367089019481e-06,1.293556241480482583e-06,1.385953115871945685e-06,1.478349990263408787e-06,1.570746864654871889e-06,1.663143739046334991e-06,1.755540613437798093e-06,1.847937487829261196e-06,1.940334362220724298e-06,2.032731236612187400e-06,2.125128111003650502e-06,2.217524985395113604e-06,2.309921859786576706e-06,2.402318734178039808e-06,2.494715608569502910e-06,2.587112482960966013e-06,2.679509357352429115e-06,2.771906231743892217e-06,2.864303106135355319e-06,2.956699980526818421e-06,3.049096854918281523e-06,3.141493729309744625e-06,3.233890603701207727e-06,3.326287478092670830e-06,3.418684352484133932e-06,3.511081226875597034e-06,3.603478101267060136e-06,3.695874975658523238e-06,3.788271850049986340e-06,3.880668724441449442e-06,3.973065598832912121e-06,4.065462473224374800e-06,4.157859347615837478e-06,4.250256222007300157e-06,4.342653096398762835e-06,4.435049970790225514e-06,4.527446845181688193e-06,4.619843719573150871e-06,4.712240593964613550e-06,4.804637468356076228e-06,4.897034342747538907e-06,4.989431217139001586e-06,5.081828091530464264e-06,5.174224965921926943e-06,5.266621840313389621e-06,5.359018714704852300e-06,5.451415589096314979e-06,5.543812463487777657e-06,5.636209337879240336e-06,5.728606212270703015e-06,5.821003086662165693e-06 +0.000000000000000000e+00,9.554438595579848139e-08,1.910887719115969628e-07,2.866331578673954442e-07,3.821775438231939256e-07,4.777219297789924069e-07,5.732663157347908883e-07,6.688107016905893697e-07,7.643550876463878511e-07,8.598994736021863325e-07,9.554438595579848139e-07,1.050988245513783295e-06,1.146532631469581777e-06,1.242077017425380258e-06,1.337621403381178739e-06,1.433165789336977221e-06,1.528710175292775702e-06,1.624254561248574184e-06,1.719798947204372665e-06,1.815343333160171146e-06,1.910887719115969628e-06,2.006432105071768109e-06,2.101976491027566591e-06,2.197520876983365072e-06,2.293065262939163553e-06,2.388609648894962035e-06,2.484154034850760516e-06,2.579698420806558998e-06,2.675242806762357479e-06,2.770787192718155960e-06,2.866331578673954442e-06,2.961875964629752923e-06,3.057420350585551404e-06,3.152964736541349886e-06,3.248509122497148367e-06,3.344053508452946849e-06,3.439597894408745330e-06,3.535142280364543811e-06,3.630686666320342293e-06,3.726231052276140774e-06,3.821775438231939256e-06,3.917319824187737737e-06,4.012864210143536218e-06,4.108408596099334700e-06,4.203952982055133181e-06,4.299497368010931663e-06,4.395041753966730144e-06,4.490586139922528625e-06,4.586130525878327107e-06,4.681674911834125588e-06,4.777219297789924069e-06,4.872763683745722551e-06,4.968308069701521032e-06,5.063852455657319514e-06,5.159396841613117995e-06,5.254941227568916476e-06,5.350485613524714958e-06,5.446029999480513439e-06,5.541574385436311921e-06,5.637118771392110402e-06,5.732663157347908883e-06,5.828207543303707365e-06,5.923751929259505846e-06,6.019296315215304328e-06 +0.000000000000000000e+00,9.569446908483575322e-08,1.913889381696715064e-07,2.870834072545072729e-07,3.827778763393430658e-07,4.784723454241788587e-07,5.741668145090146517e-07,6.698612835938504446e-07,7.655557526786862375e-07,8.612502217635220304e-07,9.569446908483579293e-07,1.052639159933193722e-06,1.148333629018029515e-06,1.244028098102865308e-06,1.339722567187701101e-06,1.435417036272536894e-06,1.531111505357372687e-06,1.626805974442208480e-06,1.722500443527044273e-06,1.818194912611880066e-06,1.913889381696715859e-06,2.009583850781551651e-06,2.105278319866387444e-06,2.200972788951223237e-06,2.296667258036059030e-06,2.392361727120894823e-06,2.488056196205730616e-06,2.583750665290566409e-06,2.679445134375402202e-06,2.775139603460237995e-06,2.870834072545073788e-06,2.966528541629909581e-06,3.062223010714745374e-06,3.157917479799581167e-06,3.253611948884416959e-06,3.349306417969252752e-06,3.445000887054088545e-06,3.540695356138924338e-06,3.636389825223760131e-06,3.732084294308595924e-06,3.827778763393431717e-06,3.923473232478267086e-06,4.019167701563102456e-06,4.114862170647937825e-06,4.210556639732773195e-06,4.306251108817608564e-06,4.401945577902443933e-06,4.497640046987279303e-06,4.593334516072114672e-06,4.689028985156950042e-06,4.784723454241785411e-06,4.880417923326620780e-06,4.976112392411456150e-06,5.071806861496291519e-06,5.167501330581126889e-06,5.263195799665962258e-06,5.358890268750797628e-06,5.454584737835632997e-06,5.550279206920468366e-06,5.645973676005303736e-06,5.741668145090139105e-06,5.837362614174974475e-06,5.933057083259809844e-06,6.028751552344645213e-06 +0.000000000000000000e+00,9.302068458482758685e-08,1.860413691696551737e-07,2.790620537544827341e-07,3.720827383393102944e-07,4.651034229241378548e-07,5.581241075089654681e-07,6.511447920937930815e-07,7.441654766786206948e-07,8.371861612634483081e-07,9.302068458482759214e-07,1.023227530433103535e-06,1.116248215017931148e-06,1.209268899602758761e-06,1.302289584187586375e-06,1.395310268772413988e-06,1.488330953357241601e-06,1.581351637942069215e-06,1.674372322526896828e-06,1.767393007111724441e-06,1.860413691696552055e-06,1.953434376281379668e-06,2.046455060866207069e-06,2.139475745451034471e-06,2.232496430035861873e-06,2.325517114620689274e-06,2.418537799205516676e-06,2.511558483790344077e-06,2.604579168375171479e-06,2.697599852959998880e-06,2.790620537544826282e-06,2.883641222129653683e-06,2.976661906714481085e-06,3.069682591299308487e-06,3.162703275884135888e-06,3.255723960468963290e-06,3.348744645053790691e-06,3.441765329638618093e-06,3.534786014223445494e-06,3.627806698808272896e-06,3.720827383393100298e-06,3.813848067977927699e-06,3.906868752562755101e-06,3.999889437147582079e-06,4.092910121732409057e-06,4.185930806317236035e-06,4.278951490902063013e-06,4.371972175486889991e-06,4.464992860071716969e-06,4.558013544656543947e-06,4.651034229241370925e-06,4.744054913826197903e-06,4.837075598411024881e-06,4.930096282995851859e-06,5.023116967580678837e-06,5.116137652165505815e-06,5.209158336750332793e-06,5.302179021335159771e-06,5.395199705919986749e-06,5.488220390504813727e-06,5.581241075089640705e-06,5.674261759674467683e-06,5.767282444259294661e-06,5.860303128844121640e-06 +0.000000000000000000e+00,9.165082118949416483e-08,1.833016423789883297e-07,2.749524635684825077e-07,3.666032847579767123e-07,4.582541059474709168e-07,5.499049271369651213e-07,6.415557483264593259e-07,7.332065695159535304e-07,8.248573907054477349e-07,9.165082118949419395e-07,1.008159033084436144e-06,1.099809854273930454e-06,1.191460675463424765e-06,1.283111496652919075e-06,1.374762317842413386e-06,1.466413139031907696e-06,1.558063960221402006e-06,1.649714781410896317e-06,1.741365602600390627e-06,1.833016423789884938e-06,1.924667244979379036e-06,2.016318066168873135e-06,2.107968887358367234e-06,2.199619708547861332e-06,2.291270529737355431e-06,2.382921350926849530e-06,2.474572172116343628e-06,2.566222993305837727e-06,2.657873814495331826e-06,2.749524635684825924e-06,2.841175456874320023e-06,2.932826278063814122e-06,3.024477099253308220e-06,3.116127920442802319e-06,3.207778741632296418e-06,3.299429562821790516e-06,3.391080384011284615e-06,3.482731205200778713e-06,3.574382026390272812e-06,3.666032847579766911e-06,3.757683668769261009e-06,3.849334489958754685e-06,3.940985311148248360e-06,4.032636132337742035e-06,4.124286953527235710e-06,4.215937774716729385e-06,4.307588595906223060e-06,4.399239417095716735e-06,4.490890238285210411e-06,4.582541059474704086e-06,4.674191880664197761e-06,4.765842701853691436e-06,4.857493523043185111e-06,4.949144344232678786e-06,5.040795165422172461e-06,5.132445986611666137e-06,5.224096807801159812e-06,5.315747628990653487e-06,5.407398450180147162e-06,5.499049271369640837e-06,5.590700092559134512e-06,5.682350913748628187e-06,5.774001734938121862e-06 +0.000000000000000000e+00,8.913184823019127337e-08,1.782636964603825467e-07,2.673955446905737936e-07,3.565273929207650405e-07,4.456592411509562874e-07,5.347910893811475873e-07,6.239229376113388871e-07,7.130547858415301869e-07,8.021866340717214868e-07,8.913184823019127866e-07,9.804503305321041923e-07,1.069582178762295598e-06,1.158714026992487004e-06,1.247845875222678409e-06,1.336977723452869815e-06,1.426109571683061221e-06,1.515241419913252627e-06,1.604373268143444032e-06,1.693505116373635438e-06,1.782636964603826844e-06,1.871768812834018249e-06,1.960900661064209655e-06,2.050032509294401061e-06,2.139164357524592467e-06,2.228296205754783872e-06,2.317428053984975278e-06,2.406559902215166684e-06,2.495691750445358090e-06,2.584823598675549495e-06,2.673955446905740901e-06,2.763087295135932307e-06,2.852219143366123712e-06,2.941350991596315118e-06,3.030482839826506524e-06,3.119614688056697930e-06,3.208746536286889335e-06,3.297878384517080741e-06,3.387010232747272147e-06,3.476142080977463552e-06,3.565273929207654958e-06,3.654405777437846364e-06,3.743537625668037770e-06,3.832669473898228752e-06,3.921801322128420157e-06,4.010933170358611563e-06,4.100065018588802969e-06,4.189196866818994375e-06,4.278328715049185780e-06,4.367460563279377186e-06,4.456592411509568592e-06,4.545724259739759997e-06,4.634856107969951403e-06,4.723987956200142809e-06,4.813119804430334215e-06,4.902251652660525620e-06,4.991383500890717026e-06,5.080515349120908432e-06,5.169647197351099837e-06,5.258779045581291243e-06,5.347910893811482649e-06,5.437042742041674055e-06,5.526174590271865460e-06,5.615306438502056866e-06 +0.000000000000000000e+00,9.329559839061837702e-08,1.865911967812367540e-07,2.798867951718551178e-07,3.731823935624734551e-07,4.664779919530917925e-07,5.597735903437101298e-07,6.530691887343284142e-07,7.463647871249466985e-07,8.396603855155649829e-07,9.329559839061832673e-07,1.026251582296801552e-06,1.119547180687419836e-06,1.212842779078038120e-06,1.306138377468656405e-06,1.399433975859274689e-06,1.492729574249892974e-06,1.586025172640511258e-06,1.679320771031129542e-06,1.772616369421747827e-06,1.865911967812366111e-06,1.959207566202984184e-06,2.052503164593602256e-06,2.145798762984220329e-06,2.239094361374838402e-06,2.332389959765456474e-06,2.425685558156074547e-06,2.518981156546692619e-06,2.612276754937310692e-06,2.705572353327928765e-06,2.798867951718546837e-06,2.892163550109164910e-06,2.985459148499782982e-06,3.078754746890401055e-06,3.172050345281019128e-06,3.265345943671637200e-06,3.358641542062255273e-06,3.451937140452873346e-06,3.545232738843491418e-06,3.638528337234109491e-06,3.731823935624727563e-06,3.825119534015345636e-06,3.918415132405963285e-06,4.011710730796580934e-06,4.105006329187198583e-06,4.198301927577816232e-06,4.291597525968433882e-06,4.384893124359051531e-06,4.478188722749669180e-06,4.571484321140286829e-06,4.664779919530904478e-06,4.758075517921522127e-06,4.851371116312139776e-06,4.944666714702757425e-06,5.037962313093375074e-06,5.131257911483992724e-06,5.224553509874610373e-06,5.317849108265228022e-06,5.411144706655845671e-06,5.504440305046463320e-06,5.597735903437080969e-06,5.691031501827698618e-06,5.784327100218316267e-06,5.877622698608933916e-06 +0.000000000000000000e+00,9.263920720608726823e-08,1.852784144121745365e-07,2.779176216182618312e-07,3.705568288243491259e-07,4.631960360304364206e-07,5.558352432365236623e-07,6.484744504426109041e-07,7.411136576486981458e-07,8.337528648547853876e-07,9.263920720608726294e-07,1.019031279266959765e-06,1.111670486473046901e-06,1.204309693679134037e-06,1.296948900885221173e-06,1.389588108091308309e-06,1.482227315297395445e-06,1.574866522503482581e-06,1.667505729709569716e-06,1.760144936915656852e-06,1.852784144121743988e-06,1.945423351327831124e-06,2.038062558533918260e-06,2.130701765740005396e-06,2.223340972946092532e-06,2.315980180152179668e-06,2.408619387358266803e-06,2.501258594564353939e-06,2.593897801770441075e-06,2.686537008976528211e-06,2.779176216182615347e-06,2.871815423388702483e-06,2.964454630594789619e-06,3.057093837800876755e-06,3.149733045006963890e-06,3.242372252213051026e-06,3.335011459419138162e-06,3.427650666625225298e-06,3.520289873831312434e-06,3.612929081037399570e-06,3.705568288243486706e-06,3.798207495449573842e-06,3.890846702655660554e-06,3.983485909861747266e-06,4.076125117067833979e-06,4.168764324273920691e-06,4.261403531480007403e-06,4.354042738686094116e-06,4.446681945892180828e-06,4.539321153098267541e-06,4.631960360304354253e-06,4.724599567510440965e-06,4.817238774716527678e-06,4.909877981922614390e-06,5.002517189128701102e-06,5.095156396334787815e-06,5.187795603540874527e-06,5.280434810746961239e-06,5.373074017953047952e-06,5.465713225159134664e-06,5.558352432365221377e-06,5.650991639571308089e-06,5.743630846777394801e-06,5.836270053983481514e-06 +0.000000000000000000e+00,8.968852452036985753e-08,1.793770490407397151e-07,2.690655735611095593e-07,3.587540980814793772e-07,4.484426226018491950e-07,5.381311471222190128e-07,6.278196716425888836e-07,7.175081961629587543e-07,8.071967206833286251e-07,8.968852452036984959e-07,9.865737697240683666e-07,1.076262294244438237e-06,1.165950818764808108e-06,1.255639343285177979e-06,1.345327867805547850e-06,1.435016392325917720e-06,1.524704916846287591e-06,1.614393441366657462e-06,1.704081965887027333e-06,1.793770490407397203e-06,1.883459014927767074e-06,1.973147539448136733e-06,2.062836063968506392e-06,2.152524588488876051e-06,2.242213113009245710e-06,2.331901637529615369e-06,2.421590162049985028e-06,2.511278686570354687e-06,2.600967211090724346e-06,2.690655735611094005e-06,2.780344260131463664e-06,2.870032784651833323e-06,2.959721309172202982e-06,3.049409833692572641e-06,3.139098358212942300e-06,3.228786882733311959e-06,3.318475407253681618e-06,3.408163931774051277e-06,3.497852456294420936e-06,3.587540980814790595e-06,3.677229505335160254e-06,3.766918029855529913e-06,3.856606554375899149e-06,3.946295078896268384e-06,4.035983603416637620e-06,4.125672127937006855e-06,4.215360652457376091e-06,4.305049176977745326e-06,4.394737701498114562e-06,4.484426226018483797e-06,4.574114750538853033e-06,4.663803275059222268e-06,4.753491799579591504e-06,4.843180324099960739e-06,4.932868848620329975e-06,5.022557373140699210e-06,5.112245897661068446e-06,5.201934422181437681e-06,5.291622946701806917e-06,5.381311471222176152e-06,5.470999995742545388e-06,5.560688520262914623e-06,5.650377044783283859e-06 +0.000000000000000000e+00,9.329559839061866819e-08,1.865911967812373364e-07,2.798867951718560178e-07,3.731823935624747257e-07,4.664779919530934336e-07,5.597735903437121415e-07,6.530691887343308494e-07,7.463647871249495573e-07,8.396603855155682652e-07,9.329559839061869731e-07,1.026251582296805575e-06,1.119547180687424071e-06,1.212842779078042567e-06,1.306138377468661063e-06,1.399433975859279560e-06,1.492729574249898056e-06,1.586025172640516552e-06,1.679320771031135048e-06,1.772616369421753544e-06,1.865911967812372040e-06,1.959207566202990536e-06,2.052503164593609033e-06,2.145798762984227529e-06,2.239094361374846025e-06,2.332389959765464521e-06,2.425685558156083017e-06,2.518981156546701513e-06,2.612276754937320009e-06,2.705572353327938506e-06,2.798867951718557002e-06,2.892163550109175498e-06,2.985459148499793994e-06,3.078754746890412490e-06,3.172050345281030986e-06,3.265345943671649482e-06,3.358641542062267978e-06,3.451937140452886475e-06,3.545232738843504971e-06,3.638528337234123467e-06,3.731823935624741963e-06,3.825119534015360883e-06,3.918415132405980226e-06,4.011710730796599569e-06,4.105006329187218912e-06,4.198301927577838255e-06,4.291597525968457599e-06,4.384893124359076942e-06,4.478188722749696285e-06,4.571484321140315628e-06,4.664779919530934971e-06,4.758075517921554314e-06,4.851371116312173658e-06,4.944666714702793001e-06,5.037962313093412344e-06,5.131257911484031687e-06,5.224553509874651030e-06,5.317849108265270373e-06,5.411144706655889717e-06,5.504440305046509060e-06,5.597735903437128403e-06,5.691031501827747746e-06,5.784327100218367089e-06,5.877622698608986432e-06 +0.000000000000000000e+00,9.263920720608811526e-08,1.852784144121762305e-07,2.779176216182643723e-07,3.705568288243525140e-07,4.631960360304406557e-07,5.558352432365287445e-07,6.484744504426168333e-07,7.411136576487049221e-07,8.337528648547930109e-07,9.263920720608810997e-07,1.019031279266969083e-06,1.111670486473057066e-06,1.204309693679145048e-06,1.296948900885233031e-06,1.389588108091321014e-06,1.482227315297408997e-06,1.574866522503496980e-06,1.667505729709584963e-06,1.760144936915672946e-06,1.852784144121760929e-06,1.945423351327848912e-06,2.038062558533936895e-06,2.130701765740024878e-06,2.223340972946112860e-06,2.315980180152200843e-06,2.408619387358288826e-06,2.501258594564376809e-06,2.593897801770464792e-06,2.686537008976552775e-06,2.779176216182640758e-06,2.871815423388728741e-06,2.964454630594816724e-06,3.057093837800904707e-06,3.149733045006992690e-06,3.242372252213080673e-06,3.335011459419168655e-06,3.427650666625256638e-06,3.520289873831344621e-06,3.612929081037432604e-06,3.705568288243520587e-06,3.798207495449608570e-06,3.890846702655696129e-06,3.983485909861783689e-06,4.076125117067871248e-06,4.168764324273958808e-06,4.261403531480046367e-06,4.354042738686133926e-06,4.446681945892221486e-06,4.539321153098309045e-06,4.631960360304396605e-06,4.724599567510484164e-06,4.817238774716571723e-06,4.909877981922659283e-06,5.002517189128746842e-06,5.095156396334834402e-06,5.187795603540921961e-06,5.280434810747009520e-06,5.373074017953097080e-06,5.465713225159184639e-06,5.558352432365272199e-06,5.650991639571359758e-06,5.743630846777447317e-06,5.836270053983534877e-06 +0.000000000000000000e+00,8.968852452037198834e-08,1.793770490407439767e-07,2.690655735611159650e-07,3.587540980814879534e-07,4.484426226018599417e-07,5.381311471222319301e-07,6.278196716426039184e-07,7.175081961629759068e-07,8.071967206833478951e-07,8.968852452037198834e-07,9.865737697240918718e-07,1.076262294244463860e-06,1.165950818764835848e-06,1.255639343285207837e-06,1.345327867805579825e-06,1.435016392325951814e-06,1.524704916846323802e-06,1.614393441366695790e-06,1.704081965887067779e-06,1.793770490407439767e-06,1.883459014927811755e-06,1.973147539448183744e-06,2.062836063968555944e-06,2.152524588488928144e-06,2.242213113009300344e-06,2.331901637529672544e-06,2.421590162050044744e-06,2.511278686570416944e-06,2.600967211090789144e-06,2.690655735611161344e-06,2.780344260131533544e-06,2.870032784651905745e-06,2.959721309172277945e-06,3.049409833692650145e-06,3.139098358213022345e-06,3.228786882733394545e-06,3.318475407253766745e-06,3.408163931774138945e-06,3.497852456294511145e-06,3.587540980814883345e-06,3.677229505335255546e-06,3.766918029855627746e-06,3.856606554375999946e-06,3.946295078896371722e-06,4.035983603416743499e-06,4.125672127937115275e-06,4.215360652457487052e-06,4.305049176977858829e-06,4.394737701498230605e-06,4.484426226018602382e-06,4.574114750538974158e-06,4.663803275059345935e-06,4.753491799579717712e-06,4.843180324100089488e-06,4.932868848620461265e-06,5.022557373140833041e-06,5.112245897661204818e-06,5.201934422181576595e-06,5.291622946701948371e-06,5.381311471222320148e-06,5.470999995742691924e-06,5.560688520263063701e-06,5.650377044783435477e-06 +0.000000000000000000e+00,9.517170871517060322e-08,1.903434174303412064e-07,2.855151261455118229e-07,3.806868348606824658e-07,4.758585435758531087e-07,5.710302522910237516e-07,6.662019610061944475e-07,7.613736697213651434e-07,8.565453784365358392e-07,9.517170871517065351e-07,1.046888795866877231e-06,1.142060504582047927e-06,1.237232213297218623e-06,1.332403922012389319e-06,1.427575630727560014e-06,1.522747339442730710e-06,1.617919048157901406e-06,1.713090756873072102e-06,1.808262465588242798e-06,1.903434174303413494e-06,1.998605883018583978e-06,2.093777591733754462e-06,2.188949300448924946e-06,2.284121009164095430e-06,2.379292717879265914e-06,2.474464426594436398e-06,2.569636135309606882e-06,2.664807844024777366e-06,2.759979552739947851e-06,2.855151261455118335e-06,2.950322970170288819e-06,3.045494678885459303e-06,3.140666387600629787e-06,3.235838096315800271e-06,3.331009805030970755e-06,3.426181513746141239e-06,3.521353222461311723e-06,3.616524931176482208e-06,3.711696639891652692e-06,3.806868348606823176e-06,3.902040057321993660e-06,3.997211766037164567e-06,4.092383474752335475e-06,4.187555183467506383e-06,4.282726892182677290e-06,4.377898600897848198e-06,4.473070309613019106e-06,4.568242018328190013e-06,4.663413727043360921e-06,4.758585435758531828e-06,4.853757144473702736e-06,4.948928853188873644e-06,5.044100561904044551e-06,5.139272270619215459e-06,5.234443979334386366e-06,5.329615688049557274e-06,5.424787396764728182e-06,5.519959105479899089e-06,5.615130814195069997e-06,5.710302522910240905e-06,5.805474231625411812e-06,5.900645940340582720e-06,5.995817649055753627e-06 +0.000000000000000000e+00,9.417233007322397048e-08,1.883446601464479410e-07,2.825169902196719114e-07,3.766893202928958819e-07,4.708616503661198524e-07,5.650339804393438229e-07,6.592063105125677934e-07,7.533786405857917639e-07,8.475509706590157343e-07,9.417233007322397048e-07,1.035895630805463675e-06,1.130067960878687646e-06,1.224240290951911616e-06,1.318412621025135587e-06,1.412584951098359557e-06,1.506757281171583528e-06,1.600929611244807498e-06,1.695101941318031469e-06,1.789274271391255439e-06,1.883446601464479410e-06,1.977618931537703380e-06,2.071791261610927351e-06,2.165963591684151321e-06,2.260135921757375292e-06,2.354308251830599262e-06,2.448480581903823233e-06,2.542652911977047203e-06,2.636825242050271174e-06,2.730997572123495144e-06,2.825169902196719114e-06,2.919342232269943085e-06,3.013514562343167055e-06,3.107686892416391026e-06,3.201859222489614996e-06,3.296031552562838967e-06,3.390203882636062937e-06,3.484376212709286908e-06,3.578548542782510878e-06,3.672720872855734849e-06,3.766893202928958819e-06,3.861065533002182366e-06,3.955237863075405913e-06,4.049410193148629460e-06,4.143582523221853007e-06,4.237754853295076554e-06,4.331927183368300101e-06,4.426099513441523648e-06,4.520271843514747195e-06,4.614444173587970742e-06,4.708616503661194289e-06,4.802788833734417836e-06,4.896961163807641383e-06,4.991133493880864930e-06,5.085305823954088477e-06,5.179478154027312024e-06,5.273650484100535571e-06,5.367822814173759118e-06,5.461995144246982665e-06,5.556167474320206212e-06,5.650339804393429759e-06,5.744512134466653306e-06,5.838684464539876853e-06,5.932856794613100400e-06 +0.000000000000000000e+00,9.106429993845681319e-08,1.821285998769136264e-07,2.731928998153704396e-07,3.642571997538272528e-07,4.553214996922840660e-07,5.463857996307408791e-07,6.374500995691976394e-07,7.285143995076543997e-07,8.195786994461111599e-07,9.106429993845679202e-07,1.001707299323024680e-06,1.092771599261481547e-06,1.183835899199938413e-06,1.274900199138395279e-06,1.365964499076852145e-06,1.457028799015309011e-06,1.548093098953765877e-06,1.639157398892222743e-06,1.730221698830679609e-06,1.821285998769136476e-06,1.912350298707593130e-06,2.003414598646049784e-06,2.094478898584506439e-06,2.185543198522963093e-06,2.276607498461419747e-06,2.367671798399876402e-06,2.458736098338333056e-06,2.549800398276789711e-06,2.640864698215246365e-06,2.731928998153703019e-06,2.822993298092159674e-06,2.914057598030616328e-06,3.005121897969072982e-06,3.096186197907529637e-06,3.187250497845986291e-06,3.278314797784442946e-06,3.369379097722899600e-06,3.460443397661356254e-06,3.551507697599812909e-06,3.642571997538269563e-06,3.733636297476726217e-06,3.824700597415182872e-06,3.915764897353639526e-06,4.006829197292096181e-06,4.097893497230552835e-06,4.188957797169009489e-06,4.280022097107466144e-06,4.371086397045922798e-06,4.462150696984379452e-06,4.553214996922836107e-06,4.644279296861292761e-06,4.735343596799749416e-06,4.826407896738206070e-06,4.917472196676662724e-06,5.008536496615119379e-06,5.099600796553576033e-06,5.190665096492032687e-06,5.281729396430489342e-06,5.372793696368945996e-06,5.463857996307402650e-06,5.554922296245859305e-06,5.645986596184315959e-06,5.737050896122772614e-06 +0.000000000000000000e+00,9.517170871516910767e-08,1.903434174303382153e-07,2.855151261455073230e-07,3.806868348606764307e-07,4.758585435758455384e-07,5.710302522910146460e-07,6.662019610061837537e-07,7.613736697213528614e-07,8.565453784365219691e-07,9.517170871516910767e-07,1.046888795866860079e-06,1.142060504582029080e-06,1.237232213297198082e-06,1.332403922012367084e-06,1.427575630727536086e-06,1.522747339442705087e-06,1.617919048157874089e-06,1.713090756873043091e-06,1.808262465588212093e-06,1.903434174303381095e-06,1.998605883018550096e-06,2.093777591733719310e-06,2.188949300448888524e-06,2.284121009164057737e-06,2.379292717879226951e-06,2.474464426594396164e-06,2.569636135309565378e-06,2.664807844024734591e-06,2.759979552739903805e-06,2.855151261455073018e-06,2.950322970170242232e-06,3.045494678885411446e-06,3.140666387600580659e-06,3.235838096315749873e-06,3.331009805030919086e-06,3.426181513746088300e-06,3.521353222461257513e-06,3.616524931176426727e-06,3.711696639891595940e-06,3.806868348606765154e-06,3.902040057321934368e-06,3.997211766037103581e-06,4.092383474752272795e-06,4.187555183467442008e-06,4.282726892182611222e-06,4.377898600897780435e-06,4.473070309612949649e-06,4.568242018328118862e-06,4.663413727043288076e-06,4.758585435758457289e-06,4.853757144473626503e-06,4.948928853188795717e-06,5.044100561903964930e-06,5.139272270619134144e-06,5.234443979334303357e-06,5.329615688049472571e-06,5.424787396764641784e-06,5.519959105479810998e-06,5.615130814194980211e-06,5.710302522910149425e-06,5.805474231625318639e-06,5.900645940340487852e-06,5.995817649055657066e-06 +0.000000000000000000e+00,9.417233007322329550e-08,1.883446601464465910e-07,2.825169902196698997e-07,3.766893202928932350e-07,4.708616503661165702e-07,5.650339804393399054e-07,6.592063105125632406e-07,7.533786405857865758e-07,8.475509706590099110e-07,9.417233007322332462e-07,1.035895630805456476e-06,1.130067960878679599e-06,1.224240290951902722e-06,1.318412621025125846e-06,1.412584951098348969e-06,1.506757281171572093e-06,1.600929611244795216e-06,1.695101941318018340e-06,1.789274271391241463e-06,1.883446601464464587e-06,1.977618931537687710e-06,2.071791261610910833e-06,2.165963591684133957e-06,2.260135921757357080e-06,2.354308251830580204e-06,2.448480581903803327e-06,2.542652911977026451e-06,2.636825242050249574e-06,2.730997572123472698e-06,2.825169902196695821e-06,2.919342232269918945e-06,3.013514562343142068e-06,3.107686892416365191e-06,3.201859222489588315e-06,3.296031552562811438e-06,3.390203882636034562e-06,3.484376212709257685e-06,3.578548542782480809e-06,3.672720872855703932e-06,3.766893202928927056e-06,3.861065533002150179e-06,3.955237863075373726e-06,4.049410193148597273e-06,4.143582523221820820e-06,4.237754853295044367e-06,4.331927183368267914e-06,4.426099513441491461e-06,4.520271843514715008e-06,4.614444173587938555e-06,4.708616503661162102e-06,4.802788833734385649e-06,4.896961163807609196e-06,4.991133493880832743e-06,5.085305823954056290e-06,5.179478154027279837e-06,5.273650484100503384e-06,5.367822814173726931e-06,5.461995144246950477e-06,5.556167474320174024e-06,5.650339804393397571e-06,5.744512134466621118e-06,5.838684464539844665e-06,5.932856794613068212e-06 +0.000000000000000000e+00,9.106429993845740876e-08,1.821285998769148175e-07,2.731928998153722395e-07,3.642571997538296880e-07,4.553214996922871365e-07,5.463857996307445849e-07,6.374500995692020863e-07,7.285143995076595877e-07,8.195786994461170891e-07,9.106429993845745905e-07,1.001707299323032092e-06,1.092771599261489593e-06,1.183835899199947095e-06,1.274900199138404596e-06,1.365964499076862098e-06,1.457028799015319599e-06,1.548093098953777100e-06,1.639157398892234602e-06,1.730221698830692103e-06,1.821285998769149605e-06,1.912350298707607106e-06,2.003414598646064607e-06,2.094478898584522109e-06,2.185543198522979610e-06,2.276607498461437112e-06,2.367671798399894613e-06,2.458736098338352114e-06,2.549800398276809616e-06,2.640864698215267117e-06,2.731928998153724619e-06,2.822993298092182120e-06,2.914057598030639621e-06,3.005121897969097123e-06,3.096186197907554624e-06,3.187250497846012126e-06,3.278314797784469627e-06,3.369379097722927128e-06,3.460443397661384630e-06,3.551507697599842131e-06,3.642571997538299633e-06,3.733636297476757134e-06,3.824700597415215059e-06,3.915764897353672560e-06,4.006829197292130062e-06,4.097893497230587563e-06,4.188957797169045065e-06,4.280022097107502566e-06,4.371086397045960067e-06,4.462150696984417569e-06,4.553214996922875070e-06,4.644279296861332572e-06,4.735343596799790073e-06,4.826407896738247575e-06,4.917472196676705076e-06,5.008536496615162577e-06,5.099600796553620079e-06,5.190665096492077580e-06,5.281729396430535082e-06,5.372793696368992583e-06,5.463857996307450084e-06,5.554922296245907586e-06,5.645986596184365087e-06,5.737050896122822589e-06 +0.000000000000000000e+00,9.731999393162503087e-08,1.946399878632500617e-07,2.919599817948751058e-07,3.892799757265001764e-07,4.865999696581252470e-07,5.839199635897503176e-07,6.812399575213753882e-07,7.785599514530004587e-07,8.758799453846255293e-07,9.731999393162504940e-07,1.070519933247875459e-06,1.167839927179500423e-06,1.265159921111125388e-06,1.362479915042750353e-06,1.459799908974375317e-06,1.557119902906000282e-06,1.654439896837625247e-06,1.751759890769250212e-06,1.849079884700875176e-06,1.946399878632500141e-06,2.043719872564125317e-06,2.141039866495750494e-06,2.238359860427375670e-06,2.335679854359000847e-06,2.432999848290626023e-06,2.530319842222251200e-06,2.627639836153876376e-06,2.724959830085501553e-06,2.822279824017126729e-06,2.919599817948751906e-06,3.016919811880377082e-06,3.114239805812002258e-06,3.211559799743627435e-06,3.308879793675252611e-06,3.406199787606877788e-06,3.503519781538502964e-06,3.600839775470128141e-06,3.698159769401753317e-06,3.795479763333378494e-06,3.892799757265003670e-06,3.990119751196628847e-06,4.087439745128254023e-06,4.184759739059879199e-06,4.282079732991504376e-06,4.379399726923129552e-06,4.476719720854754729e-06,4.574039714786379905e-06,4.671359708718005082e-06,4.768679702649630258e-06,4.865999696581255435e-06,4.963319690512880611e-06,5.060639684444505788e-06,5.157959678376130964e-06,5.255279672307756140e-06,5.352599666239381317e-06,5.449919660171006493e-06,5.547239654102631670e-06,5.644559648034256846e-06,5.741879641965882023e-06,5.839199635897507199e-06,5.936519629829132376e-06,6.033839623760757552e-06,6.131159617692382729e-06 +0.000000000000000000e+00,9.623348728160091280e-08,1.924669745632018256e-07,2.887004618448027252e-07,3.849339491264035982e-07,4.811674364080045243e-07,5.774009236896054503e-07,6.736344109712063763e-07,7.698678982528073024e-07,8.661013855344082284e-07,9.623348728160090486e-07,1.058568360097609869e-06,1.154801847379210689e-06,1.251035334660811509e-06,1.347268821942412329e-06,1.443502309224013149e-06,1.539735796505613969e-06,1.635969283787214790e-06,1.732202771068815610e-06,1.828436258350416430e-06,1.924669745632017250e-06,2.020903232913618070e-06,2.117136720195218890e-06,2.213370207476819711e-06,2.309603694758420531e-06,2.405837182040021351e-06,2.502070669321622171e-06,2.598304156603222991e-06,2.694537643884823811e-06,2.790771131166424631e-06,2.887004618448025452e-06,2.983238105729626272e-06,3.079471593011227092e-06,3.175705080292827912e-06,3.271938567574428732e-06,3.368172054856029552e-06,3.464405542137630372e-06,3.560639029419231193e-06,3.656872516700832013e-06,3.753106003982432833e-06,3.849339491264033653e-06,3.945572978545634050e-06,4.041806465827234446e-06,4.138039953108834843e-06,4.234273440390435240e-06,4.330506927672035636e-06,4.426740414953636033e-06,4.522973902235236430e-06,4.619207389516836826e-06,4.715440876798437223e-06,4.811674364080037619e-06,4.907907851361638016e-06,5.004141338643238413e-06,5.100374825924838809e-06,5.196608313206439206e-06,5.292841800488039603e-06,5.389075287769639999e-06,5.485308775051240396e-06,5.581542262332840793e-06,5.677775749614441189e-06,5.774009236896041586e-06,5.870242724177641982e-06,5.966476211459242379e-06,6.062709698740842776e-06 +0.000000000000000000e+00,9.266956248357739086e-08,1.853391249671547817e-07,2.780086874507321593e-07,3.706782499343095105e-07,4.633478124178868616e-07,5.560173749014642128e-07,6.486869373850415639e-07,7.413564998686189151e-07,8.340260623521962662e-07,9.266956248357736174e-07,1.019365187319350863e-06,1.112034749802928214e-06,1.204704312286505565e-06,1.297373874770082916e-06,1.390043437253660267e-06,1.482712999737237618e-06,1.575382562220814970e-06,1.668052124704392321e-06,1.760721687187969672e-06,1.853391249671547023e-06,1.946060812155124374e-06,2.038730374638701725e-06,2.131399937122279076e-06,2.224069499605856428e-06,2.316739062089433779e-06,2.409408624573011130e-06,2.502078187056588481e-06,2.594747749540165832e-06,2.687417312023743183e-06,2.780086874507320535e-06,2.872756436990897886e-06,2.965425999474475237e-06,3.058095561958052588e-06,3.150765124441629939e-06,3.243434686925207290e-06,3.336104249408784641e-06,3.428773811892361993e-06,3.521443374375939344e-06,3.614112936859516695e-06,3.706782499343094046e-06,3.799452061826671397e-06,3.892121624310248748e-06,3.984791186793826100e-06,4.077460749277403451e-06,4.170130311760980802e-06,4.262799874244558153e-06,4.355469436728135504e-06,4.448138999211712855e-06,4.540808561695290206e-06,4.633478124178867558e-06,4.726147686662444909e-06,4.818817249146022260e-06,4.911486811629599611e-06,5.004156374113176962e-06,5.096825936596754313e-06,5.189495499080331664e-06,5.282165061563909016e-06,5.374834624047486367e-06,5.467504186531063718e-06,5.560173749014641069e-06,5.652843311498218420e-06,5.745512873981795771e-06,5.838182436465373123e-06 +0.000000000000000000e+00,9.731999393162223831e-08,1.946399878632444766e-07,2.919599817948667414e-07,3.892799757264890062e-07,4.865999696581112710e-07,5.839199635897334828e-07,6.812399575213556946e-07,7.785599514529779065e-07,8.758799453846001183e-07,9.731999393162223302e-07,1.070519933247844542e-06,1.167839927179466754e-06,1.265159921111088966e-06,1.362479915042711178e-06,1.459799908974333389e-06,1.557119902905955601e-06,1.654439896837577813e-06,1.751759890769200025e-06,1.849079884700822237e-06,1.946399878632444237e-06,2.043719872564066025e-06,2.141039866495687813e-06,2.238359860427309602e-06,2.335679854358931390e-06,2.432999848290553178e-06,2.530319842222174967e-06,2.627639836153796755e-06,2.724959830085418543e-06,2.822279824017040332e-06,2.919599817948662120e-06,3.016919811880283908e-06,3.114239805811905697e-06,3.211559799743527485e-06,3.308879793675149273e-06,3.406199787606771062e-06,3.503519781538392850e-06,3.600839775470014638e-06,3.698159769401636427e-06,3.795479763333258215e-06,3.892799757264880003e-06,3.990119751196501792e-06,4.087439745128123580e-06,4.184759739059745368e-06,4.282079732991367157e-06,4.379399726922988945e-06,4.476719720854610733e-06,4.574039714786232522e-06,4.671359708717854310e-06,4.768679702649476098e-06,4.865999696581097887e-06,4.963319690512719675e-06,5.060639684444341463e-06,5.157959678375963251e-06,5.255279672307585040e-06,5.352599666239206828e-06,5.449919660170828616e-06,5.547239654102450405e-06,5.644559648034072193e-06,5.741879641965693981e-06,5.839199635897315770e-06,5.936519629828937558e-06,6.033839623760559346e-06,6.131159617692181135e-06 +0.000000000000000000e+00,9.623348728159879521e-08,1.924669745631975904e-07,2.887004618447963724e-07,3.849339491263951279e-07,4.811674364079939364e-07,5.774009236895927448e-07,6.736344109711915533e-07,7.698678982527903617e-07,8.661013855343891702e-07,9.623348728159878727e-07,1.058568360097586575e-06,1.154801847379185278e-06,1.251035334660783980e-06,1.347268821942382683e-06,1.443502309223981386e-06,1.539735796505580088e-06,1.635969283787178791e-06,1.732202771068777493e-06,1.828436258350376196e-06,1.924669745631974898e-06,2.020903232913573601e-06,2.117136720195172304e-06,2.213370207476771006e-06,2.309603694758369709e-06,2.405837182039968411e-06,2.502070669321567114e-06,2.598304156603165816e-06,2.694537643884764519e-06,2.790771131166363222e-06,2.887004618447961924e-06,2.983238105729560627e-06,3.079471593011159329e-06,3.175705080292758032e-06,3.271938567574356734e-06,3.368172054855955437e-06,3.464405542137554140e-06,3.560639029419152842e-06,3.656872516700751545e-06,3.753106003982350247e-06,3.849339491263948950e-06,3.945572978545547652e-06,4.041806465827146355e-06,4.138039953108745058e-06,4.234273440390343760e-06,4.330506927671942463e-06,4.426740414953541165e-06,4.522973902235139868e-06,4.619207389516738570e-06,4.715440876798337273e-06,4.811674364079935976e-06,4.907907851361534678e-06,5.004141338643133381e-06,5.100374825924732083e-06,5.196608313206330786e-06,5.292841800487929488e-06,5.389075287769528191e-06,5.485308775051126893e-06,5.581542262332725596e-06,5.677775749614324299e-06,5.774009236895923001e-06,5.870242724177521704e-06,5.966476211459120406e-06,6.062709698740719109e-06 +0.000000000000000000e+00,9.266956248357683499e-08,1.853391249671536700e-07,2.780086874507305182e-07,3.706782499343073929e-07,4.633478124178842676e-07,5.560173749014611423e-07,6.486869373850380699e-07,7.413564998686149976e-07,8.340260623521919252e-07,9.266956248357688528e-07,1.019365187319345780e-06,1.112034749802922708e-06,1.204704312286499636e-06,1.297373874770076563e-06,1.390043437253653491e-06,1.482712999737230419e-06,1.575382562220807346e-06,1.668052124704384274e-06,1.760721687187961202e-06,1.853391249671538129e-06,1.946060812155115057e-06,2.038730374638691984e-06,2.131399937122268912e-06,2.224069499605845840e-06,2.316739062089422767e-06,2.409408624572999695e-06,2.502078187056576623e-06,2.594747749540153550e-06,2.687417312023730478e-06,2.780086874507307406e-06,2.872756436990884333e-06,2.965425999474461261e-06,3.058095561958038188e-06,3.150765124441615116e-06,3.243434686925192044e-06,3.336104249408768971e-06,3.428773811892345899e-06,3.521443374375922827e-06,3.614112936859499754e-06,3.706782499343076682e-06,3.799452061826653610e-06,3.892121624310230114e-06,3.984791186793806618e-06,4.077460749277383122e-06,4.170130311760959626e-06,4.262799874244536130e-06,4.355469436728112634e-06,4.448138999211689138e-06,4.540808561695265642e-06,4.633478124178842147e-06,4.726147686662418651e-06,4.818817249145995155e-06,4.911486811629571659e-06,5.004156374113148163e-06,5.096825936596724667e-06,5.189495499080301171e-06,5.282165061563877675e-06,5.374834624047454180e-06,5.467504186531030684e-06,5.560173749014607188e-06,5.652843311498183692e-06,5.745512873981760196e-06,5.838182436465336700e-06 +0.000000000000000000e+00,9.946355272028640384e-08,1.989271054405728077e-07,2.983906581608591983e-07,3.978542108811455624e-07,4.973177636014319795e-07,5.967813163217183966e-07,6.962448690420048137e-07,7.957084217622912307e-07,8.951719744825776478e-07,9.946355272028639590e-07,1.094099079923150270e-06,1.193562632643436581e-06,1.293026185363722893e-06,1.392489738084009204e-06,1.491953290804295515e-06,1.591416843524581826e-06,1.690880396244868137e-06,1.790343948965154449e-06,1.889807501685440760e-06,1.989271054405727071e-06,2.088734607126013382e-06,2.188198159846299693e-06,2.287661712566586005e-06,2.387125265286872316e-06,2.486588818007158627e-06,2.586052370727444938e-06,2.685515923447731249e-06,2.784979476168017561e-06,2.884443028888303872e-06,2.983906581608590183e-06,3.083370134328876494e-06,3.182833687049162805e-06,3.282297239769449117e-06,3.381760792489735428e-06,3.481224345210021739e-06,3.580687897930308050e-06,3.680151450650594361e-06,3.779615003370880673e-06,3.879078556091166560e-06,3.978542108811452448e-06,4.078005661531738336e-06,4.177469214252024223e-06,4.276932766972310111e-06,4.376396319692595999e-06,4.475859872412881886e-06,4.575323425133167774e-06,4.674786977853453662e-06,4.774250530573739549e-06,4.873714083294025437e-06,4.973177636014311325e-06,5.072641188734597212e-06,5.172104741454883100e-06,5.271568294175168988e-06,5.371031846895454875e-06,5.470495399615740763e-06,5.569958952336026651e-06,5.669422505056312538e-06,5.768886057776598426e-06,5.868349610496884314e-06,5.967813163217170201e-06,6.067276715937456089e-06,6.166740268657741977e-06,6.266203821378027865e-06 +0.000000000000000000e+00,9.840436210798892048e-08,1.968087242159778410e-07,2.952130863239667879e-07,3.936174484319557348e-07,4.920218105399446818e-07,5.904261726479335758e-07,6.888305347559224698e-07,7.872348968639113638e-07,8.856392589719002578e-07,9.840436210798891518e-07,1.082447983187877940e-06,1.180852345295866728e-06,1.279256707403855516e-06,1.377661069511844304e-06,1.476065431619833092e-06,1.574469793727821881e-06,1.672874155835810669e-06,1.771278517943799457e-06,1.869682880051788245e-06,1.968087242159777033e-06,2.066491604267765821e-06,2.164895966375754609e-06,2.263300328483743397e-06,2.361704690591732186e-06,2.460109052699720974e-06,2.558513414807709762e-06,2.656917776915698550e-06,2.755322139023687338e-06,2.853726501131676126e-06,2.952130863239664914e-06,3.050535225347653703e-06,3.148939587455642491e-06,3.247343949563631279e-06,3.345748311671620067e-06,3.444152673779608855e-06,3.542557035887597643e-06,3.640961397995586431e-06,3.739365760103575219e-06,3.837770122211564008e-06,3.936174484319553219e-06,4.034578846427542431e-06,4.132983208535531642e-06,4.231387570643520854e-06,4.329791932751510066e-06,4.428196294859499277e-06,4.526600656967488489e-06,4.625005019075477701e-06,4.723409381183466912e-06,4.821813743291456124e-06,4.920218105399445336e-06,5.018622467507434547e-06,5.117026829615423759e-06,5.215431191723412971e-06,5.313835553831402182e-06,5.412239915939391394e-06,5.510644278047380605e-06,5.609048640155369817e-06,5.707453002263359029e-06,5.805857364371348240e-06,5.904261726479337452e-06,6.002666088587326664e-06,6.101070450695315875e-06,6.199474812803305087e-06 +0.000000000000000000e+00,9.427529123150119731e-08,1.885505824630023946e-07,2.828258736945036052e-07,3.771011649260048422e-07,4.713764561575060792e-07,5.656517473890073162e-07,6.599270386205085532e-07,7.542023298520097902e-07,8.484776210835110272e-07,9.427529123150122642e-07,1.037028203546513607e-06,1.131303494778014844e-06,1.225578786009516081e-06,1.319854077241017318e-06,1.414129368472518555e-06,1.508404659704019792e-06,1.602679950935521029e-06,1.696955242167022266e-06,1.791230533398523503e-06,1.885505824630024740e-06,1.979781115861525977e-06,2.074056407093027214e-06,2.168331698324528451e-06,2.262606989556029688e-06,2.356882280787530925e-06,2.451157572019032162e-06,2.545432863250533399e-06,2.639708154482034636e-06,2.733983445713535873e-06,2.828258736945037110e-06,2.922534028176538347e-06,3.016809319408039584e-06,3.111084610639540821e-06,3.205359901871042058e-06,3.299635193102543295e-06,3.393910484334044532e-06,3.488185775565545769e-06,3.582461066797047006e-06,3.676736358028548243e-06,3.771011649260049481e-06,3.865286940491550718e-06,3.959562231723051955e-06,4.053837522954553192e-06,4.148112814186054429e-06,4.242388105417555666e-06,4.336663396649056903e-06,4.430938687880558140e-06,4.525213979112059377e-06,4.619489270343560614e-06,4.713764561575061851e-06,4.808039852806563088e-06,4.902315144038064325e-06,4.996590435269565562e-06,5.090865726501066799e-06,5.185141017732568036e-06,5.279416308964069273e-06,5.373691600195570510e-06,5.467966891427071747e-06,5.562242182658572984e-06,5.656517473890074221e-06,5.750792765121575458e-06,5.845068056353076695e-06,5.939343347584577932e-06 +0.000000000000000000e+00,9.946355272028109665e-08,1.989271054405621933e-07,2.983906581608432635e-07,3.978542108811243337e-07,4.973177636014054038e-07,5.967813163216865270e-07,6.962448690419676501e-07,7.957084217622487732e-07,8.951719744825298963e-07,9.946355272028110194e-07,1.094099079923092248e-06,1.193562632643373477e-06,1.293026185363654706e-06,1.392489738083935935e-06,1.491953290804217164e-06,1.591416843524498393e-06,1.690880396244779622e-06,1.790343948965060851e-06,1.889807501685342080e-06,1.989271054405623309e-06,2.088734607125904538e-06,2.188198159846185767e-06,2.287661712566466996e-06,2.387125265286748225e-06,2.486588818007029454e-06,2.586052370727310683e-06,2.685515923447591912e-06,2.784979476167873141e-06,2.884443028888154370e-06,2.983906581608435599e-06,3.083370134328716828e-06,3.182833687048998057e-06,3.282297239769279286e-06,3.381760792489560515e-06,3.481224345209841744e-06,3.580687897930122973e-06,3.680151450650404202e-06,3.779615003370685431e-06,3.879078556090966660e-06,3.978542108811247466e-06,4.078005661531528271e-06,4.177469214251809077e-06,4.276932766972089882e-06,4.376396319692370688e-06,4.475859872412651493e-06,4.575323425132932299e-06,4.674786977853213104e-06,4.774250530573493910e-06,4.873714083293774715e-06,4.973177636014055521e-06,5.072641188734336326e-06,5.172104741454617132e-06,5.271568294174897937e-06,5.371031846895178743e-06,5.470495399615459548e-06,5.569958952335740354e-06,5.669422505056021159e-06,5.768886057776301965e-06,5.868349610496582770e-06,5.967813163216863576e-06,6.067276715937144381e-06,6.166740268657425187e-06,6.266203821377705992e-06 +0.000000000000000000e+00,9.840436210798495001e-08,1.968087242159699000e-07,2.952130863239548236e-07,3.936174484319397471e-07,4.920218105399246706e-07,5.904261726479096471e-07,6.888305347558946236e-07,7.872348968638796001e-07,8.856392589718645766e-07,9.840436210798495530e-07,1.082447983187834530e-06,1.180852345295819506e-06,1.279256707403804482e-06,1.377661069511789459e-06,1.476065431619774435e-06,1.574469793727759412e-06,1.672874155835744388e-06,1.771278517943729365e-06,1.869682880051714341e-06,1.968087242159699530e-06,2.066491604267684506e-06,2.164895966375669483e-06,2.263300328483654459e-06,2.361704690591639436e-06,2.460109052699624412e-06,2.558513414807609388e-06,2.656917776915594365e-06,2.755322139023579341e-06,2.853726501131564318e-06,2.952130863239549294e-06,3.050535225347534271e-06,3.148939587455519247e-06,3.247343949563504224e-06,3.345748311671489200e-06,3.444152673779474177e-06,3.542557035887459153e-06,3.640961397995444130e-06,3.739365760103429106e-06,3.837770122211414083e-06,3.936174484319399059e-06,4.034578846427384036e-06,4.132983208535369012e-06,4.231387570643353989e-06,4.329791932751338965e-06,4.428196294859323942e-06,4.526600656967308918e-06,4.625005019075293895e-06,4.723409381183278871e-06,4.821813743291263847e-06,4.920218105399248824e-06,5.018622467507233800e-06,5.117026829615218777e-06,5.215431191723203753e-06,5.313835553831188730e-06,5.412239915939173706e-06,5.510644278047158683e-06,5.609048640155143659e-06,5.707453002263128636e-06,5.805857364371113612e-06,5.904261726479098589e-06,6.002666088587083565e-06,6.101070450695068542e-06,6.199474812803053518e-06 +0.000000000000000000e+00,9.427529123149937089e-08,1.885505824629987418e-07,2.828258736944980994e-07,3.771011649259974306e-07,4.713764561574967618e-07,5.656517473889960930e-07,6.599270386204954242e-07,7.542023298519947554e-07,8.484776210834940866e-07,9.427529123149934178e-07,1.037028203546492855e-06,1.131303494777992398e-06,1.225578786009491941e-06,1.319854077240991484e-06,1.414129368472491027e-06,1.508404659703990570e-06,1.602679950935490113e-06,1.696955242166989655e-06,1.791230533398489198e-06,1.885505824629988741e-06,1.979781115861488284e-06,2.074056407092987827e-06,2.168331698324487370e-06,2.262606989555986913e-06,2.356882280787486456e-06,2.451157572018985999e-06,2.545432863250485542e-06,2.639708154481985085e-06,2.733983445713484628e-06,2.828258736944984171e-06,2.922534028176483714e-06,3.016809319407983257e-06,3.111084610639482800e-06,3.205359901870982343e-06,3.299635193102481886e-06,3.393910484333981429e-06,3.488185775565480971e-06,3.582461066796980514e-06,3.676736358028480057e-06,3.771011649259979600e-06,3.865286940491479567e-06,3.959562231722979110e-06,4.053837522954478653e-06,4.148112814185978196e-06,4.242388105417477739e-06,4.336663396648977281e-06,4.430938687880476824e-06,4.525213979111976367e-06,4.619489270343475910e-06,4.713764561574975453e-06,4.808039852806474996e-06,4.902315144037974539e-06,4.996590435269474082e-06,5.090865726500973625e-06,5.185141017732473168e-06,5.279416308963972711e-06,5.373691600195472254e-06,5.467966891426971797e-06,5.562242182658471340e-06,5.656517473889970883e-06,5.750792765121470426e-06,5.845068056352969969e-06,5.939343347584469512e-06 +0.000000000000000000e+00,1.014384426989890582e-07,2.028768853979781164e-07,3.043153280969671747e-07,4.057537707959562329e-07,5.071922134949452911e-07,6.086306561939343493e-07,7.100690988929234075e-07,8.115075415919124658e-07,9.129459842909015240e-07,1.014384426989890582e-06,1.115822869688879640e-06,1.217261312387868699e-06,1.318699755086857757e-06,1.420138197785846815e-06,1.521576640484835873e-06,1.623015083183824932e-06,1.724453525882813990e-06,1.825891968581803048e-06,1.927330411280791894e-06,2.028768853979780741e-06,2.130207296678769587e-06,2.231645739377758434e-06,2.333084182076747280e-06,2.434522624775736127e-06,2.535961067474724973e-06,2.637399510173713820e-06,2.738837952872702666e-06,2.840276395571691513e-06,2.941714838270680359e-06,3.043153280969669205e-06,3.144591723668658052e-06,3.246030166367646898e-06,3.347468609066635745e-06,3.448907051765624591e-06,3.550345494464613438e-06,3.651783937163602284e-06,3.753222379862591131e-06,3.854660822561580401e-06,3.956099265260569671e-06,4.057537707959558941e-06,4.158976150658548211e-06,4.260414593357537481e-06,4.361853036056526751e-06,4.463291478755516021e-06,4.564729921454505291e-06,4.666168364153494561e-06,4.767606806852483831e-06,4.869045249551473100e-06,4.970483692250462370e-06,5.071922134949451640e-06,5.173360577648440910e-06,5.274799020347430180e-06,5.376237463046419450e-06,5.477675905745408720e-06,5.579114348444397990e-06,5.680552791143387260e-06,5.781991233842376530e-06,5.883429676541365800e-06,5.984868119240355070e-06,6.086306561939344340e-06,6.187745004638333610e-06,6.289183447337322880e-06,6.390621890036312150e-06 +0.000000000000000000e+00,1.004818615967194231e-07,2.009637231934388463e-07,3.014455847901582430e-07,4.019274463868776396e-07,5.024093079835970363e-07,6.028911695803164859e-07,7.033730311770359355e-07,8.038548927737553851e-07,9.043367543704748347e-07,1.004818615967194284e-06,1.105300477563913628e-06,1.205782339160632972e-06,1.306264200757352316e-06,1.406746062354071659e-06,1.507227923950791003e-06,1.607709785547510347e-06,1.708191647144229690e-06,1.808673508740949034e-06,1.909155370337668378e-06,2.009637231934387722e-06,2.110119093531107065e-06,2.210600955127826409e-06,2.311082816724545753e-06,2.411564678321265097e-06,2.512046539917984440e-06,2.612528401514703784e-06,2.713010263111423128e-06,2.813492124708142472e-06,2.913973986304861815e-06,3.014455847901581159e-06,3.114937709498300503e-06,3.215419571095019846e-06,3.315901432691739190e-06,3.416383294288458534e-06,3.516865155885177878e-06,3.617347017481897221e-06,3.717828879078616565e-06,3.818310740675335909e-06,3.918792602272055676e-06,4.019274463868775443e-06,4.119756325465495211e-06,4.220238187062214978e-06,4.320720048658934745e-06,4.421201910255654512e-06,4.521683771852374280e-06,4.622165633449094047e-06,4.722647495045813814e-06,4.823129356642533581e-06,4.923611218239253349e-06,5.024093079835973116e-06,5.124574941432692883e-06,5.225056803029412650e-06,5.325538664626132418e-06,5.426020526222852185e-06,5.526502387819571952e-06,5.626984249416291719e-06,5.727466111013011487e-06,5.827947972609731254e-06,5.928429834206451021e-06,6.028911695803170788e-06,6.129393557399890556e-06,6.229875418996610323e-06,6.330357280593330090e-06 +0.000000000000000000e+00,9.572713845036579527e-08,1.914542769007315905e-07,2.871814153510973858e-07,3.829085538014631811e-07,4.786356922518289764e-07,5.743628307021947716e-07,6.700899691525605669e-07,7.658171076029263622e-07,8.615442460532921574e-07,9.572713845036579527e-07,1.052998522954023642e-06,1.148725661404389331e-06,1.244452799854755021e-06,1.340179938305120710e-06,1.435907076755486400e-06,1.531634215205852089e-06,1.627361353656217778e-06,1.723088492106583468e-06,1.818815630556949157e-06,1.914542769007314635e-06,2.010269907457680112e-06,2.105997045908045590e-06,2.201724184358411068e-06,2.297451322808776545e-06,2.393178461259142023e-06,2.488905599709507501e-06,2.584632738159872978e-06,2.680359876610238456e-06,2.776087015060603934e-06,2.871814153510969411e-06,2.967541291961334889e-06,3.063268430411700366e-06,3.158995568862065844e-06,3.254722707312431322e-06,3.350449845762796799e-06,3.446176984213162277e-06,3.541904122663527755e-06,3.637631261113893232e-06,3.733358399564258710e-06,3.829085538014624188e-06,3.924812676464989665e-06,4.020539814915355143e-06,4.116266953365720620e-06,4.211994091816086098e-06,4.307721230266451576e-06,4.403448368716817053e-06,4.499175507167182531e-06,4.594902645617548009e-06,4.690629784067913486e-06,4.786356922518278964e-06,4.882084060968644442e-06,4.977811199419009919e-06,5.073538337869375397e-06,5.169265476319740874e-06,5.264992614770106352e-06,5.360719753220471830e-06,5.456446891670837307e-06,5.552174030121202785e-06,5.647901168571568263e-06,5.743628307021933740e-06,5.839355445472299218e-06,5.935082583922664695e-06,6.030809722373030173e-06 +0.000000000000000000e+00,1.014384426989816996e-07,2.028768853979633992e-07,3.043153280969450989e-07,4.057537707959267985e-07,5.071922134949084452e-07,6.086306561938900918e-07,7.100690988928717385e-07,8.115075415918533852e-07,9.129459842908350319e-07,1.014384426989816679e-06,1.115822869688798325e-06,1.217261312387779972e-06,1.318699755086761619e-06,1.420138197785743265e-06,1.521576640484724912e-06,1.623015083183706559e-06,1.724453525882688205e-06,1.825891968581669852e-06,1.927330411280651287e-06,2.028768853979632934e-06,2.130207296678614580e-06,2.231645739377596227e-06,2.333084182076577874e-06,2.434522624775559520e-06,2.535961067474541167e-06,2.637399510173522814e-06,2.738837952872504460e-06,2.840276395571486107e-06,2.941714838270467754e-06,3.043153280969449400e-06,3.144591723668431047e-06,3.246030166367412694e-06,3.347468609066394340e-06,3.448907051765375987e-06,3.550345494464357634e-06,3.651783937163339281e-06,3.753222379862320927e-06,3.854660822561302574e-06,3.956099265260284221e-06,4.057537707959265867e-06,4.158976150658247514e-06,4.260414593357229161e-06,4.361853036056210807e-06,4.463291478755192454e-06,4.564729921454174101e-06,4.666168364153155747e-06,4.767606806852137394e-06,4.869045249551119041e-06,4.970483692250100687e-06,5.071922134949082334e-06,5.173360577648063981e-06,5.274799020347045627e-06,5.376237463046027274e-06,5.477675905745008921e-06,5.579114348443990567e-06,5.680552791142972214e-06,5.781991233841953861e-06,5.883429676540935508e-06,5.984868119239917154e-06,6.086306561938898801e-06,6.187745004637880448e-06,6.289183447336862094e-06,6.390621890035843741e-06 +0.000000000000000000e+00,1.004818615967132689e-07,2.009637231934265378e-07,3.014455847901398200e-07,4.019274463868531286e-07,5.024093079835664372e-07,6.028911695802797459e-07,7.033730311769930545e-07,8.038548927737063631e-07,9.043367543704196717e-07,1.004818615967132874e-06,1.105300477563846077e-06,1.205782339160559280e-06,1.306264200757272483e-06,1.406746062353985685e-06,1.507227923950698888e-06,1.607709785547412091e-06,1.708191647144125294e-06,1.808673508740838496e-06,1.909155370337551911e-06,2.009637231934265325e-06,2.110119093530978740e-06,2.210600955127692154e-06,2.311082816724405569e-06,2.411564678321118983e-06,2.512046539917832398e-06,2.612528401514545812e-06,2.713010263111259227e-06,2.813492124707972641e-06,2.913973986304686056e-06,3.014455847901399470e-06,3.114937709498112885e-06,3.215419571094826299e-06,3.315901432691539714e-06,3.416383294288253128e-06,3.516865155884966543e-06,3.617347017481679957e-06,3.717828879078393372e-06,3.818310740675107210e-06,3.918792602271821048e-06,4.019274463868534886e-06,4.119756325465248724e-06,4.220238187061962562e-06,4.320720048658676400e-06,4.421201910255390238e-06,4.521683771852104076e-06,4.622165633448817914e-06,4.722647495045531752e-06,4.823129356642245590e-06,4.923611218238959428e-06,5.024093079835673266e-06,5.124574941432387104e-06,5.225056803029100942e-06,5.325538664625814780e-06,5.426020526222528618e-06,5.526502387819242456e-06,5.626984249415956294e-06,5.727466111012670132e-06,5.827947972609383970e-06,5.928429834206097808e-06,6.028911695802811646e-06,6.129393557399525484e-06,6.229875418996239322e-06,6.330357280592953160e-06 +0.000000000000000000e+00,9.572713845036193068e-08,1.914542769007238614e-07,2.871814153510857920e-07,3.829085538014477227e-07,4.786356922518096005e-07,5.743628307021714782e-07,6.700899691525333560e-07,7.658171076028952337e-07,8.615442460532571114e-07,9.572713845036189892e-07,1.052998522953980867e-06,1.148725661404342745e-06,1.244452799854704622e-06,1.340179938305066500e-06,1.435907076755428378e-06,1.531634215205790256e-06,1.627361353656152133e-06,1.723088492106514011e-06,1.818815630556875889e-06,1.914542769007237555e-06,2.010269907457599221e-06,2.105997045907960887e-06,2.201724184358322553e-06,2.297451322808684219e-06,2.393178461259045885e-06,2.488905599709407551e-06,2.584632738159769217e-06,2.680359876610130883e-06,2.776087015060492549e-06,2.871814153510854215e-06,2.967541291961215881e-06,3.063268430411577547e-06,3.158995568861939213e-06,3.254722707312300879e-06,3.350449845762662545e-06,3.446176984213024211e-06,3.541904122663385877e-06,3.637631261113747543e-06,3.733358399564109209e-06,3.829085538014470875e-06,3.924812676464832964e-06,4.020539814915195054e-06,4.116266953365557143e-06,4.211994091815919233e-06,4.307721230266281322e-06,4.403448368716643412e-06,4.499175507167005501e-06,4.594902645617367591e-06,4.690629784067729680e-06,4.786356922518091770e-06,4.882084060968453859e-06,4.977811199418815949e-06,5.073538337869178038e-06,5.169265476319540128e-06,5.264992614769902217e-06,5.360719753220264307e-06,5.456446891670626396e-06,5.552174030120988486e-06,5.647901168571350575e-06,5.743628307021712665e-06,5.839355445472074754e-06,5.935082583922436844e-06,6.030809722372798933e-06 +0.000000000000000000e+00,1.031264211889945555e-07,2.062528423779891111e-07,3.093792635669836402e-07,4.125056847559781693e-07,5.156321059449726983e-07,6.187585271339672804e-07,7.218849483229618624e-07,8.250113695119564444e-07,9.281377907009510264e-07,1.031264211889945608e-06,1.134390633078940190e-06,1.237517054267934772e-06,1.340643475456929354e-06,1.443769896645923937e-06,1.546896317834918519e-06,1.650022739023913101e-06,1.753149160212907683e-06,1.856275581401902265e-06,1.959402002590896635e-06,2.062528423779890793e-06,2.165654844968884952e-06,2.268781266157879110e-06,2.371907687346873269e-06,2.475034108535867427e-06,2.578160529724861586e-06,2.681286950913855744e-06,2.784413372102849903e-06,2.887539793291844061e-06,2.990666214480838220e-06,3.093792635669832378e-06,3.196919056858826537e-06,3.300045478047820695e-06,3.403171899236814854e-06,3.506298320425809012e-06,3.609424741614803171e-06,3.712551162803797329e-06,3.815677583992791488e-06,3.918804005181785646e-06,4.021930426370779805e-06,4.125056847559773963e-06,4.228183268748768122e-06,4.331309689937762280e-06,4.434436111126756439e-06,4.537562532315750597e-06,4.640688953504744756e-06,4.743815374693738914e-06,4.846941795882733073e-06,4.950068217071727231e-06,5.053194638260721390e-06,5.156321059449715548e-06,5.259447480638709707e-06,5.362573901827703865e-06,5.465700323016698024e-06,5.568826744205692182e-06,5.671953165394686341e-06,5.775079586583680499e-06,5.878206007772674658e-06,5.981332428961668816e-06,6.084458850150662975e-06,6.187585271339657133e-06,6.290711692528651292e-06,6.393838113717645450e-06,6.496964534906639609e-06 +0.000000000000000000e+00,1.023263096669701226e-07,2.046526193339402452e-07,3.069789290009103414e-07,4.093052386678804375e-07,5.116315483348505337e-07,6.139578580018206828e-07,7.162841676687908319e-07,8.186104773357609810e-07,9.209367870027311301e-07,1.023263096669701279e-06,1.125589406336671428e-06,1.227915716003641577e-06,1.330242025670611726e-06,1.432568335337581876e-06,1.534894645004552025e-06,1.637220954671522174e-06,1.739547264338492323e-06,1.841873574005462472e-06,1.944199883672432833e-06,2.046526193339402982e-06,2.148852503006373131e-06,2.251178812673343280e-06,2.353505122340313429e-06,2.455831432007283578e-06,2.558157741674253727e-06,2.660484051341223876e-06,2.762810361008194025e-06,2.865136670675164175e-06,2.967462980342134324e-06,3.069789290009104473e-06,3.172115599676074622e-06,3.274441909343044771e-06,3.376768219010014920e-06,3.479094528676985069e-06,3.581420838343955218e-06,3.683747148010925367e-06,3.786073457677895516e-06,3.888399767344865665e-06,3.990726077011835815e-06,4.093052386678805964e-06,4.195378696345776113e-06,4.297705006012746262e-06,4.400031315679716411e-06,4.502357625346686560e-06,4.604683935013656709e-06,4.707010244680626858e-06,4.809336554347597007e-06,4.911662864014567156e-06,5.013989173681537305e-06,5.116315483348507455e-06,5.218641793015477604e-06,5.320968102682447753e-06,5.423294412349417902e-06,5.525620722016388051e-06,5.627947031683358200e-06,5.730273341350328349e-06,5.832599651017298498e-06,5.934925960684268647e-06,6.037252270351238796e-06,6.139578580018208945e-06,6.241904889685179095e-06,6.344231199352149244e-06,6.446557509019119393e-06 +0.000000000000000000e+00,9.687063628146355336e-08,1.937412725629271067e-07,2.906119088443906469e-07,3.874825451258541605e-07,4.843531814073176742e-07,5.812238176887811878e-07,6.780944539702447015e-07,7.749650902517082152e-07,8.718357265331717288e-07,9.687063628146353484e-07,1.065576999096098968e-06,1.162447635377562587e-06,1.259318271659026207e-06,1.356188907940489827e-06,1.453059544221953446e-06,1.549930180503417066e-06,1.646800816784880685e-06,1.743671453066344305e-06,1.840542089347807924e-06,1.937412725629271544e-06,2.034283361910735163e-06,2.131153998192198783e-06,2.228024634473662402e-06,2.324895270755126022e-06,2.421765907036589641e-06,2.518636543318053261e-06,2.615507179599516881e-06,2.712377815880980500e-06,2.809248452162444120e-06,2.906119088443907739e-06,3.002989724725371359e-06,3.099860361006834978e-06,3.196730997288298598e-06,3.293601633569762217e-06,3.390472269851225837e-06,3.487342906132689456e-06,3.584213542414153076e-06,3.681084178695616695e-06,3.777954814977080315e-06,3.874825451258543934e-06,3.971696087540007554e-06,4.068566723821471174e-06,4.165437360102934793e-06,4.262307996384398413e-06,4.359178632665862032e-06,4.456049268947325652e-06,4.552919905228789271e-06,4.649790541510252891e-06,4.746661177791716510e-06,4.843531814073180130e-06,4.940402450354643749e-06,5.037273086636107369e-06,5.134143722917570988e-06,5.231014359199034608e-06,5.327884995480498228e-06,5.424755631761961847e-06,5.521626268043425467e-06,5.618496904324889086e-06,5.715367540606352706e-06,5.812238176887816325e-06,5.909108813169279945e-06,6.005979449450743564e-06,6.102850085732207184e-06 +0.000000000000000000e+00,1.031264211889861249e-07,2.062528423779722498e-07,3.093792635669583880e-07,4.125056847559445526e-07,5.156321059449307702e-07,6.187585271339169878e-07,7.218849483229032053e-07,8.250113695118894229e-07,9.281377907008756405e-07,1.031264211889861964e-06,1.134390633078848287e-06,1.237517054267834611e-06,1.340643475456820934e-06,1.443769896645807258e-06,1.546896317834793581e-06,1.650022739023779905e-06,1.753149160212766228e-06,1.856275581401752552e-06,1.959402002590739087e-06,2.062528423779725622e-06,2.165654844968712157e-06,2.268781266157698692e-06,2.371907687346685228e-06,2.475034108535671763e-06,2.578160529724658298e-06,2.681286950913644833e-06,2.784413372102631368e-06,2.887539793291617904e-06,2.990666214480604439e-06,3.093792635669590974e-06,3.196919056858577509e-06,3.300045478047564044e-06,3.403171899236550580e-06,3.506298320425537115e-06,3.609424741614523650e-06,3.712551162803510185e-06,3.815677583992496720e-06,3.918804005181483256e-06,4.021930426370469791e-06,4.125056847559456326e-06,4.228183268748442861e-06,4.331309689937429396e-06,4.434436111126415932e-06,4.537562532315402467e-06,4.640688953504389002e-06,4.743815374693375537e-06,4.846941795882362072e-06,4.950068217071348608e-06,5.053194638260335143e-06,5.156321059449321678e-06,5.259447480638308213e-06,5.362573901827294749e-06,5.465700323016281284e-06,5.568826744205267819e-06,5.671953165394254354e-06,5.775079586583240889e-06,5.878206007772227425e-06,5.981332428961213960e-06,6.084458850150200495e-06,6.187585271339187030e-06,6.290711692528173565e-06,6.393838113717160101e-06,6.496964534906146636e-06 +0.000000000000000000e+00,1.023263096669622346e-07,2.046526193339244693e-07,3.069789290008867304e-07,4.093052386678489914e-07,5.116315483348112525e-07,6.139578580017734607e-07,7.162841676687356689e-07,8.186104773356978770e-07,9.209367870026600852e-07,1.023263096669622293e-06,1.125589406336584396e-06,1.227915716003546498e-06,1.330242025670508600e-06,1.432568335337470702e-06,1.534894645004432805e-06,1.637220954671394907e-06,1.739547264338357009e-06,1.841873574005319112e-06,1.944199883672281214e-06,2.046526193339243316e-06,2.148852503006205418e-06,2.251178812673167521e-06,2.353505122340129623e-06,2.455831432007091725e-06,2.558157741674053828e-06,2.660484051341015930e-06,2.762810361007978032e-06,2.865136670674940134e-06,2.967462980341902237e-06,3.069789290008864339e-06,3.172115599675826441e-06,3.274441909342788543e-06,3.376768219009750646e-06,3.479094528676712748e-06,3.581420838343674850e-06,3.683747148010636953e-06,3.786073457677599055e-06,3.888399767344560734e-06,3.990726077011522412e-06,4.093052386678484091e-06,4.195378696345445770e-06,4.297705006012407449e-06,4.400031315679369127e-06,4.502357625346330806e-06,4.604683935013292485e-06,4.707010244680254164e-06,4.809336554347215842e-06,4.911662864014177521e-06,5.013989173681139200e-06,5.116315483348100879e-06,5.218641793015062558e-06,5.320968102682024236e-06,5.423294412348985915e-06,5.525620722015947594e-06,5.627947031682909273e-06,5.730273341349870951e-06,5.832599651016832630e-06,5.934925960683794309e-06,6.037252270350755988e-06,6.139578580017717666e-06,6.241904889684679345e-06,6.344231199351641024e-06,6.446557509018602703e-06 +0.000000000000000000e+00,9.687063628145807412e-08,1.937412725629161482e-07,2.906119088443742356e-07,3.874825451258323494e-07,4.843531814072904632e-07,5.812238176887485771e-07,6.780944539702066909e-07,7.749650902516648047e-07,8.718357265331229185e-07,9.687063628145811382e-07,1.065576999096039252e-06,1.162447635377497366e-06,1.259318271658955480e-06,1.356188907940413594e-06,1.453059544221871707e-06,1.549930180503329821e-06,1.646800816784787935e-06,1.743671453066246049e-06,1.840542089347704163e-06,1.937412725629162276e-06,2.034283361910620390e-06,2.131153998192078504e-06,2.228024634473536618e-06,2.324895270754994732e-06,2.421765907036452846e-06,2.518636543317910959e-06,2.615507179599369073e-06,2.712377815880827187e-06,2.809248452162285301e-06,2.906119088443743415e-06,3.002989724725201529e-06,3.099860361006659642e-06,3.196730997288117756e-06,3.293601633569575870e-06,3.390472269851033984e-06,3.487342906132492098e-06,3.584213542413950211e-06,3.681084178695408325e-06,3.777954814976866439e-06,3.874825451258324553e-06,3.971696087539783090e-06,4.068566723821241628e-06,4.165437360102700165e-06,4.262307996384158702e-06,4.359178632665617240e-06,4.456049268947075777e-06,4.552919905228534314e-06,4.649790541509992852e-06,4.746661177791451389e-06,4.843531814072909926e-06,4.940402450354368464e-06,5.037273086635827001e-06,5.134143722917285538e-06,5.231014359198744076e-06,5.327884995480202613e-06,5.424755631761661150e-06,5.521626268043119688e-06,5.618496904324578225e-06,5.715367540606036762e-06,5.812238176887495300e-06,5.909108813168953837e-06,6.005979449450412374e-06,6.102850085731870912e-06 +0.000000000000000000e+00,1.044642431937478907e-07,2.089284863874957814e-07,3.133927295812436720e-07,4.178569727749915627e-07,5.223212159687394534e-07,6.267854591624873441e-07,7.312497023562352348e-07,8.357139455499831254e-07,9.401781887437310161e-07,1.044642431937478907e-06,1.149106675131226903e-06,1.253570918324974900e-06,1.358035161518722896e-06,1.462499404712470893e-06,1.566963647906218890e-06,1.671427891099966886e-06,1.775892134293714883e-06,1.880356377487462879e-06,1.984820620681210876e-06,2.089284863874959084e-06,2.193749107068707292e-06,2.298213350262455501e-06,2.402677593456203709e-06,2.507141836649951917e-06,2.611606079843700126e-06,2.716070323037448334e-06,2.820534566231196542e-06,2.924998809424944751e-06,3.029463052618692959e-06,3.133927295812441167e-06,3.238391539006189376e-06,3.342855782199937584e-06,3.447320025393685792e-06,3.551784268587434001e-06,3.656248511781182209e-06,3.760712754974930417e-06,3.865176998168678626e-06,3.969641241362426834e-06,4.074105484556175042e-06,4.178569727749923250e-06,4.283033970943671459e-06,4.387498214137419667e-06,4.491962457331167875e-06,4.596426700524916084e-06,4.700890943718664292e-06,4.805355186912412500e-06,4.909819430106160709e-06,5.014283673299908917e-06,5.118747916493657125e-06,5.223212159687405334e-06,5.327676402881153542e-06,5.432140646074901750e-06,5.536604889268649959e-06,5.641069132462398167e-06,5.745533375656146375e-06,5.849997618849894584e-06,5.954461862043642792e-06,6.058926105237391000e-06,6.163390348431139209e-06,6.267854591624887417e-06,6.372318834818635625e-06,6.476783078012383833e-06,6.581247321206132042e-06 +0.000000000000000000e+00,1.044608407418811656e-07,2.089216814837623311e-07,3.133825222256434967e-07,4.178433629675246622e-07,5.223042037094058278e-07,6.267650444512869933e-07,7.312258851931681589e-07,8.356867259350493244e-07,9.401475666769304900e-07,1.044608407418811656e-06,1.149069248160692715e-06,1.253530088902573775e-06,1.357990929644454835e-06,1.462451770386335894e-06,1.566912611128216954e-06,1.671373451870098014e-06,1.775834292611979073e-06,1.880295133353860133e-06,1.984755974095741193e-06,2.089216814837622040e-06,2.193677655579502888e-06,2.298138496321383736e-06,2.402599337063264584e-06,2.507060177805145432e-06,2.611521018547026280e-06,2.715981859288907128e-06,2.820442700030787976e-06,2.924903540772668824e-06,3.029364381514549672e-06,3.133825222256430520e-06,3.238286062998311368e-06,3.342746903740192215e-06,3.447207744482073063e-06,3.551668585223953911e-06,3.656129425965834759e-06,3.760590266707715607e-06,3.865051107449596032e-06,3.969511948191476456e-06,4.073972788933356880e-06,4.178433629675237305e-06,4.282894470417117729e-06,4.387355311158998154e-06,4.491816151900878578e-06,4.596276992642759002e-06,4.700737833384639427e-06,4.805198674126519851e-06,4.909659514868400276e-06,5.014120355610280700e-06,5.118581196352161124e-06,5.223042037094041549e-06,5.327502877835921973e-06,5.431963718577802397e-06,5.536424559319682822e-06,5.640885400061563246e-06,5.745346240803443671e-06,5.849807081545324095e-06,5.954267922287204519e-06,6.058728763029084944e-06,6.163189603770965368e-06,6.267650444512845793e-06,6.372111285254726217e-06,6.476572125996606641e-06,6.581032966738487066e-06 +0.000000000000000000e+00,1.038392914533231571e-07,2.076785829066463142e-07,3.115178743599694581e-07,4.153571658132925755e-07,5.191964572666156930e-07,6.230357487199388104e-07,7.268750401732619278e-07,8.307143316265850452e-07,9.345536230799081626e-07,1.038392914533231386e-06,1.142232205986554609e-06,1.246071497439877832e-06,1.349910788893201056e-06,1.453750080346524279e-06,1.557589371799847502e-06,1.661428663253170726e-06,1.765267954706493949e-06,1.869107246159817172e-06,1.972946537613140396e-06,2.076785829066463619e-06,2.180625120519786842e-06,2.284464411973110065e-06,2.388303703426433289e-06,2.492142994879756512e-06,2.595982286333079735e-06,2.699821577786402959e-06,2.803660869239726182e-06,2.907500160693049405e-06,3.011339452146372628e-06,3.115178743599695852e-06,3.219018035053019075e-06,3.322857326506342298e-06,3.426696617959665522e-06,3.530535909412988745e-06,3.634375200866311968e-06,3.738214492319635192e-06,3.842053783772958838e-06,3.945893075226282485e-06,4.049732366679606132e-06,4.153571658132929779e-06,4.257410949586253426e-06,4.361250241039577072e-06,4.465089532492900719e-06,4.568928823946224366e-06,4.672768115399548013e-06,4.776607406852871660e-06,4.880446698306195306e-06,4.984285989759518953e-06,5.088125281212842600e-06,5.191964572666166247e-06,5.295803864119489894e-06,5.399643155572813540e-06,5.503482447026137187e-06,5.607321738479460834e-06,5.711161029932784481e-06,5.815000321386108128e-06,5.918839612839431775e-06,6.022678904292755421e-06,6.126518195746079068e-06,6.230357487199402715e-06,6.334196778652726362e-06,6.438036070106050009e-06,6.541875361559373655e-06 +0.000000000000000000e+00,9.753795698596892486e-08,1.950759139719378497e-07,2.926138709579067878e-07,3.901518279438757524e-07,4.876897849298447169e-07,5.852277419158136815e-07,6.827656989017826461e-07,7.803036558877516106e-07,8.778416128737205752e-07,9.753795698596896456e-07,1.072917526845658822e-06,1.170455483831627998e-06,1.267993440817597175e-06,1.365531397803566351e-06,1.463069354789535527e-06,1.560607311775504704e-06,1.658145268761473880e-06,1.755683225747443056e-06,1.853221182733412233e-06,1.950759139719381409e-06,2.048297096705350585e-06,2.145835053691319762e-06,2.243373010677288938e-06,2.340910967663258114e-06,2.438448924649227290e-06,2.535986881635196467e-06,2.633524838621165643e-06,2.731062795607134819e-06,2.828600752593103996e-06,2.926138709579073172e-06,3.023676666565042348e-06,3.121214623551011525e-06,3.218752580536980701e-06,3.316290537522949877e-06,3.413828494508919054e-06,3.511366451494888230e-06,3.608904408480857406e-06,3.706442365466826583e-06,3.803980322452795759e-06,3.901518279438765359e-06,3.999056236424734959e-06,4.096594193410704559e-06,4.194132150396674158e-06,4.291670107382643758e-06,4.389208064368613358e-06,4.486746021354582958e-06,4.584283978340552558e-06,4.681821935326522158e-06,4.779359892312491757e-06,4.876897849298461357e-06,4.974435806284430957e-06,5.071973763270400557e-06,5.169511720256370157e-06,5.267049677242339757e-06,5.364587634228309356e-06,5.462125591214278956e-06,5.559663548200248556e-06,5.657201505186218156e-06,5.754739462172187756e-06,5.852277419158157356e-06,5.949815376144126955e-06,6.047353333130096555e-06,6.144891290116066155e-06 +0.000000000000000000e+00,1.044613386595790834e-07,2.089226773191581669e-07,3.133840159787372238e-07,4.178453546383162808e-07,5.223066932978953377e-07,6.267680319574744476e-07,7.312293706170535575e-07,8.356907092766326674e-07,9.401520479362117773e-07,1.044613386595790887e-06,1.149074725255370103e-06,1.253536063914949319e-06,1.357997402574528535e-06,1.462458741234107750e-06,1.566920079893686966e-06,1.671381418553266182e-06,1.775842757212845398e-06,1.880304095872424613e-06,1.984765434532003829e-06,2.089226773191583045e-06,2.193688111851162261e-06,2.298149450510741477e-06,2.402610789170320692e-06,2.507072127829899908e-06,2.611533466489479124e-06,2.715994805149058340e-06,2.820456143808637555e-06,2.924917482468216771e-06,3.029378821127795987e-06,3.133840159787375203e-06,3.238301498446954419e-06,3.342762837106533634e-06,3.447224175766112850e-06,3.551685514425692066e-06,3.656146853085271282e-06,3.760608191744850497e-06,3.865069530404430137e-06,3.969530869064010200e-06,4.073992207723590262e-06,4.178453546383170325e-06,4.282914885042750388e-06,4.387376223702330451e-06,4.491837562361910514e-06,4.596298901021490576e-06,4.700760239681070639e-06,4.805221578340650702e-06,4.909682917000230765e-06,5.014144255659810828e-06,5.118605594319390891e-06,5.223066932978970953e-06,5.327528271638551016e-06,5.431989610298131079e-06,5.536450948957711142e-06,5.640912287617291205e-06,5.745373626276871267e-06,5.849834964936451330e-06,5.954296303596031393e-06,6.058757642255611456e-06,6.163218980915191519e-06,6.267680319574771581e-06,6.372141658234351644e-06,6.476602996893931707e-06,6.581064335553511770e-06 +0.000000000000000000e+00,9.753127525142165963e-08,1.950625505028433193e-07,2.925938257542649524e-07,3.901251010056865856e-07,4.876563762571082187e-07,5.851876515085299048e-07,6.827189267599515909e-07,7.802502020113732771e-07,8.777814772627949632e-07,9.753127525142166493e-07,1.072844027765638441e-06,1.170375303017060233e-06,1.267906578268482025e-06,1.365437853519903817e-06,1.462969128771325609e-06,1.560500404022747401e-06,1.658031679274169193e-06,1.755562954525590985e-06,1.853094229777012777e-06,1.950625505028434569e-06,2.048156780279856361e-06,2.145688055531278153e-06,2.243219330782699945e-06,2.340750606034121737e-06,2.438281881285543529e-06,2.535813156536965321e-06,2.633344431788387113e-06,2.730875707039808905e-06,2.828406982291230697e-06,2.925938257542652489e-06,3.023469532794074281e-06,3.121000808045496073e-06,3.218532083296917865e-06,3.316063358548339657e-06,3.413594633799761449e-06,3.511125909051183241e-06,3.608657184302605033e-06,3.706188459554026825e-06,3.803719734805448617e-06,3.901251010056869985e-06,3.998782285308291777e-06,4.096313560559713569e-06,4.193844835811135361e-06,4.291376111062557153e-06,4.388907386313978945e-06,4.486438661565400737e-06,4.583969936816822529e-06,4.681501212068244321e-06,4.779032487319666113e-06,4.876563762571087905e-06,4.974095037822509697e-06,5.071626313073931489e-06,5.169157588325353281e-06,5.266688863576775073e-06,5.364220138828196865e-06,5.461751414079618657e-06,5.559282689331040449e-06,5.656813964582462241e-06,5.754345239833884033e-06,5.851876515085305825e-06,5.949407790336727617e-06,6.046939065588149409e-06,6.144470340839571201e-06 +0.000000000000000000e+00,1.044642431937380704e-07,2.089284863874761408e-07,3.133927295812142376e-07,4.178569727749523345e-07,5.223212159686904314e-07,6.267854591624284753e-07,7.312497023561665192e-07,8.357139455499045631e-07,9.401781887436426071e-07,1.044642431937380651e-06,1.149106675131118695e-06,1.253570918324856739e-06,1.358035161518594783e-06,1.462499404712332827e-06,1.566963647906070871e-06,1.671427891099808915e-06,1.775892134293546958e-06,1.880356377487285002e-06,1.984820620681022835e-06,2.089284863874760878e-06,2.193749107068498922e-06,2.298213350262236966e-06,2.402677593455975010e-06,2.507141836649713054e-06,2.611606079843451098e-06,2.716070323037189142e-06,2.820534566230927186e-06,2.924998809424665230e-06,3.029463052618403274e-06,3.133927295812141318e-06,3.238391539005879362e-06,3.342855782199617405e-06,3.447320025393355449e-06,3.551784268587093493e-06,3.656248511780831537e-06,3.760712754974569581e-06,3.865176998168307625e-06,3.969641241362045669e-06,4.074105484555783713e-06,4.178569727749521757e-06,4.283033970943259801e-06,4.387498214136997845e-06,4.491962457330735889e-06,4.596426700524473933e-06,4.700890943718211976e-06,4.805355186911950020e-06,4.909819430105688064e-06,5.014283673299426108e-06,5.118747916493164152e-06,5.223212159686902196e-06,5.327676402880640240e-06,5.432140646074378284e-06,5.536604889268116328e-06,5.641069132461854372e-06,5.745533375655592416e-06,5.849997618849330460e-06,5.954461862043068504e-06,6.058926105236806547e-06,6.163390348430544591e-06,6.267854591624282635e-06,6.372318834818020679e-06,6.476783078011758723e-06,6.581247321205496767e-06 +0.000000000000000000e+00,1.044613386595741865e-07,2.089226773191483730e-07,3.133840159787225596e-07,4.178453546382967461e-07,5.223066932978708797e-07,6.267680319574450132e-07,7.312293706170191468e-07,8.356907092765932804e-07,9.401520479361674140e-07,1.044613386595741548e-06,1.149074725255315681e-06,1.253536063914889815e-06,1.357997402574463948e-06,1.462458741234038082e-06,1.566920079893612215e-06,1.671381418553186349e-06,1.775842757212760483e-06,1.880304095872334616e-06,1.984765434531908538e-06,2.089226773191482672e-06,2.193688111851056805e-06,2.298149450510630939e-06,2.402610789170205072e-06,2.507072127829779206e-06,2.611533466489353340e-06,2.715994805148927473e-06,2.820456143808501607e-06,2.924917482468075740e-06,3.029378821127649874e-06,3.133840159787224007e-06,3.238301498446798141e-06,3.342762837106372275e-06,3.447224175765946408e-06,3.551685514425520542e-06,3.656146853085094675e-06,3.760608191744668809e-06,3.865069530404242943e-06,3.969530869063817076e-06,4.073992207723391210e-06,4.178453546382965343e-06,4.282914885042539477e-06,4.387376223702113610e-06,4.491837562361687744e-06,4.596298901021261878e-06,4.700760239680836011e-06,4.805221578340410145e-06,4.909682916999984278e-06,5.014144255659558412e-06,5.118605594319132545e-06,5.223066932978706679e-06,5.327528271638280813e-06,5.431989610297854946e-06,5.536450948957429080e-06,5.640912287617003213e-06,5.745373626276577347e-06,5.849834964936151481e-06,5.954296303595725614e-06,6.058757642255299748e-06,6.163218980914873881e-06,6.267680319574448015e-06,6.372141658234022148e-06,6.476602996893596282e-06,6.581064335553170416e-06 +0.000000000000000000e+00,1.038392914533139986e-07,2.076785829066279972e-07,3.115178743599419825e-07,4.153571658132559414e-07,5.191964572665699532e-07,6.230357487198839650e-07,7.268750401731979768e-07,8.307143316265119886e-07,9.345536230798260004e-07,1.038392914533139906e-06,1.142232205986453812e-06,1.246071497439767718e-06,1.349910788893081624e-06,1.453750080346395530e-06,1.557589371799709436e-06,1.661428663253023342e-06,1.765267954706337248e-06,1.869107246159651154e-06,1.972946537612965060e-06,2.076785829066278966e-06,2.180625120519592872e-06,2.284464411972906778e-06,2.388303703426220683e-06,2.492142994879534589e-06,2.595982286332848495e-06,2.699821577786162401e-06,2.803660869239476307e-06,2.907500160692790213e-06,3.011339452146104119e-06,3.115178743599418025e-06,3.219018035052731931e-06,3.322857326506045837e-06,3.426696617959359743e-06,3.530535909412673649e-06,3.634375200865987555e-06,3.738214492319301461e-06,3.842053783772614943e-06,3.945893075225928425e-06,4.049732366679241908e-06,4.153571658132555390e-06,4.257410949585868873e-06,4.361250241039182355e-06,4.465089532492495837e-06,4.568928823945809320e-06,4.672768115399122802e-06,4.776607406852436285e-06,4.880446698305749767e-06,4.984285989759063250e-06,5.088125281212376732e-06,5.191964572665690214e-06,5.295803864119003697e-06,5.399643155572317179e-06,5.503482447025630662e-06,5.607321738478944144e-06,5.711161029932257626e-06,5.815000321385571109e-06,5.918839612838884591e-06,6.022678904292198074e-06,6.126518195745511556e-06,6.230357487198825039e-06,6.334196778652138521e-06,6.438036070105452003e-06,6.541875361558765486e-06 +0.000000000000000000e+00,9.753795698596187066e-08,1.950759139719237413e-07,2.926138709578856120e-07,3.901518279438474827e-07,4.876897849298093533e-07,5.852277419157712240e-07,6.827656989017330946e-07,7.803036558876949653e-07,8.778416128736568360e-07,9.753795698596187066e-07,1.072917526845580471e-06,1.170455483831542236e-06,1.267993440817504001e-06,1.365531397803465766e-06,1.463069354789427531e-06,1.560607311775389295e-06,1.658145268761351060e-06,1.755683225747312825e-06,1.853221182733274590e-06,1.950759139719236143e-06,2.048297096705197696e-06,2.145835053691159249e-06,2.243373010677120802e-06,2.340910967663082355e-06,2.438448924649043908e-06,2.535986881635005461e-06,2.633524838620967014e-06,2.731062795606928567e-06,2.828600752592890120e-06,2.926138709578851673e-06,3.023676666564813226e-06,3.121214623550774779e-06,3.218752580536736332e-06,3.316290537522697885e-06,3.413828494508659438e-06,3.511366451494620991e-06,3.608904408480582544e-06,3.706442365466544097e-06,3.803980322452505650e-06,3.901518279438467203e-06,3.999056236424429180e-06,4.096594193410391156e-06,4.194132150396353133e-06,4.291670107382315109e-06,4.389208064368277086e-06,4.486746021354239063e-06,4.584283978340201039e-06,4.681821935326163016e-06,4.779359892312124992e-06,4.876897849298086969e-06,4.974435806284048945e-06,5.071973763270010922e-06,5.169511720255972898e-06,5.267049677241934875e-06,5.364587634227896851e-06,5.462125591213858828e-06,5.559663548199820804e-06,5.657201505185782781e-06,5.754739462171744758e-06,5.852277419157706734e-06,5.949815376143668711e-06,6.047353333129630687e-06,6.144891290115592664e-06 +0.000000000000000000e+00,9.894487614710747147e-08,1.978897522942149429e-07,2.968346284413224277e-07,3.957795045884299388e-07,4.947243807355373971e-07,5.936692568826448553e-07,6.926141330297523136e-07,7.915590091768597718e-07,8.905038853239672300e-07,9.894487614710747941e-07,1.088393637618182358e-06,1.187338513765289922e-06,1.286283389912397486e-06,1.385228266059505051e-06,1.484173142206612615e-06,1.583118018353720179e-06,1.682062894500827743e-06,1.781007770647935307e-06,1.879952646795042871e-06,1.978897522942150435e-06,2.077842399089257788e-06,2.176787275236365140e-06,2.275732151383472492e-06,2.374677027530579845e-06,2.473621903677687197e-06,2.572566779824794549e-06,2.671511655971901902e-06,2.770456532119009254e-06,2.869401408266116607e-06,2.968346284413223959e-06,3.067291160560331311e-06,3.166236036707438664e-06,3.265180912854546016e-06,3.364125789001653368e-06,3.463070665148760721e-06,3.562015541295868073e-06,3.660960417442975425e-06,3.759905293590082778e-06,3.858850169737190130e-06,3.957795045884297483e-06,4.056739922031404835e-06,4.155684798178512187e-06,4.254629674325619540e-06,4.353574550472726892e-06,4.452519426619834244e-06,4.551464302766941597e-06,4.650409178914048949e-06,4.749354055061156301e-06,4.848298931208263654e-06,4.947243807355371006e-06,5.046188683502478358e-06,5.145133559649585711e-06,5.244078435796693063e-06,5.343023311943800416e-06,5.441968188090907768e-06,5.540913064238015120e-06,5.639857940385122473e-06,5.738802816532229825e-06,5.837747692679337177e-06,5.936692568826444530e-06,6.035637444973551882e-06,6.134582321120659234e-06,6.233527197267766587e-06 +0.000000000000000000e+00,1.028593537508306689e-07,2.057187075016613377e-07,3.085780612524919801e-07,4.114374150033226225e-07,5.142967687541532649e-07,6.171561225049839603e-07,7.200154762558146556e-07,8.228748300066453510e-07,9.257341837574760463e-07,1.028593537508306742e-06,1.131452891259137437e-06,1.234312245009968132e-06,1.337171598760798828e-06,1.440030952511629523e-06,1.542890306262460218e-06,1.645749660013290914e-06,1.748609013764121609e-06,1.851468367514952304e-06,1.954327721265783000e-06,2.057187075016613907e-06,2.160046428767444814e-06,2.262905782518275721e-06,2.365765136269106628e-06,2.468624490019937535e-06,2.571483843770768442e-06,2.674343197521599349e-06,2.777202551272430256e-06,2.880061905023261164e-06,2.982921258774092071e-06,3.085780612524922978e-06,3.188639966275753885e-06,3.291499320026584792e-06,3.394358673777415699e-06,3.497218027528246606e-06,3.600077381279077513e-06,3.702936735029908420e-06,3.805796088780739327e-06,3.908655442531570235e-06,4.011514796282401142e-06,4.114374150033232049e-06,4.217233503784062956e-06,4.320092857534893863e-06,4.422952211285724770e-06,4.525811565036555677e-06,4.628670918787386584e-06,4.731530272538217491e-06,4.834389626289048398e-06,4.937248980039879306e-06,5.040108333790710213e-06,5.142967687541541120e-06,5.245827041292372027e-06,5.348686395043202934e-06,5.451545748794033841e-06,5.554405102544864748e-06,5.657264456295695655e-06,5.760123810046526562e-06,5.862983163797357469e-06,5.965842517548188376e-06,6.068701871299019284e-06,6.171561225049850191e-06,6.274420578800681098e-06,6.377279932551512005e-06,6.480139286302342912e-06 +0.000000000000000000e+00,1.030573706073006266e-07,2.061147412146012531e-07,3.091721118219018929e-07,4.122294824292025592e-07,5.152868530365032255e-07,6.183442236438038918e-07,7.214015942511045580e-07,8.244589648584052243e-07,9.275163354657058906e-07,1.030573706073006663e-06,1.133631076680307329e-06,1.236688447287607995e-06,1.339745817894908662e-06,1.442803188502209328e-06,1.545860559109509994e-06,1.648917929716810660e-06,1.751975300324111327e-06,1.855032670931411993e-06,1.958090041538712659e-06,2.061147412146013326e-06,2.164204782753313992e-06,2.267262153360614658e-06,2.370319523967915324e-06,2.473376894575215991e-06,2.576434265182516657e-06,2.679491635789817323e-06,2.782549006397117989e-06,2.885606377004418656e-06,2.988663747611719322e-06,3.091721118219019988e-06,3.194778488826320655e-06,3.297835859433621321e-06,3.400893230040921987e-06,3.503950600648222653e-06,3.607007971255523320e-06,3.710065341862823986e-06,3.813122712470124652e-06,3.916180083077425318e-06,4.019237453684725985e-06,4.122294824292026651e-06,4.225352194899327317e-06,4.328409565506627984e-06,4.431466936113928650e-06,4.534524306721229316e-06,4.637581677328529982e-06,4.740639047935830649e-06,4.843696418543131315e-06,4.946753789150431981e-06,5.049811159757732647e-06,5.152868530365033314e-06,5.255925900972333980e-06,5.358983271579634646e-06,5.462040642186935313e-06,5.565098012794235979e-06,5.668155383401536645e-06,5.771212754008837311e-06,5.874270124616137978e-06,5.977327495223438644e-06,6.080384865830739310e-06,6.183442236438039977e-06,6.286499607045340643e-06,6.389556977652641309e-06,6.492614348259941975e-06 +0.000000000000000000e+00,9.951038358244065516e-08,1.990207671648813103e-07,2.985311507473219787e-07,3.980415343297626736e-07,4.975519179122033155e-07,5.970623014946439575e-07,6.965726850770845994e-07,7.960830686595252413e-07,8.955934522419658832e-07,9.951038358244066311e-07,1.094614219406847379e-06,1.194124602989288127e-06,1.293634986571728874e-06,1.393145370154169622e-06,1.492655753736610370e-06,1.592166137319051118e-06,1.691676520901491866e-06,1.791186904483932614e-06,1.890697288066373361e-06,1.990207671648814109e-06,2.089718055231254857e-06,2.189228438813695605e-06,2.288738822396136353e-06,2.388249205978577100e-06,2.487759589561017848e-06,2.587269973143458596e-06,2.686780356725899344e-06,2.786290740308340092e-06,2.885801123890780839e-06,2.985311507473221587e-06,3.084821891055662335e-06,3.184332274638103083e-06,3.283842658220543831e-06,3.383353041802984578e-06,3.482863425385425326e-06,3.582373808967866074e-06,3.681884192550306822e-06,3.781394576132747570e-06,3.880904959715188318e-06,3.980415343297629065e-06,4.079925726880069813e-06,4.179436110462510561e-06,4.278946494044951309e-06,4.378456877627392057e-06,4.477967261209832804e-06,4.577477644792273552e-06,4.676988028374714300e-06,4.776498411957155048e-06,4.876008795539595796e-06,4.975519179122036543e-06,5.075029562704477291e-06,5.174539946286918039e-06,5.274050329869358787e-06,5.373560713451799535e-06,5.473071097034240282e-06,5.572581480616681030e-06,5.672091864199121778e-06,5.771602247781562526e-06,5.871112631364003274e-06,5.970623014946444022e-06,6.070133398528884769e-06,6.169643782111325517e-06,6.269154165693766265e-06 +0.000000000000000000e+00,9.930312212405794603e-08,1.986062442481158921e-07,2.979093663721738116e-07,3.972124884962317312e-07,4.965156106202896507e-07,5.958187327443476232e-07,6.951218548684055957e-07,7.944249769924635682e-07,8.937280991165215407e-07,9.930312212405795132e-07,1.092334343364637380e-06,1.191637465488695246e-06,1.290940587612753113e-06,1.390243709736810980e-06,1.489546831860868846e-06,1.588849953984926713e-06,1.688153076108984580e-06,1.787456198233042446e-06,1.886759320357100313e-06,1.986062442481158179e-06,2.085365564605216046e-06,2.184668686729273913e-06,2.283971808853331779e-06,2.383274930977389646e-06,2.482578053101447512e-06,2.581881175225505379e-06,2.681184297349563246e-06,2.780487419473621112e-06,2.879790541597678979e-06,2.979093663721736846e-06,3.078396785845794712e-06,3.177699907969852579e-06,3.277003030093910445e-06,3.376306152217968312e-06,3.475609274342026179e-06,3.574912396466084045e-06,3.674215518590141912e-06,3.773518640714199778e-06,3.872821762838257222e-06,3.972124884962314665e-06,4.071428007086372108e-06,4.170731129210429551e-06,4.270034251334486994e-06,4.369337373458544437e-06,4.468640495582601880e-06,4.567943617706659323e-06,4.667246739830716766e-06,4.766549861954774209e-06,4.865852984078831653e-06,4.965156106202889096e-06,5.064459228326946539e-06,5.163762350451003982e-06,5.263065472575061425e-06,5.362368594699118868e-06,5.461671716823176311e-06,5.560974838947233754e-06,5.660277961071291197e-06,5.759581083195348640e-06,5.858884205319406084e-06,5.958187327443463527e-06,6.057490449567520970e-06,6.156793571691578413e-06,6.256096693815635856e-06 +0.000000000000000000e+00,9.568387123288819526e-08,1.913677424657763905e-07,2.870516136986645858e-07,3.827354849315527810e-07,4.784193561644409234e-07,5.741032273973290657e-07,6.697870986302172080e-07,7.654709698631053503e-07,8.611548410959934927e-07,9.568387123288816350e-07,1.052522583561769777e-06,1.148206454794657920e-06,1.243890326027546062e-06,1.339574197260434204e-06,1.435258068493322347e-06,1.530941939726210489e-06,1.626625810959098631e-06,1.722309682191986774e-06,1.817993553424874916e-06,1.913677424657762846e-06,2.009361295890650565e-06,2.105045167123538284e-06,2.200729038356426003e-06,2.296412909589313722e-06,2.392096780822201440e-06,2.487780652055089159e-06,2.583464523287976878e-06,2.679148394520864597e-06,2.774832265753752316e-06,2.870516136986640034e-06,2.966200008219527753e-06,3.061883879452415472e-06,3.157567750685303191e-06,3.253251621918190910e-06,3.348935493151078629e-06,3.444619364383966347e-06,3.540303235616854066e-06,3.635987106849741785e-06,3.731670978082629504e-06,3.827354849315517223e-06,3.923038720548404941e-06,4.018722591781292660e-06,4.114406463014180379e-06,4.210090334247068098e-06,4.305774205479955817e-06,4.401458076712843535e-06,4.497141947945731254e-06,4.592825819178618973e-06,4.688509690411506692e-06,4.784193561644394411e-06,4.879877432877282129e-06,4.975561304110169848e-06,5.071245175343057567e-06,5.166929046575945286e-06,5.262612917808833005e-06,5.358296789041720723e-06,5.453980660274608442e-06,5.549664531507496161e-06,5.645348402740383880e-06,5.741032273973271599e-06,5.836716145206159317e-06,5.932400016439047036e-06,6.028083887671934755e-06 +0.000000000000000000e+00,1.030091233241178610e-07,2.060182466482357220e-07,3.090273699723535830e-07,4.120364932964714439e-07,5.150456166205893049e-07,6.180547399447071659e-07,7.210638632688250269e-07,8.240729865929428879e-07,9.270821099170607489e-07,1.030091233241178610e-06,1.133100356565296471e-06,1.236109479889414332e-06,1.339118603213532193e-06,1.442127726537650054e-06,1.545136849861767915e-06,1.648145973185885776e-06,1.751155096510003637e-06,1.854164219834121498e-06,1.957173343158239359e-06,2.060182466482357220e-06,2.163191589806475081e-06,2.266200713130592942e-06,2.369209836454710803e-06,2.472218959778828664e-06,2.575228083102946525e-06,2.678237206427064386e-06,2.781246329751182247e-06,2.884255453075300108e-06,2.987264576399417969e-06,3.090273699723535830e-06,3.193282823047653691e-06,3.296291946371771552e-06,3.399301069695889413e-06,3.502310193020007273e-06,3.605319316344125134e-06,3.708328439668242995e-06,3.811337562992360856e-06,3.914346686316478717e-06,4.017355809640596578e-06,4.120364932964714439e-06,4.223374056288832300e-06,4.326383179612950161e-06,4.429392302937068022e-06,4.532401426261185883e-06,4.635410549585303744e-06,4.738419672909421605e-06,4.841428796233539466e-06,4.944437919557657327e-06,5.047447042881775188e-06,5.150456166205893049e-06,5.253465289530010910e-06,5.356474412854128771e-06,5.459483536178246632e-06,5.562492659502364493e-06,5.665501782826482354e-06,5.768510906150600215e-06,5.871520029474718076e-06,5.974529152798835937e-06,6.077538276122953798e-06,6.180547399447071659e-06,6.283556522771189520e-06,6.386565646095307381e-06,6.489574769419425242e-06 +0.000000000000000000e+00,9.950854658415244926e-08,1.990170931683048985e-07,2.985256397524573478e-07,3.980341863366097970e-07,4.975427329207621933e-07,5.970512795049145897e-07,6.965598260890669860e-07,7.960683726732193823e-07,8.955769192573717786e-07,9.950854658415241749e-07,1.094594012425676571e-06,1.194102559009828968e-06,1.293611105593981364e-06,1.393119652178133760e-06,1.492628198762286156e-06,1.592136745346438553e-06,1.691645291930590949e-06,1.791153838514743345e-06,1.890662385098895742e-06,1.990170931683047926e-06,2.089679478267199899e-06,2.189188024851351872e-06,2.288696571435503845e-06,2.388205118019655818e-06,2.487713664603807790e-06,2.587222211187959763e-06,2.686730757772111736e-06,2.786239304356263709e-06,2.885747850940415682e-06,2.985256397524567654e-06,3.084764944108719627e-06,3.184273490692871600e-06,3.283782037277023573e-06,3.383290583861175546e-06,3.482799130445327518e-06,3.582307677029479491e-06,3.681816223613631464e-06,3.781324770197783437e-06,3.880833316781935409e-06,3.980341863366087382e-06,4.079850409950239355e-06,4.179358956534391328e-06,4.278867503118543301e-06,4.378376049702695273e-06,4.477884596286847246e-06,4.577393142870999219e-06,4.676901689455151192e-06,4.776410236039303165e-06,4.875918782623455137e-06,4.975427329207607110e-06,5.074935875791759083e-06,5.174444422375911056e-06,5.273952968960063029e-06,5.373461515544215001e-06,5.472970062128366974e-06,5.572478608712518947e-06,5.671987155296670920e-06,5.771495701880822893e-06,5.871004248464974865e-06,5.970512795049126838e-06,6.070021341633278811e-06,6.169529888217430784e-06,6.269038434801582757e-06 +0.000000000000000000e+00,9.894487614710539360e-08,1.978897522942107872e-07,2.968346284413161808e-07,3.957795045884215744e-07,4.947243807355270209e-07,5.936692568826324675e-07,6.926141330297379140e-07,7.915590091768433605e-07,8.905038853239488071e-07,9.894487614710542536e-07,1.088393637618159700e-06,1.187338513765265147e-06,1.286283389912370593e-06,1.385228266059476040e-06,1.484173142206581486e-06,1.583118018353686933e-06,1.682062894500792379e-06,1.781007770647897826e-06,1.879952646795003272e-06,1.978897522942108931e-06,2.077842399089214589e-06,2.176787275236320247e-06,2.275732151383425906e-06,2.374677027530531564e-06,2.473621903677637222e-06,2.572566779824742880e-06,2.671511655971848539e-06,2.770456532118954197e-06,2.869401408266059855e-06,2.968346284413165514e-06,3.067291160560271172e-06,3.166236036707376830e-06,3.265180912854482489e-06,3.364125789001588147e-06,3.463070665148693805e-06,3.562015541295799463e-06,3.660960417442905122e-06,3.759905293590010780e-06,3.858850169737116438e-06,3.957795045884222097e-06,4.056739922031327755e-06,4.155684798178433413e-06,4.254629674325539071e-06,4.353574550472644730e-06,4.452519426619750388e-06,4.551464302766856046e-06,4.650409178913961705e-06,4.749354055061067363e-06,4.848298931208173021e-06,4.947243807355278680e-06,5.046188683502384338e-06,5.145133559649489996e-06,5.244078435796595654e-06,5.343023311943701313e-06,5.441968188090806971e-06,5.540913064237912629e-06,5.639857940385018288e-06,5.738802816532123946e-06,5.837747692679229604e-06,5.936692568826335262e-06,6.035637444973440921e-06,6.134582321120546579e-06,6.233527197267652237e-06 +0.000000000000000000e+00,1.028593537508295704e-07,2.057187075016591407e-07,3.085780612524886979e-07,4.114374150033182286e-07,5.142967687541477592e-07,6.171561225049772899e-07,7.200154762558068206e-07,8.228748300066363512e-07,9.257341837574658819e-07,1.028593537508295518e-06,1.131452891259125155e-06,1.234312245009954792e-06,1.337171598760784428e-06,1.440030952511614065e-06,1.542890306262443701e-06,1.645749660013273338e-06,1.748609013764102974e-06,1.851468367514932611e-06,1.954327721265762247e-06,2.057187075016591884e-06,2.160046428767421520e-06,2.262905782518251157e-06,2.365765136269080794e-06,2.468624490019910430e-06,2.571483843770740067e-06,2.674343197521569703e-06,2.777202551272399340e-06,2.880061905023228976e-06,2.982921258774058613e-06,3.085780612524888249e-06,3.188639966275717886e-06,3.291499320026547523e-06,3.394358673777377159e-06,3.497218027528206796e-06,3.600077381279036432e-06,3.702936735029866069e-06,3.805796088780695705e-06,3.908655442531525342e-06,4.011514796282355402e-06,4.114374150033185462e-06,4.217233503784015522e-06,4.320092857534845582e-06,4.422952211285675642e-06,4.525811565036505702e-06,4.628670918787335762e-06,4.731530272538165822e-06,4.834389626288995882e-06,4.937248980039825942e-06,5.040108333790656003e-06,5.142967687541486063e-06,5.245827041292316123e-06,5.348686395043146183e-06,5.451545748793976243e-06,5.554405102544806303e-06,5.657264456295636363e-06,5.760123810046466423e-06,5.862983163797296483e-06,5.965842517548126543e-06,6.068701871298956603e-06,6.171561225049786663e-06,6.274420578800616723e-06,6.377279932551446783e-06,6.480139286302276843e-06 +0.000000000000000000e+00,1.030091233241170801e-07,2.060182466482341603e-07,3.090273699723512536e-07,4.120364932964683734e-07,5.150456166205854933e-07,6.180547399447026131e-07,7.210638632688197329e-07,8.240729865929368528e-07,9.270821099170539726e-07,1.030091233241170987e-06,1.133100356565288001e-06,1.236109479889405014e-06,1.339118603213522028e-06,1.442127726537639042e-06,1.545136849861756056e-06,1.648145973185873070e-06,1.751155096509990084e-06,1.854164219834107098e-06,1.957173343158224112e-06,2.060182466482341126e-06,2.163191589806458140e-06,2.266200713130575154e-06,2.369209836454692168e-06,2.472218959778809182e-06,2.575228083102926196e-06,2.678237206427043210e-06,2.781246329751160224e-06,2.884255453075277238e-06,2.987264576399394252e-06,3.090273699723511266e-06,3.193282823047628280e-06,3.296291946371745294e-06,3.399301069695862307e-06,3.502310193019979321e-06,3.605319316344096335e-06,3.708328439668213349e-06,3.811337562992330363e-06,3.914346686316447377e-06,4.017355809640564391e-06,4.120364932964681405e-06,4.223374056288798419e-06,4.326383179612915433e-06,4.429392302937032447e-06,4.532401426261149461e-06,4.635410549585266475e-06,4.738419672909383489e-06,4.841428796233500503e-06,4.944437919557617517e-06,5.047447042881734531e-06,5.150456166205851545e-06,5.253465289529968559e-06,5.356474412854085573e-06,5.459483536178202587e-06,5.562492659502319600e-06,5.665501782826436614e-06,5.768510906150553628e-06,5.871520029474670642e-06,5.974529152798787656e-06,6.077538276122904670e-06,6.180547399447021684e-06,6.283556522771138698e-06,6.386565646095255712e-06,6.489574769419372726e-06 +0.000000000000000000e+00,9.951038358243982137e-08,1.990207671648796427e-07,2.985311507473194906e-07,3.980415343297593384e-07,4.975519179121991862e-07,5.970623014946389811e-07,6.965726850770787760e-07,7.960830686595185709e-07,8.955934522419583658e-07,9.951038358243981607e-07,1.094614219406838062e-06,1.194124602989277962e-06,1.293634986571717863e-06,1.393145370154157764e-06,1.492655753736597665e-06,1.592166137319037565e-06,1.691676520901477466e-06,1.791186904483917367e-06,1.890697288066357268e-06,1.990207671648797168e-06,2.089718055231237069e-06,2.189228438813676970e-06,2.288738822396116871e-06,2.388249205978556772e-06,2.487759589560996672e-06,2.587269973143436573e-06,2.686780356725876474e-06,2.786290740308316375e-06,2.885801123890756275e-06,2.985311507473196176e-06,3.084821891055636077e-06,3.184332274638075978e-06,3.283842658220515879e-06,3.383353041802955779e-06,3.482863425385395680e-06,3.582373808967835581e-06,3.681884192550275482e-06,3.781394576132715382e-06,3.880904959715155283e-06,3.980415343297595184e-06,4.079925726880035085e-06,4.179436110462474986e-06,4.278946494044914886e-06,4.378456877627354787e-06,4.477967261209794688e-06,4.577477644792234589e-06,4.676988028374674489e-06,4.776498411957114390e-06,4.876008795539554291e-06,4.975519179121994192e-06,5.075029562704434093e-06,5.174539946286873993e-06,5.274050329869313894e-06,5.373560713451753795e-06,5.473071097034193696e-06,5.572581480616633596e-06,5.672091864199073497e-06,5.771602247781513398e-06,5.871112631363953299e-06,5.970623014946393200e-06,6.070133398528833100e-06,6.169643782111273001e-06,6.269154165693712902e-06 +0.000000000000000000e+00,9.930312212405862101e-08,1.986062442481172420e-07,2.979093663721758763e-07,3.972124884962345370e-07,4.965156106202931447e-07,5.958187327443517525e-07,6.951218548684103603e-07,7.944249769924689680e-07,8.937280991165275758e-07,9.930312212405862895e-07,1.092334343364645003e-06,1.191637465488703717e-06,1.290940587612762430e-06,1.390243709736821144e-06,1.489546831860879858e-06,1.588849953984938571e-06,1.688153076108997285e-06,1.787456198233055999e-06,1.886759320357114712e-06,1.986062442481173426e-06,2.085365564605232140e-06,2.184668686729290853e-06,2.283971808853349567e-06,2.383274930977408281e-06,2.482578053101466994e-06,2.581881175225525708e-06,2.681184297349584422e-06,2.780487419473643135e-06,2.879790541597701849e-06,2.979093663721760562e-06,3.078396785845819276e-06,3.177699907969877990e-06,3.277003030093936703e-06,3.376306152217995417e-06,3.475609274342054131e-06,3.574912396466112844e-06,3.674215518590171558e-06,3.773518640714230272e-06,3.872821762838289409e-06,3.972124884962348546e-06,4.071428007086407683e-06,4.170731129210466820e-06,4.270034251334525957e-06,4.369337373458585095e-06,4.468640495582644232e-06,4.567943617706703369e-06,4.667246739830762506e-06,4.766549861954821643e-06,4.865852984078880780e-06,4.965156106202939918e-06,5.064459228326999055e-06,5.163762350451058192e-06,5.263065472575117329e-06,5.362368594699176466e-06,5.461671716823235603e-06,5.560974838947294741e-06,5.660277961071353878e-06,5.759581083195413015e-06,5.858884205319472152e-06,5.958187327443531289e-06,6.057490449567590426e-06,6.156793571691649564e-06,6.256096693815708701e-06 +0.000000000000000000e+00,9.568387123288789086e-08,1.913677424657757817e-07,2.870516136986636858e-07,3.827354849315516164e-07,4.784193561644395469e-07,5.741032273973274775e-07,6.697870986302154081e-07,7.654709698631033386e-07,8.611548410959912692e-07,9.568387123288793056e-07,1.052522583561767448e-06,1.148206454794655590e-06,1.243890326027543733e-06,1.339574197260431875e-06,1.435258068493320017e-06,1.530941939726208160e-06,1.626625810959096302e-06,1.722309682191984444e-06,1.817993553424872587e-06,1.913677424657760729e-06,2.009361295890648871e-06,2.105045167123537013e-06,2.200729038356425156e-06,2.296412909589313298e-06,2.392096780822201440e-06,2.487780652055089583e-06,2.583464523287977725e-06,2.679148394520865867e-06,2.774832265753754010e-06,2.870516136986642152e-06,2.966200008219530294e-06,3.061883879452418437e-06,3.157567750685306579e-06,3.253251621918194721e-06,3.348935493151082864e-06,3.444619364383971006e-06,3.540303235616859148e-06,3.635987106849747291e-06,3.731670978082635433e-06,3.827354849315523999e-06,3.923038720548412565e-06,4.018722591781301130e-06,4.114406463014189696e-06,4.210090334247078262e-06,4.305774205479966828e-06,4.401458076712855394e-06,4.497141947945743960e-06,4.592825819178632525e-06,4.688509690411521091e-06,4.784193561644409657e-06,4.879877432877298223e-06,4.975561304110186789e-06,5.071245175343075355e-06,5.166929046575963921e-06,5.262612917808852486e-06,5.358296789041741052e-06,5.453980660274629618e-06,5.549664531507518184e-06,5.645348402740406750e-06,5.741032273973295316e-06,5.836716145206183881e-06,5.932400016439072447e-06,6.028083887671961013e-06 +0.000000000000000000e+00,1.005760313230333985e-07,2.011520626460667970e-07,3.017280939691001956e-07,4.023041252921335941e-07,5.028801566151669926e-07,6.034561879382003911e-07,7.040322192612337897e-07,8.046082505842671882e-07,9.051842819073005867e-07,1.005760313230333985e-06,1.106336344553367490e-06,1.206912375876400994e-06,1.307488407199434498e-06,1.408064438522468003e-06,1.508640469845501507e-06,1.609216501168535012e-06,1.709792532491568516e-06,1.810368563814602020e-06,1.910944595137635525e-06,2.011520626460669241e-06,2.112096657783702957e-06,2.212672689106736673e-06,2.313248720429770389e-06,2.413824751752804106e-06,2.514400783075837822e-06,2.614976814398871538e-06,2.715552845721905254e-06,2.816128877044938970e-06,2.916704908367972686e-06,3.017280939691006403e-06,3.117856971014040119e-06,3.218433002337073835e-06,3.319009033660107551e-06,3.419585064983141267e-06,3.520161096306174983e-06,3.620737127629208700e-06,3.721313158952242416e-06,3.821889190275276132e-06,3.922465221598309425e-06,4.023041252921342717e-06,4.123617284244376010e-06,4.224193315567409302e-06,4.324769346890442595e-06,4.425345378213475888e-06,4.525921409536509180e-06,4.626497440859542473e-06,4.727073472182575766e-06,4.827649503505609058e-06,4.928225534828642351e-06,5.028801566151675644e-06,5.129377597474708936e-06,5.229953628797742229e-06,5.330529660120775522e-06,5.431105691443808814e-06,5.531681722766842107e-06,5.632257754089875399e-06,5.732833785412908692e-06,5.833409816735941985e-06,5.933985848058975277e-06,6.034561879382008570e-06,6.135137910705041863e-06,6.235713942028075155e-06,6.336289973351108448e-06 +0.000000000000000000e+00,9.949745230273417380e-08,1.989949046054683476e-07,2.984923569082025346e-07,3.979898092109367482e-07,4.974872615136710146e-07,5.969847138164052811e-07,6.964821661191395475e-07,7.959796184218738140e-07,8.954770707246080804e-07,9.949745230273424527e-07,1.094471975330076825e-06,1.193969427632811197e-06,1.293466879935545570e-06,1.392964332238279942e-06,1.492461784541014314e-06,1.591959236843748687e-06,1.691456689146483059e-06,1.790954141449217431e-06,1.890451593751951804e-06,1.989949046054686176e-06,2.089446498357420548e-06,2.188943950660154921e-06,2.288441402962889293e-06,2.387938855265623665e-06,2.487436307568358038e-06,2.586933759871092410e-06,2.686431212173826782e-06,2.785928664476561155e-06,2.885426116779295527e-06,2.984923569082029899e-06,3.084421021384764272e-06,3.183918473687498644e-06,3.283415925990233016e-06,3.382913378292967389e-06,3.482410830595701761e-06,3.581908282898436133e-06,3.681405735201170506e-06,3.780903187503904878e-06,3.880400639806639250e-06,3.979898092109373199e-06,4.079395544412107148e-06,4.178892996714841097e-06,4.278390449017575045e-06,4.377887901320308994e-06,4.477385353623042943e-06,4.576882805925776892e-06,4.676380258228510841e-06,4.775877710531244790e-06,4.875375162833978738e-06,4.974872615136712687e-06,5.074370067439446636e-06,5.173867519742180585e-06,5.273364972044914534e-06,5.372862424347648482e-06,5.472359876650382431e-06,5.571857328953116380e-06,5.671354781255850329e-06,5.770852233558584278e-06,5.870349685861318226e-06,5.969847138164052175e-06,6.069344590466786124e-06,6.168842042769520073e-06,6.268339495072254022e-06 +0.000000000000000000e+00,9.692704931971099516e-08,1.938540986394219903e-07,2.907811479591329855e-07,3.877081972788439806e-07,4.846352465985549229e-07,5.815622959182658651e-07,6.784893452379768073e-07,7.754163945576877495e-07,8.723434438773986918e-07,9.692704931971096340e-07,1.066197542516820576e-06,1.163124591836531518e-06,1.260051641156242461e-06,1.356978690475953403e-06,1.453905739795664345e-06,1.550832789115375287e-06,1.647759838435086230e-06,1.744686887754797172e-06,1.841613937074508114e-06,1.938540986394218844e-06,2.035468035713929787e-06,2.132395085033640729e-06,2.229322134353351671e-06,2.326249183673062613e-06,2.423176232992773556e-06,2.520103282312484498e-06,2.617030331632195440e-06,2.713957380951906382e-06,2.810884430271617324e-06,2.907811479591328267e-06,3.004738528911039209e-06,3.101665578230750151e-06,3.198592627550461093e-06,3.295519676870172036e-06,3.392446726189882978e-06,3.489373775509593920e-06,3.586300824829304862e-06,3.683227874149015804e-06,3.780154923468726747e-06,3.877081972788437689e-06,3.974009022108148631e-06,4.070936071427859573e-06,4.167863120747570516e-06,4.264790170067281458e-06,4.361717219386992400e-06,4.458644268706703342e-06,4.555571318026414284e-06,4.652498367346125227e-06,4.749425416665836169e-06,4.846352465985547111e-06,4.943279515305258053e-06,5.040206564624968996e-06,5.137133613944679938e-06,5.234060663264390880e-06,5.330987712584101822e-06,5.427914761903812764e-06,5.524841811223523707e-06,5.621768860543234649e-06,5.718695909862945591e-06,5.815622959182656533e-06,5.912550008502367476e-06,6.009477057822078418e-06,6.106404107141789360e-06 +0.000000000000000000e+00,1.005760313230295472e-07,2.011520626460590943e-07,3.017280939690886547e-07,4.023041252921182416e-07,5.028801566151478285e-07,6.034561879381774154e-07,7.040322192612070022e-07,8.046082505842365891e-07,9.051842819072661760e-07,1.005760313230295657e-06,1.106336344553325138e-06,1.206912375876354619e-06,1.307488407199384100e-06,1.408064438522413581e-06,1.508640469845443062e-06,1.609216501168472543e-06,1.709792532491502024e-06,1.810368563814531505e-06,1.910944595137560986e-06,2.011520626460590467e-06,2.112096657783619948e-06,2.212672689106649429e-06,2.313248720429678910e-06,2.413824751752708391e-06,2.514400783075737872e-06,2.614976814398767353e-06,2.715552845721796834e-06,2.816128877044826315e-06,2.916704908367855796e-06,3.017280939690885277e-06,3.117856971013914758e-06,3.218433002336944239e-06,3.319009033659973720e-06,3.419585064983003201e-06,3.520161096306032682e-06,3.620737127629062163e-06,3.721313158952091644e-06,3.821889190275121125e-06,3.922465221598150182e-06,4.023041252921179240e-06,4.123617284244208297e-06,4.224193315567237355e-06,4.324769346890266412e-06,4.425345378213295470e-06,4.525921409536324527e-06,4.626497440859353585e-06,4.727073472182382642e-06,4.827649503505411700e-06,4.928225534828440757e-06,5.028801566151469815e-06,5.129377597474498872e-06,5.229953628797527930e-06,5.330529660120556987e-06,5.431105691443586044e-06,5.531681722766615102e-06,5.632257754089644159e-06,5.732833785412673217e-06,5.833409816735702274e-06,5.933985848058731332e-06,6.034561879381760389e-06,6.135137910704789447e-06,6.235713942027818504e-06,6.336289973350847562e-06 +0.000000000000000000e+00,9.949745230273152683e-08,1.989949046054630537e-07,2.984923569081945937e-07,3.979898092109261602e-07,4.974872615136576738e-07,5.969847138163891874e-07,6.964821661191207010e-07,7.959796184218522146e-07,8.954770707245837282e-07,9.949745230273153477e-07,1.094471975330046967e-06,1.193969427632778587e-06,1.293466879935510206e-06,1.392964332238241826e-06,1.492461784540973445e-06,1.591959236843705064e-06,1.691456689146436684e-06,1.790954141449168303e-06,1.890451593751899923e-06,1.989949046054631542e-06,2.089446498357362950e-06,2.188943950660094358e-06,2.288441402962825766e-06,2.387938855265557173e-06,2.487436307568288581e-06,2.586933759871019989e-06,2.686431212173751396e-06,2.785928664476482804e-06,2.885426116779214212e-06,2.984923569081945620e-06,3.084421021384677027e-06,3.183918473687408435e-06,3.283415925990139843e-06,3.382913378292871250e-06,3.482410830595602658e-06,3.581908282898334066e-06,3.681405735201065473e-06,3.780903187503796881e-06,3.880400639806528289e-06,3.979898092109259697e-06,4.079395544411991104e-06,4.178892996714722512e-06,4.278390449017453920e-06,4.377887901320185327e-06,4.477385353622916735e-06,4.576882805925648143e-06,4.676380258228379551e-06,4.775877710531110958e-06,4.875375162833842366e-06,4.974872615136573774e-06,5.074370067439305181e-06,5.173867519742036589e-06,5.273364972044767997e-06,5.372862424347499405e-06,5.472359876650230812e-06,5.571857328952962220e-06,5.671354781255693628e-06,5.770852233558425035e-06,5.870349685861156443e-06,5.969847138163887851e-06,6.069344590466619259e-06,6.168842042769350666e-06,6.268339495072082074e-06 +0.000000000000000000e+00,9.692704931970936727e-08,1.938540986394187345e-07,2.907811479591281150e-07,3.877081972788375220e-07,4.846352465985468761e-07,5.815622959182562301e-07,6.784893452379655841e-07,7.754163945576749382e-07,8.723434438773842922e-07,9.692704931970937521e-07,1.066197542516803212e-06,1.163124591836512672e-06,1.260051641156222132e-06,1.356978690475931592e-06,1.453905739795641052e-06,1.550832789115350512e-06,1.647759838435059972e-06,1.744686887754769431e-06,1.841613937074478891e-06,1.938540986394188351e-06,2.035468035713897599e-06,2.132395085033606848e-06,2.229322134353316096e-06,2.326249183673025344e-06,2.423176232992734592e-06,2.520103282312443840e-06,2.617030331632153088e-06,2.713957380951862337e-06,2.810884430271571585e-06,2.907811479591280833e-06,3.004738528910990081e-06,3.101665578230699329e-06,3.198592627550408577e-06,3.295519676870117825e-06,3.392446726189827074e-06,3.489373775509536322e-06,3.586300824829245570e-06,3.683227874148954818e-06,3.780154923468664066e-06,3.877081972788373314e-06,3.974009022108082563e-06,4.070936071427791811e-06,4.167863120747501059e-06,4.264790170067210307e-06,4.361717219386919555e-06,4.458644268706628803e-06,4.555571318026338052e-06,4.652498367346047300e-06,4.749425416665756548e-06,4.846352465985465796e-06,4.943279515305175044e-06,5.040206564624884292e-06,5.137133613944593540e-06,5.234060663264302789e-06,5.330987712584012037e-06,5.427914761903721285e-06,5.524841811223430533e-06,5.621768860543139781e-06,5.718695909862849029e-06,5.815622959182558278e-06,5.912550008502267526e-06,6.009477057821976774e-06,6.106404107141686022e-06 +0.000000000000000000e+00,1.034608652599283677e-07,2.069217305198567353e-07,3.103825957797850898e-07,4.138434610397134178e-07,5.173043262996417457e-07,6.207651915595700737e-07,7.242260568194984017e-07,8.276869220794267296e-07,9.311477873393550576e-07,1.034608652599283280e-06,1.138069517859211608e-06,1.241530383119139936e-06,1.344991248379068264e-06,1.448452113638996592e-06,1.551912978898924920e-06,1.655373844158853247e-06,1.758834709418781575e-06,1.862295574678709903e-06,1.965756439938638231e-06,2.069217305198566559e-06,2.172678170458494887e-06,2.276139035718423215e-06,2.379599900978351543e-06,2.483060766238279871e-06,2.586521631498208199e-06,2.689982496758136527e-06,2.793443362018064855e-06,2.896904227277993183e-06,3.000365092537921511e-06,3.103825957797849839e-06,3.207286823057778167e-06,3.310747688317706495e-06,3.414208553577634823e-06,3.517669418837563151e-06,3.621130284097491479e-06,3.724591149357419807e-06,3.828052014617347711e-06,3.931512879877275616e-06,4.034973745137203520e-06,4.138434610397131425e-06,4.241895475657059329e-06,4.345356340916987234e-06,4.448817206176915138e-06,4.552278071436843042e-06,4.655738936696770947e-06,4.759199801956698851e-06,4.862660667216626756e-06,4.966121532476554660e-06,5.069582397736482565e-06,5.173043262996410469e-06,5.276504128256338374e-06,5.379964993516266278e-06,5.483425858776194183e-06,5.586886724036122087e-06,5.690347589296049991e-06,5.793808454555977896e-06,5.897269319815905800e-06,6.000730185075833705e-06,6.104191050335761609e-06,6.207651915595689514e-06,6.311112780855617418e-06,6.414573646115545323e-06,6.518034511375473227e-06 +0.000000000000000000e+00,1.019459394559162074e-07,2.038918789118324147e-07,3.058378183677486353e-07,4.077837578236648823e-07,5.097296972795811294e-07,6.116756367354973765e-07,7.136215761914136235e-07,8.155675156473298706e-07,9.175134551032461176e-07,1.019459394559162471e-06,1.121405334015078929e-06,1.223351273470995388e-06,1.325297212926911847e-06,1.427243152382828306e-06,1.529189091838744765e-06,1.631135031294661223e-06,1.733080970750577682e-06,1.835026910206494141e-06,1.936972849662410600e-06,2.038918789118327059e-06,2.140864728574243518e-06,2.242810668030159976e-06,2.344756607486076435e-06,2.446702546941992894e-06,2.548648486397909353e-06,2.650594425853825812e-06,2.752540365309742270e-06,2.854486304765658729e-06,2.956432244221575188e-06,3.058378183677491647e-06,3.160324123133408106e-06,3.262270062589324564e-06,3.364216002045241023e-06,3.466161941501157482e-06,3.568107880957073941e-06,3.670053820412990400e-06,3.771999759868906859e-06,3.873945699324822894e-06,3.975891638780738929e-06,4.077837578236654964e-06,4.179783517692571000e-06,4.281729457148487035e-06,4.383675396604403070e-06,4.485621336060319106e-06,4.587567275516235141e-06,4.689513214972151176e-06,4.791459154428067212e-06,4.893405093883983247e-06,4.995351033339899282e-06,5.097296972795815317e-06,5.199242912251731353e-06,5.301188851707647388e-06,5.403134791163563423e-06,5.505080730619479459e-06,5.607026670075395494e-06,5.708972609531311529e-06,5.810918548987227564e-06,5.912864488443143600e-06,6.014810427899059635e-06,6.116756367354975670e-06,6.218702306810891706e-06,6.320648246266807741e-06,6.422594185722723776e-06 +0.000000000000000000e+00,9.931185988834997122e-08,1.986237197766999424e-07,2.979355796650499137e-07,3.972474395533998849e-07,4.965592994417498032e-07,5.958711593300997215e-07,6.951830192184496397e-07,7.944948791067995580e-07,8.938067389951494763e-07,9.931185988834993946e-07,1.092430458771849313e-06,1.191742318660199231e-06,1.291054178548549149e-06,1.390366038436899068e-06,1.489677898325248986e-06,1.588989758213598904e-06,1.688301618101948823e-06,1.787613477990298741e-06,1.886925337878648659e-06,1.986237197766998366e-06,2.085549057655347860e-06,2.184860917543697355e-06,2.284172777432046850e-06,2.383484637320396345e-06,2.482796497208745839e-06,2.582108357097095334e-06,2.681420216985444829e-06,2.780732076873794324e-06,2.880043936762143819e-06,2.979355796650493313e-06,3.078667656538842808e-06,3.177979516427192303e-06,3.277291376315541798e-06,3.376603236203891292e-06,3.475915096092240787e-06,3.575226955980590282e-06,3.674538815868939777e-06,3.773850675757289271e-06,3.873162535645638766e-06,3.972474395533988261e-06,4.071786255422337756e-06,4.171098115310687251e-06,4.270409975199036745e-06,4.369721835087386240e-06,4.469033694975735735e-06,4.568345554864085230e-06,4.667657414752434724e-06,4.766969274640784219e-06,4.866281134529133714e-06,4.965592994417483209e-06,5.064904854305832703e-06,5.164216714194182198e-06,5.263528574082531693e-06,5.362840433970881188e-06,5.462152293859230682e-06,5.561464153747580177e-06,5.660776013635929672e-06,5.760087873524279167e-06,5.859399733412628662e-06,5.958711593300978156e-06,6.058023453189327651e-06,6.157335313077677146e-06,6.256647172966026641e-06 +0.000000000000000000e+00,1.034608652599236031e-07,2.069217305198472062e-07,3.103825957797707961e-07,4.138434610396943595e-07,5.173043262996179229e-07,6.207651915595414863e-07,7.242260568194650497e-07,8.276869220793886131e-07,9.311477873393121766e-07,1.034608652599235846e-06,1.138069517859159515e-06,1.241530383119083184e-06,1.344991248379006854e-06,1.448452113638930523e-06,1.551912978898854192e-06,1.655373844158777862e-06,1.758834709418701531e-06,1.862295574678625200e-06,1.965756439938548869e-06,2.069217305198472539e-06,2.172678170458396208e-06,2.276139035718319877e-06,2.379599900978243547e-06,2.483060766238167216e-06,2.586521631498090885e-06,2.689982496758014554e-06,2.793443362017938224e-06,2.896904227277861893e-06,3.000365092537785562e-06,3.103825957797709232e-06,3.207286823057632901e-06,3.310747688317556570e-06,3.414208553577480239e-06,3.517669418837403909e-06,3.621130284097327578e-06,3.724591149357251247e-06,3.828052014617174917e-06,3.931512879877098586e-06,4.034973745137022255e-06,4.138434610396945924e-06,4.241895475656869594e-06,4.345356340916793263e-06,4.448817206176716932e-06,4.552278071436640602e-06,4.655738936696564271e-06,4.759199801956487940e-06,4.862660667216411609e-06,4.966121532476335279e-06,5.069582397736258948e-06,5.173043262996182617e-06,5.276504128256106287e-06,5.379964993516029956e-06,5.483425858775953625e-06,5.586886724035877294e-06,5.690347589295800964e-06,5.793808454555724633e-06,5.897269319815648302e-06,6.000730185075571972e-06,6.104191050335495641e-06,6.207651915595419310e-06,6.311112780855342980e-06,6.414573646115266649e-06,6.518034511375190318e-06 +0.000000000000000000e+00,1.019459394559116545e-07,2.038918789118233091e-07,3.058378183677349769e-07,4.077837578236466711e-07,5.097296972795583654e-07,6.116756367354700596e-07,7.136215761913817539e-07,8.155675156472934482e-07,9.175134551032051424e-07,1.019459394559116731e-06,1.121405334015028319e-06,1.223351273470939908e-06,1.325297212926851496e-06,1.427243152382763084e-06,1.529189091838674673e-06,1.631135031294586261e-06,1.733080970750497849e-06,1.835026910206409438e-06,1.936972849662320814e-06,2.038918789118232191e-06,2.140864728574143568e-06,2.242810668030054944e-06,2.344756607485966321e-06,2.446702546941877697e-06,2.548648486397789074e-06,2.650594425853700451e-06,2.752540365309611827e-06,2.854486304765523204e-06,2.956432244221434581e-06,3.058378183677345957e-06,3.160324123133257334e-06,3.262270062589168710e-06,3.364216002045080087e-06,3.466161941500991464e-06,3.568107880956902840e-06,3.670053820412814217e-06,3.771999759868725593e-06,3.873945699324636547e-06,3.975891638780547500e-06,4.077837578236458453e-06,4.179783517692369406e-06,4.281729457148280359e-06,4.383675396604191312e-06,4.485621336060102265e-06,4.587567275516013218e-06,4.689513214971924171e-06,4.791459154427835124e-06,4.893405093883746078e-06,4.995351033339657031e-06,5.097296972795567984e-06,5.199242912251478937e-06,5.301188851707389890e-06,5.403134791163300843e-06,5.505080730619211796e-06,5.607026670075122749e-06,5.708972609531033702e-06,5.810918548986944655e-06,5.912864488442855609e-06,6.014810427898766562e-06,6.116756367354677515e-06,6.218702306810588468e-06,6.320648246266499421e-06,6.422594185722410374e-06 +0.000000000000000000e+00,9.931185988834666250e-08,1.986237197766933250e-07,2.979355796650400140e-07,3.972474395533867029e-07,4.965592994417333919e-07,5.958711593300800279e-07,6.951830192184266640e-07,7.944948791067733000e-07,8.938067389951199360e-07,9.931185988834665721e-07,1.092430458771813102e-06,1.191742318660159632e-06,1.291054178548506163e-06,1.390366038436852693e-06,1.489677898325199223e-06,1.588989758213545753e-06,1.688301618101892283e-06,1.787613477990238813e-06,1.886925337878585343e-06,1.986237197766931874e-06,2.085549057655278404e-06,2.184860917543624934e-06,2.284172777431971464e-06,2.383484637320317994e-06,2.482796497208664524e-06,2.582108357097011054e-06,2.681420216985357585e-06,2.780732076873704115e-06,2.880043936762050645e-06,2.979355796650397175e-06,3.078667656538743705e-06,3.177979516427090235e-06,3.277291376315436766e-06,3.376603236203783296e-06,3.475915096092129826e-06,3.575226955980476356e-06,3.674538815868822886e-06,3.773850675757169416e-06,3.873162535645515946e-06,3.972474395533862900e-06,4.071786255422209854e-06,4.171098115310556807e-06,4.270409975198903761e-06,4.369721835087250715e-06,4.469033694975597668e-06,4.568345554863944622e-06,4.667657414752291576e-06,4.766969274640638529e-06,4.866281134528985483e-06,4.965592994417332437e-06,5.064904854305679390e-06,5.164216714194026344e-06,5.263528574082373298e-06,5.362840433970720251e-06,5.462152293859067205e-06,5.561464153747414159e-06,5.660776013635761112e-06,5.760087873524108066e-06,5.859399733412455020e-06,5.958711593300801973e-06,6.058023453189148927e-06,6.157335313077495881e-06,6.256647172965842834e-06 +0.000000000000000000e+00,1.066862034588685866e-07,2.133724069177371731e-07,3.200586103766057861e-07,4.267448138354743992e-07,5.334310172943430122e-07,6.401172207532115723e-07,7.468034242120801324e-07,8.534896276709486924e-07,9.601758311298173584e-07,1.066862034588686024e-06,1.173548238047554690e-06,1.280234441506423356e-06,1.386920644965292022e-06,1.493606848424160688e-06,1.600293051883029354e-06,1.706979255341898020e-06,1.813665458800766686e-06,1.920351662259635564e-06,2.027037865718504442e-06,2.133724069177373319e-06,2.240410272636242197e-06,2.347096476095111075e-06,2.453782679553979952e-06,2.560468883012848830e-06,2.667155086471717708e-06,2.773841289930586586e-06,2.880527493389455463e-06,2.987213696848324341e-06,3.093899900307193219e-06,3.200586103766062097e-06,3.307272307224930974e-06,3.413958510683799852e-06,3.520644714142668730e-06,3.627330917601537607e-06,3.734017121060406485e-06,3.840703324519275363e-06,3.947389527978143817e-06,4.054075731437012271e-06,4.160761934895880726e-06,4.267448138354749180e-06,4.374134341813617634e-06,4.480820545272486088e-06,4.587506748731354542e-06,4.694192952190222997e-06,4.800879155649091451e-06,4.907565359107959905e-06,5.014251562566828359e-06,5.120937766025696813e-06,5.227623969484565268e-06,5.334310172943433722e-06,5.440996376402302176e-06,5.547682579861170630e-06,5.654368783320039084e-06,5.761054986778907539e-06,5.867741190237775993e-06,5.974427393696644447e-06,6.081113597155512901e-06,6.187799800614381355e-06,6.294486004073249810e-06,6.401172207532118264e-06,6.507858410990986718e-06,6.614544614449855172e-06,6.721230817908723626e-06 +0.000000000000000000e+00,1.050581593221397799e-07,2.101163186442795598e-07,3.151744779664193529e-07,4.202326372885591725e-07,5.252907966106990450e-07,6.303489559328389176e-07,7.354071152549787901e-07,8.404652745771186627e-07,9.455234338992585352e-07,1.050581593221398514e-06,1.155639752543538492e-06,1.260697911865678470e-06,1.365756071187818449e-06,1.470814230509958427e-06,1.575872389832098406e-06,1.680930549154238384e-06,1.785988708476378363e-06,1.891046867798518341e-06,1.996105027120658108e-06,2.101163186442797874e-06,2.206221345764937641e-06,2.311279505087077408e-06,2.416337664409217174e-06,2.521395823731356941e-06,2.626453983053496708e-06,2.731512142375636474e-06,2.836570301697776241e-06,2.941628461019916008e-06,3.046686620342055774e-06,3.151744779664195541e-06,3.256802938986335308e-06,3.361861098308475074e-06,3.466919257630614841e-06,3.571977416952754607e-06,3.677035576274894374e-06,3.782093735597034141e-06,3.887151894919173907e-06,3.992210054241313674e-06,4.097268213563453441e-06,4.202326372885593207e-06,4.307384532207732974e-06,4.412442691529872741e-06,4.517500850852012507e-06,4.622559010174152274e-06,4.727617169496292041e-06,4.832675328818431807e-06,4.937733488140571574e-06,5.042791647462711341e-06,5.147849806784851107e-06,5.252907966106990874e-06,5.357966125429130641e-06,5.463024284751270407e-06,5.568082444073410174e-06,5.673140603395549941e-06,5.778198762717689707e-06,5.883256922039829474e-06,5.988315081361969241e-06,6.093373240684109007e-06,6.198431400006248774e-06,6.303489559328388541e-06,6.408547718650528307e-06,6.513605877972668074e-06,6.618664037294807841e-06 +0.000000000000000000e+00,1.020022486118178291e-07,2.040044972236356582e-07,3.060067458354535005e-07,4.080089944472713693e-07,5.100112430590892381e-07,6.120134916709071069e-07,7.140157402827249757e-07,8.160179888945428445e-07,9.180202375063607133e-07,1.020022486118178476e-06,1.122024734729996239e-06,1.224026983341814002e-06,1.326029231953631765e-06,1.428031480565449528e-06,1.530033729177267291e-06,1.632035977789085054e-06,1.734038226400902817e-06,1.836040475012720580e-06,1.938042723624538554e-06,2.040044972236356529e-06,2.142047220848174504e-06,2.244049469459992478e-06,2.346051718071810453e-06,2.448053966683628428e-06,2.550056215295446402e-06,2.652058463907264377e-06,2.754060712519082352e-06,2.856062961130900326e-06,2.958065209742718301e-06,3.060067458354536276e-06,3.162069706966354250e-06,3.264071955578172225e-06,3.366074204189990200e-06,3.468076452801808174e-06,3.570078701413626149e-06,3.672080950025444124e-06,3.774083198637262099e-06,3.876085447249080497e-06,3.978087695860898895e-06,4.080089944472717293e-06,4.182092193084535691e-06,4.284094441696354089e-06,4.386096690308172488e-06,4.488098938919990886e-06,4.590101187531809284e-06,4.692103436143627682e-06,4.794105684755446080e-06,4.896107933367264479e-06,4.998110181979082877e-06,5.100112430590901275e-06,5.202114679202719673e-06,5.304116927814538071e-06,5.406119176426356470e-06,5.508121425038174868e-06,5.610123673649993266e-06,5.712125922261811664e-06,5.814128170873630062e-06,5.916130419485448461e-06,6.018132668097266859e-06,6.120134916709085257e-06,6.222137165320903655e-06,6.324139413932722053e-06,6.426141662544540452e-06 +0.000000000000000000e+00,1.066862034588610162e-07,2.133724069177220324e-07,3.200586103765830221e-07,4.267448138354440119e-07,5.334310172943050016e-07,6.401172207531660443e-07,7.468034242120270869e-07,8.534896276708881296e-07,9.601758311297491723e-07,1.066862034588610215e-06,1.173548238047471258e-06,1.280234441506332300e-06,1.386920644965193343e-06,1.493606848424054386e-06,1.600293051882915428e-06,1.706979255341776471e-06,1.813665458800637514e-06,1.920351662259498345e-06,2.027037865718359175e-06,2.133724069177220006e-06,2.240410272636080837e-06,2.347096476094941668e-06,2.453782679553802499e-06,2.560468883012663330e-06,2.667155086471524161e-06,2.773841289930384992e-06,2.880527493389245823e-06,2.987213696848106654e-06,3.093899900306967485e-06,3.200586103765828315e-06,3.307272307224689146e-06,3.413958510683549977e-06,3.520644714142410808e-06,3.627330917601271639e-06,3.734017121060132470e-06,3.840703324518993301e-06,3.947389527977854132e-06,4.054075731436714963e-06,4.160761934895575794e-06,4.267448138354436625e-06,4.374134341813297455e-06,4.480820545272158286e-06,4.587506748731019117e-06,4.694192952189879948e-06,4.800879155648740779e-06,4.907565359107601610e-06,5.014251562566462441e-06,5.120937766025323272e-06,5.227623969484184103e-06,5.334310172943044934e-06,5.440996376401905765e-06,5.547682579860766595e-06,5.654368783319627426e-06,5.761054986778488257e-06,5.867741190237349088e-06,5.974427393696209919e-06,6.081113597155070750e-06,6.187799800613931581e-06,6.294486004072792412e-06,6.401172207531653243e-06,6.507858410990514074e-06,6.614544614449374905e-06,6.721230817908235735e-06 +0.000000000000000000e+00,1.050581593221336257e-07,2.101163186442672513e-07,3.151744779664008770e-07,4.202326372885345027e-07,5.252907966106681283e-07,6.303489559328017540e-07,7.354071152549353797e-07,8.404652745770690054e-07,9.455234338992026310e-07,1.050581593221336257e-06,1.155639752543469882e-06,1.260697911865603508e-06,1.365756071187737134e-06,1.470814230509870759e-06,1.575872389832004385e-06,1.680930549154138011e-06,1.785988708476271636e-06,1.891046867798405262e-06,1.996105027120538676e-06,2.101163186442672090e-06,2.206221345764805504e-06,2.311279505086938918e-06,2.416337664409072332e-06,2.521395823731205746e-06,2.626453983053339159e-06,2.731512142375472573e-06,2.836570301697605987e-06,2.941628461019739401e-06,3.046686620341872815e-06,3.151744779664006229e-06,3.256802938986139643e-06,3.361861098308273057e-06,3.466919257630406471e-06,3.571977416952539885e-06,3.677035576274673299e-06,3.782093735596806712e-06,3.887151894918940126e-06,3.992210054241073964e-06,4.097268213563207801e-06,4.202326372885341639e-06,4.307384532207475476e-06,4.412442691529609313e-06,4.517500850851743151e-06,4.622559010173876988e-06,4.727617169496010826e-06,4.832675328818144663e-06,4.937733488140278501e-06,5.042791647462412338e-06,5.147849806784546175e-06,5.252907966106680013e-06,5.357966125428813850e-06,5.463024284750947688e-06,5.568082444073081525e-06,5.673140603395215363e-06,5.778198762717349200e-06,5.883256922039483037e-06,5.988315081361616875e-06,6.093373240683750712e-06,6.198431400005884550e-06,6.303489559328018387e-06,6.408547718650152225e-06,6.513605877972286062e-06,6.618664037294419899e-06 +0.000000000000000000e+00,1.020022486118124954e-07,2.040044972236249909e-07,3.060067458354375128e-07,4.080089944472500347e-07,5.100112430590625566e-07,6.120134916708750255e-07,7.140157402826874945e-07,8.160179888944999635e-07,9.180202375063124324e-07,1.020022486118124901e-06,1.122024734729937370e-06,1.224026983341749839e-06,1.326029231953562308e-06,1.428031480565374777e-06,1.530033729177187246e-06,1.632035977788999715e-06,1.734038226400812184e-06,1.836040475012624653e-06,1.938042723624436910e-06,2.040044972236249379e-06,2.142047220848061848e-06,2.244049469459874317e-06,2.346051718071686786e-06,2.448053966683499255e-06,2.550056215295311724e-06,2.652058463907124193e-06,2.754060712518936662e-06,2.856062961130749131e-06,2.958065209742561600e-06,3.060067458354374069e-06,3.162069706966186538e-06,3.264071955577999007e-06,3.366074204189811476e-06,3.468076452801623945e-06,3.570078701413436414e-06,3.672080950025248883e-06,3.774083198637061352e-06,3.876085447248873821e-06,3.978087695860686290e-06,4.080089944472498759e-06,4.182092193084311228e-06,4.284094441696123697e-06,4.386096690307936165e-06,4.488098938919748634e-06,4.590101187531561103e-06,4.692103436143373572e-06,4.794105684755186041e-06,4.896107933366998510e-06,4.998110181978810979e-06,5.100112430590623448e-06,5.202114679202435917e-06,5.304116927814248386e-06,5.406119176426060855e-06,5.508121425037873324e-06,5.610123673649685793e-06,5.712125922261498262e-06,5.814128170873310731e-06,5.916130419485123200e-06,6.018132668096935669e-06,6.120134916708748138e-06,6.222137165320560607e-06,6.324139413932373076e-06,6.426141662544185545e-06 +0.000000000000000000e+00,1.099326821215796089e-07,2.198653642431592179e-07,3.297980463647388533e-07,4.397307284863184887e-07,5.496634106078981241e-07,6.595960927294777066e-07,7.695287748510572891e-07,8.794614569726368715e-07,9.893941390942165599e-07,1.099326821215796248e-06,1.209259503337375937e-06,1.319192185458955625e-06,1.429124867580535313e-06,1.539057549702115002e-06,1.648990231823694690e-06,1.758922913945274378e-06,1.868855596066854067e-06,1.978788278188433967e-06,2.088720960310013867e-06,2.198653642431593767e-06,2.308586324553173667e-06,2.418519006674753567e-06,2.528451688796333467e-06,2.638384370917913367e-06,2.748317053039493268e-06,2.858249735161073168e-06,2.968182417282653068e-06,3.078115099404232968e-06,3.188047781525812868e-06,3.297980463647392768e-06,3.407913145768972668e-06,3.517845827890552568e-06,3.627778510012132468e-06,3.737711192133712369e-06,3.847643874255292269e-06,3.957576556376872169e-06,4.067509238498452069e-06,4.177441920620031969e-06,4.287374602741611869e-06,4.397307284863191769e-06,4.507239966984771669e-06,4.617172649106351569e-06,4.727105331227931470e-06,4.837038013349511370e-06,4.946970695471091270e-06,5.056903377592671170e-06,5.166836059714251070e-06,5.276768741835830970e-06,5.386701423957410870e-06,5.496634106078990770e-06,5.606566788200570670e-06,5.716499470322150571e-06,5.826432152443730471e-06,5.936364834565310371e-06,6.046297516686890271e-06,6.156230198808470171e-06,6.266162880930050071e-06,6.376095563051629971e-06,6.486028245173209871e-06,6.595960927294789771e-06,6.705893609416369672e-06,6.815826291537949572e-06,6.925758973659529472e-06 +0.000000000000000000e+00,1.083193061286160274e-07,2.166386122572320548e-07,3.249579183858480558e-07,4.332772245144640567e-07,5.415965306430800576e-07,6.499158367716961115e-07,7.582351429003121654e-07,8.665544490289282193e-07,9.748737551575442731e-07,1.083193061286160327e-06,1.191512367414776381e-06,1.299831673543392435e-06,1.408150979672008489e-06,1.516470285800624543e-06,1.624789591929240596e-06,1.733108898057856650e-06,1.841428204186472704e-06,1.949747510315088546e-06,2.058066816443704388e-06,2.166386122572320231e-06,2.274705428700936073e-06,2.383024734829551915e-06,2.491344040958167757e-06,2.599663347086783599e-06,2.707982653215399441e-06,2.816301959344015283e-06,2.924621265472631125e-06,3.032940571601246967e-06,3.141259877729862810e-06,3.249579183858478652e-06,3.357898489987094494e-06,3.466217796115710336e-06,3.574537102244326178e-06,3.682856408372942020e-06,3.791175714501557862e-06,3.899495020630173704e-06,4.007814326758789547e-06,4.116133632887405389e-06,4.224452939016021231e-06,4.332772245144637073e-06,4.441091551273252915e-06,4.549410857401868757e-06,4.657730163530484599e-06,4.766049469659100441e-06,4.874368775787716283e-06,4.982688081916332126e-06,5.091007388044947968e-06,5.199326694173563810e-06,5.307646000302179652e-06,5.415965306430795494e-06,5.524284612559411336e-06,5.632603918688027178e-06,5.740923224816643020e-06,5.849242530945258863e-06,5.957561837073874705e-06,6.065881143202490547e-06,6.174200449331106389e-06,6.282519755459722231e-06,6.390839061588338073e-06,6.499158367716953915e-06,6.607477673845569757e-06,6.715796979974185599e-06,6.824116286102801442e-06 +0.000000000000000000e+00,1.046952075981410990e-07,2.093904151962821980e-07,3.140856227944232837e-07,4.187808303925643430e-07,5.234760379907053493e-07,6.281712455888463556e-07,7.328664531869873620e-07,8.375616607851283683e-07,9.422568683832693746e-07,1.046952075981410275e-06,1.151647283579551176e-06,1.256342491177692076e-06,1.361037698775832976e-06,1.465732906373973877e-06,1.570428113972114777e-06,1.675123321570255678e-06,1.779818529168396578e-06,1.884513736766537479e-06,1.989208944364678379e-06,2.093904151962819280e-06,2.198599359560960180e-06,2.303294567159101081e-06,2.407989774757241981e-06,2.512684982355382881e-06,2.617380189953523782e-06,2.722075397551664682e-06,2.826770605149805583e-06,2.931465812747946483e-06,3.036161020346087384e-06,3.140856227944228284e-06,3.245551435542369185e-06,3.350246643140510085e-06,3.454941850738650986e-06,3.559637058336791886e-06,3.664332265934932786e-06,3.769027473533073687e-06,3.873722681131214164e-06,3.978417888729354217e-06,4.083113096327494271e-06,4.187808303925634324e-06,4.292503511523774377e-06,4.397198719121914431e-06,4.501893926720054484e-06,4.606589134318194538e-06,4.711284341916334591e-06,4.815979549514474645e-06,4.920674757112614698e-06,5.025369964710754751e-06,5.130065172308894805e-06,5.234760379907034858e-06,5.339455587505174912e-06,5.444150795103314965e-06,5.548846002701455019e-06,5.653541210299595072e-06,5.758236417897735125e-06,5.862931625495875179e-06,5.967626833094015232e-06,6.072322040692155286e-06,6.177017248290295339e-06,6.281712455888435392e-06,6.386407663486575446e-06,6.491102871084715499e-06,6.595798078682855553e-06 +0.000000000000000000e+00,1.099326821215701592e-07,2.198653642431403185e-07,3.297980463647104777e-07,4.397307284862806369e-07,5.496634106078507962e-07,6.595960927294209554e-07,7.695287748509911146e-07,8.794614569725612738e-07,9.893941390941314331e-07,1.099326821215701592e-06,1.209259503337271752e-06,1.319192185458841911e-06,1.429124867580412070e-06,1.539057549701982229e-06,1.648990231823552388e-06,1.758922913945122548e-06,1.868855596066692707e-06,1.978788278188262866e-06,2.088720960309833025e-06,2.198653642431403185e-06,2.308586324552973344e-06,2.418519006674543503e-06,2.528451688796113662e-06,2.638384370917683822e-06,2.748317053039253981e-06,2.858249735160824140e-06,2.968182417282394299e-06,3.078115099403964458e-06,3.188047781525534618e-06,3.297980463647104777e-06,3.407913145768674936e-06,3.517845827890245095e-06,3.627778510011815255e-06,3.737711192133385414e-06,3.847643874254955997e-06,3.957576556376526579e-06,4.067509238498097162e-06,4.177441920619667745e-06,4.287374602741238328e-06,4.397307284862808910e-06,4.507239966984379493e-06,4.617172649105950076e-06,4.727105331227520659e-06,4.837038013349091241e-06,4.946970695470661824e-06,5.056903377592232407e-06,5.166836059713802990e-06,5.276768741835373572e-06,5.386701423956944155e-06,5.496634106078514738e-06,5.606566788200085321e-06,5.716499470321655903e-06,5.826432152443226486e-06,5.936364834564797069e-06,6.046297516686367652e-06,6.156230198807938234e-06,6.266162880929508817e-06,6.376095563051079400e-06,6.486028245172649983e-06,6.595960927294220565e-06,6.705893609415791148e-06,6.815826291537361731e-06,6.925758973658932314e-06 +0.000000000000000000e+00,1.083193061286078482e-07,2.166386122572156965e-07,3.249579183858235447e-07,4.332772245144313930e-07,5.415965306430391883e-07,6.499158367716469836e-07,7.582351429002547789e-07,8.665544490288625742e-07,9.748737551574703695e-07,1.083193061286078165e-06,1.191512367414685960e-06,1.299831673543293755e-06,1.408150979671901551e-06,1.516470285800509346e-06,1.624789591929117141e-06,1.733108898057724937e-06,1.841428204186332732e-06,1.949747510314940315e-06,2.058066816443547687e-06,2.166386122572155059e-06,2.274705428700762431e-06,2.383024734829369803e-06,2.491344040957977174e-06,2.599663347086584546e-06,2.707982653215191918e-06,2.816301959343799290e-06,2.924621265472406662e-06,3.032940571601014033e-06,3.141259877729621405e-06,3.249579183858228777e-06,3.357898489986836149e-06,3.466217796115443521e-06,3.574537102244050892e-06,3.682856408372658264e-06,3.791175714501265636e-06,3.899495020629873008e-06,4.007814326758480379e-06,4.116133632887087751e-06,4.224452939015695123e-06,4.332772245144302495e-06,4.441091551272909867e-06,4.549410857401517238e-06,4.657730163530124610e-06,4.766049469658731982e-06,4.874368775787339354e-06,4.982688081915946726e-06,5.091007388044554097e-06,5.199326694173161469e-06,5.307646000301768841e-06,5.415965306430376213e-06,5.524284612558983585e-06,5.632603918687590956e-06,5.740923224816198328e-06,5.849242530944805700e-06,5.957561837073413072e-06,6.065881143202020443e-06,6.174200449330627815e-06,6.282519755459235187e-06,6.390839061587842559e-06,6.499158367716449931e-06,6.607477673845057302e-06,6.715796979973664674e-06,6.824116286102272046e-06 +0.000000000000000000e+00,1.046952075981336080e-07,2.093904151962672161e-07,3.140856227944008373e-07,4.187808303925344851e-07,5.234760379906680799e-07,6.281712455888016746e-07,7.328664531869352694e-07,8.375616607850688642e-07,9.422568683832024590e-07,1.046952075981336160e-06,1.151647283579469860e-06,1.256342491177603561e-06,1.361037698775737262e-06,1.465732906373870962e-06,1.570428113972004663e-06,1.675123321570138364e-06,1.779818529168272064e-06,1.884513736766405765e-06,1.989208944364539466e-06,2.093904151962673166e-06,2.198599359560806867e-06,2.303294567158940568e-06,2.407989774757074268e-06,2.512684982355207969e-06,2.617380189953341670e-06,2.722075397551475370e-06,2.826770605149609071e-06,2.931465812747742772e-06,3.036161020345876472e-06,3.140856227944010173e-06,3.245551435542143874e-06,3.350246643140277575e-06,3.454941850738411275e-06,3.559637058336544976e-06,3.664332265934678677e-06,3.769027473532812377e-06,3.873722681130946501e-06,3.978417888729080626e-06,4.083113096327214750e-06,4.187808303925348874e-06,4.292503511523482998e-06,4.397198719121617122e-06,4.501893926719751247e-06,4.606589134317885371e-06,4.711284341916019495e-06,4.815979549514153619e-06,4.920674757112287743e-06,5.025369964710421867e-06,5.130065172308555992e-06,5.234760379906690116e-06,5.339455587504824240e-06,5.444150795102958364e-06,5.548846002701092488e-06,5.653541210299226613e-06,5.758236417897360737e-06,5.862931625495494861e-06,5.967626833093628985e-06,6.072322040691763109e-06,6.177017248289897234e-06,6.281712455888031358e-06,6.386407663486165482e-06,6.491102871084299606e-06,6.595798078682433730e-06 +0.000000000000000000e+00,1.130631278945885885e-07,2.261262557891771770e-07,3.391893836837657522e-07,4.522525115783543010e-07,5.653156394729428498e-07,6.783787673675313986e-07,7.914418952621199474e-07,9.045050231567084962e-07,1.017568151051297151e-06,1.130631278945885911e-06,1.243694406840474672e-06,1.356757534735063432e-06,1.469820662629652193e-06,1.582883790524240954e-06,1.695946918418829714e-06,1.809010046313418475e-06,1.922073174208007235e-06,2.035136302102595996e-06,2.148199429997184756e-06,2.261262557891773517e-06,2.374325685786362277e-06,2.487388813680951038e-06,2.600451941575539799e-06,2.713515069470128559e-06,2.826578197364717320e-06,2.939641325259306080e-06,3.052704453153894841e-06,3.165767581048483601e-06,3.278830708943072362e-06,3.391893836837661122e-06,3.504956964732249883e-06,3.618020092626838643e-06,3.731083220521427404e-06,3.844146348416016165e-06,3.957209476310605349e-06,4.070272604205194533e-06,4.183335732099783717e-06,4.296398859994372901e-06,4.409461987888962085e-06,4.522525115783551269e-06,4.635588243678140453e-06,4.748651371572729637e-06,4.861714499467318821e-06,4.974777627361908005e-06,5.087840755256497189e-06,5.200903883151086373e-06,5.313967011045675557e-06,5.427030138940264741e-06,5.540093266834853925e-06,5.653156394729443110e-06,5.766219522624032294e-06,5.879282650518621478e-06,5.992345778413210662e-06,6.105408906307799846e-06,6.218472034202389030e-06,6.331535162096978214e-06,6.444598289991567398e-06,6.557661417886156582e-06,6.670724545780745766e-06,6.783787673675334950e-06,6.896850801569924134e-06,7.009913929464513318e-06,7.122977057359102502e-06 +0.000000000000000000e+00,1.115169269718568458e-07,2.230338539437136915e-07,3.345507809155705240e-07,4.460677078874273301e-07,5.575846348592841361e-07,6.691015618311409422e-07,7.806184888029977483e-07,8.921354157748545543e-07,1.003652342746711360e-06,1.115169269718568272e-06,1.226686196690425184e-06,1.338203123662282096e-06,1.449720050634139008e-06,1.561236977605995920e-06,1.672753904577852832e-06,1.784270831549709744e-06,1.895787758521566656e-06,2.007304685493423568e-06,2.118821612465280268e-06,2.230338539437136968e-06,2.341855466408993668e-06,2.453372393380850368e-06,2.564889320352707069e-06,2.676406247324563769e-06,2.787923174296420469e-06,2.899440101268277169e-06,3.010957028240133869e-06,3.122473955211990570e-06,3.233990882183847270e-06,3.345507809155703970e-06,3.457024736127560670e-06,3.568541663099417370e-06,3.680058590071274070e-06,3.791575517043130771e-06,3.903092444014987471e-06,4.014609370986844594e-06,4.126126297958701718e-06,4.237643224930558842e-06,4.349160151902415966e-06,4.460677078874273089e-06,4.572194005846130213e-06,4.683710932817987337e-06,4.795227859789844460e-06,4.906744786761701584e-06,5.018261713733558708e-06,5.129778640705415831e-06,5.241295567677272955e-06,5.352812494649130079e-06,5.464329421620987202e-06,5.575846348592844326e-06,5.687363275564701450e-06,5.798880202536558573e-06,5.910397129508415697e-06,6.021914056480272821e-06,6.133430983452129945e-06,6.244947910423987068e-06,6.356464837395844192e-06,6.467981764367701316e-06,6.579498691339558439e-06,6.691015618311415563e-06,6.802532545283272687e-06,6.914049472255129810e-06,7.025566399226986934e-06 +0.000000000000000000e+00,1.072328467371789831e-07,2.144656934743579662e-07,3.216985402115369758e-07,4.289313869487159854e-07,5.361642336858949950e-07,6.433970804230739516e-07,7.506299271602529083e-07,8.578627738974318649e-07,9.650956206346107157e-07,1.072328467371789566e-06,1.179561314108968417e-06,1.286794160846147268e-06,1.394027007583326119e-06,1.501259854320504969e-06,1.608492701057683820e-06,1.715725547794862671e-06,1.822958394532041522e-06,1.930191241269220584e-06,2.037424088006399647e-06,2.144656934743578709e-06,2.251889781480757772e-06,2.359122628217936834e-06,2.466355474955115897e-06,2.573588321692294959e-06,2.680821168429474022e-06,2.788054015166653084e-06,2.895286861903832147e-06,3.002519708641011210e-06,3.109752555378190272e-06,3.216985402115369335e-06,3.324218248852548397e-06,3.431451095589727460e-06,3.538683942326906522e-06,3.645916789064085585e-06,3.753149635801264647e-06,3.860382482538443710e-06,3.967615329275622772e-06,4.074848176012801835e-06,4.182081022749980897e-06,4.289313869487159960e-06,4.396546716224339022e-06,4.503779562961518085e-06,4.611012409698697147e-06,4.718245256435876210e-06,4.825478103173055272e-06,4.932710949910234335e-06,5.039943796647413397e-06,5.147176643384592460e-06,5.254409490121771522e-06,5.361642336858950585e-06,5.468875183596129648e-06,5.576108030333308710e-06,5.683340877070487773e-06,5.790573723807666835e-06,5.897806570544845898e-06,6.005039417282024960e-06,6.112272264019204023e-06,6.219505110756383085e-06,6.326737957493562148e-06,6.433970804230741210e-06,6.541203650967920273e-06,6.648436497705099335e-06,6.755669344442278398e-06 +0.000000000000000000e+00,1.130631278945783182e-07,2.261262557891566364e-07,3.391893836837349414e-07,4.522525115783132199e-07,5.653156394728914985e-07,6.783787673674697770e-07,7.914418952620480555e-07,9.045050231566263340e-07,1.017568151051204613e-06,1.130631278945782997e-06,1.243694406840361381e-06,1.356757534734939766e-06,1.469820662629518150e-06,1.582883790524096534e-06,1.695946918418674919e-06,1.809010046313253303e-06,1.922073174207831476e-06,2.035136302102409649e-06,2.148199429996987821e-06,2.261262557891565994e-06,2.374325685786144166e-06,2.487388813680722339e-06,2.600451941575300512e-06,2.713515069469878684e-06,2.826578197364456857e-06,2.939641325259035030e-06,3.052704453153613202e-06,3.165767581048191375e-06,3.278830708942769548e-06,3.391893836837347720e-06,3.504956964731925893e-06,3.618020092626504065e-06,3.731083220521082238e-06,3.844146348415660411e-06,3.957209476310238583e-06,4.070272604204816756e-06,4.183335732099394929e-06,4.296398859993973101e-06,4.409461987888551274e-06,4.522525115783129447e-06,4.635588243677707619e-06,4.748651371572285792e-06,4.861714499466863964e-06,4.974777627361442137e-06,5.087840755256020310e-06,5.200903883150598482e-06,5.313967011045176655e-06,5.427030138939754828e-06,5.540093266834333000e-06,5.653156394728911173e-06,5.766219522623489345e-06,5.879282650518067518e-06,5.992345778412645691e-06,6.105408906307223863e-06,6.218472034201802036e-06,6.331535162096380209e-06,6.444598289990958381e-06,6.557661417885536554e-06,6.670724545780114727e-06,6.783787673674692899e-06,6.896850801569271072e-06,7.009913929463849244e-06,7.122977057358427417e-06 +0.000000000000000000e+00,1.115169269718467740e-07,2.230338539436935480e-07,3.345507809155403485e-07,4.460677078873871490e-07,5.575846348592339494e-07,6.691015618310806970e-07,7.806184888029274445e-07,8.921354157747741921e-07,1.003652342746620940e-06,1.115169269718467687e-06,1.226686196690314435e-06,1.338203123662161182e-06,1.449720050634007930e-06,1.561236977605854677e-06,1.672753904577701425e-06,1.784270831549548172e-06,1.895787758521394920e-06,2.007304685493241879e-06,2.118821612465088838e-06,2.230338539436935798e-06,2.341855466408782757e-06,2.453372393380629716e-06,2.564889320352476676e-06,2.676406247324323635e-06,2.787923174296170594e-06,2.899440101268017554e-06,3.010957028239864513e-06,3.122473955211711472e-06,3.233990882183558431e-06,3.345507809155405391e-06,3.457024736127252350e-06,3.568541663099099309e-06,3.680058590070946269e-06,3.791575517042793228e-06,3.903092444014640187e-06,4.014609370986487147e-06,4.126126297958334106e-06,4.237643224930181065e-06,4.349160151902028024e-06,4.460677078873874984e-06,4.572194005845721943e-06,4.683710932817568902e-06,4.795227859789415862e-06,4.906744786761262821e-06,5.018261713733109780e-06,5.129778640704956739e-06,5.241295567676803699e-06,5.352812494648650658e-06,5.464329421620497617e-06,5.575846348592344577e-06,5.687363275564191536e-06,5.798880202536038495e-06,5.910397129507885455e-06,6.021914056479732414e-06,6.133430983451579373e-06,6.244947910423426332e-06,6.356464837395273292e-06,6.467981764367120251e-06,6.579498691338967210e-06,6.691015618310814170e-06,6.802532545282661129e-06,6.914049472254508088e-06,7.025566399226355048e-06 +0.000000000000000000e+00,1.072328467371698643e-07,2.144656934743397285e-07,3.216985402115096061e-07,4.289313869486795100e-07,5.361642336858493611e-07,6.433970804230192121e-07,7.506299271601890631e-07,8.578627738973589142e-07,9.650956206345287652e-07,1.072328467371698722e-06,1.179561314108868679e-06,1.286794160846038636e-06,1.394027007583208593e-06,1.501259854320378550e-06,1.608492701057548507e-06,1.715725547794718464e-06,1.822958394531888421e-06,1.930191241269058377e-06,2.037424088006228546e-06,2.144656934743398715e-06,2.251889781480568884e-06,2.359122628217739052e-06,2.466355474954909221e-06,2.573588321692079390e-06,2.680821168429249558e-06,2.788054015166419727e-06,2.895286861903589896e-06,3.002519708640760064e-06,3.109752555377930233e-06,3.216985402115100402e-06,3.324218248852270570e-06,3.431451095589440739e-06,3.538683942326610908e-06,3.645916789063781076e-06,3.753149635800951245e-06,3.860382482538120990e-06,3.967615329275290735e-06,4.074848176012460480e-06,4.182081022749630226e-06,4.289313869486799971e-06,4.396546716223969716e-06,4.503779562961139461e-06,4.611012409698309206e-06,4.718245256435478951e-06,4.825478103172648697e-06,4.932710949909818442e-06,5.039943796646988187e-06,5.147176643384157932e-06,5.254409490121327677e-06,5.361642336858497422e-06,5.468875183595667168e-06,5.576108030332836913e-06,5.683340877070006658e-06,5.790573723807176403e-06,5.897806570544346148e-06,6.005039417281515893e-06,6.112272264018685638e-06,6.219505110755855384e-06,6.326737957493025129e-06,6.433970804230194874e-06,6.541203650967364619e-06,6.648436497704534364e-06,6.755669344441704109e-06 +0.000000000000000000e+00,1.160595812215942849e-07,2.321191624431885698e-07,3.481787436647828812e-07,4.642383248863771926e-07,5.802979061079715040e-07,6.963574873295657624e-07,8.124170685511600209e-07,9.284766497727542793e-07,1.044536230994348538e-06,1.160595812215942796e-06,1.276655393437537055e-06,1.392714974659131313e-06,1.508774555880725572e-06,1.624834137102319830e-06,1.740893718323914088e-06,1.856953299545508347e-06,1.973012880767102394e-06,2.089072461988696652e-06,2.205132043210290910e-06,2.321191624431885169e-06,2.437251205653479427e-06,2.553310786875073686e-06,2.669370368096667944e-06,2.785429949318262203e-06,2.901489530539856461e-06,3.017549111761450720e-06,3.133608692983044978e-06,3.249668274204639236e-06,3.365727855426233495e-06,3.481787436647827753e-06,3.597847017869422012e-06,3.713906599091016270e-06,3.829966180312610529e-06,3.946025761534204787e-06,4.062085342755799046e-06,4.178144923977393304e-06,4.294204505198987562e-06,4.410264086420581821e-06,4.526323667642176079e-06,4.642383248863770338e-06,4.758442830085364596e-06,4.874502411306958855e-06,4.990561992528553113e-06,5.106621573750147372e-06,5.222681154971741630e-06,5.338740736193335888e-06,5.454800317414930147e-06,5.570859898636524405e-06,5.686919479858118664e-06,5.802979061079712922e-06,5.919038642301307181e-06,6.035098223522901439e-06,6.151157804744495698e-06,6.267217385966089956e-06,6.383276967187684215e-06,6.499336548409278473e-06,6.615396129630872731e-06,6.731455710852466990e-06,6.847515292074061248e-06,6.963574873295655507e-06,7.079634454517249765e-06,7.195694035738844024e-06,7.311753616960438282e-06 +0.000000000000000000e+00,1.145731688983251898e-07,2.291463377966503795e-07,3.437195066949755693e-07,4.582926755933007590e-07,5.728658444916260017e-07,6.874390133899512444e-07,8.020121822882764871e-07,9.165853511866017298e-07,1.031158520084926973e-06,1.145731688983252215e-06,1.260304857881577458e-06,1.374878026779902701e-06,1.489451195678227943e-06,1.604024364576553186e-06,1.718597533474878429e-06,1.833170702373203671e-06,1.947743871271528702e-06,2.062317040169853522e-06,2.176890209068178341e-06,2.291463377966503160e-06,2.406036546864827979e-06,2.520609715763152798e-06,2.635182884661477617e-06,2.749756053559802437e-06,2.864329222458127256e-06,2.978902391356452075e-06,3.093475560254776894e-06,3.208048729153101713e-06,3.322621898051426533e-06,3.437195066949751352e-06,3.551768235848076171e-06,3.666341404746400990e-06,3.780914573644725809e-06,3.895487742543050628e-06,4.010060911441375448e-06,4.124634080339700267e-06,4.239207249238025086e-06,4.353780418136349905e-06,4.468353587034674724e-06,4.582926755932999544e-06,4.697499924831324363e-06,4.812073093729649182e-06,4.926646262627974001e-06,5.041219431526298820e-06,5.155792600424623639e-06,5.270365769322948459e-06,5.384938938221273278e-06,5.499512107119598097e-06,5.614085276017922916e-06,5.728658444916247735e-06,5.843231613814572555e-06,5.957804782712897374e-06,6.072377951611222193e-06,6.186951120509547012e-06,6.301524289407871831e-06,6.416097458306196650e-06,6.530670627204521470e-06,6.645243796102846289e-06,6.759816965001171108e-06,6.874390133899495927e-06,6.988963302797820746e-06,7.103536471696145565e-06,7.218109640594470385e-06 +0.000000000000000000e+00,1.095457112680514154e-07,2.190914225361028308e-07,3.286371338041542727e-07,4.381828450722057145e-07,5.477285563402571564e-07,6.572742676083085453e-07,7.668199788763599342e-07,8.763656901444113232e-07,9.859114014124626062e-07,1.095457112680513889e-06,1.205002823948565172e-06,1.314548535216616455e-06,1.424094246484667738e-06,1.533639957752719021e-06,1.643185669020770304e-06,1.752731380288821588e-06,1.862277091556872871e-06,1.971822802824924365e-06,2.081368514092975860e-06,2.190914225361027355e-06,2.300459936629078850e-06,2.410005647897130345e-06,2.519551359165181839e-06,2.629097070433233334e-06,2.738642781701284829e-06,2.848188492969336324e-06,2.957734204237387819e-06,3.067279915505439313e-06,3.176825626773490808e-06,3.286371338041542303e-06,3.395917049309593798e-06,3.505462760577645293e-06,3.615008471845696787e-06,3.724554183113748282e-06,3.834099894381799354e-06,3.943645605649850425e-06,4.053191316917901496e-06,4.162737028185952567e-06,4.272282739454003639e-06,4.381828450722054710e-06,4.491374161990105781e-06,4.600919873258156853e-06,4.710465584526207924e-06,4.820011295794258995e-06,4.929557007062310066e-06,5.039102718330361138e-06,5.148648429598412209e-06,5.258194140866463280e-06,5.367739852134514352e-06,5.477285563402565423e-06,5.586831274670616494e-06,5.696376985938667565e-06,5.805922697206718637e-06,5.915468408474769708e-06,6.025014119742820779e-06,6.134559831010871851e-06,6.244105542278922922e-06,6.353651253546973993e-06,6.463196964815025064e-06,6.572742676083076136e-06,6.682288387351127207e-06,6.791834098619178278e-06,6.901379809887229350e-06 +0.000000000000000000e+00,1.160595812215835514e-07,2.321191624431671028e-07,3.481787436647506410e-07,4.642383248863341527e-07,5.802979061079177174e-07,6.963574873295012820e-07,8.124170685510848467e-07,9.284766497726684114e-07,1.044536230994251976e-06,1.160595812215835435e-06,1.276655393437418894e-06,1.392714974659002352e-06,1.508774555880585811e-06,1.624834137102169270e-06,1.740893718323752729e-06,1.856953299545336187e-06,1.973012880766919434e-06,2.089072461988502681e-06,2.205132043210085928e-06,2.321191624431669176e-06,2.437251205653252423e-06,2.553310786874835670e-06,2.669370368096418917e-06,2.785429949318002164e-06,2.901489530539585411e-06,3.017549111761168658e-06,3.133608692982751905e-06,3.249668274204335152e-06,3.365727855425918399e-06,3.481787436647501646e-06,3.597847017869084893e-06,3.713906599090668140e-06,3.829966180312251387e-06,3.946025761533834634e-06,4.062085342755417881e-06,4.178144923977001128e-06,4.294204505198584375e-06,4.410264086420167622e-06,4.526323667641750869e-06,4.642383248863334116e-06,4.758442830084917363e-06,4.874502411306500610e-06,4.990561992528083857e-06,5.106621573749667104e-06,5.222681154971250351e-06,5.338740736192833598e-06,5.454800317414416845e-06,5.570859898636000092e-06,5.686919479857583339e-06,5.802979061079166586e-06,5.919038642300749833e-06,6.035098223522333080e-06,6.151157804743916327e-06,6.267217385965499574e-06,6.383276967187082821e-06,6.499336548408666068e-06,6.615396129630249315e-06,6.731455710851832562e-06,6.847515292073415809e-06,6.963574873294999056e-06,7.079634454516582303e-06,7.195694035738165550e-06,7.311753616959748797e-06 +0.000000000000000000e+00,1.145731688983143636e-07,2.291463377966287272e-07,3.437195066949431173e-07,4.582926755932575074e-07,5.728658444915718975e-07,6.874390133898862346e-07,8.020121822882005718e-07,9.165853511865149089e-07,1.031158520084829352e-06,1.145731688983143795e-06,1.260304857881458238e-06,1.374878026779772681e-06,1.489451195678087124e-06,1.604024364576401567e-06,1.718597533474716010e-06,1.833170702373030453e-06,1.947743871271344896e-06,2.062317040169659551e-06,2.176890209067974206e-06,2.291463377966288861e-06,2.406036546864603515e-06,2.520609715762918170e-06,2.635182884661232825e-06,2.749756053559547480e-06,2.864329222457862134e-06,2.978902391356176789e-06,3.093475560254491444e-06,3.208048729152806099e-06,3.322621898051120754e-06,3.437195066949435408e-06,3.551768235847750063e-06,3.666341404746064718e-06,3.780914573644379373e-06,3.895487742542694028e-06,4.010060911441008682e-06,4.124634080339323337e-06,4.239207249237637992e-06,4.353780418135952647e-06,4.468353587034267301e-06,4.582926755932581956e-06,4.697499924830896611e-06,4.812073093729211266e-06,4.926646262627525921e-06,5.041219431525840575e-06,5.155792600424155230e-06,5.270365769322469885e-06,5.384938938220784540e-06,5.499512107119099195e-06,5.614085276017413849e-06,5.728658444915728504e-06,5.843231613814043159e-06,5.957804782712357814e-06,6.072377951610672468e-06,6.186951120508987123e-06,6.301524289407301778e-06,6.416097458305616433e-06,6.530670627203931088e-06,6.645243796102245742e-06,6.759816965000560397e-06,6.874390133898875052e-06,6.988963302797189707e-06,7.103536471695504362e-06,7.218109640593819016e-06 +0.000000000000000000e+00,1.095457112680410525e-07,2.190914225360821050e-07,3.286371338041231442e-07,4.381828450721641570e-07,5.477285563402051697e-07,6.572742676082461825e-07,7.668199788762871953e-07,8.763656901443282081e-07,9.859114014123692208e-07,1.095457112680410339e-06,1.205002823948451458e-06,1.314548535216492577e-06,1.424094246484533695e-06,1.533639957752574814e-06,1.643185669020615933e-06,1.752731380288657051e-06,1.862277091556698170e-06,1.971822802824739289e-06,2.081368514092780619e-06,2.190914225360821950e-06,2.300459936628863280e-06,2.410005647896904610e-06,2.519551359164945941e-06,2.629097070432987271e-06,2.738642781701028602e-06,2.848188492969069932e-06,2.957734204237111262e-06,3.067279915505152593e-06,3.176825626773193923e-06,3.286371338041235254e-06,3.395917049309276584e-06,3.505462760577317914e-06,3.615008471845359245e-06,3.724554183113400575e-06,3.834099894381441906e-06,3.943645605649482813e-06,4.053191316917523719e-06,4.162737028185564626e-06,4.272282739453605533e-06,4.381828450721646440e-06,4.491374161989687347e-06,4.600919873257728254e-06,4.710465584525769161e-06,4.820011295793810068e-06,4.929557007061850975e-06,5.039102718329891881e-06,5.148648429597932788e-06,5.258194140865973695e-06,5.367739852134014602e-06,5.477285563402055509e-06,5.586831274670096416e-06,5.696376985938137323e-06,5.805922697206178230e-06,5.915468408474219137e-06,6.025014119742260043e-06,6.134559831010300950e-06,6.244105542278341857e-06,6.353651253546382764e-06,6.463196964814423671e-06,6.572742676082464578e-06,6.682288387350505485e-06,6.791834098618546392e-06,6.901379809886587299e-06 +0.000000000000000000e+00,1.190271152330342797e-07,2.380542304660685593e-07,3.570813456991028522e-07,4.761084609321371716e-07,5.951355761651715439e-07,7.141626913982059162e-07,8.331898066312402885e-07,9.522169218642746608e-07,1.071244037097309033e-06,1.190271152330343511e-06,1.309298267563377990e-06,1.428325382796412468e-06,1.547352498029446946e-06,1.666379613262481424e-06,1.785406728495515902e-06,1.904433843728550380e-06,2.023460958961585070e-06,2.142488074194619760e-06,2.261515189427654450e-06,2.380542304660689140e-06,2.499569419893723830e-06,2.618596535126758520e-06,2.737623650359793210e-06,2.856650765592827900e-06,2.975677880825862590e-06,3.094704996058897280e-06,3.213732111291931970e-06,3.332759226524966660e-06,3.451786341758001350e-06,3.570813456991036040e-06,3.689840572224070730e-06,3.808867687457105420e-06,3.927894802690140109e-06,4.046921917923175223e-06,4.165949033156210336e-06,4.284976148389245450e-06,4.404003263622280563e-06,4.523030378855315677e-06,4.642057494088350790e-06,4.761084609321385904e-06,4.880111724554421017e-06,4.999138839787456131e-06,5.118165955020491244e-06,5.237193070253526358e-06,5.356220185486561471e-06,5.475247300719596584e-06,5.594274415952631698e-06,5.713301531185666811e-06,5.832328646418701925e-06,5.951355761651737038e-06,6.070382876884772152e-06,6.189409992117807265e-06,6.308437107350842379e-06,6.427464222583877492e-06,6.546491337816912606e-06,6.665518453049947719e-06,6.784545568282982833e-06,6.903572683516017946e-06,7.022599798749053059e-06,7.141626913982088173e-06,7.260654029215123286e-06,7.379681144448158400e-06,7.498708259681193513e-06 +0.000000000000000000e+00,1.190279641211157594e-07,2.380559282422315188e-07,3.570838923633472782e-07,4.761118564844630377e-07,5.951398206055788500e-07,7.141677847266946624e-07,8.331957488478104747e-07,9.522237129689262871e-07,1.071251677090042099e-06,1.190279641211157912e-06,1.309307605332273724e-06,1.428335569453389537e-06,1.547363533574505349e-06,1.666391497695621161e-06,1.785419461816736974e-06,1.904447425937852786e-06,2.023475390058968810e-06,2.142503354180084622e-06,2.261531318301200435e-06,2.380559282422316247e-06,2.499587246543432059e-06,2.618615210664547872e-06,2.737643174785663684e-06,2.856671138906779497e-06,2.975699103027895309e-06,3.094727067149011121e-06,3.213755031270126934e-06,3.332782995391242746e-06,3.451810959512358558e-06,3.570838923633474371e-06,3.689866887754590183e-06,3.808894851875705995e-06,3.927922815996821808e-06,4.046950780117937620e-06,4.165978744239053432e-06,4.285006708360169245e-06,4.404034672481285057e-06,4.523062636602400869e-06,4.642090600723516682e-06,4.761118564844632494e-06,4.880146528965748307e-06,4.999174493086864119e-06,5.118202457207979931e-06,5.237230421329095744e-06,5.356258385450211556e-06,5.475286349571327368e-06,5.594314313692443181e-06,5.713342277813558993e-06,5.832370241934674805e-06,5.951398206055790618e-06,6.070426170176906430e-06,6.189454134298022242e-06,6.308482098419138055e-06,6.427510062540253867e-06,6.546538026661369680e-06,6.665565990782485492e-06,6.784593954903601304e-06,6.903621919024717117e-06,7.022649883145832929e-06,7.141677847266948741e-06,7.260705811388064554e-06,7.379733775509180366e-06,7.498761739630296178e-06 +0.000000000000000000e+00,1.175271312538105138e-07,2.350542625076210277e-07,3.525813937614315547e-07,4.701085250152421083e-07,5.876356562690526618e-07,7.051627875228632154e-07,8.226899187766737689e-07,9.402170500304843225e-07,1.057744181284294876e-06,1.175271312538105324e-06,1.292798443791915771e-06,1.410325575045726219e-06,1.527852706299536667e-06,1.645379837553347114e-06,1.762906968807157562e-06,1.880434100060968010e-06,1.997961231314778457e-06,2.115488362568588905e-06,2.233015493822399353e-06,2.350542625076209800e-06,2.468069756330020248e-06,2.585596887583830696e-06,2.703124018837641143e-06,2.820651150091451591e-06,2.938178281345262039e-06,3.055705412599072486e-06,3.173232543852882934e-06,3.290759675106693382e-06,3.408286806360503829e-06,3.525813937614314277e-06,3.643341068868124725e-06,3.760868200121935172e-06,3.878395331375745620e-06,3.995922462629556068e-06,4.113449593883366515e-06,4.230976725137176963e-06,4.348503856390987411e-06,4.466030987644797858e-06,4.583558118898608306e-06,4.701085250152418754e-06,4.818612381406229201e-06,4.936139512660039649e-06,5.053666643913850097e-06,5.171193775167660544e-06,5.288720906421470992e-06,5.406248037675281440e-06,5.523775168929091887e-06,5.641302300182902335e-06,5.758829431436712783e-06,5.876356562690523230e-06,5.993883693944333678e-06,6.111410825198144126e-06,6.228937956451954573e-06,6.346465087705765021e-06,6.463992218959575469e-06,6.581519350213385916e-06,6.699046481467196364e-06,6.816573612721006811e-06,6.934100743974817259e-06,7.051627875228627707e-06,7.169155006482438154e-06,7.286682137736248602e-06,7.404209268990059050e-06 +0.000000000000000000e+00,1.116853827858323484e-07,2.233707655716646967e-07,3.350561483574970716e-07,4.467415311433294464e-07,5.584269139291618213e-07,6.701122967149941432e-07,7.817976795008264651e-07,8.934830622866587870e-07,1.005168445072491109e-06,1.116853827858323431e-06,1.228539210644155753e-06,1.340224593429988075e-06,1.451909976215820396e-06,1.563595359001652718e-06,1.675280741787485040e-06,1.786966124573317362e-06,1.898651507359149684e-06,2.010336890144982218e-06,2.122022272930814751e-06,2.233707655716647285e-06,2.345393038502479819e-06,2.457078421288312352e-06,2.568763804074144886e-06,2.680449186859977420e-06,2.792134569645809953e-06,2.903819952431642487e-06,3.015505335217475021e-06,3.127190718003307554e-06,3.238876100789140088e-06,3.350561483574972622e-06,3.462246866360805155e-06,3.573932249146637689e-06,3.685617631932470223e-06,3.797303014718302756e-06,3.908988397504135713e-06,4.020673780289968671e-06,4.132359163075801628e-06,4.244044545861634585e-06,4.355729928647467542e-06,4.467415311433300499e-06,4.579100694219133457e-06,4.690786077004966414e-06,4.802471459790799371e-06,4.914156842576632328e-06,5.025842225362465285e-06,5.137527608148298242e-06,5.249212990934131200e-06,5.360898373719964157e-06,5.472583756505797114e-06,5.584269139291630071e-06,5.695954522077463028e-06,5.807639904863295985e-06,5.919325287649128943e-06,6.031010670434961900e-06,6.142696053220794857e-06,6.254381436006627814e-06,6.366066818792460771e-06,6.477752201578293729e-06,6.589437584364126686e-06,6.701122967149959643e-06,6.812808349935792600e-06,6.924493732721625557e-06,7.036179115507458514e-06 +0.000000000000000000e+00,1.190278265644829951e-07,2.380556531289659902e-07,3.570834796934489721e-07,4.761113062579319276e-07,5.951391328224148830e-07,7.141669593868978384e-07,8.331947859513807938e-07,9.522226125158637492e-07,1.071250439080346705e-06,1.190278265644829766e-06,1.309306092209312827e-06,1.428333918773795889e-06,1.547361745338278950e-06,1.666389571902762011e-06,1.785417398467245072e-06,1.904445225031728134e-06,2.023473051596211195e-06,2.142500878160694256e-06,2.261528704725177318e-06,2.380556531289660379e-06,2.499584357854143440e-06,2.618612184418626502e-06,2.737640010983109563e-06,2.856667837547592624e-06,2.975695664112075685e-06,3.094723490676558747e-06,3.213751317241041808e-06,3.332779143805524869e-06,3.451806970370007931e-06,3.570834796934490992e-06,3.689862623498974053e-06,3.808890450063457115e-06,3.927918276627940176e-06,4.046946103192423237e-06,4.165973929756906298e-06,4.285001756321389360e-06,4.404029582885872421e-06,4.523057409450355482e-06,4.642085236014838544e-06,4.761113062579321605e-06,4.880140889143804666e-06,4.999168715708287727e-06,5.118196542272770789e-06,5.237224368837253850e-06,5.356252195401736911e-06,5.475280021966219973e-06,5.594307848530703034e-06,5.713335675095186095e-06,5.832363501659669157e-06,5.951391328224152218e-06,6.070419154788635279e-06,6.189446981353118340e-06,6.308474807917601402e-06,6.427502634482084463e-06,6.546530461046567524e-06,6.665558287611050586e-06,6.784586114175533647e-06,6.903613940740016708e-06,7.022641767304499770e-06,7.141669593868982831e-06,7.260697420433465892e-06,7.379725246997948953e-06,7.498753073562432015e-06 +0.000000000000000000e+00,1.116833988318868693e-07,2.233667976637737385e-07,3.350501964956605946e-07,4.467335953275474241e-07,5.584169941594343066e-07,6.701003929913211892e-07,7.817837918232080717e-07,8.934671906550949542e-07,1.005150589486981837e-06,1.116833988318868613e-06,1.228517387150755390e-06,1.340200785982642167e-06,1.451884184814528943e-06,1.563567583646415720e-06,1.675250982478302496e-06,1.786934381310189273e-06,1.898617780142076050e-06,2.010301178973962826e-06,2.121984577805849815e-06,2.233667976637736803e-06,2.345351375469623791e-06,2.457034774301510780e-06,2.568718173133397768e-06,2.680401571965284757e-06,2.792084970797171745e-06,2.903768369629058733e-06,3.015451768460945722e-06,3.127135167292832710e-06,3.238818566124719699e-06,3.350501964956606687e-06,3.462185363788493675e-06,3.573868762620380664e-06,3.685552161452267652e-06,3.797235560284154640e-06,3.908918959116041629e-06,4.020602357947928194e-06,4.132285756779814759e-06,4.243969155611701323e-06,4.355652554443587888e-06,4.467335953275474453e-06,4.579019352107361018e-06,4.690702750939247583e-06,4.802386149771134148e-06,4.914069548603020713e-06,5.025752947434907278e-06,5.137436346266793842e-06,5.249119745098680407e-06,5.360803143930566972e-06,5.472486542762453537e-06,5.584169941594340102e-06,5.695853340426226667e-06,5.807536739258113232e-06,5.919220138089999796e-06,6.030903536921886361e-06,6.142586935753772926e-06,6.254270334585659491e-06,6.365953733417546056e-06,6.477637132249432621e-06,6.589320531081319186e-06,6.701003929913205751e-06,6.812687328745092315e-06,6.924370727576978880e-06,7.036054126408865445e-06 +0.000000000000000000e+00,1.190271152330228977e-07,2.380542304660457953e-07,3.570813456990687062e-07,4.761084609320916436e-07,5.951355761651145809e-07,7.141626913981375183e-07,8.331898066311604557e-07,9.522169218641833930e-07,1.071244037097206330e-06,1.190271152330229162e-06,1.309298267563251993e-06,1.428325382796274825e-06,1.547352498029297656e-06,1.666379613262320488e-06,1.785406728495343319e-06,1.904433843728366151e-06,2.023460958961388982e-06,2.142488074194411814e-06,2.261515189427434645e-06,2.380542304660457477e-06,2.499569419893480308e-06,2.618596535126503140e-06,2.737623650359525971e-06,2.856650765592548803e-06,2.975677880825571634e-06,3.094704996058594466e-06,3.213732111291617297e-06,3.332759226524640129e-06,3.451786341757662960e-06,3.570813456990685792e-06,3.689840572223708623e-06,3.808867687456731454e-06,3.927894802689754709e-06,4.046921917922777964e-06,4.165949033155801219e-06,4.284976148388824474e-06,4.404003263621847729e-06,4.523030378854870984e-06,4.642057494087894239e-06,4.761084609320917494e-06,4.880111724553940749e-06,4.999138839786964004e-06,5.118165955019987259e-06,5.237193070253010514e-06,5.356220185486033769e-06,5.475247300719057024e-06,5.594274415952080279e-06,5.713301531185103534e-06,5.832328646418126789e-06,5.951355761651150044e-06,6.070382876884173299e-06,6.189409992117196554e-06,6.308437107350219809e-06,6.427464222583243064e-06,6.546491337816266319e-06,6.665518453049289574e-06,6.784545568282312829e-06,6.903572683515336084e-06,7.022599798748359339e-06,7.141626913981382594e-06,7.260654029214405849e-06,7.379681144447429104e-06,7.498708259680452359e-06 +0.000000000000000000e+00,1.190278265644774100e-07,2.380556531289548200e-07,3.570834796934322432e-07,4.761113062579096929e-07,5.951391328223871426e-07,7.141669593868645924e-07,8.331947859513420421e-07,9.522226125158194918e-07,1.071250439080296941e-06,1.190278265644774285e-06,1.309306092209251629e-06,1.428333918773728973e-06,1.547361745338206317e-06,1.666389571902683661e-06,1.785417398467161004e-06,1.904445225031638348e-06,2.023473051596115480e-06,2.142500878160592612e-06,2.261528704725069744e-06,2.380556531289546877e-06,2.499584357854024009e-06,2.618612184418501141e-06,2.737640010982978273e-06,2.856667837547455405e-06,2.975695664111932537e-06,3.094723490676409669e-06,3.213751317240886801e-06,3.332779143805363933e-06,3.451806970369841065e-06,3.570834796934318197e-06,3.689862623498795329e-06,3.808890450063272461e-06,3.927918276627749593e-06,4.046946103192226725e-06,4.165973929756703858e-06,4.285001756321180990e-06,4.404029582885658122e-06,4.523057409450135254e-06,4.642085236014612386e-06,4.761113062579089518e-06,4.880140889143566650e-06,4.999168715708043782e-06,5.118196542272520914e-06,5.237224368836998046e-06,5.356252195401475178e-06,5.475280021965952310e-06,5.594307848530429442e-06,5.713335675094906574e-06,5.832363501659383706e-06,5.951391328223860839e-06,6.070419154788337971e-06,6.189446981352815103e-06,6.308474807917292235e-06,6.427502634481769367e-06,6.546530461046246499e-06,6.665558287610723631e-06,6.784586114175200763e-06,6.903613940739677895e-06,7.022641767304155027e-06,7.141669593868632159e-06,7.260697420433109291e-06,7.379725246997586423e-06,7.498753073562063555e-06 +0.000000000000000000e+00,1.175271312537992112e-07,2.350542625075984225e-07,3.525813937613976205e-07,4.701085250151967920e-07,5.876356562689959106e-07,7.051627875227950292e-07,8.226899187765941478e-07,9.402170500303932664e-07,1.057744181284192385e-06,1.175271312537991398e-06,1.292798443791790410e-06,1.410325575045589423e-06,1.527852706299388436e-06,1.645379837553187449e-06,1.762906968806986461e-06,1.880434100060785474e-06,1.997961231314584487e-06,2.115488362568383499e-06,2.233015493822182512e-06,2.350542625075981525e-06,2.468069756329780538e-06,2.585596887583579550e-06,2.703124018837378563e-06,2.820651150091177576e-06,2.938178281344976589e-06,3.055705412598775601e-06,3.173232543852574614e-06,3.290759675106373627e-06,3.408286806360172639e-06,3.525813937613971652e-06,3.643341068867770665e-06,3.760868200121569678e-06,3.878395331375368690e-06,3.995922462629167279e-06,4.113449593882965869e-06,4.230976725136764458e-06,4.348503856390563047e-06,4.466030987644361636e-06,4.583558118898160225e-06,4.701085250151958815e-06,4.818612381405757404e-06,4.936139512659555993e-06,5.053666643913354582e-06,5.171193775167153171e-06,5.288720906420951761e-06,5.406248037674750350e-06,5.523775168928548939e-06,5.641302300182347528e-06,5.758829431436146117e-06,5.876356562689944707e-06,5.993883693943743296e-06,6.111410825197541885e-06,6.228937956451340474e-06,6.346465087705139063e-06,6.463992218958937653e-06,6.581519350212736242e-06,6.699046481466534831e-06,6.816573612720333420e-06,6.934100743974132010e-06,7.051627875227930599e-06,7.169155006481729188e-06,7.286682137735527777e-06,7.404209268989326366e-06 +0.000000000000000000e+00,1.116853827858212972e-07,2.233707655716425945e-07,3.350561483574638785e-07,4.467415311432851360e-07,5.584269139291063406e-07,6.701122967149275452e-07,7.817976795007487498e-07,8.934830622865699544e-07,1.005168445072391159e-06,1.116853827858212258e-06,1.228539210644033356e-06,1.340224593429854455e-06,1.451909976215675554e-06,1.563595359001496653e-06,1.675280741787317751e-06,1.786966124573138850e-06,1.898651507358959949e-06,2.010336890144781047e-06,2.122022272930602146e-06,2.233707655716423245e-06,2.345393038502244344e-06,2.457078421288065442e-06,2.568763804073886541e-06,2.680449186859707640e-06,2.792134569645528738e-06,2.903819952431349837e-06,3.015505335217170936e-06,3.127190718002992035e-06,3.238876100788813133e-06,3.350561483574634232e-06,3.462246866360455331e-06,3.573932249146276429e-06,3.685617631932097528e-06,3.797303014717918627e-06,3.908988397503739302e-06,4.020673780289559554e-06,4.132359163075379805e-06,4.244044545861200057e-06,4.355729928647020309e-06,4.467415311432840560e-06,4.579100694218660812e-06,4.690786077004481064e-06,4.802471459790301316e-06,4.914156842576121567e-06,5.025842225361941819e-06,5.137527608147762071e-06,5.249212990933582322e-06,5.360898373719402574e-06,5.472583756505222826e-06,5.584269139291043077e-06,5.695954522076863329e-06,5.807639904862683581e-06,5.919325287648503832e-06,6.031010670434324084e-06,6.142696053220144336e-06,6.254381436005964587e-06,6.366066818791784839e-06,6.477752201577605091e-06,6.589437584363425342e-06,6.701122967149245594e-06,6.812808349935065846e-06,6.924493732720886097e-06,7.036179115506706349e-06 +0.000000000000000000e+00,1.052638237296767726e-07,2.105276474593535452e-07,3.157914711890303177e-07,4.210552949187070903e-07,5.263191186483838629e-07,6.315829423780606355e-07,7.368467661077374080e-07,8.421105898374141806e-07,9.473744135670909532e-07,1.052638237296767726e-06,1.157902061026444498e-06,1.263165884756121271e-06,1.368429708485798044e-06,1.473693532215474816e-06,1.578957355945151589e-06,1.684221179674828361e-06,1.789485003404505134e-06,1.894748827134181906e-06,2.000012650863858679e-06,2.105276474593535452e-06,2.210540298323212224e-06,2.315804122052888997e-06,2.421067945782565769e-06,2.526331769512242542e-06,2.631595593241919314e-06,2.736859416971596087e-06,2.842123240701272860e-06,2.947387064430949632e-06,3.052650888160626405e-06,3.157914711890303177e-06,3.263178535619979950e-06,3.368442359349656723e-06,3.473706183079333495e-06,3.578970006809010268e-06,3.684233830538687040e-06,3.789497654268363813e-06,3.894761477998040585e-06,4.000025301727717358e-06,4.105289125457394131e-06,4.210552949187070903e-06,4.315816772916747676e-06,4.421080596646424448e-06,4.526344420376101221e-06,4.631608244105777993e-06,4.736872067835454766e-06,4.842135891565131539e-06,4.947399715294808311e-06,5.052663539024485084e-06,5.157927362754161856e-06,5.263191186483838629e-06,5.368455010213515401e-06,5.473718833943192174e-06,5.578982657672868947e-06,5.684246481402545719e-06,5.789510305132222492e-06,5.894774128861899264e-06,6.000037952591576037e-06,6.105301776321252810e-06,6.210565600050929582e-06,6.315829423780606355e-06,6.421093247510283127e-06,6.526357071239959900e-06,6.631620894969636672e-06 +0.000000000000000000e+00,1.092143510742724848e-07,2.184287021485449696e-07,3.276430532228174677e-07,4.368574042970899922e-07,5.460717553713625167e-07,6.552861064456350412e-07,7.645004575199075658e-07,8.737148085941800903e-07,9.829291596684525089e-07,1.092143510742724822e-06,1.201357861816997134e-06,1.310572212891269447e-06,1.419786563965541760e-06,1.529000915039814073e-06,1.638215266114086385e-06,1.747429617188358698e-06,1.856643968262631011e-06,1.965858319336903324e-06,2.075072670411175637e-06,2.184287021485447949e-06,2.293501372559720262e-06,2.402715723633992575e-06,2.511930074708264888e-06,2.621144425782537200e-06,2.730358776856809513e-06,2.839573127931081826e-06,2.948787479005354139e-06,3.058001830079626451e-06,3.167216181153898764e-06,3.276430532228171077e-06,3.385644883302443390e-06,3.494859234376715702e-06,3.604073585450988015e-06,3.713287936525260328e-06,3.822502287599532217e-06,3.931716638673804106e-06,4.040930989748075996e-06,4.150145340822347885e-06,4.259359691896619774e-06,4.368574042970891663e-06,4.477788394045163553e-06,4.587002745119435442e-06,4.696217096193707331e-06,4.805431447267979220e-06,4.914645798342251110e-06,5.023860149416522999e-06,5.133074500490794888e-06,5.242288851565066777e-06,5.351503202639338667e-06,5.460717553713610556e-06,5.569931904787882445e-06,5.679146255862154334e-06,5.788360606936426224e-06,5.897574958010698113e-06,6.006789309084970002e-06,6.116003660159241891e-06,6.225218011233513781e-06,6.334432362307785670e-06,6.443646713382057559e-06,6.552861064456329448e-06,6.662075415530601338e-06,6.771289766604873227e-06,6.880504117679145116e-06 +0.000000000000000000e+00,1.093571169148186796e-07,2.187142338296373592e-07,3.280713507444560124e-07,4.374284676592746655e-07,5.467855845740933186e-07,6.561427014889120247e-07,7.654998184037307308e-07,8.748569353185494369e-07,9.842140522333681429e-07,1.093571169148186849e-06,1.202928286063005555e-06,1.312285402977824261e-06,1.421642519892642967e-06,1.530999636807461673e-06,1.640356753722280379e-06,1.749713870637099085e-06,1.859070987551917792e-06,1.968428104466736286e-06,2.077785221381554780e-06,2.187142338296373275e-06,2.296499455211191769e-06,2.405856572126010263e-06,2.515213689040828757e-06,2.624570805955647252e-06,2.733927922870465746e-06,2.843285039785284240e-06,2.952642156700102735e-06,3.061999273614921229e-06,3.171356390529739723e-06,3.280713507444558218e-06,3.390070624359376712e-06,3.499427741274195206e-06,3.608784858189013701e-06,3.718141975103832195e-06,3.827499092018650689e-06,3.936856208933469184e-06,4.046213325848287678e-06,4.155570442763106172e-06,4.264927559677924667e-06,4.374284676592743161e-06,4.483641793507561655e-06,4.592998910422380150e-06,4.702356027337198644e-06,4.811713144252017138e-06,4.921070261166835633e-06,5.030427378081654127e-06,5.139784494996472621e-06,5.249141611911291116e-06,5.358498728826109610e-06,5.467855845740928104e-06,5.577212962655746598e-06,5.686570079570565093e-06,5.795927196485383587e-06,5.905284313400202081e-06,6.014641430315020576e-06,6.123998547229839070e-06,6.233355664144657564e-06,6.342712781059476059e-06,6.452069897974294553e-06,6.561427014889113047e-06,6.670784131803931542e-06,6.780141248718750036e-06,6.889498365633568530e-06 +0.000000000000000000e+00,1.056499268736328185e-07,2.112998537472656370e-07,3.169497806208984820e-07,4.225997074945313270e-07,5.282496343681641720e-07,6.338995612417969641e-07,7.395494881154297561e-07,8.451994149890625482e-07,9.508493418626953402e-07,1.056499268736328132e-06,1.162149195609960818e-06,1.267799122483593505e-06,1.373449049357226191e-06,1.479098976230858877e-06,1.584748903104491563e-06,1.690398829978124249e-06,1.796048756851756936e-06,1.901698683725389622e-06,2.007348610599022308e-06,2.112998537472654994e-06,2.218648464346287680e-06,2.324298391219920366e-06,2.429948318093553053e-06,2.535598244967185739e-06,2.641248171840818425e-06,2.746898098714451111e-06,2.852548025588083797e-06,2.958197952461716483e-06,3.063847879335349170e-06,3.169497806208981856e-06,3.275147733082614542e-06,3.380797659956247228e-06,3.486447586829879914e-06,3.592097513703512600e-06,3.697747440577145287e-06,3.803397367450777973e-06,3.909047294324411082e-06,4.014697221198043769e-06,4.120347148071676455e-06,4.225997074945309141e-06,4.331647001818941827e-06,4.437296928692574513e-06,4.542946855566207200e-06,4.648596782439839886e-06,4.754246709313472572e-06,4.859896636187105258e-06,4.965546563060737944e-06,5.071196489934370630e-06,5.176846416808003317e-06,5.282496343681636003e-06,5.388146270555268689e-06,5.493796197428901375e-06,5.599446124302534061e-06,5.705096051176166747e-06,5.810745978049799434e-06,5.916395904923432120e-06,6.022045831797064806e-06,6.127695758670697492e-06,6.233345685544330178e-06,6.338995612417962864e-06,6.444645539291595551e-06,6.550295466165228237e-06,6.655945393038860923e-06 +0.000000000000000000e+00,1.061589264828181642e-07,2.123178529656363285e-07,3.184767794484544927e-07,4.246357059312726569e-07,5.307946324140907682e-07,6.369535588969088795e-07,7.431124853797269908e-07,8.492714118625451021e-07,9.554303383453632134e-07,1.061589264828181325e-06,1.167748191310999436e-06,1.273907117793817547e-06,1.380066044276635659e-06,1.486224970759453770e-06,1.592383897242271881e-06,1.698542823725089993e-06,1.804701750207908104e-06,1.910860676690726427e-06,2.017019603173544750e-06,2.123178529656363073e-06,2.229337456139181396e-06,2.335496382621999719e-06,2.441655309104818042e-06,2.547814235587636365e-06,2.653973162070454688e-06,2.760132088553273011e-06,2.866291015036091334e-06,2.972449941518909657e-06,3.078608868001727980e-06,3.184767794484546304e-06,3.290926720967364627e-06,3.397085647450182950e-06,3.503244573933001273e-06,3.609403500415819596e-06,3.715562426898637919e-06,3.821721353381456242e-06,3.927880279864274565e-06,4.034039206347092888e-06,4.140198132829911211e-06,4.246357059312729534e-06,4.352515985795547857e-06,4.458674912278366180e-06,4.564833838761184503e-06,4.670992765244002826e-06,4.777151691726821149e-06,4.883310618209639472e-06,4.989469544692457795e-06,5.095628471175276119e-06,5.201787397658094442e-06,5.307946324140912765e-06,5.414105250623731088e-06,5.520264177106549411e-06,5.626423103589367734e-06,5.732582030072186057e-06,5.838740956555004380e-06,5.944899883037822703e-06,6.051058809520641026e-06,6.157217736003459349e-06,6.263376662486277672e-06,6.369535588969095995e-06,6.475694515451914318e-06,6.581853441934732641e-06,6.688012368417550964e-06 +0.000000000000000000e+00,1.021457431024955537e-07,2.042914862049911074e-07,3.064372293074866611e-07,4.085829724099822149e-07,5.107287155124777156e-07,6.128744586149732164e-07,7.150202017174687172e-07,8.171659448199642180e-07,9.193116879224597187e-07,1.021457431024955219e-06,1.123603174127450720e-06,1.225748917229946221e-06,1.327894660332441722e-06,1.430040403434937223e-06,1.532186146537432723e-06,1.634331889639928224e-06,1.736477632742423725e-06,1.838623375844919226e-06,1.940769118947414938e-06,2.042914862049910863e-06,2.145060605152406787e-06,2.247206348254902711e-06,2.349352091357398635e-06,2.451497834459894560e-06,2.553643577562390484e-06,2.655789320664886408e-06,2.757935063767382333e-06,2.860080806869878257e-06,2.962226549972374181e-06,3.064372293074870105e-06,3.166518036177366030e-06,3.268663779279861954e-06,3.370809522382357878e-06,3.472955265484853803e-06,3.575101008587349727e-06,3.677246751689845651e-06,3.779392494792341575e-06,3.881538237894837500e-06,3.983683980997333424e-06,4.085829724099829348e-06,4.187975467202325273e-06,4.290121210304821197e-06,4.392266953407317121e-06,4.494412696509813045e-06,4.596558439612308970e-06,4.698704182714804894e-06,4.800849925817300818e-06,4.902995668919796743e-06,5.005141412022292667e-06,5.107287155124788591e-06,5.209432898227284516e-06,5.311578641329780440e-06,5.413724384432276364e-06,5.515870127534772288e-06,5.618015870637268213e-06,5.720161613739764137e-06,5.822307356842260061e-06,5.924453099944755986e-06,6.026598843047251910e-06,6.128744586149747834e-06,6.230890329252243758e-06,6.333036072354739683e-06,6.435181815457235607e-06 +0.000000000000000000e+00,1.093211102264669560e-07,2.186422204529339120e-07,3.279633306794008812e-07,4.372844409058678769e-07,5.466055511323348196e-07,6.559266613588017624e-07,7.652477715852687051e-07,8.745688818117356479e-07,9.838899920382025907e-07,1.093211102264669639e-06,1.202532212491136688e-06,1.311853322717603737e-06,1.421174432944070785e-06,1.530495543170537834e-06,1.639816653397004882e-06,1.749137763623471931e-06,1.858458873849938980e-06,1.967779984076406028e-06,2.077101094302873077e-06,2.186422204529340126e-06,2.295743314755807174e-06,2.405064424982274223e-06,2.514385535208741271e-06,2.623706645435208320e-06,2.733027755661675369e-06,2.842348865888142417e-06,2.951669976114609466e-06,3.060991086341076515e-06,3.170312196567543563e-06,3.279633306794010612e-06,3.388954417020477661e-06,3.498275527246944709e-06,3.607596637473411758e-06,3.716917747699878806e-06,3.826238857926346279e-06,3.935559968152813751e-06,4.044881078379281223e-06,4.154202188605748695e-06,4.263523298832216167e-06,4.372844409058683639e-06,4.482165519285151111e-06,4.591486629511618584e-06,4.700807739738086056e-06,4.810128849964553528e-06,4.919449960191021000e-06,5.028771070417488472e-06,5.138092180643955944e-06,5.247413290870423417e-06,5.356734401096890889e-06,5.466055511323358361e-06,5.575376621549825833e-06,5.684697731776293305e-06,5.794018842002760777e-06,5.903339952229228249e-06,6.012661062455695722e-06,6.121982172682163194e-06,6.231303282908630666e-06,6.340624393135098138e-06,6.449945503361565610e-06,6.559266613588033082e-06,6.668587723814500554e-06,6.777908834040968027e-06,6.887229944267435499e-06 +0.000000000000000000e+00,1.063344931465342310e-07,2.126689862930684620e-07,3.190034794396026930e-07,4.253379725861369240e-07,5.316724657326711021e-07,6.380069588792052802e-07,7.443414520257394582e-07,8.506759451722736363e-07,9.570104383188078144e-07,1.063344931465341992e-06,1.169679424611876171e-06,1.276013917758410349e-06,1.382348410904944527e-06,1.488682904051478705e-06,1.595017397198012883e-06,1.701351890344547061e-06,1.807686383491081239e-06,1.914020876637615629e-06,2.020355369784150019e-06,2.126689862930684408e-06,2.233024356077218798e-06,2.339358849223753188e-06,2.445693342370287578e-06,2.552027835516821968e-06,2.658362328663356358e-06,2.764696821809890747e-06,2.871031314956425137e-06,2.977365808102959527e-06,3.083700301249493917e-06,3.190034794396028307e-06,3.296369287542562697e-06,3.402703780689097086e-06,3.509038273835631476e-06,3.615372766982165866e-06,3.721707260128700256e-06,3.828041753275234646e-06,3.934376246421769459e-06,4.040710739568304272e-06,4.147045232714839086e-06,4.253379725861373899e-06,4.359714219007908712e-06,4.466048712154443526e-06,4.572383205300978339e-06,4.678717698447513152e-06,4.785052191594047966e-06,4.891386684740582779e-06,4.997721177887117592e-06,5.104055671033652406e-06,5.210390164180187219e-06,5.316724657326722033e-06,5.423059150473256846e-06,5.529393643619791659e-06,5.635728136766326473e-06,5.742062629912861286e-06,5.848397123059396099e-06,5.954731616205930913e-06,6.061066109352465726e-06,6.167400602499000539e-06,6.273735095645535353e-06,6.380069588792070166e-06,6.486404081938604979e-06,6.592738575085139793e-06,6.699073068231674606e-06 +0.000000000000000000e+00,1.052638237296711742e-07,2.105276474593423484e-07,3.157914711890135359e-07,4.210552949186847498e-07,5.263191186483559108e-07,6.315829423780270718e-07,7.368467661076982328e-07,8.421105898373693938e-07,9.473744135670405547e-07,1.052638237296711822e-06,1.157902061026383088e-06,1.263165884756054355e-06,1.368429708485725622e-06,1.473693532215396889e-06,1.578957355945068156e-06,1.684221179674739423e-06,1.789485003404410690e-06,1.894748827134081957e-06,2.000012650863753223e-06,2.105276474593424490e-06,2.210540298323095757e-06,2.315804122052767024e-06,2.421067945782438291e-06,2.526331769512109558e-06,2.631595593241780825e-06,2.736859416971452091e-06,2.842123240701123358e-06,2.947387064430794625e-06,3.052650888160465892e-06,3.157914711890137159e-06,3.263178535619808426e-06,3.368442359349479693e-06,3.473706183079150959e-06,3.578970006808822226e-06,3.684233830538493493e-06,3.789497654268164760e-06,3.894761477997836450e-06,4.000025301727508141e-06,4.105289125457179831e-06,4.210552949186851522e-06,4.315816772916523212e-06,4.421080596646194902e-06,4.526344420375866593e-06,4.631608244105538283e-06,4.736872067835209974e-06,4.842135891564881664e-06,4.947399715294553354e-06,5.052663539024225045e-06,5.157927362753896735e-06,5.263191186483568425e-06,5.368455010213240116e-06,5.473718833942911806e-06,5.578982657672583497e-06,5.684246481402255187e-06,5.789510305131926877e-06,5.894774128861598568e-06,6.000037952591270258e-06,6.105301776320941948e-06,6.210565600050613639e-06,6.315829423780285329e-06,6.421093247509957020e-06,6.526357071239628710e-06,6.631620894969300400e-06 +0.000000000000000000e+00,1.092143510742679320e-07,2.184287021485358640e-07,3.276430532228038093e-07,4.368574042970717810e-07,5.460717553713397527e-07,6.552861064456077244e-07,7.645004575198756961e-07,8.737148085941436679e-07,9.829291596684116396e-07,1.092143510742679505e-06,1.201357861816947371e-06,1.310572212891215237e-06,1.419786563965483103e-06,1.529000915039750969e-06,1.638215266114018835e-06,1.747429617188286700e-06,1.856643968262554566e-06,1.965858319336822432e-06,2.075072670411090510e-06,2.184287021485358587e-06,2.293501372559626665e-06,2.402715723633894742e-06,2.511930074708162820e-06,2.621144425782430898e-06,2.730358776856698975e-06,2.839573127930967053e-06,2.948787479005235130e-06,3.058001830079503208e-06,3.167216181153771286e-06,3.276430532228039363e-06,3.385644883302307441e-06,3.494859234376575518e-06,3.604073585450843596e-06,3.713287936525111674e-06,3.822502287599379751e-06,3.931716638673647405e-06,4.040930989747915059e-06,4.150145340822182713e-06,4.259359691896450368e-06,4.368574042970718022e-06,4.477788394044985676e-06,4.587002745119253330e-06,4.696217096193520984e-06,4.805431447267788638e-06,4.914645798342056292e-06,5.023860149416323946e-06,5.133074500490591600e-06,5.242288851564859254e-06,5.351503202639126908e-06,5.460717553713394562e-06,5.569931904787662217e-06,5.679146255861929871e-06,5.788360606936197525e-06,5.897574958010465179e-06,6.006789309084732833e-06,6.116003660159000487e-06,6.225218011233268141e-06,6.334432362307535795e-06,6.443646713381803449e-06,6.552861064456071103e-06,6.662075415530338757e-06,6.771289766604606411e-06,6.880504117678874065e-06 +0.000000000000000000e+00,1.093211102264644149e-07,2.186422204529288298e-07,3.279633306793932579e-07,4.372844409058577125e-07,5.466055511323221141e-07,6.559266613587865158e-07,7.652477715852509175e-07,8.745688818117153191e-07,9.838899920381797208e-07,1.093211102264644228e-06,1.202532212491108736e-06,1.311853322717573243e-06,1.421174432944037751e-06,1.530495543170502258e-06,1.639816653396966766e-06,1.749137763623431273e-06,1.858458873849895781e-06,1.967779984076360289e-06,2.077101094302824796e-06,2.186422204529289304e-06,2.295743314755753811e-06,2.405064424982218319e-06,2.514385535208682826e-06,2.623706645435147334e-06,2.733027755661611841e-06,2.842348865888076349e-06,2.951669976114540856e-06,3.060991086341005364e-06,3.170312196567469871e-06,3.279633306793934379e-06,3.388954417020398886e-06,3.498275527246863394e-06,3.607596637473327902e-06,3.716917747699792409e-06,3.826238857926256493e-06,3.935559968152720577e-06,4.044881078379184661e-06,4.154202188605648745e-06,4.263523298832112829e-06,4.372844409058576913e-06,4.482165519285040997e-06,4.591486629511505081e-06,4.700807739737969165e-06,4.810128849964433249e-06,4.919449960190897333e-06,5.028771070417361417e-06,5.138092180643825501e-06,5.247413290870289585e-06,5.356734401096753669e-06,5.466055511323217753e-06,5.575376621549681837e-06,5.684697731776145921e-06,5.794018842002610005e-06,5.903339952229074089e-06,6.012661062455538173e-06,6.121982172682002257e-06,6.231303282908466341e-06,6.340624393134930425e-06,6.449945503361394509e-06,6.559266613587858594e-06,6.668587723814322678e-06,6.777908834040786762e-06,6.887229944267250846e-06 +0.000000000000000000e+00,1.056499268736289539e-07,2.112998537472579079e-07,3.169497806208868353e-07,4.225997074945157628e-07,5.282496343681446903e-07,6.338995612417736707e-07,7.395494881154026511e-07,8.451994149890316315e-07,9.508493418626606119e-07,1.056499268736289592e-06,1.162149195609918467e-06,1.267799122483547341e-06,1.373449049357176216e-06,1.479098976230805090e-06,1.584748903104433965e-06,1.690398829978062839e-06,1.796048756851691714e-06,1.901698683725320588e-06,2.007348610598949463e-06,2.112998537472578338e-06,2.218648464346207212e-06,2.324298391219836087e-06,2.429948318093464961e-06,2.535598244967093836e-06,2.641248171840722710e-06,2.746898098714351585e-06,2.852548025587980459e-06,2.958197952461609334e-06,3.063847879335238208e-06,3.169497806208867083e-06,3.275147733082495957e-06,3.380797659956124832e-06,3.486447586829753706e-06,3.592097513703382581e-06,3.697747440577011455e-06,3.803397367450640330e-06,3.909047294324268781e-06,4.014697221197897232e-06,4.120347148071525683e-06,4.225997074945154134e-06,4.331647001818782585e-06,4.437296928692411036e-06,4.542946855566039487e-06,4.648596782439667938e-06,4.754246709313296389e-06,4.859896636186924840e-06,4.965546563060553291e-06,5.071196489934181742e-06,5.176846416807810193e-06,5.282496343681438644e-06,5.388146270555067095e-06,5.493796197428695546e-06,5.599446124302323997e-06,5.705096051175952448e-06,5.810745978049580899e-06,5.916395904923209350e-06,6.022045831796837801e-06,6.127695758670466252e-06,6.233345685544094703e-06,6.338995612417723154e-06,6.444645539291351605e-06,6.550295466164980056e-06,6.655945393038608507e-06 +0.000000000000000000e+00,1.061589264828152790e-07,2.123178529656305581e-07,3.184767794484458636e-07,4.246357059312611691e-07,5.307946324140764746e-07,6.369535588968917271e-07,7.431124853797069797e-07,8.492714118625222322e-07,9.554303383453373789e-07,1.061589264828152526e-06,1.167748191310967672e-06,1.273907117793782819e-06,1.380066044276597966e-06,1.486224970759413112e-06,1.592383897242228259e-06,1.698542823725043406e-06,1.804701750207858552e-06,1.910860676690673911e-06,2.017019603173489269e-06,2.123178529656304628e-06,2.229337456139119986e-06,2.335496382621935345e-06,2.441655309104750703e-06,2.547814235587566061e-06,2.653973162070381420e-06,2.760132088553196778e-06,2.866291015036012137e-06,2.972449941518827495e-06,3.078608868001642854e-06,3.184767794484458212e-06,3.290926720967273571e-06,3.397085647450088929e-06,3.503244573932904287e-06,3.609403500415719646e-06,3.715562426898535004e-06,3.821721353381350363e-06,3.927880279864165298e-06,4.034039206346980233e-06,4.140198132829795168e-06,4.246357059312610102e-06,4.352515985795425037e-06,4.458674912278239972e-06,4.564833838761054907e-06,4.670992765243869842e-06,4.777151691726684777e-06,4.883310618209499712e-06,4.989469544692314647e-06,5.095628471175129582e-06,5.201787397657944517e-06,5.307946324140759452e-06,5.414105250623574387e-06,5.520264177106389322e-06,5.626423103589204256e-06,5.732582030072019191e-06,5.838740956554834126e-06,5.944899883037649061e-06,6.051058809520463996e-06,6.157217736003278931e-06,6.263376662486093866e-06,6.369535588968908801e-06,6.475694515451723736e-06,6.581853441934538671e-06,6.688012368417353606e-06 +0.000000000000000000e+00,1.021457431024917421e-07,2.042914862049834841e-07,3.064372293074752262e-07,4.085829724099669683e-07,5.107287155124586574e-07,6.128744586149503465e-07,7.150202017174420356e-07,8.171659448199337248e-07,9.193116879224254139e-07,1.021457431024917103e-06,1.123603174127408792e-06,1.225748917229900481e-06,1.327894660332392170e-06,1.430040403434883860e-06,1.532186146537375549e-06,1.634331889639867238e-06,1.736477632742358927e-06,1.838623375844850616e-06,1.940769118947342093e-06,2.042914862049833783e-06,2.145060605152325472e-06,2.247206348254817161e-06,2.349352091357308850e-06,2.451497834459800539e-06,2.553643577562292228e-06,2.655789320664783917e-06,2.757935063767275606e-06,2.860080806869767296e-06,2.962226549972258985e-06,3.064372293074750674e-06,3.166518036177242363e-06,3.268663779279734052e-06,3.370809522382225741e-06,3.472955265484717430e-06,3.575101008587209119e-06,3.677246751689700809e-06,3.779392494792192498e-06,3.881538237894684187e-06,3.983683980997175876e-06,4.085829724099667565e-06,4.187975467202159254e-06,4.290121210304650943e-06,4.392266953407142632e-06,4.494412696509634322e-06,4.596558439612126011e-06,4.698704182714617700e-06,4.800849925817109389e-06,4.902995668919601078e-06,5.005141412022092767e-06,5.107287155124584456e-06,5.209432898227076145e-06,5.311578641329567835e-06,5.413724384432059524e-06,5.515870127534551213e-06,5.618015870637042902e-06,5.720161613739534591e-06,5.822307356842026280e-06,5.924453099944517969e-06,6.026598843047009658e-06,6.128744586149501348e-06,6.230890329251993037e-06,6.333036072354484726e-06,6.435181815456976415e-06 +0.000000000000000000e+00,1.075974312402875859e-07,2.151948624805751719e-07,3.227922937208627314e-07,4.303897249611502908e-07,5.379871562014378503e-07,6.455845874417254627e-07,7.531820186820130752e-07,8.607794499223006876e-07,9.683768811625881941e-07,1.075974312402875701e-06,1.183571743643163207e-06,1.291169174883450714e-06,1.398766606123738220e-06,1.506364037364025727e-06,1.613961468604313233e-06,1.721558899844600740e-06,1.829156331084888246e-06,1.936753762325175541e-06,2.044351193565462836e-06,2.151948624805750131e-06,2.259546056046037426e-06,2.367143487286324720e-06,2.474740918526612015e-06,2.582338349766899310e-06,2.689935781007186605e-06,2.797533212247473899e-06,2.905130643487761194e-06,3.012728074728048489e-06,3.120325505968335784e-06,3.227922937208623079e-06,3.335520368448910373e-06,3.443117799689197668e-06,3.550715230929484963e-06,3.658312662169772258e-06,3.765910093410059552e-06,3.873507524650346847e-06,3.981104955890634142e-06,4.088702387130921437e-06,4.196299818371208732e-06,4.303897249611496026e-06,4.411494680851783321e-06,4.519092112092070616e-06,4.626689543332357911e-06,4.734286974572645205e-06,4.841884405812932500e-06,4.949481837053219795e-06,5.057079268293507090e-06,5.164676699533794385e-06,5.272274130774081679e-06,5.379871562014368974e-06,5.487468993254656269e-06,5.595066424494943564e-06,5.702663855735230858e-06,5.810261286975518153e-06,5.917858718215805448e-06,6.025456149456092743e-06,6.133053580696380038e-06,6.240651011936667332e-06,6.348248443176954627e-06,6.455845874417241922e-06,6.563443305657529217e-06,6.671040736897816511e-06,6.778638168138103806e-06 +0.000000000000000000e+00,1.060920849791230055e-07,2.121841699582460111e-07,3.182762549373690431e-07,4.243683399164920751e-07,5.304604248956151071e-07,6.365525098747380861e-07,7.426445948538610652e-07,8.487366798329840443e-07,9.548287648121071292e-07,1.060920849791230214e-06,1.167012934770353299e-06,1.273105019749476384e-06,1.379197104728599469e-06,1.485289189707722554e-06,1.591381274686845639e-06,1.697473359665968724e-06,1.803565444645091809e-06,1.909657529624215105e-06,2.015749614603338402e-06,2.121841699582461699e-06,2.227933784561584996e-06,2.334025869540708292e-06,2.440117954519831589e-06,2.546210039498954886e-06,2.652302124478078182e-06,2.758394209457201479e-06,2.864486294436324776e-06,2.970578379415448072e-06,3.076670464394571369e-06,3.182762549373694666e-06,3.288854634352817963e-06,3.394946719331941259e-06,3.501038804311064556e-06,3.607130889290187853e-06,3.713222974269311149e-06,3.819315059248434446e-06,3.925407144227558166e-06,4.031499229206681887e-06,4.137591314185805607e-06,4.243683399164929327e-06,4.349775484144053047e-06,4.455867569123176767e-06,4.561959654102300488e-06,4.668051739081424208e-06,4.774143824060547928e-06,4.880235909039671648e-06,4.986327994018795368e-06,5.092420078997919089e-06,5.198512163977042809e-06,5.304604248956166529e-06,5.410696333935290249e-06,5.516788418914413970e-06,5.622880503893537690e-06,5.728972588872661410e-06,5.835064673851785130e-06,5.941156758830908850e-06,6.047248843810032571e-06,6.153340928789156291e-06,6.259433013768280011e-06,6.365525098747403731e-06,6.471617183726527452e-06,6.577709268705651172e-06,6.683801353684774892e-06 +0.000000000000000000e+00,1.041339928546407411e-07,2.082679857092814822e-07,3.124019785639222366e-07,4.165359714185630174e-07,5.206699642732037453e-07,6.248039571278444732e-07,7.289379499824852011e-07,8.330719428371259290e-07,9.372059356917666569e-07,1.041339928546407491e-06,1.145473921401048324e-06,1.249607914255689158e-06,1.353741907110329992e-06,1.457875899964970826e-06,1.562009892819611659e-06,1.666143885674252493e-06,1.770277878528893327e-06,1.874411871383534161e-06,1.978545864238174783e-06,2.082679857092815405e-06,2.186813849947456027e-06,2.290947842802096649e-06,2.395081835656737271e-06,2.499215828511377893e-06,2.603349821366018515e-06,2.707483814220659137e-06,2.811617807075299759e-06,2.915751799929940381e-06,3.019885792784581003e-06,3.124019785639221625e-06,3.228153778493862247e-06,3.332287771348502869e-06,3.436421764203143491e-06,3.540555757057784113e-06,3.644689749912424735e-06,3.748823742767065357e-06,3.852957735621705979e-06,3.957091728476346177e-06,4.061225721330986376e-06,4.165359714185626574e-06,4.269493707040266773e-06,4.373627699894906971e-06,4.477761692749547170e-06,4.581895685604187368e-06,4.686029678458827567e-06,4.790163671313467765e-06,4.894297664168107964e-06,4.998431657022748162e-06,5.102565649877388361e-06,5.206699642732028559e-06,5.310833635586668758e-06,5.414967628441308956e-06,5.519101621295949155e-06,5.623235614150589353e-06,5.727369607005229552e-06,5.831503599859869750e-06,5.935637592714509949e-06,6.039771585569150147e-06,6.143905578423790346e-06,6.248039571278430544e-06,6.352173564133070743e-06,6.456307556987710941e-06,6.560441549842351140e-06 +0.000000000000000000e+00,1.075974312402801082e-07,2.151948624805602165e-07,3.227922937208403379e-07,4.303897249611204859e-07,5.379871562014006868e-07,6.455845874416808876e-07,7.531820186819610885e-07,8.607794499222412894e-07,9.683768811625214903e-07,1.075974312402801797e-06,1.183571743643082104e-06,1.291169174883362411e-06,1.398766606123642717e-06,1.506364037363923024e-06,1.613961468604203331e-06,1.721558899844483638e-06,1.829156331084763944e-06,1.936753762325044251e-06,2.044351193565324770e-06,2.151948624805605288e-06,2.259546056045885807e-06,2.367143487286166325e-06,2.474740918526446844e-06,2.582338349766727362e-06,2.689935781007007881e-06,2.797533212247288399e-06,2.905130643487568918e-06,3.012728074727849436e-06,3.120325505968129955e-06,3.227922937208410473e-06,3.335520368448690992e-06,3.443117799688971510e-06,3.550715230929252029e-06,3.658312662169532547e-06,3.765910093409813066e-06,3.873507524650093584e-06,3.981104955890374103e-06,4.088702387130654621e-06,4.196299818370935140e-06,4.303897249611215658e-06,4.411494680851496177e-06,4.519092112091776695e-06,4.626689543332057214e-06,4.734286974572337732e-06,4.841884405812618251e-06,4.949481837052898770e-06,5.057079268293179288e-06,5.164676699533459807e-06,5.272274130773740325e-06,5.379871562014020844e-06,5.487468993254301362e-06,5.595066424494581881e-06,5.702663855734862399e-06,5.810261286975142918e-06,5.917858718215423436e-06,6.025456149455703955e-06,6.133053580695984473e-06,6.240651011936264992e-06,6.348248443176545510e-06,6.455845874416826029e-06,6.563443305657106547e-06,6.671040736897387066e-06,6.778638168137667584e-06 +0.000000000000000000e+00,1.060920849791172616e-07,2.121841699582345232e-07,3.182762549373517848e-07,4.243683399164690464e-07,5.304604248955863080e-07,6.365525098747035695e-07,7.426445948538208311e-07,8.487366798329380927e-07,9.548287648120554602e-07,1.060920849791172828e-06,1.167012934770290195e-06,1.273105019749407563e-06,1.379197104728524930e-06,1.485289189707642298e-06,1.591381274686759665e-06,1.697473359665877032e-06,1.803565444644994400e-06,1.909657529624111767e-06,2.015749614603229135e-06,2.121841699582346502e-06,2.227933784561463870e-06,2.334025869540581237e-06,2.440117954519698605e-06,2.546210039498815972e-06,2.652302124477933340e-06,2.758394209457050707e-06,2.864486294436168075e-06,2.970578379415285442e-06,3.076670464394402810e-06,3.182762549373520177e-06,3.288854634352637545e-06,3.394946719331754912e-06,3.501038804310872279e-06,3.607130889289989647e-06,3.713222974269107014e-06,3.819315059248224382e-06,3.925407144227341326e-06,4.031499229206458270e-06,4.137591314185575214e-06,4.243683399164692158e-06,4.349775484143809102e-06,4.455867569122926046e-06,4.561959654102042990e-06,4.668051739081159934e-06,4.774143824060276877e-06,4.880235909039393821e-06,4.986327994018510765e-06,5.092420078997627709e-06,5.198512163976744653e-06,5.304604248955861597e-06,5.410696333934978541e-06,5.516788418914095485e-06,5.622880503893212429e-06,5.728972588872329373e-06,5.835064673851446317e-06,5.941156758830563261e-06,6.047248843809680205e-06,6.153340928788797149e-06,6.259433013767914093e-06,6.365525098747031037e-06,6.471617183726147981e-06,6.577709268705264925e-06,6.683801353684381869e-06 +0.000000000000000000e+00,1.041339928546350104e-07,2.082679857092700208e-07,3.124019785639050312e-07,4.165359714185400417e-07,5.206699642731750521e-07,6.248039571278100625e-07,7.289379499824450729e-07,8.330719428370800833e-07,9.372059356917150937e-07,1.041339928546350104e-06,1.145473921400985009e-06,1.249607914255619913e-06,1.353741907110254818e-06,1.457875899964889722e-06,1.562009892819524627e-06,1.666143885674159531e-06,1.770277878528794436e-06,1.874411871383429340e-06,1.978545864238064245e-06,2.082679857092698938e-06,2.186813849947333631e-06,2.290947842801968323e-06,2.395081835656603016e-06,2.499215828511237709e-06,2.603349821365872402e-06,2.707483814220507094e-06,2.811617807075141787e-06,2.915751799929776480e-06,3.019885792784411173e-06,3.124019785639045866e-06,3.228153778493680558e-06,3.332287771348315251e-06,3.436421764202949944e-06,3.540555757057584637e-06,3.644689749912219329e-06,3.748823742766854022e-06,3.852957735621488291e-06,3.957091728476122561e-06,4.061225721330756830e-06,4.165359714185391099e-06,4.269493707040025369e-06,4.373627699894659638e-06,4.477761692749293907e-06,4.581895685603928176e-06,4.686029678458562446e-06,4.790163671313196715e-06,4.894297664167830984e-06,4.998431657022465253e-06,5.102565649877099523e-06,5.206699642731733792e-06,5.310833635586368061e-06,5.414967628441002330e-06,5.519101621295636600e-06,5.623235614150270869e-06,5.727369607004905138e-06,5.831503599859539407e-06,5.935637592714173677e-06,6.039771585568807946e-06,6.143905578423442215e-06,6.248039571278076485e-06,6.352173564132710754e-06,6.456307556987345023e-06,6.560441549841979292e-06 +0.000000000000000000e+00,1.114447864075054939e-07,2.228895728150109877e-07,3.343343592225164948e-07,4.457791456300220284e-07,5.572239320375275090e-07,6.686687184450329896e-07,7.801135048525384702e-07,8.915582912600439508e-07,1.003003077667549431e-06,1.114447864075055018e-06,1.225892650482560604e-06,1.337337436890066191e-06,1.448782223297571777e-06,1.560227009705077364e-06,1.671671796112582950e-06,1.783116582520088537e-06,1.894561368927594123e-06,2.006006155335099710e-06,2.117450941742605085e-06,2.228895728150110459e-06,2.340340514557615834e-06,2.451785300965121209e-06,2.563230087372626584e-06,2.674674873780131958e-06,2.786119660187637333e-06,2.897564446595142708e-06,3.009009233002648083e-06,3.120454019410153457e-06,3.231898805817658832e-06,3.343343592225164207e-06,3.454788378632669582e-06,3.566233165040174956e-06,3.677677951447680331e-06,3.789122737855185706e-06,3.900567524262691081e-06,4.012012310670196879e-06,4.123457097077702677e-06,4.234901883485208475e-06,4.346346669892714274e-06,4.457791456300220072e-06,4.569236242707725870e-06,4.680681029115231668e-06,4.792125815522737467e-06,4.903570601930243265e-06,5.015015388337749063e-06,5.126460174745254861e-06,5.237904961152760660e-06,5.349349747560266458e-06,5.460794533967772256e-06,5.572239320375278054e-06,5.683684106782783853e-06,5.795128893190289651e-06,5.906573679597795449e-06,6.018018466005301247e-06,6.129463252412807046e-06,6.240908038820312844e-06,6.352352825227818642e-06,6.463797611635324440e-06,6.575242398042830239e-06,6.686687184450336037e-06,6.798131970857841835e-06,6.909576757265347633e-06,7.021021543672853432e-06 +0.000000000000000000e+00,1.094184959478023028e-07,2.188369918956046056e-07,3.282554878434068951e-07,4.376739837912091582e-07,5.470924797390114213e-07,6.565109756868136843e-07,7.659294716346159474e-07,8.753479675824182105e-07,9.847664635302204736e-07,1.094184959478022843e-06,1.203603455425825211e-06,1.313021951373627580e-06,1.422440447321429949e-06,1.531858943269232318e-06,1.641277439217034687e-06,1.750695935164837056e-06,1.860114431112639425e-06,1.969532927060441794e-06,2.078951423008244163e-06,2.188369918956046532e-06,2.297788414903848901e-06,2.407206910851651270e-06,2.516625406799453639e-06,2.626043902747256008e-06,2.735462398695058377e-06,2.844880894642860746e-06,2.954299390590663115e-06,3.063717886538465484e-06,3.173136382486267853e-06,3.282554878434070222e-06,3.391973374381872591e-06,3.501391870329674959e-06,3.610810366277477328e-06,3.720228862225279697e-06,3.829647358173082490e-06,3.939065854120885282e-06,4.048484350068688075e-06,4.157902846016490867e-06,4.267321341964293660e-06,4.376739837912096452e-06,4.486158333859899245e-06,4.595576829807702037e-06,4.704995325755504830e-06,4.814413821703307622e-06,4.923832317651110415e-06,5.033250813598913207e-06,5.142669309546716000e-06,5.252087805494518792e-06,5.361506301442321584e-06,5.470924797390124377e-06,5.580343293337927169e-06,5.689761789285729962e-06,5.799180285233532754e-06,5.908598781181335547e-06,6.018017277129138339e-06,6.127435773076941132e-06,6.236854269024743924e-06,6.346272764972546717e-06,6.455691260920349509e-06,6.565109756868152302e-06,6.674528252815955094e-06,6.783946748763757887e-06,6.893365244711560679e-06 +0.000000000000000000e+00,1.075006758612061939e-07,2.150013517224123878e-07,3.225020275836185950e-07,4.300027034448248286e-07,5.375033793060311152e-07,6.450040551672374018e-07,7.525047310284436883e-07,8.600054068896499749e-07,9.675060827508562615e-07,1.075006758612062654e-06,1.182507434473269046e-06,1.290008110334475439e-06,1.397508786195681831e-06,1.505009462056888224e-06,1.612510137918094616e-06,1.720010813779301009e-06,1.827511489640507401e-06,1.935012165501713793e-06,2.042512841362920398e-06,2.150013517224127002e-06,2.257514193085333606e-06,2.365014868946540210e-06,2.472515544807746814e-06,2.580016220668953419e-06,2.687516896530160023e-06,2.795017572391366627e-06,2.902518248252573231e-06,3.010018924113779836e-06,3.117519599974986440e-06,3.225020275836193044e-06,3.332520951697399648e-06,3.440021627558606252e-06,3.547522303419812857e-06,3.655022979281019461e-06,3.762523655142226065e-06,3.870024331003432669e-06,3.977525006864639273e-06,4.085025682725845878e-06,4.192526358587052482e-06,4.300027034448259086e-06,4.407527710309465690e-06,4.515028386170672294e-06,4.622529062031878899e-06,4.730029737893085503e-06,4.837530413754292107e-06,4.945031089615498711e-06,5.052531765476705315e-06,5.160032441337911920e-06,5.267533117199118524e-06,5.375033793060325128e-06,5.482534468921531732e-06,5.590035144782738336e-06,5.697535820643944941e-06,5.805036496505151545e-06,5.912537172366358149e-06,6.020037848227564753e-06,6.127538524088771357e-06,6.235039199949977962e-06,6.342539875811184566e-06,6.450040551672391170e-06,6.557541227533597774e-06,6.665041903394804378e-06,6.772542579256010983e-06 +0.000000000000000000e+00,1.114447864074972220e-07,2.228895728149944441e-07,3.343343592224916661e-07,4.457791456299888882e-07,5.572239320374861102e-07,6.686687184449833323e-07,7.801135048524805543e-07,8.915582912599777764e-07,1.003003077667475104e-06,1.114447864074972432e-06,1.225892650482469760e-06,1.337337436889967088e-06,1.448782223297464416e-06,1.560227009704961744e-06,1.671671796112459072e-06,1.783116582519956400e-06,1.894561368927453728e-06,2.006006155334951056e-06,2.117450941742448384e-06,2.228895728149945712e-06,2.340340514557443039e-06,2.451785300964940367e-06,2.563230087372437695e-06,2.674674873779935023e-06,2.786119660187432351e-06,2.897564446594929679e-06,3.009009233002427007e-06,3.120454019409924335e-06,3.231898805817421663e-06,3.343343592224918991e-06,3.454788378632416319e-06,3.566233165039913647e-06,3.677677951447410975e-06,3.789122737854908303e-06,3.900567524262405630e-06,4.012012310669902958e-06,4.123457097077400286e-06,4.234901883484897614e-06,4.346346669892394942e-06,4.457791456299892270e-06,4.569236242707389598e-06,4.680681029114886926e-06,4.792125815522384254e-06,4.903570601929881582e-06,5.015015388337378910e-06,5.126460174744876238e-06,5.237904961152373566e-06,5.349349747559870893e-06,5.460794533967368221e-06,5.572239320374865549e-06,5.683684106782362877e-06,5.795128893189860205e-06,5.906573679597357533e-06,6.018018466004854861e-06,6.129463252412352189e-06,6.240908038819849517e-06,6.352352825227346845e-06,6.463797611634844173e-06,6.575242398042341501e-06,6.686687184449838829e-06,6.798131970857336157e-06,6.909576757264833484e-06,7.021021543672330812e-06 +0.000000000000000000e+00,1.094184959477950501e-07,2.188369918955901001e-07,3.282554878433851369e-07,4.376739837911801473e-07,5.470924797389752106e-07,6.565109756867702739e-07,7.659294716345653372e-07,8.753479675823604005e-07,9.847664635301554638e-07,1.094184959477950421e-06,1.203603455425745379e-06,1.313021951373540336e-06,1.422440447321335293e-06,1.531858943269130251e-06,1.641277439216925208e-06,1.750695935164720166e-06,1.860114431112515123e-06,1.969532927060310081e-06,2.078951423008104826e-06,2.188369918955899572e-06,2.297788414903694317e-06,2.407206910851489063e-06,2.516625406799283809e-06,2.626043902747078554e-06,2.735462398694873300e-06,2.844880894642668046e-06,2.954299390590462791e-06,3.063717886538257537e-06,3.173136382486052283e-06,3.282554878433847028e-06,3.391973374381641774e-06,3.501391870329436520e-06,3.610810366277231265e-06,3.720228862225026011e-06,3.829647358172820757e-06,3.939065854120615926e-06,4.048484350068411095e-06,4.157902846016206264e-06,4.267321341964001433e-06,4.376739837911796603e-06,4.486158333859591772e-06,4.595576829807386941e-06,4.704995325755182110e-06,4.814413821702977279e-06,4.923832317650772448e-06,5.033250813598567618e-06,5.142669309546362787e-06,5.252087805494157956e-06,5.361506301441953125e-06,5.470924797389748294e-06,5.580343293337543463e-06,5.689761789285338633e-06,5.799180285233133802e-06,5.908598781180928971e-06,6.018017277128724140e-06,6.127435773076519309e-06,6.236854269024314479e-06,6.346272764972109648e-06,6.455691260919904817e-06,6.565109756867699986e-06,6.674528252815495155e-06,6.783946748763290324e-06,6.893365244711085494e-06 +0.000000000000000000e+00,1.075006758611994309e-07,2.150013517223988618e-07,3.225020275835983191e-07,4.300027034447977765e-07,5.375033793059972339e-07,6.450040551671966383e-07,7.525047310283960427e-07,8.600054068895954471e-07,9.675060827507948516e-07,1.075006758611994256e-06,1.182507434473193660e-06,1.290008110334393065e-06,1.397508786195592469e-06,1.505009462056791874e-06,1.612510137917991278e-06,1.720010813779190683e-06,1.827511489640390087e-06,1.935012165501589280e-06,2.042512841362788261e-06,2.150013517223987241e-06,2.257514193085186222e-06,2.365014868946385203e-06,2.472515544807584184e-06,2.580016220668783165e-06,2.687516896529982146e-06,2.795017572391181127e-06,2.902518248252380108e-06,3.010018924113579089e-06,3.117519599974778070e-06,3.225020275835977051e-06,3.332520951697176031e-06,3.440021627558375012e-06,3.547522303419573993e-06,3.655022979280772974e-06,3.762523655141971955e-06,3.870024331003170936e-06,3.977525006864369917e-06,4.085025682725568898e-06,4.192526358586767879e-06,4.300027034447966860e-06,4.407527710309165840e-06,4.515028386170364821e-06,4.622529062031563802e-06,4.730029737892762783e-06,4.837530413753961764e-06,4.945031089615160745e-06,5.052531765476359726e-06,5.160032441337558707e-06,5.267533117198757688e-06,5.375033793059956669e-06,5.482534468921155650e-06,5.590035144782354630e-06,5.697535820643553611e-06,5.805036496504752592e-06,5.912537172365951573e-06,6.020037848227150554e-06,6.127538524088349535e-06,6.235039199949548516e-06,6.342539875810747497e-06,6.450040551671946478e-06,6.557541227533145459e-06,6.665041903394344440e-06,6.772542579255543420e-06 +0.000000000000000000e+00,1.157547011008102554e-07,2.315094022016205108e-07,3.472641033024307398e-07,4.630188044032409687e-07,5.787735055040511977e-07,6.945282066048614796e-07,8.102829077056717615e-07,9.260376088064820433e-07,1.041792309907292431e-06,1.157547011008102819e-06,1.273301712108913207e-06,1.389056413209723594e-06,1.504811114310533982e-06,1.620565815411344370e-06,1.736320516512154758e-06,1.852075217612965145e-06,1.967829918713775533e-06,2.083584619814585709e-06,2.199339320915395885e-06,2.315094022016206061e-06,2.430848723117016237e-06,2.546603424217826413e-06,2.662358125318636589e-06,2.778112826419446765e-06,2.893867527520256941e-06,3.009622228621067117e-06,3.125376929721877293e-06,3.241131630822687469e-06,3.356886331923497645e-06,3.472641033024307821e-06,3.588395734125117997e-06,3.704150435225928173e-06,3.819905136326738349e-06,3.935659837427548525e-06,4.051414538528358701e-06,4.167169239629168877e-06,4.282923940729979053e-06,4.398678641830789229e-06,4.514433342931599405e-06,4.630188044032409581e-06,4.745942745133219757e-06,4.861697446234029933e-06,4.977452147334840109e-06,5.093206848435650285e-06,5.208961549536460461e-06,5.324716250637270637e-06,5.440470951738080813e-06,5.556225652838890989e-06,5.671980353939701165e-06,5.787735055040511342e-06,5.903489756141321518e-06,6.019244457242131694e-06,6.134999158342941870e-06,6.250753859443752046e-06,6.366508560544562222e-06,6.482263261645372398e-06,6.598017962746182574e-06,6.713772663846992750e-06,6.829527364947802926e-06,6.945282066048613102e-06,7.061036767149423278e-06,7.176791468250233454e-06,7.292546169351043630e-06 +0.000000000000000000e+00,1.135690430873283688e-07,2.271380861746567376e-07,3.407071292619851196e-07,4.542761723493135281e-07,5.678452154366419896e-07,6.814142585239704510e-07,7.949833016112989125e-07,9.085523446986273739e-07,1.022121387785955835e-06,1.135690430873284403e-06,1.249259473960612970e-06,1.362828517047941537e-06,1.476397560135270105e-06,1.589966603222598672e-06,1.703535646309927239e-06,1.817104689397255807e-06,1.930673732484584162e-06,2.044242775571912518e-06,2.157811818659240873e-06,2.271380861746569229e-06,2.384949904833897584e-06,2.498518947921225940e-06,2.612087991008554296e-06,2.725657034095882651e-06,2.839226077183211007e-06,2.952795120270539362e-06,3.066364163357867718e-06,3.179933206445196073e-06,3.293502249532524429e-06,3.407071292619852785e-06,3.520640335707181140e-06,3.634209378794509496e-06,3.747778421881837851e-06,3.861347464969166630e-06,3.974916508056495409e-06,4.088485551143824189e-06,4.202054594231152968e-06,4.315623637318481747e-06,4.429192680405810526e-06,4.542761723493139305e-06,4.656330766580468084e-06,4.769899809667796863e-06,4.883468852755125642e-06,4.997037895842454421e-06,5.110606938929783200e-06,5.224175982017111979e-06,5.337745025104440758e-06,5.451314068191769538e-06,5.564883111279098317e-06,5.678452154366427096e-06,5.792021197453755875e-06,5.905590240541084654e-06,6.019159283628413433e-06,6.132728326715742212e-06,6.246297369803070991e-06,6.359866412890399770e-06,6.473435455977728549e-06,6.587004499065057328e-06,6.700573542152386107e-06,6.814142585239714887e-06,6.927711628327043666e-06,7.041280671414372445e-06,7.154849714501701224e-06 +0.000000000000000000e+00,1.112664252560620751e-07,2.225328505121241502e-07,3.337992757681862518e-07,4.450657010242483534e-07,5.563321262803104550e-07,6.675985515363725036e-07,7.788649767924345523e-07,8.901314020484966009e-07,1.001397827304558650e-06,1.112664252560620698e-06,1.223930677816682747e-06,1.335197103072744795e-06,1.446463528328806844e-06,1.557729953584868893e-06,1.668996378840930941e-06,1.780262804096992990e-06,1.891529229353055039e-06,2.002795654609116876e-06,2.114062079865178924e-06,2.225328505121240973e-06,2.336594930377303022e-06,2.447861355633365070e-06,2.559127780889427119e-06,2.670394206145489167e-06,2.781660631401551216e-06,2.892927056657613265e-06,3.004193481913675313e-06,3.115459907169737362e-06,3.226726332425799411e-06,3.337992757681861459e-06,3.449259182937923508e-06,3.560525608193985557e-06,3.671792033450047605e-06,3.783058458706109654e-06,3.894324883962171703e-06,4.005591309218233751e-06,4.116857734474295800e-06,4.228124159730357848e-06,4.339390584986419897e-06,4.450657010242481946e-06,4.561923435498543994e-06,4.673189860754606043e-06,4.784456286010668092e-06,4.895722711266730140e-06,5.006989136522792189e-06,5.118255561778854238e-06,5.229521987034916286e-06,5.340788412290978335e-06,5.452054837547040384e-06,5.563321262803102432e-06,5.674587688059164481e-06,5.785854113315226530e-06,5.897120538571288578e-06,6.008386963827350627e-06,6.119653389083412675e-06,6.230919814339474724e-06,6.342186239595536773e-06,6.453452664851598821e-06,6.564719090107660870e-06,6.675985515363722919e-06,6.787251940619784967e-06,6.898518365875847016e-06,7.009784791131909065e-06 +0.000000000000000000e+00,1.157547011008009513e-07,2.315094022016019026e-07,3.472641033024028406e-07,4.630188044032037522e-07,5.787735055040047167e-07,6.945282066048056813e-07,8.102829077056066458e-07,9.260376088064076103e-07,1.041792309907208575e-06,1.157547011008009433e-06,1.273301712108810292e-06,1.389056413209611151e-06,1.504811114310412009e-06,1.620565815411212868e-06,1.736320516512013727e-06,1.852075217612814585e-06,1.967829918713615444e-06,2.083584619814416303e-06,2.199339320915217161e-06,2.315094022016018020e-06,2.430848723116818879e-06,2.546603424217619737e-06,2.662358125318420596e-06,2.778112826419221455e-06,2.893867527520022313e-06,3.009622228620823172e-06,3.125376929721624030e-06,3.241131630822424889e-06,3.356886331923225748e-06,3.472641033024026606e-06,3.588395734124827465e-06,3.704150435225628324e-06,3.819905136326429182e-06,3.935659837427230041e-06,4.051414538528030900e-06,4.167169239628831758e-06,4.282923940729632617e-06,4.398678641830433476e-06,4.514433342931234334e-06,4.630188044032035193e-06,4.745942745132836052e-06,4.861697446233636910e-06,4.977452147334437769e-06,5.093206848435238627e-06,5.208961549536039486e-06,5.324716250636840345e-06,5.440470951737641203e-06,5.556225652838442062e-06,5.671980353939242921e-06,5.787735055040043779e-06,5.903489756140844638e-06,6.019244457241645497e-06,6.134999158342446355e-06,6.250753859443247214e-06,6.366508560544048073e-06,6.482263261644848931e-06,6.598017962745649790e-06,6.713772663846450648e-06,6.829527364947251507e-06,6.945282066048052366e-06,7.061036767148853224e-06,7.176791468249654083e-06,7.292546169350454942e-06 +0.000000000000000000e+00,1.135690430873192103e-07,2.271380861746384205e-07,3.407071292619576440e-07,4.542761723492768940e-07,5.678452154365961439e-07,6.814142585239153939e-07,7.949833016112346439e-07,9.085523446985538938e-07,1.022121387785873038e-06,1.135690430873192076e-06,1.249259473960511114e-06,1.362828517047830153e-06,1.476397560135149191e-06,1.589966603222468229e-06,1.703535646309787267e-06,1.817104689397106305e-06,1.930673732484425344e-06,2.044242775571744382e-06,2.157811818659063420e-06,2.271380861746382458e-06,2.384949904833701496e-06,2.498518947921020535e-06,2.612087991008339573e-06,2.725657034095658611e-06,2.839226077182977649e-06,2.952795120270296687e-06,3.066364163357615726e-06,3.179933206444934764e-06,3.293502249532253802e-06,3.407071292619572840e-06,3.520640335706891878e-06,3.634209378794210917e-06,3.747778421881529955e-06,3.861347464968848993e-06,3.974916508056167608e-06,4.088485551143486222e-06,4.202054594230804837e-06,4.315623637318123452e-06,4.429192680405442066e-06,4.542761723492760681e-06,4.656330766580079296e-06,4.769899809667397911e-06,4.883468852754716525e-06,4.997037895842035140e-06,5.110606938929353755e-06,5.224175982016672369e-06,5.337745025103990984e-06,5.451314068191309599e-06,5.564883111278628213e-06,5.678452154365946828e-06,5.792021197453265443e-06,5.905590240540584057e-06,6.019159283627902672e-06,6.132728326715221287e-06,6.246297369802539901e-06,6.359866412889858516e-06,6.473435455977177131e-06,6.587004499064495746e-06,6.700573542151814360e-06,6.814142585239132975e-06,6.927711628326451590e-06,7.041280671413770204e-06,7.154849714501088819e-06 +0.000000000000000000e+00,1.112664252560534460e-07,2.225328505121068919e-07,3.337992757681603114e-07,4.450657010242137309e-07,5.563321262802671504e-07,6.675985515363206229e-07,7.788649767923740953e-07,8.901314020484275677e-07,1.001397827304480934e-06,1.112664252560534301e-06,1.223930677816587667e-06,1.335197103072641034e-06,1.446463528328694401e-06,1.557729953584747767e-06,1.668996378840801134e-06,1.780262804096854500e-06,1.891529229352907867e-06,2.002795654608961022e-06,2.114062079865014176e-06,2.225328505121067331e-06,2.336594930377120486e-06,2.447861355633173641e-06,2.559127780889226796e-06,2.670394206145279950e-06,2.781660631401333105e-06,2.892927056657386260e-06,3.004193481913439415e-06,3.115459907169492570e-06,3.226726332425545724e-06,3.337992757681598879e-06,3.449259182937652034e-06,3.560525608193705189e-06,3.671792033449758344e-06,3.783058458705811498e-06,3.894324883961864230e-06,4.005591309217916961e-06,4.116857734473969692e-06,4.228124159730022423e-06,4.339390584986075155e-06,4.450657010242127886e-06,4.561923435498180617e-06,4.673189860754233349e-06,4.784456286010286080e-06,4.895722711266338811e-06,5.006989136522391542e-06,5.118255561778444274e-06,5.229521987034497005e-06,5.340788412290549736e-06,5.452054837546602468e-06,5.563321262802655199e-06,5.674587688058707930e-06,5.785854113314760661e-06,5.897120538570813393e-06,6.008386963826866124e-06,6.119653389082918855e-06,6.230919814338971587e-06,6.342186239595024318e-06,6.453452664851077049e-06,6.564719090107129780e-06,6.675985515363182512e-06,6.787251940619235243e-06,6.898518365875287974e-06,7.009784791131340705e-06 +0.000000000000000000e+00,1.201856798916191356e-07,2.403713597832382712e-07,3.605570396748574068e-07,4.807427195664765425e-07,6.009283994580956781e-07,7.211140793497148137e-07,8.412997592413339493e-07,9.614854391329530849e-07,1.081671119024572115e-06,1.201856798916191144e-06,1.322042478807810174e-06,1.442228158699429204e-06,1.562413838591048234e-06,1.682599518482667263e-06,1.802785198374286293e-06,1.922970878265905323e-06,2.043156558157524353e-06,2.163342238049143382e-06,2.283527917940762412e-06,2.403713597832381442e-06,2.523899277724000471e-06,2.644084957615619501e-06,2.764270637507238531e-06,2.884456317398857561e-06,3.004641997290476590e-06,3.124827677182095620e-06,3.245013357073714650e-06,3.365199036965333680e-06,3.485384716856952709e-06,3.605570396748571739e-06,3.725756076640190769e-06,3.845941756531809799e-06,3.966127436423429252e-06,4.086313116315048705e-06,4.206498796206668158e-06,4.326684476098287612e-06,4.446870155989907065e-06,4.567055835881526518e-06,4.687241515773145971e-06,4.807427195664765425e-06,4.927612875556384878e-06,5.047798555448004331e-06,5.167984235339623784e-06,5.288169915231243238e-06,5.408355595122862691e-06,5.528541275014482144e-06,5.648726954906101597e-06,5.768912634797721051e-06,5.889098314689340504e-06,6.009283994580959957e-06,6.129469674472579410e-06,6.249655354364198864e-06,6.369841034255818317e-06,6.490026714147437770e-06,6.610212394039057223e-06,6.730398073930676677e-06,6.850583753822296130e-06,6.970769433713915583e-06,7.090955113605535036e-06,7.211140793497154490e-06,7.331326473388773943e-06,7.451512153280393396e-06,7.571697833172012849e-06 +0.000000000000000000e+00,1.179640410191362211e-07,2.359280820382724423e-07,3.538921230574086370e-07,4.718561640765448317e-07,5.898202050956810263e-07,7.077842461148172739e-07,8.257482871339535216e-07,9.437123281530897692e-07,1.061676369172226017e-06,1.179640410191362264e-06,1.297604451210498512e-06,1.415568492229634760e-06,1.533532533248771007e-06,1.651496574267907255e-06,1.769460615287043503e-06,1.887424656306179750e-06,2.005388697325315998e-06,2.123352738344452034e-06,2.241316779363588069e-06,2.359280820382724105e-06,2.477244861401860141e-06,2.595208902420996177e-06,2.713172943440132213e-06,2.831136984459268249e-06,2.949101025478404285e-06,3.067065066497540320e-06,3.185029107516676356e-06,3.302993148535812392e-06,3.420957189554948428e-06,3.538921230574084464e-06,3.656885271593220500e-06,3.774849312612356536e-06,3.892813353631492571e-06,4.010777394650628607e-06,4.128741435669764643e-06,4.246705476688900679e-06,4.364669517708036715e-06,4.482633558727172751e-06,4.600597599746308787e-06,4.718561640765444822e-06,4.836525681784580858e-06,4.954489722803716894e-06,5.072453763822852930e-06,5.190417804841988966e-06,5.308381845861125002e-06,5.426345886880261038e-06,5.544309927899397074e-06,5.662273968918533109e-06,5.780238009937669145e-06,5.898202050956805181e-06,6.016166091975941217e-06,6.134130132995077253e-06,6.252094174014213289e-06,6.370058215033349325e-06,6.488022256052485360e-06,6.605986297071621396e-06,6.723950338090757432e-06,6.841914379109893468e-06,6.959878420129029504e-06,7.077842461148165540e-06,7.195806502167301576e-06,7.313770543186437611e-06,7.431734584205573647e-06 +0.000000000000000000e+00,1.150933295487729391e-07,2.301866590975458782e-07,3.452799886463187908e-07,4.603733181950917035e-07,5.754666477438646161e-07,6.905599772926375817e-07,8.056533068414105472e-07,9.207466363901835128e-07,1.035839965938956478e-06,1.150933295487729444e-06,1.266026625036502409e-06,1.381119954585275375e-06,1.496213284134048341e-06,1.611306613682821306e-06,1.726399943231594272e-06,1.841493272780367237e-06,1.956586602329140415e-06,2.071679931877913380e-06,2.186773261426686346e-06,2.301866590975459311e-06,2.416959920524232277e-06,2.532053250073005243e-06,2.647146579621778208e-06,2.762239909170551174e-06,2.877333238719324139e-06,2.992426568268097105e-06,3.107519897816870070e-06,3.222613227365643036e-06,3.337706556914416001e-06,3.452799886463188967e-06,3.567893216011961933e-06,3.682986545560734898e-06,3.798079875109507864e-06,3.913173204658280829e-06,4.028266534207053795e-06,4.143359863755826760e-06,4.258453193304599726e-06,4.373546522853372692e-06,4.488639852402145657e-06,4.603733181950918623e-06,4.718826511499691588e-06,4.833919841048464554e-06,4.949013170597237519e-06,5.064106500146010485e-06,5.179199829694783451e-06,5.294293159243556416e-06,5.409386488792329382e-06,5.524479818341102347e-06,5.639573147889875313e-06,5.754666477438648278e-06,5.869759806987421244e-06,5.984853136536194210e-06,6.099946466084967175e-06,6.215039795633740141e-06,6.330133125182513106e-06,6.445226454731286072e-06,6.560319784280059037e-06,6.675413113828832003e-06,6.790506443377604969e-06,6.905599772926377934e-06,7.020693102475150900e-06,7.135786432023923865e-06,7.250879761572696831e-06 +0.000000000000000000e+00,1.201856798916076213e-07,2.403713597832152425e-07,3.605570396748228902e-07,4.807427195664305909e-07,6.009283994580382916e-07,7.211140793496459922e-07,8.412997592412536929e-07,9.614854391328613936e-07,1.081671119024469200e-06,1.201856798916077007e-06,1.322042478807684813e-06,1.442228158699292620e-06,1.562413838590900426e-06,1.682599518482508233e-06,1.802785198374116039e-06,1.922970878265724058e-06,2.043156558157332076e-06,2.163342238048940094e-06,2.283527917940548113e-06,2.403713597832156131e-06,2.523899277723764149e-06,2.644084957615372168e-06,2.764270637506980186e-06,2.884456317398588204e-06,3.004641997290196222e-06,3.124827677181804241e-06,3.245013357073412259e-06,3.365199036965020277e-06,3.485384716856628296e-06,3.605570396748236314e-06,3.725756076639844332e-06,3.845941756531452351e-06,3.966127436423059945e-06,4.086313116314667540e-06,4.206498796206275135e-06,4.326684476097882730e-06,4.446870155989490325e-06,4.567055835881097919e-06,4.687241515772705514e-06,4.807427195664313109e-06,4.927612875555920704e-06,5.047798555447528298e-06,5.167984235339135893e-06,5.288169915230743488e-06,5.408355595122351083e-06,5.528541275013958678e-06,5.648726954905566272e-06,5.768912634797173867e-06,5.889098314688781462e-06,6.009283994580389057e-06,6.129469674471996652e-06,6.249655354363604246e-06,6.369841034255211841e-06,6.490026714146819436e-06,6.610212394038427031e-06,6.730398073930034626e-06,6.850583753821642220e-06,6.970769433713249815e-06,7.090955113604857410e-06,7.211140793496465005e-06,7.331326473388072599e-06,7.451512153279680194e-06,7.571697833171287789e-06 +0.000000000000000000e+00,1.179640410191256597e-07,2.359280820382513194e-07,3.538921230573769791e-07,4.718561640765026388e-07,5.898202050956282985e-07,7.077842461147539582e-07,8.257482871338796179e-07,9.437123281530052776e-07,1.061676369172130937e-06,1.179640410191256597e-06,1.297604451210382257e-06,1.415568492229507916e-06,1.533532533248633576e-06,1.651496574267759236e-06,1.769460615286884896e-06,1.887424656306010555e-06,2.005388697325136427e-06,2.123352738344262298e-06,2.241316779363388170e-06,2.359280820382514041e-06,2.477244861401639913e-06,2.595208902420765784e-06,2.713172943439891656e-06,2.831136984459017527e-06,2.949101025478143398e-06,3.067065066497269270e-06,3.185029107516395141e-06,3.302993148535521013e-06,3.420957189554646884e-06,3.538921230573772756e-06,3.656885271592898627e-06,3.774849312612024499e-06,3.892813353631150370e-06,4.010777394650276242e-06,4.128741435669402113e-06,4.246705476688527985e-06,4.364669517707653856e-06,4.482633558726779727e-06,4.600597599745905599e-06,4.718561640765031470e-06,4.836525681784157342e-06,4.954489722803283213e-06,5.072453763822409085e-06,5.190417804841534956e-06,5.308381845860660828e-06,5.426345886879786699e-06,5.544309927898912571e-06,5.662273968918038442e-06,5.780238009937164314e-06,5.898202050956290185e-06,6.016166091975416057e-06,6.134130132994541928e-06,6.252094174013667799e-06,6.370058215032793671e-06,6.488022256051919542e-06,6.605986297071045414e-06,6.723950338090171285e-06,6.841914379109297157e-06,6.959878420128423028e-06,7.077842461147548900e-06,7.195806502166674771e-06,7.313770543185800643e-06,7.431734584204926514e-06 +0.000000000000000000e+00,1.150933295487624041e-07,2.301866590975248083e-07,3.452799886462872388e-07,4.603733181950496694e-07,5.754666477438121000e-07,6.905599772925744777e-07,8.056533068413368554e-07,9.207466363900992330e-07,1.035839965938861611e-06,1.150933295487623988e-06,1.266026625036386366e-06,1.381119954585148744e-06,1.496213284133911121e-06,1.611306613682673499e-06,1.726399943231435877e-06,1.841493272780198254e-06,1.956586602328960844e-06,2.071679931877723645e-06,2.186773261426486446e-06,2.301866590975249247e-06,2.416959920524012048e-06,2.532053250072774850e-06,2.647146579621537651e-06,2.762239909170300452e-06,2.877333238719063253e-06,2.992426568267826054e-06,3.107519897816588855e-06,3.222613227365351657e-06,3.337706556914114458e-06,3.452799886462877259e-06,3.567893216011640060e-06,3.682986545560402861e-06,3.798079875109165662e-06,3.913173204657928464e-06,4.028266534206691265e-06,4.143359863755454066e-06,4.258453193304216867e-06,4.373546522852979668e-06,4.488639852401742469e-06,4.603733181950505271e-06,4.718826511499268072e-06,4.833919841048030873e-06,4.949013170596793674e-06,5.064106500145556475e-06,5.179199829694319277e-06,5.294293159243082078e-06,5.409386488791844879e-06,5.524479818340607680e-06,5.639573147889370481e-06,5.754666477438133282e-06,5.869759806986896084e-06,5.984853136535658885e-06,6.099946466084421686e-06,6.215039795633184487e-06,6.330133125181947288e-06,6.445226454730710089e-06,6.560319784279472891e-06,6.675413113828235692e-06,6.790506443376998493e-06,6.905599772925761294e-06,7.020693102474524095e-06,7.135786432023286896e-06,7.250879761572049698e-06 +0.000000000000000000e+00,1.246371051176347347e-07,2.492742102352694693e-07,3.739113153529042040e-07,4.985484204705389386e-07,6.231855255881736733e-07,7.478226307058084080e-07,8.724597358234431426e-07,9.970968409410778773e-07,1.121733946058712612e-06,1.246371051176347347e-06,1.371008156293982081e-06,1.495645261411616816e-06,1.620282366529251551e-06,1.744919471646886285e-06,1.869556576764521020e-06,1.994193681882155755e-06,2.118830786999790701e-06,2.243467892117425647e-06,2.368104997235060594e-06,2.492742102352695540e-06,2.617379207470330487e-06,2.742016312587965433e-06,2.866653417705600380e-06,2.991290522823235326e-06,3.115927627940870272e-06,3.240564733058505219e-06,3.365201838176140165e-06,3.489838943293775112e-06,3.614476048411410058e-06,3.739113153529045004e-06,3.863750258646679951e-06,3.988387363764314897e-06,4.113024468881949844e-06,4.237661573999584790e-06,4.362298679117219737e-06,4.486935784234854683e-06,4.611572889352489629e-06,4.736209994470124576e-06,4.860847099587759522e-06,4.985484204705394469e-06,5.110121309823029415e-06,5.234758414940664362e-06,5.359395520058299308e-06,5.484032625175934254e-06,5.608669730293569201e-06,5.733306835411204147e-06,5.857943940528839094e-06,5.982581045646474040e-06,6.107218150764108986e-06,6.231855255881743933e-06,6.356492360999378879e-06,6.481129466117013826e-06,6.605766571234648772e-06,6.730403676352283719e-06,6.855040781469918665e-06,6.979677886587553611e-06,7.104314991705188558e-06,7.228952096822823504e-06,7.353589201940458451e-06,7.478226307058093397e-06,7.602863412175728343e-06,7.727500517293363290e-06,7.852137622410997389e-06 +0.000000000000000000e+00,1.224099343724378667e-07,2.448198687448757335e-07,3.672298031173136002e-07,4.896397374897514669e-07,6.120496718621893336e-07,7.344596062346272004e-07,8.568695406070650671e-07,9.792794749795029338e-07,1.101689409351940906e-06,1.224099343724378879e-06,1.346509278096816852e-06,1.468919212469254824e-06,1.591329146841692797e-06,1.713739081214130769e-06,1.836149015586568742e-06,1.958558949959006715e-06,2.080968884331444687e-06,2.203378818703882660e-06,2.325788753076320633e-06,2.448198687448758605e-06,2.570608621821196578e-06,2.693018556193634550e-06,2.815428490566072523e-06,2.937838424938510496e-06,3.060248359310948468e-06,3.182658293683386441e-06,3.305068228055824413e-06,3.427478162428262386e-06,3.549888096800700359e-06,3.672298031173138331e-06,3.794707965545576304e-06,3.917117899918014276e-06,4.039527834290452673e-06,4.161937768662891069e-06,4.284347703035329465e-06,4.406757637407767861e-06,4.529167571780206257e-06,4.651577506152644653e-06,4.773987440525083049e-06,4.896397374897521445e-06,5.018807309269959842e-06,5.141217243642398238e-06,5.263627178014836634e-06,5.386037112387275030e-06,5.508447046759713426e-06,5.630856981132151822e-06,5.753266915504590218e-06,5.875676849877028614e-06,5.998086784249467010e-06,6.120496718621905407e-06,6.242906652994343803e-06,6.365316587366782199e-06,6.487726521739220595e-06,6.610136456111658991e-06,6.732546390484097387e-06,6.854956324856535783e-06,6.977366259228974179e-06,7.099776193601412576e-06,7.222186127973850972e-06,7.344596062346289368e-06,7.467005996718727764e-06,7.589415931091166160e-06,7.711825865463604556e-06 +0.000000000000000000e+00,1.188630494010210150e-07,2.377260988020420301e-07,3.565891482030630451e-07,4.754521976040840602e-07,5.943152470051050752e-07,7.131782964061260902e-07,8.320413458071471053e-07,9.509043952081681203e-07,1.069767444609189029e-06,1.188630494010209939e-06,1.307493543411230848e-06,1.426356592812251757e-06,1.545219642213272666e-06,1.664082691614293575e-06,1.782945741015314484e-06,1.901808790416335394e-06,2.020671839817356303e-06,2.139534889218377212e-06,2.258397938619398121e-06,2.377260988020419030e-06,2.496124037421439939e-06,2.614987086822460849e-06,2.733850136223481758e-06,2.852713185624502667e-06,2.971576235025523576e-06,3.090439284426544485e-06,3.209302333827565394e-06,3.328165383228586304e-06,3.447028432629607213e-06,3.565891482030628122e-06,3.684754531431649031e-06,3.803617580832669940e-06,3.922480630233690849e-06,4.041343679634711759e-06,4.160206729035732668e-06,4.279069778436753577e-06,4.397932827837774486e-06,4.516795877238795395e-06,4.635658926639816304e-06,4.754521976040837213e-06,4.873385025441858123e-06,4.992248074842879032e-06,5.111111124243899941e-06,5.229974173644920850e-06,5.348837223045941759e-06,5.467700272446962668e-06,5.586563321847983578e-06,5.705426371249004487e-06,5.824289420650025396e-06,5.943152470051046305e-06,6.062015519452067214e-06,6.180878568853088123e-06,6.299741618254109033e-06,6.418604667655129942e-06,6.537467717056150851e-06,6.656330766457171760e-06,6.775193815858192669e-06,6.894056865259213578e-06,7.012919914660234488e-06,7.131782964061255397e-06,7.250646013462276306e-06,7.369509062863297215e-06,7.488372112264318124e-06 +0.000000000000000000e+00,1.246371051176236703e-07,2.492742102352473406e-07,3.739113153528710109e-07,4.985484204704946812e-07,6.231855255881184044e-07,7.478226307057421276e-07,8.724597358233658509e-07,9.970968409409895741e-07,1.121733946058613297e-06,1.246371051176237021e-06,1.371008156293860744e-06,1.495645261411484467e-06,1.620282366529108190e-06,1.744919471646731914e-06,1.869556576764355637e-06,1.994193681881979572e-06,2.118830786999603507e-06,2.243467892117227442e-06,2.368104997234851377e-06,2.492742102352475312e-06,2.617379207470099247e-06,2.742016312587723182e-06,2.866653417705347117e-06,2.991290522822971052e-06,3.115927627940594987e-06,3.240564733058218922e-06,3.365201838175842857e-06,3.489838943293466792e-06,3.614476048411090727e-06,3.739113153528714662e-06,3.863750258646338597e-06,3.988387363763962532e-06,4.113024468881586467e-06,4.237661573999210402e-06,4.362298679116834337e-06,4.486935784234458272e-06,4.611572889352082207e-06,4.736209994469706142e-06,4.860847099587330077e-06,4.985484204704954012e-06,5.110121309822577947e-06,5.234758414940201882e-06,5.359395520057825817e-06,5.484032625175449752e-06,5.608669730293073686e-06,5.733306835410697621e-06,5.857943940528321556e-06,5.982581045645945491e-06,6.107218150763569426e-06,6.231855255881193361e-06,6.356492360998817296e-06,6.481129466116441231e-06,6.605766571234065166e-06,6.730403676351689101e-06,6.855040781469313036e-06,6.979677886586936971e-06,7.104314991704560906e-06,7.228952096822184841e-06,7.353589201939808776e-06,7.478226307057432711e-06,7.602863412175056646e-06,7.727500517292680581e-06,7.852137622410304516e-06 +0.000000000000000000e+00,1.224099343724266171e-07,2.448198687448532341e-07,3.672298031172798247e-07,4.896397374897063624e-07,6.120496718621329001e-07,7.344596062345594377e-07,8.568695406069859754e-07,9.792794749794125131e-07,1.101689409351839051e-06,1.224099343724265588e-06,1.346509278096692126e-06,1.468919212469118664e-06,1.591329146841545201e-06,1.713739081213971739e-06,1.836149015586398277e-06,1.958558949958824603e-06,2.080968884331251140e-06,2.203378818703677678e-06,2.325788753076104216e-06,2.448198687448530753e-06,2.570608621820957291e-06,2.693018556193383829e-06,2.815428490565810366e-06,2.937838424938236904e-06,3.060248359310663442e-06,3.182658293683089979e-06,3.305068228055516517e-06,3.427478162427943055e-06,3.549888096800369592e-06,3.672298031172796130e-06,3.794707965545222668e-06,3.917117899917649205e-06,4.039527834290075743e-06,4.161937768662502281e-06,4.284347703034928818e-06,4.406757637407355356e-06,4.529167571779781894e-06,4.651577506152208431e-06,4.773987440524634969e-06,4.896397374897061506e-06,5.018807309269488044e-06,5.141217243641914582e-06,5.263627178014341119e-06,5.386037112386767657e-06,5.508447046759194195e-06,5.630856981131620732e-06,5.753266915504047270e-06,5.875676849876473808e-06,5.998086784248900345e-06,6.120496718621326883e-06,6.242906652993753421e-06,6.365316587366179958e-06,6.487726521738606496e-06,6.610136456111033034e-06,6.732546390483459571e-06,6.854956324855886109e-06,6.977366259228312647e-06,7.099776193600739184e-06,7.222186127973165722e-06,7.344596062345592260e-06,7.467005996718018797e-06,7.589415931090445335e-06,7.711825865462871026e-06 +0.000000000000000000e+00,1.188630494010103477e-07,2.377260988020206954e-07,3.565891482030310696e-07,4.754521976040414438e-07,5.943152470050518180e-07,7.131782964060621393e-07,8.320413458070724605e-07,9.509043952080827818e-07,1.069767444609093103e-06,1.188630494010103424e-06,1.307493543411113745e-06,1.426356592812124067e-06,1.545219642213134388e-06,1.664082691614144709e-06,1.782945741015155030e-06,1.901808790416165352e-06,2.020671839817175885e-06,2.139534889218186630e-06,2.258397938619197374e-06,2.377260988020208119e-06,2.496124037421218864e-06,2.614987086822229609e-06,2.733850136223240353e-06,2.852713185624251098e-06,2.971576235025261843e-06,3.090439284426272588e-06,3.209302333827283332e-06,3.328165383228294077e-06,3.447028432629304822e-06,3.565891482030315567e-06,3.684754531431326311e-06,3.803617580832337056e-06,3.922480630233347801e-06,4.041343679634358546e-06,4.160206729035369291e-06,4.279069778436380035e-06,4.397932827837390780e-06,4.516795877238401525e-06,4.635658926639412270e-06,4.754521976040423014e-06,4.873385025441433759e-06,4.992248074842444504e-06,5.111111124243455249e-06,5.229974173644465993e-06,5.348837223045476738e-06,5.467700272446487483e-06,5.586563321847498228e-06,5.705426371248508972e-06,5.824289420649519717e-06,5.943152470050530462e-06,6.062015519451541207e-06,6.180878568852551952e-06,6.299741618253562696e-06,6.418604667654573441e-06,6.537467717055584186e-06,6.656330766456594931e-06,6.775193815857605675e-06,6.894056865258616420e-06,7.012919914659627165e-06,7.131782964060637910e-06,7.250646013461648654e-06,7.369509062862659399e-06,7.488372112263670144e-06 +0.000000000000000000e+00,1.291046735582562763e-07,2.582093471165125526e-07,3.873140206747688024e-07,5.164186942330249993e-07,6.455233677912811962e-07,7.746280413495373931e-07,9.037327149077935900e-07,1.032837388466049787e-06,1.161942062024305984e-06,1.291046735582562181e-06,1.420151409140818378e-06,1.549256082699074574e-06,1.678360756257330771e-06,1.807465429815586968e-06,1.936570103373842953e-06,2.065674776932099150e-06,2.194779450490355347e-06,2.323884124048611544e-06,2.452988797606867741e-06,2.582093471165123938e-06,2.711198144723380135e-06,2.840302818281636332e-06,2.969407491839892529e-06,3.098512165398148725e-06,3.227616838956404922e-06,3.356721512514661119e-06,3.485826186072917316e-06,3.614930859631173513e-06,3.744035533189429710e-06,3.873140206747685907e-06,4.002244880305942104e-06,4.131349553864198301e-06,4.260454227422454497e-06,4.389558900980710694e-06,4.518663574538966891e-06,4.647768248097223088e-06,4.776872921655479285e-06,4.905977595213735482e-06,5.035082268771991679e-06,5.164186942330247876e-06,5.293291615888504073e-06,5.422396289446760269e-06,5.551500963005016466e-06,5.680605636563272663e-06,5.809710310121528860e-06,5.938814983679785057e-06,6.067919657238041254e-06,6.197024330796297451e-06,6.326129004354553648e-06,6.455233677912809845e-06,6.584338351471066042e-06,6.713443025029322238e-06,6.842547698587578435e-06,6.971652372145834632e-06,7.100757045704090829e-06,7.229861719262347026e-06,7.358966392820603223e-06,7.488071066378859420e-06,7.617175739937115617e-06,7.746280413495371814e-06,7.875385087053628010e-06,8.004489760611884207e-06,8.133594434170140404e-06 +0.000000000000000000e+00,1.268685709648658690e-07,2.537371419297317380e-07,3.806057128945976335e-07,5.074742838594635820e-07,6.343428548243295304e-07,7.612114257891954788e-07,8.880799967540614273e-07,1.014948567718927376e-06,1.141817138683793324e-06,1.268685709648659273e-06,1.395554280613525221e-06,1.522422851578391169e-06,1.649291422543257118e-06,1.776159993508123066e-06,1.903028564472989015e-06,2.029897135437855175e-06,2.156765706402721123e-06,2.283634277367587072e-06,2.410502848332453020e-06,2.537371419297318969e-06,2.664239990262184917e-06,2.791108561227050865e-06,2.917977132191916814e-06,3.044845703156782762e-06,3.171714274121648711e-06,3.298582845086514659e-06,3.425451416051380608e-06,3.552319987016246556e-06,3.679188557981112504e-06,3.806057128945978453e-06,3.932925699910844401e-06,4.059794270875710350e-06,4.186662841840576298e-06,4.313531412805442247e-06,4.440399983770308195e-06,4.567268554735174144e-06,4.694137125700040092e-06,4.821005696664906040e-06,4.947874267629771989e-06,5.074742838594637937e-06,5.201611409559503886e-06,5.328479980524369834e-06,5.455348551489235783e-06,5.582217122454101731e-06,5.709085693418967679e-06,5.835954264383833628e-06,5.962822835348699576e-06,6.089691406313565525e-06,6.216559977278431473e-06,6.343428548243297422e-06,6.470297119208163370e-06,6.597165690173029318e-06,6.724034261137895267e-06,6.850902832102761215e-06,6.977771403067627164e-06,7.104639974032493112e-06,7.231508544997359061e-06,7.358377115962225009e-06,7.485245686927090957e-06,7.612114257891956906e-06,7.738982828856822007e-06,7.865851399821687109e-06,7.992719970786552210e-06 +0.000000000000000000e+00,1.225786697577267091e-07,2.451573395154534182e-07,3.677360092731801538e-07,4.903146790309069423e-07,6.128933487886337308e-07,7.354720185463605193e-07,8.580506883040873078e-07,9.806293580618140963e-07,1.103208027819540885e-06,1.225786697577267673e-06,1.348365367334994462e-06,1.470944037092721250e-06,1.593522706850448039e-06,1.716101376608174827e-06,1.838680046365901616e-06,1.961258716123628616e-06,2.083837385881355405e-06,2.206416055639082193e-06,2.328994725396808982e-06,2.451573395154535770e-06,2.574152064912262559e-06,2.696730734669989347e-06,2.819309404427716136e-06,2.941888074185442924e-06,3.064466743943169713e-06,3.187045413700896501e-06,3.309624083458623290e-06,3.432202753216350078e-06,3.554781422974076867e-06,3.677360092731803655e-06,3.799938762489530444e-06,3.922517432247257232e-06,4.045096102004984021e-06,4.167674771762710809e-06,4.290253441520437598e-06,4.412832111278164386e-06,4.535410781035891175e-06,4.657989450793617963e-06,4.780568120551344752e-06,4.903146790309071540e-06,5.025725460066798329e-06,5.148304129824525117e-06,5.270882799582251906e-06,5.393461469339978694e-06,5.516040139097705483e-06,5.638618808855432271e-06,5.761197478613159060e-06,5.883776148370885848e-06,6.006354818128612637e-06,6.128933487886339425e-06,6.251512157644066214e-06,6.374090827401793002e-06,6.496669497159519791e-06,6.619248166917246579e-06,6.741826836674973368e-06,6.864405506432700156e-06,6.986984176190426945e-06,7.109562845948153733e-06,7.232141515705880522e-06,7.354720185463607310e-06,7.477298855221334099e-06,7.599877524979060887e-06,7.722456194736786829e-06 +0.000000000000000000e+00,1.291046735582467472e-07,2.582093471164934944e-07,3.873140206747402151e-07,5.164186942329868828e-07,6.455233677912335506e-07,7.746280413494802184e-07,9.037327149077268862e-07,1.032837388465973554e-06,1.161942062024220222e-06,1.291046735582466889e-06,1.420151409140713557e-06,1.549256082698960225e-06,1.678360756257206893e-06,1.807465429815453561e-06,1.936570103373700228e-06,2.065674776931946684e-06,2.194779450490193140e-06,2.323884124048439596e-06,2.452988797606686052e-06,2.582093471164932508e-06,2.711198144723178964e-06,2.840302818281425420e-06,2.969407491839671876e-06,3.098512165397918332e-06,3.227616838956164788e-06,3.356721512514411244e-06,3.485826186072657701e-06,3.614930859630904157e-06,3.744035533189150613e-06,3.873140206747397069e-06,4.002244880305643948e-06,4.131349553863890828e-06,4.260454227422137707e-06,4.389558900980384587e-06,4.518663574538631466e-06,4.647768248096878346e-06,4.776872921655125225e-06,4.905977595213372105e-06,5.035082268771618984e-06,5.164186942329865864e-06,5.293291615888112743e-06,5.422396289446359623e-06,5.551500963004606502e-06,5.680605636562853382e-06,5.809710310121100261e-06,5.938814983679347141e-06,6.067919657237594021e-06,6.197024330795840900e-06,6.326129004354087780e-06,6.455233677912334659e-06,6.584338351470581539e-06,6.713443025028828418e-06,6.842547698587075298e-06,6.971652372145322177e-06,7.100757045703569057e-06,7.229861719261815936e-06,7.358966392820062816e-06,7.488071066378309695e-06,7.617175739936556575e-06,7.746280413494802607e-06,7.875385087053048640e-06,8.004489760611294672e-06,8.133594434169540705e-06 +0.000000000000000000e+00,1.268685709648554664e-07,2.537371419297109328e-07,3.806057128945663992e-07,5.074742838594218656e-07,6.343428548242773320e-07,7.612114257891327984e-07,8.880799967539882648e-07,1.014948567718843731e-06,1.141817138683699092e-06,1.268685709648554452e-06,1.395554280613409813e-06,1.522422851578265173e-06,1.649291422543120534e-06,1.776159993507975894e-06,1.903028564472831255e-06,2.029897135437686615e-06,2.156765706402541976e-06,2.283634277367397336e-06,2.410502848332252697e-06,2.537371419297108057e-06,2.664239990261963418e-06,2.791108561226818778e-06,2.917977132191674139e-06,3.044845703156529499e-06,3.171714274121384860e-06,3.298582845086240221e-06,3.425451416051095581e-06,3.552319987015950942e-06,3.679188557980806302e-06,3.806057128945661663e-06,3.932925699910516600e-06,4.059794270875371537e-06,4.186662841840226474e-06,4.313531412805081411e-06,4.440399983769936348e-06,4.567268554734791285e-06,4.694137125699646222e-06,4.821005696664501159e-06,4.947874267629356096e-06,5.074742838594211033e-06,5.201611409559065970e-06,5.328479980523920907e-06,5.455348551488775844e-06,5.582217122453630781e-06,5.709085693418485718e-06,5.835954264383340655e-06,5.962822835348195592e-06,6.089691406313050529e-06,6.216559977277905466e-06,6.343428548242760403e-06,6.470297119207615340e-06,6.597165690172470277e-06,6.724034261137325214e-06,6.850902832102180151e-06,6.977771403067035088e-06,7.104639974031890025e-06,7.231508544996744962e-06,7.358377115961599899e-06,7.485245686926454836e-06,7.612114257891309773e-06,7.738982828856164710e-06,7.865851399821019647e-06,7.992719970785874584e-06 +0.000000000000000000e+00,1.225786697577159888e-07,2.451573395154319777e-07,3.677360092731479665e-07,4.903146790308639553e-07,6.128933487885799442e-07,7.354720185462959330e-07,8.580506883040119218e-07,9.806293580617279107e-07,1.103208027819443900e-06,1.225786697577159888e-06,1.348365367334875877e-06,1.470944037092591866e-06,1.593522706850307855e-06,1.716101376608023844e-06,1.838680046365739833e-06,1.961258716123455821e-06,2.083837385881171598e-06,2.206416055638887375e-06,2.328994725396603153e-06,2.451573395154318930e-06,2.574152064912034707e-06,2.696730734669750484e-06,2.819309404427466261e-06,2.941888074185182038e-06,3.064466743942897815e-06,3.187045413700613592e-06,3.309624083458329369e-06,3.432202753216045146e-06,3.554781422973760923e-06,3.677360092731476700e-06,3.799938762489192477e-06,3.922517432246908255e-06,4.045096102004624032e-06,4.167674771762339809e-06,4.290253441520055586e-06,4.412832111277771363e-06,4.535410781035487140e-06,4.657989450793202917e-06,4.780568120550918694e-06,4.903146790308634471e-06,5.025725460066350248e-06,5.148304129824066025e-06,5.270882799581781802e-06,5.393461469339497579e-06,5.516040139097213357e-06,5.638618808854929134e-06,5.761197478612644911e-06,5.883776148370360688e-06,6.006354818128076465e-06,6.128933487885792242e-06,6.251512157643508019e-06,6.374090827401223796e-06,6.496669497158939573e-06,6.619248166916655350e-06,6.741826836674371127e-06,6.864405506432086904e-06,6.986984176189802681e-06,7.109562845947518459e-06,7.232141515705234236e-06,7.354720185462950013e-06,7.477298855220665790e-06,7.599877524978381567e-06,7.722456194736097344e-06 +0.000000000000000000e+00,1.335118249671234602e-07,2.670236499342469204e-07,4.005354749013703277e-07,5.340472998684938408e-07,6.675591248356173010e-07,8.010709498027406554e-07,9.345827747698642215e-07,1.068094599736987682e-06,1.201606424704111036e-06,1.335118249671234390e-06,1.468630074638357533e-06,1.602141899605481099e-06,1.735653724572604665e-06,1.869165549539727808e-06,2.002677374506851162e-06,2.136189199473974516e-06,2.269701024441097871e-06,2.403212849408221225e-06,2.536724674375344579e-06,2.670236499342467510e-06,2.803748324309591288e-06,2.937260149276714642e-06,3.070771974243837997e-06,3.204283799210961774e-06,3.337795624178084705e-06,3.471307449145208060e-06,3.604819274112331414e-06,3.738331099079454345e-06,3.871842924046577699e-06,4.005354749013700630e-06,4.138866573980823561e-06,4.272378398947946492e-06,4.405890223915069422e-06,4.539402048882192353e-06,4.672913873849315284e-06,4.806425698816438215e-06,4.939937523783561146e-06,5.073449348750684076e-06,5.206961173717807007e-06,5.340472998684929938e-06,5.473984823652053716e-06,5.607496648619175800e-06,5.741008473586298730e-06,5.874520298553421661e-06,6.008032123520543745e-06,6.141543948487667523e-06,6.275055773454790454e-06,6.408567598421913385e-06,6.542079423389037162e-06,6.675591248356159246e-06,6.809103073323282177e-06,6.942614898290405108e-06,7.076126723257527192e-06,7.209638548224650969e-06,7.343150373191773900e-06,7.476662198158896831e-06,7.610174023126020609e-06,7.743685848093141846e-06,7.877197673060263929e-06,8.010709498027386013e-06,8.144221322994508097e-06,8.277733147961630181e-06,8.411244972928752265e-06 +0.000000000000000000e+00,1.335135281116845718e-07,2.670270562233691436e-07,4.005405843350536889e-07,5.340541124467381812e-07,6.675676405584226736e-07,8.010811686701070601e-07,9.345946967817916583e-07,1.068108224893476151e-06,1.201621753005160643e-06,1.335135281116845135e-06,1.468648809228529628e-06,1.602162337340214120e-06,1.735675865451898824e-06,1.869189393563583105e-06,2.002702921675267597e-06,2.136216449786951878e-06,2.269729977898636158e-06,2.403243506010320439e-06,2.536757034122004720e-06,2.670270562233689000e-06,2.803784090345373704e-06,2.937297618457057562e-06,3.070811146568741419e-06,3.204324674680426123e-06,3.337838202792110827e-06,3.471351730903794684e-06,3.604865259015478541e-06,3.738378787127163245e-06,3.871892315238847526e-06,4.005405843350531806e-06,4.138919371462216087e-06,4.272432899573900368e-06,4.405946427685584648e-06,4.539459955797268929e-06,4.672973483908953209e-06,4.806487012020637490e-06,4.940000540132321771e-06,5.073514068244006051e-06,5.207027596355690332e-06,5.340541124467374612e-06,5.474054652579058893e-06,5.607568180690742327e-06,5.741081708802427454e-06,5.874595236914111735e-06,6.008108765025796016e-06,6.141622293137481143e-06,6.275135821249164577e-06,6.408649349360848857e-06,6.542162877472533138e-06,6.675676405584216572e-06,6.809189933695901699e-06,6.942703461807585980e-06,7.076216989919270260e-06,7.209730518030955388e-06,7.343244046142638822e-06,7.476757574254323102e-06,7.610271102366007383e-06,7.743784630477691663e-06,7.877298158589376791e-06,8.010811686701061919e-06,8.144325214812747046e-06,8.277838742924432174e-06,8.411352271036117302e-06 +0.000000000000000000e+00,1.313241561997734373e-07,2.626483123995468745e-07,3.939724685993203118e-07,5.252966247990937490e-07,6.566207809988671863e-07,7.879449371986406236e-07,9.192690933984140608e-07,1.050593249598187498e-06,1.181917405797960935e-06,1.313241561997734373e-06,1.444565718197507810e-06,1.575889874397281247e-06,1.707214030597054684e-06,1.838538186796828122e-06,1.969862342996601559e-06,2.101186499196374996e-06,2.232510655396148433e-06,2.363834811595921871e-06,2.495158967795695308e-06,2.626483123995468745e-06,2.757807280195242182e-06,2.889131436395015620e-06,3.020455592594789057e-06,3.151779748794562494e-06,3.283103904994335932e-06,3.414428061194109369e-06,3.545752217393882806e-06,3.677076373593656243e-06,3.808400529793429681e-06,3.939724685993203118e-06,4.071048842192976555e-06,4.202372998392749992e-06,4.333697154592523430e-06,4.465021310792296867e-06,4.596345466992070304e-06,4.727669623191843741e-06,4.858993779391617179e-06,4.990317935591390616e-06,5.121642091791164053e-06,5.252966247990937490e-06,5.384290404190710928e-06,5.515614560390484365e-06,5.646938716590257802e-06,5.778262872790031240e-06,5.909587028989804677e-06,6.040911185189578114e-06,6.172235341389351551e-06,6.303559497589124989e-06,6.434883653788898426e-06,6.566207809988671863e-06,6.697531966188445300e-06,6.828856122388218738e-06,6.960180278587992175e-06,7.091504434787765612e-06,7.222828590987539049e-06,7.354152747187312487e-06,7.485476903387085924e-06,7.616801059586859361e-06,7.748125215786633645e-06,7.879449371986407930e-06,8.010773528186182214e-06,8.142097684385956498e-06,8.273421840585730783e-06 +0.000000000000000000e+00,1.263118719441506827e-07,2.526237438883013655e-07,3.789356158324520218e-07,5.052474877766026251e-07,6.315593597207532284e-07,7.578712316649038317e-07,8.841831036090544351e-07,1.010494975553205038e-06,1.136806847497355536e-06,1.263118719441506033e-06,1.389430591385656531e-06,1.515742463329807028e-06,1.642054335273957526e-06,1.768366207218108023e-06,1.894678079162258521e-06,2.020989951106408806e-06,2.147301823050559092e-06,2.273613694994709378e-06,2.399925566938859663e-06,2.526237438883009949e-06,2.652549310827160235e-06,2.778861182771310520e-06,2.905173054715460806e-06,3.031484926659611092e-06,3.157796798603761378e-06,3.284108670547911663e-06,3.410420542492061949e-06,3.536732414436212235e-06,3.663044286380362520e-06,3.789356158324512806e-06,3.915668030268662668e-06,4.041979902212812530e-06,4.168291774156962393e-06,4.294603646101112255e-06,4.420915518045262117e-06,4.547227389989411979e-06,4.673539261933561841e-06,4.799851133877711703e-06,4.926163005821861566e-06,5.052474877766011428e-06,5.178786749710161290e-06,5.305098621654311152e-06,5.431410493598461014e-06,5.557722365542610876e-06,5.684034237486760739e-06,5.810346109430910601e-06,5.936657981375060463e-06,6.062969853319210325e-06,6.189281725263360187e-06,6.315593597207510050e-06,6.441905469151659912e-06,6.568217341095809774e-06,6.694529213039959636e-06,6.820841084984109498e-06,6.947152956928259360e-06,7.073464828872409223e-06,7.199776700816559085e-06,7.326088572760708947e-06,7.452400444704858809e-06,7.578712316649008671e-06,7.705024188593158533e-06,7.831336060537308396e-06,7.957647932481458258e-06 +0.000000000000000000e+00,1.335129479854040961e-07,2.670258959708081923e-07,4.005388439562123149e-07,5.340517919416164904e-07,6.675647399270206660e-07,8.010776879124249474e-07,9.345906358978290171e-07,1.068103583883233193e-06,1.201616531868637368e-06,1.335129479854041544e-06,1.468642427839445719e-06,1.602155375824849895e-06,1.735668323810254282e-06,1.869181271795658246e-06,2.002694219781062421e-06,2.136207167766466809e-06,2.269720115751871196e-06,2.403233063737275583e-06,2.536746011722679971e-06,2.670258959708084358e-06,2.803771907693488745e-06,2.937284855678893133e-06,3.070797803664297520e-06,3.204310751649701907e-06,3.337823699635106294e-06,3.471336647620510682e-06,3.604849595605915069e-06,3.738362543591319456e-06,3.871875491576723844e-06,4.005388439562128231e-06,4.138901387547532618e-06,4.272414335532937006e-06,4.405927283518341393e-06,4.539440231503745780e-06,4.672953179489150167e-06,4.806466127474554555e-06,4.939979075459958942e-06,5.073492023445363329e-06,5.207004971430767717e-06,5.340517919416172104e-06,5.474030867401576491e-06,5.607543815386980879e-06,5.741056763372385266e-06,5.874569711357789653e-06,6.008082659343194041e-06,6.141595607328598428e-06,6.275108555314002815e-06,6.408621503299407202e-06,6.542134451284811590e-06,6.675647399270215977e-06,6.809160347255620364e-06,6.942673295241024752e-06,7.076186243226429139e-06,7.209699191211833526e-06,7.343212139197237914e-06,7.476725087182642301e-06,7.610238035168046688e-06,7.743750983153451075e-06,7.877263931138855463e-06,8.010776879124259850e-06,8.144289827109664237e-06,8.277802775095068625e-06,8.411315723080473012e-06 +0.000000000000000000e+00,1.263133889554577757e-07,2.526267779109155514e-07,3.789401668663733535e-07,5.052535558218312086e-07,6.315669447772890637e-07,7.578803337327469188e-07,8.841937226882047739e-07,1.010507111643662629e-06,1.136820500599120484e-06,1.263133889554578339e-06,1.389447278510036194e-06,1.515760667465494049e-06,1.642074056420951904e-06,1.768387445376409760e-06,1.894700834331867615e-06,2.021014223287325682e-06,2.147327612242783748e-06,2.273641001198241815e-06,2.399954390153699882e-06,2.526267779109157949e-06,2.652581168064616016e-06,2.778894557020074083e-06,2.905207945975532150e-06,3.031521334930990216e-06,3.157834723886448283e-06,3.284148112841906350e-06,3.410461501797364417e-06,3.536774890752822484e-06,3.663088279708280551e-06,3.789401668663738617e-06,3.915715057619196684e-06,4.042028446574654751e-06,4.168341835530112818e-06,4.294655224485570885e-06,4.420968613441028952e-06,4.547282002396487019e-06,4.673595391351945085e-06,4.799908780307403152e-06,4.926222169262861219e-06,5.052535558218319286e-06,5.178848947173777353e-06,5.305162336129235420e-06,5.431475725084693487e-06,5.557789114040151553e-06,5.684102502995609620e-06,5.810415891951067687e-06,5.936729280906525754e-06,6.063042669861983821e-06,6.189356058817441888e-06,6.315669447772899955e-06,6.441982836728358021e-06,6.568296225683816088e-06,6.694609614639274155e-06,6.820923003594732222e-06,6.947236392550190289e-06,7.073549781505648356e-06,7.199863170461106423e-06,7.326176559416564489e-06,7.452489948372022556e-06,7.578803337327480623e-06,7.705116726282937843e-06,7.831430115238395063e-06,7.957743504193852283e-06 +0.000000000000000000e+00,1.335118249671132693e-07,2.670236499342265387e-07,4.005354749013397816e-07,5.340472998684529715e-07,6.675591248355660556e-07,8.010709498026794572e-07,9.345827747697924354e-07,1.068094599736905731e-06,1.201606424704018921e-06,1.335118249671132111e-06,1.468630074638245301e-06,1.602141899605358491e-06,1.735653724572471681e-06,1.869165549539584871e-06,2.002677374506698273e-06,2.136189199473811886e-06,2.269701024440925499e-06,2.403212849408039113e-06,2.536724674375152726e-06,2.670236499342266763e-06,2.803748324309380377e-06,2.937260149276493990e-06,3.070771974243607604e-06,3.204283799210721217e-06,3.337795624177834831e-06,3.471307449144948444e-06,3.604819274112062057e-06,3.738331099079175671e-06,3.871842924046288861e-06,4.005354749013402474e-06,4.138866573980516088e-06,4.272378398947629701e-06,4.405890223914743315e-06,4.539402048881856928e-06,4.672913873848970542e-06,4.806425698816084155e-06,4.939937523783197768e-06,5.073449348750311382e-06,5.206961173717424995e-06,5.340472998684538609e-06,5.473984823651652222e-06,5.607496648618765836e-06,5.741008473585879449e-06,5.874520298552993063e-06,6.008032123520106676e-06,6.141543948487220290e-06,6.275055773454333903e-06,6.408567598421447516e-06,6.542079423388561130e-06,6.675591248355674743e-06,6.809103073322788357e-06,6.942614898289901970e-06,7.076126723257015584e-06,7.209638548224129197e-06,7.343150373191242811e-06,7.476662198158356424e-06,7.610174023125470037e-06,7.743685848092582804e-06,7.877197673059696417e-06,8.010709498026810031e-06,8.144221322993923644e-06,8.277733147961037258e-06,8.411244972928150871e-06 +0.000000000000000000e+00,1.335129479853991198e-07,2.670258959707982396e-07,4.005388439561973330e-07,5.340517919415965851e-07,6.675647399269957844e-07,8.010776879123949836e-07,9.345906358977941828e-07,1.068103583883193382e-06,1.201616531868592475e-06,1.335129479853991569e-06,1.468642427839390662e-06,1.602155375824789755e-06,1.735668323810188637e-06,1.869181271795587942e-06,2.002694219780987035e-06,2.136207167766386341e-06,2.269720115751785646e-06,2.403233063737184951e-06,2.536746011722584256e-06,2.670258959707983985e-06,2.803771907693382443e-06,2.937284855678782595e-06,3.070797803664181053e-06,3.204310751649581205e-06,3.337823699634979663e-06,3.471336647620379815e-06,3.604849595605778273e-06,3.738362543591178425e-06,3.871875491576577307e-06,4.005388439561976612e-06,4.138901387547375917e-06,4.272414335532775222e-06,4.405927283518174527e-06,4.539440231503573833e-06,4.672953179488973138e-06,4.806466127474372443e-06,4.939979075459771748e-06,5.073492023445171053e-06,5.207004971430570358e-06,5.340517919415969663e-06,5.474030867401368968e-06,5.607543815386768273e-06,5.741056763372167578e-06,5.874569711357566884e-06,6.008082659342966189e-06,6.141595607328365494e-06,6.275108555313764799e-06,6.408621503299164104e-06,6.542134451284563409e-06,6.675647399269962714e-06,6.809160347255362019e-06,6.942673295240761324e-06,7.076186243226160630e-06,7.209699191211559935e-06,7.343212139196959240e-06,7.476725087182358545e-06,7.610238035167757850e-06,7.743750983153156308e-06,7.877263931138553919e-06,8.010776879123951530e-06,8.144289827109349141e-06,8.277802775094746752e-06,8.411315723080144363e-06 +0.000000000000000000e+00,1.313241561997639081e-07,2.626483123995278163e-07,3.939724685992917244e-07,5.252966247990556326e-07,6.566207809988195407e-07,7.879449371985834488e-07,9.192690933983473570e-07,1.050593249598111265e-06,1.181917405797875173e-06,1.313241561997639081e-06,1.444565718197402990e-06,1.575889874397166898e-06,1.707214030596930806e-06,1.838538186796694714e-06,1.969862342996458410e-06,2.101186499196222107e-06,2.232510655395985803e-06,2.363834811595749500e-06,2.495158967795513196e-06,2.626483123995276892e-06,2.757807280195040589e-06,2.889131436394804285e-06,3.020455592594567981e-06,3.151779748794331678e-06,3.283103904994095374e-06,3.414428061193859071e-06,3.545752217393622767e-06,3.677076373593386463e-06,3.808400529793150160e-06,3.939724685992913433e-06,4.071048842192676705e-06,4.202372998392439978e-06,4.333697154592203251e-06,4.465021310791966524e-06,4.596345466991729797e-06,4.727669623191493070e-06,4.858993779391256343e-06,4.990317935591019616e-06,5.121642091790782888e-06,5.252966247990546161e-06,5.384290404190309434e-06,5.515614560390072707e-06,5.646938716589835980e-06,5.778262872789599253e-06,5.909587028989362526e-06,6.040911185189125798e-06,6.172235341388889071e-06,6.303559497588652344e-06,6.434883653788415617e-06,6.566207809988178890e-06,6.697531966187942163e-06,6.828856122387705436e-06,6.960180278587468709e-06,7.091504434787231981e-06,7.222828590986995254e-06,7.354152747186758527e-06,7.485476903386521800e-06,7.616801059586285073e-06,7.748125215786047499e-06,7.879449371985809925e-06,8.010773528185572350e-06,8.142097684385334776e-06,8.273421840585097202e-06 +0.000000000000000000e+00,1.263118719441403066e-07,2.526237438882806132e-07,3.789356158324208933e-07,5.052474877765611205e-07,6.315593597207013476e-07,7.578712316648415748e-07,8.841831036089818020e-07,1.010494975553122029e-06,1.136806847497262362e-06,1.263118719441402695e-06,1.389430591385543028e-06,1.515742463329683361e-06,1.642054335273823694e-06,1.768366207217964028e-06,1.894678079162104361e-06,2.020989951106244482e-06,2.147301823050384603e-06,2.273613694994524724e-06,2.399925566938664846e-06,2.526237438882804967e-06,2.652549310826945088e-06,2.778861182771085210e-06,2.905173054715225331e-06,3.031484926659365452e-06,3.157796798603505574e-06,3.284108670547645695e-06,3.410420542491785816e-06,3.536732414435925937e-06,3.663044286380066059e-06,3.789356158324206180e-06,3.915668030268345878e-06,4.041979902212485576e-06,4.168291774156625273e-06,4.294603646100764971e-06,4.420915518044904669e-06,4.547227389989044367e-06,4.673539261933184065e-06,4.799851133877323762e-06,4.926163005821463460e-06,5.052474877765603158e-06,5.178786749709742856e-06,5.305098621653882553e-06,5.431410493598022251e-06,5.557722365542161949e-06,5.684034237486301647e-06,5.810346109430441345e-06,5.936657981374581042e-06,6.062969853318720740e-06,6.189281725262860438e-06,6.315593597207000136e-06,6.441905469151139833e-06,6.568217341095279531e-06,6.694529213039419229e-06,6.820841084983558927e-06,6.947152956927698625e-06,7.073464828871838322e-06,7.199776700815978020e-06,7.326088572760117718e-06,7.452400444704257416e-06,7.578712316648397114e-06,7.705024188592536811e-06,7.831336060536676509e-06,7.957647932480816207e-06 +0.000000000000000000e+00,1.111726703158571100e-07,2.223453406317142200e-07,3.335180109475713300e-07,4.446906812634284400e-07,5.558633515792856029e-07,6.670360218951427659e-07,7.782086922109999288e-07,8.893813625268570918e-07,1.000554032842714255e-06,1.111726703158571418e-06,1.222899373474428581e-06,1.334072043790285744e-06,1.445244714106142906e-06,1.556417384422000069e-06,1.667590054737857232e-06,1.778762725053714395e-06,1.889935395369571558e-06,2.001108065685428509e-06,2.112280736001285461e-06,2.223453406317142412e-06,2.334626076632999363e-06,2.445798746948856314e-06,2.556971417264713265e-06,2.668144087580570216e-06,2.779316757896427168e-06,2.890489428212284119e-06,3.001662098528141070e-06,3.112834768843998021e-06,3.224007439159854972e-06,3.335180109475711924e-06,3.446352779791568875e-06,3.557525450107425826e-06,3.668698120423282777e-06,3.779870790739139728e-06,3.891043461054996679e-06,4.002216131370853631e-06,4.113388801686710582e-06,4.224561472002567533e-06,4.335734142318424484e-06,4.446906812634281435e-06,4.558079482950138387e-06,4.669252153265995338e-06,4.780424823581852289e-06,4.891597493897709240e-06,5.002770164213566191e-06,5.113942834529423142e-06,5.225115504845280094e-06,5.336288175161137045e-06,5.447460845476993996e-06,5.558633515792850947e-06,5.669806186108707898e-06,5.780978856424564850e-06,5.892151526740421801e-06,6.003324197056278752e-06,6.114496867372135703e-06,6.225669537687992654e-06,6.336842208003849605e-06,6.448014878319706557e-06,6.559187548635563508e-06,6.670360218951420459e-06,6.781532889267277410e-06,6.892705559583134361e-06,7.003878229898991313e-06 +0.000000000000000000e+00,1.145377175556756450e-07,2.290754351113512899e-07,3.436131526670269481e-07,4.581508702227026328e-07,5.726885877783783175e-07,6.872263053340540021e-07,8.017640228897296868e-07,9.163017404454053715e-07,1.030839458001080950e-06,1.145377175556756423e-06,1.259914893112431896e-06,1.374452610668107369e-06,1.488990328223782842e-06,1.603528045779458315e-06,1.718065763335133788e-06,1.832603480890809261e-06,1.947141198446484734e-06,2.061678916002160206e-06,2.176216633557835679e-06,2.290754351113511152e-06,2.405292068669186625e-06,2.519829786224862098e-06,2.634367503780537571e-06,2.748905221336213044e-06,2.863442938891888517e-06,2.977980656447563990e-06,3.092518374003239463e-06,3.207056091558914936e-06,3.321593809114590408e-06,3.436131526670265881e-06,3.550669244225941354e-06,3.665206961781616827e-06,3.779744679337292300e-06,3.894282396892967773e-06,4.008820114448643246e-06,4.123357832004318719e-06,4.237895549559994192e-06,4.352433267115669665e-06,4.466970984671345138e-06,4.581508702227020610e-06,4.696046419782696083e-06,4.810584137338371556e-06,4.925121854894047029e-06,5.039659572449722502e-06,5.154197290005397975e-06,5.268735007561073448e-06,5.383272725116748921e-06,5.497810442672424394e-06,5.612348160228099867e-06,5.726885877783775340e-06,5.841423595339450812e-06,5.955961312895126285e-06,6.070499030450801758e-06,6.185036748006477231e-06,6.299574465562152704e-06,6.414112183117828177e-06,6.528649900673503650e-06,6.643187618229179123e-06,6.757725335784854596e-06,6.872263053340530069e-06,6.986800770896205542e-06,7.101338488451881014e-06,7.215876206007556487e-06 +0.000000000000000000e+00,1.145813910109175410e-07,2.291627820218350820e-07,3.437441730327526230e-07,4.583255640436701640e-07,5.729069550545876521e-07,6.874883460655051402e-07,8.020697370764226282e-07,9.166511280873401163e-07,1.031232519098257604e-06,1.145813910109175092e-06,1.260395301120092581e-06,1.374976692131010069e-06,1.489558083141927557e-06,1.604139474152845045e-06,1.718720865163762533e-06,1.833302256174680021e-06,1.947883647185597721e-06,2.062465038196515632e-06,2.177046429207433544e-06,2.291627820218351455e-06,2.406209211229269367e-06,2.520790602240187279e-06,2.635371993251105190e-06,2.749953384262023102e-06,2.864534775272941013e-06,2.979116166283858925e-06,3.093697557294776837e-06,3.208278948305694748e-06,3.322860339316612660e-06,3.437441730327530571e-06,3.552023121338448483e-06,3.666604512349366394e-06,3.781185903360284306e-06,3.895767294371202218e-06,4.010348685382120129e-06,4.124930076393038041e-06,4.239511467403955952e-06,4.354092858414873864e-06,4.468674249425791776e-06,4.583255640436709687e-06,4.697837031447627599e-06,4.812418422458545510e-06,4.926999813469463422e-06,5.041581204480381334e-06,5.156162595491299245e-06,5.270743986502217157e-06,5.385325377513135068e-06,5.499906768524052980e-06,5.614488159534970891e-06,5.729069550545888803e-06,5.843650941556806715e-06,5.958232332567724626e-06,6.072813723578642538e-06,6.187395114589560449e-06,6.301976505600478361e-06,6.416557896611396273e-06,6.531139287622314184e-06,6.645720678633232096e-06,6.760302069644150007e-06,6.874883460655067919e-06,6.989464851665985831e-06,7.104046242676903742e-06,7.218627633687821654e-06 +0.000000000000000000e+00,1.119482857572968268e-07,2.238965715145936535e-07,3.358448572718904935e-07,4.477931430291873600e-07,5.597414287864842264e-07,6.716897145437810929e-07,7.836380003010779594e-07,8.955862860583748258e-07,1.007534571815671798e-06,1.119482857572968665e-06,1.231431143330265531e-06,1.343379429087562398e-06,1.455327714844859264e-06,1.567276000602156130e-06,1.679224286359452997e-06,1.791172572116749863e-06,1.903120857874046730e-06,2.015069143631343596e-06,2.127017429388640463e-06,2.238965715145937329e-06,2.350914000903234196e-06,2.462862286660531062e-06,2.574810572417827929e-06,2.686758858175124795e-06,2.798707143932421662e-06,2.910655429689718528e-06,3.022603715447015395e-06,3.134552001204312261e-06,3.246500286961609127e-06,3.358448572718905994e-06,3.470396858476202860e-06,3.582345144233499727e-06,3.694293429990796593e-06,3.806241715748093460e-06,3.918190001505390326e-06,4.030138287262687193e-06,4.142086573019984059e-06,4.254034858777280926e-06,4.365983144534577792e-06,4.477931430291874659e-06,4.589879716049171525e-06,4.701828001806468391e-06,4.813776287563765258e-06,4.925724573321062124e-06,5.037672859078358991e-06,5.149621144835655857e-06,5.261569430592952724e-06,5.373517716350249590e-06,5.485466002107546457e-06,5.597414287864843323e-06,5.709362573622140190e-06,5.821310859379437056e-06,5.933259145136733923e-06,6.045207430894030789e-06,6.157155716651327655e-06,6.269104002408624522e-06,6.381052288165921388e-06,6.493000573923218255e-06,6.604948859680515121e-06,6.716897145437811988e-06,6.828845431195108854e-06,6.940793716952405721e-06,7.052742002709702587e-06 +0.000000000000000000e+00,1.120407796960699141e-07,2.240815593921398283e-07,3.361223390882097292e-07,4.481631187842796037e-07,5.602038984803495310e-07,6.722446781764194584e-07,7.842854578724893858e-07,8.963262375685593132e-07,1.008367017264629241e-06,1.120407796960699062e-06,1.232448576656768884e-06,1.344489356352838705e-06,1.456530136048908527e-06,1.568570915744978348e-06,1.680611695441048170e-06,1.792652475137117991e-06,1.904693254833187813e-06,2.016734034529257634e-06,2.128774814225327456e-06,2.240815593921397277e-06,2.352856373617467099e-06,2.464897153313536920e-06,2.576937933009606742e-06,2.688978712705676563e-06,2.801019492401746385e-06,2.913060272097816206e-06,3.025101051793886028e-06,3.137141831489955849e-06,3.249182611186025671e-06,3.361223390882095492e-06,3.473264170578165314e-06,3.585304950274235135e-06,3.697345729970304957e-06,3.809386509666374778e-06,3.921427289362445023e-06,4.033468069058515268e-06,4.145508848754585513e-06,4.257549628450655758e-06,4.369590408146726003e-06,4.481631187842796248e-06,4.593671967538866493e-06,4.705712747234936738e-06,4.817753526931006983e-06,4.929794306627077228e-06,5.041835086323147473e-06,5.153875866019217718e-06,5.265916645715287963e-06,5.377957425411358208e-06,5.489998205107428453e-06,5.602038984803498698e-06,5.714079764499568943e-06,5.826120544195639188e-06,5.938161323891709434e-06,6.050202103587779679e-06,6.162242883283849924e-06,6.274283662979920169e-06,6.386324442675990414e-06,6.498365222372060659e-06,6.610406002068130904e-06,6.722446781764201149e-06,6.834487561460271394e-06,6.946528341156341639e-06,7.058569120852411884e-06 +0.000000000000000000e+00,1.081699715226328107e-07,2.163399430452656213e-07,3.245099145678984188e-07,4.326798860905311897e-07,5.408498576131639607e-07,6.490198291357967317e-07,7.571898006584295026e-07,8.653597721810622736e-07,9.735297437036951504e-07,1.081699715226328133e-06,1.189869686748961116e-06,1.298039658271594099e-06,1.406209629794227081e-06,1.514379601316860064e-06,1.622549572839493047e-06,1.730719544362126030e-06,1.838889515884759012e-06,1.947059487407391995e-06,2.055229458930024978e-06,2.163399430452657960e-06,2.271569401975290943e-06,2.379739373497923926e-06,2.487909345020556909e-06,2.596079316543189891e-06,2.704249288065822874e-06,2.812419259588455857e-06,2.920589231111088839e-06,3.028759202633721822e-06,3.136929174156354805e-06,3.245099145678987788e-06,3.353269117201620770e-06,3.461439088724253753e-06,3.569609060246886736e-06,3.677779031769519719e-06,3.785949003292152701e-06,3.894118974814785684e-06,4.002288946337419090e-06,4.110458917860052496e-06,4.218628889382685903e-06,4.326798860905319309e-06,4.434968832427952715e-06,4.543138803950586121e-06,4.651308775473219528e-06,4.759478746995852934e-06,4.867648718518486340e-06,4.975818690041119746e-06,5.083988661563753153e-06,5.192158633086386559e-06,5.300328604609019965e-06,5.408498576131653371e-06,5.516668547654286778e-06,5.624838519176920184e-06,5.733008490699553590e-06,5.841178462222186996e-06,5.949348433744820403e-06,6.057518405267453809e-06,6.165688376790087215e-06,6.273858348312720621e-06,6.382028319835354027e-06,6.490198291357987434e-06,6.598368262880620840e-06,6.706538234403254246e-06,6.814708205925887652e-06 +0.000000000000000000e+00,1.145700675653395322e-07,2.291401351306790643e-07,3.437102026960186097e-07,4.582802702613581816e-07,5.728503378266978064e-07,6.874204053920374312e-07,8.019904729573770560e-07,9.165605405227166808e-07,1.031130608088056306e-06,1.145700675653396036e-06,1.260270743218735767e-06,1.374840810784075498e-06,1.489410878349415228e-06,1.603980945914754959e-06,1.718551013480094690e-06,1.833121081045434420e-06,1.947691148610773939e-06,2.062261216176113458e-06,2.176831283741452977e-06,2.291401351306792496e-06,2.405971418872132015e-06,2.520541486437471534e-06,2.635111554002811053e-06,2.749681621568150572e-06,2.864251689133490091e-06,2.978821756698829610e-06,3.093391824264169128e-06,3.207961891829508647e-06,3.322531959394848166e-06,3.437102026960187685e-06,3.551672094525527204e-06,3.666242162090866723e-06,3.780812229656206242e-06,3.895382297221546184e-06,4.009952364786886127e-06,4.124522432352226069e-06,4.239092499917566012e-06,4.353662567482905954e-06,4.468232635048245897e-06,4.582802702613585839e-06,4.697372770178925782e-06,4.811942837744265724e-06,4.926512905309605666e-06,5.041082972874945609e-06,5.155653040440285551e-06,5.270223108005625494e-06,5.384793175570965436e-06,5.499363243136305379e-06,5.613933310701645321e-06,5.728503378266985263e-06,5.843073445832325206e-06,5.957643513397665148e-06,6.072213580963005091e-06,6.186783648528345033e-06,6.301353716093684976e-06,6.415923783659024918e-06,6.530493851224364861e-06,6.645063918789704803e-06,6.759633986355044745e-06,6.874204053920384688e-06,6.988774121485724630e-06,7.103344189051064573e-06,7.217914256616404515e-06 +0.000000000000000000e+00,1.121384837263800653e-07,2.242769674527601305e-07,3.364154511791401693e-07,4.485539349055202081e-07,5.606924186319002469e-07,6.728309023582803386e-07,7.849693860846604303e-07,8.971078698110405220e-07,1.009246353537420720e-06,1.121384837263800917e-06,1.233523320990181115e-06,1.345661804716561312e-06,1.457800288442941510e-06,1.569938772169321708e-06,1.682077255895701905e-06,1.794215739622082103e-06,1.906354223348462300e-06,2.018492707074842286e-06,2.130631190801222272e-06,2.242769674527602258e-06,2.354908158253982244e-06,2.467046641980362230e-06,2.579185125706742216e-06,2.691323609433122201e-06,2.803462093159502187e-06,2.915600576885882173e-06,3.027739060612262159e-06,3.139877544338642145e-06,3.252016028065022131e-06,3.364154511791402116e-06,3.476292995517782102e-06,3.588431479244162088e-06,3.700569962970542074e-06,3.812708446696922060e-06,3.924846930423302046e-06,4.036985414149682032e-06,4.149123897876062017e-06,4.261262381602442003e-06,4.373400865328821989e-06,4.485539349055201975e-06,4.597677832781581961e-06,4.709816316507961947e-06,4.821954800234341932e-06,4.934093283960721918e-06,5.046231767687101904e-06,5.158370251413481890e-06,5.270508735139861876e-06,5.382647218866241862e-06,5.494785702592621848e-06,5.606924186319001833e-06,5.719062670045381819e-06,5.831201153771761805e-06,5.943339637498141791e-06,6.055478121224521777e-06,6.167616604950901763e-06,6.279755088677281748e-06,6.391893572403661734e-06,6.504032056130041720e-06,6.616170539856421706e-06,6.728309023582801692e-06,6.840447507309181678e-06,6.952585991035561664e-06,7.064724474761941649e-06 +0.000000000000000000e+00,1.111726703158507440e-07,2.223453406317014880e-07,3.335180109475522188e-07,4.446906812634029231e-07,5.558633515792536274e-07,6.670360218951043318e-07,7.782086922109550361e-07,8.893813625268057404e-07,1.000554032842656445e-06,1.111726703158507255e-06,1.222899373474358065e-06,1.334072043790208875e-06,1.445244714106059685e-06,1.556417384421910496e-06,1.667590054737761306e-06,1.778762725053612116e-06,1.889935395369462926e-06,2.001108065685313736e-06,2.112280736001164335e-06,2.223453406317014933e-06,2.334626076632865532e-06,2.445798746948716130e-06,2.556971417264566729e-06,2.668144087580417327e-06,2.779316757896267925e-06,2.890489428212118524e-06,3.001662098527969122e-06,3.112834768843819721e-06,3.224007439159670319e-06,3.335180109475520918e-06,3.446352779791371516e-06,3.557525450107222115e-06,3.668698120423072713e-06,3.779870790738923311e-06,3.891043461054773910e-06,4.002216131370624932e-06,4.113388801686475954e-06,4.224561472002326976e-06,4.335734142318177998e-06,4.446906812634029020e-06,4.558079482949880042e-06,4.669252153265731063e-06,4.780424823581582085e-06,4.891597493897433107e-06,5.002770164213284129e-06,5.113942834529135151e-06,5.225115504844986173e-06,5.336288175160837195e-06,5.447460845476688217e-06,5.558633515792539239e-06,5.669806186108390261e-06,5.780978856424241283e-06,5.892151526740092305e-06,6.003324197055943327e-06,6.114496867371794349e-06,6.225669537687645371e-06,6.336842208003496393e-06,6.448014878319347415e-06,6.559187548635198437e-06,6.670360218951049459e-06,6.781532889266900481e-06,6.892705559582751502e-06,7.003878229898602524e-06 +0.000000000000000000e+00,1.145377175556684055e-07,2.290754351113368110e-07,3.436131526670052429e-07,4.581508702226736749e-07,5.726885877783421068e-07,6.872263053340104858e-07,8.017640228896788648e-07,9.163017404453472438e-07,1.030839458001015729e-06,1.145377175556684214e-06,1.259914893112352698e-06,1.374452610668021183e-06,1.488990328223689668e-06,1.603528045779358153e-06,1.718065763335026638e-06,1.832603480890695123e-06,1.947141198446363608e-06,2.061678916002032304e-06,2.176216633557701001e-06,2.290754351113369698e-06,2.405292068669038394e-06,2.519829786224707091e-06,2.634367503780375788e-06,2.748905221336044484e-06,2.863442938891713181e-06,2.977980656447381878e-06,3.092518374003050574e-06,3.207056091558719271e-06,3.321593809114387968e-06,3.436131526670056664e-06,3.550669244225725361e-06,3.665206961781394058e-06,3.779744679337062754e-06,3.894282396892731451e-06,4.008820114448400147e-06,4.123357832004068844e-06,4.237895549559737541e-06,4.352433267115406237e-06,4.466970984671074934e-06,4.581508702226743631e-06,4.696046419782412327e-06,4.810584137338081024e-06,4.925121854893749721e-06,5.039659572449418417e-06,5.154197290005087114e-06,5.268735007560755811e-06,5.383272725116424507e-06,5.497810442672093204e-06,5.612348160227761901e-06,5.726885877783430597e-06,5.841423595339099294e-06,5.955961312894767990e-06,6.070499030450436687e-06,6.185036748006105384e-06,6.299574465561774080e-06,6.414112183117442777e-06,6.528649900673111474e-06,6.643187618228780170e-06,6.757725335784448867e-06,6.872263053340117564e-06,6.986800770895786260e-06,7.101338488451454957e-06,7.215876206007123654e-06 +0.000000000000000000e+00,1.145700675653358264e-07,2.291401351306716528e-07,3.437102026960074924e-07,4.582802702613433585e-07,5.728503378266791716e-07,6.874204053920149848e-07,8.019904729573507980e-07,9.165605405226866111e-07,1.031130608088022424e-06,1.145700675653358343e-06,1.260270743218694262e-06,1.374840810784030181e-06,1.489410878349366100e-06,1.603980945914702019e-06,1.718551013480037938e-06,1.833121081045373857e-06,1.947691148610709565e-06,2.062261216176045272e-06,2.176831283741380979e-06,2.291401351306716687e-06,2.405971418872052394e-06,2.520541486437388101e-06,2.635111554002723808e-06,2.749681621568059516e-06,2.864251689133395223e-06,2.978821756698730930e-06,3.093391824264066637e-06,3.207961891829402345e-06,3.322531959394738052e-06,3.437102026960073759e-06,3.551672094525409467e-06,3.666242162090745174e-06,3.780812229656080881e-06,3.895382297221416588e-06,4.009952364786752296e-06,4.124522432352088003e-06,4.239092499917423710e-06,4.353662567482759418e-06,4.468232635048095125e-06,4.582802702613430832e-06,4.697372770178766539e-06,4.811942837744102247e-06,4.926512905309437954e-06,5.041082972874773661e-06,5.155653040440109368e-06,5.270223108005445076e-06,5.384793175570780783e-06,5.499363243136116490e-06,5.613933310701452198e-06,5.728503378266787905e-06,5.843073445832123612e-06,5.957643513397459319e-06,6.072213580962795027e-06,6.186783648528130734e-06,6.301353716093466441e-06,6.415923783658802148e-06,6.530493851224137856e-06,6.645063918789473563e-06,6.759633986354809270e-06,6.874204053920144978e-06,6.988774121485480685e-06,7.103344189050816392e-06,7.217914256616152099e-06 +0.000000000000000000e+00,1.119482857572908578e-07,2.238965715145817156e-07,3.358448572718725999e-07,4.477931430291634842e-07,5.597414287864543685e-07,6.716897145437451999e-07,7.836380003010360312e-07,8.955862860583268626e-07,1.007534571815617588e-06,1.119482857572908314e-06,1.231431143330199039e-06,1.343379429087489764e-06,1.455327714844780490e-06,1.567276000602071215e-06,1.679224286359361941e-06,1.791172572116652666e-06,1.903120857873943392e-06,2.015069143631234329e-06,2.127017429388525266e-06,2.238965715145816204e-06,2.350914000903107141e-06,2.462862286660398078e-06,2.574810572417689015e-06,2.686758858174979952e-06,2.798707143932270890e-06,2.910655429689561827e-06,3.022603715446852764e-06,3.134552001204143701e-06,3.246500286961434639e-06,3.358448572718725576e-06,3.470396858476016513e-06,3.582345144233307450e-06,3.694293429990598388e-06,3.806241715747889325e-06,3.918190001505180262e-06,4.030138287262471199e-06,4.142086573019762137e-06,4.254034858777053074e-06,4.365983144534344011e-06,4.477931430291634948e-06,4.589879716048925885e-06,4.701828001806216823e-06,4.813776287563507760e-06,4.925724573320798697e-06,5.037672859078089634e-06,5.149621144835380572e-06,5.261569430592671509e-06,5.373517716349962446e-06,5.485466002107253383e-06,5.597414287864544321e-06,5.709362573621835258e-06,5.821310859379126195e-06,5.933259145136417132e-06,6.045207430893708069e-06,6.157155716650999007e-06,6.269104002408289944e-06,6.381052288165580881e-06,6.493000573922871818e-06,6.604948859680162756e-06,6.716897145437453693e-06,6.828845431194744630e-06,6.940793716952035567e-06,7.052742002709326505e-06 +0.000000000000000000e+00,1.120407796960641173e-07,2.240815593921282345e-07,3.361223390881923650e-07,4.481631187842565220e-07,5.602038984803207319e-07,6.722446781763849418e-07,7.842854578724491517e-07,8.963262375685133616e-07,1.008367017264577572e-06,1.120407796960641887e-06,1.232448576656706203e-06,1.344489356352770519e-06,1.456530136048834835e-06,1.568570915744899150e-06,1.680611695440963466e-06,1.792652475137027782e-06,1.904693254833092098e-06,2.016734034529156414e-06,2.128774814225220729e-06,2.240815593921285045e-06,2.352856373617349361e-06,2.464897153313413677e-06,2.576937933009477993e-06,2.688978712705542308e-06,2.801019492401606624e-06,2.913060272097670940e-06,3.025101051793735256e-06,3.137141831489799572e-06,3.249182611185863887e-06,3.361223390881928203e-06,3.473264170577992519e-06,3.585304950274056835e-06,3.697345729970121150e-06,3.809386509666185466e-06,3.921427289362250206e-06,4.033468069058315368e-06,4.145508848754380531e-06,4.257549628450445694e-06,4.369590408146510857e-06,4.481631187842576020e-06,4.593671967538641183e-06,4.705712747234706345e-06,4.817753526930771508e-06,4.929794306626836671e-06,5.041835086322901834e-06,5.153875866018966997e-06,5.265916645715032159e-06,5.377957425411097322e-06,5.489998205107162485e-06,5.602038984803227648e-06,5.714079764499292811e-06,5.826120544195357974e-06,5.938161323891423136e-06,6.050202103587488299e-06,6.162242883283553462e-06,6.274283662979618625e-06,6.386324442675683788e-06,6.498365222371748950e-06,6.610406002067814113e-06,6.722446781763879276e-06,6.834487561459944439e-06,6.946528341156009602e-06,7.058569120852074765e-06 +0.000000000000000000e+00,1.081699715226267888e-07,2.163399430452535776e-07,3.245099145678803664e-07,4.326798860905071552e-07,5.408498576131339969e-07,6.490198291357608386e-07,7.571898006583876804e-07,8.653597721810145221e-07,9.735297437036413639e-07,1.081699715226268206e-06,1.189869686748895047e-06,1.298039658271521889e-06,1.406209629794148731e-06,1.514379601316775573e-06,1.622549572839402414e-06,1.730719544362029256e-06,1.838889515884656098e-06,1.947059487407282728e-06,2.055229458929909358e-06,2.163399430452535988e-06,2.271569401975162618e-06,2.379739373497789248e-06,2.487909345020415878e-06,2.596079316543042508e-06,2.704249288065669138e-06,2.812419259588295768e-06,2.920589231110922397e-06,3.028759202633549027e-06,3.136929174156175657e-06,3.245099145678802287e-06,3.353269117201428917e-06,3.461439088724055547e-06,3.569609060246682177e-06,3.677779031769308807e-06,3.785949003291935437e-06,3.894118974814562067e-06,4.002288946337188697e-06,4.110458917859815327e-06,4.218628889382441957e-06,4.326798860905068587e-06,4.434968832427695217e-06,4.543138803950321847e-06,4.651308775472948477e-06,4.759478746995575107e-06,4.867648718518201737e-06,4.975818690040828367e-06,5.083988661563454997e-06,5.192158633086081627e-06,5.300328604608708257e-06,5.408498576131334887e-06,5.516668547653961517e-06,5.624838519176588147e-06,5.733008490699214777e-06,5.841178462221841407e-06,5.949348433744468037e-06,6.057518405267094667e-06,6.165688376789721297e-06,6.273858348312347927e-06,6.382028319834974557e-06,6.490198291357601187e-06,6.598368262880227817e-06,6.706538234402854447e-06,6.814708205925481077e-06 +0.000000000000000000e+00,1.125774442318484277e-07,2.251548884636968554e-07,3.377323326955452699e-07,4.503097769273936579e-07,5.628872211592420459e-07,6.754646653910904340e-07,7.880421096229388220e-07,9.006195538547872100e-07,1.013196998086635598e-06,1.125774442318484092e-06,1.238351886550332586e-06,1.350929330782181080e-06,1.463506775014029574e-06,1.576084219245878067e-06,1.688661663477726561e-06,1.801239107709575055e-06,1.913816551941423549e-06,2.026393996173272043e-06,2.138971440405120537e-06,2.251548884636969031e-06,2.364126328868817525e-06,2.476703773100666019e-06,2.589281217332514512e-06,2.701858661564363006e-06,2.814436105796211500e-06,2.927013550028059994e-06,3.039590994259908488e-06,3.152168438491756982e-06,3.264745882723605476e-06,3.377323326955453970e-06,3.489900771187302464e-06,3.602478215419150957e-06,3.715055659650999451e-06,3.827633103882847945e-06,3.940210548114696439e-06,4.052787992346544933e-06,4.165365436578393427e-06,4.277942880810241921e-06,4.390520325042090415e-06,4.503097769273938909e-06,4.615675213505787403e-06,4.728252657737635896e-06,4.840830101969484390e-06,4.953407546201332884e-06,5.065984990433181378e-06,5.178562434665029872e-06,5.291139878896878366e-06,5.403717323128726860e-06,5.516294767360575354e-06,5.628872211592423848e-06,5.741449655824272341e-06,5.854027100056120835e-06,5.966604544287969329e-06,6.079181988519817823e-06,6.191759432751666317e-06,6.304336876983514811e-06,6.416914321215363305e-06,6.529491765447211799e-06,6.642069209679060293e-06,6.754646653910908786e-06,6.867224098142757280e-06,6.979801542374605774e-06,7.092378986606454268e-06 +0.000000000000000000e+00,1.115684913700498924e-07,2.231369827400997848e-07,3.347054741101496507e-07,4.462739654801995166e-07,5.578424568502493825e-07,6.694109482202993014e-07,7.809794395903492202e-07,8.925479309603991391e-07,1.004116422330449058e-06,1.115684913700498977e-06,1.227253405070548896e-06,1.338821896440598815e-06,1.450390387810648733e-06,1.561958879180698652e-06,1.673527370550748571e-06,1.785095861920798490e-06,1.896664353290848409e-06,2.008232844660898116e-06,2.119801336030947823e-06,2.231369827400997530e-06,2.342938318771047237e-06,2.454506810141096944e-06,2.566075301511146651e-06,2.677643792881196359e-06,2.789212284251246066e-06,2.900780775621295773e-06,3.012349266991345480e-06,3.123917758361395187e-06,3.235486249731444894e-06,3.347054741101494601e-06,3.458623232471544308e-06,3.570191723841594015e-06,3.681760215211643722e-06,3.793328706581693430e-06,3.904897197951742713e-06,4.016465689321791997e-06,4.128034180691841280e-06,4.239602672061890564e-06,4.351171163431939847e-06,4.462739654801989131e-06,4.574308146172038415e-06,4.685876637542087698e-06,4.797445128912136982e-06,4.909013620282186265e-06,5.020582111652235549e-06,5.132150603022284833e-06,5.243719094392334116e-06,5.355287585762383400e-06,5.466856077132432683e-06,5.578424568502481967e-06,5.689993059872531250e-06,5.801561551242580534e-06,5.913130042612629818e-06,6.024698533982679101e-06,6.136267025352728385e-06,6.247835516722777668e-06,6.359404008092826952e-06,6.470972499462876236e-06,6.582540990832925519e-06,6.694109482202974803e-06,6.805677973573024086e-06,6.917246464943073370e-06,7.028814956313122653e-06 +0.000000000000000000e+00,1.099901741719128707e-07,2.199803483438257414e-07,3.299705225157385857e-07,4.399606966876514299e-07,5.499508708595642742e-07,6.599410450314771713e-07,7.699312192033900685e-07,8.799213933753029657e-07,9.899115675472158629e-07,1.099901741719128760e-06,1.209891915891041657e-06,1.319882090062954554e-06,1.429872264234867452e-06,1.539862438406780349e-06,1.649852612578693246e-06,1.759842786750606143e-06,1.869832960922519040e-06,1.979823135094432149e-06,2.089813309266345046e-06,2.199803483438257944e-06,2.309793657610170841e-06,2.419783831782083738e-06,2.529774005953996635e-06,2.639764180125909532e-06,2.749754354297822430e-06,2.859744528469735327e-06,2.969734702641648224e-06,3.079724876813561121e-06,3.189715050985474018e-06,3.299705225157386915e-06,3.409695399329299813e-06,3.519685573501212710e-06,3.629675747673125607e-06,3.739665921845038504e-06,3.849656096016951401e-06,3.959646270188864299e-06,4.069636444360777196e-06,4.179626618532690093e-06,4.289616792704602990e-06,4.399606966876515887e-06,4.509597141048428784e-06,4.619587315220341682e-06,4.729577489392254579e-06,4.839567663564167476e-06,4.949557837736080373e-06,5.059548011907993270e-06,5.169538186079906168e-06,5.279528360251819065e-06,5.389518534423731962e-06,5.499508708595644859e-06,5.609498882767557756e-06,5.719489056939470653e-06,5.829479231111383551e-06,5.939469405283296448e-06,6.049459579455209345e-06,6.159449753627122242e-06,6.269439927799035139e-06,6.379430101970948037e-06,6.489420276142860934e-06,6.599410450314773831e-06,6.709400624486686728e-06,6.819390798658599625e-06,6.929380972830512522e-06 +0.000000000000000000e+00,1.125774442318405397e-07,2.251548884636810794e-07,3.377323326955216059e-07,4.503097769273621059e-07,5.628872211592026589e-07,6.754646653910432119e-07,7.880421096228837648e-07,9.006195538547243178e-07,1.013196998086564871e-06,1.125774442318405318e-06,1.238351886550245765e-06,1.350929330782086212e-06,1.463506775013926659e-06,1.576084219245767106e-06,1.688661663477607553e-06,1.801239107709448000e-06,1.913816551941288447e-06,2.026393996173128894e-06,2.138971440404969342e-06,2.251548884636809789e-06,2.364126328868650236e-06,2.476703773100490683e-06,2.589281217332331130e-06,2.701858661564171577e-06,2.814436105796012024e-06,2.927013550027852471e-06,3.039590994259692918e-06,3.152168438491533365e-06,3.264745882723373812e-06,3.377323326955214259e-06,3.489900771187054706e-06,3.602478215418895154e-06,3.715055659650735601e-06,3.827633103882576048e-06,3.940210548114416071e-06,4.052787992346256095e-06,4.165365436578096118e-06,4.277942880809936142e-06,4.390520325041776165e-06,4.503097769273616189e-06,4.615675213505456213e-06,4.728252657737296236e-06,4.840830101969136260e-06,4.953407546200976283e-06,5.065984990432816307e-06,5.178562434664656330e-06,5.291139878896496354e-06,5.403717323128336378e-06,5.516294767360176401e-06,5.628872211592016425e-06,5.741449655823856448e-06,5.854027100055696472e-06,5.966604544287536495e-06,6.079181988519376519e-06,6.191759432751216542e-06,6.304336876983056566e-06,6.416914321214896590e-06,6.529491765446736613e-06,6.642069209678576637e-06,6.754646653910416660e-06,6.867224098142256684e-06,6.979801542374096707e-06,7.092378986605936731e-06 +0.000000000000000000e+00,1.115684913700427588e-07,2.231369827400855176e-07,3.347054741101282631e-07,4.462739654801709822e-07,5.578424568502137013e-07,6.694109482202564203e-07,7.809794395902991394e-07,8.925479309603418585e-07,1.004116422330384683e-06,1.115684913700427614e-06,1.227253405070470545e-06,1.338821896440513476e-06,1.450390387810556407e-06,1.561958879180599338e-06,1.673527370550642268e-06,1.785095861920685199e-06,1.896664353290728130e-06,2.008232844660771061e-06,2.119801336030813992e-06,2.231369827400856923e-06,2.342938318770899853e-06,2.454506810140942784e-06,2.566075301510985715e-06,2.677643792881028646e-06,2.789212284251071577e-06,2.900780775621114508e-06,3.012349266991157439e-06,3.123917758361200369e-06,3.235486249731243300e-06,3.347054741101286231e-06,3.458623232471329162e-06,3.570191723841372093e-06,3.681760215211415024e-06,3.793328706581457954e-06,3.904897197951500462e-06,4.016465689321542969e-06,4.128034180691585476e-06,4.239602672061627984e-06,4.351171163431670491e-06,4.462739654801712998e-06,4.574308146171755506e-06,4.685876637541798013e-06,4.797445128911840520e-06,4.909013620281883028e-06,5.020582111651925535e-06,5.132150603021968042e-06,5.243719094392010550e-06,5.355287585762053057e-06,5.466856077132095564e-06,5.578424568502138071e-06,5.689993059872180579e-06,5.801561551242223086e-06,5.913130042612265593e-06,6.024698533982308101e-06,6.136267025352350608e-06,6.247835516722393115e-06,6.359404008092435623e-06,6.470972499462478130e-06,6.582540990832520637e-06,6.694109482202563145e-06,6.805677973572605652e-06,6.917246464942648159e-06,7.028814956312690667e-06 +0.000000000000000000e+00,1.099901741719052342e-07,2.199803483438104684e-07,3.299705225157157158e-07,4.399606966876209897e-07,5.499508708595262636e-07,6.599410450314315374e-07,7.699312192033368113e-07,8.799213933752420852e-07,9.899115675471474650e-07,1.099901741719052739e-06,1.209891915890958013e-06,1.319882090062863287e-06,1.429872264234768561e-06,1.539862438406673834e-06,1.649852612578579108e-06,1.759842786750484382e-06,1.869832960922389656e-06,1.979823135094294930e-06,2.089813309266200204e-06,2.199803483438105478e-06,2.309793657610010752e-06,2.419783831781916025e-06,2.529774005953821299e-06,2.639764180125726573e-06,2.749754354297631847e-06,2.859744528469537121e-06,2.969734702641442395e-06,3.079724876813347669e-06,3.189715050985252943e-06,3.299705225157158217e-06,3.409695399329063490e-06,3.519685573500968764e-06,3.629675747672874038e-06,3.739665921844779312e-06,3.849656096016684586e-06,3.959646270188589860e-06,4.069636444360495134e-06,4.179626618532400408e-06,4.289616792704305682e-06,4.399606966876210955e-06,4.509597141048116229e-06,4.619587315220021503e-06,4.729577489391926777e-06,4.839567663563832051e-06,4.949557837735737325e-06,5.059548011907642599e-06,5.169538186079547873e-06,5.279528360251453147e-06,5.389518534423358420e-06,5.499508708595263694e-06,5.609498882767168968e-06,5.719489056939074242e-06,5.829479231110979516e-06,5.939469405282884790e-06,6.049459579454790064e-06,6.159449753626695338e-06,6.269439927798600611e-06,6.379430101970505885e-06,6.489420276142411159e-06,6.599410450314316433e-06,6.709400624486221707e-06,6.819390798658126981e-06,6.929380972830032255e-06 +0.000000000000000000e+00,1.156525212997321702e-07,2.313050425994643403e-07,3.469575638991964972e-07,4.626100851989286277e-07,5.782626064986607052e-07,6.939151277983927827e-07,8.095676490981248602e-07,9.252201703978569377e-07,1.040872691697589015e-06,1.156525212997320987e-06,1.272177734297052958e-06,1.387830255596784930e-06,1.503482776896516902e-06,1.619135298196248873e-06,1.734787819495980845e-06,1.850440340795712817e-06,1.966092862095444788e-06,2.081745383395176760e-06,2.197397904694908731e-06,2.313050425994640703e-06,2.428702947294372675e-06,2.544355468594104646e-06,2.660007989893836618e-06,2.775660511193568590e-06,2.891313032493300561e-06,3.006965553793032533e-06,3.122618075092764505e-06,3.238270596392496476e-06,3.353923117692228448e-06,3.469575638991960419e-06,3.585228160291692391e-06,3.700880681591424363e-06,3.816533202891156334e-06,3.932185724190887882e-06,4.047838245490619430e-06,4.163490766790350979e-06,4.279143288090082527e-06,4.394795809389814075e-06,4.510448330689545623e-06,4.626100851989277171e-06,4.741753373289008719e-06,4.857405894588740267e-06,4.973058415888471815e-06,5.088710937188203363e-06,5.204363458487934912e-06,5.320015979787666460e-06,5.435668501087398008e-06,5.551321022387129556e-06,5.666973543686861104e-06,5.782626064986592652e-06,5.898278586286324200e-06,6.013931107586055748e-06,6.129583628885787297e-06,6.245236150185518845e-06,6.360888671485250393e-06,6.476541192784981941e-06,6.592193714084713489e-06,6.707846235384445037e-06,6.823498756684176585e-06,6.939151277983908133e-06,7.054803799283639681e-06,7.170456320583371230e-06,7.286108841883102778e-06 +0.000000000000000000e+00,1.139876705291112623e-07,2.279753410582225246e-07,3.419630115873338002e-07,4.559506821164451022e-07,5.699383526455564572e-07,6.839260231746678121e-07,7.979136937037791671e-07,9.119013642328905220e-07,1.025889034762001877e-06,1.139876705291113338e-06,1.253864375820224799e-06,1.367852046349336260e-06,1.481839716878447720e-06,1.595827387407559181e-06,1.709815057936670642e-06,1.823802728465782103e-06,1.937790398994893564e-06,2.051778069524005025e-06,2.165765740053116485e-06,2.279753410582227946e-06,2.393741081111339407e-06,2.507728751640450868e-06,2.621716422169562329e-06,2.735704092698673790e-06,2.849691763227785250e-06,2.963679433756896711e-06,3.077667104286008172e-06,3.191654774815119633e-06,3.305642445344231094e-06,3.419630115873342555e-06,3.533617786402454015e-06,3.647605456931565476e-06,3.761593127460676937e-06,3.875580797989787974e-06,3.989568468518899435e-06,4.103556139048010896e-06,4.217543809577122357e-06,4.331531480106233818e-06,4.445519150635345279e-06,4.559506821164456739e-06,4.673494491693568200e-06,4.787482162222679661e-06,4.901469832751791122e-06,5.015457503280902583e-06,5.129445173810014044e-06,5.243432844339125504e-06,5.357420514868236965e-06,5.471408185397348426e-06,5.585395855926459887e-06,5.699383526455571348e-06,5.813371196984682809e-06,5.927358867513794270e-06,6.041346538042905730e-06,6.155334208572017191e-06,6.269321879101128652e-06,6.383309549630240113e-06,6.497297220159351574e-06,6.611284890688463035e-06,6.725272561217574495e-06,6.839260231746685956e-06,6.953247902275797417e-06,7.067235572804908878e-06,7.181223243334020339e-06 +0.000000000000000000e+00,1.134460635347760503e-07,2.268921270695521006e-07,3.403381906043281377e-07,4.537842541391041483e-07,5.672303176738801589e-07,6.806763812086561695e-07,7.941224447434321801e-07,9.075685082782081907e-07,1.021014571812984201e-06,1.134460635347760318e-06,1.247906698882536434e-06,1.361352762417312551e-06,1.474798825952088667e-06,1.588244889486864784e-06,1.701690953021640900e-06,1.815137016556417017e-06,1.928583080091193345e-06,2.042029143625969673e-06,2.155475207160746001e-06,2.268921270695522330e-06,2.382367334230298658e-06,2.495813397765074986e-06,2.609259461299851314e-06,2.722705524834627643e-06,2.836151588369403971e-06,2.949597651904180299e-06,3.063043715438956627e-06,3.176489778973732955e-06,3.289935842508509284e-06,3.403381906043285612e-06,3.516827969578061940e-06,3.630274033112838268e-06,3.743720096647614597e-06,3.857166160182390925e-06,3.970612223717167253e-06,4.084058287251943581e-06,4.197504350786719910e-06,4.310950414321496238e-06,4.424396477856272566e-06,4.537842541391048894e-06,4.651288604925825223e-06,4.764734668460601551e-06,4.878180731995377879e-06,4.991626795530154207e-06,5.105072859064930536e-06,5.218518922599706864e-06,5.331964986134483192e-06,5.445411049669259520e-06,5.558857113204035848e-06,5.672303176738812177e-06,5.785749240273588505e-06,5.899195303808364833e-06,6.012641367343141161e-06,6.126087430877917490e-06,6.239533494412693818e-06,6.352979557947470146e-06,6.466425621482246474e-06,6.579871685017022803e-06,6.693317748551799131e-06,6.806763812086575459e-06,6.920209875621351787e-06,7.033655939156128116e-06,7.147102002690904444e-06 +0.000000000000000000e+00,1.156525212997235939e-07,2.313050425994471879e-07,3.469575638991707686e-07,4.626100851988943228e-07,5.782626064986179300e-07,6.939151277983415372e-07,8.095676490980651444e-07,9.252201703977887515e-07,1.040872691697512359e-06,1.156525212997235860e-06,1.272177734296959361e-06,1.387830255596682863e-06,1.503482776896406364e-06,1.619135298196129865e-06,1.734787819495853367e-06,1.850440340795576868e-06,1.966092862095300369e-06,2.081745383395023870e-06,2.197397904694747372e-06,2.313050425994470873e-06,2.428702947294194374e-06,2.544355468593917876e-06,2.660007989893641377e-06,2.775660511193364878e-06,2.891313032493088379e-06,3.006965553792811881e-06,3.122618075092535382e-06,3.238270596392258883e-06,3.353923117691982385e-06,3.469575638991705886e-06,3.585228160291429387e-06,3.700880681591152889e-06,3.816533202890875966e-06,3.932185724190599044e-06,4.047838245490322122e-06,4.163490766790045200e-06,4.279143288089768277e-06,4.394795809389491355e-06,4.510448330689214433e-06,4.626100851988937511e-06,4.741753373288660589e-06,4.857405894588383666e-06,4.973058415888106744e-06,5.088710937187829822e-06,5.204363458487552900e-06,5.320015979787275978e-06,5.435668501086999055e-06,5.551321022386722133e-06,5.666973543686445211e-06,5.782626064986168289e-06,5.898278586285891366e-06,6.013931107585614444e-06,6.129583628885337522e-06,6.245236150185060600e-06,6.360888671484783678e-06,6.476541192784506755e-06,6.592193714084229833e-06,6.707846235383952911e-06,6.823498756683675989e-06,6.939151277983399066e-06,7.054803799283122144e-06,7.170456320582845222e-06,7.286108841882568300e-06 +0.000000000000000000e+00,1.139876705291026729e-07,2.279753410582053457e-07,3.419630115873080186e-07,4.559506821164106915e-07,5.699383526455133644e-07,6.839260231746160372e-07,7.979136937037187101e-07,9.119013642328213830e-07,1.025889034761923950e-06,1.139876705291026517e-06,1.253864375820129084e-06,1.367852046349231651e-06,1.481839716878334218e-06,1.595827387407436785e-06,1.709815057936539352e-06,1.823802728465641919e-06,1.937790398994744486e-06,2.051778069523847053e-06,2.165765740052949620e-06,2.279753410582052187e-06,2.393741081111154754e-06,2.507728751640257321e-06,2.621716422169359888e-06,2.735704092698462455e-06,2.849691763227565022e-06,2.963679433756667589e-06,3.077667104285770156e-06,3.191654774814872723e-06,3.305642445343975290e-06,3.419630115873077857e-06,3.533617786402180424e-06,3.647605456931282991e-06,3.761593127460385558e-06,3.875580797989488125e-06,3.989568468518591115e-06,4.103556139047694106e-06,4.217543809576797096e-06,4.331531480105900087e-06,4.445519150635003077e-06,4.559506821164106068e-06,4.673494491693209058e-06,4.787482162222312049e-06,4.901469832751415039e-06,5.015457503280518030e-06,5.129445173809621020e-06,5.243432844338724011e-06,5.357420514867827001e-06,5.471408185396929992e-06,5.585395855926032982e-06,5.699383526455135973e-06,5.813371196984238963e-06,5.927358867513341954e-06,6.041346538042444944e-06,6.155334208571547935e-06,6.269321879100650925e-06,6.383309549629753916e-06,6.497297220158856906e-06,6.611284890687959897e-06,6.725272561217062887e-06,6.839260231746165878e-06,6.953247902275268869e-06,7.067235572804371859e-06,7.181223243333474850e-06 +0.000000000000000000e+00,1.134460635347675800e-07,2.268921270695351600e-07,3.403381906043027267e-07,4.537842541390702670e-07,5.672303176738378072e-07,6.806763812086053475e-07,7.941224447433728878e-07,9.075685082781404280e-07,1.021014571812907968e-06,1.134460635347675614e-06,1.247906698882443261e-06,1.361352762417210907e-06,1.474798825951978553e-06,1.588244889486746199e-06,1.701690953021513845e-06,1.815137016556281491e-06,1.928583080091049349e-06,2.042029143625817207e-06,2.155475207160585065e-06,2.268921270695352923e-06,2.382367334230120781e-06,2.495813397764888639e-06,2.609259461299656497e-06,2.722705524834424355e-06,2.836151588369192213e-06,2.949597651903960070e-06,3.063043715438727928e-06,3.176489778973495786e-06,3.289935842508263644e-06,3.403381906043031502e-06,3.516827969577799360e-06,3.630274033112567218e-06,3.743720096647335076e-06,3.857166160182102934e-06,3.970612223716870792e-06,4.084058287251638650e-06,4.197504350786406507e-06,4.310950414321174365e-06,4.424396477855942223e-06,4.537842541390710081e-06,4.651288604925477939e-06,4.764734668460245797e-06,4.878180731995013655e-06,4.991626795529781513e-06,5.105072859064549371e-06,5.218518922599317229e-06,5.331964986134085086e-06,5.445411049668852944e-06,5.558857113203620802e-06,5.672303176738388660e-06,5.785749240273156518e-06,5.899195303807924376e-06,6.012641367342692234e-06,6.126087430877460092e-06,6.239533494412227950e-06,6.352979557946995808e-06,6.466425621481763666e-06,6.579871685016531523e-06,6.693317748551299381e-06,6.806763812086067239e-06,6.920209875620835097e-06,7.033655939155602955e-06,7.147102002690370813e-06 +0.000000000000000000e+00,1.194459404503750318e-07,2.388918809007500636e-07,3.583378213511251219e-07,4.777837618015002332e-07,5.972297022518753444e-07,7.166756427022504556e-07,8.361215831526255668e-07,9.555675236030006781e-07,1.075013464053375789e-06,1.194459404503750901e-06,1.313905344954126012e-06,1.433351285404501123e-06,1.552797225854876234e-06,1.672243166305251345e-06,1.791689106755626457e-06,1.911135047206001780e-06,2.030580987656377103e-06,2.150026928106752426e-06,2.269472868557127749e-06,2.388918809007503072e-06,2.508364749457878395e-06,2.627810689908253718e-06,2.747256630358629041e-06,2.866702570809004364e-06,2.986148511259379687e-06,3.105594451709755010e-06,3.225040392160130333e-06,3.344486332610505655e-06,3.463932273060880978e-06,3.583378213511256301e-06,3.702824153961631624e-06,3.822270094412006947e-06,3.941716034862382270e-06,4.061161975312757593e-06,4.180607915763132916e-06,4.300053856213508239e-06,4.419499796663883562e-06,4.538945737114258885e-06,4.658391677564634208e-06,4.777837618015009531e-06,4.897283558465384854e-06,5.016729498915760177e-06,5.136175439366135500e-06,5.255621379816510823e-06,5.375067320266886146e-06,5.494513260717261469e-06,5.613959201167636792e-06,5.733405141618012115e-06,5.852851082068387438e-06,5.972297022518762761e-06,6.091742962969138084e-06,6.211188903419513407e-06,6.330634843869888730e-06,6.450080784320264053e-06,6.569526724770639376e-06,6.688972665221014699e-06,6.808418605671390022e-06,6.927864546121765345e-06,7.047310486572140668e-06,7.166756427022515991e-06,7.286202367472891314e-06,7.405648307923266637e-06,7.525094248373641960e-06 +0.000000000000000000e+00,1.174882178352955117e-07,2.349764356705910235e-07,3.524646535058865220e-07,4.699528713411819940e-07,5.874410891764774660e-07,7.049293070117729381e-07,8.224175248470684101e-07,9.399057426823638821e-07,1.057393960517659460e-06,1.174882178352955144e-06,1.292370396188250828e-06,1.409858614023546511e-06,1.527346831858842195e-06,1.644835049694137879e-06,1.762323267529433563e-06,1.879811485364729247e-06,1.997299703200024930e-06,2.114787921035320614e-06,2.232276138870616298e-06,2.349764356705911982e-06,2.467252574541207666e-06,2.584740792376503349e-06,2.702229010211799033e-06,2.819717228047094717e-06,2.937205445882390401e-06,3.054693663717686084e-06,3.172181881552981768e-06,3.289670099388277452e-06,3.407158317223573136e-06,3.524646535058868820e-06,3.642134752894164503e-06,3.759622970729460187e-06,3.877111188564755871e-06,3.994599406400051555e-06,4.112087624235347239e-06,4.229575842070642922e-06,4.347064059905938606e-06,4.464552277741234290e-06,4.582040495576529974e-06,4.699528713411825658e-06,4.817016931247121341e-06,4.934505149082417025e-06,5.051993366917712709e-06,5.169481584753008393e-06,5.286969802588304077e-06,5.404458020423599760e-06,5.521946238258895444e-06,5.639434456094191128e-06,5.756922673929486812e-06,5.874410891764782495e-06,5.991899109600078179e-06,6.109387327435373863e-06,6.226875545270669547e-06,6.344363763105965231e-06,6.461851980941260914e-06,6.579340198776556598e-06,6.696828416611852282e-06,6.814316634447147966e-06,6.931804852282443650e-06,7.049293070117739333e-06,7.166781287953035017e-06,7.284269505788330701e-06,7.401757723623626385e-06 +0.000000000000000000e+00,1.175198206920109939e-07,2.350396413840219879e-07,3.525594620760329950e-07,4.700792827680440287e-07,5.875991034600550623e-07,7.051189241520660959e-07,8.226387448440771296e-07,9.401585655360881632e-07,1.057678386228099197e-06,1.175198206920110125e-06,1.292718027612121052e-06,1.410237848304131980e-06,1.527757668996142908e-06,1.645277489688153836e-06,1.762797310380164763e-06,1.880317131072175691e-06,1.997836951764186831e-06,2.115356772456197970e-06,2.232876593148209110e-06,2.350396413840220249e-06,2.467916234532231389e-06,2.585436055224242528e-06,2.702955875916253668e-06,2.820475696608264807e-06,2.937995517300275947e-06,3.055515337992287086e-06,3.173035158684298226e-06,3.290554979376309365e-06,3.408074800068320505e-06,3.525594620760331644e-06,3.643114441452342784e-06,3.760634262144353923e-06,3.878154082836365063e-06,3.995673903528376202e-06,4.113193724220387342e-06,4.230713544912398481e-06,4.348233365604409621e-06,4.465753186296420761e-06,4.583273006988431900e-06,4.700792827680443040e-06,4.818312648372454179e-06,4.935832469064465319e-06,5.053352289756476458e-06,5.170872110448487598e-06,5.288391931140498737e-06,5.405911751832509877e-06,5.523431572524521016e-06,5.640951393216532156e-06,5.758471213908543295e-06,5.875991034600554435e-06,5.993510855292565574e-06,6.111030675984576714e-06,6.228550496676587853e-06,6.346070317368598993e-06,6.463590138060610132e-06,6.581109958752621272e-06,6.698629779444632411e-06,6.816149600136643551e-06,6.933669420828654690e-06,7.051189241520665830e-06,7.168709062212676969e-06,7.286228882904688109e-06,7.403748703596699248e-06 +0.000000000000000000e+00,1.194459404503646821e-07,2.388918809007293643e-07,3.583378213510940464e-07,4.777837618014587285e-07,5.972297022518234636e-07,7.166756427021881987e-07,8.361215831525529338e-07,9.555675236029176688e-07,1.075013464053282404e-06,1.194459404503647139e-06,1.313905344954011874e-06,1.433351285404376609e-06,1.552797225854741344e-06,1.672243166305106079e-06,1.791689106755470814e-06,1.911135047205835761e-06,2.030580987656200920e-06,2.150026928106566078e-06,2.269472868556931237e-06,2.388918809007296396e-06,2.508364749457661554e-06,2.627810689908026713e-06,2.747256630358391871e-06,2.866702570808757030e-06,2.986148511259122189e-06,3.105594451709487347e-06,3.225040392159852506e-06,3.344486332610217664e-06,3.463932273060582823e-06,3.583378213510947981e-06,3.702824153961313140e-06,3.822270094411678299e-06,3.941716034862043457e-06,4.061161975312408616e-06,4.180607915762773774e-06,4.300053856213138933e-06,4.419499796663504092e-06,4.538945737113869250e-06,4.658391677564234409e-06,4.777837618014599567e-06,4.897283558464964726e-06,5.016729498915329885e-06,5.136175439365695043e-06,5.255621379816060202e-06,5.375067320266425360e-06,5.494513260716790519e-06,5.613959201167155678e-06,5.733405141617520836e-06,5.852851082067885995e-06,5.972297022518251153e-06,6.091742962968616312e-06,6.211188903418981470e-06,6.330634843869346629e-06,6.450080784319711788e-06,6.569526724770076946e-06,6.688972665220442105e-06,6.808418605670807263e-06,6.927864546121172422e-06,7.047310486571537581e-06,7.166756427021902739e-06,7.286202367472267898e-06,7.405648307922633056e-06,7.525094248372998215e-06 +0.000000000000000000e+00,1.174882178352860885e-07,2.349764356705721770e-07,3.524646535058582523e-07,4.699528713411443010e-07,5.874410891764303498e-07,7.049293070117163986e-07,8.224175248470024474e-07,9.399057426822884962e-07,1.057393960517574545e-06,1.174882178352860700e-06,1.292370396188146854e-06,1.409858614023433009e-06,1.527346831858719164e-06,1.644835049694005318e-06,1.762323267529291473e-06,1.879811485364577628e-06,1.997299703199863994e-06,2.114787921035150361e-06,2.232276138870436727e-06,2.349764356705723093e-06,2.467252574541009460e-06,2.584740792376295826e-06,2.702229010211582193e-06,2.819717228046868559e-06,2.937205445882154926e-06,3.054693663717441292e-06,3.172181881552727658e-06,3.289670099388014025e-06,3.407158317223300391e-06,3.524646535058586758e-06,3.642134752893873124e-06,3.759622970729159491e-06,3.877111188564445857e-06,3.994599406399732223e-06,4.112087624235018590e-06,4.229575842070304956e-06,4.347064059905591323e-06,4.464552277740877689e-06,4.582040495576164056e-06,4.699528713411450422e-06,4.817016931246736788e-06,4.934505149082023155e-06,5.051993366917309521e-06,5.169481584752595888e-06,5.286969802587882254e-06,5.404458020423168621e-06,5.521946238258454987e-06,5.639434456093741353e-06,5.756922673929027720e-06,5.874410891764314086e-06,5.991899109599600453e-06,6.109387327434886819e-06,6.226875545270173186e-06,6.344363763105459552e-06,6.461851980940745918e-06,6.579340198776032285e-06,6.696828416611318651e-06,6.814316634446605018e-06,6.931804852281891384e-06,7.049293070117177751e-06,7.166781287952464117e-06,7.284269505787750483e-06,7.401757723623036850e-06 +0.000000000000000000e+00,1.175198206920012531e-07,2.350396413840025061e-07,3.525594620760037724e-07,4.700792827680050652e-07,5.875991034600063579e-07,7.051189241520076507e-07,8.226387448440089434e-07,9.401585655360102362e-07,1.057678386228011529e-06,1.175198206920012716e-06,1.292718027612013903e-06,1.410237848304015090e-06,1.527757668996016276e-06,1.645277489688017463e-06,1.762797310380018650e-06,1.880317131072019837e-06,1.997836951764020812e-06,2.115356772456021787e-06,2.232876593148022762e-06,2.350396413840023738e-06,2.467916234532024713e-06,2.585436055224025688e-06,2.702955875916026663e-06,2.820475696608027638e-06,2.937995517300028613e-06,3.055515337992029588e-06,3.173035158684030563e-06,3.290554979376031539e-06,3.408074800068032514e-06,3.525594620760033489e-06,3.643114441452034464e-06,3.760634262144035439e-06,3.878154082836036414e-06,3.995673903528037389e-06,4.113193724220038364e-06,4.230713544912039340e-06,4.348233365604040315e-06,4.465753186296041290e-06,4.583273006988042265e-06,4.700792827680043240e-06,4.818312648372044215e-06,4.935832469064045190e-06,5.053352289756046165e-06,5.170872110448047140e-06,5.288391931140048116e-06,5.405911751832049091e-06,5.523431572524050066e-06,5.640951393216051041e-06,5.758471213908052016e-06,5.875991034600052991e-06,5.993510855292053966e-06,6.111030675984054941e-06,6.228550496676055917e-06,6.346070317368056892e-06,6.463590138060057867e-06,6.581109958752058842e-06,6.698629779444059817e-06,6.816149600136060792e-06,6.933669420828061767e-06,7.051189241520062742e-06,7.168709062212063718e-06,7.286228882904064693e-06,7.403748703596065668e-06 +0.000000000000000000e+00,1.235909514845915120e-07,2.471819029691830239e-07,3.707728544537745094e-07,4.943638059383659420e-07,6.179547574229573746e-07,7.415457089075488071e-07,8.651366603921402397e-07,9.887276118767316722e-07,1.112318563361323105e-06,1.235909514845914537e-06,1.359500466330505970e-06,1.483091417815097402e-06,1.606682369299688835e-06,1.730273320784280268e-06,1.853864272268871700e-06,1.977455223753462921e-06,2.101046175238054142e-06,2.224637126722645363e-06,2.348228078207236583e-06,2.471819029691827804e-06,2.595409981176419025e-06,2.719000932661010246e-06,2.842591884145601467e-06,2.966182835630192687e-06,3.089773787114783908e-06,3.213364738599375129e-06,3.336955690083966350e-06,3.460546641568557571e-06,3.584137593053148791e-06,3.707728544537740012e-06,3.831319496022331657e-06,3.954910447506923301e-06,4.078501398991514945e-06,4.202092350476106589e-06,4.325683301960698234e-06,4.449274253445289878e-06,4.572865204929881522e-06,4.696456156414473167e-06,4.820047107899064811e-06,4.943638059383656455e-06,5.067229010868248100e-06,5.190819962352839744e-06,5.314410913837431388e-06,5.438001865322023033e-06,5.561592816806614677e-06,5.685183768291206321e-06,5.808774719775797966e-06,5.932365671260389610e-06,6.055956622744981254e-06,6.179547574229572899e-06,6.303138525714164543e-06,6.426729477198756187e-06,6.550320428683347831e-06,6.673911380167939476e-06,6.797502331652531120e-06,6.921093283137122764e-06,7.044684234621714409e-06,7.168275186106306053e-06,7.291866137590897697e-06,7.415457089075489342e-06,7.539048040560080986e-06,7.662638992044673477e-06,7.786229943529265969e-06 +0.000000000000000000e+00,1.214861038842068243e-07,2.429722077684136486e-07,3.644583116526204994e-07,4.859444155368274031e-07,6.074305194210343068e-07,7.289166233052412105e-07,8.504027271894481142e-07,9.718888310736550179e-07,1.093374934957862027e-06,1.214861038842069037e-06,1.336347142726276047e-06,1.457833246610483056e-06,1.579319350494690066e-06,1.700805454378897075e-06,1.822291558263104085e-06,1.943777662147311306e-06,2.065263766031518528e-06,2.186749869915725749e-06,2.308235973799932970e-06,2.429722077684140192e-06,2.551208181568347413e-06,2.672694285452554634e-06,2.794180389336761856e-06,2.915666493220969077e-06,3.037152597105176298e-06,3.158638700989383520e-06,3.280124804873590741e-06,3.401610908757797963e-06,3.523097012642005184e-06,3.644583116526212405e-06,3.766069220410419627e-06,3.887555324294626848e-06,4.009041428178834069e-06,4.130527532063041291e-06,4.252013635947248512e-06,4.373499739831455733e-06,4.494985843715662955e-06,4.616471947599870176e-06,4.737958051484077397e-06,4.859444155368284619e-06,4.980930259252491840e-06,5.102416363136699061e-06,5.223902467020906283e-06,5.345388570905113504e-06,5.466874674789320725e-06,5.588360778673527947e-06,5.709846882557735168e-06,5.831332986441942389e-06,5.952819090326149611e-06,6.074305194210356832e-06,6.195791298094564053e-06,6.317277401978771275e-06,6.438763505862978496e-06,6.560249609747185718e-06,6.681735713631392939e-06,6.803221817515600160e-06,6.924707921399807382e-06,7.046194025284014603e-06,7.167680129168221824e-06,7.289166233052429046e-06,7.410652336936636267e-06,7.532138440820843488e-06,7.653624544705051557e-06 +0.000000000000000000e+00,1.218441808239555679e-07,2.436883616479111357e-07,3.655325424718667301e-07,4.873767232958223773e-07,6.092209041197780246e-07,7.310650849437336719e-07,8.529092657676893191e-07,9.747534465916449664e-07,1.096597627415600720e-06,1.218441808239556473e-06,1.340285989063512226e-06,1.462130169887467979e-06,1.583974350711423732e-06,1.705818531535379485e-06,1.827662712359335238e-06,1.949506893183291203e-06,2.071351074007247168e-06,2.193195254831203133e-06,2.315039435655159098e-06,2.436883616479115063e-06,2.558727797303071028e-06,2.680571978127026993e-06,2.802416158950982958e-06,2.924260339774938923e-06,3.046104520598894888e-06,3.167948701422850852e-06,3.289792882246806817e-06,3.411637063070762782e-06,3.533481243894718747e-06,3.655325424718674712e-06,3.777169605542630677e-06,3.899013786366586642e-06,4.020857967190542183e-06,4.142702148014497725e-06,4.264546328838453266e-06,4.386390509662408807e-06,4.508234690486364349e-06,4.630078871310319890e-06,4.751923052134275432e-06,4.873767232958230973e-06,4.995611413782186514e-06,5.117455594606142056e-06,5.239299775430097597e-06,5.361143956254053139e-06,5.482988137078008680e-06,5.604832317901964221e-06,5.726676498725919763e-06,5.848520679549875304e-06,5.970364860373830846e-06,6.092209041197786387e-06,6.214053222021741928e-06,6.335897402845697470e-06,6.457741583669653011e-06,6.579585764493608553e-06,6.701429945317564094e-06,6.823274126141519635e-06,6.945118306965475177e-06,7.066962487789430718e-06,7.188806668613386260e-06,7.310650849437341801e-06,7.432495030261297342e-06,7.554339211085252884e-06,7.676183391909208425e-06 +0.000000000000000000e+00,1.235909514845807123e-07,2.471819029691614246e-07,3.707728544537421104e-07,4.943638059383227433e-07,6.179547574229033762e-07,7.415457089074840091e-07,8.651366603920646420e-07,9.887276118766452749e-07,1.112318563361225908e-06,1.235909514845806541e-06,1.359500466330387174e-06,1.483091417814967806e-06,1.606682369299548439e-06,1.730273320784129072e-06,1.853864272268709705e-06,1.977455223753290126e-06,2.101046175237870759e-06,2.224637126722451392e-06,2.348228078207032025e-06,2.471819029691612658e-06,2.595409981176193291e-06,2.719000932660773924e-06,2.842591884145354556e-06,2.966182835629935189e-06,3.089773787114515822e-06,3.213364738599096455e-06,3.336955690083677088e-06,3.460546641568257721e-06,3.584137593052838354e-06,3.707728544537418987e-06,3.831319496021999620e-06,3.954910447506580252e-06,4.078501398991160885e-06,4.202092350475741518e-06,4.325683301960322151e-06,4.449274253444902784e-06,4.572865204929483417e-06,4.696456156414064050e-06,4.820047107898644683e-06,4.943638059383225316e-06,5.067229010867805948e-06,5.190819962352386581e-06,5.314410913836967214e-06,5.438001865321547847e-06,5.561592816806128480e-06,5.685183768290709113e-06,5.808774719775289746e-06,5.932365671259870379e-06,6.055956622744451012e-06,6.179547574229031644e-06,6.303138525713612277e-06,6.426729477198192910e-06,6.550320428682773543e-06,6.673911380167354176e-06,6.797502331651934809e-06,6.921093283136515442e-06,7.044684234621096075e-06,7.168275186105676708e-06,7.291866137590257341e-06,7.415457089074837973e-06,7.539048040559418606e-06,7.662638992043999239e-06,7.786229943528579872e-06 +0.000000000000000000e+00,1.214861038841966334e-07,2.429722077683932669e-07,3.644583116525899003e-07,4.859444155367865337e-07,6.074305194209831672e-07,7.289166233051798006e-07,8.504027271893764340e-07,9.718888310735730675e-07,1.093374934957769701e-06,1.214861038841966334e-06,1.336347142726162968e-06,1.457833246610359601e-06,1.579319350494556235e-06,1.700805454378752868e-06,1.822291558262949502e-06,1.943777662147146135e-06,2.065263766031342768e-06,2.186749869915539402e-06,2.308235973799736035e-06,2.429722077683932669e-06,2.551208181568129302e-06,2.672694285452325936e-06,2.794180389336522569e-06,2.915666493220719202e-06,3.037152597104915836e-06,3.158638700989112469e-06,3.280124804873309103e-06,3.401610908757505736e-06,3.523097012641702370e-06,3.644583116525899003e-06,3.766069220410095636e-06,3.887555324294292270e-06,4.009041428178489327e-06,4.130527532062686384e-06,4.252013635946883441e-06,4.373499739831080498e-06,4.494985843715277555e-06,4.616471947599474612e-06,4.737958051483671669e-06,4.859444155367868725e-06,4.980930259252065782e-06,5.102416363136262839e-06,5.223902467020459896e-06,5.345388570904656953e-06,5.466874674788854010e-06,5.588360778673051067e-06,5.709846882557248124e-06,5.831332986441445181e-06,5.952819090325642238e-06,6.074305194209839295e-06,6.195791298094036352e-06,6.317277401978233409e-06,6.438763505862430466e-06,6.560249609746627523e-06,6.681735713630824580e-06,6.803221817515021637e-06,6.924707921399218694e-06,7.046194025283415751e-06,7.167680129167612808e-06,7.289166233051809865e-06,7.410652336936006921e-06,7.532138440820203978e-06,7.653624544704401035e-06 +0.000000000000000000e+00,1.218441808239449800e-07,2.436883616478899599e-07,3.655325424718349663e-07,4.873767232957800257e-07,6.092209041197250850e-07,7.310650849436701444e-07,8.529092657676152038e-07,9.747534465915602631e-07,1.096597627415505428e-06,1.218441808239450594e-06,1.340285989063395759e-06,1.462130169887340924e-06,1.583974350711286089e-06,1.705818531535231255e-06,1.827662712359176420e-06,1.949506893183121797e-06,2.071351074007067174e-06,2.193195254831012551e-06,2.315039435654957928e-06,2.436883616478903305e-06,2.558727797302848682e-06,2.680571978126794059e-06,2.802416158950739436e-06,2.924260339774684813e-06,3.046104520598630190e-06,3.167948701422575567e-06,3.289792882246520944e-06,3.411637063070466321e-06,3.533481243894411698e-06,3.655325424718357075e-06,3.777169605542302452e-06,3.899013786366247829e-06,4.020857967190193206e-06,4.142702148014138583e-06,4.264546328838083960e-06,4.386390509662029337e-06,4.508234690485974714e-06,4.630078871309920091e-06,4.751923052133865468e-06,4.873767232957810845e-06,4.995611413781756222e-06,5.117455594605701599e-06,5.239299775429646976e-06,5.361143956253592353e-06,5.482988137077537730e-06,5.604832317901483107e-06,5.726676498725428484e-06,5.848520679549373861e-06,5.970364860373319238e-06,6.092209041197264615e-06,6.214053222021209992e-06,6.335897402845155369e-06,6.457741583669100746e-06,6.579585764493046123e-06,6.701429945316991500e-06,6.823274126140936877e-06,6.945118306964882254e-06,7.066962487788827631e-06,7.188806668612773008e-06,7.310650849436718385e-06,7.432495030260663762e-06,7.554339211084609139e-06,7.676183391908554516e-06 +0.000000000000000000e+00,1.279337353766747882e-07,2.558674707533495764e-07,3.838012061300243910e-07,5.117349415066992586e-07,6.396686768833741262e-07,7.676024122600489938e-07,8.955361476367238614e-07,1.023469883013398729e-06,1.151403618390073597e-06,1.279337353766748464e-06,1.407271089143423332e-06,1.535204824520098199e-06,1.663138559896773067e-06,1.791072295273447935e-06,1.919006030650123014e-06,2.046939766026797882e-06,2.174873501403472749e-06,2.302807236780147617e-06,2.430740972156822484e-06,2.558674707533497352e-06,2.686608442910172220e-06,2.814542178286847087e-06,2.942475913663521955e-06,3.070409649040196822e-06,3.198343384416871690e-06,3.326277119793546558e-06,3.454210855170221425e-06,3.582144590546896293e-06,3.710078325923571160e-06,3.838012061300246028e-06,3.965945796676920896e-06,4.093879532053595763e-06,4.221813267430270631e-06,4.349747002806945498e-06,4.477680738183620366e-06,4.605614473560295234e-06,4.733548208936970101e-06,4.861481944313644969e-06,4.989415679690319836e-06,5.117349415066994704e-06,5.245283150443669572e-06,5.373216885820344439e-06,5.501150621197019307e-06,5.629084356573694174e-06,5.757018091950369042e-06,5.884951827327043910e-06,6.012885562703718777e-06,6.140819298080393645e-06,6.268753033457068512e-06,6.396686768833743380e-06,6.524620504210418248e-06,6.652554239587093115e-06,6.780487974963767983e-06,6.908421710340442850e-06,7.036355445717117718e-06,7.164289181093792586e-06,7.292222916470467453e-06,7.420156651847142321e-06,7.548090387223817188e-06,7.676024122600492056e-06,7.803957857977166076e-06,7.931891593353840097e-06,8.059825328730514118e-06 +0.000000000000000000e+00,1.257413652379793739e-07,2.514827304759587477e-07,3.772240957139381481e-07,5.029654609519176013e-07,6.287068261898970546e-07,7.544481914278765079e-07,8.801895566658559612e-07,1.005930921903835414e-06,1.131672287141814974e-06,1.257413652379794533e-06,1.383155017617774092e-06,1.508896382855753651e-06,1.634637748093733210e-06,1.760379113331712769e-06,1.886120478569692329e-06,2.011861843807672099e-06,2.137603209045651870e-06,2.263344574283631641e-06,2.389085939521611412e-06,2.514827304759591183e-06,2.640568669997570954e-06,2.766310035235550725e-06,2.892051400473530496e-06,3.017792765711510267e-06,3.143534130949490038e-06,3.269275496187469809e-06,3.395016861425449580e-06,3.520758226663429350e-06,3.646499591901409121e-06,3.772240957139388892e-06,3.897982322377368240e-06,4.023723687615347587e-06,4.149465052853326934e-06,4.275206418091306282e-06,4.400947783329285629e-06,4.526689148567264977e-06,4.652430513805244324e-06,4.778171879043223671e-06,4.903913244281203019e-06,5.029654609519182366e-06,5.155395974757161714e-06,5.281137339995141061e-06,5.406878705233120408e-06,5.532620070471099756e-06,5.658361435709079103e-06,5.784102800947058451e-06,5.909844166185037798e-06,6.035585531423017145e-06,6.161326896660996493e-06,6.287068261898975840e-06,6.412809627136955188e-06,6.538550992374934535e-06,6.664292357612913882e-06,6.790033722850893230e-06,6.915775088088872577e-06,7.041516453326851925e-06,7.167257818564831272e-06,7.292999183802810619e-06,7.418740549040789967e-06,7.544481914278769314e-06,7.670223279516748662e-06,7.795964644754728009e-06,7.921706009992707356e-06 +0.000000000000000000e+00,1.262854005314514112e-07,2.525708010629028223e-07,3.788562015943542599e-07,5.051416021258057505e-07,6.314270026572572411e-07,7.577124031887087317e-07,8.839978037201602222e-07,1.010283204251611713e-06,1.136568604783063203e-06,1.262854005314514694e-06,1.389139405845966184e-06,1.515424806377417675e-06,1.641710206908869166e-06,1.767995607440320656e-06,1.894281007971772147e-06,2.020566408503223849e-06,2.146851809034675551e-06,2.273137209566127254e-06,2.399422610097578956e-06,2.525708010629030658e-06,2.651993411160482361e-06,2.778278811691934063e-06,2.904564212223385765e-06,3.030849612754837468e-06,3.157135013286289170e-06,3.283420413817740872e-06,3.409705814349192575e-06,3.535991214880644277e-06,3.662276615412095979e-06,3.788562015943547682e-06,3.914847416474999384e-06,4.041132817006451086e-06,4.167418217537902789e-06,4.293703618069354491e-06,4.419989018600806193e-06,4.546274419132257896e-06,4.672559819663709598e-06,4.798845220195161300e-06,4.925130620726613003e-06,5.051416021258064705e-06,5.177701421789516407e-06,5.303986822320968110e-06,5.430272222852419812e-06,5.556557623383871514e-06,5.682843023915323217e-06,5.809128424446774919e-06,5.935413824978226621e-06,6.061699225509678324e-06,6.187984626041130026e-06,6.314270026572581728e-06,6.440555427104033431e-06,6.566840827635485133e-06,6.693126228166936835e-06,6.819411628698388537e-06,6.945697029229840240e-06,7.071982429761291942e-06,7.198267830292743644e-06,7.324553230824195347e-06,7.450838631355647049e-06,7.577124031887098751e-06,7.703409432418550454e-06,7.829694832950002156e-06,7.955980233481453858e-06 +0.000000000000000000e+00,1.279337353766643856e-07,2.558674707533287711e-07,3.838012061299931567e-07,5.117349415066575423e-07,6.396686768833219278e-07,7.676024122599863134e-07,8.955361476366506990e-07,1.023469883013315085e-06,1.151403618389979364e-06,1.279337353766643644e-06,1.407271089143307924e-06,1.535204824519972203e-06,1.663138559896636483e-06,1.791072295273300763e-06,1.919006030649965042e-06,2.046939766026629322e-06,2.174873501403293602e-06,2.302807236779957881e-06,2.430740972156622161e-06,2.558674707533286441e-06,2.686608442909950720e-06,2.814542178286615000e-06,2.942475913663279280e-06,3.070409649039943560e-06,3.198343384416607839e-06,3.326277119793272119e-06,3.454210855169936399e-06,3.582144590546600678e-06,3.710078325923264958e-06,3.838012061299929238e-06,3.965945796676593094e-06,4.093879532053256950e-06,4.221813267429920806e-06,4.349747002806584662e-06,4.477680738183248518e-06,4.605614473559912375e-06,4.733548208936576231e-06,4.861481944313240087e-06,4.989415679689903943e-06,5.117349415066567799e-06,5.245283150443231656e-06,5.373216885819895512e-06,5.501150621196559368e-06,5.629084356573223224e-06,5.757018091949887080e-06,5.884951827326550936e-06,6.012885562703214793e-06,6.140819298079878649e-06,6.268753033456542505e-06,6.396686768833206361e-06,6.524620504209870217e-06,6.652554239586534073e-06,6.780487974963197930e-06,6.908421710339861786e-06,7.036355445716525642e-06,7.164289181093189498e-06,7.292222916469853354e-06,7.420156651846517210e-06,7.548090387223181067e-06,7.676024122599844923e-06,7.803957857976508779e-06,7.931891593353172635e-06,8.059825328729836491e-06 +0.000000000000000000e+00,1.257413652379686271e-07,2.514827304759372543e-07,3.772240957139058549e-07,5.029654609518744027e-07,6.287068261898429504e-07,7.544481914278114981e-07,8.801895566657800458e-07,1.005930921903748594e-06,1.131672287141717141e-06,1.257413652379685689e-06,1.383155017617654237e-06,1.508896382855622784e-06,1.634637748093591332e-06,1.760379113331559880e-06,1.886120478569528428e-06,2.011861843807496764e-06,2.137603209045465100e-06,2.263344574283433436e-06,2.389085939521401772e-06,2.514827304759370108e-06,2.640568669997338443e-06,2.766310035235306779e-06,2.892051400473275115e-06,3.017792765711243451e-06,3.143534130949211787e-06,3.269275496187180123e-06,3.395016861425148459e-06,3.520758226663116795e-06,3.646499591901085131e-06,3.772240957139053467e-06,3.897982322377021803e-06,4.023723687614990139e-06,4.149465052852958475e-06,4.275206418090926811e-06,4.400947783328895147e-06,4.526689148566863483e-06,4.652430513804831819e-06,4.778171879042800155e-06,4.903913244280768491e-06,5.029654609518736827e-06,5.155395974756705163e-06,5.281137339994673499e-06,5.406878705232641835e-06,5.532620070470610171e-06,5.658361435708578507e-06,5.784102800946546843e-06,5.909844166184515179e-06,6.035585531422483515e-06,6.161326896660451851e-06,6.287068261898420187e-06,6.412809627136388523e-06,6.538550992374356859e-06,6.664292357612325194e-06,6.790033722850293530e-06,6.915775088088261866e-06,7.041516453326230202e-06,7.167257818564198538e-06,7.292999183802166874e-06,7.418740549040135210e-06,7.544481914278103546e-06,7.670223279516071035e-06,7.795964644754038524e-06,7.921706009992006013e-06 +0.000000000000000000e+00,1.262854005314405850e-07,2.525708010628811700e-07,3.788562015943217551e-07,5.051416021257623401e-07,6.314270026572029251e-07,7.577124031886435101e-07,8.839978037200840951e-07,1.010283204251524680e-06,1.136568604782965371e-06,1.262854005314406062e-06,1.389139405845846753e-06,1.515424806377287444e-06,1.641710206908728135e-06,1.767995607440168826e-06,1.894281007971609516e-06,2.020566408503050207e-06,2.146851809034490898e-06,2.273137209565931589e-06,2.399422610097372280e-06,2.525708010628812971e-06,2.651993411160253662e-06,2.778278811691694353e-06,2.904564212223135044e-06,3.030849612754575735e-06,3.157135013286016425e-06,3.283420413817457116e-06,3.409705814348897807e-06,3.535991214880338498e-06,3.662276615411779189e-06,3.788562015943219880e-06,3.914847416474660571e-06,4.041132817006101262e-06,4.167418217537541953e-06,4.293703618068982644e-06,4.419989018600423334e-06,4.546274419131864025e-06,4.672559819663304716e-06,4.798845220194745407e-06,4.925130620726186098e-06,5.051416021257626789e-06,5.177701421789067480e-06,5.303986822320508171e-06,5.430272222851948862e-06,5.556557623383389552e-06,5.682843023914830243e-06,5.809128424446270934e-06,5.935413824977711625e-06,6.061699225509152316e-06,6.187984626040593007e-06,6.314270026572033698e-06,6.440555427103474389e-06,6.566840827634915080e-06,6.693126228166355771e-06,6.819411628697796461e-06,6.945697029229237152e-06,7.071982429760677843e-06,7.198267830292118534e-06,7.324553230823559225e-06,7.450838631354999916e-06,7.577124031886440607e-06,7.703409432417881298e-06,7.829694832949321142e-06,7.955980233480760985e-06 +0.000000000000000000e+00,1.324236710115598750e-07,2.648473420231197500e-07,3.972710130346796251e-07,5.296946840462395001e-07,6.621183550577993751e-07,7.945420260693592501e-07,9.269656970809191251e-07,1.059389368092479000e-06,1.191813039104038875e-06,1.324236710115598750e-06,1.456660381127158625e-06,1.589084052138718500e-06,1.721507723150278375e-06,1.853931394161838250e-06,1.986355065173397914e-06,2.118778736184957577e-06,2.251202407196517240e-06,2.383626078208076903e-06,2.516049749219636567e-06,2.648473420231196230e-06,2.780897091242755893e-06,2.913320762254315556e-06,3.045744433265875220e-06,3.178168104277434883e-06,3.310591775288994546e-06,3.443015446300554209e-06,3.575439117312113873e-06,3.707862788323673536e-06,3.840286459335233199e-06,3.972710130346792439e-06,4.105133801358351679e-06,4.237557472369910918e-06,4.369981143381470158e-06,4.502404814393029398e-06,4.634828485404588638e-06,4.767252156416147877e-06,4.899675827427707117e-06,5.032099498439266357e-06,5.164523169450825597e-06,5.296946840462384836e-06,5.429370511473944076e-06,5.561794182485503316e-06,5.694217853497062556e-06,5.826641524508621795e-06,5.959065195520181035e-06,6.091488866531740275e-06,6.223912537543299515e-06,6.356336208554858754e-06,6.488759879566417994e-06,6.621183550577977234e-06,6.753607221589536474e-06,6.886030892601095713e-06,7.018454563612654953e-06,7.150878234624214193e-06,7.283301905635773433e-06,7.415725576647332672e-06,7.548149247658891912e-06,7.680572918670451152e-06,7.812996589682010391e-06,7.945420260693569631e-06,8.077843931705128871e-06,8.210267602716688111e-06,8.342691273728247350e-06 +0.000000000000000000e+00,1.301605289207360684e-07,2.603210578414721367e-07,3.904815867622082316e-07,5.206421156829443793e-07,6.508026446036805271e-07,7.809631735244166749e-07,9.111237024451528227e-07,1.041284231365888970e-06,1.171444760286625012e-06,1.301605289207361054e-06,1.431765818128097096e-06,1.561926347048833138e-06,1.692086875969569180e-06,1.822247404890305222e-06,1.952407933811041264e-06,2.082568462731777517e-06,2.212728991652513771e-06,2.342889520573250025e-06,2.473050049493986278e-06,2.603210578414722532e-06,2.733371107335458786e-06,2.863531636256195039e-06,2.993692165176931293e-06,3.123852694097667547e-06,3.254013223018403800e-06,3.384173751939140054e-06,3.514334280859876308e-06,3.644494809780612561e-06,3.774655338701348815e-06,3.904815867622085068e-06,4.034976396542821746e-06,4.165136925463558423e-06,4.295297454384295100e-06,4.425457983305031777e-06,4.555618512225768454e-06,4.685779041146505131e-06,4.815939570067241809e-06,4.946100098987978486e-06,5.076260627908715163e-06,5.206421156829451840e-06,5.336581685750188517e-06,5.466742214670925195e-06,5.596902743591661872e-06,5.727063272512398549e-06,5.857223801433135226e-06,5.987384330353871903e-06,6.117544859274608580e-06,6.247705388195345258e-06,6.377865917116081935e-06,6.508026446036818612e-06,6.638186974957555289e-06,6.768347503878291966e-06,6.898508032799028643e-06,7.028668561719765321e-06,7.158829090640501998e-06,7.288989619561238675e-06,7.419150148481975352e-06,7.549310677402712029e-06,7.679471206323448706e-06,7.809631735244185384e-06,7.939792264164922061e-06,8.069952793085658738e-06,8.200113322006395415e-06 +0.000000000000000000e+00,1.308099970803151152e-07,2.616199941606302304e-07,3.924299912409453457e-07,5.232399883212604609e-07,6.540499854015755232e-07,7.848599824818905855e-07,9.156699795622056478e-07,1.046479976642520710e-06,1.177289973722835772e-06,1.308099970803150835e-06,1.438909967883465897e-06,1.569719964963780959e-06,1.700529962044096021e-06,1.831339959124411084e-06,1.962149956204725934e-06,2.092959953285040997e-06,2.223769950365356059e-06,2.354579947445671121e-06,2.485389944525986183e-06,2.616199941606301246e-06,2.747009938686616308e-06,2.877819935766931370e-06,3.008629932847246433e-06,3.139439929927561495e-06,3.270249927007876557e-06,3.401059924088191619e-06,3.531869921168506682e-06,3.662679918248821744e-06,3.793489915329136806e-06,3.924299912409451869e-06,4.055109909489766931e-06,4.185919906570081993e-06,4.316729903650397055e-06,4.447539900730712118e-06,4.578349897811027180e-06,4.709159894891342242e-06,4.839969891971657305e-06,4.970779889051972367e-06,5.101589886132287429e-06,5.232399883212602491e-06,5.363209880292917554e-06,5.494019877373232616e-06,5.624829874453547678e-06,5.755639871533862741e-06,5.886449868614177803e-06,6.017259865694492865e-06,6.148069862774807927e-06,6.278879859855122990e-06,6.409689856935438052e-06,6.540499854015753114e-06,6.671309851096068177e-06,6.802119848176383239e-06,6.932929845256698301e-06,7.063739842337013363e-06,7.194549839417328426e-06,7.325359836497643488e-06,7.456169833577958550e-06,7.586979830658273613e-06,7.717789827738589522e-06,7.848599824818905431e-06,7.979409821899221340e-06,8.110219818979537250e-06,8.241029816059853159e-06 +0.000000000000000000e+00,1.324236710115497900e-07,2.648473420230995801e-07,3.972710130346493436e-07,5.296946840461990543e-07,6.621183550577487649e-07,7.945420260692984755e-07,9.269656970808481861e-07,1.059389368092397897e-06,1.191813039103947607e-06,1.324236710115497318e-06,1.456660381127047029e-06,1.589084052138596739e-06,1.721507723150146450e-06,1.853931394161696160e-06,1.986355065173245871e-06,2.118778736184795370e-06,2.251202407196344869e-06,2.383626078207894368e-06,2.516049749219443867e-06,2.648473420230993365e-06,2.780897091242542864e-06,2.913320762254092363e-06,3.045744433265641862e-06,3.178168104277191361e-06,3.310591775288740860e-06,3.443015446300290359e-06,3.575439117311839857e-06,3.707862788323389356e-06,3.840286459334938432e-06,3.972710130346487507e-06,4.105133801358036582e-06,4.237557472369585658e-06,4.369981143381134733e-06,4.502404814392683808e-06,4.634828485404232884e-06,4.767252156415781959e-06,4.899675827427331034e-06,5.032099498438880110e-06,5.164523169450429185e-06,5.296946840461978261e-06,5.429370511473527336e-06,5.561794182485076411e-06,5.694217853496625487e-06,5.826641524508174562e-06,5.959065195519723637e-06,6.091488866531272713e-06,6.223912537542821788e-06,6.356336208554370863e-06,6.488759879565919939e-06,6.621183550577469014e-06,6.753607221589018089e-06,6.886030892600567165e-06,7.018454563612116240e-06,7.150878234623665315e-06,7.283301905635214391e-06,7.415725576646763466e-06,7.548149247658312541e-06,7.680572918669861617e-06,7.812996589681410692e-06,7.945420260692959768e-06,8.077843931704508843e-06,8.210267602716057918e-06,8.342691273727606994e-06 +0.000000000000000000e+00,1.301605289207257716e-07,2.603210578414515432e-07,3.904815867621773149e-07,5.206421156829030865e-07,6.508026446036288581e-07,7.809631735243546297e-07,9.111237024450804013e-07,1.041284231365806173e-06,1.171444760286531839e-06,1.301605289207257504e-06,1.431765818127983170e-06,1.561926347048708836e-06,1.692086875969434502e-06,1.822247404890160167e-06,1.952407933810885833e-06,2.082568462731611499e-06,2.212728991652337165e-06,2.342889520573062830e-06,2.473050049493788496e-06,2.603210578414514162e-06,2.733371107335239828e-06,2.863531636255965493e-06,2.993692165176691159e-06,3.123852694097416825e-06,3.254013223018142491e-06,3.384173751938868156e-06,3.514334280859593822e-06,3.644494809780319488e-06,3.774655338701045154e-06,3.904815867621770819e-06,4.034976396542496485e-06,4.165136925463222151e-06,4.295297454383947816e-06,4.425457983304673482e-06,4.555618512225399148e-06,4.685779041146124814e-06,4.815939570066850479e-06,4.946100098987576145e-06,5.076260627908301811e-06,5.206421156829027477e-06,5.336581685749753142e-06,5.466742214670478808e-06,5.596902743591204474e-06,5.727063272511930140e-06,5.857223801432655805e-06,5.987384330353381471e-06,6.117544859274107137e-06,6.247705388194832803e-06,6.377865917115558468e-06,6.508026446036284134e-06,6.638186974957009800e-06,6.768347503877735466e-06,6.898508032798461131e-06,7.028668561719186797e-06,7.158829090639912463e-06,7.288989619560638129e-06,7.419150148481363794e-06,7.549310677402089460e-06,7.679471206322815126e-06,7.809631735243539944e-06,7.939792264164264763e-06,8.069952793084989582e-06,8.200113322005714401e-06 +0.000000000000000000e+00,1.308099970803051361e-07,2.616199941606102722e-07,3.924299912409154348e-07,5.232399883212206504e-07,6.540499854015258659e-07,7.848599824818310814e-07,9.156699795621362969e-07,1.046479976642441512e-06,1.177289973722746622e-06,1.308099970803051732e-06,1.438909967883356841e-06,1.569719964963661951e-06,1.700529962043967061e-06,1.831339959124272170e-06,1.962149956204577280e-06,2.092959953284882601e-06,2.223769950365187923e-06,2.354579947445493244e-06,2.485389944525798566e-06,2.616199941606103887e-06,2.747009938686409208e-06,2.877819935766714530e-06,3.008629932847019851e-06,3.139439929927325173e-06,3.270249927007630494e-06,3.401059924087935815e-06,3.531869921168241137e-06,3.662679918248546458e-06,3.793489915328851780e-06,3.924299912409157101e-06,4.055109909489462846e-06,4.185919906569768591e-06,4.316729903650074336e-06,4.447539900730380081e-06,4.578349897810685826e-06,4.709159894890991571e-06,4.839969891971297316e-06,4.970779889051603060e-06,5.101589886131908805e-06,5.232399883212214550e-06,5.363209880292520295e-06,5.494019877372826040e-06,5.624829874453131785e-06,5.755639871533437530e-06,5.886449868613743275e-06,6.017259865694049020e-06,6.148069862774354765e-06,6.278879859854660510e-06,6.409689856934966255e-06,6.540499854015272000e-06,6.671309851095577744e-06,6.802119848175883489e-06,6.932929845256189234e-06,7.063739842336494979e-06,7.194549839416800724e-06,7.325359836497106469e-06,7.456169833577412214e-06,7.586979830657717959e-06,7.717789827738023704e-06,7.848599824818329449e-06,7.979409821898635194e-06,8.110219818978940939e-06,8.241029816059246684e-06 +0.000000000000000000e+00,1.370623542072978676e-07,2.741247084145957352e-07,4.111870626218936028e-07,5.482494168291914704e-07,6.853117710364893909e-07,8.223741252437873114e-07,9.594364794510852319e-07,1.096498833658383152e-06,1.233561187865681073e-06,1.370623542072978994e-06,1.507685896280276914e-06,1.644748250487574835e-06,1.781810604694872755e-06,1.918872958902170464e-06,2.055935313109468173e-06,2.192997667316765881e-06,2.330060021524063590e-06,2.467122375731361299e-06,2.604184729938659008e-06,2.741247084145956716e-06,2.878309438353254425e-06,3.015371792560552134e-06,3.152434146767849843e-06,3.289496500975147552e-06,3.426558855182445260e-06,3.563621209389742969e-06,3.700683563597040678e-06,3.837745917804338387e-06,3.974808272011635672e-06,4.111870626218932957e-06,4.248932980426230242e-06,4.385995334633527528e-06,4.523057688840824813e-06,4.660120043048122098e-06,4.797182397255419383e-06,4.934244751462716669e-06,5.071307105670013954e-06,5.208369459877311239e-06,5.345431814084608524e-06,5.482494168291905810e-06,5.619556522499203095e-06,5.756618876706500380e-06,5.893681230913797665e-06,6.030743585121094951e-06,6.167805939328392236e-06,6.304868293535689521e-06,6.441930647742986806e-06,6.578993001950284092e-06,6.716055356157581377e-06,6.853117710364878662e-06,6.990180064572175947e-06,7.127242418779473233e-06,7.264304772986770518e-06,7.401367127194067803e-06,7.538429481401365088e-06,7.675491835608661527e-06,7.812554189815957965e-06,7.949616544023254403e-06,8.086678898230550841e-06,8.223741252437847280e-06,8.360803606645143718e-06,8.497865960852440156e-06,8.634928315059736594e-06 +0.000000000000000000e+00,1.347220000954641670e-07,2.694440001909283340e-07,4.041660002863925274e-07,5.388880003818567738e-07,6.736100004773210203e-07,8.083320005727852667e-07,9.430540006682495131e-07,1.077776000763713759e-06,1.212498000859177900e-06,1.347220000954642041e-06,1.481942001050106181e-06,1.616664001145570322e-06,1.751386001241034462e-06,1.886108001336498603e-06,2.020830001431962743e-06,2.155552001527427095e-06,2.290274001622891448e-06,2.424996001718355800e-06,2.559718001813820152e-06,2.694440001909284505e-06,2.829162002004748857e-06,2.963884002100213209e-06,3.098606002195677561e-06,3.233328002291141914e-06,3.368050002386606266e-06,3.502772002482070618e-06,3.637494002577534970e-06,3.772216002672999323e-06,3.906938002768463252e-06,4.041660002863927180e-06,4.176382002959391109e-06,4.311104003054855038e-06,4.445826003150318967e-06,4.580548003245782895e-06,4.715270003341246824e-06,4.849992003436710753e-06,4.984714003532174682e-06,5.119436003627638610e-06,5.254158003723102539e-06,5.388880003818566468e-06,5.523602003914030397e-06,5.658324004009494325e-06,5.793046004104958254e-06,5.927768004200422183e-06,6.062490004295886112e-06,6.197212004391350041e-06,6.331934004486813969e-06,6.466656004582277898e-06,6.601378004677741827e-06,6.736100004773205756e-06,6.870822004868669684e-06,7.005544004964133613e-06,7.140266005059597542e-06,7.274988005155061471e-06,7.409710005250525399e-06,7.544432005345989328e-06,7.679154005441453257e-06,7.813876005536916339e-06,7.948598005632379420e-06,8.083320005727842502e-06,8.218042005823305584e-06,8.352764005918768666e-06,8.487486006014231747e-06 +0.000000000000000000e+00,1.353989327414701677e-07,2.707978654829403353e-07,4.061967982244105295e-07,5.415957309658807766e-07,6.769946637073510236e-07,8.123935964488212707e-07,9.477925291902915178e-07,1.083191461931761765e-06,1.218590394673232118e-06,1.353989327414702471e-06,1.489388260156172824e-06,1.624787192897643177e-06,1.760186125639113530e-06,1.895585058380583883e-06,2.030983991122054236e-06,2.166382923863524800e-06,2.301781856604995365e-06,2.437180789346465930e-06,2.572579722087936494e-06,2.707978654829407059e-06,2.843377587570877624e-06,2.978776520312348189e-06,3.114175453053818753e-06,3.249574385795289318e-06,3.384973318536759883e-06,3.520372251278230447e-06,3.655771184019701012e-06,3.791170116761171577e-06,3.926569049502642565e-06,4.061967982244113553e-06,4.197366914985584542e-06,4.332765847727055530e-06,4.468164780468526518e-06,4.603563713209997506e-06,4.738962645951468494e-06,4.874361578692939483e-06,5.009760511434410471e-06,5.145159444175881459e-06,5.280558376917352447e-06,5.415957309658823436e-06,5.551356242400294424e-06,5.686755175141765412e-06,5.822154107883236400e-06,5.957553040624707389e-06,6.092951973366178377e-06,6.228350906107649365e-06,6.363749838849120353e-06,6.499148771590591342e-06,6.634547704332062330e-06,6.769946637073533318e-06,6.905345569815004306e-06,7.040744502556475294e-06,7.176143435297946283e-06,7.311542368039417271e-06,7.446941300780888259e-06,7.582340233522359247e-06,7.717739166263830236e-06,7.853138099005302071e-06,7.988537031746773906e-06,8.123935964488245741e-06,8.259334897229717577e-06,8.394733829971189412e-06,8.530132762712661247e-06 +0.000000000000000000e+00,1.370623542072896884e-07,2.741247084145793769e-07,4.111870626218690917e-07,5.482494168291588596e-07,6.853117710364486274e-07,8.223741252437383953e-07,9.594364794510280572e-07,1.096498833658317719e-06,1.233561187865607381e-06,1.370623542072897043e-06,1.507685896280186705e-06,1.644748250487476367e-06,1.781810604694766029e-06,1.918872958902055691e-06,2.055935313109345353e-06,2.192997667316635015e-06,2.330060021523924677e-06,2.467122375731214339e-06,2.604184729938504001e-06,2.741247084145793663e-06,2.878309438353083325e-06,3.015371792560372987e-06,3.152434146767662649e-06,3.289496500974952310e-06,3.426558855182241972e-06,3.563621209389531634e-06,3.700683563596821296e-06,3.837745917804110535e-06,3.974808272011400197e-06,4.111870626218689859e-06,4.248932980425979521e-06,4.385995334633269183e-06,4.523057688840558845e-06,4.660120043047848507e-06,4.797182397255138168e-06,4.934244751462427830e-06,5.071307105669717492e-06,5.208369459877007154e-06,5.345431814084296816e-06,5.482494168291586478e-06,5.619556522498876140e-06,5.756618876706165802e-06,5.893681230913455464e-06,6.030743585120745126e-06,6.167805939328034788e-06,6.304868293535324450e-06,6.441930647742614112e-06,6.578993001949903774e-06,6.716055356157193436e-06,6.853117710364483098e-06,6.990180064571772760e-06,7.127242418779062422e-06,7.264304772986352084e-06,7.401367127193641746e-06,7.538429481400931408e-06,7.675491835608221070e-06,7.812554189815510731e-06,7.949616544022800393e-06,8.086678898230090055e-06,8.223741252437379717e-06,8.360803606644669379e-06,8.497865960851959041e-06,8.634928315059248703e-06 +0.000000000000000000e+00,1.347220000954551673e-07,2.694440001909103345e-07,4.041660002863655283e-07,5.388880003818207749e-07,6.736100004772760216e-07,8.083320005727312683e-07,9.430540006681865150e-07,1.077776000763641762e-06,1.212498000859097008e-06,1.347220000954552255e-06,1.481942001050007502e-06,1.616664001145462748e-06,1.751386001240917995e-06,1.886108001336373242e-06,2.020830001431828488e-06,2.155552001527283947e-06,2.290274001622739405e-06,2.424996001718194864e-06,2.559718001813650322e-06,2.694440001909105781e-06,2.829162002004561239e-06,2.963884002100016697e-06,3.098606002195472156e-06,3.233328002290927614e-06,3.368050002386383073e-06,3.502772002481838531e-06,3.637494002577293990e-06,3.772216002672749448e-06,3.906938002768204906e-06,4.041660002863660365e-06,4.176382002959115823e-06,4.311104003054571282e-06,4.445826003150026740e-06,4.580548003245482199e-06,4.715270003340937657e-06,4.849992003436393116e-06,4.984714003531848574e-06,5.119436003627304032e-06,5.254158003722759491e-06,5.388880003818214949e-06,5.523602003913670408e-06,5.658324004009125866e-06,5.793046004104581325e-06,5.927768004200036783e-06,6.062490004295492241e-06,6.197212004390947700e-06,6.331934004486403158e-06,6.466656004581858617e-06,6.601378004677314075e-06,6.736100004772769534e-06,6.870822004868224992e-06,7.005544004963680450e-06,7.140266005059135909e-06,7.274988005154591367e-06,7.409710005250046826e-06,7.544432005345502284e-06,7.679154005440956896e-06,7.813876005536411507e-06,7.948598005631866118e-06,8.083320005727320730e-06,8.218042005822775341e-06,8.352764005918229953e-06,8.487486006013684564e-06 +0.000000000000000000e+00,1.353989327414619620e-07,2.707978654829239241e-07,4.061967982243858596e-07,5.415957309658477423e-07,6.769946637073096249e-07,8.123935964487715075e-07,9.477925291902333902e-07,1.083191461931695273e-06,1.218590394673157155e-06,1.353989327414619038e-06,1.489388260156080921e-06,1.624787192897542803e-06,1.760186125639004686e-06,1.895585058380466569e-06,2.030983991121928451e-06,2.166382923863390122e-06,2.301781856604851793e-06,2.437180789346313464e-06,2.572579722087775135e-06,2.707978654829236806e-06,2.843377587570698476e-06,2.978776520312160147e-06,3.114175453053621818e-06,3.249574385795083489e-06,3.384973318536545160e-06,3.520372251278006831e-06,3.655771184019468502e-06,3.791170116760930172e-06,3.926569049502391843e-06,4.061967982243853514e-06,4.197366914985315185e-06,4.332765847726776856e-06,4.468164780468238527e-06,4.603563713209700198e-06,4.738962645951161869e-06,4.874361578692623539e-06,5.009760511434085210e-06,5.145159444175546881e-06,5.280558376917008552e-06,5.415957309658470223e-06,5.551356242399931894e-06,5.686755175141393565e-06,5.822154107882855236e-06,5.957553040624316906e-06,6.092951973365778577e-06,6.228350906107240248e-06,6.363749838848701919e-06,6.499148771590163590e-06,6.634547704331625261e-06,6.769946637073086932e-06,6.905345569814548602e-06,7.040744502556010273e-06,7.176143435297471944e-06,7.311542368038933615e-06,7.446941300780395286e-06,7.582340233521856957e-06,7.717739166263318628e-06,7.853138099004780299e-06,7.988537031746241969e-06,8.123935964487703640e-06,8.259334897229165311e-06,8.394733829970626982e-06,8.530132762712088653e-06 +0.000000000000000000e+00,1.168564394616934019e-07,2.337128789233868039e-07,3.505693183850801926e-07,4.674257578467735548e-07,5.842821973084669170e-07,7.011386367701602792e-07,8.179950762318536415e-07,9.348515156935470037e-07,1.051707955155240366e-06,1.168564394616933834e-06,1.285420834078627302e-06,1.402277273540320770e-06,1.519133713002014238e-06,1.635990152463707706e-06,1.752846591925401175e-06,1.869703031387094643e-06,1.986559470848788322e-06,2.103415910310482002e-06,2.220272349772175682e-06,2.337128789233869362e-06,2.453985228695563042e-06,2.570841668157256722e-06,2.687698107618950402e-06,2.804554547080644082e-06,2.921410986542337761e-06,3.038267426004031441e-06,3.155123865465725121e-06,3.271980304927418801e-06,3.388836744389112481e-06,3.505693183850806161e-06,3.622549623312499841e-06,3.739406062774193520e-06,3.856262502235887200e-06,3.973118941697580880e-06,4.089975381159274560e-06,4.206831820620968240e-06,4.323688260082661920e-06,4.440544699544355600e-06,4.557401139006049279e-06,4.674257578467742959e-06,4.791114017929436639e-06,4.907970457391130319e-06,5.024826896852823999e-06,5.141683336314517679e-06,5.258539775776211359e-06,5.375396215237905038e-06,5.492252654699598718e-06,5.609109094161292398e-06,5.725965533622986078e-06,5.842821973084679758e-06,5.959678412546373438e-06,6.076534852008067118e-06,6.193391291469760798e-06,6.310247730931454477e-06,6.427104170393148157e-06,6.543960609854841837e-06,6.660817049316535517e-06,6.777673488778229197e-06,6.894529928239922877e-06,7.011386367701616557e-06,7.128242807163310236e-06,7.245099246625003916e-06,7.361955686086697596e-06 +0.000000000000000000e+00,1.185680027946126993e-07,2.371360055892253986e-07,3.557040083838380847e-07,4.742720111784507443e-07,5.928400139730634568e-07,7.114080167676761694e-07,8.299760195622888819e-07,9.485440223569015944e-07,1.067112025151514307e-06,1.185680027946126914e-06,1.304248030740739520e-06,1.422816033535352127e-06,1.541384036329964734e-06,1.659952039124577340e-06,1.778520041919189947e-06,1.897088044713802554e-06,2.015656047508414949e-06,2.134224050303027343e-06,2.252792053097639738e-06,2.371360055892252133e-06,2.489928058686864528e-06,2.608496061481476923e-06,2.727064064276089318e-06,2.845632067070701713e-06,2.964200069865314108e-06,3.082768072659926503e-06,3.201336075454538898e-06,3.319904078249151292e-06,3.438472081043763687e-06,3.557040083838376082e-06,3.675608086632988477e-06,3.794176089427600872e-06,3.912744092222213267e-06,4.031312095016825662e-06,4.149880097811438057e-06,4.268448100606050452e-06,4.387016103400662847e-06,4.505584106195275241e-06,4.624152108989887636e-06,4.742720111784500031e-06,4.861288114579112426e-06,4.979856117373724821e-06,5.098424120168337216e-06,5.216992122962949611e-06,5.335560125757562006e-06,5.454128128552174401e-06,5.572696131346786796e-06,5.691264134141399191e-06,5.809832136936011585e-06,5.928400139730623980e-06,6.046968142525236375e-06,6.165536145319848770e-06,6.284104148114461165e-06,6.402672150909073560e-06,6.521240153703685955e-06,6.639808156498298350e-06,6.758376159292910745e-06,6.876944162087523140e-06,6.995512164882135534e-06,7.114080167676747929e-06,7.232648170471360324e-06,7.351216173265972719e-06,7.469784176060585114e-06 +0.000000000000000000e+00,1.184788129109290675e-07,2.369576258218581350e-07,3.554364387327872158e-07,4.739152516437163230e-07,5.923940645546454302e-07,7.108728774655745375e-07,8.293516903765036447e-07,9.478305032874327519e-07,1.066309316198361753e-06,1.184788129109290649e-06,1.303266942020219544e-06,1.421745754931148440e-06,1.540224567842077335e-06,1.658703380753006231e-06,1.777182193663935126e-06,1.895661006574864022e-06,2.014139819485792917e-06,2.132618632396721812e-06,2.251097445307650708e-06,2.369576258218579603e-06,2.488055071129508499e-06,2.606533884040437394e-06,2.725012696951366290e-06,2.843491509862295185e-06,2.961970322773224081e-06,3.080449135684152976e-06,3.198927948595081872e-06,3.317406761506010767e-06,3.435885574416939663e-06,3.554364387327868558e-06,3.672843200238797453e-06,3.791322013149726349e-06,3.909800826060654821e-06,4.028279638971583293e-06,4.146758451882511765e-06,4.265237264793440237e-06,4.383716077704368709e-06,4.502194890615297181e-06,4.620673703526225653e-06,4.739152516437154125e-06,4.857631329348082596e-06,4.976110142259011068e-06,5.094588955169939540e-06,5.213067768080868012e-06,5.331546580991796484e-06,5.450025393902724956e-06,5.568504206813653428e-06,5.686983019724581900e-06,5.805461832635510372e-06,5.923940645546438844e-06,6.042419458457367316e-06,6.160898271368295788e-06,6.279377084279224260e-06,6.397855897190152732e-06,6.516334710101081204e-06,6.634813523012009676e-06,6.753292335922938148e-06,6.871771148833866620e-06,6.990249961744795092e-06,7.108728774655723563e-06,7.227207587566652035e-06,7.345686400477580507e-06,7.464165213388508979e-06 +0.000000000000000000e+00,1.173678721070313162e-07,2.347357442140626325e-07,3.521036163210939619e-07,4.694714884281253179e-07,5.868393605351566738e-07,7.042072326421880297e-07,8.215751047492193857e-07,9.389429768562507416e-07,1.056310848963282203e-06,1.173678721070313559e-06,1.291046593177344915e-06,1.408414465284376271e-06,1.525782337391407627e-06,1.643150209498438983e-06,1.760518081605470339e-06,1.877885953712501695e-06,1.995253825819533051e-06,2.112621697926564407e-06,2.229989570033595763e-06,2.347357442140627119e-06,2.464725314247658475e-06,2.582093186354689831e-06,2.699461058461721186e-06,2.816828930568752542e-06,2.934196802675783898e-06,3.051564674782815254e-06,3.168932546889846610e-06,3.286300418996877966e-06,3.403668291103909322e-06,3.521036163210940678e-06,3.638404035317972034e-06,3.755771907425003390e-06,3.873139779532034746e-06,3.990507651639066102e-06,4.107875523746097458e-06,4.225243395853128814e-06,4.342611267960160170e-06,4.459979140067191525e-06,4.577347012174222881e-06,4.694714884281254237e-06,4.812082756388285593e-06,4.929450628495316949e-06,5.046818500602348305e-06,5.164186372709379661e-06,5.281554244816411017e-06,5.398922116923442373e-06,5.516289989030473729e-06,5.633657861137505085e-06,5.751025733244536441e-06,5.868393605351567797e-06,5.985761477458599153e-06,6.103129349565630509e-06,6.220497221672661864e-06,6.337865093779693220e-06,6.455232965886724576e-06,6.572600837993755932e-06,6.689968710100787288e-06,6.807336582207818644e-06,6.924704454314850000e-06,7.042072326421881356e-06,7.159440198528912712e-06,7.276808070635944068e-06,7.394175942742975424e-06 +0.000000000000000000e+00,1.167585657156256228e-07,2.335171314312512456e-07,3.502756971468768816e-07,4.670342628625025441e-07,5.837928285781282065e-07,7.005513942937538690e-07,8.173099600093795315e-07,9.340685257250051940e-07,1.050827091440630856e-06,1.167585657156256413e-06,1.284344222871881970e-06,1.401102788587507526e-06,1.517861354303133083e-06,1.634619920018758639e-06,1.751378485734384196e-06,1.868137051450009753e-06,1.984895617165635521e-06,2.101654182881261289e-06,2.218412748596887058e-06,2.335171314312512826e-06,2.451929880028138594e-06,2.568688445743764363e-06,2.685447011459390131e-06,2.802205577175015900e-06,2.918964142890641668e-06,3.035722708606267436e-06,3.152481274321893205e-06,3.269239840037518973e-06,3.385998405753144741e-06,3.502756971468770510e-06,3.619515537184396278e-06,3.736274102900022046e-06,3.853032668615647815e-06,3.969791234331273583e-06,4.086549800046899352e-06,4.203308365762525120e-06,4.320066931478150888e-06,4.436825497193776657e-06,4.553584062909402425e-06,4.670342628625028193e-06,4.787101194340653962e-06,4.903859760056279730e-06,5.020618325771905498e-06,5.137376891487531267e-06,5.254135457203157035e-06,5.370894022918782804e-06,5.487652588634408572e-06,5.604411154350034340e-06,5.721169720065660109e-06,5.837928285781285877e-06,5.954686851496911645e-06,6.071445417212537414e-06,6.188203982928163182e-06,6.304962548643788950e-06,6.421721114359414719e-06,6.538479680075040487e-06,6.655238245790666256e-06,6.771996811506292024e-06,6.888755377221917792e-06,7.005513942937543561e-06,7.122272508653169329e-06,7.239031074368795097e-06,7.355789640084420866e-06 +0.000000000000000000e+00,1.141164805918202875e-07,2.282329611836405749e-07,3.423494417754608624e-07,4.564659223672811498e-07,5.705824029591014373e-07,6.846988835509217247e-07,7.988153641427420122e-07,9.129318447345622996e-07,1.027048325326382481e-06,1.141164805918202663e-06,1.255281286510022844e-06,1.369397767101843026e-06,1.483514247693663208e-06,1.597630728285483389e-06,1.711747208877303571e-06,1.825863689469123752e-06,1.939980170060943934e-06,2.054096650652764115e-06,2.168213131244584297e-06,2.282329611836404479e-06,2.396446092428224660e-06,2.510562573020044842e-06,2.624679053611865023e-06,2.738795534203685205e-06,2.852912014795505386e-06,2.967028495387325568e-06,3.081144975979145750e-06,3.195261456570965931e-06,3.309377937162786113e-06,3.423494417754606294e-06,3.537610898346426476e-06,3.651727378938246657e-06,3.765843859530066839e-06,3.879960340121887021e-06,3.994076820713707202e-06,4.108193301305527384e-06,4.222309781897347565e-06,4.336426262489167747e-06,4.450542743080987929e-06,4.564659223672808110e-06,4.678775704264628292e-06,4.792892184856448473e-06,4.907008665448268655e-06,5.021125146040088836e-06,5.135241626631909018e-06,5.249358107223729200e-06,5.363474587815549381e-06,5.477591068407369563e-06,5.591707548999189744e-06,5.705824029591009926e-06,5.819940510182830107e-06,5.934056990774650289e-06,6.048173471366470471e-06,6.162289951958290652e-06,6.276406432550110834e-06,6.390522913141931015e-06,6.504639393733751197e-06,6.618755874325571378e-06,6.732872354917391560e-06,6.846988835509211742e-06,6.961105316101031923e-06,7.075221796692852105e-06,7.189338277284672286e-06 +0.000000000000000000e+00,1.185004452596932559e-07,2.370008905193865119e-07,3.555013357790797811e-07,4.740017810387730767e-07,5.925022262984663194e-07,7.110026715581595621e-07,8.295031168178528048e-07,9.480035620775460475e-07,1.066504007337239290e-06,1.185004452596932639e-06,1.303504897856625987e-06,1.422005343116319336e-06,1.540505788376012685e-06,1.659006233635706033e-06,1.777506678895399382e-06,1.896007124155092730e-06,2.014507569414785867e-06,2.133008014674479004e-06,2.251508459934172141e-06,2.370008905193865278e-06,2.488509350453558414e-06,2.607009795713251551e-06,2.725510240972944688e-06,2.844010686232637825e-06,2.962511131492330962e-06,3.081011576752024099e-06,3.199512022011717235e-06,3.318012467271410372e-06,3.436512912531103509e-06,3.555013357790796646e-06,3.673513803050489783e-06,3.792014248310182920e-06,3.910514693569876056e-06,4.029015138829569193e-06,4.147515584089262330e-06,4.266016029348955467e-06,4.384516474608648604e-06,4.503016919868341741e-06,4.621517365128034877e-06,4.740017810387728014e-06,4.858518255647421151e-06,4.977018700907114288e-06,5.095519146166807425e-06,5.214019591426500562e-06,5.332520036686193698e-06,5.451020481945886835e-06,5.569520927205579972e-06,5.688021372465273109e-06,5.806521817724966246e-06,5.925022262984659382e-06,6.043522708244352519e-06,6.162023153504045656e-06,6.280523598763738793e-06,6.399024044023431930e-06,6.517524489283125067e-06,6.636024934542818203e-06,6.754525379802511340e-06,6.873025825062204477e-06,6.991526270321897614e-06,7.110026715581590751e-06,7.228527160841283888e-06,7.347027606100977024e-06,7.465528051360670161e-06 +0.000000000000000000e+00,1.167374579567762814e-07,2.334749159135525627e-07,3.502123738703288309e-07,4.669498318271050726e-07,5.836872897838813142e-07,7.004247477406575559e-07,8.171622056974337976e-07,9.338996636542100392e-07,1.050637121610986281e-06,1.167374579567762628e-06,1.284112037524538976e-06,1.400849495481315324e-06,1.517586953438091671e-06,1.634324411394868019e-06,1.751061869351644366e-06,1.867799327308420714e-06,1.984536785265196850e-06,2.101274243221972985e-06,2.218011701178749121e-06,2.334749159135525257e-06,2.451486617092301393e-06,2.568224075049077528e-06,2.684961533005853664e-06,2.801698990962629800e-06,2.918436448919405936e-06,3.035173906876182072e-06,3.151911364832958207e-06,3.268648822789734343e-06,3.385386280746510479e-06,3.502123738703286615e-06,3.618861196660062751e-06,3.735598654616838886e-06,3.852336112573615022e-06,3.969073570530391158e-06,4.085811028487167294e-06,4.202548486443943430e-06,4.319285944400719565e-06,4.436023402357495701e-06,4.552760860314271837e-06,4.669498318271047973e-06,4.786235776227824108e-06,4.902973234184600244e-06,5.019710692141376380e-06,5.136448150098152516e-06,5.253185608054928652e-06,5.369923066011704787e-06,5.486660523968480923e-06,5.603397981925257059e-06,5.720135439882033195e-06,5.836872897838809331e-06,5.953610355795585466e-06,6.070347813752361602e-06,6.187085271709137738e-06,6.303822729665913874e-06,6.420560187622690010e-06,6.537297645579466145e-06,6.654035103536242281e-06,6.770772561493018417e-06,6.887510019449794553e-06,7.004247477406570688e-06,7.120984935363346824e-06,7.237722393320122960e-06,7.354459851276899096e-06 +0.000000000000000000e+00,1.168564394616856330e-07,2.337128789233712661e-07,3.505693183850568991e-07,4.674257578467425322e-07,5.842821973084281652e-07,7.011386367701137983e-07,8.179950762317994313e-07,9.348515156934850644e-07,1.051707955155170697e-06,1.168564394616856330e-06,1.285420834078541964e-06,1.402277273540227597e-06,1.519133713001913230e-06,1.635990152463598863e-06,1.752846591925284496e-06,1.869703031386970129e-06,1.986559470848655762e-06,2.103415910310341395e-06,2.220272349772027028e-06,2.337128789233712661e-06,2.453985228695398294e-06,2.570841668157083927e-06,2.687698107618769560e-06,2.804554547080455193e-06,2.921410986542140826e-06,3.038267426003826459e-06,3.155123865465512092e-06,3.271980304927197725e-06,3.388836744388883358e-06,3.505693183850568991e-06,3.622549623312254625e-06,3.739406062773940258e-06,3.856262502235626314e-06,3.973118941697312371e-06,4.089975381158998427e-06,4.206831820620684484e-06,4.323688260082370540e-06,4.440544699544056597e-06,4.557401139005742654e-06,4.674257578467428710e-06,4.791114017929114767e-06,4.907970457390800823e-06,5.024826896852486880e-06,5.141683336314172936e-06,5.258539775775858993e-06,5.375396215237545049e-06,5.492252654699231106e-06,5.609109094160917163e-06,5.725965533622603219e-06,5.842821973084289276e-06,5.959678412545975332e-06,6.076534852007661389e-06,6.193391291469347445e-06,6.310247730931033502e-06,6.427104170392719559e-06,6.543960609854405615e-06,6.660817049316091672e-06,6.777673488777777728e-06,6.894529928239463785e-06,7.011386367701149841e-06,7.128242807162835898e-06,7.245099246624521955e-06,7.361955686086208011e-06 +0.000000000000000000e+00,1.185680027946042554e-07,2.371360055892085109e-07,3.557040083838127796e-07,4.742720111784170747e-07,5.928400139730213169e-07,7.114080167676255591e-07,8.299760195622298014e-07,9.485440223568340436e-07,1.067112025151438286e-06,1.185680027946042634e-06,1.304248030740646982e-06,1.422816033535251330e-06,1.541384036329855678e-06,1.659952039124460026e-06,1.778520041919064374e-06,1.897088044713668722e-06,2.015656047508273070e-06,2.134224050302877419e-06,2.252792053097481767e-06,2.371360055892086115e-06,2.489928058686690463e-06,2.608496061481294811e-06,2.727064064275899159e-06,2.845632067070503507e-06,2.964200069865107855e-06,3.082768072659712203e-06,3.201336075454316551e-06,3.319904078248920899e-06,3.438472081043525248e-06,3.557040083838129596e-06,3.675608086632733944e-06,3.794176089427338292e-06,3.912744092221943063e-06,4.031312095016547835e-06,4.149880097811152607e-06,4.268448100605757378e-06,4.387016103400362150e-06,4.505584106194966921e-06,4.624152108989571693e-06,4.742720111784176465e-06,4.861288114578781236e-06,4.979856117373386008e-06,5.098424120167990780e-06,5.216992122962595551e-06,5.335560125757200323e-06,5.454128128551805094e-06,5.572696131346409866e-06,5.691264134141014638e-06,5.809832136935619409e-06,5.928400139730224181e-06,6.046968142524828952e-06,6.165536145319433724e-06,6.284104148114038496e-06,6.402672150908643267e-06,6.521240153703248039e-06,6.639808156497852810e-06,6.758376159292457582e-06,6.876944162087062354e-06,6.995512164881667125e-06,7.114080167676271897e-06,7.232648170470876668e-06,7.351216173265481440e-06,7.469784176060086212e-06 +0.000000000000000000e+00,1.185004452596891267e-07,2.370008905193782533e-07,3.555013357790673932e-07,4.740017810387565596e-07,5.925022262984457789e-07,7.110026715581349982e-07,8.295031168178242175e-07,9.480035620775134368e-07,1.066504007337202656e-06,1.185004452596891981e-06,1.303504897856581306e-06,1.422005343116270632e-06,1.540505788375959957e-06,1.659006233635649282e-06,1.777506678895338607e-06,1.896007124155027932e-06,2.014507569414717257e-06,2.133008014674406583e-06,2.251508459934095908e-06,2.370008905193785233e-06,2.488509350453474558e-06,2.607009795713163883e-06,2.725510240972853209e-06,2.844010686232542534e-06,2.962511131492231859e-06,3.081011576751921184e-06,3.199512022011610509e-06,3.318012467271299834e-06,3.436512912530989160e-06,3.555013357790678485e-06,3.673513803050367810e-06,3.792014248310057135e-06,3.910514693569746460e-06,4.029015138829436209e-06,4.147515584089125958e-06,4.266016029348815706e-06,4.384516474608505455e-06,4.503016919868195204e-06,4.621517365127884953e-06,4.740017810387574701e-06,4.858518255647264450e-06,4.977018700906954199e-06,5.095519146166643947e-06,5.214019591426333696e-06,5.332520036686023445e-06,5.451020481945713193e-06,5.569520927205402942e-06,5.688021372465092691e-06,5.806521817724782439e-06,5.925022262984472188e-06,6.043522708244161937e-06,6.162023153503851686e-06,6.280523598763541434e-06,6.399024044023231183e-06,6.517524489282920932e-06,6.636024934542610680e-06,6.754525379802300429e-06,6.873025825061990178e-06,6.991526270321679926e-06,7.110026715581369675e-06,7.228527160841059424e-06,7.347027606100749173e-06,7.465528051360438921e-06 +0.000000000000000000e+00,1.173678721070234282e-07,2.347357442140468565e-07,3.521036163210702979e-07,4.694714884280937659e-07,5.868393605351171809e-07,7.042072326421405959e-07,8.215751047491640109e-07,9.389429768561874259e-07,1.056310848963210841e-06,1.173678721070234362e-06,1.291046593177257883e-06,1.408414465284281404e-06,1.525782337391304924e-06,1.643150209498328445e-06,1.760518081605351966e-06,1.877885953712375487e-06,1.995253825819399220e-06,2.112621697926422952e-06,2.229989570033446685e-06,2.347357442140470418e-06,2.464725314247494150e-06,2.582093186354517883e-06,2.699461058461541615e-06,2.816828930568565348e-06,2.934196802675589081e-06,3.051564674782612813e-06,3.168932546889636546e-06,3.286300418996660279e-06,3.403668291103684011e-06,3.521036163210707744e-06,3.638404035317731477e-06,3.755771907424755209e-06,3.873139779531778942e-06,3.990507651638802674e-06,4.107875523745826407e-06,4.225243395852850140e-06,4.342611267959873872e-06,4.459979140066897605e-06,4.577347012173921338e-06,4.694714884280945070e-06,4.812082756387968803e-06,4.929450628494992536e-06,5.046818500602016268e-06,5.164186372709040001e-06,5.281554244816063733e-06,5.398922116923087466e-06,5.516289989030111199e-06,5.633657861137134931e-06,5.751025733244158664e-06,5.868393605351182397e-06,5.985761477458206129e-06,6.103129349565229862e-06,6.220497221672253595e-06,6.337865093779277327e-06,6.455232965886301060e-06,6.572600837993324792e-06,6.689968710100348525e-06,6.807336582207372258e-06,6.924704454314395990e-06,7.042072326421419723e-06,7.159440198528443456e-06,7.276808070635467188e-06,7.394175942742490921e-06 +0.000000000000000000e+00,1.167585657156175363e-07,2.335171314312350725e-07,3.502756971468526353e-07,4.670342628624701980e-07,5.837928285780877607e-07,7.005513942937052705e-07,8.173099600093227803e-07,9.340685257249402901e-07,1.050827091440557800e-06,1.167585657156175310e-06,1.284344222871792819e-06,1.401102788587410329e-06,1.517861354303027839e-06,1.634619920018645349e-06,1.751378485734262859e-06,1.868137051449880368e-06,1.984895617165497878e-06,2.101654182881115600e-06,2.218412748596733321e-06,2.335171314312351043e-06,2.451929880027968764e-06,2.568688445743586486e-06,2.685447011459204207e-06,2.802205577174821929e-06,2.918964142890439651e-06,3.035722708606057372e-06,3.152481274321675094e-06,3.269239840037292815e-06,3.385998405752910537e-06,3.502756971468528258e-06,3.619515537184145980e-06,3.736274102899763701e-06,3.853032668615381846e-06,3.969791234330999992e-06,4.086549800046618137e-06,4.203308365762236282e-06,4.320066931477854427e-06,4.436825497193472572e-06,4.553584062909090717e-06,4.670342628624708862e-06,4.787101194340327007e-06,4.903859760055945152e-06,5.020618325771563297e-06,5.137376891487181442e-06,5.254135457202799587e-06,5.370894022918417732e-06,5.487652588634035877e-06,5.604411154349654022e-06,5.721169720065272168e-06,5.837928285780890313e-06,5.954686851496508458e-06,6.071445417212126603e-06,6.188203982927744748e-06,6.304962548643362893e-06,6.421721114358981038e-06,6.538479680074599183e-06,6.655238245790217328e-06,6.771996811505835473e-06,6.888755377221453618e-06,7.005513942937071763e-06,7.122272508652689908e-06,7.239031074368308053e-06,7.355789640083926198e-06 +0.000000000000000000e+00,1.141164805918131539e-07,2.282329611836263077e-07,3.423494417754394748e-07,4.564659223672526683e-07,5.705824029590658619e-07,6.846988835508790555e-07,7.988153641426922490e-07,9.129318447345054426e-07,1.027048325326318530e-06,1.141164805918131512e-06,1.255281286509944494e-06,1.369397767101757476e-06,1.483514247693570457e-06,1.597630728285383439e-06,1.711747208877196421e-06,1.825863689469009403e-06,1.939980170060822385e-06,2.054096650652635366e-06,2.168213131244448348e-06,2.282329611836261330e-06,2.396446092428074312e-06,2.510562573019887294e-06,2.624679053611700275e-06,2.738795534203513257e-06,2.852912014795326239e-06,2.967028495387139221e-06,3.081144975978952203e-06,3.195261456570765184e-06,3.309377937162578166e-06,3.423494417754391148e-06,3.537610898346204130e-06,3.651727378938017112e-06,3.765843859529830093e-06,3.879960340121643075e-06,3.994076820713455633e-06,4.108193301305268192e-06,4.222309781897080750e-06,4.336426262488893308e-06,4.450542743080705867e-06,4.564659223672518425e-06,4.678775704264330983e-06,4.792892184856143541e-06,4.907008665447956100e-06,5.021125146039768658e-06,5.135241626631581216e-06,5.249358107223393775e-06,5.363474587815206333e-06,5.477591068407018891e-06,5.591707548998831449e-06,5.705824029590644008e-06,5.819940510182456566e-06,5.934056990774269124e-06,6.048173471366081682e-06,6.162289951957894241e-06,6.276406432549706799e-06,6.390522913141519357e-06,6.504639393733331916e-06,6.618755874325144474e-06,6.732872354916957032e-06,6.846988835508769590e-06,6.961105316100582149e-06,7.075221796692394707e-06,7.189338277284207265e-06 +0.000000000000000000e+00,1.178206337183033669e-07,2.356412674366067338e-07,3.534619011549101007e-07,4.712825348732134676e-07,5.891031685915168346e-07,7.069238023098202015e-07,8.247444360281235684e-07,9.425650697464269353e-07,1.060385703464730302e-06,1.178206337183033669e-06,1.296026970901337036e-06,1.413847604619640403e-06,1.531668238337943770e-06,1.649488872056247137e-06,1.767309505774550504e-06,1.885130139492853871e-06,2.002950773211157026e-06,2.120771406929460181e-06,2.238592040647763336e-06,2.356412674366066491e-06,2.474233308084369646e-06,2.592053941802672802e-06,2.709874575520975957e-06,2.827695209239279112e-06,2.945515842957582267e-06,3.063336476675885422e-06,3.181157110394188577e-06,3.298977744112491732e-06,3.416798377830794888e-06,3.534619011549098043e-06,3.652439645267401198e-06,3.770260278985704353e-06,3.888080912704007508e-06,4.005901546422310663e-06,4.123722180140613819e-06,4.241542813858916974e-06,4.359363447577220129e-06,4.477184081295523284e-06,4.595004715013826439e-06,4.712825348732129594e-06,4.830645982450432749e-06,4.948466616168735905e-06,5.066287249887039060e-06,5.184107883605342215e-06,5.301928517323645370e-06,5.419749151041948525e-06,5.537569784760251680e-06,5.655390418478554836e-06,5.773211052196857991e-06,5.891031685915161146e-06,6.008852319633464301e-06,6.126672953351767456e-06,6.244493587070070611e-06,6.362314220788373766e-06,6.480134854506676922e-06,6.597955488224980077e-06,6.715776121943283232e-06,6.833596755661586387e-06,6.951417389379889542e-06,7.069238023098192697e-06,7.187058656816495853e-06,7.304879290534799008e-06,7.422699924253102163e-06 +0.000000000000000000e+00,1.170896006895471188e-07,2.341792013790942376e-07,3.512688020686413697e-07,4.683584027581885282e-07,5.854480034477356868e-07,7.025376041372828453e-07,8.196272048268300038e-07,9.367168055163771623e-07,1.053806406205924427e-06,1.170896006895471585e-06,1.287985607585018744e-06,1.405075208274565902e-06,1.522164808964113061e-06,1.639254409653660219e-06,1.756344010343207378e-06,1.873433611032754536e-06,1.990523211722301695e-06,2.107612812411848853e-06,2.224702413101396012e-06,2.341792013790943171e-06,2.458881614480490329e-06,2.575971215170037488e-06,2.693060815859584646e-06,2.810150416549131805e-06,2.927240017238678963e-06,3.044329617928226122e-06,3.161419218617773280e-06,3.278508819307320439e-06,3.395598419996867597e-06,3.512688020686414756e-06,3.629777621375961914e-06,3.746867222065509073e-06,3.863956822755056231e-06,3.981046423444603390e-06,4.098136024134150548e-06,4.215225624823697707e-06,4.332315225513244866e-06,4.449404826202792024e-06,4.566494426892339183e-06,4.683584027581886341e-06,4.800673628271433500e-06,4.917763228960980658e-06,5.034852829650527817e-06,5.151942430340074975e-06,5.269032031029622134e-06,5.386121631719169292e-06,5.503211232408716451e-06,5.620300833098263609e-06,5.737390433787810768e-06,5.854480034477357926e-06,5.971569635166905085e-06,6.088659235856452243e-06,6.205748836545999402e-06,6.322838437235546560e-06,6.439928037925093719e-06,6.557017638614640878e-06,6.674107239304188036e-06,6.791196839993735195e-06,6.908286440683282353e-06,7.025376041372829512e-06,7.142465642062376670e-06,7.259555242751923829e-06,7.376644843441470987e-06 +0.000000000000000000e+00,1.151985467272802950e-07,2.303970934545605900e-07,3.455956401818409115e-07,4.607941869091212330e-07,5.759927336364015545e-07,6.911912803636818230e-07,8.063898270909620916e-07,9.215883738182423601e-07,1.036786920545522629e-06,1.151985467272802897e-06,1.267184014000083166e-06,1.382382560727363434e-06,1.497581107454643703e-06,1.612779654181923971e-06,1.727978200909204240e-06,1.843176747636484509e-06,1.958375294363764777e-06,2.073573841091045257e-06,2.188772387818325738e-06,2.303970934545606218e-06,2.419169481272886698e-06,2.534368028000167179e-06,2.649566574727447659e-06,2.764765121454728139e-06,2.879963668182008620e-06,2.995162214909289100e-06,3.110360761636569580e-06,3.225559308363850060e-06,3.340757855091130541e-06,3.455956401818411021e-06,3.571154948545691501e-06,3.686353495272971982e-06,3.801552042000252462e-06,3.916750588727532942e-06,4.031949135454813846e-06,4.147147682182094750e-06,4.262346228909375654e-06,4.377544775636656558e-06,4.492743322363937461e-06,4.607941869091218365e-06,4.723140415818499269e-06,4.838338962545780173e-06,4.953537509273061077e-06,5.068736056000341981e-06,5.183934602727622884e-06,5.299133149454903788e-06,5.414331696182184692e-06,5.529530242909465596e-06,5.644728789636746500e-06,5.759927336364027403e-06,5.875125883091308307e-06,5.990324429818589211e-06,6.105522976545870115e-06,6.220721523273151019e-06,6.335920070000431923e-06,6.451118616727712826e-06,6.566317163454993730e-06,6.681515710182274634e-06,6.796714256909555538e-06,6.911912803636836442e-06,7.027111350364117346e-06,7.142309897091398249e-06,7.257508443818679153e-06 +0.000000000000000000e+00,1.178206337182940231e-07,2.356412674365880462e-07,3.534619011548820428e-07,4.712825348731760394e-07,5.891031685914700360e-07,7.069238023097640855e-07,8.247444360280581351e-07,9.425650697463521846e-07,1.060385703464646234e-06,1.178206337182940284e-06,1.296026970901234333e-06,1.413847604619528383e-06,1.531668238337822432e-06,1.649488872056116482e-06,1.767309505774410531e-06,1.885130139492704581e-06,2.002950773210998631e-06,2.120771406929292468e-06,2.238592040647586306e-06,2.356412674365880144e-06,2.474233308084173982e-06,2.592053941802467820e-06,2.709874575520761657e-06,2.827695209239055495e-06,2.945515842957349333e-06,3.063336476675643171e-06,3.181157110393937008e-06,3.298977744112230846e-06,3.416798377830524684e-06,3.534619011548818522e-06,3.652439645267112360e-06,3.770260278985406197e-06,3.888080912703700035e-06,4.005901546421993873e-06,4.123722180140287711e-06,4.241542813858581549e-06,4.359363447576875386e-06,4.477184081295169224e-06,4.595004715013463062e-06,4.712825348731756900e-06,4.830645982450050738e-06,4.948466616168344575e-06,5.066287249886638413e-06,5.184107883604932251e-06,5.301928517323226089e-06,5.419749151041519927e-06,5.537569784759813764e-06,5.655390418478107602e-06,5.773211052196401440e-06,5.891031685914695278e-06,6.008852319632989115e-06,6.126672953351282953e-06,6.244493587069576791e-06,6.362314220787870629e-06,6.480134854506164467e-06,6.597955488224458304e-06,6.715776121942752142e-06,6.833596755661045980e-06,6.951417389379339818e-06,7.069238023097633656e-06,7.187058656815927493e-06,7.304879290534221331e-06,7.422699924252515169e-06 +0.000000000000000000e+00,1.170896006895387411e-07,2.341792013790774823e-07,3.512688020686162234e-07,4.683584027581549645e-07,5.854480034476936527e-07,7.025376041372323409e-07,8.196272048267710291e-07,9.367168055163097173e-07,1.053806406205848406e-06,1.170896006895387094e-06,1.287985607584925782e-06,1.405075208274464470e-06,1.522164808964003158e-06,1.639254409653541847e-06,1.756344010343080535e-06,1.873433611032619223e-06,1.990523211722157699e-06,2.107612812411696388e-06,2.224702413101235076e-06,2.341792013790773764e-06,2.458881614480312452e-06,2.575971215169851140e-06,2.693060815859389829e-06,2.810150416548928517e-06,2.927240017238467205e-06,3.044329617928005893e-06,3.161419218617544581e-06,3.278508819307083270e-06,3.395598419996621958e-06,3.512688020686160646e-06,3.629777621375699334e-06,3.746867222065238022e-06,3.863956822754776711e-06,3.981046423444315399e-06,4.098136024133854087e-06,4.215225624823392775e-06,4.332315225512931463e-06,4.449404826202470152e-06,4.566494426892008840e-06,4.683584027581547528e-06,4.800673628271086216e-06,4.917763228960624904e-06,5.034852829650163592e-06,5.151942430339702281e-06,5.269032031029240969e-06,5.386121631718779657e-06,5.503211232408318345e-06,5.620300833097857033e-06,5.737390433787395722e-06,5.854480034476934410e-06,5.971569635166473098e-06,6.088659235856011786e-06,6.205748836545550474e-06,6.322838437235089163e-06,6.439928037924627851e-06,6.557017638614166539e-06,6.674107239303705227e-06,6.791196839993243915e-06,6.908286440682782604e-06,7.025376041372321292e-06,7.142465642061859980e-06,7.259555242751398668e-06,7.376644843440937356e-06 +0.000000000000000000e+00,1.151985467272717982e-07,2.303970934545435964e-07,3.455956401818153947e-07,4.607941869090871929e-07,5.759927336363589911e-07,6.911912803636307893e-07,8.063898270909025875e-07,9.215883738181743858e-07,1.036786920545446184e-06,1.151985467272717982e-06,1.267184013999989780e-06,1.382382560727261579e-06,1.497581107454533377e-06,1.612779654181805175e-06,1.727978200909076973e-06,1.843176747636348772e-06,1.958375294363620358e-06,2.073573841090891944e-06,2.188772387818163531e-06,2.303970934545435117e-06,2.419169481272706704e-06,2.534368027999978290e-06,2.649566574727249877e-06,2.764765121454521463e-06,2.879963668181793050e-06,2.995162214909064636e-06,3.110360761636336223e-06,3.225559308363607809e-06,3.340757855090879395e-06,3.455956401818150982e-06,3.571154948545422568e-06,3.686353495272694155e-06,3.801552041999965741e-06,3.916750588727237328e-06,4.031949135454508914e-06,4.147147682181780501e-06,4.262346228909052087e-06,4.377544775636323674e-06,4.492743322363595260e-06,4.607941869090866847e-06,4.723140415818138433e-06,4.838338962545410019e-06,4.953537509272681606e-06,5.068736055999953192e-06,5.183934602727224779e-06,5.299133149454496365e-06,5.414331696181767952e-06,5.529530242909039538e-06,5.644728789636311125e-06,5.759927336363582711e-06,5.875125883090854298e-06,5.990324429818125884e-06,6.105522976545397471e-06,6.220721523272669057e-06,6.335920069999940643e-06,6.451118616727212230e-06,6.566317163454483816e-06,6.681515710181755403e-06,6.796714256909026989e-06,6.911912803636298576e-06,7.027111350363570162e-06,7.142309897090841749e-06,7.257508443818113335e-06 +0.000000000000000000e+00,1.202637480046543235e-07,2.405274960093086469e-07,3.607912440139629704e-07,4.810549920186172939e-07,6.013187400232716703e-07,7.215824880279260467e-07,8.418462360325804231e-07,9.621099840372347995e-07,1.082373732041889176e-06,1.202637480046543552e-06,1.322901228051197929e-06,1.443164976055852305e-06,1.563428724060506682e-06,1.683692472065161058e-06,1.803956220069815434e-06,1.924219968074470023e-06,2.044483716079124611e-06,2.164747464083779199e-06,2.285011212088433787e-06,2.405274960093088375e-06,2.525538708097742963e-06,2.645802456102397552e-06,2.766066204107052140e-06,2.886329952111706728e-06,3.006593700116361316e-06,3.126857448121015904e-06,3.247121196125670492e-06,3.367384944130325081e-06,3.487648692134979669e-06,3.607912440139634257e-06,3.728176188144288845e-06,3.848439936148943433e-06,3.968703684153598445e-06,4.088967432158253457e-06,4.209231180162908468e-06,4.329494928167563480e-06,4.449758676172218492e-06,4.570022424176873503e-06,4.690286172181528515e-06,4.810549920186183527e-06,4.930813668190838539e-06,5.051077416195493550e-06,5.171341164200148562e-06,5.291604912204803574e-06,5.411868660209458585e-06,5.532132408214113597e-06,5.652396156218768609e-06,5.772659904223423620e-06,5.892923652228078632e-06,6.013187400232733644e-06,6.133451148237388655e-06,6.253714896242043667e-06,6.373978644246698679e-06,6.494242392251353690e-06,6.614506140256008702e-06,6.734769888260663714e-06,6.855033636265318726e-06,6.975297384269973737e-06,7.095561132274628749e-06,7.215824880279283761e-06,7.336088628283938772e-06,7.456352376288593784e-06,7.576616124293248796e-06 +0.000000000000000000e+00,1.189076352211681983e-07,2.378152704423363967e-07,3.567229056635046082e-07,4.756305408846728462e-07,5.945381761058410843e-07,7.134458113270093223e-07,8.323534465481775603e-07,9.512610817693457984e-07,1.070168716990513931e-06,1.189076352211681957e-06,1.307983987432849983e-06,1.426891622654018009e-06,1.545799257875186036e-06,1.664706893096354062e-06,1.783614528317522088e-06,1.902522163538690114e-06,2.021429798759858141e-06,2.140337433981026167e-06,2.259245069202194193e-06,2.378152704423362220e-06,2.497060339644530246e-06,2.615967974865698272e-06,2.734875610086866298e-06,2.853783245308034325e-06,2.972690880529202351e-06,3.091598515750370377e-06,3.210506150971538403e-06,3.329413786192706430e-06,3.448321421413874456e-06,3.567229056635042482e-06,3.686136691856210509e-06,3.805044327077378535e-06,3.923951962298546985e-06,4.042859597519715434e-06,4.161767232740883884e-06,4.280674867962052334e-06,4.399582503183220784e-06,4.518490138404389234e-06,4.637397773625557683e-06,4.756305408846726133e-06,4.875213044067894583e-06,4.994120679289063033e-06,5.113028314510231482e-06,5.231935949731399932e-06,5.350843584952568382e-06,5.469751220173736832e-06,5.588658855394905282e-06,5.707566490616073731e-06,5.826474125837242181e-06,5.945381761058410631e-06,6.064289396279579081e-06,6.183197031500747531e-06,6.302104666721915980e-06,6.421012301943084430e-06,6.539919937164252880e-06,6.658827572385421330e-06,6.777735207606589779e-06,6.896642842827758229e-06,7.015550478048926679e-06,7.134458113270095129e-06,7.253365748491263579e-06,7.372273383712432028e-06,7.491181018933600478e-06 +0.000000000000000000e+00,1.179238418755913214e-07,2.358476837511826429e-07,3.537715256267739379e-07,4.716953675023652328e-07,5.896192093779565278e-07,7.075430512535478757e-07,8.254668931291392237e-07,9.433907350047305716e-07,1.061314576880322025e-06,1.179238418755913479e-06,1.297162260631504933e-06,1.415086102507096387e-06,1.533009944382687841e-06,1.650933786258279294e-06,1.768857628133870748e-06,1.886781470009462202e-06,2.004705311885053656e-06,2.122629153760644898e-06,2.240552995636236140e-06,2.358476837511827382e-06,2.476400679387418624e-06,2.594324521263009866e-06,2.712248363138601108e-06,2.830172205014192350e-06,2.948096046889783592e-06,3.066019888765374834e-06,3.183943730640966076e-06,3.301867572516557318e-06,3.419791414392148560e-06,3.537715256267739802e-06,3.655639098143331044e-06,3.773562940018922286e-06,3.891486781894513528e-06,4.009410623770104770e-06,4.127334465645696012e-06,4.245258307521287254e-06,4.363182149396878496e-06,4.481105991272469739e-06,4.599029833148060981e-06,4.716953675023652223e-06,4.834877516899243465e-06,4.952801358774834707e-06,5.070725200650425949e-06,5.188649042526017191e-06,5.306572884401608433e-06,5.424496726277199675e-06,5.542420568152790917e-06,5.660344410028382159e-06,5.778268251903973401e-06,5.896192093779564643e-06,6.014115935655155885e-06,6.132039777530747127e-06,6.249963619406338369e-06,6.367887461281929611e-06,6.485811303157520853e-06,6.603735145033112095e-06,6.721658986908703337e-06,6.839582828784294579e-06,6.957506670659885821e-06,7.075430512535477063e-06,7.193354354411068305e-06,7.311278196286659547e-06,7.429202038162250789e-06 +0.000000000000000000e+00,1.202637480046432062e-07,2.405274960092864123e-07,3.607912440139296185e-07,4.810549920185728247e-07,6.013187400232159779e-07,7.215824880278591311e-07,8.418462360325022843e-07,9.621099840371454376e-07,1.082373732041788591e-06,1.202637480046431744e-06,1.322901228051074897e-06,1.443164976055718050e-06,1.563428724060361204e-06,1.683692472065004357e-06,1.803956220069647510e-06,1.924219968074290452e-06,2.044483716078933605e-06,2.164747464083576758e-06,2.285011212088219911e-06,2.405274960092863065e-06,2.525538708097506218e-06,2.645802456102149371e-06,2.766066204106792524e-06,2.886329952111435677e-06,3.006593700116078831e-06,3.126857448120721984e-06,3.247121196125365137e-06,3.367384944130008290e-06,3.487648692134651444e-06,3.607912440139294597e-06,3.728176188143937750e-06,3.848439936148580903e-06,3.968703684153224056e-06,4.088967432157867210e-06,4.209231180162510363e-06,4.329494928167153516e-06,4.449758676171796669e-06,4.570022424176439823e-06,4.690286172181082976e-06,4.810549920185726129e-06,4.930813668190369282e-06,5.051077416195012436e-06,5.171341164199655589e-06,5.291604912204298742e-06,5.411868660208941895e-06,5.532132408213585048e-06,5.652396156218228202e-06,5.772659904222871355e-06,5.892923652227514508e-06,6.013187400232157661e-06,6.133451148236800815e-06,6.253714896241443968e-06,6.373978644246087121e-06,6.494242392250730274e-06,6.614506140255373427e-06,6.734769888260016581e-06,6.855033636264659734e-06,6.975297384269302887e-06,7.095561132273946040e-06,7.215824880278589194e-06,7.336088628283232347e-06,7.456352376287875500e-06,7.576616124292518653e-06 +0.000000000000000000e+00,1.189076352211580604e-07,2.378152704423161208e-07,3.567229056634741680e-07,4.756305408846321887e-07,5.945381761057901564e-07,7.134458113269481242e-07,8.323534465481060919e-07,9.512610817692640597e-07,1.070168716990422027e-06,1.189076352211579889e-06,1.307983987432737751e-06,1.426891622653895613e-06,1.545799257875053475e-06,1.664706893096211337e-06,1.783614528317369199e-06,1.902522163538527061e-06,2.021429798759684922e-06,2.140337433980842784e-06,2.259245069202000646e-06,2.378152704423158508e-06,2.497060339644316370e-06,2.615967974865474232e-06,2.734875610086632094e-06,2.853783245307789956e-06,2.972690880528947817e-06,3.091598515750105679e-06,3.210506150971263541e-06,3.329413786192421403e-06,3.448321421413579265e-06,3.567229056634737127e-06,3.686136691855894989e-06,3.805044327077052851e-06,3.923951962298210712e-06,4.042859597519368151e-06,4.161767232740525589e-06,4.280674867961683028e-06,4.399582503182840466e-06,4.518490138403997904e-06,4.637397773625155343e-06,4.756305408846312781e-06,4.875213044067470219e-06,4.994120679288627658e-06,5.113028314509785096e-06,5.231935949730942534e-06,5.350843584952099973e-06,5.469751220173257411e-06,5.588658855394414850e-06,5.707566490615572288e-06,5.826474125836729726e-06,5.945381761057887165e-06,6.064289396279044603e-06,6.183197031500202041e-06,6.302104666721359480e-06,6.421012301942516918e-06,6.539919937163674356e-06,6.658827572384831795e-06,6.777735207605989233e-06,6.896642842827146671e-06,7.015550478048304110e-06,7.134458113269461548e-06,7.253365748490618987e-06,7.372273383711776425e-06,7.491181018932933863e-06 +0.000000000000000000e+00,1.179238418755820306e-07,2.358476837511640611e-07,3.537715256267460917e-07,4.716953675023281222e-07,5.896192093779101528e-07,7.075430512534921833e-07,8.254668931290742139e-07,9.433907350046562444e-07,1.061314576880238169e-06,1.179238418755820094e-06,1.297162260631402018e-06,1.415086102506983943e-06,1.533009944382565868e-06,1.650933786258147792e-06,1.768857628133729717e-06,1.886781470009311642e-06,2.004705311884893567e-06,2.122629153760475491e-06,2.240552995636057416e-06,2.358476837511639341e-06,2.476400679387221265e-06,2.594324521262803190e-06,2.712248363138385115e-06,2.830172205013967039e-06,2.948096046889548964e-06,3.066019888765130889e-06,3.183943730640712813e-06,3.301867572516294738e-06,3.419791414391876663e-06,3.537715256267458587e-06,3.655639098143040512e-06,3.773562940018622437e-06,3.891486781894204361e-06,4.009410623769786286e-06,4.127334465645368211e-06,4.245258307520950135e-06,4.363182149396532060e-06,4.481105991272113985e-06,4.599029833147695909e-06,4.716953675023277834e-06,4.834877516898859759e-06,4.952801358774441683e-06,5.070725200650023608e-06,5.188649042525605533e-06,5.306572884401187457e-06,5.424496726276769382e-06,5.542420568152351307e-06,5.660344410027933231e-06,5.778268251903515156e-06,5.896192093779097081e-06,6.014115935654679005e-06,6.132039777530260930e-06,6.249963619405842855e-06,6.367887461281424780e-06,6.485811303157006704e-06,6.603735145032588629e-06,6.721658986908170554e-06,6.839582828783752478e-06,6.957506670659334403e-06,7.075430512534916328e-06,7.193354354410498252e-06,7.311278196286080177e-06,7.429202038161662102e-06 +0.000000000000000000e+00,1.235116165042625209e-07,2.470232330085250418e-07,3.705348495127875892e-07,4.940464660170501895e-07,6.175580825213127898e-07,7.410696990255753902e-07,8.645813155298379905e-07,9.880929320341005908e-07,1.111604548538363191e-06,1.235116165042625791e-06,1.358627781546888392e-06,1.482139398051150992e-06,1.605651014555413592e-06,1.729162631059676193e-06,1.852674247563938793e-06,1.976185864068201605e-06,2.099697480572464417e-06,2.223209097076727229e-06,2.346720713580990041e-06,2.470232330085252853e-06,2.593743946589515665e-06,2.717255563093778478e-06,2.840767179598041290e-06,2.964278796102304102e-06,3.087790412606566914e-06,3.211302029110829726e-06,3.334813645615092538e-06,3.458325262119355350e-06,3.581836878623618162e-06,3.705348495127880974e-06,3.828860111632143786e-06,3.952371728136406598e-06,4.075883344640669410e-06,4.199394961144932222e-06,4.322906577649195035e-06,4.446418194153457847e-06,4.569929810657720659e-06,4.693441427161983471e-06,4.816953043666246283e-06,4.940464660170509095e-06,5.063976276674771907e-06,5.187487893179034719e-06,5.310999509683297531e-06,5.434511126187560343e-06,5.558022742691823155e-06,5.681534359196085967e-06,5.805045975700348779e-06,5.928557592204611592e-06,6.052069208708874404e-06,6.175580825213137216e-06,6.299092441717400028e-06,6.422604058221662840e-06,6.546115674725925652e-06,6.669627291230188464e-06,6.793138907734451276e-06,6.916650524238714088e-06,7.040162140742976900e-06,7.163673757247239712e-06,7.287185373751502524e-06,7.410696990255765336e-06,7.534208606760028149e-06,7.657720223264290961e-06,7.781231839768552926e-06 +0.000000000000000000e+00,1.218128743615312376e-07,2.436257487230624753e-07,3.654386230845937129e-07,4.872514974461249506e-07,6.090643718076561353e-07,7.308772461691873200e-07,8.526901205307185047e-07,9.745029948922496894e-07,1.096315869253780874e-06,1.218128743615312059e-06,1.339941617976843244e-06,1.461754492338374428e-06,1.583567366699905613e-06,1.705380241061436798e-06,1.827193115422967982e-06,1.949005989784498955e-06,2.070818864146029716e-06,2.192631738507560478e-06,2.314444612869091239e-06,2.436257487230622000e-06,2.558070361592152761e-06,2.679883235953683522e-06,2.801696110315214284e-06,2.923508984676745045e-06,3.045321859038275806e-06,3.167134733399806567e-06,3.288947607761337328e-06,3.410760482122868090e-06,3.532573356484398851e-06,3.654386230845929612e-06,3.776199105207460373e-06,3.898011979568991134e-06,4.019824853930521895e-06,4.141637728292052657e-06,4.263450602653583418e-06,4.385263477015114179e-06,4.507076351376644940e-06,4.628889225738175701e-06,4.750702100099706463e-06,4.872514974461237224e-06,4.994327848822767985e-06,5.116140723184298746e-06,5.237953597545829507e-06,5.359766471907360269e-06,5.481579346268891030e-06,5.603392220630421791e-06,5.725205094991952552e-06,5.847017969353483313e-06,5.968830843715014074e-06,6.090643718076544836e-06,6.212456592438075597e-06,6.334269466799606358e-06,6.456082341161137119e-06,6.577895215522667880e-06,6.699708089884198642e-06,6.821520964245729403e-06,6.943333838607260164e-06,7.065146712968790925e-06,7.186959587330321686e-06,7.308772461691852448e-06,7.430585336053383209e-06,7.552398210414913970e-06,7.674211084776444731e-06 +0.000000000000000000e+00,1.214376522321255015e-07,2.428753044642510030e-07,3.643129566963765310e-07,4.857506089285021119e-07,6.071882611606276929e-07,7.286259133927532738e-07,8.500635656248788547e-07,9.715012178570044356e-07,1.092938870089130017e-06,1.214376522321255597e-06,1.335814174553381178e-06,1.457251826785506759e-06,1.578689479017632340e-06,1.700127131249757921e-06,1.821564783481883502e-06,1.943002435714009295e-06,2.064440087946135299e-06,2.185877740178261304e-06,2.307315392410387308e-06,2.428753044642513313e-06,2.550190696874639317e-06,2.671628349106765321e-06,2.793066001338891326e-06,2.914503653571017330e-06,3.035941305803143335e-06,3.157378958035269339e-06,3.278816610267395344e-06,3.400254262499521348e-06,3.521691914731647353e-06,3.643129566963773357e-06,3.764567219195899361e-06,3.886004871428025366e-06,4.007442523660151370e-06,4.128880175892277375e-06,4.250317828124403379e-06,4.371755480356529384e-06,4.493193132588655388e-06,4.614630784820781393e-06,4.736068437052907397e-06,4.857506089285033401e-06,4.978943741517159406e-06,5.100381393749285410e-06,5.221819045981411415e-06,5.343256698213537419e-06,5.464694350445663424e-06,5.586132002677789428e-06,5.707569654909915432e-06,5.829007307142041437e-06,5.950444959374167441e-06,6.071882611606293446e-06,6.193320263838419450e-06,6.314757916070545455e-06,6.436195568302671459e-06,6.557633220534797464e-06,6.679070872766923468e-06,6.800508524999049472e-06,6.921946177231175477e-06,7.043383829463301481e-06,7.164821481695427486e-06,7.286259133927553490e-06,7.407696786159679495e-06,7.529134438391805499e-06,7.650572090623930657e-06 +0.000000000000000000e+00,1.235116165042529388e-07,2.470232330085058777e-07,3.705348495127587901e-07,4.940464660170116495e-07,6.175580825212645090e-07,7.410696990255173684e-07,8.645813155297702278e-07,9.880929320340230873e-07,1.111604548538275947e-06,1.235116165042528806e-06,1.358627781546781666e-06,1.482139398051034525e-06,1.605651014555287384e-06,1.729162631059540244e-06,1.852674247563793103e-06,1.976185864068045751e-06,2.099697480572298399e-06,2.223209097076551046e-06,2.346720713580803694e-06,2.470232330085056342e-06,2.593743946589308989e-06,2.717255563093561637e-06,2.840767179597814285e-06,2.964278796102066932e-06,3.087790412606319580e-06,3.211302029110572228e-06,3.334813645614824876e-06,3.458325262119077523e-06,3.581836878623330171e-06,3.705348495127582819e-06,3.828860111631835466e-06,3.952371728136088114e-06,4.075883344640340762e-06,4.199394961144593409e-06,4.322906577648846057e-06,4.446418194153098705e-06,4.569929810657351352e-06,4.693441427161604000e-06,4.816953043665856648e-06,4.940464660170109295e-06,5.063976276674361943e-06,5.187487893178614591e-06,5.310999509682867238e-06,5.434511126187119886e-06,5.558022742691372534e-06,5.681534359195625181e-06,5.805045975699877829e-06,5.928557592204130477e-06,6.052069208708383125e-06,6.175580825212635772e-06,6.299092441716888420e-06,6.422604058221141068e-06,6.546115674725393715e-06,6.669627291229646363e-06,6.793138907733899011e-06,6.916650524238151658e-06,7.040162140742404306e-06,7.163673757246656954e-06,7.287185373750909601e-06,7.410696990255162249e-06,7.534208606759414897e-06,7.657720223263667544e-06,7.781231839767919345e-06 +0.000000000000000000e+00,1.218128743615210468e-07,2.436257487230420936e-07,3.654386230845631668e-07,4.872514974460842930e-07,6.090643718076054192e-07,7.308772461691265454e-07,8.526901205306476716e-07,9.745029948921687977e-07,1.096315869253690030e-06,1.218128743615211262e-06,1.339941617976732494e-06,1.461754492338253726e-06,1.583567366699774958e-06,1.705380241061296190e-06,1.827193115422817422e-06,1.949005989784338866e-06,2.070818864145860310e-06,2.192631738507381754e-06,2.314444612868903198e-06,2.436257487230424641e-06,2.558070361591946085e-06,2.679883235953467529e-06,2.801696110314988973e-06,2.923508984676510417e-06,3.045321859038031860e-06,3.167134733399553304e-06,3.288947607761074748e-06,3.410760482122596192e-06,3.532573356484117636e-06,3.654386230845639080e-06,3.776199105207160523e-06,3.898011979568681967e-06,4.019824853930203411e-06,4.141637728291724855e-06,4.263450602653246299e-06,4.385263477014767743e-06,4.507076351376289186e-06,4.628889225737810630e-06,4.750702100099332074e-06,4.872514974460853518e-06,4.994327848822374962e-06,5.116140723183896405e-06,5.237953597545417849e-06,5.359766471906939293e-06,5.481579346268460737e-06,5.603392220629982181e-06,5.725205094991503625e-06,5.847017969353025068e-06,5.968830843714546512e-06,6.090643718076067956e-06,6.212456592437589400e-06,6.334269466799110844e-06,6.456082341160632288e-06,6.577895215522153731e-06,6.699708089883675175e-06,6.821520964245196619e-06,6.943333838606718063e-06,7.065146712968239507e-06,7.186959587329760951e-06,7.308772461691282394e-06,7.430585336052803838e-06,7.552398210414325282e-06,7.674211084775846726e-06 +0.000000000000000000e+00,1.214376522321157871e-07,2.428753044642315742e-07,3.643129566963473613e-07,4.857506089284631484e-07,6.071882611605789885e-07,7.286259133926948285e-07,8.500635656248106686e-07,9.715012178569265086e-07,1.092938870089042349e-06,1.214376522321158189e-06,1.335814174553274029e-06,1.457251826785389869e-06,1.578689479017505709e-06,1.700127131249621549e-06,1.821564783481737389e-06,1.943002435713853441e-06,2.064440087945969281e-06,2.185877740178085121e-06,2.307315392410200961e-06,2.428753044642316801e-06,2.550190696874432641e-06,2.671628349106548481e-06,2.793066001338664321e-06,2.914503653570780161e-06,3.035941305802896001e-06,3.157378958035011841e-06,3.278816610267127681e-06,3.400254262499243521e-06,3.521691914731359361e-06,3.643129566963475201e-06,3.764567219195591041e-06,3.886004871427706881e-06,4.007442523659822722e-06,4.128880175891938562e-06,4.250317828124054402e-06,4.371755480356170242e-06,4.493193132588286082e-06,4.614630784820401922e-06,4.736068437052517762e-06,4.857506089284633602e-06,4.978943741516749442e-06,5.100381393748865282e-06,5.221819045980981122e-06,5.343256698213096962e-06,5.464694350445212802e-06,5.586132002677328642e-06,5.707569654909444482e-06,5.829007307141560322e-06,5.950444959373676162e-06,6.071882611605792002e-06,6.193320263837907842e-06,6.314757916070023682e-06,6.436195568302139522e-06,6.557633220534255362e-06,6.679070872766371203e-06,6.800508524998487043e-06,6.921946177230602883e-06,7.043383829462718723e-06,7.164821481694834563e-06,7.286259133926950403e-06,7.407696786159066243e-06,7.529134438391182083e-06,7.650572090623297076e-06 +0.000000000000000000e+00,1.272179185512118140e-07,2.544358371024236281e-07,3.816537556536354685e-07,5.088716742048473620e-07,6.360895927560592554e-07,7.633075113072711488e-07,8.905254298584830423e-07,1.017743348409694936e-06,1.144961266960906723e-06,1.272179185512118511e-06,1.399397104063330298e-06,1.526615022614542086e-06,1.653832941165753873e-06,1.781050859716965661e-06,1.908268778268177449e-06,2.035486696819389448e-06,2.162704615370601447e-06,2.289922533921813447e-06,2.417140452473025446e-06,2.544358371024237445e-06,2.671576289575449444e-06,2.798794208126661444e-06,2.926012126677873443e-06,3.053230045229085442e-06,3.180447963780297442e-06,3.307665882331509441e-06,3.434883800882721440e-06,3.562101719433933440e-06,3.689319637985145439e-06,3.816537556536357438e-06,3.943755475087569438e-06,4.070973393638781437e-06,4.198191312189993436e-06,4.325409230741205436e-06,4.452627149292417435e-06,4.579845067843629434e-06,4.707062986394841434e-06,4.834280904946053433e-06,4.961498823497265432e-06,5.088716742048477431e-06,5.215934660599689431e-06,5.343152579150901430e-06,5.470370497702113429e-06,5.597588416253325429e-06,5.724806334804537428e-06,5.852024253355749427e-06,5.979242171906961427e-06,6.106460090458173426e-06,6.233678009009385425e-06,6.360895927560597425e-06,6.488113846111809424e-06,6.615331764663021423e-06,6.742549683214233423e-06,6.869767601765445422e-06,6.996985520316657421e-06,7.124203438867869420e-06,7.251421357419081420e-06,7.378639275970293419e-06,7.505857194521505418e-06,7.633075113072716571e-06,7.760293031623927723e-06,7.887510950175138875e-06,8.014728868726350028e-06 +0.000000000000000000e+00,1.253200895782575000e-07,2.506401791565150000e-07,3.759602687347725000e-07,5.012803583130300000e-07,6.266004478912875529e-07,7.519205374695451058e-07,8.772406270478026587e-07,1.002560716626060212e-06,1.127880806204317765e-06,1.253200895782575318e-06,1.378520985360832870e-06,1.503841074939090423e-06,1.629161164517347976e-06,1.754481254095605529e-06,1.879801343673863082e-06,2.005121433252120847e-06,2.130441522830378612e-06,2.255761612408636376e-06,2.381081701986894141e-06,2.506401791565151906e-06,2.631721881143409670e-06,2.757041970721667435e-06,2.882362060299925200e-06,3.007682149878182964e-06,3.133002239456440729e-06,3.258322329034698494e-06,3.383642418612956258e-06,3.508962508191214023e-06,3.634282597769471788e-06,3.759602687347729553e-06,3.884922776925987741e-06,4.010242866504245929e-06,4.135562956082504117e-06,4.260883045660762305e-06,4.386203135239020494e-06,4.511523224817278682e-06,4.636843314395536870e-06,4.762163403973795058e-06,4.887483493552053246e-06,5.012803583130311435e-06,5.138123672708569623e-06,5.263443762286827811e-06,5.388763851865085999e-06,5.514083941443344187e-06,5.639404031021602376e-06,5.764724120599860564e-06,5.890044210178118752e-06,6.015364299756376940e-06,6.140684389334635128e-06,6.266004478912893317e-06,6.391324568491151505e-06,6.516644658069409693e-06,6.641964747647667881e-06,6.767284837225926069e-06,6.892604926804184258e-06,7.017925016382442446e-06,7.143245105960700634e-06,7.268565195538958822e-06,7.393885285117217010e-06,7.519205374695475199e-06,7.644525464273733387e-06,7.769845553851992422e-06,7.895165643430251457e-06 +0.000000000000000000e+00,1.253731271202361725e-07,2.507462542404723451e-07,3.761193813607085441e-07,5.014925084809447960e-07,6.268656356011810479e-07,7.522387627214172999e-07,8.776118898416535518e-07,1.002985016961889804e-06,1.128358144082126056e-06,1.253731271202362308e-06,1.379104398322598560e-06,1.504477525442834811e-06,1.629850652563071063e-06,1.755223779683307315e-06,1.880596906803543567e-06,2.005970033923780031e-06,2.131343161044016495e-06,2.256716288164252958e-06,2.382089415284489422e-06,2.507462542404725886e-06,2.632835669524962349e-06,2.758208796645198813e-06,2.883581923765435277e-06,3.008955050885671741e-06,3.134328178005908204e-06,3.259701305126144668e-06,3.385074432246381132e-06,3.510447559366617595e-06,3.635820686486854059e-06,3.761193813607090523e-06,3.886566940727326986e-06,4.011940067847563450e-06,4.137313194967799914e-06,4.262686322088036378e-06,4.388059449208272841e-06,4.513432576328509305e-06,4.638805703448745769e-06,4.764178830568982232e-06,4.889551957689218696e-06,5.014925084809455160e-06,5.140298211929691623e-06,5.265671339049928087e-06,5.391044466170164551e-06,5.516417593290401015e-06,5.641790720410637478e-06,5.767163847530873942e-06,5.892536974651110406e-06,6.017910101771346869e-06,6.143283228891583333e-06,6.268656356011819797e-06,6.394029483132056260e-06,6.519402610252292724e-06,6.644775737372529188e-06,6.770148864492765651e-06,6.895521991613002115e-06,7.020895118733238579e-06,7.146268245853475043e-06,7.271641372973711506e-06,7.397014500093947970e-06,7.522387627214184434e-06,7.647760754334420897e-06,7.773133881454657361e-06,7.898507008574893825e-06 +0.000000000000000000e+00,1.272179185512030525e-07,2.544358371024061051e-07,3.816537556536091576e-07,5.088716742048122101e-07,6.360895927560153156e-07,7.633075113072184210e-07,8.905254298584215265e-07,1.017743348409624632e-06,1.144961266960827737e-06,1.272179185512030843e-06,1.399397104063233948e-06,1.526615022614437054e-06,1.653832941165640159e-06,1.781050859716843265e-06,1.908268778268046159e-06,2.035486696819248840e-06,2.162704615370451522e-06,2.289922533921654204e-06,2.417140452472856886e-06,2.544358371024059568e-06,2.671576289575262250e-06,2.798794208126464932e-06,2.926012126677667614e-06,3.053230045228870296e-06,3.180447963780072978e-06,3.307665882331275660e-06,3.434883800882478342e-06,3.562101719433681024e-06,3.689319637984883706e-06,3.816537556536086388e-06,3.943755475087289070e-06,4.070973393638491752e-06,4.198191312189694434e-06,4.325409230740897116e-06,4.452627149292099798e-06,4.579845067843302479e-06,4.707062986394505161e-06,4.834280904945707843e-06,4.961498823496910525e-06,5.088716742048113207e-06,5.215934660599315889e-06,5.343152579150518571e-06,5.470370497701721253e-06,5.597588416252923935e-06,5.724806334804126617e-06,5.852024253355329299e-06,5.979242171906531981e-06,6.106460090457734663e-06,6.233678009008937345e-06,6.360895927560140027e-06,6.488113846111342709e-06,6.615331764662545391e-06,6.742549683213748073e-06,6.869767601764950755e-06,6.996985520316153437e-06,7.124203438867356119e-06,7.251421357418558800e-06,7.378639275969761482e-06,7.505857194520964164e-06,7.633075113072167693e-06,7.760293031623370375e-06,7.887510950174573057e-06,8.014728868725775739e-06 +0.000000000000000000e+00,1.253200895782482885e-07,2.506401791564965770e-07,3.759602687347448655e-07,5.012803583129931540e-07,6.266004478912413896e-07,7.519205374694896252e-07,8.772406270477378607e-07,1.002560716625986096e-06,1.127880806204234332e-06,1.253200895782482567e-06,1.378520985360730803e-06,1.503841074938979039e-06,1.629161164517227274e-06,1.754481254095475510e-06,1.879801343673723745e-06,2.005121433251971769e-06,2.130441522830219793e-06,2.255761612408467817e-06,2.381081701986715841e-06,2.506401791564963864e-06,2.631721881143211888e-06,2.757041970721459912e-06,2.882362060299707936e-06,3.007682149877955960e-06,3.133002239456203983e-06,3.258322329034452007e-06,3.383642418612700031e-06,3.508962508190948055e-06,3.634282597769196079e-06,3.759602687347444102e-06,3.884922776925692126e-06,4.010242866503940150e-06,4.135562956082188174e-06,4.260883045660436198e-06,4.386203135238684221e-06,4.511523224816932245e-06,4.636843314395180269e-06,4.762163403973428293e-06,4.887483493551676317e-06,5.012803583129924340e-06,5.138123672708172364e-06,5.263443762286420388e-06,5.388763851864668412e-06,5.514083941442916436e-06,5.639404031021164460e-06,5.764724120599412483e-06,5.890044210177660507e-06,6.015364299755908531e-06,6.140684389334156555e-06,6.266004478912404579e-06,6.391324568490652602e-06,6.516644658068900626e-06,6.641964747647148650e-06,6.767284837225396674e-06,6.892604926803644698e-06,7.017925016381892721e-06,7.143245105960140745e-06,7.268565195538388769e-06,7.393885285116636793e-06,7.519205374694884817e-06,7.644525464273133688e-06,7.769845553851382558e-06,7.895165643429631429e-06 +0.000000000000000000e+00,1.253731271202263787e-07,2.507462542404527574e-07,3.761193813606791097e-07,5.014925084809054090e-07,6.268656356011317083e-07,7.522387627213580076e-07,8.776118898415843069e-07,1.002985016961810606e-06,1.128358144082036905e-06,1.253731271202263205e-06,1.379104398322489504e-06,1.504477525442715803e-06,1.629850652562942103e-06,1.755223779683168402e-06,1.880596906803394701e-06,2.005970033923620789e-06,2.131343161043847088e-06,2.256716288164073387e-06,2.382089415284299687e-06,2.507462542404525986e-06,2.632835669524752285e-06,2.758208796644978585e-06,2.883581923765204884e-06,3.008955050885431183e-06,3.134328178005657483e-06,3.259701305125883782e-06,3.385074432246110081e-06,3.510447559366336380e-06,3.635820686486562680e-06,3.761193813606788979e-06,3.886566940727015278e-06,4.011940067847241578e-06,4.137313194967467877e-06,4.262686322087694176e-06,4.388059449207920476e-06,4.513432576328146775e-06,4.638805703448373074e-06,4.764178830568599373e-06,4.889551957688825673e-06,5.014925084809051972e-06,5.140298211929278271e-06,5.265671339049504571e-06,5.391044466169730870e-06,5.516417593289957169e-06,5.641790720410183469e-06,5.767163847530409768e-06,5.892536974650636067e-06,6.017910101770862366e-06,6.143283228891088666e-06,6.268656356011314965e-06,6.394029483131541264e-06,6.519402610251767564e-06,6.644775737371993863e-06,6.770148864492220162e-06,6.895521991612446462e-06,7.020895118732672761e-06,7.146268245852899060e-06,7.271641372973125359e-06,7.397014500093351659e-06,7.522387627213577958e-06,7.647760754333804257e-06,7.773133881454030557e-06,7.898507008574256856e-06 +0.000000000000000000e+00,1.312071759407790775e-07,2.624143518815581550e-07,3.936215278223372589e-07,5.248287037631164158e-07,6.560358797038955727e-07,7.872430556446747296e-07,9.184502315854538864e-07,1.049657407526233043e-06,1.180864583467012200e-06,1.312071759407791357e-06,1.443278935348570514e-06,1.574486111289349671e-06,1.705693287230128828e-06,1.836900463170907985e-06,1.968107639111687353e-06,2.099314815052466510e-06,2.230521990993245667e-06,2.361729166934024824e-06,2.492936342874803981e-06,2.624143518815583138e-06,2.755350694756362295e-06,2.886557870697141451e-06,3.017765046637920608e-06,3.148972222578699765e-06,3.280179398519478922e-06,3.411386574460258079e-06,3.542593750401037236e-06,3.673800926341816393e-06,3.805008102282595550e-06,3.936215278223374707e-06,4.067422454164153863e-06,4.198629630104933020e-06,4.329836806045712177e-06,4.461043981986491334e-06,4.592251157927270491e-06,4.723458333868049648e-06,4.854665509808828805e-06,4.985872685749607962e-06,5.117079861690387119e-06,5.248287037631166275e-06,5.379494213571945432e-06,5.510701389512724589e-06,5.641908565453503746e-06,5.773115741394282903e-06,5.904322917335062060e-06,6.035530093275841217e-06,6.166737269216620374e-06,6.297944445157399531e-06,6.429151621098178687e-06,6.560358797038957844e-06,6.691565972979737001e-06,6.822773148920516158e-06,6.953980324861295315e-06,7.085187500802074472e-06,7.216394676742853629e-06,7.347601852683632786e-06,7.478809028624411942e-06,7.610016204565191099e-06,7.741223380505969409e-06,7.872430556446747719e-06,8.003637732387526029e-06,8.134844908328304339e-06,8.266052084269082649e-06 +0.000000000000000000e+00,1.291832720361512141e-07,2.583665440723024282e-07,3.875498161084536423e-07,5.167330881446048564e-07,6.459163601807560705e-07,7.750996322169072846e-07,9.042829042530584988e-07,1.033466176289209713e-06,1.162649448325360927e-06,1.291832720361512141e-06,1.421015992397663355e-06,1.550199264433814569e-06,1.679382536469965783e-06,1.808565808506116998e-06,1.937749080542268212e-06,2.066932352578419426e-06,2.196115624614570640e-06,2.325298896650721854e-06,2.454482168686873068e-06,2.583665440723024282e-06,2.712848712759175496e-06,2.842031984795326710e-06,2.971215256831477924e-06,3.100398528867629139e-06,3.229581800903780353e-06,3.358765072939931567e-06,3.487948344976082781e-06,3.617131617012233995e-06,3.746314889048385209e-06,3.875498161084536423e-06,4.004681433120687637e-06,4.133864705156838851e-06,4.263047977192990066e-06,4.392231249229141280e-06,4.521414521265292494e-06,4.650597793301443708e-06,4.779781065337594922e-06,4.908964337373746136e-06,5.038147609409897350e-06,5.167330881446048564e-06,5.296514153482199778e-06,5.425697425518350993e-06,5.554880697554502207e-06,5.684063969590653421e-06,5.813247241626804635e-06,5.942430513662955849e-06,6.071613785699107063e-06,6.200797057735258277e-06,6.329980329771409491e-06,6.459163601807560705e-06,6.588346873843711919e-06,6.717530145879863134e-06,6.846713417916014348e-06,6.975896689952165562e-06,7.105079961988316776e-06,7.234263234024467990e-06,7.363446506060619204e-06,7.492629778096770418e-06,7.621813050132921632e-06,7.750996322169072846e-06,7.880179594205224061e-06,8.009362866241375275e-06,8.138546138277526489e-06 +0.000000000000000000e+00,1.295624490918506844e-07,2.591248981837013688e-07,3.886873472755520267e-07,5.182497963674026316e-07,6.478122454592532366e-07,7.773746945511038416e-07,9.069371436429544466e-07,1.036499592734805052e-06,1.166062041826655657e-06,1.295624490918506261e-06,1.425186940010356866e-06,1.554749389102207471e-06,1.684311838194058076e-06,1.813874287285908681e-06,1.943436736377759075e-06,2.072999185469609680e-06,2.202561634561460285e-06,2.332124083653310890e-06,2.461686532745161494e-06,2.591248981837012099e-06,2.720811430928862704e-06,2.850373880020713309e-06,2.979936329112563914e-06,3.109498778204414519e-06,3.239061227296265124e-06,3.368623676388115729e-06,3.498186125479966334e-06,3.627748574571816939e-06,3.757311023663667544e-06,3.886873472755518149e-06,4.016435921847368754e-06,4.145998370939219359e-06,4.275560820031069964e-06,4.405123269122920569e-06,4.534685718214771174e-06,4.664248167306621779e-06,4.793810616398472384e-06,4.923373065490322989e-06,5.052935514582173594e-06,5.182497963674024199e-06,5.312060412765874804e-06,5.441622861857725409e-06,5.571185310949576014e-06,5.700747760041426619e-06,5.830310209133277224e-06,5.959872658225127829e-06,6.089435107316978434e-06,6.218997556408829039e-06,6.348560005500679644e-06,6.478122454592530249e-06,6.607684903684380854e-06,6.737247352776231459e-06,6.866809801868082064e-06,6.996372250959932669e-06,7.125934700051783273e-06,7.255497149143633878e-06,7.385059598235484483e-06,7.514622047327335088e-06,7.644184496419186540e-06,7.773746945511037992e-06,7.903309394602889444e-06,8.032871843694740896e-06,8.162434292786592348e-06 +0.000000000000000000e+00,1.312071759407692307e-07,2.624143518815384614e-07,3.936215278223077186e-07,5.248287037630770288e-07,6.560358797038463389e-07,7.872430556446156490e-07,9.184502315853849591e-07,1.049657407526154269e-06,1.180864583466923474e-06,1.312071759407692678e-06,1.443278935348461882e-06,1.574486111289231086e-06,1.705693287230000291e-06,1.836900463170769495e-06,1.968107639111538699e-06,2.099314815052308115e-06,2.230521990993077531e-06,2.361729166933846947e-06,2.492936342874616363e-06,2.624143518815385779e-06,2.755350694756155195e-06,2.886557870696924611e-06,3.017765046637694027e-06,3.148972222578463443e-06,3.280179398519232859e-06,3.411386574460002275e-06,3.542593750400771691e-06,3.673800926341541107e-06,3.805008102282310523e-06,3.936215278223079939e-06,4.067422454163849779e-06,4.198629630104619618e-06,4.329836806045389458e-06,4.461043981986159297e-06,4.592251157926929137e-06,4.723458333867698976e-06,4.854665509808468816e-06,4.985872685749238655e-06,5.117079861690008495e-06,5.248287037630778334e-06,5.379494213571548174e-06,5.510701389512318013e-06,5.641908565453087853e-06,5.773115741393857692e-06,5.904322917334627532e-06,6.035530093275397371e-06,6.166737269216167211e-06,6.297944445156937051e-06,6.429151621097706890e-06,6.560358797038476730e-06,6.691565972979246569e-06,6.822773148920016409e-06,6.953980324860786248e-06,7.085187500801556088e-06,7.216394676742325927e-06,7.347601852683095767e-06,7.478809028623865606e-06,7.610016204564635446e-06,7.741223380505405285e-06,7.872430556446175125e-06,8.003637732386944964e-06,8.134844908327714804e-06,8.266052084268484643e-06 +0.000000000000000000e+00,1.291832720361419762e-07,2.583665440722839523e-07,3.875498161084259020e-07,5.167330881445677987e-07,6.459163601807096955e-07,7.750996322168515922e-07,9.042829042529934890e-07,1.033466176289135386e-06,1.162649448325277282e-06,1.291832720361419179e-06,1.421015992397561076e-06,1.550199264433702973e-06,1.679382536469844869e-06,1.808565808505986766e-06,1.937749080542128451e-06,2.066932352578270348e-06,2.196115624614412245e-06,2.325298896650554141e-06,2.454482168686696038e-06,2.583665440722837935e-06,2.712848712758979832e-06,2.842031984795121728e-06,2.971215256831263625e-06,3.100398528867405522e-06,3.229581800903547419e-06,3.358765072939689315e-06,3.487948344975831212e-06,3.617131617011973109e-06,3.746314889048115006e-06,3.875498161084256902e-06,4.004681433120398799e-06,4.133864705156540696e-06,4.263047977192682593e-06,4.392231249228824489e-06,4.521414521264966386e-06,4.650597793301108283e-06,4.779781065337250180e-06,4.908964337373392076e-06,5.038147609409533973e-06,5.167330881445675870e-06,5.296514153481817767e-06,5.425697425517959663e-06,5.554880697554101560e-06,5.684063969590243457e-06,5.813247241626385354e-06,5.942430513662527250e-06,6.071613785698669147e-06,6.200797057734811044e-06,6.329980329770952941e-06,6.459163601807094837e-06,6.588346873843236734e-06,6.717530145879378631e-06,6.846713417915520527e-06,6.975896689951662424e-06,7.105079961987804321e-06,7.234263234023946218e-06,7.363446506060088114e-06,7.492629778096230011e-06,7.621813050132371908e-06,7.750996322168513805e-06,7.880179594204656548e-06,8.009362866240799292e-06,8.138546138276942036e-06 +0.000000000000000000e+00,1.295624490918409964e-07,2.591248981836819929e-07,3.886873472755230158e-07,5.182497963673640916e-07,6.478122454592051675e-07,7.773746945510462434e-07,9.069371436428873192e-07,1.036499592734728395e-06,1.166062041826569471e-06,1.295624490918410547e-06,1.425186940010251623e-06,1.554749389102092698e-06,1.684311838193933774e-06,1.813874287285774850e-06,1.943436736377615926e-06,2.072999185469457214e-06,2.202561634561298501e-06,2.332124083653139789e-06,2.461686532744981076e-06,2.591248981836822364e-06,2.720811430928663652e-06,2.850373880020504939e-06,2.979936329112346227e-06,3.109498778204187515e-06,3.239061227296028802e-06,3.368623676387870090e-06,3.498186125479711377e-06,3.627748574571552665e-06,3.757311023663393953e-06,3.886873472755235240e-06,4.016435921847076528e-06,4.145998370938917815e-06,4.275560820030759103e-06,4.405123269122600391e-06,4.534685718214441678e-06,4.664248167306282966e-06,4.793810616398124253e-06,4.923373065489965541e-06,5.052935514581806829e-06,5.182497963673648116e-06,5.312060412765489404e-06,5.441622861857330691e-06,5.571185310949171979e-06,5.700747760041013267e-06,5.830310209132854554e-06,5.959872658224695842e-06,6.089435107316537130e-06,6.218997556408378417e-06,6.348560005500219705e-06,6.478122454592060992e-06,6.607684903683902280e-06,6.737247352775743568e-06,6.866809801867584855e-06,6.996372250959426143e-06,7.125934700051267430e-06,7.255497149143108718e-06,7.385059598234950006e-06,7.514622047326791293e-06,7.644184496418632581e-06,7.773746945510473868e-06,7.903309394602315156e-06,8.032871843694156444e-06,8.162434292785997731e-06 +0.000000000000000000e+00,1.353916780176110811e-07,2.707833560352221623e-07,4.061750340528332434e-07,5.415667120704443245e-07,6.769583900880554056e-07,8.123500681056664868e-07,9.477417461232775679e-07,1.083133424140888649e-06,1.218525102158499836e-06,1.353916780176111023e-06,1.489308458193722210e-06,1.624700136211333397e-06,1.760091814228944584e-06,1.895483492246555771e-06,2.030875170264166958e-06,2.166266848281778145e-06,2.301658526299389332e-06,2.437050204317000519e-06,2.572441882334611706e-06,2.707833560352222893e-06,2.843225238369834080e-06,2.978616916387445267e-06,3.114008594405056454e-06,3.249400272422667641e-06,3.384791950440278828e-06,3.520183628457890015e-06,3.655575306475501202e-06,3.790966984493112389e-06,3.926358662510723153e-06,4.061750340528333916e-06,4.197142018545944680e-06,4.332533696563555443e-06,4.467925374581166207e-06,4.603317052598776970e-06,4.738708730616387734e-06,4.874100408633998497e-06,5.009492086651609261e-06,5.144883764669220024e-06,5.280275442686830788e-06,5.415667120704441551e-06,5.551058798722052315e-06,5.686450476739663078e-06,5.821842154757273842e-06,5.957233832774884605e-06,6.092625510792495369e-06,6.228017188810106132e-06,6.363408866827716896e-06,6.498800544845327659e-06,6.634192222862938423e-06,6.769583900880549186e-06,6.904975578898159950e-06,7.040367256915770713e-06,7.175758934933381477e-06,7.311150612950992240e-06,7.446542290968603003e-06,7.581933968986213767e-06,7.717325647003824530e-06,7.852717325021436141e-06,7.988109003039047752e-06,8.123500681056659362e-06,8.258892359074270973e-06,8.394284037091882583e-06,8.529675715109494194e-06 +0.000000000000000000e+00,1.332775945998193343e-07,2.665551891996386687e-07,3.998327837994580030e-07,5.331103783992773374e-07,6.663879729990966188e-07,7.996655675989159002e-07,9.329431621987351816e-07,1.066220756798554463e-06,1.199498351398373744e-06,1.332775945998193026e-06,1.466053540598012307e-06,1.599331135197831589e-06,1.732608729797650870e-06,1.865886324397470151e-06,1.999163918997289433e-06,2.132441513597108502e-06,2.265719108196927572e-06,2.398996702796746642e-06,2.532274297396565711e-06,2.665551891996384781e-06,2.798829486596203851e-06,2.932107081196022920e-06,3.065384675795841990e-06,3.198662270395661060e-06,3.331939864995480129e-06,3.465217459595299199e-06,3.598495054195118269e-06,3.731772648794937338e-06,3.865050243394755984e-06,3.998327837994574630e-06,4.131605432594393277e-06,4.264883027194211923e-06,4.398160621794030569e-06,4.531438216393849215e-06,4.664715810993667861e-06,4.797993405593486507e-06,4.931271000193305153e-06,5.064548594793123800e-06,5.197826189392942446e-06,5.331103783992761092e-06,5.464381378592579738e-06,5.597658973192398384e-06,5.730936567792217030e-06,5.864214162392035676e-06,5.997491756991854322e-06,6.130769351591672969e-06,6.264046946191491615e-06,6.397324540791310261e-06,6.530602135391128907e-06,6.663879729990947553e-06,6.797157324590766199e-06,6.930434919190584845e-06,7.063712513790403491e-06,7.196990108390222138e-06,7.330267702990040784e-06,7.463545297589859430e-06,7.596822892189678076e-06,7.730100486789496722e-06,7.863378081389315368e-06,7.996655675989134014e-06,8.129933270588952661e-06,8.263210865188771307e-06,8.396488459788589953e-06 +0.000000000000000000e+00,1.339344448600572792e-07,2.678688897201145585e-07,4.018033345801718642e-07,5.357377794402292228e-07,6.696722243002865815e-07,8.036066691603439401e-07,9.375411140204012988e-07,1.071475558880458657e-06,1.205410003740515910e-06,1.339344448600573163e-06,1.473278893460630416e-06,1.607213338320687669e-06,1.741147783180744921e-06,1.875082228040802174e-06,2.009016672900859427e-06,2.142951117760916891e-06,2.276885562620974356e-06,2.410820007481031820e-06,2.544754452341089285e-06,2.678688897201146749e-06,2.812623342061204214e-06,2.946557786921261679e-06,3.080492231781319143e-06,3.214426676641376608e-06,3.348361121501434072e-06,3.482295566361491537e-06,3.616230011221549001e-06,3.750164456081606466e-06,3.884098900941663930e-06,4.018033345801721395e-06,4.151967790661778859e-06,4.285902235521836324e-06,4.419836680381893788e-06,4.553771125241951253e-06,4.687705570102008717e-06,4.821640014962066182e-06,4.955574459822123646e-06,5.089508904682181111e-06,5.223443349542238575e-06,5.357377794402296040e-06,5.491312239262353505e-06,5.625246684122410969e-06,5.759181128982468434e-06,5.893115573842525898e-06,6.027050018702583363e-06,6.160984463562640827e-06,6.294918908422698292e-06,6.428853353282755756e-06,6.562787798142813221e-06,6.696722243002870685e-06,6.830656687862928150e-06,6.964591132722985614e-06,7.098525577583043079e-06,7.232460022443100543e-06,7.366394467303158008e-06,7.500328912163215472e-06,7.634263357023273784e-06,7.768197801883332943e-06,7.902132246743392101e-06,8.036066691603451260e-06,8.170001136463510418e-06,8.303935581323569577e-06,8.437870026183628736e-06 +0.000000000000000000e+00,1.353916780176030078e-07,2.707833560352060157e-07,4.061750340528089971e-07,5.415667120704119255e-07,6.769583900880148539e-07,8.123500681056177824e-07,9.477417461232207108e-07,1.083133424140823639e-06,1.218525102158426568e-06,1.353916780176029496e-06,1.489308458193632425e-06,1.624700136211235353e-06,1.760091814228838281e-06,1.895483492246441210e-06,2.030875170264044138e-06,2.166266848281646855e-06,2.301658526299249572e-06,2.437050204316852288e-06,2.572441882334455005e-06,2.707833560352057722e-06,2.843225238369660438e-06,2.978616916387263155e-06,3.114008594404865872e-06,3.249400272422468588e-06,3.384791950440071305e-06,3.520183628457674022e-06,3.655575306475276738e-06,3.790966984492879455e-06,3.926358662510482595e-06,4.061750340528085736e-06,4.197142018545688876e-06,4.332533696563292016e-06,4.467925374580895156e-06,4.603317052598498296e-06,4.738708730616101437e-06,4.874100408633704577e-06,5.009492086651307717e-06,5.144883764668910857e-06,5.280275442686513997e-06,5.415667120704117137e-06,5.551058798721720278e-06,5.686450476739323418e-06,5.821842154756926558e-06,5.957233832774529698e-06,6.092625510792132838e-06,6.228017188809735979e-06,6.363408866827339119e-06,6.498800544844942259e-06,6.634192222862545399e-06,6.769583900880148539e-06,6.904975578897751680e-06,7.040367256915354820e-06,7.175758934932957960e-06,7.311150612950561100e-06,7.446542290968164240e-06,7.581933968985767381e-06,7.717325647003370521e-06,7.852717325020973661e-06,7.988109003038576801e-06,8.123500681056179941e-06,8.258892359073783082e-06,8.394284037091386222e-06,8.529675715108989362e-06 +0.000000000000000000e+00,1.332775945998102287e-07,2.665551891996204575e-07,3.998327837994306862e-07,5.331103783992409150e-07,6.663879729990510908e-07,7.996655675988612666e-07,9.329431621986714424e-07,1.066220756798481618e-06,1.199498351398291794e-06,1.332775945998101970e-06,1.466053540597912146e-06,1.599331135197722321e-06,1.732608729797532497e-06,1.865886324397342673e-06,1.999163918997152637e-06,2.132441513596962813e-06,2.265719108196772989e-06,2.398996702796583164e-06,2.532274297396393340e-06,2.665551891996203516e-06,2.798829486596013692e-06,2.932107081195823868e-06,3.065384675795634043e-06,3.198662270395444219e-06,3.331939864995254395e-06,3.465217459595064571e-06,3.598495054194874747e-06,3.731772648794684922e-06,3.865050243394495098e-06,3.998327837994305274e-06,4.131605432594115450e-06,4.264883027193925626e-06,4.398160621793735801e-06,4.531438216393545977e-06,4.664715810993356153e-06,4.797993405593166329e-06,4.931271000192976505e-06,5.064548594792786680e-06,5.197826189392596856e-06,5.331103783992407032e-06,5.464381378592217208e-06,5.597658973192027384e-06,5.730936567791837559e-06,5.864214162391647735e-06,5.997491756991457911e-06,6.130769351591268087e-06,6.264046946191078263e-06,6.397324540790888438e-06,6.530602135390698614e-06,6.663879729990508790e-06,6.797157324590318966e-06,6.930434919190129142e-06,7.063712513789939317e-06,7.196990108389749493e-06,7.330267702989559669e-06,7.463545297589369845e-06,7.596822892189180021e-06,7.730100486788990196e-06,7.863378081388800372e-06,7.996655675988610548e-06,8.129933270588420724e-06,8.263210865188230900e-06,8.396488459788041075e-06 +0.000000000000000000e+00,1.339344448600485707e-07,2.678688897200971414e-07,4.018033345801457120e-07,5.357377794401942827e-07,6.696722243002428534e-07,8.036066691602914241e-07,9.375411140203399948e-07,1.071475558880388565e-06,1.205410003740437136e-06,1.339344448600485707e-06,1.473278893460534277e-06,1.607213338320582848e-06,1.741147783180631419e-06,1.875082228040679990e-06,2.009016672900728560e-06,2.142951117760777131e-06,2.276885562620825702e-06,2.410820007480874272e-06,2.544754452340922843e-06,2.678688897200971414e-06,2.812623342061019984e-06,2.946557786921068555e-06,3.080492231781117126e-06,3.214426676641165696e-06,3.348361121501214267e-06,3.482295566361262838e-06,3.616230011221311408e-06,3.750164456081359979e-06,3.884098900941408973e-06,4.018033345801457967e-06,4.151967790661506962e-06,4.285902235521555956e-06,4.419836680381604950e-06,4.553771125241653944e-06,4.687705570101702938e-06,4.821640014961751933e-06,4.955574459821800927e-06,5.089508904681849921e-06,5.223443349541898915e-06,5.357377794401947909e-06,5.491312239261996904e-06,5.625246684122045898e-06,5.759181128982094892e-06,5.893115573842143886e-06,6.027050018702192880e-06,6.160984463562241875e-06,6.294918908422290869e-06,6.428853353282339863e-06,6.562787798142388857e-06,6.696722243002437851e-06,6.830656687862486846e-06,6.964591132722535840e-06,7.098525577582584834e-06,7.232460022442633828e-06,7.366394467302682822e-06,7.500328912162731817e-06,7.634263357022780811e-06,7.768197801882829805e-06,7.902132246742878799e-06,8.036066691602927793e-06,8.170001136462976788e-06,8.303935581323025782e-06,8.437870026183074776e-06 +0.000000000000000000e+00,1.397280118628230235e-07,2.794560237256460471e-07,4.191840355884690971e-07,5.589120474512922000e-07,6.986400593141153030e-07,8.383680711769384059e-07,9.780960830397615089e-07,1.117824094902584612e-06,1.257552106765407715e-06,1.397280118628230818e-06,1.537008130491053921e-06,1.676736142353877024e-06,1.816464154216700127e-06,1.956192166079523441e-06,2.095920177942346544e-06,2.235648189805169647e-06,2.375376201667992750e-06,2.515104213530815853e-06,2.654832225393638956e-06,2.794560237256462059e-06,2.934288249119285162e-06,3.074016260982108265e-06,3.213744272844931368e-06,3.353472284707754471e-06,3.493200296570577574e-06,3.632928308433400677e-06,3.772656320296223780e-06,3.912384332159046883e-06,4.052112344021869986e-06,4.191840355884693088e-06,4.331568367747516191e-06,4.471296379610339294e-06,4.611024391473162397e-06,4.750752403335985500e-06,4.890480415198808603e-06,5.030208427061631706e-06,5.169936438924454809e-06,5.309664450787277912e-06,5.449392462650101015e-06,5.589120474512924118e-06,5.728848486375747221e-06,5.868576498238570324e-06,6.008304510101393427e-06,6.148032521964216530e-06,6.287760533827039633e-06,6.427488545689862736e-06,6.567216557552685839e-06,6.706944569415508942e-06,6.846672581278332045e-06,6.986400593141155147e-06,7.126128605003978250e-06,7.265856616866801353e-06,7.405584628729624456e-06,7.545312640592447559e-06,7.685040652455270662e-06,7.824768664318093765e-06,7.964496676180916868e-06,8.104224688043739971e-06,8.243952699906563074e-06,8.383680711769386177e-06,8.523408723632209280e-06,8.663136735495032383e-06,8.802864747357855486e-06 +0.000000000000000000e+00,1.375418912182982080e-07,2.750837824365964160e-07,4.126256736548946241e-07,5.501675648731928321e-07,6.877094560914909871e-07,8.252513473097891422e-07,9.627932385280872973e-07,1.100335129746385452e-06,1.237877020964683607e-06,1.375418912182981763e-06,1.512960803401279918e-06,1.650502694619578073e-06,1.788044585837876228e-06,1.925586477056174171e-06,2.063128368274471903e-06,2.200670259492769634e-06,2.338212150711067366e-06,2.475754041929365097e-06,2.613295933147662829e-06,2.750837824365960560e-06,2.888379715584258292e-06,3.025921606802556024e-06,3.163463498020853755e-06,3.301005389239151487e-06,3.438547280457449218e-06,3.576089171675746950e-06,3.713631062894044681e-06,3.851172954112342413e-06,3.988714845330640144e-06,4.126256736548937876e-06,4.263798627767235608e-06,4.401340518985533339e-06,4.538882410203831071e-06,4.676424301422128802e-06,4.813966192640426534e-06,4.951508083858724265e-06,5.089049975077021997e-06,5.226591866295319729e-06,5.364133757513617460e-06,5.501675648731915192e-06,5.639217539950212923e-06,5.776759431168510655e-06,5.914301322386808386e-06,6.051843213605106118e-06,6.189385104823403849e-06,6.326926996041701581e-06,6.464468887259999313e-06,6.602010778478297044e-06,6.739552669696594776e-06,6.877094560914892507e-06,7.014636452133190239e-06,7.152178343351487970e-06,7.289720234569785702e-06,7.427262125788083434e-06,7.564804017006381165e-06,7.702345908224679744e-06,7.839887799442977475e-06,7.977429690661275207e-06,8.114971581879572938e-06,8.252513473097870670e-06,8.390055364316168401e-06,8.527597255534466133e-06,8.665139146752763865e-06 +0.000000000000000000e+00,1.384672831360105810e-07,2.769345662720211620e-07,4.154018494080317695e-07,5.538691325440424299e-07,6.923364156800530903e-07,8.308036988160637508e-07,9.692709819520744112e-07,1.107738265088085072e-06,1.246205548224095732e-06,1.384672831360106392e-06,1.523140114496117053e-06,1.661607397632127713e-06,1.800074680768138374e-06,1.938541963904149246e-06,2.077009247040160330e-06,2.215476530176171414e-06,2.353943813312182498e-06,2.492411096448193582e-06,2.630878379584204666e-06,2.769345662720215750e-06,2.907812945856226833e-06,3.046280228992237917e-06,3.184747512128249001e-06,3.323214795264260085e-06,3.461682078400271169e-06,3.600149361536282253e-06,3.738616644672293337e-06,3.877083927808304421e-06,4.015551210944315505e-06,4.154018494080326589e-06,4.292485777216337673e-06,4.430953060352348757e-06,4.569420343488359841e-06,4.707887626624370925e-06,4.846354909760382009e-06,4.984822192896393093e-06,5.123289476032404176e-06,5.261756759168415260e-06,5.400224042304426344e-06,5.538691325440437428e-06,5.677158608576448512e-06,5.815625891712459596e-06,5.954093174848470680e-06,6.092560457984481764e-06,6.231027741120492848e-06,6.369495024256503932e-06,6.507962307392515016e-06,6.646429590528526100e-06,6.784896873664537184e-06,6.923364156800548268e-06,7.061831439936559352e-06,7.200298723072570436e-06,7.338766006208581519e-06,7.477233289344592603e-06,7.615700572480603687e-06,7.754167855616613924e-06,7.892635138752625008e-06,8.031102421888636092e-06,8.169569705024647176e-06,8.308036988160658260e-06,8.446504271296669344e-06,8.584971554432680428e-06,8.723438837568691512e-06 +0.000000000000000000e+00,1.397280118628164590e-07,2.794560237256329181e-07,4.191840355884494036e-07,5.589120474512659420e-07,6.986400593140824805e-07,8.383680711768990189e-07,9.780960830397155574e-07,1.117824094902532096e-06,1.257552106765348634e-06,1.397280118628165173e-06,1.537008130490981711e-06,1.676736142353798250e-06,1.816464154216614788e-06,1.956192166079431115e-06,2.095920177942247441e-06,2.235648189805063768e-06,2.375376201667880095e-06,2.515104213530696421e-06,2.654832225393512748e-06,2.794560237256329075e-06,2.934288249119145402e-06,3.074016260981961728e-06,3.213744272844778055e-06,3.353472284707594382e-06,3.493200296570410708e-06,3.632928308433227035e-06,3.772656320296043362e-06,3.912384332158859688e-06,4.052112344021676015e-06,4.191840355884492342e-06,4.331568367747308668e-06,4.471296379610124995e-06,4.611024391472941322e-06,4.750752403335757648e-06,4.890480415198573975e-06,5.030208427061390302e-06,5.169936438924206628e-06,5.309664450787022955e-06,5.449392462649839282e-06,5.589120474512655609e-06,5.728848486375471935e-06,5.868576498238288262e-06,6.008304510101104589e-06,6.148032521963920915e-06,6.287760533826737242e-06,6.427488545689553569e-06,6.567216557552369895e-06,6.706944569415186222e-06,6.846672581278002549e-06,6.986400593140818875e-06,7.126128605003635202e-06,7.265856616866451529e-06,7.405584628729267855e-06,7.545312640592084182e-06,7.685040652454901356e-06,7.824768664317717683e-06,7.964496676180534009e-06,8.104224688043350336e-06,8.243952699906166663e-06,8.383680711768982989e-06,8.523408723631799316e-06,8.663136735494615643e-06,8.802864747357431969e-06 +0.000000000000000000e+00,1.375418912182909553e-07,2.750837824365819106e-07,4.126256736548728659e-07,5.501675648731638212e-07,6.877094560914547765e-07,8.252513473097457318e-07,9.627932385280366871e-07,1.100335129746327642e-06,1.237877020964618598e-06,1.375418912182909553e-06,1.512960803401200508e-06,1.650502694619491464e-06,1.788044585837782419e-06,1.925586477056073374e-06,2.063128368274364329e-06,2.200670259492655285e-06,2.338212150710946240e-06,2.475754041929237195e-06,2.613295933147528151e-06,2.750837824365819106e-06,2.888379715584110061e-06,3.025921606802401017e-06,3.163463498020691972e-06,3.301005389238982927e-06,3.438547280457273882e-06,3.576089171675564838e-06,3.713631062893855793e-06,3.851172954112146748e-06,3.988714845330437704e-06,4.126256736548728659e-06,4.263798627767019614e-06,4.401340518985310570e-06,4.538882410203601525e-06,4.676424301421892480e-06,4.813966192640183435e-06,4.951508083858474391e-06,5.089049975076765346e-06,5.226591866295056301e-06,5.364133757513347257e-06,5.501675648731638212e-06,5.639217539949929167e-06,5.776759431168220122e-06,5.914301322386511078e-06,6.051843213604802033e-06,6.189385104823092988e-06,6.326926996041383944e-06,6.464468887259674899e-06,6.602010778477965854e-06,6.739552669696256810e-06,6.877094560914547765e-06,7.014636452132838720e-06,7.152178343351129675e-06,7.289720234569420631e-06,7.427262125787711586e-06,7.564804017006002541e-06,7.702345908224293497e-06,7.839887799442584452e-06,7.977429690660875407e-06,8.114971581879166363e-06,8.252513473097457318e-06,8.390055364315748273e-06,8.527597255534039228e-06,8.665139146752330184e-06 +0.000000000000000000e+00,1.384672831360031430e-07,2.769345662720062860e-07,4.154018494080094290e-07,5.538691325440125720e-07,6.923364156800157150e-07,8.308036988160188580e-07,9.692709819520221069e-07,1.107738265088025356e-06,1.246205548224028605e-06,1.384672831360031854e-06,1.523140114496035102e-06,1.661607397632038351e-06,1.800074680768041600e-06,1.938541963904045061e-06,2.077009247040048521e-06,2.215476530176051982e-06,2.353943813312055443e-06,2.492411096448058903e-06,2.630878379584062364e-06,2.769345662720065825e-06,2.907812945856069285e-06,3.046280228992072746e-06,3.184747512128076207e-06,3.323214795264079667e-06,3.461682078400083128e-06,3.600149361536086589e-06,3.738616644672090049e-06,3.877083927808093510e-06,4.015551210944096970e-06,4.154018494080100431e-06,4.292485777216103892e-06,4.430953060352107352e-06,4.569420343488110813e-06,4.707887626624114274e-06,4.846354909760117734e-06,4.984822192896121195e-06,5.123289476032124656e-06,5.261756759168128116e-06,5.400224042304131577e-06,5.538691325440135038e-06,5.677158608576138498e-06,5.815625891712141959e-06,5.954093174848145419e-06,6.092560457984148880e-06,6.231027741120152341e-06,6.369495024256155801e-06,6.507962307392159262e-06,6.646429590528162723e-06,6.784896873664166183e-06,6.923364156800169644e-06,7.061831439936173105e-06,7.200298723072176565e-06,7.338766006208180026e-06,7.477233289344183486e-06,7.615700572480186947e-06,7.754167855616190408e-06,7.892635138752194715e-06,8.031102421888199023e-06,8.169569705024203331e-06,8.308036988160207638e-06,8.446504271296211946e-06,8.584971554432216254e-06,8.723438837568220561e-06 +0.000000000000000000e+00,1.210336994454720875e-07,2.420673988909441750e-07,3.631010983364162624e-07,4.841347977818883499e-07,6.051684972273604903e-07,7.262021966728326308e-07,8.472358961183047712e-07,9.682695955637769116e-07,1.089303295009249052e-06,1.210336994454721192e-06,1.331370693900193333e-06,1.452404393345665473e-06,1.573438092791137614e-06,1.694471792236609754e-06,1.815505491682081895e-06,1.936539191127554247e-06,2.057572890573026387e-06,2.178606590018498528e-06,2.299640289463970668e-06,2.420673988909442808e-06,2.541707688354914949e-06,2.662741387800387089e-06,2.783775087245859230e-06,2.904808786691331370e-06,3.025842486136803510e-06,3.146876185582275651e-06,3.267909885027747791e-06,3.388943584473219932e-06,3.509977283918692072e-06,3.631010983364164213e-06,3.752044682809636353e-06,3.873078382255108493e-06,3.994112081700580634e-06,4.115145781146052774e-06,4.236179480591524915e-06,4.357213180036997055e-06,4.478246879482469196e-06,4.599280578927941336e-06,4.720314278373413476e-06,4.841347977818885617e-06,4.962381677264357757e-06,5.083415376709829898e-06,5.204449076155302038e-06,5.325482775600774178e-06,5.446516475046246319e-06,5.567550174491718459e-06,5.688583873937190600e-06,5.809617573382662740e-06,5.930651272828134881e-06,6.051684972273607021e-06,6.172718671719079161e-06,6.293752371164551302e-06,6.414786070610023442e-06,6.535819770055495583e-06,6.656853469500967723e-06,6.777887168946439863e-06,6.898920868391912004e-06,7.019954567837384144e-06,7.140988267282856285e-06,7.262021966728328425e-06,7.383055666173800566e-06,7.504089365619272706e-06,7.625123065064744846e-06 +0.000000000000000000e+00,1.210602769046487590e-07,2.421205538092975181e-07,3.631808307139462771e-07,4.842411076185950361e-07,6.053013845232437951e-07,7.263616614278925542e-07,8.474219383325413132e-07,9.684822152371900722e-07,1.089542492141838937e-06,1.210602769046487802e-06,1.331663045951136667e-06,1.452723322855785532e-06,1.573783599760434397e-06,1.694843876665083262e-06,1.815904153569732127e-06,1.936964430474380991e-06,2.058024707379029856e-06,2.179084984283678721e-06,2.300145261188327586e-06,2.421205538092976451e-06,2.542265814997625316e-06,2.663326091902274181e-06,2.784386368806923046e-06,2.905446645711571911e-06,3.026506922616220776e-06,3.147567199520869641e-06,3.268627476425518505e-06,3.389687753330167370e-06,3.510748030234816235e-06,3.631808307139465100e-06,3.752868584044113965e-06,3.873928860948762830e-06,3.994989137853411695e-06,4.116049414758060560e-06,4.237109691662709425e-06,4.358169968567358290e-06,4.479230245472007155e-06,4.600290522376656019e-06,4.721350799281304884e-06,4.842411076185953749e-06,4.963471353090602614e-06,5.084531629995251479e-06,5.205591906899900344e-06,5.326652183804549209e-06,5.447712460709198074e-06,5.568772737613846939e-06,5.689833014518495804e-06,5.810893291423144669e-06,5.931953568327793533e-06,6.053013845232442398e-06,6.174074122137091263e-06,6.295134399041740128e-06,6.416194675946388993e-06,6.537254952851037858e-06,6.658315229755686723e-06,6.779375506660335588e-06,6.900435783564984453e-06,7.021496060469633318e-06,7.142556337374282183e-06,7.263616614278931047e-06,7.384676891183579912e-06,7.505737168088228777e-06,7.626797444992877642e-06 +0.000000000000000000e+00,1.208721004513124330e-07,2.417442009026248659e-07,3.626163013539372989e-07,4.834884018052497319e-07,6.043605022565622178e-07,7.252326027078747037e-07,8.461047031591871896e-07,9.669768036104996755e-07,1.087848904061812161e-06,1.208721004513124647e-06,1.329593104964437133e-06,1.450465205415749619e-06,1.571337305867062105e-06,1.692209406318374591e-06,1.813081506769687077e-06,1.933953607220999775e-06,2.054825707672312472e-06,2.175697808123625170e-06,2.296569908574937868e-06,2.417442009026250565e-06,2.538314109477563263e-06,2.659186209928875961e-06,2.780058310380188658e-06,2.900930410831501356e-06,3.021802511282814054e-06,3.142674611734126751e-06,3.263546712185439449e-06,3.384418812636752147e-06,3.505290913088064844e-06,3.626163013539377542e-06,3.747035113990690240e-06,3.867907214442002937e-06,3.988779314893315635e-06,4.109651415344628333e-06,4.230523515795941030e-06,4.351395616247253728e-06,4.472267716698566426e-06,4.593139817149879123e-06,4.714011917601191821e-06,4.834884018052504519e-06,4.955756118503817216e-06,5.076628218955129914e-06,5.197500319406442612e-06,5.318372419857755309e-06,5.439244520309068007e-06,5.560116620760380705e-06,5.680988721211693402e-06,5.801860821663006100e-06,5.922732922114318798e-06,6.043605022565631495e-06,6.164477123016944193e-06,6.285349223468256891e-06,6.406221323919569588e-06,6.527093424370882286e-06,6.647965524822194984e-06,6.768837625273507681e-06,6.889709725724820379e-06,7.010581826176133077e-06,7.131453926627445774e-06,7.252326027078758472e-06,7.373198127530071170e-06,7.494070227981383867e-06,7.614942328432696565e-06 +0.000000000000000000e+00,1.210467743360717164e-07,2.420935486721434328e-07,3.631403230082151757e-07,4.841870973442869715e-07,6.052338716803587673e-07,7.262806460164305631e-07,8.473274203525023589e-07,9.683741946885741547e-07,1.089420969024645951e-06,1.210467743360717746e-06,1.331514517696789542e-06,1.452561292032861338e-06,1.573608066368933134e-06,1.694654840705004930e-06,1.815701615041076725e-06,1.936748389377148733e-06,2.057795163713220740e-06,2.178841938049292748e-06,2.299888712385364756e-06,2.420935486721436763e-06,2.541982261057508771e-06,2.663029035393580778e-06,2.784075809729652786e-06,2.905122584065724793e-06,3.026169358401796801e-06,3.147216132737868809e-06,3.268262907073940816e-06,3.389309681410012824e-06,3.510356455746084831e-06,3.631403230082156839e-06,3.752450004418228846e-06,3.873496778754300854e-06,3.994543553090372862e-06,4.115590327426444869e-06,4.236637101762516877e-06,4.357683876098588884e-06,4.478730650434660892e-06,4.599777424770732899e-06,4.720824199106804907e-06,4.841870973442876914e-06,4.962917747778948922e-06,5.083964522115020930e-06,5.205011296451092937e-06,5.326058070787164945e-06,5.447104845123236952e-06,5.568151619459308960e-06,5.689198393795380967e-06,5.810245168131452975e-06,5.931291942467524983e-06,6.052338716803596990e-06,6.173385491139668998e-06,6.294432265475741005e-06,6.415479039811813013e-06,6.536525814147885020e-06,6.657572588483957028e-06,6.778619362820029036e-06,6.899666137156101043e-06,7.020712911492173051e-06,7.141759685828245058e-06,7.262806460164317066e-06,7.383853234500389073e-06,7.504900008836461081e-06,7.625946783172533088e-06 +0.000000000000000000e+00,1.200398306369050374e-07,2.400796612738100748e-07,3.601194919107151387e-07,4.801593225476202555e-07,6.001991531845253723e-07,7.202389838214304891e-07,8.402788144583356059e-07,9.603186450952407227e-07,1.080358475732145734e-06,1.200398306369050745e-06,1.320438137005955756e-06,1.440477967642860766e-06,1.560517798279765777e-06,1.680557628916670788e-06,1.800597459553575799e-06,1.920637290190481022e-06,2.040677120827386245e-06,2.160716951464291467e-06,2.280756782101196690e-06,2.400796612738101913e-06,2.520836443375007135e-06,2.640876274011912358e-06,2.760916104648817581e-06,2.880955935285722803e-06,3.000995765922628026e-06,3.121035596559533249e-06,3.241075427196438471e-06,3.361115257833343694e-06,3.481155088470248917e-06,3.601194919107154140e-06,3.721234749744059362e-06,3.841274580380964585e-06,3.961314411017869384e-06,4.081354241654774183e-06,4.201394072291678982e-06,4.321433902928583782e-06,4.441473733565488581e-06,4.561513564202393380e-06,4.681553394839298179e-06,4.801593225476202978e-06,4.921633056113107777e-06,5.041672886750012577e-06,5.161712717386917376e-06,5.281752548023822175e-06,5.401792378660726974e-06,5.521832209297631773e-06,5.641872039934536573e-06,5.761911870571441372e-06,5.881951701208346171e-06,6.001991531845250970e-06,6.122031362482155769e-06,6.242071193119060568e-06,6.362111023755965368e-06,6.482150854392870167e-06,6.602190685029774966e-06,6.722230515666679765e-06,6.842270346303584564e-06,6.962310176940489363e-06,7.082350007577394163e-06,7.202389838214298962e-06,7.322429668851203761e-06,7.442469499488108560e-06,7.562509330125013359e-06 +0.000000000000000000e+00,1.192148986153122347e-07,2.384297972306244694e-07,3.576446958459366776e-07,4.768595944612488328e-07,5.960744930765609881e-07,7.152893916918731434e-07,8.345042903071852987e-07,9.537191889224974539e-07,1.072934087537809609e-06,1.192148986153121764e-06,1.311363884768433920e-06,1.430578783383746075e-06,1.549793681999058230e-06,1.669008580614370386e-06,1.788223479229682541e-06,1.907438377844994484e-06,2.026653276460306428e-06,2.145868175075618371e-06,2.265083073690930315e-06,2.384297972306242258e-06,2.503512870921554202e-06,2.622727769536866145e-06,2.741942668152178089e-06,2.861157566767490032e-06,2.980372465382801976e-06,3.099587363998113919e-06,3.218802262613425863e-06,3.338017161228737806e-06,3.457232059844049750e-06,3.576446958459361694e-06,3.695661857074673637e-06,3.814876755689985581e-06,3.934091654305297524e-06,4.053306552920609468e-06,4.172521451535921411e-06,4.291736350151233355e-06,4.410951248766545298e-06,4.530166147381857242e-06,4.649381045997169185e-06,4.768595944612481129e-06,4.887810843227793072e-06,5.007025741843105016e-06,5.126240640458416959e-06,5.245455539073728903e-06,5.364670437689040846e-06,5.483885336304352790e-06,5.603100234919664733e-06,5.722315133534976677e-06,5.841530032150288620e-06,5.960744930765600564e-06,6.079959829380912507e-06,6.199174727996224451e-06,6.318389626611536394e-06,6.437604525226848338e-06,6.556819423842160281e-06,6.676034322457472225e-06,6.795249221072784168e-06,6.914464119688096112e-06,7.033679018303408055e-06,7.152893916918719999e-06,7.272108815534031942e-06,7.391323714149343886e-06,7.510538612764655829e-06 +0.000000000000000000e+00,1.209164079411564821e-07,2.418328158823129643e-07,3.627492238234694200e-07,4.836656317646258227e-07,6.045820397057822254e-07,7.254984476469386281e-07,8.464148555880950309e-07,9.673312635292514336e-07,1.088247671470407836e-06,1.209164079411564239e-06,1.330080487352720642e-06,1.450996895293877045e-06,1.571913303235033447e-06,1.692829711176189850e-06,1.813746119117346253e-06,1.934662527058502444e-06,2.055578934999658423e-06,2.176495342940814402e-06,2.297411750881970381e-06,2.418328158823126361e-06,2.539244566764282340e-06,2.660160974705438319e-06,2.781077382646594298e-06,2.901993790587750277e-06,3.022910198528906257e-06,3.143826606470062236e-06,3.264743014411218215e-06,3.385659422352374194e-06,3.506575830293530173e-06,3.627492238234686153e-06,3.748408646175842132e-06,3.869325054116998111e-06,3.990241462058154090e-06,4.111157869999310070e-06,4.232074277940466049e-06,4.352990685881622028e-06,4.473907093822778007e-06,4.594823501763933986e-06,4.715739909705089966e-06,4.836656317646245945e-06,4.957572725587401924e-06,5.078489133528557903e-06,5.199405541469713882e-06,5.320321949410869862e-06,5.441238357352025841e-06,5.562154765293181820e-06,5.683071173234337799e-06,5.803987581175493779e-06,5.924903989116649758e-06,6.045820397057805737e-06,6.166736804998961716e-06,6.287653212940117695e-06,6.408569620881273675e-06,6.529486028822429654e-06,6.650402436763585633e-06,6.771318844704741612e-06,6.892235252645897591e-06,7.013151660587053571e-06,7.134068068528209550e-06,7.254984476469365529e-06,7.375900884410521508e-06,7.496817292351677488e-06,7.617733700292833467e-06 +0.000000000000000000e+00,1.198955942169906108e-07,2.397911884339812216e-07,3.596867826509718589e-07,4.795823768679625491e-07,5.994779710849532393e-07,7.193735653019439295e-07,8.392691595189346197e-07,9.591647537359253099e-07,1.079060347952916106e-06,1.198955942169906902e-06,1.318851536386897698e-06,1.438747130603888494e-06,1.558642724820879290e-06,1.678538319037870086e-06,1.798433913254860883e-06,1.918329507471851890e-06,2.038225101688842898e-06,2.158120695905833906e-06,2.278016290122824914e-06,2.397911884339815922e-06,2.517807478556806930e-06,2.637703072773797937e-06,2.757598666990788945e-06,2.877494261207779953e-06,2.997389855424770961e-06,3.117285449641761969e-06,3.237181043858752977e-06,3.357076638075743985e-06,3.476972232292734992e-06,3.596867826509726000e-06,3.716763420726717008e-06,3.836659014943708016e-06,3.956554609160699447e-06,4.076450203377690879e-06,4.196345797594682310e-06,4.316241391811673741e-06,4.436136986028665173e-06,4.556032580245656604e-06,4.675928174462648035e-06,4.795823768679639467e-06,4.915719362896630898e-06,5.035614957113622330e-06,5.155510551330613761e-06,5.275406145547605192e-06,5.395301739764596624e-06,5.515197333981588055e-06,5.635092928198579486e-06,5.754988522415570918e-06,5.874884116632562349e-06,5.994779710849553780e-06,6.114675305066545212e-06,6.234570899283536643e-06,6.354466493500528075e-06,6.474362087717519506e-06,6.594257681934510937e-06,6.714153276151502369e-06,6.834048870368493800e-06,6.953944464585485231e-06,7.073840058802476663e-06,7.193735653019468094e-06,7.313631247236459525e-06,7.433526841453450957e-06,7.553422435670442388e-06 +0.000000000000000000e+00,1.210336994454632466e-07,2.420673988909264931e-07,3.631010983363897397e-07,4.841347977818529863e-07,6.051684972273162329e-07,7.262021966727794794e-07,8.472358961182427260e-07,9.682695955637059726e-07,1.089303295009169219e-06,1.210336994454632466e-06,1.331370693900095712e-06,1.452404393345558959e-06,1.573438092791022205e-06,1.694471792236485452e-06,1.815505491681948699e-06,1.936539191127411945e-06,2.057572890572875192e-06,2.178606590018338438e-06,2.299640289463801685e-06,2.420673988909264931e-06,2.541707688354728178e-06,2.662741387800191425e-06,2.783775087245654671e-06,2.904808786691117918e-06,3.025842486136581164e-06,3.146876185582044411e-06,3.267909885027507657e-06,3.388943584472970904e-06,3.509977283918434151e-06,3.631010983363897397e-06,3.752044682809360644e-06,3.873078382254823890e-06,3.994112081700287560e-06,4.115145781145751231e-06,4.236179480591214901e-06,4.357213180036678571e-06,4.478246879482142241e-06,4.599280578927605911e-06,4.720314278373069581e-06,4.841347977818533251e-06,4.962381677263996921e-06,5.083415376709460591e-06,5.204449076154924261e-06,5.325482775600387931e-06,5.446516475045851602e-06,5.567550174491315272e-06,5.688583873936778942e-06,5.809617573382242612e-06,5.930651272827706282e-06,6.051684972273169952e-06,6.172718671718633622e-06,6.293752371164097292e-06,6.414786070609560962e-06,6.535819770055024632e-06,6.656853469500488302e-06,6.777887168945951973e-06,6.898920868391415643e-06,7.019954567836879313e-06,7.140988267282342983e-06,7.262021966727806653e-06,7.383055666173270323e-06,7.504089365618733993e-06,7.625123065064197663e-06 +0.000000000000000000e+00,1.210602769046388329e-07,2.421205538092776657e-07,3.631808307139165251e-07,4.842411076185554373e-07,6.053013845231943496e-07,7.263616614278332619e-07,8.474219383324721741e-07,9.684822152371110864e-07,1.089542492141749999e-06,1.210602769046388911e-06,1.331663045951027823e-06,1.452723322855666735e-06,1.573783599760305648e-06,1.694843876664944560e-06,1.815904153569583472e-06,1.936964430474222596e-06,2.058024707378861720e-06,2.179084984283500844e-06,2.300145261188139968e-06,2.421205538092779092e-06,2.542265814997418216e-06,2.663326091902057341e-06,2.784386368806696465e-06,2.905446645711335589e-06,3.026506922615974713e-06,3.147567199520613837e-06,3.268627476425252961e-06,3.389687753329892085e-06,3.510748030234531209e-06,3.631808307139170333e-06,3.752868584043809457e-06,3.873928860948448581e-06,3.994989137853087281e-06,4.116049414757725982e-06,4.237109691662364682e-06,4.358169968567003383e-06,4.479230245471642083e-06,4.600290522376280784e-06,4.721350799280919484e-06,4.842411076185558185e-06,4.963471353090196885e-06,5.084531629994835586e-06,5.205591906899474286e-06,5.326652183804112987e-06,5.447712460708751687e-06,5.568772737613390388e-06,5.689833014518029088e-06,5.810893291422667789e-06,5.931953568327306490e-06,6.053013845231945190e-06,6.174074122136583891e-06,6.295134399041222591e-06,6.416194675945861292e-06,6.537254952850499992e-06,6.658315229755138693e-06,6.779375506659777393e-06,6.900435783564416094e-06,7.021496060469054794e-06,7.142556337373693495e-06,7.263616614278332195e-06,7.384676891182970896e-06,7.505737168087609596e-06,7.626797444992248297e-06 +0.000000000000000000e+00,1.209164079411514794e-07,2.418328158823029587e-07,3.627492238234544381e-07,4.836656317646059174e-07,6.045820397057574497e-07,7.254984476469089820e-07,8.464148555880605143e-07,9.673312635292120466e-07,1.088247671470363579e-06,1.209164079411515111e-06,1.330080487352666643e-06,1.450996895293818176e-06,1.571913303234969708e-06,1.692829711176121240e-06,1.813746119117272773e-06,1.934662527058424517e-06,2.055578934999576261e-06,2.176495342940728005e-06,2.297411750881879749e-06,2.418328158823031493e-06,2.539244566764183237e-06,2.660160974705334981e-06,2.781077382646486725e-06,2.901993790587638469e-06,3.022910198528790213e-06,3.143826606469941957e-06,3.264743014411093701e-06,3.385659422352245445e-06,3.506575830293397189e-06,3.627492238234548933e-06,3.748408646175700677e-06,3.869325054116852421e-06,3.990241462058004166e-06,4.111157869999155910e-06,4.232074277940307654e-06,4.352990685881459398e-06,4.473907093822611142e-06,4.594823501763762886e-06,4.715739909704914630e-06,4.836656317646066374e-06,4.957572725587218118e-06,5.078489133528369862e-06,5.199405541469521606e-06,5.320321949410673350e-06,5.441238357351825094e-06,5.562154765292976838e-06,5.683071173234128582e-06,5.803987581175280326e-06,5.924903989116432070e-06,6.045820397057583814e-06,6.166736804998735558e-06,6.287653212939887302e-06,6.408569620881039047e-06,6.529486028822190791e-06,6.650402436763342535e-06,6.771318844704494279e-06,6.892235252645646023e-06,7.013151660586797767e-06,7.134068068527949511e-06,7.254984476469101255e-06,7.375900884410252999e-06,7.496817292351404743e-06,7.617733700292556487e-06 +0.000000000000000000e+00,1.210467743360631137e-07,2.420935486721262274e-07,3.631403230081893412e-07,4.841870973442524549e-07,6.052338716803155686e-07,7.262806460163786823e-07,8.473274203524417960e-07,9.683741946885049098e-07,1.089420969024568023e-06,1.210467743360631137e-06,1.331514517696694251e-06,1.452561292032757365e-06,1.573608066368820478e-06,1.694654840704883592e-06,1.815701615040946706e-06,1.936748389377009820e-06,2.057795163713072933e-06,2.178841938049136047e-06,2.299888712385199161e-06,2.420935486721262274e-06,2.541982261057325388e-06,2.663029035393388502e-06,2.784075809729451616e-06,2.905122584065514729e-06,3.026169358401577843e-06,3.147216132737640957e-06,3.268262907073704070e-06,3.389309681409767184e-06,3.510356455745830298e-06,3.631403230081893412e-06,3.752450004417956525e-06,3.873496778754019639e-06,3.994543553090083176e-06,4.115590327426146713e-06,4.236637101762210251e-06,4.357683876098273788e-06,4.478730650434337325e-06,4.599777424770400862e-06,4.720824199106464400e-06,4.841870973442527937e-06,4.962917747778591474e-06,5.083964522114655011e-06,5.205011296450718549e-06,5.326058070786782086e-06,5.447104845122845623e-06,5.568151619458909160e-06,5.689198393794972698e-06,5.810245168131036235e-06,5.931291942467099772e-06,6.052338716803163309e-06,6.173385491139226847e-06,6.294432265475290384e-06,6.415479039811353921e-06,6.536525814147417458e-06,6.657572588483480995e-06,6.778619362819544533e-06,6.899666137155608070e-06,7.020712911491671607e-06,7.141759685827735144e-06,7.262806460163798682e-06,7.383853234499862219e-06,7.504900008835925756e-06,7.625946783171989293e-06 +0.000000000000000000e+00,1.200398306368958789e-07,2.400796612737917577e-07,3.601194919106876101e-07,4.801593225475834095e-07,6.001991531844792090e-07,7.202389838213750084e-07,8.402788144582708079e-07,9.603186450951666073e-07,1.080358475732062301e-06,1.200398306368957994e-06,1.320438137005853688e-06,1.440477967642749382e-06,1.560517798279645075e-06,1.680557628916540769e-06,1.800597459553436462e-06,1.920637290190331944e-06,2.040677120827227426e-06,2.160716951464122908e-06,2.280756782101018390e-06,2.400796612737913871e-06,2.520836443374809353e-06,2.640876274011704835e-06,2.760916104648600317e-06,2.880955935285495799e-06,3.000995765922391280e-06,3.121035596559286762e-06,3.241075427196182244e-06,3.361115257833077726e-06,3.481155088469973208e-06,3.601194919106868689e-06,3.721234749743764171e-06,3.841274580380659653e-06,3.961314411017555135e-06,4.081354241654450617e-06,4.201394072291346098e-06,4.321433902928241580e-06,4.441473733565137062e-06,4.561513564202032544e-06,4.681553394838928026e-06,4.801593225475823508e-06,4.921633056112718989e-06,5.041672886749614471e-06,5.161712717386509953e-06,5.281752548023405435e-06,5.401792378660300917e-06,5.521832209297196398e-06,5.641872039934091880e-06,5.761911870570987362e-06,5.881951701207882844e-06,6.001991531844778326e-06,6.122031362481673807e-06,6.242071193118569289e-06,6.362111023755464771e-06,6.482150854392360253e-06,6.602190685029255735e-06,6.722230515666151216e-06,6.842270346303046698e-06,6.962310176939942180e-06,7.082350007576837662e-06,7.202389838213733144e-06,7.322429668850628626e-06,7.442469499487524107e-06,7.562509330124419589e-06 +0.000000000000000000e+00,1.192148986153038967e-07,2.384297972306077934e-07,3.576446958459116901e-07,4.768595944612155868e-07,5.960744930765194835e-07,7.152893916918233802e-07,8.345042903071272769e-07,9.537191889224311736e-07,1.072934087537735070e-06,1.192148986153038967e-06,1.311363884768342864e-06,1.430578783383646760e-06,1.549793681998950657e-06,1.669008580614254554e-06,1.788223479229558450e-06,1.907438377844862347e-06,2.026653276460166244e-06,2.145868175075470141e-06,2.265083073690774037e-06,2.384297972306077934e-06,2.503512870921381831e-06,2.622727769536685727e-06,2.741942668151989624e-06,2.861157566767293521e-06,2.980372465382597417e-06,3.099587363997901314e-06,3.218802262613205211e-06,3.338017161228509108e-06,3.457232059843813004e-06,3.576446958459116901e-06,3.695661857074420798e-06,3.814876755689724694e-06,3.934091654305029015e-06,4.053306552920333335e-06,4.172521451535637655e-06,4.291736350150941975e-06,4.410951248766246295e-06,4.530166147381550616e-06,4.649381045996854936e-06,4.768595944612159256e-06,4.887810843227463576e-06,5.007025741842767897e-06,5.126240640458072217e-06,5.245455539073376537e-06,5.364670437688680857e-06,5.483885336303985177e-06,5.603100234919289498e-06,5.722315133534593818e-06,5.841530032149898138e-06,5.960744930765202458e-06,6.079959829380506778e-06,6.199174727995811099e-06,6.318389626611115419e-06,6.437604525226419739e-06,6.556819423841724059e-06,6.676034322457028380e-06,6.795249221072332700e-06,6.914464119687637020e-06,7.033679018302941340e-06,7.152893916918245660e-06,7.272108815533549981e-06,7.391323714148854301e-06,7.510538612764158621e-06 +0.000000000000000000e+00,1.220758921996104536e-07,2.441517843992209072e-07,3.662276765988313344e-07,4.883035687984417086e-07,6.103794609980520828e-07,7.324553531976624570e-07,8.545312453972728312e-07,9.766071375968832055e-07,1.098683029796493580e-06,1.220758921996103954e-06,1.342834814195714328e-06,1.464910706395324702e-06,1.586986598594935077e-06,1.709062490794545451e-06,1.831138382994155825e-06,1.953214275193765987e-06,2.075290167393376362e-06,2.197366059592986736e-06,2.319441951792597110e-06,2.441517843992207484e-06,2.563593736191817858e-06,2.685669628391428233e-06,2.807745520591038607e-06,2.929821412790648981e-06,3.051897304990259355e-06,3.173973197189869730e-06,3.296049089389480104e-06,3.418124981589090478e-06,3.540200873788700852e-06,3.662276765988311226e-06,3.784352658187921601e-06,3.906428550387531975e-06,4.028504442587142349e-06,4.150580334786752723e-06,4.272656226986363097e-06,4.394732119185973472e-06,4.516808011385583846e-06,4.638883903585194220e-06,4.760959795784804594e-06,4.883035687984414969e-06,5.005111580184025343e-06,5.127187472383635717e-06,5.249263364583246091e-06,5.371339256782856465e-06,5.493415148982466840e-06,5.615491041182077214e-06,5.737566933381687588e-06,5.859642825581297962e-06,5.981718717780908336e-06,6.103794609980518711e-06,6.225870502180129085e-06,6.347946394379739459e-06,6.470022286579349833e-06,6.592098178778960207e-06,6.714174070978570582e-06,6.836249963178180956e-06,6.958325855377791330e-06,7.080401747577401704e-06,7.202477639777012079e-06,7.324553531976622453e-06,7.446629424176232827e-06,7.568705316375843201e-06,7.690781208575453575e-06 +0.000000000000000000e+00,1.213980681911258854e-07,2.427961363822517708e-07,3.641942045733776562e-07,4.855922727645035416e-07,6.069903409556294270e-07,7.283884091467553124e-07,8.497864773378811978e-07,9.711845455290070832e-07,1.092582613720132863e-06,1.213980681911258642e-06,1.335378750102384422e-06,1.456776818293510201e-06,1.578174886484635981e-06,1.699572954675761760e-06,1.820971022866887540e-06,1.942369091058013319e-06,2.063767159249139099e-06,2.185165227440264878e-06,2.306563295631390658e-06,2.427961363822516437e-06,2.549359432013642217e-06,2.670757500204767996e-06,2.792155568395893776e-06,2.913553636587019555e-06,3.034951704778145335e-06,3.156349772969271115e-06,3.277747841160396894e-06,3.399145909351522674e-06,3.520543977542648453e-06,3.641942045733774233e-06,3.763340113924900012e-06,3.884738182116025792e-06,4.006136250307151571e-06,4.127534318498277351e-06,4.248932386689403130e-06,4.370330454880528910e-06,4.491728523071654689e-06,4.613126591262780469e-06,4.734524659453906248e-06,4.855922727645032028e-06,4.977320795836157807e-06,5.098718864027283587e-06,5.220116932218409366e-06,5.341515000409535146e-06,5.462913068600660925e-06,5.584311136791786705e-06,5.705709204982912484e-06,5.827107273174038264e-06,5.948505341365164043e-06,6.069903409556289823e-06,6.191301477747415602e-06,6.312699545938541382e-06,6.434097614129667162e-06,6.555495682320792941e-06,6.676893750511918721e-06,6.798291818703044500e-06,6.919689886894170280e-06,7.041087955085296059e-06,7.162486023276421839e-06,7.283884091467547618e-06,7.405282159658673398e-06,7.526680227849799177e-06,7.648078296040924110e-06 +0.000000000000000000e+00,1.201476597733468566e-07,2.402953195466937133e-07,3.604429793200405699e-07,4.805906390933874265e-07,6.007382988667343361e-07,7.208859586400812457e-07,8.410336184134281553e-07,9.611812781867750649e-07,1.081328937960121974e-06,1.201476597733468884e-06,1.321624257506815794e-06,1.441771917280162703e-06,1.561919577053509613e-06,1.682067236826856522e-06,1.802214896600203432e-06,1.922362556373550553e-06,2.042510216146897675e-06,2.162657875920244796e-06,2.282805535693591917e-06,2.402953195466939039e-06,2.523100855240286160e-06,2.643248515013633281e-06,2.763396174786980403e-06,2.883543834560327524e-06,3.003691494333674645e-06,3.123839154107021767e-06,3.243986813880368888e-06,3.364134473653716009e-06,3.484282133427063131e-06,3.604429793200410252e-06,3.724577452973757373e-06,3.844725112747104495e-06,3.964872772520451616e-06,4.085020432293798737e-06,4.205168092067145859e-06,4.325315751840492980e-06,4.445463411613840101e-06,4.565611071387187223e-06,4.685758731160534344e-06,4.805906390933881465e-06,4.926054050707228587e-06,5.046201710480575708e-06,5.166349370253922829e-06,5.286497030027269951e-06,5.406644689800617072e-06,5.526792349573964193e-06,5.646940009347311315e-06,5.767087669120658436e-06,5.887235328894005557e-06,6.007382988667352679e-06,6.127530648440699800e-06,6.247678308214046921e-06,6.367825967987394043e-06,6.487973627760741164e-06,6.608121287534088285e-06,6.728268947307435407e-06,6.848416607080782528e-06,6.968564266854129649e-06,7.088711926627476771e-06,7.208859586400823892e-06,7.329007246174171013e-06,7.449154905947518135e-06,7.569302565720865256e-06 +0.000000000000000000e+00,1.220758921996012421e-07,2.441517843992024843e-07,3.662276765988036999e-07,4.883035687984048627e-07,6.103794609980060254e-07,7.324553531976071881e-07,8.545312453972083509e-07,9.766071375968095136e-07,1.098683029796410782e-06,1.220758921996012051e-06,1.342834814195613319e-06,1.464910706395214588e-06,1.586986598594815857e-06,1.709062490794417125e-06,1.831138382994018394e-06,1.953214275193619451e-06,2.075290167393220508e-06,2.197366059592821564e-06,2.319441951792422621e-06,2.441517843992023678e-06,2.563593736191624735e-06,2.685669628391225792e-06,2.807745520590826849e-06,2.929821412790427906e-06,3.051897304990028962e-06,3.173973197189630019e-06,3.296049089389231076e-06,3.418124981588832133e-06,3.540200873788433190e-06,3.662276765988034247e-06,3.784352658187635303e-06,3.906428550387236360e-06,4.028504442586837417e-06,4.150580334786438474e-06,4.272656226986039531e-06,4.394732119185640588e-06,4.516808011385241645e-06,4.638883903584842701e-06,4.760959795784443758e-06,4.883035687984044815e-06,5.005111580183645872e-06,5.127187472383246929e-06,5.249263364582847986e-06,5.371339256782449043e-06,5.493415148982050099e-06,5.615491041181651156e-06,5.737566933381252213e-06,5.859642825580853270e-06,5.981718717780454327e-06,6.103794609980055384e-06,6.225870502179656440e-06,6.347946394379257497e-06,6.470022286578858554e-06,6.592098178778459611e-06,6.714174070978060668e-06,6.836249963177661725e-06,6.958325855377262782e-06,7.080401747576863838e-06,7.202477639776464895e-06,7.324553531976065952e-06,7.446629424175667009e-06,7.568705316375268066e-06,7.690781208574869123e-06 +0.000000000000000000e+00,1.213980681911171504e-07,2.427961363822343007e-07,3.641942045733514511e-07,4.855922727644686015e-07,6.069903409555856989e-07,7.283884091467027963e-07,8.497864773378198938e-07,9.711845455289369912e-07,1.092582613720054089e-06,1.213980681911171186e-06,1.335378750102288284e-06,1.456776818293405381e-06,1.578174886484522478e-06,1.699572954675639576e-06,1.820971022866756673e-06,1.942369091057873559e-06,2.063767159248990445e-06,2.185165227440107330e-06,2.306563295631224216e-06,2.427961363822341102e-06,2.549359432013457987e-06,2.670757500204574873e-06,2.792155568395691759e-06,2.913553636586808644e-06,3.034951704777925530e-06,3.156349772969042416e-06,3.277747841160159301e-06,3.399145909351276187e-06,3.520543977542393073e-06,3.641942045733509958e-06,3.763340113924626844e-06,3.884738182115743730e-06,4.006136250306861039e-06,4.127534318497978348e-06,4.248932386689095657e-06,4.370330454880212966e-06,4.491728523071330276e-06,4.613126591262447585e-06,4.734524659453564894e-06,4.855922727644682203e-06,4.977320795835799512e-06,5.098718864026916822e-06,5.220116932218034131e-06,5.341515000409151440e-06,5.462913068600268749e-06,5.584311136791386058e-06,5.705709204982503368e-06,5.827107273173620677e-06,5.948505341364737986e-06,6.069903409555855295e-06,6.191301477746972604e-06,6.312699545938089913e-06,6.434097614129207223e-06,6.555495682320324532e-06,6.676893750511441841e-06,6.798291818702559150e-06,6.919689886893676459e-06,7.041087955084793769e-06,7.162486023275911078e-06,7.283884091467028387e-06,7.405282159658145696e-06,7.526680227849263005e-06,7.648078296040380315e-06 +0.000000000000000000e+00,1.201476597733375128e-07,2.402953195466750256e-07,3.604429793200125649e-07,4.805906390933501571e-07,6.007382988666877493e-07,7.208859586400253415e-07,8.410336184133629337e-07,9.611812781867005260e-07,1.081328937960038118e-06,1.201476597733375710e-06,1.321624257506713303e-06,1.441771917280050895e-06,1.561919577053388487e-06,1.682067236826726079e-06,1.802214896600063671e-06,1.922362556373401475e-06,2.042510216146739279e-06,2.162657875920077083e-06,2.282805535693414887e-06,2.402953195466752691e-06,2.523100855240090495e-06,2.643248515013428299e-06,2.763396174786766103e-06,2.883543834560103907e-06,3.003691494333441711e-06,3.123839154106779515e-06,3.243986813880117319e-06,3.364134473653455123e-06,3.484282133426792927e-06,3.604429793200130731e-06,3.724577452973468535e-06,3.844725112746806339e-06,3.964872772520144143e-06,4.085020432293481947e-06,4.205168092066819751e-06,4.325315751840157555e-06,4.445463411613495359e-06,4.565611071386833163e-06,4.685758731160170967e-06,4.805906390933508771e-06,4.926054050706846575e-06,5.046201710480184379e-06,5.166349370253522183e-06,5.286497030026859987e-06,5.406644689800197791e-06,5.526792349573535595e-06,5.646940009346873399e-06,5.767087669120211203e-06,5.887235328893549007e-06,6.007382988666886810e-06,6.127530648440224614e-06,6.247678308213562418e-06,6.367825967986900222e-06,6.487973627760238026e-06,6.608121287533575830e-06,6.728268947306913634e-06,6.848416607080251438e-06,6.968564266853589242e-06,7.088711926626927046e-06,7.208859586400264850e-06,7.329007246173602654e-06,7.449154905946940458e-06,7.569302565720278262e-06 +0.000000000000000000e+00,1.242256816431585202e-07,2.484513632863170405e-07,3.726770449294755607e-07,4.969027265726340809e-07,6.211284082157926541e-07,7.453540898589512273e-07,8.695797715021098004e-07,9.938054531452683736e-07,1.118031134788426947e-06,1.242256816431585520e-06,1.366482498074744093e-06,1.490708179717902666e-06,1.614933861361061239e-06,1.739159543004219813e-06,1.863385224647378386e-06,1.987610906290537171e-06,2.111836587933695956e-06,2.236062269576854741e-06,2.360287951220013525e-06,2.484513632863172310e-06,2.608739314506331095e-06,2.732964996149489880e-06,2.857190677792648665e-06,2.981416359435807450e-06,3.105642041078966235e-06,3.229867722722125020e-06,3.354093404365283805e-06,3.478319086008442590e-06,3.602544767651601375e-06,3.726770449294760160e-06,3.850996130937918945e-06,3.975221812581077730e-06,4.099447494224236514e-06,4.223673175867395299e-06,4.347898857510554084e-06,4.472124539153712869e-06,4.596350220796871654e-06,4.720575902440030439e-06,4.844801584083189224e-06,4.969027265726348009e-06,5.093252947369506794e-06,5.217478629012665579e-06,5.341704310655824364e-06,5.465929992298983149e-06,5.590155673942141934e-06,5.714381355585300718e-06,5.838607037228459503e-06,5.962832718871618288e-06,6.087058400514777073e-06,6.211284082157935858e-06,6.335509763801094643e-06,6.459735445444253428e-06,6.583961127087412213e-06,6.708186808730570998e-06,6.832412490373729783e-06,6.956638172016888568e-06,7.080863853660047353e-06,7.205089535303206138e-06,7.329315216946364923e-06,7.453540898589523707e-06,7.577766580232682492e-06,7.701992261875841277e-06,7.826217943519000062e-06 +0.000000000000000000e+00,1.230386109039967159e-07,2.460772218079934318e-07,3.691158327119901477e-07,4.921544436159868635e-07,6.151930545199836324e-07,7.382316654239804012e-07,8.612702763279771700e-07,9.843088872319739388e-07,1.107347498135970708e-06,1.230386109039967476e-06,1.353424719943964245e-06,1.476463330847961014e-06,1.599501941751957783e-06,1.722540552655954552e-06,1.845579163559951321e-06,1.968617774463948301e-06,2.091656385367945494e-06,2.214694996271942686e-06,2.337733607175939878e-06,2.460772218079937071e-06,2.583810828983934263e-06,2.706849439887931455e-06,2.829888050791928648e-06,2.952926661695925840e-06,3.075965272599923032e-06,3.199003883503920225e-06,3.322042494407917417e-06,3.445081105311914609e-06,3.568119716215911802e-06,3.691158327119908994e-06,3.814196938023906186e-06,3.937235548927903379e-06,4.060274159831900571e-06,4.183312770735897763e-06,4.306351381639894956e-06,4.429389992543892148e-06,4.552428603447889340e-06,4.675467214351886533e-06,4.798505825255883725e-06,4.921544436159880917e-06,5.044583047063878110e-06,5.167621657967875302e-06,5.290660268871872494e-06,5.413698879775869687e-06,5.536737490679866879e-06,5.659776101583864071e-06,5.782814712487861264e-06,5.905853323391858456e-06,6.028891934295855648e-06,6.151930545199852841e-06,6.274969156103850033e-06,6.398007767007847225e-06,6.521046377911844418e-06,6.644084988815841610e-06,6.767123599719838802e-06,6.890162210623835995e-06,7.013200821527833187e-06,7.136239432431830379e-06,7.259278043335827572e-06,7.382316654239824764e-06,7.505355265143821956e-06,7.628393876047819149e-06,7.751432486951817188e-06 +0.000000000000000000e+00,1.224020858278150175e-07,2.448041716556300350e-07,3.672062574834450525e-07,4.896083433112600700e-07,6.120104291390750345e-07,7.344125149668899991e-07,8.568146007947049636e-07,9.792166866225199282e-07,1.101618772450334893e-06,1.224020858278149857e-06,1.346422944105964822e-06,1.468825029933779786e-06,1.591227115761594751e-06,1.713629201589409716e-06,1.836031287417224680e-06,1.958433373245039433e-06,2.080835459072854186e-06,2.203237544900668938e-06,2.325639630728483691e-06,2.448041716556298444e-06,2.570443802384113197e-06,2.692845888211927950e-06,2.815247974039742702e-06,2.937650059867557455e-06,3.060052145695372208e-06,3.182454231523186961e-06,3.304856317351001714e-06,3.427258403178816466e-06,3.549660489006631219e-06,3.672062574834445972e-06,3.794464660662260725e-06,3.916866746490075478e-06,4.039268832317890654e-06,4.161670918145705830e-06,4.284073003973521007e-06,4.406475089801336183e-06,4.528877175629151359e-06,4.651279261456966536e-06,4.773681347284781712e-06,4.896083433112596888e-06,5.018485518940412064e-06,5.140887604768227241e-06,5.263289690596042417e-06,5.385691776423857593e-06,5.508093862251672770e-06,5.630495948079487946e-06,5.752898033907303122e-06,5.875300119735118299e-06,5.997702205562933475e-06,6.120104291390748651e-06,6.242506377218563828e-06,6.364908463046379004e-06,6.487310548874194180e-06,6.609712634702009357e-06,6.732114720529824533e-06,6.854516806357639709e-06,6.976918892185454885e-06,7.099320978013270062e-06,7.221723063841085238e-06,7.344125149668900414e-06,7.466527235496715591e-06,7.588929321324530767e-06,7.711331407152345943e-06 +0.000000000000000000e+00,1.242256816431481705e-07,2.484513632862963411e-07,3.726770449294444852e-07,4.969027265725925763e-07,6.211284082157406674e-07,7.453540898588887586e-07,8.695797715020368497e-07,9.938054531451849408e-07,1.118031134788332926e-06,1.242256816431480911e-06,1.366482498074628897e-06,1.490708179717776882e-06,1.614933861360924867e-06,1.739159543004072852e-06,1.863385224647220838e-06,1.987610906290368611e-06,2.111836587933516385e-06,2.236062269576664158e-06,2.360287951219811932e-06,2.484513632862959705e-06,2.608739314506107479e-06,2.732964996149255252e-06,2.857190677792403026e-06,2.981416359435550799e-06,3.105642041078698573e-06,3.229867722721846346e-06,3.354093404364994120e-06,3.478319086008141893e-06,3.602544767651289667e-06,3.726770449294437440e-06,3.850996130937585214e-06,3.975221812580732987e-06,4.099447494223880761e-06,4.223673175867028534e-06,4.347898857510176308e-06,4.472124539153324081e-06,4.596350220796471855e-06,4.720575902439619628e-06,4.844801584082767402e-06,4.969027265725915175e-06,5.093252947369062949e-06,5.217478629012210722e-06,5.341704310655358496e-06,5.465929992298506269e-06,5.590155673941654043e-06,5.714381355584801816e-06,5.838607037227949590e-06,5.962832718871097363e-06,6.087058400514245137e-06,6.211284082157392910e-06,6.335509763800540684e-06,6.459735445443688457e-06,6.583961127086836231e-06,6.708186808729984004e-06,6.832412490373131778e-06,6.956638172016279551e-06,7.080863853659427325e-06,7.205089535302575098e-06,7.329315216945722872e-06,7.453540898588870645e-06,7.577766580232018419e-06,7.701992261875167039e-06,7.826217943518315660e-06 +0.000000000000000000e+00,1.230386109039866309e-07,2.460772218079732618e-07,3.691158327119599192e-07,4.921544436159466295e-07,6.151930545199333398e-07,7.382316654239200501e-07,8.612702763279067604e-07,9.843088872318934707e-07,1.107347498135880287e-06,1.230386109039867103e-06,1.353424719943853919e-06,1.476463330847840735e-06,1.599501941751827552e-06,1.722540552655814368e-06,1.845579163559801184e-06,1.968617774463788212e-06,2.091656385367775240e-06,2.214694996271762268e-06,2.337733607175749296e-06,2.460772218079736324e-06,2.583810828983723352e-06,2.706849439887710380e-06,2.829888050791697408e-06,2.952926661695684436e-06,3.075965272599671463e-06,3.199003883503658491e-06,3.322042494407645519e-06,3.445081105311632547e-06,3.568119716215619575e-06,3.691158327119606603e-06,3.814196938023593631e-06,3.937235548927580659e-06,4.060274159831567687e-06,4.183312770735554715e-06,4.306351381639541743e-06,4.429389992543528771e-06,4.552428603447515799e-06,4.675467214351502827e-06,4.798505825255489855e-06,4.921544436159476883e-06,5.044583047063463911e-06,5.167621657967450939e-06,5.290660268871437966e-06,5.413698879775424994e-06,5.536737490679412022e-06,5.659776101583399050e-06,5.782814712487386078e-06,5.905853323391373106e-06,6.028891934295360134e-06,6.151930545199347162e-06,6.274969156103334190e-06,6.398007767007321218e-06,6.521046377911308246e-06,6.644084988815295274e-06,6.767123599719282302e-06,6.890162210623269330e-06,7.013200821527256358e-06,7.136239432431243386e-06,7.259278043335230414e-06,7.382316654239217442e-06,7.505355265143204469e-06,7.628393876047191497e-06,7.751432486951178525e-06 +0.000000000000000000e+00,1.224020858278054090e-07,2.448041716556108179e-07,3.672062574834162004e-07,4.896083433112215300e-07,6.120104291390268595e-07,7.344125149668321891e-07,8.568146007946375186e-07,9.792166866224428482e-07,1.101618772450248072e-06,1.224020858278053296e-06,1.346422944105858519e-06,1.468825029933663743e-06,1.591227115761468967e-06,1.713629201589274190e-06,1.836031287417079414e-06,1.958433373244884426e-06,2.080835459072689438e-06,2.203237544900494450e-06,2.325639630728299462e-06,2.448041716556104474e-06,2.570443802383909485e-06,2.692845888211714497e-06,2.815247974039519509e-06,2.937650059867324521e-06,3.060052145695129533e-06,3.182454231522934545e-06,3.304856317350739557e-06,3.427258403178544569e-06,3.549660489006349581e-06,3.672062574834154593e-06,3.794464660661959605e-06,3.916866746489764617e-06,4.039268832317569628e-06,4.161670918145374640e-06,4.284073003973179652e-06,4.406475089800984664e-06,4.528877175628789676e-06,4.651279261456594688e-06,4.773681347284399700e-06,4.896083433112204712e-06,5.018485518940009724e-06,5.140887604767814736e-06,5.263289690595619748e-06,5.385691776423424760e-06,5.508093862251229771e-06,5.630495948079034783e-06,5.752898033906839795e-06,5.875300119734644807e-06,5.997702205562449819e-06,6.120104291390254831e-06,6.242506377218059843e-06,6.364908463045864855e-06,6.487310548873669867e-06,6.609712634701474879e-06,6.732114720529279891e-06,6.854516806357084903e-06,6.976918892184889914e-06,7.099320978012694926e-06,7.221723063840499938e-06,7.344125149668304950e-06,7.466527235496109962e-06,7.588929321323914974e-06,7.711331407151719139e-06 +0.000000000000000000e+00,1.271121190147808459e-07,2.542242380295616917e-07,3.813363570443425111e-07,5.084484760591232776e-07,6.355605950739040440e-07,7.626727140886848105e-07,8.897848331034655770e-07,1.016896952118246343e-06,1.144009071133027110e-06,1.271121190147807876e-06,1.398233309162588643e-06,1.525345428177369409e-06,1.652457547192150176e-06,1.779569666206930942e-06,1.906681785221711709e-06,2.033793904236492263e-06,2.160906023251272606e-06,2.288018142266052949e-06,2.415130261280833292e-06,2.542242380295613635e-06,2.669354499310393978e-06,2.796466618325174321e-06,2.923578737339954664e-06,3.050690856354735007e-06,3.177802975369515350e-06,3.304915094384295693e-06,3.432027213399076036e-06,3.559139332413856379e-06,3.686251451428636722e-06,3.813363570443417064e-06,3.940475689458197407e-06,4.067587808472977750e-06,4.194699927487758093e-06,4.321812046502538436e-06,4.448924165517318779e-06,4.576036284532099122e-06,4.703148403546879465e-06,4.830260522561659808e-06,4.957372641576440151e-06,5.084484760591220494e-06,5.211596879606000837e-06,5.338708998620781180e-06,5.465821117635561523e-06,5.592933236650341866e-06,5.720045355665122209e-06,5.847157474679902552e-06,5.974269593694682894e-06,6.101381712709463237e-06,6.228493831724243580e-06,6.355605950739023923e-06,6.482718069753804266e-06,6.609830188768584609e-06,6.736942307783364952e-06,6.864054426798145295e-06,6.991166545812925638e-06,7.118278664827705981e-06,7.245390783842486324e-06,7.372502902857266667e-06,7.499615021872047010e-06,7.626727140886827353e-06,7.753839259901607696e-06,7.880951378916388039e-06,8.008063497931168382e-06 +0.000000000000000000e+00,1.255971967748223356e-07,2.511943935496446711e-07,3.767915903244670067e-07,5.023887870992893423e-07,6.279859838741116778e-07,7.535831806489340134e-07,8.791803774237563489e-07,1.004777574198578685e-06,1.130374770973400914e-06,1.255971967748223144e-06,1.381569164523045374e-06,1.507166361297867603e-06,1.632763558072689833e-06,1.758360754847512063e-06,1.883957951622334292e-06,2.009555148397156522e-06,2.135152345171978752e-06,2.260749541946800981e-06,2.386346738721623211e-06,2.511943935496445441e-06,2.637541132271267670e-06,2.763138329046089900e-06,2.888735525820912130e-06,3.014332722595734359e-06,3.139929919370556589e-06,3.265527116145378819e-06,3.391124312920201049e-06,3.516721509695023278e-06,3.642318706469845508e-06,3.767915903244667738e-06,3.893513100019489967e-06,4.019110296794312197e-06,4.144707493569134427e-06,4.270304690343956656e-06,4.395901887118778886e-06,4.521499083893601116e-06,4.647096280668423345e-06,4.772693477443245575e-06,4.898290674218067805e-06,5.023887870992890034e-06,5.149485067767712264e-06,5.275082264542534494e-06,5.400679461317356723e-06,5.526276658092178953e-06,5.651873854867001183e-06,5.777471051641823413e-06,5.903068248416645642e-06,6.028665445191467872e-06,6.154262641966290102e-06,6.279859838741112331e-06,6.405457035515934561e-06,6.531054232290756791e-06,6.656651429065579020e-06,6.782248625840401250e-06,6.907845822615223480e-06,7.033443019390045709e-06,7.159040216164867939e-06,7.284637412939690169e-06,7.410234609714512398e-06,7.535831806489334628e-06,7.661429003264156858e-06,7.787026200038979935e-06,7.912623396813803011e-06 +0.000000000000000000e+00,1.254396082884403920e-07,2.508792165768807839e-07,3.763188248653211759e-07,5.017584331537615678e-07,6.271980414422019069e-07,7.526376497306422459e-07,8.780772580190825849e-07,1.003516866307522924e-06,1.128956474595963263e-06,1.254396082884403602e-06,1.379835691172843941e-06,1.505275299461284280e-06,1.630714907749724619e-06,1.756154516038164958e-06,1.881594124326605297e-06,2.007033732615045424e-06,2.132473340903485763e-06,2.257912949191926102e-06,2.383352557480366441e-06,2.508792165768806780e-06,2.634231774057247119e-06,2.759671382345687458e-06,2.885110990634127797e-06,3.010550598922568136e-06,3.135990207211008475e-06,3.261429815499448815e-06,3.386869423787889154e-06,3.512309032076329493e-06,3.637748640364769832e-06,3.763188248653210171e-06,3.888627856941650510e-06,4.014067465230090849e-06,4.139507073518531188e-06,4.264946681806971527e-06,4.390386290095411866e-06,4.515825898383852205e-06,4.641265506672292544e-06,4.766705114960732883e-06,4.892144723249173222e-06,5.017584331537613561e-06,5.143023939826053900e-06,5.268463548114494239e-06,5.393903156402934578e-06,5.519342764691374917e-06,5.644782372979815256e-06,5.770221981268255595e-06,5.895661589556695934e-06,6.021101197845136273e-06,6.146540806133576612e-06,6.271980414422016951e-06,6.397420022710457290e-06,6.522859630998897629e-06,6.648299239287337968e-06,6.773738847575778307e-06,6.899178455864218646e-06,7.024618064152658985e-06,7.150057672441099324e-06,7.275497280729539663e-06,7.400936889017980002e-06,7.526376497306420341e-06,7.651816105594861527e-06,7.777255713883302713e-06,7.902695322171743899e-06 +0.000000000000000000e+00,1.271121190147722167e-07,2.542242380295444334e-07,3.813363570443166766e-07,5.084484760590889728e-07,6.355605950738612689e-07,7.626727140886335650e-07,8.897848331034058611e-07,1.016896952118178157e-06,1.144009071132950453e-06,1.271121190147722750e-06,1.398233309162495046e-06,1.525345428177267342e-06,1.652457547192039638e-06,1.779569666206811934e-06,1.906681785221584230e-06,2.033793904236356738e-06,2.160906023251129458e-06,2.288018142265902177e-06,2.415130261280674897e-06,2.542242380295447617e-06,2.669354499310220336e-06,2.796466618324993056e-06,2.923578737339765776e-06,3.050690856354538495e-06,3.177802975369311215e-06,3.304915094384083934e-06,3.432027213398856654e-06,3.559139332413629374e-06,3.686251451428402093e-06,3.813363570443174813e-06,3.940475689457947533e-06,4.067587808472720252e-06,4.194699927487492972e-06,4.321812046502265692e-06,4.448924165517038411e-06,4.576036284531811131e-06,4.703148403546583851e-06,4.830260522561356570e-06,4.957372641576129290e-06,5.084484760590902010e-06,5.211596879605674729e-06,5.338708998620447449e-06,5.465821117635220168e-06,5.592933236649992888e-06,5.720045355664765608e-06,5.847157474679538327e-06,5.974269593694311047e-06,6.101381712709083767e-06,6.228493831723856486e-06,6.355605950738629206e-06,6.482718069753401926e-06,6.609830188768174645e-06,6.736942307782947365e-06,6.864054426797720085e-06,6.991166545812492804e-06,7.118278664827265524e-06,7.245390783842038243e-06,7.372502902856810963e-06,7.499615021871583683e-06,7.626727140886356402e-06,7.753839259901129969e-06,7.880951378915903536e-06,8.008063497930677102e-06 +0.000000000000000000e+00,1.255971967748128064e-07,2.511943935496256129e-07,3.767915903244384193e-07,5.023887870992512258e-07,6.279859838740640322e-07,7.535831806488768387e-07,8.791803774236896451e-07,1.004777574198502452e-06,1.130374770973315364e-06,1.255971967748128276e-06,1.381569164522941189e-06,1.507166361297754101e-06,1.632763558072567013e-06,1.758360754847379925e-06,1.883957951622192838e-06,2.009555148397005750e-06,2.135152345171818662e-06,2.260749541946631575e-06,2.386346738721444487e-06,2.511943935496257399e-06,2.637541132271070312e-06,2.763138329045883224e-06,2.888735525820696136e-06,3.014332722595509049e-06,3.139929919370321961e-06,3.265527116145134873e-06,3.391124312919947786e-06,3.516721509694760698e-06,3.642318706469573610e-06,3.767915903244386523e-06,3.893513100019199435e-06,4.019110296794012347e-06,4.144707493568825260e-06,4.270304690343638172e-06,4.395901887118451084e-06,4.521499083893263997e-06,4.647096280668076909e-06,4.772693477442889821e-06,4.898290674217702734e-06,5.023887870992515646e-06,5.149485067767328558e-06,5.275082264542141470e-06,5.400679461316954383e-06,5.526276658091767295e-06,5.651873854866580207e-06,5.777471051641393120e-06,5.903068248416206032e-06,6.028665445191018944e-06,6.154262641965831857e-06,6.279859838740644769e-06,6.405457035515457681e-06,6.531054232290270594e-06,6.656651429065083506e-06,6.782248625839896418e-06,6.907845822614709331e-06,7.033443019389522243e-06,7.159040216164335155e-06,7.284637412939148068e-06,7.410234609713960980e-06,7.535831806488773892e-06,7.661429003263587652e-06,7.787026200038400564e-06,7.912623396813213476e-06 +0.000000000000000000e+00,1.254396082884312069e-07,2.508792165768624139e-07,3.763188248652935944e-07,5.017584331537247219e-07,6.271980414421558494e-07,7.526376497305869770e-07,8.780772580190181045e-07,1.003516866307449232e-06,1.128956474595880465e-06,1.254396082884311699e-06,1.379835691172742932e-06,1.505275299461174166e-06,1.630714907749605399e-06,1.756154516038036633e-06,1.881594124326467866e-06,2.007033732614898888e-06,2.132473340903329909e-06,2.257912949191760931e-06,2.383352557480191953e-06,2.508792165768622974e-06,2.634231774057053996e-06,2.759671382345485018e-06,2.885110990633916039e-06,3.010550598922347061e-06,3.135990207210778083e-06,3.261429815499209104e-06,3.386869423787640126e-06,3.512309032076071148e-06,3.637748640364502169e-06,3.763188248652933191e-06,3.888627856941364212e-06,4.014067465229795234e-06,4.139507073518226256e-06,4.264946681806657277e-06,4.390386290095088299e-06,4.515825898383519321e-06,4.641265506671950342e-06,4.766705114960381364e-06,4.892144723248812386e-06,5.017584331537243407e-06,5.143023939825674429e-06,5.268463548114105451e-06,5.393903156402536472e-06,5.519342764690967494e-06,5.644782372979398516e-06,5.770221981267829537e-06,5.895661589556260559e-06,6.021101197844691581e-06,6.146540806133122602e-06,6.271980414421553624e-06,6.397420022709984646e-06,6.522859630998415667e-06,6.648299239286846689e-06,6.773738847575277711e-06,6.899178455863708732e-06,7.024618064152139754e-06,7.150057672440570776e-06,7.275497280729001797e-06,7.400936889017432819e-06,7.526376497305863841e-06,7.651816105594295709e-06,7.777255713882726731e-06,7.902695322171157753e-06 +0.000000000000000000e+00,1.304591316269241724e-07,2.609182632538483448e-07,3.913773948807725173e-07,5.218365265076966897e-07,6.522956581346208621e-07,7.827547897615450345e-07,9.132139213884692069e-07,1.043673053015393379e-06,1.174132184642317552e-06,1.304591316269241724e-06,1.435050447896165897e-06,1.565509579523090069e-06,1.695968711150014241e-06,1.826427842776938414e-06,1.956886974403862586e-06,2.087346106030786759e-06,2.217805237657710931e-06,2.348264369284635104e-06,2.478723500911559276e-06,2.609182632538483448e-06,2.739641764165407621e-06,2.870100895792331793e-06,3.000560027419255966e-06,3.131019159046180138e-06,3.261478290673104311e-06,3.391937422300028483e-06,3.522396553926952655e-06,3.652855685553876828e-06,3.783314817180801000e-06,3.913773948807725173e-06,4.044233080434649769e-06,4.174692212061574365e-06,4.305151343688498960e-06,4.435610475315423556e-06,4.566069606942348152e-06,4.696528738569272748e-06,4.826987870196197344e-06,4.957447001823121940e-06,5.087906133450046536e-06,5.218365265076971132e-06,5.348824396703895728e-06,5.479283528330820324e-06,5.609742659957744920e-06,5.740201791584669516e-06,5.870660923211594112e-06,6.001120054838518708e-06,6.131579186465443304e-06,6.262038318092367900e-06,6.392497449719292495e-06,6.522956581346217091e-06,6.653415712973141687e-06,6.783874844600066283e-06,6.914333976226990879e-06,7.044793107853915475e-06,7.175252239480840071e-06,7.305711371107764667e-06,7.436170502734689263e-06,7.566629634361613859e-06,7.697088765988538455e-06,7.827547897615462204e-06,7.958007029242385953e-06,8.088466160869309702e-06,8.218925292496233450e-06 +0.000000000000000000e+00,1.287403215849248219e-07,2.574806431698496438e-07,3.862209647547744658e-07,5.149612863396992877e-07,6.437016079246241096e-07,7.724419295095489315e-07,9.011822510944737534e-07,1.029922572679398575e-06,1.158662894264323291e-06,1.287403215849248007e-06,1.416143537434172723e-06,1.544883859019097440e-06,1.673624180604022156e-06,1.802364502188946872e-06,1.931104823773871588e-06,2.059845145358796304e-06,2.188585466943721020e-06,2.317325788528645736e-06,2.446066110113570452e-06,2.574806431698495168e-06,2.703546753283419884e-06,2.832287074868344600e-06,2.961027396453269316e-06,3.089767718038194032e-06,3.218508039623118748e-06,3.347248361208043464e-06,3.475988682792968180e-06,3.604729004377892896e-06,3.733469325962817612e-06,3.862209647547742328e-06,3.990949969132667044e-06,4.119690290717591760e-06,4.248430612302516476e-06,4.377170933887441192e-06,4.505911255472365908e-06,4.634651577057290624e-06,4.763391898642215341e-06,4.892132220227140057e-06,5.020872541812064773e-06,5.149612863396989489e-06,5.278353184981914205e-06,5.407093506566838921e-06,5.535833828151763637e-06,5.664574149736688353e-06,5.793314471321613069e-06,5.922054792906537785e-06,6.050795114491462501e-06,6.179535436076387217e-06,6.308275757661311933e-06,6.437016079246236649e-06,6.565756400831161365e-06,6.694496722416086081e-06,6.823237044001010797e-06,6.951977365585935513e-06,7.080717687170860229e-06,7.209458008755784945e-06,7.338198330340709661e-06,7.466938651925634377e-06,7.595678973510559093e-06,7.724419295095482962e-06,7.853159616680406831e-06,7.981899938265330700e-06,8.110640259850254569e-06 +0.000000000000000000e+00,1.289482412438117089e-07,2.578964824876234179e-07,3.868447237314351533e-07,5.157929649752469416e-07,6.447412062190587300e-07,7.736894474628705183e-07,9.026376887066823066e-07,1.031585929950494095e-06,1.160534171194305883e-06,1.289482412438117672e-06,1.418430653681929460e-06,1.547378894925741248e-06,1.676327136169553037e-06,1.805275377413364825e-06,1.934223618657176402e-06,2.063171859900987766e-06,2.192120101144799131e-06,2.321068342388610496e-06,2.450016583632421861e-06,2.578964824876233226e-06,2.707913066120044591e-06,2.836861307363855955e-06,2.965809548607667320e-06,3.094757789851478685e-06,3.223706031095290050e-06,3.352654272339101415e-06,3.481602513582912780e-06,3.610550754826724144e-06,3.739498996070535509e-06,3.868447237314346874e-06,3.997395478558158239e-06,4.126343719801969604e-06,4.255291961045780969e-06,4.384240202289592333e-06,4.513188443533403698e-06,4.642136684777215063e-06,4.771084926021026428e-06,4.900033167264837793e-06,5.028981408508649157e-06,5.157929649752460522e-06,5.286877890996271887e-06,5.415826132240083252e-06,5.544774373483894617e-06,5.673722614727705982e-06,5.802670855971517346e-06,5.931619097215328711e-06,6.060567338459140076e-06,6.189515579702951441e-06,6.318463820946762806e-06,6.447412062190574171e-06,6.576360303434385535e-06,6.705308544678196900e-06,6.834256785922008265e-06,6.963205027165819630e-06,7.092153268409630995e-06,7.221101509653442360e-06,7.350049750897253724e-06,7.478997992141065089e-06,7.607946233384876454e-06,7.736894474628688666e-06,7.865842715872500878e-06,7.994790957116313090e-06,8.123739198360125301e-06 +0.000000000000000000e+00,1.304591316269157286e-07,2.609182632538314571e-07,3.913773948807472122e-07,5.218365265076630201e-07,6.522956581345788281e-07,7.827547897614946361e-07,9.132139213884104440e-07,1.043673053015326252e-06,1.174132184642242166e-06,1.304591316269158080e-06,1.435050447896073994e-06,1.565509579522989907e-06,1.695968711149905821e-06,1.826427842776821735e-06,1.956886974403737649e-06,2.087346106030653775e-06,2.217805237657569900e-06,2.348264369284486026e-06,2.478723500911402151e-06,2.609182632538318277e-06,2.739641764165234403e-06,2.870100895792150528e-06,3.000560027419066654e-06,3.131019159045982779e-06,3.261478290672898905e-06,3.391937422299815031e-06,3.522396553926731156e-06,3.652855685553647282e-06,3.783314817180563407e-06,3.913773948807479533e-06,4.044233080434395659e-06,4.174692212061311784e-06,4.305151343688227910e-06,4.435610475315144036e-06,4.566069606942060161e-06,4.696528738568976287e-06,4.826987870195892412e-06,4.957447001822808538e-06,5.087906133449724664e-06,5.218365265076640789e-06,5.348824396703556915e-06,5.479283528330473040e-06,5.609742659957389166e-06,5.740201791584305292e-06,5.870660923211221417e-06,6.001120054838137543e-06,6.131579186465053668e-06,6.262038318091969794e-06,6.392497449718885920e-06,6.522956581345802045e-06,6.653415712972718171e-06,6.783874844599634296e-06,6.914333976226550422e-06,7.044793107853466548e-06,7.175252239480382673e-06,7.305711371107298799e-06,7.436170502734214925e-06,7.566629634361131050e-06,7.697088765988047176e-06,7.827547897614964148e-06,7.958007029241881121e-06,8.088466160868798094e-06,8.218925292495715066e-06 +0.000000000000000000e+00,1.287403215849164839e-07,2.574806431698329679e-07,3.862209647547494783e-07,5.149612863396660416e-07,6.437016079245826050e-07,7.724419295094991683e-07,9.011822510944157317e-07,1.029922572679332295e-06,1.158662894264248752e-06,1.287403215849165210e-06,1.416143537434081667e-06,1.544883859018998125e-06,1.673624180603914582e-06,1.802364502188831040e-06,1.931104823773747497e-06,2.059845145358664167e-06,2.188585466943580836e-06,2.317325788528497505e-06,2.446066110113414174e-06,2.574806431698330843e-06,2.703546753283247513e-06,2.832287074868164182e-06,2.961027396453080851e-06,3.089767718037997520e-06,3.218508039622914190e-06,3.347248361207830859e-06,3.475988682792747528e-06,3.604729004377664197e-06,3.733469325962580867e-06,3.862209647547497536e-06,3.990949969132414628e-06,4.119690290717331721e-06,4.248430612302248814e-06,4.377170933887165907e-06,4.505911255472082999e-06,4.634651577057000092e-06,4.763391898641917185e-06,4.892132220226834278e-06,5.020872541811751370e-06,5.149612863396668463e-06,5.278353184981585556e-06,5.407093506566502649e-06,5.535833828151419741e-06,5.664574149736336834e-06,5.793314471321253927e-06,5.922054792906171020e-06,6.050795114491088112e-06,6.179535436076005205e-06,6.308275757660922298e-06,6.437016079245839391e-06,6.565756400830756483e-06,6.694496722415673576e-06,6.823237044000590669e-06,6.951977365585507762e-06,7.080717687170424854e-06,7.209458008755341947e-06,7.338198330340259040e-06,7.466938651925176133e-06,7.595678973510093225e-06,7.724419295095010318e-06,7.853159616679927411e-06,7.981899938264844504e-06,8.110640259849761596e-06 +0.000000000000000000e+00,1.289482412438034768e-07,2.578964824876069537e-07,3.868447237314104305e-07,5.157929649752139073e-07,6.447412062190174371e-07,7.736894474628209669e-07,9.026376887066244966e-07,1.031585929950428026e-06,1.160534171194231556e-06,1.289482412438035086e-06,1.418430653681838616e-06,1.547378894925642146e-06,1.676327136169445675e-06,1.805275377413249205e-06,1.934223618657052735e-06,2.063171859900856476e-06,2.192120101144660218e-06,2.321068342388463959e-06,2.450016583632267701e-06,2.578964824876071442e-06,2.707913066119875184e-06,2.836861307363678926e-06,2.965809548607482667e-06,3.094757789851286409e-06,3.223706031095090150e-06,3.352654272338893892e-06,3.481602513582697633e-06,3.610550754826501375e-06,3.739498996070305116e-06,3.868447237314108858e-06,3.997395478557912599e-06,4.126343719801716341e-06,4.255291961045520082e-06,4.384240202289323824e-06,4.513188443533127565e-06,4.642136684776931307e-06,4.771084926020735048e-06,4.900033167264538790e-06,5.028981408508342532e-06,5.157929649752146273e-06,5.286877890995950015e-06,5.415826132239753756e-06,5.544774373483557498e-06,5.673722614727361239e-06,5.802670855971164981e-06,5.931619097214968722e-06,6.060567338458772464e-06,6.189515579702576205e-06,6.318463820946379947e-06,6.447412062190183688e-06,6.576360303433987430e-06,6.705308544677791171e-06,6.834256785921594913e-06,6.963205027165398654e-06,7.092153268409202396e-06,7.221101509653006138e-06,7.350049750896809879e-06,7.478997992140613621e-06,7.607946233384417362e-06,7.736894474628221104e-06,7.865842715872024845e-06,7.994790957115828587e-06,8.123739198359632328e-06 +0.000000000000000000e+00,1.340967146206607529e-07,2.681934292413215057e-07,4.022901438619822586e-07,5.363868584826430114e-07,6.704835731033037113e-07,8.045802877239644112e-07,9.386770023446251111e-07,1.072773716965285811e-06,1.206870431585946511e-06,1.340967146206607211e-06,1.475063860827267911e-06,1.609160575447928611e-06,1.743257290068589311e-06,1.877354004689250011e-06,2.011450719309910499e-06,2.145547433930571199e-06,2.279644148551231898e-06,2.413740863171892598e-06,2.547837577792553298e-06,2.681934292413213998e-06,2.816031007033874698e-06,2.950127721654535398e-06,3.084224436275196098e-06,3.218321150895856798e-06,3.352417865516517498e-06,3.486514580137178198e-06,3.620611294757838898e-06,3.754708009378499598e-06,3.888804723999160297e-06,4.022901438619820997e-06,4.156998153240481697e-06,4.291094867861142397e-06,4.425191582481803097e-06,4.559288297102463797e-06,4.693385011723124497e-06,4.827481726343785197e-06,4.961578440964445897e-06,5.095675155585106597e-06,5.229771870205767297e-06,5.363868584826427996e-06,5.497965299447088696e-06,5.632062014067749396e-06,5.766158728688410096e-06,5.900255443309070796e-06,6.034352157929731496e-06,6.168448872550392196e-06,6.302545587171052896e-06,6.436642301791713596e-06,6.570739016412374296e-06,6.704835731033034996e-06,6.838932445653695695e-06,6.973029160274356395e-06,7.107125874895017095e-06,7.241222589515677795e-06,7.375319304136338495e-06,7.509416018756999195e-06,7.643512733377659895e-06,7.777609447998320595e-06,7.911706162618981295e-06,8.045802877239641995e-06,8.179899591860302695e-06,8.313996306480963395e-06,8.448093021101624094e-06 +0.000000000000000000e+00,1.322494152658569393e-07,2.644988305317138785e-07,3.967482457975708178e-07,5.289976610634277571e-07,6.612470763292846963e-07,7.934964915951416356e-07,9.257459068609985749e-07,1.057995322126855514e-06,1.190244737392712453e-06,1.322494152658569393e-06,1.454743567924426332e-06,1.586992983190283271e-06,1.719242398456140210e-06,1.851491813721997150e-06,1.983741228987854089e-06,2.115990644253711028e-06,2.248240059519567968e-06,2.380489474785424907e-06,2.512738890051281846e-06,2.644988305317138785e-06,2.777237720582995725e-06,2.909487135848852664e-06,3.041736551114709603e-06,3.173985966380566542e-06,3.306235381646423482e-06,3.438484796912280421e-06,3.570734212178137360e-06,3.702983627443994299e-06,3.835233042709851239e-06,3.967482457975708178e-06,4.099731873241565117e-06,4.231981288507422057e-06,4.364230703773278996e-06,4.496480119039135935e-06,4.628729534304992874e-06,4.760978949570849814e-06,4.893228364836706753e-06,5.025477780102563692e-06,5.157727195368420631e-06,5.289976610634277571e-06,5.422226025900134510e-06,5.554475441165991449e-06,5.686724856431848388e-06,5.818974271697705328e-06,5.951223686963562267e-06,6.083473102229419206e-06,6.215722517495276146e-06,6.347971932761133085e-06,6.480221348026990024e-06,6.612470763292846963e-06,6.744720178558703903e-06,6.876969593824560842e-06,7.009219009090417781e-06,7.141468424356274720e-06,7.273717839622131660e-06,7.405967254887988599e-06,7.538216670153845538e-06,7.670466085419702477e-06,7.802715500685559417e-06,7.934964915951416356e-06,8.067214331217273295e-06,8.199463746483130235e-06,8.331713161748987174e-06 +0.000000000000000000e+00,1.327511221127057949e-07,2.655022442254115897e-07,3.982533663381173846e-07,5.310044884508231795e-07,6.637556105635289214e-07,7.965067326762346634e-07,9.292578547889404053e-07,1.062008976901646147e-06,1.194760099014351889e-06,1.327511221127057631e-06,1.460262343239763373e-06,1.593013465352469115e-06,1.725764587465174857e-06,1.858515709577880599e-06,1.991266831690586341e-06,2.124017953803291871e-06,2.256769075915997401e-06,2.389520198028702931e-06,2.522271320141408461e-06,2.655022442254113992e-06,2.787773564366819522e-06,2.920524686479525052e-06,3.053275808592230582e-06,3.186026930704936112e-06,3.318778052817641643e-06,3.451529174930347173e-06,3.584280297043052703e-06,3.717031419155758233e-06,3.849782541268463763e-06,3.982533663381169293e-06,4.115284785493874824e-06,4.248035907606580354e-06,4.380787029719285884e-06,4.513538151831991414e-06,4.646289273944696944e-06,4.779040396057402474e-06,4.911791518170108005e-06,5.044542640282813535e-06,5.177293762395519065e-06,5.310044884508224595e-06,5.442796006620930125e-06,5.575547128733635656e-06,5.708298250846341186e-06,5.841049372959046716e-06,5.973800495071752246e-06,6.106551617184457776e-06,6.239302739297163306e-06,6.372053861409868837e-06,6.504804983522574367e-06,6.637556105635279897e-06,6.770307227747985427e-06,6.903058349860690957e-06,7.035809471973396487e-06,7.168560594086102018e-06,7.301311716198807548e-06,7.434062838311513078e-06,7.566813960424218608e-06,7.699565082536924138e-06,7.832316204649629669e-06,7.965067326762335199e-06,8.097818448875040729e-06,8.230569570987746259e-06,8.363320693100451789e-06 +0.000000000000000000e+00,1.340967146206544795e-07,2.681934292413089590e-07,4.022901438619634650e-07,5.363868584826180239e-07,6.704835731032725829e-07,8.045802877239271418e-07,9.386770023445817007e-07,1.072773716965236260e-06,1.206870431585890819e-06,1.340967146206545377e-06,1.475063860827199936e-06,1.609160575447854495e-06,1.743257290068509054e-06,1.877354004689163613e-06,2.011450719309818172e-06,2.145547433930472943e-06,2.279644148551127713e-06,2.413740863171782484e-06,2.547837577792437255e-06,2.681934292413092025e-06,2.816031007033746796e-06,2.950127721654401567e-06,3.084224436275056338e-06,3.218321150895711108e-06,3.352417865516365879e-06,3.486514580137020650e-06,3.620611294757675420e-06,3.754708009378330191e-06,3.888804723998984962e-06,4.022901438619639732e-06,4.156998153240294503e-06,4.291094867860949274e-06,4.425191582481604044e-06,4.559288297102258815e-06,4.693385011722913586e-06,4.827481726343568356e-06,4.961578440964223127e-06,5.095675155584877898e-06,5.229771870205532668e-06,5.363868584826187439e-06,5.497965299446842210e-06,5.632062014067496980e-06,5.766158728688151751e-06,5.900255443308806522e-06,6.034352157929461293e-06,6.168448872550116063e-06,6.302545587170770834e-06,6.436642301791425605e-06,6.570739016412080375e-06,6.704835731032735146e-06,6.838932445653389917e-06,6.973029160274044687e-06,7.107125874894699458e-06,7.241222589515354229e-06,7.375319304136008999e-06,7.509416018756663770e-06,7.643512733377319388e-06,7.777609447997975005e-06,7.911706162618630623e-06,8.045802877239286241e-06,8.179899591859941859e-06,8.313996306480597476e-06,8.448093021101253094e-06 +0.000000000000000000e+00,1.322494152658495277e-07,2.644988305316990555e-07,3.967482457975485832e-07,5.289976610633981109e-07,6.612470763292476386e-07,7.934964915950971664e-07,9.257459068609466941e-07,1.057995322126796222e-06,1.190244737392645750e-06,1.322494152658495277e-06,1.454743567924344805e-06,1.586992983190194333e-06,1.719242398456043860e-06,1.851491813721893388e-06,1.983741228987743128e-06,2.115990644253592867e-06,2.248240059519442607e-06,2.380489474785292346e-06,2.512738890051142086e-06,2.644988305316991825e-06,2.777237720582841565e-06,2.909487135848691304e-06,3.041736551114541044e-06,3.173985966380390783e-06,3.306235381646240523e-06,3.438484796912090262e-06,3.570734212177940002e-06,3.702983627443789741e-06,3.835233042709639480e-06,3.967482457975489643e-06,4.099731873241339807e-06,4.231981288507189970e-06,4.364230703773040133e-06,4.496480119038890296e-06,4.628729534304740459e-06,4.760978949570590622e-06,4.893228364836440785e-06,5.025477780102290948e-06,5.157727195368141111e-06,5.289976610633991274e-06,5.422226025899841437e-06,5.554475441165691600e-06,5.686724856431541763e-06,5.818974271697391926e-06,5.951223686963242089e-06,6.083473102229092252e-06,6.215722517494942415e-06,6.347971932760792578e-06,6.480221348026642741e-06,6.612470763292492904e-06,6.744720178558343067e-06,6.876969593824193230e-06,7.009219009090043393e-06,7.141468424355893556e-06,7.273717839621743719e-06,7.405967254887593882e-06,7.538216670153444045e-06,7.670466085419294208e-06,7.802715500685144371e-06,7.934964915950994534e-06,8.067214331216844697e-06,8.199463746482694860e-06,8.331713161748545023e-06 +0.000000000000000000e+00,1.327511221126980922e-07,2.655022442253961843e-07,3.982533663380942500e-07,5.310044884507922628e-07,6.637556105634902756e-07,7.965067326761882883e-07,9.292578547888863011e-07,1.062008976901584314e-06,1.194760099014282432e-06,1.327511221126980551e-06,1.460262343239678670e-06,1.593013465352376788e-06,1.725764587465074907e-06,1.858515709577773026e-06,1.991266831690471144e-06,2.124017953803169051e-06,2.256769075915866958e-06,2.389520198028564865e-06,2.522271320141262772e-06,2.655022442253960679e-06,2.787773564366658586e-06,2.920524686479356492e-06,3.053275808592054399e-06,3.186026930704752306e-06,3.318778052817450213e-06,3.451529174930148120e-06,3.584280297042846027e-06,3.717031419155543934e-06,3.849782541268241841e-06,3.982533663380939748e-06,4.115284785493637654e-06,4.248035907606335561e-06,4.380787029719033468e-06,4.513538151831731375e-06,4.646289273944429282e-06,4.779040396057127189e-06,4.911791518169825096e-06,5.044542640282523003e-06,5.177293762395220909e-06,5.310044884507918816e-06,5.442796006620616723e-06,5.575547128733314630e-06,5.708298250846012537e-06,5.841049372958710444e-06,5.973800495071408351e-06,6.106551617184106258e-06,6.239302739296804164e-06,6.372053861409502071e-06,6.504804983522199978e-06,6.637556105634897885e-06,6.770307227747595792e-06,6.903058349860293699e-06,7.035809471972991606e-06,7.168560594085689513e-06,7.301311716198387420e-06,7.434062838311085326e-06,7.566813960423783233e-06,7.699565082536480293e-06,7.832316204649177353e-06,7.965067326761874413e-06,8.097818448874571473e-06,8.230569570987268532e-06,8.363320693099965592e-06 +0.000000000000000000e+00,1.379164360126285158e-07,2.758328720252570315e-07,4.137493080378855473e-07,5.516657440505140630e-07,6.895821800631425788e-07,8.274986160757710945e-07,9.654150520883996103e-07,1.103331488101028126e-06,1.241247924113656642e-06,1.379164360126285158e-06,1.517080796138913673e-06,1.654997232151542189e-06,1.792913668164170705e-06,1.930830104176799221e-06,2.068746540189427948e-06,2.206662976202056676e-06,2.344579412214685403e-06,2.482495848227314131e-06,2.620412284239942858e-06,2.758328720252571586e-06,2.896245156265200313e-06,3.034161592277829041e-06,3.172078028290457768e-06,3.309994464303086496e-06,3.447910900315715223e-06,3.585827336328343951e-06,3.723743772340972678e-06,3.861660208353600982e-06,3.999576644366229286e-06,4.137493080378857590e-06,4.275409516391485894e-06,4.413325952404114198e-06,4.551242388416742502e-06,4.689158824429370806e-06,4.827075260441999110e-06,4.964991696454627414e-06,5.102908132467255718e-06,5.240824568479884022e-06,5.378741004492512326e-06,5.516657440505140630e-06,5.654573876517768934e-06,5.792490312530397238e-06,5.930406748543025542e-06,6.068323184555653846e-06,6.206239620568282150e-06,6.344156056580910454e-06,6.482072492593538758e-06,6.619988928606167062e-06,6.757905364618795366e-06,6.895821800631423670e-06,7.033738236644051974e-06,7.171654672656680278e-06,7.309571108669308582e-06,7.447487544681936886e-06,7.585403980694565190e-06,7.723320416707193494e-06,7.861236852719821798e-06,7.999153288732450102e-06,8.137069724745078406e-06,8.274986160757706710e-06,8.412902596770335014e-06,8.550819032782963318e-06,8.688735468795591622e-06 +0.000000000000000000e+00,1.359890856545872518e-07,2.719781713091745036e-07,4.079672569637617819e-07,5.439563426183491132e-07,6.799454282729364444e-07,8.159345139275237756e-07,9.519235995821111069e-07,1.087912685236698438e-06,1.223901770891285875e-06,1.359890856545873312e-06,1.495879942200460749e-06,1.631869027855048187e-06,1.767858113509635624e-06,1.903847199164223061e-06,2.039836284818810498e-06,2.175825370473398147e-06,2.311814456127985796e-06,2.447803541782573444e-06,2.583792627437161093e-06,2.719781713091748742e-06,2.855770798746336391e-06,2.991759884400924040e-06,3.127748970055511689e-06,3.263738055710099338e-06,3.399727141364686987e-06,3.535716227019274635e-06,3.671705312673862284e-06,3.807694398328449933e-06,3.943683483983038006e-06,4.079672569637626078e-06,4.215661655292214150e-06,4.351650740946802223e-06,4.487639826601390295e-06,4.623628912255978367e-06,4.759617997910566440e-06,4.895607083565154512e-06,5.031596169219742585e-06,5.167585254874330657e-06,5.303574340528918729e-06,5.439563426183506802e-06,5.575552511838094874e-06,5.711541597492682947e-06,5.847530683147271019e-06,5.983519768801859091e-06,6.119508854456447164e-06,6.255497940111035236e-06,6.391487025765623308e-06,6.527476111420211381e-06,6.663465197074799453e-06,6.799454282729387526e-06,6.935443368383975598e-06,7.071432454038563670e-06,7.207421539693151743e-06,7.343410625347739815e-06,7.479399711002327888e-06,7.615388796656915960e-06,7.751377882311504032e-06,7.887366967966092952e-06,8.023356053620681871e-06,8.159345139275270791e-06,8.295334224929859710e-06,8.431323310584448629e-06,8.567312396239037549e-06 +0.000000000000000000e+00,1.367465923848492368e-07,2.734931847696984736e-07,4.102397771545477104e-07,5.469863695393969472e-07,6.837329619242461840e-07,8.204795543090954207e-07,9.572261466939445517e-07,1.093972739078793683e-06,1.230719331463642813e-06,1.367465923848491944e-06,1.504212516233341075e-06,1.640959108618190206e-06,1.777705701003039337e-06,1.914452293387888256e-06,2.051198885772737175e-06,2.187945478157586095e-06,2.324692070542435014e-06,2.461438662927283933e-06,2.598185255312132852e-06,2.734931847696981771e-06,2.871678440081830690e-06,3.008425032466679610e-06,3.145171624851528529e-06,3.281918217236377448e-06,3.418664809621226367e-06,3.555411402006075286e-06,3.692157994390924205e-06,3.828904586775773124e-06,3.965651179160622044e-06,4.102397771545470963e-06,4.239144363930319882e-06,4.375890956315168801e-06,4.512637548700017720e-06,4.649384141084866639e-06,4.786130733469715558e-06,4.922877325854564478e-06,5.059623918239413397e-06,5.196370510624262316e-06,5.333117103009111235e-06,5.469863695393960154e-06,5.606610287778809073e-06,5.743356880163657993e-06,5.880103472548506912e-06,6.016850064933355831e-06,6.153596657318204750e-06,6.290343249703053669e-06,6.427089842087902588e-06,6.563836434472751507e-06,6.700583026857600427e-06,6.837329619242449346e-06,6.974076211627298265e-06,7.110822804012147184e-06,7.247569396396996103e-06,7.384315988781845022e-06,7.521062581166693942e-06,7.657809173551542861e-06,7.794555765936391780e-06,7.931302358321240699e-06,8.068048950706089618e-06,8.204795543090938537e-06,8.341542135475787456e-06,8.478288727860636376e-06,8.615035320245485295e-06 +0.000000000000000000e+00,1.379164360126232218e-07,2.758328720252464436e-07,4.137493080378696654e-07,5.516657440504928872e-07,6.895821800631161090e-07,8.274986160757393308e-07,9.654150520883625526e-07,1.103331488100985774e-06,1.241247924113608996e-06,1.379164360126232218e-06,1.517080796138855440e-06,1.654997232151478662e-06,1.792913668164101883e-06,1.930830104176725105e-06,2.068746540189348327e-06,2.206662976201971549e-06,2.344579412214594771e-06,2.482495848227217992e-06,2.620412284239841214e-06,2.758328720252464436e-06,2.896245156265087658e-06,3.034161592277710880e-06,3.172078028290334101e-06,3.309994464302957323e-06,3.447910900315580545e-06,3.585827336328203767e-06,3.723743772340826989e-06,3.861660208353450210e-06,3.999576644366073432e-06,4.137493080378696654e-06,4.275409516391319876e-06,4.413325952403943098e-06,4.551242388416566319e-06,4.689158824429189541e-06,4.827075260441812763e-06,4.964991696454435985e-06,5.102908132467059207e-06,5.240824568479682428e-06,5.378741004492305650e-06,5.516657440504928872e-06,5.654573876517552094e-06,5.792490312530175316e-06,5.930406748542798537e-06,6.068323184555421759e-06,6.206239620568044981e-06,6.344156056580668203e-06,6.482072492593291425e-06,6.619988928605914646e-06,6.757905364618537868e-06,6.895821800631161090e-06,7.033738236643784312e-06,7.171654672656407534e-06,7.309571108669030755e-06,7.447487544681653977e-06,7.585403980694277199e-06,7.723320416706900421e-06,7.861236852719523643e-06,7.999153288732146865e-06,8.137069724744770086e-06,8.274986160757393308e-06,8.412902596770016530e-06,8.550819032782639752e-06,8.688735468795262974e-06 +0.000000000000000000e+00,1.359890856545816402e-07,2.719781713091632805e-07,4.079672569637449472e-07,5.439563426183266668e-07,6.799454282729083864e-07,8.159345139274901061e-07,9.519235995820718257e-07,1.087912685236653545e-06,1.223901770891235265e-06,1.359890856545816985e-06,1.495879942200398704e-06,1.631869027854980424e-06,1.767858113509562144e-06,1.903847199164143863e-06,2.039836284818725371e-06,2.175825370473306667e-06,2.311814456127887963e-06,2.447803541782469259e-06,2.583792627437050556e-06,2.719781713091631852e-06,2.855770798746213148e-06,2.991759884400794444e-06,3.127748970055375740e-06,3.263738055709957036e-06,3.399727141364538332e-06,3.535716227019119628e-06,3.671705312673700924e-06,3.807694398328282221e-06,3.943683483982863517e-06,4.079672569637444813e-06,4.215661655292026109e-06,4.351650740946607405e-06,4.487639826601188701e-06,4.623628912255769997e-06,4.759617997910351293e-06,4.895607083564932590e-06,5.031596169219513886e-06,5.167585254874095182e-06,5.303574340528676478e-06,5.439563426183257774e-06,5.575552511837839070e-06,5.711541597492420366e-06,5.847530683147001662e-06,5.983519768801582959e-06,6.119508854456164255e-06,6.255497940110745551e-06,6.391487025765326847e-06,6.527476111419908143e-06,6.663465197074489439e-06,6.799454282729070735e-06,6.935443368383652031e-06,7.071432454038233328e-06,7.207421539692814624e-06,7.343410625347395920e-06,7.479399711001977216e-06,7.615388796656558512e-06,7.751377882311139808e-06,7.887366967965720257e-06,8.023356053620300706e-06,8.159345139274881155e-06,8.295334224929461604e-06,8.431323310584042054e-06,8.567312396238622503e-06 +0.000000000000000000e+00,1.367465923848418253e-07,2.734931847696836505e-07,4.102397771545254758e-07,5.469863695393673010e-07,6.837329619242091263e-07,8.204795543090509515e-07,9.572261466938928826e-07,1.093972739078734814e-06,1.230719331463576745e-06,1.367465923848418676e-06,1.504212516233260607e-06,1.640959108618102538e-06,1.777705701002944469e-06,1.914452293387786612e-06,2.051198885772628755e-06,2.187945478157470898e-06,2.324692070542313041e-06,2.461438662927155184e-06,2.598185255311997327e-06,2.734931847696839470e-06,2.871678440081681613e-06,3.008425032466523755e-06,3.145171624851365898e-06,3.281918217236208041e-06,3.418664809621050184e-06,3.555411402005892327e-06,3.692157994390734470e-06,3.828904586775576613e-06,3.965651179160418756e-06,4.102397771545260899e-06,4.239144363930103041e-06,4.375890956314945184e-06,4.512637548699787327e-06,4.649384141084629470e-06,4.786130733469471613e-06,4.922877325854313756e-06,5.059623918239155899e-06,5.196370510623998042e-06,5.333117103008840185e-06,5.469863695393682327e-06,5.606610287778524470e-06,5.743356880163366613e-06,5.880103472548208756e-06,6.016850064933050899e-06,6.153596657317893042e-06,6.290343249702735185e-06,6.427089842087577328e-06,6.563836434472419471e-06,6.700583026857261613e-06,6.837329619242103756e-06,6.974076211626945899e-06,7.110822804011788042e-06,7.247569396396630185e-06,7.384315988781472328e-06,7.521062581166314471e-06,7.657809173551156614e-06,7.794555765935998757e-06,7.931302358320840899e-06,8.068048950705683042e-06,8.204795543090525185e-06,8.341542135475367328e-06,8.478288727860209471e-06,8.615035320245051614e-06 +0.000000000000000000e+00,1.418460061502555520e-07,2.836920123005111041e-07,4.255380184507666296e-07,5.673840246010221023e-07,7.092300307512775749e-07,8.510760369015330475e-07,9.929220430517885201e-07,1.134768049202043993e-06,1.276614055352299465e-06,1.418460061502554938e-06,1.560306067652810411e-06,1.702152073803065883e-06,1.843998079953321356e-06,1.985844086103576617e-06,2.127690092253832089e-06,2.269536098404087562e-06,2.411382104554343035e-06,2.553228110704598507e-06,2.695074116854853980e-06,2.836920123005109453e-06,2.978766129155364925e-06,3.120612135305620398e-06,3.262458141455875870e-06,3.404304147606131343e-06,3.546150153756386816e-06,3.687996159906642288e-06,3.829842166056897761e-06,3.971688172207153234e-06,4.113534178357408706e-06,4.255380184507664179e-06,4.397226190657919651e-06,4.539072196808175124e-06,4.680918202958430597e-06,4.822764209108686069e-06,4.964610215258941542e-06,5.106456221409197015e-06,5.248302227559452487e-06,5.390148233709707960e-06,5.531994239859963432e-06,5.673840246010218905e-06,5.815686252160474378e-06,5.957532258310729850e-06,6.099378264460985323e-06,6.241224270611240796e-06,6.383070276761496268e-06,6.524916282911751741e-06,6.666762289062007213e-06,6.808608295212262686e-06,6.950454301362518159e-06,7.092300307512773631e-06,7.234146313663029104e-06,7.375992319813284577e-06,7.517838325963540049e-06,7.659684332113795522e-06,7.801530338264050994e-06,7.943376344414306467e-06,8.085222350564561940e-06,8.227068356714817412e-06,8.368914362865072885e-06,8.510760369015328358e-06,8.652606375165583830e-06,8.794452381315839303e-06,8.936298387466094775e-06 +0.000000000000000000e+00,1.398711598003946150e-07,2.797423196007892300e-07,4.196134794011838715e-07,5.594846392015785660e-07,6.993557990019732604e-07,8.392269588023679548e-07,9.790981186027626492e-07,1.118969278403157344e-06,1.258840438203552038e-06,1.398711598003946733e-06,1.538582757804341427e-06,1.678453917604736121e-06,1.818325077405130816e-06,1.958196237205525722e-06,2.098067397005920416e-06,2.237938556806315111e-06,2.377809716606709805e-06,2.517680876407104500e-06,2.657552036207499194e-06,2.797423196007893889e-06,2.937294355808288583e-06,3.077165515608683277e-06,3.217036675409077972e-06,3.356907835209472666e-06,3.496778995009867361e-06,3.636650154810262055e-06,3.776521314610656750e-06,3.916392474411051444e-06,4.056263634211446138e-06,4.196134794011840833e-06,4.336005953812235527e-06,4.475877113612630222e-06,4.615748273413024916e-06,4.755619433213419611e-06,4.895490593013814305e-06,5.035361752814208999e-06,5.175232912614603694e-06,5.315104072414998388e-06,5.454975232215393083e-06,5.594846392015787777e-06,5.734717551816182472e-06,5.874588711616577166e-06,6.014459871416971860e-06,6.154331031217366555e-06,6.294202191017761249e-06,6.434073350818155944e-06,6.573944510618550638e-06,6.713815670418945333e-06,6.853686830219340027e-06,6.993557990019734721e-06,7.133429149820129416e-06,7.273300309620524110e-06,7.413171469420918805e-06,7.553042629221313499e-06,7.692913789021708194e-06,7.832784948822102888e-06,7.972656108622497582e-06,8.112527268422892277e-06,8.252398428223286971e-06,8.392269588023681666e-06,8.532140747824076360e-06,8.672011907624471055e-06,8.811883067424865749e-06 +0.000000000000000000e+00,1.408759020883673331e-07,2.817518041767346662e-07,4.226277062651019994e-07,5.635036083534693325e-07,7.043795104418367185e-07,8.452554125302041046e-07,9.861313146185714906e-07,1.127007216706938877e-06,1.267883118795306263e-06,1.408759020883673649e-06,1.549634922972041035e-06,1.690510825060408421e-06,1.831386727148775807e-06,1.972262629237143405e-06,2.113138531325510791e-06,2.254014433413878177e-06,2.394890335502245563e-06,2.535766237590612949e-06,2.676642139678980335e-06,2.817518041767347721e-06,2.958393943855715107e-06,3.099269845944082493e-06,3.240145748032449879e-06,3.381021650120817265e-06,3.521897552209184651e-06,3.662773454297552038e-06,3.803649356385919424e-06,3.944525258474286810e-06,4.085401160562654196e-06,4.226277062651021582e-06,4.367152964739388968e-06,4.508028866827756354e-06,4.648904768916123740e-06,4.789780671004491126e-06,4.930656573092858512e-06,5.071532475181225898e-06,5.212408377269593284e-06,5.353284279357960670e-06,5.494160181446328056e-06,5.635036083534695442e-06,5.775911985623062828e-06,5.916787887711430214e-06,6.057663789799797601e-06,6.198539691888164987e-06,6.339415593976532373e-06,6.480291496064899759e-06,6.621167398153267145e-06,6.762043300241634531e-06,6.902919202330001917e-06,7.043795104418369303e-06,7.184671006506736689e-06,7.325546908595104075e-06,7.466422810683471461e-06,7.607298712771838847e-06,7.748174614860207080e-06,7.889050516948575313e-06,8.029926419036943546e-06,8.170802321125311780e-06,8.311678223213680013e-06,8.452554125302048246e-06,8.593430027390416479e-06,8.734305929478784712e-06,8.875181831567152945e-06 +0.000000000000000000e+00,1.418460061502491463e-07,2.836920123004982927e-07,4.255380184507474655e-07,5.673840246009966913e-07,7.092300307512459170e-07,8.510760369014951428e-07,9.929220430517442627e-07,1.134768049201993383e-06,1.276614055352242502e-06,1.418460061502491622e-06,1.560306067652740742e-06,1.702152073802989862e-06,1.843998079953238982e-06,1.985844086103488102e-06,2.127690092253737222e-06,2.269536098403986342e-06,2.411382104554235461e-06,2.553228110704484581e-06,2.695074116854733701e-06,2.836920123004982821e-06,2.978766129155231941e-06,3.120612135305481061e-06,3.262458141455730181e-06,3.404304147605979301e-06,3.546150153756228421e-06,3.687996159906477540e-06,3.829842166056726660e-06,3.971688172206975357e-06,4.113534178357224053e-06,4.255380184507472749e-06,4.397226190657721446e-06,4.539072196807970142e-06,4.680918202958218838e-06,4.822764209108467535e-06,4.964610215258716231e-06,5.106456221408964928e-06,5.248302227559213624e-06,5.390148233709462320e-06,5.531994239859711017e-06,5.673840246009959713e-06,5.815686252160208409e-06,5.957532258310457106e-06,6.099378264460705802e-06,6.241224270610954498e-06,6.383070276761203195e-06,6.524916282911451891e-06,6.666762289061700588e-06,6.808608295211949284e-06,6.950454301362197980e-06,7.092300307512446677e-06,7.234146313662695373e-06,7.375992319812944069e-06,7.517838325963192766e-06,7.659684332113441462e-06,7.801530338263690158e-06,7.943376344413938855e-06,8.085222350564187551e-06,8.227068356714436248e-06,8.368914362864684944e-06,8.510760369014933640e-06,8.652606375165182337e-06,8.794452381315431033e-06,8.936298387465679729e-06 +0.000000000000000000e+00,1.398711598003887123e-07,2.797423196007774245e-07,4.196134794011661368e-07,5.594846392015548490e-07,6.993557990019436142e-07,8.392269588023323794e-07,9.790981186027211446e-07,1.118969278403109910e-06,1.258840438203498675e-06,1.398711598003887440e-06,1.538582757804276205e-06,1.678453917604664971e-06,1.818325077405053736e-06,1.958196237205442713e-06,2.098067397005831478e-06,2.237938556806220243e-06,2.377809716606609008e-06,2.517680876406997774e-06,2.657552036207386539e-06,2.797423196007775304e-06,2.937294355808164069e-06,3.077165515608552834e-06,3.217036675408941600e-06,3.356907835209330365e-06,3.496778995009719130e-06,3.636650154810107895e-06,3.776521314610496660e-06,3.916392474410885426e-06,4.056263634211274191e-06,4.196134794011662956e-06,4.336005953812051721e-06,4.475877113612440486e-06,4.615748273412829252e-06,4.755619433213218017e-06,4.895490593013606782e-06,5.035361752813995547e-06,5.175232912614384312e-06,5.315104072414773078e-06,5.454975232215161843e-06,5.594846392015550608e-06,5.734717551815939373e-06,5.874588711616328138e-06,6.014459871416716904e-06,6.154331031217105669e-06,6.294202191017494434e-06,6.434073350817883199e-06,6.573944510618271964e-06,6.713815670418660730e-06,6.853686830219049495e-06,6.993557990019438260e-06,7.133429149819827025e-06,7.273300309620215790e-06,7.413171469420604556e-06,7.553042629220993321e-06,7.692913789021382933e-06,7.832784948821772545e-06,7.972656108622162157e-06,8.112527268422551770e-06,8.252398428222941382e-06,8.392269588023330994e-06,8.532140747823720606e-06,8.672011907624110219e-06,8.811883067424499831e-06 +0.000000000000000000e+00,1.408759020883610598e-07,2.817518041767221196e-07,4.226277062650832058e-07,5.635036083534443450e-07,7.043795104418054842e-07,8.452554125301666234e-07,9.861313146185276567e-07,1.127007216706888690e-06,1.267883118795249723e-06,1.408759020883610757e-06,1.549634922971971790e-06,1.690510825060332823e-06,1.831386727148693857e-06,1.972262629237054890e-06,2.113138531325415923e-06,2.254014433413776956e-06,2.394890335502137990e-06,2.535766237590499023e-06,2.676642139678860056e-06,2.817518041767221090e-06,2.958393943855582123e-06,3.099269845943943156e-06,3.240145748032304190e-06,3.381021650120665223e-06,3.521897552209026256e-06,3.662773454297387290e-06,3.803649356385748323e-06,3.944525258474108933e-06,4.085401160562469543e-06,4.226277062650830152e-06,4.367152964739190762e-06,4.508028866827551372e-06,4.648904768915911982e-06,4.789780671004272591e-06,4.930656573092633201e-06,5.071532475180993811e-06,5.212408377269354421e-06,5.353284279357715031e-06,5.494160181446075640e-06,5.635036083534436250e-06,5.775911985622796860e-06,5.916787887711157470e-06,6.057663789799518080e-06,6.198539691887878689e-06,6.339415593976239299e-06,6.480291496064599909e-06,6.621167398152960519e-06,6.762043300241321129e-06,6.902919202329681738e-06,7.043795104418042348e-06,7.184671006506402958e-06,7.325546908594763568e-06,7.466422810683124178e-06,7.607298712771484787e-06,7.748174614859844550e-06,7.889050516948204313e-06,8.029926419036564076e-06,8.170802321124923838e-06,8.311678223213283601e-06,8.452554125301643364e-06,8.593430027390003127e-06,8.734305929478362889e-06,8.875181831566722652e-06 +0.000000000000000000e+00,1.217082245846291933e-07,2.434164491692583867e-07,3.651246737538875800e-07,4.868328983385167734e-07,6.085411229231459138e-07,7.302493475077750542e-07,8.519575720924041946e-07,9.736657966770333350e-07,1.095374021261662475e-06,1.217082245846291616e-06,1.338790470430920756e-06,1.460498695015549897e-06,1.582206919600179037e-06,1.703915144184808177e-06,1.825623368769437318e-06,1.947331593354066246e-06,2.069039817938695387e-06,2.190748042523324527e-06,2.312456267107953668e-06,2.434164491692582808e-06,2.555872716277211948e-06,2.677580940861841089e-06,2.799289165446470229e-06,2.920997390031099370e-06,3.042705614615728510e-06,3.164413839200357650e-06,3.286122063784986791e-06,3.407830288369615931e-06,3.529538512954245072e-06,3.651246737538874212e-06,3.772954962123503352e-06,3.894663186708132493e-06,4.016371411292761633e-06,4.138079635877390774e-06,4.259787860462019914e-06,4.381496085046649054e-06,4.503204309631278195e-06,4.624912534215907335e-06,4.746620758800536476e-06,4.868328983385165616e-06,4.990037207969794756e-06,5.111745432554423897e-06,5.233453657139053037e-06,5.355161881723682178e-06,5.476870106308311318e-06,5.598578330892940458e-06,5.720286555477569599e-06,5.841994780062198739e-06,5.963703004646827880e-06,6.085411229231457020e-06,6.207119453816086160e-06,6.328827678400715301e-06,6.450535902985344441e-06,6.572244127569973582e-06,6.693952352154602722e-06,6.815660576739231862e-06,6.937368801323861003e-06,7.059077025908490143e-06,7.180785250493119284e-06,7.302493475077748424e-06,7.424201699662377564e-06,7.545909924247006705e-06,7.667618148831635845e-06 +0.000000000000000000e+00,1.221865271904275242e-07,2.443730543808550484e-07,3.665595815712825725e-07,4.887461087617100967e-07,6.109326359521376209e-07,7.331191631425651451e-07,8.553056903329926693e-07,9.774922175234201935e-07,1.099678744713847824e-06,1.221865271904275454e-06,1.344051799094703084e-06,1.466238326285130714e-06,1.588424853475558344e-06,1.710611380665985974e-06,1.832797907856413604e-06,1.954984435046841234e-06,2.077170962237268864e-06,2.199357489427696494e-06,2.321544016618124124e-06,2.443730543808551754e-06,2.565917070998979384e-06,2.688103598189407014e-06,2.810290125379834644e-06,2.932476652570262274e-06,3.054663179760689905e-06,3.176849706951117535e-06,3.299036234141545165e-06,3.421222761331972795e-06,3.543409288522400425e-06,3.665595815712828055e-06,3.787782342903255685e-06,3.909968870093683315e-06,4.032155397284110945e-06,4.154341924474538575e-06,4.276528451664966205e-06,4.398714978855393835e-06,4.520901506045821465e-06,4.643088033236249095e-06,4.765274560426676725e-06,4.887461087617104355e-06,5.009647614807531986e-06,5.131834141997959616e-06,5.254020669188387246e-06,5.376207196378814876e-06,5.498393723569242506e-06,5.620580250759670136e-06,5.742766777950097766e-06,5.864953305140525396e-06,5.987139832330953026e-06,6.109326359521380656e-06,6.231512886711808286e-06,6.353699413902235916e-06,6.475885941092663546e-06,6.598072468283091176e-06,6.720258995473518806e-06,6.842445522663946436e-06,6.964632049854374066e-06,7.086818577044801697e-06,7.209005104235229327e-06,7.331191631425656957e-06,7.453378158616084587e-06,7.575564685806512217e-06,7.697751212996939847e-06 +0.000000000000000000e+00,1.214939123076129727e-07,2.429878246152259454e-07,3.644817369228388916e-07,4.859756492304517849e-07,6.074695615380646782e-07,7.289634738456775715e-07,8.504573861532904647e-07,9.719512984609033580e-07,1.093445210768516251e-06,1.214939123076129145e-06,1.336433035383742038e-06,1.457926947691354931e-06,1.579420859998967824e-06,1.700914772306580718e-06,1.822408684614193611e-06,1.943902596921806293e-06,2.065396509229418974e-06,2.186890421537031656e-06,2.308384333844644337e-06,2.429878246152257019e-06,2.551372158459869700e-06,2.672866070767482382e-06,2.794359983075095063e-06,2.915853895382707745e-06,3.037347807690320426e-06,3.158841719997933108e-06,3.280335632305545789e-06,3.401829544613158471e-06,3.523323456920771152e-06,3.644817369228383834e-06,3.766311281535996515e-06,3.887805193843609197e-06,4.009299106151222302e-06,4.130793018458835407e-06,4.252286930766448512e-06,4.373780843074061617e-06,4.495274755381674722e-06,4.616768667689287827e-06,4.738262579996900932e-06,4.859756492304514037e-06,4.981250404612127142e-06,5.102744316919740247e-06,5.224238229227353352e-06,5.345732141534966457e-06,5.467226053842579562e-06,5.588719966150192667e-06,5.710213878457805773e-06,5.831707790765418878e-06,5.953201703073031983e-06,6.074695615380645088e-06,6.196189527688258193e-06,6.317683439995871298e-06,6.439177352303484403e-06,6.560671264611097508e-06,6.682165176918710613e-06,6.803659089226323718e-06,6.925153001533936823e-06,7.046646913841549928e-06,7.168140826149163033e-06,7.289634738456776138e-06,7.411128650764389243e-06,7.532622563072002348e-06,7.654116475379615453e-06 +0.000000000000000000e+00,1.217082245846197966e-07,2.434164491692395931e-07,3.651246737538593632e-07,4.868328983384790804e-07,6.085411229230987975e-07,7.302493475077185147e-07,8.519575720923382319e-07,9.736657966769579490e-07,1.095374021261577560e-06,1.217082245846197172e-06,1.338790470430816783e-06,1.460498695015436394e-06,1.582206919600056005e-06,1.703915144184675617e-06,1.825623368769295228e-06,1.947331593353914627e-06,2.069039817938534027e-06,2.190748042523153427e-06,2.312456267107772826e-06,2.434164491692392226e-06,2.555872716277011625e-06,2.677580940861631025e-06,2.799289165446250424e-06,2.920997390030869824e-06,3.042705614615489223e-06,3.164413839200108623e-06,3.286122063784728022e-06,3.407830288369347422e-06,3.529538512953966821e-06,3.651246737538586221e-06,3.772954962123205620e-06,3.894663186707825020e-06,4.016371411292444843e-06,4.138079635877064666e-06,4.259787860461684489e-06,4.381496085046304312e-06,4.503204309630924135e-06,4.624912534215543958e-06,4.746620758800163781e-06,4.868328983384783604e-06,4.990037207969403427e-06,5.111745432554023250e-06,5.233453657138643073e-06,5.355161881723262896e-06,5.476870106307882719e-06,5.598578330892502542e-06,5.720286555477122365e-06,5.841994780061742188e-06,5.963703004646362011e-06,6.085411229230981834e-06,6.207119453815601658e-06,6.328827678400221481e-06,6.450535902984841304e-06,6.572244127569461127e-06,6.693952352154080950e-06,6.815660576738700773e-06,6.937368801323320596e-06,7.059077025907940419e-06,7.180785250492560242e-06,7.302493475077180065e-06,7.424201699661799888e-06,7.545909924246419711e-06,7.667618148831039534e-06 +0.000000000000000000e+00,1.221865271904188421e-07,2.443730543808376842e-07,3.665595815712565263e-07,4.887461087616753684e-07,6.109326359520942105e-07,7.331191631425130526e-07,8.553056903329318947e-07,9.774922175233507368e-07,1.099678744713769473e-06,1.221865271904188209e-06,1.344051799094606945e-06,1.466238326285025682e-06,1.588424853475444418e-06,1.710611380665863154e-06,1.832797907856281890e-06,1.954984435046700626e-06,2.077170962237119363e-06,2.199357489427538099e-06,2.321544016617956835e-06,2.443730543808375571e-06,2.565917070998794308e-06,2.688103598189213044e-06,2.810290125379631780e-06,2.932476652570050516e-06,3.054663179760469252e-06,3.176849706950887989e-06,3.299036234141306725e-06,3.421222761331725461e-06,3.543409288522144197e-06,3.665595815712562934e-06,3.787782342902981670e-06,3.909968870093400406e-06,4.032155397283819566e-06,4.154341924474238725e-06,4.276528451664657885e-06,4.398714978855077045e-06,4.520901506045496205e-06,4.643088033235915364e-06,4.765274560426334524e-06,4.887461087616753684e-06,5.009647614807172844e-06,5.131834141997592003e-06,5.254020669188011163e-06,5.376207196378430323e-06,5.498393723568849482e-06,5.620580250759268642e-06,5.742766777949687802e-06,5.864953305140106962e-06,5.987139832330526121e-06,6.109326359520945281e-06,6.231512886711364441e-06,6.353699413901783601e-06,6.475885941092202760e-06,6.598072468282621920e-06,6.720258995473041080e-06,6.842445522663460240e-06,6.964632049853879399e-06,7.086818577044298559e-06,7.209005104234717719e-06,7.331191631425136878e-06,7.453378158615556038e-06,7.575564685805975198e-06,7.697751212996394358e-06 +0.000000000000000000e+00,1.232971790700693543e-07,2.465943581401387087e-07,3.698915372102080630e-07,4.931887162802774174e-07,6.164858953503467188e-07,7.397830744204160202e-07,8.630802534904853216e-07,9.863774325605546230e-07,1.109674611630623924e-06,1.232971790700693226e-06,1.356268969770762527e-06,1.479566148840831829e-06,1.602863327910901130e-06,1.726160506980970431e-06,1.849457686051039733e-06,1.972754865121108822e-06,2.096052044191178124e-06,2.219349223261247425e-06,2.342646402331316727e-06,2.465943581401386028e-06,2.589240760471455329e-06,2.712537939541524631e-06,2.835835118611593932e-06,2.959132297681663234e-06,3.082429476751732535e-06,3.205726655821801836e-06,3.329023834891871138e-06,3.452321013961940439e-06,3.575618193032009741e-06,3.698915372102079042e-06,3.822212551172148343e-06,3.945509730242217645e-06,4.068806909312286946e-06,4.192104088382356248e-06,4.315401267452425549e-06,4.438698446522494850e-06,4.561995625592564152e-06,4.685292804662633453e-06,4.808589983732702755e-06,4.931887162802772056e-06,5.055184341872841357e-06,5.178481520942910659e-06,5.301778700012979960e-06,5.425075879083049262e-06,5.548373058153118563e-06,5.671670237223187865e-06,5.794967416293257166e-06,5.918264595363326467e-06,6.041561774433395769e-06,6.164858953503465070e-06,6.288156132573534372e-06,6.411453311643603673e-06,6.534750490713672974e-06,6.658047669783742276e-06,6.781344848853811577e-06,6.904642027923880879e-06,7.027939206993950180e-06,7.151236386064019481e-06,7.274533565134088783e-06,7.397830744204158084e-06,7.521127923274227386e-06,7.644425102344296687e-06,7.767722281414365988e-06 +0.000000000000000000e+00,1.232971790700606987e-07,2.465943581401213974e-07,3.698915372101820697e-07,4.931887162802426890e-07,6.164858953503033083e-07,7.397830744203639276e-07,8.630802534904245470e-07,9.863774325604851663e-07,1.109674611630545786e-06,1.232971790700606405e-06,1.356268969770667024e-06,1.479566148840727644e-06,1.602863327910788263e-06,1.726160506980848882e-06,1.849457686050909501e-06,1.972754865120969909e-06,2.096052044191030317e-06,2.219349223261090724e-06,2.342646402331151132e-06,2.465943581401211539e-06,2.589240760471271947e-06,2.712537939541332354e-06,2.835835118611392762e-06,2.959132297681453169e-06,3.082429476751513577e-06,3.205726655821573985e-06,3.329023834891634392e-06,3.452321013961694800e-06,3.575618193031755207e-06,3.698915372101815615e-06,3.822212551171875599e-06,3.945509730241935583e-06,4.068806909311995567e-06,4.192104088382055551e-06,4.315401267452115535e-06,4.438698446522175519e-06,4.561995625592235503e-06,4.685292804662295487e-06,4.808589983732355471e-06,4.931887162802415455e-06,5.055184341872475439e-06,5.178481520942535423e-06,5.301778700012595407e-06,5.425075879082655391e-06,5.548373058152715375e-06,5.671670237222775359e-06,5.794967416292835344e-06,5.918264595362895328e-06,6.041561774432955312e-06,6.164858953503015296e-06,6.288156132573075280e-06,6.411453311643135264e-06,6.534750490713195248e-06,6.658047669783255232e-06,6.781344848853315216e-06,6.904642027923375200e-06,7.027939206993435184e-06,7.151236386063495168e-06,7.274533565133555152e-06,7.397830744203615136e-06,7.521127923273675120e-06,7.644425102343734257e-06,7.767722281413793394e-06 +0.000000000000000000e+00,1.254017227277336217e-07,2.508034454554672434e-07,3.762051681832008387e-07,5.016068909109343810e-07,6.270086136386679233e-07,7.524103363664014656e-07,8.778120590941350079e-07,1.003213781821868550e-06,1.128615504549601987e-06,1.254017227277335423e-06,1.379418950005068860e-06,1.504820672732802296e-06,1.630222395460535732e-06,1.755624118188269169e-06,1.881025840916002605e-06,2.006427563643735830e-06,2.131829286371469055e-06,2.257231009099202279e-06,2.382632731826935504e-06,2.508034454554668729e-06,2.633436177282401953e-06,2.758837900010135178e-06,2.884239622737868403e-06,3.009641345465601627e-06,3.135043068193334852e-06,3.260444790921068077e-06,3.385846513648801301e-06,3.511248236376534526e-06,3.636649959104267751e-06,3.762051681832000975e-06,3.887453404559734200e-06,4.012855127287467425e-06,4.138256850015200649e-06,4.263658572742933874e-06,4.389060295470667099e-06,4.514462018198400323e-06,4.639863740926133548e-06,4.765265463653866773e-06,4.890667186381599997e-06,5.016068909109333222e-06,5.141470631837066447e-06,5.266872354564799671e-06,5.392274077292532896e-06,5.517675800020266121e-06,5.643077522747999346e-06,5.768479245475732570e-06,5.893880968203465795e-06,6.019282690931199020e-06,6.144684413658932244e-06,6.270086136386665469e-06,6.395487859114398694e-06,6.520889581842131918e-06,6.646291304569865143e-06,6.771693027297598368e-06,6.897094750025331592e-06,7.022496472753064817e-06,7.147898195480798042e-06,7.273299918208531266e-06,7.398701640936264491e-06,7.524103363663997716e-06,7.649505086391731787e-06,7.774906809119466706e-06,7.900308531847201625e-06 +0.000000000000000000e+00,1.254017227277245426e-07,2.508034454554490852e-07,3.762051681831736278e-07,5.016068909108981703e-07,6.270086136386227129e-07,7.524103363663472555e-07,8.778120590940717981e-07,1.003213781821796341e-06,1.128615504549520883e-06,1.254017227277245426e-06,1.379418950004969968e-06,1.504820672732694511e-06,1.630222395460419054e-06,1.755624118188143596e-06,1.881025840915868139e-06,2.006427563643592681e-06,2.131829286371317436e-06,2.257231009099042190e-06,2.382632731826766944e-06,2.508034454554491699e-06,2.633436177282216453e-06,2.758837900009941207e-06,2.884239622737665962e-06,3.009641345465390716e-06,3.135043068193115470e-06,3.260444790920840225e-06,3.385846513648564979e-06,3.511248236376289734e-06,3.636649959104014488e-06,3.762051681831739242e-06,3.887453404559463997e-06,4.012855127287188751e-06,4.138256850014913505e-06,4.263658572742638260e-06,4.389060295470363014e-06,4.514462018198087768e-06,4.639863740925812523e-06,4.765265463653537277e-06,4.890667186381262031e-06,5.016068909108986786e-06,5.141470631836711540e-06,5.266872354564436294e-06,5.392274077292161049e-06,5.517675800019885803e-06,5.643077522747610557e-06,5.768479245475335312e-06,5.893880968203060066e-06,6.019282690930784820e-06,6.144684413658509575e-06,6.270086136386234329e-06,6.395487859113959083e-06,6.520889581841683838e-06,6.646291304569408592e-06,6.771693027297133346e-06,6.897094750024858101e-06,7.022496472752582855e-06,7.147898195480307610e-06,7.273299918208032364e-06,7.398701640935757118e-06,7.524103363663481873e-06,7.649505086391206627e-06,7.774906809118931381e-06,7.900308531846656136e-06 +0.000000000000000000e+00,1.282035691490977827e-07,2.564071382981955655e-07,3.846107074472933482e-07,5.128142765963911309e-07,6.410178457454888607e-07,7.692214148945865905e-07,8.974249840436843203e-07,1.025628553192782050e-06,1.153832122341879780e-06,1.282035691490977510e-06,1.410239260640075239e-06,1.538442829789172969e-06,1.666646398938270699e-06,1.794849968087368429e-06,1.923053537236465947e-06,2.051257106385563677e-06,2.179460675534661406e-06,2.307664244683759136e-06,2.435867813832856866e-06,2.564071382981954596e-06,2.692274952131052326e-06,2.820478521280150055e-06,2.948682090429247785e-06,3.076885659578345515e-06,3.205089228727443245e-06,3.333292797876540975e-06,3.461496367025638704e-06,3.589699936174736434e-06,3.717903505323834164e-06,3.846107074472931894e-06,3.974310643622029624e-06,4.102514212771127353e-06,4.230717781920225083e-06,4.358921351069322813e-06,4.487124920218420543e-06,4.615328489367518273e-06,4.743532058516616002e-06,4.871735627665713732e-06,4.999939196814811462e-06,5.128142765963909192e-06,5.256346335113006921e-06,5.384549904262104651e-06,5.512753473411202381e-06,5.640957042560300111e-06,5.769160611709397841e-06,5.897364180858495570e-06,6.025567750007593300e-06,6.153771319156691030e-06,6.281974888305788760e-06,6.410178457454886490e-06,6.538382026603984219e-06,6.666585595753081949e-06,6.794789164902179679e-06,6.922992734051277409e-06,7.051196303200375139e-06,7.179399872349472868e-06,7.307603441498570598e-06,7.435807010647668328e-06,7.564010579796766058e-06,7.692214148945863788e-06,7.820417718094961517e-06,7.948621287244059247e-06,8.076824856393156977e-06 +0.000000000000000000e+00,1.282035691490894977e-07,2.564071382981789954e-07,3.846107074472685195e-07,5.128142765963580966e-07,6.410178457454476737e-07,7.692214148945372508e-07,8.974249840436268279e-07,1.025628553192716405e-06,1.153832122341805876e-06,1.282035691490895347e-06,1.410239260639984819e-06,1.538442829789074290e-06,1.666646398938163761e-06,1.794849968087253232e-06,1.923053537236342704e-06,2.051257106385432387e-06,2.179460675534522070e-06,2.307664244683611753e-06,2.435867813832701435e-06,2.564071382981791118e-06,2.692274952130880801e-06,2.820478521279970484e-06,2.948682090429060167e-06,3.076885659578149850e-06,3.205089228727239533e-06,3.333292797876329216e-06,3.461496367025418899e-06,3.589699936174508582e-06,3.717903505323598265e-06,3.846107074472687948e-06,3.974310643621777208e-06,4.102514212770866467e-06,4.230717781919955727e-06,4.358921351069044986e-06,4.487124920218134246e-06,4.615328489367223505e-06,4.743532058516312764e-06,4.871735627665402024e-06,4.999939196814491283e-06,5.128142765963580543e-06,5.256346335112669802e-06,5.384549904261759062e-06,5.512753473410848321e-06,5.640957042559937581e-06,5.769160611709026840e-06,5.897364180858116100e-06,6.025567750007205359e-06,6.153771319156294619e-06,6.281974888305383878e-06,6.410178457454473138e-06,6.538382026603562397e-06,6.666585595752651656e-06,6.794789164901740916e-06,6.922992734050830175e-06,7.051196303199919435e-06,7.179399872349008694e-06,7.307603441498097954e-06,7.435807010647187213e-06,7.564010579796276473e-06,7.692214148945365732e-06,7.820417718094454992e-06,7.948621287243544251e-06,8.076824856392633511e-06 +0.000000000000000000e+00,1.314574190799686933e-07,2.629148381599373865e-07,3.943722572399060798e-07,5.258296763198747731e-07,6.572870953998435193e-07,7.887445144798122655e-07,9.202019335597810117e-07,1.051659352639749758e-06,1.183116771719718504e-06,1.314574190799687250e-06,1.446031609879655997e-06,1.577489028959624743e-06,1.708946448039593489e-06,1.840403867119562235e-06,1.971861286199530981e-06,2.103318705279499939e-06,2.234776124359468897e-06,2.366233543439437855e-06,2.497690962519406813e-06,2.629148381599375771e-06,2.760605800679344729e-06,2.892063219759313687e-06,3.023520638839282645e-06,3.154978057919251603e-06,3.286435476999220561e-06,3.417892896079189519e-06,3.549350315159158477e-06,3.680807734239127435e-06,3.812265153319096393e-06,3.943722572399065351e-06,4.075179991479034732e-06,4.206637410559004114e-06,4.338094829638973495e-06,4.469552248718942877e-06,4.601009667798912258e-06,4.732467086878881640e-06,4.863924505958851021e-06,4.995381925038820403e-06,5.126839344118789784e-06,5.258296763198759166e-06,5.389754182278728547e-06,5.521211601358697929e-06,5.652669020438667310e-06,5.784126439518636692e-06,5.915583858598606073e-06,6.047041277678575455e-06,6.178498696758544836e-06,6.309956115838514217e-06,6.441413534918483599e-06,6.572870953998452980e-06,6.704328373078422362e-06,6.835785792158391743e-06,6.967243211238361125e-06,7.098700630318330506e-06,7.230158049398299888e-06,7.361615468478269269e-06,7.493072887558238651e-06,7.624530306638208032e-06,7.755987725718177414e-06,7.887445144798145948e-06,8.018902563878114483e-06,8.150359982958083017e-06,8.281817402038051552e-06 +0.000000000000000000e+00,1.314574190799615729e-07,2.629148381599231458e-07,3.943722572398847452e-07,5.258296763198463975e-07,6.572870953998080498e-07,7.887445144797697021e-07,9.202019335597313544e-07,1.051659352639693007e-06,1.183116771719654553e-06,1.314574190799616100e-06,1.446031609879577646e-06,1.577489028959539192e-06,1.708946448039500739e-06,1.840403867119462285e-06,1.971861286199423832e-06,2.103318705279385590e-06,2.234776124359347348e-06,2.366233543439309106e-06,2.497690962519270864e-06,2.629148381599232623e-06,2.760605800679194381e-06,2.892063219759156139e-06,3.023520638839117897e-06,3.154978057919079655e-06,3.286435476999041414e-06,3.417892896079003172e-06,3.549350315158964930e-06,3.680807734238926688e-06,3.812265153318888446e-06,3.943722572398850204e-06,4.075179991478811963e-06,4.206637410558773721e-06,4.338094829638735479e-06,4.469552248718697237e-06,4.601009667798658995e-06,4.732467086878620754e-06,4.863924505958582512e-06,4.995381925038544270e-06,5.126839344118506028e-06,5.258296763198467786e-06,5.389754182278429544e-06,5.521211601358391303e-06,5.652669020438353061e-06,5.784126439518314819e-06,5.915583858598276577e-06,6.047041277678238335e-06,6.178498696758200094e-06,6.309956115838161852e-06,6.441413534918123610e-06,6.572870953998085368e-06,6.704328373078047126e-06,6.835785792158008884e-06,6.967243211237970643e-06,7.098700630317932401e-06,7.230158049397894159e-06,7.361615468477855917e-06,7.493072887557817675e-06,7.624530306637779434e-06,7.755987725717740345e-06,7.887445144797702103e-06,8.018902563877663861e-06,8.150359982957625619e-06,8.281817402037587377e-06 +0.000000000000000000e+00,1.349966714229673304e-07,2.699933428459346607e-07,4.049900142689019646e-07,5.399866856918692155e-07,6.749833571148364665e-07,8.099800285378037174e-07,9.449766999607709684e-07,1.079973371383738219e-06,1.214970042806705470e-06,1.349966714229672721e-06,1.484963385652639972e-06,1.619960057075607223e-06,1.754956728498574474e-06,1.889953399921541725e-06,2.024950071344508976e-06,2.159946742767476015e-06,2.294943414190443054e-06,2.429940085613410093e-06,2.564936757036377133e-06,2.699933428459344172e-06,2.834930099882311211e-06,2.969926771305278250e-06,3.104923442728245289e-06,3.239920114151212329e-06,3.374916785574179368e-06,3.509913456997146407e-06,3.644910128420113446e-06,3.779906799843080485e-06,3.914903471266047101e-06,4.049900142689013717e-06,4.184896814111980332e-06,4.319893485534946948e-06,4.454890156957913564e-06,4.589886828380880179e-06,4.724883499803846795e-06,4.859880171226813411e-06,4.994876842649780026e-06,5.129873514072746642e-06,5.264870185495713258e-06,5.399866856918679873e-06,5.534863528341646489e-06,5.669860199764613105e-06,5.804856871187579720e-06,5.939853542610546336e-06,6.074850214033512952e-06,6.209846885456479567e-06,6.344843556879446183e-06,6.479840228302412799e-06,6.614836899725379414e-06,6.749833571148346030e-06,6.884830242571312646e-06,7.019826913994279261e-06,7.154823585417245877e-06,7.289820256840212493e-06,7.424816928263179108e-06,7.559813599686145724e-06,7.694810271109112340e-06,7.829806942532078955e-06,7.964803613955045571e-06,8.099800285378012187e-06,8.234796956800978802e-06,8.369793628223945418e-06,8.504790299646912034e-06 +0.000000000000000000e+00,1.349966714229610570e-07,2.699933428459221140e-07,4.049900142688831710e-07,5.399866856918442281e-07,6.749833571148053380e-07,8.099800285377664480e-07,9.449766999607275579e-07,1.079973371383688668e-06,1.214970042806649778e-06,1.349966714229610888e-06,1.484963385652571998e-06,1.619960057075533108e-06,1.754956728498494218e-06,1.889953399921455328e-06,2.024950071344416226e-06,2.159946742767376912e-06,2.294943414190337599e-06,2.429940085613298285e-06,2.564936757036258972e-06,2.699933428459219658e-06,2.834930099882180344e-06,2.969926771305141031e-06,3.104923442728101717e-06,3.239920114151062404e-06,3.374916785574023090e-06,3.509913456996983777e-06,3.644910128419944463e-06,3.779906799842905149e-06,3.914903471265865836e-06,4.049900142688826522e-06,4.184896814111787209e-06,4.319893485534747895e-06,4.454890156957708582e-06,4.589886828380669268e-06,4.724883499803629955e-06,4.859880171226590641e-06,4.994876842649551327e-06,5.129873514072512014e-06,5.264870185495472700e-06,5.399866856918433387e-06,5.534863528341394073e-06,5.669860199764354760e-06,5.804856871187315446e-06,5.939853542610276132e-06,6.074850214033236819e-06,6.209846885456197505e-06,6.344843556879158192e-06,6.479840228302118878e-06,6.614836899725079565e-06,6.749833571148040251e-06,6.884830242571000937e-06,7.019826913993961624e-06,7.154823585416922310e-06,7.289820256839882997e-06,7.424816928262843683e-06,7.559813599685804370e-06,7.694810271108765056e-06,7.829806942531724896e-06,7.964803613954684735e-06,8.099800285377644574e-06,8.234796956800604414e-06,8.369793628223564253e-06,8.504790299646524093e-06 +0.000000000000000000e+00,1.387100236267196314e-07,2.774200472534392628e-07,4.161300708801588677e-07,5.548400945068784197e-07,6.935501181335979716e-07,8.322601417603175236e-07,9.709701653870370756e-07,1.109680189013756628e-06,1.248390212640476180e-06,1.387100236267195732e-06,1.525810259893915283e-06,1.664520283520634835e-06,1.803230307147354387e-06,1.941940330774074151e-06,2.080650354400793915e-06,2.219360378027513679e-06,2.358070401654233442e-06,2.496780425280953206e-06,2.635490448907672970e-06,2.774200472534392734e-06,2.912910496161112497e-06,3.051620519787832261e-06,3.190330543414552025e-06,3.329040567041271789e-06,3.467750590667991552e-06,3.606460614294711316e-06,3.745170637921431080e-06,3.883880661548150843e-06,4.022590685174870184e-06,4.161300708801589524e-06,4.300010732428308864e-06,4.438720756055028204e-06,4.577430779681747545e-06,4.716140803308466885e-06,4.854850826935186225e-06,4.993560850561905565e-06,5.132270874188624905e-06,5.270980897815344246e-06,5.409690921442063586e-06,5.548400945068782926e-06,5.687110968695502266e-06,5.825820992322221606e-06,5.964531015948940947e-06,6.103241039575660287e-06,6.241951063202379627e-06,6.380661086829098967e-06,6.519371110455818308e-06,6.658081134082537648e-06,6.796791157709256988e-06,6.935501181335976328e-06,7.074211204962695668e-06,7.212921228589415009e-06,7.351631252216134349e-06,7.490341275842853689e-06,7.629051299469573029e-06,7.767761323096293217e-06,7.906471346723013404e-06,8.045181370349733591e-06,8.183891393976453778e-06,8.322601417603173966e-06,8.461311441229894153e-06,8.600021464856614340e-06,8.738731488483334527e-06 +0.000000000000000000e+00,1.387100236267146551e-07,2.774200472534293101e-07,4.161300708801439387e-07,5.548400945068585144e-07,6.935501181335730900e-07,8.322601417602876657e-07,9.709701653870023472e-07,1.109680189013717029e-06,1.248390212640431710e-06,1.387100236267146392e-06,1.525810259893861073e-06,1.664520283520575755e-06,1.803230307147290436e-06,1.941940330774005118e-06,2.080650354400719800e-06,2.219360378027434481e-06,2.358070401654149163e-06,2.496780425280863844e-06,2.635490448907578526e-06,2.774200472534293207e-06,2.912910496161007889e-06,3.051620519787722570e-06,3.190330543414437252e-06,3.329040567041151933e-06,3.467750590667866615e-06,3.606460614294581296e-06,3.745170637921295978e-06,3.883880661548011083e-06,4.022590685174726188e-06,4.161300708801441293e-06,4.300010732428156398e-06,4.438720756054871503e-06,4.577430779681586608e-06,4.716140803308301713e-06,4.854850826935016818e-06,4.993560850561731923e-06,5.132270874188447028e-06,5.270980897815162134e-06,5.409690921441877239e-06,5.548400945068592344e-06,5.687110968695307449e-06,5.825820992322022554e-06,5.964531015948737659e-06,6.103241039575452764e-06,6.241951063202167869e-06,6.380661086828882974e-06,6.519371110455598079e-06,6.658081134082313184e-06,6.796791157709028289e-06,6.935501181335743394e-06,7.074211204962458499e-06,7.212921228589173604e-06,7.351631252215888709e-06,7.490341275842603814e-06,7.629051299469318919e-06,7.767761323096034024e-06,7.906471346722749130e-06,8.045181370349464235e-06,8.183891393976179340e-06,8.322601417602894445e-06,8.461311441229609550e-06,8.600021464856324655e-06,8.738731488483039760e-06 +0.000000000000000000e+00,1.425210151610289945e-07,2.850420303220579890e-07,4.275630454830869571e-07,5.700840606441158722e-07,7.126050758051447873e-07,8.551260909661737024e-07,9.976471061272027234e-07,1.140168121288231744e-06,1.282689136449260765e-06,1.425210151610289786e-06,1.567731166771318807e-06,1.710252181932347828e-06,1.852773197093376849e-06,1.995294212254405870e-06,2.137815227415434891e-06,2.280336242576463912e-06,2.422857257737492933e-06,2.565378272898521954e-06,2.707899288059550975e-06,2.850420303220579996e-06,2.992941318381609017e-06,3.135462333542638038e-06,3.277983348703667059e-06,3.420504363864696080e-06,3.563025379025725101e-06,3.705546394186754122e-06,3.848067409347783567e-06,3.990588424508812587e-06,4.133109439669841608e-06,4.275630454830870629e-06,4.418151469991899650e-06,4.560672485152928671e-06,4.703193500313957692e-06,4.845714515474986713e-06,4.988235530636015734e-06,5.130756545797044755e-06,5.273277560958073776e-06,5.415798576119102797e-06,5.558319591280131818e-06,5.700840606441160839e-06,5.843361621602189860e-06,5.985882636763218881e-06,6.128403651924247902e-06,6.270924667085276923e-06,6.413445682246305944e-06,6.555966697407334965e-06,6.698487712568363986e-06,6.841008727729393007e-06,6.983529742890422028e-06,7.126050758051451049e-06,7.268571773212480070e-06,7.411092788373509091e-06,7.553613803534538112e-06,7.696134818695567133e-06,7.838655833856596154e-06,7.981176849017625175e-06,8.123697864178654196e-06,8.266218879339683217e-06,8.408739894500712238e-06,8.551260909661741259e-06,8.693781924822770280e-06,8.836302939983799301e-06,8.978823955144828322e-06 +0.000000000000000000e+00,1.425210151610252093e-07,2.850420303220504187e-07,4.275630454830756280e-07,5.700840606441008373e-07,7.126050758051260467e-07,8.551260909661512560e-07,9.976471061271764653e-07,1.140168121288201675e-06,1.282689136449226884e-06,1.425210151610252093e-06,1.567731166771277303e-06,1.710252181932302512e-06,1.852773197093327721e-06,1.995294212254352931e-06,2.137815227415378140e-06,2.280336242576403349e-06,2.422857257737428559e-06,2.565378272898453768e-06,2.707899288059478977e-06,2.850420303220504187e-06,2.992941318381529396e-06,3.135462333542554605e-06,3.277983348703579815e-06,3.420504363864605024e-06,3.563025379025630233e-06,3.705546394186655443e-06,3.848067409347680228e-06,3.990588424508705014e-06,4.133109439669729800e-06,4.275630454830754586e-06,4.418151469991779372e-06,4.560672485152804158e-06,4.703193500313828943e-06,4.845714515474853729e-06,4.988235530635878515e-06,5.130756545796903301e-06,5.273277560957928087e-06,5.415798576118952872e-06,5.558319591279977658e-06,5.700840606441002444e-06,5.843361621602027230e-06,5.985882636763052016e-06,6.128403651924076802e-06,6.270924667085101587e-06,6.413445682246126373e-06,6.555966697407151159e-06,6.698487712568175945e-06,6.841008727729200731e-06,6.983529742890225516e-06,7.126050758051250302e-06,7.268571773212275088e-06,7.411092788373299874e-06,7.553613803534324660e-06,7.696134818695350293e-06,7.838655833856375925e-06,7.981176849017401558e-06,8.123697864178427191e-06,8.266218879339452824e-06,8.408739894500478457e-06,8.551260909661504090e-06,8.693781924822529723e-06,8.836302939983555355e-06,8.978823955144580988e-06 +0.000000000000000000e+00,1.416057458279700000e-07,2.832114916559399999e-07,4.248172374839100263e-07,5.664229833118801057e-07,7.080287291398501851e-07,8.496344749678202645e-07,9.912402207957903438e-07,1.132845966623760423e-06,1.274451712451730503e-06,1.416057458279700582e-06,1.557663204107670661e-06,1.699268949935640741e-06,1.840874695763610820e-06,1.982480441591581111e-06,2.124086187419551191e-06,2.265691933247521270e-06,2.407297679075491349e-06,2.548903424903461429e-06,2.690509170731431508e-06,2.832114916559401587e-06,2.973720662387371667e-06,3.115326408215341746e-06,3.256932154043311825e-06,3.398537899871281905e-06,3.540143645699251984e-06,3.681749391527222064e-06,3.823355137355192143e-06,3.964960883183162222e-06,4.106566629011132302e-06,4.248172374839102381e-06,4.389778120667072460e-06,4.531383866495042540e-06,4.672989612323012619e-06,4.814595358150982699e-06,4.956201103978952778e-06,5.097806849806922857e-06,5.239412595634892937e-06,5.381018341462863016e-06,5.522624087290833095e-06,5.664229833118803175e-06,5.805835578946773254e-06,5.947441324774743333e-06,6.089047070602713413e-06,6.230652816430683492e-06,6.372258562258653572e-06,6.513864308086623651e-06,6.655470053914593730e-06,6.797075799742563810e-06,6.938681545570533889e-06,7.080287291398503968e-06,7.221893037226474048e-06,7.363498783054444127e-06,7.505104528882414207e-06,7.646710274710384286e-06,7.788316020538355212e-06,7.929921766366326139e-06,8.071527512194297065e-06,8.213133258022267992e-06,8.354739003850238918e-06,8.496344749678209844e-06,8.637950495506180771e-06,8.779556241334151697e-06,8.921161987162122624e-06 +0.000000000000000000e+00,1.380853515982500117e-07,2.761707031965000233e-07,4.142560547947500350e-07,5.523414063930000466e-07,6.904267579912500053e-07,8.285121095894999641e-07,9.665974611877499228e-07,1.104682812785999881e-06,1.242768164384249840e-06,1.380853515982499799e-06,1.518938867580749758e-06,1.657024219178999716e-06,1.795109570777249675e-06,1.933194922375499422e-06,2.071280273973748957e-06,2.209365625571998492e-06,2.347450977170248028e-06,2.485536328768497563e-06,2.623621680366747098e-06,2.761707031964996633e-06,2.899792383563246168e-06,3.037877735161495704e-06,3.175963086759745239e-06,3.314048438357994774e-06,3.452133789956244309e-06,3.590219141554493844e-06,3.728304493152743380e-06,3.866389844750992915e-06,4.004475196349242450e-06,4.142560547947491985e-06,4.280645899545741520e-06,4.418731251143991056e-06,4.556816602742240591e-06,4.694901954340490126e-06,4.832987305938739661e-06,4.971072657536989196e-06,5.109158009135238732e-06,5.247243360733488267e-06,5.385328712331737802e-06,5.523414063929987337e-06,5.661499415528236872e-06,5.799584767126486408e-06,5.937670118724735943e-06,6.075755470322985478e-06,6.213840821921235013e-06,6.351926173519484548e-06,6.490011525117734084e-06,6.628096876715983619e-06,6.766182228314233154e-06,6.904267579912482689e-06,7.042352931510732224e-06,7.180438283108981760e-06,7.318523634707231295e-06,7.456608986305480830e-06,7.594694337903730365e-06,7.732779689501980747e-06,7.870865041100231130e-06,8.008950392698481512e-06,8.147035744296731894e-06,8.285121095894982276e-06,8.423206447493232659e-06,8.561291799091483041e-06,8.699377150689733423e-06 +0.000000000000000000e+00,1.380846931541176779e-07,2.761693863082353558e-07,4.142540794623530073e-07,5.523387726164706058e-07,6.904234657705882043e-07,8.285081589247058028e-07,9.665928520788232955e-07,1.104677545232940788e-06,1.242762238387058281e-06,1.380846931541175773e-06,1.518931624695293266e-06,1.657016317849410759e-06,1.795101011003528251e-06,1.933185704157645744e-06,2.071270397311763237e-06,2.209355090465880729e-06,2.347439783619998222e-06,2.485524476774115714e-06,2.623609169928233207e-06,2.761693863082350700e-06,2.899778556236468192e-06,3.037863249390585685e-06,3.175947942544703178e-06,3.314032635698820670e-06,3.452117328852938163e-06,3.590202022007055656e-06,3.728286715161173148e-06,3.866371408315290641e-06,4.004456101469408133e-06,4.142540794623525626e-06,4.280625487777643119e-06,4.418710180931760611e-06,4.556794874085878104e-06,4.694879567239995597e-06,4.832964260394113089e-06,4.971048953548230582e-06,5.109133646702348075e-06,5.247218339856465567e-06,5.385303033010583060e-06,5.523387726164700552e-06,5.661472419318818045e-06,5.799557112472935538e-06,5.937641805627053030e-06,6.075726498781170523e-06,6.213811191935288016e-06,6.351895885089405508e-06,6.489980578243523001e-06,6.628065271397640494e-06,6.766149964551757986e-06,6.904234657705875479e-06,7.042319350859992971e-06,7.180404044014110464e-06,7.318488737168227957e-06,7.456573430322345449e-06,7.594658123476462942e-06,7.732742816630579588e-06,7.870827509784695386e-06,8.008912202938811185e-06,8.146996896092926983e-06,8.285081589247042782e-06,8.423166282401158580e-06,8.561250975555274379e-06,8.699335668709390178e-06 +0.000000000000000000e+00,1.393352654403008071e-07,2.786705308806016141e-07,4.180057963209024212e-07,5.573410617612032283e-07,6.966763272015040883e-07,8.360115926418049483e-07,9.753468580821058083e-07,1.114682123522406668e-06,1.254017388962707528e-06,1.393352654403008388e-06,1.532687919843309248e-06,1.672023185283610108e-06,1.811358450723910968e-06,1.950693716164212040e-06,2.090028981604513324e-06,2.229364247044814607e-06,2.368699512485115891e-06,2.508034777925417174e-06,2.647370043365718458e-06,2.786705308806019741e-06,2.926040574246321025e-06,3.065375839686622308e-06,3.204711105126923592e-06,3.344046370567224875e-06,3.483381636007526159e-06,3.622716901447827442e-06,3.762052166888128726e-06,3.901387432328430010e-06,4.040722697768731293e-06,4.180057963209032577e-06,4.319393228649333860e-06,4.458728494089635144e-06,4.598063759529936427e-06,4.737399024970237711e-06,4.876734290410538994e-06,5.016069555850840278e-06,5.155404821291141561e-06,5.294740086731442845e-06,5.434075352171744128e-06,5.573410617612045412e-06,5.712745883052346695e-06,5.852081148492647979e-06,5.991416413932949262e-06,6.130751679373250546e-06,6.270086944813551829e-06,6.409422210253853113e-06,6.548757475694154397e-06,6.688092741134455680e-06,6.827428006574756964e-06,6.966763272015058247e-06,7.106098537455359531e-06,7.245433802895660814e-06,7.384769068335962098e-06,7.524104333776263381e-06,7.663439599216563818e-06,7.802774864656865101e-06,7.942110130097166385e-06,8.081445395537467668e-06,8.220780660977768952e-06,8.360115926418070235e-06,8.499451191858371519e-06,8.638786457298672802e-06,8.778121722738974086e-06 +0.000000000000000000e+00,1.400733190386690182e-07,2.801466380773380364e-07,4.202199571160070811e-07,5.602932761546761788e-07,7.003665951933452764e-07,8.404399142320143740e-07,9.805132332706835775e-07,1.120586552309352781e-06,1.260659871348021985e-06,1.400733190386691188e-06,1.540806509425360392e-06,1.680879828464029595e-06,1.820953147502698799e-06,1.961026466541368002e-06,2.101099785580037206e-06,2.241173104618706409e-06,2.381246423657375613e-06,2.521319742696044816e-06,2.661393061734714020e-06,2.801466380773383223e-06,2.941539699812052427e-06,3.081613018850721630e-06,3.221686337889390834e-06,3.361759656928060037e-06,3.501832975966729241e-06,3.641906295005398444e-06,3.781979614044067648e-06,3.922052933082736851e-06,4.062126252121405631e-06,4.202199571160074411e-06,4.342272890198743191e-06,4.482346209237411971e-06,4.622419528276080751e-06,4.762492847314749531e-06,4.902566166353418311e-06,5.042639485392087091e-06,5.182712804430755871e-06,5.322786123469424651e-06,5.462859442508093431e-06,5.602932761546762211e-06,5.743006080585430991e-06,5.883079399624099771e-06,6.023152718662768551e-06,6.163226037701437331e-06,6.303299356740106111e-06,6.443372675778774891e-06,6.583445994817443671e-06,6.723519313856112451e-06,6.863592632894781231e-06,7.003665951933450011e-06,7.143739270972118791e-06,7.283812590010787571e-06,7.423885909049456351e-06,7.563959228088125131e-06,7.704032547126793911e-06,7.844105866165461844e-06,7.984179185204129777e-06,8.124252504242797710e-06,8.264325823281465643e-06,8.404399142320133576e-06,8.544472461358801509e-06,8.684545780397469442e-06,8.824619099436137375e-06 +0.000000000000000000e+00,1.357947341745379090e-07,2.715894683490758180e-07,4.073842025236137271e-07,5.431789366981516361e-07,6.789736708726895451e-07,8.147684050472274541e-07,9.505631392217653631e-07,1.086357873396303272e-06,1.222152607570841181e-06,1.357947341745379090e-06,1.493742075919916999e-06,1.629536810094454908e-06,1.765331544268992817e-06,1.901126278443530726e-06,2.036921012618068423e-06,2.172715746792606121e-06,2.308510480967143818e-06,2.444305215141681515e-06,2.580099949316219213e-06,2.715894683490756910e-06,2.851689417665294607e-06,2.987484151839832304e-06,3.123278886014370002e-06,3.259073620188907699e-06,3.394868354363445396e-06,3.530663088537983093e-06,3.666457822712520791e-06,3.802252556887058488e-06,3.938047291061596185e-06,4.073842025236133459e-06,4.209636759410670733e-06,4.345431493585208006e-06,4.481226227759745280e-06,4.617020961934282554e-06,4.752815696108819828e-06,4.888610430283357101e-06,5.024405164457894375e-06,5.160199898632431649e-06,5.295994632806968923e-06,5.431789366981506196e-06,5.567584101156043470e-06,5.703378835330580744e-06,5.839173569505118018e-06,5.974968303679655291e-06,6.110763037854192565e-06,6.246557772028729839e-06,6.382352506203267112e-06,6.518147240377804386e-06,6.653941974552341660e-06,6.789736708726878934e-06,6.925531442901416207e-06,7.061326177075953481e-06,7.197120911250490755e-06,7.332915645425028029e-06,7.468710379599565302e-06,7.604505113774102576e-06,7.740299847948639003e-06,7.876094582123175430e-06,8.011889316297711856e-06,8.147684050472248283e-06,8.283478784646784710e-06,8.419273518821321136e-06,8.555068252995857563e-06 +0.000000000000000000e+00,1.380844865629550344e-07,2.761689731259100687e-07,4.142534596888651031e-07,5.523379462518201375e-07,6.904224328147752248e-07,8.285069193777303121e-07,9.665914059406853994e-07,1.104675892503640487e-06,1.242760379066595574e-06,1.380844865629550661e-06,1.518929352192505749e-06,1.657013838755460836e-06,1.795098325318415923e-06,1.933182811881370799e-06,2.071267298444325674e-06,2.209351785007280550e-06,2.347436271570235425e-06,2.485520758133190301e-06,2.623605244696145177e-06,2.761689731259100052e-06,2.899774217822054928e-06,3.037858704385009803e-06,3.175943190947964679e-06,3.314027677510919554e-06,3.452112164073874430e-06,3.590196650636829305e-06,3.728281137199784181e-06,3.866365623762739056e-06,4.004450110325694356e-06,4.142534596888649655e-06,4.280619083451604954e-06,4.418703570014560253e-06,4.556788056577515552e-06,4.694872543140470851e-06,4.832957029703426150e-06,4.971041516266381449e-06,5.109126002829336748e-06,5.247210489392292047e-06,5.385294975955247346e-06,5.523379462518202645e-06,5.661463949081157944e-06,5.799548435644113243e-06,5.937632922207068542e-06,6.075717408770023842e-06,6.213801895332979141e-06,6.351886381895934440e-06,6.489970868458889739e-06,6.628055355021845038e-06,6.766139841584800337e-06,6.904224328147755636e-06,7.042308814710710935e-06,7.180393301273666234e-06,7.318477787836621533e-06,7.456562274399576832e-06,7.594646760962532131e-06,7.732731247525486583e-06,7.870815734088441035e-06,8.008900220651395487e-06,8.146984707214349939e-06,8.285069193777304391e-06,8.423153680340258843e-06,8.561238166903213296e-06,8.699322653466167748e-06 +0.000000000000000000e+00,1.357960519810662300e-07,2.715921039621324601e-07,4.073881559431986901e-07,5.431842079242649202e-07,6.789802599053310973e-07,8.147763118863972744e-07,9.505723638674634515e-07,1.086368415848529629e-06,1.222164467829595806e-06,1.357960519810661983e-06,1.493756571791728160e-06,1.629552623772794337e-06,1.765348675753860514e-06,1.901144727734926691e-06,2.036940779715992868e-06,2.172736831697058834e-06,2.308532883678124799e-06,2.444328935659190764e-06,2.580124987640256730e-06,2.715921039621322695e-06,2.851717091602388660e-06,2.987513143583454626e-06,3.123309195564520591e-06,3.259105247545586556e-06,3.394901299526652522e-06,3.530697351507718487e-06,3.666493403488784452e-06,3.802289455469850418e-06,3.938085507450915959e-06,4.073881559431981501e-06,4.209677611413047043e-06,4.345473663394112585e-06,4.481269715375178127e-06,4.617065767356243669e-06,4.752861819337309210e-06,4.888657871318374752e-06,5.024453923299440294e-06,5.160249975280505836e-06,5.296046027261571378e-06,5.431842079242636920e-06,5.567638131223702461e-06,5.703434183204768003e-06,5.839230235185833545e-06,5.975026287166899087e-06,6.110822339147964629e-06,6.246618391129030171e-06,6.382414443110095712e-06,6.518210495091161254e-06,6.654006547072226796e-06,6.789802599053292338e-06,6.925598651034357880e-06,7.061394703015423421e-06,7.197190754996488963e-06,7.332986806977554505e-06,7.468782858958620047e-06,7.604578910939685589e-06,7.740374962920751131e-06,7.876171014901816672e-06,8.011967066882882214e-06,8.147763118863947756e-06,8.283559170845013298e-06,8.419355222826078840e-06,8.555151274807144382e-06 +0.000000000000000000e+00,1.416057458279791585e-07,2.832114916559583170e-07,4.248172374839374490e-07,5.664229833119165281e-07,7.080287291398956072e-07,8.496344749678746863e-07,9.912402207958536595e-07,1.132845966623832633e-06,1.274451712451811606e-06,1.416057458279790579e-06,1.557663204107769552e-06,1.699268949935748526e-06,1.840874695763727499e-06,1.982480441591706472e-06,2.124086187419685445e-06,2.265691933247664418e-06,2.407297679075643392e-06,2.548903424903622365e-06,2.690509170731601338e-06,2.832114916559580311e-06,2.973720662387559285e-06,3.115326408215538258e-06,3.256932154043517231e-06,3.398537899871496204e-06,3.540143645699475177e-06,3.681749391527454151e-06,3.823355137355433547e-06,3.964960883183412944e-06,4.106566629011392341e-06,4.248172374839371738e-06,4.389778120667351134e-06,4.531383866495330531e-06,4.672989612323309928e-06,4.814595358151289324e-06,4.956201103979268721e-06,5.097806849807248118e-06,5.239412595635227515e-06,5.381018341463206911e-06,5.522624087291186308e-06,5.664229833119165705e-06,5.805835578947145102e-06,5.947441324775124498e-06,6.089047070603103895e-06,6.230652816431083292e-06,6.372258562259062688e-06,6.513864308087042085e-06,6.655470053915021482e-06,6.797075799743000879e-06,6.938681545570980275e-06,7.080287291398959672e-06,7.221893037226939069e-06,7.363498783054918466e-06,7.505104528882897862e-06,7.646710274710877259e-06,7.788316020538856656e-06,7.929921766366836053e-06,8.071527512194815449e-06,8.213133258022794846e-06,8.354739003850774243e-06,8.496344749678753639e-06,8.637950495506733036e-06,8.779556241334712433e-06,8.921161987162691830e-06 +0.000000000000000000e+00,1.380853515982565232e-07,2.761707031965130464e-07,4.142560547947695697e-07,5.523414063930260929e-07,6.904267579912826161e-07,8.285121095895391393e-07,9.665974611877956626e-07,1.104682812786052186e-06,1.242768164384308709e-06,1.380853515982565232e-06,1.518938867580821755e-06,1.657024219179078279e-06,1.795109570777334802e-06,1.933194922375591325e-06,2.071280273973848060e-06,2.209365625572104795e-06,2.347450977170361530e-06,2.485536328768618265e-06,2.623621680366875000e-06,2.761707031965131735e-06,2.899792383563388470e-06,3.037877735161645205e-06,3.175963086759901940e-06,3.314048438358158675e-06,3.452133789956415410e-06,3.590219141554672145e-06,3.728304493152928880e-06,3.866389844751185191e-06,4.004475196349441503e-06,4.142560547947697814e-06,4.280645899545954126e-06,4.418731251144210437e-06,4.556816602742466749e-06,4.694901954340723060e-06,4.832987305938979372e-06,4.971072657537235683e-06,5.109158009135491994e-06,5.247243360733748306e-06,5.385328712332004617e-06,5.523414063930260929e-06,5.661499415528517240e-06,5.799584767126773552e-06,5.937670118725029863e-06,6.075755470323286175e-06,6.213840821921542486e-06,6.351926173519798798e-06,6.490011525118055109e-06,6.628096876716311421e-06,6.766182228314567732e-06,6.904267579912824044e-06,7.042352931511080355e-06,7.180438283109336666e-06,7.318523634707592978e-06,7.456608986305849289e-06,7.594694337904105601e-06,7.732779689502361912e-06,7.870865041100617377e-06,8.008950392698872841e-06,8.147035744297128306e-06,8.285121095895383770e-06,8.423206447493639234e-06,8.561291799091894699e-06,8.699377150690150163e-06 +0.000000000000000000e+00,1.380844865629583696e-07,2.761689731259167391e-07,4.142534596888751087e-07,5.523379462518334782e-07,6.904224328147918478e-07,8.285069193777502174e-07,9.665914059407086928e-07,1.104675892503667168e-06,1.242760379066625644e-06,1.380844865629584119e-06,1.518929352192542595e-06,1.657013838755501070e-06,1.795098325318459545e-06,1.933182811881418233e-06,2.071267298444376920e-06,2.209351785007335607e-06,2.347436271570294294e-06,2.485520758133252981e-06,2.623605244696211669e-06,2.761689731259170356e-06,2.899774217822129043e-06,3.037858704385087730e-06,3.175943190948046417e-06,3.314027677511005105e-06,3.452112164073963792e-06,3.590196650636922479e-06,3.728281137199881166e-06,3.866365623762839853e-06,4.004450110325798541e-06,4.142534596888757228e-06,4.280619083451715915e-06,4.418703570014674602e-06,4.556788056577633289e-06,4.694872543140591977e-06,4.832957029703550664e-06,4.971041516266509351e-06,5.109126002829468038e-06,5.247210489392426725e-06,5.385294975955385413e-06,5.523379462518344100e-06,5.661463949081302787e-06,5.799548435644261474e-06,5.937632922207220161e-06,6.075717408770178849e-06,6.213801895333137536e-06,6.351886381896096223e-06,6.489970868459054910e-06,6.628055355022013597e-06,6.766139841584972285e-06,6.904224328147930972e-06,7.042308814710889659e-06,7.180393301273848346e-06,7.318477787836807033e-06,7.456562274399765721e-06,7.594646760962724408e-06,7.732731247525683095e-06,7.870815734088642629e-06,8.008900220651602163e-06,8.146984707214561698e-06,8.285069193777521232e-06,8.423153680340480766e-06,8.561238166903440300e-06,8.699322653466399835e-06 +0.000000000000000000e+00,1.393352654403097274e-07,2.786705308806194548e-07,4.180057963209291557e-07,5.573410617612388037e-07,6.966763272015484516e-07,8.360115926418580996e-07,9.753468580821678535e-07,1.114682123522477607e-06,1.254017388962787361e-06,1.393352654403097115e-06,1.532687919843406869e-06,1.672023185283716623e-06,1.811358450724026377e-06,1.950693716164336130e-06,2.090028981604645884e-06,2.229364247044955638e-06,2.368699512485265392e-06,2.508034777925575146e-06,2.647370043365884900e-06,2.786705308806194654e-06,2.926040574246504407e-06,3.065375839686814161e-06,3.204711105127123915e-06,3.344046370567433669e-06,3.483381636007743423e-06,3.622716901448053177e-06,3.762052166888362931e-06,3.901387432328673108e-06,4.040722697768982862e-06,4.180057963209292616e-06,4.319393228649602370e-06,4.458728494089912123e-06,4.598063759530221877e-06,4.737399024970531631e-06,4.876734290410841385e-06,5.016069555851151139e-06,5.155404821291460893e-06,5.294740086731770647e-06,5.434075352172080400e-06,5.573410617612390154e-06,5.712745883052699908e-06,5.852081148493009662e-06,5.991416413933319416e-06,6.130751679373629170e-06,6.270086944813938924e-06,6.409422210254248677e-06,6.548757475694558431e-06,6.688092741134868185e-06,6.827428006575177939e-06,6.966763272015487693e-06,7.106098537455797447e-06,7.245433802896107201e-06,7.384769068336416954e-06,7.524104333776726708e-06,7.663439599217036462e-06,7.802774864657346216e-06,7.942110130097655970e-06,8.081445395537965724e-06,8.220780660978275478e-06,8.360115926418585231e-06,8.499451191858894985e-06,8.638786457299204739e-06,8.778121722739514493e-06 +0.000000000000000000e+00,1.400733190386760857e-07,2.801466380773521713e-07,4.202199571160282570e-07,5.602932761547043426e-07,7.003665951933804283e-07,8.404399142320565139e-07,9.805132332707327054e-07,1.120586552309408897e-06,1.260659871348085088e-06,1.400733190386761280e-06,1.540806509425437472e-06,1.680879828464113663e-06,1.820953147502789855e-06,1.961026466541466258e-06,2.101099785580142661e-06,2.241173104618819064e-06,2.381246423657495468e-06,2.521319742696171871e-06,2.661393061734848274e-06,2.801466380773524678e-06,2.941539699812201081e-06,3.081613018850877484e-06,3.221686337889553887e-06,3.361759656928230291e-06,3.501832975966906694e-06,3.641906295005583097e-06,3.781979614044259501e-06,3.922052933082935904e-06,4.062126252121612307e-06,4.202199571160288711e-06,4.342272890198965114e-06,4.482346209237641517e-06,4.622419528276317920e-06,4.762492847314994324e-06,4.902566166353670727e-06,5.042639485392347130e-06,5.182712804431023534e-06,5.322786123469699937e-06,5.462859442508376340e-06,5.602932761547052743e-06,5.743006080585729147e-06,5.883079399624405550e-06,6.023152718663081953e-06,6.163226037701758357e-06,6.303299356740434760e-06,6.443372675779111163e-06,6.583445994817787566e-06,6.723519313856463970e-06,6.863592632895140373e-06,7.003665951933816776e-06,7.143739270972493180e-06,7.283812590011169583e-06,7.423885909049845986e-06,7.563959228088522389e-06,7.704032547127198793e-06,7.844105866165875196e-06,7.984179185204551599e-06,8.124252504243228003e-06,8.264325823281904406e-06,8.404399142320580809e-06,8.544472461359257212e-06,8.684545780397933616e-06,8.824619099436610019e-06 +0.000000000000000000e+00,1.357947341745449764e-07,2.715894683490899529e-07,4.073842025236349029e-07,5.431789366981797999e-07,6.789736708727246970e-07,8.147684050472695940e-07,9.505631392218144910e-07,1.086357873396359388e-06,1.222152607570904285e-06,1.357947341745449182e-06,1.493742075919994079e-06,1.629536810094538976e-06,1.765331544269083873e-06,1.901126278443628770e-06,2.036921012618173456e-06,2.172715746792718353e-06,2.308510480967263250e-06,2.444305215141808147e-06,2.580099949316353044e-06,2.715894683490897941e-06,2.851689417665442838e-06,2.987484151839987735e-06,3.123278886014532632e-06,3.259073620189077529e-06,3.394868354363622426e-06,3.530663088538167323e-06,3.666457822712712220e-06,3.802252556887257117e-06,3.938047291061802014e-06,4.073842025236346911e-06,4.209636759410891808e-06,4.345431493585436705e-06,4.481226227759981602e-06,4.617020961934526499e-06,4.752815696109071396e-06,4.888610430283616293e-06,5.024405164458161190e-06,5.160199898632706087e-06,5.295994632807250985e-06,5.431789366981795882e-06,5.567584101156340779e-06,5.703378835330885676e-06,5.839173569505430573e-06,5.974968303679975470e-06,6.110763037854520367e-06,6.246557772029065264e-06,6.382352506203610161e-06,6.518147240378155058e-06,6.653941974552699955e-06,6.789736708727244852e-06,6.925531442901789749e-06,7.061326177076334646e-06,7.197120911250879543e-06,7.332915645425424440e-06,7.468710379599969337e-06,7.604505113774514234e-06,7.740299847949059131e-06,7.876094582123604028e-06,8.011889316298148925e-06,8.147684050472693822e-06,8.283478784647238719e-06,8.419273518821783616e-06,8.555068252996328513e-06 +0.000000000000000000e+00,1.461128928220739947e-07,2.922257856441479893e-07,4.383386784662219840e-07,5.844515712882959786e-07,7.305644641103699733e-07,8.766773569324439679e-07,1.022790249754517963e-06,1.168903142576591957e-06,1.315016035398665952e-06,1.461128928220739947e-06,1.607241821042813941e-06,1.753354713864887936e-06,1.899467606686961931e-06,2.045580499509035925e-06,2.191693392331109708e-06,2.337806285153183491e-06,2.483919177975257274e-06,2.630032070797331057e-06,2.776144963619404840e-06,2.922257856441478623e-06,3.068370749263552406e-06,3.214483642085626188e-06,3.360596534907699971e-06,3.506709427729773754e-06,3.652822320551847537e-06,3.798935213373921320e-06,3.945048106195995103e-06,4.091160999018069309e-06,4.237273891840143516e-06,4.383386784662217722e-06,4.529499677484291929e-06,4.675612570306366135e-06,4.821725463128440341e-06,4.967838355950514548e-06,5.113951248772588754e-06,5.260064141594662961e-06,5.406177034416737167e-06,5.552289927238811373e-06,5.698402820060885580e-06,5.844515712882959786e-06,5.990628605705033993e-06,6.136741498527108199e-06,6.282854391349182406e-06,6.428967284171256612e-06,6.575080176993330818e-06,6.721193069815405025e-06,6.867305962637479231e-06,7.013418855459553438e-06,7.159531748281627644e-06,7.305644641103701850e-06,7.451757533925776057e-06,7.597870426747850263e-06,7.743983319569924470e-06,7.890096212391998676e-06,8.036209105214072883e-06,8.182321998036147089e-06,8.328434890858221295e-06,8.474547783680295502e-06,8.620660676502369708e-06,8.766773569324443915e-06,8.912886462146518121e-06,9.058999354968592327e-06,9.205112247790666534e-06 +0.000000000000000000e+00,1.426730047742754221e-07,2.853460095485508442e-07,4.280190143228262928e-07,5.706920190971017944e-07,7.133650238713772959e-07,8.560380286456527974e-07,9.987110334199284049e-07,1.141384038194204012e-06,1.284057042968479620e-06,1.426730047742755227e-06,1.569403052517030835e-06,1.712076057291306442e-06,1.854749062065582049e-06,1.997422066839857657e-06,2.140095071614133264e-06,2.282768076388408872e-06,2.425441081162684479e-06,2.568114085936960086e-06,2.710787090711235694e-06,2.853460095485511301e-06,2.996133100259786909e-06,3.138806105034062516e-06,3.281479109808338123e-06,3.424152114582613731e-06,3.566825119356889338e-06,3.709498124131164946e-06,3.852171128905440553e-06,3.994844133679716161e-06,4.137517138453991768e-06,4.280190143228267375e-06,4.422863148002542983e-06,4.565536152776818590e-06,4.708209157551094198e-06,4.850882162325369805e-06,4.993555167099645412e-06,5.136228171873921020e-06,5.278901176648196627e-06,5.421574181422472235e-06,5.564247186196747842e-06,5.706920190971023449e-06,5.849593195745299057e-06,5.992266200519574664e-06,6.134939205293850272e-06,6.277612210068125879e-06,6.420285214842401487e-06,6.562958219616677094e-06,6.705631224390952701e-06,6.848304229165228309e-06,6.990977233939503916e-06,7.133650238713779524e-06,7.276323243488055131e-06,7.418996248262330738e-06,7.561669253036606346e-06,7.704342257810881106e-06,7.847015262585155867e-06,7.989688267359430627e-06,8.132361272133705387e-06,8.275034276907980148e-06,8.417707281682254908e-06,8.560380286456529668e-06,8.703053291230804429e-06,8.845726296005079189e-06,8.988399300779353950e-06 +0.000000000000000000e+00,1.426714237148727457e-07,2.853428474297454914e-07,4.280142711446182371e-07,5.706856948594909828e-07,7.133571185743637285e-07,8.560285422892364743e-07,9.986999660041093258e-07,1.141371389718982177e-06,1.284042813433855029e-06,1.426714237148727881e-06,1.569385660863600732e-06,1.712057084578473584e-06,1.854728508293346435e-06,1.997399932008219499e-06,2.140071355723092562e-06,2.282742779437965625e-06,2.425414203152838689e-06,2.568085626867711752e-06,2.710757050582584815e-06,2.853428474297457879e-06,2.996099898012330942e-06,3.138771321727204006e-06,3.281442745442077069e-06,3.424114169156950132e-06,3.566785592871823196e-06,3.709457016586696259e-06,3.852128440301569746e-06,3.994799864016443233e-06,4.137471287731316719e-06,4.280142711446190206e-06,4.422814135161063693e-06,4.565485558875937180e-06,4.708156982590810667e-06,4.850828406305684154e-06,4.993499830020557641e-06,5.136171253735431128e-06,5.278842677450304614e-06,5.421514101165178101e-06,5.564185524880051588e-06,5.706856948594925075e-06,5.849528372309798562e-06,5.992199796024672049e-06,6.134871219739545536e-06,6.277542643454419022e-06,6.420214067169292509e-06,6.562885490884165996e-06,6.705556914599039483e-06,6.848228338313912970e-06,6.990899762028786457e-06,7.133571185743659944e-06,7.276242609458533430e-06,7.418914033173406917e-06,7.561585456888280404e-06,7.704256880603153044e-06,7.846928304318025684e-06,7.989599728032898324e-06,8.132271151747770964e-06,8.274942575462643603e-06,8.417613999177516243e-06,8.560285422892388883e-06,8.702956846607261523e-06,8.845628270322134163e-06,8.988299694037006803e-06 +0.000000000000000000e+00,1.438649560473237546e-07,2.877299120946475092e-07,4.315948681419712373e-07,5.754598241892949125e-07,7.193247802366185877e-07,8.631897362839422629e-07,1.007054692331265938e-06,1.150919648378589613e-06,1.294784604425913289e-06,1.438649560473236964e-06,1.582514516520560639e-06,1.726379472567884314e-06,1.870244428615207989e-06,2.014109384662531453e-06,2.157974340709855128e-06,2.301839296757178803e-06,2.445704252804502478e-06,2.589569208851826154e-06,2.733434164899149829e-06,2.877299120946473504e-06,3.021164076993797179e-06,3.165029033041120854e-06,3.308893989088444530e-06,3.452758945135768205e-06,3.596623901183091880e-06,3.740488857230415555e-06,3.884353813277739230e-06,4.028218769325062906e-06,4.172083725372386581e-06,4.315948681419710256e-06,4.459813637467033931e-06,4.603678593514357606e-06,4.747543549561681281e-06,4.891408505609004957e-06,5.035273461656328632e-06,5.179138417703652307e-06,5.323003373750975982e-06,5.466868329798299657e-06,5.610733285845623333e-06,5.754598241892947008e-06,5.898463197940270683e-06,6.042328153987594358e-06,6.186193110034918033e-06,6.330058066082241709e-06,6.473923022129565384e-06,6.617787978176889059e-06,6.761652934224212734e-06,6.905517890271536409e-06,7.049382846318860085e-06,7.193247802366183760e-06,7.337112758413507435e-06,7.480977714460831110e-06,7.624842670508154785e-06,7.768707626555478461e-06,7.912572582602802983e-06,8.056437538650127505e-06,8.200302494697452027e-06,8.344167450744776550e-06,8.488032406792101072e-06,8.631897362839425594e-06,8.775762318886750116e-06,8.919627274934074638e-06,9.063492230981399161e-06 +0.000000000000000000e+00,1.447980701289072044e-07,2.895961402578144088e-07,4.343942103867216132e-07,5.791922805156288176e-07,7.239903506445360750e-07,8.687884207734433323e-07,1.013586490902350590e-06,1.158384561031257847e-06,1.303182631160165104e-06,1.447980701289072362e-06,1.592778771417979619e-06,1.737576841546886876e-06,1.882374911675794134e-06,2.027172981804701603e-06,2.171971051933608860e-06,2.316769122062516117e-06,2.461567192191423375e-06,2.606365262320330632e-06,2.751163332449237890e-06,2.895961402578145147e-06,3.040759472707052404e-06,3.185557542835959662e-06,3.330355612964866919e-06,3.475153683093774176e-06,3.619951753222681434e-06,3.764749823351588691e-06,3.909547893480495948e-06,4.054345963609403206e-06,4.199144033738310463e-06,4.343942103867217720e-06,4.488740173996124978e-06,4.633538244125032235e-06,4.778336314253939492e-06,4.923134384382846750e-06,5.067932454511754007e-06,5.212730524640661264e-06,5.357528594769568522e-06,5.502326664898475779e-06,5.647124735027383036e-06,5.791922805156290294e-06,5.936720875285197551e-06,6.081518945414104808e-06,6.226317015543012066e-06,6.371115085671919323e-06,6.515913155800826580e-06,6.660711225929733838e-06,6.805509296058641095e-06,6.950307366187548352e-06,7.095105436316455610e-06,7.239903506445362867e-06,7.384701576574270124e-06,7.529499646703177382e-06,7.674297716832084639e-06,7.819095786960991896e-06,7.963893857089899154e-06,8.108691927218806411e-06,8.253489997347713669e-06,8.398288067476620926e-06,8.543086137605528183e-06,8.687884207734435441e-06,8.832682277863342698e-06,8.977480347992249955e-06,9.122278418121157213e-06 +0.000000000000000000e+00,1.403649501327171759e-07,2.807299002654343518e-07,4.210948503981515276e-07,5.614598005308687035e-07,7.018247506635859323e-07,8.421897007963031611e-07,9.825546509290203900e-07,1.122919601061737619e-06,1.263284551194454848e-06,1.403649501327172076e-06,1.544014451459889305e-06,1.684379401592606534e-06,1.824744351725323763e-06,1.965109301858040780e-06,2.105474251990757797e-06,2.245839202123474814e-06,2.386204152256191831e-06,2.526569102388908848e-06,2.666934052521625865e-06,2.807299002654342882e-06,2.947663952787059899e-06,3.088028902919776916e-06,3.228393853052493933e-06,3.368758803185210950e-06,3.509123753317927968e-06,3.649488703450644985e-06,3.789853653583362002e-06,3.930218603716079019e-06,4.070583553848796036e-06,4.210948503981513053e-06,4.351313454114230070e-06,4.491678404246947087e-06,4.632043354379664104e-06,4.772408304512381121e-06,4.912773254645098138e-06,5.053138204777815155e-06,5.193503154910532172e-06,5.333868105043249189e-06,5.474233055175966206e-06,5.614598005308683223e-06,5.754962955441400240e-06,5.895327905574117258e-06,6.035692855706834275e-06,6.176057805839551292e-06,6.316422755972268309e-06,6.456787706104985326e-06,6.597152656237702343e-06,6.737517606370419360e-06,6.877882556503136377e-06,7.018247506635853394e-06,7.158612456768570411e-06,7.298977406901287428e-06,7.439342357034004445e-06,7.579707307166721462e-06,7.720072257299438479e-06,7.860437207432156343e-06,8.000802157564874207e-06,8.141167107697592072e-06,8.281532057830309936e-06,8.421897007963027800e-06,8.562261958095745664e-06,8.702626908228463528e-06,8.842991858361181392e-06 +0.000000000000000000e+00,1.426709438504027347e-07,2.853418877008054694e-07,4.280128315512082041e-07,5.706837754016109388e-07,7.133547192520136735e-07,8.560256631024164082e-07,9.986966069528191429e-07,1.141367550803221878e-06,1.284038494653624612e-06,1.426709438504027347e-06,1.569380382354430082e-06,1.712051326204832816e-06,1.854722270055235551e-06,1.997393213905638286e-06,2.140064157756040809e-06,2.282735101606443332e-06,2.425406045456845855e-06,2.568076989307248378e-06,2.710747933157650901e-06,2.853418877008053423e-06,2.996089820858455946e-06,3.138760764708858469e-06,3.281431708559260992e-06,3.424102652409663515e-06,3.566773596260066038e-06,3.709444540110468561e-06,3.852115483960871084e-06,3.994786427811274030e-06,4.137457371661676977e-06,4.280128315512079923e-06,4.422799259362482870e-06,4.565470203212885816e-06,4.708141147063288763e-06,4.850812090913691709e-06,4.993483034764094656e-06,5.136153978614497602e-06,5.278824922464900549e-06,5.421495866315303495e-06,5.564166810165706442e-06,5.706837754016109388e-06,5.849508697866512334e-06,5.992179641716915281e-06,6.134850585567318227e-06,6.277521529417721174e-06,6.420192473268124120e-06,6.562863417118527067e-06,6.705534360968930013e-06,6.848205304819332960e-06,6.990876248669735906e-06,7.133547192520138853e-06,7.276218136370541799e-06,7.418889080220944745e-06,7.561560024071347692e-06,7.704230967921750638e-06,7.846901911772153585e-06,7.989572855622556531e-06,8.132243799472959478e-06,8.274914743323362424e-06,8.417585687173765371e-06,8.560256631024168317e-06,8.702927574874571264e-06,8.845598518724974210e-06,8.988269462575377157e-06 +0.000000000000000000e+00,1.403638807907958758e-07,2.807277615815917516e-07,4.210916423723876009e-07,5.614555231631833972e-07,7.018194039539791936e-07,8.421832847447749900e-07,9.825471655355706805e-07,1.122911046326366371e-06,1.263274927117162061e-06,1.403638807907957752e-06,1.544002688698753442e-06,1.684366569489549133e-06,1.824730450280344823e-06,1.965094331071140514e-06,2.105458211861936204e-06,2.245822092652731895e-06,2.386185973443527585e-06,2.526549854234323276e-06,2.666913735025118966e-06,2.807277615815914657e-06,2.947641496606710347e-06,3.088005377397506038e-06,3.228369258188301728e-06,3.368733138979097419e-06,3.509097019769893109e-06,3.649460900560688800e-06,3.789824781351484490e-06,3.930188662142280181e-06,4.070552542933075871e-06,4.210916423723871562e-06,4.351280304514667252e-06,4.491644185305462943e-06,4.632008066096258633e-06,4.772371946887054324e-06,4.912735827677850014e-06,5.053099708468645705e-06,5.193463589259441395e-06,5.333827470050237086e-06,5.474191350841032776e-06,5.614555231631828467e-06,5.754919112422624157e-06,5.895282993213419848e-06,6.035646874004215538e-06,6.176010754795011229e-06,6.316374635585806919e-06,6.456738516376602610e-06,6.597102397167398300e-06,6.737466277958193991e-06,6.877830158748989681e-06,7.018194039539785372e-06,7.158557920330581062e-06,7.298921801121376753e-06,7.439285681912172443e-06,7.579649562702968134e-06,7.720013443493763824e-06,7.860377324284558668e-06,8.000741205075353511e-06,8.141105085866148355e-06,8.281468966656943198e-06,8.421832847447738041e-06,8.562196728238532885e-06,8.702560609029327728e-06,8.842924489820122572e-06 +0.000000000000000000e+00,1.461128928220791298e-07,2.922257856441582596e-07,4.383386784662373894e-07,5.844515712883165192e-07,7.305644641103955960e-07,8.766773569324746729e-07,1.022790249754553750e-06,1.168903142576632827e-06,1.315016035398711903e-06,1.461128928220790980e-06,1.607241821042870057e-06,1.753354713864949134e-06,1.899467606687028211e-06,2.045580499509107499e-06,2.191693392331186788e-06,2.337806285153266077e-06,2.483919177975345365e-06,2.630032070797424654e-06,2.776144963619503943e-06,2.922257856441583231e-06,3.068370749263662520e-06,3.214483642085741808e-06,3.360596534907821097e-06,3.506709427729900386e-06,3.652822320551979674e-06,3.798935213374058963e-06,3.945048106196138251e-06,4.091160999018217540e-06,4.237273891840296829e-06,4.383386784662376117e-06,4.529499677484455406e-06,4.675612570306534695e-06,4.821725463128613983e-06,4.967838355950693272e-06,5.113951248772772560e-06,5.260064141594851849e-06,5.406177034416931138e-06,5.552289927239010426e-06,5.698402820061089715e-06,5.844515712883169003e-06,5.990628605705248292e-06,6.136741498527327581e-06,6.282854391349406869e-06,6.428967284171486158e-06,6.575080176993565447e-06,6.721193069815644735e-06,6.867305962637724024e-06,7.013418855459803312e-06,7.159531748281882601e-06,7.305644641103961890e-06,7.451757533926041178e-06,7.597870426748120467e-06,7.743983319570198908e-06,7.890096212392278197e-06,8.036209105214357486e-06,8.182321998036436774e-06,8.328434890858516063e-06,8.474547783680595351e-06,8.620660676502674640e-06,8.766773569324753929e-06,8.912886462146833217e-06,9.058999354968912506e-06,9.205112247790991795e-06 +0.000000000000000000e+00,1.426730047742812984e-07,2.853460095485625968e-07,4.280190143228438688e-07,5.706920190971250878e-07,7.133650238714063068e-07,8.560380286456875258e-07,9.987110334199686389e-07,1.141384038194249752e-06,1.284057042968530865e-06,1.426730047742811978e-06,1.569403052517093091e-06,1.712076057291374205e-06,1.854749062065655318e-06,1.997422066839936431e-06,2.140095071614217544e-06,2.282768076388498657e-06,2.425441081162779770e-06,2.568114085937060883e-06,2.710787090711341996e-06,2.853460095485623110e-06,2.996133100259904223e-06,3.138806105034185336e-06,3.281479109808466449e-06,3.424152114582747562e-06,3.566825119357028675e-06,3.709498124131309788e-06,3.852171128905591325e-06,3.994844133679872862e-06,4.137517138454154398e-06,4.280190143228435935e-06,4.422863148002717472e-06,4.565536152776999008e-06,4.708209157551280545e-06,4.850882162325562081e-06,4.993555167099843618e-06,5.136228171874125155e-06,5.278901176648406691e-06,5.421574181422688228e-06,5.564247186196969765e-06,5.706920190971251301e-06,5.849593195745532838e-06,5.992266200519814375e-06,6.134939205294095911e-06,6.277612210068377448e-06,6.420285214842658985e-06,6.562958219616940521e-06,6.705631224391222058e-06,6.848304229165503594e-06,6.990977233939785131e-06,7.133650238714066668e-06,7.276323243488348204e-06,7.418996248262629741e-06,7.561669253036911278e-06,7.704342257811192814e-06,7.847015262585474351e-06,7.989688267359755888e-06,8.132361272134037424e-06,8.275034276908318961e-06,8.417707281682600498e-06,8.560380286456882034e-06,8.703053291231163571e-06,8.845726296005445107e-06,8.988399300779726644e-06 +0.000000000000000000e+00,1.426709438504053817e-07,2.853418877008107634e-07,4.280128315512161450e-07,5.706837754016215267e-07,7.133547192520269084e-07,8.560256631024322901e-07,9.986966069528375659e-07,1.141367550803242842e-06,1.284038494653648117e-06,1.426709438504053393e-06,1.569380382354458669e-06,1.712051326204863945e-06,1.854722270055269221e-06,1.997393213905674285e-06,2.140064157756079349e-06,2.282735101606484413e-06,2.425406045456889477e-06,2.568076989307294541e-06,2.710747933157699605e-06,2.853418877008104669e-06,2.996089820858509733e-06,3.138760764708914797e-06,3.281431708559319861e-06,3.424102652409724925e-06,3.566773596260129989e-06,3.709444540110535053e-06,3.852115483960940541e-06,3.994786427811346028e-06,4.137457371661751516e-06,4.280128315512157003e-06,4.422799259362562491e-06,4.565470203212967979e-06,4.708141147063373466e-06,4.850812090913778954e-06,4.993483034764184441e-06,5.136153978614589929e-06,5.278824922464995416e-06,5.421495866315400904e-06,5.564166810165806391e-06,5.706837754016211879e-06,5.849508697866617367e-06,5.992179641717022854e-06,6.134850585567428342e-06,6.277521529417833829e-06,6.420192473268239317e-06,6.562863417118644804e-06,6.705534360969050292e-06,6.848205304819455779e-06,6.990876248669861267e-06,7.133547192520266755e-06,7.276218136370672242e-06,7.418889080221077730e-06,7.561560024071483217e-06,7.704230967921887858e-06,7.846901911772292498e-06,7.989572855622697139e-06,8.132243799473101779e-06,8.274914743323506420e-06,8.417585687173911060e-06,8.560256631024315701e-06,8.702927574874720341e-06,8.845598518725124982e-06,8.988269462575529622e-06 +0.000000000000000000e+00,1.438649560473309279e-07,2.877299120946618558e-07,4.315948681419927837e-07,5.754598241893237117e-07,7.193247802366545866e-07,8.631897362839854616e-07,1.007054692331316337e-06,1.150919648378647212e-06,1.294784604425978087e-06,1.438649560473308962e-06,1.582514516520639837e-06,1.726379472567970711e-06,1.870244428615301586e-06,2.014109384662632250e-06,2.157974340709962701e-06,2.301839296757293153e-06,2.445704252804623604e-06,2.589569208851954056e-06,2.733434164899284507e-06,2.877299120946614958e-06,3.021164076993945410e-06,3.165029033041275861e-06,3.308893989088606313e-06,3.452758945135936764e-06,3.596623901183267216e-06,3.740488857230597667e-06,3.884353813277928119e-06,4.028218769325258570e-06,4.172083725372589022e-06,4.315948681419919473e-06,4.459813637467249925e-06,4.603678593514580376e-06,4.747543549561910827e-06,4.891408505609241279e-06,5.035273461656571730e-06,5.179138417703902182e-06,5.323003373751232633e-06,5.466868329798563085e-06,5.610733285845893536e-06,5.754598241893223988e-06,5.898463197940554439e-06,6.042328153987884891e-06,6.186193110035215342e-06,6.330058066082545793e-06,6.473923022129876245e-06,6.617787978177206696e-06,6.761652934224537148e-06,6.905517890271867599e-06,7.049382846319198051e-06,7.193247802366528502e-06,7.337112758413858954e-06,7.480977714461189405e-06,7.624842670508519857e-06,7.768707626555849461e-06,7.912572582603179065e-06,8.056437538650508670e-06,8.200302494697838274e-06,8.344167450745167879e-06,8.488032406792497483e-06,8.631897362839827088e-06,8.775762318887156692e-06,8.919627274934486296e-06,9.063492230981815901e-06 +0.000000000000000000e+00,1.447980701289123395e-07,2.895961402578246791e-07,4.343942103867370186e-07,5.791922805156493582e-07,7.239903506445616977e-07,8.687884207734740372e-07,1.013586490902386377e-06,1.158384561031298716e-06,1.303182631160211056e-06,1.447980701289123395e-06,1.592778771418035735e-06,1.737576841546948074e-06,1.882374911675860414e-06,2.027172981804772754e-06,2.171971051933685093e-06,2.316769122062597433e-06,2.461567192191509772e-06,2.606365262320422112e-06,2.751163332449334451e-06,2.895961402578246791e-06,3.040759472707159130e-06,3.185557542836071470e-06,3.330355612964983809e-06,3.475153683093896149e-06,3.619951753222808489e-06,3.764749823351720828e-06,3.909547893480633168e-06,4.054345963609545507e-06,4.199144033738457847e-06,4.343942103867370186e-06,4.488740173996282526e-06,4.633538244125194865e-06,4.778336314254107205e-06,4.923134384383019544e-06,5.067932454511931884e-06,5.212730524640844223e-06,5.357528594769756563e-06,5.502326664898668903e-06,5.647124735027581242e-06,5.791922805156493582e-06,5.936720875285405921e-06,6.081518945414318261e-06,6.226317015543230600e-06,6.371115085672142940e-06,6.515913155801055279e-06,6.660711225929967619e-06,6.805509296058879958e-06,6.950307366187792298e-06,7.095105436316704637e-06,7.239903506445616977e-06,7.384701576574529317e-06,7.529499646703441656e-06,7.674297716832353996e-06,7.819095786961266335e-06,7.963893857090178675e-06,8.108691927219091014e-06,8.253489997348003354e-06,8.398288067476915693e-06,8.543086137605828033e-06,8.687884207734740372e-06,8.832682277863652712e-06,8.977480347992565051e-06,9.122278418121477391e-06 +0.000000000000000000e+00,1.403649501327236874e-07,2.807299002654473749e-07,4.210948503981710623e-07,5.614598005308947498e-07,7.018247506636184372e-07,8.421897007963421247e-07,9.825546509290657062e-07,1.122919601061789288e-06,1.263284551194512869e-06,1.403649501327236451e-06,1.544014451459960032e-06,1.684379401592683614e-06,1.824744351725407196e-06,1.965109301858130565e-06,2.105474251990853935e-06,2.245839202123577305e-06,2.386204152256300675e-06,2.526569102389024045e-06,2.666934052521747414e-06,2.807299002654470784e-06,2.947663952787194154e-06,3.088028902919917524e-06,3.228393853052640894e-06,3.368758803185364263e-06,3.509123753318087633e-06,3.649488703450811003e-06,3.789853653583534373e-06,3.930218603716257743e-06,4.070583553848980689e-06,4.210948503981703635e-06,4.351313454114426582e-06,4.491678404247149528e-06,4.632043354379872474e-06,4.772408304512595420e-06,4.912773254645318367e-06,5.053138204778041313e-06,5.193503154910764259e-06,5.333868105043487206e-06,5.474233055176210152e-06,5.614598005308933098e-06,5.754962955441656044e-06,5.895327905574378991e-06,6.035692855707101937e-06,6.176057805839824883e-06,6.316422755972547830e-06,6.456787706105270776e-06,6.597152656237993722e-06,6.737517606370716668e-06,6.877882556503439615e-06,7.018247506636162561e-06,7.158612456768885507e-06,7.298977406901608454e-06,7.439342357034331400e-06,7.579707307167054346e-06,7.720072257299777292e-06,7.860437207432500239e-06,8.000802157565223185e-06,8.141167107697946131e-06,8.281532057830669078e-06,8.421897007963392024e-06,8.562261958096114970e-06,8.702626908228837916e-06,8.842991858361560863e-06 +0.000000000000000000e+00,1.505328694200317966e-07,3.010657388400635932e-07,4.515986082600954162e-07,6.021314776801272923e-07,7.526643471001591683e-07,9.031972165201910443e-07,1.053730085940223026e-06,1.204262955360255008e-06,1.354795824780286990e-06,1.505328694200318972e-06,1.655861563620350954e-06,1.806394433040382936e-06,1.956927302460414917e-06,2.107460171880446899e-06,2.257993041300478881e-06,2.408525910720510863e-06,2.559058780140542845e-06,2.709591649560574827e-06,2.860124518980606809e-06,3.010657388400638791e-06,3.161190257820670772e-06,3.311723127240702754e-06,3.462255996660734736e-06,3.612788866080766718e-06,3.763321735500798700e-06,3.913854604920830682e-06,4.064387474340862664e-06,4.214920343760894646e-06,4.365453213180926628e-06,4.515986082600958609e-06,4.666518952020990591e-06,4.817051821441022573e-06,4.967584690861054555e-06,5.118117560281086537e-06,5.268650429701118519e-06,5.419183299121150501e-06,5.569716168541182483e-06,5.720249037961214464e-06,5.870781907381246446e-06,6.021314776801278428e-06,6.171847646221310410e-06,6.322380515641342392e-06,6.472913385061374374e-06,6.623446254481406356e-06,6.773979123901438338e-06,6.924511993321470320e-06,7.075044862741502301e-06,7.225577732161534283e-06,7.376110601581566265e-06,7.526643471001598247e-06,7.677176340421629382e-06,7.827709209841659670e-06,7.978242079261689958e-06,8.128774948681720245e-06,8.279307818101750533e-06,8.429840687521780821e-06,8.580373556941811109e-06,8.730906426361841397e-06,8.881439295781871684e-06,9.031972165201901972e-06,9.182505034621932260e-06,9.333037904041962548e-06,9.483570773461992836e-06 +0.000000000000000000e+00,1.474045144951989655e-07,2.948090289903979310e-07,4.422135434855968700e-07,5.896180579807957560e-07,7.370225724759946421e-07,8.844270869711935282e-07,1.031831601466392414e-06,1.179236115961591300e-06,1.326640630456790186e-06,1.474045144951989072e-06,1.621449659447187959e-06,1.768854173942386845e-06,1.916258688437585519e-06,2.063663202932784405e-06,2.211067717427983291e-06,2.358472231923182177e-06,2.505876746418381063e-06,2.653281260913579949e-06,2.800685775408778835e-06,2.948090289903977721e-06,3.095494804399176607e-06,3.242899318894375493e-06,3.390303833389574380e-06,3.537708347884773266e-06,3.685112862379972152e-06,3.832517376875171038e-06,3.979921891370369924e-06,4.127326405865568810e-06,4.274730920360767696e-06,4.422135434855966582e-06,4.569539949351165468e-06,4.716944463846364354e-06,4.864348978341563240e-06,5.011753492836762126e-06,5.159158007331961012e-06,5.306562521827159898e-06,5.453967036322358785e-06,5.601371550817557671e-06,5.748776065312756557e-06,5.896180579807955443e-06,6.043585094303154329e-06,6.190989608798353215e-06,6.338394123293552101e-06,6.485798637788750987e-06,6.633203152283949873e-06,6.780607666779148759e-06,6.928012181274347645e-06,7.075416695769546531e-06,7.222821210264745417e-06,7.370225724759944303e-06,7.517630239255143189e-06,7.665034753750342076e-06,7.812439268245540962e-06,7.959843782740739848e-06,8.107248297235938734e-06,8.254652811731137620e-06,8.402057326226336506e-06,8.549461840721535392e-06,8.696866355216734278e-06,8.844270869711933164e-06,8.991675384207132050e-06,9.139079898702330936e-06,9.286484413197529822e-06 +0.000000000000000000e+00,1.473720849870197181e-07,2.947441699740394361e-07,4.421162549610591542e-07,5.894883399480788723e-07,7.368604249350986433e-07,8.842325099221184143e-07,1.031604594909138185e-06,1.178976679896157956e-06,1.326348764883177727e-06,1.473720849870197498e-06,1.621092934857217269e-06,1.768465019844237040e-06,1.915837104831256811e-06,2.063209189818276371e-06,2.210581274805295930e-06,2.357953359792315489e-06,2.505325444779335048e-06,2.652697529766354608e-06,2.800069614753374167e-06,2.947441699740393726e-06,3.094813784727413285e-06,3.242185869714432844e-06,3.389557954701452404e-06,3.536930039688471963e-06,3.684302124675491522e-06,3.831674209662511081e-06,3.979046294649531064e-06,4.126418379636551047e-06,4.273790464623571030e-06,4.421162549610591013e-06,4.568534634597610995e-06,4.715906719584630978e-06,4.863278804571650961e-06,5.010650889558670944e-06,5.158022974545690926e-06,5.305395059532710909e-06,5.452767144519730892e-06,5.600139229506750875e-06,5.747511314493770857e-06,5.894883399480790840e-06,6.042255484467810823e-06,6.189627569454830806e-06,6.336999654441850788e-06,6.484371739428870771e-06,6.631743824415890754e-06,6.779115909402910737e-06,6.926487994389930719e-06,7.073860079376950702e-06,7.221232164363970685e-06,7.368604249350990668e-06,7.515976334338010651e-06,7.663348419325030633e-06,7.810720504312050616e-06,7.958092589299070599e-06,8.105464674286090582e-06,8.252836759273110564e-06,8.400208844260130547e-06,8.547580929247150530e-06,8.694953014234170513e-06,8.842325099221190495e-06,8.989697184208210478e-06,9.137069269195230461e-06,9.284441354182250444e-06 +0.000000000000000000e+00,1.483391200063160874e-07,2.966782400126321747e-07,4.450173600189482886e-07,5.933564800252644553e-07,7.416956000315806221e-07,8.900347200378967889e-07,1.038373840044213062e-06,1.186712960050529334e-06,1.335052080056845607e-06,1.483391200063161880e-06,1.631730320069478152e-06,1.780069440075794425e-06,1.928408560082110697e-06,2.076747680088426970e-06,2.225086800094743243e-06,2.373425920101059515e-06,2.521765040107375788e-06,2.670104160113692061e-06,2.818443280120008333e-06,2.966782400126324606e-06,3.115121520132640879e-06,3.263460640138957151e-06,3.411799760145273424e-06,3.560138880151589697e-06,3.708478000157905969e-06,3.856817120164222242e-06,4.005156240170538938e-06,4.153495360176855634e-06,4.301834480183172331e-06,4.450173600189489027e-06,4.598512720195805723e-06,4.746851840202122419e-06,4.895190960208439115e-06,5.043530080214755811e-06,5.191869200221072508e-06,5.340208320227389204e-06,5.488547440233705900e-06,5.636886560240022596e-06,5.785225680246339292e-06,5.933564800252655988e-06,6.081903920258972685e-06,6.230243040265289381e-06,6.378582160271606077e-06,6.526921280277922773e-06,6.675260400284239469e-06,6.823599520290556165e-06,6.971938640296872862e-06,7.120277760303189558e-06,7.268616880309506254e-06,7.416956000315822950e-06,7.565295120322139646e-06,7.713634240328456343e-06,7.861973360334773039e-06,8.010312480341089735e-06,8.158651600347406431e-06,8.306990720353723127e-06,8.455329840360039823e-06,8.603668960366356520e-06,8.752008080372673216e-06,8.900347200378989912e-06,9.048686320385306608e-06,9.197025440391623304e-06,9.345364560397940000e-06 +0.000000000000000000e+00,1.495966152054879091e-07,2.991932304109758183e-07,4.487898456164637539e-07,5.983864608219517425e-07,7.479830760274397310e-07,8.975796912329277196e-07,1.047176306438415708e-06,1.196772921643903697e-06,1.346369536849391685e-06,1.495966152054879674e-06,1.645562767260367662e-06,1.795159382465855651e-06,1.944755997671343851e-06,2.094352612876831840e-06,2.243949228082319828e-06,2.393545843287807817e-06,2.543142458493295805e-06,2.692739073698783794e-06,2.842335688904271783e-06,2.991932304109759771e-06,3.141528919315247760e-06,3.291125534520735748e-06,3.440722149726223737e-06,3.590318764931711725e-06,3.739915380137199714e-06,3.889511995342687702e-06,4.039108610548175691e-06,4.188705225753663680e-06,4.338301840959151668e-06,4.487898456164639657e-06,4.637495071370127645e-06,4.787091686575615634e-06,4.936688301781103622e-06,5.086284916986591611e-06,5.235881532192079599e-06,5.385478147397567588e-06,5.535074762603055577e-06,5.684671377808543565e-06,5.834267993014031554e-06,5.983864608219519542e-06,6.133461223425007531e-06,6.283057838630495519e-06,6.432654453835983508e-06,6.582251069041471496e-06,6.731847684246959485e-06,6.881444299452447473e-06,7.031040914657935462e-06,7.180637529863423451e-06,7.330234145068911439e-06,7.479830760274399428e-06,7.629427375479887416e-06,7.779023990685375405e-06,7.928620605890863393e-06,8.078217221096351382e-06,8.227813836301839370e-06,8.377410451507327359e-06,8.527007066712815348e-06,8.676603681918303336e-06,8.826200297123791325e-06,8.975796912329279313e-06,9.125393527534767302e-06,9.274990142740255290e-06,9.424586757945743279e-06 +0.000000000000000000e+00,1.450062545469642893e-07,2.900125090939285787e-07,4.350187636408928680e-07,5.800250181878571573e-07,7.250312727348213937e-07,8.700375272817856301e-07,1.015043781828749866e-06,1.160050036375714103e-06,1.305056290922678339e-06,1.450062545469642576e-06,1.595068800016606812e-06,1.740075054563571048e-06,1.885081309110535285e-06,2.030087563657499309e-06,2.175093818204463546e-06,2.320100072751427782e-06,2.465106327298392019e-06,2.610112581845356255e-06,2.755118836392320491e-06,2.900125090939284728e-06,3.045131345486248964e-06,3.190137600033213201e-06,3.335143854580177437e-06,3.480150109127141673e-06,3.625156363674105910e-06,3.770162618221070146e-06,3.915168872768034383e-06,4.060175127314998619e-06,4.205181381861962855e-06,4.350187636408927092e-06,4.495193890955891328e-06,4.640200145502855564e-06,4.785206400049819801e-06,4.930212654596784037e-06,5.075218909143748274e-06,5.220225163690712510e-06,5.365231418237676746e-06,5.510237672784640983e-06,5.655243927331605219e-06,5.800250181878569456e-06,5.945256436425533692e-06,6.090262690972497928e-06,6.235268945519462165e-06,6.380275200066426401e-06,6.525281454613390638e-06,6.670287709160354874e-06,6.815293963707319110e-06,6.960300218254283347e-06,7.105306472801247583e-06,7.250312727348211819e-06,7.395318981895176056e-06,7.540325236442140292e-06,7.685331490989104529e-06,7.830337745536068765e-06,7.975344000083033001e-06,8.120350254629997238e-06,8.265356509176961474e-06,8.410362763723925711e-06,8.555369018270889947e-06,8.700375272817854183e-06,8.845381527364818420e-06,8.990387781911782656e-06,9.135394036458746893e-06 +0.000000000000000000e+00,1.473828179522497006e-07,2.947656359044994013e-07,4.421484538567491284e-07,5.895312718089989084e-07,7.369140897612486885e-07,8.842969077134984685e-07,1.031679725665748249e-06,1.179062543617998029e-06,1.326445361570247809e-06,1.473828179522497589e-06,1.621210997474747369e-06,1.768593815426997149e-06,1.915976633379246929e-06,2.063359451331496497e-06,2.210742269283746065e-06,2.358125087235995634e-06,2.505507905188245202e-06,2.652890723140494770e-06,2.800273541092744339e-06,2.947656359044993907e-06,3.095039176997243475e-06,3.242421994949493043e-06,3.389804812901742612e-06,3.537187630853992180e-06,3.684570448806241748e-06,3.831953266758491317e-06,3.979336084710741308e-06,4.126718902662991300e-06,4.274101720615241292e-06,4.421484538567491284e-06,4.568867356519741276e-06,4.716250174471991267e-06,4.863632992424241259e-06,5.011015810376491251e-06,5.158398628328741243e-06,5.305781446280991235e-06,5.453164264233241226e-06,5.600547082185491218e-06,5.747929900137741210e-06,5.895312718089991202e-06,6.042695536042241194e-06,6.190078353994491185e-06,6.337461171946741177e-06,6.484843989898991169e-06,6.632226807851241161e-06,6.779609625803491153e-06,6.926992443755741145e-06,7.074375261707991136e-06,7.221758079660241128e-06,7.369140897612491120e-06,7.516523715564741112e-06,7.663906533516991104e-06,7.811289351469241095e-06,7.958672169421491087e-06,8.106054987373741079e-06,8.253437805325991071e-06,8.400820623278241063e-06,8.548203441230491054e-06,8.695586259182741046e-06,8.842969077134991038e-06,8.990351895087241030e-06,9.137734713039491022e-06,9.285117530991741013e-06 +0.000000000000000000e+00,1.449919577838914934e-07,2.899839155677829868e-07,4.349758733516744802e-07,5.799678311355659735e-07,7.249597889194575199e-07,8.699517467033490662e-07,1.014943704487240613e-06,1.159935662271132159e-06,1.304927620055023705e-06,1.449919577838915251e-06,1.594911535622806798e-06,1.739903493406698344e-06,1.884895451190589890e-06,2.029887408974481649e-06,2.174879366758373195e-06,2.319871324542264741e-06,2.464863282326156288e-06,2.609855240110047834e-06,2.754847197893939380e-06,2.899839155677830927e-06,3.044831113461722473e-06,3.189823071245614019e-06,3.334815029029505565e-06,3.479806986813397112e-06,3.624798944597288658e-06,3.769790902381180204e-06,3.914782860165071751e-06,4.059774817948963297e-06,4.204766775732854843e-06,4.349758733516746390e-06,4.494750691300637936e-06,4.639742649084529482e-06,4.784734606868421029e-06,4.929726564652312575e-06,5.074718522436204121e-06,5.219710480220095668e-06,5.364702438003987214e-06,5.509694395787878760e-06,5.654686353571770307e-06,5.799678311355661853e-06,5.944670269139553399e-06,6.089662226923444946e-06,6.234654184707336492e-06,6.379646142491228038e-06,6.524638100275119585e-06,6.669630058059011131e-06,6.814622015842902677e-06,6.959613973626794224e-06,7.104605931410685770e-06,7.249597889194577316e-06,7.394589846978468863e-06,7.539581804762360409e-06,7.684573762546252802e-06,7.829565720330145196e-06,7.974557678114037589e-06,8.119549635897929982e-06,8.264541593681822376e-06,8.409533551465714769e-06,8.554525509249607162e-06,8.699517467033499556e-06,8.844509424817391949e-06,8.989501382601284342e-06,9.134493340385176736e-06 +0.000000000000000000e+00,1.505328694200360847e-07,3.010657388400721694e-07,4.515986082601082276e-07,6.021314776801442329e-07,7.526643471001802382e-07,9.031972165202162435e-07,1.053730085940252249e-06,1.204262955360288254e-06,1.354795824780324259e-06,1.505328694200360265e-06,1.655861563620396270e-06,1.806394433040432275e-06,1.956927302460468281e-06,2.107460171880504498e-06,2.257993041300540715e-06,2.408525910720576932e-06,2.559058780140613149e-06,2.709591649560649366e-06,2.860124518980685583e-06,3.010657388400721800e-06,3.161190257820758017e-06,3.311723127240794234e-06,3.462255996660830451e-06,3.612788866080866668e-06,3.763321735500902885e-06,3.913854604920939102e-06,4.064387474340975319e-06,4.214920343761011536e-06,4.365453213181047753e-06,4.515986082601083970e-06,4.666518952021120187e-06,4.817051821441156404e-06,4.967584690861192621e-06,5.118117560281228838e-06,5.268650429701265056e-06,5.419183299121301273e-06,5.569716168541337490e-06,5.720249037961373707e-06,5.870781907381409924e-06,6.021314776801446141e-06,6.171847646221482358e-06,6.322380515641518575e-06,6.472913385061554792e-06,6.623446254481591009e-06,6.773979123901627226e-06,6.924511993321663443e-06,7.075044862741699660e-06,7.225577732161735877e-06,7.376110601581772094e-06,7.526643471001808311e-06,7.677176340421844528e-06,7.827709209841879898e-06,7.978242079261915268e-06,8.128774948681950638e-06,8.279307818101986008e-06,8.429840687522021378e-06,8.580373556942056748e-06,8.730906426362092118e-06,8.881439295782127488e-06,9.031972165202162858e-06,9.182505034622198228e-06,9.333037904042233598e-06,9.483570773462268968e-06 +0.000000000000000000e+00,1.474045144951992037e-07,2.948090289903984074e-07,4.422135434855976111e-07,5.896180579807968148e-07,7.370225724759960185e-07,8.844270869711952222e-07,1.031831601466394320e-06,1.179236115961593418e-06,1.326640630456792516e-06,1.474045144951991614e-06,1.621449659447190711e-06,1.768854173942389809e-06,1.916258688437588907e-06,2.063663202932787793e-06,2.211067717427986679e-06,2.358472231923185565e-06,2.505876746418384451e-06,2.653281260913583337e-06,2.800685775408782223e-06,2.948090289903981109e-06,3.095494804399179996e-06,3.242899318894378882e-06,3.390303833389577768e-06,3.537708347884776654e-06,3.685112862379975540e-06,3.832517376875174426e-06,3.979921891370373312e-06,4.127326405865572198e-06,4.274730920360771084e-06,4.422135434855969970e-06,4.569539949351168856e-06,4.716944463846367742e-06,4.864348978341566628e-06,5.011753492836765514e-06,5.159158007331964401e-06,5.306562521827163287e-06,5.453967036322362173e-06,5.601371550817561059e-06,5.748776065312759945e-06,5.896180579807958831e-06,6.043585094303157717e-06,6.190989608798356603e-06,6.338394123293555489e-06,6.485798637788754375e-06,6.633203152283953261e-06,6.780607666779152147e-06,6.928012181274351033e-06,7.075416695769549919e-06,7.222821210264748805e-06,7.370225724759947692e-06,7.517630239255146578e-06,7.665034753750345464e-06,7.812439268245544350e-06,7.959843782740743236e-06,8.107248297235942122e-06,8.254652811731141008e-06,8.402057326226339894e-06,8.549461840721538780e-06,8.696866355216737666e-06,8.844270869711936552e-06,8.991675384207135438e-06,9.139079898702334324e-06,9.286484413197533210e-06 +0.000000000000000000e+00,1.473828179522500977e-07,2.947656359045001954e-07,4.421484538567502931e-07,5.895312718090003907e-07,7.369140897612504884e-07,8.842969077135005861e-07,1.031679725665750790e-06,1.179062543618000993e-06,1.326445361570251197e-06,1.473828179522501400e-06,1.621210997474751604e-06,1.768593815427001807e-06,1.915976633379252011e-06,2.063359451331502426e-06,2.210742269283752842e-06,2.358125087236003257e-06,2.505507905188253672e-06,2.652890723140504088e-06,2.800273541092754503e-06,2.947656359045004918e-06,3.095039176997255334e-06,3.242421994949505749e-06,3.389804812901756164e-06,3.537187630854006580e-06,3.684570448806256995e-06,3.831953266758507410e-06,3.979336084710758249e-06,4.126718902663009088e-06,4.274101720615259927e-06,4.421484538567510766e-06,4.568867356519761604e-06,4.716250174472012443e-06,4.863632992424263282e-06,5.011015810376514121e-06,5.158398628328764960e-06,5.305781446281015799e-06,5.453164264233266637e-06,5.600547082185517476e-06,5.747929900137768315e-06,5.895312718090019154e-06,6.042695536042269993e-06,6.190078353994520832e-06,6.337461171946771670e-06,6.484843989899022509e-06,6.632226807851273348e-06,6.779609625803524187e-06,6.926992443755775026e-06,7.074375261708025865e-06,7.221758079660276704e-06,7.369140897612527542e-06,7.516523715564778381e-06,7.663906533517030067e-06,7.811289351469281753e-06,7.958672169421533439e-06,8.106054987373785125e-06,8.253437805326036811e-06,8.400820623278288496e-06,8.548203441230540182e-06,8.695586259182791868e-06,8.842969077135043554e-06,8.990351895087295240e-06,9.137734713039546926e-06,9.285117530991798612e-06 +0.000000000000000000e+00,1.483391200063204549e-07,2.966782400126409098e-07,4.450173600189613646e-07,5.933564800252818195e-07,7.416956000316023273e-07,8.900347200379228352e-07,1.038373840044243343e-06,1.186712960050563851e-06,1.335052080056884359e-06,1.483391200063204866e-06,1.631730320069525374e-06,1.780069440075845882e-06,1.928408560082166178e-06,2.076747680088486262e-06,2.225086800094806347e-06,2.373425920101126431e-06,2.521765040107446515e-06,2.670104160113766600e-06,2.818443280120086684e-06,2.966782400126406768e-06,3.115121520132726853e-06,3.263460640139046937e-06,3.411799760145367021e-06,3.560138880151687106e-06,3.708478000158007190e-06,3.856817120164327274e-06,4.005156240170647358e-06,4.153495360176967443e-06,4.301834480183287527e-06,4.450173600189607611e-06,4.598512720195927696e-06,4.746851840202247780e-06,4.895190960208567864e-06,5.043530080214887949e-06,5.191869200221208033e-06,5.340208320227528117e-06,5.488547440233848201e-06,5.636886560240168286e-06,5.785225680246488370e-06,5.933564800252808454e-06,6.081903920259128539e-06,6.230243040265448623e-06,6.378582160271768707e-06,6.526921280278088792e-06,6.675260400284408876e-06,6.823599520290728960e-06,6.971938640297049045e-06,7.120277760303369129e-06,7.268616880309689213e-06,7.416956000316009297e-06,7.565295120322329382e-06,7.713634240328649466e-06,7.861973360334969550e-06,8.010312480341289635e-06,8.158651600347609719e-06,8.306990720353929803e-06,8.455329840360249888e-06,8.603668960366569972e-06,8.752008080372890056e-06,8.900347200379210140e-06,9.048686320385530225e-06,9.197025440391850309e-06,9.345364560398170393e-06 +0.000000000000000000e+00,1.495966152054905561e-07,2.991932304109811122e-07,4.487898456164716948e-07,5.983864608219623304e-07,7.479830760274529659e-07,8.975796912329436014e-07,1.047176306438434131e-06,1.196772921643924661e-06,1.346369536849415190e-06,1.495966152054905720e-06,1.645562767260396250e-06,1.795159382465886779e-06,1.944755997671377309e-06,2.094352612876867839e-06,2.243949228082358368e-06,2.393545843287848898e-06,2.543142458493339428e-06,2.692739073698829957e-06,2.842335688904320487e-06,2.991932304109811017e-06,3.141528919315301546e-06,3.291125534520792076e-06,3.440722149726282606e-06,3.590318764931773135e-06,3.739915380137263665e-06,3.889511995342753771e-06,4.039108610548243454e-06,4.188705225753733136e-06,4.338301840959222819e-06,4.487898456164712501e-06,4.637495071370202184e-06,4.787091686575691867e-06,4.936688301781181549e-06,5.086284916986671232e-06,5.235881532192160915e-06,5.385478147397650597e-06,5.535074762603140280e-06,5.684671377808629962e-06,5.834267993014119645e-06,5.983864608219609328e-06,6.133461223425099010e-06,6.283057838630588693e-06,6.432654453836078376e-06,6.582251069041568058e-06,6.731847684247057741e-06,6.881444299452547423e-06,7.031040914658037106e-06,7.180637529863526789e-06,7.330234145069016471e-06,7.479830760274506154e-06,7.629427375479995836e-06,7.779023990685485519e-06,7.928620605890975202e-06,8.078217221096464884e-06,8.227813836301954567e-06,8.377410451507444250e-06,8.527007066712933932e-06,8.676603681918423615e-06,8.826200297123913297e-06,8.975796912329402980e-06,9.125393527534892663e-06,9.274990142740382345e-06,9.424586757945872028e-06 +0.000000000000000000e+00,1.450062545469674922e-07,2.900125090939349843e-07,4.350187636409024500e-07,5.800250181878698628e-07,7.250312727348372756e-07,8.700375272818046883e-07,1.015043781828772101e-06,1.160050036375739514e-06,1.305056290922706927e-06,1.450062545469674339e-06,1.595068800016641752e-06,1.740075054563609165e-06,1.885081309110576578e-06,2.030087563657544202e-06,2.175093818204511827e-06,2.320100072751479451e-06,2.465106327298447076e-06,2.610112581845414700e-06,2.755118836392382325e-06,2.900125090939349949e-06,3.045131345486317574e-06,3.190137600033285198e-06,3.335143854580252823e-06,3.480150109127220447e-06,3.625156363674188072e-06,3.770162618221155696e-06,3.915168872768123321e-06,4.060175127315090945e-06,4.205181381862058570e-06,4.350187636409026195e-06,4.495193890955993819e-06,4.640200145502961444e-06,4.785206400049929068e-06,4.930212654596896693e-06,5.075218909143864317e-06,5.220225163690831942e-06,5.365231418237799566e-06,5.510237672784767191e-06,5.655243927331734815e-06,5.800250181878702440e-06,5.945256436425670064e-06,6.090262690972637689e-06,6.235268945519605313e-06,6.380275200066572938e-06,6.525281454613540562e-06,6.670287709160508187e-06,6.815293963707475811e-06,6.960300218254443436e-06,7.105306472801411060e-06,7.250312727348378685e-06,7.395318981895346309e-06,7.540325236442313934e-06,7.685331490989282406e-06,7.830337745536251724e-06,7.975344000083221043e-06,8.120350254630190361e-06,8.265356509177159680e-06,8.410362763724128998e-06,8.555369018271098317e-06,8.700375272818067636e-06,8.845381527365036954e-06,8.990387781912006273e-06,9.135394036458975591e-06 +0.000000000000000000e+00,1.547323500587297817e-07,3.094647001174595633e-07,4.641970501761893450e-07,6.189294002349191266e-07,7.736617502936489083e-07,9.283941003523786899e-07,1.083126450411108577e-06,1.237858800469838465e-06,1.392591150528568353e-06,1.547323500587298240e-06,1.702055850646028128e-06,1.856788200704758015e-06,2.011520550763487903e-06,2.166252900822218002e-06,2.320985250880948101e-06,2.475717600939678200e-06,2.630449950998408300e-06,2.785182301057138399e-06,2.939914651115868498e-06,3.094647001174598598e-06,3.249379351233328697e-06,3.404111701292058796e-06,3.558844051350788896e-06,3.713576401409518995e-06,3.868308751468249094e-06,4.023041101526979193e-06,4.177773451585709293e-06,4.332505801644439392e-06,4.487238151703169491e-06,4.641970501761899591e-06,4.796702851820629690e-06,4.951435201879359789e-06,5.106167551938089888e-06,5.260899901996819988e-06,5.415632252055550087e-06,5.570364602114280186e-06,5.725096952173010286e-06,5.879829302231740385e-06,6.034561652290470484e-06,6.189294002349200583e-06,6.344026352407930683e-06,6.498758702466660782e-06,6.653491052525390881e-06,6.808223402584120981e-06,6.962955752642851080e-06,7.117688102701581179e-06,7.272420452760311278e-06,7.427152802819041378e-06,7.581885152877771477e-06,7.736617502936501576e-06,7.891349852995231676e-06,8.046082203053961775e-06,8.200814553112691874e-06,8.355546903171421973e-06,8.510279253230152073e-06,8.665011603288882172e-06,8.819743953347612271e-06,8.974476303406342371e-06,9.129208653465072470e-06,9.283941003523802569e-06,9.438673353582532669e-06,9.593405703641262768e-06,9.748138053699992867e-06 +0.000000000000000000e+00,1.526400969969199269e-07,3.052801939938398539e-07,4.579202909907597808e-07,6.105603879876797078e-07,7.632004849845995818e-07,9.158405819815194558e-07,1.068480678978439330e-06,1.221120775975359204e-06,1.373760872972279078e-06,1.526400969969198952e-06,1.679041066966118826e-06,1.831681163963038700e-06,1.984321260959958786e-06,2.136961357956879083e-06,2.289601454953799381e-06,2.442241551950719678e-06,2.594881648947639976e-06,2.747521745944560273e-06,2.900161842941480571e-06,3.052801939938400868e-06,3.205442036935321166e-06,3.358082133932241463e-06,3.510722230929161761e-06,3.663362327926082058e-06,3.816002424923002356e-06,3.968642521919922653e-06,4.121282618916842951e-06,4.273922715913763248e-06,4.426562812910683546e-06,4.579202909907603843e-06,4.731843006904524141e-06,4.884483103901444438e-06,5.037123200898364736e-06,5.189763297895285033e-06,5.342403394892205331e-06,5.495043491889125628e-06,5.647683588886045926e-06,5.800323685882966224e-06,5.952963782879886521e-06,6.105603879876806819e-06,6.258243976873727116e-06,6.410884073870647414e-06,6.563524170867567711e-06,6.716164267864488009e-06,6.868804364861408306e-06,7.021444461858328604e-06,7.174084558855248901e-06,7.326724655852169199e-06,7.479364752849089496e-06,7.632004849846009794e-06,7.784644946842929244e-06,7.937285043839848695e-06,8.089925140836768145e-06,8.242565237833687596e-06,8.395205334830607046e-06,8.547845431827526497e-06,8.700485528824445947e-06,8.853125625821365398e-06,9.005765722818284848e-06,9.158405819815204299e-06,9.311045916812123749e-06,9.463686013809043200e-06,9.616326110805962650e-06 +0.000000000000000000e+00,1.525464493594762391e-07,3.050928987189524781e-07,4.576393480784287172e-07,6.101857974379049563e-07,7.627322467973811424e-07,9.152786961568573285e-07,1.067825145516333515e-06,1.220371594875809701e-06,1.372918044235285887e-06,1.525464493594762073e-06,1.678010942954238259e-06,1.830557392313714445e-06,1.983103841673190843e-06,2.135650291032667453e-06,2.288196740392144062e-06,2.440743189751620672e-06,2.593289639111097282e-06,2.745836088470573891e-06,2.898382537830050501e-06,3.050928987189527111e-06,3.203475436549003720e-06,3.356021885908480330e-06,3.508568335267956940e-06,3.661114784627433549e-06,3.813661233986910159e-06,3.966207683346386769e-06,4.118754132705863378e-06,4.271300582065339988e-06,4.423847031424816597e-06,4.576393480784293207e-06,4.728939930143769817e-06,4.881486379503246426e-06,5.034032828862723036e-06,5.186579278222199646e-06,5.339125727581676255e-06,5.491672176941152865e-06,5.644218626300629475e-06,5.796765075660106084e-06,5.949311525019582694e-06,6.101857974379059304e-06,6.254404423738535913e-06,6.406950873098012523e-06,6.559497322457489133e-06,6.712043771816965742e-06,6.864590221176442352e-06,7.017136670535918961e-06,7.169683119895395571e-06,7.322229569254872181e-06,7.474776018614348790e-06,7.627322467973825400e-06,7.779868917333302857e-06,7.932415366692780313e-06,8.084961816052257770e-06,8.237508265411735227e-06,8.390054714771212683e-06,8.542601164130690140e-06,8.695147613490167597e-06,8.847694062849645053e-06,9.000240512209122510e-06,9.152786961568599967e-06,9.305333410928077423e-06,9.457879860287554880e-06,9.610426309647032337e-06 +0.000000000000000000e+00,1.526728691849815480e-07,3.053457383699630960e-07,4.580186075549446440e-07,6.106914767399261920e-07,7.633643459249077929e-07,9.160372151098893939e-07,1.068710084294870995e-06,1.221382953479852596e-06,1.374055822664834197e-06,1.526728691849815798e-06,1.679401561034797399e-06,1.832074430219778999e-06,1.984747299404760600e-06,2.137420168589741990e-06,2.290093037774723379e-06,2.442765906959704768e-06,2.595438776144686157e-06,2.748111645329667546e-06,2.900784514514648935e-06,3.053457383699630325e-06,3.206130252884611714e-06,3.358803122069593103e-06,3.511475991254574492e-06,3.664148860439555881e-06,3.816821729624537694e-06,3.969494598809519507e-06,4.122167467994501319e-06,4.274840337179483132e-06,4.427513206364464945e-06,4.580186075549446758e-06,4.732858944734428570e-06,4.885531813919410383e-06,5.038204683104392196e-06,5.190877552289374008e-06,5.343550421474355821e-06,5.496223290659337634e-06,5.648896159844319446e-06,5.801569029029301259e-06,5.954241898214283072e-06,6.106914767399264885e-06,6.259587636584246697e-06,6.412260505769228510e-06,6.564933374954210323e-06,6.717606244139192135e-06,6.870279113324173948e-06,7.022951982509155761e-06,7.175624851694137573e-06,7.328297720879119386e-06,7.480970590064101199e-06,7.633643459249082164e-06,7.786316328434063130e-06,7.938989197619044096e-06,8.091662066804025061e-06,8.244334935989006027e-06,8.397007805173986993e-06,8.549680674358967958e-06,8.702353543543948924e-06,8.855026412728929890e-06,9.007699281913910855e-06,9.160372151098891821e-06,9.313045020283872787e-06,9.465717889468853752e-06,9.618390758653834718e-06 +0.000000000000000000e+00,1.544127124155180559e-07,3.088254248310361117e-07,4.632381372465541676e-07,6.176508496620722235e-07,7.720635620775902794e-07,9.264762744931083352e-07,1.080888986908626391e-06,1.235301699324144447e-06,1.389714411739662503e-06,1.544127124155180559e-06,1.698539836570698615e-06,1.852952548986216670e-06,2.007365261401734726e-06,2.161777973817252782e-06,2.316190686232770838e-06,2.470603398648288894e-06,2.625016111063806950e-06,2.779428823479325006e-06,2.933841535894843062e-06,3.088254248310361117e-06,3.242666960725879173e-06,3.397079673141397229e-06,3.551492385556915285e-06,3.705905097972433341e-06,3.860317810387951397e-06,4.014730522803469453e-06,4.169143235218987509e-06,4.323555947634505564e-06,4.477968660050023620e-06,4.632381372465541676e-06,4.786794084881059732e-06,4.941206797296577788e-06,5.095619509712095844e-06,5.250032222127613900e-06,5.404444934543131956e-06,5.558857646958650011e-06,5.713270359374168067e-06,5.867683071789686123e-06,6.022095784205204179e-06,6.176508496620722235e-06,6.330921209036240291e-06,6.485333921451758347e-06,6.639746633867276402e-06,6.794159346282794458e-06,6.948572058698312514e-06,7.102984771113830570e-06,7.257397483529348626e-06,7.411810195944866682e-06,7.566222908360384738e-06,7.720635620775902794e-06,7.875048333191420849e-06,8.029461045606938905e-06,8.183873758022456961e-06,8.338286470437975017e-06,8.492699182853493073e-06,8.647111895269011129e-06,8.801524607684529185e-06,8.955937320100047241e-06,9.110350032515565296e-06,9.264762744931083352e-06,9.419175457346601408e-06,9.573588169762119464e-06,9.728000882177637520e-06 +0.000000000000000000e+00,1.499501999965343914e-07,2.999003999930687829e-07,4.498505999896031743e-07,5.998007999861375657e-07,7.497509999826719572e-07,8.997011999792063486e-07,1.049651399975740740e-06,1.199601599972275131e-06,1.349551799968809523e-06,1.499501999965343914e-06,1.649452199961878306e-06,1.799402399958412697e-06,1.949352599954947089e-06,2.099302799951481480e-06,2.249252999948015872e-06,2.399203199944550263e-06,2.549153399941084654e-06,2.699103599937619046e-06,2.849053799934153437e-06,2.999003999930687829e-06,3.148954199927222220e-06,3.298904399923756612e-06,3.448854599920291003e-06,3.598804799916825394e-06,3.748754999913359786e-06,3.898705199909894177e-06,4.048655399906428992e-06,4.198605599902963807e-06,4.348555799899498622e-06,4.498505999896033437e-06,4.648456199892568252e-06,4.798406399889103067e-06,4.948356599885637882e-06,5.098306799882172697e-06,5.248256999878707512e-06,5.398207199875242327e-06,5.548157399871777142e-06,5.698107599868311957e-06,5.848057799864846772e-06,5.998007999861381587e-06,6.147958199857916402e-06,6.297908399854451217e-06,6.447858599850986032e-06,6.597808799847520847e-06,6.747758999844055661e-06,6.897709199840590476e-06,7.047659399837125291e-06,7.197609599833660106e-06,7.347559799830194921e-06,7.497509999826729736e-06,7.647460199823264551e-06,7.797410399819800213e-06,7.947360599816335875e-06,8.097310799812871537e-06,8.247260999809407199e-06,8.397211199805942861e-06,8.547161399802478523e-06,8.697111599799014185e-06,8.847061799795549847e-06,8.997011999792085509e-06,9.146962199788621171e-06,9.296912399785156833e-06,9.446862599781692495e-06 +0.000000000000000000e+00,1.525926517193810586e-07,3.051853034387621171e-07,4.577779551581431757e-07,6.103706068775242343e-07,7.629632585969052399e-07,9.155559103162862456e-07,1.068148562035667251e-06,1.220741213755048257e-06,1.373333865474429262e-06,1.525926517193810268e-06,1.678519168913191274e-06,1.831111820632572279e-06,1.983704472351953497e-06,2.136297124071334926e-06,2.288889775790716355e-06,2.441482427510097784e-06,2.594075079229479213e-06,2.746667730948860642e-06,2.899260382668242072e-06,3.051853034387623501e-06,3.204445686107004930e-06,3.357038337826386359e-06,3.509630989545767788e-06,3.662223641265149217e-06,3.814816292984530647e-06,3.967408944703912076e-06,4.120001596423293505e-06,4.272594248142674934e-06,4.425186899862056363e-06,4.577779551581437792e-06,4.730372203300819221e-06,4.882964855020200651e-06,5.035557506739582080e-06,5.188150158458963509e-06,5.340742810178344938e-06,5.493335461897726367e-06,5.645928113617107796e-06,5.798520765336489225e-06,5.951113417055870655e-06,6.103706068775252084e-06,6.256298720494633513e-06,6.408891372214014942e-06,6.561484023933396371e-06,6.714076675652777800e-06,6.866669327372159230e-06,7.019261979091540659e-06,7.171854630810922088e-06,7.324447282530303517e-06,7.477039934249684946e-06,7.629632585969066375e-06,7.782225237688447804e-06,7.934817889407829234e-06,8.087410541127210663e-06,8.240003192846592092e-06,8.392595844565973521e-06,8.545188496285354950e-06,8.697781148004736379e-06,8.850373799724117808e-06,9.002966451443499238e-06,9.155559103162880667e-06,9.308151754882262096e-06,9.460744406601643525e-06,9.613337058321024954e-06 +0.000000000000000000e+00,1.499095223037162200e-07,2.998190446074324400e-07,4.497285669111486600e-07,5.996380892148648801e-07,7.495476115185811001e-07,8.994571338222973201e-07,1.049366656126013540e-06,1.199276178429729760e-06,1.349185700733445980e-06,1.499095223037162200e-06,1.649004745340878420e-06,1.798914267644594640e-06,1.948823789948310648e-06,2.098733312252026657e-06,2.248642834555742665e-06,2.398552356859458673e-06,2.548461879163174681e-06,2.698371401466890690e-06,2.848280923770606698e-06,2.998190446074322706e-06,3.148099968378038715e-06,3.298009490681754723e-06,3.447919012985470731e-06,3.597828535289186739e-06,3.747738057592902748e-06,3.897647579896618756e-06,4.047557102200334764e-06,4.197466624504050772e-06,4.347376146807766781e-06,4.497285669111482789e-06,4.647195191415198797e-06,4.797104713718914805e-06,4.947014236022630814e-06,5.096923758326346822e-06,5.246833280630062830e-06,5.396742802933778838e-06,5.546652325237494847e-06,5.696561847541210855e-06,5.846471369844926863e-06,5.996380892148642871e-06,6.146290414452358880e-06,6.296199936756074888e-06,6.446109459059790896e-06,6.596018981363506904e-06,6.745928503667222913e-06,6.895838025970938921e-06,7.045747548274654929e-06,7.195657070578370937e-06,7.345566592882086946e-06,7.495476115185802954e-06,7.645385637489518962e-06,7.795295159793235818e-06,7.945204682096952673e-06,8.095114204400669528e-06,8.245023726704386383e-06,8.394933249008103239e-06,8.544842771311820094e-06,8.694752293615536949e-06,8.844661815919253805e-06,8.994571338222970660e-06,9.144480860526687515e-06,9.294390382830404370e-06,9.444299905134121226e-06 +0.000000000000000000e+00,1.547323500587307346e-07,3.094647001174614691e-07,4.641970501761922037e-07,6.189294002349229383e-07,7.736617502936536728e-07,9.283941003523844074e-07,1.083126450411115142e-06,1.237858800469845877e-06,1.392591150528576611e-06,1.547323500587307346e-06,1.702055850646038080e-06,1.856788200704768815e-06,2.011520550763499761e-06,2.166252900822230707e-06,2.320985250880961654e-06,2.475717600939692600e-06,2.630449950998423546e-06,2.785182301057154493e-06,2.939914651115885439e-06,3.094647001174616385e-06,3.249379351233347332e-06,3.404111701292078278e-06,3.558844051350809224e-06,3.713576401409540171e-06,3.868308751468271117e-06,4.023041101527002063e-06,4.177773451585733010e-06,4.332505801644463956e-06,4.487238151703194902e-06,4.641970501761925849e-06,4.796702851820656795e-06,4.951435201879387741e-06,5.106167551938118688e-06,5.260899901996849634e-06,5.415632252055580580e-06,5.570364602114311526e-06,5.725096952173042473e-06,5.879829302231773419e-06,6.034561652290504365e-06,6.189294002349235312e-06,6.344026352407966258e-06,6.498758702466697204e-06,6.653491052525428151e-06,6.808223402584159097e-06,6.962955752642890043e-06,7.117688102701620990e-06,7.272420452760351936e-06,7.427152802819082882e-06,7.581885152877813829e-06,7.736617502936545622e-06,7.891349852995277415e-06,8.046082203054009209e-06,8.200814553112741002e-06,8.355546903171472795e-06,8.510279253230204589e-06,8.665011603288936382e-06,8.819743953347668176e-06,8.974476303406399969e-06,9.129208653465131762e-06,9.283941003523863556e-06,9.438673353582595349e-06,9.593405703641327142e-06,9.748138053700058936e-06 +0.000000000000000000e+00,1.526400969969197152e-07,3.052801939938394304e-07,4.579202909907591456e-07,6.105603879876788607e-07,7.632004849845985230e-07,9.158405819815181852e-07,1.068480678978437847e-06,1.221120775975357510e-06,1.373760872972277172e-06,1.526400969969196834e-06,1.679041066966116496e-06,1.831681163963036159e-06,1.984321260959955821e-06,2.136961357956875695e-06,2.289601454953795569e-06,2.442241551950715443e-06,2.594881648947635317e-06,2.747521745944555191e-06,2.900161842941475065e-06,3.052801939938394939e-06,3.205442036935314813e-06,3.358082133932234687e-06,3.510722230929154561e-06,3.663362327926074435e-06,3.816002424922994732e-06,3.968642521919915030e-06,4.121282618916835328e-06,4.273922715913755625e-06,4.426562812910675923e-06,4.579202909907596220e-06,4.731843006904516518e-06,4.884483103901436815e-06,5.037123200898357113e-06,5.189763297895277410e-06,5.342403394892197708e-06,5.495043491889118005e-06,5.647683588886038303e-06,5.800323685882958600e-06,5.952963782879878898e-06,6.105603879876799195e-06,6.258243976873719493e-06,6.410884073870639790e-06,6.563524170867560088e-06,6.716164267864480385e-06,6.868804364861400683e-06,7.021444461858320980e-06,7.174084558855241278e-06,7.326724655852161575e-06,7.479364752849081873e-06,7.632004849846003017e-06,7.784644946842924162e-06,7.937285043839845307e-06,8.089925140836766451e-06,8.242565237833687596e-06,8.395205334830608740e-06,8.547845431827529885e-06,8.700485528824451029e-06,8.853125625821372174e-06,9.005765722818293318e-06,9.158405819815214463e-06,9.311045916812135608e-06,9.463686013809056752e-06,9.616326110805977897e-06 +0.000000000000000000e+00,1.525926517193810056e-07,3.051853034387620113e-07,4.577779551581430169e-07,6.103706068775240225e-07,7.629632585969050282e-07,9.155559103162860338e-07,1.068148562035667039e-06,1.220741213755048045e-06,1.373333865474429051e-06,1.525926517193810056e-06,1.678519168913191062e-06,1.831111820632572068e-06,1.983704472351953073e-06,2.136297124071334079e-06,2.288889775790715084e-06,2.441482427510096090e-06,2.594075079229477096e-06,2.746667730948858101e-06,2.899260382668239107e-06,3.051853034387620113e-06,3.204445686107001118e-06,3.357038337826382124e-06,3.509630989545763130e-06,3.662223641265144135e-06,3.814816292984525564e-06,3.967408944703906993e-06,4.120001596423288423e-06,4.272594248142669852e-06,4.425186899862051281e-06,4.577779551581432710e-06,4.730372203300814139e-06,4.882964855020195568e-06,5.035557506739576998e-06,5.188150158458958427e-06,5.340742810178339856e-06,5.493335461897721285e-06,5.645928113617102714e-06,5.798520765336484143e-06,5.951113417055865572e-06,6.103706068775247002e-06,6.256298720494628431e-06,6.408891372214009860e-06,6.561484023933391289e-06,6.714076675652772718e-06,6.866669327372154147e-06,7.019261979091535576e-06,7.171854630810917006e-06,7.324447282530298435e-06,7.477039934249679864e-06,7.629632585969061293e-06,7.782225237688442722e-06,7.934817889407824151e-06,8.087410541127205581e-06,8.240003192846587010e-06,8.392595844565968439e-06,8.545188496285349868e-06,8.697781148004731297e-06,8.850373799724112726e-06,9.002966451443494155e-06,9.155559103162875585e-06,9.308151754882257014e-06,9.460744406601638443e-06,9.613337058321019872e-06 +0.000000000000000000e+00,1.526728691849841420e-07,3.053457383699682841e-07,4.580186075549524261e-07,6.106914767399365681e-07,7.633643459249207102e-07,9.160372151099048522e-07,1.068710084294888994e-06,1.221382953479873136e-06,1.374055822664857278e-06,1.526728691849841420e-06,1.679401561034825562e-06,1.832074430219809704e-06,1.984747299404794058e-06,2.137420168589778412e-06,2.290093037774762766e-06,2.442765906959747120e-06,2.595438776144731473e-06,2.748111645329715827e-06,2.900784514514700181e-06,3.053457383699684535e-06,3.206130252884668889e-06,3.358803122069653242e-06,3.511475991254637596e-06,3.664148860439621950e-06,3.816821729624606304e-06,3.969494598809590658e-06,4.122167467994575011e-06,4.274840337179559365e-06,4.427513206364543719e-06,4.580186075549528073e-06,4.732858944734512427e-06,4.885531813919496780e-06,5.038204683104481134e-06,5.190877552289465488e-06,5.343550421474449842e-06,5.496223290659434195e-06,5.648896159844418549e-06,5.801569029029402903e-06,5.954241898214387257e-06,6.106914767399371611e-06,6.259587636584355964e-06,6.412260505769340318e-06,6.564933374954324672e-06,6.717606244139309026e-06,6.870279113324293380e-06,7.022951982509277733e-06,7.175624851694262087e-06,7.328297720879246441e-06,7.480970590064230795e-06,7.633643459249214302e-06,7.786316328434196961e-06,7.938989197619179621e-06,8.091662066804162281e-06,8.244334935989144940e-06,8.397007805174127600e-06,8.549680674359110260e-06,8.702353543544092920e-06,8.855026412729075579e-06,9.007699281914058239e-06,9.160372151099040899e-06,9.313045020284023559e-06,9.465717889469006218e-06,9.618390758653988878e-06 +0.000000000000000000e+00,1.544127124155191676e-07,3.088254248310383352e-07,4.632381372465575028e-07,6.176508496620766704e-07,7.720635620775957851e-07,9.264762744931148997e-07,1.080888986908634014e-06,1.235301699324153129e-06,1.389714411739672244e-06,1.544127124155191358e-06,1.698539836570710473e-06,1.852952548986229588e-06,2.007365261401748702e-06,2.161777973817268029e-06,2.316190686232787355e-06,2.470603398648306682e-06,2.625016111063826008e-06,2.779428823479345334e-06,2.933841535894864661e-06,3.088254248310383987e-06,3.242666960725903314e-06,3.397079673141422640e-06,3.551492385556941967e-06,3.705905097972461293e-06,3.860317810387980196e-06,4.014730522803499099e-06,4.169143235219018002e-06,4.323555947634536905e-06,4.477968660050055808e-06,4.632381372465574710e-06,4.786794084881093613e-06,4.941206797296612516e-06,5.095619509712131419e-06,5.250032222127650322e-06,5.404444934543169225e-06,5.558857646958688128e-06,5.713270359374207031e-06,5.867683071789725934e-06,6.022095784205244837e-06,6.176508496620763739e-06,6.330921209036282642e-06,6.485333921451801545e-06,6.639746633867320448e-06,6.794159346282839351e-06,6.948572058698358254e-06,7.102984771113877157e-06,7.257397483529396060e-06,7.411810195944914963e-06,7.566222908360433866e-06,7.720635620775953616e-06,7.875048333191473365e-06,8.029461045606993115e-06,8.183873758022512865e-06,8.338286470438032615e-06,8.492699182853552365e-06,8.647111895269072115e-06,8.801524607684591865e-06,8.955937320100111615e-06,9.110350032515631365e-06,9.264762744931151115e-06,9.419175457346670865e-06,9.573588169762190615e-06,9.728000882177710365e-06 +0.000000000000000000e+00,1.499501999965341797e-07,2.999003999930683594e-07,4.498505999896025390e-07,5.998007999861367187e-07,7.497509999826708984e-07,8.997011999792050781e-07,1.049651399975739258e-06,1.199601599972273437e-06,1.349551799968807617e-06,1.499501999965341797e-06,1.649452199961875976e-06,1.799402399958410156e-06,1.949352599954944124e-06,2.099302799951478092e-06,2.249252999948012060e-06,2.399203199944546028e-06,2.549153399941079996e-06,2.699103599937613964e-06,2.849053799934147932e-06,2.999003999930681900e-06,3.148954199927215867e-06,3.298904399923749835e-06,3.448854599920283803e-06,3.598804799916817771e-06,3.748754999913351739e-06,3.898705199909885707e-06,4.048655399906419675e-06,4.198605599902953643e-06,4.348555799899487611e-06,4.498505999896021579e-06,4.648456199892555547e-06,4.798406399889089515e-06,4.948356599885623482e-06,5.098306799882157450e-06,5.248256999878691418e-06,5.398207199875225386e-06,5.548157399871759354e-06,5.698107599868293322e-06,5.848057799864827290e-06,5.998007999861361258e-06,6.147958199857895226e-06,6.297908399854429194e-06,6.447858599850963162e-06,6.597808799847497130e-06,6.747758999844031098e-06,6.897709199840565065e-06,7.047659399837099033e-06,7.197609599833633001e-06,7.347559799830166969e-06,7.497509999826700937e-06,7.647460199823235752e-06,7.797410399819769720e-06,7.947360599816303688e-06,8.097310799812837656e-06,8.247260999809371624e-06,8.397211199805905592e-06,8.547161399802439560e-06,8.697111599798973527e-06,8.847061799795507495e-06,8.997011999792041463e-06,9.146962199788575431e-06,9.296912399785109399e-06,9.446862599781643367e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.567957217241896287e-07,3.135914434483792574e-07,4.703871651725688860e-07,6.271828868967585147e-07,7.839786086209481434e-07,9.407743303451377721e-07,1.097570052069327401e-06,1.254365773793517029e-06,1.411161495517706658e-06,1.567957217241896287e-06,1.724752938966085915e-06,1.881548660690275544e-06,2.038344382414464961e-06,2.195140104138654378e-06,2.351935825862843795e-06,2.508731547587033212e-06,2.665527269311222629e-06,2.822322991035412046e-06,2.979118712759601463e-06,3.135914434483790879e-06,3.292710156207980296e-06,3.449505877932169713e-06,3.606301599656359130e-06,3.763097321380548547e-06,3.919893043104737964e-06,4.076688764828927381e-06,4.233484486553116798e-06,4.390280208277306215e-06,4.547075930001495632e-06,4.703871651725685049e-06,4.860667373449874466e-06,5.017463095174063882e-06,5.174258816898253299e-06,5.331054538622442716e-06,5.487850260346632133e-06,5.644645982070821550e-06,5.801441703795010967e-06,5.958237425519200384e-06,6.115033147243389801e-06,6.271828868967579218e-06,6.428624590691768635e-06,6.585420312415958052e-06,6.742216034140147469e-06,6.899011755864336886e-06,7.055807477588526302e-06,7.212603199312715719e-06,7.369398921036905136e-06,7.526194642761094553e-06,7.682990364485283970e-06,7.839786086209472540e-06,7.996581807933661110e-06,8.153377529657849680e-06,8.310173251382038250e-06,8.466968973106226820e-06,8.623764694830415389e-06,8.780560416554603959e-06,8.937356138278792529e-06,9.094151860002981099e-06,9.250947581727169669e-06,9.407743303451358239e-06,9.564539025175546809e-06,9.721334746899735379e-06,9.878130468623923948e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.556758218309939380e-07,3.113516436619878760e-07,4.670274654929817876e-07,6.227032873239756462e-07,7.783791091549695048e-07,9.340549309859633634e-07,1.089730752816957222e-06,1.245406574647951081e-06,1.401082396478944939e-06,1.556758218309938798e-06,1.712434040140932656e-06,1.868109861971926515e-06,2.023785683802920162e-06,2.179461505633914021e-06,2.335137327464907879e-06,2.490813149295901738e-06,2.646488971126895596e-06,2.802164792957889455e-06,2.957840614788883314e-06,3.113516436619877172e-06,3.269192258450871031e-06,3.424868080281864889e-06,3.580543902112858748e-06,3.736219723943852607e-06,3.891895545774846465e-06,4.047571367605840324e-06,4.203247189436834183e-06,4.358923011267828041e-06,4.514598833098821900e-06,4.670274654929815758e-06,4.825950476760809617e-06,4.981626298591803476e-06,5.137302120422797334e-06,5.292977942253791193e-06,5.448653764084785051e-06,5.604329585915778910e-06,5.760005407746772769e-06,5.915681229577766627e-06,6.071357051408760486e-06,6.227032873239754344e-06,6.382708695070748203e-06,6.538384516901742062e-06,6.694060338732735920e-06,6.849736160563729779e-06,7.005411982394723638e-06,7.161087804225717496e-06,7.316763626056711355e-06,7.472439447887705213e-06,7.628115269718699072e-06,7.783791091549692931e-06,7.939466913380686789e-06,8.095142735211680648e-06,8.250818557042674506e-06,8.406494378873668365e-06,8.562170200704662224e-06,8.717846022535656082e-06,8.873521844366649941e-06,9.029197666197643799e-06,9.184873488028637658e-06,9.340549309859631517e-06,9.496225131690625375e-06,9.651900953521619234e-06,9.807576775352613093e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.558146276396518784e-07,3.116292552793037569e-07,4.674438829189556353e-07,6.232585105586075137e-07,7.790731381982593392e-07,9.348877658379111647e-07,1.090702393477562990e-06,1.246517021117214816e-06,1.402331648756866641e-06,1.558146276396518467e-06,1.713960904036170292e-06,1.869775531675822118e-06,2.025590159315474155e-06,2.181404786955126404e-06,2.337219414594778653e-06,2.493034042234430902e-06,2.648848669874083151e-06,2.804663297513735400e-06,2.960477925153387649e-06,3.116292552793039898e-06,3.272107180432692147e-06,3.427921808072344396e-06,3.583736435711996645e-06,3.739551063351648894e-06,3.895365690991301143e-06,4.051180318630953392e-06,4.206994946270605641e-06,4.362809573910257890e-06,4.518624201549910139e-06,4.674438829189562388e-06,4.830253456829214637e-06,4.986068084468866886e-06,5.141882712108519135e-06,5.297697339748171384e-06,5.453511967387823633e-06,5.609326595027475882e-06,5.765141222667128131e-06,5.920955850306780380e-06,6.076770477946432629e-06,6.232585105586084878e-06,6.388399733225737127e-06,6.544214360865389376e-06,6.700028988505041625e-06,6.855843616144693874e-06,7.011658243784346123e-06,7.167472871423998372e-06,7.323287499063650621e-06,7.479102126703302870e-06,7.634916754342955966e-06,7.790731381982609062e-06,7.946546009622262158e-06,8.102360637261915254e-06,8.258175264901568350e-06,8.413989892541221446e-06,8.569804520180874542e-06,8.725619147820527638e-06,8.881433775460180735e-06,9.037248403099833831e-06,9.193063030739486927e-06,9.348877658379140023e-06,9.504692286018793119e-06,9.660506913658446215e-06,9.816321541298099311e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.567957217241901581e-07,3.135914434483803161e-07,4.703871651725704742e-07,6.271828868967606323e-07,7.839786086209507904e-07,9.407743303451409484e-07,1.097570052069331001e-06,1.254365773793521053e-06,1.411161495517711105e-06,1.567957217241901157e-06,1.724752938966091209e-06,1.881548660690281262e-06,2.038344382414471314e-06,2.195140104138661154e-06,2.351935825862850995e-06,2.508731547587040835e-06,2.665527269311230676e-06,2.822322991035420516e-06,2.979118712759610356e-06,3.135914434483800197e-06,3.292710156207990037e-06,3.449505877932179878e-06,3.606301599656369718e-06,3.763097321380559559e-06,3.919893043104749823e-06,4.076688764828940086e-06,4.233484486553130350e-06,4.390280208277320614e-06,4.547075930001510878e-06,4.703871651725701142e-06,4.860667373449891406e-06,5.017463095174081670e-06,5.174258816898271934e-06,5.331054538622462198e-06,5.487850260346652462e-06,5.644645982070842726e-06,5.801441703795032990e-06,5.958237425519223254e-06,6.115033147243413518e-06,6.271828868967603782e-06,6.428624590691794046e-06,6.585420312415984310e-06,6.742216034140174574e-06,6.899011755864364838e-06,7.055807477588555102e-06,7.212603199312745365e-06,7.369398921036935629e-06,7.526194642761125893e-06,7.682990364485316157e-06,7.839786086209506421e-06,7.996581807933696685e-06,8.153377529657886949e-06,8.310173251382077213e-06,8.466968973106267477e-06,8.623764694830457741e-06,8.780560416554648005e-06,8.937356138278838269e-06,9.094151860003028533e-06,9.250947581727218797e-06,9.407743303451409061e-06,9.564539025175599325e-06,9.721334746899789589e-06,9.878130468623979853e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.556758218309938851e-07,3.113516436619877702e-07,4.670274654929816817e-07,6.227032873239756462e-07,7.783791091549696107e-07,9.340549309859635752e-07,1.089730752816957434e-06,1.245406574647951292e-06,1.401082396478945151e-06,1.556758218309939010e-06,1.712434040140932868e-06,1.868109861971926727e-06,2.023785683802920585e-06,2.179461505633914444e-06,2.335137327464908303e-06,2.490813149295902161e-06,2.646488971126896020e-06,2.802164792957889879e-06,2.957840614788883737e-06,3.113516436619877596e-06,3.269192258450871454e-06,3.424868080281865313e-06,3.580543902112859172e-06,3.736219723943853030e-06,3.891895545774846465e-06,4.047571367605840324e-06,4.203247189436834183e-06,4.358923011267828041e-06,4.514598833098821900e-06,4.670274654929815758e-06,4.825950476760809617e-06,4.981626298591803476e-06,5.137302120422797334e-06,5.292977942253791193e-06,5.448653764084785051e-06,5.604329585915778910e-06,5.760005407746772769e-06,5.915681229577766627e-06,6.071357051408760486e-06,6.227032873239754344e-06,6.382708695070748203e-06,6.538384516901742062e-06,6.694060338732735920e-06,6.849736160563729779e-06,7.005411982394723638e-06,7.161087804225717496e-06,7.316763626056711355e-06,7.472439447887705213e-06,7.628115269718699072e-06,7.783791091549692931e-06,7.939466913380686789e-06,8.095142735211680648e-06,8.250818557042674506e-06,8.406494378873668365e-06,8.562170200704662224e-06,8.717846022535656082e-06,8.873521844366649941e-06,9.029197666197643799e-06,9.184873488028637658e-06,9.340549309859631517e-06,9.496225131690625375e-06,9.651900953521619234e-06,9.807576775352613093e-06 +0.000000000000000000e+00,1.437585534401514366e-07,2.875171068803028731e-07,4.312756603204542832e-07,5.750342137606056404e-07,7.187927672007569976e-07,8.625513206409083547e-07,1.006309874081059818e-06,1.150068427521211281e-06,1.293826980961362744e-06,1.437585534401514207e-06,1.581344087841665670e-06,1.725102641281817133e-06,1.868861194721968596e-06,2.012619748162120059e-06,2.156378301602271522e-06,2.300136855042422985e-06,2.443895408482574448e-06,2.587653961922725911e-06,2.731412515362877374e-06,2.875171068803028837e-06,3.018929622243180300e-06,3.162688175683331763e-06,3.306446729123483226e-06,3.450205282563634689e-06,3.593963836003786153e-06,3.737722389443937616e-06,3.881480942884088655e-06,4.025239496324239271e-06,4.168998049764389887e-06,4.312756603204540503e-06,4.456515156644691119e-06,4.600273710084841735e-06,4.744032263524992351e-06,4.887790816965142967e-06,5.031549370405293583e-06,5.175307923845444199e-06,5.319066477285594815e-06,5.462825030725745431e-06,5.606583584165896047e-06,5.750342137606046663e-06,5.894100691046197279e-06,6.037859244486347895e-06,6.181617797926498511e-06,6.325376351366649127e-06,6.469134904806799743e-06,6.612893458246950359e-06,6.756652011687100975e-06,6.900410565127251591e-06,7.044169118567402207e-06,7.187927672007552823e-06,7.331686225447703439e-06,7.475444778887854055e-06,7.619203332328004671e-06,7.762961885768155287e-06,7.906720439208305903e-06,8.050478992648456519e-06,8.194237546088607135e-06,8.337996099528757751e-06,8.481754652968908367e-06,8.625513206409058983e-06,8.769271759849209599e-06,8.913030313289360215e-06,9.056788866729510831e-06 +0.000000000000000000e+00,1.417563809641523692e-07,2.835127619283047384e-07,4.252691428924571076e-07,5.670255238566094767e-07,7.087819048207618989e-07,8.505382857849143210e-07,9.922946667490667431e-07,1.134051047713219165e-06,1.275807428677371587e-06,1.417563809641524009e-06,1.559320190605676432e-06,1.701076571569828854e-06,1.842832952533981276e-06,1.984589333498133910e-06,2.126345714462286755e-06,2.268102095426439601e-06,2.409858476390592447e-06,2.551614857354745292e-06,2.693371238318898138e-06,2.835127619283050984e-06,2.976884000247203829e-06,3.118640381211356675e-06,3.260396762175509521e-06,3.402153143139662366e-06,3.543909524103815212e-06,3.685665905067968057e-06,3.827422286032120903e-06,3.969178666996273749e-06,4.110935047960426594e-06,4.252691428924579440e-06,4.394447809888732286e-06,4.536204190852885131e-06,4.677960571817037977e-06,4.819716952781190823e-06,4.961473333745343668e-06,5.103229714709496514e-06,5.244986095673649360e-06,5.386742476637802205e-06,5.528498857601955051e-06,5.670255238566107896e-06,5.812011619530260742e-06,5.953768000494413588e-06,6.095524381458566433e-06,6.237280762422719279e-06,6.379037143386872125e-06,6.520793524351024970e-06,6.662549905315177816e-06,6.804306286279330662e-06,6.946062667243483507e-06,7.087819048207636353e-06,7.229575429171789199e-06,7.371331810135942044e-06,7.513088191100094890e-06,7.654844572064246888e-06,7.796600953028399734e-06,7.938357333992552580e-06,8.080113714956705425e-06,8.221870095920858271e-06,8.363626476885011117e-06,8.505382857849163962e-06,8.647139238813316808e-06,8.788895619777469654e-06,8.930652000741622499e-06 +0.000000000000000000e+00,1.427681367008054032e-07,2.855362734016108063e-07,4.283044101024162359e-07,5.710725468032217185e-07,7.138406835040272010e-07,8.566088202048326836e-07,9.993769569056382721e-07,1.142145093606443860e-06,1.284913230307249449e-06,1.427681367008055037e-06,1.570449503708860626e-06,1.713217640409666214e-06,1.855985777110471803e-06,1.998753913811277391e-06,2.141522050512082980e-06,2.284290187212888568e-06,2.427058323913694156e-06,2.569826460614499745e-06,2.712594597315305333e-06,2.855362734016110922e-06,2.998130870716916510e-06,3.140899007417722099e-06,3.283667144118527687e-06,3.426435280819333276e-06,3.569203417520138864e-06,3.711971554220944452e-06,3.854739690921750041e-06,3.997507827622555629e-06,4.140275964323361218e-06,4.283044101024166806e-06,4.425812237724972395e-06,4.568580374425777983e-06,4.711348511126583572e-06,4.854116647827389160e-06,4.996884784528194748e-06,5.139652921229000337e-06,5.282421057929805925e-06,5.425189194630611514e-06,5.567957331331417102e-06,5.710725468032222691e-06,5.853493604733028279e-06,5.996261741433833867e-06,6.139029878134639456e-06,6.281798014835445044e-06,6.424566151536250633e-06,6.567334288237056221e-06,6.710102424937861810e-06,6.852870561638667398e-06,6.995638698339472987e-06,7.138406835040278575e-06,7.281174971741084163e-06,7.423943108441889752e-06,7.566711245142695340e-06,7.709479381843500082e-06,7.852247518544304823e-06,7.995015655245109565e-06,8.137783791945914306e-06,8.280551928646719047e-06,8.423320065347523789e-06,8.566088202048328530e-06,8.708856338749133272e-06,8.851624475449938013e-06,8.994392612150742754e-06 +0.000000000000000000e+00,1.437585534401572070e-07,2.875171068803144140e-07,4.312756603204716474e-07,5.750342137606289338e-07,7.187927672007862202e-07,8.625513206409435066e-07,1.006309874081100899e-06,1.150068427521258291e-06,1.293826980961415683e-06,1.437585534401573076e-06,1.581344087841730468e-06,1.725102641281887860e-06,1.868861194722045253e-06,2.012619748162202645e-06,2.156378301602360037e-06,2.300136855042517429e-06,2.443895408482674822e-06,2.587653961922832214e-06,2.731412515362989606e-06,2.875171068803146998e-06,3.018929622243304391e-06,3.162688175683461783e-06,3.306446729123619175e-06,3.450205282563776568e-06,3.593963836003933960e-06,3.737722389444091352e-06,3.881480942884248744e-06,4.025239496324406137e-06,4.168998049764563529e-06,4.312756603204720921e-06,4.456515156644878313e-06,4.600273710085035706e-06,4.744032263525193098e-06,4.887790816965350490e-06,5.031549370405507883e-06,5.175307923845665275e-06,5.319066477285822667e-06,5.462825030725980059e-06,5.606583584166137452e-06,5.750342137606294844e-06,5.894100691046452236e-06,6.037859244486609628e-06,6.181617797926767021e-06,6.325376351366924413e-06,6.469134904807081805e-06,6.612893458247239198e-06,6.756652011687396590e-06,6.900410565127553982e-06,7.044169118567711374e-06,7.187927672007868767e-06,7.331686225448026159e-06,7.475444778888183551e-06,7.619203332328340943e-06,7.762961885768499183e-06,7.906720439208658269e-06,8.050478992648817355e-06,8.194237546088976442e-06,8.337996099529135528e-06,8.481754652969294614e-06,8.625513206409453701e-06,8.769271759849612787e-06,8.913030313289771873e-06,9.056788866729930960e-06 +0.000000000000000000e+00,1.417563809641593572e-07,2.835127619283187144e-07,4.252691428924780716e-07,5.670255238566374288e-07,7.087819048207968390e-07,8.505382857849562491e-07,9.922946667491156593e-07,1.134051047713275069e-06,1.275807428677434480e-06,1.417563809641593890e-06,1.559320190605753300e-06,1.701076571569912710e-06,1.842832952534072120e-06,1.984589333498231319e-06,2.126345714462390517e-06,2.268102095426549715e-06,2.409858476390708914e-06,2.551614857354868112e-06,2.693371238319027310e-06,2.835127619283186509e-06,2.976884000247345707e-06,3.118640381211504906e-06,3.260396762175664104e-06,3.402153143139823302e-06,3.543909524103982501e-06,3.685665905068141699e-06,3.827422286032301321e-06,3.969178666996460943e-06,4.110935047960620565e-06,4.252691428924780187e-06,4.394447809888939809e-06,4.536204190853099431e-06,4.677960571817259053e-06,4.819716952781418674e-06,4.961473333745578296e-06,5.103229714709737918e-06,5.244986095673897540e-06,5.386742476638057162e-06,5.528498857602216784e-06,5.670255238566376406e-06,5.812011619530536028e-06,5.953768000494695650e-06,6.095524381458855272e-06,6.237280762423014894e-06,6.379037143387174515e-06,6.520793524351334137e-06,6.662549905315493759e-06,6.804306286279653381e-06,6.946062667243813003e-06,7.087819048207972625e-06,7.229575429172132247e-06,7.371331810136291869e-06,7.513088191100451491e-06,7.654844572064611113e-06,7.796600953028770734e-06,7.938357333992930356e-06,8.080113714957089978e-06,8.221870095921249600e-06,8.363626476885409222e-06,8.505382857849568844e-06,8.647139238813728466e-06,8.788895619777888088e-06,8.930652000742047710e-06 +0.000000000000000000e+00,1.427681367008126029e-07,2.855362734016252059e-07,4.283044101024378353e-07,5.710725468032505176e-07,7.138406835040631999e-07,8.566088202048758823e-07,9.993769569056886705e-07,1.142145093606501459e-06,1.284913230307314247e-06,1.427681367008127035e-06,1.570449503708939823e-06,1.713217640409752612e-06,1.855985777110565400e-06,1.998753913811378188e-06,2.141522050512190976e-06,2.284290187213003764e-06,2.427058323913816553e-06,2.569826460614629341e-06,2.712594597315442129e-06,2.855362734016254917e-06,2.998130870717067706e-06,3.140899007417880494e-06,3.283667144118693282e-06,3.426435280819506070e-06,3.569203417520318858e-06,3.711971554221131647e-06,3.854739690921944858e-06,3.997507827622758070e-06,4.140275964323571282e-06,4.283044101024384494e-06,4.425812237725197705e-06,4.568580374426010917e-06,4.711348511126824129e-06,4.854116647827637341e-06,4.996884784528450552e-06,5.139652921229263764e-06,5.282421057930076976e-06,5.425189194630890188e-06,5.567957331331703399e-06,5.710725468032516611e-06,5.853493604733329823e-06,5.996261741434143034e-06,6.139029878134956246e-06,6.281798014835769458e-06,6.424566151536582670e-06,6.567334288237395881e-06,6.710102424938209093e-06,6.852870561639022305e-06,6.995638698339835517e-06,7.138406835040648728e-06,7.281174971741461940e-06,7.423943108442275152e-06,7.566711245143088364e-06,7.709479381843901575e-06,7.852247518544714787e-06,7.995015655245527999e-06,8.137783791946341211e-06,8.280551928647154422e-06,8.423320065347967634e-06,8.566088202048780846e-06,8.708856338749594057e-06,8.851624475450407269e-06,8.994392612151220481e-06 +0.000000000000000000e+00,1.476958855028317464e-07,2.953917710056634927e-07,4.430876565084952126e-07,5.907835420113268796e-07,7.384794275141585465e-07,8.861753130169902135e-07,1.033871198519821880e-06,1.181567084022653547e-06,1.329262969525485214e-06,1.476958855028316881e-06,1.624654740531148548e-06,1.772350626033980215e-06,1.920046511536811882e-06,2.067742397039643761e-06,2.215438282542475640e-06,2.363134168045307518e-06,2.510830053548139397e-06,2.658525939050971276e-06,2.806221824553803154e-06,2.953917710056635033e-06,3.101613595559466912e-06,3.249309481062298790e-06,3.397005366565130669e-06,3.544701252067962548e-06,3.692397137570794427e-06,3.840093023073626305e-06,3.987788908576458608e-06,4.135484794079290910e-06,4.283180679582123212e-06,4.430876565084955514e-06,4.578572450587787816e-06,4.726268336090620119e-06,4.873964221593452421e-06,5.021660107096284723e-06,5.169355992599117025e-06,5.317051878101949328e-06,5.464747763604781630e-06,5.612443649107613932e-06,5.760139534610446234e-06,5.907835420113278536e-06,6.055531305616110839e-06,6.203227191118943141e-06,6.350923076621775443e-06,6.498618962124607745e-06,6.646314847627440048e-06,6.794010733130272350e-06,6.941706618633104652e-06,7.089402504135936954e-06,7.237098389638769256e-06,7.384794275141601559e-06,7.532490160644433861e-06,7.680186046147266163e-06,7.827881931650098465e-06,7.975577817152930768e-06,8.123273702655763070e-06,8.270969588158595372e-06,8.418665473661427674e-06,8.566361359164259976e-06,8.714057244667092279e-06,8.861753130169924581e-06,9.009449015672756883e-06,9.157144901175589185e-06,9.304840786678421488e-06 +0.000000000000000000e+00,1.457413227013430798e-07,2.914826454026861595e-07,4.372239681040292393e-07,5.829652908053723191e-07,7.287066135067153988e-07,8.744479362080584786e-07,1.020189258909401452e-06,1.165930581610744426e-06,1.311671904312087400e-06,1.457413227013430374e-06,1.603154549714773348e-06,1.748895872416116322e-06,1.894637195117459296e-06,2.040378517818802058e-06,2.186119840520144820e-06,2.331861163221487582e-06,2.477602485922830344e-06,2.623343808624173106e-06,2.769085131325515869e-06,2.914826454026858631e-06,3.060567776728201393e-06,3.206309099429544155e-06,3.352050422130886917e-06,3.497791744832229679e-06,3.643533067533572441e-06,3.789274390234915204e-06,3.935015712936257542e-06,4.080757035637599881e-06,4.226498358338942219e-06,4.372239681040284558e-06,4.517981003741626897e-06,4.663722326442969235e-06,4.809463649144311574e-06,4.955204971845653912e-06,5.100946294546996251e-06,5.246687617248338590e-06,5.392428939949680928e-06,5.538170262651023267e-06,5.683911585352365605e-06,5.829652908053707944e-06,5.975394230755050283e-06,6.121135553456392621e-06,6.266876876157734960e-06,6.412618198859077299e-06,6.558359521560419637e-06,6.704100844261761976e-06,6.849842166963104314e-06,6.995583489664446653e-06,7.141324812365788992e-06,7.287066135067131330e-06,7.432807457768473669e-06,7.578548780469816007e-06,7.724290103171158346e-06,7.870031425872501532e-06,8.015772748573844717e-06,8.161514071275187903e-06,8.307255393976531089e-06,8.452996716677874274e-06,8.598738039379217460e-06,8.744479362080560646e-06,8.890220684781903831e-06,9.035962007483247017e-06,9.181703330184590203e-06 +0.000000000000000000e+00,1.469848263375441843e-07,2.939696526750883687e-07,4.409544790126325795e-07,5.879393053501768432e-07,7.349241316877211070e-07,8.819089580252653707e-07,1.028893784362809529e-06,1.175878610700353686e-06,1.322863437037897844e-06,1.469848263375442002e-06,1.616833089712986160e-06,1.763817916050530318e-06,1.910802742388074476e-06,2.057787568725618634e-06,2.204772395063162791e-06,2.351757221400706949e-06,2.498742047738251107e-06,2.645726874075795265e-06,2.792711700413339423e-06,2.939696526750883581e-06,3.086681353088427739e-06,3.233666179425971897e-06,3.380651005763516054e-06,3.527635832101060212e-06,3.674620658438604370e-06,3.821605484776148951e-06,3.968590311113693533e-06,4.115575137451238114e-06,4.262559963788782696e-06,4.409544790126327277e-06,4.556529616463871858e-06,4.703514442801416440e-06,4.850499269138961021e-06,4.997484095476505603e-06,5.144468921814050184e-06,5.291453748151594765e-06,5.438438574489139347e-06,5.585423400826683928e-06,5.732408227164228509e-06,5.879393053501773091e-06,6.026377879839317672e-06,6.173362706176862254e-06,6.320347532514406835e-06,6.467332358851951416e-06,6.614317185189495998e-06,6.761302011527040579e-06,6.908286837864585160e-06,7.055271664202129742e-06,7.202256490539674323e-06,7.349241316877218905e-06,7.496226143214763486e-06,7.643210969552308067e-06,7.790195795889851802e-06,7.937180622227395536e-06,8.084165448564939270e-06,8.231150274902483005e-06,8.378135101240026739e-06,8.525119927577570473e-06,8.672104753915114208e-06,8.819089580252657942e-06,8.966074406590201676e-06,9.113059232927745411e-06,9.260044059265289145e-06 +0.000000000000000000e+00,1.476958855028364050e-07,2.953917710056728101e-07,4.430876565085091886e-07,5.907835420113455143e-07,7.384794275141818399e-07,8.861753130170181655e-07,1.033871198519854491e-06,1.181567084022690817e-06,1.329262969525527142e-06,1.476958855028363468e-06,1.624654740531199794e-06,1.772350626034036119e-06,1.920046511536872445e-06,2.067742397039708982e-06,2.215438282542545520e-06,2.363134168045382057e-06,2.510830053548218595e-06,2.658525939051055132e-06,2.806221824553891669e-06,2.953917710056728207e-06,3.101613595559564744e-06,3.249309481062401281e-06,3.397005366565237819e-06,3.544701252068074356e-06,3.692397137570910894e-06,3.840093023073747431e-06,3.987788908576583968e-06,4.135484794079420506e-06,4.283180679582257043e-06,4.430876565085093581e-06,4.578572450587930118e-06,4.726268336090766655e-06,4.873964221593603193e-06,5.021660107096439730e-06,5.169355992599276268e-06,5.317051878102112805e-06,5.464747763604949342e-06,5.612443649107785880e-06,5.760139534610622417e-06,5.907835420113458954e-06,6.055531305616295492e-06,6.203227191119132029e-06,6.350923076621968567e-06,6.498618962124805104e-06,6.646314847627641641e-06,6.794010733130478179e-06,6.941706618633314716e-06,7.089402504136151254e-06,7.237098389638987791e-06,7.384794275141824328e-06,7.532490160644660866e-06,7.680186046147496556e-06,7.827881931650332246e-06,7.975577817153167937e-06,8.123273702656003627e-06,8.270969588158839318e-06,8.418665473661675008e-06,8.566361359164510698e-06,8.714057244667346389e-06,8.861753130170182079e-06,9.009449015673017769e-06,9.157144901175853460e-06,9.304840786678689150e-06 +0.000000000000000000e+00,1.457413227013484267e-07,2.914826454026968533e-07,4.372239681040452800e-07,5.829652908053937067e-07,7.287066135067421863e-07,8.744479362080906659e-07,1.020189258909439145e-06,1.165930581610787625e-06,1.311671904312136105e-06,1.457413227013484584e-06,1.603154549714833064e-06,1.748895872416181543e-06,1.894637195117530023e-06,2.040378517818878291e-06,2.186119840520226559e-06,2.331861163221574827e-06,2.477602485922923094e-06,2.623343808624271362e-06,2.769085131325619630e-06,2.914826454026967898e-06,3.060567776728316166e-06,3.206309099429664434e-06,3.352050422131012702e-06,3.497791744832360969e-06,3.643533067533709237e-06,3.789274390235057505e-06,3.935015712936405773e-06,4.080757035637754041e-06,4.226498358339102309e-06,4.372239681040450576e-06,4.517981003741798844e-06,4.663722326443147112e-06,4.809463649144495380e-06,4.955204971845843648e-06,5.100946294547191916e-06,5.246687617248540183e-06,5.392428939949888451e-06,5.538170262651236719e-06,5.683911585352584987e-06,5.829652908053933255e-06,5.975394230755281523e-06,6.121135553456629791e-06,6.266876876157978058e-06,6.412618198859326326e-06,6.558359521560674594e-06,6.704100844262022862e-06,6.849842166963371130e-06,6.995583489664719398e-06,7.141324812366067665e-06,7.287066135067415933e-06,7.432807457768764201e-06,7.578548780470112469e-06,7.724290103171461584e-06,7.870031425872809852e-06,8.015772748574158120e-06,8.161514071275506387e-06,8.307255393976854655e-06,8.452996716678202923e-06,8.598738039379551191e-06,8.744479362080899459e-06,8.890220684782247727e-06,9.035962007483595994e-06,9.181703330184944262e-06 +0.000000000000000000e+00,1.469848263375500342e-07,2.939696526751000683e-07,4.409544790126501025e-07,5.879393053502001366e-07,7.349241316877502237e-07,8.819089580253003108e-07,1.028893784362850398e-06,1.175878610700400485e-06,1.322863437037950572e-06,1.469848263375500659e-06,1.616833089713050746e-06,1.763817916050600833e-06,1.910802742388150709e-06,2.057787568725700372e-06,2.204772395063250036e-06,2.351757221400799699e-06,2.498742047738349363e-06,2.645726874075899027e-06,2.792711700413448690e-06,2.939696526750998354e-06,3.086681353088548017e-06,3.233666179426097681e-06,3.380651005763647344e-06,3.527635832101197008e-06,3.674620658438746672e-06,3.821605484776296335e-06,3.968590311113845999e-06,4.115575137451395662e-06,4.262559963788945326e-06,4.409544790126494990e-06,4.556529616464044653e-06,4.703514442801594317e-06,4.850499269139143980e-06,4.997484095476693644e-06,5.144468921814243307e-06,5.291453748151792971e-06,5.438438574489342635e-06,5.585423400826892298e-06,5.732408227164441962e-06,5.879393053501991625e-06,6.026377879839541289e-06,6.173362706177090952e-06,6.320347532514640616e-06,6.467332358852190280e-06,6.614317185189739943e-06,6.761302011527289607e-06,6.908286837864839270e-06,7.055271664202388934e-06,7.202256490539938598e-06,7.349241316877488261e-06,7.496226143215037925e-06,7.643210969552587588e-06,7.790195795890136405e-06,7.937180622227685221e-06,8.084165448565234038e-06,8.231150274902782854e-06,8.378135101240331671e-06,8.525119927577880488e-06,8.672104753915429304e-06,8.819089580252978121e-06,8.966074406590526937e-06,9.113059232928075754e-06,9.260044059265624570e-06 +0.000000000000000000e+00,1.515379556899418850e-07,3.030759113798837700e-07,4.546138670698256549e-07,6.061518227597675399e-07,7.576897784497094249e-07,9.092277341396513099e-07,1.060765689829593195e-06,1.212303645519535080e-06,1.363841601209476965e-06,1.515379556899418850e-06,1.666917512589360735e-06,1.818455468279302620e-06,1.969993423969244716e-06,2.121531379659186813e-06,2.273069335349128910e-06,2.424607291039071007e-06,2.576145246729013103e-06,2.727683202418955200e-06,2.879221158108897297e-06,3.030759113798839394e-06,3.182297069488781490e-06,3.333835025178723587e-06,3.485372980868665684e-06,3.636910936558607781e-06,3.788448892248549877e-06,3.939986847938491974e-06,4.091524803628434071e-06,4.243062759318376167e-06,4.394600715008318264e-06,4.546138670698260361e-06,4.697676626388202458e-06,4.849214582078144554e-06,5.000752537768086651e-06,5.152290493458028748e-06,5.303828449147970845e-06,5.455366404837912941e-06,5.606904360527855038e-06,5.758442316217797135e-06,5.909980271907739232e-06,6.061518227597681328e-06,6.213056183287623425e-06,6.364594138977565522e-06,6.516132094667507618e-06,6.667670050357449715e-06,6.819208006047391812e-06,6.970745961737333909e-06,7.122283917427276005e-06,7.273821873117218102e-06,7.425359828807160199e-06,7.576897784497102296e-06,7.728435740187043545e-06,7.879973695876985642e-06,8.031511651566927739e-06,8.183049607256869836e-06,8.334587562946811932e-06,8.486125518636754029e-06,8.637663474326696126e-06,8.789201430016638222e-06,8.940739385706580319e-06,9.092277341396522416e-06,9.243815297086464513e-06,9.395353252776406609e-06,9.546891208466348706e-06 +0.000000000000000000e+00,1.496301038996754099e-07,2.992602077993508198e-07,4.488903116990262297e-07,5.985204155987016395e-07,7.481505194983771024e-07,8.977806233980525652e-07,1.047410727297728028e-06,1.197040831197403491e-06,1.346670935097078954e-06,1.496301038996754416e-06,1.645931142896429879e-06,1.795561246796105342e-06,1.945191350695780593e-06,2.094821454595455633e-06,2.244451558495130672e-06,2.394081662394805711e-06,2.543711766294480750e-06,2.693341870194155790e-06,2.842971974093830829e-06,2.992602077993505868e-06,3.142232181893180908e-06,3.291862285792855947e-06,3.441492389692530986e-06,3.591122493592206026e-06,3.740752597491881065e-06,3.890382701391556104e-06,4.040012805291231144e-06,4.189642909190906183e-06,4.339273013090581222e-06,4.488903116990256261e-06,4.638533220889931301e-06,4.788163324789606340e-06,4.937793428689281379e-06,5.087423532588956419e-06,5.237053636488631458e-06,5.386683740388306497e-06,5.536313844287981537e-06,5.685943948187656576e-06,5.835574052087331615e-06,5.985204155987006655e-06,6.134834259886681694e-06,6.284464363786356733e-06,6.434094467686031772e-06,6.583724571585706812e-06,6.733354675485381851e-06,6.882984779385056890e-06,7.032614883284731930e-06,7.182244987184406969e-06,7.331875091084082008e-06,7.481505194983757048e-06,7.631135298883432087e-06,7.780765402783107126e-06,7.930395506682782166e-06,8.080025610582457205e-06,8.229655714482132244e-06,8.379285818381807283e-06,8.528915922281482323e-06,8.678546026181157362e-06,8.828176130080832401e-06,8.977806233980507441e-06,9.127436337880182480e-06,9.277066441779857519e-06,9.426696545679532559e-06 +0.000000000000000000e+00,1.510952840422428452e-07,3.021905680844856905e-07,4.532858521267285092e-07,6.043811361689712750e-07,7.554764202112140409e-07,9.065717042534568067e-07,1.057666988295699573e-06,1.208762272337942338e-06,1.359857556380185104e-06,1.510952840422427870e-06,1.662048124464670636e-06,1.813143408506913402e-06,1.964238692549155956e-06,2.115333976591398721e-06,2.266429260633641487e-06,2.417524544675884253e-06,2.568619828718127019e-06,2.719715112760369785e-06,2.870810396802612551e-06,3.021905680844855316e-06,3.173000964887098082e-06,3.324096248929340848e-06,3.475191532971583614e-06,3.626286817013826380e-06,3.777382101056069146e-06,3.928477385098311911e-06,4.079572669140554677e-06,4.230667953182797443e-06,4.381763237225040209e-06,4.532858521267282975e-06,4.683953805309525740e-06,4.835049089351768506e-06,4.986144373394011272e-06,5.137239657436254038e-06,5.288334941478496804e-06,5.439430225520739570e-06,5.590525509562982335e-06,5.741620793605225101e-06,5.892716077647467867e-06,6.043811361689710633e-06,6.194906645731953399e-06,6.346001929774196164e-06,6.497097213816438930e-06,6.648192497858681696e-06,6.799287781900924462e-06,6.950383065943167228e-06,7.101478349985409994e-06,7.252573634027652759e-06,7.403668918069895525e-06,7.554764202112138291e-06,7.705859486154381904e-06,7.856954770196625517e-06,8.008050054238869130e-06,8.159145338281112742e-06,8.310240622323356355e-06,8.461335906365599968e-06,8.612431190407843581e-06,8.763526474450087194e-06,8.914621758492330807e-06,9.065717042534574420e-06,9.216812326576818032e-06,9.367907610619061645e-06,9.519002894661305258e-06 +0.000000000000000000e+00,1.515379556899461731e-07,3.030759113798923462e-07,4.546138670698385192e-07,6.061518227597846923e-07,7.576897784497308125e-07,9.092277341396769326e-07,1.060765689829623053e-06,1.212303645519569173e-06,1.363841601209515293e-06,1.515379556899461413e-06,1.666917512589407533e-06,1.818455468279353653e-06,1.969993423969299774e-06,2.121531379659246105e-06,2.273069335349192437e-06,2.424607291039138769e-06,2.576145246729085101e-06,2.727683202419031433e-06,2.879221158108977765e-06,3.030759113798924097e-06,3.182297069488870429e-06,3.333835025178816761e-06,3.485372980868763093e-06,3.636910936558709424e-06,3.788448892248655756e-06,3.939986847938602088e-06,4.091524803628548420e-06,4.243062759318494752e-06,4.394600715008441084e-06,4.546138670698387416e-06,4.697676626388333748e-06,4.849214582078280080e-06,5.000752537768226412e-06,5.152290493458172743e-06,5.303828449148119075e-06,5.455366404838065407e-06,5.606904360528011739e-06,5.758442316217958071e-06,5.909980271907904403e-06,6.061518227597850735e-06,6.213056183287797067e-06,6.364594138977743399e-06,6.516132094667689731e-06,6.667670050357636062e-06,6.819208006047582394e-06,6.970745961737528726e-06,7.122283917427475058e-06,7.273821873117421390e-06,7.425359828807367722e-06,7.576897784497314054e-06,7.728435740187260386e-06,7.879973695877205871e-06,8.031511651567151356e-06,8.183049607257096840e-06,8.334587562947042325e-06,8.486125518636987810e-06,8.637663474326933295e-06,8.789201430016878780e-06,8.940739385706824265e-06,9.092277341396769750e-06,9.243815297086715234e-06,9.395353252776660719e-06,9.546891208466606204e-06 +0.000000000000000000e+00,1.496301038996800421e-07,2.992602077993600842e-07,4.488903116990401528e-07,5.985204155987202743e-07,7.481505194984003958e-07,8.977806233980805173e-07,1.047410727297760639e-06,1.197040831197440760e-06,1.346670935097120882e-06,1.496301038996801003e-06,1.645931142896481125e-06,1.795561246796161246e-06,1.945191350695841580e-06,2.094821454595521701e-06,2.244451558495201823e-06,2.394081662394881944e-06,2.543711766294562066e-06,2.693341870194242187e-06,2.842971974093922309e-06,2.992602077993602430e-06,3.142232181893282552e-06,3.291862285792962673e-06,3.441492389692642795e-06,3.591122493592322916e-06,3.740752597492003038e-06,3.890382701391683159e-06,4.040012805291363281e-06,4.189642909191043402e-06,4.339273013090723524e-06,4.488903116990403645e-06,4.638533220890083767e-06,4.788163324789763888e-06,4.937793428689444010e-06,5.087423532589124131e-06,5.237053636488804253e-06,5.386683740388484374e-06,5.536313844288164496e-06,5.685943948187844617e-06,5.835574052087524739e-06,5.985204155987204860e-06,6.134834259886884982e-06,6.284464363786565103e-06,6.434094467686245225e-06,6.583724571585925346e-06,6.733354675485605468e-06,6.882984779385285589e-06,7.032614883284965711e-06,7.182244987184645832e-06,7.331875091084325954e-06,7.481505194984006075e-06,7.631135298883686197e-06,7.780765402783366318e-06,7.930395506683046440e-06,8.080025610582726561e-06,8.229655714482406683e-06,8.379285818382086804e-06,8.528915922281766926e-06,8.678546026181447047e-06,8.828176130081127169e-06,8.977806233980807290e-06,9.127436337880487412e-06,9.277066441780167533e-06,9.426696545679847655e-06 +0.000000000000000000e+00,1.510952840422472392e-07,3.021905680844944784e-07,4.532858521267417441e-07,6.043811361689890627e-07,7.554764202112363814e-07,9.065717042534837000e-07,1.057666988295731124e-06,1.208762272337978549e-06,1.359857556380225973e-06,1.510952840422473398e-06,1.662048124464720822e-06,1.813143408506968247e-06,1.964238692549215671e-06,2.115333976591463096e-06,2.266429260633710521e-06,2.417524544675957945e-06,2.568619828718205370e-06,2.719715112760452794e-06,2.870810396802700219e-06,3.021905680844947643e-06,3.173000964887195068e-06,3.324096248929442492e-06,3.475191532971689917e-06,3.626286817013937341e-06,3.777382101056184766e-06,3.928477385098432190e-06,4.079572669140679191e-06,4.230667953182926192e-06,4.381763237225173193e-06,4.532858521267420194e-06,4.683953805309667195e-06,4.835049089351914196e-06,4.986144373394161197e-06,5.137239657436408198e-06,5.288334941478655199e-06,5.439430225520902200e-06,5.590525509563149201e-06,5.741620793605396202e-06,5.892716077647643203e-06,6.043811361689890204e-06,6.194906645732137205e-06,6.346001929774384206e-06,6.497097213816631207e-06,6.648192497858878208e-06,6.799287781901125209e-06,6.950383065943372210e-06,7.101478349985619211e-06,7.252573634027866212e-06,7.403668918070113213e-06,7.554764202112360214e-06,7.705859486154607215e-06,7.856954770196854216e-06,8.008050054239101217e-06,8.159145338281348218e-06,8.310240622323595219e-06,8.461335906365842220e-06,8.612431190408089221e-06,8.763526474450336222e-06,8.914621758492583223e-06,9.065717042534830224e-06,9.216812326577077225e-06,9.367907610619324226e-06,9.519002894661571227e-06 +0.000000000000000000e+00,1.552469881678077849e-07,3.104939763356155698e-07,4.657409645034233282e-07,6.209879526712310337e-07,7.762349408390387392e-07,9.314819290068464447e-07,1.086728917174654256e-06,1.241975905342462067e-06,1.397222893510269879e-06,1.552469881678077690e-06,1.707716869845885501e-06,1.862963858013693313e-06,2.018210846181501124e-06,2.173457834349308936e-06,2.328704822517116747e-06,2.483951810684924558e-06,2.639198798852732370e-06,2.794445787020540181e-06,2.949692775188347992e-06,3.104939763356155804e-06,3.260186751523963615e-06,3.415433739691771426e-06,3.570680727859579238e-06,3.725927716027387049e-06,3.881174704195194437e-06,4.036421692363001401e-06,4.191668680530808366e-06,4.346915668698615330e-06,4.502162656866422294e-06,4.657409645034229259e-06,4.812656633202036223e-06,4.967903621369843187e-06,5.123150609537650152e-06,5.278397597705457116e-06,5.433644585873264080e-06,5.588891574041071045e-06,5.744138562208878009e-06,5.899385550376684973e-06,6.054632538544491938e-06,6.209879526712298902e-06,6.365126514880105866e-06,6.520373503047912831e-06,6.675620491215719795e-06,6.830867479383526759e-06,6.986114467551333724e-06,7.141361455719140688e-06,7.296608443886947652e-06,7.451855432054754617e-06,7.607102420222561581e-06,7.762349408390368545e-06,7.917596396558175510e-06,8.072843384725982474e-06,8.228090372893789438e-06,8.383337361061596403e-06,8.538584349229403367e-06,8.693831337397210331e-06,8.849078325565017296e-06,9.004325313732824260e-06,9.159572301900631224e-06,9.314819290068438189e-06,9.470066278236245153e-06,9.625313266404052117e-06,9.780560254571859082e-06 +0.000000000000000000e+00,1.533983668714748100e-07,3.067967337429496199e-07,4.601951006144244299e-07,6.135934674858992398e-07,7.669918343573740498e-07,9.203902012288488598e-07,1.073788568100323670e-06,1.227186934971798480e-06,1.380585301843273290e-06,1.533983668714748100e-06,1.687382035586222910e-06,1.840780402457697720e-06,1.994178769329172529e-06,2.147577136200647339e-06,2.300975503072122149e-06,2.454373869943596959e-06,2.607772236815071769e-06,2.761170603686546579e-06,2.914568970558021389e-06,3.067967337429496199e-06,3.221365704300971009e-06,3.374764071172445819e-06,3.528162438043920629e-06,3.681560804915395439e-06,3.834959171786869825e-06,3.988357538658344212e-06,4.141755905529818598e-06,4.295154272401292985e-06,4.448552639272767371e-06,4.601951006144241758e-06,4.755349373015716144e-06,4.908747739887190531e-06,5.062146106758664917e-06,5.215544473630139303e-06,5.368942840501613690e-06,5.522341207373088076e-06,5.675739574244562463e-06,5.829137941116036849e-06,5.982536307987511236e-06,6.135934674858985622e-06,6.289333041730460009e-06,6.442731408601934395e-06,6.596129775473408781e-06,6.749528142344883168e-06,6.902926509216357554e-06,7.056324876087831941e-06,7.209723242959306327e-06,7.363121609830780714e-06,7.516519976702255100e-06,7.669918343573729487e-06,7.823316710445203873e-06,7.976715077316678259e-06,8.130113444188152646e-06,8.283511811059627032e-06,8.436910177931101419e-06,8.590308544802575805e-06,8.743706911674050192e-06,8.897105278545524578e-06,9.050503645416998965e-06,9.203902012288473351e-06,9.357300379159947737e-06,9.510698746031422124e-06,9.664097112902896510e-06 +0.000000000000000000e+00,1.550708495968526152e-07,3.101416991937052305e-07,4.652125487905578722e-07,6.202833983874105668e-07,7.753542479842632614e-07,9.304250975811159561e-07,1.085495947177968651e-06,1.240566796774821345e-06,1.395637646371674040e-06,1.550708495968526735e-06,1.705779345565379429e-06,1.860850195162232124e-06,2.015921044759084819e-06,2.170991894355937301e-06,2.326062743952789784e-06,2.481133593549642267e-06,2.636204443146494750e-06,2.791275292743347233e-06,2.946346142340199716e-06,3.101416991937052199e-06,3.256487841533904682e-06,3.411558691130757165e-06,3.566629540727609647e-06,3.721700390324462130e-06,3.876771239921314613e-06,4.031842089518167096e-06,4.186912939115019579e-06,4.341983788711872062e-06,4.497054638308724545e-06,4.652125487905577028e-06,4.807196337502429510e-06,4.962267187099281993e-06,5.117338036696134476e-06,5.272408886292986959e-06,5.427479735889839442e-06,5.582550585486691925e-06,5.737621435083544408e-06,5.892692284680396891e-06,6.047763134277249374e-06,6.202833983874101856e-06,6.357904833470954339e-06,6.512975683067806822e-06,6.668046532664659305e-06,6.823117382261511788e-06,6.978188231858364271e-06,7.133259081455216754e-06,7.288329931052069237e-06,7.443400780648921719e-06,7.598471630245774202e-06,7.753542479842627532e-06,7.908613329439481709e-06,8.063684179036335886e-06,8.218755028633190063e-06,8.373825878230044240e-06,8.528896727826898417e-06,8.683967577423752594e-06,8.839038427020606771e-06,8.994109276617460948e-06,9.149180126214315125e-06,9.304250975811169302e-06,9.459321825408023479e-06,9.614392675004877656e-06,9.769463524601731833e-06 +0.000000000000000000e+00,1.552469881678102466e-07,3.104939763356204932e-07,4.657409645034307397e-07,6.209879526712409863e-07,7.762349408390512329e-07,9.314819290068614795e-07,1.086728917174671620e-06,1.241975905342481761e-06,1.397222893510291902e-06,1.552469881678102042e-06,1.707716869845912183e-06,1.862963858013722324e-06,2.018210846181532464e-06,2.173457834349342393e-06,2.328704822517152322e-06,2.483951810684962251e-06,2.639198798852772180e-06,2.794445787020582109e-06,2.949692775188392038e-06,3.104939763356201967e-06,3.260186751524011896e-06,3.415433739691821825e-06,3.570680727859631754e-06,3.725927716027441683e-06,3.881174704195252035e-06,4.036421692363062388e-06,4.191668680530872740e-06,4.346915668698683093e-06,4.502162656866493445e-06,4.657409645034303798e-06,4.812656633202114150e-06,4.967903621369924503e-06,5.123150609537734855e-06,5.278397597705545207e-06,5.433644585873355560e-06,5.588891574041165912e-06,5.744138562208976265e-06,5.899385550376786617e-06,6.054632538544596970e-06,6.209879526712407322e-06,6.365126514880217675e-06,6.520373503048028027e-06,6.675620491215838380e-06,6.830867479383648732e-06,6.986114467551459085e-06,7.141361455719269437e-06,7.296608443887079789e-06,7.451855432054890142e-06,7.607102420222700494e-06,7.762349408390510847e-06,7.917596396558321199e-06,8.072843384726131552e-06,8.228090372893941904e-06,8.383337361061752257e-06,8.538584349229562609e-06,8.693831337397372962e-06,8.849078325565183314e-06,9.004325313732993667e-06,9.159572301900804019e-06,9.314819290068614371e-06,9.470066278236424724e-06,9.625313266404235076e-06,9.780560254572045429e-06 +0.000000000000000000e+00,1.533983668714781452e-07,3.067967337429562903e-07,4.601951006144344355e-07,6.135934674859125806e-07,7.669918343573907787e-07,9.203902012288689768e-07,1.073788568100347175e-06,1.227186934971825373e-06,1.380585301843303571e-06,1.533983668714781769e-06,1.687382035586259967e-06,1.840780402457738165e-06,1.994178769329216152e-06,2.147577136200693926e-06,2.300975503072171701e-06,2.454373869943649475e-06,2.607772236815127250e-06,2.761170603686605025e-06,2.914568970558082799e-06,3.067967337429560574e-06,3.221365704301038348e-06,3.374764071172516123e-06,3.528162438043993897e-06,3.681560804915471672e-06,3.834959171786949447e-06,3.988357538658427221e-06,4.141755905529904996e-06,4.295154272401382770e-06,4.448552639272860545e-06,4.601951006144338319e-06,4.755349373015816094e-06,4.908747739887293869e-06,5.062146106758771643e-06,5.215544473630249418e-06,5.368942840501727192e-06,5.522341207373204967e-06,5.675739574244682741e-06,5.829137941116160516e-06,5.982536307987638291e-06,6.135934674859116065e-06,6.289333041730593840e-06,6.442731408602071614e-06,6.596129775473549389e-06,6.749528142345027164e-06,6.902926509216504938e-06,7.056324876087982713e-06,7.209723242959460487e-06,7.363121609830938262e-06,7.516519976702416036e-06,7.669918343573893811e-06,7.823316710445371586e-06,7.976715077316849360e-06,8.130113444188327135e-06,8.283511811059804909e-06,8.436910177931282684e-06,8.590308544802760458e-06,8.743706911674238233e-06,8.897105278545716008e-06,9.050503645417193782e-06,9.203902012288671557e-06,9.357300379160149331e-06,9.510698746031627106e-06,9.664097112903104880e-06 +0.000000000000000000e+00,1.550708495968549975e-07,3.101416991937099950e-07,4.652125487905649661e-07,6.202833983874198842e-07,7.753542479842748023e-07,9.304250975811297204e-07,1.085495947177984744e-06,1.240566796774839768e-06,1.395637646371694792e-06,1.550708495968549816e-06,1.705779345565404840e-06,1.860850195162259864e-06,2.015921044759114888e-06,2.170991894355969912e-06,2.326062743952824936e-06,2.481133593549679960e-06,2.636204443146534984e-06,2.791275292743390008e-06,2.946346142340245032e-06,3.101416991937100056e-06,3.256487841533955080e-06,3.411558691130810104e-06,3.566629540727665128e-06,3.721700390324520152e-06,3.876771239921374753e-06,4.031842089518228929e-06,4.186912939115083106e-06,4.341983788711937283e-06,4.497054638308791460e-06,4.652125487905645637e-06,4.807196337502499814e-06,4.962267187099353991e-06,5.117338036696208168e-06,5.272408886293062345e-06,5.427479735889916522e-06,5.582550585486770699e-06,5.737621435083624876e-06,5.892692284680479053e-06,6.047763134277333230e-06,6.202833983874187407e-06,6.357904833471041584e-06,6.512975683067895761e-06,6.668046532664749938e-06,6.823117382261604115e-06,6.978188231858458291e-06,7.133259081455312468e-06,7.288329931052166645e-06,7.443400780649020822e-06,7.598471630245874999e-06,7.753542479842729176e-06,7.908613329439583353e-06,8.063684179036437530e-06,8.218755028633291707e-06,8.373825878230145884e-06,8.528896727827000061e-06,8.683967577423854238e-06,8.839038427020708415e-06,8.994109276617562592e-06,9.149180126214416769e-06,9.304250975811270946e-06,9.459321825408125123e-06,9.614392675004979300e-06,9.769463524601833477e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.570059000330570798e-07,3.140118000661141595e-07,4.710177000991712129e-07,6.280236001322282132e-07,7.850295001652852136e-07,9.420354001983422139e-07,1.099041300231399108e-06,1.256047200264456003e-06,1.413053100297512897e-06,1.570059000330569792e-06,1.727064900363626686e-06,1.884070800396683581e-06,2.041076700429740475e-06,2.198082600462797370e-06,2.355088500495854264e-06,2.512094400528911159e-06,2.669100300561968053e-06,2.826106200595024948e-06,2.983112100628081842e-06,3.140118000661138737e-06,3.297123900694195631e-06,3.454129800727252526e-06,3.611135700760309420e-06,3.768141600793366315e-06,3.925147500826423633e-06,4.082153400859480951e-06,4.239159300892538269e-06,4.396165200925595587e-06,4.553171100958652905e-06,4.710177000991710223e-06,4.867182901024767541e-06,5.024188801057824859e-06,5.181194701090882177e-06,5.338200601123939495e-06,5.495206501156996813e-06,5.652212401190054131e-06,5.809218301223111449e-06,5.966224201256168767e-06,6.123230101289226085e-06,6.280236001322283403e-06,6.437241901355340721e-06,6.594247801388398039e-06,6.751253701421455357e-06,6.908259601454512675e-06,7.065265501487569993e-06,7.222271401520627311e-06,7.379277301553684629e-06,7.536283201586741947e-06,7.693289101619799265e-06,7.850295001652857430e-06,8.007300901685915595e-06,8.164306801718973760e-06,8.321312701752031925e-06,8.478318601785090090e-06,8.635324501818148255e-06,8.792330401851206420e-06,8.949336301884264585e-06,9.106342201917322750e-06,9.263348101950380915e-06,9.420354001983439080e-06,9.577359902016497245e-06,9.734365802049555410e-06,9.891371702082613575e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.570059000330583768e-07,3.140118000661167536e-07,4.710177000991751304e-07,6.280236001322335072e-07,7.850295001652918840e-07,9.420354001983502608e-07,1.099041300231408638e-06,1.256047200264467014e-06,1.413053100297525391e-06,1.570059000330583768e-06,1.727064900363642145e-06,1.884070800396700522e-06,2.041076700429758687e-06,2.198082600462816852e-06,2.355088500495875017e-06,2.512094400528933182e-06,2.669100300561991347e-06,2.826106200595049512e-06,2.983112100628107677e-06,3.140118000661165842e-06,3.297123900694224007e-06,3.454129800727282172e-06,3.611135700760340337e-06,3.768141600793398502e-06,3.925147500826456667e-06,4.082153400859514832e-06,4.239159300892572997e-06,4.396165200925631162e-06,4.553171100958689327e-06,4.710177000991747492e-06,4.867182901024805657e-06,5.024188801057863822e-06,5.181194701090921987e-06,5.338200601123980152e-06,5.495206501157038317e-06,5.652212401190096482e-06,5.809218301223154647e-06,5.966224201256212812e-06,6.123230101289270977e-06,6.280236001322329142e-06,6.437241901355387308e-06,6.594247801388445473e-06,6.751253701421503638e-06,6.908259601454561803e-06,7.065265501487619968e-06,7.222271401520678133e-06,7.379277301553736298e-06,7.536283201586794463e-06,7.693289101619853475e-06,7.850295001652911640e-06,8.007300901685969805e-06,8.164306801719027970e-06,8.321312701752086135e-06,8.478318601785144300e-06,8.635324501818202465e-06,8.792330401851260630e-06,8.949336301884318795e-06,9.106342201917376960e-06,9.263348101950435125e-06,9.420354001983493290e-06,9.577359902016551455e-06,9.734365802049609620e-06,9.891371702082667785e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.453404065259181183e-07,2.906808130518362366e-07,4.360212195777543284e-07,5.813616261036723673e-07,7.267020326295904062e-07,8.720424391555084451e-07,1.017382845681426484e-06,1.162723252207344523e-06,1.308063658733262562e-06,1.453404065259180601e-06,1.598744471785098639e-06,1.744084878311016678e-06,1.889425284836934717e-06,2.034765691362852544e-06,2.180106097888770583e-06,2.325446504414688622e-06,2.470786910940606661e-06,2.616127317466524700e-06,2.761467723992442739e-06,2.906808130518360778e-06,3.052148537044278817e-06,3.197488943570196855e-06,3.342829350096114894e-06,3.488169756622032933e-06,3.633510163147950972e-06,3.778850569673869011e-06,3.924190976199787050e-06,4.069531382725705089e-06,4.214871789251623128e-06,4.360212195777541167e-06,4.505552602303459205e-06,4.650893008829377244e-06,4.796233415355295283e-06,4.941573821881213322e-06,5.086914228407131361e-06,5.232254634933049400e-06,5.377595041458967439e-06,5.522935447984885478e-06,5.668275854510803517e-06,5.813616261036721555e-06,5.958956667562639594e-06,6.104297074088557633e-06,6.249637480614475672e-06,6.394977887140393711e-06,6.540318293666311750e-06,6.685658700192229789e-06,6.830999106718147828e-06,6.976339513244065866e-06,7.121679919769983905e-06,7.267020326295901944e-06,7.412360732821819983e-06,7.557701139347738022e-06,7.703041545873655214e-06,7.848381952399572406e-06,7.993722358925489598e-06,8.139062765451406789e-06,8.284403171977323981e-06,8.429743578503241173e-06,8.575083985029158365e-06,8.720424391555075557e-06,8.865764798080992749e-06,9.011105204606909941e-06,9.156445611132827132e-06 +0.000000000000000000e+00,1.435974631467209269e-07,2.871949262934418538e-07,4.307923894401627807e-07,5.743898525868837077e-07,7.179873157336046346e-07,8.615847788803255615e-07,1.005182242027046488e-06,1.148779705173767415e-06,1.292377168320488342e-06,1.435974631467209269e-06,1.579572094613930196e-06,1.723169557760651123e-06,1.866767020907372050e-06,2.010364484054092977e-06,2.153961947200813904e-06,2.297559410347534831e-06,2.441156873494255758e-06,2.584754336640976684e-06,2.728351799787697611e-06,2.871949262934418538e-06,3.015546726081139465e-06,3.159144189227860392e-06,3.302741652374581319e-06,3.446339115521302246e-06,3.589936578668023173e-06,3.733534041814744100e-06,3.877131504961465027e-06,4.020728968108185954e-06,4.164326431254906881e-06,4.307923894401627807e-06,4.451521357548348734e-06,4.595118820695069661e-06,4.738716283841790588e-06,4.882313746988511515e-06,5.025911210135232442e-06,5.169508673281953369e-06,5.313106136428674296e-06,5.456703599575395223e-06,5.600301062722116150e-06,5.743898525868837077e-06,5.887495989015558004e-06,6.031093452162278930e-06,6.174690915308999857e-06,6.318288378455720784e-06,6.461885841602441711e-06,6.605483304749162638e-06,6.749080767895883565e-06,6.892678231042604492e-06,7.036275694189325419e-06,7.179873157336046346e-06,7.323470620482767273e-06,7.467068083629488200e-06,7.610665546776209127e-06,7.754263009922930053e-06,7.897860473069650980e-06,8.041457936216371907e-06,8.185055399363092834e-06,8.328652862509813761e-06,8.472250325656534688e-06,8.615847788803255615e-06,8.759445251949976542e-06,8.903042715096697469e-06,9.046640178243418396e-06 +0.000000000000000000e+00,1.446253302877899976e-07,2.892506605755799953e-07,4.338759908633700194e-07,5.785013211511600965e-07,7.231266514389501735e-07,8.677519817267402506e-07,1.012377312014530328e-06,1.157002642302320405e-06,1.301627972590110482e-06,1.446253302877900559e-06,1.590878633165690636e-06,1.735503963453480713e-06,1.880129293741270790e-06,2.024754624029061079e-06,2.169379954316851156e-06,2.314005284604641233e-06,2.458630614892431310e-06,2.603255945180221387e-06,2.747881275468011464e-06,2.892506605755801541e-06,3.037131936043591618e-06,3.181757266331381695e-06,3.326382596619171772e-06,3.471007926906961849e-06,3.615633257194751926e-06,3.760258587482542003e-06,3.904883917770332080e-06,4.049509248058122158e-06,4.194134578345912235e-06,4.338759908633702312e-06,4.483385238921492389e-06,4.628010569209282466e-06,4.772635899497072543e-06,4.917261229784862620e-06,5.061886560072652697e-06,5.206511890360442774e-06,5.351137220648232851e-06,5.495762550936022928e-06,5.640387881223813005e-06,5.785013211511603082e-06,5.929638541799393159e-06,6.074263872087183236e-06,6.218889202374973313e-06,6.363514532662763390e-06,6.508139862950553467e-06,6.652765193238343545e-06,6.797390523526133622e-06,6.942015853813923699e-06,7.086641184101713776e-06,7.231266514389503853e-06,7.375891844677293930e-06,7.520517174965084007e-06,7.665142505252873237e-06,7.809767835540662467e-06,7.954393165828451697e-06,8.099018496116240927e-06,8.243643826404030157e-06,8.388269156691819387e-06,8.532894486979608617e-06,8.677519817267397847e-06,8.822145147555187077e-06,8.966770477842976307e-06,9.111395808130765537e-06 +0.000000000000000000e+00,1.453404065259244710e-07,2.906808130518489421e-07,4.360212195777733867e-07,5.813616261036977783e-07,7.267020326296221699e-07,8.720424391555465615e-07,1.017382845681470953e-06,1.162723252207395345e-06,1.308063658733319736e-06,1.453404065259244128e-06,1.598744471785168520e-06,1.744084878311092911e-06,1.889425284837017303e-06,2.034765691362941483e-06,2.180106097888865451e-06,2.325446504414789419e-06,2.470786910940713387e-06,2.616127317466637355e-06,2.761467723992561323e-06,2.906808130518485292e-06,3.052148537044409260e-06,3.197488943570333228e-06,3.342829350096257196e-06,3.488169756622181164e-06,3.633510163148105132e-06,3.778850569674029100e-06,3.924190976199953068e-06,4.069531382725877036e-06,4.214871789251801005e-06,4.360212195777724973e-06,4.505552602303648941e-06,4.650893008829572909e-06,4.796233415355496877e-06,4.941573821881420845e-06,5.086914228407344813e-06,5.232254634933268781e-06,5.377595041459192749e-06,5.522935447985116718e-06,5.668275854511040686e-06,5.813616261036964654e-06,5.958956667562888622e-06,6.104297074088812590e-06,6.249637480614736558e-06,6.394977887140660526e-06,6.540318293666584494e-06,6.685658700192508463e-06,6.830999106718432431e-06,6.976339513244356399e-06,7.121679919770280367e-06,7.267020326296204335e-06,7.412360732822128303e-06,7.557701139348052271e-06,7.703041545873977086e-06,7.848381952399901054e-06,7.993722358925825023e-06,8.139062765451748991e-06,8.284403171977672959e-06,8.429743578503596927e-06,8.575083985029520895e-06,8.720424391555444863e-06,8.865764798081368831e-06,9.011105204607292799e-06,9.156445611133216768e-06 +0.000000000000000000e+00,1.435974631467254532e-07,2.871949262934509065e-07,4.307923894401763333e-07,5.743898525869017071e-07,7.179873157336270810e-07,8.615847788803524548e-07,1.005182242027077829e-06,1.148779705173803202e-06,1.292377168320528576e-06,1.435974631467253950e-06,1.579572094613979324e-06,1.723169557760704698e-06,1.866767020907430072e-06,2.010364484054155657e-06,2.153961947200881243e-06,2.297559410347606828e-06,2.441156873494332414e-06,2.584754336641058000e-06,2.728351799787783585e-06,2.871949262934509171e-06,3.015546726081234756e-06,3.159144189227960342e-06,3.302741652374685928e-06,3.446339115521411513e-06,3.589936578668137099e-06,3.733534041814862684e-06,3.877131504961588694e-06,4.020728968108314703e-06,4.164326431255040712e-06,4.307923894401766721e-06,4.451521357548492730e-06,4.595118820695218739e-06,4.738716283841944748e-06,4.882313746988670757e-06,5.025911210135396766e-06,5.169508673282122776e-06,5.313106136428848785e-06,5.456703599575574794e-06,5.600301062722300803e-06,5.743898525869026812e-06,5.887495989015752821e-06,6.031093452162478830e-06,6.174690915309204839e-06,6.318288378455930848e-06,6.461885841602656858e-06,6.605483304749382867e-06,6.749080767896108876e-06,6.892678231042834885e-06,7.036275694189560894e-06,7.179873157336286903e-06,7.323470620483012912e-06,7.467068083629738921e-06,7.610665546776464930e-06,7.754263009923190940e-06,7.897860473069916949e-06,8.041457936216642958e-06,8.185055399363368967e-06,8.328652862510094976e-06,8.472250325656820985e-06,8.615847788803546994e-06,8.759445251950273003e-06,8.903042715096999013e-06,9.046640178243725022e-06 +0.000000000000000000e+00,1.446253302877957416e-07,2.892506605755914832e-07,4.338759908633872248e-07,5.785013211511829664e-07,7.231266514389787609e-07,8.677519817267745554e-07,1.012377312014570350e-06,1.157002642302366144e-06,1.301627972590161939e-06,1.446253302877957734e-06,1.590878633165753528e-06,1.735503963453549323e-06,1.880129293741345117e-06,2.024754624029140700e-06,2.169379954316936283e-06,2.314005284604731865e-06,2.458630614892527448e-06,2.603255945180323031e-06,2.747881275468118614e-06,2.892506605755914196e-06,3.037131936043709779e-06,3.181757266331505362e-06,3.326382596619300945e-06,3.471007926907096528e-06,3.615633257194892110e-06,3.760258587482687693e-06,3.904883917770483699e-06,4.049509248058279706e-06,4.194134578346075712e-06,4.338759908633871718e-06,4.483385238921667725e-06,4.628010569209463731e-06,4.772635899497259737e-06,4.917261229785055743e-06,5.061886560072851750e-06,5.206511890360647756e-06,5.351137220648443762e-06,5.495762550936239769e-06,5.640387881224035775e-06,5.785013211511831781e-06,5.929638541799627787e-06,6.074263872087423794e-06,6.218889202375219800e-06,6.363514532663015806e-06,6.508139862950811813e-06,6.652765193238607819e-06,6.797390523526403825e-06,6.942015853814199831e-06,7.086641184101995838e-06,7.231266514389791844e-06,7.375891844677587850e-06,7.520517174965383857e-06,7.665142505253179863e-06,7.809767835540975869e-06,7.954393165828771875e-06,8.099018496116567882e-06,8.243643826404363888e-06,8.388269156692159894e-06,8.532894486979955901e-06,8.677519817267751907e-06,8.822145147555547913e-06,8.966770477843343919e-06,9.111395808131139926e-06 +0.000000000000000000e+00,1.487911351249751441e-07,2.975822702499502882e-07,4.463734053749254322e-07,5.951645404999005763e-07,7.439556756248757204e-07,8.927468107498508645e-07,1.041537945874826009e-06,1.190329080999801153e-06,1.339120216124776297e-06,1.487911351249751441e-06,1.636702486374726585e-06,1.785493621499701729e-06,1.934284756624677085e-06,2.083075891749652441e-06,2.231867026874627797e-06,2.380658161999603152e-06,2.529449297124578508e-06,2.678240432249553864e-06,2.827031567374529220e-06,2.975822702499504576e-06,3.124613837624479932e-06,3.273404972749455287e-06,3.422196107874430643e-06,3.570987242999405999e-06,3.719778378124381355e-06,3.868569513249356711e-06,4.017360648374332067e-06,4.166151783499307422e-06,4.314942918624282778e-06,4.463734053749258134e-06,4.612525188874233490e-06,4.761316323999208846e-06,4.910107459124184202e-06,5.058898594249159557e-06,5.207689729374134913e-06,5.356480864499110269e-06,5.505271999624085625e-06,5.654063134749060981e-06,5.802854269874036337e-06,5.951645404999011693e-06,6.100436540123987048e-06,6.249227675248962404e-06,6.398018810373937760e-06,6.546809945498913116e-06,6.695601080623888472e-06,6.844392215748863828e-06,6.993183350873839183e-06,7.141974485998814539e-06,7.290765621123789895e-06,7.439556756248765251e-06,7.588347891373740607e-06,7.737139026498715116e-06,7.885930161623688777e-06,8.034721296748662439e-06,8.183512431873636101e-06,8.332303566998609763e-06,8.481094702123583424e-06,8.629885837248557086e-06,8.778676972373530748e-06,8.927468107498504410e-06,9.076259242623478072e-06,9.225050377748451733e-06,9.373841512873425395e-06 +0.000000000000000000e+00,1.470711265428385221e-07,2.941422530856770441e-07,4.412133796285155397e-07,5.882845061713539824e-07,7.353556327141924250e-07,8.824267592570308677e-07,1.029497885799869204e-06,1.176569012342707541e-06,1.323640138885545878e-06,1.470711265428384215e-06,1.617782391971222552e-06,1.764853518514060888e-06,1.911924645056899225e-06,2.058995771599737562e-06,2.206066898142575899e-06,2.353138024685414235e-06,2.500209151228252572e-06,2.647280277771090909e-06,2.794351404313929246e-06,2.941422530856767583e-06,3.088493657399605919e-06,3.235564783942444256e-06,3.382635910485282593e-06,3.529707037028120930e-06,3.676778163570959266e-06,3.823849290113797603e-06,3.970920416656635940e-06,4.117991543199474277e-06,4.265062669742312613e-06,4.412133796285150950e-06,4.559204922827989287e-06,4.706276049370827624e-06,4.853347175913665961e-06,5.000418302456504297e-06,5.147489428999342634e-06,5.294560555542180971e-06,5.441631682085019308e-06,5.588702808627857644e-06,5.735773935170695981e-06,5.882845061713534318e-06,6.029916188256372655e-06,6.176987314799210992e-06,6.324058441342049328e-06,6.471129567884887665e-06,6.618200694427726002e-06,6.765271820970564339e-06,6.912342947513402675e-06,7.059414074056241012e-06,7.206485200599079349e-06,7.353556327141917686e-06,7.500627453684756023e-06,7.647698580227593512e-06,7.794769706770431002e-06,7.941840833313268492e-06,8.088911959856105982e-06,8.235983086398943471e-06,8.383054212941780961e-06,8.530125339484618451e-06,8.677196466027455940e-06,8.824267592570293430e-06,8.971338719113130920e-06,9.118409845655968410e-06,9.265480972198805899e-06 +0.000000000000000000e+00,1.483018217666062021e-07,2.966036435332124041e-07,4.449054652998186327e-07,5.932072870664249141e-07,7.415091088330311956e-07,8.898109305996374771e-07,1.038112752366243864e-06,1.186414574132850252e-06,1.334716395899456639e-06,1.483018217666063026e-06,1.631320039432669414e-06,1.779621861199275801e-06,1.927923682965882189e-06,2.076225504732488576e-06,2.224527326499094963e-06,2.372829148265701351e-06,2.521130970032307738e-06,2.669432791798914125e-06,2.817734613565520513e-06,2.966036435332126900e-06,3.114338257098733287e-06,3.262640078865339675e-06,3.410941900631946062e-06,3.559243722398552449e-06,3.707545544165158837e-06,3.855847365931765224e-06,4.004149187698371188e-06,4.152451009464977152e-06,4.300752831231583116e-06,4.449054652998189079e-06,4.597356474764795043e-06,4.745658296531401007e-06,4.893960118298006971e-06,5.042261940064612935e-06,5.190563761831218899e-06,5.338865583597824862e-06,5.487167405364430826e-06,5.635469227131036790e-06,5.783771048897642754e-06,5.932072870664248718e-06,6.080374692430854682e-06,6.228676514197460645e-06,6.376978335964066609e-06,6.525280157730672573e-06,6.673581979497278537e-06,6.821883801263884501e-06,6.970185623030490465e-06,7.118487444797096429e-06,7.266789266563702392e-06,7.415091088330308356e-06,7.563392910096914320e-06,7.711694731863520284e-06,7.859996553630126248e-06,8.008298375396732212e-06,8.156600197163338175e-06,8.304902018929944139e-06,8.453203840696550103e-06,8.601505662463156067e-06,8.749807484229762031e-06,8.898109305996367995e-06,9.046411127762973958e-06,9.194712949529579922e-06,9.343014771296185886e-06 +0.000000000000000000e+00,1.487911351249800410e-07,2.975822702499600820e-07,4.463734053749401494e-07,5.951645404999202698e-07,7.439556756249003902e-07,8.927468107498805106e-07,1.041537945874860525e-06,1.190329080999840540e-06,1.339120216124820554e-06,1.487911351249800569e-06,1.636702486374780583e-06,1.785493621499760598e-06,1.934284756624740612e-06,2.083075891749720627e-06,2.231867026874700641e-06,2.380658161999680656e-06,2.529449297124660670e-06,2.678240432249640685e-06,2.827031567374620699e-06,2.975822702499600714e-06,3.124613837624580728e-06,3.273404972749560743e-06,3.422196107874540758e-06,3.570987242999520772e-06,3.719778378124500787e-06,3.868569513249481225e-06,4.017360648374461663e-06,4.166151783499442101e-06,4.314942918624422539e-06,4.463734053749402977e-06,4.612525188874383415e-06,4.761316323999363853e-06,4.910107459124344291e-06,5.058898594249324729e-06,5.207689729374305167e-06,5.356480864499285605e-06,5.505271999624266043e-06,5.654063134749246481e-06,5.802854269874226919e-06,5.951645404999207357e-06,6.100436540124187795e-06,6.249227675249168233e-06,6.398018810374148671e-06,6.546809945499129109e-06,6.695601080624109547e-06,6.844392215749089985e-06,6.993183350874070423e-06,7.141974485999050861e-06,7.290765621124031299e-06,7.439556756249011738e-06,7.588347891373992176e-06,7.737139026498972614e-06,7.885930161623953052e-06,8.034721296748933490e-06,8.183512431873913928e-06,8.332303566998894366e-06,8.481094702123874804e-06,8.629885837248855242e-06,8.778676972373835680e-06,8.927468107498816118e-06,9.076259242623796556e-06,9.225050377748776994e-06,9.373841512873757432e-06 +0.000000000000000000e+00,1.470711265428445836e-07,2.941422530856891673e-07,4.412133796285337509e-07,5.882845061713783346e-07,7.353556327142229182e-07,8.824267592570675019e-07,1.029497885799911980e-06,1.176569012342756457e-06,1.323640138885600935e-06,1.470711265428445413e-06,1.617782391971289891e-06,1.764853518514134368e-06,1.911924645056978846e-06,2.058995771599823112e-06,2.206066898142667378e-06,2.353138024685511644e-06,2.500209151228355910e-06,2.647280277771200176e-06,2.794351404314044442e-06,2.941422530856888708e-06,3.088493657399732974e-06,3.235564783942577240e-06,3.382635910485421506e-06,3.529707037028265772e-06,3.676778163571110038e-06,3.823849290113954304e-06,3.970920416656798570e-06,4.117991543199642836e-06,4.265062669742487102e-06,4.412133796285331368e-06,4.559204922828175634e-06,4.706276049371019900e-06,4.853347175913864166e-06,5.000418302456708432e-06,5.147489428999552698e-06,5.294560555542396964e-06,5.441631682085241230e-06,5.588702808628085496e-06,5.735773935170929762e-06,5.882845061713774028e-06,6.029916188256618294e-06,6.176987314799462560e-06,6.324058441342306826e-06,6.471129567885151092e-06,6.618200694427995358e-06,6.765271820970839624e-06,6.912342947513683890e-06,7.059414074056528156e-06,7.206485200599372422e-06,7.353556327142216688e-06,7.500627453685060954e-06,7.647698580227905220e-06,7.794769706770749486e-06,7.941840833313593752e-06,8.088911959856438018e-06,8.235983086399282284e-06,8.383054212942126550e-06,8.530125339484970816e-06,8.677196466027815082e-06,8.824267592570659348e-06,8.971338719113503614e-06,9.118409845656347880e-06,9.265480972199192146e-06 +0.000000000000000000e+00,1.483018217666123166e-07,2.966036435332246332e-07,4.449054652998369497e-07,5.932072870664492663e-07,7.415091088330615829e-07,8.898109305996738995e-07,1.038112752366286216e-06,1.186414574132898533e-06,1.334716395899510849e-06,1.483018217666123166e-06,1.631320039432735482e-06,1.779621861199347799e-06,1.927923682965960116e-06,2.076225504732572432e-06,2.224527326499184749e-06,2.372829148265797065e-06,2.521130970032409382e-06,2.669432791799021698e-06,2.817734613565634015e-06,2.966036435332246332e-06,3.114338257098858648e-06,3.262640078865470965e-06,3.410941900632083281e-06,3.559243722398695598e-06,3.707545544165307915e-06,3.855847365931920231e-06,4.004149187698532124e-06,4.152451009465144017e-06,4.300752831231755910e-06,4.449054652998367803e-06,4.597356474764979696e-06,4.745658296531591590e-06,4.893960118298203483e-06,5.042261940064815376e-06,5.190563761831427269e-06,5.338865583598039162e-06,5.487167405364651055e-06,5.635469227131262948e-06,5.783771048897874841e-06,5.932072870664486734e-06,6.080374692431098627e-06,6.228676514197710520e-06,6.376978335964322413e-06,6.525280157730934306e-06,6.673581979497546199e-06,6.821883801264158092e-06,6.970185623030769986e-06,7.118487444797381879e-06,7.266789266563993772e-06,7.415091088330605665e-06,7.563392910097217558e-06,7.711694731863828604e-06,7.859996553630439650e-06,8.008298375397050696e-06,8.156600197163661742e-06,8.304902018930272788e-06,8.453203840696883834e-06,8.601505662463494880e-06,8.749807484230105926e-06,8.898109305996716972e-06,9.046411127763328018e-06,9.194712949529939064e-06,9.343014771296550110e-06 +0.000000000000000000e+00,1.521975337808029621e-07,3.043950675616059242e-07,4.565926013424088863e-07,6.087901351232118484e-07,7.609876689040148104e-07,9.131852026848177725e-07,1.065382736465620840e-06,1.217580270246423908e-06,1.369777804027226976e-06,1.521975337808030044e-06,1.674172871588833112e-06,1.826370405369636180e-06,1.978567939150439248e-06,2.130765472931242528e-06,2.282963006712045808e-06,2.435160540492849087e-06,2.587358074273652367e-06,2.739555608054455647e-06,2.891753141835258927e-06,3.043950675616062206e-06,3.196148209396865486e-06,3.348345743177668766e-06,3.500543276958472046e-06,3.652740810739275325e-06,3.804938344520078605e-06,3.957135878300881885e-06,4.109333412081684741e-06,4.261530945862487597e-06,4.413728479643290453e-06,4.565926013424093310e-06,4.718123547204896166e-06,4.870321080985699022e-06,5.022518614766501878e-06,5.174716148547304734e-06,5.326913682328107591e-06,5.479111216108910447e-06,5.631308749889713303e-06,5.783506283670516159e-06,5.935703817451319015e-06,6.087901351232121872e-06,6.240098885012924728e-06,6.392296418793727584e-06,6.544493952574530440e-06,6.696691486355333296e-06,6.848889020136136153e-06,7.001086553916939009e-06,7.153284087697741865e-06,7.305481621478544721e-06,7.457679155259347578e-06,7.609876689040150434e-06,7.762074222820953290e-06,7.914271756601755299e-06,8.066469290382557308e-06,8.218666824163359317e-06,8.370864357944161327e-06,8.523061891724963336e-06,8.675259425505765345e-06,8.827456959286567354e-06,8.979654493067369363e-06,9.131852026848171373e-06,9.284049560628973382e-06,9.436247094409775391e-06,9.588444628190577400e-06 +0.000000000000000000e+00,1.505000830040311499e-07,3.010001660080622998e-07,4.515002490120934497e-07,6.020003320161245996e-07,7.525004150201556965e-07,9.030004980241867935e-07,1.053500581028217890e-06,1.204000664032248987e-06,1.354500747036280084e-06,1.505000830040311181e-06,1.655500913044342278e-06,1.806000996048373375e-06,1.956501079052404260e-06,2.107001162056435357e-06,2.257501245060466454e-06,2.408001328064497551e-06,2.558501411068528648e-06,2.709001494072559745e-06,2.859501577076590842e-06,3.010001660080621939e-06,3.160501743084653036e-06,3.311001826088684133e-06,3.461501909092715230e-06,3.612001992096746327e-06,3.762502075100777424e-06,3.913002158104808521e-06,4.063502241108839618e-06,4.214002324112870715e-06,4.364502407116901812e-06,4.515002490120932909e-06,4.665502573124964006e-06,4.816002656128995103e-06,4.966502739133026200e-06,5.117002822137057297e-06,5.267502905141088393e-06,5.418002988145119490e-06,5.568503071149150587e-06,5.719003154153181684e-06,5.869503237157212781e-06,6.020003320161243878e-06,6.170503403165274975e-06,6.321003486169306072e-06,6.471503569173337169e-06,6.622003652177368266e-06,6.772503735181399363e-06,6.923003818185430460e-06,7.073503901189461557e-06,7.224003984193492654e-06,7.374504067197523751e-06,7.525004150201554848e-06,7.675504233205585945e-06,7.826004316209617042e-06,7.976504399213648139e-06,8.127004482217679236e-06,8.277504565221710333e-06,8.428004648225741430e-06,8.578504731229772527e-06,8.729004814233803623e-06,8.879504897237834720e-06,9.030004980241865817e-06,9.180505063245896914e-06,9.331005146249928011e-06,9.481505229253959108e-06 +0.000000000000000000e+00,1.519021278231080947e-07,3.038042556462161894e-07,4.557063834693242842e-07,6.076085112924323789e-07,7.595106391155404207e-07,9.114127669386484625e-07,1.063314894761756504e-06,1.215217022584864546e-06,1.367119150407972588e-06,1.519021278231080630e-06,1.670923406054188671e-06,1.822825533877296713e-06,1.974727661700404967e-06,2.126629789523513432e-06,2.278531917346621897e-06,2.430434045169730363e-06,2.582336172992838828e-06,2.734238300815947293e-06,2.886140428639055759e-06,3.038042556462164224e-06,3.189944684285272689e-06,3.341846812108381154e-06,3.493748939931489620e-06,3.645651067754598085e-06,3.797553195577706550e-06,3.949455323400815016e-06,4.101357451223923481e-06,4.253259579047031946e-06,4.405161706870140412e-06,4.557063834693248877e-06,4.708965962516357342e-06,4.860868090339465807e-06,5.012770218162574273e-06,5.164672345985682738e-06,5.316574473808791203e-06,5.468476601631899669e-06,5.620378729455008134e-06,5.772280857278116599e-06,5.924182985101225065e-06,6.076085112924333530e-06,6.227987240747441995e-06,6.379889368570550460e-06,6.531791496393658926e-06,6.683693624216767391e-06,6.835595752039875856e-06,6.987497879862984322e-06,7.139400007686092787e-06,7.291302135509201252e-06,7.443204263332309718e-06,7.595106391155418183e-06,7.747008518978527495e-06,7.898910646801636808e-06,8.050812774624746120e-06,8.202714902447855432e-06,8.354617030270964745e-06,8.506519158094074057e-06,8.658421285917183369e-06,8.810323413740292682e-06,8.962225541563401994e-06,9.114127669386511306e-06,9.266029797209620619e-06,9.417931925032729931e-06,9.569834052855839243e-06 +0.000000000000000000e+00,1.521975337808062179e-07,3.043950675616124357e-07,4.565926013424186271e-07,6.087901351232247656e-07,7.609876689040309041e-07,9.131852026848370425e-07,1.065382736465643287e-06,1.217580270246449531e-06,1.369777804027255776e-06,1.521975337808062020e-06,1.674172871588868264e-06,1.826370405369674509e-06,1.978567939150480753e-06,2.130765472931286997e-06,2.282963006712093242e-06,2.435160540492899486e-06,2.587358074273705730e-06,2.739555608054511975e-06,2.891753141835318219e-06,3.043950675616124463e-06,3.196148209396930708e-06,3.348345743177736952e-06,3.500543276958543196e-06,3.652740810739349441e-06,3.804938344520155685e-06,3.957135878300962353e-06,4.109333412081769444e-06,4.261530945862576536e-06,4.413728479643383627e-06,4.565926013424190718e-06,4.718123547204997810e-06,4.870321080985804901e-06,5.022518614766611992e-06,5.174716148547419084e-06,5.326913682328226175e-06,5.479111216109033267e-06,5.631308749889840358e-06,5.783506283670647449e-06,5.935703817451454541e-06,6.087901351232261632e-06,6.240098885013068723e-06,6.392296418793875815e-06,6.544493952574682906e-06,6.696691486355489998e-06,6.848889020136297089e-06,7.001086553917104180e-06,7.153284087697911272e-06,7.305481621478718363e-06,7.457679155259525454e-06,7.609876689040332546e-06,7.762074222821139637e-06,7.914271756601946729e-06,8.066469290382753820e-06,8.218666824163560911e-06,8.370864357944368003e-06,8.523061891725175094e-06,8.675259425505982185e-06,8.827456959286789277e-06,8.979654493067596368e-06,9.131852026848403460e-06,9.284049560629210551e-06,9.436247094410017642e-06,9.588444628190824734e-06 +0.000000000000000000e+00,1.505000830040355703e-07,3.010001660080711407e-07,4.515002490121067375e-07,6.020003320161423873e-07,7.525004150201780370e-07,9.030004980242136868e-07,1.053500581028249442e-06,1.204000664032285198e-06,1.354500747036320954e-06,1.505000830040356709e-06,1.655500913044392465e-06,1.806000996048428221e-06,1.956501079052463976e-06,2.107001162056499732e-06,2.257501245060535488e-06,2.408001328064571243e-06,2.558501411068606999e-06,2.709001494072642754e-06,2.859501577076678510e-06,3.010001660080714266e-06,3.160501743084750021e-06,3.311001826088785777e-06,3.461501909092821533e-06,3.612001992096857288e-06,3.762502075100893044e-06,3.913002158104928800e-06,4.063502241108964979e-06,4.214002324113001158e-06,4.364502407117037337e-06,4.515002490121073516e-06,4.665502573125109695e-06,4.816002656129145874e-06,4.966502739133182054e-06,5.117002822137218233e-06,5.267502905141254412e-06,5.418002988145290591e-06,5.568503071149326770e-06,5.719003154153362949e-06,5.869503237157399129e-06,6.020003320161435308e-06,6.170503403165471487e-06,6.321003486169507666e-06,6.471503569173543845e-06,6.622003652177580024e-06,6.772503735181616203e-06,6.923003818185652383e-06,7.073503901189688562e-06,7.224003984193724741e-06,7.374504067197760920e-06,7.525004150201797099e-06,7.675504233205833278e-06,7.826004316209869458e-06,7.976504399213905637e-06,8.127004482217941816e-06,8.277504565221977995e-06,8.428004648226014174e-06,8.578504731230050353e-06,8.729004814234086533e-06,8.879504897238122712e-06,9.030004980242158891e-06,9.180505063246195070e-06,9.331005146250231249e-06,9.481505229254267428e-06 +0.000000000000000000e+00,1.519021278231127005e-07,3.038042556462254009e-07,4.557063834693381014e-07,6.076085112924508019e-07,7.595106391155635023e-07,9.114127669386762028e-07,1.063314894761788903e-06,1.215217022584901604e-06,1.367119150408014304e-06,1.519021278231127005e-06,1.670923406054239705e-06,1.822825533877352406e-06,1.974727661700465106e-06,2.126629789523577807e-06,2.278531917346690507e-06,2.430434045169803207e-06,2.582336172992915908e-06,2.734238300816028608e-06,2.886140428639141309e-06,3.038042556462254009e-06,3.189944684285366710e-06,3.341846812108479410e-06,3.493748939931592111e-06,3.645651067754704811e-06,3.797553195577817512e-06,3.949455323400930212e-06,4.101357451224042913e-06,4.253259579047155613e-06,4.405161706870268314e-06,4.557063834693381014e-06,4.708965962516493714e-06,4.860868090339606415e-06,5.012770218162719115e-06,5.164672345985831816e-06,5.316574473808944516e-06,5.468476601632057217e-06,5.620378729455169917e-06,5.772280857278282618e-06,5.924182985101395318e-06,6.076085112924508019e-06,6.227987240747620719e-06,6.379889368570733420e-06,6.531791496393846120e-06,6.683693624216958820e-06,6.835595752040071521e-06,6.987497879863184221e-06,7.139400007686296922e-06,7.291302135509409622e-06,7.443204263332522323e-06,7.595106391155635023e-06,7.747008518978747724e-06,7.898910646801860424e-06,8.050812774624973125e-06,8.202714902448085825e-06,8.354617030271198526e-06,8.506519158094311226e-06,8.658421285917423927e-06,8.810323413740536627e-06,8.962225541563649327e-06,9.114127669386762028e-06,9.266029797209874728e-06,9.417931925032987429e-06,9.569834052856100129e-06 +0.000000000000000000e+00,1.555430000981872703e-07,3.110860001963745407e-07,4.666290002945618110e-07,6.221720003927490814e-07,7.777150004909363517e-07,9.332580005891236221e-07,1.088801000687310787e-06,1.244344000785497951e-06,1.399887000883685115e-06,1.555430000981872280e-06,1.710973001080059444e-06,1.866516001178246609e-06,2.022059001276433773e-06,2.177602001374620726e-06,2.333145001472807679e-06,2.488688001570994631e-06,2.644231001669181584e-06,2.799774001767368537e-06,2.955317001865555490e-06,3.110860001963742442e-06,3.266403002061929395e-06,3.421946002160116348e-06,3.577489002258303300e-06,3.733032002356490253e-06,3.888575002454677206e-06,4.044118002552864159e-06,4.199661002651051111e-06,4.355204002749238064e-06,4.510747002847425017e-06,4.666290002945611969e-06,4.821833003043798922e-06,4.977376003141985875e-06,5.132919003240172828e-06,5.288462003338359780e-06,5.444005003436546733e-06,5.599548003534733686e-06,5.755091003632920638e-06,5.910634003731107591e-06,6.066177003829294544e-06,6.221720003927481496e-06,6.377263004025668449e-06,6.532806004123855402e-06,6.688349004222042355e-06,6.843892004320229307e-06,6.999435004418416260e-06,7.154978004516603213e-06,7.310521004614790165e-06,7.466064004712977118e-06,7.621607004811164071e-06,7.777150004909351024e-06,7.932693005007537129e-06,8.088236005105723235e-06,8.243779005203909341e-06,8.399322005302095446e-06,8.554865005400281552e-06,8.710408005498467658e-06,8.865951005596653763e-06,9.021494005694839869e-06,9.177037005793025975e-06,9.332580005891212080e-06,9.488123005989398186e-06,9.643666006087584292e-06,9.799209006185770397e-06 +0.000000000000000000e+00,1.538755562871587259e-07,3.077511125743174517e-07,4.616266688614761511e-07,6.155022251486347975e-07,7.693777814357934440e-07,9.232533377229520904e-07,1.077128894010110843e-06,1.231004450297269595e-06,1.384880006584428347e-06,1.538755562871587100e-06,1.692631119158745852e-06,1.846506675445904604e-06,2.000382231733063357e-06,2.154257788020222109e-06,2.308133344307380861e-06,2.462008900594539614e-06,2.615884456881698366e-06,2.769760013168857118e-06,2.923635569456015871e-06,3.077511125743174623e-06,3.231386682030333375e-06,3.385262238317492128e-06,3.539137794604650880e-06,3.693013350891809632e-06,3.846888907178968808e-06,4.000764463466127560e-06,4.154640019753286313e-06,4.308515576040445065e-06,4.462391132327603817e-06,4.616266688614762570e-06,4.770142244901921322e-06,4.924017801189080074e-06,5.077893357476238827e-06,5.231768913763397579e-06,5.385644470050556331e-06,5.539520026337715084e-06,5.693395582624873836e-06,5.847271138912032588e-06,6.001146695199191340e-06,6.155022251486350093e-06,6.308897807773508845e-06,6.462773364060667597e-06,6.616648920347826350e-06,6.770524476634985102e-06,6.924400032922143854e-06,7.078275589209302607e-06,7.232151145496461359e-06,7.386026701783620111e-06,7.539902258070778864e-06,7.693777814357937616e-06,7.847653370645096368e-06,8.001528926932255121e-06,8.155404483219413873e-06,8.309280039506572625e-06,8.463155595793731378e-06,8.617031152080890130e-06,8.770906708368048882e-06,8.924782264655207635e-06,9.078657820942366387e-06,9.232533377229525139e-06,9.386408933516683892e-06,9.540284489803842644e-06,9.694160046091001396e-06 +0.000000000000000000e+00,1.554139098233078508e-07,3.108278196466157017e-07,4.662417294699235525e-07,6.216556392932314034e-07,7.770695491165392542e-07,9.324834589398471050e-07,1.087897368763155062e-06,1.243311278586463018e-06,1.398725188409770975e-06,1.554139098233078932e-06,1.709553008056386889e-06,1.864966917879694845e-06,2.020380827703002802e-06,2.175794737526310971e-06,2.331208647349619139e-06,2.486622557172927308e-06,2.642036466996235476e-06,2.797450376819543644e-06,2.952864286642851813e-06,3.108278196466159981e-06,3.263692106289468150e-06,3.419106016112776318e-06,3.574519925936084487e-06,3.729933835759392655e-06,3.885347745582700824e-06,4.040761655406008992e-06,4.196175565229317161e-06,4.351589475052625329e-06,4.507003384875933498e-06,4.662417294699241666e-06,4.817831204522549835e-06,4.973245114345858003e-06,5.128659024169166172e-06,5.284072933992474340e-06,5.439486843815782509e-06,5.594900753639090677e-06,5.750314663462398846e-06,5.905728573285707014e-06,6.061142483109015183e-06,6.216556392932323351e-06,6.371970302755631519e-06,6.527384212578939688e-06,6.682798122402247856e-06,6.838212032225556025e-06,6.993625942048864193e-06,7.149039851872172362e-06,7.304453761695480530e-06,7.459867671518788699e-06,7.615281581342096867e-06,7.770695491165405036e-06,7.926109400988714051e-06,8.081523310812023067e-06,8.236937220635332082e-06,8.392351130458641098e-06,8.547765040281950113e-06,8.703178950105259129e-06,8.858592859928568144e-06,9.014006769751877160e-06,9.169420679575186175e-06,9.324834589398495191e-06,9.480248499221804206e-06,9.635662409045113222e-06,9.791076318868422237e-06 +0.000000000000000000e+00,1.555430000981881703e-07,3.110860001963763406e-07,4.666290002945645110e-07,6.221720003927526813e-07,7.777150004909409045e-07,9.332580005891291278e-07,1.088801000687317351e-06,1.244344000785505574e-06,1.399887000883693798e-06,1.555430000981882021e-06,1.710973001080070244e-06,1.866516001178258467e-06,2.022059001276446479e-06,2.177602001374634279e-06,2.333145001472822078e-06,2.488688001571009878e-06,2.644231001669197678e-06,2.799774001767385478e-06,2.955317001865573277e-06,3.110860001963761077e-06,3.266403002061948877e-06,3.421946002160136677e-06,3.577489002258324476e-06,3.733032002356512276e-06,3.888575002454700076e-06,4.044118002552887875e-06,4.199661002651075675e-06,4.355204002749263475e-06,4.510747002847451275e-06,4.666290002945639074e-06,4.821833003043826874e-06,4.977376003142014674e-06,5.132919003240202474e-06,5.288462003338390273e-06,5.444005003436578073e-06,5.599548003534765873e-06,5.755091003632953673e-06,5.910634003731141472e-06,6.066177003829329272e-06,6.221720003927517072e-06,6.377263004025704872e-06,6.532806004123892671e-06,6.688349004222080471e-06,6.843892004320268271e-06,6.999435004418456071e-06,7.154978004516643870e-06,7.310521004614831670e-06,7.466064004713019470e-06,7.621607004811207270e-06,7.777150004909395069e-06,7.932693005007582869e-06,8.088236005105770669e-06,8.243779005203958468e-06,8.399322005302146268e-06,8.554865005400334068e-06,8.710408005498521868e-06,8.865951005596709667e-06,9.021494005694897467e-06,9.177037005793085267e-06,9.332580005891273067e-06,9.488123005989460866e-06,9.643666006087648666e-06,9.799209006185836466e-06 +0.000000000000000000e+00,1.538755562871609758e-07,3.077511125743219516e-07,4.616266688614829273e-07,6.155022251486439031e-07,7.693777814358048789e-07,9.232533377229658547e-07,1.077128894010126936e-06,1.231004450297288018e-06,1.384880006584449100e-06,1.538755562871610181e-06,1.692631119158771263e-06,1.846506675445932345e-06,2.000382231733093426e-06,2.154257788020254720e-06,2.308133344307416013e-06,2.462008900594577307e-06,2.615884456881738600e-06,2.769760013168899893e-06,2.923635569456061187e-06,3.077511125743222480e-06,3.231386682030383774e-06,3.385262238317545067e-06,3.539137794604706361e-06,3.693013350891867654e-06,3.846888907179028947e-06,4.000764463466190241e-06,4.154640019753351534e-06,4.308515576040512828e-06,4.462391132327674121e-06,4.616266688614835414e-06,4.770142244901996708e-06,4.924017801189158001e-06,5.077893357476319295e-06,5.231768913763480588e-06,5.385644470050641882e-06,5.539520026337803175e-06,5.693395582624964468e-06,5.847271138912125762e-06,6.001146695199287055e-06,6.155022251486448349e-06,6.308897807773609642e-06,6.462773364060770935e-06,6.616648920347932229e-06,6.770524476635093522e-06,6.924400032922254816e-06,7.078275589209416109e-06,7.232151145496577403e-06,7.386026701783738696e-06,7.539902258070899989e-06,7.693777814358061283e-06,7.847653370645223423e-06,8.001528926932385564e-06,8.155404483219547704e-06,8.309280039506709845e-06,8.463155595793871985e-06,8.617031152081034126e-06,8.770906708368196266e-06,8.924782264655358406e-06,9.078657820942520547e-06,9.232533377229682687e-06,9.386408933516844828e-06,9.540284489804006968e-06,9.694160046091169109e-06 +0.000000000000000000e+00,1.554139098233107890e-07,3.108278196466215780e-07,4.662417294699323405e-07,6.216556392932430501e-07,7.770695491165537596e-07,9.324834589398644692e-07,1.087897368763175179e-06,1.243311278586485888e-06,1.398725188409796598e-06,1.554139098233107308e-06,1.709553008056418017e-06,1.864966917879728727e-06,2.020380827703039225e-06,2.175794737526349934e-06,2.331208647349660644e-06,2.486622557172971353e-06,2.642036466996282063e-06,2.797450376819592772e-06,2.952864286642903482e-06,3.108278196466214192e-06,3.263692106289524901e-06,3.419106016112835611e-06,3.574519925936146320e-06,3.729933835759457030e-06,3.885347745582767739e-06,4.040761655406078449e-06,4.196175565229389159e-06,4.351589475052699868e-06,4.507003384876010578e-06,4.662417294699321287e-06,4.817831204522631997e-06,4.973245114345942706e-06,5.128659024169253416e-06,5.284072933992564126e-06,5.439486843815874835e-06,5.594900753639185545e-06,5.750314663462496254e-06,5.905728573285806964e-06,6.061142483109117674e-06,6.216556392932428383e-06,6.371970302755739093e-06,6.527384212579049802e-06,6.682798122402360512e-06,6.838212032225671221e-06,6.993625942048981931e-06,7.149039851872292641e-06,7.304453761695603350e-06,7.459867671518914060e-06,7.615281581342224769e-06,7.770695491165535479e-06,7.926109400988846188e-06,8.081523310812156898e-06,8.236937220635467608e-06,8.392351130458778317e-06,8.547765040282089027e-06,8.703178950105399736e-06,8.858592859928710446e-06,9.014006769752021155e-06,9.169420679575331865e-06,9.324834589398642575e-06,9.480248499221953284e-06,9.635662409045263994e-06,9.791076318868574703e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.571518559190050787e-07,3.143037118380101575e-07,4.714555677570152362e-07,6.286074236760203150e-07,7.857592795950253408e-07,9.429111355140303666e-07,1.100062991433035392e-06,1.257214847352040418e-06,1.414366703271045444e-06,1.571518559190050470e-06,1.728670415109055496e-06,1.885822271028060521e-06,2.042974126947065547e-06,2.200125982866070785e-06,2.357277838785076022e-06,2.514429694704081260e-06,2.671581550623086498e-06,2.828733406542091735e-06,2.985885262461096973e-06,3.143037118380102210e-06,3.300188974299107448e-06,3.457340830218112685e-06,3.614492686137117923e-06,3.771644542056123161e-06,3.928796397975127975e-06,4.085948253894132789e-06,4.243100109813137603e-06,4.400251965732142417e-06,4.557403821651147231e-06,4.714555677570152045e-06,4.871707533489156859e-06,5.028859389408161673e-06,5.186011245327166487e-06,5.343163101246171301e-06,5.500314957165176115e-06,5.657466813084180929e-06,5.814618669003185743e-06,5.971770524922190557e-06,6.128922380841195371e-06,6.286074236760200185e-06,6.443226092679204999e-06,6.600377948598209813e-06,6.757529804517214628e-06,6.914681660436219442e-06,7.071833516355224256e-06,7.228985372274229070e-06,7.386137228193233884e-06,7.543289084112238698e-06,7.700440940031243512e-06,7.857592795950249173e-06,8.014744651869254834e-06,8.171896507788260495e-06,8.329048363707266156e-06,8.486200219626271817e-06,8.643352075545277478e-06,8.800503931464283139e-06,8.957655787383288801e-06,9.114807643302294462e-06,9.271959499221300123e-06,9.429111355140305784e-06,9.586263211059311445e-06,9.743415066978317106e-06,9.900566922897322767e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.571518559190057670e-07,3.143037118380115339e-07,4.714555677570173009e-07,6.286074236760230679e-07,7.857592795950288348e-07,9.429111355140346018e-07,1.100062991433040475e-06,1.257214847352046347e-06,1.414366703271052220e-06,1.571518559190058093e-06,1.728670415109063966e-06,1.885822271028069839e-06,2.042974126947075712e-06,2.200125982866081796e-06,2.357277838785087881e-06,2.514429694704093965e-06,2.671581550623100050e-06,2.828733406542106135e-06,2.985885262461112219e-06,3.143037118380118304e-06,3.300188974299124389e-06,3.457340830218130473e-06,3.614492686137136558e-06,3.771644542056142642e-06,3.928796397975148303e-06,4.085948253894153964e-06,4.243100109813159626e-06,4.400251965732165287e-06,4.557403821651170948e-06,4.714555677570176609e-06,4.871707533489182270e-06,5.028859389408187931e-06,5.186011245327193592e-06,5.343163101246199253e-06,5.500314957165204914e-06,5.657466813084210575e-06,5.814618669003216236e-06,5.971770524922221897e-06,6.128922380841227559e-06,6.286074236760233220e-06,6.443226092679238881e-06,6.600377948598244542e-06,6.757529804517250203e-06,6.914681660436255864e-06,7.071833516355261525e-06,7.228985372274267186e-06,7.386137228193272847e-06,7.543289084112278508e-06,7.700440940031284169e-06,7.857592795950289831e-06,8.014744651869295492e-06,8.171896507788301153e-06,8.329048363707306814e-06,8.486200219626312475e-06,8.643352075545318136e-06,8.800503931464323797e-06,8.957655787383329458e-06,9.114807643302335119e-06,9.271959499221340780e-06,9.429111355140346441e-06,9.586263211059352102e-06,9.743415066978357764e-06,9.900566922897363425e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.460004552676918390e-07,2.920009105353836779e-07,4.380013658030754905e-07,5.840018210707672500e-07,7.300022763384590096e-07,8.760027316061507692e-07,1.022003186873842423e-06,1.168003642141534077e-06,1.314004097409225730e-06,1.460004552676917384e-06,1.606005007944609038e-06,1.752005463212300691e-06,1.898005918479992345e-06,2.044006373747683999e-06,2.190006829015375652e-06,2.336007284283067306e-06,2.482007739550758960e-06,2.628008194818450613e-06,2.774008650086142267e-06,2.920009105353833921e-06,3.066009560621525574e-06,3.212010015889217228e-06,3.358010471156908882e-06,3.504010926424600536e-06,3.650011381692292189e-06,3.796011836959983843e-06,3.942012292227675497e-06,4.088012747495367150e-06,4.234013202763058804e-06,4.380013658030750458e-06,4.526014113298442111e-06,4.672014568566133765e-06,4.818015023833825419e-06,4.964015479101517072e-06,5.110015934369208726e-06,5.256016389636900380e-06,5.402016844904592033e-06,5.548017300172283687e-06,5.694017755439975341e-06,5.840018210707666994e-06,5.986018665975358648e-06,6.132019121243050302e-06,6.278019576510741956e-06,6.424020031778433609e-06,6.570020487046125263e-06,6.716020942313816917e-06,6.862021397581508570e-06,7.008021852849200224e-06,7.154022308116891878e-06,7.300022763384583531e-06,7.446023218652275185e-06,7.592023673919966839e-06,7.738024129187657645e-06,7.884024584455349299e-06,8.030025039723040953e-06,8.176025494990732606e-06,8.322025950258424260e-06,8.468026405526115914e-06,8.614026860793807567e-06,8.760027316061499221e-06,8.906027771329190875e-06,9.052028226596882529e-06,9.198028681864574182e-06 +0.000000000000000000e+00,1.443800068934487861e-07,2.887600137868975723e-07,4.331400206803463320e-07,5.775200275737950387e-07,7.219000344672437454e-07,8.662800413606924521e-07,1.010660048254141053e-06,1.155040055147589654e-06,1.299420062041038255e-06,1.443800068934486856e-06,1.588180075827935456e-06,1.732560082721384057e-06,1.876940089614832658e-06,2.021320096508281259e-06,2.165700103401729860e-06,2.310080110295178461e-06,2.454460117188627062e-06,2.598840124082075662e-06,2.743220130975524263e-06,2.887600137868972864e-06,3.031980144762421465e-06,3.176360151655870066e-06,3.320740158549318667e-06,3.465120165442767267e-06,3.609500172336215868e-06,3.753880179229664469e-06,3.898260186123113494e-06,4.042640193016562518e-06,4.187020199910011542e-06,4.331400206803460567e-06,4.475780213696909591e-06,4.620160220590358615e-06,4.764540227483807640e-06,4.908920234377256664e-06,5.053300241270705688e-06,5.197680248164154713e-06,5.342060255057603737e-06,5.486440261951052762e-06,5.630820268844501786e-06,5.775200275737950810e-06,5.919580282631399835e-06,6.063960289524848859e-06,6.208340296418297883e-06,6.352720303311746908e-06,6.497100310205195932e-06,6.641480317098644957e-06,6.785860323992093981e-06,6.930240330885543005e-06,7.074620337778992030e-06,7.219000344672441054e-06,7.363380351565890078e-06,7.507760358459339103e-06,7.652140365352788127e-06,7.796520372246237151e-06,7.940900379139686176e-06,8.085280386033135200e-06,8.229660392926584225e-06,8.374040399820033249e-06,8.518420406713482273e-06,8.662800413606931298e-06,8.807180420500380322e-06,8.951560427393829346e-06,9.095940434287278371e-06 +0.000000000000000000e+00,1.458279911211131327e-07,2.916559822422262654e-07,4.374839733633393717e-07,5.833119644844524250e-07,7.291399556055654783e-07,8.749679467266785316e-07,1.020795937847791479e-06,1.166623928968904427e-06,1.312451920090017374e-06,1.458279911211130321e-06,1.604107902332243269e-06,1.749935893453356216e-06,1.895763884574469164e-06,2.041591875695582111e-06,2.187419866816695059e-06,2.333247857937808006e-06,2.479075849058920953e-06,2.624903840180033901e-06,2.770731831301146848e-06,2.916559822422259796e-06,3.062387813543372743e-06,3.208215804664485691e-06,3.354043795785598638e-06,3.499871786906711585e-06,3.645699778027824533e-06,3.791527769148937480e-06,3.937355760270050428e-06,4.083183751391163375e-06,4.229011742512276323e-06,4.374839733633389270e-06,4.520667724754502217e-06,4.666495715875615165e-06,4.812323706996728112e-06,4.958151698117841060e-06,5.103979689238954007e-06,5.249807680360066955e-06,5.395635671481179902e-06,5.541463662602292850e-06,5.687291653723405797e-06,5.833119644844518744e-06,5.978947635965631692e-06,6.124775627086744639e-06,6.270603618207857587e-06,6.416431609328970534e-06,6.562259600450083482e-06,6.708087591571196429e-06,6.853915582692309376e-06,6.999743573813422324e-06,7.145571564934535271e-06,7.291399556055648219e-06,7.437227547176761166e-06,7.583055538297874114e-06,7.728883529418987061e-06,7.874711520540100856e-06,8.020539511661214650e-06,8.166367502782328444e-06,8.312195493903442239e-06,8.458023485024556033e-06,8.603851476145669828e-06,8.749679467266783622e-06,8.895507458387897417e-06,9.041335449509011211e-06,9.187163440630125006e-06 +0.000000000000000000e+00,1.460004552676916802e-07,2.920009105353833603e-07,4.380013658030750669e-07,5.840018210707668265e-07,7.300022763384585861e-07,8.760027316061503456e-07,1.022003186873841999e-06,1.168003642141533653e-06,1.314004097409225307e-06,1.460004552676916960e-06,1.606005007944608614e-06,1.752005463212300268e-06,1.898005918479991921e-06,2.044006373747683575e-06,2.190006829015375229e-06,2.336007284283066882e-06,2.482007739550758536e-06,2.628008194818450190e-06,2.774008650086141844e-06,2.920009105353833497e-06,3.066009560621525151e-06,3.212010015889216805e-06,3.358010471156908458e-06,3.504010926424600112e-06,3.650011381692291766e-06,3.796011836959983419e-06,3.942012292227674650e-06,4.088012747495366303e-06,4.234013202763057957e-06,4.380013658030749611e-06,4.526014113298441264e-06,4.672014568566132918e-06,4.818015023833824572e-06,4.964015479101516225e-06,5.110015934369207879e-06,5.256016389636899533e-06,5.402016844904591186e-06,5.548017300172282840e-06,5.694017755439974494e-06,5.840018210707666147e-06,5.986018665975357801e-06,6.132019121243049455e-06,6.278019576510741109e-06,6.424020031778432762e-06,6.570020487046124416e-06,6.716020942313816070e-06,6.862021397581507723e-06,7.008021852849199377e-06,7.154022308116891031e-06,7.300022763384582684e-06,7.446023218652274338e-06,7.592023673919965992e-06,7.738024129187657645e-06,7.884024584455349299e-06,8.030025039723040953e-06,8.176025494990732606e-06,8.322025950258424260e-06,8.468026405526115914e-06,8.614026860793807567e-06,8.760027316061499221e-06,8.906027771329190875e-06,9.052028226596882529e-06,9.198028681864574182e-06 +0.000000000000000000e+00,1.443800068934477009e-07,2.887600137868954018e-07,4.331400206803431026e-07,5.775200275737908035e-07,7.219000344672385573e-07,8.662800413606863112e-07,1.010660048254134065e-06,1.155040055147581819e-06,1.299420062041029573e-06,1.443800068934477326e-06,1.588180075827925080e-06,1.732560082721372834e-06,1.876940089614820588e-06,2.021320096508268553e-06,2.165700103401716731e-06,2.310080110295164908e-06,2.454460117188613085e-06,2.598840124082061263e-06,2.743220130975509440e-06,2.887600137868957617e-06,3.031980144762405795e-06,3.176360151655853972e-06,3.320740158549302149e-06,3.465120165442750327e-06,3.609500172336198504e-06,3.753880179229646681e-06,3.898260186123094859e-06,4.042640193016543036e-06,4.187020199909991213e-06,4.331400206803439391e-06,4.475780213696887568e-06,4.620160220590335745e-06,4.764540227483783923e-06,4.908920234377232100e-06,5.053300241270680278e-06,5.197680248164128455e-06,5.342060255057576632e-06,5.486440261951024810e-06,5.630820268844472987e-06,5.775200275737921164e-06,5.919580282631369342e-06,6.063960289524817519e-06,6.208340296418265696e-06,6.352720303311713874e-06,6.497100310205162051e-06,6.641480317098610228e-06,6.785860323992058406e-06,6.930240330885506583e-06,7.074620337778954760e-06,7.219000344672402938e-06,7.363380351565851115e-06,7.507760358459299292e-06,7.652140365352747470e-06,7.796520372246196494e-06,7.940900379139645518e-06,8.085280386033094543e-06,8.229660392926543567e-06,8.374040399819992591e-06,8.518420406713441616e-06,8.662800413606890640e-06,8.807180420500339664e-06,8.951560427393788689e-06,9.095940434287237713e-06 +0.000000000000000000e+00,1.458279911211152238e-07,2.916559822422304477e-07,4.374839733633456715e-07,5.833119644844608953e-07,7.291399556055761721e-07,8.749679467266914489e-07,1.020795937847806726e-06,1.166623928968922002e-06,1.312451920090037279e-06,1.458279911211152556e-06,1.604107902332267833e-06,1.749935893453383110e-06,1.895763884574498386e-06,2.041591875695613451e-06,2.187419866816728516e-06,2.333247857937843581e-06,2.479075849058958646e-06,2.624903840180073711e-06,2.770731831301188776e-06,2.916559822422303841e-06,3.062387813543418906e-06,3.208215804664533971e-06,3.354043795785649036e-06,3.499871786906764101e-06,3.645699778027879167e-06,3.791527769148994232e-06,3.937355760270109720e-06,4.083183751391225209e-06,4.229011742512340697e-06,4.374839733633456186e-06,4.520667724754571674e-06,4.666495715875687163e-06,4.812323706996802651e-06,4.958151698117918140e-06,5.103979689239033628e-06,5.249807680360149117e-06,5.395635671481264605e-06,5.541463662602380094e-06,5.687291653723495582e-06,5.833119644844611071e-06,5.978947635965726560e-06,6.124775627086842048e-06,6.270603618207957537e-06,6.416431609329073025e-06,6.562259600450188514e-06,6.708087591571304002e-06,6.853915582692419491e-06,6.999743573813534979e-06,7.145571564934650468e-06,7.291399556055765956e-06,7.437227547176881445e-06,7.583055538297996933e-06,7.728883529419112422e-06,7.874711520540227910e-06,8.020539511661343399e-06,8.166367502782458888e-06,8.312195493903574376e-06,8.458023485024689865e-06,8.603851476145805353e-06,8.749679467266920842e-06,8.895507458388036330e-06,9.041335449509151819e-06,9.187163440630267307e-06 +0.000000000000000000e+00,1.492377229813428060e-07,2.984754459626856120e-07,4.477131689440284181e-07,5.969508919253712241e-07,7.461886149067139772e-07,8.954263378880567302e-07,1.044664060869399483e-06,1.193901783850742236e-06,1.343139506832084989e-06,1.492377229813427743e-06,1.641614952794770496e-06,1.790852675776113249e-06,1.940090398757456214e-06,2.089328121738799390e-06,2.238565844720142567e-06,2.387803567701485743e-06,2.537041290682828920e-06,2.686279013664172097e-06,2.835516736645515273e-06,2.984754459626858450e-06,3.133992182608201626e-06,3.283229905589544803e-06,3.432467628570887980e-06,3.581705351552231156e-06,3.730943074533574333e-06,3.880180797514917509e-06,4.029418520496260686e-06,4.178656243477603863e-06,4.327893966458947039e-06,4.477131689440290216e-06,4.626369412421633392e-06,4.775607135402976569e-06,4.924844858384319746e-06,5.074082581365662922e-06,5.223320304347006099e-06,5.372558027328349275e-06,5.521795750309692452e-06,5.671033473291035629e-06,5.820271196272378805e-06,5.969508919253721982e-06,6.118746642235065158e-06,6.267984365216408335e-06,6.417222088197751512e-06,6.566459811179094688e-06,6.715697534160437865e-06,6.864935257141781041e-06,7.014172980123124218e-06,7.163410703104467395e-06,7.312648426085810571e-06,7.461886149067153748e-06,7.611123872048496924e-06,7.760361595029840101e-06,7.909599318011183278e-06,8.058837040992526454e-06,8.208074763973869631e-06,8.357312486955212807e-06,8.506550209936555984e-06,8.655787932917899160e-06,8.805025655899242337e-06,8.954263378880585514e-06,9.103501101861928690e-06,9.252738824843271867e-06,9.401976547824615043e-06 +0.000000000000000000e+00,1.476194133388191967e-07,2.952388266776383933e-07,4.428582400164575900e-07,5.904776533552767866e-07,7.380970666940959833e-07,8.857164800329151799e-07,1.033335893371734377e-06,1.180955306710553573e-06,1.328574720049372770e-06,1.476194133388191967e-06,1.623813546727011163e-06,1.771432960065830360e-06,1.919052373404649557e-06,2.066671786743468753e-06,2.214291200082287950e-06,2.361910613421107146e-06,2.509530026759926343e-06,2.657149440098745540e-06,2.804768853437564736e-06,2.952388266776383933e-06,3.100007680115203130e-06,3.247627093454022326e-06,3.395246506792841523e-06,3.542865920131660720e-06,3.690485333470479916e-06,3.838104746809299113e-06,3.985724160148118310e-06,4.133343573486937506e-06,4.280962986825756703e-06,4.428582400164575900e-06,4.576201813503395096e-06,4.723821226842214293e-06,4.871440640181033490e-06,5.019060053519852686e-06,5.166679466858671883e-06,5.314298880197491080e-06,5.461918293536310276e-06,5.609537706875129473e-06,5.757157120213948670e-06,5.904776533552767866e-06,6.052395946891587063e-06,6.200015360230406260e-06,6.347634773569225456e-06,6.495254186908044653e-06,6.642873600246863849e-06,6.790493013585683046e-06,6.938112426924502243e-06,7.085731840263321439e-06,7.233351253602140636e-06,7.380970666940959833e-06,7.528590080279779029e-06,7.676209493618598226e-06,7.823828906957417423e-06,7.971448320296236619e-06,8.119067733635055816e-06,8.266687146973875013e-06,8.414306560312694209e-06,8.561925973651513406e-06,8.709545386990332603e-06,8.857164800329151799e-06,9.004784213667970996e-06,9.152403627006790193e-06,9.300023040345609389e-06 +0.000000000000000000e+00,1.491227585432347872e-07,2.982455170864695743e-07,4.473682756297043615e-07,5.964910341729391487e-07,7.456137927161739358e-07,8.947365512594087230e-07,1.043859309802643510e-06,1.192982068345878297e-06,1.342104826889113085e-06,1.491227585432347872e-06,1.640350343975582659e-06,1.789473102518817446e-06,1.938595861062052445e-06,2.087718619605287444e-06,2.236841378148522443e-06,2.385964136691757442e-06,2.535086895234992441e-06,2.684209653778227440e-06,2.833332412321462439e-06,2.982455170864697437e-06,3.131577929407932436e-06,3.280700687951167435e-06,3.429823446494402434e-06,3.578946205037637433e-06,3.728068963580872432e-06,3.877191722124107431e-06,4.026314480667342430e-06,4.175437239210577429e-06,4.324559997753812428e-06,4.473682756297047427e-06,4.622805514840282426e-06,4.771928273383517425e-06,4.921051031926752423e-06,5.070173790469987422e-06,5.219296549013222421e-06,5.368419307556457420e-06,5.517542066099692419e-06,5.666664824642927418e-06,5.815787583186162417e-06,5.964910341729397416e-06,6.114033100272632415e-06,6.263155858815867414e-06,6.412278617359102413e-06,6.561401375902337412e-06,6.710524134445572411e-06,6.859646892988807410e-06,7.008769651532042408e-06,7.157892410075277407e-06,7.307015168618512406e-06,7.456137927161747405e-06,7.605260685704982404e-06,7.754383444248216556e-06,7.903506202791450708e-06,8.052628961334684860e-06,8.201751719877919012e-06,8.350874478421153164e-06,8.499997236964387316e-06,8.649119995507621467e-06,8.798242754050855619e-06,8.947365512594089771e-06,9.096488271137323923e-06,9.245611029680558075e-06,9.394733788223792227e-06 +0.000000000000000000e+00,1.492377229813447648e-07,2.984754459626895296e-07,4.477131689440342944e-07,5.969508919253790591e-07,7.461886149067238239e-07,8.954263378880685887e-07,1.044664060869413248e-06,1.193901783850757907e-06,1.343139506832102565e-06,1.492377229813447224e-06,1.641614952794791883e-06,1.790852675776136542e-06,1.940090398757481201e-06,2.089328121738825648e-06,2.238565844720170095e-06,2.387803567701514542e-06,2.537041290682858990e-06,2.686279013664203437e-06,2.835516736645547884e-06,2.984754459626892331e-06,3.133992182608236778e-06,3.283229905589581225e-06,3.432467628570925673e-06,3.581705351552270120e-06,3.730943074533614567e-06,3.880180797514959014e-06,4.029418520496303038e-06,4.178656243477647061e-06,4.327893966458991085e-06,4.477131689440335108e-06,4.626369412421679132e-06,4.775607135403023156e-06,4.924844858384367179e-06,5.074082581365711203e-06,5.223320304347055227e-06,5.372558027328399250e-06,5.521795750309743274e-06,5.671033473291087298e-06,5.820271196272431321e-06,5.969508919253775345e-06,6.118746642235119368e-06,6.267984365216463392e-06,6.417222088197807416e-06,6.566459811179151439e-06,6.715697534160495463e-06,6.864935257141839487e-06,7.014172980123183510e-06,7.163410703104527534e-06,7.312648426085871557e-06,7.461886149067215581e-06,7.611123872048559605e-06,7.760361595029902781e-06,7.909599318011245958e-06,8.058837040992589135e-06,8.208074763973932311e-06,8.357312486955275488e-06,8.506550209936618664e-06,8.655787932917961841e-06,8.805025655899305018e-06,8.954263378880648194e-06,9.103501101861991371e-06,9.252738824843334547e-06,9.401976547824677724e-06 +0.000000000000000000e+00,1.476194133388199113e-07,2.952388266776398227e-07,4.428582400164597075e-07,5.904776533552795395e-07,7.380970666940993714e-07,8.857164800329192033e-07,1.033335893371739035e-06,1.180955306710558867e-06,1.328574720049378699e-06,1.476194133388198531e-06,1.623813546727018363e-06,1.771432960065838195e-06,1.919052373404658027e-06,2.066671786743478071e-06,2.214291200082298114e-06,2.361910613421118158e-06,2.509530026759938202e-06,2.657149440098758245e-06,2.804768853437578289e-06,2.952388266776398333e-06,3.100007680115218376e-06,3.247627093454038420e-06,3.395246506792858464e-06,3.542865920131678507e-06,3.690485333470498551e-06,3.838104746809318595e-06,3.985724160148138638e-06,4.133343573486958682e-06,4.280962986825778726e-06,4.428582400164598770e-06,4.576201813503418813e-06,4.723821226842238857e-06,4.871440640181058901e-06,5.019060053519878944e-06,5.166679466858698988e-06,5.314298880197519032e-06,5.461918293536339075e-06,5.609537706875159119e-06,5.757157120213979163e-06,5.904776533552799206e-06,6.052395946891619250e-06,6.200015360230439294e-06,6.347634773569259337e-06,6.495254186908079381e-06,6.642873600246899425e-06,6.790493013585719469e-06,6.938112426924539512e-06,7.085731840263359556e-06,7.233351253602179600e-06,7.380970666940999643e-06,7.528590080279819687e-06,7.676209493618638884e-06,7.823828906957458080e-06,7.971448320296277277e-06,8.119067733635096474e-06,8.266687146973915670e-06,8.414306560312734867e-06,8.561925973651554064e-06,8.709545386990373260e-06,8.857164800329192457e-06,9.004784213668011654e-06,9.152403627006830850e-06,9.300023040345650047e-06 +0.000000000000000000e+00,1.491227585432372489e-07,2.982455170864744977e-07,4.473682756297117730e-07,5.964910341729491013e-07,7.456137927161864296e-07,8.947365512594237578e-07,1.043859309802661086e-06,1.192982068345898414e-06,1.342104826889135743e-06,1.491227585432373071e-06,1.640350343975610399e-06,1.789473102518847727e-06,1.938595861062085056e-06,2.087718619605322172e-06,2.236841378148559289e-06,2.385964136691796405e-06,2.535086895235033522e-06,2.684209653778270638e-06,2.833332412321507755e-06,2.982455170864744871e-06,3.131577929407981988e-06,3.280700687951219104e-06,3.429823446494456221e-06,3.578946205037693337e-06,3.728068963580930454e-06,3.877191722124167570e-06,4.026314480667405110e-06,4.175437239210642650e-06,4.324559997753880190e-06,4.473682756297117730e-06,4.622805514840355270e-06,4.771928273383592810e-06,4.921051031926830351e-06,5.070173790470067891e-06,5.219296549013305431e-06,5.368419307556542971e-06,5.517542066099780511e-06,5.666664824643018051e-06,5.815787583186255591e-06,5.964910341729493131e-06,6.114033100272730671e-06,6.263155858815968211e-06,6.412278617359205751e-06,6.561401375902443291e-06,6.710524134445680831e-06,6.859646892988918371e-06,7.008769651532155911e-06,7.157892410075393451e-06,7.307015168618630991e-06,7.456137927161868531e-06,7.605260685705106071e-06,7.754383444248343611e-06,7.903506202791581151e-06,8.052628961334818691e-06,8.201751719878056231e-06,8.350874478421293771e-06,8.499997236964531311e-06,8.649119995507768851e-06,8.798242754051006391e-06,8.947365512594243931e-06,9.096488271137481471e-06,9.245611029680719011e-06,9.394733788223956551e-06 +0.000000000000000000e+00,1.524641538068128918e-07,3.049283076136257836e-07,4.573924614204387018e-07,6.098566152272516730e-07,7.623207690340646442e-07,9.147849228408776154e-07,1.067249076647690587e-06,1.219713230454503558e-06,1.372177384261316529e-06,1.524641538068129500e-06,1.677105691874942471e-06,1.829569845681755442e-06,1.982033999488568625e-06,2.134498153295381597e-06,2.286962307102194568e-06,2.439426460909007539e-06,2.591890614715820510e-06,2.744354768522633481e-06,2.896818922329446453e-06,3.049283076136259424e-06,3.201747229943072395e-06,3.354211383749885366e-06,3.506675537556698337e-06,3.659139691363511309e-06,3.811603845170324280e-06,3.964067998977137251e-06,4.116532152783950222e-06,4.268996306590763193e-06,4.421460460397576164e-06,4.573924614204389136e-06,4.726388768011202107e-06,4.878852921818015078e-06,5.031317075624828049e-06,5.183781229431641020e-06,5.336245383238453992e-06,5.488709537045266963e-06,5.641173690852079934e-06,5.793637844658892905e-06,5.946101998465705876e-06,6.098566152272518848e-06,6.251030306079331819e-06,6.403494459886144790e-06,6.555958613692957761e-06,6.708422767499770732e-06,6.860886921306583703e-06,7.013351075113396675e-06,7.165815228920209646e-06,7.318279382727022617e-06,7.470743536533835588e-06,7.623207690340648559e-06,7.775671844147461531e-06,7.928135997954274502e-06,8.080600151761087473e-06,8.233064305567900444e-06,8.385528459374713415e-06,8.537992613181526387e-06,8.690456766988339358e-06,8.842920920795152329e-06,8.995385074601965300e-06,9.147849228408778271e-06,9.300313382215591242e-06,9.452777536022404214e-06,9.605241689829217185e-06 +0.000000000000000000e+00,1.508521715939263915e-07,3.017043431878527830e-07,4.525565147817791480e-07,6.034086863757054601e-07,7.542608579696317722e-07,9.051130295635580843e-07,1.055965201157484396e-06,1.206817372751410708e-06,1.357669544345337021e-06,1.508521715939263333e-06,1.659373887533189645e-06,1.810226059127115957e-06,1.961078230721042481e-06,2.111930402314969216e-06,2.262782573908895952e-06,2.413634745502822688e-06,2.564486917096749423e-06,2.715339088690676159e-06,2.866191260284602894e-06,3.017043431878529630e-06,3.167895603472456366e-06,3.318747775066383101e-06,3.469599946660309837e-06,3.620452118254236572e-06,3.771304289848163308e-06,3.922156461442090044e-06,4.073008633036016779e-06,4.223860804629943515e-06,4.374712976223870250e-06,4.525565147817796986e-06,4.676417319411723722e-06,4.827269491005650457e-06,4.978121662599577193e-06,5.128973834193503928e-06,5.279826005787430664e-06,5.430678177381357400e-06,5.581530348975284135e-06,5.732382520569210871e-06,5.883234692163137607e-06,6.034086863757064342e-06,6.184939035350991078e-06,6.335791206944917813e-06,6.486643378538844549e-06,6.637495550132771285e-06,6.788347721726698020e-06,6.939199893320624756e-06,7.090052064914551491e-06,7.240904236508478227e-06,7.391756408102404963e-06,7.542608579696331698e-06,7.693460751290259281e-06,7.844312922884186863e-06,7.995165094478114446e-06,8.146017266072042029e-06,8.296869437665969611e-06,8.447721609259897194e-06,8.598573780853824777e-06,8.749425952447752359e-06,8.900278124041679942e-06,9.051130295635607525e-06,9.201982467229535107e-06,9.352834638823462690e-06,9.503686810417390273e-06 +0.000000000000000000e+00,1.523965642343391472e-07,3.047931284686782945e-07,4.571896927030174682e-07,6.095862569373566948e-07,7.619828211716959215e-07,9.143793854060351481e-07,1.066775949640374269e-06,1.219172513874713390e-06,1.371569078109052510e-06,1.523965642343391631e-06,1.676362206577730752e-06,1.828758770812069873e-06,1.981155335046408993e-06,2.133551899280748114e-06,2.285948463515087235e-06,2.438345027749426356e-06,2.590741591983765477e-06,2.743138156218104597e-06,2.895534720452443718e-06,3.047931284686782839e-06,3.200327848921121960e-06,3.352724413155461080e-06,3.505120977389800201e-06,3.657517541624139322e-06,3.809914105858478443e-06,3.962310670092817987e-06,4.114707234327157531e-06,4.267103798561497076e-06,4.419500362795836620e-06,4.571896927030176164e-06,4.724293491264515708e-06,4.876690055498855253e-06,5.029086619733194797e-06,5.181483183967534341e-06,5.333879748201873886e-06,5.486276312436213430e-06,5.638672876670552974e-06,5.791069440904892518e-06,5.943466005139232063e-06,6.095862569373571607e-06,6.248259133607911151e-06,6.400655697842250695e-06,6.553052262076590240e-06,6.705448826310929784e-06,6.857845390545269328e-06,7.010241954779608873e-06,7.162638519013948417e-06,7.315035083248287961e-06,7.467431647482627505e-06,7.619828211716967050e-06,7.772224775951306594e-06,7.924621340185646138e-06,8.077017904419985683e-06,8.229414468654325227e-06,8.381811032888664771e-06,8.534207597123004315e-06,8.686604161357343860e-06,8.839000725591683404e-06,8.991397289826022948e-06,9.143793854060362493e-06,9.296190418294702037e-06,9.448586982529041581e-06,9.600983546763381125e-06 +0.000000000000000000e+00,1.524641538068145329e-07,3.049283076136290658e-07,4.573924614204435722e-07,6.098566152272580257e-07,7.623207690340724792e-07,9.147849228408869327e-07,1.067249076647701386e-06,1.219713230454515840e-06,1.372177384261330293e-06,1.524641538068144747e-06,1.677105691874959200e-06,1.829569845681773654e-06,1.982033999488588107e-06,2.134498153295402772e-06,2.286962307102217438e-06,2.439426460909032103e-06,2.591890614715846768e-06,2.744354768522661433e-06,2.896818922329476099e-06,3.049283076136290764e-06,3.201747229943105429e-06,3.354211383749920094e-06,3.506675537556734760e-06,3.659139691363549425e-06,3.811603845170364090e-06,3.964067998977178756e-06,4.116532152783993421e-06,4.268996306590808086e-06,4.421460460397622751e-06,4.573924614204437417e-06,4.726388768011252082e-06,4.878852921818066747e-06,5.031317075624881412e-06,5.183781229431696078e-06,5.336245383238510743e-06,5.488709537045325408e-06,5.641173690852140073e-06,5.793637844658954739e-06,5.946101998465769404e-06,6.098566152272584069e-06,6.251030306079398734e-06,6.403494459886213400e-06,6.555958613693028065e-06,6.708422767499842730e-06,6.860886921306657395e-06,7.013351075113472061e-06,7.165815228920286726e-06,7.318279382727101391e-06,7.470743536533916056e-06,7.623207690340730722e-06,7.775671844147544540e-06,7.928135997954359205e-06,8.080600151761173870e-06,8.233064305567988536e-06,8.385528459374803201e-06,8.537992613181617866e-06,8.690456766988432531e-06,8.842920920795247197e-06,8.995385074602061862e-06,9.147849228408876527e-06,9.300313382215691192e-06,9.452777536022505858e-06,9.605241689829320523e-06 +0.000000000000000000e+00,1.508521715939281650e-07,3.017043431878563300e-07,4.525565147817844949e-07,6.034086863757126599e-07,7.542608579696408778e-07,9.051130295635690957e-07,1.055965201157497314e-06,1.206817372751425532e-06,1.357669544345353749e-06,1.508521715939281967e-06,1.659373887533210185e-06,1.810226059127138403e-06,1.961078230721066621e-06,2.111930402314994627e-06,2.262782573908922633e-06,2.413634745502850640e-06,2.564486917096778646e-06,2.715339088690706652e-06,2.866191260284634658e-06,3.017043431878562664e-06,3.167895603472490670e-06,3.318747775066418677e-06,3.469599946660346683e-06,3.620452118254274689e-06,3.771304289848202695e-06,3.922156461442130701e-06,4.073008633036058284e-06,4.223860804629985866e-06,4.374712976223913449e-06,4.525565147817841032e-06,4.676417319411768614e-06,4.827269491005696197e-06,4.978121662599623780e-06,5.128973834193551362e-06,5.279826005787478945e-06,5.430678177381406528e-06,5.581530348975334110e-06,5.732382520569261693e-06,5.883234692163189276e-06,6.034086863757116858e-06,6.184939035351044441e-06,6.335791206944972023e-06,6.486643378538899606e-06,6.637495550132827189e-06,6.788347721726754771e-06,6.939199893320682354e-06,7.090052064914609937e-06,7.240904236508537519e-06,7.391756408102465102e-06,7.542608579696392685e-06,7.693460751290320267e-06,7.844312922884247850e-06,7.995165094478175432e-06,8.146017266072103015e-06,8.296869437666030598e-06,8.447721609259958180e-06,8.598573780853885763e-06,8.749425952447813346e-06,8.900278124041740928e-06,9.051130295635668511e-06,9.201982467229596094e-06,9.352834638823523676e-06,9.503686810417451259e-06 +0.000000000000000000e+00,1.523965642343414236e-07,3.047931284686828473e-07,4.571896927030242444e-07,6.095862569373655887e-07,7.619828211717069329e-07,9.143793854060482771e-07,1.066775949640389515e-06,1.219172513874730754e-06,1.371569078109071992e-06,1.523965642343413231e-06,1.676362206577754469e-06,1.828758770812095707e-06,1.981155335046436946e-06,2.133551899280778184e-06,2.285948463515119422e-06,2.438345027749460661e-06,2.590741591983801899e-06,2.743138156218143137e-06,2.895534720452484376e-06,3.047931284686825614e-06,3.200327848921166852e-06,3.352724413155508091e-06,3.505120977389849329e-06,3.657517541624190567e-06,3.809914105858531806e-06,3.962310670092873044e-06,4.114707234327214282e-06,4.267103798561555521e-06,4.419500362795896759e-06,4.571896927030237998e-06,4.724293491264579236e-06,4.876690055498920474e-06,5.029086619733261713e-06,5.181483183967602951e-06,5.333879748201944189e-06,5.486276312436285428e-06,5.638672876670626666e-06,5.791069440904967904e-06,5.943466005139309143e-06,6.095862569373650381e-06,6.248259133607991619e-06,6.400655697842332858e-06,6.553052262076674096e-06,6.705448826311015334e-06,6.857845390545356573e-06,7.010241954779697811e-06,7.162638519014039049e-06,7.315035083248380288e-06,7.467431647482721526e-06,7.619828211717062764e-06,7.772224775951404850e-06,7.924621340185747782e-06,8.077017904420090715e-06,8.229414468654433647e-06,8.381811032888776580e-06,8.534207597123119512e-06,8.686604161357462444e-06,8.839000725591805377e-06,8.991397289826148309e-06,9.143793854060491242e-06,9.296190418294834174e-06,9.448586982529177106e-06,9.600983546763520039e-06 +0.000000000000000000e+00,1.556602924899626144e-07,3.113205849799252288e-07,4.669808774698878432e-07,6.226411699598504576e-07,7.783014624498130720e-07,9.339617549397756864e-07,1.089622047429738301e-06,1.245282339919700915e-06,1.400942632409663530e-06,1.556602924899626144e-06,1.712263217389588758e-06,1.867923509879551373e-06,2.023583802369513775e-06,2.179244094859476178e-06,2.334904387349438581e-06,2.490564679839400983e-06,2.646224972329363386e-06,2.801885264819325789e-06,2.957545557309288191e-06,3.113205849799250594e-06,3.268866142289212997e-06,3.424526434779175399e-06,3.580186727269137802e-06,3.735847019759100204e-06,3.891507312249062607e-06,4.047167604739025010e-06,4.202827897228987412e-06,4.358488189718949815e-06,4.514148482208912218e-06,4.669808774698874620e-06,4.825469067188837023e-06,4.981129359678799426e-06,5.136789652168761828e-06,5.292449944658724231e-06,5.448110237148686634e-06,5.603770529638649036e-06,5.759430822128611439e-06,5.915091114618573841e-06,6.070751407108536244e-06,6.226411699598498647e-06,6.382071992088461049e-06,6.537732284578423452e-06,6.693392577068385855e-06,6.849052869558348257e-06,7.004713162048310660e-06,7.160373454538273063e-06,7.316033747028235465e-06,7.471694039518197868e-06,7.627354332008160271e-06,7.783014624498121826e-06,7.938674916988083382e-06,8.094335209478044937e-06,8.249995501968006493e-06,8.405655794457968049e-06,8.561316086947929604e-06,8.716976379437891160e-06,8.872636671927852715e-06,9.028296964417814271e-06,9.183957256907775827e-06,9.339617549397737382e-06,9.495277841887698938e-06,9.650938134377660493e-06,9.806598426867622049e-06 +0.000000000000000000e+00,1.540611680294756013e-07,3.081223360589512026e-07,4.621835040884268304e-07,6.162446721179025111e-07,7.703058401473781918e-07,9.243670081768538725e-07,1.078428176206329447e-06,1.232489344235805022e-06,1.386550512265280597e-06,1.540611680294756172e-06,1.694672848324231747e-06,1.848734016353707321e-06,2.002795184383182896e-06,2.156856352412658471e-06,2.310917520442134046e-06,2.464978688471609621e-06,2.619039856501085196e-06,2.773101024530560770e-06,2.927162192560036345e-06,3.081223360589511920e-06,3.235284528618987495e-06,3.389345696648463070e-06,3.543406864677938645e-06,3.697468032707414219e-06,3.851529200736889371e-06,4.005590368766364946e-06,4.159651536795840520e-06,4.313712704825316095e-06,4.467773872854791670e-06,4.621835040884267245e-06,4.775896208913742820e-06,4.929957376943218395e-06,5.084018544972693969e-06,5.238079713002169544e-06,5.392140881031645119e-06,5.546202049061120694e-06,5.700263217090596269e-06,5.854324385120071843e-06,6.008385553149547418e-06,6.162446721179022993e-06,6.316507889208498568e-06,6.470569057237974143e-06,6.624630225267449718e-06,6.778691393296925292e-06,6.932752561326400867e-06,7.086813729355876442e-06,7.240874897385352017e-06,7.394936065414827592e-06,7.548997233444303167e-06,7.703058401473778741e-06,7.857119569503254316e-06,8.011180737532729891e-06,8.165241905562205466e-06,8.319303073591681041e-06,8.473364241621156616e-06,8.627425409650632190e-06,8.781486577680107765e-06,8.935547745709583340e-06,9.089608913739058915e-06,9.243670081768534490e-06,9.397731249798010065e-06,9.551792417827485639e-06,9.705853585856961214e-06 +0.000000000000000000e+00,1.556322802696193587e-07,3.112645605392387174e-07,4.668968408088580761e-07,6.225291210784774348e-07,7.781614013480967405e-07,9.337936816177160462e-07,1.089425961887335352e-06,1.245058242156954658e-06,1.400690522426573963e-06,1.556322802696193269e-06,1.711955082965812575e-06,1.867587363235431881e-06,2.023219643505051186e-06,2.178851923774670704e-06,2.334484204044290222e-06,2.490116484313909739e-06,2.645748764583529257e-06,2.801381044853148774e-06,2.957013325122768292e-06,3.112645605392387809e-06,3.268277885662007327e-06,3.423910165931626844e-06,3.579542446201246362e-06,3.735174726470865879e-06,3.890807006740485820e-06,4.046439287010105761e-06,4.202071567279725702e-06,4.357703847549345643e-06,4.513336127818965584e-06,4.668968408088585525e-06,4.824600688358205466e-06,4.980232968627825407e-06,5.135865248897445348e-06,5.291497529167065289e-06,5.447129809436685230e-06,5.602762089706305171e-06,5.758394369975925112e-06,5.914026650245545053e-06,6.069658930515164994e-06,6.225291210784784935e-06,6.380923491054404876e-06,6.536555771324024817e-06,6.692188051593644759e-06,6.847820331863264700e-06,7.003452612132884641e-06,7.159084892402504582e-06,7.314717172672124523e-06,7.470349452941744464e-06,7.625981733211364405e-06,7.781614013480985193e-06,7.937246293750605981e-06,8.092878574020226769e-06,8.248510854289847557e-06,8.404143134559468345e-06,8.559775414829089133e-06,8.715407695098709921e-06,8.871039975368330709e-06,9.026672255637951497e-06,9.182304535907572285e-06,9.337936816177193073e-06,9.493569096446813861e-06,9.649201376716434649e-06,9.804833656986055437e-06 +0.000000000000000000e+00,1.556602924899631173e-07,3.113205849799262347e-07,4.669808774698893255e-07,6.226411699598523634e-07,7.783014624498154013e-07,9.339617549397784393e-07,1.089622047429741477e-06,1.245282339919704515e-06,1.400942632409667553e-06,1.556602924899630591e-06,1.712263217389593629e-06,1.867923509879556667e-06,2.023583802369519705e-06,2.179244094859482954e-06,2.334904387349446204e-06,2.490564679839409454e-06,2.646224972329372703e-06,2.801885264819335953e-06,2.957545557309299203e-06,3.113205849799262452e-06,3.268866142289225702e-06,3.424526434779188952e-06,3.580186727269152201e-06,3.735847019759115451e-06,3.891507312249078701e-06,4.047167604739041950e-06,4.202827897229005200e-06,4.358488189718968450e-06,4.514148482208931699e-06,4.669808774698894949e-06,4.825469067188858199e-06,4.981129359678821448e-06,5.136789652168784698e-06,5.292449944658747948e-06,5.448110237148711198e-06,5.603770529638674447e-06,5.759430822128637697e-06,5.915091114618600947e-06,6.070751407108564196e-06,6.226411699598527446e-06,6.382071992088490696e-06,6.537732284578453945e-06,6.693392577068417195e-06,6.849052869558380445e-06,7.004713162048343694e-06,7.160373454538306944e-06,7.316033747028270194e-06,7.471694039518233443e-06,7.627354332008196693e-06,7.783014624498159096e-06,7.938674916988122345e-06,8.094335209478085595e-06,8.249995501968048845e-06,8.405655794458012094e-06,8.561316086947975344e-06,8.716976379437938594e-06,8.872636671927901843e-06,9.028296964417865093e-06,9.183957256907828343e-06,9.339617549397791592e-06,9.495277841887754842e-06,9.650938134377718092e-06,9.806598426867681341e-06 +0.000000000000000000e+00,1.540611680294766071e-07,3.081223360589532143e-07,4.621835040884297950e-07,6.162446721179063227e-07,7.703058401473828505e-07,9.243670081768593782e-07,1.078428176206335800e-06,1.232489344235812222e-06,1.386550512265288644e-06,1.540611680294765066e-06,1.694672848324241488e-06,1.848734016353717909e-06,2.002795184383194331e-06,2.156856352412670753e-06,2.310917520442147175e-06,2.464978688471623597e-06,2.619039856501100019e-06,2.773101024530576441e-06,2.927162192560052862e-06,3.081223360589529284e-06,3.235284528619005706e-06,3.389345696648482128e-06,3.543406864677958550e-06,3.697468032707434972e-06,3.851529200736911394e-06,4.005590368766387815e-06,4.159651536795864237e-06,4.313712704825340659e-06,4.467773872854817081e-06,4.621835040884293503e-06,4.775896208913769925e-06,4.929957376943246347e-06,5.084018544972722768e-06,5.238079713002199190e-06,5.392140881031675612e-06,5.546202049061152034e-06,5.700263217090628456e-06,5.854324385120104878e-06,6.008385553149581300e-06,6.162446721179057721e-06,6.316507889208534143e-06,6.470569057238010565e-06,6.624630225267486987e-06,6.778691393296963409e-06,6.932752561326439831e-06,7.086813729355916253e-06,7.240874897385392675e-06,7.394936065414869096e-06,7.548997233444345518e-06,7.703058401473822787e-06,7.857119569503300056e-06,8.011180737532777325e-06,8.165241905562254594e-06,8.319303073591731863e-06,8.473364241621209132e-06,8.627425409650686400e-06,8.781486577680163669e-06,8.935547745709640938e-06,9.089608913739118207e-06,9.243670081768595476e-06,9.397731249798072745e-06,9.551792417827550014e-06,9.705853585857027283e-06 +0.000000000000000000e+00,1.556322802696207881e-07,3.112645605392415761e-07,4.668968408088623642e-07,6.225291210784831522e-07,7.781614013481039403e-07,9.337936816177247283e-07,1.089425961887345516e-06,1.245058242156966304e-06,1.400690522426587093e-06,1.556322802696207881e-06,1.711955082965828669e-06,1.867587363235449457e-06,2.023219643505070245e-06,2.178851923774691033e-06,2.334484204044311821e-06,2.490116484313932609e-06,2.645748764583553397e-06,2.801381044853174185e-06,2.957013325122794973e-06,3.112645605392415761e-06,3.268277885662036549e-06,3.423910165931657337e-06,3.579542446201278125e-06,3.735174726470898913e-06,3.890807006740519701e-06,4.046439287010140489e-06,4.202071567279761278e-06,4.357703847549382066e-06,4.513336127819002854e-06,4.668968408088623642e-06,4.824600688358244430e-06,4.980232968627865218e-06,5.135865248897486006e-06,5.291497529167106794e-06,5.447129809436727582e-06,5.602762089706348370e-06,5.758394369975969158e-06,5.914026650245589946e-06,6.069658930515210734e-06,6.225291210784831522e-06,6.380923491054452310e-06,6.536555771324073098e-06,6.692188051593693886e-06,6.847820331863314674e-06,7.003452612132935463e-06,7.159084892402556251e-06,7.314717172672177039e-06,7.470349452941797827e-06,7.625981733211418615e-06,7.781614013481039403e-06,7.937246293750660191e-06,8.092878574020280979e-06,8.248510854289901767e-06,8.404143134559522555e-06,8.559775414829143343e-06,8.715407695098764131e-06,8.871039975368384919e-06,9.026672255638005707e-06,9.182304535907626495e-06,9.337936816177247283e-06,9.493569096446868071e-06,9.649201376716488859e-06,9.804833656986109648e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.572035804223443334e-07,3.144071608446886667e-07,4.716107412670330265e-07,6.288143216893774393e-07,7.860179021117218521e-07,9.432214825340662648e-07,1.100425062956410678e-06,1.257628643378755090e-06,1.414832223801099503e-06,1.572035804223443916e-06,1.729239384645788329e-06,1.886442965068132741e-06,2.043646545490476942e-06,2.200850125912820932e-06,2.358053706335164921e-06,2.515257286757508910e-06,2.672460867179852899e-06,2.829664447602196889e-06,2.986868028024540878e-06,3.144071608446884867e-06,3.301275188869228856e-06,3.458478769291572846e-06,3.615682349713916835e-06,3.772885930136260824e-06,3.930089510558604813e-06,4.087293090980948803e-06,4.244496671403292792e-06,4.401700251825636781e-06,4.558903832247980770e-06,4.716107412670324760e-06,4.873310993092668749e-06,5.030514573515012738e-06,5.187718153937356727e-06,5.344921734359700717e-06,5.502125314782044706e-06,5.659328895204388695e-06,5.816532475626732684e-06,5.973736056049076674e-06,6.130939636471420663e-06,6.288143216893764652e-06,6.445346797316108641e-06,6.602550377738452631e-06,6.759753958160796620e-06,6.916957538583140609e-06,7.074161119005484598e-06,7.231364699427828588e-06,7.388568279850172577e-06,7.545771860272516566e-06,7.702975440694859708e-06,7.860179021117202851e-06,8.017382601539545993e-06,8.174586181961889135e-06,8.331789762384232277e-06,8.488993342806575420e-06,8.646196923228918562e-06,8.803400503651261704e-06,8.960604084073604846e-06,9.117807664495947988e-06,9.275011244918291131e-06,9.432214825340634273e-06,9.589418405762977415e-06,9.746621986185320557e-06,9.903825566607663699e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.572035804223446775e-07,3.144071608446893549e-07,4.716107412670340324e-07,6.288143216893787099e-07,7.860179021117233344e-07,9.432214825340679589e-07,1.100425062956412583e-06,1.257628643378757208e-06,1.414832223801101832e-06,1.572035804223446457e-06,1.729239384645791082e-06,1.886442965068135706e-06,2.043646545490480331e-06,2.200850125912825167e-06,2.358053706335170003e-06,2.515257286757514839e-06,2.672460867179859676e-06,2.829664447602204512e-06,2.986868028024549348e-06,3.144071608446894185e-06,3.301275188869239021e-06,3.458478769291583857e-06,3.615682349713928693e-06,3.772885930136273530e-06,3.930089510558618366e-06,4.087293090980963202e-06,4.244496671403308039e-06,4.401700251825652875e-06,4.558903832247997711e-06,4.716107412670342547e-06,4.873310993092687384e-06,5.030514573515032220e-06,5.187718153937377056e-06,5.344921734359721893e-06,5.502125314782066729e-06,5.659328895204411565e-06,5.816532475626756401e-06,5.973736056049101238e-06,6.130939636471446074e-06,6.288143216893790910e-06,6.445346797316135747e-06,6.602550377738480583e-06,6.759753958160825419e-06,6.916957538583170255e-06,7.074161119005515092e-06,7.231364699427859928e-06,7.388568279850204764e-06,7.545771860272549600e-06,7.702975440694893590e-06,7.860179021117238426e-06,8.017382601539583262e-06,8.174586181961928099e-06,8.331789762384272935e-06,8.488993342806617771e-06,8.646196923228962607e-06,8.803400503651307444e-06,8.960604084073652280e-06,9.117807664495997116e-06,9.275011244918341953e-06,9.432214825340686789e-06,9.589418405763031625e-06,9.746621986185376461e-06,9.903825566607721298e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.453404065259230681e-07,2.906808130518461363e-07,4.360212195777692044e-07,5.813616261036922726e-07,7.267020326296153937e-07,8.720424391555385147e-07,1.017382845681461636e-06,1.162723252207384757e-06,1.308063658733307878e-06,1.453404065259230999e-06,1.598744471785154120e-06,1.744084878311077241e-06,1.889425284837000362e-06,2.034765691362923695e-06,2.180106097888846816e-06,2.325446504414769937e-06,2.470786910940693058e-06,2.616127317466616179e-06,2.761467723992539301e-06,2.906808130518462422e-06,3.052148537044385543e-06,3.197488943570308664e-06,3.342829350096231785e-06,3.488169756622154906e-06,3.633510163148078027e-06,3.778850569674001148e-06,3.924190976199924269e-06,4.069531382725847390e-06,4.214871789251770511e-06,4.360212195777693632e-06,4.505552602303616754e-06,4.650893008829539875e-06,4.796233415355462996e-06,4.941573821881386117e-06,5.086914228407309238e-06,5.232254634933232359e-06,5.377595041459155480e-06,5.522935447985078601e-06,5.668275854511001722e-06,5.813616261036924843e-06,5.958956667562847964e-06,6.104297074088771085e-06,6.249637480614694207e-06,6.394977887140617328e-06,6.540318293666540449e-06,6.685658700192463570e-06,6.830999106718386691e-06,6.976339513244309812e-06,7.121679919770232933e-06,7.267020326296156054e-06,7.412360732822079175e-06,7.557701139348002296e-06,7.703041545873926264e-06,7.848381952399850233e-06,7.993722358925774201e-06,8.139062765451698169e-06,8.284403171977622137e-06,8.429743578503546105e-06,8.575083985029470073e-06,8.720424391555394041e-06,8.865764798081318009e-06,9.011105204607241977e-06,9.156445611133165946e-06 +0.000000000000000000e+00,1.435974631467253474e-07,2.871949262934506947e-07,4.307923894401760156e-07,5.743898525869012836e-07,7.179873157336265516e-07,8.615847788803518195e-07,1.005182242027076982e-06,1.148779705173802144e-06,1.292377168320527306e-06,1.435974631467252468e-06,1.579572094613977630e-06,1.723169557760702792e-06,1.866767020907427954e-06,2.010364484054153116e-06,2.153961947200878278e-06,2.297559410347603440e-06,2.441156873494328602e-06,2.584754336641053764e-06,2.728351799787778927e-06,2.871949262934504089e-06,3.015546726081229251e-06,3.159144189227954413e-06,3.302741652374679575e-06,3.446339115521404737e-06,3.589936578668129899e-06,3.733534041814855061e-06,3.877131504961580223e-06,4.020728968108305385e-06,4.164326431255030547e-06,4.307923894401755709e-06,4.451521357548480872e-06,4.595118820695206034e-06,4.738716283841931196e-06,4.882313746988656358e-06,5.025911210135381520e-06,5.169508673282106682e-06,5.313106136428831844e-06,5.456703599575557006e-06,5.600301062722282168e-06,5.743898525869007330e-06,5.887495989015732492e-06,6.031093452162457654e-06,6.174690915309182816e-06,6.318288378455907979e-06,6.461885841602633141e-06,6.605483304749358303e-06,6.749080767896083465e-06,6.892678231042808627e-06,7.036275694189533789e-06,7.179873157336258951e-06,7.323470620482984113e-06,7.467068083629709275e-06,7.610665546776434437e-06,7.754263009923160446e-06,7.897860473069886456e-06,8.041457936216612465e-06,8.185055399363338474e-06,8.328652862510064483e-06,8.472250325656790492e-06,8.615847788803516501e-06,8.759445251950242510e-06,8.903042715096968519e-06,9.046640178243694528e-06 +0.000000000000000000e+00,1.458279911211153032e-07,2.916559822422306065e-07,4.374839733633459362e-07,5.833119644844613189e-07,7.291399556055767015e-07,8.749679467266920842e-07,1.020795937847807573e-06,1.166623928968923061e-06,1.312451920090038550e-06,1.458279911211154038e-06,1.604107902332269527e-06,1.749935893453385015e-06,1.895763884574500504e-06,2.041591875695615992e-06,2.187419866816731481e-06,2.333247857937846969e-06,2.479075849058962458e-06,2.624903840180077947e-06,2.770731831301193435e-06,2.916559822422308924e-06,3.062387813543424412e-06,3.208215804664539901e-06,3.354043795785655389e-06,3.499871786906770878e-06,3.645699778027886366e-06,3.791527769149001855e-06,3.937355760270117343e-06,4.083183751391232832e-06,4.229011742512348320e-06,4.374839733633463809e-06,4.520667724754579297e-06,4.666495715875694786e-06,4.812323706996810275e-06,4.958151698117925763e-06,5.103979689239041252e-06,5.249807680360156740e-06,5.395635671481272229e-06,5.541463662602387717e-06,5.687291653723503206e-06,5.833119644844618694e-06,5.978947635965734183e-06,6.124775627086849671e-06,6.270603618207965160e-06,6.416431609329080648e-06,6.562259600450196137e-06,6.708087591571311625e-06,6.853915582692427114e-06,6.999743573813542603e-06,7.145571564934658091e-06,7.291399556055773580e-06,7.437227547176889068e-06,7.583055538298004557e-06,7.728883529419119198e-06,7.874711520540232993e-06,8.020539511661346787e-06,8.166367502782460582e-06,8.312195493903574376e-06,8.458023485024688171e-06,8.603851476145801965e-06,8.749679467266915759e-06,8.895507458388029554e-06,9.041335449509143348e-06,9.187163440630257143e-06 +0.000000000000000000e+00,1.453404065259197859e-07,2.906808130518395718e-07,4.360212195777593577e-07,5.813616261036791436e-07,7.267020326295988765e-07,8.720424391555186095e-07,1.017382845681438342e-06,1.162723252207358075e-06,1.308063658733277808e-06,1.453404065259197541e-06,1.598744471785117274e-06,1.744084878311037007e-06,1.889425284836956740e-06,2.034765691362876261e-06,2.180106097888795994e-06,2.325446504414715727e-06,2.470786910940635460e-06,2.616127317466555193e-06,2.761467723992474926e-06,2.906808130518394659e-06,3.052148537044314392e-06,3.197488943570234125e-06,3.342829350096153858e-06,3.488169756622073591e-06,3.633510163147993324e-06,3.778850569673913057e-06,3.924190976199832790e-06,4.069531382725752523e-06,4.214871789251672256e-06,4.360212195777591989e-06,4.505552602303511721e-06,4.650893008829431454e-06,4.796233415355351187e-06,4.941573821881270920e-06,5.086914228407190653e-06,5.232254634933110386e-06,5.377595041459030119e-06,5.522935447984949852e-06,5.668275854510869585e-06,5.813616261036789318e-06,5.958956667562709051e-06,6.104297074088628784e-06,6.249637480614548517e-06,6.394977887140468250e-06,6.540318293666387983e-06,6.685658700192307716e-06,6.830999106718227449e-06,6.976339513244147182e-06,7.121679919770066915e-06,7.267020326295986648e-06,7.412360732821906380e-06,7.557701139347826113e-06,7.703041545873746693e-06,7.848381952399667273e-06,7.993722358925587853e-06,8.139062765451508433e-06,8.284403171977429013e-06,8.429743578503349593e-06,8.575083985029270173e-06,8.720424391555190753e-06,8.865764798081111333e-06,9.011105204607031913e-06,9.156445611132952493e-06 +0.000000000000000000e+00,1.435974631467206357e-07,2.871949262934412715e-07,4.307923894401619337e-07,5.743898525868826489e-07,7.179873157336033640e-07,8.615847788803240792e-07,1.005182242027044794e-06,1.148779705173765510e-06,1.292377168320486225e-06,1.435974631467206940e-06,1.579572094613927655e-06,1.723169557760648370e-06,1.866767020907369085e-06,2.010364484054089589e-06,2.153961947200810092e-06,2.297559410347530595e-06,2.441156873494251099e-06,2.584754336640971602e-06,2.728351799787692106e-06,2.871949262934412609e-06,3.015546726081133112e-06,3.159144189227853616e-06,3.302741652374574119e-06,3.446339115521294623e-06,3.589936578668015126e-06,3.733534041814735629e-06,3.877131504961456556e-06,4.020728968108177483e-06,4.164326431254898410e-06,4.307923894401619337e-06,4.451521357548340264e-06,4.595118820695061191e-06,4.738716283841782118e-06,4.882313746988503045e-06,5.025911210135223972e-06,5.169508673281944899e-06,5.313106136428665826e-06,5.456703599575386752e-06,5.600301062722107679e-06,5.743898525868828606e-06,5.887495989015549533e-06,6.031093452162270460e-06,6.174690915308991387e-06,6.318288378455712314e-06,6.461885841602433241e-06,6.605483304749154168e-06,6.749080767895875095e-06,6.892678231042596022e-06,7.036275694189316949e-06,7.179873157336037875e-06,7.323470620482758802e-06,7.467068083629479729e-06,7.610665546776200656e-06,7.754263009922921583e-06,7.897860473069642510e-06,8.041457936216363437e-06,8.185055399363084364e-06,8.328652862509805291e-06,8.472250325656526218e-06,8.615847788803247145e-06,8.759445251949968072e-06,8.903042715096688998e-06,9.046640178243409925e-06 +0.000000000000000000e+00,1.458279911211125504e-07,2.916559822422251008e-07,4.374839733633376776e-07,5.833119644844503074e-07,7.291399556055629372e-07,8.749679467266755670e-07,1.020795937847788091e-06,1.166623928968900615e-06,1.312451920090013139e-06,1.458279911211125663e-06,1.604107902332238187e-06,1.749935893453350711e-06,1.895763884574463234e-06,2.041591875695575758e-06,2.187419866816688282e-06,2.333247857937800806e-06,2.479075849058913330e-06,2.624903840180025854e-06,2.770731831301138378e-06,2.916559822422250902e-06,3.062387813543363426e-06,3.208215804664475950e-06,3.354043795785588474e-06,3.499871786906700998e-06,3.645699778027813521e-06,3.791527769148926045e-06,3.937355760270038569e-06,4.083183751391150670e-06,4.229011742512262770e-06,4.374839733633374870e-06,4.520667724754486971e-06,4.666495715875599071e-06,4.812323706996711172e-06,4.958151698117823272e-06,5.103979689238935372e-06,5.249807680360047473e-06,5.395635671481159573e-06,5.541463662602271674e-06,5.687291653723383774e-06,5.833119644844495875e-06,5.978947635965607975e-06,6.124775627086720075e-06,6.270603618207832176e-06,6.416431609328944276e-06,6.562259600450056377e-06,6.708087591571168477e-06,6.853915582692280577e-06,6.999743573813392678e-06,7.145571564934504778e-06,7.291399556055616879e-06,7.437227547176728979e-06,7.583055538297841079e-06,7.728883529418953180e-06,7.874711520540065280e-06,8.020539511661177381e-06,8.166367502782289481e-06,8.312195493903401581e-06,8.458023485024513682e-06,8.603851476145625782e-06,8.749679467266737883e-06,8.895507458387849983e-06,9.041335449508962083e-06,9.187163440630074184e-06 +0.000000000000000000e+00,1.487911351249780293e-07,2.975822702499560586e-07,4.463734053749341143e-07,5.951645404999122230e-07,7.439556756248903317e-07,8.927468107498684404e-07,1.041537945874846549e-06,1.190329080999824658e-06,1.339120216124802767e-06,1.487911351249780875e-06,1.636702486374758984e-06,1.785493621499737093e-06,1.934284756624715201e-06,2.083075891749693098e-06,2.231867026874670995e-06,2.380658161999648892e-06,2.529449297124626789e-06,2.678240432249604686e-06,2.827031567374582583e-06,2.975822702499560480e-06,3.124613837624538377e-06,3.273404972749516274e-06,3.422196107874494171e-06,3.570987242999472068e-06,3.719778378124449965e-06,3.868569513249427862e-06,4.017360648374405758e-06,4.166151783499383655e-06,4.314942918624361552e-06,4.463734053749339449e-06,4.612525188874317346e-06,4.761316323999295243e-06,4.910107459124273140e-06,5.058898594249251037e-06,5.207689729374228934e-06,5.356480864499206831e-06,5.505271999624184728e-06,5.654063134749162625e-06,5.802854269874140522e-06,5.951645404999118419e-06,6.100436540124096316e-06,6.249227675249074213e-06,6.398018810374052109e-06,6.546809945499030006e-06,6.695601080624007903e-06,6.844392215748985800e-06,6.993183350873963697e-06,7.141974485998941594e-06,7.290765621123919491e-06,7.439556756248897388e-06,7.588347891373875285e-06,7.737139026498854029e-06,7.885930161623832773e-06,8.034721296748811517e-06,8.183512431873790261e-06,8.332303566998769005e-06,8.481094702123747749e-06,8.629885837248726493e-06,8.778676972373705237e-06,8.927468107498683981e-06,9.076259242623662725e-06,9.225050377748641469e-06,9.373841512873620213e-06 +0.000000000000000000e+00,1.470711265428424396e-07,2.941422530856848792e-07,4.412133796285272923e-07,5.882845061713696525e-07,7.353556327142120127e-07,8.824267592570543728e-07,1.029497885799896733e-06,1.176569012342739093e-06,1.323640138885581453e-06,1.470711265428423814e-06,1.617782391971266174e-06,1.764853518514108534e-06,1.911924645056950894e-06,2.058995771599793466e-06,2.206066898142636038e-06,2.353138024685478610e-06,2.500209151228321182e-06,2.647280277771163754e-06,2.794351404314006326e-06,2.941422530856848898e-06,3.088493657399691470e-06,3.235564783942534042e-06,3.382635910485376614e-06,3.529707037028219185e-06,3.676778163571061757e-06,3.823849290113904329e-06,3.970920416656746901e-06,4.117991543199589473e-06,4.265062669742432045e-06,4.412133796285274617e-06,4.559204922828117189e-06,4.706276049370959761e-06,4.853347175913802333e-06,5.000418302456644905e-06,5.147489428999487477e-06,5.294560555542330049e-06,5.441631682085172621e-06,5.588702808628015193e-06,5.735773935170857765e-06,5.882845061713700336e-06,6.029916188256542908e-06,6.176987314799385480e-06,6.324058441342228052e-06,6.471129567885070624e-06,6.618200694427913196e-06,6.765271820970755768e-06,6.912342947513598340e-06,7.059414074056440912e-06,7.206485200599283484e-06,7.353556327142126056e-06,7.500627453684968628e-06,7.647698580227810353e-06,7.794769706770651231e-06,7.941840833313492108e-06,8.088911959856332986e-06,8.235983086399173864e-06,8.383054212942014742e-06,8.530125339484855620e-06,8.677196466027696498e-06,8.824267592570537376e-06,8.971338719113378254e-06,9.118409845656219131e-06,9.265480972199060009e-06 +0.000000000000000000e+00,1.491227585432369842e-07,2.982455170864739683e-07,4.473682756297109260e-07,5.964910341729478308e-07,7.456137927161847355e-07,8.947365512594216403e-07,1.043859309802658545e-06,1.192982068345895450e-06,1.342104826889132355e-06,1.491227585432369259e-06,1.640350343975606164e-06,1.789473102518843069e-06,1.938595861062079974e-06,2.087718619605317090e-06,2.236841378148554207e-06,2.385964136691791323e-06,2.535086895235028440e-06,2.684209653778265556e-06,2.833332412321502673e-06,2.982455170864739789e-06,3.131577929407976906e-06,3.280700687951214022e-06,3.429823446494451139e-06,3.578946205037688255e-06,3.728068963580925372e-06,3.877191722124162488e-06,4.026314480667400028e-06,4.175437239210637568e-06,4.324559997753875108e-06,4.473682756297112648e-06,4.622805514840350188e-06,4.771928273383587728e-06,4.921051031926825268e-06,5.070173790470062808e-06,5.219296549013300348e-06,5.368419307556537888e-06,5.517542066099775428e-06,5.666664824643012968e-06,5.815787583186250508e-06,5.964910341729488048e-06,6.114033100272725589e-06,6.263155858815963129e-06,6.412278617359200669e-06,6.561401375902438209e-06,6.710524134445675749e-06,6.859646892988913289e-06,7.008769651532150829e-06,7.157892410075388369e-06,7.307015168618625909e-06,7.456137927161863449e-06,7.605260685705100989e-06,7.754383444248338529e-06,7.903506202791576069e-06,8.052628961334813609e-06,8.201751719878051149e-06,8.350874478421288689e-06,8.499997236964526229e-06,8.649119995507763769e-06,8.798242754051001309e-06,8.947365512594238849e-06,9.096488271137476389e-06,9.245611029680713929e-06,9.394733788223951469e-06 +0.000000000000000000e+00,1.487911351249757264e-07,2.975822702499514528e-07,4.463734053749271793e-07,5.951645404999029057e-07,7.439556756248786850e-07,8.927468107498544644e-07,1.041537945874830244e-06,1.190329080999806023e-06,1.339120216124781802e-06,1.487911351249757582e-06,1.636702486374733361e-06,1.785493621499709141e-06,1.934284756624684708e-06,2.083075891749660064e-06,2.231867026874635420e-06,2.380658161999610776e-06,2.529449297124586131e-06,2.678240432249561487e-06,2.827031567374536843e-06,2.975822702499512199e-06,3.124613837624487555e-06,3.273404972749462911e-06,3.422196107874438267e-06,3.570987242999413622e-06,3.719778378124388978e-06,3.868569513249364334e-06,4.017360648374339690e-06,4.166151783499315046e-06,4.314942918624290402e-06,4.463734053749265757e-06,4.612525188874241113e-06,4.761316323999216469e-06,4.910107459124191825e-06,5.058898594249167181e-06,5.207689729374142537e-06,5.356480864499117892e-06,5.505271999624093248e-06,5.654063134749068604e-06,5.802854269874043960e-06,5.951645404999019316e-06,6.100436540123994672e-06,6.249227675248970028e-06,6.398018810373945383e-06,6.546809945498920739e-06,6.695601080623896095e-06,6.844392215748871451e-06,6.993183350873846807e-06,7.141974485998822163e-06,7.290765621123797518e-06,7.439556756248772874e-06,7.588347891373748230e-06,7.737139026498723586e-06,7.885930161623698942e-06,8.034721296748674298e-06,8.183512431873649653e-06,8.332303566998625009e-06,8.481094702123600365e-06,8.629885837248575721e-06,8.778676972373551077e-06,8.927468107498526433e-06,9.076259242623501788e-06,9.225050377748477144e-06,9.373841512873452500e-06 +0.000000000000000000e+00,1.470711265428397926e-07,2.941422530856795852e-07,4.412133796285193514e-07,5.882845061713590646e-07,7.353556327141987778e-07,8.824267592570384910e-07,1.029497885799878098e-06,1.176569012342717706e-06,1.323640138885557313e-06,1.470711265428396920e-06,1.617782391971236528e-06,1.764853518514076135e-06,1.911924645056915742e-06,2.058995771599755350e-06,2.206066898142594957e-06,2.353138024685434564e-06,2.500209151228274172e-06,2.647280277771113779e-06,2.794351404313953386e-06,2.941422530856792994e-06,3.088493657399632601e-06,3.235564783942472208e-06,3.382635910485311815e-06,3.529707037028151423e-06,3.676778163570991030e-06,3.823849290113830637e-06,3.970920416656669821e-06,4.117991543199509005e-06,4.265062669742348189e-06,4.412133796285187373e-06,4.559204922828026556e-06,4.706276049370865740e-06,4.853347175913704924e-06,5.000418302456544108e-06,5.147489428999383292e-06,5.294560555542222476e-06,5.441631682085061659e-06,5.588702808627900843e-06,5.735773935170740027e-06,5.882845061713579211e-06,6.029916188256418395e-06,6.176987314799257578e-06,6.324058441342096762e-06,6.471129567884935946e-06,6.618200694427775130e-06,6.765271820970614314e-06,6.912342947513453497e-06,7.059414074056292681e-06,7.206485200599131865e-06,7.353556327141971049e-06,7.500627453684810233e-06,7.647698580227649416e-06,7.794769706770488600e-06,7.941840833313327784e-06,8.088911959856166968e-06,8.235983086399006152e-06,8.383054212941845335e-06,8.530125339484684519e-06,8.677196466027523703e-06,8.824267592570362887e-06,8.971338719113202071e-06,9.118409845656041255e-06,9.265480972198880438e-06 +0.000000000000000000e+00,1.491227585432346813e-07,2.982455170864693626e-07,4.473682756297040439e-07,5.964910341729387252e-07,7.456137927161734064e-07,8.947365512594080877e-07,1.043859309802642875e-06,1.192982068345877662e-06,1.342104826889112449e-06,1.491227585432347236e-06,1.640350343975582024e-06,1.789473102518816811e-06,1.938595861062051598e-06,2.087718619605286597e-06,2.236841378148521596e-06,2.385964136691756595e-06,2.535086895234991594e-06,2.684209653778226593e-06,2.833332412321461591e-06,2.982455170864696590e-06,3.131577929407931589e-06,3.280700687951166588e-06,3.429823446494401587e-06,3.578946205037636586e-06,3.728068963580871585e-06,3.877191722124106584e-06,4.026314480667341583e-06,4.175437239210576582e-06,4.324559997753811581e-06,4.473682756297046580e-06,4.622805514840281579e-06,4.771928273383516578e-06,4.921051031926751576e-06,5.070173790469986575e-06,5.219296549013221574e-06,5.368419307556456573e-06,5.517542066099691572e-06,5.666664824642926571e-06,5.815787583186161570e-06,5.964910341729396569e-06,6.114033100272631568e-06,6.263155858815866567e-06,6.412278617359101566e-06,6.561401375902336565e-06,6.710524134445571564e-06,6.859646892988806562e-06,7.008769651532041561e-06,7.157892410075276560e-06,7.307015168618511559e-06,7.456137927161746558e-06,7.605260685704981557e-06,7.754383444248216556e-06,7.903506202791450708e-06,8.052628961334684860e-06,8.201751719877919012e-06,8.350874478421153164e-06,8.499997236964387316e-06,8.649119995507621467e-06,8.798242754050855619e-06,8.947365512594089771e-06,9.096488271137323923e-06,9.245611029680558075e-06,9.394733788223792227e-06 +0.000000000000000000e+00,1.521975337808057944e-07,3.043950675616115887e-07,4.565926013424173566e-07,6.087901351232230715e-07,7.609876689040287865e-07,9.131852026848345014e-07,1.065382736465640322e-06,1.217580270246446143e-06,1.369777804027251964e-06,1.521975337808057785e-06,1.674172871588863606e-06,1.826370405369669426e-06,1.978567939150475247e-06,2.130765472931281068e-06,2.282963006712086889e-06,2.435160540492892710e-06,2.587358074273698530e-06,2.739555608054504351e-06,2.891753141835310172e-06,3.043950675616115993e-06,3.196148209396921814e-06,3.348345743177727635e-06,3.500543276958533455e-06,3.652740810739339276e-06,3.804938344520145097e-06,3.957135878300950494e-06,4.109333412081755892e-06,4.261530945862561289e-06,4.413728479643366686e-06,4.565926013424172084e-06,4.718123547204977481e-06,4.870321080985782878e-06,5.022518614766588276e-06,5.174716148547393673e-06,5.326913682328199070e-06,5.479111216109004467e-06,5.631308749889809865e-06,5.783506283670615262e-06,5.935703817451420659e-06,6.087901351232226057e-06,6.240098885013031454e-06,6.392296418793836851e-06,6.544493952574642249e-06,6.696691486355447646e-06,6.848889020136253043e-06,7.001086553917058441e-06,7.153284087697863838e-06,7.305481621478669235e-06,7.457679155259474632e-06,7.609876689040280030e-06,7.762074222821085427e-06,7.914271756601890824e-06,8.066469290382696222e-06,8.218666824163501619e-06,8.370864357944307016e-06,8.523061891725112414e-06,8.675259425505917811e-06,8.827456959286723208e-06,8.979654493067528606e-06,9.131852026848334003e-06,9.284049560629139400e-06,9.436247094409944797e-06,9.588444628190750195e-06 +0.000000000000000000e+00,1.505000830040342733e-07,3.010001660080685467e-07,4.515002490121028200e-07,6.020003320161370933e-07,7.525004150201713667e-07,9.030004980242056400e-07,1.053500581028239913e-06,1.204000664032274187e-06,1.354500747036308460e-06,1.505000830040342733e-06,1.655500913044377007e-06,1.806000996048411280e-06,1.956501079052445765e-06,2.107001162056480250e-06,2.257501245060514735e-06,2.408001328064549220e-06,2.558501411068583705e-06,2.709001494072618190e-06,2.859501577076652676e-06,3.010001660080687161e-06,3.160501743084721646e-06,3.311001826088756131e-06,3.461501909092790616e-06,3.612001992096825101e-06,3.762502075100859586e-06,3.913002158104894071e-06,4.063502241108928556e-06,4.214002324112963041e-06,4.364502407116997526e-06,4.515002490121032012e-06,4.665502573125066497e-06,4.816002656129100982e-06,4.966502739133135467e-06,5.117002822137169952e-06,5.267502905141204437e-06,5.418002988145238922e-06,5.568503071149273407e-06,5.719003154153307892e-06,5.869503237157342377e-06,6.020003320161376862e-06,6.170503403165411348e-06,6.321003486169445833e-06,6.471503569173480318e-06,6.622003652177514803e-06,6.772503735181549288e-06,6.923003818185583773e-06,7.073503901189618258e-06,7.224003984193652743e-06,7.374504067197687228e-06,7.525004150201721713e-06,7.675504233205757045e-06,7.826004316209793225e-06,7.976504399213829404e-06,8.127004482217865583e-06,8.277504565221901762e-06,8.428004648225937941e-06,8.578504731229974120e-06,8.729004814234010300e-06,8.879504897238046479e-06,9.030004980242082658e-06,9.180505063246118837e-06,9.331005146250155016e-06,9.481505229254191195e-06 +0.000000000000000000e+00,1.523965642343409737e-07,3.047931284686819473e-07,4.571896927030229210e-07,6.095862569373638946e-07,7.619828211717049212e-07,9.143793854060459478e-07,1.066775949640386974e-06,1.219172513874728001e-06,1.371569078109069028e-06,1.523965642343410054e-06,1.676362206577751081e-06,1.828758770812092107e-06,1.981155335046433134e-06,2.133551899280773949e-06,2.285948463515114764e-06,2.438345027749455578e-06,2.590741591983796393e-06,2.743138156218137208e-06,2.895534720452478023e-06,3.047931284686818838e-06,3.200327848921159653e-06,3.352724413155500467e-06,3.505120977389841282e-06,3.657517541624182097e-06,3.809914105858522912e-06,3.962310670092863727e-06,4.114707234327204965e-06,4.267103798561546203e-06,4.419500362795887442e-06,4.571896927030228680e-06,4.724293491264569918e-06,4.876690055498911157e-06,5.029086619733252395e-06,5.181483183967593634e-06,5.333879748201934872e-06,5.486276312436276110e-06,5.638672876670617349e-06,5.791069440904958587e-06,5.943466005139299825e-06,6.095862569373641064e-06,6.248259133607982302e-06,6.400655697842323540e-06,6.553052262076664779e-06,6.705448826311006017e-06,6.857845390545347255e-06,7.010241954779688494e-06,7.162638519014029732e-06,7.315035083248370970e-06,7.467431647482712209e-06,7.619828211717053447e-06,7.772224775951394685e-06,7.924621340185735924e-06,8.077017904420077162e-06,8.229414468654418401e-06,8.381811032888759639e-06,8.534207597123100877e-06,8.686604161357442116e-06,8.839000725591783354e-06,8.991397289826124592e-06,9.143793854060465831e-06,9.296190418294807069e-06,9.448586982529148307e-06,9.600983546763489546e-06 +0.000000000000000000e+00,1.521975337808038091e-07,3.043950675616076182e-07,4.565926013424114274e-07,6.087901351232152365e-07,7.609876689040190456e-07,9.131852026848228547e-07,1.065382736465626770e-06,1.217580270246430685e-06,1.369777804027234600e-06,1.521975337808038515e-06,1.674172871588842430e-06,1.826370405369646345e-06,1.978567939150450260e-06,2.130765472931254386e-06,2.282963006712058513e-06,2.435160540492862640e-06,2.587358074273666767e-06,2.739555608054470894e-06,2.891753141835275020e-06,3.043950675616079147e-06,3.196148209396883274e-06,3.348345743177687401e-06,3.500543276958491527e-06,3.652740810739295654e-06,3.804938344520099781e-06,3.957135878300903908e-06,4.109333412081708458e-06,4.261530945862513008e-06,4.413728479643317558e-06,4.565926013424122109e-06,4.718123547204926659e-06,4.870321080985731209e-06,5.022518614766535760e-06,5.174716148547340310e-06,5.326913682328144860e-06,5.479111216108949410e-06,5.631308749889753961e-06,5.783506283670558511e-06,5.935703817451363061e-06,6.087901351232167611e-06,6.240098885012972162e-06,6.392296418793776712e-06,6.544493952574581262e-06,6.696691486355385813e-06,6.848889020136190363e-06,7.001086553916994913e-06,7.153284087697799463e-06,7.305481621478604014e-06,7.457679155259408564e-06,7.609876689040213114e-06,7.762074222821017664e-06,7.914271756601823062e-06,8.066469290382628459e-06,8.218666824163433856e-06,8.370864357944239254e-06,8.523061891725044651e-06,8.675259425505850048e-06,8.827456959286655446e-06,8.979654493067460843e-06,9.131852026848266240e-06,9.284049560629071638e-06,9.436247094409877035e-06,9.588444628190682432e-06 +0.000000000000000000e+00,1.505000830040322352e-07,3.010001660080644703e-07,4.515002490120966790e-07,6.020003320161288348e-07,7.525004150201609905e-07,9.030004980241931462e-07,1.053500581028225302e-06,1.204000664032257458e-06,1.354500747036289613e-06,1.505000830040321769e-06,1.655500913044353925e-06,1.806000996048386081e-06,1.956501079052418236e-06,2.107001162056450604e-06,2.257501245060482971e-06,2.408001328064515339e-06,2.558501411068547707e-06,2.709001494072580074e-06,2.859501577076612442e-06,3.010001660080644809e-06,3.160501743084677177e-06,3.311001826088709544e-06,3.461501909092741912e-06,3.612001992096774279e-06,3.762502075100806647e-06,3.913002158104839014e-06,4.063502241108871805e-06,4.214002324112904596e-06,4.364502407116937387e-06,4.515002490120970178e-06,4.665502573125002969e-06,4.816002656129035760e-06,4.966502739133068551e-06,5.117002822137101342e-06,5.267502905141134133e-06,5.418002988145166924e-06,5.568503071149199715e-06,5.719003154153232506e-06,5.869503237157265297e-06,6.020003320161298088e-06,6.170503403165330879e-06,6.321003486169363670e-06,6.471503569173396461e-06,6.622003652177429252e-06,6.772503735181462043e-06,6.923003818185494835e-06,7.073503901189527626e-06,7.224003984193560417e-06,7.374504067197593208e-06,7.525004150201625999e-06,7.675504233205658790e-06,7.826004316209691581e-06,7.976504399213724372e-06,8.127004482217757163e-06,8.277504565221789954e-06,8.428004648225822745e-06,8.578504731229855536e-06,8.729004814233888327e-06,8.879504897237921118e-06,9.030004980241953909e-06,9.180505063245986700e-06,9.331005146250019491e-06,9.481505229254052282e-06 +0.000000000000000000e+00,1.523965642343394119e-07,3.047931284686788239e-07,4.571896927030182093e-07,6.095862569373575419e-07,7.619828211716968744e-07,9.143793854060362069e-07,1.066775949640375539e-06,1.219172513874714872e-06,1.371569078109054204e-06,1.523965642343393537e-06,1.676362206577732870e-06,1.828758770812072202e-06,1.981155335046411535e-06,2.133551899280751079e-06,2.285948463515090623e-06,2.438345027749430167e-06,2.590741591983769712e-06,2.743138156218109256e-06,2.895534720452448800e-06,3.047931284686788345e-06,3.200327848921127889e-06,3.352724413155467433e-06,3.505120977389806977e-06,3.657517541624146522e-06,3.809914105858486066e-06,3.962310670092825610e-06,4.114707234327165155e-06,4.267103798561504699e-06,4.419500362795844243e-06,4.571896927030183787e-06,4.724293491264523332e-06,4.876690055498862876e-06,5.029086619733202420e-06,5.181483183967541965e-06,5.333879748201881509e-06,5.486276312436221053e-06,5.638672876670560597e-06,5.791069440904900142e-06,5.943466005139239686e-06,6.095862569373579230e-06,6.248259133607918775e-06,6.400655697842258319e-06,6.553052262076597863e-06,6.705448826310937407e-06,6.857845390545276952e-06,7.010241954779616496e-06,7.162638519013956040e-06,7.315035083248295584e-06,7.467431647482635129e-06,7.619828211716974673e-06,7.772224775951313370e-06,7.924621340185652915e-06,8.077017904419992459e-06,8.229414468654332003e-06,8.381811032888671547e-06,8.534207597123011092e-06,8.686604161357350636e-06,8.839000725591690180e-06,8.991397289826029725e-06,9.143793854060369269e-06,9.296190418294708813e-06,9.448586982529048357e-06,9.600983546763387902e-06 +0.000000000000000000e+00,1.555430000981901820e-07,3.110860001963803640e-07,4.666290002945705461e-07,6.221720003927607281e-07,7.777150004909508572e-07,9.332580005891409863e-07,1.088801000687331115e-06,1.244344000785521244e-06,1.399887000883711373e-06,1.555430000981901503e-06,1.710973001080091632e-06,1.866516001178281761e-06,2.022059001276471890e-06,2.177602001374662231e-06,2.333145001472852572e-06,2.488688001571042912e-06,2.644231001669233253e-06,2.799774001767423594e-06,2.955317001865613935e-06,3.110860001963804276e-06,3.266403002061994617e-06,3.421946002160184957e-06,3.577489002258375298e-06,3.733032002356565639e-06,3.888575002454755980e-06,4.044118002552946321e-06,4.199661002651136662e-06,4.355204002749327002e-06,4.510747002847517343e-06,4.666290002945707684e-06,4.821833003043898025e-06,4.977376003142088366e-06,5.132919003240278707e-06,5.288462003338469047e-06,5.444005003436659388e-06,5.599548003534849729e-06,5.755091003633040070e-06,5.910634003731230411e-06,6.066177003829420752e-06,6.221720003927611093e-06,6.377263004025801433e-06,6.532806004123991774e-06,6.688349004222182115e-06,6.843892004320372456e-06,6.999435004418562797e-06,7.154978004516753138e-06,7.310521004614943478e-06,7.466064004713133819e-06,7.621607004811324160e-06,7.777150004909515348e-06,7.932693005007706536e-06,8.088236005105897724e-06,8.243779005204088912e-06,8.399322005302280099e-06,8.554865005400471287e-06,8.710408005498662475e-06,8.865951005596853663e-06,9.021494005695044851e-06,9.177037005793236039e-06,9.332580005891427227e-06,9.488123005989618415e-06,9.643666006087809602e-06,9.799209006186000790e-06 +0.000000000000000000e+00,1.538755562871617699e-07,3.077511125743235398e-07,4.616266688614853096e-07,6.155022251486470795e-07,7.693777814358087964e-07,9.232533377229705134e-07,1.077128894010132230e-06,1.231004450297293947e-06,1.384880006584455664e-06,1.538755562871617381e-06,1.692631119158779098e-06,1.846506675445940815e-06,2.000382231733102744e-06,2.154257788020264884e-06,2.308133344307427025e-06,2.462008900594589165e-06,2.615884456881751305e-06,2.769760013168913446e-06,2.923635569456075586e-06,3.077511125743237727e-06,3.231386682030399867e-06,3.385262238317562008e-06,3.539137794604724148e-06,3.693013350891886289e-06,3.846888907179048429e-06,4.000764463466210570e-06,4.154640019753372710e-06,4.308515576040534850e-06,4.462391132327696991e-06,4.616266688614859131e-06,4.770142244902021272e-06,4.924017801189183412e-06,5.077893357476345553e-06,5.231768913763507693e-06,5.385644470050669834e-06,5.539520026337831974e-06,5.693395582624994115e-06,5.847271138912156255e-06,6.001146695199318395e-06,6.155022251486480536e-06,6.308897807773642676e-06,6.462773364060804817e-06,6.616648920347966957e-06,6.770524476635129098e-06,6.924400032922291238e-06,7.078275589209453379e-06,7.232151145496615519e-06,7.386026701783777659e-06,7.539902258070939800e-06,7.693777814358101940e-06,7.847653370645264081e-06,8.001528926932426221e-06,8.155404483219588362e-06,8.309280039506750502e-06,8.463155595793912643e-06,8.617031152081074783e-06,8.770906708368236924e-06,8.924782264655399064e-06,9.078657820942561204e-06,9.232533377229723345e-06,9.386408933516885485e-06,9.540284489804047626e-06,9.694160046091209766e-06 +0.000000000000000000e+00,1.556322802696206028e-07,3.112645605392412055e-07,4.668968408088618348e-07,6.225291210784825170e-07,7.781614013481031991e-07,9.337936816177238813e-07,1.089425961887344669e-06,1.245058242156965457e-06,1.400690522426586245e-06,1.556322802696207034e-06,1.711955082965827822e-06,1.867587363235448610e-06,2.023219643505069398e-06,2.178851923774690186e-06,2.334484204044310974e-06,2.490116484313931762e-06,2.645748764583552550e-06,2.801381044853173338e-06,2.957013325122794126e-06,3.112645605392414914e-06,3.268277885662035702e-06,3.423910165931656490e-06,3.579542446201277278e-06,3.735174726470898066e-06,3.890807006740518854e-06,4.046439287010139642e-06,4.202071567279760430e-06,4.357703847549381219e-06,4.513336127819002007e-06,4.668968408088622795e-06,4.824600688358243583e-06,4.980232968627864371e-06,5.135865248897485159e-06,5.291497529167105947e-06,5.447129809436726735e-06,5.602762089706347523e-06,5.758394369975968311e-06,5.914026650245589099e-06,6.069658930515209887e-06,6.225291210784830675e-06,6.380923491054451463e-06,6.536555771324072251e-06,6.692188051593693039e-06,6.847820331863313827e-06,7.003452612132934615e-06,7.159084892402555404e-06,7.314717172672176192e-06,7.470349452941796980e-06,7.625981733211417768e-06,7.781614013481039403e-06,7.937246293750661885e-06,8.092878574020284367e-06,8.248510854289906849e-06,8.404143134559529331e-06,8.559775414829151813e-06,8.715407695098774296e-06,8.871039975368396778e-06,9.026672255638019260e-06,9.182304535907641742e-06,9.337936816177264224e-06,9.493569096446886706e-06,9.649201376716509188e-06,9.804833656986131670e-06 +0.000000000000000000e+00,1.555430000981858410e-07,3.110860001963716820e-07,4.666290002945575229e-07,6.221720003927433639e-07,7.777150004909292578e-07,9.332580005891151517e-07,1.088801000687301046e-06,1.244344000785486940e-06,1.399887000883672833e-06,1.555430000981858727e-06,1.710973001080044621e-06,1.866516001178230515e-06,2.022059001276416409e-06,2.177602001374602091e-06,2.333145001472787773e-06,2.488688001570973456e-06,2.644231001669159138e-06,2.799774001767344820e-06,2.955317001865530502e-06,3.110860001963716184e-06,3.266403002061901866e-06,3.421946002160087549e-06,3.577489002258273231e-06,3.733032002356458913e-06,3.888575002454644172e-06,4.044118002552829430e-06,4.199661002651014689e-06,4.355204002749199947e-06,4.510747002847385206e-06,4.666290002945570465e-06,4.821833003043755723e-06,4.977376003141940982e-06,5.132919003240126241e-06,5.288462003338311499e-06,5.444005003436496758e-06,5.599548003534682017e-06,5.755091003632867275e-06,5.910634003731052534e-06,6.066177003829237793e-06,6.221720003927423051e-06,6.377263004025608310e-06,6.532806004123793568e-06,6.688349004221978827e-06,6.843892004320164086e-06,6.999435004418349344e-06,7.154978004516534603e-06,7.310521004614719862e-06,7.466064004712905120e-06,7.621607004811090379e-06,7.777150004909274791e-06,7.932693005007459202e-06,8.088236005105643614e-06,8.243779005203828025e-06,8.399322005302012437e-06,8.554865005400196849e-06,8.710408005498381260e-06,8.865951005596565672e-06,9.021494005694750083e-06,9.177037005792934495e-06,9.332580005891118907e-06,9.488123005989303318e-06,9.643666006087487730e-06,9.799209006185672142e-06 +0.000000000000000000e+00,1.538755562871585141e-07,3.077511125743170282e-07,4.616266688614755158e-07,6.155022251486339505e-07,7.693777814357923852e-07,9.232533377229508199e-07,1.077128894010109149e-06,1.231004450297267477e-06,1.384880006584425806e-06,1.538755562871584135e-06,1.692631119158742464e-06,1.846506675445900793e-06,2.000382231733059121e-06,2.154257788020217450e-06,2.308133344307375779e-06,2.462008900594534108e-06,2.615884456881692437e-06,2.769760013168850766e-06,2.923635569456009094e-06,3.077511125743167423e-06,3.231386682030325752e-06,3.385262238317484081e-06,3.539137794604642410e-06,3.693013350891800738e-06,3.846888907178958644e-06,4.000764463466116549e-06,4.154640019753274454e-06,4.308515576040432359e-06,4.462391132327590265e-06,4.616266688614748170e-06,4.770142244901906075e-06,4.924017801189063981e-06,5.077893357476221886e-06,5.231768913763379791e-06,5.385644470050537696e-06,5.539520026337695602e-06,5.693395582624853507e-06,5.847271138912011412e-06,6.001146695199169318e-06,6.155022251486327223e-06,6.308897807773485128e-06,6.462773364060643033e-06,6.616648920347800939e-06,6.770524476634958844e-06,6.924400032922116749e-06,7.078275589209274655e-06,7.232151145496432560e-06,7.386026701783590465e-06,7.539902258070748371e-06,7.693777814357907123e-06,7.847653370645065875e-06,8.001528926932224627e-06,8.155404483219383380e-06,8.309280039506542132e-06,8.463155595793700884e-06,8.617031152080859637e-06,8.770906708368018389e-06,8.924782264655177141e-06,9.078657820942335894e-06,9.232533377229494646e-06,9.386408933516653398e-06,9.540284489803812151e-06,9.694160046090970903e-06 +0.000000000000000000e+00,1.556322802696195969e-07,3.112645605392391938e-07,4.668968408088587643e-07,6.225291210784782818e-07,7.781614013480977993e-07,9.337936816177173168e-07,1.089425961887336834e-06,1.245058242156956352e-06,1.400690522426575869e-06,1.556322802696195387e-06,1.711955082965814904e-06,1.867587363235434422e-06,2.023219643505054151e-06,2.178851923774674092e-06,2.334484204044294033e-06,2.490116484313913974e-06,2.645748764583533915e-06,2.801381044853153856e-06,2.957013325122773797e-06,3.112645605392393738e-06,3.268277885662013679e-06,3.423910165931633620e-06,3.579542446201253561e-06,3.735174726470873502e-06,3.890807006740493443e-06,4.046439287010113384e-06,4.202071567279733325e-06,4.357703847549353266e-06,4.513336127818973207e-06,4.668968408088593148e-06,4.824600688358213090e-06,4.980232968627833031e-06,5.135865248897452972e-06,5.291497529167072913e-06,5.447129809436692854e-06,5.602762089706312795e-06,5.758394369975932736e-06,5.914026650245552677e-06,6.069658930515172618e-06,6.225291210784792559e-06,6.380923491054412500e-06,6.536555771324032441e-06,6.692188051593652382e-06,6.847820331863272323e-06,7.003452612132892264e-06,7.159084892402512205e-06,7.314717172672132146e-06,7.470349452941752087e-06,7.625981733211372028e-06,7.781614013480991969e-06,7.937246293750611063e-06,8.092878574020230157e-06,8.248510854289849251e-06,8.404143134559468345e-06,8.559775414829087439e-06,8.715407695098706533e-06,8.871039975368325627e-06,9.026672255637944721e-06,9.182304535907563815e-06,9.337936816177182909e-06,9.493569096446802003e-06,9.649201376716421097e-06,9.804833656986040191e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.571518559190067728e-07,3.143037118380135456e-07,4.714555677570203184e-07,6.286074236760270913e-07,7.857592795950338111e-07,9.429111355140405310e-07,1.100062991433047251e-06,1.257214847352053971e-06,1.414366703271060691e-06,1.571518559190067411e-06,1.728670415109074130e-06,1.885822271028080850e-06,2.042974126947087570e-06,2.200125982866094502e-06,2.357277838785101433e-06,2.514429694704108365e-06,2.671581550623115297e-06,2.828733406542122228e-06,2.985885262461129160e-06,3.143037118380136092e-06,3.300188974299143023e-06,3.457340830218149955e-06,3.614492686137156886e-06,3.771644542056163818e-06,3.928796397975170326e-06,4.085948253894176834e-06,4.243100109813183342e-06,4.400251965732189851e-06,4.557403821651196359e-06,4.714555677570202867e-06,4.871707533489209375e-06,5.028859389408215883e-06,5.186011245327222391e-06,5.343163101246228899e-06,5.500314957165235407e-06,5.657466813084241916e-06,5.814618669003248424e-06,5.971770524922254932e-06,6.128922380841261440e-06,6.286074236760267948e-06,6.443226092679274456e-06,6.600377948598280964e-06,6.757529804517287472e-06,6.914681660436293980e-06,7.071833516355300489e-06,7.228985372274306997e-06,7.386137228193313505e-06,7.543289084112320013e-06,7.700440940031326521e-06,7.857592795950333876e-06,8.014744651869341231e-06,8.171896507788348587e-06,8.329048363707355942e-06,8.486200219626363297e-06,8.643352075545370652e-06,8.800503931464378007e-06,8.957655787383385362e-06,9.114807643302392717e-06,9.271959499221400073e-06,9.429111355140407428e-06,9.586263211059414783e-06,9.743415066978422138e-06,9.900566922897429493e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.571518559190043641e-07,3.143037118380087281e-07,4.714555677570130657e-07,6.286074236760173504e-07,7.857592795950216350e-07,9.429111355140259197e-07,1.100062991433030310e-06,1.257214847352034701e-06,1.414366703271039091e-06,1.571518559190043482e-06,1.728670415109047872e-06,1.885822271028052263e-06,2.042974126947056653e-06,2.200125982866061044e-06,2.357277838785065435e-06,2.514429694704069825e-06,2.671581550623074216e-06,2.828733406542078606e-06,2.985885262461082997e-06,3.143037118380087387e-06,3.300188974299091778e-06,3.457340830218096168e-06,3.614492686137100559e-06,3.771644542056104949e-06,3.928796397975109340e-06,4.085948253894113307e-06,4.243100109813117274e-06,4.400251965732121241e-06,4.557403821651125208e-06,4.714555677570129175e-06,4.871707533489133142e-06,5.028859389408137109e-06,5.186011245327141076e-06,5.343163101246145043e-06,5.500314957165149010e-06,5.657466813084152977e-06,5.814618669003156944e-06,5.971770524922160911e-06,6.128922380841164878e-06,6.286074236760168845e-06,6.443226092679172812e-06,6.600377948598176779e-06,6.757529804517180746e-06,6.914681660436184713e-06,7.071833516355188680e-06,7.228985372274192647e-06,7.386137228193196614e-06,7.543289084112200581e-06,7.700440940031204548e-06,7.857592795950208515e-06,8.014744651869212482e-06,8.171896507788216449e-06,8.329048363707220416e-06,8.486200219626224383e-06,8.643352075545228350e-06,8.800503931464232317e-06,8.957655787383236284e-06,9.114807643302240252e-06,9.271959499221244219e-06,9.429111355140248186e-06,9.586263211059252153e-06,9.743415066978256120e-06,9.900566922897260087e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.437585534401569423e-07,2.875171068803138846e-07,4.312756603204708004e-07,5.750342137606276633e-07,7.187927672007845261e-07,8.625513206409413890e-07,1.006309874081098358e-06,1.150068427521255327e-06,1.293826980961412295e-06,1.437585534401569264e-06,1.581344087841726233e-06,1.725102641281883202e-06,1.868861194722040170e-06,2.012619748162197139e-06,2.156378301602354108e-06,2.300136855042511077e-06,2.443895408482668045e-06,2.587653961922825014e-06,2.731412515362981983e-06,2.875171068803138952e-06,3.018929622243295920e-06,3.162688175683452889e-06,3.306446729123609858e-06,3.450205282563766827e-06,3.593963836003923795e-06,3.737722389444080764e-06,3.881480942884237733e-06,4.025239496324395125e-06,4.168998049764552517e-06,4.312756603204709910e-06,4.456515156644867302e-06,4.600273710085024694e-06,4.744032263525182087e-06,4.887790816965339479e-06,5.031549370405496871e-06,5.175307923845654263e-06,5.319066477285811656e-06,5.462825030725969048e-06,5.606583584166126440e-06,5.750342137606283832e-06,5.894100691046441225e-06,6.037859244486598617e-06,6.181617797926756009e-06,6.325376351366913402e-06,6.469134904807070794e-06,6.612893458247228186e-06,6.756652011687385578e-06,6.900410565127542971e-06,7.044169118567700363e-06,7.187927672007857755e-06,7.331686225448015147e-06,7.475444778888172540e-06,7.619203332328329932e-06,7.762961885768487324e-06,7.906720439208644717e-06,8.050478992648802109e-06,8.194237546088959501e-06,8.337996099529116893e-06,8.481754652969274286e-06,8.625513206409431678e-06,8.769271759849589070e-06,8.913030313289746462e-06,9.056788866729903855e-06 +0.000000000000000000e+00,1.417563809641586425e-07,2.835127619283172850e-07,4.252691428924759011e-07,5.670255238566344642e-07,7.087819048207930273e-07,8.505382857849515904e-07,9.922946667491101536e-07,1.134051047713268717e-06,1.275807428677427280e-06,1.417563809641585843e-06,1.559320190605744406e-06,1.701076571569902969e-06,1.842832952534061532e-06,1.984589333498220307e-06,2.126345714462379082e-06,2.268102095426537857e-06,2.409858476390696632e-06,2.551614857354855407e-06,2.693371238319014181e-06,2.835127619283172956e-06,2.976884000247331731e-06,3.118640381211490506e-06,3.260396762175649281e-06,3.402153143139808056e-06,3.543909524103966831e-06,3.685665905068125606e-06,3.827422286032284380e-06,3.969178666996443155e-06,4.110935047960601930e-06,4.252691428924760705e-06,4.394447809888919480e-06,4.536204190853078255e-06,4.677960571817237030e-06,4.819716952781395805e-06,4.961473333745554579e-06,5.103229714709713354e-06,5.244986095673872129e-06,5.386742476638030904e-06,5.528498857602189679e-06,5.670255238566348454e-06,5.812011619530507229e-06,5.953768000494666004e-06,6.095524381458824778e-06,6.237280762422983553e-06,6.379037143387142328e-06,6.520793524351301103e-06,6.662549905315459878e-06,6.804306286279618653e-06,6.946062667243777428e-06,7.087819048207936203e-06,7.229575429172094977e-06,7.371331810136253752e-06,7.513088191100412527e-06,7.654844572064572149e-06,7.796600953028731771e-06,7.938357333992891393e-06,8.080113714957051015e-06,8.221870095921210637e-06,8.363626476885370259e-06,8.505382857849529880e-06,8.647139238813689502e-06,8.788895619777849124e-06,8.930652000742008746e-06 +0.000000000000000000e+00,1.446253302877957681e-07,2.892506605755915361e-07,4.338759908633872777e-07,5.785013211511829664e-07,7.231266514389786550e-07,8.677519817267743436e-07,1.012377312014569926e-06,1.157002642302365509e-06,1.301627972590161092e-06,1.446253302877956675e-06,1.590878633165752257e-06,1.735503963453547840e-06,1.880129293741343423e-06,2.024754624029139006e-06,2.169379954316934589e-06,2.314005284604730171e-06,2.458630614892525754e-06,2.603255945180321337e-06,2.747881275468116920e-06,2.892506605755912502e-06,3.037131936043708085e-06,3.181757266331503668e-06,3.326382596619299251e-06,3.471007926907094833e-06,3.615633257194890416e-06,3.760258587482685999e-06,3.904883917770482005e-06,4.049509248058278012e-06,4.194134578346074018e-06,4.338759908633870024e-06,4.483385238921666030e-06,4.628010569209462037e-06,4.772635899497258043e-06,4.917261229785054049e-06,5.061886560072850056e-06,5.206511890360646062e-06,5.351137220648442068e-06,5.495762550936238074e-06,5.640387881224034081e-06,5.785013211511830087e-06,5.929638541799626093e-06,6.074263872087422100e-06,6.218889202375218106e-06,6.363514532663014112e-06,6.508139862950810118e-06,6.652765193238606125e-06,6.797390523526402131e-06,6.942015853814198137e-06,7.086641184101994144e-06,7.231266514389790150e-06,7.375891844677586156e-06,7.520517174965382162e-06,7.665142505253178169e-06,7.809767835540974175e-06,7.954393165828770181e-06,8.099018496116566188e-06,8.243643826404362194e-06,8.388269156692158200e-06,8.532894486979954206e-06,8.677519817267750213e-06,8.822145147555546219e-06,8.966770477843342225e-06,9.111395808131138232e-06 +0.000000000000000000e+00,1.437585534401507748e-07,2.875171068803015497e-07,4.312756603204523245e-07,5.750342137606030993e-07,7.187927672007539271e-07,8.625513206409047548e-07,1.006309874081055583e-06,1.150068427521206410e-06,1.293826980961357238e-06,1.437585534401508066e-06,1.581344087841658894e-06,1.725102641281809721e-06,1.868861194721960549e-06,2.012619748162111165e-06,2.156378301602261781e-06,2.300136855042412397e-06,2.443895408482563013e-06,2.587653961922713629e-06,2.731412515362864245e-06,2.875171068803014861e-06,3.018929622243165477e-06,3.162688175683316093e-06,3.306446729123466709e-06,3.450205282563617325e-06,3.593963836003767941e-06,3.737722389443918557e-06,3.881480942884069173e-06,4.025239496324219789e-06,4.168998049764370405e-06,4.312756603204521021e-06,4.456515156644671637e-06,4.600273710084822253e-06,4.744032263524972869e-06,4.887790816965123485e-06,5.031549370405274101e-06,5.175307923845424717e-06,5.319066477285575333e-06,5.462825030725725949e-06,5.606583584165876565e-06,5.750342137606027181e-06,5.894100691046177797e-06,6.037859244486328413e-06,6.181617797926479029e-06,6.325376351366629645e-06,6.469134904806780262e-06,6.612893458246930878e-06,6.756652011687081494e-06,6.900410565127232110e-06,7.044169118567382726e-06,7.187927672007533342e-06,7.331686225447683958e-06,7.475444778887834574e-06,7.619203332327985190e-06,7.762961885768136653e-06,7.906720439208288963e-06,8.050478992648441273e-06,8.194237546088593583e-06,8.337996099528745893e-06,8.481754652968898203e-06,8.625513206409050513e-06,8.769271759849202823e-06,8.913030313289355133e-06,9.056788866729507443e-06 +0.000000000000000000e+00,1.417563809641520780e-07,2.835127619283041560e-07,4.252691428924562076e-07,5.670255238566082062e-07,7.087819048207602048e-07,8.505382857849122034e-07,9.922946667490642020e-07,1.134051047713216201e-06,1.275807428677368199e-06,1.417563809641520198e-06,1.559320190605672196e-06,1.701076571569824195e-06,1.842832952533976194e-06,1.984589333498127981e-06,2.126345714462279979e-06,2.268102095426431978e-06,2.409858476390583976e-06,2.551614857354735975e-06,2.693371238318887974e-06,2.835127619283039972e-06,2.976884000247191971e-06,3.118640381211343969e-06,3.260396762175495968e-06,3.402153143139647967e-06,3.543909524103799965e-06,3.685665905067951964e-06,3.827422286032103962e-06,3.969178666996255961e-06,4.110935047960407960e-06,4.252691428924559958e-06,4.394447809888711957e-06,4.536204190852863955e-06,4.677960571817015954e-06,4.819716952781167953e-06,4.961473333745319951e-06,5.103229714709471950e-06,5.244986095673623949e-06,5.386742476637775947e-06,5.528498857601927946e-06,5.670255238566079944e-06,5.812011619530231943e-06,5.953768000494383942e-06,6.095524381458535940e-06,6.237280762422687939e-06,6.379037143386839937e-06,6.520793524350991936e-06,6.662549905315143935e-06,6.804306286279295933e-06,6.946062667243447932e-06,7.087819048207599930e-06,7.229575429171751929e-06,7.371331810135903928e-06,7.513088191100055926e-06,7.654844572064207925e-06,7.796600953028359076e-06,7.938357333992510228e-06,8.080113714956661380e-06,8.221870095920812531e-06,8.363626476884963683e-06,8.505382857849114834e-06,8.647139238813265986e-06,8.788895619777417137e-06,8.930652000741568289e-06 +0.000000000000000000e+00,1.446253302877907388e-07,2.892506605755814776e-07,4.338759908633722429e-07,5.785013211511630611e-07,7.231266514389538793e-07,8.677519817267446975e-07,1.012377312014535622e-06,1.157002642302326546e-06,1.301627972590117470e-06,1.446253302877908394e-06,1.590878633165699318e-06,1.735503963453490242e-06,1.880129293741281166e-06,2.024754624029072090e-06,2.169379954316863014e-06,2.314005284604653938e-06,2.458630614892444862e-06,2.603255945180235787e-06,2.747881275468026711e-06,2.892506605755817635e-06,3.037131936043608559e-06,3.181757266331399483e-06,3.326382596619190407e-06,3.471007926906981331e-06,3.615633257194772255e-06,3.760258587482563179e-06,3.904883917770354103e-06,4.049509248058145027e-06,4.194134578345935952e-06,4.338759908633726876e-06,4.483385238921517800e-06,4.628010569209308724e-06,4.772635899497099648e-06,4.917261229784890572e-06,5.061886560072681496e-06,5.206511890360472420e-06,5.351137220648263344e-06,5.495762550936054268e-06,5.640387881223845192e-06,5.785013211511636116e-06,5.929638541799427041e-06,6.074263872087217965e-06,6.218889202375008889e-06,6.363514532662799813e-06,6.508139862950590737e-06,6.652765193238381661e-06,6.797390523526172585e-06,6.942015853813963509e-06,7.086641184101754433e-06,7.231266514389545357e-06,7.375891844677336281e-06,7.520517174965127206e-06,7.665142505252917283e-06,7.809767835540706513e-06,7.954393165828495743e-06,8.099018496116284973e-06,8.243643826404074203e-06,8.388269156691863433e-06,8.532894486979652663e-06,8.677519817267441893e-06,8.822145147555231123e-06,8.966770477843020353e-06,9.111395808130809583e-06 +0.000000000000000000e+00,1.476958855028370933e-07,2.953917710056741865e-07,4.430876565085113062e-07,5.907835420113484789e-07,7.384794275141856516e-07,8.861753130170228242e-07,1.033871198519859997e-06,1.181567084022697170e-06,1.329262969525534342e-06,1.476958855028371515e-06,1.624654740531208688e-06,1.772350626034045860e-06,1.920046511536883033e-06,2.067742397039719994e-06,2.215438282542556955e-06,2.363134168045393916e-06,2.510830053548230876e-06,2.658525939051067837e-06,2.806221824553904798e-06,2.953917710056741759e-06,3.101613595559578720e-06,3.249309481062415681e-06,3.397005366565252642e-06,3.544701252068089603e-06,3.692397137570926564e-06,3.840093023073763525e-06,3.987788908576600909e-06,4.135484794079438293e-06,4.283180679582275678e-06,4.430876565085113062e-06,4.578572450587950447e-06,4.726268336090787831e-06,4.873964221593625216e-06,5.021660107096462600e-06,5.169355992599299984e-06,5.317051878102137369e-06,5.464747763604974753e-06,5.612443649107812138e-06,5.760139534610649522e-06,5.907835420113486907e-06,6.055531305616324291e-06,6.203227191119161675e-06,6.350923076621999060e-06,6.498618962124836444e-06,6.646314847627673829e-06,6.794010733130511213e-06,6.941706618633348597e-06,7.089402504136185982e-06,7.237098389639023366e-06,7.384794275141860751e-06,7.532490160644698135e-06,7.680186046147535520e-06,7.827881931650372904e-06,7.975577817153210288e-06,8.123273702656047673e-06,8.270969588158885057e-06,8.418665473661722442e-06,8.566361359164559826e-06,8.714057244667397211e-06,8.861753130170234595e-06,9.009449015673071979e-06,9.157144901175909364e-06,9.304840786678746748e-06 +0.000000000000000000e+00,1.457413227013489031e-07,2.914826454026978062e-07,4.372239681040467094e-07,5.829652908053956125e-07,7.287066135067445156e-07,8.744479362080934187e-07,1.020189258909442322e-06,1.165930581610791225e-06,1.311671904312140128e-06,1.457413227013489031e-06,1.603154549714837934e-06,1.748895872416186837e-06,1.894637195117535741e-06,2.040378517818884644e-06,2.186119840520233335e-06,2.331861163221582026e-06,2.477602485922930718e-06,2.623343808624279409e-06,2.769085131325628100e-06,2.914826454026976792e-06,3.060567776728325483e-06,3.206309099429674175e-06,3.352050422131022866e-06,3.497791744832371557e-06,3.643533067533720249e-06,3.789274390235068940e-06,3.935015712936417631e-06,4.080757035637766746e-06,4.226498358339115861e-06,4.372239681040464976e-06,4.517981003741814091e-06,4.663722326443163206e-06,4.809463649144512321e-06,4.955204971845861435e-06,5.100946294547210550e-06,5.246687617248559665e-06,5.392428939949908780e-06,5.538170262651257895e-06,5.683911585352607010e-06,5.829652908053956125e-06,5.975394230755305240e-06,6.121135553456654355e-06,6.266876876158003469e-06,6.412618198859352584e-06,6.558359521560701699e-06,6.704100844262050814e-06,6.849842166963399929e-06,6.995583489664749044e-06,7.141324812366098159e-06,7.287066135067447274e-06,7.432807457768796388e-06,7.578548780470145503e-06,7.724290103171495465e-06,7.870031425872845427e-06,8.015772748574195389e-06,8.161514071275545351e-06,8.307255393976895313e-06,8.452996716678245275e-06,8.598738039379595237e-06,8.744479362080945199e-06,8.890220684782295160e-06,9.035962007483645122e-06,9.181703330184995084e-06 +0.000000000000000000e+00,1.483018217666120784e-07,2.966036435332241567e-07,4.449054652998362086e-07,5.932072870664482075e-07,7.415091088330602065e-07,8.898109305996722054e-07,1.038112752366284098e-06,1.186414574132895992e-06,1.334716395899507885e-06,1.483018217666119778e-06,1.631320039432731671e-06,1.779621861199343564e-06,1.927923682965955457e-06,2.076225504732567350e-06,2.224527326499179243e-06,2.372829148265791136e-06,2.521130970032403029e-06,2.669432791799014922e-06,2.817734613565626815e-06,2.966036435332238708e-06,3.114338257098850601e-06,3.262640078865462494e-06,3.410941900632074388e-06,3.559243722398686281e-06,3.707545544165298174e-06,3.855847365931910067e-06,4.004149187698521960e-06,4.152451009465133853e-06,4.300752831231745746e-06,4.449054652998357639e-06,4.597356474764969532e-06,4.745658296531581425e-06,4.893960118298193318e-06,5.042261940064805211e-06,5.190563761831417104e-06,5.338865583598028997e-06,5.487167405364640890e-06,5.635469227131252784e-06,5.783771048897864677e-06,5.932072870664476570e-06,6.080374692431088463e-06,6.228676514197700356e-06,6.376978335964312249e-06,6.525280157730924142e-06,6.673581979497536035e-06,6.821883801264147928e-06,6.970185623030759821e-06,7.118487444797371714e-06,7.266789266563983607e-06,7.415091088330595500e-06,7.563392910097207393e-06,7.711694731863818439e-06,7.859996553630429485e-06,8.008298375397040532e-06,8.156600197163651578e-06,8.304902018930262624e-06,8.453203840696873670e-06,8.601505662463484716e-06,8.749807484230095762e-06,8.898109305996706808e-06,9.046411127763317854e-06,9.194712949529928900e-06,9.343014771296539946e-06 +0.000000000000000000e+00,1.476958855028303170e-07,2.953917710056606340e-07,4.430876565084909774e-07,5.907835420113213738e-07,7.384794275141517702e-07,8.861753130169821666e-07,1.033871198519812563e-06,1.181567084022642959e-06,1.329262969525473356e-06,1.476958855028303752e-06,1.624654740531134149e-06,1.772350626033964545e-06,1.920046511536794941e-06,2.067742397039625126e-06,2.215438282542455311e-06,2.363134168045285495e-06,2.510830053548115680e-06,2.658525939050945865e-06,2.806221824553776049e-06,2.953917710056606234e-06,3.101613595559436419e-06,3.249309481062266603e-06,3.397005366565096788e-06,3.544701252067926972e-06,3.692397137570757157e-06,3.840093023073587342e-06,3.987788908576417950e-06,4.135484794079248558e-06,4.283180679582079166e-06,4.430876565084909774e-06,4.578572450587740383e-06,4.726268336090570991e-06,4.873964221593401599e-06,5.021660107096232207e-06,5.169355992599062815e-06,5.317051878101893423e-06,5.464747763604724032e-06,5.612443649107554640e-06,5.760139534610385248e-06,5.907835420113215856e-06,6.055531305616046464e-06,6.203227191118877072e-06,6.350923076621707680e-06,6.498618962124538289e-06,6.646314847627368897e-06,6.794010733130199505e-06,6.941706618633030113e-06,7.089402504135860721e-06,7.237098389638691329e-06,7.384794275141521938e-06,7.532490160644352546e-06,7.680186046147183154e-06,7.827881931650013762e-06,7.975577817152844370e-06,8.123273702655674978e-06,8.270969588158505587e-06,8.418665473661336195e-06,8.566361359164166803e-06,8.714057244666997411e-06,8.861753130169828019e-06,9.009449015672658627e-06,9.157144901175489235e-06,9.304840786678319844e-06 +0.000000000000000000e+00,1.457413227013420474e-07,2.914826454026840949e-07,4.372239681040261688e-07,5.829652908053682957e-07,7.287066135067104225e-07,8.744479362080525494e-07,1.020189258909394676e-06,1.165930581610736803e-06,1.311671904312078930e-06,1.457413227013421057e-06,1.603154549714763184e-06,1.748895872416105311e-06,1.894637195117447437e-06,2.040378517818789352e-06,2.186119840520131268e-06,2.331861163221473183e-06,2.477602485922815098e-06,2.623343808624157013e-06,2.769085131325498928e-06,2.914826454026840843e-06,3.060567776728182758e-06,3.206309099429524673e-06,3.352050422130866588e-06,3.497791744832208503e-06,3.643533067533550419e-06,3.789274390234892334e-06,3.935015712936233825e-06,4.080757035637575317e-06,4.226498358338916808e-06,4.372239681040258300e-06,4.517981003741599792e-06,4.663722326442941283e-06,4.809463649144282775e-06,4.955204971845624266e-06,5.100946294546965758e-06,5.246687617248307249e-06,5.392428939949648741e-06,5.538170262650990233e-06,5.683911585352331724e-06,5.829652908053673216e-06,5.975394230755014707e-06,6.121135553456356199e-06,6.266876876157697690e-06,6.412618198859039182e-06,6.558359521560380674e-06,6.704100844261722165e-06,6.849842166963063657e-06,6.995583489664405148e-06,7.141324812365746640e-06,7.287066135067088132e-06,7.432807457768429623e-06,7.578548780469771115e-06,7.724290103171112606e-06,7.870031425872454098e-06,8.015772748573795589e-06,8.161514071275137081e-06,8.307255393976478573e-06,8.452996716677820064e-06,8.598738039379161556e-06,8.744479362080503047e-06,8.890220684781844539e-06,9.035962007483186031e-06,9.181703330184527522e-06 +0.000000000000000000e+00,1.483018217666073138e-07,2.966036435332146276e-07,4.449054652998219149e-07,5.932072870664291493e-07,7.415091088330363837e-07,8.898109305996436181e-07,1.038112752366250852e-06,1.186414574132858087e-06,1.334716395899465321e-06,1.483018217666072556e-06,1.631320039432679790e-06,1.779621861199287024e-06,1.927923682965894471e-06,2.076225504732502128e-06,2.224527326499109786e-06,2.372829148265717444e-06,2.521130970032325102e-06,2.669432791798932760e-06,2.817734613565540418e-06,2.966036435332148076e-06,3.114338257098755734e-06,3.262640078865363392e-06,3.410941900631971050e-06,3.559243722398578707e-06,3.707545544165186365e-06,3.855847365931794023e-06,4.004149187698401681e-06,4.152451009465009339e-06,4.300752831231616997e-06,4.449054652998224655e-06,4.597356474764832313e-06,4.745658296531439971e-06,4.893960118298047629e-06,5.042261940064655286e-06,5.190563761831262944e-06,5.338865583597870602e-06,5.487167405364478260e-06,5.635469227131085918e-06,5.783771048897693576e-06,5.932072870664301234e-06,6.080374692430908892e-06,6.228676514197516550e-06,6.376978335964124208e-06,6.525280157730731865e-06,6.673581979497339523e-06,6.821883801263947181e-06,6.970185623030554839e-06,7.118487444797162497e-06,7.266789266563770155e-06,7.415091088330377813e-06,7.563392910096985471e-06,7.711694731863593129e-06,7.859996553630200787e-06,8.008298375396808444e-06,8.156600197163416102e-06,8.304902018930023760e-06,8.453203840696631418e-06,8.601505662463239076e-06,8.749807484229846734e-06,8.898109305996454392e-06,9.046411127763062050e-06,9.194712949529669708e-06,9.343014771296277366e-06 +0.000000000000000000e+00,1.515379556899473378e-07,3.030759113798946755e-07,4.546138670698420133e-07,6.061518227597893510e-07,7.576897784497367417e-07,9.092277341396841324e-07,1.060765689829631523e-06,1.212303645519578914e-06,1.363841601209526304e-06,1.515379556899473695e-06,1.666917512589421086e-06,1.818455468279368477e-06,1.969993423969315867e-06,2.121531379659263046e-06,2.273069335349210225e-06,2.424607291039157404e-06,2.576145246729104583e-06,2.727683202419051762e-06,2.879221158108998941e-06,3.030759113798946120e-06,3.182297069488893299e-06,3.333835025178840478e-06,3.485372980868787657e-06,3.636910936558734835e-06,3.788448892248682014e-06,3.939986847938629193e-06,4.091524803628576372e-06,4.243062759318523551e-06,4.394600715008470730e-06,4.546138670698417909e-06,4.697676626388365088e-06,4.849214582078312267e-06,5.000752537768259446e-06,5.152290493458206625e-06,5.303828449148153804e-06,5.455366404838100983e-06,5.606904360528048162e-06,5.758442316217995341e-06,5.909980271907942519e-06,6.061518227597889698e-06,6.213056183287836877e-06,6.364594138977784056e-06,6.516132094667731235e-06,6.667670050357678414e-06,6.819208006047625593e-06,6.970745961737572772e-06,7.122283917427519951e-06,7.273821873117467130e-06,7.425359828807414309e-06,7.576897784497361488e-06,7.728435740187307820e-06,7.879973695877253304e-06,8.031511651567198789e-06,8.183049607257144274e-06,8.334587562947089759e-06,8.486125518637035244e-06,8.637663474326980729e-06,8.789201430016926214e-06,8.940739385706871699e-06,9.092277341396817183e-06,9.243815297086762668e-06,9.395353252776708153e-06,9.546891208466653638e-06 +0.000000000000000000e+00,1.496301038996806509e-07,2.992602077993613018e-07,4.488903116990419527e-07,5.985204155987226036e-07,7.481505194984032545e-07,8.977806233980839054e-07,1.047410727297764662e-06,1.197040831197445419e-06,1.346670935097126176e-06,1.496301038996806933e-06,1.645931142896487689e-06,1.795561246796168446e-06,1.945191350695849203e-06,2.094821454595530171e-06,2.244451558495211140e-06,2.394081662394892108e-06,2.543711766294573077e-06,2.693341870194254046e-06,2.842971974093935014e-06,2.992602077993615983e-06,3.142232181893296951e-06,3.291862285792977920e-06,3.441492389692658888e-06,3.591122493592339857e-06,3.740752597492020825e-06,3.890382701391701794e-06,4.040012805291382762e-06,4.189642909191063731e-06,4.339273013090744699e-06,4.488903116990425668e-06,4.638533220890106637e-06,4.788163324789787605e-06,4.937793428689468574e-06,5.087423532589149542e-06,5.237053636488830511e-06,5.386683740388511479e-06,5.536313844288192448e-06,5.685943948187873416e-06,5.835574052087554385e-06,5.985204155987235353e-06,6.134834259886916322e-06,6.284464363786597290e-06,6.434094467686278259e-06,6.583724571585959228e-06,6.733354675485640196e-06,6.882984779385321165e-06,7.032614883285002133e-06,7.182244987184683102e-06,7.331875091084364070e-06,7.481505194984045039e-06,7.631135298883725160e-06,7.780765402783405282e-06,7.930395506683085403e-06,8.080025610582765525e-06,8.229655714482445646e-06,8.379285818382125768e-06,8.528915922281805889e-06,8.678546026181486011e-06,8.828176130081166132e-06,8.977806233980846254e-06,9.127436337880526375e-06,9.277066441780206497e-06,9.426696545679886618e-06 +0.000000000000000000e+00,1.519021278231127269e-07,3.038042556462254539e-07,4.557063834693382073e-07,6.076085112924510136e-07,7.595106391155638200e-07,9.114127669386766263e-07,1.063314894761789327e-06,1.215217022584902027e-06,1.367119150408014728e-06,1.519021278231127428e-06,1.670923406054240129e-06,1.822825533877352829e-06,1.974727661700465530e-06,2.126629789523578230e-06,2.278531917346690931e-06,2.430434045169803631e-06,2.582336172992916331e-06,2.734238300816029032e-06,2.886140428639141732e-06,3.038042556462254433e-06,3.189944684285367133e-06,3.341846812108479834e-06,3.493748939931592534e-06,3.645651067754705235e-06,3.797553195577817935e-06,3.949455323400930212e-06,4.101357451224042913e-06,4.253259579047155613e-06,4.405161706870268314e-06,4.557063834693381014e-06,4.708965962516493714e-06,4.860868090339606415e-06,5.012770218162719115e-06,5.164672345985831816e-06,5.316574473808944516e-06,5.468476601632057217e-06,5.620378729455169917e-06,5.772280857278282618e-06,5.924182985101395318e-06,6.076085112924508019e-06,6.227987240747620719e-06,6.379889368570733420e-06,6.531791496393846120e-06,6.683693624216958820e-06,6.835595752040071521e-06,6.987497879863184221e-06,7.139400007686296922e-06,7.291302135509409622e-06,7.443204263332522323e-06,7.595106391155635023e-06,7.747008518978747724e-06,7.898910646801860424e-06,8.050812774624973125e-06,8.202714902448085825e-06,8.354617030271198526e-06,8.506519158094311226e-06,8.658421285917423927e-06,8.810323413740536627e-06,8.962225541563649327e-06,9.114127669386762028e-06,9.266029797209874728e-06,9.417931925032987429e-06,9.569834052856100129e-06 +0.000000000000000000e+00,1.515379556899412762e-07,3.030759113798825523e-07,4.546138670698238550e-07,6.061518227597652106e-07,7.576897784497065661e-07,9.092277341396479217e-07,1.060765689829589171e-06,1.212303645519530421e-06,1.363841601209471671e-06,1.515379556899412921e-06,1.666917512589354170e-06,1.818455468279295420e-06,1.969993423969236670e-06,2.121531379659177919e-06,2.273069335349119169e-06,2.424607291039060419e-06,2.576145246729001668e-06,2.727683202418942918e-06,2.879221158108884168e-06,3.030759113798825418e-06,3.182297069488766667e-06,3.333835025178707917e-06,3.485372980868649167e-06,3.636910936558590416e-06,3.788448892248531666e-06,3.939986847938472492e-06,4.091524803628412895e-06,4.243062759318353298e-06,4.394600715008293700e-06,4.546138670698234103e-06,4.697676626388174506e-06,4.849214582078114908e-06,5.000752537768055311e-06,5.152290493457995714e-06,5.303828449147936116e-06,5.455366404837876519e-06,5.606904360527816922e-06,5.758442316217757324e-06,5.909980271907697727e-06,6.061518227597638130e-06,6.213056183287578532e-06,6.364594138977518935e-06,6.516132094667459338e-06,6.667670050357399740e-06,6.819208006047340143e-06,6.970745961737280546e-06,7.122283917427220948e-06,7.273821873117161351e-06,7.425359828807101754e-06,7.576897784497042156e-06,7.728435740186982559e-06,7.879973695876922962e-06,8.031511651566863364e-06,8.183049607256803767e-06,8.334587562946744170e-06,8.486125518636684572e-06,8.637663474326624975e-06,8.789201430016565378e-06,8.940739385706505780e-06,9.092277341396446183e-06,9.243815297086386586e-06,9.395353252776326988e-06,9.546891208466267391e-06 +0.000000000000000000e+00,1.496301038996743246e-07,2.992602077993486492e-07,4.488903116990230003e-07,5.985204155986974044e-07,7.481505194983718084e-07,8.977806233980462124e-07,1.047410727297720616e-06,1.197040831197395021e-06,1.346670935097069425e-06,1.496301038996743829e-06,1.645931142896418233e-06,1.795561246796092637e-06,1.945191350695767041e-06,2.094821454595441233e-06,2.244451558495115425e-06,2.394081662394789617e-06,2.543711766294463810e-06,2.693341870194138002e-06,2.842971974093812194e-06,2.992602077993486387e-06,3.142232181893160579e-06,3.291862285792834771e-06,3.441492389692508963e-06,3.591122493592183156e-06,3.740752597491857348e-06,3.890382701391531540e-06,4.040012805291205733e-06,4.189642909190879925e-06,4.339273013090554117e-06,4.488903116990228309e-06,4.638533220889902502e-06,4.788163324789576694e-06,4.937793428689250886e-06,5.087423532588925078e-06,5.237053636488599271e-06,5.386683740388273463e-06,5.536313844287947655e-06,5.685943948187621848e-06,5.835574052087296040e-06,5.985204155986970232e-06,6.134834259886644424e-06,6.284464363786318617e-06,6.434094467685992809e-06,6.583724571585667001e-06,6.733354675485341193e-06,6.882984779385015386e-06,7.032614883284689578e-06,7.182244987184363770e-06,7.331875091084037963e-06,7.481505194983712155e-06,7.631135298883386347e-06,7.780765402783061386e-06,7.930395506682736426e-06,8.080025610582411465e-06,8.229655714482086504e-06,8.379285818381761544e-06,8.528915922281436583e-06,8.678546026181111622e-06,8.828176130080786662e-06,8.977806233980461701e-06,9.127436337880136740e-06,9.277066441779811779e-06,9.426696545679486819e-06 +0.000000000000000000e+00,1.519021278231086771e-07,3.038042556462173541e-07,4.557063834693260312e-07,6.076085112924347082e-07,7.595106391155433853e-07,9.114127669386520624e-07,1.063314894761760739e-06,1.215217022584869416e-06,1.367119150407978094e-06,1.519021278231086771e-06,1.670923406054195448e-06,1.822825533877304125e-06,1.974727661700412590e-06,2.126629789523521055e-06,2.278531917346629521e-06,2.430434045169737986e-06,2.582336172992846451e-06,2.734238300815954917e-06,2.886140428639063382e-06,3.038042556462171847e-06,3.189944684285280312e-06,3.341846812108388778e-06,3.493748939931497243e-06,3.645651067754605708e-06,3.797553195577714174e-06,3.949455323400822639e-06,4.101357451223931104e-06,4.253259579047039570e-06,4.405161706870148035e-06,4.557063834693256500e-06,4.708965962516364965e-06,4.860868090339473431e-06,5.012770218162581896e-06,5.164672345985690361e-06,5.316574473808798827e-06,5.468476601631907292e-06,5.620378729455015757e-06,5.772280857278124223e-06,5.924182985101232688e-06,6.076085112924341153e-06,6.227987240747449618e-06,6.379889368570558084e-06,6.531791496393666549e-06,6.683693624216775014e-06,6.835595752039883480e-06,6.987497879862991945e-06,7.139400007686100410e-06,7.291302135509208876e-06,7.443204263332317341e-06,7.595106391155425806e-06,7.747008518978534271e-06,7.898910646801643584e-06,8.050812774624752896e-06,8.202714902447862208e-06,8.354617030270971521e-06,8.506519158094080833e-06,8.658421285917190145e-06,8.810323413740299458e-06,8.962225541563408770e-06,9.114127669386518082e-06,9.266029797209627395e-06,9.417931925032736707e-06,9.569834052855846019e-06 +0.000000000000000000e+00,1.552469881678107760e-07,3.104939763356215520e-07,4.657409645034323279e-07,6.209879526712431039e-07,7.762349408390538799e-07,9.314819290068646559e-07,1.086728917174675432e-06,1.241975905342486208e-06,1.397222893510296984e-06,1.552469881678107760e-06,1.707716869845918536e-06,1.862963858013729312e-06,2.018210846181540088e-06,2.173457834349350864e-06,2.328704822517161640e-06,2.483951810684972416e-06,2.639198798852783192e-06,2.794445787020593968e-06,2.949692775188404744e-06,3.104939763356215520e-06,3.260186751524026296e-06,3.415433739691837072e-06,3.570680727859647848e-06,3.725927716027458623e-06,3.881174704195268976e-06,4.036421692363079328e-06,4.191668680530889681e-06,4.346915668698700033e-06,4.502162656866510386e-06,4.657409645034320738e-06,4.812656633202131091e-06,4.967903621369941443e-06,5.123150609537751796e-06,5.278397597705562148e-06,5.433644585873372501e-06,5.588891574041182853e-06,5.744138562208993205e-06,5.899385550376803558e-06,6.054632538544613910e-06,6.209879526712424263e-06,6.365126514880234615e-06,6.520373503048044968e-06,6.675620491215855320e-06,6.830867479383665673e-06,6.986114467551476025e-06,7.141361455719286378e-06,7.296608443887096730e-06,7.451855432054907083e-06,7.607102420222717435e-06,7.762349408390527787e-06,7.917596396558338140e-06,8.072843384726148492e-06,8.228090372893958845e-06,8.383337361061769197e-06,8.538584349229579550e-06,8.693831337397389902e-06,8.849078325565200255e-06,9.004325313733010607e-06,9.159572301900820960e-06,9.314819290068631312e-06,9.470066278236441665e-06,9.625313266404252017e-06,9.780560254572062370e-06 +0.000000000000000000e+00,1.533983668714791245e-07,3.067967337429582491e-07,4.601951006144373471e-07,6.135934674859163923e-07,7.669918343573954374e-07,9.203902012288744825e-07,1.073788568100353528e-06,1.227186934971832573e-06,1.380585301843311618e-06,1.533983668714790663e-06,1.687382035586269708e-06,1.840780402457748753e-06,1.994178769329228010e-06,2.147577136200707479e-06,2.300975503072186947e-06,2.454373869943666416e-06,2.607772236815145885e-06,2.761170603686625353e-06,2.914568970558104822e-06,3.067967337429584291e-06,3.221365704301063759e-06,3.374764071172543228e-06,3.528162438044022697e-06,3.681560804915502165e-06,3.834959171786981634e-06,3.988357538658461102e-06,4.141755905529940571e-06,4.295154272401420040e-06,4.448552639272899508e-06,4.601951006144378977e-06,4.755349373015858446e-06,4.908747739887337914e-06,5.062146106758817383e-06,5.215544473630296852e-06,5.368942840501776320e-06,5.522341207373255789e-06,5.675739574244735258e-06,5.829137941116214726e-06,5.982536307987694195e-06,6.135934674859173663e-06,6.289333041730653132e-06,6.442731408602132601e-06,6.596129775473612069e-06,6.749528142345091538e-06,6.902926509216571007e-06,7.056324876088050475e-06,7.209723242959529944e-06,7.363121609831009413e-06,7.516519976702488881e-06,7.669918343573968350e-06,7.823316710445447818e-06,7.976715077316927287e-06,8.130113444188406756e-06,8.283511811059886224e-06,8.436910177931365693e-06,8.590308544802845162e-06,8.743706911674324630e-06,8.897105278545804099e-06,9.050503645417283568e-06,9.203902012288763036e-06,9.357300379160242505e-06,9.510698746031721974e-06,9.664097112903201442e-06 +0.000000000000000000e+00,1.554139098233108949e-07,3.108278196466217897e-07,4.662417294699326581e-07,6.216556392932434736e-07,7.770695491165542890e-07,9.324834589398651045e-07,1.087897368763175814e-06,1.243311278586486524e-06,1.398725188409797233e-06,1.554139098233107943e-06,1.709553008056418652e-06,1.864966917879729362e-06,2.020380827703040072e-06,2.175794737526350781e-06,2.331208647349661491e-06,2.486622557172972200e-06,2.642036466996282910e-06,2.797450376819593619e-06,2.952864286642904329e-06,3.108278196466215039e-06,3.263692106289525748e-06,3.419106016112836458e-06,3.574519925936147167e-06,3.729933835759457877e-06,3.885347745582768586e-06,4.040761655406079296e-06,4.196175565229390006e-06,4.351589475052700715e-06,4.507003384876011425e-06,4.662417294699322134e-06,4.817831204522632844e-06,4.973245114345943554e-06,5.128659024169254263e-06,5.284072933992564973e-06,5.439486843815875682e-06,5.594900753639186392e-06,5.750314663462497101e-06,5.905728573285807811e-06,6.061142483109118521e-06,6.216556392932429230e-06,6.371970302755739940e-06,6.527384212579050649e-06,6.682798122402361359e-06,6.838212032225672068e-06,6.993625942048982778e-06,7.149039851872293488e-06,7.304453761695604197e-06,7.459867671518914907e-06,7.615281581342225616e-06,7.770695491165535479e-06,7.926109400988846188e-06,8.081523310812156898e-06,8.236937220635467608e-06,8.392351130458778317e-06,8.547765040282089027e-06,8.703178950105399736e-06,8.858592859928710446e-06,9.014006769752021155e-06,9.169420679575331865e-06,9.324834589398642575e-06,9.480248499221953284e-06,9.635662409045263994e-06,9.791076318868574703e-06 +0.000000000000000000e+00,1.552469881678078114e-07,3.104939763356156227e-07,4.657409645034234341e-07,6.209879526712312455e-07,7.762349408390390568e-07,9.314819290068468682e-07,1.086728917174654680e-06,1.241975905342462491e-06,1.397222893510270302e-06,1.552469881678078114e-06,1.707716869845885925e-06,1.862963858013693736e-06,2.018210846181501548e-06,2.173457834349309359e-06,2.328704822517117170e-06,2.483951810684924982e-06,2.639198798852732793e-06,2.794445787020540605e-06,2.949692775188348416e-06,3.104939763356156227e-06,3.260186751523964039e-06,3.415433739691771850e-06,3.570680727859579661e-06,3.725927716027387473e-06,3.881174704195195284e-06,4.036421692363003095e-06,4.191668680530810907e-06,4.346915668698618718e-06,4.502162656866426530e-06,4.657409645034234341e-06,4.812656633202042152e-06,4.967903621369849964e-06,5.123150609537657775e-06,5.278397597705465586e-06,5.433644585873273398e-06,5.588891574041081209e-06,5.744138562208889020e-06,5.899385550376696832e-06,6.054632538544504643e-06,6.209879526712312455e-06,6.365126514880120266e-06,6.520373503047928077e-06,6.675620491215735889e-06,6.830867479383543700e-06,6.986114467551351511e-06,7.141361455719159323e-06,7.296608443886967134e-06,7.451855432054774945e-06,7.607102420222582757e-06,7.762349408390390568e-06,7.917596396558199227e-06,8.072843384726007885e-06,8.228090372893816543e-06,8.383337361061625202e-06,8.538584349229433860e-06,8.693831337397242519e-06,8.849078325565051177e-06,9.004325313732859835e-06,9.159572301900668494e-06,9.314819290068477152e-06,9.470066278236285811e-06,9.625313266404094469e-06,9.780560254571903127e-06 +0.000000000000000000e+00,1.533983668714744394e-07,3.067967337429488788e-07,4.601951006144233181e-07,6.135934674858977575e-07,7.669918343573721440e-07,9.203902012288465304e-07,1.073788568100320917e-06,1.227186934971795303e-06,1.380585301843269690e-06,1.533983668714744076e-06,1.687382035586218463e-06,1.840780402457692849e-06,1.994178769329167024e-06,2.147577136200641410e-06,2.300975503072115797e-06,2.454373869943590183e-06,2.607772236815064570e-06,2.761170603686538956e-06,2.914568970558013342e-06,3.067967337429487729e-06,3.221365704300962115e-06,3.374764071172436502e-06,3.528162438043910888e-06,3.681560804915385275e-06,3.834959171786859661e-06,3.988357538658334048e-06,4.141755905529808434e-06,4.295154272401282820e-06,4.448552639272757207e-06,4.601951006144231593e-06,4.755349373015705980e-06,4.908747739887180366e-06,5.062146106758654753e-06,5.215544473630129139e-06,5.368942840501603526e-06,5.522341207373077912e-06,5.675739574244552298e-06,5.829137941116026685e-06,5.982536307987501071e-06,6.135934674858975458e-06,6.289333041730449844e-06,6.442731408601924231e-06,6.596129775473398617e-06,6.749528142344873004e-06,6.902926509216347390e-06,7.056324876087821776e-06,7.209723242959296163e-06,7.363121609830770549e-06,7.516519976702244936e-06,7.669918343573719322e-06,7.823316710445193709e-06,7.976715077316668095e-06,8.130113444188142481e-06,8.283511811059616868e-06,8.436910177931091254e-06,8.590308544802565641e-06,8.743706911674040027e-06,8.897105278545514414e-06,9.050503645416988800e-06,9.203902012288463187e-06,9.357300379159937573e-06,9.510698746031411959e-06,9.664097112902886346e-06 +0.000000000000000000e+00,1.554139098233080626e-07,3.108278196466161252e-07,4.662417294699241878e-07,6.216556392932322504e-07,7.770695491165403130e-07,9.324834589398483756e-07,1.087897368763156332e-06,1.243311278586464289e-06,1.398725188409772246e-06,1.554139098233080202e-06,1.709553008056388159e-06,1.864966917879696116e-06,2.020380827703004073e-06,2.175794737526311818e-06,2.331208647349619563e-06,2.486622557172927308e-06,2.642036466996235052e-06,2.797450376819542797e-06,2.952864286642850542e-06,3.108278196466158287e-06,3.263692106289466032e-06,3.419106016112773777e-06,3.574519925936081522e-06,3.729933835759389267e-06,3.885347745582696589e-06,4.040761655406003910e-06,4.196175565229311232e-06,4.351589475052618553e-06,4.507003384875925874e-06,4.662417294699233196e-06,4.817831204522540517e-06,4.973245114345847839e-06,5.128659024169155160e-06,5.284072933992462482e-06,5.439486843815769803e-06,5.594900753639077125e-06,5.750314663462384446e-06,5.905728573285691767e-06,6.061142483108999089e-06,6.216556392932306410e-06,6.371970302755613732e-06,6.527384212578921053e-06,6.682798122402228375e-06,6.838212032225535696e-06,6.993625942048843018e-06,7.149039851872150339e-06,7.304453761695457660e-06,7.459867671518764982e-06,7.615281581342072303e-06,7.770695491165379625e-06,7.926109400988686946e-06,8.081523310811994268e-06,8.236937220635301589e-06,8.392351130458608911e-06,8.547765040281916232e-06,8.703178950105223553e-06,8.858592859928530875e-06,9.014006769751838196e-06,9.169420679575145518e-06,9.324834589398452839e-06,9.480248499221760161e-06,9.635662409045067482e-06,9.791076318868374804e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.570059000330586150e-07,3.140118000661172300e-07,4.710177000991758715e-07,6.280236001322345660e-07,7.850295001652932604e-07,9.420354001983519548e-07,1.099041300231410543e-06,1.256047200264469132e-06,1.413053100297527720e-06,1.570059000330586309e-06,1.727064900363644898e-06,1.884070800396703486e-06,2.041076700429762075e-06,2.198082600462820663e-06,2.355088500495879252e-06,2.512094400528937840e-06,2.669100300561996429e-06,2.826106200595055017e-06,2.983112100628113606e-06,3.140118000661172195e-06,3.297123900694230783e-06,3.454129800727289372e-06,3.611135700760347960e-06,3.768141600793406549e-06,3.925147500826465137e-06,4.082153400859524149e-06,4.239159300892583161e-06,4.396165200925642173e-06,4.553171100958701186e-06,4.710177000991760198e-06,4.867182901024819210e-06,5.024188801057878222e-06,5.181194701090937234e-06,5.338200601123996246e-06,5.495206501157055258e-06,5.652212401190114270e-06,5.809218301223173282e-06,5.966224201256232294e-06,6.123230101289291306e-06,6.280236001322350318e-06,6.437241901355409330e-06,6.594247801388468342e-06,6.751253701421527354e-06,6.908259601454586367e-06,7.065265501487645379e-06,7.222271401520704391e-06,7.379277301553763403e-06,7.536283201586822415e-06,7.693289101619880580e-06,7.850295001652938745e-06,8.007300901685996910e-06,8.164306801719055075e-06,8.321312701752113240e-06,8.478318601785171405e-06,8.635324501818229570e-06,8.792330401851287735e-06,8.949336301884345900e-06,9.106342201917404065e-06,9.263348101950462230e-06,9.420354001983520395e-06,9.577359902016578560e-06,9.734365802049636725e-06,9.891371702082694890e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.570059000330571327e-07,3.140118000661142654e-07,4.710177000991714246e-07,6.280236001322286367e-07,7.850295001652858489e-07,9.420354001983430610e-07,1.099041300231400379e-06,1.256047200264457697e-06,1.413053100297515015e-06,1.570059000330572333e-06,1.727064900363629651e-06,1.884070800396686969e-06,2.041076700429744287e-06,2.198082600462801605e-06,2.355088500495858923e-06,2.512094400528916241e-06,2.669100300561973559e-06,2.826106200595030877e-06,2.983112100628088195e-06,3.140118000661145513e-06,3.297123900694202831e-06,3.454129800727260149e-06,3.611135700760317467e-06,3.768141600793374785e-06,3.925147500826432103e-06,4.082153400859489421e-06,4.239159300892546739e-06,4.396165200925604057e-06,4.553171100958661375e-06,4.710177000991718693e-06,4.867182901024776011e-06,5.024188801057833329e-06,5.181194701090890647e-06,5.338200601123947965e-06,5.495206501157005283e-06,5.652212401190062601e-06,5.809218301223119919e-06,5.966224201256177237e-06,6.123230101289234555e-06,6.280236001322291873e-06,6.437241901355349191e-06,6.594247801388406509e-06,6.751253701421463827e-06,6.908259601454521145e-06,7.065265501487578463e-06,7.222271401520635781e-06,7.379277301553693099e-06,7.536283201586750417e-06,7.693289101619807735e-06,7.850295001652864206e-06,8.007300901685920677e-06,8.164306801718977148e-06,8.321312701752033619e-06,8.478318601785090090e-06,8.635324501818146561e-06,8.792330401851203032e-06,8.949336301884259503e-06,9.106342201917315974e-06,9.263348101950372445e-06,9.420354001983428916e-06,9.577359902016485387e-06,9.734365802049541858e-06,9.891371702082598329e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.416057458279776233e-07,2.832114916559552465e-07,4.248172374839328962e-07,5.664229833119105989e-07,7.080287291398883016e-07,8.496344749678660042e-07,9.912402207958437069e-07,1.132845966623821410e-06,1.274451712451799112e-06,1.416057458279776815e-06,1.557663204107754518e-06,1.699268949935732220e-06,1.840874695763709923e-06,1.982480441591687837e-06,2.124086187419665540e-06,2.265691933247643243e-06,2.407297679075620945e-06,2.548903424903598648e-06,2.690509170731576351e-06,2.832114916559554053e-06,2.973720662387531756e-06,3.115326408215509459e-06,3.256932154043487161e-06,3.398537899871464864e-06,3.540143645699442567e-06,3.681749391527420269e-06,3.823355137355397972e-06,3.964960883183375675e-06,4.106566629011353377e-06,4.248172374839331080e-06,4.389778120667308783e-06,4.531383866495286485e-06,4.672989612323264188e-06,4.814595358151241891e-06,4.956201103979219593e-06,5.097806849807197296e-06,5.239412595635174999e-06,5.381018341463152701e-06,5.522624087291130404e-06,5.664229833119108107e-06,5.805835578947085809e-06,5.947441324775063512e-06,6.089047070603041215e-06,6.230652816431018917e-06,6.372258562258996620e-06,6.513864308086974323e-06,6.655470053914952025e-06,6.797075799742929728e-06,6.938681545570907431e-06,7.080287291398885133e-06,7.221893037226862836e-06,7.363498783054840539e-06,7.505104528882818241e-06,7.646710274710795944e-06,7.788316020538773647e-06,7.929921766366751349e-06,8.071527512194729052e-06,8.213133258022706755e-06,8.354739003850684457e-06,8.496344749678662160e-06,8.637950495506639863e-06,8.779556241334617565e-06,8.921161987162595268e-06 +0.000000000000000000e+00,1.393352654403074245e-07,2.786705308806148490e-07,4.180057963209222735e-07,5.573410617612296981e-07,6.966763272015371226e-07,8.360115926418445471e-07,9.753468580821519716e-07,1.114682123522459396e-06,1.254017388962766821e-06,1.393352654403074245e-06,1.532687919843381670e-06,1.672023185283689094e-06,1.811358450723996519e-06,1.950693716164303943e-06,2.090028981604611580e-06,2.229364247044919216e-06,2.368699512485226852e-06,2.508034777925534488e-06,2.647370043365842125e-06,2.786705308806149761e-06,2.926040574246457397e-06,3.065375839686765033e-06,3.204711105127072670e-06,3.344046370567380306e-06,3.483381636007687942e-06,3.622716901447995579e-06,3.762052166888303215e-06,3.901387432328610428e-06,4.040722697768917640e-06,4.180057963209224853e-06,4.319393228649532066e-06,4.458728494089839279e-06,4.598063759530146491e-06,4.737399024970453704e-06,4.876734290410760917e-06,5.016069555851068130e-06,5.155404821291375342e-06,5.294740086731682555e-06,5.434075352171989768e-06,5.573410617612296981e-06,5.712745883052604193e-06,5.852081148492911406e-06,5.991416413933218619e-06,6.130751679373525832e-06,6.270086944813833044e-06,6.409422210254140257e-06,6.548757475694447470e-06,6.688092741134754683e-06,6.827428006575061895e-06,6.966763272015369108e-06,7.106098537455676321e-06,7.245433802895983534e-06,7.384769068336290746e-06,7.524104333776597959e-06,7.663439599216906019e-06,7.802774864657214079e-06,7.942110130097522139e-06,8.081445395537830198e-06,8.220780660978138258e-06,8.360115926418446318e-06,8.499451191858754378e-06,8.638786457299062438e-06,8.778121722739370497e-06 +0.000000000000000000e+00,1.427681367008112530e-07,2.855362734016225059e-07,4.283044101024337589e-07,5.710725468032450119e-07,7.138406835040563178e-07,8.566088202048676237e-07,9.993769569056789296e-07,1.142145093606490236e-06,1.284913230307301541e-06,1.427681367008112847e-06,1.570449503708924153e-06,1.713217640409735459e-06,1.855985777110546765e-06,1.998753913811357859e-06,2.141522050512168953e-06,2.284290187212980048e-06,2.427058323913791142e-06,2.569826460614602236e-06,2.712594597315413330e-06,2.855362734016224424e-06,2.998130870717035518e-06,3.140899007417846613e-06,3.283667144118657707e-06,3.426435280819468801e-06,3.569203417520279895e-06,3.711971554221090989e-06,3.854739690921902507e-06,3.997507827622714024e-06,4.140275964323525542e-06,4.283044101024337060e-06,4.425812237725148577e-06,4.568580374425960095e-06,4.711348511126771613e-06,4.854116647827583130e-06,4.996884784528394648e-06,5.139652921229206166e-06,5.282421057930017684e-06,5.425189194630829201e-06,5.567957331331640719e-06,5.710725468032452237e-06,5.853493604733263754e-06,5.996261741434075272e-06,6.139029878134886790e-06,6.281798014835698307e-06,6.424566151536509825e-06,6.567334288237321343e-06,6.710102424938132860e-06,6.852870561638944378e-06,6.995638698339755896e-06,7.138406835040567413e-06,7.281174971741378931e-06,7.423943108442190449e-06,7.566711245143001966e-06,7.709479381843813484e-06,7.852247518544625002e-06,7.995015655245436519e-06,8.137783791946248037e-06,8.280551928647059555e-06,8.423320065347871072e-06,8.566088202048682590e-06,8.708856338749494108e-06,8.851624475450305625e-06,8.994392612151117143e-06 +0.000000000000000000e+00,1.416057458279689147e-07,2.832114916559378294e-07,4.248172374839067441e-07,5.664229833118756588e-07,7.080287291398445735e-07,8.496344749678134882e-07,9.912402207957825088e-07,1.132845966623751529e-06,1.274451712451720550e-06,1.416057458279689570e-06,1.557663204107658591e-06,1.699268949935627612e-06,1.840874695763596632e-06,1.982480441591565865e-06,2.124086187419535097e-06,2.265691933247504329e-06,2.407297679075473562e-06,2.548903424903442794e-06,2.690509170731412026e-06,2.832114916559381259e-06,2.973720662387350491e-06,3.115326408215319723e-06,3.256932154043288956e-06,3.398537899871258188e-06,3.540143645699227420e-06,3.681749391527196653e-06,3.823355137355165885e-06,3.964960883183135117e-06,4.106566629011104350e-06,4.248172374839073582e-06,4.389778120667042814e-06,4.531383866495012047e-06,4.672989612322981279e-06,4.814595358150950511e-06,4.956201103978919744e-06,5.097806849806888976e-06,5.239412595634858208e-06,5.381018341462827441e-06,5.522624087290796673e-06,5.664229833118765905e-06,5.805835578946735138e-06,5.947441324774704370e-06,6.089047070602673602e-06,6.230652816430642835e-06,6.372258562258612067e-06,6.513864308086581299e-06,6.655470053914550532e-06,6.797075799742519764e-06,6.938681545570488996e-06,7.080287291398458229e-06,7.221893037226427461e-06,7.363498783054396693e-06,7.505104528882365926e-06,7.646710274710335158e-06,7.788316020538304390e-06,7.929921766366273623e-06,8.071527512194242855e-06,8.213133258022212087e-06,8.354739003850181320e-06,8.496344749678150552e-06,8.637950495506119784e-06,8.779556241334089017e-06,8.921161987162058249e-06 +0.000000000000000000e+00,1.393352654402991659e-07,2.786705308805983319e-07,4.180057963208974978e-07,5.573410617611966638e-07,6.966763272014958297e-07,8.360115926417949957e-07,9.753468580820941616e-07,1.114682123522393328e-06,1.254017388962692494e-06,1.393352654402991659e-06,1.532687919843290825e-06,1.672023185283589991e-06,1.811358450723889157e-06,1.950693716164188323e-06,2.090028981604487489e-06,2.229364247044786655e-06,2.368699512485085821e-06,2.508034777925384987e-06,2.647370043365684153e-06,2.786705308805983319e-06,2.926040574246282485e-06,3.065375839686581651e-06,3.204711105126880817e-06,3.344046370567179983e-06,3.483381636007479149e-06,3.622716901447778315e-06,3.762052166888077481e-06,3.901387432328376646e-06,4.040722697768676236e-06,4.180057963208975825e-06,4.319393228649275415e-06,4.458728494089575004e-06,4.598063759529874594e-06,4.737399024970174183e-06,4.876734290410473773e-06,5.016069555850773362e-06,5.155404821291072952e-06,5.294740086731372541e-06,5.434075352171672131e-06,5.573410617611971720e-06,5.712745883052271309e-06,5.852081148492570899e-06,5.991416413932870488e-06,6.130751679373170078e-06,6.270086944813469667e-06,6.409422210253769257e-06,6.548757475694068846e-06,6.688092741134368436e-06,6.827428006574668025e-06,6.966763272014967615e-06,7.106098537455267204e-06,7.245433802895566794e-06,7.384769068335866383e-06,7.524104333776165972e-06,7.663439599216465562e-06,7.802774864656765151e-06,7.942110130097064741e-06,8.081445395537364330e-06,8.220780660977663920e-06,8.360115926417963509e-06,8.499451191858263099e-06,8.638786457298562688e-06,8.778121722738862278e-06 +0.000000000000000000e+00,1.427681367008043708e-07,2.855362734016087417e-07,4.283044101024131125e-07,5.710725468032174833e-07,7.138406835040218012e-07,8.566088202048261191e-07,9.993769569056304370e-07,1.142145093606434755e-06,1.284913230307239073e-06,1.427681367008043391e-06,1.570449503708847709e-06,1.713217640409652026e-06,1.855985777110456344e-06,1.998753913811260450e-06,2.141522050512064345e-06,2.284290187212868239e-06,2.427058323913672134e-06,2.569826460614476028e-06,2.712594597315279922e-06,2.855362734016083817e-06,2.998130870716887711e-06,3.140899007417691605e-06,3.283667144118495500e-06,3.426435280819299394e-06,3.569203417520103289e-06,3.711971554220907183e-06,3.854739690921711077e-06,3.997507827622514972e-06,4.140275964323318866e-06,4.283044101024122760e-06,4.425812237724926655e-06,4.568580374425730549e-06,4.711348511126534444e-06,4.854116647827338338e-06,4.996884784528142232e-06,5.139652921228946127e-06,5.282421057929750021e-06,5.425189194630553915e-06,5.567957331331357810e-06,5.710725468032161704e-06,5.853493604732965599e-06,5.996261741433769493e-06,6.139029878134573387e-06,6.281798014835377282e-06,6.424566151536181176e-06,6.567334288236985070e-06,6.710102424937788965e-06,6.852870561638592859e-06,6.995638698339396754e-06,7.138406835040200648e-06,7.281174971741004542e-06,7.423943108441808437e-06,7.566711245142612331e-06,7.709479381843415378e-06,7.852247518544218426e-06,7.995015655245021473e-06,8.137783791945824520e-06,8.280551928646627568e-06,8.423320065347430615e-06,8.566088202048233662e-06,8.708856338749036710e-06,8.851624475449839757e-06,8.994392612150642805e-06 +0.000000000000000000e+00,1.461128928220781504e-07,2.922257856441563008e-07,4.383386784662344777e-07,5.844515712883127075e-07,7.305644641103909374e-07,8.766773569324691672e-07,1.022790249754547397e-06,1.168903142576625627e-06,1.315016035398703857e-06,1.461128928220782086e-06,1.607241821042860316e-06,1.753354713864938546e-06,1.899467606687016776e-06,2.045580499509094794e-06,2.191693392331172812e-06,2.337806285153250830e-06,2.483919177975328848e-06,2.630032070797406866e-06,2.776144963619484884e-06,2.922257856441562902e-06,3.068370749263640920e-06,3.214483642085718939e-06,3.360596534907796957e-06,3.506709427729874975e-06,3.652822320551952993e-06,3.798935213374031011e-06,3.945048106196108605e-06,4.091160999018186200e-06,4.237273891840263794e-06,4.383386784662341389e-06,4.529499677484418984e-06,4.675612570306496578e-06,4.821725463128574173e-06,4.967838355950651767e-06,5.113951248772729362e-06,5.260064141594806956e-06,5.406177034416884551e-06,5.552289927238962145e-06,5.698402820061039740e-06,5.844515712883117334e-06,5.990628605705194929e-06,6.136741498527272524e-06,6.282854391349350118e-06,6.428967284171427713e-06,6.575080176993505307e-06,6.721193069815582902e-06,6.867305962637660496e-06,7.013418855459738091e-06,7.159531748281815685e-06,7.305644641103893280e-06,7.451757533925970874e-06,7.597870426748048469e-06,7.743983319570126064e-06,7.890096212392203658e-06,8.036209105214281253e-06,8.182321998036358847e-06,8.328434890858436442e-06,8.474547783680514036e-06,8.620660676502591631e-06,8.766773569324669225e-06,8.912886462146746820e-06,9.058999354968824415e-06,9.205112247790902009e-06 +0.000000000000000000e+00,1.438649560473294721e-07,2.877299120946589442e-07,4.315948681419883898e-07,5.754598241893177824e-07,7.193247802366471751e-07,8.631897362839765678e-07,1.007054692331305960e-06,1.150919648378635353e-06,1.294784604425964746e-06,1.438649560473294138e-06,1.582514516520623531e-06,1.726379472567952924e-06,1.870244428615282316e-06,2.014109384662611921e-06,2.157974340709941525e-06,2.301839296757271130e-06,2.445704252804600734e-06,2.589569208851930339e-06,2.733434164899259943e-06,2.877299120946589547e-06,3.021164076993919152e-06,3.165029033041248756e-06,3.308893989088578361e-06,3.452758945135907965e-06,3.596623901183237570e-06,3.740488857230567174e-06,3.884353813277896778e-06,4.028218769325226383e-06,4.172083725372555987e-06,4.315948681419885592e-06,4.459813637467215196e-06,4.603678593514544801e-06,4.747543549561874405e-06,4.891408505609204009e-06,5.035273461656533614e-06,5.179138417703863218e-06,5.323003373751192823e-06,5.466868329798522427e-06,5.610733285845852032e-06,5.754598241893181636e-06,5.898463197940511240e-06,6.042328153987840845e-06,6.186193110035170449e-06,6.330058066082500054e-06,6.473923022129829658e-06,6.617787978177159263e-06,6.761652934224488867e-06,6.905517890271818471e-06,7.049382846319148076e-06,7.193247802366477680e-06,7.337112758413807285e-06,7.480977714461136889e-06,7.624842670508466494e-06,7.768707626555795251e-06,7.912572582603124855e-06,8.056437538650454460e-06,8.200302494697784064e-06,8.344167450745113669e-06,8.488032406792443273e-06,8.631897362839772878e-06,8.775762318887102482e-06,8.919627274934432086e-06,9.063492230981761691e-06 +0.000000000000000000e+00,1.469848263375499018e-07,2.939696526750998036e-07,4.409544790126497319e-07,5.879393053501997131e-07,7.349241316877496943e-07,8.819089580252996755e-07,1.028893784362849763e-06,1.175878610700399850e-06,1.322863437037949937e-06,1.469848263375500024e-06,1.616833089713050111e-06,1.763817916050600198e-06,1.910802742388150285e-06,2.057787568725700372e-06,2.204772395063250459e-06,2.351757221400800546e-06,2.498742047738350634e-06,2.645726874075900721e-06,2.792711700413450808e-06,2.939696526751000895e-06,3.086681353088550982e-06,3.233666179426101069e-06,3.380651005763651156e-06,3.527635832101201243e-06,3.674620658438751330e-06,3.821605484776301417e-06,3.968590311113851928e-06,4.115575137451402439e-06,4.262559963788952949e-06,4.409544790126503460e-06,4.556529616464053970e-06,4.703514442801604481e-06,4.850499269139154992e-06,4.997484095476705502e-06,5.144468921814256013e-06,5.291453748151806524e-06,5.438438574489357034e-06,5.585423400826907545e-06,5.732408227164458055e-06,5.879393053502008566e-06,6.026377879839559077e-06,6.173362706177109587e-06,6.320347532514660098e-06,6.467332358852210608e-06,6.614317185189761119e-06,6.761302011527311630e-06,6.908286837864862140e-06,7.055271664202412651e-06,7.202256490539963161e-06,7.349241316877513672e-06,7.496226143215064183e-06,7.643210969552614693e-06,7.790195795890165204e-06,7.937180622227715715e-06,8.084165448565266225e-06,8.231150274902816736e-06,8.378135101240367246e-06,8.525119927577917757e-06,8.672104753915468268e-06,8.819089580253018778e-06,8.966074406590569289e-06,9.113059232928119799e-06,9.260044059265670310e-06 +0.000000000000000000e+00,1.461128928220710565e-07,2.922257856441421130e-07,4.383386784662131960e-07,5.844515712882843319e-07,7.305644641103554679e-07,8.766773569324266038e-07,1.022790249754497846e-06,1.168903142576569087e-06,1.315016035398640329e-06,1.461128928220711571e-06,1.607241821042782813e-06,1.753354713864854055e-06,1.899467606686925296e-06,2.045580499508996538e-06,2.191693392331067780e-06,2.337806285153139022e-06,2.483919177975210264e-06,2.630032070797281505e-06,2.776144963619352747e-06,2.922257856441423989e-06,3.068370749263495231e-06,3.214483642085566473e-06,3.360596534907637714e-06,3.506709427729708956e-06,3.652822320551780198e-06,3.798935213373851440e-06,3.945048106195922258e-06,4.091160999017993076e-06,4.237273891840063895e-06,4.383386784662134713e-06,4.529499677484205531e-06,4.675612570306276350e-06,4.821725463128347168e-06,4.967838355950417986e-06,5.113951248772488804e-06,5.260064141594559623e-06,5.406177034416630441e-06,5.552289927238701259e-06,5.698402820060772077e-06,5.844515712882842896e-06,5.990628605704913714e-06,6.136741498526984532e-06,6.282854391349055351e-06,6.428967284171126169e-06,6.575080176993196987e-06,6.721193069815267805e-06,6.867305962637338624e-06,7.013418855459409442e-06,7.159531748281480260e-06,7.305644641103551079e-06,7.451757533925621897e-06,7.597870426747692715e-06,7.743983319569763533e-06,7.890096212391834352e-06,8.036209105213905170e-06,8.182321998035975988e-06,8.328434890858046807e-06,8.474547783680117625e-06,8.620660676502188443e-06,8.766773569324259261e-06,8.912886462146330080e-06,9.058999354968400898e-06,9.205112247790471716e-06 +0.000000000000000000e+00,1.438649560473216370e-07,2.877299120946432740e-07,4.315948681419648846e-07,5.754598241892864422e-07,7.193247802366079998e-07,8.631897362839295574e-07,1.007054692331251115e-06,1.150919648378572673e-06,1.294784604425894230e-06,1.438649560473215788e-06,1.582514516520537346e-06,1.726379472567858903e-06,1.870244428615180461e-06,2.014109384662501807e-06,2.157974340709822941e-06,2.301839296757144075e-06,2.445704252804465209e-06,2.589569208851786343e-06,2.733434164899107477e-06,2.877299120946428611e-06,3.021164076993749745e-06,3.165029033041070879e-06,3.308893989088392013e-06,3.452758945135713148e-06,3.596623901183034282e-06,3.740488857230355416e-06,3.884353813277676550e-06,4.028218769324997684e-06,4.172083725372318818e-06,4.315948681419639952e-06,4.459813637466961086e-06,4.603678593514282220e-06,4.747543549561603354e-06,4.891408505608924489e-06,5.035273461656245623e-06,5.179138417703566757e-06,5.323003373750887891e-06,5.466868329798209025e-06,5.610733285845530159e-06,5.754598241892851293e-06,5.898463197940172427e-06,6.042328153987493561e-06,6.186193110034814695e-06,6.330058066082135830e-06,6.473923022129456964e-06,6.617787978176778098e-06,6.761652934224099232e-06,6.905517890271420366e-06,7.049382846318741500e-06,7.193247802366062634e-06,7.337112758413383768e-06,7.480977714460704902e-06,7.624842670508026036e-06,7.768707626555348018e-06,7.912572582602670846e-06,8.056437538649993674e-06,8.200302494697316502e-06,8.344167450744639330e-06,8.488032406791962158e-06,8.631897362839284987e-06,8.775762318886607815e-06,8.919627274933930643e-06,9.063492230981253471e-06 +0.000000000000000000e+00,1.469848263375431785e-07,2.939696526750863570e-07,4.409544790126295090e-07,5.879393053501726080e-07,7.349241316877157071e-07,8.819089580252588062e-07,1.028893784362801905e-06,1.175878610700345004e-06,1.322863437037888103e-06,1.469848263375431202e-06,1.616833089712974302e-06,1.763817916050517401e-06,1.910802742388060500e-06,2.057787568725603811e-06,2.204772395063147121e-06,2.351757221400690432e-06,2.498742047738233743e-06,2.645726874075777054e-06,2.792711700413320365e-06,2.939696526750863676e-06,3.086681353088406986e-06,3.233666179425950297e-06,3.380651005763493608e-06,3.527635832101036919e-06,3.674620658438580230e-06,3.821605484776123540e-06,3.968590311113667275e-06,4.115575137451211009e-06,4.262559963788754744e-06,4.409544790126298478e-06,4.556529616463842212e-06,4.703514442801385947e-06,4.850499269138929681e-06,4.997484095476473415e-06,5.144468921814017150e-06,5.291453748151560884e-06,5.438438574489104618e-06,5.585423400826648353e-06,5.732408227164192087e-06,5.879393053501735821e-06,6.026377879839279556e-06,6.173362706176823290e-06,6.320347532514367024e-06,6.467332358851910759e-06,6.614317185189454493e-06,6.761302011526998227e-06,6.908286837864541962e-06,7.055271664202085696e-06,7.202256490539629430e-06,7.349241316877173165e-06,7.496226143214716899e-06,7.643210969552260634e-06,7.790195795889804368e-06,7.937180622227348102e-06,8.084165448564891837e-06,8.231150274902435571e-06,8.378135101239979305e-06,8.525119927577523040e-06,8.672104753915066774e-06,8.819089580252610508e-06,8.966074406590154243e-06,9.113059232927697977e-06,9.260044059265241711e-06 +0.000000000000000000e+00,1.505328694200349465e-07,3.010657388400698930e-07,4.515986082601048395e-07,6.021314776801397860e-07,7.526643471001747325e-07,9.031972165202096790e-07,1.053730085940244625e-06,1.204262955360279572e-06,1.354795824780314518e-06,1.505328694200349465e-06,1.655861563620384411e-06,1.806394433040419358e-06,1.956927302460454304e-06,2.107460171880489251e-06,2.257993041300524197e-06,2.408525910720559144e-06,2.559058780140594090e-06,2.709591649560629037e-06,2.860124518980663983e-06,3.010657388400698930e-06,3.161190257820733876e-06,3.311723127240768823e-06,3.462255996660803769e-06,3.612788866080838716e-06,3.763321735500873662e-06,3.913854604920908609e-06,4.064387474340943132e-06,4.214920343760977655e-06,4.365453213181012178e-06,4.515986082601046701e-06,4.666518952021081224e-06,4.817051821441115747e-06,4.967584690861150270e-06,5.118117560281184793e-06,5.268650429701219316e-06,5.419183299121253839e-06,5.569716168541288362e-06,5.720249037961322885e-06,5.870781907381357408e-06,6.021314776801391931e-06,6.171847646221426454e-06,6.322380515641460977e-06,6.472913385061495500e-06,6.623446254481530023e-06,6.773979123901564546e-06,6.924511993321599069e-06,7.075044862741633592e-06,7.225577732161668114e-06,7.376110601581702637e-06,7.526643471001737160e-06,7.677176340421771683e-06,7.827709209841805359e-06,7.978242079261839035e-06,8.128774948681872711e-06,8.279307818101906387e-06,8.429840687521940063e-06,8.580373556941973739e-06,8.730906426362007415e-06,8.881439295782041091e-06,9.031972165202074767e-06,9.182505034622108443e-06,9.333037904042142119e-06,9.483570773462175795e-06 +0.000000000000000000e+00,1.483391200063195284e-07,2.966782400126390569e-07,4.450173600189585588e-07,5.933564800252780079e-07,7.416956000315974569e-07,8.900347200379169059e-07,1.038373840044236355e-06,1.186712960050555804e-06,1.335052080056875253e-06,1.483391200063194702e-06,1.631730320069514151e-06,1.780069440075833600e-06,1.928408560082153049e-06,2.076747680088472710e-06,2.225086800094792371e-06,2.373425920101112032e-06,2.521765040107431692e-06,2.670104160113751353e-06,2.818443280120071014e-06,2.966782400126390675e-06,3.115121520132710335e-06,3.263460640139029996e-06,3.411799760145349657e-06,3.560138880151669318e-06,3.708478000157988979e-06,3.856817120164308639e-06,4.005156240170628724e-06,4.153495360176948808e-06,4.301834480183268892e-06,4.450173600189588977e-06,4.598512720195909061e-06,4.746851840202229145e-06,4.895190960208549230e-06,5.043530080214869314e-06,5.191869200221189398e-06,5.340208320227509482e-06,5.488547440233829567e-06,5.636886560240149651e-06,5.785225680246469735e-06,5.933564800252789820e-06,6.081903920259109904e-06,6.230243040265429988e-06,6.378582160271750073e-06,6.526921280278070157e-06,6.675260400284390241e-06,6.823599520290710325e-06,6.971938640297030410e-06,7.120277760303350494e-06,7.268616880309670578e-06,7.416956000315990663e-06,7.565295120322310747e-06,7.713634240328630831e-06,7.861973360334950916e-06,8.010312480341271000e-06,8.158651600347591084e-06,8.306990720353911169e-06,8.455329840360231253e-06,8.603668960366551337e-06,8.752008080372871421e-06,8.900347200379191506e-06,9.048686320385511590e-06,9.197025440391831674e-06,9.345364560398151759e-06 +0.000000000000000000e+00,1.510952840422471863e-07,3.021905680844943725e-07,4.532858521267415324e-07,6.043811361689886392e-07,7.554764202112357461e-07,9.065717042534828529e-07,1.057666988295729854e-06,1.208762272337976855e-06,1.359857556380223856e-06,1.510952840422470857e-06,1.662048124464717858e-06,1.813143408506964859e-06,1.964238692549211860e-06,2.115333976591458861e-06,2.266429260633705862e-06,2.417524544675952863e-06,2.568619828718199864e-06,2.719715112760446865e-06,2.870810396802693866e-06,3.021905680844940867e-06,3.173000964887187868e-06,3.324096248929434869e-06,3.475191532971681870e-06,3.626286817013928871e-06,3.777382101056175872e-06,3.928477385098422873e-06,4.079572669140669874e-06,4.230667953182916875e-06,4.381763237225163876e-06,4.532858521267410877e-06,4.683953805309657878e-06,4.835049089351904879e-06,4.986144373394151880e-06,5.137239657436398881e-06,5.288334941478645882e-06,5.439430225520892883e-06,5.590525509563139884e-06,5.741620793605386884e-06,5.892716077647633885e-06,6.043811361689880886e-06,6.194906645732127887e-06,6.346001929774374888e-06,6.497097213816621889e-06,6.648192497858868890e-06,6.799287781901115891e-06,6.950383065943362892e-06,7.101478349985609893e-06,7.252573634027856894e-06,7.403668918070103895e-06,7.554764202112350896e-06,7.705859486154598744e-06,7.856954770196847439e-06,8.008050054239096134e-06,8.159145338281344829e-06,8.310240622323593525e-06,8.461335906365842220e-06,8.612431190408090915e-06,8.763526474450339610e-06,8.914621758492588305e-06,9.065717042534837000e-06,9.216812326577085695e-06,9.367907610619334390e-06,9.519002894661583085e-06 +0.000000000000000000e+00,1.505328694200302878e-07,3.010657388400605756e-07,4.515986082600908634e-07,6.021314776801211513e-07,7.526643471001514391e-07,9.031972165201817269e-07,1.053730085940212015e-06,1.204262955360242303e-06,1.354795824780272590e-06,1.505328694200302878e-06,1.655861563620333166e-06,1.806394433040363454e-06,1.956927302460393742e-06,2.107460171880424029e-06,2.257993041300454317e-06,2.408525910720484605e-06,2.559058780140514893e-06,2.709591649560545181e-06,2.860124518980575468e-06,3.010657388400605756e-06,3.161190257820636044e-06,3.311723127240666332e-06,3.462255996660696620e-06,3.612788866080726908e-06,3.763321735500757195e-06,3.913854604920787483e-06,4.064387474340817771e-06,4.214920343760848059e-06,4.365453213180878347e-06,4.515986082600908634e-06,4.666518952020938922e-06,4.817051821440969210e-06,4.967584690860999498e-06,5.118117560281029786e-06,5.268650429701060074e-06,5.419183299121090361e-06,5.569716168541120649e-06,5.720249037961150937e-06,5.870781907381181225e-06,6.021314776801211513e-06,6.171847646221241800e-06,6.322380515641272088e-06,6.472913385061302376e-06,6.623446254481332664e-06,6.773979123901362952e-06,6.924511993321393240e-06,7.075044862741423527e-06,7.225577732161453815e-06,7.376110601581484103e-06,7.526643471001514391e-06,7.677176340421544679e-06,7.827709209841574966e-06,7.978242079261605254e-06,8.128774948681635542e-06,8.279307818101665830e-06,8.429840687521696118e-06,8.580373556941726405e-06,8.730906426361756693e-06,8.881439295781786981e-06,9.031972165201817269e-06,9.182505034621847557e-06,9.333037904041877845e-06,9.483570773461908132e-06 +0.000000000000000000e+00,1.483391200063135727e-07,2.966782400126271455e-07,4.450173600189407182e-07,5.933564800252542910e-07,7.416956000315678108e-07,8.900347200378813306e-07,1.038373840044194850e-06,1.186712960050508370e-06,1.335052080056821890e-06,1.483391200063135410e-06,1.631730320069448930e-06,1.780069440075762449e-06,1.928408560082075969e-06,2.076747680088389701e-06,2.225086800094703432e-06,2.373425920101017164e-06,2.521765040107330895e-06,2.670104160113644627e-06,2.818443280119958358e-06,2.966782400126272090e-06,3.115121520132585822e-06,3.263460640138899553e-06,3.411799760145213285e-06,3.560138880151527016e-06,3.708478000157840748e-06,3.856817120164154479e-06,4.005156240170467787e-06,4.153495360176781095e-06,4.301834480183094404e-06,4.450173600189407712e-06,4.598512720195721020e-06,4.746851840202034328e-06,4.895190960208347636e-06,5.043530080214660944e-06,5.191869200220974252e-06,5.340208320227287560e-06,5.488547440233600868e-06,5.636886560239914176e-06,5.785225680246227484e-06,5.933564800252540792e-06,6.081903920258854100e-06,6.230243040265167408e-06,6.378582160271480716e-06,6.526921280277794024e-06,6.675260400284107332e-06,6.823599520290420640e-06,6.971938640296733948e-06,7.120277760303047256e-06,7.268616880309360564e-06,7.416956000315673872e-06,7.565295120321987180e-06,7.713634240328300488e-06,7.861973360334613796e-06,8.010312480340927105e-06,8.158651600347240413e-06,8.306990720353553721e-06,8.455329840359867029e-06,8.603668960366180337e-06,8.752008080372493645e-06,8.900347200378806953e-06,9.048686320385120261e-06,9.197025440391433569e-06,9.345364560397746877e-06 +0.000000000000000000e+00,1.510952840422419188e-07,3.021905680844838376e-07,4.532858521267257564e-07,6.043811361689676752e-07,7.554764202112095939e-07,9.065717042534515127e-07,1.057666988295693432e-06,1.208762272337935350e-06,1.359857556380177269e-06,1.510952840422419188e-06,1.662048124464661107e-06,1.813143408506903025e-06,1.964238692549144944e-06,2.115333976591386863e-06,2.266429260633628782e-06,2.417524544675870701e-06,2.568619828718112619e-06,2.719715112760354538e-06,2.870810396802596457e-06,3.021905680844838376e-06,3.173000964887080295e-06,3.324096248929322213e-06,3.475191532971564132e-06,3.626286817013806051e-06,3.777382101056047970e-06,3.928477385098289888e-06,4.079572669140531807e-06,4.230667953182773726e-06,4.381763237225015645e-06,4.532858521267257564e-06,4.683953805309499482e-06,4.835049089351741401e-06,4.986144373393983320e-06,5.137239657436225239e-06,5.288334941478467158e-06,5.439430225520709076e-06,5.590525509562950995e-06,5.741620793605192914e-06,5.892716077647434833e-06,6.043811361689676752e-06,6.194906645731918670e-06,6.346001929774160589e-06,6.497097213816402508e-06,6.648192497858644427e-06,6.799287781900886345e-06,6.950383065943128264e-06,7.101478349985370183e-06,7.252573634027612102e-06,7.403668918069854021e-06,7.554764202112095939e-06,7.705859486154337858e-06,7.856954770196579777e-06,8.008050054238821696e-06,8.159145338281063615e-06,8.310240622323305533e-06,8.461335906365547452e-06,8.612431190407789371e-06,8.763526474450031290e-06,8.914621758492273209e-06,9.065717042534515127e-06,9.216812326576757046e-06,9.367907610618998965e-06,9.519002894661240884e-06 +0.000000000000000000e+00,1.547323500587313963e-07,3.094647001174627926e-07,4.641970501761942154e-07,6.189294002349256911e-07,7.736617502936571668e-07,9.283941003523886425e-07,1.083126450411120012e-06,1.237858800469851382e-06,1.392591150528582752e-06,1.547323500587314122e-06,1.702055850646045492e-06,1.856788200704776862e-06,2.011520550763508231e-06,2.166252900822239601e-06,2.320985250880970971e-06,2.475717600939702341e-06,2.630449950998433711e-06,2.785182301057165081e-06,2.939914651115896450e-06,3.094647001174627820e-06,3.249379351233359190e-06,3.404111701292090560e-06,3.558844051350821930e-06,3.713576401409553300e-06,3.868308751468284669e-06,4.023041101527016463e-06,4.177773451585748256e-06,4.332505801644480050e-06,4.487238151703211843e-06,4.641970501761943636e-06,4.796702851820675430e-06,4.951435201879407223e-06,5.106167551938139016e-06,5.260899901996870810e-06,5.415632252055602603e-06,5.570364602114334396e-06,5.725096952173066190e-06,5.879829302231797983e-06,6.034561652290529776e-06,6.189294002349261570e-06,6.344026352407993363e-06,6.498758702466725157e-06,6.653491052525456950e-06,6.808223402584188743e-06,6.962955752642920537e-06,7.117688102701652330e-06,7.272420452760384123e-06,7.427152802819115917e-06,7.581885152877847710e-06,7.736617502936579503e-06,7.891349852995311297e-06,8.046082203054043090e-06,8.200814553112774883e-06,8.355546903171506677e-06,8.510279253230238470e-06,8.665011603288970263e-06,8.819743953347702057e-06,8.974476303406433850e-06,9.129208653465165644e-06,9.283941003523897437e-06,9.438673353582629230e-06,9.593405703641361024e-06,9.748138053700092817e-06 +0.000000000000000000e+00,1.526728691849840626e-07,3.053457383699681253e-07,4.580186075549522143e-07,6.106914767399363564e-07,7.633643459249204984e-07,9.160372151099046405e-07,1.068710084294888782e-06,1.221382953479872925e-06,1.374055822664857067e-06,1.526728691849841209e-06,1.679401561034825351e-06,1.832074430219809493e-06,1.984747299404793635e-06,2.137420168589777565e-06,2.290093037774761495e-06,2.442765906959745426e-06,2.595438776144729356e-06,2.748111645329713286e-06,2.900784514514697216e-06,3.053457383699681147e-06,3.206130252884665077e-06,3.358803122069649007e-06,3.511475991254632937e-06,3.664148860439616868e-06,3.816821729624600375e-06,3.969494598809583881e-06,4.122167467994567388e-06,4.274840337179550895e-06,4.427513206364534402e-06,4.580186075549517908e-06,4.732858944734501415e-06,4.885531813919484922e-06,5.038204683104468429e-06,5.190877552289451935e-06,5.343550421474435442e-06,5.496223290659418949e-06,5.648896159844402456e-06,5.801569029029385962e-06,5.954241898214369469e-06,6.106914767399352976e-06,6.259587636584336483e-06,6.412260505769319989e-06,6.564933374954303496e-06,6.717606244139287003e-06,6.870279113324270510e-06,7.022951982509254017e-06,7.175624851694237523e-06,7.328297720879221030e-06,7.480970590064204537e-06,7.633643459249187197e-06,7.786316328434169856e-06,7.938989197619152516e-06,8.091662066804135176e-06,8.244334935989117835e-06,8.397007805174100495e-06,8.549680674359083155e-06,8.702353543544065815e-06,8.855026412729048474e-06,9.007699281914031134e-06,9.160372151099013794e-06,9.313045020283996454e-06,9.465717889468979113e-06,9.618390758653961773e-06 +0.000000000000000000e+00,1.550708495968550505e-07,3.101416991937101009e-07,4.652125487905651778e-07,6.202833983874203077e-07,7.753542479842754375e-07,9.304250975811305674e-07,1.085495947177985591e-06,1.240566796774840615e-06,1.395637646371695639e-06,1.550708495968550663e-06,1.705779345565405687e-06,1.860850195162260711e-06,2.015921044759115735e-06,2.170991894355970759e-06,2.326062743952825783e-06,2.481133593549680807e-06,2.636204443146535831e-06,2.791275292743390855e-06,2.946346142340245879e-06,3.101416991937100903e-06,3.256487841533955927e-06,3.411558691130810951e-06,3.566629540727665975e-06,3.721700390324520999e-06,3.876771239921376447e-06,4.031842089518232318e-06,4.186912939115088189e-06,4.341983788711944060e-06,4.497054638308799931e-06,4.652125487905655802e-06,4.807196337502511673e-06,4.962267187099367544e-06,5.117338036696223415e-06,5.272408886293079286e-06,5.427479735889935157e-06,5.582550585486791028e-06,5.737621435083646899e-06,5.892692284680502770e-06,6.047763134277358641e-06,6.202833983874214512e-06,6.357904833471070383e-06,6.512975683067926254e-06,6.668046532664782125e-06,6.823117382261637996e-06,6.978188231858493867e-06,7.133259081455349738e-06,7.288329931052205609e-06,7.443400780649061480e-06,7.598471630245917351e-06,7.753542479842773222e-06,7.908613329439629093e-06,8.063684179036484964e-06,8.218755028633340835e-06,8.373825878230196706e-06,8.528896727827052577e-06,8.683967577423908448e-06,8.839038427020764319e-06,8.994109276617620190e-06,9.149180126214476061e-06,9.304250975811331932e-06,9.459321825408187803e-06,9.614392675005043674e-06,9.769463524601899545e-06 +0.000000000000000000e+00,1.547323500587283258e-07,3.094647001174566516e-07,4.641970501761850039e-07,6.189294002349134091e-07,7.736617502936418144e-07,9.283941003523702196e-07,1.083126450411098625e-06,1.237858800469827030e-06,1.392591150528555435e-06,1.547323500587283840e-06,1.702055850646012246e-06,1.856788200704740651e-06,2.011520550763469268e-06,2.166252900822197673e-06,2.320985250880926078e-06,2.475717600939654484e-06,2.630449950998382889e-06,2.785182301057111294e-06,2.939914651115839699e-06,3.094647001174568104e-06,3.249379351233296510e-06,3.404111701292024915e-06,3.558844051350753320e-06,3.713576401409481725e-06,3.868308751468210131e-06,4.023041101526938536e-06,4.177773451585666941e-06,4.332505801644395346e-06,4.487238151703123751e-06,4.641970501761852157e-06,4.796702851820580562e-06,4.951435201879308967e-06,5.106167551938037372e-06,5.260899901996765778e-06,5.415632252055494183e-06,5.570364602114222588e-06,5.725096952172950993e-06,5.879829302231679398e-06,6.034561652290407804e-06,6.189294002349136209e-06,6.344026352407864614e-06,6.498758702466593019e-06,6.653491052525321425e-06,6.808223402584049830e-06,6.962955752642778235e-06,7.117688102701506640e-06,7.272420452760235045e-06,7.427152802818963451e-06,7.581885152877691856e-06,7.736617502936420261e-06,7.891349852995148666e-06,8.046082203053877072e-06,8.200814553112605477e-06,8.355546903171333882e-06,8.510279253230062287e-06,8.665011603288790693e-06,8.819743953347519098e-06,8.974476303406247503e-06,9.129208653464975908e-06,9.283941003523704313e-06,9.438673353582432719e-06,9.593405703641161124e-06,9.748138053699889529e-06 +0.000000000000000000e+00,1.526728691849799598e-07,3.053457383699599196e-07,4.580186075549398794e-07,6.106914767399198392e-07,7.633643459248997461e-07,9.160372151098796530e-07,1.068710084294859560e-06,1.221382953479839467e-06,1.374055822664819374e-06,1.526728691849799280e-06,1.679401561034779187e-06,1.832074430219759094e-06,1.984747299404739001e-06,2.137420168589719120e-06,2.290093037774699238e-06,2.442765906959679357e-06,2.595438776144659476e-06,2.748111645329639594e-06,2.900784514514619713e-06,3.053457383699599831e-06,3.206130252884579950e-06,3.358803122069560069e-06,3.511475991254540187e-06,3.664148860439520306e-06,3.816821729624500425e-06,3.969494598809480543e-06,4.122167467994460662e-06,4.274840337179440781e-06,4.427513206364420899e-06,4.580186075549401018e-06,4.732858944734381136e-06,4.885531813919361255e-06,5.038204683104341374e-06,5.190877552289321492e-06,5.343550421474301611e-06,5.496223290659281730e-06,5.648896159844261848e-06,5.801569029029241967e-06,5.954241898214222085e-06,6.106914767399202204e-06,6.259587636584182323e-06,6.412260505769162441e-06,6.564933374954142560e-06,6.717606244139122679e-06,6.870279113324102797e-06,7.022951982509082916e-06,7.175624851694063034e-06,7.328297720879043153e-06,7.480970590064023272e-06,7.633643459249004237e-06,7.786316328433985203e-06,7.938989197618966169e-06,8.091662066803947134e-06,8.244334935988928100e-06,8.397007805173909066e-06,8.549680674358890031e-06,8.702353543543870997e-06,8.855026412728851963e-06,9.007699281913832928e-06,9.160372151098813894e-06,9.313045020283794860e-06,9.465717889468775825e-06,9.618390758653756791e-06 +0.000000000000000000e+00,1.550708495968519535e-07,3.101416991937039070e-07,4.652125487905558605e-07,6.202833983874078139e-07,7.753542479842597674e-07,9.304250975811117209e-07,1.085495947177963569e-06,1.240566796774815416e-06,1.395637646371667264e-06,1.550708495968519111e-06,1.705779345565370959e-06,1.860850195162222807e-06,2.015921044759074654e-06,2.170991894355926290e-06,2.326062743952777926e-06,2.481133593549629562e-06,2.636204443146481198e-06,2.791275292743332833e-06,2.946346142340184469e-06,3.101416991937036105e-06,3.256487841533887741e-06,3.411558691130739377e-06,3.566629540727591013e-06,3.721700390324442649e-06,3.876771239921294284e-06,4.031842089518145920e-06,4.186912939114997556e-06,4.341983788711849192e-06,4.497054638308700828e-06,4.652125487905552464e-06,4.807196337502404099e-06,4.962267187099255735e-06,5.117338036696107371e-06,5.272408886292959007e-06,5.427479735889810643e-06,5.582550585486662279e-06,5.737621435083513915e-06,5.892692284680365550e-06,6.047763134277217186e-06,6.202833983874068822e-06,6.357904833470920458e-06,6.512975683067772094e-06,6.668046532664623730e-06,6.823117382261475366e-06,6.978188231858327001e-06,7.133259081455178637e-06,7.288329931052030273e-06,7.443400780648881909e-06,7.598471630245733545e-06,7.753542479842585181e-06,7.908613329439437664e-06,8.063684179036290146e-06,8.218755028633142629e-06,8.373825878229995112e-06,8.528896727826847595e-06,8.683967577423700078e-06,8.839038427020552561e-06,8.994109276617405044e-06,9.149180126214257527e-06,9.304250975811110009e-06,9.459321825407962492e-06,9.614392675004814975e-06,9.769463524601667458e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.567957217241906081e-07,3.135914434483812161e-07,4.703871651725718506e-07,6.271828868967625381e-07,7.839786086209532256e-07,9.407743303451439130e-07,1.097570052069334601e-06,1.254365773793525288e-06,1.411161495517715975e-06,1.567957217241906663e-06,1.724752938966097350e-06,1.881548660690288038e-06,2.038344382414478514e-06,2.195140104138668778e-06,2.351935825862859041e-06,2.508731547587049305e-06,2.665527269311239569e-06,2.822322991035429833e-06,2.979118712759620097e-06,3.135914434483810361e-06,3.292710156208000625e-06,3.449505877932190889e-06,3.606301599656381153e-06,3.763097321380571417e-06,3.919893043104761681e-06,4.076688764828951945e-06,4.233484486553142209e-06,4.390280208277332473e-06,4.547075930001522737e-06,4.703871651725713001e-06,4.860667373449903265e-06,5.017463095174093529e-06,5.174258816898283793e-06,5.331054538622474057e-06,5.487850260346664320e-06,5.644645982070854584e-06,5.801441703795044848e-06,5.958237425519235112e-06,6.115033147243425376e-06,6.271828868967615640e-06,6.428624590691805904e-06,6.585420312415996168e-06,6.742216034140186432e-06,6.899011755864376696e-06,7.055807477588566960e-06,7.212603199312757224e-06,7.369398921036947488e-06,7.526194642761137752e-06,7.682990364485328016e-06,7.839786086209518280e-06,7.996581807933708544e-06,8.153377529657898808e-06,8.310173251382089072e-06,8.466968973106279336e-06,8.623764694830469600e-06,8.780560416554659863e-06,8.937356138278850127e-06,9.094151860003040391e-06,9.250947581727230655e-06,9.407743303451420919e-06,9.564539025175611183e-06,9.721334746899801447e-06,9.878130468623991711e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.567957217241891258e-07,3.135914434483782515e-07,4.703871651725674037e-07,6.271828868967566089e-07,7.839786086209458140e-07,9.407743303451350192e-07,1.097570052069324224e-06,1.254365773793513430e-06,1.411161495517702635e-06,1.567957217241891840e-06,1.724752938966081045e-06,1.881548660690270250e-06,2.038344382414459455e-06,2.195140104138648449e-06,2.351935825862837442e-06,2.508731547587026436e-06,2.665527269311215429e-06,2.822322991035404422e-06,2.979118712759593416e-06,3.135914434483782409e-06,3.292710156207971403e-06,3.449505877932160396e-06,3.606301599656349389e-06,3.763097321380538383e-06,3.919893043104727800e-06,4.076688764828917217e-06,4.233484486553106634e-06,4.390280208277296050e-06,4.547075930001485467e-06,4.703871651725674884e-06,4.860667373449864301e-06,5.017463095174053718e-06,5.174258816898243135e-06,5.331054538622432552e-06,5.487850260346621969e-06,5.644645982070811386e-06,5.801441703795000803e-06,5.958237425519190220e-06,6.115033147243379637e-06,6.271828868967569053e-06,6.428624590691758470e-06,6.585420312415947887e-06,6.742216034140137304e-06,6.899011755864326721e-06,7.055807477588516138e-06,7.212603199312705555e-06,7.369398921036894972e-06,7.526194642761084389e-06,7.682990364485273806e-06,7.839786086209462376e-06,7.996581807933650945e-06,8.153377529657839515e-06,8.310173251382028085e-06,8.466968973106216655e-06,8.623764694830405225e-06,8.780560416554593795e-06,8.937356138278782365e-06,9.094151860002970935e-06,9.250947581727159505e-06,9.407743303451348074e-06,9.564539025175536644e-06,9.721334746899725214e-06,9.878130468623913784e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.380853515982533733e-07,2.761707031965067466e-07,4.142560547947601464e-07,5.523414063930135992e-07,6.904267579912670519e-07,8.285121095895205046e-07,9.665974611877738515e-07,1.104682812786027198e-06,1.242768164384280545e-06,1.380853515982533892e-06,1.518938867580787239e-06,1.657024219179040586e-06,1.795109570777293933e-06,1.933194922375547279e-06,2.071280273973800626e-06,2.209365625572053973e-06,2.347450977170307320e-06,2.485536328768560667e-06,2.623621680366814014e-06,2.761707031965067360e-06,2.899792383563320707e-06,3.037877735161574054e-06,3.175963086759827401e-06,3.314048438358080748e-06,3.452133789956334095e-06,3.590219141554587442e-06,3.728304493152840788e-06,3.866389844751093712e-06,4.004475196349346635e-06,4.142560547947599558e-06,4.280645899545852482e-06,4.418731251144105405e-06,4.556816602742358328e-06,4.694901954340611252e-06,4.832987305938864175e-06,4.971072657537117098e-06,5.109158009135370022e-06,5.247243360733622945e-06,5.385328712331875868e-06,5.523414063930128792e-06,5.661499415528381715e-06,5.799584767126634638e-06,5.937670118724887562e-06,6.075755470323140485e-06,6.213840821921393408e-06,6.351926173519646332e-06,6.490011525117899255e-06,6.628096876716152178e-06,6.766182228314405102e-06,6.904267579912658025e-06,7.042352931510910948e-06,7.180438283109163872e-06,7.318523634707416795e-06,7.456608986305669718e-06,7.594694337903922642e-06,7.732779689502175565e-06,7.870865041100427641e-06,8.008950392698679718e-06,8.147035744296931794e-06,8.285121095895183870e-06,8.423206447493435947e-06,8.561291799091688023e-06,8.699377150689940099e-06 +0.000000000000000000e+00,1.380846931541147662e-07,2.761693863082295325e-07,4.142540794623443252e-07,5.523387726164591709e-07,6.904234657705740165e-07,8.285081589246888622e-07,9.665928520788038137e-07,1.104677545232918765e-06,1.242762238387033717e-06,1.380846931541148668e-06,1.518931624695263620e-06,1.657016317849378571e-06,1.795101011003493523e-06,1.933185704157608474e-06,2.071270397311723426e-06,2.209355090465838378e-06,2.347439783619953329e-06,2.485524476774068281e-06,2.623609169928183232e-06,2.761693863082298184e-06,2.899778556236413135e-06,3.037863249390528087e-06,3.175947942544643038e-06,3.314032635698757990e-06,3.452117328852872941e-06,3.590202022006987893e-06,3.728286715161102844e-06,3.866371408315217796e-06,4.004456101469332748e-06,4.142540794623447699e-06,4.280625487777562651e-06,4.418710180931677602e-06,4.556794874085792554e-06,4.694879567239907505e-06,4.832964260394022457e-06,4.971048953548137408e-06,5.109133646702252360e-06,5.247218339856367311e-06,5.385303033010482263e-06,5.523387726164597214e-06,5.661472419318712166e-06,5.799557112472827118e-06,5.937641805626942069e-06,6.075726498781057021e-06,6.213811191935171972e-06,6.351895885089286924e-06,6.489980578243401875e-06,6.628065271397516827e-06,6.766149964551631778e-06,6.904234657705746730e-06,7.042319350859861681e-06,7.180404044013976633e-06,7.318488737168091584e-06,7.456573430322206536e-06,7.594658123476321488e-06,7.732742816630437286e-06,7.870827509784553085e-06,8.008912202938668883e-06,8.146996896092784682e-06,8.285081589246900480e-06,8.423166282401016279e-06,8.561250975555132077e-06,8.699335668709247876e-06 +0.000000000000000000e+00,1.357947341745420383e-07,2.715894683490840766e-07,4.073842025236261149e-07,5.431789366981681532e-07,6.789736708727101915e-07,8.147684050472522298e-07,9.505631392217942681e-07,1.086357873396336306e-06,1.222152607570878239e-06,1.357947341745420171e-06,1.493742075919962104e-06,1.629536810094504036e-06,1.765331544269045969e-06,1.901126278443587901e-06,2.036921012618129833e-06,2.172715746792671766e-06,2.308510480967213698e-06,2.444305215141755631e-06,2.580099949316297563e-06,2.715894683490839496e-06,2.851689417665381428e-06,2.987484151839923360e-06,3.123278886014465293e-06,3.259073620189007225e-06,3.394868354363549158e-06,3.530663088538091090e-06,3.666457822712633022e-06,3.802252556887174955e-06,3.938047291061717311e-06,4.073842025236259667e-06,4.209636759410802023e-06,4.345431493585344379e-06,4.481226227759886735e-06,4.617020961934429091e-06,4.752815696108971446e-06,4.888610430283513802e-06,5.024405164458056158e-06,5.160199898632598514e-06,5.295994632807140870e-06,5.431789366981683226e-06,5.567584101156225582e-06,5.703378835330767938e-06,5.839173569505310294e-06,5.974968303679852650e-06,6.110763037854395006e-06,6.246557772028937362e-06,6.382352506203479718e-06,6.518147240378022074e-06,6.653941974552564430e-06,6.789736708727106786e-06,6.925531442901649142e-06,7.061326177076191497e-06,7.197120911250733853e-06,7.332915645425276209e-06,7.468710379599818565e-06,7.604505113774360921e-06,7.740299847948903277e-06,7.876094582123444786e-06,8.011889316297986295e-06,8.147684050472527804e-06,8.283478784647069313e-06,8.419273518821610822e-06,8.555068252996152331e-06 +0.000000000000000000e+00,1.400733190386735975e-07,2.801466380773471950e-07,4.202199571160207925e-07,5.602932761546943900e-07,7.003665951933680404e-07,8.404399142320416908e-07,9.805132332707153413e-07,1.120586552309388992e-06,1.260659871348062642e-06,1.400733190386736293e-06,1.540806509425409943e-06,1.680879828464083593e-06,1.820953147502757244e-06,1.961026466541430683e-06,2.101099785580104121e-06,2.241173104618777560e-06,2.381246423657450999e-06,2.521319742696124437e-06,2.661393061734797876e-06,2.801466380773471315e-06,2.941539699812144753e-06,3.081613018850818192e-06,3.221686337889491631e-06,3.361759656928165069e-06,3.501832975966838508e-06,3.641906295005511947e-06,3.781979614044185385e-06,3.922052933082858824e-06,4.062126252121532686e-06,4.202199571160206548e-06,4.342272890198880411e-06,4.482346209237554273e-06,4.622419528276228135e-06,4.762492847314901997e-06,4.902566166353575859e-06,5.042639485392249721e-06,5.182712804430923584e-06,5.322786123469597446e-06,5.462859442508271308e-06,5.602932761546945170e-06,5.743006080585619032e-06,5.883079399624292895e-06,6.023152718662966757e-06,6.163226037701640619e-06,6.303299356740314481e-06,6.443372675778988343e-06,6.583445994817662206e-06,6.723519313856336068e-06,6.863592632895009930e-06,7.003665951933683792e-06,7.143739270972357654e-06,7.283812590011031516e-06,7.423885909049705379e-06,7.563959228088379241e-06,7.704032547127053103e-06,7.844105866165726118e-06,7.984179185204399133e-06,8.124252504243072149e-06,8.264325823281745164e-06,8.404399142320418179e-06,8.544472461359091194e-06,8.684545780397764209e-06,8.824619099436437224e-06 +0.000000000000000000e+00,1.380844865629553785e-07,2.761689731259107570e-07,4.142534596888661090e-07,5.523379462518214080e-07,6.904224328147767071e-07,8.285069193777320062e-07,9.665914059406873052e-07,1.104675892503642604e-06,1.242760379066597903e-06,1.380844865629553202e-06,1.518929352192508501e-06,1.657013838755463801e-06,1.795098325318419100e-06,1.933182811881374187e-06,2.071267298444329486e-06,2.209351785007284785e-06,2.347436271570240084e-06,2.485520758133195383e-06,2.623605244696150682e-06,2.761689731259105981e-06,2.899774217822061280e-06,3.037858704385016579e-06,3.175943190947971879e-06,3.314027677510927178e-06,3.452112164073882477e-06,3.590196650636837776e-06,3.728281137199793075e-06,3.866365623762748374e-06,4.004450110325703673e-06,4.142534596888658972e-06,4.280619083451614271e-06,4.418703570014569570e-06,4.556788056577524869e-06,4.694872543140480168e-06,4.832957029703435467e-06,4.971041516266390766e-06,5.109126002829346065e-06,5.247210489392301365e-06,5.385294975955256664e-06,5.523379462518211963e-06,5.661463949081167262e-06,5.799548435644122561e-06,5.937632922207077860e-06,6.075717408770033159e-06,6.213801895332988458e-06,6.351886381895943757e-06,6.489970868458899056e-06,6.628055355021854355e-06,6.766139841584809654e-06,6.904224328147764953e-06,7.042308814710720252e-06,7.180393301273675551e-06,7.318477787836630851e-06,7.456562274399586150e-06,7.594646760962541449e-06,7.732731247525496748e-06,7.870815734088452894e-06,8.008900220651409040e-06,8.146984707214365186e-06,8.285069193777321332e-06,8.423153680340277478e-06,8.561238166903233624e-06,8.699322653466189770e-06 +0.000000000000000000e+00,1.357960519810627360e-07,2.715921039621254721e-07,4.073881559431882081e-07,5.431842079242509441e-07,6.789802599053137331e-07,8.147763118863765220e-07,9.505723638674393110e-07,1.086368415848502100e-06,1.222164467829564889e-06,1.357960519810627678e-06,1.493756571791690467e-06,1.629552623772753256e-06,1.765348675753816045e-06,1.901144727734878834e-06,2.036940779715941623e-06,2.172736831697004623e-06,2.308532883678067624e-06,2.444328935659130625e-06,2.580124987640193626e-06,2.715921039621256626e-06,2.851717091602319627e-06,2.987513143583382628e-06,3.123309195564445629e-06,3.259105247545508629e-06,3.394901299526571630e-06,3.530697351507634631e-06,3.666493403488697631e-06,3.802289455469760632e-06,3.938085507450823633e-06,4.073881559431886634e-06,4.209677611412949634e-06,4.345473663394012635e-06,4.481269715375075636e-06,4.617065767356138637e-06,4.752861819337201637e-06,4.888657871318264638e-06,5.024453923299327639e-06,5.160249975280390639e-06,5.296046027261453640e-06,5.431842079242516641e-06,5.567638131223579642e-06,5.703434183204642642e-06,5.839230235185705643e-06,5.975026287166768644e-06,6.110822339147831645e-06,6.246618391128894645e-06,6.382414443109957646e-06,6.518210495091020647e-06,6.654006547072083647e-06,6.789802599053146648e-06,6.925598651034209649e-06,7.061394703015272650e-06,7.197190754996335650e-06,7.332986806977398651e-06,7.468782858958461652e-06,7.604578910939524652e-06,7.740374962920586806e-06,7.876171014901648960e-06,8.011967066882711114e-06,8.147763118863773267e-06,8.283559170844835421e-06,8.419355222825897575e-06,8.555151274806959728e-06 +0.000000000000000000e+00,1.380853515982453530e-07,2.761707031964907059e-07,4.142560547947360589e-07,5.523414063929814119e-07,6.904267579912267119e-07,8.285121095894720120e-07,9.665974611877173120e-07,1.104682812785962612e-06,1.242768164384207912e-06,1.380853515982453212e-06,1.518938867580698512e-06,1.657024219178943812e-06,1.795109570777189112e-06,1.933194922375434200e-06,2.071280273973679501e-06,2.209365625571924801e-06,2.347450977170170101e-06,2.485536328768415401e-06,2.623621680366660701e-06,2.761707031964906001e-06,2.899792383563151301e-06,3.037877735161396601e-06,3.175963086759641901e-06,3.314048438357887201e-06,3.452133789956132501e-06,3.590219141554377801e-06,3.728304493152623101e-06,3.866389844750868401e-06,4.004475196349113701e-06,4.142560547947359001e-06,4.280645899545604301e-06,4.418731251143849601e-06,4.556816602742094901e-06,4.694901954340340201e-06,4.832987305938585501e-06,4.971072657536830801e-06,5.109158009135076101e-06,5.247243360733321401e-06,5.385328712331566701e-06,5.523414063929812001e-06,5.661499415528057301e-06,5.799584767126302601e-06,5.937670118724547902e-06,6.075755470322793202e-06,6.213840821921038502e-06,6.351926173519283802e-06,6.490011525117529102e-06,6.628096876715774402e-06,6.766182228314019702e-06,6.904267579912265002e-06,7.042352931510510302e-06,7.180438283108755602e-06,7.318523634707000902e-06,7.456608986305246202e-06,7.594694337903491502e-06,7.732779689501736802e-06,7.870865041099982102e-06,8.008950392698227402e-06,8.147035744296472702e-06,8.285121095894718002e-06,8.423206447492963302e-06,8.561291799091208602e-06,8.699377150689453902e-06 +0.000000000000000000e+00,1.380844865629512492e-07,2.761689731259024984e-07,4.142534596888537211e-07,5.523379462518048909e-07,6.904224328147560607e-07,8.285069193777072304e-07,9.665914059406582943e-07,1.104675892503609358e-06,1.242760379066560422e-06,1.380844865629511486e-06,1.518929352192462550e-06,1.657013838755413614e-06,1.795098325318364678e-06,1.933182811881315742e-06,2.071267298444266806e-06,2.209351785007217869e-06,2.347436271570168933e-06,2.485520758133119997e-06,2.623605244696071061e-06,2.761689731259022125e-06,2.899774217821973189e-06,3.037858704384924253e-06,3.175943190947875317e-06,3.314027677510826381e-06,3.452112164073777445e-06,3.590196650636728508e-06,3.728281137199679572e-06,3.866365623762630636e-06,4.004450110325581700e-06,4.142534596888532764e-06,4.280619083451483828e-06,4.418703570014434892e-06,4.556788056577385956e-06,4.694872543140337020e-06,4.832957029703288084e-06,4.971041516266239147e-06,5.109126002829190211e-06,5.247210489392141275e-06,5.385294975955092339e-06,5.523379462518043403e-06,5.661463949080994467e-06,5.799548435643945531e-06,5.937632922206896595e-06,6.075717408769847659e-06,6.213801895332798723e-06,6.351886381895749787e-06,6.489970868458700850e-06,6.628055355021651914e-06,6.766139841584602978e-06,6.904224328147554042e-06,7.042308814710505106e-06,7.180393301273456170e-06,7.318477787836407234e-06,7.456562274399358298e-06,7.594646760962309362e-06,7.732731247525259578e-06,7.870815734088208948e-06,8.008900220651158318e-06,8.146984707214107688e-06,8.285069193777057058e-06,8.423153680340006428e-06,8.561238166902955797e-06,8.699322653465905167e-06 +0.000000000000000000e+00,1.357947341745329062e-07,2.715894683490658125e-07,4.073842025235986922e-07,5.431789366981315190e-07,6.789736708726643459e-07,8.147684050471971727e-07,9.505631392217299995e-07,1.086357873396262826e-06,1.222152607570795653e-06,1.357947341745328480e-06,1.493742075919861307e-06,1.629536810094394134e-06,1.765331544268926960e-06,1.901126278443459787e-06,2.036921012617992614e-06,2.172715746792525229e-06,2.308510480967057844e-06,2.444305215141590459e-06,2.580099949316123074e-06,2.715894683490655689e-06,2.851689417665188304e-06,2.987484151839720919e-06,3.123278886014253535e-06,3.259073620188786150e-06,3.394868354363318765e-06,3.530663088537851380e-06,3.666457822712383995e-06,3.802252556886916610e-06,3.938047291061449648e-06,4.073842025235982687e-06,4.209636759410515726e-06,4.345431493585048764e-06,4.481226227759581803e-06,4.617020961934114841e-06,4.752815696108647880e-06,4.888610430283180918e-06,5.024405164457713957e-06,5.160199898632246996e-06,5.295994632806780034e-06,5.431789366981313073e-06,5.567584101155846111e-06,5.703378835330379150e-06,5.839173569504912189e-06,5.974968303679445227e-06,6.110763037853978266e-06,6.246557772028511304e-06,6.382352506203044343e-06,6.518147240377577381e-06,6.653941974552110420e-06,6.789736708726643459e-06,6.925531442901176497e-06,7.061326177075709536e-06,7.197120911250242574e-06,7.332915645424775613e-06,7.468710379599308651e-06,7.604505113773841690e-06,7.740299847948374729e-06,7.876094582122907767e-06,8.011889316297440806e-06,8.147684050471973844e-06,8.283478784646506883e-06,8.419273518821039921e-06,8.555068252995572960e-06 +0.000000000000000000e+00,1.400733190386659213e-07,2.801466380773318425e-07,4.202199571159977638e-07,5.602932761546636850e-07,7.003665951933296063e-07,8.404399142319955275e-07,9.805132332706615547e-07,1.120586552309327582e-06,1.260659871347993609e-06,1.400733190386659636e-06,1.540806509425325663e-06,1.680879828463991690e-06,1.820953147502657717e-06,1.961026466541323956e-06,2.101099785579990195e-06,2.241173104618656434e-06,2.381246423657322673e-06,2.521319742695988912e-06,2.661393061734655151e-06,2.801466380773321390e-06,2.941539699811987629e-06,3.081613018850653868e-06,3.221686337889320106e-06,3.361759656927986345e-06,3.501832975966652584e-06,3.641906295005318823e-06,3.781979614043985062e-06,3.922052933082651301e-06,4.062126252121317540e-06,4.202199571159983779e-06,4.342272890198650018e-06,4.482346209237316256e-06,4.622419528275982495e-06,4.762492847314648734e-06,4.902566166353314973e-06,5.042639485391981212e-06,5.182712804430647451e-06,5.322786123469313690e-06,5.462859442507979929e-06,5.602932761546646168e-06,5.743006080585312406e-06,5.883079399623978645e-06,6.023152718662644884e-06,6.163226037701311123e-06,6.303299356739977362e-06,6.443372675778643601e-06,6.583445994817309840e-06,6.723519313855976079e-06,6.863592632894642318e-06,7.003665951933308556e-06,7.143739270971974795e-06,7.283812590010641034e-06,7.423885909049307273e-06,7.563959228087973512e-06,7.704032547126639751e-06,7.844105866165305990e-06,7.984179185203972229e-06,8.124252504242638468e-06,8.264325823281304707e-06,8.404399142319970945e-06,8.544472461358637184e-06,8.684545780397303423e-06,8.824619099435969662e-06 +0.000000000000000000e+00,1.426730047742789426e-07,2.853460095485578852e-07,4.280190143228368278e-07,5.706920190971157704e-07,7.133650238713947660e-07,8.560380286456737615e-07,9.987110334199527571e-07,1.141384038194231753e-06,1.284057042968510748e-06,1.426730047742789744e-06,1.569403052517068739e-06,1.712076057291347735e-06,1.854749062065626730e-06,1.997422066839905938e-06,2.140095071614184933e-06,2.282768076388463929e-06,2.425441081162742924e-06,2.568114085937021920e-06,2.710787090711300915e-06,2.853460095485579911e-06,2.996133100259858906e-06,3.138806105034137902e-06,3.281479109808416898e-06,3.424152114582695893e-06,3.566825119356974889e-06,3.709498124131253884e-06,3.852171128905532880e-06,3.994844133679811875e-06,4.137517138454090871e-06,4.280190143228369866e-06,4.422863148002648862e-06,4.565536152776927857e-06,4.708209157551206853e-06,4.850882162325485849e-06,4.993555167099764844e-06,5.136228171874043840e-06,5.278901176648322835e-06,5.421574181422601831e-06,5.564247186196880826e-06,5.706920190971159822e-06,5.849593195745438817e-06,5.992266200519717813e-06,6.134939205293996808e-06,6.277612210068275804e-06,6.420285214842554799e-06,6.562958219616833795e-06,6.705631224391112791e-06,6.848304229165391786e-06,6.990977233939670782e-06,7.133650238713949777e-06,7.276323243488228773e-06,7.418996248262507768e-06,7.561669253036786764e-06,7.704342257811065759e-06,7.847015262585345602e-06,7.989688267359625445e-06,8.132361272133905287e-06,8.275034276908185130e-06,8.417707281682464972e-06,8.560380286456744815e-06,8.703053291231024657e-06,8.845726296005304500e-06,8.988399300779584343e-06 +0.000000000000000000e+00,1.426714237148703634e-07,2.853428474297407269e-07,4.280142711446110903e-07,5.706856948594814537e-07,7.133571185743517642e-07,8.560285422892220747e-07,9.986999660040923852e-07,1.141371389718962696e-06,1.284042813433833006e-06,1.426714237148703317e-06,1.569385660863573627e-06,1.712057084578443938e-06,1.854728508293314248e-06,1.997399932008184770e-06,2.140071355723055293e-06,2.282742779437925815e-06,2.425414203152796337e-06,2.568085626867666859e-06,2.710757050582537382e-06,2.853428474297407904e-06,2.996099898012278426e-06,3.138771321727148948e-06,3.281442745442019471e-06,3.424114169156889993e-06,3.566785592871760515e-06,3.709457016586631037e-06,3.852128440301501983e-06,3.994799864016372929e-06,4.137471287731243875e-06,4.280142711446114820e-06,4.422814135160985766e-06,4.565485558875856712e-06,4.708156982590727658e-06,4.850828406305598603e-06,4.993499830020469549e-06,5.136171253735340495e-06,5.278842677450211441e-06,5.421514101165082387e-06,5.564185524879953332e-06,5.706856948594824278e-06,5.849528372309695224e-06,5.992199796024566170e-06,6.134871219739437115e-06,6.277542643454308061e-06,6.420214067169179007e-06,6.562885490884049953e-06,6.705556914598920898e-06,6.848228338313791844e-06,6.990899762028662790e-06,7.133571185743533736e-06,7.276242609458404681e-06,7.418914033173275627e-06,7.561585456888146573e-06,7.704256880603017519e-06,7.846928304317888465e-06,7.989599728032759410e-06,8.132271151747630356e-06,8.274942575462501302e-06,8.417613999177372248e-06,8.560285422892243193e-06,8.702956846607114139e-06,8.845628270321985085e-06,8.988299694036856031e-06 +0.000000000000000000e+00,1.403649501327209081e-07,2.807299002654418162e-07,4.210948503981626979e-07,5.614598005308835266e-07,7.018247506636043553e-07,8.421897007963251840e-07,9.825546509290460127e-07,1.122919601061766841e-06,1.263284551194487670e-06,1.403649501327208499e-06,1.544014451459929328e-06,1.684379401592650156e-06,1.824744351725370985e-06,1.965109301858091602e-06,2.105474251990812007e-06,2.245839202123532412e-06,2.386204152256252817e-06,2.526569102388973223e-06,2.666934052521693628e-06,2.807299002654414033e-06,2.947663952787134438e-06,3.088028902919854843e-06,3.228393853052575249e-06,3.368758803185295654e-06,3.509123753318016059e-06,3.649488703450736464e-06,3.789853653583456869e-06,3.930218603716177275e-06,4.070583553848897680e-06,4.210948503981618085e-06,4.351313454114338490e-06,4.491678404247058895e-06,4.632043354379779300e-06,4.772408304512499706e-06,4.912773254645220111e-06,5.053138204777940516e-06,5.193503154910660921e-06,5.333868105043381326e-06,5.474233055176101732e-06,5.614598005308822137e-06,5.754962955441542542e-06,5.895327905574262947e-06,6.035692855706983352e-06,6.176057805839703758e-06,6.316422755972424163e-06,6.456787706105144568e-06,6.597152656237864973e-06,6.737517606370585378e-06,6.877882556503305784e-06,7.018247506636026189e-06,7.158612456768746594e-06,7.298977406901466999e-06,7.439342357034187404e-06,7.579707307166907809e-06,7.720072257299628215e-06,7.860437207432349467e-06,8.000802157565070719e-06,8.141167107697791971e-06,8.281532057830513224e-06,8.421897007963234476e-06,8.562261958095955728e-06,8.702626908228676980e-06,8.842991858361398232e-06 +0.000000000000000000e+00,1.447980701289114925e-07,2.895961402578229850e-07,4.343942103867344775e-07,5.791922805156459700e-07,7.239903506445574625e-07,8.687884207734689550e-07,1.013586490902380448e-06,1.158384561031291940e-06,1.303182631160203433e-06,1.447980701289114925e-06,1.592778771418026418e-06,1.737576841546937910e-06,1.882374911675849403e-06,2.027172981804760895e-06,2.171971051933672388e-06,2.316769122062583880e-06,2.461567192191495373e-06,2.606365262320406865e-06,2.751163332449318358e-06,2.895961402578229850e-06,3.040759472707141343e-06,3.185557542836052835e-06,3.330355612964964328e-06,3.475153683093875820e-06,3.619951753222787313e-06,3.764749823351698805e-06,3.909547893480610298e-06,4.054345963609521790e-06,4.199144033738433283e-06,4.343942103867344775e-06,4.488740173996256268e-06,4.633538244125167760e-06,4.778336314254079253e-06,4.923134384382990745e-06,5.067932454511902238e-06,5.212730524640813730e-06,5.357528594769725223e-06,5.502326664898636715e-06,5.647124735027548208e-06,5.791922805156459700e-06,5.936720875285371193e-06,6.081518945414282685e-06,6.226317015543194178e-06,6.371115085672105670e-06,6.515913155801017163e-06,6.660711225929928655e-06,6.805509296058840148e-06,6.950307366187751640e-06,7.095105436316663133e-06,7.239903506445574625e-06,7.384701576574486118e-06,7.529499646703397610e-06,7.674297716832308256e-06,7.819095786961218901e-06,7.963893857090129547e-06,8.108691927219040192e-06,8.253489997347950838e-06,8.398288067476861483e-06,8.543086137605772129e-06,8.687884207734682774e-06,8.832682277863593420e-06,8.977480347992504065e-06,9.122278418121414711e-06 +0.000000000000000000e+00,1.426709438504030259e-07,2.853418877008060517e-07,4.280128315512090511e-07,5.706837754016119976e-07,7.133547192520149440e-07,8.560256631024178905e-07,9.986966069528208370e-07,1.141367550803223783e-06,1.284038494653626730e-06,1.426709438504029676e-06,1.569380382354432623e-06,1.712051326204835569e-06,1.854722270055238516e-06,1.997393213905641250e-06,2.140064157756044197e-06,2.282735101606447143e-06,2.425406045456850090e-06,2.568076989307253036e-06,2.710747933157655983e-06,2.853418877008058929e-06,2.996089820858461876e-06,3.138760764708864822e-06,3.281431708559267769e-06,3.424102652409670715e-06,3.566773596260073661e-06,3.709444540110476608e-06,3.852115483960879554e-06,3.994786427811282501e-06,4.137457371661685447e-06,4.280128315512088394e-06,4.422799259362491340e-06,4.565470203212894287e-06,4.708141147063297233e-06,4.850812090913700180e-06,4.993483034764103126e-06,5.136153978614506072e-06,5.278824922464909019e-06,5.421495866315311965e-06,5.564166810165714912e-06,5.706837754016117858e-06,5.849508697866520805e-06,5.992179641716923751e-06,6.134850585567326698e-06,6.277521529417729644e-06,6.420192473268132591e-06,6.562863417118535537e-06,6.705534360968938484e-06,6.848205304819341430e-06,6.990876248669744376e-06,7.133547192520147323e-06,7.276218136370550269e-06,7.418889080220953216e-06,7.561560024071356162e-06,7.704230967921759109e-06,7.846901911772162055e-06,7.989572855622565002e-06,8.132243799472967948e-06,8.274914743323370895e-06,8.417585687173773841e-06,8.560256631024176787e-06,8.702927574874579734e-06,8.845598518724982680e-06,8.988269462575385627e-06 +0.000000000000000000e+00,1.403638807907930435e-07,2.807277615815860870e-07,4.210916423723791305e-07,5.614555231631721741e-07,7.018194039539652176e-07,8.421832847447582611e-07,9.825471655355511987e-07,1.122911046326344136e-06,1.263274927117137074e-06,1.403638807907930012e-06,1.544002688698722949e-06,1.684366569489515887e-06,1.824730450280308825e-06,1.965094331071101550e-06,2.105458211861894276e-06,2.245822092652687002e-06,2.386185973443479728e-06,2.526549854234272454e-06,2.666913735025065180e-06,2.807277615815857906e-06,2.947641496606650632e-06,3.088005377397443357e-06,3.228369258188236083e-06,3.368733138979028809e-06,3.509097019769821535e-06,3.649460900560614261e-06,3.789824781351406987e-06,3.930188662142199713e-06,4.070552542932992862e-06,4.210916423723786011e-06,4.351280304514579161e-06,4.491644185305372310e-06,4.632008066096165460e-06,4.772371946886958609e-06,4.912735827677751758e-06,5.053099708468544908e-06,5.193463589259338057e-06,5.333827470050131207e-06,5.474191350840924356e-06,5.614555231631717505e-06,5.754919112422510655e-06,5.895282993213303804e-06,6.035646874004096954e-06,6.176010754794890103e-06,6.316374635585683252e-06,6.456738516376476402e-06,6.597102397167269551e-06,6.737466277958062701e-06,6.877830158748855850e-06,7.018194039539648999e-06,7.158557920330442149e-06,7.298921801121235298e-06,7.439285681912028448e-06,7.579649562702821597e-06,7.720013443493614746e-06,7.860377324284407896e-06,8.000741205075201045e-06,8.141105085865994195e-06,8.281468966656787344e-06,8.421832847447580493e-06,8.562196728238373643e-06,8.702560609029166792e-06,8.842924489819959942e-06 +0.000000000000000000e+00,1.426730047742723252e-07,2.853460095485446503e-07,4.280190143228169755e-07,5.706920190970893006e-07,7.133650238713616258e-07,8.560380286456339510e-07,9.987110334199063820e-07,1.141384038194178813e-06,1.284057042968451244e-06,1.426730047742723675e-06,1.569403052516996106e-06,1.712076057291268537e-06,1.854749062065540968e-06,1.997422066839813611e-06,2.140095071614086254e-06,2.282768076388358897e-06,2.425441081162631539e-06,2.568114085936904182e-06,2.710787090711176825e-06,2.853460095485449468e-06,2.996133100259722111e-06,3.138806105033994753e-06,3.281479109808267396e-06,3.424152114582540039e-06,3.566825119356812682e-06,3.709498124131085325e-06,3.852171128905357544e-06,3.994844133679629763e-06,4.137517138453901982e-06,4.280190143228174202e-06,4.422863148002446421e-06,4.565536152776718640e-06,4.708209157550990860e-06,4.850882162325263079e-06,4.993555167099535298e-06,5.136228171873807517e-06,5.278901176648079737e-06,5.421574181422351956e-06,5.564247186196624175e-06,5.706920190970896395e-06,5.849593195745168614e-06,5.992266200519440833e-06,6.134939205293713052e-06,6.277612210067985272e-06,6.420285214842257491e-06,6.562958219616529710e-06,6.705631224390801929e-06,6.848304229165074149e-06,6.990977233939346368e-06,7.133650238713618587e-06,7.276323243487890807e-06,7.418996248262163026e-06,7.561669253036435245e-06,7.704342257810708311e-06,7.847015262584981378e-06,7.989688267359254444e-06,8.132361272133527510e-06,8.275034276907800577e-06,8.417707281682073643e-06,8.560380286456346709e-06,8.703053291230619776e-06,8.845726296004892842e-06,8.988399300779165908e-06 +0.000000000000000000e+00,1.426709438503998495e-07,2.853418877007996990e-07,4.280128315511995220e-07,5.706837754015992921e-07,7.133547192519990622e-07,8.560256631023988323e-07,9.986966069527986023e-07,1.141367550803198372e-06,1.284038494653598143e-06,1.426709438503997913e-06,1.569380382354397683e-06,1.712051326204797453e-06,1.854722270055197223e-06,1.997393213905597205e-06,2.140064157755997187e-06,2.282735101606397168e-06,2.425406045456797150e-06,2.568076989307197132e-06,2.710747933157597114e-06,2.853418877007997096e-06,2.996089820858397078e-06,3.138760764708797059e-06,3.281431708559197041e-06,3.424102652409597023e-06,3.566773596259997005e-06,3.709444540110396987e-06,3.852115483960796545e-06,3.994786427811196103e-06,4.137457371661595662e-06,4.280128315511995220e-06,4.422799259362394778e-06,4.565470203212794337e-06,4.708141147063193895e-06,4.850812090913593453e-06,4.993483034763993012e-06,5.136153978614392570e-06,5.278824922464792128e-06,5.421495866315191687e-06,5.564166810165591245e-06,5.706837754015990803e-06,5.849508697866390362e-06,5.992179641716789920e-06,6.134850585567189478e-06,6.277521529417589037e-06,6.420192473267988595e-06,6.562863417118388153e-06,6.705534360968787712e-06,6.848205304819187270e-06,6.990876248669586828e-06,7.133547192519986387e-06,7.276218136370385945e-06,7.418889080220785503e-06,7.561560024071185062e-06,7.704230967921584620e-06,7.846901911771984178e-06,7.989572855622383737e-06,8.132243799472783295e-06,8.274914743323182853e-06,8.417585687173582412e-06,8.560256631023981970e-06,8.702927574874381528e-06,8.845598518724781087e-06,8.988269462575180645e-06 +0.000000000000000000e+00,1.403649501327135230e-07,2.807299002654270461e-07,4.210948503981405691e-07,5.614598005308540922e-07,7.018247506635676152e-07,8.421897007962811383e-07,9.825546509289945555e-07,1.122919601061707973e-06,1.263284551194421390e-06,1.403649501327134807e-06,1.544014451459848224e-06,1.684379401592561641e-06,1.824744351725275058e-06,1.965109301857988264e-06,2.105474251990701469e-06,2.245839202123414675e-06,2.386204152256127880e-06,2.526569102388841086e-06,2.666934052521554291e-06,2.807299002654267496e-06,2.947663952786980702e-06,3.088028902919693907e-06,3.228393853052407113e-06,3.368758803185120318e-06,3.509123753317833523e-06,3.649488703450546729e-06,3.789853653583259934e-06,3.930218603715973140e-06,4.070583553848685922e-06,4.210948503981398703e-06,4.351313454114111485e-06,4.491678404246824267e-06,4.632043354379537049e-06,4.772408304512249831e-06,4.912773254644962613e-06,5.053138204777675395e-06,5.193503154910388177e-06,5.333868105043100959e-06,5.474233055175813740e-06,5.614598005308526522e-06,5.754962955441239304e-06,5.895327905573952086e-06,6.035692855706664868e-06,6.176057805839377650e-06,6.316422755972090432e-06,6.456787706104803214e-06,6.597152656237515996e-06,6.737517606370228777e-06,6.877882556502941559e-06,7.018247506635654341e-06,7.158612456768367123e-06,7.298977406901079905e-06,7.439342357033792687e-06,7.579707307166505469e-06,7.720072257299218251e-06,7.860437207431931033e-06,8.000802157564643815e-06,8.141167107697356596e-06,8.281532057830069378e-06,8.421897007962782160e-06,8.562261958095494942e-06,8.702626908228207724e-06,8.842991858360920506e-06 +0.000000000000000000e+00,1.447980701289043457e-07,2.895961402578086913e-07,4.343942103867130370e-07,5.791922805156173827e-07,7.239903506445216754e-07,8.687884207734259681e-07,1.013586490902330261e-06,1.158384561031234554e-06,1.303182631160138846e-06,1.447980701289043139e-06,1.592778771417947432e-06,1.737576841546851724e-06,1.882374911675756017e-06,2.027172981804660098e-06,2.171971051933563967e-06,2.316769122062467837e-06,2.461567192191371706e-06,2.606365262320275575e-06,2.751163332449179444e-06,2.895961402578083313e-06,3.040759472706987183e-06,3.185557542835891052e-06,3.330355612964794921e-06,3.475153683093698790e-06,3.619951753222602659e-06,3.764749823351506529e-06,3.909547893480410398e-06,4.054345963609314267e-06,4.199144033738218136e-06,4.343942103867122006e-06,4.488740173996025875e-06,4.633538244124929744e-06,4.778336314253833613e-06,4.923134384382737482e-06,5.067932454511641352e-06,5.212730524640545221e-06,5.357528594769449090e-06,5.502326664898352959e-06,5.647124735027256828e-06,5.791922805156160698e-06,5.936720875285064567e-06,6.081518945413968436e-06,6.226317015542872305e-06,6.371115085671776174e-06,6.515913155800680044e-06,6.660711225929583913e-06,6.805509296058487782e-06,6.950307366187391651e-06,7.095105436316295521e-06,7.239903506445199390e-06,7.384701576574103259e-06,7.529499646703007128e-06,7.674297716831911844e-06,7.819095786960815714e-06,7.963893857089719583e-06,8.108691927218623452e-06,8.253489997347527321e-06,8.398288067476431190e-06,8.543086137605335060e-06,8.687884207734238929e-06,8.832682277863142798e-06,8.977480347992046667e-06,9.122278418120950537e-06 +0.000000000000000000e+00,1.474045144952003948e-07,2.948090289904007897e-07,4.422135434856012110e-07,5.896180579808016853e-07,7.370225724760021595e-07,8.844270869712026338e-07,1.031831601466403214e-06,1.179236115961603794e-06,1.326640630456804374e-06,1.474045144952004954e-06,1.621449659447205534e-06,1.768854173942406115e-06,1.916258688437606695e-06,2.063663202932807275e-06,2.211067717428007855e-06,2.358472231923208435e-06,2.505876746418409015e-06,2.653281260913609595e-06,2.800685775408810176e-06,2.948090289904010756e-06,3.095494804399211336e-06,3.242899318894411916e-06,3.390303833389612496e-06,3.537708347884813076e-06,3.685112862380013656e-06,3.832517376875214236e-06,3.979921891370414817e-06,4.127326405865615397e-06,4.274730920360815977e-06,4.422135434856016557e-06,4.569539949351217137e-06,4.716944463846417717e-06,4.864348978341618297e-06,5.011753492836818878e-06,5.159158007332019458e-06,5.306562521827220038e-06,5.453967036322420618e-06,5.601371550817621198e-06,5.748776065312821778e-06,5.896180579808022358e-06,6.043585094303222938e-06,6.190989608798423519e-06,6.338394123293624099e-06,6.485798637788824679e-06,6.633203152284025259e-06,6.780607666779225839e-06,6.928012181274426419e-06,7.075416695769626999e-06,7.222821210264827580e-06,7.370225724760028160e-06,7.517630239255228740e-06,7.665034753750430167e-06,7.812439268245630747e-06,7.959843782740831327e-06,8.107248297236031907e-06,8.254652811731232488e-06,8.402057326226433068e-06,8.549461840721633648e-06,8.696866355216834228e-06,8.844270869712034808e-06,8.991675384207235388e-06,9.139079898702435968e-06,9.286484413197636548e-06 +0.000000000000000000e+00,1.473720849870182622e-07,2.947441699740365245e-07,4.421162549610547602e-07,5.894883399480729430e-07,7.368604249350911258e-07,8.842325099221093087e-07,1.031604594909127597e-06,1.178976679896145886e-06,1.326348764883164175e-06,1.473720849870182463e-06,1.621092934857200752e-06,1.768465019844219041e-06,1.915837104831237330e-06,2.063209189818255618e-06,2.210581274805273907e-06,2.357953359792292196e-06,2.505325444779310484e-06,2.652697529766328773e-06,2.800069614753347062e-06,2.947441699740365350e-06,3.094813784727383639e-06,3.242185869714401928e-06,3.389557954701420216e-06,3.536930039688438505e-06,3.684302124675456794e-06,3.831674209662475506e-06,3.979046294649493795e-06,4.126418379636512083e-06,4.273790464623530372e-06,4.421162549610548661e-06,4.568534634597566950e-06,4.715906719584585238e-06,4.863278804571603527e-06,5.010650889558621816e-06,5.158022974545640104e-06,5.305395059532658393e-06,5.452767144519676682e-06,5.600139229506694970e-06,5.747511314493713259e-06,5.894883399480731548e-06,6.042255484467749837e-06,6.189627569454768125e-06,6.336999654441786414e-06,6.484371739428804703e-06,6.631743824415822991e-06,6.779115909402841280e-06,6.926487994389859569e-06,7.073860079376877857e-06,7.221232164363896146e-06,7.368604249350914435e-06,7.515976334337932723e-06,7.663348419324951012e-06,7.810720504311969301e-06,7.958092589298987590e-06,8.105464674286005878e-06,8.252836759273024167e-06,8.400208844260042456e-06,8.547580929247060744e-06,8.694953014234079033e-06,8.842325099221097322e-06,8.989697184208115610e-06,9.137069269195133899e-06,9.284441354182152188e-06 +0.000000000000000000e+00,1.450062545469669892e-07,2.900125090939339785e-07,4.350187636409009677e-07,5.800250181878679570e-07,7.250312727348349462e-07,8.700375272818019355e-07,1.015043781828768925e-06,1.160050036375735914e-06,1.305056290922702903e-06,1.450062545469669892e-06,1.595068800016636882e-06,1.740075054563603871e-06,1.885081309110570860e-06,2.030087563657537849e-06,2.175093818204505050e-06,2.320100072751472251e-06,2.465106327298439452e-06,2.610112581845406653e-06,2.755118836392373854e-06,2.900125090939341055e-06,3.045131345486308256e-06,3.190137600033275457e-06,3.335143854580242658e-06,3.480150109127209859e-06,3.625156363674177060e-06,3.770162618221144262e-06,3.915168872768111463e-06,4.060175127315078240e-06,4.205181381862045017e-06,4.350187636409011795e-06,4.495193890955978572e-06,4.640200145502945350e-06,4.785206400049912127e-06,4.930212654596878905e-06,5.075218909143845682e-06,5.220225163690812460e-06,5.365231418237779237e-06,5.510237672784746015e-06,5.655243927331712792e-06,5.800250181878679570e-06,5.945256436425646347e-06,6.090262690972613125e-06,6.235268945519579902e-06,6.380275200066546680e-06,6.525281454613513457e-06,6.670287709160480235e-06,6.815293963707447012e-06,6.960300218254413790e-06,7.105306472801380567e-06,7.250312727348347345e-06,7.395318981895314122e-06,7.540325236442280900e-06,7.685331490989248524e-06,7.830337745536216149e-06,7.975344000083183773e-06,8.120350254630151398e-06,8.265356509177119022e-06,8.410362763724086647e-06,8.555369018271054271e-06,8.700375272818021896e-06,8.845381527364989520e-06,8.990387781911957145e-06,9.135394036458924769e-06 +0.000000000000000000e+00,1.495966152054906885e-07,2.991932304109813769e-07,4.487898456164720654e-07,5.983864608219627539e-07,7.479830760274534953e-07,8.975796912329442367e-07,1.047176306438434978e-06,1.196772921643925720e-06,1.346369536849416461e-06,1.495966152054907202e-06,1.645562767260397944e-06,1.795159382465888685e-06,1.944755997671379427e-06,2.094352612876869956e-06,2.243949228082360486e-06,2.393545843287851016e-06,2.543142458493341545e-06,2.692739073698832075e-06,2.842335688904322605e-06,2.991932304109813134e-06,3.141528919315303664e-06,3.291125534520794193e-06,3.440722149726284723e-06,3.590318764931775253e-06,3.739915380137265782e-06,3.889511995342756312e-06,4.039108610548246842e-06,4.188705225753737371e-06,4.338301840959227901e-06,4.487898456164718431e-06,4.637495071370208960e-06,4.787091686575699490e-06,4.936688301781190020e-06,5.086284916986680549e-06,5.235881532192171079e-06,5.385478147397661609e-06,5.535074762603152138e-06,5.684671377808642668e-06,5.834267993014133198e-06,5.983864608219623727e-06,6.133461223425114257e-06,6.283057838630604787e-06,6.432654453836095316e-06,6.582251069041585846e-06,6.731847684247076375e-06,6.881444299452566905e-06,7.031040914658057435e-06,7.180637529863547964e-06,7.330234145069038494e-06,7.479830760274529024e-06,7.629427375480019553e-06,7.779023990685510930e-06,7.928620605891002307e-06,8.078217221096493683e-06,8.227813836301985060e-06,8.377410451507476437e-06,8.527007066712967814e-06,8.676603681918459190e-06,8.826200297123950567e-06,8.975796912329441944e-06,9.125393527534933320e-06,9.274990142740424697e-06,9.424586757945916074e-06 +0.000000000000000000e+00,1.473828179522499124e-07,2.947656359044998248e-07,4.421484538567497637e-07,5.895312718089997555e-07,7.369140897612497473e-07,8.842969077134997391e-07,1.031679725665749731e-06,1.179062543617999723e-06,1.326445361570249714e-06,1.473828179522499706e-06,1.621210997474749698e-06,1.768593815426999690e-06,1.915976633379249893e-06,2.063359451331499885e-06,2.210742269283749877e-06,2.358125087235999869e-06,2.505507905188249861e-06,2.652890723140499852e-06,2.800273541092749844e-06,2.947656359044999836e-06,3.095039176997249828e-06,3.242421994949499820e-06,3.389804812901749812e-06,3.537187630853999803e-06,3.684570448806249795e-06,3.831953266758499787e-06,3.979336084710749779e-06,4.126718902662999771e-06,4.274101720615249762e-06,4.421484538567499754e-06,4.568867356519749746e-06,4.716250174471999738e-06,4.863632992424249730e-06,5.011015810376499721e-06,5.158398628328749713e-06,5.305781446280999705e-06,5.453164264233249697e-06,5.600547082185499689e-06,5.747929900137749680e-06,5.895312718089999672e-06,6.042695536042249664e-06,6.190078353994499656e-06,6.337461171946749648e-06,6.484843989898999639e-06,6.632226807851249631e-06,6.779609625803499623e-06,6.926992443755749615e-06,7.074375261707999607e-06,7.221758079660249598e-06,7.369140897612499590e-06,7.516523715564749582e-06,7.663906533516999574e-06,7.811289351469249566e-06,7.958672169421499557e-06,8.106054987373749549e-06,8.253437805325999541e-06,8.400820623278249533e-06,8.548203441230499525e-06,8.695586259182749517e-06,8.842969077134999508e-06,8.990351895087249500e-06,9.137734713039499492e-06,9.285117530991749484e-06 +0.000000000000000000e+00,1.449919577838897199e-07,2.899839155677794398e-07,4.349758733516691333e-07,5.799678311355587738e-07,7.249597889194484143e-07,8.699517467033380548e-07,1.014943704487227695e-06,1.159935662271117336e-06,1.304927620055006976e-06,1.449919577838896617e-06,1.594911535622786257e-06,1.739903493406675898e-06,1.884895451190565538e-06,2.029887408974455391e-06,2.174879366758345243e-06,2.319871324542235095e-06,2.464863282326124947e-06,2.609855240110014800e-06,2.754847197893904652e-06,2.899839155677794504e-06,3.044831113461684356e-06,3.189823071245574209e-06,3.334815029029464061e-06,3.479806986813353913e-06,3.624798944597243765e-06,3.769790902381133618e-06,3.914782860165023470e-06,4.059774817948913322e-06,4.204766775732803174e-06,4.349758733516693027e-06,4.494750691300582879e-06,4.639742649084472731e-06,4.784734606868362583e-06,4.929726564652252436e-06,5.074718522436142288e-06,5.219710480220032140e-06,5.364702438003921992e-06,5.509694395787811845e-06,5.654686353571701697e-06,5.799678311355591549e-06,5.944670269139481402e-06,6.089662226923371254e-06,6.234654184707261106e-06,6.379646142491150958e-06,6.524638100275040811e-06,6.669630058058930663e-06,6.814622015842820515e-06,6.959613973626710367e-06,7.104605931410600220e-06,7.249597889194490072e-06,7.394589846978379924e-06,7.539581804762269776e-06,7.684573762546159629e-06,7.829565720330050328e-06,7.974557678113941027e-06,8.119549635897831727e-06,8.264541593681722426e-06,8.409533551465613125e-06,8.554525509249503824e-06,8.699517467033394524e-06,8.844509424817285223e-06,8.989501382601175922e-06,9.134493340385066622e-06 +0.000000000000000000e+00,1.474045144951945450e-07,2.948090289903890900e-07,4.422135434855836351e-07,5.896180579807781801e-07,7.370225724759727251e-07,8.844270869711672701e-07,1.031831601466361709e-06,1.179236115961556148e-06,1.326640630456750588e-06,1.474045144951945027e-06,1.621449659447139466e-06,1.768854173942333905e-06,1.916258688437528344e-06,2.063663202932722572e-06,2.211067717427916799e-06,2.358472231923111026e-06,2.505876746418305254e-06,2.653281260913499481e-06,2.800685775408693708e-06,2.948090289903887936e-06,3.095494804399082163e-06,3.242899318894276391e-06,3.390303833389470618e-06,3.537708347884664845e-06,3.685112862379859073e-06,3.832517376875053300e-06,3.979921891370247951e-06,4.127326405865442602e-06,4.274730920360637253e-06,4.422135434855831904e-06,4.569539949351026555e-06,4.716944463846221206e-06,4.864348978341415857e-06,5.011753492836610507e-06,5.159158007331805158e-06,5.306562521826999809e-06,5.453967036322194460e-06,5.601371550817389111e-06,5.748776065312583762e-06,5.896180579807778413e-06,6.043585094302973064e-06,6.190989608798167715e-06,6.338394123293362366e-06,6.485798637788557016e-06,6.633203152283751667e-06,6.780607666778946318e-06,6.928012181274140969e-06,7.075416695769335620e-06,7.222821210264530271e-06,7.370225724759724922e-06,7.517630239254919573e-06,7.665034753750115071e-06,7.812439268245310569e-06,7.959843782740506067e-06,8.107248297235701565e-06,8.254652811730897062e-06,8.402057326226092560e-06,8.549461840721288058e-06,8.696866355216483556e-06,8.844270869711679054e-06,8.991675384206874552e-06,9.139079898702070050e-06,9.286484413197265548e-06 +0.000000000000000000e+00,1.473828179522470272e-07,2.947656359044940544e-07,4.421484538567410816e-07,5.895312718089881088e-07,7.369140897612351360e-07,8.842969077134821631e-07,1.031679725665729190e-06,1.179062543617976218e-06,1.326445361570223245e-06,1.473828179522470272e-06,1.621210997474717299e-06,1.768593815426964326e-06,1.915976633379211353e-06,2.063359451331458381e-06,2.210742269283705408e-06,2.358125087235952435e-06,2.505507905188199462e-06,2.652890723140446489e-06,2.800273541092693517e-06,2.947656359044940544e-06,3.095039176997187571e-06,3.242421994949434598e-06,3.389804812901681625e-06,3.537187630853928653e-06,3.684570448806175680e-06,3.831953266758422707e-06,3.979336084710670158e-06,4.126718902662917608e-06,4.274101720615165059e-06,4.421484538567412510e-06,4.568867356519659960e-06,4.716250174471907411e-06,4.863632992424154862e-06,5.011015810376402313e-06,5.158398628328649763e-06,5.305781446280897214e-06,5.453164264233144665e-06,5.600547082185392115e-06,5.747929900137639566e-06,5.895312718089887017e-06,6.042695536042134468e-06,6.190078353994381918e-06,6.337461171946629369e-06,6.484843989898876820e-06,6.632226807851124270e-06,6.779609625803371721e-06,6.926992443755619172e-06,7.074375261707866622e-06,7.221758079660114073e-06,7.369140897612361524e-06,7.516523715564608975e-06,7.663906533516857272e-06,7.811289351469105570e-06,7.958672169421353868e-06,8.106054987373602166e-06,8.253437805325850463e-06,8.400820623278098761e-06,8.548203441230347059e-06,8.695586259182595357e-06,8.842969077134843654e-06,8.990351895087091952e-06,9.137734713039340250e-06,9.285117530991588547e-06 +0.000000000000000000e+00,1.450062545469604777e-07,2.900125090939209554e-07,4.350187636408814330e-07,5.800250181878419107e-07,7.250312727348023355e-07,8.700375272817627602e-07,1.015043781828723185e-06,1.160050036375683610e-06,1.305056290922644034e-06,1.450062545469604459e-06,1.595068800016564884e-06,1.740075054563525309e-06,1.885081309110485733e-06,2.030087563657445946e-06,2.175093818204405948e-06,2.320100072751365949e-06,2.465106327298325950e-06,2.610112581845285951e-06,2.755118836392245952e-06,2.900125090939205954e-06,3.045131345486165955e-06,3.190137600033125956e-06,3.335143854580085957e-06,3.480150109127045959e-06,3.625156363674005960e-06,3.770162618220965961e-06,3.915168872767925962e-06,4.060175127314885964e-06,4.205181381861845965e-06,4.350187636408805966e-06,4.495193890955765967e-06,4.640200145502725968e-06,4.785206400049685970e-06,4.930212654596645971e-06,5.075218909143605972e-06,5.220225163690565973e-06,5.365231418237525975e-06,5.510237672784485976e-06,5.655243927331445977e-06,5.800250181878405978e-06,5.945256436425365979e-06,6.090262690972325981e-06,6.235268945519285982e-06,6.380275200066245983e-06,6.525281454613205984e-06,6.670287709160165986e-06,6.815293963707125987e-06,6.960300218254085988e-06,7.105306472801045989e-06,7.250312727348005990e-06,7.395318981894965992e-06,7.540325236441925993e-06,7.685331490988885994e-06,7.830337745535845148e-06,7.975344000082804303e-06,8.120350254629763457e-06,8.265356509176722611e-06,8.410362763723681765e-06,8.555369018270640919e-06,8.700375272817600073e-06,8.845381527364559228e-06,8.990387781911518382e-06,9.135394036458477536e-06 +0.000000000000000000e+00,1.495966152054848916e-07,2.991932304109697832e-07,4.487898456164546483e-07,5.983864608219394605e-07,7.479830760274242727e-07,8.975796912329090848e-07,1.047176306438393897e-06,1.196772921643878709e-06,1.346369536849363521e-06,1.495966152054848334e-06,1.645562767260333146e-06,1.795159382465817958e-06,1.944755997671302770e-06,2.094352612876787794e-06,2.243949228082272818e-06,2.393545843287757842e-06,2.543142458493242866e-06,2.692739073698727890e-06,2.842335688904212914e-06,2.991932304109697938e-06,3.141528919315182962e-06,3.291125534520667986e-06,3.440722149726153009e-06,3.590318764931638033e-06,3.739915380137123057e-06,3.889511995342608081e-06,4.039108610548092682e-06,4.188705225753577282e-06,4.338301840959061883e-06,4.487898456164546483e-06,4.637495071370031083e-06,4.787091686575515684e-06,4.936688301781000284e-06,5.086284916986484885e-06,5.235881532191969485e-06,5.385478147397454086e-06,5.535074762602938686e-06,5.684671377808423286e-06,5.834267993013907887e-06,5.983864608219392487e-06,6.133461223424877088e-06,6.283057838630361688e-06,6.432654453835846288e-06,6.582251069041330889e-06,6.731847684246815489e-06,6.881444299452300090e-06,7.031040914657784690e-06,7.180637529863269291e-06,7.330234145068753891e-06,7.479830760274238491e-06,7.629427375479723092e-06,7.779023990685207692e-06,7.928620605890692293e-06,8.078217221096176893e-06,8.227813836301661494e-06,8.377410451507146094e-06,8.527007066712630694e-06,8.676603681918115295e-06,8.826200297123599895e-06,8.975796912329084496e-06,9.125393527534569096e-06,9.274990142740053697e-06,9.424586757945538297e-06 +0.000000000000000000e+00,1.526400969969208534e-07,3.052801939938417068e-07,4.579202909907625866e-07,6.105603879876835194e-07,7.632004849846044522e-07,9.158405819815253850e-07,1.068480678978446318e-06,1.221120775975367251e-06,1.373760872972288183e-06,1.526400969969209116e-06,1.679041066966130049e-06,1.831681163963050982e-06,1.984321260959971915e-06,2.136961357956892636e-06,2.289601454953813357e-06,2.442241551950734078e-06,2.594881648947654799e-06,2.747521745944575520e-06,2.900161842941496241e-06,3.052801939938416962e-06,3.205442036935337683e-06,3.358082133932258404e-06,3.510722230929179125e-06,3.663362327926099846e-06,3.816002424923020143e-06,3.968642521919940441e-06,4.121282618916860739e-06,4.273922715913781036e-06,4.426562812910701334e-06,4.579202909907621631e-06,4.731843006904541929e-06,4.884483103901462226e-06,5.037123200898382524e-06,5.189763297895302821e-06,5.342403394892223119e-06,5.495043491889143416e-06,5.647683588886063714e-06,5.800323685882984011e-06,5.952963782879904309e-06,6.105603879876824606e-06,6.258243976873744904e-06,6.410884073870665201e-06,6.563524170867585499e-06,6.716164267864505796e-06,6.868804364861426094e-06,7.021444461858346391e-06,7.174084558855266689e-06,7.326724655852186986e-06,7.479364752849107284e-06,7.632004849846026734e-06,7.784644946842946185e-06,7.937285043839865635e-06,8.089925140836785086e-06,8.242565237833704536e-06,8.395205334830623987e-06,8.547845431827543437e-06,8.700485528824462888e-06,8.853125625821382338e-06,9.005765722818301789e-06,9.158405819815221239e-06,9.311045916812140690e-06,9.463686013809060140e-06,9.616326110805979591e-06 +0.000000000000000000e+00,1.525464493594756832e-07,3.050928987189513664e-07,4.576393480784270761e-07,6.101857974379028387e-07,7.627322467973786013e-07,9.152786961568543639e-07,1.067825145516330127e-06,1.220371594875805889e-06,1.372918044235281652e-06,1.525464493594757414e-06,1.678010942954233177e-06,1.830557392313708940e-06,1.983103841673184914e-06,2.135650291032660677e-06,2.288196740392136439e-06,2.440743189751612202e-06,2.593289639111087964e-06,2.745836088470563727e-06,2.898382537830039490e-06,3.050928987189515252e-06,3.203475436548991015e-06,3.356021885908466777e-06,3.508568335267942540e-06,3.661114784627418303e-06,3.813661233986894065e-06,3.966207683346369828e-06,4.118754132705845591e-06,4.271300582065321353e-06,4.423847031424797116e-06,4.576393480784272878e-06,4.728939930143748641e-06,4.881486379503224404e-06,5.034032828862700166e-06,5.186579278222175929e-06,5.339125727581651691e-06,5.491672176941127454e-06,5.644218626300603217e-06,5.796765075660078979e-06,5.949311525019554742e-06,6.101857974379030504e-06,6.254404423738506267e-06,6.406950873097982030e-06,6.559497322457457792e-06,6.712043771816933555e-06,6.864590221176409318e-06,7.017136670535885080e-06,7.169683119895360843e-06,7.322229569254836605e-06,7.474776018614312368e-06,7.627322467973788131e-06,7.779868917333263893e-06,7.932415366692739656e-06,8.084961816052215418e-06,8.237508265411691181e-06,8.390054714771166944e-06,8.542601164130642706e-06,8.695147613490118469e-06,8.847694062849594231e-06,9.000240512209069994e-06,9.152786961568545757e-06,9.305333410928021519e-06,9.457879860287497282e-06,9.610426309646973045e-06 +0.000000000000000000e+00,1.499501999965354238e-07,2.999003999930708475e-07,4.498505999896062448e-07,5.998007999861415892e-07,7.497509999826769335e-07,8.997011999792122778e-07,1.049651399975747516e-06,1.199601599972282755e-06,1.349551799968817993e-06,1.499501999965353232e-06,1.649452199961888470e-06,1.799402399958423709e-06,1.949352599954958947e-06,2.099302799951494186e-06,2.249252999948029424e-06,2.399203199944564663e-06,2.549153399941099901e-06,2.699103599937635139e-06,2.849053799934170378e-06,2.999003999930705616e-06,3.148954199927240855e-06,3.298904399923776093e-06,3.448854599920311332e-06,3.598804799916846570e-06,3.748754999913381809e-06,3.898705199909917047e-06,4.048655399906452709e-06,4.198605599902988371e-06,4.348555799899524033e-06,4.498505999896059695e-06,4.648456199892595357e-06,4.798406399889131019e-06,4.948356599885666681e-06,5.098306799882202343e-06,5.248256999878738005e-06,5.398207199875273667e-06,5.548157399871809329e-06,5.698107599868344991e-06,5.848057799864880653e-06,5.998007999861416315e-06,6.147958199857951977e-06,6.297908399854487639e-06,6.447858599851023301e-06,6.597808799847558963e-06,6.747758999844094625e-06,6.897709199840630287e-06,7.047659399837165949e-06,7.197609599833701611e-06,7.347559799830237273e-06,7.497509999826772935e-06,7.647460199823308597e-06,7.797410399819844259e-06,7.947360599816379921e-06,8.097310799812915583e-06,8.247260999809451245e-06,8.397211199805986907e-06,8.547161399802522569e-06,8.697111599799058231e-06,8.847061799795593893e-06,8.997011999792129555e-06,9.146962199788665217e-06,9.296912399785200879e-06,9.446862599781736541e-06 +0.000000000000000000e+00,1.544127124155195117e-07,3.088254248310390234e-07,4.632381372465585087e-07,6.176508496620779410e-07,7.720635620775973733e-07,9.264762744931168056e-07,1.080888986908636132e-06,1.235301699324155458e-06,1.389714411739674785e-06,1.544127124155194111e-06,1.698539836570713438e-06,1.852952548986232764e-06,2.007365261401752091e-06,2.161777973817271417e-06,2.316190686232790743e-06,2.470603398648310070e-06,2.625016111063829396e-06,2.779428823479348723e-06,2.933841535894868049e-06,3.088254248310387375e-06,3.242666960725906702e-06,3.397079673141426028e-06,3.551492385556945355e-06,3.705905097972464681e-06,3.860317810387983584e-06,4.014730522803502487e-06,4.169143235219021390e-06,4.323555947634540293e-06,4.477968660050059196e-06,4.632381372465578099e-06,4.786794084881097001e-06,4.941206797296615904e-06,5.095619509712134807e-06,5.250032222127653710e-06,5.404444934543172613e-06,5.558857646958691516e-06,5.713270359374210419e-06,5.867683071789729322e-06,6.022095784205248225e-06,6.176508496620767128e-06,6.330921209036286031e-06,6.485333921451804933e-06,6.639746633867323836e-06,6.794159346282842739e-06,6.948572058698361642e-06,7.102984771113880545e-06,7.257397483529399448e-06,7.411810195944918351e-06,7.566222908360437254e-06,7.720635620775957004e-06,7.875048333191476754e-06,8.029461045606996504e-06,8.183873758022516254e-06,8.338286470438036003e-06,8.492699182853555753e-06,8.647111895269075503e-06,8.801524607684595253e-06,8.955937320100115003e-06,9.110350032515634753e-06,9.264762744931154503e-06,9.419175457346674253e-06,9.573588169762194003e-06,9.728000882177713753e-06 +0.000000000000000000e+00,1.525926517193812174e-07,3.051853034387624348e-07,4.577779551581436522e-07,6.103706068775248696e-07,7.629632585969060870e-07,9.155559103162873043e-07,1.068148562035668522e-06,1.220741213755049739e-06,1.373333865474430957e-06,1.525926517193812174e-06,1.678519168913193391e-06,1.831111820632574609e-06,1.983704472351956038e-06,2.136297124071337467e-06,2.288889775790718896e-06,2.441482427510100325e-06,2.594075079229481754e-06,2.746667730948863184e-06,2.899260382668244613e-06,3.051853034387626042e-06,3.204445686107007471e-06,3.357038337826388900e-06,3.509630989545770329e-06,3.662223641265151758e-06,3.814816292984533188e-06,3.967408944703914617e-06,4.120001596423296046e-06,4.272594248142677475e-06,4.425186899862058904e-06,4.577779551581440333e-06,4.730372203300821763e-06,4.882964855020203192e-06,5.035557506739584621e-06,5.188150158458966050e-06,5.340742810178347479e-06,5.493335461897728908e-06,5.645928113617110337e-06,5.798520765336491767e-06,5.951113417055873196e-06,6.103706068775254625e-06,6.256298720494636054e-06,6.408891372214017483e-06,6.561484023933398912e-06,6.714076675652780341e-06,6.866669327372161771e-06,7.019261979091543200e-06,7.171854630810924629e-06,7.324447282530306058e-06,7.477039934249687487e-06,7.629632585969068069e-06,7.782225237688449498e-06,7.934817889407830928e-06,8.087410541127212357e-06,8.240003192846593786e-06,8.392595844565975215e-06,8.545188496285356644e-06,8.697781148004738073e-06,8.850373799724119503e-06,9.002966451443500932e-06,9.155559103162882361e-06,9.308151754882263790e-06,9.460744406601645219e-06,9.613337058321026648e-06 +0.000000000000000000e+00,1.499095223037151612e-07,2.998190446074303224e-07,4.497285669111454837e-07,5.996380892148606449e-07,7.495476115185758061e-07,8.994571338222909673e-07,1.049366656126006129e-06,1.199276178429721290e-06,1.349185700733436451e-06,1.499095223037151612e-06,1.649004745340866773e-06,1.798914267644581935e-06,1.948823789948297096e-06,2.098733312252012257e-06,2.248642834555727418e-06,2.398552356859442580e-06,2.548461879163157741e-06,2.698371401466872902e-06,2.848280923770588063e-06,2.998190446074303224e-06,3.148099968378018386e-06,3.298009490681733547e-06,3.447919012985448708e-06,3.597828535289163869e-06,3.747738057592879031e-06,3.897647579896594192e-06,4.047557102200309353e-06,4.197466624504024514e-06,4.347376146807739676e-06,4.497285669111454837e-06,4.647195191415169998e-06,4.797104713718885159e-06,4.947014236022600320e-06,5.096923758326315482e-06,5.246833280630030643e-06,5.396742802933745804e-06,5.546652325237460965e-06,5.696561847541176127e-06,5.846471369844891288e-06,5.996380892148606449e-06,6.146290414452321610e-06,6.296199936756036771e-06,6.446109459059751933e-06,6.596018981363467094e-06,6.745928503667182255e-06,6.895838025970897416e-06,7.045747548274612578e-06,7.195657070578327739e-06,7.345566592882042900e-06,7.495476115185758061e-06,7.645385637489473222e-06,7.795295159793188384e-06,7.945204682096903545e-06,8.095114204400618706e-06,8.245023726704333867e-06,8.394933249008049029e-06,8.544842771311764190e-06,8.694752293615479351e-06,8.844661815919194512e-06,8.994571338222909673e-06,9.144480860526624835e-06,9.294390382830339996e-06,9.444299905134055157e-06 +0.000000000000000000e+00,1.526400969969174388e-07,3.052801939938348776e-07,4.579202909907523163e-07,6.105603879876697551e-07,7.632004849845871939e-07,9.158405819815046327e-07,1.068480678978422177e-06,1.221120775975339722e-06,1.373760872972257267e-06,1.526400969969174811e-06,1.679041066966092356e-06,1.831681163963009901e-06,1.984321260959927445e-06,2.136961357956845202e-06,2.289601454953762958e-06,2.442241551950680715e-06,2.594881648947598471e-06,2.747521745944516227e-06,2.900161842941433984e-06,3.052801939938351740e-06,3.205442036935269497e-06,3.358082133932187253e-06,3.510722230929105010e-06,3.663362327926022766e-06,3.816002424922940522e-06,3.968642521919858279e-06,4.121282618916776035e-06,4.273922715913693792e-06,4.426562812910611548e-06,4.579202909907529304e-06,4.731843006904447061e-06,4.884483103901364817e-06,5.037123200898282574e-06,5.189763297895200330e-06,5.342403394892118087e-06,5.495043491889035843e-06,5.647683588885953599e-06,5.800323685882871356e-06,5.952963782879789112e-06,6.105603879876706869e-06,6.258243976873624625e-06,6.410884073870542382e-06,6.563524170867460138e-06,6.716164267864377894e-06,6.868804364861295651e-06,7.021444461858213407e-06,7.174084558855131164e-06,7.326724655852048920e-06,7.479364752848966676e-06,7.632004849845884433e-06,7.784644946842802189e-06,7.937285043839719946e-06,8.089925140836637702e-06,8.242565237833555459e-06,8.395205334830473215e-06,8.547845431827390971e-06,8.700485528824308728e-06,8.853125625821226484e-06,9.005765722818144241e-06,9.158405819815061997e-06,9.311045916811979753e-06,9.463686013808897510e-06,9.616326110805815266e-06 +0.000000000000000000e+00,1.525926517193795498e-07,3.051853034387590996e-07,4.577779551581386759e-07,6.103706068775183051e-07,7.629632585968979343e-07,9.155559103162775635e-07,1.068148562035657299e-06,1.220741213755037034e-06,1.373333865474416769e-06,1.525926517193796504e-06,1.678519168913176239e-06,1.831111820632555974e-06,1.983704472351935709e-06,2.136297124071315444e-06,2.288889775790695179e-06,2.441482427510074914e-06,2.594075079229454649e-06,2.746667730948834384e-06,2.899260382668214120e-06,3.051853034387593855e-06,3.204445686106973590e-06,3.357038337826353325e-06,3.509630989545733060e-06,3.662223641265112795e-06,3.814816292984492530e-06,3.967408944703872265e-06,4.120001596423252000e-06,4.272594248142631735e-06,4.425186899862011470e-06,4.577779551581391205e-06,4.730372203300770941e-06,4.882964855020150676e-06,5.035557506739530411e-06,5.188150158458910146e-06,5.340742810178289881e-06,5.493335461897669616e-06,5.645928113617049351e-06,5.798520765336429086e-06,5.951113417055808821e-06,6.103706068775188556e-06,6.256298720494568291e-06,6.408891372213948026e-06,6.561484023933327762e-06,6.714076675652707497e-06,6.866669327372087232e-06,7.019261979091466967e-06,7.171854630810846702e-06,7.324447282530226437e-06,7.477039934249606172e-06,7.629632585968986754e-06,7.782225237688368183e-06,7.934817889407749612e-06,8.087410541127131042e-06,8.240003192846512471e-06,8.392595844565893900e-06,8.545188496285275329e-06,8.697781148004656758e-06,8.850373799724038187e-06,9.002966451443419617e-06,9.155559103162801046e-06,9.308151754882182475e-06,9.460744406601563904e-06,9.613337058320945333e-06 +0.000000000000000000e+00,1.499501999965308180e-07,2.999003999930616360e-07,4.498505999895924805e-07,5.998007999861233779e-07,7.497509999826542754e-07,8.997011999791851728e-07,1.049651399975716176e-06,1.199601599972247179e-06,1.349551799968778183e-06,1.499501999965309186e-06,1.649452199961840189e-06,1.799402399958371193e-06,1.949352599954902196e-06,2.099302799951433199e-06,2.249252999947964203e-06,2.399203199944495206e-06,2.549153399941026209e-06,2.699103599937557212e-06,2.849053799934088216e-06,2.999003999930619219e-06,3.148954199927150222e-06,3.298904399923681226e-06,3.448854599920212229e-06,3.598804799916743232e-06,3.748754999913274236e-06,3.898705199909805239e-06,4.048655399906335819e-06,4.198605599902866398e-06,4.348555799899396978e-06,4.498505999895927558e-06,4.648456199892458138e-06,4.798406399888988718e-06,4.948356599885519297e-06,5.098306799882049877e-06,5.248256999878580457e-06,5.398207199875111037e-06,5.548157399871641617e-06,5.698107599868172196e-06,5.848057799864702776e-06,5.998007999861233356e-06,6.147958199857763936e-06,6.297908399854294516e-06,6.447858599850825095e-06,6.597808799847355675e-06,6.747758999843886255e-06,6.897709199840416835e-06,7.047659399836947414e-06,7.197609599833477994e-06,7.347559799830008574e-06,7.497509999826539154e-06,7.647460199823069734e-06,7.797410399819600313e-06,7.947360599816130893e-06,8.097310799812661473e-06,8.247260999809192053e-06,8.397211199805722633e-06,8.547161399802253212e-06,8.697111599798783792e-06,8.847061799795314372e-06,8.997011999791844952e-06,9.146962199788375531e-06,9.296912399784906111e-06,9.446862599781436691e-06 +0.000000000000000000e+00,1.544127124155164412e-07,3.088254248310328824e-07,4.632381372465492972e-07,6.176508496620656590e-07,7.720635620775820208e-07,9.264762744930983826e-07,1.080888986908614744e-06,1.235301699324131106e-06,1.389714411739647468e-06,1.544127124155163830e-06,1.698539836570680192e-06,1.852952548986196553e-06,2.007365261401712703e-06,2.161777973817229065e-06,2.316190686232745427e-06,2.470603398648261789e-06,2.625016111063778151e-06,2.779428823479294513e-06,2.933841535894810874e-06,3.088254248310327236e-06,3.242666960725843598e-06,3.397079673141359960e-06,3.551492385556876322e-06,3.705905097972392683e-06,3.860317810387909045e-06,4.014730522803425407e-06,4.169143235218941769e-06,4.323555947634458131e-06,4.477968660049974492e-06,4.632381372465490854e-06,4.786794084881007216e-06,4.941206797296523578e-06,5.095619509712039940e-06,5.250032222127556301e-06,5.404444934543072663e-06,5.558857646958589025e-06,5.713270359374105387e-06,5.867683071789621749e-06,6.022095784205138110e-06,6.176508496620654472e-06,6.330921209036170834e-06,6.485333921451687196e-06,6.639746633867203558e-06,6.794159346282719919e-06,6.948572058698236281e-06,7.102984771113752643e-06,7.257397483529269005e-06,7.411810195944785367e-06,7.566222908360301728e-06,7.720635620775818090e-06,7.875048333191334452e-06,8.029461045606850814e-06,8.183873758022367176e-06,8.338286470437883538e-06,8.492699182853399899e-06,8.647111895268916261e-06,8.801524607684432623e-06,8.955937320099948985e-06,9.110350032515465347e-06,9.264762744930981708e-06,9.419175457346498070e-06,9.573588169762014432e-06,9.728000882177530794e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.556758218309943880e-07,3.113516436619887760e-07,4.670274654929831640e-07,6.227032873239775520e-07,7.783791091549719400e-07,9.340549309859663280e-07,1.089730752816960822e-06,1.245406574647955316e-06,1.401082396478949810e-06,1.556758218309944304e-06,1.712434040140938797e-06,1.868109861971933291e-06,2.023785683802927785e-06,2.179461505633922491e-06,2.335137327464917197e-06,2.490813149295911902e-06,2.646488971126906608e-06,2.802164792957901313e-06,2.957840614788896019e-06,3.113516436619890725e-06,3.269192258450885430e-06,3.424868080281880136e-06,3.580543902112874842e-06,3.736219723943869547e-06,3.891895545774864253e-06,4.047571367605858959e-06,4.203247189436853664e-06,4.358923011267848370e-06,4.514598833098843076e-06,4.670274654929837781e-06,4.825950476760832487e-06,4.981626298591827193e-06,5.137302120422821898e-06,5.292977942253816604e-06,5.448653764084811309e-06,5.604329585915806015e-06,5.760005407746800721e-06,5.915681229577795426e-06,6.071357051408790132e-06,6.227032873239784838e-06,6.382708695070779543e-06,6.538384516901774249e-06,6.694060338732768955e-06,6.849736160563763660e-06,7.005411982394758366e-06,7.161087804225753072e-06,7.316763626056747777e-06,7.472439447887742483e-06,7.628115269718737188e-06,7.783791091549731894e-06,7.939466913380727447e-06,8.095142735211722999e-06,8.250818557042718552e-06,8.406494378873714105e-06,8.562170200704709657e-06,8.717846022535705210e-06,8.873521844366700763e-06,9.029197666197696316e-06,9.184873488028691868e-06,9.340549309859687421e-06,9.496225131690682974e-06,9.651900953521678526e-06,9.807576775352674079e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.558146276396518255e-07,3.116292552793036510e-07,4.674438829189554765e-07,6.232585105586073020e-07,7.790731381982591275e-07,9.348877658379109529e-07,1.090702393477562778e-06,1.246517021117214604e-06,1.402331648756866429e-06,1.558146276396518255e-06,1.713960904036170080e-06,1.869775531675821906e-06,2.025590159315473731e-06,2.181404786955125557e-06,2.337219414594777382e-06,2.493034042234429208e-06,2.648848669874081033e-06,2.804663297513732859e-06,2.960477925153384684e-06,3.116292552793036510e-06,3.272107180432688335e-06,3.427921808072340161e-06,3.583736435711991986e-06,3.739551063351643812e-06,3.895365690991295214e-06,4.051180318630946616e-06,4.206994946270598018e-06,4.362809573910249420e-06,4.518624201549900822e-06,4.674438829189552224e-06,4.830253456829203626e-06,4.986068084468855028e-06,5.141882712108506430e-06,5.297697339748157832e-06,5.453511967387809234e-06,5.609326595027460635e-06,5.765141222667112037e-06,5.920955850306763439e-06,6.076770477946414841e-06,6.232585105586066243e-06,6.388399733225717645e-06,6.544214360865369047e-06,6.700028988505020449e-06,6.855843616144671851e-06,7.011658243784323253e-06,7.167472871423974655e-06,7.323287499063626057e-06,7.479102126703277459e-06,7.634916754342928861e-06,7.790731381982580263e-06,7.946546009622231665e-06,8.102360637261883067e-06,8.258175264901534469e-06,8.413989892541185871e-06,8.569804520180837273e-06,8.725619147820488675e-06,8.881433775460140077e-06,9.037248403099791479e-06,9.193063030739442881e-06,9.348877658379094283e-06,9.504692286018745685e-06,9.660506913658397087e-06,9.816321541298048489e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 +0.000000000000000000e+00,1.556758218309926939e-07,3.113516436619853879e-07,4.670274654929780818e-07,6.227032873239707758e-07,7.783791091549634697e-07,9.340549309859561636e-07,1.089730752816948963e-06,1.245406574647941763e-06,1.401082396478934563e-06,1.556758218309927363e-06,1.712434040140920163e-06,1.868109861971912963e-06,2.023785683802905762e-06,2.179461505633898774e-06,2.335137327464891786e-06,2.490813149295884797e-06,2.646488971126877809e-06,2.802164792957870820e-06,2.957840614788863832e-06,3.113516436619856843e-06,3.269192258450849855e-06,3.424868080281842867e-06,3.580543902112835878e-06,3.736219723943828890e-06,3.891895545774821901e-06,4.047571367605814913e-06,4.203247189436807924e-06,4.358923011267800936e-06,4.514598833098793948e-06,4.670274654929786959e-06,4.825950476760779971e-06,4.981626298591772982e-06,5.137302120422765994e-06,5.292977942253759006e-06,5.448653764084752017e-06,5.604329585915745029e-06,5.760005407746738040e-06,5.915681229577731052e-06,6.071357051408724063e-06,6.227032873239717075e-06,6.382708695070710087e-06,6.538384516901703098e-06,6.694060338732696110e-06,6.849736160563689121e-06,7.005411982394682133e-06,7.161087804225675144e-06,7.316763626056668156e-06,7.472439447887661168e-06,7.628115269718654179e-06,7.783791091549647191e-06,7.939466913380639355e-06,8.095142735211631520e-06,8.250818557042623684e-06,8.406494378873615849e-06,8.562170200704608014e-06,8.717846022535600178e-06,8.873521844366592343e-06,9.029197666197584507e-06,9.184873488028576672e-06,9.340549309859568836e-06,9.496225131690561001e-06,9.651900953521553165e-06,9.807576775352545330e-06 +0.000000000000000000e+00,1.587301587301587423e-07,3.174603174603174846e-07,4.761904761904762269e-07,6.349206349206349692e-07,7.936507936507936586e-07,9.523809523809524538e-07,1.111111111111111249e-06,1.269841269841269938e-06,1.428571428571428628e-06,1.587301587301587317e-06,1.746031746031746218e-06,1.904761904761904908e-06,2.063492063492063809e-06,2.222222222222222498e-06,2.380952380952381187e-06,2.539682539682539877e-06,2.698412698412698566e-06,2.857142857142857256e-06,3.015873015873015945e-06,3.174603174603174634e-06,3.333333333333333747e-06,3.492063492063492437e-06,3.650793650793651126e-06,3.809523809523809815e-06,3.968253968253968928e-06,4.126984126984127618e-06,4.285714285714286307e-06,4.444444444444444996e-06,4.603174603174603686e-06,4.761904761904762375e-06,4.920634920634921064e-06,5.079365079365079754e-06,5.238095238095238443e-06,5.396825396825397132e-06,5.555555555555555822e-06,5.714285714285714511e-06,5.873015873015873201e-06,6.031746031746031890e-06,6.190476190476190579e-06,6.349206349206349269e-06,6.507936507936508805e-06,6.666666666666667494e-06,6.825396825396826184e-06,6.984126984126984873e-06,7.142857142857143562e-06,7.301587301587302252e-06,7.460317460317460941e-06,7.619047619047619631e-06,7.777777777777779167e-06,7.936507936507937856e-06,8.095238095238096546e-06,8.253968253968255235e-06,8.412698412698413924e-06,8.571428571428572614e-06,8.730158730158731303e-06,8.888888888888889992e-06,9.047619047619048682e-06,9.206349206349207371e-06,9.365079365079366061e-06,9.523809523809524750e-06,9.682539682539683439e-06,9.841269841269842129e-06,1.000000000000000082e-05 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_z.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_z.csv new file mode 100644 index 000000000..499a02788 --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/field_disp_z.csv @@ -0,0 +1,2520 @@ +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.390704923961158867e-10,1.678140984792231773e-09,2.517211477188347557e-09,3.356281969584463133e-09,4.195352461980579123e-09,5.034422954376695113e-09,5.873493446772811103e-09,6.712563939168927094e-09,7.551634431565043084e-09,8.390704923961158247e-09,9.229775416357273409e-09,1.006884590875338857e-08,1.090791640114950374e-08,1.174698689354561890e-08,1.258605738594173406e-08,1.342512787833784922e-08,1.426419837073396439e-08,1.510326886313007955e-08,1.594233935552619471e-08,1.678140984792230988e-08,1.762048034031842504e-08,1.845955083271454020e-08,1.929862132511065536e-08,2.013769181750677053e-08,2.097676230990288569e-08,2.181583280229900085e-08,2.265490329469511602e-08,2.349397378709123118e-08,2.433304427948734634e-08,2.517211477188346150e-08,2.601118526427957667e-08,2.685025575667569183e-08,2.768932624907180699e-08,2.852839674146792216e-08,2.936746723386403732e-08,3.020653772626015248e-08,3.104560821865626765e-08,3.188467871105238281e-08,3.272374920344849797e-08,3.356281969584461313e-08,3.440189018824072830e-08,3.524096068063684346e-08,3.608003117303295862e-08,3.691910166542907379e-08,3.775817215782518895e-08,3.859724265022130411e-08,3.943631314261741927e-08,4.027538363501353444e-08,4.111445412740964960e-08,4.195352461980576476e-08,4.279259511220187993e-08,4.363166560459799509e-08,4.447073609699411025e-08,4.530980658939022541e-08,4.614887708178634058e-08,4.698794757418245574e-08,4.782701806657857090e-08,4.866608855897468607e-08,4.950515905137080123e-08,5.034422954376691639e-08,5.118330003616303155e-08,5.202237052855914672e-08,5.286144102095526188e-08 +0.000000000000000000e+00,9.026579930032623348e-10,1.805315986006524670e-09,2.707973979009787108e-09,3.610631972013049753e-09,4.513289965016311984e-09,5.415947958019574215e-09,6.318605951022836447e-09,7.221263944026098678e-09,8.123921937029360909e-09,9.026579930032623968e-09,9.929237923035887027e-09,1.083189591603915009e-08,1.173455390904241314e-08,1.263721190204567620e-08,1.353986989504893926e-08,1.444252788805220232e-08,1.534518588105546703e-08,1.624784387405873175e-08,1.715050186706199646e-08,1.805315986006526117e-08,1.895581785306852588e-08,1.985847584607179060e-08,2.076113383907505531e-08,2.166379183207832002e-08,2.256644982508158474e-08,2.346910781808484945e-08,2.437176581108811416e-08,2.527442380409137887e-08,2.617708179709464359e-08,2.707973979009790830e-08,2.798239778310117301e-08,2.888505577610443773e-08,2.978771376910770244e-08,3.069037176211096715e-08,3.159302975511423186e-08,3.249568774811749658e-08,3.339834574112076129e-08,3.430100373412402600e-08,3.520366172712729072e-08,3.610631972013055543e-08,3.700897771313382014e-08,3.791163570613708485e-08,3.881429369914034957e-08,3.971695169214361428e-08,4.061960968514687899e-08,4.152226767815014371e-08,4.242492567115340842e-08,4.332758366415667313e-08,4.423024165715993784e-08,4.513289965016320256e-08,4.603555764316646727e-08,4.693821563616973198e-08,4.784087362917299670e-08,4.874353162217626141e-08,4.964618961517952612e-08,5.054884760818279084e-08,5.145150560118605555e-08,5.235416359418932026e-08,5.325682158719258497e-08,5.415947958019584969e-08,5.506213757319911440e-08,5.596479556620237911e-08,5.686745355920564383e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.530222592371533296e-21,3.060445184743066592e-21,4.590667777114599512e-21,6.120890369486132432e-21,7.651112961857665352e-21,9.181335554229199024e-21,1.071155814660073270e-20,1.224178073897226637e-20,1.377200333134380004e-20,1.530222592371533371e-20,1.683244851608686738e-20,1.836267110845840106e-20,1.989289370082993473e-20,2.142311629320146840e-20,2.295333888557300207e-20,2.448356147794453575e-20,2.601378407031606942e-20,2.754400666268760008e-20,2.907422925505913074e-20,3.060445184743066141e-20,3.213467443980219207e-20,3.366489703217372273e-20,3.519511962454525340e-20,3.672534221691678406e-20,3.825556480928831472e-20,3.978578740165984538e-20,4.131600999403137605e-20,4.284623258640290671e-20,4.437645517877443737e-20,4.590667777114596804e-20,4.743690036351749870e-20,4.896712295588902936e-20,5.049734554826056003e-20,5.202756814063209069e-20,5.355779073300362135e-20,5.508801332537515201e-20,5.661823591774668870e-20,5.814845851011822538e-20,5.967868110248976206e-20,6.120890369486129874e-20,6.273912628723283542e-20,6.426934887960437210e-20,6.579957147197590878e-20,6.732979406434744547e-20,6.886001665671898215e-20,7.039023924909051883e-20,7.192046184146205551e-20,7.345068443383359219e-20,7.498090702620512887e-20,7.651112961857666555e-20,7.804135221094820224e-20,7.957157480331973892e-20,8.110179739569127560e-20,8.263201998806281228e-20,8.416224258043434896e-20,8.569246517280588564e-20,8.722268776517742232e-20,8.875291035754895901e-20,9.028313294992049569e-20,9.181335554229203237e-20,9.334357813466356905e-20,9.487380072703510573e-20,9.640402331940664241e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.927969290735657436e-10,1.585593858147131487e-09,2.378390787220697231e-09,3.171187716294262974e-09,3.963984645367829131e-09,4.756781574441395288e-09,5.549578503514961446e-09,6.342375432588527603e-09,7.135172361662093760e-09,7.927969290735659917e-09,8.720766219809226074e-09,9.513563148882792231e-09,1.030636007795635839e-08,1.109915700702992455e-08,1.189195393610349070e-08,1.268475086517705686e-08,1.347754779425062302e-08,1.427034472332418917e-08,1.506314165239775533e-08,1.585593858147132314e-08,1.664873551054489095e-08,1.744153243961845877e-08,1.823432936869202658e-08,1.902712629776559439e-08,1.981992322683916220e-08,2.061272015591273001e-08,2.140551708498629782e-08,2.219831401405986563e-08,2.299111094313343345e-08,2.378390787220700126e-08,2.457670480128056907e-08,2.536950173035413688e-08,2.616229865942770469e-08,2.695509558850127250e-08,2.774789251757484032e-08,2.854068944664840813e-08,2.933348637572197594e-08,3.012628330479554375e-08,3.091908023386911156e-08,3.171187716294267937e-08,3.250467409201624718e-08,3.329747102108981500e-08,3.409026795016338281e-08,3.488306487923695062e-08,3.567586180831051843e-08,3.646865873738408624e-08,3.726145566645765405e-08,3.805425259553122186e-08,3.884704952460478968e-08,3.963984645367835749e-08,4.043264338275192530e-08,4.122544031182549311e-08,4.201823724089906092e-08,4.281103416997262873e-08,4.360383109904619655e-08,4.439662802811976436e-08,4.518942495719333217e-08,4.598222188626689998e-08,4.677501881534046779e-08,4.756781574441403560e-08,4.836061267348760341e-08,4.915340960256117123e-08,4.994620653163473904e-08 +0.000000000000000000e+00,7.890789905478584466e-10,1.578157981095716893e-09,2.367236971643575340e-09,3.156315962191433786e-09,3.945394952739292233e-09,4.734473943287150680e-09,5.523552933835009126e-09,6.312631924382867573e-09,7.101710914930726019e-09,7.890789905478584466e-09,8.679868896026442913e-09,9.468947886574301359e-09,1.025802687712215981e-08,1.104710586767001825e-08,1.183618485821787670e-08,1.262526384876573515e-08,1.341434283931359359e-08,1.420342182986145204e-08,1.499250082040931214e-08,1.578157981095717224e-08,1.657065880150503234e-08,1.735973779205289244e-08,1.814881678260075254e-08,1.893789577314861264e-08,1.972697476369647275e-08,2.051605375424433285e-08,2.130513274479219295e-08,2.209421173534005305e-08,2.288329072588791315e-08,2.367236971643577325e-08,2.446144870698363335e-08,2.525052769753149345e-08,2.603960668807935355e-08,2.682868567862721365e-08,2.761776466917507376e-08,2.840684365972293386e-08,2.919592265027079396e-08,2.998500164081865075e-08,3.077408063136650754e-08,3.156315962191436433e-08,3.235223861246222113e-08,3.314131760301007792e-08,3.393039659355793471e-08,3.471947558410579150e-08,3.550855457465364830e-08,3.629763356520150509e-08,3.708671255574936188e-08,3.787579154629721867e-08,3.866487053684507546e-08,3.945394952739293226e-08,4.024302851794078905e-08,4.103210750848864584e-08,4.182118649903650263e-08,4.261026548958435943e-08,4.339934448013221622e-08,4.418842347068007301e-08,4.497750246122792980e-08,4.576658145177578659e-08,4.655566044232364339e-08,4.734473943287150018e-08,4.813381842341935697e-08,4.892289741396721376e-08,4.971197640451507056e-08 +0.000000000000000000e+00,1.045823841924745637e-09,2.091647683849491273e-09,3.137471525774236910e-09,4.183295367698982547e-09,5.229119209623728597e-09,6.274943051548474647e-09,7.320766893473220697e-09,8.366590735397966748e-09,9.412414577322712798e-09,1.045823841924745885e-08,1.150406226117220490e-08,1.254988610309695095e-08,1.359570994502169700e-08,1.464153378694644305e-08,1.568735762887118910e-08,1.673318147079593680e-08,1.777900531272068451e-08,1.882482915464543221e-08,1.987065299657017992e-08,2.091647683849492762e-08,2.196230068041967533e-08,2.300812452234442303e-08,2.405394836426917074e-08,2.509977220619391844e-08,2.614559604811866615e-08,2.719141989004341385e-08,2.823724373196816155e-08,2.928306757389290926e-08,3.032889141581765365e-08,3.137471525774239805e-08,3.242053909966714245e-08,3.346636294159188684e-08,3.451218678351663124e-08,3.555801062544137563e-08,3.660383446736612003e-08,3.764965830929086443e-08,3.869548215121560882e-08,3.974130599314035322e-08,4.078712983506509761e-08,4.183295367698984201e-08,4.287877751891458641e-08,4.392460136083933080e-08,4.497042520276407520e-08,4.601624904468881959e-08,4.706207288661356399e-08,4.810789672853830838e-08,4.915372057046305278e-08,5.019954441238779718e-08,5.124536825431254157e-08,5.229119209623728597e-08,5.333701593816203036e-08,5.438283978008677476e-08,5.542866362201151916e-08,5.647448746393626355e-08,5.752031130586100795e-08,5.856613514778575234e-08,5.961195898971049674e-08,6.065778283163524114e-08,6.170360667355998553e-08,6.274943051548472993e-08,6.379525435740947432e-08,6.484107819933421872e-08,6.588690204125896311e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.527692412891257308e-10,9.055384825782514616e-10,1.358307723867377296e-09,1.811076965156503130e-09,2.263846206445628964e-09,2.716615447734754592e-09,3.169384689023880219e-09,3.622153930313005846e-09,4.074923171602131474e-09,4.527692412891257101e-09,4.980461654180382729e-09,5.433230895469508356e-09,5.886000136758633983e-09,6.338769378047759611e-09,6.791538619336885238e-09,7.244307860626010866e-09,7.697077101915137320e-09,8.149846343204264602e-09,8.602615584493391884e-09,9.055384825782519165e-09,9.508154067071646447e-09,9.960923308360773729e-09,1.041369254964990101e-08,1.086646179093902829e-08,1.131923103222815557e-08,1.177200027351728286e-08,1.222476951480641014e-08,1.267753875609553742e-08,1.313030799738466470e-08,1.358307723867379198e-08,1.403584647996291926e-08,1.448861572125204655e-08,1.494138496254117383e-08,1.539415420383030111e-08,1.584692344511942839e-08,1.629969268640855567e-08,1.675246192769768296e-08,1.720523116898681024e-08,1.765800041027593752e-08,1.811076965156506480e-08,1.856353889285419208e-08,1.901630813414331936e-08,1.946907737543244665e-08,1.992184661672157393e-08,2.037461585801070121e-08,2.082738509929982849e-08,2.128015434058895577e-08,2.173292358187808305e-08,2.218569282316721034e-08,2.263846206445633762e-08,2.309123130574546490e-08,2.354400054703459218e-08,2.399676978832371946e-08,2.444953902961284675e-08,2.490230827090197403e-08,2.535507751219110131e-08,2.580784675348022859e-08,2.626061599476935587e-08,2.671338523605848315e-08,2.716615447734761044e-08,2.761892371863673772e-08,2.807169295992586500e-08,2.852446220121499228e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.695126574175235077e-22,7.390253148350470153e-22,1.108537972252570523e-21,1.478050629670094031e-21,1.847563287087617538e-21,2.217075944505141046e-21,2.586588601922664554e-21,2.956101259340188061e-21,3.325613916757711569e-21,3.695126574175235077e-21,4.064639231592758584e-21,4.434151889010282092e-21,4.803664546427805600e-21,5.173177203845329107e-21,5.542689861262852615e-21,5.912202518680376123e-21,6.281715176097899630e-21,6.651227833515423138e-21,7.020740490932947398e-21,7.390253148350471658e-21,7.759765805767995918e-21,8.129278463185520178e-21,8.498791120603044438e-21,8.868303778020568698e-21,9.237816435438092958e-21,9.607329092855617218e-21,9.976841750273141478e-21,1.034635440769066574e-20,1.071586706510819000e-20,1.108537972252571426e-20,1.145489237994323852e-20,1.182440503736076278e-20,1.219391769477828704e-20,1.256343035219581130e-20,1.293294300961333556e-20,1.330245566703085982e-20,1.367196832444838408e-20,1.404148098186590683e-20,1.441099363928342959e-20,1.478050629670095234e-20,1.515001895411847510e-20,1.551953161153599785e-20,1.588904426895352061e-20,1.625855692637104336e-20,1.662806958378856612e-20,1.699758224120608888e-20,1.736709489862361163e-20,1.773660755604113439e-20,1.810612021345865714e-20,1.847563287087617990e-20,1.884514552829370265e-20,1.921465818571122541e-20,1.958417084312874816e-20,1.995368350054627092e-20,2.032319615796379367e-20,2.069270881538131643e-20,2.106222147279883918e-20,2.143173413021636194e-20,2.180124678763388470e-20,2.217075944505140745e-20,2.254027210246893021e-20,2.290978475988645296e-20,2.327929741730397572e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.390704923940416279e-10,-1.678140984788083256e-09,-2.517211477182125091e-09,-3.356281969576166925e-09,-4.195352461970208760e-09,-5.034422954364250181e-09,-5.873493446758291602e-09,-6.712563939152333023e-09,-7.551634431546375272e-09,-8.390704923940417520e-09,-9.229775416334459768e-09,-1.006884590872850202e-08,-1.090791640112254426e-08,-1.174698689351658651e-08,-1.258605738591062876e-08,-1.342512787830467101e-08,-1.426419837069871326e-08,-1.510326886309275716e-08,-1.594233935548680106e-08,-1.678140984788084497e-08,-1.762048034027488887e-08,-1.845955083266893277e-08,-1.929862132506297667e-08,-2.013769181745702058e-08,-2.097676230985106448e-08,-2.181583280224510838e-08,-2.265490329463915228e-08,-2.349397378703319619e-08,-2.433304427942724009e-08,-2.517211477182128399e-08,-2.601118526421532790e-08,-2.685025575660937180e-08,-2.768932624900341570e-08,-2.852839674139745960e-08,-2.936746723379150351e-08,-3.020653772618554741e-08,-3.104560821857959131e-08,-3.188467871097363521e-08,-3.272374920336767912e-08,-3.356281969576172302e-08,-3.440189018815576692e-08,-3.524096068054981082e-08,-3.608003117294385473e-08,-3.691910166533789863e-08,-3.775817215773194253e-08,-3.859724265012598643e-08,-3.943631314252003034e-08,-4.027538363491407424e-08,-4.111445412730811814e-08,-4.195352461970216205e-08,-4.279259511209620595e-08,-4.363166560449024985e-08,-4.447073609688429375e-08,-4.530980658927833766e-08,-4.614887708167238156e-08,-4.698794757406642546e-08,-4.782701806646046936e-08,-4.866608855885451327e-08,-4.950515905124855717e-08,-5.034422954364260107e-08,-5.118330003603664497e-08,-5.202237052843068888e-08,-5.286144102082473278e-08 +0.000000000000000000e+00,-9.026579930000166848e-10,-1.805315986000033370e-09,-2.707973979000049951e-09,-3.610631972000066326e-09,-4.513289965000082700e-09,-5.415947958000099075e-09,-6.318605951000115450e-09,-7.221263944000131824e-09,-8.123921937000148199e-09,-9.026579930000165401e-09,-9.929237923000182603e-09,-1.083189591600019980e-08,-1.173455390900021701e-08,-1.263721190200023421e-08,-1.353986989500025141e-08,-1.444252788800026861e-08,-1.534518588100028416e-08,-1.624784387400029971e-08,-1.715050186700031525e-08,-1.805315986000033080e-08,-1.895581785300034635e-08,-1.985847584600036190e-08,-2.076113383900037744e-08,-2.166379183200039299e-08,-2.256644982500040854e-08,-2.346910781800042409e-08,-2.437176581100043963e-08,-2.527442380400045518e-08,-2.617708179700047073e-08,-2.707973979000048628e-08,-2.798239778300050182e-08,-2.888505577600051737e-08,-2.978771376900053292e-08,-3.069037176200054847e-08,-3.159302975500056401e-08,-3.249568774800057956e-08,-3.339834574100059511e-08,-3.430100373400061066e-08,-3.520366172700062620e-08,-3.610631972000064175e-08,-3.700897771300065730e-08,-3.791163570600067285e-08,-3.881429369900068839e-08,-3.971695169200070394e-08,-4.061960968500071949e-08,-4.152226767800073504e-08,-4.242492567100075058e-08,-4.332758366400076613e-08,-4.423024165700078168e-08,-4.513289965000079723e-08,-4.603555764300081277e-08,-4.693821563600082832e-08,-4.784087362900084387e-08,-4.874353162200085941e-08,-4.964618961500087496e-08,-5.054884760800089051e-08,-5.145150560100090606e-08,-5.235416359400092160e-08,-5.325682158700093715e-08,-5.415947958000095270e-08,-5.506213757300096825e-08,-5.596479556600098379e-08,-5.686745355900099934e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.527692412860514106e-10,-9.055384825721028213e-10,-1.358307723858154232e-09,-1.811076965144205643e-09,-2.263846206430257053e-09,-2.716615447716308464e-09,-3.169384689002359875e-09,-3.622153930288411285e-09,-4.074923171574463109e-09,-4.527692412860514934e-09,-4.980461654146566758e-09,-5.433230895432618582e-09,-5.886000136718670406e-09,-6.338769378004722231e-09,-6.791538619290774055e-09,-7.244307860576825879e-09,-7.697077101862877703e-09,-8.149846343148929528e-09,-8.602615584434981352e-09,-9.055384825721033176e-09,-9.508154067007085000e-09,-9.960923308293136825e-09,-1.041369254957918865e-08,-1.086646179086524047e-08,-1.131923103215129230e-08,-1.177200027343734412e-08,-1.222476951472339595e-08,-1.267753875600944777e-08,-1.313030799729549959e-08,-1.358307723858155142e-08,-1.403584647986760324e-08,-1.448861572115365507e-08,-1.494138496243970855e-08,-1.539415420372576202e-08,-1.584692344501181550e-08,-1.629969268629786898e-08,-1.675246192758392246e-08,-1.720523116886997594e-08,-1.765800041015602942e-08,-1.811076965144208290e-08,-1.856353889272813637e-08,-1.901630813401418985e-08,-1.946907737530024333e-08,-1.992184661658629681e-08,-2.037461585787235029e-08,-2.082738509915840377e-08,-2.128015434044445725e-08,-2.173292358173051072e-08,-2.218569282301656420e-08,-2.263846206430261768e-08,-2.309123130558867116e-08,-2.354400054687472464e-08,-2.399676978816077812e-08,-2.444953902944683160e-08,-2.490230827073288507e-08,-2.535507751201893855e-08,-2.580784675330499203e-08,-2.626061599459104551e-08,-2.671338523587709899e-08,-2.716615447716315247e-08,-2.761892371844920595e-08,-2.807169295973525943e-08,-2.852446220102131290e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.927969290729046194e-10,-1.585593858145809239e-09,-2.378390787218714065e-09,-3.171187716291618891e-09,-3.963984645364523718e-09,-4.756781574437428130e-09,-5.549578503510332543e-09,-6.342375432583236956e-09,-7.135172361656141368e-09,-7.927969290729045781e-09,-8.720766219801950194e-09,-9.513563148874854606e-09,-1.030636007794775902e-08,-1.109915700702066343e-08,-1.189195393609356784e-08,-1.268475086516647226e-08,-1.347754779423937667e-08,-1.427034472331228108e-08,-1.506314165238518549e-08,-1.585593858145808825e-08,-1.664873551053099101e-08,-1.744153243960389377e-08,-1.823432936867679653e-08,-1.902712629774969929e-08,-1.981992322682260204e-08,-2.061272015589550480e-08,-2.140551708496840756e-08,-2.219831401404131032e-08,-2.299111094311421308e-08,-2.378390787218711584e-08,-2.457670480126001859e-08,-2.536950173033292135e-08,-2.616229865940582411e-08,-2.695509558847872687e-08,-2.774789251755162963e-08,-2.854068944662453239e-08,-2.933348637569743514e-08,-3.012628330477033790e-08,-3.091908023384324397e-08,-3.171187716291615004e-08,-3.250467409198905610e-08,-3.329747102106196217e-08,-3.409026795013486824e-08,-3.488306487920777430e-08,-3.567586180828068037e-08,-3.646865873735358644e-08,-3.726145566642649251e-08,-3.805425259549939857e-08,-3.884704952457230464e-08,-3.963984645364521071e-08,-4.043264338271811677e-08,-4.122544031179102284e-08,-4.201823724086392891e-08,-4.281103416993683497e-08,-4.360383109900974104e-08,-4.439662802808264711e-08,-4.518942495715555318e-08,-4.598222188622845924e-08,-4.677501881530136531e-08,-4.756781574437427138e-08,-4.836061267344717744e-08,-4.915340960252008351e-08,-4.994620653159298958e-08 +0.000000000000000000e+00,-7.890789905449985730e-10,-1.578157981089997146e-09,-2.367236971634995823e-09,-3.156315962179994706e-09,-3.945394952724993589e-09,-4.734473943269992472e-09,-5.523552933814991355e-09,-6.312631924359990239e-09,-7.101710914904989122e-09,-7.890789905449987178e-09,-8.679868895994985234e-09,-9.468947886539983290e-09,-1.025802687708498135e-08,-1.104710586762997940e-08,-1.183618485817497746e-08,-1.262526384871997551e-08,-1.341434283926497357e-08,-1.420342182980997163e-08,-1.499250082035496968e-08,-1.578157981089996774e-08,-1.657065880144496579e-08,-1.735973779198996385e-08,-1.814881678253496191e-08,-1.893789577307995996e-08,-1.972697476362495802e-08,-2.051605375416995607e-08,-2.130513274471495413e-08,-2.209421173525995219e-08,-2.288329072580495024e-08,-2.367236971634994830e-08,-2.446144870689494635e-08,-2.525052769743994441e-08,-2.603960668798494247e-08,-2.682868567852994052e-08,-2.761776466907493858e-08,-2.840684365961993664e-08,-2.919592265016493469e-08,-2.998500164070993275e-08,-3.077408063125493080e-08,-3.156315962179992886e-08,-3.235223861234492692e-08,-3.314131760288992497e-08,-3.393039659343492303e-08,-3.471947558397992108e-08,-3.550855457452491914e-08,-3.629763356506991720e-08,-3.708671255561491525e-08,-3.787579154615991331e-08,-3.866487053670491136e-08,-3.945394952724990942e-08,-4.024302851779490748e-08,-4.103210750833990553e-08,-4.182118649888490359e-08,-4.261026548942990164e-08,-4.339934447997489970e-08,-4.418842347051989776e-08,-4.497750246106489581e-08,-4.576658145160989387e-08,-4.655566044215489192e-08,-4.734473943269988998e-08,-4.813381842324488804e-08,-4.892289741378988609e-08,-4.971197640433488415e-08 +0.000000000000000000e+00,-1.045823841923717658e-09,-2.091647683847435316e-09,-3.137471525771152767e-09,-4.183295367694869805e-09,-5.229119209618586842e-09,-6.274943051542303880e-09,-7.320766893466020917e-09,-8.366590735389737955e-09,-9.412414577313454992e-09,-1.045823841923717203e-08,-1.150406226116088907e-08,-1.254988610308460611e-08,-1.359570994500832314e-08,-1.464153378693204018e-08,-1.568735762885575722e-08,-1.673318147077947260e-08,-1.777900531270318798e-08,-1.882482915462690337e-08,-1.987065299655061875e-08,-2.091647683847433413e-08,-2.196230068039804952e-08,-2.300812452232176490e-08,-2.405394836424548028e-08,-2.509977220616919567e-08,-2.614559604809291105e-08,-2.719141989001662643e-08,-2.823724373194034182e-08,-2.928306757386405720e-08,-3.032889141578776927e-08,-3.137471525771148135e-08,-3.242053909963519342e-08,-3.346636294155890550e-08,-3.451218678348261757e-08,-3.555801062540632965e-08,-3.660383446733004172e-08,-3.764965830925375379e-08,-3.869548215117746587e-08,-3.974130599310117794e-08,-4.078712983502489002e-08,-4.183295367694860209e-08,-4.287877751887231417e-08,-4.392460136079602624e-08,-4.497042520271973832e-08,-4.601624904464345039e-08,-4.706207288656716247e-08,-4.810789672849087454e-08,-4.915372057041458661e-08,-5.019954441233829869e-08,-5.124536825426201076e-08,-5.229119209618572284e-08,-5.333701593810943491e-08,-5.438283978003314699e-08,-5.542866362195685906e-08,-5.647448746388057114e-08,-5.752031130580428321e-08,-5.856613514772799528e-08,-5.961195898965170736e-08,-6.065778283157541943e-08,-6.170360667349913151e-08,-6.274943051542284358e-08,-6.379525435734655566e-08,-6.484107819927026773e-08,-6.588690204119397981e-08 +0.000000000000000000e+00,7.706812410982493665e-10,1.541362482196498733e-09,2.312043723294747893e-09,3.082724964392997052e-09,3.853406205491246212e-09,4.624087446589495785e-09,5.394768687687745358e-09,6.165449928785994932e-09,6.936131169884244505e-09,7.706812410982494078e-09,8.477493652080742824e-09,9.248174893178991570e-09,1.001885613427724032e-08,1.078953737537548906e-08,1.156021861647373781e-08,1.233089985757198655e-08,1.310158109867023530e-08,1.387226233976848405e-08,1.464294358086673279e-08,1.541362482196498154e-08,1.618430606306323029e-08,1.695498730416147903e-08,1.772566854525972778e-08,1.849634978635797652e-08,1.926703102745622527e-08,2.003771226855447402e-08,2.080839350965272276e-08,2.157907475075097151e-08,2.234975599184922025e-08,2.312043723294746900e-08,2.389111847404571775e-08,2.466179971514396649e-08,2.543248095624221524e-08,2.620316219734046398e-08,2.697384343843871273e-08,2.774452467953696148e-08,2.851520592063521022e-08,2.928588716173345897e-08,3.005656840283170771e-08,3.082724964392995646e-08,3.159793088502820521e-08,3.236861212612645395e-08,3.313929336722470270e-08,3.390997460832295145e-08,3.468065584942120019e-08,3.545133709051944894e-08,3.622201833161769768e-08,3.699269957271594643e-08,3.776338081381419518e-08,3.853406205491244392e-08,3.930474329601069267e-08,4.007542453710894141e-08,4.084610577820719016e-08,4.161678701930543891e-08,4.238746826040368765e-08,4.315814950150193640e-08,4.392883074260018514e-08,4.469951198369843389e-08,4.547019322479668264e-08,4.624087446589493138e-08,4.701155570699318013e-08,4.778223694809142887e-08,4.855291818918967762e-08 +0.000000000000000000e+00,7.104953638277425986e-10,1.420990727655485197e-09,2.131486091483227692e-09,2.841981455310969981e-09,3.552476819138712269e-09,4.262972182966454557e-09,4.973467546794197259e-09,5.683962910621939961e-09,6.394458274449682663e-09,7.104953638277425365e-09,7.815449002105168067e-09,8.525944365932910769e-09,9.236439729760653471e-09,9.946935093588396173e-09,1.065743045741613888e-08,1.136792582124388158e-08,1.207842118507162428e-08,1.278891654889936698e-08,1.349941191272710968e-08,1.420990727655485238e-08,1.492040264038259674e-08,1.563089800421033944e-08,1.634139336803808215e-08,1.705188873186582485e-08,1.776238409569356755e-08,1.847287945952131025e-08,1.918337482334905295e-08,1.989387018717679566e-08,2.060436555100453836e-08,2.131486091483228106e-08,2.202535627866002376e-08,2.273585164248776646e-08,2.344634700631550916e-08,2.415684237014325187e-08,2.486733773397099457e-08,2.557783309779873727e-08,2.628832846162647997e-08,2.699882382545422267e-08,2.770931918928196538e-08,2.841981455310970808e-08,2.913030991693745078e-08,2.984080528076519348e-08,3.055130064459293618e-08,3.126179600842067889e-08,3.197229137224842159e-08,3.268278673607616429e-08,3.339328209990390699e-08,3.410377746373164969e-08,3.481427282755939240e-08,3.552476819138713510e-08,3.623526355521487780e-08,3.694575891904262050e-08,3.765625428287036320e-08,3.836674964669810591e-08,3.907724501052584861e-08,3.978774037435359131e-08,4.049823573818133401e-08,4.120873110200907671e-08,4.191922646583681942e-08,4.262972182966456212e-08,4.334021719349230482e-08,4.405071255732004752e-08,4.476120792114779022e-08 +0.000000000000000000e+00,5.683631221901300415e-21,1.136726244380260083e-20,1.705089366570389974e-20,2.273452488760519865e-20,2.841815610950649756e-20,3.410178733140779948e-20,3.978541855330910140e-20,4.546904977521040332e-20,5.115268099711170524e-20,5.683631221901300716e-20,6.251994344091431509e-20,6.820357466281562303e-20,7.388720588471693097e-20,7.957083710661823891e-20,8.525446832851954685e-20,9.093809955042085478e-20,9.662173077232216272e-20,1.023053619942234707e-19,1.079889932161247786e-19,1.136726244380260865e-19,1.193562556599273945e-19,1.250398868818287024e-19,1.307235181037300103e-19,1.364071493256313183e-19,1.420907805475326262e-19,1.477744117694339342e-19,1.534580429913352421e-19,1.591416742132365500e-19,1.648253054351378580e-19,1.705089366570391659e-19,1.761925678789404739e-19,1.818761991008417818e-19,1.875598303227430897e-19,1.932434615446443977e-19,1.989270927665457056e-19,2.046107239884470135e-19,2.102943552103483215e-19,2.159779864322496294e-19,2.216616176541509374e-19,2.273452488760522212e-19,2.330288800979535051e-19,2.387125113198547889e-19,2.443961425417560728e-19,2.500797737636573567e-19,2.557634049855586405e-19,2.614470362074599244e-19,2.671306674293612083e-19,2.728142986512624921e-19,2.784979298731637760e-19,2.841815610950650599e-19,2.898651923169663437e-19,2.955488235388676276e-19,3.012324547607689114e-19,3.069160859826701953e-19,3.125997172045714792e-19,3.182833484264727630e-19,3.239669796483740469e-19,3.296506108702753308e-19,3.353342420921766146e-19,3.410178733140778985e-19,3.467015045359791824e-19,3.523851357578804662e-19,3.580687669797817501e-19 +0.000000000000000000e+00,8.143613370760710534e-10,1.628722674152142107e-09,2.443084011228213160e-09,3.257445348304284213e-09,4.071806685380354853e-09,4.886168022456425493e-09,5.700529359532496133e-09,6.514890696608566772e-09,7.329252033684637412e-09,8.143613370760708052e-09,8.957974707836778692e-09,9.772336044912849332e-09,1.058669738198891997e-08,1.140105871906499061e-08,1.221542005614106125e-08,1.302978139321713189e-08,1.384414273029320253e-08,1.465850406736927317e-08,1.547286540444534381e-08,1.628722674152141280e-08,1.710158807859748178e-08,1.791594941567355077e-08,1.873031075274961975e-08,1.954467208982568874e-08,2.035903342690175772e-08,2.117339476397782671e-08,2.198775610105389569e-08,2.280211743812996468e-08,2.361647877520603366e-08,2.443084011228210265e-08,2.524520144935817163e-08,2.605956278643424062e-08,2.687392412351030961e-08,2.768828546058637859e-08,2.850264679766244758e-08,2.931700813473851656e-08,3.013136947181458555e-08,3.094573080889065453e-08,3.176009214596672352e-08,3.257445348304279250e-08,3.338881482011886149e-08,3.420317615719493047e-08,3.501753749427099946e-08,3.583189883134706845e-08,3.664626016842313743e-08,3.746062150549920642e-08,3.827498284257527540e-08,3.908934417965134439e-08,3.990370551672741337e-08,4.071806685380348236e-08,4.153242819087955134e-08,4.234678952795562033e-08,4.316115086503168931e-08,4.397551220210775830e-08,4.478987353918382728e-08,4.560423487625989627e-08,4.641859621333596526e-08,4.723295755041203424e-08,4.804731888748810323e-08,4.886168022456417221e-08,4.967604156164024120e-08,5.049040289871631018e-08,5.130476423579237917e-08 +0.000000000000000000e+00,7.967977014446400961e-10,1.593595402889280192e-09,2.390393104333920392e-09,3.187190805778560798e-09,3.983988507223201618e-09,4.780786208667842438e-09,5.577583910112483258e-09,6.374381611557124078e-09,7.171179313001764898e-09,7.967977014446406545e-09,8.764774715891048192e-09,9.561572417335689839e-09,1.035837011878033149e-08,1.115516782022497313e-08,1.195196552166961478e-08,1.274876322311425643e-08,1.354556092455889807e-08,1.434235862600353972e-08,1.513915632744818137e-08,1.593595402889282302e-08,1.673275173033746466e-08,1.752954943178210631e-08,1.832634713322674796e-08,1.912314483467138960e-08,1.991994253611603125e-08,2.071674023756067290e-08,2.151353793900531454e-08,2.231033564044995619e-08,2.310713334189459784e-08,2.390393104333923949e-08,2.470072874478388113e-08,2.549752644622852278e-08,2.629432414767316443e-08,2.709112184911780607e-08,2.788791955056244772e-08,2.868471725200708937e-08,2.948151495345173102e-08,3.027831265489636935e-08,3.107511035634101100e-08,3.187190805778565265e-08,3.266870575923029430e-08,3.346550346067493594e-08,3.426230116211957759e-08,3.505909886356421924e-08,3.585589656500886088e-08,3.665269426645350253e-08,3.744949196789814418e-08,3.824628966934278582e-08,3.904308737078742747e-08,3.983988507223206912e-08,4.063668277367671077e-08,4.143348047512135241e-08,4.223027817656599406e-08,4.302707587801063571e-08,4.382387357945527735e-08,4.462067128089991900e-08,4.541746898234456065e-08,4.621426668378920230e-08,4.701106438523384394e-08,4.780786208667848559e-08,4.860465978812312724e-08,4.940145748956776888e-08,5.019825519101241053e-08 +0.000000000000000000e+00,8.028596926354933029e-10,1.605719385270986606e-09,2.408579077906479909e-09,3.211438770541973212e-09,4.014298463177466515e-09,4.817158155812959818e-09,5.620017848448453120e-09,6.422877541083946423e-09,7.225737233719439726e-09,8.028596926354933029e-09,8.831456618990427159e-09,9.634316311625921289e-09,1.043717600426141542e-08,1.124003569689690955e-08,1.204289538953240368e-08,1.284575508216789781e-08,1.364861477480339194e-08,1.445147446743888607e-08,1.525433416007438020e-08,1.605719385270987598e-08,1.686005354534537177e-08,1.766291323798086755e-08,1.846577293061636334e-08,1.926863262325185912e-08,2.007149231588735491e-08,2.087435200852285069e-08,2.167721170115834648e-08,2.248007139379384226e-08,2.328293108642933804e-08,2.408579077906483383e-08,2.488865047170032961e-08,2.569151016433582540e-08,2.649436985697132118e-08,2.729722954960681697e-08,2.810008924224231275e-08,2.890294893487780854e-08,2.970580862751330432e-08,3.050866832014880011e-08,3.131152801278429920e-08,3.211438770541979829e-08,3.291724739805529738e-08,3.372010709069079648e-08,3.452296678332629557e-08,3.532582647596179466e-08,3.612868616859729376e-08,3.693154586123279285e-08,3.773440555386829194e-08,3.853726524650379104e-08,3.934012493913929013e-08,4.014298463177478922e-08,4.094584432441028832e-08,4.174870401704578741e-08,4.255156370968128650e-08,4.335442340231678560e-08,4.415728309495228469e-08,4.496014278758778378e-08,4.576300248022328288e-08,4.656586217285878197e-08,4.736872186549428106e-08,4.817158155812978016e-08,4.897444125076527925e-08,4.977730094340077834e-08,5.058016063603627743e-08 +0.000000000000000000e+00,3.534372529613587816e-10,7.068745059227175632e-10,1.060311758884076293e-09,1.413749011845434920e-09,1.767186264806793546e-09,2.120623517768152173e-09,2.474060770729510799e-09,2.827498023690869426e-09,3.180935276652228052e-09,3.534372529613586679e-09,3.887809782574945305e-09,4.241247035536303518e-09,4.594684288497661731e-09,4.948121541459019944e-09,5.301558794420378157e-09,5.654996047381736370e-09,6.008433300343094583e-09,6.361870553304452796e-09,6.715307806265811008e-09,7.068745059227169221e-09,7.422182312188527434e-09,7.775619565149885647e-09,8.129056818111243033e-09,8.482494071072600419e-09,8.835931324033957804e-09,9.189368576995315190e-09,9.542805829956672576e-09,9.896243082918029962e-09,1.024968033587938735e-08,1.060311758884074473e-08,1.095655484180210212e-08,1.130999209476345950e-08,1.166342934772481689e-08,1.201686660068617428e-08,1.237030385364753166e-08,1.272374110660888905e-08,1.307717835957024643e-08,1.343061561253160382e-08,1.378405286549296120e-08,1.413749011845431859e-08,1.449092737141567598e-08,1.484436462437703336e-08,1.519780187733839075e-08,1.555123913029974813e-08,1.590467638326110552e-08,1.625811363622246290e-08,1.661155088918382029e-08,1.696498814214517768e-08,1.731842539510653506e-08,1.767186264806789245e-08,1.802529990102924983e-08,1.837873715399060722e-08,1.873217440695196461e-08,1.908561165991332199e-08,1.943904891287467938e-08,1.979248616583603676e-08,2.014592341879739415e-08,2.049936067175875153e-08,2.085279792472010892e-08,2.120623517768146631e-08,2.155967243064282369e-08,2.191310968360418108e-08,2.226654693656553846e-08 +0.000000000000000000e+00,3.338439759959016393e-21,6.676879519918032785e-21,1.001531927987704843e-20,1.335375903983606407e-20,1.669219879979507971e-20,2.003063855975409685e-20,2.336907831971311400e-20,2.670751807967213114e-20,3.004595783963114829e-20,3.338439759959016543e-20,3.672283735954918258e-20,4.006127711950819972e-20,4.339971687946721687e-20,4.673815663942623401e-20,5.007659639938525115e-20,5.341503615934426830e-20,5.675347591930328544e-20,6.009191567926229657e-20,6.343035543922130770e-20,6.676879519918031882e-20,7.010723495913932995e-20,7.344567471909834108e-20,7.678411447905735220e-20,8.012255423901636333e-20,8.346099399897537446e-20,8.679943375893438558e-20,9.013787351889339671e-20,9.347631327885240783e-20,9.681475303881141896e-20,1.001531927987704301e-19,1.034916325587294412e-19,1.068300723186884523e-19,1.101685120786474755e-19,1.135069518386064987e-19,1.168453915985655218e-19,1.201838313585245450e-19,1.235222711184835682e-19,1.268607108784425913e-19,1.301991506384016145e-19,1.335375903983606376e-19,1.368760301583196608e-19,1.402144699182786840e-19,1.435529096782377071e-19,1.468913494381967303e-19,1.502297891981557535e-19,1.535682289581147766e-19,1.569066687180737998e-19,1.602451084780328230e-19,1.635835482379918461e-19,1.669219879979508693e-19,1.702604277579098924e-19,1.735988675178689156e-19,1.769373072778279388e-19,1.802757470377869619e-19,1.836141867977459851e-19,1.869526265577050083e-19,1.902910663176640314e-19,1.936295060776230546e-19,1.969679458375820778e-19,2.003063855975411009e-19,2.036448253575001241e-19,2.069832651174591472e-19,2.103217048774181704e-19 +0.000000000000000000e+00,-7.706812410909533233e-10,-1.541362482181906647e-09,-2.312043723272859866e-09,-3.082724964363812879e-09,-3.853406205454765893e-09,-4.624087446545718906e-09,-5.394768687636671919e-09,-6.165449928727624932e-09,-6.936131169818577945e-09,-7.706812410909530131e-09,-8.477493652000483144e-09,-9.248174893091436157e-09,-1.001885613418238917e-08,-1.078953737527334218e-08,-1.156021861636429520e-08,-1.233089985745524821e-08,-1.310158109854620122e-08,-1.387226233963715424e-08,-1.464294358072810725e-08,-1.541362482181906026e-08,-1.618430606291001327e-08,-1.695498730400096629e-08,-1.772566854509191930e-08,-1.849634978618287231e-08,-1.926703102727382533e-08,-2.003771226836477834e-08,-2.080839350945573135e-08,-2.157907475054668437e-08,-2.234975599163763738e-08,-2.312043723272859039e-08,-2.389111847381954341e-08,-2.466179971491049642e-08,-2.543248095600144943e-08,-2.620316219709240244e-08,-2.697384343818335546e-08,-2.774452467927430847e-08,-2.851520592036526148e-08,-2.928588716145621450e-08,-3.005656840254716420e-08,-3.082724964363811391e-08,-3.159793088472906361e-08,-3.236861212582001331e-08,-3.313929336691096302e-08,-3.390997460800191272e-08,-3.468065584909286243e-08,-3.545133709018381213e-08,-3.622201833127476184e-08,-3.699269957236571154e-08,-3.776338081345666124e-08,-3.853406205454761095e-08,-3.930474329563856065e-08,-4.007542453672951036e-08,-4.084610577782046006e-08,-4.161678701891140977e-08,-4.238746826000235947e-08,-4.315814950109330918e-08,-4.392883074218425888e-08,-4.469951198327520858e-08,-4.547019322436615829e-08,-4.624087446545710799e-08,-4.701155570654805770e-08,-4.778223694763900740e-08,-4.855291818872995711e-08 +0.000000000000000000e+00,-7.104953638162330007e-10,-1.420990727632466001e-09,-2.131486091448699106e-09,-2.841981455264932417e-09,-3.552476819081165727e-09,-4.262972182897399038e-09,-4.973467546713632349e-09,-5.683962910529865660e-09,-6.394458274346098971e-09,-7.104953638162332282e-09,-7.815449001978564766e-09,-8.525944365794796422e-09,-9.236439729611028079e-09,-9.946935093427259736e-09,-1.065743045724349139e-08,-1.136792582105972305e-08,-1.207842118487595471e-08,-1.278891654869218636e-08,-1.349941191250841802e-08,-1.420990727632464967e-08,-1.492040264014088133e-08,-1.563089800395711299e-08,-1.634139336777334464e-08,-1.705188873158957630e-08,-1.776238409540580796e-08,-1.847287945922203961e-08,-1.918337482303827127e-08,-1.989387018685450293e-08,-2.060436555067073458e-08,-2.131486091448696624e-08,-2.202535627830319790e-08,-2.273585164211942955e-08,-2.344634700593566121e-08,-2.415684236975189287e-08,-2.486733773356812452e-08,-2.557783309738435618e-08,-2.628832846120058784e-08,-2.699882382501681949e-08,-2.770931918883305115e-08,-2.841981455264928281e-08,-2.913030991646551446e-08,-2.984080528028174943e-08,-3.055130064409798439e-08,-3.126179600791421936e-08,-3.197229137173045432e-08,-3.268278673554668929e-08,-3.339328209936292425e-08,-3.410377746317915922e-08,-3.481427282699539419e-08,-3.552476819081162915e-08,-3.623526355462786412e-08,-3.694575891844409908e-08,-3.765625428226033405e-08,-3.836674964607656901e-08,-3.907724500989280398e-08,-3.978774037370903894e-08,-4.049823573752527391e-08,-4.120873110134150887e-08,-4.191922646515774384e-08,-4.262972182897397880e-08,-4.334021719279021377e-08,-4.405071255660644873e-08,-4.476120792042268370e-08 +0.000000000000000000e+00,-3.534372529499524262e-10,-7.068745058999048525e-10,-1.060311758849857279e-09,-1.413749011799809705e-09,-1.767186264749762131e-09,-2.120623517699714557e-09,-2.474060770649667191e-09,-2.827498023599619824e-09,-3.180935276549572457e-09,-3.534372529499525090e-09,-3.887809782449477723e-09,-4.241247035399429942e-09,-4.594684288349382162e-09,-4.948121541299334381e-09,-5.301558794249286600e-09,-5.654996047199238820e-09,-6.008433300149191039e-09,-6.361870553099143259e-09,-6.715307806049095478e-09,-7.068745058999047698e-09,-7.422182311948999917e-09,-7.775619564898952137e-09,-8.129056817848904356e-09,-8.482494070798856576e-09,-8.835931323748808795e-09,-9.189368576698761014e-09,-9.542805829648713234e-09,-9.896243082598665453e-09,-1.024968033554861767e-08,-1.060311758849856989e-08,-1.095655484144852211e-08,-1.130999209439847433e-08,-1.166342934734842655e-08,-1.201686660029837877e-08,-1.237030385324833099e-08,-1.272374110619828321e-08,-1.307717835914823543e-08,-1.343061561209818765e-08,-1.378405286504813987e-08,-1.413749011799809209e-08,-1.449092737094804431e-08,-1.484436462389799653e-08,-1.519780187684794875e-08,-1.555123912979790096e-08,-1.590467638274785318e-08,-1.625811363569780540e-08,-1.661155088864775762e-08,-1.696498814159770984e-08,-1.731842539454766206e-08,-1.767186264749761428e-08,-1.802529990044756650e-08,-1.837873715339751872e-08,-1.873217440634747094e-08,-1.908561165929742316e-08,-1.943904891224737538e-08,-1.979248616519732760e-08,-2.014592341814727982e-08,-2.049936067109723204e-08,-2.085279792404718426e-08,-2.120623517699713648e-08,-2.155967242994708870e-08,-2.191310968289704091e-08,-2.226654693584699313e-08 +0.000000000000000000e+00,-8.143613370717294925e-10,-1.628722674143458985e-09,-2.443084011215188374e-09,-3.257445348286917556e-09,-4.071806685358646325e-09,-4.886168022430375094e-09,-5.700529359502103863e-09,-6.514890696573832631e-09,-7.329252033645561400e-09,-8.143613370717289342e-09,-8.957974707789017283e-09,-9.772336044860745225e-09,-1.058669738193247317e-08,-1.140105871900420111e-08,-1.221542005607592905e-08,-1.302978139314765699e-08,-1.384414273021938493e-08,-1.465850406729111287e-08,-1.547286540436284082e-08,-1.628722674143456876e-08,-1.710158807850629670e-08,-1.791594941557802464e-08,-1.873031075264975258e-08,-1.954467208972148052e-08,-2.035903342679320846e-08,-2.117339476386493641e-08,-2.198775610093666435e-08,-2.280211743800839229e-08,-2.361647877508012023e-08,-2.443084011215184817e-08,-2.524520144922357611e-08,-2.605956278629530406e-08,-2.687392412336703200e-08,-2.768828546043875994e-08,-2.850264679751048788e-08,-2.931700813458221582e-08,-3.013136947165394707e-08,-3.094573080872567501e-08,-3.176009214579740296e-08,-3.257445348286913090e-08,-3.338881481994085884e-08,-3.420317615701258678e-08,-3.501753749408431472e-08,-3.583189883115604266e-08,-3.664626016822777060e-08,-3.746062150529949855e-08,-3.827498284237122649e-08,-3.908934417944295443e-08,-3.990370551651468237e-08,-4.071806685358641031e-08,-4.153242819065813825e-08,-4.234678952772986620e-08,-4.316115086480159414e-08,-4.397551220187332208e-08,-4.478987353894505002e-08,-4.560423487601677796e-08,-4.641859621308850590e-08,-4.723295755016023384e-08,-4.804731888723196179e-08,-4.886168022430368973e-08,-4.967604156137541767e-08,-5.049040289844714561e-08,-5.130476423551887355e-08 +0.000000000000000000e+00,-7.967977014351472680e-10,-1.593595402870294536e-09,-2.390393104305441804e-09,-3.187190805740589072e-09,-3.983988507175736340e-09,-4.780786208610883608e-09,-5.577583910046030876e-09,-6.374381611481178144e-09,-7.171179312916325412e-09,-7.967977014351472680e-09,-8.764774715786619948e-09,-9.561572417221767216e-09,-1.035837011865691448e-08,-1.115516782009206175e-08,-1.195196552152720902e-08,-1.274876322296235629e-08,-1.354556092439750356e-08,-1.434235862583265082e-08,-1.513915632726779975e-08,-1.593595402870294867e-08,-1.673275173013809759e-08,-1.752954943157324651e-08,-1.832634713300839544e-08,-1.912314483444354436e-08,-1.991994253587869328e-08,-2.071674023731384220e-08,-2.151353793874899113e-08,-2.231033564018414005e-08,-2.310713334161928897e-08,-2.390393104305443789e-08,-2.470072874448958681e-08,-2.549752644592473574e-08,-2.629432414735988466e-08,-2.709112184879503358e-08,-2.788791955023018250e-08,-2.868471725166533143e-08,-2.948151495310048035e-08,-3.027831265453562596e-08,-3.107511035597077158e-08,-3.187190805740591719e-08,-3.266870575884106280e-08,-3.346550346027620842e-08,-3.426230116171135403e-08,-3.505909886314649964e-08,-3.585589656458164526e-08,-3.665269426601679087e-08,-3.744949196745193649e-08,-3.824628966888708210e-08,-3.904308737032222771e-08,-3.983988507175737333e-08,-4.063668277319251894e-08,-4.143348047462766455e-08,-4.223027817606281017e-08,-4.302707587749795578e-08,-4.382387357893310139e-08,-4.462067128036824701e-08,-4.541746898180339262e-08,-4.621426668323853824e-08,-4.701106438467368385e-08,-4.780786208610882946e-08,-4.860465978754397508e-08,-4.940145748897912069e-08,-5.019825519041426630e-08 +0.000000000000000000e+00,-8.028596926286249121e-10,-1.605719385257249824e-09,-2.408579077885874840e-09,-3.211438770514500062e-09,-4.014298463143125284e-09,-4.817158155771750507e-09,-5.620017848400375729e-09,-6.422877541029000951e-09,-7.225737233657626174e-09,-8.028596926286252223e-09,-8.831456618914879100e-09,-9.634316311543505976e-09,-1.043717600417213285e-08,-1.124003569680075973e-08,-1.204289538942938661e-08,-1.284575508205801348e-08,-1.364861477468664036e-08,-1.445147446731526724e-08,-1.525433415994389411e-08,-1.605719385257252099e-08,-1.686005354520114787e-08,-1.766291323782977474e-08,-1.846577293045840162e-08,-1.926863262308702850e-08,-2.007149231571565537e-08,-2.087435200834428225e-08,-2.167721170097290913e-08,-2.248007139360153600e-08,-2.328293108623016288e-08,-2.408579077885878976e-08,-2.488865047148741663e-08,-2.569151016411604351e-08,-2.649436985674467039e-08,-2.729722954937329726e-08,-2.810008924200192414e-08,-2.890294893463055102e-08,-2.970580862725917789e-08,-3.050866831988780146e-08,-3.131152801251642503e-08,-3.211438770514504860e-08,-3.291724739777367216e-08,-3.372010709040229573e-08,-3.452296678303091930e-08,-3.532582647565954287e-08,-3.612868616828816644e-08,-3.693154586091679000e-08,-3.773440555354541357e-08,-3.853726524617403714e-08,-3.934012493880266071e-08,-4.014298463143128428e-08,-4.094584432405990784e-08,-4.174870401668853141e-08,-4.255156370931715498e-08,-4.335442340194577855e-08,-4.415728309457440212e-08,-4.496014278720302568e-08,-4.576300247983164925e-08,-4.656586217246027282e-08,-4.736872186508889639e-08,-4.817158155771751996e-08,-4.897444125034614352e-08,-4.977730094297476709e-08,-5.058016063560339066e-08 +0.000000000000000000e+00,7.454547749271514623e-10,1.490909549854302925e-09,2.236364324781454387e-09,2.981819099708605849e-09,3.727273874635757725e-09,4.472728649562909601e-09,5.218183424490061477e-09,5.963638199417213353e-09,6.709092974344365229e-09,7.454547749271517105e-09,8.200002524198668981e-09,8.945457299125820856e-09,9.690912074052972732e-09,1.043636684898012461e-08,1.118182162390727648e-08,1.192727639883442836e-08,1.267273117376158024e-08,1.341818594868873211e-08,1.416364072361588399e-08,1.490909549854303752e-08,1.565455027347019105e-08,1.640000504839734458e-08,1.714545982332449811e-08,1.789091459825165164e-08,1.863636937317880517e-08,1.938182414810595870e-08,2.012727892303311223e-08,2.087273369796026576e-08,2.161818847288741929e-08,2.236364324781457282e-08,2.310909802274172635e-08,2.385455279766887988e-08,2.460000757259603341e-08,2.534546234752318694e-08,2.609091712245034047e-08,2.683637189737749400e-08,2.758182667230464753e-08,2.832728144723180106e-08,2.907273622215895459e-08,2.981819099708610812e-08,3.056364577201326165e-08,3.130910054694041518e-08,3.205455532186756871e-08,3.280001009679472224e-08,3.354546487172187577e-08,3.429091964664902930e-08,3.503637442157618283e-08,3.578182919650333637e-08,3.652728397143048990e-08,3.727273874635764343e-08,3.801819352128479696e-08,3.876364829621195049e-08,3.950910307113910402e-08,4.025455784606625755e-08,4.100001262099341108e-08,4.174546739592056461e-08,4.249092217084771814e-08,4.323637694577487167e-08,4.398183172070202520e-08,4.472728649562917873e-08,4.547274127055633226e-08,4.621819604548348579e-08,4.696365082041063932e-08 +0.000000000000000000e+00,6.810435357260322304e-10,1.362087071452064461e-09,2.043130607178096691e-09,2.724174142904128921e-09,3.405217678630161152e-09,4.086261214356193382e-09,4.767304750082226026e-09,5.448348285808258670e-09,6.129391821534291314e-09,6.810435357260323958e-09,7.491478892986356602e-09,8.172522428712388419e-09,8.853565964438420235e-09,9.534609500164452052e-09,1.021565303589048387e-08,1.089669657161651569e-08,1.157774010734254750e-08,1.225878364306857932e-08,1.293982717879461114e-08,1.362087071452064295e-08,1.430191425024667477e-08,1.498295778597270659e-08,1.566400132169873675e-08,1.634504485742476691e-08,1.702608839315079707e-08,1.770713192887682724e-08,1.838817546460285740e-08,1.906921900032888756e-08,1.975026253605491772e-08,2.043130607178094789e-08,2.111234960750697805e-08,2.179339314323300821e-08,2.247443667895903837e-08,2.315548021468506853e-08,2.383652375041109870e-08,2.451756728613712886e-08,2.519861082186315902e-08,2.587965435758918918e-08,2.656069789331521935e-08,2.724174142904124951e-08,2.792278496476727967e-08,2.860382850049330983e-08,2.928487203621934000e-08,2.996591557194536685e-08,3.064695910767139370e-08,3.132800264339742056e-08,3.200904617912344741e-08,3.269008971484947426e-08,3.337113325057550112e-08,3.405217678630152797e-08,3.473322032202755483e-08,3.541426385775358168e-08,3.609530739347960853e-08,3.677635092920563539e-08,3.745739446493166224e-08,3.813843800065768909e-08,3.881948153638371595e-08,3.950052507210974280e-08,4.018156860783576966e-08,4.086261214356179651e-08,4.154365567928782336e-08,4.222469921501385022e-08,4.290574275073987707e-08 +0.000000000000000000e+00,1.150504187992490634e-20,2.301008375984981269e-20,3.451512563977471903e-20,4.602016751969962538e-20,5.752520939962453774e-20,6.903025127954945010e-20,8.053529315947436246e-20,9.204033503939927483e-20,1.035453769193241872e-19,1.150504187992490995e-19,1.265554606791740119e-19,1.380605025590989243e-19,1.495655444390238366e-19,1.610705863189487490e-19,1.725756281988736614e-19,1.840806700787985737e-19,1.955857119587234861e-19,2.070907538386483984e-19,2.185957957185732867e-19,2.301008375984981510e-19,2.416058794784230152e-19,2.531109213583478794e-19,2.646159632382727436e-19,2.761210051181976078e-19,2.876260469981224720e-19,2.991310888780473362e-19,3.106361307579722005e-19,3.221411726378970647e-19,3.336462145178219289e-19,3.451512563977467931e-19,3.566562982776716573e-19,3.681613401575965215e-19,3.796663820375213857e-19,3.911714239174462499e-19,4.026764657973711142e-19,4.141815076772959784e-19,4.256865495572208426e-19,4.371915914371457068e-19,4.486966333170705710e-19,4.602016751969954352e-19,4.717067170769202994e-19,4.832117589568451637e-19,4.947168008367700279e-19,5.062218427166948921e-19,5.177268845966197563e-19,5.292319264765446205e-19,5.407369683564694847e-19,5.522420102363943489e-19,5.637470521163192132e-19,5.752520939962440774e-19,5.867571358761689416e-19,5.982621777560938058e-19,6.097672196360186700e-19,6.212722615159435342e-19,6.327773033958683984e-19,6.442823452757932627e-19,6.557873871557181269e-19,6.672924290356429911e-19,6.787974709155678553e-19,6.903025127954927195e-19,7.018075546754175837e-19,7.133125965553424479e-19,7.248176384352673122e-19 +0.000000000000000000e+00,7.556943817483267440e-10,1.511388763496653488e-09,2.267083145244980128e-09,3.022777526993306562e-09,3.778471908741632996e-09,4.534166290489959430e-09,5.289860672238285864e-09,6.045555053986612297e-09,6.801249435734938731e-09,7.556943817483264338e-09,8.312638199231589117e-09,9.068332580979913896e-09,9.824026962728238676e-09,1.057972134447656346e-08,1.133541572622488823e-08,1.209111010797321301e-08,1.284680448972153779e-08,1.360249887146986257e-08,1.435819325321818735e-08,1.511388763496651213e-08,1.586958201671483691e-08,1.662527639846316169e-08,1.738097078021148647e-08,1.813666516195981125e-08,1.889235954370813603e-08,1.964805392545646081e-08,2.040374830720478559e-08,2.115944268895311037e-08,2.191513707070143515e-08,2.267083145244975993e-08,2.342652583419808471e-08,2.418222021594640948e-08,2.493791459769473426e-08,2.569360897944305904e-08,2.644930336119138382e-08,2.720499774293970860e-08,2.796069212468803338e-08,2.871638650643635816e-08,2.947208088818468294e-08,3.022777526993300441e-08,3.098346965168132919e-08,3.173916403342965397e-08,3.249485841517797875e-08,3.325055279692630353e-08,3.400624717867462831e-08,3.476194156042295309e-08,3.551763594217127787e-08,3.627333032391960265e-08,3.702902470566792743e-08,3.778471908741625220e-08,3.854041346916457698e-08,3.929610785091290176e-08,4.005180223266122654e-08,4.080749661440955132e-08,4.156319099615787610e-08,4.231888537790620088e-08,4.307457975965452566e-08,4.383027414140285044e-08,4.458596852315117522e-08,4.534166290489950000e-08,4.609735728664782478e-08,4.685305166839614956e-08,4.760874605014447434e-08 +0.000000000000000000e+00,7.479722627671275879e-10,1.495944525534255176e-09,2.243916788301382764e-09,2.991889051068510351e-09,3.739861313835637526e-09,4.487833576602764700e-09,5.235805839369891874e-09,5.983778102137019049e-09,6.731750364904146223e-09,7.479722627671273397e-09,8.227694890438400571e-09,8.975667153205527746e-09,9.723639415972654920e-09,1.047161167873978209e-08,1.121958394150690927e-08,1.196755620427403644e-08,1.271552846704116362e-08,1.346350072980829079e-08,1.421147299257541797e-08,1.495944525534254349e-08,1.570741751810966901e-08,1.645538978087679453e-08,1.720336204364392005e-08,1.795133430641104557e-08,1.869930656917817108e-08,1.944727883194529660e-08,2.019525109471242212e-08,2.094322335747954764e-08,2.169119562024667316e-08,2.243916788301379868e-08,2.318714014578092420e-08,2.393511240854804972e-08,2.468308467131517524e-08,2.543105693408230076e-08,2.617902919684942628e-08,2.692700145961655180e-08,2.767497372238367732e-08,2.842294598515080284e-08,2.917091824791792836e-08,2.991889051068505388e-08,3.066686277345218271e-08,3.141483503621931154e-08,3.216280729898644037e-08,3.291077956175356920e-08,3.365875182452069803e-08,3.440672408728782686e-08,3.515469635005495568e-08,3.590266861282208451e-08,3.665064087558921334e-08,3.739861313835634217e-08,3.814658540112347100e-08,3.889455766389059983e-08,3.964252992665772866e-08,4.039050218942485748e-08,4.113847445219198631e-08,4.188644671495911514e-08,4.263441897772624397e-08,4.338239124049337280e-08,4.413036350326050163e-08,4.487833576602763046e-08,4.562630802879475928e-08,4.637428029156188811e-08,4.712225255432901694e-08 +0.000000000000000000e+00,6.904856181128424302e-10,1.380971236225684860e-09,2.071456854338527187e-09,2.761942472451369307e-09,3.452428090564211427e-09,4.142913708677053547e-09,4.833399326789896081e-09,5.523884944902738615e-09,6.214370563015581148e-09,6.904856181128423682e-09,7.595341799241266216e-09,8.285827417354108749e-09,8.976313035466951283e-09,9.666798653579793817e-09,1.035728427169263635e-08,1.104776988980547888e-08,1.173825550791832142e-08,1.242874112603116395e-08,1.311922674414400648e-08,1.380971236225684902e-08,1.450019798036969155e-08,1.519068359848253243e-08,1.588116921659537331e-08,1.657165483470821419e-08,1.726214045282105507e-08,1.795262607093389595e-08,1.864311168904673683e-08,1.933359730715957771e-08,2.002408292527241859e-08,2.071456854338525947e-08,2.140505416149810034e-08,2.209553977961094122e-08,2.278602539772378210e-08,2.347651101583662298e-08,2.416699663394946386e-08,2.485748225206230474e-08,2.554796787017514562e-08,2.623845348828798650e-08,2.692893910640082738e-08,2.761942472451366826e-08,2.830991034262650914e-08,2.900039596073935002e-08,2.969088157885219090e-08,3.038136719696503178e-08,3.107185281507786935e-08,3.176233843319070692e-08,3.245282405130354449e-08,3.314330966941638206e-08,3.383379528752921963e-08,3.452428090564205720e-08,3.521476652375489477e-08,3.590525214186773234e-08,3.659573775998056991e-08,3.728622337809340748e-08,3.797670899620624505e-08,3.866719461431908262e-08,3.935768023243192019e-08,4.004816585054475776e-08,4.073865146865759533e-08,4.142913708677043290e-08,4.211962270488327047e-08,4.281010832299610805e-08,4.350059394110894562e-08 +0.000000000000000000e+00,3.410942107256035527e-10,6.821884214512071055e-10,1.023282632176810710e-09,1.364376842902414418e-09,1.705471053628018126e-09,2.046565264353621833e-09,2.387659475079225541e-09,2.728753685804829249e-09,3.069847896530432957e-09,3.410942107256036665e-09,3.752036317981640373e-09,4.093130528707244494e-09,4.434224739432848615e-09,4.775318950158452737e-09,5.116413160884056858e-09,5.457507371609660980e-09,5.798601582335265101e-09,6.139695793060869223e-09,6.480790003786473344e-09,6.821884214512077465e-09,7.162978425237681587e-09,7.504072635963285708e-09,7.845166846688889830e-09,8.186261057414493951e-09,8.527355268140098073e-09,8.868449478865702194e-09,9.209543689591306315e-09,9.550637900316910437e-09,9.891732111042514558e-09,1.023282632176811868e-08,1.057392053249372280e-08,1.091501474321932692e-08,1.125610895394493104e-08,1.159720316467053517e-08,1.193829737539613929e-08,1.227939158612174341e-08,1.262048579684734753e-08,1.296158000757295165e-08,1.330267421829855577e-08,1.364376842902415989e-08,1.398486263974976402e-08,1.432595685047536814e-08,1.466705106120097226e-08,1.500814527192657473e-08,1.534923948265217885e-08,1.569033369337778297e-08,1.603142790410338709e-08,1.637252211482899121e-08,1.671361632555459533e-08,1.705471053628019945e-08,1.739580474700580358e-08,1.773689895773140770e-08,1.807799316845701182e-08,1.841908737918261594e-08,1.876018158990822006e-08,1.910127580063382418e-08,1.944237001135942830e-08,1.978346422208503243e-08,2.012455843281063655e-08,2.046565264353624067e-08,2.080674685426184479e-08,2.114784106498744891e-08,2.148893527571305303e-08 +0.000000000000000000e+00,8.429052574179264740e-21,1.685810514835852948e-20,2.528715772253779272e-20,3.371621029671705294e-20,4.214526287089631317e-20,5.057431544507557339e-20,5.900336801925483362e-20,6.743242059343409385e-20,7.586147316761335407e-20,8.429052574179261430e-20,9.271957831597187452e-20,1.011486308901511348e-19,1.095776834643304070e-19,1.180067360385096913e-19,1.264357886126889756e-19,1.348648411868682599e-19,1.432938937610475442e-19,1.517229463352268285e-19,1.601519989094061128e-19,1.685810514835853971e-19,1.770101040577646814e-19,1.854391566319439657e-19,1.938682092061232500e-19,2.022972617803025343e-19,2.107263143544818186e-19,2.191553669286611029e-19,2.275844195028403872e-19,2.360134720770196715e-19,2.444425246511989558e-19,2.528715772253782401e-19,2.613006297995575244e-19,2.697296823737368087e-19,2.781587349479160930e-19,2.865877875220953773e-19,2.950168400962746616e-19,3.034458926704539459e-19,3.118749452446332302e-19,3.203039978188125145e-19,3.287330503929917988e-19,3.371621029671710831e-19,3.455911555413503674e-19,3.540202081155296517e-19,3.624492606897089360e-19,3.708783132638882203e-19,3.793073658380675046e-19,3.877364184122467889e-19,3.961654709864260732e-19,4.045945235606053575e-19,4.130235761347846418e-19,4.214526287089639261e-19,4.298816812831432104e-19,4.383107338573224947e-19,4.467397864315017790e-19,4.551688390056810633e-19,4.635978915798603476e-19,4.720269441540396319e-19,4.804559967282189162e-19,4.888850493023982005e-19,4.973141018765774848e-19,5.057431544507567691e-19,5.141722070249360534e-19,5.226012595991153377e-19,5.310303121732946220e-19 +0.000000000000000000e+00,-7.454547749122022407e-10,-1.490909549824404481e-09,-2.236364324736606722e-09,-2.981819099648808963e-09,-3.727273874561011203e-09,-4.472728649473213444e-09,-5.218183424385415685e-09,-5.963638199297617925e-09,-6.709092974209820166e-09,-7.454547749122022407e-09,-8.200002524034225475e-09,-8.945457298946428543e-09,-9.690912073858631610e-09,-1.043636684877083468e-08,-1.118182162368303775e-08,-1.192727639859524081e-08,-1.267273117350744388e-08,-1.341818594841964695e-08,-1.416364072333185002e-08,-1.490909549824405474e-08,-1.565455027315625946e-08,-1.640000504806846418e-08,-1.714545982298066891e-08,-1.789091459789287363e-08,-1.863636937280507835e-08,-1.938182414771728307e-08,-2.012727892262948780e-08,-2.087273369754169252e-08,-2.161818847245389724e-08,-2.236364324736610196e-08,-2.310909802227830668e-08,-2.385455279719051141e-08,-2.460000757210271613e-08,-2.534546234701492085e-08,-2.609091712192712557e-08,-2.683637189683933030e-08,-2.758182667175153502e-08,-2.832728144666373974e-08,-2.907273622157594446e-08,-2.981819099648814918e-08,-3.056364577140035391e-08,-3.130910054631255863e-08,-3.205455532122476335e-08,-3.280001009613696807e-08,-3.354546487104917280e-08,-3.429091964596137752e-08,-3.503637442087358224e-08,-3.578182919578578696e-08,-3.652728397069799168e-08,-3.727273874561019641e-08,-3.801819352052240113e-08,-3.876364829543460585e-08,-3.950910307034681057e-08,-4.025455784525901530e-08,-4.100001262017122002e-08,-4.174546739508342474e-08,-4.249092216999562946e-08,-4.323637694490783418e-08,-4.398183171982003891e-08,-4.472728649473224363e-08,-4.547274126964444835e-08,-4.621819604455665307e-08,-4.696365081946885780e-08 +0.000000000000000000e+00,-6.810435357029501689e-10,-1.362087071405900338e-09,-2.043130607108850507e-09,-2.724174142811800676e-09,-3.405217678514750845e-09,-4.086261214217701014e-09,-4.767304749920651183e-09,-5.448348285623601352e-09,-6.129391821326551521e-09,-6.810435357029501689e-09,-7.491478892732451858e-09,-8.172522428435402027e-09,-8.853565964138352196e-09,-9.534609499841302365e-09,-1.021565303554425253e-08,-1.089669657124720270e-08,-1.157774010695015287e-08,-1.225878364265310304e-08,-1.293982717835605321e-08,-1.362087071405900338e-08,-1.430191424976195355e-08,-1.498295778546490372e-08,-1.566400132116785223e-08,-1.634504485687080075e-08,-1.702608839257374926e-08,-1.770713192827669778e-08,-1.838817546397964629e-08,-1.906921899968259480e-08,-1.975026253538554332e-08,-2.043130607108849183e-08,-2.111234960679144035e-08,-2.179339314249438886e-08,-2.247443667819733738e-08,-2.315548021390028589e-08,-2.383652374960323441e-08,-2.451756728530618292e-08,-2.519861082100913144e-08,-2.587965435671207995e-08,-2.656069789241502846e-08,-2.724174142811797698e-08,-2.792278496382092549e-08,-2.860382849952387401e-08,-2.928487203522682252e-08,-2.996591557092977435e-08,-3.064695910663272617e-08,-3.132800264233567799e-08,-3.200904617803862982e-08,-3.269008971374158164e-08,-3.337113324944453346e-08,-3.405217678514748529e-08,-3.473322032085043711e-08,-3.541426385655338893e-08,-3.609530739225634076e-08,-3.677635092795929258e-08,-3.745739446366224440e-08,-3.813843799936519623e-08,-3.881948153506814805e-08,-3.950052507077109987e-08,-4.018156860647405170e-08,-4.086261214217700352e-08,-4.154365567787995534e-08,-4.222469921358290717e-08,-4.290574274928585899e-08 +0.000000000000000000e+00,-3.410942107025814619e-10,-6.821884214051629239e-10,-1.023282632107744437e-09,-1.364376842810326055e-09,-1.705471053512907672e-09,-2.046565264215489289e-09,-2.387659474918070906e-09,-2.728753685620652523e-09,-3.069847896323234140e-09,-3.410942107025815757e-09,-3.752036317728397374e-09,-4.093130528430979404e-09,-4.434224739133561435e-09,-4.775318949836143466e-09,-5.116413160538725496e-09,-5.457507371241307527e-09,-5.798601581943889557e-09,-6.139695792646471588e-09,-6.480790003349053619e-09,-6.821884214051635649e-09,-7.162978424754217680e-09,-7.504072635456799710e-09,-7.845166846159381741e-09,-8.186261056861963772e-09,-8.527355267564545802e-09,-8.868449478267127833e-09,-9.209543688969709864e-09,-9.550637899672291894e-09,-9.891732110374873925e-09,-1.023282632107745596e-08,-1.057392053178003799e-08,-1.091501474248262002e-08,-1.125610895318520205e-08,-1.159720316388778408e-08,-1.193829737459036611e-08,-1.227939158529294814e-08,-1.262048579599553017e-08,-1.296158000669811220e-08,-1.330267421740069423e-08,-1.364376842810327626e-08,-1.398486263880585829e-08,-1.432595684950844032e-08,-1.466705106021102235e-08,-1.500814527091360273e-08,-1.534923948161618476e-08,-1.569033369231876679e-08,-1.603142790302134882e-08,-1.637252211372393085e-08,-1.671361632442651288e-08,-1.705471053512909491e-08,-1.739580474583167694e-08,-1.773689895653425897e-08,-1.807799316723684101e-08,-1.841908737793942304e-08,-1.876018158864200507e-08,-1.910127579934458710e-08,-1.944237001004716913e-08,-1.978346422074975116e-08,-2.012455843145233319e-08,-2.046565264215491522e-08,-2.080674685285749725e-08,-2.114784106356007928e-08,-2.148893527426266131e-08 +0.000000000000000000e+00,-7.556943817374695848e-10,-1.511388763474939170e-09,-2.267083145212408651e-09,-3.022777526949877926e-09,-3.778471908687347614e-09,-4.534166290424817302e-09,-5.289860672162286990e-09,-6.045555053899756679e-09,-6.801249435637226367e-09,-7.556943817374695228e-09,-8.312638199112164089e-09,-9.068332580849632950e-09,-9.824026962587101811e-09,-1.057972134432457067e-08,-1.133541572606203953e-08,-1.209111010779950839e-08,-1.284680448953697726e-08,-1.360249887127444612e-08,-1.435819325301191498e-08,-1.511388763474938384e-08,-1.586958201648685270e-08,-1.662527639822432156e-08,-1.738097077996179042e-08,-1.813666516169925928e-08,-1.889235954343672814e-08,-1.964805392517419700e-08,-2.040374830691166587e-08,-2.115944268864913473e-08,-2.191513707038660359e-08,-2.267083145212407245e-08,-2.342652583386154131e-08,-2.418222021559901017e-08,-2.493791459733647903e-08,-2.569360897907394789e-08,-2.644930336081141675e-08,-2.720499774254888561e-08,-2.796069212428635448e-08,-2.871638650602382334e-08,-2.947208088776129220e-08,-3.022777526949876106e-08,-3.098346965123622661e-08,-3.173916403297369216e-08,-3.249485841471115772e-08,-3.325055279644862327e-08,-3.400624717818608882e-08,-3.476194155992355437e-08,-3.551763594166101993e-08,-3.627333032339848548e-08,-3.702902470513595103e-08,-3.778471908687341658e-08,-3.854041346861088213e-08,-3.929610785034834769e-08,-4.005180223208581324e-08,-4.080749661382327879e-08,-4.156319099556074434e-08,-4.231888537729820990e-08,-4.307457975903567545e-08,-4.383027414077314100e-08,-4.458596852251060655e-08,-4.534166290424807211e-08,-4.609735728598553766e-08,-4.685305166772300321e-08,-4.760874604946046876e-08 +0.000000000000000000e+00,-7.479722627480711043e-10,-1.495944525496142209e-09,-2.243916788244213416e-09,-2.991889050992284831e-09,-3.739861313740356245e-09,-4.487833576488427660e-09,-5.235805839236499074e-09,-5.983778101984570489e-09,-6.731750364732641903e-09,-7.479722627480712491e-09,-8.227694890228783078e-09,-8.975667152976853665e-09,-9.723639415724924253e-09,-1.047161167847299484e-08,-1.121958394122106543e-08,-1.196755620396913601e-08,-1.271552846671720660e-08,-1.346350072946527719e-08,-1.421147299221334778e-08,-1.495944525496141836e-08,-1.570741751770948895e-08,-1.645538978045755954e-08,-1.720336204320563013e-08,-1.795133430595370071e-08,-1.869930656870177130e-08,-1.944727883144984189e-08,-2.019525109419791248e-08,-2.094322335694598306e-08,-2.169119561969405365e-08,-2.243916788244212424e-08,-2.318714014519019482e-08,-2.393511240793826541e-08,-2.468308467068633600e-08,-2.543105693343440659e-08,-2.617902919618247717e-08,-2.692700145893054776e-08,-2.767497372167861835e-08,-2.842294598442668894e-08,-2.917091824717475952e-08,-2.991889050992283011e-08,-3.066686277267090070e-08,-3.141483503541897128e-08,-3.216280729816704187e-08,-3.291077956091511246e-08,-3.365875182366318305e-08,-3.440672408641125363e-08,-3.515469634915932422e-08,-3.590266861190739481e-08,-3.665064087465546540e-08,-3.739861313740353598e-08,-3.814658540015160657e-08,-3.889455766289967716e-08,-3.964252992564774775e-08,-4.039050218839581833e-08,-4.113847445114388892e-08,-4.188644671389195951e-08,-4.263441897664003009e-08,-4.338239123938810068e-08,-4.413036350213617127e-08,-4.487833576488424186e-08,-4.562630802763231244e-08,-4.637428029038038303e-08,-4.712225255312845362e-08 +0.000000000000000000e+00,-6.904856180958698214e-10,-1.380971236191739643e-09,-2.071456854287609671e-09,-2.761942472383479699e-09,-3.452428090479349728e-09,-4.142913708575219342e-09,-4.833399326671088957e-09,-5.523884944766958572e-09,-6.214370562862828186e-09,-6.904856180958697801e-09,-7.595341799054568243e-09,-8.285827417150438684e-09,-8.976313035246309126e-09,-9.666798653342179568e-09,-1.035728427143805001e-08,-1.104776988953392045e-08,-1.173825550762979089e-08,-1.242874112572566134e-08,-1.311922674382153178e-08,-1.380971236191740222e-08,-1.450019798001327266e-08,-1.519068359810914310e-08,-1.588116921620501354e-08,-1.657165483430088399e-08,-1.726214045239675443e-08,-1.795262607049262487e-08,-1.864311168858849531e-08,-1.933359730668436575e-08,-2.002408292478023620e-08,-2.071456854287610664e-08,-2.140505416097197708e-08,-2.209553977906784752e-08,-2.278602539716371796e-08,-2.347651101525958840e-08,-2.416699663335545885e-08,-2.485748225145132929e-08,-2.554796786954719973e-08,-2.623845348764307017e-08,-2.692893910573894061e-08,-2.761942472383481106e-08,-2.830991034193068150e-08,-2.900039596002655194e-08,-2.969088157812242238e-08,-3.038136719621829282e-08,-3.107185281431416326e-08,-3.176233843241003371e-08,-3.245282405050590415e-08,-3.314330966860177459e-08,-3.383379528669764503e-08,-3.452428090479351547e-08,-3.521476652288938592e-08,-3.590525214098525636e-08,-3.659573775908112680e-08,-3.728622337717699724e-08,-3.797670899527286768e-08,-3.866719461336873812e-08,-3.935768023146460857e-08,-4.004816584956047901e-08,-4.073865146765634945e-08,-4.142913708575221989e-08,-4.211962270384809033e-08,-4.281010832194396078e-08,-4.350059394003983122e-08 +0.000000000000000000e+00,7.206883803080654700e-10,1.441376760616130940e-09,2.162065140924196513e-09,2.882753521232262293e-09,3.603441901540328074e-09,4.324130281848393854e-09,5.044818662156459634e-09,5.765507042464525414e-09,6.486195422772591194e-09,7.206883803080656974e-09,7.927572183388723582e-09,8.648260563696789362e-09,9.368948944004855142e-09,1.008963732431292092e-08,1.081032570462098670e-08,1.153101408492905248e-08,1.225170246523711826e-08,1.297239084554518404e-08,1.369307922585324982e-08,1.441376760616131560e-08,1.513445598646938138e-08,1.585514436677744716e-08,1.657583274708551294e-08,1.729652112739357872e-08,1.801720950770164450e-08,1.873789788800971028e-08,1.945858626831777606e-08,2.017927464862584184e-08,2.089996302893390762e-08,2.162065140924197340e-08,2.234133978955003919e-08,2.306202816985810497e-08,2.378271655016617075e-08,2.450340493047423653e-08,2.522409331078230231e-08,2.594478169109036809e-08,2.666547007139843387e-08,2.738615845170649965e-08,2.810684683201456543e-08,2.882753521232263121e-08,2.954822359263069699e-08,3.026891197293876277e-08,3.098960035324682524e-08,3.171028873355488771e-08,3.243097711386295018e-08,3.315166549417101265e-08,3.387235387447907512e-08,3.459304225478713760e-08,3.531373063509520007e-08,3.603441901540326254e-08,3.675510739571132501e-08,3.747579577601938748e-08,3.819648415632744995e-08,3.891717253663551242e-08,3.963786091694357490e-08,4.035854929725163737e-08,4.107923767755969984e-08,4.179992605786776231e-08,4.252061443817582478e-08,4.324130281848388725e-08,4.396199119879194972e-08,4.468267957910001220e-08,4.540336795940807467e-08 +0.000000000000000000e+00,6.735104208399973554e-10,1.347020841679994711e-09,2.020531262519992170e-09,2.694041683359989835e-09,3.367552104199987501e-09,4.041062525039985167e-09,4.714572945879982832e-09,5.388083366719980498e-09,6.061593787559978164e-09,6.735104208399975829e-09,7.408614629239973495e-09,8.082125050079971988e-09,8.755635470919969653e-09,9.429145891759967319e-09,1.010265631259996498e-08,1.077616673343996265e-08,1.144967715427996032e-08,1.212318757511995798e-08,1.279669799595995565e-08,1.347020841679995331e-08,1.414371883763995098e-08,1.481722925847994864e-08,1.549073967931994631e-08,1.616425010015994398e-08,1.683776052099994164e-08,1.751127094183993931e-08,1.818478136267993697e-08,1.885829178351993464e-08,1.953180220435993230e-08,2.020531262519992997e-08,2.087882304603992763e-08,2.155233346687992530e-08,2.222584388771992297e-08,2.289935430855992063e-08,2.357286472939991830e-08,2.424637515023991596e-08,2.491988557107991363e-08,2.559339599191991129e-08,2.626690641275990896e-08,2.694041683359990663e-08,2.761392725443990429e-08,2.828743767527990196e-08,2.896094809611989962e-08,2.963445851695989729e-08,3.030796893779989826e-08,3.098147935863989924e-08,3.165498977947990021e-08,3.232850020031990119e-08,3.300201062115990216e-08,3.367552104199990313e-08,3.434903146283990411e-08,3.502254188367990508e-08,3.569605230451990606e-08,3.636956272535990703e-08,3.704307314619990801e-08,3.771658356703990898e-08,3.839009398787990995e-08,3.906360440871991093e-08,3.973711482955991190e-08,4.041062525039991288e-08,4.108413567123991385e-08,4.175764609207991483e-08,4.243115651291991580e-08 +0.000000000000000000e+00,1.837042160398314549e-20,3.674084320796629098e-20,5.511126481194943947e-20,7.348168641593259399e-20,9.185210801991574851e-20,1.102225296238989030e-19,1.285929512278820455e-19,1.469633728318651880e-19,1.653337944358483305e-19,1.837042160398314729e-19,2.020746376438146154e-19,2.204450592477977579e-19,2.388154808517809004e-19,2.571859024557640429e-19,2.755563240597471853e-19,2.939267456637303278e-19,3.122971672677134703e-19,3.306675888716966128e-19,3.490380104756797552e-19,3.674084320796628977e-19,3.857788536836460402e-19,4.041492752876291827e-19,4.225196968916123252e-19,4.408901184955954195e-19,4.592605400995785620e-19,4.776309617035617045e-19,4.960013833075448469e-19,5.143718049115279894e-19,5.327422265155111319e-19,5.511126481194942744e-19,5.694830697234774168e-19,5.878534913274605593e-19,6.062239129314437018e-19,6.245943345354268443e-19,6.429647561394099868e-19,6.613351777433931292e-19,6.797055993473762717e-19,6.980760209513594142e-19,7.164464425553425567e-19,7.348168641593256992e-19,7.531872857633088416e-19,7.715577073672919841e-19,7.899281289712751266e-19,8.082985505752582691e-19,8.266689721792414116e-19,8.450393937832245540e-19,8.634098153872076965e-19,8.817802369911908390e-19,9.001506585951739815e-19,9.185210801991571239e-19,9.368915018031402664e-19,9.552619234071234089e-19,9.736323450111065514e-19,9.920027666150896939e-19,1.010373188219072836e-18,1.028743609823055979e-18,1.047114031427039121e-18,1.065484453031022264e-18,1.083854874635005406e-18,1.102225296238988549e-18,1.120595717842971691e-18,1.138966139446954834e-18,1.157336561050937976e-18 +0.000000000000000000e+00,7.320220933150547510e-10,1.464044186630109502e-09,2.196066279945164356e-09,2.928088373260219418e-09,3.660110466575274479e-09,4.392132559890329540e-09,5.124154653205385015e-09,5.856176746520440490e-09,6.588198839835495965e-09,7.320220933150551439e-09,8.052243026465606914e-09,8.784265119780662389e-09,9.516287213095717864e-09,1.024830930641077334e-08,1.098033139972582881e-08,1.171235349304088429e-08,1.244437558635593976e-08,1.317639767967099524e-08,1.390841977298605071e-08,1.464044186630110619e-08,1.537246395961616166e-08,1.610448605293121714e-08,1.683650814624627261e-08,1.756853023956132809e-08,1.830055233287638356e-08,1.903257442619143904e-08,1.976459651950649451e-08,2.049661861282154999e-08,2.122864070613660546e-08,2.196066279945166094e-08,2.269268489276671641e-08,2.342470698608177189e-08,2.415672907939682736e-08,2.488875117271188283e-08,2.562077326602693831e-08,2.635279535934199378e-08,2.708481745265704926e-08,2.781683954597210473e-08,2.854886163928716021e-08,2.928088373260221568e-08,3.001290582591726785e-08,3.074492791923231671e-08,3.147695001254736556e-08,3.220897210586241442e-08,3.294099419917746328e-08,3.367301629249251214e-08,3.440503838580756099e-08,3.513706047912260985e-08,3.586908257243765871e-08,3.660110466575270757e-08,3.733312675906775642e-08,3.806514885238280528e-08,3.879717094569785414e-08,3.952919303901290300e-08,4.026121513232795185e-08,4.099323722564300071e-08,4.172525931895804957e-08,4.245728141227309843e-08,4.318930350558814728e-08,4.392132559890319614e-08,4.465334769221824500e-08,4.538536978553329385e-08,4.611739187884834271e-08 +0.000000000000000000e+00,7.232281380829124399e-10,1.446456276165824880e-09,2.169684414248737423e-09,2.892912552331650173e-09,3.616140690414562924e-09,4.339368828497475674e-09,5.062596966580388837e-09,5.785825104663302001e-09,6.509053242746215165e-09,7.232281380829128329e-09,7.955509518912041492e-09,8.678737656994954656e-09,9.401965795077867820e-09,1.012519393316078098e-08,1.084842207124369415e-08,1.157165020932660731e-08,1.229487834740952047e-08,1.301810648549243364e-08,1.374133462357534680e-08,1.446456276165825997e-08,1.518779089974117313e-08,1.591101903782408629e-08,1.663424717590699946e-08,1.735747531398991262e-08,1.808070345207282578e-08,1.880393159015573895e-08,1.952715972823865211e-08,2.025038786632156528e-08,2.097361600440447844e-08,2.169684414248739160e-08,2.242007228057030477e-08,2.314330041865321793e-08,2.386652855673613109e-08,2.458975669481904426e-08,2.531298483290195742e-08,2.603621297098487059e-08,2.675944110906778375e-08,2.748266924715069691e-08,2.820589738523361008e-08,2.892912552331652324e-08,2.965235366139943640e-08,3.037558179948235288e-08,3.109880993756527266e-08,3.182203807564819244e-08,3.254526621373111222e-08,3.326849435181403200e-08,3.399172248989695178e-08,3.471495062797987156e-08,3.543817876606279134e-08,3.616140690414571113e-08,3.688463504222863091e-08,3.760786318031155069e-08,3.833109131839447047e-08,3.905431945647739025e-08,3.977754759456031003e-08,4.050077573264322981e-08,4.122400387072614959e-08,4.194723200880906938e-08,4.267046014689198916e-08,4.339368828497490894e-08,4.411691642305782872e-08,4.484014456114074850e-08,4.556337269922366828e-08 +0.000000000000000000e+00,6.754873683465809131e-10,1.350974736693161826e-09,2.026462105039742946e-09,2.701949473386324066e-09,3.377436841732905186e-09,4.052924210079485892e-09,4.728411578426066599e-09,5.403898946772647305e-09,6.079386315119228011e-09,6.754873683465808718e-09,7.430361051812389424e-09,8.105848420158970131e-09,8.781335788505550010e-09,9.456823156852129889e-09,1.013231052519870977e-08,1.080779789354528965e-08,1.148328526189186953e-08,1.215877263023844941e-08,1.283425999858502928e-08,1.350974736693160916e-08,1.418523473527818904e-08,1.486072210362476892e-08,1.553620947197134880e-08,1.621169684031793033e-08,1.688718420866451187e-08,1.756267157701109340e-08,1.823815894535767494e-08,1.891364631370425647e-08,1.958913368205083800e-08,2.026462105039741954e-08,2.094010841874400107e-08,2.161559578709058260e-08,2.229108315543716414e-08,2.296657052378374567e-08,2.364205789213032720e-08,2.431754526047690874e-08,2.499303262882349027e-08,2.566851999717007180e-08,2.634400736551665334e-08,2.701949473386323487e-08,2.769498210220981640e-08,2.837046947055639794e-08,2.904595683890297947e-08,2.972144420724956101e-08,3.039693157559614254e-08,3.107241894394272407e-08,3.174790631228930561e-08,3.242339368063588714e-08,3.309888104898246867e-08,3.377436841732905021e-08,3.444985578567563174e-08,3.512534315402221327e-08,3.580083052236879481e-08,3.647631789071537634e-08,3.715180525906195787e-08,3.782729262740853941e-08,3.850277999575512094e-08,3.917826736410170247e-08,3.985375473244828401e-08,4.052924210079486554e-08,4.120472946914144708e-08,4.188021683748802861e-08,4.255570420583461014e-08 +0.000000000000000000e+00,3.367184284701942226e-10,6.734368569403884453e-10,1.010155285410582616e-09,1.346873713880776684e-09,1.683592142350970751e-09,2.020310570821164819e-09,2.357028999291358680e-09,2.693747427761552540e-09,3.030465856231746401e-09,3.367184284701940262e-09,3.703902713172134123e-09,4.040621141642327983e-09,4.377339570112521844e-09,4.714057998582715705e-09,5.050776427052909566e-09,5.387494855523103426e-09,5.724213283993297287e-09,6.060931712463491148e-09,6.397650140933685009e-09,6.734368569403878869e-09,7.071086997874072730e-09,7.407805426344266591e-09,7.744523854814461279e-09,8.081242283284655967e-09,8.417960711754850655e-09,8.754679140225045343e-09,9.091397568695240031e-09,9.428115997165434719e-09,9.764834425635629406e-09,1.010155285410582409e-08,1.043827128257601878e-08,1.077498971104621347e-08,1.111170813951640816e-08,1.144842656798660285e-08,1.178514499645679753e-08,1.212186342492699222e-08,1.245858185339718691e-08,1.279530028186738160e-08,1.313201871033757629e-08,1.346873713880777097e-08,1.380545556727796566e-08,1.414217399574816035e-08,1.447889242421835504e-08,1.481561085268854973e-08,1.515232928115874441e-08,1.548904770962893910e-08,1.582576613809913379e-08,1.616248456656932848e-08,1.649920299503952317e-08,1.683592142350971785e-08,1.717263985197991254e-08,1.750935828045010723e-08,1.784607670892030192e-08,1.818279513739049660e-08,1.851951356586069129e-08,1.885623199433088598e-08,1.919295042280108067e-08,1.952966885127127536e-08,1.986638727974147004e-08,2.020310570821166473e-08,2.053982413668185942e-08,2.087654256515205411e-08,2.121326099362224880e-08 +0.000000000000000000e+00,1.482516715395894365e-20,2.965033430791788730e-20,4.447550146187682795e-20,5.930066861583576257e-20,7.412583576979469719e-20,8.895100292375363182e-20,1.037761700777125664e-19,1.186013372316715011e-19,1.334265043856304237e-19,1.482516715395893462e-19,1.630768386935482688e-19,1.779020058475071914e-19,1.927271730014661140e-19,2.075523401554250366e-19,2.223775073093839592e-19,2.372026744633428577e-19,2.520278416173017562e-19,2.668530087712606547e-19,2.816781759252195532e-19,2.965033430791784517e-19,3.113285102331373502e-19,3.261536773870962488e-19,3.409788445410551473e-19,3.558040116950140458e-19,3.706291788489729443e-19,3.854543460029318428e-19,4.002795131568907413e-19,4.151046803108496398e-19,4.299298474648085383e-19,4.447550146187674369e-19,4.595801817727263354e-19,4.744053489266852339e-19,4.892305160806441324e-19,5.040556832346030309e-19,5.188808503885619294e-19,5.337060175425208279e-19,5.485311846964797265e-19,5.633563518504386250e-19,5.781815190043975235e-19,5.930066861583564220e-19,6.078318533123153205e-19,6.226570204662742190e-19,6.374821876202331175e-19,6.523073547741920160e-19,6.671325219281509146e-19,6.819576890821098131e-19,6.967828562360687116e-19,7.116080233900276101e-19,7.264331905439865086e-19,7.412583576979454071e-19,7.560835248519043056e-19,7.709086920058632041e-19,7.857338591598221027e-19,8.005590263137810012e-19,8.153841934677398997e-19,8.302093606216987982e-19,8.450345277756576967e-19,8.598596949296165952e-19,8.746848620835754937e-19,8.895100292375342959e-19,9.043351963914930982e-19,9.191603635454519004e-19,9.339855306994107026e-19 +0.000000000000000000e+00,-7.206883802837657987e-10,-1.441376760567531597e-09,-2.162065140851297500e-09,-2.882753521135063608e-09,-3.603441901418829717e-09,-4.324130281702595826e-09,-5.044818661986362349e-09,-5.765507042270128871e-09,-6.486195422553895394e-09,-7.206883802837661916e-09,-7.927572183121428439e-09,-8.648260563405194961e-09,-9.368948943688961484e-09,-1.008963732397272801e-08,-1.081032570425649453e-08,-1.153101408454026105e-08,-1.225170246482402757e-08,-1.297239084510779410e-08,-1.369307922539156062e-08,-1.441376760567532714e-08,-1.513445598595909366e-08,-1.585514436624286019e-08,-1.657583274652662671e-08,-1.729652112681039323e-08,-1.801720950709415975e-08,-1.873789788737792628e-08,-1.945858626766169280e-08,-2.017927464794545932e-08,-2.089996302822922584e-08,-2.162065140851299237e-08,-2.234133978879675889e-08,-2.306202816908052541e-08,-2.378271654936429193e-08,-2.450340492964805846e-08,-2.522409330993182498e-08,-2.594478169021559150e-08,-2.666547007049935802e-08,-2.738615845078312455e-08,-2.810684683106689107e-08,-2.882753521135065759e-08,-2.954822359163442411e-08,-3.026891197191818733e-08,-3.098960035220195054e-08,-3.171028873248571375e-08,-3.243097711276947697e-08,-3.315166549305324018e-08,-3.387235387333700340e-08,-3.459304225362076661e-08,-3.531373063390452982e-08,-3.603441901418829304e-08,-3.675510739447205625e-08,-3.747579577475581946e-08,-3.819648415503958268e-08,-3.891717253532334589e-08,-3.963786091560710911e-08,-4.035854929589087232e-08,-4.107923767617463553e-08,-4.179992605645839875e-08,-4.252061443674216196e-08,-4.324130281702592517e-08,-4.396199119730968839e-08,-4.468267957759345160e-08,-4.540336795787721482e-08 +0.000000000000000000e+00,-6.735104208032087045e-10,-1.347020841606417409e-09,-2.020531262409626010e-09,-2.694041683212834404e-09,-3.367552104016042799e-09,-4.041062524819251193e-09,-4.714572945622459174e-09,-5.388083366425667154e-09,-6.061593787228875135e-09,-6.735104208032083116e-09,-7.408614628835291097e-09,-8.082125049638499077e-09,-8.755635470441707058e-09,-9.429145891244915039e-09,-1.010265631204812302e-08,-1.077616673285133100e-08,-1.144967715365453898e-08,-1.212318757445774696e-08,-1.279669799526095494e-08,-1.347020841606416292e-08,-1.414371883686737090e-08,-1.481722925767057888e-08,-1.549073967847378687e-08,-1.616425009927699485e-08,-1.683776052008020283e-08,-1.751127094088341081e-08,-1.818478136168661879e-08,-1.885829178248982677e-08,-1.953180220329303475e-08,-2.020531262409624273e-08,-2.087882304489945071e-08,-2.155233346570265869e-08,-2.222584388650586667e-08,-2.289935430730907465e-08,-2.357286472811228263e-08,-2.424637514891549061e-08,-2.491988556971869859e-08,-2.559339599052190658e-08,-2.626690641132511456e-08,-2.694041683212832254e-08,-2.761392725293153052e-08,-2.828743767373473850e-08,-2.896094809453794648e-08,-2.963445851534115446e-08,-3.030796893614435913e-08,-3.098147935694756711e-08,-3.165498977775077509e-08,-3.232850019855398307e-08,-3.300201061935719105e-08,-3.367552104016039904e-08,-3.434903146096360702e-08,-3.502254188176681500e-08,-3.569605230257002298e-08,-3.636956272337323096e-08,-3.704307314417643894e-08,-3.771658356497964692e-08,-3.839009398578285490e-08,-3.906360440658606288e-08,-3.973711482738927086e-08,-4.041062524819247884e-08,-4.108413566899568682e-08,-4.175764608979889480e-08,-4.243115651060210278e-08 +0.000000000000000000e+00,-3.367184284334365393e-10,-6.734368568668730785e-10,-1.010155285300309721e-09,-1.346873713733746364e-09,-1.683592142167183007e-09,-2.020310570600619442e-09,-2.357028999034055878e-09,-2.693747427467492314e-09,-3.030465855900928750e-09,-3.367184284334365186e-09,-3.703902712767801622e-09,-4.040621141201238058e-09,-4.377339569634674494e-09,-4.714057998068110929e-09,-5.050776426501547365e-09,-5.387494854934983801e-09,-5.724213283368420237e-09,-6.060931711801856673e-09,-6.397650140235293109e-09,-6.734368568668729545e-09,-7.071086997102165981e-09,-7.407805425535602416e-09,-7.744523853969039679e-09,-8.081242282402477770e-09,-8.417960710835915860e-09,-8.754679139269353950e-09,-9.091397567702792040e-09,-9.428115996136230131e-09,-9.764834424569668221e-09,-1.010155285300310631e-08,-1.043827128143654440e-08,-1.077498970986998249e-08,-1.111170813830342058e-08,-1.144842656673685867e-08,-1.178514499517029676e-08,-1.212186342360373485e-08,-1.245858185203717294e-08,-1.279530028047061103e-08,-1.313201870890404912e-08,-1.346873713733748721e-08,-1.380545556577092530e-08,-1.414217399420436339e-08,-1.447889242263780148e-08,-1.481561085107123957e-08,-1.515232927950467766e-08,-1.548904770793811575e-08,-1.582576613637155385e-08,-1.616248456480499194e-08,-1.649920299323843003e-08,-1.683592142167186812e-08,-1.717263985010530621e-08,-1.750935827853874430e-08,-1.784607670697218239e-08,-1.818279513540562048e-08,-1.851951356383905857e-08,-1.885623199227249666e-08,-1.919295042070593475e-08,-1.952966884913937284e-08,-1.986638727757281093e-08,-2.020310570600624902e-08,-2.053982413443968711e-08,-2.087654256287312520e-08,-2.121326099130656329e-08 +0.000000000000000000e+00,-7.320220932956179712e-10,-1.464044186591235942e-09,-2.196066279886853914e-09,-2.928088373182471885e-09,-3.660110466478089856e-09,-4.392132559773707827e-09,-5.124154653069325385e-09,-5.856176746364942942e-09,-6.588198839660560500e-09,-7.320220932956178058e-09,-8.052243026251795615e-09,-8.784265119547414000e-09,-9.516287212843032385e-09,-1.024830930613865077e-08,-1.098033139943426915e-08,-1.171235349272988754e-08,-1.244437558602550592e-08,-1.317639767932112431e-08,-1.390841977261674269e-08,-1.464044186591236108e-08,-1.537246395920798112e-08,-1.610448605250360116e-08,-1.683650814579922120e-08,-1.756853023909484123e-08,-1.830055233239046127e-08,-1.903257442568608131e-08,-1.976459651898170135e-08,-2.049661861227732139e-08,-2.122864070557294143e-08,-2.196066279886856147e-08,-2.269268489216418151e-08,-2.342470698545980155e-08,-2.415672907875542159e-08,-2.488875117205104163e-08,-2.562077326534666167e-08,-2.635279535864228170e-08,-2.708481745193790174e-08,-2.781683954523352178e-08,-2.854886163852914182e-08,-2.928088373182476186e-08,-3.001290582512038190e-08,-3.074492791841600194e-08,-3.147695001171162198e-08,-3.220897210500724202e-08,-3.294099419830286206e-08,-3.367301629159848210e-08,-3.440503838489410213e-08,-3.513706047818972217e-08,-3.586908257148534221e-08,-3.660110466478096225e-08,-3.733312675807658229e-08,-3.806514885137220233e-08,-3.879717094466782237e-08,-3.952919303796344241e-08,-4.026121513125906245e-08,-4.099323722455468249e-08,-4.172525931785030253e-08,-4.245728141114592257e-08,-4.318930350444154260e-08,-4.392132559773716264e-08,-4.465334769103278268e-08,-4.538536978432840272e-08,-4.611739187762402276e-08 +0.000000000000000000e+00,-7.232281380522379979e-10,-1.446456276104475996e-09,-2.169684414156713994e-09,-2.892912552208951992e-09,-3.616140690261189989e-09,-4.339368828313427987e-09,-5.062596966365665985e-09,-5.785825104417903983e-09,-6.509053242470141981e-09,-7.232281380522379979e-09,-7.955509518574617977e-09,-8.678737656626855975e-09,-9.401965794679093973e-09,-1.012519393273133197e-08,-1.084842207078356997e-08,-1.157165020883580797e-08,-1.229487834688804596e-08,-1.301810648494028396e-08,-1.374133462299252196e-08,-1.446456276104475996e-08,-1.518779089909699796e-08,-1.591101903714923595e-08,-1.663424717520147395e-08,-1.735747531325371195e-08,-1.808070345130594995e-08,-1.880393158935818795e-08,-1.952715972741042594e-08,-2.025038786546266394e-08,-2.097361600351490194e-08,-2.169684414156713994e-08,-2.242007227961937793e-08,-2.314330041767161593e-08,-2.386652855572385393e-08,-2.458975669377609193e-08,-2.531298483182832993e-08,-2.603621296988056792e-08,-2.675944110793280592e-08,-2.748266924598504392e-08,-2.820589738403728192e-08,-2.892912552208951992e-08,-2.965235366014175791e-08,-3.037558179819399591e-08,-3.109880993624623060e-08,-3.182203807429846529e-08,-3.254526621235069998e-08,-3.326849435040293467e-08,-3.399172248845516936e-08,-3.471495062650740405e-08,-3.543817876455963874e-08,-3.616140690261187342e-08,-3.688463504066410811e-08,-3.760786317871634280e-08,-3.833109131676857749e-08,-3.905431945482081218e-08,-3.977754759287304687e-08,-4.050077573092528156e-08,-4.122400386897751625e-08,-4.194723200702975094e-08,-4.267046014508198563e-08,-4.339368828313422032e-08,-4.411691642118645501e-08,-4.484014455923868969e-08,-4.556337269729092438e-08 +0.000000000000000000e+00,-6.754873683168611409e-10,-1.350974736633722282e-09,-2.026462104950583630e-09,-2.701949473267444977e-09,-3.377436841584306325e-09,-4.052924209901167259e-09,-4.728411578218028193e-09,-5.403898946534889127e-09,-6.079386314851750061e-09,-6.754873683168610996e-09,-7.430361051485471930e-09,-8.105848419802332864e-09,-8.781335788119193798e-09,-9.456823156436054732e-09,-1.013231052475291567e-08,-1.080779789306977660e-08,-1.148328526138663753e-08,-1.215877262970349847e-08,-1.283425999802035940e-08,-1.350974736633722034e-08,-1.418523473465408127e-08,-1.486072210297094220e-08,-1.553620947128780314e-08,-1.621169683960466242e-08,-1.688718420792152170e-08,-1.756267157623838098e-08,-1.823815894455524026e-08,-1.891364631287209954e-08,-1.958913368118895882e-08,-2.026462104950581810e-08,-2.094010841782267738e-08,-2.161559578613953666e-08,-2.229108315445639594e-08,-2.296657052277325522e-08,-2.364205789109011450e-08,-2.431754525940697378e-08,-2.499303262772383306e-08,-2.566851999604069234e-08,-2.634400736435755162e-08,-2.701949473267441089e-08,-2.769498210099127017e-08,-2.837046946930812945e-08,-2.904595683762498873e-08,-2.972144420594184801e-08,-3.039693157425871060e-08,-3.107241894257557319e-08,-3.174790631089243578e-08,-3.242339367920929837e-08,-3.309888104752616096e-08,-3.377436841584302354e-08,-3.444985578415988613e-08,-3.512534315247674872e-08,-3.580083052079361131e-08,-3.647631788911047390e-08,-3.715180525742733649e-08,-3.782729262574419908e-08,-3.850277999406106166e-08,-3.917826736237792425e-08,-3.985375473069478684e-08,-4.052924209901164943e-08,-4.120472946732851202e-08,-4.188021683564537461e-08,-4.255570420396223720e-08 +0.000000000000000000e+00,7.063251849604780709e-10,1.412650369920956142e-09,2.118975554881434213e-09,2.825300739841912284e-09,3.531625924802390354e-09,4.237951109762868425e-09,4.944276294723346910e-09,5.650601479683825394e-09,6.356926664644303879e-09,7.063251849604782363e-09,7.769577034565260848e-09,8.475902219525738505e-09,9.182227404486216162e-09,9.888552589446693820e-09,1.059487777440717148e-08,1.130120295936764913e-08,1.200752814432812679e-08,1.271385332928860445e-08,1.342017851424908211e-08,1.412650369920955976e-08,1.483282888417003742e-08,1.553915406913051508e-08,1.624547925409099274e-08,1.695180443905147039e-08,1.765812962401194805e-08,1.836445480897242571e-08,1.907077999393290336e-08,1.977710517889338102e-08,2.048343036385385868e-08,2.118975554881433634e-08,2.189608073377481399e-08,2.260240591873529165e-08,2.330873110369576931e-08,2.401505628865624697e-08,2.472138147361672462e-08,2.542770665857720228e-08,2.613403184353767994e-08,2.684035702849815760e-08,2.754668221345863525e-08,2.825300739841911291e-08,2.895933258337959057e-08,2.966565776834006822e-08,3.037198295330054588e-08,3.107830813826102354e-08,3.178463332322150120e-08,3.249095850818197885e-08,3.319728369314245651e-08,3.390360887810293417e-08,3.460993406306341183e-08,3.531625924802388948e-08,3.602258443298436714e-08,3.672890961794484480e-08,3.743523480290532245e-08,3.814155998786580011e-08,3.884788517282627777e-08,3.955421035778675543e-08,4.026053554274723308e-08,4.096686072770771074e-08,4.167318591266818840e-08,4.237951109762866606e-08,4.308583628258914371e-08,4.379216146754962137e-08,4.449848665251009903e-08 +0.000000000000000000e+00,6.855279721318753911e-10,1.371055944263750782e-09,2.056583916395626277e-09,2.742111888527502392e-09,3.427639860659377680e-09,4.113167832791253381e-09,4.798695804923128669e-09,5.484223777055004784e-09,6.169751749186879244e-09,6.855279721318753705e-09,7.540807693450629820e-09,8.226335665582505107e-09,8.911863637714380395e-09,9.597391609846255683e-09,1.028291958197813097e-08,1.096844755411000626e-08,1.165397552624187989e-08,1.233950349837375683e-08,1.302503147050563212e-08,1.371055944263750741e-08,1.439608741476938435e-08,1.508161538690125964e-08,1.576714335903313658e-08,1.645267133116501352e-08,1.713819930329689047e-08,1.782372727542876741e-08,1.850925524756064435e-08,1.919478321969252129e-08,1.988031119182439823e-08,2.056583916395627518e-08,2.125136713608815212e-08,2.193689510822002575e-08,2.262242308035190600e-08,2.330795105248378294e-08,2.399347902461565989e-08,2.467900699674754014e-08,2.536453496887941377e-08,2.605006294101129071e-08,2.673559091314316766e-08,2.742111888527504129e-08,2.810664685740692154e-08,2.879217482953879848e-08,2.947770280167067542e-08,3.016323077380255237e-08,3.084875874593442600e-08,3.153428671806629963e-08,3.221981469019817327e-08,3.290534266233004690e-08,3.359087063446192053e-08,3.427639860659379417e-08,3.496192657872566780e-08,3.564745455085754143e-08,3.633298252298941507e-08,3.701851049512128870e-08,3.770403846725316233e-08,3.838956643938503597e-08,3.907509441151690960e-08,3.976062238364878323e-08,4.044615035578065687e-08,4.113167832791253050e-08,4.181720630004441075e-08,4.250273427217627777e-08,4.318826224430815140e-08 +0.000000000000000000e+00,2.578608691991052376e-20,5.157217383982104752e-20,7.735826075973156827e-20,1.031443476796420950e-19,1.289304345995525977e-19,1.547165215194631125e-19,1.805026084393736031e-19,2.062886953592841419e-19,2.320747822791946567e-19,2.578608691991051955e-19,2.836469561190157343e-19,3.094330430389262731e-19,3.352191299588368600e-19,3.610052168787473507e-19,3.867913037986578413e-19,4.125773907185684283e-19,4.383634776384789671e-19,4.641495645583895059e-19,4.899356514783000447e-19,5.157217383982105835e-19,5.415078253181211223e-19,5.672939122380316611e-19,5.930799991579421999e-19,6.188660860778526425e-19,6.446521729977632776e-19,6.704382599176738164e-19,6.962243468375843552e-19,7.220104337574949903e-19,7.477965206774054328e-19,7.735826075973159716e-19,7.993686945172265104e-19,8.251547814371369529e-19,8.509408683570475880e-19,8.767269552769581268e-19,9.025130421968687619e-19,9.282991291167793970e-19,9.540852160366900321e-19,9.798713029566006672e-19,1.005657389876511302e-18,1.031443476796421937e-18,1.057229563716332573e-18,1.083015650636243208e-18,1.108801737556153843e-18,1.134587824476064478e-18,1.160373911395975113e-18,1.186159998315885941e-18,1.211946085235796383e-18,1.237732172155706826e-18,1.263518259075617653e-18,1.289304345995528481e-18,1.315090432915438924e-18,1.340876519835349366e-18,1.366662606755260194e-18,1.392448693675171021e-18,1.418234780595081464e-18,1.444020867514991906e-18,1.469806954434902734e-18,1.495593041354813562e-18,1.521379128274724004e-18,1.547165215194634447e-18,1.572951302114545275e-18,1.598737389034456102e-18,1.624523475954366545e-18 +0.000000000000000000e+00,7.130822928913578723e-10,1.426164585782715745e-09,2.139246878674073514e-09,2.852329171565431076e-09,3.565411464456788638e-09,4.278493757348146200e-09,4.991576050239504176e-09,5.704658343130862151e-09,6.417740636022220127e-09,7.130822928913578103e-09,7.843905221804936079e-09,8.556987514696294054e-09,9.270069807587652030e-09,9.983152100479010006e-09,1.069623439337036798e-08,1.140931668626172596e-08,1.212239897915308393e-08,1.283548127204444191e-08,1.354856356493579988e-08,1.426164585782715786e-08,1.497472815071851418e-08,1.568781044360986885e-08,1.640089273650122352e-08,1.711397502939257818e-08,1.782705732228393285e-08,1.854013961517528752e-08,1.925322190806664218e-08,1.996630420095799685e-08,2.067938649384935152e-08,2.139246878674070618e-08,2.210555107963206085e-08,2.281863337252341552e-08,2.353171566541477019e-08,2.424479795830612485e-08,2.495788025119747952e-08,2.567096254408883419e-08,2.638404483698018885e-08,2.709712712987154352e-08,2.781020942276289819e-08,2.852329171565425285e-08,2.923637400854560752e-08,2.994945630143696219e-08,3.066253859432831686e-08,3.137562088721967152e-08,3.208870318011102619e-08,3.280178547300238086e-08,3.351486776589373552e-08,3.422795005878509019e-08,3.494103235167644486e-08,3.565411464456779952e-08,3.636719693745915419e-08,3.708027923035050886e-08,3.779336152324186353e-08,3.850644381613321819e-08,3.921952610902457286e-08,3.993260840191592753e-08,4.064569069480728219e-08,4.135877298769863686e-08,4.207185528058999153e-08,4.278493757348134619e-08,4.349801986637270086e-08,4.421110215926405553e-08,4.492418445215541020e-08 +0.000000000000000000e+00,7.072969012511637940e-10,1.414593802502327588e-09,2.121890703753491485e-09,2.829187605004655589e-09,3.536484506255819694e-09,4.243781407506983798e-09,4.951078308758147902e-09,5.658375210009312006e-09,6.365672111260476110e-09,7.072969012511640214e-09,7.780265913762804318e-09,8.487562815013969250e-09,9.194859716265134181e-09,9.902156617516299112e-09,1.060945351876746404e-08,1.131675042001862898e-08,1.202404732126979391e-08,1.273134422252095884e-08,1.343864112377212377e-08,1.414593802502328870e-08,1.485323492627445363e-08,1.556053182752561856e-08,1.626782872877678349e-08,1.697512563002794843e-08,1.768242253127911336e-08,1.838971943253027829e-08,1.909701633378144322e-08,1.980431323503260815e-08,2.051161013628377308e-08,2.121890703753493801e-08,2.192620393878610295e-08,2.263350084003726788e-08,2.334079774128843281e-08,2.404809464253959774e-08,2.475539154379076267e-08,2.546268844504192760e-08,2.616998534629309253e-08,2.687728224754425746e-08,2.758457914879542240e-08,2.829187605004658733e-08,2.899917295129775226e-08,2.970646985254891719e-08,3.041376675380007881e-08,3.112106365505124374e-08,3.182836055630240867e-08,3.253565745755357361e-08,3.324295435880473854e-08,3.395025126005590347e-08,3.465754816130706840e-08,3.536484506255823333e-08,3.607214196380939826e-08,3.677943886506056319e-08,3.748673576631172813e-08,3.819403266756289306e-08,3.890132956881405799e-08,3.960862647006522292e-08,4.031592337131638785e-08,4.102322027256755278e-08,4.173051717381871771e-08,4.243781407506988264e-08,4.314511097632104758e-08,4.385240787757221251e-08,4.455970477882337744e-08 +0.000000000000000000e+00,6.767930355204194130e-10,1.353586071040838826e-09,2.030379106561258136e-09,2.707172142081677239e-09,3.383965177602096341e-09,4.060758213122515444e-09,4.737551248642934961e-09,5.414344284163354477e-09,6.091137319683773994e-09,6.767930355204193510e-09,7.444723390724613026e-09,8.121516426245032543e-09,8.798309461765452059e-09,9.475102497285871576e-09,1.015189553280629109e-08,1.082868856832671061e-08,1.150548160384713013e-08,1.218227463936754964e-08,1.285906767488796916e-08,1.353586071040838867e-08,1.421265374592880819e-08,1.488944678144922771e-08,1.556623981696964557e-08,1.624303285249006178e-08,1.691982588801047798e-08,1.759661892353089419e-08,1.827341195905131040e-08,1.895020499457172661e-08,1.962699803009214282e-08,2.030379106561255902e-08,2.098058410113297523e-08,2.165737713665339144e-08,2.233417017217380765e-08,2.301096320769422385e-08,2.368775624321464006e-08,2.436454927873505627e-08,2.504134231425547248e-08,2.571813534977588869e-08,2.639492838529630489e-08,2.707172142081672110e-08,2.774851445633713731e-08,2.842530749185755352e-08,2.910210052737796972e-08,2.977889356289838593e-08,3.045568659841880214e-08,3.113247963393921835e-08,3.180927266945963455e-08,3.248606570498005076e-08,3.316285874050046697e-08,3.383965177602088318e-08,3.451644481154129939e-08,3.519323784706171559e-08,3.587003088258213180e-08,3.654682391810254801e-08,3.722361695362296422e-08,3.790040998914338042e-08,3.857720302466379663e-08,3.925399606018421284e-08,3.993078909570462905e-08,4.060758213122504525e-08,4.128437516674546146e-08,4.196116820226587767e-08,4.263796123778629388e-08 +0.000000000000000000e+00,3.428187971935911877e-10,6.856375943871823753e-10,1.028456391580773615e-09,1.371275188774365164e-09,1.714093985967956300e-09,2.056912783161547643e-09,2.399731580355139193e-09,2.742550377548730742e-09,3.085369174742322292e-09,3.428187971935913841e-09,3.771006769129505391e-09,4.113825566323096940e-09,4.456644363516688490e-09,4.799463160710280040e-09,5.142281957903872416e-09,5.485100755097462311e-09,5.827919552291055515e-09,6.170738349484645411e-09,6.513557146678238615e-09,6.856375943871828510e-09,7.199194741065421714e-09,7.542013538259012436e-09,7.884832335452603986e-09,8.227651132646195535e-09,8.570469929839787085e-09,8.913288727033378634e-09,9.256107524226970184e-09,9.598926321420561733e-09,9.941745118614153283e-09,1.028456391580774483e-08,1.062738271300133638e-08,1.097020151019492793e-08,1.131302030738851948e-08,1.165583910458211103e-08,1.199865790177570258e-08,1.234147669896929413e-08,1.268429549616288568e-08,1.302711429335647723e-08,1.336993309055006878e-08,1.371275188774366033e-08,1.405557068493725188e-08,1.439838948213084343e-08,1.474120827932443498e-08,1.508402707651802818e-08,1.542684587371162304e-08,1.576966467090521790e-08,1.611248346809881276e-08,1.645530226529240761e-08,1.679812106248600247e-08,1.714093985967959733e-08,1.748375865687319219e-08,1.782657745406678705e-08,1.816939625126038191e-08,1.851221504845397676e-08,1.885503384564757162e-08,1.919785264284116648e-08,1.954067144003476134e-08,1.988349023722835620e-08,2.022630903442194775e-08,2.056912783161554591e-08,2.091194662880914408e-08,2.125476542600273563e-08,2.159758422319632718e-08 +0.000000000000000000e+00,2.205060127959751634e-20,4.410120255919503268e-20,6.615180383879254600e-20,8.820240511839005331e-20,1.102530063979875486e-19,1.323036076775850439e-19,1.543542089571825391e-19,1.764048102367800344e-19,1.984554115163775297e-19,2.205060127959750009e-19,2.425566140755724721e-19,2.646072153551699433e-19,2.866578166347674145e-19,3.087084179143648857e-19,3.307590191939623569e-19,3.528096204735598281e-19,3.748602217531572993e-19,3.969108230327547705e-19,4.189614243123522417e-19,4.410120255919497129e-19,4.630626268715471841e-19,4.851132281511446553e-19,5.071638294307421265e-19,5.292144307103395977e-19,5.512650319899370689e-19,5.733156332695345401e-19,5.953662345491320113e-19,6.174168358287294825e-19,6.394674371083269537e-19,6.615180383879244249e-19,6.835686396675218961e-19,7.056192409471193672e-19,7.276698422267168384e-19,7.497204435063143096e-19,7.717710447859117808e-19,7.938216460655092520e-19,8.158722473451067232e-19,8.379228486247041944e-19,8.599734499043016656e-19,8.820240511838992331e-19,9.040746524634967043e-19,9.261252537430941755e-19,9.481758550226916467e-19,9.702264563022891179e-19,9.922770575818865891e-19,1.014327658861484060e-18,1.036378260141081532e-18,1.058428861420679003e-18,1.080479462700276474e-18,1.102530063979873945e-18,1.124580665259471416e-18,1.146631266539068888e-18,1.168681867818666359e-18,1.190732469098263830e-18,1.212783070377861301e-18,1.234833671657458772e-18,1.256884272937056244e-18,1.278934874216653715e-18,1.300985475496251186e-18,1.323036076775848657e-18,1.345086678055446128e-18,1.367137279335043600e-18,1.389187880614641071e-18 +0.000000000000000000e+00,-7.063251849252724368e-10,-1.412650369850544874e-09,-2.118975554775817311e-09,-2.825300739701089747e-09,-3.531625924626362184e-09,-4.237951109551634621e-09,-4.944276294476906644e-09,-5.650601479402178668e-09,-6.356926664327450691e-09,-7.063251849252722714e-09,-7.769577034177994737e-09,-8.475902219103267588e-09,-9.182227404028540438e-09,-9.888552588953813289e-09,-1.059487777387908614e-08,-1.130120295880435899e-08,-1.200752814372963184e-08,-1.271385332865490469e-08,-1.342017851358017754e-08,-1.412650369850545039e-08,-1.483282888343072324e-08,-1.553915406835599609e-08,-1.624547925328126894e-08,-1.695180443820654179e-08,-1.765812962313181464e-08,-1.836445480805708749e-08,-1.907077999298236034e-08,-1.977710517790763319e-08,-2.048343036283290605e-08,-2.118975554775817890e-08,-2.189608073268345175e-08,-2.260240591760872460e-08,-2.330873110253399745e-08,-2.401505628745927030e-08,-2.472138147238454315e-08,-2.542770665730981600e-08,-2.613403184223508885e-08,-2.684035702716036170e-08,-2.754668221208563455e-08,-2.825300739701090740e-08,-2.895933258193618025e-08,-2.966565776686145310e-08,-3.037198295178672595e-08,-3.107830813671199880e-08,-3.178463332163727165e-08,-3.249095850656254450e-08,-3.319728369148781735e-08,-3.390360887641309020e-08,-3.460993406133836305e-08,-3.531625924626363590e-08,-3.602258443118890875e-08,-3.672890961611418161e-08,-3.743523480103945446e-08,-3.814155998596472731e-08,-3.884788517089000016e-08,-3.955421035581527301e-08,-4.026053554074054586e-08,-4.096686072566581871e-08,-4.167318591059109156e-08,-4.237951109551636441e-08,-4.308583628044163726e-08,-4.379216146536691011e-08,-4.449848665029218296e-08 +0.000000000000000000e+00,-6.855279720802050372e-10,-1.371055944160410074e-09,-2.056583916240615112e-09,-2.742111888320820149e-09,-3.427639860401025186e-09,-4.113167832481230223e-09,-4.798695804561435674e-09,-5.484223776641641125e-09,-6.169751748721845748e-09,-6.855279720802052026e-09,-7.540807692882257477e-09,-8.226335664962462101e-09,-8.911863637042666724e-09,-9.597391609122871348e-09,-1.028291958120307597e-08,-1.096844755328328060e-08,-1.165397552536348522e-08,-1.233950349744368984e-08,-1.302503146952389447e-08,-1.371055944160409909e-08,-1.439608741368430371e-08,-1.508161538576450834e-08,-1.576714335784471296e-08,-1.645267132992491758e-08,-1.713819930200512221e-08,-1.782372727408532683e-08,-1.850925524616553145e-08,-1.919478321824573608e-08,-1.988031119032594070e-08,-2.056583916240614202e-08,-2.125136713448634995e-08,-2.193689510656655788e-08,-2.262242307864675920e-08,-2.330795105072696051e-08,-2.399347902280716844e-08,-2.467900699488737638e-08,-2.536453496696757769e-08,-2.605006293904777901e-08,-2.673559091112798694e-08,-2.742111888320819487e-08,-2.810664685528839619e-08,-2.879217482736859750e-08,-2.947770279944880543e-08,-3.016323077152901006e-08,-3.084875874360921468e-08,-3.153428671568941930e-08,-3.221981468776962393e-08,-3.290534265984982855e-08,-3.359087063193003317e-08,-3.427639860401023780e-08,-3.496192657609044242e-08,-3.564745454817064705e-08,-3.633298252025085167e-08,-3.701851049233105629e-08,-3.770403846441126092e-08,-3.838956643649146554e-08,-3.907509440857167016e-08,-3.976062238065187479e-08,-4.044615035273207941e-08,-4.113167832481228403e-08,-4.181720629689249527e-08,-4.250273426897269328e-08,-4.318826224105289790e-08 +0.000000000000000000e+00,-3.428187971419843198e-10,-6.856375942839686397e-10,-1.028456391425952908e-09,-1.371275188567937279e-09,-1.714093985709921237e-09,-2.056912782851905402e-09,-2.399731579993889567e-09,-2.742550377135873731e-09,-3.085369174277857483e-09,-3.428187971419842061e-09,-3.771006768561826226e-09,-4.113825565703809977e-09,-4.456644362845793728e-09,-4.799463159987777479e-09,-5.142281957129761230e-09,-5.485100754271744154e-09,-5.827919551413728733e-09,-6.170738348555713311e-09,-6.513557145697696235e-09,-6.856375942839679159e-09,-7.199194739981663737e-09,-7.542013537123647488e-09,-7.884832334265631239e-09,-8.227651131407614991e-09,-8.570469928549598742e-09,-8.913288725691582493e-09,-9.256107522833566244e-09,-9.598926319975549995e-09,-9.941745117117532092e-09,-1.028456391425951750e-08,-1.062738271140150125e-08,-1.097020150854348500e-08,-1.131302030568547041e-08,-1.165583910282745250e-08,-1.199865789996943625e-08,-1.234147669711142000e-08,-1.268429549425340210e-08,-1.302711429139538751e-08,-1.336993308853737126e-08,-1.371275188567935501e-08,-1.405557068282134041e-08,-1.439838947996332251e-08,-1.474120827710530626e-08,-1.508402707424729167e-08,-1.542684587138927707e-08,-1.576966466853126248e-08,-1.611248346567324788e-08,-1.645530226281523329e-08,-1.679812105995721870e-08,-1.714093985709920410e-08,-1.748375865424118951e-08,-1.782657745138317491e-08,-1.816939624852516032e-08,-1.851221504566714572e-08,-1.885503384280913113e-08,-1.919785263995111653e-08,-1.954067143709310194e-08,-1.988349023423508734e-08,-2.022630903137707275e-08,-2.056912782851905816e-08,-2.091194662566104356e-08,-2.125476542280302897e-08,-2.159758421994501437e-08 +0.000000000000000000e+00,-7.130822928617998139e-10,-1.426164585723599628e-09,-2.139246878585399338e-09,-2.852329171447198842e-09,-3.565411464308998346e-09,-4.278493757170797849e-09,-4.991576050032597353e-09,-5.704658342894396857e-09,-6.417740635756196361e-09,-7.130822928617995864e-09,-7.843905221479796195e-09,-8.556987514341597353e-09,-9.270069807203398511e-09,-9.983152100065199669e-09,-1.069623439292700083e-08,-1.140931668578880199e-08,-1.212239897865060314e-08,-1.283548127151240430e-08,-1.354856356437420546e-08,-1.426164585723600662e-08,-1.497472815009780778e-08,-1.568781044295960893e-08,-1.640089273582141009e-08,-1.711397502868321125e-08,-1.782705732154501241e-08,-1.854013961440681357e-08,-1.925322190726861472e-08,-1.996630420013041588e-08,-2.067938649299221704e-08,-2.139246878585401820e-08,-2.210555107871581936e-08,-2.281863337157762051e-08,-2.353171566443942167e-08,-2.424479795730122283e-08,-2.495788025016302399e-08,-2.567096254302482515e-08,-2.638404483588662631e-08,-2.709712712874842746e-08,-2.781020942161022862e-08,-2.852329171447202978e-08,-2.923637400733383094e-08,-2.994945630019563540e-08,-3.066253859305744318e-08,-3.137562088591925096e-08,-3.208870317878105873e-08,-3.280178547164286651e-08,-3.351486776450467428e-08,-3.422795005736648206e-08,-3.494103235022828983e-08,-3.565411464309009761e-08,-3.636719693595190538e-08,-3.708027922881371316e-08,-3.779336152167552093e-08,-3.850644381453732871e-08,-3.921952610739913649e-08,-3.993260840026094426e-08,-4.064569069312275204e-08,-4.135877298598455981e-08,-4.207185527884636759e-08,-4.278493757170817536e-08,-4.349801986456998314e-08,-4.421110215743179091e-08,-4.492418445029359869e-08 +0.000000000000000000e+00,-7.072969012074224832e-10,-1.414593802414844966e-09,-2.121890703622267553e-09,-2.829187604829690346e-09,-3.536484506037113140e-09,-4.243781407244535933e-09,-4.951078308451958726e-09,-5.658375209659381520e-09,-6.365672110866804313e-09,-7.072969012074227106e-09,-7.780265913281649900e-09,-8.487562814489073520e-09,-9.194859715696497141e-09,-9.902156616903920761e-09,-1.060945351811134438e-08,-1.131675041931876800e-08,-1.202404732052619162e-08,-1.273134422173361524e-08,-1.343864112294103886e-08,-1.414593802414846248e-08,-1.485323492535588611e-08,-1.556053182656330973e-08,-1.626782872777073335e-08,-1.697512562897815697e-08,-1.768242253018558059e-08,-1.838971943139300421e-08,-1.909701633260042783e-08,-1.980431323380785145e-08,-2.051161013501527507e-08,-2.121890703622269869e-08,-2.192620393743012231e-08,-2.263350083863754593e-08,-2.334079773984496955e-08,-2.404809464105239317e-08,-2.475539154225981679e-08,-2.546268844346724041e-08,-2.616998534467466403e-08,-2.687728224588208765e-08,-2.758457914708951127e-08,-2.829187604829693490e-08,-2.899917294950435852e-08,-2.970646985071178214e-08,-3.041376675191920245e-08,-3.112106365312662607e-08,-3.182836055433404969e-08,-3.253565745554147331e-08,-3.324295435674889693e-08,-3.395025125795632055e-08,-3.465754815916374417e-08,-3.536484506037116779e-08,-3.607214196157859141e-08,-3.677943886278601503e-08,-3.748673576399343865e-08,-3.819403266520086227e-08,-3.890132956640828589e-08,-3.960862646761570952e-08,-4.031592336882313314e-08,-4.102322027003055676e-08,-4.173051717123798038e-08,-4.243781407244540400e-08,-4.314511097365282762e-08,-4.385240787486025124e-08,-4.455970477606767486e-08 +0.000000000000000000e+00,-6.767930354763072151e-10,-1.353586070952614430e-09,-2.030379106428921645e-09,-2.707172141905228861e-09,-3.383965177381536076e-09,-4.060758212857843291e-09,-4.737551248334150092e-09,-5.414344283810456894e-09,-6.091137319286763695e-09,-6.767930354763070497e-09,-7.444723390239377299e-09,-8.121516425715684927e-09,-8.798309461191992556e-09,-9.475102496668300185e-09,-1.015189553214460781e-08,-1.082868856762091544e-08,-1.150548160309722307e-08,-1.218227463857353070e-08,-1.285906767404983833e-08,-1.353586070952614596e-08,-1.421265374500245359e-08,-1.488944678047876121e-08,-1.556623981595506884e-08,-1.624303285143137647e-08,-1.691982588690768410e-08,-1.759661892238399173e-08,-1.827341195786029936e-08,-1.895020499333660699e-08,-1.962699802881291462e-08,-2.030379106428922224e-08,-2.098058409976552987e-08,-2.165737713524183750e-08,-2.233417017071814513e-08,-2.301096320619445276e-08,-2.368775624167076039e-08,-2.436454927714706802e-08,-2.504134231262337565e-08,-2.571813534809968327e-08,-2.639492838357599090e-08,-2.707172141905229853e-08,-2.774851445452860616e-08,-2.842530749000491379e-08,-2.910210052548122142e-08,-2.977889356095752905e-08,-3.045568659643383337e-08,-3.113247963191013769e-08,-3.180927266738644201e-08,-3.248606570286274633e-08,-3.316285873833905065e-08,-3.383965177381535497e-08,-3.451644480929165929e-08,-3.519323784476796361e-08,-3.587003088024426793e-08,-3.654682391572057225e-08,-3.722361695119687657e-08,-3.790040998667318089e-08,-3.857720302214948521e-08,-3.925399605762578953e-08,-3.993078909310209385e-08,-4.060758212857839817e-08,-4.128437516405470249e-08,-4.196116819953100681e-08,-4.263796123500731113e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.316189739156645341e-10,1.463237947831329068e-09,2.194856921746993396e-09,2.926475895662657723e-09,3.658094869578322050e-09,4.389713843493986791e-09,5.121332817409651532e-09,5.852951791325316273e-09,6.584570765240981014e-09,7.316189739156645755e-09,8.047808713072309669e-09,8.779427686987973582e-09,9.511046660903637496e-09,1.024266563481930141e-08,1.097428460873496532e-08,1.170590358265062924e-08,1.243752255656629315e-08,1.316914153048195707e-08,1.390076050439762098e-08,1.463237947831328489e-08,1.536399845222894881e-08,1.609561742614461272e-08,1.682723640006027663e-08,1.755885537397594055e-08,1.829047434789160446e-08,1.902209332180726838e-08,1.975371229572293229e-08,2.048533126963859620e-08,2.121695024355426012e-08,2.194856921746992403e-08,2.268018819138558794e-08,2.341180716530125186e-08,2.414342613921691577e-08,2.487504511313257969e-08,2.560666408704824360e-08,2.633828306096390751e-08,2.706990203487957143e-08,2.780152100879523534e-08,2.853313998271089925e-08,2.926475895662656317e-08,2.999637793054222708e-08,3.072799690445789100e-08,3.145961587837355491e-08,3.219123485228921882e-08,3.292285382620488274e-08,3.365447280012054665e-08,3.438609177403621056e-08,3.511771074795187448e-08,3.584932972186753839e-08,3.658094869578320231e-08,3.731256766969886622e-08,3.804418664361453013e-08,3.877580561753019405e-08,3.950742459144585796e-08,4.023904356536152187e-08,4.097066253927718579e-08,4.170228151319284970e-08,4.243390048710851362e-08,4.316551946102417753e-08,4.389713843493984144e-08,4.462875740885550536e-08,4.536037638277116927e-08,4.609199535668683318e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.403540568293431179e-10,1.480708113658686236e-09,2.221062170488029250e-09,2.961416227317372058e-09,3.701770284146714866e-09,4.442124340976057674e-09,5.182478397805400481e-09,5.922832454634743289e-09,6.663186511464086097e-09,7.403540568293428904e-09,8.143894625122771712e-09,8.884248681952113693e-09,9.624602738781455673e-09,1.036495679561079765e-08,1.110531085244013963e-08,1.184566490926948161e-08,1.258601896609882360e-08,1.332637302292816558e-08,1.406672707975750756e-08,1.480708113658684954e-08,1.554743519341619152e-08,1.628778925024553350e-08,1.702814330707487548e-08,1.776849736390421746e-08,1.850885142073355944e-08,1.924920547756290142e-08,1.998955953439224340e-08,2.072991359122158538e-08,2.147026764805092736e-08,2.221062170488026934e-08,2.295097576170961132e-08,2.369132981853895330e-08,2.443168387536829528e-08,2.517203793219763726e-08,2.591239198902697925e-08,2.665274604585632123e-08,2.739310010268566321e-08,2.813345415951500519e-08,2.887380821634434717e-08,2.961416227317368915e-08,3.035451633000303113e-08,3.109487038683236980e-08,3.183522444366170847e-08,3.257557850049104714e-08,3.331593255732038582e-08,3.405628661414972449e-08,3.479664067097906316e-08,3.553699472780840183e-08,3.627734878463774050e-08,3.701770284146707917e-08,3.775805689829641785e-08,3.849841095512575652e-08,3.923876501195509519e-08,3.997911906878443386e-08,4.071947312561377253e-08,4.145982718244311121e-08,4.220018123927244988e-08,4.294053529610178855e-08,4.368088935293112722e-08,4.442124340976046589e-08,4.516159746658980456e-08,4.590195152341914324e-08,4.664230558024848191e-08 +0.000000000000000000e+00,7.595217788489153617e-10,1.519043557697830723e-09,2.278565336546746188e-09,3.038087115395661860e-09,3.797608894244577946e-09,4.557130673093494031e-09,5.316652451942410117e-09,6.076174230791326202e-09,6.835696009640242288e-09,7.595217788489159200e-09,8.354739567338076113e-09,9.114261346186993026e-09,9.873783125035909938e-09,1.063330490388482685e-08,1.139282668273374376e-08,1.215234846158266068e-08,1.291187024043157759e-08,1.367139201928049450e-08,1.443091379812941141e-08,1.519043557697832833e-08,1.594995735582724524e-08,1.670947913467616215e-08,1.746900091352507906e-08,1.822852269237399598e-08,1.898804447122291289e-08,1.974756625007182980e-08,2.050708802892074672e-08,2.126660980776966363e-08,2.202613158661858054e-08,2.278565336546749745e-08,2.354517514431641437e-08,2.430469692316533128e-08,2.506421870201424819e-08,2.582374048086316510e-08,2.658326225971208202e-08,2.734278403856099893e-08,2.810230581740991584e-08,2.886182759625883275e-08,2.962134937510774967e-08,3.038087115395666327e-08,3.114039293280557357e-08,3.189991471165448386e-08,3.265943649050339416e-08,3.341895826935230445e-08,3.417848004820121475e-08,3.493800182705012504e-08,3.569752360589903534e-08,3.645704538474794563e-08,3.721656716359685593e-08,3.797608894244576622e-08,3.873561072129467652e-08,3.949513250014358681e-08,4.025465427899249711e-08,4.101417605784140740e-08,4.177369783669031770e-08,4.253321961553922799e-08,4.329274139438813829e-08,4.405226317323704859e-08,4.481178495208595888e-08,4.557130673093486918e-08,4.633082850978377947e-08,4.709035028863268977e-08,4.784987206748160006e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.316189739146628184e-10,-1.463237947829325637e-09,-2.194856921743988248e-09,-2.926475895658650860e-09,-3.658094869573313472e-09,-4.389713843487976497e-09,-5.121332817402639522e-09,-5.852951791317302547e-09,-6.584570765231965573e-09,-7.316189739146628598e-09,-8.047808713061291623e-09,-8.779427686975954648e-09,-9.511046660890617673e-09,-1.024266563480528070e-08,-1.097428460871994372e-08,-1.170590358263460675e-08,-1.243752255654926977e-08,-1.316914153046393280e-08,-1.390076050437859582e-08,-1.463237947829325885e-08,-1.536399845220792188e-08,-1.609561742612258325e-08,-1.682723640003724462e-08,-1.755885537395190599e-08,-1.829047434786656736e-08,-1.902209332178122873e-08,-1.975371229569589010e-08,-2.048533126961055147e-08,-2.121695024352521284e-08,-2.194856921743987421e-08,-2.268018819135453558e-08,-2.341180716526919695e-08,-2.414342613918385833e-08,-2.487504511309851970e-08,-2.560666408701318107e-08,-2.633828306092784244e-08,-2.706990203484250381e-08,-2.780152100875716518e-08,-2.853313998267182655e-08,-2.926475895658648792e-08,-2.999637793050115260e-08,-3.072799690441581728e-08,-3.145961587833048196e-08,-3.219123485224514664e-08,-3.292285382615981132e-08,-3.365447280007447600e-08,-3.438609177398914068e-08,-3.511771074790380536e-08,-3.584932972181847004e-08,-3.658094869573313472e-08,-3.731256766964779940e-08,-3.804418664356246408e-08,-3.877580561747712876e-08,-3.950742459139179344e-08,-4.023904356530645811e-08,-4.097066253922112279e-08,-4.170228151313578747e-08,-4.243390048705045215e-08,-4.316551946096511683e-08,-4.389713843487978151e-08,-4.462875740879444619e-08,-4.536037638270911087e-08,-4.609199535662377555e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.403540568290252738e-10,-1.480708113658050548e-09,-2.221062170487075925e-09,-2.961416227316101509e-09,-3.701770284145127093e-09,-4.442124340974152677e-09,-5.182478397803178674e-09,-5.922832454632204672e-09,-6.663186511461230669e-09,-7.403540568290256667e-09,-8.143894625119282664e-09,-8.884248681948308662e-09,-9.624602738777334659e-09,-1.036495679560636066e-08,-1.110531085243538665e-08,-1.184566490926441265e-08,-1.258601896609343865e-08,-1.332637302292246465e-08,-1.406672707975149064e-08,-1.480708113658051664e-08,-1.554743519340954099e-08,-1.628778925023856533e-08,-1.702814330706758967e-08,-1.776849736389661402e-08,-1.850885142072563836e-08,-1.924920547755466270e-08,-1.998955953438368704e-08,-2.072991359121271139e-08,-2.147026764804173573e-08,-2.221062170487076007e-08,-2.295097576169978442e-08,-2.369132981852880876e-08,-2.443168387535783310e-08,-2.517203793218685745e-08,-2.591239198901588179e-08,-2.665274604584490613e-08,-2.739310010267393048e-08,-2.813345415950295482e-08,-2.887380821633197916e-08,-2.961416227316100351e-08,-3.035451632999002785e-08,-3.109487038681905550e-08,-3.183522444364808315e-08,-3.257557850047711080e-08,-3.331593255730613846e-08,-3.405628661413516611e-08,-3.479664067096419376e-08,-3.553699472779322141e-08,-3.627734878462224906e-08,-3.701770284145127672e-08,-3.775805689828030437e-08,-3.849841095510933202e-08,-3.923876501193835967e-08,-3.997911906876738732e-08,-4.071947312559641498e-08,-4.145982718242544263e-08,-4.220018123925447028e-08,-4.294053529608349793e-08,-4.368088935291252558e-08,-4.442124340974155324e-08,-4.516159746657058089e-08,-4.590195152339960854e-08,-4.664230558022863619e-08 +0.000000000000000000e+00,-7.595217788473925222e-10,-1.519043557694785044e-09,-2.278565336542177670e-09,-3.038087115389570502e-09,-3.797608894236962921e-09,-4.557130673084355340e-09,-5.316652451931747759e-09,-6.076174230779140177e-09,-6.835696009626532596e-09,-7.595217788473925842e-09,-8.354739567321319088e-09,-9.114261346168712334e-09,-9.873783125016105580e-09,-1.063330490386349883e-08,-1.139282668271089207e-08,-1.215234846155828532e-08,-1.291187024040567856e-08,-1.367139201925307181e-08,-1.443091379810046506e-08,-1.519043557694785830e-08,-1.594995735579525320e-08,-1.670947913464264810e-08,-1.746900091349004300e-08,-1.822852269233743790e-08,-1.898804447118483280e-08,-1.974756625003222770e-08,-2.050708802887962260e-08,-2.126660980772701750e-08,-2.202613158657441240e-08,-2.278565336542180731e-08,-2.354517514426920221e-08,-2.430469692311659711e-08,-2.506421870196399201e-08,-2.582374048081138691e-08,-2.658326225965878181e-08,-2.734278403850617671e-08,-2.810230581735357161e-08,-2.886182759620096651e-08,-2.962134937504836141e-08,-3.038087115389575631e-08,-3.114039293274315121e-08,-3.189991471159054611e-08,-3.265943649043794101e-08,-3.341895826928533591e-08,-3.417848004813273081e-08,-3.493800182698012571e-08,-3.569752360582752061e-08,-3.645704538467491551e-08,-3.721656716352231041e-08,-3.797608894236970531e-08,-3.873561072121710021e-08,-3.949513250006449511e-08,-4.025465427891189001e-08,-4.101417605775928491e-08,-4.177369783660667981e-08,-4.253321961545407471e-08,-4.329274139430146961e-08,-4.405226317314886451e-08,-4.481178495199625941e-08,-4.557130673084365432e-08,-4.633082850969104922e-08,-4.709035028853844412e-08,-4.784987206738583902e-08 +0.000000000000000000e+00,7.303297705534726576e-10,1.460659541106945315e-09,2.190989311660417973e-09,2.921319082213890630e-09,3.651648852767363288e-09,4.381978623320835945e-09,5.112308393874308603e-09,5.842638164427781261e-09,6.572967934981253918e-09,7.303297705534726576e-09,8.033627476088200061e-09,8.763957246641673545e-09,9.494287017195147030e-09,1.022461678774862051e-08,1.095494655830209400e-08,1.168527632885556748e-08,1.241560609940904097e-08,1.314593586996251445e-08,1.387626564051598794e-08,1.460659541106946142e-08,1.533692518162293491e-08,1.606725495217640674e-08,1.679758472272987857e-08,1.752791449328335040e-08,1.825824426383682223e-08,1.898857403439029406e-08,1.971890380494376589e-08,2.044923357549723772e-08,2.117956334605070955e-08,2.190989311660418138e-08,2.264022288715765321e-08,2.337055265771112504e-08,2.410088242826459687e-08,2.483121219881806870e-08,2.556154196937154053e-08,2.629187173992501236e-08,2.702220151047848419e-08,2.775253128103195603e-08,2.848286105158542786e-08,2.921319082213889969e-08,2.994352059269237152e-08,3.067385036324584335e-08,3.140418013379931518e-08,3.213450990435278701e-08,3.286483967490625884e-08,3.359516944545973067e-08,3.432549921601320250e-08,3.505582898656667433e-08,3.578615875712014616e-08,3.651648852767361799e-08,3.724681829822708982e-08,3.797714806878056165e-08,3.870747783933403348e-08,3.943780760988750531e-08,4.016813738044097714e-08,4.089846715099444897e-08,4.162879692154792080e-08,4.235912669210139263e-08,4.308945646265486446e-08,4.381978623320833629e-08,4.455011600376180812e-08,4.528044577431527995e-08,4.601077554486875179e-08 +0.000000000000000000e+00,7.388853246201336177e-10,1.477770649240267235e-09,2.216655973860400750e-09,2.955541298480534057e-09,3.694426623100667365e-09,4.433311947720800673e-09,5.172197272340933980e-09,5.911082596961067288e-09,6.649967921581200595e-09,7.388853246201333903e-09,8.127738570821466383e-09,8.866623895441599691e-09,9.605509220061732998e-09,1.034439454468186631e-08,1.108327986930199961e-08,1.182216519392213292e-08,1.256105051854226623e-08,1.329993584316239954e-08,1.403882116778253284e-08,1.477770649240266615e-08,1.551659181702279946e-08,1.625547714164293277e-08,1.699436246626306607e-08,1.773324779088319938e-08,1.847213311550333269e-08,1.921101844012346600e-08,1.994990376474359930e-08,2.068878908936373261e-08,2.142767441398386592e-08,2.216655973860399923e-08,2.290544506322413253e-08,2.364433038784426584e-08,2.438321571246439915e-08,2.512210103708453246e-08,2.586098636170466576e-08,2.659987168632479907e-08,2.733875701094493238e-08,2.807764233556506569e-08,2.881652766018519899e-08,2.955541298480533230e-08,3.029429830942546561e-08,3.103318363404559892e-08,3.177206895866573222e-08,3.251095428328586553e-08,3.324983960790599884e-08,3.398872493252613215e-08,3.472761025714626546e-08,3.546649558176639876e-08,3.620538090638653207e-08,3.694426623100666538e-08,3.768315155562679869e-08,3.842203688024693199e-08,3.916092220486706530e-08,3.989980752948719861e-08,4.063869285410733192e-08,4.137757817872746522e-08,4.211646350334759853e-08,4.285534882796773184e-08,4.359423415258786515e-08,4.433311947720799845e-08,4.507200480182813176e-08,4.581089012644826507e-08,4.654977545106839838e-08 +0.000000000000000000e+00,7.566360855347798327e-10,1.513272171069559665e-09,2.269908256604339395e-09,3.026544342139118917e-09,3.783180427673898440e-09,4.539816513208677962e-09,5.296452598743457485e-09,6.053088684278237007e-09,6.809724769813016529e-09,7.566360855347795225e-09,8.322996940882573093e-09,9.079633026417350961e-09,9.836269111952128829e-09,1.059290519748690670e-08,1.134954128302168457e-08,1.210617736855646243e-08,1.286281345409124030e-08,1.361944953962601817e-08,1.437608562516079604e-08,1.513272171069557391e-08,1.588935779623035177e-08,1.664599388176512964e-08,1.740262996729990751e-08,1.815926605283468538e-08,1.891590213836946325e-08,1.967253822390424111e-08,2.042917430943901898e-08,2.118581039497379685e-08,2.194244648050857472e-08,2.269908256604335259e-08,2.345571865157813046e-08,2.421235473711290832e-08,2.496899082264768619e-08,2.572562690818246406e-08,2.648226299371724193e-08,2.723889907925201980e-08,2.799553516478679766e-08,2.875217125032157553e-08,2.950880733585635340e-08,3.026544342139112796e-08,3.102207950692590583e-08,3.177871559246068370e-08,3.253535167799546156e-08,3.329198776353023943e-08,3.404862384906501730e-08,3.480525993459979517e-08,3.556189602013457304e-08,3.631853210566935090e-08,3.707516819120412877e-08,3.783180427673890664e-08,3.858844036227368451e-08,3.934507644780846238e-08,4.010171253334324025e-08,4.085834861887801811e-08,4.161498470441279598e-08,4.237162078994757385e-08,4.312825687548235172e-08,4.388489296101712959e-08,4.464152904655190745e-08,4.539816513208668532e-08,4.615480121762146319e-08,4.691143730315624106e-08,4.766807338869101893e-08 +0.000000000000000000e+00,-7.303297705499402862e-10,-1.460659541099880572e-09,-2.190989311649820962e-09,-2.921319082199761558e-09,-3.651648852749702155e-09,-4.381978623299642751e-09,-5.112308393849583347e-09,-5.842638164399523944e-09,-6.572967934949464540e-09,-7.303297705499405136e-09,-8.033627476049345733e-09,-8.763957246599287156e-09,-9.494287017149228580e-09,-1.022461678769917000e-08,-1.095494655824911143e-08,-1.168527632879905285e-08,-1.241560609934899427e-08,-1.314593586989893570e-08,-1.387626564044887712e-08,-1.460659541099881854e-08,-1.533692518154875997e-08,-1.606725495209870139e-08,-1.679758472264864282e-08,-1.752791449319858424e-08,-1.825824426374852566e-08,-1.898857403429846709e-08,-1.971890380484840851e-08,-2.044923357539834993e-08,-2.117956334594829136e-08,-2.190989311649823278e-08,-2.264022288704817420e-08,-2.337055265759811563e-08,-2.410088242814805705e-08,-2.483121219869799847e-08,-2.556154196924793990e-08,-2.629187173979788132e-08,-2.702220151034782275e-08,-2.775253128089776417e-08,-2.848286105144770559e-08,-2.921319082199764702e-08,-2.994352059254758844e-08,-3.067385036309753317e-08,-3.140418013364747790e-08,-3.213450990419742264e-08,-3.286483967474736737e-08,-3.359516944529731210e-08,-3.432549921584725683e-08,-3.505582898639720157e-08,-3.578615875694714630e-08,-3.651648852749709103e-08,-3.724681829804703576e-08,-3.797714806859698049e-08,-3.870747783914692523e-08,-3.943780760969686996e-08,-4.016813738024681469e-08,-4.089846715079675942e-08,-4.162879692134670416e-08,-4.235912669189664889e-08,-4.308945646244659362e-08,-4.381978623299653835e-08,-4.455011600354648308e-08,-4.528044577409642782e-08,-4.601077554464637255e-08 +0.000000000000000000e+00,-7.388853246180409542e-10,-1.477770649236081908e-09,-2.216655973854122863e-09,-2.955541298472163817e-09,-3.694426623090204771e-09,-4.433311947708245725e-09,-5.172197272326287093e-09,-5.911082596944328461e-09,-6.649967921562369829e-09,-7.388853246180411196e-09,-8.127738570798452564e-09,-8.866623895416493105e-09,-9.605509220034533645e-09,-1.034439454465257419e-08,-1.108327986927061473e-08,-1.182216519388865527e-08,-1.256105051850669581e-08,-1.329993584312473635e-08,-1.403882116774277689e-08,-1.477770649236081743e-08,-1.551659181697885962e-08,-1.625547714159690182e-08,-1.699436246621494401e-08,-1.773324779083298621e-08,-1.847213311545102840e-08,-1.921101844006907060e-08,-1.994990376468711279e-08,-2.068878908930515499e-08,-2.142767441392319718e-08,-2.216655973854123938e-08,-2.290544506315928157e-08,-2.364433038777732377e-08,-2.438321571239536596e-08,-2.512210103701340816e-08,-2.586098636163145035e-08,-2.659987168624949255e-08,-2.733875701086753474e-08,-2.807764233548557694e-08,-2.881652766010361913e-08,-2.955541298472166133e-08,-3.029429830933970352e-08,-3.103318363395774572e-08,-3.177206895857578791e-08,-3.251095428319383011e-08,-3.324983960781187230e-08,-3.398872493242991450e-08,-3.472761025704795669e-08,-3.546649558166599889e-08,-3.620538090628404108e-08,-3.694426623090208328e-08,-3.768315155552012547e-08,-3.842203688013816767e-08,-3.916092220475620986e-08,-3.989980752937425206e-08,-4.063869285399229425e-08,-4.137757817861033645e-08,-4.211646350322837864e-08,-4.285534882784642084e-08,-4.359423415246446303e-08,-4.433311947708250523e-08,-4.507200480170054742e-08,-4.581089012631858962e-08,-4.654977545093663181e-08 +0.000000000000000000e+00,-7.566360855294250790e-10,-1.513272171058850158e-09,-2.269908256588275134e-09,-3.026544342117699902e-09,-3.783180427647125085e-09,-4.539816513176550267e-09,-5.296452598705975449e-09,-6.053088684235400632e-09,-6.809724769764825814e-09,-7.566360855294250169e-09,-8.322996940823674525e-09,-9.079633026353098880e-09,-9.836269111882523235e-09,-1.059290519741194759e-08,-1.134954128294137195e-08,-1.210617736847079630e-08,-1.286281345400022066e-08,-1.361944953952964501e-08,-1.437608562505906937e-08,-1.513272171058849372e-08,-1.588935779611791808e-08,-1.664599388164734243e-08,-1.740262996717676679e-08,-1.815926605270619114e-08,-1.891590213823561550e-08,-1.967253822376503985e-08,-2.042917430929446421e-08,-2.118581039482388856e-08,-2.194244648035331292e-08,-2.269908256588273727e-08,-2.345571865141216163e-08,-2.421235473694158598e-08,-2.496899082247101034e-08,-2.572562690800043469e-08,-2.648226299352985905e-08,-2.723889907905928340e-08,-2.799553516458870776e-08,-2.875217125011813211e-08,-2.950880733564755647e-08,-3.026544342117698083e-08,-3.102207950670640518e-08,-3.177871559223582954e-08,-3.253535167776525389e-08,-3.329198776329467825e-08,-3.404862384882410260e-08,-3.480525993435352696e-08,-3.556189601988295131e-08,-3.631853210541237567e-08,-3.707516819094180002e-08,-3.783180427647122438e-08,-3.858844036200064873e-08,-3.934507644753007309e-08,-4.010171253305949744e-08,-4.085834861858892180e-08,-4.161498470411834615e-08,-4.237162078964777051e-08,-4.312825687517719486e-08,-4.388489296070661922e-08,-4.464152904623604357e-08,-4.539816513176546793e-08,-4.615480121729489228e-08,-4.691143730282431664e-08,-4.766807338835374099e-08 +0.000000000000000000e+00,7.157049271908971830e-10,1.431409854381794366e-09,2.147114781572691446e-09,2.862819708763588318e-09,3.578524635954485191e-09,4.294229563145382064e-09,5.009934490336279350e-09,5.725639417527176637e-09,6.441344344718073923e-09,7.157049271908971209e-09,7.872754199099868496e-09,8.588459126290765782e-09,9.304164053481663068e-09,1.001986898067256035e-08,1.073557390786345764e-08,1.145127883505435493e-08,1.216698376224525221e-08,1.288268868943614950e-08,1.359839361662704679e-08,1.431409854381794407e-08,1.502980347100883971e-08,1.574550839819973368e-08,1.646121332539062766e-08,1.717691825258152164e-08,1.789262317977241562e-08,1.860832810696330959e-08,1.932403303415420357e-08,2.003973796134509755e-08,2.075544288853599153e-08,2.147114781572688550e-08,2.218685274291777948e-08,2.290255767010867346e-08,2.361826259729956744e-08,2.433396752449046141e-08,2.504967245168135539e-08,2.576537737887224937e-08,2.648108230606314335e-08,2.719678723325403732e-08,2.791249216044493130e-08,2.862819708763582528e-08,2.934390201482671926e-08,3.005960694201761324e-08,3.077531186920850721e-08,3.149101679639940119e-08,3.220672172359029517e-08,3.292242665078118915e-08,3.363813157797208312e-08,3.435383650516297710e-08,3.506954143235387108e-08,3.578524635954476506e-08,3.650095128673565903e-08,3.721665621392655301e-08,3.793236114111744699e-08,3.864806606830834097e-08,3.936377099549923494e-08,4.007947592269012892e-08,4.079518084988102290e-08,4.151088577707191688e-08,4.222659070426281086e-08,4.294229563145370483e-08,4.365800055864459881e-08,4.437370548583549279e-08,4.508941041302638677e-08 +0.000000000000000000e+00,7.222011035230577549e-10,1.444402207046115510e-09,2.166603310569173472e-09,2.888804414092231433e-09,3.611005517615289395e-09,4.333206621138346943e-09,5.055407724661404491e-09,5.777608828184462039e-09,6.499809931707519588e-09,7.222011035230577136e-09,7.944212138753634684e-09,8.666413242276692232e-09,9.388614345799749780e-09,1.011081544932280733e-08,1.083301655284586488e-08,1.155521765636892242e-08,1.227741875989197997e-08,1.299961986341503752e-08,1.372182096693809507e-08,1.444402207046115262e-08,1.516622317398421017e-08,1.588842427750726937e-08,1.661062538103032857e-08,1.733282648455338777e-08,1.805502758807644698e-08,1.877722869159950618e-08,1.949942979512256538e-08,2.022163089864562458e-08,2.094383200216868379e-08,2.166603310569174299e-08,2.238823420921480219e-08,2.311043531273786139e-08,2.383263641626092060e-08,2.455483751978397980e-08,2.527703862330703900e-08,2.599923972683009820e-08,2.672144083035315741e-08,2.744364193387621661e-08,2.816584303739927581e-08,2.888804414092233501e-08,2.961024524444539422e-08,3.033244634796845342e-08,3.105464745149150931e-08,3.177684855501456521e-08,3.249904965853762110e-08,3.322125076206067699e-08,3.394345186558373289e-08,3.466565296910678878e-08,3.538785407262984467e-08,3.611005517615290057e-08,3.683225627967595646e-08,3.755445738319901236e-08,3.827665848672206825e-08,3.899885959024512414e-08,3.972106069376818004e-08,4.044326179729123593e-08,4.116546290081429182e-08,4.188766400433734772e-08,4.260986510786040361e-08,4.333206621138345951e-08,4.405426731490651540e-08,4.477646841842957129e-08,4.549866952195262719e-08 +0.000000000000000000e+00,7.331768317870365369e-10,1.466353663574073074e-09,2.199530495361109818e-09,2.932707327148146561e-09,3.665884158935183305e-09,4.399060990722219635e-09,5.132237822509255965e-09,5.865414654296292295e-09,6.598591486083328625e-09,7.331768317870364955e-09,8.064945149657401286e-09,8.798121981444437616e-09,9.531298813231473946e-09,1.026447564501851028e-08,1.099765247680554661e-08,1.173082930859258294e-08,1.246400614037961927e-08,1.319718297216665560e-08,1.393035980395369193e-08,1.466353663574072826e-08,1.539671346752776293e-08,1.612989029931479926e-08,1.686306713110183559e-08,1.759624396288887192e-08,1.832942079467590825e-08,1.906259762646294458e-08,1.979577445824998091e-08,2.052895129003701724e-08,2.126212812182405357e-08,2.199530495361108990e-08,2.272848178539812623e-08,2.346165861718516256e-08,2.419483544897219889e-08,2.492801228075923522e-08,2.566118911254627155e-08,2.639436594433330788e-08,2.712754277612034421e-08,2.786071960790738054e-08,2.859389643969441687e-08,2.932707327148145320e-08,3.006025010326848953e-08,3.079342693505552586e-08,3.152660376684256219e-08,3.225978059862959852e-08,3.299295743041663486e-08,3.372613426220367119e-08,3.445931109399070752e-08,3.519248792577774385e-08,3.592566475756478018e-08,3.665884158935181651e-08,3.739201842113885284e-08,3.812519525292588917e-08,3.885837208471292550e-08,3.959154891649996183e-08,4.032472574828699816e-08,4.105790258007403449e-08,4.179107941186107082e-08,4.252425624364810715e-08,4.325743307543514348e-08,4.399060990722217981e-08,4.472378673900921614e-08,4.545696357079625247e-08,4.619014040258328880e-08 +0.000000000000000000e+00,-7.157049271836846850e-10,-1.431409854367369370e-09,-2.147114781551054055e-09,-2.862819708734738740e-09,-3.578524635918423425e-09,-4.294229563102108110e-09,-5.009934490285793209e-09,-5.725639417469478307e-09,-6.441344344653163406e-09,-7.157049271836848505e-09,-7.872754199020533603e-09,-8.588459126204217875e-09,-9.304164053387902146e-09,-1.001986898057158642e-08,-1.073557390775527069e-08,-1.145127883493895496e-08,-1.216698376212263923e-08,-1.288268868930632350e-08,-1.359839361649000777e-08,-1.431409854367369205e-08,-1.502980347085737632e-08,-1.574550839804106059e-08,-1.646121332522474486e-08,-1.717691825240842913e-08,-1.789262317959211340e-08,-1.860832810677579767e-08,-1.932403303395948195e-08,-2.003973796114316622e-08,-2.075544288832685049e-08,-2.147114781551053476e-08,-2.218685274269421903e-08,-2.290255766987790330e-08,-2.361826259706158757e-08,-2.433396752424527185e-08,-2.504967245142895612e-08,-2.576537737861264039e-08,-2.648108230579632466e-08,-2.719678723298000893e-08,-2.791249216016369320e-08,-2.862819708734737747e-08,-2.934390201453106175e-08,-3.005960694171474602e-08,-3.077531186889842698e-08,-3.149101679608210794e-08,-3.220672172326578891e-08,-3.292242665044946987e-08,-3.363813157763315083e-08,-3.435383650481683179e-08,-3.506954143200051276e-08,-3.578524635918419372e-08,-3.650095128636787468e-08,-3.721665621355155564e-08,-3.793236114073523661e-08,-3.864806606791891757e-08,-3.936377099510259853e-08,-4.007947592228627950e-08,-4.079518084946996046e-08,-4.151088577665364142e-08,-4.222659070383732238e-08,-4.294229563102100335e-08,-4.365800055820468431e-08,-4.437370548538836527e-08,-4.508941041257204623e-08 +0.000000000000000000e+00,-7.222011035178259410e-10,-1.444402207035651882e-09,-2.166603310553477719e-09,-2.888804414071303350e-09,-3.611005517589128981e-09,-4.333206621106954612e-09,-5.055407724624780243e-09,-5.777608828142605873e-09,-6.499809931660431504e-09,-7.222011035178257135e-09,-7.944212138696082766e-09,-8.666413242213907569e-09,-9.388614345731732373e-09,-1.011081544924955718e-08,-1.083301655276738198e-08,-1.155521765628520678e-08,-1.227741875980303159e-08,-1.299961986332085639e-08,-1.372182096683868119e-08,-1.444402207035650600e-08,-1.516622317387433080e-08,-1.588842427739215561e-08,-1.661062538090998041e-08,-1.733282648442780521e-08,-1.805502758794563002e-08,-1.877722869146345482e-08,-1.949942979498127962e-08,-2.022163089849910443e-08,-2.094383200201692923e-08,-2.166603310553475403e-08,-2.238823420905257884e-08,-2.311043531257040364e-08,-2.383263641608822844e-08,-2.455483751960605325e-08,-2.527703862312387805e-08,-2.599923972664170286e-08,-2.672144083015952766e-08,-2.744364193367735246e-08,-2.816584303719517727e-08,-2.888804414071300207e-08,-2.961024524423082687e-08,-3.033244634774864837e-08,-3.105464745126646986e-08,-3.177684855478429136e-08,-3.249904965830211285e-08,-3.322125076181993435e-08,-3.394345186533775584e-08,-3.466565296885557734e-08,-3.538785407237339883e-08,-3.611005517589122033e-08,-3.683225627940904182e-08,-3.755445738292686332e-08,-3.827665848644468481e-08,-3.899885958996250631e-08,-3.972106069348032780e-08,-4.044326179699814930e-08,-4.116546290051597079e-08,-4.188766400403379229e-08,-4.260986510755161378e-08,-4.333206621106943528e-08,-4.405426731458725677e-08,-4.477646841810507827e-08,-4.549866952162289976e-08 +0.000000000000000000e+00,-7.331768317759471468e-10,-1.466353663551894294e-09,-2.199530495327841440e-09,-2.932707327103788587e-09,-3.665884158879735734e-09,-4.399060990655682881e-09,-5.132237822431630028e-09,-5.865414654207577175e-09,-6.598591485983524321e-09,-7.331768317759471468e-09,-8.064945149535418615e-09,-8.798121981311365762e-09,-9.531298813087312909e-09,-1.026447564486326006e-08,-1.099765247663920720e-08,-1.173082930841515435e-08,-1.246400614019110150e-08,-1.319718297196704864e-08,-1.393035980374299579e-08,-1.466353663551894294e-08,-1.539671346729488843e-08,-1.612989029907083392e-08,-1.686306713084677941e-08,-1.759624396262272491e-08,-1.832942079439867040e-08,-1.906259762617461589e-08,-1.979577445795056138e-08,-2.052895128972650688e-08,-2.126212812150245237e-08,-2.199530495327839786e-08,-2.272848178505434335e-08,-2.346165861683028885e-08,-2.419483544860623434e-08,-2.492801228038217983e-08,-2.566118911215812532e-08,-2.639436594393407082e-08,-2.712754277571001631e-08,-2.786071960748596180e-08,-2.859389643926190729e-08,-2.932707327103785279e-08,-3.006025010281379828e-08,-3.079342693458974377e-08,-3.152660376636568926e-08,-3.225978059814163476e-08,-3.299295742991758025e-08,-3.372613426169352574e-08,-3.445931109346947123e-08,-3.519248792524541673e-08,-3.592566475702136222e-08,-3.665884158879730771e-08,-3.739201842057325320e-08,-3.812519525234919870e-08,-3.885837208412514419e-08,-3.959154891590108968e-08,-4.032472574767703517e-08,-4.105790257945298066e-08,-4.179107941122892616e-08,-4.252425624300487165e-08,-4.325743307478081714e-08,-4.399060990655676263e-08,-4.472378673833270813e-08,-4.545696357010865362e-08,-4.619014040188459911e-08 +0.000000000000000000e+00,6.984049450633187031e-10,1.396809890126637406e-09,2.095214835189956213e-09,2.793619780253275226e-09,3.492024725316594239e-09,4.190429670379913253e-09,4.888834615443232266e-09,5.587239560506551279e-09,6.285644505569870292e-09,6.984049450633189306e-09,7.682454395696508319e-09,8.380859340759828160e-09,9.079264285823148000e-09,9.777669230886467840e-09,1.047607417594978768e-08,1.117447912101310752e-08,1.187288406607642736e-08,1.257128901113974720e-08,1.326969395620306704e-08,1.396809890126638688e-08,1.466650384632970672e-08,1.536490879139302656e-08,1.606331373645634640e-08,1.676171868151966625e-08,1.746012362658298609e-08,1.815852857164630593e-08,1.885693351670962577e-08,1.955533846177294561e-08,2.025374340683626545e-08,2.095214835189958529e-08,2.165055329696290513e-08,2.234895824202622497e-08,2.304736318708954481e-08,2.374576813215286465e-08,2.444417307721618449e-08,2.514257802227950433e-08,2.584098296734282417e-08,2.653938791240614401e-08,2.723779285746946385e-08,2.793619780253278369e-08,2.863460274759610353e-08,2.933300769265942337e-08,3.003141263772273991e-08,3.072981758278605975e-08,3.142822252784937959e-08,3.212662747291269943e-08,3.282503241797601927e-08,3.352343736303933911e-08,3.422184230810265895e-08,3.492024725316597879e-08,3.561865219822929863e-08,3.631705714329261847e-08,3.701546208835593831e-08,3.771386703341925815e-08,3.841227197848257799e-08,3.911067692354589783e-08,3.980908186860921767e-08,4.050748681367253751e-08,4.120589175873585735e-08,4.190429670379917719e-08,4.260270164886249703e-08,4.330110659392581687e-08,4.399951153898913672e-08 +0.000000000000000000e+00,7.070137497772379634e-10,1.414027499554475927e-09,2.121041249331713683e-09,2.828054999108951440e-09,3.535068748886189197e-09,4.242082498663427367e-09,4.949096248440665537e-09,5.656109998217903707e-09,6.363123747995141877e-09,7.070137497772380048e-09,7.777151247549618218e-09,8.484164997326856388e-09,9.191178747104094558e-09,9.898192496881332728e-09,1.060520624665857090e-08,1.131221999643580907e-08,1.201923374621304724e-08,1.272624749599028541e-08,1.343326124576752358e-08,1.414027499554476175e-08,1.484728874532199992e-08,1.555430249509923974e-08,1.626131624487648122e-08,1.696832999465372270e-08,1.767534374443096418e-08,1.838235749420820566e-08,1.908937124398544714e-08,1.979638499376268862e-08,2.050339874353993010e-08,2.121041249331717158e-08,2.191742624309441305e-08,2.262443999287165453e-08,2.333145374264889601e-08,2.403846749242613749e-08,2.474548124220337897e-08,2.545249499198062045e-08,2.615950874175786193e-08,2.686652249153510341e-08,2.757353624131234489e-08,2.828054999108958637e-08,2.898756374086682784e-08,2.969457749064406932e-08,3.040159124042131080e-08,3.110860499019855228e-08,3.181561873997579376e-08,3.252263248975303524e-08,3.322964623953027672e-08,3.393665998930751820e-08,3.464367373908475968e-08,3.535068748886200115e-08,3.605770123863924263e-08,3.676471498841648411e-08,3.747172873819372559e-08,3.817874248797096707e-08,3.888575623774820855e-08,3.959276998752545003e-08,4.029978373730269151e-08,4.100679748707993299e-08,4.171381123685717446e-08,4.242082498663441594e-08,4.312783873641165742e-08,4.383485248618889890e-08,4.454186623596614038e-08 +0.000000000000000000e+00,7.151613858911692435e-10,1.430322771782338487e-09,2.145484157673507627e-09,2.860645543564676561e-09,3.575806929455845494e-09,4.290968315347014427e-09,5.006129701238183774e-09,5.721291087129353121e-09,6.436452473020522468e-09,7.151613858911691815e-09,7.866775244802861162e-09,8.581936630694030509e-09,9.297098016585199856e-09,1.001225940247636920e-08,1.072742078836753855e-08,1.144258217425870790e-08,1.215774356014987724e-08,1.287290494604104659e-08,1.358806633193221594e-08,1.430322771782338528e-08,1.501838910371455629e-08,1.573355048960572563e-08,1.644871187549689498e-08,1.716387326138806433e-08,1.787903464727923367e-08,1.859419603317040302e-08,1.930935741906157237e-08,2.002451880495274171e-08,2.073968019084391106e-08,2.145484157673508041e-08,2.217000296262624975e-08,2.288516434851741910e-08,2.360032573440858845e-08,2.431548712029975780e-08,2.503064850619092714e-08,2.574580989208209649e-08,2.646097127797326584e-08,2.717613266386443518e-08,2.789129404975560453e-08,2.860645543564677388e-08,2.932161682153794322e-08,3.003677820742911257e-08,3.075193959332028192e-08,3.146710097921145127e-08,3.218226236510262061e-08,3.289742375099378996e-08,3.361258513688495931e-08,3.432774652277612865e-08,3.504290790866729800e-08,3.575806929455846735e-08,3.647323068044963669e-08,3.718839206634080604e-08,3.790355345223197539e-08,3.861871483812314473e-08,3.933387622401431408e-08,4.004903760990548343e-08,4.076419899579665278e-08,4.147936038168782212e-08,4.219452176757899147e-08,4.290968315347016082e-08,4.362484453936133016e-08,4.434000592525249951e-08,4.505516731114366886e-08 +0.000000000000000000e+00,-6.984049450514141265e-10,-1.396809890102828253e-09,-2.095214835154242276e-09,-2.793619780205656092e-09,-3.492024725257069909e-09,-4.190429670308483725e-09,-4.888834615359897128e-09,-5.587239560411310531e-09,-6.285644505462723933e-09,-6.984049450514137336e-09,-7.682454395565550739e-09,-8.380859340616964142e-09,-9.079264285668377544e-09,-9.777669230719790947e-09,-1.047607417577120435e-08,-1.117447912082261775e-08,-1.187288406587403116e-08,-1.257128901092544456e-08,-1.326969395597685796e-08,-1.396809890102827136e-08,-1.466650384607968477e-08,-1.536490879113109817e-08,-1.606331373618251323e-08,-1.676171868123392828e-08,-1.746012362628534334e-08,-1.815852857133675840e-08,-1.885693351638817345e-08,-1.955533846143958851e-08,-2.025374340649100357e-08,-2.095214835154241863e-08,-2.165055329659383368e-08,-2.234895824164524874e-08,-2.304736318669666380e-08,-2.374576813174807885e-08,-2.444417307679949391e-08,-2.514257802185090897e-08,-2.584098296690232403e-08,-2.653938791195373908e-08,-2.723779285700515414e-08,-2.793619780205656920e-08,-2.863460274710798425e-08,-2.933300769215939931e-08,-3.003141263721081437e-08,-3.072981758226222943e-08,-3.142822252731364448e-08,-3.212662747236505954e-08,-3.282503241741647460e-08,-3.352343736246788965e-08,-3.422184230751930471e-08,-3.492024725257071977e-08,-3.561865219762213482e-08,-3.631705714267354988e-08,-3.701546208772496494e-08,-3.771386703277638000e-08,-3.841227197782779505e-08,-3.911067692287921011e-08,-3.980908186793062517e-08,-4.050748681298204022e-08,-4.120589175803345528e-08,-4.190429670308487034e-08,-4.260270164813628540e-08,-4.330110659318770045e-08,-4.399951153823911551e-08 +0.000000000000000000e+00,-7.070137497678042787e-10,-1.414027499535608557e-09,-2.121041249303412940e-09,-2.828054999071217528e-09,-3.535068748839022117e-09,-4.242082498606826706e-09,-4.949096248374631709e-09,-5.656109998142436711e-09,-6.363123747910241714e-09,-7.070137497678046716e-09,-7.777151247445851719e-09,-8.484164997213656721e-09,-9.191178746981461724e-09,-9.898192496749266726e-09,-1.060520624651707173e-08,-1.131221999628487673e-08,-1.201923374605268173e-08,-1.272624749582048674e-08,-1.343326124558829174e-08,-1.414027499535609674e-08,-1.484728874512390174e-08,-1.555430249489170675e-08,-1.626131624465951175e-08,-1.696832999442731675e-08,-1.767534374419512175e-08,-1.838235749396292676e-08,-1.908937124373073176e-08,-1.979638499349853676e-08,-2.050339874326634176e-08,-2.121041249303414677e-08,-2.191742624280195177e-08,-2.262443999256975677e-08,-2.333145374233756177e-08,-2.403846749210536678e-08,-2.474548124187317178e-08,-2.545249499164097678e-08,-2.615950874140878178e-08,-2.686652249117658679e-08,-2.757353624094439179e-08,-2.828054999071219679e-08,-2.898756374048000179e-08,-2.969457749024780680e-08,-3.040159124001560849e-08,-3.110860498978340687e-08,-3.181561873955120526e-08,-3.252263248931900365e-08,-3.322964623908680203e-08,-3.393665998885460042e-08,-3.464367373862239880e-08,-3.535068748839019719e-08,-3.605770123815799557e-08,-3.676471498792579396e-08,-3.747172873769359234e-08,-3.817874248746139073e-08,-3.888575623722918911e-08,-3.959276998699698750e-08,-4.029978373676478588e-08,-4.100679748653258427e-08,-4.171381123630038265e-08,-4.242082498606818104e-08,-4.312783873583597942e-08,-4.383485248560377781e-08,-4.454186623537157619e-08 +0.000000000000000000e+00,-7.151613858729474886e-10,-1.430322771745894977e-09,-2.145484157618842569e-09,-2.860645543491790368e-09,-3.575806929364738167e-09,-4.290968315237685966e-09,-5.006129701110634178e-09,-5.721291086983582390e-09,-6.436452472856530603e-09,-7.151613858729478815e-09,-7.866775244602427028e-09,-8.581936630475375240e-09,-9.297098016348323452e-09,-1.001225940222127166e-08,-1.072742078809421988e-08,-1.144258217396716809e-08,-1.215774355984011630e-08,-1.287290494571306451e-08,-1.358806633158601273e-08,-1.430322771745896094e-08,-1.501838910333190915e-08,-1.573355048920485736e-08,-1.644871187507780558e-08,-1.716387326095075379e-08,-1.787903464682370200e-08,-1.859419603269665021e-08,-1.930935741856959843e-08,-2.002451880444254664e-08,-2.073968019031549485e-08,-2.145484157618844306e-08,-2.217000296206139128e-08,-2.288516434793433949e-08,-2.360032573380728770e-08,-2.431548711968023591e-08,-2.503064850555318413e-08,-2.574580989142613234e-08,-2.646097127729908055e-08,-2.717613266317202876e-08,-2.789129404904497697e-08,-2.860645543491792519e-08,-2.932161682079087340e-08,-3.003677820666381830e-08,-3.075193959253676321e-08,-3.146710097840970811e-08,-3.218226236428265301e-08,-3.289742375015559792e-08,-3.361258513602854282e-08,-3.432774652190148773e-08,-3.504290790777443263e-08,-3.575806929364737753e-08,-3.647323067952032244e-08,-3.718839206539326734e-08,-3.790355345126621224e-08,-3.861871483713915715e-08,-3.933387622301210205e-08,-4.004903760888504695e-08,-4.076419899475799186e-08,-4.147936038063093676e-08,-4.219452176650388167e-08,-4.290968315237682657e-08,-4.362484453824977147e-08,-4.434000592412271638e-08,-4.505516730999566128e-08 +0.000000000000000000e+00,6.830910881267505118e-10,1.366182176253501024e-09,2.049273264380251329e-09,2.732364352507001634e-09,3.415455440633751938e-09,4.098546528760502657e-09,4.781637616887253376e-09,5.464728705014004094e-09,6.147819793140754813e-09,6.830910881267505531e-09,7.514001969394255423e-09,8.197093057521005314e-09,8.880184145647755206e-09,9.563275233774505097e-09,1.024636632190125499e-08,1.092945741002800488e-08,1.161254849815475477e-08,1.229563958628150466e-08,1.297873067440825455e-08,1.366182176253500445e-08,1.434491285066175434e-08,1.502800393878850423e-08,1.571109502691525412e-08,1.639418611504200401e-08,1.707727720316875390e-08,1.776036829129550379e-08,1.844345937942225368e-08,1.912655046754900358e-08,1.980964155567575347e-08,2.049273264380250336e-08,2.117582373192925325e-08,2.185891482005600314e-08,2.254200590818275303e-08,2.322509699630950292e-08,2.390818808443625282e-08,2.459127917256300271e-08,2.527437026068975260e-08,2.595746134881650249e-08,2.664055243694325238e-08,2.732364352507000227e-08,2.800673461319675216e-08,2.868982570132350206e-08,2.937291678945025195e-08,3.005600787757700184e-08,3.073909896570375173e-08,3.142219005383050162e-08,3.210528114195725151e-08,3.278837223008400140e-08,3.347146331821075130e-08,3.415455440633750119e-08,3.483764549446425108e-08,3.552073658259100097e-08,3.620382767071775086e-08,3.688691875884450075e-08,3.757000984697125064e-08,3.825310093509800054e-08,3.893619202322475043e-08,3.961928311135150032e-08,4.030237419947825021e-08,4.098546528760500010e-08,4.166855637573174999e-08,4.235164746385849988e-08,4.303473855198524977e-08 +0.000000000000000000e+00,6.903220629989724954e-10,1.380644125997944991e-09,2.070966188996917486e-09,2.761288251995889982e-09,3.451610314994862477e-09,4.141932377993834972e-09,4.832254440992807881e-09,5.522576503991780790e-09,6.212898566990753699e-09,6.903220629989726608e-09,7.593542692988699517e-09,8.283864755987671599e-09,8.974186818986643681e-09,9.664508881985615763e-09,1.035483094498458784e-08,1.104515300798355993e-08,1.173547507098253201e-08,1.242579713398150409e-08,1.311611919698047617e-08,1.380644125997944825e-08,1.449676332297842034e-08,1.518708538597739242e-08,1.587740744897636284e-08,1.656772951197533327e-08,1.725805157497430370e-08,1.794837363797327413e-08,1.863869570097224455e-08,1.932901776397121498e-08,2.001933982697018541e-08,2.070966188996915584e-08,2.139998395296812626e-08,2.209030601596709669e-08,2.278062807896606712e-08,2.347095014196503755e-08,2.416127220496400797e-08,2.485159426796297840e-08,2.554191633096194883e-08,2.623223839396091926e-08,2.692256045695988968e-08,2.761288251995886011e-08,2.830320458295783054e-08,2.899352664595680097e-08,2.968384870895577139e-08,3.037417077195473851e-08,3.106449283495370563e-08,3.175481489795267275e-08,3.244513696095163987e-08,3.313545902395060699e-08,3.382578108694957411e-08,3.451610314994854122e-08,3.520642521294750834e-08,3.589674727594647546e-08,3.658706933894544258e-08,3.727739140194440970e-08,3.796771346494337682e-08,3.865803552794234394e-08,3.934835759094131105e-08,4.003867965394027817e-08,4.072900171693924529e-08,4.141932377993821241e-08,4.210964584293717953e-08,4.279996790593614665e-08,4.349028996893511377e-08 +0.000000000000000000e+00,6.989956050549340266e-10,1.397991210109868053e-09,2.096986815164801873e-09,2.795982420219735693e-09,3.494978025274669513e-09,4.193973630329603746e-09,4.892969235384537980e-09,5.591964840439472213e-09,6.290960445494406447e-09,6.989956050549340680e-09,7.688951655604274913e-09,8.387947260659209147e-09,9.086942865714143380e-09,9.785938470769077614e-09,1.048493407582401185e-08,1.118392968087894608e-08,1.188292528593388031e-08,1.258192089098881455e-08,1.328091649604374878e-08,1.397991210109868301e-08,1.467890770615361725e-08,1.537790331120855314e-08,1.607689891626349068e-08,1.677589452131842822e-08,1.747489012637336576e-08,1.817388573142830330e-08,1.887288133648324085e-08,1.957187694153817839e-08,2.027087254659311593e-08,2.096986815164805347e-08,2.166886375670299101e-08,2.236785936175792856e-08,2.306685496681286610e-08,2.376585057186780364e-08,2.446484617692274118e-08,2.516384178197767873e-08,2.586283738703261627e-08,2.656183299208755381e-08,2.726082859714249135e-08,2.795982420219742889e-08,2.865881980725236644e-08,2.935781541230730398e-08,3.005681101736224152e-08,3.075580662241717906e-08,3.145480222747211661e-08,3.215379783252705415e-08,3.285279343758199169e-08,3.355178904263692923e-08,3.425078464769186677e-08,3.494978025274680432e-08,3.564877585780174186e-08,3.634777146285667940e-08,3.704676706791161694e-08,3.774576267296655448e-08,3.844475827802149203e-08,3.914375388307642957e-08,3.984274948813136711e-08,4.054174509318630465e-08,4.124074069824124220e-08,4.193973630329617974e-08,4.263873190835111728e-08,4.333772751340605482e-08,4.403672311846099236e-08 +0.000000000000000000e+00,-6.830910881091353904e-10,-1.366182176218270781e-09,-2.049273264327406068e-09,-2.732364352436541148e-09,-3.415455440545676228e-09,-4.098546528654811309e-09,-4.781637616763946389e-09,-5.464728704873081469e-09,-6.147819792982216549e-09,-6.830910881091351630e-09,-7.514001969200486710e-09,-8.197093057309620963e-09,-8.880184145418755216e-09,-9.563275233527889469e-09,-1.024636632163702372e-08,-1.092945740974615798e-08,-1.161254849785529223e-08,-1.229563958596442648e-08,-1.297873067407356073e-08,-1.366182176218269499e-08,-1.434491285029182924e-08,-1.502800393840096349e-08,-1.571109502651009775e-08,-1.639418611461923200e-08,-1.707727720272836625e-08,-1.776036829083750051e-08,-1.844345937894663476e-08,-1.912655046705576901e-08,-1.980964155516490327e-08,-2.049273264327403752e-08,-2.117582373138317177e-08,-2.185891481949230602e-08,-2.254200590760144028e-08,-2.322509699571057453e-08,-2.390818808381970878e-08,-2.459127917192884304e-08,-2.527437026003797729e-08,-2.595746134814711154e-08,-2.664055243625624580e-08,-2.732364352436538005e-08,-2.800673461247451430e-08,-2.868982570058364855e-08,-2.937291678869278281e-08,-3.005600787680192037e-08,-3.073909896491106124e-08,-3.142219005302020211e-08,-3.210528114112934298e-08,-3.278837222923848385e-08,-3.347146331734762472e-08,-3.415455440545676559e-08,-3.483764549356590646e-08,-3.552073658167504733e-08,-3.620382766978418820e-08,-3.688691875789332907e-08,-3.757000984600246995e-08,-3.825310093411161082e-08,-3.893619202222075169e-08,-3.961928311032989256e-08,-4.030237419843903343e-08,-4.098546528654817430e-08,-4.166855637465731517e-08,-4.235164746276645604e-08,-4.303473855087559691e-08 +0.000000000000000000e+00,-6.903220629843012064e-10,-1.380644125968602413e-09,-2.070966188952903619e-09,-2.761288251937204826e-09,-3.451610314921506032e-09,-4.141932377905807239e-09,-4.832254440890108445e-09,-5.522576503874409652e-09,-6.212898566858710858e-09,-6.903220629843012064e-09,-7.593542692827313271e-09,-8.283864755811614477e-09,-8.974186818795915684e-09,-9.664508881780216890e-09,-1.035483094476451810e-08,-1.104515300774881930e-08,-1.173547507073312051e-08,-1.242579713371742172e-08,-1.311611919670172292e-08,-1.380644125968602413e-08,-1.449676332267032534e-08,-1.518708538565462654e-08,-1.587740744863892609e-08,-1.656772951162322565e-08,-1.725805157460752520e-08,-1.794837363759182475e-08,-1.863869570057612430e-08,-1.932901776356042385e-08,-2.001933982654472341e-08,-2.070966188952902296e-08,-2.139998395251332251e-08,-2.209030601549762206e-08,-2.278062807848192161e-08,-2.347095014146622117e-08,-2.416127220445052072e-08,-2.485159426743482027e-08,-2.554191633041911982e-08,-2.623223839340341938e-08,-2.692256045638771893e-08,-2.761288251937201848e-08,-2.830320458235631803e-08,-2.899352664534061758e-08,-2.968384870832491714e-08,-3.037417077130922000e-08,-3.106449283429352286e-08,-3.175481489727782572e-08,-3.244513696026212858e-08,-3.313545902324643144e-08,-3.382578108623073430e-08,-3.451610314921503716e-08,-3.520642521219934002e-08,-3.589674727518364288e-08,-3.658706933816794574e-08,-3.727739140115224860e-08,-3.796771346413655147e-08,-3.865803552712085433e-08,-3.934835759010515719e-08,-4.003867965308946005e-08,-4.072900171607376291e-08,-4.141932377905806577e-08,-4.210964584204236863e-08,-4.279996790502667149e-08,-4.349028996801097435e-08 +0.000000000000000000e+00,-6.989956050283698450e-10,-1.397991210056739690e-09,-2.096986815085109639e-09,-2.795982420113479794e-09,-3.494978025141849949e-09,-4.193973630170220104e-09,-4.892969235198590259e-09,-5.591964840226960415e-09,-6.290960445255330570e-09,-6.989956050283700725e-09,-7.688951655312070053e-09,-8.387947260340438554e-09,-9.086942865368807055e-09,-9.785938470397175556e-09,-1.048493407542554406e-08,-1.118392968045391256e-08,-1.188292528548228106e-08,-1.258192089051064956e-08,-1.328091649553901806e-08,-1.397991210056738656e-08,-1.467890770559575506e-08,-1.537790331062412356e-08,-1.607689891565249206e-08,-1.677589452068086056e-08,-1.747489012570922907e-08,-1.817388573073759757e-08,-1.887288133576596607e-08,-1.957187694079433457e-08,-2.027087254582270307e-08,-2.096986815085107157e-08,-2.166886375587944007e-08,-2.236785936090780857e-08,-2.306685496593617707e-08,-2.376585057096454557e-08,-2.446484617599291407e-08,-2.516384178102128258e-08,-2.586283738604965108e-08,-2.656183299107801958e-08,-2.726082859610638808e-08,-2.795982420113475658e-08,-2.865881980616312508e-08,-2.935781541119149358e-08,-3.005681101621986539e-08,-3.075580662124824051e-08,-3.145480222627661563e-08,-3.215379783130499075e-08,-3.285279343633336586e-08,-3.355178904136174098e-08,-3.425078464639011610e-08,-3.494978025141849122e-08,-3.564877585644686634e-08,-3.634777146147524146e-08,-3.704676706650361657e-08,-3.774576267153199169e-08,-3.844475827656036681e-08,-3.914375388158874193e-08,-3.984274948661711705e-08,-4.054174509164549216e-08,-4.124074069667386728e-08,-4.193973630170224240e-08,-4.263873190673061752e-08,-4.333772751175899264e-08,-4.403672311678736776e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.844521663328576035e-10,1.368904332665715207e-09,2.053356498998572707e-09,2.737808665331430000e-09,3.422260831664287294e-09,4.106712997997144587e-09,4.791165164330001880e-09,5.475617330662859173e-09,6.160069496995716467e-09,6.844521663328573760e-09,7.528973829661431880e-09,8.213425995994290828e-09,8.897878162327149776e-09,9.582330328660008723e-09,1.026678249499286767e-08,1.095123466132572662e-08,1.163568682765858557e-08,1.232013899399144451e-08,1.300459116032430346e-08,1.368904332665716241e-08,1.437349549299002136e-08,1.505794765932288030e-08,1.574239982565573925e-08,1.642685199198859820e-08,1.711130415832145715e-08,1.779575632465431609e-08,1.848020849098717504e-08,1.916466065732003399e-08,1.984911282365289294e-08,2.053356498998575189e-08,2.121801715631861083e-08,2.190246932265146978e-08,2.258692148898432873e-08,2.327137365531718768e-08,2.395582582165004662e-08,2.464027798798290557e-08,2.532473015431576452e-08,2.600918232064862347e-08,2.669363448698148241e-08,2.737808665331434136e-08,2.806253881964720031e-08,2.874699098598005926e-08,2.943144315231291820e-08,3.011589531864578046e-08,3.080034748497863941e-08,3.148479965131149836e-08,3.216925181764435730e-08,3.285370398397721625e-08,3.353815615031007520e-08,3.422260831664293415e-08,3.490706048297579309e-08,3.559151264930865204e-08,3.627596481564151099e-08,3.696041698197436994e-08,3.764486914830722889e-08,3.832932131464008783e-08,3.901377348097294678e-08,3.969822564730580573e-08,4.038267781363866468e-08,4.106712997997152362e-08,4.175158214630438257e-08,4.243603431263724152e-08,4.312048647897010047e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.763057454999049307e-10,1.352611490999809861e-09,2.028917236499714689e-09,2.705222981999619309e-09,3.381528727499523930e-09,4.057834472999428550e-09,4.734140218499333171e-09,5.410445963999237791e-09,6.086751709499142412e-09,6.763057454999047032e-09,7.439363200498951653e-09,8.115668945998855446e-09,8.791974691498759240e-09,9.468280436998663033e-09,1.014458618249856683e-08,1.082089192799847062e-08,1.149719767349837441e-08,1.217350341899827821e-08,1.284980916449818200e-08,1.352611490999808579e-08,1.420242065549798959e-08,1.487872640099789338e-08,1.555503214649779552e-08,1.623133789199769766e-08,1.690764363749759980e-08,1.758394938299750194e-08,1.826025512849740407e-08,1.893656087399730621e-08,1.961286661949720835e-08,2.028917236499711049e-08,2.096547811049701263e-08,2.164178385599691477e-08,2.231808960149681691e-08,2.299439534699671905e-08,2.367070109249662119e-08,2.434700683799652333e-08,2.502331258349642546e-08,2.569961832899632760e-08,2.637592407449622974e-08,2.705222981999613188e-08,2.772853556549603402e-08,2.840484131099593616e-08,2.908114705649583830e-08,2.975745280199574044e-08,3.043375854749564258e-08,3.111006429299554472e-08,3.178637003849544685e-08,3.246267578399534899e-08,3.313898152949525113e-08,3.381528727499515327e-08,3.449159302049505541e-08,3.516789876599495755e-08,3.584420451149485969e-08,3.652051025699476183e-08,3.719681600249466397e-08,3.787312174799456611e-08,3.854942749349446824e-08,3.922573323899437038e-08,3.990203898449427252e-08,4.057834472999417466e-08,4.125465047549407680e-08,4.193095622099397894e-08,4.260726196649388108e-08 +0.000000000000000000e+00,6.994777046062617806e-10,1.398955409212523561e-09,2.098433113818785342e-09,2.797910818425047123e-09,3.497388523031308903e-09,4.196866227637570684e-09,4.896343932243832878e-09,5.595821636850095072e-09,6.295299341456357267e-09,6.994777046062619461e-09,7.694254750668881655e-09,8.393732455275143022e-09,9.093210159881404389e-09,9.792687864487665756e-09,1.049216556909392712e-08,1.119164327370018849e-08,1.189112097830644986e-08,1.259059868291271122e-08,1.329007638751897259e-08,1.398955409212523396e-08,1.468903179673149533e-08,1.538850950133775669e-08,1.608798720594401806e-08,1.678746491055027943e-08,1.748694261515654079e-08,1.818642031976280216e-08,1.888589802436906353e-08,1.958537572897532489e-08,2.028485343358158626e-08,2.098433113818784763e-08,2.168380884279410900e-08,2.238328654740037036e-08,2.308276425200663173e-08,2.378224195661289310e-08,2.448171966121915446e-08,2.518119736582541583e-08,2.588067507043167720e-08,2.658015277503793857e-08,2.727963047964419993e-08,2.797910818425046130e-08,2.867858588885672267e-08,2.937806359346298403e-08,3.007754129806924209e-08,3.077701900267550015e-08,3.147649670728175821e-08,3.217597441188801627e-08,3.287545211649427433e-08,3.357492982110053238e-08,3.427440752570679044e-08,3.497388523031304850e-08,3.567336293491930656e-08,3.637284063952556462e-08,3.707231834413182268e-08,3.777179604873808073e-08,3.847127375334433879e-08,3.917075145795059685e-08,3.987022916255685491e-08,4.056970686716311297e-08,4.126918457176937103e-08,4.196866227637562908e-08,4.266813998098188714e-08,4.336761768558814520e-08,4.406709539019440326e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.844521663329073377e-10,-1.368904332665814675e-09,-2.053356498998722013e-09,-2.737808665331629351e-09,-3.422260831664536689e-09,-4.106712997997444026e-09,-4.791165164330351777e-09,-5.475617330663259529e-09,-6.160069496996167280e-09,-6.844521663329075031e-09,-7.528973829661982783e-09,-8.213425995994889707e-09,-8.897878162327796631e-09,-9.582330328660703555e-09,-1.026678249499361048e-08,-1.095123466132651740e-08,-1.163568682765942433e-08,-1.232013899399233125e-08,-1.300459116032523818e-08,-1.368904332665814510e-08,-1.437349549299105202e-08,-1.505794765932395895e-08,-1.574239982565686753e-08,-1.642685199198977610e-08,-1.711130415832268468e-08,-1.779575632465559326e-08,-1.848020849098850184e-08,-1.916466065732141042e-08,-1.984911282365431900e-08,-2.053356498998722758e-08,-2.121801715632013615e-08,-2.190246932265304473e-08,-2.258692148898595331e-08,-2.327137365531886189e-08,-2.395582582165177047e-08,-2.464027798798467905e-08,-2.532473015431758762e-08,-2.600918232065049620e-08,-2.669363448698340478e-08,-2.737808665331631336e-08,-2.806253881964922194e-08,-2.874699098598213052e-08,-2.943144315231503910e-08,-3.011589531864795098e-08,-3.080034748498086287e-08,-3.148479965131377476e-08,-3.216925181764668664e-08,-3.285370398397959853e-08,-3.353815615031251042e-08,-3.422260831664542231e-08,-3.490706048297833419e-08,-3.559151264931124608e-08,-3.627596481564415797e-08,-3.696041698197706985e-08,-3.764486914830998174e-08,-3.832932131464289363e-08,-3.901377348097580552e-08,-3.969822564730871740e-08,-4.038267781364162929e-08,-4.106712997997454118e-08,-4.175158214630745307e-08,-4.243603431264036495e-08,-4.312048647897327684e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.763057454999218879e-10,-1.352611490999843776e-09,-2.028917236499765560e-09,-2.705222981999687138e-09,-3.381528727499608716e-09,-4.057834472999530294e-09,-4.734140218499452285e-09,-5.410445963999374276e-09,-6.086751709499296268e-09,-6.763057454999218259e-09,-7.439363200499140250e-09,-8.115668945999062241e-09,-8.791974691498984233e-09,-9.468280436998906224e-09,-1.014458618249882822e-08,-1.082089192799875021e-08,-1.149719767349867220e-08,-1.217350341899859419e-08,-1.284980916449851618e-08,-1.352611490999843817e-08,-1.420242065549836016e-08,-1.487872640099828215e-08,-1.555503214649820580e-08,-1.623133789199812779e-08,-1.690764363749804978e-08,-1.758394938299797177e-08,-1.826025512849789377e-08,-1.893656087399781576e-08,-1.961286661949773775e-08,-2.028917236499765974e-08,-2.096547811049758173e-08,-2.164178385599750372e-08,-2.231808960149742571e-08,-2.299439534699734770e-08,-2.367070109249726970e-08,-2.434700683799719169e-08,-2.502331258349711368e-08,-2.569961832899703567e-08,-2.637592407449695766e-08,-2.705222981999687965e-08,-2.772853556549680164e-08,-2.840484131099672364e-08,-2.908114705649664563e-08,-2.975745280199656762e-08,-3.043375854749648961e-08,-3.111006429299641160e-08,-3.178637003849633359e-08,-3.246267578399625558e-08,-3.313898152949617757e-08,-3.381528727499609957e-08,-3.449159302049602156e-08,-3.516789876599594355e-08,-3.584420451149586554e-08,-3.652051025699578753e-08,-3.719681600249570952e-08,-3.787312174799563151e-08,-3.854942749349555351e-08,-3.922573323899547550e-08,-3.990203898449539749e-08,-4.057834472999531948e-08,-4.125465047549524147e-08,-4.193095622099516346e-08,-4.260726196649508545e-08 +0.000000000000000000e+00,-6.994777046058157235e-10,-1.398955409211631447e-09,-2.098433113817447377e-09,-2.797910818423263308e-09,-3.497388523029079238e-09,-4.196866227634894755e-09,-4.896343932240710271e-09,-5.595821636846525788e-09,-6.295299341452341305e-09,-6.994777046058156821e-09,-7.694254750663971511e-09,-8.393732455269786200e-09,-9.093210159875600890e-09,-9.792687864481415579e-09,-1.049216556908723027e-08,-1.119164327369304496e-08,-1.189112097829885965e-08,-1.259059868290467434e-08,-1.329007638751048903e-08,-1.398955409211630372e-08,-1.468903179672211841e-08,-1.538850950132793310e-08,-1.608798720593374779e-08,-1.678746491053956247e-08,-1.748694261514537716e-08,-1.818642031975119185e-08,-1.888589802435700654e-08,-1.958537572896282123e-08,-2.028485343356863592e-08,-2.098433113817445061e-08,-2.168380884278026530e-08,-2.238328654738607999e-08,-2.308276425199189468e-08,-2.378224195659770937e-08,-2.448171966120352406e-08,-2.518119736580933875e-08,-2.588067507041515344e-08,-2.658015277502096813e-08,-2.727963047962678282e-08,-2.797910818423259751e-08,-2.867858588883841220e-08,-2.937806359344422689e-08,-3.007754129805003827e-08,-3.077701900265584634e-08,-3.147649670726165441e-08,-3.217597441186746248e-08,-3.287545211647327056e-08,-3.357492982107907863e-08,-3.427440752568488670e-08,-3.497388523029069477e-08,-3.567336293489650284e-08,-3.637284063950231092e-08,-3.707231834410811899e-08,-3.777179604871392706e-08,-3.847127375331973513e-08,-3.917075145792554320e-08,-3.987022916253135128e-08,-4.056970686713715935e-08,-4.126918457174296742e-08,-4.196866227634877549e-08,-4.266813998095458356e-08,-4.336761768556039164e-08,-4.406709539016619971e-08 +0.000000000000000000e+00,6.888369009220162656e-10,1.377673801844032531e-09,2.066510702766048900e-09,2.755347603688065476e-09,3.444184504610082052e-09,4.133021405532098628e-09,4.821858306454115204e-09,5.510695207376131780e-09,6.199532108298148355e-09,6.888369009220164931e-09,7.577205910142180680e-09,8.266042811064195601e-09,8.954879711986210523e-09,9.643716612908225444e-09,1.033255351383024037e-08,1.102139041475225529e-08,1.171022731567427021e-08,1.239906421659628513e-08,1.308790111751830005e-08,1.377673801844031497e-08,1.446557491936232989e-08,1.515441182028434482e-08,1.584324872120635974e-08,1.653208562212837466e-08,1.722092252305038958e-08,1.790975942397240450e-08,1.859859632489441942e-08,1.928743322581643435e-08,1.997627012673844927e-08,2.066510702766046419e-08,2.135394392858247911e-08,2.204278082950449403e-08,2.273161773042650895e-08,2.342045463134852387e-08,2.410929153227053880e-08,2.479812843319255372e-08,2.548696533411456864e-08,2.617580223503658356e-08,2.686463913595859848e-08,2.755347603688061340e-08,2.824231293780262832e-08,2.893114983872464325e-08,2.961998673964665817e-08,3.030882364056866978e-08,3.099766054149068139e-08,3.168649744241269301e-08,3.237533434333470462e-08,3.306417124425671623e-08,3.375300814517872784e-08,3.444184504610073946e-08,3.513068194702275107e-08,3.581951884794476268e-08,3.650835574886677429e-08,3.719719264978878591e-08,3.788602955071079752e-08,3.857486645163280913e-08,3.926370335255482075e-08,3.995254025347683236e-08,4.064137715439884397e-08,4.133021405532085558e-08,4.201905095624286720e-08,4.270788785716487881e-08,4.339672475808689042e-08 +0.000000000000000000e+00,6.943976584301006564e-10,1.388795316860201313e-09,2.083192975290301762e-09,2.777590633720402212e-09,3.471988292150502662e-09,4.166385950580603525e-09,4.860783609010704388e-09,5.555181267440805251e-09,6.249578925870906114e-09,6.943976584301006978e-09,7.638374242731107014e-09,8.332771901161207050e-09,9.027169559591307086e-09,9.721567218021407122e-09,1.041596487645150716e-08,1.111036253488160719e-08,1.180476019331170723e-08,1.249915785174180727e-08,1.319355551017190730e-08,1.388795316860200734e-08,1.458235082703210737e-08,1.527674848546220741e-08,1.597114614389230745e-08,1.666554380232240748e-08,1.735994146075250752e-08,1.805433911918260755e-08,1.874873677761270759e-08,1.944313443604280763e-08,2.013753209447290766e-08,2.083192975290300770e-08,2.152632741133310773e-08,2.222072506976320777e-08,2.291512272819330781e-08,2.360952038662340784e-08,2.430391804505350788e-08,2.499831570348360791e-08,2.569271336191370795e-08,2.638711102034380799e-08,2.708150867877390802e-08,2.777590633720400806e-08,2.847030399563410809e-08,2.916470165406420813e-08,2.985909931249430817e-08,3.055349697092440820e-08,3.124789462935450824e-08,3.194229228778460827e-08,3.263668994621470831e-08,3.333108760464480835e-08,3.402548526307490838e-08,3.471988292150500842e-08,3.541428057993510845e-08,3.610867823836520849e-08,3.680307589679530853e-08,3.749747355522540856e-08,3.819187121365550860e-08,3.888626887208560863e-08,3.958066653051570867e-08,4.027506418894580871e-08,4.096946184737590874e-08,4.166385950580600878e-08,4.235825716423610881e-08,4.305265482266620885e-08,4.374705248109630889e-08 +0.000000000000000000e+00,7.064029843338598940e-10,1.412805968667719788e-09,2.119208953001579785e-09,2.825611937335439989e-09,3.532014921669300194e-09,4.238417906003160398e-09,4.944820890337020602e-09,5.651223874670880806e-09,6.357626859004741010e-09,7.064029843338601214e-09,7.770432827672462246e-09,8.476835812006322450e-09,9.183238796340182654e-09,9.889641780674042858e-09,1.059604476500790306e-08,1.130244774934176327e-08,1.200885073367562347e-08,1.271525371800948367e-08,1.342165670234334388e-08,1.412805968667720408e-08,1.483446267101106429e-08,1.554086565534492449e-08,1.624726863967878470e-08,1.695367162401264490e-08,1.766007460834650510e-08,1.836647759268036531e-08,1.907288057701422551e-08,1.977928356134808572e-08,2.048568654568194592e-08,2.119208953001580612e-08,2.189849251434966633e-08,2.260489549868352653e-08,2.331129848301738674e-08,2.401770146735124694e-08,2.472410445168510715e-08,2.543050743601896735e-08,2.613691042035282755e-08,2.684331340468668776e-08,2.754971638902054796e-08,2.825611937335440817e-08,2.896252235768826837e-08,2.966892534202212857e-08,3.037532832635598878e-08,3.108173131068984898e-08,3.178813429502370919e-08,3.249453727935756939e-08,3.320094026369142959e-08,3.390734324802528980e-08,3.461374623235915000e-08,3.532014921669301021e-08,3.602655220102687041e-08,3.673295518536073062e-08,3.743935816969459082e-08,3.814576115402845102e-08,3.885216413836231123e-08,3.955856712269617143e-08,4.026497010703003164e-08,4.097137309136389184e-08,4.167777607569775204e-08,4.238417906003161225e-08,4.309058204436547245e-08,4.379698502869933266e-08,4.450338801303319286e-08 +0.000000000000000000e+00,-6.888369009221072555e-10,-1.377673801844214511e-09,-2.066510702766321870e-09,-2.755347603688429436e-09,-3.444184504610537001e-09,-4.133021405532644567e-09,-4.821858306454752133e-09,-5.510695207376859698e-09,-6.199532108298967264e-09,-6.888369009221074830e-09,-7.577205910143183223e-09,-8.266042811065290788e-09,-8.954879711987398354e-09,-9.643716612909505920e-09,-1.033255351383161349e-08,-1.102139041475372105e-08,-1.171022731567582862e-08,-1.239906421659793618e-08,-1.308790111752004375e-08,-1.377673801844215131e-08,-1.446557491936425888e-08,-1.515441182028636645e-08,-1.584324872120847401e-08,-1.653208562213058158e-08,-1.722092252305268914e-08,-1.790975942397479671e-08,-1.859859632489690427e-08,-1.928743322581901184e-08,-1.997627012674111941e-08,-2.066510702766322697e-08,-2.135394392858533454e-08,-2.204278082950744210e-08,-2.273161773042954967e-08,-2.342045463135165723e-08,-2.410929153227376480e-08,-2.479812843319587237e-08,-2.548696533411797993e-08,-2.617580223504008750e-08,-2.686463913596219506e-08,-2.755347603688430263e-08,-2.824231293780641019e-08,-2.893114983872851776e-08,-2.961998673965062533e-08,-3.030882364057273289e-08,-3.099766054149484377e-08,-3.168649744241695464e-08,-3.237533434333906551e-08,-3.306417124426117639e-08,-3.375300814518328726e-08,-3.444184504610539814e-08,-3.513068194702750901e-08,-3.581951884794961989e-08,-3.650835574887173076e-08,-3.719719264979384164e-08,-3.788602955071595251e-08,-3.857486645163806338e-08,-3.926370335256017426e-08,-3.995254025348228513e-08,-4.064137715440439601e-08,-4.133021405532650688e-08,-4.201905095624861776e-08,-4.270788785717072863e-08,-4.339672475809283951e-08 +0.000000000000000000e+00,-6.943976584301594896e-10,-1.388795316860318979e-09,-2.083192975290478365e-09,-2.777590633720637545e-09,-3.471988292150796724e-09,-4.166385950580955904e-09,-4.860783609011115497e-09,-5.555181267441275090e-09,-6.249578925871434683e-09,-6.943976584301594276e-09,-7.638374242731753869e-09,-8.332771901161913462e-09,-9.027169559592073055e-09,-9.721567218022232648e-09,-1.041596487645239224e-08,-1.111036253488255183e-08,-1.180476019331271143e-08,-1.249915785174287102e-08,-1.319355551017303061e-08,-1.388795316860319021e-08,-1.458235082703334980e-08,-1.527674848546351105e-08,-1.597114614389367064e-08,-1.666554380232383023e-08,-1.735994146075398983e-08,-1.805433911918414942e-08,-1.874873677761430901e-08,-1.944313443604446860e-08,-2.013753209447462820e-08,-2.083192975290478779e-08,-2.152632741133494738e-08,-2.222072506976510698e-08,-2.291512272819526657e-08,-2.360952038662542616e-08,-2.430391804505558576e-08,-2.499831570348574535e-08,-2.569271336191590494e-08,-2.638711102034606453e-08,-2.708150867877622413e-08,-2.777590633720638372e-08,-2.847030399563654331e-08,-2.916470165406670291e-08,-2.985909931249686250e-08,-3.055349697092702209e-08,-3.124789462935718169e-08,-3.194229228778734128e-08,-3.263668994621750087e-08,-3.333108760464766046e-08,-3.402548526307782006e-08,-3.471988292150797965e-08,-3.541428057993813924e-08,-3.610867823836829884e-08,-3.680307589679845843e-08,-3.749747355522861802e-08,-3.819187121365877762e-08,-3.888626887208893721e-08,-3.958066653051909680e-08,-4.027506418894925639e-08,-4.096946184737941599e-08,-4.166385950580957558e-08,-4.235825716423973517e-08,-4.305265482266989477e-08,-4.374705248110005436e-08 +0.000000000000000000e+00,-7.064029843322777042e-10,-1.412805968664555408e-09,-2.119208952996833009e-09,-2.825611937329110403e-09,-3.532014921661387797e-09,-4.238417905993665191e-09,-4.944820890325942172e-09,-5.651223874658219152e-09,-6.357626858990496133e-09,-7.064029843322773113e-09,-7.770432827655050094e-09,-8.476835811987327074e-09,-9.183238796319604055e-09,-9.889641780651881035e-09,-1.059604476498415802e-08,-1.130244774931643500e-08,-1.200885073364871198e-08,-1.271525371798098896e-08,-1.342165670231326594e-08,-1.412805968664554292e-08,-1.483446267097781990e-08,-1.554086565531009688e-08,-1.624726863964237551e-08,-1.695367162397465415e-08,-1.766007460830693278e-08,-1.836647759263921142e-08,-1.907288057697149005e-08,-1.977928356130376869e-08,-2.048568654563604732e-08,-2.119208952996832596e-08,-2.189849251430060459e-08,-2.260489549863288323e-08,-2.331129848296516186e-08,-2.401770146729744050e-08,-2.472410445162971913e-08,-2.543050743596199777e-08,-2.613691042029427640e-08,-2.684331340462655504e-08,-2.754971638895883367e-08,-2.825611937329111231e-08,-2.896252235762339094e-08,-2.966892534195566958e-08,-3.037532832628794821e-08,-3.108173131062022684e-08,-3.178813429495250548e-08,-3.249453727928478411e-08,-3.320094026361706275e-08,-3.390734324794934138e-08,-3.461374623228162002e-08,-3.532014921661389865e-08,-3.602655220094617729e-08,-3.673295518527845592e-08,-3.743935816961073456e-08,-3.814576115394301319e-08,-3.885216413827529183e-08,-3.955856712260757046e-08,-4.026497010693984910e-08,-4.097137309127212773e-08,-4.167777607560440637e-08,-4.238417905993668500e-08,-4.309058204426896364e-08,-4.379698502860124227e-08,-4.450338801293352091e-08 +0.000000000000000000e+00,6.773211886969369225e-10,1.354642377393873845e-09,2.031963566090810664e-09,2.709284754787747276e-09,3.386605943484683889e-09,4.063927132181620501e-09,4.741248320878557113e-09,5.418569509575493725e-09,6.095890698272430338e-09,6.773211886969366950e-09,7.450533075666303562e-09,8.127854264363239347e-09,8.805175453060175132e-09,9.482496641757110917e-09,1.015981783045404670e-08,1.083713901915098249e-08,1.151446020784791827e-08,1.219178139654485406e-08,1.286910258524178984e-08,1.354642377393872563e-08,1.422374496263566141e-08,1.490106615133259720e-08,1.557838734002953464e-08,1.625570852872647208e-08,1.693302971742340952e-08,1.761035090612034696e-08,1.828767209481728440e-08,1.896499328351422183e-08,1.964231447221115927e-08,2.031963566090809671e-08,2.099695684960503415e-08,2.167427803830197159e-08,2.235159922699890903e-08,2.302892041569584647e-08,2.370624160439278391e-08,2.438356279308972135e-08,2.506088398178665879e-08,2.573820517048359623e-08,2.641552635918053367e-08,2.709284754787747111e-08,2.777016873657440855e-08,2.844748992527134599e-08,2.912481111396828343e-08,2.980213230266522087e-08,3.047945349136215831e-08,3.115677468005909574e-08,3.183409586875603318e-08,3.251141705745297062e-08,3.318873824614990806e-08,3.386605943484684550e-08,3.454338062354378294e-08,3.522070181224072038e-08,3.589802300093765782e-08,3.657534418963459526e-08,3.725266537833153270e-08,3.792998656702847014e-08,3.860730775572540758e-08,3.928462894442234502e-08,3.996195013311928246e-08,4.063927132181621990e-08,4.131659251051315734e-08,4.199391369921009478e-08,4.267123488790703222e-08 +0.000000000000000000e+00,6.826964342928044901e-10,1.365392868585608980e-09,2.048089302878413470e-09,2.730785737171217960e-09,3.413482171464022451e-09,4.096178605756826941e-09,4.778875040049631017e-09,5.461571474342435094e-09,6.144267908635239170e-09,6.826964342928043247e-09,7.509660777220847323e-09,8.192357211513652227e-09,8.875053645806457131e-09,9.557750080099262034e-09,1.024044651439206694e-08,1.092314294868487184e-08,1.160583938297767675e-08,1.228853581727048165e-08,1.297123225156328655e-08,1.365392868585609146e-08,1.433662512014889636e-08,1.501932155444170126e-08,1.570201798873450451e-08,1.638471442302730776e-08,1.706741085732011101e-08,1.775010729161291426e-08,1.843280372590571751e-08,1.911550016019852076e-08,1.979819659449132401e-08,2.048089302878412726e-08,2.116358946307693051e-08,2.184628589736973376e-08,2.252898233166253701e-08,2.321167876595534026e-08,2.389437520024814351e-08,2.457707163454094675e-08,2.525976806883375000e-08,2.594246450312655325e-08,2.662516093741935650e-08,2.730785737171215975e-08,2.799055380600496300e-08,2.867325024029776625e-08,2.935594667459056950e-08,3.003864310888336944e-08,3.072133954317616938e-08,3.140403597746896932e-08,3.208673241176176926e-08,3.276942884605456920e-08,3.345212528034736914e-08,3.413482171464016908e-08,3.481751814893296903e-08,3.550021458322576897e-08,3.618291101751856891e-08,3.686560745181136885e-08,3.754830388610416879e-08,3.823100032039696873e-08,3.891369675468976867e-08,3.959639318898256861e-08,4.027908962327536855e-08,4.096178605756816849e-08,4.164448249186096843e-08,4.232717892615376837e-08,4.300987536044656831e-08 +0.000000000000000000e+00,6.917737207571224549e-10,1.383547441514244910e-09,2.075321162271367261e-09,2.767094883028489406e-09,3.458868603785611551e-09,4.150642324542733696e-09,4.842416045299856254e-09,5.534189766056978812e-09,6.225963486814101371e-09,6.917737207571223929e-09,7.609510928328346487e-09,8.301284649085469046e-09,8.993058369842591604e-09,9.684832090599714162e-09,1.037660581135683672e-08,1.106837953211395928e-08,1.176015325287108184e-08,1.245192697362820440e-08,1.314370069438532695e-08,1.383547441514244951e-08,1.452724813589957207e-08,1.521902185665669297e-08,1.591079557741381388e-08,1.660256929817093478e-08,1.729434301892805569e-08,1.798611673968517659e-08,1.867789046044229749e-08,1.936966418119941840e-08,2.006143790195653930e-08,2.075321162271366021e-08,2.144498534347078111e-08,2.213675906422790201e-08,2.282853278498502292e-08,2.352030650574214382e-08,2.421208022649926473e-08,2.490385394725638563e-08,2.559562766801350653e-08,2.628740138877062744e-08,2.697917510952774834e-08,2.767094883028486925e-08,2.836272255104199015e-08,2.905449627179911105e-08,2.974626999255623196e-08,3.043804371331335286e-08,3.112981743407047708e-08,3.182159115482760129e-08,3.251336487558472550e-08,3.320513859634184971e-08,3.389691231709897393e-08,3.458868603785609814e-08,3.528045975861322235e-08,3.597223347937034656e-08,3.666400720012747078e-08,3.735578092088459499e-08,3.804755464164171920e-08,3.873932836239884341e-08,3.943110208315596763e-08,4.012287580391309184e-08,4.081464952467021605e-08,4.150642324542734027e-08,4.219819696618446448e-08,4.288997068694158869e-08,4.358174440769871290e-08 +0.000000000000000000e+00,-6.773211886970535549e-10,-1.354642377394107110e-09,-2.031963566091160561e-09,-2.709284754788213806e-09,-3.386605943485267051e-09,-4.063927132182320296e-09,-4.741248320879373540e-09,-5.418569509576426785e-09,-6.095890698273480030e-09,-6.773211886970533275e-09,-7.450533075667586519e-09,-8.127854264364638937e-09,-8.805175453061692182e-09,-9.482496641758745426e-09,-1.015981783045579867e-08,-1.083713901915285192e-08,-1.151446020784990516e-08,-1.219178139654695841e-08,-1.286910258524401165e-08,-1.354642377394106489e-08,-1.422374496263811814e-08,-1.490106615133517138e-08,-1.557838734003222463e-08,-1.625570852872927787e-08,-1.693302971742633112e-08,-1.761035090612338436e-08,-1.828767209482043761e-08,-1.896499328351749085e-08,-1.964231447221454410e-08,-2.031963566091159734e-08,-2.099695684960865059e-08,-2.167427803830570383e-08,-2.235159922700275708e-08,-2.302892041569981032e-08,-2.370624160439686357e-08,-2.438356279309391681e-08,-2.506088398179097006e-08,-2.573820517048802330e-08,-2.641552635918507654e-08,-2.709284754788212979e-08,-2.777016873657918303e-08,-2.844748992527623628e-08,-2.912481111397328952e-08,-2.980213230267034277e-08,-3.047945349136739270e-08,-3.115677468006444264e-08,-3.183409586876149258e-08,-3.251141705745854251e-08,-3.318873824615559245e-08,-3.386605943485264238e-08,-3.454338062354969232e-08,-3.522070181224674226e-08,-3.589802300094379219e-08,-3.657534418964084213e-08,-3.725266537833789206e-08,-3.792998656703494200e-08,-3.860730775573199194e-08,-3.928462894442904187e-08,-3.996195013312609181e-08,-4.063927132182314174e-08,-4.131659251052019168e-08,-4.199391369921724162e-08,-4.267123488791429155e-08 +0.000000000000000000e+00,-6.826964342929337371e-10,-1.365392868585867474e-09,-2.048089302878801004e-09,-2.730785737171734535e-09,-3.413482171464668065e-09,-4.096178605757602009e-09,-4.778875040050535953e-09,-5.461571474343469897e-09,-6.144267908636403841e-09,-6.826964342929337784e-09,-7.509660777222271728e-09,-8.192357211515205672e-09,-8.875053645808139616e-09,-9.557750080101073560e-09,-1.024044651439400750e-08,-1.092314294868694145e-08,-1.160583938297987539e-08,-1.228853581727280934e-08,-1.297123225156574328e-08,-1.365392868585867722e-08,-1.433662512015161117e-08,-1.501932155444454346e-08,-1.570201798873747575e-08,-1.638471442303040804e-08,-1.706741085732334033e-08,-1.775010729161627261e-08,-1.843280372590920490e-08,-1.911550016020213719e-08,-1.979819659449506948e-08,-2.048089302878800177e-08,-2.116358946308093406e-08,-2.184628589737386635e-08,-2.252898233166679864e-08,-2.321167876595973093e-08,-2.389437520025266322e-08,-2.457707163454559551e-08,-2.525976806883852780e-08,-2.594246450313146009e-08,-2.662516093742439238e-08,-2.730785737171732467e-08,-2.799055380601025696e-08,-2.867325024030318925e-08,-2.935594667459612154e-08,-3.003864310888905383e-08,-3.072133954318198612e-08,-3.140403597747491840e-08,-3.208673241176785069e-08,-3.276942884606078298e-08,-3.345212528035371527e-08,-3.413482171464664756e-08,-3.481751814893957985e-08,-3.550021458323251214e-08,-3.618291101752544443e-08,-3.686560745181837672e-08,-3.754830388611130901e-08,-3.823100032040424130e-08,-3.891369675469717359e-08,-3.959639318899010588e-08,-4.027908962328303817e-08,-4.096178605757597046e-08,-4.164448249186890275e-08,-4.232717892616183504e-08,-4.300987536045476733e-08 +0.000000000000000000e+00,-6.917737207537804385e-10,-1.383547441507560877e-09,-2.075321162261341419e-09,-2.767094883015122167e-09,-3.458868603768902916e-09,-4.150642324522683665e-09,-4.842416045276464413e-09,-5.534189766030245162e-09,-6.225963486784025911e-09,-6.917737207537806659e-09,-7.609510928291586581e-09,-8.301284649045365675e-09,-8.993058369799144770e-09,-9.684832090552923864e-09,-1.037660581130670296e-08,-1.106837953206048205e-08,-1.176015325281426115e-08,-1.245192697356804024e-08,-1.314370069432181934e-08,-1.383547441507559843e-08,-1.452724813582937752e-08,-1.521902185658315662e-08,-1.591079557733693571e-08,-1.660256929809071481e-08,-1.729434301884449390e-08,-1.798611673959827300e-08,-1.867789046035205209e-08,-1.936966418110583118e-08,-2.006143790185961028e-08,-2.075321162261338937e-08,-2.144498534336716847e-08,-2.213675906412094756e-08,-2.282853278487472666e-08,-2.352030650562850575e-08,-2.421208022638228484e-08,-2.490385394713606394e-08,-2.559562766788984303e-08,-2.628740138864362213e-08,-2.697917510939740122e-08,-2.767094883015118032e-08,-2.836272255090495941e-08,-2.905449627165873850e-08,-2.974626999241251760e-08,-3.043804371316629338e-08,-3.112981743392006917e-08,-3.182159115467384496e-08,-3.251336487542762074e-08,-3.320513859618139653e-08,-3.389691231693517231e-08,-3.458868603768894810e-08,-3.528045975844272388e-08,-3.597223347919649967e-08,-3.666400719995027545e-08,-3.735578092070405124e-08,-3.804755464145782703e-08,-3.873932836221160281e-08,-3.943110208296537860e-08,-4.012287580371915438e-08,-4.081464952447293017e-08,-4.150642324522670595e-08,-4.219819696598048174e-08,-4.288997068673425752e-08,-4.358174440748803331e-08 +0.000000000000000000e+00,6.630303559612896104e-10,1.326060711922579221e-09,1.989091067883868728e-09,2.652121423845158028e-09,3.315151779806447328e-09,3.978182135767736628e-09,4.641212491729025928e-09,5.304242847690315229e-09,5.967273203651604529e-09,6.630303559612893829e-09,7.293333915574183129e-09,7.956364271535471602e-09,8.619394627496760075e-09,9.282424983458048548e-09,9.945455339419337021e-09,1.060848569538062549e-08,1.127151605134191397e-08,1.193454640730320244e-08,1.259757676326449091e-08,1.326060711922577939e-08,1.392363747518706786e-08,1.458666783114835633e-08,1.524969818710964481e-08,1.591272854307093328e-08,1.657575889903222175e-08,1.723878925499351022e-08,1.790181961095479870e-08,1.856484996691608717e-08,1.922788032287737564e-08,1.989091067883866412e-08,2.055394103479995259e-08,2.121697139076124106e-08,2.188000174672252953e-08,2.254303210268381801e-08,2.320606245864510648e-08,2.386909281460639495e-08,2.453212317056768343e-08,2.519515352652897190e-08,2.585818388249026037e-08,2.652121423845154885e-08,2.718424459441283732e-08,2.784727495037412579e-08,2.851030530633541426e-08,2.917333566229670274e-08,2.983636601825798790e-08,3.049939637421926976e-08,3.116242673018055161e-08,3.182545708614183347e-08,3.248848744210311532e-08,3.315151779806439718e-08,3.381454815402567904e-08,3.447757850998696089e-08,3.514060886594824275e-08,3.580363922190952460e-08,3.646666957787080646e-08,3.712969993383208831e-08,3.779273028979337017e-08,3.845576064575465202e-08,3.911879100171593388e-08,3.978182135767721574e-08,4.044485171363849759e-08,4.110788206959977945e-08,4.177091242556106130e-08 +0.000000000000000000e+00,6.705985851389574963e-10,1.341197170277914993e-09,2.011795755416872386e-09,2.682394340555829572e-09,3.352992925694786758e-09,4.023591510833743944e-09,4.694190095972700717e-09,5.364788681111657489e-09,6.035387266250614262e-09,6.705985851389571034e-09,7.376584436528527807e-09,8.047183021667484579e-09,8.717781606806441352e-09,9.388380191945398124e-09,1.005897877708435490e-08,1.072957736222331167e-08,1.140017594736226844e-08,1.207077453250122521e-08,1.274137311764018199e-08,1.341197170277913876e-08,1.408257028791809553e-08,1.475316887305705230e-08,1.542376745819600908e-08,1.609436604333496585e-08,1.676496462847392262e-08,1.743556321361287939e-08,1.810616179875183617e-08,1.877676038389079294e-08,1.944735896902974971e-08,2.011795755416870649e-08,2.078855613930766326e-08,2.145915472444662003e-08,2.212975330958557680e-08,2.280035189472453358e-08,2.347095047986349035e-08,2.414154906500244712e-08,2.481214765014140389e-08,2.548274623528036067e-08,2.615334482041931744e-08,2.682394340555827421e-08,2.749454199069723098e-08,2.816514057583618776e-08,2.883573916097514453e-08,2.950633774611410130e-08,3.017693633125305807e-08,3.084753491639201815e-08,3.151813350153097824e-08,3.218873208666993832e-08,3.285933067180889840e-08,3.352992925694785848e-08,3.420052784208681856e-08,3.487112642722577864e-08,3.554172501236473872e-08,3.621232359750369880e-08,3.688292218264265889e-08,3.755352076778161897e-08,3.822411935292057905e-08,3.889471793805953913e-08,3.956531652319849921e-08,4.023591510833745929e-08,4.090651369347641937e-08,4.157711227861537945e-08,4.224771086375433954e-08 +0.000000000000000000e+00,6.774339556381860200e-10,1.354867911276372040e-09,2.032301866914557957e-09,2.709735822552743666e-09,3.387169778190929376e-09,4.064603733829115086e-09,4.742037689467300796e-09,5.419471645105486506e-09,6.096905600743672216e-09,6.774339556381857925e-09,7.451773512020044462e-09,8.129207467658231827e-09,8.806641423296419191e-09,9.484075378934606555e-09,1.016150933457279392e-08,1.083894329021098128e-08,1.151637724584916865e-08,1.219381120148735601e-08,1.287124515712554338e-08,1.354867911276373074e-08,1.422611306840191810e-08,1.490354702404010547e-08,1.558098097967829283e-08,1.625841493531648020e-08,1.693584889095466756e-08,1.761328284659285493e-08,1.829071680223104229e-08,1.896815075786922965e-08,1.964558471350741702e-08,2.032301866914560438e-08,2.100045262478379175e-08,2.167788658042197911e-08,2.235532053606016647e-08,2.303275449169835384e-08,2.371018844733654120e-08,2.438762240297472857e-08,2.506505635861291593e-08,2.574249031425110330e-08,2.641992426988929066e-08,2.709735822552747802e-08,2.777479218116566539e-08,2.845222613680385275e-08,2.912966009244204012e-08,2.980709404808023079e-08,3.048452800371842146e-08,3.116196195935661214e-08,3.183939591499480281e-08,3.251682987063299348e-08,3.319426382627118415e-08,3.387169778190937483e-08,3.454913173754756550e-08,3.522656569318575617e-08,3.590399964882394685e-08,3.658143360446213752e-08,3.725886756010032819e-08,3.793630151573851886e-08,3.861373547137670954e-08,3.929116942701490021e-08,3.996860338265309088e-08,4.064603733829128156e-08,4.132347129392947223e-08,4.200090524956766290e-08,4.267833920520585357e-08 +0.000000000000000000e+00,-6.630303559612979856e-10,-1.326060711922595971e-09,-1.989091067883893957e-09,-2.652121423845191942e-09,-3.315151779806489928e-09,-3.978182135767787913e-09,-4.641212491729085485e-09,-5.304242847690383057e-09,-5.967273203651680629e-09,-6.630303559612978201e-09,-7.293333915574275773e-09,-7.956364271535574172e-09,-8.619394627496872572e-09,-9.282424983458170971e-09,-9.945455339419469370e-09,-1.060848569538076777e-08,-1.127151605134206617e-08,-1.193454640730336457e-08,-1.259757676326466297e-08,-1.326060711922596137e-08,-1.392363747518725976e-08,-1.458666783114855816e-08,-1.524969818710985656e-08,-1.591272854307115496e-08,-1.657575889903245336e-08,-1.723878925499375176e-08,-1.790181961095505016e-08,-1.856484996691634856e-08,-1.922788032287764696e-08,-1.989091067883894536e-08,-2.055394103480024376e-08,-2.121697139076154216e-08,-2.188000174672284055e-08,-2.254303210268413895e-08,-2.320606245864543735e-08,-2.386909281460673575e-08,-2.453212317056803415e-08,-2.519515352652933255e-08,-2.585818388249063095e-08,-2.652121423845192935e-08,-2.718424459441322775e-08,-2.784727495037452615e-08,-2.851030530633582455e-08,-2.917333566229712295e-08,-2.983636601825842465e-08,-3.049939637421972636e-08,-3.116242673018102807e-08,-3.182545708614232978e-08,-3.248848744210363149e-08,-3.315151779806493319e-08,-3.381454815402623490e-08,-3.447757850998753661e-08,-3.514060886594883832e-08,-3.580363922191014002e-08,-3.646666957787144173e-08,-3.712969993383274344e-08,-3.779273028979404515e-08,-3.845576064575534686e-08,-3.911879100171664856e-08,-3.978182135767795027e-08,-4.044485171363925198e-08,-4.110788206960055369e-08,-4.177091242556185540e-08 +0.000000000000000000e+00,-6.705985851390308052e-10,-1.341197170278061610e-09,-2.011795755417092416e-09,-2.682394340556123221e-09,-3.352992925695154026e-09,-4.023591510834184831e-09,-4.694190095973215223e-09,-5.364788681112245615e-09,-6.035387266251276006e-09,-6.705985851390306398e-09,-7.376584436529336789e-09,-8.047183021668368008e-09,-8.717781606807399227e-09,-9.388380191946430446e-09,-1.005897877708546166e-08,-1.072957736222449288e-08,-1.140017594736352410e-08,-1.207077453250255532e-08,-1.274137311764158654e-08,-1.341197170278061776e-08,-1.408257028791964898e-08,-1.475316887305868020e-08,-1.542376745819770976e-08,-1.609436604333673933e-08,-1.676496462847576889e-08,-1.743556321361479845e-08,-1.810616179875382802e-08,-1.877676038389285758e-08,-1.944735896903188715e-08,-2.011795755417091671e-08,-2.078855613930994628e-08,-2.145915472444897584e-08,-2.212975330958800541e-08,-2.280035189472703497e-08,-2.347095047986606453e-08,-2.414154906500509410e-08,-2.481214765014412366e-08,-2.548274623528315323e-08,-2.615334482042218279e-08,-2.682394340556121236e-08,-2.749454199070024192e-08,-2.816514057583927149e-08,-2.883573916097830105e-08,-2.950633774611733061e-08,-3.017693633125636018e-08,-3.084753491639539305e-08,-3.151813350153442592e-08,-3.218873208667345880e-08,-3.285933067181249167e-08,-3.352992925695152454e-08,-3.420052784209055742e-08,-3.487112642722959029e-08,-3.554172501236862316e-08,-3.621232359750765604e-08,-3.688292218264668891e-08,-3.755352076778572178e-08,-3.822411935292475466e-08,-3.889471793806378753e-08,-3.956531652320282040e-08,-4.023591510834185328e-08,-4.090651369348088615e-08,-4.157711227861991902e-08,-4.224771086375895190e-08 +0.000000000000000000e+00,-6.774339556324749583e-10,-1.354867911264949917e-09,-2.032301866897424978e-09,-2.709735822529900247e-09,-3.387169778162375515e-09,-4.064603733794850784e-09,-4.742037689427325639e-09,-5.419471645059800493e-09,-6.096905600692275348e-09,-6.774339556324750203e-09,-7.451773511957225058e-09,-8.129207467589699913e-09,-8.806641423222174768e-09,-9.484075378854649623e-09,-1.016150933448712448e-08,-1.083894329011959933e-08,-1.151637724575207419e-08,-1.219381120138454904e-08,-1.287124515701702390e-08,-1.354867911264949875e-08,-1.422611306828197361e-08,-1.490354702391445012e-08,-1.558098097954692663e-08,-1.625841493517940313e-08,-1.693584889081187964e-08,-1.761328284644435615e-08,-1.829071680207683266e-08,-1.896815075770930917e-08,-1.964558471334178568e-08,-2.032301866897426219e-08,-2.100045262460673870e-08,-2.167788658023921521e-08,-2.235532053587169172e-08,-2.303275449150416823e-08,-2.371018844713664474e-08,-2.438762240276912125e-08,-2.506505635840159775e-08,-2.574249031403407426e-08,-2.641992426966655077e-08,-2.709735822529902728e-08,-2.777479218093150379e-08,-2.845222613656398030e-08,-2.912966009219645681e-08,-2.980709404782893332e-08,-3.048452800346140652e-08,-3.116196195909387972e-08,-3.183939591472635292e-08,-3.251682987035882612e-08,-3.319426382599129932e-08,-3.387169778162377252e-08,-3.454913173725624572e-08,-3.522656569288871892e-08,-3.590399964852119212e-08,-3.658143360415366532e-08,-3.725886755978613853e-08,-3.793630151541861173e-08,-3.861373547105108493e-08,-3.929116942668355813e-08,-3.996860338231603133e-08,-4.064603733794850453e-08,-4.132347129358097773e-08,-4.200090524921345093e-08,-4.267833920484592413e-08 +0.000000000000000000e+00,6.468493221004370492e-10,1.293698644200874098e-09,1.940547966301311251e-09,2.587397288401748611e-09,3.234246610502185970e-09,3.881095932602623329e-09,4.527945254703060275e-09,5.174794576803497221e-09,5.821643898903934167e-09,6.468493221004371113e-09,7.115342543104808059e-09,7.762191865205245004e-09,8.409041187305681950e-09,9.055890509406118896e-09,9.702739831506555842e-09,1.034958915360699279e-08,1.099643847570742973e-08,1.164328779780786668e-08,1.229013711990830363e-08,1.293698644200874057e-08,1.358383576410917752e-08,1.423068508620961446e-08,1.487753440831005141e-08,1.552438373041048670e-08,1.617123305251092199e-08,1.681808237461135728e-08,1.746493169671179257e-08,1.811178101881222787e-08,1.875863034091266316e-08,1.940547966301309845e-08,2.005232898511353374e-08,2.069917830721396903e-08,2.134602762931440432e-08,2.199287695141483961e-08,2.263972627351527491e-08,2.328657559561571020e-08,2.393342491771614549e-08,2.458027423981658078e-08,2.522712356191701607e-08,2.587397288401745136e-08,2.652082220611788665e-08,2.716767152821832195e-08,2.781452085031875724e-08,2.846137017241919253e-08,2.910821949451962782e-08,2.975506881662006311e-08,3.040191813872049510e-08,3.104876746082092708e-08,3.169561678292135906e-08,3.234246610502179104e-08,3.298931542712222303e-08,3.363616474922265501e-08,3.428301407132308699e-08,3.492986339342351897e-08,3.557671271552395096e-08,3.622356203762438294e-08,3.687041135972481492e-08,3.751726068182524691e-08,3.816411000392567889e-08,3.881095932602611087e-08,3.945780864812654285e-08,4.010465797022697484e-08,4.075150729232740682e-08 +0.000000000000000000e+00,6.550802739800673426e-10,1.310160547960134685e-09,1.965240821940201821e-09,2.620321095920268957e-09,3.275401369900336093e-09,3.930481643880403642e-09,4.585561917860471191e-09,5.240642191840538741e-09,5.895722465820606290e-09,6.550802739800673840e-09,7.205883013780741389e-09,7.860963287760808938e-09,8.516043561740877315e-09,9.171123835720945692e-09,9.826204109701014068e-09,1.048128438368108244e-08,1.113636465766115082e-08,1.179144493164121920e-08,1.244652520562128757e-08,1.310160547960135595e-08,1.375668575358142433e-08,1.441176602756149270e-08,1.506684630154156108e-08,1.572192657552162780e-08,1.637700684950169453e-08,1.703208712348176125e-08,1.768716739746182797e-08,1.834224767144189469e-08,1.899732794542196141e-08,1.965240821940202814e-08,2.030748849338209486e-08,2.096256876736216158e-08,2.161764904134222830e-08,2.227272931532229503e-08,2.292780958930236175e-08,2.358288986328242847e-08,2.423797013726249519e-08,2.489305041124256191e-08,2.554813068522262864e-08,2.620321095920269536e-08,2.685829123318276208e-08,2.751337150716282880e-08,2.816845178114289553e-08,2.882353205512296225e-08,2.947861232910302897e-08,3.013369260308309569e-08,3.078877287706316241e-08,3.144385315104322914e-08,3.209893342502329586e-08,3.275401369900336258e-08,3.340909397298342930e-08,3.406417424696349603e-08,3.471925452094356275e-08,3.537433479492362947e-08,3.602941506890369619e-08,3.668449534288376291e-08,3.733957561686382964e-08,3.799465589084389636e-08,3.864973616482396308e-08,3.930481643880402980e-08,3.995989671278409653e-08,4.061497698676416325e-08,4.127005726074422997e-08 +0.000000000000000000e+00,6.617542212737247562e-10,1.323508442547449512e-09,1.985262663821174165e-09,2.647016885094898611e-09,3.308771106368623057e-09,3.970525327642347503e-09,4.632279548916071950e-09,5.294033770189796396e-09,5.955787991463520842e-09,6.617542212737245288e-09,7.279296434010969734e-09,7.941050655284693353e-09,8.602804876558416144e-09,9.264559097832138936e-09,9.926313319105861728e-09,1.058806754037958452e-08,1.124982176165330731e-08,1.191157598292703010e-08,1.257333020420075289e-08,1.323508442547447569e-08,1.389683864674819848e-08,1.455859286802192127e-08,1.522034708929564406e-08,1.588210131056936685e-08,1.654385553184308964e-08,1.720560975311681244e-08,1.786736397439053523e-08,1.852911819566425802e-08,1.919087241693798081e-08,1.985262663821170360e-08,2.051438085948542639e-08,2.117613508075914919e-08,2.183788930203287198e-08,2.249964352330659477e-08,2.316139774458031756e-08,2.382315196585404035e-08,2.448490618712776314e-08,2.514666040840148594e-08,2.580841462967520873e-08,2.647016885094893152e-08,2.713192307222265431e-08,2.779367729349637710e-08,2.845543151477009989e-08,2.911718573604382269e-08,2.977893995731754548e-08,3.044069417859126827e-08,3.110244839986499106e-08,3.176420262113871385e-08,3.242595684241243665e-08,3.308771106368615944e-08,3.374946528495988223e-08,3.441121950623360502e-08,3.507297372750732781e-08,3.573472794878105060e-08,3.639648217005477340e-08,3.705823639132849619e-08,3.771999061260221898e-08,3.838174483387594177e-08,3.904349905514966456e-08,3.970525327642338735e-08,4.036700749769711015e-08,4.102876171897083294e-08,4.169051594024455573e-08 +0.000000000000000000e+00,-6.468493221001332671e-10,-1.293698644200266534e-09,-1.940547966300399698e-09,-2.587397288400532655e-09,-3.234246610500665612e-09,-3.881095932600798569e-09,-4.527945254700931112e-09,-5.174794576801063656e-09,-5.821643898901196199e-09,-6.468493221001328742e-09,-7.115342543101461286e-09,-7.762191865201593829e-09,-8.409041187301726372e-09,-9.055890509401858916e-09,-9.702739831501991459e-09,-1.034958915360212400e-08,-1.099643847570225655e-08,-1.164328779780238909e-08,-1.229013711990252163e-08,-1.293698644200265418e-08,-1.358383576410278672e-08,-1.423068508620291926e-08,-1.487753440830305181e-08,-1.552438373040318435e-08,-1.617123305250331524e-08,-1.681808237460344613e-08,-1.746493169670357702e-08,-1.811178101880370791e-08,-1.875863034090383879e-08,-1.940547966300396968e-08,-2.005232898510410057e-08,-2.069917830720423146e-08,-2.134602762930436235e-08,-2.199287695140449324e-08,-2.263972627350462413e-08,-2.328657559560475502e-08,-2.393342491770488591e-08,-2.458027423980501680e-08,-2.522712356190514768e-08,-2.587397288400527857e-08,-2.652082220610540946e-08,-2.716767152820554035e-08,-2.781452085030567124e-08,-2.846137017240580213e-08,-2.910821949450593302e-08,-2.975506881660606391e-08,-3.040191813870619480e-08,-3.104876746080632238e-08,-3.169561678290644996e-08,-3.234246610500657754e-08,-3.298931542710670512e-08,-3.363616474920683270e-08,-3.428301407130696028e-08,-3.492986339340708786e-08,-3.557671271550721544e-08,-3.622356203760734302e-08,-3.687041135970747060e-08,-3.751726068180759818e-08,-3.816411000390772576e-08,-3.881095932600785334e-08,-3.945780864810798092e-08,-4.010465797020810850e-08,-4.075150729230823608e-08 +0.000000000000000000e+00,-6.550802739799805920e-10,-1.310160547959961184e-09,-1.965240821939941673e-09,-2.620321095919921955e-09,-3.275401369899902236e-09,-3.930481643879882518e-09,-4.585561917859863214e-09,-5.240642191839843909e-09,-5.895722465819824605e-09,-6.550802739799805300e-09,-7.205883013779785995e-09,-7.860963287759766691e-09,-8.516043561739747386e-09,-9.171123835719728082e-09,-9.826204109699708777e-09,-1.048128438367968947e-08,-1.113636465765967017e-08,-1.179144493163965086e-08,-1.244652520561963156e-08,-1.310160547959961225e-08,-1.375668575357959295e-08,-1.441176602755957365e-08,-1.506684630153955600e-08,-1.572192657551953669e-08,-1.637700684949951739e-08,-1.703208712347949808e-08,-1.768716739745947878e-08,-1.834224767143945947e-08,-1.899732794541944017e-08,-1.965240821939942086e-08,-2.030748849337940156e-08,-2.096256876735938225e-08,-2.161764904133936295e-08,-2.227272931531934364e-08,-2.292780958929932434e-08,-2.358288986327930504e-08,-2.423797013725928573e-08,-2.489305041123926643e-08,-2.554813068521924712e-08,-2.620321095919922782e-08,-2.685829123317920851e-08,-2.751337150715918921e-08,-2.816845178113916990e-08,-2.882353205511915060e-08,-2.947861232909913129e-08,-3.013369260307911199e-08,-3.078877287705909269e-08,-3.144385315103907338e-08,-3.209893342501905408e-08,-3.275401369899903477e-08,-3.340909397297901547e-08,-3.406417424695899616e-08,-3.471925452093897686e-08,-3.537433479491895755e-08,-3.602941506889893825e-08,-3.668449534287891894e-08,-3.733957561685889964e-08,-3.799465589083888034e-08,-3.864973616481886103e-08,-3.930481643879884173e-08,-3.995989671277882242e-08,-4.061497698675880312e-08,-4.127005726073878381e-08 +0.000000000000000000e+00,-6.617542212650727572e-10,-1.323508442530145514e-09,-1.985262663795218065e-09,-2.647016885060290615e-09,-3.308771106325363166e-09,-3.970525327590436130e-09,-4.632279548855509094e-09,-5.294033770120582058e-09,-5.955787991385655022e-09,-6.617542212650727986e-09,-7.279296433915800950e-09,-7.941050655180873914e-09,-8.602804876445946051e-09,-9.264559097711018188e-09,-9.926313318976090324e-09,-1.058806754024116246e-08,-1.124982176150623460e-08,-1.191157598277130673e-08,-1.257333020403637887e-08,-1.323508442530145101e-08,-1.389683864656652315e-08,-1.455859286783159528e-08,-1.522034708909666742e-08,-1.588210131036173790e-08,-1.654385553162680838e-08,-1.720560975289187887e-08,-1.786736397415694935e-08,-1.852911819542201983e-08,-1.919087241668709031e-08,-1.985262663795216080e-08,-2.051438085921723128e-08,-2.117613508048230176e-08,-2.183788930174737224e-08,-2.249964352301244273e-08,-2.316139774427751321e-08,-2.382315196554258369e-08,-2.448490618680765417e-08,-2.514666040807272466e-08,-2.580841462933779514e-08,-2.647016885060286562e-08,-2.713192307186793610e-08,-2.779367729313300659e-08,-2.845543151439807707e-08,-2.911718573566314755e-08,-2.977893995692821803e-08,-3.044069417819328852e-08,-3.110244839945836231e-08,-3.176420262072343610e-08,-3.242595684198850989e-08,-3.308771106325358368e-08,-3.374946528451865747e-08,-3.441121950578373126e-08,-3.507297372704880505e-08,-3.573472794831387885e-08,-3.639648216957895264e-08,-3.705823639084402643e-08,-3.771999061210910022e-08,-3.838174483337417401e-08,-3.904349905463924780e-08,-3.970525327590432159e-08,-4.036700749716939538e-08,-4.102876171843446918e-08,-4.169051593969954297e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.635000987519026028e-10,1.327000197503805206e-09,1.990500296255708015e-09,2.654000395007610825e-09,3.317500493759513634e-09,3.981000592511416030e-09,4.644500691263318426e-09,5.308000790015220822e-09,5.971500888767123218e-09,6.635000987519025614e-09,7.298501086270928010e-09,7.962001185022830406e-09,8.625501283774731975e-09,9.289001382526633544e-09,9.952501481278535113e-09,1.061600158003043668e-08,1.127950167878233825e-08,1.194300177753423982e-08,1.260650187628614139e-08,1.327000197503804296e-08,1.393350207378994453e-08,1.459700217254184609e-08,1.526050227129374766e-08,1.592400237004565089e-08,1.658750246879755411e-08,1.725100256754945733e-08,1.791450266630136056e-08,1.857800276505326378e-08,1.924150286380516700e-08,1.990500296255707023e-08,2.056850306130897345e-08,2.123200316006087667e-08,2.189550325881277990e-08,2.255900335756468312e-08,2.322250345631658634e-08,2.388600355506848956e-08,2.454950365382039279e-08,2.521300375257229601e-08,2.587650385132419923e-08,2.654000395007610246e-08,2.720350404882800568e-08,2.786700414757990890e-08,2.853050424633181213e-08,2.919400434508371535e-08,2.985750444383561857e-08,3.052100454258752180e-08,3.118450464133942502e-08,3.184800474009132824e-08,3.251150483884323147e-08,3.317500493759513469e-08,3.383850503634703791e-08,3.450200513509894114e-08,3.516550523385084436e-08,3.582900533260274758e-08,3.649250543135465080e-08,3.715600553010655403e-08,3.781950562885845725e-08,3.848300572761036047e-08,3.914650582636226370e-08,3.981000592511416692e-08,4.047350602386607014e-08,4.113700612261797337e-08,4.180050622136987659e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.588661104644627011e-10,1.317732220928925402e-09,1.976598331393388000e-09,2.635464441857850391e-09,3.294330552322312782e-09,3.953196662786775172e-09,4.612062773251237563e-09,5.270928883715699954e-09,5.929794994180162345e-09,6.588661104644624736e-09,7.247527215109087127e-09,7.906393325573548691e-09,8.565259436038010254e-09,9.224125546502471818e-09,9.882991656966933382e-09,1.054185776743139495e-08,1.120072387789585651e-08,1.185958998836031807e-08,1.251845609882477964e-08,1.317732220928924120e-08,1.383618831975370276e-08,1.449505443021816433e-08,1.515392054068262589e-08,1.581278665114708745e-08,1.647165276161154902e-08,1.713051887207601058e-08,1.778938498254047215e-08,1.844825109300493371e-08,1.910711720346939527e-08,1.976598331393385684e-08,2.042484942439831840e-08,2.108371553486277996e-08,2.174258164532724153e-08,2.240144775579170309e-08,2.306031386625616466e-08,2.371917997672062622e-08,2.437804608718508778e-08,2.503691219764954935e-08,2.569577830811401091e-08,2.635464441857847247e-08,2.701351052904293404e-08,2.767237663950739560e-08,2.833124274997185717e-08,2.899010886043631873e-08,2.964897497090078029e-08,3.030784108136524516e-08,3.096670719182970673e-08,3.162557330229416829e-08,3.228443941275862986e-08,3.294330552322309142e-08,3.360217163368755298e-08,3.426103774415201455e-08,3.491990385461647611e-08,3.557876996508093767e-08,3.623763607554539924e-08,3.689650218600986080e-08,3.755536829647432237e-08,3.821423440693878393e-08,3.887310051740324549e-08,3.953196662786770706e-08,4.019083273833216862e-08,4.084969884879663018e-08,4.150856495926109175e-08 +0.000000000000000000e+00,6.659881567919424995e-10,1.331976313583884999e-09,1.997964470375827705e-09,2.663952627167770412e-09,3.329940783959713118e-09,3.995928940751655411e-09,4.661917097543597703e-09,5.327905254335539996e-09,5.993893411127482289e-09,6.659881567919424582e-09,7.325869724711366874e-09,7.991857881503309167e-09,8.657846038295250633e-09,9.323834195087192098e-09,9.989822351879133564e-09,1.065581050867107503e-08,1.132179866546301649e-08,1.198778682225495796e-08,1.265377497904689943e-08,1.331976313583884089e-08,1.398575129263078236e-08,1.465173944942272382e-08,1.531772760621466529e-08,1.598371576300660841e-08,1.664970391979855153e-08,1.731569207659049465e-08,1.798168023338243777e-08,1.864766839017438089e-08,1.931365654696632401e-08,1.997964470375826713e-08,2.064563286055021025e-08,2.131162101734215337e-08,2.197760917413409649e-08,2.264359733092603961e-08,2.330958548771798273e-08,2.397557364450992585e-08,2.464156180130186897e-08,2.530754995809381209e-08,2.597353811488575521e-08,2.663952627167769833e-08,2.730551442846964145e-08,2.797150258526158457e-08,2.863749074205352769e-08,2.930347889884547081e-08,2.996946705563741393e-08,3.063545521242935705e-08,3.130144336922130017e-08,3.196743152601324329e-08,3.263341968280518641e-08,3.329940783959712953e-08,3.396539599638907265e-08,3.463138415318101577e-08,3.529737230997295888e-08,3.596336046676490200e-08,3.662934862355684512e-08,3.729533678034878824e-08,3.796132493714073136e-08,3.862731309393267448e-08,3.929330125072461760e-08,3.995928940751656072e-08,4.062527756430850384e-08,4.129126572110044696e-08,4.195725387789239008e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.635000987526427226e-10,-1.327000197505285445e-09,-1.990500296257928168e-09,-2.654000395010570891e-09,-3.317500493763213613e-09,-3.981000592515856336e-09,-4.644500691268499059e-09,-5.308000790021141781e-09,-5.971500888773784504e-09,-6.635000987526427226e-09,-7.298501086279069949e-09,-7.962001185031712672e-09,-8.625501283784355394e-09,-9.289001382536998117e-09,-9.952501481289640840e-09,-1.061600158004228356e-08,-1.127950167879492628e-08,-1.194300177754756901e-08,-1.260650187630021173e-08,-1.327000197505285445e-08,-1.393350207380549718e-08,-1.459700217255813990e-08,-1.526050227131078097e-08,-1.592400237006342203e-08,-1.658750246881606310e-08,-1.725100256756870417e-08,-1.791450266632134524e-08,-1.857800276507398631e-08,-1.924150286382662738e-08,-1.990500296257926844e-08,-2.056850306133190951e-08,-2.123200316008455058e-08,-2.189550325883719165e-08,-2.255900335758983272e-08,-2.322250345634247379e-08,-2.388600355509511485e-08,-2.454950365384775592e-08,-2.521300375260039699e-08,-2.587650385135303806e-08,-2.654000395010567913e-08,-2.720350404885832020e-08,-2.786700414761096126e-08,-2.853050424636360233e-08,-2.919400434511624340e-08,-2.985750444386888447e-08,-3.052100454262152223e-08,-3.118450464137415999e-08,-3.184800474012679775e-08,-3.251150483887943551e-08,-3.317500493763207327e-08,-3.383850503638471103e-08,-3.450200513513734879e-08,-3.516550523388998655e-08,-3.582900533264262430e-08,-3.649250543139526206e-08,-3.715600553014789982e-08,-3.781950562890053758e-08,-3.848300572765317534e-08,-3.914650582640581310e-08,-3.981000592515845086e-08,-4.047350602391108862e-08,-4.113700612266372638e-08,-4.180050622141636414e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.588661104646984475e-10,-1.317732220929396895e-09,-1.976598331394095239e-09,-2.635464441858793377e-09,-3.294330552323491514e-09,-3.953196662788189651e-09,-4.612062773252887789e-09,-5.270928883717585926e-09,-5.929794994182284063e-09,-6.588661104646982201e-09,-7.247527215111680338e-09,-7.906393325576377648e-09,-8.565259436041074131e-09,-9.224125546505770614e-09,-9.882991656970467097e-09,-1.054185776743516358e-08,-1.120072387789986006e-08,-1.185958998836455655e-08,-1.251845609882925303e-08,-1.317732220929394951e-08,-1.383618831975864600e-08,-1.449505443022334248e-08,-1.515392054068803896e-08,-1.581278665115273544e-08,-1.647165276161743193e-08,-1.713051887208212841e-08,-1.778938498254682489e-08,-1.844825109301152138e-08,-1.910711720347621786e-08,-1.976598331394091434e-08,-2.042484942440561082e-08,-2.108371553487030731e-08,-2.174258164533500379e-08,-2.240144775579970027e-08,-2.306031386626439676e-08,-2.371917997672909324e-08,-2.437804608719378972e-08,-2.503691219765848621e-08,-2.569577830812318269e-08,-2.635464441858787917e-08,-2.701351052905257565e-08,-2.767237663951727214e-08,-2.833124274998196862e-08,-2.899010886044666510e-08,-2.964897497091136159e-08,-3.030784108137605807e-08,-3.096670719184075786e-08,-3.162557330230545765e-08,-3.228443941277015744e-08,-3.294330552323485724e-08,-3.360217163369955703e-08,-3.426103774416425682e-08,-3.491990385462895661e-08,-3.557876996509365640e-08,-3.623763607555835620e-08,-3.689650218602305599e-08,-3.755536829648775578e-08,-3.821423440695245557e-08,-3.887310051741715536e-08,-3.953196662788185515e-08,-4.019083273834655495e-08,-4.084969884881125474e-08,-4.150856495927595453e-08 +0.000000000000000000e+00,-6.659881567923993100e-10,-1.331976313584798620e-09,-1.997964470377197930e-09,-2.663952627169597240e-09,-3.329940783961996550e-09,-3.995928940754395860e-09,-4.661917097546794756e-09,-5.327905254339193653e-09,-5.993893411131592549e-09,-6.659881567923991446e-09,-7.325869724716390342e-09,-7.991857881508790066e-09,-8.657846038301189789e-09,-9.323834195093589513e-09,-9.989822351885989237e-09,-1.065581050867838896e-08,-1.132179866547078868e-08,-1.198778682226318841e-08,-1.265377497905558813e-08,-1.331976313584798785e-08,-1.398575129264038758e-08,-1.465173944943278730e-08,-1.531772760622518703e-08,-1.598371576301758675e-08,-1.664970391980998647e-08,-1.731569207660238620e-08,-1.798168023339478592e-08,-1.864766839018718564e-08,-1.931365654697958537e-08,-1.997964470377198509e-08,-2.064563286056438481e-08,-2.131162101735678454e-08,-2.197760917414918426e-08,-2.264359733094158398e-08,-2.330958548773398371e-08,-2.397557364452638343e-08,-2.464156180131878316e-08,-2.530754995811118288e-08,-2.597353811490358260e-08,-2.663952627169598233e-08,-2.730551442848838205e-08,-2.797150258528078177e-08,-2.863749074207318150e-08,-2.930347889886558122e-08,-2.996946705565798094e-08,-3.063545521245038067e-08,-3.130144336924278039e-08,-3.196743152603518012e-08,-3.263341968282757984e-08,-3.329940783961997956e-08,-3.396539599641237929e-08,-3.463138415320477901e-08,-3.529737230999717873e-08,-3.596336046678957846e-08,-3.662934862358197818e-08,-3.729533678037437790e-08,-3.796132493716677763e-08,-3.862731309395917735e-08,-3.929330125075157707e-08,-3.995928940754397680e-08,-4.062527756433637652e-08,-4.129126572112877625e-08,-4.195725387792117597e-08 +0.000000000000000000e+00,6.720793088314294858e-10,1.344158617662858972e-09,2.016237926494288354e-09,2.688317235325717530e-09,3.360396544157146705e-09,4.032475852988575881e-09,4.704555161820005057e-09,5.376634470651434232e-09,6.048713779482863408e-09,6.720793088314292583e-09,7.392872397145721759e-09,8.064951705977150107e-09,8.737031014808578456e-09,9.409110323640006804e-09,1.008118963247143515e-08,1.075326894130286350e-08,1.142534825013429185e-08,1.209742755896572020e-08,1.276950686779714855e-08,1.344158617662857689e-08,1.411366548546000524e-08,1.478574479429143359e-08,1.545782410312286194e-08,1.612990341195429029e-08,1.680198272078571864e-08,1.747406202961714699e-08,1.814614133844857533e-08,1.881822064728000368e-08,1.949029995611143203e-08,2.016237926494286038e-08,2.083445857377428873e-08,2.150653788260571708e-08,2.217861719143714542e-08,2.285069650026857377e-08,2.352277580910000212e-08,2.419485511793143047e-08,2.486693442676285882e-08,2.553901373559428717e-08,2.621109304442571552e-08,2.688317235325714386e-08,2.755525166208857221e-08,2.822733097092000056e-08,2.889941027975142891e-08,2.957148958858285726e-08,3.024356889741428561e-08,3.091564820624571065e-08,3.158772751507713569e-08,3.225980682390856073e-08,3.293188613273998576e-08,3.360396544157141080e-08,3.427604475040283584e-08,3.494812405923426088e-08,3.562020336806568592e-08,3.629228267689711096e-08,3.696436198572853600e-08,3.763644129455996104e-08,3.830852060339138608e-08,3.898059991222281112e-08,3.965267922105423616e-08,4.032475852988566120e-08,4.099683783871708624e-08,4.166891714754851128e-08,4.234099645637993632e-08 +0.000000000000000000e+00,6.755598084582446017e-10,1.351119616916489203e-09,2.026679425374734012e-09,2.702239233832978821e-09,3.377799042291223629e-09,4.053358850749468024e-09,4.728918659207712419e-09,5.404478467665956814e-09,6.080038276124201209e-09,6.755598084582445604e-09,7.431157893040689999e-09,8.106717701498934394e-09,8.782277509957179616e-09,9.457837318415424838e-09,1.013339712687367006e-08,1.080895693533191528e-08,1.148451674379016050e-08,1.216007655224840573e-08,1.283563636070665095e-08,1.351119616916489617e-08,1.418675597762314139e-08,1.486231578608138661e-08,1.553787559453963184e-08,1.621343540299787871e-08,1.688899521145612559e-08,1.756455501991437247e-08,1.824011482837261934e-08,1.891567463683086622e-08,1.959123444528911310e-08,2.026679425374735997e-08,2.094235406220560685e-08,2.161791387066385373e-08,2.229347367912210060e-08,2.296903348758034748e-08,2.364459329603859435e-08,2.432015310449684123e-08,2.499571291295508811e-08,2.567127272141333498e-08,2.634683252987158186e-08,2.702239233832982874e-08,2.769795214678807561e-08,2.837351195524632249e-08,2.904907176370456937e-08,2.972463157216281624e-08,3.040019138062106312e-08,3.107575118907931000e-08,3.175131099753755687e-08,3.242687080599580375e-08,3.310243061445405063e-08,3.377799042291229750e-08,3.445355023137054438e-08,3.512911003982879126e-08,3.580466984828703813e-08,3.648022965674528501e-08,3.715578946520353188e-08,3.783134927366177876e-08,3.850690908212002564e-08,3.918246889057827251e-08,3.985802869903651939e-08,4.053358850749476627e-08,4.120914831595301314e-08,4.188470812441126002e-08,4.256026793286950690e-08 +0.000000000000000000e+00,6.734504817235954708e-10,1.346900963447190942e-09,2.020351445170786413e-09,2.693801926894381883e-09,3.367252408617977354e-09,4.040702890341572825e-09,4.714153372065168709e-09,5.387603853788764594e-09,6.061054335512360478e-09,6.734504817235956363e-09,7.407955298959552247e-09,8.081405780683147304e-09,8.754856262406742362e-09,9.428306744130337419e-09,1.010175722585393248e-08,1.077520770757752753e-08,1.144865818930112259e-08,1.212210867102471765e-08,1.279555915274831271e-08,1.346900963447190776e-08,1.414246011619550282e-08,1.481591059791909788e-08,1.548936107964269293e-08,1.616281156136628799e-08,1.683626204308988305e-08,1.750971252481347811e-08,1.818316300653707316e-08,1.885661348826066822e-08,1.953006396998426328e-08,2.020351445170785834e-08,2.087696493343145339e-08,2.155041541515504845e-08,2.222386589687864351e-08,2.289731637860223856e-08,2.357076686032583362e-08,2.424421734204942868e-08,2.491766782377302374e-08,2.559111830549661879e-08,2.626456878722021385e-08,2.693801926894380891e-08,2.761146975066740396e-08,2.828492023239099902e-08,2.895837071411459408e-08,2.963182119583818914e-08,3.030527167756178089e-08,3.097872215928537263e-08,3.165217264100896438e-08,3.232562312273255613e-08,3.299907360445614788e-08,3.367252408617973963e-08,3.434597456790333138e-08,3.501942504962692312e-08,3.569287553135051487e-08,3.636632601307410662e-08,3.703977649479769837e-08,3.771322697652129012e-08,3.838667745824488187e-08,3.906012793996847362e-08,3.973357842169206536e-08,4.040702890341565711e-08,4.108047938513924886e-08,4.175392986686284061e-08,4.242738034858643236e-08 +0.000000000000000000e+00,-6.720793088339327411e-10,-1.344158617667865482e-09,-2.016237926501798327e-09,-2.688317235335731378e-09,-3.360396544169664429e-09,-4.032475853003597481e-09,-4.704555161837530532e-09,-5.376634470671463583e-09,-6.048713779505396635e-09,-6.720793088339329686e-09,-7.392872397173262737e-09,-8.064951706007196616e-09,-8.737031014841129667e-09,-9.409110323675062719e-09,-1.008118963250899577e-08,-1.075326894134292882e-08,-1.142534825017686187e-08,-1.209742755901079492e-08,-1.276950686784472798e-08,-1.344158617667866103e-08,-1.411366548551259408e-08,-1.478574479434652713e-08,-1.545782410318046018e-08,-1.612990341201439323e-08,-1.680198272084832628e-08,-1.747406202968225933e-08,-1.814614133851619239e-08,-1.881822064735012544e-08,-1.949029995618405849e-08,-2.016237926501799154e-08,-2.083445857385192459e-08,-2.150653788268585764e-08,-2.217861719151979069e-08,-2.285069650035372375e-08,-2.352277580918765680e-08,-2.419485511802158985e-08,-2.486693442685552290e-08,-2.553901373568945595e-08,-2.621109304452338900e-08,-2.688317235335732205e-08,-2.755525166219125510e-08,-2.822733097102518816e-08,-2.889941027985912121e-08,-2.957148958869305426e-08,-3.024356889752698731e-08,-3.091564820636092036e-08,-3.158772751519485341e-08,-3.225980682402878646e-08,-3.293188613286271952e-08,-3.360396544169665257e-08,-3.427604475053058562e-08,-3.494812405936451867e-08,-3.562020336819845172e-08,-3.629228267703238477e-08,-3.696436198586631782e-08,-3.763644129470025087e-08,-3.830852060353418393e-08,-3.898059991236811698e-08,-3.965267922120205003e-08,-4.032475853003598308e-08,-4.099683783886991613e-08,-4.166891714770384918e-08,-4.234099645653778223e-08 +0.000000000000000000e+00,-6.755598084597541030e-10,-1.351119616919508206e-09,-2.026679425379262412e-09,-2.702239233839016825e-09,-3.377799042298771239e-09,-4.053358850758525652e-09,-4.728918659218279651e-09,-5.404478467678033651e-09,-6.080038276137787650e-09,-6.755598084597541650e-09,-7.431157893057295650e-09,-8.106717701517049649e-09,-8.782277509976803649e-09,-9.457837318436557648e-09,-1.013339712689631165e-08,-1.080895693535606565e-08,-1.148451674381581965e-08,-1.216007655227557365e-08,-1.283563636073532765e-08,-1.351119616919508165e-08,-1.418675597765483565e-08,-1.486231578611458964e-08,-1.553787559457434364e-08,-1.621343540303409599e-08,-1.688899521149384833e-08,-1.756455501995360068e-08,-1.824011482841335303e-08,-1.891567463687310537e-08,-1.959123444533285772e-08,-2.026679425379261006e-08,-2.094235406225236241e-08,-2.161791387071211475e-08,-2.229347367917186710e-08,-2.296903348763161944e-08,-2.364459329609137179e-08,-2.432015310455112413e-08,-2.499571291301087648e-08,-2.567127272147062882e-08,-2.634683252993038117e-08,-2.702239233839013351e-08,-2.769795214684988586e-08,-2.837351195530963820e-08,-2.904907176376939055e-08,-2.972463157222914289e-08,-3.040019138068889855e-08,-3.107575118914865420e-08,-3.175131099760840986e-08,-3.242687080606816551e-08,-3.310243061452792116e-08,-3.377799042298767682e-08,-3.445355023144743247e-08,-3.512911003990718813e-08,-3.580466984836694378e-08,-3.648022965682669943e-08,-3.715578946528645509e-08,-3.783134927374621074e-08,-3.850690908220596639e-08,-3.918246889066572205e-08,-3.985802869912547770e-08,-4.053358850758523336e-08,-4.120914831604498901e-08,-4.188470812450474466e-08,-4.256026793296450032e-08 +0.000000000000000000e+00,-6.734504817250898760e-10,-1.346900963450179752e-09,-2.020351445175269731e-09,-2.693801926900359918e-09,-3.367252408625450104e-09,-4.040702890350540290e-09,-4.714153372075630890e-09,-5.387603853800721490e-09,-6.061054335525812089e-09,-6.734504817250902689e-09,-7.407955298975993289e-09,-8.081405780701083889e-09,-8.754856262426174489e-09,-9.428306744151265088e-09,-1.010175722587635569e-08,-1.077520770760144629e-08,-1.144865818932653689e-08,-1.212210867105162749e-08,-1.279555915277671809e-08,-1.346900963450180869e-08,-1.414246011622689929e-08,-1.481591059795198989e-08,-1.548936107967708049e-08,-1.616281156140217109e-08,-1.683626204312726169e-08,-1.750971252485235229e-08,-1.818316300657744289e-08,-1.885661348830253349e-08,-1.953006397002762409e-08,-2.020351445175271469e-08,-2.087696493347780529e-08,-2.155041541520289588e-08,-2.222386589692798648e-08,-2.289731637865307708e-08,-2.357076686037816768e-08,-2.424421734210325828e-08,-2.491766782382834888e-08,-2.559111830555343948e-08,-2.626456878727853008e-08,-2.693801926900362068e-08,-2.761146975072871128e-08,-2.828492023245380188e-08,-2.895837071417889248e-08,-2.963182119590398308e-08,-3.030527167762907368e-08,-3.097872215935416097e-08,-3.165217264107924826e-08,-3.232562312280433556e-08,-3.299907360452942285e-08,-3.367252408625451014e-08,-3.434597456797959743e-08,-3.501942504970468472e-08,-3.569287553142977201e-08,-3.636632601315485930e-08,-3.703977649487994659e-08,-3.771322697660503388e-08,-3.838667745833012118e-08,-3.906012794005520847e-08,-3.973357842178029576e-08,-4.040702890350538305e-08,-4.108047938523047034e-08,-4.175392986695555763e-08,-4.242738034868064492e-08 +0.000000000000000000e+00,6.616148266546986537e-10,1.323229653309397307e-09,1.984844479964095858e-09,2.646459306618794201e-09,3.308074133273492545e-09,3.969688959928190888e-09,4.631303786582889232e-09,5.292918613237587575e-09,5.954533439892285919e-09,6.616148266546984262e-09,7.277763093201682606e-09,7.939377919856380122e-09,8.600992746511076811e-09,9.262607573165773500e-09,9.924222399820470189e-09,1.058583722647516688e-08,1.124745205312986357e-08,1.190906687978456026e-08,1.257068170643925695e-08,1.323229653309395364e-08,1.389391135974865032e-08,1.455552618640334701e-08,1.521714101305804370e-08,1.587875583971274039e-08,1.654037066636743708e-08,1.720198549302213377e-08,1.786360031967683046e-08,1.852521514633152715e-08,1.918682997298622384e-08,1.984844479964092053e-08,2.051005962629561722e-08,2.117167445295031390e-08,2.183328927960501059e-08,2.249490410625970728e-08,2.315651893291440397e-08,2.381813375956910066e-08,2.447974858622379735e-08,2.514136341287849404e-08,2.580297823953319073e-08,2.646459306618788742e-08,2.712620789284258411e-08,2.778782271949728080e-08,2.844943754615197749e-08,2.911105237280667417e-08,2.977266719946137086e-08,3.043428202611606755e-08,3.109589685277076424e-08,3.175751167942546093e-08,3.241912650608015762e-08,3.308074133273485431e-08,3.374235615938955100e-08,3.440397098604424769e-08,3.506558581269894438e-08,3.572720063935364107e-08,3.638881546600833776e-08,3.705043029266303444e-08,3.771204511931773113e-08,3.837365994597242782e-08,3.903527477262712451e-08,3.969688959928182120e-08,4.035850442593651789e-08,4.102011925259121458e-08,4.168173407924591127e-08 +0.000000000000000000e+00,6.665307130128602439e-10,1.333061426025720488e-09,1.999592139038580939e-09,2.666122852051441389e-09,3.332653565064301840e-09,3.999184278077161877e-09,4.665714991090021914e-09,5.332245704102881952e-09,5.998776417115741989e-09,6.665307130128602026e-09,7.331837843141462063e-09,7.998368556154322100e-09,8.664899269167181310e-09,9.331429982180040520e-09,9.997960695192899730e-09,1.066449140820575894e-08,1.133102212121861815e-08,1.199755283423147736e-08,1.266408354724433657e-08,1.333061426025719578e-08,1.399714497327005499e-08,1.466367568628291420e-08,1.533020639929577341e-08,1.599673711230863427e-08,1.666326782532149514e-08,1.732979853833435600e-08,1.799632925134721687e-08,1.866285996436007773e-08,1.932939067737293860e-08,1.999592139038579946e-08,2.066245210339866032e-08,2.132898281641152119e-08,2.199551352942438205e-08,2.266204424243724292e-08,2.332857495545010378e-08,2.399510566846296465e-08,2.466163638147582551e-08,2.532816709448868637e-08,2.599469780750154724e-08,2.666122852051440810e-08,2.732775923352726897e-08,2.799428994654012983e-08,2.866082065955299070e-08,2.932735137256585156e-08,2.999388208557870912e-08,3.066041279859156667e-08,3.132694351160442423e-08,3.199347422461728178e-08,3.266000493763013934e-08,3.332653565064299689e-08,3.399306636365585445e-08,3.465959707666871201e-08,3.532612778968156956e-08,3.599265850269442712e-08,3.665918921570728467e-08,3.732571992872014223e-08,3.799225064173299978e-08,3.865878135474585734e-08,3.932531206775871489e-08,3.999184278077157245e-08,4.065837349378443001e-08,4.132490420679728756e-08,4.199143491981014512e-08 +0.000000000000000000e+00,6.609124782447735397e-10,1.321824956489547079e-09,1.982737434734320722e-09,2.643649912979094572e-09,3.304562391223868422e-09,3.965474869468642272e-09,4.626387347713416122e-09,5.287299825958189972e-09,5.948212304202963822e-09,6.609124782447737672e-09,7.270037260692511522e-09,7.930949738937286199e-09,8.591862217182060876e-09,9.252774695426835553e-09,9.913687173671610230e-09,1.057459965191638491e-08,1.123551213016115958e-08,1.189642460840593426e-08,1.255733708665070894e-08,1.321824956489548362e-08,1.387916204314025829e-08,1.454007452138503297e-08,1.520098699962980765e-08,1.586189947787458232e-08,1.652281195611935700e-08,1.718372443436413168e-08,1.784463691260890635e-08,1.850554939085368103e-08,1.916646186909845571e-08,1.982737434734323039e-08,2.048828682558800506e-08,2.114919930383277974e-08,2.181011178207755442e-08,2.247102426032232909e-08,2.313193673856710377e-08,2.379284921681187845e-08,2.445376169505665313e-08,2.511467417330142780e-08,2.577558665154620248e-08,2.643649912979097716e-08,2.709741160803575183e-08,2.775832408628052651e-08,2.841923656452530119e-08,2.908014904277007586e-08,2.974106152101485054e-08,3.040197399925962191e-08,3.106288647750439659e-08,3.172379895574917126e-08,3.238471143399394594e-08,3.304562391223872062e-08,3.370653639048349530e-08,3.436744886872826997e-08,3.502836134697304465e-08,3.568927382521781933e-08,3.635018630346259400e-08,3.701109878170736868e-08,3.767201125995214336e-08,3.833292373819691803e-08,3.899383621644169271e-08,3.965474869468646739e-08,4.031566117293124207e-08,4.097657365117601674e-08,4.163748612942079142e-08 +0.000000000000000000e+00,-6.616148266598696699e-10,-1.323229653319739340e-09,-1.984844479979608803e-09,-2.646459306639478266e-09,-3.308074133299347729e-09,-3.969688959959217606e-09,-4.631303786619087483e-09,-5.292918613278957359e-09,-5.954533439938827236e-09,-6.616148266598697113e-09,-7.277763093258566989e-09,-7.939377919918436866e-09,-8.600992746578306743e-09,-9.262607573238176619e-09,-9.924222399898046496e-09,-1.058583722655791637e-08,-1.124745205321778625e-08,-1.190906687987765613e-08,-1.257068170653752600e-08,-1.323229653319739588e-08,-1.389391135985726576e-08,-1.455552618651713563e-08,-1.521714101317700551e-08,-1.587875583983687704e-08,-1.654037066649674857e-08,-1.720198549315662010e-08,-1.786360031981649163e-08,-1.852521514647636316e-08,-1.918682997313623470e-08,-1.984844479979610623e-08,-2.051005962645597776e-08,-2.117167445311584929e-08,-2.183328927977572082e-08,-2.249490410643559235e-08,-2.315651893309546388e-08,-2.381813375975533541e-08,-2.447974858641520694e-08,-2.514136341307507848e-08,-2.580297823973495001e-08,-2.646459306639482154e-08,-2.712620789305469307e-08,-2.778782271971456460e-08,-2.844943754637443613e-08,-2.911105237303430766e-08,-2.977266719969417919e-08,-3.043428202635405072e-08,-3.109589685301392225e-08,-3.175751167967379379e-08,-3.241912650633366532e-08,-3.308074133299353685e-08,-3.374235615965340838e-08,-3.440397098631327991e-08,-3.506558581297315144e-08,-3.572720063963302297e-08,-3.638881546629289450e-08,-3.705043029295276603e-08,-3.771204511961263757e-08,-3.837365994627250910e-08,-3.903527477293238063e-08,-3.969688959959225216e-08,-4.035850442625212369e-08,-4.102011925291199522e-08,-4.168173407957186675e-08 +0.000000000000000000e+00,-6.665307130165793514e-10,-1.333061426033158703e-09,-1.999592139049737951e-09,-2.666122852066316992e-09,-3.332653565082896033e-09,-3.999184278099475074e-09,-4.665714991116054115e-09,-5.332245704132633157e-09,-5.998776417149212198e-09,-6.665307130165791239e-09,-7.331837843182370280e-09,-7.998368556198948494e-09,-8.664899269215526708e-09,-9.331429982232104922e-09,-9.997960695248683136e-09,-1.066449140826526135e-08,-1.133102212128183956e-08,-1.199755283429841778e-08,-1.266408354731499599e-08,-1.333061426033157421e-08,-1.399714497334815242e-08,-1.466367568636473063e-08,-1.533020639938130719e-08,-1.599673711239788375e-08,-1.666326782541446031e-08,-1.732979853843103687e-08,-1.799632925144761343e-08,-1.866285996446418999e-08,-1.932939067748076655e-08,-1.999592139049734311e-08,-2.066245210351391967e-08,-2.132898281653049623e-08,-2.199551352954707279e-08,-2.266204424256364935e-08,-2.332857495558022591e-08,-2.399510566859680247e-08,-2.466163638161337903e-08,-2.532816709462995559e-08,-2.599469780764653215e-08,-2.666122852066310871e-08,-2.732775923367968527e-08,-2.799428994669626183e-08,-2.866082065971283839e-08,-2.932735137272941495e-08,-2.999388208574599151e-08,-3.066041279876256807e-08,-3.132694351177914463e-08,-3.199347422479572118e-08,-3.266000493781229774e-08,-3.332653565082887430e-08,-3.399306636384545086e-08,-3.465959707686202742e-08,-3.532612778987860398e-08,-3.599265850289518054e-08,-3.665918921591175710e-08,-3.732571992892833366e-08,-3.799225064194491022e-08,-3.865878135496148678e-08,-3.932531206797806334e-08,-3.999184278099463990e-08,-4.065837349401121646e-08,-4.132490420702779302e-08,-4.199143492004436958e-08 +0.000000000000000000e+00,-6.609124782477783767e-10,-1.321824956495556753e-09,-1.982737434743335337e-09,-2.643649912991113920e-09,-3.304562391238892504e-09,-3.965474869486670674e-09,-4.626387347734448843e-09,-5.287299825982227013e-09,-5.948212304230005183e-09,-6.609124782477783353e-09,-7.270037260725561523e-09,-7.930949738973339693e-09,-8.591862217221117036e-09,-9.252774695468894378e-09,-9.913687173716671721e-09,-1.057459965196444906e-08,-1.123551213021222641e-08,-1.189642460846000375e-08,-1.255733708670778109e-08,-1.321824956495555843e-08,-1.387916204320333578e-08,-1.454007452145111312e-08,-1.520098699969889046e-08,-1.586189947794666946e-08,-1.652281195619444846e-08,-1.718372443444222745e-08,-1.784463691269000645e-08,-1.850554939093778545e-08,-1.916646186918556444e-08,-1.982737434743334344e-08,-2.048828682568112244e-08,-2.114919930392890144e-08,-2.181011178217668043e-08,-2.247102426042445943e-08,-2.313193673867223843e-08,-2.379284921692001742e-08,-2.445376169516779642e-08,-2.511467417341557542e-08,-2.577558665166335442e-08,-2.643649912991113341e-08,-2.709741160815891241e-08,-2.775832408640669141e-08,-2.841923656465447040e-08,-2.908014904290224940e-08,-2.974106152115002840e-08,-3.040197399939780739e-08,-3.106288647764558639e-08,-3.172379895589336539e-08,-3.238471143414114439e-08,-3.304562391238892338e-08,-3.370653639063670238e-08,-3.436744886888448138e-08,-3.502836134713226037e-08,-3.568927382538003937e-08,-3.635018630362781837e-08,-3.701109878187559737e-08,-3.767201126012337636e-08,-3.833292373837115536e-08,-3.899383621661893436e-08,-3.965474869486671335e-08,-4.031566117311449235e-08,-4.097657365136227135e-08,-4.163748612961005034e-08 +0.000000000000000000e+00,6.477748953266802144e-10,1.295549790653360429e-09,1.943324685980040643e-09,2.591099581306720857e-09,3.238874476633401072e-09,3.886649371960081286e-09,4.534424267286761087e-09,5.182199162613440888e-09,5.829974057940120688e-09,6.477748953266800489e-09,7.125523848593480290e-09,7.773298743920160918e-09,8.421073639246841546e-09,9.068848534573522174e-09,9.716623429900202802e-09,1.036439832522688343e-08,1.101217322055356406e-08,1.165994811588024469e-08,1.230772301120692531e-08,1.295549790653360594e-08,1.360327280186028657e-08,1.425104769718696720e-08,1.489882259251364783e-08,1.554659748784032845e-08,1.619437238316700908e-08,1.684214727849368971e-08,1.748992217382037034e-08,1.813769706914705097e-08,1.878547196447373159e-08,1.943324685980041222e-08,2.008102175512709285e-08,2.072879665045377348e-08,2.137657154578045410e-08,2.202434644110713473e-08,2.267212133643381536e-08,2.331989623176049599e-08,2.396767112708717662e-08,2.461544602241385724e-08,2.526322091774053787e-08,2.591099581306721850e-08,2.655877070839389913e-08,2.720654560372057976e-08,2.785432049904726038e-08,2.850209539437394101e-08,2.914987028970062164e-08,2.979764518502730227e-08,3.044542008035398620e-08,3.109319497568067014e-08,3.174096987100735408e-08,3.238874476633403801e-08,3.303651966166072195e-08,3.368429455698740589e-08,3.433206945231408982e-08,3.497984434764077376e-08,3.562761924296745770e-08,3.627539413829414163e-08,3.692316903362082557e-08,3.757094392894750951e-08,3.821871882427419344e-08,3.886649371960087738e-08,3.951426861492756132e-08,4.016204351025424525e-08,4.080981840558092919e-08 +0.000000000000000000e+00,6.551066306024738002e-10,1.310213261204947600e-09,1.965319891807421194e-09,2.620426522409894787e-09,3.275533153012368380e-09,3.930639783614842387e-09,4.585746414217316394e-09,5.240853044819790401e-09,5.895959675422264408e-09,6.551066306024738415e-09,7.206172936627212422e-09,7.861279567229686429e-09,8.516386197832160436e-09,9.171492828434634443e-09,9.826599459037108450e-09,1.048170608963958246e-08,1.113681272024205646e-08,1.179191935084453047e-08,1.244702598144700448e-08,1.310213261204947848e-08,1.375723924265195249e-08,1.441234587325442650e-08,1.506745250385690051e-08,1.572255913445937617e-08,1.637766576506185183e-08,1.703277239566432749e-08,1.768787902626680315e-08,1.834298565686927881e-08,1.899809228747175447e-08,1.965319891807423013e-08,2.030830554867670580e-08,2.096341217927918146e-08,2.161851880988165712e-08,2.227362544048413278e-08,2.292873207108660844e-08,2.358383870168908410e-08,2.423894533229155976e-08,2.489405196289403543e-08,2.554915859349651109e-08,2.620426522409898675e-08,2.685937185470146241e-08,2.751447848530393807e-08,2.816958511590641373e-08,2.882469174650888939e-08,2.947979837711136505e-08,3.013490500771384072e-08,3.079001163831631307e-08,3.144511826891878542e-08,3.210022489952125777e-08,3.275533153012373013e-08,3.341043816072620248e-08,3.406554479132867483e-08,3.472065142193114718e-08,3.537575805253361954e-08,3.603086468313609189e-08,3.668597131373856424e-08,3.734107794434103659e-08,3.799618457494350895e-08,3.865129120554598130e-08,3.930639783614845365e-08,3.996150446675092600e-08,4.061661109735339836e-08,4.127171772795587071e-08 +0.000000000000000000e+00,6.459600075480753163e-10,1.291920015096150633e-09,1.937880022644225949e-09,2.583840030192301265e-09,3.229800037740376582e-09,3.875760045288451898e-09,4.521720052836527214e-09,5.167680060384602531e-09,5.813640067932677847e-09,6.459600075480753163e-09,7.105560083028828480e-09,7.751520090576903796e-09,8.397480098124978285e-09,9.043440105673052774e-09,9.689400113221127263e-09,1.033536012076920175e-08,1.098132012831727624e-08,1.162728013586535073e-08,1.227324014341342522e-08,1.291920015096149971e-08,1.356516015850957420e-08,1.421112016605764869e-08,1.485708017360572318e-08,1.550304018115379767e-08,1.614900018870187215e-08,1.679496019624994664e-08,1.744092020379802113e-08,1.808688021134609562e-08,1.873284021889417011e-08,1.937880022644224460e-08,2.002476023399031909e-08,2.067072024153839358e-08,2.131668024908646807e-08,2.196264025663454256e-08,2.260860026418261705e-08,2.325456027173069154e-08,2.390052027927876602e-08,2.454648028682684051e-08,2.519244029437491500e-08,2.583840030192298949e-08,2.648436030947106398e-08,2.713032031701913847e-08,2.777628032456721296e-08,2.842224033211528745e-08,2.906820033966336194e-08,2.971416034721143643e-08,3.036012035475951422e-08,3.100608036230758871e-08,3.165204036985566320e-08,3.229800037740373769e-08,3.294396038495181218e-08,3.358992039249988667e-08,3.423588040004796116e-08,3.488184040759603565e-08,3.552780041514411014e-08,3.617376042269218463e-08,3.681972043024025912e-08,3.746568043778833361e-08,3.811164044533640809e-08,3.875760045288448258e-08,3.940356046043255707e-08,4.004952046798063156e-08,4.069548047552870605e-08 +0.000000000000000000e+00,-6.477748953352626268e-10,-1.295549790670525254e-09,-1.943324686005787880e-09,-2.591099581341050507e-09,-3.238874476676313134e-09,-3.886649372011575761e-09,-4.534424267346838388e-09,-5.182199162682101014e-09,-5.829974058017363641e-09,-6.477748953352626268e-09,-7.125523848687888895e-09,-7.773298744023151522e-09,-8.421073639358414976e-09,-9.068848534693678430e-09,-9.716623430028941884e-09,-1.036439832536420534e-08,-1.101217322069946879e-08,-1.165994811603473225e-08,-1.230772301136999570e-08,-1.295549790670525915e-08,-1.360327280204052261e-08,-1.425104769737578606e-08,-1.489882259271104952e-08,-1.554659748804631297e-08,-1.619437238338157642e-08,-1.684214727871683988e-08,-1.748992217405210333e-08,-1.813769706938736679e-08,-1.878547196472263024e-08,-1.943324686005789369e-08,-2.008102175539315715e-08,-2.072879665072842060e-08,-2.137657154606368406e-08,-2.202434644139894751e-08,-2.267212133673421096e-08,-2.331989623206947442e-08,-2.396767112740473787e-08,-2.461544602274000133e-08,-2.526322091807526478e-08,-2.591099581341052823e-08,-2.655877070874579169e-08,-2.720654560408105514e-08,-2.785432049941631860e-08,-2.850209539475158205e-08,-2.914987029008684550e-08,-2.979764518542210896e-08,-3.044542008075737241e-08,-3.109319497609263256e-08,-3.174096987142789270e-08,-3.238874476676315285e-08,-3.303651966209841299e-08,-3.368429455743367314e-08,-3.433206945276893328e-08,-3.497984434810419343e-08,-3.562761924343945357e-08,-3.627539413877471372e-08,-3.692316903410997386e-08,-3.757094392944523401e-08,-3.821871882478049415e-08,-3.886649372011575430e-08,-3.951426861545101444e-08,-4.016204351078627459e-08,-4.080981840612153474e-08 +0.000000000000000000e+00,-6.551066306093000048e-10,-1.310213261218600010e-09,-1.965319891827900118e-09,-2.620426522437200433e-09,-3.275533153046500748e-09,-3.930639783655801063e-09,-4.585746414265100964e-09,-5.240853044874400865e-09,-5.895959675483700767e-09,-6.551066306093000668e-09,-7.206172936702300569e-09,-7.861279567311600471e-09,-8.516386197920900372e-09,-9.171492828530200274e-09,-9.826599459139500175e-09,-1.048170608974880008e-08,-1.113681272035809998e-08,-1.179191935096739988e-08,-1.244702598157669978e-08,-1.310213261218599968e-08,-1.375723924279529958e-08,-1.441234587340459948e-08,-1.506745250401389939e-08,-1.572255913462319763e-08,-1.637766576523249588e-08,-1.703277239584179413e-08,-1.768787902645109237e-08,-1.834298565706039062e-08,-1.899809228766968887e-08,-1.965319891827898712e-08,-2.030830554888828536e-08,-2.096341217949758361e-08,-2.161851881010688186e-08,-2.227362544071618010e-08,-2.292873207132547835e-08,-2.358383870193477660e-08,-2.423894533254407484e-08,-2.489405196315337309e-08,-2.554915859376267134e-08,-2.620426522437196959e-08,-2.685937185498126783e-08,-2.751447848559056608e-08,-2.816958511619986433e-08,-2.882469174680916257e-08,-2.947979837741846082e-08,-3.013490500802775907e-08,-3.079001163863706062e-08,-3.144511826924636218e-08,-3.210022489985566373e-08,-3.275533153046496529e-08,-3.341043816107426685e-08,-3.406554479168356840e-08,-3.472065142229286996e-08,-3.537575805290217151e-08,-3.603086468351147307e-08,-3.668597131412077462e-08,-3.734107794473007618e-08,-3.799618457533937774e-08,-3.865129120594867929e-08,-3.930639783655798085e-08,-3.996150446716728240e-08,-4.061661109777658396e-08,-4.127171772838588551e-08 +0.000000000000000000e+00,-6.459600075528573508e-10,-1.291920015105714702e-09,-1.937880022658572156e-09,-2.583840030211429817e-09,-3.229800037764287478e-09,-3.875760045317145139e-09,-4.521720052870002387e-09,-5.167680060422859634e-09,-5.813640067975716881e-09,-6.459600075528574129e-09,-7.105560083081431376e-09,-7.751520090634288624e-09,-8.397480098187145871e-09,-9.043440105740003119e-09,-9.689400113292860366e-09,-1.033536012084571761e-08,-1.098132012839857486e-08,-1.162728013595143211e-08,-1.227324014350428936e-08,-1.291920015105714660e-08,-1.356516015861000385e-08,-1.421112016616286110e-08,-1.485708017371571835e-08,-1.550304018126857394e-08,-1.614900018882142953e-08,-1.679496019637428512e-08,-1.744092020392714072e-08,-1.808688021147999631e-08,-1.873284021903285190e-08,-1.937880022658570750e-08,-2.002476023413856309e-08,-2.067072024169141868e-08,-2.131668024924427428e-08,-2.196264025679712987e-08,-2.260860026434998546e-08,-2.325456027190284106e-08,-2.390052027945569665e-08,-2.454648028700855224e-08,-2.519244029456140784e-08,-2.583840030211426343e-08,-2.648436030966711902e-08,-2.713032031721997461e-08,-2.777628032477283021e-08,-2.842224033232568580e-08,-2.906820033987854139e-08,-2.971416034743139699e-08,-3.036012035498425589e-08,-3.100608036253711479e-08,-3.165204037008997369e-08,-3.229800037764283259e-08,-3.294396038519569150e-08,-3.358992039274855040e-08,-3.423588040030140930e-08,-3.488184040785426820e-08,-3.552780041540712710e-08,-3.617376042295998600e-08,-3.681972043051284491e-08,-3.746568043806570381e-08,-3.811164044561856271e-08,-3.875760045317142161e-08,-3.940356046072428051e-08,-4.004952046827713942e-08,-4.069548047582999832e-08 +0.000000000000000000e+00,6.297151979337802675e-10,1.259430395867560535e-09,1.889145593801340596e-09,2.518860791735120656e-09,3.148575989668900717e-09,3.778291187602681191e-09,4.408006385536461665e-09,5.037721583470242140e-09,5.667436781404022614e-09,6.297151979337803088e-09,6.926867177271583562e-09,7.556582375205364037e-09,8.186297573139144511e-09,8.816012771072924985e-09,9.445727969006705459e-09,1.007544316694048593e-08,1.070515836487426641e-08,1.133487356280804688e-08,1.196458876074182736e-08,1.259430395867560783e-08,1.322401915660938830e-08,1.385373435454316878e-08,1.448344955247694925e-08,1.511316475041073138e-08,1.574287994834451516e-08,1.637259514627829895e-08,1.700231034421208273e-08,1.763202554214586651e-08,1.826174074007965030e-08,1.889145593801343408e-08,1.952117113594721786e-08,2.015088633388100165e-08,2.078060153181478543e-08,2.141031672974856921e-08,2.204003192768235299e-08,2.266974712561613678e-08,2.329946232354992056e-08,2.392917752148370434e-08,2.455889271941748813e-08,2.518860791735127191e-08,2.581832311528505569e-08,2.644803831321883948e-08,2.707775351115262326e-08,2.770746870908640704e-08,2.833718390702019082e-08,2.896689910495397461e-08,2.959661430288775839e-08,3.022632950082154217e-08,3.085604469875532596e-08,3.148575989668910974e-08,3.211547509462289352e-08,3.274519029255667731e-08,3.337490549049046109e-08,3.400462068842424487e-08,3.463433588635802865e-08,3.526405108429181244e-08,3.589376628222559622e-08,3.652348148015938000e-08,3.715319667809316379e-08,3.778291187602694757e-08,3.841262707396073135e-08,3.904234227189451513e-08,3.967205746982829892e-08 +0.000000000000000000e+00,6.389033074376845925e-10,1.277806614875369185e-09,1.916709922313053984e-09,2.555613229750738784e-09,3.194516537188423583e-09,3.833419844626107968e-09,4.472323152063792354e-09,5.111226459501476740e-09,5.750129766939161126e-09,6.389033074376845511e-09,7.027936381814529897e-09,7.666839689252214283e-09,8.305742996689898668e-09,8.944646304127583054e-09,9.583549611565267440e-09,1.022245291900295183e-08,1.086135622644063621e-08,1.150025953387832060e-08,1.213916284131600498e-08,1.277806614875368937e-08,1.341696945619137375e-08,1.405587276362905814e-08,1.469477607106674253e-08,1.533367937850442526e-08,1.597258268594210964e-08,1.661148599337979403e-08,1.725038930081747841e-08,1.788929260825516280e-08,1.852819591569284718e-08,1.916709922313053157e-08,1.980600253056821596e-08,2.044490583800590034e-08,2.108380914544358473e-08,2.172271245288126911e-08,2.236161576031895350e-08,2.300051906775663788e-08,2.363942237519432227e-08,2.427832568263200666e-08,2.491722899006969104e-08,2.555613229750737543e-08,2.619503560494505981e-08,2.683393891238274420e-08,2.747284221982042858e-08,2.811174552725811297e-08,2.875064883469579736e-08,2.938955214213348174e-08,3.002845544957116613e-08,3.066735875700885051e-08,3.130626206444653490e-08,3.194516537188421928e-08,3.258406867932190367e-08,3.322297198675958806e-08,3.386187529419727244e-08,3.450077860163495683e-08,3.513968190907264121e-08,3.577858521651032560e-08,3.641748852394800998e-08,3.705639183138569437e-08,3.769529513882337876e-08,3.833419844626106314e-08,3.897310175369874753e-08,3.961200506113643191e-08,4.025090836857411630e-08 +0.000000000000000000e+00,6.278113310053028487e-10,1.255622662010605697e-09,1.883433993015908546e-09,2.511245324021211395e-09,3.139056655026514244e-09,3.766867986031817092e-09,4.394679317037119941e-09,5.022490648042422790e-09,5.650301979047725639e-09,6.278113310053028487e-09,6.905924641058331336e-09,7.533735972063634185e-09,8.161547303068936206e-09,8.789358634074238228e-09,9.417169965079540250e-09,1.004498129608484227e-08,1.067279262709014429e-08,1.130060395809544631e-08,1.192841528910074834e-08,1.255622662010605036e-08,1.318403795111135238e-08,1.381184928211665440e-08,1.443966061312195642e-08,1.506747194412725844e-08,1.569528327513256047e-08,1.632309460613786249e-08,1.695090593714316451e-08,1.757871726814846653e-08,1.820652859915376855e-08,1.883433993015907057e-08,1.946215126116437259e-08,2.008996259216967462e-08,2.071777392317497664e-08,2.134558525418027866e-08,2.197339658518558068e-08,2.260120791619088270e-08,2.322901924719618472e-08,2.385683057820148675e-08,2.448464190920678877e-08,2.511245324021209079e-08,2.574026457121739281e-08,2.636807590222269483e-08,2.699588723322799685e-08,2.762369856423329887e-08,2.825150989523860090e-08,2.887932122624390292e-08,2.950713255724920494e-08,3.013494388825451027e-08,3.076275521925981891e-08,3.139056655026512755e-08,3.201837788127043619e-08,3.264618921227574483e-08,3.327400054328105346e-08,3.390181187428636210e-08,3.452962320529167074e-08,3.515743453629697938e-08,3.578524586730228802e-08,3.641305719830759666e-08,3.704086852931290530e-08,3.766867986031821394e-08,3.829649119132352258e-08,3.892430252232883122e-08,3.955211385333413985e-08 +0.000000000000000000e+00,-6.297151979459947266e-10,-1.259430395891989453e-09,-1.889145593837984283e-09,-2.518860791783979320e-09,-3.148575989729974357e-09,-3.778291187675969393e-09,-4.408006385621964017e-09,-5.037721583567958640e-09,-5.667436781513953263e-09,-6.297151979459947886e-09,-6.926867177405942509e-09,-7.556582375351937132e-09,-8.186297573297931756e-09,-8.816012771243926379e-09,-9.445727969189921002e-09,-1.007544316713591563e-08,-1.070515836508191025e-08,-1.133487356302790487e-08,-1.196458876097389949e-08,-1.259430395891989412e-08,-1.322401915686588874e-08,-1.385373435481188336e-08,-1.448344955275787799e-08,-1.511316475070387096e-08,-1.574287994864986392e-08,-1.637259514659585689e-08,-1.700231034454184986e-08,-1.763202554248784283e-08,-1.826174074043383580e-08,-1.889145593837982877e-08,-1.952117113632582174e-08,-2.015088633427181471e-08,-2.078060153221780768e-08,-2.141031673016380064e-08,-2.204003192810979361e-08,-2.266974712605578658e-08,-2.329946232400177955e-08,-2.392917752194777252e-08,-2.455889271989376549e-08,-2.518860791783975846e-08,-2.581832311578575143e-08,-2.644803831373174439e-08,-2.707775351167773736e-08,-2.770746870962373033e-08,-2.833718390756972330e-08,-2.896689910551571627e-08,-2.959661430346170924e-08,-3.022632950140770221e-08,-3.085604469935369518e-08,-3.148575989729968815e-08,-3.211547509524568111e-08,-3.274519029319167408e-08,-3.337490549113766705e-08,-3.400462068908366002e-08,-3.463433588702965299e-08,-3.526405108497564596e-08,-3.589376628292163893e-08,-3.652348148086763190e-08,-3.715319667881362486e-08,-3.778291187675961783e-08,-3.841262707470561080e-08,-3.904234227265160377e-08,-3.967205747059759674e-08 +0.000000000000000000e+00,-6.389033074480651922e-10,-1.277806614896130384e-09,-1.916709922344195680e-09,-2.555613229792261182e-09,-3.194516537240326685e-09,-3.833419844688392187e-09,-4.472323152136457689e-09,-5.111226459584523192e-09,-5.750129767032588694e-09,-6.389033074480654197e-09,-7.027936381928719699e-09,-7.666839689376786029e-09,-8.305742996824853185e-09,-8.944646304272920342e-09,-9.583549611720987499e-09,-1.022245291916905466e-08,-1.086135622661712181e-08,-1.150025953406518897e-08,-1.213916284151325613e-08,-1.277806614896132328e-08,-1.341696945640939044e-08,-1.405587276385745760e-08,-1.469477607130552475e-08,-1.533367937875359191e-08,-1.597258268620165907e-08,-1.661148599364972622e-08,-1.725038930109779338e-08,-1.788929260854586054e-08,-1.852819591599392769e-08,-1.916709922344199485e-08,-1.980600253089006201e-08,-2.044490583833812916e-08,-2.108380914578619632e-08,-2.172271245323426348e-08,-2.236161576068233063e-08,-2.300051906813039779e-08,-2.363942237557846495e-08,-2.427832568302653210e-08,-2.491722899047459926e-08,-2.555613229792266642e-08,-2.619503560537073357e-08,-2.683393891281880073e-08,-2.747284222026686789e-08,-2.811174552771493504e-08,-2.875064883516300220e-08,-2.938955214261106936e-08,-3.002845545005913651e-08,-3.066735875750720367e-08,-3.130626206495527083e-08,-3.194516537240333798e-08,-3.258406867985140514e-08,-3.322297198729947230e-08,-3.386187529474753945e-08,-3.450077860219560661e-08,-3.513968190964367377e-08,-3.577858521709174092e-08,-3.641748852453980808e-08,-3.705639183198787524e-08,-3.769529513943594240e-08,-3.833419844688400955e-08,-3.897310175433207671e-08,-3.961200506178014387e-08,-4.025090836922821102e-08 +0.000000000000000000e+00,-6.278113310118382994e-10,-1.255622662023676599e-09,-1.883433993035514795e-09,-2.511245324047352784e-09,-3.139056655059190773e-09,-3.766867986071028762e-09,-4.394679317082867165e-09,-5.022490648094705568e-09,-5.650301979106543970e-09,-6.278113310118382373e-09,-6.905924641130220776e-09,-7.533735972142059179e-09,-8.161547303153897581e-09,-8.789358634165735984e-09,-9.417169965177574387e-09,-1.004498129618941279e-08,-1.067279262720125119e-08,-1.130060395821308960e-08,-1.192841528922492800e-08,-1.255622662023676640e-08,-1.318403795124860480e-08,-1.381184928226044321e-08,-1.443966061327228161e-08,-1.506747194428412167e-08,-1.569528327529596172e-08,-1.632309460630780178e-08,-1.695090593731964184e-08,-1.757871726833148189e-08,-1.820652859934332195e-08,-1.883433993035516201e-08,-1.946215126136700207e-08,-2.008996259237884212e-08,-2.071777392339068218e-08,-2.134558525440252224e-08,-2.197339658541436229e-08,-2.260120791642620235e-08,-2.322901924743804241e-08,-2.385683057844988247e-08,-2.448464190946172252e-08,-2.511245324047356258e-08,-2.574026457148540264e-08,-2.636807590249724269e-08,-2.699588723350908275e-08,-2.762369856452092281e-08,-2.825150989553276287e-08,-2.887932122654460292e-08,-2.950713255755644298e-08,-3.013494388856828304e-08,-3.076275521958012309e-08,-3.139056655059196315e-08,-3.201837788160380321e-08,-3.264618921261564327e-08,-3.327400054362748332e-08,-3.390181187463932338e-08,-3.452962320565116344e-08,-3.515743453666300349e-08,-3.578524586767484355e-08,-3.641305719868668361e-08,-3.704086852969852367e-08,-3.766867986071036372e-08,-3.829649119172220378e-08,-3.892430252273404384e-08,-3.955211385374588389e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.844521663323017381e-10,1.368904332664603476e-09,2.053356498996905111e-09,2.737808665329206539e-09,3.422260831661507967e-09,4.106712997993809395e-09,4.791165164326110822e-09,5.475617330658412250e-09,6.160069496990713678e-09,6.844521663323015106e-09,7.528973829655317361e-09,8.213425995987620444e-09,8.897878162319923526e-09,9.582330328652226608e-09,1.026678249498452969e-08,1.095123466131683277e-08,1.163568682764913585e-08,1.232013899398143894e-08,1.300459116031374202e-08,1.368904332664604510e-08,1.437349549297834818e-08,1.505794765931065127e-08,1.574239982564295435e-08,1.642685199197525743e-08,1.711130415830756051e-08,1.779575632463986360e-08,1.848020849097216668e-08,1.916466065730446976e-08,1.984911282363677284e-08,2.053356498996907592e-08,2.121801715630137901e-08,2.190246932263368209e-08,2.258692148896598517e-08,2.327137365529828825e-08,2.395582582163059134e-08,2.464027798796289442e-08,2.532473015429519750e-08,2.600918232062750058e-08,2.669363448695980366e-08,2.737808665329210675e-08,2.806253881962440983e-08,2.874699098595671291e-08,2.943144315228901599e-08,3.011589531862132238e-08,3.080034748495362547e-08,3.148479965128592855e-08,3.216925181761823163e-08,3.285370398395053471e-08,3.353815615028283780e-08,3.422260831661514088e-08,3.490706048294744396e-08,3.559151264927974704e-08,3.627596481561205013e-08,3.696041698194435321e-08,3.764486914827665629e-08,3.832932131460895937e-08,3.901377348094126245e-08,3.969822564727356554e-08,4.038267781360586862e-08,4.106712997993817170e-08,4.175158214627047478e-08,4.243603431260277787e-08,4.312048647893508095e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.763057454997132316e-10,1.352611490999426463e-09,2.028917236499139798e-09,2.705222981998853340e-09,3.381528727498566882e-09,4.057834472998280424e-09,4.734140218497993965e-09,5.410445963997707507e-09,6.086751709497421049e-09,6.763057454997134591e-09,7.439363200496848133e-09,8.115668945996562502e-09,8.791974691496276043e-09,9.468280436995989585e-09,1.014458618249570313e-08,1.082089192799541667e-08,1.149719767349513021e-08,1.217350341899484375e-08,1.284980916449455729e-08,1.352611490999427084e-08,1.420242065549398438e-08,1.487872640099369792e-08,1.555503214649341146e-08,1.623133789199312500e-08,1.690764363749283855e-08,1.758394938299255209e-08,1.826025512849226563e-08,1.893656087399197917e-08,1.961286661949169271e-08,2.028917236499140625e-08,2.096547811049111980e-08,2.164178385599083334e-08,2.231808960149054688e-08,2.299439534699026042e-08,2.367070109248997396e-08,2.434700683798968751e-08,2.502331258348940105e-08,2.569961832898911459e-08,2.637592407448882813e-08,2.705222981998854167e-08,2.772853556548825521e-08,2.840484131098796876e-08,2.908114705648768230e-08,2.975745280198739584e-08,3.043375854748710607e-08,3.111006429298681631e-08,3.178637003848652654e-08,3.246267578398623677e-08,3.313898152948594700e-08,3.381528727498565724e-08,3.449159302048536747e-08,3.516789876598507770e-08,3.584420451148478794e-08,3.652051025698449817e-08,3.719681600248420840e-08,3.787312174798391864e-08,3.854942749348362887e-08,3.922573323898333910e-08,3.990203898448304934e-08,4.057834472998275957e-08,4.125465047548246980e-08,4.193095622098218004e-08,4.260726196648189027e-08 +0.000000000000000000e+00,6.659881567916784221e-10,1.331976313583356844e-09,1.997964470375035266e-09,2.663952627166713688e-09,3.329940783958392111e-09,3.995928940750070533e-09,4.661917097541748955e-09,5.327905254333427377e-09,5.993893411125105799e-09,6.659881567916784221e-09,7.325869724708462643e-09,7.991857881500141065e-09,8.657846038291819487e-09,9.323834195083497909e-09,9.989822351875176332e-09,1.065581050866685475e-08,1.132179866545853318e-08,1.198778682225021160e-08,1.265377497904189002e-08,1.331976313583356844e-08,1.398575129262524686e-08,1.465173944941692529e-08,1.531772760620860371e-08,1.598371576300028213e-08,1.664970391979196055e-08,1.731569207658363897e-08,1.798168023337531740e-08,1.864766839016699582e-08,1.931365654695867424e-08,1.997964470375035266e-08,2.064563286054203109e-08,2.131162101733370951e-08,2.197760917412538793e-08,2.264359733091706635e-08,2.330958548770874477e-08,2.397557364450042320e-08,2.464156180129210162e-08,2.530754995808378004e-08,2.597353811487545846e-08,2.663952627166713688e-08,2.730551442845881531e-08,2.797150258525049373e-08,2.863749074204217215e-08,2.930347889883385057e-08,2.996946705562552899e-08,3.063545521241720742e-08,3.130144336920888584e-08,3.196743152600056426e-08,3.263341968279224268e-08,3.329940783958392111e-08,3.396539599637559953e-08,3.463138415316727795e-08,3.529737230995895637e-08,3.596336046675063479e-08,3.662934862354231322e-08,3.729533678033399164e-08,3.796132493712567006e-08,3.862731309391734848e-08,3.929330125070902690e-08,3.995928940750070533e-08,4.062527756429238375e-08,4.129126572108406217e-08,4.195725387787574059e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.844521663334207067e-10,-1.368904332666841413e-09,-2.053356499000262223e-09,-2.737808665333683240e-09,-3.422260831667104257e-09,-4.106712998000525274e-09,-4.791165164333946704e-09,-5.475617330667368135e-09,-6.160069497000789565e-09,-6.844521663334210996e-09,-7.528973829667632426e-09,-8.213425996001053857e-09,-8.897878162334475287e-09,-9.582330328667896718e-09,-1.026678249500131815e-08,-1.095123466133473958e-08,-1.163568682766816101e-08,-1.232013899400158244e-08,-1.300459116033500387e-08,-1.368904332666842530e-08,-1.437349549300184673e-08,-1.505794765933526816e-08,-1.574239982566868959e-08,-1.642685199200211102e-08,-1.711130415833553245e-08,-1.779575632466895388e-08,-1.848020849100237531e-08,-1.916466065733579674e-08,-1.984911282366921817e-08,-2.053356499000263960e-08,-2.121801715633606104e-08,-2.190246932266948247e-08,-2.258692148900290390e-08,-2.327137365533632533e-08,-2.395582582166974676e-08,-2.464027798800316819e-08,-2.532473015433658962e-08,-2.600918232067001105e-08,-2.669363448700343248e-08,-2.737808665333685391e-08,-2.806253881967027534e-08,-2.874699098600369677e-08,-2.943144315233711820e-08,-3.011589531867054294e-08,-3.080034748500397099e-08,-3.148479965133739904e-08,-3.216925181767082708e-08,-3.285370398400425513e-08,-3.353815615033768318e-08,-3.422260831667111123e-08,-3.490706048300453928e-08,-3.559151264933796732e-08,-3.627596481567139537e-08,-3.696041698200482342e-08,-3.764486914833825147e-08,-3.832932131467167951e-08,-3.901377348100510756e-08,-3.969822564733853561e-08,-4.038267781367196366e-08,-4.106712998000539171e-08,-4.175158214633881975e-08,-4.243603431267224780e-08,-4.312048647900567585e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.763057455000667479e-10,-1.352611491000133496e-09,-2.028917236500200244e-09,-2.705222982000266992e-09,-3.381528727500333740e-09,-4.057834473000400488e-09,-4.734140218500467236e-09,-5.410445964000533983e-09,-6.086751709500600731e-09,-6.763057455000667479e-09,-7.439363200500734227e-09,-8.115668946000800975e-09,-8.791974691500868550e-09,-9.468280437000936125e-09,-1.014458618250100370e-08,-1.082089192800107128e-08,-1.149719767350113885e-08,-1.217350341900120643e-08,-1.284980916450127400e-08,-1.352611491000134158e-08,-1.420242065550140915e-08,-1.487872640100147673e-08,-1.555503214650154430e-08,-1.623133789200161188e-08,-1.690764363750167945e-08,-1.758394938300174703e-08,-1.826025512850181460e-08,-1.893656087400188218e-08,-1.961286661950194975e-08,-2.028917236500201733e-08,-2.096547811050208490e-08,-2.164178385600215248e-08,-2.231808960150222005e-08,-2.299439534700228763e-08,-2.367070109250235520e-08,-2.434700683800242278e-08,-2.502331258350249035e-08,-2.569961832900255793e-08,-2.637592407450262550e-08,-2.705222982000269308e-08,-2.772853556550276065e-08,-2.840484131100282823e-08,-2.908114705650289580e-08,-2.975745280200296338e-08,-3.043375854750302765e-08,-3.111006429300309522e-08,-3.178637003850316280e-08,-3.246267578400323037e-08,-3.313898152950329795e-08,-3.381528727500336552e-08,-3.449159302050343310e-08,-3.516789876600350067e-08,-3.584420451150356825e-08,-3.652051025700363582e-08,-3.719681600250370340e-08,-3.787312174800377097e-08,-3.854942749350383855e-08,-3.922573323900390612e-08,-3.990203898450397370e-08,-4.057834473000404127e-08,-4.125465047550410885e-08,-4.193095622100417642e-08,-4.260726196650424400e-08 +0.000000000000000000e+00,-6.659881567926436385e-10,-1.331976313585287277e-09,-1.997964470377930812e-09,-2.663952627170574140e-09,-3.329940783963217469e-09,-3.995928940755860797e-09,-4.661917097548503712e-09,-5.327905254341146626e-09,-5.993893411133789541e-09,-6.659881567926432456e-09,-7.325869724719075370e-09,-7.991857881511718285e-09,-8.657846038304361200e-09,-9.323834195097004115e-09,-9.989822351889647029e-09,-1.065581050868228994e-08,-1.132179866547493286e-08,-1.198778682226757577e-08,-1.265377497906021869e-08,-1.331976313585286160e-08,-1.398575129264550452e-08,-1.465173944943814743e-08,-1.531772760623079200e-08,-1.598371576302343657e-08,-1.664970391981608114e-08,-1.731569207660872571e-08,-1.798168023340137028e-08,-1.864766839019401485e-08,-1.931365654698665942e-08,-1.997964470377930398e-08,-2.064563286057194855e-08,-2.131162101736459312e-08,-2.197760917415723769e-08,-2.264359733094988226e-08,-2.330958548774252683e-08,-2.397557364453517140e-08,-2.464156180132781597e-08,-2.530754995812046054e-08,-2.597353811491310511e-08,-2.663952627170574968e-08,-2.730551442849839424e-08,-2.797150258529103881e-08,-2.863749074208368338e-08,-2.930347889887632795e-08,-2.996946705566897252e-08,-3.063545521246161709e-08,-3.130144336925426166e-08,-3.196743152604690623e-08,-3.263341968283955080e-08,-3.329940783963219537e-08,-3.396539599642483993e-08,-3.463138415321748450e-08,-3.529737231001012907e-08,-3.596336046680277364e-08,-3.662934862359541821e-08,-3.729533678038806278e-08,-3.796132493718070735e-08,-3.862731309397335192e-08,-3.929330125076599649e-08,-3.995928940755864106e-08,-4.062527756435128563e-08,-4.129126572114393019e-08,-4.195725387793657476e-08 +0.000000000000000000e+00,6.888369009200525389e-10,1.377673801840105078e-09,2.066510702760157720e-09,2.755347603680210569e-09,3.444184504600263418e-09,4.133021405520316267e-09,4.821858306440369116e-09,5.510695207360421965e-09,6.199532108280474814e-09,6.888369009200527663e-09,7.577205910120581340e-09,8.266042811040634189e-09,8.954879711960687038e-09,9.643716612880739887e-09,1.033255351380079274e-08,1.102139041472084559e-08,1.171022731564089843e-08,1.239906421656095128e-08,1.308790111748100413e-08,1.377673801840105698e-08,1.446557491932110983e-08,1.515441182024116268e-08,1.584324872116121553e-08,1.653208562208126838e-08,1.722092252300132123e-08,1.790975942392137408e-08,1.859859632484142692e-08,1.928743322576147977e-08,1.997627012668153262e-08,2.066510702760158547e-08,2.135394392852163832e-08,2.204278082944169117e-08,2.273161773036174402e-08,2.342045463128179687e-08,2.410929153220184972e-08,2.479812843312190257e-08,2.548696533404195542e-08,2.617580223496200826e-08,2.686463913588206111e-08,2.755347603680211396e-08,2.824231293772216681e-08,2.893114983864221966e-08,2.961998673956227251e-08,3.030882364048232536e-08,3.099766054140237821e-08,3.168649744232243106e-08,3.237533434324248391e-08,3.306417124416253676e-08,3.375300814508258960e-08,3.444184504600264245e-08,3.513068194692269530e-08,3.581951884784274815e-08,3.650835574876280100e-08,3.719719264968285385e-08,3.788602955060290670e-08,3.857486645152295955e-08,3.926370335244301240e-08,3.995254025336306525e-08,4.064137715428311809e-08,4.133021405520317094e-08,4.201905095612322379e-08,4.270788785704327664e-08,4.339672475796332949e-08 +0.000000000000000000e+00,6.943976584289347453e-10,1.388795316857869491e-09,2.083192975286804443e-09,2.777590633715739395e-09,3.471988292144674347e-09,4.166385950573608886e-09,4.860783609002543424e-09,5.555181267431477963e-09,6.249578925860412501e-09,6.943976584289347040e-09,7.638374242718282405e-09,8.332771901147217771e-09,9.027169559576153137e-09,9.721567218005088502e-09,1.041596487643402387e-08,1.111036253486295923e-08,1.180476019329189460e-08,1.249915785172082997e-08,1.319355551014976533e-08,1.388795316857870070e-08,1.458235082700763606e-08,1.527674848543657143e-08,1.597114614386550679e-08,1.666554380229444216e-08,1.735994146072337753e-08,1.805433911915231289e-08,1.874873677758124826e-08,1.944313443601018362e-08,2.013753209443911899e-08,2.083192975286805435e-08,2.152632741129698972e-08,2.222072506972592509e-08,2.291512272815486045e-08,2.360952038658379582e-08,2.430391804501273118e-08,2.499831570344166655e-08,2.569271336187060191e-08,2.638711102029953728e-08,2.708150867872847265e-08,2.777590633715740801e-08,2.847030399558634338e-08,2.916470165401527874e-08,2.985909931244421411e-08,3.055349697087314947e-08,3.124789462930208484e-08,3.194229228773102020e-08,3.263668994615995557e-08,3.333108760458889094e-08,3.402548526301782630e-08,3.471988292144676167e-08,3.541428057987569703e-08,3.610867823830463240e-08,3.680307589673356776e-08,3.749747355516250313e-08,3.819187121359143850e-08,3.888626887202037386e-08,3.958066653044930923e-08,4.027506418887824459e-08,4.096946184730717996e-08,4.166385950573611532e-08,4.235825716416505069e-08,4.305265482259398606e-08,4.374705248102292142e-08 +0.000000000000000000e+00,6.734504817226676844e-10,1.346900963445335369e-09,2.020351445168002950e-09,2.693801926890670324e-09,3.367252408613337698e-09,4.040702890336005072e-09,4.714153372058672033e-09,5.387603853781338994e-09,6.061054335504005954e-09,6.734504817226672915e-09,7.407955298949339875e-09,8.081405780672006836e-09,8.754856262394673797e-09,9.428306744117340757e-09,1.010175722584000772e-08,1.077520770756267468e-08,1.144865818928534164e-08,1.212210867100800860e-08,1.279555915273067556e-08,1.346900963445334252e-08,1.414246011617600948e-08,1.481591059789867644e-08,1.548936107962134175e-08,1.616281156134400705e-08,1.683626204306667236e-08,1.750971252478933767e-08,1.818316300651200297e-08,1.885661348823466828e-08,1.953006396995733359e-08,2.020351445167999889e-08,2.087696493340266420e-08,2.155041541512532950e-08,2.222386589684799481e-08,2.289731637857066012e-08,2.357076686029332542e-08,2.424421734201599073e-08,2.491766782373865604e-08,2.559111830546132134e-08,2.626456878718398665e-08,2.693801926890665195e-08,2.761146975062931726e-08,2.828492023235198257e-08,2.895837071407464787e-08,2.963182119579731318e-08,3.030527167751997849e-08,3.097872215924264379e-08,3.165217264096530910e-08,3.232562312268797440e-08,3.299907360441063971e-08,3.367252408613330502e-08,3.434597456785597032e-08,3.501942504957863563e-08,3.569287553130130094e-08,3.636632601302396624e-08,3.703977649474663155e-08,3.771322697646929685e-08,3.838667745819196216e-08,3.906012793991462747e-08,3.973357842163729277e-08,4.040702890335995808e-08,4.108047938508262339e-08,4.175392986680528869e-08,4.242738034852795400e-08 +0.000000000000000000e+00,-6.888369009240398596e-10,-1.377673801848079719e-09,-2.066510702772119579e-09,-2.755347603696159438e-09,-3.444184504620199298e-09,-4.133021405544239158e-09,-4.821858306468279017e-09,-5.510695207392318877e-09,-6.199532108316358737e-09,-6.888369009240398596e-09,-7.577205910164438456e-09,-8.266042811088478315e-09,-8.954879712012518175e-09,-9.643716612936558035e-09,-1.033255351386059789e-08,-1.102139041478463775e-08,-1.171022731570867761e-08,-1.239906421663271747e-08,-1.308790111755675733e-08,-1.377673801848079719e-08,-1.446557491940483705e-08,-1.515441182032887691e-08,-1.584324872125291677e-08,-1.653208562217695663e-08,-1.722092252310099649e-08,-1.790975942402503635e-08,-1.859859632494907621e-08,-1.928743322587311607e-08,-1.997627012679715593e-08,-2.066510702772119579e-08,-2.135394392864523565e-08,-2.204278082956927551e-08,-2.273161773049331537e-08,-2.342045463141735523e-08,-2.410929153234139509e-08,-2.479812843326543495e-08,-2.548696533418947481e-08,-2.617580223511351467e-08,-2.686463913603755453e-08,-2.755347603696159438e-08,-2.824231293788563424e-08,-2.893114983880967410e-08,-2.961998673973371396e-08,-3.030882364065775382e-08,-3.099766054158179699e-08,-3.168649744250584016e-08,-3.237533434342988333e-08,-3.306417124435392650e-08,-3.375300814527796966e-08,-3.444184504620201283e-08,-3.513068194712605600e-08,-3.581951884805009917e-08,-3.650835574897414234e-08,-3.719719264989818551e-08,-3.788602955082222867e-08,-3.857486645174627184e-08,-3.926370335267031501e-08,-3.995254025359435818e-08,-4.064137715451840135e-08,-4.133021405544244452e-08,-4.201905095636648769e-08,-4.270788785729053085e-08,-4.339672475821457402e-08 +0.000000000000000000e+00,-6.943976584312852824e-10,-1.388795316862570565e-09,-2.083192975293855744e-09,-2.777590633725140716e-09,-3.471988292156425688e-09,-4.166385950587710661e-09,-4.860783609018995219e-09,-5.555181267450279778e-09,-6.249578925881564337e-09,-6.943976584312848895e-09,-7.638374242744133454e-09,-8.332771901175418012e-09,-9.027169559606702571e-09,-9.721567218037987130e-09,-1.041596487646927169e-08,-1.111036253490055625e-08,-1.180476019333184081e-08,-1.249915785176312536e-08,-1.319355551019440992e-08,-1.388795316862569448e-08,-1.458235082705697904e-08,-1.527674848548826360e-08,-1.597114614391954816e-08,-1.666554380235083272e-08,-1.735994146078211727e-08,-1.805433911921340183e-08,-1.874873677764468639e-08,-1.944313443607597095e-08,-2.013753209450725551e-08,-2.083192975293854007e-08,-2.152632741136982463e-08,-2.222072506980110919e-08,-2.291512272823239374e-08,-2.360952038666367830e-08,-2.430391804509496286e-08,-2.499831570352624742e-08,-2.569271336195753198e-08,-2.638711102038881654e-08,-2.708150867882010110e-08,-2.777590633725138565e-08,-2.847030399568267021e-08,-2.916470165411395477e-08,-2.985909931254523602e-08,-3.055349697097652058e-08,-3.124789462940780514e-08,-3.194229228783908970e-08,-3.263668994627037426e-08,-3.333108760470165881e-08,-3.402548526313294337e-08,-3.471988292156422793e-08,-3.541428057999551249e-08,-3.610867823842679705e-08,-3.680307589685808161e-08,-3.749747355528936617e-08,-3.819187121372065073e-08,-3.888626887215193528e-08,-3.958066653058321984e-08,-4.027506418901450440e-08,-4.096946184744578896e-08,-4.166385950587707352e-08,-4.235825716430835808e-08,-4.305265482273964264e-08,-4.374705248117092719e-08 +0.000000000000000000e+00,-6.734504817259982237e-10,-1.346900963451996447e-09,-2.020351445177994878e-09,-2.693801926903993308e-09,-3.367252408629991739e-09,-4.040702890355989756e-09,-4.714153372081987773e-09,-5.387603853807985790e-09,-6.061054335533983807e-09,-6.734504817259981824e-09,-7.407955298985979841e-09,-8.081405780711977858e-09,-8.754856262437976702e-09,-9.428306744163975546e-09,-1.010175722588997439e-08,-1.077520770761597323e-08,-1.144865818934197208e-08,-1.212210867106797092e-08,-1.279555915279396977e-08,-1.346900963451996861e-08,-1.414246011624596745e-08,-1.481591059797196630e-08,-1.548936107969796514e-08,-1.616281156142396564e-08,-1.683626204314996614e-08,-1.750971252487596664e-08,-1.818316300660196714e-08,-1.885661348832796764e-08,-1.953006397005396813e-08,-2.020351445177996863e-08,-2.087696493350596913e-08,-2.155041541523196963e-08,-2.222386589695797013e-08,-2.289731637868397063e-08,-2.357076686040997112e-08,-2.424421734213597162e-08,-2.491766782386197212e-08,-2.559111830558797262e-08,-2.626456878731397312e-08,-2.693801926903997362e-08,-2.761146975076597412e-08,-2.828492023249197461e-08,-2.895837071421797511e-08,-2.963182119594397561e-08,-3.030527167766997611e-08,-3.097872215939597661e-08,-3.165217264112197711e-08,-3.232562312284797760e-08,-3.299907360457397810e-08,-3.367252408629997860e-08,-3.434597456802597910e-08,-3.501942504975197960e-08,-3.569287553147798010e-08,-3.636632601320398060e-08,-3.703977649492998109e-08,-3.771322697665598159e-08,-3.838667745838198209e-08,-3.906012794010798259e-08,-3.973357842183398309e-08,-4.040702890355998359e-08,-4.108047938528598408e-08,-4.175392986701198458e-08,-4.242738034873798508e-08 +0.000000000000000000e+00,6.773211886928302809e-10,1.354642377385660562e-09,2.031963566078490636e-09,2.709284754771320710e-09,3.386605943464150784e-09,4.063927132156981272e-09,4.741248320849811760e-09,5.418569509542642247e-09,6.095890698235472735e-09,6.773211886928303223e-09,7.450533075621133710e-09,8.127854264313964198e-09,8.805175453006793859e-09,9.482496641699623519e-09,1.015981783039245318e-08,1.083713901908528284e-08,1.151446020777811250e-08,1.219178139647094216e-08,1.286910258516377182e-08,1.354642377385660148e-08,1.422374496254943114e-08,1.490106615124226080e-08,1.557838733993509046e-08,1.625570852862791847e-08,1.693302971732074648e-08,1.761035090601357448e-08,1.828767209470640249e-08,1.896499328339923049e-08,1.964231447209205850e-08,2.031963566078488651e-08,2.099695684947771451e-08,2.167427803817054252e-08,2.235159922686337053e-08,2.302892041555619853e-08,2.370624160424902654e-08,2.438356279294185454e-08,2.506088398163468255e-08,2.573820517032751056e-08,2.641552635902033856e-08,2.709284754771316657e-08,2.777016873640599458e-08,2.844748992509882258e-08,2.912481111379165059e-08,2.980213230248447859e-08,3.047945349117730660e-08,3.115677467987013461e-08,3.183409586856296261e-08,3.251141705725579062e-08,3.318873824594861862e-08,3.386605943464144663e-08,3.454338062333427464e-08,3.522070181202710264e-08,3.589802300071993065e-08,3.657534418941275866e-08,3.725266537810558666e-08,3.792998656679841467e-08,3.860730775549124267e-08,3.928462894418407068e-08,3.996195013287689869e-08,4.063927132156972669e-08,4.131659251026255470e-08,4.199391369895538270e-08,4.267123488764821071e-08 +0.000000000000000000e+00,6.826964342898618985e-10,1.365392868579723797e-09,2.048089302869585799e-09,2.730785737159448008e-09,3.413482171449310216e-09,4.096178605739172425e-09,4.778875040029034220e-09,5.461571474318896015e-09,6.144267908608757810e-09,6.826964342898619605e-09,7.509660777188481400e-09,8.192357211478343195e-09,8.875053645768204990e-09,9.557750080058066786e-09,1.024044651434792858e-08,1.092314294863779038e-08,1.160583938292765217e-08,1.228853581721751397e-08,1.297123225150737576e-08,1.365392868579723756e-08,1.433662512008709935e-08,1.501932155437695949e-08,1.570201798866682129e-08,1.638471442295668308e-08,1.706741085724654488e-08,1.775010729153640667e-08,1.843280372582626847e-08,1.911550016011613026e-08,1.979819659440599206e-08,2.048089302869585385e-08,2.116358946298571565e-08,2.184628589727557744e-08,2.252898233156543924e-08,2.321167876585530103e-08,2.389437520014516283e-08,2.457707163443502462e-08,2.525976806872488642e-08,2.594246450301474821e-08,2.662516093730461001e-08,2.730785737159447180e-08,2.799055380588433360e-08,2.867325024017419539e-08,2.935594667446405719e-08,3.003864310875391898e-08,3.072133954304378078e-08,3.140403597733364257e-08,3.208673241162350437e-08,3.276942884591336616e-08,3.345212528020322796e-08,3.413482171449308975e-08,3.481751814878295155e-08,3.550021458307281334e-08,3.618291101736267514e-08,3.686560745165253693e-08,3.754830388594239873e-08,3.823100032023226052e-08,3.891369675452212232e-08,3.959639318881198411e-08,4.027908962310184591e-08,4.096178605739170770e-08,4.164448249168156950e-08,4.232717892597143130e-08,4.300987536026129309e-08 +0.000000000000000000e+00,6.609124782428042295e-10,1.321824956485608459e-09,1.982737434728412585e-09,2.643649912971216504e-09,3.304562391214020423e-09,3.965474869456824343e-09,4.626387347699628676e-09,5.287299825942433008e-09,5.948212304185237341e-09,6.609124782428041674e-09,7.270037260670846007e-09,7.930949738913650340e-09,8.591862217156454673e-09,9.252774695399259006e-09,9.913687173642063338e-09,1.057459965188486767e-08,1.123551213012767200e-08,1.189642460837047634e-08,1.255733708661328067e-08,1.321824956485608500e-08,1.387916204309888934e-08,1.454007452134169367e-08,1.520098699958449800e-08,1.586189947782730399e-08,1.652281195607010998e-08,1.718372443431291596e-08,1.784463691255572195e-08,1.850554939079852794e-08,1.916646186904133392e-08,1.982737434728413991e-08,2.048828682552694590e-08,2.114919930376975189e-08,2.181011178201255787e-08,2.247102426025536386e-08,2.313193673849816985e-08,2.379284921674097583e-08,2.445376169498378182e-08,2.511467417322658781e-08,2.577558665146939380e-08,2.643649912971219978e-08,2.709741160795500577e-08,2.775832408619781176e-08,2.841923656444061775e-08,2.908014904268342373e-08,2.974106152092622972e-08,3.040197399916903571e-08,3.106288647741184500e-08,3.172379895565465430e-08,3.238471143389746359e-08,3.304562391214027289e-08,3.370653639038308219e-08,3.436744886862589148e-08,3.502836134686870078e-08,3.568927382511151007e-08,3.635018630335431937e-08,3.701109878159712867e-08,3.767201125983993796e-08,3.833292373808274726e-08,3.899383621632555655e-08,3.965474869456836585e-08,4.031566117281117515e-08,4.097657365105398444e-08,4.163748612929679374e-08 +0.000000000000000000e+00,-6.773211887010978477e-10,-1.354642377402195695e-09,-2.031963566103293647e-09,-2.709284754804391805e-09,-3.386605943505489962e-09,-4.063927132206588120e-09,-4.741248320907686278e-09,-5.418569509608784436e-09,-6.095890698309882594e-09,-6.773211887010980752e-09,-7.450533075712078910e-09,-8.127854264413177895e-09,-8.805175453114277707e-09,-9.482496641815377520e-09,-1.015981783051647733e-08,-1.083713901921757714e-08,-1.151446020791867696e-08,-1.219178139661977677e-08,-1.286910258532087658e-08,-1.354642377402197639e-08,-1.422374496272307621e-08,-1.490106615142417602e-08,-1.557838734012527583e-08,-1.625570852882637564e-08,-1.693302971752747546e-08,-1.761035090622857527e-08,-1.828767209492967508e-08,-1.896499328363077489e-08,-1.964231447233187470e-08,-2.031963566103297452e-08,-2.099695684973407433e-08,-2.167427803843517414e-08,-2.235159922713627395e-08,-2.302892041583737377e-08,-2.370624160453847358e-08,-2.438356279323957339e-08,-2.506088398194067320e-08,-2.573820517064177301e-08,-2.641552635934287283e-08,-2.709284754804397264e-08,-2.777016873674507245e-08,-2.844748992544617226e-08,-2.912481111414727208e-08,-2.980213230284837189e-08,-3.047945349154947170e-08,-3.115677468025057151e-08,-3.183409586895167133e-08,-3.251141705765277114e-08,-3.318873824635387095e-08,-3.386605943505497076e-08,-3.454338062375607057e-08,-3.522070181245717039e-08,-3.589802300115827020e-08,-3.657534418985937001e-08,-3.725266537856046982e-08,-3.792998656726156964e-08,-3.860730775596266945e-08,-3.928462894466376926e-08,-3.996195013336486907e-08,-4.063927132206596889e-08,-4.131659251076706870e-08,-4.199391369946816851e-08,-4.267123488816926832e-08 +0.000000000000000000e+00,-6.826964342958221484e-10,-1.365392868591644297e-09,-2.048089302887466549e-09,-2.730785737183289007e-09,-3.413482171479111466e-09,-4.096178605774933924e-09,-4.778875040070756383e-09,-5.461571474366578841e-09,-6.144267908662401300e-09,-6.826964342958223759e-09,-7.509660777254045390e-09,-8.192357211549866194e-09,-8.875053645845686998e-09,-9.557750080141507803e-09,-1.024044651443732861e-08,-1.092314294873314941e-08,-1.160583938302897022e-08,-1.228853581732479102e-08,-1.297123225162061182e-08,-1.365392868591643263e-08,-1.433662512021225343e-08,-1.501932155450807424e-08,-1.570201798880389504e-08,-1.638471442309971584e-08,-1.706741085739553665e-08,-1.775010729169135745e-08,-1.843280372598717826e-08,-1.911550016028299906e-08,-1.979819659457881987e-08,-2.048089302887464067e-08,-2.116358946317046147e-08,-2.184628589746628228e-08,-2.252898233176210308e-08,-2.321167876605792389e-08,-2.389437520035374469e-08,-2.457707163464956550e-08,-2.525976806894538630e-08,-2.594246450324120710e-08,-2.662516093753702791e-08,-2.730785737183284871e-08,-2.799055380612866952e-08,-2.867325024042449032e-08,-2.935594667472031112e-08,-3.003864310901612862e-08,-3.072133954331194612e-08,-3.140403597760776361e-08,-3.208673241190358111e-08,-3.276942884619939860e-08,-3.345212528049521610e-08,-3.413482171479103359e-08,-3.481751814908685109e-08,-3.550021458338266858e-08,-3.618291101767848608e-08,-3.686560745197430358e-08,-3.754830388627012107e-08,-3.823100032056593857e-08,-3.891369675486175606e-08,-3.959639318915757356e-08,-4.027908962345339105e-08,-4.096178605774920855e-08,-4.164448249204502604e-08,-4.232717892634084354e-08,-4.300987536063666103e-08 +0.000000000000000000e+00,-6.609124782497301093e-10,-1.321824956499460219e-09,-1.982737434749190121e-09,-2.643649912998920024e-09,-3.304562391248649926e-09,-3.965474869498380242e-09,-4.626387347748110558e-09,-5.287299825997840875e-09,-5.948212304247571191e-09,-6.609124782497301507e-09,-7.270037260747031823e-09,-7.930949738996762139e-09,-8.591862217246491628e-09,-9.252774695496221117e-09,-9.913687173745950606e-09,-1.057459965199568009e-08,-1.123551213024540958e-08,-1.189642460849513907e-08,-1.255733708674486856e-08,-1.321824956499459805e-08,-1.387916204324432754e-08,-1.454007452149405703e-08,-1.520098699974378652e-08,-1.586189947799351435e-08,-1.652281195624324219e-08,-1.718372443449297002e-08,-1.784463691274269786e-08,-1.850554939099242569e-08,-1.916646186924215352e-08,-1.982737434749188136e-08,-2.048828682574160919e-08,-2.114919930399133703e-08,-2.181011178224106486e-08,-2.247102426049079270e-08,-2.313193673874052053e-08,-2.379284921699024837e-08,-2.445376169523997620e-08,-2.511467417348970404e-08,-2.577558665173943187e-08,-2.643649912998915971e-08,-2.709741160823888754e-08,-2.775832408648861537e-08,-2.841923656473834321e-08,-2.908014904298807104e-08,-2.974106152123779888e-08,-3.040197399948752671e-08,-3.106288647773725124e-08,-3.172379895598697576e-08,-3.238471143423670029e-08,-3.304562391248642482e-08,-3.370653639073614934e-08,-3.436744886898587387e-08,-3.502836134723559839e-08,-3.568927382548532292e-08,-3.635018630373504745e-08,-3.701109878198477197e-08,-3.767201126023449650e-08,-3.833292373848422102e-08,-3.899383621673394555e-08,-3.965474869498367007e-08,-4.031566117323339460e-08,-4.097657365148311913e-08,-4.163748612973284365e-08 +0.000000000000000000e+00,6.630303559543306433e-10,1.326060711908661287e-09,1.989091067862991930e-09,2.652121423817322573e-09,3.315151779771653216e-09,3.978182135725983860e-09,4.641212491680314916e-09,5.304242847634645973e-09,5.967273203588977030e-09,6.630303559543308087e-09,7.293333915497639144e-09,7.956364271451969374e-09,8.619394627406299603e-09,9.282424983360629833e-09,9.945455339314960063e-09,1.060848569526929029e-08,1.127151605122362052e-08,1.193454640717795075e-08,1.259757676313228098e-08,1.326060711908661121e-08,1.392363747504094144e-08,1.458666783099527167e-08,1.524969818694960190e-08,1.591272854290393213e-08,1.657575889885826236e-08,1.723878925481259259e-08,1.790181961076692282e-08,1.856484996672125305e-08,1.922788032267558328e-08,1.989091067862991351e-08,2.055394103458424374e-08,2.121697139053857397e-08,2.188000174649290420e-08,2.254303210244723443e-08,2.320606245840156466e-08,2.386909281435589489e-08,2.453212317031022512e-08,2.519515352626455535e-08,2.585818388221888558e-08,2.652121423817321580e-08,2.718424459412754603e-08,2.784727495008187626e-08,2.851030530603620649e-08,2.917333566199053672e-08,2.983636601794486364e-08,3.049939637389919057e-08,3.116242672985351749e-08,3.182545708580784441e-08,3.248848744176217133e-08,3.315151779771649825e-08,3.381454815367082517e-08,3.447757850962515209e-08,3.514060886557947901e-08,3.580363922153380593e-08,3.646666957748813285e-08,3.712969993344245977e-08,3.779273028939678670e-08,3.845576064535111362e-08,3.911879100130544054e-08,3.978182135725976746e-08,4.044485171321409438e-08,4.110788206916842130e-08,4.177091242512274822e-08 +0.000000000000000000e+00,6.705985851335004824e-10,1.341197170267000965e-09,2.011795755400501240e-09,2.682394340534001516e-09,3.352992925667501792e-09,4.023591510801002481e-09,4.694190095934503170e-09,5.364788681068003859e-09,6.035387266201504549e-09,6.705985851335005238e-09,7.376584436468505927e-09,8.047183021602006616e-09,8.717781606735507306e-09,9.388380191869007995e-09,1.005897877700250868e-08,1.072957736213600937e-08,1.140017594726951006e-08,1.207077453240301075e-08,1.274137311753651144e-08,1.341197170267001213e-08,1.408257028780351282e-08,1.475316887293701351e-08,1.542376745807051585e-08,1.609436604320401654e-08,1.676496462833751723e-08,1.743556321347101792e-08,1.810616179860451861e-08,1.877676038373801930e-08,1.944735896887151999e-08,2.011795755400502068e-08,2.078855613913852137e-08,2.145915472427202206e-08,2.212975330940552274e-08,2.280035189453902343e-08,2.347095047967252412e-08,2.414154906480602481e-08,2.481214764993952550e-08,2.548274623507302619e-08,2.615334482020652688e-08,2.682394340534002757e-08,2.749454199047352826e-08,2.816514057560702895e-08,2.883573916074052964e-08,2.950633774587403033e-08,3.017693633100753102e-08,3.084753491614103170e-08,3.151813350127453239e-08,3.218873208640803308e-08,3.285933067154153377e-08,3.352992925667503446e-08,3.420052784180853515e-08,3.487112642694203584e-08,3.554172501207553653e-08,3.621232359720903722e-08,3.688292218234253791e-08,3.755352076747603860e-08,3.822411935260953929e-08,3.889471793774303998e-08,3.956531652287654066e-08,4.023591510801004135e-08,4.090651369314354204e-08,4.157711227827704273e-08,4.224771086341054342e-08 +0.000000000000000000e+00,6.459600075447430192e-10,1.291920015089486038e-09,1.937880022634229058e-09,2.583840030178972077e-09,3.229800037723715096e-09,3.875760045268458115e-09,4.521720052813201548e-09,5.167680060357944981e-09,5.813640067902688414e-09,6.459600075447431847e-09,7.105560082992175280e-09,7.751520090536917885e-09,8.397480098081660491e-09,9.043440105626403096e-09,9.689400113171145702e-09,1.033536012071588831e-08,1.098132012826063091e-08,1.162728013580537352e-08,1.227324014335011612e-08,1.291920015089485873e-08,1.356516015843960134e-08,1.421112016598434394e-08,1.485708017352908655e-08,1.550304018107382915e-08,1.614900018861857176e-08,1.679496019616331436e-08,1.744092020370805697e-08,1.808688021125279958e-08,1.873284021879754218e-08,1.937880022634228479e-08,2.002476023388702739e-08,2.067072024143177000e-08,2.131668024897651260e-08,2.196264025652125521e-08,2.260860026406599781e-08,2.325456027161074042e-08,2.390052027915548303e-08,2.454648028670022563e-08,2.519244029424496824e-08,2.583840030178971084e-08,2.648436030933445345e-08,2.713032031687919605e-08,2.777628032442393866e-08,2.842224033196868127e-08,2.906820033951342387e-08,2.971416034705816648e-08,3.036012035460290577e-08,3.100608036214764507e-08,3.165204036969238437e-08,3.229800037723712366e-08,3.294396038478186296e-08,3.358992039232660226e-08,3.423588039987134156e-08,3.488184040741608085e-08,3.552780041496082015e-08,3.617376042250555945e-08,3.681972043005029874e-08,3.746568043759503804e-08,3.811164044513977734e-08,3.875760045268451663e-08,3.940356046022925593e-08,4.004952046777399523e-08,4.069548047531873452e-08 +0.000000000000000000e+00,-6.630303559682290353e-10,-1.326060711936458071e-09,-1.989091067904687209e-09,-2.652121423872916555e-09,-3.315151779841145900e-09,-3.978182135809375246e-09,-4.641212491777604591e-09,-5.304242847745833937e-09,-5.967273203714063282e-09,-6.630303559682292628e-09,-7.293333915650521973e-09,-7.956364271618752146e-09,-8.619394627586982319e-09,-9.282424983555212492e-09,-9.945455339523442664e-09,-1.060848569549167284e-08,-1.127151605145990301e-08,-1.193454640742813318e-08,-1.259757676339636336e-08,-1.326060711936459353e-08,-1.392363747533282370e-08,-1.458666783130105387e-08,-1.524969818726928405e-08,-1.591272854323751422e-08,-1.657575889920574439e-08,-1.723878925517397456e-08,-1.790181961114220474e-08,-1.856484996711043491e-08,-1.922788032307866508e-08,-1.989091067904689525e-08,-2.055394103501512543e-08,-2.121697139098335560e-08,-2.188000174695158577e-08,-2.254303210291981595e-08,-2.320606245888804612e-08,-2.386909281485627629e-08,-2.453212317082450646e-08,-2.519515352679273664e-08,-2.585818388276096681e-08,-2.652121423872919698e-08,-2.718424459469742715e-08,-2.784727495066565733e-08,-2.851030530663388750e-08,-2.917333566260211767e-08,-2.983636601857034454e-08,-3.049939637453857471e-08,-3.116242673050680488e-08,-3.182545708647503505e-08,-3.248848744244326523e-08,-3.315151779841149540e-08,-3.381454815437972557e-08,-3.447757851034795575e-08,-3.514060886631618592e-08,-3.580363922228441609e-08,-3.646666957825264626e-08,-3.712969993422087644e-08,-3.779273029018910661e-08,-3.845576064615733678e-08,-3.911879100212556695e-08,-3.978182135809379713e-08,-4.044485171406202730e-08,-4.110788207003025747e-08,-4.177091242599848764e-08 +0.000000000000000000e+00,-6.705985851444331218e-10,-1.341197170288866244e-09,-2.011795755433299365e-09,-2.682394340577732487e-09,-3.352992925722165609e-09,-4.023591510866598731e-09,-4.694190096011032266e-09,-5.364788681155465802e-09,-6.035387266299899337e-09,-6.705985851444332872e-09,-7.376584436588766408e-09,-8.047183021733199116e-09,-8.717781606877631824e-09,-9.388380192022064532e-09,-1.005897877716649724e-08,-1.072957736231092995e-08,-1.140017594745536266e-08,-1.207077453259979537e-08,-1.274137311774422807e-08,-1.341197170288866078e-08,-1.408257028803309349e-08,-1.475316887317752620e-08,-1.542376745832195891e-08,-1.609436604346639161e-08,-1.676496462861082432e-08,-1.743556321375525703e-08,-1.810616179889968974e-08,-1.877676038404412245e-08,-1.944735896918855516e-08,-2.011795755433298786e-08,-2.078855613947742057e-08,-2.145915472462185328e-08,-2.212975330976628599e-08,-2.280035189491071870e-08,-2.347095048005515140e-08,-2.414154906519958411e-08,-2.481214765034401682e-08,-2.548274623548844953e-08,-2.615334482063288224e-08,-2.682394340577731495e-08,-2.749454199092174765e-08,-2.816514057606618036e-08,-2.883573916121061307e-08,-2.950633774635504578e-08,-3.017693633149947849e-08,-3.084753491664391119e-08,-3.151813350178834390e-08,-3.218873208693277661e-08,-3.285933067207720932e-08,-3.352992925722164203e-08,-3.420052784236607474e-08,-3.487112642751050744e-08,-3.554172501265494015e-08,-3.621232359779937286e-08,-3.688292218294380557e-08,-3.755352076808823828e-08,-3.822411935323267098e-08,-3.889471793837710369e-08,-3.956531652352153640e-08,-4.023591510866596911e-08,-4.090651369381040182e-08,-4.157711227895483453e-08,-4.224771086409926723e-08 +0.000000000000000000e+00,-6.459600075562025726e-10,-1.291920015112405145e-09,-1.937880022668607925e-09,-2.583840030224810704e-09,-3.229800037781013484e-09,-3.875760045337215849e-09,-4.521720052893418215e-09,-5.167680060449620581e-09,-5.813640068005822947e-09,-6.459600075562025313e-09,-7.105560083118227679e-09,-7.751520090674430045e-09,-8.397480098230632410e-09,-9.043440105786834776e-09,-9.689400113343037142e-09,-1.033536012089923951e-08,-1.098132012845544187e-08,-1.162728013601164424e-08,-1.227324014356784661e-08,-1.291920015112404897e-08,-1.356516015868025134e-08,-1.421112016623645370e-08,-1.485708017379265607e-08,-1.550304018134885678e-08,-1.614900018890505749e-08,-1.679496019646125820e-08,-1.744092020401745891e-08,-1.808688021157365963e-08,-1.873284021912986034e-08,-1.937880022668606105e-08,-2.002476023424226176e-08,-2.067072024179846247e-08,-2.131668024935466318e-08,-2.196264025691086390e-08,-2.260860026446706461e-08,-2.325456027202326532e-08,-2.390052027957946603e-08,-2.454648028713566674e-08,-2.519244029469186745e-08,-2.583840030224806816e-08,-2.648436030980426888e-08,-2.713032031736046959e-08,-2.777628032491667030e-08,-2.842224033247287101e-08,-2.906820034002907172e-08,-2.971416034758527243e-08,-3.036012035514147314e-08,-3.100608036269767386e-08,-3.165204037025387457e-08,-3.229800037781007528e-08,-3.294396038536627599e-08,-3.358992039292247670e-08,-3.423588040047867741e-08,-3.488184040803487812e-08,-3.552780041559107884e-08,-3.617376042314727955e-08,-3.681972043070348026e-08,-3.746568043825968097e-08,-3.811164044581588168e-08,-3.875760045337208239e-08,-3.940356046092828311e-08,-4.004952046848448382e-08,-4.069548047604068453e-08 +0.000000000000000000e+00,6.468493220900033032e-10,1.293698644180006606e-09,1.940547966270009910e-09,2.587397288360013213e-09,3.234246610450016516e-09,3.881095932540019819e-09,4.527945254630023536e-09,5.174794576720027253e-09,5.821643898810030969e-09,6.468493220900034686e-09,7.115342542990038403e-09,7.762191865080041292e-09,8.409041187170044182e-09,9.055890509260047072e-09,9.702739831350049961e-09,1.034958915344005285e-08,1.099643847553005574e-08,1.164328779762005863e-08,1.229013711971006152e-08,1.293698644180006441e-08,1.358383576389006730e-08,1.423068508598007019e-08,1.487753440807007308e-08,1.552438373016007597e-08,1.617123305225007886e-08,1.681808237434008175e-08,1.746493169643008464e-08,1.811178101852008753e-08,1.875863034061009042e-08,1.940547966270009331e-08,2.005232898479009619e-08,2.069917830688009908e-08,2.134602762897010197e-08,2.199287695106010486e-08,2.263972627315010775e-08,2.328657559524011064e-08,2.393342491733011353e-08,2.458027423942011642e-08,2.522712356151011931e-08,2.587397288360012220e-08,2.652082220569012509e-08,2.716767152778012798e-08,2.781452084987013087e-08,2.846137017196013376e-08,2.910821949405013665e-08,2.975506881614013954e-08,3.040191813823014243e-08,3.104876746032014532e-08,3.169561678241014821e-08,3.234246610450015110e-08,3.298931542659015399e-08,3.363616474868015688e-08,3.428301407077015977e-08,3.492986339286016266e-08,3.557671271495016554e-08,3.622356203704016843e-08,3.687041135913017132e-08,3.751726068122017421e-08,3.816411000331017710e-08,3.881095932540017999e-08,3.945780864749018288e-08,4.010465796958018577e-08,4.075150729167018866e-08 +0.000000000000000000e+00,6.550802739714573230e-10,1.310160547942914646e-09,1.965240821914371866e-09,2.620321095885828878e-09,3.275401369857285891e-09,3.930481643828742904e-09,4.585561917800200330e-09,5.240642191771657757e-09,5.895722465743115183e-09,6.550802739714572610e-09,7.205883013686030036e-09,7.860963287657487463e-09,8.516043561628944889e-09,9.171123835600402315e-09,9.826204109571859742e-09,1.048128438354331717e-08,1.113636465751477459e-08,1.179144493148623202e-08,1.244652520545768945e-08,1.310160547942914687e-08,1.375668575340060430e-08,1.441176602737206173e-08,1.506684630134352081e-08,1.572192657531497823e-08,1.637700684928643566e-08,1.703208712325789309e-08,1.768716739722935051e-08,1.834224767120080794e-08,1.899732794517226537e-08,1.965240821914372279e-08,2.030748849311518022e-08,2.096256876708663765e-08,2.161764904105809507e-08,2.227272931502955250e-08,2.292780958900100992e-08,2.358288986297246735e-08,2.423797013694392478e-08,2.489305041091538220e-08,2.554813068488683963e-08,2.620321095885829706e-08,2.685829123282975448e-08,2.751337150680121191e-08,2.816845178077266934e-08,2.882353205474412676e-08,2.947861232871558419e-08,3.013369260268704161e-08,3.078877287665849904e-08,3.144385315062995647e-08,3.209893342460141389e-08,3.275401369857287132e-08,3.340909397254432875e-08,3.406417424651578617e-08,3.471925452048724360e-08,3.537433479445870103e-08,3.602941506843015845e-08,3.668449534240161588e-08,3.733957561637307331e-08,3.799465589034453073e-08,3.864973616431598816e-08,3.930481643828744558e-08,3.995989671225890301e-08,4.061497698623036044e-08,4.127005726020181786e-08 +0.000000000000000000e+00,6.278113310002476378e-10,1.255622662000495276e-09,1.883433993000743017e-09,2.511245324000990965e-09,3.139056655001238913e-09,3.766867986001486861e-09,4.394679317001734809e-09,5.022490648001982757e-09,5.650301979002230705e-09,6.278113310002478653e-09,6.905924641002726601e-09,7.533735972002975376e-09,8.161547303003224979e-09,8.789358634003474581e-09,9.417169965003724183e-09,1.004498129600397379e-08,1.067279262700422339e-08,1.130060395800447299e-08,1.192841528900472259e-08,1.255622662000497220e-08,1.318403795100522180e-08,1.381184928200547140e-08,1.443966061300572100e-08,1.506747194400597060e-08,1.569528327500622021e-08,1.632309460600646981e-08,1.695090593700671941e-08,1.757871726800696901e-08,1.820652859900721862e-08,1.883433993000746822e-08,1.946215126100771782e-08,2.008996259200796742e-08,2.071777392300821703e-08,2.134558525400846663e-08,2.197339658500871623e-08,2.260120791600896583e-08,2.322901924700921544e-08,2.385683057800946504e-08,2.448464190900971464e-08,2.511245324000996424e-08,2.574026457101021385e-08,2.636807590201046345e-08,2.699588723301071305e-08,2.762369856401096265e-08,2.825150989501121225e-08,2.887932122601146186e-08,2.950713255701171146e-08,3.013494388801196106e-08,3.076275521901220736e-08,3.139056655001245365e-08,3.201837788101269994e-08,3.264618921201294624e-08,3.327400054301319253e-08,3.390181187401343882e-08,3.452962320501368512e-08,3.515743453601393141e-08,3.578524586701417770e-08,3.641305719801442400e-08,3.704086852901467029e-08,3.766867986001491659e-08,3.829649119101516288e-08,3.892430252201540917e-08,3.955211385301565547e-08 +0.000000000000000000e+00,-6.468493221105651520e-10,-1.293698644221130304e-09,-1.940547966331695663e-09,-2.587397288442261022e-09,-3.234246610552826381e-09,-3.881095932663391326e-09,-4.527945254773956271e-09,-5.174794576884521216e-09,-5.821643898995086162e-09,-6.468493221105651107e-09,-7.115342543216216052e-09,-7.762191865326780997e-09,-8.409041187437345943e-09,-9.055890509547910888e-09,-9.702739831658475833e-09,-1.034958915376904078e-08,-1.099643847587960572e-08,-1.164328779799017067e-08,-1.229013712010073561e-08,-1.293698644221130056e-08,-1.358383576432186550e-08,-1.423068508643243045e-08,-1.487753440854299540e-08,-1.552438373065355869e-08,-1.617123305276412198e-08,-1.681808237487468527e-08,-1.746493169698524856e-08,-1.811178101909581185e-08,-1.875863034120637514e-08,-1.940547966331693843e-08,-2.005232898542750172e-08,-2.069917830753806501e-08,-2.134602762964862830e-08,-2.199287695175919159e-08,-2.263972627386975489e-08,-2.328657559598031818e-08,-2.393342491809088147e-08,-2.458027424020144476e-08,-2.522712356231200805e-08,-2.587397288442257134e-08,-2.652082220653313463e-08,-2.716767152864369792e-08,-2.781452085075426121e-08,-2.846137017286482450e-08,-2.910821949497538779e-08,-2.975506881708595109e-08,-3.040191813919651438e-08,-3.104876746130707767e-08,-3.169561678341764096e-08,-3.234246610552820425e-08,-3.298931542763876754e-08,-3.363616474974933083e-08,-3.428301407185989412e-08,-3.492986339397045741e-08,-3.557671271608102070e-08,-3.622356203819158399e-08,-3.687041136030214729e-08,-3.751726068241271058e-08,-3.816411000452327387e-08,-3.881095932663383716e-08,-3.945780864874440045e-08,-4.010465797085496374e-08,-4.075150729296552703e-08 +0.000000000000000000e+00,-6.550802739885728273e-10,-1.310160547977145655e-09,-1.965240821965718689e-09,-2.620321095954291723e-09,-3.275401369942864757e-09,-3.930481643931437377e-09,-4.585561917920009998e-09,-5.240642191908582618e-09,-5.895722465897155239e-09,-6.550802739885727859e-09,-7.205883013874300479e-09,-7.860963287862873100e-09,-8.516043561851444893e-09,-9.171123835840016686e-09,-9.826204109828588480e-09,-1.048128438381716027e-08,-1.113636465780573207e-08,-1.179144493179430386e-08,-1.244652520578287565e-08,-1.310160547977144745e-08,-1.375668575376001924e-08,-1.441176602774859103e-08,-1.506684630173716283e-08,-1.572192657572573627e-08,-1.637700684971430972e-08,-1.703208712370288317e-08,-1.768716739769145662e-08,-1.834224767168003006e-08,-1.899732794566860351e-08,-1.965240821965717696e-08,-2.030748849364575041e-08,-2.096256876763432385e-08,-2.161764904162289730e-08,-2.227272931561147075e-08,-2.292780958960004420e-08,-2.358288986358861765e-08,-2.423797013757719109e-08,-2.489305041156576454e-08,-2.554813068555433799e-08,-2.620321095954291144e-08,-2.685829123353148488e-08,-2.751337150752005833e-08,-2.816845178150863178e-08,-2.882353205549720523e-08,-2.947861232948577867e-08,-3.013369260347435212e-08,-3.078877287746292888e-08,-3.144385315145150563e-08,-3.209893342544008239e-08,-3.275401369942865915e-08,-3.340909397341723590e-08,-3.406417424740581266e-08,-3.471925452139438942e-08,-3.537433479538296617e-08,-3.602941506937154293e-08,-3.668449534336011969e-08,-3.733957561734869644e-08,-3.799465589133727320e-08,-3.864973616532584995e-08,-3.930481643931442671e-08,-3.995989671330300347e-08,-4.061497698729158022e-08,-4.127005726128015698e-08 +0.000000000000000000e+00,-6.278113310168862724e-10,-1.255622662033772545e-09,-1.883433993050658817e-09,-2.511245324067545090e-09,-3.139056655084431362e-09,-3.766867986101317635e-09,-4.394679317118204321e-09,-5.022490648135091007e-09,-5.650301979151977693e-09,-6.278113310168864379e-09,-6.905924641185751065e-09,-7.533735972202636924e-09,-8.161547303219522783e-09,-8.789358634236408641e-09,-9.417169965253294500e-09,-1.004498129627018036e-08,-1.067279262728706622e-08,-1.130060395830395208e-08,-1.192841528932083794e-08,-1.255622662033772379e-08,-1.318403795135460965e-08,-1.381184928237149551e-08,-1.443966061338838137e-08,-1.506747194440526723e-08,-1.569528327542215309e-08,-1.632309460643903895e-08,-1.695090593745592481e-08,-1.757871726847281067e-08,-1.820652859948969652e-08,-1.883433993050658238e-08,-1.946215126152346824e-08,-2.008996259254035410e-08,-2.071777392355723996e-08,-2.134558525457412582e-08,-2.197339658559101168e-08,-2.260120791660789754e-08,-2.322901924762478340e-08,-2.385683057864166925e-08,-2.448464190965855511e-08,-2.511245324067544097e-08,-2.574026457169232683e-08,-2.636807590270921269e-08,-2.699588723372609855e-08,-2.762369856474298441e-08,-2.825150989575987027e-08,-2.887932122677675612e-08,-2.950713255779364198e-08,-3.013494388881052784e-08,-3.076275521982741039e-08,-3.139056655084429294e-08,-3.201837788186117549e-08,-3.264618921287805804e-08,-3.327400054389494059e-08,-3.390181187491182314e-08,-3.452962320592870569e-08,-3.515743453694558824e-08,-3.578524586796247079e-08,-3.641305719897935334e-08,-3.704086852999623589e-08,-3.766867986101311844e-08,-3.829649119203000099e-08,-3.892430252304688354e-08,-3.955211385406376609e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.316189739144685344e-10,1.463237947828937069e-09,2.194856921743405500e-09,2.926475895657873724e-09,3.658094869572341948e-09,4.389713843486810172e-09,5.121332817401277983e-09,5.852951791315745793e-09,6.584570765230213604e-09,7.316189739144681415e-09,8.047808713059149225e-09,8.779427686973617036e-09,9.511046660888084846e-09,1.024266563480255266e-08,1.097428460871702047e-08,1.170590358263148828e-08,1.243752255654595609e-08,1.316914153046042390e-08,1.390076050437489171e-08,1.463237947828935952e-08,1.536399845220382899e-08,1.609561742611829845e-08,1.682723640003276792e-08,1.755885537394723738e-08,1.829047434786170685e-08,1.902209332177617631e-08,1.975371229569064578e-08,2.048533126960511524e-08,2.121695024351958471e-08,2.194856921743405417e-08,2.268018819134852363e-08,2.341180716526299310e-08,2.414342613917746256e-08,2.487504511309193203e-08,2.560666408700640149e-08,2.633828306092087096e-08,2.706990203483534042e-08,2.780152100874980989e-08,2.853313998266427935e-08,2.926475895657874882e-08,2.999637793049321828e-08,3.072799690440768444e-08,3.145961587832215060e-08,3.219123485223661675e-08,3.292285382615108291e-08,3.365447280006554907e-08,3.438609177398001522e-08,3.511771074789448138e-08,3.584932972180894753e-08,3.658094869572341369e-08,3.731256766963787985e-08,3.804418664355234600e-08,3.877580561746681216e-08,3.950742459138127832e-08,4.023904356529574447e-08,4.097066253921021063e-08,4.170228151312467678e-08,4.243390048703914294e-08,4.316551946095360910e-08,4.389713843486807525e-08,4.462875740878254141e-08,4.536037638269700757e-08,4.609199535661147372e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.403540568289543430e-10,1.480708113657908686e-09,2.221062170486862926e-09,2.961416227315816959e-09,3.701770284144770991e-09,4.442124340973725024e-09,5.182478397802679057e-09,5.922832454631633090e-09,6.663186511460587123e-09,7.403540568289541156e-09,8.143894625118495188e-09,8.884248681947448394e-09,9.624602738776401600e-09,1.036495679560535481e-08,1.110531085243430801e-08,1.184566490926326122e-08,1.258601896609221442e-08,1.332637302292116763e-08,1.406672707975012083e-08,1.480708113657907404e-08,1.554743519340802559e-08,1.628778925023697714e-08,1.702814330706592869e-08,1.776849736389488024e-08,1.850885142072383180e-08,1.924920547755278335e-08,1.998955953438173490e-08,2.072991359121068645e-08,2.147026764803963800e-08,2.221062170486858955e-08,2.295097576169754110e-08,2.369132981852649265e-08,2.443168387535544421e-08,2.517203793218439576e-08,2.591239198901334731e-08,2.665274604584229886e-08,2.739310010267125041e-08,2.813345415950020196e-08,2.887380821632915351e-08,2.961416227315810507e-08,3.035451632998705662e-08,3.109487038681601148e-08,3.183522444364496634e-08,3.257557850047392120e-08,3.331593255730287606e-08,3.405628661413183092e-08,3.479664067096078578e-08,3.553699472778974064e-08,3.627734878461869550e-08,3.701770284144765036e-08,3.775805689827660522e-08,3.849841095510556008e-08,3.923876501193451494e-08,3.997911906876346980e-08,4.071947312559242466e-08,4.145982718242137952e-08,4.220018123925033438e-08,4.294053529607928924e-08,4.368088935290824410e-08,4.442124340973719896e-08,4.516159746656615382e-08,4.590195152339510868e-08,4.664230558022406354e-08 +0.000000000000000000e+00,6.994777046053896221e-10,1.398955409210779244e-09,2.098433113816168970e-09,2.797910818421558902e-09,3.497388523026948834e-09,4.196866227632338766e-09,4.896343932237728285e-09,5.595821636843117804e-09,6.295299341448507323e-09,6.994777046053896841e-09,7.694254750659286360e-09,8.393732455264675879e-09,9.093210159870065397e-09,9.792687864475454916e-09,1.049216556908084443e-08,1.119164327368623395e-08,1.189112097829162347e-08,1.259059868289701299e-08,1.329007638750240251e-08,1.398955409210779203e-08,1.468903179671318155e-08,1.538850950131857272e-08,1.608798720592396389e-08,1.678746491052935507e-08,1.748694261513474624e-08,1.818642031974013741e-08,1.888589802434552859e-08,1.958537572895091976e-08,2.028485343355631093e-08,2.098433113816170210e-08,2.168380884276709328e-08,2.238328654737248445e-08,2.308276425197787562e-08,2.378224195658326680e-08,2.448171966118865797e-08,2.518119736579404914e-08,2.588067507039944032e-08,2.658015277500483149e-08,2.727963047961022266e-08,2.797910818421561383e-08,2.867858588882100501e-08,2.937806359342639618e-08,3.007754129803178735e-08,3.077701900263717853e-08,3.147649670724256970e-08,3.217597441184796087e-08,3.287545211645335205e-08,3.357492982105874322e-08,3.427440752566413439e-08,3.497388523026952557e-08,3.567336293487491674e-08,3.637284063948030791e-08,3.707231834408569908e-08,3.777179604869109026e-08,3.847127375329648143e-08,3.917075145790187260e-08,3.987022916250726378e-08,4.056970686711265495e-08,4.126918457171804612e-08,4.196866227632343730e-08,4.266813998092882847e-08,4.336761768553421964e-08,4.406709539013961081e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.316189739157916098e-10,-1.463237947831583220e-09,-2.194856921747374726e-09,-2.926475895663166025e-09,-3.658094869578957325e-09,-4.389713843494748625e-09,-5.121332817410539924e-09,-5.852951791326331224e-09,-6.584570765242122523e-09,-7.316189739157913823e-09,-8.047808713073705950e-09,-8.779427686989498904e-09,-9.511046660905291857e-09,-1.024266563482108481e-08,-1.097428460873687777e-08,-1.170590358265267072e-08,-1.243752255656846367e-08,-1.316914153048425663e-08,-1.390076050440004958e-08,-1.463237947831584253e-08,-1.536399845223163549e-08,-1.609561742614742844e-08,-1.682723640006322140e-08,-1.755885537397901435e-08,-1.829047434789480730e-08,-1.902209332181060026e-08,-1.975371229572639321e-08,-2.048533126964218617e-08,-2.121695024355797912e-08,-2.194856921747377207e-08,-2.268018819138956503e-08,-2.341180716530535798e-08,-2.414342613922115094e-08,-2.487504511313694389e-08,-2.560666408705273684e-08,-2.633828306096852980e-08,-2.706990203488432275e-08,-2.780152100880011571e-08,-2.853313998271590866e-08,-2.926475895663170161e-08,-2.999637793054749457e-08,-3.072799690446328421e-08,-3.145961587837907386e-08,-3.219123485229486350e-08,-3.292285382621065315e-08,-3.365447280012644279e-08,-3.438609177404223244e-08,-3.511771074795802208e-08,-3.584932972187381173e-08,-3.658094869578960137e-08,-3.731256766970539102e-08,-3.804418664362118066e-08,-3.877580561753697031e-08,-3.950742459145275996e-08,-4.023904356536854960e-08,-4.097066253928433925e-08,-4.170228151320012889e-08,-4.243390048711591854e-08,-4.316551946103170818e-08,-4.389713843494749783e-08,-4.462875740886328747e-08,-4.536037638277907712e-08,-4.609199535669486676e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.403540568293546984e-10,-1.480708113658709397e-09,-2.221062170488063992e-09,-2.961416227317418380e-09,-3.701770284146772768e-09,-4.442124340976127157e-09,-5.182478397805481545e-09,-5.922832454634835933e-09,-6.663186511464190321e-09,-7.403540568293544710e-09,-8.143894625122899098e-09,-8.884248681952252659e-09,-9.624602738781606220e-09,-1.036495679561095978e-08,-1.110531085244031334e-08,-1.184566490926966690e-08,-1.258601896609902046e-08,-1.332637302292837403e-08,-1.406672707975772759e-08,-1.480708113658708115e-08,-1.554743519341643636e-08,-1.628778925024579158e-08,-1.702814330707514679e-08,-1.776849736390450201e-08,-1.850885142073385722e-08,-1.924920547756321244e-08,-1.998955953439256766e-08,-2.072991359122192287e-08,-2.147026764805127809e-08,-2.221062170488063330e-08,-2.295097576170998852e-08,-2.369132981853934373e-08,-2.443168387536869895e-08,-2.517203793219805416e-08,-2.591239198902740938e-08,-2.665274604585676459e-08,-2.739310010268611981e-08,-2.813345415951547503e-08,-2.887380821634483024e-08,-2.961416227317418546e-08,-3.035451633000354067e-08,-3.109487038683289920e-08,-3.183522444366225772e-08,-3.257557850049161624e-08,-3.331593255732097477e-08,-3.405628661415033329e-08,-3.479664067097969182e-08,-3.553699472780905034e-08,-3.627734878463840886e-08,-3.701770284146776739e-08,-3.775805689829712591e-08,-3.849841095512648444e-08,-3.923876501195584296e-08,-3.997911906878520149e-08,-4.071947312561456001e-08,-4.145982718244391853e-08,-4.220018123927327706e-08,-4.294053529610263558e-08,-4.368088935293199411e-08,-4.442124340976135263e-08,-4.516159746659071115e-08,-4.590195152342006968e-08,-4.664230558024942820e-08 +0.000000000000000000e+00,-6.994777046066298760e-10,-1.398955409213259752e-09,-2.098433113819889628e-09,-2.797910818426519504e-09,-3.497388523033149380e-09,-4.196866227639779256e-09,-4.896343932246408719e-09,-5.595821636853038181e-09,-6.295299341459667643e-09,-6.994777046066297106e-09,-7.694254750672926568e-09,-8.393732455279556858e-09,-9.093210159886187147e-09,-9.792687864492817437e-09,-1.049216556909944773e-08,-1.119164327370607802e-08,-1.189112097831270831e-08,-1.259059868291933860e-08,-1.329007638752596889e-08,-1.398955409213259917e-08,-1.468903179673922946e-08,-1.538850950134585975e-08,-1.608798720595249170e-08,-1.678746491055912364e-08,-1.748694261516575559e-08,-1.818642031977238753e-08,-1.888589802437901947e-08,-1.958537572898565142e-08,-2.028485343359228336e-08,-2.098433113819891531e-08,-2.168380884280554725e-08,-2.238328654741217919e-08,-2.308276425201881114e-08,-2.378224195662544308e-08,-2.448171966123207503e-08,-2.518119736583870697e-08,-2.588067507044533891e-08,-2.658015277505197086e-08,-2.727963047965860280e-08,-2.797910818426523475e-08,-2.867858588887186669e-08,-2.937806359347849863e-08,-3.007754129808513058e-08,-3.077701900269176583e-08,-3.147649670729840108e-08,-3.217597441190503634e-08,-3.287545211651167159e-08,-3.357492982111830684e-08,-3.427440752572494209e-08,-3.497388523033157735e-08,-3.567336293493821260e-08,-3.637284063954484785e-08,-3.707231834415148310e-08,-3.777179604875811836e-08,-3.847127375336475361e-08,-3.917075145797138886e-08,-3.987022916257802411e-08,-4.056970686718465937e-08,-4.126918457179129462e-08,-4.196866227639792987e-08,-4.266813998100456513e-08,-4.336761768561120038e-08,-4.406709539021783563e-08 +0.000000000000000000e+00,7.303297705491491913e-10,1.460659541098298383e-09,2.190989311647447781e-09,2.921319082196597179e-09,3.651648852745746577e-09,4.381978623294895561e-09,5.112308393844044546e-09,5.842638164393193531e-09,6.572967934942342515e-09,7.303297705491491500e-09,8.033627476040640484e-09,8.763957246589789469e-09,9.494287017138938453e-09,1.022461678768808744e-08,1.095494655823723642e-08,1.168527632878638541e-08,1.241560609933553439e-08,1.314593586988468338e-08,1.387626564043383236e-08,1.460659541098298134e-08,1.533692518153213033e-08,1.606725495208128097e-08,1.679758472263043161e-08,1.752791449317958225e-08,1.825824426372873288e-08,1.898857403427788352e-08,1.971890380482703416e-08,2.044923357537618480e-08,2.117956334592533544e-08,2.190989311647448608e-08,2.264022288702363672e-08,2.337055265757278736e-08,2.410088242812193800e-08,2.483121219867108863e-08,2.556154196922023927e-08,2.629187173976938991e-08,2.702220151031854055e-08,2.775253128086769119e-08,2.848286105141684183e-08,2.921319082196599247e-08,2.994352059251514311e-08,3.067385036306429375e-08,3.140418013361344438e-08,3.213450990416259502e-08,3.286483967471174566e-08,3.359516944526089630e-08,3.432549921581004694e-08,3.505582898635919758e-08,3.578615875690834822e-08,3.651648852745749886e-08,3.724681829800664950e-08,3.797714806855580013e-08,3.870747783910495077e-08,3.943780760965410141e-08,4.016813738020325205e-08,4.089846715075240269e-08,4.162879692130155333e-08,4.235912669185070397e-08,4.308945646239985461e-08,4.381978623294900525e-08,4.455011600349815588e-08,4.528044577404730652e-08,4.601077554459645716e-08 +0.000000000000000000e+00,7.388853246175998601e-10,1.477770649235199720e-09,2.216655973852799787e-09,2.955541298470399854e-09,3.694426623087999921e-09,4.433311947705599574e-09,5.172197272323199228e-09,5.911082596940798881e-09,6.649967921558398534e-09,7.388853246175998188e-09,8.127738570793597014e-09,8.866623895411195840e-09,9.605509220028794666e-09,1.034439454464639349e-08,1.108327986926399232e-08,1.182216519388159114e-08,1.256105051849918997e-08,1.329993584311678880e-08,1.403882116773438762e-08,1.477770649235198645e-08,1.551659181696958528e-08,1.625547714158718410e-08,1.699436246620478293e-08,1.773324779082238175e-08,1.847213311543998058e-08,1.921101844005757941e-08,1.994990376467517823e-08,2.068878908929277706e-08,2.142767441391037588e-08,2.216655973852797471e-08,2.290544506314557354e-08,2.364433038776317236e-08,2.438321571238077119e-08,2.512210103699837002e-08,2.586098636161596884e-08,2.659987168623356767e-08,2.733875701085116649e-08,2.807764233546876532e-08,2.881652766008636415e-08,2.955541298470396297e-08,3.029429830932155849e-08,3.103318363393915070e-08,3.177206895855674291e-08,3.251095428317433512e-08,3.324983960779192732e-08,3.398872493240951953e-08,3.472761025702711174e-08,3.546649558164470395e-08,3.620538090626229616e-08,3.694426623087988837e-08,3.768315155549748058e-08,3.842203688011507279e-08,3.916092220473266499e-08,3.989980752935025720e-08,4.063869285396784941e-08,4.137757817858544162e-08,4.211646350320303383e-08,4.285534882782062604e-08,4.359423415243821825e-08,4.433311947705581046e-08,4.507200480167340266e-08,4.581089012629099487e-08,4.654977545090858708e-08 +0.000000000000000000e+00,7.064029843308127674e-10,1.412805968661625535e-09,2.119208952992438199e-09,2.825611937323250656e-09,3.532014921654063113e-09,4.238417905984875570e-09,4.944820890315688441e-09,5.651223874646501312e-09,6.357626858977314183e-09,7.064029843308127053e-09,7.770432827638939924e-09,8.476835811969752795e-09,9.183238796300565666e-09,9.889641780631378536e-09,1.059604476496219141e-08,1.130244774929300428e-08,1.200885073362381715e-08,1.271525371795463002e-08,1.342165670228544289e-08,1.412805968661625576e-08,1.483446267094706863e-08,1.554086565527788316e-08,1.624726863960869934e-08,1.695367162393951552e-08,1.766007460827033170e-08,1.836647759260114787e-08,1.907288057693196405e-08,1.977928356126278023e-08,2.048568654559359641e-08,2.119208952992441259e-08,2.189849251425522877e-08,2.260489549858604495e-08,2.331129848291686113e-08,2.401770146724767731e-08,2.472410445157849349e-08,2.543050743590930967e-08,2.613691042024012585e-08,2.684331340457094203e-08,2.754971638890175821e-08,2.825611937323257439e-08,2.896252235756339057e-08,2.966892534189420675e-08,3.037532832622502293e-08,3.108173131055583911e-08,3.178813429488665529e-08,3.249453727921747146e-08,3.320094026354828764e-08,3.390734324787910382e-08,3.461374623220992000e-08,3.532014921654073618e-08,3.602655220087155236e-08,3.673295518520236854e-08,3.743935816953318472e-08,3.814576115386400090e-08,3.885216413819481708e-08,3.955856712252563326e-08,4.026497010685644944e-08,4.097137309118726562e-08,4.167777607551808180e-08,4.238417905984889798e-08,4.309058204417971416e-08,4.379698502851053034e-08,4.450338801284134652e-08 +0.000000000000000000e+00,-7.303297705541960270e-10,-1.460659541108392054e-09,-2.190989311662588081e-09,-2.921319082216784108e-09,-3.651648852770980135e-09,-4.381978623325176162e-09,-5.112308393879371776e-09,-5.842638164433567389e-09,-6.572967934987763002e-09,-7.303297705541958616e-09,-8.033627476096154229e-09,-8.763957246650350670e-09,-9.494287017204547111e-09,-1.022461678775874355e-08,-1.095494655831293999e-08,-1.168527632886713643e-08,-1.241560609942133287e-08,-1.314593586997552931e-08,-1.387626564052972575e-08,-1.460659541108392219e-08,-1.533692518163811864e-08,-1.606725495219231508e-08,-1.679758472274651152e-08,-1.752791449330070796e-08,-1.825824426385490440e-08,-1.898857403440910084e-08,-1.971890380496329728e-08,-2.044923357551749372e-08,-2.117956334607169016e-08,-2.190989311662588660e-08,-2.264022288718008304e-08,-2.337055265773427948e-08,-2.410088242828847592e-08,-2.483121219884267236e-08,-2.556154196939686880e-08,-2.629187173995106524e-08,-2.702220151050526169e-08,-2.775253128105945813e-08,-2.848286105161365457e-08,-2.921319082216785101e-08,-2.994352059272205076e-08,-3.067385036327625051e-08,-3.140418013383045026e-08,-3.213450990438465000e-08,-3.286483967493884975e-08,-3.359516944549304950e-08,-3.432549921604724925e-08,-3.505582898660144900e-08,-3.578615875715564875e-08,-3.651648852770984850e-08,-3.724681829826404825e-08,-3.797714806881824800e-08,-3.870747783937244775e-08,-3.943780760992664750e-08,-4.016813738048084725e-08,-4.089846715103504700e-08,-4.162879692158924675e-08,-4.235912669214344650e-08,-4.308945646269764624e-08,-4.381978623325184599e-08,-4.455011600380604574e-08,-4.528044577436024549e-08,-4.601077554491444524e-08 +0.000000000000000000e+00,-7.388853246205046083e-10,-1.477770649241009217e-09,-2.216655973861513721e-09,-2.955541298482018019e-09,-3.694426623102522317e-09,-4.433311947723026616e-09,-5.172197272343530500e-09,-5.911082596964034384e-09,-6.649967921584538269e-09,-7.388853246205042153e-09,-8.127738570825546038e-09,-8.866623895446049922e-09,-9.605509220066553807e-09,-1.034439454468705769e-08,-1.108327986930756158e-08,-1.182216519392806546e-08,-1.256105051854856934e-08,-1.329993584316907323e-08,-1.403882116778957711e-08,-1.477770649241008100e-08,-1.551659181703058488e-08,-1.625547714165108877e-08,-1.699436246627159265e-08,-1.773324779089209654e-08,-1.847213311551260042e-08,-1.921101844013310430e-08,-1.994990376475360819e-08,-2.068878908937411207e-08,-2.142767441399461596e-08,-2.216655973861511984e-08,-2.290544506323562373e-08,-2.364433038785612761e-08,-2.438321571247663150e-08,-2.512210103709713538e-08,-2.586098636171763927e-08,-2.659987168633814315e-08,-2.733875701095864703e-08,-2.807764233557915092e-08,-2.881652766019965480e-08,-2.955541298482015869e-08,-3.029429830944065926e-08,-3.103318363406116315e-08,-3.177206895868166703e-08,-3.251095428330217092e-08,-3.324983960792267480e-08,-3.398872493254317869e-08,-3.472761025716368257e-08,-3.546649558178418645e-08,-3.620538090640469034e-08,-3.694426623102519422e-08,-3.768315155564569811e-08,-3.842203688026620199e-08,-3.916092220488670588e-08,-3.989980752950720976e-08,-4.063869285412771365e-08,-4.137757817874821753e-08,-4.211646350336872141e-08,-4.285534882798922530e-08,-4.359423415260972918e-08,-4.433311947723023307e-08,-4.507200480185073695e-08,-4.581089012647124084e-08,-4.654977545109174472e-08 +0.000000000000000000e+00,-7.064029843352771645e-10,-1.412805968670554329e-09,-2.119208953005831494e-09,-2.825611937341108658e-09,-3.532014921676385823e-09,-4.238417906011662987e-09,-4.944820890346940152e-09,-5.651223874682217316e-09,-6.357626859017494481e-09,-7.064029843352771645e-09,-7.770432827688049637e-09,-8.476835812023327629e-09,-9.183238796358605621e-09,-9.889641780693883612e-09,-1.059604476502916160e-08,-1.130244774936443960e-08,-1.200885073369971759e-08,-1.271525371803499558e-08,-1.342165670237027357e-08,-1.412805968670555156e-08,-1.483446267104082955e-08,-1.554086565537610589e-08,-1.624726863971138223e-08,-1.695367162404665857e-08,-1.766007460838193490e-08,-1.836647759271721124e-08,-1.907288057705248758e-08,-1.977928356138776392e-08,-2.048568654572304025e-08,-2.119208953005831659e-08,-2.189849251439359293e-08,-2.260489549872886927e-08,-2.331129848306414560e-08,-2.401770146739942194e-08,-2.472410445173469828e-08,-2.543050743606997461e-08,-2.613691042040525095e-08,-2.684331340474052729e-08,-2.754971638907580363e-08,-2.825611937341107996e-08,-2.896252235774635630e-08,-2.966892534208163264e-08,-3.037532832641690898e-08,-3.108173131075218531e-08,-3.178813429508746165e-08,-3.249453727942273799e-08,-3.320094026375801433e-08,-3.390734324809329066e-08,-3.461374623242856700e-08,-3.532014921676384334e-08,-3.602655220109911967e-08,-3.673295518543439601e-08,-3.743935816976967235e-08,-3.814576115410494869e-08,-3.885216413844022502e-08,-3.955856712277550136e-08,-4.026497010711077770e-08,-4.097137309144605404e-08,-4.167777607578133037e-08,-4.238417906011660671e-08,-4.309058204445188305e-08,-4.379698502878715939e-08,-4.450338801312243572e-08 +0.000000000000000000e+00,7.157049271818999394e-10,1.431409854363799879e-09,2.147114781545699715e-09,2.862819708727599344e-09,3.578524635909498973e-09,4.294229563091398603e-09,5.009934490273297818e-09,5.725639417455197034e-09,6.441344344637096250e-09,7.157049271818995465e-09,7.872754199000894681e-09,8.588459126182793897e-09,9.304164053364693112e-09,1.001986898054659233e-08,1.073557390772849154e-08,1.145127883491039076e-08,1.216698376209228998e-08,1.288268868927418919e-08,1.359839361645608841e-08,1.431409854363798762e-08,1.502980347081988518e-08,1.574550839800178274e-08,1.646121332518368031e-08,1.717691825236557787e-08,1.789262317954747543e-08,1.860832810672937299e-08,1.932403303391127055e-08,2.003973796109316811e-08,2.075544288827506567e-08,2.147114781545696324e-08,2.218685274263886080e-08,2.290255766982075836e-08,2.361826259700265592e-08,2.433396752418455348e-08,2.504967245136645104e-08,2.576537737854834860e-08,2.648108230573024616e-08,2.719678723291214373e-08,2.791249216009404129e-08,2.862819708727593885e-08,2.934390201445783641e-08,3.005960694163973066e-08,3.077531186882162491e-08,3.149101679600351917e-08,3.220672172318541342e-08,3.292242665036730767e-08,3.363813157754920192e-08,3.435383650473109618e-08,3.506954143191299043e-08,3.578524635909488468e-08,3.650095128627677894e-08,3.721665621345867319e-08,3.793236114064056744e-08,3.864806606782246169e-08,3.936377099500435595e-08,4.007947592218625020e-08,4.079518084936814445e-08,4.151088577655003870e-08,4.222659070373193296e-08,4.294229563091382721e-08,4.365800055809572146e-08,4.437370548527761571e-08,4.508941041245950997e-08 +0.000000000000000000e+00,7.222011035165882720e-10,1.444402207033176544e-09,2.166603310549764919e-09,2.888804414066353501e-09,3.611005517582942084e-09,4.333206621099530666e-09,5.055407724616119662e-09,5.777608828132708657e-09,6.499809931649297653e-09,7.222011035165886649e-09,7.944212138682475645e-09,8.666413242199064640e-09,9.388614345715653636e-09,1.011081544923224263e-08,1.083301655274883163e-08,1.155521765626542062e-08,1.227741875978200962e-08,1.299961986329859861e-08,1.372182096681518761e-08,1.444402207033177661e-08,1.516622317384836395e-08,1.588842427736495129e-08,1.661062538088153863e-08,1.733282648439812597e-08,1.805502758791471331e-08,1.877722869143130065e-08,1.949942979494788800e-08,2.022163089846447534e-08,2.094383200198106268e-08,2.166603310549765002e-08,2.238823420901423736e-08,2.311043531253082470e-08,2.383263641604741204e-08,2.455483751956399939e-08,2.527703862308058673e-08,2.599923972659717407e-08,2.672144083011376141e-08,2.744364193363034875e-08,2.816584303714693609e-08,2.888804414066352343e-08,2.961024524418011078e-08,3.033244634769670143e-08,3.105464745121329208e-08,3.177684855472988273e-08,3.249904965824647338e-08,3.322125076176306403e-08,3.394345186527965468e-08,3.466565296879624533e-08,3.538785407231283598e-08,3.611005517582942663e-08,3.683225627934601728e-08,3.755445738286260793e-08,3.827665848637919858e-08,3.899885958989578923e-08,3.972106069341237988e-08,4.044326179692897053e-08,4.116546290044556118e-08,4.188766400396215183e-08,4.260986510747874248e-08,4.333206621099533313e-08,4.405426731451192378e-08,4.477646841802851443e-08,4.549866952154510508e-08 +0.000000000000000000e+00,6.917737207506937106e-10,1.383547441501387421e-09,2.075321162252081132e-09,2.767094883002774842e-09,3.458868603753468553e-09,4.150642324504162264e-09,4.842416045254855974e-09,5.534189766005549685e-09,6.225963486756243396e-09,6.917737207506937106e-09,7.609510928257630817e-09,8.301284649008324527e-09,8.993058369759018238e-09,9.684832090509711949e-09,1.037660581126040566e-08,1.106837953201109937e-08,1.176015325276179308e-08,1.245192697351248679e-08,1.314370069426318050e-08,1.383547441501387421e-08,1.452724813576456792e-08,1.521902185651526163e-08,1.591079557726595700e-08,1.660256929801665236e-08,1.729434301876734773e-08,1.798611673951804309e-08,1.867789046026873846e-08,1.936966418101943382e-08,2.006143790177012919e-08,2.075321162252082455e-08,2.144498534327151992e-08,2.213675906402221528e-08,2.282853278477291065e-08,2.352030650552360601e-08,2.421208022627430138e-08,2.490385394702499674e-08,2.559562766777569211e-08,2.628740138852638747e-08,2.697917510927708284e-08,2.767094883002777820e-08,2.836272255077847357e-08,2.905449627152916893e-08,2.974626999227986430e-08,3.043804371303055635e-08,3.112981743378124841e-08,3.182159115453194047e-08,3.251336487528263252e-08,3.320513859603332458e-08,3.389691231678401664e-08,3.458868603753470869e-08,3.528045975828540075e-08,3.597223347903609280e-08,3.666400719978678486e-08,3.735578092053747692e-08,3.804755464128816897e-08,3.873932836203886103e-08,3.943110208278955309e-08,4.012287580354024514e-08,4.081464952429093720e-08,4.150642324504162925e-08,4.219819696579232131e-08,4.288997068654301337e-08,4.358174440729370542e-08 +0.000000000000000000e+00,-7.157049271926358132e-10,-1.431409854385271626e-09,-2.147114781577907233e-09,-2.862819708770542839e-09,-3.578524635963178446e-09,-4.294229563155814466e-09,-5.009934490348450486e-09,-5.725639417541086506e-09,-6.441344344733722526e-09,-7.157049271926358546e-09,-7.872754199118994566e-09,-8.588459126311630586e-09,-9.304164053504266606e-09,-1.001986898069690263e-08,-1.073557390788953865e-08,-1.145127883508217467e-08,-1.216698376227481069e-08,-1.288268868946744671e-08,-1.359839361666008273e-08,-1.431409854385271875e-08,-1.502980347104535477e-08,-1.574550839823798913e-08,-1.646121332543062350e-08,-1.717691825262325786e-08,-1.789262317981589223e-08,-1.860832810700852659e-08,-1.932403303420116096e-08,-2.003973796139379533e-08,-2.075544288858642969e-08,-2.147114781577906406e-08,-2.218685274297169842e-08,-2.290255767016433279e-08,-2.361826259735696715e-08,-2.433396752454960152e-08,-2.504967245174223589e-08,-2.576537737893487025e-08,-2.648108230612750462e-08,-2.719678723332013898e-08,-2.791249216051277335e-08,-2.862819708770540771e-08,-2.934390201489804208e-08,-3.005960694209067644e-08,-3.077531186928331081e-08,-3.149101679647594518e-08,-3.220672172366857954e-08,-3.292242665086121391e-08,-3.363813157805384827e-08,-3.435383650524648264e-08,-3.506954143243911700e-08,-3.578524635963175137e-08,-3.650095128682438574e-08,-3.721665621401702010e-08,-3.793236114120965447e-08,-3.864806606840228883e-08,-3.936377099559492320e-08,-4.007947592278755756e-08,-4.079518084998019193e-08,-4.151088577717282630e-08,-4.222659070436546066e-08,-4.294229563155809503e-08,-4.365800055875072939e-08,-4.437370548594336376e-08,-4.508941041313599812e-08 +0.000000000000000000e+00,-7.222011035242349363e-10,-1.444402207048469873e-09,-2.166603310572704706e-09,-2.888804414096939332e-09,-3.611005517621173958e-09,-4.333206621145408584e-09,-5.055407724669643210e-09,-5.777608828193877836e-09,-6.499809931718112463e-09,-7.222011035242347089e-09,-7.944212138766581715e-09,-8.666413242290815514e-09,-9.388614345815049313e-09,-1.011081544933928311e-08,-1.083301655286351691e-08,-1.155521765638775071e-08,-1.227741875991198451e-08,-1.299961986343621831e-08,-1.372182096696045211e-08,-1.444402207048468591e-08,-1.516622317400891970e-08,-1.588842427753315350e-08,-1.661062538105738730e-08,-1.733282648458162110e-08,-1.805502758810585490e-08,-1.877722869163008870e-08,-1.949942979515432250e-08,-2.022163089867855630e-08,-2.094383200220279010e-08,-2.166603310572702390e-08,-2.238823420925125769e-08,-2.311043531277549149e-08,-2.383263641629972529e-08,-2.455483751982395909e-08,-2.527703862334819289e-08,-2.599923972687242669e-08,-2.672144083039666049e-08,-2.744364193392089429e-08,-2.816584303744512809e-08,-2.888804414096936189e-08,-2.961024524449359568e-08,-3.033244634801783279e-08,-3.105464745154206659e-08,-3.177684855506630039e-08,-3.249904965859053419e-08,-3.322125076211476799e-08,-3.394345186563900179e-08,-3.466565296916323559e-08,-3.538785407268746938e-08,-3.611005517621170318e-08,-3.683225627973593698e-08,-3.755445738326017078e-08,-3.827665848678440458e-08,-3.899885959030863838e-08,-3.972106069383287218e-08,-4.044326179735710598e-08,-4.116546290088133978e-08,-4.188766400440557358e-08,-4.260986510792980737e-08,-4.333206621145404117e-08,-4.405426731497827497e-08,-4.477646841850250877e-08,-4.549866952202674257e-08 +0.000000000000000000e+00,-6.917737207601655490e-10,-1.383547441520331098e-09,-2.075321162280496440e-09,-2.767094883040661782e-09,-3.458868603800827125e-09,-4.150642324560992881e-09,-4.842416045321158636e-09,-5.534189766081324392e-09,-6.225963486841490148e-09,-6.917737207601655904e-09,-7.609510928361820832e-09,-8.301284649121985761e-09,-8.993058369882150690e-09,-9.684832090642315618e-09,-1.037660581140248055e-08,-1.106837953216264548e-08,-1.176015325292281040e-08,-1.245192697368297533e-08,-1.314370069444314026e-08,-1.383547441520330519e-08,-1.452724813596347012e-08,-1.521902185672363505e-08,-1.591079557748379998e-08,-1.660256929824396490e-08,-1.729434301900412983e-08,-1.798611673976429476e-08,-1.867789046052445969e-08,-1.936966418128462462e-08,-2.006143790204478955e-08,-2.075321162280495448e-08,-2.144498534356511941e-08,-2.213675906432528433e-08,-2.282853278508544926e-08,-2.352030650584561419e-08,-2.421208022660577912e-08,-2.490385394736594405e-08,-2.559562766812610898e-08,-2.628740138888627391e-08,-2.697917510964643883e-08,-2.767094883040660376e-08,-2.836272255116676869e-08,-2.905449627192693362e-08,-2.974626999268709855e-08,-3.043804371344726348e-08,-3.112981743420743171e-08,-3.182159115496759995e-08,-3.251336487572776819e-08,-3.320513859648793643e-08,-3.389691231724810466e-08,-3.458868603800827290e-08,-3.528045975876844114e-08,-3.597223347952860938e-08,-3.666400720028877761e-08,-3.735578092104894585e-08,-3.804755464180911409e-08,-3.873932836256928233e-08,-3.943110208332945056e-08,-4.012287580408961880e-08,-4.081464952484978704e-08,-4.150642324560995528e-08,-4.219819696637012351e-08,-4.288997068713029175e-08,-4.358174440789045999e-08 +0.000000000000000000e+00,6.984049450482973100e-10,1.396809890096594620e-09,2.095214835144891827e-09,2.793619780193188826e-09,3.492024725241485826e-09,4.190429670289782826e-09,4.888834615338079412e-09,5.587239560386375998e-09,6.285644505434672584e-09,6.984049450482969171e-09,7.682454395531265757e-09,8.380859340579562343e-09,9.079264285627858929e-09,9.777669230676155515e-09,1.047607417572445210e-08,1.117447912077274869e-08,1.187288406582104527e-08,1.257128901086934186e-08,1.326969395591763845e-08,1.396809890096593503e-08,1.466650384601423162e-08,1.536490879106252820e-08,1.606331373611082645e-08,1.676171868115912469e-08,1.746012362620742293e-08,1.815852857125572117e-08,1.885693351630401941e-08,1.955533846135231765e-08,2.025374340640061589e-08,2.095214835144891413e-08,2.165055329649721237e-08,2.234895824154551061e-08,2.304736318659380885e-08,2.374576813164210709e-08,2.444417307669040533e-08,2.514257802173870357e-08,2.584098296678700181e-08,2.653938791183530005e-08,2.723779285688359829e-08,2.793619780193189653e-08,2.863460274698019478e-08,2.933300769202849302e-08,3.003141263707679126e-08,3.072981758212508950e-08,3.142822252717338774e-08,3.212662747222168598e-08,3.282503241726998422e-08,3.352343736231828246e-08,3.422184230736658070e-08,3.492024725241487894e-08,3.561865219746317718e-08,3.631705714251147542e-08,3.701546208755977366e-08,3.771386703260807190e-08,3.841227197765637014e-08,3.911067692270466838e-08,3.980908186775296662e-08,4.050748681280126486e-08,4.120589175784956311e-08,4.190429670289786135e-08,4.260270164794615959e-08,4.330110659299445783e-08,4.399951153804275607e-08 +0.000000000000000000e+00,7.070137497653942880e-10,1.414027499530788576e-09,2.121041249296182967e-09,2.828054999061577566e-09,3.535068748826972164e-09,4.242082498592366762e-09,4.949096248357761360e-09,5.656109998123155958e-09,6.363123747888550557e-09,7.070137497653945155e-09,7.777151247419338926e-09,8.484164997184731870e-09,9.191178746950124813e-09,9.898192496715517757e-09,1.060520624648091070e-08,1.131221999624630364e-08,1.201923374601169659e-08,1.272624749577708953e-08,1.343326124554248248e-08,1.414027499530787542e-08,1.484728874507326836e-08,1.555430249483866131e-08,1.626131624460405425e-08,1.696832999436944720e-08,1.767534374413484014e-08,1.838235749390023308e-08,1.908937124366562603e-08,1.979638499343101897e-08,2.050339874319641191e-08,2.121041249296180486e-08,2.191742624272719780e-08,2.262443999249259075e-08,2.333145374225798369e-08,2.403846749202337663e-08,2.474548124178876958e-08,2.545249499155416252e-08,2.615950874131955547e-08,2.686652249108494841e-08,2.757353624085034135e-08,2.828054999061573430e-08,2.898756374038112724e-08,2.969457749014652018e-08,3.040159123991191313e-08,3.110860498967730276e-08,3.181561873944269240e-08,3.252263248920808203e-08,3.322964623897347167e-08,3.393665998873886130e-08,3.464367373850425094e-08,3.535068748826964057e-08,3.605770123803503021e-08,3.676471498780041984e-08,3.747172873756580948e-08,3.817874248733119911e-08,3.888575623709658875e-08,3.959276998686197838e-08,4.029978373662736802e-08,4.100679748639275765e-08,4.171381123615814729e-08,4.242082498592353693e-08,4.312783873568892656e-08,4.383485248545431620e-08,4.454186623521970583e-08 +0.000000000000000000e+00,6.774339556273012537e-10,1.354867911254602507e-09,2.032301866881903761e-09,2.709735822509205015e-09,3.387169778136506269e-09,4.064603733763807522e-09,4.742037689391108363e-09,5.419471645018409203e-09,6.096905600645710043e-09,6.774339556273010883e-09,7.451773511900311723e-09,8.129207467527613390e-09,8.806641423154915058e-09,9.484075378782216725e-09,1.016150933440951839e-08,1.083894329003682006e-08,1.151637724566412173e-08,1.219381120129142339e-08,1.287124515691872506e-08,1.354867911254602673e-08,1.422611306817332840e-08,1.490354702380063006e-08,1.558098097942793173e-08,1.625841493505523340e-08,1.693584889068253507e-08,1.761328284630983673e-08,1.829071680193713840e-08,1.896815075756444007e-08,1.964558471319174174e-08,2.032301866881904340e-08,2.100045262444634507e-08,2.167788658007364674e-08,2.235532053570094840e-08,2.303275449132825007e-08,2.371018844695555174e-08,2.438762240258285341e-08,2.506505635821015507e-08,2.574249031383745674e-08,2.641992426946475841e-08,2.709735822509206008e-08,2.777479218071936174e-08,2.845222613634666341e-08,2.912966009197396508e-08,2.980709404760126674e-08,3.048452800322856510e-08,3.116196195885586346e-08,3.183939591448316182e-08,3.251682987011046018e-08,3.319426382573775854e-08,3.387169778136505690e-08,3.454913173699235526e-08,3.522656569261965361e-08,3.590399964824695197e-08,3.658143360387425033e-08,3.725886755950154869e-08,3.793630151512884705e-08,3.861373547075614541e-08,3.929116942638344377e-08,3.996860338201074212e-08,4.064603733763804048e-08,4.132347129326533884e-08,4.200090524889263720e-08,4.267833920451993556e-08 +0.000000000000000000e+00,-6.984049450663732743e-10,-1.396809890132746549e-09,-2.095214835199119720e-09,-2.793619780265492684e-09,-3.492024725331865648e-09,-4.190429670398238612e-09,-4.888834615464611576e-09,-5.587239560530984540e-09,-6.285644505597357504e-09,-6.984049450663730468e-09,-7.682454395730103432e-09,-8.380859340796475569e-09,-9.079264285862847706e-09,-9.777669230929219843e-09,-1.047607417599559198e-08,-1.117447912106196412e-08,-1.187288406612833625e-08,-1.257128901119470839e-08,-1.326969395626108053e-08,-1.396809890132745266e-08,-1.466650384639382480e-08,-1.536490879146019694e-08,-1.606331373652656742e-08,-1.676171868159293790e-08,-1.746012362665930839e-08,-1.815852857172567887e-08,-1.885693351679204935e-08,-1.955533846185841983e-08,-2.025374340692479032e-08,-2.095214835199116080e-08,-2.165055329705753128e-08,-2.234895824212390176e-08,-2.304736318719027225e-08,-2.374576813225664273e-08,-2.444417307732301321e-08,-2.514257802238938369e-08,-2.584098296745575418e-08,-2.653938791252212466e-08,-2.723779285758849514e-08,-2.793619780265486563e-08,-2.863460274772123611e-08,-2.933300769278760659e-08,-3.003141263785397707e-08,-3.072981758292034756e-08,-3.142822252798671804e-08,-3.212662747305308852e-08,-3.282503241811945900e-08,-3.352343736318582949e-08,-3.422184230825219997e-08,-3.492024725331857045e-08,-3.561865219838494093e-08,-3.631705714345131142e-08,-3.701546208851768190e-08,-3.771386703358405238e-08,-3.841227197865042286e-08,-3.911067692371679335e-08,-3.980908186878316383e-08,-4.050748681384953431e-08,-4.120589175891590479e-08,-4.190429670398227528e-08,-4.260270164904864576e-08,-4.330110659411501624e-08,-4.399951153918138672e-08 +0.000000000000000000e+00,-7.070137497796031830e-10,-1.414027499559206366e-09,-2.121041249338809652e-09,-2.828054999118413145e-09,-3.535068748898016639e-09,-4.242082498677620132e-09,-4.949096248457224039e-09,-5.656109998236827945e-09,-6.363123748016431852e-09,-7.070137497796035759e-09,-7.777151247575639666e-09,-8.484164997355243572e-09,-9.191178747134847479e-09,-9.898192496914451386e-09,-1.060520624669405529e-08,-1.131221999647365920e-08,-1.201923374625326311e-08,-1.272624749603286701e-08,-1.343326124581247092e-08,-1.414027499559207483e-08,-1.484728874537167873e-08,-1.555430249515128264e-08,-1.626131624493088655e-08,-1.696832999471049045e-08,-1.767534374449009436e-08,-1.838235749426969827e-08,-1.908937124404930217e-08,-1.979638499382890608e-08,-2.050339874360850999e-08,-2.121041249338811389e-08,-2.191742624316771780e-08,-2.262443999294732171e-08,-2.333145374272692561e-08,-2.403846749250652952e-08,-2.474548124228613343e-08,-2.545249499206573733e-08,-2.615950874184534124e-08,-2.686652249162494515e-08,-2.757353624140454905e-08,-2.828054999118415296e-08,-2.898756374096375687e-08,-2.969457749074336077e-08,-3.040159124052296799e-08,-3.110860499030257190e-08,-3.181561874008217580e-08,-3.252263248986177971e-08,-3.322964623964138362e-08,-3.393665998942098752e-08,-3.464367373920059143e-08,-3.535068748898019534e-08,-3.605770123875979924e-08,-3.676471498853940315e-08,-3.747172873831900706e-08,-3.817874248809861096e-08,-3.888575623787821487e-08,-3.959276998765781878e-08,-4.029978373743742268e-08,-4.100679748721702659e-08,-4.171381123699663050e-08,-4.242082498677623441e-08,-4.312783873655583831e-08,-4.383485248633544222e-08,-4.454186623611504613e-08 +0.000000000000000000e+00,-6.774339556433009947e-10,-1.354867911286601989e-09,-2.032301866929902984e-09,-2.709735822573203979e-09,-3.387169778216504974e-09,-4.064603733859805968e-09,-4.742037689503106963e-09,-5.419471645146407958e-09,-6.096905600789708953e-09,-6.774339556433009947e-09,-7.451773512076310942e-09,-8.129207467719611937e-09,-8.806641423362912932e-09,-9.484075379006213926e-09,-1.016150933464951492e-08,-1.083894329029281592e-08,-1.151637724593611691e-08,-1.219381120157941791e-08,-1.287124515722271890e-08,-1.354867911286601989e-08,-1.422611306850932089e-08,-1.490354702415262188e-08,-1.558098097979592453e-08,-1.625841493543922718e-08,-1.693584889108252983e-08,-1.761328284672583248e-08,-1.829071680236913513e-08,-1.896815075801243778e-08,-1.964558471365574043e-08,-2.032301866929904308e-08,-2.100045262494234573e-08,-2.167788658058564838e-08,-2.235532053622895102e-08,-2.303275449187225367e-08,-2.371018844751555632e-08,-2.438762240315885897e-08,-2.506505635880216162e-08,-2.574249031444546427e-08,-2.641992427008876692e-08,-2.709735822573206957e-08,-2.777479218137537222e-08,-2.845222613701867487e-08,-2.912966009266197752e-08,-2.980709404830527686e-08,-3.048452800394857620e-08,-3.116196195959187554e-08,-3.183939591523517488e-08,-3.251682987087847422e-08,-3.319426382652177356e-08,-3.387169778216507290e-08,-3.454913173780837224e-08,-3.522656569345167158e-08,-3.590399964909497092e-08,-3.658143360473827026e-08,-3.725886756038156960e-08,-3.793630151602486894e-08,-3.861373547166816828e-08,-3.929116942731146762e-08,-3.996860338295476696e-08,-4.064603733859806630e-08,-4.132347129424136564e-08,-4.200090524988466498e-08,-4.267833920552796432e-08 +0.000000000000000000e+00,6.830910881043723811e-10,1.366182176208744762e-09,2.049273264313117350e-09,2.732364352417489938e-09,3.415455440521862526e-09,4.098546528626234700e-09,4.781637616730606874e-09,5.464728704834979049e-09,6.147819792939351223e-09,6.830910881043723397e-09,7.514001969148096399e-09,8.197093057252469400e-09,8.880184145356842402e-09,9.563275233461215403e-09,1.024636632156558840e-08,1.092945740966996141e-08,1.161254849777433441e-08,1.229563958587870741e-08,1.297873067398308041e-08,1.366182176208745341e-08,1.434491285019182641e-08,1.502800393829619941e-08,1.571109502640057242e-08,1.639418611450494542e-08,1.707727720260931842e-08,1.776036829071369142e-08,1.844345937881806442e-08,1.912655046692243742e-08,1.980964155502681042e-08,2.049273264313118343e-08,2.117582373123555643e-08,2.185891481933992943e-08,2.254200590744430243e-08,2.322509699554867543e-08,2.390818808365304843e-08,2.459127917175742144e-08,2.527437025986179444e-08,2.595746134796616744e-08,2.664055243607054044e-08,2.732364352417491344e-08,2.800673461227928644e-08,2.868982570038365944e-08,2.937291678848803245e-08,3.005600787659240545e-08,3.073909896469677514e-08,3.142219005280114483e-08,3.210528114090551452e-08,3.278837222900988422e-08,3.347146331711425391e-08,3.415455440521862360e-08,3.483764549332299330e-08,3.552073658142736299e-08,3.620382766953173268e-08,3.688691875763610237e-08,3.757000984574047207e-08,3.825310093384484176e-08,3.893619202194921145e-08,3.961928311005358115e-08,4.030237419815795084e-08,4.098546528626232053e-08,4.166855637436669022e-08,4.235164746247105992e-08,4.303473855057542961e-08 +0.000000000000000000e+00,6.903220629804379628e-10,1.380644125960875926e-09,2.070966188941313992e-09,2.761288251921752265e-09,3.451610314902190538e-09,4.141932377882628811e-09,4.832254440863067084e-09,5.522576503843505357e-09,6.212898566823943630e-09,6.903220629804381903e-09,7.593542692784821003e-09,8.283864755765259276e-09,8.974186818745697549e-09,9.664508881726135822e-09,1.035483094470657409e-08,1.104515300768701237e-08,1.173547507066745064e-08,1.242579713364788891e-08,1.311611919662832719e-08,1.380644125960876546e-08,1.449676332258920373e-08,1.518708538556964201e-08,1.587740744855008028e-08,1.656772951153051855e-08,1.725805157451095682e-08,1.794837363749139510e-08,1.863869570047183337e-08,1.932901776345227164e-08,2.001933982643270992e-08,2.070966188941314819e-08,2.139998395239358646e-08,2.209030601537402474e-08,2.278062807835446301e-08,2.347095014133490128e-08,2.416127220431533955e-08,2.485159426729577783e-08,2.554191633027621610e-08,2.623223839325665437e-08,2.692256045623709265e-08,2.761288251921753092e-08,2.830320458219796919e-08,2.899352664517840747e-08,2.968384870815884574e-08,3.037417077113928401e-08,3.106449283411972228e-08,3.175481489710016056e-08,3.244513696008059883e-08,3.313545902306103710e-08,3.382578108604147538e-08,3.451610314902191365e-08,3.520642521200235192e-08,3.589674727498279020e-08,3.658706933796322847e-08,3.727739140094366674e-08,3.796771346392410501e-08,3.865803552690454329e-08,3.934835758988498156e-08,4.003867965286541983e-08,4.072900171584585811e-08,4.141932377882629638e-08,4.210964584180673465e-08,4.279996790478717293e-08,4.349028996776761120e-08 +0.000000000000000000e+00,6.617542212574663145e-10,1.323508442514932629e-09,1.985262663772399047e-09,2.647016885029865672e-09,3.308771106287332296e-09,3.970525327544798921e-09,4.632279548802265959e-09,5.294033770059732998e-09,5.955787991317200036e-09,6.617542212574667074e-09,7.279296433832134112e-09,7.941050655089601151e-09,8.602804876347068189e-09,9.264559097604535227e-09,9.926313318862002266e-09,1.058806754011946930e-08,1.124982176137693634e-08,1.191157598263440338e-08,1.257333020389187042e-08,1.323508442514933746e-08,1.389683864640680450e-08,1.455859286766427153e-08,1.522034708892173857e-08,1.588210131017920561e-08,1.654385553143667265e-08,1.720560975269413969e-08,1.786736397395160673e-08,1.852911819520907376e-08,1.919087241646654080e-08,1.985262663772400784e-08,2.051438085898147488e-08,2.117613508023894192e-08,2.183788930149640895e-08,2.249964352275387599e-08,2.316139774401134303e-08,2.382315196526881007e-08,2.448490618652627711e-08,2.514666040778374415e-08,2.580841462904121118e-08,2.647016885029867822e-08,2.713192307155614526e-08,2.779367729281361230e-08,2.845543151407107934e-08,2.911718573532854638e-08,2.977893995658601341e-08,3.044069417784347714e-08,3.110244839910094087e-08,3.176420262035840460e-08,3.242595684161586833e-08,3.308771106287333206e-08,3.374946528413079579e-08,3.441121950538825952e-08,3.507297372664572325e-08,3.573472794790318698e-08,3.639648216916065071e-08,3.705823639041811444e-08,3.771999061167557817e-08,3.838174483293304190e-08,3.904349905419050563e-08,3.970525327544796936e-08,4.036700749670543309e-08,4.102876171796289682e-08,4.169051593922036055e-08 +0.000000000000000000e+00,-6.830910881314240822e-10,-1.366182176262848164e-09,-2.049273264394272040e-09,-2.732364352525695915e-09,-3.415455440657119791e-09,-4.098546528788544080e-09,-4.781637616919968369e-09,-5.464728705051392658e-09,-6.147819793182816947e-09,-6.830910881314241236e-09,-7.514001969445666352e-09,-8.197093057577091468e-09,-8.880184145708516585e-09,-9.563275233839941701e-09,-1.024636632197136682e-08,-1.092945741010279193e-08,-1.161254849823421705e-08,-1.229563958636564217e-08,-1.297873067449706728e-08,-1.366182176262849240e-08,-1.434491285075991751e-08,-1.502800393889134263e-08,-1.571109502702276775e-08,-1.639418611515419286e-08,-1.707727720328561798e-08,-1.776036829141704310e-08,-1.844345937954846821e-08,-1.912655046767989333e-08,-1.980964155581131844e-08,-2.049273264394274356e-08,-2.117582373207416868e-08,-2.185891482020559379e-08,-2.254200590833701891e-08,-2.322509699646844403e-08,-2.390818808459986914e-08,-2.459127917273129426e-08,-2.527437026086271937e-08,-2.595746134899414449e-08,-2.664055243712556961e-08,-2.732364352525699472e-08,-2.800673461338841984e-08,-2.868982570151984495e-08,-2.937291678965127007e-08,-3.005600787778269188e-08,-3.073909896591411369e-08,-3.142219005404553549e-08,-3.210528114217695730e-08,-3.278837223030837911e-08,-3.347146331843980092e-08,-3.415455440657122272e-08,-3.483764549470264453e-08,-3.552073658283406634e-08,-3.620382767096548815e-08,-3.688691875909690995e-08,-3.757000984722833176e-08,-3.825310093535975357e-08,-3.893619202349117538e-08,-3.961928311162259718e-08,-4.030237419975401899e-08,-4.098546528788544080e-08,-4.166855637601686261e-08,-4.235164746414828441e-08,-4.303473855227970622e-08 +0.000000000000000000e+00,-6.903220630027880728e-10,-1.380644126005576146e-09,-2.070966189008364425e-09,-2.761288252011152705e-09,-3.451610315013940984e-09,-4.141932378016728850e-09,-4.832254441019516716e-09,-5.522576504022304582e-09,-6.212898567025092448e-09,-6.903220630027880314e-09,-7.593542693030669007e-09,-8.283864756033457700e-09,-8.974186819036246393e-09,-9.664508882039035086e-09,-1.035483094504182378e-08,-1.104515300804461247e-08,-1.173547507104740117e-08,-1.242579713405018986e-08,-1.311611919705297855e-08,-1.380644126005576725e-08,-1.449676332305855594e-08,-1.518708538606134463e-08,-1.587740744906413332e-08,-1.656772951206692202e-08,-1.725805157506971071e-08,-1.794837363807249940e-08,-1.863869570107528810e-08,-1.932901776407807679e-08,-2.001933982708086548e-08,-2.070966189008365418e-08,-2.139998395308644287e-08,-2.209030601608923156e-08,-2.278062807909202026e-08,-2.347095014209480895e-08,-2.416127220509759764e-08,-2.485159426810038634e-08,-2.554191633110317503e-08,-2.623223839410596372e-08,-2.692256045710875241e-08,-2.761288252011154111e-08,-2.830320458311432980e-08,-2.899352664611711849e-08,-2.968384870911990719e-08,-3.037417077212269588e-08,-3.106449283512548127e-08,-3.175481489812826665e-08,-3.244513696113105203e-08,-3.313545902413383742e-08,-3.382578108713662280e-08,-3.451610315013940819e-08,-3.520642521314219357e-08,-3.589674727614497896e-08,-3.658706933914776434e-08,-3.727739140215054972e-08,-3.796771346515333511e-08,-3.865803552815612049e-08,-3.934835759115890588e-08,-4.003867965416169126e-08,-4.072900171716447665e-08,-4.141932378016726203e-08,-4.210964584317004742e-08,-4.279996790617283280e-08,-4.349028996917561818e-08 +0.000000000000000000e+00,-6.617542212812831191e-10,-1.323508442562566238e-09,-1.985262663843849254e-09,-2.647016885125132063e-09,-3.308771106406414872e-09,-3.970525327687697681e-09,-4.632279548968980903e-09,-5.294033770250264126e-09,-5.955787991531547348e-09,-6.617542212812830571e-09,-7.279296434094113793e-09,-7.941050655375397015e-09,-8.602804876656680238e-09,-9.264559097937963460e-09,-9.926313319219246683e-09,-1.058806754050052991e-08,-1.124982176178181313e-08,-1.191157598306309635e-08,-1.257333020434437957e-08,-1.323508442562566280e-08,-1.389683864690694602e-08,-1.455859286818822924e-08,-1.522034708946951081e-08,-1.588210131075079072e-08,-1.654385553203207064e-08,-1.720560975331335055e-08,-1.786736397459463046e-08,-1.852911819587591038e-08,-1.919087241715719029e-08,-1.985262663843847020e-08,-2.051438085971975012e-08,-2.117613508100103003e-08,-2.183788930228230995e-08,-2.249964352356358986e-08,-2.316139774484486977e-08,-2.382315196612614969e-08,-2.448490618740742960e-08,-2.514666040868870951e-08,-2.580841462996998943e-08,-2.647016885125126934e-08,-2.713192307253254926e-08,-2.779367729381382917e-08,-2.845543151509510908e-08,-2.911718573637638900e-08,-2.977893995765766891e-08,-3.044069417893894883e-08,-3.110244840022022874e-08,-3.176420262150150865e-08,-3.242595684278278857e-08,-3.308771106406406848e-08,-3.374946528534534839e-08,-3.441121950662662831e-08,-3.507297372790790822e-08,-3.573472794918918814e-08,-3.639648217047046805e-08,-3.705823639175174796e-08,-3.771999061303302788e-08,-3.838174483431430779e-08,-3.904349905559558770e-08,-3.970525327687686762e-08,-4.036700749815814753e-08,-4.102876171943942745e-08,-4.169051594072070736e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.390704923941480240e-10,1.678140984788296048e-09,2.517211477182443969e-09,3.356281969576591682e-09,4.195352461970738983e-09,5.034422954364886283e-09,5.873493446759033583e-09,6.712563939153180883e-09,7.551634431547328184e-09,8.390704923941474657e-09,9.229775416335621130e-09,1.006884590872976760e-08,1.090791640112391408e-08,1.174698689351806055e-08,1.258605738591220702e-08,1.342512787830635349e-08,1.426419837070049997e-08,1.510326886309464644e-08,1.594233935548879291e-08,1.678140984788293939e-08,1.762048034027708586e-08,1.845955083267123233e-08,1.929862132506537881e-08,2.013769181745952528e-08,2.097676230985367175e-08,2.181583280224781823e-08,2.265490329464196470e-08,2.349397378703611117e-08,2.433304427943025764e-08,2.517211477182440412e-08,2.601118526421855059e-08,2.685025575661269706e-08,2.768932624900684354e-08,2.852839674140099001e-08,2.936746723379513648e-08,3.020653772618928626e-08,3.104560821858343605e-08,3.188467871097758583e-08,3.272374920337173561e-08,3.356281969576588539e-08,3.440189018816003517e-08,3.524096068055418496e-08,3.608003117294833474e-08,3.691910166534248452e-08,3.775817215773663430e-08,3.859724265013078408e-08,3.943631314252493386e-08,4.027538363491908365e-08,4.111445412731323343e-08,4.195352461970738321e-08,4.279259511210153299e-08,4.363166560449568277e-08,4.447073609688983255e-08,4.530980658928398234e-08,4.614887708167813212e-08,4.698794757407228190e-08,4.782701806646643168e-08,4.866608855886058146e-08,4.950515905125473125e-08,5.034422954364888103e-08,5.118330003604303081e-08,5.202237052843718059e-08,5.286144102083133037e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.927969290729199223e-10,1.585593858145839845e-09,2.378390787218759560e-09,3.171187716291679276e-09,3.963984645364598991e-09,4.756781574437519120e-09,5.549578503510439249e-09,6.342375432583359378e-09,7.135172361656279507e-09,7.927969290729199636e-09,8.720766219802118938e-09,9.513563148875038240e-09,1.030636007794795754e-08,1.109915700702087684e-08,1.189195393609379615e-08,1.268475086516671545e-08,1.347754779423963475e-08,1.427034472331255405e-08,1.506314165238547335e-08,1.585593858145839266e-08,1.664873551053131196e-08,1.744153243960423126e-08,1.823432936867715056e-08,1.902712629775006986e-08,1.981992322682298917e-08,2.061272015589590847e-08,2.140551708496882777e-08,2.219831401404174707e-08,2.299111094311466637e-08,2.378390787218758567e-08,2.457670480126050498e-08,2.536950173033342428e-08,2.616229865940634358e-08,2.695509558847926288e-08,2.774789251755218218e-08,2.854068944662510149e-08,2.933348637569802079e-08,3.012628330477094009e-08,3.091908023384385939e-08,3.171187716291677869e-08,3.250467409198969800e-08,3.329747102106261730e-08,3.409026795013553660e-08,3.488306487920845590e-08,3.567586180828137520e-08,3.646865873735429450e-08,3.726145566642721381e-08,3.805425259550013311e-08,3.884704952457305241e-08,3.963984645364597171e-08,4.043264338271889101e-08,4.122544031179181032e-08,4.201823724086472962e-08,4.281103416993764892e-08,4.360383109901056822e-08,4.439662802808348752e-08,4.518942495715640683e-08,4.598222188622932613e-08,4.677501881530224543e-08,4.756781574437516473e-08,4.836061267344808403e-08,4.915340960252100334e-08,4.994620653159392264e-08 +0.000000000000000000e+00,7.595217788473601587e-10,1.519043557694720317e-09,2.278565336542080476e-09,3.038087115389440635e-09,3.797608894236800794e-09,4.557130673084160952e-09,5.316652451931521111e-09,6.076174230778881270e-09,6.835696009626241429e-09,7.595217788473601587e-09,8.354739567320961746e-09,9.114261346168321905e-09,9.873783125015682064e-09,1.063330490386304222e-08,1.139282668271040238e-08,1.215234846155776254e-08,1.291187024040512270e-08,1.367139201925248286e-08,1.443091379809984302e-08,1.519043557694720317e-08,1.594995735579456499e-08,1.670947913464192680e-08,1.746900091348928861e-08,1.822852269233665043e-08,1.898804447118401224e-08,1.974756625003137405e-08,2.050708802887873587e-08,2.126660980772609768e-08,2.202613158657345949e-08,2.278565336542082131e-08,2.354517514426818312e-08,2.430469692311554493e-08,2.506421870196290675e-08,2.582374048081026856e-08,2.658326225965763037e-08,2.734278403850499218e-08,2.810230581735235400e-08,2.886182759619971581e-08,2.962134937504707762e-08,3.038087115389443944e-08,3.114039293274180125e-08,3.189991471158916306e-08,3.265943649043652488e-08,3.341895826928388669e-08,3.417848004813124850e-08,3.493800182697861032e-08,3.569752360582597213e-08,3.645704538467333394e-08,3.721656716352069575e-08,3.797608894236805757e-08,3.873561072121541938e-08,3.949513250006278119e-08,4.025465427891014301e-08,4.101417605775750482e-08,4.177369783660486663e-08,4.253321961545222845e-08,4.329274139429959026e-08,4.405226317314695207e-08,4.481178495199431389e-08,4.557130673084167570e-08,4.633082850968903751e-08,4.709035028853639933e-08,4.784987206738376114e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.390704923959795053e-10,-1.678140984791959011e-09,-2.517211477187938516e-09,-3.356281969583918021e-09,-4.195352461979897526e-09,-5.034422954375877032e-09,-5.873493446771856537e-09,-6.712563939167836042e-09,-7.551634431563815548e-09,-8.390704923959795053e-09,-9.229775416355774558e-09,-1.006884590875175406e-08,-1.090791640114773357e-08,-1.174698689354371307e-08,-1.258605738593969258e-08,-1.342512787833567208e-08,-1.426419837073165159e-08,-1.510326886312763110e-08,-1.594233935552361060e-08,-1.678140984791959011e-08,-1.762048034031556961e-08,-1.845955083271154912e-08,-1.929862132510752862e-08,-2.013769181750350813e-08,-2.097676230989948763e-08,-2.181583280229546714e-08,-2.265490329469144664e-08,-2.349397378708742615e-08,-2.433304427948340565e-08,-2.517211477187938516e-08,-2.601118526427536466e-08,-2.685025575667134417e-08,-2.768932624906732367e-08,-2.852839674146330318e-08,-2.936746723385928269e-08,-3.020653772625526219e-08,-3.104560821865123839e-08,-3.188467871104721458e-08,-3.272374920344319078e-08,-3.356281969583916698e-08,-3.440189018823514317e-08,-3.524096068063111937e-08,-3.608003117302709557e-08,-3.691910166542307176e-08,-3.775817215781904796e-08,-3.859724265021502416e-08,-3.943631314261100035e-08,-4.027538363500697655e-08,-4.111445412740295275e-08,-4.195352461979892894e-08,-4.279259511219490514e-08,-4.363166560459088134e-08,-4.447073609698685753e-08,-4.530980658938283373e-08,-4.614887708177880993e-08,-4.698794757417478612e-08,-4.782701806657076232e-08,-4.866608855896673851e-08,-4.950515905136271471e-08,-5.034422954375869091e-08,-5.118330003615466710e-08,-5.202237052855064330e-08,-5.286144102094661950e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.927969290734966740e-10,-1.585593858146993348e-09,-2.378390787220490022e-09,-3.171187716293986696e-09,-3.963984645367483370e-09,-4.756781574440980044e-09,-5.549578503514476718e-09,-6.342375432587973392e-09,-7.135172361661470066e-09,-7.927969290734966740e-09,-8.720766219808463414e-09,-9.513563148881960088e-09,-1.030636007795545676e-08,-1.109915700702895344e-08,-1.189195393610245011e-08,-1.268475086517594678e-08,-1.347754779424944346e-08,-1.427034472332294013e-08,-1.506314165239643846e-08,-1.585593858146993679e-08,-1.664873551054343512e-08,-1.744153243961693344e-08,-1.823432936869043177e-08,-1.902712629776393010e-08,-1.981992322683742843e-08,-2.061272015591092676e-08,-2.140551708498442509e-08,-2.219831401405792341e-08,-2.299111094313142174e-08,-2.378390787220492007e-08,-2.457670480127841840e-08,-2.536950173035191673e-08,-2.616229865942541506e-08,-2.695509558849891338e-08,-2.774789251757241171e-08,-2.854068944664591004e-08,-2.933348637571940837e-08,-3.012628330479290339e-08,-3.091908023386639841e-08,-3.171187716293989343e-08,-3.250467409201338845e-08,-3.329747102108688347e-08,-3.409026795016037849e-08,-3.488306487923387351e-08,-3.567586180830736853e-08,-3.646865873738086355e-08,-3.726145566645435857e-08,-3.805425259552785359e-08,-3.884704952460134861e-08,-3.963984645367484362e-08,-4.043264338274833864e-08,-4.122544031182183366e-08,-4.201823724089532868e-08,-4.281103416996882370e-08,-4.360383109904231872e-08,-4.439662802811581374e-08,-4.518942495718930876e-08,-4.598222188626280378e-08,-4.677501881533629880e-08,-4.756781574440979382e-08,-4.836061267348328884e-08,-4.915340960255678386e-08,-4.994620653163027888e-08 +0.000000000000000000e+00,-7.595217788488967501e-10,-1.519043557697793500e-09,-2.278565336546690354e-09,-3.038087115395587414e-09,-3.797608894244484474e-09,-4.557130673093381535e-09,-5.316652451942278595e-09,-6.076174230791175655e-09,-6.835696009640072716e-09,-7.595217788488970603e-09,-8.354739567337867664e-09,-9.114261346186764724e-09,-9.873783125035661784e-09,-1.063330490388455884e-08,-1.139282668273345590e-08,-1.215234846158235297e-08,-1.291187024043125003e-08,-1.367139201928014709e-08,-1.443091379812904415e-08,-1.519043557697794121e-08,-1.594995735582683827e-08,-1.670947913467573533e-08,-1.746900091352463239e-08,-1.822852269237352945e-08,-1.898804447122242651e-08,-1.974756625007132357e-08,-2.050708802892022063e-08,-2.126660980776911769e-08,-2.202613158661801475e-08,-2.278565336546691181e-08,-2.354517514431580887e-08,-2.430469692316470593e-08,-2.506421870201360299e-08,-2.582374048086250005e-08,-2.658326225971139711e-08,-2.734278403856029417e-08,-2.810230581740919123e-08,-2.886182759625808829e-08,-2.962134937510698535e-08,-3.038087115395588241e-08,-3.114039293280477947e-08,-3.189991471165367653e-08,-3.265943649050257359e-08,-3.341895826935147065e-08,-3.417848004820036771e-08,-3.493800182704926477e-08,-3.569752360589816184e-08,-3.645704538474705890e-08,-3.721656716359595596e-08,-3.797608894244485302e-08,-3.873561072129375008e-08,-3.949513250014264714e-08,-4.025465427899154420e-08,-4.101417605784044126e-08,-4.177369783668933832e-08,-4.253321961553823538e-08,-4.329274139438713244e-08,-4.405226317323602950e-08,-4.481178495208492656e-08,-4.557130673093382362e-08,-4.633082850978272068e-08,-4.709035028863161774e-08,-4.784987206748051480e-08 +0.000000000000000000e+00,7.706812410912711674e-10,1.541362482182542335e-09,2.312043723273813606e-09,3.082724964365085083e-09,3.853406205456356561e-09,4.624087446547628039e-09,5.394768687638899516e-09,6.165449928730170994e-09,6.936131169821442471e-09,7.706812410912713122e-09,8.477493652003983772e-09,9.248174893095254423e-09,1.001885613418652507e-08,1.078953737527779572e-08,1.156021861636906637e-08,1.233089985746033702e-08,1.310158109855160767e-08,1.387226233964287833e-08,1.464294358073414898e-08,1.541362482182541963e-08,1.618430606291669028e-08,1.695498730400796093e-08,1.772566854509923158e-08,1.849634978619050223e-08,1.926703102728177288e-08,2.003771226837304353e-08,2.080839350946431418e-08,2.157907475055558483e-08,2.234975599164685548e-08,2.312043723273812613e-08,2.389111847382939678e-08,2.466179971492066743e-08,2.543248095601193808e-08,2.620316219710320873e-08,2.697384343819447938e-08,2.774452467928575003e-08,2.851520592037702068e-08,2.928588716146829133e-08,3.005656840255956529e-08,3.082724964365083925e-08,3.159793088474211321e-08,3.236861212583338717e-08,3.313929336692466113e-08,3.390997460801593509e-08,3.468065584910720905e-08,3.545133709019848301e-08,3.622201833128975697e-08,3.699269957238103093e-08,3.776338081347230488e-08,3.853406205456357884e-08,3.930474329565485280e-08,4.007542453674612676e-08,4.084610577783740072e-08,4.161678701892867468e-08,4.238746826001994864e-08,4.315814950111122260e-08,4.392883074220249656e-08,4.469951198329377052e-08,4.547019322438504448e-08,4.624087446547631844e-08,4.701155570656759239e-08,4.778223694765886635e-08,4.855291818875014031e-08 +0.000000000000000000e+00,8.143613370719297736e-10,1.628722674143859547e-09,2.443084011215789321e-09,3.257445348287719094e-09,4.071806685359648868e-09,4.886168022431578642e-09,5.700529359503508415e-09,6.514890696575438189e-09,7.329252033647367963e-09,8.143613370719297736e-09,8.957974707791227510e-09,9.772336044863157283e-09,1.058669738193508706e-08,1.140105871900701683e-08,1.221542005607894660e-08,1.302978139315087638e-08,1.384414273022280615e-08,1.465850406729473593e-08,1.547286540436666570e-08,1.628722674143859547e-08,1.710158807851052525e-08,1.791594941558245502e-08,1.873031075265438479e-08,1.954467208972631457e-08,2.035903342679824434e-08,2.117339476387017411e-08,2.198775610094210389e-08,2.280211743801403366e-08,2.361647877508596343e-08,2.443084011215789321e-08,2.524520144922982298e-08,2.605956278630175276e-08,2.687392412337368253e-08,2.768828546044561230e-08,2.850264679751754208e-08,2.931700813458947185e-08,3.013136947166139832e-08,3.094573080873332478e-08,3.176009214580525124e-08,3.257445348287717771e-08,3.338881481994910417e-08,3.420317615702103064e-08,3.501753749409295710e-08,3.583189883116488357e-08,3.664626016823681003e-08,3.746062150530873650e-08,3.827498284238066296e-08,3.908934417945258943e-08,3.990370551652451589e-08,4.071806685359644236e-08,4.153242819066836882e-08,4.234678952774029529e-08,4.316115086481222175e-08,4.397551220188414822e-08,4.478987353895607468e-08,4.560423487602800115e-08,4.641859621309992761e-08,4.723295755017185408e-08,4.804731888724378054e-08,4.886168022431570701e-08,4.967604156138763347e-08,5.049040289845955994e-08,5.130476423553148640e-08 +0.000000000000000000e+00,7.566360855292443400e-10,1.513272171058488680e-09,2.269908256587732917e-09,3.026544342116976946e-09,3.783180427646220976e-09,4.539816513175465006e-09,5.296452598704709036e-09,6.053088684233953066e-09,6.809724769763197096e-09,7.566360855292440298e-09,8.322996940821682674e-09,9.079633026350925049e-09,9.836269111880167425e-09,1.059290519740940980e-08,1.134954128293865218e-08,1.210617736846789455e-08,1.286281345399713693e-08,1.361944953952637930e-08,1.437608562505562168e-08,1.513272171058486405e-08,1.588935779611410643e-08,1.664599388164334880e-08,1.740262996717259118e-08,1.815926605270183355e-08,1.891590213823107593e-08,1.967253822376031831e-08,2.042917430928956068e-08,2.118581039481880306e-08,2.194244648034804543e-08,2.269908256587728781e-08,2.345571865140653018e-08,2.421235473693577256e-08,2.496899082246501493e-08,2.572562690799425731e-08,2.648226299352349968e-08,2.723889907905274206e-08,2.799553516458198444e-08,2.875217125011122681e-08,2.950880733564046919e-08,3.026544342116970825e-08,3.102207950669894732e-08,3.177871559222818639e-08,3.253535167775742545e-08,3.329198776328666452e-08,3.404862384881590359e-08,3.480525993434514265e-08,3.556189601987438172e-08,3.631853210540362079e-08,3.707516819093285985e-08,3.783180427646209892e-08,3.858844036199133799e-08,3.934507644752057705e-08,4.010171253304981612e-08,4.085834861857905519e-08,4.161498470410829425e-08,4.237162078963753332e-08,4.312825687516677239e-08,4.388489296069601145e-08,4.464152904622525052e-08,4.539816513175448959e-08,4.615480121728372865e-08,4.691143730281296772e-08,4.766807338834220679e-08 +0.000000000000000000e+00,-7.706812410978786862e-10,-1.541362482195757372e-09,-2.312043723293636162e-09,-3.082724964391515158e-09,-3.853406205489394155e-09,-4.624087446587273151e-09,-5.394768687685152147e-09,-6.165449928783031144e-09,-6.936131169880910140e-09,-7.706812410978788309e-09,-8.477493652076666478e-09,-9.248174893174544647e-09,-1.001885613427242282e-08,-1.078953737537030099e-08,-1.156021861646817915e-08,-1.233089985756605732e-08,-1.310158109866393549e-08,-1.387226233976181366e-08,-1.464294358085969183e-08,-1.541362482195757000e-08,-1.618430606305544817e-08,-1.695498730415332634e-08,-1.772566854525120451e-08,-1.849634978634908268e-08,-1.926703102744696085e-08,-2.003771226854483902e-08,-2.080839350964271718e-08,-2.157907475074059535e-08,-2.234975599183847352e-08,-2.312043723293635169e-08,-2.389111847403422986e-08,-2.466179971513210803e-08,-2.543248095622998620e-08,-2.620316219732786437e-08,-2.697384343842574254e-08,-2.774452467952362071e-08,-2.851520592062149888e-08,-2.928588716171937705e-08,-3.005656840281725521e-08,-3.082724964391513338e-08,-3.159793088501301155e-08,-3.236861212611088972e-08,-3.313929336720876789e-08,-3.390997460830664606e-08,-3.468065584940452423e-08,-3.545133709050240240e-08,-3.622201833160028057e-08,-3.699269957269815874e-08,-3.776338081379603691e-08,-3.853406205489391508e-08,-3.930474329599179324e-08,-4.007542453708967141e-08,-4.084610577818754958e-08,-4.161678701928542775e-08,-4.238746826038330592e-08,-4.315814950148118409e-08,-4.392883074257906226e-08,-4.469951198367694043e-08,-4.547019322477481860e-08,-4.624087446587269677e-08,-4.701155570697057494e-08,-4.778223694806845311e-08,-4.855291818916633127e-08 +0.000000000000000000e+00,-8.143613370758231060e-10,-1.628722674151646212e-09,-2.443084011227469111e-09,-3.257445348303292010e-09,-4.071806685379114909e-09,-4.886168022454938222e-09,-5.700529359530761535e-09,-6.514890696606584848e-09,-7.329252033682408160e-09,-8.143613370758231473e-09,-8.957974707834055613e-09,-9.772336044909879753e-09,-1.058669738198570389e-08,-1.140105871906152803e-08,-1.221542005613735217e-08,-1.302978139321317631e-08,-1.384414273028900045e-08,-1.465850406736482459e-08,-1.547286540444064873e-08,-1.628722674151647287e-08,-1.710158807859229701e-08,-1.791594941566812115e-08,-1.873031075274394529e-08,-1.954467208981976943e-08,-2.035903342689559357e-08,-2.117339476397141771e-08,-2.198775610104724185e-08,-2.280211743812306599e-08,-2.361647877519889013e-08,-2.443084011227471427e-08,-2.524520144935053841e-08,-2.605956278642636255e-08,-2.687392412350218669e-08,-2.768828546057801083e-08,-2.850264679765383497e-08,-2.931700813472965911e-08,-3.013136947180548656e-08,-3.094573080888131732e-08,-3.176009214595714808e-08,-3.257445348303297883e-08,-3.338881482010880959e-08,-3.420317615718464035e-08,-3.501753749426047110e-08,-3.583189883133630186e-08,-3.664626016841213262e-08,-3.746062150548796338e-08,-3.827498284256379413e-08,-3.908934417963962489e-08,-3.990370551671545565e-08,-4.071806685379128641e-08,-4.153242819086711716e-08,-4.234678952794294792e-08,-4.316115086501877868e-08,-4.397551220209460944e-08,-4.478987353917044019e-08,-4.560423487624627095e-08,-4.641859621332210171e-08,-4.723295755039793247e-08,-4.804731888747376322e-08,-4.886168022454959398e-08,-4.967604156162542474e-08,-5.049040289870125550e-08,-5.130476423577708625e-08 +0.000000000000000000e+00,-7.566360855349026690e-10,-1.513272171069805338e-09,-2.269908256604707904e-09,-3.026544342139610262e-09,-3.783180427674513035e-09,-4.539816513209415807e-09,-5.296452598744318580e-09,-6.053088684279221352e-09,-6.809724769814124124e-09,-7.566360855349026070e-09,-8.322996940883928015e-09,-9.079633026418829960e-09,-9.836269111953731905e-09,-1.059290519748863385e-08,-1.134954128302353580e-08,-1.210617736855843774e-08,-1.286281345409333969e-08,-1.361944953962824163e-08,-1.437608562516314358e-08,-1.513272171069804552e-08,-1.588935779623294912e-08,-1.664599388176785272e-08,-1.740262996730275632e-08,-1.815926605283765992e-08,-1.891590213837256352e-08,-1.967253822390746712e-08,-2.042917430944237072e-08,-2.118581039497727432e-08,-2.194244648051217792e-08,-2.269908256604708152e-08,-2.345571865158198512e-08,-2.421235473711688872e-08,-2.496899082265179232e-08,-2.572562690818669592e-08,-2.648226299372159952e-08,-2.723889907925650311e-08,-2.799553516479140671e-08,-2.875217125032631031e-08,-2.950880733586121391e-08,-3.026544342139611751e-08,-3.102207950693102111e-08,-3.177871559246592471e-08,-3.253535167800082831e-08,-3.329198776353573191e-08,-3.404862384907063551e-08,-3.480525993460553911e-08,-3.556189602014044271e-08,-3.631853210567534631e-08,-3.707516819121024991e-08,-3.783180427674515351e-08,-3.858844036228005711e-08,-3.934507644781496071e-08,-4.010171253334986431e-08,-4.085834861888476791e-08,-4.161498470441967151e-08,-4.237162078995457511e-08,-4.312825687548947871e-08,-4.388489296102438231e-08,-4.464152904655928590e-08,-4.539816513209418950e-08,-4.615480121762909310e-08,-4.691143730316399670e-08,-4.766807338869890030e-08 +0.000000000000000000e+00,7.454547749127226407e-10,1.490909549825445281e-09,2.236364324738168025e-09,2.981819099650890976e-09,3.727273874563614341e-09,4.472728649476337705e-09,5.218183424389061070e-09,5.963638199301784434e-09,6.709092974214507799e-09,7.454547749127231990e-09,8.200002524039956182e-09,8.945457298952680374e-09,9.690912073865404565e-09,1.043636684877812876e-08,1.118182162369085295e-08,1.192727639860357714e-08,1.267273117351630133e-08,1.341818594842902552e-08,1.416364072334174972e-08,1.490909549825447391e-08,1.565455027316719810e-08,1.640000504807992229e-08,1.714545982299264648e-08,1.789091459790537067e-08,1.863636937281809487e-08,1.938182414773081906e-08,2.012727892264354325e-08,2.087273369755626744e-08,2.161818847246899163e-08,2.236364324738171582e-08,2.310909802229444002e-08,2.385455279720716421e-08,2.460000757211988840e-08,2.534546234703261259e-08,2.609091712194533678e-08,2.683637189685806097e-08,2.758182667177078516e-08,2.832728144668350936e-08,2.907273622159623355e-08,2.981819099650895443e-08,3.056364577142167531e-08,3.130910054633439620e-08,3.205455532124711708e-08,3.280001009615983796e-08,3.354546487107255885e-08,3.429091964598527973e-08,3.503637442089800061e-08,3.578182919581072149e-08,3.652728397072344238e-08,3.727273874563616326e-08,3.801819352054888414e-08,3.876364829546160503e-08,3.950910307037432591e-08,4.025455784528704679e-08,4.100001262019976768e-08,4.174546739511248856e-08,4.249092217002520944e-08,4.323637694493793032e-08,4.398183171985065121e-08,4.472728649476337209e-08,4.547274126967609297e-08,4.621819604458881386e-08,4.696365081950153474e-08 +0.000000000000000000e+00,7.556943817378996153e-10,1.511388763475799231e-09,2.267083145213698639e-09,3.022777526951598048e-09,3.778471908689497456e-09,4.534166290427397278e-09,5.289860672165297101e-09,6.045555053903196923e-09,6.801249435641096745e-09,7.556943817378996567e-09,8.312638199116895562e-09,9.068332580854794557e-09,9.824026962592693552e-09,1.057972134433059255e-08,1.133541572606849154e-08,1.209111010780639054e-08,1.284680448954428953e-08,1.360249887128218853e-08,1.435819325302008752e-08,1.511388763475798652e-08,1.586958201649588551e-08,1.662527639823378451e-08,1.738097077997168350e-08,1.813666516170958250e-08,1.889235954344748149e-08,1.964805392518538049e-08,2.040374830692327948e-08,2.115944268866117848e-08,2.191513707039907747e-08,2.267083145213697647e-08,2.342652583387487546e-08,2.418222021561277446e-08,2.493791459735067345e-08,2.569360897908857245e-08,2.644930336082647144e-08,2.720499774256437044e-08,2.796069212430226943e-08,2.871638650604016843e-08,2.947208088777806742e-08,3.022777526951596642e-08,3.098346965125386872e-08,3.173916403299177102e-08,3.249485841472967333e-08,3.325055279646757563e-08,3.400624717820547793e-08,3.476194155994338024e-08,3.551763594168128254e-08,3.627333032341918485e-08,3.702902470515708715e-08,3.778471908689498945e-08,3.854041346863289176e-08,3.929610785037079406e-08,4.005180223210869636e-08,4.080749661384659867e-08,4.156319099558450097e-08,4.231888537732240327e-08,4.307457975906030558e-08,4.383027414079820788e-08,4.458596852253611019e-08,4.534166290427401249e-08,4.609735728601191479e-08,4.685305166774981710e-08,4.760874604948771940e-08 +0.000000000000000000e+00,7.331768317753955208e-10,1.466353663550791042e-09,2.199530495326186666e-09,2.932707327101582497e-09,3.665884158876978328e-09,4.399060990652374158e-09,5.132237822427770403e-09,5.865414654203166648e-09,6.598591485978562892e-09,7.331768317753959137e-09,8.064945149529355381e-09,8.798121981304751626e-09,9.531298813080147870e-09,1.026447564485554411e-08,1.099765247663094036e-08,1.173082930840633660e-08,1.246400614018173285e-08,1.319718297195712909e-08,1.393035980373252534e-08,1.466353663550792158e-08,1.539671346728331783e-08,1.612989029905871407e-08,1.686306713083411032e-08,1.759624396260950656e-08,1.832942079438490280e-08,1.906259762616029905e-08,1.979577445793569529e-08,2.052895128971109154e-08,2.126212812148648778e-08,2.199530495326188403e-08,2.272848178503728027e-08,2.346165861681267652e-08,2.419483544858807276e-08,2.492801228036346901e-08,2.566118911213886525e-08,2.639436594391426149e-08,2.712754277568965774e-08,2.786071960746505398e-08,2.859389643924045023e-08,2.932707327101584647e-08,3.006025010279124603e-08,3.079342693456664227e-08,3.152660376634203851e-08,3.225978059811743476e-08,3.299295742989283100e-08,3.372613426166822725e-08,3.445931109344362349e-08,3.519248792521901974e-08,3.592566475699441598e-08,3.665884158876981223e-08,3.739201842054520847e-08,3.812519525232060472e-08,3.885837208409600096e-08,3.959154891587139720e-08,4.032472574764679345e-08,4.105790257942218969e-08,4.179107941119758594e-08,4.252425624297298218e-08,4.325743307474837843e-08,4.399060990652377467e-08,4.472378673829917092e-08,4.545696357007456716e-08,4.619014040184996341e-08 +0.000000000000000000e+00,-7.454547749266063503e-10,-1.490909549853212701e-09,-2.236364324779819051e-09,-2.981819099706425401e-09,-3.727273874633031338e-09,-4.472728649559637275e-09,-5.218183424486243211e-09,-5.963638199412849148e-09,-6.709092974339455085e-09,-7.454547749266061021e-09,-8.200002524192666958e-09,-8.945457299119272895e-09,-9.690912074045878831e-09,-1.043636684897248477e-08,-1.118182162389909070e-08,-1.192727639882569664e-08,-1.267273117375230258e-08,-1.341818594867890851e-08,-1.416364072360551445e-08,-1.490909549853211873e-08,-1.565455027345872302e-08,-1.640000504838532730e-08,-1.714545982331193158e-08,-1.789091459823853586e-08,-1.863636937316514015e-08,-1.938182414809174443e-08,-2.012727892301834871e-08,-2.087273369794495299e-08,-2.161818847287155727e-08,-2.236364324779816156e-08,-2.310909802272476584e-08,-2.385455279765137012e-08,-2.460000757257797440e-08,-2.534546234750457869e-08,-2.609091712243118297e-08,-2.683637189735778725e-08,-2.758182667228439153e-08,-2.832728144721099582e-08,-2.907273622213760010e-08,-2.981819099706420438e-08,-3.056364577199080866e-08,-3.130910054691741295e-08,-3.205455532184401723e-08,-3.280001009677062151e-08,-3.354546487169722579e-08,-3.429091964662383007e-08,-3.503637442155043436e-08,-3.578182919647703864e-08,-3.652728397140364292e-08,-3.727273874633024720e-08,-3.801819352125685149e-08,-3.876364829618345577e-08,-3.950910307111006005e-08,-4.025455784603666433e-08,-4.100001262096326862e-08,-4.174546739588987290e-08,-4.249092217081647718e-08,-4.323637694574308146e-08,-4.398183172066968574e-08,-4.472728649559629003e-08,-4.547274127052289431e-08,-4.621819604544949859e-08,-4.696365082037610287e-08 +0.000000000000000000e+00,-7.556943817478747931e-10,-1.511388763495749586e-09,-2.267083145243624379e-09,-3.022777526991499173e-09,-3.778471908739373966e-09,-4.534166290487248759e-09,-5.289860672235123552e-09,-6.045555053982998345e-09,-6.801249435730873138e-09,-7.556943817478747931e-09,-8.312638199226622725e-09,-9.068332580974497518e-09,-9.824026962722372311e-09,-1.057972134447024710e-08,-1.133541572621812190e-08,-1.209111010796599669e-08,-1.284680448971387148e-08,-1.360249887146174628e-08,-1.435819325320962107e-08,-1.511388763495749586e-08,-1.586958201670537066e-08,-1.662527639845324545e-08,-1.738097078020112024e-08,-1.813666516194899504e-08,-1.889235954369686983e-08,-1.964805392544474462e-08,-2.040374830719261942e-08,-2.115944268894049421e-08,-2.191513707068836900e-08,-2.267083145243624379e-08,-2.342652583418411859e-08,-2.418222021593199338e-08,-2.493791459767986817e-08,-2.569360897942774297e-08,-2.644930336117561776e-08,-2.720499774292349255e-08,-2.796069212467136735e-08,-2.871638650641924214e-08,-2.947208088816711693e-08,-3.022777526991499173e-08,-3.098346965166286652e-08,-3.173916403341074131e-08,-3.249485841515861611e-08,-3.325055279690649090e-08,-3.400624717865436569e-08,-3.476194156040224048e-08,-3.551763594215011528e-08,-3.627333032389799007e-08,-3.702902470564586486e-08,-3.778471908739373966e-08,-3.854041346914161445e-08,-3.929610785088948924e-08,-4.005180223263736404e-08,-4.080749661438523883e-08,-4.156319099613311362e-08,-4.231888537788098842e-08,-4.307457975962886321e-08,-4.383027414137673800e-08,-4.458596852312461280e-08,-4.534166290487248759e-08,-4.609735728662036238e-08,-4.685305166836823718e-08,-4.760874605011611197e-08 +0.000000000000000000e+00,-7.331768317875092706e-10,-1.466353663575018541e-09,-2.199530495362527605e-09,-2.932707327150036669e-09,-3.665884158937545733e-09,-4.399060990725055210e-09,-5.132237822512564688e-09,-5.865414654300074165e-09,-6.598591486087583642e-09,-7.331768317875093120e-09,-8.064945149662602597e-09,-8.798121981450112075e-09,-9.531298813237621552e-09,-1.026447564502513103e-08,-1.099765247681264051e-08,-1.173082930860014998e-08,-1.246400614038765946e-08,-1.319718297217516894e-08,-1.393035980396267842e-08,-1.466353663575018789e-08,-1.539671346753769572e-08,-1.612989029932520189e-08,-1.686306713111270805e-08,-1.759624396290021422e-08,-1.832942079468772039e-08,-1.906259762647522656e-08,-1.979577445826273273e-08,-2.052895129005023890e-08,-2.126212812183774507e-08,-2.199530495362525124e-08,-2.272848178541275740e-08,-2.346165861720026357e-08,-2.419483544898776974e-08,-2.492801228077527591e-08,-2.566118911256278208e-08,-2.639436594435028825e-08,-2.712754277613779442e-08,-2.786071960792530059e-08,-2.859389643971280675e-08,-2.932707327150031292e-08,-3.006025010328781909e-08,-3.079342693507532526e-08,-3.152660376686283143e-08,-3.225978059865033760e-08,-3.299295743043784377e-08,-3.372613426222534993e-08,-3.445931109401285610e-08,-3.519248792580036227e-08,-3.592566475758786844e-08,-3.665884158937537461e-08,-3.739201842116288078e-08,-3.812519525295038695e-08,-3.885837208473789312e-08,-3.959154891652539928e-08,-4.032472574831290545e-08,-4.105790258010041162e-08,-4.179107941188791779e-08,-4.252425624367542396e-08,-4.325743307546293013e-08,-4.399060990725043630e-08,-4.472378673903794247e-08,-4.545696357082544863e-08,-4.619014040261295480e-08 +0.000000000000000000e+00,7.206883802842654158e-10,1.441376760568530832e-09,2.162065140852796351e-09,2.882753521137062077e-09,3.603441901421327803e-09,4.324130281705593529e-09,5.044818661989859668e-09,5.765507042274125808e-09,6.486195422558391947e-09,7.206883802842658087e-09,7.927572183126924227e-09,8.648260563411190366e-09,9.368948943695456506e-09,1.008963732397972265e-08,1.081032570426398878e-08,1.153101408454825492e-08,1.225170246483252106e-08,1.297239084511678720e-08,1.369307922540105334e-08,1.441376760568531948e-08,1.513445598596958562e-08,1.585514436625385176e-08,1.657583274653811790e-08,1.729652112682238404e-08,1.801720950710665018e-08,1.873789788739091632e-08,1.945858626767518246e-08,2.017927464795944860e-08,2.089996302824371474e-08,2.162065140852798088e-08,2.234133978881224702e-08,2.306202816909651316e-08,2.378271654938077930e-08,2.450340492966504544e-08,2.522409330994931158e-08,2.594478169023357772e-08,2.666547007051784386e-08,2.738615845080211000e-08,2.810684683108637613e-08,2.882753521137064227e-08,2.954822359165490841e-08,3.026891197193917786e-08,3.098960035222345062e-08,3.171028873250772338e-08,3.243097711279199613e-08,3.315166549307626889e-08,3.387235387336054165e-08,3.459304225364481440e-08,3.531373063392908716e-08,3.603441901421335992e-08,3.675510739449763268e-08,3.747579577478190543e-08,3.819648415506617819e-08,3.891717253535045095e-08,3.963786091563472370e-08,4.035854929591899646e-08,4.107923767620326922e-08,4.179992605648754197e-08,4.252061443677181473e-08,4.324130281705608749e-08,4.396199119734036025e-08,4.468267957762463300e-08,4.540336795790890576e-08 +0.000000000000000000e+00,7.320220932961660817e-10,1.464044186592332163e-09,2.196066279888498349e-09,2.928088373184664741e-09,3.660110466480831132e-09,4.392132559776997524e-09,5.124154653073163503e-09,5.856176746369329481e-09,6.588198839665495459e-09,7.320220932961661438e-09,8.052243026257827416e-09,8.784265119553993395e-09,9.516287212850159373e-09,1.024830930614632535e-08,1.098033139944249133e-08,1.171235349273865731e-08,1.244437558603482329e-08,1.317639767933098926e-08,1.390841977262715524e-08,1.464044186592332122e-08,1.537246395921948885e-08,1.610448605251565814e-08,1.683650814581182743e-08,1.756853023910799672e-08,1.830055233240416600e-08,1.903257442570033529e-08,1.976459651899650458e-08,2.049661861229267386e-08,2.122864070558884315e-08,2.196066279888501244e-08,2.269268489218118172e-08,2.342470698547735101e-08,2.415672907877352030e-08,2.488875117206968959e-08,2.562077326536585887e-08,2.635279535866202816e-08,2.708481745195819745e-08,2.781683954525436673e-08,2.854886163855053602e-08,2.928088373184670531e-08,3.001290582514287460e-08,3.074492791843904388e-08,3.147695001173521317e-08,3.220897210503138246e-08,3.294099419832755174e-08,3.367301629162372103e-08,3.440503838491989032e-08,3.513706047821605960e-08,3.586908257151222889e-08,3.660110466480839818e-08,3.733312675810456747e-08,3.806514885140073675e-08,3.879717094469690604e-08,3.952919303799307533e-08,4.026121513128924461e-08,4.099323722458541390e-08,4.172525931788158319e-08,4.245728141117775248e-08,4.318930350447392176e-08,4.392132559777009105e-08,4.465334769106626034e-08,4.538536978436242962e-08,4.611739187765859891e-08 +0.000000000000000000e+00,7.151613858717545908e-10,1.430322771743509182e-09,2.145484157615263772e-09,2.860645543487018363e-09,3.575806929358772954e-09,4.290968315230527545e-09,5.006129701102282135e-09,5.721291086974036726e-09,6.436452472845791317e-09,7.151613858717545908e-09,7.866775244589301326e-09,8.581936630461056744e-09,9.297098016332812162e-09,1.001225940220456758e-08,1.072742078807632300e-08,1.144258217394807842e-08,1.215774355981983383e-08,1.287290494569158925e-08,1.358806633156334467e-08,1.430322771743510009e-08,1.501838910330685551e-08,1.573355048917860927e-08,1.644871187505036303e-08,1.716387326092211680e-08,1.787903464679387056e-08,1.859419603266562432e-08,1.930935741853737809e-08,2.002451880440913185e-08,2.073968019028088561e-08,2.145484157615263938e-08,2.217000296202439314e-08,2.288516434789614690e-08,2.360032573376790067e-08,2.431548711963965443e-08,2.503064850551140820e-08,2.574580989138316196e-08,2.646097127725491572e-08,2.717613266312666949e-08,2.789129404899842325e-08,2.860645543487017701e-08,2.932161682074193078e-08,3.003677820661368454e-08,3.075193959248543830e-08,3.146710097835719207e-08,3.218226236422894583e-08,3.289742375010069960e-08,3.361258513597245336e-08,3.432774652184420712e-08,3.504290790771596089e-08,3.575806929358771465e-08,3.647323067945946841e-08,3.718839206533122218e-08,3.790355345120297594e-08,3.861871483707472970e-08,3.933387622294648347e-08,4.004903760881823723e-08,4.076419899468999099e-08,4.147936038056174476e-08,4.219452176643349852e-08,4.290968315230525229e-08,4.362484453817700605e-08,4.434000592404875981e-08,4.505516730992051358e-08 +0.000000000000000000e+00,-7.206883803074747596e-10,-1.441376760614949519e-09,-2.162065140922424279e-09,-2.882753521229899038e-09,-3.603441901537373798e-09,-4.324130281844848558e-09,-5.044818662152322904e-09,-5.765507042459797250e-09,-6.486195422767271596e-09,-7.206883803074745942e-09,-7.927572183382220288e-09,-8.648260563689695461e-09,-9.368948943997170634e-09,-1.008963732430464581e-08,-1.081032570461212098e-08,-1.153101408491959615e-08,-1.225170246522707133e-08,-1.297239084553454650e-08,-1.369307922584202167e-08,-1.441376760614949685e-08,-1.513445598645697037e-08,-1.585514436676444388e-08,-1.657583274707191740e-08,-1.729652112737939092e-08,-1.801720950768686444e-08,-1.873789788799433796e-08,-1.945858626830181148e-08,-2.017927464860928500e-08,-2.089996302891675852e-08,-2.162065140922423204e-08,-2.234133978953170555e-08,-2.306202816983917907e-08,-2.378271655014665259e-08,-2.450340493045412611e-08,-2.522409331076159963e-08,-2.594478169106907315e-08,-2.666547007137654667e-08,-2.738615845168402019e-08,-2.810684683199149370e-08,-2.882753521229896722e-08,-2.954822359260644074e-08,-3.026891197291391426e-08,-3.098960035322138778e-08,-3.171028873352886130e-08,-3.243097711383633482e-08,-3.315166549414380834e-08,-3.387235387445128186e-08,-3.459304225475875537e-08,-3.531373063506622889e-08,-3.603441901537370241e-08,-3.675510739568117593e-08,-3.747579577598864945e-08,-3.819648415629612297e-08,-3.891717253660359649e-08,-3.963786091691107001e-08,-4.035854929721854353e-08,-4.107923767752601704e-08,-4.179992605783349056e-08,-4.252061443814096408e-08,-4.324130281844843760e-08,-4.396199119875591112e-08,-4.468267957906338464e-08,-4.540336795937085816e-08 +0.000000000000000000e+00,-7.320220933144669358e-10,-1.464044186628933872e-09,-2.196066279943400807e-09,-2.928088373257867743e-09,-3.660110466572334679e-09,-4.392132559886801615e-09,-5.124154653201268964e-09,-5.856176746515736314e-09,-6.588198839830203663e-09,-7.320220933144671012e-09,-8.052243026459138362e-09,-8.784265119773604884e-09,-9.516287213088071406e-09,-1.024830930640253793e-08,-1.098033139971700445e-08,-1.171235349303147097e-08,-1.244437558634593750e-08,-1.317639767966040402e-08,-1.390841977297487054e-08,-1.464044186628933706e-08,-1.537246395960380358e-08,-1.610448605291827011e-08,-1.683650814623273663e-08,-1.756853023954720315e-08,-1.830055233286166967e-08,-1.903257442617613620e-08,-1.976459651949060272e-08,-2.049661861280506924e-08,-2.122864070611953576e-08,-2.196066279943400228e-08,-2.269268489274846881e-08,-2.342470698606293533e-08,-2.415672907937740185e-08,-2.488875117269186837e-08,-2.562077326600633490e-08,-2.635279535932080142e-08,-2.708481745263526794e-08,-2.781683954594973446e-08,-2.854886163926420098e-08,-2.928088373257866751e-08,-3.001290582589313403e-08,-3.074492791920760055e-08,-3.147695001252206707e-08,-3.220897210583653359e-08,-3.294099419915100012e-08,-3.367301629246546664e-08,-3.440503838577993316e-08,-3.513706047909439968e-08,-3.586908257240886621e-08,-3.660110466572333273e-08,-3.733312675903779925e-08,-3.806514885235226577e-08,-3.879717094566673229e-08,-3.952919303898119882e-08,-4.026121513229566534e-08,-4.099323722561013186e-08,-4.172525931892459838e-08,-4.245728141223906491e-08,-4.318930350555353143e-08,-4.392132559886799795e-08,-4.465334769218246447e-08,-4.538536978549693099e-08,-4.611739187881139752e-08 +0.000000000000000000e+00,-7.151613858922808709e-10,-1.430322771784561742e-09,-2.145484157676842406e-09,-2.860645543569123070e-09,-3.575806929461403734e-09,-4.290968315353684812e-09,-5.006129701245965889e-09,-5.721291087138246967e-09,-6.436452473030528045e-09,-7.151613858922809122e-09,-7.866775244815090200e-09,-8.581936630707371278e-09,-9.297098016599652355e-09,-1.001225940249193343e-08,-1.072742078838421451e-08,-1.144258217427649559e-08,-1.215774356016877667e-08,-1.287290494606105774e-08,-1.358806633195333882e-08,-1.430322771784561990e-08,-1.501838910373790263e-08,-1.573355048963018371e-08,-1.644871187552246479e-08,-1.716387326141474586e-08,-1.787903464730702694e-08,-1.859419603319930802e-08,-1.930935741909158910e-08,-2.002451880498387017e-08,-2.073968019087615125e-08,-2.145484157676843233e-08,-2.217000296266071341e-08,-2.288516434855299449e-08,-2.360032573444527556e-08,-2.431548712033755664e-08,-2.503064850622983772e-08,-2.574580989212211880e-08,-2.646097127801439987e-08,-2.717613266390668095e-08,-2.789129404979896203e-08,-2.860645543569124311e-08,-2.932161682158352418e-08,-3.003677820747580526e-08,-3.075193959336808634e-08,-3.146710097926036742e-08,-3.218226236515264850e-08,-3.289742375104492957e-08,-3.361258513693721065e-08,-3.432774652282949173e-08,-3.504290790872177281e-08,-3.575806929461405388e-08,-3.647323068050633496e-08,-3.718839206639861604e-08,-3.790355345229089712e-08,-3.861871483818317819e-08,-3.933387622407545927e-08,-4.004903760996774035e-08,-4.076419899586002143e-08,-4.147936038175230251e-08,-4.219452176764458358e-08,-4.290968315353686466e-08,-4.362484453942914574e-08,-4.434000592532142682e-08,-4.505516731121370789e-08 +0.000000000000000000e+00,7.063251849255013591e-10,1.412650369851002718e-09,2.118975554776504284e-09,2.825300739702005850e-09,3.531625924627507416e-09,4.237951109553008568e-09,4.944276294478509720e-09,5.650601479404010873e-09,6.356926664329512025e-09,7.063251849255013177e-09,7.769577034180514330e-09,8.475902219106015482e-09,9.182227404031516634e-09,9.888552588957017786e-09,1.059487777388251894e-08,1.130120295880802009e-08,1.200752814373352124e-08,1.271385332865902240e-08,1.342017851358452355e-08,1.412650369851002470e-08,1.483282888343552585e-08,1.553915406836102535e-08,1.624547925328652319e-08,1.695180443821202104e-08,1.765812962313751888e-08,1.836445480806301672e-08,1.907077999298851457e-08,1.977710517791401241e-08,2.048343036283951026e-08,2.118975554776500810e-08,2.189608073269050594e-08,2.260240591761600379e-08,2.330873110254150163e-08,2.401505628746699947e-08,2.472138147239249732e-08,2.542770665731799516e-08,2.613403184224349300e-08,2.684035702716899085e-08,2.754668221209448869e-08,2.825300739701998653e-08,2.895933258194548438e-08,2.966565776687098222e-08,3.037198295179648007e-08,3.107830813672197791e-08,3.178463332164747575e-08,3.249095850657297360e-08,3.319728369149847144e-08,3.390360887642396928e-08,3.460993406134946713e-08,3.531625924627496497e-08,3.602258443120046281e-08,3.672890961612596066e-08,3.743523480105145850e-08,3.814155998597695634e-08,3.884788517090245419e-08,3.955421035582795203e-08,4.026053554075344988e-08,4.096686072567894772e-08,4.167318591060444556e-08,4.237951109552994341e-08,4.308583628045544125e-08,4.379216146538093909e-08,4.449848665030643694e-08 +0.000000000000000000e+00,7.130822928621818680e-10,1.426164585724363736e-09,2.139246878586545811e-09,2.852329171448727885e-09,3.565411464310909960e-09,4.278493757173091621e-09,4.991576050035273282e-09,5.704658342897454944e-09,6.417740635759636605e-09,7.130822928621818266e-09,7.843905221483999927e-09,8.556987514346181588e-09,9.270069807208363249e-09,9.983152100070544911e-09,1.069623439293272657e-08,1.140931668579490823e-08,1.212239897865708989e-08,1.283548127151927156e-08,1.354856356438145322e-08,1.426164585724363488e-08,1.497472815010581819e-08,1.568781044296800316e-08,1.640089273583018813e-08,1.711397502869237310e-08,1.782705732155455807e-08,1.854013961441674304e-08,1.925322190727892801e-08,1.996630420014111298e-08,2.067938649300329795e-08,2.139246878586548292e-08,2.210555107872766789e-08,2.281863337158985286e-08,2.353171566445203783e-08,2.424479795731422280e-08,2.495788025017640777e-08,2.567096254303859274e-08,2.638404483590077771e-08,2.709712712876296268e-08,2.781020942162514765e-08,2.852329171448733262e-08,2.923637400734951759e-08,2.994945630021170256e-08,3.066253859307388753e-08,3.137562088593607250e-08,3.208870317879825747e-08,3.280178547166044244e-08,3.351486776452262741e-08,3.422795005738481238e-08,3.494103235024699735e-08,3.565411464310918232e-08,3.636719693597136729e-08,3.708027922883355226e-08,3.779336152169573723e-08,3.850644381455792220e-08,3.921952610742010717e-08,3.993260840028229214e-08,4.064569069314447711e-08,4.135877298600666208e-08,4.207185527886884705e-08,4.278493757173103202e-08,4.349801986459321699e-08,4.421110215745540196e-08,4.492418445031758693e-08 +0.000000000000000000e+00,6.989956050262575360e-10,1.397991210052515072e-09,2.096986815078772608e-09,2.795982420105030144e-09,3.494978025131287680e-09,4.193973630157545216e-09,4.892969235183802752e-09,5.591964840210060288e-09,6.290960445236317824e-09,6.989956050262575360e-09,7.688951655288832896e-09,8.387947260315090431e-09,9.086942865341347967e-09,9.785938470367605503e-09,1.048493407539386304e-08,1.118392968042012058e-08,1.188292528544637811e-08,1.258192089047263565e-08,1.328091649549889318e-08,1.397991210052515072e-08,1.467890770555140826e-08,1.537790331057766579e-08,1.607689891560392333e-08,1.677589452063018086e-08,1.747489012565643840e-08,1.817388573068269593e-08,1.887288133570895347e-08,1.957187694073521101e-08,2.027087254576146854e-08,2.096986815078772608e-08,2.166886375581398361e-08,2.236785936084024115e-08,2.306685496586649869e-08,2.376585057089275622e-08,2.446484617591901376e-08,2.516384178094527129e-08,2.586283738597152883e-08,2.656183299099778637e-08,2.726082859602404390e-08,2.795982420105030144e-08,2.865881980607655897e-08,2.935781541110281651e-08,3.005681101612907405e-08,3.075580662115533158e-08,3.145480222618158912e-08,3.215379783120784665e-08,3.285279343623410419e-08,3.355178904126036173e-08,3.425078464628661926e-08,3.494978025131287680e-08,3.564877585633913433e-08,3.634777146136539187e-08,3.704676706639164941e-08,3.774576267141790694e-08,3.844475827644416448e-08,3.914375388147042201e-08,3.984274948649667955e-08,4.054174509152293709e-08,4.124074069654919462e-08,4.193973630157545216e-08,4.263873190660170969e-08,4.333772751162796723e-08,4.403672311665422477e-08 +0.000000000000000000e+00,-7.063251849601317924e-10,-1.412650369920263585e-09,-2.118975554880395274e-09,-2.825300739840526756e-09,-3.531625924800658238e-09,-4.237951109760789721e-09,-4.944276294720921616e-09,-5.650601479681053512e-09,-6.356926664641185408e-09,-7.063251849601317304e-09,-7.769577034561449200e-09,-8.475902219521581095e-09,-9.182227404481712991e-09,-9.888552589441844887e-09,-1.059487777440197678e-08,-1.130120295936210868e-08,-1.200752814432224057e-08,-1.271385332928237247e-08,-1.342017851424250437e-08,-1.412650369920263626e-08,-1.483282888416276816e-08,-1.553915406912289840e-08,-1.624547925408302864e-08,-1.695180443904315888e-08,-1.765812962400328912e-08,-1.836445480896341936e-08,-1.907077999392354961e-08,-1.977710517888367985e-08,-2.048343036384381009e-08,-2.118975554880394033e-08,-2.189608073376407057e-08,-2.260240591872420081e-08,-2.330873110368433106e-08,-2.401505628864446130e-08,-2.472138147360459154e-08,-2.542770665856472178e-08,-2.613403184352485202e-08,-2.684035702848498226e-08,-2.754668221344511250e-08,-2.825300739840524275e-08,-2.895933258336537299e-08,-2.966565776832550323e-08,-3.037198295328563678e-08,-3.107830813824577033e-08,-3.178463332320590388e-08,-3.249095850816603743e-08,-3.319728369312617098e-08,-3.390360887808630453e-08,-3.460993406304643808e-08,-3.531625924800657163e-08,-3.602258443296670518e-08,-3.672890961792683873e-08,-3.743523480288697228e-08,-3.814155998784710583e-08,-3.884788517280723938e-08,-3.955421035776737293e-08,-4.026053554272750648e-08,-4.096686072768764003e-08,-4.167318591264777358e-08,-4.237951109760790713e-08,-4.308583628256804068e-08,-4.379216146752817423e-08,-4.449848665248830778e-08 +0.000000000000000000e+00,-7.130822928908542227e-10,-1.426164585781708445e-09,-2.139246878672562668e-09,-2.852329171563416891e-09,-3.565411464454271114e-09,-4.278493757345125336e-09,-4.991576050235979559e-09,-5.704658343126833782e-09,-6.417740636017688005e-09,-7.130822928908542227e-09,-7.843905221799395623e-09,-8.556987514690249018e-09,-9.270069807581102414e-09,-9.983152100471955809e-09,-1.069623439336280921e-08,-1.140931668625366260e-08,-1.212239897914451600e-08,-1.283548127203536939e-08,-1.354856356492622279e-08,-1.426164585781707618e-08,-1.497472815070792958e-08,-1.568781044359878463e-08,-1.640089273648963968e-08,-1.711397502938049473e-08,-1.782705732227134978e-08,-1.854013961516220483e-08,-1.925322190805305988e-08,-1.996630420094391493e-08,-2.067938649383476998e-08,-2.139246878672562503e-08,-2.210555107961648008e-08,-2.281863337250733513e-08,-2.353171566539819018e-08,-2.424479795828904523e-08,-2.495788025117990028e-08,-2.567096254407075533e-08,-2.638404483696161038e-08,-2.709712712985246543e-08,-2.781020942274332048e-08,-2.852329171563417553e-08,-2.923637400852503058e-08,-2.994945630141588563e-08,-3.066253859430673737e-08,-3.137562088719758911e-08,-3.208870318008844085e-08,-3.280178547297929259e-08,-3.351486776587014433e-08,-3.422795005876099607e-08,-3.494103235165184781e-08,-3.565411464454269956e-08,-3.636719693743355130e-08,-3.708027923032440304e-08,-3.779336152321525478e-08,-3.850644381610610652e-08,-3.921952610899695826e-08,-3.993260840188781000e-08,-4.064569069477866174e-08,-4.135877298766951349e-08,-4.207185528056036523e-08,-4.278493757345121697e-08,-4.349801986634206871e-08,-4.421110215923292045e-08,-4.492418445212377219e-08 +0.000000000000000000e+00,-6.989956050569768526e-10,-1.397991210113953705e-09,-2.096986815170930454e-09,-2.795982420227906997e-09,-3.494978025284883539e-09,-4.193973630341860081e-09,-4.892969235398836624e-09,-5.591964840455813166e-09,-6.290960445512789708e-09,-6.989956050569766251e-09,-7.688951655626742793e-09,-8.387947260683718508e-09,-9.086942865740694224e-09,-9.785938470797669939e-09,-1.048493407585464565e-08,-1.118392968091162137e-08,-1.188292528596859708e-08,-1.258192089102557280e-08,-1.328091649608254851e-08,-1.397991210113952423e-08,-1.467890770619649995e-08,-1.537790331125347566e-08,-1.607689891631045138e-08,-1.677589452136742709e-08,-1.747489012642440281e-08,-1.817388573148137852e-08,-1.887288133653835424e-08,-1.957187694159532995e-08,-2.027087254665230567e-08,-2.096986815170928138e-08,-2.166886375676625710e-08,-2.236785936182323281e-08,-2.306685496688020853e-08,-2.376585057193718424e-08,-2.446484617699415996e-08,-2.516384178205113567e-08,-2.586283738710811139e-08,-2.656183299216508710e-08,-2.726082859722206282e-08,-2.795982420227903853e-08,-2.865881980733601425e-08,-2.935781541239298996e-08,-3.005681101744996899e-08,-3.075580662250694470e-08,-3.145480222756392042e-08,-3.215379783262089613e-08,-3.285279343767787185e-08,-3.355178904273484756e-08,-3.425078464779182328e-08,-3.494978025284879899e-08,-3.564877585790577471e-08,-3.634777146296275042e-08,-3.704676706801972614e-08,-3.774576267307670185e-08,-3.844475827813367757e-08,-3.914375388319065329e-08,-3.984274948824762900e-08,-4.054174509330460472e-08,-4.124074069836158043e-08,-4.193973630341855615e-08,-4.263873190847553186e-08,-4.333772751353250758e-08,-4.403672311858948329e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,9.026579930005007923e-10,1.805315986001001585e-09,2.707973979001502480e-09,3.610631972002003583e-09,4.513289965002504685e-09,5.415947958003005788e-09,6.318605951003506890e-09,7.221263944004007993e-09,8.123921937004509095e-09,9.026579930005009370e-09,9.929237923005509646e-09,1.083189591600600992e-08,1.173455390900651020e-08,1.263721190200701047e-08,1.353986989500751075e-08,1.444252788800801102e-08,1.534518588100850964e-08,1.624784387400900826e-08,1.715050186700950688e-08,1.805315986001000551e-08,1.895581785301050413e-08,1.985847584601100275e-08,2.076113383901150137e-08,2.166379183201199999e-08,2.256644982501249861e-08,2.346910781801299723e-08,2.437176581101349585e-08,2.527442380401399447e-08,2.617708179701449309e-08,2.707973979001499172e-08,2.798239778301549034e-08,2.888505577601598896e-08,2.978771376901648758e-08,3.069037176201698620e-08,3.159302975501748482e-08,3.249568774801798344e-08,3.339834574101848206e-08,3.430100373401898068e-08,3.520366172701947930e-08,3.610631972001997792e-08,3.700897771302047655e-08,3.791163570602097517e-08,3.881429369902147379e-08,3.971695169202197241e-08,4.061960968502247103e-08,4.152226767802296965e-08,4.242492567102346827e-08,4.332758366402396689e-08,4.423024165702446551e-08,4.513289965002496413e-08,4.603555764302546275e-08,4.693821563602596138e-08,4.784087362902646000e-08,4.874353162202695862e-08,4.964618961502745724e-08,5.054884760802795586e-08,5.145150560102845448e-08,5.235416359402895310e-08,5.325682158702945172e-08,5.415947958002995034e-08,5.506213757303044896e-08,5.596479556603094759e-08,5.686745355903144621e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.034801010436112965e-21,-2.069602020872225929e-21,-3.104403031308339082e-21,-4.139204041744452611e-21,-5.174005052180566140e-21,-6.208806062616679669e-21,-7.243607073052792445e-21,-8.278408083488905222e-21,-9.313209093925017999e-21,-1.034801010436113078e-20,-1.138281111479724355e-20,-1.241761212523335633e-20,-1.345241313566946910e-20,-1.448721414610558188e-20,-1.552201515654169466e-20,-1.655681616697780743e-20,-1.759161717741392021e-20,-1.862641818785003299e-20,-1.966121919828614576e-20,-2.069602020872225854e-20,-2.173082121915837132e-20,-2.276562222959448409e-20,-2.380042324003059687e-20,-2.483522425046670965e-20,-2.587002526090282242e-20,-2.690482627133893520e-20,-2.793962728177505099e-20,-2.897442829221116978e-20,-3.000922930264728858e-20,-3.104403031308340737e-20,-3.207883132351952617e-20,-3.311363233395564496e-20,-3.414843334439176376e-20,-3.518323435482788255e-20,-3.621803536526400135e-20,-3.725283637570012014e-20,-3.828763738613623894e-20,-3.932243839657235773e-20,-4.035723940700847653e-20,-4.139204041744459532e-20,-4.242684142788071412e-20,-4.346164243831683291e-20,-4.449644344875295171e-20,-4.553124445918907050e-20,-4.656604546962518930e-20,-4.760084648006130809e-20,-4.863564749049742689e-20,-4.967044850093354568e-20,-5.070524951136966448e-20,-5.174005052180578327e-20,-5.277485153224190207e-20,-5.380965254267802086e-20,-5.484445355311413966e-20,-5.587925456355025845e-20,-5.691405557398637725e-20,-5.794885658442249604e-20,-5.898365759485861484e-20,-6.001845860529473363e-20,-6.105325961573085243e-20,-6.208806062616697123e-20,-6.312286163660309002e-20,-6.415766264703920882e-20,-6.519246365747532761e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841923900051e-09,2.091647683847800103e-09,3.137471525771700361e-09,4.183295367695601032e-09,5.229119209619501704e-09,6.274943051543402376e-09,7.320766893467303047e-09,8.366590735391203719e-09,9.412414577315104390e-09,1.045823841923900506e-08,1.150406226116290573e-08,1.254988610308680641e-08,1.359570994501070708e-08,1.464153378693460775e-08,1.568735762885850677e-08,1.673318147078240413e-08,1.777900531270630149e-08,1.882482915463019885e-08,1.987065299655409622e-08,2.091647683847799358e-08,2.196230068040189094e-08,2.300812452232578831e-08,2.405394836424968567e-08,2.509977220617358303e-08,2.614559604809748040e-08,2.719141989002137776e-08,2.823724373194527512e-08,2.928306757386917248e-08,3.032889141579306985e-08,3.137471525771696721e-08,3.242053909964086457e-08,3.346636294156476194e-08,3.451218678348865930e-08,3.555801062541255666e-08,3.660383446733645402e-08,3.764965830926035139e-08,3.869548215118424875e-08,3.974130599310814611e-08,4.078712983503204348e-08,4.183295367695594084e-08,4.287877751887983820e-08,4.392460136080373557e-08,4.497042520272763293e-08,4.601624904465153029e-08,4.706207288657542765e-08,4.810789672849932502e-08,4.915372057042322238e-08,5.019954441234711974e-08,5.124536825427101711e-08,5.229119209619491447e-08,5.333701593811881183e-08,5.438283978004270919e-08,5.542866362196660656e-08,5.647448746389050392e-08,5.752031130581440128e-08,5.856613514773829865e-08,5.961195898966220263e-08,6.065778283158609999e-08,6.170360667350999735e-08,6.274943051543389472e-08,6.379525435735779208e-08,6.484107819928168944e-08,6.588690204120558680e-08 +0.000000000000000000e+00,7.890789905452493122e-10,1.578157981090498624e-09,2.367236971635747730e-09,3.156315962180996835e-09,3.945394952726245940e-09,4.734473943271495459e-09,5.523552933816744978e-09,6.312631924361994497e-09,7.101710914907244016e-09,7.890789905452493535e-09,8.679868895997743054e-09,9.468947886542992573e-09,1.025802687708824209e-08,1.104710586763349161e-08,1.183618485817874113e-08,1.262526384872399065e-08,1.341434283926924017e-08,1.420342182981448969e-08,1.499250082035974086e-08,1.578157981090499038e-08,1.657065880145023990e-08,1.735973779199548942e-08,1.814881678254073894e-08,1.893789577308598845e-08,1.972697476363123797e-08,2.051605375417648749e-08,2.130513274472173701e-08,2.209421173526698653e-08,2.288329072581223605e-08,2.367236971635748557e-08,2.446144870690273509e-08,2.525052769744798461e-08,2.603960668799323413e-08,2.682868567853848364e-08,2.761776466908373316e-08,2.840684365962898268e-08,2.919592265017423220e-08,2.998500164071948172e-08,3.077408063126473124e-08,3.156315962180998076e-08,3.235223861235523028e-08,3.314131760290047980e-08,3.393039659344572932e-08,3.471947558399097883e-08,3.550855457453622835e-08,3.629763356508147787e-08,3.708671255562672739e-08,3.787579154617197691e-08,3.866487053671722643e-08,3.945394952726247595e-08,4.024302851780772547e-08,4.103210750835297499e-08,4.182118649889822450e-08,4.261026548944347402e-08,4.339934447998872354e-08,4.418842347053397306e-08,4.497750246107922258e-08,4.576658145162447210e-08,4.655566044216972162e-08,4.734473943271497114e-08,4.813381842326022066e-08,4.892289741380547018e-08,4.971197640435071969e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.527692412865330366e-10,9.055384825730660731e-10,1.358307723859599110e-09,1.811076965146132146e-09,2.263846206432665390e-09,2.716615447719198633e-09,3.169384689005731876e-09,3.622153930292265120e-09,4.074923171578798363e-09,4.527692412865331606e-09,4.980461654151864850e-09,5.433230895438398093e-09,5.886000136724931336e-09,6.338769378011464580e-09,6.791538619297997823e-09,7.244307860584531067e-09,7.697077101871065137e-09,8.149846343157598380e-09,8.602615584444131624e-09,9.055384825730664867e-09,9.508154067017198110e-09,9.960923308303731354e-09,1.041369254959026460e-08,1.086646179087679784e-08,1.131923103216333108e-08,1.177200027344986433e-08,1.222476951473639757e-08,1.267753875602293081e-08,1.313030799730946406e-08,1.358307723859599730e-08,1.403584647988253054e-08,1.448861572116906379e-08,1.494138496245559703e-08,1.539415420374213027e-08,1.584692344502866352e-08,1.629969268631519676e-08,1.675246192760173000e-08,1.720523116888826325e-08,1.765800041017479649e-08,1.811076965146132973e-08,1.856353889274786298e-08,1.901630813403439622e-08,1.946907737532092946e-08,1.992184661660746271e-08,2.037461585789399595e-08,2.082738509918052919e-08,2.128015434046706244e-08,2.173292358175359568e-08,2.218569282304012892e-08,2.263846206432666217e-08,2.309123130561319541e-08,2.354400054689972865e-08,2.399676978818626190e-08,2.444953902947279514e-08,2.490230827075932838e-08,2.535507751204586163e-08,2.580784675333239487e-08,2.626061599461892811e-08,2.671338523590546136e-08,2.716615447719199460e-08,2.761892371847852784e-08,2.807169295976506109e-08,2.852446220105159433e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.149477307257982306e-22,-4.298954614515964612e-22,-6.448431921773947388e-22,-8.597909229031931104e-22,-1.074738653628991482e-21,-1.289686384354789854e-21,-1.504634115080588225e-21,-1.719581845806386597e-21,-1.934529576532184781e-21,-2.149477307257982964e-21,-2.364425037983781148e-21,-2.579372768709579331e-21,-2.794320499435377515e-21,-3.009268230161175698e-21,-3.224215960886973882e-21,-3.439163691612772442e-21,-3.654111422338571001e-21,-3.869059153064369561e-21,-4.084006883790168121e-21,-4.298954614515966680e-21,-4.513902345241765240e-21,-4.728850075967563800e-21,-4.943797806693362360e-21,-5.158745537419160919e-21,-5.373693268144959479e-21,-5.588640998870758039e-21,-5.803588729596556599e-21,-6.018536460322355158e-21,-6.233484191048153718e-21,-6.448431921773952278e-21,-6.663379652499750837e-21,-6.878327383225549397e-21,-7.093275113951348709e-21,-7.308222844677148021e-21,-7.523170575402947333e-21,-7.738118306128746645e-21,-7.953066036854545957e-21,-8.168013767580345269e-21,-8.382961498306144581e-21,-8.597909229031943893e-21,-8.812856959757743205e-21,-9.027804690483542517e-21,-9.242752421209341829e-21,-9.457700151935141142e-21,-9.672647882660940454e-21,-9.887595613386739766e-21,-1.010254334411253908e-20,-1.031749107483833839e-20,-1.053243880556413770e-20,-1.074738653628993701e-20,-1.096233426701573633e-20,-1.117728199774153564e-20,-1.139222972846733495e-20,-1.160717745919313426e-20,-1.182212518991893357e-20,-1.203707292064473289e-20,-1.225202065137053220e-20,-1.246696838209633151e-20,-1.268191611282213082e-20,-1.289686384354793013e-20,-1.311181157427372945e-20,-1.332675930499952876e-20,-1.354170703572532807e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-9.026579930027293203e-10,-1.805315986005458641e-09,-2.707973979008187754e-09,-3.610631972010916867e-09,-4.513289965013645981e-09,-5.415947958016375508e-09,-6.318605951019105035e-09,-7.221263944021834562e-09,-8.123921937024564916e-09,-9.026579930027295270e-09,-9.929237923030025625e-09,-1.083189591603275598e-08,-1.173455390903548633e-08,-1.263721190203821669e-08,-1.353986989504094704e-08,-1.444252788804367740e-08,-1.534518588104640775e-08,-1.624784387404913645e-08,-1.715050186705186515e-08,-1.805315986005459385e-08,-1.895581785305732255e-08,-1.985847584606005125e-08,-2.076113383906277995e-08,-2.166379183206550865e-08,-2.256644982506823735e-08,-2.346910781807096605e-08,-2.437176581107369475e-08,-2.527442380407642345e-08,-2.617708179707915215e-08,-2.707973979008188085e-08,-2.798239778308460955e-08,-2.888505577608733825e-08,-2.978771376909006695e-08,-3.069037176209279565e-08,-3.159302975509552435e-08,-3.249568774809825305e-08,-3.339834574110098175e-08,-3.430100373410371045e-08,-3.520366172710643915e-08,-3.610631972010916785e-08,-3.700897771311189655e-08,-3.791163570611462525e-08,-3.881429369911735395e-08,-3.971695169212008265e-08,-4.061960968512281135e-08,-4.152226767812554005e-08,-4.242492567112826875e-08,-4.332758366413099745e-08,-4.423024165713372615e-08,-4.513289965013645485e-08,-4.603555764313918355e-08,-4.693821563614191225e-08,-4.784087362914464095e-08,-4.874353162214736965e-08,-4.964618961515009834e-08,-5.054884760815282704e-08,-5.145150560115555574e-08,-5.235416359415828444e-08,-5.325682158716101314e-08,-5.415947958016374184e-08,-5.506213757316647054e-08,-5.596479556616919924e-08,-5.686745355917192794e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.527692412886208921e-10,-9.055384825772417843e-10,-1.358307723865862728e-09,-1.811076965154483775e-09,-2.263846206443104823e-09,-2.716615447731725870e-09,-3.169384689020346917e-09,-3.622153930308967964e-09,-4.074923171597589425e-09,-4.527692412886210472e-09,-4.980461654174831519e-09,-5.433230895463452567e-09,-5.886000136752073614e-09,-6.338769378040694661e-09,-6.791538619329315708e-09,-7.244307860617936756e-09,-7.697077101906557803e-09,-8.149846343195178850e-09,-8.602615584483799897e-09,-9.055384825772420944e-09,-9.508154067061041992e-09,-9.960923308349663039e-09,-1.041369254963828409e-08,-1.086646179092690513e-08,-1.131923103221552618e-08,-1.177200027350414723e-08,-1.222476951479276828e-08,-1.267753875608138932e-08,-1.313030799737001037e-08,-1.358307723865863142e-08,-1.403584647994725246e-08,-1.448861572123587351e-08,-1.494138496252449456e-08,-1.539415420381311561e-08,-1.584692344510173665e-08,-1.629969268639035770e-08,-1.675246192767897875e-08,-1.720523116896759979e-08,-1.765800041025622084e-08,-1.811076965154484189e-08,-1.856353889283346294e-08,-1.901630813412208398e-08,-1.946907737541070503e-08,-1.992184661669932608e-08,-2.037461585798794713e-08,-2.082738509927656817e-08,-2.128015434056518922e-08,-2.173292358185381027e-08,-2.218569282314243131e-08,-2.263846206443105236e-08,-2.309123130571967341e-08,-2.354400054700829446e-08,-2.399676978829691550e-08,-2.444953902958553655e-08,-2.490230827087415760e-08,-2.535507751216277864e-08,-2.580784675345139969e-08,-2.626061599474002074e-08,-2.671338523602864179e-08,-2.716615447731726283e-08,-2.761892371860588388e-08,-2.807169295989450493e-08,-2.852446220118312598e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841924554558e-09,-2.091647683849109116e-09,-3.137471525773663674e-09,-4.183295367698218232e-09,-5.229119209622772376e-09,-6.274943051547326520e-09,-7.320766893471880665e-09,-8.366590735396434809e-09,-9.412414577320988953e-09,-1.045823841924554310e-08,-1.150406226117009724e-08,-1.254988610309465139e-08,-1.359570994501920553e-08,-1.464153378694375968e-08,-1.568735762886831382e-08,-1.673318147079286631e-08,-1.777900531271741880e-08,-1.882482915464197129e-08,-1.987065299656652378e-08,-2.091647683849107627e-08,-2.196230068041562876e-08,-2.300812452234018125e-08,-2.405394836426473374e-08,-2.509977220618928623e-08,-2.614559604811383872e-08,-2.719141989003839121e-08,-2.823724373196294370e-08,-2.928306757388749619e-08,-3.032889141581204868e-08,-3.137471525773660117e-08,-3.242053909966115366e-08,-3.346636294158570615e-08,-3.451218678351025864e-08,-3.555801062543481113e-08,-3.660383446735936362e-08,-3.764965830928391611e-08,-3.869548215120846860e-08,-3.974130599313302109e-08,-4.078712983505757358e-08,-4.183295367698212607e-08,-4.287877751890667856e-08,-4.392460136083123105e-08,-4.497042520275578354e-08,-4.601624904468033603e-08,-4.706207288660488852e-08,-4.810789672852944101e-08,-4.915372057045399350e-08,-5.019954441237854599e-08,-5.124536825430309848e-08,-5.229119209622765097e-08,-5.333701593815220346e-08,-5.438283978007675595e-08,-5.542866362200130844e-08,-5.647448746392586093e-08,-5.752031130585041342e-08,-5.856613514777496591e-08,-5.961195898969952502e-08,-6.065778283162408412e-08,-6.170360667354864323e-08,-6.274943051547320234e-08,-6.379525435739776145e-08,-6.484107819932232055e-08,-6.588690204124687966e-08 +0.000000000000000000e+00,-7.890789905475532170e-10,-1.578157981095106434e-09,-2.367236971642659651e-09,-3.156315962190212868e-09,-3.945394952737766085e-09,-4.734473943285319302e-09,-5.523552933832872519e-09,-6.312631924380425736e-09,-7.101710914927978953e-09,-7.890789905475532170e-09,-8.679868896023086214e-09,-9.468947886570640258e-09,-1.025802687711819430e-08,-1.104710586766574835e-08,-1.183618485821330239e-08,-1.262526384876085643e-08,-1.341434283930841048e-08,-1.420342182985596452e-08,-1.499250082040351857e-08,-1.578157981095107427e-08,-1.657065880149862996e-08,-1.735973779204618566e-08,-1.814881678259374136e-08,-1.893789577314129706e-08,-1.972697476368885276e-08,-2.051605375423640846e-08,-2.130513274478396415e-08,-2.209421173533151985e-08,-2.288329072587907555e-08,-2.367236971642663125e-08,-2.446144870697418695e-08,-2.525052769752174265e-08,-2.603960668806929835e-08,-2.682868567861685404e-08,-2.761776466916440974e-08,-2.840684365971196544e-08,-2.919592265025952114e-08,-2.998500164080707684e-08,-3.077408063135463585e-08,-3.156315962190219485e-08,-3.235223861244975386e-08,-3.314131760299731287e-08,-3.393039659354487187e-08,-3.471947558409243088e-08,-3.550855457463998989e-08,-3.629763356518754890e-08,-3.708671255573510790e-08,-3.787579154628266691e-08,-3.866487053683022592e-08,-3.945394952737778493e-08,-4.024302851792534393e-08,-4.103210750847290294e-08,-4.182118649902046195e-08,-4.261026548956802095e-08,-4.339934448011557996e-08,-4.418842347066313897e-08,-4.497750246121069798e-08,-4.576658145175825698e-08,-4.655566044230581599e-08,-4.734473943285337500e-08,-4.813381842340093400e-08,-4.892289741394849301e-08,-4.971197640449605202e-08 +0.000000000000000000e+00,7.104953638176843925e-10,1.420990727635368785e-09,2.131486091453053384e-09,2.841981455270737984e-09,3.552476819088422583e-09,4.262972182906106769e-09,4.973467546723790954e-09,5.683962910541475140e-09,6.394458274359159326e-09,7.104953638176843512e-09,7.815449001994527697e-09,8.525944365812211883e-09,9.236439729629896069e-09,9.946935093447580254e-09,1.065743045726526444e-08,1.136792582108294863e-08,1.207842118490063281e-08,1.278891654871831700e-08,1.349941191253600118e-08,1.420990727635368537e-08,1.492040264017136790e-08,1.563089800398905209e-08,1.634139336780673627e-08,1.705188873162442046e-08,1.776238409544210464e-08,1.847287945925978883e-08,1.918337482307747301e-08,1.989387018689515720e-08,2.060436555071284139e-08,2.131486091453052557e-08,2.202535627834820976e-08,2.273585164216589394e-08,2.344634700598357813e-08,2.415684236980126231e-08,2.486733773361894650e-08,2.557783309743663069e-08,2.628832846125431487e-08,2.699882382507199906e-08,2.770931918888968324e-08,2.841981455270736743e-08,2.913030991652505161e-08,2.984080528034273580e-08,3.055130064416041999e-08,3.126179600797810417e-08,3.197229137179578836e-08,3.268278673561347254e-08,3.339328209943115673e-08,3.410377746324884091e-08,3.481427282706652510e-08,3.552476819088420929e-08,3.623526355470189347e-08,3.694575891851957766e-08,3.765625428233726184e-08,3.836674964615494603e-08,3.907724500997263021e-08,3.978774037379031440e-08,4.049823573760799859e-08,4.120873110142568277e-08,4.191922646524336696e-08,4.262972182906105114e-08,4.334021719287873533e-08,4.405071255669641951e-08,4.476120792051410370e-08 +0.000000000000000000e+00,-4.213019752325545117e-21,-8.426039504651090235e-21,-1.263905925697663460e-20,-1.685207900930217746e-20,-2.106509876162772032e-20,-2.527811851395326318e-20,-2.949113826627880604e-20,-3.370415801860434890e-20,-3.791717777092989176e-20,-4.213019752325543462e-20,-4.634321727558097748e-20,-5.055623702790652034e-20,-5.476925678023206320e-20,-5.898227653255761208e-20,-6.319529628488316096e-20,-6.740831603720870984e-20,-7.162133578953425872e-20,-7.583435554185980760e-20,-8.004737529418535648e-20,-8.426039504651090536e-20,-8.847341479883645423e-20,-9.268643455116200311e-20,-9.689945430348755199e-20,-1.011124740558131009e-19,-1.053254938081386497e-19,-1.095385135604641986e-19,-1.137515333127897475e-19,-1.179645530651152964e-19,-1.221775728174408453e-19,-1.263905925697663941e-19,-1.306036123220919430e-19,-1.348166320744174919e-19,-1.390296518267430408e-19,-1.432426715790685897e-19,-1.474556913313941385e-19,-1.516687110837196874e-19,-1.558817308360452363e-19,-1.600947505883707852e-19,-1.643077703406963341e-19,-1.685207900930218829e-19,-1.727338098453474318e-19,-1.769468295976729807e-19,-1.811598493499985296e-19,-1.853728691023240784e-19,-1.895858888546496273e-19,-1.937989086069751762e-19,-1.980119283593007251e-19,-2.022249481116262740e-19,-2.064379678639518228e-19,-2.106509876162773717e-19,-2.148640073686029206e-19,-2.190770271209284454e-19,-2.232900468732539702e-19,-2.275030666255794950e-19,-2.317160863779050198e-19,-2.359291061302305446e-19,-2.401421258825560694e-19,-2.443551456348815942e-19,-2.485681653872071190e-19,-2.527811851395326438e-19,-2.569942048918581686e-19,-2.612072246441836935e-19,-2.654202443965092183e-19 +0.000000000000000000e+00,8.028596926295554903e-10,1.605719385259110981e-09,2.408579077888666574e-09,3.211438770518222375e-09,4.014298463147778175e-09,4.817158155777333976e-09,5.620017848406889776e-09,6.422877541036445577e-09,7.225737233666001377e-09,8.028596926295556351e-09,8.831456618925111324e-09,9.634316311554666297e-09,1.043717600418422127e-08,1.124003569681377624e-08,1.204289538944333122e-08,1.284575508207288619e-08,1.364861477470244116e-08,1.445147446733199614e-08,1.525433415996154946e-08,1.605719385259110277e-08,1.686005354522065609e-08,1.766291323785020941e-08,1.846577293047976273e-08,1.926863262310931605e-08,2.007149231573886937e-08,2.087435200836842269e-08,2.167721170099797601e-08,2.248007139362752933e-08,2.328293108625708265e-08,2.408579077888663596e-08,2.488865047151618928e-08,2.569151016414574260e-08,2.649436985677529592e-08,2.729722954940484924e-08,2.810008924203440256e-08,2.890294893466395588e-08,2.970580862729350920e-08,3.050866831992305921e-08,3.131152801255260922e-08,3.211438770518215923e-08,3.291724739781170924e-08,3.372010709044125925e-08,3.452296678307080926e-08,3.532582647570035927e-08,3.612868616832990928e-08,3.693154586095945929e-08,3.773440555358900930e-08,3.853726524621855931e-08,3.934012493884810932e-08,4.014298463147765933e-08,4.094584432410720934e-08,4.174870401673675935e-08,4.255156370936630936e-08,4.335442340199585937e-08,4.415728309462540938e-08,4.496014278725495939e-08,4.576300247988450940e-08,4.656586217251405941e-08,4.736872186514360942e-08,4.817158155777315943e-08,4.897444125040270944e-08,4.977730094303225945e-08,5.058016063566180946e-08 +0.000000000000000000e+00,7.967977014359363983e-10,1.593595402871872797e-09,2.390393104307809195e-09,3.187190805743745593e-09,3.983988507179681992e-09,4.780786208615618390e-09,5.577583910051554788e-09,6.374381611487491186e-09,7.171179312923427585e-09,7.967977014359363983e-09,8.764774715795300381e-09,9.561572417231236780e-09,1.035837011866717318e-08,1.115516782010310958e-08,1.195196552153904597e-08,1.274876322297498237e-08,1.354556092441091877e-08,1.434235862584685517e-08,1.513915632728279157e-08,1.593595402871872797e-08,1.673275173015466436e-08,1.752954943159060076e-08,1.832634713302653716e-08,1.912314483446247356e-08,1.991994253589840996e-08,2.071674023733434636e-08,2.151353793877028275e-08,2.231033564020621915e-08,2.310713334164215555e-08,2.390393104307809195e-08,2.470072874451402835e-08,2.549752644594996475e-08,2.629432414738590114e-08,2.709112184882183754e-08,2.788791955025777394e-08,2.868471725169371034e-08,2.948151495312964674e-08,3.027831265456558314e-08,3.107511035600152284e-08,3.187190805743746255e-08,3.266870575887340226e-08,3.346550346030934196e-08,3.426230116174528167e-08,3.505909886318122138e-08,3.585589656461716109e-08,3.665269426605310079e-08,3.744949196748904050e-08,3.824628966892498021e-08,3.904308737036091991e-08,3.983988507179685962e-08,4.063668277323279933e-08,4.143348047466873903e-08,4.223027817610467874e-08,4.302707587754061845e-08,4.382387357897655816e-08,4.462067128041249786e-08,4.541746898184843757e-08,4.621426668328437728e-08,4.701106438472031698e-08,4.780786208615625669e-08,4.860465978759219640e-08,4.940145748902813610e-08,5.019825519046407581e-08 +0.000000000000000000e+00,3.534372529514099702e-10,7.068745059028199404e-10,1.060311758854229962e-09,1.413749011805640088e-09,1.767186264757050213e-09,2.120623517708460338e-09,2.474060770659870463e-09,2.827498023611280589e-09,3.180935276562690714e-09,3.534372529514100839e-09,3.887809782465510964e-09,4.241247035416921503e-09,4.594684288368332042e-09,4.948121541319742581e-09,5.301558794271153120e-09,5.654996047222563659e-09,6.008433300173974198e-09,6.361870553125384737e-09,6.715307806076795275e-09,7.068745059028205814e-09,7.422182311979616353e-09,7.775619564931026892e-09,8.129056817882438258e-09,8.482494070833849624e-09,8.835931323785260990e-09,9.189368576736672356e-09,9.542805829688083722e-09,9.896243082639495088e-09,1.024968033559090645e-08,1.060311758854231782e-08,1.095655484149372919e-08,1.130999209444514055e-08,1.166342934739655192e-08,1.201686660034796328e-08,1.237030385329937465e-08,1.272374110625078602e-08,1.307717835920219738e-08,1.343061561215360875e-08,1.378405286510502011e-08,1.413749011805643148e-08,1.449092737100784285e-08,1.484436462395925421e-08,1.519780187691066558e-08,1.555123912986207695e-08,1.590467638281348831e-08,1.625811363576489968e-08,1.661155088871631104e-08,1.696498814166772241e-08,1.731842539461913378e-08,1.767186264757054514e-08,1.802529990052195651e-08,1.837873715347336787e-08,1.873217440642477924e-08,1.908561165937619061e-08,1.943904891232760197e-08,1.979248616527901334e-08,2.014592341823042470e-08,2.049936067118183607e-08,2.085279792413324744e-08,2.120623517708465880e-08,2.155967243003607017e-08,2.191310968298748153e-08,2.226654693593889290e-08 +0.000000000000000000e+00,-2.393493325142002894e-21,-4.786986650284005788e-21,-7.180479975426009059e-21,-9.573973300568013082e-21,-1.196746662571001710e-20,-1.436095995085202113e-20,-1.675445327599402515e-20,-1.914794660113602917e-20,-2.154143992627803320e-20,-2.393493325142003722e-20,-2.632842657656204124e-20,-2.872191990170404827e-20,-3.111541322684605831e-20,-3.350890655198806836e-20,-3.590239987713007840e-20,-3.829589320227208844e-20,-4.068938652741409848e-20,-4.308287985255610852e-20,-4.547637317769811856e-20,-4.786986650284012860e-20,-5.026335982798213864e-20,-5.265685315312414869e-20,-5.505034647826615873e-20,-5.744383980340816877e-20,-5.983733312855017881e-20,-6.223082645369218885e-20,-6.462431977883419889e-20,-6.701781310397620893e-20,-6.941130642911821897e-20,-7.180479975426022902e-20,-7.419829307940223906e-20,-7.659178640454424910e-20,-7.898527972968625914e-20,-8.137877305482826918e-20,-8.377226637997027922e-20,-8.616575970511228926e-20,-8.855925303025429930e-20,-9.095274635539630935e-20,-9.334623968053831939e-20,-9.573973300568032943e-20,-9.813322633082233947e-20,-1.005267196559643495e-19,-1.029202129811063596e-19,-1.053137063062483696e-19,-1.077071996313903796e-19,-1.101006929565323897e-19,-1.124941862816744118e-19,-1.148876796068164338e-19,-1.172811729319584559e-19,-1.196746662571004780e-19,-1.220681595822425001e-19,-1.244616529073845221e-19,-1.268551462325265442e-19,-1.292486395576685663e-19,-1.316421328828105884e-19,-1.340356262079526105e-19,-1.364291195330946325e-19,-1.388226128582366546e-19,-1.412161061833786767e-19,-1.436095995085206988e-19,-1.460030928336627209e-19,-1.483965861588047429e-19,-1.507900794839467650e-19 +0.000000000000000000e+00,-7.104953638262319600e-10,-1.420990727652463920e-09,-2.131486091478695983e-09,-2.841981455304928253e-09,-3.552476819131160524e-09,-4.262972182957392794e-09,-4.973467546783625064e-09,-5.683962910609857334e-09,-6.394458274436089604e-09,-7.104953638262321875e-09,-7.815449002088553318e-09,-8.525944365914783933e-09,-9.236439729741014549e-09,-9.946935093567245165e-09,-1.065743045739347578e-08,-1.136792582121970640e-08,-1.207842118504593701e-08,-1.278891654887216763e-08,-1.349941191269839824e-08,-1.420990727652462886e-08,-1.492040264035085948e-08,-1.563089800417709009e-08,-1.634139336800332071e-08,-1.705188873182955132e-08,-1.776238409565578194e-08,-1.847287945948201255e-08,-1.918337482330824317e-08,-1.989387018713447379e-08,-2.060436555096070440e-08,-2.131486091478693502e-08,-2.202535627861316563e-08,-2.273585164243939625e-08,-2.344634700626562687e-08,-2.415684237009185748e-08,-2.486733773391808810e-08,-2.557783309774431871e-08,-2.628832846157054933e-08,-2.699882382539677994e-08,-2.770931918922301056e-08,-2.841981455304924118e-08,-2.913030991687547179e-08,-2.984080528070170572e-08,-3.055130064452793964e-08,-3.126179600835417357e-08,-3.197229137218040749e-08,-3.268278673600664141e-08,-3.339328209983287534e-08,-3.410377746365910926e-08,-3.481427282748534319e-08,-3.552476819131157711e-08,-3.623526355513781104e-08,-3.694575891896404496e-08,-3.765625428279027889e-08,-3.836674964661651281e-08,-3.907724501044274674e-08,-3.978774037426898066e-08,-4.049823573809521458e-08,-4.120873110192144851e-08,-4.191922646574768243e-08,-4.262972182957391636e-08,-4.334021719340015028e-08,-4.405071255722638421e-08,-4.476120792105261813e-08 +0.000000000000000000e+00,-3.534372529598717694e-10,-7.068745059197435387e-10,-1.060311758879615308e-09,-1.413749011839487077e-09,-1.767186264799358847e-09,-2.120623517759230616e-09,-2.474060770719102385e-09,-2.827498023678974155e-09,-3.180935276638845924e-09,-3.534372529598717694e-09,-3.887809782558589463e-09,-4.241247035518461232e-09,-4.594684288478333002e-09,-4.948121541438204771e-09,-5.301558794398076540e-09,-5.654996047357948310e-09,-6.008433300317820079e-09,-6.361870553277691848e-09,-6.715307806237563618e-09,-7.068745059197435387e-09,-7.422182312157307156e-09,-7.775619565117178926e-09,-8.129056818077050695e-09,-8.482494071036922465e-09,-8.835931323996794234e-09,-9.189368576956666003e-09,-9.542805829916537773e-09,-9.896243082876409542e-09,-1.024968033583628131e-08,-1.060311758879615308e-08,-1.095655484175602485e-08,-1.130999209471589662e-08,-1.166342934767576839e-08,-1.201686660063564016e-08,-1.237030385359551193e-08,-1.272374110655538370e-08,-1.307717835951525547e-08,-1.343061561247512724e-08,-1.378405286543499900e-08,-1.413749011839487077e-08,-1.449092737135474254e-08,-1.484436462431461431e-08,-1.519780187727448608e-08,-1.555123913023435785e-08,-1.590467638319422962e-08,-1.625811363615410139e-08,-1.661155088911397316e-08,-1.696498814207384493e-08,-1.731842539503371670e-08,-1.767186264799358847e-08,-1.802529990095346024e-08,-1.837873715391333201e-08,-1.873217440687320378e-08,-1.908561165983307555e-08,-1.943904891279294731e-08,-1.979248616575281908e-08,-2.014592341871269085e-08,-2.049936067167256262e-08,-2.085279792463243439e-08,-2.120623517759230616e-08,-2.155967243055217793e-08,-2.191310968351204970e-08,-2.226654693647192147e-08 +0.000000000000000000e+00,-8.028596926344997556e-10,-1.605719385268999511e-09,-2.408579077903499163e-09,-3.211438770537998609e-09,-4.014298463172497641e-09,-4.817158155806996673e-09,-5.620017848441495704e-09,-6.422877541075994736e-09,-7.225737233710493768e-09,-8.028596926344991973e-09,-8.831456618979490177e-09,-9.634316311613988382e-09,-1.043717600424848659e-08,-1.124003569688298479e-08,-1.204289538951748300e-08,-1.284575508215198120e-08,-1.364861477478647941e-08,-1.445147446742097761e-08,-1.525433416005547747e-08,-1.605719385268997733e-08,-1.686005354532447719e-08,-1.766291323795897705e-08,-1.846577293059347690e-08,-1.926863262322797676e-08,-2.007149231586247662e-08,-2.087435200849697648e-08,-2.167721170113147634e-08,-2.248007139376597620e-08,-2.328293108640047606e-08,-2.408579077903497592e-08,-2.488865047166947578e-08,-2.569151016430397564e-08,-2.649436985693847550e-08,-2.729722954957297535e-08,-2.810008924220747521e-08,-2.890294893484197507e-08,-2.970580862747647493e-08,-3.050866832011097479e-08,-3.131152801274547465e-08,-3.211438770537997451e-08,-3.291724739801447437e-08,-3.372010709064897423e-08,-3.452296678328347409e-08,-3.532582647591797394e-08,-3.612868616855247380e-08,-3.693154586118697366e-08,-3.773440555382147352e-08,-3.853726524645597338e-08,-3.934012493909047324e-08,-4.014298463172497310e-08,-4.094584432435947296e-08,-4.174870401699397282e-08,-4.255156370962847268e-08,-4.335442340226297253e-08,-4.415728309489747239e-08,-4.496014278753197225e-08,-4.576300248016647211e-08,-4.656586217280097197e-08,-4.736872186543547183e-08,-4.817158155806997169e-08,-4.897444125070447155e-08,-4.977730094333897141e-08,-5.058016063597347127e-08 +0.000000000000000000e+00,-7.967977014437982330e-10,-1.593595402887596466e-09,-2.390393104331394596e-09,-3.187190805775192519e-09,-3.983988507218990441e-09,-4.780786208662788364e-09,-5.577583910106586287e-09,-6.374381611550384210e-09,-7.171179312994182133e-09,-7.967977014437979229e-09,-8.764774715881777151e-09,-9.561572417325575074e-09,-1.035837011876937300e-08,-1.115516782021317092e-08,-1.195196552165696884e-08,-1.274876322310076677e-08,-1.354556092454456469e-08,-1.434235862598836261e-08,-1.513915632743216053e-08,-1.593595402887595846e-08,-1.673275173031975638e-08,-1.752954943176355430e-08,-1.832634713320735223e-08,-1.912314483465115015e-08,-1.991994253609494807e-08,-2.071674023753874599e-08,-2.151353793898254392e-08,-2.231033564042634184e-08,-2.310713334187013976e-08,-2.390393104331393769e-08,-2.470072874475773561e-08,-2.549752644620153353e-08,-2.629432414764533145e-08,-2.709112184908912938e-08,-2.788791955053292730e-08,-2.868471725197672522e-08,-2.948151495342052315e-08,-3.027831265486432107e-08,-3.107511035630812230e-08,-3.187190805775192353e-08,-3.266870575919572476e-08,-3.346550346063952599e-08,-3.426230116208332723e-08,-3.505909886352712846e-08,-3.585589656497092969e-08,-3.665269426641473092e-08,-3.744949196785853215e-08,-3.824628966930233338e-08,-3.904308737074613462e-08,-3.983988507218993585e-08,-4.063668277363373708e-08,-4.143348047507753831e-08,-4.223027817652133954e-08,-4.302707587796514077e-08,-4.382387357940894201e-08,-4.462067128085274324e-08,-4.541746898229654447e-08,-4.621426668374034570e-08,-4.701106438518414693e-08,-4.780786208662794816e-08,-4.860465978807174939e-08,-4.940145748951555063e-08,-5.019825519095935186e-08 +0.000000000000000000e+00,6.810435357055289045e-10,1.362087071411057809e-09,2.043130607116586714e-09,2.724174142822115618e-09,3.405217678527644523e-09,4.086261214233173427e-09,4.767304749938701918e-09,5.448348285644230409e-09,6.129391821349758900e-09,6.810435357055287391e-09,7.491478892760815882e-09,8.172522428466345200e-09,8.853565964171874518e-09,9.534609499877403836e-09,1.021565303558293315e-08,1.089669657128846247e-08,1.157774010699399179e-08,1.225878364269952111e-08,1.293982717840505043e-08,1.362087071411057974e-08,1.430191424981610906e-08,1.498295778552163838e-08,1.566400132122716770e-08,1.634504485693269702e-08,1.702608839263822634e-08,1.770713192834375565e-08,1.838817546404928497e-08,1.906921899975481429e-08,1.975026253546034361e-08,2.043130607116587293e-08,2.111234960687140224e-08,2.179339314257693156e-08,2.247443667828246088e-08,2.315548021398799020e-08,2.383652374969351952e-08,2.451756728539904883e-08,2.519861082110457815e-08,2.587965435681010747e-08,2.656069789251563679e-08,2.724174142822116611e-08,2.792278496392669542e-08,2.860382849963222474e-08,2.928487203533775406e-08,2.996591557104328338e-08,3.064695910674881601e-08,3.132800264245434863e-08,3.200904617815988126e-08,3.269008971386541389e-08,3.337113324957094651e-08,3.405217678527647914e-08,3.473322032098201177e-08,3.541426385668754439e-08,3.609530739239307702e-08,3.677635092809860965e-08,3.745739446380414227e-08,3.813843799950967490e-08,3.881948153521520753e-08,3.950052507092074015e-08,4.018156860662627278e-08,4.086261214233180541e-08,4.154365567803733803e-08,4.222469921374287066e-08,4.290574274944840329e-08 +0.000000000000000000e+00,-8.886105678674000997e-21,-1.777221135734800199e-20,-2.665831703602200450e-20,-3.554442271469601001e-20,-4.443052839337001552e-20,-5.331663407204402103e-20,-6.220273975071802052e-20,-7.108884542939202002e-20,-7.997495110806601951e-20,-8.886105678674001900e-20,-9.774716246541401850e-20,-1.066332681440880180e-19,-1.155193738227620175e-19,-1.244054795014360170e-19,-1.332915851801100165e-19,-1.421776908587840160e-19,-1.510637965374580155e-19,-1.599499022161320149e-19,-1.688360078948060144e-19,-1.777221135734800139e-19,-1.866082192521540134e-19,-1.954943249308280129e-19,-2.043804306095020124e-19,-2.132665362881760119e-19,-2.221526419668499873e-19,-2.310387476455239868e-19,-2.399248533241979863e-19,-2.488109590028719858e-19,-2.576970646815459853e-19,-2.665831703602199848e-19,-2.754692760388939843e-19,-2.843553817175679838e-19,-2.932414873962419833e-19,-3.021275930749159828e-19,-3.110136987535899822e-19,-3.198998044322639817e-19,-3.287859101109379812e-19,-3.376720157896119807e-19,-3.465581214682859802e-19,-3.554442271469599797e-19,-3.643303328256339792e-19,-3.732164385043079787e-19,-3.821025441829819782e-19,-3.909886498616559777e-19,-3.998747555403299772e-19,-4.087608612190039767e-19,-4.176469668976779762e-19,-4.265330725763519757e-19,-4.354191782550259751e-19,-4.443052839336999746e-19,-4.531913896123739741e-19,-4.620774952910479736e-19,-4.709636009697219731e-19,-4.798497066483959726e-19,-4.887358123270699721e-19,-4.976219180057439716e-19,-5.065080236844179711e-19,-5.153941293630919706e-19,-5.242802350417659701e-19,-5.331663407204399696e-19,-5.420524463991139691e-19,-5.509385520777879686e-19,-5.598246577564619680e-19 +0.000000000000000000e+00,6.904856180978815247e-10,1.380971236195763049e-09,2.071456854293644781e-09,2.761942472391526512e-09,3.452428090489408244e-09,4.142913708587289562e-09,4.833399326685170880e-09,5.523884944783052198e-09,6.214370562880933515e-09,6.904856180978814833e-09,7.595341799076696978e-09,8.285827417174579123e-09,8.976313035272461269e-09,9.666798653370343414e-09,1.035728427146822556e-08,1.104776988956610770e-08,1.173825550766398985e-08,1.242874112576187199e-08,1.311922674385975414e-08,1.380971236195763628e-08,1.450019798005551843e-08,1.519068359815340057e-08,1.588116921625128272e-08,1.657165483434916486e-08,1.726214045244704701e-08,1.795262607054492915e-08,1.864311168864281130e-08,1.933359730674069344e-08,2.002408292483857559e-08,2.071456854293645773e-08,2.140505416103433988e-08,2.209553977913222203e-08,2.278602539723010417e-08,2.347651101532798632e-08,2.416699663342586846e-08,2.485748225152375061e-08,2.554796786962163275e-08,2.623845348771951490e-08,2.692893910581739704e-08,2.761942472391527919e-08,2.830991034201316133e-08,2.900039596011104348e-08,2.969088157820892562e-08,3.038136719630680777e-08,3.107185281440468991e-08,3.176233843250257206e-08,3.245282405060045420e-08,3.314330966869833635e-08,3.383379528679621849e-08,3.452428090489410064e-08,3.521476652299198278e-08,3.590525214108986493e-08,3.659573775918774707e-08,3.728622337728562922e-08,3.797670899538351136e-08,3.866719461348139351e-08,3.935768023157927565e-08,4.004816584967715780e-08,4.073865146777503994e-08,4.142913708587292209e-08,4.211962270397080423e-08,4.281010832206868638e-08,4.350059394016656852e-08 +0.000000000000000000e+00,7.479722627495160854e-10,1.495944525499032171e-09,2.243916788248548256e-09,2.991889050998064342e-09,3.739861313747580841e-09,4.487833576497097340e-09,5.235805839246613839e-09,5.983778101996130338e-09,6.731750364745646837e-09,7.479722627495163336e-09,8.227694890244679835e-09,8.975667152994196334e-09,9.723639415743712833e-09,1.047161167849322933e-08,1.121958394124274583e-08,1.196755620399226233e-08,1.271552846674177883e-08,1.346350072949129533e-08,1.421147299224081183e-08,1.495944525499032998e-08,1.570741751773984979e-08,1.645538978048936960e-08,1.720336204323888940e-08,1.795133430598840921e-08,1.869930656873792902e-08,1.944727883148744883e-08,2.019525109423696863e-08,2.094322335698648844e-08,2.169119561973600825e-08,2.243916788248552806e-08,2.318714014523504787e-08,2.393511240798456767e-08,2.468308467073408748e-08,2.543105693348360729e-08,2.617902919623312710e-08,2.692700145898264690e-08,2.767497372173216671e-08,2.842294598448168652e-08,2.917091824723120633e-08,2.991889050998072614e-08,3.066686277273024594e-08,3.141483503547976575e-08,3.216280729822928556e-08,3.291077956097880537e-08,3.365875182372832517e-08,3.440672408647784498e-08,3.515469634922736479e-08,3.590266861197688460e-08,3.665064087472640441e-08,3.739861313747592421e-08,3.814658540022544402e-08,3.889455766297496383e-08,3.964252992572448364e-08,4.039050218847400344e-08,4.113847445122352325e-08,4.188644671397304306e-08,4.263441897672256287e-08,4.338239123947208268e-08,4.413036350222160248e-08,4.487833576497112229e-08,4.562630802772064210e-08,4.637428029047016191e-08,4.712225255321968171e-08 +0.000000000000000000e+00,3.410942107051794811e-10,6.821884214103589623e-10,1.023282632115538547e-09,1.364376842820718131e-09,1.705471053525897716e-09,2.046565264231077094e-09,2.387659474936256471e-09,2.728753685641435849e-09,3.069847896346615227e-09,3.410942107051794605e-09,3.752036317756973982e-09,4.093130528462153360e-09,4.434224739167332738e-09,4.775318949872512116e-09,5.116413160577691493e-09,5.457507371282870871e-09,5.798601581988050249e-09,6.139695792693229627e-09,6.480790003398409004e-09,6.821884214103588382e-09,7.162978424808767760e-09,7.504072635513946310e-09,7.845166846219125688e-09,8.186261056924305066e-09,8.527355267629484444e-09,8.868449478334663821e-09,9.209543689039843199e-09,9.550637899745022577e-09,9.891732110450201954e-09,1.023282632115538133e-08,1.057392053186056071e-08,1.091501474256574009e-08,1.125610895327091947e-08,1.159720316397609884e-08,1.193829737468127822e-08,1.227939158538645760e-08,1.262048579609163698e-08,1.296158000679681635e-08,1.330267421750199573e-08,1.364376842820717511e-08,1.398486263891235449e-08,1.432595684961753387e-08,1.466705106032271324e-08,1.500814527102789262e-08,1.534923948173307200e-08,1.569033369243825138e-08,1.603142790314343075e-08,1.637252211384861013e-08,1.671361632455378951e-08,1.705471053525896889e-08,1.739580474596414826e-08,1.773689895666932764e-08,1.807799316737450702e-08,1.841908737807968640e-08,1.876018158878486578e-08,1.910127579949004515e-08,1.944237001019522453e-08,1.978346422090040391e-08,2.012455843160558329e-08,2.046565264231076266e-08,2.080674685301594204e-08,2.114784106372112142e-08,2.148893527442630080e-08 +0.000000000000000000e+00,-6.390922060554605481e-21,-1.278184412110921096e-20,-1.917276618166381569e-20,-2.556368824221841892e-20,-3.195461030277302214e-20,-3.834553236332762537e-20,-4.473645442388222859e-20,-5.112737648443683181e-20,-5.751829854499143504e-20,-6.390922060554604428e-20,-7.030014266610065353e-20,-7.669106472665526277e-20,-8.308198678720987201e-20,-8.947290884776448125e-20,-9.586383090831909050e-20,-1.022547529688736997e-19,-1.086456750294283090e-19,-1.150365970899829182e-19,-1.214275191505375275e-19,-1.278184412110921367e-19,-1.342093632716467460e-19,-1.406002853322013552e-19,-1.469912073927559644e-19,-1.533821294533105737e-19,-1.597730515138651829e-19,-1.661639735744197922e-19,-1.725548956349744014e-19,-1.789458176955290107e-19,-1.853367397560836199e-19,-1.917276618166382291e-19,-1.981185838771928384e-19,-2.045095059377474476e-19,-2.109004279983020569e-19,-2.172913500588566661e-19,-2.236822721194112513e-19,-2.300731941799658365e-19,-2.364641162405204216e-19,-2.428550383010750068e-19,-2.492459603616295920e-19,-2.556368824221841771e-19,-2.620278044827387623e-19,-2.684187265432933475e-19,-2.748096486038479326e-19,-2.812005706644025178e-19,-2.875914927249571030e-19,-2.939824147855116881e-19,-3.003733368460662733e-19,-3.067642589066208585e-19,-3.131551809671754437e-19,-3.195461030277300288e-19,-3.259370250882846140e-19,-3.323279471488391992e-19,-3.387188692093937843e-19,-3.451097912699483695e-19,-3.515007133305029547e-19,-3.578916353910575398e-19,-3.642825574516121250e-19,-3.706734795121667102e-19,-3.770644015727212953e-19,-3.834553236332758805e-19,-3.898462456938304657e-19,-3.962371677543850508e-19,-4.026280898149396360e-19 +0.000000000000000000e+00,-6.810435357234036572e-10,-1.362087071446807314e-09,-2.043130607170210765e-09,-2.724174142893614215e-09,-3.405217678617017665e-09,-4.086261214340421529e-09,-4.767304750063825393e-09,-5.448348285787229257e-09,-6.129391821510633121e-09,-6.810435357234036985e-09,-7.491478892957440022e-09,-8.172522428680843059e-09,-8.853565964404246096e-09,-9.534609500127649132e-09,-1.021565303585105217e-08,-1.089669657157445521e-08,-1.157774010729785824e-08,-1.225878364302126128e-08,-1.293982717874466432e-08,-1.362087071446806735e-08,-1.430191425019147039e-08,-1.498295778591487343e-08,-1.566400132163827646e-08,-1.634504485736167950e-08,-1.702608839308508254e-08,-1.770713192880848557e-08,-1.838817546453188861e-08,-1.906921900025529165e-08,-1.975026253597869468e-08,-2.043130607170209772e-08,-2.111234960742550076e-08,-2.179339314314890379e-08,-2.247443667887230683e-08,-2.315548021459570987e-08,-2.383652375031911290e-08,-2.451756728604251594e-08,-2.519861082176591898e-08,-2.587965435748932201e-08,-2.656069789321272505e-08,-2.724174142893612809e-08,-2.792278496465953113e-08,-2.860382850038293416e-08,-2.928487203610633720e-08,-2.996591557182974024e-08,-3.064695910755313996e-08,-3.132800264327653969e-08,-3.200904617899993942e-08,-3.269008971472333915e-08,-3.337113325044673888e-08,-3.405217678617013860e-08,-3.473322032189353833e-08,-3.541426385761693806e-08,-3.609530739334033779e-08,-3.677635092906373752e-08,-3.745739446478713724e-08,-3.813843800051053697e-08,-3.881948153623393670e-08,-3.950052507195733643e-08,-4.018156860768073616e-08,-4.086261214340413588e-08,-4.154365567912753561e-08,-4.222469921485093534e-08,-4.290574275057433507e-08 +0.000000000000000000e+00,-3.410942107229759101e-10,-6.821884214459518203e-10,-1.023282632168927679e-09,-1.364376842891903434e-09,-1.705471053614879189e-09,-2.046565264337854944e-09,-2.387659475060830699e-09,-2.728753685783806454e-09,-3.069847896506782209e-09,-3.410942107229757964e-09,-3.752036317952733719e-09,-4.093130528675709060e-09,-4.434224739398684402e-09,-4.775318950121659743e-09,-5.116413160844635085e-09,-5.457507371567610426e-09,-5.798601582290585768e-09,-6.139695793013561109e-09,-6.480790003736536450e-09,-6.821884214459511792e-09,-7.162978425182487133e-09,-7.504072635905462475e-09,-7.845166846628437816e-09,-8.186261057351413158e-09,-8.527355268074388499e-09,-8.868449478797363841e-09,-9.209543689520339182e-09,-9.550637900243314523e-09,-9.891732110966289865e-09,-1.023282632168926521e-08,-1.057392053241224055e-08,-1.091501474313521589e-08,-1.125610895385819123e-08,-1.159720316458116657e-08,-1.193829737530414191e-08,-1.227939158602711725e-08,-1.262048579675009260e-08,-1.296158000747306794e-08,-1.330267421819604328e-08,-1.364376842891901862e-08,-1.398486263964199396e-08,-1.432595685036496930e-08,-1.466705106108794464e-08,-1.500814527181092164e-08,-1.534923948253389864e-08,-1.569033369325687563e-08,-1.603142790397985263e-08,-1.637252211470282962e-08,-1.671361632542580662e-08,-1.705471053614878362e-08,-1.739580474687176061e-08,-1.773689895759473761e-08,-1.807799316831771460e-08,-1.841908737904069160e-08,-1.876018158976366859e-08,-1.910127580048664559e-08,-1.944237001120962259e-08,-1.978346422193259958e-08,-2.012455843265557658e-08,-2.046565264337855357e-08,-2.080674685410153057e-08,-2.114784106482450757e-08,-2.148893527554748456e-08 +0.000000000000000000e+00,-6.904856181107632084e-10,-1.380971236221526417e-09,-2.071456854332289832e-09,-2.761942472443053247e-09,-3.452428090553816662e-09,-4.142913708664579664e-09,-4.833399326775342665e-09,-5.523884944886105667e-09,-6.214370562996868669e-09,-6.904856181107631670e-09,-7.595341799218394672e-09,-8.285827417329157673e-09,-8.976313035439920675e-09,-9.666798653550683676e-09,-1.035728427166144668e-08,-1.104776988977220968e-08,-1.173825550788297268e-08,-1.242874112599373568e-08,-1.311922674410449868e-08,-1.380971236221526169e-08,-1.450019798032602469e-08,-1.519068359843678603e-08,-1.588116921654754573e-08,-1.657165483465830542e-08,-1.726214045276906511e-08,-1.795262607087982481e-08,-1.864311168899058450e-08,-1.933359730710134419e-08,-2.002408292521210388e-08,-2.071456854332286358e-08,-2.140505416143362327e-08,-2.209553977954438296e-08,-2.278602539765514266e-08,-2.347651101576590235e-08,-2.416699663387666204e-08,-2.485748225198742173e-08,-2.554796787009818143e-08,-2.623845348820894112e-08,-2.692893910631970081e-08,-2.761942472443046051e-08,-2.830991034254122020e-08,-2.900039596065197989e-08,-2.969088157876273958e-08,-3.038136719687349928e-08,-3.107185281498425897e-08,-3.176233843309501866e-08,-3.245282405120577836e-08,-3.314330966931653805e-08,-3.383379528742729774e-08,-3.452428090553805743e-08,-3.521476652364881713e-08,-3.590525214175957682e-08,-3.659573775987033651e-08,-3.728622337798109621e-08,-3.797670899609185590e-08,-3.866719461420261559e-08,-3.935768023231337528e-08,-4.004816585042413498e-08,-4.073865146853489467e-08,-4.142913708664565436e-08,-4.211962270475641406e-08,-4.281010832286717375e-08,-4.350059394097793344e-08 +0.000000000000000000e+00,-7.479722627656073333e-10,-1.495944525531214667e-09,-2.243916788296822103e-09,-2.991889051062429747e-09,-3.739861313828037390e-09,-4.487833576593645034e-09,-5.235805839359252677e-09,-5.983778102124860321e-09,-6.731750364890467964e-09,-7.479722627656074780e-09,-8.227694890421681597e-09,-8.975667153187288413e-09,-9.723639415952895229e-09,-1.047161167871850205e-08,-1.121958394148410886e-08,-1.196755620424971568e-08,-1.271552846701532249e-08,-1.346350072978092931e-08,-1.421147299254653613e-08,-1.495944525531214294e-08,-1.570741751807774976e-08,-1.645538978084335658e-08,-1.720336204360896339e-08,-1.795133430637457021e-08,-1.869930656914017703e-08,-1.944727883190578384e-08,-2.019525109467139066e-08,-2.094322335743699747e-08,-2.169119562020260429e-08,-2.243916788296821111e-08,-2.318714014573381792e-08,-2.393511240849942474e-08,-2.468308467126503156e-08,-2.543105693403063837e-08,-2.617902919679624519e-08,-2.692700145956185200e-08,-2.767497372232745882e-08,-2.842294598509306564e-08,-2.917091824785867245e-08,-2.991889051062427927e-08,-3.066686277338988609e-08,-3.141483503615549290e-08,-3.216280729892109972e-08,-3.291077956168670653e-08,-3.365875182445231335e-08,-3.440672408721792017e-08,-3.515469634998352698e-08,-3.590266861274913380e-08,-3.665064087551474062e-08,-3.739861313828034743e-08,-3.814658540104595425e-08,-3.889455766381156107e-08,-3.964252992657716788e-08,-4.039050218934277470e-08,-4.113847445210838151e-08,-4.188644671487398833e-08,-4.263441897763959515e-08,-4.338239124040520196e-08,-4.413036350317080878e-08,-4.487833576593641560e-08,-4.562630802870202241e-08,-4.637428029146762923e-08,-4.712225255423323604e-08 +0.000000000000000000e+00,6.735104208068100421e-10,1.347020841613620084e-09,2.020531262420430230e-09,2.694041683227240582e-09,3.367552104034050934e-09,4.041062524840861286e-09,4.714572945647671639e-09,5.388083366454481991e-09,6.061593787261292343e-09,6.735104208068102696e-09,7.408614628874913048e-09,8.082125049681724227e-09,8.755635470488535407e-09,9.429145891295346586e-09,1.010265631210215777e-08,1.077616673290896895e-08,1.144967715371578012e-08,1.212318757452259130e-08,1.279669799532940248e-08,1.347020841613621366e-08,1.414371883694302484e-08,1.481722925774983602e-08,1.549073967855664720e-08,1.616425009936345838e-08,1.683776052017026956e-08,1.751127094097708074e-08,1.818478136178389192e-08,1.885829178259070310e-08,1.953180220339751428e-08,2.020531262420432546e-08,2.087882304501113664e-08,2.155233346581794782e-08,2.222584388662475900e-08,2.289935430743157018e-08,2.357286472823838135e-08,2.424637514904519253e-08,2.491988556985200371e-08,2.559339599065881489e-08,2.626690641146562607e-08,2.694041683227243725e-08,2.761392725307924843e-08,2.828743767388605961e-08,2.896094809469287079e-08,2.963445851549968197e-08,3.030796893630649315e-08,3.098147935711330764e-08,3.165498977792012213e-08,3.232850019872693661e-08,3.300201061953375110e-08,3.367552104034056559e-08,3.434903146114738008e-08,3.502254188195419457e-08,3.569605230276100905e-08,3.636956272356782354e-08,3.704307314437463803e-08,3.771658356518145252e-08,3.839009398598826701e-08,3.906360440679508150e-08,3.973711482760189598e-08,4.041062524840871047e-08,4.108413566921552496e-08,4.175764609002233945e-08,4.243115651082915394e-08 +0.000000000000000000e+00,-1.470994861603987497e-20,-2.941989723207974993e-20,-4.412984584811962791e-20,-5.883979446415951190e-20,-7.354974308019939590e-20,-8.825969169623927989e-20,-1.029696403122791639e-19,-1.176795889283190479e-19,-1.323895375443589319e-19,-1.470994861603988159e-19,-1.618094347764386999e-19,-1.765193833924785839e-19,-1.912293320085184679e-19,-2.059392806245583518e-19,-2.206492292405982358e-19,-2.353591778566381439e-19,-2.500691264726780520e-19,-2.647790750887179600e-19,-2.794890237047578681e-19,-2.941989723207977762e-19,-3.089089209368376842e-19,-3.236188695528775923e-19,-3.383288181689175004e-19,-3.530387667849574085e-19,-3.677487154009973165e-19,-3.824586640170372246e-19,-3.971686126330771327e-19,-4.118785612491170407e-19,-4.265885098651569488e-19,-4.412984584811968569e-19,-4.560084070972367168e-19,-4.707183557132765767e-19,-4.854283043293164366e-19,-5.001382529453562965e-19,-5.148482015613961565e-19,-5.295581501774360164e-19,-5.442680987934758763e-19,-5.589780474095157362e-19,-5.736879960255555961e-19,-5.883979446415954561e-19,-6.031078932576353160e-19,-6.178178418736751759e-19,-6.325277904897150358e-19,-6.472377391057548957e-19,-6.619476877217947557e-19,-6.766576363378346156e-19,-6.913675849538744755e-19,-7.060775335699143354e-19,-7.207874821859541953e-19,-7.354974308019940553e-19,-7.502073794180339152e-19,-7.649173280340737751e-19,-7.796272766501136350e-19,-7.943372252661534949e-19,-8.090471738821933549e-19,-8.237571224982332148e-19,-8.384670711142730747e-19,-8.531770197303129346e-19,-8.678869683463527945e-19,-8.825969169623927508e-19,-8.973068655784327070e-19,-9.120168141944726632e-19,-9.267267628105126194e-19 +0.000000000000000000e+00,6.754873683199826104e-10,1.350974736639965221e-09,2.026462104959947728e-09,2.701949473279930028e-09,3.377436841599912328e-09,4.052924209919894628e-09,4.728411578239877342e-09,5.403898946559860056e-09,6.079386314879842769e-09,6.754873683199825483e-09,7.430361051519808197e-09,8.105848419839790911e-09,8.781335788159773624e-09,9.456823156479756338e-09,1.013231052479973905e-08,1.080779789311972177e-08,1.148328526143970448e-08,1.215877262975968719e-08,1.283425999807966991e-08,1.350974736639965262e-08,1.418523473471963533e-08,1.486072210303961805e-08,1.553620947135959911e-08,1.621169683967957851e-08,1.688718420799955792e-08,1.756267157631953732e-08,1.823815894463951673e-08,1.891364631295949613e-08,1.958913368127947554e-08,2.026462104959945494e-08,2.094010841791943435e-08,2.161559578623941375e-08,2.229108315455939316e-08,2.296657052287937256e-08,2.364205789119935197e-08,2.431754525951933137e-08,2.499303262783931078e-08,2.566851999615929018e-08,2.634400736447926959e-08,2.701949473279924899e-08,2.769498210111922840e-08,2.837046946943920780e-08,2.904595683775918721e-08,2.972144420607916661e-08,3.039693157439914602e-08,3.107241894271912542e-08,3.174790631103910483e-08,3.242339367935908423e-08,3.309888104767906364e-08,3.377436841599904304e-08,3.444985578431902245e-08,3.512534315263900185e-08,3.580083052095898126e-08,3.647631788927896066e-08,3.715180525759894007e-08,3.782729262591891947e-08,3.850277999423889888e-08,3.917826736255887828e-08,3.985375473087885769e-08,4.052924209919883709e-08,4.120472946751881650e-08,4.188021683583879590e-08,4.255570420415877531e-08 +0.000000000000000000e+00,7.232281380542632462e-10,1.446456276108526492e-09,2.169684414162789635e-09,2.892912552217052571e-09,3.616140690271315507e-09,4.339368828325578443e-09,5.062596966379841379e-09,5.785825104434104315e-09,6.509053242488367251e-09,7.232281380542630187e-09,7.955509518596892296e-09,8.678737656651155232e-09,9.401965794705418168e-09,1.012519393275968110e-08,1.084842207081394404e-08,1.157165020886820698e-08,1.229487834692246991e-08,1.301810648497673285e-08,1.374133462303099578e-08,1.446456276108525872e-08,1.518779089913952166e-08,1.591101903719378459e-08,1.663424717524804753e-08,1.735747531330231046e-08,1.808070345135657340e-08,1.880393158941083634e-08,1.952715972746509927e-08,2.025038786551936221e-08,2.097361600357362514e-08,2.169684414162788808e-08,2.242007227968215102e-08,2.314330041773641395e-08,2.386652855579067689e-08,2.458975669384493983e-08,2.531298483189920276e-08,2.603621296995346570e-08,2.675944110800772863e-08,2.748266924606199157e-08,2.820589738411625451e-08,2.892912552217051744e-08,2.965235366022478038e-08,3.037558179827904331e-08,3.109880993633330294e-08,3.182203807438756257e-08,3.254526621244182220e-08,3.326849435049608182e-08,3.399172248855034145e-08,3.471495062660460108e-08,3.543817876465886070e-08,3.616140690271312033e-08,3.688463504076737996e-08,3.760786317882163959e-08,3.833109131687589921e-08,3.905431945493015884e-08,3.977754759298441847e-08,4.050077573103867810e-08,4.122400386909293772e-08,4.194723200714719735e-08,4.267046014520145698e-08,4.339368828325571660e-08,4.411691642130997623e-08,4.484014455936423586e-08,4.556337269741849549e-08 +0.000000000000000000e+00,3.367184284370760306e-10,6.734368568741520611e-10,1.010155285311228092e-09,1.346873713748304122e-09,1.683592142185380153e-09,2.020310570622456183e-09,2.357028999059532214e-09,2.693747427496608245e-09,3.030465855933684275e-09,3.367184284370760306e-09,3.703902712807836336e-09,4.040621141244912367e-09,4.377339569681988397e-09,4.714057998119064428e-09,5.050776426556140459e-09,5.387494854993216489e-09,5.724213283430292520e-09,6.060931711867368550e-09,6.397650140304444581e-09,6.734368568741520611e-09,7.071086997178596642e-09,7.407805425615672673e-09,7.744523854052748703e-09,8.081242282489824734e-09,8.417960710926900764e-09,8.754679139363976795e-09,9.091397567801052825e-09,9.428115996238128856e-09,9.764834424675204887e-09,1.010155285311228092e-08,1.043827128154935695e-08,1.077498970998643298e-08,1.111170813842350901e-08,1.144842656686058504e-08,1.178514499529766107e-08,1.212186342373473710e-08,1.245858185217181313e-08,1.279530028060888916e-08,1.313201870904596519e-08,1.346873713748304122e-08,1.380545556592011725e-08,1.414217399435719328e-08,1.447889242279426931e-08,1.481561085123134535e-08,1.515232927966841972e-08,1.548904770810549410e-08,1.582576613654256847e-08,1.616248456497964285e-08,1.649920299341671723e-08,1.683592142185379160e-08,1.717263985029086598e-08,1.750935827872794035e-08,1.784607670716501473e-08,1.818279513560208911e-08,1.851951356403916348e-08,1.885623199247623786e-08,1.919295042091331224e-08,1.952966884935038661e-08,1.986638727778746099e-08,2.020310570622453536e-08,2.053982413466160974e-08,2.087654256309868412e-08,2.121326099153575849e-08 +0.000000000000000000e+00,-1.164686025124407083e-20,-2.329372050248814165e-20,-3.494058075373221097e-20,-4.658744100497627728e-20,-5.823430125622033758e-20,-6.988116150746439787e-20,-8.152802175870845816e-20,-9.317488200995251846e-20,-1.048217422611965788e-19,-1.164686025124406270e-19,-1.281154627636846753e-19,-1.397623230149287235e-19,-1.514091832661727718e-19,-1.630560435174168200e-19,-1.747029037686608683e-19,-1.863497640199049165e-19,-1.979966242711489648e-19,-2.096434845223930131e-19,-2.212903447736370372e-19,-2.329372050248810614e-19,-2.445840652761250856e-19,-2.562309255273691098e-19,-2.678777857786131340e-19,-2.795246460298571581e-19,-2.911715062811011823e-19,-3.028183665323452065e-19,-3.144652267835892307e-19,-3.261120870348332549e-19,-3.377589472860772791e-19,-3.494058075373213032e-19,-3.610526677885653274e-19,-3.726995280398093516e-19,-3.843463882910533758e-19,-3.959932485422974000e-19,-4.076401087935414242e-19,-4.192869690447854483e-19,-4.309338292960294725e-19,-4.425806895472734967e-19,-4.542275497985175209e-19,-4.658744100497615451e-19,-4.775212703010055692e-19,-4.891681305522495934e-19,-5.008149908034936176e-19,-5.124618510547376418e-19,-5.241087113059816660e-19,-5.357555715572256902e-19,-5.474024318084697143e-19,-5.590492920597137385e-19,-5.706961523109577627e-19,-5.823430125622017869e-19,-5.939898728134458111e-19,-6.056367330646898352e-19,-6.172835933159338594e-19,-6.289304535671778836e-19,-6.405773138184219078e-19,-6.522241740696659320e-19,-6.638710343209099562e-19,-6.755178945721539803e-19,-6.871647548233980045e-19,-6.988116150746420287e-19,-7.104584753258860529e-19,-7.221053355771300771e-19,-7.337521958283741013e-19 +0.000000000000000000e+00,-6.735104208363311876e-10,-1.347020841672662375e-09,-2.020531262508993563e-09,-2.694041683345324750e-09,-3.367552104181655938e-09,-4.041062525017987125e-09,-4.714572945854317899e-09,-5.388083366690648673e-09,-6.061593787526979447e-09,-6.735104208363310221e-09,-7.408614629199640995e-09,-8.082125050035972596e-09,-8.755635470872304198e-09,-9.429145891708635799e-09,-1.010265631254496740e-08,-1.077616673338129900e-08,-1.144967715421763060e-08,-1.212318757505396220e-08,-1.279669799589029380e-08,-1.347020841672662541e-08,-1.414371883756295701e-08,-1.481722925839928861e-08,-1.549073967923562021e-08,-1.616425010007195181e-08,-1.683776052090828341e-08,-1.751127094174461501e-08,-1.818478136258094661e-08,-1.885829178341727821e-08,-1.953180220425360982e-08,-2.020531262508994142e-08,-2.087882304592627302e-08,-2.155233346676260462e-08,-2.222584388759893622e-08,-2.289935430843526782e-08,-2.357286472927159942e-08,-2.424637515010793102e-08,-2.491988557094426263e-08,-2.559339599178059423e-08,-2.626690641261692583e-08,-2.694041683345325743e-08,-2.761392725428958903e-08,-2.828743767512592063e-08,-2.896094809596225223e-08,-2.963445851679858383e-08,-3.030796893763491213e-08,-3.098147935847124042e-08,-3.165498977930756871e-08,-3.232850020014389700e-08,-3.300201062098022530e-08,-3.367552104181655359e-08,-3.434903146265288188e-08,-3.502254188348921017e-08,-3.569605230432553847e-08,-3.636956272516186676e-08,-3.704307314599819505e-08,-3.771658356683452334e-08,-3.839009398767085164e-08,-3.906360440850717993e-08,-3.973711482934350822e-08,-4.041062525017983651e-08,-4.108413567101616480e-08,-4.175764609185249310e-08,-4.243115651268882139e-08 +0.000000000000000000e+00,-3.367184284665237121e-10,-6.734368569330474242e-10,-1.010155285399571188e-09,-1.346873713866095055e-09,-1.683592142332618922e-09,-2.020310570799142789e-09,-2.357028999265666450e-09,-2.693747427732190110e-09,-3.030465856198713771e-09,-3.367184284665237431e-09,-3.703902713131761091e-09,-4.040621141598284752e-09,-4.377339570064808412e-09,-4.714057998531332072e-09,-5.050776426997855733e-09,-5.387494855464379393e-09,-5.724213283930903054e-09,-6.060931712397426714e-09,-6.397650140863950374e-09,-6.734368569330474035e-09,-7.071086997796997695e-09,-7.407805426263521355e-09,-7.744523854730045843e-09,-8.081242283196571158e-09,-8.417960711663096472e-09,-8.754679140129621787e-09,-9.091397568596147102e-09,-9.428115997062672417e-09,-9.764834425529197731e-09,-1.010155285399572305e-08,-1.043827128246224836e-08,-1.077498971092877368e-08,-1.111170813939529899e-08,-1.144842656786182431e-08,-1.178514499632834962e-08,-1.212186342479487493e-08,-1.245858185326140025e-08,-1.279530028172792556e-08,-1.313201871019445088e-08,-1.346873713866097619e-08,-1.380545556712750151e-08,-1.414217399559402682e-08,-1.447889242406055214e-08,-1.481561085252707745e-08,-1.515232928099360277e-08,-1.548904770946012808e-08,-1.582576613792665340e-08,-1.616248456639317871e-08,-1.649920299485970403e-08,-1.683592142332622934e-08,-1.717263985179275466e-08,-1.750935828025927997e-08,-1.784607670872580529e-08,-1.818279513719233060e-08,-1.851951356565885591e-08,-1.885623199412538123e-08,-1.919295042259190654e-08,-1.952966885105843186e-08,-1.986638727952495717e-08,-2.020310570799148249e-08,-2.053982413645800780e-08,-2.087654256492453312e-08,-2.121326099339105843e-08 +0.000000000000000000e+00,-6.754873683433968882e-10,-1.350974736686793776e-09,-2.026462105030190665e-09,-2.701949473373587553e-09,-3.377436841716984441e-09,-4.052924210060381329e-09,-4.728411578403778217e-09,-5.403898946747175105e-09,-6.079386315090571994e-09,-6.754873683433968882e-09,-7.430361051777365770e-09,-8.105848420120762658e-09,-8.781335788464159546e-09,-9.456823156807556434e-09,-1.013231052515095332e-08,-1.080779789349435021e-08,-1.148328526183774710e-08,-1.215877263018114399e-08,-1.283425999852454088e-08,-1.350974736686793776e-08,-1.418523473521133465e-08,-1.486072210355473154e-08,-1.553620947189812677e-08,-1.621169684024152201e-08,-1.688718420858491724e-08,-1.756267157692831247e-08,-1.823815894527170771e-08,-1.891364631361510294e-08,-1.958913368195849818e-08,-2.026462105030189341e-08,-2.094010841864528864e-08,-2.161559578698868388e-08,-2.229108315533207911e-08,-2.296657052367547435e-08,-2.364205789201886958e-08,-2.431754526036226481e-08,-2.499303262870566005e-08,-2.566851999704905528e-08,-2.634400736539245051e-08,-2.701949473373584575e-08,-2.769498210207924098e-08,-2.837046947042263622e-08,-2.904595683876603145e-08,-2.972144420710942668e-08,-3.039693157545282192e-08,-3.107241894379621384e-08,-3.174790631213960577e-08,-3.242339368048299769e-08,-3.309888104882638962e-08,-3.377436841716978154e-08,-3.444985578551317347e-08,-3.512534315385656539e-08,-3.580083052219995732e-08,-3.647631789054334924e-08,-3.715180525888674117e-08,-3.782729262723013309e-08,-3.850277999557352502e-08,-3.917826736391691694e-08,-3.985375473226030887e-08,-4.052924210060370079e-08,-4.120472946894709272e-08,-4.188021683729048464e-08,-4.255570420563387657e-08 +0.000000000000000000e+00,-7.232281380807967187e-10,-1.446456276161593437e-09,-2.169684414242390053e-09,-2.892912552323186461e-09,-3.616140690403982870e-09,-4.339368828484779278e-09,-5.062596966565575687e-09,-5.785825104646372096e-09,-6.509053242727168504e-09,-7.232281380807964913e-09,-7.955509518888761321e-09,-8.678737656969556902e-09,-9.401965795050352484e-09,-1.012519393313114807e-08,-1.084842207121194365e-08,-1.157165020929273923e-08,-1.229487834737353481e-08,-1.301810648545433039e-08,-1.374133462353512597e-08,-1.446456276161592155e-08,-1.518779089969671713e-08,-1.591101903777751272e-08,-1.663424717585830830e-08,-1.735747531393910388e-08,-1.808070345201989946e-08,-1.880393159010069504e-08,-1.952715972818149062e-08,-2.025038786626228620e-08,-2.097361600434308179e-08,-2.169684414242387737e-08,-2.242007228050467295e-08,-2.314330041858546853e-08,-2.386652855666626411e-08,-2.458975669474705969e-08,-2.531298483282785527e-08,-2.603621297090865086e-08,-2.675944110898944644e-08,-2.748266924707024202e-08,-2.820589738515103760e-08,-2.892912552323183318e-08,-2.965235366131262876e-08,-3.037558179939342765e-08,-3.109880993747422985e-08,-3.182203807555503205e-08,-3.254526621363583425e-08,-3.326849435171663645e-08,-3.399172248979743865e-08,-3.471495062787824084e-08,-3.543817876595904304e-08,-3.616140690403984524e-08,-3.688463504212064744e-08,-3.760786318020144964e-08,-3.833109131828225184e-08,-3.905431945636305404e-08,-3.977754759444385624e-08,-4.050077573252465844e-08,-4.122400387060546063e-08,-4.194723200868626283e-08,-4.267046014676706503e-08,-4.339368828484786723e-08,-4.411691642292866943e-08,-4.484014456100947163e-08,-4.556337269909027383e-08 +0.000000000000000000e+00,6.855279720842721809e-10,1.371055944168544362e-09,2.056583916252816439e-09,2.742111888337088723e-09,3.427639860421360594e-09,4.113167832505632878e-09,4.798695804589904749e-09,5.484223776674177447e-09,6.169751748758448490e-09,6.855279720842720361e-09,7.540807692926991405e-09,8.226335665011262448e-09,8.911863637095533492e-09,9.597391609179804535e-09,1.028291958126407558e-08,1.096844755334834497e-08,1.165397552543261767e-08,1.233950349751689036e-08,1.302503146960115975e-08,1.371055944168542914e-08,1.439608741376970184e-08,1.508161538585397288e-08,1.576714335793824393e-08,1.645267133002251497e-08,1.713819930210678601e-08,1.782372727419105706e-08,1.850925524627532810e-08,1.919478321835959914e-08,1.988031119044386688e-08,2.056583916252814123e-08,2.125136713461241227e-08,2.193689510669668332e-08,2.262242307878095767e-08,2.330795105086522541e-08,2.399347902294949645e-08,2.467900699503376749e-08,2.536453496711803523e-08,2.605006293920230958e-08,2.673559091128658062e-08,2.742111888337085167e-08,2.810664685545512602e-08,2.879217482753939375e-08,2.947770279962366480e-08,3.016323077170793915e-08,3.084875874379221350e-08,3.153428671587648785e-08,3.221981468796076221e-08,3.290534266004503656e-08,3.359087063212931091e-08,3.427639860421358526e-08,3.496192657629785961e-08,3.564745454838213397e-08,3.633298252046640832e-08,3.701851049255068267e-08,3.770403846463495702e-08,3.838956643671923138e-08,3.907509440880350573e-08,3.976062238088778008e-08,4.044615035297205443e-08,4.113167832505632878e-08,4.181720629714060314e-08,4.250273426922487749e-08,4.318826224130915184e-08 +0.000000000000000000e+00,-2.171981567650948543e-20,-4.343963135301897086e-20,-6.515944702952845930e-20,-8.687926270603794173e-20,-1.085990783825474482e-19,-1.303188940590569427e-19,-1.520387097355664371e-19,-1.737585254120759316e-19,-1.954783410885854261e-19,-2.171981567650949446e-19,-2.389179724416044872e-19,-2.606377881181140298e-19,-2.823576037946235724e-19,-3.040774194711330669e-19,-3.257972351476426095e-19,-3.475170508241521521e-19,-3.692368665006616947e-19,-3.909566821771712373e-19,-4.126764978536807799e-19,-4.343963135301903707e-19,-4.561161292066999133e-19,-4.778359448832094559e-19,-4.995557605597189985e-19,-5.212755762362285411e-19,-5.429953919127380837e-19,-5.647152075892476263e-19,-5.864350232657571689e-19,-6.081548389422667115e-19,-6.298746546187762541e-19,-6.515944702952857968e-19,-6.733142859717953394e-19,-6.950341016483048820e-19,-7.167539173248144246e-19,-7.384737330013239672e-19,-7.601935486778335098e-19,-7.819133643543430524e-19,-8.036331800308525950e-19,-8.253529957073621376e-19,-8.470728113838716802e-19,-8.687926270603813191e-19,-8.905124427368908617e-19,-9.122322584134004043e-19,-9.339520740899099470e-19,-9.556718897664194896e-19,-9.773917054429290322e-19,-9.991115211194385748e-19,-1.020831336795948117e-18,-1.042551152472457660e-18,-1.064270968148967203e-18,-1.085990783825476745e-18,-1.107710599501986288e-18,-1.129430415178495830e-18,-1.151150230855005373e-18,-1.172870046531514723e-18,-1.194589862208024266e-18,-1.216309677884533808e-18,-1.238029493561043351e-18,-1.259749309237552893e-18,-1.281469124914062436e-18,-1.303188940590571979e-18,-1.324908756267081521e-18,-1.346628571943591064e-18,-1.368348387620100607e-18 +0.000000000000000000e+00,6.767930354801735607e-10,1.353586070960347121e-09,2.030379106440520786e-09,2.707172141920694656e-09,3.383965177400868527e-09,4.060758212881042398e-09,4.737551248361216269e-09,5.414344283841390140e-09,6.091137319321564011e-09,6.767930354801737882e-09,7.444723390281911753e-09,8.121516425762086451e-09,8.798309461242261976e-09,9.475102496722437502e-09,1.015189553220261303e-08,1.082868856768278855e-08,1.150548160316296408e-08,1.218227463864313960e-08,1.285906767412331513e-08,1.353586070960349065e-08,1.421265374508366618e-08,1.488944678056384170e-08,1.556623981604401723e-08,1.624303285152419275e-08,1.691982588700436828e-08,1.759661892248454380e-08,1.827341195796471933e-08,1.895020499344489486e-08,1.962699802892507038e-08,2.030379106440524591e-08,2.098058409988542143e-08,2.165737713536559696e-08,2.233417017084577248e-08,2.301096320632594801e-08,2.368775624180612353e-08,2.436454927728629906e-08,2.504134231276647458e-08,2.571813534824665011e-08,2.639492838372682563e-08,2.707172141920700116e-08,2.774851445468717668e-08,2.842530749016735221e-08,2.910210052564752773e-08,2.977889356112770326e-08,3.045568659660787879e-08,3.113247963208805431e-08,3.180927266756822984e-08,3.248606570304840536e-08,3.316285873852858089e-08,3.383965177400875641e-08,3.451644480948893194e-08,3.519323784496910746e-08,3.587003088044928299e-08,3.654682391592945851e-08,3.722361695140963404e-08,3.790040998688980956e-08,3.857720302236998509e-08,3.925399605785016061e-08,3.993078909333033614e-08,4.060758212881051166e-08,4.128437516429068719e-08,4.196116819977086271e-08,4.263796123525103824e-08 +0.000000000000000000e+00,7.072969012098370234e-10,1.414593802419674047e-09,2.121890703629511174e-09,2.829187604839348507e-09,3.536484506049185841e-09,4.243781407259023174e-09,4.951078308468860508e-09,5.658375209678697841e-09,6.365672110888535175e-09,7.072969012098372508e-09,7.780265913308209015e-09,8.487562814518044694e-09,9.194859715727880373e-09,9.902156616937716052e-09,1.060945351814755173e-08,1.131675041935738741e-08,1.202404732056722309e-08,1.273134422177705877e-08,1.343864112298689445e-08,1.414593802419673013e-08,1.485323492540656581e-08,1.556053182661640149e-08,1.626782872782623717e-08,1.697512562903607284e-08,1.768242253024590852e-08,1.838971943145574420e-08,1.909701633266557988e-08,1.980431323387541556e-08,2.051161013508525124e-08,2.121890703629508692e-08,2.192620393750492260e-08,2.263350083871475828e-08,2.334079773992459396e-08,2.404809464113442964e-08,2.475539154234426532e-08,2.546268844355410099e-08,2.616998534476393667e-08,2.687728224597377235e-08,2.758457914718360803e-08,2.829187604839344371e-08,2.899917294960327939e-08,2.970646985081311507e-08,3.041376675202295075e-08,3.112106365323278312e-08,3.182836055444261549e-08,3.253565745565244786e-08,3.324295435686228023e-08,3.395025125807211260e-08,3.465754815928194497e-08,3.536484506049177734e-08,3.607214196170160971e-08,3.677943886291144208e-08,3.748673576412127445e-08,3.819403266533110682e-08,3.890132956654093920e-08,3.960862646775077157e-08,4.031592336896060394e-08,4.102322027017043631e-08,4.173051717138026868e-08,4.243781407259010105e-08,4.314511097379993342e-08,4.385240787500976579e-08,4.455970477621959816e-08 +0.000000000000000000e+00,3.428187971460526009e-10,6.856375942921052018e-10,1.028456391438157751e-09,1.371275188584209990e-09,1.714093985730262643e-09,2.056912782876315088e-09,2.399731580022367741e-09,2.742550377168419980e-09,3.085369174314473046e-09,3.428187971460526112e-09,3.771006768606578351e-09,4.113825565752631004e-09,4.456644362898683656e-09,4.799463160044736309e-09,5.142281957190789789e-09,5.485100754336841614e-09,5.827919551482894267e-09,6.170738348628946919e-09,6.513557145774998745e-09,6.856375942921052224e-09,7.199194740067104877e-09,7.542013537213156702e-09,7.884832334359208528e-09,8.227651131505260353e-09,8.570469928651312179e-09,8.913288725797364004e-09,9.256107522943415829e-09,9.598926320089467655e-09,9.941745117235519480e-09,1.028456391438156965e-08,1.062738271152762313e-08,1.097020150867367661e-08,1.131302030581972678e-08,1.165583910296577695e-08,1.199865790011183043e-08,1.234147669725788391e-08,1.268429549440393408e-08,1.302711429154998425e-08,1.336993308869603773e-08,1.371275188584209121e-08,1.405557068298814138e-08,1.439838948013419156e-08,1.474120827728024504e-08,1.508402707442629686e-08,1.542684587157234869e-08,1.576966466871840051e-08,1.611248346586445234e-08,1.645530226301050416e-08,1.679812106015655599e-08,1.714093985730260781e-08,1.748375865444865964e-08,1.782657745159471146e-08,1.816939624874076329e-08,1.851221504588681512e-08,1.885503384303286694e-08,1.919785264017891877e-08,1.954067143732497059e-08,1.988349023447102242e-08,2.022630903161707424e-08,2.056912782876312607e-08,2.091194662590917458e-08,2.125476542305522972e-08,2.159758422020128154e-08 +0.000000000000000000e+00,-1.809011197718913825e-20,-3.618022395437827649e-20,-5.427033593156741173e-20,-7.236044790875654095e-20,-9.045055988594567017e-20,-1.085406718631347994e-19,-1.266307838403239286e-19,-1.447208958175130578e-19,-1.628110077947021870e-19,-1.809011197718913163e-19,-1.989912317490804455e-19,-2.170813437262695506e-19,-2.351714557034586558e-19,-2.532615676806477609e-19,-2.713516796578368661e-19,-2.894417916350259712e-19,-3.075319036122150763e-19,-3.256220155894041815e-19,-3.437121275665932866e-19,-3.618022395437823918e-19,-3.798923515209714969e-19,-3.979824634981606021e-19,-4.160725754753497072e-19,-4.341626874525388123e-19,-4.522527994297279656e-19,-4.703429114069171189e-19,-4.884330233841062722e-19,-5.065231353612954255e-19,-5.246132473384845788e-19,-5.427033593156737321e-19,-5.607934712928628854e-19,-5.788835832700520387e-19,-5.969736952472411920e-19,-6.150638072244303453e-19,-6.331539192016194986e-19,-6.512440311788086519e-19,-6.693341431559978051e-19,-6.874242551331869584e-19,-7.055143671103761117e-19,-7.236044790875652650e-19,-7.416945910647544183e-19,-7.597847030419435716e-19,-7.778748150191327249e-19,-7.959649269963218782e-19,-8.140550389735110315e-19,-8.321451509507001848e-19,-8.502352629278893381e-19,-8.683253749050785877e-19,-8.864154868822678372e-19,-9.045055988594570868e-19,-9.225957108366463364e-19,-9.406858228138355860e-19,-9.587759347910248356e-19,-9.768660467682140852e-19,-9.949561587454033348e-19,-1.013046270722592584e-18,-1.031136382699781834e-18,-1.049226494676971084e-18,-1.067316606654160333e-18,-1.085406718631349583e-18,-1.103496830608538832e-18,-1.121586942585728082e-18,-1.139677054562917331e-18 +0.000000000000000000e+00,-6.855279721277418662e-10,-1.371055944255483732e-09,-2.056583916383225599e-09,-2.742111888510967465e-09,-3.427639860638709745e-09,-4.113167832766451197e-09,-4.798695804894193064e-09,-5.484223777021934930e-09,-6.169751749149676796e-09,-6.855279721277419489e-09,-7.540807693405161356e-09,-8.226335665532904049e-09,-8.911863637660646743e-09,-9.597391609788389436e-09,-1.028291958191613213e-08,-1.096844755404387482e-08,-1.165397552617161586e-08,-1.233950349829936021e-08,-1.302503147042710290e-08,-1.371055944255484560e-08,-1.439608741468258994e-08,-1.508161538681032933e-08,-1.576714335893807037e-08,-1.645267133106581141e-08,-1.713819930319355245e-08,-1.782372727532129349e-08,-1.850925524744903452e-08,-1.919478321957677556e-08,-1.988031119170451660e-08,-2.056583916383225433e-08,-2.125136713595999868e-08,-2.193689510808773972e-08,-2.262242308021548076e-08,-2.330795105234322511e-08,-2.399347902447096284e-08,-2.467900699659870388e-08,-2.536453496872644491e-08,-2.605006294085418264e-08,-2.673559091298192699e-08,-2.742111888510966803e-08,-2.810664685723740907e-08,-2.879217482936515342e-08,-2.947770280149289115e-08,-3.016323077362063219e-08,-3.084875874574836992e-08,-3.153428671787610765e-08,-3.221981469000384538e-08,-3.290534266213158311e-08,-3.359087063425932084e-08,-3.427639860638705857e-08,-3.496192657851479630e-08,-3.564745455064253403e-08,-3.633298252277027176e-08,-3.701851049489800949e-08,-3.770403846702574722e-08,-3.838956643915348495e-08,-3.907509441128122268e-08,-3.976062238340896703e-08,-4.044615035553669153e-08,-4.113167832766444249e-08,-4.181720629979216699e-08,-4.250273427191991795e-08,-4.318826224404764245e-08 +0.000000000000000000e+00,-3.428187971894944723e-10,-6.856375943789889446e-10,-1.028456391568483365e-09,-1.371275188757977476e-09,-1.714093985947472000e-09,-2.056912783136966317e-09,-2.399731580326460841e-09,-2.742550377515954951e-09,-3.085369174705449889e-09,-3.428187971894944826e-09,-3.771006769084438937e-09,-4.113825566273933461e-09,-4.456644363463427985e-09,-4.799463160652922509e-09,-5.142281957842417033e-09,-5.485100755031911557e-09,-5.827919552221406908e-09,-6.170738349410900605e-09,-6.513557146600395129e-09,-6.856375943789889653e-09,-7.199194740979383349e-09,-7.542013538168877873e-09,-7.884832335358371570e-09,-8.227651132547865267e-09,-8.570469929737358964e-09,-8.913288726926852661e-09,-9.256107524116346357e-09,-9.598926321305840054e-09,-9.941745118495333751e-09,-1.028456391568482745e-08,-1.062738271287432114e-08,-1.097020151006381650e-08,-1.131302030725330854e-08,-1.165583910444280224e-08,-1.199865790163229593e-08,-1.234147669882178797e-08,-1.268429549601128333e-08,-1.302711429320077702e-08,-1.336993309039027072e-08,-1.371275188757976607e-08,-1.405557068476925811e-08,-1.439838948195875181e-08,-1.474120827914824551e-08,-1.508402707633773920e-08,-1.542684587352723455e-08,-1.576966467071672991e-08,-1.611248346790622526e-08,-1.645530226509572061e-08,-1.679812106228521596e-08,-1.714093985947471131e-08,-1.748375865666420666e-08,-1.782657745385370201e-08,-1.816939625104319736e-08,-1.851221504823269271e-08,-1.885503384542218807e-08,-1.919785264261168342e-08,-1.954067143980117877e-08,-1.988349023699067412e-08,-2.022630903418016947e-08,-2.056912783136966482e-08,-2.091194662855916348e-08,-2.125476542574865552e-08,-2.159758422293815088e-08 +0.000000000000000000e+00,-6.767930355164525650e-10,-1.353586071032905130e-09,-2.030379106549357902e-09,-2.707172142065810674e-09,-3.383965177582263445e-09,-4.060758213098715804e-09,-4.737551248615168162e-09,-5.414344284131620520e-09,-6.091137319648072878e-09,-6.767930355164525237e-09,-7.444723390680977595e-09,-8.121516426197429953e-09,-8.798309461713882311e-09,-9.475102497230334669e-09,-1.015189553274678703e-08,-1.082868856826323939e-08,-1.150548160377969174e-08,-1.218227463929614410e-08,-1.285906767481259646e-08,-1.353586071032904882e-08,-1.421265374584550118e-08,-1.488944678136195354e-08,-1.556623981687840424e-08,-1.624303285239485660e-08,-1.691982588791130896e-08,-1.759661892342776131e-08,-1.827341195894421367e-08,-1.895020499446066603e-08,-1.962699802997711839e-08,-2.030379106549357075e-08,-2.098058410101002310e-08,-2.165737713652647546e-08,-2.233417017204292782e-08,-2.301096320755938018e-08,-2.368775624307583254e-08,-2.436454927859228490e-08,-2.504134231410873725e-08,-2.571813534962518961e-08,-2.639492838514164197e-08,-2.707172142065809433e-08,-2.774851445617454669e-08,-2.842530749169099905e-08,-2.910210052720745140e-08,-2.977889356272390376e-08,-3.045568659824035612e-08,-3.113247963375680848e-08,-3.180927266927326084e-08,-3.248606570478971319e-08,-3.316285874030616555e-08,-3.383965177582261791e-08,-3.451644481133907027e-08,-3.519323784685552263e-08,-3.587003088237197499e-08,-3.654682391788842734e-08,-3.722361695340487970e-08,-3.790040998892133206e-08,-3.857720302443778442e-08,-3.925399605995423678e-08,-3.993078909547068913e-08,-4.060758213098714149e-08,-4.128437516650359385e-08,-4.196116820202004621e-08,-4.263796123753649857e-08 +0.000000000000000000e+00,-7.072969012486550586e-10,-1.414593802497310117e-09,-2.121890703745964969e-09,-2.829187604994619821e-09,-3.536484506243274672e-09,-4.243781407491929938e-09,-4.951078308740585203e-09,-5.658375209989240468e-09,-6.365672111237895734e-09,-7.072969012486550999e-09,-7.780265913735206265e-09,-8.487562814983861530e-09,-9.194859716232516795e-09,-9.902156617481172061e-09,-1.060945351872982733e-08,-1.131675041997848259e-08,-1.202404732122713786e-08,-1.273134422247579312e-08,-1.343864112372444839e-08,-1.414593802497310365e-08,-1.485323492622175892e-08,-1.556053182747041253e-08,-1.626782872871906614e-08,-1.697512562996771975e-08,-1.768242253121637336e-08,-1.838971943246502697e-08,-1.909701633371368058e-08,-1.980431323496233419e-08,-2.051161013621098781e-08,-2.121890703745964142e-08,-2.192620393870829503e-08,-2.263350083995694864e-08,-2.334079774120560225e-08,-2.404809464245425586e-08,-2.475539154370290947e-08,-2.546268844495156308e-08,-2.616998534620021669e-08,-2.687728224744887030e-08,-2.758457914869752392e-08,-2.829187604994617753e-08,-2.899917295119483114e-08,-2.970646985244348475e-08,-3.041376675369213505e-08,-3.112106365494078535e-08,-3.182836055618943566e-08,-3.253565745743808596e-08,-3.324295435868673626e-08,-3.395025125993538656e-08,-3.465754816118403686e-08,-3.536484506243268717e-08,-3.607214196368133747e-08,-3.677943886492998777e-08,-3.748673576617863807e-08,-3.819403266742728838e-08,-3.890132956867593868e-08,-3.960862646992458898e-08,-4.031592337117323928e-08,-4.102322027242188959e-08,-4.173051717367053989e-08,-4.243781407491919019e-08,-4.314511097616784049e-08,-4.385240787741649079e-08,-4.455970477866514110e-08 +0.000000000000000000e+00,1.320650879488789535e-09,2.641301758977579070e-09,3.961952638466368398e-09,5.282603517955157313e-09,6.603254397443946227e-09,7.923905276932735142e-09,9.244556156421523229e-09,1.056520703591031132e-08,1.188585791539909940e-08,1.320650879488788749e-08,1.452715967437667558e-08,1.584781055386546367e-08,1.716846143335425175e-08,1.848911231284303984e-08,1.980976319233182793e-08,2.113041407182061602e-08,2.245106495130940410e-08,2.377171583079819219e-08,2.509236671028698028e-08,2.641301758977576837e-08,2.773366846926455645e-08,2.905431934875334454e-08,3.037497022824213594e-08,3.169562110773092733e-08,3.301627198721971873e-08,3.433692286670851012e-08,3.565757374619730152e-08,3.697822462568609292e-08,3.829887550517488431e-08,3.961952638466367571e-08,4.094017726415246711e-08,4.226082814364125850e-08,4.358147902313004990e-08,4.490212990261884129e-08,4.622278078210763269e-08,4.754343166159642409e-08,4.886408254108521548e-08,5.018473342057400688e-08,5.150538430006279827e-08,5.282603517955158967e-08,5.414668605904038107e-08,5.546733693852917246e-08,5.678798781801796386e-08,5.810863869750675525e-08,5.942928957699554665e-08,6.074994045648433805e-08,6.207059133597312944e-08,6.339124221546192084e-08,6.471189309495071224e-08,6.603254397443950363e-08,6.735319485392829503e-08,6.867384573341708642e-08,6.999449661290587782e-08,7.131514749239466922e-08,7.263579837188346061e-08,7.395644925137225201e-08,7.527710013086104340e-08,7.659775101034983480e-08,7.791840188983862620e-08,7.923905276932741759e-08,8.055970364881620899e-08,8.188035452830500038e-08,8.320100540779379178e-08 +0.000000000000000000e+00,2.020301155493529060e-09,4.040602310987058120e-09,6.060903466480587180e-09,8.081204621974116240e-09,1.010150577746764447e-08,1.212180693296117271e-08,1.414210808845470094e-08,1.616240924394822917e-08,1.818271039944175740e-08,2.020301155493528564e-08,2.222331271042881387e-08,2.424361386592234210e-08,2.626391502141587034e-08,2.828421617690939857e-08,3.030451733240292680e-08,3.232481848789645173e-08,3.434511964338997665e-08,3.636542079888350157e-08,3.838572195437702650e-08,4.040602310987055142e-08,4.242632426536407635e-08,4.444662542085760127e-08,4.646692657635112620e-08,4.848722773184465112e-08,5.050752888733817604e-08,5.252783004283170097e-08,5.454813119832522589e-08,5.656843235381875082e-08,5.858873350931227574e-08,6.060903466480580066e-08,6.262933582029932559e-08,6.464963697579285051e-08,6.666993813128637544e-08,6.869023928677990036e-08,7.071054044227342529e-08,7.273084159776695021e-08,7.475114275326047513e-08,7.677144390875400006e-08,7.879174506424752498e-08,8.081204621974104991e-08,8.283234737523457483e-08,8.485264853072809975e-08,8.687294968622162468e-08,8.889325084171514960e-08,9.091355199720867453e-08,9.293385315270219945e-08,9.495415430819572438e-08,9.697445546368924930e-08,9.899475661918277422e-08,1.010150577746762991e-07,1.030353589301698241e-07,1.050556600856633490e-07,1.070759612411568739e-07,1.090962623966503988e-07,1.111165635521439238e-07,1.131368647076374487e-07,1.151571658631309736e-07,1.171774670186244985e-07,1.191977681741180235e-07,1.212180693296115484e-07,1.232383704851050865e-07,1.252586716405986247e-07,1.272789727960921629e-07 +0.000000000000000000e+00,2.132964315241212830e-09,4.265928630482425660e-09,6.398892945723638077e-09,8.531857260964849666e-09,1.066482157620606126e-08,1.279778589144727285e-08,1.493075020668848278e-08,1.706371452192969272e-08,1.919667883717090265e-08,2.132964315241211259e-08,2.346260746765332252e-08,2.559557178289453246e-08,2.772853609813574239e-08,2.986150041337695233e-08,3.199446472861816226e-08,3.412742904385937220e-08,3.626039335910058213e-08,3.839335767434179207e-08,4.052632198958300200e-08,4.265928630482421194e-08,4.479225062006542187e-08,4.692521493530663181e-08,4.905817925054784174e-08,5.119114356578905168e-08,5.332410788103026161e-08,5.545707219627147155e-08,5.759003651151268148e-08,5.972300082675389142e-08,6.185596514199509473e-08,6.398892945723629805e-08,6.612189377247750137e-08,6.825485808771870469e-08,7.038782240295990800e-08,7.252078671820111132e-08,7.465375103344231464e-08,7.678671534868351796e-08,7.891967966392472127e-08,8.105264397916592459e-08,8.318560829440712791e-08,8.531857260964833123e-08,8.745153692488953454e-08,8.958450124013073786e-08,9.171746555537194118e-08,9.385042987061314450e-08,9.598339418585434781e-08,9.811635850109555113e-08,1.002493228163367544e-07,1.023822871315779578e-07,1.045152514468191611e-07,1.066482157620603644e-07,1.087811800773015677e-07,1.109141443925427710e-07,1.130471087077839744e-07,1.151800730230251777e-07,1.173130373382663810e-07,1.194460016535075975e-07,1.215789659687488141e-07,1.237119302839900306e-07,1.258448945992312472e-07,1.279778589144724638e-07,1.301108232297136803e-07,1.322437875449548969e-07,1.343767518601961134e-07 +0.000000000000000000e+00,1.405859164069383807e-09,2.811718328138767615e-09,4.217577492208151629e-09,5.623436656277536057e-09,7.029295820346920485e-09,8.435154984416304913e-09,9.841014148485689340e-09,1.124687331255507377e-08,1.265273247662445820e-08,1.405859164069384262e-08,1.546445080476322705e-08,1.687030996883261313e-08,1.827616913290199922e-08,1.968202829697138530e-08,2.108788746104077138e-08,2.249374662511015746e-08,2.389960578917954354e-08,2.530546495324892963e-08,2.671132411731831571e-08,2.811718328138770179e-08,2.952304244545708787e-08,3.092890160952647396e-08,3.233476077359586004e-08,3.374061993766524612e-08,3.514647910173463220e-08,3.655233826580401828e-08,3.795819742987340437e-08,3.936405659394279045e-08,4.076991575801217653e-08,4.217577492208156261e-08,4.358163408615094870e-08,4.498749325022033478e-08,4.639335241428972086e-08,4.779921157835910694e-08,4.920507074242849302e-08,5.061092990649787911e-08,5.201678907056726519e-08,5.342264823463665127e-08,5.482850739870603735e-08,5.623436656277542344e-08,5.764022572684480952e-08,5.904608489091419560e-08,6.045194405498358168e-08,6.185780321905296115e-08,6.326366238312234061e-08,6.466952154719172008e-08,6.607538071126109954e-08,6.748123987533047901e-08,6.888709903939985847e-08,7.029295820346923793e-08,7.169881736753861740e-08,7.310467653160799686e-08,7.451053569567737633e-08,7.591639485974675579e-08,7.732225402381613526e-08,7.872811318788551472e-08,8.013397235195489419e-08,8.153983151602427365e-08,8.294569068009365312e-08,8.435154984416303258e-08,8.575740900823241205e-08,8.716326817230179151e-08,8.856912733637117098e-08 +0.000000000000000000e+00,-5.983771585215678295e-21,-1.196754317043135659e-20,-1.795131475564703564e-20,-2.393508634086271619e-20,-2.991885792607839674e-20,-3.590262951129407729e-20,-4.188640109650975785e-20,-4.787017268172543840e-20,-5.385394426694111895e-20,-5.983771585215679348e-20,-6.582148743737246802e-20,-7.180525902258814255e-20,-7.778903060780381709e-20,-8.377280219301949162e-20,-8.975657377823516615e-20,-9.574034536345084069e-20,-1.017241169486665152e-19,-1.077078885338821898e-19,-1.136916601190978763e-19,-1.196754317043135629e-19,-1.256592032895292495e-19,-1.316429748747449360e-19,-1.376267464599606226e-19,-1.436105180451763092e-19,-1.495942896303919957e-19,-1.555780612156076823e-19,-1.615618328008233689e-19,-1.675456043860390555e-19,-1.735293759712547420e-19,-1.795131475564704286e-19,-1.854969191416861152e-19,-1.914806907269018017e-19,-1.974644623121174883e-19,-2.034482338973331749e-19,-2.094320054825488615e-19,-2.154157770677645480e-19,-2.213995486529802346e-19,-2.273833202381959452e-19,-2.333670918234116559e-19,-2.393508634086273665e-19,-2.453346349938430772e-19,-2.513184065790587878e-19,-2.573021781642744985e-19,-2.632859497494902091e-19,-2.692697213347059198e-19,-2.752534929199216304e-19,-2.812372645051373410e-19,-2.872210360903530517e-19,-2.932048076755687623e-19,-2.991885792607844730e-19,-3.051723508460001836e-19,-3.111561224312158943e-19,-3.171398940164316049e-19,-3.231236656016473156e-19,-3.291074371868630262e-19,-3.350912087720787368e-19,-3.410749803572944475e-19,-3.470587519425101581e-19,-3.530425235277258688e-19,-3.590262951129415794e-19,-3.650100666981572901e-19,-3.709938382833730007e-19,-3.769776098685887114e-19 +0.000000000000000000e+00,-7.282676802980407722e-21,-1.456535360596081544e-20,-2.184803040894122467e-20,-2.913070721192163691e-20,-3.641338401490204914e-20,-4.369606081788246138e-20,-5.097873762086287361e-20,-5.826141442384328585e-20,-6.554409122682370410e-20,-7.282676802980412236e-20,-8.010944483278454061e-20,-8.739212163576495886e-20,-9.467479843874537712e-20,-1.019574752417257954e-19,-1.092401520447062136e-19,-1.165228288476866439e-19,-1.238055056506670742e-19,-1.310881824536475045e-19,-1.383708592566279348e-19,-1.456535360596083651e-19,-1.529362128625887954e-19,-1.602188896655692257e-19,-1.675015664685496560e-19,-1.747842432715300862e-19,-1.820669200745105165e-19,-1.893495968774909468e-19,-1.966322736804713771e-19,-2.039149504834518074e-19,-2.111976272864322377e-19,-2.184803040894126680e-19,-2.257629808923930983e-19,-2.330456576953735286e-19,-2.403283344983539589e-19,-2.476110113013343892e-19,-2.548936881043148194e-19,-2.621763649072952497e-19,-2.694590417102756800e-19,-2.767417185132561103e-19,-2.840243953162365406e-19,-2.913070721192169709e-19,-2.985897489221974012e-19,-3.058724257251778315e-19,-3.131551025281582618e-19,-3.204377793311386921e-19,-3.277204561341191224e-19,-3.350031329370995527e-19,-3.422858097400799829e-19,-3.495684865430604132e-19,-3.568511633460408435e-19,-3.641338401490212738e-19,-3.714165169520017041e-19,-3.786991937549821344e-19,-3.859818705579625647e-19,-3.932645473609429950e-19,-4.005472241639234253e-19,-4.078299009669038556e-19,-4.151125777698842859e-19,-4.223952545728647161e-19,-4.296779313758451464e-19,-4.369606081788256249e-19,-4.442432849818061033e-19,-4.515259617847865818e-19,-4.588086385877670602e-19 +0.000000000000000000e+00,1.503191764467658984e-09,3.006383528935317968e-09,4.509575293402977159e-09,6.012767057870636764e-09,7.515958822338296368e-09,9.019150586805955973e-09,1.052234235127361558e-08,1.202553411574127518e-08,1.352872588020893479e-08,1.503191764467659274e-08,1.653510940914425069e-08,1.803830117361190864e-08,1.954149293807956659e-08,2.104468470254722454e-08,2.254787646701488249e-08,2.405106823148254044e-08,2.555425999595019839e-08,2.705745176041785634e-08,2.856064352488551429e-08,3.006383528935317224e-08,3.156702705382083019e-08,3.307021881828848814e-08,3.457341058275614609e-08,3.607660234722380404e-08,3.757979411169146199e-08,3.908298587615911994e-08,4.058617764062677789e-08,4.208936940509443584e-08,4.359256116956209379e-08,4.509575293402975174e-08,4.659894469849740969e-08,4.810213646296506764e-08,4.960532822743272559e-08,5.110851999190038354e-08,5.261171175636804149e-08,5.411490352083569944e-08,5.561809528530335739e-08,5.712128704977101534e-08,5.862447881423867329e-08,6.012767057870633124e-08,6.163086234317398919e-08,6.313405410764164714e-08,6.463724587210930509e-08,6.614043763657696304e-08,6.764362940104462099e-08,6.914682116551227894e-08,7.065001292997993689e-08,7.215320469444759484e-08,7.365639645891525279e-08,7.515958822338291074e-08,7.666277998785056869e-08,7.816597175231822664e-08,7.966916351678588459e-08,8.117235528125354254e-08,8.267554704572120049e-08,8.417873881018885844e-08,8.568193057465651639e-08,8.718512233912417434e-08,8.868831410359183229e-08,9.019150586805949024e-08,9.169469763252714819e-08,9.319788939699480614e-08,9.470108116146246409e-08 +0.000000000000000000e+00,2.104634494604322565e-09,4.209268989208645129e-09,6.313903483812967281e-09,8.418537978417288605e-09,1.052317247302160993e-08,1.262780696762593125e-08,1.473244146223025258e-08,1.683707595683457390e-08,1.894171045143889357e-08,2.104634494604321324e-08,2.315097944064753291e-08,2.525561393525185258e-08,2.736024842985617225e-08,2.946488292446049192e-08,3.156951741906481159e-08,3.367415191366912795e-08,3.577878640827344431e-08,3.788342090287776067e-08,3.998805539748207703e-08,4.209268989208639339e-08,4.419732438669070975e-08,4.630195888129502611e-08,4.840659337589934247e-08,5.051122787050365884e-08,5.261586236510797520e-08,5.472049685971229156e-08,5.682513135431660792e-08,5.892976584892092428e-08,6.103440034352523402e-08,6.313903483812954377e-08,6.524366933273385351e-08,6.734830382733816325e-08,6.945293832194247300e-08,7.155757281654678274e-08,7.366220731115109248e-08,7.576684180575540223e-08,7.787147630035971197e-08,7.997611079496402171e-08,8.208074528956833146e-08,8.418537978417264120e-08,8.629001427877695094e-08,8.839464877338126069e-08,9.049928326798557043e-08,9.260391776258988017e-08,9.470855225719418992e-08,9.681318675179849966e-08,9.891782124640280940e-08,1.010224557410071191e-07,1.031270902356114289e-07,1.052317247302157386e-07,1.073363592248200484e-07,1.094409937194243581e-07,1.115456282140286679e-07,1.136502627086329776e-07,1.157548972032372874e-07,1.178595316978415971e-07,1.199641661924459068e-07,1.220688006870502033e-07,1.241734351816544999e-07,1.262780696762587964e-07,1.283827041708630929e-07,1.304873386654673894e-07,1.325919731600716859e-07 +0.000000000000000000e+00,1.602813102143031950e-09,3.205626204286063901e-09,4.808439306429096058e-09,6.411252408572128629e-09,8.014065510715161200e-09,9.616878612858193771e-09,1.121969171500122634e-08,1.282250481714425891e-08,1.442531791928729148e-08,1.602813102143032571e-08,1.763094412357336159e-08,1.923375722571639747e-08,2.083657032785943335e-08,2.243938343000246923e-08,2.404219653214550511e-08,2.564500963428854099e-08,2.724782273643157686e-08,2.885063583857461274e-08,3.045344894071764862e-08,3.205626204286068450e-08,3.365907514500372038e-08,3.526188824714675626e-08,3.686470134928979214e-08,3.846751445143282802e-08,4.007032755357586390e-08,4.167314065571889978e-08,4.327595375786193566e-08,4.487876686000497154e-08,4.648157996214800742e-08,4.808439306429104330e-08,4.968720616643407918e-08,5.129001926857711506e-08,5.289283237072015094e-08,5.449564547286318682e-08,5.609845857500622270e-08,5.770127167714925858e-08,5.930408477929229446e-08,6.090689788143532372e-08,6.250971098357835298e-08,6.411252408572138224e-08,6.571533718786441150e-08,6.731815029000744077e-08,6.892096339215047003e-08,7.052377649429349929e-08,7.212658959643652855e-08,7.372940269857955781e-08,7.533221580072258708e-08,7.693502890286561634e-08,7.853784200500864560e-08,8.014065510715167486e-08,8.174346820929470413e-08,8.334628131143773339e-08,8.494909441358076265e-08,8.655190751572379191e-08,8.815472061786682117e-08,8.975753372000985044e-08,9.136034682215287970e-08,9.296315992429590896e-08,9.456597302643893822e-08,9.616878612858196748e-08,9.777159923072499675e-08,9.937441233286802601e-08,1.009772254350110553e-07 +0.000000000000000000e+00,1.382047305307948060e-09,2.764094610615896119e-09,4.146141915923843972e-09,5.528189221231791412e-09,6.910236526539738851e-09,8.292283831847686291e-09,9.674331137155633730e-09,1.105637844246358117e-08,1.243842574777152861e-08,1.382047305307947605e-08,1.520252035838742183e-08,1.658456766369536927e-08,1.796661496900331671e-08,1.934866227431126415e-08,2.073070957961921159e-08,2.211275688492715903e-08,2.349480419023510647e-08,2.487685149554305391e-08,2.625889880085100135e-08,2.764094610615894879e-08,2.902299341146689623e-08,3.040504071677484367e-08,3.178708802208279111e-08,3.316913532739073854e-08,3.455118263269868598e-08,3.593322993800663342e-08,3.731527724331458086e-08,3.869732454862252830e-08,4.007937185393047574e-08,4.146141915923842318e-08,4.284346646454637062e-08,4.422551376985431806e-08,4.560756107516226550e-08,4.698960838047021294e-08,4.837165568577816038e-08,4.975370299108610782e-08,5.113575029639405526e-08,5.251779760170200270e-08,5.389984490700995013e-08,5.528189221231789757e-08,5.666393951762584501e-08,5.804598682293379245e-08,5.942803412824173989e-08,6.081008143354968733e-08,6.219212873885763477e-08,6.357417604416558221e-08,6.495622334947352965e-08,6.633827065478147709e-08,6.772031796008942453e-08,6.910236526539737197e-08,7.048441257070531941e-08,7.186645987601326685e-08,7.324850718132121429e-08,7.463055448662916173e-08,7.601260179193710916e-08,7.739464909724505660e-08,7.877669640255300404e-08,8.015874370786095148e-08,8.154079101316889892e-08,8.292283831847684636e-08,8.430488562378479380e-08,8.568693292909274124e-08,8.706898023440068868e-08 +0.000000000000000000e+00,1.008889337858515187e-09,2.017778675717030375e-09,3.026668013575545562e-09,4.035557351434060749e-09,5.044446689292575936e-09,6.053336027151091124e-09,7.062225365009606311e-09,8.071114702868121498e-09,9.080004040726636685e-09,1.008889337858515187e-08,1.109778271644366706e-08,1.210667205430218225e-08,1.311556139216069743e-08,1.412445073001921262e-08,1.513334006787772946e-08,1.614222940573624631e-08,1.715111874359476315e-08,1.816000808145327999e-08,1.916889741931179683e-08,2.017778675717031367e-08,2.118667609502883051e-08,2.219556543288734735e-08,2.320445477074586420e-08,2.421334410860438104e-08,2.522223344646289788e-08,2.623112278432141472e-08,2.724001212217993156e-08,2.824890146003844840e-08,2.925779079789696525e-08,3.026668013575548540e-08,3.127556947361400555e-08,3.228445881147252570e-08,3.329334814933104585e-08,3.430223748718956600e-08,3.531112682504808615e-08,3.632001616290660630e-08,3.732890550076512645e-08,3.833779483862364660e-08,3.934668417648216675e-08,4.035557351434068690e-08,4.136446285219920705e-08,4.237335219005772720e-08,4.338224152791624735e-08,4.439113086577476750e-08,4.540002020363328765e-08,4.640890954149180780e-08,4.741779887935032795e-08,4.842668821720884810e-08,4.943557755506736825e-08,5.044446689292588840e-08,5.145335623078440855e-08,5.246224556864292870e-08,5.347113490650144886e-08,5.448002424435996901e-08,5.548891358221848916e-08,5.649780292007700931e-08,5.750669225793552946e-08,5.851558159579404961e-08,5.952447093365256976e-08,6.053336027151108991e-08,6.154224960936961006e-08,6.255113894722813021e-08,6.356002828508665036e-08 +0.000000000000000000e+00,1.065129221001225267e-09,2.130258442002450534e-09,3.195387663003675594e-09,4.260516884004900241e-09,5.325646105006124888e-09,6.390775326007349534e-09,7.455904547008573354e-09,8.521033768009797173e-09,9.586162989011020993e-09,1.065129221001224481e-08,1.171642143101346863e-08,1.278155065201469245e-08,1.384667987301591627e-08,1.491180909401714009e-08,1.597693831501836391e-08,1.704206753601958773e-08,1.810719675702081155e-08,1.917232597802203537e-08,2.023745519902325919e-08,2.130258442002448301e-08,2.236771364102570683e-08,2.343284286202693065e-08,2.449797208302815446e-08,2.556310130402937828e-08,2.662823052503060210e-08,2.769335974603182592e-08,2.875848896703304974e-08,2.982361818803427356e-08,3.088874740903549407e-08,3.195387663003671458e-08,3.301900585103793509e-08,3.408413507203915561e-08,3.514926429304037612e-08,3.621439351404159663e-08,3.727952273504281714e-08,3.834465195604403765e-08,3.940978117704525816e-08,4.047491039804647867e-08,4.154003961904769918e-08,4.260516884004891969e-08,4.367029806105014020e-08,4.473542728205136071e-08,4.580055650305258122e-08,4.686568572405380173e-08,4.793081494505502224e-08,4.899594416605624276e-08,5.006107338705746327e-08,5.112620260805868378e-08,5.219133182905990429e-08,5.325646105006112480e-08,5.432159027106234531e-08,5.538671949206356582e-08,5.645184871306478633e-08,5.751697793406600684e-08,5.858210715506722735e-08,5.964723637606845448e-08,6.071236559706968161e-08,6.177749481807090874e-08,6.284262403907213586e-08,6.390775326007336299e-08,6.497288248107459012e-08,6.603801170207581725e-08,6.710314092307704438e-08 +0.000000000000000000e+00,-6.428549458615433758e-21,-1.285709891723086752e-20,-1.928564837584630052e-20,-2.571419783446173202e-20,-3.214274729307716051e-20,-3.857129675169258901e-20,-4.499984621030801750e-20,-5.142839566892344599e-20,-5.785694512753887448e-20,-6.428549458615429695e-20,-7.071404404476971943e-20,-7.714259350338514190e-20,-8.357114296200056437e-20,-8.999969242061598685e-20,-9.642824187923140932e-20,-1.028567913378468318e-19,-1.092853407964622543e-19,-1.157138902550776767e-19,-1.221424397136930992e-19,-1.285709891723085217e-19,-1.349995386309239442e-19,-1.414280880895393666e-19,-1.478566375481547891e-19,-1.542851870067702116e-19,-1.607137364653856341e-19,-1.671422859240010565e-19,-1.735708353826164790e-19,-1.799993848412319015e-19,-1.864279342998473239e-19,-1.928564837584627464e-19,-1.992850332170781689e-19,-2.057135826756935914e-19,-2.121421321343090138e-19,-2.185706815929244122e-19,-2.249992310515398106e-19,-2.314277805101552090e-19,-2.378563299687706074e-19,-2.442848794273860058e-19,-2.507134288860014042e-19,-2.571419783446168026e-19,-2.635705278032322010e-19,-2.699990772618475994e-19,-2.764276267204629978e-19,-2.828561761790783962e-19,-2.892847256376937946e-19,-2.957132750963091930e-19,-3.021418245549245914e-19,-3.085703740135399898e-19,-3.149989234721553882e-19,-3.214274729307707866e-19,-3.278560223893861850e-19,-3.342845718480015834e-19,-3.407131213066169818e-19,-3.471416707652323802e-19,-3.535702202238477786e-19,-3.599987696824631770e-19,-3.664273191410785754e-19,-3.728558685996939738e-19,-3.792844180583093722e-19,-3.857129675169247706e-19,-3.921415169755401690e-19,-3.985700664341555674e-19,-4.049986158927709658e-19 +0.000000000000000000e+00,-1.320650879464208415e-09,-2.641301758928416831e-09,-3.961952638392625246e-09,-5.282603517856833662e-09,-6.603254397321042077e-09,-7.923905276785250493e-09,-9.244556156249459736e-09,-1.056520703571366898e-08,-1.188585791517787822e-08,-1.320650879464208746e-08,-1.452715967410629671e-08,-1.584781055357050429e-08,-1.716846143303471188e-08,-1.848911231249891947e-08,-1.980976319196312706e-08,-2.113041407142733465e-08,-2.245106495089154224e-08,-2.377171583035574982e-08,-2.509236670981995741e-08,-2.641301758928416500e-08,-2.773366846874837259e-08,-2.905431934821258018e-08,-3.037497022767678777e-08,-3.169562110714099535e-08,-3.301627198660520294e-08,-3.433692286606941053e-08,-3.565757374553361812e-08,-3.697822462499782571e-08,-3.829887550446203330e-08,-3.961952638392624088e-08,-4.094017726339044847e-08,-4.226082814285465606e-08,-4.358147902231886365e-08,-4.490212990178307124e-08,-4.622278078124727883e-08,-4.754343166071148641e-08,-4.886408254017569400e-08,-5.018473341963990159e-08,-5.150538429910410918e-08,-5.282603517856831677e-08,-5.414668605803252436e-08,-5.546733693749673194e-08,-5.678798781696093953e-08,-5.810863869642514712e-08,-5.942928957588935471e-08,-6.074994045535356230e-08,-6.207059133481777650e-08,-6.339124221428199071e-08,-6.471189309374620491e-08,-6.603254397321041912e-08,-6.735319485267463333e-08,-6.867384573213884753e-08,-6.999449661160306174e-08,-7.131514749106727594e-08,-7.263579837053149015e-08,-7.395644924999570435e-08,-7.527710012945991856e-08,-7.659775100892413277e-08,-7.791840188838834697e-08,-7.923905276785256118e-08,-8.055970364731677538e-08,-8.188035452678098959e-08,-8.320100540624520379e-08 +0.000000000000000000e+00,-2.020301155505532278e-09,-4.040602311011064556e-09,-6.060903466516596834e-09,-8.081204622022129112e-09,-1.010150577752766139e-08,-1.212180693303319367e-08,-1.414210808853872595e-08,-1.616240924404425822e-08,-1.818271039954979050e-08,-2.020301155505532278e-08,-2.222331271056085506e-08,-2.424361386606638734e-08,-2.626391502157191961e-08,-2.828421617707745189e-08,-3.030451733258298748e-08,-3.232481848808852306e-08,-3.434511964359405865e-08,-3.636542079909959424e-08,-3.838572195460512982e-08,-4.040602311011066541e-08,-4.242632426561620100e-08,-4.444662542112173658e-08,-4.646692657662727217e-08,-4.848722773213280776e-08,-5.050752888763834334e-08,-5.252783004314387893e-08,-5.454813119864941452e-08,-5.656843235415495010e-08,-5.858873350966048569e-08,-6.060903466516602790e-08,-6.262933582067157010e-08,-6.464963697617711230e-08,-6.666993813168265451e-08,-6.869023928718819671e-08,-7.071054044269373892e-08,-7.273084159819928112e-08,-7.475114275370482332e-08,-7.677144390921036553e-08,-7.879174506471590773e-08,-8.081204622022144994e-08,-8.283234737572699214e-08,-8.485264853123253434e-08,-8.687294968673807655e-08,-8.889325084224361875e-08,-9.091355199774916096e-08,-9.293385315325470316e-08,-9.495415430876024536e-08,-9.697445546426578757e-08,-9.899475661977132977e-08,-1.010150577752768720e-07,-1.030353589307824142e-07,-1.050556600862879564e-07,-1.070759612417934986e-07,-1.090962623972990408e-07,-1.111165635528045830e-07,-1.131368647083101252e-07,-1.151571658638156674e-07,-1.171774670193212096e-07,-1.191977681748267518e-07,-1.212180693303322940e-07,-1.232383704858378230e-07,-1.252586716413433520e-07,-1.272789727968488809e-07 +0.000000000000000000e+00,-2.132964315255757147e-09,-4.265928630511514294e-09,-6.398892945767271854e-09,-8.531857261023030242e-09,-1.066482157627878863e-08,-1.279778589153454702e-08,-1.493075020679030540e-08,-1.706371452204606379e-08,-1.919667883730182218e-08,-2.132964315255758057e-08,-2.346260746781333896e-08,-2.559557178306909734e-08,-2.772853609832485573e-08,-2.986150041358061081e-08,-3.199446472883636589e-08,-3.412742904409212097e-08,-3.626039335934787605e-08,-3.839335767460363113e-08,-4.052632198985938620e-08,-4.265928630511514128e-08,-4.479225062037089636e-08,-4.692521493562665144e-08,-4.905817925088240652e-08,-5.119114356613816160e-08,-5.332410788139391668e-08,-5.545707219664967176e-08,-5.759003651190542684e-08,-5.972300082716118191e-08,-6.185596514241694361e-08,-6.398892945767270531e-08,-6.612189377292846700e-08,-6.825485808818422870e-08,-7.038782240343999040e-08,-7.252078671869575209e-08,-7.465375103395151379e-08,-7.678671534920727549e-08,-7.891967966446303718e-08,-8.105264397971879888e-08,-8.318560829497456057e-08,-8.531857261023032227e-08,-8.745153692548608397e-08,-8.958450124074184566e-08,-9.171746555599760736e-08,-9.385042987125336906e-08,-9.598339418650913075e-08,-9.811635850176489245e-08,-1.002493228170206541e-07,-1.023822871322764158e-07,-1.045152514475321775e-07,-1.066482157627879392e-07,-1.087811800780437009e-07,-1.109141443932994626e-07,-1.130471087085552243e-07,-1.151800730238109860e-07,-1.173130373390667477e-07,-1.194460016543224962e-07,-1.215789659695782446e-07,-1.237119302848339931e-07,-1.258448946000897416e-07,-1.279778589153454900e-07,-1.301108232306012385e-07,-1.322437875458569869e-07,-1.343767518611127354e-07 +0.000000000000000000e+00,-1.405859164046860920e-09,-2.811718328093721840e-09,-4.217577492140582554e-09,-5.623436656187442853e-09,-7.029295820234303153e-09,-8.435154984281163453e-09,-9.841014148328023753e-09,-1.124687331237488405e-08,-1.265273247642174435e-08,-1.405859164046860465e-08,-1.546445080451546330e-08,-1.687030996856232360e-08,-1.827616913260918390e-08,-1.968202829665604420e-08,-2.108788746070290450e-08,-2.249374662474976480e-08,-2.389960578879662510e-08,-2.530546495284348540e-08,-2.671132411689034570e-08,-2.811718328093720599e-08,-2.952304244498406629e-08,-3.092890160903092659e-08,-3.233476077307778689e-08,-3.374061993712464719e-08,-3.514647910117150749e-08,-3.655233826521836779e-08,-3.795819742926522809e-08,-3.936405659331208839e-08,-4.076991575735894869e-08,-4.217577492140580899e-08,-4.358163408545266929e-08,-4.498749324949952959e-08,-4.639335241354638989e-08,-4.779921157759325019e-08,-4.920507074164011049e-08,-5.061092990568697079e-08,-5.201678906973383109e-08,-5.342264823378069139e-08,-5.482850739782755169e-08,-5.623436656187441199e-08,-5.764022572592127229e-08,-5.904608488996813259e-08,-6.045194405401499951e-08,-6.185780321806186642e-08,-6.326366238210873334e-08,-6.466952154615560026e-08,-6.607538071020246718e-08,-6.748123987424933409e-08,-6.888709903829620101e-08,-7.029295820234306793e-08,-7.169881736638993484e-08,-7.310467653043680176e-08,-7.451053569448366868e-08,-7.591639485853053560e-08,-7.732225402257740251e-08,-7.872811318662426943e-08,-8.013397235067113635e-08,-8.153983151471800326e-08,-8.294569067876487018e-08,-8.435154984281173710e-08,-8.575740900685860402e-08,-8.716326817090547093e-08,-8.856912733495233785e-08 +0.000000000000000000e+00,-1.008889337870521507e-09,-2.017778675741043014e-09,-3.026668013611564314e-09,-4.035557351482085201e-09,-5.044446689352606088e-09,-6.053336027223126974e-09,-7.062225365093647861e-09,-8.071114702964168748e-09,-9.080004040834689635e-09,-1.008889337870521052e-08,-1.109778271657573141e-08,-1.210667205444625229e-08,-1.311556139231677318e-08,-1.412445073018729407e-08,-1.513334006805781661e-08,-1.614222940592834080e-08,-1.715111874379886500e-08,-1.816000808166938920e-08,-1.916889741953991339e-08,-2.017778675741043759e-08,-2.118667609528096178e-08,-2.219556543315148598e-08,-2.320445477102201017e-08,-2.421334410889253437e-08,-2.522223344676305856e-08,-2.623112278463358276e-08,-2.724001212250410695e-08,-2.824890146037463115e-08,-2.925779079824515534e-08,-3.026668013611567954e-08,-3.127556947398620374e-08,-3.228445881185672793e-08,-3.329334814972725213e-08,-3.430223748759777632e-08,-3.531112682546830052e-08,-3.632001616333882471e-08,-3.732890550120934891e-08,-3.833779483907987310e-08,-3.934668417695039730e-08,-4.035557351482092149e-08,-4.136446285269144569e-08,-4.237335219056196989e-08,-4.338224152843249408e-08,-4.439113086630301828e-08,-4.540002020417354247e-08,-4.640890954204406667e-08,-4.741779887991459086e-08,-4.842668821778511506e-08,-4.943557755565563925e-08,-5.044446689352616345e-08,-5.145335623139668764e-08,-5.246224556926721184e-08,-5.347113490713773603e-08,-5.448002424500826023e-08,-5.548891358287878443e-08,-5.649780292074930862e-08,-5.750669225861983282e-08,-5.851558159649035701e-08,-5.952447093436088121e-08,-6.053336027223139879e-08,-6.154224961010190975e-08,-6.255113894797242071e-08,-6.356002828584293167e-08 +0.000000000000000000e+00,-1.065129221015790263e-09,-2.130258442031580526e-09,-3.195387663047370583e-09,-4.260516884063160226e-09,-5.325646105078949869e-09,-6.390775326094739512e-09,-7.455904547110528327e-09,-8.521033768126317143e-09,-9.586162989142105959e-09,-1.065129221015789477e-08,-1.171642143117368359e-08,-1.278155065218947241e-08,-1.384667987320526122e-08,-1.491180909422105004e-08,-1.597693831523683885e-08,-1.704206753625262767e-08,-1.810719675726841648e-08,-1.917232597828420530e-08,-2.023745519929999412e-08,-2.130258442031578293e-08,-2.236771364133157175e-08,-2.343284286234736056e-08,-2.449797208336314938e-08,-2.556310130437893819e-08,-2.662823052539472701e-08,-2.769335974641051583e-08,-2.875848896742630464e-08,-2.982361818844209346e-08,-3.088874740945788558e-08,-3.195387663047367771e-08,-3.301900585148946983e-08,-3.408413507250526195e-08,-3.514926429352105408e-08,-3.621439351453684620e-08,-3.727952273555263833e-08,-3.834465195656843045e-08,-3.940978117758422258e-08,-4.047491039860001470e-08,-4.154003961961580683e-08,-4.260516884063159895e-08,-4.367029806164739107e-08,-4.473542728266318320e-08,-4.580055650367897532e-08,-4.686568572469476745e-08,-4.793081494571055957e-08,-4.899594416672635170e-08,-5.006107338774214382e-08,-5.112620260875793594e-08,-5.219133182977372807e-08,-5.325646105078952019e-08,-5.432159027180531232e-08,-5.538671949282110444e-08,-5.645184871383689657e-08,-5.751697793485268869e-08,-5.858210715586848082e-08,-5.964723637688427956e-08,-6.071236559790007830e-08,-6.177749481891587704e-08,-6.284262403993167578e-08,-6.390775326094747452e-08,-6.497288248196327327e-08,-6.603801170297907201e-08,-6.710314092399487075e-08 +0.000000000000000000e+00,-1.503191764461114745e-09,-3.006383528922229489e-09,-4.509575293383344027e-09,-6.012767057844458152e-09,-7.515958822305573103e-09,-9.019150586766688055e-09,-1.052234235122780301e-08,-1.202553411568891796e-08,-1.352872588015003291e-08,-1.503191764461114621e-08,-1.653510940907225950e-08,-1.803830117353337280e-08,-1.954149293799448610e-08,-2.104468470245559939e-08,-2.254787646691671269e-08,-2.405106823137782599e-08,-2.555425999583893929e-08,-2.705745176030005258e-08,-2.856064352476116588e-08,-3.006383528922227918e-08,-3.156702705368339247e-08,-3.307021881814450577e-08,-3.457341058260561907e-08,-3.607660234706673237e-08,-3.757979411152784566e-08,-3.908298587598895896e-08,-4.058617764045007226e-08,-4.208936940491118555e-08,-4.359256116937229885e-08,-4.509575293383341215e-08,-4.659894469829452545e-08,-4.810213646275563874e-08,-4.960532822721675204e-08,-5.110851999167786534e-08,-5.261171175613897863e-08,-5.411490352060009193e-08,-5.561809528506120523e-08,-5.712128704952231853e-08,-5.862447881398343182e-08,-6.012767057844454512e-08,-6.163086234290565180e-08,-6.313405410736675848e-08,-6.463724587182786516e-08,-6.614043763628897184e-08,-6.764362940075007852e-08,-6.914682116521118520e-08,-7.065001292967229188e-08,-7.215320469413339856e-08,-7.365639645859450524e-08,-7.515958822305561192e-08,-7.666277998751671860e-08,-7.816597175197782528e-08,-7.966916351643893196e-08,-8.117235528090003864e-08,-8.267554704536114532e-08,-8.417873880982225200e-08,-8.568193057428335867e-08,-8.718512233874446535e-08,-8.868831410320557203e-08,-9.019150586766667871e-08,-9.169469763212778539e-08,-9.319788939658889207e-08,-9.470108116104999875e-08 +0.000000000000000000e+00,-2.104634494617117808e-09,-4.209268989234235616e-09,-6.313903483851353424e-09,-8.418537978468471232e-09,-1.052317247308558904e-08,-1.262780696770270685e-08,-1.473244146231982466e-08,-1.683707595693694246e-08,-1.894171045155406027e-08,-2.104634494617117808e-08,-2.315097944078829589e-08,-2.525561393540541370e-08,-2.736024843002253150e-08,-2.946488292463964931e-08,-3.156951741925676381e-08,-3.367415191387387831e-08,-3.577878640849099281e-08,-3.788342090310810731e-08,-3.998805539772522181e-08,-4.209268989234233631e-08,-4.419732438695945081e-08,-4.630195888157656531e-08,-4.840659337619367981e-08,-5.051122787081079431e-08,-5.261586236542790881e-08,-5.472049686004502330e-08,-5.682513135466213780e-08,-5.892976584927925230e-08,-6.103440034389636680e-08,-6.313903483851347468e-08,-6.524366933313058257e-08,-6.734830382774769045e-08,-6.945293832236479833e-08,-7.155757281698190621e-08,-7.366220731159901409e-08,-7.576684180621612198e-08,-7.787147630083322986e-08,-7.997611079545033774e-08,-8.208074529006744562e-08,-8.418537978468455350e-08,-8.629001427930166139e-08,-8.839464877391876927e-08,-9.049928326853587715e-08,-9.260391776315298503e-08,-9.470855225777009291e-08,-9.681318675238720079e-08,-9.891782124700430868e-08,-1.010224557416214166e-07,-1.031270902362385244e-07,-1.052317247308556323e-07,-1.073363592254727402e-07,-1.094409937200898481e-07,-1.115456282147069560e-07,-1.136502627093240638e-07,-1.157548972039411717e-07,-1.178595316985582796e-07,-1.199641661931753875e-07,-1.220688006877924954e-07,-1.241734351824096033e-07,-1.262780696770267111e-07,-1.283827041716438190e-07,-1.304873386662609269e-07,-1.325919731608780348e-07 +0.000000000000000000e+00,-1.602813102139007096e-09,-3.205626204278014193e-09,-4.808439306417020876e-09,-6.411252408556027558e-09,-8.014065510695034241e-09,-9.616878612834041751e-09,-1.121969171497304926e-08,-1.282250481711205677e-08,-1.442531791925106428e-08,-1.602813102139007179e-08,-1.763094412352907765e-08,-1.923375722566808350e-08,-2.083657032780708936e-08,-2.243938342994609521e-08,-2.404219653208510107e-08,-2.564500963422410692e-08,-2.724782273636311278e-08,-2.885063583850211864e-08,-3.045344894064112449e-08,-3.205626204278013035e-08,-3.365907514491913620e-08,-3.526188824705814206e-08,-3.686470134919714791e-08,-3.846751445133615377e-08,-4.007032755347515962e-08,-4.167314065561416548e-08,-4.327595375775317134e-08,-4.487876685989217719e-08,-4.648157996203118305e-08,-4.808439306417018890e-08,-4.968720616630919476e-08,-5.129001926844820061e-08,-5.289283237058720647e-08,-5.449564547272621233e-08,-5.609845857486521818e-08,-5.770127167700422404e-08,-5.930408477914322989e-08,-6.090689788128223575e-08,-6.250971098342124160e-08,-6.411252408556024746e-08,-6.571533718769925331e-08,-6.731815028983825917e-08,-6.892096339197726503e-08,-7.052377649411627088e-08,-7.212658959625527674e-08,-7.372940269839428259e-08,-7.533221580053328845e-08,-7.693502890267229430e-08,-7.853784200481130016e-08,-8.014065510695030601e-08,-8.174346820908931187e-08,-8.334628131122831773e-08,-8.494909441336732358e-08,-8.655190751550632944e-08,-8.815472061764533529e-08,-8.975753371978434115e-08,-9.136034682192334700e-08,-9.296315992406235286e-08,-9.456597302620135872e-08,-9.616878612834036457e-08,-9.777159923047937043e-08,-9.937441233261837628e-08,-1.009772254347573821e-07 +0.000000000000000000e+00,-1.382047305284468952e-09,-2.764094610568937903e-09,-4.146141915853407062e-09,-5.528189221137876634e-09,-6.910236526422346206e-09,-8.292283831706815778e-09,-9.674331136991284523e-09,-1.105637844227575327e-08,-1.243842574756022201e-08,-1.382047305284469076e-08,-1.520252035812915950e-08,-1.658456766341362825e-08,-1.796661496869809699e-08,-1.934866227398256574e-08,-2.073070957926703448e-08,-2.211275688455150323e-08,-2.349480418983597197e-08,-2.487685149512044072e-08,-2.625889880040490946e-08,-2.764094610568937821e-08,-2.902299341097384695e-08,-3.040504071625831239e-08,-3.178708802154278113e-08,-3.316913532682724988e-08,-3.455118263211171862e-08,-3.593322993739618737e-08,-3.731527724268065611e-08,-3.869732454796512486e-08,-4.007937185324959360e-08,-4.146141915853406235e-08,-4.284346646381853109e-08,-4.422551376910299984e-08,-4.560756107438746858e-08,-4.698960837967193732e-08,-4.837165568495640607e-08,-4.975370299024087481e-08,-5.113575029552534356e-08,-5.251779760080981230e-08,-5.389984490609428105e-08,-5.528189221137874979e-08,-5.666393951666321854e-08,-5.804598682194768728e-08,-5.942803412723215603e-08,-6.081008143251662477e-08,-6.219212873780109352e-08,-6.357417604308556226e-08,-6.495622334837003101e-08,-6.633827065365449975e-08,-6.772031795893896850e-08,-6.910236526422343724e-08,-7.048441256950790599e-08,-7.186645987479237473e-08,-7.324850718007684348e-08,-7.463055448536131222e-08,-7.601260179064578097e-08,-7.739464909593024971e-08,-7.877669640121471846e-08,-8.015874370649918720e-08,-8.154079101178365595e-08,-8.292283831706812469e-08,-8.430488562235259344e-08,-8.568693292763706218e-08,-8.706898023292153093e-08 +0.000000000000000000e+00,1.020128718015815971e-09,2.040257436031631942e-09,3.060386154047448120e-09,4.080514872063264712e-09,5.100643590079081304e-09,6.120772308094897895e-09,7.140901026110714487e-09,8.161029744126531078e-09,9.181158462142347670e-09,1.020128718015816426e-08,1.122141589817398085e-08,1.224154461618979744e-08,1.326167333420561404e-08,1.428180205222143063e-08,1.530193077023724557e-08,1.632205948825305885e-08,1.734218820626887213e-08,1.836231692428468541e-08,1.938244564230049870e-08,2.040257436031631198e-08,2.142270307833212526e-08,2.244283179634793855e-08,2.346296051436375183e-08,2.448308923237956511e-08,2.550321795039537839e-08,2.652334666841119168e-08,2.754347538642700496e-08,2.856360410444281824e-08,2.958373282245863153e-08,3.060386154047444481e-08,3.162399025849025809e-08,3.264411897650607137e-08,3.366424769452188466e-08,3.468437641253769794e-08,3.570450513055351122e-08,3.672463384856932451e-08,3.774476256658513779e-08,3.876489128460095107e-08,3.978502000261676435e-08,4.080514872063257764e-08,4.182527743864839092e-08,4.284540615666420420e-08,4.386553487468001749e-08,4.488566359269583077e-08,4.590579231071164405e-08,4.692592102872745733e-08,4.794604974674327062e-08,4.896617846475908390e-08,4.998630718277489718e-08,5.100643590079071047e-08,5.202656461880652375e-08,5.304669333682233703e-08,5.406682205483815031e-08,5.508695077285396360e-08,5.610707949086977688e-08,5.712720820888559016e-08,5.814733692690140345e-08,5.916746564491721673e-08,6.018759436293303001e-08,6.120772308094884991e-08,6.222785179896466981e-08,6.324798051698048971e-08,6.426810923499630961e-08 +0.000000000000000000e+00,1.079448621065080119e-09,2.158897242130160238e-09,3.238345863195240563e-09,4.317794484260321302e-09,5.397243105325402041e-09,6.476691726390482781e-09,7.556140347455563520e-09,8.635588968520644259e-09,9.715037589585724998e-09,1.079448621065080574e-08,1.187393483171588648e-08,1.295338345278096722e-08,1.403283207384604795e-08,1.511228069491113035e-08,1.619172931597621109e-08,1.727117793704129183e-08,1.835062655810637257e-08,1.943007517917145330e-08,2.050952380023653404e-08,2.158897242130161478e-08,2.266842104236669552e-08,2.374786966343177626e-08,2.482731828449685700e-08,2.590676690556193774e-08,2.698621552662701848e-08,2.806566414769209922e-08,2.914511276875717996e-08,3.022456138982226070e-08,3.130401001088734144e-08,3.238345863195242217e-08,3.346290725301750291e-08,3.454235587408258365e-08,3.562180449514766439e-08,3.670125311621274513e-08,3.778070173727782587e-08,3.886015035834290661e-08,3.993959897940798735e-08,4.101904760047306809e-08,4.209849622153814883e-08,4.317794484260322957e-08,4.425739346366831031e-08,4.533684208473339104e-08,4.641629070579847178e-08,4.749573932686355252e-08,4.857518794792863326e-08,4.965463656899371400e-08,5.073408519005879474e-08,5.181353381112387548e-08,5.289298243218895622e-08,5.397243105325403696e-08,5.505187967431911770e-08,5.613132829538419844e-08,5.721077691644927918e-08,5.829022553751435991e-08,5.936967415857944065e-08,6.044912277964452139e-08,6.152857140070960875e-08,6.260802002177469611e-08,6.368746864283978346e-08,6.476691726390487082e-08,6.584636588496995818e-08,6.692581450603504553e-08,6.800526312710013289e-08 +0.000000000000000000e+00,1.128184103026395978e-09,2.256368206052791955e-09,3.384552309079187933e-09,4.512736412105583910e-09,5.640920515131979888e-09,6.769104618158375866e-09,7.897288721184772670e-09,9.025472824211169475e-09,1.015365692723756628e-08,1.128184103026396308e-08,1.241002513329035989e-08,1.353820923631675669e-08,1.466639333934315350e-08,1.579457744236955196e-08,1.692276154539595042e-08,1.805094564842234888e-08,1.917912975144874734e-08,2.030731385447514579e-08,2.143549795750154425e-08,2.256368206052794271e-08,2.369186616355434117e-08,2.482005026658073963e-08,2.594823436960713809e-08,2.707641847263353655e-08,2.820460257565993501e-08,2.933278667868633347e-08,3.046097078171273193e-08,3.158915488473913039e-08,3.271733898776552885e-08,3.384552309079192730e-08,3.497370719381832576e-08,3.610189129684472422e-08,3.723007539987112268e-08,3.835825950289752114e-08,3.948644360592391960e-08,4.061462770895031806e-08,4.174281181197671652e-08,4.287099591500311498e-08,4.399918001802951344e-08,4.512736412105591190e-08,4.625554822408231036e-08,4.738373232710870881e-08,4.851191643013510727e-08,4.964010053316150573e-08,5.076828463618790419e-08,5.189646873921430265e-08,5.302465284224070111e-08,5.415283694526709957e-08,5.528102104829349803e-08,5.640920515131989649e-08,5.753738925434629495e-08,5.866557335737269341e-08,5.979375746039909848e-08,6.092194156342550356e-08,6.205012566645190864e-08,6.317830976947831371e-08,6.430649387250471879e-08,6.543467797553112387e-08,6.656286207855752894e-08,6.769104618158393402e-08,6.881923028461033909e-08,6.994741438763674417e-08,7.107559849066314925e-08 +0.000000000000000000e+00,1.197692464064322394e-09,2.395384928128644789e-09,3.593077392192966976e-09,4.790769856257288750e-09,5.988462320321610524e-09,7.186154784385932298e-09,8.383847248450253245e-09,9.581539712514574192e-09,1.077923217657889514e-08,1.197692464064321609e-08,1.317461710470753703e-08,1.437230956877185798e-08,1.557000203283617893e-08,1.676769449690049987e-08,1.796538696096482082e-08,1.916307942502914177e-08,2.036077188909346271e-08,2.155846435315778366e-08,2.275615681722210461e-08,2.395384928128642555e-08,2.515154174535074650e-08,2.634923420941506745e-08,2.754692667347938839e-08,2.874461913754370934e-08,2.994231160160803029e-08,3.114000406567235123e-08,3.233769652973667218e-08,3.353538899380099313e-08,3.473308145786531407e-08,3.593077392192963502e-08,3.712846638599395597e-08,3.832615885005827691e-08,3.952385131412259786e-08,4.072154377818691881e-08,4.191923624225123975e-08,4.311692870631556070e-08,4.431462117037988165e-08,4.551231363444420259e-08,4.671000609850852354e-08,4.790769856257284449e-08,4.910539102663716544e-08,5.030308349070148638e-08,5.150077595476580733e-08,5.269846841883012828e-08,5.389616088289444922e-08,5.509385334695877017e-08,5.629154581102309112e-08,5.748923827508741206e-08,5.868693073915173301e-08,5.988462320321606057e-08,6.108231566728038814e-08,6.228000813134471570e-08,6.347770059540904327e-08,6.467539305947337083e-08,6.587308552353769839e-08,6.707077798760202596e-08,6.826847045166635352e-08,6.946616291573068109e-08,7.066385537979500865e-08,7.186154784385933622e-08,7.305924030792366378e-08,7.425693277198799134e-08,7.545462523605231891e-08 +0.000000000000000000e+00,1.069203477936390114e-09,2.138406955872780228e-09,3.207610433809170343e-09,4.276813911745560457e-09,5.346017389681950158e-09,6.415220867618339858e-09,7.484424345554729559e-09,8.553627823491119260e-09,9.622831301427508960e-09,1.069203477936389866e-08,1.176123825730028836e-08,1.283044173523667806e-08,1.389964521317306776e-08,1.496884869110945912e-08,1.603805216904585047e-08,1.710725564698224183e-08,1.817645912491863318e-08,1.924566260285502454e-08,2.031486608079141589e-08,2.138406955872780725e-08,2.245327303666419860e-08,2.352247651460058996e-08,2.459167999253698131e-08,2.566088347047337267e-08,2.673008694840976402e-08,2.779929042634615538e-08,2.886849390428254673e-08,2.993769738221893809e-08,3.100690086015532944e-08,3.207610433809172080e-08,3.314530781602811215e-08,3.421451129396450351e-08,3.528371477190089486e-08,3.635291824983728622e-08,3.742212172777367757e-08,3.849132520571006893e-08,3.956052868364646028e-08,4.062973216158285164e-08,4.169893563951924299e-08,4.276813911745563435e-08,4.383734259539202570e-08,4.490654607332841706e-08,4.597574955126480841e-08,4.704495302920119977e-08,4.811415650713759112e-08,4.918335998507398248e-08,5.025256346301037383e-08,5.132176694094676519e-08,5.239097041888315654e-08,5.346017389681954790e-08,5.452937737475593925e-08,5.559858085269233061e-08,5.666778433062872196e-08,5.773698780856511332e-08,5.880619128650150467e-08,5.987539476443788941e-08,6.094459824237427415e-08,6.201380172031065889e-08,6.308300519824704362e-08,6.415220867618342836e-08,6.522141215411981310e-08,6.629061563205619784e-08,6.735981910999258257e-08 +0.000000000000000000e+00,-1.020128717956516013e-09,-2.040257435913032027e-09,-3.060386153869548040e-09,-4.080514871826064054e-09,-5.100643589782580067e-09,-6.120772307739096081e-09,-7.140901025695612094e-09,-8.161029743652128108e-09,-9.181158461608644121e-09,-1.020128717956516013e-08,-1.122141589752167615e-08,-1.224154461547819216e-08,-1.326167333343470818e-08,-1.428180205139122419e-08,-1.530193076934774186e-08,-1.632205948730425952e-08,-1.734218820526077719e-08,-1.836231692321729486e-08,-1.938244564117381253e-08,-2.040257435913033020e-08,-2.142270307708684786e-08,-2.244283179504336553e-08,-2.346296051299988320e-08,-2.448308923095640087e-08,-2.550321794891291854e-08,-2.652334666686943620e-08,-2.754347538482595387e-08,-2.856360410278247154e-08,-2.958373282073898921e-08,-3.060386153869551018e-08,-3.162399025665203116e-08,-3.264411897460855214e-08,-3.366424769256507311e-08,-3.468437641052159409e-08,-3.570450512847811507e-08,-3.672463384643463604e-08,-3.774476256439115702e-08,-3.876489128234767800e-08,-3.978502000030419897e-08,-4.080514871826071995e-08,-4.182527743621724093e-08,-4.284540615417376190e-08,-4.386553487213028288e-08,-4.488566359008680385e-08,-4.590579230804332483e-08,-4.692592102599984581e-08,-4.794604974395636678e-08,-4.896617846191288776e-08,-4.998630717986940874e-08,-5.100643589782592971e-08,-5.202656461578245069e-08,-5.304669333373897167e-08,-5.406682205169549264e-08,-5.508695076965201362e-08,-5.610707948760853460e-08,-5.712720820556505557e-08,-5.814733692352157655e-08,-5.916746564147809753e-08,-6.018759435943461189e-08,-6.120772307739112625e-08,-6.222785179534764060e-08,-6.324798051330415496e-08,-6.426810923126066932e-08 +0.000000000000000000e+00,-1.079448621006731832e-09,-2.158897242013463665e-09,-3.238345863020195497e-09,-4.317794484026927329e-09,-5.397243105033658748e-09,-6.476691726040390167e-09,-7.556140347047121586e-09,-8.635588968053853004e-09,-9.715037589060584423e-09,-1.079448621006731584e-08,-1.187393483107404726e-08,-1.295338345208077868e-08,-1.403283207308751010e-08,-1.511228069409423986e-08,-1.619172931510096797e-08,-1.727117793610769608e-08,-1.835062655711442419e-08,-1.943007517812115230e-08,-2.050952379912788041e-08,-2.158897242013460852e-08,-2.266842104114133663e-08,-2.374786966214806474e-08,-2.482731828315479285e-08,-2.590676690416152096e-08,-2.698621552516824907e-08,-2.806566414617497718e-08,-2.914511276718170529e-08,-3.022456138818843340e-08,-3.130401000919516151e-08,-3.238345863020188962e-08,-3.346290725120861773e-08,-3.454235587221534584e-08,-3.562180449322207395e-08,-3.670125311422880206e-08,-3.778070173523553017e-08,-3.886015035624225828e-08,-3.993959897724898639e-08,-4.101904759825571450e-08,-4.209849621926244261e-08,-4.317794484026917072e-08,-4.425739346127589883e-08,-4.533684208228262694e-08,-4.641629070328935505e-08,-4.749573932429608316e-08,-4.857518794530281127e-08,-4.965463656630953938e-08,-5.073408518731626749e-08,-5.181353380832299560e-08,-5.289298242932972371e-08,-5.397243105033645182e-08,-5.505187967134317993e-08,-5.613132829234990804e-08,-5.721077691335663615e-08,-5.829022553436336426e-08,-5.936967415537009237e-08,-6.044912277637682710e-08,-6.152857139738356183e-08,-6.260802001839029656e-08,-6.368746863939703128e-08,-6.476691726040376601e-08,-6.584636588141050074e-08,-6.692581450241723547e-08,-6.800526312342397019e-08 +0.000000000000000000e+00,-1.128184102984146487e-09,-2.256368205968292974e-09,-3.384552308952439461e-09,-4.512736411936585948e-09,-5.640920514920732022e-09,-6.769104617904878095e-09,-7.897288720889024169e-09,-9.025472823873170242e-09,-1.015365692685731632e-08,-1.128184102984146239e-08,-1.241002513282560846e-08,-1.353820923580975454e-08,-1.466639333879390061e-08,-1.579457744177804503e-08,-1.692276154476219110e-08,-1.805094564774633718e-08,-1.917912975073048325e-08,-2.030731385371462932e-08,-2.143549795669877540e-08,-2.256368205968292147e-08,-2.369186616266706754e-08,-2.482005026565121362e-08,-2.594823436863535969e-08,-2.707641847161950576e-08,-2.820460257460365184e-08,-2.933278667758779791e-08,-3.046097078057194398e-08,-3.158915488355609006e-08,-3.271733898654023613e-08,-3.384552308952438220e-08,-3.497370719250852828e-08,-3.610189129549267435e-08,-3.723007539847682042e-08,-3.835825950146096650e-08,-3.948644360444511257e-08,-4.061462770742925864e-08,-4.174281181041340472e-08,-4.287099591339755079e-08,-4.399918001638169686e-08,-4.512736411936584294e-08,-4.625554822234998901e-08,-4.738373232533413509e-08,-4.851191642831828116e-08,-4.964010053130242723e-08,-5.076828463428657331e-08,-5.189646873727071938e-08,-5.302465284025486545e-08,-5.415283694323901153e-08,-5.528102104622315760e-08,-5.640920514920730367e-08,-5.753738925219144975e-08,-5.866557335517559582e-08,-5.979375745815974189e-08,-6.092194156114388797e-08,-6.205012566412803404e-08,-6.317830976711218011e-08,-6.430649387009632619e-08,-6.543467797308047226e-08,-6.656286207606461833e-08,-6.769104617904876441e-08,-6.881923028203291048e-08,-6.994741438501705655e-08,-7.107559848800120263e-08 +0.000000000000000000e+00,-1.197692464023710515e-09,-2.395384928047421029e-09,-3.593077392071131544e-09,-4.790769856094842058e-09,-5.988462320118552573e-09,-7.186154784142263088e-09,-8.383847248165974429e-09,-9.581539712189685771e-09,-1.077923217621339711e-08,-1.197692464023710845e-08,-1.317461710426081980e-08,-1.437230956828453114e-08,-1.557000203230824248e-08,-1.676769449633195548e-08,-1.796538696035566847e-08,-1.916307942437938147e-08,-2.036077188840309446e-08,-2.155846435242680746e-08,-2.275615681645052046e-08,-2.395384928047423345e-08,-2.515154174449794645e-08,-2.634923420852165945e-08,-2.754692667254537244e-08,-2.874461913656908544e-08,-2.994231160059279513e-08,-3.114000406461650481e-08,-3.233769652864021450e-08,-3.353538899266392419e-08,-3.473308145668763387e-08,-3.593077392071134356e-08,-3.712846638473505325e-08,-3.832615884875876294e-08,-3.952385131278247262e-08,-4.072154377680618231e-08,-4.191923624082989200e-08,-4.311692870485360169e-08,-4.431462116887731137e-08,-4.551231363290102106e-08,-4.671000609692473075e-08,-4.790769856094844044e-08,-4.910539102497215012e-08,-5.030308348899585981e-08,-5.150077595301956950e-08,-5.269846841704327919e-08,-5.389616088106698887e-08,-5.509385334509069856e-08,-5.629154580911440825e-08,-5.748923827313811794e-08,-5.868693073716182762e-08,-5.988462320118553731e-08,-6.108231566520924700e-08,-6.228000812923295669e-08,-6.347770059325666637e-08,-6.467539305728037606e-08,-6.587308552130408575e-08,-6.707077798532779544e-08,-6.826847044935150512e-08,-6.946616291337521481e-08,-7.066385537739892450e-08,-7.186154784142263418e-08,-7.305924030544634387e-08,-7.425693276947005356e-08,-7.545462523349376325e-08 +0.000000000000000000e+00,-1.069203477877467971e-09,-2.138406955754935943e-09,-3.207610433632403914e-09,-4.276813911509871885e-09,-5.346017389387339856e-09,-6.415220867264807828e-09,-7.484424345142275799e-09,-8.553627823019743770e-09,-9.622831300897211741e-09,-1.069203477877467971e-08,-1.176123825665214768e-08,-1.283044173452961566e-08,-1.389964521240708363e-08,-1.496884869028455160e-08,-1.603805216816201791e-08,-1.710725564603948423e-08,-1.817645912391695055e-08,-1.924566260179441687e-08,-2.031486607967188318e-08,-2.138406955754934950e-08,-2.245327303542681582e-08,-2.352247651330428213e-08,-2.459167999118174845e-08,-2.566088346905921477e-08,-2.673008694693668108e-08,-2.779929042481414740e-08,-2.886849390269161372e-08,-2.993769738056908334e-08,-3.100690085844655297e-08,-3.207610433632402259e-08,-3.314530781420149222e-08,-3.421451129207896185e-08,-3.528371476995643147e-08,-3.635291824783390110e-08,-3.742212172571137072e-08,-3.849132520358884035e-08,-3.956052868146630997e-08,-4.062973215934377960e-08,-4.169893563722124922e-08,-4.276813911509871885e-08,-4.383734259297618848e-08,-4.490654607085365810e-08,-4.597574954873112773e-08,-4.704495302660859735e-08,-4.811415650448606698e-08,-4.918335998236353660e-08,-5.025256346024100623e-08,-5.132176693811847586e-08,-5.239097041599594548e-08,-5.346017389387341511e-08,-5.452937737175088473e-08,-5.559858084962835436e-08,-5.666778432750582398e-08,-5.773698780538329361e-08,-5.880619128326076323e-08,-5.987539476113823286e-08,-6.094459823901569587e-08,-6.201380171689315888e-08,-6.308300519477062188e-08,-6.415220867264808489e-08,-6.522141215052554790e-08,-6.629061562840301091e-08,-6.735981910628047392e-08 +0.000000000000000000e+00,8.741271560046956426e-10,1.748254312009391285e-09,2.622381468014086928e-09,3.496508624018782570e-09,4.370635780023478626e-09,5.244762936028174682e-09,6.118890092032870739e-09,6.993017248037566795e-09,7.867144404042262851e-09,8.741271560046958907e-09,9.615398716051654963e-09,1.048952587205635102e-08,1.136365302806104708e-08,1.223778018406574313e-08,1.311190734007043919e-08,1.398603449607513524e-08,1.486016165207983130e-08,1.573428880808452570e-08,1.660841596408922010e-08,1.748254312009391451e-08,1.835667027609860891e-08,1.923079743210330331e-08,2.010492458810799771e-08,2.097905174411269211e-08,2.185317890011738651e-08,2.272730605612208092e-08,2.360143321212677532e-08,2.447556036813146972e-08,2.534968752413616412e-08,2.622381468014085852e-08,2.709794183614555292e-08,2.797206899215024733e-08,2.884619614815494173e-08,2.972032330415963613e-08,3.059445046016432722e-08,3.146857761616901832e-08,3.234270477217370941e-08,3.321683192817840050e-08,3.409095908418309160e-08,3.496508624018778269e-08,3.583921339619247378e-08,3.671334055219716487e-08,3.758746770820185597e-08,3.846159486420654706e-08,3.933572202021123815e-08,4.020984917621592925e-08,4.108397633222062034e-08,4.195810348822531143e-08,4.283223064423000253e-08,4.370635780023469362e-08,4.458048495623938471e-08,4.545461211224407581e-08,4.632873926824876690e-08,4.720286642425345799e-08,4.807699358025814908e-08,4.895112073626284018e-08,4.982524789226753127e-08,5.069937504827222236e-08,5.157350220427691346e-08,5.244762936028160455e-08,5.332175651628629564e-08,5.419588367229098674e-08,5.507001082829567783e-08 +0.000000000000000000e+00,9.147402659872240641e-10,1.829480531974448128e-09,2.744220797961671986e-09,3.658961063948895843e-09,4.573701329936119700e-09,5.488441595923343971e-09,6.403181861910568242e-09,7.317922127897792513e-09,8.232662393885017611e-09,9.147402659872242709e-09,1.006214292585946781e-08,1.097688319184669291e-08,1.189162345783391800e-08,1.280636372382114310e-08,1.372110398980836820e-08,1.463584425579559330e-08,1.555058452178281840e-08,1.646532478777004184e-08,1.738006505375726528e-08,1.829480531974448873e-08,1.920954558573171217e-08,2.012428585171893561e-08,2.103902611770615906e-08,2.195376638369338250e-08,2.286850664968060595e-08,2.378324691566782939e-08,2.469798718165505283e-08,2.561272744764227628e-08,2.652746771362949972e-08,2.744220797961672316e-08,2.835694824560394661e-08,2.927168851159117005e-08,3.018642877757839680e-08,3.110116904356562356e-08,3.201590930955285031e-08,3.293064957554007706e-08,3.384538984152730381e-08,3.476013010751453057e-08,3.567487037350175732e-08,3.658961063948898407e-08,3.750435090547621082e-08,3.841909117146343758e-08,3.933383143745066433e-08,4.024857170343789108e-08,4.116331196942511783e-08,4.207805223541234459e-08,4.299279250139957134e-08,4.390753276738679809e-08,4.482227303337402484e-08,4.573701329936125160e-08,4.665175356534847835e-08,4.756649383133570510e-08,4.848123409732293185e-08,4.939597436331015861e-08,5.031071462929738536e-08,5.122545489528461211e-08,5.214019516127183886e-08,5.305493542725906562e-08,5.396967569324629237e-08,5.488441595923351912e-08,5.579915622522074587e-08,5.671389649120797263e-08,5.762863675719519938e-08 +0.000000000000000000e+00,9.355743797274749834e-10,1.871148759454949967e-09,2.806723139182424950e-09,3.742297518909899934e-09,4.677871898637374917e-09,5.613446278364849900e-09,6.549020658092324884e-09,7.484595037819799867e-09,8.420169417547274851e-09,9.355743797274749834e-09,1.029131817700222482e-08,1.122689255672969980e-08,1.216246693645717478e-08,1.309804131618464977e-08,1.403361569591212475e-08,1.496919007563959973e-08,1.590476445536707637e-08,1.684033883509455301e-08,1.777591321482202965e-08,1.871148759454950629e-08,1.964706197427698292e-08,2.058263635400445956e-08,2.151821073373193620e-08,2.245378511345941284e-08,2.338935949318688947e-08,2.432493387291436611e-08,2.526050825264184275e-08,2.619608263236931939e-08,2.713165701209679603e-08,2.806723139182427266e-08,2.900280577155174930e-08,2.993838015127922594e-08,3.087395453100670258e-08,3.180952891073417921e-08,3.274510329046165585e-08,3.368067767018913249e-08,3.461625204991660913e-08,3.555182642964408577e-08,3.648740080937156240e-08,3.742297518909903904e-08,3.835854956882651568e-08,3.929412394855399232e-08,4.022969832828146895e-08,4.116527270800894559e-08,4.210084708773642223e-08,4.303642146746389887e-08,4.397199584719137551e-08,4.490757022691885214e-08,4.584314460664632878e-08,4.677871898637380542e-08,4.771429336610128206e-08,4.864986774582875869e-08,4.958544212555623533e-08,5.052101650528371197e-08,5.145659088501118861e-08,5.239216526473866524e-08,5.332773964446614188e-08,5.426331402419361852e-08,5.519888840392109516e-08,5.613446278364857180e-08,5.707003716337604843e-08,5.800561154310352507e-08,5.894118592283100171e-08 +0.000000000000000000e+00,9.839216508978344086e-10,1.967843301795668817e-09,2.951764952693503226e-09,3.935686603591337634e-09,4.919608254489172457e-09,5.903529905387007279e-09,6.887451556284842101e-09,7.871373207182676923e-09,8.855294858080511745e-09,9.839216508978346567e-09,1.082313815987618139e-08,1.180705981077401621e-08,1.279098146167185103e-08,1.377490311256968586e-08,1.475882476346752068e-08,1.574274641436535715e-08,1.672666806526319529e-08,1.771058971616103342e-08,1.869451136705887155e-08,1.967843301795670968e-08,2.066235466885454781e-08,2.164627631975238594e-08,2.263019797065022407e-08,2.361411962154806220e-08,2.459804127244590033e-08,2.558196292334373846e-08,2.656588457424157659e-08,2.754980622513941473e-08,2.853372787603725286e-08,2.951764952693509099e-08,3.050157117783292912e-08,3.148549282873076725e-08,3.246941447962860538e-08,3.345333613052644351e-08,3.443725778142428164e-08,3.542117943232211977e-08,3.640510108321995790e-08,3.738902273411779603e-08,3.837294438501563417e-08,3.935686603591347230e-08,4.034078768681131043e-08,4.132470933770914856e-08,4.230863098860698669e-08,4.329255263950482482e-08,4.427647429040266295e-08,4.526039594130050108e-08,4.624431759219833921e-08,4.722823924309617734e-08,4.821216089399401547e-08,4.919608254489185361e-08,5.018000419578969174e-08,5.116392584668752987e-08,5.214784749758536800e-08,5.313176914848320613e-08,5.411569079938104426e-08,5.509961245027888239e-08,5.608353410117672052e-08,5.706745575207455865e-08,5.805137740297239678e-08,5.903529905387023491e-08,6.001922070476807966e-08,6.100314235566592441e-08,6.198706400656376916e-08 +0.000000000000000000e+00,9.098296380760493423e-10,1.819659276152098685e-09,2.729488914228147924e-09,3.639318552304196956e-09,4.549148190380245988e-09,5.458977828456295020e-09,6.368807466532344052e-09,7.278637104608393084e-09,8.188466742684442116e-09,9.098296380760491975e-09,1.000812601883654183e-08,1.091795565691259169e-08,1.182778529498864155e-08,1.273761493306469141e-08,1.364744457114074127e-08,1.455727420921679113e-08,1.546710384729283934e-08,1.637693348536888754e-08,1.728676312344493575e-08,1.819659276152098395e-08,1.910642239959703216e-08,2.001625203767308036e-08,2.092608167574912857e-08,2.183591131382517677e-08,2.274574095190122498e-08,2.365557058997727318e-08,2.456540022805332139e-08,2.547522986612936959e-08,2.638505950420541780e-08,2.729488914228146600e-08,2.820471878035751421e-08,2.911454841843356241e-08,3.002437805650961061e-08,3.093420769458565882e-08,3.184403733266170702e-08,3.275386697073775523e-08,3.366369660881380343e-08,3.457352624688985164e-08,3.548335588496589984e-08,3.639318552304194805e-08,3.730301516111799625e-08,3.821284479919404446e-08,3.912267443727009266e-08,4.003250407534614087e-08,4.094233371342218907e-08,4.185216335149823728e-08,4.276199298957428548e-08,4.367182262765033369e-08,4.458165226572638189e-08,4.549148190380243010e-08,4.640131154187847830e-08,4.731114117995452651e-08,4.822097081803057471e-08,4.913080045610662292e-08,5.004063009418267112e-08,5.095045973225871933e-08,5.186028937033476753e-08,5.277011900841081574e-08,5.367994864648686394e-08,5.458977828456291215e-08,5.549960792263896035e-08,5.640943756071500856e-08,5.731926719879105676e-08 +0.000000000000000000e+00,-8.741271559134522443e-10,-1.748254311826904489e-09,-2.622381467740356733e-09,-3.496508623653808977e-09,-4.370635779567261222e-09,-5.244762935480713466e-09,-6.118890091394165710e-09,-6.993017247307617954e-09,-7.867144403221071026e-09,-8.741271559134524097e-09,-9.615398715047977169e-09,-1.048952587096143024e-08,-1.136365302687488331e-08,-1.223778018278833638e-08,-1.311190733870178945e-08,-1.398603449461524253e-08,-1.486016165052869560e-08,-1.573428880644214867e-08,-1.660841596235560174e-08,-1.748254311826905481e-08,-1.835667027418250788e-08,-1.923079743009596096e-08,-2.010492458600941403e-08,-2.097905174192286710e-08,-2.185317889783632017e-08,-2.272730605374977324e-08,-2.360143320966322631e-08,-2.447556036557667938e-08,-2.534968752149013246e-08,-2.622381467740358553e-08,-2.709794183331703860e-08,-2.797206898923049167e-08,-2.884619614514394474e-08,-2.972032330105739781e-08,-3.059445045697085419e-08,-3.146857761288431057e-08,-3.234270476879776695e-08,-3.321683192471122333e-08,-3.409095908062467971e-08,-3.496508623653813609e-08,-3.583921339245159247e-08,-3.671334054836504886e-08,-3.758746770427850524e-08,-3.846159486019196162e-08,-3.933572201610541800e-08,-4.020984917201887438e-08,-4.108397632793233076e-08,-4.195810348384578714e-08,-4.283223063975924352e-08,-4.370635779567269990e-08,-4.458048495158615628e-08,-4.545461210749961266e-08,-4.632873926341306904e-08,-4.720286641932652542e-08,-4.807699357523998180e-08,-4.895112073115343818e-08,-4.982524788706689456e-08,-5.069937504298035094e-08,-5.157350219889380732e-08,-5.244762935480726370e-08,-5.332175651072072008e-08,-5.419588366663417646e-08,-5.507001082254763284e-08 +0.000000000000000000e+00,-9.147402658949556857e-10,-1.829480531789911371e-09,-2.744220797684867160e-09,-3.658961063579823156e-09,-4.573701329474778739e-09,-5.488441595369734321e-09,-6.403181861264689903e-09,-7.317922127159645486e-09,-8.232662393054601068e-09,-9.147402658949557477e-09,-1.006214292484451389e-08,-1.097688319073947030e-08,-1.189162345663442671e-08,-1.280636372252938312e-08,-1.372110398842433952e-08,-1.463584425431929593e-08,-1.555058452021425234e-08,-1.646532478610920875e-08,-1.738006505200416516e-08,-1.829480531789912157e-08,-1.920954558379407798e-08,-2.012428584968903439e-08,-2.103902611558399080e-08,-2.195376638147894721e-08,-2.286850664737390362e-08,-2.378324691326886003e-08,-2.469798717916381644e-08,-2.561272744505877285e-08,-2.652746771095372926e-08,-2.744220797684868567e-08,-2.835694824274364208e-08,-2.927168850863859849e-08,-3.018642877453355159e-08,-3.110116904042850469e-08,-3.201590930632345779e-08,-3.293064957221841089e-08,-3.384538983811336399e-08,-3.476013010400831709e-08,-3.567487036990327019e-08,-3.658961063579822329e-08,-3.750435090169317639e-08,-3.841909116758812949e-08,-3.933383143348308259e-08,-4.024857169937803570e-08,-4.116331196527298880e-08,-4.207805223116794190e-08,-4.299279249706289500e-08,-4.390753276295784810e-08,-4.482227302885280120e-08,-4.573701329474775430e-08,-4.665175356064270740e-08,-4.756649382653766050e-08,-4.848123409243261360e-08,-4.939597435832756670e-08,-5.031071462422251980e-08,-5.122545489011747290e-08,-5.214019515601242600e-08,-5.305493542190737911e-08,-5.396967568780233221e-08,-5.488441595369728531e-08,-5.579915621959223841e-08,-5.671389648548719151e-08,-5.762863675138214461e-08 +0.000000000000000000e+00,-9.355743796518948704e-10,-1.871148759303789741e-09,-2.806723138955684818e-09,-3.742297518607580309e-09,-4.677871898259475800e-09,-5.613446277911371291e-09,-6.549020657563266781e-09,-7.484595037215162272e-09,-8.420169416867057763e-09,-9.355743796518953254e-09,-1.029131817617084874e-08,-1.122689255582274424e-08,-1.216246693547463973e-08,-1.309804131512653522e-08,-1.403361569477843071e-08,-1.496919007443032785e-08,-1.590476445408222665e-08,-1.684033883373412545e-08,-1.777591321338602425e-08,-1.871148759303792305e-08,-1.964706197268982185e-08,-2.058263635234172065e-08,-2.151821073199361945e-08,-2.245378511164551825e-08,-2.338935949129741705e-08,-2.432493387094931585e-08,-2.526050825060121465e-08,-2.619608263025311345e-08,-2.713165700990501225e-08,-2.806723138955691105e-08,-2.900280576920880985e-08,-2.993838014886070865e-08,-3.087395452851260745e-08,-3.180952890816450625e-08,-3.274510328781640504e-08,-3.368067766746830384e-08,-3.461625204712020264e-08,-3.555182642677210144e-08,-3.648740080642400024e-08,-3.742297518607589904e-08,-3.835854956572779784e-08,-3.929412394537969664e-08,-4.022969832503159544e-08,-4.116527270468349424e-08,-4.210084708433539304e-08,-4.303642146398729184e-08,-4.397199584363919064e-08,-4.490757022329108944e-08,-4.584314460294298824e-08,-4.677871898259488704e-08,-4.771429336224678584e-08,-4.864986774189868464e-08,-4.958544212155058344e-08,-5.052101650120248224e-08,-5.145659088085438104e-08,-5.239216526050627984e-08,-5.332773964015817864e-08,-5.426331401981007743e-08,-5.519888839946197623e-08,-5.613446277911387503e-08,-5.707003715876577383e-08,-5.800561153841767263e-08,-5.894118591806957143e-08 +0.000000000000000000e+00,-9.839216508223456991e-10,-1.967843301644691398e-09,-2.951764952467037304e-09,-3.935686603289383624e-09,-4.919608254111729943e-09,-5.903529904934076263e-09,-6.887451555756422582e-09,-7.871373206578768901e-09,-8.855294857401115221e-09,-9.839216508223461540e-09,-1.082313815904580786e-08,-1.180705980986815418e-08,-1.279098146069050050e-08,-1.377490311151284682e-08,-1.475882476233519314e-08,-1.574274641315754111e-08,-1.672666806397988743e-08,-1.771058971480223375e-08,-1.869451136562458007e-08,-1.967843301644692639e-08,-2.066235466726927271e-08,-2.164627631809161903e-08,-2.263019796891396535e-08,-2.361411961973631167e-08,-2.459804127055865799e-08,-2.558196292138100431e-08,-2.656588457220335063e-08,-2.754980622302569695e-08,-2.853372787384804326e-08,-2.951764952467038958e-08,-3.050157117549273590e-08,-3.148549282631508222e-08,-3.246941447713742854e-08,-3.345333612795977486e-08,-3.443725777878212118e-08,-3.542117942960446750e-08,-3.640510108042681382e-08,-3.738902273124916014e-08,-3.837294438207150646e-08,-3.935686603289385278e-08,-4.034078768371619910e-08,-4.132470933453854542e-08,-4.230863098536089174e-08,-4.329255263618323806e-08,-4.427647428700558438e-08,-4.526039593782793070e-08,-4.624431758865027702e-08,-4.722823923947262334e-08,-4.821216089029496965e-08,-4.919608254111731597e-08,-5.018000419193966229e-08,-5.116392584276200861e-08,-5.214784749358435493e-08,-5.313176914440670125e-08,-5.411569079522904757e-08,-5.509961244605139389e-08,-5.608353409687374021e-08,-5.706745574769608653e-08,-5.805137739851843285e-08,-5.903529904934077917e-08,-6.001922070016313211e-08,-6.100314235098548504e-08,-6.198706400180783798e-08 +0.000000000000000000e+00,-9.098296379838121900e-10,-1.819659275967624380e-09,-2.729488913951436570e-09,-3.639318551935248760e-09,-4.549148189919061363e-09,-5.458977827902873967e-09,-6.368807465886686570e-09,-7.278637103870499174e-09,-8.188466741854311778e-09,-9.098296379838124381e-09,-1.000812601782193698e-08,-1.091795565580574959e-08,-1.182778529378956219e-08,-1.273761493177337480e-08,-1.364744456975718740e-08,-1.455727420774100000e-08,-1.546710384572481261e-08,-1.637693348370862356e-08,-1.728676312169243450e-08,-1.819659275967624545e-08,-1.910642239766005640e-08,-2.001625203564386735e-08,-2.092608167362767830e-08,-2.183591131161148925e-08,-2.274574094959530020e-08,-2.365557058757911115e-08,-2.456540022556292210e-08,-2.547522986354673305e-08,-2.638505950153054400e-08,-2.729488913951435495e-08,-2.820471877749816589e-08,-2.911454841548197684e-08,-3.002437805346579110e-08,-3.093420769144960536e-08,-3.184403732943341962e-08,-3.275386696741723388e-08,-3.366369660540104813e-08,-3.457352624338486239e-08,-3.548335588136867665e-08,-3.639318551935249091e-08,-3.730301515733630516e-08,-3.821284479532011942e-08,-3.912267443330393368e-08,-4.003250407128774794e-08,-4.094233370927156220e-08,-4.185216334725537645e-08,-4.276199298523919071e-08,-4.367182262322300497e-08,-4.458165226120681923e-08,-4.549148189919063349e-08,-4.640131153717444774e-08,-4.731114117515826200e-08,-4.822097081314207626e-08,-4.913080045112589052e-08,-5.004063008910970478e-08,-5.095045972709351903e-08,-5.186028936507733329e-08,-5.277011900306114755e-08,-5.367994864104496181e-08,-5.458977827902877607e-08,-5.549960791701259032e-08,-5.640943755499640458e-08,-5.731926719298021884e-08 +0.000000000000000000e+00,7.849332175966349713e-10,1.569866435193269943e-09,2.354799652789904914e-09,3.139732870386539885e-09,3.924666087983174856e-09,4.709599305579809828e-09,5.494532523176444799e-09,6.279465740773079770e-09,7.064398958369714741e-09,7.849332175966349713e-09,8.634265393562984684e-09,9.419198611159619655e-09,1.020413182875625463e-08,1.098906504635288960e-08,1.177399826394952457e-08,1.255893148154615954e-08,1.334386469914279451e-08,1.412879791673942948e-08,1.491373113433606445e-08,1.569866435193269943e-08,1.648359756952933440e-08,1.726853078712596937e-08,1.805346400472260434e-08,1.883839722231923931e-08,1.962333043991587428e-08,2.040826365751250925e-08,2.119319687510914422e-08,2.197813009270577920e-08,2.276306331030241417e-08,2.354799652789904914e-08,2.433292974549568411e-08,2.511786296309231908e-08,2.590279618068895405e-08,2.668772939828558902e-08,2.747266261588222399e-08,2.825759583347885897e-08,2.904252905107549394e-08,2.982746226867212891e-08,3.061239548626876388e-08,3.139732870386539885e-08,3.218226192146203382e-08,3.296719513905866879e-08,3.375212835665530376e-08,3.453706157425193874e-08,3.532199479184857371e-08,3.610692800944520868e-08,3.689186122704184365e-08,3.767679444463847862e-08,3.846172766223511359e-08,3.924666087983174856e-08,4.003159409742838353e-08,4.081652731502501851e-08,4.160146053262165348e-08,4.238639375021828845e-08,4.317132696781492342e-08,4.395626018541155839e-08,4.474119340300819336e-08,4.552612662060482833e-08,4.631105983820146330e-08,4.709599305579809828e-08,4.788092627339473325e-08,4.866585949099136822e-08,4.945079270858800319e-08 +0.000000000000000000e+00,8.118086913988002261e-10,1.623617382797600452e-09,2.435426074196400782e-09,3.247234765595201318e-09,4.059043456994002268e-09,4.870852148392803218e-09,5.682660839791604168e-09,6.494469531190405118e-09,7.306278222589206068e-09,8.118086913988007845e-09,8.929895605386809622e-09,9.741704296785611399e-09,1.055351298818441318e-08,1.136532167958321495e-08,1.217713037098201673e-08,1.298893906238081851e-08,1.380074775377962028e-08,1.461255644517842206e-08,1.542436513657722384e-08,1.623617382797602562e-08,1.704798251937482739e-08,1.785979121077362917e-08,1.867159990217243095e-08,1.948340859357123272e-08,2.029521728497003450e-08,2.110702597636883628e-08,2.191883466776763806e-08,2.273064335916643983e-08,2.354245205056524161e-08,2.435426074196404339e-08,2.516606943336284516e-08,2.597787812476164694e-08,2.678968681616044872e-08,2.760149550755925049e-08,2.841330419895805227e-08,2.922511289035685405e-08,3.003692158175565913e-08,3.084873027315446753e-08,3.166053896455327592e-08,3.247234765595208432e-08,3.328415634735089271e-08,3.409596503874970111e-08,3.490777373014850950e-08,3.571958242154731790e-08,3.653139111294612629e-08,3.734319980434493469e-08,3.815500849574374308e-08,3.896681718714255147e-08,3.977862587854135987e-08,4.059043456994016826e-08,4.140224326133897666e-08,4.221405195273778505e-08,4.302586064413659345e-08,4.383766933553540184e-08,4.464947802693421024e-08,4.546128671833301863e-08,4.627309540973182703e-08,4.708490410113063542e-08,4.789671279252944381e-08,4.870852148392825221e-08,4.952033017532706060e-08,5.033213886672586900e-08,5.114394755812467739e-08 +0.000000000000000000e+00,8.257266419405050489e-10,1.651453283881010098e-09,2.477179925821515147e-09,3.302906567762020196e-09,4.128633209702524831e-09,4.954359851643029466e-09,5.780086493583534102e-09,6.605813135524038737e-09,7.431539777464543372e-09,8.257266419405048008e-09,9.082993061345552643e-09,9.908719703286057278e-09,1.073444634522656191e-08,1.156017298716706655e-08,1.238589962910757118e-08,1.321162627104807582e-08,1.403735291298858045e-08,1.486307955492908509e-08,1.568880619686958807e-08,1.651453283881009271e-08,1.734025948075059734e-08,1.816598612269110198e-08,1.899171276463160661e-08,1.981743940657211125e-08,2.064316604851261588e-08,2.146889269045312052e-08,2.229461933239362515e-08,2.312034597433412979e-08,2.394607261627463442e-08,2.477179925821513906e-08,2.559752590015564370e-08,2.642325254209614833e-08,2.724897918403665297e-08,2.807470582597715760e-08,2.890043246791766224e-08,2.972615910985816687e-08,3.055188575179867151e-08,3.137761239373917614e-08,3.220333903567968078e-08,3.302906567762018541e-08,3.385479231956069005e-08,3.468051896150119468e-08,3.550624560344169932e-08,3.633197224538220395e-08,3.715769888732270859e-08,3.798342552926321322e-08,3.880915217120371786e-08,3.963487881314422250e-08,4.046060545508472713e-08,4.128633209702523177e-08,4.211205873896573640e-08,4.293778538090624104e-08,4.376351202284674567e-08,4.458923866478725031e-08,4.541496530672775494e-08,4.624069194866825958e-08,4.706641859060876421e-08,4.789214523254926885e-08,4.871787187448977348e-08,4.954359851643027812e-08,5.036932515837078275e-08,5.119505180031128739e-08,5.202077844225179203e-08 +0.000000000000000000e+00,8.587086697584207596e-10,1.717417339516841519e-09,2.576126009275262072e-09,3.434834679033682625e-09,4.293543348792103178e-09,5.152252018550524144e-09,6.010960688308945111e-09,6.869669358067366077e-09,7.728378027825786216e-09,8.587086697584206356e-09,9.445795367342626495e-09,1.030450403710104663e-08,1.116321270685946677e-08,1.202192137661788691e-08,1.288063004637630705e-08,1.373933871613472719e-08,1.459804738589314733e-08,1.545675605565156582e-08,1.631546472540998430e-08,1.717417339516840279e-08,1.803288206492682127e-08,1.889159073468523975e-08,1.975029940444365824e-08,2.060900807420207672e-08,2.146771674396049521e-08,2.232642541371891369e-08,2.318513408347733218e-08,2.404384275323575066e-08,2.490255142299416915e-08,2.576126009275258763e-08,2.661996876251100612e-08,2.747867743226942460e-08,2.833738610202784309e-08,2.919609477178626157e-08,3.005480344154468337e-08,3.091351211130310516e-08,3.177222078106152695e-08,3.263092945081994875e-08,3.348963812057837054e-08,3.434834679033679234e-08,3.520705546009521413e-08,3.606576412985363592e-08,3.692447279961205772e-08,3.778318146937047951e-08,3.864189013912890130e-08,3.950059880888732310e-08,4.035930747864574489e-08,4.121801614840416668e-08,4.207672481816258848e-08,4.293543348792101027e-08,4.379414215767943207e-08,4.465285082743785386e-08,4.551155949719627565e-08,4.637026816695469745e-08,4.722897683671311924e-08,4.808768550647154103e-08,4.894639417622996283e-08,4.980510284598838462e-08,5.066381151574680641e-08,5.152252018550522821e-08,5.238122885526365000e-08,5.323993752502207179e-08,5.409864619478049359e-08 +0.000000000000000000e+00,8.108145617011015422e-10,1.621629123402203084e-09,2.432443685103304627e-09,3.243258246804406169e-09,4.054072808505507297e-09,4.864887370206608426e-09,5.675701931907709555e-09,6.486516493608810683e-09,7.297331055309911812e-09,8.108145617011012940e-09,8.918960178712114069e-09,9.729774740413215198e-09,1.054058930211431633e-08,1.135140386381541745e-08,1.216221842551651858e-08,1.297303298721761971e-08,1.378384754891872084e-08,1.459466211061982197e-08,1.540547667232092475e-08,1.621629123402202919e-08,1.702710579572313363e-08,1.783792035742423806e-08,1.864873491912534250e-08,1.945954948082644694e-08,2.027036404252755138e-08,2.108117860422865581e-08,2.189199316592976025e-08,2.270280772763086469e-08,2.351362228933196913e-08,2.432443685103307356e-08,2.513525141273417800e-08,2.594606597443528244e-08,2.675688053613638687e-08,2.756769509783749131e-08,2.837850965953859575e-08,2.918932422123970019e-08,3.000013878294080462e-08,3.081095334464190906e-08,3.162176790634301350e-08,3.243258246804411794e-08,3.324339702974522237e-08,3.405421159144632681e-08,3.486502615314743125e-08,3.567584071484853569e-08,3.648665527654964012e-08,3.729746983825074456e-08,3.810828439995184900e-08,3.891909896165295343e-08,3.972991352335405787e-08,4.054072808505516231e-08,4.135154264675626675e-08,4.216235720845737118e-08,4.297317177015847562e-08,4.378398633185958006e-08,4.459480089356068450e-08,4.540561545526178893e-08,4.621643001696289337e-08,4.702724457866399781e-08,4.783805914036510225e-08,4.864887370206620668e-08,4.945968826376731112e-08,5.027050282546841556e-08,5.108131738716951999e-08 +0.000000000000000000e+00,-7.849332174759522150e-10,-1.569866434951904430e-09,-2.354799652427856645e-09,-3.139732869903808860e-09,-3.924666087379761489e-09,-4.709599304855714117e-09,-5.494532522331666746e-09,-6.279465739807619374e-09,-7.064398957283572003e-09,-7.849332174759524632e-09,-8.634265392235477260e-09,-9.419198609711429889e-09,-1.020413182718738252e-08,-1.098906504466333515e-08,-1.177399826213928777e-08,-1.255893147961524040e-08,-1.334386469709119303e-08,-1.412879791456714566e-08,-1.491373113204309994e-08,-1.569866434951905257e-08,-1.648359756699500520e-08,-1.726853078447095783e-08,-1.805346400194691046e-08,-1.883839721942286309e-08,-1.962333043689881572e-08,-2.040826365437476834e-08,-2.119319687185072097e-08,-2.197813008932667360e-08,-2.276306330680262623e-08,-2.354799652427857886e-08,-2.433292974175453149e-08,-2.511786295923048412e-08,-2.590279617670643674e-08,-2.668772939418238937e-08,-2.747266261165834200e-08,-2.825759582913429463e-08,-2.904252904661024726e-08,-2.982746226408619989e-08,-3.061239548156215252e-08,-3.139732869903810514e-08,-3.218226191651405777e-08,-3.296719513399001040e-08,-3.375212835146596303e-08,-3.453706156894191566e-08,-3.532199478641786829e-08,-3.610692800389382092e-08,-3.689186122136977354e-08,-3.767679443884572617e-08,-3.846172765632167880e-08,-3.924666087379763143e-08,-4.003159409127358406e-08,-4.081652730874953669e-08,-4.160146052622548932e-08,-4.238639374370144194e-08,-4.317132696117739457e-08,-4.395626017865334720e-08,-4.474119339612929983e-08,-4.552612661360525246e-08,-4.631105983108120509e-08,-4.709599304855715772e-08,-4.788092626603311034e-08,-4.866585948350906297e-08,-4.945079270098501560e-08 +0.000000000000000000e+00,-8.118086912750495604e-10,-1.623617382550099121e-09,-2.435426073825148474e-09,-3.247234765100197828e-09,-4.059043456375247182e-09,-4.870852147650296949e-09,-5.682660838925346716e-09,-6.494469530200396483e-09,-7.306278221475446250e-09,-8.118086912750496018e-09,-8.929895604025544958e-09,-9.741704295300593898e-09,-1.055351298657564284e-08,-1.136532167785069178e-08,-1.217713036912574072e-08,-1.298893906040078966e-08,-1.380074775167583860e-08,-1.461255644295088754e-08,-1.542436513422593648e-08,-1.623617382550098542e-08,-1.704798251677603436e-08,-1.785979120805108330e-08,-1.867159989932613224e-08,-1.948340859060118118e-08,-2.029521728187623012e-08,-2.110702597315127906e-08,-2.191883466442632800e-08,-2.273064335570137694e-08,-2.354245204697642588e-08,-2.435426073825147482e-08,-2.516606942952652376e-08,-2.597787812080157270e-08,-2.678968681207662164e-08,-2.760149550335167058e-08,-2.841330419462671952e-08,-2.922511288590176846e-08,-3.003692157717681740e-08,-3.084873026845186634e-08,-3.166053895972691528e-08,-3.247234765100196422e-08,-3.328415634227701316e-08,-3.409596503355206210e-08,-3.490777372482711104e-08,-3.571958241610215998e-08,-3.653139110737720892e-08,-3.734319979865225786e-08,-3.815500848992730680e-08,-3.896681718120235574e-08,-3.977862587247740468e-08,-4.059043456375245362e-08,-4.140224325502750256e-08,-4.221405194630255150e-08,-4.302586063757760044e-08,-4.383766932885264938e-08,-4.464947802012769832e-08,-4.546128671140274726e-08,-4.627309540267779620e-08,-4.708490409395284514e-08,-4.789671278522789408e-08,-4.870852147650294302e-08,-4.952033016777799196e-08,-5.033213885905304090e-08,-5.114394755032808984e-08 +0.000000000000000000e+00,-8.257266418341952796e-10,-1.651453283668390559e-09,-2.477179925502585735e-09,-3.302906567336780705e-09,-4.128633209170975261e-09,-4.954359851005169816e-09,-5.780086492839364372e-09,-6.605813134673558928e-09,-7.431539776507753484e-09,-8.257266418341947213e-09,-9.082993060176140941e-09,-9.908719702010334670e-09,-1.073444634384452840e-08,-1.156017298567872213e-08,-1.238589962751291586e-08,-1.321162626934710958e-08,-1.403735291118130331e-08,-1.486307955301549704e-08,-1.568880619484969242e-08,-1.651453283668388781e-08,-1.734025947851808319e-08,-1.816598612035227857e-08,-1.899171276218647396e-08,-1.981743940402066934e-08,-2.064316604585486472e-08,-2.146889268768906011e-08,-2.229461932952325549e-08,-2.312034597135745087e-08,-2.394607261319164625e-08,-2.477179925502584164e-08,-2.559752589686003702e-08,-2.642325253869423240e-08,-2.724897918052842779e-08,-2.807470582236262317e-08,-2.890043246419681855e-08,-2.972615910603101394e-08,-3.055188574786520932e-08,-3.137761238969940470e-08,-3.220333903153360008e-08,-3.302906567336779547e-08,-3.385479231520199085e-08,-3.468051895703618623e-08,-3.550624559887038162e-08,-3.633197224070457700e-08,-3.715769888253877238e-08,-3.798342552437296777e-08,-3.880915216620716315e-08,-3.963487880804135853e-08,-4.046060544987555391e-08,-4.128633209170974930e-08,-4.211205873354394468e-08,-4.293778537537814006e-08,-4.376351201721233545e-08,-4.458923865904653083e-08,-4.541496530088072621e-08,-4.624069194271492160e-08,-4.706641858454911698e-08,-4.789214522638331236e-08,-4.871787186821750774e-08,-4.954359851005170313e-08,-5.036932515188589851e-08,-5.119505179372009389e-08,-5.202077843555428928e-08 +0.000000000000000000e+00,-8.587086696500890507e-10,-1.717417339300178101e-09,-2.576126008950266945e-09,-3.434834678600355789e-09,-4.293543348250444633e-09,-5.152252017900533891e-09,-6.010960687550623148e-09,-6.869669357200712406e-09,-7.728378026850801663e-09,-8.587086696500890921e-09,-9.445795366150980178e-09,-1.030450403580106944e-08,-1.116321270545115869e-08,-1.202192137510124795e-08,-1.288063004475133721e-08,-1.373933871440142647e-08,-1.459804738405151572e-08,-1.545675605370160333e-08,-1.631546472335169093e-08,-1.717417339300177853e-08,-1.803288206265186614e-08,-1.889159073230195374e-08,-1.975029940195204134e-08,-2.060900807160212895e-08,-2.146771674125221655e-08,-2.232642541090230415e-08,-2.318513408055239175e-08,-2.404384275020247936e-08,-2.490255141985256696e-08,-2.576126008950265456e-08,-2.661996875915274217e-08,-2.747867742880282977e-08,-2.833738609845291737e-08,-2.919609476810300498e-08,-3.005480343775309258e-08,-3.091351210740318018e-08,-3.177222077705326779e-08,-3.263092944670335539e-08,-3.348963811635344299e-08,-3.434834678600353060e-08,-3.520705545565361820e-08,-3.606576412530370580e-08,-3.692447279495379341e-08,-3.778318146460388101e-08,-3.864189013425396861e-08,-3.950059880390405621e-08,-4.035930747355414382e-08,-4.121801614320423142e-08,-4.207672481285431902e-08,-4.293543348250440663e-08,-4.379414215215449423e-08,-4.465285082180458183e-08,-4.551155949145466944e-08,-4.637026816110475704e-08,-4.722897683075484464e-08,-4.808768550040493225e-08,-4.894639417005501985e-08,-4.980510283970510745e-08,-5.066381150935519506e-08,-5.152252017900528266e-08,-5.238122884865537026e-08,-5.323993751830545787e-08,-5.409864618795554547e-08 +0.000000000000000000e+00,-8.108145615778724138e-10,-1.621629123155744828e-09,-2.432443684733617345e-09,-3.243258246311490069e-09,-4.054072807889362793e-09,-4.864887369467235517e-09,-5.675701931045108241e-09,-6.486516492622980965e-09,-7.297331054200853689e-09,-8.108145615778727240e-09,-8.918960177356601619e-09,-9.729774738934475997e-09,-1.054058930051235038e-08,-1.135140386209022475e-08,-1.216221842366809913e-08,-1.297303298524597351e-08,-1.378384754682384789e-08,-1.459466210840172227e-08,-1.540547666997959665e-08,-1.621629123155747102e-08,-1.702710579313534540e-08,-1.783792035471321978e-08,-1.864873491629109416e-08,-1.945954947786896854e-08,-2.027036403944684292e-08,-2.108117860102471729e-08,-2.189199316260259167e-08,-2.270280772418046605e-08,-2.351362228575834043e-08,-2.432443684733621481e-08,-2.513525140891408919e-08,-2.594606597049196356e-08,-2.675688053206983794e-08,-2.756769509364771232e-08,-2.837850965522558670e-08,-2.918932421680346108e-08,-3.000013877838133877e-08,-3.081095333995921314e-08,-3.162176790153708752e-08,-3.243258246311496190e-08,-3.324339702469283628e-08,-3.405421158627071066e-08,-3.486502614784858504e-08,-3.567584070942645941e-08,-3.648665527100433379e-08,-3.729746983258220817e-08,-3.810828439416008255e-08,-3.891909895573795693e-08,-3.972991351731583131e-08,-4.054072807889370568e-08,-4.135154264047158006e-08,-4.216235720204945444e-08,-4.297317176362732882e-08,-4.378398632520520320e-08,-4.459480088678307758e-08,-4.540561544836095196e-08,-4.621643000993882633e-08,-4.702724457151670071e-08,-4.783805913309457509e-08,-4.864887369467244947e-08,-4.945968825625032385e-08,-5.027050281782819823e-08,-5.108131737940607260e-08 +0.000000000000000000e+00,7.220149136777875115e-10,1.444029827355575023e-09,2.166044741033362535e-09,2.888059654711150046e-09,3.610074568388937558e-09,4.332089482066725069e-09,5.054104395744512581e-09,5.776119309422300092e-09,6.498134223100087604e-09,7.220149136777875115e-09,7.942164050455663454e-09,8.664178964133451793e-09,9.386193877811240131e-09,1.010820879148902847e-08,1.083022370516681681e-08,1.155223861884460515e-08,1.227425353252239349e-08,1.299626844620018182e-08,1.371828335987797016e-08,1.444029827355575850e-08,1.516231318723354684e-08,1.588432810091133353e-08,1.660634301458912021e-08,1.732835792826690689e-08,1.805037284194469358e-08,1.877238775562248026e-08,1.949440266930026695e-08,2.021641758297805363e-08,2.093843249665584032e-08,2.166044741033362700e-08,2.238246232401141368e-08,2.310447723768920037e-08,2.382649215136698705e-08,2.454850706504477374e-08,2.527052197872256042e-08,2.599253689240034711e-08,2.671455180607813379e-08,2.743656671975592047e-08,2.815858163343370716e-08,2.888059654711149384e-08,2.960261146078928053e-08,3.032462637446706721e-08,3.104664128814485390e-08,3.176865620182264058e-08,3.249067111550042727e-08,3.321268602917821395e-08,3.393470094285600063e-08,3.465671585653378732e-08,3.537873077021157400e-08,3.610074568388936069e-08,3.682276059756714737e-08,3.754477551124493406e-08,3.826679042492272074e-08,3.898880533860050742e-08,3.971082025227829411e-08,4.043283516595608079e-08,4.115485007963386748e-08,4.187686499331165416e-08,4.259887990698944085e-08,4.332089482066722753e-08,4.404290973434501421e-08,4.476492464802280090e-08,4.548693956170058758e-08 +0.000000000000000000e+00,7.364461583307612404e-10,1.472892316661522481e-09,2.209338474992283721e-09,2.945784633323044962e-09,3.682230791653806202e-09,4.418676949984567443e-09,5.155123108315329097e-09,5.891569266646090751e-09,6.628015424976852405e-09,7.364461583307614059e-09,8.100907741638375713e-09,8.837353899969136540e-09,9.573800058299897366e-09,1.031024621663065819e-08,1.104669237496141902e-08,1.178313853329217985e-08,1.251958469162294067e-08,1.325603084995370150e-08,1.399247700828446233e-08,1.472892316661522315e-08,1.546536932494598398e-08,1.620181548327674481e-08,1.693826164160750563e-08,1.767470779993826646e-08,1.841115395826902729e-08,1.914760011659978812e-08,1.988404627493054894e-08,2.062049243326130977e-08,2.135693859159207060e-08,2.209338474992283142e-08,2.282983090825359225e-08,2.356627706658435308e-08,2.430272322491511390e-08,2.503916938324587473e-08,2.577561554157663556e-08,2.651206169990739638e-08,2.724850785823815721e-08,2.798495401656891804e-08,2.872140017489967886e-08,2.945784633323043969e-08,3.019429249156119721e-08,3.093073864989195473e-08,3.166718480822271225e-08,3.240363096655346976e-08,3.314007712488422728e-08,3.387652328321498480e-08,3.461296944154574232e-08,3.534941559987649984e-08,3.608586175820725735e-08,3.682230791653801487e-08,3.755875407486877239e-08,3.829520023319952991e-08,3.903164639153028743e-08,3.976809254986104495e-08,4.050453870819180246e-08,4.124098486652255998e-08,4.197743102485331750e-08,4.271387718318407502e-08,4.345032334151483254e-08,4.418676949984559005e-08,4.492321565817634757e-08,4.565966181650710509e-08,4.639610797483786261e-08 +0.000000000000000000e+00,7.521193506215483551e-10,1.504238701243096710e-09,2.256358051864645065e-09,3.008477402486193420e-09,3.760596753107741776e-09,4.512716103729290131e-09,5.264835454350838486e-09,6.016954804972386841e-09,6.769074155593935196e-09,7.521193506215483551e-09,8.273312856837031906e-09,9.025432207458580261e-09,9.777551558080128616e-09,1.052967090870167697e-08,1.128179025932322533e-08,1.203390960994477368e-08,1.278602896056632204e-08,1.353814831118787039e-08,1.429026766180941875e-08,1.504238701243096710e-08,1.579450636305251380e-08,1.654662571367406050e-08,1.729874506429560720e-08,1.805086441491715391e-08,1.880298376553870061e-08,1.955510311616024731e-08,2.030722246678179401e-08,2.105934181740334071e-08,2.181146116802488741e-08,2.256358051864643411e-08,2.331569986926798081e-08,2.406781921988952751e-08,2.481993857051107421e-08,2.557205792113262091e-08,2.632417727175416761e-08,2.707629662237571431e-08,2.782841597299726101e-08,2.858053532361880772e-08,2.933265467424035442e-08,3.008477402486190112e-08,3.083689337548344782e-08,3.158901272610499452e-08,3.234113207672654122e-08,3.309325142734808792e-08,3.384537077796963462e-08,3.459749012859118132e-08,3.534960947921272802e-08,3.610172882983427472e-08,3.685384818045582142e-08,3.760596753107736812e-08,3.835808688169891483e-08,3.911020623232046153e-08,3.986232558294200823e-08,4.061444493356355493e-08,4.136656428418510163e-08,4.211868363480664833e-08,4.287080298542819503e-08,4.362292233604974173e-08,4.437504168667128843e-08,4.512716103729283513e-08,4.587928038791438183e-08,4.663139973853592853e-08,4.738351908915747523e-08 +0.000000000000000000e+00,7.726302902498318074e-10,1.545260580499663615e-09,2.317890870749495215e-09,3.090521160999326816e-09,3.863151451249158417e-09,4.635781741498990431e-09,5.408412031748822445e-09,6.181042321998654459e-09,6.953672612248486473e-09,7.726302902498318487e-09,8.498933192748151329e-09,9.271563482997984170e-09,1.004419377324781701e-08,1.081682406349764985e-08,1.158945435374748269e-08,1.236208464399731554e-08,1.313471493424714838e-08,1.390734522449698122e-08,1.467997551474681406e-08,1.545260580499664690e-08,1.622523609524647974e-08,1.699786638549631258e-08,1.777049667574614543e-08,1.854312696599597827e-08,1.931575725624581111e-08,2.008838754649564395e-08,2.086101783674547679e-08,2.163364812699530963e-08,2.240627841724514247e-08,2.317890870749497531e-08,2.395153899774480816e-08,2.472416928799464100e-08,2.549679957824447384e-08,2.626942986849430668e-08,2.704206015874413952e-08,2.781469044899397236e-08,2.858732073924380520e-08,2.935995102949363805e-08,3.013258131974347420e-08,3.090521160999331365e-08,3.167784190024315311e-08,3.245047219049299257e-08,3.322310248074283203e-08,3.399573277099267149e-08,3.476836306124251095e-08,3.554099335149235041e-08,3.631362364174218987e-08,3.708625393199202932e-08,3.785888422224186878e-08,3.863151451249170824e-08,3.940414480274154770e-08,4.017677509299138716e-08,4.094940538324122662e-08,4.172203567349106608e-08,4.249466596374090554e-08,4.326729625399074500e-08,4.403992654424058445e-08,4.481255683449042391e-08,4.558518712474026337e-08,4.635781741499010283e-08,4.713044770523994229e-08,4.790307799548978175e-08,4.867570828573962121e-08 +0.000000000000000000e+00,7.384226308170414986e-10,1.476845261634082997e-09,2.215267892451124599e-09,2.953690523268166408e-09,3.692113154085208217e-09,4.430535784902250025e-09,5.168958415719291834e-09,5.907381046536333643e-09,6.645803677353375452e-09,7.384226308170417261e-09,8.122648938987459069e-09,8.861071569804501705e-09,9.599494200621544341e-09,1.033791683143858698e-08,1.107633946225562961e-08,1.181476209307267225e-08,1.255318472388971489e-08,1.329160735470675752e-08,1.403002998552380016e-08,1.476845261634084279e-08,1.550687524715788543e-08,1.624529787797492806e-08,1.698372050879197070e-08,1.772214313960901334e-08,1.846056577042605597e-08,1.919898840124309861e-08,1.993741103206014124e-08,2.067583366287718388e-08,2.141425629369422652e-08,2.215267892451126915e-08,2.289110155532831179e-08,2.362952418614535442e-08,2.436794681696239706e-08,2.510636944777943970e-08,2.584479207859648233e-08,2.658321470941352497e-08,2.732163734023056760e-08,2.806005997104761024e-08,2.879848260186465288e-08,2.953690523268169551e-08,3.027532786349873815e-08,3.101375049431578409e-08,3.175217312513283004e-08,3.249059575594987598e-08,3.322901838676692193e-08,3.396744101758396787e-08,3.470586364840101382e-08,3.544428627921805976e-08,3.618270891003510571e-08,3.692113154085215165e-08,3.765955417166919760e-08,3.839797680248624354e-08,3.913639943330328948e-08,3.987482206412033543e-08,4.061324469493738137e-08,4.135166732575442732e-08,4.209008995657147326e-08,4.282851258738851921e-08,4.356693521820556515e-08,4.430535784902261110e-08,4.504378047983965704e-08,4.578220311065670299e-08,4.652062574147374893e-08 +0.000000000000000000e+00,-7.220149135307783881e-10,-1.444029827061556776e-09,-2.166044740592335061e-09,-2.888059654123113139e-09,-3.610074567653891217e-09,-4.332089481184669295e-09,-5.054104394715447786e-09,-5.776119308246226278e-09,-6.498134221777004769e-09,-7.220149135307783261e-09,-7.942164048838561752e-09,-8.664178962369340244e-09,-9.386193875900118735e-09,-1.010820878943089723e-08,-1.083022370296167572e-08,-1.155223861649245421e-08,-1.227425353002323270e-08,-1.299626844355401119e-08,-1.371828335708478968e-08,-1.444029827061556818e-08,-1.516231318414634667e-08,-1.588432809767712350e-08,-1.660634301120790034e-08,-1.732835792473867718e-08,-1.805037283826945402e-08,-1.877238775180023085e-08,-1.949440266533100769e-08,-2.021641757886178453e-08,-2.093843249239256136e-08,-2.166044740592333820e-08,-2.238246231945411504e-08,-2.310447723298489188e-08,-2.382649214651566871e-08,-2.454850706004644555e-08,-2.527052197357722239e-08,-2.599253688710799923e-08,-2.671455180063877606e-08,-2.743656671416955290e-08,-2.815858162770032974e-08,-2.888059654123110657e-08,-2.960261145476188341e-08,-3.032462636829266025e-08,-3.104664128182343378e-08,-3.176865619535420730e-08,-3.249067110888498083e-08,-3.321268602241575436e-08,-3.393470093594652789e-08,-3.465671584947730142e-08,-3.537873076300807495e-08,-3.610074567653884848e-08,-3.682276059006962200e-08,-3.754477550360039553e-08,-3.826679041713116906e-08,-3.898880533066194259e-08,-3.971082024419271612e-08,-4.043283515772348965e-08,-4.115485007125426317e-08,-4.187686498478503670e-08,-4.259887989831581023e-08,-4.332089481184658376e-08,-4.404290972537735729e-08,-4.476492463890813082e-08,-4.548693955243890435e-08 +0.000000000000000000e+00,-7.364461581777664313e-10,-1.472892316355532863e-09,-2.209338474533299397e-09,-2.945784632711066139e-09,-3.682230790888832880e-09,-4.418676949066599622e-09,-5.155123107244366777e-09,-5.891569265422133932e-09,-6.628015423599901087e-09,-7.364461581777668242e-09,-8.100907739955435397e-09,-8.837353898133202553e-09,-9.573800056310969708e-09,-1.031024621448873686e-08,-1.104669237266650402e-08,-1.178313853084427117e-08,-1.251958468902203833e-08,-1.325603084719980548e-08,-1.399247700537757264e-08,-1.472892316355533979e-08,-1.546536932173310529e-08,-1.620181547991087079e-08,-1.693826163808863630e-08,-1.767470779626640180e-08,-1.841115395444416730e-08,-1.914760011262193280e-08,-1.988404627079969830e-08,-2.062049242897746380e-08,-2.135693858715522930e-08,-2.209338474533299480e-08,-2.282983090351076030e-08,-2.356627706168852580e-08,-2.430272321986629130e-08,-2.503916937804405680e-08,-2.577561553622182230e-08,-2.651206169439958781e-08,-2.724850785257735331e-08,-2.798495401075511881e-08,-2.872140016893288431e-08,-2.945784632711064981e-08,-3.019429248528841531e-08,-3.093073864346618412e-08,-3.166718480164395293e-08,-3.240363095982172174e-08,-3.314007711799949055e-08,-3.387652327617725936e-08,-3.461296943435502817e-08,-3.534941559253279698e-08,-3.608586175071056579e-08,-3.682230790888833459e-08,-3.755875406706610340e-08,-3.829520022524387221e-08,-3.903164638342164102e-08,-3.976809254159940983e-08,-4.050453869977717864e-08,-4.124098485795494745e-08,-4.197743101613271626e-08,-4.271387717431048507e-08,-4.345032333248825388e-08,-4.418676949066602269e-08,-4.492321564884379150e-08,-4.565966180702156031e-08,-4.639610796519932912e-08 +0.000000000000000000e+00,-7.521193504873075916e-10,-1.504238700974615183e-09,-2.256358051461922672e-09,-3.008477401949229953e-09,-3.760596752436537648e-09,-4.512716102923845343e-09,-5.264835453411153038e-09,-6.016954803898460733e-09,-6.769074154385768428e-09,-7.521193504873075296e-09,-8.273312855360382164e-09,-9.025432205847689032e-09,-9.777551556334995900e-09,-1.052967090682230277e-08,-1.128179025730960964e-08,-1.203390960779691650e-08,-1.278602895828422337e-08,-1.353814830877153024e-08,-1.429026765925883711e-08,-1.504238700974614397e-08,-1.579450636023344919e-08,-1.654662571072075440e-08,-1.729874506120805962e-08,-1.805086441169536483e-08,-1.880298376218267004e-08,-1.955510311266997526e-08,-2.030722246315728047e-08,-2.105934181364458568e-08,-2.181146116413189090e-08,-2.256358051461919611e-08,-2.331569986510650132e-08,-2.406781921559380654e-08,-2.481993856608111175e-08,-2.557205791656841696e-08,-2.632417726705572218e-08,-2.707629661754302739e-08,-2.782841596803033260e-08,-2.858053531851763782e-08,-2.933265466900494303e-08,-3.008477401949224824e-08,-3.083689336997955346e-08,-3.158901272046685867e-08,-3.234113207095416389e-08,-3.309325142144146910e-08,-3.384537077192877431e-08,-3.459749012241607953e-08,-3.534960947290338474e-08,-3.610172882339068995e-08,-3.685384817387799517e-08,-3.760596752436530038e-08,-3.835808687485260559e-08,-3.911020622533991081e-08,-3.986232557582721602e-08,-4.061444492631452123e-08,-4.136656427680182645e-08,-4.211868362728913166e-08,-4.287080297777643687e-08,-4.362292232826374209e-08,-4.437504167875104730e-08,-4.512716102923835251e-08,-4.587928037972565773e-08,-4.663139973021296294e-08,-4.738351908070026815e-08 +0.000000000000000000e+00,-7.726302901112294239e-10,-1.545260580222458848e-09,-2.317890870333688065e-09,-3.090521160444917282e-09,-3.863151450556146499e-09,-4.635781740667376130e-09,-5.408412030778605761e-09,-6.181042320889835392e-09,-6.953672611001065022e-09,-7.726302901112294653e-09,-8.498933191223525111e-09,-9.271563481334755569e-09,-1.004419377144598603e-08,-1.081682406155721648e-08,-1.158945435166844694e-08,-1.236208464177967740e-08,-1.313471493189090786e-08,-1.390734522200213832e-08,-1.467997551211336877e-08,-1.545260580222459923e-08,-1.622523609233582969e-08,-1.699786638244706015e-08,-1.777049667255829061e-08,-1.854312696266952106e-08,-1.931575725278075152e-08,-2.008838754289198198e-08,-2.086101783300321244e-08,-2.163364812311444290e-08,-2.240627841322567335e-08,-2.317890870333690381e-08,-2.395153899344813427e-08,-2.472416928355936473e-08,-2.549679957367059519e-08,-2.626942986378182564e-08,-2.704206015389305610e-08,-2.781469044400428656e-08,-2.858732073411551702e-08,-2.935995102422674747e-08,-3.013258131433797462e-08,-3.090521160444920508e-08,-3.167784189456043554e-08,-3.245047218467166600e-08,-3.322310247478289646e-08,-3.399573276489412691e-08,-3.476836305500535737e-08,-3.554099334511658783e-08,-3.631362363522781829e-08,-3.708625392533904875e-08,-3.785888421545027920e-08,-3.863151450556150966e-08,-3.940414479567274012e-08,-4.017677508578397058e-08,-4.094940537589520103e-08,-4.172203566600643149e-08,-4.249466595611766195e-08,-4.326729624622889241e-08,-4.403992653634012287e-08,-4.481255682645135332e-08,-4.558518711656258378e-08,-4.635781740667381424e-08,-4.713044769678504470e-08,-4.790307798689627516e-08,-4.867570827700750561e-08 +0.000000000000000000e+00,-7.384226306651977113e-10,-1.476845261330395423e-09,-2.215267891995592927e-09,-2.953690522660790432e-09,-3.692113153325987936e-09,-4.430535783991185854e-09,-5.168958414656383772e-09,-5.907381045321581690e-09,-6.645803675986779608e-09,-7.384226306651977527e-09,-8.122648937317176272e-09,-8.861071567982375017e-09,-9.599494198647573762e-09,-1.033791682931277251e-08,-1.107633945997797125e-08,-1.181476209064317000e-08,-1.255318472130836874e-08,-1.329160735197356749e-08,-1.403002998263876623e-08,-1.476845261330396498e-08,-1.550687524396916372e-08,-1.624529787463436247e-08,-1.698372050529956122e-08,-1.772214313596475996e-08,-1.846056576662995871e-08,-1.919898839729515745e-08,-1.993741102796035620e-08,-2.067583365862555494e-08,-2.141425628929075369e-08,-2.215267891995595243e-08,-2.289110155062115118e-08,-2.362952418128634992e-08,-2.436794681195154867e-08,-2.510636944261674741e-08,-2.584479207328194616e-08,-2.658321470394714490e-08,-2.732163733461234365e-08,-2.806005996527754239e-08,-2.879848259594274114e-08,-2.953690522660793988e-08,-3.027532785727313863e-08,-3.101375048793834068e-08,-3.175217311860354274e-08,-3.249059574926874479e-08,-3.322901837993394685e-08,-3.396744101059914890e-08,-3.470586364126435095e-08,-3.544428627192955301e-08,-3.618270890259475506e-08,-3.692113153325995712e-08,-3.765955416392515917e-08,-3.839797679459036122e-08,-3.913639942525556328e-08,-3.987482205592076533e-08,-4.061324468658596739e-08,-4.135166731725116944e-08,-4.209008994791637149e-08,-4.282851257858157355e-08,-4.356693520924677560e-08,-4.430535783991197766e-08,-4.504378047057717971e-08,-4.578220310124238176e-08,-4.652062573190758382e-08 +0.000000000000000000e+00,6.717083210439070116e-10,1.343416642087814023e-09,2.015124963131720828e-09,2.686833284175627633e-09,3.358541605219534438e-09,4.030249926263441656e-09,4.701958247307348875e-09,5.373666568351256093e-09,6.045374889395163311e-09,6.717083210439070530e-09,7.388791531482977748e-09,8.060499852526884967e-09,8.732208173570792185e-09,9.403916494614699404e-09,1.007562481565860662e-08,1.074733313670251384e-08,1.141904145774642106e-08,1.209074977879032828e-08,1.276245809983423550e-08,1.343416642087814271e-08,1.410587474192204993e-08,1.477758306296595715e-08,1.544929138400986272e-08,1.612099970505376662e-08,1.679270802609767053e-08,1.746441634714157444e-08,1.813612466818547835e-08,1.880783298922938226e-08,1.947954131027328617e-08,2.015124963131719008e-08,2.082295795236109399e-08,2.149466627340499790e-08,2.216637459444890181e-08,2.283808291549280572e-08,2.350979123653670963e-08,2.418149955758061354e-08,2.485320787862451745e-08,2.552491619966842136e-08,2.619662452071232527e-08,2.686833284175622918e-08,2.754004116280013309e-08,2.821174948384403700e-08,2.888345780488794091e-08,2.955516612593184482e-08,3.022687444697574873e-08,3.089858276801965264e-08,3.157029108906355655e-08,3.224199941010746046e-08,3.291370773115136437e-08,3.358541605219526828e-08,3.425712437323917219e-08,3.492883269428307610e-08,3.560054101532698001e-08,3.627224933637088392e-08,3.694395765741478783e-08,3.761566597845869174e-08,3.828737429950259564e-08,3.895908262054649955e-08,3.963079094159040346e-08,4.030249926263430737e-08,4.097420758367821128e-08,4.164591590472211519e-08,4.231762422576601910e-08 +0.000000000000000000e+00,6.712839147162954020e-10,1.342567829432590804e-09,2.013851744148886413e-09,2.685135658865182022e-09,3.356419573581477630e-09,4.027703488297772826e-09,4.698987403014068021e-09,5.370271317730363216e-09,6.041555232446658411e-09,6.712839147162953606e-09,7.384123061879248802e-09,8.055406976595543997e-09,8.726690891311839192e-09,9.397974806028134387e-09,1.006925872074442958e-08,1.074054263546072478e-08,1.141182655017701997e-08,1.208311046489331517e-08,1.275439437960961036e-08,1.342567829432590556e-08,1.409696220904220075e-08,1.476824612375849595e-08,1.543953003847479114e-08,1.611081395319108468e-08,1.678209786790737823e-08,1.745338178262367177e-08,1.812466569733996531e-08,1.879594961205625885e-08,1.946723352677255239e-08,2.013851744148884593e-08,2.080980135620513947e-08,2.148108527092143301e-08,2.215236918563772655e-08,2.282365310035402009e-08,2.349493701507031363e-08,2.416622092978660717e-08,2.483750484450290072e-08,2.550878875921919426e-08,2.618007267393548780e-08,2.685135658865178134e-08,2.752264050336807488e-08,2.819392441808436842e-08,2.886520833280066196e-08,2.953649224751695550e-08,3.020777616223324904e-08,3.087906007694954258e-08,3.155034399166583612e-08,3.222162790638212966e-08,3.289291182109842321e-08,3.356419573581471675e-08,3.423547965053101029e-08,3.490676356524730383e-08,3.557804747996359737e-08,3.624933139467989091e-08,3.692061530939618445e-08,3.759189922411247799e-08,3.826318313882877153e-08,3.893446705354506507e-08,3.960575096826135861e-08,4.027703488297765216e-08,4.094831879769394570e-08,4.161960271241023924e-08,4.229088662712653278e-08 +0.000000000000000000e+00,6.965284877703844626e-10,1.393056975540768925e-09,2.089585463311153595e-09,2.786113951081538264e-09,3.482642438851922933e-09,4.179170926622307189e-09,4.875699414392691445e-09,5.572227902163075701e-09,6.268756389933459957e-09,6.965284877703844212e-09,7.661813365474228468e-09,8.358341853244612724e-09,9.054870341014996980e-09,9.751398828785381236e-09,1.044792731655576549e-08,1.114445580432614975e-08,1.184098429209653400e-08,1.253751277986691826e-08,1.323404126763730251e-08,1.393056975540768677e-08,1.462709824317807103e-08,1.532362673094845694e-08,1.602015521871884285e-08,1.671668370648922876e-08,1.741321219425961467e-08,1.810974068203000058e-08,1.880626916980038649e-08,1.950279765757077240e-08,2.019932614534115831e-08,2.089585463311154422e-08,2.159238312088193013e-08,2.228891160865231604e-08,2.298544009642270195e-08,2.368196858419308786e-08,2.437849707196347377e-08,2.507502555973385968e-08,2.577155404750424559e-08,2.646808253527463150e-08,2.716461102304501741e-08,2.786113951081540332e-08,2.855766799858578923e-08,2.925419648635617514e-08,2.995072497412656105e-08,3.064725346189694696e-08,3.134378194966733287e-08,3.204031043743771878e-08,3.273683892520810469e-08,3.343336741297849060e-08,3.412989590074887651e-08,3.482642438851926242e-08,3.552295287628964833e-08,3.621948136406003424e-08,3.691600985183042015e-08,3.761253833960080606e-08,3.830906682737119197e-08,3.900559531514157788e-08,3.970212380291196379e-08,4.039865229068234970e-08,4.109518077845273561e-08,4.179170926622312152e-08,4.248823775399350743e-08,4.318476624176389334e-08,4.388129472953427925e-08 +0.000000000000000000e+00,7.041766824840017060e-10,1.408353364968003412e-09,2.112530047452005325e-09,2.816706729936007238e-09,3.520883412420009150e-09,4.225060094904010649e-09,4.929236777388012149e-09,5.633413459872013648e-09,6.337590142356015147e-09,7.041766824840016646e-09,7.745943507324018145e-09,8.450120189808019645e-09,9.154296872292021144e-09,9.858473554776022643e-09,1.056265023726002414e-08,1.126682691974402564e-08,1.197100360222802714e-08,1.267518028471202864e-08,1.337935696719603014e-08,1.408353364968003164e-08,1.478771033216403314e-08,1.549188701464803629e-08,1.619606369713203944e-08,1.690024037961604260e-08,1.760441706210004575e-08,1.830859374458404890e-08,1.901277042706805206e-08,1.971694710955205521e-08,2.042112379203605837e-08,2.112530047452006152e-08,2.182947715700406467e-08,2.253365383948806783e-08,2.323783052197207098e-08,2.394200720445607413e-08,2.464618388694007729e-08,2.535036056942408044e-08,2.605453725190808359e-08,2.675871393439208675e-08,2.746289061687608990e-08,2.816706729936009305e-08,2.887124398184409621e-08,2.957542066432809936e-08,3.027959734681210582e-08,3.098377402929611229e-08,3.168795071178011875e-08,3.239212739426412521e-08,3.309630407674813167e-08,3.380048075923213814e-08,3.450465744171614460e-08,3.520883412420015106e-08,3.591301080668415752e-08,3.661718748916816398e-08,3.732136417165217045e-08,3.802554085413617691e-08,3.872971753662018337e-08,3.943389421910418983e-08,4.013807090158819630e-08,4.084224758407220276e-08,4.154642426655620922e-08,4.225060094904021568e-08,4.295477763152422214e-08,4.365895431400822861e-08,4.436313099649223507e-08 +0.000000000000000000e+00,6.779215175404748363e-10,1.355843035080949673e-09,2.033764552621424302e-09,2.711686070161898932e-09,3.389607587702373561e-09,4.067529105242848604e-09,4.745450622783323648e-09,5.423372140323798691e-09,6.101293657864273734e-09,6.779215175404748777e-09,7.457136692945223820e-09,8.135058210485698863e-09,8.812979728026173906e-09,9.490901245566648949e-09,1.016882276310712399e-08,1.084674428064759904e-08,1.152466579818807408e-08,1.220258731572854912e-08,1.288050883326902417e-08,1.355843035080949921e-08,1.423635186834997425e-08,1.491427338589045095e-08,1.559219490343092930e-08,1.627011642097140765e-08,1.694803793851188600e-08,1.762595945605236436e-08,1.830388097359284271e-08,1.898180249113332106e-08,1.965972400867379941e-08,2.033764552621427776e-08,2.101556704375475612e-08,2.169348856129523447e-08,2.237141007883571282e-08,2.304933159637619117e-08,2.372725311391666952e-08,2.440517463145714787e-08,2.508309614899762623e-08,2.576101766653810458e-08,2.643893918407858293e-08,2.711686070161906128e-08,2.779478221915953963e-08,2.847270373670001799e-08,2.915062525424049634e-08,2.982854677178097469e-08,3.050646828932145304e-08,3.118438980686193139e-08,3.186231132440240974e-08,3.254023284194288810e-08,3.321815435948336645e-08,3.389607587702384480e-08,3.457399739456432315e-08,3.525191891210480150e-08,3.592984042964527986e-08,3.660776194718575821e-08,3.728568346472623656e-08,3.796360498226671491e-08,3.864152649980719326e-08,3.931944801734767162e-08,3.999736953488814997e-08,4.067529105242862832e-08,4.135321256996910667e-08,4.203113408750958502e-08,4.270905560505006337e-08 +0.000000000000000000e+00,-6.717083208731650425e-10,-1.343416641746330085e-09,-2.015124962619495024e-09,-2.686833283492659756e-09,-3.358541604365824489e-09,-4.030249925238989221e-09,-4.701958246112153953e-09,-5.373666566985318685e-09,-6.045374887858483418e-09,-6.717083208731648150e-09,-7.388791529604812882e-09,-8.060499850477976787e-09,-8.732208171351140693e-09,-9.403916492224304598e-09,-1.007562481309746850e-08,-1.074733313397063241e-08,-1.141904145484379631e-08,-1.209074977571696022e-08,-1.276245809659012412e-08,-1.343416641746328803e-08,-1.410587473833645193e-08,-1.477758305920961584e-08,-1.544929138008277974e-08,-1.612099970095594365e-08,-1.679270802182910755e-08,-1.746441634270227146e-08,-1.813612466357543536e-08,-1.880783298444859927e-08,-1.947954130532176317e-08,-2.015124962619492708e-08,-2.082295794706809098e-08,-2.149466626794125489e-08,-2.216637458881441879e-08,-2.283808290968758270e-08,-2.350979123056074660e-08,-2.418149955143391051e-08,-2.485320787230707441e-08,-2.552491619318023832e-08,-2.619662451405340223e-08,-2.686833283492656613e-08,-2.754004115579973004e-08,-2.821174947667289394e-08,-2.888345779754605785e-08,-2.955516611841922175e-08,-3.022687443929238566e-08,-3.089858276016554625e-08,-3.157029108103870685e-08,-3.224199940191186744e-08,-3.291370772278502804e-08,-3.358541604365818864e-08,-3.425712436453134923e-08,-3.492883268540450983e-08,-3.560054100627767043e-08,-3.627224932715083102e-08,-3.694395764802399162e-08,-3.761566596889715222e-08,-3.828737428977031281e-08,-3.895908261064347341e-08,-3.963079093151663401e-08,-4.030249925238979460e-08,-4.097420757326295520e-08,-4.164591589413611579e-08,-4.231762421500927639e-08 +0.000000000000000000e+00,-6.712839145358976502e-10,-1.342567829071795300e-09,-2.013851743607692744e-09,-2.685135658143590187e-09,-3.356419572679487630e-09,-4.027703487215385487e-09,-4.698987401751283344e-09,-5.370271316287181201e-09,-6.041555230823079058e-09,-6.712839145358976915e-09,-7.384123059894874772e-09,-8.055406974430772629e-09,-8.726690888966669659e-09,-9.397974803502566689e-09,-1.006925871803846372e-08,-1.074054263257436075e-08,-1.141182654711025778e-08,-1.208311046164615481e-08,-1.275439437618205184e-08,-1.342567829071794887e-08,-1.409696220525384590e-08,-1.476824611978974293e-08,-1.543953003432563996e-08,-1.611081394886153533e-08,-1.678209786339743071e-08,-1.745338177793332608e-08,-1.812466569246922146e-08,-1.879594960700511683e-08,-1.946723352154101221e-08,-2.013851743607690758e-08,-2.080980135061280296e-08,-2.148108526514869834e-08,-2.215236917968459371e-08,-2.282365309422048909e-08,-2.349493700875638446e-08,-2.416622092329227984e-08,-2.483750483782817521e-08,-2.550878875236407059e-08,-2.618007266689996596e-08,-2.685135658143586134e-08,-2.752264049597175671e-08,-2.819392441050765209e-08,-2.886520832504354746e-08,-2.953649223957944284e-08,-3.020777615411533822e-08,-3.087906006865123359e-08,-3.155034398318712897e-08,-3.222162789772302434e-08,-3.289291181225891972e-08,-3.356419572679481509e-08,-3.423547964133071047e-08,-3.490676355586660584e-08,-3.557804747040250122e-08,-3.624933138493839659e-08,-3.692061529947429197e-08,-3.759189921401018735e-08,-3.826318312854608272e-08,-3.893446704308197810e-08,-3.960575095761787347e-08,-4.027703487215376885e-08,-4.094831878668966422e-08,-4.161960270122555960e-08,-4.229088661576145497e-08 +0.000000000000000000e+00,-6.965284876113030518e-10,-1.393056975222606104e-09,-2.089585462833909259e-09,-2.786113950445212621e-09,-3.482642438056515983e-09,-4.179170925667819345e-09,-4.875699413279122706e-09,-5.572227900890426068e-09,-6.268756388501729430e-09,-6.965284876113032792e-09,-7.661813363724336154e-09,-8.358341851335640343e-09,-9.054870338946944533e-09,-9.751398826558248722e-09,-1.044792731416955291e-08,-1.114445580178085710e-08,-1.184098428939216129e-08,-1.253751277700346548e-08,-1.323404126461476967e-08,-1.393056975222607386e-08,-1.462709823983737805e-08,-1.532362672744868223e-08,-1.602015521505998477e-08,-1.671668370267128730e-08,-1.741321219028258984e-08,-1.810974067789389237e-08,-1.880626916550519491e-08,-1.950279765311649744e-08,-2.019932614072779998e-08,-2.089585462833910251e-08,-2.159238311595040505e-08,-2.228891160356170758e-08,-2.298544009117301012e-08,-2.368196857878431265e-08,-2.437849706639561519e-08,-2.507502555400691772e-08,-2.577155404161822026e-08,-2.646808252922952279e-08,-2.716461101684082533e-08,-2.786113950445212786e-08,-2.855766799206343040e-08,-2.925419647967473293e-08,-2.995072496728603546e-08,-3.064725345489733800e-08,-3.134378194250864053e-08,-3.204031043011994307e-08,-3.273683891773124560e-08,-3.343336740534254814e-08,-3.412989589295385067e-08,-3.482642438056515321e-08,-3.552295286817645574e-08,-3.621948135578775828e-08,-3.691600984339906081e-08,-3.761253833101036335e-08,-3.830906681862166588e-08,-3.900559530623296842e-08,-3.970212379384427095e-08,-4.039865228145557349e-08,-4.109518076906687602e-08,-4.179170925667817856e-08,-4.248823774428948109e-08,-4.318476623190078363e-08,-4.388129471951208616e-08 +0.000000000000000000e+00,-7.041766823170958903e-10,-1.408353364634191781e-09,-2.112530046951287671e-09,-2.816706729268383561e-09,-3.520883411585479452e-09,-4.225060093902575342e-09,-4.929236776219670819e-09,-5.633413458536766295e-09,-6.337590140853861772e-09,-7.041766823170957249e-09,-7.745943505488052726e-09,-8.450120187805149029e-09,-9.154296870122245333e-09,-9.858473552439341637e-09,-1.056265023475643794e-08,-1.126682691707353425e-08,-1.197100359939063055e-08,-1.267518028170772685e-08,-1.337935696402482316e-08,-1.408353364634191946e-08,-1.478771032865901576e-08,-1.549188701097611207e-08,-1.619606369329321003e-08,-1.690024037561030798e-08,-1.760441705792740594e-08,-1.830859374024450390e-08,-1.901277042256160186e-08,-1.971694710487869982e-08,-2.042112378719579778e-08,-2.112530046951289573e-08,-2.182947715182999369e-08,-2.253365383414709165e-08,-2.323783051646418961e-08,-2.394200719878128757e-08,-2.464618388109838553e-08,-2.535036056341548348e-08,-2.605453724573258144e-08,-2.675871392804967940e-08,-2.746289061036677736e-08,-2.816706729268387532e-08,-2.887124397500097328e-08,-2.957542065731807123e-08,-3.027959733963516919e-08,-3.098377402195227046e-08,-3.168795070426937173e-08,-3.239212738658647299e-08,-3.309630406890357426e-08,-3.380048075122067553e-08,-3.450465743353777679e-08,-3.520883411585487806e-08,-3.591301079817197933e-08,-3.661718748048908059e-08,-3.732136416280618186e-08,-3.802554084512328313e-08,-3.872971752744038440e-08,-3.943389420975748566e-08,-4.013807089207458693e-08,-4.084224757439168820e-08,-4.154642425670878946e-08,-4.225060093902589073e-08,-4.295477762134299200e-08,-4.365895430366009326e-08,-4.436313098597719453e-08 +0.000000000000000000e+00,-6.779215173622766611e-10,-1.355843034724553322e-09,-2.033764552086829880e-09,-2.711686069449106231e-09,-3.389607586811382582e-09,-4.067529104173658933e-09,-4.745450621535935284e-09,-5.423372138898211635e-09,-6.101293656260487986e-09,-6.779215173622764337e-09,-7.457136690985040688e-09,-8.135058208347316211e-09,-8.812979725709591735e-09,-9.490901243071867259e-09,-1.016882276043414278e-08,-1.084674427779641831e-08,-1.152466579515869383e-08,-1.220258731252096935e-08,-1.288050882988324488e-08,-1.355843034724552040e-08,-1.423635186460779593e-08,-1.491427338197007145e-08,-1.559219489933234863e-08,-1.627011641669462581e-08,-1.694803793405690298e-08,-1.762595945141918016e-08,-1.830388096878145734e-08,-1.898180248614373452e-08,-1.965972400350601170e-08,-2.033764552086828887e-08,-2.101556703823056605e-08,-2.169348855559284323e-08,-2.237141007295512041e-08,-2.304933159031739759e-08,-2.372725310767967476e-08,-2.440517462504195194e-08,-2.508309614240422912e-08,-2.576101765976650630e-08,-2.643893917712878348e-08,-2.711686069449106066e-08,-2.779478221185333783e-08,-2.847270372921561501e-08,-2.915062524657789219e-08,-2.982854676394016937e-08,-3.050646828130244655e-08,-3.118438979866472372e-08,-3.186231131602700090e-08,-3.254023283338927808e-08,-3.321815435075155526e-08,-3.389607586811383244e-08,-3.457399738547610961e-08,-3.525191890283838679e-08,-3.592984042020066397e-08,-3.660776193756294115e-08,-3.728568345492521833e-08,-3.796360497228749551e-08,-3.864152648964977268e-08,-3.931944800701204986e-08,-3.999736952437432704e-08,-4.067529104173660422e-08,-4.135321255909888140e-08,-4.203113407646115857e-08,-4.270905559382343575e-08 +0.000000000000000000e+00,6.292324145307637154e-10,1.258464829061527431e-09,1.887697243592291250e-09,2.516929658123055275e-09,3.146162072653819301e-09,3.775394487184583326e-09,4.404626901715347352e-09,5.033859316246111378e-09,5.663091730776875403e-09,6.292324145307639429e-09,6.921556559838403455e-09,7.550788974369168307e-09,8.180021388899932333e-09,8.809253803430696359e-09,9.438486217961460384e-09,1.006771863249222441e-08,1.069695104702298844e-08,1.132618346155375246e-08,1.195541587608451649e-08,1.258464829061528051e-08,1.321388070514604454e-08,1.384311311967680856e-08,1.447234553420757259e-08,1.510157794873833661e-08,1.573081036326910064e-08,1.636004277779986467e-08,1.698927519233062869e-08,1.761850760686139272e-08,1.824774002139215674e-08,1.887697243592292077e-08,1.950620485045368479e-08,2.013543726498444882e-08,2.076466967951521285e-08,2.139390209404597687e-08,2.202313450857674090e-08,2.265236692310750492e-08,2.328159933763826895e-08,2.391083175216903297e-08,2.454006416669979700e-08,2.516929658123056102e-08,2.579852899576132505e-08,2.642776141029208908e-08,2.705699382482285310e-08,2.768622623935361713e-08,2.831545865388438115e-08,2.894469106841514518e-08,2.957392348294590920e-08,3.020315589747667323e-08,3.083238831200743725e-08,3.146162072653820128e-08,3.209085314106896531e-08,3.272008555559972933e-08,3.334931797013049336e-08,3.397855038466125738e-08,3.460778279919202141e-08,3.523701521372278543e-08,3.586624762825354946e-08,3.649548004278431349e-08,3.712471245731507751e-08,3.775394487184584154e-08,3.838317728637660556e-08,3.901240970090736959e-08,3.964164211543813361e-08 +0.000000000000000000e+00,6.051566941013244796e-10,1.210313388202648959e-09,1.815470082303973542e-09,2.420626776405298332e-09,3.025783470506623122e-09,3.630940164607947912e-09,4.236096858709273115e-09,4.841253552810598319e-09,5.446410246911923522e-09,6.051566941013248726e-09,6.656723635114573929e-09,7.261880329215899132e-09,7.867037023317224336e-09,8.472193717418549539e-09,9.077350411519874743e-09,9.682507105621199946e-09,1.028766379972252515e-08,1.089282049382385035e-08,1.149797718792517556e-08,1.210313388202650076e-08,1.270829057612782596e-08,1.331344727022915117e-08,1.391860396433047637e-08,1.452376065843180157e-08,1.512891735253312678e-08,1.573407404663445198e-08,1.633923074073577718e-08,1.694438743483710239e-08,1.754954412893842759e-08,1.815470082303975279e-08,1.875985751714107800e-08,1.936501421124240320e-08,1.997017090534372840e-08,2.057532759944505361e-08,2.118048429354637881e-08,2.178564098764770401e-08,2.239079768174902922e-08,2.299595437585035442e-08,2.360111106995167962e-08,2.420626776405300483e-08,2.481142445815433003e-08,2.541658115225565524e-08,2.602173784635698044e-08,2.662689454045830564e-08,2.723205123455963085e-08,2.783720792866095605e-08,2.844236462276228125e-08,2.904752131686360646e-08,2.965267801096493166e-08,3.025783470506625355e-08,3.086299139916757545e-08,3.146814809326889734e-08,3.207330478737021924e-08,3.267846148147154113e-08,3.328361817557286303e-08,3.388877486967418492e-08,3.449393156377550682e-08,3.509908825787682871e-08,3.570424495197815061e-08,3.630940164607947250e-08,3.691455834018079440e-08,3.751971503428211629e-08,3.812487172838343818e-08 +0.000000000000000000e+00,6.503852073593915664e-10,1.300770414718783133e-09,1.951155622078174699e-09,2.601540829437566266e-09,3.251926036796957832e-09,3.902311244156349398e-09,4.552696451515740965e-09,5.203081658875132531e-09,5.853466866234524098e-09,6.503852073593915664e-09,7.154237280953307230e-09,7.804622488312698797e-09,8.455007695672091190e-09,9.105392903031483584e-09,9.755778110390875978e-09,1.040616331775026837e-08,1.105654852510966076e-08,1.170693373246905316e-08,1.235731893982844555e-08,1.300770414718783795e-08,1.365808935454723034e-08,1.430847456190662273e-08,1.495885976926601513e-08,1.560924497662540752e-08,1.625963018398479991e-08,1.691001539134419231e-08,1.756040059870358470e-08,1.821078580606297709e-08,1.886117101342236949e-08,1.951155622078176188e-08,2.016194142814115428e-08,2.081232663550054667e-08,2.146271184285993906e-08,2.211309705021933146e-08,2.276348225757872385e-08,2.341386746493811624e-08,2.406425267229750864e-08,2.471463787965690103e-08,2.536502308701629342e-08,2.601540829437568582e-08,2.666579350173507821e-08,2.731617870909447060e-08,2.796656391645386300e-08,2.861694912381325539e-08,2.926733433117264779e-08,2.991771953853203687e-08,3.056810474589142265e-08,3.121848995325080842e-08,3.186887516061019420e-08,3.251926036796957997e-08,3.316964557532896575e-08,3.382003078268835153e-08,3.447041599004773730e-08,3.512080119740712308e-08,3.577118640476650886e-08,3.642157161212589463e-08,3.707195681948528041e-08,3.772234202684466618e-08,3.837272723420405196e-08,3.902311244156343774e-08,3.967349764892282351e-08,4.032388285628220929e-08,4.097426806364159506e-08 +0.000000000000000000e+00,6.402483478449231146e-10,1.280496695689846229e-09,1.920745043534769241e-09,2.560993391379692045e-09,3.201241739224614849e-09,3.841490087069537654e-09,4.481738434914460872e-09,5.121986782759384090e-09,5.762235130604307308e-09,6.402483478449230526e-09,7.042731826294153744e-09,7.682980174139076962e-09,8.323228521984000180e-09,8.963476869828923398e-09,9.603725217673846616e-09,1.024397356551876983e-08,1.088422191336369305e-08,1.152447026120861627e-08,1.216471860905353949e-08,1.280496695689846271e-08,1.344521530474338592e-08,1.408546365258830914e-08,1.472571200043323236e-08,1.536596034827815723e-08,1.600620869612308045e-08,1.664645704396800367e-08,1.728670539181292689e-08,1.792695373965785011e-08,1.856720208750277332e-08,1.920745043534769654e-08,1.984769878319261976e-08,2.048794713103754298e-08,2.112819547888246620e-08,2.176844382672738941e-08,2.240869217457231263e-08,2.304894052241723585e-08,2.368918887026215907e-08,2.432943721810708229e-08,2.496968556595200550e-08,2.560993391379692872e-08,2.625018226164185194e-08,2.689043060948677516e-08,2.753067895733169838e-08,2.817092730517662159e-08,2.881117565302154481e-08,2.945142400086646803e-08,3.009167234871139125e-08,3.073192069655631447e-08,3.137216904440123768e-08,3.201241739224616090e-08,3.265266574009108412e-08,3.329291408793600734e-08,3.393316243578093056e-08,3.457341078362585377e-08,3.521365913147077699e-08,3.585390747931570021e-08,3.649415582716062343e-08,3.713440417500554665e-08,3.777465252285046986e-08,3.841490087069539308e-08,3.905514921854031630e-08,3.969539756638523952e-08,4.033564591423016274e-08 +0.000000000000000000e+00,6.206831886801622102e-10,1.241366377360324420e-09,1.862049566040486734e-09,2.482732754720649254e-09,3.103415943400811775e-09,3.724099132080974295e-09,4.344782320761136815e-09,4.965465509441299336e-09,5.586148698121461856e-09,6.206831886801624376e-09,6.827515075481786897e-09,7.448198264161949417e-09,8.068881452842111938e-09,8.689564641522273631e-09,9.310247830202435324e-09,9.930931018882597017e-09,1.055161420756275871e-08,1.117229739624292040e-08,1.179298058492308210e-08,1.241366377360324379e-08,1.303434696228340548e-08,1.365503015096356718e-08,1.427571333964372887e-08,1.489639652832389056e-08,1.551707971700405391e-08,1.613776290568421726e-08,1.675844609436438061e-08,1.737912928304454395e-08,1.799981247172470730e-08,1.862049566040487065e-08,1.924117884908503400e-08,1.986186203776519734e-08,2.048254522644536069e-08,2.110322841512552404e-08,2.172391160380568739e-08,2.234459479248585073e-08,2.296527798116601408e-08,2.358596116984617743e-08,2.420664435852634078e-08,2.482732754720650412e-08,2.544801073588666747e-08,2.606869392456683082e-08,2.668937711324699417e-08,2.731006030192715751e-08,2.793074349060732086e-08,2.855142667928748421e-08,2.917210986796764756e-08,2.979279305664781090e-08,3.041347624532797425e-08,3.103415943400813429e-08,3.165484262268829433e-08,3.227552581136845437e-08,3.289620900004861441e-08,3.351689218872877445e-08,3.413757537740893448e-08,3.475825856608909452e-08,3.537894175476925456e-08,3.599962494344941460e-08,3.662030813212957464e-08,3.724099132080973468e-08,3.786167450948989472e-08,3.848235769817005476e-08,3.910304088685021479e-08 +0.000000000000000000e+00,-6.292324143376291399e-10,-1.258464828675258280e-09,-1.887697243012887627e-09,-2.516929657350516973e-09,-3.146162071688146320e-09,-3.775394486025775253e-09,-4.404626900363404186e-09,-5.033859314701033119e-09,-5.663091729038662052e-09,-6.292324143376290985e-09,-6.921556557713919919e-09,-7.550788972051548852e-09,-8.180021386389177785e-09,-8.809253800726806718e-09,-9.438486215064435651e-09,-1.006771862940206458e-08,-1.069695104373969352e-08,-1.132618345807732245e-08,-1.195541587241495138e-08,-1.258464828675258032e-08,-1.321388070109020925e-08,-1.384311311542783818e-08,-1.447234552976546712e-08,-1.510157794410309439e-08,-1.573081035844072167e-08,-1.636004277277834895e-08,-1.698927518711597623e-08,-1.761850760145360351e-08,-1.824774001579123079e-08,-1.887697243012885807e-08,-1.950620484446648535e-08,-2.013543725880411262e-08,-2.076466967314173990e-08,-2.139390208747936718e-08,-2.202313450181699446e-08,-2.265236691615462174e-08,-2.328159933049224902e-08,-2.391083174482987630e-08,-2.454006415916750358e-08,-2.516929657350513085e-08,-2.579852898784275813e-08,-2.642776140218038541e-08,-2.705699381651801269e-08,-2.768622623085563997e-08,-2.831545864519326725e-08,-2.894469105953089453e-08,-2.957392347386852181e-08,-3.020315588820614908e-08,-3.083238830254377636e-08,-3.146162071688140364e-08,-3.209085313121903092e-08,-3.272008554555665820e-08,-3.334931795989428548e-08,-3.397855037423191276e-08,-3.460778278856954004e-08,-3.523701520290716731e-08,-3.586624761724479459e-08,-3.649548003158242187e-08,-3.712471244592004915e-08,-3.775394486025767643e-08,-3.838317727459530371e-08,-3.901240968893293099e-08,-3.964164210327055827e-08 +0.000000000000000000e+00,-6.051566938949368164e-10,-1.210313387789873633e-09,-1.815470081684810449e-09,-2.420626775579747265e-09,-3.025783469474684289e-09,-3.630940163369621312e-09,-4.236096857264558335e-09,-4.841253551159495358e-09,-5.446410245054432381e-09,-6.051566938949369404e-09,-6.656723632844306427e-09,-7.261880326739243451e-09,-7.867037020634181301e-09,-8.472193714529118324e-09,-9.077350408424055347e-09,-9.682507102318992370e-09,-1.028766379621392939e-08,-1.089282049010886642e-08,-1.149797718400380344e-08,-1.210313387789874046e-08,-1.270829057179367749e-08,-1.331344726568861451e-08,-1.391860395958355153e-08,-1.452376065347848856e-08,-1.512891734737342558e-08,-1.573407404126836260e-08,-1.633923073516329963e-08,-1.694438742905823665e-08,-1.754954412295317367e-08,-1.815470081684811069e-08,-1.875985751074304772e-08,-1.936501420463798474e-08,-1.997017089853292176e-08,-2.057532759242785879e-08,-2.118048428632279581e-08,-2.178564098021773283e-08,-2.239079767411266986e-08,-2.299595436800760688e-08,-2.360111106190254390e-08,-2.420626775579748093e-08,-2.481142444969241795e-08,-2.541658114358735497e-08,-2.602173783748229200e-08,-2.662689453137722902e-08,-2.723205122527216604e-08,-2.783720791916710306e-08,-2.844236461306204009e-08,-2.904752130695697711e-08,-2.965267800085191413e-08,-3.025783469474685116e-08,-3.086299138864178818e-08,-3.146814808253672520e-08,-3.207330477643166223e-08,-3.267846147032659925e-08,-3.328361816422153627e-08,-3.388877485811647330e-08,-3.449393155201141032e-08,-3.509908824590634734e-08,-3.570424493980128437e-08,-3.630940163369622139e-08,-3.691455832759115841e-08,-3.751971502148609544e-08,-3.812487171538103246e-08 +0.000000000000000000e+00,-6.503852071773882570e-10,-1.300770414354776514e-09,-1.951155621532164771e-09,-2.601540828709553028e-09,-3.251926035886941285e-09,-3.902311243064329542e-09,-4.552696450241718213e-09,-5.203081657419106883e-09,-5.853466864596495554e-09,-6.503852071773884224e-09,-7.154237278951272895e-09,-7.804622486128660738e-09,-8.455007693306048582e-09,-9.105392900483436425e-09,-9.755778107660824269e-09,-1.040616331483821211e-08,-1.105654852201559996e-08,-1.170693372919298780e-08,-1.235731893637037564e-08,-1.300770414354776349e-08,-1.365808935072515133e-08,-1.430847455790253917e-08,-1.495885976507992867e-08,-1.560924497225731817e-08,-1.625963017943470767e-08,-1.691001538661209716e-08,-1.756040059378948666e-08,-1.821078580096687616e-08,-1.886117100814426566e-08,-1.951155621532165515e-08,-2.016194142249904465e-08,-2.081232662967643415e-08,-2.146271183685382365e-08,-2.211309704403121315e-08,-2.276348225120860264e-08,-2.341386745838599214e-08,-2.406425266556338164e-08,-2.471463787274077114e-08,-2.536502307991816063e-08,-2.601540828709555013e-08,-2.666579349427293963e-08,-2.731617870145032913e-08,-2.796656390862771863e-08,-2.861694911580510812e-08,-2.926733432298249762e-08,-2.991771953015988381e-08,-3.056810473733727000e-08,-3.121848994451465619e-08,-3.186887515169204238e-08,-3.251926035886942857e-08,-3.316964556604681476e-08,-3.382003077322420094e-08,-3.447041598040158713e-08,-3.512080118757897332e-08,-3.577118639475635951e-08,-3.642157160193374570e-08,-3.707195680911113189e-08,-3.772234201628851808e-08,-3.837272722346590427e-08,-3.902311243064329046e-08,-3.967349763782067665e-08,-4.032388284499806283e-08,-4.097426805217544902e-08 +0.000000000000000000e+00,-6.402483476513790847e-10,-1.280496695302758169e-09,-1.920745042954137254e-09,-2.560993390605516339e-09,-3.201241738256895424e-09,-3.841490085908274508e-09,-4.481738433559653179e-09,-5.121986781211031851e-09,-5.762235128862410522e-09,-6.402483476513789193e-09,-7.042731824165167864e-09,-7.682980171816547362e-09,-8.323228519467926861e-09,-8.963476867119306359e-09,-9.603725214770685857e-09,-1.024397356242206536e-08,-1.088422191007344485e-08,-1.152447025772482435e-08,-1.216471860537620385e-08,-1.280496695302758335e-08,-1.344521530067896285e-08,-1.408546364833034235e-08,-1.472571199598172184e-08,-1.536596034363310134e-08,-1.600620869128448084e-08,-1.664645703893586034e-08,-1.728670538658723984e-08,-1.792695373423861934e-08,-1.856720208188999883e-08,-1.920745042954137833e-08,-1.984769877719275783e-08,-2.048794712484413733e-08,-2.112819547249551683e-08,-2.176844382014689633e-08,-2.240869216779827582e-08,-2.304894051544965532e-08,-2.368918886310103482e-08,-2.432943721075241432e-08,-2.496968555840379382e-08,-2.560993390605517332e-08,-2.625018225370655281e-08,-2.689043060135793231e-08,-2.753067894900931181e-08,-2.817092729666069131e-08,-2.881117564431207081e-08,-2.945142399196345030e-08,-3.009167233961483311e-08,-3.073192068726621592e-08,-3.137216903491759873e-08,-3.201241738256898153e-08,-3.265266573022036434e-08,-3.329291407787174715e-08,-3.393316242552312995e-08,-3.457341077317451276e-08,-3.521365912082589557e-08,-3.585390746847727838e-08,-3.649415581612866118e-08,-3.713440416378004399e-08,-3.777465251143142680e-08,-3.841490085908280960e-08,-3.905514920673419241e-08,-3.969539755438557522e-08,-4.033564590203695802e-08 +0.000000000000000000e+00,-6.206831884770618660e-10,-1.241366376954123732e-09,-1.862049565431185495e-09,-2.482732753908247051e-09,-3.103415942385308606e-09,-3.724099130862370162e-09,-4.344782319339431718e-09,-4.965465507816493274e-09,-5.586148696293554830e-09,-6.206831884770616386e-09,-6.827515073247677941e-09,-7.448198261724739497e-09,-8.068881450201801053e-09,-8.689564638678863436e-09,-9.310247827155925819e-09,-9.930931015632988202e-09,-1.055161420411005059e-08,-1.117229739258711297e-08,-1.179298058106417535e-08,-1.241366376954123773e-08,-1.303434695801830012e-08,-1.365503014649536250e-08,-1.427571333497242488e-08,-1.489639652344948727e-08,-1.551707971192654800e-08,-1.613776290040360872e-08,-1.675844608888066945e-08,-1.737912927735773018e-08,-1.799981246583479091e-08,-1.862049565431185164e-08,-1.924117884278891237e-08,-1.986186203126597310e-08,-2.048254521974303382e-08,-2.110322840822009455e-08,-2.172391159669715528e-08,-2.234459478517421601e-08,-2.296527797365127674e-08,-2.358596116212833747e-08,-2.420664435060539820e-08,-2.482732753908245893e-08,-2.544801072755951965e-08,-2.606869391603658038e-08,-2.668937710451364111e-08,-2.731006029299070184e-08,-2.793074348146776257e-08,-2.855142666994482330e-08,-2.917210985842188403e-08,-2.979279304689894475e-08,-3.041347623537600548e-08,-3.103415942385306952e-08,-3.165484261233013356e-08,-3.227552580080719760e-08,-3.289620898928426163e-08,-3.351689217776132567e-08,-3.413757536623838971e-08,-3.475825855471545374e-08,-3.537894174319251778e-08,-3.599962493166958182e-08,-3.662030812014664586e-08,-3.724099130862370989e-08,-3.786167449710077393e-08,-3.848235768557783797e-08,-3.910304087405490201e-08 +0.000000000000000000e+00,5.939499800098846172e-10,1.187899960019769234e-09,1.781849940029653748e-09,2.375799920039538055e-09,2.969749900049422362e-09,3.563699880059306669e-09,4.157649860069190976e-09,4.751599840079075283e-09,5.345549820088959590e-09,5.939499800098843897e-09,6.533449780108728204e-09,7.127399760118612512e-09,7.721349740128497646e-09,8.315299720138383607e-09,8.909249700148269569e-09,9.503199680158155530e-09,1.009714966016804149e-08,1.069109964017792745e-08,1.128504962018781341e-08,1.187899960019769938e-08,1.247294958020758534e-08,1.306689956021747130e-08,1.366084954022735726e-08,1.425479952023724322e-08,1.484874950024712918e-08,1.544269948025701514e-08,1.603664946026690111e-08,1.663059944027678707e-08,1.722454942028667303e-08,1.781849940029655899e-08,1.841244938030644495e-08,1.900639936031633091e-08,1.960034934032621687e-08,2.019429932033610283e-08,2.078824930034598880e-08,2.138219928035587476e-08,2.197614926036576072e-08,2.257009924037564668e-08,2.316404922038553264e-08,2.375799920039541860e-08,2.435194918040530456e-08,2.494589916041519053e-08,2.553984914042507649e-08,2.613379912043496245e-08,2.672774910044484841e-08,2.732169908045473437e-08,2.791564906046462033e-08,2.850959904047450629e-08,2.910354902048439226e-08,2.969749900049427822e-08,3.029144898050416418e-08,3.088539896051405014e-08,3.147934894052393610e-08,3.207329892053382206e-08,3.266724890054370802e-08,3.326119888055359399e-08,3.385514886056347995e-08,3.444909884057336591e-08,3.504304882058325187e-08,3.563699880059313783e-08,3.623094878060302379e-08,3.682489876061290975e-08,3.741884874062279572e-08 +0.000000000000000000e+00,5.317735761368644371e-10,1.063547152273728874e-09,1.595320728410593311e-09,2.127094304547457749e-09,2.658867880684321979e-09,3.190641456821186209e-09,3.722415032958050440e-09,4.254188609094914670e-09,4.785962185231778900e-09,5.317735761368643131e-09,5.849509337505507361e-09,6.381282913642371591e-09,6.913056489779235822e-09,7.444830065916100052e-09,7.976603642052964282e-09,8.508377218189827686e-09,9.040150794326691089e-09,9.571924370463554492e-09,1.010369794660041790e-08,1.063547152273728130e-08,1.116724509887414470e-08,1.169901867501100810e-08,1.223079225114787151e-08,1.276256582728473491e-08,1.329433940342159831e-08,1.382611297955846172e-08,1.435788655569532512e-08,1.488966013183218852e-08,1.542143370796905193e-08,1.595320728410591533e-08,1.648498086024277873e-08,1.701675443637964214e-08,1.754852801251650554e-08,1.808030158865336894e-08,1.861207516479023235e-08,1.914384874092709575e-08,1.967562231706395915e-08,2.020739589320082256e-08,2.073916946933768596e-08,2.127094304547454936e-08,2.180271662161141276e-08,2.233449019774827617e-08,2.286626377388513957e-08,2.339803735002200297e-08,2.392981092615886638e-08,2.446158450229572978e-08,2.499335807843259318e-08,2.552513165456945659e-08,2.605690523070631999e-08,2.658867880684318339e-08,2.712045238298004680e-08,2.765222595911691020e-08,2.818399953525377360e-08,2.871577311139063701e-08,2.924754668752750041e-08,2.977932026366436381e-08,3.031109383980122391e-08,3.084286741593808400e-08,3.137464099207494410e-08,3.190641456821180419e-08,3.243818814434866428e-08,3.296996172048552438e-08,3.350173529662238447e-08 +0.000000000000000000e+00,1.076340996109959893e-19,2.152681992219919785e-19,3.229022988329879557e-19,4.305363984439839089e-19,5.381704980549798620e-19,6.458045976659758152e-19,7.534386972769717683e-19,8.610727968879677214e-19,9.687068964989637709e-19,1.076340996109959917e-18,1.183975095720956062e-18,1.291609195331952208e-18,1.399243294942948354e-18,1.506877394553944500e-18,1.614511494164940645e-18,1.722145593775936791e-18,1.829779693386932937e-18,1.937413792997929083e-18,2.045047892608925228e-18,2.152681992219921374e-18,2.260316091830917520e-18,2.367950191441913665e-18,2.475584291052909811e-18,2.583218390663905957e-18,2.690852490274902103e-18,2.798486589885898248e-18,2.906120689496894394e-18,3.013754789107890540e-18,3.121388888718886686e-18,3.229022988329882831e-18,3.336657087940878977e-18,3.444291187551875123e-18,3.551925287162871269e-18,3.659559386773867414e-18,3.767193486384863560e-18,3.874827585995859706e-18,3.982461685606855851e-18,4.090095785217851997e-18,4.197729884828848143e-18,4.305363984439844289e-18,4.412998084050840434e-18,4.520632183661836580e-18,4.628266283272832726e-18,4.735900382883828872e-18,4.843534482494825017e-18,4.951168582105821163e-18,5.058802681716817309e-18,5.166436781327813455e-18,5.274070880938809600e-18,5.381704980549805746e-18,5.489339080160801892e-18,5.596973179771798038e-18,5.704607279382794183e-18,5.812241378993790329e-18,5.919875478604786475e-18,6.027509578215782620e-18,6.135143677826778766e-18,6.242777777437774912e-18,6.350411877048771058e-18,6.458045976659767203e-18,6.565680076270763349e-18,6.673314175881759495e-18,6.780948275492755641e-18 +0.000000000000000000e+00,1.163256712858564359e-19,2.326513425717128718e-19,3.489770138575692837e-19,4.653026851434256474e-19,5.816283564292820111e-19,6.979540277151383748e-19,8.142796990009947385e-19,9.306053702868511022e-19,1.046931041572707466e-18,1.163256712858563830e-18,1.279582384144420193e-18,1.395908055430276557e-18,1.512233726716132921e-18,1.628559398001989284e-18,1.744885069287845648e-18,1.861210740573701819e-18,1.977536411859557990e-18,2.093862083145414161e-18,2.210187754431270333e-18,2.326513425717126504e-18,2.442839097002982675e-18,2.559164768288838846e-18,2.675490439574695017e-18,2.791816110860551188e-18,2.908141782146407359e-18,3.024467453432263530e-18,3.140793124718119701e-18,3.257118796003975873e-18,3.373444467289832044e-18,3.489770138575688215e-18,3.606095809861544771e-18,3.722421481147401327e-18,3.838747152433257884e-18,3.955072823719114440e-18,4.071398495004970996e-18,4.187724166290827553e-18,4.304049837576684109e-18,4.420375508862540665e-18,4.536701180148397221e-18,4.653026851434253778e-18,4.769352522720110334e-18,4.885678194005966890e-18,5.002003865291823447e-18,5.118329536577680003e-18,5.234655207863536559e-18,5.350980879149393115e-18,5.467306550435249672e-18,5.583632221721106228e-18,5.699957893006962784e-18,5.816283564292819341e-18,5.932609235578675897e-18,6.048934906864532453e-18,6.165260578150389010e-18,6.281586249436245566e-18,6.397911920722102122e-18,6.514237592007958678e-18,6.630563263293815235e-18,6.746888934579671791e-18,6.863214605865528347e-18,6.979540277151384133e-18,7.095865948437239919e-18,7.212191619723095705e-18,7.328517291008951491e-18 +0.000000000000000000e+00,6.112507255532665326e-10,1.222501451106533065e-09,1.833752176659799598e-09,2.445002902213066130e-09,3.056253627766332663e-09,3.667504353319599195e-09,4.278755078872865314e-09,4.890005804426131433e-09,5.501256529979397552e-09,6.112507255532663671e-09,6.723757981085929790e-09,7.335008706639195909e-09,7.946259432192462028e-09,8.557510157745727320e-09,9.168760883298992612e-09,9.780011608852257904e-09,1.039126233440552320e-08,1.100251305995878849e-08,1.161376378551205378e-08,1.222501451106531907e-08,1.283626523661858436e-08,1.344751596217184965e-08,1.405876668772511495e-08,1.467001741327838024e-08,1.528126813883164718e-08,1.589251886438491413e-08,1.650376958993818108e-08,1.711502031549144802e-08,1.772627104104471497e-08,1.833752176659798192e-08,1.894877249215124886e-08,1.956002321770451581e-08,2.017127394325778275e-08,2.078252466881104970e-08,2.139377539436431665e-08,2.200502611991758359e-08,2.261627684547085054e-08,2.322752757102411748e-08,2.383877829657738443e-08,2.445002902213065138e-08,2.506127974768391832e-08,2.567253047323718527e-08,2.628378119879045222e-08,2.689503192434371916e-08,2.750628264989698611e-08,2.811753337545025305e-08,2.872878410100352000e-08,2.934003482655678695e-08,2.995128555211005389e-08,3.056253627766332084e-08,3.117378700321658778e-08,3.178503772876985473e-08,3.239628845432312168e-08,3.300753917987638862e-08,3.361878990542965557e-08,3.423004063098292252e-08,3.484129135653618946e-08,3.545254208208945641e-08,3.606379280764272335e-08,3.667504353319599030e-08,3.728629425874925725e-08,3.789754498430252419e-08,3.850879570985579114e-08 +0.000000000000000000e+00,5.727873329248647797e-10,1.145574665849729559e-09,1.718361998774594443e-09,2.291149331699459532e-09,2.863936664624324622e-09,3.436723997549189712e-09,4.009511330474054802e-09,4.582298663398919892e-09,5.155085996323784982e-09,5.727873329248650072e-09,6.300660662173515162e-09,6.873447995098380252e-09,7.446235328023245342e-09,8.019022660948111259e-09,8.591809993872978003e-09,9.164597326797844747e-09,9.737384659722711492e-09,1.031017199264757824e-08,1.088295932557244498e-08,1.145574665849731172e-08,1.202853399142217847e-08,1.260132132434704521e-08,1.317410865727191196e-08,1.374689599019677870e-08,1.431968332312164545e-08,1.489247065604651219e-08,1.546525798897137893e-08,1.603804532189624568e-08,1.661083265482111242e-08,1.718361998774597917e-08,1.775640732067084591e-08,1.832919465359571266e-08,1.890198198652057940e-08,1.947476931944544614e-08,2.004755665237031289e-08,2.062034398529517963e-08,2.119313131822004638e-08,2.176591865114491312e-08,2.233870598406977987e-08,2.291149331699464661e-08,2.348428064991951335e-08,2.405706798284438010e-08,2.462985531576924684e-08,2.520264264869411359e-08,2.577542998161898033e-08,2.634821731454384708e-08,2.692100464746871382e-08,2.749379198039358056e-08,2.806657931331844731e-08,2.863936664624331405e-08,2.921215397916818080e-08,2.978494131209304754e-08,3.035772864501791098e-08,3.093051597794277772e-08,3.150330331086764447e-08,3.207609064379251121e-08,3.264887797671737795e-08,3.322166530964224470e-08,3.379445264256711144e-08,3.436723997549197819e-08,3.494002730841684493e-08,3.551281464134171167e-08,3.608560197426657842e-08 +0.000000000000000000e+00,5.584454502741994824e-10,1.116890900548398965e-09,1.675336350822598447e-09,2.233781801096797929e-09,2.792227251370997205e-09,3.350672701645196481e-09,3.909118151919395756e-09,4.467563602193595032e-09,5.026009052467794307e-09,5.584454502741993583e-09,6.142899953016192858e-09,6.701345403290392134e-09,7.259790853564591410e-09,7.818236303838791512e-09,8.376681754112991615e-09,8.935127204387191718e-09,9.493572654661391820e-09,1.005201810493559192e-08,1.061046355520979203e-08,1.116890900548399213e-08,1.172735445575819223e-08,1.228579990603239233e-08,1.284424535630659244e-08,1.340269080658079254e-08,1.396113625685499264e-08,1.451958170712919275e-08,1.507802715740339450e-08,1.563647260767759626e-08,1.619491805795179802e-08,1.675336350822599977e-08,1.731180895850020153e-08,1.787025440877440329e-08,1.842869985904860504e-08,1.898714530932280680e-08,1.954559075959700856e-08,2.010403620987121032e-08,2.066248166014541207e-08,2.122092711041961383e-08,2.177937256069381559e-08,2.233781801096801734e-08,2.289626346124221910e-08,2.345470891151642086e-08,2.401315436179062262e-08,2.457159981206482437e-08,2.513004526233902613e-08,2.568849071261322789e-08,2.624693616288742964e-08,2.680538161316163140e-08,2.736382706343583316e-08,2.792227251371003492e-08,2.848071796398423667e-08,2.903916341425843843e-08,2.959760886453264019e-08,3.015605431480684194e-08,3.071449976508104370e-08,3.127294521535524546e-08,3.183139066562944722e-08,3.238983611590364897e-08,3.294828156617785073e-08,3.350672701645205249e-08,3.406517246672625424e-08,3.462361791700045600e-08,3.518206336727465776e-08 +0.000000000000000000e+00,2.969910966607710918e-10,5.939821933215421837e-10,8.909732899823132755e-10,1.187964386643084367e-09,1.484955483303855459e-09,1.781946579964626551e-09,2.078937676625397850e-09,2.375928773286169148e-09,2.672919869946940447e-09,2.969910966607711745e-09,3.266902063268483044e-09,3.563893159929254343e-09,3.860884256590025641e-09,4.157875353250797354e-09,4.454866449911569066e-09,4.751857546572340778e-09,5.048848643233112490e-09,5.345839739893884202e-09,5.642830836554655915e-09,5.939821933215427627e-09,6.236813029876199339e-09,6.533804126536971051e-09,6.830795223197742764e-09,7.127786319858514476e-09,7.424777416519286188e-09,7.721768513180057900e-09,8.018759609840828785e-09,8.315750706501599670e-09,8.612741803162370555e-09,8.909732899823141440e-09,9.206723996483912325e-09,9.503715093144683210e-09,9.800706189805454095e-09,1.009769728646622498e-08,1.039468838312699587e-08,1.069167947978776675e-08,1.098867057644853764e-08,1.128566167310930852e-08,1.158265276977007941e-08,1.187964386643085029e-08,1.217663496309162118e-08,1.247362605975239206e-08,1.277061715641316295e-08,1.306760825307393383e-08,1.336459934973470472e-08,1.366159044639547560e-08,1.395858154305624649e-08,1.425557263971701737e-08,1.455256373637778826e-08,1.484955483303855914e-08,1.514654592969933003e-08,1.544353702636009926e-08,1.574052812302086849e-08,1.603751921968163772e-08,1.633451031634240695e-08,1.663150141300317618e-08,1.692849250966394541e-08,1.722548360632471464e-08,1.752247470298548387e-08,1.781946579964625310e-08,1.811645689630702233e-08,1.841344799296779156e-08,1.871043908962856079e-08 +0.000000000000000000e+00,2.659275657686055651e-10,5.318551315372111301e-10,7.977826973058166435e-10,1.063710263074422053e-09,1.329637828843027463e-09,1.595565394611632873e-09,1.861492960380238283e-09,2.127420526148843693e-09,2.393348091917449103e-09,2.659275657686054513e-09,2.925203223454659923e-09,3.191130789223265333e-09,3.457058354991870743e-09,3.722985920760476153e-09,3.988913486529081563e-09,4.254841052297686559e-09,4.520768618066291556e-09,4.786696183834896552e-09,5.052623749603501548e-09,5.318551315372106545e-09,5.584478881140711541e-09,5.850406446909316538e-09,6.116334012677921534e-09,6.382261578446526530e-09,6.648189144215131527e-09,6.914116709983736523e-09,7.180044275752341519e-09,7.445971841520946516e-09,7.711899407289551512e-09,7.977826973058156508e-09,8.243754538826761505e-09,8.509682104595366501e-09,8.775609670363971498e-09,9.041537236132576494e-09,9.307464801901181490e-09,9.573392367669786487e-09,9.839319933438391483e-09,1.010524749920699648e-08,1.037117506497560148e-08,1.063710263074420647e-08,1.090303019651281147e-08,1.116895776228141646e-08,1.143488532805002146e-08,1.170081289381862646e-08,1.196674045958723145e-08,1.223266802535583645e-08,1.249859559112444145e-08,1.276452315689304644e-08,1.303045072266165144e-08,1.329637828843025644e-08,1.356230585419886143e-08,1.382823341996746643e-08,1.409416098573607142e-08,1.436008855150467642e-08,1.462601611727328142e-08,1.489194368304188641e-08,1.515787124881049306e-08,1.542379881457909972e-08,1.568972638034770637e-08,1.595565394611631302e-08,1.622158151188491967e-08,1.648750907765352632e-08,1.675343664342213297e-08 +0.000000000000000000e+00,1.142291294686989188e-19,2.284582589373978377e-19,3.426873884060967565e-19,4.569165178747956753e-19,5.711456473434945941e-19,6.853747768121935130e-19,7.996039062808924318e-19,9.138330357495913506e-19,1.028062165218290366e-18,1.142291294686989381e-18,1.256520424155688396e-18,1.370749553624387411e-18,1.484978683093086426e-18,1.599207812561785441e-18,1.713436942030484456e-18,1.827666071499183472e-18,1.941895200967882487e-18,2.056124330436581502e-18,2.170353459905280517e-18,2.284582589373979532e-18,2.398811718842678547e-18,2.513040848311377562e-18,2.627269977780076577e-18,2.741499107248775593e-18,2.855728236717474608e-18,2.969957366186173623e-18,3.084186495654872638e-18,3.198415625123571653e-18,3.312644754592270668e-18,3.426873884060969683e-18,3.541103013529669084e-18,3.655332142998368484e-18,3.769561272467067884e-18,3.883790401935767285e-18,3.998019531404466685e-18,4.112248660873166085e-18,4.226477790341865486e-18,4.340706919810564886e-18,4.454936049279264286e-18,4.569165178747963686e-18,4.683394308216663087e-18,4.797623437685362487e-18,4.911852567154061887e-18,5.026081696622761288e-18,5.140310826091460688e-18,5.254539955560160088e-18,5.368769085028859489e-18,5.482998214497558889e-18,5.597227343966258289e-18,5.711456473434957690e-18,5.825685602903657090e-18,5.939914732372356490e-18,6.054143861841055890e-18,6.168372991309755291e-18,6.282602120778454691e-18,6.396831250247154091e-18,6.511060379715853492e-18,6.625289509184552892e-18,6.739518638653252292e-18,6.853747768121951693e-18,6.967976897590651093e-18,7.082206027059350493e-18,7.196435156528049894e-18 +0.000000000000000000e+00,-5.939499797947180861e-10,-1.187899959589436172e-09,-1.781849939384154258e-09,-2.375799919178872344e-09,-2.969749898973590430e-09,-3.563699878768308517e-09,-4.157649858563026603e-09,-4.751599838357744689e-09,-5.345549818152462775e-09,-5.939499797947180861e-09,-6.533449777741898947e-09,-7.127399757536617033e-09,-7.721349737331335119e-09,-8.315299717126053205e-09,-8.909249696920771291e-09,-9.503199676715489377e-09,-1.009714965651020746e-08,-1.069109963630492555e-08,-1.128504961609964364e-08,-1.187899959589436172e-08,-1.247294957568907981e-08,-1.306689955548379789e-08,-1.366084953527851598e-08,-1.425479951507323407e-08,-1.484874949486795215e-08,-1.544269947466267024e-08,-1.603664945445738667e-08,-1.663059943425210310e-08,-1.722454941404681953e-08,-1.781849939384153597e-08,-1.841244937363625240e-08,-1.900639935343096883e-08,-1.960034933322568526e-08,-2.019429931302040169e-08,-2.078824929281511812e-08,-2.138219927260983456e-08,-2.197614925240455099e-08,-2.257009923219926742e-08,-2.316404921199398385e-08,-2.375799919178870028e-08,-2.435194917158341671e-08,-2.494589915137813315e-08,-2.553984913117284958e-08,-2.613379911096756601e-08,-2.672774909076228244e-08,-2.732169907055699887e-08,-2.791564905035171530e-08,-2.850959903014643174e-08,-2.910354900994114817e-08,-2.969749898973586460e-08,-3.029144896953058103e-08,-3.088539894932529415e-08,-3.147934892912000728e-08,-3.207329890891472040e-08,-3.266724888870943352e-08,-3.326119886850414665e-08,-3.385514884829885977e-08,-3.444909882809357289e-08,-3.504304880788828602e-08,-3.563699878768299914e-08,-3.623094876747771226e-08,-3.682489874727242538e-08,-3.741884872706713851e-08 +0.000000000000000000e+00,-5.317735759043421058e-10,-1.063547151808684212e-09,-1.595320727713026317e-09,-2.127094303617368423e-09,-2.658867879521710529e-09,-3.190641455426052635e-09,-3.722415031330394741e-09,-4.254188607234736846e-09,-4.785962183139078952e-09,-5.317735759043421058e-09,-5.849509334947763164e-09,-6.381282910852105270e-09,-6.913056486756447375e-09,-7.444830062660789481e-09,-7.976603638565130760e-09,-8.508377214469472038e-09,-9.040150790373813317e-09,-9.571924366278154596e-09,-1.010369794218249587e-08,-1.063547151808683715e-08,-1.116724509399117843e-08,-1.169901866989551971e-08,-1.223079224579986099e-08,-1.276256582170420227e-08,-1.329433939760854355e-08,-1.382611297351288482e-08,-1.435788654941722610e-08,-1.488966012532156738e-08,-1.542143370122590866e-08,-1.595320727713024828e-08,-1.648498085303458791e-08,-1.701675442893892753e-08,-1.754852800484326716e-08,-1.808030158074760678e-08,-1.861207515665194641e-08,-1.914384873255628603e-08,-1.967562230846062565e-08,-2.020739588436496528e-08,-2.073916946026930490e-08,-2.127094303617364453e-08,-2.180271661207798415e-08,-2.233449018798232378e-08,-2.286626376388666340e-08,-2.339803733979100302e-08,-2.392981091569534265e-08,-2.446158449159968227e-08,-2.499335806750402190e-08,-2.552513164340836152e-08,-2.605690521931270115e-08,-2.658867879521704077e-08,-2.712045237112138039e-08,-2.765222594702572002e-08,-2.818399952293005964e-08,-2.871577309883439927e-08,-2.924754667473873889e-08,-2.977932025064307852e-08,-3.031109382654742145e-08,-3.084286740245176438e-08,-3.137464097835610731e-08,-3.190641455426045025e-08,-3.243818813016479318e-08,-3.296996170606913611e-08,-3.350173528197347905e-08 +0.000000000000000000e+00,-2.969910964455234970e-10,-5.939821928910469940e-10,-8.909732893365704910e-10,-1.187964385782093988e-09,-1.484955482227617588e-09,-1.781946578673141189e-09,-2.078937675118664789e-09,-2.375928771564188390e-09,-2.672919868009711990e-09,-2.969910964455235590e-09,-3.266902060900759191e-09,-3.563893157346282791e-09,-3.860884253791806805e-09,-4.157875350237330406e-09,-4.454866446682854006e-09,-4.751857543128377606e-09,-5.048848639573901207e-09,-5.345839736019424807e-09,-5.642830832464948408e-09,-5.939821928910472008e-09,-6.236813025355995608e-09,-6.533804121801519209e-09,-6.830795218247042809e-09,-7.127786314692566410e-09,-7.424777411138090010e-09,-7.721768507583613610e-09,-8.018759604029137211e-09,-8.315750700474660811e-09,-8.612741796920184412e-09,-8.909732893365708012e-09,-9.206723989811231612e-09,-9.503715086256755213e-09,-9.800706182702278813e-09,-1.009769727914780241e-08,-1.039468837559332601e-08,-1.069167947203884961e-08,-1.098867056848437321e-08,-1.128566166492989682e-08,-1.158265276137542042e-08,-1.187964385782094402e-08,-1.217663495426646762e-08,-1.247362605071199122e-08,-1.277061714715751482e-08,-1.306760824360303842e-08,-1.336459934004856202e-08,-1.366159043649408562e-08,-1.395858153293960922e-08,-1.425557262938513282e-08,-1.455256372583065642e-08,-1.484955482227618002e-08,-1.514654591872170362e-08,-1.544353701516722722e-08,-1.574052811161275082e-08,-1.603751920805827442e-08,-1.633451030450379802e-08,-1.663150140094932162e-08,-1.692849249739484522e-08,-1.722548359384036882e-08,-1.752247469028589242e-08,-1.781946578673141602e-08,-1.811645688317693962e-08,-1.841344797962246322e-08,-1.871043907606798683e-08 +0.000000000000000000e+00,-2.659275655359891936e-10,-5.318551310719783872e-10,-7.977826966079675808e-10,-1.063710262143956774e-09,-1.329637827679945968e-09,-1.595565393215935162e-09,-1.861492958751924355e-09,-2.127420524287913549e-09,-2.393348089823902949e-09,-2.659275655359892350e-09,-2.925203220895881750e-09,-3.191130786431871151e-09,-3.457058351967860551e-09,-3.722985917503849951e-09,-3.988913483039839352e-09,-4.254841048575828752e-09,-4.520768614111818153e-09,-4.786696179647807553e-09,-5.052623745183796953e-09,-5.318551310719786354e-09,-5.584478876255775754e-09,-5.850406441791765155e-09,-6.116334007327754555e-09,-6.382261572863743955e-09,-6.648189138399733356e-09,-6.914116703935722756e-09,-7.180044269471712157e-09,-7.445971835007701557e-09,-7.711899400543690130e-09,-7.977826966079678704e-09,-8.243754531615667277e-09,-8.509682097151655850e-09,-8.775609662687644423e-09,-9.041537228223632996e-09,-9.307464793759621570e-09,-9.573392359295610143e-09,-9.839319924831598716e-09,-1.010524749036758729e-08,-1.037117505590357586e-08,-1.063710262143956444e-08,-1.090303018697555301e-08,-1.116895775251154158e-08,-1.143488531804753016e-08,-1.170081288358351873e-08,-1.196674044911950730e-08,-1.223266801465549588e-08,-1.249859558019148445e-08,-1.276452314572747302e-08,-1.303045071126346159e-08,-1.329637827679945017e-08,-1.356230584233543874e-08,-1.382823340787142731e-08,-1.409416097340741589e-08,-1.436008853894340446e-08,-1.462601610447939303e-08,-1.489194367001538161e-08,-1.515787123555137018e-08,-1.542379880108736041e-08,-1.568972636662335064e-08,-1.595565393215934086e-08,-1.622158149769533109e-08,-1.648750906323132132e-08,-1.675343662876731155e-08 +0.000000000000000000e+00,-6.112507253491680916e-10,-1.222501450698336183e-09,-1.833752176047504378e-09,-2.445002901396672780e-09,-3.056253626745841182e-09,-3.667504352095009584e-09,-4.278755077444177986e-09,-4.890005802793346387e-09,-5.501256528142514789e-09,-6.112507253491683191e-09,-6.723757978840851593e-09,-7.335008704190019995e-09,-7.946259429539189224e-09,-8.557510154888357625e-09,-9.168760880237526027e-09,-9.780011605586694429e-09,-1.039126233093586283e-08,-1.100251305628503123e-08,-1.161376378163419963e-08,-1.222501450698336804e-08,-1.283626523233253644e-08,-1.344751595768170484e-08,-1.405876668303087324e-08,-1.467001740838004164e-08,-1.528126813372921005e-08,-1.589251885907837845e-08,-1.650376958442754685e-08,-1.711502030977671525e-08,-1.772627103512588365e-08,-1.833752176047505205e-08,-1.894877248582422046e-08,-1.956002321117338886e-08,-2.017127393652255726e-08,-2.078252466187172566e-08,-2.139377538722089406e-08,-2.200502611257006247e-08,-2.261627683791923087e-08,-2.322752756326839927e-08,-2.383877828861756767e-08,-2.445002901396673607e-08,-2.506127973931590447e-08,-2.567253046466507288e-08,-2.628378119001424128e-08,-2.689503191536340968e-08,-2.750628264071257808e-08,-2.811753336606174648e-08,-2.872878409141091489e-08,-2.934003481676008329e-08,-2.995128554210925500e-08,-3.056253626745842671e-08,-3.117378699280759842e-08,-3.178503771815677013e-08,-3.239628844350594184e-08,-3.300753916885511355e-08,-3.361878989420428526e-08,-3.423004061955345697e-08,-3.484129134490262868e-08,-3.545254207025180039e-08,-3.606379279560097210e-08,-3.667504352095014381e-08,-3.728629424629931552e-08,-3.789754497164848724e-08,-3.850879569699765895e-08 +0.000000000000000000e+00,-5.727873327055486970e-10,-1.145574665411097394e-09,-1.718361998116646091e-09,-2.291149330822194788e-09,-2.863936663527743692e-09,-3.436723996233292596e-09,-4.009511328938841500e-09,-4.582298661644390404e-09,-5.155085994349939307e-09,-5.727873327055488211e-09,-6.300660659761037115e-09,-6.873447992466586019e-09,-7.446235325172134923e-09,-8.019022657877682999e-09,-8.591809990583231076e-09,-9.164597323288779153e-09,-9.737384655994327229e-09,-1.031017198869987531e-08,-1.088295932140542338e-08,-1.145574665411097146e-08,-1.202853398681651954e-08,-1.260132131952206761e-08,-1.317410865222761569e-08,-1.374689598493316377e-08,-1.431968331763871184e-08,-1.489247065034425992e-08,-1.546525798304980800e-08,-1.603804531575535607e-08,-1.661083264846090415e-08,-1.718361998116645223e-08,-1.775640731387200030e-08,-1.832919464657754838e-08,-1.890198197928309646e-08,-1.947476931198864453e-08,-2.004755664469419261e-08,-2.062034397739974069e-08,-2.119313131010528876e-08,-2.176591864281083684e-08,-2.233870597551638492e-08,-2.291149330822193299e-08,-2.348428064092748107e-08,-2.405706797363302915e-08,-2.462985530633857722e-08,-2.520264263904412530e-08,-2.577542997174967338e-08,-2.634821730445522145e-08,-2.692100463716076953e-08,-2.749379196986631761e-08,-2.806657930257186568e-08,-2.863936663527741376e-08,-2.921215396798296184e-08,-2.978494130068850991e-08,-3.035772863339405799e-08,-3.093051596609960276e-08,-3.150330329880514752e-08,-3.207609063151069229e-08,-3.264887796421623706e-08,-3.322166529692178183e-08,-3.379445262962732660e-08,-3.436723996233287136e-08,-3.494002729503841613e-08,-3.551281462774396090e-08,-3.608560196044950567e-08 +0.000000000000000000e+00,-5.584454500458861562e-10,-1.116890900091772312e-09,-1.675336350137658365e-09,-2.233781800183544211e-09,-2.792227250229430057e-09,-3.350672700275315903e-09,-3.909118150321201749e-09,-4.467563600367087595e-09,-5.026009050412973441e-09,-5.584454500458859287e-09,-6.142899950504745133e-09,-6.701345400550630979e-09,-7.259790850596516825e-09,-7.818236300642403498e-09,-8.376681750688290171e-09,-8.935127200734176844e-09,-9.493572650780063517e-09,-1.005201810082595019e-08,-1.061046355087183686e-08,-1.116890900091772354e-08,-1.172735445096361021e-08,-1.228579990100949688e-08,-1.284424535105538356e-08,-1.340269080110127023e-08,-1.396113625114715690e-08,-1.451958170119304358e-08,-1.507802715123893025e-08,-1.563647260128481692e-08,-1.619491805133070360e-08,-1.675336350137659027e-08,-1.731180895142247694e-08,-1.787025440146836361e-08,-1.842869985151425029e-08,-1.898714530156013696e-08,-1.954559075160602363e-08,-2.010403620165191031e-08,-2.066248165169779698e-08,-2.122092710174368365e-08,-2.177937255178957033e-08,-2.233781800183545700e-08,-2.289626345188134367e-08,-2.345470890192723035e-08,-2.401315435197311702e-08,-2.457159980201900369e-08,-2.513004525206489037e-08,-2.568849070211077704e-08,-2.624693615215666371e-08,-2.680538160220255039e-08,-2.736382705224843706e-08,-2.792227250229432373e-08,-2.848071795234021040e-08,-2.903916340238609708e-08,-2.959760885243198375e-08,-3.015605430247786712e-08,-3.071449975252375379e-08,-3.127294520256964046e-08,-3.183139065261552713e-08,-3.238983610266141381e-08,-3.294828155270730048e-08,-3.350672700275318715e-08,-3.406517245279907383e-08,-3.462361790284496050e-08,-3.518206335289084717e-08 +0.000000000000000000e+00,1.108318175271275941e-09,2.216636350542551883e-09,3.324954525813827824e-09,4.433272701085103766e-09,5.541590876356380121e-09,6.649909051627656476e-09,7.758227226898932831e-09,8.866545402170209185e-09,9.974863577441485540e-09,1.108318175271276190e-08,1.219149992798403825e-08,1.329981810325531461e-08,1.440813627852659096e-08,1.551645445379786566e-08,1.662477262906914036e-08,1.773309080434041506e-08,1.884140897961168976e-08,1.994972715488296446e-08,2.105804533015423916e-08,2.216636350542551386e-08,2.327468168069678857e-08,2.438299985596806327e-08,2.549131803123933797e-08,2.659963620651061267e-08,2.770795438178188737e-08,2.881627255705316207e-08,2.992459073232443677e-08,3.103290890759571147e-08,3.214122708286698617e-08,3.324954525813826087e-08,3.435786343340953557e-08,3.546618160868081027e-08,3.657449978395208497e-08,3.768281795922335967e-08,3.879113613449463437e-08,3.989945430976590907e-08,4.100777248503718378e-08,4.211609066030845848e-08,4.322440883557973318e-08,4.433272701085100788e-08,4.544104518612228258e-08,4.654936336139355728e-08,4.765768153666483198e-08,4.876599971193610668e-08,4.987431788720738138e-08,5.098263606247865608e-08,5.209095423774993078e-08,5.319927241302120548e-08,5.430759058829248018e-08,5.541590876356375488e-08,5.652422693883502958e-08,5.763254511410630428e-08,5.874086328937757899e-08,5.984918146464886030e-08,6.095749963992014824e-08,6.206581781519143617e-08,6.317413599046272411e-08,6.428245416573401205e-08,6.539077234100529998e-08,6.649909051627658792e-08,6.760740869154787585e-08,6.871572686681916379e-08,6.982404504209045172e-08 +0.000000000000000000e+00,1.693894263962469534e-09,3.387788527924939068e-09,5.081682791887408188e-09,6.775577055849877308e-09,8.469471319812346429e-09,1.016336558377481638e-08,1.185725984773728632e-08,1.355115411169975627e-08,1.524504837566222622e-08,1.693894263962469617e-08,1.863283690358716611e-08,2.032673116754963606e-08,2.202062543151210601e-08,2.371451969547457596e-08,2.540841395943704590e-08,2.710230822339951585e-08,2.879620248736198580e-08,3.049009675132445244e-08,3.218399101528691908e-08,3.387788527924938571e-08,3.557177954321185235e-08,3.726567380717431899e-08,3.895956807113678563e-08,4.065346233509925227e-08,4.234735659906171891e-08,4.404125086302418555e-08,4.573514512698665219e-08,4.742903939094911882e-08,4.912293365491158546e-08,5.081682791887405210e-08,5.251072218283651874e-08,5.420461644679898538e-08,5.589851071076145202e-08,5.759240497472391866e-08,5.928629923868638530e-08,6.098019350264885193e-08,6.267408776661131857e-08,6.436798203057378521e-08,6.606187629453625185e-08,6.775577055849871849e-08,6.944966482246118513e-08,7.114355908642365177e-08,7.283745335038611841e-08,7.453134761434858504e-08,7.622524187831105168e-08,7.791913614227351832e-08,7.961303040623598496e-08,8.130692467019845160e-08,8.300081893416091824e-08,8.469471319812338488e-08,8.638860746208585152e-08,8.808250172604831815e-08,8.977639599001078479e-08,9.147029025397325143e-08,9.316418451793571807e-08,9.485807878189818471e-08,9.655197304586065135e-08,9.824586730982311799e-08,9.993976157378558463e-08,1.016336558377480513e-07,1.033275501017105179e-07,1.050214443656729845e-07,1.067153386296354512e-07 +0.000000000000000000e+00,-6.127836895259309938e-21,-1.225567379051861988e-20,-1.838351068577793132e-20,-2.451134758103724276e-20,-3.063918447629655421e-20,-3.676702137155586264e-20,-4.289485826681517107e-20,-4.902269516207447951e-20,-5.515053205733378192e-20,-6.127836895259308434e-20,-6.740620584785238675e-20,-7.353404274311168917e-20,-7.966187963837099158e-20,-8.578971653363029400e-20,-9.191755342888959641e-20,-9.804539032414889883e-20,-1.041732272194082012e-19,-1.103010641146675157e-19,-1.164289010099268301e-19,-1.225567379051861446e-19,-1.286845748004454591e-19,-1.348124116957047735e-19,-1.409402485909640880e-19,-1.470680854862234024e-19,-1.531959223814827169e-19,-1.593237592767420313e-19,-1.654515961720013458e-19,-1.715794330672606602e-19,-1.777072699625199747e-19,-1.838351068577792891e-19,-1.899629437530386036e-19,-1.960907806482979180e-19,-2.022186175435572325e-19,-2.083464544388165469e-19,-2.144742913340758614e-19,-2.206021282293351758e-19,-2.267299651245944903e-19,-2.328578020198538047e-19,-2.389856389151131192e-19,-2.451134758103724336e-19,-2.512413127056317481e-19,-2.573691496008910625e-19,-2.634969864961503770e-19,-2.696248233914096915e-19,-2.757526602866690059e-19,-2.818804971819283204e-19,-2.880083340771876348e-19,-2.941361709724469493e-19,-3.002640078677062637e-19,-3.063918447629655782e-19,-3.125196816582248926e-19,-3.186475185534842071e-19,-3.247753554487435215e-19,-3.309031923440028360e-19,-3.370310292392621504e-19,-3.431588661345214649e-19,-3.492867030297807793e-19,-3.554145399250400938e-19,-3.615423768202994082e-19,-3.676702137155587227e-19,-3.737980506108180371e-19,-3.799258875060773516e-19,-3.860537244013366660e-19 +0.000000000000000000e+00,1.246812703290913449e-09,2.493625406581826899e-09,3.740438109872740348e-09,4.987250813163653798e-09,6.234063516454567247e-09,7.480876219745480697e-09,8.727688923036393319e-09,9.974501626327305941e-09,1.122131432961821856e-08,1.246812703290913119e-08,1.371493973620004381e-08,1.496175243949095808e-08,1.620856514278187236e-08,1.745537784607278664e-08,1.870219054936370091e-08,1.994900325265461519e-08,2.119581595594552947e-08,2.244262865923644374e-08,2.368944136252735802e-08,2.493625406581827230e-08,2.618306676910918657e-08,2.742987947240010085e-08,2.867669217569101513e-08,2.992350487898192940e-08,3.117031758227284699e-08,3.241713028556376458e-08,3.366394298885468216e-08,3.491075569214559975e-08,3.615756839543651733e-08,3.740438109872743492e-08,3.865119380201835250e-08,3.989800650530927009e-08,4.114481920860018767e-08,4.239163191189110526e-08,4.363844461518202284e-08,4.488525731847294043e-08,4.613207002176385801e-08,4.737888272505477560e-08,4.862569542834569319e-08,4.987250813163661077e-08,5.111932083492752836e-08,5.236613353821844594e-08,5.361294624150936353e-08,5.485975894480028111e-08,5.610657164809119870e-08,5.735338435138211628e-08,5.860019705467303387e-08,5.984700975796395145e-08,6.109382246125486904e-08,6.234063516454578662e-08,6.358744786783670421e-08,6.483426057112762180e-08,6.608107327441853938e-08,6.732788597770945697e-08,6.857469868100037455e-08,6.982151138429129214e-08,7.106832408758220972e-08,7.231513679087312731e-08,7.356194949416404489e-08,7.480876219745496248e-08,7.605557490074588006e-08,7.730238760403679765e-08,7.854920030732771523e-08 +0.000000000000000000e+00,1.881490556409596387e-09,3.762981112819192775e-09,5.644471669228789162e-09,7.525962225638385550e-09,9.407452782047981937e-09,1.128894333845757832e-08,1.317043389486717471e-08,1.505192445127677110e-08,1.693341500768636749e-08,1.881490556409596387e-08,2.069639612050556026e-08,2.257788667691515665e-08,2.445937723332475304e-08,2.634086778973434942e-08,2.822235834614394581e-08,3.010384890255354220e-08,3.198533945896313859e-08,3.386683001537273497e-08,3.574832057178233136e-08,3.762981112819192775e-08,3.951130168460152414e-08,4.139279224101112052e-08,4.327428279742071691e-08,4.515577335383031330e-08,4.703726391023990968e-08,4.891875446664950607e-08,5.080024502305910246e-08,5.268173557946869885e-08,5.456322613587829523e-08,5.644471669228789162e-08,5.832620724869748801e-08,6.020769780510708440e-08,6.208918836151668078e-08,6.397067891792627717e-08,6.585216947433587356e-08,6.773366003074546995e-08,6.961515058715506633e-08,7.149664114356466272e-08,7.337813169997425911e-08,7.525962225638385550e-08,7.714111281279345188e-08,7.902260336920304827e-08,8.090409392561264466e-08,8.278558448202224105e-08,8.466707503843183743e-08,8.654856559484143382e-08,8.843005615125103021e-08,9.031154670766062660e-08,9.219303726407022298e-08,9.407452782047981937e-08,9.595601837688941576e-08,9.783750893329901214e-08,9.971899948970860853e-08,1.016004900461182049e-07,1.034819806025278013e-07,1.053634711589373977e-07,1.072449617153469941e-07,1.091264522717565905e-07,1.110079428281661869e-07,1.128894333845757832e-07,1.147709239409853796e-07,1.166524144973949760e-07,1.185339050538045724e-07 +0.000000000000000000e+00,1.225454277115291140e-09,2.450908554230582280e-09,3.676362831345873627e-09,4.901817108461165388e-09,6.127271385576457148e-09,7.352725662691748909e-09,8.578179939807039842e-09,9.803634216922330775e-09,1.102908849403762171e-08,1.225454277115291264e-08,1.347999704826820358e-08,1.470545132538349451e-08,1.593090560249878544e-08,1.715635987961407638e-08,1.838181415672936731e-08,1.960726843384465824e-08,2.083272271095994918e-08,2.205817698807524011e-08,2.328363126519053104e-08,2.450908554230582198e-08,2.573453981942111291e-08,2.695999409653640384e-08,2.818544837365169478e-08,2.941090265076698571e-08,3.063635692788227333e-08,3.186181120499756427e-08,3.308726548211285520e-08,3.431271975922814613e-08,3.553817403634343707e-08,3.676362831345872800e-08,3.798908259057401893e-08,3.921453686768930987e-08,4.043999114480460080e-08,4.166544542191989173e-08,4.289089969903518267e-08,4.411635397615047360e-08,4.534180825326576453e-08,4.656726253038105547e-08,4.779271680749634640e-08,4.901817108461163733e-08,5.024362536172692827e-08,5.146907963884221920e-08,5.269453391595751013e-08,5.391998819307280107e-08,5.514544247018809200e-08,5.637089674730338293e-08,5.759635102441867387e-08,5.882180530153396480e-08,6.004725957864925573e-08,6.127271385576454667e-08,6.249816813287983760e-08,6.372362240999512853e-08,6.494907668711041947e-08,6.617453096422571040e-08,6.739998524134100133e-08,6.862543951845629227e-08,6.985089379557158320e-08,7.107634807268687413e-08,7.230180234980216507e-08,7.352725662691745600e-08,7.475271090403274693e-08,7.597816518114803787e-08,7.720361945826332880e-08 +0.000000000000000000e+00,8.458775128768537802e-10,1.691755025753707560e-09,2.537632538630561341e-09,3.383510051507415121e-09,4.229387564384268487e-09,5.075265077261121854e-09,5.921142590137975221e-09,6.767020103014828587e-09,7.612897615891681954e-09,8.458775128768535320e-09,9.304652641645388687e-09,1.015053015452224205e-08,1.099640766739909542e-08,1.184228518027594879e-08,1.268816269315280215e-08,1.353404020602965552e-08,1.437991771890650889e-08,1.522579523178336391e-08,1.607167274466021893e-08,1.691755025753707395e-08,1.776342777041392897e-08,1.860930528329078399e-08,1.945518279616763901e-08,2.030106030904449403e-08,2.114693782192134905e-08,2.199281533479820408e-08,2.283869284767505910e-08,2.368457036055191412e-08,2.453044787342876914e-08,2.537632538630562416e-08,2.622220289918247918e-08,2.706808041205933420e-08,2.791395792493618922e-08,2.875983543781304424e-08,2.960571295068989926e-08,3.045159046356675428e-08,3.129746797644361261e-08,3.214334548932047094e-08,3.298922300219732927e-08,3.383510051507418760e-08,3.468097802795104593e-08,3.552685554082790426e-08,3.637273305370476259e-08,3.721861056658162092e-08,3.806448807945847925e-08,3.891036559233533758e-08,3.975624310521219591e-08,4.060212061808905424e-08,4.144799813096591257e-08,4.229387564384277090e-08,4.313975315671962923e-08,4.398563066959648756e-08,4.483150818247334589e-08,4.567738569535020422e-08,4.652326320822706255e-08,4.736914072110392088e-08,4.821501823398077921e-08,4.906089574685763754e-08,4.990677325973449587e-08,5.075265077261135420e-08,5.159852828548821253e-08,5.244440579836507086e-08,5.329028331124192919e-08 +0.000000000000000000e+00,-5.875597986146387835e-21,-1.175119597229277567e-20,-1.762679395843916275e-20,-2.350239194458554833e-20,-2.937798993073193391e-20,-3.525358791687831948e-20,-4.112918590302470506e-20,-4.700478388917109064e-20,-5.288038187531747622e-20,-5.875597986146385578e-20,-6.463157784761022932e-20,-7.050717583375660286e-20,-7.638277381990297640e-20,-8.225837180604934994e-20,-8.813396979219572348e-20,-9.400956777834209702e-20,-9.988516576448847056e-20,-1.057607637506348441e-19,-1.116363617367812176e-19,-1.175119597229275912e-19,-1.233875577090739647e-19,-1.292631556952203383e-19,-1.351387536813667118e-19,-1.410143516675130853e-19,-1.468899496536594589e-19,-1.527655476398058324e-19,-1.586411456259522060e-19,-1.645167436120985795e-19,-1.703923415982449530e-19,-1.762679395843913266e-19,-1.821435375705377001e-19,-1.880191355566840737e-19,-1.938947335428304472e-19,-1.997703315289768208e-19,-2.056459295151231943e-19,-2.115215275012695678e-19,-2.173971254874159414e-19,-2.232727234735623390e-19,-2.291483214597087366e-19,-2.350239194458551342e-19,-2.408995174320015318e-19,-2.467751154181479294e-19,-2.526507134042943271e-19,-2.585263113904407247e-19,-2.644019093765871223e-19,-2.702775073627335199e-19,-2.761531053488799175e-19,-2.820287033350263151e-19,-2.879043013211727127e-19,-2.937798993073191104e-19,-2.996554972934655080e-19,-3.055310952796119056e-19,-3.114066932657583032e-19,-3.172822912519047008e-19,-3.231578892380510984e-19,-3.290334872241974961e-19,-3.349090852103438937e-19,-3.407846831964902913e-19,-3.466602811826366889e-19,-3.525358791687830865e-19,-3.584114771549294841e-19,-3.642870751410758817e-19,-3.701626731272222794e-19 +0.000000000000000000e+00,-1.108318175247458723e-09,-2.216636350494917446e-09,-3.324954525742376376e-09,-4.433272700989835720e-09,-5.541590876237295064e-09,-6.649909051484754407e-09,-7.758227226732212924e-09,-8.866545401979671440e-09,-9.974863577227129957e-09,-1.108318175247458847e-08,-1.219149992772204699e-08,-1.329981810296950551e-08,-1.440813627821696402e-08,-1.551645445346442254e-08,-1.662477262871188106e-08,-1.773309080395933957e-08,-1.884140897920679809e-08,-1.994972715445425660e-08,-2.105804532970171512e-08,-2.216636350494917364e-08,-2.327468168019663215e-08,-2.438299985544409067e-08,-2.549131803069154919e-08,-2.659963620593900770e-08,-2.770795438118646622e-08,-2.881627255643392474e-08,-2.992459073168138656e-08,-3.103290890692885169e-08,-3.214122708217631683e-08,-3.324954525742378196e-08,-3.435786343267124710e-08,-3.546618160791871223e-08,-3.657449978316617736e-08,-3.768281795841364250e-08,-3.879113613366110763e-08,-3.989945430890857277e-08,-4.100777248415603790e-08,-4.211609065940350303e-08,-4.322440883465096817e-08,-4.433272700989843330e-08,-4.544104518514589844e-08,-4.654936336039336357e-08,-4.765768153564082870e-08,-4.876599971088829384e-08,-4.987431788613575897e-08,-5.098263606138322410e-08,-5.209095423663068924e-08,-5.319927241187815437e-08,-5.430759058712561951e-08,-5.541590876237308464e-08,-5.652422693762054977e-08,-5.763254511286801491e-08,-5.874086328811548004e-08,-5.984918146336294518e-08,-6.095749963861041031e-08,-6.206581781385787544e-08,-6.317413598910534058e-08,-6.428245416435280571e-08,-6.539077233960027084e-08,-6.649909051484773598e-08,-6.760740869009520111e-08,-6.871572686534266625e-08,-6.982404504059013138e-08 +0.000000000000000000e+00,-1.693894263974775500e-09,-3.387788527949551000e-09,-5.081682791924326913e-09,-6.775577055899102827e-09,-8.469471319873878740e-09,-1.016336558384865383e-08,-1.185725984782342891e-08,-1.355115411179820400e-08,-1.524504837577297909e-08,-1.693894263974775417e-08,-1.863283690372252926e-08,-2.032673116769730434e-08,-2.202062543167207943e-08,-2.371451969564685452e-08,-2.540841395962162960e-08,-2.710230822359640469e-08,-2.879620248757117978e-08,-3.049009675154595155e-08,-3.218399101552072664e-08,-3.387788527949550173e-08,-3.557177954347027681e-08,-3.726567380744505190e-08,-3.895956807141982698e-08,-4.065346233539460207e-08,-4.234735659936937716e-08,-4.404125086334415224e-08,-4.573514512731892733e-08,-4.742903939129370242e-08,-4.912293365526847750e-08,-5.081682791924325259e-08,-5.251072218321802767e-08,-5.420461644719280276e-08,-5.589851071116757785e-08,-5.759240497514235293e-08,-5.928629923911712802e-08,-6.098019350309190311e-08,-6.267408776706667819e-08,-6.436798203104145328e-08,-6.606187629501622836e-08,-6.775577055899100345e-08,-6.944966482296577854e-08,-7.114355908694055362e-08,-7.283745335091532871e-08,-7.453134761489010380e-08,-7.622524187886487888e-08,-7.791913614283965397e-08,-7.961303040681442905e-08,-8.130692467078920414e-08,-8.300081893476397923e-08,-8.469471319873875431e-08,-8.638860746271352940e-08,-8.808250172668830449e-08,-8.977639599066307957e-08,-9.147029025463785466e-08,-9.316418451861262974e-08,-9.485807878258740483e-08,-9.655197304656217992e-08,-9.824586731053695500e-08,-9.993976157451173009e-08,-1.016336558384865052e-07,-1.033275501024612803e-07,-1.050214443664360553e-07,-1.067153386304108304e-07 +0.000000000000000000e+00,-8.458775128891347239e-10,-1.691755025778269448e-09,-2.537632538667404379e-09,-3.383510051556539309e-09,-4.229387564445674240e-09,-5.075265077334808757e-09,-5.921142590223943274e-09,-6.767020103113077792e-09,-7.612897616002213136e-09,-8.458775128891348480e-09,-9.304652641780483825e-09,-1.015053015466961917e-08,-1.099640766755875451e-08,-1.184228518044788986e-08,-1.268816269333702520e-08,-1.353404020622616055e-08,-1.437991771911529589e-08,-1.522579523200443289e-08,-1.607167274489356989e-08,-1.691755025778270689e-08,-1.776342777067184389e-08,-1.860930528356098088e-08,-1.945518279645011788e-08,-2.030106030933925488e-08,-2.114693782222839188e-08,-2.199281533511752888e-08,-2.283869284800666588e-08,-2.368457036089580288e-08,-2.453044787378493987e-08,-2.537632538667407687e-08,-2.622220289956321387e-08,-2.706808041245235087e-08,-2.791395792534148787e-08,-2.875983543823062487e-08,-2.960571295111976187e-08,-3.045159046400889887e-08,-3.129746797689803256e-08,-3.214334548978716625e-08,-3.298922300267629994e-08,-3.383510051556543363e-08,-3.468097802845456732e-08,-3.552685554134370101e-08,-3.637273305423283470e-08,-3.721861056712196839e-08,-3.806448808001110208e-08,-3.891036559290023577e-08,-3.975624310578936946e-08,-4.060212061867850315e-08,-4.144799813156763684e-08,-4.229387564445677053e-08,-4.313975315734590422e-08,-4.398563067023503791e-08,-4.483150818312417160e-08,-4.567738569601330529e-08,-4.652326320890243898e-08,-4.736914072179157267e-08,-4.821501823468070636e-08,-4.906089574756984005e-08,-4.990677326045897374e-08,-5.075265077334810743e-08,-5.159852828623724112e-08,-5.244440579912637481e-08,-5.329028331201550850e-08 +0.000000000000000000e+00,-1.246812703284764809e-09,-2.493625406569529618e-09,-3.740438109854294221e-09,-4.987250813139058410e-09,-6.234063516423822598e-09,-7.480876219708586787e-09,-8.727688922993350149e-09,-9.974501626278113510e-09,-1.122131432956287687e-08,-1.246812703284764023e-08,-1.371493973613240360e-08,-1.496175243941716696e-08,-1.620856514270193032e-08,-1.745537784598669368e-08,-1.870219054927145704e-08,-1.994900325255622040e-08,-2.119581595584098376e-08,-2.244262865912574713e-08,-2.368944136241051049e-08,-2.493625406569527385e-08,-2.618306676898003721e-08,-2.742987947226480057e-08,-2.867669217554956393e-08,-2.992350487883432730e-08,-3.117031758211909066e-08,-3.241713028540385402e-08,-3.366394298868861738e-08,-3.491075569197338074e-08,-3.615756839525814410e-08,-3.740438109854290747e-08,-3.865119380182767083e-08,-3.989800650511243419e-08,-4.114481920839719755e-08,-4.239163191168196091e-08,-4.363844461496672427e-08,-4.488525731825148764e-08,-4.613207002153625100e-08,-4.737888272482101436e-08,-4.862569542810577772e-08,-4.987250813139054108e-08,-5.111932083467530444e-08,-5.236613353796006781e-08,-5.361294624124483117e-08,-5.485975894452959453e-08,-5.610657164781435789e-08,-5.735338435109912125e-08,-5.860019705438388461e-08,-5.984700975766864136e-08,-6.109382246095339148e-08,-6.234063516423814161e-08,-6.358744786752289174e-08,-6.483426057080764186e-08,-6.608107327409239199e-08,-6.732788597737714212e-08,-6.857469868066189224e-08,-6.982151138394664237e-08,-7.106832408723139250e-08,-7.231513679051614263e-08,-7.356194949380089275e-08,-7.480876219708564288e-08,-7.605557490037039301e-08,-7.730238760365514313e-08,-7.854920030693989326e-08 +0.000000000000000000e+00,-1.881490556421394464e-09,-3.762981112842788929e-09,-5.644471669264183393e-09,-7.525962225685577858e-09,-9.407452782106973150e-09,-1.128894333852836844e-08,-1.317043389494976373e-08,-1.505192445137115902e-08,-1.693341500779255432e-08,-1.881490556421394961e-08,-2.069639612063534490e-08,-2.257788667705674019e-08,-2.445937723347813548e-08,-2.634086778989953077e-08,-2.822235834632092607e-08,-3.010384890274232467e-08,-3.198533945916372658e-08,-3.386683001558512848e-08,-3.574832057200653039e-08,-3.762981112842793230e-08,-3.951130168484933421e-08,-4.139279224127073612e-08,-4.327428279769213803e-08,-4.515577335411353994e-08,-4.703726391053494185e-08,-4.891875446695634376e-08,-5.080024502337774567e-08,-5.268173557979914758e-08,-5.456322613622054948e-08,-5.644471669264195139e-08,-5.832620724906335330e-08,-6.020769780548475521e-08,-6.208918836190615712e-08,-6.397067891832755903e-08,-6.585216947474896094e-08,-6.773366003117036285e-08,-6.961515058759176476e-08,-7.149664114401316667e-08,-7.337813170043456858e-08,-7.525962225685597048e-08,-7.714111281327737239e-08,-7.902260336969877430e-08,-8.090409392612017621e-08,-8.278558448254157812e-08,-8.466707503896298003e-08,-8.654856559538438194e-08,-8.843005615180578385e-08,-9.031154670822718576e-08,-9.219303726464858767e-08,-9.407452782106998958e-08,-9.595601837749139149e-08,-9.783750893391279339e-08,-9.971899949033419530e-08,-1.016004900467555972e-07,-1.034819806031769991e-07,-1.053634711595984010e-07,-1.072449617160198029e-07,-1.091264522724412048e-07,-1.110079428288626068e-07,-1.128894333852840087e-07,-1.147709239417054106e-07,-1.166524144981268125e-07,-1.185339050545482144e-07 +0.000000000000000000e+00,-1.225454277091109756e-09,-2.450908554182219511e-09,-3.676362831273329060e-09,-4.901817108364438196e-09,-6.127271385455547331e-09,-7.352725662546656466e-09,-8.578179939637765602e-09,-9.803634216728874737e-09,-1.102908849381998387e-08,-1.225454277091109301e-08,-1.347999704800220214e-08,-1.470545132509331128e-08,-1.593090560218442041e-08,-1.715635987927553120e-08,-1.838181415636664199e-08,-1.960726843345775278e-08,-2.083272271054886357e-08,-2.205817698763997436e-08,-2.328363126473108515e-08,-2.450908554182219594e-08,-2.573453981891330673e-08,-2.695999409600441752e-08,-2.818544837309552831e-08,-2.941090265018663910e-08,-3.063635692727774989e-08,-3.186181120436886068e-08,-3.308726548145997147e-08,-3.431271975855108226e-08,-3.553817403564219305e-08,-3.676362831273330384e-08,-3.798908258982441463e-08,-3.921453686691552542e-08,-4.043999114400663621e-08,-4.166544542109774700e-08,-4.289089969818885779e-08,-4.411635397527996858e-08,-4.534180825237107937e-08,-4.656726252946219016e-08,-4.779271680655330095e-08,-4.901817108364441173e-08,-5.024362536073552252e-08,-5.146907963782663331e-08,-5.269453391491774410e-08,-5.391998819200885489e-08,-5.514544246909996568e-08,-5.637089674619107647e-08,-5.759635102328218726e-08,-5.882180530037329805e-08,-6.004725957746441546e-08,-6.127271385455553948e-08,-6.249816813164666351e-08,-6.372362240873778753e-08,-6.494907668582891156e-08,-6.617453096292003558e-08,-6.739998524001115961e-08,-6.862543951710228363e-08,-6.985089379419340766e-08,-7.107634807128453168e-08,-7.230180234837565571e-08,-7.352725662546677973e-08,-7.475271090255790375e-08,-7.597816517964902778e-08,-7.720361945674015180e-08 +0.000000000000000000e+00,8.837489205344065700e-10,1.767497841068813140e-09,2.651246761603219917e-09,3.534995682137626694e-09,4.418744602672033470e-09,5.302493523206439834e-09,6.186242443740846197e-09,7.069991364275252560e-09,7.953740284809659750e-09,8.837489205344066941e-09,9.721238125878474131e-09,1.060498704641288132e-08,1.148873596694728851e-08,1.237248488748169570e-08,1.325623380801610289e-08,1.413998272855051008e-08,1.502373164908491727e-08,1.590748056961932612e-08,1.679122949015373496e-08,1.767497841068814381e-08,1.855872733122255265e-08,1.944247625175696150e-08,2.032622517229137034e-08,2.120997409282577919e-08,2.209372301336018803e-08,2.297747193389459688e-08,2.386122085442900572e-08,2.474496977496341457e-08,2.562871869549782341e-08,2.651246761603223226e-08,2.739621653656664110e-08,2.827996545710104994e-08,2.916371437763545879e-08,3.004746329816986763e-08,3.093121221870427979e-08,3.181496113923869194e-08,3.269871005977310409e-08,3.358245898030751625e-08,3.446620790084192840e-08,3.534995682137634056e-08,3.623370574191075271e-08,3.711745466244516486e-08,3.800120358297957702e-08,3.888495250351398917e-08,3.976870142404840132e-08,4.065245034458281348e-08,4.153619926511722563e-08,4.241994818565163778e-08,4.330369710618604994e-08,4.418744602672046209e-08,4.507119494725487424e-08,4.595494386778928640e-08,4.683869278832369855e-08,4.772244170885811070e-08,4.860619062939252286e-08,4.948993954992693501e-08,5.037368847046134716e-08,5.125743739099575932e-08,5.214118631153017147e-08,5.302493523206458362e-08,5.390868415259899578e-08,5.479243307313340793e-08,5.567618199366782009e-08 +0.000000000000000000e+00,9.632076701276790372e-10,1.926415340255358074e-09,2.889623010383036905e-09,3.852830680510715322e-09,4.816038350638393739e-09,5.779246020766072155e-09,6.742453690893750572e-09,7.705661361021428989e-09,8.668869031149108233e-09,9.632076701276787477e-09,1.059528437140446672e-08,1.155849204153214597e-08,1.252169971165982521e-08,1.348490738178750445e-08,1.444811505191518370e-08,1.541132272204286129e-08,1.637453039217053888e-08,1.733773806229821647e-08,1.830094573242589406e-08,1.926415340255357165e-08,2.022736107268124924e-08,2.119056874280892682e-08,2.215377641293660441e-08,2.311698408306428200e-08,2.408019175319195959e-08,2.504339942331963718e-08,2.600660709344731477e-08,2.696981476357499236e-08,2.793302243370266995e-08,2.889623010383034754e-08,2.985943777395802513e-08,3.082264544408570272e-08,3.178585311421338031e-08,3.274906078434105790e-08,3.371226845446873549e-08,3.467547612459641308e-08,3.563868379472409067e-08,3.660189146485176826e-08,3.756509913497944585e-08,3.852830680510712344e-08,3.949151447523480103e-08,4.045472214536247862e-08,4.141792981549015621e-08,4.238113748561783380e-08,4.334434515574551139e-08,4.430755282587318898e-08,4.527076049600086657e-08,4.623396816612854416e-08,4.719717583625622175e-08,4.816038350638389933e-08,4.912359117651157692e-08,5.008679884663925451e-08,5.105000651676693210e-08,5.201321418689460969e-08,5.297642185702228728e-08,5.393962952714996487e-08,5.490283719727764246e-08,5.586604486740532005e-08,5.682925253753299764e-08,5.779246020766067523e-08,5.875566787778835282e-08,5.971887554791602379e-08,6.068208321804369477e-08 +0.000000000000000000e+00,9.620068684467074091e-10,1.924013736893414818e-09,2.886020605340122227e-09,3.848027473786829636e-09,4.810034342233536632e-09,5.772041210680243627e-09,6.734048079126950623e-09,7.696054947573657618e-09,8.658061816020364614e-09,9.620068684467071609e-09,1.058207555291377860e-08,1.154408242136048560e-08,1.250608928980719260e-08,1.346809615825389959e-08,1.443010302670060659e-08,1.539210989514731193e-08,1.635411676359401727e-08,1.731612363204072261e-08,1.827813050048742795e-08,1.924013736893413329e-08,2.020214423738083863e-08,2.116415110582754397e-08,2.212615797427424932e-08,2.308816484272095466e-08,2.405017171116766000e-08,2.501217857961436534e-08,2.597418544806107068e-08,2.693619231650777602e-08,2.789819918495448136e-08,2.886020605340118670e-08,2.982221292184788874e-08,3.078421979029459077e-08,3.174622665874129280e-08,3.270823352718799483e-08,3.367024039563469687e-08,3.463224726408139890e-08,3.559425413252810093e-08,3.655626100097480296e-08,3.751826786942150500e-08,3.848027473786820703e-08,3.944228160631490906e-08,4.040428847476161109e-08,4.136629534320831313e-08,4.232830221165501516e-08,4.329030908010171719e-08,4.425231594854841922e-08,4.521432281699512125e-08,4.617632968544182329e-08,4.713833655388852532e-08,4.810034342233522735e-08,4.906235029078192938e-08,5.002435715922863142e-08,5.098636402767533345e-08,5.194837089612203548e-08,5.291037776456873751e-08,5.387238463301543955e-08,5.483439150146214158e-08,5.579639836990884361e-08,5.675840523835554564e-08,5.772041210680224768e-08,5.868241897524894971e-08,5.964442584369564512e-08,6.060643271214234054e-08 +0.000000000000000000e+00,-8.837489204780382438e-10,-1.767497840956076488e-09,-2.651246761434114835e-09,-3.534995681912153389e-09,-4.418744602390192356e-09,-5.302493522868231324e-09,-6.186242443346270291e-09,-7.069991363824309259e-09,-7.953740284302348226e-09,-8.837489204780388021e-09,-9.721238125258427816e-09,-1.060498704573646761e-08,-1.148873596621450741e-08,-1.237248488669254720e-08,-1.325623380717058699e-08,-1.413998272764862679e-08,-1.502373164812666824e-08,-1.590748056860470969e-08,-1.679122948908275114e-08,-1.767497840956079259e-08,-1.855872733003883403e-08,-1.944247625051687548e-08,-2.032622517099491693e-08,-2.120997409147295838e-08,-2.209372301195099983e-08,-2.297747193242904128e-08,-2.386122085290708273e-08,-2.474496977338512418e-08,-2.562871869386316563e-08,-2.651246761434120708e-08,-2.739621653481924853e-08,-2.827996545529728997e-08,-2.916371437577533142e-08,-3.004746329625337618e-08,-3.093121221673142094e-08,-3.181496113720946570e-08,-3.269871005768751046e-08,-3.358245897816555521e-08,-3.446620789864359997e-08,-3.534995681912164473e-08,-3.623370573959968949e-08,-3.711745466007773424e-08,-3.800120358055577900e-08,-3.888495250103382376e-08,-3.976870142151186852e-08,-4.065245034198991328e-08,-4.153619926246795803e-08,-4.241994818294600279e-08,-4.330369710342404755e-08,-4.418744602390209231e-08,-4.507119494438013706e-08,-4.595494386485818182e-08,-4.683869278533622658e-08,-4.772244170581427134e-08,-4.860619062629231610e-08,-4.948993954677036085e-08,-5.037368846724840561e-08,-5.125743738772645037e-08,-5.214118630820449513e-08,-5.302493522868253989e-08,-5.390868414916058464e-08,-5.479243306963862940e-08,-5.567618199011667416e-08 +0.000000000000000000e+00,-9.632076700870681915e-10,-1.926415340174136383e-09,-2.889623010261204781e-09,-3.852830680348273593e-09,-4.816038350435342405e-09,-5.779246020522411217e-09,-6.742453690609480029e-09,-7.705661360696548840e-09,-8.668869030783616825e-09,-9.632076700870684810e-09,-1.059528437095775279e-08,-1.155849204104482078e-08,-1.252169971113188876e-08,-1.348490738121895675e-08,-1.444811505130602473e-08,-1.541132272139309437e-08,-1.637453039148016401e-08,-1.733773806156723365e-08,-1.830094573165430329e-08,-1.926415340174137293e-08,-2.022736107182844257e-08,-2.119056874191551221e-08,-2.215377641200258185e-08,-2.311698408208965148e-08,-2.408019175217672112e-08,-2.504339942226379076e-08,-2.600660709235086040e-08,-2.696981476243793004e-08,-2.793302243252499968e-08,-2.889623010261206932e-08,-2.985943777269913565e-08,-3.082264544278620198e-08,-3.178585311287326831e-08,-3.274906078296033464e-08,-3.371226845304740097e-08,-3.467547612313446730e-08,-3.563868379322153363e-08,-3.660189146330859996e-08,-3.756509913339566629e-08,-3.852830680348273262e-08,-3.949151447356979895e-08,-4.045472214365686528e-08,-4.141792981374393161e-08,-4.238113748383099794e-08,-4.334434515391806427e-08,-4.430755282400513060e-08,-4.527076049409219693e-08,-4.623396816417926326e-08,-4.719717583426632959e-08,-4.816038350435339592e-08,-4.912359117444046225e-08,-5.008679884452752858e-08,-5.105000651461459492e-08,-5.201321418470166125e-08,-5.297642185478872758e-08,-5.393962952487579391e-08,-5.490283719496286024e-08,-5.586604486504992657e-08,-5.682925253513699290e-08,-5.779246020522405923e-08,-5.875566787531112556e-08,-5.971887554539819189e-08,-6.068208321548525822e-08 +0.000000000000000000e+00,-9.620068683888200691e-10,-1.924013736777640138e-09,-2.886020605166460207e-09,-3.848027473555280276e-09,-4.810034341944100345e-09,-5.772041210332920414e-09,-6.734048078721740483e-09,-7.696054947110560552e-09,-8.658061815499379794e-09,-9.620068683888199036e-09,-1.058207555227701828e-08,-1.154408242066583752e-08,-1.250608928905465676e-08,-1.346809615744347600e-08,-1.443010302583229525e-08,-1.539210989422111449e-08,-1.635411676260993373e-08,-1.731612363099875297e-08,-1.827813049938757221e-08,-1.924013736777639145e-08,-2.020214423616521070e-08,-2.116415110455402994e-08,-2.212615797294284918e-08,-2.308816484133166842e-08,-2.405017170972048766e-08,-2.501217857810930691e-08,-2.597418544649812615e-08,-2.693619231488694539e-08,-2.789819918327576463e-08,-2.886020605166458387e-08,-2.982221292005340312e-08,-3.078421978844222236e-08,-3.174622665683104160e-08,-3.270823352521986084e-08,-3.367024039360868008e-08,-3.463224726199749932e-08,-3.559425413038631857e-08,-3.655626099877513781e-08,-3.751826786716395705e-08,-3.848027473555277629e-08,-3.944228160394159553e-08,-4.040428847233041478e-08,-4.136629534071923402e-08,-4.232830220910805326e-08,-4.329030907749687250e-08,-4.425231594588569174e-08,-4.521432281427451099e-08,-4.617632968266333023e-08,-4.713833655105214947e-08,-4.810034341944096871e-08,-4.906235028782978795e-08,-5.002435715621860719e-08,-5.098636402460742644e-08,-5.194837089299624568e-08,-5.291037776138506492e-08,-5.387238462977388416e-08,-5.483439149816270340e-08,-5.579639836655152265e-08,-5.675840523494034189e-08,-5.772041210332916113e-08,-5.868241897171798037e-08,-5.964442584010679300e-08,-6.060643270849561224e-08 +0.000000000000000000e+00,7.853171444817241277e-10,1.570634288963448255e-09,2.355951433445172383e-09,3.141268577926896511e-09,3.926585722408620225e-09,4.711902866890343939e-09,5.497220011372067653e-09,6.282537155853791367e-09,7.067854300335515081e-09,7.853171444817238795e-09,8.638488589298962510e-09,9.423805733780686224e-09,1.020912287826240994e-08,1.099444002274413365e-08,1.177975716722585737e-08,1.256507431170758108e-08,1.335039145618930479e-08,1.413570860067102851e-08,1.492102574515275388e-08,1.570634288963448090e-08,1.649166003411620792e-08,1.727697717859793495e-08,1.806229432307966197e-08,1.884761146756138899e-08,1.963292861204311601e-08,2.041824575652484304e-08,2.120356290100657006e-08,2.198888004548829708e-08,2.277419718997002410e-08,2.355951433445175113e-08,2.434483147893347815e-08,2.513014862341520517e-08,2.591546576789693220e-08,2.670078291237865922e-08,2.748610005686038624e-08,2.827141720134211326e-08,2.905673434582384029e-08,2.984205149030556731e-08,3.062736863478729433e-08,3.141268577926902136e-08,3.219800292375074838e-08,3.298332006823247540e-08,3.376863721271420242e-08,3.455395435719592945e-08,3.533927150167765647e-08,3.612458864615938349e-08,3.690990579064111052e-08,3.769522293512283754e-08,3.848054007960456456e-08,3.926585722408629158e-08,4.005117436856801861e-08,4.083649151304974563e-08,4.162180865753147265e-08,4.240712580201319968e-08,4.319244294649492670e-08,4.397776009097665372e-08,4.476307723545838074e-08,4.554839437994010777e-08,4.633371152442183479e-08,4.711902866890356181e-08,4.790434581338528884e-08,4.868966295786701586e-08,4.947498010234874288e-08 +0.000000000000000000e+00,8.276441371653991592e-10,1.655288274330798318e-09,2.482932411496197271e-09,3.310576548661596223e-09,4.138220685826995176e-09,4.965864822992394542e-09,5.793508960157793908e-09,6.621153097323193274e-09,7.448797234488592640e-09,8.276441371653992006e-09,9.104085508819392199e-09,9.931729645984792392e-09,1.075937378315019259e-08,1.158701792031559278e-08,1.241466205748099297e-08,1.324230619464639316e-08,1.406995033181179336e-08,1.489759446897719355e-08,1.572523860614259374e-08,1.655288274330799394e-08,1.738052688047339413e-08,1.820817101763879432e-08,1.903581515480419452e-08,1.986345929196959471e-08,2.069110342913499490e-08,2.151874756630039510e-08,2.234639170346579529e-08,2.317403584063119548e-08,2.400167997779659568e-08,2.482932411496199587e-08,2.565696825212739606e-08,2.648461238929279626e-08,2.731225652645819645e-08,2.813990066362359664e-08,2.896754480078899684e-08,2.979518893795439703e-08,3.062283307511979722e-08,3.145047721228520072e-08,3.227812134945060423e-08,3.310576548661600773e-08,3.393340962378141123e-08,3.476105376094681473e-08,3.558869789811221823e-08,3.641634203527762174e-08,3.724398617244302524e-08,3.807163030960842874e-08,3.889927444677383224e-08,3.972691858393923574e-08,4.055456272110463925e-08,4.138220685827004275e-08,4.220985099543544625e-08,4.303749513260084975e-08,4.386513926976625325e-08,4.469278340693165675e-08,4.552042754409706026e-08,4.634807168126246376e-08,4.717571581842786726e-08,4.800335995559327076e-08,4.883100409275867426e-08,4.965864822992407777e-08,5.048629236708948127e-08,5.131393650425488477e-08,5.214158064142028827e-08 +0.000000000000000000e+00,8.358169141537819533e-10,1.671633828307563907e-09,2.507450742461345860e-09,3.343267656615127813e-09,4.179084570768909767e-09,5.014901484922691720e-09,5.850718399076473673e-09,6.686535313230255626e-09,7.522352227384038407e-09,8.358169141537821187e-09,9.193986055691603968e-09,1.002980296984538675e-08,1.086561988399916953e-08,1.170143679815295231e-08,1.253725371230673509e-08,1.337307062646051787e-08,1.420888754061430065e-08,1.504470445476808343e-08,1.588052136892186621e-08,1.671633828307564899e-08,1.755215519722943177e-08,1.838797211138321455e-08,1.922378902553699733e-08,2.005960593969078011e-08,2.089542285384456289e-08,2.173123976799834568e-08,2.256705668215212846e-08,2.340287359630591124e-08,2.423869051045969402e-08,2.507450742461347680e-08,2.591032433876725958e-08,2.674614125292104236e-08,2.758195816707482514e-08,2.841777508122860792e-08,2.925359199538239070e-08,3.008940890953617348e-08,3.092522582368995295e-08,3.176104273784373242e-08,3.259685965199751190e-08,3.343267656615129137e-08,3.426849348030507084e-08,3.510431039445885031e-08,3.594012730861262978e-08,3.677594422276640925e-08,3.761176113692018873e-08,3.844757805107396820e-08,3.928339496522774767e-08,4.011921187938152714e-08,4.095502879353530661e-08,4.179084570768908608e-08,4.262666262184286556e-08,4.346247953599664503e-08,4.429829645015042450e-08,4.513411336430420397e-08,4.596993027845798344e-08,4.680574719261176292e-08,4.764156410676554239e-08,4.847738102091932186e-08,4.931319793507310133e-08,5.014901484922688080e-08,5.098483176338066027e-08,5.182064867753443975e-08,5.265646559168821922e-08 +0.000000000000000000e+00,-7.853171443970408921e-10,-1.570634288794081784e-09,-2.355951433191122470e-09,-3.141268577588163155e-09,-3.926585721985203840e-09,-4.711902866382244939e-09,-5.497220010779286038e-09,-6.282537155176327137e-09,-7.067854299573368236e-09,-7.853171443970409335e-09,-8.638488588367449606e-09,-9.423805732764489878e-09,-1.020912287716153015e-08,-1.099444002155857042e-08,-1.177975716595561069e-08,-1.256507431035265096e-08,-1.335039145474969124e-08,-1.413570859914673151e-08,-1.492102574354377178e-08,-1.570634288794081205e-08,-1.649166003233785232e-08,-1.727697717673489260e-08,-1.806229432113193287e-08,-1.884761146552897314e-08,-1.963292860992601341e-08,-2.041824575432305368e-08,-2.120356289872009395e-08,-2.198888004311713423e-08,-2.277419718751417450e-08,-2.355951433191121477e-08,-2.434483147630825504e-08,-2.513014862070529531e-08,-2.591546576510233558e-08,-2.670078290949937586e-08,-2.748610005389641613e-08,-2.827141719829345640e-08,-2.905673434269049667e-08,-2.984205148708753694e-08,-3.062736863148458052e-08,-3.141268577588162410e-08,-3.219800292027866768e-08,-3.298332006467571126e-08,-3.376863720907275484e-08,-3.455395435346979843e-08,-3.533927149786684201e-08,-3.612458864226388559e-08,-3.690990578666092917e-08,-3.769522293105797275e-08,-3.848054007545501633e-08,-3.926585721985205991e-08,-4.005117436424910349e-08,-4.083649150864614707e-08,-4.162180865304319065e-08,-4.240712579744023423e-08,-4.319244294183727781e-08,-4.397776008623432139e-08,-4.476307723063136497e-08,-4.554839437502840855e-08,-4.633371151942545213e-08,-4.711902866382249571e-08,-4.790434580821953929e-08,-4.868966295261658287e-08,-4.947498009701362645e-08 +0.000000000000000000e+00,-8.276441370942936798e-10,-1.655288274188587360e-09,-2.482932411282881039e-09,-3.310576548377174719e-09,-4.138220685471468813e-09,-4.965864822565762906e-09,-5.793508959660056999e-09,-6.621153096754351093e-09,-7.448797233848645186e-09,-8.276441370942939279e-09,-9.104085508037233373e-09,-9.931729645131527466e-09,-1.075937378222582156e-08,-1.158701791932011565e-08,-1.241466205641440975e-08,-1.324230619350870384e-08,-1.406995033060299793e-08,-1.489759446769729203e-08,-1.572523860479158612e-08,-1.655288274188588187e-08,-1.738052687898017762e-08,-1.820817101607447336e-08,-1.903581515316876911e-08,-1.986345929026306486e-08,-2.069110342735736061e-08,-2.151874756445165635e-08,-2.234639170154595210e-08,-2.317403583864024785e-08,-2.400167997573454360e-08,-2.482932411282883935e-08,-2.565696824992313509e-08,-2.648461238701743084e-08,-2.731225652411172659e-08,-2.813990066120602234e-08,-2.896754479830031808e-08,-2.979518893539461383e-08,-3.062283307248890627e-08,-3.145047720958319871e-08,-3.227812134667749115e-08,-3.310576548377178359e-08,-3.393340962086607603e-08,-3.476105375796036847e-08,-3.558869789505466090e-08,-3.641634203214895334e-08,-3.724398616924324578e-08,-3.807163030633753822e-08,-3.889927444343183066e-08,-3.972691858052612310e-08,-4.055456271762041554e-08,-4.138220685471470798e-08,-4.220985099180900042e-08,-4.303749512890329286e-08,-4.386513926599758529e-08,-4.469278340309187773e-08,-4.552042754018617017e-08,-4.634807167728046261e-08,-4.717571581437475505e-08,-4.800335995146904749e-08,-4.883100408856333993e-08,-4.965864822565763237e-08,-5.048629236275192481e-08,-5.131393649984621725e-08,-5.214158063694050969e-08 +0.000000000000000000e+00,-8.358169140654392707e-10,-1.671633828130878541e-09,-2.507450742196318019e-09,-3.343267656261757496e-09,-4.179084570327196974e-09,-5.014901484392636038e-09,-5.850718398458075102e-09,-6.686535312523514165e-09,-7.522352226588952402e-09,-8.358169140654390639e-09,-9.193986054719828876e-09,-1.002980296878526711e-08,-1.086561988285070535e-08,-1.170143679691614359e-08,-1.253725371098158182e-08,-1.337307062504702006e-08,-1.420888753911245830e-08,-1.504470445317789819e-08,-1.588052136724333808e-08,-1.671633828130877797e-08,-1.755215519537421786e-08,-1.838797210943965775e-08,-1.922378902350509764e-08,-2.005960593757053753e-08,-2.089542285163597742e-08,-2.173123976570141732e-08,-2.256705667976685721e-08,-2.340287359383229710e-08,-2.423869050789773699e-08,-2.507450742196317688e-08,-2.591032433602861677e-08,-2.674614125009405666e-08,-2.758195816415949655e-08,-2.841777507822493644e-08,-2.925359199229037633e-08,-3.008940890635581623e-08,-3.092522582042125281e-08,-3.176104273448668939e-08,-3.259685964855212597e-08,-3.343267656261756256e-08,-3.426849347668299914e-08,-3.510431039074843572e-08,-3.594012730481387230e-08,-3.677594421887930888e-08,-3.761176113294474547e-08,-3.844757804701018205e-08,-3.928339496107561863e-08,-4.011921187514105521e-08,-4.095502878920649180e-08,-4.179084570327192838e-08,-4.262666261733736496e-08,-4.346247953140280154e-08,-4.429829644546823813e-08,-4.513411335953367471e-08,-4.596993027359911129e-08,-4.680574718766454787e-08,-4.764156410172998446e-08,-4.847738101579542104e-08,-4.931319792986085762e-08,-5.014901484392629420e-08,-5.098483175799173078e-08,-5.182064867205716737e-08,-5.265646558612260395e-08 +0.000000000000000000e+00,7.296791497804522499e-10,1.459358299560904500e-09,2.189037449341356750e-09,2.918716599121808999e-09,3.648395748902261249e-09,4.378074898682713499e-09,5.107754048463165749e-09,5.837433198243617999e-09,6.567112348024070249e-09,7.296791497804522499e-09,8.026470647584973921e-09,8.756149797365425344e-09,9.485828947145876767e-09,1.021550809692632819e-08,1.094518724670677961e-08,1.167486639648723103e-08,1.240454554626768246e-08,1.313422469604813388e-08,1.386390384582858530e-08,1.459358299560903673e-08,1.532326214538948815e-08,1.605294129516994123e-08,1.678262044495039430e-08,1.751229959473084738e-08,1.824197874451130046e-08,1.897165789429175353e-08,1.970133704407220661e-08,2.043101619385265969e-08,2.116069534363311276e-08,2.189037449341356584e-08,2.262005364319401892e-08,2.334973279297447200e-08,2.407941194275492507e-08,2.480909109253537815e-08,2.553877024231583123e-08,2.626844939209628430e-08,2.699812854187673738e-08,2.772780769165719046e-08,2.845748684143764354e-08,2.918716599121809661e-08,2.991684514099854969e-08,3.064652429077900277e-08,3.137620344055945584e-08,3.210588259033990892e-08,3.283556174012036200e-08,3.356524088990081507e-08,3.429492003968126815e-08,3.502459918946172123e-08,3.575427833924217431e-08,3.648395748902262738e-08,3.721363663880308046e-08,3.794331578858353354e-08,3.867299493836398661e-08,3.940267408814443969e-08,4.013235323792489277e-08,4.086203238770534585e-08,4.159171153748579892e-08,4.232139068726625200e-08,4.305106983704670508e-08,4.378074898682715815e-08,4.451042813660761123e-08,4.524010728638806431e-08,4.596978643616851738e-08 +0.000000000000000000e+00,7.554445695040972797e-10,1.510889139008194559e-09,2.266333708512291839e-09,3.021778278016389119e-09,3.777222847520486812e-09,4.532667417024584505e-09,5.288111986528682199e-09,6.043556556032779892e-09,6.799001125536877585e-09,7.554445695040975278e-09,8.309890264545072972e-09,9.065334834049170665e-09,9.820779403553268358e-09,1.057622397305736605e-08,1.133166854256146374e-08,1.208711311206556144e-08,1.284255768156965913e-08,1.359800225107375682e-08,1.435344682057785452e-08,1.510889139008195387e-08,1.586433595958605321e-08,1.661978052909015256e-08,1.737522509859425191e-08,1.813066966809835126e-08,1.888611423760245060e-08,1.964155880710654995e-08,2.039700337661064930e-08,2.115244794611474865e-08,2.190789251561884799e-08,2.266333708512294734e-08,2.341878165462704669e-08,2.417422622413114604e-08,2.492967079363524539e-08,2.568511536313934473e-08,2.644055993264344408e-08,2.719600450214754343e-08,2.795144907165164278e-08,2.870689364115574212e-08,2.946233821065984147e-08,3.021778278016394082e-08,3.097322734966803686e-08,3.172867191917213290e-08,3.248411648867622894e-08,3.323956105818032497e-08,3.399500562768442101e-08,3.475045019718851705e-08,3.550589476669261309e-08,3.626133933619670913e-08,3.701678390570080517e-08,3.777222847520490121e-08,3.852767304470899725e-08,3.928311761421309329e-08,4.003856218371718932e-08,4.079400675322128536e-08,4.154945132272538140e-08,4.230489589222947744e-08,4.306034046173357348e-08,4.381578503123766952e-08,4.457122960074176556e-08,4.532667417024586160e-08,4.608211873974995764e-08,4.683756330925405367e-08,4.759300787875814971e-08 +0.000000000000000000e+00,7.619214482827293509e-10,1.523842896565458702e-09,2.285764344848187949e-09,3.047685793130916990e-09,3.809607241413645617e-09,4.571528689696374244e-09,5.333450137979102871e-09,6.095371586261831498e-09,6.857293034544560125e-09,7.619214482827287925e-09,8.381135931110015725e-09,9.143057379392743525e-09,9.904978827675471325e-09,1.066690027595819912e-08,1.142882172424092692e-08,1.219074317252365472e-08,1.295266462080638252e-08,1.371458606908911032e-08,1.447650751737183812e-08,1.523842896565456592e-08,1.600035041393729538e-08,1.676227186222002483e-08,1.752419331050275429e-08,1.828611475878548374e-08,1.904803620706821320e-08,1.980995765535094265e-08,2.057187910363367210e-08,2.133380055191640156e-08,2.209572200019913101e-08,2.285764344848186047e-08,2.361956489676458992e-08,2.438148634504731938e-08,2.514340779333004883e-08,2.590532924161277828e-08,2.666725068989550774e-08,2.742917213817823719e-08,2.819109358646096665e-08,2.895301503474369610e-08,2.971493648302642556e-08,3.047685793130915170e-08,3.123877937959187785e-08,3.200070082787460399e-08,3.276262227615733014e-08,3.352454372444005628e-08,3.428646517272278243e-08,3.504838662100550857e-08,3.581030806928823472e-08,3.657222951757096087e-08,3.733415096585368701e-08,3.809607241413641316e-08,3.885799386241913930e-08,3.961991531070186545e-08,4.038183675898459159e-08,4.114375820726731774e-08,4.190567965555004388e-08,4.266760110383277003e-08,4.342952255211549617e-08,4.419144400039822232e-08,4.495336544868094847e-08,4.571528689696367461e-08,4.647720834524640076e-08,4.723912979352912690e-08,4.800105124181185305e-08 +0.000000000000000000e+00,-7.296791496720436132e-10,-1.459358299344087226e-09,-2.189037449016130839e-09,-2.918716598688174453e-09,-3.648395748360218066e-09,-4.378074898032261679e-09,-5.107754047704305292e-09,-5.837433197376348905e-09,-6.567112347048392518e-09,-7.296791496720436132e-09,-8.026470646392480572e-09,-8.756149796064525012e-09,-9.485828945736569453e-09,-1.021550809540861389e-08,-1.094518724508065833e-08,-1.167486639475270277e-08,-1.240454554442474721e-08,-1.313422469409679165e-08,-1.386390384376883609e-08,-1.459358299344088053e-08,-1.532326214311292498e-08,-1.605294129278496776e-08,-1.678262044245701055e-08,-1.751229959212905333e-08,-1.824197874180109612e-08,-1.897165789147313891e-08,-1.970133704114518169e-08,-2.043101619081722448e-08,-2.116069534048926726e-08,-2.189037449016131005e-08,-2.262005363983335283e-08,-2.334973278950539562e-08,-2.407941193917743841e-08,-2.480909108884948119e-08,-2.553877023852152398e-08,-2.626844938819356676e-08,-2.699812853786560955e-08,-2.772780768753765234e-08,-2.845748683720969512e-08,-2.918716598688173791e-08,-2.991684513655377739e-08,-3.064652428622581686e-08,-3.137620343589785634e-08,-3.210588258556989582e-08,-3.283556173524193530e-08,-3.356524088491397477e-08,-3.429492003458601425e-08,-3.502459918425805373e-08,-3.575427833393009320e-08,-3.648395748360213268e-08,-3.721363663327417216e-08,-3.794331578294621164e-08,-3.867299493261825111e-08,-3.940267408229029059e-08,-4.013235323196233007e-08,-4.086203238163436954e-08,-4.159171153130640902e-08,-4.232139068097844850e-08,-4.305106983065048798e-08,-4.378074898032252745e-08,-4.451042812999456693e-08,-4.524010727966660641e-08,-4.596978642933864589e-08 +0.000000000000000000e+00,-7.554445694069580482e-10,-1.510889138813916096e-09,-2.266333708220874041e-09,-3.021778277627831779e-09,-3.777222847034789517e-09,-4.532667416441747255e-09,-5.288111985848704994e-09,-6.043556555255662732e-09,-6.799001124662620470e-09,-7.554445694069579035e-09,-8.309890263476537600e-09,-9.065334832883496165e-09,-9.820779402290454731e-09,-1.057622397169741330e-08,-1.133166854110437186e-08,-1.208711311051133043e-08,-1.284255767991828899e-08,-1.359800224932524756e-08,-1.435344681873220612e-08,-1.510889138813916469e-08,-1.586433595754612325e-08,-1.661978052695308182e-08,-1.737522509636004038e-08,-1.813066966576699895e-08,-1.888611423517395751e-08,-1.964155880458091608e-08,-2.039700337398787464e-08,-2.115244794339483321e-08,-2.190789251280179177e-08,-2.266333708220875034e-08,-2.341878165161570890e-08,-2.417422622102266747e-08,-2.492967079042962604e-08,-2.568511535983658460e-08,-2.644055992924354317e-08,-2.719600449865050173e-08,-2.795144906805746030e-08,-2.870689363746441886e-08,-2.946233820687137743e-08,-3.021778277627833599e-08,-3.097322734568529456e-08,-3.172867191509225312e-08,-3.248411648449921169e-08,-3.323956105390617025e-08,-3.399500562331312882e-08,-3.475045019272008738e-08,-3.550589476212704595e-08,-3.626133933153400451e-08,-3.701678390094096308e-08,-3.777222847034792164e-08,-3.852767303975488021e-08,-3.928311760916183877e-08,-4.003856217856879734e-08,-4.079400674797575590e-08,-4.154945131738271447e-08,-4.230489588678967304e-08,-4.306034045619663160e-08,-4.381578502560359017e-08,-4.457122959501054873e-08,-4.532667416441750730e-08,-4.608211873382446586e-08,-4.683756330323142443e-08,-4.759300787263838299e-08 +0.000000000000000000e+00,-7.619214481674200633e-10,-1.523842896334840127e-09,-2.285764344502260190e-09,-3.047685792669680253e-09,-3.809607240837100730e-09,-4.571528689004521207e-09,-5.333450137171941684e-09,-6.095371585339362161e-09,-6.857293033506782638e-09,-7.619214481674203114e-09,-8.381135929841623591e-09,-9.143057378009044068e-09,-9.904978826176464545e-09,-1.066690027434388502e-08,-1.142882172251130550e-08,-1.219074317067872598e-08,-1.295266461884614645e-08,-1.371458606701356693e-08,-1.447650751518098741e-08,-1.523842896334840954e-08,-1.600035041151583332e-08,-1.676227185968325711e-08,-1.752419330785068089e-08,-1.828611475601810468e-08,-1.904803620418552847e-08,-1.980995765235295225e-08,-2.057187910052037604e-08,-2.133380054868779982e-08,-2.209572199685522361e-08,-2.285764344502264739e-08,-2.361956489319007118e-08,-2.438148634135749496e-08,-2.514340778952491875e-08,-2.590532923769234254e-08,-2.666725068585976632e-08,-2.742917213402719011e-08,-2.819109358219461389e-08,-2.895301503036203768e-08,-2.971493647852946146e-08,-3.047685792669688525e-08,-3.123877937486430903e-08,-3.200070082303173282e-08,-3.276262227119915661e-08,-3.352454371936658039e-08,-3.428646516753400418e-08,-3.504838661570142796e-08,-3.581030806386885175e-08,-3.657222951203627553e-08,-3.733415096020369932e-08,-3.809607240837112311e-08,-3.885799385653854689e-08,-3.961991530470597068e-08,-4.038183675287339446e-08,-4.114375820104081825e-08,-4.190567964920824203e-08,-4.266760109737566582e-08,-4.342952254554308960e-08,-4.419144399371051339e-08,-4.495336544187793718e-08,-4.571528689004536096e-08,-4.647720833821278475e-08,-4.723912978638020853e-08,-4.800105123454763232e-08 +0.000000000000000000e+00,6.955612185323158420e-10,1.391122437064631684e-09,2.086683655596947629e-09,2.782244874129263782e-09,3.477806092661579934e-09,4.173367311193896086e-09,4.868928529726211825e-09,5.564489748258527563e-09,6.260050966790843302e-09,6.955612185323159041e-09,7.651173403855474779e-09,8.346734622387790518e-09,9.042295840920106257e-09,9.737857059452421995e-09,1.043341827798473773e-08,1.112897949651705347e-08,1.182454071504936921e-08,1.252010193358168495e-08,1.321566315211400069e-08,1.391122437064631643e-08,1.460678558917863217e-08,1.530234680771094956e-08,1.599790802624326695e-08,1.669346924477558434e-08,1.738903046330790174e-08,1.808459168184021913e-08,1.878015290037253652e-08,1.947571411890485392e-08,2.017127533743717131e-08,2.086683655596948870e-08,2.156239777450180610e-08,2.225795899303412349e-08,2.295352021156644088e-08,2.364908143009875827e-08,2.434464264863107567e-08,2.504020386716339306e-08,2.573576508569571045e-08,2.643132630422802785e-08,2.712688752276034524e-08,2.782244874129266263e-08,2.851800995982498003e-08,2.921357117835729742e-08,2.990913239688961812e-08,3.060469361542193882e-08,3.130025483395425952e-08,3.199581605248658023e-08,3.269137727101890093e-08,3.338693848955122163e-08,3.408249970808354233e-08,3.477806092661586303e-08,3.547362214514818373e-08,3.616918336368050444e-08,3.686474458221282514e-08,3.756030580074514584e-08,3.825586701927746654e-08,3.895142823780978724e-08,3.964698945634210794e-08,4.034255067487442865e-08,4.103811189340674935e-08,4.173367311193907005e-08,4.242923433047139075e-08,4.312479554900371145e-08,4.382035676753603215e-08 +0.000000000000000000e+00,7.114566686127689940e-10,1.422913337225537988e-09,2.134370005838306879e-09,2.845826674451075562e-09,3.557283343063844246e-09,4.268740011676612930e-09,4.980196680289381614e-09,5.691653348902150298e-09,6.403110017514918981e-09,7.114566686127687665e-09,7.826023354740456349e-09,8.537480023353224206e-09,9.248936691965992062e-09,9.960393360578759919e-09,1.067185002919152778e-08,1.138330669780429563e-08,1.209476336641706349e-08,1.280622003502983135e-08,1.351767670364259920e-08,1.422913337225536706e-08,1.494059004086813492e-08,1.565204670948090277e-08,1.636350337809367063e-08,1.707496004670643849e-08,1.778641671531920634e-08,1.849787338393197420e-08,1.920933005254474206e-08,1.992078672115750991e-08,2.063224338977027777e-08,2.134370005838304563e-08,2.205515672699581348e-08,2.276661339560858134e-08,2.347807006422134919e-08,2.418952673283411705e-08,2.490098340144688491e-08,2.561244007005965276e-08,2.632389673867242062e-08,2.703535340728518848e-08,2.774681007589795633e-08,2.845826674451072419e-08,2.916972341312349205e-08,2.988118008173626321e-08,3.059263675034903769e-08,3.130409341896181216e-08,3.201555008757458664e-08,3.272700675618736111e-08,3.343846342480013558e-08,3.414992009341291006e-08,3.486137676202568453e-08,3.557283343063845901e-08,3.628429009925123348e-08,3.699574676786400795e-08,3.770720343647678243e-08,3.841866010508955690e-08,3.913011677370233138e-08,3.984157344231510585e-08,4.055303011092788032e-08,4.126448677954065480e-08,4.197594344815342927e-08,4.268740011676620375e-08,4.339885678537897822e-08,4.411031345399175269e-08,4.482177012260452717e-08 +0.000000000000000000e+00,7.124009241768704279e-10,1.424801848353740856e-09,2.137202772530611180e-09,2.849603696707481298e-09,3.562004620884351416e-09,4.274405545061221533e-09,4.986806469238091651e-09,5.699207393414961769e-09,6.411608317591831887e-09,7.124009241768702004e-09,7.836410165945572949e-09,8.548811090122444721e-09,9.261212014299316493e-09,9.973612938476188265e-09,1.068601386265306004e-08,1.139841478682993181e-08,1.211081571100680358e-08,1.282321663518367535e-08,1.353561755936054713e-08,1.424801848353741890e-08,1.496041940771429067e-08,1.567282033189116244e-08,1.638522125606803421e-08,1.709762218024490599e-08,1.781002310442177776e-08,1.852242402859864953e-08,1.923482495277552130e-08,1.994722587695239307e-08,2.065962680112926485e-08,2.137202772530613662e-08,2.208442864948300839e-08,2.279682957365988016e-08,2.350923049783675193e-08,2.422163142201362371e-08,2.493403234619049548e-08,2.564643327036736725e-08,2.635883419454423902e-08,2.707123511872111080e-08,2.778363604289798257e-08,2.849603696707485434e-08,2.920843789125172611e-08,2.992083881542860119e-08,3.063323973960547958e-08,3.134564066378235797e-08,3.205804158795923636e-08,3.277044251213611475e-08,3.348284343631299314e-08,3.419524436048987153e-08,3.490764528466674992e-08,3.562004620884362831e-08,3.633244713302050670e-08,3.704484805719738509e-08,3.775724898137426348e-08,3.846964990555114187e-08,3.918205082972802026e-08,3.989445175390489865e-08,4.060685267808177704e-08,4.131925360225865542e-08,4.203165452643553381e-08,4.274405545061241220e-08,4.345645637478929059e-08,4.416885729896616898e-08,4.488125822314304737e-08 +0.000000000000000000e+00,-6.955612184048064676e-10,-1.391122436809612935e-09,-2.086683655214419196e-09,-2.782244873619225457e-09,-3.477806092024031718e-09,-4.173367310428838392e-09,-4.868928528833645066e-09,-5.564489747238451741e-09,-6.260050965643258415e-09,-6.955612184048065090e-09,-7.651173402452870937e-09,-8.346734620857676784e-09,-9.042295839262482631e-09,-9.737857057667288478e-09,-1.043341827607209433e-08,-1.112897949447690017e-08,-1.182454071288170602e-08,-1.252010193128651187e-08,-1.321566314969131771e-08,-1.391122436809612356e-08,-1.460678558650092941e-08,-1.530234680490573526e-08,-1.599790802331054110e-08,-1.669346924171534695e-08,-1.738903046012015280e-08,-1.808459167852495864e-08,-1.878015289692976449e-08,-1.947571411533457034e-08,-2.017127533373937619e-08,-2.086683655214418203e-08,-2.156239777054898788e-08,-2.225795898895379373e-08,-2.295352020735859958e-08,-2.364908142576340542e-08,-2.434464264416821127e-08,-2.504020386257301712e-08,-2.573576508097782296e-08,-2.643132629938262881e-08,-2.712688751778743466e-08,-2.782244873619224051e-08,-2.851800995459704635e-08,-2.921357117300185220e-08,-2.990913239140665474e-08,-3.060469360981145728e-08,-3.130025482821625982e-08,-3.199581604662106235e-08,-3.269137726502586489e-08,-3.338693848343066743e-08,-3.408249970183546997e-08,-3.477806092024027251e-08,-3.547362213864507505e-08,-3.616918335704987759e-08,-3.686474457545468012e-08,-3.756030579385948266e-08,-3.825586701226428520e-08,-3.895142823066908774e-08,-3.964698944907389028e-08,-4.034255066747869282e-08,-4.103811188588349535e-08,-4.173367310428829789e-08,-4.242923432269310043e-08,-4.312479554109790297e-08,-4.382035675950270551e-08 +0.000000000000000000e+00,-7.114566684942594480e-10,-1.422913336988518896e-09,-2.134370005482778447e-09,-2.845826673977038206e-09,-3.557283342471297964e-09,-4.268740010965557722e-09,-4.980196679459817067e-09,-5.691653347954076411e-09,-6.403110016448335756e-09,-7.114566684942595101e-09,-7.826023353436854445e-09,-8.537480021931113790e-09,-9.248936690425373135e-09,-9.960393358919632479e-09,-1.067185002741389182e-08,-1.138330669590815117e-08,-1.209476336440241051e-08,-1.280622003289666986e-08,-1.351767670139092920e-08,-1.422913336988518855e-08,-1.494059003837944955e-08,-1.565204670687371220e-08,-1.636350337536797485e-08,-1.707496004386223751e-08,-1.778641671235650016e-08,-1.849787338085076281e-08,-1.920933004934502547e-08,-1.992078671783928812e-08,-2.063224338633355077e-08,-2.134370005482781343e-08,-2.205515672332207608e-08,-2.276661339181633873e-08,-2.347807006031060139e-08,-2.418952672880486404e-08,-2.490098339729912669e-08,-2.561244006579338935e-08,-2.632389673428765200e-08,-2.703535340278191465e-08,-2.774681007127617731e-08,-2.845826673977043996e-08,-2.916972340826470261e-08,-2.988118007675896527e-08,-3.059263674525322792e-08,-3.130409341374749057e-08,-3.201555008224175323e-08,-3.272700675073601588e-08,-3.343846341923027853e-08,-3.414992008772454119e-08,-3.486137675621880384e-08,-3.557283342471306649e-08,-3.628429009320732915e-08,-3.699574676170159180e-08,-3.770720343019585445e-08,-3.841866009869011711e-08,-3.913011676718437976e-08,-3.984157343567864241e-08,-4.055303010417290507e-08,-4.126448677266716772e-08,-4.197594344116143037e-08,-4.268740010965569303e-08,-4.339885677814995568e-08,-4.411031344664421833e-08,-4.482177011513848099e-08 +0.000000000000000000e+00,-7.124009240384551941e-10,-1.424801848076910388e-09,-2.137202772115365686e-09,-2.849603696153821190e-09,-3.562004620192276694e-09,-4.274405544230732198e-09,-4.986806468269187703e-09,-5.699207392307643207e-09,-6.411608316346098711e-09,-7.124009240384554216e-09,-7.836410164423009720e-09,-8.548811088461466051e-09,-9.261212012499922383e-09,-9.973612936538378714e-09,-1.068601386057683505e-08,-1.139841478461529138e-08,-1.211081570865374771e-08,-1.282321663269220404e-08,-1.353561755673066037e-08,-1.424801848076911670e-08,-1.496041940480757469e-08,-1.567282032884603267e-08,-1.638522125288449066e-08,-1.709762217692294865e-08,-1.781002310096140663e-08,-1.852242402499986462e-08,-1.923482494903832260e-08,-1.994722587307678059e-08,-2.065962679711523858e-08,-2.137202772115369656e-08,-2.208442864519215455e-08,-2.279682956923061253e-08,-2.350923049326907052e-08,-2.422163141730752850e-08,-2.493403234134598649e-08,-2.564643326538444448e-08,-2.635883418942290246e-08,-2.707123511346136045e-08,-2.778363603749981843e-08,-2.849603696153827642e-08,-2.920843788557673441e-08,-2.992083880961518908e-08,-3.063323973365364376e-08,-3.134564065769209844e-08,-3.205804158173055311e-08,-3.277044250576900779e-08,-3.348284342980746247e-08,-3.419524435384591714e-08,-3.490764527788437182e-08,-3.562004620192282650e-08,-3.633244712596128118e-08,-3.704484804999973585e-08,-3.775724897403819053e-08,-3.846964989807664521e-08,-3.918205082211509988e-08,-3.989445174615355456e-08,-4.060685267019200924e-08,-4.131925359423046392e-08,-4.203165451826891859e-08,-4.274405544230737327e-08,-4.345645636634582795e-08,-4.416885729038428262e-08,-4.488125821442273730e-08 +0.000000000000000000e+00,6.761585993821604352e-10,1.352317198764320870e-09,2.028475798146481306e-09,2.704634397528641741e-09,3.380792996910802176e-09,4.056951596292962611e-09,4.733110195675123046e-09,5.409268795057283481e-09,6.085427394439443917e-09,6.761585993821604352e-09,7.437744593203764787e-09,8.113903192585925222e-09,8.790061791968085657e-09,9.466220391350246093e-09,1.014237899073240653e-08,1.081853759011456696e-08,1.149469618949672740e-08,1.217085478887888783e-08,1.284701338826104827e-08,1.352317198764320870e-08,1.419933058702536914e-08,1.487548918640752957e-08,1.555164778578968835e-08,1.622780638517184714e-08,1.690396498455400592e-08,1.758012358393616470e-08,1.825628218331832348e-08,1.893244078270048226e-08,1.960859938208264104e-08,2.028475798146479982e-08,2.096091658084695860e-08,2.163707518022911738e-08,2.231323377961127616e-08,2.298939237899343494e-08,2.366555097837559372e-08,2.434170957775775251e-08,2.501786817713991129e-08,2.569402677652207007e-08,2.637018537590422885e-08,2.704634397528638763e-08,2.772250257466854641e-08,2.839866117405070519e-08,2.907481977343286397e-08,2.975097837281502275e-08,3.042713697219718153e-08,3.110329557157933700e-08,3.177945417096149248e-08,3.245561277034364795e-08,3.313177136972580342e-08,3.380792996910795889e-08,3.448408856849011437e-08,3.516024716787226984e-08,3.583640576725442531e-08,3.651256436663658078e-08,3.718872296601873625e-08,3.786488156540089173e-08,3.854104016478304720e-08,3.921719876416520267e-08,3.989335736354735814e-08,4.056951596292951361e-08,4.124567456231166909e-08,4.192183316169382456e-08,4.259799176107598003e-08 +0.000000000000000000e+00,6.844221344459606279e-10,1.368844268891921256e-09,2.053266403337881780e-09,2.737688537783842098e-09,3.422110672229802416e-09,4.106532806675762734e-09,4.790954941121722638e-09,5.475377075567682542e-09,6.159799210013642446e-09,6.844221344459602350e-09,7.528643478905562254e-09,8.213065613351522158e-09,8.897487747797482063e-09,9.581909882243441967e-09,1.026633201668940187e-08,1.095075415113536177e-08,1.163517628558132168e-08,1.231959842002728158e-08,1.300402055447324149e-08,1.368844268891920139e-08,1.437286482336516130e-08,1.505728695781112120e-08,1.574170909225708110e-08,1.642613122670304101e-08,1.711055336114900091e-08,1.779497549559496082e-08,1.847939763004092072e-08,1.916381976448688062e-08,1.984824189893284053e-08,2.053266403337880043e-08,2.121708616782476034e-08,2.190150830227072024e-08,2.258593043671668015e-08,2.327035257116264005e-08,2.395477470560859995e-08,2.463919684005455986e-08,2.532361897450051976e-08,2.600804110894647967e-08,2.669246324339243957e-08,2.737688537783839947e-08,2.806130751228435938e-08,2.874572964673031928e-08,2.943015178117627919e-08,3.011457391562223578e-08,3.079899605006819238e-08,3.148341818451414897e-08,3.216784031896010557e-08,3.285226245340606216e-08,3.353668458785201876e-08,3.422110672229797535e-08,3.490552885674393195e-08,3.558995099118988855e-08,3.627437312563584514e-08,3.695879526008180174e-08,3.764321739452775833e-08,3.832763952897371493e-08,3.901206166341967152e-08,3.969648379786562812e-08,4.038090593231158471e-08,4.106532806675754131e-08,4.174975020120349790e-08,4.243417233564945450e-08,4.311859447009541110e-08 +0.000000000000000000e+00,6.779135949554046017e-10,1.355827189910809203e-09,2.033740784866214012e-09,2.711654379821618820e-09,3.389567974777023629e-09,4.067481569732428024e-09,4.745395164687832419e-09,5.423308759643236814e-09,6.101222354598641209e-09,6.779135949554045604e-09,7.457049544509449999e-09,8.134963139464854393e-09,8.812876734420258788e-09,9.490790329375663183e-09,1.016870392433106758e-08,1.084661751928647197e-08,1.152453111424187637e-08,1.220244470919728076e-08,1.288035830415268516e-08,1.355827189910808955e-08,1.423618549406349395e-08,1.491409908901890000e-08,1.559201268397430605e-08,1.626992627892971210e-08,1.694783987388511814e-08,1.762575346884052419e-08,1.830366706379593024e-08,1.898158065875133629e-08,1.965949425370674234e-08,2.033740784866214839e-08,2.101532144361755444e-08,2.169323503857296049e-08,2.237114863352836654e-08,2.304906222848377259e-08,2.372697582343917864e-08,2.440488941839458469e-08,2.508280301334999074e-08,2.576071660830539679e-08,2.643863020326080283e-08,2.711654379821620888e-08,2.779445739317161493e-08,2.847237098812702098e-08,2.915028458308242703e-08,2.982819817803783308e-08,3.050611177299324244e-08,3.118402536794865180e-08,3.186193896290406116e-08,3.253985255785947051e-08,3.321776615281487987e-08,3.389567974777028923e-08,3.457359334272569859e-08,3.525150693768110795e-08,3.592942053263651730e-08,3.660733412759192666e-08,3.728524772254733602e-08,3.796316131750274538e-08,3.864107491245815474e-08,3.931898850741356409e-08,3.999690210236897345e-08,4.067481569732438281e-08,4.135272929227979217e-08,4.203064288723520153e-08,4.270855648219061088e-08 +0.000000000000000000e+00,-6.761585992388203748e-10,-1.352317198477640750e-09,-2.028475797716461124e-09,-2.704634396955281499e-09,-3.380792996194101874e-09,-4.056951595432922249e-09,-4.733110194671743037e-09,-5.409268793910563825e-09,-6.085427393149384614e-09,-6.761585992388205402e-09,-7.437744591627026191e-09,-8.113903190865846152e-09,-8.790061790104666113e-09,-9.466220389343486074e-09,-1.014237898858230604e-08,-1.081853758782112600e-08,-1.149469618705994596e-08,-1.217085478629876592e-08,-1.284701338553758588e-08,-1.352317198477640584e-08,-1.419933058401522580e-08,-1.487548918325404576e-08,-1.555164778249286407e-08,-1.622780638173168238e-08,-1.690396498097050068e-08,-1.758012358020931899e-08,-1.825628217944813730e-08,-1.893244077868695560e-08,-1.960859937792577391e-08,-2.028475797716459222e-08,-2.096091657640341053e-08,-2.163707517564222883e-08,-2.231323377488104714e-08,-2.298939237411986545e-08,-2.366555097335868375e-08,-2.434170957259750206e-08,-2.501786817183632037e-08,-2.569402677107513867e-08,-2.637018537031395698e-08,-2.704634396955277529e-08,-2.772250256879159359e-08,-2.839866116803041190e-08,-2.907481976726923021e-08,-2.975097836650804851e-08,-3.042713696574686682e-08,-3.110329556498568844e-08,-3.177945416422451005e-08,-3.245561276346333167e-08,-3.313177136270215328e-08,-3.380792996194097490e-08,-3.448408856117979651e-08,-3.516024716041861813e-08,-3.583640575965743975e-08,-3.651256435889626136e-08,-3.718872295813508298e-08,-3.786488155737390459e-08,-3.854104015661272621e-08,-3.921719875585154782e-08,-3.989335735509036944e-08,-4.056951595432919105e-08,-4.124567455356801267e-08,-4.192183315280683429e-08,-4.259799175204565590e-08 +0.000000000000000000e+00,-6.844221343102183249e-10,-1.368844268620436650e-09,-2.053266402930654975e-09,-2.737688537240873299e-09,-3.422110671551091624e-09,-4.106532805861309949e-09,-4.790954940171528688e-09,-5.475377074481747426e-09,-6.159799208791966164e-09,-6.844221343102184903e-09,-7.528643477412403641e-09,-8.213065611722621553e-09,-8.897487746032839464e-09,-9.581909880343057375e-09,-1.026633201465327529e-08,-1.095075414896349320e-08,-1.163517628327371111e-08,-1.231959841758392902e-08,-1.300402055189414693e-08,-1.368844268620436484e-08,-1.437286482051458275e-08,-1.505728695482480067e-08,-1.574170908913501692e-08,-1.642613122344523318e-08,-1.711055335775544944e-08,-1.779497549206566569e-08,-1.847939762637588195e-08,-1.916381976068609821e-08,-1.984824189499631446e-08,-2.053266402930653072e-08,-2.121708616361674698e-08,-2.190150829792696323e-08,-2.258593043223717949e-08,-2.327035256654739575e-08,-2.395477470085761200e-08,-2.463919683516782826e-08,-2.532361896947804452e-08,-2.600804110378826078e-08,-2.669246323809847703e-08,-2.737688537240869329e-08,-2.806130750671890955e-08,-2.874572964102912580e-08,-2.943015177533934206e-08,-3.011457390964955501e-08,-3.079899604395976796e-08,-3.148341817826998090e-08,-3.216784031258019385e-08,-3.285226244689040680e-08,-3.353668458120061975e-08,-3.422110671551083270e-08,-3.490552884982104565e-08,-3.558995098413125859e-08,-3.627437311844147154e-08,-3.695879525275168449e-08,-3.764321738706189744e-08,-3.832763952137211039e-08,-3.901206165568232333e-08,-3.969648378999253628e-08,-4.038090592430274923e-08,-4.106532805861296218e-08,-4.174975019292317513e-08,-4.243417232723338808e-08,-4.311859446154360102e-08 +0.000000000000000000e+00,-6.779135947966343142e-10,-1.355827189593268628e-09,-2.033740784389902736e-09,-2.711654379186536843e-09,-3.389567973983170950e-09,-4.067481568779805471e-09,-4.745395163576439992e-09,-5.423308758373074513e-09,-6.101222353169709034e-09,-6.779135947966343555e-09,-7.457049542762977249e-09,-8.134963137559610943e-09,-8.812876732356244637e-09,-9.490790327152878331e-09,-1.016870392194951202e-08,-1.084661751674614572e-08,-1.152453111154277941e-08,-1.220244470633941311e-08,-1.288035830113604680e-08,-1.355827189593268049e-08,-1.423618549072931419e-08,-1.491409908552594788e-08,-1.559201268032258157e-08,-1.626992627511921527e-08,-1.694783986991584896e-08,-1.762575346471248266e-08,-1.830366705950911635e-08,-1.898158065430575004e-08,-1.965949424910238374e-08,-2.033740784389901743e-08,-2.101532143869565112e-08,-2.169323503349228482e-08,-2.237114862828891851e-08,-2.304906222308555221e-08,-2.372697581788218590e-08,-2.440488941267881959e-08,-2.508280300747545329e-08,-2.576071660227208698e-08,-2.643863019706872068e-08,-2.711654379186535437e-08,-2.779445738666198806e-08,-2.847237098145862176e-08,-2.915028457625525545e-08,-2.982819817105188914e-08,-3.050611176584851953e-08,-3.118402536064514991e-08,-3.186193895544178030e-08,-3.253985255023841068e-08,-3.321776614503504107e-08,-3.389567973983167145e-08,-3.457359333462830184e-08,-3.525150692942493222e-08,-3.592942052422156261e-08,-3.660733411901819299e-08,-3.728524771381482338e-08,-3.796316130861145377e-08,-3.864107490340808415e-08,-3.931898849820471454e-08,-3.999690209300134492e-08,-4.067481568779797531e-08,-4.135272928259460569e-08,-4.203064287739123608e-08,-4.270855647218786646e-08 +0.000000000000000000e+00,6.729713412839218052e-10,1.345942682567843610e-09,2.018914023851765416e-09,2.691885365135687221e-09,3.364856706419609026e-09,4.037828047703530831e-09,4.710799388987452223e-09,5.383770730271373615e-09,6.056742071555295006e-09,6.729713412839216398e-09,7.402684754123137789e-09,8.075656095407060008e-09,8.748627436690982227e-09,9.421598777974904446e-09,1.009457011925882666e-08,1.076754146054274888e-08,1.144051280182667110e-08,1.211348414311059332e-08,1.278645548439451554e-08,1.345942682567843776e-08,1.413239816696235998e-08,1.480536950824628220e-08,1.547834084953020276e-08,1.615131219081412333e-08,1.682428353209804389e-08,1.749725487338196445e-08,1.817022621466588502e-08,1.884319755594980558e-08,1.951616889723372615e-08,2.018914023851764671e-08,2.086211157980156728e-08,2.153508292108548784e-08,2.220805426236940841e-08,2.288102560365332897e-08,2.355399694493724953e-08,2.422696828622117010e-08,2.489993962750509066e-08,2.557291096878901123e-08,2.624588231007293179e-08,2.691885365135685236e-08,2.759182499264077292e-08,2.826479633392469349e-08,2.893776767520861405e-08,2.961073901649253461e-08,3.028371035777645518e-08,3.095668169906037905e-08,3.162965304034430292e-08,3.230262438162822680e-08,3.297559572291215067e-08,3.364856706419607454e-08,3.432153840547999842e-08,3.499450974676392229e-08,3.566748108804784616e-08,3.634045242933177004e-08,3.701342377061569391e-08,3.768639511189961778e-08,3.835936645318354166e-08,3.903233779446746553e-08,3.970530913575138940e-08,4.037828047703531328e-08,4.105125181831923715e-08,4.172422315960316102e-08,4.239719450088708490e-08 +0.000000000000000000e+00,6.719993135779805787e-10,1.343998627155961157e-09,2.015997940733941633e-09,2.687997254311921901e-09,3.359996567889902170e-09,4.031995881467882438e-09,4.703995195045862707e-09,5.375994508623842975e-09,6.047993822201823244e-09,6.719993135779803512e-09,7.391992449357783781e-09,8.063991762935763222e-09,8.735991076513743491e-09,9.407990390091723759e-09,1.007998970366970403e-08,1.075198901724768430e-08,1.142398833082566456e-08,1.209598764440364483e-08,1.276798695798162510e-08,1.343998627155960537e-08,1.411198558513758564e-08,1.478398489871556591e-08,1.545598421229354618e-08,1.612798352587152644e-08,1.679998283944950671e-08,1.747198215302748698e-08,1.814398146660546725e-08,1.881598078018344752e-08,1.948798009376142779e-08,2.015997940733940806e-08,2.083197872091738832e-08,2.150397803449536859e-08,2.217597734807334886e-08,2.284797666165132913e-08,2.351997597522930940e-08,2.419197528880728967e-08,2.486397460238526994e-08,2.553597391596325020e-08,2.620797322954123047e-08,2.687997254311921074e-08,2.755197185669719101e-08,2.822397117027517128e-08,2.889597048385315155e-08,2.956796979743113182e-08,3.023996911100911208e-08,3.091196842458709235e-08,3.158396773816507262e-08,3.225596705174305289e-08,3.292796636532103316e-08,3.359996567889901343e-08,3.427196499247699369e-08,3.494396430605497396e-08,3.561596361963295423e-08,3.628796293321093450e-08,3.695996224678891477e-08,3.763196156036689504e-08,3.830396087394487531e-08,3.897596018752285557e-08,3.964795950110083584e-08,4.031995881467881611e-08,4.099195812825679638e-08,4.166395744183477665e-08,4.233595675541275692e-08 +0.000000000000000000e+00,6.549807149497591454e-10,1.309961429899518291e-09,1.964942144849277333e-09,2.619922859799036168e-09,3.274903574748795003e-09,3.929884289698553839e-09,4.584865004648312674e-09,5.239845719598071509e-09,5.894826434547830344e-09,6.549807149497589179e-09,7.204787864447348015e-09,7.859768579397106023e-09,8.514749294346864031e-09,9.169730009296622039e-09,9.824710724246380047e-09,1.047969143919613805e-08,1.113467215414589606e-08,1.178965286909565407e-08,1.244463358404541208e-08,1.309961429899517009e-08,1.375459501394492810e-08,1.440957572889468610e-08,1.506455644384444411e-08,1.571953715879420212e-08,1.637451787374396013e-08,1.702949858869371814e-08,1.768447930364347614e-08,1.833946001859323415e-08,1.899444073354299216e-08,1.964942144849275017e-08,2.030440216344250818e-08,2.095938287839226618e-08,2.161436359334202419e-08,2.226934430829178220e-08,2.292432502324154021e-08,2.357930573819129822e-08,2.423428645314105622e-08,2.488926716809081423e-08,2.554424788304057224e-08,2.619922859799033025e-08,2.685420931294008826e-08,2.750919002788984626e-08,2.816417074283960427e-08,2.881915145778936228e-08,2.947413217273912029e-08,3.012911288768887499e-08,3.078409360263862969e-08,3.143907431758838439e-08,3.209405503253813909e-08,3.274903574748789378e-08,3.340401646243764848e-08,3.405899717738740318e-08,3.471397789233715788e-08,3.536895860728691258e-08,3.602393932223666728e-08,3.667892003718642198e-08,3.733390075213617668e-08,3.798888146708593138e-08,3.864386218203568608e-08,3.929884289698544078e-08,3.995382361193519548e-08,4.060880432688495018e-08,4.126378504183470488e-08 +0.000000000000000000e+00,-6.729713411274446691e-10,-1.345942682254889338e-09,-2.018914023382334214e-09,-2.691885364509779090e-09,-3.364856705637223966e-09,-4.037828046764668428e-09,-4.710799387892112891e-09,-5.383770729019557353e-09,-6.056742070147001815e-09,-6.729713411274446278e-09,-7.402684752401890740e-09,-8.075656093529335202e-09,-8.748627434656779665e-09,-9.421598775784224127e-09,-1.009457011691166859e-08,-1.076754145803911305e-08,-1.144051279916655751e-08,-1.211348414029400198e-08,-1.278645548142144644e-08,-1.345942682254889090e-08,-1.413239816367633536e-08,-1.480536950480377983e-08,-1.547834084593122594e-08,-1.615131218705867371e-08,-1.682428352818612148e-08,-1.749725486931356926e-08,-1.817022621044101703e-08,-1.884319755156846480e-08,-1.951616889269591257e-08,-2.018914023382336034e-08,-2.086211157495080811e-08,-2.153508291607825588e-08,-2.220805425720570365e-08,-2.288102559833315142e-08,-2.355399693946059920e-08,-2.422696828058804697e-08,-2.489993962171549474e-08,-2.557291096284294251e-08,-2.624588230397039028e-08,-2.691885364509783805e-08,-2.759182498622528582e-08,-2.826479632735273359e-08,-2.893776766848018136e-08,-2.961073900960762913e-08,-3.028371035073507691e-08,-3.095668169186252468e-08,-3.162965303298997245e-08,-3.230262437411742022e-08,-3.297559571524486799e-08,-3.364856705637231576e-08,-3.432153839749976353e-08,-3.499450973862721130e-08,-3.566748107975465907e-08,-3.634045242088210685e-08,-3.701342376200955462e-08,-3.768639510313700239e-08,-3.835936644426445016e-08,-3.903233778539189793e-08,-3.970530912651934570e-08,-4.037828046764679347e-08,-4.105125180877424124e-08,-4.172422314990168901e-08,-4.239719449102913678e-08 +0.000000000000000000e+00,-6.719993134277113297e-10,-1.343998626855422659e-09,-2.015997940283133989e-09,-2.687997253710845319e-09,-3.359996567138556649e-09,-4.031995880566267978e-09,-4.703995193993979308e-09,-5.375994507421690638e-09,-6.047993820849401968e-09,-6.719993134277113297e-09,-7.391992447704824627e-09,-8.063991761132535957e-09,-8.735991074560247286e-09,-9.407990387987958616e-09,-1.007998970141566995e-08,-1.075198901484338128e-08,-1.142398832827109261e-08,-1.209598764169880394e-08,-1.276798695512651526e-08,-1.343998626855422659e-08,-1.411198558198193792e-08,-1.478398489540964925e-08,-1.545598420883736058e-08,-1.612798352226507191e-08,-1.679998283569278324e-08,-1.747198214912049457e-08,-1.814398146254820590e-08,-1.881598077597591723e-08,-1.948798008940362856e-08,-2.015997940283133989e-08,-2.083197871625905122e-08,-2.150397802968676255e-08,-2.217597734311447388e-08,-2.284797665654218521e-08,-2.351997596996989654e-08,-2.419197528339760787e-08,-2.486397459682531920e-08,-2.553597391025303053e-08,-2.620797322368074186e-08,-2.687997253710845319e-08,-2.755197185053616452e-08,-2.822397116396387585e-08,-2.889597047739158718e-08,-2.956796979081929851e-08,-3.023996910424700984e-08,-3.091196841767472117e-08,-3.158396773110243250e-08,-3.225596704453014383e-08,-3.292796635795785516e-08,-3.359996567138556649e-08,-3.427196498481327782e-08,-3.494396429824098915e-08,-3.561596361166870048e-08,-3.628796292509641181e-08,-3.695996223852412313e-08,-3.763196155195183446e-08,-3.830396086537954579e-08,-3.897596017880725712e-08,-3.964795949223496845e-08,-4.031995880566267978e-08,-4.099195811909039111e-08,-4.166395743251810244e-08,-4.233595674594581377e-08 +0.000000000000000000e+00,-6.549807147726427157e-10,-1.309961429545285431e-09,-1.964942144317927940e-09,-2.619922859090570449e-09,-3.274903573863212958e-09,-3.929884288635855880e-09,-4.584865003408498803e-09,-5.239845718181141725e-09,-5.894826432953784648e-09,-6.549807147726427570e-09,-7.204787862499070493e-09,-7.859768577271713415e-09,-8.514749292044357165e-09,-9.169730006817000914e-09,-9.824710721589644664e-09,-1.047969143636228841e-08,-1.113467215113493216e-08,-1.178965286590757591e-08,-1.244463358068021966e-08,-1.309961429545286341e-08,-1.375459501022550716e-08,-1.440957572499815091e-08,-1.506455643977079466e-08,-1.571953715454343676e-08,-1.637451786931607885e-08,-1.702949858408872095e-08,-1.768447929886136304e-08,-1.833946001363400514e-08,-1.899444072840664723e-08,-1.964942144317928933e-08,-2.030440215795193142e-08,-2.095938287272457352e-08,-2.161436358749721561e-08,-2.226934430226985771e-08,-2.292432501704249980e-08,-2.357930573181514190e-08,-2.423428644658778400e-08,-2.488926716136042609e-08,-2.554424787613306819e-08,-2.619922859090571028e-08,-2.685420930567835238e-08,-2.750919002045099447e-08,-2.816417073522363657e-08,-2.881915144999627866e-08,-2.947413216476892076e-08,-3.012911287954156285e-08,-3.078409359431420826e-08,-3.143907430908685366e-08,-3.209405502385949906e-08,-3.274903573863214447e-08,-3.340401645340478987e-08,-3.405899716817743528e-08,-3.471397788295008068e-08,-3.536895859772272608e-08,-3.602393931249537149e-08,-3.667892002726801689e-08,-3.733390074204066230e-08,-3.798888145681330770e-08,-3.864386217158595310e-08,-3.929884288635859851e-08,-3.995382360113124391e-08,-4.060880431590388932e-08,-4.126378503067653472e-08 +0.000000000000000000e+00,6.847086148214596194e-10,1.369417229642919239e-09,2.054125844464378858e-09,2.738834459285838478e-09,3.423543074107298097e-09,4.108251688928757716e-09,4.792960303750217749e-09,5.477668918571677782e-09,6.162377533393137815e-09,6.847086148214597848e-09,7.531794763036057881e-09,8.216503377857517087e-09,8.901211992678976293e-09,9.585920607500435499e-09,1.027062922232189470e-08,1.095533783714335391e-08,1.164004645196481312e-08,1.232475506678627232e-08,1.300946368160773153e-08,1.369417229642919073e-08,1.437888091125064994e-08,1.506358952607210915e-08,1.574829814089356670e-08,1.643300675571502425e-08,1.711771537053648180e-08,1.780242398535793935e-08,1.848713260017939690e-08,1.917184121500085445e-08,1.985654982982231201e-08,2.054125844464376956e-08,2.122596705946522711e-08,2.191067567428668466e-08,2.259538428910814221e-08,2.328009290392959976e-08,2.396480151875105731e-08,2.464951013357251487e-08,2.533421874839397242e-08,2.601892736321542997e-08,2.670363597803688752e-08,2.738834459285834507e-08,2.807305320767980262e-08,2.875776182250126017e-08,2.944247043732271773e-08,3.012717905214417197e-08,3.081188766696562621e-08,3.149659628178708045e-08,3.218130489660853470e-08,3.286601351142998894e-08,3.355072212625144318e-08,3.423543074107289742e-08,3.492013935589435167e-08,3.560484797071580591e-08,3.628955658553726015e-08,3.697426520035871440e-08,3.765897381518016864e-08,3.834368243000162288e-08,3.902839104482307712e-08,3.971309965964453137e-08,4.039780827446598561e-08,4.108251688928743985e-08,4.176722550410889409e-08,4.245193411893034834e-08,4.313664273375180258e-08 +0.000000000000000000e+00,8.367620720322731450e-20,1.673524144064546290e-19,2.510286216096819435e-19,3.347048288129092580e-19,4.183810360161365725e-19,5.020572432193638870e-19,5.857334504225912015e-19,6.694096576258185160e-19,7.530858648290458305e-19,8.367620720322731450e-19,9.204382792355005558e-19,1.004114486438727967e-18,1.087790693641955377e-18,1.171466900845182788e-18,1.255143108048410199e-18,1.338819315251637610e-18,1.422495522454865021e-18,1.506171729658092431e-18,1.589847936861319842e-18,1.673524144064547253e-18,1.757200351267774664e-18,1.840876558471001882e-18,1.924552765674229100e-18,2.008228972877456318e-18,2.091905180080683537e-18,2.175581387283910755e-18,2.259257594487137973e-18,2.342933801690365191e-18,2.426610008893592409e-18,2.510286216096819628e-18,2.593962423300046846e-18,2.677638630503274064e-18,2.761314837706501282e-18,2.844991044909728500e-18,2.928667252112955719e-18,3.012343459316182937e-18,3.096019666519410155e-18,3.179695873722637373e-18,3.263372080925864591e-18,3.347048288129091810e-18,3.430724495332319028e-18,3.514400702535546246e-18,3.598076909738773849e-18,3.681753116942001453e-18,3.765429324145229056e-18,3.849105531348456660e-18,3.932781738551684263e-18,4.016457945754911866e-18,4.100134152958139470e-18,4.183810360161367073e-18,4.267486567364594677e-18,4.351162774567822280e-18,4.434838981771049883e-18,4.518515188974277487e-18,4.602191396177505090e-18,4.685867603380732693e-18,4.769543810583960297e-18,4.853220017787187900e-18,4.936896224990415504e-18,5.020572432193643107e-18,5.104248639396870710e-18,5.187924846600098314e-18,5.271601053803325917e-18 +0.000000000000000000e+00,6.744393090413443301e-10,1.348878618082688660e-09,2.023317927124032887e-09,2.697757236165376907e-09,3.372196545206720927e-09,4.046635854248064946e-09,4.721075163289408966e-09,5.395514472330752986e-09,6.069953781372097006e-09,6.744393090413441026e-09,7.418832399454785046e-09,8.093271708496128239e-09,8.767711017537471431e-09,9.442150326578814624e-09,1.011658963562015782e-08,1.079102894466150101e-08,1.146546825370284420e-08,1.213990756274418739e-08,1.281434687178553059e-08,1.348878618082687378e-08,1.416322548986821697e-08,1.483766479890956017e-08,1.551210410795090170e-08,1.618654341699224324e-08,1.686098272603358478e-08,1.753542203507492632e-08,1.820986134411626786e-08,1.888430065315760940e-08,1.955873996219895093e-08,2.023317927124029247e-08,2.090761858028163401e-08,2.158205788932297555e-08,2.225649719836431709e-08,2.293093650740565863e-08,2.360537581644700016e-08,2.427981512548834170e-08,2.495425443452968324e-08,2.562869374357102478e-08,2.630313305261236632e-08,2.697757236165370786e-08,2.765201167069504939e-08,2.832645097973639093e-08,2.900089028877773247e-08,2.967532959781907401e-08,3.034976890686041555e-08,3.102420821590175709e-08,3.169864752494309862e-08,3.237308683398444016e-08,3.304752614302578170e-08,3.372196545206712324e-08,3.439640476110846478e-08,3.507084407014980632e-08,3.574528337919114785e-08,3.641972268823248939e-08,3.709416199727383093e-08,3.776860130631517247e-08,3.844304061535651401e-08,3.911747992439785555e-08,3.979191923343919708e-08,4.046635854248053862e-08,4.114079785152188016e-08,4.181523716056322170e-08,4.248967646960456324e-08 +0.000000000000000000e+00,6.468402707629255069e-10,1.293680541525851014e-09,1.940520812288776417e-09,2.587361083051701614e-09,3.234201353814626811e-09,3.881041624577552007e-09,4.527881895340477204e-09,5.174722166103402401e-09,5.821562436866327597e-09,6.468402707629252794e-09,7.115242978392177990e-09,7.762083249155102360e-09,8.408923519918025902e-09,9.055763790680949445e-09,9.702604061443872987e-09,1.034944433220679653e-08,1.099628460296972007e-08,1.164312487373264361e-08,1.228996514449556716e-08,1.293680541525849070e-08,1.358364568602141424e-08,1.423048595678433778e-08,1.487732622754726133e-08,1.552416649831018487e-08,1.617100676907310841e-08,1.681784703983603195e-08,1.746468731059895549e-08,1.811152758136187904e-08,1.875836785212480258e-08,1.940520812288772612e-08,2.005204839365064966e-08,2.069888866441357321e-08,2.134572893517649675e-08,2.199256920593942029e-08,2.263940947670234383e-08,2.328624974746526738e-08,2.393309001822819092e-08,2.457993028899111446e-08,2.522677055975403800e-08,2.587361083051696154e-08,2.652045110127988509e-08,2.716729137204280863e-08,2.781413164280573217e-08,2.846097191356865571e-08,2.910781218433157926e-08,2.975465245509450280e-08,3.040149272585742634e-08,3.104833299662034988e-08,3.169517326738327343e-08,3.234201353814619697e-08,3.298885380890912051e-08,3.363569407967204405e-08,3.428253435043496759e-08,3.492937462119789114e-08,3.557621489196081468e-08,3.622305516272373822e-08,3.686989543348666176e-08,3.751673570424958531e-08,3.816357597501250885e-08,3.881041624577543239e-08,3.945725651653835593e-08,4.010409678730127948e-08,4.075093705806420302e-08 +0.000000000000000000e+00,3.423184078815461067e-10,6.846368157630922133e-10,1.026955223644638372e-09,1.369273631526184633e-09,1.711592039407730895e-09,2.053910447289277157e-09,2.396228855170823212e-09,2.738547263052369267e-09,3.080865670933915322e-09,3.423184078815461377e-09,3.765502486697007432e-09,4.107820894578553487e-09,4.450139302460099542e-09,4.792457710341645597e-09,5.134776118223191652e-09,5.477094526104737707e-09,5.819412933986283761e-09,6.161731341867829816e-09,6.504049749749375871e-09,6.846368157630921926e-09,7.188686565512467981e-09,7.531004973394014863e-09,7.873323381275561746e-09,8.215641789157108628e-09,8.557960197038655510e-09,8.900278604920202392e-09,9.242597012801749274e-09,9.584915420683296156e-09,9.927233828564843038e-09,1.026955223644638992e-08,1.061187064432793680e-08,1.095418905220948368e-08,1.129650746009103057e-08,1.163882586797257745e-08,1.198114427585412433e-08,1.232346268373567121e-08,1.266578109161721810e-08,1.300809949949876498e-08,1.335041790738031186e-08,1.369273631526185874e-08,1.403505472314340562e-08,1.437737313102495251e-08,1.471969153890649939e-08,1.506200994678804627e-08,1.540432835466959150e-08,1.574664676255113673e-08,1.608896517043268195e-08,1.643128357831422718e-08,1.677360198619577241e-08,1.711592039407731764e-08,1.745823880195886286e-08,1.780055720984040809e-08,1.814287561772195332e-08,1.848519402560349855e-08,1.882751243348504378e-08,1.916983084136658900e-08,1.951214924924813423e-08,1.985446765712967946e-08,2.019678606501122469e-08,2.053910447289276991e-08,2.088142288077431514e-08,2.122374128865586037e-08,2.156605969653740560e-08 +0.000000000000000000e+00,9.712184582857783822e-20,1.942436916571556764e-19,2.913655374857335267e-19,3.884873833143114010e-19,4.856092291428892272e-19,5.827310749714670534e-19,6.798529208000448796e-19,7.769747666286227058e-19,8.740966124572005320e-19,9.712184582857784545e-19,1.068340304114356377e-18,1.165462149942934299e-18,1.262583995771512222e-18,1.359705841600090144e-18,1.456827687428668067e-18,1.553949533257245989e-18,1.651071379085823912e-18,1.748193224914401834e-18,1.845315070742979949e-18,1.942436916571558064e-18,2.039558762400136180e-18,2.136680608228714295e-18,2.233802454057292410e-18,2.330924299885870525e-18,2.428046145714448640e-18,2.525167991543026755e-18,2.622289837371604870e-18,2.719411683200182985e-18,2.816533529028761100e-18,2.913655374857339215e-18,3.010777220685917330e-18,3.107899066514495445e-18,3.205020912343073560e-18,3.302142758171651676e-18,3.399264604000229791e-18,3.496386449828807521e-18,3.593508295657385250e-18,3.690630141485962980e-18,3.787751987314540710e-18,3.884873833143118440e-18,3.981995678971696170e-18,4.079117524800273900e-18,4.176239370628851630e-18,4.273361216457429360e-18,4.370483062286007090e-18,4.467604908114584819e-18,4.564726753943162549e-18,4.661848599771740279e-18,4.758970445600318009e-18,4.856092291428895739e-18,4.953214137257473469e-18,5.050335983086051199e-18,5.147457828914628929e-18,5.244579674743206659e-18,5.341701520571784388e-18,5.438823366400362118e-18,5.535945212228939848e-18,5.633067058057517578e-18,5.730188903886095308e-18,5.827310749714673038e-18,5.924432595543250768e-18,6.021554441371828498e-18,6.118676287200406228e-18 +0.000000000000000000e+00,-6.847086146541219121e-10,-1.369417229308243824e-09,-2.054125843962365840e-09,-2.738834458616488062e-09,-3.423543073270610284e-09,-4.108251687924732506e-09,-4.792960302578854729e-09,-5.477668917232976951e-09,-6.162377531887099173e-09,-6.847086146541221395e-09,-7.531794761195344445e-09,-8.216503375849466667e-09,-8.901211990503588889e-09,-9.585920605157711112e-09,-1.027062921981183333e-08,-1.095533783446595556e-08,-1.164004644912007778e-08,-1.232475506377420000e-08,-1.300946367842832222e-08,-1.369417229308244445e-08,-1.437888090773656667e-08,-1.506358952239068889e-08,-1.574829813704481111e-08,-1.643300675169893333e-08,-1.711771536635305556e-08,-1.780242398100717778e-08,-1.848713259566130000e-08,-1.917184121031542222e-08,-1.985654982496954445e-08,-2.054125843962366667e-08,-2.122596705427778889e-08,-2.191067566893191111e-08,-2.259538428358603333e-08,-2.328009289824015556e-08,-2.396480151289427778e-08,-2.464951012754840000e-08,-2.533421874220252222e-08,-2.601892735685664445e-08,-2.670363597151076667e-08,-2.738834458616488889e-08,-2.807305320081901111e-08,-2.875776181547313333e-08,-2.944247043012725556e-08,-3.012717904478137778e-08,-3.081188765943550331e-08,-3.149659627408962884e-08,-3.218130488874375437e-08,-3.286601350339787990e-08,-3.355072211805200543e-08,-3.423543073270613096e-08,-3.492013934736025650e-08,-3.560484796201438203e-08,-3.628955657666850756e-08,-3.697426519132263309e-08,-3.765897380597675862e-08,-3.834368242063088415e-08,-3.902839103528500968e-08,-3.971309964993913521e-08,-4.039780826459326074e-08,-4.108251687924738627e-08,-4.176722549390151181e-08,-4.245193410855563734e-08,-4.313664272320976287e-08 +0.000000000000000000e+00,-3.423184077141906666e-10,-6.846368154283813333e-10,-1.026955223142572000e-09,-1.369273630856762667e-09,-1.711592038570953333e-09,-2.053910446285144000e-09,-2.396228853999334460e-09,-2.738547261713524919e-09,-3.080865669427715379e-09,-3.423184077141905839e-09,-3.765502484856096299e-09,-4.107820892570287172e-09,-4.450139300284478046e-09,-4.792457707998668919e-09,-5.134776115712859793e-09,-5.477094523427050666e-09,-5.819412931141241540e-09,-6.161731338855432413e-09,-6.504049746569623286e-09,-6.846368154283814160e-09,-7.188686561998005033e-09,-7.531004969712195907e-09,-7.873323377426387607e-09,-8.215641785140579308e-09,-8.557960192854771008e-09,-8.900278600568962709e-09,-9.242597008283154410e-09,-9.584915415997346110e-09,-9.927233823711537811e-09,-1.026955223142572951e-08,-1.061187063913992121e-08,-1.095418904685411291e-08,-1.129650745456830461e-08,-1.163882586228249631e-08,-1.198114426999668801e-08,-1.232346267771087972e-08,-1.266578108542507142e-08,-1.300809949313926312e-08,-1.335041790085345482e-08,-1.369273630856764652e-08,-1.403505471628183822e-08,-1.437737312399602992e-08,-1.471969153171022162e-08,-1.506200993942441497e-08,-1.540432834713860833e-08,-1.574664675485280168e-08,-1.608896516256699504e-08,-1.643128357028118839e-08,-1.677360197799538175e-08,-1.711592038570957510e-08,-1.745823879342376846e-08,-1.780055720113796181e-08,-1.814287560885215517e-08,-1.848519401656634852e-08,-1.882751242428054188e-08,-1.916983083199473523e-08,-1.951214923970892859e-08,-1.985446764742312194e-08,-2.019678605513731530e-08,-2.053910446285150865e-08,-2.088142287056570201e-08,-2.122374127827989536e-08,-2.156605968599408872e-08 +0.000000000000000000e+00,-6.744393088790842709e-10,-1.348878617758168542e-09,-2.023317926637252813e-09,-2.697757235516337084e-09,-3.372196544395421355e-09,-4.046635853274505626e-09,-4.721075162153589896e-09,-5.395514471032674167e-09,-6.069953779911758438e-09,-6.744393088790842709e-09,-7.418832397669926980e-09,-8.093271706549011251e-09,-8.767711015428096349e-09,-9.442150324307181447e-09,-1.011658963318626655e-08,-1.079102894206535164e-08,-1.146546825094443674e-08,-1.213990755982352184e-08,-1.281434686870260694e-08,-1.348878617758169204e-08,-1.416322548646077713e-08,-1.483766479533986223e-08,-1.551210410421894733e-08,-1.618654341309803243e-08,-1.686098272197711753e-08,-1.753542203085620262e-08,-1.820986133973528772e-08,-1.888430064861437282e-08,-1.955873995749345792e-08,-2.023317926637254302e-08,-2.090761857525162812e-08,-2.158205788413071321e-08,-2.225649719300979831e-08,-2.293093650188888341e-08,-2.360537581076796851e-08,-2.427981511964705361e-08,-2.495425442852613870e-08,-2.562869373740522380e-08,-2.630313304628430890e-08,-2.697757235516339400e-08,-2.765201166404247910e-08,-2.832645097292156419e-08,-2.900089028180064929e-08,-2.967532959067973439e-08,-3.034976889955881949e-08,-3.102420820843790790e-08,-3.169864751731699630e-08,-3.237308682619608471e-08,-3.304752613507517312e-08,-3.372196544395426152e-08,-3.439640475283334993e-08,-3.507084406171243834e-08,-3.574528337059152674e-08,-3.641972267947061515e-08,-3.709416198834970356e-08,-3.776860129722879196e-08,-3.844304060610788037e-08,-3.911747991498696878e-08,-3.979191922386605718e-08,-4.046635853274514559e-08,-4.114079784162423400e-08,-4.181523715050332240e-08,-4.248967645938241081e-08 +0.000000000000000000e+00,-6.468402705687748434e-10,-1.293680541137549687e-09,-1.940520811706324633e-09,-2.587361082275099787e-09,-3.234201352843874941e-09,-3.881041623412650094e-09,-4.527881893981425248e-09,-5.174722164550200401e-09,-5.821562435118975555e-09,-6.468402705687750708e-09,-7.115242976256525862e-09,-7.762083246825301843e-09,-8.408923517394077823e-09,-9.055763787962853804e-09,-9.702604058531629785e-09,-1.034944432910040577e-08,-1.099628459966918175e-08,-1.164312487023795773e-08,-1.228996514080673371e-08,-1.293680541137550969e-08,-1.358364568194428567e-08,-1.423048595251306165e-08,-1.487732622308183763e-08,-1.552416649365061361e-08,-1.617100676421939125e-08,-1.681784703478816888e-08,-1.746468730535694652e-08,-1.811152757592572415e-08,-1.875836784649450179e-08,-1.940520811706327942e-08,-2.005204838763205706e-08,-2.069888865820083469e-08,-2.134572892876961233e-08,-2.199256919933838996e-08,-2.263940946990716760e-08,-2.328624974047594523e-08,-2.393309001104472287e-08,-2.457993028161350050e-08,-2.522677055218227814e-08,-2.587361082275105577e-08,-2.652045109331983341e-08,-2.716729136388861104e-08,-2.781413163445738868e-08,-2.846097190502616631e-08,-2.910781217559494395e-08,-2.975465244616372158e-08,-3.040149271673249922e-08,-3.104833298730127354e-08,-3.169517325787004787e-08,-3.234201352843882220e-08,-3.298885379900759652e-08,-3.363569406957637085e-08,-3.428253434014514518e-08,-3.492937461071391950e-08,-3.557621488128269383e-08,-3.622305515185146816e-08,-3.686989542242024248e-08,-3.751673569298901681e-08,-3.816357596355779113e-08,-3.881041623412656546e-08,-3.945725650469533979e-08,-4.010409677526411411e-08,-4.075093704583288844e-08 +0.000000000000000000e+00,8.547593212984502474e-10,1.709518642596900495e-09,2.564277963895350846e-09,3.419037285193801403e-09,4.273796606492251547e-09,5.128555927790701691e-09,5.983315249089151835e-09,6.838074570387601979e-09,7.692833891686052123e-09,8.547593212984503094e-09,9.402352534282954066e-09,1.025711185558140504e-08,1.111187117687985601e-08,1.196663049817830698e-08,1.282138981947675795e-08,1.367614914077520892e-08,1.453090846207365989e-08,1.538566778337211086e-08,1.624042710467056018e-08,1.709518642596900950e-08,1.794994574726745881e-08,1.880470506856590813e-08,1.965946438986435745e-08,2.051422371116280676e-08,2.136898303246125608e-08,2.222374235375970540e-08,2.307850167505815472e-08,2.393326099635660403e-08,2.478802031765505335e-08,2.564277963895350267e-08,2.649753896025195198e-08,2.735229828155040130e-08,2.820705760284885062e-08,2.906181692414729993e-08,2.991657624544574925e-08,3.077133556674420188e-08,3.162609488804265450e-08,3.248085420934110713e-08,3.333561353063955975e-08,3.419037285193801238e-08,3.504513217323646500e-08,3.589989149453491763e-08,3.675465081583337025e-08,3.760941013713182288e-08,3.846416945843027551e-08,3.931892877972872813e-08,4.017368810102718076e-08,4.102844742232563338e-08,4.188320674362408601e-08,4.273796606492253863e-08,4.359272538622099126e-08,4.444748470751944388e-08,4.530224402881789651e-08,4.615700335011634914e-08,4.701176267141480176e-08,4.786652199271325439e-08,4.872128131401170701e-08,4.957604063531015964e-08,5.043079995660861226e-08,5.128555927790706489e-08,5.214031859920551751e-08,5.299507792050397014e-08,5.384983724180242277e-08 +0.000000000000000000e+00,1.196626740593606508e-09,2.393253481187213016e-09,3.589880221780819524e-09,4.786506962374426032e-09,5.983133702968032541e-09,7.179760443561639049e-09,8.376387184155245557e-09,9.573013924748852065e-09,1.076964066534245857e-08,1.196626740593606508e-08,1.316289414652967159e-08,1.435952088712327810e-08,1.555614762771688461e-08,1.675277436831049111e-08,1.794940110890409762e-08,1.914602784949770413e-08,2.034265459009131064e-08,2.153928133068491715e-08,2.273590807127852365e-08,2.393253481187213016e-08,2.512916155246573667e-08,2.632578829305934318e-08,2.752241503365294969e-08,2.871904177424655619e-08,2.991566851484016601e-08,3.111229525543377583e-08,3.230892199602738565e-08,3.350554873662099546e-08,3.470217547721460528e-08,3.589880221780821510e-08,3.709542895840182491e-08,3.829205569899543473e-08,3.948868243958904455e-08,4.068530918018265436e-08,4.188193592077626418e-08,4.307856266136987400e-08,4.427518940196348381e-08,4.547181614255709363e-08,4.666844288315070345e-08,4.786506962374431326e-08,4.906169636433792308e-08,5.025832310493153290e-08,5.145494984552514272e-08,5.265157658611875253e-08,5.384820332671236235e-08,5.504483006730597217e-08,5.624145680789958198e-08,5.743808354849319180e-08,5.863471028908680162e-08,5.983133702968041143e-08,6.102796377027402125e-08,6.222459051086763107e-08,6.342121725146124088e-08,6.461784399205485070e-08,6.581447073264846052e-08,6.701109747324207033e-08,6.820772421383568015e-08,6.940435095442928997e-08,7.060097769502289978e-08,7.179760443561650960e-08,7.299423117621011942e-08,7.419085791680372924e-08,7.538748465739733905e-08 +0.000000000000000000e+00,-7.587802031284106189e-21,-1.517560406256821238e-20,-2.276340609385231706e-20,-3.035120812513641874e-20,-3.793901015642052041e-20,-4.552681218770462209e-20,-5.311461421898872376e-20,-6.070241625027282544e-20,-6.829021828155692711e-20,-7.587802031284102879e-20,-8.346582234412513047e-20,-9.105362437540923214e-20,-9.864142640669333382e-20,-1.062292284379774355e-19,-1.138170304692615492e-19,-1.214048325005456750e-19,-1.289926345318298007e-19,-1.365804365631139265e-19,-1.441682385943980522e-19,-1.517560406256821780e-19,-1.593438426569663037e-19,-1.669316446882504294e-19,-1.745194467195345552e-19,-1.821072487508186809e-19,-1.896950507821028067e-19,-1.972828528133869324e-19,-2.048706548446710582e-19,-2.124584568759551839e-19,-2.200462589072393097e-19,-2.276340609385234354e-19,-2.352218629698075612e-19,-2.428096650010916869e-19,-2.503974670323758127e-19,-2.579852690636599384e-19,-2.655730710949440642e-19,-2.731608731262281899e-19,-2.807486751575123157e-19,-2.883364771887964414e-19,-2.959242792200805672e-19,-3.035120812513646929e-19,-3.110998832826488187e-19,-3.186876853139329444e-19,-3.262754873452170702e-19,-3.338632893765011959e-19,-3.414510914077853217e-19,-3.490388934390694474e-19,-3.566266954703535732e-19,-3.642144975016376989e-19,-3.718022995329218247e-19,-3.793901015642059504e-19,-3.869779035954900762e-19,-3.945657056267742019e-19,-4.021535076580583277e-19,-4.097413096893424534e-19,-4.173291117206265792e-19,-4.249169137519107049e-19,-4.325047157831948307e-19,-4.400925178144790046e-19,-4.476803198457631785e-19,-4.552681218770473524e-19,-4.628559239083315263e-19,-4.704437259396157002e-19,-4.780315279708998741e-19 +0.000000000000000000e+00,9.304904927295810128e-10,1.860980985459162026e-09,2.791471478188742935e-09,3.721961970918323637e-09,4.652452463647904754e-09,5.582942956377485870e-09,6.513433449107066986e-09,7.443923941836648102e-09,8.374414434566229218e-09,9.304904927295809507e-09,1.023539542002538980e-08,1.116588591275497009e-08,1.209637640548455037e-08,1.302686689821413066e-08,1.395735739094371095e-08,1.488784788367329124e-08,1.581833837640287153e-08,1.674882886913245182e-08,1.767931936186203211e-08,1.860980985459161240e-08,1.954030034732119269e-08,2.047079084005077298e-08,2.140128133278035326e-08,2.233177182550993355e-08,2.326226231823951384e-08,2.419275281096909413e-08,2.512324330369867442e-08,2.605373379642825471e-08,2.698422428915783500e-08,2.791471478188741529e-08,2.884520527461699558e-08,2.977569576734657586e-08,3.070618626007615615e-08,3.163667675280573644e-08,3.256716724553531673e-08,3.349765773826489702e-08,3.442814823099447731e-08,3.535863872372405760e-08,3.628912921645363789e-08,3.721961970918321818e-08,3.815011020191279847e-08,3.908060069464237875e-08,4.001109118737195904e-08,4.094158168010153933e-08,4.187207217283111962e-08,4.280256266556069991e-08,4.373305315829028020e-08,4.466354365101986049e-08,4.559403414374944078e-08,4.652452463647902107e-08,4.745501512920860136e-08,4.838550562193818164e-08,4.931599611466776193e-08,5.024648660739734222e-08,5.117697710012692251e-08,5.210746759285650280e-08,5.303795808558608309e-08,5.396844857831566338e-08,5.489893907104524367e-08,5.582942956377482396e-08,5.675992005650440425e-08,5.769041054923398453e-08,5.862090104196356482e-08 +0.000000000000000000e+00,1.459470214047406764e-09,2.918940428094813528e-09,4.378410642142219878e-09,5.837880856189626228e-09,7.297351070237032579e-09,8.756821284284439756e-09,1.021629149833184693e-08,1.167576171237925411e-08,1.313523192642666129e-08,1.459470214047406847e-08,1.605417235452147564e-08,1.751364256856888282e-08,1.897311278261629000e-08,2.043258299666369718e-08,2.189205321071110435e-08,2.335152342475851153e-08,2.481099363880591871e-08,2.627046385285332589e-08,2.772993406690073306e-08,2.918940428094814024e-08,3.064887449499555073e-08,3.210834470904295790e-08,3.356781492309036508e-08,3.502728513713777226e-08,3.648675535118517944e-08,3.794622556523258661e-08,3.940569577927999379e-08,4.086516599332740097e-08,4.232463620737480815e-08,4.378410642142221532e-08,4.524357663546962250e-08,4.670304684951702968e-08,4.816251706356443686e-08,4.962198727761184403e-08,5.108145749165925121e-08,5.254092770570665839e-08,5.400039791975406557e-08,5.545986813380147274e-08,5.691933834784887992e-08,5.837880856189628710e-08,5.983827877594369428e-08,6.129774898999110145e-08,6.275721920403850863e-08,6.421668941808591581e-08,6.567615963213332299e-08,6.713562984618073016e-08,6.859510006022813734e-08,7.005457027427554452e-08,7.151404048832295170e-08,7.297351070237035887e-08,7.443298091641776605e-08,7.589245113046517323e-08,7.735192134451258041e-08,7.881139155855998758e-08,8.027086177260739476e-08,8.173033198665480194e-08,8.318980220070220911e-08,8.464927241474961629e-08,8.610874262879702347e-08,8.756821284284443065e-08,8.902768305689183782e-08,9.048715327093924500e-08,9.194662348498665218e-08 +0.000000000000000000e+00,9.823746187913287497e-10,1.964749237582657499e-09,2.947123856373986249e-09,3.929498475165314999e-09,4.911873093956643748e-09,5.894247712747972498e-09,6.876622331539301248e-09,7.858996950330629997e-09,8.841371569121958747e-09,9.823746187913287497e-09,1.080612080670461625e-08,1.178849542549594500e-08,1.277087004428727375e-08,1.375324466307860250e-08,1.473561928186993125e-08,1.571799390066125999e-08,1.670036851945258874e-08,1.768274313824391749e-08,1.866511775703524624e-08,1.964749237582657499e-08,2.062986699461790374e-08,2.161224161340923249e-08,2.259461623220056124e-08,2.357699085099188999e-08,2.455936546978321874e-08,2.554174008857454749e-08,2.652411470736587624e-08,2.750648932615720499e-08,2.848886394494853374e-08,2.947123856373986249e-08,3.045361318253119455e-08,3.143598780132252661e-08,3.241836242011385867e-08,3.340073703890519072e-08,3.438311165769652278e-08,3.536548627648785484e-08,3.634786089527918690e-08,3.733023551407051896e-08,3.831261013286185102e-08,3.929498475165318307e-08,4.027735937044451513e-08,4.125973398923584719e-08,4.224210860802717925e-08,4.322448322681851131e-08,4.420685784560984337e-08,4.518923246440117542e-08,4.617160708319250748e-08,4.715398170198383954e-08,4.813635632077517160e-08,4.911873093956650366e-08,5.010110555835783572e-08,5.108348017714916778e-08,5.206585479594049983e-08,5.304822941473183189e-08,5.403060403352316395e-08,5.501297865231449601e-08,5.599535327110582807e-08,5.697772788989716013e-08,5.796010250868849218e-08,5.894247712747982424e-08,5.992485174627115630e-08,6.090722636506249498e-08,6.188960098385383365e-08 +0.000000000000000000e+00,5.980349856573300635e-10,1.196069971314660127e-09,1.794104956971990190e-09,2.392139942629320254e-09,2.990174928286650524e-09,3.588209913943980794e-09,4.186244899601311065e-09,4.784279885258641335e-09,5.382314870915971605e-09,5.980349856573301875e-09,6.578384842230632146e-09,7.176419827887962416e-09,7.774454813545292686e-09,8.372489799202622129e-09,8.970524784859951572e-09,9.568559770517281015e-09,1.016659475617461046e-08,1.076462974183193990e-08,1.136266472748926934e-08,1.196069971314659879e-08,1.255873469880392823e-08,1.315676968446125767e-08,1.375480467011858712e-08,1.435283965577591656e-08,1.495087464143324766e-08,1.554890962709057875e-08,1.614694461274790985e-08,1.674497959840524095e-08,1.734301458406257205e-08,1.794104956971990314e-08,1.853908455537723424e-08,1.913711954103456534e-08,1.973515452669189644e-08,2.033318951234922753e-08,2.093122449800655863e-08,2.152925948366388973e-08,2.212729446932122083e-08,2.272532945497855192e-08,2.332336444063588302e-08,2.392139942629321412e-08,2.451943441195054522e-08,2.511746939760787631e-08,2.571550438326520741e-08,2.631353936892253851e-08,2.691157435457986961e-08,2.750960934023720070e-08,2.810764432589453180e-08,2.870567931155186290e-08,2.930371429720919400e-08,2.990174928286652178e-08,3.049978426852384957e-08,3.109781925418117736e-08,3.169585423983850515e-08,3.229388922549583294e-08,3.289192421115316073e-08,3.348995919681048852e-08,3.408799418246781631e-08,3.468602916812514409e-08,3.528406415378247188e-08,3.588209913943979967e-08,3.648013412509712746e-08,3.707816911075445525e-08,3.767620409641178304e-08 +0.000000000000000000e+00,-6.660192118752275067e-21,-1.332038423750455013e-20,-1.998057635625682445e-20,-2.664076847500909726e-20,-3.330096059376137007e-20,-3.996115271251364288e-20,-4.662134483126591569e-20,-5.328153695001818850e-20,-5.994172906877046131e-20,-6.660192118752274014e-20,-7.326211330627501897e-20,-7.992230542502729780e-20,-8.658249754377957663e-20,-9.324268966253185546e-20,-9.990288178128413429e-20,-1.065630739000364131e-19,-1.132232660187886919e-19,-1.198834581375409708e-19,-1.265436502562932496e-19,-1.332038423750455284e-19,-1.398640344937978073e-19,-1.465242266125500861e-19,-1.531844187313023649e-19,-1.598446108500546437e-19,-1.665048029688069226e-19,-1.731649950875592014e-19,-1.798251872063114802e-19,-1.864853793250637591e-19,-1.931455714438160379e-19,-1.998057635625683167e-19,-2.064659556813205955e-19,-2.131261478000728744e-19,-2.197863399188251291e-19,-2.264465320375773839e-19,-2.331067241563296386e-19,-2.397669162750818934e-19,-2.464271083938341481e-19,-2.530873005125864029e-19,-2.597474926313386577e-19,-2.664076847500909124e-19,-2.730678768688431672e-19,-2.797280689875954219e-19,-2.863882611063476767e-19,-2.930484532250999314e-19,-2.997086453438521862e-19,-3.063688374626044409e-19,-3.130290295813566957e-19,-3.196892217001089505e-19,-3.263494138188612052e-19,-3.330096059376134600e-19,-3.396697980563657147e-19,-3.463299901751179695e-19,-3.529901822938702242e-19,-3.596503744126224790e-19,-3.663105665313747337e-19,-3.729707586501269885e-19,-3.796309507688792432e-19,-3.862911428876314980e-19,-3.929513350063837528e-19,-3.996115271251360075e-19,-4.062717192438882623e-19,-4.129319113626405170e-19,-4.195921034813927718e-19 +0.000000000000000000e+00,-8.547593212780809248e-10,-1.709518642556161850e-09,-2.564277963834242878e-09,-3.419037285112324113e-09,-4.273796606390405761e-09,-5.128555927668487410e-09,-5.983315248946569059e-09,-6.838074570224650707e-09,-7.692833891502732356e-09,-8.547593212780814832e-09,-9.402352534058897307e-09,-1.025711185533697978e-08,-1.111187117661506226e-08,-1.196663049789314473e-08,-1.282138981917122721e-08,-1.367614914044930969e-08,-1.453090846172739216e-08,-1.538566778300547464e-08,-1.624042710428355877e-08,-1.709518642556164290e-08,-1.794994574683972703e-08,-1.880470506811781116e-08,-1.965946438939589529e-08,-2.051422371067397942e-08,-2.136898303195206355e-08,-2.222374235323014768e-08,-2.307850167450823181e-08,-2.393326099578631594e-08,-2.478802031706440007e-08,-2.564277963834248420e-08,-2.649753895962056833e-08,-2.735229828089865246e-08,-2.820705760217673659e-08,-2.906181692345482072e-08,-2.991657624473290485e-08,-3.077133556601098898e-08,-3.162609488728907311e-08,-3.248085420856715724e-08,-3.333561352984524137e-08,-3.419037285112332550e-08,-3.504513217240140963e-08,-3.589989149367949376e-08,-3.675465081495757789e-08,-3.760941013623566202e-08,-3.846416945751374615e-08,-3.931892877879183028e-08,-4.017368810006991441e-08,-4.102844742134799854e-08,-4.188320674262608267e-08,-4.273796606390416680e-08,-4.359272538518225093e-08,-4.444748470646033506e-08,-4.530224402773841919e-08,-4.615700334901650332e-08,-4.701176267029458745e-08,-4.786652199157267158e-08,-4.872128131285075571e-08,-4.957604063412883984e-08,-5.043079995540692397e-08,-5.128555927668500810e-08,-5.214031859796309223e-08,-5.299507791924117636e-08,-5.384983724051926049e-08 +0.000000000000000000e+00,-1.196626740608757769e-09,-2.393253481217515537e-09,-3.589880221826273099e-09,-4.786506962435030247e-09,-5.983133703043787395e-09,-7.179760443652544544e-09,-8.376387184261301692e-09,-9.573013924870058840e-09,-1.076964066547881599e-08,-1.196626740608757314e-08,-1.316289414669633028e-08,-1.435952088730508743e-08,-1.555614762791384293e-08,-1.675277436852260008e-08,-1.794940110913135722e-08,-1.914602784974011437e-08,-2.034265459034887152e-08,-2.153928133095762867e-08,-2.273590807156638582e-08,-2.393253481217514296e-08,-2.512916155278390011e-08,-2.632578829339265726e-08,-2.752241503400141441e-08,-2.871904177461017156e-08,-2.991566851521892871e-08,-3.111229525582768585e-08,-3.230892199643644300e-08,-3.350554873704520015e-08,-3.470217547765395730e-08,-3.589880221826271445e-08,-3.709542895887147159e-08,-3.829205569948022874e-08,-3.948868244008898589e-08,-4.068530918069774304e-08,-4.188193592130650019e-08,-4.307856266191525734e-08,-4.427518940252401448e-08,-4.547181614313277163e-08,-4.666844288374152878e-08,-4.786506962435028593e-08,-4.906169636495904308e-08,-5.025832310556780023e-08,-5.145494984617655737e-08,-5.265157658678531452e-08,-5.384820332739407167e-08,-5.504483006800282882e-08,-5.624145680861158597e-08,-5.743808354922034311e-08,-5.863471028982910026e-08,-5.983133703043785741e-08,-6.102796377104660794e-08,-6.222459051165535847e-08,-6.342121725226410900e-08,-6.461784399287285953e-08,-6.581447073348161007e-08,-6.701109747409036060e-08,-6.820772421469911113e-08,-6.940435095530786166e-08,-7.060097769591661219e-08,-7.179760443652536272e-08,-7.299423117713411325e-08,-7.419085791774286378e-08,-7.538748465835161431e-08 +0.000000000000000000e+00,-5.980349856724917671e-10,-1.196069971344983534e-09,-1.794104957017475405e-09,-2.392139942689967482e-09,-2.990174928362459559e-09,-3.588209914034951637e-09,-4.186244899707443300e-09,-4.784279885379934964e-09,-5.382314871052426628e-09,-5.980349856724918291e-09,-6.578384842397409955e-09,-7.176419828069901619e-09,-7.774454813742393282e-09,-8.372489799414884946e-09,-8.970524785087376610e-09,-9.568559770759868274e-09,-1.016659475643235994e-08,-1.076462974210485160e-08,-1.136266472777734326e-08,-1.196069971344983493e-08,-1.255873469912232659e-08,-1.315676968479481826e-08,-1.375480467046730992e-08,-1.435283965613980158e-08,-1.495087464181229490e-08,-1.554890962748478987e-08,-1.614694461315728485e-08,-1.674497959882977982e-08,-1.734301458450227479e-08,-1.794104957017476976e-08,-1.853908455584726474e-08,-1.913711954151975971e-08,-1.973515452719225468e-08,-2.033318951286474965e-08,-2.093122449853724463e-08,-2.152925948420973960e-08,-2.212729446988223457e-08,-2.272532945555472954e-08,-2.332336444122722452e-08,-2.392139942689971949e-08,-2.451943441257221446e-08,-2.511746939824470943e-08,-2.571550438391720440e-08,-2.631353936958969938e-08,-2.691157435526219435e-08,-2.750960934093468932e-08,-2.810764432660718429e-08,-2.870567931227967927e-08,-2.930371429795217424e-08,-2.990174928362466921e-08,-3.049978426929716418e-08,-3.109781925496965916e-08,-3.169585424064215413e-08,-3.229388922631464910e-08,-3.289192421198714407e-08,-3.348995919765963905e-08,-3.408799418333213402e-08,-3.468602916900462899e-08,-3.528406415467712396e-08,-3.588209914034961894e-08,-3.648013412602211391e-08,-3.707816911169460888e-08,-3.767620409736710385e-08 +0.000000000000000000e+00,-9.304904927264974902e-10,-1.860980985452994980e-09,-2.791471478179492574e-09,-3.721961970905990375e-09,-4.652452463632487761e-09,-5.582942956358985148e-09,-6.513433449085482535e-09,-7.443923941811979922e-09,-8.374414434538477309e-09,-9.304904927264975523e-09,-1.023539541999147374e-08,-1.116588591271797195e-08,-1.209637640544447016e-08,-1.302686689817096838e-08,-1.395735739089746659e-08,-1.488784788362396481e-08,-1.581833837635046137e-08,-1.674882886907695793e-08,-1.767931936180345449e-08,-1.860980985452995105e-08,-1.954030034725644761e-08,-2.047079083998294416e-08,-2.140128133270944072e-08,-2.233177182543593728e-08,-2.326226231816243384e-08,-2.419275281088893040e-08,-2.512324330361542696e-08,-2.605373379634192352e-08,-2.698422428906842008e-08,-2.791471478179491664e-08,-2.884520527452141320e-08,-2.977569576724790976e-08,-3.070618625997440632e-08,-3.163667675270090288e-08,-3.256716724542739944e-08,-3.349765773815389600e-08,-3.442814823088039256e-08,-3.535863872360688912e-08,-3.628912921633338568e-08,-3.721961970905988224e-08,-3.815011020178637880e-08,-3.908060069451287536e-08,-4.001109118723937192e-08,-4.094158167996586848e-08,-4.187207217269236504e-08,-4.280256266541886160e-08,-4.373305315814535816e-08,-4.466354365087185472e-08,-4.559403414359835128e-08,-4.652452463632484784e-08,-4.745501512905134439e-08,-4.838550562177784095e-08,-4.931599611450433751e-08,-5.024648660723083407e-08,-5.117697709995733063e-08,-5.210746759268382719e-08,-5.303795808541032375e-08,-5.396844857813682031e-08,-5.489893907086331687e-08,-5.582942956358981343e-08,-5.675992005631630999e-08,-5.769041054904280655e-08,-5.862090104176930311e-08 +0.000000000000000000e+00,-1.459470214060768006e-09,-2.918940428121536011e-09,-4.378410642182304223e-09,-5.837880856243072849e-09,-7.297351070303841475e-09,-8.756821284364610101e-09,-1.021629149842537790e-08,-1.167576171248614570e-08,-1.313523192654691350e-08,-1.459470214060768130e-08,-1.605417235466844909e-08,-1.751364256872921689e-08,-1.897311278278998469e-08,-2.043258299685075249e-08,-2.189205321091152029e-08,-2.335152342497228809e-08,-2.481099363903305589e-08,-2.627046385309382369e-08,-2.772993406715459148e-08,-2.918940428121535928e-08,-3.064887449527613039e-08,-3.210834470933690481e-08,-3.356781492339767922e-08,-3.502728513745845364e-08,-3.648675535151922805e-08,-3.794622556558000247e-08,-3.940569577964077689e-08,-4.086516599370155130e-08,-4.232463620776232572e-08,-4.378410642182310014e-08,-4.524357663588387455e-08,-4.670304684994464897e-08,-4.816251706400542338e-08,-4.962198727806619780e-08,-5.108145749212697222e-08,-5.254092770618774663e-08,-5.400039792024852105e-08,-5.545986813430929546e-08,-5.691933834837006988e-08,-5.837880856243084430e-08,-5.983827877649161871e-08,-6.129774899055239313e-08,-6.275721920461316755e-08,-6.421668941867394196e-08,-6.567615963273471638e-08,-6.713562984679549079e-08,-6.859510006085626521e-08,-7.005457027491703963e-08,-7.151404048897781404e-08,-7.297351070303858846e-08,-7.443298091709936287e-08,-7.589245113116013729e-08,-7.735192134522091171e-08,-7.881139155928168612e-08,-8.027086177334246054e-08,-8.173033198740323496e-08,-8.318980220146400937e-08,-8.464927241552478379e-08,-8.610874262958555820e-08,-8.756821284364633262e-08,-8.902768305770710704e-08,-9.048715327176788145e-08,-9.194662348582865587e-08 +0.000000000000000000e+00,-9.823746187692378574e-10,-1.964749237538475715e-09,-2.947123856307713366e-09,-3.929498475076950603e-09,-4.911873093846187840e-09,-5.894247712615425077e-09,-6.876622331384662314e-09,-7.858996950153899551e-09,-8.841371568923137615e-09,-9.823746187692375679e-09,-1.080612080646161374e-08,-1.178849542523085181e-08,-1.277087004400008987e-08,-1.375324466276932794e-08,-1.473561928153856600e-08,-1.571799390030780241e-08,-1.670036851907703882e-08,-1.768274313784627523e-08,-1.866511775661551164e-08,-1.964749237538474805e-08,-2.062986699415398446e-08,-2.161224161292322087e-08,-2.259461623169245728e-08,-2.357699085046169369e-08,-2.455936546923093010e-08,-2.554174008800016651e-08,-2.652411470676940292e-08,-2.750648932553863933e-08,-2.848886394430787574e-08,-2.947123856307711215e-08,-3.045361318184634856e-08,-3.143598780061558497e-08,-3.241836241938482138e-08,-3.340073703815405779e-08,-3.438311165692329420e-08,-3.536548627569253061e-08,-3.634786089446176702e-08,-3.733023551323100343e-08,-3.831261013200023984e-08,-3.929498475076947625e-08,-4.027735936953871266e-08,-4.125973398830794907e-08,-4.224210860707718548e-08,-4.322448322584642189e-08,-4.420685784461565830e-08,-4.518923246338489471e-08,-4.617160708215413112e-08,-4.715398170092336753e-08,-4.813635631969260394e-08,-4.911873093846184035e-08,-5.010110555723107676e-08,-5.108348017600031317e-08,-5.206585479476954958e-08,-5.304822941353878599e-08,-5.403060403230802240e-08,-5.501297865107725881e-08,-5.599535326984649522e-08,-5.697772788861573163e-08,-5.796010250738496803e-08,-5.894247712615420444e-08,-5.992485174492343424e-08,-6.090722636369265741e-08,-6.188960098246188059e-08 +0.000000000000000000e+00,7.437714864511789951e-10,1.487542972902357990e-09,2.231314459353537089e-09,2.975085945804716394e-09,3.718857432255895699e-09,4.462628918707075004e-09,5.206400405158254310e-09,5.950171891609433615e-09,6.693943378060612920e-09,7.437714864511792225e-09,8.181486350962971531e-09,8.925257837414151663e-09,9.669029323865331795e-09,1.041280081031651193e-08,1.115657229676769206e-08,1.190034378321887219e-08,1.264411526967005233e-08,1.338788675612123246e-08,1.413165824257241259e-08,1.487542972902359272e-08,1.561920121547477285e-08,1.636297270192595299e-08,1.710674418837713312e-08,1.785051567482831325e-08,1.859428716127949338e-08,1.933805864773067352e-08,2.008183013418185365e-08,2.082560162063303378e-08,2.156937310708421391e-08,2.231314459353539405e-08,2.305691607998657418e-08,2.380068756643775431e-08,2.454445905288893444e-08,2.528823053934011458e-08,2.603200202579129471e-08,2.677577351224247484e-08,2.751954499869365497e-08,2.826331648514483511e-08,2.900708797159601524e-08,2.975085945804719537e-08,3.049463094449837219e-08,3.123840243094955233e-08,3.198217391740073246e-08,3.272594540385191259e-08,3.346971689030309272e-08,3.421348837675427286e-08,3.495725986320545299e-08,3.570103134965663312e-08,3.644480283610781325e-08,3.718857432255899339e-08,3.793234580901017352e-08,3.867611729546135365e-08,3.941988878191253378e-08,4.016366026836371392e-08,4.090743175481489405e-08,4.165120324126607418e-08,4.239497472771725431e-08,4.313874621416843445e-08,4.388251770061961458e-08,4.462628918707079471e-08,4.537006067352197484e-08,4.611383215997315498e-08,4.685760364642433511e-08 +0.000000000000000000e+00,7.850300941944142158e-10,1.570060188388828432e-09,2.355090282583242441e-09,3.140120376777656450e-09,3.925150470972070459e-09,4.710180565166484881e-09,5.495210659360899304e-09,6.280240753555313727e-09,7.065270847749728149e-09,7.850300941944142572e-09,8.635331036138556994e-09,9.420361130332971417e-09,1.020539122452738584e-08,1.099042131872180026e-08,1.177545141291621468e-08,1.256048150711062911e-08,1.334551160130504353e-08,1.413054169549945795e-08,1.491557178969387072e-08,1.570060188388828183e-08,1.648563197808269295e-08,1.727066207227710406e-08,1.805569216647151518e-08,1.884072226066592629e-08,1.962575235486033740e-08,2.041078244905474852e-08,2.119581254324915963e-08,2.198084263744357075e-08,2.276587273163798186e-08,2.355090282583239297e-08,2.433593292002680409e-08,2.512096301422121520e-08,2.590599310841562632e-08,2.669102320261003743e-08,2.747605329680444854e-08,2.826108339099885966e-08,2.904611348519327077e-08,2.983114357938768188e-08,3.061617367358209300e-08,3.140120376777650411e-08,3.218623386197091523e-08,3.297126395616532634e-08,3.375629405035973745e-08,3.454132414455414857e-08,3.532635423874855968e-08,3.611138433294297080e-08,3.689641442713738191e-08,3.768144452133179302e-08,3.846647461552620414e-08,3.925150470972061525e-08,4.003653480391502637e-08,4.082156489810943748e-08,4.160659499230384859e-08,4.239162508649825971e-08,4.317665518069267082e-08,4.396168527488708194e-08,4.474671536908149305e-08,4.553174546327590416e-08,4.631677555747031528e-08,4.710180565166472639e-08,4.788683574585913750e-08,4.867186584005354862e-08,4.945689593424795973e-08 +0.000000000000000000e+00,8.133488159974344244e-10,1.626697631994868849e-09,2.440046447992303377e-09,3.253395263989738111e-09,4.066744079987172846e-09,4.880092895984607581e-09,5.693441711982042315e-09,6.506790527979477050e-09,7.320139343976911785e-09,8.133488159974345692e-09,8.946836975971779600e-09,9.760185791969213507e-09,1.057353460796664741e-08,1.138688342396408132e-08,1.220023223996151523e-08,1.301358105595894914e-08,1.382692987195638304e-08,1.464027868795381695e-08,1.545362750395124920e-08,1.626697631994868146e-08,1.708032513594611371e-08,1.789367395194354596e-08,1.870702276794097822e-08,1.952037158393841047e-08,2.033372039993584272e-08,2.114706921593327498e-08,2.196041803193070723e-08,2.277376684792813948e-08,2.358711566392557174e-08,2.440046447992300399e-08,2.521381329592043624e-08,2.602716211191786850e-08,2.684051092791530075e-08,2.765385974391273300e-08,2.846720855991016525e-08,2.928055737590759751e-08,3.009390619190502976e-08,3.090725500790245871e-08,3.172060382389988765e-08,3.253395263989731659e-08,3.334730145589474554e-08,3.416065027189217448e-08,3.497399908788960343e-08,3.578734790388703237e-08,3.660069671988446132e-08,3.741404553588189026e-08,3.822739435187931920e-08,3.904074316787674815e-08,3.985409198387417709e-08,4.066744079987160604e-08,4.148078961586903498e-08,4.229413843186646393e-08,4.310748724786389287e-08,4.392083606386132182e-08,4.473418487985875076e-08,4.554753369585617970e-08,4.636088251185360865e-08,4.717423132785103759e-08,4.798758014384846654e-08,4.880092895984589548e-08,4.961427777584332443e-08,5.042762659184075337e-08,5.124097540783818231e-08 +0.000000000000000000e+00,-7.437714864007632673e-10,-1.487542972801526535e-09,-2.231314459202289595e-09,-2.975085945603052656e-09,-3.718857432003815716e-09,-4.462628918404579190e-09,-5.206400404805342664e-09,-5.950171891206106138e-09,-6.693943377606869612e-09,-7.437714864007633087e-09,-8.181486350408396561e-09,-8.925257836809160035e-09,-9.669029323209923509e-09,-1.041280080961068698e-08,-1.115657229601145046e-08,-1.190034378241221393e-08,-1.264411526881297741e-08,-1.338788675521374088e-08,-1.413165824161450435e-08,-1.487542972801526783e-08,-1.561920121441603130e-08,-1.636297270081679312e-08,-1.710674418721755494e-08,-1.785051567361831676e-08,-1.859428716001907858e-08,-1.933805864641984040e-08,-2.008183013282060222e-08,-2.082560161922136404e-08,-2.156937310562212586e-08,-2.231314459202288768e-08,-2.305691607842364950e-08,-2.380068756482441132e-08,-2.454445905122517314e-08,-2.528823053762593496e-08,-2.603200202402669678e-08,-2.677577351042745860e-08,-2.751954499682822042e-08,-2.826331648322898224e-08,-2.900708796962974406e-08,-2.975085945603050588e-08,-3.049463094243126770e-08,-3.123840242883202952e-08,-3.198217391523279134e-08,-3.272594540163355316e-08,-3.346971688803431498e-08,-3.421348837443507679e-08,-3.495725986083583861e-08,-3.570103134723660043e-08,-3.644480283363736225e-08,-3.718857432003812407e-08,-3.793234580643888589e-08,-3.867611729283964771e-08,-3.941988877924040953e-08,-4.016366026564117135e-08,-4.090743175204193317e-08,-4.165120323844269499e-08,-4.239497472484345681e-08,-4.313874621124421863e-08,-4.388251769764498045e-08,-4.462628918404574227e-08,-4.537006067044650409e-08,-4.611383215684726591e-08,-4.685760364324802773e-08 +0.000000000000000000e+00,-7.850300941582447096e-10,-1.570060188316489419e-09,-2.355090282474734129e-09,-3.140120376632978838e-09,-3.925150470791223961e-09,-4.710180564949469085e-09,-5.495210659107714208e-09,-6.280240753265959331e-09,-7.065270847424204454e-09,-7.850300941582449577e-09,-8.635331035740694700e-09,-9.420361129898939823e-09,-1.020539122405718495e-08,-1.099042131821543007e-08,-1.177545141237367519e-08,-1.256048150653192032e-08,-1.334551160069016544e-08,-1.413054169484841056e-08,-1.491557178900665569e-08,-1.570060188316490246e-08,-1.648563197732314924e-08,-1.727066207148139602e-08,-1.805569216563964280e-08,-1.884072225979788957e-08,-1.962575235395613635e-08,-2.041078244811438313e-08,-2.119581254227262991e-08,-2.198084263643087668e-08,-2.276587273058912346e-08,-2.355090282474737024e-08,-2.433593291890561702e-08,-2.512096301306386379e-08,-2.590599310722211057e-08,-2.669102320138035735e-08,-2.747605329553860413e-08,-2.826108338969685090e-08,-2.904611348385509768e-08,-2.983114357801334446e-08,-3.061617367217159124e-08,-3.140120376632983801e-08,-3.218623386048808479e-08,-3.297126395464633157e-08,-3.375629404880457835e-08,-3.454132414296282512e-08,-3.532635423712107190e-08,-3.611138433127931868e-08,-3.689641442543756546e-08,-3.768144451959581223e-08,-3.846647461375405901e-08,-3.925150470791230579e-08,-4.003653480207055257e-08,-4.082156489622879934e-08,-4.160659499038704612e-08,-4.239162508454529290e-08,-4.317665517870353968e-08,-4.396168527286178645e-08,-4.474671536702003323e-08,-4.553174546117828001e-08,-4.631677555533652679e-08,-4.710180564949477356e-08,-4.788683574365302034e-08,-4.867186583781126712e-08,-4.945689593196951390e-08 +0.000000000000000000e+00,-8.133488159439156320e-10,-1.626697631887831264e-09,-2.440046447831746793e-09,-3.253395263775662114e-09,-4.066744079719577436e-09,-4.880092895663492758e-09,-5.693441711607408080e-09,-6.506790527551323402e-09,-7.320139343495238724e-09,-8.133488159439153218e-09,-8.946836975383066886e-09,-9.760185791326980553e-09,-1.057353460727089422e-08,-1.138688342321480789e-08,-1.220023223915872156e-08,-1.301358105510263522e-08,-1.382692987104654889e-08,-1.464027868699046256e-08,-1.545362750293437623e-08,-1.626697631887828989e-08,-1.708032513482220356e-08,-1.789367395076611723e-08,-1.870702276671003090e-08,-1.952037158265394456e-08,-2.033372039859785823e-08,-2.114706921454177190e-08,-2.196041803048568557e-08,-2.277376684642959923e-08,-2.358711566237351290e-08,-2.440046447831742657e-08,-2.521381329426134024e-08,-2.602716211020525390e-08,-2.684051092614916757e-08,-2.765385974209308124e-08,-2.846720855803699490e-08,-2.928055737398090857e-08,-3.009390618992481893e-08,-3.090725500586873260e-08,-3.172060382181264627e-08,-3.253395263775655993e-08,-3.334730145370047360e-08,-3.416065026964438727e-08,-3.497399908558830094e-08,-3.578734790153221460e-08,-3.660069671747612827e-08,-3.741404553342004194e-08,-3.822739434936395561e-08,-3.904074316530786927e-08,-3.985409198125178294e-08,-4.066744079719569661e-08,-4.148078961313961028e-08,-4.229413842908352394e-08,-4.310748724502743761e-08,-4.392083606097135128e-08,-4.473418487691526495e-08,-4.554753369285917861e-08,-4.636088250880309228e-08,-4.717423132474700595e-08,-4.798758014069091962e-08,-4.880092895663483328e-08,-4.961427777257874695e-08,-5.042762658852266062e-08,-5.124097540446657429e-08 +0.000000000000000000e+00,7.026176331462059534e-10,1.405235266292411907e-09,2.107852899438617757e-09,2.810470532584823400e-09,3.513088165731029043e-09,4.215705798877234687e-09,4.918323432023440744e-09,5.620941065169646800e-09,6.323558698315852857e-09,7.026176331462058914e-09,7.728793964608264971e-09,8.431411597754471028e-09,9.134029230900677085e-09,9.836646864046883141e-09,1.053926449719308920e-08,1.124188213033929526e-08,1.194449976348550131e-08,1.264711739663170737e-08,1.334973502977791343e-08,1.405235266292411948e-08,1.475497029607032554e-08,1.545758792921653325e-08,1.616020556236273931e-08,1.686282319550894536e-08,1.756544082865515142e-08,1.826805846180135748e-08,1.897067609494756353e-08,1.967329372809376959e-08,2.037591136123997565e-08,2.107852899438618171e-08,2.178114662753238776e-08,2.248376426067859382e-08,2.318638189382479988e-08,2.388899952697100593e-08,2.459161716011721199e-08,2.529423479326341805e-08,2.599685242640962410e-08,2.669947005955583016e-08,2.740208769270203622e-08,2.810470532584824227e-08,2.880732295899444833e-08,2.950994059214065439e-08,3.021255822528686044e-08,3.091517585843306650e-08,3.161779349157927256e-08,3.232041112472547861e-08,3.302302875787168467e-08,3.372564639101789073e-08,3.442826402416409679e-08,3.513088165731030284e-08,3.583349929045650890e-08,3.653611692360271496e-08,3.723873455674892101e-08,3.794135218989512707e-08,3.864396982304133313e-08,3.934658745618753918e-08,4.004920508933374524e-08,4.075182272247995130e-08,4.145444035562615735e-08,4.215705798877236341e-08,4.285967562191856947e-08,4.356229325506477552e-08,4.426491088821098158e-08 +0.000000000000000000e+00,7.222288546323312085e-10,1.444457709264662417e-09,2.166686563896993522e-09,2.888915418529324420e-09,3.611144273161655319e-09,4.333373127793986217e-09,5.055601982426317529e-09,5.777830837058648841e-09,6.500059691690980153e-09,7.222288546323311465e-09,7.944517400955642777e-09,8.666746255587974089e-09,9.388975110220305400e-09,1.011120396485263671e-08,1.083343281948496802e-08,1.155566167411729934e-08,1.227789052874963065e-08,1.300011938338196196e-08,1.372234823801429327e-08,1.444457709264662458e-08,1.516680594727895590e-08,1.588903480191128555e-08,1.661126365654361521e-08,1.733349251117594487e-08,1.805572136580827453e-08,1.877795022044060418e-08,1.950017907507293384e-08,2.022240792970526350e-08,2.094463678433759316e-08,2.166686563896992281e-08,2.238909449360225247e-08,2.311132334823458213e-08,2.383355220286691179e-08,2.455578105749924144e-08,2.527800991213157110e-08,2.600023876676390076e-08,2.672246762139623042e-08,2.744469647602856007e-08,2.816692533066088973e-08,2.888915418529321939e-08,2.961138303992554905e-08,3.033361189455787870e-08,3.105584074919021167e-08,3.177806960382254464e-08,3.250029845845487760e-08,3.322252731308721057e-08,3.394475616771954354e-08,3.466698502235187650e-08,3.538921387698420947e-08,3.611144273161654243e-08,3.683367158624887540e-08,3.755590044088120837e-08,3.827812929551354133e-08,3.900035815014587430e-08,3.972258700477820727e-08,4.044481585941054023e-08,4.116704471404287320e-08,4.188927356867520616e-08,4.261150242330753913e-08,4.333373127793987210e-08,4.405596013257220506e-08,4.477818898720453803e-08,4.550041784183687100e-08 +0.000000000000000000e+00,7.413416114620641518e-10,1.482683222924128304e-09,2.224024834386192352e-09,2.965366445848256194e-09,3.706708057310320035e-09,4.448049668772383877e-09,5.189391280234448132e-09,5.930732891696512387e-09,6.672074503158576643e-09,7.413416114620640898e-09,8.154757726082705153e-09,8.896099337544769408e-09,9.637440949006833663e-09,1.037878256046889792e-08,1.112012417193096217e-08,1.186146578339302643e-08,1.260280739485509068e-08,1.334414900631715494e-08,1.408549061777921919e-08,1.482683222924128345e-08,1.556817384070334771e-08,1.630951545216541031e-08,1.705085706362747291e-08,1.779219867508953551e-08,1.853354028655159811e-08,1.927488189801366071e-08,2.001622350947572331e-08,2.075756512093778591e-08,2.149890673239984851e-08,2.224024834386191111e-08,2.298158995532397371e-08,2.372293156678603631e-08,2.446427317824809892e-08,2.520561478971016152e-08,2.594695640117222412e-08,2.668829801263428672e-08,2.742963962409634932e-08,2.817098123555841192e-08,2.891232284702047452e-08,2.965366445848253712e-08,3.039500606994460303e-08,3.113634768140666894e-08,3.187768929286873485e-08,3.261903090433080076e-08,3.336037251579286667e-08,3.410171412725493258e-08,3.484305573871699849e-08,3.558439735017906440e-08,3.632573896164113031e-08,3.706708057310319622e-08,3.780842218456526213e-08,3.854976379602732804e-08,3.929110540748939395e-08,4.003244701895145986e-08,4.077378863041352577e-08,4.151513024187559167e-08,4.225647185333765758e-08,4.299781346479972349e-08,4.373915507626178940e-08,4.448049668772385531e-08,4.522183829918592122e-08,4.596317991064798713e-08,4.670452152211005304e-08 +0.000000000000000000e+00,-7.026176330725685776e-10,-1.405235266145137155e-09,-2.107852899217705526e-09,-2.810470532290273897e-09,-3.513088165362842267e-09,-4.215705798435411052e-09,-4.918323431507979836e-09,-5.620941064580548620e-09,-6.323558697653117405e-09,-7.026176330725686189e-09,-7.728793963798254973e-09,-8.431411596870823758e-09,-9.134029229943392542e-09,-9.836646863015961326e-09,-1.053926449608853011e-08,-1.124188212916109890e-08,-1.194449976223366768e-08,-1.264711739530623646e-08,-1.334973502837880525e-08,-1.405235266145137403e-08,-1.475497029452394282e-08,-1.545758792759650995e-08,-1.616020556066907708e-08,-1.686282319374164421e-08,-1.756544082681421134e-08,-1.826805845988677847e-08,-1.897067609295934560e-08,-1.967329372603191273e-08,-2.037591135910447986e-08,-2.107852899217704699e-08,-2.178114662524961412e-08,-2.248376425832218125e-08,-2.318638189139474838e-08,-2.388899952446731551e-08,-2.459161715753988264e-08,-2.529423479061244977e-08,-2.599685242368501690e-08,-2.669947005675758403e-08,-2.740208768983015116e-08,-2.810470532290271829e-08,-2.880732295597528542e-08,-2.950994058904785255e-08,-3.021255822212041968e-08,-3.091517585519298681e-08,-3.161779348826555394e-08,-3.232041112133812107e-08,-3.302302875441068820e-08,-3.372564638748325533e-08,-3.442826402055582246e-08,-3.513088165362838959e-08,-3.583349928670095672e-08,-3.653611691977352385e-08,-3.723873455284609098e-08,-3.794135218591865811e-08,-3.864396981899122524e-08,-3.934658745206379237e-08,-4.004920508513635950e-08,-4.075182271820892663e-08,-4.145444035128149376e-08,-4.215705798435406089e-08,-4.285967561742662802e-08,-4.356229325049919515e-08,-4.426491088357176228e-08 +0.000000000000000000e+00,-7.222288545694413903e-10,-1.444457709138882781e-09,-2.166686563708323964e-09,-2.888915418277765148e-09,-3.611144272847206331e-09,-4.333373127416647928e-09,-5.055601981986089525e-09,-5.777830836555531123e-09,-6.500059691124972720e-09,-7.222288545694414317e-09,-7.944517400263855087e-09,-8.666746254833295857e-09,-9.388975109402736627e-09,-1.011120396397217740e-08,-1.083343281854161817e-08,-1.155566167311105894e-08,-1.227789052768049971e-08,-1.300011938224994048e-08,-1.372234823681938125e-08,-1.444457709138882202e-08,-1.516680594595826279e-08,-1.588903480052770356e-08,-1.661126365509714433e-08,-1.733349250966658510e-08,-1.805572136423602587e-08,-1.877795021880546664e-08,-1.950017907337490741e-08,-2.022240792794434818e-08,-2.094463678251378895e-08,-2.166686563708322972e-08,-2.238909449165267049e-08,-2.311132334622211126e-08,-2.383355220079155203e-08,-2.455578105536099280e-08,-2.527800990993043357e-08,-2.600023876449987434e-08,-2.672246761906931511e-08,-2.744469647363875588e-08,-2.816692532820819664e-08,-2.888915418277763741e-08,-2.961138303734707818e-08,-3.033361189191651895e-08,-3.105584074648595972e-08,-3.177806960105540049e-08,-3.250029845562484126e-08,-3.322252731019428203e-08,-3.394475616476372280e-08,-3.466698501933316357e-08,-3.538921387390260434e-08,-3.611144272847204511e-08,-3.683367158304148588e-08,-3.755590043761092665e-08,-3.827812929218036742e-08,-3.900035814674980819e-08,-3.972258700131924896e-08,-4.044481585588868973e-08,-4.116704471045813050e-08,-4.188927356502757127e-08,-4.261150241959701204e-08,-4.333373127416645281e-08,-4.405596012873589358e-08,-4.477818898330533435e-08,-4.550041783787477512e-08 +0.000000000000000000e+00,-7.413416113826127302e-10,-1.482683222765225460e-09,-2.224024834147838191e-09,-2.965366445530450921e-09,-3.706708056913063651e-09,-4.448049668295676381e-09,-5.189391279678289111e-09,-5.930732891060901842e-09,-6.672074502443514572e-09,-7.413416113826127302e-09,-8.154757725208739205e-09,-8.896099336591351108e-09,-9.637440947973963011e-09,-1.037878255935657491e-08,-1.112012417073918682e-08,-1.186146578212179872e-08,-1.260280739350441062e-08,-1.334414900488702253e-08,-1.408549061626963443e-08,-1.482683222765224633e-08,-1.556817383903485824e-08,-1.630951545041747179e-08,-1.705085706180008535e-08,-1.779219867318269891e-08,-1.853354028456531246e-08,-1.927488189594792602e-08,-2.001622350733053958e-08,-2.075756511871315314e-08,-2.149890673009576669e-08,-2.224024834147838025e-08,-2.298158995286099381e-08,-2.372293156424360737e-08,-2.446427317562622092e-08,-2.520561478700883448e-08,-2.594695639839144804e-08,-2.668829800977406160e-08,-2.742963962115667515e-08,-2.817098123253928871e-08,-2.891232284392190227e-08,-2.965366445530451583e-08,-3.039500606668712607e-08,-3.113634767806973632e-08,-3.187768928945234657e-08,-3.261903090083495682e-08,-3.336037251221756707e-08,-3.410171412360017732e-08,-3.484305573498278757e-08,-3.558439734636539781e-08,-3.632573895774800806e-08,-3.706708056913061831e-08,-3.780842218051322856e-08,-3.854976379189583881e-08,-3.929110540327844906e-08,-4.003244701466105931e-08,-4.077378862604366956e-08,-4.151513023742627980e-08,-4.225647184880889005e-08,-4.299781346019150030e-08,-4.373915507157411055e-08,-4.448049668295672080e-08,-4.522183829433933105e-08,-4.596317990572194130e-08,-4.670452151710455154e-08 +0.000000000000000000e+00,6.841931532219255232e-10,1.368386306443851046e-09,2.052579459665776466e-09,2.736772612887701679e-09,3.420965766109626892e-09,4.105158919331552105e-09,4.789352072553477732e-09,5.473545225775403358e-09,6.157738378997328985e-09,6.841931532219254612e-09,7.526124685441180238e-09,8.210317838663105865e-09,8.894510991885031491e-09,9.578704145106957118e-09,1.026289729832888274e-08,1.094709045155080837e-08,1.163128360477273400e-08,1.231547675799465962e-08,1.299966991121658525e-08,1.368386306443851088e-08,1.436805621766043650e-08,1.505224937088236048e-08,1.573644252410428445e-08,1.642063567732620842e-08,1.710482883054813239e-08,1.778902198377005637e-08,1.847321513699198034e-08,1.915740829021390431e-08,1.984160144343582828e-08,2.052579459665775225e-08,2.120998774987967623e-08,2.189418090310160020e-08,2.257837405632352417e-08,2.326256720954544814e-08,2.394676036276737212e-08,2.463095351598929609e-08,2.531514666921122006e-08,2.599933982243314403e-08,2.668353297565506800e-08,2.736772612887699198e-08,2.805191928209891595e-08,2.873611243532083992e-08,2.942030558854276389e-08,3.010449874176468787e-08,3.078869189498660853e-08,3.147288504820852919e-08,3.215707820143044986e-08,3.284127135465237052e-08,3.352546450787429118e-08,3.420965766109621185e-08,3.489385081431813251e-08,3.557804396754005317e-08,3.626223712076197384e-08,3.694643027398389450e-08,3.763062342720581516e-08,3.831481658042773583e-08,3.899900973364965649e-08,3.968320288687157716e-08,4.036739604009349782e-08,4.105158919331541848e-08,4.173578234653733915e-08,4.241997549975925981e-08,4.310416865298118047e-08 +0.000000000000000000e+00,6.930687958620223645e-10,1.386137591724044729e-09,2.079206387586067093e-09,2.772275183448089458e-09,3.465343979310111822e-09,4.158412775172134187e-09,4.851481571034156138e-09,5.544550366896178089e-09,6.237619162758200040e-09,6.930687958620221991e-09,7.623756754482243941e-09,8.316825550344266719e-09,9.009894346206289498e-09,9.702963142068312276e-09,1.039603193793033505e-08,1.108910073379235783e-08,1.178216952965438061e-08,1.247523832551640339e-08,1.316830712137842617e-08,1.386137591724044894e-08,1.455444471310247172e-08,1.524751350896449450e-08,1.594058230482651728e-08,1.663365110068854006e-08,1.732671989655056283e-08,1.801978869241258561e-08,1.871285748827460839e-08,1.940592628413663117e-08,2.009899507999865395e-08,2.079206387586067672e-08,2.148513267172269950e-08,2.217820146758472228e-08,2.287127026344674506e-08,2.356433905930876784e-08,2.425740785517079062e-08,2.495047665103281339e-08,2.564354544689483617e-08,2.633661424275685895e-08,2.702968303861888173e-08,2.772275183448090451e-08,2.841582063034292728e-08,2.910888942620495006e-08,2.980195822206697284e-08,3.049502701792899562e-08,3.118809581379102170e-08,3.188116460965304779e-08,3.257423340551507388e-08,3.326730220137709997e-08,3.396037099723912605e-08,3.465343979310115214e-08,3.534650858896317823e-08,3.603957738482520431e-08,3.673264618068723040e-08,3.742571497654925649e-08,3.811878377241128257e-08,3.881185256827330866e-08,3.950492136413533475e-08,4.019799015999736083e-08,4.089105895585938692e-08,4.158412775172141301e-08,4.227719654758343909e-08,4.297026534344546518e-08,4.366333413930749127e-08 +0.000000000000000000e+00,7.046587295009256988e-10,1.409317459001851398e-09,2.113976188502776993e-09,2.818634918003702381e-09,3.523293647504627770e-09,4.227952377005553159e-09,4.932611106506478961e-09,5.637269836007404763e-09,6.341928565508330565e-09,7.046587295009256367e-09,7.751246024510182169e-09,8.455904754011107972e-09,9.160563483512033774e-09,9.865222213012959576e-09,1.056988094251388538e-08,1.127453967201481118e-08,1.197919840151573698e-08,1.268385713101666278e-08,1.338851586051758859e-08,1.409317459001851439e-08,1.479783331951944019e-08,1.550249204902036434e-08,1.620715077852128849e-08,1.691180950802221263e-08,1.761646823752313678e-08,1.832112696702406093e-08,1.902578569652498508e-08,1.973044442602590923e-08,2.043510315552683337e-08,2.113976188502775752e-08,2.184442061452868167e-08,2.254907934402960582e-08,2.325373807353052996e-08,2.395839680303145411e-08,2.466305553253237826e-08,2.536771426203330241e-08,2.607237299153422656e-08,2.677703172103515070e-08,2.748169045053607485e-08,2.818634918003699900e-08,2.889100790953792315e-08,2.959566663903884729e-08,3.030032536853977475e-08,3.100498409804070221e-08,3.170964282754162966e-08,3.241430155704255712e-08,3.311896028654348458e-08,3.382361901604441203e-08,3.452827774554533949e-08,3.523293647504626695e-08,3.593759520454719440e-08,3.664225393404812186e-08,3.734691266354904932e-08,3.805157139304997677e-08,3.875623012255090423e-08,3.946088885205183169e-08,4.016554758155275914e-08,4.087020631105368660e-08,4.157486504055461406e-08,4.227952377005554151e-08,4.298418249955646897e-08,4.368884122905739643e-08,4.439349995855832388e-08 +0.000000000000000000e+00,-6.841931531314789067e-10,-1.368386306262957813e-09,-2.052579459394436823e-09,-2.736772612525916040e-09,-3.420965765657395257e-09,-4.105158918788874474e-09,-4.789352071920353691e-09,-5.473545225051832908e-09,-6.157738378183312125e-09,-6.841931531314791342e-09,-7.526124684446270559e-09,-8.210317837577750603e-09,-8.894510990709230647e-09,-9.578704143840710691e-09,-1.026289729697219073e-08,-1.094709045010367078e-08,-1.163128360323515082e-08,-1.231547675636663087e-08,-1.299966990949811091e-08,-1.368386306262959096e-08,-1.436805621576107100e-08,-1.505224936889255104e-08,-1.573644252202403109e-08,-1.642063567515551113e-08,-1.710482882828699118e-08,-1.778902198141847122e-08,-1.847321513454995126e-08,-1.915740828768143131e-08,-1.984160144081291135e-08,-2.052579459394439140e-08,-2.120998774707587144e-08,-2.189418090020735148e-08,-2.257837405333883153e-08,-2.326256720647031157e-08,-2.394676035960179162e-08,-2.463095351273327166e-08,-2.531514666586475170e-08,-2.599933981899623175e-08,-2.668353297212771179e-08,-2.736772612525919184e-08,-2.805191927839067188e-08,-2.873611243152215192e-08,-2.942030558465363197e-08,-3.010449873778510870e-08,-3.078869189091658875e-08,-3.147288504404806879e-08,-3.215707819717954884e-08,-3.284127135031102888e-08,-3.352546450344250892e-08,-3.420965765657398897e-08,-3.489385080970546901e-08,-3.557804396283694906e-08,-3.626223711596842910e-08,-3.694643026909990914e-08,-3.763062342223138919e-08,-3.831481657536286923e-08,-3.899900972849434928e-08,-3.968320288162582932e-08,-4.036739603475730936e-08,-4.105158918788878941e-08,-4.173578234102026945e-08,-4.241997549415174950e-08,-4.310416864728322954e-08 +0.000000000000000000e+00,-6.930687957790849970e-10,-1.386137591558169994e-09,-2.079206387337254888e-09,-2.772275183116339574e-09,-3.465343978895424261e-09,-4.158412774674508948e-09,-4.851481570453593635e-09,-5.544550366232678321e-09,-6.237619162011763008e-09,-6.930687957790847695e-09,-7.623756753569933209e-09,-8.316825549349019550e-09,-9.009894345128105891e-09,-9.702963140907192232e-09,-1.039603193668627857e-08,-1.108910073246536491e-08,-1.178216952824445126e-08,-1.247523832402353760e-08,-1.316830711980262394e-08,-1.386137591558171028e-08,-1.455444471136079662e-08,-1.524751350713988296e-08,-1.594058230291896930e-08,-1.663365109869805564e-08,-1.732671989447714198e-08,-1.801978869025622833e-08,-1.871285748603531467e-08,-1.940592628181440101e-08,-2.009899507759348735e-08,-2.079206387337257369e-08,-2.148513266915166003e-08,-2.217820146493074637e-08,-2.287127026070983271e-08,-2.356433905648891906e-08,-2.425740785226800540e-08,-2.495047664804709174e-08,-2.564354544382617808e-08,-2.633661423960526442e-08,-2.702968303538435076e-08,-2.772275183116343710e-08,-2.841582062694252344e-08,-2.910888942272160978e-08,-2.980195821850069613e-08,-3.049502701427978578e-08,-3.118809581005887543e-08,-3.188116460583796508e-08,-3.257423340161705472e-08,-3.326730219739614437e-08,-3.396037099317523402e-08,-3.465343978895432367e-08,-3.534650858473341332e-08,-3.603957738051250297e-08,-3.673264617629159262e-08,-3.742571497207068227e-08,-3.811878376784977192e-08,-3.881185256362886157e-08,-3.950492135940795122e-08,-4.019799015518704087e-08,-4.089105895096613052e-08,-4.158412774674522017e-08,-4.227719654252430982e-08,-4.297026533830339947e-08,-4.366333413408248912e-08 +0.000000000000000000e+00,-7.046587294010648363e-10,-1.409317458802129673e-09,-2.113976188203194509e-09,-2.818634917604259345e-09,-3.523293647005324182e-09,-4.227952376406389018e-09,-4.932611105807453441e-09,-5.637269835208517863e-09,-6.341928564609582286e-09,-7.046587294010646709e-09,-7.751246023411711131e-09,-8.455904752812776381e-09,-9.160563482213841631e-09,-9.865222211614906881e-09,-1.056988094101597213e-08,-1.127453967041703738e-08,-1.197919839981810263e-08,-1.268385712921916788e-08,-1.338851585862023313e-08,-1.409317458802129838e-08,-1.479783331742236363e-08,-1.550249204682342888e-08,-1.620715077622449578e-08,-1.691180950562556269e-08,-1.761646823502662959e-08,-1.832112696442769650e-08,-1.902578569382876340e-08,-1.973044442322983031e-08,-2.043510315263089721e-08,-2.113976188203196411e-08,-2.184442061143303102e-08,-2.254907934083409792e-08,-2.325373807023516483e-08,-2.395839679963623173e-08,-2.466305552903729864e-08,-2.536771425843836554e-08,-2.607237298783943244e-08,-2.677703171724049935e-08,-2.748169044664156625e-08,-2.818634917604263316e-08,-2.889100790544370006e-08,-2.959566663484476697e-08,-3.030032536424583387e-08,-3.100498409364690408e-08,-3.170964282304797430e-08,-3.241430155244904451e-08,-3.311896028185011472e-08,-3.382361901125118493e-08,-3.452827774065225515e-08,-3.523293647005332536e-08,-3.593759519945439557e-08,-3.664225392885546579e-08,-3.734691265825653600e-08,-3.805157138765760621e-08,-3.875623011705867643e-08,-3.946088884645974664e-08,-4.016554757586081685e-08,-4.087020630526188706e-08,-4.157486503466295728e-08,-4.227952376406402749e-08,-4.298418249346509770e-08,-4.368884122286616792e-08,-4.439349995226723813e-08 +0.000000000000000000e+00,6.788807438660281758e-10,1.357761487732056352e-09,2.036642231598084734e-09,2.715522975464113117e-09,3.394403719330141499e-09,4.073284463196169468e-09,4.752165207062197437e-09,5.431045950928225406e-09,6.109926694794253375e-09,6.788807438660281344e-09,7.467688182526310140e-09,8.146568926392338936e-09,8.825449670258367733e-09,9.504330414124396529e-09,1.018321115799042532e-08,1.086209190185645412e-08,1.154097264572248292e-08,1.221985338958851171e-08,1.289873413345454051e-08,1.357761487732056931e-08,1.425649562118659810e-08,1.493537636505262690e-08,1.561425710891865569e-08,1.629313785278468449e-08,1.697201859665071329e-08,1.765089934051674208e-08,1.832978008438277088e-08,1.900866082824879967e-08,1.968754157211482847e-08,2.036642231598085727e-08,2.104530305984688606e-08,2.172418380371291486e-08,2.240306454757894366e-08,2.308194529144497245e-08,2.376082603531100125e-08,2.443970677917703004e-08,2.511858752304305884e-08,2.579746826690908764e-08,2.647634901077511643e-08,2.715522975464114523e-08,2.783411049850717403e-08,2.851299124237320282e-08,2.919187198623923162e-08,2.987075273010526041e-08,3.054963347397128590e-08,3.122851421783731139e-08,3.190739496170333688e-08,3.258627570556936236e-08,3.326515644943538785e-08,3.394403719330141334e-08,3.462291793716743883e-08,3.530179868103346431e-08,3.598067942489948980e-08,3.665956016876551529e-08,3.733844091263154078e-08,3.801732165649756626e-08,3.869620240036359175e-08,3.937508314422961724e-08,4.005396388809564273e-08,4.073284463196166821e-08,4.141172537582769370e-08,4.209060611969371919e-08,4.276948686355974467e-08 +0.000000000000000000e+00,6.804624485690900376e-10,1.360924897138180075e-09,2.041387345707270216e-09,2.721849794276360564e-09,3.402312242845450912e-09,4.082774691414541260e-09,4.763237139983631608e-09,5.443699588552721955e-09,6.124162037121812303e-09,6.804624485690902651e-09,7.485086934259992999e-09,8.165549382829084174e-09,8.846011831398175349e-09,9.526474279967266524e-09,1.020693672853635770e-08,1.088739917710544887e-08,1.156786162567454005e-08,1.224832407424363122e-08,1.292878652281272240e-08,1.360924897138181357e-08,1.428971141995090475e-08,1.497017386851999592e-08,1.565063631708908875e-08,1.633109876565818158e-08,1.701156121422727441e-08,1.769202366279636724e-08,1.837248611136546007e-08,1.905294855993455290e-08,1.973341100850364573e-08,2.041387345707273856e-08,2.109433590564183139e-08,2.177479835421092422e-08,2.245526080278001705e-08,2.313572325134910988e-08,2.381618569991820271e-08,2.449664814848729553e-08,2.517711059705638836e-08,2.585757304562548119e-08,2.653803549419457402e-08,2.721849794276366685e-08,2.789896039133275968e-08,2.857942283990185251e-08,2.925988528847094534e-08,2.994034773704003817e-08,3.062081018560913100e-08,3.130127263417822383e-08,3.198173508274731666e-08,3.266219753131640949e-08,3.334265997988550232e-08,3.402312242845459515e-08,3.470358487702368798e-08,3.538404732559278080e-08,3.606450977416187363e-08,3.674497222273096646e-08,3.742543467130005929e-08,3.810589711986915212e-08,3.878635956843824495e-08,3.946682201700733778e-08,4.014728446557643061e-08,4.082774691414552344e-08,4.150820936271461627e-08,4.218867181128370910e-08,4.286913425985280193e-08 +0.000000000000000000e+00,6.858585321601603675e-10,1.371717064320320735e-09,2.057575596480480999e-09,2.743434128640641056e-09,3.429292660800801114e-09,4.115151192960961171e-09,4.801009725121121228e-09,5.486868257281281285e-09,6.172726789441441343e-09,6.858585321601601400e-09,7.544443853761760630e-09,8.230302385921920687e-09,8.916160918082080745e-09,9.602019450242240802e-09,1.028787798240240086e-08,1.097373651456256092e-08,1.165959504672272097e-08,1.234545357888288103e-08,1.303131211104304109e-08,1.371717064320320115e-08,1.440302917536336120e-08,1.508888770752352126e-08,1.577474623968368132e-08,1.646060477184384137e-08,1.714646330400400143e-08,1.783232183616416149e-08,1.851818036832432155e-08,1.920403890048448160e-08,1.988989743264464166e-08,2.057575596480480172e-08,2.126161449696496178e-08,2.194747302912512183e-08,2.263333156128528189e-08,2.331919009344544195e-08,2.400504862560560200e-08,2.469090715776576206e-08,2.537676568992592212e-08,2.606262422208608218e-08,2.674848275424624223e-08,2.743434128640640229e-08,2.812019981856656235e-08,2.880605835072672241e-08,2.949191688288688246e-08,3.017777541504704252e-08,3.086363394720720258e-08,3.154949247936736263e-08,3.223535101152752269e-08,3.292120954368768275e-08,3.360706807584784281e-08,3.429292660800800286e-08,3.497878514016816292e-08,3.566464367232832298e-08,3.635050220448848304e-08,3.703636073664864309e-08,3.772221926880880315e-08,3.840807780096896321e-08,3.909393633312912326e-08,3.977979486528928332e-08,4.046565339744944338e-08,4.115151192960960344e-08,4.183737046176976349e-08,4.252322899392992355e-08,4.320908752609008361e-08 +0.000000000000000000e+00,-6.788807437649538394e-10,-1.357761487529907679e-09,-2.036642231294861415e-09,-2.715522975059814944e-09,-3.394403718824768473e-09,-4.073284462589722002e-09,-4.752165206354675945e-09,-5.431045950119629888e-09,-6.109926693884583830e-09,-6.788807437649537773e-09,-7.467688181414491716e-09,-8.146568925179445659e-09,-8.825449668944399601e-09,-9.504330412709353544e-09,-1.018321115647430749e-08,-1.086209190023926143e-08,-1.154097264400421537e-08,-1.221985338776916932e-08,-1.289873413153412326e-08,-1.357761487529907720e-08,-1.425649561906403114e-08,-1.493537636282898674e-08,-1.561425710659394399e-08,-1.629313785035890124e-08,-1.697201859412385849e-08,-1.765089933788881575e-08,-1.832978008165377300e-08,-1.900866082541873025e-08,-1.968754156918368750e-08,-2.036642231294864475e-08,-2.104530305671360200e-08,-2.172418380047855926e-08,-2.240306454424351651e-08,-2.308194528800847376e-08,-2.376082603177343101e-08,-2.443970677553838826e-08,-2.511858751930334551e-08,-2.579746826306830276e-08,-2.647634900683326002e-08,-2.715522975059821727e-08,-2.783411049436317452e-08,-2.851299123812813177e-08,-2.919187198189308902e-08,-2.987075272565804627e-08,-3.054963346942300352e-08,-3.122851421318796078e-08,-3.190739495695291803e-08,-3.258627570071787528e-08,-3.326515644448283253e-08,-3.394403718824778978e-08,-3.462291793201274703e-08,-3.530179867577770428e-08,-3.598067941954266154e-08,-3.665956016330761879e-08,-3.733844090707257604e-08,-3.801732165083753329e-08,-3.869620239460249054e-08,-3.937508313836744779e-08,-4.005396388213240504e-08,-4.073284462589736230e-08,-4.141172536966231955e-08,-4.209060611342727680e-08,-4.276948685719223405e-08 +0.000000000000000000e+00,-6.804624484727395229e-10,-1.360924896945479046e-09,-2.041387345418218569e-09,-2.721849793890958092e-09,-3.402312242363697614e-09,-4.082774690836437137e-09,-4.763237139309176660e-09,-5.443699587781916183e-09,-6.124162036254655706e-09,-6.804624484727395229e-09,-7.485086933200134752e-09,-8.165549381672874275e-09,-8.846011830145613797e-09,-9.526474278618353320e-09,-1.020693672709109284e-08,-1.088739917556383237e-08,-1.156786162403657189e-08,-1.224832407250931141e-08,-1.292878652098205093e-08,-1.360924896945479046e-08,-1.428971141792752998e-08,-1.497017386640026950e-08,-1.565063631487300903e-08,-1.633109876334574855e-08,-1.701156121181848807e-08,-1.769202366029122759e-08,-1.837248610876396712e-08,-1.905294855723670664e-08,-1.973341100570944616e-08,-2.041387345418218569e-08,-2.109433590265492521e-08,-2.177479835112766473e-08,-2.245526079960040426e-08,-2.313572324807314378e-08,-2.381618569654588330e-08,-2.449664814501862282e-08,-2.517711059349136235e-08,-2.585757304196410187e-08,-2.653803549043684139e-08,-2.721849793890958092e-08,-2.789896038738232044e-08,-2.857942283585505996e-08,-2.925988528432779948e-08,-2.994034773280053901e-08,-3.062081018127327522e-08,-3.130127262974601144e-08,-3.198173507821874765e-08,-3.266219752669148386e-08,-3.334265997516422008e-08,-3.402312242363695629e-08,-3.470358487210969251e-08,-3.538404732058242872e-08,-3.606450976905516493e-08,-3.674497221752790115e-08,-3.742543466600063736e-08,-3.810589711447337358e-08,-3.878635956294610979e-08,-3.946682201141884601e-08,-4.014728445989158222e-08,-4.082774690836431843e-08,-4.150820935683705465e-08,-4.218867180530979086e-08,-4.286913425378252708e-08 +0.000000000000000000e+00,-6.858585320453859555e-10,-1.371717064090771911e-09,-2.057575596136157970e-09,-2.743434128181544236e-09,-3.429292660226930502e-09,-4.115151192272316767e-09,-4.801009724317703033e-09,-5.486868256363089299e-09,-6.172726788408475564e-09,-6.858585320453861830e-09,-7.544443852499248096e-09,-8.230302384544635189e-09,-8.916160916590022282e-09,-9.602019448635409375e-09,-1.028787798068079647e-08,-1.097373651272618356e-08,-1.165959504477157065e-08,-1.234545357681695775e-08,-1.303131210886234484e-08,-1.371717064090773193e-08,-1.440302917295311903e-08,-1.508888770499850612e-08,-1.577474623704389321e-08,-1.646060476908928030e-08,-1.714646330113466740e-08,-1.783232183318005449e-08,-1.851818036522544158e-08,-1.920403889727082868e-08,-1.988989742931621577e-08,-2.057575596136160286e-08,-2.126161449340698995e-08,-2.194747302545237705e-08,-2.263333155749776414e-08,-2.331919008954315123e-08,-2.400504862158853833e-08,-2.469090715363392542e-08,-2.537676568567931251e-08,-2.606262421772469960e-08,-2.674848274977008670e-08,-2.743434128181547379e-08,-2.812019981386086088e-08,-2.880605834590624798e-08,-2.949191687795163507e-08,-3.017777540999701885e-08,-3.086363394204240595e-08,-3.154949247408779304e-08,-3.223535100613318013e-08,-3.292120953817856723e-08,-3.360706807022395432e-08,-3.429292660226934141e-08,-3.497878513431472850e-08,-3.566464366636011560e-08,-3.635050219840550269e-08,-3.703636073045088978e-08,-3.772221926249627688e-08,-3.840807779454166397e-08,-3.909393632658705106e-08,-3.977979485863243815e-08,-4.046565339067782525e-08,-4.115151192272321234e-08,-4.183737045476859943e-08,-4.252322898681398653e-08,-4.320908751885937362e-08 +0.000000000000000000e+00,6.833702168523663590e-10,1.366740433704732718e-09,2.050110650557098973e-09,2.733480867409465022e-09,3.416851084261831071e-09,4.100221301114197120e-09,4.783591517966563582e-09,5.466961734818930045e-09,6.150331951671296507e-09,6.833702168523662969e-09,7.517072385376029432e-09,8.200442602228395894e-09,8.883812819080762356e-09,9.567183035933128819e-09,1.025055325278549528e-08,1.093392346963786174e-08,1.161729368649022821e-08,1.230066390334259467e-08,1.298403412019496113e-08,1.366740433704732759e-08,1.435077455389969406e-08,1.503414477075205886e-08,1.571751498760442367e-08,1.640088520445678848e-08,1.708425542130915329e-08,1.776762563816151810e-08,1.845099585501388290e-08,1.913436607186624771e-08,1.981773628871861252e-08,2.050110650557097733e-08,2.118447672242334214e-08,2.186784693927570694e-08,2.255121715612807175e-08,2.323458737298043656e-08,2.391795758983280137e-08,2.460132780668516618e-08,2.528469802353753098e-08,2.596806824038989579e-08,2.665143845724226060e-08,2.733480867409462541e-08,2.801817889094699022e-08,2.870154910779935502e-08,2.938491932465171983e-08,3.006828954150408464e-08,3.075165975835644945e-08,3.143502997520881426e-08,3.211840019206117906e-08,3.280177040891354387e-08,3.348514062576590868e-08,3.416851084261827349e-08,3.485188105947063830e-08,3.553525127632300310e-08,3.621862149317536791e-08,3.690199171002773272e-08,3.758536192688009753e-08,3.826873214373246234e-08,3.895210236058482714e-08,3.963547257743719195e-08,4.031884279428955676e-08,4.100221301114192157e-08,4.168558322799428638e-08,4.236895344484665118e-08,4.305232366169901599e-08 +0.000000000000000000e+00,6.795435245638690212e-10,1.359087049127738042e-09,2.038630573691607271e-09,2.718174098255476499e-09,3.397717622819345727e-09,4.077261147383214541e-09,4.756804671947083356e-09,5.436348196510952170e-09,6.115891721074820984e-09,6.795435245638689799e-09,7.474978770202557786e-09,8.154522294766425773e-09,8.834065819330293761e-09,9.513609343894161748e-09,1.019315286845802974e-08,1.087269639302189772e-08,1.155223991758576571e-08,1.223178344214963370e-08,1.291132696671350168e-08,1.359087049127736967e-08,1.427041401584123766e-08,1.494995754040510565e-08,1.562950106496897363e-08,1.630904458953284162e-08,1.698858811409670961e-08,1.766813163866057760e-08,1.834767516322444558e-08,1.902721868778831357e-08,1.970676221235218156e-08,2.038630573691604954e-08,2.106584926147991753e-08,2.174539278604378552e-08,2.242493631060765351e-08,2.310447983517152149e-08,2.378402335973538948e-08,2.446356688429925747e-08,2.514311040886312546e-08,2.582265393342699344e-08,2.650219745799086143e-08,2.718174098255472942e-08,2.786128450711859740e-08,2.854082803168246539e-08,2.922037155624633338e-08,2.989991508081020467e-08,3.057945860537407597e-08,3.125900212993794727e-08,3.193854565450181856e-08,3.261808917906568986e-08,3.329763270362956115e-08,3.397717622819343245e-08,3.465671975275730375e-08,3.533626327732117504e-08,3.601580680188504634e-08,3.669535032644891763e-08,3.737489385101278893e-08,3.805443737557666023e-08,3.873398090014053152e-08,3.941352442470440282e-08,4.009306794926827411e-08,4.077261147383214541e-08,4.145215499839601671e-08,4.213169852295988800e-08,4.281124204752375930e-08 +0.000000000000000000e+00,6.800495171855394475e-10,1.360099034371078895e-09,2.040148551556618446e-09,2.720198068742158203e-09,3.400247585927697961e-09,4.080297103113237719e-09,4.760346620298777890e-09,5.440396137484318061e-09,6.120445654669858233e-09,6.800495171855398404e-09,7.480544689040938575e-09,8.160594206226478746e-09,8.840643723412018918e-09,9.520693240597559089e-09,1.020074275778309926e-08,1.088079227496863943e-08,1.156084179215417960e-08,1.224089130933971977e-08,1.292094082652525995e-08,1.360099034371080012e-08,1.428103986089634029e-08,1.496108937808188046e-08,1.564113889526742228e-08,1.632118841245296411e-08,1.700123792963850594e-08,1.768128744682404776e-08,1.836133696400958959e-08,1.904138648119513141e-08,1.972143599838067324e-08,2.040148551556621506e-08,2.108153503275175689e-08,2.176158454993729872e-08,2.244163406712284054e-08,2.312168358430838237e-08,2.380173310149392419e-08,2.448178261867946602e-08,2.516183213586500784e-08,2.584188165305054967e-08,2.652193117023609149e-08,2.720198068742163332e-08,2.788203020460717515e-08,2.856207972179271697e-08,2.924212923897825880e-08,2.992217875616380062e-08,3.060222827334934245e-08,3.128227779053488427e-08,3.196232730772042610e-08,3.264237682490596792e-08,3.332242634209150975e-08,3.400247585927705158e-08,3.468252537646259340e-08,3.536257489364813523e-08,3.604262441083367705e-08,3.672267392801921888e-08,3.740272344520476070e-08,3.808277296239030253e-08,3.876282247957584436e-08,3.944287199676138618e-08,4.012292151394692801e-08,4.080297103113246983e-08,4.148302054831801166e-08,4.216307006550355348e-08,4.284311958268909531e-08 +0.000000000000000000e+00,-6.833702167449859077e-10,-1.366740433489971815e-09,-2.050110650234957620e-09,-2.733480866979943217e-09,-3.416851083724928815e-09,-4.100221300469914412e-09,-4.783591517214899596e-09,-5.466961733959884780e-09,-6.150331950704869964e-09,-6.833702167449855148e-09,-7.517072384194840332e-09,-8.200442600939825516e-09,-8.883812817684810700e-09,-9.567183034429795884e-09,-1.025055325117478107e-08,-1.093392346791976625e-08,-1.161729368466475144e-08,-1.230066390140973662e-08,-1.298403411815472180e-08,-1.366740433489970699e-08,-1.435077455164469217e-08,-1.503414476838967736e-08,-1.571751498513466089e-08,-1.640088520187964442e-08,-1.708425541862462794e-08,-1.776762563536961147e-08,-1.845099585211459500e-08,-1.913436606885957853e-08,-1.981773628560456206e-08,-2.050110650234954559e-08,-2.118447671909452912e-08,-2.186784693583951265e-08,-2.255121715258449618e-08,-2.323458736932947971e-08,-2.391795758607446324e-08,-2.460132780281944677e-08,-2.528469801956443030e-08,-2.596806823630941383e-08,-2.665143845305439736e-08,-2.733480866979938089e-08,-2.801817888654436442e-08,-2.870154910328934795e-08,-2.938491932003433148e-08,-3.006828953677931501e-08,-3.075165975352429854e-08,-3.143502997026928207e-08,-3.211840018701426560e-08,-3.280177040375924913e-08,-3.348514062050423266e-08,-3.416851083724921618e-08,-3.485188105399419971e-08,-3.553525127073918324e-08,-3.621862148748416677e-08,-3.690199170422915030e-08,-3.758536192097413383e-08,-3.826873213771911736e-08,-3.895210235446410089e-08,-3.963547257120908442e-08,-4.031884278795406795e-08,-4.100221300469905148e-08,-4.168558322144403501e-08,-4.236895343818901854e-08,-4.305232365493400207e-08 +0.000000000000000000e+00,-6.795435244590833322e-10,-1.359087048918166664e-09,-2.038630573377250100e-09,-2.718174097836333742e-09,-3.397717622295417385e-09,-4.077261146754501027e-09,-4.756804671213585083e-09,-5.436348195672669139e-09,-6.115891720131753195e-09,-6.795435244590837251e-09,-7.474978769049921307e-09,-8.154522293509005363e-09,-8.834065817968089419e-09,-9.513609342427173475e-09,-1.019315286688625753e-08,-1.087269639134534159e-08,-1.155223991580442564e-08,-1.223178344026350970e-08,-1.291132696472259376e-08,-1.359087048918167781e-08,-1.427041401364076187e-08,-1.494995753809984592e-08,-1.562950106255892998e-08,-1.630904458701801404e-08,-1.698858811147709809e-08,-1.766813163593618215e-08,-1.834767516039526620e-08,-1.902721868485435026e-08,-1.970676220931343432e-08,-2.038630573377251837e-08,-2.106584925823160243e-08,-2.174539278269068648e-08,-2.242493630714977054e-08,-2.310447983160885460e-08,-2.378402335606793865e-08,-2.446356688052702271e-08,-2.514311040498610676e-08,-2.582265392944519082e-08,-2.650219745390427488e-08,-2.718174097836335893e-08,-2.786128450282244299e-08,-2.854082802728152704e-08,-2.922037155174061110e-08,-2.989991507619969846e-08,-3.057945860065878252e-08,-3.125900212511786658e-08,-3.193854564957695063e-08,-3.261808917403603469e-08,-3.329763269849511874e-08,-3.397717622295420280e-08,-3.465671974741328686e-08,-3.533626327187237091e-08,-3.601580679633145497e-08,-3.669535032079053902e-08,-3.737489384524962308e-08,-3.805443736970870714e-08,-3.873398089416779119e-08,-3.941352441862687525e-08,-4.009306794308595930e-08,-4.077261146754504336e-08,-4.145215499200412742e-08,-4.213169851646321147e-08,-4.281124204092229553e-08 +0.000000000000000000e+00,-6.800495170598267093e-10,-1.360099034119653419e-09,-2.040148551179479921e-09,-2.720198068239306424e-09,-3.400247585299132926e-09,-4.080297102358959842e-09,-4.760346619418786758e-09,-5.440396136478613675e-09,-6.120445653538440591e-09,-6.800495170598267507e-09,-7.480544687658094423e-09,-8.160594204717921339e-09,-8.840643721777748255e-09,-9.520693238837575171e-09,-1.020074275589740209e-08,-1.088079227295722900e-08,-1.156084179001705592e-08,-1.224089130707688284e-08,-1.292094082413670975e-08,-1.360099034119653667e-08,-1.428103985825636358e-08,-1.496108937531619215e-08,-1.564113889237602238e-08,-1.632118840943585260e-08,-1.700123792649568283e-08,-1.768128744355551305e-08,-1.836133696061534328e-08,-1.904138647767517350e-08,-1.972143599473500373e-08,-2.040148551179483395e-08,-2.108153502885466418e-08,-2.176158454591449440e-08,-2.244163406297432463e-08,-2.312168358003415485e-08,-2.380173309709398508e-08,-2.448178261415381530e-08,-2.516183213121364553e-08,-2.584188164827347575e-08,-2.652193116533330598e-08,-2.720198068239313620e-08,-2.788203019945296643e-08,-2.856207971651279665e-08,-2.924212923357262688e-08,-2.992217875063245710e-08,-3.060222826769228733e-08,-3.128227778475211755e-08,-3.196232730181194778e-08,-3.264237681887177800e-08,-3.332242633593160823e-08,-3.400247585299143845e-08,-3.468252537005126868e-08,-3.536257488711109890e-08,-3.604262440417092912e-08,-3.672267392123075935e-08,-3.740272343829058957e-08,-3.808277295535041980e-08,-3.876282247241025002e-08,-3.944287198947008025e-08,-4.012292150652991047e-08,-4.080297102358974070e-08,-4.148302054064957092e-08,-4.216307005770940115e-08,-4.284311957476923137e-08 +0.000000000000000000e+00,6.949577304167533076e-10,1.389915460833506615e-09,2.084873191250259923e-09,2.779830921667013230e-09,3.474788652083766538e-09,4.169746382500519846e-09,4.864704112917273153e-09,5.559661843334026461e-09,6.254619573750779768e-09,6.949577304167533076e-09,7.644535034584286383e-09,8.339492765001039691e-09,9.034450495417792999e-09,9.729408225834546306e-09,1.042436595625129961e-08,1.111932368666805292e-08,1.181428141708480623e-08,1.250923914750155954e-08,1.320419687791831284e-08,1.389915460833506615e-08,1.459411233875181946e-08,1.528907006916857277e-08,1.598402779958532607e-08,1.667898553000207938e-08,1.737394326041883269e-08,1.806890099083558600e-08,1.876385872125233930e-08,1.945881645166909261e-08,2.015377418208584592e-08,2.084873191250259923e-08,2.154368964291935254e-08,2.223864737333610584e-08,2.293360510375285915e-08,2.362856283416961246e-08,2.432352056458636577e-08,2.501847829500311907e-08,2.571343602541987238e-08,2.640839375583662569e-08,2.710335148625337900e-08,2.779830921667013230e-08,2.849326694708688561e-08,2.918822467750363892e-08,2.988318240792038892e-08,3.057814013833713892e-08,3.127309786875388892e-08,3.196805559917063891e-08,3.266301332958738891e-08,3.335797106000413891e-08,3.405292879042088891e-08,3.474788652083763891e-08,3.544284425125438891e-08,3.613780198167113891e-08,3.683275971208788891e-08,3.752771744250463891e-08,3.822267517292138890e-08,3.891763290333813890e-08,3.961259063375488890e-08,4.030754836417163890e-08,4.100250609458838890e-08,4.169746382500513890e-08,4.239242155542188890e-08,4.308737928583863890e-08,4.378233701625538889e-08 +0.000000000000000000e+00,6.880021272508087573e-10,1.376004254501617515e-09,2.064006381752426169e-09,2.752008509003234616e-09,3.440010636254043063e-09,4.128012763504851510e-09,4.816014890755659957e-09,5.504017018006468404e-09,6.192019145257276851e-09,6.880021272508085298e-09,7.568023399758892918e-09,8.256025527009701365e-09,8.944027654260509812e-09,9.632029781511318260e-09,1.032003190876212671e-08,1.100803403601293515e-08,1.169603616326374360e-08,1.238403829051455205e-08,1.307204041776536050e-08,1.376004254501616894e-08,1.444804467226697739e-08,1.513604679951778584e-08,1.582404892676859428e-08,1.651205105401940273e-08,1.720005318127021118e-08,1.788805530852101962e-08,1.857605743577182807e-08,1.926405956302263652e-08,1.995206169027344497e-08,2.064006381752425341e-08,2.132806594477506186e-08,2.201606807202587031e-08,2.270407019927667875e-08,2.339207232652748720e-08,2.408007445377829565e-08,2.476807658102910410e-08,2.545607870827991254e-08,2.614408083553072099e-08,2.683208296278152944e-08,2.752008509003233788e-08,2.820808721728314633e-08,2.889608934453395478e-08,2.958409147178476323e-08,3.027209359903557167e-08,3.096009572628638343e-08,3.164809785353719518e-08,3.233609998078800694e-08,3.302410210803881870e-08,3.371210423528963045e-08,3.440010636254044221e-08,3.508810848979125396e-08,3.577611061704206572e-08,3.646411274429287748e-08,3.715211487154368923e-08,3.784011699879450099e-08,3.852811912604531274e-08,3.921612125329612450e-08,3.990412338054693625e-08,4.059212550779774801e-08,4.128012763504855977e-08,4.196812976229937152e-08,4.265613188955018328e-08,4.334413401680099503e-08 +0.000000000000000000e+00,6.847263178684510156e-10,1.369452635736902031e-09,2.054178953605353254e-09,2.738905271473804476e-09,3.423631589342255699e-09,4.108357907210706507e-09,4.793084225079157316e-09,5.477810542947608125e-09,6.162536860816058934e-09,6.847263178684509743e-09,7.531989496552960552e-09,8.216715814421411361e-09,8.901442132289862169e-09,9.586168450158312978e-09,1.027089476802676379e-08,1.095562108589521460e-08,1.164034740376366540e-08,1.232507372163211621e-08,1.300980003950056702e-08,1.369452635736901783e-08,1.437925267523746864e-08,1.506397899310591779e-08,1.574870531097436860e-08,1.643343162884281941e-08,1.711815794671127022e-08,1.780288426457972103e-08,1.848761058244817184e-08,1.917233690031662265e-08,1.985706321818507346e-08,2.054178953605352427e-08,2.122651585392197507e-08,2.191124217179042588e-08,2.259596848965887669e-08,2.328069480752732750e-08,2.396542112539577831e-08,2.465014744326422912e-08,2.533487376113267993e-08,2.601960007900113074e-08,2.670432639686958155e-08,2.738905271473803235e-08,2.807377903260648316e-08,2.875850535047493397e-08,2.944323166834338478e-08,3.012795798621183559e-08,3.081268430408028640e-08,3.149741062194873721e-08,3.218213693981718802e-08,3.286686325768563882e-08,3.355158957555408963e-08,3.423631589342254044e-08,3.492104221129099125e-08,3.560576852915944206e-08,3.629049484702789287e-08,3.697522116489634368e-08,3.765994748276479449e-08,3.834467380063324530e-08,3.902940011850169610e-08,3.971412643637014691e-08,4.039885275423859772e-08,4.108357907210704853e-08,4.176830538997549934e-08,4.245303170784395015e-08,4.313775802571240096e-08 +0.000000000000000000e+00,-6.949577303075560576e-10,-1.389915460615112115e-09,-2.084873190922668276e-09,-2.779830921230224644e-09,-3.474788651537781012e-09,-4.169746381845337379e-09,-4.864704112152893747e-09,-5.559661842460450115e-09,-6.254619572768006483e-09,-6.949577303075562850e-09,-7.644535033383119218e-09,-8.339492763690676413e-09,-9.034450493998233608e-09,-9.729408224305790803e-09,-1.042436595461334800e-08,-1.111932368492090519e-08,-1.181428141522846239e-08,-1.250923914553601958e-08,-1.320419687584357678e-08,-1.389915460615113397e-08,-1.459411233645869117e-08,-1.528907006676624836e-08,-1.598402779707380390e-08,-1.667898552738135944e-08,-1.737394325768891498e-08,-1.806890098799647052e-08,-1.876385871830402607e-08,-1.945881644861158161e-08,-2.015377417891913715e-08,-2.084873190922669269e-08,-2.154368963953424823e-08,-2.223864736984180377e-08,-2.293360510014935931e-08,-2.362856283045691485e-08,-2.432352056076447039e-08,-2.501847829107202593e-08,-2.571343602137958147e-08,-2.640839375168713701e-08,-2.710335148199469255e-08,-2.779830921230224809e-08,-2.849326694260980363e-08,-2.918822467291735917e-08,-2.988318240322491471e-08,-3.057814013353247025e-08,-3.127309786384002580e-08,-3.196805559414758134e-08,-3.266301332445513688e-08,-3.335797105476269242e-08,-3.405292878507024796e-08,-3.474788651537780350e-08,-3.544284424568535904e-08,-3.613780197599291458e-08,-3.683275970630047012e-08,-3.752771743660802566e-08,-3.822267516691558120e-08,-3.891763289722313674e-08,-3.961259062753069228e-08,-4.030754835783824782e-08,-4.100250608814580336e-08,-4.169746381845335890e-08,-4.239242154876091444e-08,-4.308737927906846998e-08,-4.378233700937602553e-08 +0.000000000000000000e+00,-6.880021271419339009e-10,-1.376004254283867802e-09,-2.064006381425801496e-09,-2.752008508567735190e-09,-3.440010635709668884e-09,-4.128012762851602992e-09,-4.816014889993537100e-09,-5.504017017135471207e-09,-6.192019144277405315e-09,-6.880021271419339423e-09,-7.568023398561274358e-09,-8.256025525703209292e-09,-8.944027652845144227e-09,-9.632029779987079162e-09,-1.032003190712901410e-08,-1.100803403427094903e-08,-1.169603616141288397e-08,-1.238403828855481890e-08,-1.307204041569675384e-08,-1.376004254283868877e-08,-1.444804466998062371e-08,-1.513604679712255864e-08,-1.582404892426449358e-08,-1.651205105140642851e-08,-1.720005317854836345e-08,-1.788805530569029838e-08,-1.857605743283223332e-08,-1.926405955997416825e-08,-1.995206168711610319e-08,-2.064006381425803812e-08,-2.132806594139997306e-08,-2.201606806854190799e-08,-2.270407019568384292e-08,-2.339207232282577786e-08,-2.408007444996771279e-08,-2.476807657710964773e-08,-2.545607870425158266e-08,-2.614408083139351760e-08,-2.683208295853545253e-08,-2.752008508567738747e-08,-2.820808721281932240e-08,-2.889608933996125734e-08,-2.958409146710319227e-08,-3.027209359424512390e-08,-3.096009572138705222e-08,-3.164809784852898053e-08,-3.233609997567090885e-08,-3.302410210281283717e-08,-3.371210422995476549e-08,-3.440010635709669380e-08,-3.508810848423862212e-08,-3.577611061138055044e-08,-3.646411273852247876e-08,-3.715211486566440707e-08,-3.784011699280633539e-08,-3.852811911994826371e-08,-3.921612124709019203e-08,-3.990412337423212034e-08,-4.059212550137404866e-08,-4.128012762851597698e-08,-4.196812975565790530e-08,-4.265613188279983361e-08,-4.334413400994176193e-08 +0.000000000000000000e+00,-6.847263177352760744e-10,-1.369452635470552149e-09,-2.054178953205828327e-09,-2.738905270941104711e-09,-3.423631588676381096e-09,-4.108357906411657480e-09,-4.793084224146933865e-09,-5.477810541882210250e-09,-6.162536859617486634e-09,-6.847263177352763019e-09,-7.531989495088038576e-09,-8.216715812823313306e-09,-8.901442130558588037e-09,-9.586168448293862767e-09,-1.027089476602913750e-08,-1.095562108376441223e-08,-1.164034740149968696e-08,-1.232507371923496169e-08,-1.300980003697023642e-08,-1.369452635470551115e-08,-1.437925267244078588e-08,-1.506397899017606061e-08,-1.574870530791133534e-08,-1.643343162564661007e-08,-1.711815794338188480e-08,-1.780288426111715953e-08,-1.848761057885243426e-08,-1.917233689658770899e-08,-1.985706321432298372e-08,-2.054178953205825845e-08,-2.122651584979353318e-08,-2.191124216752880791e-08,-2.259596848526408264e-08,-2.328069480299935737e-08,-2.396542112073463210e-08,-2.465014743846990683e-08,-2.533487375620518156e-08,-2.601960007394045629e-08,-2.670432639167573102e-08,-2.738905270941100575e-08,-2.807377902714628048e-08,-2.875850534488155521e-08,-2.944323166261682994e-08,-3.012795798035210136e-08,-3.081268429808737610e-08,-3.149741061582265083e-08,-3.218213693355792556e-08,-3.286686325129320029e-08,-3.355158956902847502e-08,-3.423631588676374975e-08,-3.492104220449902448e-08,-3.560576852223429921e-08,-3.629049483996957394e-08,-3.697522115770484867e-08,-3.765994747544012340e-08,-3.834467379317539813e-08,-3.902940011091067286e-08,-3.971412642864594759e-08,-4.039885274638122232e-08,-4.108357906411649705e-08,-4.176830538185177178e-08,-4.245303169958704651e-08,-4.313775801732232124e-08 +0.000000000000000000e+00,7.074469587205335463e-10,1.414893917441067093e-09,2.122340876161600432e-09,2.829787834882133772e-09,3.537234793602667111e-09,4.244681752323200864e-09,4.952128711043734618e-09,5.659575669764268371e-09,6.367022628484802124e-09,7.074469587205335877e-09,7.781916545925869630e-09,8.489363504646403383e-09,9.196810463366937136e-09,9.904257422087470889e-09,1.061170438080800464e-08,1.131915133952853840e-08,1.202659829824907215e-08,1.273404525696960590e-08,1.344149221569013966e-08,1.414893917441067341e-08,1.485638613313120716e-08,1.556383309185173926e-08,1.627128005057227136e-08,1.697872700929280346e-08,1.768617396801333556e-08,1.839362092673386766e-08,1.910106788545439975e-08,1.980851484417493185e-08,2.051596180289546395e-08,2.122340876161599605e-08,2.193085572033652815e-08,2.263830267905706025e-08,2.334574963777759235e-08,2.405319659649812445e-08,2.476064355521865654e-08,2.546809051393918864e-08,2.617553747265972074e-08,2.688298443138025284e-08,2.759043139010078494e-08,2.829787834882131704e-08,2.900532530754184914e-08,2.971277226626238124e-08,3.042021922498291333e-08,3.112766618370344543e-08,3.183511314242397753e-08,3.254256010114450963e-08,3.325000705986504173e-08,3.395745401858557383e-08,3.466490097730610593e-08,3.537234793602663803e-08,3.607979489474717012e-08,3.678724185346770222e-08,3.749468881218823432e-08,3.820213577090876642e-08,3.890958272962929852e-08,3.961702968834983062e-08,4.032447664707036272e-08,4.103192360579089482e-08,4.173937056451142691e-08,4.244681752323195901e-08,4.315426448195249111e-08,4.386171144067302321e-08,4.456915839939355531e-08 +0.000000000000000000e+00,5.298567561108279410e-20,1.059713512221655882e-19,1.589570268332483823e-19,2.119427024443311764e-19,2.649283780554139464e-19,3.179140536664967164e-19,3.708997292775794865e-19,4.238854048886622565e-19,4.768710804997450265e-19,5.298567561108277965e-19,5.828424317219105665e-19,6.358281073329933366e-19,6.888137829440761066e-19,7.417994585551588766e-19,7.947851341662416466e-19,8.477708097773244167e-19,9.007564853884071867e-19,9.537421609994900530e-19,1.006727836610572919e-18,1.059713512221655786e-18,1.112699187832738652e-18,1.165684863443821518e-18,1.218670539054904385e-18,1.271656214665987251e-18,1.324641890277070117e-18,1.377627565888152984e-18,1.430613241499235850e-18,1.483598917110318716e-18,1.536584592721401583e-18,1.589570268332484449e-18,1.642555943943567315e-18,1.695541619554650181e-18,1.748527295165733240e-18,1.801512970776816299e-18,1.854498646387899358e-18,1.907484321998982417e-18,1.960469997610065476e-18,2.013455673221148535e-18,2.066441348832231594e-18,2.119427024443314653e-18,2.172412700054397712e-18,2.225398375665480771e-18,2.278384051276563830e-18,2.331369726887646888e-18,2.384355402498729947e-18,2.437341078109813006e-18,2.490326753720896065e-18,2.543312429331979124e-18,2.596298104943062183e-18,2.649283780554145242e-18,2.702269456165228301e-18,2.755255131776311360e-18,2.808240807387394419e-18,2.861226482998477478e-18,2.914212158609560536e-18,2.967197834220643595e-18,3.020183509831726654e-18,3.073169185442809713e-18,3.126154861053892772e-18,3.179140536664975831e-18,3.232126212276058890e-18,3.285111887887141949e-18,3.338097563498225008e-18 +0.000000000000000000e+00,7.014036779705009231e-10,1.402807355941001846e-09,2.104211033911502976e-09,2.805614711882004106e-09,3.507018389852505236e-09,4.208422067823005952e-09,4.909825745793506668e-09,5.611229423764007385e-09,6.312633101734508101e-09,7.014036779705008817e-09,7.715440457675510361e-09,8.416844135646011904e-09,9.118247813616513448e-09,9.819651491587014991e-09,1.052105516955751653e-08,1.122245884752801808e-08,1.192386252549851962e-08,1.262526620346902116e-08,1.332666988143952271e-08,1.402807355941002425e-08,1.472947723738052580e-08,1.543088091535102734e-08,1.613228459332152888e-08,1.683368827129203043e-08,1.753509194926253197e-08,1.823649562723303351e-08,1.893789930520353506e-08,1.963930298317403660e-08,2.034070666114453814e-08,2.104211033911503969e-08,2.174351401708554123e-08,2.244491769505604277e-08,2.314632137302654432e-08,2.384772505099704586e-08,2.454912872896754740e-08,2.525053240693804895e-08,2.595193608490855049e-08,2.665333976287905203e-08,2.735474344084955358e-08,2.805614711882005512e-08,2.875755079679055666e-08,2.945895447476105821e-08,3.016035815273155644e-08,3.086176183070205468e-08,3.156316550867255291e-08,3.226456918664305115e-08,3.296597286461354938e-08,3.366737654258404762e-08,3.436878022055454585e-08,3.507018389852504409e-08,3.577158757649554232e-08,3.647299125446604056e-08,3.717439493243653879e-08,3.787579861040703702e-08,3.857720228837753526e-08,3.927860596634803349e-08,3.998000964431853173e-08,4.068141332228902996e-08,4.138281700025952820e-08,4.208422067823002643e-08,4.278562435620052467e-08,4.348702803417102290e-08,4.418843171214152114e-08 +0.000000000000000000e+00,7.013982618589395146e-10,1.402796523717879029e-09,2.104194785576818337e-09,2.805593047435757645e-09,3.506991309294696953e-09,4.208389571153636674e-09,4.909787833012576395e-09,5.611186094871516117e-09,6.312584356730455838e-09,7.013982618589395560e-09,7.715380880448336108e-09,8.416779142307276657e-09,9.118177404166217205e-09,9.819575666025157754e-09,1.052097392788409830e-08,1.122237218974303885e-08,1.192377045160197940e-08,1.262516871346091995e-08,1.332656697531986050e-08,1.402796523717880105e-08,1.472936349903774159e-08,1.543076176089668214e-08,1.613216002275562269e-08,1.683355828461456324e-08,1.753495654647350379e-08,1.823635480833244434e-08,1.893775307019138489e-08,1.963915133205032543e-08,2.034054959390926598e-08,2.104194785576820653e-08,2.174334611762714708e-08,2.244474437948608763e-08,2.314614264134502818e-08,2.384754090320396873e-08,2.454893916506290927e-08,2.525033742692184982e-08,2.595173568878079037e-08,2.665313395063973092e-08,2.735453221249867147e-08,2.805593047435761202e-08,2.875732873621655257e-08,2.945872699807549311e-08,3.016012525993443035e-08,3.086152352179337090e-08,3.156292178365231145e-08,3.226432004551125200e-08,3.296571830737019255e-08,3.366711656922913310e-08,3.436851483108807365e-08,3.506991309294701419e-08,3.577131135480595474e-08,3.647270961666489529e-08,3.717410787852383584e-08,3.787550614038277639e-08,3.857690440224171694e-08,3.927830266410065749e-08,3.997970092595959803e-08,4.068109918781853858e-08,4.138249744967747913e-08,4.208389571153641968e-08,4.278529397339536023e-08,4.348669223525430078e-08,4.418809049711324133e-08 +0.000000000000000000e+00,3.536968369118645071e-10,7.073936738237290142e-10,1.061090510735593625e-09,1.414787347647458235e-09,1.768484184559322846e-09,2.122181021471187249e-09,2.475877858383051653e-09,2.829574695294916057e-09,3.183271532206780460e-09,3.536968369118644864e-09,3.890665206030509681e-09,4.244362042942374498e-09,4.598058879854239316e-09,4.951755716766104133e-09,5.305452553677968950e-09,5.659149390589833768e-09,6.012846227501698585e-09,6.366543064413563402e-09,6.720239901325428219e-09,7.073936738237293037e-09,7.427633575149157854e-09,7.781330412061022671e-09,8.135027248972887488e-09,8.488724085884752306e-09,8.842420922796617123e-09,9.196117759708481940e-09,9.549814596620346758e-09,9.903511433532211575e-09,1.025720827044407639e-08,1.061090510735594121e-08,1.096460194426780603e-08,1.131829878117967084e-08,1.167199561809153566e-08,1.202569245500340048e-08,1.237938929191526530e-08,1.273308612882713011e-08,1.308678296573899493e-08,1.344047980265085975e-08,1.379417663956272456e-08,1.414787347647458938e-08,1.450157031338645420e-08,1.485526715029831902e-08,1.520896398721018218e-08,1.556266082412204534e-08,1.591635766103390851e-08,1.627005449794577167e-08,1.662375133485763483e-08,1.697744817176949799e-08,1.733114500868136116e-08,1.768484184559322432e-08,1.803853868250508748e-08,1.839223551941695065e-08,1.874593235632881381e-08,1.909962919324067697e-08,1.945332603015254013e-08,1.980702286706440330e-08,2.016071970397626646e-08,2.051441654088812962e-08,2.086811337779999279e-08,2.122181021471185595e-08,2.157550705162371911e-08,2.192920388853558227e-08,2.228290072544744544e-08 +0.000000000000000000e+00,6.841350681981081250e-20,1.368270136396216250e-19,2.052405204594324255e-19,2.736540272792432018e-19,3.420675340990539782e-19,4.104810409188647546e-19,4.788945477386755310e-19,5.473080545584863074e-19,6.157215613782970838e-19,6.841350681981078602e-19,7.525485750179186366e-19,8.209620818377294129e-19,8.893755886575401893e-19,9.577890954773510620e-19,1.026202602297161935e-18,1.094616109116972807e-18,1.163029615936783680e-18,1.231443122756594553e-18,1.299856629576405425e-18,1.368270136396216298e-18,1.436683643216027171e-18,1.505097150035838043e-18,1.573510656855648916e-18,1.641924163675459789e-18,1.710337670495270662e-18,1.778751177315081534e-18,1.847164684134892599e-18,1.915578190954703665e-18,1.983991697774514730e-18,2.052405204594325795e-18,2.120818711414136861e-18,2.189232218233947926e-18,2.257645725053758991e-18,2.326059231873570056e-18,2.394472738693381122e-18,2.462886245513192187e-18,2.531299752333003252e-18,2.599713259152814318e-18,2.668126765972625383e-18,2.736540272792436448e-18,2.804953779612247513e-18,2.873367286432058579e-18,2.941780793251869644e-18,3.010194300071680709e-18,3.078607806891491774e-18,3.147021313711302840e-18,3.215434820531113905e-18,3.283848327350924970e-18,3.352261834170736036e-18,3.420675340990547101e-18,3.489088847810358166e-18,3.557502354630169231e-18,3.625915861449980297e-18,3.694329368269791362e-18,3.762742875089602427e-18,3.831156381909413493e-18,3.899569888729224558e-18,3.967983395549035623e-18,4.036396902368846688e-18,4.104810409188657754e-18,4.173223916008468819e-18,4.241637422828279884e-18,4.310050929648090949e-18 +0.000000000000000000e+00,-7.074469586145062592e-10,-1.414893917229012518e-09,-2.122340875843518881e-09,-2.829787834458025450e-09,-3.537234793072532020e-09,-4.244681751687038589e-09,-4.952128710301545159e-09,-5.659575668916051728e-09,-6.367022627530558297e-09,-7.074469586145064867e-09,-7.781916544759571436e-09,-8.489363503374078833e-09,-9.196810461988586229e-09,-9.904257420603093626e-09,-1.061170437921760102e-08,-1.131915133783210842e-08,-1.202659829644661582e-08,-1.273404525506112321e-08,-1.344149221367563061e-08,-1.414893917229013801e-08,-1.485638613090464540e-08,-1.556383308951915280e-08,-1.627128004813366019e-08,-1.697872700674816759e-08,-1.768617396536267499e-08,-1.839362092397718238e-08,-1.910106788259168978e-08,-1.980851484120619718e-08,-2.051596179982070457e-08,-2.122340875843521197e-08,-2.193085571704971937e-08,-2.263830267566422676e-08,-2.334574963427873416e-08,-2.405319659289324156e-08,-2.476064355150774895e-08,-2.546809051012225635e-08,-2.617553746873676375e-08,-2.688298442735127114e-08,-2.759043138596577854e-08,-2.829787834458028594e-08,-2.900532530319479333e-08,-2.971277226180930073e-08,-3.042021922042381144e-08,-3.112766617903832545e-08,-3.183511313765283946e-08,-3.254256009626735348e-08,-3.325000705488186749e-08,-3.395745401349638151e-08,-3.466490097211089552e-08,-3.537234793072540953e-08,-3.607979488933992355e-08,-3.678724184795443756e-08,-3.749468880656895158e-08,-3.820213576518346559e-08,-3.890958272379797960e-08,-3.961702968241249362e-08,-4.032447664102700763e-08,-4.103192359964152165e-08,-4.173937055825603566e-08,-4.244681751687054967e-08,-4.315426447548506369e-08,-4.386171143409957770e-08,-4.456915839271409172e-08 +0.000000000000000000e+00,-3.536968368058692215e-10,-7.073936736117384430e-10,-1.061090510417607613e-09,-1.414787347223476679e-09,-1.768484184029345746e-09,-2.122181020835214812e-09,-2.475877857641083878e-09,-2.829574694446952945e-09,-3.183271531252822011e-09,-3.536968368058691078e-09,-3.890665204864560558e-09,-4.244362041670430451e-09,-4.598058878476300345e-09,-4.951755715282170238e-09,-5.305452552088040132e-09,-5.659149388893910025e-09,-6.012846225699779919e-09,-6.366543062505649813e-09,-6.720239899311519706e-09,-7.073936736117389600e-09,-7.427633572923259493e-09,-7.781330409729129387e-09,-8.135027246534999280e-09,-8.488724083340869174e-09,-8.842420920146739068e-09,-9.196117756952608961e-09,-9.549814593758478855e-09,-9.903511430564348748e-09,-1.025720826737021864e-08,-1.061090510417608854e-08,-1.096460194098195843e-08,-1.131829877778782832e-08,-1.167199561459369822e-08,-1.202569245139956811e-08,-1.237938928820543800e-08,-1.273308612501130790e-08,-1.308678296181717779e-08,-1.344047979862304768e-08,-1.379417663542891758e-08,-1.414787347223478747e-08,-1.450157030904065736e-08,-1.485526714584652726e-08,-1.520896398265239715e-08,-1.556266081945826870e-08,-1.591635765626414025e-08,-1.627005449307001180e-08,-1.662375132987588334e-08,-1.697744816668175489e-08,-1.733114500348762644e-08,-1.768484184029349799e-08,-1.803853867709936954e-08,-1.839223551390524108e-08,-1.874593235071111263e-08,-1.909962918751698418e-08,-1.945332602432285573e-08,-1.980702286112872728e-08,-2.016071969793459882e-08,-2.051441653474047037e-08,-2.086811337154634192e-08,-2.122181020835221347e-08,-2.157550704515808501e-08,-2.192920388196395656e-08,-2.228290071876982811e-08 +0.000000000000000000e+00,-7.014036778621634239e-10,-1.402807355724326848e-09,-2.104211033586490478e-09,-2.805614711448654109e-09,-3.507018389310817740e-09,-4.208422067172980957e-09,-4.909825745035144174e-09,-5.611229422897307391e-09,-6.312633100759470608e-09,-7.014036778621633825e-09,-7.715440456483797870e-09,-8.416844134345961914e-09,-9.118247812208125958e-09,-9.819651490070290002e-09,-1.052105516793245405e-08,-1.122245884579461809e-08,-1.192386252365678214e-08,-1.262526620151894618e-08,-1.332666987938111022e-08,-1.402807355724327427e-08,-1.472947723510543831e-08,-1.543088091296760236e-08,-1.613228459082976640e-08,-1.683368826869193045e-08,-1.753509194655409449e-08,-1.823649562441625853e-08,-1.893789930227842258e-08,-1.963930298014058662e-08,-2.034070665800275067e-08,-2.104211033586491471e-08,-2.174351401372707876e-08,-2.244491769158924280e-08,-2.314632136945140684e-08,-2.384772504731357089e-08,-2.454912872517573493e-08,-2.525053240303789898e-08,-2.595193608090006302e-08,-2.665333975876222707e-08,-2.735474343662439111e-08,-2.805614711448655515e-08,-2.875755079234871920e-08,-2.945895447021088324e-08,-3.016035814807304729e-08,-3.086176182593521133e-08,-3.156316550379737538e-08,-3.226456918165953942e-08,-3.296597285952170346e-08,-3.366737653738386751e-08,-3.436878021524603155e-08,-3.507018389310819560e-08,-3.577158757097035964e-08,-3.647299124883252368e-08,-3.717439492669468773e-08,-3.787579860455685177e-08,-3.857720228241901582e-08,-3.927860596028117986e-08,-3.998000963814334391e-08,-4.068141331600550795e-08,-4.138281699386767199e-08,-4.208422067172983604e-08,-4.278562434959200008e-08,-4.348702802745416413e-08,-4.418843170531632817e-08 +0.000000000000000000e+00,-7.013982617221534130e-10,-1.402796523444306826e-09,-2.104194785166460239e-09,-2.805593046888613652e-09,-3.506991308610767065e-09,-4.208389570332920478e-09,-4.909787832055074305e-09,-5.611186093777228131e-09,-6.312584355499381958e-09,-7.013982617221535784e-09,-7.715380878943689611e-09,-8.416779140665842610e-09,-9.118177402387995610e-09,-9.819575664110148609e-09,-1.052097392583230161e-08,-1.122237218755445461e-08,-1.192377044927660761e-08,-1.262516871099876061e-08,-1.332656697272091361e-08,-1.402796523444306661e-08,-1.472936349616521961e-08,-1.543076175788737260e-08,-1.613216001960952726e-08,-1.683355828133168191e-08,-1.753495654305383657e-08,-1.823635480477599122e-08,-1.893775306649814587e-08,-1.963915132822030053e-08,-2.034054958994245518e-08,-2.104194785166460983e-08,-2.174334611338676449e-08,-2.244474437510891914e-08,-2.314614263683107380e-08,-2.384754089855322845e-08,-2.454893916027538310e-08,-2.525033742199753776e-08,-2.595173568371969241e-08,-2.665313394544184706e-08,-2.735453220716400172e-08,-2.805593046888615637e-08,-2.875732873060831103e-08,-2.945872699233046568e-08,-3.016012525405262033e-08,-3.086152351577477830e-08,-3.156292177749693626e-08,-3.226432003921909422e-08,-3.296571830094125218e-08,-3.366711656266341015e-08,-3.436851482438556811e-08,-3.506991308610772607e-08,-3.577131134782988403e-08,-3.647270960955204200e-08,-3.717410787127419996e-08,-3.787550613299635792e-08,-3.857690439471851588e-08,-3.927830265644067385e-08,-3.997970091816283181e-08,-4.068109917988498977e-08,-4.138249744160714773e-08,-4.208389570332930570e-08,-4.278529396505146366e-08,-4.348669222677362162e-08,-4.418809048849577958e-08 +0.000000000000000000e+00,6.538255981493045085e-10,1.307651196298609017e-09,1.961476794447913629e-09,2.615302392597218448e-09,3.269127990746523266e-09,3.922953588895828085e-09,4.576779187045133317e-09,5.230604785194438549e-09,5.884430383343743782e-09,6.538255981493049014e-09,7.192081579642354246e-09,7.845907177791659479e-09,8.499732775940964711e-09,9.153558374090269943e-09,9.807383972239575175e-09,1.046120957038888041e-08,1.111503516853818564e-08,1.176886076668749087e-08,1.242268636483679610e-08,1.307651196298610134e-08,1.373033756113540657e-08,1.438416315928471180e-08,1.503798875743401538e-08,1.569181435558331896e-08,1.634563995373262254e-08,1.699946555188192611e-08,1.765329115003122969e-08,1.830711674818053327e-08,1.896094234632983685e-08,1.961476794447914042e-08,2.026859354262844400e-08,2.092241914077774758e-08,2.157624473892705116e-08,2.223007033707635474e-08,2.288389593522565831e-08,2.353772153337496189e-08,2.419154713152426547e-08,2.484537272967356905e-08,2.549919832782287263e-08,2.615302392597217620e-08,2.680684952412147978e-08,2.746067512227078336e-08,2.811450072042008694e-08,2.876832631856939052e-08,2.942215191671869409e-08,3.007597751486799767e-08,3.072980311301730125e-08,3.138362871116660483e-08,3.203745430931590840e-08,3.269127990746521198e-08,3.334510550561451556e-08,3.399893110376381914e-08,3.465275670191312272e-08,3.530658230006242629e-08,3.596040789821172987e-08,3.661423349636103345e-08,3.726805909451033703e-08,3.792188469265964061e-08,3.857571029080894418e-08,3.922953588895824776e-08,3.988336148710755134e-08,4.053718708525685492e-08,4.119101268340615850e-08 +0.000000000000000000e+00,6.526614661157638794e-10,1.305322932231527759e-09,1.957984398347291535e-09,2.610645864463055104e-09,3.263307330578818673e-09,3.915968796694582242e-09,4.568630262810345812e-09,5.221291728926109381e-09,5.873953195041872950e-09,6.526614661157636519e-09,7.179276127273400089e-09,7.831937593389162831e-09,8.484599059504925573e-09,9.137260525620688315e-09,9.789921991736451057e-09,1.044258345785221380e-08,1.109524492396797654e-08,1.174790639008373928e-08,1.240056785619950202e-08,1.305322932231526477e-08,1.370589078843102751e-08,1.435855225454679025e-08,1.501121372066255299e-08,1.566387518677831573e-08,1.631653665289407848e-08,1.696919811900984122e-08,1.762185958512560396e-08,1.827452105124136670e-08,1.892718251735712945e-08,1.957984398347289219e-08,2.023250544958865493e-08,2.088516691570441767e-08,2.153782838182018041e-08,2.219048984793594316e-08,2.284315131405170590e-08,2.349581278016746864e-08,2.414847424628323138e-08,2.480113571239899412e-08,2.545379717851475687e-08,2.610645864463051961e-08,2.675912011074628235e-08,2.741178157686204509e-08,2.806444304297780783e-08,2.871710450909357058e-08,2.936976597520933332e-08,3.002242744132509275e-08,3.067508890744085218e-08,3.132775037355661162e-08,3.198041183967237105e-08,3.263307330578813048e-08,3.328573477190388992e-08,3.393839623801964935e-08,3.459105770413540878e-08,3.524371917025116822e-08,3.589638063636692765e-08,3.654904210248268708e-08,3.720170356859844652e-08,3.785436503471420595e-08,3.850702650082996538e-08,3.915968796694572482e-08,3.981234943306148425e-08,4.046501089917724368e-08,4.111767236529300312e-08 +0.000000000000000000e+00,-1.058142927618603023e-20,-2.116285855237206045e-20,-3.174428782855808917e-20,-4.232571710474411488e-20,-5.290714638093014059e-20,-6.348857565711616630e-20,-7.407000493330218600e-20,-8.465143420948820569e-20,-9.523286348567422538e-20,-1.058142927618602451e-19,-1.163957220380462648e-19,-1.269771513142322845e-19,-1.375585805904183042e-19,-1.481400098666043238e-19,-1.587214391427903435e-19,-1.693028684189763632e-19,-1.798842976951623829e-19,-1.904657269713484026e-19,-2.010471562475344223e-19,-2.116285855237204420e-19,-2.222100147999064858e-19,-2.327914440760925295e-19,-2.433728733522785733e-19,-2.539543026284646171e-19,-2.645357319046506608e-19,-2.751171611808367046e-19,-2.856985904570227484e-19,-2.962800197332087921e-19,-3.068614490093948359e-19,-3.174428782855808797e-19,-3.280243075617669234e-19,-3.386057368379529672e-19,-3.491871661141390110e-19,-3.597685953903250547e-19,-3.703500246665110985e-19,-3.809314539426971423e-19,-3.915128832188831860e-19,-4.020943124950692298e-19,-4.126757417712552736e-19,-4.232571710474413173e-19,-4.338386003236273611e-19,-4.444200295998133567e-19,-4.550014588759993523e-19,-4.655828881521853480e-19,-4.761643174283713436e-19,-4.867457467045573392e-19,-4.973271759807433348e-19,-5.079086052569293304e-19,-5.184900345331153261e-19,-5.290714638093013217e-19,-5.396528930854873173e-19,-5.502343223616733129e-19,-5.608157516378593085e-19,-5.713971809140453041e-19,-5.819786101902312998e-19,-5.925600394664172954e-19,-6.031414687426032910e-19,-6.137228980187892866e-19,-6.243043272949752822e-19,-6.348857565711612779e-19,-6.454671858473472735e-19,-6.560486151235332691e-19,-6.666300443997192647e-19 +0.000000000000000000e+00,6.266050607732376701e-10,1.253210121546475340e-09,1.879815182319712907e-09,2.506420243092950267e-09,3.133025303866187627e-09,3.759630364639424987e-09,4.386235425412661933e-09,5.012840486185898879e-09,5.639445546959135826e-09,6.266050607732372772e-09,6.892655668505609718e-09,7.519260729278846665e-09,8.145865790052083611e-09,8.772470850825320557e-09,9.399075911598557504e-09,1.002568097237179445e-08,1.065228603314503140e-08,1.127889109391826834e-08,1.190549615469150529e-08,1.253210121546474224e-08,1.315870627623797918e-08,1.378531133701121613e-08,1.441191639778445307e-08,1.503852145855769002e-08,1.566512651933092697e-08,1.629173158010416391e-08,1.691833664087740086e-08,1.754494170165063781e-08,1.817154676242387475e-08,1.879815182319711170e-08,1.942475688397034865e-08,2.005136194474358559e-08,2.067796700551682254e-08,2.130457206629005948e-08,2.193117712706329643e-08,2.255778218783653338e-08,2.318438724860977032e-08,2.381099230938300727e-08,2.443759737015624422e-08,2.506420243092948116e-08,2.569080749170271811e-08,2.631741255247595505e-08,2.694401761324919200e-08,2.757062267402242895e-08,2.819722773479566589e-08,2.882383279556890284e-08,2.945043785634213979e-08,3.007704291711537342e-08,3.070364797788860375e-08,3.133025303866183408e-08,3.195685809943506441e-08,3.258346316020829474e-08,3.321006822098152507e-08,3.383667328175475540e-08,3.446327834252798573e-08,3.508988340330121606e-08,3.571648846407444638e-08,3.634309352484767671e-08,3.696969858562090704e-08,3.759630364639413737e-08,3.822290870716736770e-08,3.884951376794059803e-08,3.947611882871382836e-08 +0.000000000000000000e+00,9.293432882068123212e-10,1.858686576413624642e-09,2.788029864620437067e-09,3.717373152827249698e-09,4.646716441034061916e-09,5.576059729240874134e-09,6.505403017447686352e-09,7.434746305654498569e-09,8.364089593861310787e-09,9.293432882068123832e-09,1.022277617027493688e-08,1.115211945848174992e-08,1.208146274668856297e-08,1.301080603489537601e-08,1.394014932310218906e-08,1.486949261130900210e-08,1.579883589951581515e-08,1.672817918772262819e-08,1.765752247592944124e-08,1.858686576413625428e-08,1.951620905234306733e-08,2.044555234054988037e-08,2.137489562875669342e-08,2.230423891696350646e-08,2.323358220517031951e-08,2.416292549337713255e-08,2.509226878158394560e-08,2.602161206979075864e-08,2.695095535799757169e-08,2.788029864620438473e-08,2.880964193441119778e-08,2.973898522261801082e-08,3.066832851082482387e-08,3.159767179903163691e-08,3.252701508723844996e-08,3.345635837544526300e-08,3.438570166365207605e-08,3.531504495185888909e-08,3.624438824006570214e-08,3.717373152827251518e-08,3.810307481647932823e-08,3.903241810468614127e-08,3.996176139289295432e-08,4.089110468109976736e-08,4.182044796930658041e-08,4.274979125751339345e-08,4.367913454572020650e-08,4.460847783392701954e-08,4.553782112213383259e-08,4.646716441034064563e-08,4.739650769854745868e-08,4.832585098675427172e-08,4.925519427496108477e-08,5.018453756316789781e-08,5.111388085137471086e-08,5.204322413958152390e-08,5.297256742778833694e-08,5.390191071599514999e-08,5.483125400420196303e-08,5.576059729240877608e-08,5.668994058061558912e-08,5.761928386882240217e-08,5.854862715702921521e-08 +0.000000000000000000e+00,7.461537050540672290e-10,1.492307410108134458e-09,2.238461115162201687e-09,2.984614820216268916e-09,3.730768525270335731e-09,4.476922230324402547e-09,5.223075935378469362e-09,5.969229640432536177e-09,6.715383345486602993e-09,7.461537050540669808e-09,8.207690755594736623e-09,8.953844460648803439e-09,9.699998165702870254e-09,1.044615187075693707e-08,1.119230557581100388e-08,1.193845928086507070e-08,1.268461298591913752e-08,1.343076669097320433e-08,1.417692039602727115e-08,1.492307410108133631e-08,1.566922780613539981e-08,1.641538151118946332e-08,1.716153521624352683e-08,1.790768892129759033e-08,1.865384262635165384e-08,1.939999633140571735e-08,2.014615003645978085e-08,2.089230374151384436e-08,2.163845744656790787e-08,2.238461115162197137e-08,2.313076485667603488e-08,2.387691856173009839e-08,2.462307226678416189e-08,2.536922597183822540e-08,2.611537967689228891e-08,2.686153338194635241e-08,2.760768708700041592e-08,2.835384079205447943e-08,2.909999449710854293e-08,2.984614820216260644e-08,3.059230190721666995e-08,3.133845561227073345e-08,3.208460931732479696e-08,3.283076302237886047e-08,3.357691672743292397e-08,3.432307043248698748e-08,3.506922413754105099e-08,3.581537784259511449e-08,3.656153154764917800e-08,3.730768525270324151e-08,3.805383895775730501e-08,3.879999266281136852e-08,3.954614636786543203e-08,4.029230007291949553e-08,4.103845377797355904e-08,4.178460748302762255e-08,4.253076118808168605e-08,4.327691489313574956e-08,4.402306859818981307e-08,4.476922230324387657e-08,4.551537600829794008e-08,4.626152971335200359e-08,4.700768341840606709e-08 +0.000000000000000000e+00,3.257847359539473709e-10,6.515694719078947417e-10,9.773542078618420092e-10,1.303138943815789277e-09,1.628923679769736544e-09,1.954708415723684018e-09,2.280493151677631493e-09,2.606277887631578967e-09,2.932062623585526441e-09,3.257847359539473915e-09,3.583632095493421390e-09,3.909416831447368864e-09,4.235201567401315925e-09,4.560986303355262985e-09,4.886771039309210046e-09,5.212555775263157107e-09,5.538340511217104167e-09,5.864125247171051228e-09,6.189909983124998289e-09,6.515694719078945349e-09,6.841479455032892410e-09,7.167264190986839471e-09,7.493048926940786531e-09,7.818833662894732765e-09,8.144618398848678998e-09,8.470403134802625232e-09,8.796187870756571465e-09,9.121972606710517699e-09,9.447757342664463932e-09,9.773542078618410166e-09,1.009932681457235640e-08,1.042511155052630263e-08,1.075089628648024887e-08,1.107668102243419510e-08,1.140246575838814133e-08,1.172825049434208757e-08,1.205403523029603380e-08,1.237981996624998003e-08,1.270560470220392627e-08,1.303138943815787250e-08,1.335717417411181873e-08,1.368295891006576497e-08,1.400874364601971120e-08,1.433452838197365743e-08,1.466031311792760367e-08,1.498609785388154990e-08,1.531188258983549614e-08,1.563766732578944237e-08,1.596345206174338860e-08,1.628923679769733484e-08,1.661502153365128107e-08,1.694080626960522730e-08,1.726659100555917354e-08,1.759237574151311977e-08,1.791816047746706600e-08,1.824394521342101224e-08,1.856972994937495847e-08,1.889551468532890470e-08,1.922129942128285094e-08,1.954708415723679717e-08,1.987286889319074340e-08,2.019865362914468964e-08,2.052443836509863587e-08 +0.000000000000000000e+00,-8.923441384208214195e-21,-1.784688276841642839e-20,-2.677032415262464258e-20,-3.569376553683285678e-20,-4.461720692104107398e-20,-5.354064830524929119e-20,-6.246408968945750839e-20,-7.138753107366572560e-20,-8.031097245787394280e-20,-8.923441384208216000e-20,-9.815785522629037721e-20,-1.070812966104985944e-19,-1.160047379947068237e-19,-1.249281793789150409e-19,-1.338516207631232581e-19,-1.427750621473314753e-19,-1.516985035315396925e-19,-1.606219449157479097e-19,-1.695453862999561269e-19,-1.784688276841643441e-19,-1.873922690683725613e-19,-1.963157104525807785e-19,-2.052391518367889957e-19,-2.141625932209972129e-19,-2.230860346052054301e-19,-2.320094759894136473e-19,-2.409329173736218645e-19,-2.498563587578300817e-19,-2.587798001420382989e-19,-2.677032415262465161e-19,-2.766266829104547333e-19,-2.855501242946629505e-19,-2.944735656788711677e-19,-3.033970070630793849e-19,-3.123204484472876021e-19,-3.212438898314958193e-19,-3.301673312157040365e-19,-3.390907725999122538e-19,-3.480142139841204710e-19,-3.569376553683286882e-19,-3.658610967525369054e-19,-3.747845381367451226e-19,-3.837079795209533398e-19,-3.926314209051615570e-19,-4.015548622893697742e-19,-4.104783036735779914e-19,-4.194017450577862086e-19,-4.283251864419944258e-19,-4.372486278262026430e-19,-4.461720692104108602e-19,-4.550955105946190774e-19,-4.640189519788272946e-19,-4.729423933630355118e-19,-4.818658347472437290e-19,-4.907892761314519462e-19,-4.997127175156601634e-19,-5.086361588998683806e-19,-5.175596002840765978e-19,-5.264830416682848150e-19,-5.354064830524930322e-19,-5.443299244367012494e-19,-5.532533658209094666e-19,-5.621768072051176839e-19 +0.000000000000000000e+00,-6.538255981348381536e-10,-1.307651196269676307e-09,-1.961476794404514357e-09,-2.615302392539352201e-09,-3.269127990674190044e-09,-3.922953588809027887e-09,-4.576779186943865731e-09,-5.230604785078703574e-09,-5.884430383213541417e-09,-6.538255981348379261e-09,-7.192081579483217104e-09,-7.845907177618054120e-09,-8.499732775752891964e-09,-9.153558373887729807e-09,-9.807383972022567650e-09,-1.046120957015740549e-08,-1.111503516829224334e-08,-1.176886076642708118e-08,-1.242268636456191902e-08,-1.307651196269675687e-08,-1.373033756083159471e-08,-1.438416315896643255e-08,-1.503798875710127040e-08,-1.569181435523610824e-08,-1.634563995337094608e-08,-1.699946555150578393e-08,-1.765329114964062177e-08,-1.830711674777545961e-08,-1.896094234591029746e-08,-1.961476794404513530e-08,-2.026859354217997314e-08,-2.092241914031481099e-08,-2.157624473844964883e-08,-2.223007033658448667e-08,-2.288389593471932452e-08,-2.353772153285416236e-08,-2.419154713098900020e-08,-2.484537272912383805e-08,-2.549919832725867589e-08,-2.615302392539351373e-08,-2.680684952352835158e-08,-2.746067512166318942e-08,-2.811450071979802726e-08,-2.876832631793286511e-08,-2.942215191606770295e-08,-3.007597751420254079e-08,-3.072980311233737864e-08,-3.138362871047221648e-08,-3.203745430860705432e-08,-3.269127990674189217e-08,-3.334510550487673001e-08,-3.399893110301156785e-08,-3.465275670114640570e-08,-3.530658229928124354e-08,-3.596040789741608138e-08,-3.661423349555091923e-08,-3.726805909368575707e-08,-3.792188469182059491e-08,-3.857571028995543276e-08,-3.922953588809027060e-08,-3.988336148622510844e-08,-4.053718708435994629e-08,-4.119101268249478413e-08 +0.000000000000000000e+00,-6.526614661369677238e-10,-1.305322932273935448e-09,-1.957984398410903378e-09,-2.610645864547871309e-09,-3.263307330684839240e-09,-3.915968796821806757e-09,-4.568630262958774274e-09,-5.221291729095741791e-09,-5.873953195232709308e-09,-6.526614661369676825e-09,-7.179276127506644342e-09,-7.831937593643611859e-09,-8.484599059780578549e-09,-9.137260525917545238e-09,-9.789921992054511928e-09,-1.044258345819147862e-08,-1.109524492432844531e-08,-1.174790639046541200e-08,-1.240056785660237869e-08,-1.305322932273934538e-08,-1.370589078887631207e-08,-1.435855225501327876e-08,-1.501121372115024545e-08,-1.566387518728721379e-08,-1.631653665342418214e-08,-1.696919811956115048e-08,-1.762185958569811882e-08,-1.827452105183508717e-08,-1.892718251797205551e-08,-1.957984398410902386e-08,-2.023250545024599220e-08,-2.088516691638296055e-08,-2.153782838251992889e-08,-2.219048984865689723e-08,-2.284315131479386558e-08,-2.349581278093083392e-08,-2.414847424706780227e-08,-2.480113571320477061e-08,-2.545379717934173895e-08,-2.610645864547870730e-08,-2.675912011161567564e-08,-2.741178157775264399e-08,-2.806444304388961233e-08,-2.871710451002658068e-08,-2.936976597616354902e-08,-3.002242744230051736e-08,-3.067508890843748571e-08,-3.132775037457445405e-08,-3.198041184071142240e-08,-3.263307330684839074e-08,-3.328573477298535909e-08,-3.393839623912232743e-08,-3.459105770525929577e-08,-3.524371917139626412e-08,-3.589638063753323246e-08,-3.654904210367020081e-08,-3.720170356980716915e-08,-3.785436503594413749e-08,-3.850702650208110584e-08,-3.915968796821807418e-08,-3.981234943435504253e-08,-4.046501090049201087e-08,-4.111767236662897922e-08 +0.000000000000000000e+00,-3.257847359751331207e-10,-6.515694719502662414e-10,-9.773542079253992588e-10,-1.303138943900532276e-09,-1.628923679875665293e-09,-1.954708415850798518e-09,-2.280493151825931742e-09,-2.606277887801064966e-09,-2.932062623776198190e-09,-3.257847359751331414e-09,-3.583632095726464638e-09,-3.909416831701597862e-09,-4.235201567676730673e-09,-4.560986303651863483e-09,-4.886771039626996294e-09,-5.212555775602129104e-09,-5.538340511577261915e-09,-5.864125247552394725e-09,-6.189909983527527536e-09,-6.515694719502660346e-09,-6.841479455477793157e-09,-7.167264191452925967e-09,-7.493048927428058778e-09,-7.818833663403190761e-09,-8.144618399378322745e-09,-8.470403135353454728e-09,-8.796187871328586711e-09,-9.121972607303718695e-09,-9.447757343278850678e-09,-9.773542079253982661e-09,-1.009932681522911464e-08,-1.042511155120424663e-08,-1.075089628717937861e-08,-1.107668102315451059e-08,-1.140246575912964258e-08,-1.172825049510477456e-08,-1.205403523107990654e-08,-1.237981996705503853e-08,-1.270560470303017051e-08,-1.303138943900530249e-08,-1.335717417498043448e-08,-1.368295891095556646e-08,-1.400874364693069844e-08,-1.433452838290583043e-08,-1.466031311888096241e-08,-1.498609785485609439e-08,-1.531188259083122638e-08,-1.563766732680635836e-08,-1.596345206278149034e-08,-1.628923679875662233e-08,-1.661502153473175431e-08,-1.694080627070688629e-08,-1.726659100668201828e-08,-1.759237574265715026e-08,-1.791816047863228224e-08,-1.824394521460741423e-08,-1.856972995058254621e-08,-1.889551468655767819e-08,-1.922129942253281018e-08,-1.954708415850794216e-08,-1.987286889448307414e-08,-2.019865363045820613e-08,-2.052443836643333811e-08 +0.000000000000000000e+00,-6.266050607757988281e-10,-1.253210121551597656e-09,-1.879815182327396588e-09,-2.506420243103195726e-09,-3.133025303878994864e-09,-3.759630364654794003e-09,-4.386235425430593554e-09,-5.012840486206393106e-09,-5.639445546982192658e-09,-6.266050607757992210e-09,-6.892655668533791762e-09,-7.519260729309591314e-09,-8.145865790085390866e-09,-8.772470850861190418e-09,-9.399075911636989969e-09,-1.002568097241278952e-08,-1.065228603318858907e-08,-1.127889109396438863e-08,-1.190549615474018818e-08,-1.253210121551598773e-08,-1.315870627629178728e-08,-1.378531133706758683e-08,-1.441191639784338638e-08,-1.503852145861918594e-08,-1.566512651939498714e-08,-1.629173158017078835e-08,-1.691833664094658955e-08,-1.754494170172239076e-08,-1.817154676249819197e-08,-1.879815182327399317e-08,-1.942475688404979438e-08,-2.005136194482559559e-08,-2.067796700560139679e-08,-2.130457206637719800e-08,-2.193117712715299920e-08,-2.255778218792880041e-08,-2.318438724870460162e-08,-2.381099230948040282e-08,-2.443759737025620403e-08,-2.506420243103200524e-08,-2.569080749180780644e-08,-2.631741255258360765e-08,-2.694401761335940885e-08,-2.757062267413521006e-08,-2.819722773491101127e-08,-2.882383279568681247e-08,-2.945043785646261368e-08,-3.007704291723841819e-08,-3.070364797801422271e-08,-3.133025303879002722e-08,-3.195685809956583174e-08,-3.258346316034163625e-08,-3.321006822111744077e-08,-3.383667328189324528e-08,-3.446327834266904980e-08,-3.508988340344485431e-08,-3.571648846422065883e-08,-3.634309352499646334e-08,-3.696969858577226786e-08,-3.759630364654807237e-08,-3.822290870732387689e-08,-3.884951376809968140e-08,-3.947611882887548592e-08 +0.000000000000000000e+00,-9.293432882246373396e-10,-1.858686576449274679e-09,-2.788029864673912226e-09,-3.717373152898549772e-09,-4.646716441123187318e-09,-5.576059729347824451e-09,-6.505403017572461584e-09,-7.434746305797098717e-09,-8.364089594021735849e-09,-9.293432882246372982e-09,-1.022277617047101012e-08,-1.115211945869564725e-08,-1.208146274692028438e-08,-1.301080603514492151e-08,-1.394014932336955865e-08,-1.486949261159419578e-08,-1.579883589981883457e-08,-1.672817918804347501e-08,-1.765752247626811545e-08,-1.858686576449275589e-08,-1.951620905271739633e-08,-2.044555234094203677e-08,-2.137489562916667722e-08,-2.230423891739131766e-08,-2.323358220561595810e-08,-2.416292549384059854e-08,-2.509226878206523898e-08,-2.602161207028987942e-08,-2.695095535851451986e-08,-2.788029864673916031e-08,-2.880964193496380075e-08,-2.973898522318844119e-08,-3.066832851141308163e-08,-3.159767179963772207e-08,-3.252701508786236251e-08,-3.345635837608700296e-08,-3.438570166431164340e-08,-3.531504495253628384e-08,-3.624438824076092428e-08,-3.717373152898556472e-08,-3.810307481721020516e-08,-3.903241810543484560e-08,-3.996176139365948605e-08,-4.089110468188412649e-08,-4.182044797010876693e-08,-4.274979125833340737e-08,-4.367913454655804781e-08,-4.460847783478268825e-08,-4.553782112300732869e-08,-4.646716441123196914e-08,-4.739650769945660958e-08,-4.832585098768125002e-08,-4.925519427590589046e-08,-5.018453756413053090e-08,-5.111388085235517134e-08,-5.204322414057981179e-08,-5.297256742880445223e-08,-5.390191071702909267e-08,-5.483125400525373311e-08,-5.576059729347837355e-08,-5.668994058170301399e-08,-5.761928386992765443e-08,-5.854862715815229488e-08 +0.000000000000000000e+00,-7.461537050366896119e-10,-1.492307410073379224e-09,-2.238461115110069042e-09,-2.984614820146758861e-09,-3.730768525183448680e-09,-4.476922230220138085e-09,-5.223075935256827490e-09,-5.969229640293516895e-09,-6.715383345330206300e-09,-7.461537050366895705e-09,-8.207690755403585110e-09,-8.953844460440274515e-09,-9.699998165476963920e-09,-1.044615187051365333e-08,-1.119230557555034273e-08,-1.193845928058703214e-08,-1.268461298562372154e-08,-1.343076669066041095e-08,-1.417692039569710035e-08,-1.492307410073378810e-08,-1.566922780577047420e-08,-1.641538151080716029e-08,-1.716153521584384639e-08,-1.790768892088053249e-08,-1.865384262591721858e-08,-1.939999633095390468e-08,-2.014615003599059078e-08,-2.089230374102727687e-08,-2.163845744606396297e-08,-2.238461115110064906e-08,-2.313076485613733516e-08,-2.387691856117402126e-08,-2.462307226621070735e-08,-2.536922597124739345e-08,-2.611537967628407955e-08,-2.686153338132076564e-08,-2.760768708635745174e-08,-2.835384079139413784e-08,-2.909999449643082393e-08,-2.984614820146751003e-08,-3.059230190650419612e-08,-3.133845561154088222e-08,-3.208460931657756832e-08,-3.283076302161425441e-08,-3.357691672665094051e-08,-3.432307043168762661e-08,-3.506922413672431270e-08,-3.581537784176099880e-08,-3.656153154679768490e-08,-3.730768525183437099e-08,-3.805383895687105709e-08,-3.879999266190774318e-08,-3.954614636694442928e-08,-4.029230007198111538e-08,-4.103845377701780147e-08,-4.178460748205448757e-08,-4.253076118709117367e-08,-4.327691489212785976e-08,-4.402306859716454586e-08,-4.476922230220123196e-08,-4.551537600723791805e-08,-4.626152971227460415e-08,-4.700768341731129024e-08 +0.000000000000000000e+00,6.493431435098810720e-10,1.298686287019762144e-09,1.948029430529643009e-09,2.597372574039523875e-09,3.246715717549404740e-09,3.896058861059286019e-09,4.545402004569167297e-09,5.194745148079048576e-09,5.844088291588929855e-09,6.493431435098811134e-09,7.142774578608692413e-09,7.792117722118573692e-09,8.441460865628454143e-09,9.090804009138334595e-09,9.740147152648215047e-09,1.038949029615809550e-08,1.103883343966797595e-08,1.168817658317785640e-08,1.233751972668773685e-08,1.298686287019761730e-08,1.363620601370749776e-08,1.428554915721737821e-08,1.493489230072725866e-08,1.558423544423713746e-08,1.623357858774701625e-08,1.688292173125689505e-08,1.753226487476677385e-08,1.818160801827665265e-08,1.883095116178653144e-08,1.948029430529641024e-08,2.012963744880628904e-08,2.077898059231616784e-08,2.142832373582604663e-08,2.207766687933592543e-08,2.272701002284580423e-08,2.337635316635568302e-08,2.402569630986556182e-08,2.467503945337544062e-08,2.532438259688531942e-08,2.597372574039519821e-08,2.662306888390507701e-08,2.727241202741495581e-08,2.792175517092483461e-08,2.857109831443471340e-08,2.922044145794459220e-08,2.986978460145447100e-08,3.051912774496434649e-08,3.116847088847422197e-08,3.181781403198409746e-08,3.246715717549397295e-08,3.311650031900384844e-08,3.376584346251372393e-08,3.441518660602359942e-08,3.506452974953347491e-08,3.571387289304335039e-08,3.636321603655322588e-08,3.701255918006310137e-08,3.766190232357297686e-08,3.831124546708285235e-08,3.896058861059272784e-08,3.960993175410260333e-08,4.025927489761247881e-08,4.090861804112235430e-08 +0.000000000000000000e+00,6.398328840444416611e-10,1.279665768088883322e-09,1.919498652133325087e-09,2.559331536177767058e-09,3.199164420222209029e-09,3.838997304266651001e-09,4.478830188311092972e-09,5.118663072355534943e-09,5.758495956399976914e-09,6.398328840444418886e-09,7.038161724488860857e-09,7.677994608533303655e-09,8.317827492577746454e-09,8.957660376622189252e-09,9.597493260666632051e-09,1.023732614471107485e-08,1.087715902875551765e-08,1.151699191279996045e-08,1.215682479684440324e-08,1.279665768088884604e-08,1.343649056493328884e-08,1.407632344897773164e-08,1.471615633302217444e-08,1.535598921706661724e-08,1.599582210111106004e-08,1.663565498515550283e-08,1.727548786919994563e-08,1.791532075324438843e-08,1.855515363728883123e-08,1.919498652133327403e-08,1.983481940537771683e-08,2.047465228942215962e-08,2.111448517346660242e-08,2.175431805751104522e-08,2.239415094155548802e-08,2.303398382559993082e-08,2.367381670964437362e-08,2.431364959368881642e-08,2.495348247773325921e-08,2.559331536177770201e-08,2.623314824582214481e-08,2.687298112986658761e-08,2.751281401391103041e-08,2.815264689795547321e-08,2.879247978199991600e-08,2.943231266604435880e-08,3.007214555008880160e-08,3.071197843413324109e-08,3.135181131817768058e-08,3.199164420222212007e-08,3.263147708626655956e-08,3.327130997031099905e-08,3.391114285435543854e-08,3.455097573839987803e-08,3.519080862244431752e-08,3.583064150648875701e-08,3.647047439053319650e-08,3.711030727457763599e-08,3.775014015862207548e-08,3.838997304266651497e-08,3.902980592671095446e-08,3.966963881075539395e-08,4.030947169479983344e-08 +0.000000000000000000e+00,6.913107118171875132e-10,1.382621423634375026e-09,2.073932135451562643e-09,2.765242847268750467e-09,3.456553559085938290e-09,4.147864270903126113e-09,4.839174982720313523e-09,5.530485694537500933e-09,6.221796406354688343e-09,6.913107118171875753e-09,7.604417829989063163e-09,8.295728541806250573e-09,8.987039253623437982e-09,9.678349965440625392e-09,1.036966067725781280e-08,1.106097138907500021e-08,1.175228210089218762e-08,1.244359281270937503e-08,1.313490352452656244e-08,1.382621423634374985e-08,1.451752494816093726e-08,1.520883565997812633e-08,1.590014637179531539e-08,1.659145708361250445e-08,1.728276779542969352e-08,1.797407850724688258e-08,1.866538921906407165e-08,1.935669993088126071e-08,2.004801064269844977e-08,2.073932135451563884e-08,2.143063206633282790e-08,2.212194277815001697e-08,2.281325348996720603e-08,2.350456420178439510e-08,2.419587491360158416e-08,2.488718562541877322e-08,2.557849633723596229e-08,2.626980704905315135e-08,2.696111776087034042e-08,2.765242847268752948e-08,2.834373918450471855e-08,2.903504989632190761e-08,2.972636060813909667e-08,3.041767131995628574e-08,3.110898203177347480e-08,3.180029274359066387e-08,3.249160345540785293e-08,3.318291416722504199e-08,3.387422487904223106e-08,3.456553559085942012e-08,3.525684630267660919e-08,3.594815701449379825e-08,3.663946772631098732e-08,3.733077843812817638e-08,3.802208914994536544e-08,3.871339986176255451e-08,3.940471057357974357e-08,4.009602128539693264e-08,4.078733199721412170e-08,4.147864270903131077e-08,4.216995342084849983e-08,4.286126413266568889e-08,4.355257484448287796e-08 +0.000000000000000000e+00,-6.493431434680748469e-10,-1.298686286936149694e-09,-1.948029430404224644e-09,-2.597372573872299801e-09,-3.246715717340374958e-09,-3.896058860808450115e-09,-4.545402004276524859e-09,-5.194745147744599602e-09,-5.844088291212674346e-09,-6.493431434680749089e-09,-7.142774578148823833e-09,-7.792117721616898576e-09,-8.441460865084973320e-09,-9.090804008553048063e-09,-9.740147152021122807e-09,-1.038949029548919755e-08,-1.103883343895727229e-08,-1.168817658242534704e-08,-1.233751972589342178e-08,-1.298686286936149652e-08,-1.363620601282957127e-08,-1.428554915629764601e-08,-1.493489229976572075e-08,-1.558423544323379384e-08,-1.623357858670186693e-08,-1.688292173016994002e-08,-1.753226487363801311e-08,-1.818160801710608620e-08,-1.883095116057415929e-08,-1.948029430404223238e-08,-2.012963744751030547e-08,-2.077898059097837856e-08,-2.142832373444645165e-08,-2.207766687791452474e-08,-2.272701002138259782e-08,-2.337635316485067091e-08,-2.402569630831874400e-08,-2.467503945178681709e-08,-2.532438259525489018e-08,-2.597372573872296327e-08,-2.662306888219103636e-08,-2.727241202565910945e-08,-2.792175516912718254e-08,-2.857109831259525563e-08,-2.922044145606332872e-08,-2.986978459953140180e-08,-3.051912774299947489e-08,-3.116847088646754798e-08,-3.181781402993562107e-08,-3.246715717340369416e-08,-3.311650031687176725e-08,-3.376584346033984034e-08,-3.441518660380791343e-08,-3.506452974727598652e-08,-3.571387289074405961e-08,-3.636321603421213270e-08,-3.701255917768020579e-08,-3.766190232114827887e-08,-3.831124546461635196e-08,-3.896058860808442505e-08,-3.960993175155249814e-08,-4.025927489502057123e-08,-4.090861803848864432e-08 +0.000000000000000000e+00,-6.398328840152083745e-10,-1.279665768030416749e-09,-1.919498652045624917e-09,-2.559331536060833084e-09,-3.199164420076041252e-09,-3.838997304091249833e-09,-4.478830188106458414e-09,-5.118663072121666996e-09,-5.758495956136875577e-09,-6.398328840152084158e-09,-7.038161724167292739e-09,-7.677994608182501321e-09,-8.317827492197709902e-09,-8.957660376212918483e-09,-9.597493260228127064e-09,-1.023732614424333565e-08,-1.087715902825854423e-08,-1.151699191227375281e-08,-1.215682479628896139e-08,-1.279665768030416997e-08,-1.343649056431937855e-08,-1.407632344833458713e-08,-1.471615633234979571e-08,-1.535598921636500595e-08,-1.599582210038021619e-08,-1.663565498439542642e-08,-1.727548786841063666e-08,-1.791532075242584689e-08,-1.855515363644105713e-08,-1.919498652045626736e-08,-1.983481940447147760e-08,-2.047465228848668784e-08,-2.111448517250189807e-08,-2.175431805651710831e-08,-2.239415094053231854e-08,-2.303398382454752878e-08,-2.367381670856273901e-08,-2.431364959257794925e-08,-2.495348247659315948e-08,-2.559331536060836972e-08,-2.623314824462357996e-08,-2.687298112863879019e-08,-2.751281401265400043e-08,-2.815264689666921066e-08,-2.879247978068442090e-08,-2.943231266469963113e-08,-3.007214554871484137e-08,-3.071197843273005160e-08,-3.135181131674526184e-08,-3.199164420076047208e-08,-3.263147708477568231e-08,-3.327130996879089255e-08,-3.391114285280610278e-08,-3.455097573682131302e-08,-3.519080862083652325e-08,-3.583064150485173349e-08,-3.647047438886694373e-08,-3.711030727288215396e-08,-3.775014015689736420e-08,-3.838997304091257443e-08,-3.902980592492778467e-08,-3.966963880894299490e-08,-4.030947169295820514e-08 +0.000000000000000000e+00,-6.913107117709587670e-10,-1.382621423541917534e-09,-2.073932135312876301e-09,-2.765242847083835068e-09,-3.456553558854793835e-09,-4.147864270625752602e-09,-4.839174982396711369e-09,-5.530485694167670136e-09,-6.221796405938628903e-09,-6.913107117709587670e-09,-7.604417829480545609e-09,-8.295728541251503549e-09,-8.987039253022461489e-09,-9.678349964793419429e-09,-1.036966067656437737e-08,-1.106097138833533531e-08,-1.175228210010629325e-08,-1.244359281187725119e-08,-1.313490352364820913e-08,-1.382621423541916707e-08,-1.451752494719012501e-08,-1.520883565896108460e-08,-1.590014637073204420e-08,-1.659145708250300379e-08,-1.728276779427396338e-08,-1.797407850604492298e-08,-1.866538921781588257e-08,-1.935669992958684217e-08,-2.004801064135780176e-08,-2.073932135312876135e-08,-2.143063206489972095e-08,-2.212194277667068054e-08,-2.281325348844164014e-08,-2.350456420021259973e-08,-2.419587491198355933e-08,-2.488718562375451892e-08,-2.557849633552547851e-08,-2.626980704729643811e-08,-2.696111775906739770e-08,-2.765242847083835730e-08,-2.834373918260931689e-08,-2.903504989438027648e-08,-2.972636060615123608e-08,-3.041767131792219567e-08,-3.110898202969315527e-08,-3.180029274146411486e-08,-3.249160345323507445e-08,-3.318291416500603405e-08,-3.387422487677699364e-08,-3.456553558854795324e-08,-3.525684630031891283e-08,-3.594815701208987243e-08,-3.663946772386083202e-08,-3.733077843563179161e-08,-3.802208914740275121e-08,-3.871339985917371080e-08,-3.940471057094467040e-08,-4.009602128271562999e-08,-4.078733199448658958e-08,-4.147864270625754918e-08,-4.216995341802850877e-08,-4.286126412979946837e-08,-4.355257484157042796e-08 +0.000000000000000000e+00,6.523380597618040216e-10,1.304676119523608043e-09,1.957014179285411961e-09,2.609352239047215673e-09,3.261690298809019384e-09,3.914028358570823095e-09,4.566366418332627220e-09,5.218704478094431345e-09,5.871042537856235470e-09,6.523380597618039595e-09,7.175718657379843720e-09,7.828056717141647845e-09,8.480394776903451970e-09,9.132732836665256095e-09,9.785070896427060220e-09,1.043740895618886435e-08,1.108974701595066847e-08,1.174208507571247260e-08,1.239442313547427672e-08,1.304676119523608085e-08,1.369909925499788497e-08,1.435143731475968910e-08,1.500377537452149157e-08,1.565611343428329238e-08,1.630845149404509320e-08,1.696078955380689401e-08,1.761312761356869483e-08,1.826546567333049565e-08,1.891780373309229646e-08,1.957014179285409728e-08,2.022247985261589810e-08,2.087481791237769891e-08,2.152715597213949973e-08,2.217949403190130054e-08,2.283183209166310136e-08,2.348417015142490218e-08,2.413650821118670299e-08,2.478884627094850381e-08,2.544118433071030463e-08,2.609352239047210544e-08,2.674586045023390626e-08,2.739819850999570707e-08,2.805053656975750789e-08,2.870287462951930871e-08,2.935521268928110952e-08,3.000755074904291034e-08,3.065988880880471116e-08,3.131222686856651197e-08,3.196456492832831279e-08,3.261690298809011360e-08,3.326924104785191442e-08,3.392157910761371524e-08,3.457391716737551605e-08,3.522625522713731687e-08,3.587859328689911769e-08,3.653093134666091850e-08,3.718326940642271932e-08,3.783560746618452013e-08,3.848794552594632095e-08,3.914028358570812177e-08,3.979262164546992258e-08,4.044495970523172340e-08,4.109729776499352422e-08 +0.000000000000000000e+00,6.466168352285607056e-10,1.293233670457121411e-09,1.939850505685682013e-09,2.586467340914242409e-09,3.233084176142802804e-09,3.879701011371363200e-09,4.526317846599923595e-09,5.172934681828483990e-09,5.819551517057044386e-09,6.466168352285604781e-09,7.112785187514165177e-09,7.759402022742724745e-09,8.406018857971284313e-09,9.052635693199843881e-09,9.699252528428403450e-09,1.034586936365696302e-08,1.099248619888552259e-08,1.163910303411408215e-08,1.228571986934264172e-08,1.293233670457120129e-08,1.357895353979976086e-08,1.422557037502832043e-08,1.487218721025688000e-08,1.551880404548543956e-08,1.616542088071399913e-08,1.681203771594255870e-08,1.745865455117111827e-08,1.810527138639967784e-08,1.875188822162823740e-08,1.939850505685679697e-08,2.004512189208535654e-08,2.069173872731391611e-08,2.133835556254247568e-08,2.198497239777103525e-08,2.263158923299959481e-08,2.327820606822815438e-08,2.392482290345671395e-08,2.457143973868527352e-08,2.521805657391383309e-08,2.586467340914239266e-08,2.651129024437095222e-08,2.715790707959951179e-08,2.780452391482807136e-08,2.845114075005663093e-08,2.909775758528519050e-08,2.974437442051375006e-08,3.039099125574230632e-08,3.103760809097085928e-08,3.168422492619941223e-08,3.233084176142796518e-08,3.297745859665651813e-08,3.362407543188507108e-08,3.427069226711362403e-08,3.491730910234217698e-08,3.556392593757072993e-08,3.621054277279928288e-08,3.685715960802783583e-08,3.750377644325638878e-08,3.815039327848494173e-08,3.879701011371349468e-08,3.944362694894204764e-08,4.009024378417060059e-08,4.073686061939915354e-08 +0.000000000000000000e+00,6.723741640054618996e-10,1.344748328010923799e-09,2.017122492016385802e-09,2.689496656021848012e-09,3.361870820027310222e-09,4.034244984032772432e-09,4.706619148038234228e-09,5.378993312043696024e-09,6.051367476049157820e-09,6.723741640054619617e-09,7.396115804060081413e-09,8.068489968065543209e-09,8.740864132071005005e-09,9.413238296076466802e-09,1.008561246008192860e-08,1.075798662408739039e-08,1.143036078809285219e-08,1.210273495209831399e-08,1.277510911610377578e-08,1.344748328010923758e-08,1.411985744411469938e-08,1.479223160812016117e-08,1.546460577212562462e-08,1.613697993613108973e-08,1.680935410013655483e-08,1.748172826414201994e-08,1.815410242814748504e-08,1.882647659215295015e-08,1.949885075615841525e-08,2.017122492016388036e-08,2.084359908416934546e-08,2.151597324817481057e-08,2.218834741218027567e-08,2.286072157618574078e-08,2.353309574019120588e-08,2.420546990419667099e-08,2.487784406820213609e-08,2.555021823220760120e-08,2.622259239621306630e-08,2.689496656021853141e-08,2.756734072422399651e-08,2.823971488822946162e-08,2.891208905223492672e-08,2.958446321624039183e-08,3.025683738024585693e-08,3.092921154425132204e-08,3.160158570825678714e-08,3.227395987226225225e-08,3.294633403626771735e-08,3.361870820027318246e-08,3.429108236427864756e-08,3.496345652828411267e-08,3.563583069228957777e-08,3.630820485629504288e-08,3.698057902030050798e-08,3.765295318430597309e-08,3.832532734831143819e-08,3.899770151231690330e-08,3.967007567632236840e-08,4.034244984032783351e-08,4.101482400433329861e-08,4.168719816833876372e-08,4.235957233234422882e-08 +0.000000000000000000e+00,-6.523380597019220389e-10,-1.304676119403844078e-09,-1.957014179105766117e-09,-2.609352238807688156e-09,-3.261690298509610194e-09,-3.914028358211532233e-09,-4.566366417913454272e-09,-5.218704477615376311e-09,-5.871042537317298350e-09,-6.523380597019220389e-09,-7.175718656721142428e-09,-7.828056716423064467e-09,-8.480394776124987333e-09,-9.132732835826910199e-09,-9.785070895528833065e-09,-1.043740895523075593e-08,-1.108974701493267880e-08,-1.174208507463460166e-08,-1.239442313433652453e-08,-1.304676119403844740e-08,-1.369909925374037026e-08,-1.435143731344229313e-08,-1.500377537314421599e-08,-1.565611343284613886e-08,-1.630845149254806173e-08,-1.696078955224998459e-08,-1.761312761195190746e-08,-1.826546567165383032e-08,-1.891780373135575319e-08,-1.957014179105767606e-08,-2.022247985075959892e-08,-2.087481791046152179e-08,-2.152715597016344465e-08,-2.217949402986536752e-08,-2.283183208956729039e-08,-2.348417014926921325e-08,-2.413650820897113612e-08,-2.478884626867305898e-08,-2.544118432837498185e-08,-2.609352238807690472e-08,-2.674586044777882758e-08,-2.739819850748075045e-08,-2.805053656718267331e-08,-2.870287462688459618e-08,-2.935521268658651905e-08,-3.000755074628844522e-08,-3.065988880599037140e-08,-3.131222686569229757e-08,-3.196456492539422375e-08,-3.261690298509614992e-08,-3.326924104479807610e-08,-3.392157910450000227e-08,-3.457391716420192845e-08,-3.522625522390385462e-08,-3.587859328360578079e-08,-3.653093134330770697e-08,-3.718326940300963314e-08,-3.783560746271155932e-08,-3.848794552241348549e-08,-3.914028358211541167e-08,-3.979262164181733784e-08,-4.044495970151926402e-08,-4.109729776122119019e-08 +0.000000000000000000e+00,-6.466168351766913113e-10,-1.293233670353382623e-09,-1.939850505530074037e-09,-2.586467340706765659e-09,-3.233084175883457280e-09,-3.879701011060148902e-09,-4.526317846236840937e-09,-5.172934681413532972e-09,-5.819551516590225007e-09,-6.466168351766917042e-09,-7.112785186943609077e-09,-7.759402022120301112e-09,-8.406018857296993148e-09,-9.052635692473685183e-09,-9.699252527650377218e-09,-1.034586936282706925e-08,-1.099248619800376129e-08,-1.163910303318045332e-08,-1.228571986835714536e-08,-1.293233670353383739e-08,-1.357895353871052943e-08,-1.422557037388722146e-08,-1.487218720906391350e-08,-1.551880404424060553e-08,-1.616542087941729757e-08,-1.681203771459398960e-08,-1.745865454977068164e-08,-1.810527138494737367e-08,-1.875188822012406571e-08,-1.939850505530075774e-08,-2.004512189047744978e-08,-2.069173872565414181e-08,-2.133835556083083385e-08,-2.198497239600752588e-08,-2.263158923118421792e-08,-2.327820606636090995e-08,-2.392482290153760199e-08,-2.457143973671429403e-08,-2.521805657189098606e-08,-2.586467340706767810e-08,-2.651129024224437013e-08,-2.715790707742106217e-08,-2.780452391259775420e-08,-2.845114074777444624e-08,-2.909775758295113827e-08,-2.974437441812783031e-08,-3.039099125330451903e-08,-3.103760808848120445e-08,-3.168422492365788987e-08,-3.233084175883457529e-08,-3.297745859401126070e-08,-3.362407542918794612e-08,-3.427069226436463154e-08,-3.491730909954131696e-08,-3.556392593471800237e-08,-3.621054276989468779e-08,-3.685715960507137321e-08,-3.750377644024805863e-08,-3.815039327542474404e-08,-3.879701011060142946e-08,-3.944362694577811488e-08,-4.009024378095480030e-08,-4.073686061613148571e-08 +0.000000000000000000e+00,-6.723741639385177591e-10,-1.344748327877035518e-09,-2.017122491815553381e-09,-2.689496655754071450e-09,-3.361870819692589519e-09,-4.034244983631107588e-09,-4.706619147569625658e-09,-5.378993311508143727e-09,-6.051367475446661796e-09,-6.723741639385179865e-09,-7.396115803323697935e-09,-8.068489967262216831e-09,-8.740864131200736555e-09,-9.413238295139256278e-09,-1.008561245907777600e-08,-1.075798662301629573e-08,-1.143036078695481545e-08,-1.210273495089333517e-08,-1.277510911483185490e-08,-1.344748327877037462e-08,-1.411985744270889434e-08,-1.479223160664741407e-08,-1.546460577058593379e-08,-1.613697993452445351e-08,-1.680935409846297324e-08,-1.748172826240149296e-08,-1.815410242634001269e-08,-1.882647659027853241e-08,-1.949885075421705213e-08,-2.017122491815557186e-08,-2.084359908209409158e-08,-2.151597324603261130e-08,-2.218834740997113103e-08,-2.286072157390965075e-08,-2.353309573784817047e-08,-2.420546990178669020e-08,-2.487784406572520992e-08,-2.555021822966372965e-08,-2.622259239360224937e-08,-2.689496655754076909e-08,-2.756734072147928882e-08,-2.823971488541780854e-08,-2.891208904935632826e-08,-2.958446321329484799e-08,-3.025683737723337102e-08,-3.092921154117189405e-08,-3.160158570511041708e-08,-3.227395986904894012e-08,-3.294633403298746315e-08,-3.361870819692598618e-08,-3.429108236086450921e-08,-3.496345652480303225e-08,-3.563583068874155528e-08,-3.630820485268007831e-08,-3.698057901661860134e-08,-3.765295318055712438e-08,-3.832532734449564741e-08,-3.899770150843417044e-08,-3.967007567237269347e-08,-4.034244983631121650e-08,-4.101482400024973954e-08,-4.168719816418826257e-08,-4.235957232812678560e-08 +0.000000000000000000e+00,6.611194390498363199e-10,1.322238878099672640e-09,1.983358317149509166e-09,2.644477756199345693e-09,3.305597195249182220e-09,3.966716634299018333e-09,4.627836073348854446e-09,5.288955512398690559e-09,5.950074951448526672e-09,6.611194390498362785e-09,7.272313829548198898e-09,7.933433268598035011e-09,8.594552707647870297e-09,9.255672146697705583e-09,9.916791585747540869e-09,1.057791102479737615e-08,1.123903046384721144e-08,1.190014990289704673e-08,1.256126934194688201e-08,1.322238878099671730e-08,1.388350822004655258e-08,1.454462765909638787e-08,1.520574709814622316e-08,1.586686653719606010e-08,1.652798597624589704e-08,1.718910541529573398e-08,1.785022485434557092e-08,1.851134429339540786e-08,1.917246373244524480e-08,1.983358317149508174e-08,2.049470261054491868e-08,2.115582204959475562e-08,2.181694148864459256e-08,2.247806092769442950e-08,2.313918036674426644e-08,2.380029980579410338e-08,2.446141924484394032e-08,2.512253868389377726e-08,2.578365812294361420e-08,2.644477756199345114e-08,2.710589700104328808e-08,2.776701644009312502e-08,2.842813587914296196e-08,2.908925531819279890e-08,2.975037475724263584e-08,3.041149419629247278e-08,3.107261363534230972e-08,3.173373307439214666e-08,3.239485251344198360e-08,3.305597195249182054e-08,3.371709139154165748e-08,3.437821083059149442e-08,3.503933026964133136e-08,3.570044970869116830e-08,3.636156914774100524e-08,3.702268858679084218e-08,3.768380802584067912e-08,3.834492746489051606e-08,3.900604690394035300e-08,3.966716634299018994e-08,4.032828578204002688e-08,4.098940522108986383e-08,4.165052466013970077e-08 +0.000000000000000000e+00,6.546655254458503449e-10,1.309331050891700690e-09,1.963996576337551035e-09,2.618662101783401380e-09,3.273327627229251725e-09,3.927993152675102070e-09,4.582658678120952828e-09,5.237324203566803587e-09,5.891989729012654345e-09,6.546655254458505104e-09,7.201320779904355862e-09,7.855986305350205793e-09,8.510651830796055725e-09,9.165317356241905656e-09,9.819982881687755587e-09,1.047464840713360552e-08,1.112931393257945545e-08,1.178397945802530538e-08,1.243864498347115531e-08,1.309331050891700524e-08,1.374797603436285518e-08,1.440264155980870511e-08,1.505730708525455669e-08,1.571197261070040828e-08,1.636663813614625986e-08,1.702130366159211145e-08,1.767596918703796304e-08,1.833063471248381462e-08,1.898530023792966621e-08,1.963996576337551779e-08,2.029463128882136938e-08,2.094929681426722096e-08,2.160396233971307255e-08,2.225862786515892414e-08,2.291329339060477572e-08,2.356795891605062731e-08,2.422262444149647889e-08,2.487728996694233048e-08,2.553195549238818206e-08,2.618662101783403365e-08,2.684128654327988523e-08,2.749595206872573682e-08,2.815061759417158841e-08,2.880528311961743999e-08,2.945994864506329158e-08,3.011461417050913985e-08,3.076927969595498813e-08,3.142394522140083641e-08,3.207861074684668469e-08,3.273327627229253296e-08,3.338794179773838124e-08,3.404260732318422952e-08,3.469727284863007779e-08,3.535193837407592607e-08,3.600660389952177435e-08,3.666126942496762262e-08,3.731593495041347090e-08,3.797060047585931918e-08,3.862526600130516746e-08,3.927993152675101573e-08,3.993459705219686401e-08,4.058926257764271229e-08,4.124392810308856056e-08 +0.000000000000000000e+00,6.691078180419176853e-10,1.338215636083835371e-09,2.007323454125753056e-09,2.676431272167670741e-09,3.345539090209588426e-09,4.014646908251506112e-09,4.683754726293423383e-09,5.352862544335340655e-09,6.021970362377257927e-09,6.691078180419175198e-09,7.360185998461092470e-09,8.029293816503010569e-09,8.698401634544928668e-09,9.367509452586846767e-09,1.003661727062876487e-08,1.070572508867068296e-08,1.137483290671260106e-08,1.204394072475451916e-08,1.271304854279643726e-08,1.338215636083835536e-08,1.405126417888027346e-08,1.472037199692219156e-08,1.538947981496411131e-08,1.605858763300603106e-08,1.672769545104795082e-08,1.739680326908987057e-08,1.806591108713179032e-08,1.873501890517371008e-08,1.940412672321562983e-08,2.007323454125754958e-08,2.074234235929946934e-08,2.141145017734138909e-08,2.208055799538330884e-08,2.274966581342522860e-08,2.341877363146714835e-08,2.408788144950906810e-08,2.475698926755098786e-08,2.542609708559290761e-08,2.609520490363482736e-08,2.676431272167674712e-08,2.743342053971866687e-08,2.810252835776058662e-08,2.877163617580250638e-08,2.944074399384442613e-08,3.010985181188634588e-08,3.077895962992826233e-08,3.144806744797017877e-08,3.211717526601209522e-08,3.278628308405401166e-08,3.345539090209592810e-08,3.412449872013784455e-08,3.479360653817976099e-08,3.546271435622167744e-08,3.613182217426359388e-08,3.680092999230551033e-08,3.747003781034742677e-08,3.813914562838934322e-08,3.880825344643125966e-08,3.947736126447317611e-08,4.014646908251509255e-08,4.081557690055700899e-08,4.148468471859892544e-08,4.215379253664084188e-08 +0.000000000000000000e+00,-6.611194389797507541e-10,-1.322238877959501508e-09,-1.983358316939252262e-09,-2.644477755919003016e-09,-3.305597194898753771e-09,-3.966716633878504525e-09,-4.627836072858255279e-09,-5.288955511838006033e-09,-5.950074950817756787e-09,-6.611194389797507541e-09,-7.272313828777258295e-09,-7.933433267757009049e-09,-8.594552706736760631e-09,-9.255672145716512212e-09,-9.916791584696263793e-09,-1.057791102367601537e-08,-1.123903046265576696e-08,-1.190014990163551854e-08,-1.256126934061527012e-08,-1.322238877959502170e-08,-1.388350821857477328e-08,-1.454462765755452486e-08,-1.520574709653427644e-08,-1.586686653551402802e-08,-1.652798597449377961e-08,-1.718910541347353119e-08,-1.785022485245328277e-08,-1.851134429143303435e-08,-1.917246373041278593e-08,-1.983358316939253751e-08,-2.049470260837228909e-08,-2.115582204735204068e-08,-2.181694148633179226e-08,-2.247806092531154384e-08,-2.313918036429129542e-08,-2.380029980327104700e-08,-2.446141924225079858e-08,-2.512253868123055016e-08,-2.578365812021030174e-08,-2.644477755919005333e-08,-2.710589699816980491e-08,-2.776701643714955649e-08,-2.842813587612930807e-08,-2.908925531510905965e-08,-2.975037475408881123e-08,-3.041149419306855950e-08,-3.107261363204831109e-08,-3.173373307102806267e-08,-3.239485251000781425e-08,-3.305597194898756583e-08,-3.371709138796731741e-08,-3.437821082694706899e-08,-3.503933026592682057e-08,-3.570044970490657216e-08,-3.636156914388632374e-08,-3.702268858286607532e-08,-3.768380802184582690e-08,-3.834492746082557848e-08,-3.900604689980533006e-08,-3.966716633878508164e-08,-4.032828577776483322e-08,-4.098940521674458481e-08,-4.165052465572433639e-08 +0.000000000000000000e+00,-6.546655253799865022e-10,-1.309331050759973004e-09,-1.963996576139959507e-09,-2.618662101519946009e-09,-3.273327626899932511e-09,-3.927993152279919013e-09,-4.582658677659905516e-09,-5.237324203039892018e-09,-5.891989728419878520e-09,-6.546655253799865022e-09,-7.201320779179851525e-09,-7.855986304559838027e-09,-8.510651829939824529e-09,-9.165317355319811031e-09,-9.819982880699797534e-09,-1.047464840607978404e-08,-1.112931393145977054e-08,-1.178397945683975704e-08,-1.243864498221974354e-08,-1.309331050759973004e-08,-1.374797603297971655e-08,-1.440264155835970305e-08,-1.505730708373969121e-08,-1.571197260911967936e-08,-1.636663813449966752e-08,-1.702130365987965568e-08,-1.767596918525964383e-08,-1.833063471063963199e-08,-1.898530023601962015e-08,-1.963996576139960830e-08,-2.029463128677959646e-08,-2.094929681215958462e-08,-2.160396233753957277e-08,-2.225862786291956093e-08,-2.291329338829954909e-08,-2.356795891367953724e-08,-2.422262443905952540e-08,-2.487728996443951355e-08,-2.553195548981950171e-08,-2.618662101519948987e-08,-2.684128654057947802e-08,-2.749595206595946618e-08,-2.815061759133945434e-08,-2.880528311671944249e-08,-2.945994864209943065e-08,-3.011461416747942212e-08,-3.076927969285941358e-08,-3.142394521823940505e-08,-3.207861074361939651e-08,-3.273327626899938798e-08,-3.338794179437937944e-08,-3.404260731975937091e-08,-3.469727284513936237e-08,-3.535193837051935384e-08,-3.600660389589934530e-08,-3.666126942127933677e-08,-3.731593494665932823e-08,-3.797060047203931970e-08,-3.862526599741931117e-08,-3.927993152279930263e-08,-3.993459704817929410e-08,-4.058926257355928556e-08,-4.124392809893927703e-08 +0.000000000000000000e+00,-6.691078179617976949e-10,-1.338215635923595390e-09,-2.007323453885392981e-09,-2.676431271847190366e-09,-3.345539089808987751e-09,-4.014646907770785136e-09,-4.683754725732582520e-09,-5.352862543694379905e-09,-6.021970361656177290e-09,-6.691078179617974675e-09,-7.360185997579772059e-09,-8.029293815541568617e-09,-8.698401633503364347e-09,-9.367509451465160078e-09,-1.003661726942695581e-08,-1.070572508738875154e-08,-1.137483290535054727e-08,-1.204394072331234300e-08,-1.271304854127413873e-08,-1.338215635923593446e-08,-1.405126417719773019e-08,-1.472037199515952592e-08,-1.538947981312132165e-08,-1.605858763108311738e-08,-1.672769544904491311e-08,-1.739680326700670884e-08,-1.806591108496850457e-08,-1.873501890293030030e-08,-1.940412672089209603e-08,-2.007323453885389176e-08,-2.074234235681568749e-08,-2.141145017477748322e-08,-2.208055799273927895e-08,-2.274966581070107469e-08,-2.341877362866287042e-08,-2.408788144662466615e-08,-2.475698926458646188e-08,-2.542609708254825761e-08,-2.609520490051005334e-08,-2.676431271847184907e-08,-2.743342053643364480e-08,-2.810252835439544053e-08,-2.877163617235723626e-08,-2.944074399031903199e-08,-3.010985180828083103e-08,-3.077895962624263007e-08,-3.144806744420442911e-08,-3.211717526216622815e-08,-3.278628308012802718e-08,-3.345539089808982622e-08,-3.412449871605162526e-08,-3.479360653401342430e-08,-3.546271435197522334e-08,-3.613182216993702238e-08,-3.680092998789882142e-08,-3.747003780586062046e-08,-3.813914562382241950e-08,-3.880825344178421854e-08,-3.947736125974601758e-08,-4.014646907770781661e-08,-4.081557689566961565e-08,-4.148468471363141469e-08,-4.215379253159321373e-08 +0.000000000000000000e+00,6.739951688327091272e-10,1.347990337665418254e-09,2.021985506498127588e-09,2.695980675330836923e-09,3.369975844163546257e-09,4.043971012996255177e-09,4.717966181828964097e-09,5.391961350661673018e-09,6.065956519494381938e-09,6.739951688327090859e-09,7.413946857159799779e-09,8.087942025992508700e-09,8.761937194825216793e-09,9.435932363657924886e-09,1.010992753249063298e-08,1.078392270132334107e-08,1.145791787015604917e-08,1.213191303898875726e-08,1.280590820782146535e-08,1.347990337665417345e-08,1.415389854548688154e-08,1.482789371431958963e-08,1.550188888315229773e-08,1.617588405198500747e-08,1.684987922081771722e-08,1.752387438965042697e-08,1.819786955848313672e-08,1.887186472731584646e-08,1.954585989614855621e-08,2.021985506498126596e-08,2.089385023381397571e-08,2.156784540264668545e-08,2.224184057147939520e-08,2.291583574031210495e-08,2.358983090914481470e-08,2.426382607797752444e-08,2.493782124681023419e-08,2.561181641564294394e-08,2.628581158447565369e-08,2.695980675330836343e-08,2.763380192214107318e-08,2.830779709097378293e-08,2.898179225980649268e-08,2.965578742863920243e-08,3.032978259747191217e-08,3.100377776630462192e-08,3.167777293513733167e-08,3.235176810397004142e-08,3.302576327280275116e-08,3.369975844163546091e-08,3.437375361046817066e-08,3.504774877930088041e-08,3.572174394813359015e-08,3.639573911696629990e-08,3.706973428579900965e-08,3.774372945463171940e-08,3.841772462346442914e-08,3.909171979229713889e-08,3.976571496112984864e-08,4.043971012996255839e-08,4.111370529879526813e-08,4.178770046762797788e-08,4.246169563646068763e-08 +0.000000000000000000e+00,6.663730891775263120e-10,1.332746178355052624e-09,1.999119267532578833e-09,2.665492356710104834e-09,3.331865445887630836e-09,3.998238535065156838e-09,4.664611624242682840e-09,5.330984713420208842e-09,5.997357802597734844e-09,6.663730891775260845e-09,7.330103980952786847e-09,7.996477070130312022e-09,8.662850159307837197e-09,9.329223248485362371e-09,9.995596337662887546e-09,1.066196942684041272e-08,1.132834251601793790e-08,1.199471560519546307e-08,1.266108869437298824e-08,1.332746178355051342e-08,1.399383487272803859e-08,1.466020796190556377e-08,1.532658105108308894e-08,1.599295414026061412e-08,1.665932722943813929e-08,1.732570031861566447e-08,1.799207340779318964e-08,1.865844649697071482e-08,1.932481958614823999e-08,1.999119267532576517e-08,2.065756576450329034e-08,2.132393885368081551e-08,2.199031194285834069e-08,2.265668503203586586e-08,2.332305812121339104e-08,2.398943121039091621e-08,2.465580429956844139e-08,2.532217738874596656e-08,2.598855047792349174e-08,2.665492356710101691e-08,2.732129665627854209e-08,2.798766974545606726e-08,2.865404283463359244e-08,2.932041592381111761e-08,2.998678901298864609e-08,3.065316210216617127e-08,3.131953519134369644e-08,3.198590828052122162e-08,3.265228136969874679e-08,3.331865445887627197e-08,3.398502754805379714e-08,3.465140063723132232e-08,3.531777372640884749e-08,3.598414681558637267e-08,3.665051990476389784e-08,3.731689299394142302e-08,3.798326608311894819e-08,3.864963917229647336e-08,3.931601226147399854e-08,3.998238535065152371e-08,4.064875843982904889e-08,4.131513152900657406e-08,4.198150461818409924e-08 +0.000000000000000000e+00,6.741180790669573014e-10,1.348236158133914603e-09,2.022354237200871697e-09,2.696472316267828792e-09,3.370590395334785887e-09,4.044708474401743395e-09,4.718826553468700903e-09,5.392944632535658411e-09,6.067062711602615919e-09,6.741180790669573427e-09,7.415298869736530936e-09,8.089416948803488444e-09,8.763535027870446779e-09,9.437653106937405114e-09,1.011177118600436345e-08,1.078588926507132179e-08,1.146000734413828012e-08,1.213412542320523846e-08,1.280824350227219679e-08,1.348236158133915513e-08,1.415647966040611346e-08,1.483059773947307180e-08,1.550471581854003013e-08,1.617883389760698681e-08,1.685295197667394349e-08,1.752707005574090018e-08,1.820118813480785686e-08,1.887530621387481354e-08,1.954942429294177022e-08,2.022354237200872690e-08,2.089766045107568358e-08,2.157177853014264026e-08,2.224589660920959694e-08,2.292001468827655362e-08,2.359413276734351030e-08,2.426825084641046699e-08,2.494236892547742367e-08,2.561648700454438035e-08,2.629060508361133703e-08,2.696472316267829371e-08,2.763884124174525039e-08,2.831295932081220707e-08,2.898707739987916375e-08,2.966119547894612043e-08,3.033531355801307381e-08,3.100943163708002718e-08,3.168354971614698055e-08,3.235766779521393392e-08,3.303178587428088729e-08,3.370590395334784067e-08,3.438002203241479404e-08,3.505414011148174741e-08,3.572825819054870078e-08,3.640237626961565416e-08,3.707649434868260753e-08,3.775061242774956090e-08,3.842473050681651427e-08,3.909884858588346765e-08,3.977296666495042102e-08,4.044708474401737439e-08,4.112120282308432776e-08,4.179532090215128113e-08,4.246943898121823451e-08 +0.000000000000000000e+00,-6.739951687592273647e-10,-1.347990337518454729e-09,-2.021985506277682301e-09,-2.695980675036909872e-09,-3.369975843796137444e-09,-4.043971012555364602e-09,-4.717966181314591760e-09,-5.391961350073818918e-09,-6.065956518833046075e-09,-6.739951687592273233e-09,-7.413946856351500391e-09,-8.087942025110727549e-09,-8.761937193869955534e-09,-9.435932362629183519e-09,-1.010992753138841150e-08,-1.078392270014763949e-08,-1.145791786890686747e-08,-1.213191303766609546e-08,-1.280590820642532344e-08,-1.347990337518455143e-08,-1.415389854394377941e-08,-1.482789371270300740e-08,-1.550188888146223539e-08,-1.617588405022146502e-08,-1.684987921898069466e-08,-1.752387438773992430e-08,-1.819786955649915394e-08,-1.887186472525838358e-08,-1.954585989401761322e-08,-2.021985506277684286e-08,-2.089385023153607250e-08,-2.156784540029530214e-08,-2.224184056905453178e-08,-2.291583573781376142e-08,-2.358983090657299106e-08,-2.426382607533222070e-08,-2.493782124409145034e-08,-2.561181641285067998e-08,-2.628581158160990962e-08,-2.695980675036913926e-08,-2.763380191912836889e-08,-2.830779708788759853e-08,-2.898179225664682817e-08,-2.965578742540605781e-08,-3.032978259416528745e-08,-3.100377776292451709e-08,-3.167777293168374673e-08,-3.235176810044297637e-08,-3.302576326920220601e-08,-3.369975843796143565e-08,-3.437375360672066529e-08,-3.504774877547989493e-08,-3.572174394423912457e-08,-3.639573911299835421e-08,-3.706973428175758385e-08,-3.774372945051681349e-08,-3.841772461927604313e-08,-3.909171978803527277e-08,-3.976571495679450240e-08,-4.043971012555373204e-08,-4.111370529431296168e-08,-4.178770046307219132e-08,-4.246169563183142096e-08 +0.000000000000000000e+00,-6.663730891050164867e-10,-1.332746178210032973e-09,-1.999119267315049357e-09,-2.665492356420065533e-09,-3.331865445525081710e-09,-3.998238534630097886e-09,-4.664611623735114063e-09,-5.330984712840130239e-09,-5.997357801945146416e-09,-6.663730891050162592e-09,-7.330103980155178769e-09,-7.996477069260194118e-09,-8.662850158365208640e-09,-9.329223247470223162e-09,-9.995596336575237685e-09,-1.066196942568025221e-08,-1.132834251478526673e-08,-1.199471560389028125e-08,-1.266108869299529577e-08,-1.332746178210031030e-08,-1.399383487120532482e-08,-1.466020796031033934e-08,-1.532658104941535386e-08,-1.599295413852036838e-08,-1.665932722762538291e-08,-1.732570031673039743e-08,-1.799207340583541195e-08,-1.865844649494042647e-08,-1.932481958404544099e-08,-1.999119267315045552e-08,-2.065756576225547004e-08,-2.132393885136048456e-08,-2.199031194046549908e-08,-2.265668502957051361e-08,-2.332305811867552813e-08,-2.398943120778054265e-08,-2.465580429688555717e-08,-2.532217738599057169e-08,-2.598855047509558622e-08,-2.665492356420060074e-08,-2.732129665330561526e-08,-2.798766974241062978e-08,-2.865404283151564430e-08,-2.932041592062065883e-08,-2.998678900972567666e-08,-3.065316209883069449e-08,-3.131953518793571232e-08,-3.198590827704073015e-08,-3.265228136614574798e-08,-3.331865445525076581e-08,-3.398502754435578364e-08,-3.465140063346080147e-08,-3.531777372256581930e-08,-3.598414681167083714e-08,-3.665051990077585497e-08,-3.731689298988087280e-08,-3.798326607898589063e-08,-3.864963916809090846e-08,-3.931601225719592629e-08,-3.998238534630094412e-08,-4.064875843540596195e-08,-4.131513152451097978e-08,-4.198150461361599761e-08 +0.000000000000000000e+00,-6.741180789798516674e-10,-1.348236157959703335e-09,-2.022354236939555002e-09,-2.696472315919406669e-09,-3.370590394899258337e-09,-4.044708473879110004e-09,-4.718826552858962085e-09,-5.392944631838814166e-09,-6.067062710818666247e-09,-6.741180789798518328e-09,-7.415298868778370409e-09,-8.089416947758221663e-09,-8.763535026738072916e-09,-9.437653105717924170e-09,-1.011177118469777542e-08,-1.078588926367762668e-08,-1.146000734265747793e-08,-1.213412542163732919e-08,-1.280824350061718044e-08,-1.348236157959703169e-08,-1.415647965857688295e-08,-1.483059773755673420e-08,-1.550471581653658545e-08,-1.617883389551643671e-08,-1.685295197449628796e-08,-1.752707005347613922e-08,-1.820118813245599047e-08,-1.887530621143584172e-08,-1.954942429041569298e-08,-2.022354236939554423e-08,-2.089766044837539548e-08,-2.157177852735524674e-08,-2.224589660633509799e-08,-2.292001468531494925e-08,-2.359413276429480050e-08,-2.426825084327465175e-08,-2.494236892225450301e-08,-2.561648700123435426e-08,-2.629060508021420551e-08,-2.696472315919405677e-08,-2.763884123817390802e-08,-2.831295931715375928e-08,-2.898707739613361053e-08,-2.966119547511346178e-08,-3.033531355409330973e-08,-3.100943163307315767e-08,-3.168354971205300562e-08,-3.235766779103285356e-08,-3.303178587001270151e-08,-3.370590394899254945e-08,-3.438002202797239740e-08,-3.505414010695224534e-08,-3.572825818593209329e-08,-3.640237626491194123e-08,-3.707649434389178918e-08,-3.775061242287163712e-08,-3.842473050185148507e-08,-3.909884858083133301e-08,-3.977296665981118096e-08,-4.044708473879102890e-08,-4.112120281777087685e-08,-4.179532089675072479e-08,-4.246943897573057274e-08 +0.000000000000000000e+00,6.885485941181818459e-10,1.377097188236363692e-09,2.065645782354545641e-09,2.754194376472727797e-09,3.442742970590909953e-09,4.131291564709092109e-09,4.819840158827274266e-09,5.508388752945456422e-09,6.196937347063638578e-09,6.885485941181820734e-09,7.574034535300003717e-09,8.262583129418185873e-09,8.951131723536368029e-09,9.639680317654550185e-09,1.032822891177273234e-08,1.101677750589091450e-08,1.170532610000909665e-08,1.239387469412727881e-08,1.308242328824546097e-08,1.377097188236364312e-08,1.445952047648182528e-08,1.514806907060000743e-08,1.583661766471818959e-08,1.652516625883637175e-08,1.721371485295455390e-08,1.790226344707273606e-08,1.859081204119091821e-08,1.927936063530910037e-08,1.996790922942728253e-08,2.065645782354546468e-08,2.134500641766364684e-08,2.203355501178182900e-08,2.272210360590001115e-08,2.341065220001819331e-08,2.409920079413637546e-08,2.478774938825455762e-08,2.547629798237273978e-08,2.616484657649092193e-08,2.685339517060910409e-08,2.754194376472728624e-08,2.823049235884546840e-08,2.891904095296365056e-08,2.960758954708183271e-08,3.029613814120001487e-08,3.098468673531819702e-08,3.167323532943637918e-08,3.236178392355456134e-08,3.305033251767274349e-08,3.373888111179092565e-08,3.442742970590910780e-08,3.511597830002728996e-08,3.580452689414547212e-08,3.649307548826365427e-08,3.718162408238183643e-08,3.787017267650001859e-08,3.855872127061820074e-08,3.924726986473638290e-08,3.993581845885456505e-08,4.062436705297274721e-08,4.131291564709092937e-08,4.200146424120911152e-08,4.269001283532729368e-08,4.337856142944547583e-08 +0.000000000000000000e+00,6.808977684036220559e-10,1.361795536807244112e-09,2.042693305210865961e-09,2.723591073614487810e-09,3.404488842018109659e-09,4.085386610421731922e-09,4.766284378825354185e-09,5.447182147228976448e-09,6.128079915632598710e-09,6.808977684036220973e-09,7.489875452439842409e-09,8.170773220843463844e-09,8.851670989247085280e-09,9.532568757650706715e-09,1.021346652605432815e-08,1.089436429445794959e-08,1.157526206286157102e-08,1.225615983126519246e-08,1.293705759966881389e-08,1.361795536807243533e-08,1.429885313647605676e-08,1.497975090487967820e-08,1.566064867328329964e-08,1.634154644168692107e-08,1.702244421009054251e-08,1.770334197849416394e-08,1.838423974689778538e-08,1.906513751530140681e-08,1.974603528370502825e-08,2.042693305210864968e-08,2.110783082051227112e-08,2.178872858891589256e-08,2.246962635731951399e-08,2.315052412572313543e-08,2.383142189412675686e-08,2.451231966253037830e-08,2.519321743093399973e-08,2.587411519933762117e-08,2.655501296774124260e-08,2.723591073614486404e-08,2.791680850454848548e-08,2.859770627295210691e-08,2.927860404135572835e-08,2.995950180975934978e-08,3.064039957816297122e-08,3.132129734656659265e-08,3.200219511497021409e-08,3.268309288337383552e-08,3.336399065177745696e-08,3.404488842018107840e-08,3.472578618858469983e-08,3.540668395698832127e-08,3.608758172539194270e-08,3.676847949379556414e-08,3.744937726219918557e-08,3.813027503060280701e-08,3.881117279900642844e-08,3.949207056741004988e-08,4.017296833581367132e-08,4.085386610421729275e-08,4.153476387262091419e-08,4.221566164102453562e-08,4.289655940942815706e-08 +0.000000000000000000e+00,6.840406469663277675e-10,1.368081293932655535e-09,2.052121940898983302e-09,2.736162587865311070e-09,3.420203234831638837e-09,4.104243881797966605e-09,4.788284528764294372e-09,5.472325175730622140e-09,6.156365822696949907e-09,6.840406469663277675e-09,7.524447116629606269e-09,8.208487763595934864e-09,8.892528410562263458e-09,9.576569057528592053e-09,1.026060970449492065e-08,1.094465035146124924e-08,1.162869099842757784e-08,1.231273164539390643e-08,1.299677229236023503e-08,1.368081293932656362e-08,1.436485358629289222e-08,1.504889423325921916e-08,1.573293488022554610e-08,1.641697552719187304e-08,1.710101617415819998e-08,1.778505682112452692e-08,1.846909746809085386e-08,1.915313811505718080e-08,1.983717876202350774e-08,2.052121940898983468e-08,2.120526005595616162e-08,2.188930070292248856e-08,2.257334134988881550e-08,2.325738199685514244e-08,2.394142264382146938e-08,2.462546329078779632e-08,2.530950393775412326e-08,2.599354458472045020e-08,2.667758523168677714e-08,2.736162587865310408e-08,2.804566652561943102e-08,2.872970717258575796e-08,2.941374781955208490e-08,3.009778846651841184e-08,3.078182911348473878e-08,3.146586976045106572e-08,3.214991040741739266e-08,3.283395105438371960e-08,3.351799170135004654e-08,3.420203234831637348e-08,3.488607299528270042e-08,3.557011364224902736e-08,3.625415428921535430e-08,3.693819493618168124e-08,3.762223558314800818e-08,3.830627623011433512e-08,3.899031687708066207e-08,3.967435752404698901e-08,4.035839817101331595e-08,4.104243881797964289e-08,4.172647946494596983e-08,4.241052011191229677e-08,4.309456075887862371e-08 +0.000000000000000000e+00,-6.885485940467862329e-10,-1.377097188093572466e-09,-2.065645782140358802e-09,-2.754194376187145345e-09,-3.442742970233931888e-09,-4.131291564280718431e-09,-4.819840158327504974e-09,-5.508388752374291517e-09,-6.196937346421078060e-09,-6.885485940467864603e-09,-7.574034534514651974e-09,-8.262583128561438517e-09,-8.951131722608225060e-09,-9.639680316655011603e-09,-1.032822891070179815e-08,-1.101677750474858469e-08,-1.170532609879537123e-08,-1.239387469284215778e-08,-1.308242328688894432e-08,-1.377097188093573086e-08,-1.445952047498251740e-08,-1.514806906902930395e-08,-1.583661766307609049e-08,-1.652516625712287703e-08,-1.721371485116966358e-08,-1.790226344521645012e-08,-1.859081203926323666e-08,-1.927936063331002321e-08,-1.996790922735680975e-08,-2.065645782140359629e-08,-2.134500641545038284e-08,-2.203355500949716938e-08,-2.272210360354395592e-08,-2.341065219759074246e-08,-2.409920079163752901e-08,-2.478774938568431555e-08,-2.547629797973110209e-08,-2.616484657377788864e-08,-2.685339516782467518e-08,-2.754194376187146172e-08,-2.823049235591824827e-08,-2.891904094996503481e-08,-2.960758954401182135e-08,-3.029613813805860789e-08,-3.098468673210539444e-08,-3.167323532615218098e-08,-3.236178392019896752e-08,-3.305033251424575407e-08,-3.373888110829254061e-08,-3.442742970233932715e-08,-3.511597829638611370e-08,-3.580452689043290024e-08,-3.649307548447968678e-08,-3.718162407852647333e-08,-3.787017267257325987e-08,-3.855872126662004641e-08,-3.924726986066683295e-08,-3.993581845471361950e-08,-4.062436704876040604e-08,-4.131291564280719258e-08,-4.200146423685397913e-08,-4.269001283090076567e-08,-4.337856142494755221e-08 +0.000000000000000000e+00,-6.808977683305255528e-10,-1.361795536661051106e-09,-2.042693304991576658e-09,-2.723591073322102211e-09,-3.404488841652627764e-09,-4.085386609983153317e-09,-4.766284378313679283e-09,-5.447182146644205249e-09,-6.128079914974731216e-09,-6.808977683305257182e-09,-7.489875451635783149e-09,-8.170773219966308288e-09,-8.851670988296833427e-09,-9.532568756627358566e-09,-1.021346652495788371e-08,-1.089436429328840884e-08,-1.157526206161893398e-08,-1.225615982994945912e-08,-1.293705759827998426e-08,-1.361795536661050940e-08,-1.429885313494103454e-08,-1.497975090327155968e-08,-1.566064867160208482e-08,-1.634154643993260996e-08,-1.702244420826313510e-08,-1.770334197659366024e-08,-1.838423974492418538e-08,-1.906513751325471051e-08,-1.974603528158523565e-08,-2.042693304991576079e-08,-2.110783081824628593e-08,-2.178872858657681107e-08,-2.246962635490733621e-08,-2.315052412323786135e-08,-2.383142189156838649e-08,-2.451231965989891163e-08,-2.519321742822943677e-08,-2.587411519655996191e-08,-2.655501296489048705e-08,-2.723591073322101218e-08,-2.791680850155153732e-08,-2.859770626988206246e-08,-2.927860403821258760e-08,-2.995950180654311274e-08,-3.064039957487363788e-08,-3.132129734320416302e-08,-3.200219511153468816e-08,-3.268309287986521330e-08,-3.336399064819573844e-08,-3.404488841652626358e-08,-3.472578618485678872e-08,-3.540668395318731386e-08,-3.608758172151783899e-08,-3.676847948984836413e-08,-3.744937725817888927e-08,-3.813027502650941441e-08,-3.881117279483993955e-08,-3.949207056317046469e-08,-4.017296833150098983e-08,-4.085386609983151497e-08,-4.153476386816204011e-08,-4.221566163649256525e-08,-4.289655940482309039e-08 +0.000000000000000000e+00,-6.840406468773063831e-10,-1.368081293754612766e-09,-2.052121940631918943e-09,-2.736162587509225119e-09,-3.420203234386531295e-09,-4.104243881263837885e-09,-4.788284528141144475e-09,-5.472325175018451065e-09,-6.156365821895757655e-09,-6.840406468773064245e-09,-7.524447115650370008e-09,-8.208487762527675770e-09,-8.892528409404981533e-09,-9.576569056282287296e-09,-1.026060970315959306e-08,-1.094465035003689882e-08,-1.162869099691420458e-08,-1.231273164379151035e-08,-1.299677229066881611e-08,-1.368081293754612187e-08,-1.436485358442342764e-08,-1.504889423130073340e-08,-1.573293487817803916e-08,-1.641697552505534492e-08,-1.710101617193265069e-08,-1.778505681880995645e-08,-1.846909746568726221e-08,-1.915313811256456797e-08,-1.983717875944187374e-08,-2.052121940631917950e-08,-2.120526005319648526e-08,-2.188930070007379103e-08,-2.257334134695109679e-08,-2.325738199382840255e-08,-2.394142264070570831e-08,-2.462546328758301408e-08,-2.530950393446031984e-08,-2.599354458133762560e-08,-2.667758522821493136e-08,-2.736162587509223713e-08,-2.804566652196954289e-08,-2.872970716884684865e-08,-2.941374781572415442e-08,-3.009778846260146018e-08,-3.078182910947876263e-08,-3.146586975635606509e-08,-3.214991040323336754e-08,-3.283395105011066999e-08,-3.351799169698797245e-08,-3.420203234386527490e-08,-3.488607299074257736e-08,-3.557011363761987981e-08,-3.625415428449718226e-08,-3.693819493137448472e-08,-3.762223557825178717e-08,-3.830627622512908963e-08,-3.899031687200639208e-08,-3.967435751888369453e-08,-4.035839816576099699e-08,-4.104243881263829944e-08,-4.172647945951560190e-08,-4.241052010639290435e-08,-4.309456075327020680e-08 +0.000000000000000000e+00,6.988243849459573582e-10,1.397648769891914716e-09,2.096473154837872178e-09,2.795297539783829846e-09,3.494121924729787515e-09,4.192946309675745183e-09,4.891770694621702852e-09,5.590595079567660520e-09,6.289419464513618188e-09,6.988243849459575857e-09,7.687068234405533525e-09,8.385892619351492021e-09,9.084717004297450516e-09,9.783541389243409012e-09,1.048236577418936751e-08,1.118119015913532600e-08,1.188001454408128450e-08,1.257883892902724299e-08,1.327766331397320149e-08,1.397648769891915999e-08,1.467531208386511848e-08,1.537413646881107698e-08,1.607296085375703382e-08,1.677178523870299066e-08,1.747060962364894750e-08,1.816943400859490434e-08,1.886825839354086118e-08,1.956708277848681802e-08,2.026590716343277487e-08,2.096473154837873171e-08,2.166355593332468855e-08,2.236238031827064539e-08,2.306120470321660223e-08,2.376002908816255907e-08,2.445885347310851591e-08,2.515767785805447275e-08,2.585650224300042960e-08,2.655532662794638644e-08,2.725415101289234328e-08,2.795297539783830012e-08,2.865179978278425696e-08,2.935062416773021380e-08,3.004944855267617064e-08,3.074827293762212748e-08,3.144709732256808432e-08,3.214592170751404117e-08,3.284474609245999801e-08,3.354357047740595485e-08,3.424239486235191169e-08,3.494121924729786853e-08,3.564004363224382537e-08,3.633886801718978221e-08,3.703769240213573905e-08,3.773651678708169590e-08,3.843534117202765274e-08,3.913416555697360958e-08,3.983298994191956642e-08,4.053181432686552326e-08,4.123063871181148010e-08,4.192946309675743694e-08,4.262828748170339378e-08,4.332711186664935063e-08,4.402593625159530747e-08 +0.000000000000000000e+00,6.943742022834307852e-10,1.388748404566861570e-09,2.083122606850292252e-09,2.777496809133722727e-09,3.471871011417153202e-09,4.166245213700583677e-09,4.860619415984013739e-09,5.554993618267443800e-09,6.249367820550873861e-09,6.943742022834303923e-09,7.638116225117733984e-09,8.332490427401164046e-09,9.026864629684594107e-09,9.721238831968024168e-09,1.041561303425145423e-08,1.110998723653488429e-08,1.180436143881831435e-08,1.249873564110174441e-08,1.319310984338517448e-08,1.388748404566860454e-08,1.458185824795203460e-08,1.527623245023546466e-08,1.597060665251889638e-08,1.666498085480232809e-08,1.735935505708575981e-08,1.805372925936919152e-08,1.874810346165262324e-08,1.944247766393605495e-08,2.013685186621948667e-08,2.083122606850291839e-08,2.152560027078635010e-08,2.221997447306978182e-08,2.291434867535321353e-08,2.360872287763664525e-08,2.430309707992007696e-08,2.499747128220350868e-08,2.569184548448694040e-08,2.638621968677037211e-08,2.708059388905380383e-08,2.777496809133723554e-08,2.846934229362066726e-08,2.916371649590409897e-08,2.985809069818753069e-08,3.055246490047096241e-08,3.124683910275439412e-08,3.194121330503782584e-08,3.263558750732125755e-08,3.332996170960468927e-08,3.402433591188812099e-08,3.471871011417155270e-08,3.541308431645498442e-08,3.610745851873841613e-08,3.680183272102184785e-08,3.749620692330527956e-08,3.819058112558871128e-08,3.888495532787214300e-08,3.957932953015557471e-08,4.027370373243900643e-08,4.096807793472243814e-08,4.166245213700586986e-08,4.235682633928930157e-08,4.305120054157273329e-08,4.374557474385616501e-08 +0.000000000000000000e+00,6.941155684780174432e-10,1.388231136956034886e-09,2.082346705434052330e-09,2.776462273912069773e-09,3.470577842390087216e-09,4.164693410868104659e-09,4.858808979346121689e-09,5.552924547824138718e-09,6.247040116302155748e-09,6.941155684780172777e-09,7.635271253258189807e-09,8.329386821736207664e-09,9.023502390214225521e-09,9.717617958692243377e-09,1.041173352717026123e-08,1.110584909564827909e-08,1.179996466412629695e-08,1.249408023260431480e-08,1.318819580108233266e-08,1.388231136956035052e-08,1.457642693803836837e-08,1.527054250651638623e-08,1.596465807499440574e-08,1.665877364347242525e-08,1.735288921195044476e-08,1.804700478042846428e-08,1.874112034890648379e-08,1.943523591738450330e-08,2.012935148586252281e-08,2.082346705434054232e-08,2.151758262281856183e-08,2.221169819129658134e-08,2.290581375977460085e-08,2.359992932825262037e-08,2.429404489673063988e-08,2.498816046520865939e-08,2.568227603368667890e-08,2.637639160216469841e-08,2.707050717064271792e-08,2.776462273912073743e-08,2.845873830759875694e-08,2.915285387607677645e-08,2.984696944455479597e-08,3.054108501303281879e-08,3.123520058151084161e-08,3.192931614998886442e-08,3.262343171846688724e-08,3.331754728694491006e-08,3.401166285542293288e-08,3.470577842390095570e-08,3.539989399237897852e-08,3.609400956085700134e-08,3.678812512933502416e-08,3.748224069781304698e-08,3.817635626629106980e-08,3.887047183476909262e-08,3.956458740324711544e-08,4.025870297172513826e-08,4.095281854020316108e-08,4.164693410868118390e-08,4.234104967715920672e-08,4.303516524563722954e-08,4.372928081411525236e-08 +0.000000000000000000e+00,-6.988243848821832839e-10,-1.397648769764366568e-09,-2.096473154646549852e-09,-2.795297539528733136e-09,-3.494121924410916420e-09,-4.192946309293099704e-09,-4.891770694175283401e-09,-5.590595079057467099e-09,-6.289419463939650796e-09,-6.988243848821834494e-09,-7.687068233704018191e-09,-8.385892618586201062e-09,-9.084717003468383932e-09,-9.783541388350566802e-09,-1.048236577323274967e-08,-1.118119015811493254e-08,-1.188001454299711541e-08,-1.257883892787929828e-08,-1.327766331276148115e-08,-1.397648769764366402e-08,-1.467531208252584689e-08,-1.537413646740802977e-08,-1.607296085229021098e-08,-1.677178523717239220e-08,-1.747060962205457341e-08,-1.816943400693675463e-08,-1.886825839181893585e-08,-1.956708277670111706e-08,-2.026590716158329828e-08,-2.096473154646547949e-08,-2.166355593134766071e-08,-2.236238031622984193e-08,-2.306120470111202314e-08,-2.376002908599420436e-08,-2.445885347087638557e-08,-2.515767785575856679e-08,-2.585650224064074801e-08,-2.655532662552292922e-08,-2.725415101040511044e-08,-2.795297539528729165e-08,-2.865179978016947287e-08,-2.935062416505165409e-08,-3.004944854993383530e-08,-3.074827293481601321e-08,-3.144709731969819112e-08,-3.214592170458036902e-08,-3.284474608946254693e-08,-3.354357047434472484e-08,-3.424239485922690274e-08,-3.494121924410908065e-08,-3.564004362899125856e-08,-3.633886801387343647e-08,-3.703769239875561437e-08,-3.773651678363779228e-08,-3.843534116851997019e-08,-3.913416555340214810e-08,-3.983298993828432600e-08,-4.053181432316650391e-08,-4.123063870804868182e-08,-4.192946309293085972e-08,-4.262828747781303763e-08,-4.332711186269521554e-08,-4.402593624757739345e-08 +0.000000000000000000e+00,-6.943742022151347213e-10,-1.388748404430269443e-09,-2.083122606645404164e-09,-2.777496808860538885e-09,-3.471871011075673607e-09,-4.166245213290808328e-09,-4.860619415505943049e-09,-5.554993617721077770e-09,-6.249367819936212492e-09,-6.943742022151347213e-09,-7.638116224366481934e-09,-8.332490426581616656e-09,-9.026864628796751377e-09,-9.721238831011886098e-09,-1.041561303322702082e-08,-1.110998723544215554e-08,-1.180436143765729026e-08,-1.249873563987242498e-08,-1.319310984208755970e-08,-1.388748404430269443e-08,-1.458185824651782915e-08,-1.527623244873296387e-08,-1.597060665094810024e-08,-1.666498085316323662e-08,-1.735935505537837300e-08,-1.805372925759350937e-08,-1.874810345980864575e-08,-1.944247766202378212e-08,-2.013685186423891850e-08,-2.083122606645405487e-08,-2.152560026866919125e-08,-2.221997447088432763e-08,-2.291434867309946400e-08,-2.360872287531460038e-08,-2.430309707752973675e-08,-2.499747127974487313e-08,-2.569184548196000950e-08,-2.638621968417514588e-08,-2.708059388639028226e-08,-2.777496808860541863e-08,-2.846934229082055501e-08,-2.916371649303569138e-08,-2.985809069525082776e-08,-3.055246489746596082e-08,-3.124683909968109389e-08,-3.194121330189622696e-08,-3.263558750411136003e-08,-3.332996170632649309e-08,-3.402433590854162616e-08,-3.471871011075675923e-08,-3.541308431297189229e-08,-3.610745851518702536e-08,-3.680183271740215843e-08,-3.749620691961729149e-08,-3.819058112183242456e-08,-3.888495532404755763e-08,-3.957932952626269070e-08,-4.027370372847782376e-08,-4.096807793069295683e-08,-4.166245213290808990e-08,-4.235682633512322296e-08,-4.305120053733835603e-08,-4.374557473955348910e-08 +0.000000000000000000e+00,-6.941155683922637325e-10,-1.388231136784527465e-09,-2.082346705176791301e-09,-2.776462273569055343e-09,-3.470577841961319386e-09,-4.164693410353583429e-09,-4.858808978745847472e-09,-5.552924547138111514e-09,-6.247040115530375557e-09,-6.941155683922639600e-09,-7.635271252314904469e-09,-8.329386820707168512e-09,-9.023502389099432555e-09,-9.717617957491696597e-09,-1.041173352588396064e-08,-1.110584909427622468e-08,-1.179996466266848873e-08,-1.249408023106075277e-08,-1.318819579945301681e-08,-1.388231136784528085e-08,-1.457642693623754490e-08,-1.527054250462980894e-08,-1.596465807302207298e-08,-1.665877364141433702e-08,-1.735288920980660107e-08,-1.804700477819886511e-08,-1.874112034659112915e-08,-1.943523591498339319e-08,-2.012935148337565724e-08,-2.082346705176792128e-08,-2.151758262016018532e-08,-2.221169818855244937e-08,-2.290581375694471341e-08,-2.359992932533697745e-08,-2.429404489372924149e-08,-2.498816046212150554e-08,-2.568227603051376958e-08,-2.637639159890603362e-08,-2.707050716729829766e-08,-2.776462273569056171e-08,-2.845873830408282575e-08,-2.915285387247508979e-08,-2.984696944086735714e-08,-3.054108500925962449e-08,-3.123520057765189185e-08,-3.192931614604415920e-08,-3.262343171443642655e-08,-3.331754728282869390e-08,-3.401166285122096125e-08,-3.470577841961322860e-08,-3.539989398800549595e-08,-3.609400955639776331e-08,-3.678812512479003066e-08,-3.748224069318229801e-08,-3.817635626157456536e-08,-3.887047182996683271e-08,-3.956458739835910006e-08,-4.025870296675136741e-08,-4.095281853514363477e-08,-4.164693410353590212e-08,-4.234104967192816947e-08,-4.303516524032043682e-08,-4.372928080871270417e-08 +0.000000000000000000e+00,6.958839665826691323e-10,1.391767933165338265e-09,2.087651899748007397e-09,2.783535866330676529e-09,3.479419832913345661e-09,4.175303799496014794e-09,4.871187766078684339e-09,5.567071732661353885e-09,6.262955699244023431e-09,6.958839665826692977e-09,7.654723632409362523e-09,8.350607598992031242e-09,9.046491565574699960e-09,9.742375532157368679e-09,1.043825949874003740e-08,1.113414346532270612e-08,1.183002743190537483e-08,1.252591139848804355e-08,1.322179536507071227e-08,1.391767933165338099e-08,1.461356329823604971e-08,1.530944726481871843e-08,1.600533123140138715e-08,1.670121519798405587e-08,1.739709916456672458e-08,1.809298313114939330e-08,1.878886709773206202e-08,1.948475106431473074e-08,2.018063503089739946e-08,2.087651899748006818e-08,2.157240296406273690e-08,2.226828693064540561e-08,2.296417089722807433e-08,2.366005486381074305e-08,2.435593883039341177e-08,2.505182279697608049e-08,2.574770676355874921e-08,2.644359073014141793e-08,2.713947469672408665e-08,2.783535866330675536e-08,2.853124262988942408e-08,2.922712659647209280e-08,2.992301056305476152e-08,3.061889452963743024e-08,3.131477849622009896e-08,3.201066246280276768e-08,3.270654642938543640e-08,3.340243039596810511e-08,3.409831436255077383e-08,3.479419832913344255e-08,3.549008229571611127e-08,3.618596626229877999e-08,3.688185022888144871e-08,3.757773419546411743e-08,3.827361816204678614e-08,3.896950212862945486e-08,3.966538609521212358e-08,4.036127006179479230e-08,4.105715402837746102e-08,4.175303799496012974e-08,4.244892196154279846e-08,4.314480592812546718e-08,4.384068989470813589e-08 +0.000000000000000000e+00,6.939534008519856039e-10,1.387906801703971208e-09,2.081860202555956812e-09,2.775813603407942416e-09,3.469767004259928019e-09,4.163720405111913623e-09,4.857673805963899227e-09,5.551627206815884831e-09,6.245580607667870435e-09,6.939534008519856039e-09,7.633487409371841643e-09,8.327440810223827247e-09,9.021394211075812850e-09,9.715347611927798454e-09,1.040930101277978406e-08,1.110325441363176966e-08,1.179720781448375527e-08,1.249116121533574087e-08,1.318511461618772647e-08,1.387906801703971208e-08,1.457302141789169768e-08,1.526697481874368329e-08,1.596092821959567054e-08,1.665488162044765780e-08,1.734883502129964506e-08,1.804278842215163232e-08,1.873674182300361958e-08,1.943069522385560683e-08,2.012464862470759409e-08,2.081860202555958135e-08,2.151255542641156861e-08,2.220650882726355587e-08,2.290046222811554313e-08,2.359441562896753038e-08,2.428836902981951764e-08,2.498232243067150490e-08,2.567627583152349216e-08,2.637022923237547942e-08,2.706418263322746668e-08,2.775813603407945393e-08,2.845208943493144119e-08,2.914604283578342845e-08,2.983999623663541571e-08,3.053394963748739966e-08,3.122790303833938361e-08,3.192185643919136756e-08,3.261580984004335151e-08,3.330976324089533546e-08,3.400371664174731941e-08,3.469767004259930336e-08,3.539162344345128730e-08,3.608557684430327125e-08,3.677953024515525520e-08,3.747348364600723915e-08,3.816743704685922310e-08,3.886139044771120705e-08,3.955534384856319100e-08,4.024929724941517495e-08,4.094325065026715890e-08,4.163720405111914285e-08,4.233115745197112680e-08,4.302511085282311075e-08,4.371906425367509470e-08 +0.000000000000000000e+00,3.866518947329458183e-20,7.733037894658916367e-20,1.159955684198837395e-19,1.546607578931783033e-19,1.933259473664728670e-19,2.319911368397674308e-19,2.706563263130619946e-19,3.093215157863565584e-19,3.479867052596511221e-19,3.866518947329456859e-19,4.253170842062402497e-19,4.639822736795347653e-19,5.026474631528292810e-19,5.413126526261237966e-19,5.799778420994183122e-19,6.186430315727128278e-19,6.573082210460073435e-19,6.959734105193018591e-19,7.346385999925963747e-19,7.733037894658908904e-19,8.119689789391854060e-19,8.506341684124799216e-19,8.892993578857744372e-19,9.279645473590689529e-19,9.666297368323634685e-19,1.005294926305657984e-18,1.043960115778952500e-18,1.082625305252247015e-18,1.121290494725541531e-18,1.159955684198836047e-18,1.198620873672130562e-18,1.237286063145425078e-18,1.275951252618719594e-18,1.314616442092014109e-18,1.353281631565308625e-18,1.391946821038603140e-18,1.430612010511897656e-18,1.469277199985192172e-18,1.507942389458486687e-18,1.546607578931781203e-18,1.585272768405075719e-18,1.623937957878370234e-18,1.662603147351664750e-18,1.701268336824959265e-18,1.739933526298253781e-18,1.778598715771548104e-18,1.817263905244842427e-18,1.855929094718136750e-18,1.894594284191431073e-18,1.933259473664725396e-18,1.971924663138019719e-18,2.010589852611314042e-18,2.049255042084608365e-18,2.087920231557902688e-18,2.126585421031197011e-18,2.165250610504491334e-18,2.203915799977785657e-18,2.242580989451079981e-18,2.281246178924374304e-18,2.319911368397668627e-18,2.358576557870962950e-18,2.397241747344257273e-18,2.435906936817551596e-18 +0.000000000000000000e+00,-6.958839665245829587e-10,-1.391767933049165917e-09,-2.087651899573748979e-09,-2.783535866098332248e-09,-3.479419832622915517e-09,-4.175303799147498786e-09,-4.871187765672082055e-09,-5.567071732196665324e-09,-6.262955698721248593e-09,-6.958839665245831862e-09,-7.654723631770415130e-09,-8.350607598294999227e-09,-9.046491564819583323e-09,-9.742375531344167419e-09,-1.043825949786875151e-08,-1.113414346439333561e-08,-1.183002743091791971e-08,-1.252591139744250380e-08,-1.322179536396708790e-08,-1.391767933049167200e-08,-1.461356329701625609e-08,-1.530944726354084019e-08,-1.600533123006542428e-08,-1.670121519659000838e-08,-1.739709916311459248e-08,-1.809298312963917657e-08,-1.878886709616376067e-08,-1.948475106268834476e-08,-2.018063502921292886e-08,-2.087651899573751296e-08,-2.157240296226209705e-08,-2.226828692878668115e-08,-2.296417089531126524e-08,-2.366005486183584934e-08,-2.435593882836043344e-08,-2.505182279488501753e-08,-2.574770676140960163e-08,-2.644359072793418572e-08,-2.713947469445876982e-08,-2.783535866098335392e-08,-2.853124262750793801e-08,-2.922712659403252211e-08,-2.992301056055710620e-08,-3.061889452708168699e-08,-3.131477849360626778e-08,-3.201066246013084857e-08,-3.270654642665542935e-08,-3.340243039318001014e-08,-3.409831435970459093e-08,-3.479419832622917172e-08,-3.549008229275375250e-08,-3.618596625927833329e-08,-3.688185022580291408e-08,-3.757773419232749487e-08,-3.827361815885207565e-08,-3.896950212537665644e-08,-3.966538609190123723e-08,-4.036127005842581801e-08,-4.105715402495039880e-08,-4.175303799147497959e-08,-4.244892195799956038e-08,-4.314480592452414116e-08,-4.384068989104872195e-08 +0.000000000000000000e+00,-6.939534007746286036e-10,-1.387906801549257207e-09,-2.081860202323885914e-09,-2.775813603098514828e-09,-3.469767003873143742e-09,-4.163720404647772655e-09,-4.857673805422401983e-09,-5.551627206197031310e-09,-6.245580606971660637e-09,-6.939534007746289965e-09,-7.633487408520919292e-09,-8.327440809295548620e-09,-9.021394210070177947e-09,-9.715347610844807274e-09,-1.040930101161943660e-08,-1.110325441239406593e-08,-1.179720781316869526e-08,-1.249116121394332458e-08,-1.318511461471795391e-08,-1.387906801549258324e-08,-1.457302141626721257e-08,-1.526697481704184189e-08,-1.596092821781647122e-08,-1.665488161859110055e-08,-1.734883501936572988e-08,-1.804278842014035920e-08,-1.873674182091498853e-08,-1.943069522168961786e-08,-2.012464862246424718e-08,-2.081860202323887651e-08,-2.151255542401350584e-08,-2.220650882478813517e-08,-2.290046222556276449e-08,-2.359441562633739382e-08,-2.428836902711202315e-08,-2.498232242788665248e-08,-2.567627582866128180e-08,-2.637022922943591113e-08,-2.706418263021054046e-08,-2.775813603098516979e-08,-2.845208943175979911e-08,-2.914604283253442844e-08,-2.983999623330905777e-08,-3.053394963408369040e-08,-3.122790303485832304e-08,-3.192185643563295568e-08,-3.261580983640758831e-08,-3.330976323718222095e-08,-3.400371663795685358e-08,-3.469767003873148622e-08,-3.539162343950611886e-08,-3.608557684028075149e-08,-3.677953024105538413e-08,-3.747348364183001676e-08,-3.816743704260464940e-08,-3.886139044337928204e-08,-3.955534384415391467e-08,-4.024929724492854731e-08,-4.094325064570317994e-08,-4.163720404647781258e-08,-4.233115744725244522e-08,-4.302511084802707785e-08,-4.371906424880171049e-08 +0.000000000000000000e+00,4.501794149559737463e-10,9.003588299119474926e-10,1.350538244867921291e-09,1.800717659823895192e-09,2.250897074779869094e-09,2.701076489735842995e-09,3.151255904691816896e-09,3.601435319647790798e-09,4.051614734603764286e-09,4.501794149559737360e-09,4.951973564515710434e-09,5.402152979471683508e-09,5.852332394427656583e-09,6.302511809383629657e-09,6.752691224339602731e-09,7.202870639295575805e-09,7.653050054251548880e-09,8.103229469207521954e-09,8.553408884163495028e-09,9.003588299119468102e-09,9.453767714075441176e-09,9.903947129031414251e-09,1.035412654398738732e-08,1.080430595894336040e-08,1.125448537389933347e-08,1.170466478885530655e-08,1.215484420381127962e-08,1.260502361876725270e-08,1.305520303372322577e-08,1.350538244867919884e-08,1.395556186363517192e-08,1.440574127859114499e-08,1.485592069354711807e-08,1.530610010850309114e-08,1.575627952345906422e-08,1.620645893841503729e-08,1.665663835337101036e-08,1.710681776832698344e-08,1.755699718328295651e-08,1.800717659823892959e-08,1.845735601319490266e-08,1.890753542815087574e-08,1.935771484310684881e-08,1.980789425806282188e-08,2.025807367301879496e-08,2.070825308797476803e-08,2.115843250293074111e-08,2.160861191788671418e-08,2.205879133284268726e-08,2.250897074779866033e-08,2.295915016275463340e-08,2.340932957771060648e-08,2.385950899266657955e-08,2.430968840762255263e-08,2.475986782257852570e-08,2.521004723753449877e-08,2.566022665249047185e-08,2.611040606744644492e-08,2.656058548240241800e-08,2.701076489735839107e-08,2.746094431231436415e-08,2.791112372727033722e-08,2.836130314222631029e-08 +0.000000000000000000e+00,1.202842618963908350e-10,2.405685237927816701e-10,3.608527856891725051e-10,4.811370475855633401e-10,6.014213094819541751e-10,7.217055713783450102e-10,8.419898332747358452e-10,9.622740951711266802e-10,1.082558357067517515e-09,1.202842618963908350e-09,1.323126880860299185e-09,1.443411142756690020e-09,1.563695404653080855e-09,1.683979666549471690e-09,1.804263928445862525e-09,1.924548190342253360e-09,2.044832452238644195e-09,2.165116714135035031e-09,2.285400976031425866e-09,2.405685237927816701e-09,2.525969499824207536e-09,2.646253761720598371e-09,2.766538023616989206e-09,2.886822285513380041e-09,3.007106547409770876e-09,3.127390809306161711e-09,3.247675071202552546e-09,3.367959333098943381e-09,3.488243594995334216e-09,3.608527856891725051e-09,3.728812118788115886e-09,3.849096380684506721e-09,3.969380642580897556e-09,4.089664904477288391e-09,4.209949166373679226e-09,4.330233428270070061e-09,4.450517690166460896e-09,4.570801952062851731e-09,4.691086213959242566e-09,4.811370475855633401e-09,4.931654737752024236e-09,5.051938999648415071e-09,5.172223261544805906e-09,5.292507523441196741e-09,5.412791785337587576e-09,5.533076047233978411e-09,5.653360309130369246e-09,5.773644571026760081e-09,5.893928832923150916e-09,6.014213094819541751e-09,6.134497356715932586e-09,6.254781618612323421e-09,6.375065880508714256e-09,6.495350142405105092e-09,6.615634404301495927e-09,6.735918666197886762e-09,6.856202928094277597e-09,6.976487189990668432e-09,7.096771451887059267e-09,7.217055713783450102e-09,7.337339975679840937e-09,7.457624237576231772e-09,7.577908499472621780e-09 +0.000000000000000000e+00,-1.470439069014496520e-20,-2.940878138028993039e-20,-4.411317207043489559e-20,-5.881756276057986078e-20,-7.352195345072483200e-20,-8.822634414086980321e-20,-1.029307348310147744e-19,-1.176351255211597456e-19,-1.323395162113047169e-19,-1.470439069014496881e-19,-1.617482975915946593e-19,-1.764526882817396305e-19,-1.911570789718846017e-19,-2.058614696620295729e-19,-2.205658603521745682e-19,-2.352702510423195394e-19,-2.499746417324645106e-19,-2.646790324226094818e-19,-2.793834231127544531e-19,-2.940878138028994243e-19,-3.087922044930443955e-19,-3.234965951831893667e-19,-3.382009858733343379e-19,-3.529053765634793091e-19,-3.676097672536242803e-19,-3.823141579437692516e-19,-3.970185486339142228e-19,-4.117229393240591940e-19,-4.264273300142041652e-19,-4.411317207043491364e-19,-4.558361113944941076e-19,-4.705405020846390788e-19,-4.852448927747840501e-19,-4.999492834649290213e-19,-5.146536741550739925e-19,-5.293580648452189637e-19,-5.440624555353639349e-19,-5.587668462255089061e-19,-5.734712369156538773e-19,-5.881756276057988486e-19,-6.028800182959438198e-19,-6.175844089860887910e-19,-6.322887996762337622e-19,-6.469931903663787334e-19,-6.616975810565237046e-19,-6.764019717466686758e-19,-6.911063624368136471e-19,-7.058107531269586183e-19,-7.205151438171035895e-19,-7.352195345072485607e-19,-7.499239251973935319e-19,-7.646283158875385031e-19,-7.793327065776834743e-19,-7.940370972678284455e-19,-8.087414879579734168e-19,-8.234458786481183880e-19,-8.381502693382633592e-19,-8.528546600284083304e-19,-8.675590507185533979e-19,-8.822634414086984654e-19,-8.969678320988435329e-19,-9.116722227889886004e-19,-9.263766134791336680e-19 +0.000000000000000000e+00,3.238361819751155341e-10,6.476723639502310683e-10,9.715085459253466024e-10,1.295344727900462137e-09,1.619180909875577671e-09,1.943017091850693205e-09,2.266853273825808532e-09,2.590689455800923860e-09,2.914525637776039187e-09,3.238361819751154514e-09,3.562198001726269842e-09,3.886034183701385583e-09,4.209870365676501323e-09,4.533706547651617064e-09,4.857542729626732805e-09,5.181378911601848546e-09,5.505215093576964287e-09,5.829051275552080028e-09,6.152887457527195769e-09,6.476723639502311510e-09,6.800559821477427251e-09,7.124396003452542992e-09,7.448232185427658733e-09,7.772068367402774474e-09,8.095904549377891042e-09,8.419740731353007610e-09,8.743576913328124178e-09,9.067413095303240746e-09,9.391249277278357314e-09,9.715085459253473882e-09,1.003892164122859045e-08,1.036275782320370702e-08,1.068659400517882359e-08,1.101043018715394015e-08,1.133426636912905672e-08,1.165810255110417329e-08,1.198193873307928986e-08,1.230577491505440643e-08,1.262961109702952300e-08,1.295344727900463956e-08,1.327728346097975613e-08,1.360111964295487270e-08,1.392495582492998927e-08,1.424879200690510584e-08,1.457262818888022240e-08,1.489646437085533897e-08,1.522030055283045554e-08,1.554413673480557211e-08,1.586797291678068868e-08,1.619180909875580524e-08,1.651564528073092181e-08,1.683948146270603838e-08,1.716331764468115495e-08,1.748715382665627152e-08,1.781099000863138809e-08,1.813482619060650465e-08,1.845866237258162122e-08,1.878249855455673779e-08,1.910633473653185436e-08,1.943017091850697093e-08,1.975400710048208749e-08,2.007784328245720406e-08,2.040167946443232063e-08 +0.000000000000000000e+00,3.782796849518860093e-10,7.565593699037720187e-10,1.134839054855658028e-09,1.513118739807544037e-09,1.891398424759430047e-09,2.269678109711316056e-09,2.647957794663202065e-09,3.026237479615088075e-09,3.404517164566974084e-09,3.782796849518860093e-09,4.161076534470746516e-09,4.539356219422632939e-09,4.917635904374519362e-09,5.295915589326405785e-09,5.674195274278292208e-09,6.052474959230178631e-09,6.430754644182065054e-09,6.809034329133951477e-09,7.187314014085837900e-09,7.565593699037725150e-09,7.943873383989612400e-09,8.322153068941499650e-09,8.700432753893386900e-09,9.078712438845274150e-09,9.456992123797161400e-09,9.835271808749048650e-09,1.021355149370093590e-08,1.059183117865282315e-08,1.097011086360471040e-08,1.134839054855659765e-08,1.172667023350848490e-08,1.210494991846037215e-08,1.248322960341225940e-08,1.286150928836414665e-08,1.323978897331603390e-08,1.361806865826792115e-08,1.399634834321980840e-08,1.437462802817169565e-08,1.475290771312358290e-08,1.513118739807547015e-08,1.550946708302735740e-08,1.588774676797924465e-08,1.626602645293113190e-08,1.664430613788301915e-08,1.702258582283490640e-08,1.740086550778679365e-08,1.777914519273868090e-08,1.815742487769056815e-08,1.853570456264245540e-08,1.891398424759434265e-08,1.929226393254622990e-08,1.967054361749811715e-08,2.004882330245000440e-08,2.042710298740189165e-08,2.080538267235377890e-08,2.118366235730566615e-08,2.156194204225755340e-08,2.194022172720944065e-08,2.231850141216132790e-08,2.269678109711321515e-08,2.307506078206510240e-08,2.345334046701698965e-08,2.383162015196887690e-08 +0.000000000000000000e+00,5.570385773707305848e-10,1.114077154741461170e-09,1.671115732112191755e-09,2.228154309482922339e-09,2.785192886853652924e-09,3.342231464224383509e-09,3.899270041595113680e-09,4.456308618965843852e-09,5.013347196336574023e-09,5.570385773707304194e-09,6.127424351078034365e-09,6.684462928448764537e-09,7.241501505819494708e-09,7.798540083190224052e-09,8.355578660560953396e-09,8.912617237931682740e-09,9.469655815302412084e-09,1.002669439267314143e-08,1.058373297004387077e-08,1.114077154741460012e-08,1.169781012478532946e-08,1.225484870215605880e-08,1.281188727952678815e-08,1.336892585689751749e-08,1.392596443426824684e-08,1.448300301163897618e-08,1.504004158900970552e-08,1.559708016638043487e-08,1.615411874375116421e-08,1.671115732112189356e-08,1.726819589849262290e-08,1.782523447586335225e-08,1.838227305323408159e-08,1.893931163060481093e-08,1.949635020797554028e-08,2.005338878534626962e-08,2.061042736271699897e-08,2.116746594008772831e-08,2.172450451745845765e-08,2.228154309482918700e-08,2.283858167219991634e-08,2.339562024957064569e-08,2.395265882694137503e-08,2.450969740431210437e-08,2.506673598168283372e-08,2.562377455905356306e-08,2.618081313642429241e-08,2.673785171379502175e-08,2.729489029116575109e-08,2.785192886853648044e-08,2.840896744590720978e-08,2.896600602327793913e-08,2.952304460064866847e-08,3.008008317801939781e-08,3.063712175539012385e-08,3.119416033276084989e-08,3.175119891013157592e-08,3.230823748750230196e-08,3.286527606487302799e-08,3.342231464224375403e-08,3.397935321961448006e-08,3.453639179698520610e-08,3.509343037435593213e-08 +0.000000000000000000e+00,5.920032859968196404e-11,1.184006571993639281e-10,1.776009857990459050e-10,2.368013143987279079e-10,2.960016429984099107e-10,3.552019715980919135e-10,4.144023001977739163e-10,4.736026287974559191e-10,5.328029573971378702e-10,5.920032859968198213e-10,6.512036145965017725e-10,7.104039431961837236e-10,7.696042717958656747e-10,8.288046003955476258e-10,8.880049289952295769e-10,9.472052575949116314e-10,1.006405586194593686e-09,1.065605914794275740e-09,1.124806243393957795e-09,1.184006571993639849e-09,1.243206900593321904e-09,1.302407229193003958e-09,1.361607557792686013e-09,1.420807886392368068e-09,1.480008214992050122e-09,1.539208543591732177e-09,1.598408872191414231e-09,1.657609200791096286e-09,1.716809529390778340e-09,1.776009857990460395e-09,1.835210186590142449e-09,1.894410515189824504e-09,1.953610843789506558e-09,2.012811172389188613e-09,2.072011500988870667e-09,2.131211829588552722e-09,2.190412158188234776e-09,2.249612486787916831e-09,2.308812815387598885e-09,2.368013143987280940e-09,2.427213472586962994e-09,2.486413801186645049e-09,2.545614129786327103e-09,2.604814458386009158e-09,2.664014786985691212e-09,2.723215115585373267e-09,2.782415444185055321e-09,2.841615772784737376e-09,2.900816101384419430e-09,2.960016429984101485e-09,3.019216758583783539e-09,3.078417087183465594e-09,3.137617415783147648e-09,3.196817744382829703e-09,3.256018072982511757e-09,3.315218401582193812e-09,3.374418730181875866e-09,3.433619058781557921e-09,3.492819387381239975e-09,3.552019715980922030e-09,3.611220044580604084e-09,3.670420373180286139e-09,3.729620701779967780e-09 +0.000000000000000000e+00,-1.252966760326750041e-20,-2.505933520653500082e-20,-3.758900280980250273e-20,-5.011867041307000765e-20,-6.264833801633750655e-20,-7.517800561960500546e-20,-8.770767322287250436e-20,-1.002373408261400033e-19,-1.127670084294075022e-19,-1.252966760326750131e-19,-1.378263436359425240e-19,-1.503560112392100350e-19,-1.628856788424775459e-19,-1.754153464457450569e-19,-1.879450140490125678e-19,-2.004746816522800788e-19,-2.130043492555475897e-19,-2.255340168588151006e-19,-2.380636844620826116e-19,-2.505933520653501225e-19,-2.631230196686176335e-19,-2.756526872718851444e-19,-2.881823548751526553e-19,-3.007120224784201663e-19,-3.132416900816876772e-19,-3.257713576849551882e-19,-3.383010252882226991e-19,-3.508306928914902100e-19,-3.633603604947577210e-19,-3.758900280980252319e-19,-3.884196957012927429e-19,-4.009493633045602538e-19,-4.134790309078277647e-19,-4.260086985110952757e-19,-4.385383661143627866e-19,-4.510680337176302976e-19,-4.635977013208978085e-19,-4.761273689241653194e-19,-4.886570365274328304e-19,-5.011867041307003413e-19,-5.137163717339678523e-19,-5.262460393372353632e-19,-5.387757069405028741e-19,-5.513053745437703851e-19,-5.638350421470378960e-19,-5.763647097503054070e-19,-5.888943773535729179e-19,-6.014240449568404288e-19,-6.139537125601079398e-19,-6.264833801633754507e-19,-6.390130477666429617e-19,-6.515427153699104726e-19,-6.640723829731779835e-19,-6.766020505764454945e-19,-6.891317181797130054e-19,-7.016613857829805164e-19,-7.141910533862480273e-19,-7.267207209895155382e-19,-7.392503885927830492e-19,-7.517800561960505601e-19,-7.643097237993180711e-19,-7.768393914025855820e-19,-7.893690590058530930e-19 +0.000000000000000000e+00,-4.501794149582595565e-10,-9.003588299165191131e-10,-1.350538244874778618e-09,-1.800717659833038019e-09,-2.250897074791297421e-09,-2.701076489749556822e-09,-3.151255904707816224e-09,-3.601435319666075625e-09,-4.051614734624334613e-09,-4.501794149582594015e-09,-4.951973564540853416e-09,-5.402152979499112817e-09,-5.852332394457372219e-09,-6.302511809415631620e-09,-6.752691224373891022e-09,-7.202870639332150423e-09,-7.653050054290409825e-09,-8.103229469248669226e-09,-8.553408884206928628e-09,-9.003588299165188029e-09,-9.453767714123447430e-09,-9.903947129081706832e-09,-1.035412654403996623e-08,-1.080430595899822563e-08,-1.125448537395648504e-08,-1.170466478891474444e-08,-1.215484420387300384e-08,-1.260502361883126324e-08,-1.305520303378952264e-08,-1.350538244874778204e-08,-1.395556186370604145e-08,-1.440574127866430085e-08,-1.485592069362256025e-08,-1.530610010858081965e-08,-1.575627952353907905e-08,-1.620645893849733845e-08,-1.665663835345559785e-08,-1.710681776841385726e-08,-1.755699718337211666e-08,-1.800717659833037606e-08,-1.845735601328863546e-08,-1.890753542824689486e-08,-1.935771484320515426e-08,-1.980789425816341366e-08,-2.025807367312167307e-08,-2.070825308807993247e-08,-2.115843250303819187e-08,-2.160861191799645127e-08,-2.205879133295471067e-08,-2.250897074791297007e-08,-2.295915016287122947e-08,-2.340932957782948888e-08,-2.385950899278774828e-08,-2.430968840774600768e-08,-2.475986782270426708e-08,-2.521004723766252648e-08,-2.566022665262078588e-08,-2.611040606757904528e-08,-2.656058548253730469e-08,-2.701076489749556409e-08,-2.746094431245382349e-08,-2.791112372741208289e-08,-2.836130314237034229e-08 +0.000000000000000000e+00,-1.202842619258168547e-10,-2.405685238516337095e-10,-3.608527857774505642e-10,-4.811370477032674190e-10,-6.014213096290842737e-10,-7.217055715549011284e-10,-8.419898334807179832e-10,-9.622740954065348379e-10,-1.082558357332351796e-09,-1.202842619258168754e-09,-1.323126881183985712e-09,-1.443411143109802670e-09,-1.563695405035619629e-09,-1.683979666961436587e-09,-1.804263928887253545e-09,-1.924548190813070503e-09,-2.044832452738887461e-09,-2.165116714664704419e-09,-2.285400976590521377e-09,-2.405685238516338336e-09,-2.525969500442155294e-09,-2.646253762367972252e-09,-2.766538024293789210e-09,-2.886822286219606168e-09,-3.007106548145423126e-09,-3.127390810071240084e-09,-3.247675071997057043e-09,-3.367959333922874001e-09,-3.488243595848690959e-09,-3.608527857774507917e-09,-3.728812119700324875e-09,-3.849096381626141833e-09,-3.969380643551958791e-09,-4.089664905477775750e-09,-4.209949167403592708e-09,-4.330233429329409666e-09,-4.450517691255226624e-09,-4.570801953181043582e-09,-4.691086215106860540e-09,-4.811370477032677498e-09,-4.931654738958494457e-09,-5.051939000884311415e-09,-5.172223262810128373e-09,-5.292507524735945331e-09,-5.412791786661762289e-09,-5.533076048587579247e-09,-5.653360310513396205e-09,-5.773644572439213163e-09,-5.893928834365030122e-09,-6.014213096290847080e-09,-6.134497358216664038e-09,-6.254781620142480996e-09,-6.375065882068297954e-09,-6.495350143994114912e-09,-6.615634405919931870e-09,-6.735918667845748829e-09,-6.856202929771565787e-09,-6.976487191697382745e-09,-7.096771453623199703e-09,-7.217055715549016661e-09,-7.337339977474833619e-09,-7.457624239400649750e-09,-7.577908501326465881e-09 +0.000000000000000000e+00,-5.920032862909489103e-11,-1.184006572581897821e-10,-1.776009858872846731e-10,-2.368013145163795641e-10,-2.960016431454744552e-10,-3.552019717745693462e-10,-4.144023004036642372e-10,-4.736026290327591283e-10,-5.328029576618540710e-10,-5.920032862909490137e-10,-6.512036149200439565e-10,-7.104039435491388992e-10,-7.696042721782338419e-10,-8.288046008073287847e-10,-8.880049294364237274e-10,-9.472052580655186701e-10,-1.006405586694613613e-09,-1.065605915323708556e-09,-1.124806243952803498e-09,-1.184006572581898441e-09,-1.243206901210993384e-09,-1.302407229840088327e-09,-1.361607558469183269e-09,-1.420807887098278212e-09,-1.480008215727373155e-09,-1.539208544356468097e-09,-1.598408872985563040e-09,-1.657609201614657983e-09,-1.716809530243752926e-09,-1.776009858872847868e-09,-1.835210187501942811e-09,-1.894410516131037754e-09,-1.953610844760132697e-09,-2.012811173389227639e-09,-2.072011502018322582e-09,-2.131211830647417525e-09,-2.190412159276512468e-09,-2.249612487905607410e-09,-2.308812816534702353e-09,-2.368013145163797296e-09,-2.427213473792892238e-09,-2.486413802421987181e-09,-2.545614131051082124e-09,-2.604814459680177067e-09,-2.664014788309272009e-09,-2.723215116938366952e-09,-2.782415445567461895e-09,-2.841615774196556838e-09,-2.900816102825651780e-09,-2.960016431454746723e-09,-3.019216760083841666e-09,-3.078417088712936609e-09,-3.137617417342031551e-09,-3.196817745971126494e-09,-3.256018074600221437e-09,-3.315218403229316379e-09,-3.374418731858411322e-09,-3.433619060487506265e-09,-3.492819389116601208e-09,-3.552019717745696150e-09,-3.611220046374791093e-09,-3.670420375003886036e-09,-3.729620703632981392e-09 +0.000000000000000000e+00,-3.238361819902675184e-10,-6.476723639805350368e-10,-9.715085459708024518e-10,-1.295344727961069867e-09,-1.619180909951337282e-09,-1.943017091941604904e-09,-2.266853273931872525e-09,-2.590689455922140147e-09,-2.914525637912407769e-09,-3.238361819902675391e-09,-3.562198001892943013e-09,-3.886034183883210635e-09,-4.209870365873478670e-09,-4.533706547863746705e-09,-4.857542729854014741e-09,-5.181378911844282776e-09,-5.505215093834550812e-09,-5.829051275824818847e-09,-6.152887457815086882e-09,-6.476723639805354918e-09,-6.800559821795622953e-09,-7.124396003785890988e-09,-7.448232185776159024e-09,-7.772068367766426232e-09,-8.095904549756693440e-09,-8.419740731746960649e-09,-8.743576913737227857e-09,-9.067413095727495065e-09,-9.391249277717762273e-09,-9.715085459708029481e-09,-1.003892164169829669e-08,-1.036275782368856390e-08,-1.068659400567883111e-08,-1.101043018766909831e-08,-1.133426636965936552e-08,-1.165810255164963273e-08,-1.198193873363989994e-08,-1.230577491563016715e-08,-1.262961109762043436e-08,-1.295344727961070156e-08,-1.327728346160096877e-08,-1.360111964359123598e-08,-1.392495582558150319e-08,-1.424879200757177040e-08,-1.457262818956203760e-08,-1.489646437155230481e-08,-1.522030055354257202e-08,-1.554413673553283923e-08,-1.586797291752310644e-08,-1.619180909951337365e-08,-1.651564528150364085e-08,-1.683948146349390806e-08,-1.716331764548417527e-08,-1.748715382747444248e-08,-1.781099000946470969e-08,-1.813482619145497690e-08,-1.845866237344524410e-08,-1.878249855543551131e-08,-1.910633473742577852e-08,-1.943017091941604573e-08,-1.975400710140631294e-08,-2.007784328339658014e-08,-2.040167946538684735e-08 +0.000000000000000000e+00,-3.782796849769551137e-10,-7.565593699539102273e-10,-1.134839054930865289e-09,-1.513118739907820248e-09,-1.891398424884775206e-09,-2.269678109861730165e-09,-2.647957794838685124e-09,-3.026237479815640082e-09,-3.404517164792595041e-09,-3.782796849769549586e-09,-4.161076534746503717e-09,-4.539356219723457848e-09,-4.917635904700411980e-09,-5.295915589677366111e-09,-5.674195274654320243e-09,-6.052474959631274374e-09,-6.430754644608228505e-09,-6.809034329585182637e-09,-7.187314014562136768e-09,-7.565593699539090900e-09,-7.943873384516045031e-09,-8.322153069492999162e-09,-8.700432754469953294e-09,-9.078712439446907425e-09,-9.456992124423861557e-09,-9.835271809400815688e-09,-1.021355149437776982e-08,-1.059183117935472395e-08,-1.097011086433167808e-08,-1.134839054930863221e-08,-1.172667023428558634e-08,-1.210494991926254048e-08,-1.248322960423949461e-08,-1.286150928921644874e-08,-1.323978897419340287e-08,-1.361806865917035700e-08,-1.399634834414731113e-08,-1.437462802912426526e-08,-1.475290771410121940e-08,-1.513118739907817187e-08,-1.550946708405512600e-08,-1.588774676903208014e-08,-1.626602645400903427e-08,-1.664430613898598840e-08,-1.702258582396294253e-08,-1.740086550893989666e-08,-1.777914519391685079e-08,-1.815742487889380492e-08,-1.853570456387075906e-08,-1.891398424884771319e-08,-1.929226393382466732e-08,-1.967054361880162145e-08,-2.004882330377857558e-08,-2.042710298875552971e-08,-2.080538267373248384e-08,-2.118366235870943798e-08,-2.156194204368639211e-08,-2.194022172866334624e-08,-2.231850141364030037e-08,-2.269678109861725450e-08,-2.307506078359420863e-08,-2.345334046857116276e-08,-2.383162015354811689e-08 +0.000000000000000000e+00,-5.570385773648495375e-10,-1.114077154729699075e-09,-1.671115732094548612e-09,-2.228154309459398150e-09,-2.785192886824247894e-09,-3.342231464189097638e-09,-3.899270041553947383e-09,-4.456308618918797127e-09,-5.013347196283646871e-09,-5.570385773648496616e-09,-6.127424351013346360e-09,-6.684462928378196104e-09,-7.241501505743045848e-09,-7.798540083107896420e-09,-8.355578660472746164e-09,-8.912617237837595908e-09,-9.469655815202445653e-09,-1.002669439256729540e-08,-1.058373296993214514e-08,-1.114077154729699489e-08,-1.169781012466184463e-08,-1.225484870202669437e-08,-1.281188727939154412e-08,-1.336892585675639386e-08,-1.392596443412124361e-08,-1.448300301148609335e-08,-1.504004158885094310e-08,-1.559708016621579284e-08,-1.615411874358064258e-08,-1.671115732094549233e-08,-1.726819589831034207e-08,-1.782523447567519182e-08,-1.838227305304004156e-08,-1.893931163040489131e-08,-1.949635020776974105e-08,-2.005338878513459079e-08,-2.061042736249944054e-08,-2.116746593986429028e-08,-2.172450451722914003e-08,-2.228154309459398977e-08,-2.283858167195883952e-08,-2.339562024932368926e-08,-2.395265882668853900e-08,-2.450969740405338875e-08,-2.506673598141823849e-08,-2.562377455878308824e-08,-2.618081313614793798e-08,-2.673785171351278773e-08,-2.729489029087763747e-08,-2.785192886824248721e-08,-2.840896744560733696e-08,-2.896600602297218670e-08,-2.952304460033703645e-08,-3.008008317770188619e-08,-3.063712175506673594e-08,-3.119416033243158568e-08,-3.175119890979643542e-08,-3.230823748716128517e-08,-3.286527606452613491e-08,-3.342231464189098466e-08,-3.397935321925583440e-08,-3.453639179662068415e-08,-3.509343037398553389e-08 +0.000000000000000000e+00,5.501340208836880717e-10,1.100268041767376143e-09,1.650402062651064318e-09,2.200536083534752700e-09,2.750670104418441082e-09,3.300804125302129464e-09,3.850938146185817432e-09,4.401072167069505400e-09,4.951206187953193369e-09,5.501340208836881337e-09,6.051474229720569305e-09,6.601608250604257273e-09,7.151742271487945242e-09,7.701876292371633210e-09,8.252010313255321178e-09,8.802144334139009146e-09,9.352278355022697115e-09,9.902412375906385083e-09,1.045254639679007305e-08,1.100268041767376102e-08,1.155281443855744899e-08,1.210294845944113696e-08,1.265308248032482492e-08,1.320321650120851289e-08,1.375335052209220086e-08,1.430348454297588883e-08,1.485361856385957680e-08,1.540375258474326311e-08,1.595388660562695108e-08,1.650402062651063905e-08,1.705415464739432702e-08,1.760428866827801498e-08,1.815442268916170295e-08,1.870455671004539092e-08,1.925469073092907889e-08,1.980482475181276686e-08,2.035495877269645483e-08,2.090509279358014279e-08,2.145522681446383076e-08,2.200536083534751873e-08,2.255549485623120670e-08,2.310562887711489467e-08,2.365576289799858264e-08,2.420589691888227060e-08,2.475603093976595857e-08,2.530616496064964654e-08,2.585629898153333451e-08,2.640643300241702248e-08,2.695656702330071044e-08,2.750670104418439841e-08,2.805683506506808638e-08,2.860696908595177435e-08,2.915710310683546232e-08,2.970723712771915029e-08,3.025737114860283825e-08,3.080750516948652622e-08,3.135763919037021419e-08,3.190777321125390216e-08,3.245790723213759013e-08,3.300804125302127810e-08,3.355817527390496606e-08,3.410830929478865403e-08,3.465844331567234200e-08 +0.000000000000000000e+00,4.958396910115051773e-10,9.916793820230103547e-10,1.487519073034515429e-09,1.983358764046020296e-09,2.479198455057525163e-09,2.975038146069030030e-09,3.470877837080534897e-09,3.966717528092039764e-09,4.462557219103544631e-09,4.958396910115049499e-09,5.454236601126554366e-09,5.950076292138059233e-09,6.445915983149564100e-09,6.941755674161068967e-09,7.437595365172573834e-09,7.933435056184077874e-09,8.429274747195582741e-09,8.925114438207087608e-09,9.420954129218592476e-09,9.916793820230097343e-09,1.041263351124160221e-08,1.090847320225310708e-08,1.140431289326461194e-08,1.190015258427611681e-08,1.239599227528762168e-08,1.289183196629912655e-08,1.338767165731063141e-08,1.388351134832213628e-08,1.437935103933364115e-08,1.487519073034514601e-08,1.537103042135665088e-08,1.586687011236815575e-08,1.636270980337966062e-08,1.685854949439116548e-08,1.735438918540267035e-08,1.785022887641417522e-08,1.834606856742568008e-08,1.884190825843718495e-08,1.933774794944868982e-08,1.983358764046019469e-08,2.032942733147169955e-08,2.082526702248320442e-08,2.132110671349470929e-08,2.181694640450621415e-08,2.231278609551771902e-08,2.280862578652922389e-08,2.330446547754072876e-08,2.380030516855223362e-08,2.429614485956373849e-08,2.479198455057524336e-08,2.528782424158674822e-08,2.578366393259825309e-08,2.627950362360975796e-08,2.677534331462126283e-08,2.727118300563276769e-08,2.776702269664427256e-08,2.826286238765577743e-08,2.875870207866728229e-08,2.925454176967878716e-08,2.975038146069029203e-08,3.024622115170180020e-08,3.074206084271330838e-08,3.123790053372481656e-08 +0.000000000000000000e+00,6.039025729938480079e-10,1.207805145987696016e-09,1.811707718981544127e-09,2.415610291975392445e-09,3.019512864969240763e-09,3.623415437963089082e-09,4.227318010956937813e-09,4.831220583950786545e-09,5.435123156944635277e-09,6.039025729938484008e-09,6.642928302932332740e-09,7.246830875926181472e-09,7.850733448920030204e-09,8.454636021913878935e-09,9.058538594907727667e-09,9.662441167901576399e-09,1.026634374089542513e-08,1.087024631388927386e-08,1.147414888688312259e-08,1.207805145987697133e-08,1.268195403287082006e-08,1.328585660586466879e-08,1.388975917885851752e-08,1.449366175185236625e-08,1.509756432484621498e-08,1.570146689784006372e-08,1.630536947083391245e-08,1.690927204382776118e-08,1.751317461682160991e-08,1.811707718981545864e-08,1.872097976280930737e-08,1.932488233580315611e-08,1.992878490879700484e-08,2.053268748179085357e-08,2.113659005478470230e-08,2.174049262777855103e-08,2.234439520077239976e-08,2.294829777376624850e-08,2.355220034676009723e-08,2.415610291975394596e-08,2.476000549274779469e-08,2.536390806574164342e-08,2.596781063873549216e-08,2.657171321172934089e-08,2.717561578472318962e-08,2.777951835771703835e-08,2.838342093071088708e-08,2.898732350370473581e-08,2.959122607669858455e-08,3.019512864969242997e-08,3.079903122268627539e-08,3.140293379568012081e-08,3.200683636867396624e-08,3.261073894166781166e-08,3.321464151466165708e-08,3.381854408765550251e-08,3.442244666064934793e-08,3.502634923364319335e-08,3.563025180663703878e-08,3.623415437963088420e-08,3.683805695262472962e-08,3.744195952561857504e-08,3.804586209861242047e-08 +0.000000000000000000e+00,-5.501340208651121800e-10,-1.100268041730224360e-09,-1.650402062595336540e-09,-2.200536083460448720e-09,-2.750670104325560693e-09,-3.300804125190672667e-09,-3.850938146055784640e-09,-4.401072166920896613e-09,-4.951206187786008586e-09,-5.501340208651120560e-09,-6.051474229516232533e-09,-6.601608250381344506e-09,-7.151742271246456479e-09,-7.701876292111569280e-09,-8.252010312976682080e-09,-8.802144333841794881e-09,-9.352278354706907681e-09,-9.902412375572020481e-09,-1.045254639643713328e-08,-1.100268041730224608e-08,-1.155281443816735888e-08,-1.210294845903247168e-08,-1.265308247989758448e-08,-1.320321650076269728e-08,-1.375335052162781008e-08,-1.430348454249292288e-08,-1.485361856335803569e-08,-1.540375258422314849e-08,-1.595388660508826129e-08,-1.650402062595337409e-08,-1.705415464681848689e-08,-1.760428866768359969e-08,-1.815442268854871249e-08,-1.870455670941382529e-08,-1.925469073027893809e-08,-1.980482475114405089e-08,-2.035495877200916369e-08,-2.090509279287427649e-08,-2.145522681373938929e-08,-2.200536083460450209e-08,-2.255549485546961489e-08,-2.310562887633472769e-08,-2.365576289719984049e-08,-2.420589691806495329e-08,-2.475603093893006609e-08,-2.530616495979517889e-08,-2.585629898066029169e-08,-2.640643300152540449e-08,-2.695656702239051729e-08,-2.750670104325563009e-08,-2.805683506412074290e-08,-2.860696908498585570e-08,-2.915710310585096850e-08,-2.970723712671608130e-08,-3.025737114758119741e-08,-3.080750516844631682e-08,-3.135763918931143624e-08,-3.190777321017655566e-08,-3.245790723104167508e-08,-3.300804125190679450e-08,-3.355817527277191391e-08,-3.410830929363703333e-08,-3.465844331450215275e-08 +0.000000000000000000e+00,-4.958396910025153784e-10,-9.916793820050307569e-10,-1.487519073007546032e-09,-1.983358764010061100e-09,-2.479198455012576168e-09,-2.975038146015091237e-09,-3.470877837017606305e-09,-3.966717528020121373e-09,-4.462557219022636441e-09,-4.958396910025151510e-09,-5.454236601027666578e-09,-5.950076292030181646e-09,-6.445915983032696714e-09,-6.941755674035211783e-09,-7.437595365037726851e-09,-7.933435056040241092e-09,-8.429274747042756160e-09,-8.925114438045271228e-09,-9.420954129047786297e-09,-9.916793820050301365e-09,-1.041263351105281643e-08,-1.090847320205533150e-08,-1.140431289305784657e-08,-1.190015258406036164e-08,-1.239599227506287671e-08,-1.289183196606539177e-08,-1.338767165706790684e-08,-1.388351134807042191e-08,-1.437935103907293698e-08,-1.487519073007545205e-08,-1.537103042107796712e-08,-1.586687011208048218e-08,-1.636270980308299725e-08,-1.685854949408551232e-08,-1.735438918508802739e-08,-1.785022887609054246e-08,-1.834606856709305752e-08,-1.884190825809557259e-08,-1.933774794909808766e-08,-1.983358764010060273e-08,-2.032942733110311780e-08,-2.082526702210563287e-08,-2.132110671310814793e-08,-2.181694640411066300e-08,-2.231278609511317807e-08,-2.280862578611569314e-08,-2.330446547711820821e-08,-2.380030516812072328e-08,-2.429614485912323834e-08,-2.479198455012575341e-08,-2.528782424112826848e-08,-2.578366393213078355e-08,-2.627950362313329862e-08,-2.677534331413581368e-08,-2.727118300513832875e-08,-2.776702269614084382e-08,-2.826286238714335889e-08,-2.875870207814587396e-08,-2.925454176914838903e-08,-2.975038146015090409e-08,-3.024622115115341916e-08,-3.074206084215593423e-08,-3.123790053315844930e-08 +0.000000000000000000e+00,-6.039025729638257978e-10,-1.207805145927651596e-09,-1.811707718891477393e-09,-2.415610291855303191e-09,-3.019512864819128989e-09,-3.623415437782954787e-09,-4.227318010746780998e-09,-4.831220583710607210e-09,-5.435123156674433421e-09,-6.039025729638259632e-09,-6.642928302602085844e-09,-7.246830875565912055e-09,-7.850733448529738267e-09,-8.454636021493565305e-09,-9.058538594457392344e-09,-9.662441167421219382e-09,-1.026634374038504642e-08,-1.087024631334887346e-08,-1.147414888631270050e-08,-1.207805145927652754e-08,-1.268195403224035458e-08,-1.328585660520418161e-08,-1.388975917816800865e-08,-1.449366175113183569e-08,-1.509756432409566438e-08,-1.570146689705949308e-08,-1.630536947002332177e-08,-1.690927204298715046e-08,-1.751317461595097916e-08,-1.811707718891480785e-08,-1.872097976187863654e-08,-1.932488233484246523e-08,-1.992878490780629393e-08,-2.053268748077012262e-08,-2.113659005373395131e-08,-2.174049262669778001e-08,-2.234439519966160870e-08,-2.294829777262543739e-08,-2.355220034558926608e-08,-2.415610291855309478e-08,-2.476000549151692347e-08,-2.536390806448075216e-08,-2.596781063744458086e-08,-2.657171321040840955e-08,-2.717561578337223824e-08,-2.777951835633606694e-08,-2.838342092929989563e-08,-2.898732350226372432e-08,-2.959122607522755301e-08,-3.019512864819138171e-08,-3.079903122115521040e-08,-3.140293379411903909e-08,-3.200683636708286779e-08,-3.261073894004669648e-08,-3.321464151301052517e-08,-3.381854408597435386e-08,-3.442244665893818256e-08,-3.502634923190201125e-08,-3.563025180486583994e-08,-3.623415437782966864e-08,-3.683805695079349733e-08,-3.744195952375732602e-08,-3.804586209672115472e-08 +0.000000000000000000e+00,5.937785806250582783e-10,1.187557161250116557e-09,1.781335741875174835e-09,2.375114322500233113e-09,2.968892903125291598e-09,3.562671483750350083e-09,4.156450064375408569e-09,4.750228645000467054e-09,5.344007225625525539e-09,5.937785806250584024e-09,6.531564386875642509e-09,7.125342967500700994e-09,7.719121548125760306e-09,8.312900128750818792e-09,8.906678709375877277e-09,9.500457290000935762e-09,1.009423587062599425e-08,1.068801445125105273e-08,1.128179303187611122e-08,1.187557161250116970e-08,1.246935019312622819e-08,1.306312877375128667e-08,1.365690735437634516e-08,1.425068593500140364e-08,1.484446451562646213e-08,1.543824309625152061e-08,1.603202167687657910e-08,1.662580025750163758e-08,1.721957883812669607e-08,1.781335741875175455e-08,1.840713599937681304e-08,1.900091458000187152e-08,1.959469316062693001e-08,2.018847174125198849e-08,2.078225032187704698e-08,2.137602890250210546e-08,2.196980748312716395e-08,2.256358606375222243e-08,2.315736464437728092e-08,2.375114322500233940e-08,2.434492180562739789e-08,2.493870038625245637e-08,2.553247896687751486e-08,2.612625754750257334e-08,2.672003612812763183e-08,2.731381470875269031e-08,2.790759328937774880e-08,2.850137187000280729e-08,2.909515045062786577e-08,2.968892903125292426e-08,3.028270761187798274e-08,3.087648619250304123e-08,3.147026477312809971e-08,3.206404335375315820e-08,3.265782193437821668e-08,3.325160051500327517e-08,3.384537909562833365e-08,3.443915767625339214e-08,3.503293625687845062e-08,3.562671483750350911e-08,3.622049341812856759e-08,3.681427199875362608e-08,3.740805057937868456e-08 +0.000000000000000000e+00,5.663812991322952542e-10,1.132762598264590508e-09,1.699143897396885763e-09,2.265525196529181017e-09,2.831906495661476271e-09,3.398287794793771525e-09,3.964669093926067193e-09,4.531050393058362861e-09,5.097431692190658529e-09,5.663812991322954196e-09,6.230194290455249864e-09,6.796575589587545532e-09,7.362956888719841200e-09,7.929338187852137695e-09,8.495719486984434190e-09,9.062100786116730685e-09,9.628482085249027180e-09,1.019486338438132367e-08,1.076124468351362017e-08,1.132762598264591666e-08,1.189400728177821316e-08,1.246038858091050965e-08,1.302676988004280615e-08,1.359315117917510264e-08,1.415953247830739914e-08,1.472591377743969563e-08,1.529229507657199048e-08,1.585867637570428532e-08,1.642505767483658016e-08,1.699143897396887500e-08,1.755782027310116984e-08,1.812420157223346468e-08,1.869058287136575952e-08,1.925696417049805436e-08,1.982334546963034920e-08,2.038972676876264404e-08,2.095610806789493888e-08,2.152248936702723372e-08,2.208887066615952856e-08,2.265525196529182340e-08,2.322163326442411824e-08,2.378801456355641308e-08,2.435439586268870793e-08,2.492077716182100277e-08,2.548715846095329761e-08,2.605353976008559245e-08,2.661992105921788729e-08,2.718630235835018213e-08,2.775268365748247697e-08,2.831906495661477181e-08,2.888544625574706665e-08,2.945182755487936149e-08,3.001820885401165633e-08,3.058459015314395448e-08,3.115097145227625263e-08,3.171735275140855078e-08,3.228373405054084893e-08,3.285011534967314708e-08,3.341649664880544523e-08,3.398287794793774338e-08,3.454925924707004153e-08,3.511564054620233968e-08,3.568202184533463782e-08 +0.000000000000000000e+00,6.287329997937630739e-10,1.257465999587526148e-09,1.886198999381289222e-09,2.514931999175052296e-09,3.143664998968815370e-09,3.772397998762578443e-09,4.401130998556341104e-09,5.029863998350103764e-09,5.658596998143866424e-09,6.287329997937629085e-09,6.916062997731391745e-09,7.544795997525155233e-09,8.173528997318918720e-09,8.802261997112682208e-09,9.430994996906445695e-09,1.005972799670020918e-08,1.068846099649397267e-08,1.131719399628773616e-08,1.194592699608149965e-08,1.257465999587526313e-08,1.320339299566902662e-08,1.383212599546279011e-08,1.446085899525655360e-08,1.508959199505031708e-08,1.571832499484408057e-08,1.634705799463784406e-08,1.697579099443160755e-08,1.760452399422537103e-08,1.823325699401913452e-08,1.886198999381289801e-08,1.949072299360666150e-08,2.011945599340042498e-08,2.074818899319418847e-08,2.137692199298795196e-08,2.200565499278171545e-08,2.263438799257547893e-08,2.326312099236924242e-08,2.389185399216300591e-08,2.452058699195676940e-08,2.514931999175053288e-08,2.577805299154429637e-08,2.640678599133805986e-08,2.703551899113182335e-08,2.766425199092558683e-08,2.829298499071935032e-08,2.892171799051311381e-08,2.955045099030687730e-08,3.017918399010064078e-08,3.080791698989440427e-08,3.143664998968816776e-08,3.206538298948193125e-08,3.269411598927569473e-08,3.332284898906945822e-08,3.395158198886322171e-08,3.458031498865698520e-08,3.520904798845074868e-08,3.583778098824451217e-08,3.646651398803827566e-08,3.709524698783203915e-08,3.772397998762580263e-08,3.835271298741956612e-08,3.898144598721332961e-08,3.961017898700709310e-08 +0.000000000000000000e+00,-5.937785805918140963e-10,-1.187557161183628193e-09,-1.781335741775442289e-09,-2.375114322367256385e-09,-2.968892902959070481e-09,-3.562671483550884578e-09,-4.156450064142698674e-09,-4.750228644734512770e-09,-5.344007225326326867e-09,-5.937785805918140963e-09,-6.531564386509955059e-09,-7.125342967101769155e-09,-7.719121547693583252e-09,-8.312900128285397348e-09,-8.906678708877211444e-09,-9.500457289469025541e-09,-1.009423587006083964e-08,-1.068801445065265373e-08,-1.128179303124446783e-08,-1.187557161183628193e-08,-1.246935019242809602e-08,-1.306312877301991012e-08,-1.365690735361172421e-08,-1.425068593420353831e-08,-1.484446451479535241e-08,-1.543824309538716650e-08,-1.603202167597898225e-08,-1.662580025657079800e-08,-1.721957883716261376e-08,-1.781335741775442951e-08,-1.840713599834624526e-08,-1.900091457893806101e-08,-1.959469315952987676e-08,-2.018847174012169251e-08,-2.078225032071350826e-08,-2.137602890130532401e-08,-2.196980748189713976e-08,-2.256358606248895551e-08,-2.315736464308077126e-08,-2.375114322367258701e-08,-2.434492180426440276e-08,-2.493870038485621851e-08,-2.553247896544803426e-08,-2.612625754603985002e-08,-2.672003612663166577e-08,-2.731381470722348152e-08,-2.790759328781529727e-08,-2.850137186840711302e-08,-2.909515044899892877e-08,-2.968892902959074452e-08,-3.028270761018256027e-08,-3.087648619077437933e-08,-3.147026477136619839e-08,-3.206404335195801745e-08,-3.265782193254983651e-08,-3.325160051314165557e-08,-3.384537909373347463e-08,-3.443915767432529369e-08,-3.503293625491711274e-08,-3.562671483550893180e-08,-3.622049341610075086e-08,-3.681427199669256992e-08,-3.740805057728438898e-08 +0.000000000000000000e+00,-5.663812991056526973e-10,-1.132762598211305395e-09,-1.699143897316958195e-09,-2.265525196422611203e-09,-2.831906495528264210e-09,-3.398287794633917218e-09,-3.964669093739570225e-09,-4.531050392845223232e-09,-5.097431691950876240e-09,-5.663812991056529247e-09,-6.230194290162182255e-09,-6.796575589267835262e-09,-7.362956888373488270e-09,-7.929338187479142104e-09,-8.495719486584795112e-09,-9.062100785690448119e-09,-9.628482084796101127e-09,-1.019486338390175413e-08,-1.076124468300740714e-08,-1.132762598211306015e-08,-1.189400728121871316e-08,-1.246038858032436616e-08,-1.302676987943001917e-08,-1.359315117853567218e-08,-1.415953247764132519e-08,-1.472591377674697819e-08,-1.529229507585263120e-08,-1.585867637495828421e-08,-1.642505767406393722e-08,-1.699143897316959022e-08,-1.755782027227524323e-08,-1.812420157138089624e-08,-1.869058287048654925e-08,-1.925696416959220225e-08,-1.982334546869785526e-08,-2.038972676780350827e-08,-2.095610806690916128e-08,-2.152248936601481428e-08,-2.208887066512046729e-08,-2.265525196422612030e-08,-2.322163326333177331e-08,-2.378801456243742631e-08,-2.435439586154307932e-08,-2.492077716064873233e-08,-2.548715845975438534e-08,-2.605353975886003834e-08,-2.661992105796569135e-08,-2.718630235707134436e-08,-2.775268365617699737e-08,-2.831906495528265037e-08,-2.888544625438830338e-08,-2.945182755349395639e-08,-3.001820885259960609e-08,-3.058459015170525578e-08,-3.115097145081090548e-08,-3.171735274991655518e-08,-3.228373404902220488e-08,-3.285011534812785458e-08,-3.341649664723350428e-08,-3.398287794633915398e-08,-3.454925924544480368e-08,-3.511564054455045337e-08,-3.568202184365610307e-08 +0.000000000000000000e+00,-6.287329997474047705e-10,-1.257465999494809541e-09,-1.886198999242214105e-09,-2.514931998989618668e-09,-3.143664998737023232e-09,-3.772397998484428209e-09,-4.401130998231833186e-09,-5.029863997979238164e-09,-5.658596997726643141e-09,-6.287329997474048118e-09,-6.916062997221453095e-09,-7.544795996968858073e-09,-8.173528996716263050e-09,-8.802261996463668027e-09,-9.430994996211073004e-09,-1.005972799595847798e-08,-1.068846099570588296e-08,-1.131719399545328794e-08,-1.194592699520069291e-08,-1.257465999494809789e-08,-1.320339299469550287e-08,-1.383212599444290785e-08,-1.446085899419031282e-08,-1.508959199393771945e-08,-1.571832499368512774e-08,-1.634705799343253603e-08,-1.697579099317994431e-08,-1.760452399292735260e-08,-1.823325699267476088e-08,-1.886198999242216917e-08,-1.949072299216957746e-08,-2.011945599191698574e-08,-2.074818899166439403e-08,-2.137692199141180231e-08,-2.200565499115921060e-08,-2.263438799090661889e-08,-2.326312099065402717e-08,-2.389185399040143546e-08,-2.452058699014884374e-08,-2.514931998989625203e-08,-2.577805298964366032e-08,-2.640678598939106860e-08,-2.703551898913847689e-08,-2.766425198888588517e-08,-2.829298498863329346e-08,-2.892171798838070175e-08,-2.955045098812811003e-08,-3.017918398787551832e-08,-3.080791698762292660e-08,-3.143664998737033489e-08,-3.206538298711774318e-08,-3.269411598686515146e-08,-3.332284898661255975e-08,-3.395158198635996803e-08,-3.458031498610737632e-08,-3.520904798585478461e-08,-3.583778098560219289e-08,-3.646651398534960118e-08,-3.709524698509700946e-08,-3.772397998484441775e-08,-3.835271298459182604e-08,-3.898144598433923432e-08,-3.961017898408664261e-08 +0.000000000000000000e+00,6.222600351794485937e-10,1.244520070358897187e-09,1.866780105538345678e-09,2.489040140717793961e-09,3.111300175897242245e-09,3.733560211076690528e-09,4.355820246256138398e-09,4.978080281435586268e-09,5.600340316615034138e-09,6.222600351794482008e-09,6.844860386973929878e-09,7.467120422153377748e-09,8.089380457332825618e-09,8.711640492512273488e-09,9.333900527691721358e-09,9.956160562871169228e-09,1.057842059805061710e-08,1.120068063323006497e-08,1.182294066840951284e-08,1.244520070358896071e-08,1.306746073876840858e-08,1.368972077394785645e-08,1.431198080912730432e-08,1.493424084430675219e-08,1.555650087948619840e-08,1.617876091466564462e-08,1.680102094984509083e-08,1.742328098502453705e-08,1.804554102020398326e-08,1.866780105538342948e-08,1.929006109056287570e-08,1.991232112574232191e-08,2.053458116092176813e-08,2.115684119610121434e-08,2.177910123128066056e-08,2.240136126646010677e-08,2.302362130163955299e-08,2.364588133681899921e-08,2.426814137199844542e-08,2.489040140717789164e-08,2.551266144235733785e-08,2.613492147753678407e-08,2.675718151271623028e-08,2.737944154789567650e-08,2.800170158307512271e-08,2.862396161825456893e-08,2.924622165343401515e-08,2.986848168861345805e-08,3.049074172379290096e-08,3.111300175897234387e-08,3.173526179415178677e-08,3.235752182933122968e-08,3.297978186451067259e-08,3.360204189969011549e-08,3.422430193486955840e-08,3.484656197004900131e-08,3.546882200522844421e-08,3.609108204040788712e-08,3.671334207558733003e-08,3.733560211076677293e-08,3.795786214594621584e-08,3.858012218112565875e-08,3.920238221630510165e-08 +0.000000000000000000e+00,6.050787675356094876e-10,1.210157535071218975e-09,1.815236302606828359e-09,2.420315070142437537e-09,3.025393837678046714e-09,3.630472605213655892e-09,4.235551372749265069e-09,4.840630140284874247e-09,5.445708907820483424e-09,6.050787675356092601e-09,6.655866442891701779e-09,7.260945210427310956e-09,7.866023977962919306e-09,8.471102745498528484e-09,9.076181513034137661e-09,9.681260280569746839e-09,1.028633904810535602e-08,1.089141781564096519e-08,1.149649658317657437e-08,1.210157535071218355e-08,1.270665411824779273e-08,1.331173288578340190e-08,1.391681165331901108e-08,1.452189042085462026e-08,1.512696918839022944e-08,1.573204795592583861e-08,1.633712672346144779e-08,1.694220549099705697e-08,1.754728425853266615e-08,1.815236302606827532e-08,1.875744179360388450e-08,1.936252056113949368e-08,1.996759932867510285e-08,2.057267809621071203e-08,2.117775686374632121e-08,2.178283563128193039e-08,2.238791439881753956e-08,2.299299316635314874e-08,2.359807193388875792e-08,2.420315070142436710e-08,2.480822946895997627e-08,2.541330823649558545e-08,2.601838700403119463e-08,2.662346577156680381e-08,2.722854453910241298e-08,2.783362330663802216e-08,2.843870207417363134e-08,2.904378084170924052e-08,2.964885960924484969e-08,3.025393837678045887e-08,3.085901714431606474e-08,3.146409591185167061e-08,3.206917467938727648e-08,3.267425344692288235e-08,3.327933221445848821e-08,3.388441098199409408e-08,3.448948974952969995e-08,3.509456851706530582e-08,3.569964728460091169e-08,3.630472605213651756e-08,3.690980481967212343e-08,3.751488358720772930e-08,3.811996235474333516e-08 +0.000000000000000000e+00,6.470686088447033407e-10,1.294137217689406681e-09,1.941205826534109919e-09,2.588274435378812949e-09,3.235343044223515980e-09,3.882411653068219010e-09,4.529480261912921627e-09,5.176548870757624244e-09,5.823617479602326861e-09,6.470686088447029478e-09,7.117754697291732095e-09,7.764823306136434712e-09,8.411891914981137329e-09,9.058960523825839946e-09,9.706029132670542562e-09,1.035309774151524518e-08,1.100016635035994780e-08,1.164723495920465041e-08,1.229430356804935303e-08,1.294137217689405565e-08,1.358844078573875826e-08,1.423550939458346088e-08,1.488257800342816350e-08,1.552964661227286611e-08,1.617671522111756873e-08,1.682378382996227135e-08,1.747085243880697397e-08,1.811792104765167658e-08,1.876498965649637920e-08,1.941205826534108182e-08,2.005912687418578443e-08,2.070619548303048705e-08,2.135326409187518967e-08,2.200033270071989228e-08,2.264740130956459490e-08,2.329446991840929752e-08,2.394153852725400013e-08,2.458860713609870275e-08,2.523567574494340537e-08,2.588274435378810799e-08,2.652981296263281060e-08,2.717688157147751322e-08,2.782395018032221584e-08,2.847101878916691845e-08,2.911808739801162107e-08,2.976515600685632369e-08,3.041222461570102300e-08,3.105929322454572561e-08,3.170636183339042823e-08,3.235343044223513085e-08,3.300049905107983346e-08,3.364756765992453608e-08,3.429463626876923870e-08,3.494170487761394131e-08,3.558877348645864393e-08,3.623584209530334655e-08,3.688291070414804916e-08,3.752997931299275178e-08,3.817704792183745440e-08,3.882411653068215702e-08,3.947118513952685963e-08,4.011825374837156225e-08,4.076532235721626487e-08 +0.000000000000000000e+00,-6.222600351370281870e-10,-1.244520070274056374e-09,-1.866780105411084354e-09,-2.489040140548112334e-09,-3.111300175685140314e-09,-3.733560210822168708e-09,-4.355820245959197102e-09,-4.978080281096225496e-09,-5.600340316233253889e-09,-6.222600351370282283e-09,-6.844860386507310677e-09,-7.467120421644339071e-09,-8.089380456781367465e-09,-8.711640491918395858e-09,-9.333900527055424252e-09,-9.956160562192452646e-09,-1.057842059732948104e-08,-1.120068063246650943e-08,-1.182294066760353783e-08,-1.244520070274056622e-08,-1.306746073787759461e-08,-1.368972077301462301e-08,-1.431198080815165140e-08,-1.493424084328868145e-08,-1.555650087842571315e-08,-1.617876091356274486e-08,-1.680102094869977656e-08,-1.742328098383680826e-08,-1.804554101897383996e-08,-1.866780105411087167e-08,-1.929006108924790337e-08,-1.991232112438493507e-08,-2.053458115952196677e-08,-2.115684119465899848e-08,-2.177910122979603018e-08,-2.240136126493306188e-08,-2.302362130007009358e-08,-2.364588133520712528e-08,-2.426814137034415699e-08,-2.489040140548118869e-08,-2.551266144061822039e-08,-2.613492147575525209e-08,-2.675718151089228380e-08,-2.737944154602931550e-08,-2.800170158116634720e-08,-2.862396161630337890e-08,-2.924622165144041061e-08,-2.986848168657744231e-08,-3.049074172171447401e-08,-3.111300175685150571e-08,-3.173526179198853742e-08,-3.235752182712556912e-08,-3.297978186226260082e-08,-3.360204189739963252e-08,-3.422430193253666423e-08,-3.484656196767369593e-08,-3.546882200281072763e-08,-3.609108203794775933e-08,-3.671334207308479104e-08,-3.733560210822182274e-08,-3.795786214335885444e-08,-3.858012217849588614e-08,-3.920238221363291785e-08 +0.000000000000000000e+00,-6.050787674970663866e-10,-1.210157534994132773e-09,-1.815236302491199263e-09,-2.420315069988265960e-09,-3.025393837485332657e-09,-3.630472604982399353e-09,-4.235551372479466050e-09,-4.840630139976532747e-09,-5.445708907473599444e-09,-6.050787674970666141e-09,-6.655866442467732837e-09,-7.260945209964799534e-09,-7.866023977461866231e-09,-8.471102744958932101e-09,-9.076181512455997970e-09,-9.681260279953063840e-09,-1.028633904745012971e-08,-1.089141781494719558e-08,-1.149649658244426145e-08,-1.210157534994132732e-08,-1.270665411743839319e-08,-1.331173288493545906e-08,-1.391681165243252493e-08,-1.452189041992959080e-08,-1.512696918742665667e-08,-1.573204795492372254e-08,-1.633712672242078841e-08,-1.694220548991785427e-08,-1.754728425741492014e-08,-1.815236302491198601e-08,-1.875744179240905188e-08,-1.936252055990611775e-08,-1.996759932740318362e-08,-2.057267809490024949e-08,-2.117775686239731536e-08,-2.178283562989438123e-08,-2.238791439739144710e-08,-2.299299316488851297e-08,-2.359807193238557884e-08,-2.420315069988264471e-08,-2.480822946737971058e-08,-2.541330823487677645e-08,-2.601838700237384232e-08,-2.662346576987090819e-08,-2.722854453736797406e-08,-2.783362330486503993e-08,-2.843870207236210580e-08,-2.904378083985917167e-08,-2.964885960735623754e-08,-3.025393837485330671e-08,-3.085901714235037920e-08,-3.146409590984745169e-08,-3.206917467734452418e-08,-3.267425344484159666e-08,-3.327933221233866915e-08,-3.388441097983574164e-08,-3.448948974733281412e-08,-3.509456851482988661e-08,-3.569964728232695910e-08,-3.630472604982403159e-08,-3.690980481732110407e-08,-3.751488358481817656e-08,-3.811996235231524905e-08 +0.000000000000000000e+00,-6.470686087886650595e-10,-1.294137217577330119e-09,-1.941205826365994972e-09,-2.588274435154659825e-09,-3.235343043943324677e-09,-3.882411652731989944e-09,-4.529480261520655210e-09,-5.176548870309320476e-09,-5.823617479097985743e-09,-6.470686087886651009e-09,-7.117754696675316275e-09,-7.764823305463981541e-09,-8.411891914252645981e-09,-9.058960523041310420e-09,-9.706029131829974859e-09,-1.035309774061863930e-08,-1.100016634940730374e-08,-1.164723495819596818e-08,-1.229430356698463262e-08,-1.294137217577329705e-08,-1.358844078456196149e-08,-1.423550939335062593e-08,-1.488257800213929037e-08,-1.552964661092795316e-08,-1.617671521971661594e-08,-1.682378382850527873e-08,-1.747085243729394151e-08,-1.811792104608260430e-08,-1.876498965487126708e-08,-1.941205826365992987e-08,-2.005912687244859265e-08,-2.070619548123725543e-08,-2.135326409002591822e-08,-2.200033269881458100e-08,-2.264740130760324379e-08,-2.329446991639190657e-08,-2.394153852518056936e-08,-2.458860713396923214e-08,-2.523567574275789493e-08,-2.588274435154655771e-08,-2.652981296033522050e-08,-2.717688156912388328e-08,-2.782395017791254607e-08,-2.847101878670120885e-08,-2.911808739548987164e-08,-2.976515600427853442e-08,-3.041222461306720052e-08,-3.105929322185586661e-08,-3.170636183064453270e-08,-3.235343043943319880e-08,-3.300049904822186489e-08,-3.364756765701053098e-08,-3.429463626579919708e-08,-3.494170487458786317e-08,-3.558877348337652926e-08,-3.623584209216519536e-08,-3.688291070095386145e-08,-3.752997930974252754e-08,-3.817704791853119364e-08,-3.882411652731985973e-08,-3.947118513610852582e-08,-4.011825374489719192e-08,-4.076532235368585801e-08 +0.000000000000000000e+00,6.450176812713853040e-10,1.290035362542770608e-09,1.935053043814156015e-09,2.580070725085541630e-09,3.225088406356927244e-09,3.870106087628312858e-09,4.515123768899698886e-09,5.160141450171084913e-09,5.805159131442470941e-09,6.450176812713856969e-09,7.095194493985242997e-09,7.740212175256629025e-09,8.385229856528015052e-09,9.030247537799401080e-09,9.675265219070787108e-09,1.032028290034217314e-08,1.096530058161355916e-08,1.161031826288494519e-08,1.225533594415633122e-08,1.290035362542771725e-08,1.354537130669910327e-08,1.419038898797048930e-08,1.483540666924187533e-08,1.548042435051326136e-08,1.612544203178464904e-08,1.677045971305603672e-08,1.741547739432742440e-08,1.806049507559881209e-08,1.870551275687019977e-08,1.935053043814158745e-08,1.999554811941297513e-08,2.064056580068436281e-08,2.128558348195575050e-08,2.193060116322713818e-08,2.257561884449852586e-08,2.322063652576991354e-08,2.386565420704130123e-08,2.451067188831268891e-08,2.515568956958407659e-08,2.580070725085546427e-08,2.644572493212685195e-08,2.709074261339823964e-08,2.773576029466962732e-08,2.838077797594101500e-08,2.902579565721240268e-08,2.967081333848379036e-08,3.031583101975517805e-08,3.096084870102656904e-08,3.160586638229796003e-08,3.225088406356935102e-08,3.289590174484074201e-08,3.354091942611213300e-08,3.418593710738352399e-08,3.483095478865491498e-08,3.547597246992630597e-08,3.612099015119769696e-08,3.676600783246908796e-08,3.741102551374047895e-08,3.805604319501186994e-08,3.870106087628326093e-08,3.934607855755465192e-08,3.999109623882604291e-08,4.063611392009743390e-08 +0.000000000000000000e+00,6.323786807191323733e-10,1.264757361438264747e-09,1.897136042157397120e-09,2.529514722876529493e-09,3.161893403595661867e-09,3.794272084314794240e-09,4.426650765033926613e-09,5.059029445753058986e-09,5.691408126472191360e-09,6.323786807191323733e-09,6.956165487910456106e-09,7.588544168629588480e-09,8.220922849348721680e-09,8.853301530067854881e-09,9.485680210786988081e-09,1.011805889150612128e-08,1.075043757222525448e-08,1.138281625294438768e-08,1.201519493366352088e-08,1.264757361438265408e-08,1.327995229510178728e-08,1.391233097582092048e-08,1.454470965654005369e-08,1.517708833725918689e-08,1.580946701797832009e-08,1.644184569869745329e-08,1.707422437941658649e-08,1.770660306013571969e-08,1.833898174085485289e-08,1.897136042157398609e-08,1.960373910229311929e-08,2.023611778301225249e-08,2.086849646373138569e-08,2.150087514445051889e-08,2.213325382516965209e-08,2.276563250588878529e-08,2.339801118660791849e-08,2.403038986732705169e-08,2.466276854804618489e-08,2.529514722876531809e-08,2.592752590948445129e-08,2.655990459020358449e-08,2.719228327092271769e-08,2.782466195164185090e-08,2.845704063236098410e-08,2.908941931308011730e-08,2.972179799379925050e-08,3.035417667451838039e-08,3.098655535523751028e-08,3.161893403595664017e-08,3.225131271667577006e-08,3.288369139739489996e-08,3.351607007811402985e-08,3.414844875883315974e-08,3.478082743955228963e-08,3.541320612027141952e-08,3.604558480099054941e-08,3.667796348170967931e-08,3.731034216242880920e-08,3.794272084314793909e-08,3.857509952386706898e-08,3.920747820458619887e-08,3.983985688530532876e-08 +0.000000000000000000e+00,6.646549411212778119e-10,1.329309882242555624e-09,1.993964823363833332e-09,2.658619764485110834e-09,3.323274705606388336e-09,3.987929646727665837e-09,4.652584587848943753e-09,5.317239528970221668e-09,5.981894470091499583e-09,6.646549411212777499e-09,7.311204352334055414e-09,7.975859293455333329e-09,8.640514234576611244e-09,9.305169175697889160e-09,9.969824116819167075e-09,1.063447905794044499e-08,1.129913399906172291e-08,1.196378894018300082e-08,1.262844388130427874e-08,1.329309882242555665e-08,1.395775376354683457e-08,1.462240870466811248e-08,1.528706364578939040e-08,1.595171858691066997e-08,1.661637352803194954e-08,1.728102846915322911e-08,1.794568341027450868e-08,1.861033835139578825e-08,1.927499329251706782e-08,1.993964823363834739e-08,2.060430317475962695e-08,2.126895811588090652e-08,2.193361305700218609e-08,2.259826799812346566e-08,2.326292293924474523e-08,2.392757788036602480e-08,2.459223282148730437e-08,2.525688776260858394e-08,2.592154270372986351e-08,2.658619764485114308e-08,2.725085258597242265e-08,2.791550752709370222e-08,2.858016246821498179e-08,2.924481740933626136e-08,2.990947235045753762e-08,3.057412729157881388e-08,3.123878223270009014e-08,3.190343717382136640e-08,3.256809211494264266e-08,3.323274705606391893e-08,3.389740199718519519e-08,3.456205693830647145e-08,3.522671187942774771e-08,3.589136682054902397e-08,3.655602176167030023e-08,3.722067670279157649e-08,3.788533164391285275e-08,3.854998658503412901e-08,3.921464152615540527e-08,3.987929646727668154e-08,4.054395140839795780e-08,4.120860634951923406e-08,4.187326129064051032e-08 +0.000000000000000000e+00,-6.450176812250219341e-10,-1.290035362450043868e-09,-1.935053043675066009e-09,-2.580070724900088150e-09,-3.225088406125110291e-09,-3.870106087350132018e-09,-4.515123768575153745e-09,-5.160141449800175472e-09,-5.805159131025197200e-09,-6.450176812250218927e-09,-7.095194493475240654e-09,-7.740212174700262381e-09,-8.385229855925283282e-09,-9.030247537150304182e-09,-9.675265218375325082e-09,-1.032028289960034598e-08,-1.096530058082536688e-08,-1.161031826205038778e-08,-1.225533594327540868e-08,-1.290035362450042958e-08,-1.354537130572545048e-08,-1.419038898695047138e-08,-1.483540666817549228e-08,-1.548042434940051484e-08,-1.612544203062553739e-08,-1.677045971185055995e-08,-1.741547739307558250e-08,-1.806049507430060505e-08,-1.870551275552562761e-08,-1.935053043675065016e-08,-1.999554811797567272e-08,-2.064056579920069527e-08,-2.128558348042571783e-08,-2.193060116165074038e-08,-2.257561884287576294e-08,-2.322063652410078549e-08,-2.386565420532580804e-08,-2.451067188655083060e-08,-2.515568956777585315e-08,-2.580070724900087571e-08,-2.644572493022589826e-08,-2.709074261145092082e-08,-2.773576029267594337e-08,-2.838077797390096593e-08,-2.902579565512598848e-08,-2.967081333635101103e-08,-3.031583101757603359e-08,-3.096084869880105614e-08,-3.160586638002607870e-08,-3.225088406125110125e-08,-3.289590174247612381e-08,-3.354091942370114636e-08,-3.418593710492616892e-08,-3.483095478615119147e-08,-3.547597246737621402e-08,-3.612099014860123658e-08,-3.676600782982625913e-08,-3.741102551105128169e-08,-3.805604319227630424e-08,-3.870106087350132680e-08,-3.934607855472634935e-08,-3.999109623595137191e-08,-4.063611391717639446e-08 +0.000000000000000000e+00,-6.323786806740885632e-10,-1.264757361348177126e-09,-1.897136042022265586e-09,-2.529514722696353839e-09,-3.161893403370442092e-09,-3.794272084044530345e-09,-4.426650764718618599e-09,-5.059029445392706852e-09,-5.691408126066795105e-09,-6.323786806740883358e-09,-6.956165487414971611e-09,-7.588544168089059037e-09,-8.220922848763147290e-09,-8.853301529437235543e-09,-9.485680210111323796e-09,-1.011805889078541205e-08,-1.075043757145950030e-08,-1.138281625213358855e-08,-1.201519493280767681e-08,-1.264757361348176506e-08,-1.327995229415585331e-08,-1.391233097482994157e-08,-1.454470965550402982e-08,-1.517708833617811807e-08,-1.580946701685220633e-08,-1.644184569752629458e-08,-1.707422437820038283e-08,-1.770660305887447109e-08,-1.833898173954855934e-08,-1.897136042022264759e-08,-1.960373910089673584e-08,-2.023611778157082410e-08,-2.086849646224491235e-08,-2.150087514291900060e-08,-2.213325382359308886e-08,-2.276563250426717711e-08,-2.339801118494126536e-08,-2.403038986561535362e-08,-2.466276854628944187e-08,-2.529514722696353012e-08,-2.592752590763761838e-08,-2.655990458831170663e-08,-2.719228326898579488e-08,-2.782466194965988313e-08,-2.845704063033397139e-08,-2.908941931100805964e-08,-2.972179799168214789e-08,-3.035417667235623615e-08,-3.098655535303032109e-08,-3.161893403370440604e-08,-3.225131271437849098e-08,-3.288369139505257592e-08,-3.351607007572666087e-08,-3.414844875640074581e-08,-3.478082743707483076e-08,-3.541320611774891570e-08,-3.604558479842300065e-08,-3.667796347909708559e-08,-3.731034215977117053e-08,-3.794272084044525548e-08,-3.857509952111934042e-08,-3.920747820179342537e-08,-3.983985688246751031e-08 +0.000000000000000000e+00,-6.646549410614937467e-10,-1.329309882122987493e-09,-1.993964823184481137e-09,-2.658619764245974573e-09,-3.323274705307468010e-09,-3.987929646368961446e-09,-4.652584587430454883e-09,-5.317239528491948319e-09,-5.981894469553441756e-09,-6.646549410614935192e-09,-7.311204351676428629e-09,-7.975859292737921238e-09,-8.640514233799413848e-09,-9.305169174860906457e-09,-9.969824115922399066e-09,-1.063447905698389168e-08,-1.129913399804538428e-08,-1.196378893910687689e-08,-1.262844388016836950e-08,-1.329309882122986211e-08,-1.395775376229135472e-08,-1.462240870335284733e-08,-1.528706364441434160e-08,-1.595171858547583586e-08,-1.661637352653733012e-08,-1.728102846759882439e-08,-1.794568340866031865e-08,-1.861033834972181291e-08,-1.927499329078330718e-08,-1.993964823184480144e-08,-2.060430317290629571e-08,-2.126895811396778997e-08,-2.193361305502928423e-08,-2.259826799609077850e-08,-2.326292293715227276e-08,-2.392757787821376702e-08,-2.459223281927526129e-08,-2.525688776033675555e-08,-2.592154270139824981e-08,-2.658619764245974408e-08,-2.725085258352123834e-08,-2.791550752458273261e-08,-2.858016246564422687e-08,-2.924481740670572113e-08,-2.990947234776721540e-08,-3.057412728882870966e-08,-3.123878222989020392e-08,-3.190343717095169819e-08,-3.256809211201319245e-08,-3.323274705307468672e-08,-3.389740199413618098e-08,-3.456205693519767524e-08,-3.522671187625916951e-08,-3.589136681732066377e-08,-3.655602175838215803e-08,-3.722067669944365230e-08,-3.788533164050514656e-08,-3.854998658156664082e-08,-3.921464152262813509e-08,-3.987929646368962935e-08,-4.054395140475112362e-08,-4.120860634581261788e-08,-4.187326128687411214e-08 +0.000000000000000000e+00,6.661685676773415930e-10,1.332337135354683186e-09,1.998505703032024572e-09,2.664674270709365958e-09,3.330842838386707345e-09,3.997011406064049144e-09,4.663179973741390944e-09,5.329348541418732744e-09,5.995517109096074544e-09,6.661685676773416343e-09,7.327854244450758143e-09,7.994022812128099943e-09,8.660191379805441743e-09,9.326359947482783542e-09,9.992528515160125342e-09,1.065869708283746714e-08,1.132486565051480894e-08,1.199103421819215074e-08,1.265720278586949254e-08,1.332337135354683434e-08,1.398953992122417614e-08,1.465570848890151794e-08,1.532187705657885974e-08,1.598804562425620319e-08,1.665421419193354665e-08,1.732038275961089010e-08,1.798655132728823356e-08,1.865271989496557701e-08,1.931888846264292047e-08,1.998505703032026392e-08,2.065122559799760737e-08,2.131739416567495083e-08,2.198356273335229428e-08,2.264973130102963774e-08,2.331589986870698119e-08,2.398206843638432464e-08,2.464823700406166810e-08,2.531440557173901155e-08,2.598057413941635501e-08,2.664674270709369846e-08,2.731291127477104191e-08,2.797907984244838537e-08,2.864524841012572882e-08,2.931141697780307228e-08,2.997758554548041242e-08,3.064375411315775257e-08,3.130992268083509271e-08,3.197609124851243286e-08,3.264225981618977300e-08,3.330842838386711315e-08,3.397459695154445330e-08,3.464076551922179344e-08,3.530693408689913359e-08,3.597310265457647373e-08,3.663927122225381388e-08,3.730543978993115402e-08,3.797160835760849417e-08,3.863777692528583431e-08,3.930394549296317446e-08,3.997011406064051460e-08,4.063628262831785475e-08,4.130245119599519489e-08,4.196861976367253504e-08 +0.000000000000000000e+00,6.553226530340673480e-10,1.310645306068134696e-09,1.965967959102202147e-09,2.621290612136269806e-09,3.276613265170337464e-09,3.931935918204405122e-09,4.587258571238473194e-09,5.242581224272541266e-09,5.897903877306609337e-09,6.553226530340677409e-09,7.208549183374745481e-09,7.863871836408813553e-09,8.519194489442881625e-09,9.174517142476949696e-09,9.829839795511017768e-09,1.048516244854508584e-08,1.114048510157915391e-08,1.179580775461322198e-08,1.245113040764729006e-08,1.310645306068135813e-08,1.376177571371542620e-08,1.441709836674949427e-08,1.507242101978356234e-08,1.572774367281763041e-08,1.638306632585169849e-08,1.703838897888576656e-08,1.769371163191983463e-08,1.834903428495390270e-08,1.900435693798797077e-08,1.965967959102203885e-08,2.031500224405610692e-08,2.097032489709017499e-08,2.162564755012424306e-08,2.228097020315831113e-08,2.293629285619237920e-08,2.359161550922644728e-08,2.424693816226051535e-08,2.490226081529458342e-08,2.555758346832865149e-08,2.621290612136271956e-08,2.686822877439678763e-08,2.752355142743085571e-08,2.817887408046492378e-08,2.883419673349899185e-08,2.948951938653305992e-08,3.014484203956712469e-08,3.080016469260118945e-08,3.145548734563525421e-08,3.211080999866931897e-08,3.276613265170338374e-08,3.342145530473744850e-08,3.407677795777151326e-08,3.473210061080557803e-08,3.538742326383964279e-08,3.604274591687370755e-08,3.669806856990777232e-08,3.735339122294183708e-08,3.800871387597590184e-08,3.866403652900996661e-08,3.931935918204403137e-08,3.997468183507809613e-08,4.063000448811216089e-08,4.128532714114622566e-08 +0.000000000000000000e+00,6.817672987408831268e-10,1.363534597481766254e-09,2.045301896222649277e-09,2.727069194963532094e-09,3.408836493704414910e-09,4.090603792445297727e-09,4.772371091186180957e-09,5.454138389927064187e-09,6.135905688667947417e-09,6.817672987408830647e-09,7.499440286149713878e-09,8.181207584890597108e-09,8.862974883631480338e-09,9.544742182372363568e-09,1.022650948111324680e-08,1.090827677985413003e-08,1.159004407859501326e-08,1.227181137733589649e-08,1.295357867607677972e-08,1.363534597481766295e-08,1.431711327355854618e-08,1.499888057229942776e-08,1.568064787104030933e-08,1.636241516978119091e-08,1.704418246852207248e-08,1.772594976726295406e-08,1.840771706600383563e-08,1.908948436474471721e-08,1.977125166348559879e-08,2.045301896222648036e-08,2.113478626096736194e-08,2.181655355970824351e-08,2.249832085844912509e-08,2.318008815719000667e-08,2.386185545593088824e-08,2.454362275467176982e-08,2.522539005341265139e-08,2.590715735215353297e-08,2.658892465089441454e-08,2.727069194963529612e-08,2.795245924837617770e-08,2.863422654711705927e-08,2.931599384585794085e-08,2.999776114459882242e-08,3.067952844333970731e-08,3.136129574208059219e-08,3.204306304082147708e-08,3.272483033956236196e-08,3.340659763830324685e-08,3.408836493704413173e-08,3.477013223578501662e-08,3.545189953452590150e-08,3.613366683326678638e-08,3.681543413200767127e-08,3.749720143074855615e-08,3.817896872948944104e-08,3.886073602823032592e-08,3.954250332697121081e-08,4.022427062571209569e-08,4.090603792445298058e-08,4.158780522319386546e-08,4.226957252193475035e-08,4.295133982067563523e-08 +0.000000000000000000e+00,-6.661685676313056832e-10,-1.332337135262611366e-09,-1.998505702893916843e-09,-2.664674270525222319e-09,-3.330842838156527795e-09,-3.997011405787833685e-09,-4.663179973419139575e-09,-5.329348541050445465e-09,-5.995517108681751355e-09,-6.661685676313057245e-09,-7.327854243944363135e-09,-7.994022811575669025e-09,-8.660191379206974915e-09,-9.326359946838280805e-09,-9.992528514469586695e-09,-1.065869708210089259e-08,-1.132486564973219847e-08,-1.199103421736350436e-08,-1.265720278499481025e-08,-1.332337135262611614e-08,-1.398953992025742203e-08,-1.465570848788872792e-08,-1.532187705552003216e-08,-1.598804562315133474e-08,-1.665421419078263732e-08,-1.732038275841393990e-08,-1.798655132604524249e-08,-1.865271989367654507e-08,-1.931888846130784765e-08,-1.998505702893915023e-08,-2.065122559657045281e-08,-2.131739416420175539e-08,-2.198356273183305797e-08,-2.264973129946436055e-08,-2.331589986709566314e-08,-2.398206843472696572e-08,-2.464823700235826830e-08,-2.531440556998957088e-08,-2.598057413762087346e-08,-2.664674270525217604e-08,-2.731291127288347862e-08,-2.797907984051478120e-08,-2.864524840814608379e-08,-2.931141697577738637e-08,-2.997758554340868895e-08,-3.064375411103999153e-08,-3.130992267867129411e-08,-3.197609124630259669e-08,-3.264225981393389927e-08,-3.330842838156520185e-08,-3.397459694919650444e-08,-3.464076551682780702e-08,-3.530693408445910960e-08,-3.597310265209041218e-08,-3.663927121972171476e-08,-3.730543978735301734e-08,-3.797160835498431992e-08,-3.863777692261562250e-08,-3.930394549024692509e-08,-3.997011405787822767e-08,-4.063628262550953025e-08,-4.130245119314083283e-08,-4.196861976077213541e-08 +0.000000000000000000e+00,-6.553226529874311119e-10,-1.310645305974862224e-09,-1.965967958962293232e-09,-2.621290611949724034e-09,-3.276613264937154836e-09,-3.931935917924585637e-09,-4.587258570912016439e-09,-5.242581223899447241e-09,-5.897903876886878042e-09,-6.553226529874308844e-09,-7.208549182861739646e-09,-7.863871835849169620e-09,-8.519194488836599595e-09,-9.174517141824029569e-09,-9.829839794811459544e-09,-1.048516244779888952e-08,-1.114048510078631949e-08,-1.179580775377374947e-08,-1.245113040676117944e-08,-1.310645305974860942e-08,-1.376177571273603939e-08,-1.441709836572346937e-08,-1.507242101871090099e-08,-1.572774367169833262e-08,-1.638306632468576425e-08,-1.703838897767319588e-08,-1.769371163066062751e-08,-1.834903428364805914e-08,-1.900435693663549077e-08,-1.965967958962292240e-08,-2.031500224261035402e-08,-2.097032489559778565e-08,-2.162564754858521728e-08,-2.228097020157264891e-08,-2.293629285456008054e-08,-2.359161550754751217e-08,-2.424693816053494380e-08,-2.490226081352237543e-08,-2.555758346650980706e-08,-2.621290611949723868e-08,-2.686822877248467031e-08,-2.752355142547210194e-08,-2.817887407845953357e-08,-2.883419673144696520e-08,-2.948951938443439683e-08,-3.014484203742182846e-08,-3.080016469040926009e-08,-3.145548734339669172e-08,-3.211080999638412334e-08,-3.276613264937155497e-08,-3.342145530235898660e-08,-3.407677795534641823e-08,-3.473210060833384986e-08,-3.538742326132128149e-08,-3.604274591430871312e-08,-3.669806856729614475e-08,-3.735339122028357638e-08,-3.800871387327100800e-08,-3.866403652625843963e-08,-3.931935917924587126e-08,-3.997468183223330289e-08,-4.063000448522073452e-08,-4.128532713820816615e-08 +0.000000000000000000e+00,-6.817672986822184438e-10,-1.363534597364436888e-09,-2.045301896046655435e-09,-2.727069194728874189e-09,-3.408836493411092943e-09,-4.090603792093311697e-09,-4.772371090775530451e-09,-5.454138389457749205e-09,-6.135905688139967958e-09,-6.817672986822186712e-09,-7.499440285504405466e-09,-8.181207584186625048e-09,-8.862974882868844629e-09,-9.544742181551064210e-09,-1.022650948023328379e-08,-1.090827677891550337e-08,-1.159004407759772295e-08,-1.227181137627994253e-08,-1.295357867496216212e-08,-1.363534597364438170e-08,-1.431711327232660128e-08,-1.499888057100882086e-08,-1.568064786969104209e-08,-1.636241516837326333e-08,-1.704418246705548457e-08,-1.772594976573770580e-08,-1.840771706441992704e-08,-1.908948436310214827e-08,-1.977125166178436951e-08,-2.045301896046659074e-08,-2.113478625914881198e-08,-2.181655355783103321e-08,-2.249832085651325445e-08,-2.318008815519547568e-08,-2.386185545387769692e-08,-2.454362275255991816e-08,-2.522539005124213939e-08,-2.590715734992436063e-08,-2.658892464860658186e-08,-2.727069194728880310e-08,-2.795245924597102433e-08,-2.863422654465324557e-08,-2.931599384333546680e-08,-2.999776114201768804e-08,-3.067952844069990928e-08,-3.136129573938213051e-08,-3.204306303806435175e-08,-3.272483033674657298e-08,-3.340659763542879422e-08,-3.408836493411101545e-08,-3.477013223279323669e-08,-3.545189953147545792e-08,-3.613366683015767916e-08,-3.681543412883990040e-08,-3.749720142752212163e-08,-3.817896872620434287e-08,-3.886073602488656410e-08,-3.954250332356878534e-08,-4.022427062225100657e-08,-4.090603792093322781e-08,-4.158780521961544904e-08,-4.226957251829767028e-08,-4.295133981697989151e-08 +0.000000000000000000e+00,6.869507039426022307e-10,1.373901407885204461e-09,2.060852111827806589e-09,2.747802815770408509e-09,3.434753519713010430e-09,4.121704223655612350e-09,4.808654927598213857e-09,5.495605631540815364e-09,6.182556335483416871e-09,6.869507039426018378e-09,7.556457743368619885e-09,8.243408447311221392e-09,8.930359151253822899e-09,9.617309855196424406e-09,1.030426055913902591e-08,1.099121126308162742e-08,1.167816196702422893e-08,1.236511267096683043e-08,1.305206337490943194e-08,1.373901407885203345e-08,1.442596478279463495e-08,1.511291548673723646e-08,1.579986619067983797e-08,1.648681689462243948e-08,1.717376759856504098e-08,1.786071830250764249e-08,1.854766900645024400e-08,1.923461971039284550e-08,1.992157041433544701e-08,2.060852111827804852e-08,2.129547182222065002e-08,2.198242252616325153e-08,2.266937323010585304e-08,2.335632393404845454e-08,2.404327463799105605e-08,2.473022534193365756e-08,2.541717604587625907e-08,2.610412674981886057e-08,2.679107745376146208e-08,2.747802815770406359e-08,2.816497886164666509e-08,2.885192956558926660e-08,2.953888026953186811e-08,3.022583097347446631e-08,3.091278167741706781e-08,3.159973238135966932e-08,3.228668308530227083e-08,3.297363378924487233e-08,3.366058449318747384e-08,3.434753519713007535e-08,3.503448590107267685e-08,3.572143660501527836e-08,3.640838730895787987e-08,3.709533801290048137e-08,3.778228871684308288e-08,3.846923942078568439e-08,3.915619012472828590e-08,3.984314082867088740e-08,4.053009153261348891e-08,4.121704223655609042e-08,4.190399294049869192e-08,4.259094364444129343e-08,4.327789434838389494e-08 +0.000000000000000000e+00,6.765176899198115650e-10,1.353035379839623130e-09,2.029553069759434488e-09,2.706070759679245846e-09,3.382588449599057205e-09,4.059106139518868977e-09,4.735623829438680748e-09,5.412141519358492520e-09,6.088659209278304292e-09,6.765176899198116064e-09,7.441694589117927836e-09,8.118212279037739607e-09,8.794729968957551379e-09,9.471247658877363151e-09,1.014776534879717492e-08,1.082428303871698669e-08,1.150080072863679847e-08,1.217731841855661024e-08,1.285383610847642201e-08,1.353035379839623378e-08,1.420687148831604555e-08,1.488338917823585733e-08,1.555990686815567075e-08,1.623642455807548252e-08,1.691294224799529430e-08,1.758945993791510607e-08,1.826597762783491784e-08,1.894249531775472961e-08,1.961901300767454138e-08,2.029553069759435315e-08,2.097204838751416493e-08,2.164856607743397670e-08,2.232508376735378847e-08,2.300160145727360024e-08,2.367811914719341201e-08,2.435463683711322379e-08,2.503115452703303556e-08,2.570767221695284733e-08,2.638418990687265910e-08,2.706070759679247087e-08,2.773722528671228264e-08,2.841374297663209442e-08,2.909026066655190619e-08,2.976677835647171796e-08,3.044329604639152973e-08,3.111981373631134150e-08,3.179633142623115328e-08,3.247284911615096505e-08,3.314936680607077682e-08,3.382588449599058859e-08,3.450240218591040036e-08,3.517891987583021213e-08,3.585543756575002391e-08,3.653195525566983568e-08,3.720847294558964745e-08,3.788499063550945922e-08,3.856150832542927099e-08,3.923802601534908277e-08,3.991454370526889454e-08,4.059106139518870631e-08,4.126757908510851808e-08,4.194409677502832985e-08,4.262061446494814162e-08 +0.000000000000000000e+00,6.964025806381647860e-10,1.392805161276329572e-09,2.089207741914494565e-09,2.785610322552659558e-09,3.482012903190824550e-09,4.178415483828989130e-09,4.874818064467153709e-09,5.571220645105318288e-09,6.267623225743482867e-09,6.964025806381647447e-09,7.660428387019812026e-09,8.356830967657976605e-09,9.053233548296141184e-09,9.749636128934305764e-09,1.044603870957247034e-08,1.114244129021063492e-08,1.183884387084879950e-08,1.253524645148696408e-08,1.323164903212512866e-08,1.392805161276329324e-08,1.462445419340145782e-08,1.532085677403962074e-08,1.601725935467778532e-08,1.671366193531594990e-08,1.741006451595411448e-08,1.810646709659227906e-08,1.880286967723044364e-08,1.949927225786860822e-08,2.019567483850677280e-08,2.089207741914493738e-08,2.158847999978310196e-08,2.228488258042126654e-08,2.298128516105943111e-08,2.367768774169759569e-08,2.437409032233576027e-08,2.507049290297392485e-08,2.576689548361208943e-08,2.646329806425025401e-08,2.715970064488841859e-08,2.785610322552658317e-08,2.855250580616474775e-08,2.924890838680291233e-08,2.994531096744107691e-08,3.064171354807924149e-08,3.133811612871740607e-08,3.203451870935557064e-08,3.273092128999373522e-08,3.342732387063189980e-08,3.412372645127006438e-08,3.482012903190822896e-08,3.551653161254639354e-08,3.621293419318455812e-08,3.690933677382272270e-08,3.760573935446088728e-08,3.830214193509905186e-08,3.899854451573721644e-08,3.969494709637538102e-08,4.039134967701354560e-08,4.108775225765171017e-08,4.178415483828987475e-08,4.248055741892803933e-08,4.317695999956620391e-08,4.387336258020436849e-08 +0.000000000000000000e+00,-6.869507039002212185e-10,-1.373901407800442437e-09,-2.060852111700663552e-09,-2.747802815600884460e-09,-3.434753519501105368e-09,-4.121704223401326277e-09,-4.808654927301547185e-09,-5.495605631201768093e-09,-6.182556335101989002e-09,-6.869507039002209910e-09,-7.556457742902430818e-09,-8.243408446802650899e-09,-8.930359150702870980e-09,-9.617309854603091061e-09,-1.030426055850331114e-08,-1.099121126240353122e-08,-1.167816196630375130e-08,-1.236511267020397139e-08,-1.305206337410419147e-08,-1.373901407800441155e-08,-1.442596478190463163e-08,-1.511291548580485171e-08,-1.579986618970507179e-08,-1.648681689360529187e-08,-1.717376759750551195e-08,-1.786071830140573203e-08,-1.854766900530595212e-08,-1.923461970920617220e-08,-1.992157041310639228e-08,-2.060852111700661236e-08,-2.129547182090683244e-08,-2.198242252480705252e-08,-2.266937322870727260e-08,-2.335632393260749268e-08,-2.404327463650771276e-08,-2.473022534040793284e-08,-2.541717604430815293e-08,-2.610412674820837301e-08,-2.679107745210859309e-08,-2.747802815600881317e-08,-2.816497885990903325e-08,-2.885192956380925333e-08,-2.953888026770947341e-08,-3.022583097160969680e-08,-3.091278167550992019e-08,-3.159973237941014358e-08,-3.228668308331036697e-08,-3.297363378721059036e-08,-3.366058449111081375e-08,-3.434753519501103714e-08,-3.503448589891126053e-08,-3.572143660281148392e-08,-3.640838730671170731e-08,-3.709533801061193070e-08,-3.778228871451215409e-08,-3.846923941841237748e-08,-3.915619012231260087e-08,-3.984314082621282426e-08,-4.053009153011304765e-08,-4.121704223401327104e-08,-4.190399293791349443e-08,-4.259094364181371782e-08,-4.327789434571394121e-08 +0.000000000000000000e+00,-6.765176898752018180e-10,-1.353035379750403636e-09,-2.029553069625605351e-09,-2.706070759500806858e-09,-3.382588449376008366e-09,-4.059106139251209874e-09,-4.735623829126411795e-09,-5.412141519001613717e-09,-6.088659208876815638e-09,-6.765176898752017559e-09,-7.441694588627219481e-09,-8.118212278502421402e-09,-8.794729968377623324e-09,-9.471247658252825245e-09,-1.014776534812802717e-08,-1.082428303800322909e-08,-1.150080072787843101e-08,-1.217731841775363293e-08,-1.285383610762883485e-08,-1.353035379750403677e-08,-1.420687148737923869e-08,-1.488338917725444062e-08,-1.555990686712964254e-08,-1.623642455700484611e-08,-1.691294224688004969e-08,-1.758945993675525326e-08,-1.826597762663045684e-08,-1.894249531650566042e-08,-1.961901300638086399e-08,-2.029553069625606757e-08,-2.097204838613127114e-08,-2.164856607600647472e-08,-2.232508376588167829e-08,-2.300160145575688187e-08,-2.367811914563208545e-08,-2.435463683550728902e-08,-2.503115452538249260e-08,-2.570767221525769617e-08,-2.638418990513289975e-08,-2.706070759500810333e-08,-2.773722528488330690e-08,-2.841374297475851048e-08,-2.909026066463371405e-08,-2.976677835450891763e-08,-3.044329604438412120e-08,-3.111981373425932478e-08,-3.179633142413452836e-08,-3.247284911400973193e-08,-3.314936680388493551e-08,-3.382588449376013908e-08,-3.450240218363534266e-08,-3.517891987351054623e-08,-3.585543756338574981e-08,-3.653195525326095339e-08,-3.720847294313615696e-08,-3.788499063301136054e-08,-3.856150832288656411e-08,-3.923802601276176769e-08,-3.991454370263697126e-08,-4.059106139251217484e-08,-4.126757908238737842e-08,-4.194409677226258199e-08,-4.262061446213778557e-08 +0.000000000000000000e+00,-6.964025805847843396e-10,-1.392805161169568679e-09,-2.089207741754353225e-09,-2.785610322339137772e-09,-3.482012902923922318e-09,-4.178415483508706451e-09,-4.874818064093490584e-09,-5.571220644678274716e-09,-6.267623225263058849e-09,-6.964025805847842982e-09,-7.660428386432627942e-09,-8.356830967017412902e-09,-9.053233547602197862e-09,-9.749636128186982822e-09,-1.044603870877176778e-08,-1.114244128935655274e-08,-1.183884386994133770e-08,-1.253524645052612266e-08,-1.323164903111090762e-08,-1.392805161169569258e-08,-1.462445419228047754e-08,-1.532085677286526250e-08,-1.601725935345004746e-08,-1.671366193403483242e-08,-1.741006451461961738e-08,-1.810646709520440234e-08,-1.880286967578918730e-08,-1.949927225637397226e-08,-2.019567483695875722e-08,-2.089207741754354218e-08,-2.158847999812832714e-08,-2.228488257871311210e-08,-2.298128515929789706e-08,-2.367768773988268202e-08,-2.437409032046746698e-08,-2.507049290105225194e-08,-2.576689548163703690e-08,-2.646329806222182186e-08,-2.715970064280660682e-08,-2.785610322339139178e-08,-2.855250580397617674e-08,-2.924890838456096170e-08,-2.994531096514574335e-08,-3.064171354573052500e-08,-3.133811612631530665e-08,-3.203451870690008830e-08,-3.273092128748486996e-08,-3.342732386806965161e-08,-3.412372644865443326e-08,-3.482012902923921491e-08,-3.551653160982399656e-08,-3.621293419040877821e-08,-3.690933677099355986e-08,-3.760573935157834151e-08,-3.830214193216312317e-08,-3.899854451274790482e-08,-3.969494709333268647e-08,-4.039134967391746812e-08,-4.108775225450224977e-08,-4.178415483508703142e-08,-4.248055741567181307e-08,-4.317695999625659472e-08,-4.387336257684137638e-08 +0.000000000000000000e+00,6.956601187588081203e-10,1.391320237517616241e-09,2.086980356276424258e-09,2.782640475035232068e-09,3.478300593794039878e-09,4.173960712552847688e-09,4.869620831311655498e-09,5.565280950070463308e-09,6.260941068829271118e-09,6.956601187588078929e-09,7.652261306346887566e-09,8.347921425105697030e-09,9.043581543864506495e-09,9.739241662623315959e-09,1.043490178138212542e-08,1.113056190014093489e-08,1.182622201889974435e-08,1.252188213765855382e-08,1.321754225641736328e-08,1.391320237517617275e-08,1.460886249393498221e-08,1.530452261269379168e-08,1.600018273145260114e-08,1.669584285021141060e-08,1.739150296897022007e-08,1.808716308772902953e-08,1.878282320648783900e-08,1.947848332524664846e-08,2.017414344400545793e-08,2.086980356276426739e-08,2.156546368152307686e-08,2.226112380028188632e-08,2.295678391904069578e-08,2.365244403779950525e-08,2.434810415655831471e-08,2.504376427531712418e-08,2.573942439407593364e-08,2.643508451283474311e-08,2.713074463159355257e-08,2.782640475035236204e-08,2.852206486911117150e-08,2.921772498786998097e-08,2.991338510662878712e-08,3.060904522538758997e-08,3.130470534414639282e-08,3.200036546290519566e-08,3.269602558166399851e-08,3.339168570042280136e-08,3.408734581918160420e-08,3.478300593794040705e-08,3.547866605669920990e-08,3.617432617545801274e-08,3.686998629421681559e-08,3.756564641297561844e-08,3.826130653173442129e-08,3.895696665049322413e-08,3.965262676925202698e-08,4.034828688801082983e-08,4.104394700676963267e-08,4.173960712552843552e-08,4.243526724428723837e-08,4.313092736304604121e-08,4.382658748180484406e-08 +0.000000000000000000e+00,-6.956601187194966719e-10,-1.391320237438993344e-09,-2.086980356158489809e-09,-2.782640474877986274e-09,-3.478300593597482739e-09,-4.173960712316979618e-09,-4.869620831036476497e-09,-5.565280949755973375e-09,-6.260941068475470254e-09,-6.956601187194967133e-09,-7.652261305914464011e-09,-8.347921424633960890e-09,-9.043581543353457769e-09,-9.739241662072954647e-09,-1.043490178079245153e-08,-1.113056189951194840e-08,-1.182622201823144528e-08,-1.252188213695094216e-08,-1.321754225567043904e-08,-1.391320237438993592e-08,-1.460886249310943280e-08,-1.530452261182892802e-08,-1.600018273054842325e-08,-1.669584284926791847e-08,-1.739150296798741370e-08,-1.808716308670690892e-08,-1.878282320542640414e-08,-1.947848332414589937e-08,-2.017414344286539459e-08,-2.086980356158488982e-08,-2.156546368030438504e-08,-2.226112379902388027e-08,-2.295678391774337549e-08,-2.365244403646287071e-08,-2.434810415518236594e-08,-2.504376427390186116e-08,-2.573942439262135639e-08,-2.643508451134085161e-08,-2.713074463006034684e-08,-2.782640474877984206e-08,-2.852206486749933729e-08,-2.921772498621883251e-08,-2.991338510493832773e-08,-3.060904522365782296e-08,-3.130470534237731818e-08,-3.200036546109681341e-08,-3.269602557981630863e-08,-3.339168569853580386e-08,-3.408734581725529908e-08,-3.478300593597479430e-08,-3.547866605469428953e-08,-3.617432617341378475e-08,-3.686998629213327998e-08,-3.756564641085277520e-08,-3.826130652957227043e-08,-3.895696664829176565e-08,-3.965262676701126087e-08,-4.034828688573075610e-08,-4.104394700445025132e-08,-4.173960712316974655e-08,-4.243526724188924177e-08,-4.313092736060873700e-08,-4.382658747932823222e-08 +0.000000000000000000e+00,1.952452711022645604e-10,3.904905422045291208e-10,5.857358133067937070e-10,7.809810844090583449e-10,9.762263555113229828e-10,1.171471626613587621e-09,1.366716897715852259e-09,1.561962168818116897e-09,1.757207439920381535e-09,1.952452711022645966e-09,2.147697982124910397e-09,2.342943253227174828e-09,2.538188524329439259e-09,2.733433795431703690e-09,2.928679066533968121e-09,3.123924337636232552e-09,3.319169608738496984e-09,3.514414879840761415e-09,3.709660150943025846e-09,3.904905422045290277e-09,4.100150693147555122e-09,4.295395964249819966e-09,4.490641235352084811e-09,4.685886506454349656e-09,4.881131777556614501e-09,5.076377048658879345e-09,5.271622319761144190e-09,5.466867590863409035e-09,5.662112861965673879e-09,5.857358133067938724e-09,6.052603404170203569e-09,6.247848675272468414e-09,6.443093946374733258e-09,6.638339217476998103e-09,6.833584488579262948e-09,7.028829759681527792e-09,7.224075030783792637e-09,7.419320301886057482e-09,7.614565572988322327e-09,7.809810844090587171e-09,8.005056115192852016e-09,8.200301386295116861e-09,8.395546657397381705e-09,8.590791928499646550e-09,8.786037199601911395e-09,8.981282470704176240e-09,9.176527741806441084e-09,9.371773012908705929e-09,9.567018284010970774e-09,9.762263555113235619e-09,9.957508826215500463e-09,1.015275409731776531e-08,1.034799936842003015e-08,1.054324463952229500e-08,1.073848991062455984e-08,1.093373518172682469e-08,1.112898045282908953e-08,1.132422572393135438e-08,1.151947099503361922e-08,1.171471626613588407e-08,1.190996153723814891e-08,1.210520680834041376e-08,1.230045207944267860e-08 +0.000000000000000000e+00,-3.640353643849565735e-10,-7.280707287699131470e-10,-1.092106093154869772e-09,-1.456141457539826501e-09,-1.820176821924783230e-09,-2.184212186309739958e-09,-2.548247550694696687e-09,-2.912282915079653415e-09,-3.276318279464610144e-09,-3.640353643849566873e-09,-4.004389008234524015e-09,-4.368424372619480743e-09,-4.732459737004437472e-09,-5.096495101389394201e-09,-5.460530465774350929e-09,-5.824565830159307658e-09,-6.188601194544264387e-09,-6.552636558929221115e-09,-6.916671923314177844e-09,-7.280707287699134572e-09,-7.644742652084091301e-09,-8.008778016469048030e-09,-8.372813380854004758e-09,-8.736848745238961487e-09,-9.100884109623918215e-09,-9.464919474008874944e-09,-9.828954838393831673e-09,-1.019299020277878840e-08,-1.055702556716374513e-08,-1.092106093154870186e-08,-1.128509629593365859e-08,-1.164913166031861532e-08,-1.201316702470357204e-08,-1.237720238908852877e-08,-1.274123775347348550e-08,-1.310527311785844223e-08,-1.346930848224339896e-08,-1.383334384662835569e-08,-1.419737921101331242e-08,-1.456141457539826914e-08,-1.492544993978322422e-08,-1.528948530416817929e-08,-1.565352066855313437e-08,-1.601755603293808944e-08,-1.638159139732304452e-08,-1.674562676170799959e-08,-1.710966212609295466e-08,-1.747369749047790974e-08,-1.783773285486286481e-08,-1.820176821924781989e-08,-1.856580358363277496e-08,-1.892983894801773004e-08,-1.929387431240268511e-08,-1.965790967678764018e-08,-2.002194504117259526e-08,-2.038598040555755033e-08,-2.075001576994250541e-08,-2.111405113432746048e-08,-2.147808649871241556e-08,-2.184212186309737063e-08,-2.220615722748232570e-08,-2.257019259186728078e-08,-2.293422795625223585e-08 +0.000000000000000000e+00,-1.944918716698919983e-20,-3.889837433397839966e-20,-5.834756150096760551e-20,-7.779674866795681136e-20,-9.724593583494601721e-20,-1.166951230019352110e-19,-1.361443101689244048e-19,-1.555934973359135986e-19,-1.750426845029027925e-19,-1.944918716698919863e-19,-2.139410588368811801e-19,-2.333902460038703739e-19,-2.528394331708595436e-19,-2.722886203378487134e-19,-2.917378075048378831e-19,-3.111869946718270528e-19,-3.306361818388162226e-19,-3.500853690058053923e-19,-3.695345561727945621e-19,-3.889837433397837318e-19,-4.084329305067729015e-19,-4.278821176737620713e-19,-4.473313048407512410e-19,-4.667804920077404589e-19,-4.862296791747296768e-19,-5.056788663417188947e-19,-5.251280535087081126e-19,-5.445772406756973304e-19,-5.640264278426865483e-19,-5.834756150096757662e-19,-6.029248021766649841e-19,-6.223739893436542020e-19,-6.418231765106434199e-19,-6.612723636776326378e-19,-6.807215508446218556e-19,-7.001707380116110735e-19,-7.196199251786002914e-19,-7.390691123455895093e-19,-7.585182995125787272e-19,-7.779674866795679451e-19,-7.974166738465571630e-19,-8.168658610135463809e-19,-8.363150481805355987e-19,-8.557642353475248166e-19,-8.752134225145140345e-19,-8.946626096815032524e-19,-9.141117968484924703e-19,-9.335609840154816882e-19,-9.530101711824709061e-19,-9.724593583494601239e-19,-9.919085455164493418e-19,-1.011357732683438560e-18,-1.030806919850427778e-18,-1.050256107017416995e-18,-1.069705294184406213e-18,-1.089154481351395431e-18,-1.108603668518384649e-18,-1.128052855685373867e-18,-1.147502042852363085e-18,-1.166951230019352303e-18,-1.186400417186341521e-18,-1.205849604353330739e-18,-1.225298791520319956e-18 +0.000000000000000000e+00,2.120293058874193974e-11,4.240586117748387948e-11,6.360879176622582244e-11,8.481172235496777188e-11,1.060146529437097213e-10,1.272175835324516707e-10,1.484205141211936072e-10,1.696234447099355438e-10,1.908263752986774803e-10,2.120293058874194168e-10,2.332322364761613533e-10,2.544351670649032898e-10,2.756380976536452263e-10,2.968410282423871628e-10,3.180439588311290993e-10,3.392468894198710358e-10,3.604498200086129723e-10,3.816527505973549088e-10,4.028556811860968453e-10,4.240586117748387818e-10,4.452615423635807183e-10,4.664644729523227065e-10,4.876674035410646947e-10,5.088703341298066830e-10,5.300732647185486712e-10,5.512761953072906594e-10,5.724791258960326476e-10,5.936820564847746358e-10,6.148849870735166240e-10,6.360879176622586122e-10,6.572908482510006004e-10,6.784937788397425886e-10,6.996967094284845768e-10,7.208996400172265650e-10,7.421025706059685532e-10,7.633055011947105414e-10,7.845084317834525296e-10,8.057113623721945178e-10,8.269142929609365060e-10,8.481172235496784942e-10,8.693201541384204824e-10,8.905230847271624707e-10,9.117260153159044589e-10,9.329289459046464471e-10,9.541318764933884353e-10,9.753348070821304235e-10,9.965377376708724117e-10,1.017740668259614400e-09,1.038943598848356388e-09,1.060146529437098376e-09,1.081349460025840364e-09,1.102552390614582353e-09,1.123755321203324341e-09,1.144958251792066329e-09,1.166161182380808317e-09,1.187364112969550306e-09,1.208567043558292294e-09,1.229769974147034282e-09,1.250972904735776270e-09,1.272175835324518258e-09,1.293378765913260247e-09,1.314581696502002235e-09,1.335784627090744223e-09 +0.000000000000000000e+00,-1.386253632424413730e-10,-2.772507264848827460e-10,-4.158760897273241190e-10,-5.545014529697654919e-10,-6.931268162122068649e-10,-8.317521794546482379e-10,-9.703775426970897143e-10,-1.109002905939531191e-09,-1.247628269181972667e-09,-1.386253632424414143e-09,-1.524878995666855620e-09,-1.663504358909297096e-09,-1.802129722151738573e-09,-1.940755085394180256e-09,-2.079380448636621939e-09,-2.218005811879063622e-09,-2.356631175121505305e-09,-2.495256538363946989e-09,-2.633881901606388672e-09,-2.772507264848830355e-09,-2.911132628091272038e-09,-3.049757991333713721e-09,-3.188383354576155404e-09,-3.327008717818597088e-09,-3.465634081061038771e-09,-3.604259444303480454e-09,-3.742884807545922551e-09,-3.881510170788364647e-09,-4.020135534030806744e-09,-4.158760897273248841e-09,-4.297386260515690938e-09,-4.436011623758133035e-09,-4.574636987000575131e-09,-4.713262350243017228e-09,-4.851887713485459325e-09,-4.990513076727901422e-09,-5.129138439970343518e-09,-5.267763803212785615e-09,-5.406389166455227712e-09,-5.545014529697669809e-09,-5.683639892940111905e-09,-5.822265256182554002e-09,-5.960890619424996099e-09,-6.099515982667438196e-09,-6.238141345909880293e-09,-6.376766709152322389e-09,-6.515392072394764486e-09,-6.654017435637206583e-09,-6.792642798879648680e-09,-6.931268162122090776e-09,-7.069893525364532873e-09,-7.208518888606974970e-09,-7.347144251849417067e-09,-7.485769615091858336e-09,-7.624394978334299606e-09,-7.763020341576740875e-09,-7.901645704819182145e-09,-8.040271068061623415e-09,-8.178896431304064684e-09,-8.317521794546505954e-09,-8.456147157788947223e-09,-8.594772521031388493e-09,-8.733397884273829763e-09 +0.000000000000000000e+00,3.169011569333616850e-10,6.338023138667233700e-10,9.507034708000850550e-10,1.267604627733446740e-09,1.584505784666808425e-09,1.901406941600170110e-09,2.218308098533531795e-09,2.535209255466893480e-09,2.852110412400255165e-09,3.169011569333616850e-09,3.485912726266978535e-09,3.802813883200340220e-09,4.119715040133701491e-09,4.436616197067062763e-09,4.753517354000424034e-09,5.070418510933785305e-09,5.387319667867146577e-09,5.704220824800507848e-09,6.021121981733869120e-09,6.338023138667230391e-09,6.654924295600591662e-09,6.971825452533952934e-09,7.288726609467314205e-09,7.605627766400675477e-09,7.922528923334036748e-09,8.239430080267398019e-09,8.556331237200759291e-09,8.873232394134120562e-09,9.190133551067481834e-09,9.507034708000843105e-09,9.823935864934204376e-09,1.014083702186756565e-08,1.045773817880092692e-08,1.077463933573428819e-08,1.109154049266764946e-08,1.140844164960101073e-08,1.172534280653437200e-08,1.204224396346773328e-08,1.235914512040109455e-08,1.267604627733445582e-08,1.299294743426781709e-08,1.330984859120117836e-08,1.362674974813453963e-08,1.394365090506790090e-08,1.426055206200126218e-08,1.457745321893462345e-08,1.489435437586798472e-08,1.521125553280134764e-08,1.552815668973470892e-08,1.584505784666807019e-08,1.616195900360143146e-08,1.647886016053479273e-08,1.679576131746815400e-08,1.711266247440151527e-08,1.742956363133487654e-08,1.774646478826823782e-08,1.806336594520159909e-08,1.838026710213496036e-08,1.869716825906832163e-08,1.901406941600168290e-08,1.933097057293504417e-08,1.964787172986840544e-08,1.996477288680176672e-08 +0.000000000000000000e+00,-1.820878404672551560e-10,-3.641756809345103120e-10,-5.462635214017654938e-10,-7.283513618690207274e-10,-9.104392023362759609e-10,-1.092527042803531194e-09,-1.274614883270786531e-09,-1.456702723738041868e-09,-1.638790564205297205e-09,-1.820878404672552542e-09,-2.002966245139807879e-09,-2.185054085607063216e-09,-2.367141926074318553e-09,-2.549229766541573890e-09,-2.731317607008829227e-09,-2.913405447476084564e-09,-3.095493287943339901e-09,-3.277581128410595238e-09,-3.459668968877850575e-09,-3.641756809345105912e-09,-3.823844649812361662e-09,-4.005932490279617413e-09,-4.188020330746873163e-09,-4.370108171214128914e-09,-4.552196011681384664e-09,-4.734283852148640415e-09,-4.916371692615896165e-09,-5.098459533083151916e-09,-5.280547373550407666e-09,-5.462635214017663417e-09,-5.644723054484919167e-09,-5.826810894952174918e-09,-6.008898735419430668e-09,-6.190986575886686419e-09,-6.373074416353942169e-09,-6.555162256821197920e-09,-6.737250097288453671e-09,-6.919337937755709421e-09,-7.101425778222965172e-09,-7.283513618690220922e-09,-7.465601459157476673e-09,-7.647689299624733250e-09,-7.829777140091989828e-09,-8.011864980559246406e-09,-8.193952821026502983e-09,-8.376040661493759561e-09,-8.558128501961016139e-09,-8.740216342428272717e-09,-8.922304182895529294e-09,-9.104392023362785872e-09,-9.286479863830042450e-09,-9.468567704297299027e-09,-9.650655544764555605e-09,-9.832743385231812183e-09,-1.001483122569906876e-08,-1.019691906616632534e-08,-1.037900690663358192e-08,-1.056109474710083849e-08,-1.074318258756809507e-08,-1.092527042803535165e-08,-1.110735826850260823e-08,-1.128944610896986480e-08,-1.147153394943712138e-08 +0.000000000000000000e+00,-1.699374878558682842e-20,-3.398749757117365684e-20,-5.098124635676048526e-20,-6.797499514234731368e-20,-8.496874392793413608e-20,-1.019624927135209585e-19,-1.189562414991077809e-19,-1.359499902846946033e-19,-1.529437390702814257e-19,-1.699374878558682481e-19,-1.869312366414550705e-19,-2.039249854270418929e-19,-2.209187342126286912e-19,-2.379124829982155136e-19,-2.549062317838023360e-19,-2.718999805693891584e-19,-2.888937293549759808e-19,-3.058874781405628032e-19,-3.228812269261496256e-19,-3.398749757117364480e-19,-3.568687244973232704e-19,-3.738624732829100928e-19,-3.908562220684969152e-19,-4.078499708540837376e-19,-4.248437196396705600e-19,-4.418374684252573824e-19,-4.588312172108442048e-19,-4.758249659964310272e-19,-4.928187147820178496e-19,-5.098124635676046720e-19,-5.268062123531914944e-19,-5.437999611387783168e-19,-5.607937099243651392e-19,-5.777874587099519616e-19,-5.947812074955387840e-19,-6.117749562811256064e-19,-6.287687050667124288e-19,-6.457624538522992512e-19,-6.627562026378860736e-19,-6.797499514234728960e-19,-6.967437002090597184e-19,-7.137374489946465408e-19,-7.307311977802333632e-19,-7.477249465658201856e-19,-7.647186953514070080e-19,-7.817124441369938304e-19,-7.987061929225806528e-19,-8.156999417081674752e-19,-8.326936904937542976e-19,-8.496874392793411200e-19,-8.666811880649279424e-19,-8.836749368505147648e-19,-9.006686856361014909e-19,-9.176624344216882170e-19,-9.346561832072749431e-19,-9.516499319928616693e-19,-9.686436807784483954e-19,-9.856374295640351215e-19,-1.002631178349621848e-18,-1.019624927135208574e-18,-1.036618675920795300e-18,-1.053612424706382026e-18,-1.070606173491968752e-18 +0.000000000000000000e+00,-1.952452711212230230e-10,-3.904905422424460461e-10,-5.857358133636690949e-10,-7.809810844848921955e-10,-9.762263556061153995e-10,-1.171471626727338603e-09,-1.366716897848561807e-09,-1.561962168969785011e-09,-1.757207440091008215e-09,-1.952452711212231626e-09,-2.147697982333455037e-09,-2.342943253454678448e-09,-2.538188524575901858e-09,-2.733433795697125269e-09,-2.928679066818348680e-09,-3.123924337939572091e-09,-3.319169609060795502e-09,-3.514414880182018912e-09,-3.709660151303242323e-09,-3.904905422424465734e-09,-4.100150693545688731e-09,-4.295395964666911728e-09,-4.490641235788134725e-09,-4.685886506909357723e-09,-4.881131778030580720e-09,-5.076377049151803717e-09,-5.271622320273026714e-09,-5.466867591394249711e-09,-5.662112862515472708e-09,-5.857358133636695706e-09,-6.052603404757918703e-09,-6.247848675879141700e-09,-6.443093947000364697e-09,-6.638339218121587694e-09,-6.833584489242810692e-09,-7.028829760364033689e-09,-7.224075031485256686e-09,-7.419320302606479683e-09,-7.614565573727702680e-09,-7.809810844848926505e-09,-8.005056115970150329e-09,-8.200301387091374153e-09,-8.395546658212597978e-09,-8.590791929333821802e-09,-8.786037200455045626e-09,-8.981282471576269451e-09,-9.176527742697493275e-09,-9.371773013818717099e-09,-9.567018284939940924e-09,-9.762263556061164748e-09,-9.957508827182388573e-09,-1.015275409830361240e-08,-1.034799936942483622e-08,-1.054324464054606005e-08,-1.073848991166728387e-08,-1.093373518278850769e-08,-1.112898045390973152e-08,-1.132422572503095534e-08,-1.151947099615217917e-08,-1.171471626727340299e-08,-1.190996153839462682e-08,-1.210520680951585064e-08,-1.230045208063707446e-08 +0.000000000000000000e+00,3.640353643461088115e-10,7.280707286922176231e-10,1.092106093038326435e-09,1.456141457384435246e-09,1.820176821730544058e-09,2.184212186076652869e-09,2.548247550422761474e-09,2.912282914768870079e-09,3.276318279114978683e-09,3.640353643461087288e-09,4.004389007807195893e-09,4.368424372153304911e-09,4.732459736499413930e-09,5.096495100845522948e-09,5.460530465191631966e-09,5.824565829537740985e-09,6.188601193883850003e-09,6.552636558229959021e-09,6.916671922576068040e-09,7.280707286922177058e-09,7.644742651268286076e-09,8.008778015614395095e-09,8.372813379960504113e-09,8.736848744306613131e-09,9.100884108652722150e-09,9.464919472998831168e-09,9.828954837344940186e-09,1.019299020169104920e-08,1.055702556603715822e-08,1.092106093038326724e-08,1.128509629472937626e-08,1.164913165907548528e-08,1.201316702342159430e-08,1.237720238776770331e-08,1.274123775211381233e-08,1.310527311645992135e-08,1.346930848080603037e-08,1.383334384515213939e-08,1.419737920949824841e-08,1.456141457384435742e-08,1.492544993819046479e-08,1.528948530253657215e-08,1.565352066688267952e-08,1.601755603122878688e-08,1.638159139557489424e-08,1.674562675992100161e-08,1.710966212426710897e-08,1.747369748861321634e-08,1.783773285295932370e-08,1.820176821730543106e-08,1.856580358165153843e-08,1.892983894599764579e-08,1.929387431034375316e-08,1.965790967468986052e-08,2.002194503903596788e-08,2.038598040338207525e-08,2.075001576772818261e-08,2.111405113207428998e-08,2.147808649642039734e-08,2.184212186076650470e-08,2.220615722511261207e-08,2.257019258945871943e-08,2.293422795380482680e-08 +0.000000000000000000e+00,1.820878404283733245e-10,3.641756808567466490e-10,5.462635212851199994e-10,7.283513617134934014e-10,9.104392021418668035e-10,1.092527042570240206e-09,1.274614882998613504e-09,1.456702723426986803e-09,1.638790563855360101e-09,1.820878404283733400e-09,2.002966244712106699e-09,2.185054085140479997e-09,2.367141925568853296e-09,2.549229765997226595e-09,2.731317606425599893e-09,2.913405446853973192e-09,3.095493287282346491e-09,3.277581127710719789e-09,3.459668968139093088e-09,3.641756808567466387e-09,3.823844648995840099e-09,4.005932489424214225e-09,4.188020329852588351e-09,4.370108170280962476e-09,4.552196010709336602e-09,4.734283851137710728e-09,4.916371691566084854e-09,5.098459531994458980e-09,5.280547372422833106e-09,5.462635212851207231e-09,5.644723053279581357e-09,5.826810893707955483e-09,6.008898734136329609e-09,6.190986574564703735e-09,6.373074414993077861e-09,6.555162255421451986e-09,6.737250095849826112e-09,6.919337936278200238e-09,7.101425776706574364e-09,7.283513617134948490e-09,7.465601457563322616e-09,7.647689297991696741e-09,7.829777138420070867e-09,8.011864978848444993e-09,8.193952819276819119e-09,8.376040659705193245e-09,8.558128500133567371e-09,8.740216340561941496e-09,8.922304180990315622e-09,9.104392021418689748e-09,9.286479861847063874e-09,9.468567702275438000e-09,9.650655542703812126e-09,9.832743383132186251e-09,1.001483122356056038e-08,1.019691906398893450e-08,1.037900690441730863e-08,1.056109474484568275e-08,1.074318258527405688e-08,1.092527042570243101e-08,1.110735826613080513e-08,1.128944610655917926e-08,1.147153394698755338e-08 +0.000000000000000000e+00,-2.120293061721895711e-11,-4.240586123443791421e-11,-6.360879185165686809e-11,-8.481172246887581550e-11,-1.060146530860947629e-10,-1.272175837033137103e-10,-1.484205143205326577e-10,-1.696234449377516052e-10,-1.908263755549705526e-10,-2.120293061721895000e-10,-2.332322367894084474e-10,-2.544351674066273690e-10,-2.756380980238462905e-10,-2.968410286410652121e-10,-3.180439592582841336e-10,-3.392468898755030552e-10,-3.604498204927219768e-10,-3.816527511099408983e-10,-4.028556817271598199e-10,-4.240586123443787415e-10,-4.452615429615976630e-10,-4.664644735788165846e-10,-4.876674041960355062e-10,-5.088703348132544277e-10,-5.300732654304733493e-10,-5.512761960476922708e-10,-5.724791266649111924e-10,-5.936820572821301140e-10,-6.148849878993490355e-10,-6.360879185165679571e-10,-6.572908491337868787e-10,-6.784937797510058002e-10,-6.996967103682247218e-10,-7.208996409854436433e-10,-7.421025716026625649e-10,-7.633055022198814865e-10,-7.845084328371004080e-10,-8.057113634543193296e-10,-8.269142940715382512e-10,-8.481172246887571727e-10,-8.693201553059760943e-10,-8.905230859231950159e-10,-9.117260165404139374e-10,-9.329289471576329624e-10,-9.541318777748518839e-10,-9.753348083920708055e-10,-9.965377390092897271e-10,-1.017740669626508649e-09,-1.038943600243727570e-09,-1.060146530860946492e-09,-1.081349461478165413e-09,-1.102552392095384335e-09,-1.123755322712603256e-09,-1.144958253329822178e-09,-1.166161183947041100e-09,-1.187364114564260021e-09,-1.208567045181478943e-09,-1.229769975798697864e-09,-1.250972906415916786e-09,-1.272175837033135707e-09,-1.293378767650354629e-09,-1.314581698267573551e-09,-1.335784628884792472e-09 +0.000000000000000000e+00,1.386253632084676435e-10,2.772507264169352870e-10,4.158760896254029564e-10,5.545014528338706774e-10,6.931268160423383985e-10,8.317521792508061196e-10,9.703775424592738406e-10,1.109002905667741562e-09,1.247628268876209283e-09,1.386253632084677004e-09,1.524878995293144725e-09,1.663504358501612446e-09,1.802129721710080167e-09,1.940755084918548095e-09,2.079380448127016229e-09,2.218005811335484364e-09,2.356631174543952499e-09,2.495256537752420633e-09,2.633881900960888768e-09,2.772507264169356903e-09,2.911132627377825037e-09,3.049757990586293172e-09,3.188383353794761307e-09,3.327008717003229441e-09,3.465634080211697576e-09,3.604259443420165711e-09,3.742884806628633845e-09,3.881510169837101980e-09,4.020135533045570115e-09,4.158760896254038249e-09,4.297386259462506384e-09,4.436011622670974519e-09,4.574636985879442653e-09,4.713262349087910788e-09,4.851887712296378923e-09,4.990513075504847057e-09,5.129138438713315192e-09,5.267763801921783326e-09,5.406389165130251461e-09,5.545014528338719596e-09,5.683639891547187730e-09,5.822265254755655865e-09,5.960890617964124000e-09,6.099515981172592134e-09,6.238141344381060269e-09,6.376766707589528404e-09,6.515392070797996538e-09,6.654017434006464673e-09,6.792642797214932808e-09,6.931268160423400942e-09,7.069893523631869077e-09,7.208518886840337212e-09,7.347144250048805346e-09,7.485769613257274308e-09,7.624394976465743270e-09,7.763020339674212232e-09,7.901645702882681194e-09,8.040271066091150155e-09,8.178896429299619117e-09,8.317521792508088079e-09,8.456147155716557041e-09,8.594772518925026003e-09,8.733397882133494965e-09 +0.000000000000000000e+00,-3.169011569442060745e-10,-6.338023138884121490e-10,-9.507034708326182753e-10,-1.267604627776824505e-09,-1.584505784721030734e-09,-1.901406941665236964e-09,-2.218308098609443401e-09,-2.535209255553649837e-09,-2.852110412497856273e-09,-3.169011569442062710e-09,-3.485912726386269146e-09,-3.802813883330475583e-09,-4.119715040274682019e-09,-4.436616197218888455e-09,-4.753517354163094892e-09,-5.070418511107301328e-09,-5.387319668051507765e-09,-5.704220824995714201e-09,-6.021121981939920637e-09,-6.338023138884127074e-09,-6.654924295828333510e-09,-6.971825452772539947e-09,-7.288726609716746383e-09,-7.605627766660952820e-09,-7.922528923605158429e-09,-8.239430080549364038e-09,-8.556331237493569647e-09,-8.873232394437775256e-09,-9.190133551381980866e-09,-9.507034708326186475e-09,-9.823935865270392084e-09,-1.014083702221459769e-08,-1.045773817915880330e-08,-1.077463933610300891e-08,-1.109154049304721452e-08,-1.140844164999142013e-08,-1.172534280693562574e-08,-1.204224396387983135e-08,-1.235914512082403696e-08,-1.267604627776824257e-08,-1.299294743471244818e-08,-1.330984859165665379e-08,-1.362674974860085939e-08,-1.394365090554506500e-08,-1.426055206248927061e-08,-1.457745321943347622e-08,-1.489435437637768183e-08,-1.521125553332188910e-08,-1.552815669026609636e-08,-1.584505784721030362e-08,-1.616195900415451089e-08,-1.647886016109871815e-08,-1.679576131804292541e-08,-1.711266247498713268e-08,-1.742956363193133994e-08,-1.774646478887554720e-08,-1.806336594581975447e-08,-1.838026710276396173e-08,-1.869716825970816899e-08,-1.901406941665237626e-08,-1.933097057359658352e-08,-1.964787173054079079e-08,-1.996477288748499805e-08 +0.000000000000000000e+00,4.084567736133704725e-10,8.169135472267409450e-10,1.225370320840111366e-09,1.633827094453481683e-09,2.042283868066851794e-09,2.450740641680221904e-09,2.859197415293592015e-09,3.267654188906962126e-09,3.676110962520332236e-09,4.084567736133701933e-09,4.493024509747071630e-09,4.901481283360441327e-09,5.309938056973811024e-09,5.718394830587180721e-09,6.126851604200550419e-09,6.535308377813920116e-09,6.943765151427289813e-09,7.352221925040659510e-09,7.760678698654029207e-09,8.169135472267398904e-09,8.577592245880768601e-09,8.986049019494138298e-09,9.394505793107507995e-09,9.802962566720877692e-09,1.021141934033424739e-08,1.061987611394761709e-08,1.102833288756098678e-08,1.143678966117435648e-08,1.184524643478772618e-08,1.225370320840109587e-08,1.266215998201446557e-08,1.307061675562783527e-08,1.347907352924120497e-08,1.388753030285457466e-08,1.429598707646794436e-08,1.470444385008131406e-08,1.511290062369468375e-08,1.552135739730805180e-08,1.592981417092141984e-08,1.633827094453478788e-08,1.674672771814815592e-08,1.715518449176152397e-08,1.756364126537489201e-08,1.797209803898826005e-08,1.838055481260162809e-08,1.878901158621499614e-08,1.919746835982836418e-08,1.960592513344173222e-08,2.001438190705510027e-08,2.042283868066846831e-08,2.083129545428183635e-08,2.123975222789520439e-08,2.164820900150857244e-08,2.205666577512194048e-08,2.246512254873530852e-08,2.287357932234867656e-08,2.328203609596204461e-08,2.369049286957541265e-08,2.409894964318878069e-08,2.450740641680214873e-08,2.491586319041551678e-08,2.532431996402888482e-08,2.573277673764225286e-08 +0.000000000000000000e+00,3.193829301271114599e-10,6.387658602542229198e-10,9.581487903813344313e-10,1.277531720508446046e-09,1.596914650635557661e-09,1.916297580762669276e-09,2.235680510889780684e-09,2.555063441016892093e-09,2.874446371144003501e-09,3.193829301271114909e-09,3.513212231398226317e-09,3.832595161525337725e-09,4.151978091652449134e-09,4.471361021779560542e-09,4.790743951906671950e-09,5.110126882033783358e-09,5.429509812160894766e-09,5.748892742288006174e-09,6.068275672415117583e-09,6.387658602542228991e-09,6.707041532669340399e-09,7.026424462796451807e-09,7.345807392923563215e-09,7.665190323050673796e-09,7.984573253177785205e-09,8.303956183304896613e-09,8.623339113432008021e-09,8.942722043559119429e-09,9.262104973686230837e-09,9.581487903813342245e-09,9.900870833940453654e-09,1.022025376406756506e-08,1.053963669419467647e-08,1.085901962432178788e-08,1.117840255444889929e-08,1.149778548457601069e-08,1.181716841470312210e-08,1.213655134483023351e-08,1.245593427495734492e-08,1.277531720508445633e-08,1.309470013521156774e-08,1.341408306533867914e-08,1.373346599546579055e-08,1.405284892559290196e-08,1.437223185572001337e-08,1.469161478584712478e-08,1.501099771597423618e-08,1.533038064610134759e-08,1.564976357622845900e-08,1.596914650635557041e-08,1.628852943648268182e-08,1.660791236660979323e-08,1.692729529673690463e-08,1.724667822686401604e-08,1.756606115699112745e-08,1.788544408711823886e-08,1.820482701724535027e-08,1.852420994737246167e-08,1.884359287749957308e-08,1.916297580762668449e-08,1.948235873775379590e-08,1.980174166788090731e-08,2.012112459800801872e-08 +0.000000000000000000e+00,4.767414846415049348e-10,9.534829692830098697e-10,1.430224453924514805e-09,1.906965938566019739e-09,2.383707423207524674e-09,2.860448907849029609e-09,3.337190392490534544e-09,3.813931877132039479e-09,4.290673361773544000e-09,4.767414846415048521e-09,5.244156331056553042e-09,5.720897815698057564e-09,6.197639300339562085e-09,6.674380784981066606e-09,7.151122269622571128e-09,7.627863754264075649e-09,8.104605238905580170e-09,8.581346723547084691e-09,9.058088208188589213e-09,9.534829692830093734e-09,1.001157117747159826e-08,1.048831266211310278e-08,1.096505414675460730e-08,1.144179563139611182e-08,1.191853711603761634e-08,1.239527860067912086e-08,1.287202008532062538e-08,1.334876156996212990e-08,1.382550305460363443e-08,1.430224453924513895e-08,1.477898602388664347e-08,1.525572750852814799e-08,1.573246899316965086e-08,1.620921047781115372e-08,1.668595196245265659e-08,1.716269344709415946e-08,1.763943493173566232e-08,1.811617641637716519e-08,1.859291790101866806e-08,1.906965938566017092e-08,1.954640087030167379e-08,2.002314235494317666e-08,2.049988383958467952e-08,2.097662532422618239e-08,2.145336680886768526e-08,2.193010829350918813e-08,2.240684977815069099e-08,2.288359126279219386e-08,2.336033274743369673e-08,2.383707423207519959e-08,2.431381571671670246e-08,2.479055720135820533e-08,2.526729868599970819e-08,2.574404017064121106e-08,2.622078165528271393e-08,2.669752313992421679e-08,2.717426462456571966e-08,2.765100610920722253e-08,2.812774759384872539e-08,2.860448907849022826e-08,2.908123056313173113e-08,2.955797204777323400e-08,3.003471353241473686e-08 +0.000000000000000000e+00,-4.084567736170907690e-10,-8.169135472341815380e-10,-1.225370320851272307e-09,-1.633827094468363076e-09,-2.042283868085453845e-09,-2.450740641702544614e-09,-2.859197415319635383e-09,-3.267654188936726152e-09,-3.676110962553816921e-09,-4.084567736170907690e-09,-4.493024509787998873e-09,-4.901481283405090055e-09,-5.309938057022181238e-09,-5.718394830639272421e-09,-6.126851604256363603e-09,-6.535308377873454786e-09,-6.943765151490545968e-09,-7.352221925107637151e-09,-7.760678698724728334e-09,-8.169135472341820343e-09,-8.577592245958912353e-09,-8.986049019576004363e-09,-9.394505793193096373e-09,-9.802962566810188383e-09,-1.021141934042728039e-08,-1.061987611404437240e-08,-1.102833288766146441e-08,-1.143678966127855642e-08,-1.184524643489564843e-08,-1.225370320851274044e-08,-1.266215998212983245e-08,-1.307061675574692446e-08,-1.347907352936401647e-08,-1.388753030298110848e-08,-1.429598707659820049e-08,-1.470444385021529250e-08,-1.511290062383238616e-08,-1.552135739744947983e-08,-1.592981417106657349e-08,-1.633827094468366716e-08,-1.674672771830076082e-08,-1.715518449191785448e-08,-1.756364126553494815e-08,-1.797209803915204181e-08,-1.838055481276913548e-08,-1.878901158638622914e-08,-1.919746836000332281e-08,-1.960592513362041647e-08,-2.001438190723751013e-08,-2.042283868085460380e-08,-2.083129545447169746e-08,-2.123975222808879113e-08,-2.164820900170588479e-08,-2.205666577532297845e-08,-2.246512254894007212e-08,-2.287357932255716578e-08,-2.328203609617425945e-08,-2.369049286979135311e-08,-2.409894964340844678e-08,-2.450740641702554044e-08,-2.491586319064263410e-08,-2.532431996425972777e-08,-2.573277673787682143e-08 +0.000000000000000000e+00,-3.193829301379413737e-10,-6.387658602758827475e-10,-9.581487904138242246e-10,-1.277531720551765702e-09,-1.596914650689707179e-09,-1.916297580827648449e-09,-2.235680510965589720e-09,-2.555063441103530990e-09,-2.874446371241472260e-09,-3.193829301379413531e-09,-3.513212231517354801e-09,-3.832595161655296071e-09,-4.151978091793237755e-09,-4.471361021931179439e-09,-4.790743952069121123e-09,-5.110126882207062807e-09,-5.429509812345004491e-09,-5.748892742482946175e-09,-6.068275672620887859e-09,-6.387658602758829543e-09,-6.707041532896771227e-09,-7.026424463034712911e-09,-7.345807393172654595e-09,-7.665190323310597106e-09,-7.984573253448539617e-09,-8.303956183586482128e-09,-8.623339113724424639e-09,-8.942722043862367150e-09,-9.262104974000309662e-09,-9.581487904138252173e-09,-9.900870834276194684e-09,-1.022025376441413719e-08,-1.053963669455207971e-08,-1.085901962469002222e-08,-1.117840255482796473e-08,-1.149778548496590724e-08,-1.181716841510384975e-08,-1.213655134524179226e-08,-1.245593427537973477e-08,-1.277531720551767728e-08,-1.309470013565561979e-08,-1.341408306579356231e-08,-1.373346599593150482e-08,-1.405284892606944733e-08,-1.437223185620738984e-08,-1.469161478634533235e-08,-1.501099771648327652e-08,-1.533038064662122068e-08,-1.564976357675916485e-08,-1.596914650689710901e-08,-1.628852943703505318e-08,-1.660791236717299734e-08,-1.692729529731094151e-08,-1.724667822744888567e-08,-1.756606115758682984e-08,-1.788544408772477401e-08,-1.820482701786271817e-08,-1.852420994800066234e-08,-1.884359287813860650e-08,-1.916297580827655067e-08,-1.948235873841449483e-08,-1.980174166855243900e-08,-2.012112459869038316e-08 +0.000000000000000000e+00,-4.767414846343058786e-10,-9.534829692686117571e-10,-1.430224453902917532e-09,-1.906965938537223101e-09,-2.383707423171528669e-09,-2.860448907805834237e-09,-3.337190392440139806e-09,-3.813931877074445374e-09,-4.290673361708750943e-09,-4.767414846343056511e-09,-5.244156330977362079e-09,-5.720897815611667648e-09,-6.197639300245973216e-09,-6.674380784880278785e-09,-7.151122269514584353e-09,-7.627863754148889094e-09,-8.104605238783193835e-09,-8.581346723417498576e-09,-9.058088208051803318e-09,-9.534829692686108059e-09,-1.001157117732041280e-08,-1.048831266195471754e-08,-1.096505414658902228e-08,-1.144179563122332702e-08,-1.191853711585763176e-08,-1.239527860049193651e-08,-1.287202008512624125e-08,-1.334876156976054599e-08,-1.382550305439485073e-08,-1.430224453902915547e-08,-1.477898602366346021e-08,-1.525572750829776495e-08,-1.573246899293207135e-08,-1.620921047756637774e-08,-1.668595196220068414e-08,-1.716269344683499054e-08,-1.763943493146929693e-08,-1.811617641610360333e-08,-1.859291790073790972e-08,-1.906965938537221612e-08,-1.954640087000652251e-08,-2.002314235464082891e-08,-2.049988383927513530e-08,-2.097662532390944170e-08,-2.145336680854374810e-08,-2.193010829317805449e-08,-2.240684977781236089e-08,-2.288359126244666728e-08,-2.336033274708097368e-08,-2.383707423171528007e-08,-2.431381571634958647e-08,-2.479055720098389286e-08,-2.526729868561819926e-08,-2.574404017025250566e-08,-2.622078165488681205e-08,-2.669752313952111845e-08,-2.717426462415542484e-08,-2.765100610878973124e-08,-2.812774759342403763e-08,-2.860448907805834403e-08,-2.908123056269265042e-08,-2.955797204732695682e-08,-3.003471353196126322e-08 +0.000000000000000000e+00,5.038904740741174573e-10,1.007780948148234915e-09,1.511671422222352372e-09,2.015561896296469829e-09,2.519452370370587287e-09,3.023342844444704744e-09,3.527233318518822201e-09,4.031123792592939658e-09,4.535014266667056702e-09,5.038904740741173746e-09,5.542795214815290790e-09,6.046685688889407833e-09,6.550576162963524877e-09,7.054466637037641921e-09,7.558357111111758964e-09,8.062247585185876008e-09,8.566138059259993052e-09,9.070028533334110096e-09,9.573919007408227139e-09,1.007780948148234418e-08,1.058169995555646123e-08,1.108559042963057827e-08,1.158948090370469531e-08,1.209337137777881236e-08,1.259726185185292940e-08,1.310115232592704645e-08,1.360504280000116349e-08,1.410893327407528053e-08,1.461282374814939758e-08,1.511671422222351462e-08,1.562060469629763166e-08,1.612449517037174871e-08,1.662838564444586575e-08,1.713227611851998280e-08,1.763616659259409984e-08,1.814005706666821688e-08,1.864394754074233393e-08,1.914783801481645097e-08,1.965172848889056801e-08,2.015561896296468506e-08,2.065950943703880210e-08,2.116339991111291914e-08,2.166729038518703619e-08,2.217118085926115323e-08,2.267507133333527028e-08,2.317896180740938732e-08,2.368285228148350436e-08,2.418674275555762141e-08,2.469063322963173845e-08,2.519452370370585549e-08,2.569841417777997254e-08,2.620230465185408958e-08,2.670619512592820663e-08,2.721008560000232367e-08,2.771397607407644071e-08,2.821786654815055776e-08,2.872175702222467480e-08,2.922564749629879184e-08,2.972953797037290889e-08,3.023342844444702262e-08,3.073731891852113305e-08,3.124120939259524348e-08,3.174509986666935390e-08 +0.000000000000000000e+00,4.574937838713745539e-10,9.149875677427491077e-10,1.372481351614123662e-09,1.829975135485498215e-09,2.287468919356872769e-09,2.744962703228247323e-09,3.202456487099621877e-09,3.659950270970996431e-09,4.117444054842371398e-09,4.574937838713746366e-09,5.032431622585121333e-09,5.489925406456496301e-09,5.947419190327871268e-09,6.404912974199246236e-09,6.862406758070621203e-09,7.319900541941996171e-09,7.777394325813371138e-09,8.234888109684746105e-09,8.692381893556121073e-09,9.149875677427496040e-09,9.607369461298871008e-09,1.006486324517024598e-08,1.052235702904162094e-08,1.097985081291299591e-08,1.143734459678437088e-08,1.189483838065574585e-08,1.235233216452712081e-08,1.280982594839849578e-08,1.326731973226987075e-08,1.372481351614124571e-08,1.418230730001262068e-08,1.463980108388399565e-08,1.509729486775537062e-08,1.555478865162674558e-08,1.601228243549812055e-08,1.646977621936949552e-08,1.692727000324087049e-08,1.738476378711224545e-08,1.784225757098362042e-08,1.829975135485499539e-08,1.875724513872637036e-08,1.921473892259774532e-08,1.967223270646912029e-08,2.012972649034049526e-08,2.058722027421187023e-08,2.104471405808324519e-08,2.150220784195462016e-08,2.195970162582599513e-08,2.241719540969737010e-08,2.287468919356874506e-08,2.333218297744012003e-08,2.378967676131149500e-08,2.424717054518286997e-08,2.470466432905424493e-08,2.516215811292561990e-08,2.561965189679699487e-08,2.607714568066836984e-08,2.653463946453974480e-08,2.699213324841111977e-08,2.744962703228249474e-08,2.790712081615386971e-08,2.836461460002524467e-08,2.882210838389661964e-08 +0.000000000000000000e+00,5.502506296932287494e-10,1.100501259386457499e-09,1.650751889079686145e-09,2.201002518772914584e-09,2.751253148466143023e-09,3.301503778159371462e-09,3.851754407852599901e-09,4.402005037545828341e-09,4.952255667239056780e-09,5.502506296932285219e-09,6.052756926625513658e-09,6.603007556318742097e-09,7.153258186011970537e-09,7.703508815705198149e-09,8.253759445398426588e-09,8.804010075091655027e-09,9.354260704784883466e-09,9.904511334478111905e-09,1.045476196417134034e-08,1.100501259386456878e-08,1.155526322355779722e-08,1.210551385325102566e-08,1.265576448294425410e-08,1.320601511263748254e-08,1.375626574233071098e-08,1.430651637202393942e-08,1.485676700171716786e-08,1.540701763141039630e-08,1.595726826110362474e-08,1.650751889079685318e-08,1.705776952049008161e-08,1.760802015018331005e-08,1.815827077987653849e-08,1.870852140956976693e-08,1.925877203926299537e-08,1.980902266895622381e-08,2.035927329864945225e-08,2.090952392834268069e-08,2.145977455803590913e-08,2.201002518772913757e-08,2.256027581742236601e-08,2.311052644711559445e-08,2.366077707680882288e-08,2.421102770650205132e-08,2.476127833619527976e-08,2.531152896588850820e-08,2.586177959558173664e-08,2.641203022527496508e-08,2.696228085496819352e-08,2.751253148466142196e-08,2.806278211435465040e-08,2.861303274404787884e-08,2.916328337374110728e-08,2.971353400343433572e-08,3.026378463312756415e-08,3.081403526282079259e-08,3.136428589251402103e-08,3.191453652220724947e-08,3.246478715190047791e-08,3.301503778159370635e-08,3.356528841128693479e-08,3.411553904098016323e-08,3.466578967067339167e-08 +0.000000000000000000e+00,-5.038904740665471003e-10,-1.007780948133094201e-09,-1.511671422199641301e-09,-2.015561896266188401e-09,-2.519452370332735502e-09,-3.023342844399282602e-09,-3.527233318465829702e-09,-4.031123792532376803e-09,-4.535014266598923489e-09,-5.038904740665470176e-09,-5.542795214732016863e-09,-6.046685688798563550e-09,-6.550576162865110236e-09,-7.054466636931656923e-09,-7.558357110998203610e-09,-8.062247585064750297e-09,-8.566138059131296983e-09,-9.070028533197843670e-09,-9.573919007264390357e-09,-1.007780948133093704e-08,-1.058169995539748373e-08,-1.108559042946403042e-08,-1.158948090353057710e-08,-1.209337137759712379e-08,-1.259726185166367048e-08,-1.310115232573021716e-08,-1.360504279979676385e-08,-1.410893327386331054e-08,-1.461282374792985722e-08,-1.511671422199640391e-08,-1.562060469606295060e-08,-1.612449517012949728e-08,-1.662838564419604397e-08,-1.713227611826259066e-08,-1.763616659232913735e-08,-1.814005706639568403e-08,-1.864394754046223072e-08,-1.914783801452877741e-08,-1.965172848859532409e-08,-2.015561896266187078e-08,-2.065950943672841747e-08,-2.116339991079496415e-08,-2.166729038486151084e-08,-2.217118085892805753e-08,-2.267507133299460421e-08,-2.317896180706115090e-08,-2.368285228112769759e-08,-2.418674275519424427e-08,-2.469063322926079096e-08,-2.519452370332733765e-08,-2.569841417739388433e-08,-2.620230465146043102e-08,-2.670619512552697771e-08,-2.721008559959352439e-08,-2.771397607366007108e-08,-2.821786654772661777e-08,-2.872175702179316445e-08,-2.922564749585971114e-08,-2.972953796992625783e-08,-3.023342844399280121e-08,-3.073731891805934127e-08,-3.124120939212588134e-08,-3.174509986619242141e-08 +0.000000000000000000e+00,-4.574937838690233964e-10,-9.149875677380467927e-10,-1.372481351607070293e-09,-1.829975135476093792e-09,-2.287468919345117292e-09,-2.744962703214140585e-09,-3.202456487083163878e-09,-3.659950270952187171e-09,-4.117444054821210464e-09,-4.574937838690233757e-09,-5.032431622559257050e-09,-5.489925406428280343e-09,-5.947419190297303636e-09,-6.404912974166326929e-09,-6.862406758035350222e-09,-7.319900541904373515e-09,-7.777394325773396808e-09,-8.234888109642420928e-09,-8.692381893511445048e-09,-9.149875677380469168e-09,-9.607369461249493288e-09,-1.006486324511851741e-08,-1.052235702898754153e-08,-1.097985081285656565e-08,-1.143734459672558977e-08,-1.189483838059461389e-08,-1.235233216446363801e-08,-1.280982594833266213e-08,-1.326731973220168625e-08,-1.372481351607071037e-08,-1.418230729993973449e-08,-1.463980108380875861e-08,-1.509729486767778108e-08,-1.555478865154680354e-08,-1.601228243541582601e-08,-1.646977621928484847e-08,-1.692727000315387094e-08,-1.738476378702289340e-08,-1.784225757089191587e-08,-1.829975135476093834e-08,-1.875724513862996080e-08,-1.921473892249898327e-08,-1.967223270636800573e-08,-2.012972649023702820e-08,-2.058722027410605067e-08,-2.104471405797507313e-08,-2.150220784184409560e-08,-2.195970162571311806e-08,-2.241719540958214053e-08,-2.287468919345116299e-08,-2.333218297732018546e-08,-2.378967676118920793e-08,-2.424717054505823039e-08,-2.470466432892725286e-08,-2.516215811279627532e-08,-2.561965189666529779e-08,-2.607714568053432025e-08,-2.653463946440334272e-08,-2.699213324827236519e-08,-2.744962703214138765e-08,-2.790712081601041012e-08,-2.836461459987943258e-08,-2.882210838374845505e-08 +0.000000000000000000e+00,-5.502506296729901213e-10,-1.100501259345980243e-09,-1.650751889018970261e-09,-2.201002518691960072e-09,-2.751253148364949883e-09,-3.301503778037939694e-09,-3.851754407710929505e-09,-4.402005037383919316e-09,-4.952255667056909127e-09,-5.502506296729898939e-09,-6.052756926402888750e-09,-6.603007556075878561e-09,-7.153258185748868372e-09,-7.703508815421859010e-09,-8.253759445094849649e-09,-8.804010074767840287e-09,-9.354260704440830925e-09,-9.904511334113821563e-09,-1.045476196378681220e-08,-1.100501259345980284e-08,-1.155526322313279348e-08,-1.210551385280578412e-08,-1.265576448247877476e-08,-1.320601511215176539e-08,-1.375626574182475603e-08,-1.430651637149774667e-08,-1.485676700117073731e-08,-1.540701763084372795e-08,-1.595726826051671693e-08,-1.650751889018970591e-08,-1.705776951986269490e-08,-1.760802014953568388e-08,-1.815827077920867287e-08,-1.870852140888166185e-08,-1.925877203855465083e-08,-1.980902266822763982e-08,-2.035927329790062880e-08,-2.090952392757361779e-08,-2.145977455724660677e-08,-2.201002518691959575e-08,-2.256027581659258474e-08,-2.311052644626557372e-08,-2.366077707593856271e-08,-2.421102770561155169e-08,-2.476127833528454067e-08,-2.531152896495752966e-08,-2.586177959463051864e-08,-2.641203022430350763e-08,-2.696228085397649661e-08,-2.751253148364948559e-08,-2.806278211332247458e-08,-2.861303274299546356e-08,-2.916328337266845255e-08,-2.971353400234144153e-08,-3.026378463201443051e-08,-3.081403526168742281e-08,-3.136428589136041510e-08,-3.191453652103340739e-08,-3.246478715070639968e-08,-3.301503778037939198e-08,-3.356528841005238427e-08,-3.411553903972537656e-08,-3.466578966939836885e-08 +0.000000000000000000e+00,5.607325323119196501e-10,1.121465064623839300e-09,1.682197596935758950e-09,2.242930129247678600e-09,2.803662661559598250e-09,3.364395193871517900e-09,3.925127726183437551e-09,4.485860258495357201e-09,5.046592790807276851e-09,5.607325323119196501e-09,6.168057855431116151e-09,6.728790387743035801e-09,7.289522920054955451e-09,7.850255452366875101e-09,8.410987984678794751e-09,8.971720516990714401e-09,9.532453049302634051e-09,1.009318558161455370e-08,1.065391811392647335e-08,1.121465064623839300e-08,1.177538317855031265e-08,1.233611571086223230e-08,1.289684824317415195e-08,1.345758077548607160e-08,1.401831330779799125e-08,1.457904584010991090e-08,1.513977837242182890e-08,1.570051090473374689e-08,1.626124343704566489e-08,1.682197596935758288e-08,1.738270850166950088e-08,1.794344103398141888e-08,1.850417356629333687e-08,1.906490609860525487e-08,1.962563863091717286e-08,2.018637116322909086e-08,2.074710369554100885e-08,2.130783622785292685e-08,2.186856876016484485e-08,2.242930129247676284e-08,2.299003382478868084e-08,2.355076635710059883e-08,2.411149888941251683e-08,2.467223142172443482e-08,2.523296395403635282e-08,2.579369648634827082e-08,2.635442901866018881e-08,2.691516155097210681e-08,2.747589408328402480e-08,2.803662661559594280e-08,2.859735914790786080e-08,2.915809168021977879e-08,2.971882421253169679e-08,3.027955674484361809e-08,3.084028927715553940e-08,3.140102180946746070e-08,3.196175434177938200e-08,3.252248687409130331e-08,3.308321940640322461e-08,3.364395193871514592e-08,3.420468447102706722e-08,3.476541700333898853e-08,3.532614953565090983e-08 +0.000000000000000000e+00,5.319636737573304167e-10,1.063927347514660833e-09,1.595891021271991147e-09,2.127854695029321253e-09,2.659818368786651360e-09,3.191782042543981466e-09,3.723745716301311573e-09,4.255709390058641679e-09,4.787673063815971372e-09,5.319636737573301065e-09,5.851600411330630758e-09,6.383564085087960451e-09,6.915527758845290143e-09,7.447491432602619836e-09,7.979455106359949529e-09,8.511418780117278395e-09,9.043382453874607261e-09,9.575346127631936126e-09,1.010730980138926499e-08,1.063927347514659386e-08,1.117123714890392272e-08,1.170320082266125159e-08,1.223516449641858045e-08,1.276712817017590932e-08,1.329909184393323819e-08,1.383105551769056705e-08,1.436301919144789592e-08,1.489498286520522478e-08,1.542694653896255365e-08,1.595891021271988251e-08,1.649087388647721138e-08,1.702283756023454025e-08,1.755480123399186911e-08,1.808676490774919798e-08,1.861872858150652684e-08,1.915069225526385571e-08,1.968265592902118457e-08,2.021461960277851344e-08,2.074658327653584231e-08,2.127854695029317117e-08,2.181051062405050004e-08,2.234247429780782890e-08,2.287443797156515777e-08,2.340640164532248663e-08,2.393836531907981550e-08,2.447032899283714437e-08,2.500229266659447323e-08,2.553425634035180210e-08,2.606622001410913096e-08,2.659818368786645983e-08,2.713014736162378869e-08,2.766211103538111756e-08,2.819407470913844643e-08,2.872603838289577529e-08,2.925800205665310416e-08,2.978996573041043302e-08,3.032192940416775858e-08,3.085389307792508745e-08,3.138585675168241631e-08,3.191782042543974518e-08,3.244978409919707404e-08,3.298174777295440291e-08,3.351371144671173177e-08 +0.000000000000000000e+00,5.940329010403169934e-10,1.188065802080633987e-09,1.782098703120951084e-09,2.376131604161268387e-09,2.970164505201585691e-09,3.564197406241902994e-09,4.158230307282220712e-09,4.752263208322538429e-09,5.346296109362856146e-09,5.940329010403173863e-09,6.534361911443491580e-09,7.128394812483809298e-09,7.722427713524127015e-09,8.316460614564444732e-09,8.910493515604762449e-09,9.504526416645080166e-09,1.009855931768539788e-08,1.069259221872571560e-08,1.128662511976603332e-08,1.188065802080635104e-08,1.247469092184666875e-08,1.306872382288698647e-08,1.366275672392730419e-08,1.425678962496762190e-08,1.485082252600793962e-08,1.544485542704825734e-08,1.603888832808857671e-08,1.663292122912889608e-08,1.722695413016921545e-08,1.782098703120953482e-08,1.841501993224985420e-08,1.900905283329017357e-08,1.960308573433049294e-08,2.019711863537081231e-08,2.079115153641113168e-08,2.138518443745145105e-08,2.197921733849177043e-08,2.257325023953208980e-08,2.316728314057240917e-08,2.376131604161272854e-08,2.435534894265304791e-08,2.494938184369336728e-08,2.554341474473368665e-08,2.613744764577400603e-08,2.673148054681432540e-08,2.732551344785464477e-08,2.791954634889496414e-08,2.851357924993528351e-08,2.910761215097560288e-08,2.970164505201592226e-08,3.029567795305624163e-08,3.088971085409656100e-08,3.148374375513688037e-08,3.207777665617719974e-08,3.267180955721751911e-08,3.326584245825783849e-08,3.385987535929815786e-08,3.445390826033847723e-08,3.504794116137879660e-08,3.564197406241911597e-08,3.623600696345943534e-08,3.683003986449975471e-08,3.742407276554007409e-08 +0.000000000000000000e+00,-5.607325322962264829e-10,-1.121465064592452966e-09,-1.682197596888679552e-09,-2.242930129184906345e-09,-2.803662661481133138e-09,-3.364395193777359931e-09,-3.925127726073586311e-09,-4.485860258369812690e-09,-5.046592790666039070e-09,-5.607325322962265449e-09,-6.168057855258491829e-09,-6.728790387554718208e-09,-7.289522919850944588e-09,-7.850255452147170967e-09,-8.410987984443397347e-09,-8.971720516739623726e-09,-9.532453049035850106e-09,-1.009318558133207649e-08,-1.065391811362830286e-08,-1.121465064592452924e-08,-1.177538317822075562e-08,-1.233611571051698200e-08,-1.289684824281320838e-08,-1.345758077510943476e-08,-1.401831330740566114e-08,-1.457904583970188752e-08,-1.513977837199811390e-08,-1.570051090429433863e-08,-1.626124343659056335e-08,-1.682197596888678808e-08,-1.738270850118301280e-08,-1.794344103347923753e-08,-1.850417356577546225e-08,-1.906490609807168698e-08,-1.962563863036791170e-08,-2.018637116266413643e-08,-2.074710369496036115e-08,-2.130783622725658588e-08,-2.186856875955281060e-08,-2.242930129184903533e-08,-2.299003382414526005e-08,-2.355076635644148478e-08,-2.411149888873770950e-08,-2.467223142103393423e-08,-2.523296395333015895e-08,-2.579369648562638368e-08,-2.635442901792260840e-08,-2.691516155021883313e-08,-2.747589408251505785e-08,-2.803662661481128258e-08,-2.859735914710750730e-08,-2.915809167940373203e-08,-2.971882421169995675e-08,-3.027955674399618148e-08,-3.084028927629240620e-08,-3.140102180858863093e-08,-3.196175434088485565e-08,-3.252248687318108038e-08,-3.308321940547730511e-08,-3.364395193777352983e-08,-3.420468447006975456e-08,-3.476541700236597928e-08,-3.532614953466220401e-08 +0.000000000000000000e+00,-5.319636737453382623e-10,-1.063927347490676525e-09,-1.595891021236014787e-09,-2.127854694981353049e-09,-2.659818368726691105e-09,-3.191782042472029160e-09,-3.723745716217367216e-09,-4.255709389962705272e-09,-4.787673063708043327e-09,-5.319636737453381383e-09,-5.851600411198719438e-09,-6.383564084944057494e-09,-6.915527758689395549e-09,-7.447491432434733605e-09,-7.979455106180070833e-09,-8.511418779925408889e-09,-9.043382453670746944e-09,-9.575346127416085000e-09,-1.010730980116142306e-08,-1.063927347490676111e-08,-1.117123714865209917e-08,-1.170320082239743722e-08,-1.223516449614277528e-08,-1.276712816988811333e-08,-1.329909184363345139e-08,-1.383105551737878944e-08,-1.436301919112412750e-08,-1.489498286486946556e-08,-1.542694653861480361e-08,-1.595891021236014167e-08,-1.649087388610547972e-08,-1.702283755985081778e-08,-1.755480123359615583e-08,-1.808676490734149389e-08,-1.861872858108683194e-08,-1.915069225483217000e-08,-1.968265592857750806e-08,-2.021461960232284611e-08,-2.074658327606818417e-08,-2.127854694981352222e-08,-2.181051062355886028e-08,-2.234247429730419833e-08,-2.287443797104953639e-08,-2.340640164479487444e-08,-2.393836531854021250e-08,-2.447032899228555056e-08,-2.500229266603088861e-08,-2.553425633977622667e-08,-2.606622001352156472e-08,-2.659818368726690278e-08,-2.713014736101224083e-08,-2.766211103475757889e-08,-2.819407470850291694e-08,-2.872603838224825500e-08,-2.925800205599359306e-08,-2.978996572973893111e-08,-3.032192940348426917e-08,-3.085389307722960722e-08,-3.138585675097494528e-08,-3.191782042472028333e-08,-3.244978409846562139e-08,-3.298174777221095944e-08,-3.351371144595629750e-08 +0.000000000000000000e+00,-5.940329010113806646e-10,-1.188065802022761329e-09,-1.782098703034141994e-09,-2.376131604045522659e-09,-2.970164505056903116e-09,-3.564197406068283574e-09,-4.158230307079664032e-09,-4.752263208091044490e-09,-5.346296109102424948e-09,-5.940329010113805405e-09,-6.534361911125185863e-09,-7.128394812136566321e-09,-7.722427713147946779e-09,-8.316460614159328064e-09,-8.910493515170709349e-09,-9.504526416182090634e-09,-1.009855931719347192e-08,-1.069259221820485320e-08,-1.128662511921623449e-08,-1.188065802022761577e-08,-1.247469092123899706e-08,-1.306872382225037834e-08,-1.366275672326175963e-08,-1.425678962427314091e-08,-1.485082252528452220e-08,-1.544485542629590348e-08,-1.603888832730728477e-08,-1.663292122831866605e-08,-1.722695412933004734e-08,-1.782098703034142862e-08,-1.841501993135280991e-08,-1.900905283236419119e-08,-1.960308573337557248e-08,-2.019711863438695376e-08,-2.079115153539833505e-08,-2.138518443640971633e-08,-2.197921733742109762e-08,-2.257325023843247890e-08,-2.316728313944386019e-08,-2.376131604045524147e-08,-2.435534894146662276e-08,-2.494938184247800404e-08,-2.554341474348938533e-08,-2.613744764450076661e-08,-2.673148054551214790e-08,-2.732551344652352918e-08,-2.791954634753491047e-08,-2.851357924854629175e-08,-2.910761214955767304e-08,-2.970164505056905432e-08,-3.029567795158043892e-08,-3.088971085259182682e-08,-3.148374375360321472e-08,-3.207777665461460263e-08,-3.267180955562599053e-08,-3.326584245663737843e-08,-3.385987535764876633e-08,-3.445390825866015424e-08,-3.504794115967154214e-08,-3.564197406068293004e-08,-3.623600696169431794e-08,-3.683003986270570585e-08,-3.742407276371709375e-08 +0.000000000000000000e+00,5.998855294209144541e-10,1.199771058841828908e-09,1.799656588262743362e-09,2.399542117683657816e-09,2.999427647104572477e-09,3.599313176525487138e-09,4.199198705946401799e-09,4.799084235367316460e-09,5.398969764788231121e-09,5.998855294209145782e-09,6.598740823630060443e-09,7.198626353050975103e-09,7.798511882471889764e-09,8.398397411892803598e-09,8.998282941313717432e-09,9.598168470734631265e-09,1.019805400015554510e-08,1.079793952957645893e-08,1.139782505899737277e-08,1.199771058841828660e-08,1.259759611783920043e-08,1.319748164726011427e-08,1.379736717668102810e-08,1.439725270610194193e-08,1.499713823552285411e-08,1.559702376494376629e-08,1.619690929436467847e-08,1.679679482378559065e-08,1.739668035320650283e-08,1.799656588262741501e-08,1.859645141204832719e-08,1.919633694146923937e-08,1.979622247089015155e-08,2.039610800031106373e-08,2.099599352973197591e-08,2.159587905915288809e-08,2.219576458857380027e-08,2.279565011799471245e-08,2.339553564741562463e-08,2.399542117683653680e-08,2.459530670625744898e-08,2.519519223567836116e-08,2.579507776509927334e-08,2.639496329452018552e-08,2.699484882394109770e-08,2.759473435336200988e-08,2.819461988278292206e-08,2.879450541220383424e-08,2.939439094162474642e-08,2.999427647104565529e-08,3.059416200046656416e-08,3.119404752988747303e-08,3.179393305930838190e-08,3.239381858872929077e-08,3.299370411815019964e-08,3.359358964757110851e-08,3.419347517699201738e-08,3.479336070641292625e-08,3.539324623583383512e-08,3.599313176525474400e-08,3.659301729467565287e-08,3.719290282409656174e-08,3.779278835351747061e-08 +0.000000000000000000e+00,5.799948531157362246e-10,1.159989706231472449e-09,1.739984559347208570e-09,2.319979412462944485e-09,2.899974265578680399e-09,3.479969118694416314e-09,4.059963971810152642e-09,4.639958824925888970e-09,5.219953678041625297e-09,5.799948531157361625e-09,6.379943384273097953e-09,6.959938237388834281e-09,7.539933090504570609e-09,8.119927943620306937e-09,8.699922796736043265e-09,9.279917649851779593e-09,9.859912502967515921e-09,1.043990735608325225e-08,1.101990220919898858e-08,1.159989706231472491e-08,1.217989191543046123e-08,1.275988676854619756e-08,1.333988162166193389e-08,1.391987647477767022e-08,1.449987132789340655e-08,1.507986618100914453e-08,1.565986103412488086e-08,1.623985588724061718e-08,1.681985074035635351e-08,1.739984559347208984e-08,1.797984044658782617e-08,1.855983529970356250e-08,1.913983015281929882e-08,1.971982500593503515e-08,2.029981985905077148e-08,2.087981471216650781e-08,2.145980956528224414e-08,2.203980441839798046e-08,2.261979927151371679e-08,2.319979412462945312e-08,2.377978897774518945e-08,2.435978383086092578e-08,2.493977868397666210e-08,2.551977353709239843e-08,2.609976839020813476e-08,2.667976324332387109e-08,2.725975809643960742e-08,2.783975294955534374e-08,2.841974780267108007e-08,2.899974265578681640e-08,2.957973750890255273e-08,3.015973236201828906e-08,3.073972721513402538e-08,3.131972206824976171e-08,3.189971692136549804e-08,3.247971177448123437e-08,3.305970662759697070e-08,3.363970148071270702e-08,3.421969633382844335e-08,3.479969118694417968e-08,3.537968604005991601e-08,3.595968089317565233e-08,3.653967574629138866e-08 +0.000000000000000000e+00,6.258751185316615505e-10,1.251750237063323101e-09,1.877625355594984755e-09,2.503500474126646616e-09,3.129375592658308477e-09,3.755250711189970337e-09,4.381125829721631784e-09,5.007000948253293232e-09,5.632876066784954679e-09,6.258751185316616126e-09,6.884626303848277573e-09,7.510501422379939020e-09,8.136376540911600467e-09,8.762251659443261914e-09,9.388126777974923362e-09,1.001400189650658481e-08,1.063987701503824626e-08,1.126575213356990770e-08,1.189162725210156915e-08,1.251750237063323060e-08,1.314337748916489204e-08,1.376925260769655349e-08,1.439512772622821494e-08,1.502100284475987473e-08,1.564687796329153287e-08,1.627275308182319101e-08,1.689862820035484915e-08,1.752450331888650729e-08,1.815037843741816542e-08,1.877625355594982356e-08,1.940212867448148170e-08,2.002800379301313984e-08,2.065387891154479798e-08,2.127975403007645612e-08,2.190562914860811425e-08,2.253150426713977239e-08,2.315737938567143053e-08,2.378325450420308867e-08,2.440912962273474681e-08,2.503500474126640495e-08,2.566087985979806308e-08,2.628675497832972122e-08,2.691263009686137936e-08,2.753850521539303750e-08,2.816438033392469564e-08,2.879025545245635378e-08,2.941613057098801192e-08,3.004200568951967005e-08,3.066788080805132819e-08,3.129375592658298633e-08,3.191963104511464447e-08,3.254550616364630261e-08,3.317138128217796075e-08,3.379725640070961888e-08,3.442313151924127702e-08,3.504900663777293516e-08,3.567488175630459330e-08,3.630075687483625144e-08,3.692663199336790958e-08,3.755250711189956772e-08,3.817838223043122585e-08,3.880425734896288399e-08,3.943013246749454213e-08 +0.000000000000000000e+00,-5.998855294006638319e-10,-1.199771058801327664e-09,-1.799656588201991496e-09,-2.399542117602655328e-09,-2.999427647003318953e-09,-3.599313176403982578e-09,-4.199198705804646203e-09,-4.799084235205309828e-09,-5.398969764605973453e-09,-5.998855294006637078e-09,-6.598740823407300704e-09,-7.198626352807964329e-09,-7.798511882208627954e-09,-8.398397411609292406e-09,-8.998282941009956858e-09,-9.598168470410621311e-09,-1.019805399981128576e-08,-1.079793952921195022e-08,-1.139782505861261467e-08,-1.199771058801327912e-08,-1.259759611741394357e-08,-1.319748164681460802e-08,-1.379736717621527248e-08,-1.439725270561593693e-08,-1.499713823501659973e-08,-1.559702376441726253e-08,-1.619690929381792532e-08,-1.679679482321858812e-08,-1.739668035261925092e-08,-1.799656588201991372e-08,-1.859645141142057651e-08,-1.919633694082123931e-08,-1.979622247022190211e-08,-2.039610799962256491e-08,-2.099599352902322771e-08,-2.159587905842389050e-08,-2.219576458782455330e-08,-2.279565011722521610e-08,-2.339553564662587890e-08,-2.399542117602654170e-08,-2.459530670542720449e-08,-2.519519223482786729e-08,-2.579507776422853009e-08,-2.639496329362919289e-08,-2.699484882302985569e-08,-2.759473435243051848e-08,-2.819461988183118128e-08,-2.879450541123184408e-08,-2.939439094063250688e-08,-2.999427647003317298e-08,-3.059416199943383909e-08,-3.119404752883450520e-08,-3.179393305823517130e-08,-3.239381858763583741e-08,-3.299370411703650352e-08,-3.359358964643716962e-08,-3.419347517583783573e-08,-3.479336070523850184e-08,-3.539324623463916794e-08,-3.599313176403983405e-08,-3.659301729344050016e-08,-3.719290282284116626e-08,-3.779278835224183237e-08 +0.000000000000000000e+00,-5.799948530973280438e-10,-1.159989706194656088e-09,-1.739984559291984132e-09,-2.319979412389312175e-09,-2.899974265486640426e-09,-3.479969118583968677e-09,-4.059963971681296927e-09,-4.639958824778625178e-09,-5.219953677875953429e-09,-5.799948530973281679e-09,-6.379943384070609930e-09,-6.959938237167938180e-09,-7.539933090265265604e-09,-8.119927943362592200e-09,-8.699922796459918796e-09,-9.279917649557245393e-09,-9.859912502654571989e-09,-1.043990735575189859e-08,-1.101990220884922518e-08,-1.159989706194655178e-08,-1.217989191504387837e-08,-1.275988676814120497e-08,-1.333988162123853157e-08,-1.391987647433585816e-08,-1.449987132743318476e-08,-1.507986618053051136e-08,-1.565986103362783795e-08,-1.623985588672516455e-08,-1.681985073982249114e-08,-1.739984559291981774e-08,-1.797984044601714434e-08,-1.855983529911447093e-08,-1.913983015221179753e-08,-1.971982500530912413e-08,-2.029981985840645072e-08,-2.087981471150377732e-08,-2.145980956460110391e-08,-2.203980441769843051e-08,-2.261979927079575711e-08,-2.319979412389308370e-08,-2.377978897699041030e-08,-2.435978383008773690e-08,-2.493977868318506349e-08,-2.551977353628239009e-08,-2.609976838937971668e-08,-2.667976324247704328e-08,-2.725975809557436988e-08,-2.783975294867169647e-08,-2.841974780176902307e-08,-2.899974265486634967e-08,-2.957973750796367626e-08,-3.015973236106100286e-08,-3.073972721415832945e-08,-3.131972206725565605e-08,-3.189971692035298265e-08,-3.247971177345030924e-08,-3.305970662654763584e-08,-3.363970147964496244e-08,-3.421969633274228903e-08,-3.479969118583961563e-08,-3.537968603893694222e-08,-3.595968089203426882e-08,-3.653967574513159542e-08 +0.000000000000000000e+00,-6.258751184984909876e-10,-1.251750236996981975e-09,-1.877625355495472859e-09,-2.503500473993963537e-09,-3.129375592492454214e-09,-3.755250710990944892e-09,-4.381125829489435569e-09,-5.007000947987926246e-09,-5.632876066486416924e-09,-6.258751184984907601e-09,-6.884626303483398279e-09,-7.510501421981888129e-09,-8.136376540480377979e-09,-8.762251658978867829e-09,-9.388126777477357680e-09,-1.001400189597584753e-08,-1.063987701447433738e-08,-1.126575213297282723e-08,-1.189162725147131708e-08,-1.251750236996980693e-08,-1.314337748846829678e-08,-1.376925260696678663e-08,-1.439512772546527648e-08,-1.502100284396376633e-08,-1.564687796246225453e-08,-1.627275308096074272e-08,-1.689862819945923092e-08,-1.752450331795771912e-08,-1.815037843645620731e-08,-1.877625355495469551e-08,-1.940212867345318370e-08,-2.002800379195167190e-08,-2.065387891045016009e-08,-2.127975402894864829e-08,-2.190562914744713649e-08,-2.253150426594562468e-08,-2.315737938444411288e-08,-2.378325450294260107e-08,-2.440912962144108927e-08,-2.503500473993957747e-08,-2.566087985843806566e-08,-2.628675497693655386e-08,-2.691263009543504205e-08,-2.753850521393353025e-08,-2.816438033243201844e-08,-2.879025545093050664e-08,-2.941613056942899484e-08,-3.004200568792748634e-08,-3.066788080642597785e-08,-3.129375592492446935e-08,-3.191963104342296085e-08,-3.254550616192145236e-08,-3.317138128041994386e-08,-3.379725639891843537e-08,-3.442313151741692687e-08,-3.504900663591541838e-08,-3.567488175441390988e-08,-3.630075687291240139e-08,-3.692663199141089289e-08,-3.755250710990938440e-08,-3.817838222840787590e-08,-3.880425734690636741e-08,-3.943013246540485891e-08 +0.000000000000000000e+00,6.305843340288335931e-10,1.261168668057667186e-09,1.891753002086500573e-09,2.522337336115333959e-09,3.152921670144167345e-09,3.783506004173001145e-09,4.414090338201834945e-09,5.044674672230668745e-09,5.675259006259502545e-09,6.305843340288336345e-09,6.936427674317170145e-09,7.567012008346003945e-09,8.197596342374838572e-09,8.828180676403673199e-09,9.458765010432507826e-09,1.008934934446134245e-08,1.071993367849017708e-08,1.135051801251901171e-08,1.198110234654784633e-08,1.261168668057668096e-08,1.324227101460551559e-08,1.387285534863435022e-08,1.450343968266318484e-08,1.513402401669201782e-08,1.576460835072085079e-08,1.639519268474968376e-08,1.702577701877851673e-08,1.765636135280734971e-08,1.828694568683618268e-08,1.891753002086501565e-08,1.954811435489384862e-08,2.017869868892268160e-08,2.080928302295151457e-08,2.143986735698034754e-08,2.207045169100918052e-08,2.270103602503801349e-08,2.333162035906684646e-08,2.396220469309567943e-08,2.459278902712451241e-08,2.522337336115334538e-08,2.585395769518217835e-08,2.648454202921101133e-08,2.711512636323984430e-08,2.774571069726867727e-08,2.837629503129751024e-08,2.900687936532634322e-08,2.963746369935517619e-08,3.026804803338400916e-08,3.089863236741284213e-08,3.152921670144167511e-08,3.215980103547050808e-08,3.279038536949934105e-08,3.342096970352817403e-08,3.405155403755700700e-08,3.468213837158583997e-08,3.531272270561467294e-08,3.594330703964350592e-08,3.657389137367233889e-08,3.720447570770117186e-08,3.783506004173000483e-08,3.846564437575883781e-08,3.909622870978767078e-08,3.972681304381650375e-08 +0.000000000000000000e+00,6.150123449581752997e-10,1.230024689916350599e-09,1.845037034874526003e-09,2.460049379832701613e-09,3.075061724790877222e-09,3.690074069749052832e-09,4.305086414707228856e-09,4.920098759665404879e-09,5.535111104623580903e-09,6.150123449581756927e-09,6.765135794539932950e-09,7.380148139498108974e-09,7.995160484456284997e-09,8.610172829414461021e-09,9.225185174372637044e-09,9.840197519330813068e-09,1.045520986428898909e-08,1.107022220924716511e-08,1.168523455420534114e-08,1.230024689916351716e-08,1.291525924412169319e-08,1.353027158907986921e-08,1.414528393403804523e-08,1.476029627899622126e-08,1.537530862395439563e-08,1.599032096891256999e-08,1.660533331387074436e-08,1.722034565882891873e-08,1.783535800378709310e-08,1.845037034874526747e-08,1.906538269370344184e-08,1.968039503866161621e-08,2.029540738361979058e-08,2.091041972857796495e-08,2.152543207353613932e-08,2.214044441849431369e-08,2.275545676345248805e-08,2.337046910841066242e-08,2.398548145336883679e-08,2.460049379832701116e-08,2.521550614328518553e-08,2.583051848824335990e-08,2.644553083320153427e-08,2.706054317815970864e-08,2.767555552311788301e-08,2.829056786807605738e-08,2.890558021303423175e-08,2.952059255799240612e-08,3.013560490295058048e-08,3.075061724790875155e-08,3.136562959286692261e-08,3.198064193782509367e-08,3.259565428278326473e-08,3.321066662774143579e-08,3.382567897269960685e-08,3.444069131765777791e-08,3.505570366261594897e-08,3.567071600757412003e-08,3.628572835253229109e-08,3.690074069749046215e-08,3.751575304244863321e-08,3.813076538740680427e-08,3.874577773236497533e-08 +0.000000000000000000e+00,6.521492982620281353e-10,1.304298596524056271e-09,1.956447894786084509e-09,2.608597193048112955e-09,3.260746491310141400e-09,3.912895789572169846e-09,4.565045087834198291e-09,5.217194386096226736e-09,5.869343684358255182e-09,6.521492982620283627e-09,7.173642280882312073e-09,7.825791579144341345e-09,8.477940877406369791e-09,9.130090175668398236e-09,9.782239473930426682e-09,1.043438877219245513e-08,1.108653807045448357e-08,1.173868736871651202e-08,1.239083666697854046e-08,1.304298596524056891e-08,1.369513526350259735e-08,1.434728456176462580e-08,1.499943386002665425e-08,1.565158315828868269e-08,1.630373245655071114e-08,1.695588175481273958e-08,1.760803105307476803e-08,1.826018035133679647e-08,1.891232964959882492e-08,1.956447894786085336e-08,2.021662824612288181e-08,2.086877754438491025e-08,2.152092684264693870e-08,2.217307614090896715e-08,2.282522543917099559e-08,2.347737473743302404e-08,2.412952403569505248e-08,2.478167333395708093e-08,2.543382263221910937e-08,2.608597193048113782e-08,2.673812122874316626e-08,2.739027052700519471e-08,2.804241982526722315e-08,2.869456912352925160e-08,2.934671842179128005e-08,2.999886772005330849e-08,3.065101701831533694e-08,3.130316631657736538e-08,3.195531561483939383e-08,3.260746491310142227e-08,3.325961421136345072e-08,3.391176350962547916e-08,3.456391280788750761e-08,3.521606210614953605e-08,3.586821140441156450e-08,3.652036070267359295e-08,3.717251000093562139e-08,3.782465929919764984e-08,3.847680859745967828e-08,3.912895789572170673e-08,3.978110719398373517e-08,4.043325649224576362e-08,4.108540579050779206e-08 +0.000000000000000000e+00,-6.305843340074262623e-10,-1.261168668014852525e-09,-1.891753002022278683e-09,-2.522337336029704636e-09,-3.152921670037130588e-09,-3.783506004044556540e-09,-4.414090338051982078e-09,-5.044674672059407617e-09,-5.675259006066833155e-09,-6.305843340074258694e-09,-6.936427674081684232e-09,-7.567012008089109771e-09,-8.197596342096535309e-09,-8.828180676103960848e-09,-9.458765010111386386e-09,-1.008934934411881192e-08,-1.071993367812623746e-08,-1.135051801213366300e-08,-1.198110234614108854e-08,-1.261168668014851408e-08,-1.324227101415593962e-08,-1.387285534816336516e-08,-1.450343968217079069e-08,-1.513402401617821623e-08,-1.576460835018564177e-08,-1.639519268419306731e-08,-1.702577701820049285e-08,-1.765636135220791839e-08,-1.828694568621534393e-08,-1.891753002022276946e-08,-1.954811435423019500e-08,-2.017869868823762054e-08,-2.080928302224504608e-08,-2.143986735625247162e-08,-2.207045169025989716e-08,-2.270103602426732269e-08,-2.333162035827474823e-08,-2.396220469228217377e-08,-2.459278902628959931e-08,-2.522337336029702485e-08,-2.585395769430445039e-08,-2.648454202831187593e-08,-2.711512636231930146e-08,-2.774571069632672700e-08,-2.837629503033415254e-08,-2.900687936434157808e-08,-2.963746369834900362e-08,-3.026804803235642585e-08,-3.089863236636384477e-08,-3.152921670037126369e-08,-3.215980103437868261e-08,-3.279038536838610153e-08,-3.342096970239352045e-08,-3.405155403640093937e-08,-3.468213837040835830e-08,-3.531272270441577722e-08,-3.594330703842319614e-08,-3.657389137243061506e-08,-3.720447570643803398e-08,-3.783506004044545290e-08,-3.846564437445287182e-08,-3.909622870846029074e-08,-3.972681304246770966e-08 +0.000000000000000000e+00,-6.150123449369588408e-10,-1.230024689873917682e-09,-1.845037034810876522e-09,-2.460049379747835363e-09,-3.075061724684794204e-09,-3.690074069621753045e-09,-4.305086414558711886e-09,-4.920098759495670726e-09,-5.535111104432629567e-09,-6.150123449369588408e-09,-6.765135794306547249e-09,-7.380148139243506090e-09,-7.995160484180464931e-09,-8.610172829117423771e-09,-9.225185174054382612e-09,-9.840197518991341453e-09,-1.045520986392830029e-08,-1.107022220886525913e-08,-1.168523455380221798e-08,-1.230024689873917682e-08,-1.291525924367613566e-08,-1.353027158861309450e-08,-1.414528393355005334e-08,-1.476029627848701218e-08,-1.537530862342397102e-08,-1.599032096836092986e-08,-1.660533331329788870e-08,-1.722034565823484754e-08,-1.783535800317180638e-08,-1.845037034810876522e-08,-1.906538269304572407e-08,-1.968039503798268291e-08,-2.029540738291964175e-08,-2.091041972785660059e-08,-2.152543207279355943e-08,-2.214044441773051827e-08,-2.275545676266747711e-08,-2.337046910760443595e-08,-2.398548145254139479e-08,-2.460049379747835363e-08,-2.521550614241531247e-08,-2.583051848735227131e-08,-2.644553083228923015e-08,-2.706054317722618900e-08,-2.767555552216314784e-08,-2.829056786710010668e-08,-2.890558021203706552e-08,-2.952059255697402436e-08,-3.013560490191098651e-08,-3.075061724684794866e-08,-3.136562959178491081e-08,-3.198064193672187296e-08,-3.259565428165883511e-08,-3.321066662659579726e-08,-3.382567897153275941e-08,-3.444069131646972156e-08,-3.505570366140668370e-08,-3.567071600634364585e-08,-3.628572835128060800e-08,-3.690074069621757015e-08,-3.751575304115453230e-08,-3.813076538609149445e-08,-3.874577773102845660e-08 +0.000000000000000000e+00,-6.521492982284552523e-10,-1.304298596456910505e-09,-1.956447894685365757e-09,-2.608597192913821009e-09,-3.260746491142276262e-09,-3.912895789370731514e-09,-4.565045087599187180e-09,-5.217194385827642846e-09,-5.869343684056098512e-09,-6.521492982284554178e-09,-7.173642280513009844e-09,-7.825791578741464682e-09,-8.477940876969919521e-09,-9.130090175198374360e-09,-9.782239473426829199e-09,-1.043438877165528404e-08,-1.108653806988373888e-08,-1.173868736811219372e-08,-1.239083666634064855e-08,-1.304298596456910339e-08,-1.369513526279755823e-08,-1.434728456102601307e-08,-1.499943385925446791e-08,-1.565158315748292275e-08,-1.630373245571137759e-08,-1.695588175393983243e-08,-1.760803105216828726e-08,-1.826018035039674210e-08,-1.891232964862519694e-08,-1.956447894685365178e-08,-2.021662824508210662e-08,-2.086877754331056146e-08,-2.152092684153901630e-08,-2.217307613976747114e-08,-2.282522543799592597e-08,-2.347737473622438081e-08,-2.412952403445283565e-08,-2.478167333268129049e-08,-2.543382263090974533e-08,-2.608597192913820017e-08,-2.673812122736665501e-08,-2.739027052559510985e-08,-2.804241982382356468e-08,-2.869456912205201952e-08,-2.934671842028047436e-08,-2.999886771850892920e-08,-3.065101701673738073e-08,-3.130316631496583226e-08,-3.195531561319428379e-08,-3.260746491142273532e-08,-3.325961420965118685e-08,-3.391176350787963838e-08,-3.456391280610808991e-08,-3.521606210433654144e-08,-3.586821140256499297e-08,-3.652036070079344450e-08,-3.717250999902189603e-08,-3.782465929725034756e-08,-3.847680859547879909e-08,-3.912895789370725062e-08,-3.978110719193570215e-08,-4.043325649016415368e-08,-4.108540578839260521e-08 +0.000000000000000000e+00,6.568338977166027617e-10,1.313667795433205523e-09,1.970501693149808285e-09,2.627335590866411047e-09,3.284169488583013808e-09,3.941003386299616570e-09,4.597837284016218918e-09,5.254671181732821266e-09,5.911505079449423614e-09,6.568338977166025962e-09,7.225172874882628310e-09,7.882006772599231485e-09,8.538840670315834661e-09,9.195674568032437836e-09,9.852508465749041011e-09,1.050934236346564419e-08,1.116617626118224736e-08,1.182301015889885054e-08,1.247984405661545371e-08,1.313667795433205689e-08,1.379351185204866006e-08,1.445034574976526324e-08,1.510717964748186641e-08,1.576401354519846959e-08,1.642084744291507276e-08,1.707768134063167594e-08,1.773451523834827911e-08,1.839134913606488229e-08,1.904818303378148546e-08,1.970501693149808864e-08,2.036185082921469182e-08,2.101868472693129499e-08,2.167551862464789817e-08,2.233235252236450134e-08,2.298918642008110452e-08,2.364602031779770769e-08,2.430285421551431087e-08,2.495968811323091404e-08,2.561652201094751722e-08,2.627335590866412039e-08,2.693018980638072357e-08,2.758702370409732674e-08,2.824385760181392992e-08,2.890069149953053309e-08,2.955752539724713627e-08,3.021435929496373944e-08,3.087119319268033931e-08,3.152802709039693918e-08,3.218486098811353904e-08,3.284169488583013891e-08,3.349852878354673878e-08,3.415536268126333864e-08,3.481219657897993851e-08,3.546903047669653838e-08,3.612586437441313824e-08,3.678269827212973811e-08,3.743953216984633798e-08,3.809636606756293784e-08,3.875319996527953771e-08,3.941003386299613757e-08,4.006686776071273744e-08,4.072370165842933731e-08,4.138053555614593717e-08 +0.000000000000000000e+00,6.435975191568861786e-10,1.287195038313772357e-09,1.930792557470658639e-09,2.574390076627545128e-09,3.217987595784431617e-09,3.861585114941318106e-09,4.505182634098204594e-09,5.148780153255091083e-09,5.792377672411977572e-09,6.435975191568864061e-09,7.079572710725750550e-09,7.723170229882637866e-09,8.366767749039525182e-09,9.010365268196412498e-09,9.653962787353299813e-09,1.029756030651018713e-08,1.094115782566707445e-08,1.158475534482396176e-08,1.222835286398084908e-08,1.287195038313773639e-08,1.351554790229462371e-08,1.415914542145151103e-08,1.480274294060839834e-08,1.544634045976528566e-08,1.608993797892217463e-08,1.673353549807906360e-08,1.737713301723595257e-08,1.802073053639284154e-08,1.866432805554973051e-08,1.930792557470661948e-08,1.995152309386350845e-08,2.059512061302039742e-08,2.123871813217728639e-08,2.188231565133417536e-08,2.252591317049106433e-08,2.316951068964795330e-08,2.381310820880484227e-08,2.445670572796173124e-08,2.510030324711862021e-08,2.574390076627550918e-08,2.638749828543239815e-08,2.703109580458928712e-08,2.767469332374617609e-08,2.831829084290306506e-08,2.896188836205995403e-08,2.960548588121684300e-08,3.024908340037373198e-08,3.089268091953061764e-08,3.153627843868750330e-08,3.217987595784438896e-08,3.282347347700127462e-08,3.346707099615816028e-08,3.411066851531504594e-08,3.475426603447193161e-08,3.539786355362881727e-08,3.604146107278570293e-08,3.668505859194258859e-08,3.732865611109947425e-08,3.797225363025635991e-08,3.861585114941324558e-08,3.925944866857013124e-08,3.990304618772701690e-08,4.054664370688390256e-08 +0.000000000000000000e+00,6.764254420819276412e-10,1.352850884163855282e-09,2.029276326245783131e-09,2.705701768327710979e-09,3.382127210409638827e-09,4.058552652491566261e-09,4.734978094573493695e-09,5.411403536655421130e-09,6.087828978737348564e-09,6.764254420819275999e-09,7.440679862901203433e-09,8.117105304983130868e-09,8.793530747065058302e-09,9.469956189146985737e-09,1.014638163122891317e-08,1.082280707331084061e-08,1.149923251539276804e-08,1.217565795747469547e-08,1.285208339955662291e-08,1.352850884163855034e-08,1.420493428372047778e-08,1.488135972580240521e-08,1.555778516788433265e-08,1.623421060996625843e-08,1.691063605204818421e-08,1.758706149413010999e-08,1.826348693621203577e-08,1.893991237829396155e-08,1.961633782037588733e-08,2.029276326245781311e-08,2.096918870453973889e-08,2.164561414662166467e-08,2.232203958870359045e-08,2.299846503078551623e-08,2.367489047286744201e-08,2.435131591494936779e-08,2.502774135703129357e-08,2.570416679911321935e-08,2.638059224119514513e-08,2.705701768327707091e-08,2.773344312535899669e-08,2.840986856744092247e-08,2.908629400952284825e-08,2.976271945160477403e-08,3.043914489368669981e-08,3.111557033576862559e-08,3.179199577785055137e-08,3.246842121993247715e-08,3.314484666201440293e-08,3.382127210409632871e-08,3.449769754617825449e-08,3.517412298826018027e-08,3.585054843034210605e-08,3.652697387242403183e-08,3.720339931450595761e-08,3.787982475658788339e-08,3.855625019866980917e-08,3.923267564075173495e-08,3.990910108283366073e-08,4.058552652491558651e-08,4.126195196699751229e-08,4.193837740907943807e-08,4.261480285116136385e-08 +0.000000000000000000e+00,-6.568338976964198649e-10,-1.313667795392839730e-09,-1.970501693089259491e-09,-2.627335590785679046e-09,-3.284169488482098601e-09,-3.941003386178518155e-09,-4.597837283874938124e-09,-5.254671181571358092e-09,-5.911505079267778060e-09,-6.568338976964198029e-09,-7.225172874660617997e-09,-7.882006772357037965e-09,-8.538840670053457933e-09,-9.195674567749877902e-09,-9.852508465446297870e-09,-1.050934236314271784e-08,-1.116617626083913781e-08,-1.182301015853555777e-08,-1.247984405623197774e-08,-1.313667795392839771e-08,-1.379351185162481768e-08,-1.445034574932123765e-08,-1.510717964701765596e-08,-1.576401354471407262e-08,-1.642084744241048928e-08,-1.707768134010690594e-08,-1.773451523780332260e-08,-1.839134913549973926e-08,-1.904818303319615592e-08,-1.970501693089257258e-08,-2.036185082858898924e-08,-2.101868472628540590e-08,-2.167551862398182256e-08,-2.233235252167823922e-08,-2.298918641937465588e-08,-2.364602031707107254e-08,-2.430285421476748920e-08,-2.495968811246390586e-08,-2.561652201016032252e-08,-2.627335590785673917e-08,-2.693018980555315583e-08,-2.758702370324957249e-08,-2.824385760094598915e-08,-2.890069149864240581e-08,-2.955752539633882247e-08,-3.021435929403523913e-08,-3.087119319173165579e-08,-3.152802708942807245e-08,-3.218486098712448911e-08,-3.284169488482090577e-08,-3.349852878251732243e-08,-3.415536268021373909e-08,-3.481219657791015575e-08,-3.546903047560657241e-08,-3.612586437330298907e-08,-3.678269827099940573e-08,-3.743953216869582239e-08,-3.809636606639223905e-08,-3.875319996408865571e-08,-3.941003386178507237e-08,-4.006686775948148903e-08,-4.072370165717790569e-08,-4.138053555487432235e-08 +0.000000000000000000e+00,-6.435975191359325563e-10,-1.287195038271865113e-09,-1.930792557407797876e-09,-2.574390076543730639e-09,-3.217987595679663402e-09,-3.861585114815595751e-09,-4.505182633951528101e-09,-5.148780153087460451e-09,-5.792377672223392800e-09,-6.435975191359325150e-09,-7.079572710495257499e-09,-7.723170229631189849e-09,-8.366767748767123025e-09,-9.010365267903056202e-09,-9.653962787038989379e-09,-1.029756030617492256e-08,-1.094115782531085573e-08,-1.158475534444678891e-08,-1.222835286358272209e-08,-1.287195038271865526e-08,-1.351554790185458844e-08,-1.415914542099052162e-08,-1.480274294012645479e-08,-1.544634045926238962e-08,-1.608993797839832445e-08,-1.673353549753425929e-08,-1.737713301667019412e-08,-1.802073053580612895e-08,-1.866432805494206378e-08,-1.930792557407799861e-08,-1.995152309321393344e-08,-2.059512061234986827e-08,-2.123871813148580310e-08,-2.188231565062173793e-08,-2.252591316975767277e-08,-2.316951068889360760e-08,-2.381310820802954243e-08,-2.445670572716547726e-08,-2.510030324630141209e-08,-2.574390076543734692e-08,-2.638749828457328175e-08,-2.703109580370921658e-08,-2.767469332284515141e-08,-2.831829084198108624e-08,-2.896188836111702108e-08,-2.960548588025295591e-08,-3.024908339938889074e-08,-3.089268091852482557e-08,-3.153627843766076040e-08,-3.217987595679669523e-08,-3.282347347593263006e-08,-3.346707099506856489e-08,-3.411066851420449972e-08,-3.475426603334043456e-08,-3.539786355247636939e-08,-3.604146107161230422e-08,-3.668505859074823905e-08,-3.732865610988417388e-08,-3.797225362902010871e-08,-3.861585114815604354e-08,-3.925944866729197837e-08,-3.990304618642791320e-08,-4.054664370556384803e-08 +0.000000000000000000e+00,-6.764254420506411889e-10,-1.352850884101282378e-09,-2.029276326151923774e-09,-2.705701768202565169e-09,-3.382127210253206565e-09,-4.058552652303847547e-09,-4.734978094354488529e-09,-5.411403536405129511e-09,-6.087828978455770494e-09,-6.764254420506411476e-09,-7.440679862557052458e-09,-8.117105304607693440e-09,-8.793530746658333595e-09,-9.469956188708973750e-09,-1.014638163075961390e-08,-1.082280707281025406e-08,-1.149923251486089421e-08,-1.217565795691153437e-08,-1.285208339896217452e-08,-1.352850884101281468e-08,-1.420493428306345483e-08,-1.488135972511409499e-08,-1.555778516716473514e-08,-1.623421060921537695e-08,-1.691063605126601876e-08,-1.758706149331666057e-08,-1.826348693536730238e-08,-1.893991237741794419e-08,-1.961633781946858600e-08,-2.029276326151922781e-08,-2.096918870356986962e-08,-2.164561414562051143e-08,-2.232203958767115324e-08,-2.299846502972179505e-08,-2.367489047177243686e-08,-2.435131591382307867e-08,-2.502774135587372047e-08,-2.570416679792436228e-08,-2.638059223997500409e-08,-2.705701768202564590e-08,-2.773344312407628771e-08,-2.840986856612692952e-08,-2.908629400817757133e-08,-2.976271945022821314e-08,-3.043914489227885826e-08,-3.111557033432950338e-08,-3.179199577638014849e-08,-3.246842121843079361e-08,-3.314484666048143873e-08,-3.382127210253208385e-08,-3.449769754458272897e-08,-3.517412298663337408e-08,-3.585054842868401920e-08,-3.652697387073466432e-08,-3.720339931278530944e-08,-3.787982475483595456e-08,-3.855625019688659967e-08,-3.923267563893724479e-08,-3.990910108098788991e-08,-4.058552652303853503e-08,-4.126195196508918015e-08,-4.193837740713982526e-08,-4.261480284919047038e-08 +0.000000000000000000e+00,6.701062006963647940e-10,1.340212401392729588e-09,2.010318602089094382e-09,2.680424802785459176e-09,3.350531003481823970e-09,4.020637204178188764e-09,4.690743404874553558e-09,5.360849605570918352e-09,6.030955806267283146e-09,6.701062006963647940e-09,7.371168207660012734e-09,8.041274408356377528e-09,8.711380609052742322e-09,9.381486809749107116e-09,1.005159301044547191e-08,1.072169921114183670e-08,1.139180541183820150e-08,1.206191161253456629e-08,1.273201781323093109e-08,1.340212401392729588e-08,1.407223021462366067e-08,1.474233641532002547e-08,1.541244261601639192e-08,1.608254881671275836e-08,1.675265501740912481e-08,1.742276121810549126e-08,1.809286741880185771e-08,1.876297361949822416e-08,1.943307982019459061e-08,2.010318602089095705e-08,2.077329222158732350e-08,2.144339842228368995e-08,2.211350462298005640e-08,2.278361082367642285e-08,2.345371702437278930e-08,2.412382322506915574e-08,2.479392942576552219e-08,2.546403562646188864e-08,2.613414182715825509e-08,2.680424802785462154e-08,2.747435422855098799e-08,2.814446042924735443e-08,2.881456662994372088e-08,2.948467283064008733e-08,3.015477903133645378e-08,3.082488523203282354e-08,3.149499143272919329e-08,3.216509763342556305e-08,3.283520383412193281e-08,3.350531003481830257e-08,3.417541623551467232e-08,3.484552243621104208e-08,3.551562863690741184e-08,3.618573483760378159e-08,3.685584103830015135e-08,3.752594723899652111e-08,3.819605343969289086e-08,3.886615964038926062e-08,3.953626584108563038e-08,4.020637204178200014e-08,4.087647824247836989e-08,4.154658444317473965e-08,4.221669064387110941e-08 +0.000000000000000000e+00,-6.701062006773006590e-10,-1.340212401354601318e-09,-2.010318602031901874e-09,-2.680424802709202222e-09,-3.350531003386502571e-09,-4.020637204063802920e-09,-4.690743404741102855e-09,-5.360849605418402791e-09,-6.030955806095702726e-09,-6.701062006773002661e-09,-7.371168207450302596e-09,-8.041274408127602532e-09,-8.711380608804902467e-09,-9.381486809482202402e-09,-1.005159301015950234e-08,-1.072169921083680227e-08,-1.139180541151410221e-08,-1.206191161219140214e-08,-1.273201781286870208e-08,-1.340212401354600201e-08,-1.407223021422330195e-08,-1.474233641490060188e-08,-1.541244261557790016e-08,-1.608254881625519845e-08,-1.675265501693249673e-08,-1.742276121760979501e-08,-1.809286741828709329e-08,-1.876297361896439157e-08,-1.943307981964168985e-08,-2.010318602031898813e-08,-2.077329222099628641e-08,-2.144339842167358469e-08,-2.211350462235088297e-08,-2.278361082302818125e-08,-2.345371702370547954e-08,-2.412382322438277782e-08,-2.479392942506007610e-08,-2.546403562573737438e-08,-2.613414182641467266e-08,-2.680424802709197094e-08,-2.747435422776926922e-08,-2.814446042844656750e-08,-2.881456662912386578e-08,-2.948467282980116406e-08,-3.015477903047846234e-08,-3.082488523115576062e-08,-3.149499143183305891e-08,-3.216509763251035719e-08,-3.283520383318765547e-08,-3.350531003386495375e-08,-3.417541623454225203e-08,-3.484552243521955031e-08,-3.551562863589684859e-08,-3.618573483657414687e-08,-3.685584103725144515e-08,-3.752594723792874343e-08,-3.819605343860604171e-08,-3.886615963928334000e-08,-3.953626583996063828e-08,-4.020637204063793656e-08,-4.087647824131523484e-08,-4.154658444199253312e-08,-4.221669064266983140e-08 +0.000000000000000000e+00,-1.350055989697953255e-11,-2.700111979395906510e-11,-4.050167969093859765e-11,-5.400223958791813019e-11,-6.750279948489766274e-11,-8.100335938187719529e-11,-9.450391927885672784e-11,-1.080044791758362604e-10,-1.215050390728157929e-10,-1.350055989697953255e-10,-1.485061588667748580e-10,-1.620067187637543906e-10,-1.755072786607339231e-10,-1.890078385577134557e-10,-2.025083984546929882e-10,-2.160089583516725208e-10,-2.295095182486520533e-10,-2.430100781456315859e-10,-2.565106380426111184e-10,-2.700111979395906510e-10,-2.835117578365701835e-10,-2.970123177335497161e-10,-3.105128776305292486e-10,-3.240134375275087812e-10,-3.375139974244883137e-10,-3.510145573214678463e-10,-3.645151172184473788e-10,-3.780156771154269114e-10,-3.915162370124064439e-10,-4.050167969093859765e-10,-4.185173568063655090e-10,-4.320179167033450416e-10,-4.455184766003245741e-10,-4.590190364973041066e-10,-4.725195963942836392e-10,-4.860201562912631717e-10,-4.995207161882427043e-10,-5.130212760852222368e-10,-5.265218359822017694e-10,-5.400223958791813019e-10,-5.535229557761608345e-10,-5.670235156731403670e-10,-5.805240755701198996e-10,-5.940246354670994321e-10,-6.075251953640789647e-10,-6.210257552610584972e-10,-6.345263151580380298e-10,-6.480268750550175623e-10,-6.615274349519970949e-10,-6.750279948489766274e-10,-6.885285547459561600e-10,-7.020291146429356925e-10,-7.155296745399152251e-10,-7.290302344368947576e-10,-7.425307943338742902e-10,-7.560313542308538227e-10,-7.695319141278333553e-10,-7.830324740248128878e-10,-7.965330339217924204e-10,-8.100335938187719529e-10,-8.235341537157514855e-10,-8.370347136127310180e-10,-8.505352735097105506e-10 +0.000000000000000000e+00,-6.751917395128671525e-10,-1.350383479025734305e-09,-2.025575218538601561e-09,-2.700766958051469024e-09,-3.375958697564336486e-09,-4.051150437077203949e-09,-4.726342176590070998e-09,-5.401533916102938047e-09,-6.076725655615805096e-09,-6.751917395128672145e-09,-7.427109134641539194e-09,-8.102300874154406244e-09,-8.777492613667273293e-09,-9.452684353180140342e-09,-1.012787609269300739e-08,-1.080306783220587444e-08,-1.147825957171874149e-08,-1.215345131123160854e-08,-1.282864305074447559e-08,-1.350383479025734264e-08,-1.417902652977020969e-08,-1.485421826928307673e-08,-1.552941000879594544e-08,-1.620460174830881580e-08,-1.687979348782168615e-08,-1.755498522733455651e-08,-1.823017696684742687e-08,-1.890536870636029723e-08,-1.958056044587316759e-08,-2.025575218538603794e-08,-2.093094392489890830e-08,-2.160613566441177866e-08,-2.228132740392464902e-08,-2.295651914343751937e-08,-2.363171088295038973e-08,-2.430690262246326009e-08,-2.498209436197613045e-08,-2.565728610148900081e-08,-2.633247784100187116e-08,-2.700766958051474152e-08,-2.768286132002761188e-08,-2.835805305954048224e-08,-2.903324479905335259e-08,-2.970843653856622295e-08,-3.038362827807909331e-08,-3.105882001759196367e-08,-3.173401175710483403e-08,-3.240920349661770438e-08,-3.308439523613057474e-08,-3.375958697564344510e-08,-3.443477871515631546e-08,-3.510997045466918582e-08,-3.578516219418205617e-08,-3.646035393369492653e-08,-3.713554567320779689e-08,-3.781073741272066725e-08,-3.848592915223353760e-08,-3.916112089174640796e-08,-3.983631263125927832e-08,-4.051150437077214868e-08,-4.118669611028501904e-08,-4.186188784979788939e-08,-4.253707958931075975e-08 +0.000000000000000000e+00,-2.496028364886276802e-20,-4.992056729772553605e-20,-7.488085094658830407e-20,-9.984113459545107210e-20,-1.248014182443138401e-19,-1.497617018931766081e-19,-1.747219855420393762e-19,-1.996822691909021442e-19,-2.246425528397649363e-19,-2.496028364886277284e-19,-2.745631201374905205e-19,-2.995234037863533126e-19,-3.244836874352161047e-19,-3.494439710840788968e-19,-3.744042547329416889e-19,-3.993645383818044810e-19,-4.243248220306672731e-19,-4.492851056795300652e-19,-4.742453893283928573e-19,-4.992056729772556494e-19,-5.241659566261184415e-19,-5.491262402749812336e-19,-5.740865239238440257e-19,-5.990468075727068178e-19,-6.240070912215696099e-19,-6.489673748704324020e-19,-6.739276585192951941e-19,-6.988879421681579862e-19,-7.238482258170207783e-19,-7.488085094658835704e-19,-7.737687931147463625e-19,-7.987290767636091546e-19,-8.236893604124719467e-19,-8.486496440613347388e-19,-8.736099277101974346e-19,-8.985702113590601304e-19,-9.235304950079228262e-19,-9.484907786567855220e-19,-9.734510623056482178e-19,-9.984113459545109136e-19,-1.023371629603373609e-18,-1.048331913252236305e-18,-1.073292196901099001e-18,-1.098252480549961697e-18,-1.123212764198824393e-18,-1.148173047847687088e-18,-1.173133331496549784e-18,-1.198093615145412480e-18,-1.223053898794275176e-18,-1.248014182443137872e-18,-1.272974466092000567e-18,-1.297934749740863263e-18,-1.322895033389725959e-18,-1.347855317038588655e-18,-1.372815600687451351e-18,-1.397775884336314046e-18,-1.422736167985176742e-18,-1.447696451634039438e-18,-1.472656735282902134e-18,-1.497617018931764830e-18,-1.522577302580627525e-18,-1.547537586229490221e-18,-1.572497869878352917e-18 +0.000000000000000000e+00,-2.209249573741869988e-10,-4.418499147483739977e-10,-6.627748721225610224e-10,-8.836998294967480987e-10,-1.104624786870935279e-09,-1.325549744245122458e-09,-1.546474701619309638e-09,-1.767399658993496818e-09,-1.988324616367683998e-09,-2.209249573741871384e-09,-2.430174531116058771e-09,-2.651099488490246157e-09,-2.872024445864433544e-09,-3.092949403238620931e-09,-3.313874360612808317e-09,-3.534799317986995704e-09,-3.755724275361183504e-09,-3.976649232735371304e-09,-4.197574190109559104e-09,-4.418499147483746904e-09,-4.639424104857934705e-09,-4.860349062232122505e-09,-5.081274019606310305e-09,-5.302198976980498105e-09,-5.523123934354685905e-09,-5.744048891728873705e-09,-5.964973849103061506e-09,-6.185898806477249306e-09,-6.406823763851437106e-09,-6.627748721225624906e-09,-6.848673678599812706e-09,-7.069598635974000506e-09,-7.290523593348188307e-09,-7.511448550722376934e-09,-7.732373508096565561e-09,-7.953298465470754189e-09,-8.174223422844942816e-09,-8.395148380219131443e-09,-8.616073337593320071e-09,-8.836998294967508698e-09,-9.057923252341697325e-09,-9.278848209715885953e-09,-9.499773167090074580e-09,-9.720698124464263207e-09,-9.941623081838451835e-09,-1.016254803921264046e-08,-1.038347299658682909e-08,-1.060439795396101772e-08,-1.082532291133520634e-08,-1.104624786870939497e-08,-1.126717282608358360e-08,-1.148809778345777223e-08,-1.170902274083196085e-08,-1.192994769820614948e-08,-1.215087265558033811e-08,-1.237179761295452674e-08,-1.259272257032871536e-08,-1.281364752770290399e-08,-1.303457248507709262e-08,-1.325549744245128124e-08,-1.347642239982546987e-08,-1.369734735719965850e-08,-1.391827231457384713e-08 +0.000000000000000000e+00,-5.454280486882412126e-10,-1.090856097376482425e-09,-1.636284146064723534e-09,-2.181712194752964437e-09,-2.727140243441205339e-09,-3.272568292129446241e-09,-3.817996340817687557e-09,-4.363424389505928873e-09,-4.908852438194170189e-09,-5.454280486882411505e-09,-5.999708535570652821e-09,-6.545136584258894137e-09,-7.090564632947135453e-09,-7.635992681635376769e-09,-8.181420730323618085e-09,-8.726848779011859401e-09,-9.272276827700100717e-09,-9.817704876388342033e-09,-1.036313292507658335e-08,-1.090856097376482466e-08,-1.145398902245306598e-08,-1.199941707114130730e-08,-1.254484511982954861e-08,-1.309027316851778993e-08,-1.363570121720603124e-08,-1.418112926589427256e-08,-1.472655731458251388e-08,-1.527198536327075685e-08,-1.581741341195899816e-08,-1.636284146064723948e-08,-1.690826950933548079e-08,-1.745369755802372211e-08,-1.799912560671196343e-08,-1.854455365540020474e-08,-1.908998170408844606e-08,-1.963540975277668737e-08,-2.018083780146492869e-08,-2.072626585015317001e-08,-2.127169389884141132e-08,-2.181712194752965264e-08,-2.236254999621789395e-08,-2.290797804490613527e-08,-2.345340609359437659e-08,-2.399883414228261790e-08,-2.454426219097085922e-08,-2.508969023965910053e-08,-2.563511828834734185e-08,-2.618054633703558317e-08,-2.672597438572382448e-08,-2.727140243441206580e-08,-2.781683048310030711e-08,-2.836225853178854843e-08,-2.890768658047678975e-08,-2.945311462916503106e-08,-2.999854267785327238e-08,-3.054397072654151369e-08,-3.108939877522975501e-08,-3.163482682391799633e-08,-3.218025487260623764e-08,-3.272568292129447896e-08,-3.327111096998272027e-08,-3.381653901867096159e-08,-3.436196706735920291e-08 +0.000000000000000000e+00,7.379124134214078139e-11,1.475824826842815628e-10,2.213737240264223571e-10,2.951649653685631773e-10,3.689562067107039974e-10,4.427474480528448176e-10,5.165386893949856378e-10,5.903299307371264579e-10,6.641211720792672781e-10,7.379124134214080983e-10,8.117036547635489184e-10,8.854948961056897386e-10,9.592861374478306622e-10,1.033077378789971482e-09,1.106868620132112303e-09,1.180659861474253123e-09,1.254451102816393943e-09,1.328242344158534763e-09,1.402033585500675583e-09,1.475824826842816403e-09,1.549616068184957224e-09,1.623407309527098044e-09,1.697198550869238864e-09,1.770989792211379684e-09,1.844781033553520504e-09,1.918572274895661324e-09,1.992363516237802145e-09,2.066154757579942965e-09,2.139945998922083785e-09,2.213737240264224605e-09,2.287528481606365425e-09,2.361319722948506245e-09,2.435110964290647066e-09,2.508902205632787886e-09,2.582693446974928706e-09,2.656484688317069526e-09,2.730275929659210346e-09,2.804067171001351166e-09,2.877858412343491987e-09,2.951649653685632807e-09,3.025440895027773627e-09,3.099232136369914447e-09,3.173023377712055267e-09,3.246814619054196087e-09,3.320605860396336908e-09,3.394397101738477728e-09,3.468188343080618548e-09,3.541979584422759368e-09,3.615770825764900188e-09,3.689562067107041008e-09,3.763353308449182242e-09,3.837144549791323476e-09,3.910935791133464710e-09,3.984727032475605943e-09,4.058518273817747177e-09,4.132309515159888411e-09,4.206100756502029645e-09,4.279891997844170878e-09,4.353683239186312112e-09,4.427474480528453346e-09,4.501265721870594580e-09,4.575056963212735813e-09,4.648848204554877047e-09 +0.000000000000000000e+00,-3.373506209212444893e-10,-6.747012418424889787e-10,-1.012051862763733520e-09,-1.349402483684978164e-09,-1.686753104606222809e-09,-2.024103725527467453e-09,-2.361454346448712304e-09,-2.698804967369957156e-09,-3.036155588291202007e-09,-3.373506209212446858e-09,-3.710856830133691709e-09,-4.048207451054936560e-09,-4.385558071976181412e-09,-4.722908692897426263e-09,-5.060259313818671114e-09,-5.397609934739915965e-09,-5.734960555661160817e-09,-6.072311176582405668e-09,-6.409661797503650519e-09,-6.747012418424895370e-09,-7.084363039346140222e-09,-7.421713660267385073e-09,-7.759064281188629924e-09,-8.096414902109874775e-09,-8.433765523031119626e-09,-8.771116143952364478e-09,-9.108466764873609329e-09,-9.445817385794854180e-09,-9.783168006716099031e-09,-1.012051862763734388e-08,-1.045786924855858873e-08,-1.079521986947983359e-08,-1.113257049040107844e-08,-1.146992111132232329e-08,-1.180727173224356814e-08,-1.214462235316481299e-08,-1.248197297408605784e-08,-1.281932359500730269e-08,-1.315667421592854754e-08,-1.349402483684979239e-08,-1.383137545777103725e-08,-1.416872607869228210e-08,-1.450607669961352695e-08,-1.484342732053477180e-08,-1.518077794145601831e-08,-1.551812856237726316e-08,-1.585547918329850801e-08,-1.619282980421975286e-08,-1.653018042514099771e-08,-1.686753104606224256e-08,-1.720488166698348741e-08,-1.754223228790473226e-08,-1.787958290882597712e-08,-1.821693352974722197e-08,-1.855428415066846682e-08,-1.889163477158971167e-08,-1.922898539251095652e-08,-1.956633601343220137e-08,-1.990368663435344622e-08,-2.024103725527469107e-08,-2.057838787619593593e-08,-2.091573849711718078e-08,-2.125308911803842563e-08 +0.000000000000000000e+00,-2.211257767668185381e-20,-4.422515535336370762e-20,-6.633773303004555842e-20,-8.845031070672740320e-20,-1.105628883834092480e-19,-1.326754660600910928e-19,-1.547880437367729375e-19,-1.769006214134547823e-19,-1.990131990901366271e-19,-2.211257767668184478e-19,-2.432383544435002926e-19,-2.653509321201821374e-19,-2.874635097968639821e-19,-3.095760874735458269e-19,-3.316886651502276717e-19,-3.538012428269095165e-19,-3.759138205035913613e-19,-3.980263981802732061e-19,-4.201389758569550508e-19,-4.422515535336368956e-19,-4.643641312103187404e-19,-4.864767088870005852e-19,-5.085892865636824300e-19,-5.307018642403642747e-19,-5.528144419170461195e-19,-5.749270195937279643e-19,-5.970395972704098091e-19,-6.191521749470916539e-19,-6.412647526237734986e-19,-6.633773303004553434e-19,-6.854899079771371882e-19,-7.076024856538190330e-19,-7.297150633305008778e-19,-7.518276410071827225e-19,-7.739402186838645673e-19,-7.960527963605464121e-19,-8.181653740372282569e-19,-8.402779517139101017e-19,-8.623905293905919464e-19,-8.845031070672737912e-19,-9.066156847439555397e-19,-9.287282624206372882e-19,-9.508408400973190367e-19,-9.729534177740007852e-19,-9.950659954506825336e-19,-1.017178573127364282e-18,-1.039291150804046031e-18,-1.061403728480727779e-18,-1.083516306157409528e-18,-1.105628883834091276e-18,-1.127741461510773025e-18,-1.149854039187454773e-18,-1.171966616864136522e-18,-1.194079194540818270e-18,-1.216191772217500018e-18,-1.238304349894181767e-18,-1.260416927570863515e-18,-1.282529505247545264e-18,-1.304642082924227012e-18,-1.326754660600908761e-18,-1.348867238277590509e-18,-1.370979815954272258e-18,-1.393092393630954006e-18 +0.000000000000000000e+00,1.350055986115516094e-11,2.700111972231032187e-11,4.050167958346548281e-11,5.400223944462064375e-11,6.750279930577581115e-11,8.100335916693097855e-11,9.450391902808614595e-11,1.080044788892413133e-10,1.215050387503964807e-10,1.350055986115516481e-10,1.485061584727068155e-10,1.620067183338619829e-10,1.755072781950171503e-10,1.890078380561723177e-10,2.025083979173274851e-10,2.160089577784826525e-10,2.295095176396378199e-10,2.430100775007930132e-10,2.565106373619481806e-10,2.700111972231033480e-10,2.835117570842585154e-10,2.970123169454136828e-10,3.105128768065688502e-10,3.240134366677240176e-10,3.375139965288791850e-10,3.510145563900343524e-10,3.645151162511895198e-10,3.780156761123446872e-10,3.915162359734998546e-10,4.050167958346550220e-10,4.185173556958101894e-10,4.320179155569653568e-10,4.455184754181205242e-10,4.590190352792756916e-10,4.725195951404308590e-10,4.860201550015860264e-10,4.995207148627411938e-10,5.130212747238963612e-10,5.265218345850515286e-10,5.400223944462066960e-10,5.535229543073618634e-10,5.670235141685170308e-10,5.805240740296721982e-10,5.940246338908273656e-10,6.075251937519825330e-10,6.210257536131377004e-10,6.345263134742928678e-10,6.480268733354480352e-10,6.615274331966032026e-10,6.750279930577583700e-10,6.885285529189135374e-10,7.020291127800687048e-10,7.155296726412238722e-10,7.290302325023790396e-10,7.425307923635342070e-10,7.560313522246893744e-10,7.695319120858445418e-10,7.830324719469997092e-10,7.965330318081548766e-10,8.100335916693100440e-10,8.235341515304652114e-10,8.370347113916203788e-10,8.505352712527755462e-10 +0.000000000000000000e+00,6.751917394629849562e-10,1.350383478925969912e-09,2.025575218388955076e-09,2.700766957851940239e-09,3.375958697314925402e-09,4.051150436777910151e-09,4.726342176240894900e-09,5.401533915703879650e-09,6.076725655166864399e-09,6.751917394629849149e-09,7.427109134092833898e-09,8.102300873555818648e-09,8.777492613018803397e-09,9.452684352481788147e-09,1.012787609194477290e-08,1.080306783140775765e-08,1.147825957087074239e-08,1.215345131033372714e-08,1.282864304979671189e-08,1.350383478925969664e-08,1.417902652872268139e-08,1.485421826818566614e-08,1.552941000764865255e-08,1.620460174711164060e-08,1.687979348657462866e-08,1.755498522603761672e-08,1.823017696550060478e-08,1.890536870496359284e-08,1.958056044442658089e-08,2.025575218388956895e-08,2.093094392335255701e-08,2.160613566281554507e-08,2.228132740227853313e-08,2.295651914174152119e-08,2.363171088120450924e-08,2.430690262066749730e-08,2.498209436013048536e-08,2.565728609959347342e-08,2.633247783905646148e-08,2.700766957851944953e-08,2.768286131798243759e-08,2.835805305744542565e-08,2.903324479690841371e-08,2.970843653637140177e-08,3.038362827583438983e-08,3.105882001529737788e-08,3.173401175476036594e-08,3.240920349422335400e-08,3.308439523368634206e-08,3.375958697314933012e-08,3.443477871261231817e-08,3.510997045207530623e-08,3.578516219153829429e-08,3.646035393100128235e-08,3.713554567046427041e-08,3.781073740992725847e-08,3.848592914939024652e-08,3.916112088885323458e-08,3.983631262831622264e-08,4.051150436777921070e-08,4.118669610724219876e-08,4.186188784670518681e-08,4.253707958616817487e-08 +0.000000000000000000e+00,3.373506208713527288e-10,6.747012417427054576e-10,1.012051862614058290e-09,1.349402483485411122e-09,1.686753104356763954e-09,2.024103725228116580e-09,2.361454346099469205e-09,2.698804966970821830e-09,3.036155587842174456e-09,3.373506208713527081e-09,3.710856829584879707e-09,4.048207450456232332e-09,4.385558071327584957e-09,4.722908692198937583e-09,5.060259313070290208e-09,5.397609933941642834e-09,5.734960554812995459e-09,6.072311175684348084e-09,6.409661796555700710e-09,6.747012417427053335e-09,7.084363038298405961e-09,7.421713659169758586e-09,7.759064280041110384e-09,8.096414900912463010e-09,8.433765521783815635e-09,8.771116142655168261e-09,9.108466763526520886e-09,9.445817384397873511e-09,9.783168005269226137e-09,1.012051862614057876e-08,1.045786924701193139e-08,1.079521986788328401e-08,1.113257048875463664e-08,1.146992110962598926e-08,1.180727173049734189e-08,1.214462235136869451e-08,1.248197297224004714e-08,1.281932359311139977e-08,1.315667421398275239e-08,1.349402483485410502e-08,1.383137545572545764e-08,1.416872607659681027e-08,1.450607669746816289e-08,1.484342731833951552e-08,1.518077793921086814e-08,1.551812856008222077e-08,1.585547918095357339e-08,1.619282980182492602e-08,1.653018042269627864e-08,1.686753104356763127e-08,1.720488166443898390e-08,1.754223228531033652e-08,1.787958290618168915e-08,1.821693352705304177e-08,1.855428414792439440e-08,1.889163476879574702e-08,1.922898538966709965e-08,1.956633601053845227e-08,1.990368663140980490e-08,2.024103725228115752e-08,2.057838787315251015e-08,2.091573849402386278e-08,2.125308911489521540e-08 +0.000000000000000000e+00,2.209249573317243025e-10,4.418499146634486050e-10,6.627748719951729333e-10,8.836998293268973133e-10,1.104624786658621590e-09,1.325549743990345867e-09,1.546474701322070143e-09,1.767399658653794420e-09,1.988324615985518696e-09,2.209249573317243180e-09,2.430174530648967663e-09,2.651099487980692147e-09,2.872024445312416630e-09,3.092949402644141114e-09,3.313874359975865597e-09,3.534799317307590080e-09,3.755724274639314564e-09,3.976649231971039047e-09,4.197574189302763531e-09,4.418499146634488014e-09,4.639424103966212497e-09,4.860349061297936981e-09,5.081274018629661464e-09,5.302198975961385948e-09,5.523123933293110431e-09,5.744048890624834915e-09,5.964973847956559398e-09,6.185898805288283881e-09,6.406823762620008365e-09,6.627748719951732848e-09,6.848673677283457332e-09,7.069598634615181815e-09,7.290523591946906299e-09,7.511448549278630782e-09,7.732373506610355265e-09,7.953298463942079749e-09,8.174223421273804232e-09,8.395148378605528716e-09,8.616073335937253199e-09,8.836998293268977683e-09,9.057923250600702166e-09,9.278848207932426649e-09,9.499773165264151133e-09,9.720698122595875616e-09,9.941623079927600100e-09,1.016254803725932458e-08,1.038347299459104907e-08,1.060439795192277355e-08,1.082532290925449803e-08,1.104624786658622252e-08,1.126717282391794700e-08,1.148809778124967148e-08,1.170902273858139597e-08,1.192994769591312045e-08,1.215087265324484493e-08,1.237179761057656942e-08,1.259272256790829390e-08,1.281364752524001838e-08,1.303457248257174287e-08,1.325549743990346735e-08,1.347642239723519183e-08,1.369734735456691632e-08,1.391827231189864080e-08 +0.000000000000000000e+00,5.454280486440133128e-10,1.090856097288026626e-09,1.636284145932040042e-09,2.181712194576053665e-09,2.727140243220067288e-09,3.272568291864080911e-09,3.817996340508094534e-09,4.363424389152108157e-09,4.908852437796121780e-09,5.454280486440135403e-09,5.999708535084149026e-09,6.545136583728162649e-09,7.090564632372176271e-09,7.635992681016190722e-09,8.181420729660204345e-09,8.726848778304217968e-09,9.272276826948231591e-09,9.817704875592245214e-09,1.036313292423625884e-08,1.090856097288027246e-08,1.145398902152428608e-08,1.199941707016829971e-08,1.254484511881231333e-08,1.309027316745632695e-08,1.363570121610034057e-08,1.418112926474435420e-08,1.472655731338836782e-08,1.527198536203238144e-08,1.581741341067639507e-08,1.636284145932040869e-08,1.690826950796442231e-08,1.745369755660843594e-08,1.799912560525244956e-08,1.854455365389646318e-08,1.908998170254047680e-08,1.963540975118449043e-08,2.018083779982850405e-08,2.072626584847251767e-08,2.127169389711653130e-08,2.181712194576054492e-08,2.236254999440455854e-08,2.290797804304857216e-08,2.345340609169258579e-08,2.399883414033659941e-08,2.454426218898061303e-08,2.508969023762462666e-08,2.563511828626864028e-08,2.618054633491265390e-08,2.672597438355666753e-08,2.727140243220068115e-08,2.781683048084469477e-08,2.836225852948870839e-08,2.890768657813272202e-08,2.945311462677673564e-08,2.999854267542074595e-08,3.054397072406475627e-08,3.108939877270876658e-08,3.163482682135277690e-08,3.218025486999678721e-08,3.272568291864079753e-08,3.327111096728480784e-08,3.381653901592881815e-08,3.436196706457282847e-08 +0.000000000000000000e+00,-7.379124136966515165e-11,-1.475824827393303033e-10,-2.213737241089954550e-10,-2.951649654786606066e-10,-3.689562068483257583e-10,-4.427474482179909099e-10,-5.165386895876560616e-10,-5.903299309573212132e-10,-6.641211723269863649e-10,-7.379124136966515165e-10,-8.117036550663166682e-10,-8.854948964359818198e-10,-9.592861378056470749e-10,-1.033077379175312330e-09,-1.106868620544977585e-09,-1.180659861914642840e-09,-1.254451103284308095e-09,-1.328242344653973350e-09,-1.402033586023638605e-09,-1.475824827393303860e-09,-1.549616068762969115e-09,-1.623407310132634370e-09,-1.697198551502299625e-09,-1.770989792871964880e-09,-1.844781034241630135e-09,-1.918572275611295391e-09,-1.992363516980960646e-09,-2.066154758350625901e-09,-2.139945999720291156e-09,-2.213737241089956411e-09,-2.287528482459621666e-09,-2.361319723829286921e-09,-2.435110965198952176e-09,-2.508902206568617431e-09,-2.582693447938282686e-09,-2.656484689307947941e-09,-2.730275930677613196e-09,-2.804067172047278451e-09,-2.877858413416943706e-09,-2.951649654786608961e-09,-3.025440896156274216e-09,-3.099232137525939471e-09,-3.173023378895604726e-09,-3.246814620265269981e-09,-3.320605861634935236e-09,-3.394397103004600492e-09,-3.468188344374265747e-09,-3.541979585743931002e-09,-3.615770827113596257e-09,-3.689562068483261512e-09,-3.763353309852926767e-09,-3.837144551222591608e-09,-3.910935792592256450e-09,-3.984727033961921291e-09,-4.058518275331586133e-09,-4.132309516701250974e-09,-4.206100758070915816e-09,-4.279891999440580657e-09,-4.353683240810245498e-09,-4.427474482179910340e-09,-4.501265723549575181e-09,-4.575056964919240023e-09,-4.648848206288904864e-09 +0.000000000000000000e+00,2.724403938712207478e-10,5.448807877424414956e-10,8.173211816136621917e-10,1.089761575484882784e-09,1.362201969356103377e-09,1.634642363227323970e-09,1.907082757098544769e-09,2.179523150969765569e-09,2.451963544840986368e-09,2.724403938712207168e-09,2.996844332583427967e-09,3.269284726454648767e-09,3.541725120325869566e-09,3.814165514197090366e-09,4.086605908068311165e-09,4.359046301939531965e-09,4.631486695810752764e-09,4.903927089681973564e-09,5.176367483553194363e-09,5.448807877424415163e-09,5.721248271295635962e-09,5.993688665166856762e-09,6.266129059038077561e-09,6.538569452909298361e-09,6.811009846780519160e-09,7.083450240651739960e-09,7.355890634522960759e-09,7.628331028394182386e-09,7.900771422265404840e-09,8.173211816136627294e-09,8.445652210007849747e-09,8.718092603879072201e-09,8.990532997750294655e-09,9.262973391621517109e-09,9.535413785492739563e-09,9.807854179363962017e-09,1.008029457323518447e-08,1.035273496710640692e-08,1.062517536097762938e-08,1.089761575484885183e-08,1.117005614872007429e-08,1.144249654259129674e-08,1.171493693646251919e-08,1.198737733033374165e-08,1.225981772420496410e-08,1.253225811807618656e-08,1.280469851194740901e-08,1.307713890581863146e-08,1.334957929968985392e-08,1.362201969356107637e-08,1.389446008743229882e-08,1.416690048130352128e-08,1.443934087517474373e-08,1.471178126904596619e-08,1.498422166291718864e-08,1.525666205678841109e-08,1.552910245065963355e-08,1.580154284453085600e-08,1.607398323840207846e-08,1.634642363227330091e-08,1.661886402614452336e-08,1.689130442001574582e-08,1.716374481388696827e-08 +0.000000000000000000e+00,1.582518225182658523e-10,3.165036450365317046e-10,4.747554675547975568e-10,6.330072900730634091e-10,7.912591125913292614e-10,9.495109351095951137e-10,1.107762757627860863e-09,1.266014580146126611e-09,1.424266402664392360e-09,1.582518225182658109e-09,1.740770047700923858e-09,1.899021870219189814e-09,2.057273692737455769e-09,2.215525515255721725e-09,2.373777337773987681e-09,2.532029160292253637e-09,2.690280982810519592e-09,2.848532805328785548e-09,3.006784627847051504e-09,3.165036450365317459e-09,3.323288272883583415e-09,3.481540095401849371e-09,3.639791917920115326e-09,3.798043740438381282e-09,3.956295562956647651e-09,4.114547385474914020e-09,4.272799207993180390e-09,4.431051030511446759e-09,4.589302853029713128e-09,4.747554675547979498e-09,4.905806498066245867e-09,5.064058320584512236e-09,5.222310143102778605e-09,5.380561965621044975e-09,5.538813788139311344e-09,5.697065610657577713e-09,5.855317433175844082e-09,6.013569255694110452e-09,6.171821078212376821e-09,6.330072900730643190e-09,6.488324723248909560e-09,6.646576545767175929e-09,6.804828368285442298e-09,6.963080190803708667e-09,7.121332013321975037e-09,7.279583835840241406e-09,7.437835658358507775e-09,7.596087480876774144e-09,7.754339303395040514e-09,7.912591125913306883e-09,8.070842948431573252e-09,8.229094770949839622e-09,8.387346593468105991e-09,8.545598415986372360e-09,8.703850238504638729e-09,8.862102061022905099e-09,9.020353883541171468e-09,9.178605706059437837e-09,9.336857528577704206e-09,9.495109351095970576e-09,9.653361173614236945e-09,9.811612996132503314e-09,9.969864818650769683e-09 +0.000000000000000000e+00,3.248244508658058041e-10,6.496489017316116082e-10,9.744733525974175158e-10,1.299297803463223423e-09,1.624122254329029331e-09,1.948946705194835032e-09,2.273771156060640732e-09,2.598595606926446433e-09,2.923420057792252134e-09,3.248244508658057834e-09,3.573068959523863535e-09,3.897893410389669236e-09,4.222717861255474937e-09,4.547542312121280637e-09,4.872366762987086338e-09,5.197191213852892039e-09,5.522015664718697739e-09,5.846840115584503440e-09,6.171664566450309141e-09,6.496489017316114842e-09,6.821313468181920542e-09,7.146137919047726243e-09,7.470962369913531117e-09,7.795786820779336817e-09,8.120611271645142518e-09,8.445435722510948219e-09,8.770260173376753919e-09,9.095084624242559620e-09,9.419909075108365321e-09,9.744733525974171022e-09,1.006955797683997672e-08,1.039438242770578242e-08,1.071920687857158812e-08,1.104403132943739382e-08,1.136885578030319953e-08,1.169368023116900523e-08,1.201850468203481093e-08,1.234332913290061663e-08,1.266815358376642233e-08,1.299297803463222803e-08,1.331780248549803373e-08,1.364262693636383943e-08,1.396745138722964513e-08,1.429227583809545083e-08,1.461710028896125653e-08,1.494192473982706223e-08,1.526674919069286793e-08,1.559157364155867363e-08,1.591639809242447934e-08,1.624122254329028504e-08,1.656604699415609074e-08,1.689087144502189644e-08,1.721569589588770214e-08,1.754052034675350784e-08,1.786534479761931354e-08,1.819016924848511924e-08,1.851499369935092494e-08,1.883981815021673064e-08,1.916464260108253634e-08,1.948946705194834204e-08,1.981429150281414774e-08,2.013911595367995344e-08,2.046394040454575915e-08 +0.000000000000000000e+00,-2.724403938961328429e-10,-5.448807877922656858e-10,-8.173211816883985804e-10,-1.089761575584531578e-09,-1.362201969480664576e-09,-1.634642363376797574e-09,-1.907082757272930572e-09,-2.179523151169063570e-09,-2.451963545065196568e-09,-2.724403938961329566e-09,-2.996844332857462564e-09,-3.269284726753595562e-09,-3.541725120649728560e-09,-3.814165514545861972e-09,-4.086605908441995797e-09,-4.359046302338129622e-09,-4.631486696234263448e-09,-4.903927090130397273e-09,-5.176367484026531098e-09,-5.448807877922664923e-09,-5.721248271818798748e-09,-5.993688665714932573e-09,-6.266129059611066399e-09,-6.538569453507200224e-09,-6.811009847403334049e-09,-7.083450241299467874e-09,-7.355890635195601699e-09,-7.628331029091735525e-09,-7.900771422987869350e-09,-8.173211816884003175e-09,-8.445652210780137000e-09,-8.718092604676270825e-09,-8.990532998572404651e-09,-9.262973392468538476e-09,-9.535413786364672301e-09,-9.807854180260806126e-09,-1.008029457415693995e-08,-1.035273496805307378e-08,-1.062517536194920760e-08,-1.089761575584534143e-08,-1.117005614974147525e-08,-1.144249654363760908e-08,-1.171493693753374290e-08,-1.198737733142987673e-08,-1.225981772532601055e-08,-1.253225811922214438e-08,-1.280469851311827820e-08,-1.307713890701441203e-08,-1.334957930091054585e-08,-1.362201969480667968e-08,-1.389446008870281350e-08,-1.416690048259894733e-08,-1.443934087649508115e-08,-1.471178127039121498e-08,-1.498422166428734715e-08,-1.525666205818348098e-08,-1.552910245207961480e-08,-1.580154284597574863e-08,-1.607398323987188245e-08,-1.634642363376801628e-08,-1.661886402766415010e-08,-1.689130442156028393e-08,-1.716374481545641775e-08 +0.000000000000000000e+00,-1.582518225481907912e-10,-3.165036450963815823e-10,-4.747554676445723993e-10,-6.330072901927632680e-10,-7.912591127409541367e-10,-9.495109352891450054e-10,-1.107762757837335874e-09,-1.266014580385526743e-09,-1.424266402933717612e-09,-1.582518225481908480e-09,-1.740770048030099349e-09,-1.899021870578290424e-09,-2.057273693126481707e-09,-2.215525515674672989e-09,-2.373777338222864271e-09,-2.532029160771055554e-09,-2.690280983319246836e-09,-2.848532805867438118e-09,-3.006784628415629400e-09,-3.165036450963820683e-09,-3.323288273512011965e-09,-3.481540096060203247e-09,-3.639791918608394530e-09,-3.798043741156585812e-09,-3.956295563704777094e-09,-4.114547386252968376e-09,-4.272799208801159659e-09,-4.431051031349350941e-09,-4.589302853897542223e-09,-4.747554676445733506e-09,-4.905806498993924788e-09,-5.064058321542116070e-09,-5.222310144090307352e-09,-5.380561966638498635e-09,-5.538813789186689917e-09,-5.697065611734881199e-09,-5.855317434283072482e-09,-6.013569256831263764e-09,-6.171821079379455046e-09,-6.330072901927646329e-09,-6.488324724475837611e-09,-6.646576547024028893e-09,-6.804828369572220175e-09,-6.963080192120411458e-09,-7.121332014668602740e-09,-7.279583837216794022e-09,-7.437835659764985305e-09,-7.596087482313176587e-09,-7.754339304861368696e-09,-7.912591127409560806e-09,-8.070842949957752915e-09,-8.229094772505945025e-09,-8.387346595054137134e-09,-8.545598417602329244e-09,-8.703850240150521353e-09,-8.862102062698713463e-09,-9.020353885246905572e-09,-9.178605707795097682e-09,-9.336857530343289791e-09,-9.495109352891481901e-09,-9.653361175439674010e-09,-9.811612997987866119e-09,-9.969864820536058229e-09 +0.000000000000000000e+00,-3.248244508803554975e-10,-6.496489017607109950e-10,-9.744733526410665959e-10,-1.299297803521422197e-09,-1.624122254401777798e-09,-1.948946705282133192e-09,-2.273771156162488586e-09,-2.598595607042843980e-09,-2.923420057923199374e-09,-3.248244508803554768e-09,-3.573068959683910162e-09,-3.897893410564265556e-09,-4.222717861444620537e-09,-4.547542312324975517e-09,-4.872366763205330498e-09,-5.197191214085685479e-09,-5.522015664966040459e-09,-5.846840115846395440e-09,-6.171664566726750420e-09,-6.496489017607105401e-09,-6.821313468487460381e-09,-7.146137919367815362e-09,-7.470962370248170342e-09,-7.795786821128526150e-09,-8.120611272008881958e-09,-8.445435722889237765e-09,-8.770260173769593573e-09,-9.095084624649949381e-09,-9.419909075530305188e-09,-9.744733526410660996e-09,-1.006955797729101680e-08,-1.039438242817137261e-08,-1.071920687905172842e-08,-1.104403132993208423e-08,-1.136885578081244003e-08,-1.169368023169279584e-08,-1.201850468257315165e-08,-1.234332913345350746e-08,-1.266815358433386327e-08,-1.299297803521421907e-08,-1.331780248609457488e-08,-1.364262693697493069e-08,-1.396745138785528650e-08,-1.429227583873564230e-08,-1.461710028961599811e-08,-1.494192474049635392e-08,-1.526674919137670807e-08,-1.559157364225706223e-08,-1.591639809313741638e-08,-1.624122254401777053e-08,-1.656604699489812469e-08,-1.689087144577847884e-08,-1.721569589665883299e-08,-1.754052034753918715e-08,-1.786534479841954130e-08,-1.819016924929989545e-08,-1.851499370018024961e-08,-1.883981815106060376e-08,-1.916464260194095791e-08,-1.948946705282131207e-08,-1.981429150370166622e-08,-2.013911595458202037e-08,-2.046394040546237453e-08 +0.000000000000000000e+00,4.109214194827987370e-10,8.218428389655974741e-10,1.232764258448396263e-09,1.643685677931195155e-09,2.054607097413994047e-09,2.465528516896792939e-09,2.876449936379591831e-09,3.287371355862390723e-09,3.698292775345189616e-09,4.109214194827988094e-09,4.520135614310786573e-09,4.931057033793585051e-09,5.341978453276383530e-09,5.752899872759182008e-09,6.163821292241980487e-09,6.574742711724778965e-09,6.985664131207577444e-09,7.396585550690375922e-09,7.807506970173175228e-09,8.218428389655974534e-09,8.629349809138773839e-09,9.040271228621573145e-09,9.451192648104372451e-09,9.862114067587171757e-09,1.027303548706997106e-08,1.068395690655277037e-08,1.109487832603556967e-08,1.150579974551836898e-08,1.191672116500116829e-08,1.232764258448396759e-08,1.273856400396676690e-08,1.314948542344956620e-08,1.356040684293236551e-08,1.397132826241516481e-08,1.438224968189796412e-08,1.479317110138076343e-08,1.520409252086356273e-08,1.561501394034636369e-08,1.602593535982916465e-08,1.643685677931196561e-08,1.684777819879476657e-08,1.725869961827756753e-08,1.766962103776036849e-08,1.808054245724316945e-08,1.849146387672597041e-08,1.890238529620877137e-08,1.931330671569157233e-08,1.972422813517437329e-08,2.013514955465717425e-08,2.054607097413997521e-08,2.095699239362277617e-08,2.136791381310557713e-08,2.177883523258837809e-08,2.218975665207117905e-08,2.260067807155398001e-08,2.301159949103678097e-08,2.342252091051958193e-08,2.383344233000238289e-08,2.424436374948518385e-08,2.465528516896798481e-08,2.506620658845078577e-08,2.547712800793358673e-08,2.588804942741638769e-08 +0.000000000000000000e+00,3.482958115566084583e-10,6.965916231132169166e-10,1.044887434669825427e-09,1.393183246226434040e-09,1.741479057783042653e-09,2.089774869339651267e-09,2.438070680896259880e-09,2.786366492452868493e-09,3.134662304009477107e-09,3.482958115566085720e-09,3.831253927122694334e-09,4.179549738679303361e-09,4.527845550235912387e-09,4.876141361792521414e-09,5.224437173349130441e-09,5.572732984905739468e-09,5.921028796462348495e-09,6.269324608018957522e-09,6.617620419575566549e-09,6.965916231132175576e-09,7.314212042688784603e-09,7.662507854245393630e-09,8.010803665802002657e-09,8.359099477358611684e-09,8.707395288915220711e-09,9.055691100471829738e-09,9.403986912028438765e-09,9.752282723585047792e-09,1.010057853514165682e-08,1.044887434669826585e-08,1.079717015825487487e-08,1.114546596981148390e-08,1.149376178136809293e-08,1.184205759292470195e-08,1.219035340448131098e-08,1.253864921603792001e-08,1.288694502759452903e-08,1.323524083915113806e-08,1.358353665070774709e-08,1.393183246226435612e-08,1.428012827382096514e-08,1.462842408537757417e-08,1.497671989693418154e-08,1.532501570849079057e-08,1.567331152004739960e-08,1.602160733160400862e-08,1.636990314316061765e-08,1.671819895471722668e-08,1.706649476627383570e-08,1.741479057783044473e-08,1.776308638938705376e-08,1.811138220094366278e-08,1.845967801250027181e-08,1.880797382405688084e-08,1.915626963561348987e-08,1.950456544717009889e-08,1.985286125872670792e-08,2.020115707028331695e-08,2.054945288183992597e-08,2.089774869339653500e-08,2.124604450495314403e-08,2.159434031650975305e-08,2.194263612806636208e-08 +0.000000000000000000e+00,4.472092773915754263e-10,8.944185547831508526e-10,1.341627832174726175e-09,1.788837109566301498e-09,2.236046386957876821e-09,2.683255664349452351e-09,3.130464941741027881e-09,3.577674219132603410e-09,4.024883496524179354e-09,4.472092773915755297e-09,4.919302051307331240e-09,5.366511328698907183e-09,5.813720606090483127e-09,6.260929883482059070e-09,6.708139160873635013e-09,7.155348438265210956e-09,7.602557715656786900e-09,8.049766993048362016e-09,8.496976270439937132e-09,8.944185547831512248e-09,9.391394825223087364e-09,9.838604102614662480e-09,1.028581338000623760e-08,1.073302265739781271e-08,1.118023193478938783e-08,1.162744121218096294e-08,1.207465048957253806e-08,1.252185976696411318e-08,1.296906904435568829e-08,1.341627832174726341e-08,1.386348759913883852e-08,1.431069687653041364e-08,1.475790615392198876e-08,1.520511543131356387e-08,1.565232470870513899e-08,1.609953398609671411e-08,1.654674326348828922e-08,1.699395254087986434e-08,1.744116181827143945e-08,1.788837109566301457e-08,1.833558037305458969e-08,1.878278965044616480e-08,1.922999892783773992e-08,1.967720820522931503e-08,2.012441748262089015e-08,2.057162676001246527e-08,2.101883603740404038e-08,2.146604531479561550e-08,2.191325459218719061e-08,2.236046386957876573e-08,2.280767314697034085e-08,2.325488242436191596e-08,2.370209170175349108e-08,2.414930097914506619e-08,2.459651025653664131e-08,2.504371953392821643e-08,2.549092881131979154e-08,2.593813808871136666e-08,2.638534736610294178e-08,2.683255664349451689e-08,2.727976592088609201e-08,2.772697519827766712e-08,2.817418447566924224e-08 +0.000000000000000000e+00,-4.109214194994759389e-10,-8.218428389989518779e-10,-1.232764258498427869e-09,-1.643685677997903963e-09,-2.054607097497380057e-09,-2.465528516996856151e-09,-2.876449936496332245e-09,-3.287371355995808339e-09,-3.698292775495284433e-09,-4.109214194994760940e-09,-4.520135614494237862e-09,-4.931057033993714783e-09,-5.341978453493191704e-09,-5.752899872992668625e-09,-6.163821292492145547e-09,-6.574742711991622468e-09,-6.985664131491099389e-09,-7.396585550990576310e-09,-7.807506970490053231e-09,-8.218428389989530153e-09,-8.629349809489007074e-09,-9.040271228988483995e-09,-9.451192648487960916e-09,-9.862114067987437838e-09,-1.027303548748691476e-08,-1.068395690698639168e-08,-1.109487832648586860e-08,-1.150579974598534552e-08,-1.191672116548482244e-08,-1.232764258498429936e-08,-1.273856400448377629e-08,-1.314948542398325321e-08,-1.356040684348273013e-08,-1.397132826298220705e-08,-1.438224968248168397e-08,-1.479317110198116089e-08,-1.520409252148063616e-08,-1.561501394098010977e-08,-1.602593536047958338e-08,-1.643685677997905700e-08,-1.684777819947853061e-08,-1.725869961897800422e-08,-1.766962103847747783e-08,-1.808054245797695145e-08,-1.849146387747642506e-08,-1.890238529697589867e-08,-1.931330671647537228e-08,-1.972422813597484590e-08,-2.013514955547431951e-08,-2.054607097497379312e-08,-2.095699239447326673e-08,-2.136791381397274035e-08,-2.177883523347221396e-08,-2.218975665297168757e-08,-2.260067807247116118e-08,-2.301159949197063480e-08,-2.342252091147010841e-08,-2.383344233096958202e-08,-2.424436375046905563e-08,-2.465528516996852925e-08,-2.506620658946800286e-08,-2.547712800896747647e-08,-2.588804942846695008e-08 +0.000000000000000000e+00,-3.482958115772650710e-10,-6.965916231545301421e-10,-1.044887434731795316e-09,-1.393183246309060491e-09,-1.741479057886325665e-09,-2.089774869463590633e-09,-2.438070681040855601e-09,-2.786366492618120568e-09,-3.134662304195385536e-09,-3.482958115772650504e-09,-3.831253927349915885e-09,-4.179549738927181266e-09,-4.527845550504446647e-09,-4.876141362081712028e-09,-5.224437173658977410e-09,-5.572732985236242791e-09,-5.921028796813508172e-09,-6.269324608390773553e-09,-6.617620419968038935e-09,-6.965916231545304316e-09,-7.314212043122569697e-09,-7.662507854699835078e-09,-8.010803666277100459e-09,-8.359099477854365841e-09,-8.707395289431631222e-09,-9.055691101008896603e-09,-9.403986912586161984e-09,-9.752282724163427366e-09,-1.010057853574069275e-08,-1.044887434731795813e-08,-1.079717015889522351e-08,-1.114546597047248889e-08,-1.149376178204975427e-08,-1.184205759362701965e-08,-1.219035340520428503e-08,-1.253864921678155042e-08,-1.288694502835881580e-08,-1.323524083993608118e-08,-1.358353665151334656e-08,-1.393183246309061194e-08,-1.428012827466787732e-08,-1.462842408624514270e-08,-1.497671989782240808e-08,-1.532501570939967347e-08,-1.567331152097693885e-08,-1.602160733255420423e-08,-1.636990314413146961e-08,-1.671819895570873499e-08,-1.706649476728600037e-08,-1.741479057886326575e-08,-1.776308639044053113e-08,-1.811138220201779651e-08,-1.845967801359506190e-08,-1.880797382517232728e-08,-1.915626963674959266e-08,-1.950456544832685804e-08,-1.985286125990412342e-08,-2.020115707148138880e-08,-2.054945288305865418e-08,-2.089774869463591956e-08,-2.124604450621318495e-08,-2.159434031779045033e-08,-2.194263612936771571e-08 +0.000000000000000000e+00,-4.472092773964320105e-10,-8.944185547928640209e-10,-1.341627832189296135e-09,-1.788837109585728249e-09,-2.236046386982160362e-09,-2.683255664378592270e-09,-3.130464941775024177e-09,-3.577674219171456084e-09,-4.024883496567887577e-09,-4.472092773964319071e-09,-4.919302051360750564e-09,-5.366511328757182057e-09,-5.813720606153613551e-09,-6.260929883550045044e-09,-6.708139160946476538e-09,-7.155348438342908031e-09,-7.602557715739339525e-09,-8.049766993135771845e-09,-8.496976270532204166e-09,-8.944185547928636487e-09,-9.391394825325068807e-09,-9.838604102721501128e-09,-1.028581338011793345e-08,-1.073302265751436577e-08,-1.118023193491079809e-08,-1.162744121230723041e-08,-1.207465048970366273e-08,-1.252185976710009505e-08,-1.296906904449652737e-08,-1.341627832189295969e-08,-1.386348759928939201e-08,-1.431069687668582433e-08,-1.475790615408225666e-08,-1.520511543147868898e-08,-1.565232470887512130e-08,-1.609953398627155362e-08,-1.654674326366798594e-08,-1.699395254106441826e-08,-1.744116181846085058e-08,-1.788837109585728290e-08,-1.833558037325371522e-08,-1.878278965065014754e-08,-1.922999892804657986e-08,-1.967720820544301218e-08,-2.012441748283944450e-08,-2.057162676023587682e-08,-2.101883603763230914e-08,-2.146604531502874146e-08,-2.191325459242517379e-08,-2.236046386982160611e-08,-2.280767314721803843e-08,-2.325488242461447075e-08,-2.370209170201090307e-08,-2.414930097940733539e-08,-2.459651025680376771e-08,-2.504371953420020003e-08,-2.549092881159663235e-08,-2.593813808899306467e-08,-2.638534736638949699e-08,-2.683255664378592931e-08,-2.727976592118236163e-08,-2.772697519857879395e-08,-2.817418447597522627e-08 +0.000000000000000000e+00,4.937949415623021139e-10,9.875898831246042278e-10,1.481384824686906342e-09,1.975179766249208456e-09,2.468974707811510570e-09,2.962769649373812684e-09,3.456564590936114797e-09,3.950359532498416911e-09,4.444154474060719025e-09,4.937949415623021139e-09,5.431744357185323253e-09,5.925539298747625367e-09,6.419334240309927481e-09,6.913129181872229595e-09,7.406924123434531709e-09,7.900719064996833823e-09,8.394514006559135937e-09,8.888308948121438051e-09,9.382103889683740164e-09,9.875898831246042278e-09,1.036969377280834439e-08,1.086348871437064651e-08,1.135728365593294862e-08,1.185107859749525073e-08,1.234487353905755285e-08,1.283866848061985496e-08,1.333246342218215708e-08,1.382625836374445919e-08,1.432005330530676130e-08,1.481384824686906342e-08,1.530764318843136553e-08,1.580143812999366765e-08,1.629523307155596976e-08,1.678902801311827187e-08,1.728282295468057399e-08,1.777661789624287610e-08,1.827041283780517821e-08,1.876420777936748033e-08,1.925800272092978244e-08,1.975179766249208456e-08,2.024559260405438667e-08,2.073938754561668878e-08,2.123318248717899090e-08,2.172697742874129301e-08,2.222077237030359513e-08,2.271456731186589724e-08,2.320836225342819935e-08,2.370215719499050147e-08,2.419595213655280358e-08,2.468974707811510570e-08,2.518354201967740781e-08,2.567733696123970992e-08,2.617113190280201204e-08,2.666492684436431415e-08,2.715872178592661627e-08,2.765251672748891838e-08,2.814631166905122049e-08,2.864010661061352261e-08,2.913390155217582472e-08,2.962769649373812684e-08,3.012149143530042564e-08,3.061528637686272445e-08,3.110908131842502325e-08 +0.000000000000000000e+00,4.541932725824655220e-10,9.083865451649310440e-10,1.362579817747396618e-09,1.816773090329862295e-09,2.270966362912327972e-09,2.725159635494793649e-09,3.179352908077259326e-09,3.633546180659725003e-09,4.087739453242191094e-09,4.541932725824656771e-09,4.996125998407122448e-09,5.450319270989588125e-09,5.904512543572053802e-09,6.358705816154519479e-09,6.812899088736985156e-09,7.267092361319450833e-09,7.721285633901916511e-09,8.175478906484382188e-09,8.629672179066847865e-09,9.083865451649313542e-09,9.538058724231779219e-09,9.992251996814244896e-09,1.044644526939671057e-08,1.090063854197917625e-08,1.135483181456164193e-08,1.180902508714410760e-08,1.226321835972657328e-08,1.271741163230903896e-08,1.317160490489150464e-08,1.362579817747397031e-08,1.407999145005643599e-08,1.453418472263890167e-08,1.498837799522136734e-08,1.544257126780383302e-08,1.589676454038629870e-08,1.635095781296876438e-08,1.680515108555123005e-08,1.725934435813369573e-08,1.771353763071616141e-08,1.816773090329862708e-08,1.862192417588109276e-08,1.907611744846355844e-08,1.953031072104602411e-08,1.998450399362848979e-08,2.043869726621095547e-08,2.089289053879342115e-08,2.134708381137588682e-08,2.180127708395835250e-08,2.225547035654081818e-08,2.270966362912328385e-08,2.316385690170574953e-08,2.361805017428821521e-08,2.407224344687068089e-08,2.452643671945314656e-08,2.498062999203561224e-08,2.543482326461807792e-08,2.588901653720054359e-08,2.634320980978300927e-08,2.679740308236547495e-08,2.725159635494794063e-08,2.770578962753040630e-08,2.815998290011287198e-08,2.861417617269533766e-08 +0.000000000000000000e+00,5.194420249963190892e-10,1.038884049992638178e-09,1.558326074988957268e-09,2.077768099985276357e-09,2.597210124981595653e-09,3.116652149977914949e-09,3.636094174974234245e-09,4.155536199970553541e-09,4.674978224966872837e-09,5.194420249963192133e-09,5.713862274959511429e-09,6.233304299955830724e-09,6.752746324952150020e-09,7.272188349948469316e-09,7.791630374944787785e-09,8.311072399941105427e-09,8.830514424937423068e-09,9.349956449933740710e-09,9.869398474930058352e-09,1.038884049992637599e-08,1.090828252492269363e-08,1.142772454991901128e-08,1.194716657491532892e-08,1.246660859991164656e-08,1.298605062490796420e-08,1.350549264990428184e-08,1.402493467490059948e-08,1.454437669989691713e-08,1.506381872489323477e-08,1.558326074988955241e-08,1.610270277488587005e-08,1.662214479988218769e-08,1.714158682487850533e-08,1.766102884987482298e-08,1.818047087487114062e-08,1.869991289986745826e-08,1.921935492486377590e-08,1.973879694986009354e-08,2.025823897485641118e-08,2.077768099985272883e-08,2.129712302484904647e-08,2.181656504984536411e-08,2.233600707484168175e-08,2.285544909983799939e-08,2.337489112483431703e-08,2.389433314983063468e-08,2.441377517482695232e-08,2.493321719982326996e-08,2.545265922481958760e-08,2.597210124981590524e-08,2.649154327481222288e-08,2.701098529980854052e-08,2.753042732480485817e-08,2.804986934980117581e-08,2.856931137479749345e-08,2.908875339979381109e-08,2.960819542479012873e-08,3.012763744978644307e-08,3.064707947478275740e-08,3.116652149977907173e-08,3.168596352477538606e-08,3.220540554977170040e-08,3.272484757476801473e-08 +0.000000000000000000e+00,-4.937949415720172468e-10,-9.875898831440344936e-10,-1.481384824716051637e-09,-1.975179766288068574e-09,-2.468974707860085510e-09,-2.962769649432102447e-09,-3.456564591004119384e-09,-3.950359532576136320e-09,-4.444154474148153670e-09,-4.937949415720171021e-09,-5.431744357292188371e-09,-5.925539298864205721e-09,-6.419334240436223071e-09,-6.913129182008240421e-09,-7.406924123580257772e-09,-7.900719065152274295e-09,-8.394514006724290818e-09,-8.888308948296307341e-09,-9.382103889868323864e-09,-9.875898831440340387e-09,-1.036969377301235691e-08,-1.086348871458437343e-08,-1.135728365615638996e-08,-1.185107859772840648e-08,-1.234487353930042300e-08,-1.283866848087243952e-08,-1.333246342244445605e-08,-1.382625836401647257e-08,-1.432005330558848909e-08,-1.481384824716050562e-08,-1.530764318873252214e-08,-1.580143813030453866e-08,-1.629523307187655519e-08,-1.678902801344857171e-08,-1.728282295502058823e-08,-1.777661789659260476e-08,-1.827041283816462128e-08,-1.876420777973663780e-08,-1.925800272130865432e-08,-1.975179766288067085e-08,-2.024559260445268737e-08,-2.073938754602470389e-08,-2.123318248759672042e-08,-2.172697742916873694e-08,-2.222077237074075346e-08,-2.271456731231276999e-08,-2.320836225388478651e-08,-2.370215719545680303e-08,-2.419595213702881955e-08,-2.468974707860083608e-08,-2.518354202017285260e-08,-2.567733696174486912e-08,-2.617113190331688565e-08,-2.666492684488890217e-08,-2.715872178646091869e-08,-2.765251672803293522e-08,-2.814631166960495174e-08,-2.864010661117696826e-08,-2.913390155274898479e-08,-2.962769649432100131e-08,-3.012149143589301783e-08,-3.061528637746503105e-08,-3.110908131903704426e-08 +0.000000000000000000e+00,-4.541932725954985797e-10,-9.083865451909971595e-10,-1.362579817786495791e-09,-1.816773090381994526e-09,-2.270966362977493261e-09,-2.725159635572991995e-09,-3.179352908168490730e-09,-3.633546180763989465e-09,-4.087739453359488613e-09,-4.541932725954987348e-09,-4.996125998550486083e-09,-5.450319271145984818e-09,-5.904512543741483553e-09,-6.358705816336982288e-09,-6.812899088932481022e-09,-7.267092361527979757e-09,-7.721285634123478492e-09,-8.175478906718977227e-09,-8.629672179314475962e-09,-9.083865451909974696e-09,-9.538058724505473431e-09,-9.992251997100972166e-09,-1.044644526969647090e-08,-1.090063854229196964e-08,-1.135483181488746837e-08,-1.180902508748296711e-08,-1.226321836007846584e-08,-1.271741163267396458e-08,-1.317160490526946331e-08,-1.362579817786496204e-08,-1.407999145046046078e-08,-1.453418472305595951e-08,-1.498837799565145825e-08,-1.544257126824695698e-08,-1.589676454084245572e-08,-1.635095781343795445e-08,-1.680515108603345319e-08,-1.725934435862895192e-08,-1.771353763122445066e-08,-1.816773090381994939e-08,-1.862192417641544813e-08,-1.907611744901094686e-08,-1.953031072160644560e-08,-1.998450399420194433e-08,-2.043869726679744307e-08,-2.089289053939294180e-08,-2.134708381198844054e-08,-2.180127708458393927e-08,-2.225547035717943801e-08,-2.270966362977493674e-08,-2.316385690237043548e-08,-2.361805017496593421e-08,-2.407224344756143295e-08,-2.452643672015693168e-08,-2.498062999275243042e-08,-2.543482326534792915e-08,-2.588901653794342788e-08,-2.634320981053892662e-08,-2.679740308313442535e-08,-2.725159635572992409e-08,-2.770578962832542282e-08,-2.815998290092092156e-08,-2.861417617351642029e-08 +0.000000000000000000e+00,-5.194420249936369560e-10,-1.038884049987273912e-09,-1.558326074980910868e-09,-2.077768099974547824e-09,-2.597210124968184573e-09,-3.116652149961821323e-09,-3.636094174955458072e-09,-4.155536199949094821e-09,-4.674978224942731570e-09,-5.194420249936368320e-09,-5.713862274930005069e-09,-6.233304299923641818e-09,-6.752746324917278567e-09,-7.272188349910915317e-09,-7.791630374904552066e-09,-8.311072399898187988e-09,-8.830514424891823910e-09,-9.349956449885459832e-09,-9.869398474879095754e-09,-1.038884049987273168e-08,-1.090828252486636760e-08,-1.142772454986000352e-08,-1.194716657485363944e-08,-1.246660859984727536e-08,-1.298605062484091129e-08,-1.350549264983454721e-08,-1.402493467482818313e-08,-1.454437669982181905e-08,-1.506381872481545332e-08,-1.558326074980908759e-08,-1.610270277480272186e-08,-1.662214479979635612e-08,-1.714158682478999039e-08,-1.766102884978362466e-08,-1.818047087477725893e-08,-1.869991289977089319e-08,-1.921935492476452746e-08,-1.973879694975816173e-08,-2.025823897475179600e-08,-2.077768099974543027e-08,-2.129712302473906453e-08,-2.181656504973269880e-08,-2.233600707472633307e-08,-2.285544909971996734e-08,-2.337489112471360160e-08,-2.389433314970723587e-08,-2.441377517470087014e-08,-2.493321719969450441e-08,-2.545265922468813867e-08,-2.597210124968177294e-08,-2.649154327467540721e-08,-2.701098529966904148e-08,-2.753042732466267575e-08,-2.804986934965631001e-08,-2.856931137464994428e-08,-2.908875339964357855e-08,-2.960819542463721282e-08,-3.012763744963084708e-08,-3.064707947462448135e-08,-3.116652149961811562e-08,-3.168596352461174989e-08,-3.220540554960538415e-08,-3.272484757459901842e-08 +0.000000000000000000e+00,5.489522661732155021e-10,1.097904532346431004e-09,1.646856798519646610e-09,2.195809064692862422e-09,2.744761330866078234e-09,3.293713597039294046e-09,3.842665863212509859e-09,4.391618129385725671e-09,4.940570395558941483e-09,5.489522661732157295e-09,6.038474927905373108e-09,6.587427194078588920e-09,7.136379460251804732e-09,7.685331726425019717e-09,8.234283992598234702e-09,8.783236258771449687e-09,9.332188524944664672e-09,9.881140791117879657e-09,1.043009305729109464e-08,1.097904532346430963e-08,1.152799758963752461e-08,1.207694985581073960e-08,1.262590212198395458e-08,1.317485438815716957e-08,1.372380665433038455e-08,1.427275892050359954e-08,1.482171118667681452e-08,1.537066345285002951e-08,1.591961571902324615e-08,1.646856798519646279e-08,1.701752025136967943e-08,1.756647251754289607e-08,1.811542478371611271e-08,1.866437704988932934e-08,1.921332931606254598e-08,1.976228158223576262e-08,2.031123384840897926e-08,2.086018611458219590e-08,2.140913838075541254e-08,2.195809064692862918e-08,2.250704291310184582e-08,2.305599517927506246e-08,2.360494744544827910e-08,2.415389971162149574e-08,2.470285197779471238e-08,2.525180424396792902e-08,2.580075651014114566e-08,2.634970877631436230e-08,2.689866104248757894e-08,2.744761330866079558e-08,2.799656557483401222e-08,2.854551784100722885e-08,2.909447010718044549e-08,2.964342237335366213e-08,3.019237463952687877e-08,3.074132690570009210e-08,3.129027917187330543e-08,3.183923143804651876e-08,3.238818370421973210e-08,3.293713597039294543e-08,3.348608823656615876e-08,3.403504050273937209e-08,3.458399276891258542e-08 +0.000000000000000000e+00,5.220241805849670655e-10,1.044048361169934131e-09,1.566072541754901196e-09,2.088096722339868262e-09,2.610120902924835327e-09,3.132145083509802393e-09,3.654169264094769458e-09,4.176193444679736524e-09,4.698217625264703176e-09,5.220241805849669828e-09,5.742265986434636479e-09,6.264290167019603131e-09,6.786314347604569783e-09,7.308338528189536435e-09,7.830362708774503087e-09,8.352386889359469739e-09,8.874411069944436391e-09,9.396435250529403043e-09,9.918459431114369694e-09,1.044048361169933635e-08,1.096250779228430300e-08,1.148453197286926965e-08,1.200655615345423630e-08,1.252858033403920295e-08,1.305060451462416961e-08,1.357262869520913626e-08,1.409465287579410291e-08,1.461667705637906956e-08,1.513870123696403621e-08,1.566072541754900287e-08,1.618274959813396952e-08,1.670477377871893617e-08,1.722679795930390282e-08,1.774882213988886947e-08,1.827084632047383612e-08,1.879287050105880278e-08,1.931489468164376943e-08,1.983691886222873608e-08,2.035894304281370273e-08,2.088096722339866938e-08,2.140299140398363604e-08,2.192501558456860269e-08,2.244703976515356934e-08,2.296906394573853599e-08,2.349108812632350264e-08,2.401311230690846930e-08,2.453513648749343595e-08,2.505716066807840260e-08,2.557918484866336925e-08,2.610120902924833590e-08,2.662323320983330255e-08,2.714525739041826921e-08,2.766728157100323586e-08,2.818930575158820251e-08,2.871132993217316916e-08,2.923335411275813581e-08,2.975537829334310247e-08,3.027740247392806581e-08,3.079942665451303246e-08,3.132145083509799911e-08,3.184347501568296576e-08,3.236549919626793242e-08,3.288752337685289907e-08 +0.000000000000000000e+00,5.687837905666109677e-10,1.137567581133221935e-09,1.706351371699832903e-09,2.275135162266443871e-09,2.843918952833055045e-09,3.412702743399666220e-09,3.981486533966277394e-09,4.550270324532888569e-09,5.119054115099499744e-09,5.687837905666110918e-09,6.256621696232722093e-09,6.825405486799333267e-09,7.394189277365944442e-09,7.962973067932556443e-09,8.531756858499167618e-09,9.100540649065778792e-09,9.669324439632389967e-09,1.023810823019900114e-08,1.080689202076561232e-08,1.137567581133222349e-08,1.194445960189883467e-08,1.251324339246544584e-08,1.308202718303205701e-08,1.365081097359866819e-08,1.421959476416527936e-08,1.478837855473189054e-08,1.535716234529850171e-08,1.592594613586511289e-08,1.649472992643172406e-08,1.706351371699833524e-08,1.763229750756494641e-08,1.820108129813155758e-08,1.876986508869816876e-08,1.933864887926477993e-08,1.990743266983139111e-08,2.047621646039800228e-08,2.104500025096461346e-08,2.161378404153122463e-08,2.218256783209783581e-08,2.275135162266444698e-08,2.332013541323105816e-08,2.388891920379766933e-08,2.445770299436428050e-08,2.502648678493089168e-08,2.559527057549750285e-08,2.616405436606411403e-08,2.673283815663072520e-08,2.730162194719733638e-08,2.787040573776394755e-08,2.843918952833055873e-08,2.900797331889716990e-08,2.957675710946378108e-08,3.014554090003039225e-08,3.071432469059700342e-08,3.128310848116361460e-08,3.185189227173022577e-08,3.242067606229683695e-08,3.298945985286344812e-08,3.355824364343005930e-08,3.412702743399667047e-08,3.469581122456328165e-08,3.526459501512989282e-08,3.583337880569650400e-08 +0.000000000000000000e+00,-5.489522661776233407e-10,-1.097904532355246681e-09,-1.646856798532869919e-09,-2.195809064710492949e-09,-2.744761330888115980e-09,-3.293713597065739011e-09,-3.842665863243362041e-09,-4.391618129420985072e-09,-4.940570395598608102e-09,-5.489522661776231133e-09,-6.038474927953854163e-09,-6.587427194131477194e-09,-7.136379460309100224e-09,-7.685331726486724082e-09,-8.234283992664347940e-09,-8.783236258841971798e-09,-9.332188525019595655e-09,-9.881140791197219513e-09,-1.043009305737484337e-08,-1.097904532355246723e-08,-1.152799758973009109e-08,-1.207694985590771494e-08,-1.262590212208533880e-08,-1.317485438826296266e-08,-1.372380665444058652e-08,-1.427275892061821037e-08,-1.482171118679583423e-08,-1.537066345297345809e-08,-1.591961571915108195e-08,-1.646856798532870581e-08,-1.701752025150632966e-08,-1.756647251768395352e-08,-1.811542478386157738e-08,-1.866437705003920124e-08,-1.921332931621682509e-08,-1.976228158239444895e-08,-2.031123384857207281e-08,-2.086018611474969667e-08,-2.140913838092732053e-08,-2.195809064710494438e-08,-2.250704291328256824e-08,-2.305599517946019210e-08,-2.360494744563781596e-08,-2.415389971181543981e-08,-2.470285197799306367e-08,-2.525180424417068753e-08,-2.580075651034831139e-08,-2.634970877652593525e-08,-2.689866104270355910e-08,-2.744761330888118296e-08,-2.799656557505880682e-08,-2.854551784123643068e-08,-2.909447010741405453e-08,-2.964342237359167839e-08,-3.019237463976930225e-08,-3.074132690594692280e-08,-3.129027917212454335e-08,-3.183923143830216390e-08,-3.238818370447978445e-08,-3.293713597065740499e-08,-3.348608823683502554e-08,-3.403504050301264609e-08,-3.458399276919026664e-08 +0.000000000000000000e+00,-5.220241805916331072e-10,-1.044048361183266214e-09,-1.566072541774899322e-09,-2.088096722366532429e-09,-2.610120902958165329e-09,-3.132145083549798230e-09,-3.654169264141431130e-09,-4.176193444733064031e-09,-4.698217625324696931e-09,-5.220241805916329832e-09,-5.742265986507962732e-09,-6.264290167099595632e-09,-6.786314347691228533e-09,-7.308338528282861433e-09,-7.830362708874494334e-09,-8.352386889466126407e-09,-8.874411070057758480e-09,-9.396435250649390553e-09,-9.918459431241022627e-09,-1.044048361183265470e-08,-1.096250779242428677e-08,-1.148453197301591885e-08,-1.200655615360755092e-08,-1.252858033419918299e-08,-1.305060451479081507e-08,-1.357262869538244714e-08,-1.409465287597407921e-08,-1.461667705656571129e-08,-1.513870123715734170e-08,-1.566072541774897212e-08,-1.618274959834060254e-08,-1.670477377893223296e-08,-1.722679795952386338e-08,-1.774882214011549380e-08,-1.827084632070712422e-08,-1.879287050129875464e-08,-1.931489468189038506e-08,-1.983691886248201547e-08,-2.035894304307364589e-08,-2.088096722366527631e-08,-2.140299140425690673e-08,-2.192501558484853715e-08,-2.244703976544016757e-08,-2.296906394603179799e-08,-2.349108812662342841e-08,-2.401311230721505883e-08,-2.453513648780668925e-08,-2.505716066839831966e-08,-2.557918484898995008e-08,-2.610120902958158050e-08,-2.662323321017321092e-08,-2.714525739076484134e-08,-2.766728157135647176e-08,-2.818930575194810218e-08,-2.871132993253973260e-08,-2.923335411313136302e-08,-2.975537829372299343e-08,-3.027740247431462385e-08,-3.079942665490625427e-08,-3.132145083549788469e-08,-3.184347501608951511e-08,-3.236549919668114553e-08,-3.288752337727277595e-08 +0.000000000000000000e+00,-5.687837905590138308e-10,-1.137567581118027662e-09,-1.706351371677041389e-09,-2.275135162236054910e-09,-2.843918952795068430e-09,-3.412702743354081951e-09,-3.981486533913095471e-09,-4.550270324472108992e-09,-5.119054115031122513e-09,-5.687837905590136033e-09,-6.256621696149149554e-09,-6.825405486708163074e-09,-7.394189277267176595e-09,-7.962973067826190943e-09,-8.531756858385205291e-09,-9.100540648944219638e-09,-9.669324439503233986e-09,-1.023810823006224833e-08,-1.080689202062126268e-08,-1.137567581118027703e-08,-1.194445960173929138e-08,-1.251324339229830572e-08,-1.308202718285732007e-08,-1.365081097341633442e-08,-1.421959476397534877e-08,-1.478837855453436312e-08,-1.535716234509337746e-08,-1.592594613565239181e-08,-1.649472992621140616e-08,-1.706351371677042051e-08,-1.763229750732943486e-08,-1.820108129788844920e-08,-1.876986508844746355e-08,-1.933864887900647790e-08,-1.990743266956549225e-08,-2.047621646012450659e-08,-2.104500025068352094e-08,-2.161378404124253529e-08,-2.218256783180154964e-08,-2.275135162236056399e-08,-2.332013541291957833e-08,-2.388891920347859268e-08,-2.445770299403760703e-08,-2.502648678459662138e-08,-2.559527057515563572e-08,-2.616405436571465007e-08,-2.673283815627366442e-08,-2.730162194683267877e-08,-2.787040573739169312e-08,-2.843918952795070746e-08,-2.900797331850972181e-08,-2.957675710906873616e-08,-3.014554089962774720e-08,-3.071432469018676155e-08,-3.128310848074577589e-08,-3.185189227130479024e-08,-3.242067606186380459e-08,-3.298945985242281894e-08,-3.355824364298183328e-08,-3.412702743354084763e-08,-3.469581122409986198e-08,-3.526459501465887633e-08,-3.583337880521789068e-08 +0.000000000000000000e+00,5.894611485381706500e-10,1.178922297076341300e-09,1.768383445614512053e-09,2.357844594152683013e-09,2.947305742690853974e-09,3.536766891229024934e-09,4.126228039767195894e-09,4.715689188305366854e-09,5.305150336843537814e-09,5.894611485381708774e-09,6.484072633919879734e-09,7.073533782458050695e-09,7.662994930996221655e-09,8.252456079534391788e-09,8.841917228072561921e-09,9.431378376610732054e-09,1.002083952514890219e-08,1.061030067368707232e-08,1.119976182222524245e-08,1.178922297076341259e-08,1.237868411930158272e-08,1.296814526783975285e-08,1.355760641637792298e-08,1.414706756491609312e-08,1.473652871345426325e-08,1.532598986199243338e-08,1.591545101053060352e-08,1.650491215906877365e-08,1.709437330760694378e-08,1.768383445614511392e-08,1.827329560468328405e-08,1.886275675322145418e-08,1.945221790175962431e-08,2.004167905029779445e-08,2.063114019883596458e-08,2.122060134737413471e-08,2.181006249591230485e-08,2.239952364445047498e-08,2.298898479298864511e-08,2.357844594152681524e-08,2.416790709006498538e-08,2.475736823860315551e-08,2.534682938714132564e-08,2.593629053567949578e-08,2.652575168421766591e-08,2.711521283275583604e-08,2.770467398129400618e-08,2.829413512983217631e-08,2.888359627837034644e-08,2.947305742690851657e-08,3.006251857544669002e-08,3.065197972398486015e-08,3.124144087252303028e-08,3.183090202106120041e-08,3.242036316959937055e-08,3.300982431813754068e-08,3.359928546667571081e-08,3.418874661521388095e-08,3.477820776375205108e-08,3.536766891229022121e-08,3.595713006082839135e-08,3.654659120936656148e-08,3.713605235790473161e-08 +0.000000000000000000e+00,5.694700683768161435e-10,1.138940136753632287e-09,1.708410205130448327e-09,2.277880273507264160e-09,2.847350341884079994e-09,3.416820410260895827e-09,3.986290478637711660e-09,4.555760547014527493e-09,5.125230615391343327e-09,5.694700683768159160e-09,6.264170752144974993e-09,6.833640820521790826e-09,7.403110888898606660e-09,7.972580957275423320e-09,8.542051025652239981e-09,9.111521094029056641e-09,9.680991162405873302e-09,1.025046123078268996e-08,1.081993129915950662e-08,1.138940136753632328e-08,1.195887143591313994e-08,1.252834150428995660e-08,1.309781157266677326e-08,1.366728164104358992e-08,1.423675170942040659e-08,1.480622177779722325e-08,1.537569184617403825e-08,1.594516191455085326e-08,1.651463198292766826e-08,1.708410205130448327e-08,1.765357211968129828e-08,1.822304218805811328e-08,1.879251225643492829e-08,1.936198232481174329e-08,1.993145239318855830e-08,2.050092246156537331e-08,2.107039252994218831e-08,2.163986259831900332e-08,2.220933266669581832e-08,2.277880273507263333e-08,2.334827280344944834e-08,2.391774287182626334e-08,2.448721294020307835e-08,2.505668300857989336e-08,2.562615307695670836e-08,2.619562314533352337e-08,2.676509321371033837e-08,2.733456328208715338e-08,2.790403335046396839e-08,2.847350341884078339e-08,2.904297348721759840e-08,2.961244355559441340e-08,3.018191362397122841e-08,3.075138369234804342e-08,3.132085376072485842e-08,3.189032382910167343e-08,3.245979389747848843e-08,3.302926396585530344e-08,3.359873403423211845e-08,3.416820410260893345e-08,3.473767417098574846e-08,3.530714423936256347e-08,3.587661430773937847e-08 +0.000000000000000000e+00,6.056853525059503561e-10,1.211370705011900712e-09,1.817056057517851172e-09,2.422741410023801838e-09,3.028426762529752504e-09,3.634112115035703171e-09,4.239797467541653837e-09,4.845482820047604503e-09,5.451168172553555170e-09,6.056853525059505836e-09,6.662538877565456502e-09,7.268224230071407169e-09,7.873909582577358662e-09,8.479594935083309329e-09,9.085280287589259995e-09,9.690965640095210661e-09,1.029665099260116133e-08,1.090233634510711199e-08,1.150802169761306266e-08,1.211370705011901333e-08,1.271939240262496399e-08,1.332507775513091466e-08,1.393076310763686533e-08,1.453644846014281599e-08,1.514213381264876666e-08,1.574781916515471732e-08,1.635350451766066799e-08,1.695918987016661866e-08,1.756487522267256932e-08,1.817056057517851999e-08,1.877624592768447066e-08,1.938193128019042132e-08,1.998761663269637199e-08,2.059330198520232265e-08,2.119898733770827332e-08,2.180467269021422399e-08,2.241035804272017465e-08,2.301604339522612532e-08,2.362172874773207599e-08,2.422741410023802665e-08,2.483309945274397732e-08,2.543878480524992799e-08,2.604447015775587865e-08,2.665015551026182932e-08,2.725584086276777998e-08,2.786152621527373065e-08,2.846721156777968132e-08,2.907289692028563198e-08,2.967858227279158265e-08,3.028426762529753332e-08,3.088995297780348398e-08,3.149563833030943465e-08,3.210132368281538532e-08,3.270700903532133598e-08,3.331269438782728665e-08,3.391837974033323731e-08,3.452406509283918798e-08,3.512975044534513865e-08,3.573543579785108931e-08,3.634112115035703998e-08,3.694680650286299065e-08,3.755249185536894131e-08,3.815817720787489198e-08 +0.000000000000000000e+00,-5.894611485398577882e-10,-1.178922297079715576e-09,-1.768383445619573365e-09,-2.357844594159431153e-09,-2.947305742699288734e-09,-3.536766891239146316e-09,-4.126228039779003897e-09,-4.715689188318861478e-09,-5.305150336858719060e-09,-5.894611485398576641e-09,-6.484072633938434223e-09,-7.073533782478291804e-09,-7.662994931018148558e-09,-8.252456079558006140e-09,-8.841917228097863721e-09,-9.431378376637721303e-09,-1.002083952517757888e-08,-1.061030067371743647e-08,-1.119976182225729405e-08,-1.178922297079715163e-08,-1.237868411933700921e-08,-1.296814526787686679e-08,-1.355760641641672437e-08,-1.414706756495658195e-08,-1.473652871349643954e-08,-1.532598986203629712e-08,-1.591545101057615470e-08,-1.650491215911601228e-08,-1.709437330765586986e-08,-1.768383445619572744e-08,-1.827329560473558502e-08,-1.886275675327544261e-08,-1.945221790181530019e-08,-2.004167905035515777e-08,-2.063114019889501535e-08,-2.122060134743487293e-08,-2.181006249597473051e-08,-2.239952364451458809e-08,-2.298898479305444568e-08,-2.357844594159430326e-08,-2.416790709013416084e-08,-2.475736823867401842e-08,-2.534682938721387600e-08,-2.593629053575373358e-08,-2.652575168429359116e-08,-2.711521283283344874e-08,-2.770467398137330633e-08,-2.829413512991316391e-08,-2.888359627845302149e-08,-2.947305742699287907e-08,-3.006251857553273665e-08,-3.065197972407259423e-08,-3.124144087261245181e-08,-3.183090202115230940e-08,-3.242036316969216698e-08,-3.300982431823202456e-08,-3.359928546677188214e-08,-3.418874661531173972e-08,-3.477820776385159730e-08,-3.536766891239145488e-08,-3.595713006093131247e-08,-3.654659120947117005e-08,-3.713605235801102763e-08 +0.000000000000000000e+00,-5.694700683796515118e-10,-1.138940136759303024e-09,-1.708410205138954639e-09,-2.277880273518606461e-09,-2.847350341898258283e-09,-3.416820410277910105e-09,-3.986290478657562340e-09,-4.555760547037214576e-09,-5.125230615416866812e-09,-5.694700683796519047e-09,-6.264170752176171283e-09,-6.833640820555823518e-09,-7.403110888935475754e-09,-7.972580957315127990e-09,-8.542051025694780225e-09,-9.111521094074432461e-09,-9.680991162454084696e-09,-1.025046123083373693e-08,-1.081993129921338917e-08,-1.138940136759304140e-08,-1.195887143597269364e-08,-1.252834150435234587e-08,-1.309781157273199811e-08,-1.366728164111165035e-08,-1.423675170949130258e-08,-1.480622177787095482e-08,-1.537569184625060871e-08,-1.594516191463026260e-08,-1.651463198300991649e-08,-1.708410205138957038e-08,-1.765357211976922427e-08,-1.822304218814887816e-08,-1.879251225652853205e-08,-1.936198232490818594e-08,-1.993145239328783983e-08,-2.050092246166749372e-08,-2.107039253004714761e-08,-2.163986259842680150e-08,-2.220933266680645539e-08,-2.277880273518610928e-08,-2.334827280356576317e-08,-2.391774287194541706e-08,-2.448721294032507095e-08,-2.505668300870472484e-08,-2.562615307708437873e-08,-2.619562314546403262e-08,-2.676509321384368651e-08,-2.733456328222334040e-08,-2.790403335060299429e-08,-2.847350341898264818e-08,-2.904297348736230207e-08,-2.961244355574195596e-08,-3.018191362412160985e-08,-3.075138369250126374e-08,-3.132085376088091763e-08,-3.189032382926057152e-08,-3.245979389764022541e-08,-3.302926396601987930e-08,-3.359873403439953319e-08,-3.416820410277918708e-08,-3.473767417115884097e-08,-3.530714423953849486e-08,-3.587661430791814875e-08 +0.000000000000000000e+00,-6.056853524963450315e-10,-1.211370704992690063e-09,-1.817056057489035094e-09,-2.422741409985380126e-09,-3.028426762481725157e-09,-3.634112114978070189e-09,-4.239797467474414807e-09,-4.845482819970759424e-09,-5.451168172467104042e-09,-6.056853524963448660e-09,-6.662538877459793278e-09,-7.268224229956137896e-09,-7.873909582452482514e-09,-8.479594934948826305e-09,-9.085280287445170095e-09,-9.690965639941513886e-09,-1.029665099243785768e-08,-1.090233634493420147e-08,-1.150802169743054526e-08,-1.211370704992688905e-08,-1.271939240242323284e-08,-1.332507775491957663e-08,-1.393076310741592042e-08,-1.453644845991226421e-08,-1.514213381240860635e-08,-1.574781916490494848e-08,-1.635350451740129062e-08,-1.695918986989763276e-08,-1.756487522239397489e-08,-1.817056057489031703e-08,-1.877624592738665917e-08,-1.938193127988300130e-08,-1.998761663237934344e-08,-2.059330198487568557e-08,-2.119898733737202771e-08,-2.180467268986836985e-08,-2.241035804236471198e-08,-2.301604339486105412e-08,-2.362172874735739626e-08,-2.422741409985373839e-08,-2.483309945235008053e-08,-2.543878480484642267e-08,-2.604447015734276480e-08,-2.665015550983910694e-08,-2.725584086233544907e-08,-2.786152621483179121e-08,-2.846721156732813335e-08,-2.907289691982447548e-08,-2.967858227232081762e-08,-3.028426762481715976e-08,-3.088995297731350189e-08,-3.149563832980984403e-08,-3.210132368230618616e-08,-3.270700903480252830e-08,-3.331269438729887044e-08,-3.391837973979521257e-08,-3.452406509229155471e-08,-3.512975044478789685e-08,-3.573543579728423898e-08,-3.634112114978058112e-08,-3.694680650227692326e-08,-3.755249185477326539e-08,-3.815817720726960753e-08 +0.000000000000000000e+00,6.212708725135912755e-10,1.242541745027182551e-09,1.863812617540773930e-09,2.485083490054365516e-09,3.106354362567957101e-09,3.727625235081548687e-09,4.348896107595140686e-09,4.970166980108732685e-09,5.591437852622324685e-09,6.212708725135916684e-09,6.833979597649508683e-09,7.455250470163100683e-09,8.076521342676692682e-09,8.697792215190284681e-09,9.319063087703876680e-09,9.940333960217468680e-09,1.056160483273106068e-08,1.118287570524465268e-08,1.180414657775824468e-08,1.242541745027183668e-08,1.304668832278542868e-08,1.366795919529902068e-08,1.428923006781261267e-08,1.491050094032620467e-08,1.553177181283979502e-08,1.615304268535338536e-08,1.677431355786697571e-08,1.739558443038056605e-08,1.801685530289415640e-08,1.863812617540774674e-08,1.925939704792133709e-08,1.988066792043492743e-08,2.050193879294851778e-08,2.112320966546210812e-08,2.174448053797569847e-08,2.236575141048928881e-08,2.298702228300287916e-08,2.360829315551646950e-08,2.422956402803005985e-08,2.485083490054365019e-08,2.547210577305724054e-08,2.609337664557083088e-08,2.671464751808442123e-08,2.733591839059801157e-08,2.795718926311160192e-08,2.857846013562519226e-08,2.919973100813878261e-08,2.982100188065237626e-08,3.044227275316596991e-08,3.106354362567956357e-08,3.168481449819315722e-08,3.230608537070675088e-08,3.292735624322034453e-08,3.354862711573393818e-08,3.416989798824753184e-08,3.479116886076112549e-08,3.541243973327471914e-08,3.603371060578831280e-08,3.665498147830190645e-08,3.727625235081550010e-08,3.789752322332909376e-08,3.851879409584268741e-08,3.914006496835628107e-08 +0.000000000000000000e+00,6.054681274500797137e-10,1.210936254900159427e-09,1.816404382350239038e-09,2.421872509800318441e-09,3.027340637250397845e-09,3.632808764700477248e-09,4.238276892150556652e-09,4.843745019600636055e-09,5.449213147050715459e-09,6.054681274500794862e-09,6.660149401950874266e-09,7.265617529400953669e-09,7.871085656851033900e-09,8.476553784301114958e-09,9.082021911751196016e-09,9.687490039201277074e-09,1.029295816665135813e-08,1.089842629410143919e-08,1.150389442155152025e-08,1.210936254900160131e-08,1.271483067645168236e-08,1.332029880390176342e-08,1.392576693135184448e-08,1.453123505880192554e-08,1.513670318625200659e-08,1.574217131370208765e-08,1.634763944115216871e-08,1.695310756860224977e-08,1.755857569605233083e-08,1.816404382350241188e-08,1.876951195095249294e-08,1.937498007840257400e-08,1.998044820585265506e-08,2.058591633330273612e-08,2.119138446075281717e-08,2.179685258820289823e-08,2.240232071565297929e-08,2.300778884310306035e-08,2.361325697055314141e-08,2.421872509800322246e-08,2.482419322545330352e-08,2.542966135290338458e-08,2.603512948035346564e-08,2.664059760780354669e-08,2.724606573525362775e-08,2.785153386270370881e-08,2.845700199015378987e-08,2.906247011760387093e-08,2.966793824505395198e-08,3.027340637250403304e-08,3.087887449995411741e-08,3.148434262740420177e-08,3.208981075485428614e-08,3.269527888230437051e-08,3.330074700975445487e-08,3.390621513720453924e-08,3.451168326465462361e-08,3.511715139210470797e-08,3.572261951955479234e-08,3.632808764700487671e-08,3.693355577445496107e-08,3.753902390190504544e-08,3.814449202935512981e-08 +0.000000000000000000e+00,6.355986638056674202e-10,1.271197327611334840e-09,1.906795991417002364e-09,2.542394655222670094e-09,3.177993319028337825e-09,3.813591982834005555e-09,4.449190646639673286e-09,5.084789310445341016e-09,5.720387974251008746e-09,6.355986638056676477e-09,6.991585301862344207e-09,7.627183965668012765e-09,8.262782629473682150e-09,8.898381293279351534e-09,9.533979957085020919e-09,1.016957862089069030e-08,1.080517728469635969e-08,1.144077594850202907e-08,1.207637461230769846e-08,1.271197327611336784e-08,1.334757193991903723e-08,1.398317060372470661e-08,1.461876926753037600e-08,1.525436793133604538e-08,1.588996659514171477e-08,1.652556525894738415e-08,1.716116392275305354e-08,1.779676258655872292e-08,1.843236125036439231e-08,1.906795991417006169e-08,1.970355857797573108e-08,2.033915724178140046e-08,2.097475590558706984e-08,2.161035456939273923e-08,2.224595323319840861e-08,2.288155189700407800e-08,2.351715056080974738e-08,2.415274922461541677e-08,2.478834788842108615e-08,2.542394655222675554e-08,2.605954521603242492e-08,2.669514387983809431e-08,2.733074254364376369e-08,2.796634120744943308e-08,2.860193987125510246e-08,2.923753853506077185e-08,2.987313719886644123e-08,3.050873586267211062e-08,3.114433452647778000e-08,3.177993319028344939e-08,3.241553185408911877e-08,3.305113051789478816e-08,3.368672918170045754e-08,3.432232784550612692e-08,3.495792650931179631e-08,3.559352517311746569e-08,3.622912383692313508e-08,3.686472250072880446e-08,3.750032116453447385e-08,3.813591982834014323e-08,3.877151849214581262e-08,3.940711715595148200e-08,4.004271581975715139e-08 +0.000000000000000000e+00,-6.212708725139421035e-10,-1.242541745027884207e-09,-1.863812617541826517e-09,-2.485083490055768827e-09,-3.106354362569711138e-09,-3.727625235083653034e-09,-4.348896107597594931e-09,-4.970166980111536828e-09,-5.591437852625478724e-09,-6.212708725139420621e-09,-6.833979597653362518e-09,-7.455250470167304414e-09,-8.076521342681247138e-09,-8.697792215195189862e-09,-9.319063087709132586e-09,-9.940333960223075310e-09,-1.056160483273701803e-08,-1.118287570525096076e-08,-1.180414657776490348e-08,-1.242541745027884621e-08,-1.304668832279278893e-08,-1.366795919530673165e-08,-1.428923006782067438e-08,-1.491050094033461876e-08,-1.553177181284856313e-08,-1.615304268536250751e-08,-1.677431355787645189e-08,-1.739558443039039627e-08,-1.801685530290434065e-08,-1.863812617541828502e-08,-1.925939704793222940e-08,-1.988066792044617378e-08,-2.050193879296011816e-08,-2.112320966547406254e-08,-2.174448053798800692e-08,-2.236575141050195129e-08,-2.298702228301589567e-08,-2.360829315552984005e-08,-2.422956402804378443e-08,-2.485083490055772881e-08,-2.547210577307167318e-08,-2.609337664558561756e-08,-2.671464751809956194e-08,-2.733591839061350632e-08,-2.795718926312745070e-08,-2.857846013564139508e-08,-2.919973100815533945e-08,-2.982100188066928383e-08,-3.044227275318322821e-08,-3.106354362569717259e-08,-3.168481449821111697e-08,-3.230608537072506135e-08,-3.292735624323900572e-08,-3.354862711575295010e-08,-3.416989798826689448e-08,-3.479116886078083886e-08,-3.541243973329478324e-08,-3.603371060580872761e-08,-3.665498147832267199e-08,-3.727625235083661637e-08,-3.789752322335056075e-08,-3.851879409586450513e-08,-3.914006496837844951e-08 +0.000000000000000000e+00,-6.054681274509033788e-10,-1.210936254901806758e-09,-1.816404382352710240e-09,-2.421872509803613929e-09,-3.027340637254517618e-09,-3.632808764705421307e-09,-4.238276892156324582e-09,-4.843745019607227858e-09,-5.449213147058131133e-09,-6.054681274509034408e-09,-6.660149401959937684e-09,-7.265617529410840959e-09,-7.871085656861744235e-09,-8.476553784312647510e-09,-9.082021911763550786e-09,-9.687490039214454061e-09,-1.029295816666535734e-08,-1.089842629411626061e-08,-1.150389442156716389e-08,-1.210936254901806716e-08,-1.271483067646897044e-08,-1.332029880391987371e-08,-1.392576693137077699e-08,-1.453123505882168026e-08,-1.513670318627258354e-08,-1.574217131372348847e-08,-1.634763944117439340e-08,-1.695310756862529833e-08,-1.755857569607620326e-08,-1.816404382352710819e-08,-1.876951195097801312e-08,-1.937498007842891805e-08,-1.998044820587982298e-08,-2.058591633333072791e-08,-2.119138446078163284e-08,-2.179685258823253777e-08,-2.240232071568344270e-08,-2.300778884313434763e-08,-2.361325697058525256e-08,-2.421872509803615749e-08,-2.482419322548706242e-08,-2.542966135293796735e-08,-2.603512948038887228e-08,-2.664059760783977721e-08,-2.724606573529068214e-08,-2.785153386274158706e-08,-2.845700199019249199e-08,-2.906247011764339692e-08,-2.966793824509430185e-08,-3.027340637254520678e-08,-3.087887449999611171e-08,-3.148434262744701664e-08,-3.208981075489792157e-08,-3.269527888234882650e-08,-3.330074700979973143e-08,-3.390621513725063636e-08,-3.451168326470154129e-08,-3.511715139215244622e-08,-3.572261951960335115e-08,-3.632808764705425608e-08,-3.693355577450516101e-08,-3.753902390195606594e-08,-3.814449202940697087e-08 +0.000000000000000000e+00,-6.355986637960305593e-10,-1.271197327592061119e-09,-1.906795991388091574e-09,-2.542394655184121824e-09,-3.177993318980152073e-09,-3.813591982776182322e-09,-4.449190646572212571e-09,-5.084789310368242820e-09,-5.720387974164273069e-09,-6.355986637960303318e-09,-6.991585301756333567e-09,-7.627183965552362989e-09,-8.262782629348392411e-09,-8.898381293144421833e-09,-9.533979956940451255e-09,-1.016957862073648068e-08,-1.080517728453251010e-08,-1.144077594832853952e-08,-1.207637461212456894e-08,-1.271197327592059836e-08,-1.334757193971662779e-08,-1.398317060351265721e-08,-1.461876926730868663e-08,-1.525436793110471605e-08,-1.588996659490074713e-08,-1.652556525869677820e-08,-1.716116392249280928e-08,-1.779676258628884036e-08,-1.843236125008487143e-08,-1.906795991388090251e-08,-1.970355857767693359e-08,-2.033915724147296466e-08,-2.097475590526899574e-08,-2.161035456906502681e-08,-2.224595323286105789e-08,-2.288155189665708897e-08,-2.351715056045312004e-08,-2.415274922424915112e-08,-2.478834788804518220e-08,-2.542394655184121327e-08,-2.605954521563724435e-08,-2.669514387943327542e-08,-2.733074254322930650e-08,-2.796634120702533758e-08,-2.860193987082136865e-08,-2.923753853461739973e-08,-2.987313719841343081e-08,-3.050873586220946519e-08,-3.114433452600549958e-08,-3.177993318980153396e-08,-3.241553185359756835e-08,-3.305113051739360273e-08,-3.368672918118963712e-08,-3.432232784498567150e-08,-3.495792650878170589e-08,-3.559352517257774027e-08,-3.622912383637377466e-08,-3.686472250016980904e-08,-3.750032116396584343e-08,-3.813591982776187781e-08,-3.877151849155791220e-08,-3.940711715535394658e-08,-4.004271581914998097e-08 +0.000000000000000000e+00,6.340608597608891601e-10,1.268121719521778320e-09,1.902182579282667377e-09,2.536243439043556227e-09,3.170304298804445077e-09,3.804365158565333927e-09,4.438426018326222777e-09,5.072486878087111627e-09,5.706547737848000476e-09,6.340608597608889326e-09,6.974669457369778176e-09,7.608730317130666199e-09,8.242791176891554222e-09,8.876852036652442244e-09,9.510912896413330267e-09,1.014497375617421829e-08,1.077903461593510631e-08,1.141309547569599434e-08,1.204715633545688236e-08,1.268121719521777038e-08,1.331527805497865840e-08,1.394933891473954643e-08,1.458339977450043445e-08,1.521746063426132247e-08,1.585152149402221049e-08,1.648558235378309852e-08,1.711964321354398654e-08,1.775370407330487456e-08,1.838776493306576259e-08,1.902182579282665061e-08,1.965588665258753863e-08,2.028994751234842665e-08,2.092400837210931468e-08,2.155806923187020270e-08,2.219213009163109072e-08,2.282619095139197874e-08,2.346025181115286677e-08,2.409431267091375479e-08,2.472837353067464281e-08,2.536243439043553084e-08,2.599649525019641886e-08,2.663055610995730688e-08,2.726461696971819490e-08,2.789867782947908293e-08,2.853273868923997095e-08,2.916679954900085897e-08,2.980086040876174699e-08,3.043492126852263833e-08,3.106898212828352966e-08,3.170304298804442099e-08,3.233710384780531232e-08,3.297116470756620365e-08,3.360522556732709498e-08,3.423928642708798631e-08,3.487334728684887765e-08,3.550740814660976898e-08,3.614146900637066031e-08,3.677552986613155164e-08,3.740959072589244297e-08,3.804365158565333430e-08,3.867771244541422564e-08,3.931177330517511697e-08,3.994583416493600830e-08 +0.000000000000000000e+00,-6.340608597609249357e-10,-1.268121719521849871e-09,-1.902182579282774910e-09,-2.536243439043700156e-09,-3.170304298804625402e-09,-3.804365158565550648e-09,-4.438426018326475894e-09,-5.072486878087401140e-09,-5.706547737848326386e-09,-6.340608597609251631e-09,-6.974669457370176877e-09,-7.608730317131102950e-09,-8.242791176892029023e-09,-8.876852036652955096e-09,-9.510912896413881169e-09,-1.014497375617480724e-08,-1.077903461593573332e-08,-1.141309547569665939e-08,-1.204715633545758546e-08,-1.268121719521851153e-08,-1.331527805497943761e-08,-1.394933891474036368e-08,-1.458339977450128975e-08,-1.521746063426221583e-08,-1.585152149402314355e-08,-1.648558235378407128e-08,-1.711964321354499901e-08,-1.775370407330592674e-08,-1.838776493306685446e-08,-1.902182579282778219e-08,-1.965588665258870992e-08,-2.028994751234963765e-08,-2.092400837211056537e-08,-2.155806923187149310e-08,-2.219213009163242083e-08,-2.282619095139334856e-08,-2.346025181115427628e-08,-2.409431267091520401e-08,-2.472837353067613174e-08,-2.536243439043705947e-08,-2.599649525019798719e-08,-2.663055610995891492e-08,-2.726461696971984265e-08,-2.789867782948077037e-08,-2.853273868924169810e-08,-2.916679954900262583e-08,-2.980086040876355356e-08,-3.043492126852447798e-08,-3.106898212828540239e-08,-3.170304298804632681e-08,-3.233710384780725123e-08,-3.297116470756817565e-08,-3.360522556732910007e-08,-3.423928642709002449e-08,-3.487334728685094891e-08,-3.550740814661187333e-08,-3.614146900637279774e-08,-3.677552986613372216e-08,-3.740959072589464658e-08,-3.804365158565557100e-08,-3.867771244541649542e-08,-3.931177330517741984e-08,-3.994583416493834426e-08 +0.000000000000000000e+00,-9.622476401878231389e-11,-1.924495280375646278e-10,-2.886742920563469417e-10,-3.848990560751292556e-10,-4.811238200939116212e-10,-5.773485841126939868e-10,-6.735733481314763523e-10,-7.697981121502587179e-10,-8.660228761690410835e-10,-9.622476401878234491e-10,-1.058472404206605815e-09,-1.154697168225388180e-09,-1.250921932244170546e-09,-1.347146696262952911e-09,-1.443371460281735277e-09,-1.539596224300517643e-09,-1.635820988319300008e-09,-1.732045752338082374e-09,-1.828270516356864739e-09,-1.924495280375647312e-09,-2.020720044394429884e-09,-2.116944808413212457e-09,-2.213169572431995029e-09,-2.309394336450777601e-09,-2.405619100469560174e-09,-2.501843864488342746e-09,-2.598068628507125319e-09,-2.694293392525907891e-09,-2.790518156544690463e-09,-2.886742920563473036e-09,-2.982967684582255608e-09,-3.079192448601038180e-09,-3.175417212619820753e-09,-3.271641976638603325e-09,-3.367866740657385898e-09,-3.464091504676168470e-09,-3.560316268694951042e-09,-3.656541032713733615e-09,-3.752765796732516187e-09,-3.848990560751298760e-09,-3.945215324770081332e-09,-4.041440088788863904e-09,-4.137664852807646477e-09,-4.233889616826429049e-09,-4.330114380845211621e-09,-4.426339144863994194e-09,-4.522563908882776766e-09,-4.618788672901559339e-09,-4.715013436920341911e-09,-4.811238200939124483e-09,-4.907462964957907056e-09,-5.003687728976689628e-09,-5.099912492995472201e-09,-5.196137257014254773e-09,-5.292362021033037345e-09,-5.388586785051819918e-09,-5.484811549070602490e-09,-5.581036313089385062e-09,-5.677261077108167635e-09,-5.773485841126950207e-09,-5.869710605145732780e-09,-5.965935369164515352e-09,-6.062160133183297924e-09 +0.000000000000000000e+00,-7.811731392644198487e-10,-1.562346278528839697e-09,-2.343519417793259649e-09,-3.124692557057679808e-09,-3.905865696322099967e-09,-4.687038835586520126e-09,-5.468211974850940285e-09,-6.249385114115360444e-09,-7.030558253379780603e-09,-7.811731392644201589e-09,-8.592904531908621747e-09,-9.374077671173041906e-09,-1.015525081043746207e-08,-1.093642394970188222e-08,-1.171759708896630238e-08,-1.249877022823072254e-08,-1.327994336749514270e-08,-1.406111650675956286e-08,-1.484228964602398302e-08,-1.562346278528840318e-08,-1.640463592455282334e-08,-1.718580906381724349e-08,-1.796698220308166365e-08,-1.874815534234608381e-08,-1.952932848161050397e-08,-2.031050162087492413e-08,-2.109167476013934429e-08,-2.187284789940376445e-08,-2.265402103866818461e-08,-2.343519417793260477e-08,-2.421636731719702492e-08,-2.499754045646144508e-08,-2.577871359572586524e-08,-2.655988673499028540e-08,-2.734105987425470556e-08,-2.812223301351912572e-08,-2.890340615278354588e-08,-2.968457929204796604e-08,-3.046575243131238289e-08,-3.124692557057679974e-08,-3.202809870984121659e-08,-3.280927184910563344e-08,-3.359044498837005029e-08,-3.437161812763446714e-08,-3.515279126689888399e-08,-3.593396440616330084e-08,-3.671513754542771769e-08,-3.749631068469213454e-08,-3.827748382395655139e-08,-3.905865696322096824e-08,-3.983983010248538509e-08,-4.062100324174980194e-08,-4.140217638101421879e-08,-4.218334952027863564e-08,-4.296452265954305249e-08,-4.374569579880746934e-08,-4.452686893807188619e-08,-4.530804207733630304e-08,-4.608921521660071989e-08,-4.687038835586513674e-08,-4.765156149512955359e-08,-4.843273463439397044e-08,-4.921390777365838729e-08 +0.000000000000000000e+00,-3.105302807274560401e-20,-6.210605614549120802e-20,-9.315908421823681203e-20,-1.242121122909824160e-19,-1.552651403637280080e-19,-1.863181684364736000e-19,-2.173711965092191920e-19,-2.484242245819647839e-19,-2.794772526547103759e-19,-3.105302807274559679e-19,-3.415833088002015599e-19,-3.726363368729471518e-19,-4.036893649456927438e-19,-4.347423930184383839e-19,-4.657954210911840240e-19,-4.968484491639296642e-19,-5.279014772366753043e-19,-5.589545053094209444e-19,-5.900075333821665845e-19,-6.210605614549122247e-19,-6.521135895276578648e-19,-6.831666176004035049e-19,-7.142196456731491450e-19,-7.452726737458947851e-19,-7.763257018186404253e-19,-8.073787298913860654e-19,-8.384317579641317055e-19,-8.694847860368773456e-19,-9.005378141096229858e-19,-9.315908421823686259e-19,-9.626438702551142660e-19,-9.936968983278599061e-19,-1.024749926400605546e-18,-1.055802954473351186e-18,-1.086855982546096826e-18,-1.117909010618842467e-18,-1.148962038691588107e-18,-1.180015066764333747e-18,-1.211068094837079387e-18,-1.242121122909825027e-18,-1.273174150982570667e-18,-1.304227179055316307e-18,-1.335280207128061947e-18,-1.366333235200807588e-18,-1.397386263273553228e-18,-1.428439291346298868e-18,-1.459492319419044508e-18,-1.490545347491790148e-18,-1.521598375564535788e-18,-1.552651403637281428e-18,-1.583704431710027068e-18,-1.614757459782772709e-18,-1.645810487855518349e-18,-1.676863515928263989e-18,-1.707916544001009629e-18,-1.738969572073755076e-18,-1.770022600146500524e-18,-1.801075628219245972e-18,-1.832128656291991419e-18,-1.863181684364736867e-18,-1.894234712437482314e-18,-1.925287740510227762e-18,-1.956340768582973209e-18 +0.000000000000000000e+00,-3.142172215020381895e-10,-6.284344430040763791e-10,-9.426516645061145686e-10,-1.256868886008152758e-09,-1.571086107510190948e-09,-1.885303329012229137e-09,-2.199520550514267327e-09,-2.513737772016305516e-09,-2.827954993518343706e-09,-3.142172215020381895e-09,-3.456389436522420085e-09,-3.770606658024458275e-09,-4.084823879526496464e-09,-4.399041101028534654e-09,-4.713258322530572843e-09,-5.027475544032611033e-09,-5.341692765534649222e-09,-5.655909987036687412e-09,-5.970127208538725601e-09,-6.284344430040763791e-09,-6.598561651542801981e-09,-6.912778873044840170e-09,-7.226996094546878360e-09,-7.541213316048916549e-09,-7.855430537550955566e-09,-8.169647759052994583e-09,-8.483864980555033599e-09,-8.798082202057072616e-09,-9.112299423559111633e-09,-9.426516645061150650e-09,-9.740733866563189666e-09,-1.005495108806522868e-08,-1.036916830956726770e-08,-1.068338553106930672e-08,-1.099760275257134573e-08,-1.131181997407338475e-08,-1.162603719557542377e-08,-1.194025441707746278e-08,-1.225447163857950180e-08,-1.256868886008154082e-08,-1.288290608158357983e-08,-1.319712330308561885e-08,-1.351134052458765787e-08,-1.382555774608969688e-08,-1.413977496759173590e-08,-1.445399218909377492e-08,-1.476820941059581393e-08,-1.508242663209785295e-08,-1.539664385359989197e-08,-1.571086107510193098e-08,-1.602507829660397000e-08,-1.633929551810600902e-08,-1.665351273960804803e-08,-1.696772996111008705e-08,-1.728194718261212607e-08,-1.759616440411416508e-08,-1.791038162561620410e-08,-1.822459884711824312e-08,-1.853881606862028213e-08,-1.885303329012232115e-08,-1.916725051162436017e-08,-1.948146773312639918e-08,-1.979568495462843820e-08 +0.000000000000000000e+00,-7.566326230522408218e-10,-1.513265246104481644e-09,-2.269897869156722466e-09,-3.026530492208963287e-09,-3.783163115261204109e-09,-4.539795738313444931e-09,-5.296428361365685753e-09,-6.053060984417926575e-09,-6.809693607470167397e-09,-7.566326230522408218e-09,-8.322958853574649868e-09,-9.079591476626891517e-09,-9.836224099679133166e-09,-1.059285672273137481e-08,-1.134948934578361646e-08,-1.210612196883585811e-08,-1.286275459188809976e-08,-1.361938721494034141e-08,-1.437601983799258306e-08,-1.513265246104482636e-08,-1.588928508409706967e-08,-1.664591770714931297e-08,-1.740255033020155627e-08,-1.815918295325379958e-08,-1.891581557630604288e-08,-1.967244819935828618e-08,-2.042908082241052949e-08,-2.118571344546277279e-08,-2.194234606851501609e-08,-2.269897869156725940e-08,-2.345561131461950270e-08,-2.421224393767174600e-08,-2.496887656072398931e-08,-2.572550918377623261e-08,-2.648214180682847591e-08,-2.723877442988071922e-08,-2.799540705293296252e-08,-2.875203967598520582e-08,-2.950867229903744913e-08,-3.026530492208969243e-08,-3.102193754514193573e-08,-3.177857016819417904e-08,-3.253520279124642234e-08,-3.329183541429866564e-08,-3.404846803735090895e-08,-3.480510066040315225e-08,-3.556173328345539555e-08,-3.631836590650763886e-08,-3.707499852955988216e-08,-3.783163115261212546e-08,-3.858826377566436877e-08,-3.934489639871661207e-08,-4.010152902176885537e-08,-4.085816164482109868e-08,-4.161479426787334198e-08,-4.237142689092558529e-08,-4.312805951397782859e-08,-4.388469213703007189e-08,-4.464132476008231520e-08,-4.539795738313455850e-08,-4.615459000618680180e-08,-4.691122262923904511e-08,-4.766785525229128841e-08 +0.000000000000000000e+00,-8.019340128768425519e-11,-1.603868025753685104e-10,-2.405802038630527527e-10,-3.207736051507369691e-10,-4.009670064384211855e-10,-4.811604077261054019e-10,-5.613538090137896183e-10,-6.415472103014738348e-10,-7.217406115891580512e-10,-8.019340128768422676e-10,-8.821274141645264840e-10,-9.623208154522105970e-10,-1.042514216739894813e-09,-1.122707618027579030e-09,-1.202901019315263246e-09,-1.283094420602947463e-09,-1.363287821890631679e-09,-1.443481223178315896e-09,-1.523674624466000112e-09,-1.603868025753684328e-09,-1.684061427041368545e-09,-1.764254828329052761e-09,-1.844448229616736978e-09,-1.924641630904421194e-09,-2.004835032192105411e-09,-2.085028433479789627e-09,-2.165221834767473843e-09,-2.245415236055158060e-09,-2.325608637342842276e-09,-2.405802038630526493e-09,-2.485995439918210709e-09,-2.566188841205894925e-09,-2.646382242493579142e-09,-2.726575643781263358e-09,-2.806769045068947575e-09,-2.886962446356631791e-09,-2.967155847644316008e-09,-3.047349248932000224e-09,-3.127542650219684440e-09,-3.207736051507368657e-09,-3.287929452795052873e-09,-3.368122854082737090e-09,-3.448316255370421306e-09,-3.528509656658105523e-09,-3.608703057945789739e-09,-3.688896459233473955e-09,-3.769089860521158585e-09,-3.849283261808843215e-09,-3.929476663096527845e-09,-4.009670064384212475e-09,-4.089863465671897105e-09,-4.170056866959581735e-09,-4.250250268247266365e-09,-4.330443669534950995e-09,-4.410637070822635625e-09,-4.490830472110320255e-09,-4.571023873398004885e-09,-4.651217274685689515e-09,-4.731410675973374145e-09,-4.811604077261058776e-09,-4.891797478548743406e-09,-4.971990879836428036e-09,-5.052184281124112666e-09 +0.000000000000000000e+00,-3.902022898940999155e-10,-7.804045797881998310e-10,-1.170606869682299643e-09,-1.560809159576399455e-09,-1.951011449470499267e-09,-2.341213739364599286e-09,-2.731416029258699305e-09,-3.121618319152799324e-09,-3.511820609046899343e-09,-3.902022898940999362e-09,-4.292225188835099381e-09,-4.682427478729199399e-09,-5.072629768623299418e-09,-5.462832058517399437e-09,-5.853034348411499456e-09,-6.243236638305599475e-09,-6.633438928199699494e-09,-7.023641218093799513e-09,-7.413843507987899532e-09,-7.804045797882000378e-09,-8.194248087776102051e-09,-8.584450377670203724e-09,-8.974652667564305397e-09,-9.364854957458407071e-09,-9.755057247352508744e-09,-1.014525953724661042e-08,-1.053546182714071209e-08,-1.092566411703481376e-08,-1.131586640692891544e-08,-1.170606869682301711e-08,-1.209627098671711878e-08,-1.248647327661122046e-08,-1.287667556650532213e-08,-1.326687785639942380e-08,-1.365708014629352548e-08,-1.404728243618762715e-08,-1.443748472608172882e-08,-1.482768701597583050e-08,-1.521788930586993217e-08,-1.560809159576403384e-08,-1.599829388565813552e-08,-1.638849617555223719e-08,-1.677869846544633886e-08,-1.716890075534044054e-08,-1.755910304523454221e-08,-1.794930533512864388e-08,-1.833950762502274556e-08,-1.872970991491684723e-08,-1.911991220481094890e-08,-1.951011449470505057e-08,-1.990031678459915225e-08,-2.029051907449325392e-08,-2.068072136438735559e-08,-2.107092365428145727e-08,-2.146112594417555894e-08,-2.185132823406966061e-08,-2.224153052396376229e-08,-2.263173281385786396e-08,-2.302193510375196563e-08,-2.341213739364606731e-08,-2.380233968354016898e-08,-2.419254197343427065e-08,-2.458274426332837233e-08 +0.000000000000000000e+00,-2.793638919973323966e-20,-5.587277839946647932e-20,-8.380916759919971897e-20,-1.117455567989329586e-19,-1.396819459986662103e-19,-1.676183351983994620e-19,-1.955547243981327137e-19,-2.234911135978659654e-19,-2.514275027975992171e-19,-2.793638919973324688e-19,-3.073002811970657205e-19,-3.352366703967989722e-19,-3.631730595965322239e-19,-3.911094487962654756e-19,-4.190458379959987273e-19,-4.469822271957320271e-19,-4.749186163954653270e-19,-5.028550055951986268e-19,-5.307913947949319267e-19,-5.587277839946652265e-19,-5.866641731943985263e-19,-6.146005623941318262e-19,-6.425369515938651260e-19,-6.704733407935984259e-19,-6.984097299933317257e-19,-7.263461191930650256e-19,-7.542825083927983254e-19,-7.822188975925316252e-19,-8.101552867922649251e-19,-8.380916759919982249e-19,-8.660280651917315248e-19,-8.939644543914648246e-19,-9.219008435911982208e-19,-9.498372327909316169e-19,-9.777736219906650130e-19,-1.005710011190398409e-18,-1.033646400390131805e-18,-1.061582789589865201e-18,-1.089519178789598598e-18,-1.117455567989331994e-18,-1.145391957189065390e-18,-1.173328346388798786e-18,-1.201264735588532182e-18,-1.229201124788265578e-18,-1.257137513987998974e-18,-1.285073903187732371e-18,-1.313010292387465767e-18,-1.340946681587199163e-18,-1.368883070786932559e-18,-1.396819459986665955e-18,-1.424755849186399351e-18,-1.452692238386132747e-18,-1.480628627585866144e-18,-1.508565016785599540e-18,-1.536501405985332936e-18,-1.564437795185066332e-18,-1.592374184384799728e-18,-1.620310573584533124e-18,-1.648246962784266520e-18,-1.676183351983999917e-18,-1.704119741183733313e-18,-1.732056130383466709e-18,-1.759992519583200105e-18 +0.000000000000000000e+00,9.622476396593808725e-11,1.924495279318761745e-10,2.886742918978142618e-10,3.848990558637523490e-10,4.811238198296904880e-10,5.773485837956286269e-10,6.735733477615667659e-10,7.697981117275049048e-10,8.660228756934430438e-10,9.622476396593811827e-10,1.058472403625319322e-09,1.154697167591257461e-09,1.250921931557195600e-09,1.347146695523133739e-09,1.443371459489071878e-09,1.539596223455010016e-09,1.635820987420948155e-09,1.732045751386886294e-09,1.828270515352824433e-09,1.924495279318762779e-09,2.020720043284700918e-09,2.116944807250639057e-09,2.213169571216577196e-09,2.309394335182515335e-09,2.405619099148453474e-09,2.501843863114391613e-09,2.598068627080329752e-09,2.694293391046267891e-09,2.790518155012206030e-09,2.886742918978144169e-09,2.982967682944082308e-09,3.079192446910020447e-09,3.175417210875958585e-09,3.271641974841896724e-09,3.367866738807834863e-09,3.464091502773773002e-09,3.560316266739711141e-09,3.656541030705649280e-09,3.752765794671587419e-09,3.848990558637525558e-09,3.945215322603463697e-09,4.041440086569401836e-09,4.137664850535339975e-09,4.233889614501278114e-09,4.330114378467216253e-09,4.426339142433154392e-09,4.522563906399092531e-09,4.618788670365030670e-09,4.715013434330968809e-09,4.811238198296906948e-09,4.907462962262845087e-09,5.003687726228783226e-09,5.099912490194721365e-09,5.196137254160659503e-09,5.292362018126597642e-09,5.388586782092535781e-09,5.484811546058473920e-09,5.581036310024412059e-09,5.677261073990350198e-09,5.773485837956288337e-09,5.869710601922226476e-09,5.965935365888164615e-09,6.062160129854102754e-09 +0.000000000000000000e+00,7.811731392023613470e-10,1.562346278404722694e-09,2.343519417607084041e-09,3.124692556809445388e-09,3.905865696011807149e-09,4.687038835214168909e-09,5.468211974416530670e-09,6.249385113618892430e-09,7.030558252821254191e-09,7.811731392023615951e-09,8.592904531225977712e-09,9.374077670428339473e-09,1.015525080963070123e-08,1.093642394883306299e-08,1.171759708803542475e-08,1.249877022723778651e-08,1.327994336644014828e-08,1.406111650564251004e-08,1.484228964484487180e-08,1.562346278404723521e-08,1.640463592324960028e-08,1.718580906245196535e-08,1.796698220165433042e-08,1.874815534085669549e-08,1.952932848005906056e-08,2.031050161926142563e-08,2.109167475846379070e-08,2.187284789766615577e-08,2.265402103686852084e-08,2.343519417607088590e-08,2.421636731527325097e-08,2.499754045447561604e-08,2.577871359367798111e-08,2.655988673288034618e-08,2.734105987208271125e-08,2.812223301128507632e-08,2.890340615048744139e-08,2.968457928968980646e-08,3.046575242889217153e-08,3.124692556809453660e-08,3.202809870729690167e-08,3.280927184649926674e-08,3.359044498570163181e-08,3.437161812490399688e-08,3.515279126410636194e-08,3.593396440330872701e-08,3.671513754251109208e-08,3.749631068171345715e-08,3.827748382091582222e-08,3.905865696011818729e-08,3.983983009932055236e-08,4.062100323852291743e-08,4.140217637772528250e-08,4.218334951692764757e-08,4.296452265613001264e-08,4.374569579533237771e-08,4.452686893453474278e-08,4.530804207373710785e-08,4.608921521293947291e-08,4.687038835214183798e-08,4.765156149134420305e-08,4.843273463054656812e-08,4.921390776974893319e-08 +0.000000000000000000e+00,3.902022898320203724e-10,7.804045796640407448e-10,1.170606869496061169e-09,1.560809159328081696e-09,1.951011449160102224e-09,2.341213738992122751e-09,2.731416028824143279e-09,3.121618318656163806e-09,3.511820608488184334e-09,3.902022898320204448e-09,4.292225188152224562e-09,4.682427477984244676e-09,5.072629767816264790e-09,5.462832057648284903e-09,5.853034347480305017e-09,6.243236637312325131e-09,6.633438927144345245e-09,7.023641216976365359e-09,7.413843506808385473e-09,7.804045796640405587e-09,8.194248086472425701e-09,8.584450376304445815e-09,8.974652666136465929e-09,9.364854955968486043e-09,9.755057245800506156e-09,1.014525953563252627e-08,1.053546182546454638e-08,1.092566411529656650e-08,1.131586640512858661e-08,1.170606869496060673e-08,1.209627098479262684e-08,1.248647327462464695e-08,1.287667556445666707e-08,1.326687785428868718e-08,1.365708014412070730e-08,1.404728243395272741e-08,1.443748472378474752e-08,1.482768701361676764e-08,1.521788930344878775e-08,1.560809159328080787e-08,1.599829388311282798e-08,1.638849617294484809e-08,1.677869846277686821e-08,1.716890075260888832e-08,1.755910304244090843e-08,1.794930533227292855e-08,1.833950762210494866e-08,1.872970991193696878e-08,1.911991220176898889e-08,1.951011449160100900e-08,1.990031678143302912e-08,2.029051907126504923e-08,2.068072136109706935e-08,2.107092365092908946e-08,2.146112594076110957e-08,2.185132823059312969e-08,2.224153052042514980e-08,2.263173281025716992e-08,2.302193510008919003e-08,2.341213738992121014e-08,2.380233967975323026e-08,2.419254196958525037e-08,2.458274425941727048e-08 +0.000000000000000000e+00,3.142172214447553634e-10,6.284344428895107269e-10,9.426516643342661420e-10,1.256868885779021661e-09,1.571086107223777179e-09,1.885303328668532698e-09,2.199520550113288216e-09,2.513737771558043735e-09,2.827954993002799253e-09,3.142172214447554772e-09,3.456389435892310290e-09,3.770606657337066222e-09,4.084823878781822155e-09,4.399041100226578087e-09,4.713258321671334019e-09,5.027475543116089951e-09,5.341692764560845883e-09,5.655909986005601815e-09,5.970127207450357747e-09,6.284344428895113680e-09,6.598561650339869612e-09,6.912778871784625544e-09,7.226996093229381476e-09,7.541213314674137408e-09,7.855430536118894167e-09,8.169647757563650927e-09,8.483864979008407686e-09,8.798082200453164445e-09,9.112299421897921205e-09,9.426516643342677964e-09,9.740733864787434723e-09,1.005495108623219148e-08,1.036916830767694824e-08,1.068338552912170500e-08,1.099760275056646176e-08,1.131181997201121852e-08,1.162603719345597528e-08,1.194025441490073204e-08,1.225447163634548880e-08,1.256868885779024556e-08,1.288290607923500232e-08,1.319712330067975908e-08,1.351134052212451583e-08,1.382555774356927259e-08,1.413977496501402935e-08,1.445399218645878611e-08,1.476820940790354287e-08,1.508242662934829798e-08,1.539664385079305308e-08,1.571086107223780819e-08,1.602507829368256329e-08,1.633929551512731840e-08,1.665351273657207350e-08,1.696772995801682861e-08,1.728194717946158371e-08,1.759616440090633882e-08,1.791038162235109392e-08,1.822459884379584903e-08,1.853881606524060413e-08,1.885303328668535924e-08,1.916725050813011434e-08,1.948146772957486945e-08,1.979568495101962455e-08 +0.000000000000000000e+00,7.566326229963804879e-10,1.513265245992760976e-09,2.269897868989141464e-09,3.026530491985521952e-09,3.783163114981902440e-09,4.539795737978282927e-09,5.296428360974663415e-09,6.053060983971043903e-09,6.809693606967424391e-09,7.566326229963804879e-09,8.322958852960185367e-09,9.079591475956565855e-09,9.836224098952946343e-09,1.059285672194932683e-08,1.134948934494570732e-08,1.210612196794208781e-08,1.286275459093846829e-08,1.361938721393484878e-08,1.437601983693122927e-08,1.513265245992760976e-08,1.588928508292398859e-08,1.664591770592036743e-08,1.740255032891674626e-08,1.815918295191312509e-08,1.891581557490950393e-08,1.967244819790588276e-08,2.042908082090226159e-08,2.118571344389864043e-08,2.194234606689501926e-08,2.269897868989139809e-08,2.345561131288777693e-08,2.421224393588415576e-08,2.496887655888053459e-08,2.572550918187691343e-08,2.648214180487329226e-08,2.723877442786967109e-08,2.799540705086604993e-08,2.875203967386242876e-08,2.950867229685880760e-08,3.026530491985518643e-08,3.102193754285156526e-08,3.177857016584794410e-08,3.253520278884432293e-08,3.329183541184070176e-08,3.404846803483708060e-08,3.480510065783345943e-08,3.556173328082983826e-08,3.631836590382621710e-08,3.707499852682259593e-08,3.783163114981897476e-08,3.858826377281535360e-08,3.934489639581173243e-08,4.010152901880811126e-08,4.085816164180449010e-08,4.161479426480086893e-08,4.237142688779724777e-08,4.312805951079362660e-08,4.388469213379000543e-08,4.464132475678638427e-08,4.539795737978276310e-08,4.615459000277914193e-08,4.691122262577552077e-08,4.766785524877189960e-08 +0.000000000000000000e+00,8.019340124323350778e-11,1.603868024864670156e-10,2.405802037297005363e-10,3.207736049729340828e-10,4.009670062161676294e-10,4.811604074594011759e-10,5.613538087026347742e-10,6.415472099458683724e-10,7.217406111891019707e-10,8.019340124323355689e-10,8.821274136755691672e-10,9.623208149188027655e-10,1.042514216162036364e-09,1.122707617405269962e-09,1.202901018648503560e-09,1.283094419891737158e-09,1.363287821134970757e-09,1.443481222378204355e-09,1.523674623621437953e-09,1.603868024864671551e-09,1.684061426107905150e-09,1.764254827351138748e-09,1.844448228594372346e-09,1.924641629837605944e-09,2.004835031080839543e-09,2.085028432324073141e-09,2.165221833567306739e-09,2.245415234810540338e-09,2.325608636053773936e-09,2.405802037297007534e-09,2.485995438540241132e-09,2.566188839783474731e-09,2.646382241026708329e-09,2.726575642269941927e-09,2.806769043513175525e-09,2.886962444756409124e-09,2.967155845999642722e-09,3.047349247242876320e-09,3.127542648486109918e-09,3.207736049729343517e-09,3.287929450972577115e-09,3.368122852215810713e-09,3.448316253459044311e-09,3.528509654702277910e-09,3.608703055945511508e-09,3.688896457188745106e-09,3.769089858431978291e-09,3.849283259675211062e-09,3.929476660918443833e-09,4.009670062161676604e-09,4.089863463404909375e-09,4.170056864648142146e-09,4.250250265891374917e-09,4.330443667134607688e-09,4.410637068377840459e-09,4.490830469621073230e-09,4.571023870864306001e-09,4.651217272107538773e-09,4.731410673350771544e-09,4.811604074594004315e-09,4.891797475837237086e-09,4.971990877080469857e-09,5.052184278323702628e-09 +0.000000000000000000e+00,2.139414273107720047e-10,4.278828546215440095e-10,6.418242819323160401e-10,8.557657092430881223e-10,1.069707136553860205e-09,1.283648563864632287e-09,1.497589991175404369e-09,1.711531418486176451e-09,1.925472845796948534e-09,2.139414273107720409e-09,2.353355700418492285e-09,2.567297127729264160e-09,2.781238555040036036e-09,2.995179982350807911e-09,3.209121409661579787e-09,3.423062836972351662e-09,3.637004264283123538e-09,3.850945691593895413e-09,4.064887118904667702e-09,4.278828546215439991e-09,4.492769973526212280e-09,4.706711400836984569e-09,4.920652828147756859e-09,5.134594255458529148e-09,5.348535682769301437e-09,5.562477110080073726e-09,5.776418537390846015e-09,5.990359964701618304e-09,6.204301392012390593e-09,6.418242819323162882e-09,6.632184246633935171e-09,6.846125673944707460e-09,7.060067101255479749e-09,7.274008528566252038e-09,7.487949955877024327e-09,7.701891383187795789e-09,7.915832810498567251e-09,8.129774237809338713e-09,8.343715665120110175e-09,8.557657092430881637e-09,8.771598519741653099e-09,8.985539947052424561e-09,9.199481374363196023e-09,9.413422801673967485e-09,9.627364228984738946e-09,9.841305656295510408e-09,1.005524708360628187e-08,1.026918851091705333e-08,1.048312993822782479e-08,1.069707136553859626e-08,1.091101279284936772e-08,1.112495422016013918e-08,1.133889564747091064e-08,1.155283707478168210e-08,1.176677850209245357e-08,1.198071992940322503e-08,1.219466135671399649e-08,1.240860278402476795e-08,1.262254421133553941e-08,1.283648563864631087e-08,1.305042706595708234e-08,1.326436849326785380e-08,1.347830992057862526e-08 +0.000000000000000000e+00,9.091723324842155056e-11,1.818344664968431011e-10,2.727516997452646517e-10,3.636689329936862022e-10,4.545861662421077528e-10,5.455033994905293033e-10,6.364206327389508022e-10,7.273378659873723010e-10,8.182550992357937999e-10,9.091723324842152988e-10,1.000089565732636798e-09,1.091006798981058400e-09,1.181924032229480002e-09,1.272841265477901604e-09,1.363758498726323207e-09,1.454675731974744809e-09,1.545592965223166411e-09,1.636510198471588013e-09,1.727427431720009616e-09,1.818344664968431218e-09,1.909261898216852820e-09,2.000179131465274422e-09,2.091096364713696025e-09,2.182013597962117627e-09,2.272930831210539229e-09,2.363848064458960831e-09,2.454765297707382434e-09,2.545682530955804036e-09,2.636599764204225638e-09,2.727516997452647240e-09,2.818434230701068843e-09,2.909351463949490445e-09,3.000268697197912047e-09,3.091185930446333649e-09,3.182103163694755252e-09,3.273020396943176854e-09,3.363937630191598456e-09,3.454854863440020058e-09,3.545772096688441661e-09,3.636689329936863263e-09,3.727606563185285279e-09,3.818523796433707295e-09,3.909441029682129311e-09,4.000358262930551326e-09,4.091275496178973342e-09,4.182192729427395358e-09,4.273109962675817374e-09,4.364027195924239390e-09,4.454944429172661406e-09,4.545861662421083421e-09,4.636778895669505437e-09,4.727696128917927453e-09,4.818613362166349469e-09,4.909530595414771485e-09,5.000447828663193501e-09,5.091365061911615516e-09,5.182282295160037532e-09,5.273199528408459548e-09,5.364116761656881564e-09,5.455033994905303580e-09,5.545951228153725596e-09,5.636868461402147612e-09,5.727785694650569627e-09 +0.000000000000000000e+00,2.165975233983103209e-10,4.331950467966206419e-10,6.497925701949309628e-10,8.663900935932412837e-10,1.082987616991551501e-09,1.299585140389861719e-09,1.516182663788171936e-09,1.732780187186482154e-09,1.949377710584792371e-09,2.165975233983102589e-09,2.382572757381412806e-09,2.599170280779723024e-09,2.815767804178033242e-09,3.032365327576343459e-09,3.248962850974653677e-09,3.465560374372963894e-09,3.682157897771274112e-09,3.898755421169583916e-09,4.115352944567893306e-09,4.331950467966202696e-09,4.548547991364512087e-09,4.765145514762821477e-09,4.981743038161130867e-09,5.198340561559440258e-09,5.414938084957749648e-09,5.631535608356059038e-09,5.848133131754368429e-09,6.064730655152677819e-09,6.281328178550987210e-09,6.497925701949296600e-09,6.714523225347605990e-09,6.931120748745915381e-09,7.147718272144224771e-09,7.364315795542534161e-09,7.580913318940843552e-09,7.797510842339152942e-09,8.014108365737462332e-09,8.230705889135771723e-09,8.447303412534081113e-09,8.663900935932390503e-09,8.880498459330699894e-09,9.097095982729009284e-09,9.313693506127318675e-09,9.530291029525628065e-09,9.746888552923937455e-09,9.963486076322246846e-09,1.018008359972055624e-08,1.039668112311886563e-08,1.061327864651717502e-08,1.082987616991548441e-08,1.104647369331379380e-08,1.126307121671210319e-08,1.147966874011041258e-08,1.169626626350872197e-08,1.191286378690703136e-08,1.212946131030534075e-08,1.234605883370365014e-08,1.256265635710195953e-08,1.277925388050026892e-08,1.299585140389857831e-08,1.321244892729688770e-08,1.342904645069519709e-08,1.364564397409350648e-08 +0.000000000000000000e+00,-2.139414273559997591e-10,-4.278828547119995182e-10,-6.418242820679993031e-10,-8.557657094239991397e-10,-1.069707136779998976e-09,-1.283648564135998813e-09,-1.497589991491998650e-09,-1.711531418847998486e-09,-1.925472846203998323e-09,-2.139414273559997953e-09,-2.353355700915997583e-09,-2.567297128271997212e-09,-2.781238555627996842e-09,-2.995179982983996472e-09,-3.209121410339996102e-09,-3.423062837695995732e-09,-3.637004265051995362e-09,-3.850945692407994991e-09,-4.064887119763994208e-09,-4.278828547119993424e-09,-4.492769974475992640e-09,-4.706711401831991856e-09,-4.920652829187991073e-09,-5.134594256543990289e-09,-5.348535683899989505e-09,-5.562477111255988721e-09,-5.776418538611987938e-09,-5.990359965967987154e-09,-6.204301393323986370e-09,-6.418242820679985586e-09,-6.632184248035984803e-09,-6.846125675391984019e-09,-7.060067102747983235e-09,-7.274008530103982451e-09,-7.487949957459981668e-09,-7.701891384815981711e-09,-7.915832812171981755e-09,-8.129774239527981798e-09,-8.343715666883981841e-09,-8.557657094239981885e-09,-8.771598521595981928e-09,-8.985539948951981972e-09,-9.199481376307982015e-09,-9.413422803663982059e-09,-9.627364231019982102e-09,-9.841305658375982145e-09,-1.005524708573198219e-08,-1.026918851308798223e-08,-1.048312994044398228e-08,-1.069707136779998232e-08,-1.091101279515598236e-08,-1.112495422251198241e-08,-1.133889564986798245e-08,-1.155283707722398249e-08,-1.176677850457998254e-08,-1.198071993193598258e-08,-1.219466135929198262e-08,-1.240860278664798267e-08,-1.262254421400398271e-08,-1.283648564135998275e-08,-1.305042706871598280e-08,-1.326436849607198284e-08,-1.347830992342798288e-08 +0.000000000000000000e+00,-9.091723329724695896e-11,-1.818344665944939179e-10,-2.727516998917408640e-10,-3.636689331889877841e-10,-4.545861664862347043e-10,-5.455033997834816245e-10,-6.364206330807285964e-10,-7.273378663779755683e-10,-8.182550996752225402e-10,-9.091723329724695121e-10,-1.000089566269716484e-09,-1.091006799566963456e-09,-1.181924032864210428e-09,-1.272841266161457400e-09,-1.363758499458704371e-09,-1.454675732755951343e-09,-1.545592966053198315e-09,-1.636510199350445287e-09,-1.727427432647692259e-09,-1.818344665944939231e-09,-1.909261899242186203e-09,-2.000179132539432968e-09,-2.091096365836679733e-09,-2.182013599133926498e-09,-2.272930832431173263e-09,-2.363848065728420028e-09,-2.454765299025666793e-09,-2.545682532322913558e-09,-2.636599765620160324e-09,-2.727516998917407089e-09,-2.818434232214653854e-09,-2.909351465511900619e-09,-3.000268698809147384e-09,-3.091185932106394149e-09,-3.182103165403640914e-09,-3.273020398700887679e-09,-3.363937631998134444e-09,-3.454854865295381209e-09,-3.545772098592627974e-09,-3.636689331889874740e-09,-3.727606565187121918e-09,-3.818523798484369097e-09,-3.909441031781616276e-09,-4.000358265078863454e-09,-4.091275498376110633e-09,-4.182192731673357812e-09,-4.273109964970604990e-09,-4.364027198267852169e-09,-4.454944431565099348e-09,-4.545861664862346526e-09,-4.636778898159593705e-09,-4.727696131456840884e-09,-4.818613364754088062e-09,-4.909530598051335241e-09,-5.000447831348582420e-09,-5.091365064645829598e-09,-5.182282297943076777e-09,-5.273199531240323956e-09,-5.364116764537571134e-09,-5.455033997834818313e-09,-5.545951231132065492e-09,-5.636868464429312670e-09,-5.727785697726559849e-09 +0.000000000000000000e+00,-2.165975234335781228e-10,-4.331950468671562456e-10,-6.497925703007343942e-10,-8.663900937343125945e-10,-1.082987617167890691e-09,-1.299585140601468788e-09,-1.516182664035046885e-09,-1.732780187468624982e-09,-1.949377710902203079e-09,-2.165975234335781383e-09,-2.382572757769359687e-09,-2.599170281202937990e-09,-2.815767804636516294e-09,-3.032365328070094598e-09,-3.248962851503672901e-09,-3.465560374937251205e-09,-3.682157898370829509e-09,-3.898755421804407813e-09,-4.115352945237985703e-09,-4.331950468671563593e-09,-4.548547992105141483e-09,-4.765145515538719373e-09,-4.981743038972297263e-09,-5.198340562405875153e-09,-5.414938085839453044e-09,-5.631535609273030934e-09,-5.848133132706608824e-09,-6.064730656140186714e-09,-6.281328179573764604e-09,-6.497925703007342494e-09,-6.714523226440920384e-09,-6.931120749874498275e-09,-7.147718273308076165e-09,-7.364315796741654055e-09,-7.580913320175231945e-09,-7.797510843608810662e-09,-8.014108367042389380e-09,-8.230705890475968097e-09,-8.447303413909546814e-09,-8.663900937343125531e-09,-8.880498460776704249e-09,-9.097095984210282966e-09,-9.313693507643861683e-09,-9.530291031077440401e-09,-9.746888554511019118e-09,-9.963486077944597835e-09,-1.018008360137817655e-08,-1.039668112481175527e-08,-1.061327864824533399e-08,-1.082987617167891270e-08,-1.104647369511249142e-08,-1.126307121854607014e-08,-1.147966874197964886e-08,-1.169626626541322757e-08,-1.191286378884680629e-08,-1.212946131228038501e-08,-1.234605883571396373e-08,-1.256265635914754244e-08,-1.277925388258112116e-08,-1.299585140601469988e-08,-1.321244892944827860e-08,-1.342904645288185731e-08,-1.364564397631543603e-08 +0.000000000000000000e+00,3.692233123895398666e-10,7.384466247790797331e-10,1.107669937168619600e-09,1.476893249558159466e-09,1.846116561947699333e-09,2.215339874337239199e-09,2.584563186726778859e-09,2.953786499116318519e-09,3.323009811505858179e-09,3.692233123895397838e-09,4.061456436284937498e-09,4.430679748674477572e-09,4.799903061064017645e-09,5.169126373453557718e-09,5.538349685843097792e-09,5.907572998232637865e-09,6.276796310622177938e-09,6.646019623011718012e-09,7.015242935401258085e-09,7.384466247790798159e-09,7.753689560180337405e-09,8.122912872569876651e-09,8.492136184959415897e-09,8.861359497348955143e-09,9.230582809738494389e-09,9.599806122128033636e-09,9.969029434517572882e-09,1.033825274690711213e-08,1.070747605929665137e-08,1.107669937168619062e-08,1.144592268407572987e-08,1.181514599646526911e-08,1.218436930885480836e-08,1.255359262124434761e-08,1.292281593363388685e-08,1.329203924602342610e-08,1.366126255841296534e-08,1.403048587080250459e-08,1.439970918319204384e-08,1.476893249558158308e-08,1.513815580797112233e-08,1.550737912036066157e-08,1.587660243275020082e-08,1.624582574513974007e-08,1.661504905752927931e-08,1.698427236991881856e-08,1.735349568230835781e-08,1.772271899469789705e-08,1.809194230708743630e-08,1.846116561947697554e-08,1.883038893186651479e-08,1.919961224425605404e-08,1.956883555664559328e-08,1.993805886903513253e-08,2.030728218142467177e-08,2.067650549381421102e-08,2.104572880620375027e-08,2.141495211859328951e-08,2.178417543098282876e-08,2.215339874337236801e-08,2.252262205576190725e-08,2.289184536815144650e-08,2.326106868054098574e-08 +0.000000000000000000e+00,2.999378161453109536e-10,5.998756322906219072e-10,8.998134484359328608e-10,1.199751264581243814e-09,1.499689080726554768e-09,1.799626896871865722e-09,2.099564713017176675e-09,2.399502529162487629e-09,2.699440345307798582e-09,2.999378161453109536e-09,3.299315977598420490e-09,3.599253793743731443e-09,3.899191609889042397e-09,4.199129426034353351e-09,4.499067242179664304e-09,4.799005058324975258e-09,5.098942874470286211e-09,5.398880690615597165e-09,5.698818506760908119e-09,5.998756322906219072e-09,6.298694139051530026e-09,6.598631955196840979e-09,6.898569771342151933e-09,7.198507587487462887e-09,7.498445403632773840e-09,7.798383219778084794e-09,8.098321035923395747e-09,8.398258852068706701e-09,8.698196668214017655e-09,8.998134484359328608e-09,9.298072300504639562e-09,9.598010116649950515e-09,9.897947932795261469e-09,1.019788574894057242e-08,1.049782356508588338e-08,1.079776138123119433e-08,1.109769919737650528e-08,1.139763701352181624e-08,1.169757482966712719e-08,1.199751264581243814e-08,1.229745046195774910e-08,1.259738827810306005e-08,1.289732609424837101e-08,1.319726391039368196e-08,1.349720172653899291e-08,1.379713954268430387e-08,1.409707735882961482e-08,1.439701517497492577e-08,1.469695299112023673e-08,1.499689080726554768e-08,1.529682862341085863e-08,1.559676643955616959e-08,1.589670425570148054e-08,1.619664207184679149e-08,1.649657988799210245e-08,1.679651770413741340e-08,1.709645552028272436e-08,1.739639333642803531e-08,1.769633115257334626e-08,1.799626896871865722e-08,1.829620678486396817e-08,1.859614460100927912e-08,1.889608241715459008e-08 +0.000000000000000000e+00,3.682817649550417495e-10,7.365635299100834991e-10,1.104845294865125300e-09,1.473127059820167205e-09,1.841408824775209110e-09,2.209690589730251014e-09,2.577972354685292712e-09,2.946254119640334410e-09,3.314535884595376108e-09,3.682817649550417806e-09,4.051099414505459503e-09,4.419381179460501201e-09,4.787662944415542899e-09,5.155944709370584597e-09,5.524226474325626295e-09,5.892508239280667993e-09,6.260790004235709691e-09,6.629071769190751388e-09,6.997353534145793086e-09,7.365635299100834784e-09,7.733917064055875655e-09,8.102198829010917353e-09,8.470480593965959050e-09,8.838762358921000748e-09,9.207044123876042446e-09,9.575325888831084144e-09,9.943607653786125842e-09,1.031188941874116754e-08,1.068017118369620924e-08,1.104845294865125094e-08,1.141673471360629263e-08,1.178501647856133433e-08,1.215329824351637603e-08,1.252158000847141773e-08,1.288986177342645942e-08,1.325814353838150112e-08,1.362642530333654282e-08,1.399470706829158452e-08,1.436298883324662622e-08,1.473127059820166791e-08,1.509955236315670961e-08,1.546783412811175131e-08,1.583611589306679301e-08,1.620439765802183471e-08,1.657267942297687640e-08,1.694096118793191810e-08,1.730924295288695980e-08,1.767752471784200150e-08,1.804580648279704319e-08,1.841408824775208489e-08,1.878237001270712659e-08,1.915065177766216829e-08,1.951893354261720999e-08,1.988721530757225168e-08,2.025549707252729338e-08,2.062377883748233508e-08,2.099206060243737678e-08,2.136034236739241848e-08,2.172862413234746017e-08,2.209690589730250187e-08,2.246518766225754357e-08,2.283346942721258527e-08,2.320175119216762696e-08 +0.000000000000000000e+00,-3.692233124282096296e-10,-7.384466248564192593e-10,-1.107669937284628992e-09,-1.476893249712838725e-09,-1.846116562141048458e-09,-2.215339874569257985e-09,-2.584563186997467511e-09,-2.953786499425677037e-09,-3.323009811853886563e-09,-3.692233124282096089e-09,-4.061456436710306029e-09,-4.430679749138515969e-09,-4.799903061566725909e-09,-5.169126373994935849e-09,-5.538349686423145789e-09,-5.907572998851355728e-09,-6.276796311279565668e-09,-6.646019623707775608e-09,-7.015242936135985548e-09,-7.384466248564195488e-09,-7.753689560992405427e-09,-8.122912873420615367e-09,-8.492136185848825307e-09,-8.861359498277035247e-09,-9.230582810705245187e-09,-9.599806123133455127e-09,-9.969029435561665066e-09,-1.033825274798987501e-08,-1.070747606041808495e-08,-1.107669937284629489e-08,-1.144592268527450483e-08,-1.181514599770271477e-08,-1.218436931013092471e-08,-1.255359262255913465e-08,-1.292281593498734458e-08,-1.329203924741555452e-08,-1.366126255984376446e-08,-1.403048587227197440e-08,-1.439970918470018434e-08,-1.476893249712839428e-08,-1.513815580955660257e-08,-1.550737912198481085e-08,-1.587660243441301914e-08,-1.624582574684122743e-08,-1.661504905926943571e-08,-1.698427237169764400e-08,-1.735349568412585228e-08,-1.772271899655406057e-08,-1.809194230898226885e-08,-1.846116562141047714e-08,-1.883038893383868542e-08,-1.919961224626689371e-08,-1.956883555869510200e-08,-1.993805887112331028e-08,-2.030728218355151857e-08,-2.067650549597972685e-08,-2.104572880840793514e-08,-2.141495212083614342e-08,-2.178417543326435171e-08,-2.215339874569255999e-08,-2.252262205812076828e-08,-2.289184537054897656e-08,-2.326106868297718485e-08 +0.000000000000000000e+00,-2.999378161871962262e-10,-5.998756323743924524e-10,-8.998134485615886269e-10,-1.199751264748784698e-09,-1.499689080935980769e-09,-1.799626897123176840e-09,-2.099564713310372911e-09,-2.399502529497568982e-09,-2.699440345684765054e-09,-2.999378161871961125e-09,-3.299315978059157196e-09,-3.599253794246353267e-09,-3.899191610433548924e-09,-4.199129426620744995e-09,-4.499067242807941067e-09,-4.799005058995137138e-09,-5.098942875182333209e-09,-5.398880691369529280e-09,-5.698818507556725351e-09,-5.998756323743921422e-09,-6.298694139931117493e-09,-6.598631956118313564e-09,-6.898569772305509635e-09,-7.198507588492705707e-09,-7.498445404679901778e-09,-7.798383220867097849e-09,-8.098321037054293920e-09,-8.398258853241489991e-09,-8.698196669428686062e-09,-8.998134485615882133e-09,-9.298072301803078204e-09,-9.598010117990274275e-09,-9.897947934177470346e-09,-1.019788575036466642e-08,-1.049782356655186249e-08,-1.079776138273905856e-08,-1.109769919892625463e-08,-1.139763701511345070e-08,-1.169757483130064677e-08,-1.199751264748784284e-08,-1.229745046367503892e-08,-1.259738827986223499e-08,-1.289732609604943106e-08,-1.319726391223662713e-08,-1.349720172842382320e-08,-1.379713954461101927e-08,-1.409707736079821534e-08,-1.439701517698541141e-08,-1.469695299317260748e-08,-1.499689080935980356e-08,-1.529682862554699963e-08,-1.559676644173419570e-08,-1.589670425792139177e-08,-1.619664207410858784e-08,-1.649657989029578391e-08,-1.679651770648297998e-08,-1.709645552267017605e-08,-1.739639333885737212e-08,-1.769633115504456820e-08,-1.799626897123176427e-08,-1.829620678741896034e-08,-1.859614460360615641e-08,-1.889608241979335248e-08 +0.000000000000000000e+00,-3.682817649829629209e-10,-7.365635299659258419e-10,-1.104845294948888711e-09,-1.473127059931851477e-09,-1.841408824914814243e-09,-2.209690589897777009e-09,-2.577972354880739774e-09,-2.946254119863702540e-09,-3.314535884846665306e-09,-3.682817649829628072e-09,-4.051099414812590838e-09,-4.419381179795553190e-09,-4.787662944778515542e-09,-5.155944709761477894e-09,-5.524226474744440247e-09,-5.892508239727402599e-09,-6.260790004710364951e-09,-6.629071769693327303e-09,-6.997353534676289656e-09,-7.365635299659252008e-09,-7.733917064642214360e-09,-8.102198829625176712e-09,-8.470480594608139065e-09,-8.838762359591101417e-09,-9.207044124574063769e-09,-9.575325889557026121e-09,-9.943607654539988474e-09,-1.031188941952295083e-08,-1.068017118450591318e-08,-1.104845294948887553e-08,-1.141673471447183788e-08,-1.178501647945480023e-08,-1.215329824443776259e-08,-1.252158000942072494e-08,-1.288986177440368729e-08,-1.325814353938664964e-08,-1.362642530436961200e-08,-1.399470706935257435e-08,-1.436298883433553670e-08,-1.473127059931849905e-08,-1.509955236430146140e-08,-1.546783412928442210e-08,-1.583611589426738280e-08,-1.620439765925034350e-08,-1.657267942423330420e-08,-1.694096118921626489e-08,-1.730924295419922559e-08,-1.767752471918218629e-08,-1.804580648416514699e-08,-1.841408824914810769e-08,-1.878237001413106838e-08,-1.915065177911402908e-08,-1.951893354409698978e-08,-1.988721530907995048e-08,-2.025549707406291118e-08,-2.062377883904587187e-08,-2.099206060402883257e-08,-2.136034236901179327e-08,-2.172862413399475397e-08,-2.209690589897771466e-08,-2.246518766396067536e-08,-2.283346942894363606e-08,-2.320175119392659676e-08 +0.000000000000000000e+00,4.628047497384031581e-10,9.256094994768063161e-10,1.388414249215209371e-09,1.851218998953612425e-09,2.314023748692015480e-09,2.776828498430418742e-09,3.239633248168822003e-09,3.702437997907225265e-09,4.165242747645628940e-09,4.628047497384032615e-09,5.090852247122436290e-09,5.553656996860839965e-09,6.016461746599243640e-09,6.479266496337647315e-09,6.942071246076050990e-09,7.404875995814454665e-09,7.867680745552858340e-09,8.330485495291261188e-09,8.793290245029664036e-09,9.256094994768066884e-09,9.718899744506469732e-09,1.018170449424487258e-08,1.064450924398327543e-08,1.110731399372167828e-08,1.157011874346008112e-08,1.203292349319848397e-08,1.249572824293688682e-08,1.295853299267528967e-08,1.342133774241369251e-08,1.388414249215209536e-08,1.434694724189049821e-08,1.480975199162890106e-08,1.527255674136730556e-08,1.573536149110571006e-08,1.619816624084411456e-08,1.666097099058251907e-08,1.712377574032092357e-08,1.758658049005932807e-08,1.804938523979773257e-08,1.851218998953613708e-08,1.897499473927454158e-08,1.943779948901294608e-08,1.990060423875135058e-08,2.036340898848975508e-08,2.082621373822815959e-08,2.128901848796656409e-08,2.175182323770496859e-08,2.221462798744337309e-08,2.267743273718177760e-08,2.314023748692018210e-08,2.360304223665858660e-08,2.406584698639699110e-08,2.452865173613539561e-08,2.499145648587380011e-08,2.545426123561220461e-08,2.591706598535060911e-08,2.637987073508901361e-08,2.684267548482741812e-08,2.730548023456582262e-08,2.776828498430422712e-08,2.823108973404263162e-08,2.869389448378103613e-08,2.915669923351944063e-08 +0.000000000000000000e+00,4.187170558219594378e-10,8.374341116439188756e-10,1.256151167465878313e-09,1.674868223287837751e-09,2.093585279109797396e-09,2.512302334931757040e-09,2.931019390753716685e-09,3.349736446575676330e-09,3.768453502397635974e-09,4.187170558219595619e-09,4.605887614041555264e-09,5.024604669863514908e-09,5.443321725685474553e-09,5.862038781507434197e-09,6.280755837329393842e-09,6.699472893151353487e-09,7.118189948973313131e-09,7.536907004795271949e-09,7.955624060617230766e-09,8.374341116439189583e-09,8.793058172261148401e-09,9.211775228083107218e-09,9.630492283905066036e-09,1.004920933972702485e-08,1.046792639554898367e-08,1.088664345137094249e-08,1.130536050719290131e-08,1.172407756301486012e-08,1.214279461883681894e-08,1.256151167465877776e-08,1.298022873048073658e-08,1.339894578630269539e-08,1.381766284212465421e-08,1.423637989794661303e-08,1.465509695376857184e-08,1.507381400959053066e-08,1.549253106541248783e-08,1.591124812123444499e-08,1.632996517705640215e-08,1.674868223287835931e-08,1.716739928870031648e-08,1.758611634452227364e-08,1.800483340034423080e-08,1.842355045616618797e-08,1.884226751198814513e-08,1.926098456781010229e-08,1.967970162363205946e-08,2.009841867945401662e-08,2.051713573527597378e-08,2.093585279109793095e-08,2.135456984691988811e-08,2.177328690274184527e-08,2.219200395856380243e-08,2.261072101438575960e-08,2.302943807020771676e-08,2.344815512602967392e-08,2.386687218185163109e-08,2.428558923767358825e-08,2.470430629349554541e-08,2.512302334931750258e-08,2.554174040513945974e-08,2.596045746096141690e-08,2.637917451678337407e-08 +0.000000000000000000e+00,4.594918406037941392e-10,9.189836812075882784e-10,1.378475521811382314e-09,1.837967362415176350e-09,2.297459203018970386e-09,2.756951043622764628e-09,3.216442884226558871e-09,3.675934724830353114e-09,4.135426565434147770e-09,4.594918406037942426e-09,5.054410246641737082e-09,5.513902087245531738e-09,5.973393927849326394e-09,6.432885768453121051e-09,6.892377609056915707e-09,7.351869449660710363e-09,7.811361290264505019e-09,8.270853130868298848e-09,8.730344971472092677e-09,9.189836812075886506e-09,9.649328652679680335e-09,1.010882049328347416e-08,1.056831233388726799e-08,1.102780417449106182e-08,1.148729601509485565e-08,1.194678785569864948e-08,1.240627969630244331e-08,1.286577153690623714e-08,1.332526337751003097e-08,1.378475521811382480e-08,1.424424705871761863e-08,1.470373889932141245e-08,1.516323073992520628e-08,1.562272258052900011e-08,1.608221442113279394e-08,1.654170626173658777e-08,1.700119810234038160e-08,1.746068994294417543e-08,1.792018178354796926e-08,1.837967362415176309e-08,1.883916546475555691e-08,1.929865730535935074e-08,1.975814914596314457e-08,2.021764098656693840e-08,2.067713282717073223e-08,2.113662466777452606e-08,2.159611650837831989e-08,2.205560834898211372e-08,2.251510018958590755e-08,2.297459203018970138e-08,2.343408387079349520e-08,2.389357571139728903e-08,2.435306755200108286e-08,2.481255939260487669e-08,2.527205123320867052e-08,2.573154307381246435e-08,2.619103491441625818e-08,2.665052675502005201e-08,2.711001859562384584e-08,2.756951043622763967e-08,2.802900227683143349e-08,2.848849411743522732e-08,2.894798595803902115e-08 +0.000000000000000000e+00,-4.628047497704697451e-10,-9.256094995409394902e-10,-1.388414249311409235e-09,-1.851218999081878980e-09,-2.314023748852348725e-09,-2.776828498622818471e-09,-3.239633248393288216e-09,-3.702437998163757961e-09,-4.165242747934227292e-09,-4.628047497704696624e-09,-5.090852247475165955e-09,-5.553656997245635287e-09,-6.016461747016104618e-09,-6.479266496786573950e-09,-6.942071246557043281e-09,-7.404875996327512613e-09,-7.867680746097981944e-09,-8.330485495868451276e-09,-8.793290245638920607e-09,-9.256094995409389939e-09,-9.718899745179859270e-09,-1.018170449495032860e-08,-1.064450924472079793e-08,-1.110731399449126726e-08,-1.157011874426173660e-08,-1.203292349403220593e-08,-1.249572824380267526e-08,-1.295853299357314459e-08,-1.342133774334361392e-08,-1.388414249311408325e-08,-1.434694724288455259e-08,-1.480975199265502192e-08,-1.527255674242549125e-08,-1.573536149219596058e-08,-1.619816624196642991e-08,-1.666097099173689924e-08,-1.712377574150736857e-08,-1.758658049127783791e-08,-1.804938524104830724e-08,-1.851218999081877657e-08,-1.897499474058924590e-08,-1.943779949035971523e-08,-1.990060424013018456e-08,-2.036340898990065389e-08,-2.082621373967112323e-08,-2.128901848944159256e-08,-2.175182323921206189e-08,-2.221462798898253122e-08,-2.267743273875300055e-08,-2.314023748852346988e-08,-2.360304223829393922e-08,-2.406584698806440855e-08,-2.452865173783487788e-08,-2.499145648760534721e-08,-2.545426123737581654e-08,-2.591706598714628587e-08,-2.637987073691675520e-08,-2.684267548668722454e-08,-2.730548023645769387e-08,-2.776828498622816320e-08,-2.823108973599863253e-08,-2.869389448576910186e-08,-2.915669923553957119e-08 +0.000000000000000000e+00,-4.187170558573045552e-10,-8.374341117146091104e-10,-1.256151167571913562e-09,-1.674868223429218014e-09,-2.093585279286522466e-09,-2.512302335143827124e-09,-2.931019391001131783e-09,-3.349736446858436442e-09,-3.768453502715741514e-09,-4.187170558573046586e-09,-4.605887614430351658e-09,-5.024604670287656730e-09,-5.443321726144961802e-09,-5.862038782002266875e-09,-6.280755837859571947e-09,-6.699472893716877019e-09,-7.118189949574182091e-09,-7.536907005431486336e-09,-7.955624061288790581e-09,-8.374341117146094826e-09,-8.793058173003399071e-09,-9.211775228860703316e-09,-9.630492284718007561e-09,-1.004920934057531181e-08,-1.046792639643261605e-08,-1.088664345228992030e-08,-1.130536050814722454e-08,-1.172407756400452879e-08,-1.214279461986183303e-08,-1.256151167571913728e-08,-1.298022873157644152e-08,-1.339894578743374577e-08,-1.381766284329105001e-08,-1.423637989914835426e-08,-1.465509695500565850e-08,-1.507381401086296275e-08,-1.549253106672026699e-08,-1.591124812257757124e-08,-1.632996517843487548e-08,-1.674868223429217973e-08,-1.716739929014948397e-08,-1.758611634600678822e-08,-1.800483340186409246e-08,-1.842355045772139671e-08,-1.884226751357870095e-08,-1.926098456943600520e-08,-1.967970162529330944e-08,-2.009841868115061369e-08,-2.051713573700791793e-08,-2.093585279286522218e-08,-2.135456984872252642e-08,-2.177328690457983067e-08,-2.219200396043713491e-08,-2.261072101629443916e-08,-2.302943807215174340e-08,-2.344815512800904765e-08,-2.386687218386635189e-08,-2.428558923972365614e-08,-2.470430629558096038e-08,-2.512302335143826463e-08,-2.554174040729556887e-08,-2.596045746315287312e-08,-2.637917451901017736e-08 +0.000000000000000000e+00,-4.594918406251041212e-10,-9.189836812502082425e-10,-1.378475521875312415e-09,-1.837967362500416692e-09,-2.297459203125520761e-09,-2.756951043750624831e-09,-3.216442884375728900e-09,-3.675934725000832970e-09,-4.135426565625937039e-09,-4.594918406251041522e-09,-5.054410246876146006e-09,-5.513902087501250489e-09,-5.973393928126354972e-09,-6.432885768751459455e-09,-6.892377609376563938e-09,-7.351869450001668421e-09,-7.811361290626773731e-09,-8.270853131251879042e-09,-8.730344971876984352e-09,-9.189836812502089662e-09,-9.649328653127194973e-09,-1.010882049375230028e-08,-1.056831233437740559e-08,-1.102780417500251090e-08,-1.148729601562761621e-08,-1.194678785625272152e-08,-1.240627969687782683e-08,-1.286577153750293214e-08,-1.332526337812803746e-08,-1.378475521875314277e-08,-1.424424705937824808e-08,-1.470373890000335339e-08,-1.516323074062845870e-08,-1.562272258125356401e-08,-1.608221442187866932e-08,-1.654170626250377463e-08,-1.700119810312887994e-08,-1.746068994375398525e-08,-1.792018178437909056e-08,-1.837967362500419587e-08,-1.883916546562930118e-08,-1.929865730625440649e-08,-1.975814914687951180e-08,-2.021764098750461711e-08,-2.067713282812972242e-08,-2.113662466875482773e-08,-2.159611650937993304e-08,-2.205560835000503835e-08,-2.251510019063014366e-08,-2.297459203125524897e-08,-2.343408387188035428e-08,-2.389357571250545959e-08,-2.435306755313056490e-08,-2.481255939375567021e-08,-2.527205123438077552e-08,-2.573154307500588083e-08,-2.619103491563098614e-08,-2.665052675625609145e-08,-2.711001859688119676e-08,-2.756951043750630207e-08,-2.802900227813140738e-08,-2.848849411875651269e-08,-2.894798595938161801e-08 +0.000000000000000000e+00,5.249014110826936966e-10,1.049802822165387393e-09,1.574704233248080986e-09,2.099605644330774373e-09,2.624507055413467759e-09,3.149408466496161146e-09,3.674309877578854532e-09,4.199211288661547919e-09,4.724112699744241719e-09,5.249014110826935519e-09,5.773915521909629319e-09,6.298816932992323119e-09,6.823718344075016919e-09,7.348619755157710719e-09,7.873521166240404519e-09,8.398422577323097491e-09,8.923323988405790464e-09,9.448225399488483437e-09,9.973126810571176410e-09,1.049802822165386938e-08,1.102292963273656236e-08,1.154783104381925533e-08,1.207273245490194830e-08,1.259763386598464127e-08,1.312253527706733425e-08,1.364743668815002722e-08,1.417233809923272019e-08,1.469723951031541317e-08,1.522214092139810614e-08,1.574704233248079911e-08,1.627194374356349208e-08,1.679684515464618506e-08,1.732174656572887803e-08,1.784664797681157100e-08,1.837154938789426398e-08,1.889645079897695695e-08,1.942135221005964992e-08,1.994625362114234289e-08,2.047115503222503587e-08,2.099605644330772884e-08,2.152095785439042181e-08,2.204585926547311479e-08,2.257076067655580776e-08,2.309566208763850073e-08,2.362056349872119370e-08,2.414546490980388668e-08,2.467036632088657965e-08,2.519526773196927262e-08,2.572016914305196559e-08,2.624507055413465857e-08,2.676997196521735154e-08,2.729487337630004451e-08,2.781977478738273749e-08,2.834467619846543046e-08,2.886957760954812343e-08,2.939447902063081640e-08,2.991938043171350938e-08,3.044428184279619904e-08,3.096918325387888871e-08,3.149408466496157837e-08,3.201898607604426803e-08,3.254388748712695770e-08,3.306878889820964736e-08 +0.000000000000000000e+00,4.949385286544578842e-10,9.898770573089157683e-10,1.484815585963373756e-09,1.979754114617831950e-09,2.474692643272290145e-09,2.969631171926748339e-09,3.464569700581206533e-09,3.959508229235664728e-09,4.454446757890122508e-09,4.949385286544580289e-09,5.444323815199038070e-09,5.939262343853495851e-09,6.434200872507953631e-09,6.929139401162411412e-09,7.424077929816869193e-09,7.919016458471327801e-09,8.413954987125786409e-09,8.908893515780245017e-09,9.403832044434703625e-09,9.898770573089162233e-09,1.039370910174362084e-08,1.088864763039807945e-08,1.138358615905253806e-08,1.187852468770699666e-08,1.237346321636145527e-08,1.286840174501591388e-08,1.336334027367037249e-08,1.385827880232483110e-08,1.435321733097928970e-08,1.484815585963374831e-08,1.534309438828820527e-08,1.583803291694266222e-08,1.633297144559711917e-08,1.682790997425157613e-08,1.732284850290603308e-08,1.781778703156049003e-08,1.831272556021494699e-08,1.880766408886940394e-08,1.930260261752386089e-08,1.979754114617831785e-08,2.029247967483277480e-08,2.078741820348723175e-08,2.128235673214168871e-08,2.177729526079614566e-08,2.227223378945060262e-08,2.276717231810505957e-08,2.326211084675951652e-08,2.375704937541397348e-08,2.425198790406843043e-08,2.474692643272288738e-08,2.524186496137734434e-08,2.573680349003180129e-08,2.623174201868625824e-08,2.672668054734071520e-08,2.722161907599517215e-08,2.771655760464962910e-08,2.821149613330408606e-08,2.870643466195854301e-08,2.920137319061299997e-08,2.969631171926745692e-08,3.019125024792191387e-08,3.068618877657637083e-08,3.118112730523082778e-08 +0.000000000000000000e+00,5.211760156070602878e-10,1.042352031214120576e-09,1.563528046821180967e-09,2.084704062428241565e-09,2.605880078035302163e-09,3.127056093642362761e-09,3.648232109249423359e-09,4.169408124856483957e-09,4.690584140463544969e-09,5.211760156070605980e-09,5.732936171677666992e-09,6.254112187284728003e-09,6.775288202891789015e-09,7.296464218498850027e-09,7.817640234105911038e-09,8.338816249712972877e-09,8.859992265320034716e-09,9.381168280927096555e-09,9.902344296534158394e-09,1.042352031214122023e-08,1.094469632774828207e-08,1.146587234335534391e-08,1.198704835896240575e-08,1.250822437456946759e-08,1.302940039017652943e-08,1.355057640578359127e-08,1.407175242139065310e-08,1.459292843699771494e-08,1.511410445260477513e-08,1.563528046821183531e-08,1.615645648381889550e-08,1.667763249942595568e-08,1.719880851503301586e-08,1.771998453064007605e-08,1.824116054624713623e-08,1.876233656185419642e-08,1.928351257746125660e-08,1.980468859306831679e-08,2.032586460867537697e-08,2.084704062428243716e-08,2.136821663988949734e-08,2.188939265549655752e-08,2.241056867110361771e-08,2.293174468671067789e-08,2.345292070231773808e-08,2.397409671792479826e-08,2.449527273353185845e-08,2.501644874913891863e-08,2.553762476474597882e-08,2.605880078035303900e-08,2.657997679596009918e-08,2.710115281156715937e-08,2.762232882717421955e-08,2.814350484278127974e-08,2.866468085838833992e-08,2.918585687399540011e-08,2.970703288960246029e-08,3.022820890520952378e-08,3.074938492081658728e-08,3.127056093642365077e-08,3.179173695203071426e-08,3.231291296763777776e-08,3.283408898324484125e-08 +0.000000000000000000e+00,-5.249014111088052036e-10,-1.049802822217610407e-09,-1.574704233326415611e-09,-2.099605644435220814e-09,-2.624507055544026225e-09,-3.149408466652831635e-09,-3.674309877761637046e-09,-4.199211288870442456e-09,-4.724112699979247866e-09,-5.249014111088053277e-09,-5.773915522196858687e-09,-6.298816933305664098e-09,-6.823718344414469508e-09,-7.348619755523274919e-09,-7.873521166632081156e-09,-8.398422577740886567e-09,-8.923323988849691977e-09,-9.448225399958497387e-09,-9.973126811067302798e-09,-1.049802822217610821e-08,-1.102292963328491362e-08,-1.154783104439371903e-08,-1.207273245550252444e-08,-1.259763386661132985e-08,-1.312253527772013526e-08,-1.364743668882894067e-08,-1.417233809993774608e-08,-1.469723951104655149e-08,-1.522214092215535690e-08,-1.574704233326416231e-08,-1.627194374437296772e-08,-1.679684515548177313e-08,-1.732174656659057854e-08,-1.784664797769938395e-08,-1.837154938880818936e-08,-1.889645079991699477e-08,-1.942135221102580019e-08,-1.994625362213460560e-08,-2.047115503324341101e-08,-2.099605644435221642e-08,-2.152095785546102183e-08,-2.204585926656982724e-08,-2.257076067767863265e-08,-2.309566208878743806e-08,-2.362056349989624347e-08,-2.414546491100504888e-08,-2.467036632211385429e-08,-2.519526773322265970e-08,-2.572016914433146511e-08,-2.624507055544027052e-08,-2.676997196654907593e-08,-2.729487337765788134e-08,-2.781977478876668675e-08,-2.834467619987549216e-08,-2.886957761098429757e-08,-2.939447902209310298e-08,-2.991938043320190508e-08,-3.044428184431070719e-08,-3.096918325541950929e-08,-3.149408466652831139e-08,-3.201898607763711349e-08,-3.254388748874591559e-08,-3.306878889985471769e-08 +0.000000000000000000e+00,-4.949385286834684524e-10,-9.898770573669369048e-10,-1.484815586050405357e-09,-1.979754114733873810e-09,-2.474692643417342469e-09,-2.969631172100811128e-09,-3.464569700784279787e-09,-3.959508229467748446e-09,-4.454446758151217106e-09,-4.949385286834685765e-09,-5.444323815518154424e-09,-5.939262344201623083e-09,-6.434200872885091742e-09,-6.929139401568560402e-09,-7.424077930252029061e-09,-7.919016458935498547e-09,-8.413954987618968034e-09,-8.908893516302437520e-09,-9.403832044985907006e-09,-9.898770573669376493e-09,-1.039370910235284598e-08,-1.088864763103631547e-08,-1.138358615971978495e-08,-1.187852468840325444e-08,-1.237346321708672392e-08,-1.286840174577019341e-08,-1.336334027445366290e-08,-1.385827880313713238e-08,-1.435321733182060187e-08,-1.484815586050407136e-08,-1.534309438918754250e-08,-1.583803291787101364e-08,-1.633297144655448478e-08,-1.682790997523795592e-08,-1.732284850392142706e-08,-1.781778703260489820e-08,-1.831272556128836934e-08,-1.880766408997184048e-08,-1.930260261865531162e-08,-1.979754114733878276e-08,-2.029247967602225390e-08,-2.078741820470572505e-08,-2.128235673338919619e-08,-2.177729526207266733e-08,-2.227223379075613847e-08,-2.276717231943960961e-08,-2.326211084812308075e-08,-2.375704937680655189e-08,-2.425198790549002303e-08,-2.474692643417349417e-08,-2.524186496285696531e-08,-2.573680349154043645e-08,-2.623174202022390759e-08,-2.672668054890737873e-08,-2.722161907759084988e-08,-2.771655760627432102e-08,-2.821149613495779216e-08,-2.870643466364126330e-08,-2.920137319232473444e-08,-2.969631172100820558e-08,-3.019125024969167672e-08,-3.068618877837515117e-08,-3.118112730705862562e-08 +0.000000000000000000e+00,-5.211760156228345187e-10,-1.042352031245669037e-09,-1.563528046868503556e-09,-2.084704062491338075e-09,-2.605880078114172594e-09,-3.127056093737007112e-09,-3.648232109359841631e-09,-4.169408124982676150e-09,-4.690584140605510668e-09,-5.211760156228345187e-09,-5.732936171851179706e-09,-6.254112187474014225e-09,-6.775288203096848743e-09,-7.296464218719683262e-09,-7.817640234342517781e-09,-8.338816249965352299e-09,-8.859992265588186818e-09,-9.381168281211021337e-09,-9.902344296833855856e-09,-1.042352031245669037e-08,-1.094469632807952489e-08,-1.146587234370235941e-08,-1.198704835932519393e-08,-1.250822437494802845e-08,-1.302940039057086297e-08,-1.355057640619369749e-08,-1.407175242181653201e-08,-1.459292843743936652e-08,-1.511410445306219939e-08,-1.563528046868503225e-08,-1.615645648430786512e-08,-1.667763249993069798e-08,-1.719880851555353085e-08,-1.771998453117636371e-08,-1.824116054679919657e-08,-1.876233656242202944e-08,-1.928351257804486230e-08,-1.980468859366769517e-08,-2.032586460929052803e-08,-2.084704062491336090e-08,-2.136821664053619376e-08,-2.188939265615902663e-08,-2.241056867178185949e-08,-2.293174468740469235e-08,-2.345292070302752522e-08,-2.397409671865035808e-08,-2.449527273427319095e-08,-2.501644874989602381e-08,-2.553762476551885668e-08,-2.605880078114168954e-08,-2.657997679676452240e-08,-2.710115281238735527e-08,-2.762232882801018813e-08,-2.814350484363302100e-08,-2.866468085925585386e-08,-2.918585687487868673e-08,-2.970703289050151959e-08,-3.022820890612435245e-08,-3.074938492174718532e-08,-3.127056093737001818e-08,-3.179173695299285105e-08,-3.231291296861568391e-08,-3.283408898423851678e-08 +0.000000000000000000e+00,5.697765953036089938e-10,1.139553190607217988e-09,1.709329785910826878e-09,2.279106381214435562e-09,2.848882976518044245e-09,3.418659571821652929e-09,3.988436167125261612e-09,4.558212762428870296e-09,5.127989357732478979e-09,5.697765953036087663e-09,6.267542548339696347e-09,6.837319143643305030e-09,7.407095738946913714e-09,7.976872334250521570e-09,8.546648929554130254e-09,9.116425524857738937e-09,9.686202120161347621e-09,1.025597871546495630e-08,1.082575531076856499e-08,1.139553190607217367e-08,1.196530850137578236e-08,1.253508509667939104e-08,1.310486169198299972e-08,1.367463828728660841e-08,1.424441488259021709e-08,1.481419147789382577e-08,1.538396807319743446e-08,1.595374466850104314e-08,1.652352126380465182e-08,1.709329785910826051e-08,1.766307445441186919e-08,1.823285104971547787e-08,1.880262764501908656e-08,1.937240424032269524e-08,1.994218083562630393e-08,2.051195743092991261e-08,2.108173402623352129e-08,2.165151062153712998e-08,2.222128721684073866e-08,2.279106381214434734e-08,2.336084040744795603e-08,2.393061700275156471e-08,2.450039359805517339e-08,2.507017019335878208e-08,2.563994678866239076e-08,2.620972338396599945e-08,2.677949997926960813e-08,2.734927657457321681e-08,2.791905316987682550e-08,2.848882976518043418e-08,2.905860636048404286e-08,2.962838295578765155e-08,3.019815955109126023e-08,3.076793614639486891e-08,3.133771274169847760e-08,3.190748933700208628e-08,3.247726593230569496e-08,3.304704252760930365e-08,3.361681912291291233e-08,3.418659571821652102e-08,3.475637231352012970e-08,3.532614890882373838e-08,3.589592550412734707e-08 +0.000000000000000000e+00,5.478207383796131139e-10,1.095641476759226228e-09,1.643462215138839445e-09,2.191282953518452869e-09,2.739103691898066294e-09,3.286924430277679718e-09,3.834745168657293555e-09,4.382565907036907393e-09,4.930386645416521231e-09,5.478207383796135069e-09,6.026028122175748906e-09,6.573848860555362744e-09,7.121669598934976582e-09,7.669490337314590420e-09,8.217311075694204257e-09,8.765131814073818095e-09,9.312952552453431933e-09,9.860773290833045770e-09,1.040859402921265961e-08,1.095641476759227345e-08,1.150423550597188728e-08,1.205205624435150112e-08,1.259987698273111496e-08,1.314769772111072880e-08,1.369551845949034263e-08,1.424333919786995647e-08,1.479115993624957031e-08,1.533898067462918415e-08,1.588680141300879964e-08,1.643462215138841513e-08,1.698244288976803062e-08,1.753026362814764612e-08,1.807808436652726161e-08,1.862590510490687710e-08,1.917372584328649259e-08,1.972154658166610808e-08,2.026936732004572358e-08,2.081718805842533907e-08,2.136500879680495456e-08,2.191282953518457005e-08,2.246065027356418554e-08,2.300847101194380104e-08,2.355629175032341653e-08,2.410411248870303202e-08,2.465193322708264751e-08,2.519975396546226301e-08,2.574757470384187850e-08,2.629539544222149399e-08,2.684321618060110948e-08,2.739103691898072497e-08,2.793885765736034047e-08,2.848667839573995596e-08,2.903449913411957145e-08,2.958231987249918694e-08,3.013014061087880243e-08,3.067796134925841462e-08,3.122578208763802680e-08,3.177360282601763898e-08,3.232142356439725117e-08,3.286924430277686335e-08,3.341706504115647553e-08,3.396488577953608772e-08,3.451270651791569990e-08 +0.000000000000000000e+00,5.659593225045337862e-10,1.131918645009067572e-09,1.697877967513601359e-09,2.263837290018135145e-09,2.829796612522669138e-09,3.395755935027203131e-09,3.961715257531737124e-09,4.527674580036271117e-09,5.093633902540805110e-09,5.659593225045339103e-09,6.225552547549873096e-09,6.791511870054407089e-09,7.357471192558941082e-09,7.923430515063475902e-09,8.489389837568011549e-09,9.055349160072547197e-09,9.621308482577082844e-09,1.018726780508161849e-08,1.075322712758615414e-08,1.131918645009068979e-08,1.188514577259522543e-08,1.245110509509976108e-08,1.301706441760429673e-08,1.358302374010883238e-08,1.414898306261336802e-08,1.471494238511790367e-08,1.528090170762243932e-08,1.584686103012697496e-08,1.641282035263151061e-08,1.697877967513604626e-08,1.754473899764058191e-08,1.811069832014511755e-08,1.867665764264965320e-08,1.924261696515418885e-08,1.980857628765872450e-08,2.037453561016326014e-08,2.094049493266779579e-08,2.150645425517233144e-08,2.207241357767686709e-08,2.263837290018140273e-08,2.320433222268593838e-08,2.377029154519047403e-08,2.433625086769500968e-08,2.490221019019954532e-08,2.546816951270408097e-08,2.603412883520861662e-08,2.660008815771315226e-08,2.716604748021768791e-08,2.773200680272222356e-08,2.829796612522675921e-08,2.886392544773129485e-08,2.942988477023583050e-08,2.999584409274036946e-08,3.056180341524491172e-08,3.112776273774945399e-08,3.169372206025399625e-08,3.225968138275853852e-08,3.282564070526308078e-08,3.339160002776762305e-08,3.395755935027216531e-08,3.452351867277670758e-08,3.508947799528124984e-08,3.565543731778579211e-08 +0.000000000000000000e+00,-5.697765953245568258e-10,-1.139553190649113652e-09,-1.709329785973670477e-09,-2.279106381298227303e-09,-2.848882976622784336e-09,-3.418659571947341368e-09,-3.988436167271898401e-09,-4.558212762596455434e-09,-5.127989357921012466e-09,-5.697765953245569499e-09,-6.267542548570126531e-09,-6.837319143894683564e-09,-7.407095739219240597e-09,-7.976872334543796802e-09,-8.546648929868353007e-09,-9.116425525192909213e-09,-9.686202120517465418e-09,-1.025597871584202162e-08,-1.082575531116657783e-08,-1.139553190649113403e-08,-1.196530850181569024e-08,-1.253508509714024645e-08,-1.310486169246480265e-08,-1.367463828778935886e-08,-1.424441488311391506e-08,-1.481419147843847127e-08,-1.538396807376302747e-08,-1.595374466908758368e-08,-1.652352126441213988e-08,-1.709329785973669609e-08,-1.766307445506125229e-08,-1.823285105038580850e-08,-1.880262764571036471e-08,-1.937240424103492091e-08,-1.994218083635947712e-08,-2.051195743168403332e-08,-2.108173402700858953e-08,-2.165151062233314573e-08,-2.222128721765770194e-08,-2.279106381298225814e-08,-2.336084040830681435e-08,-2.393061700363137055e-08,-2.450039359895592676e-08,-2.507017019428048296e-08,-2.563994678960503917e-08,-2.620972338492959538e-08,-2.677949998025415158e-08,-2.734927657557870779e-08,-2.791905317090326399e-08,-2.848882976622782020e-08,-2.905860636155237640e-08,-2.962838295687693261e-08,-3.019815955220148881e-08,-3.076793614752604171e-08,-3.133771274285059461e-08,-3.190748933817514750e-08,-3.247726593349970040e-08,-3.304704252882425330e-08,-3.361681912414880619e-08,-3.418659571947335909e-08,-3.475637231479791199e-08,-3.532614891012246488e-08,-3.589592550544701778e-08 +0.000000000000000000e+00,-5.478207384030601688e-10,-1.095641476806120338e-09,-1.643462215209180403e-09,-2.191282953612240262e-09,-2.739103692015300120e-09,-3.286924430418359979e-09,-3.834745168821419424e-09,-4.382565907224478869e-09,-4.930386645627538314e-09,-5.478207384030597759e-09,-6.026028122433657204e-09,-6.573848860836716649e-09,-7.121669599239776094e-09,-7.669490337642835539e-09,-8.217311076045894984e-09,-8.765131814448954429e-09,-9.312952552852013874e-09,-9.860773291255073319e-09,-1.040859402965813276e-08,-1.095641476806119221e-08,-1.150423550646425165e-08,-1.205205624486731110e-08,-1.259987698327037054e-08,-1.314769772167342999e-08,-1.369551846007648943e-08,-1.424333919847954888e-08,-1.479115993688260832e-08,-1.533898067528566777e-08,-1.588680141368872887e-08,-1.643462215209178997e-08,-1.698244289049485107e-08,-1.753026362889791217e-08,-1.807808436730097327e-08,-1.862590510570403437e-08,-1.917372584410709546e-08,-1.972154658251015656e-08,-2.026936732091321766e-08,-2.081718805931627876e-08,-2.136500879771933986e-08,-2.191282953612240096e-08,-2.246065027452546206e-08,-2.300847101292852316e-08,-2.355629175133158426e-08,-2.410411248973464536e-08,-2.465193322813770646e-08,-2.519975396654076756e-08,-2.574757470494382866e-08,-2.629539544334688976e-08,-2.684321618174995086e-08,-2.739103692015301196e-08,-2.793885765855607305e-08,-2.848667839695913415e-08,-2.903449913536219525e-08,-2.958231987376525635e-08,-3.013014061216831745e-08,-3.067796135057138186e-08,-3.122578208897444627e-08,-3.177360282737751068e-08,-3.232142356578057508e-08,-3.286924430418363949e-08,-3.341706504258670390e-08,-3.396488578098976831e-08,-3.451270651939283272e-08 +0.000000000000000000e+00,-5.659593225164633850e-10,-1.131918645032926770e-09,-1.697877967549390155e-09,-2.263837290065853540e-09,-2.829796612582317132e-09,-3.395755935098780724e-09,-3.961715257615244315e-09,-4.527674580131707907e-09,-5.093633902648171499e-09,-5.659593225164635091e-09,-6.225552547681098682e-09,-6.791511870197562274e-09,-7.357471192714025866e-09,-7.923430515230490285e-09,-8.489389837746953877e-09,-9.055349160263417469e-09,-9.621308482779881060e-09,-1.018726780529634465e-08,-1.075322712781280824e-08,-1.131918645032927184e-08,-1.188514577284573543e-08,-1.245110509536219902e-08,-1.301706441787866261e-08,-1.358302374039512620e-08,-1.414898306291158979e-08,-1.471494238542805339e-08,-1.528090170794451698e-08,-1.584686103046098057e-08,-1.641282035297744416e-08,-1.697877967549390775e-08,-1.754473899801037135e-08,-1.811069832052683494e-08,-1.867665764304329853e-08,-1.924261696555976212e-08,-1.980857628807622571e-08,-2.037453561059268930e-08,-2.094049493310915290e-08,-2.150645425562561649e-08,-2.207241357814208008e-08,-2.263837290065854367e-08,-2.320433222317500726e-08,-2.377029154569147086e-08,-2.433625086820793445e-08,-2.490221019072439804e-08,-2.546816951324086163e-08,-2.603412883575732522e-08,-2.660008815827378881e-08,-2.716604748079025241e-08,-2.773200680330671600e-08,-2.829796612582317959e-08,-2.886392544833964318e-08,-2.942988477085610677e-08,-2.999584409337257367e-08,-3.056180341588904057e-08,-3.112776273840550747e-08,-3.169372206092197437e-08,-3.225968138343844128e-08,-3.282564070595490818e-08,-3.339160002847137508e-08,-3.395755935098784198e-08,-3.452351867350430888e-08,-3.508947799602077578e-08,-3.565543731853724268e-08 +0.000000000000000000e+00,6.038608460460555616e-10,1.207721692092111123e-09,1.811582538138166788e-09,2.415443384184222660e-09,3.019304230230278532e-09,3.623165076276334404e-09,4.227025922322390689e-09,4.830886768368446975e-09,5.434747614414503260e-09,6.038608460460559545e-09,6.642469306506615831e-09,7.246330152552672116e-09,7.850190998598728402e-09,8.454051844644784687e-09,9.057912690690840972e-09,9.661773536736897258e-09,1.026563438278295354e-08,1.086949522882900983e-08,1.147335607487506611e-08,1.207721692092112240e-08,1.268107776696717868e-08,1.328493861301323497e-08,1.388879945905929126e-08,1.449266030510534754e-08,1.509652115115140383e-08,1.570038199719746011e-08,1.630424284324351640e-08,1.690810368928957268e-08,1.751196453533562897e-08,1.811582538138168525e-08,1.871968622742774154e-08,1.932354707347379782e-08,1.992740791951985411e-08,2.053126876556591040e-08,2.113512961161196668e-08,2.173899045765802297e-08,2.234285130370407925e-08,2.294671214975013554e-08,2.355057299579619182e-08,2.415443384184224811e-08,2.475829468788830439e-08,2.536215553393436068e-08,2.596601637998041696e-08,2.656987722602647325e-08,2.717373807207252953e-08,2.777759891811858582e-08,2.838145976416464211e-08,2.898532061021069839e-08,2.958918145625675468e-08,3.019304230230280765e-08,3.079690314834886063e-08,3.140076399439491361e-08,3.200462484044096658e-08,3.260848568648701956e-08,3.321234653253307254e-08,3.381620737857912551e-08,3.442006822462517849e-08,3.502392907067123147e-08,3.562778991671728444e-08,3.623165076276333742e-08,3.683551160880939040e-08,3.743937245485544337e-08,3.804323330090149635e-08 +0.000000000000000000e+00,5.870917477560819500e-10,1.174183495512163900e-09,1.761275243268245850e-09,2.348366991024327800e-09,2.935458738780409750e-09,3.522550486536491700e-09,4.109642234292574063e-09,4.696733982048656427e-09,5.283825729804738791e-09,5.870917477560821154e-09,6.458009225316903518e-09,7.045100973072985881e-09,7.632192720829068245e-09,8.219284468585151435e-09,8.806376216341234626e-09,9.393467964097317817e-09,9.980559711853401008e-09,1.056765145960948420e-08,1.115474320736556739e-08,1.174183495512165058e-08,1.232892670287773377e-08,1.291601845063381696e-08,1.350311019838990015e-08,1.409020194614598334e-08,1.467729369390206653e-08,1.526438544165814972e-08,1.585147718941423292e-08,1.643856893717031611e-08,1.702566068492639930e-08,1.761275243268248249e-08,1.819984418043856568e-08,1.878693592819464887e-08,1.937402767595073206e-08,1.996111942370681525e-08,2.054821117146289844e-08,2.113530291921898163e-08,2.172239466697506482e-08,2.230948641473114801e-08,2.289657816248723120e-08,2.348366991024331439e-08,2.407076165799939759e-08,2.465785340575548078e-08,2.524494515351156397e-08,2.583203690126764716e-08,2.641912864902373035e-08,2.700622039677981354e-08,2.759331214453589673e-08,2.818040389229197992e-08,2.876749564004806311e-08,2.935458738780414630e-08,2.994167913556022949e-08,3.052877088331631268e-08,3.111586263107239587e-08,3.170295437882847907e-08,3.229004612658456226e-08,3.287713787434064545e-08,3.346422962209672864e-08,3.405132136985281183e-08,3.463841311760889502e-08,3.522550486536497821e-08,3.581259661312106140e-08,3.639968836087714459e-08,3.698678010863322778e-08 +0.000000000000000000e+00,6.002914808831076157e-10,1.200582961766215231e-09,1.800874442649322744e-09,2.401165923532430049e-09,3.001457404415537354e-09,3.601748885298644660e-09,4.202040366181751965e-09,4.802331847064859271e-09,5.402623327947966576e-09,6.002914808831073882e-09,6.603206289714181187e-09,7.203497770597288493e-09,7.803789251480396625e-09,8.404080732363505585e-09,9.004372213246614545e-09,9.604663694129723505e-09,1.020495517501283246e-08,1.080524665589594142e-08,1.140553813677905038e-08,1.200582961766215934e-08,1.260612109854526830e-08,1.320641257942837726e-08,1.380670406031148622e-08,1.440699554119459518e-08,1.500728702207770414e-08,1.560757850296081310e-08,1.620786998384392206e-08,1.680816146472703102e-08,1.740845294561013998e-08,1.800874442649324894e-08,1.860903590737635790e-08,1.920932738825946686e-08,1.980961886914257582e-08,2.040991035002568478e-08,2.101020183090879374e-08,2.161049331179190270e-08,2.221078479267501166e-08,2.281107627355812062e-08,2.341136775444122958e-08,2.401165923532433854e-08,2.461195071620744750e-08,2.521224219709055646e-08,2.581253367797366542e-08,2.641282515885677438e-08,2.701311663973988334e-08,2.761340812062299230e-08,2.821369960150610126e-08,2.881399108238921022e-08,2.941428256327231918e-08,3.001457404415542814e-08,3.061486552503853379e-08,3.121515700592163944e-08,3.181544848680474509e-08,3.241573996768785074e-08,3.301603144857095639e-08,3.361632292945406205e-08,3.421661441033716770e-08,3.481690589122027335e-08,3.541719737210337900e-08,3.601748885298648465e-08,3.661778033386959030e-08,3.721807181475269595e-08,3.781836329563580160e-08 +0.000000000000000000e+00,-6.038608460625005326e-10,-1.207721692125001065e-09,-1.811582538187501494e-09,-2.415443384250001717e-09,-3.019304230312501939e-09,-3.623165076375002162e-09,-4.227025922437502798e-09,-4.830886768500003434e-09,-5.434747614562504070e-09,-6.038608460625004705e-09,-6.642469306687505341e-09,-7.246330152750005977e-09,-7.850190998812506613e-09,-8.454051844875007249e-09,-9.057912690937507885e-09,-9.661773537000008521e-09,-1.026563438306250916e-08,-1.086949522912500979e-08,-1.147335607518751043e-08,-1.207721692125001107e-08,-1.268107776731251170e-08,-1.328493861337501234e-08,-1.388879945943751297e-08,-1.449266030550001361e-08,-1.509652115156251259e-08,-1.570038199762500992e-08,-1.630424284368750725e-08,-1.690810368975000457e-08,-1.751196453581250190e-08,-1.811582538187499923e-08,-1.871968622793749655e-08,-1.932354707399999388e-08,-1.992740792006249121e-08,-2.053126876612498854e-08,-2.113512961218748586e-08,-2.173899045824998319e-08,-2.234285130431248052e-08,-2.294671215037497785e-08,-2.355057299643747517e-08,-2.415443384249997250e-08,-2.475829468856246983e-08,-2.536215553462496715e-08,-2.596601638068746448e-08,-2.656987722674996181e-08,-2.717373807281245914e-08,-2.777759891887495646e-08,-2.838145976493745379e-08,-2.898532061099995112e-08,-2.958918145706244845e-08,-3.019304230312494577e-08,-3.079690314918744310e-08,-3.140076399524994043e-08,-3.200462484131243775e-08,-3.260848568737493508e-08,-3.321234653343743241e-08,-3.381620737949992974e-08,-3.442006822556242706e-08,-3.502392907162492439e-08,-3.562778991768742172e-08,-3.623165076374991905e-08,-3.683551160981241637e-08,-3.743937245587491370e-08,-3.804323330193741103e-08 +0.000000000000000000e+00,-5.870917477747383883e-10,-1.174183495549476777e-09,-1.761275243324215165e-09,-2.348366991098953553e-09,-2.935458738873692148e-09,-3.522550486648430743e-09,-4.109642234423169338e-09,-4.696733982197907934e-09,-5.283825729972646529e-09,-5.870917477747385124e-09,-6.458009225522123719e-09,-7.045100973296862314e-09,-7.632192721071600909e-09,-8.219284468846338677e-09,-8.806376216621076445e-09,-9.393467964395814213e-09,-9.980559712170551981e-09,-1.056765145994528975e-08,-1.115474320772002752e-08,-1.174183495549476528e-08,-1.232892670326950305e-08,-1.291601845104424082e-08,-1.350311019881897859e-08,-1.409020194659371636e-08,-1.467729369436845412e-08,-1.526438544214319189e-08,-1.585147718991792966e-08,-1.643856893769266743e-08,-1.702566068546740520e-08,-1.761275243324214296e-08,-1.819984418101688073e-08,-1.878693592879161850e-08,-1.937402767656635627e-08,-1.996111942434109404e-08,-2.054821117211583180e-08,-2.113530291989056957e-08,-2.172239466766530734e-08,-2.230948641544004511e-08,-2.289657816321478287e-08,-2.348366991098952064e-08,-2.407076165876425841e-08,-2.465785340653899618e-08,-2.524494515431373395e-08,-2.583203690208847171e-08,-2.641912864986320948e-08,-2.700622039763794725e-08,-2.759331214541268502e-08,-2.818040389318742279e-08,-2.876749564096216055e-08,-2.935458738873689832e-08,-2.994167913651163278e-08,-3.052877088428636393e-08,-3.111586263206109508e-08,-3.170295437983582623e-08,-3.229004612761055738e-08,-3.287713787538528853e-08,-3.346422962316001968e-08,-3.405132137093475083e-08,-3.463841311870948198e-08,-3.522550486648421314e-08,-3.581259661425894429e-08,-3.639968836203367544e-08,-3.698678010980840659e-08 +0.000000000000000000e+00,-6.002914808921553172e-10,-1.200582961784310634e-09,-1.800874442676465848e-09,-2.401165923568620855e-09,-3.001457404460775862e-09,-3.601748885352930869e-09,-4.202040366245085876e-09,-4.802331847137240883e-09,-5.402623328029395890e-09,-6.002914808921550897e-09,-6.603206289813705904e-09,-7.203497770705860911e-09,-7.803789251598015091e-09,-8.404080732490170098e-09,-9.004372213382325105e-09,-9.604663694274480112e-09,-1.020495517516663512e-08,-1.080524665605879013e-08,-1.140553813695094513e-08,-1.200582961784310014e-08,-1.260612109873525515e-08,-1.320641257962741015e-08,-1.380670406051956516e-08,-1.440699554141172017e-08,-1.500728702230387518e-08,-1.560757850319603018e-08,-1.620786998408818519e-08,-1.680816146498034020e-08,-1.740845294587249520e-08,-1.800874442676465021e-08,-1.860903590765680522e-08,-1.920932738854896022e-08,-1.980961886944111523e-08,-2.040991035033327024e-08,-2.101020183122542525e-08,-2.161049331211758025e-08,-2.221078479300973526e-08,-2.281107627390189027e-08,-2.341136775479404527e-08,-2.401165923568620028e-08,-2.461195071657835529e-08,-2.521224219747051029e-08,-2.581253367836266530e-08,-2.641282515925482031e-08,-2.701311664014697532e-08,-2.761340812103913032e-08,-2.821369960193128533e-08,-2.881399108282344034e-08,-2.941428256371559534e-08,-3.001457404460775035e-08,-3.061486552549990205e-08,-3.121515700639205375e-08,-3.181544848728420544e-08,-3.241573996817635714e-08,-3.301603144906850884e-08,-3.361632292996066054e-08,-3.421661441085281224e-08,-3.481690589174496394e-08,-3.541719737263711563e-08,-3.601748885352926733e-08,-3.661778033442141903e-08,-3.721807181531357073e-08,-3.781836329620572243e-08 +0.000000000000000000e+00,6.170976391875443412e-10,1.234195278375088682e-09,1.851292917562633024e-09,2.468390556750177365e-09,3.085488195937721913e-09,3.702585835125266461e-09,4.319683474312811009e-09,4.936781113500355557e-09,5.553878752687900105e-09,6.170976391875444653e-09,6.788074031062989201e-09,7.405171670250533749e-09,8.022269309438078297e-09,8.639366948625622018e-09,9.256464587813165739e-09,9.873562227000709460e-09,1.049065986618825318e-08,1.110775750537579690e-08,1.172485514456334062e-08,1.234195278375088434e-08,1.295905042293842806e-08,1.357614806212597178e-08,1.419324570131351551e-08,1.481034334050105923e-08,1.542744097968860129e-08,1.604453861887614336e-08,1.666163625806368543e-08,1.727873389725122749e-08,1.789583153643876956e-08,1.851292917562631163e-08,1.913002681481385369e-08,1.974712445400139576e-08,2.036422209318893782e-08,2.098131973237647989e-08,2.159841737156402196e-08,2.221551501075156402e-08,2.283261264993910609e-08,2.344971028912664816e-08,2.406680792831419022e-08,2.468390556750173229e-08,2.530100320668927436e-08,2.591810084587681642e-08,2.653519848506435849e-08,2.715229612425190056e-08,2.776939376343944262e-08,2.838649140262698469e-08,2.900358904181452676e-08,2.962068668100206882e-08,3.023778432018961089e-08,3.085488195937714965e-08,3.147197959856468840e-08,3.208907723775222716e-08,3.270617487693976592e-08,3.332327251612730468e-08,3.394037015531484343e-08,3.455746779450238219e-08,3.517456543368992095e-08,3.579166307287745971e-08,3.640876071206499847e-08,3.702585835125253722e-08,3.764295599044007598e-08,3.826005362962761474e-08,3.887715126881515350e-08 +0.000000000000000000e+00,-6.170976392018303708e-10,-1.234195278403660742e-09,-1.851292917605491112e-09,-2.468390556807321483e-09,-3.085488196009151854e-09,-3.702585835210982225e-09,-4.319683474412812182e-09,-4.936781113614642139e-09,-5.553878752816472096e-09,-6.170976392018302054e-09,-6.788074031220132011e-09,-7.405171670421961968e-09,-8.022269309623791925e-09,-8.639366948825621055e-09,-9.256464588027450185e-09,-9.873562227229279315e-09,-1.049065986643110845e-08,-1.110775750563293758e-08,-1.172485514483476671e-08,-1.234195278403659584e-08,-1.295905042323842497e-08,-1.357614806244025410e-08,-1.419324570164208323e-08,-1.481034334084391236e-08,-1.542744098004574149e-08,-1.604453861924757062e-08,-1.666163625844939975e-08,-1.727873389765122888e-08,-1.789583153685305801e-08,-1.851292917605488714e-08,-1.913002681525671627e-08,-1.974712445445854540e-08,-2.036422209366037453e-08,-2.098131973286220366e-08,-2.159841737206403279e-08,-2.221551501126586192e-08,-2.283261265046769105e-08,-2.344971028966952018e-08,-2.406680792887134931e-08,-2.468390556807317844e-08,-2.530100320727500757e-08,-2.591810084647683670e-08,-2.653519848567866583e-08,-2.715229612488049496e-08,-2.776939376408232409e-08,-2.838649140328415322e-08,-2.900358904248598235e-08,-2.962068668168781148e-08,-3.023778432088963730e-08,-3.085488196009146312e-08,-3.147197959929328894e-08,-3.208907723849511476e-08,-3.270617487769694058e-08,-3.332327251689876640e-08,-3.394037015610059222e-08,-3.455746779530241805e-08,-3.517456543450424387e-08,-3.579166307370606969e-08,-3.640876071290789551e-08,-3.702585835210972133e-08,-3.764295599131154715e-08,-3.826005363051337297e-08,-3.887715126971519880e-08 +0.000000000000000000e+00,-1.350055991390060088e-11,-2.700111982780120177e-11,-4.050167974170180588e-11,-5.400223965560241000e-11,-6.750279956950301411e-11,-8.100335948340361177e-11,-9.450391939730420942e-11,-1.080044793112048071e-10,-1.215050392251054047e-10,-1.350055991390060024e-10,-1.485061590529066000e-10,-1.620067189668071977e-10,-1.755072788807077953e-10,-1.890078387946083930e-10,-2.025083987085089906e-10,-2.160089586224095883e-10,-2.295095185363101859e-10,-2.430100784502107578e-10,-2.565106383641113037e-10,-2.700111982780118497e-10,-2.835117581919123956e-10,-2.970123181058129416e-10,-3.105128780197134875e-10,-3.240134379336140335e-10,-3.375139978475145794e-10,-3.510145577614151254e-10,-3.645151176753156713e-10,-3.780156775892162173e-10,-3.915162375031167632e-10,-4.050167974170173092e-10,-4.185173573309178552e-10,-4.320179172448184011e-10,-4.455184771587189471e-10,-4.590190370726194930e-10,-4.725195969865200390e-10,-4.860201569004205849e-10,-4.995207168143211309e-10,-5.130212767282216768e-10,-5.265218366421222228e-10,-5.400223965560227687e-10,-5.535229564699233147e-10,-5.670235163838238606e-10,-5.805240762977244066e-10,-5.940246362116249526e-10,-6.075251961255254985e-10,-6.210257560394260445e-10,-6.345263159533265904e-10,-6.480268758672271364e-10,-6.615274357811276823e-10,-6.750279956950282283e-10,-6.885285556089287742e-10,-7.020291155228293202e-10,-7.155296754367298661e-10,-7.290302353506304121e-10,-7.425307952645309581e-10,-7.560313551784315040e-10,-7.695319150923320500e-10,-7.830324750062325959e-10,-7.965330349201331419e-10,-8.100335948340336878e-10,-8.235341547479342338e-10,-8.370347146618347797e-10,-8.505352745757353257e-10 +0.000000000000000000e+00,-6.751917395254112431e-10,-1.350383479050822486e-09,-2.025575218576233729e-09,-2.700766958101644972e-09,-3.375958697627056215e-09,-4.051150437152467459e-09,-4.726342176677878702e-09,-5.401533916203289945e-09,-6.076725655728701188e-09,-6.751917395254112431e-09,-7.427109134779523674e-09,-8.102300874304934917e-09,-8.777492613830345333e-09,-9.452684353355755749e-09,-1.012787609288116616e-08,-1.080306783240657658e-08,-1.147825957193198700e-08,-1.215345131145739741e-08,-1.282864305098280783e-08,-1.350383479050821824e-08,-1.417902653003362866e-08,-1.485421826955903908e-08,-1.552941000908444949e-08,-1.620460174860985991e-08,-1.687979348813527032e-08,-1.755498522766068074e-08,-1.823017696718609116e-08,-1.890536870671150157e-08,-1.958056044623691199e-08,-2.025575218576232240e-08,-2.093094392528773282e-08,-2.160613566481314324e-08,-2.228132740433855365e-08,-2.295651914386396407e-08,-2.363171088338937448e-08,-2.430690262291478490e-08,-2.498209436244019531e-08,-2.565728610196560573e-08,-2.633247784149101615e-08,-2.700766958101642656e-08,-2.768286132054183698e-08,-2.835805306006724739e-08,-2.903324479959265781e-08,-2.970843653911806823e-08,-3.038362827864348195e-08,-3.105882001816889237e-08,-3.173401175769430278e-08,-3.240920349721971320e-08,-3.308439523674512361e-08,-3.375958697627053403e-08,-3.443477871579594445e-08,-3.510997045532135486e-08,-3.578516219484676528e-08,-3.646035393437217569e-08,-3.713554567389758611e-08,-3.781073741342299653e-08,-3.848592915294840694e-08,-3.916112089247381736e-08,-3.983631263199922777e-08,-4.051150437152463819e-08,-4.118669611105004861e-08,-4.186188785057545902e-08,-4.253707959010086944e-08 +0.000000000000000000e+00,-3.766569505120737853e-20,-7.533139010241475706e-20,-1.129970851536221356e-19,-1.506627802048295141e-19,-1.883284752560368926e-19,-2.259941703072442712e-19,-2.636598653584516256e-19,-3.013255604096589801e-19,-3.389912554608663345e-19,-3.766569505120736890e-19,-4.143226455632810434e-19,-4.519883406144884460e-19,-4.896540356656958486e-19,-5.273197307169032512e-19,-5.649854257681106539e-19,-6.026511208193180565e-19,-6.403168158705254591e-19,-6.779825109217328617e-19,-7.156482059729402643e-19,-7.533139010241476669e-19,-7.909795960753550695e-19,-8.286452911265624721e-19,-8.663109861777698747e-19,-9.039766812289772773e-19,-9.416423762801846799e-19,-9.793080713313920825e-19,-1.016973766382599485e-18,-1.054639461433806888e-18,-1.092305156485014290e-18,-1.129970851536221693e-18,-1.167636546587429095e-18,-1.205302241638636498e-18,-1.242967936689843901e-18,-1.280633631741051303e-18,-1.318299326792258706e-18,-1.355965021843466109e-18,-1.393630716894673511e-18,-1.431296411945880914e-18,-1.468962106997088316e-18,-1.506627802048295719e-18,-1.544293497099503122e-18,-1.581959192150710524e-18,-1.619624887201917927e-18,-1.657290582253125329e-18,-1.694956277304332732e-18,-1.732621972355540135e-18,-1.770287667406747730e-18,-1.807953362457955325e-18,-1.845619057509162920e-18,-1.883284752560370515e-18,-1.920950447611578111e-18,-1.958616142662785706e-18,-1.996281837713993301e-18,-2.033947532765200896e-18,-2.071613227816408491e-18,-2.109278922867616086e-18,-2.146944617918823682e-18,-2.184610312970031277e-18,-2.222276008021238872e-18,-2.259941703072446467e-18,-2.297607398123654062e-18,-2.335273093174861658e-18,-2.372938788226069253e-18 +0.000000000000000000e+00,-2.209249573891453194e-10,-4.418499147782906389e-10,-6.627748721674359842e-10,-8.836998295565813812e-10,-1.104624786945726882e-09,-1.325549744334872382e-09,-1.546474701724017882e-09,-1.767399659113163383e-09,-1.988324616502308883e-09,-2.209249573891454590e-09,-2.430174531280600297e-09,-2.651099488669746005e-09,-2.872024446058891712e-09,-3.092949403448037419e-09,-3.313874360837183126e-09,-3.534799318226328833e-09,-3.755724275615474541e-09,-3.976649233004620248e-09,-4.197574190393765955e-09,-4.418499147782911662e-09,-4.639424105172057369e-09,-4.860349062561203077e-09,-5.081274019950348784e-09,-5.302198977339494491e-09,-5.523123934728640198e-09,-5.744048892117785905e-09,-5.964973849506931612e-09,-6.185898806896077320e-09,-6.406823764285223027e-09,-6.627748721674368734e-09,-6.848673679063514441e-09,-7.069598636452660148e-09,-7.290523593841805856e-09,-7.511448551230950736e-09,-7.732373508620096443e-09,-7.953298466009242150e-09,-8.174223423398387857e-09,-8.395148380787533564e-09,-8.616073338176679271e-09,-8.836998295565824979e-09,-9.057923252954970686e-09,-9.278848210344116393e-09,-9.499773167733262100e-09,-9.720698125122407807e-09,-9.941623082511553515e-09,-1.016254803990069922e-08,-1.038347299728984493e-08,-1.060439795467899064e-08,-1.082532291206813634e-08,-1.104624786945728205e-08,-1.126717282684642776e-08,-1.148809778423557346e-08,-1.170902274162471917e-08,-1.192994769901386488e-08,-1.215087265640301059e-08,-1.237179761379215629e-08,-1.259272257118130200e-08,-1.281364752857044771e-08,-1.303457248595959342e-08,-1.325549744334873912e-08,-1.347642240073788483e-08,-1.369734735812703054e-08,-1.391827231551617624e-08 +0.000000000000000000e+00,-7.566326230585875719e-10,-1.513265246117175144e-09,-2.269897869175762509e-09,-3.026530492234349874e-09,-3.783163115292937239e-09,-4.539795738351525018e-09,-5.296428361410112796e-09,-6.053060984468700575e-09,-6.809693607527288354e-09,-7.566326230585876133e-09,-8.322958853644463911e-09,-9.079591476703051690e-09,-9.836224099761639469e-09,-1.059285672282022725e-08,-1.134948934587881503e-08,-1.210612196893740280e-08,-1.286275459199599058e-08,-1.361938721505457836e-08,-1.437601983811316614e-08,-1.513265246117175557e-08,-1.588928508423034501e-08,-1.664591770728893444e-08,-1.740255033034752387e-08,-1.815918295340611331e-08,-1.891581557646470274e-08,-1.967244819952329217e-08,-2.042908082258188161e-08,-2.118571344564047104e-08,-2.194234606869906047e-08,-2.269897869175764990e-08,-2.345561131481623934e-08,-2.421224393787482877e-08,-2.496887656093341820e-08,-2.572550918399200764e-08,-2.648214180705059707e-08,-2.723877443010918650e-08,-2.799540705316777594e-08,-2.875203967622636537e-08,-2.950867229928495480e-08,-3.026530492234354423e-08,-3.102193754540213367e-08,-3.177857016846072310e-08,-3.253520279151931253e-08,-3.329183541457790197e-08,-3.404846803763649140e-08,-3.480510066069508083e-08,-3.556173328375367027e-08,-3.631836590681225970e-08,-3.707499852987084913e-08,-3.783163115292943857e-08,-3.858826377598802800e-08,-3.934489639904661743e-08,-4.010152902210520686e-08,-4.085816164516379630e-08,-4.161479426822238573e-08,-4.237142689128097516e-08,-4.312805951433956460e-08,-4.388469213739815403e-08,-4.464132476045674346e-08,-4.539795738351533290e-08,-4.615459000657392233e-08,-4.691122262963251176e-08,-4.766785525269110119e-08 +0.000000000000000000e+00,-8.019340129614297829e-11,-1.603868025922859566e-10,-2.405802038884289478e-10,-3.207736051845719649e-10,-4.009670064807149819e-10,-4.811604077768579990e-10,-5.613538090730009643e-10,-6.415472103691439297e-10,-7.217406116652868951e-10,-8.019340129614298604e-10,-8.821274142575728258e-10,-9.623208155537157912e-10,-1.042514216849858757e-09,-1.122707618146001722e-09,-1.202901019442144687e-09,-1.283094420738287653e-09,-1.363287822034430618e-09,-1.443481223330573583e-09,-1.523674624626716549e-09,-1.603868025922859514e-09,-1.684061427219002479e-09,-1.764254828515145445e-09,-1.844448229811288410e-09,-1.924641631107431169e-09,-2.004835032403573721e-09,-2.085028433699716272e-09,-2.165221834995858824e-09,-2.245415236292001376e-09,-2.325608637588143928e-09,-2.405802038884286479e-09,-2.485995440180429031e-09,-2.566188841476571583e-09,-2.646382242772714135e-09,-2.726575644068856686e-09,-2.806769045364999238e-09,-2.886962446661141790e-09,-2.967155847957284342e-09,-3.047349249253426894e-09,-3.127542650549569445e-09,-3.207736051845711997e-09,-3.287929453141854549e-09,-3.368122854437997101e-09,-3.448316255734139652e-09,-3.528509657030282204e-09,-3.608703058326424756e-09,-3.688896459622567308e-09,-3.769089860918709860e-09,-3.849283262214852411e-09,-3.929476663510994963e-09,-4.009670064807137515e-09,-4.089863466103280067e-09,-4.170056867399422618e-09,-4.250250268695565170e-09,-4.330443669991707722e-09,-4.410637071287850274e-09,-4.490830472583992826e-09,-4.571023873880135377e-09,-4.651217275176277929e-09,-4.731410676472420481e-09,-4.811604077768563033e-09,-4.891797479064705584e-09,-4.971990880360848136e-09,-5.052184281656990688e-09 +0.000000000000000000e+00,-3.373506209338705225e-10,-6.747012418677410450e-10,-1.012051862801611568e-09,-1.349402483735482090e-09,-1.686753104669352613e-09,-2.024103725603223135e-09,-2.361454346537093658e-09,-2.698804967470964180e-09,-3.036155588404834703e-09,-3.373506209338705225e-09,-3.710856830272575748e-09,-4.048207451206446270e-09,-4.385558072140317206e-09,-4.722908693074188142e-09,-5.060259314008059078e-09,-5.397609934941930015e-09,-5.734960555875800951e-09,-6.072311176809671887e-09,-6.409661797743542823e-09,-6.747012418677413759e-09,-7.084363039611284695e-09,-7.421713660545155631e-09,-7.759064281479026567e-09,-8.096414902412897503e-09,-8.433765523346768439e-09,-8.771116144280639376e-09,-9.108466765214510312e-09,-9.445817386148381248e-09,-9.783168007082252184e-09,-1.012051862801612312e-08,-1.045786924894999406e-08,-1.079521986988386499e-08,-1.113257049081773593e-08,-1.146992111175160686e-08,-1.180727173268547780e-08,-1.214462235361934874e-08,-1.248197297455321967e-08,-1.281932359548709061e-08,-1.315667421642096154e-08,-1.349402483735483248e-08,-1.383137545828870342e-08,-1.416872607922257435e-08,-1.450607670015644529e-08,-1.484342732109031623e-08,-1.518077794202418551e-08,-1.551812856295805644e-08,-1.585547918389192738e-08,-1.619282980482579832e-08,-1.653018042575966925e-08,-1.686753104669354019e-08,-1.720488166762741112e-08,-1.754223228856128206e-08,-1.787958290949515300e-08,-1.821693353042902393e-08,-1.855428415136289487e-08,-1.889163477229676580e-08,-1.922898539323063674e-08,-1.956633601416450768e-08,-1.990368663509837861e-08,-2.024103725603224955e-08,-2.057838787696612048e-08,-2.091573849789999142e-08,-2.125308911883386236e-08 +0.000000000000000000e+00,-3.431752995283815552e-20,-6.863505990567631104e-20,-1.029525898585144726e-19,-1.372701198113526462e-19,-1.715876497641908197e-19,-2.059051797170289933e-19,-2.402227096698671669e-19,-2.745402396227053405e-19,-3.088577695755435140e-19,-3.431752995283816876e-19,-3.774928294812198612e-19,-4.118103594340580348e-19,-4.461278893868961602e-19,-4.804454193397342375e-19,-5.147629492925723147e-19,-5.490804792454103920e-19,-5.833980091982484693e-19,-6.177155391510865466e-19,-6.520330691039246239e-19,-6.863505990567627011e-19,-7.206681290096007784e-19,-7.549856589624388557e-19,-7.893031889152769330e-19,-8.236207188681150103e-19,-8.579382488209530875e-19,-8.922557787737911648e-19,-9.265733087266292421e-19,-9.608908386794673194e-19,-9.952083686323053966e-19,-1.029525898585143474e-18,-1.063843428537981551e-18,-1.098160958490819628e-18,-1.132478488443657706e-18,-1.166796018396495783e-18,-1.201113548349333860e-18,-1.235431078302171938e-18,-1.269748608255010015e-18,-1.304066138207848092e-18,-1.338383668160686169e-18,-1.372701198113524247e-18,-1.407018728066362324e-18,-1.441336258019200401e-18,-1.475653787972038479e-18,-1.509971317924876556e-18,-1.544288847877714633e-18,-1.578606377830552710e-18,-1.612923907783390788e-18,-1.647241437736228865e-18,-1.681558967689066942e-18,-1.715876497641905020e-18,-1.750194027594743097e-18,-1.784511557547581174e-18,-1.818829087500419251e-18,-1.853146617453257329e-18,-1.887464147406095406e-18,-1.921781677358933483e-18,-1.956099207311771560e-18,-1.990416737264609638e-18,-2.024734267217447715e-18,-2.059051797170285792e-18,-2.093369327123123870e-18,-2.127686857075961947e-18,-2.162004387028800024e-18 +0.000000000000000000e+00,1.350055984423692473e-11,2.700111968847384945e-11,4.050167953271077256e-11,5.400223937694769244e-11,6.750279922118461232e-11,8.100335906542153220e-11,9.450391890965845208e-11,1.080044787538953720e-10,1.215050385981323048e-10,1.350055984423692505e-10,1.485061582866061962e-10,1.620067181308431419e-10,1.755072779750800877e-10,1.890078378193170334e-10,2.025083976635539791e-10,2.160089575077909249e-10,2.295095173520278706e-10,2.430100771962648163e-10,2.565106370405017620e-10,2.700111968847387078e-10,2.835117567289756535e-10,2.970123165732125992e-10,3.105128764174495450e-10,3.240134362616864907e-10,3.375139961059234364e-10,3.510145559501603821e-10,3.645151157943973279e-10,3.780156756386342736e-10,3.915162354828712193e-10,4.050167953271081651e-10,4.185173551713451108e-10,4.320179150155820565e-10,4.455184748598190022e-10,4.590190347040559480e-10,4.725195945482928937e-10,4.860201543925298394e-10,4.995207142367667852e-10,5.130212740810037309e-10,5.265218339252406766e-10,5.400223937694776223e-10,5.535229536137145681e-10,5.670235134579515138e-10,5.805240733021884595e-10,5.940246331464254053e-10,6.075251929906623510e-10,6.210257528348992967e-10,6.345263126791362424e-10,6.480268725233731882e-10,6.615274323676101339e-10,6.750279922118470796e-10,6.885285520560840254e-10,7.020291119003209711e-10,7.155296717445579168e-10,7.290302315887948625e-10,7.425307914330318083e-10,7.560313512772687540e-10,7.695319111215056997e-10,7.830324709657426455e-10,7.965330308099795912e-10,8.100335906542165369e-10,8.235341504984534826e-10,8.370347103426904284e-10,8.505352701869273741e-10 +0.000000000000000000e+00,6.751917394501165074e-10,1.350383478900233015e-09,2.025575218350349729e-09,2.700766957800466443e-09,3.375958697250583158e-09,4.051150436700699458e-09,4.726342176150815759e-09,5.401533915600932060e-09,6.076725655051048360e-09,6.751917394501164661e-09,7.427109133951280962e-09,8.102300873401397262e-09,8.777492612851512736e-09,9.452684352301628209e-09,1.012787609175174368e-08,1.080306783120185916e-08,1.147825957065197463e-08,1.215345131010209010e-08,1.282864304955220558e-08,1.350383478900232105e-08,1.417902652845243652e-08,1.485421826790255200e-08,1.552941000735266747e-08,1.620460174680278460e-08,1.687979348625290173e-08,1.755498522570301885e-08,1.823017696515313598e-08,1.890536870460325311e-08,1.958056044405337024e-08,2.025575218350348737e-08,2.093094392295360449e-08,2.160613566240372162e-08,2.228132740185383875e-08,2.295651914130395588e-08,2.363171088075407300e-08,2.430690262020419013e-08,2.498209435965430726e-08,2.565728609910442439e-08,2.633247783855454152e-08,2.700766957800465864e-08,2.768286131745477577e-08,2.835805305690489290e-08,2.903324479635501003e-08,2.970843653580512715e-08,3.038362827525524428e-08,3.105882001470536141e-08,3.173401175415547854e-08,3.240920349360559567e-08,3.308439523305571279e-08,3.375958697250582992e-08,3.443477871195594705e-08,3.510997045140606418e-08,3.578516219085618131e-08,3.646035393030629843e-08,3.713554566975641556e-08,3.781073740920653269e-08,3.848592914865664982e-08,3.916112088810676694e-08,3.983631262755688407e-08,4.051150436700700120e-08,4.118669610645711833e-08,4.186188784590723546e-08,4.253707958535735258e-08 +0.000000000000000000e+00,3.373506208585524707e-10,6.747012417171049414e-10,1.012051862575657464e-09,1.349402483434210090e-09,1.686753104292762715e-09,2.024103725151315341e-09,2.361454346009868174e-09,2.698804966868421007e-09,3.036155587726973839e-09,3.373506208585526672e-09,3.710856829444079504e-09,4.048207450302632337e-09,4.385558071161185170e-09,4.722908692019738002e-09,5.060259312878290835e-09,5.397609933736843667e-09,5.734960554595396500e-09,6.072311175453949333e-09,6.409661796312502165e-09,6.747012417171054998e-09,7.084363038029607830e-09,7.421713658888160663e-09,7.759064279746713496e-09,8.096414900605266328e-09,8.433765521463819161e-09,8.771116142322371993e-09,9.108466763180924826e-09,9.445817384039477659e-09,9.783168004898030491e-09,1.012051862575658332e-08,1.045786924661513616e-08,1.079521986747368899e-08,1.113257048833224182e-08,1.146992110919079465e-08,1.180727173004934749e-08,1.214462235090790032e-08,1.248197297176645315e-08,1.281932359262500598e-08,1.315667421348355882e-08,1.349402483434211165e-08,1.383137545520066448e-08,1.416872607605921732e-08,1.450607669691777015e-08,1.484342731777632298e-08,1.518077793863487581e-08,1.551812855949342699e-08,1.585547918035197817e-08,1.619282980121052935e-08,1.653018042206908053e-08,1.686753104292763170e-08,1.720488166378618288e-08,1.754223228464473406e-08,1.787958290550328524e-08,1.821693352636183642e-08,1.855428414722038760e-08,1.889163476807893877e-08,1.922898538893748995e-08,1.956633600979604113e-08,1.990368663065459231e-08,2.024103725151314349e-08,2.057838787237169466e-08,2.091573849323024584e-08,2.125308911408879702e-08 +0.000000000000000000e+00,2.209249573166984374e-10,4.418499146333968748e-10,6.627748719500953122e-10,8.836998292667937496e-10,1.104624786583492084e-09,1.325549743900190418e-09,1.546474701216888752e-09,1.767399658533587086e-09,1.988324615850285420e-09,2.209249573166983754e-09,2.430174530483682088e-09,2.651099487800380422e-09,2.872024445117078756e-09,3.092949402433777090e-09,3.313874359750475424e-09,3.534799317067173758e-09,3.755724274383872092e-09,3.976649231700570839e-09,4.197574189017269587e-09,4.418499146333968334e-09,4.639424103650667082e-09,4.860349060967365830e-09,5.081274018284064577e-09,5.302198975600763325e-09,5.523123932917462072e-09,5.744048890234160820e-09,5.964973847550859568e-09,6.185898804867558315e-09,6.406823762184257063e-09,6.627748719500955810e-09,6.848673676817654558e-09,7.069598634134353306e-09,7.290523591451052053e-09,7.511448548767750801e-09,7.732373506084450376e-09,7.953298463401149950e-09,8.174223420717849525e-09,8.395148378034549100e-09,8.616073335351248675e-09,8.836998292667948249e-09,9.057923249984647824e-09,9.278848207301347399e-09,9.499773164618046974e-09,9.720698121934746549e-09,9.941623079251446123e-09,1.016254803656814570e-08,1.038347299388484527e-08,1.060439795120154485e-08,1.082532290851824442e-08,1.104624786583494400e-08,1.126717282315164357e-08,1.148809778046834315e-08,1.170902273778504272e-08,1.192994769510174230e-08,1.215087265241844187e-08,1.237179760973514145e-08,1.259272256705184102e-08,1.281364752436854060e-08,1.303457248168524017e-08,1.325549743900193974e-08,1.347642239631863932e-08,1.369734735363533889e-08,1.391827231095203847e-08 +0.000000000000000000e+00,7.566326229899854512e-10,1.513265245979970902e-09,2.269897868969956250e-09,3.026530491959941391e-09,3.783163114949926946e-09,4.539795737939912500e-09,5.296428360929898055e-09,6.053060983919883610e-09,6.809693606909869164e-09,7.566326229899853891e-09,8.322958852889838619e-09,9.079591475879823346e-09,9.836224098869808074e-09,1.059285672185979280e-08,1.134948934484977753e-08,1.210612196783976226e-08,1.286275459082974698e-08,1.361938721381973171e-08,1.437601983680971644e-08,1.513265245979970117e-08,1.588928508278968755e-08,1.664591770577967393e-08,1.740255032876966031e-08,1.815918295175964669e-08,1.891581557474963307e-08,1.967244819773961946e-08,2.042908082072960584e-08,2.118571344371959222e-08,2.194234606670957860e-08,2.269897868969956498e-08,2.345561131268955136e-08,2.421224393567953775e-08,2.496887655866952413e-08,2.572550918165951051e-08,2.648214180464949689e-08,2.723877442763948327e-08,2.799540705062946966e-08,2.875203967361945604e-08,2.950867229660944242e-08,3.026530491959942880e-08,3.102193754258941518e-08,3.177857016557940156e-08,3.253520278856938795e-08,3.329183541155937433e-08,3.404846803454936071e-08,3.480510065753934709e-08,3.556173328052933347e-08,3.631836590351931986e-08,3.707499852650930624e-08,3.783163114949929262e-08,3.858826377248927900e-08,3.934489639547926538e-08,4.010152901846925176e-08,4.085816164145923815e-08,4.161479426444922453e-08,4.237142688743921091e-08,4.312805951042919729e-08,4.388469213341918367e-08,4.464132475640917005e-08,4.539795737939915644e-08,4.615459000238914282e-08,4.691122262537912920e-08,4.766785524836911558e-08 +0.000000000000000000e+00,8.019340123477853285e-11,1.603868024695570657e-10,2.405802037043356115e-10,3.207736049391141831e-10,4.009670061738927547e-10,4.811604074086713263e-10,5.613538086434498980e-10,6.415472098782284696e-10,7.217406111130070412e-10,8.019340123477856128e-10,8.821274135825641844e-10,9.623208148173428595e-10,1.042514216052121431e-09,1.122707617286900003e-09,1.202901018521678574e-09,1.283094419756457146e-09,1.363287820991235718e-09,1.443481222226014289e-09,1.523674623460792861e-09,1.603868024695571432e-09,1.684061425930350004e-09,1.764254827165128576e-09,1.844448228399907147e-09,1.924641629634685719e-09,2.004835030869464291e-09,2.085028432104242862e-09,2.165221833339021434e-09,2.245415234573800005e-09,2.325608635808578577e-09,2.405802037043357149e-09,2.485995438278135720e-09,2.566188839512914292e-09,2.646382240747692864e-09,2.726575641982471435e-09,2.806769043217250007e-09,2.886962444452028578e-09,2.967155845686807150e-09,3.047349246921585722e-09,3.127542648156364293e-09,3.207736049391142865e-09,3.287929450625921437e-09,3.368122851860700008e-09,3.448316253095478580e-09,3.528509654330257151e-09,3.608703055565035723e-09,3.688896456799814295e-09,3.769089858034592453e-09,3.849283259269370611e-09,3.929476660504148769e-09,4.009670061738926927e-09,4.089863462973705085e-09,4.170056864208483243e-09,4.250250265443261401e-09,4.330443666678039559e-09,4.410637067912817717e-09,4.490830469147595875e-09,4.571023870382374033e-09,4.651217271617152191e-09,4.731410672851930349e-09,4.811604074086708507e-09,4.891797475321486665e-09,4.971990876556264823e-09,5.052184277791042981e-09 +0.000000000000000000e+00,2.724403938514168549e-10,5.448807877028337097e-10,8.173211815542505646e-10,1.089761575405667419e-09,1.362201969257084274e-09,1.634642363108501129e-09,1.907082756959917984e-09,2.179523150811334839e-09,2.451963544662751694e-09,2.724403938514168549e-09,2.996844332365585403e-09,3.269284726217002258e-09,3.541725120068419113e-09,3.814165513919835968e-09,4.086605907771253236e-09,4.359046301622670505e-09,4.631486695474087773e-09,4.903927089325505042e-09,5.176367483176922310e-09,5.448807877028339579e-09,5.721248270879756847e-09,5.993688664731174116e-09,6.266129058582591384e-09,6.538569452434008653e-09,6.811009846285425921e-09,7.083450240136843189e-09,7.355890633988260458e-09,7.628331027839676899e-09,7.900771421691093340e-09,8.173211815542509782e-09,8.445652209393926223e-09,8.718092603245342664e-09,8.990532997096759105e-09,9.262973390948175547e-09,9.535413784799591988e-09,9.807854178651008429e-09,1.008029457250242487e-08,1.035273496635384131e-08,1.062517536020525775e-08,1.089761575405667419e-08,1.117005614790809064e-08,1.144249654175950708e-08,1.171493693561092352e-08,1.198737732946233996e-08,1.225981772331375640e-08,1.253225811716517284e-08,1.280469851101658928e-08,1.307713890486800572e-08,1.334957929871942217e-08,1.362201969257083861e-08,1.389446008642225505e-08,1.416690048027367149e-08,1.443934087412508793e-08,1.471178126797650437e-08,1.498422166182792081e-08,1.525666205567933725e-08,1.552910244953075370e-08,1.580154284338217014e-08,1.607398323723358658e-08,1.634642363108500302e-08,1.661886402493641946e-08,1.689130441878783590e-08,1.716374481263925234e-08 +0.000000000000000000e+00,1.582518224996933211e-10,3.165036449993866422e-10,4.747554674990800150e-10,6.330072899987733877e-10,7.912591124984667605e-10,9.495109349981600299e-10,1.107762757497853299e-09,1.266014579997546569e-09,1.424266402497239838e-09,1.582518224996933107e-09,1.740770047496626377e-09,1.899021869996319646e-09,2.057273692496012916e-09,2.215525514995706185e-09,2.373777337495399454e-09,2.532029159995092724e-09,2.690280982494785993e-09,2.848532804994479263e-09,3.006784627494172532e-09,3.165036449993865801e-09,3.323288272493559071e-09,3.481540094993252340e-09,3.639791917492945609e-09,3.798043739992638465e-09,3.956295562492331321e-09,4.114547384992024177e-09,4.272799207491717033e-09,4.431051029991409888e-09,4.589302852491102744e-09,4.747554674990795600e-09,4.905806497490488456e-09,5.064058319990181312e-09,5.222310142489874167e-09,5.380561964989567023e-09,5.538813787489259879e-09,5.697065609988952735e-09,5.855317432488645591e-09,6.013569254988338446e-09,6.171821077488031302e-09,6.330072899987724158e-09,6.488324722487417014e-09,6.646576544987109870e-09,6.804828367486802725e-09,6.963080189986495581e-09,7.121332012486188437e-09,7.279583834985881293e-09,7.437835657485574149e-09,7.596087479985267004e-09,7.754339302484959860e-09,7.912591124984652716e-09,8.070842947484345572e-09,8.229094769984038428e-09,8.387346592483731283e-09,8.545598414983424139e-09,8.703850237483116995e-09,8.862102059982809851e-09,9.020353882482502707e-09,9.178605704982195562e-09,9.336857527481888418e-09,9.495109349981581274e-09,9.653361172481274130e-09,9.811612994980966986e-09,9.969864817480659841e-09 +0.000000000000000000e+00,2.165975233883601912e-10,4.331950467767203824e-10,6.497925701650805994e-10,8.663900935534408682e-10,1.082987616941801137e-09,1.299585140330161406e-09,1.516182663718521674e-09,1.732780187106881943e-09,1.949377710495242212e-09,2.165975233883602274e-09,2.382572757271962336e-09,2.599170280660322398e-09,2.815767804048682460e-09,3.032365327437042522e-09,3.248962850825402584e-09,3.465560374213762646e-09,3.682157897602122707e-09,3.898755420990482769e-09,4.115352944378842831e-09,4.331950467767202893e-09,4.548547991155562955e-09,4.765145514543923017e-09,4.981743037932283079e-09,5.198340561320643141e-09,5.414938084709003203e-09,5.631535608097363265e-09,5.848133131485723327e-09,6.064730654874083389e-09,6.281328178262443451e-09,6.497925701650803513e-09,6.714523225039163575e-09,6.931120748427523637e-09,7.147718271815883699e-09,7.364315795204243761e-09,7.580913318592603823e-09,7.797510841980963884e-09,8.014108365369323946e-09,8.230705888757684008e-09,8.447303412146044070e-09,8.663900935534404132e-09,8.880498458922764194e-09,9.097095982311124256e-09,9.313693505699484318e-09,9.530291029087844380e-09,9.746888552476204442e-09,9.963486075864564504e-09,1.018008359925292457e-08,1.039668112264128463e-08,1.061327864602964469e-08,1.082987616941800475e-08,1.104647369280636481e-08,1.126307121619472488e-08,1.147966873958308494e-08,1.169626626297144500e-08,1.191286378635980506e-08,1.212946130974816512e-08,1.234605883313652519e-08,1.256265635652488525e-08,1.277925387991324531e-08,1.299585140330160537e-08,1.321244892668996543e-08,1.342904645007832550e-08,1.364564397346668556e-08 +0.000000000000000000e+00,-2.724403939158604801e-10,-5.448807878317209603e-10,-8.173211817475814921e-10,-1.089761575663442127e-09,-1.362201969579302763e-09,-1.634642363495163398e-09,-1.907082757411023826e-09,-2.179523151326884255e-09,-2.451963545242744683e-09,-2.724403939158605111e-09,-2.996844333074465540e-09,-3.269284726990325968e-09,-3.541725120906186397e-09,-3.814165514822046825e-09,-4.086605908737907254e-09,-4.359046302653767682e-09,-4.631486696569628111e-09,-4.903927090485488539e-09,-5.176367484401348967e-09,-5.448807878317209396e-09,-5.721248272233069824e-09,-5.993688666148930253e-09,-6.266129060064790681e-09,-6.538569453980651110e-09,-6.811009847896511538e-09,-7.083450241812371966e-09,-7.355890635728232395e-09,-7.628331029644091996e-09,-7.900771423559952425e-09,-8.173211817475812853e-09,-8.445652211391673281e-09,-8.718092605307533710e-09,-8.990532999223394138e-09,-9.262973393139254567e-09,-9.535413787055114995e-09,-9.807854180970975424e-09,-1.008029457488683585e-08,-1.035273496880269628e-08,-1.062517536271855671e-08,-1.089761575663441714e-08,-1.117005615055027757e-08,-1.144249654446613799e-08,-1.171493693838199842e-08,-1.198737733229785885e-08,-1.225981772621371928e-08,-1.253225812012957971e-08,-1.280469851404544014e-08,-1.307713890796130056e-08,-1.334957930187716099e-08,-1.362201969579302142e-08,-1.389446008970888185e-08,-1.416690048362474228e-08,-1.443934087754060271e-08,-1.471178127145646314e-08,-1.498422166537232356e-08,-1.525666205928818399e-08,-1.552910245320404442e-08,-1.580154284711990485e-08,-1.607398324103576528e-08,-1.634642363495162571e-08,-1.661886402886748613e-08,-1.689130442278334656e-08,-1.716374481669920699e-08 +0.000000000000000000e+00,-1.582518225667310623e-10,-3.165036451334621246e-10,-4.747554677001931611e-10,-6.330072902669241458e-10,-7.912591128336551306e-10,-9.495109354003861153e-10,-1.107762757967116997e-09,-1.266014580533847878e-09,-1.424266403100578759e-09,-1.582518225667309641e-09,-1.740770048234040522e-09,-1.899021870800771403e-09,-2.057273693367502285e-09,-2.215525515934233166e-09,-2.373777338500964048e-09,-2.532029161067694929e-09,-2.690280983634425810e-09,-2.848532806201156692e-09,-3.006784628767887573e-09,-3.165036451334618454e-09,-3.323288273901349336e-09,-3.481540096468080217e-09,-3.639791919034811098e-09,-3.798043741601541980e-09,-3.956295564168272861e-09,-4.114547386735003743e-09,-4.272799209301734624e-09,-4.431051031868465505e-09,-4.589302854435196387e-09,-4.747554677001927268e-09,-4.905806499568658149e-09,-5.064058322135389031e-09,-5.222310144702119912e-09,-5.380561967268850793e-09,-5.538813789835581675e-09,-5.697065612402312556e-09,-5.855317434969043437e-09,-6.013569257535774319e-09,-6.171821080102505200e-09,-6.330072902669236082e-09,-6.488324725235966963e-09,-6.646576547802697844e-09,-6.804828370369428726e-09,-6.963080192936159607e-09,-7.121332015502890488e-09,-7.279583838069621370e-09,-7.437835660636352251e-09,-7.596087483203082305e-09,-7.754339305769811532e-09,-7.912591128336540759e-09,-8.070842950903269986e-09,-8.229094773469999213e-09,-8.387346596036728440e-09,-8.545598418603457667e-09,-8.703850241170186894e-09,-8.862102063736916121e-09,-9.020353886303645348e-09,-9.178605708870374575e-09,-9.336857531437103802e-09,-9.495109354003833029e-09,-9.653361176570562256e-09,-9.811612999137291483e-09,-9.969864821704020710e-09 +0.000000000000000000e+00,-2.165975234434546593e-10,-4.331950468869093186e-10,-6.497925703303640037e-10,-8.663900937738187406e-10,-1.082987617217273374e-09,-1.299585140660728007e-09,-1.516182664104182641e-09,-1.732780187547637274e-09,-1.949377710991091908e-09,-2.165975234434546748e-09,-2.382572757878001588e-09,-2.599170281321456428e-09,-2.815767804764911269e-09,-3.032365328208366109e-09,-3.248962851651820949e-09,-3.465560375095275789e-09,-3.682157898538730630e-09,-3.898755421982185470e-09,-4.115352945425639897e-09,-4.331950468869094323e-09,-4.548547992312548750e-09,-4.765145515756003176e-09,-4.981743039199457603e-09,-5.198340562642912030e-09,-5.414938086086366456e-09,-5.631535609529820883e-09,-5.848133132973275310e-09,-6.064730656416729736e-09,-6.281328179860184163e-09,-6.497925703303638590e-09,-6.714523226747093016e-09,-6.931120750190547443e-09,-7.147718273634001870e-09,-7.364315797077456296e-09,-7.580913320520910723e-09,-7.797510843964365977e-09,-8.014108367407821231e-09,-8.230705890851276484e-09,-8.447303414294731738e-09,-8.663900937738186992e-09,-8.880498461181642246e-09,-9.097095984625097500e-09,-9.313693508068552753e-09,-9.530291031512008007e-09,-9.746888554955463261e-09,-9.963486078398918515e-09,-1.018008360184237377e-08,-1.039668112528582902e-08,-1.061327864872928428e-08,-1.082987617217273953e-08,-1.104647369561619478e-08,-1.126307121905965004e-08,-1.147966874250310529e-08,-1.169626626594656055e-08,-1.191286378939001580e-08,-1.212946131283347105e-08,-1.234605883627692631e-08,-1.256265635972038156e-08,-1.277925388316383681e-08,-1.299585140660729207e-08,-1.321244893005074732e-08,-1.342904645349420258e-08,-1.364564397693765783e-08 +0.000000000000000000e+00,4.109214194614933562e-10,8.218428389229867124e-10,1.232764258384480017e-09,1.643685677845973218e-09,2.054607097307466419e-09,2.465528516768959620e-09,2.876449936230452821e-09,3.287371355691946022e-09,3.698292775153439223e-09,4.109214194614932838e-09,4.520135614076426453e-09,4.931057033537920067e-09,5.341978452999413682e-09,5.752899872460907297e-09,6.163821291922400911e-09,6.574742711383894526e-09,6.985664130845388141e-09,7.396585550306881755e-09,7.807506969768376197e-09,8.218428389229870639e-09,8.629349808691365081e-09,9.040271228152859523e-09,9.451192647614353965e-09,9.862114067075848407e-09,1.027303548653734285e-08,1.068395690599883729e-08,1.109487832546033173e-08,1.150579974492182617e-08,1.191672116438332062e-08,1.232764258384481506e-08,1.273856400330630950e-08,1.314948542276780394e-08,1.356040684222929838e-08,1.397132826169079283e-08,1.438224968115228727e-08,1.479317110061378171e-08,1.520409252007527615e-08,1.561501393953677225e-08,1.602593535899826834e-08,1.643685677845976444e-08,1.684777819792126054e-08,1.725869961738275663e-08,1.766962103684425273e-08,1.808054245630574882e-08,1.849146387576724492e-08,1.890238529522874102e-08,1.931330671469023711e-08,1.972422813415173321e-08,2.013514955361322931e-08,2.054607097307472540e-08,2.095699239253622150e-08,2.136791381199771759e-08,2.177883523145921369e-08,2.218975665092070979e-08,2.260067807038220588e-08,2.301159948984370198e-08,2.342252090930519808e-08,2.383344232876669417e-08,2.424436374822819027e-08,2.465528516768968636e-08,2.506620658715118246e-08,2.547712800661267856e-08,2.588804942607417465e-08 +0.000000000000000000e+00,3.482958115359377835e-10,6.965916230718755669e-10,1.044887434607813350e-09,1.393183246143751134e-09,1.741479057679688917e-09,2.089774869215626701e-09,2.438070680751564484e-09,2.786366492287502268e-09,3.134662303823440051e-09,3.482958115359377835e-09,3.831253926895315618e-09,4.179549738431253402e-09,4.527845549967191185e-09,4.876141361503128968e-09,5.224437173039066752e-09,5.572732984575004535e-09,5.921028796110942319e-09,6.269324607646880102e-09,6.617620419182817886e-09,6.965916230718755669e-09,7.314212042254693453e-09,7.662507853790631236e-09,8.010803665326569020e-09,8.359099476862506803e-09,8.707395288398444586e-09,9.055691099934382370e-09,9.403986911470320153e-09,9.752282723006257937e-09,1.010057853454219572e-08,1.044887434607813350e-08,1.079717015761407129e-08,1.114546596915000907e-08,1.149376178068594685e-08,1.184205759222188464e-08,1.219035340375782242e-08,1.253864921529376020e-08,1.288694502682969799e-08,1.323524083836563577e-08,1.358353664990157355e-08,1.393183246143751134e-08,1.428012827297344912e-08,1.462842408450938691e-08,1.497671989604532634e-08,1.532501570758126578e-08,1.567331151911720522e-08,1.602160733065314466e-08,1.636990314218908409e-08,1.671819895372502353e-08,1.706649476526096297e-08,1.741479057679690241e-08,1.776308638833284185e-08,1.811138219986878128e-08,1.845967801140472072e-08,1.880797382294066016e-08,1.915626963447659960e-08,1.950456544601253903e-08,1.985286125754847847e-08,2.020115706908441791e-08,2.054945288062035735e-08,2.089774869215629679e-08,2.124604450369223622e-08,2.159434031522817566e-08,2.194263612676411510e-08 +0.000000000000000000e+00,3.682817649444070503e-10,7.365635298888141006e-10,1.104845294833221151e-09,1.473127059777628201e-09,1.841408824722035251e-09,2.209690589666442302e-09,2.577972354610849352e-09,2.946254119555256402e-09,3.314535884499663453e-09,3.682817649444070503e-09,4.051099414388477140e-09,4.419381179332883776e-09,4.787662944277290413e-09,5.155944709221697050e-09,5.524226474166103687e-09,5.892508239110510323e-09,6.260790004054916960e-09,6.629071768999323597e-09,6.997353533943730233e-09,7.365635298888136870e-09,7.733917063832543507e-09,8.102198828776950971e-09,8.470480593721358435e-09,8.838762358665765898e-09,9.207044123610173362e-09,9.575325888554580826e-09,9.943607653498988290e-09,1.031188941844339575e-08,1.068017118338780322e-08,1.104845294833221068e-08,1.141673471327661815e-08,1.178501647822102561e-08,1.215329824316543307e-08,1.252158000810984054e-08,1.288986177305424800e-08,1.325814353799865547e-08,1.362642530294306293e-08,1.399470706788747039e-08,1.436298883283187786e-08,1.473127059777628532e-08,1.509955236272069278e-08,1.546783412766510025e-08,1.583611589260950771e-08,1.620439765755391518e-08,1.657267942249832264e-08,1.694096118744273010e-08,1.730924295238713757e-08,1.767752471733154503e-08,1.804580648227595250e-08,1.841408824722035996e-08,1.878237001216476742e-08,1.915065177710917489e-08,1.951893354205358235e-08,1.988721530699798982e-08,2.025549707194239728e-08,2.062377883688680474e-08,2.099206060183121221e-08,2.136034236677561967e-08,2.172862413172002713e-08,2.209690589666443460e-08,2.246518766160884206e-08,2.283346942655324953e-08,2.320175119149765699e-08 +0.000000000000000000e+00,-4.109214195205656324e-10,-8.218428390411312649e-10,-1.232764258561696846e-09,-1.643685678082262323e-09,-2.054607097602827800e-09,-2.465528517123393278e-09,-2.876449936643958755e-09,-3.287371356164524232e-09,-3.698292775685089710e-09,-4.109214195205655601e-09,-4.520135614726221492e-09,-4.931057034246787383e-09,-5.341978453767353274e-09,-5.752899873287919164e-09,-6.163821292808485055e-09,-6.574742712329050946e-09,-6.985664131849616837e-09,-7.396585551370182728e-09,-7.807506970890747792e-09,-8.218428390411312856e-09,-8.629349809931877920e-09,-9.040271229452442983e-09,-9.451192648973008047e-09,-9.862114068493573111e-09,-1.027303548801413817e-08,-1.068395690753470324e-08,-1.109487832705526830e-08,-1.150579974657583337e-08,-1.191672116609639843e-08,-1.232764258561696349e-08,-1.273856400513752856e-08,-1.314948542465809362e-08,-1.356040684417865868e-08,-1.397132826369922375e-08,-1.438224968321978881e-08,-1.479317110274035388e-08,-1.520409252226091894e-08,-1.561501394178148235e-08,-1.602593536130204576e-08,-1.643685678082260917e-08,-1.684777820034317258e-08,-1.725869961986373599e-08,-1.766962103938429940e-08,-1.808054245890486281e-08,-1.849146387842542621e-08,-1.890238529794598962e-08,-1.931330671746655303e-08,-1.972422813698711644e-08,-2.013514955650767985e-08,-2.054607097602824326e-08,-2.095699239554880667e-08,-2.136791381506937008e-08,-2.177883523458993349e-08,-2.218975665411049690e-08,-2.260067807363106031e-08,-2.301159949315162372e-08,-2.342252091267218713e-08,-2.383344233219275054e-08,-2.424436375171331395e-08,-2.465528517123387736e-08,-2.506620659075444077e-08,-2.547712801027500417e-08,-2.588804942979556758e-08 +0.000000000000000000e+00,-3.482958115977816835e-10,-6.965916231955633669e-10,-1.044887434793344999e-09,-1.393183246391126527e-09,-1.741479057988908055e-09,-2.089774869586689584e-09,-2.438070681184471112e-09,-2.786366492782252641e-09,-3.134662304380034169e-09,-3.482958115977815697e-09,-3.831253927575597226e-09,-4.179549739173378340e-09,-4.527845550771159455e-09,-4.876141362368940570e-09,-5.224437173966721685e-09,-5.572732985564502800e-09,-5.921028797162283914e-09,-6.269324608760065029e-09,-6.617620420357846144e-09,-6.965916231955627259e-09,-7.314212043553408373e-09,-7.662507855151189488e-09,-8.010803666748970603e-09,-8.359099478346751718e-09,-8.707395289944532832e-09,-9.055691101542313947e-09,-9.403986913140095062e-09,-9.752282724737876177e-09,-1.010057853633565729e-08,-1.044887434793343841e-08,-1.079717015953121952e-08,-1.114546597112900064e-08,-1.149376178272678175e-08,-1.184205759432456287e-08,-1.219035340592234398e-08,-1.253864921752012510e-08,-1.288694502911790621e-08,-1.323524084071568732e-08,-1.358353665231346844e-08,-1.393183246391124955e-08,-1.428012827550903067e-08,-1.462842408710681178e-08,-1.497671989870459290e-08,-1.532501571030237567e-08,-1.567331152190015844e-08,-1.602160733349794121e-08,-1.636990314509572398e-08,-1.671819895669350674e-08,-1.706649476829128951e-08,-1.741479057988907228e-08,-1.776308639148685505e-08,-1.811138220308463782e-08,-1.845967801468242059e-08,-1.880797382628020336e-08,-1.915626963787798613e-08,-1.950456544947576890e-08,-1.985286126107355167e-08,-2.020115707267133444e-08,-2.054945288426911720e-08,-2.089774869586689997e-08,-2.124604450746468274e-08,-2.159434031906246551e-08,-2.194263613066024828e-08 +0.000000000000000000e+00,-3.682817649935414236e-10,-7.365635299870828472e-10,-1.104845294980624322e-09,-1.473127059974165901e-09,-1.841408824967707480e-09,-2.209690589961249059e-09,-2.577972354954790637e-09,-2.946254119948332216e-09,-3.314535884941873795e-09,-3.682817649935415373e-09,-4.051099414928956952e-09,-4.419381179922498944e-09,-4.787662944916040936e-09,-5.155944709909582929e-09,-5.524226474903124921e-09,-5.892508239896666913e-09,-6.260790004890208906e-09,-6.629071769883750898e-09,-6.997353534877292890e-09,-7.365635299870834882e-09,-7.733917064864376875e-09,-8.102198829857918867e-09,-8.470480594851460859e-09,-8.838762359845002852e-09,-9.207044124838544844e-09,-9.575325889832086836e-09,-9.943607654825628828e-09,-1.031188941981917082e-08,-1.068017118481271281e-08,-1.104845294980625481e-08,-1.141673471479979680e-08,-1.178501647979333879e-08,-1.215329824478688078e-08,-1.252158000978042277e-08,-1.288986177477396477e-08,-1.325814353976750676e-08,-1.362642530476104875e-08,-1.399470706975459074e-08,-1.436298883474813274e-08,-1.473127059974167473e-08,-1.509955236473521837e-08,-1.546783412972876368e-08,-1.583611589472230898e-08,-1.620439765971585428e-08,-1.657267942470939958e-08,-1.694096118970294488e-08,-1.730924295469649018e-08,-1.767752471969003548e-08,-1.804580648468358078e-08,-1.841408824967712608e-08,-1.878237001467067138e-08,-1.915065177966421669e-08,-1.951893354465776199e-08,-1.988721530965130729e-08,-2.025549707464485259e-08,-2.062377883963839789e-08,-2.099206060463194319e-08,-2.136034236962548849e-08,-2.172862413461903379e-08,-2.209690589961257909e-08,-2.246518766460612439e-08,-2.283346942959966970e-08,-2.320175119459321500e-08 +0.000000000000000000e+00,4.937949415409308688e-10,9.875898830818617376e-10,1.481384824622792606e-09,1.975179766163723475e-09,2.468974707704654551e-09,2.962769649245585626e-09,3.456564590786516702e-09,3.950359532327447778e-09,4.444154473868378853e-09,4.937949415409309929e-09,5.431744356950241005e-09,5.925539298491172080e-09,6.419334240032103156e-09,6.913129181573034231e-09,7.406924123113965307e-09,7.900719064654897210e-09,8.394514006195828285e-09,8.888308947736759361e-09,9.382103889277690437e-09,9.875898830818621512e-09,1.036969377235955259e-08,1.086348871390048366e-08,1.135728365544141474e-08,1.185107859698234581e-08,1.234487353852327689e-08,1.283866848006420797e-08,1.333246342160513904e-08,1.382625836314607012e-08,1.432005330468700119e-08,1.481384824622793227e-08,1.530764318776886334e-08,1.580143812930979442e-08,1.629523307085072550e-08,1.678902801239165657e-08,1.728282295393258765e-08,1.777661789547351872e-08,1.827041283701444980e-08,1.876420777855538087e-08,1.925800272009631195e-08,1.975179766163724302e-08,2.024559260317817410e-08,2.073938754471910518e-08,2.123318248626003625e-08,2.172697742780096733e-08,2.222077236934189840e-08,2.271456731088282948e-08,2.320836225242376055e-08,2.370215719396469163e-08,2.419595213550562270e-08,2.468974707704655378e-08,2.518354201858748486e-08,2.567733696012841593e-08,2.617113190166934701e-08,2.666492684321027808e-08,2.715872178475120916e-08,2.765251672629214023e-08,2.814631166783307131e-08,2.864010660937400239e-08,2.913390155091493346e-08,2.962769649245586454e-08,3.012149143399679561e-08,3.061528637553772669e-08,3.110908131707865776e-08 +0.000000000000000000e+00,4.541932725609000445e-10,9.083865451218000891e-10,1.362579817682700134e-09,1.816773090243600178e-09,2.270966362804500430e-09,2.725159635365400681e-09,3.179352907926300932e-09,3.633546180487201184e-09,4.087739453048101435e-09,4.541932725609001686e-09,4.996125998169901938e-09,5.450319270730802189e-09,5.904512543291702440e-09,6.358705815852602692e-09,6.812899088413502943e-09,7.267092360974403194e-09,7.721285633535303446e-09,8.175478906096202870e-09,8.629672178657102294e-09,9.083865451218001718e-09,9.538058723778901142e-09,9.992251996339800566e-09,1.044644526890069999e-08,1.090063854146159941e-08,1.135483181402249884e-08,1.180902508658339826e-08,1.226321835914429769e-08,1.271741163170519711e-08,1.317160490426609654e-08,1.362579817682699596e-08,1.407999144938789538e-08,1.453418472194879481e-08,1.498837799450969423e-08,1.544257126707059366e-08,1.589676453963149308e-08,1.635095781219239250e-08,1.680515108475329193e-08,1.725934435731419135e-08,1.771353762987509078e-08,1.816773090243599020e-08,1.862192417499688963e-08,1.907611744755778905e-08,1.953031072011868847e-08,1.998450399267958790e-08,2.043869726524048732e-08,2.089289053780138675e-08,2.134708381036228617e-08,2.180127708292318559e-08,2.225547035548408502e-08,2.270966362804498444e-08,2.316385690060588387e-08,2.361805017316678329e-08,2.407224344572768272e-08,2.452643671828858214e-08,2.498062999084948156e-08,2.543482326341038099e-08,2.588901653597128041e-08,2.634320980853217984e-08,2.679740308109307926e-08,2.725159635365397868e-08,2.770578962621487811e-08,2.815998289877577753e-08,2.861417617133667696e-08 +0.000000000000000000e+00,4.594918405931652302e-10,9.189836811863304604e-10,1.378475521779495742e-09,1.837967362372661128e-09,2.297459202965826513e-09,2.756951043558991898e-09,3.216442884152157284e-09,3.675934724745322669e-09,4.135426565338487641e-09,4.594918405931652199e-09,5.054410246524816757e-09,5.513902087117981315e-09,5.973393927711145873e-09,6.432885768304310431e-09,6.892377608897474989e-09,7.351869449490639547e-09,7.811361290083804106e-09,8.270853130676968664e-09,8.730344971270133222e-09,9.189836811863297780e-09,9.649328652456462338e-09,1.010882049304962690e-08,1.056831233364279145e-08,1.102780417423595601e-08,1.148729601482912057e-08,1.194678785542228513e-08,1.240627969601544969e-08,1.286577153660861424e-08,1.332526337720177880e-08,1.378475521779494336e-08,1.424424705838810792e-08,1.470373889898127248e-08,1.516323073957443869e-08,1.562272258016760490e-08,1.608221442076077111e-08,1.654170626135393733e-08,1.700119810194710354e-08,1.746068994254026975e-08,1.792018178313343596e-08,1.837967362372660218e-08,1.883916546431976839e-08,1.929865730491293460e-08,1.975814914550610081e-08,2.021764098609926703e-08,2.067713282669243324e-08,2.113662466728559945e-08,2.159611650787876566e-08,2.205560834847193188e-08,2.251510018906509809e-08,2.297459202965826430e-08,2.343408387025143051e-08,2.389357571084459673e-08,2.435306755143776294e-08,2.481255939203092915e-08,2.527205123262409536e-08,2.573154307321726158e-08,2.619103491381042779e-08,2.665052675440359400e-08,2.711001859499676021e-08,2.756951043558992643e-08,2.802900227618309264e-08,2.848849411677625885e-08,2.894798595736942506e-08 +0.000000000000000000e+00,-4.937949415934576649e-10,-9.875898831869153298e-10,-1.481384824780372995e-09,-1.975179766373830660e-09,-2.468974707967288531e-09,-2.962769649560746403e-09,-3.456564591154204275e-09,-3.950359532747662146e-09,-4.444154474341120018e-09,-4.937949415934577890e-09,-5.431744357528035761e-09,-5.925539299121493633e-09,-6.419334240714951505e-09,-6.913129182308409376e-09,-7.406924123901867248e-09,-7.900719065495325947e-09,-8.394514007088784646e-09,-8.888308948682243345e-09,-9.382103890275702044e-09,-9.875898831869160743e-09,-1.036969377346261944e-08,-1.086348871505607814e-08,-1.135728365664953684e-08,-1.185107859824299554e-08,-1.234487353983645424e-08,-1.283866848142991294e-08,-1.333246342302337163e-08,-1.382625836461683033e-08,-1.432005330621028903e-08,-1.481384824780374773e-08,-1.530764318939720478e-08,-1.580143813099066182e-08,-1.629523307258411886e-08,-1.678902801417757591e-08,-1.728282295577103295e-08,-1.777661789736449000e-08,-1.827041283895794704e-08,-1.876420778055140409e-08,-1.925800272214486113e-08,-1.975179766373831818e-08,-2.024559260533177522e-08,-2.073938754692523227e-08,-2.123318248851868931e-08,-2.172697743011214635e-08,-2.222077237170560340e-08,-2.271456731329906044e-08,-2.320836225489251749e-08,-2.370215719648597453e-08,-2.419595213807943158e-08,-2.468974707967288862e-08,-2.518354202126634567e-08,-2.567733696285980271e-08,-2.617113190445325975e-08,-2.666492684604671680e-08,-2.715872178764017384e-08,-2.765251672923363089e-08,-2.814631167082708793e-08,-2.864010661242054498e-08,-2.913390155401400202e-08,-2.962769649560745907e-08,-3.012149143720091611e-08,-3.061528637879436985e-08,-3.110908132038782358e-08 +0.000000000000000000e+00,-4.541932726169118559e-10,-9.083865452338237119e-10,-1.362579817850735464e-09,-1.816773090467647217e-09,-2.270966363084558970e-09,-2.725159635701470929e-09,-3.179352908318382888e-09,-3.633546180935294848e-09,-4.087739453552206807e-09,-4.541932726169118766e-09,-4.996125998786030726e-09,-5.450319271402942685e-09,-5.904512544019854644e-09,-6.358705816636766604e-09,-6.812899089253678563e-09,-7.267092361870590522e-09,-7.721285634487502482e-09,-8.175478907104413614e-09,-8.629672179721324746e-09,-9.083865452338235878e-09,-9.538058724955147010e-09,-9.992251997572058142e-09,-1.044644527018896927e-08,-1.090063854280588041e-08,-1.135483181542279154e-08,-1.180902508803970267e-08,-1.226321836065661380e-08,-1.271741163327352494e-08,-1.317160490589043607e-08,-1.362579817850734720e-08,-1.407999145112425833e-08,-1.453418472374116946e-08,-1.498837799635807894e-08,-1.544257126897498842e-08,-1.589676454159189790e-08,-1.635095781420880738e-08,-1.680515108682571685e-08,-1.725934435944262633e-08,-1.771353763205953581e-08,-1.816773090467644529e-08,-1.862192417729335476e-08,-1.907611744991026424e-08,-1.953031072252717372e-08,-1.998450399514408320e-08,-2.043869726776099268e-08,-2.089289054037790215e-08,-2.134708381299481163e-08,-2.180127708561172111e-08,-2.225547035822863059e-08,-2.270966363084554006e-08,-2.316385690346244954e-08,-2.361805017607935902e-08,-2.407224344869626850e-08,-2.452643672131317798e-08,-2.498062999393008745e-08,-2.543482326654699693e-08,-2.588901653916390641e-08,-2.634320981178081589e-08,-2.679740308439772536e-08,-2.725159635701463484e-08,-2.770578962963154432e-08,-2.815998290224845380e-08,-2.861417617486536328e-08 +0.000000000000000000e+00,-4.594918406357372178e-10,-9.189836812714744356e-10,-1.378475521907211602e-09,-1.837967362542948664e-09,-2.297459203178685727e-09,-2.756951043814422790e-09,-3.216442884450159853e-09,-3.675934725085896915e-09,-4.135426565721634392e-09,-4.594918406357372281e-09,-5.054410246993110171e-09,-5.513902087628848061e-09,-5.973393928264585951e-09,-6.432885768900323841e-09,-6.892377609536061731e-09,-7.351869450171799621e-09,-7.811361290807537511e-09,-8.270853131443275401e-09,-8.730344972079013290e-09,-9.189836812714751180e-09,-9.649328653350489070e-09,-1.010882049398622696e-08,-1.056831233462196485e-08,-1.102780417525770274e-08,-1.148729601589344063e-08,-1.194678785652917852e-08,-1.240627969716491641e-08,-1.286577153780065430e-08,-1.332526337843639219e-08,-1.378475521907213008e-08,-1.424424705970786797e-08,-1.470373890034360586e-08,-1.516323074097934209e-08,-1.562272258161507833e-08,-1.608221442225081457e-08,-1.654170626288655080e-08,-1.700119810352228704e-08,-1.746068994415802327e-08,-1.792018178479375951e-08,-1.837967362542949574e-08,-1.883916546606523198e-08,-1.929865730670096821e-08,-1.975814914733670445e-08,-2.021764098797244069e-08,-2.067713282860817692e-08,-2.113662466924391316e-08,-2.159611650987964939e-08,-2.205560835051538563e-08,-2.251510019115112186e-08,-2.297459203178685810e-08,-2.343408387242259433e-08,-2.389357571305833057e-08,-2.435306755369406681e-08,-2.481255939432980304e-08,-2.527205123496553928e-08,-2.573154307560127551e-08,-2.619103491623701175e-08,-2.665052675687274798e-08,-2.711001859750848422e-08,-2.756951043814422045e-08,-2.802900227877995669e-08,-2.848849411941569292e-08,-2.894798596005142916e-08 +0.000000000000000000e+00,5.489522661529585726e-10,1.097904532305917145e-09,1.646856798458875718e-09,2.195809064611834291e-09,2.744761330764792863e-09,3.293713596917751436e-09,3.842665863070709595e-09,4.391618129223667754e-09,4.940570395376625913e-09,5.489522661529584072e-09,6.038474927682542231e-09,6.587427193835500390e-09,7.136379459988458549e-09,7.685331726141415881e-09,8.234283992294373213e-09,8.783236258447330545e-09,9.332188524600287877e-09,9.881140790753245209e-09,1.043009305690620254e-08,1.097904532305915987e-08,1.152799758921211720e-08,1.207694985536507454e-08,1.262590212151803187e-08,1.317485438767098920e-08,1.372380665382394653e-08,1.427275891997690386e-08,1.482171118612986120e-08,1.537066345228281853e-08,1.591961571843577586e-08,1.646856798458873319e-08,1.701752025074169052e-08,1.756647251689464785e-08,1.811542478304760519e-08,1.866437704920056252e-08,1.921332931535351985e-08,1.976228158150647718e-08,2.031123384765943451e-08,2.086018611381239185e-08,2.140913837996534918e-08,2.195809064611830651e-08,2.250704291227126384e-08,2.305599517842422117e-08,2.360494744457717851e-08,2.415389971073013584e-08,2.470285197688309317e-08,2.525180424303605050e-08,2.580075650918900783e-08,2.634970877534196516e-08,2.689866104149492250e-08,2.744761330764787983e-08,2.799656557380083716e-08,2.854551783995379449e-08,2.909447010610675182e-08,2.964342237225970916e-08,3.019237463841266649e-08,3.074132690456562382e-08,3.129027917071858115e-08,3.183923143687153848e-08,3.238818370302449582e-08,3.293713596917745315e-08,3.348608823533041048e-08,3.403504050148336781e-08,3.458399276763632514e-08 +0.000000000000000000e+00,5.220241805639485095e-10,1.044048361127897019e-09,1.566072541691845632e-09,2.088096722255794452e-09,2.610120902819743271e-09,3.132145083383692091e-09,3.654169263947640911e-09,4.176193444511589730e-09,4.698217625075538550e-09,5.220241805639487370e-09,5.742265986203436189e-09,6.264290166767385009e-09,6.786314347331333829e-09,7.308338527895282649e-09,7.830362708459231468e-09,8.352386889023181115e-09,8.874411069587130762e-09,9.396435250151080409e-09,9.918459430715030056e-09,1.044048361127897970e-08,1.096250779184292935e-08,1.148453197240687900e-08,1.200655615297082864e-08,1.252858033353477829e-08,1.305060451409872794e-08,1.357262869466267758e-08,1.409465287522662723e-08,1.461667705579057688e-08,1.513870123635452652e-08,1.566072541691847617e-08,1.618274959748242582e-08,1.670477377804637547e-08,1.722679795861032511e-08,1.774882213917427476e-08,1.827084631973822441e-08,1.879287050030217405e-08,1.931489468086612370e-08,1.983691886143007335e-08,2.035894304199402299e-08,2.088096722255797264e-08,2.140299140312192229e-08,2.192501558368587193e-08,2.244703976424982158e-08,2.296906394481377123e-08,2.349108812537772087e-08,2.401311230594167052e-08,2.453513648650562017e-08,2.505716066706956982e-08,2.557918484763351946e-08,2.610120902819746911e-08,2.662323320876141876e-08,2.714525738932536840e-08,2.766728156988931805e-08,2.818930575045326770e-08,2.871132993101721734e-08,2.923335411158116699e-08,2.975537829214511664e-08,3.027740247270906628e-08,3.079942665327301593e-08,3.132145083383696558e-08,3.184347501440091522e-08,3.236549919496486487e-08,3.288752337552881452e-08 +0.000000000000000000e+00,5.211760155969678572e-10,1.042352031193935714e-09,1.563528046790903675e-09,2.084704062387871842e-09,2.605880077984840010e-09,3.127056093581808177e-09,3.648232109178776344e-09,4.169408124775744512e-09,4.690584140372712266e-09,5.211760155969680019e-09,5.732936171566647773e-09,6.254112187163615527e-09,6.775288202760583281e-09,7.296464218357551034e-09,7.817640233954518788e-09,8.338816249551487369e-09,8.859992265148455950e-09,9.381168280745424531e-09,9.902344296342393112e-09,1.042352031193936169e-08,1.094469632753633027e-08,1.146587234313329886e-08,1.198704835873026744e-08,1.250822437432723602e-08,1.302940038992420460e-08,1.355057640552117318e-08,1.407175242111814176e-08,1.459292843671511034e-08,1.511410445231207892e-08,1.563528046790904750e-08,1.615645648350601608e-08,1.667763249910298466e-08,1.719880851469995325e-08,1.771998453029692183e-08,1.824116054589389041e-08,1.876233656149085899e-08,1.928351257708782757e-08,1.980468859268479615e-08,2.032586460828176473e-08,2.084704062387873331e-08,2.136821663947570189e-08,2.188939265507267047e-08,2.241056867066963906e-08,2.293174468626660764e-08,2.345292070186357622e-08,2.397409671746054480e-08,2.449527273305751338e-08,2.501644874865448196e-08,2.553762476425145054e-08,2.605880077984841912e-08,2.657997679544538770e-08,2.710115281104235628e-08,2.762232882663932486e-08,2.814350484223629345e-08,2.866468085783326203e-08,2.918585687343023061e-08,2.970703288902719919e-08,3.022820890462417108e-08,3.074938492022114297e-08,3.127056093581811486e-08,3.179173695141508675e-08,3.231291296701205864e-08,3.283408898260903053e-08 +0.000000000000000000e+00,-5.489522661979671241e-10,-1.097904532395934248e-09,-1.646856798593901372e-09,-2.195809064791868497e-09,-2.744761330989835621e-09,-3.293713597187802745e-09,-3.842665863385769455e-09,-4.391618129583736166e-09,-4.940570395781702876e-09,-5.489522661979669587e-09,-6.038474928177636297e-09,-6.587427194375603008e-09,-7.136379460573569719e-09,-7.685331726771535602e-09,-8.234283992969501485e-09,-8.783236259167467369e-09,-9.332188525365433252e-09,-9.881140791563399135e-09,-1.043009305776136502e-08,-1.097904532395933090e-08,-1.152799759015729679e-08,-1.207694985635526267e-08,-1.262590212255322855e-08,-1.317485438875119444e-08,-1.372380665494916032e-08,-1.427275892114712620e-08,-1.482171118734509209e-08,-1.537066345354305797e-08,-1.591961571974102385e-08,-1.646856798593898974e-08,-1.701752025213695562e-08,-1.756647251833492150e-08,-1.811542478453288739e-08,-1.866437705073085327e-08,-1.921332931692881915e-08,-1.976228158312678504e-08,-2.031123384932475092e-08,-2.086018611552271680e-08,-2.140913838172068269e-08,-2.195809064791864857e-08,-2.250704291411661445e-08,-2.305599518031458034e-08,-2.360494744651254622e-08,-2.415389971271051210e-08,-2.470285197890847799e-08,-2.525180424510644387e-08,-2.580075651130440975e-08,-2.634970877750237564e-08,-2.689866104370034152e-08,-2.744761330989830740e-08,-2.799656557609627329e-08,-2.854551784229423917e-08,-2.909447010849220505e-08,-2.964342237469017094e-08,-3.019237464088813351e-08,-3.074132690708609609e-08,-3.129027917328405866e-08,-3.183923143948202123e-08,-3.238818370567998381e-08,-3.293713597187794638e-08,-3.348608823807590896e-08,-3.403504050427387153e-08,-3.458399277047183411e-08 +0.000000000000000000e+00,-5.220241806127368628e-10,-1.044048361225473726e-09,-1.566072541838210692e-09,-2.088096722450947865e-09,-2.610120903063685038e-09,-3.132145083676422211e-09,-3.654169264289159384e-09,-4.176193444901896557e-09,-4.698217625514634143e-09,-5.220241806127371730e-09,-5.742265986740109317e-09,-6.264290167352846903e-09,-6.786314347965584490e-09,-7.308338528578322076e-09,-7.830362709191059663e-09,-8.352386889803798077e-09,-8.874411070416536490e-09,-9.396435251029274904e-09,-9.918459431642013318e-09,-1.044048361225475173e-08,-1.096250779286749015e-08,-1.148453197348022856e-08,-1.200655615409296697e-08,-1.252858033470570539e-08,-1.305060451531844380e-08,-1.357262869593118221e-08,-1.409465287654392063e-08,-1.461667705715665904e-08,-1.513870123776939580e-08,-1.566072541838213256e-08,-1.618274959899486932e-08,-1.670477377960760608e-08,-1.722679796022034284e-08,-1.774882214083307960e-08,-1.827084632144581636e-08,-1.879287050205855312e-08,-1.931489468267128988e-08,-1.983691886328402664e-08,-2.035894304389676340e-08,-2.088096722450950015e-08,-2.140299140512223691e-08,-2.192501558573497367e-08,-2.244703976634771043e-08,-2.296906394696044719e-08,-2.349108812757318395e-08,-2.401311230818592071e-08,-2.453513648879865747e-08,-2.505716066941139423e-08,-2.557918485002413099e-08,-2.610120903063686775e-08,-2.662323321124960451e-08,-2.714525739186234127e-08,-2.766728157247507803e-08,-2.818930575308781479e-08,-2.871132993370055155e-08,-2.923335411431328831e-08,-2.975537829492602506e-08,-3.027740247553876513e-08,-3.079942665615150520e-08,-3.132145083676424527e-08,-3.184347501737698534e-08,-3.236549919798972541e-08,-3.288752337860246547e-08 +0.000000000000000000e+00,-5.211760156329290173e-10,-1.042352031265858035e-09,-1.563528046898787052e-09,-2.084704062531716069e-09,-2.605880078164645087e-09,-3.127056093797574104e-09,-3.648232109430503121e-09,-4.169408125063432139e-09,-4.690584140696361569e-09,-5.211760156329291000e-09,-5.732936171962220431e-09,-6.254112187595149862e-09,-6.775288203228079293e-09,-7.296464218861008724e-09,-7.817640234493938155e-09,-8.338816250126867586e-09,-8.859992265759797017e-09,-9.381168281392726448e-09,-9.902344297025655879e-09,-1.042352031265858531e-08,-1.094469632829151474e-08,-1.146587234392444417e-08,-1.198704835955737360e-08,-1.250822437519030303e-08,-1.302940039082323246e-08,-1.355057640645616189e-08,-1.407175242208909133e-08,-1.459292843772202076e-08,-1.511410445335494853e-08,-1.563528046898787631e-08,-1.615645648462080409e-08,-1.667763250025373186e-08,-1.719880851588665964e-08,-1.771998453151958742e-08,-1.824116054715251519e-08,-1.876233656278544297e-08,-1.928351257841837075e-08,-1.980468859405129852e-08,-2.032586460968422630e-08,-2.084704062531715408e-08,-2.136821664095008185e-08,-2.188939265658300963e-08,-2.241056867221593741e-08,-2.293174468784886518e-08,-2.345292070348179296e-08,-2.397409671911472073e-08,-2.449527273474764851e-08,-2.501644875038057629e-08,-2.553762476601350406e-08,-2.605880078164643184e-08,-2.657997679727935962e-08,-2.710115281291228739e-08,-2.762232882854521517e-08,-2.814350484417814295e-08,-2.866468085981107072e-08,-2.918585687544399850e-08,-2.970703289107692628e-08,-3.022820890670985736e-08,-3.074938492234278845e-08,-3.127056093797571953e-08,-3.179173695360865062e-08,-3.231291296924158170e-08,-3.283408898487451279e-08 +0.000000000000000000e+00,5.894611485205165477e-10,1.178922297041033095e-09,1.768383445561549747e-09,2.357844594082066604e-09,2.947305742602583462e-09,3.536766891123100320e-09,4.126228039643616765e-09,4.715689188164133209e-09,5.305150336684649653e-09,5.894611485205166098e-09,6.484072633725682542e-09,7.073533782246198986e-09,7.662994930766715431e-09,8.252456079287231875e-09,8.841917227807748319e-09,9.431378376328264764e-09,1.002083952484878121e-08,1.061030067336929765e-08,1.119976182188981410e-08,1.178922297041033054e-08,1.237868411893084699e-08,1.296814526745136343e-08,1.355760641597187987e-08,1.414706756449239632e-08,1.473652871301291276e-08,1.532598986153343086e-08,1.591545101005394896e-08,1.650491215857446706e-08,1.709437330709498516e-08,1.768383445561550326e-08,1.827329560413602135e-08,1.886275675265653945e-08,1.945221790117705755e-08,2.004167904969757565e-08,2.063114019821809375e-08,2.122060134673861185e-08,2.181006249525912995e-08,2.239952364377964805e-08,2.298898479230016614e-08,2.357844594082068424e-08,2.416790708934120234e-08,2.475736823786172044e-08,2.534682938638223854e-08,2.593629053490275664e-08,2.652575168342327474e-08,2.711521283194379284e-08,2.770467398046431093e-08,2.829413512898482903e-08,2.888359627750534713e-08,2.947305742602586523e-08,3.006251857454638664e-08,3.065197972306690804e-08,3.124144087158742945e-08,3.183090202010795086e-08,3.242036316862847227e-08,3.300982431714899367e-08,3.359928546566951508e-08,3.418874661419003649e-08,3.477820776271055790e-08,3.536766891123107930e-08,3.595713005975160071e-08,3.654659120827212212e-08,3.713605235679264353e-08 +0.000000000000000000e+00,5.694700683576778724e-10,1.138940136715355745e-09,1.708410205073033721e-09,2.277880273430711903e-09,2.847350341788390086e-09,3.416820410146068269e-09,3.986290478503746451e-09,4.555760546861424634e-09,5.125230615219102816e-09,5.694700683576780999e-09,6.264170751934459182e-09,6.833640820292137364e-09,7.403110888649815547e-09,7.972580957007492902e-09,8.542051025365170258e-09,9.111521093722847613e-09,9.680991162080524969e-09,1.025046123043820232e-08,1.081993129879587968e-08,1.138940136715355704e-08,1.195887143551123439e-08,1.252834150386891175e-08,1.309781157222658910e-08,1.366728164058426646e-08,1.423675170894194381e-08,1.480622177729962117e-08,1.537569184565729852e-08,1.594516191401497588e-08,1.651463198237265323e-08,1.708410205073033059e-08,1.765357211908800794e-08,1.822304218744568530e-08,1.879251225580336266e-08,1.936198232416104001e-08,1.993145239251871737e-08,2.050092246087639472e-08,2.107039252923407208e-08,2.163986259759174943e-08,2.220933266594942679e-08,2.277880273430710414e-08,2.334827280266478150e-08,2.391774287102245885e-08,2.448721293938013621e-08,2.505668300773781357e-08,2.562615307609549092e-08,2.619562314445316828e-08,2.676509321281084563e-08,2.733456328116852299e-08,2.790403334952620034e-08,2.847350341788387770e-08,2.904297348624155505e-08,2.961244355459923241e-08,3.018191362295690646e-08,3.075138369131457719e-08,3.132085375967224793e-08,3.189032382802991867e-08,3.245979389638758941e-08,3.302926396474526015e-08,3.359873403310293088e-08,3.416820410146060162e-08,3.473767416981827236e-08,3.530714423817594310e-08,3.587661430653361384e-08 +0.000000000000000000e+00,5.659593224957864546e-10,1.131918644991572909e-09,1.697877967487359260e-09,2.263837289983145405e-09,2.829796612478931549e-09,3.395755934974717694e-09,3.961715257470503425e-09,4.527674579966289155e-09,5.093633902462074886e-09,5.659593224957860617e-09,6.225552547453646348e-09,6.791511869949432079e-09,7.357471192445217810e-09,7.923430514941003540e-09,8.489389837436789271e-09,9.055349159932575002e-09,9.621308482428360733e-09,1.018726780492414646e-08,1.075322712741993219e-08,1.131918644991571793e-08,1.188514577241150366e-08,1.245110509490728939e-08,1.301706441740307512e-08,1.358302373989886085e-08,1.414898306239464658e-08,1.471494238489043231e-08,1.528090170738621970e-08,1.584686102988200708e-08,1.641282035237779447e-08,1.697877967487358185e-08,1.754473899736936924e-08,1.811069831986515662e-08,1.867665764236094401e-08,1.924261696485673139e-08,1.980857628735251878e-08,2.037453560984830616e-08,2.094049493234409355e-08,2.150645425483988093e-08,2.207241357733566832e-08,2.263837289983145570e-08,2.320433222232724309e-08,2.377029154482303047e-08,2.433625086731881786e-08,2.490221018981460524e-08,2.546816951231039263e-08,2.603412883480618001e-08,2.660008815730196740e-08,2.716604747979775478e-08,2.773200680229354217e-08,2.829796612478932956e-08,2.886392544728511694e-08,2.942988476978090433e-08,2.999584409227669171e-08,3.056180341477247910e-08,3.112776273726826648e-08,3.169372205976405387e-08,3.225968138225984125e-08,3.282564070475562864e-08,3.339160002725141602e-08,3.395755934974720341e-08,3.452351867224299079e-08,3.508947799473877818e-08,3.565543731723456556e-08 +0.000000000000000000e+00,-5.894611485573933968e-10,-1.178922297114786794e-09,-1.768383445672180190e-09,-2.357844594229573587e-09,-2.947305742786966984e-09,-3.536766891344360381e-09,-4.126228039901753364e-09,-4.715689188459146347e-09,-5.305150337016539330e-09,-5.894611485573932314e-09,-6.484072634131325297e-09,-7.073533782688718280e-09,-7.662994931246111263e-09,-8.252456079803503419e-09,-8.841917228360895575e-09,-9.431378376918287731e-09,-1.002083952547567989e-08,-1.061030067403307204e-08,-1.119976182259046420e-08,-1.178922297114785636e-08,-1.237868411970524851e-08,-1.296814526826264067e-08,-1.355760641682003282e-08,-1.414706756537742498e-08,-1.473652871393481714e-08,-1.532598986249220929e-08,-1.591545101104959979e-08,-1.650491215960699030e-08,-1.709437330816438080e-08,-1.768383445672177130e-08,-1.827329560527916180e-08,-1.886275675383655230e-08,-1.945221790239394280e-08,-2.004167905095133331e-08,-2.063114019950872381e-08,-2.122060134806611431e-08,-2.181006249662350481e-08,-2.239952364518089531e-08,-2.298898479373828581e-08,-2.357844594229567632e-08,-2.416790709085306682e-08,-2.475736823941045732e-08,-2.534682938796784782e-08,-2.593629053652523832e-08,-2.652575168508262882e-08,-2.711521283364001933e-08,-2.770467398219740983e-08,-2.829413513075480033e-08,-2.888359627931219083e-08,-2.947305742786958133e-08,-3.006251857642697183e-08,-3.065197972498435903e-08,-3.124144087354174622e-08,-3.183090202209913341e-08,-3.242036317065652061e-08,-3.300982431921390780e-08,-3.359928546777129499e-08,-3.418874661632868218e-08,-3.477820776488606938e-08,-3.536766891344345657e-08,-3.595713006200084376e-08,-3.654659121055823096e-08,-3.713605235911561815e-08 +0.000000000000000000e+00,-5.694700683986992066e-10,-1.138940136797398413e-09,-1.708410205196097516e-09,-2.277880273594796413e-09,-2.847350341993495309e-09,-3.416820410392194205e-09,-3.986290478790893102e-09,-4.555760547189591998e-09,-5.125230615588290895e-09,-5.694700683986989791e-09,-6.264170752385688687e-09,-6.833640820784387584e-09,-7.403110889183086480e-09,-7.972580957581784549e-09,-8.542051025980483446e-09,-9.111521094379182342e-09,-9.680991162777881238e-09,-1.025046123117658013e-08,-1.081993129957527903e-08,-1.138940136797397793e-08,-1.195887143637267682e-08,-1.252834150477137572e-08,-1.309781157317007462e-08,-1.366728164156877351e-08,-1.423675170996747241e-08,-1.480622177836617131e-08,-1.537569184676487020e-08,-1.594516191516356910e-08,-1.651463198356226800e-08,-1.708410205196096689e-08,-1.765357212035966579e-08,-1.822304218875836468e-08,-1.879251225715706358e-08,-1.936198232555576248e-08,-1.993145239395446137e-08,-2.050092246235316027e-08,-2.107039253075185917e-08,-2.163986259915055806e-08,-2.220933266754925696e-08,-2.277880273594795586e-08,-2.334827280434665475e-08,-2.391774287274535365e-08,-2.448721294114405254e-08,-2.505668300954275144e-08,-2.562615307794145034e-08,-2.619562314634014923e-08,-2.676509321473884813e-08,-2.733456328313754703e-08,-2.790403335153624592e-08,-2.847350341993494482e-08,-2.904297348833364372e-08,-2.961244355673234261e-08,-3.018191362513104151e-08,-3.075138369352974040e-08,-3.132085376192843930e-08,-3.189032383032713820e-08,-3.245979389872583709e-08,-3.302926396712453599e-08,-3.359873403552323489e-08,-3.416820410392193378e-08,-3.473767417232063268e-08,-3.530714424071933158e-08,-3.587661430911803047e-08 +0.000000000000000000e+00,-5.659593225252037889e-10,-1.131918645050407578e-09,-1.697877967575611367e-09,-2.263837290100815156e-09,-2.829796612626018738e-09,-3.395755935151222320e-09,-3.961715257676425902e-09,-4.527674580201629484e-09,-5.093633902726833066e-09,-5.659593225252036649e-09,-6.225552547777240231e-09,-6.791511870302443813e-09,-7.357471192827647395e-09,-7.923430515352850150e-09,-8.489389837878052078e-09,-9.055349160403254006e-09,-9.621308482928455933e-09,-1.018726780545365786e-08,-1.075322712797885979e-08,-1.131918645050406172e-08,-1.188514577302926364e-08,-1.245110509555446557e-08,-1.301706441807966750e-08,-1.358302374060486943e-08,-1.414898306313007136e-08,-1.471494238565527328e-08,-1.528090170818047521e-08,-1.584686103070567714e-08,-1.641282035323087907e-08,-1.697877967575608099e-08,-1.754473899828128292e-08,-1.811069832080648485e-08,-1.867665764333168678e-08,-1.924261696585688871e-08,-1.980857628838209063e-08,-2.037453561090729256e-08,-2.094049493343249449e-08,-2.150645425595769642e-08,-2.207241357848289834e-08,-2.263837290100810027e-08,-2.320433222353330220e-08,-2.377029154605850413e-08,-2.433625086858370606e-08,-2.490221019110890798e-08,-2.546816951363410991e-08,-2.603412883615931184e-08,-2.660008815868451377e-08,-2.716604748120971569e-08,-2.773200680373491762e-08,-2.829796612626011955e-08,-2.886392544878532148e-08,-2.942988477131052341e-08,-2.999584409383572864e-08,-3.056180341636093057e-08,-3.112776273888613250e-08,-3.169372206141133443e-08,-3.225968138393653635e-08,-3.282564070646173828e-08,-3.339160002898694021e-08,-3.395755935151214214e-08,-3.452351867403734406e-08,-3.508947799656254599e-08,-3.565543731908774792e-08 +0.000000000000000000e+00,6.212708724995573292e-10,1.242541744999114658e-09,1.863812617498672091e-09,2.485083489998229730e-09,3.106354362497787370e-09,3.727625234997345009e-09,4.348896107496903062e-09,4.970166979996461115e-09,5.591437852496019168e-09,6.212708724995577221e-09,6.833979597495135274e-09,7.455250469994693327e-09,8.076521342494251380e-09,8.697792214993809433e-09,9.319063087493367486e-09,9.940333959992925539e-09,1.056160483249248359e-08,1.118287570499204165e-08,1.180414657749159970e-08,1.242541744999115775e-08,1.304668832249071580e-08,1.366795919499027386e-08,1.428923006748983191e-08,1.491050093998938996e-08,1.553177181248894802e-08,1.615304268498850607e-08,1.677431355748806412e-08,1.739558442998762218e-08,1.801685530248718023e-08,1.863812617498673828e-08,1.925939704748629633e-08,1.988066791998585439e-08,2.050193879248541244e-08,2.112320966498497049e-08,2.174448053748452855e-08,2.236575140998408660e-08,2.298702228248364465e-08,2.360829315498320271e-08,2.422956402748276076e-08,2.485083489998231881e-08,2.547210577248187686e-08,2.609337664498143492e-08,2.671464751748099297e-08,2.733591838998055102e-08,2.795718926248010908e-08,2.857846013497966713e-08,2.919973100747922518e-08,2.982100187997878654e-08,3.044227275247835121e-08,3.106354362497791589e-08,3.168481449747748056e-08,3.230608536997704523e-08,3.292735624247660990e-08,3.354862711497617457e-08,3.416989798747573924e-08,3.479116885997530391e-08,3.541243973247486858e-08,3.603371060497443325e-08,3.665498147747399792e-08,3.727625234997356259e-08,3.789752322247312726e-08,3.851879409497269193e-08,3.914006496747225660e-08 +0.000000000000000000e+00,6.054681274341785106e-10,1.210936254868357021e-09,1.816404382302535532e-09,2.421872509736714042e-09,3.027340637170892553e-09,3.632808764605071064e-09,4.238276892039249574e-09,4.843745019473428085e-09,5.449213146907606595e-09,6.054681274341785106e-09,6.660149401775963617e-09,7.265617529210142127e-09,7.871085656644321465e-09,8.476553784078500803e-09,9.082021911512680141e-09,9.687490038946859478e-09,1.029295816638103882e-08,1.089842629381521815e-08,1.150389442124939749e-08,1.210936254868357683e-08,1.271483067611775617e-08,1.332029880355193551e-08,1.392576693098611484e-08,1.453123505842029418e-08,1.513670318585447352e-08,1.574217131328865286e-08,1.634763944072283219e-08,1.695310756815701153e-08,1.755857569559119087e-08,1.816404382302537021e-08,1.876951195045954955e-08,1.937498007789372888e-08,1.998044820532790822e-08,2.058591633276208756e-08,2.119138446019626690e-08,2.179685258763044623e-08,2.240232071506462557e-08,2.300778884249880491e-08,2.361325696993298425e-08,2.421872509736716359e-08,2.482419322480134292e-08,2.542966135223552226e-08,2.603512947966970160e-08,2.664059760710388094e-08,2.724606573453806027e-08,2.785153386197223961e-08,2.845700198940641895e-08,2.906247011684059829e-08,2.966793824427477763e-08,3.027340637170896027e-08,3.087887449914314292e-08,3.148434262657732556e-08,3.208981075401150821e-08,3.269527888144569086e-08,3.330074700887987350e-08,3.390621513631405615e-08,3.451168326374823880e-08,3.511715139118242144e-08,3.572261951861660409e-08,3.632808764605078674e-08,3.693355577348496938e-08,3.753902390091915203e-08,3.814449202835333468e-08 +0.000000000000000000e+00,6.002914808761726368e-10,1.200582961752345274e-09,1.800874442628517910e-09,2.401165923504690547e-09,3.001457404380863184e-09,3.601748885257035821e-09,4.202040366133208871e-09,4.802331847009381922e-09,5.402623327885554972e-09,6.002914808761728022e-09,6.603206289637901073e-09,7.203497770514074123e-09,7.803789251390247174e-09,8.404080732266421051e-09,9.004372213142594929e-09,9.604663694018768806e-09,1.020495517489494268e-08,1.080524665577111656e-08,1.140553813664729044e-08,1.200582961752346432e-08,1.260612109839963819e-08,1.320641257927581207e-08,1.380670406015198595e-08,1.440699554102815983e-08,1.500728702190433370e-08,1.560757850278050758e-08,1.620786998365668146e-08,1.680816146453285534e-08,1.740845294540902921e-08,1.800874442628520309e-08,1.860903590716137697e-08,1.920932738803755085e-08,1.980961886891372472e-08,2.040991034978989860e-08,2.101020183066607248e-08,2.161049331154224636e-08,2.221078479241842024e-08,2.281107627329459411e-08,2.341136775417076799e-08,2.401165923504694187e-08,2.461195071592311575e-08,2.521224219679928962e-08,2.581253367767546350e-08,2.641282515855163738e-08,2.701311663942781126e-08,2.761340812030398513e-08,2.821369960118015901e-08,2.881399108205633289e-08,2.941428256293250677e-08,3.001457404380868064e-08,3.061486552468485783e-08,3.121515700556103502e-08,3.181544848643721220e-08,3.241573996731338939e-08,3.301603144818956657e-08,3.361632292906574376e-08,3.421661440994192095e-08,3.481690589081809813e-08,3.541719737169427532e-08,3.601748885257045251e-08,3.661778033344662969e-08,3.721807181432280688e-08,3.781836329519898407e-08 +0.000000000000000000e+00,-6.212708725280373645e-10,-1.242541745056074729e-09,-1.863812617584111990e-09,-2.485083490112149044e-09,-3.106354362640186099e-09,-3.727625235168223153e-09,-4.348896107696260207e-09,-4.970166980224297262e-09,-5.591437852752334316e-09,-6.212708725280371370e-09,-6.833979597808408425e-09,-7.455250470336444652e-09,-8.076521342864480879e-09,-8.697792215392517106e-09,-9.319063087920553333e-09,-9.940333960448589560e-09,-1.056160483297662579e-08,-1.118287570550466201e-08,-1.180414657803269824e-08,-1.242541745056073447e-08,-1.304668832308877070e-08,-1.366795919561680692e-08,-1.428923006814484315e-08,-1.491050094067287938e-08,-1.553177181320091560e-08,-1.615304268572895183e-08,-1.677431355825698806e-08,-1.739558443078502429e-08,-1.801685530331306051e-08,-1.863812617584109674e-08,-1.925939704836913297e-08,-1.988066792089716919e-08,-2.050193879342520542e-08,-2.112320966595324165e-08,-2.174448053848127788e-08,-2.236575141100931410e-08,-2.298702228353735033e-08,-2.360829315606538656e-08,-2.422956402859342278e-08,-2.485083490112145901e-08,-2.547210577364949524e-08,-2.609337664617753147e-08,-2.671464751870556769e-08,-2.733591839123360392e-08,-2.795718926376164015e-08,-2.857846013628967637e-08,-2.919973100881771260e-08,-2.982100188134575214e-08,-3.044227275387379167e-08,-3.106354362640183121e-08,-3.168481449892987074e-08,-3.230608537145791028e-08,-3.292735624398594982e-08,-3.354862711651398935e-08,-3.416989798904202889e-08,-3.479116886157006842e-08,-3.541243973409810796e-08,-3.603371060662614750e-08,-3.665498147915418703e-08,-3.727625235168222657e-08,-3.789752322421026610e-08,-3.851879409673830564e-08,-3.914006496926634518e-08 +0.000000000000000000e+00,-6.054681274668258818e-10,-1.210936254933651764e-09,-1.816404382400477645e-09,-2.421872509867303527e-09,-3.027340637334129202e-09,-3.632808764800954877e-09,-4.238276892267780552e-09,-4.843745019734606227e-09,-5.449213147201431902e-09,-6.054681274668257577e-09,-6.660149402135083252e-09,-7.265617529601908927e-09,-7.871085657068734602e-09,-8.476553784535561105e-09,-9.082021912002387607e-09,-9.687490039469214109e-09,-1.029295816693604061e-08,-1.089842629440286711e-08,-1.150389442186969362e-08,-1.210936254933652012e-08,-1.271483067680334662e-08,-1.332029880427017312e-08,-1.392576693173699962e-08,-1.453123505920382613e-08,-1.513670318667065263e-08,-1.574217131413747913e-08,-1.634763944160430563e-08,-1.695310756907113214e-08,-1.755857569653795864e-08,-1.816404382400478514e-08,-1.876951195147161164e-08,-1.937498007893843814e-08,-1.998044820640526465e-08,-2.058591633387209115e-08,-2.119138446133891765e-08,-2.179685258880574415e-08,-2.240232071627257066e-08,-2.300778884373939716e-08,-2.361325697120622366e-08,-2.421872509867305016e-08,-2.482419322613987666e-08,-2.542966135360670317e-08,-2.603512948107352967e-08,-2.664059760854035617e-08,-2.724606573600718267e-08,-2.785153386347400918e-08,-2.845700199094083568e-08,-2.906247011840766218e-08,-2.966793824587448868e-08,-3.027340637334131188e-08,-3.087887450080813838e-08,-3.148434262827496488e-08,-3.208981075574179138e-08,-3.269527888320861788e-08,-3.330074701067544439e-08,-3.390621513814227089e-08,-3.451168326560909739e-08,-3.511715139307592389e-08,-3.572261952054275039e-08,-3.632808764800957690e-08,-3.693355577547640340e-08,-3.753902390294322990e-08,-3.814449203041005640e-08 +0.000000000000000000e+00,-6.002914808990636195e-10,-1.200582961798127239e-09,-1.800874442697190858e-09,-2.401165923596254478e-09,-3.001457404495318097e-09,-3.601748885394381717e-09,-4.202040366293445336e-09,-4.802331847192508956e-09,-5.402623328091572575e-09,-6.002914808990636195e-09,-6.603206289889699814e-09,-7.203497770788763434e-09,-7.803789251687827053e-09,-8.404080732586890673e-09,-9.004372213485954292e-09,-9.604663694385017912e-09,-1.020495517528408153e-08,-1.080524665618314515e-08,-1.140553813708220877e-08,-1.200582961798127239e-08,-1.260612109888033601e-08,-1.320641257977939963e-08,-1.380670406067846325e-08,-1.440699554157752687e-08,-1.500728702247659049e-08,-1.560757850337565411e-08,-1.620786998427471773e-08,-1.680816146517378135e-08,-1.740845294607284496e-08,-1.800874442697190858e-08,-1.860903590787097220e-08,-1.920932738877003582e-08,-1.980961886966909944e-08,-2.040991035056816306e-08,-2.101020183146722668e-08,-2.161049331236629030e-08,-2.221078479326535392e-08,-2.281107627416441754e-08,-2.341136775506348116e-08,-2.401165923596254478e-08,-2.461195071686160840e-08,-2.521224219776067202e-08,-2.581253367865973564e-08,-2.641282515955879926e-08,-2.701311664045786288e-08,-2.761340812135692650e-08,-2.821369960225599012e-08,-2.881399108315505373e-08,-2.941428256405411735e-08,-3.001457404495318097e-08,-3.061486552585224128e-08,-3.121515700675130160e-08,-3.181544848765036191e-08,-3.241573996854942222e-08,-3.301603144944848253e-08,-3.361632293034754284e-08,-3.421661441124660315e-08,-3.481690589214566346e-08,-3.541719737304472377e-08,-3.601748885394378408e-08,-3.661778033484284439e-08,-3.721807181574190470e-08,-3.781836329664096501e-08 +0.000000000000000000e+00,6.340608597486933126e-10,1.268121719497386625e-09,1.902182579246079938e-09,2.536243438994773250e-09,3.170304298743466563e-09,3.804365158492159875e-09,4.438426018240852774e-09,5.072486877989545673e-09,5.706547737738238572e-09,6.340608597486931471e-09,6.974669457235624370e-09,7.608730316984318096e-09,8.242791176733011822e-09,8.876852036481705549e-09,9.510912896230399275e-09,1.014497375597909300e-08,1.077903461572778673e-08,1.141309547547648045e-08,1.204715633522517418e-08,1.268121719497386791e-08,1.331527805472256163e-08,1.394933891447125536e-08,1.458339977421994908e-08,1.521746063396864281e-08,1.585152149371733819e-08,1.648558235346603357e-08,1.711964321321472895e-08,1.775370407296342433e-08,1.838776493271211971e-08,1.902182579246081509e-08,1.965588665220951047e-08,2.028994751195820585e-08,2.092400837170690123e-08,2.155806923145559662e-08,2.219213009120429200e-08,2.282619095095298738e-08,2.346025181070168276e-08,2.409431267045037814e-08,2.472837353019907352e-08,2.536243438994776890e-08,2.599649524969646428e-08,2.663055610944515966e-08,2.726461696919385504e-08,2.789867782894255042e-08,2.853273868869124580e-08,2.916679954843994118e-08,2.980086040818863656e-08,3.043492126793733194e-08,3.106898212768602732e-08,3.170304298743472270e-08,3.233710384718341808e-08,3.297116470693211346e-08,3.360522556668080884e-08,3.423928642642950423e-08,3.487334728617819961e-08,3.550740814592689499e-08,3.614146900567559037e-08,3.677552986542428575e-08,3.740959072517298113e-08,3.804365158492167651e-08,3.867771244467037189e-08,3.931177330441906727e-08,3.994583416416776265e-08 +0.000000000000000000e+00,-6.340608597731887154e-10,-1.268121719546377431e-09,-1.902182579319566250e-09,-2.536243439092755275e-09,-3.170304298865944301e-09,-3.804365158639133327e-09,-4.438426018412322352e-09,-5.072486878185511378e-09,-5.706547737958700403e-09,-6.340608597731889429e-09,-6.974669457505078455e-09,-7.608730317278268307e-09,-8.242791177051458160e-09,-8.876852036824648013e-09,-9.510912896597837866e-09,-1.014497375637102772e-08,-1.077903461614421757e-08,-1.141309547591740742e-08,-1.204715633569059728e-08,-1.268121719546378713e-08,-1.331527805523697698e-08,-1.394933891501016684e-08,-1.458339977478335669e-08,-1.521746063455654654e-08,-1.585152149432973639e-08,-1.648558235410292625e-08,-1.711964321387611610e-08,-1.775370407364930595e-08,-1.838776493342249581e-08,-1.902182579319568566e-08,-1.965588665296887551e-08,-2.028994751274206536e-08,-2.092400837251525522e-08,-2.155806923228844507e-08,-2.219213009206163492e-08,-2.282619095183482477e-08,-2.346025181160801463e-08,-2.409431267138120448e-08,-2.472837353115439433e-08,-2.536243439092758419e-08,-2.599649525070077404e-08,-2.663055611047396389e-08,-2.726461697024715374e-08,-2.789867783002034360e-08,-2.853273868979353345e-08,-2.916679954956672330e-08,-2.980086040933991316e-08,-3.043492126911309970e-08,-3.106898212888628624e-08,-3.170304298865947279e-08,-3.233710384843265933e-08,-3.297116470820584588e-08,-3.360522556797903242e-08,-3.423928642775221896e-08,-3.487334728752540551e-08,-3.550740814729859205e-08,-3.614146900707177860e-08,-3.677552986684496514e-08,-3.740959072661815168e-08,-3.804365158639133823e-08,-3.867771244616452477e-08,-3.931177330593771132e-08,-3.994583416571089786e-08 +0.000000000000000000e+00,1.952452710686864817e-10,3.904905421373729635e-10,5.857358132060594452e-10,7.809810842747459269e-10,9.762263553434324086e-10,1.171471626412118890e-09,1.366716897480805372e-09,1.561962168549491854e-09,1.757207439618178336e-09,1.952452710686864817e-09,2.147697981755551506e-09,2.342943252824238194e-09,2.538188523892924883e-09,2.733433794961611571e-09,2.928679066030298260e-09,3.123924337098984948e-09,3.319169608167671637e-09,3.514414879236358325e-09,3.709660150305045014e-09,3.904905421373732116e-09,4.100150692442419218e-09,4.295395963511106320e-09,4.490641234579793422e-09,4.685886505648480525e-09,4.881131776717167627e-09,5.076377047785854729e-09,5.271622318854541831e-09,5.466867589923228933e-09,5.662112860991916035e-09,5.857358132060603137e-09,6.052603403129290239e-09,6.247848674197977341e-09,6.443093945266664444e-09,6.638339216335351546e-09,6.833584487404038648e-09,7.028829758472725750e-09,7.224075029541412852e-09,7.419320300610099954e-09,7.614565571678787883e-09,7.809810842747475813e-09,8.005056113816163742e-09,8.200301384884851671e-09,8.395546655953539601e-09,8.590791927022227530e-09,8.786037198090915459e-09,8.981282469159603389e-09,9.176527740228291318e-09,9.371773011296979247e-09,9.567018282365667176e-09,9.762263553434355106e-09,9.957508824503043035e-09,1.015275409557173096e-08,1.034799936664041889e-08,1.054324463770910682e-08,1.073848990877779475e-08,1.093373517984648268e-08,1.112898045091517061e-08,1.132422572198385854e-08,1.151947099305254647e-08,1.171471626412123440e-08,1.190996153518992233e-08,1.210520680625861026e-08,1.230045207732729819e-08 +0.000000000000000000e+00,-3.640353644099648801e-10,-7.280707288199297602e-10,-1.092106093229894640e-09,-1.456141457639859520e-09,-1.820176822049824400e-09,-2.184212186459789280e-09,-2.548247550869754161e-09,-2.912282915279719041e-09,-3.276318279689683921e-09,-3.640353644099648801e-09,-4.004389008509613681e-09,-4.368424372919578561e-09,-4.732459737329543441e-09,-5.096495101739508321e-09,-5.460530466149473201e-09,-5.824565830559438081e-09,-6.188601194969402961e-09,-6.552636559379367841e-09,-6.916671923789332721e-09,-7.280707288199297602e-09,-7.644742652609263309e-09,-8.008778017019229016e-09,-8.372813381429194723e-09,-8.736848745839160431e-09,-9.100884110249126138e-09,-9.464919474659091845e-09,-9.828954839069057552e-09,-1.019299020347902326e-08,-1.055702556788898897e-08,-1.092106093229895467e-08,-1.128509629670892038e-08,-1.164913166111888609e-08,-1.201316702552885180e-08,-1.237720238993881750e-08,-1.274123775434878321e-08,-1.310527311875874892e-08,-1.346930848316871462e-08,-1.383334384757868033e-08,-1.419737921198864604e-08,-1.456141457639861175e-08,-1.492544994080857745e-08,-1.528948530521854316e-08,-1.565352066962850887e-08,-1.601755603403847458e-08,-1.638159139844844028e-08,-1.674562676285840599e-08,-1.710966212726837170e-08,-1.747369749167833740e-08,-1.783773285608830311e-08,-1.820176822049826882e-08,-1.856580358490823453e-08,-1.892983894931820023e-08,-1.929387431372816594e-08,-1.965790967813813165e-08,-2.002194504254809736e-08,-2.038598040695806306e-08,-2.075001577136802877e-08,-2.111405113577799448e-08,-2.147808650018796018e-08,-2.184212186459792589e-08,-2.220615722900789160e-08,-2.257019259341785731e-08,-2.293422795782782301e-08 +0.000000000000000000e+00,-4.456448061456680936e-20,-8.912896122913361872e-20,-1.336934418437004221e-19,-1.782579224582672134e-19,-2.228224030728339806e-19,-2.673868836874007478e-19,-3.119513643019675151e-19,-3.565158449165342823e-19,-4.010803255311010495e-19,-4.456448061456677686e-19,-4.902092867602344877e-19,-5.347737673748012068e-19,-5.793382479893679258e-19,-6.239027286039346449e-19,-6.684672092185013640e-19,-7.130316898330680831e-19,-7.575961704476348022e-19,-8.021606510622015212e-19,-8.467251316767682403e-19,-8.912896122913349594e-19,-9.358540929059016785e-19,-9.804185735204683976e-19,-1.024983054135035117e-18,-1.069547534749601836e-18,-1.114112015364168555e-18,-1.158676495978735274e-18,-1.203240976593301993e-18,-1.247805457207868712e-18,-1.292369937822435431e-18,-1.336934418437002150e-18,-1.381498899051568869e-18,-1.426063379666135588e-18,-1.470627860280702307e-18,-1.515192340895269027e-18,-1.559756821509835746e-18,-1.604321302124402465e-18,-1.648885782738969184e-18,-1.693450263353535903e-18,-1.738014743968102622e-18,-1.782579224582669534e-18,-1.827143705197236445e-18,-1.871708185811803357e-18,-1.916272666426370269e-18,-1.960837147040937180e-18,-2.005401627655504092e-18,-2.049966108270071004e-18,-2.094530588884637915e-18,-2.139095069499204827e-18,-2.183659550113771739e-18,-2.228224030728338650e-18,-2.272788511342905562e-18,-2.317352991957472474e-18,-2.361917472572039385e-18,-2.406481953186606297e-18,-2.451046433801173209e-18,-2.495610914415740120e-18,-2.540175395030307032e-18,-2.584739875644873944e-18,-2.629304356259440855e-18,-2.673868836874007767e-18,-2.718433317488574679e-18,-2.762997798103141590e-18,-2.807562278717708502e-18 +0.000000000000000000e+00,2.120293055917675658e-11,4.240586111835351316e-11,6.360879167753026974e-11,8.481172223670702632e-11,1.060146527958837829e-10,1.272175833550605395e-10,1.484205139142373090e-10,1.696234444734140785e-10,1.908263750325908480e-10,2.120293055917676175e-10,2.332322361509443870e-10,2.544351667101211307e-10,2.756380972692978743e-10,2.968410278284746180e-10,3.180439583876513616e-10,3.392468889468281053e-10,3.604498195060048489e-10,3.816527500651815926e-10,4.028556806243583362e-10,4.240586111835350799e-10,4.452615417427118236e-10,4.664644723018885672e-10,4.876674028610653626e-10,5.088703334202421579e-10,5.300732639794189533e-10,5.512761945385957486e-10,5.724791250977725440e-10,5.936820556569493393e-10,6.148849862161261347e-10,6.360879167753029300e-10,6.572908473344797254e-10,6.784937778936565207e-10,6.996967084528333161e-10,7.208996390120101115e-10,7.421025695711869068e-10,7.633055001303637022e-10,7.845084306895404975e-10,8.057113612487172929e-10,8.269142918078940882e-10,8.481172223670708836e-10,8.693201529262476789e-10,8.905230834854244743e-10,9.117260140446012696e-10,9.329289446037781684e-10,9.541318751629550671e-10,9.753348057221319659e-10,9.965377362813088646e-10,1.017740666840485763e-09,1.038943597399662662e-09,1.060146527958839561e-09,1.081349458518016460e-09,1.102552389077193358e-09,1.123755319636370257e-09,1.144958250195547156e-09,1.166161180754724055e-09,1.187364111313900953e-09,1.208567041873077852e-09,1.229769972432254751e-09,1.250972902991431650e-09,1.272175833550608548e-09,1.293378764109785447e-09,1.314581694668962346e-09,1.335784625228139245e-09 +0.000000000000000000e+00,-5.454280487070843869e-10,-1.090856097414168774e-09,-1.636284146121253057e-09,-2.181712194828337134e-09,-2.727140243535421211e-09,-3.272568292242505288e-09,-3.817996340949589778e-09,-4.363424389656674268e-09,-4.908852438363758759e-09,-5.454280487070843249e-09,-5.999708535777927739e-09,-6.545136584485012229e-09,-7.090564633192096720e-09,-7.635992681899181210e-09,-8.181420730606265700e-09,-8.726848779313350191e-09,-9.272276828020434681e-09,-9.817704876727519171e-09,-1.036313292543460366e-08,-1.090856097414168815e-08,-1.145398902284877264e-08,-1.199941707155585713e-08,-1.254484512026294162e-08,-1.309027316897002611e-08,-1.363570121767711060e-08,-1.418112926638419509e-08,-1.472655731509127958e-08,-1.527198536379836573e-08,-1.581741341250545353e-08,-1.636284146121254133e-08,-1.690826950991962913e-08,-1.745369755862671693e-08,-1.799912560733380472e-08,-1.854455365604089252e-08,-1.908998170474798032e-08,-1.963540975345506812e-08,-2.018083780216215592e-08,-2.072626585086924372e-08,-2.127169389957633152e-08,-2.181712194828341932e-08,-2.236254999699050712e-08,-2.290797804569759492e-08,-2.345340609440468271e-08,-2.399883414311177051e-08,-2.454426219181885831e-08,-2.508969024052594611e-08,-2.563511828923303391e-08,-2.618054633794012171e-08,-2.672597438664720951e-08,-2.727140243535429731e-08,-2.781683048406138511e-08,-2.836225853276847291e-08,-2.890768658147556070e-08,-2.945311463018264850e-08,-2.999854267888973630e-08,-3.054397072759682410e-08,-3.108939877630391190e-08,-3.163482682501099970e-08,-3.218025487371808750e-08,-3.272568292242517530e-08,-3.327111097113226310e-08,-3.381653901983935090e-08,-3.436196706854643870e-08 +0.000000000000000000e+00,7.379124131690701642e-11,1.475824826338140328e-10,2.213737239507210622e-10,2.951649652676281174e-10,3.689562065845351726e-10,4.427474479014422278e-10,5.165386892183492830e-10,5.903299305352563382e-10,6.641211718521633934e-10,7.379124131690704486e-10,8.117036544859775038e-10,8.854948958028845589e-10,9.592861371197915107e-10,1.033077378436698359e-09,1.106868619753605208e-09,1.180659861070512056e-09,1.254451102387418904e-09,1.328242343704325753e-09,1.402033585021232601e-09,1.475824826338139450e-09,1.549616067655046298e-09,1.623407308971953146e-09,1.697198550288859995e-09,1.770989791605766843e-09,1.844781032922673692e-09,1.918572274239580540e-09,1.992363515556487388e-09,2.066154756873394237e-09,2.139945998190301085e-09,2.213737239507207934e-09,2.287528480824114782e-09,2.361319722141021630e-09,2.435110963457928479e-09,2.508902204774835327e-09,2.582693446091742176e-09,2.656484687408649024e-09,2.730275928725555872e-09,2.804067170042462721e-09,2.877858411359369569e-09,2.951649652676276418e-09,3.025440893993183266e-09,3.099232135310090114e-09,3.173023376626996963e-09,3.246814617943903811e-09,3.320605859260810660e-09,3.394397100577717508e-09,3.468188341894624356e-09,3.541979583211531205e-09,3.615770824528438053e-09,3.689562065845344902e-09,3.763353307162251336e-09,3.837144548479157771e-09,3.910935789796064206e-09,3.984727031112970641e-09,4.058518272429877076e-09,4.132309513746783510e-09,4.206100755063689945e-09,4.279891996380596380e-09,4.353683237697502815e-09,4.427474479014409250e-09,4.501265720331315684e-09,4.575056961648222119e-09,4.648848202965128554e-09 +0.000000000000000000e+00,-1.820878404923131709e-10,-3.641756809846263419e-10,-5.462635214769395645e-10,-7.283513619692527871e-10,-9.104392024615660098e-10,-1.092527042953879129e-09,-1.274614883446192248e-09,-1.456702723938505367e-09,-1.638790564430818487e-09,-1.820878404923131606e-09,-2.002966245415444725e-09,-2.185054085907757844e-09,-2.367141926400070964e-09,-2.549229766892384083e-09,-2.731317607384697202e-09,-2.913405447877010321e-09,-3.095493288369323441e-09,-3.277581128861636560e-09,-3.459668969353949679e-09,-3.641756809846262798e-09,-3.823844650338575918e-09,-4.005932490830889450e-09,-4.188020331323202983e-09,-4.370108171815516516e-09,-4.552196012307830049e-09,-4.734283852800143582e-09,-4.916371693292457114e-09,-5.098459533784770647e-09,-5.280547374277084180e-09,-5.462635214769397713e-09,-5.644723055261711246e-09,-5.826810895754024779e-09,-6.008898736246338311e-09,-6.190986576738651844e-09,-6.373074417230965377e-09,-6.555162257723278910e-09,-6.737250098215592443e-09,-6.919337938707905976e-09,-7.101425779200219508e-09,-7.283513619692533041e-09,-7.465601460184846574e-09,-7.647689300677160107e-09,-7.829777141169473640e-09,-8.011864981661787172e-09,-8.193952822154100705e-09,-8.376040662646414238e-09,-8.558128503138727771e-09,-8.740216343631041304e-09,-8.922304184123354837e-09,-9.104392024615668369e-09,-9.286479865107981902e-09,-9.468567705600295435e-09,-9.650655546092608968e-09,-9.832743386584922501e-09,-1.001483122707723603e-08,-1.019691906756954957e-08,-1.037900690806186310e-08,-1.056109474855417663e-08,-1.074318258904649016e-08,-1.092527042953880370e-08,-1.110735827003111723e-08,-1.128944611052343076e-08,-1.147153395101574430e-08 +0.000000000000000000e+00,-4.111192981604341377e-20,-8.222385963208682754e-20,-1.233357894481302473e-19,-1.644477192641736792e-19,-2.055596490802171110e-19,-2.466715788962605428e-19,-2.877835087123039506e-19,-3.288954385283473583e-19,-3.700073683443907661e-19,-4.111192981604341738e-19,-4.522312279764775816e-19,-4.933431577925209893e-19,-5.344550876085643971e-19,-5.755670174246078049e-19,-6.166789472406512126e-19,-6.577908770566946204e-19,-6.989028068727380281e-19,-7.400147366887814359e-19,-7.811266665048248436e-19,-8.222385963208682514e-19,-8.633505261369116591e-19,-9.044624559529551632e-19,-9.455743857689986672e-19,-9.866863155850421713e-19,-1.027798245401085675e-18,-1.068910175217129179e-18,-1.110022105033172683e-18,-1.151134034849216187e-18,-1.192245964665259692e-18,-1.233357894481303196e-18,-1.274469824297346700e-18,-1.315581754113390204e-18,-1.356693683929433708e-18,-1.397805613745477212e-18,-1.438917543561520716e-18,-1.480029473377564220e-18,-1.521141403193607724e-18,-1.562253333009651228e-18,-1.603365262825694732e-18,-1.644477192641738236e-18,-1.685589122457781740e-18,-1.726701052273825244e-18,-1.767812982089868941e-18,-1.808924911905912637e-18,-1.850036841721956334e-18,-1.891148771538000031e-18,-1.932260701354043727e-18,-1.973372631170087424e-18,-2.014484560986131121e-18,-2.055596490802174817e-18,-2.096708420618218514e-18,-2.137820350434262211e-18,-2.178932280250305907e-18,-2.220044210066349604e-18,-2.261156139882393301e-18,-2.302268069698436997e-18,-2.343379999514480694e-18,-2.384491929330524390e-18,-2.425603859146568087e-18,-2.466715788962611784e-18,-2.507827718778655480e-18,-2.548939648594699177e-18,-2.590051578410742874e-18 +0.000000000000000000e+00,-1.952452711547864192e-10,-3.904905423095728384e-10,-5.857358134643592060e-10,-7.809810846191455735e-10,-9.762263557739319410e-10,-1.171471626928718412e-09,-1.366716898083504883e-09,-1.561962169238291354e-09,-1.757207440393077825e-09,-1.952452711547864296e-09,-2.147697982702650973e-09,-2.342943253857437651e-09,-2.538188525012224329e-09,-2.733433796167011006e-09,-2.928679067321797684e-09,-3.123924338476584362e-09,-3.319169609631371040e-09,-3.514414880786157717e-09,-3.709660151940944395e-09,-3.904905423095731073e-09,-4.100150694250517750e-09,-4.295395965405304428e-09,-4.490641236560091106e-09,-4.685886507714877784e-09,-4.881131778869664461e-09,-5.076377050024451139e-09,-5.271622321179237817e-09,-5.466867592334024494e-09,-5.662112863488811172e-09,-5.857358134643597850e-09,-6.052603405798384528e-09,-6.247848676953171205e-09,-6.443093948107957883e-09,-6.638339219262744561e-09,-6.833584490417531238e-09,-7.028829761572317916e-09,-7.224075032727104594e-09,-7.419320303881891272e-09,-7.614565575036677949e-09,-7.809810846191463800e-09,-8.005056117346249650e-09,-8.200301388501035501e-09,-8.395546659655821351e-09,-8.590791930810607202e-09,-8.786037201965393052e-09,-8.981282473120178903e-09,-9.176527744274964754e-09,-9.371773015429750604e-09,-9.567018286584536455e-09,-9.762263557739322305e-09,-9.957508828894108156e-09,-1.015275410004889401e-08,-1.034799937120367986e-08,-1.054324464235846571e-08,-1.073848991351325156e-08,-1.093373518466803741e-08,-1.112898045582282326e-08,-1.132422572697760911e-08,-1.151947099813239496e-08,-1.171471626928718081e-08,-1.190996154044196666e-08,-1.210520681159675251e-08,-1.230045208275153836e-08 +0.000000000000000000e+00,3.640353643208566418e-10,7.280707286417132836e-10,1.092106092962569925e-09,1.456141457283426567e-09,1.820176821604283209e-09,2.184212185925139851e-09,2.548247550245996286e-09,2.912282914566852721e-09,3.276318278887709156e-09,3.640353643208565591e-09,4.004389007529422026e-09,4.368424371850278874e-09,4.732459736171135723e-09,5.096495100491992572e-09,5.460530464812849420e-09,5.824565829133706269e-09,6.188601193454563117e-09,6.552636557775419966e-09,6.916671922096276814e-09,7.280707286417133663e-09,7.644742650737990512e-09,8.008778015058847360e-09,8.372813379379704209e-09,8.736848743700561057e-09,9.100884108021417906e-09,9.464919472342274755e-09,9.828954836663131603e-09,1.019299020098398845e-08,1.055702556530484530e-08,1.092106092962570215e-08,1.128509629394655900e-08,1.164913165826741585e-08,1.201316702258827269e-08,1.237720238690912954e-08,1.274123775122998639e-08,1.310527311555084324e-08,1.346930847987170009e-08,1.383334384419255694e-08,1.419737920851341379e-08,1.456141457283427063e-08,1.492544993715512583e-08,1.528948530147598102e-08,1.565352066579683622e-08,1.601755603011769141e-08,1.638159139443854661e-08,1.674562675875940180e-08,1.710966212308025699e-08,1.747369748740111219e-08,1.783773285172196738e-08,1.820176821604282258e-08,1.856580358036367777e-08,1.892983894468453297e-08,1.929387430900538816e-08,1.965790967332624335e-08,2.002194503764709855e-08,2.038598040196795374e-08,2.075001576628880894e-08,2.111405113060966413e-08,2.147808649493051933e-08,2.184212185925137452e-08,2.220615722357222971e-08,2.257019258789308491e-08,2.293422795221394010e-08 +0.000000000000000000e+00,1.820878404031846150e-10,3.641756808063692301e-10,5.462635212095538451e-10,7.283513616127384601e-10,9.104392020159230751e-10,1.092527042419107690e-09,1.274614882822292305e-09,1.456702723225476920e-09,1.638790563628661535e-09,1.820878404031846150e-09,2.002966244435030558e-09,2.185054084838214967e-09,2.367141925241399375e-09,2.549229765644583783e-09,2.731317606047768191e-09,2.913405446450952600e-09,3.095493286854137008e-09,3.277581127257321416e-09,3.459668967660505824e-09,3.641756808063690233e-09,3.823844648466874641e-09,4.005932488870059463e-09,4.188020329273244284e-09,4.370108169676429106e-09,4.552196010079613928e-09,4.734283850482798750e-09,4.916371690885983572e-09,5.098459531289168394e-09,5.280547371692353215e-09,5.462635212095538037e-09,5.644723052498722859e-09,5.826810892901907681e-09,6.008898733305092503e-09,6.190986573708277324e-09,6.373074414111462146e-09,6.555162254514646968e-09,6.737250094917831790e-09,6.919337935321016612e-09,7.101425775724201434e-09,7.283513616127386255e-09,7.465601456530571077e-09,7.647689296933755899e-09,7.829777137336940721e-09,8.011864977740125543e-09,8.193952818143310365e-09,8.376040658546495186e-09,8.558128498949680008e-09,8.740216339352864830e-09,8.922304179756049652e-09,9.104392020159234474e-09,9.286479860562419295e-09,9.468567700965604117e-09,9.650655541368788939e-09,9.832743381771973761e-09,1.001483122217515858e-08,1.019691906257834340e-08,1.037900690298152823e-08,1.056109474338471305e-08,1.074318258378789787e-08,1.092527042419108269e-08,1.110735826459426751e-08,1.128944610499745234e-08,1.147153394540063716e-08 +0.000000000000000000e+00,-2.120293064684408501e-11,-4.240586129368817002e-11,-6.360879194053225503e-11,-8.481172258737634004e-11,-1.060146532342204250e-10,-1.272175838810645101e-10,-1.484205145279085951e-10,-1.696234451747526801e-10,-1.908263758215967651e-10,-2.120293064684408501e-10,-2.332322371152849351e-10,-2.544351677621290201e-10,-2.756380984089731051e-10,-2.968410290558171901e-10,-3.180439597026612751e-10,-3.392468903495053601e-10,-3.604498209963494452e-10,-3.816527516431935302e-10,-4.028556822900376152e-10,-4.240586129368817002e-10,-4.452615435837257852e-10,-4.664644742305698702e-10,-4.876674048774139552e-10,-5.088703355242580402e-10,-5.300732661711021252e-10,-5.512761968179462102e-10,-5.724791274647902953e-10,-5.936820581116343803e-10,-6.148849887584784653e-10,-6.360879194053225503e-10,-6.572908500521666353e-10,-6.784937806990107203e-10,-6.996967113458548053e-10,-7.208996419926988903e-10,-7.421025726395429753e-10,-7.633055032863870603e-10,-7.845084339332311453e-10,-8.057113645800752304e-10,-8.269142952269193154e-10,-8.481172258737634004e-10,-8.693201565206074854e-10,-8.905230871674515704e-10,-9.117260178142956554e-10,-9.329289484611397404e-10,-9.541318791079837220e-10,-9.753348097548277036e-10,-9.965377404016716852e-10,-1.017740671048515667e-09,-1.038943601695359648e-09,-1.060146532342203630e-09,-1.081349462989047612e-09,-1.102552393635891593e-09,-1.123755324282735575e-09,-1.144958254929579557e-09,-1.166161185576423538e-09,-1.187364116223267520e-09,-1.208567046870111501e-09,-1.229769977516955483e-09,-1.250972908163799465e-09,-1.272175838810643446e-09,-1.293378769457487428e-09,-1.314581700104331409e-09,-1.335784630751175391e-09 +0.000000000000000000e+00,5.454280486249249828e-10,1.090856097249849966e-09,1.636284145874774948e-09,2.181712194499699931e-09,2.727140243124624707e-09,3.272568291749549483e-09,3.817996340374474259e-09,4.363424388999399035e-09,4.908852437624323811e-09,5.454280486249248587e-09,5.999708534874173363e-09,6.545136583499098139e-09,7.090564632124022915e-09,7.635992680748948518e-09,8.181420729373874121e-09,8.726848777998799724e-09,9.272276826623725328e-09,9.817704875248650931e-09,1.036313292387357653e-08,1.090856097249850214e-08,1.145398902112342774e-08,1.199941706974835334e-08,1.254484511837327895e-08,1.309027316699820455e-08,1.363570121562313015e-08,1.418112926424805576e-08,1.472655731287298136e-08,1.527198536149790696e-08,1.581741341012283257e-08,1.636284145874775817e-08,1.690826950737268377e-08,1.745369755599760937e-08,1.799912560462253498e-08,1.854455365324746058e-08,1.908998170187238618e-08,1.963540975049731179e-08,2.018083779912223739e-08,2.072626584774716299e-08,2.127169389637208860e-08,2.181712194499701420e-08,2.236254999362193980e-08,2.290797804224686541e-08,2.345340609087179101e-08,2.399883413949671661e-08,2.454426218812164222e-08,2.508969023674656782e-08,2.563511828537149342e-08,2.618054633399641903e-08,2.672597438262134463e-08,2.727140243124627023e-08,2.781683047987119583e-08,2.836225852849612144e-08,2.890768657712104704e-08,2.945311462574597264e-08,2.999854267437090156e-08,3.054397072299583378e-08,3.108939877162076600e-08,3.163482682024569822e-08,3.218025486887063044e-08,3.272568291749556266e-08,3.327111096612049488e-08,3.381653901474542710e-08,3.436196706337035932e-08 +0.000000000000000000e+00,-7.379124139489834794e-11,-1.475824827897966959e-10,-2.213737241846950438e-10,-2.951649655795933917e-10,-3.689562069744917397e-10,-4.427474483693900876e-10,-5.165386897642883839e-10,-5.903299311591866801e-10,-6.641211725540849763e-10,-7.379124139489832726e-10,-8.117036553438815688e-10,-8.854948967387798650e-10,-9.592861381336781613e-10,-1.033077379528576354e-09,-1.106868620923474547e-09,-1.180659862318372740e-09,-1.254451103713270933e-09,-1.328242345108169125e-09,-1.402033586503067318e-09,-1.475824827897965511e-09,-1.549616069292863704e-09,-1.623407310687761897e-09,-1.697198552082660090e-09,-1.770989793477558283e-09,-1.844781034872456475e-09,-1.918572276267354668e-09,-1.992363517662253068e-09,-2.066154759057151467e-09,-2.139946000452049867e-09,-2.213737241846948267e-09,-2.287528483241846666e-09,-2.361319724636745066e-09,-2.435110966031643466e-09,-2.508902207426541865e-09,-2.582693448821440265e-09,-2.656484690216338665e-09,-2.730275931611237064e-09,-2.804067173006135464e-09,-2.877858414401033863e-09,-2.951649655795932263e-09,-3.025440897190830663e-09,-3.099232138585729062e-09,-3.173023379980627462e-09,-3.246814621375525862e-09,-3.320605862770424261e-09,-3.394397104165322661e-09,-3.468188345560221061e-09,-3.541979586955119460e-09,-3.615770828350017860e-09,-3.689562069744916259e-09,-3.763353311139814659e-09,-3.837144552534713472e-09,-3.910935793929612286e-09,-3.984727035324511099e-09,-4.058518276719409912e-09,-4.132309518114308725e-09,-4.206100759509207538e-09,-4.279892000904106352e-09,-4.353683242299005165e-09,-4.427474483693903978e-09,-4.501265725088802791e-09,-4.575056966483701605e-09,-4.648848207878600418e-09 +0.000000000000000000e+00,4.084567735739323104e-10,8.169135471478646207e-10,1.225370320721797034e-09,1.633827094295729448e-09,2.042283867869661862e-09,2.450740641443594069e-09,2.859197415017526276e-09,3.267654188591458483e-09,3.676110962165390690e-09,4.084567735739322897e-09,4.493024509313255104e-09,4.901481282887187311e-09,5.309938056461119518e-09,5.718394830035051725e-09,6.126851603608983932e-09,6.535308377182916139e-09,6.943765150756848346e-09,7.352221924330780553e-09,7.760678697904712760e-09,8.169135471478644139e-09,8.577592245052575519e-09,8.986049018626506899e-09,9.394505792200438279e-09,9.802962565774369658e-09,1.021141933934830104e-08,1.061987611292223242e-08,1.102833288649616380e-08,1.143678966007009518e-08,1.184524643364402656e-08,1.225370320721795794e-08,1.266215998079188932e-08,1.307061675436582070e-08,1.347907352793975208e-08,1.388753030151368346e-08,1.429598707508761484e-08,1.470444384866154622e-08,1.511290062223547760e-08,1.552135739580940898e-08,1.592981416938334036e-08,1.633827094295727173e-08,1.674672771653120311e-08,1.715518449010513449e-08,1.756364126367906587e-08,1.797209803725299725e-08,1.838055481082692863e-08,1.878901158440086001e-08,1.919746835797479139e-08,1.960592513154872277e-08,2.001438190512265415e-08,2.042283867869658553e-08,2.083129545227051691e-08,2.123975222584444829e-08,2.164820899941837967e-08,2.205666577299231105e-08,2.246512254656624243e-08,2.287357932014017381e-08,2.328203609371410519e-08,2.369049286728803657e-08,2.409894964086196795e-08,2.450740641443589933e-08,2.491586318800983071e-08,2.532431996158376209e-08,2.573277673515769347e-08 +0.000000000000000000e+00,3.193829300902750393e-10,6.387658601805500785e-10,9.581487902708251695e-10,1.277531720361100364e-09,1.596914650451375558e-09,1.916297580541650753e-09,2.235680510631926154e-09,2.555063440722201555e-09,2.874446370812476956e-09,3.193829300902752357e-09,3.513212230993027758e-09,3.832595161083303159e-09,4.151978091173578561e-09,4.471361021263853962e-09,4.790743951354129363e-09,5.110126881444404764e-09,5.429509811534680165e-09,5.748892741624955566e-09,6.068275671715230967e-09,6.387658601805506369e-09,6.707041531895781770e-09,7.026424461986057171e-09,7.345807392076332572e-09,7.665190322166607973e-09,7.984573252256883374e-09,8.303956182347158775e-09,8.623339112437434177e-09,8.942722042527709578e-09,9.262104972617984979e-09,9.581487902708260380e-09,9.900870832798535781e-09,1.022025376288881118e-08,1.053963669297908658e-08,1.085901962306936198e-08,1.117840255315963739e-08,1.149778548324991279e-08,1.181716841334018819e-08,1.213655134343046359e-08,1.245593427352073899e-08,1.277531720361101439e-08,1.309470013370128979e-08,1.341408306379156519e-08,1.373346599388184059e-08,1.405284892397211600e-08,1.437223185406239140e-08,1.469161478415266680e-08,1.501099771424294055e-08,1.533038064433321264e-08,1.564976357442348473e-08,1.596914650451375682e-08,1.628852943460402891e-08,1.660791236469430101e-08,1.692729529478457310e-08,1.724667822487484519e-08,1.756606115496511728e-08,1.788544408505538938e-08,1.820482701514566147e-08,1.852420994523593356e-08,1.884359287532620565e-08,1.916297580541647775e-08,1.948235873550674984e-08,1.980174166559702193e-08,2.012112459568729402e-08 +0.000000000000000000e+00,3.248244508362012685e-10,6.496489016724025370e-10,9.744733525086037538e-10,1.299297803344804867e-09,1.624122254181005981e-09,1.948946705017207094e-09,2.273771155853408001e-09,2.598595606689608907e-09,2.923420057525809814e-09,3.248244508362010720e-09,3.573068959198211627e-09,3.897893410034412534e-09,4.222717860870613440e-09,4.547542311706814347e-09,4.872366762543015253e-09,5.197191213379216160e-09,5.522015664215417067e-09,5.846840115051617973e-09,6.171664565887818880e-09,6.496489016724019786e-09,6.821313467560220693e-09,7.146137918396421600e-09,7.470962369232622506e-09,7.795786820068823413e-09,8.120611270905024319e-09,8.445435721741225226e-09,8.770260172577426133e-09,9.095084623413627039e-09,9.419909074249827946e-09,9.744733525086028852e-09,1.006955797592222976e-08,1.039438242675843067e-08,1.071920687759463157e-08,1.104403132843083248e-08,1.136885577926703339e-08,1.169368023010323429e-08,1.201850468093943520e-08,1.234332913177563611e-08,1.266815358261183701e-08,1.299297803344803792e-08,1.331780248428423882e-08,1.364262693512043973e-08,1.396745138595664064e-08,1.429227583679284154e-08,1.461710028762904245e-08,1.494192473846524501e-08,1.526674918930144757e-08,1.559157364013765013e-08,1.591639809097385270e-08,1.624122254181005526e-08,1.656604699264625782e-08,1.689087144348246038e-08,1.721569589431866294e-08,1.754052034515486550e-08,1.786534479599106806e-08,1.819016924682727062e-08,1.851499369766347318e-08,1.883981814849967574e-08,1.916464259933587830e-08,1.948946705017208087e-08,1.981429150100828343e-08,2.013911595184448599e-08,2.046394040268068855e-08 +0.000000000000000000e+00,-4.084567736563734212e-10,-8.169135473127468424e-10,-1.225370320969120315e-09,-1.633827094625493892e-09,-2.042283868281867468e-09,-2.450740641938241044e-09,-2.859197415594614621e-09,-3.267654189250988197e-09,-3.676110962907361773e-09,-4.084567736563734936e-09,-4.493024510220108099e-09,-4.901481283876481261e-09,-5.309938057532854424e-09,-5.718394831189227587e-09,-6.126851604845600749e-09,-6.535308378501973912e-09,-6.943765152158347075e-09,-7.352221925814720238e-09,-7.760678699471093400e-09,-8.169135473127466563e-09,-8.577592246783839726e-09,-8.986049020440212888e-09,-9.394505794096586051e-09,-9.802962567752959214e-09,-1.021141934140933238e-08,-1.061987611506570554e-08,-1.102833288872207870e-08,-1.143678966237845186e-08,-1.184524643603482503e-08,-1.225370320969119819e-08,-1.266215998334757135e-08,-1.307061675700394452e-08,-1.347907353066031768e-08,-1.388753030431669084e-08,-1.429598707797306400e-08,-1.470444385162943717e-08,-1.511290062528580867e-08,-1.552135739894218018e-08,-1.592981417259855169e-08,-1.633827094625492320e-08,-1.674672771991129471e-08,-1.715518449356766622e-08,-1.756364126722403772e-08,-1.797209804088040923e-08,-1.838055481453678074e-08,-1.878901158819315225e-08,-1.919746836184952376e-08,-1.960592513550589527e-08,-2.001438190916226678e-08,-2.042283868281863828e-08,-2.083129545647500979e-08,-2.123975223013138130e-08,-2.164820900378775281e-08,-2.205666577744412432e-08,-2.246512255110049583e-08,-2.287357932475686733e-08,-2.328203609841323884e-08,-2.369049287206961035e-08,-2.409894964572598186e-08,-2.450740641938235337e-08,-2.491586319303872488e-08,-2.532431996669509638e-08,-2.573277674035146789e-08 +0.000000000000000000e+00,-3.193829301746898547e-10,-6.387658603493797095e-10,-9.581487905240696159e-10,-1.277531720698759626e-09,-1.596914650873449636e-09,-1.916297581048139645e-09,-2.235680511222829655e-09,-2.555063441397519665e-09,-2.874446371572209675e-09,-3.193829301746899685e-09,-3.513212231921589695e-09,-3.832595162096280118e-09,-4.151978092270970955e-09,-4.471361022445661792e-09,-4.790743952620352629e-09,-5.110126882795043466e-09,-5.429509812969734303e-09,-5.748892743144425140e-09,-6.068275673319115977e-09,-6.387658603493806814e-09,-6.707041533668497651e-09,-7.026424463843188488e-09,-7.345807394017879325e-09,-7.665190324192570162e-09,-7.984573254367260999e-09,-8.303956184541951836e-09,-8.623339114716642673e-09,-8.942722044891333510e-09,-9.262104975066024347e-09,-9.581487905240715184e-09,-9.900870835415406021e-09,-1.022025376559009686e-08,-1.053963669576478770e-08,-1.085901962593947853e-08,-1.117840255611416937e-08,-1.149778548628886021e-08,-1.181716841646355104e-08,-1.213655134663824188e-08,-1.245593427681293272e-08,-1.277531720698762355e-08,-1.309470013716231439e-08,-1.341408306733700523e-08,-1.373346599751169607e-08,-1.405284892768638690e-08,-1.437223185786107774e-08,-1.469161478803576858e-08,-1.501099771821045941e-08,-1.533038064838515025e-08,-1.564976357855984109e-08,-1.596914650873453192e-08,-1.628852943890922276e-08,-1.660791236908391360e-08,-1.692729529925860444e-08,-1.724667822943329527e-08,-1.756606115960798611e-08,-1.788544408978267695e-08,-1.820482701995736778e-08,-1.852420995013205862e-08,-1.884359288030674946e-08,-1.916297581048144029e-08,-1.948235874065613113e-08,-1.980174167083082197e-08,-2.012112460100551281e-08 +0.000000000000000000e+00,-3.248244509098832087e-10,-6.496489018197664175e-10,-9.744733527296495745e-10,-1.299297803639532628e-09,-1.624122254549415682e-09,-1.948946705459298735e-09,-2.273771156369181582e-09,-2.598595607279064429e-09,-2.923420058188947276e-09,-3.248244509098830123e-09,-3.573068960008712970e-09,-3.897893410918595816e-09,-4.222717861828478663e-09,-4.547542312738361510e-09,-4.872366763648244357e-09,-5.197191214558127204e-09,-5.522015665468010051e-09,-5.846840116377892898e-09,-6.171664567287775744e-09,-6.496489018197658591e-09,-6.821313469107541438e-09,-7.146137920017424285e-09,-7.470962370927307132e-09,-7.795786821837189979e-09,-8.120611272747072825e-09,-8.445435723656955672e-09,-8.770260174566838519e-09,-9.095084625476721366e-09,-9.419909076386604213e-09,-9.744733527296487060e-09,-1.006955797820636991e-08,-1.039438242911625275e-08,-1.071920688002613560e-08,-1.104403133093601845e-08,-1.136885578184590129e-08,-1.169368023275578414e-08,-1.201850468366566699e-08,-1.234332913457554983e-08,-1.266815358548543268e-08,-1.299297803639531553e-08,-1.331780248730519837e-08,-1.364262693821508122e-08,-1.396745138912496407e-08,-1.429227584003484692e-08,-1.461710029094472976e-08,-1.494192474185461426e-08,-1.526674919276449876e-08,-1.559157364367438327e-08,-1.591639809458426777e-08,-1.624122254549415227e-08,-1.656604699640403677e-08,-1.689087144731392127e-08,-1.721569589822380577e-08,-1.754052034913369027e-08,-1.786534480004357477e-08,-1.819016925095345928e-08,-1.851499370186334378e-08,-1.883981815277322828e-08,-1.916464260368311278e-08,-1.948946705459299728e-08,-1.981429150550288178e-08,-2.013911595641276628e-08,-2.046394040732265078e-08 +0.000000000000000000e+00,5.038904740315545687e-10,1.007780948063109137e-09,1.511671422094663809e-09,2.015561896126218688e-09,2.519452370157773567e-09,3.023342844189328446e-09,3.527233318220883325e-09,4.031123792252438204e-09,4.535014266283992669e-09,5.038904740315547135e-09,5.542795214347101600e-09,6.046685688378656065e-09,6.550576162410210530e-09,7.054466636441764996e-09,7.558357110473319461e-09,8.062247584504874753e-09,8.566138058536430046e-09,9.070028532567985338e-09,9.573919006599540631e-09,1.007780948063109592e-08,1.058169995466265122e-08,1.108559042869420651e-08,1.158948090272576180e-08,1.209337137675731709e-08,1.259726185078887239e-08,1.310115232482042768e-08,1.360504279885198297e-08,1.410893327288353826e-08,1.461282374691509356e-08,1.511671422094664885e-08,1.562060469497820249e-08,1.612449516900975612e-08,1.662838564304130976e-08,1.713227611707286340e-08,1.763616659110441704e-08,1.814005706513597068e-08,1.864394753916752432e-08,1.914783801319907795e-08,1.965172848723063159e-08,2.015561896126218523e-08,2.065950943529373887e-08,2.116339990932529251e-08,2.166729038335684614e-08,2.217118085738839978e-08,2.267507133141995342e-08,2.317896180545150706e-08,2.368285227948306070e-08,2.418674275351461433e-08,2.469063322754616797e-08,2.519452370157772161e-08,2.569841417560927525e-08,2.620230464964082889e-08,2.670619512367238252e-08,2.721008559770393616e-08,2.771397607173548980e-08,2.821786654576704344e-08,2.872175701979859708e-08,2.922564749383015072e-08,2.972953796786170435e-08,3.023342844189325799e-08,3.073731891592481163e-08,3.124120938995636527e-08,3.174509986398791891e-08 +0.000000000000000000e+00,4.574937838300338763e-10,9.149875676600677526e-10,1.372481351490101577e-09,1.829975135320135298e-09,2.287468919150169020e-09,2.744962702980202741e-09,3.202456486810236462e-09,3.659950270640270183e-09,4.117444054470303904e-09,4.574937838300338039e-09,5.032431622130372174e-09,5.489925405960406309e-09,5.947419189790440444e-09,6.404912973620474578e-09,6.862406757450508713e-09,7.319900541280542848e-09,7.777394325110576983e-09,8.234888108940611118e-09,8.692381892770645252e-09,9.149875676600679387e-09,9.607369460430713522e-09,1.006486324426074766e-08,1.052235702809078179e-08,1.097985081192081593e-08,1.143734459575085006e-08,1.189483837958088420e-08,1.235233216341091833e-08,1.280982594724095247e-08,1.326731973107098660e-08,1.372481351490102074e-08,1.418230729873105487e-08,1.463980108256108900e-08,1.509729486639112479e-08,1.555478865022116058e-08,1.601228243405119637e-08,1.646977621788123216e-08,1.692727000171126795e-08,1.738476378554130374e-08,1.784225756937133953e-08,1.829975135320137532e-08,1.875724513703141111e-08,1.921473892086144690e-08,1.967223270469148269e-08,2.012972648852151847e-08,2.058722027235155426e-08,2.104471405618159005e-08,2.150220784001162584e-08,2.195970162384166163e-08,2.241719540767169742e-08,2.287468919150173321e-08,2.333218297533176900e-08,2.378967675916180479e-08,2.424717054299184058e-08,2.470466432682187637e-08,2.516215811065191216e-08,2.561965189448194794e-08,2.607714567831198373e-08,2.653463946214201952e-08,2.699213324597205531e-08,2.744962702980209110e-08,2.790712081363212689e-08,2.836461459746216268e-08,2.882210838129219847e-08 +0.000000000000000000e+00,4.472092773596368972e-10,8.944185547192737943e-10,1.341627832078910743e-09,1.788837109438547795e-09,2.236046386798185054e-09,2.683255664157822314e-09,3.130464941517459573e-09,3.577674218877096832e-09,4.024883496236734091e-09,4.472092773596371763e-09,4.919302050956009436e-09,5.366511328315647109e-09,5.813720605675284781e-09,6.260929883034922454e-09,6.708139160394560126e-09,7.155348437754197799e-09,7.602557715113835472e-09,8.049766992473473144e-09,8.496976269833110817e-09,8.944185547192748490e-09,9.391394824552386162e-09,9.838604101912023835e-09,1.028581337927166151e-08,1.073302265663129918e-08,1.118023193399093685e-08,1.162744121135057453e-08,1.207465048871021220e-08,1.252185976606984987e-08,1.296906904342948754e-08,1.341627832078912522e-08,1.386348759814876289e-08,1.431069687550840056e-08,1.475790615286803823e-08,1.520511543022767756e-08,1.565232470758731689e-08,1.609953398494695621e-08,1.654674326230659554e-08,1.699395253966623487e-08,1.744116181702587420e-08,1.788837109438551352e-08,1.833558037174515285e-08,1.878278964910479218e-08,1.922999892646443150e-08,1.967720820382407083e-08,2.012441748118371016e-08,2.057162675854334948e-08,2.101883603590298881e-08,2.146604531326262814e-08,2.191325459062226747e-08,2.236046386798190679e-08,2.280767314534154612e-08,2.325488242270118545e-08,2.370209170006082477e-08,2.414930097742046410e-08,2.459651025478010343e-08,2.504371953213974275e-08,2.549092880949938208e-08,2.593813808685902141e-08,2.638534736421866074e-08,2.683255664157830006e-08,2.727976591893793939e-08,2.772697519629757872e-08,2.817418447365721804e-08 +0.000000000000000000e+00,-5.038904741089744347e-10,-1.007780948217948869e-09,-1.511671422326923304e-09,-2.015561896435897739e-09,-2.519452370544872174e-09,-3.023342844653846608e-09,-3.527233318762821043e-09,-4.031123792871795478e-09,-4.535014266980769913e-09,-5.038904741089744347e-09,-5.542795215198718782e-09,-6.046685689307693217e-09,-6.550576163416667651e-09,-7.054466637525642086e-09,-7.558357111634616521e-09,-8.062247585743590956e-09,-8.566138059852565390e-09,-9.070028533961539825e-09,-9.573919008070514260e-09,-1.007780948217948869e-08,-1.058169995628846313e-08,-1.108559043039743756e-08,-1.158948090450641200e-08,-1.209337137861538643e-08,-1.259726185272436087e-08,-1.310115232683333530e-08,-1.360504280094230974e-08,-1.410893327505128417e-08,-1.461282374916025861e-08,-1.511671422326923304e-08,-1.562060469737820748e-08,-1.612449517148718191e-08,-1.662838564559615635e-08,-1.713227611970513078e-08,-1.763616659381410522e-08,-1.814005706792307965e-08,-1.864394754203205409e-08,-1.914783801614102852e-08,-1.965172849025000295e-08,-2.015561896435897739e-08,-2.065950943846795182e-08,-2.116339991257692626e-08,-2.166729038668590069e-08,-2.217118086079487513e-08,-2.267507133490384956e-08,-2.317896180901282400e-08,-2.368285228312179843e-08,-2.418674275723077287e-08,-2.469063323133974730e-08,-2.519452370544872174e-08,-2.569841417955769617e-08,-2.620230465366667061e-08,-2.670619512777564504e-08,-2.721008560188461948e-08,-2.771397607599359391e-08,-2.821786655010256834e-08,-2.872175702421154278e-08,-2.922564749832051721e-08,-2.972953797242949165e-08,-3.023342844653846608e-08,-3.073731892064743721e-08,-3.124120939475640834e-08,-3.174509986886537946e-08 +0.000000000000000000e+00,-4.574937839102405138e-10,-9.149875678204810276e-10,-1.372481351730721593e-09,-1.829975135640962262e-09,-2.287468919551202724e-09,-2.744962703461443186e-09,-3.202456487371683648e-09,-3.659950271281924111e-09,-4.117444055192164573e-09,-4.574937839102405448e-09,-5.032431623012646324e-09,-5.489925406922887200e-09,-5.947419190833128076e-09,-6.404912974743368951e-09,-6.862406758653609827e-09,-7.319900542563850703e-09,-7.777394326474091578e-09,-8.234888110384332454e-09,-8.692381894294573330e-09,-9.149875678204814206e-09,-9.607369462115055081e-09,-1.006486324602529596e-08,-1.052235702993553683e-08,-1.097985081384577771e-08,-1.143734459775601858e-08,-1.189483838166625946e-08,-1.235233216557650034e-08,-1.280982594948674121e-08,-1.326731973339698209e-08,-1.372481351730722296e-08,-1.418230730121746384e-08,-1.463980108512770471e-08,-1.509729486903794394e-08,-1.555478865294818316e-08,-1.601228243685842238e-08,-1.646977622076866160e-08,-1.692727000467890082e-08,-1.738476378858914004e-08,-1.784225757249937926e-08,-1.829975135640961849e-08,-1.875724514031985771e-08,-1.921473892423009693e-08,-1.967223270814033615e-08,-2.012972649205057537e-08,-2.058722027596081459e-08,-2.104471405987105381e-08,-2.150220784378129303e-08,-2.195970162769153226e-08,-2.241719541160177148e-08,-2.287468919551201070e-08,-2.333218297942224992e-08,-2.378967676333248914e-08,-2.424717054724272836e-08,-2.470466433115296758e-08,-2.516215811506320681e-08,-2.561965189897344603e-08,-2.607714568288368525e-08,-2.653463946679392447e-08,-2.699213325070416369e-08,-2.744962703461440291e-08,-2.790712081852464213e-08,-2.836461460243488135e-08,-2.882210838634512058e-08 +0.000000000000000000e+00,-4.472092774282183383e-10,-8.944185548564366767e-10,-1.341627832284654963e-09,-1.788837109712873147e-09,-2.236046387141091123e-09,-2.683255664569309099e-09,-3.130464941997527076e-09,-3.577674219425745052e-09,-4.024883496853963029e-09,-4.472092774282180592e-09,-4.919302051710398155e-09,-5.366511329138615717e-09,-5.813720606566833280e-09,-6.260929883995050843e-09,-6.708139161423268406e-09,-7.155348438851485969e-09,-7.602557716279703532e-09,-8.049766993707921095e-09,-8.496976271136138657e-09,-8.944185548564356220e-09,-9.391394825992573783e-09,-9.838604103420791346e-09,-1.028581338084900891e-08,-1.073302265827722647e-08,-1.118023193570544403e-08,-1.162744121313366160e-08,-1.207465049056187916e-08,-1.252185976799009672e-08,-1.296906904541831429e-08,-1.341627832284653185e-08,-1.386348760027474941e-08,-1.431069687770296697e-08,-1.475790615513118454e-08,-1.520511543255940045e-08,-1.565232470998761635e-08,-1.609953398741583226e-08,-1.654674326484404817e-08,-1.699395254227226408e-08,-1.744116181970047999e-08,-1.788837109712869590e-08,-1.833558037455691181e-08,-1.878278965198512771e-08,-1.922999892941334362e-08,-1.967720820684155953e-08,-2.012441748426977544e-08,-2.057162676169799135e-08,-2.101883603912620726e-08,-2.146604531655442317e-08,-2.191325459398263907e-08,-2.236046387141085498e-08,-2.280767314883907089e-08,-2.325488242626728680e-08,-2.370209170369550271e-08,-2.414930098112371862e-08,-2.459651025855193452e-08,-2.504371953598015043e-08,-2.549092881340836634e-08,-2.593813809083658225e-08,-2.638534736826479816e-08,-2.683255664569301407e-08,-2.727976592312122998e-08,-2.772697520054944588e-08,-2.817418447797766179e-08 +0.000000000000000000e+00,5.607325322689521668e-10,1.121465064537904334e-09,1.682197596806856500e-09,2.242930129075808667e-09,2.803662661344760834e-09,3.364395193613713001e-09,3.925127725882664754e-09,4.485860258151616507e-09,5.046592790420568260e-09,5.607325322689520013e-09,6.168057854958471766e-09,6.728790387227423519e-09,7.289522919496375273e-09,7.850255451765326199e-09,8.410987984034277125e-09,8.971720516303228051e-09,9.532453048572178977e-09,1.009318558084112990e-08,1.065391811311008083e-08,1.121465064537903175e-08,1.177538317764798268e-08,1.233611570991693361e-08,1.289684824218588453e-08,1.345758077445483546e-08,1.401831330672378638e-08,1.457904583899273731e-08,1.513977837126168824e-08,1.570051090353063916e-08,1.626124343579959009e-08,1.682197596806854101e-08,1.738270850033749194e-08,1.794344103260644287e-08,1.850417356487539379e-08,1.906490609714434472e-08,1.962563862941329564e-08,2.018637116168224657e-08,2.074710369395119750e-08,2.130783622622014842e-08,2.186856875848909935e-08,2.242930129075805027e-08,2.299003382302700120e-08,2.355076635529595213e-08,2.411149888756490305e-08,2.467223141983385398e-08,2.523296395210280490e-08,2.579369648437175583e-08,2.635442901664070676e-08,2.691516154890965768e-08,2.747589408117860861e-08,2.803662661344755953e-08,2.859735914571651046e-08,2.915809167798546139e-08,2.971882421025441231e-08,3.027955674252336324e-08,3.084028927479231747e-08,3.140102180706127171e-08,3.196175433933022594e-08,3.252248687159918018e-08,3.308321940386813441e-08,3.364395193613708865e-08,3.420468446840604288e-08,3.476541700067499712e-08,3.532614953294395135e-08 +0.000000000000000000e+00,5.319636737142288267e-10,1.063927347428457653e-09,1.595891021142686480e-09,2.127854694856915307e-09,2.659818368571143927e-09,3.191782042285372547e-09,3.723745715999601166e-09,4.255709389713829786e-09,4.787673063428058406e-09,5.319636737142287026e-09,5.851600410856515646e-09,6.383564084570744266e-09,6.915527758284972886e-09,7.447491431999201506e-09,7.979455105713430126e-09,8.511418779427657918e-09,9.043382453141885711e-09,9.575346126856113504e-09,1.010730980057034130e-08,1.063927347428456909e-08,1.117123714799879688e-08,1.170320082171302467e-08,1.223516449542725247e-08,1.276712816914148026e-08,1.329909184285570805e-08,1.383105551656993585e-08,1.436301919028416364e-08,1.489498286399839143e-08,1.542694653771262088e-08,1.595891021142685032e-08,1.649087388514107977e-08,1.702283755885530922e-08,1.755480123256953867e-08,1.808676490628376811e-08,1.861872857999799756e-08,1.915069225371222701e-08,1.968265592742645645e-08,2.021461960114068590e-08,2.074658327485491535e-08,2.127854694856914480e-08,2.181051062228337424e-08,2.234247429599760369e-08,2.287443796971183314e-08,2.340640164342606258e-08,2.393836531714029203e-08,2.447032899085452148e-08,2.500229266456875093e-08,2.553425633828298037e-08,2.606622001199720982e-08,2.659818368571143927e-08,2.713014735942566871e-08,2.766211103313989816e-08,2.819407470685412761e-08,2.872603838056835705e-08,2.925800205428258650e-08,2.978996572799681595e-08,3.032192940171104540e-08,3.085389307542527484e-08,3.138585674913950429e-08,3.191782042285373374e-08,3.244978409656796318e-08,3.298174777028219263e-08,3.351371144399642208e-08 +0.000000000000000000e+00,5.194420249640418813e-10,1.038884049928083763e-09,1.558326074892125644e-09,2.077768099856167525e-09,2.597210124820209406e-09,3.116652149784251288e-09,3.636094174748293169e-09,4.155536199712335050e-09,4.674978224676376932e-09,5.194420249640418813e-09,5.713862274604460694e-09,6.233304299568502575e-09,6.752746324532544457e-09,7.272188349496586338e-09,7.791630374460629047e-09,8.311072399424671755e-09,8.830514424388714463e-09,9.349956449352757172e-09,9.869398474316799880e-09,1.038884049928084259e-08,1.090828252424488530e-08,1.142772454920892801e-08,1.194716657417297071e-08,1.246660859913701342e-08,1.298605062410105613e-08,1.350549264906509884e-08,1.402493467402914155e-08,1.454437669899318426e-08,1.506381872395722697e-08,1.558326074892127133e-08,1.610270277388531569e-08,1.662214479884936005e-08,1.714158682381340442e-08,1.766102884877744878e-08,1.818047087374149314e-08,1.869991289870553750e-08,1.921935492366958187e-08,1.973879694863362623e-08,2.025823897359767059e-08,2.077768099856171496e-08,2.129712302352575932e-08,2.181656504848980368e-08,2.233600707345384804e-08,2.285544909841789241e-08,2.337489112338193677e-08,2.389433314834598113e-08,2.441377517331002550e-08,2.493321719827406986e-08,2.545265922323811422e-08,2.597210124820215858e-08,2.649154327316620295e-08,2.701098529813024731e-08,2.753042732309429167e-08,2.804986934805833604e-08,2.856931137302238040e-08,2.908875339798642476e-08,2.960819542295046912e-08,3.012763744791451349e-08,3.064707947287855454e-08,3.116652149784259560e-08,3.168596352280663665e-08,3.220540554777067770e-08,3.272484757273471876e-08 +0.000000000000000000e+00,-5.607325323390628581e-10,-1.121465064678125716e-09,-1.682197597017188678e-09,-2.242930129356251846e-09,-2.803662661695315014e-09,-3.364395194034378183e-09,-3.925127726373440937e-09,-4.485860258712503692e-09,-5.046592791051566447e-09,-5.607325323390629201e-09,-6.168057855729691956e-09,-6.728790388068754711e-09,-7.289522920407817465e-09,-7.850255452746880220e-09,-8.410987985085942975e-09,-8.971720517425005730e-09,-9.532453049764068484e-09,-1.009318558210313124e-08,-1.065391811444219399e-08,-1.121465064678125675e-08,-1.177538317912031950e-08,-1.233611571145938226e-08,-1.289684824379844501e-08,-1.345758077613750777e-08,-1.401831330847657052e-08,-1.457904584081563328e-08,-1.513977837315469769e-08,-1.570051090549376375e-08,-1.626124343783282981e-08,-1.682197597017189588e-08,-1.738270850251096194e-08,-1.794344103485002800e-08,-1.850417356718909407e-08,-1.906490609952816013e-08,-1.962563863186722619e-08,-2.018637116420629226e-08,-2.074710369654535832e-08,-2.130783622888442438e-08,-2.186856876122349045e-08,-2.242930129356255651e-08,-2.299003382590162257e-08,-2.355076635824068864e-08,-2.411149889057975470e-08,-2.467223142291882076e-08,-2.523296395525788683e-08,-2.579369648759695289e-08,-2.635442901993601895e-08,-2.691516155227508502e-08,-2.747589408461415108e-08,-2.803662661695321714e-08,-2.859735914929228321e-08,-2.915809168163134927e-08,-2.971882421397041533e-08,-3.027955674630948140e-08,-3.084028927864854746e-08,-3.140102181098761352e-08,-3.196175434332667959e-08,-3.252248687566574565e-08,-3.308321940800481172e-08,-3.364395194034387778e-08,-3.420468447268294384e-08,-3.476541700502200991e-08,-3.532614953736107597e-08 +0.000000000000000000e+00,-5.319636737883735745e-10,-1.063927347576747149e-09,-1.595891021365120723e-09,-2.127854695153494298e-09,-2.659818368941868079e-09,-3.191782042730241860e-09,-3.723745716518615642e-09,-4.255709390306989423e-09,-4.787673064095363204e-09,-5.319636737883736986e-09,-5.851600411672110767e-09,-6.383564085460484548e-09,-6.915527759248858329e-09,-7.447491433037232111e-09,-7.979455106825605892e-09,-8.511418780613980500e-09,-9.043382454402355109e-09,-9.575346128190729717e-09,-1.010730980197910433e-08,-1.063927347576747893e-08,-1.117123714955585354e-08,-1.170320082334422815e-08,-1.223516449713260276e-08,-1.276712817092097737e-08,-1.329909184470935198e-08,-1.383105551849772658e-08,-1.436301919228610119e-08,-1.489498286607447580e-08,-1.542694653986285041e-08,-1.595891021365122502e-08,-1.649087388743959963e-08,-1.702283756122797424e-08,-1.755480123501634884e-08,-1.808676490880472345e-08,-1.861872858259309806e-08,-1.915069225638147267e-08,-1.968265593016984728e-08,-2.021461960395822189e-08,-2.074658327774659649e-08,-2.127854695153497110e-08,-2.181051062532334571e-08,-2.234247429911172032e-08,-2.287443797290009493e-08,-2.340640164668846954e-08,-2.393836532047684415e-08,-2.447032899426521875e-08,-2.500229266805359336e-08,-2.553425634184196797e-08,-2.606622001563034258e-08,-2.659818368941871719e-08,-2.713014736320709180e-08,-2.766211103699546640e-08,-2.819407471078384101e-08,-2.872603838457221562e-08,-2.925800205836059023e-08,-2.978996573214896484e-08,-3.032192940593734276e-08,-3.085389307972572067e-08,-3.138585675351409859e-08,-3.191782042730247651e-08,-3.244978410109085442e-08,-3.298174777487923234e-08,-3.351371144866761026e-08 +0.000000000000000000e+00,-5.194420250258368225e-10,-1.038884050051673645e-09,-1.558326075077510468e-09,-2.077768100103347290e-09,-2.597210125129184113e-09,-3.116652150155020935e-09,-3.636094175180857758e-09,-4.155536200206694580e-09,-4.674978225232530989e-09,-5.194420250258367398e-09,-5.713862275284203807e-09,-6.233304300310040216e-09,-6.752746325335876625e-09,-7.272188350361713034e-09,-7.791630375387549443e-09,-8.311072400413385852e-09,-8.830514425439222261e-09,-9.349956450465058670e-09,-9.869398475490895079e-09,-1.038884050051673149e-08,-1.090828252554256790e-08,-1.142772455056840431e-08,-1.194716657559424071e-08,-1.246660860062007712e-08,-1.298605062564591353e-08,-1.350549265067174994e-08,-1.402493467569758635e-08,-1.454437670072342276e-08,-1.506381872574926082e-08,-1.558326075077509889e-08,-1.610270277580093695e-08,-1.662214480082677501e-08,-1.714158682585261308e-08,-1.766102885087845114e-08,-1.818047087590428920e-08,-1.869991290093012727e-08,-1.921935492595596533e-08,-1.973879695098180339e-08,-2.025823897600764146e-08,-2.077768100103347952e-08,-2.129712302605931758e-08,-2.181656505108515565e-08,-2.233600707611099371e-08,-2.285544910113683177e-08,-2.337489112616266984e-08,-2.389433315118850790e-08,-2.441377517621434596e-08,-2.493321720124018403e-08,-2.545265922626602209e-08,-2.597210125129186015e-08,-2.649154327631769822e-08,-2.701098530134353628e-08,-2.753042732636937434e-08,-2.804986935139521241e-08,-2.856931137642105047e-08,-2.908875340144688853e-08,-2.960819542647272660e-08,-3.012763745149856135e-08,-3.064707947652439610e-08,-3.116652150155023086e-08,-3.168596352657606561e-08,-3.220540555160190037e-08,-3.272484757662773512e-08 +0.000000000000000000e+00,5.998855293805036826e-10,1.199771058761007365e-09,1.799656588141511151e-09,2.399542117522015144e-09,2.999427646902519137e-09,3.599313176283023130e-09,4.199198705663527536e-09,4.799084235044031943e-09,5.398969764424536349e-09,5.998855293805040755e-09,6.598740823185545162e-09,7.198626352566049568e-09,7.798511881946553975e-09,8.398397411327058381e-09,8.998282940707562788e-09,9.598168470088067194e-09,1.019805399946857160e-08,1.079793952884907601e-08,1.139782505822958041e-08,1.199771058761008482e-08,1.259759611699058923e-08,1.319748164637109363e-08,1.379736717575159804e-08,1.439725270513210245e-08,1.499713823451260851e-08,1.559702376389311457e-08,1.619690929327362063e-08,1.679679482265412669e-08,1.739668035203463275e-08,1.799656588141513881e-08,1.859645141079564487e-08,1.919633694017615093e-08,1.979622246955665699e-08,2.039610799893716305e-08,2.099599352831766911e-08,2.159587905769817517e-08,2.219576458707868124e-08,2.279565011645918730e-08,2.339553564583969336e-08,2.399542117522019942e-08,2.459530670460070548e-08,2.519519223398121154e-08,2.579507776336171760e-08,2.639496329274222366e-08,2.699484882212272972e-08,2.759473435150323578e-08,2.819461988088374184e-08,2.879450541026424790e-08,2.939439093964475396e-08,2.999427646902525672e-08,3.059416199840575947e-08,3.119404752778626222e-08,3.179393305716676497e-08,3.239381858654726772e-08,3.299370411592777048e-08,3.359358964530827323e-08,3.419347517468877598e-08,3.479336070406927873e-08,3.539324623344978149e-08,3.599313176283028424e-08,3.659301729221078699e-08,3.719290282159128974e-08,3.779278835097179249e-08 +0.000000000000000000e+00,5.799948530737025248e-10,1.159989706147405050e-09,1.739984559221107574e-09,2.319979412294810099e-09,2.899974265368512417e-09,3.479969118442214735e-09,4.059963971515917053e-09,4.639958824589619371e-09,5.219953677663321689e-09,5.799948530737024007e-09,6.379943383810726325e-09,6.959938236884428643e-09,7.539933089958130134e-09,8.119927943031832452e-09,8.699922796105534770e-09,9.279917649179237088e-09,9.859912502252939406e-09,1.043990735532664172e-08,1.101990220840034404e-08,1.159989706147404636e-08,1.217989191454774868e-08,1.275988676762145100e-08,1.333988162069515331e-08,1.391987647376885563e-08,1.449987132684255795e-08,1.507986617991626027e-08,1.565986103298996259e-08,1.623985588606366490e-08,1.681985073913736722e-08,1.739984559221106954e-08,1.797984044528477186e-08,1.855983529835847418e-08,1.913983015143217649e-08,1.971982500450587881e-08,2.029981985757958113e-08,2.087981471065328345e-08,2.145980956372698577e-08,2.203980441680068808e-08,2.261979926987439040e-08,2.319979412294809272e-08,2.377978897602179504e-08,2.435978382909549735e-08,2.493977868216919967e-08,2.551977353524290199e-08,2.609976838831660431e-08,2.667976324139030663e-08,2.725975809446400894e-08,2.783975294753771126e-08,2.841974780061141358e-08,2.899974265368511590e-08,2.957973750675881822e-08,3.015973235983252053e-08,3.073972721290622285e-08,3.131972206597992517e-08,3.189971691905362749e-08,3.247971177212732981e-08,3.305970662520103212e-08,3.363970147827473444e-08,3.421969633134843676e-08,3.479969118442213908e-08,3.537968603749584140e-08,3.595968089056954371e-08,3.653967574364324603e-08 +0.000000000000000000e+00,5.687837905361871614e-10,1.137567581072374323e-09,1.706351371608561588e-09,2.275135162144749059e-09,2.843918952680936531e-09,3.412702743217124002e-09,3.981486533753311474e-09,4.550270324289498946e-09,5.119054114825686417e-09,5.687837905361873889e-09,6.256621695898061360e-09,6.825405486434248832e-09,7.394189276970436304e-09,7.962973067506624602e-09,8.531756858042812074e-09,9.100540648578999546e-09,9.669324439115187017e-09,1.023810822965137449e-08,1.080689202018756196e-08,1.137567581072374943e-08,1.194445960125993690e-08,1.251324339179612438e-08,1.308202718233231185e-08,1.365081097286849932e-08,1.421959476340468679e-08,1.478837855394087426e-08,1.535716234447706173e-08,1.592594613501324920e-08,1.649472992554943668e-08,1.706351371608562415e-08,1.763229750662181162e-08,1.820108129715799909e-08,1.876986508769418656e-08,1.933864887823037403e-08,1.990743266876656151e-08,2.047621645930274898e-08,2.104500024983893645e-08,2.161378404037512392e-08,2.218256783091131139e-08,2.275135162144749886e-08,2.332013541198368634e-08,2.388891920251987381e-08,2.445770299305606128e-08,2.502648678359224875e-08,2.559527057412843622e-08,2.616405436466462369e-08,2.673283815520081117e-08,2.730162194573699864e-08,2.787040573627318611e-08,2.843918952680937358e-08,2.900797331734556105e-08,2.957675710788174852e-08,3.014554089841793269e-08,3.071432468895411685e-08,3.128310847949030101e-08,3.185189227002648517e-08,3.242067606056266934e-08,3.298945985109885350e-08,3.355824364163503766e-08,3.412702743217122183e-08,3.469581122270740599e-08,3.526459501324359015e-08,3.583337880377977431e-08 +0.000000000000000000e+00,-5.998855294410598175e-10,-1.199771058882119635e-09,-1.799656588323179453e-09,-2.399542117764239270e-09,-2.999427647205299088e-09,-3.599313176646358905e-09,-4.199198706087418723e-09,-4.799084235528478540e-09,-5.398969764969538358e-09,-5.998855294410598175e-09,-6.598740823851657993e-09,-7.198626353292717810e-09,-7.798511882733776801e-09,-8.398397412174835791e-09,-8.998282941615894781e-09,-9.598168471056953772e-09,-1.019805400049801276e-08,-1.079793952993907175e-08,-1.139782505938013074e-08,-1.199771058882118973e-08,-1.259759611826224872e-08,-1.319748164770330771e-08,-1.379736717714436670e-08,-1.439725270658542569e-08,-1.499713823602648468e-08,-1.559702376546754367e-08,-1.619690929490860267e-08,-1.679679482434966166e-08,-1.739668035379072065e-08,-1.799656588323177964e-08,-1.859645141267283863e-08,-1.919633694211389762e-08,-1.979622247155495661e-08,-2.039610800099601560e-08,-2.099599353043707459e-08,-2.159587905987813358e-08,-2.219576458931919257e-08,-2.279565011876025156e-08,-2.339553564820131055e-08,-2.399542117764236954e-08,-2.459530670708342853e-08,-2.519519223652448752e-08,-2.579507776596554651e-08,-2.639496329540660550e-08,-2.699484882484766449e-08,-2.759473435428872348e-08,-2.819461988372978247e-08,-2.879450541317084146e-08,-2.939439094261190045e-08,-2.999427647205296275e-08,-3.059416200149402836e-08,-3.119404753093509397e-08,-3.179393306037615958e-08,-3.239381858981722518e-08,-3.299370411925829079e-08,-3.359358964869935640e-08,-3.419347517814042201e-08,-3.479336070758148761e-08,-3.539324623702255322e-08,-3.599313176646361883e-08,-3.659301729590468444e-08,-3.719290282534575005e-08,-3.779278835478681565e-08 +0.000000000000000000e+00,-5.799948531392880212e-10,-1.159989706278576042e-09,-1.739984559417864064e-09,-2.319979412557152085e-09,-2.899974265696439899e-09,-3.479969118835727713e-09,-4.059963971975015528e-09,-4.639958825114303342e-09,-5.219953678253591157e-09,-5.799948531392878971e-09,-6.379943384532166785e-09,-6.959938237671454600e-09,-7.539933090810741587e-09,-8.119927943950029401e-09,-8.699922797089317216e-09,-9.279917650228605030e-09,-9.859912503367892845e-09,-1.043990735650718066e-08,-1.101990220964646847e-08,-1.159989706278575629e-08,-1.217989191592504410e-08,-1.275988676906433192e-08,-1.333988162220361973e-08,-1.391987647534290755e-08,-1.449987132848219536e-08,-1.507986618162148317e-08,-1.565986103476077099e-08,-1.623985588790005880e-08,-1.681985074103934662e-08,-1.739984559417863443e-08,-1.797984044731792225e-08,-1.855983530045721006e-08,-1.913983015359649787e-08,-1.971982500673578569e-08,-2.029981985987507350e-08,-2.087981471301436132e-08,-2.145980956615364913e-08,-2.203980441929293695e-08,-2.261979927243222476e-08,-2.319979412557151258e-08,-2.377978897871080039e-08,-2.435978383185008820e-08,-2.493977868498937602e-08,-2.551977353812866383e-08,-2.609976839126795165e-08,-2.667976324440723946e-08,-2.725975809754652728e-08,-2.783975295068581509e-08,-2.841974780382510290e-08,-2.899974265696439072e-08,-2.957973751010367853e-08,-3.015973236324296635e-08,-3.073972721638225416e-08,-3.131972206952154198e-08,-3.189971692266082979e-08,-3.247971177580011761e-08,-3.305970662893940542e-08,-3.363970148207869323e-08,-3.421969633521798105e-08,-3.479969118835726886e-08,-3.537968604149655668e-08,-3.595968089463584449e-08,-3.653967574777513231e-08 +0.000000000000000000e+00,-5.687837905894157168e-10,-1.137567581178831434e-09,-1.706351371768247150e-09,-2.275135162357662867e-09,-2.843918952947078584e-09,-3.412702743536494301e-09,-3.981486534125910018e-09,-4.550270324715325735e-09,-5.119054115304741451e-09,-5.687837905894157168e-09,-6.256621696483572885e-09,-6.825405487072988602e-09,-7.394189277662404319e-09,-7.962973068251820036e-09,-8.531756858841236580e-09,-9.100540649430653124e-09,-9.669324440020069668e-09,-1.023810823060948621e-08,-1.080689202119890276e-08,-1.137567581178831930e-08,-1.194445960237773584e-08,-1.251324339296715239e-08,-1.308202718355656893e-08,-1.365081097414598548e-08,-1.421959476473540202e-08,-1.478837855532481856e-08,-1.535716234591423511e-08,-1.592594613650365000e-08,-1.649472992709306489e-08,-1.706351371768247978e-08,-1.763229750827189467e-08,-1.820108129886130956e-08,-1.876986508945072445e-08,-1.933864888004013934e-08,-1.990743267062955423e-08,-2.047621646121896911e-08,-2.104500025180838400e-08,-2.161378404239779889e-08,-2.218256783298721378e-08,-2.275135162357662867e-08,-2.332013541416604356e-08,-2.388891920475545845e-08,-2.445770299534487334e-08,-2.502648678593428823e-08,-2.559527057652370312e-08,-2.616405436711311801e-08,-2.673283815770253290e-08,-2.730162194829194779e-08,-2.787040573888136268e-08,-2.843918952947077757e-08,-2.900797332006019246e-08,-2.957675711064960735e-08,-3.014554090123902224e-08,-3.071432469182843713e-08,-3.128310848241785202e-08,-3.185189227300726691e-08,-3.242067606359668180e-08,-3.298945985418609669e-08,-3.355824364477551158e-08,-3.412702743536492647e-08,-3.469581122595434136e-08,-3.526459501654375625e-08,-3.583337880713317114e-08 +0.000000000000000000e+00,6.305843339932386672e-10,1.261168667986477334e-09,1.891753001979716105e-09,2.522337335972955082e-09,3.152921669966194060e-09,3.783506003959433037e-09,4.414090337952672428e-09,5.044674671945911819e-09,5.675259005939151210e-09,6.305843339932390601e-09,6.936427673925629992e-09,7.567012007918869383e-09,8.197596341912108774e-09,8.828180675905348165e-09,9.458765009898587556e-09,1.008934934389182695e-08,1.071993367788506634e-08,1.135051801187830573e-08,1.198110234587154512e-08,1.261168667986478451e-08,1.324227101385802390e-08,1.387285534785126329e-08,1.450343968184450268e-08,1.513402401583774208e-08,1.576460834983098312e-08,1.639519268382422417e-08,1.702577701781746521e-08,1.765636135181070626e-08,1.828694568580394730e-08,1.891753001979718835e-08,1.954811435379042939e-08,2.017869868778367044e-08,2.080928302177691148e-08,2.143986735577015253e-08,2.207045168976339357e-08,2.270103602375663462e-08,2.333162035774987566e-08,2.396220469174311671e-08,2.459278902573635776e-08,2.522337335972959880e-08,2.585395769372283985e-08,2.648454202771608089e-08,2.711512636170932194e-08,2.774571069570256298e-08,2.837629502969580403e-08,2.900687936368904507e-08,2.963746369768228612e-08,3.026804803167553047e-08,3.089863236566877483e-08,3.152921669966201918e-08,3.215980103365526353e-08,3.279038536764850789e-08,3.342096970164175224e-08,3.405155403563499660e-08,3.468213836962824095e-08,3.531272270362148530e-08,3.594330703761472966e-08,3.657389137160797401e-08,3.720447570560121837e-08,3.783506003959446272e-08,3.846564437358770708e-08,3.909622870758095143e-08,3.972681304157419578e-08 +0.000000000000000000e+00,6.150123449199464239e-10,1.230024689839892848e-09,1.845037034759839272e-09,2.460049379679785696e-09,3.075061724599731913e-09,3.690074069519678130e-09,4.305086414439624347e-09,4.920098759359570564e-09,5.535111104279516782e-09,6.150123449199462999e-09,6.765135794119409216e-09,7.380148139039355433e-09,7.995160483959301650e-09,8.610172828879248695e-09,9.225185173799195739e-09,9.840197518719142783e-09,1.045520986363908983e-08,1.107022220855903687e-08,1.168523455347898392e-08,1.230024689839893096e-08,1.291525924331887800e-08,1.353027158823882505e-08,1.414528393315877209e-08,1.476029627807871914e-08,1.537530862299866453e-08,1.599032096791860992e-08,1.660533331283855531e-08,1.722034565775850070e-08,1.783535800267844609e-08,1.845037034759839148e-08,1.906538269251833687e-08,1.968039503743828226e-08,2.029540738235822765e-08,2.091041972727817304e-08,2.152543207219811843e-08,2.214044441711806382e-08,2.275545676203800921e-08,2.337046910695795460e-08,2.398548145187789999e-08,2.460049379679784538e-08,2.521550614171779077e-08,2.583051848663773616e-08,2.644553083155768155e-08,2.706054317647762694e-08,2.767555552139757233e-08,2.829056786631751772e-08,2.890558021123746311e-08,2.952059255615740850e-08,3.013560490107735389e-08,3.075061724599730259e-08,3.136562959091725128e-08,3.198064193583719998e-08,3.259565428075714868e-08,3.321066662567709738e-08,3.382567897059704608e-08,3.444069131551699478e-08,3.505570366043694348e-08,3.567071600535689218e-08,3.628572835027684087e-08,3.690074069519678957e-08,3.751575304011673827e-08,3.813076538503668697e-08,3.874577772995663567e-08 +0.000000000000000000e+00,6.056853524793389218e-10,1.211370704958677844e-09,1.817056057438016662e-09,2.422741409917355274e-09,3.028426762396693885e-09,3.634112114876032497e-09,4.239797467355371109e-09,4.845482819834709720e-09,5.451168172314048332e-09,6.056853524793386944e-09,6.662538877272725555e-09,7.268224229752064167e-09,7.873909582231401952e-09,8.479594934710740563e-09,9.085280287190079175e-09,9.690965639669417786e-09,1.029665099214875640e-08,1.090233634462809501e-08,1.150802169710743362e-08,1.211370704958677223e-08,1.271939240206611084e-08,1.332507775454544946e-08,1.393076310702478807e-08,1.453644845950412668e-08,1.514213381198346529e-08,1.574781916446280390e-08,1.635350451694214251e-08,1.695918986942148113e-08,1.756487522190081974e-08,1.817056057438015835e-08,1.877624592685949696e-08,1.938193127933883557e-08,1.998761663181817418e-08,2.059330198429751280e-08,2.119898733677685141e-08,2.180467268925619002e-08,2.241035804173552863e-08,2.301604339421486724e-08,2.362172874669420585e-08,2.422741409917354447e-08,2.483309945165288308e-08,2.543878480413222169e-08,2.604447015661156030e-08,2.665015550909089891e-08,2.725584086157023752e-08,2.786152621404957614e-08,2.846721156652891475e-08,2.907289691900825336e-08,2.967858227148759197e-08,3.028426762396693058e-08,3.088995297644627250e-08,3.149563832892561442e-08,3.210132368140495634e-08,3.270700903388429826e-08,3.331269438636364018e-08,3.391837973884298211e-08,3.452406509132232403e-08,3.512975044380166595e-08,3.573543579628100787e-08,3.634112114876034979e-08,3.694680650123969171e-08,3.755249185371903363e-08,3.815817720619837555e-08 +0.000000000000000000e+00,-6.305843340428918378e-10,-1.261168668085783676e-09,-1.891753002128675617e-09,-2.522337336171567765e-09,-3.152921670214459913e-09,-3.783506004257352061e-09,-4.414090338300243795e-09,-5.044674672343135530e-09,-5.675259006386027264e-09,-6.305843340428918999e-09,-6.936427674471810733e-09,-7.567012008514702468e-09,-8.197596342557594202e-09,-8.828180676600485937e-09,-9.458765010643377671e-09,-1.008934934468626941e-08,-1.071993367872916114e-08,-1.135051801277205287e-08,-1.198110234681494461e-08,-1.261168668085783634e-08,-1.324227101490072808e-08,-1.387285534894361981e-08,-1.450343968298651155e-08,-1.513402401702940163e-08,-1.576460835107229005e-08,-1.639519268511517848e-08,-1.702577701915806690e-08,-1.765636135320095533e-08,-1.828694568724384376e-08,-1.891753002128673218e-08,-1.954811435532962061e-08,-2.017869868937250903e-08,-2.080928302341539746e-08,-2.143986735745828588e-08,-2.207045169150117431e-08,-2.270103602554406274e-08,-2.333162035958695116e-08,-2.396220469362983959e-08,-2.459278902767272801e-08,-2.522337336171561644e-08,-2.585395769575850486e-08,-2.648454202980139329e-08,-2.711512636384428172e-08,-2.774571069788717014e-08,-2.837629503193005857e-08,-2.900687936597294699e-08,-2.963746370001583542e-08,-3.026804803405872384e-08,-3.089863236810161227e-08,-3.152921670214450070e-08,-3.215980103618738912e-08,-3.279038537023027755e-08,-3.342096970427316597e-08,-3.405155403831605440e-08,-3.468213837235894282e-08,-3.531272270640183125e-08,-3.594330704044471968e-08,-3.657389137448760810e-08,-3.720447570853049653e-08,-3.783506004257338495e-08,-3.846564437661627338e-08,-3.909622871065916180e-08,-3.972681304470205023e-08 +0.000000000000000000e+00,-6.150123449751876132e-10,-1.230024689950375226e-09,-1.845037034925562840e-09,-2.460049379900750453e-09,-3.075061724875938273e-09,-3.690074069851126093e-09,-4.305086414826313913e-09,-4.920098759801501733e-09,-5.535111104776689553e-09,-6.150123449751877373e-09,-6.765135794727065193e-09,-7.380148139702253013e-09,-7.995160484677441660e-09,-8.610172829652629480e-09,-9.225185174627817300e-09,-9.840197519603005120e-09,-1.045520986457819294e-08,-1.107022220955338076e-08,-1.168523455452856858e-08,-1.230024689950375640e-08,-1.291525924447894422e-08,-1.353027158945413204e-08,-1.414528393442931986e-08,-1.476029627940450768e-08,-1.537530862437969550e-08,-1.599032096935488332e-08,-1.660533331433007114e-08,-1.722034565930525896e-08,-1.783535800428044678e-08,-1.845037034925563460e-08,-1.906538269423082242e-08,-1.968039503920601024e-08,-2.029540738418119806e-08,-2.091041972915638588e-08,-2.152543207413157370e-08,-2.214044441910676152e-08,-2.275545676408194934e-08,-2.337046910905713716e-08,-2.398548145403232498e-08,-2.460049379900751280e-08,-2.521550614398270062e-08,-2.583051848895788844e-08,-2.644553083393307626e-08,-2.706054317890826408e-08,-2.767555552388345190e-08,-2.829056786885863972e-08,-2.890558021383382754e-08,-2.952059255880901536e-08,-3.013560490378419987e-08,-3.075061724875938438e-08,-3.136562959373456889e-08,-3.198064193870975341e-08,-3.259565428368493792e-08,-3.321066662866012243e-08,-3.382567897363530694e-08,-3.444069131861049145e-08,-3.505570366358567596e-08,-3.567071600856086047e-08,-3.628572835353604498e-08,-3.690074069851122950e-08,-3.751575304348641401e-08,-3.813076538846159852e-08,-3.874577773343678303e-08 +0.000000000000000000e+00,-6.056853525229016650e-10,-1.211370705045803330e-09,-1.817056057568704995e-09,-2.422741410091606660e-09,-3.028426762614508325e-09,-3.634112115137409990e-09,-4.239797467660312069e-09,-4.845482820183214147e-09,-5.451168172706116226e-09,-6.056853525229018305e-09,-6.662538877751920383e-09,-7.268224230274822462e-09,-7.873909582797724540e-09,-8.479594935320627446e-09,-9.085280287843530352e-09,-9.690965640366433258e-09,-1.029665099288933616e-08,-1.090233634541223907e-08,-1.150802169793514198e-08,-1.211370705045804488e-08,-1.271939240298094779e-08,-1.332507775550385069e-08,-1.393076310802675360e-08,-1.453644846054965650e-08,-1.514213381307256106e-08,-1.574781916559546562e-08,-1.635350451811837018e-08,-1.695918987064127474e-08,-1.756487522316417931e-08,-1.817056057568708387e-08,-1.877624592820998843e-08,-1.938193128073289299e-08,-1.998761663325579755e-08,-2.059330198577870211e-08,-2.119898733830160667e-08,-2.180467269082451123e-08,-2.241035804334741579e-08,-2.301604339587032035e-08,-2.362172874839322491e-08,-2.422741410091612947e-08,-2.483309945343903403e-08,-2.543878480596193859e-08,-2.604447015848484315e-08,-2.665015551100774771e-08,-2.725584086353065227e-08,-2.786152621605355683e-08,-2.846721156857646139e-08,-2.907289692109936595e-08,-2.967858227362227051e-08,-3.028426762614517507e-08,-3.088995297866807963e-08,-3.149563833119098419e-08,-3.210132368371388875e-08,-3.270700903623679331e-08,-3.331269438875969787e-08,-3.391837974128260243e-08,-3.452406509380550699e-08,-3.512975044632841155e-08,-3.573543579885131611e-08,-3.634112115137422067e-08,-3.694680650389712523e-08,-3.755249185642002979e-08,-3.815817720894293435e-08 +0.000000000000000000e+00,6.568338976875238476e-10,1.313667795375047695e-09,1.970501693062571750e-09,2.627335590750095804e-09,3.284169488437619858e-09,3.941003386125143499e-09,4.597837283812667140e-09,5.254671181500190781e-09,5.911505079187714422e-09,6.568338976875238062e-09,7.225172874562761703e-09,7.882006772250285344e-09,8.538840669937809812e-09,9.195674567625334280e-09,9.852508465312858748e-09,1.050934236300038322e-08,1.116617626068790768e-08,1.182301015837543215e-08,1.247984405606295662e-08,1.313667795375048109e-08,1.379351185143800556e-08,1.445034574912553002e-08,1.510717964681305449e-08,1.576401354450058061e-08,1.642084744218810674e-08,1.707768133987563286e-08,1.773451523756315898e-08,1.839134913525068510e-08,1.904818303293821123e-08,1.970501693062573735e-08,2.036185082831326347e-08,2.101868472600078959e-08,2.167551862368831572e-08,2.233235252137584184e-08,2.298918641906336796e-08,2.364602031675089408e-08,2.430285421443842020e-08,2.495968811212594633e-08,2.561652200981347245e-08,2.627335590750099857e-08,2.693018980518852469e-08,2.758702370287605082e-08,2.824385760056357694e-08,2.890069149825110306e-08,2.955752539593862918e-08,3.021435929362615531e-08,3.087119319131367812e-08,3.152802708900120093e-08,3.218486098668872375e-08,3.284169488437624656e-08,3.349852878206376937e-08,3.415536267975129219e-08,3.481219657743881500e-08,3.546903047512633781e-08,3.612586437281386063e-08,3.678269827050138344e-08,3.743953216818890626e-08,3.809636606587642907e-08,3.875319996356395188e-08,3.941003386125147470e-08,4.006686775893899751e-08,4.072370165662652032e-08,4.138053555431404314e-08 +0.000000000000000000e+00,6.435975191244382613e-10,1.287195038248876523e-09,1.930792557373314784e-09,2.574390076497753045e-09,3.217987595622191307e-09,3.861585114746629568e-09,4.505182633871067416e-09,5.148780152995505263e-09,5.792377672119943111e-09,6.435975191244380959e-09,7.079572710368818807e-09,7.723170229493257481e-09,8.366767748617696156e-09,9.010365267742134831e-09,9.653962786866573506e-09,1.029756030599101218e-08,1.094115782511545086e-08,1.158475534423988953e-08,1.222835286336432821e-08,1.287195038248876688e-08,1.351554790161320556e-08,1.415914542073764423e-08,1.480274293986208291e-08,1.544634045898652158e-08,1.608993797811096191e-08,1.673353549723540224e-08,1.737713301635984257e-08,1.802073053548428290e-08,1.866432805460872323e-08,1.930792557373316356e-08,1.995152309285760389e-08,2.059512061198204421e-08,2.123871813110648454e-08,2.188231565023092487e-08,2.252591316935536520e-08,2.316951068847980553e-08,2.381310820760424586e-08,2.445670572672868619e-08,2.510030324585312652e-08,2.574390076497756685e-08,2.638749828410200718e-08,2.703109580322644751e-08,2.767469332235088784e-08,2.831829084147532817e-08,2.896188836059976849e-08,2.960548587972420882e-08,3.024908339884864915e-08,3.089268091797308948e-08,3.153627843709752981e-08,3.217987595622197014e-08,3.282347347534641047e-08,3.346707099447085080e-08,3.411066851359529113e-08,3.475426603271973146e-08,3.539786355184417179e-08,3.604146107096861212e-08,3.668505859009305245e-08,3.732865610921749278e-08,3.797225362834193310e-08,3.861585114746637343e-08,3.925944866659081376e-08,3.990304618571525409e-08,4.054664370483969442e-08 +0.000000000000000000e+00,6.355986637840947566e-10,1.271197327568189513e-09,1.906795991352284166e-09,2.542394655136378613e-09,3.177993318920473059e-09,3.813591982704567506e-09,4.449190646488662366e-09,5.084789310272757226e-09,5.720387974056852086e-09,6.355986637840946946e-09,6.991585301625041806e-09,7.627183965409136666e-09,8.262782629193231526e-09,8.898381292977326386e-09,9.533979956761421246e-09,1.016957862054551611e-08,1.080517728432961097e-08,1.144077594811370583e-08,1.207637461189780069e-08,1.271197327568189555e-08,1.334757193946599041e-08,1.398317060325008527e-08,1.461876926703418013e-08,1.525436793081827664e-08,1.588996659460237316e-08,1.652556525838646967e-08,1.716116392217056618e-08,1.779676258595466270e-08,1.843236124973875921e-08,1.906795991352285573e-08,1.970355857730695224e-08,2.033915724109104876e-08,2.097475590487514527e-08,2.161035456865924178e-08,2.224595323244333830e-08,2.288155189622743481e-08,2.351715056001153133e-08,2.415274922379562784e-08,2.478834788757972436e-08,2.542394655136382087e-08,2.605954521514791739e-08,2.669514387893201390e-08,2.733074254271611041e-08,2.796634120650020693e-08,2.860193987028430344e-08,2.923753853406839996e-08,2.987313719785249647e-08,3.050873586163659299e-08,3.114433452542068950e-08,3.177993318920478601e-08,3.241553185298888253e-08,3.305113051677297904e-08,3.368672918055707556e-08,3.432232784434117207e-08,3.495792650812526859e-08,3.559352517190936510e-08,3.622912383569346162e-08,3.686472249947755813e-08,3.750032116326165464e-08,3.813591982704575116e-08,3.877151849082984767e-08,3.940711715461394419e-08,4.004271581839804070e-08 +0.000000000000000000e+00,-6.568338977254921615e-10,-1.313667795450984323e-09,-1.970501693176476588e-09,-2.627335590901969060e-09,-3.284169488627461531e-09,-3.941003386352954003e-09,-4.597837284078446061e-09,-5.254671181803938119e-09,-5.911505079529430177e-09,-6.568338977254922235e-09,-7.225172874980414294e-09,-7.882006772705906352e-09,-8.538840670431398410e-09,-9.195674568156890468e-09,-9.852508465882382526e-09,-1.050934236360787458e-08,-1.116617626133336664e-08,-1.182301015905885870e-08,-1.247984405678435076e-08,-1.313667795450984282e-08,-1.379351185223533487e-08,-1.445034574996082693e-08,-1.510717964768631899e-08,-1.576401354541180939e-08,-1.642084744313729980e-08,-1.707768134086279020e-08,-1.773451523858828061e-08,-1.839134913631377101e-08,-1.904818303403926141e-08,-1.970501693176475182e-08,-2.036185082949024222e-08,-2.101868472721573262e-08,-2.167551862494122303e-08,-2.233235252266671343e-08,-2.298918642039220384e-08,-2.364602031811769424e-08,-2.430285421584318464e-08,-2.495968811356867505e-08,-2.561652201129416545e-08,-2.627335590901965585e-08,-2.693018980674514626e-08,-2.758702370447063666e-08,-2.824385760219612707e-08,-2.890069149992161747e-08,-2.955752539764710787e-08,-3.021435929537259828e-08,-3.087119319309808537e-08,-3.152802709082357247e-08,-3.218486098854905956e-08,-3.284169488627454666e-08,-3.349852878400003375e-08,-3.415536268172552085e-08,-3.481219657945100794e-08,-3.546903047717649504e-08,-3.612586437490198213e-08,-3.678269827262746923e-08,-3.743953217035295632e-08,-3.809636606807844342e-08,-3.875319996580393051e-08,-3.941003386352941761e-08,-4.006686776125490470e-08,-4.072370165898039180e-08,-4.138053555670587889e-08 +0.000000000000000000e+00,-6.435975191682655989e-10,-1.287195038336531198e-09,-1.930792557504796797e-09,-2.574390076673062396e-09,-3.217987595841327994e-09,-3.861585115009593593e-09,-4.505182634177858779e-09,-5.148780153346123964e-09,-5.792377672514389149e-09,-6.435975191682654335e-09,-7.079572710850919520e-09,-7.723170230019185532e-09,-8.366767749187451545e-09,-9.010365268355717557e-09,-9.653962787523983570e-09,-1.029756030669224958e-08,-1.094115782586051559e-08,-1.158475534502878161e-08,-1.222835286419704762e-08,-1.287195038336531363e-08,-1.351554790253357964e-08,-1.415914542170184566e-08,-1.480274294087011167e-08,-1.544634046003837768e-08,-1.608993797920664535e-08,-1.673353549837491302e-08,-1.737713301754318068e-08,-1.802073053671144835e-08,-1.866432805587971602e-08,-1.930792557504798368e-08,-1.995152309421625135e-08,-2.059512061338451902e-08,-2.123871813255278668e-08,-2.188231565172105435e-08,-2.252591317088932202e-08,-2.316951069005758968e-08,-2.381310820922585735e-08,-2.445670572839412502e-08,-2.510030324756239268e-08,-2.574390076673066035e-08,-2.638749828589892802e-08,-2.703109580506719569e-08,-2.767469332423546335e-08,-2.831829084340373102e-08,-2.896188836257199869e-08,-2.960548588174026635e-08,-3.024908340090853402e-08,-3.089268092007680169e-08,-3.153627843924506935e-08,-3.217987595841333702e-08,-3.282347347758160469e-08,-3.346707099674987235e-08,-3.411066851591814002e-08,-3.475426603508640769e-08,-3.539786355425467535e-08,-3.604146107342294302e-08,-3.668505859259121069e-08,-3.732865611175947835e-08,-3.797225363092774602e-08,-3.861585115009601369e-08,-3.925944866926428136e-08,-3.990304618843254902e-08,-4.054664370760081669e-08 +0.000000000000000000e+00,-6.355986638175469746e-10,-1.271197327635093949e-09,-1.906795991452641027e-09,-2.542394655270188312e-09,-3.177993319087735597e-09,-3.813591982905282881e-09,-4.449190646722830580e-09,-5.084789310540378278e-09,-5.720387974357925977e-09,-6.355986638175473675e-09,-6.991585301993021373e-09,-7.627183965810569072e-09,-8.262782629628116770e-09,-8.898381293445664468e-09,-9.533979957263212167e-09,-1.016957862108075987e-08,-1.080517728489830756e-08,-1.144077594871585526e-08,-1.207637461253340296e-08,-1.271197327635095066e-08,-1.334757194016849836e-08,-1.398317060398604606e-08,-1.461876926780359375e-08,-1.525436793162114145e-08,-1.588996659543868915e-08,-1.652556525925623685e-08,-1.716116392307378455e-08,-1.779676258689133225e-08,-1.843236125070887994e-08,-1.906795991452642764e-08,-1.970355857834397534e-08,-2.033915724216152304e-08,-2.097475590597907074e-08,-2.161035456979661844e-08,-2.224595323361416613e-08,-2.288155189743171383e-08,-2.351715056124926153e-08,-2.415274922506680923e-08,-2.478834788888435693e-08,-2.542394655270190463e-08,-2.605954521651945232e-08,-2.669514388033700002e-08,-2.733074254415454772e-08,-2.796634120797209542e-08,-2.860193987178964312e-08,-2.923753853560719082e-08,-2.987313719942473521e-08,-3.050873586324227629e-08,-3.114433452705981737e-08,-3.177993319087735845e-08,-3.241553185469489953e-08,-3.305113051851244061e-08,-3.368672918232998169e-08,-3.432232784614752277e-08,-3.495792650996506385e-08,-3.559352517378260493e-08,-3.622912383760014601e-08,-3.686472250141768710e-08,-3.750032116523522818e-08,-3.813591982905276926e-08,-3.877151849287031034e-08,-3.940711715668785142e-08,-4.004271582050539250e-08 +0.000000000000000000e+00,6.701062006706361682e-10,1.340212401341272336e-09,2.010318602011908505e-09,2.680424802682544673e-09,3.350531003353180841e-09,4.020637204023817009e-09,4.690743404694453178e-09,5.360849605365089346e-09,6.030955806035725514e-09,6.701062006706361682e-09,7.371168207376997850e-09,8.041274408047634019e-09,8.711380608718270187e-09,9.381486809388906355e-09,1.005159301005954252e-08,1.072169921073017869e-08,1.139180541140081486e-08,1.206191161207145103e-08,1.273201781274208720e-08,1.340212401341272336e-08,1.407223021408335953e-08,1.474233641475399570e-08,1.541244261542463352e-08,1.608254881609527135e-08,1.675265501676590917e-08,1.742276121743654699e-08,1.809286741810718481e-08,1.876297361877782264e-08,1.943307981944846046e-08,2.010318602011909828e-08,2.077329222078973610e-08,2.144339842146037393e-08,2.211350462213101175e-08,2.278361082280164957e-08,2.345371702347228739e-08,2.412382322414292522e-08,2.479392942481356304e-08,2.546403562548420086e-08,2.613414182615483868e-08,2.680424802682547651e-08,2.747435422749611433e-08,2.814446042816675215e-08,2.881456662883738998e-08,2.948467282950802780e-08,3.015477903017866562e-08,3.082488523084930675e-08,3.149499143151994788e-08,3.216509763219058901e-08,3.283520383286123015e-08,3.350531003353187128e-08,3.417541623420251241e-08,3.484552243487315354e-08,3.551562863554379467e-08,3.618573483621443580e-08,3.685584103688507693e-08,3.752594723755571806e-08,3.819605343822635920e-08,3.886615963889700033e-08,3.953626583956764146e-08,4.020637204023828259e-08,4.087647824090892372e-08,4.154658444157956485e-08,4.221669064225020598e-08 +0.000000000000000000e+00,-6.701062007029828593e-10,-1.340212401405965719e-09,-2.010318602108948371e-09,-2.680424802811931024e-09,-3.350531003514913676e-09,-4.020637204217896742e-09,-4.690743404920879808e-09,-5.360849605623862874e-09,-6.030955806326845940e-09,-6.701062007029829006e-09,-7.371168207732812072e-09,-8.041274408435795139e-09,-8.711380609138777377e-09,-9.381486809841759616e-09,-1.005159301054474186e-08,-1.072169921124772409e-08,-1.139180541195070633e-08,-1.206191161265368857e-08,-1.273201781335667081e-08,-1.340212401405965305e-08,-1.407223021476263529e-08,-1.474233641546561753e-08,-1.541244261616859977e-08,-1.608254881687158035e-08,-1.675265501757456094e-08,-1.742276121827754152e-08,-1.809286741898052210e-08,-1.876297361968350269e-08,-1.943307982038648327e-08,-2.010318602108946386e-08,-2.077329222179244444e-08,-2.144339842249542503e-08,-2.211350462319840561e-08,-2.278361082390138620e-08,-2.345371702460436678e-08,-2.412382322530734737e-08,-2.479392942601032795e-08,-2.546403562671330853e-08,-2.613414182741628912e-08,-2.680424802811926970e-08,-2.747435422882225029e-08,-2.814446042952523087e-08,-2.881456663022821146e-08,-2.948467283093119204e-08,-3.015477903163417263e-08,-3.082488523233715321e-08,-3.149499143304013380e-08,-3.216509763374311438e-08,-3.283520383444609496e-08,-3.350531003514907555e-08,-3.417541623585205613e-08,-3.484552243655503672e-08,-3.551562863725801730e-08,-3.618573483796099789e-08,-3.685584103866397847e-08,-3.752594723936695906e-08,-3.819605344006993964e-08,-3.886615964077292022e-08,-3.953626584147590081e-08,-4.020637204217888139e-08,-4.087647824288186198e-08,-4.154658444358484256e-08,-4.221669064428782315e-08 +0.000000000000000000e+00,4.501794149061993420e-10,9.003588298123986841e-10,1.350538244718598026e-09,1.800717659624797368e-09,2.250897074530996503e-09,2.701076489437195639e-09,3.151255904343394774e-09,3.601435319249593909e-09,4.051614734155793044e-09,4.501794149061992180e-09,4.951973563968191315e-09,5.402152978874390450e-09,5.852332393780589585e-09,6.302511808686788721e-09,6.752691223592987856e-09,7.202870638499186991e-09,7.653050053405386126e-09,8.103229468311586089e-09,8.553408883217786051e-09,9.003588298123986014e-09,9.453767713030185976e-09,9.903947127936385938e-09,1.035412654284258590e-08,1.080430595774878586e-08,1.125448537265498583e-08,1.170466478756118579e-08,1.215484420246738575e-08,1.260502361737358571e-08,1.305520303227978568e-08,1.350538244718598564e-08,1.395556186209218560e-08,1.440574127699838556e-08,1.485592069190458552e-08,1.530610010681078549e-08,1.575627952171698545e-08,1.620645893662318541e-08,1.665663835152938537e-08,1.710681776643558534e-08,1.755699718134178530e-08,1.800717659624798526e-08,1.845735601115418522e-08,1.890753542606038519e-08,1.935771484096658515e-08,1.980789425587278511e-08,2.025807367077898507e-08,2.070825308568518504e-08,2.115843250059138500e-08,2.160861191549758496e-08,2.205879133040378492e-08,2.250897074530998489e-08,2.295915016021618485e-08,2.340932957512238481e-08,2.385950899002858477e-08,2.430968840493478474e-08,2.475986781984098470e-08,2.521004723474718466e-08,2.566022664965338462e-08,2.611040606455958459e-08,2.656058547946578455e-08,2.701076489437198451e-08,2.746094430927818447e-08,2.791112372418438444e-08,2.836130313909058440e-08 +0.000000000000000000e+00,1.202842618595690452e-10,2.405685237191380903e-10,3.608527855787071355e-10,4.811370474382761806e-10,6.014213092978452775e-10,7.217055711574143743e-10,8.419898330169834712e-10,9.622740948765525680e-10,1.082558356736121665e-09,1.202842618595690762e-09,1.323126880455259859e-09,1.443411142314828955e-09,1.563695404174398052e-09,1.683979666033967149e-09,1.804263927893536246e-09,1.924548189753105550e-09,2.044832451612674853e-09,2.165116713472244157e-09,2.285400975331813461e-09,2.405685237191382764e-09,2.525969499050952068e-09,2.646253760910521372e-09,2.766538022770090675e-09,2.886822284629659979e-09,3.007106546489229283e-09,3.127390808348798586e-09,3.247675070208367890e-09,3.367959332067937193e-09,3.488243593927506497e-09,3.608527855787075801e-09,3.728812117646645518e-09,3.849096379506215235e-09,3.969380641365784953e-09,4.089664903225354670e-09,4.209949165084924387e-09,4.330233426944494104e-09,4.450517688804063821e-09,4.570801950663633539e-09,4.691086212523203256e-09,4.811370474382772973e-09,4.931654736242342690e-09,5.051938998101912408e-09,5.172223259961482125e-09,5.292507521821051842e-09,5.412791783680621559e-09,5.533076045540191277e-09,5.653360307399760994e-09,5.773644569259330711e-09,5.893928831118900428e-09,6.014213092978470146e-09,6.134497354838039863e-09,6.254781616697609580e-09,6.375065878557179297e-09,6.495350140416749015e-09,6.615634402276318732e-09,6.735918664135888449e-09,6.856202925995458166e-09,6.976487187855027884e-09,7.096771449714597601e-09,7.217055711574167318e-09,7.337339973433737035e-09,7.457624235293307580e-09,7.577908497152878124e-09 +0.000000000000000000e+00,-5.166563159441857653e-20,-1.033312631888371531e-19,-1.549968947832557416e-19,-2.066625263776743302e-19,-2.583281579720929188e-19,-3.099937895665114833e-19,-3.616594211609300478e-19,-4.133250527553486123e-19,-4.649906843497672249e-19,-5.166563159441858376e-19,-5.683219475386044502e-19,-6.199875791330230629e-19,-6.716532107274416755e-19,-7.233188423218602882e-19,-7.749844739162789008e-19,-8.266501055106975134e-19,-8.783157371051161261e-19,-9.299813686995348350e-19,-9.816470002939535440e-19,-1.033312631888372253e-18,-1.084978263482790962e-18,-1.136643895077209671e-18,-1.188309526671628380e-18,-1.239975158266047089e-18,-1.291640789860465798e-18,-1.343306421454884507e-18,-1.394972053049303216e-18,-1.446637684643721924e-18,-1.498303316238140633e-18,-1.549968947832559342e-18,-1.601634579426978051e-18,-1.653300211021396760e-18,-1.704965842615815469e-18,-1.756631474210234178e-18,-1.808297105804652887e-18,-1.859962737399071596e-18,-1.911628368993490305e-18,-1.963294000587909014e-18,-2.014959632182327723e-18,-2.066625263776746432e-18,-2.118290895371165141e-18,-2.169956526965583850e-18,-2.221622158560002559e-18,-2.273287790154421268e-18,-2.324953421748839976e-18,-2.376619053343258685e-18,-2.428284684937677394e-18,-2.479950316532096103e-18,-2.531615948126514812e-18,-2.583281579720933521e-18,-2.634947211315352230e-18,-2.686612842909770939e-18,-2.738278474504189648e-18,-2.789944106098608357e-18,-2.841609737693027066e-18,-2.893275369287445775e-18,-2.944941000881864484e-18,-2.996606632476283193e-18,-3.048272264070701902e-18,-3.099937895665120611e-18,-3.151603527259539320e-18,-3.203269158853958028e-18,-3.254934790448376737e-18 +0.000000000000000000e+00,3.238361819314087064e-10,6.476723638628174129e-10,9.715085457942260676e-10,1.295344727725634619e-09,1.619180909657043170e-09,1.943017091588451722e-09,2.266853273519860066e-09,2.590689455451268411e-09,2.914525637382676755e-09,3.238361819314085100e-09,3.562198001245493444e-09,3.886034183176901789e-09,4.209870365108310134e-09,4.533706547039718478e-09,4.857542728971126823e-09,5.181378910902535167e-09,5.505215092833943512e-09,5.829051274765351856e-09,6.152887456696760201e-09,6.476723638628168545e-09,6.800559820559576890e-09,7.124396002490985234e-09,7.448232184422393579e-09,7.772068366353801924e-09,8.095904548285210268e-09,8.419740730216618613e-09,8.743576912148026957e-09,9.067413094079435302e-09,9.391249276010843646e-09,9.715085457942251991e-09,1.003892163987366034e-08,1.036275782180506868e-08,1.068659400373647702e-08,1.101043018566788537e-08,1.133426636759929371e-08,1.165810254953070206e-08,1.198193873146211040e-08,1.230577491339351875e-08,1.262961109532492709e-08,1.295344727725633544e-08,1.327728345918774378e-08,1.360111964111915213e-08,1.392495582305056047e-08,1.424879200498196881e-08,1.457262818691337716e-08,1.489646436884478550e-08,1.522030055077619550e-08,1.554413673270760716e-08,1.586797291463901881e-08,1.619180909657043046e-08,1.651564527850184212e-08,1.683948146043325377e-08,1.716331764236466542e-08,1.748715382429607708e-08,1.781099000622748873e-08,1.813482618815890038e-08,1.845866237009031204e-08,1.878249855202172369e-08,1.910633473395313534e-08,1.943017091588454700e-08,1.975400709781595865e-08,2.007784327974737030e-08,2.040167946167878195e-08 +0.000000000000000000e+00,-1.386253632734244568e-10,-2.772507265468489136e-10,-4.158760898202733704e-10,-5.545014530936978272e-10,-6.931268163671222840e-10,-8.317521796405467408e-10,-9.703775429139710942e-10,-1.109002906187395448e-09,-1.247628269460819801e-09,-1.386253632734244154e-09,-1.524878996007668508e-09,-1.663504359281092861e-09,-1.802129722554517215e-09,-1.940755085827941361e-09,-2.079380449101365508e-09,-2.218005812374789655e-09,-2.356631175648213801e-09,-2.495256538921637948e-09,-2.633881902195062094e-09,-2.772507265468486241e-09,-2.911132628741910388e-09,-3.049757992015334534e-09,-3.188383355288758681e-09,-3.327008718562182827e-09,-3.465634081835606974e-09,-3.604259445109031121e-09,-3.742884808382455267e-09,-3.881510171655879414e-09,-4.020135534929303560e-09,-4.158760898202727707e-09,-4.297386261476151854e-09,-4.436011624749576000e-09,-4.574636988023000147e-09,-4.713262351296424294e-09,-4.851887714569848440e-09,-4.990513077843272587e-09,-5.129138441116696733e-09,-5.267763804390120880e-09,-5.406389167663545027e-09,-5.545014530936969173e-09,-5.683639894210393320e-09,-5.822265257483817466e-09,-5.960890620757241613e-09,-6.099515984030665760e-09,-6.238141347304089906e-09,-6.376766710577514053e-09,-6.515392073850938200e-09,-6.654017437124362346e-09,-6.792642800397786493e-09,-6.931268163671210639e-09,-7.069893526944634786e-09,-7.208518890218058933e-09,-7.347144253491483079e-09,-7.485769616764907226e-09,-7.624394980038331372e-09,-7.763020343311755519e-09,-7.901645706585179666e-09,-8.040271069858603812e-09,-8.178896433132027959e-09,-8.317521796405452105e-09,-8.456147159678876252e-09,-8.594772522952300399e-09,-8.733397886225724545e-09 +0.000000000000000000e+00,3.169011568917174838e-10,6.338023137834349677e-10,9.507034706751524515e-10,1.267604627566869935e-09,1.584505784458587419e-09,1.901406941350304903e-09,2.218308098242022180e-09,2.535209255133739457e-09,2.852110412025456734e-09,3.169011568917174011e-09,3.485912725808891288e-09,3.802813882700608979e-09,4.119715039592326670e-09,4.436616196484044360e-09,4.753517353375762051e-09,5.070418510267479742e-09,5.387319667159197432e-09,5.704220824050915123e-09,6.021121980942632813e-09,6.338023137834350504e-09,6.654924294726068195e-09,6.971825451617785885e-09,7.288726608509503576e-09,7.605627765401221267e-09,7.922528922292938957e-09,8.239430079184656648e-09,8.556331236076374339e-09,8.873232392968092029e-09,9.190133549859809720e-09,9.507034706751527411e-09,9.823935863643245101e-09,1.014083702053496279e-08,1.045773817742668048e-08,1.077463933431839817e-08,1.109154049121011586e-08,1.140844164810183355e-08,1.172534280499355125e-08,1.204224396188526894e-08,1.235914511877698663e-08,1.267604627566870432e-08,1.299294743256042201e-08,1.330984858945213970e-08,1.362674974634385739e-08,1.394365090323557508e-08,1.426055206012729277e-08,1.457745321701901046e-08,1.489435437391072815e-08,1.521125553080244584e-08,1.552815668769416353e-08,1.584505784458588122e-08,1.616195900147759891e-08,1.647886015836931660e-08,1.679576131526103430e-08,1.711266247215275199e-08,1.742956362904446968e-08,1.774646478593618737e-08,1.806336594282790506e-08,1.838026709971962275e-08,1.869716825661134044e-08,1.901406941350305813e-08,1.933097057039477582e-08,1.964787172728649351e-08,1.996477288417821120e-08 +0.000000000000000000e+00,5.920032856277656430e-11,1.184006571255531286e-10,1.776009856883296929e-10,2.368013142511062572e-10,2.960016428138828215e-10,3.552019713766593858e-10,4.144022999394359501e-10,4.736026285022125144e-10,5.328029570649890787e-10,5.920032856277656430e-10,6.512036141905422073e-10,7.104039427533187716e-10,7.696042713160953359e-10,8.288045998788719002e-10,8.880049284416484645e-10,9.472052570044250288e-10,1.006405585567201593e-09,1.065605914129978157e-09,1.124806242692754722e-09,1.184006571255531286e-09,1.243206899818307850e-09,1.302407228381084415e-09,1.361607556943860979e-09,1.420807885506637543e-09,1.480008214069414108e-09,1.539208542632190672e-09,1.598408871194967236e-09,1.657609199757743800e-09,1.716809528320520365e-09,1.776009856883296929e-09,1.835210185446073493e-09,1.894410514008850058e-09,1.953610842571626622e-09,2.012811171134403186e-09,2.072011499697179751e-09,2.131211828259956315e-09,2.190412156822732879e-09,2.249612485385509443e-09,2.308812813948286008e-09,2.368013142511062572e-09,2.427213471073839136e-09,2.486413799636615701e-09,2.545614128199392265e-09,2.604814456762168829e-09,2.664014785324945394e-09,2.723215113887721958e-09,2.782415442450498522e-09,2.841615771013275087e-09,2.900816099576051651e-09,2.960016428138828215e-09,3.019216756701604779e-09,3.078417085264381344e-09,3.137617413827157908e-09,3.196817742389934472e-09,3.256018070952711037e-09,3.315218399515487601e-09,3.374418728078264165e-09,3.433619056641040730e-09,3.492819385203817294e-09,3.552019713766593858e-09,3.611220042329370422e-09,3.670420370892146987e-09,3.729620699454923551e-09 +0.000000000000000000e+00,-4.810684234769541086e-20,-9.621368469539082172e-20,-1.443205270430862266e-19,-1.924273693907816194e-19,-2.405342117384770122e-19,-2.886410540861724050e-19,-3.367478964338677978e-19,-3.848547387815631906e-19,-4.329615811292585834e-19,-4.810684234769539280e-19,-5.291752658246493208e-19,-5.772821081723447136e-19,-6.253889505200401064e-19,-6.734957928677354992e-19,-7.216026352154308920e-19,-7.697094775631262848e-19,-8.178163199108216776e-19,-8.659231622585170705e-19,-9.140300046062124633e-19,-9.621368469539078561e-19,-1.010243689301603249e-18,-1.058350531649298642e-18,-1.106457373996994034e-18,-1.154564216344689427e-18,-1.202671058692384820e-18,-1.250777901040080213e-18,-1.298884743387775606e-18,-1.346991585735470998e-18,-1.395098428083166391e-18,-1.443205270430861784e-18,-1.491312112778557177e-18,-1.539418955126252570e-18,-1.587525797473947962e-18,-1.635632639821643355e-18,-1.683739482169338748e-18,-1.731846324517034141e-18,-1.779953166864729341e-18,-1.828060009212424541e-18,-1.876166851560119742e-18,-1.924273693907814942e-18,-1.972380536255510142e-18,-2.020487378603205342e-18,-2.068594220950900542e-18,-2.116701063298595743e-18,-2.164807905646290943e-18,-2.212914747993986143e-18,-2.261021590341681343e-18,-2.309128432689376543e-18,-2.357235275037071744e-18,-2.405342117384766944e-18,-2.453448959732462144e-18,-2.501555802080157344e-18,-2.549662644427852544e-18,-2.597769486775547745e-18,-2.645876329123242945e-18,-2.693983171470938145e-18,-2.742090013818633345e-18,-2.790196856166328546e-18,-2.838303698514023746e-18,-2.886410540861718946e-18,-2.934517383209414146e-18,-2.982624225557109346e-18,-3.030731067904804547e-18 +0.000000000000000000e+00,-4.501794150080413021e-10,-9.003588300160826041e-10,-1.350538245024124010e-09,-1.800717660032165415e-09,-2.250897075040206821e-09,-2.701076490048248019e-09,-3.151255905056289218e-09,-3.601435320064330417e-09,-4.051614735072372029e-09,-4.501794150080413641e-09,-4.951973565088455253e-09,-5.402152980096496866e-09,-5.852332395104538478e-09,-6.302511810112580090e-09,-6.752691225120621702e-09,-7.202870640128663315e-09,-7.653050055136704927e-09,-8.103229470144747366e-09,-8.553408885152789806e-09,-9.003588300160832245e-09,-9.453767715168874685e-09,-9.903947130176917124e-09,-1.035412654518495956e-08,-1.080430596019300200e-08,-1.125448537520104444e-08,-1.170466479020908688e-08,-1.215484420521712932e-08,-1.260502362022517176e-08,-1.305520303523321420e-08,-1.350538245024125664e-08,-1.395556186524929908e-08,-1.440574128025734152e-08,-1.485592069526538396e-08,-1.530610011027342640e-08,-1.575627952528146884e-08,-1.620645894028951128e-08,-1.665663835529755372e-08,-1.710681777030559616e-08,-1.755699718531363859e-08,-1.800717660032168103e-08,-1.845735601532972347e-08,-1.890753543033776591e-08,-1.935771484534580835e-08,-1.980789426035385079e-08,-2.025807367536189323e-08,-2.070825309036993567e-08,-2.115843250537797811e-08,-2.160861192038602055e-08,-2.205879133539406299e-08,-2.250897075040210543e-08,-2.295915016541014787e-08,-2.340932958041819031e-08,-2.385950899542623275e-08,-2.430968841043427519e-08,-2.475986782544231763e-08,-2.521004724045036006e-08,-2.566022665545840250e-08,-2.611040607046644494e-08,-2.656058548547448738e-08,-2.701076490048252982e-08,-2.746094431549057226e-08,-2.791112373049861470e-08,-2.836130314550665714e-08 +0.000000000000000000e+00,-1.202842619628506872e-10,-2.405685239257013744e-10,-3.608527858885520874e-10,-4.811370478514028522e-10,-6.014213098142536169e-10,-7.217055717771043817e-10,-8.419898337399551464e-10,-9.622740957028059111e-10,-1.082558357665656779e-09,-1.202842619628507647e-09,-1.323126881591358516e-09,-1.443411143554209384e-09,-1.563695405517060252e-09,-1.683979667479911120e-09,-1.804263929442761988e-09,-1.924548191405613063e-09,-2.044832453368464138e-09,-2.165116715331315213e-09,-2.285400977294166288e-09,-2.405685239257017363e-09,-2.525969501219868438e-09,-2.646253763182719513e-09,-2.766538025145570588e-09,-2.886822287108421663e-09,-3.007106549071272737e-09,-3.127390811034123812e-09,-3.247675072996974887e-09,-3.367959334959825962e-09,-3.488243596922677037e-09,-3.608527858885528112e-09,-3.728812120848378773e-09,-3.849096382811229435e-09,-3.969380644774080096e-09,-4.089664906736930757e-09,-4.209949168699781419e-09,-4.330233430662632080e-09,-4.450517692625482742e-09,-4.570801954588333403e-09,-4.691086216551184064e-09,-4.811370478514034726e-09,-4.931654740476885387e-09,-5.051939002439736048e-09,-5.172223264402586710e-09,-5.292507526365437371e-09,-5.412791788328288032e-09,-5.533076050291138694e-09,-5.653360312253989355e-09,-5.773644574216840016e-09,-5.893928836179690678e-09,-6.014213098142541339e-09,-6.134497360105392000e-09,-6.254781622068242662e-09,-6.375065884031093323e-09,-6.495350145993943984e-09,-6.615634407956794646e-09,-6.735918669919645307e-09,-6.856202931882495968e-09,-6.976487193845346630e-09,-7.096771455808197291e-09,-7.217055717771047952e-09,-7.337339979733898614e-09,-7.457624241696749275e-09,-7.577908503659599936e-09 +0.000000000000000000e+00,-5.920032866610159455e-11,-1.184006573322031891e-10,-1.776009859983047707e-10,-2.368013146644063265e-10,-2.960016433305078823e-10,-3.552019719966094380e-10,-4.144023006627109938e-10,-4.736026293288125496e-10,-5.328029579949141054e-10,-5.920032866610156611e-10,-6.512036153271172169e-10,-7.104039439932187727e-10,-7.696042726593203284e-10,-8.288046013254218842e-10,-8.880049299915234400e-10,-9.472052586576248924e-10,-1.006405587323726241e-09,-1.065605915989827590e-09,-1.124806244655928939e-09,-1.184006573322030288e-09,-1.243206901988131637e-09,-1.302407230654232986e-09,-1.361607559320334335e-09,-1.420807887986435684e-09,-1.480008216652537033e-09,-1.539208545318638382e-09,-1.598408873984739731e-09,-1.657609202650841080e-09,-1.716809531316942429e-09,-1.776009859983043778e-09,-1.835210188649145127e-09,-1.894410517315246476e-09,-1.953610845981347825e-09,-2.012811174647449174e-09,-2.072011503313550523e-09,-2.131211831979651872e-09,-2.190412160645753221e-09,-2.249612489311854570e-09,-2.308812817977955919e-09,-2.368013146644057268e-09,-2.427213475310158617e-09,-2.486413803976259966e-09,-2.545614132642361315e-09,-2.604814461308462664e-09,-2.664014789974564013e-09,-2.723215118640665362e-09,-2.782415447306766711e-09,-2.841615775972868060e-09,-2.900816104638969409e-09,-2.960016433305070758e-09,-3.019216761971172107e-09,-3.078417090637273456e-09,-3.137617419303374805e-09,-3.196817747969476154e-09,-3.256018076635577502e-09,-3.315218405301678851e-09,-3.374418733967780200e-09,-3.433619062633881549e-09,-3.492819391299982898e-09,-3.552019719966084247e-09,-3.611220048632185596e-09,-3.670420377298286945e-09,-3.729620705964388294e-09 +0.000000000000000000e+00,-3.238361820339739325e-10,-6.476723640679478650e-10,-9.715085461019217459e-10,-1.295344728135895523e-09,-1.619180910169869301e-09,-1.943017092203843078e-09,-2.266853274237816856e-09,-2.590689456271790633e-09,-2.914525638305764410e-09,-3.238361820339738188e-09,-3.562198002373711965e-09,-3.886034184407685329e-09,-4.209870366441659107e-09,-4.533706548475632884e-09,-4.857542730509606661e-09,-5.181378912543580439e-09,-5.505215094577554216e-09,-5.829051276611527994e-09,-6.152887458645501771e-09,-6.476723640679475548e-09,-6.800559822713449326e-09,-7.124396004747423103e-09,-7.448232186781396881e-09,-7.772068368815370658e-09,-8.095904550849344436e-09,-8.419740732883318213e-09,-8.743576914917291990e-09,-9.067413096951265768e-09,-9.391249278985239545e-09,-9.715085461019213323e-09,-1.003892164305318710e-08,-1.036275782508716088e-08,-1.068659400712113465e-08,-1.101043018915510843e-08,-1.133426637118908221e-08,-1.165810255322305599e-08,-1.198193873525702976e-08,-1.230577491729100354e-08,-1.262961109932497732e-08,-1.295344728135895110e-08,-1.327728346339292487e-08,-1.360111964542689865e-08,-1.392495582746087243e-08,-1.424879200949484621e-08,-1.457262819152881998e-08,-1.489646437356279376e-08,-1.522030055559676588e-08,-1.554413673763073801e-08,-1.586797291966471013e-08,-1.619180910169868225e-08,-1.651564528373265438e-08,-1.683948146576662650e-08,-1.716331764780059862e-08,-1.748715382983457075e-08,-1.781099001186854287e-08,-1.813482619390251499e-08,-1.845866237593648712e-08,-1.878249855797045924e-08,-1.910633474000443136e-08,-1.943017092203840348e-08,-1.975400710407237561e-08,-2.007784328610634773e-08,-2.040167946814031985e-08 +0.000000000000000000e+00,1.386253631772081521e-10,2.772507263544163042e-10,4.158760895316244564e-10,5.545014527088326085e-10,6.931268158860407606e-10,8.317521790632489127e-10,9.703775422404570649e-10,1.109002905417665217e-09,1.247628268594873369e-09,1.386253631772081521e-09,1.524878994949289673e-09,1.663504358126497825e-09,1.802129721303705978e-09,1.940755084480914130e-09,2.079380447658122282e-09,2.218005810835330434e-09,2.356631174012538586e-09,2.495256537189746738e-09,2.633881900366954890e-09,2.772507263544163042e-09,2.911132626721371195e-09,3.049757989898579347e-09,3.188383353075787499e-09,3.327008716252995651e-09,3.465634079430203803e-09,3.604259442607411955e-09,3.742884805784620107e-09,3.881510168961828259e-09,4.020135532139036412e-09,4.158760895316244564e-09,4.297386258493452716e-09,4.436011621670660868e-09,4.574636984847869020e-09,4.713262348025077172e-09,4.851887711202285324e-09,4.990513074379493476e-09,5.129138437556701628e-09,5.267763800733909781e-09,5.406389163911117933e-09,5.545014527088326085e-09,5.683639890265534237e-09,5.822265253442742389e-09,5.960890616619950541e-09,6.099515979797158693e-09,6.238141342974366845e-09,6.376766706151574998e-09,6.515392069328783150e-09,6.654017432505991302e-09,6.792642795683199454e-09,6.931268158860407606e-09,7.069893522037615758e-09,7.208518885214823910e-09,7.347144248392032062e-09,7.485769611569240215e-09,7.624394974746448367e-09,7.763020337923656519e-09,7.901645701100864671e-09,8.040271064278072823e-09,8.178896427455280975e-09,8.317521790632489127e-09,8.456147153809697279e-09,8.594772516986905432e-09,8.733397880164113584e-09 +0.000000000000000000e+00,-3.169011569858494485e-10,-6.338023139716988970e-10,-9.507034709575483971e-10,-1.267604627943398001e-09,-1.584505784929247604e-09,-1.901406941915097208e-09,-2.218308098900946811e-09,-2.535209255886796415e-09,-2.852110412872646019e-09,-3.169011569858495622e-09,-3.485912726844345226e-09,-3.802813883830195243e-09,-4.119715040816045260e-09,-4.436616197801895277e-09,-4.753517354787745294e-09,-5.070418511773595312e-09,-5.387319668759445329e-09,-5.704220825745295346e-09,-6.021121982731145363e-09,-6.338023139716995380e-09,-6.654924296702845397e-09,-6.971825453688695415e-09,-7.288726610674545432e-09,-7.605627767660395449e-09,-7.922528924646244639e-09,-8.239430081632093829e-09,-8.556331238617943019e-09,-8.873232395603792209e-09,-9.190133552589641399e-09,-9.507034709575490589e-09,-9.823935866561339779e-09,-1.014083702354718897e-08,-1.045773818053303816e-08,-1.077463933751888735e-08,-1.109154049450473654e-08,-1.140844165149058573e-08,-1.172534280847643492e-08,-1.204224396546228411e-08,-1.235914512244813330e-08,-1.267604627943398249e-08,-1.299294743641983168e-08,-1.330984859340568087e-08,-1.362674975039153006e-08,-1.394365090737737925e-08,-1.426055206436322844e-08,-1.457745322134907763e-08,-1.489435437833492682e-08,-1.521125553532077435e-08,-1.552815669230662189e-08,-1.584505784929246943e-08,-1.616195900627831696e-08,-1.647886016326416450e-08,-1.679576132025001203e-08,-1.711266247723585957e-08,-1.742956363422170710e-08,-1.774646479120755464e-08,-1.806336594819340218e-08,-1.838026710517924971e-08,-1.869716826216509725e-08,-1.901406941915094478e-08,-1.933097057613679232e-08,-1.964787173312263985e-08,-1.996477289010848739e-08 +0.000000000000000000e+00,5.501340208248066673e-10,1.100268041649613335e-09,1.650402062474419899e-09,2.200536083299226256e-09,2.750670104124032613e-09,3.300804124948838970e-09,3.850938145773644913e-09,4.401072166598450857e-09,4.951206187423256801e-09,5.501340208248062744e-09,6.051474229072868688e-09,6.601608249897674631e-09,7.151742270722480575e-09,7.701876291547286518e-09,8.252010312372092462e-09,8.802144333196898405e-09,9.352278354021704349e-09,9.902412374846510292e-09,1.045254639567131624e-08,1.100268041649612218e-08,1.155281443732092812e-08,1.210294845814573407e-08,1.265308247897054001e-08,1.320321649979534595e-08,1.375335052062015190e-08,1.430348454144495784e-08,1.485361856226976378e-08,1.540375258309456973e-08,1.595388660391937567e-08,1.650402062474418161e-08,1.705415464556898756e-08,1.760428866639379350e-08,1.815442268721859945e-08,1.870455670804340539e-08,1.925469072886821133e-08,1.980482474969301728e-08,2.035495877051782322e-08,2.090509279134262916e-08,2.145522681216743511e-08,2.200536083299224105e-08,2.255549485381704699e-08,2.310562887464185294e-08,2.365576289546665888e-08,2.420589691629146482e-08,2.475603093711627077e-08,2.530616495794107671e-08,2.585629897876588265e-08,2.640643299959068860e-08,2.695656702041549454e-08,2.750670104124030049e-08,2.805683506206510643e-08,2.860696908288991237e-08,2.915710310371471832e-08,2.970723712453952426e-08,3.025737114536432689e-08,3.080750516618913284e-08,3.135763918701393878e-08,3.190777320783874472e-08,3.245790722866355067e-08,3.300804124948835661e-08,3.355817527031316256e-08,3.410830929113796850e-08,3.465844331196277444e-08 +0.000000000000000000e+00,4.958396909565850375e-10,9.916793819131700751e-10,1.487519072869755113e-09,1.983358763826340150e-09,2.479198454782925188e-09,2.975038145739510225e-09,3.470877836696095263e-09,3.966717527652680300e-09,4.462557218609265338e-09,4.958396909565850375e-09,5.454236600522435413e-09,5.950076291479020451e-09,6.445915982435605488e-09,6.941755673392190526e-09,7.437595364348775563e-09,7.933435055305360601e-09,8.429274746261945638e-09,8.925114437218530676e-09,9.420954128175115713e-09,9.916793819131700751e-09,1.041263351008828579e-08,1.090847320104487083e-08,1.140431289200145586e-08,1.190015258295804090e-08,1.239599227391462594e-08,1.289183196487121098e-08,1.338767165582779601e-08,1.388351134678438105e-08,1.437935103774096609e-08,1.487519072869755113e-08,1.537103041965413782e-08,1.586687011061072451e-08,1.636270980156731120e-08,1.685854949252389789e-08,1.735438918348048459e-08,1.785022887443707128e-08,1.834606856539365797e-08,1.884190825635024466e-08,1.933774794730683135e-08,1.983358763826341805e-08,2.032942732922000474e-08,2.082526702017659143e-08,2.132110671113317812e-08,2.181694640208976481e-08,2.231278609304635151e-08,2.280862578400293820e-08,2.330446547495952489e-08,2.380030516591611158e-08,2.429614485687269827e-08,2.479198454782928496e-08,2.528782423878587166e-08,2.578366392974245835e-08,2.627950362069904504e-08,2.677534331165563173e-08,2.727118300261221842e-08,2.776702269356880512e-08,2.826286238452539181e-08,2.875870207548197850e-08,2.925454176643856519e-08,2.975038145739515188e-08,3.024622114835173858e-08,3.074206083930832858e-08,3.123790053026491858e-08 +0.000000000000000000e+00,4.767414845923631686e-10,9.534829691847263373e-10,1.430224453777089506e-09,1.906965938369452675e-09,2.383707422961816050e-09,2.860448907554179425e-09,3.337190392146542801e-09,3.813931876738906176e-09,4.290673361331269552e-09,4.767414845923632927e-09,5.244156330515996302e-09,5.720897815108359678e-09,6.197639299700723053e-09,6.674380784293086429e-09,7.151122268885449804e-09,7.627863753477814007e-09,8.104605238070179037e-09,8.581346722662544066e-09,9.058088207254909096e-09,9.534829691847274126e-09,1.001157117643963916e-08,1.048831266103200419e-08,1.096505414562436922e-08,1.144179563021673425e-08,1.191853711480909927e-08,1.239527859940146430e-08,1.287202008399382933e-08,1.334876156858619436e-08,1.382550305317855939e-08,1.430224453777092442e-08,1.477898602236328945e-08,1.525572750695565448e-08,1.573246899154801951e-08,1.620921047614038454e-08,1.668595196073274957e-08,1.716269344532511460e-08,1.763943492991747963e-08,1.811617641450984466e-08,1.859291789910220969e-08,1.906965938369457472e-08,1.954640086828693975e-08,2.002314235287930478e-08,2.049988383747166981e-08,2.097662532206403484e-08,2.145336680665639987e-08,2.193010829124876490e-08,2.240684977584112993e-08,2.288359126043349496e-08,2.336033274502585999e-08,2.383707422961822502e-08,2.431381571421059005e-08,2.479055719880295508e-08,2.526729868339532011e-08,2.574404016798768514e-08,2.622078165258005017e-08,2.669752313717241520e-08,2.717426462176478023e-08,2.765100610635714526e-08,2.812774759094951029e-08,2.860448907554187532e-08,2.908123056013424035e-08,2.955797204472660538e-08,3.003471352931897041e-08 +0.000000000000000000e+00,-5.501340209238782961e-10,-1.100268041847756592e-09,-1.650402062771634992e-09,-2.200536083695513598e-09,-2.750670104619392204e-09,-3.300804125543270810e-09,-3.850938146467149830e-09,-4.401072167391028850e-09,-4.951206188314907870e-09,-5.501340209238786890e-09,-6.051474230162665910e-09,-6.601608251086544930e-09,-7.151742272010423949e-09,-7.701876292934302969e-09,-8.252010313858181989e-09,-8.802144334782061009e-09,-9.352278355705940029e-09,-9.902412376629819049e-09,-1.045254639755369807e-08,-1.100268041847757709e-08,-1.155281443940145611e-08,-1.210294846032533513e-08,-1.265308248124921415e-08,-1.320321650217309317e-08,-1.375335052309697219e-08,-1.430348454402085121e-08,-1.485361856494473023e-08,-1.540375258586860925e-08,-1.595388660679248827e-08,-1.650402062771636729e-08,-1.705415464864024631e-08,-1.760428866956412533e-08,-1.815442269048800435e-08,-1.870455671141188337e-08,-1.925469073233576239e-08,-1.980482475325964141e-08,-2.035495877418352043e-08,-2.090509279510739945e-08,-2.145522681603127847e-08,-2.200536083695515749e-08,-2.255549485787903651e-08,-2.310562887880291553e-08,-2.365576289972679455e-08,-2.420589692065067357e-08,-2.475603094157455258e-08,-2.530616496249843160e-08,-2.585629898342231062e-08,-2.640643300434618964e-08,-2.695656702527006866e-08,-2.750670104619394768e-08,-2.805683506711782670e-08,-2.860696908804170572e-08,-2.915710310896558474e-08,-2.970723712988946376e-08,-3.025737115081334278e-08,-3.080750517173722511e-08,-3.135763919266110744e-08,-3.190777321358498977e-08,-3.245790723450887210e-08,-3.300804125543275443e-08,-3.355817527635663676e-08,-3.410830929728051908e-08,-3.465844331820440141e-08 +0.000000000000000000e+00,-4.958396910573065814e-10,-9.916793821146131629e-10,-1.487519073171919641e-09,-1.983358764229225912e-09,-2.479198455286532183e-09,-2.975038146343838455e-09,-3.470877837401144726e-09,-3.966717528458450997e-09,-4.462557219515757682e-09,-4.958396910573064367e-09,-5.454236601630371052e-09,-5.950076292687677736e-09,-6.445915983744984421e-09,-6.941755674802291106e-09,-7.437595365859597791e-09,-7.933435056916903649e-09,-8.429274747974209506e-09,-8.925114439031515364e-09,-9.420954130088821222e-09,-9.916793821146127079e-09,-1.041263351220343294e-08,-1.090847320326073879e-08,-1.140431289431804465e-08,-1.190015258537535051e-08,-1.239599227643265637e-08,-1.289183196748996223e-08,-1.338767165854726808e-08,-1.388351134960457394e-08,-1.437935104066187980e-08,-1.487519073171918566e-08,-1.537103042277649317e-08,-1.586687011383380068e-08,-1.636270980489110819e-08,-1.685854949594841570e-08,-1.735438918700572322e-08,-1.785022887806303073e-08,-1.834606856912033824e-08,-1.884190826017764575e-08,-1.933774795123495326e-08,-1.983358764229226078e-08,-2.032942733334956829e-08,-2.082526702440687580e-08,-2.132110671546418331e-08,-2.181694640652149082e-08,-2.231278609757879834e-08,-2.280862578863610585e-08,-2.330446547969341336e-08,-2.380030517075072087e-08,-2.429614486180802838e-08,-2.479198455286533590e-08,-2.528782424392264341e-08,-2.578366393497995092e-08,-2.627950362603725843e-08,-2.677534331709456594e-08,-2.727118300815187346e-08,-2.776702269920918097e-08,-2.826286239026648848e-08,-2.875870208132379599e-08,-2.925454177238110350e-08,-2.975038146343841102e-08,-3.024622115449571853e-08,-3.074206084555302604e-08,-3.123790053661033355e-08 +0.000000000000000000e+00,-4.767414846833301851e-10,-9.534829693666603703e-10,-1.430224454049990659e-09,-1.906965938733321154e-09,-2.383707423416651649e-09,-2.860448908099982145e-09,-3.337190392783312640e-09,-3.813931877466643136e-09,-4.290673362149974044e-09,-4.767414846833304953e-09,-5.244156331516635862e-09,-5.720897816199966771e-09,-6.197639300883297680e-09,-6.674380785566628589e-09,-7.151122270249959498e-09,-7.627863754933291234e-09,-8.104605239616622970e-09,-8.581346724299954706e-09,-9.058088208983286442e-09,-9.534829693666618179e-09,-1.001157117834994991e-08,-1.048831266303328165e-08,-1.096505414771661339e-08,-1.144179563239994512e-08,-1.191853711708327686e-08,-1.239527860176660860e-08,-1.287202008644994033e-08,-1.334876157113327207e-08,-1.382550305581660380e-08,-1.430224454049993554e-08,-1.477898602518326728e-08,-1.525572750986659901e-08,-1.573246899454993075e-08,-1.620921047923326248e-08,-1.668595196391659422e-08,-1.716269344859992596e-08,-1.763943493328325769e-08,-1.811617641796658943e-08,-1.859291790264992116e-08,-1.906965938733325290e-08,-1.954640087201658464e-08,-2.002314235669991637e-08,-2.049988384138324811e-08,-2.097662532606657985e-08,-2.145336681074991158e-08,-2.193010829543324332e-08,-2.240684978011657505e-08,-2.288359126479990679e-08,-2.336033274948323853e-08,-2.383707423416657026e-08,-2.431381571884990200e-08,-2.479055720353323373e-08,-2.526729868821656547e-08,-2.574404017289989721e-08,-2.622078165758322894e-08,-2.669752314226656068e-08,-2.717426462694989241e-08,-2.765100611163322415e-08,-2.812774759631655589e-08,-2.860448908099988762e-08,-2.908123056568321936e-08,-2.955797205036655109e-08,-3.003471353504988283e-08 +0.000000000000000000e+00,5.937785805615027865e-10,1.187557161123005573e-09,1.781335741684508256e-09,2.375114322246010733e-09,2.968892902807513209e-09,3.562671483369015685e-09,4.156450063930518575e-09,4.750228644492021465e-09,5.344007225053524355e-09,5.937785805615027245e-09,6.531564386176530135e-09,7.125342966738033025e-09,7.719121547299535915e-09,8.312900127861038805e-09,8.906678708422541694e-09,9.500457288984044584e-09,1.009423586954554747e-08,1.068801445010705036e-08,1.128179303066855325e-08,1.187557161123005614e-08,1.246935019179155903e-08,1.306312877235306192e-08,1.365690735291456481e-08,1.425068593347606770e-08,1.484446451403757059e-08,1.543824309459907183e-08,1.603202167516057306e-08,1.662580025572207430e-08,1.721957883628357554e-08,1.781335741684507677e-08,1.840713599740657801e-08,1.900091457796807924e-08,1.959469315852958048e-08,2.018847173909108171e-08,2.078225031965258295e-08,2.137602890021408418e-08,2.196980748077558542e-08,2.256358606133708666e-08,2.315736464189858789e-08,2.375114322246008913e-08,2.434492180302159036e-08,2.493870038358309160e-08,2.553247896414459283e-08,2.612625754470609407e-08,2.672003612526759530e-08,2.731381470582909654e-08,2.790759328639059778e-08,2.850137186695209901e-08,2.909515044751360025e-08,2.968892902807510148e-08,3.028270760863659941e-08,3.087648618919809734e-08,3.147026476975959526e-08,3.206404335032109319e-08,3.265782193088259112e-08,3.325160051144408904e-08,3.384537909200558697e-08,3.443915767256708490e-08,3.503293625312858282e-08,3.562671483369008075e-08,3.622049341425157868e-08,3.681427199481307660e-08,3.740805057537457453e-08 +0.000000000000000000e+00,5.663812990705679350e-10,1.132762598141135870e-09,1.699143897211703805e-09,2.265525196282271740e-09,2.831906495352839882e-09,3.398287794423408023e-09,3.964669093493976165e-09,4.531050392564544307e-09,5.097431691635112449e-09,5.663812990705680591e-09,6.230194289776248732e-09,6.796575588846816874e-09,7.362956887917385016e-09,7.929338186987952330e-09,8.495719486058519645e-09,9.062100785129086960e-09,9.628482084199654274e-09,1.019486338327022159e-08,1.076124468234078890e-08,1.132762598141135622e-08,1.189400728048192353e-08,1.246038857955249085e-08,1.302676987862305816e-08,1.359315117769362548e-08,1.415953247676419279e-08,1.472591377583476011e-08,1.529229507490532742e-08,1.585867637397589473e-08,1.642505767304646205e-08,1.699143897211702936e-08,1.755782027118759668e-08,1.812420157025816399e-08,1.869058286932873131e-08,1.925696416839929862e-08,1.982334546746986594e-08,2.038972676654043325e-08,2.095610806561100057e-08,2.152248936468156788e-08,2.208887066375213520e-08,2.265525196282270251e-08,2.322163326189326982e-08,2.378801456096383714e-08,2.435439586003440445e-08,2.492077715910497177e-08,2.548715845817553908e-08,2.605353975724610640e-08,2.661992105631667371e-08,2.718630235538724103e-08,2.775268365445780834e-08,2.831906495352837566e-08,2.888544625259894297e-08,2.945182755166951028e-08,3.001820885074007760e-08,3.058459014981064161e-08,3.115097144888120561e-08,3.171735274795176962e-08,3.228373404702233362e-08,3.285011534609289763e-08,3.341649664516346163e-08,3.398287794423402564e-08,3.454925924330458965e-08,3.511564054237515365e-08,3.568202184144571766e-08 +0.000000000000000000e+00,5.502506296400959401e-10,1.100501259280191880e-09,1.650751888920287820e-09,2.201002518560383760e-09,2.751253148200479907e-09,3.301503777840576054e-09,3.851754407480672201e-09,4.402005037120768348e-09,4.952255666760864495e-09,5.502506296400960642e-09,6.052756926041056789e-09,6.603007555681152936e-09,7.153258185321249082e-09,7.703508814961344402e-09,8.253759444601439722e-09,8.804010074241535042e-09,9.354260703881630361e-09,9.904511333521725681e-09,1.045476196316182100e-08,1.100501259280191632e-08,1.155526322244201164e-08,1.210551385208210696e-08,1.265576448172220228e-08,1.320601511136229760e-08,1.375626574100239292e-08,1.430651637064248824e-08,1.485676700028258356e-08,1.540701762992267888e-08,1.595726825956277254e-08,1.650751888920286621e-08,1.705776951884295987e-08,1.760802014848305354e-08,1.815827077812314720e-08,1.870852140776324087e-08,1.925877203740333454e-08,1.980902266704342820e-08,2.035927329668352187e-08,2.090952392632361553e-08,2.145977455596370920e-08,2.201002518560380286e-08,2.256027581524389653e-08,2.311052644488399019e-08,2.366077707452408386e-08,2.421102770416417752e-08,2.476127833380427119e-08,2.531152896344436485e-08,2.586177959308445852e-08,2.641203022272455219e-08,2.696228085236464585e-08,2.751253148200473952e-08,2.806278211164483318e-08,2.861303274128492685e-08,2.916328337092502051e-08,2.971353400056511418e-08,3.026378463020520784e-08,3.081403525984529820e-08,3.136428588948538856e-08,3.191453651912547891e-08,3.246478714876556927e-08,3.301503777840565963e-08,3.356528840804574998e-08,3.411553903768584034e-08,3.466578966732593070e-08 +0.000000000000000000e+00,-5.937785806552978302e-10,-1.187557161310595660e-09,-1.781335741965893594e-09,-2.375114322621191734e-09,-2.968892903276489875e-09,-3.562671483931788015e-09,-4.156450064587086569e-09,-4.750228645242385123e-09,-5.344007225897683677e-09,-5.937785806552982231e-09,-6.531564387208280785e-09,-7.125342967863579339e-09,-7.719121548518877893e-09,-8.312900129174176446e-09,-8.906678709829475000e-09,-9.500457290484773554e-09,-1.009423587114007211e-08,-1.068801445179537066e-08,-1.128179303245066922e-08,-1.187557161310596777e-08,-1.246935019376126632e-08,-1.306312877441656488e-08,-1.365690735507186343e-08,-1.425068593572716199e-08,-1.484446451638246054e-08,-1.543824309703775909e-08,-1.603202167769305930e-08,-1.662580025834835951e-08,-1.721957883900365972e-08,-1.781335741965895993e-08,-1.840713600031426014e-08,-1.900091458096956034e-08,-1.959469316162486055e-08,-2.018847174228016076e-08,-2.078225032293546097e-08,-2.137602890359076118e-08,-2.196980748424606139e-08,-2.256358606490136159e-08,-2.315736464555666180e-08,-2.375114322621196201e-08,-2.434492180686726222e-08,-2.493870038752256243e-08,-2.553247896817786263e-08,-2.612625754883316284e-08,-2.672003612948846305e-08,-2.731381471014376326e-08,-2.790759329079906347e-08,-2.850137187145436368e-08,-2.909515045210966388e-08,-2.968892903276496409e-08,-3.028270761342026430e-08,-3.087648619407556451e-08,-3.147026477473086472e-08,-3.206404335538616493e-08,-3.265782193604146513e-08,-3.325160051669676534e-08,-3.384537909735206555e-08,-3.443915767800736576e-08,-3.503293625866266597e-08,-3.562671483931796618e-08,-3.622049341997326638e-08,-3.681427200062856659e-08,-3.740805058128386680e-08 +0.000000000000000000e+00,-5.663812991672992630e-10,-1.132762598334598526e-09,-1.699143897501897789e-09,-2.265525196669197052e-09,-2.831906495836496522e-09,-3.398287795003795992e-09,-3.964669094171095461e-09,-4.531050393338394931e-09,-5.097431692505694401e-09,-5.663812991672993871e-09,-6.230194290840293340e-09,-6.796575590007592810e-09,-7.362956889174892280e-09,-7.929338188342192577e-09,-8.495719487509493701e-09,-9.062100786676794825e-09,-9.628482085844095949e-09,-1.019486338501139707e-08,-1.076124468417869820e-08,-1.132762598334599932e-08,-1.189400728251330045e-08,-1.246038858168060157e-08,-1.302676988084790269e-08,-1.359315118001520382e-08,-1.415953247918250494e-08,-1.472591377834980607e-08,-1.529229507751710719e-08,-1.585867637668440831e-08,-1.642505767585170944e-08,-1.699143897501901056e-08,-1.755782027418631169e-08,-1.812420157335361281e-08,-1.869058287252091394e-08,-1.925696417168821506e-08,-1.982334547085551618e-08,-2.038972677002281731e-08,-2.095610806919011843e-08,-2.152248936835741956e-08,-2.208887066752472068e-08,-2.265525196669202180e-08,-2.322163326585932293e-08,-2.378801456502662405e-08,-2.435439586419392518e-08,-2.492077716336122630e-08,-2.548715846252852743e-08,-2.605353976169582855e-08,-2.661992106086312967e-08,-2.718630236003043080e-08,-2.775268365919773192e-08,-2.831906495836503305e-08,-2.888544625753233417e-08,-2.945182755669963529e-08,-3.001820885586693642e-08,-3.058459015503424085e-08,-3.115097145420154528e-08,-3.171735275336884972e-08,-3.228373405253615415e-08,-3.285011535170345858e-08,-3.341649665087076302e-08,-3.398287795003806745e-08,-3.454925924920537188e-08,-3.511564054837267631e-08,-3.568202184753998075e-08 +0.000000000000000000e+00,-5.502506297260145699e-10,-1.100501259452029140e-09,-1.650751889178043710e-09,-2.201002518904058280e-09,-2.751253148630072850e-09,-3.301503778356087420e-09,-3.851754408082101990e-09,-4.402005037808116560e-09,-4.952255667534131129e-09,-5.502506297260145699e-09,-6.052756926986160269e-09,-6.603007556712174839e-09,-7.153258186438189409e-09,-7.703508816164203979e-09,-8.253759445890218549e-09,-8.804010075616233119e-09,-9.354260705342247689e-09,-9.904511335068262259e-09,-1.045476196479427683e-08,-1.100501259452029140e-08,-1.155526322424630597e-08,-1.210551385397232054e-08,-1.265576448369833511e-08,-1.320601511342434968e-08,-1.375626574315036425e-08,-1.430651637287637882e-08,-1.485676700260239339e-08,-1.540701763232840796e-08,-1.595726826205442253e-08,-1.650751889178043710e-08,-1.705776952150645167e-08,-1.760802015123246624e-08,-1.815827078095848081e-08,-1.870852141068449538e-08,-1.925877204041050995e-08,-1.980902267013652452e-08,-2.035927329986253909e-08,-2.090952392958855366e-08,-2.145977455931456823e-08,-2.201002518904058280e-08,-2.256027581876659737e-08,-2.311052644849261194e-08,-2.366077707821862651e-08,-2.421102770794464108e-08,-2.476127833767065565e-08,-2.531152896739667022e-08,-2.586177959712268479e-08,-2.641203022684869936e-08,-2.696228085657471393e-08,-2.751253148630072850e-08,-2.806278211602674307e-08,-2.861303274575275764e-08,-2.916328337547877221e-08,-2.971353400520478678e-08,-3.026378463493079804e-08,-3.081403526465680930e-08,-3.136428589438282056e-08,-3.191453652410883182e-08,-3.246478715383484308e-08,-3.301503778356085434e-08,-3.356528841328686561e-08,-3.411553904301287687e-08,-3.466578967273888813e-08 +0.000000000000000000e+00,6.222600351156827913e-10,1.244520070231365583e-09,1.866780105347048167e-09,2.489040140462730751e-09,3.111300175578413336e-09,3.733560210694096334e-09,4.355820245809779332e-09,4.978080280925462330e-09,5.600340316041145328e-09,6.222600351156828326e-09,6.844860386272511324e-09,7.467120421388194322e-09,8.089380456503876493e-09,8.711640491619558664e-09,9.333900526735240835e-09,9.956160561850923006e-09,1.057842059696660518e-08,1.120068063208228735e-08,1.182294066719796952e-08,1.244520070231365169e-08,1.306746073742933386e-08,1.368972077254501603e-08,1.431198080766069820e-08,1.493424084277637872e-08,1.555650087789205923e-08,1.617876091300773975e-08,1.680102094812342027e-08,1.742328098323910078e-08,1.804554101835478130e-08,1.866780105347046182e-08,1.929006108858614233e-08,1.991232112370182285e-08,2.053458115881750337e-08,2.115684119393318388e-08,2.177910122904886440e-08,2.240136126416454492e-08,2.302362129928022543e-08,2.364588133439590595e-08,2.426814136951158647e-08,2.489040140462726698e-08,2.551266143974294750e-08,2.613492147485862802e-08,2.675718150997430853e-08,2.737944154508998905e-08,2.800170158020566957e-08,2.862396161532135008e-08,2.924622165043703060e-08,2.986848168555271111e-08,3.049074172066839494e-08,3.111300175578407877e-08,3.173526179089976259e-08,3.235752182601544642e-08,3.297978186113113024e-08,3.360204189624681407e-08,3.422430193136249789e-08,3.484656196647818172e-08,3.546882200159386554e-08,3.609108203670954937e-08,3.671334207182523319e-08,3.733560210694091702e-08,3.795786214205660084e-08,3.858012217717228467e-08,3.920238221228796849e-08 +0.000000000000000000e+00,6.050787674713959736e-10,1.210157534942791947e-09,1.815236302414187921e-09,2.420315069885583895e-09,3.025393837356979868e-09,3.630472604828375842e-09,4.235551372299771816e-09,4.840630139771167789e-09,5.445708907242563763e-09,6.050787674713959736e-09,6.655866442185355710e-09,7.260945209656751684e-09,7.866023977128148485e-09,8.471102744599545285e-09,9.076181512070942086e-09,9.681260279542338887e-09,1.028633904701373569e-08,1.089141781448513249e-08,1.149649658195652929e-08,1.210157534942792609e-08,1.270665411689932289e-08,1.331173288437071969e-08,1.391681165184211649e-08,1.452189041931351329e-08,1.512696918678491009e-08,1.573204795425630690e-08,1.633712672172770370e-08,1.694220548919910050e-08,1.754728425667049730e-08,1.815236302414189410e-08,1.875744179161329090e-08,1.936252055908468770e-08,1.996759932655608450e-08,2.057267809402748130e-08,2.117775686149887810e-08,2.178283562897027490e-08,2.238791439644167170e-08,2.299299316391306851e-08,2.359807193138446531e-08,2.420315069885586211e-08,2.480822946632725891e-08,2.541330823379865571e-08,2.601838700127005251e-08,2.662346576874144931e-08,2.722854453621284611e-08,2.783362330368424291e-08,2.843870207115563971e-08,2.904378083862703651e-08,2.964885960609843331e-08,3.025393837356982681e-08,3.085901714104122361e-08,3.146409590851262041e-08,3.206917467598401721e-08,3.267425344345541401e-08,3.327933221092681081e-08,3.388441097839820761e-08,3.448948974586960441e-08,3.509456851334100121e-08,3.569964728081239801e-08,3.630472604828379481e-08,3.690980481575519162e-08,3.751488358322658842e-08,3.811996235069798522e-08 +0.000000000000000000e+00,5.940329009868823666e-10,1.188065801973764733e-09,1.782098702960647203e-09,2.376131603947529880e-09,2.970164504934412557e-09,3.564197405921295234e-09,4.158230306908177910e-09,4.752263207895060587e-09,5.346296108881943264e-09,5.940329009868825941e-09,6.534361910855708618e-09,7.128394811842591295e-09,7.722427712829473971e-09,8.316460613816355821e-09,8.910493514803237671e-09,9.504526415790119520e-09,1.009855931677700137e-08,1.069259221776388322e-08,1.128662511875076507e-08,1.188065801973764692e-08,1.247469092072452877e-08,1.306872382171141062e-08,1.366275672269829247e-08,1.425678962368517432e-08,1.485082252467205617e-08,1.544485542565893802e-08,1.603888832664582152e-08,1.663292122763270502e-08,1.722695412861958853e-08,1.782098702960647203e-08,1.841501993059335554e-08,1.900905283158023904e-08,1.960308573256712254e-08,2.019711863355400605e-08,2.079115153454088955e-08,2.138518443552777306e-08,2.197921733651465656e-08,2.257325023750154006e-08,2.316728313848842357e-08,2.376131603947530707e-08,2.435534894046219058e-08,2.494938184144907408e-08,2.554341474243595758e-08,2.613744764342284109e-08,2.673148054440972459e-08,2.732551344539660810e-08,2.791954634638349160e-08,2.851357924737037510e-08,2.910761214835725861e-08,2.970164504934414211e-08,3.029567795033102562e-08,3.088971085131790912e-08,3.148374375230479262e-08,3.207777665329167613e-08,3.267180955427855963e-08,3.326584245526544314e-08,3.385987535625232664e-08,3.445390825723921014e-08,3.504794115822609365e-08,3.564197405921297715e-08,3.623600696019986066e-08,3.683003986118674416e-08,3.742407276217362766e-08 +0.000000000000000000e+00,-6.222600352006175932e-10,-1.244520070401235186e-09,-1.866780105601852883e-09,-2.489040140802470786e-09,-3.111300176003088690e-09,-3.733560211203706593e-09,-4.355820246404324496e-09,-4.978080281604942400e-09,-5.600340316805560303e-09,-6.222600352006178206e-09,-6.844860387206796110e-09,-7.467120422407414840e-09,-8.089380457608033571e-09,-8.711640492808652301e-09,-9.333900528009271032e-09,-9.956160563209889762e-09,-1.057842059841050849e-08,-1.120068063361112722e-08,-1.182294066881174595e-08,-1.244520070401236468e-08,-1.306746073921298341e-08,-1.368972077441360215e-08,-1.431198080961422088e-08,-1.493424084481483961e-08,-1.555650088001545834e-08,-1.617876091521607707e-08,-1.680102095041669580e-08,-1.742328098561731453e-08,-1.804554102081793326e-08,-1.866780105601855199e-08,-1.929006109121917072e-08,-1.991232112641978945e-08,-2.053458116162040818e-08,-2.115684119682102691e-08,-2.177910123202164564e-08,-2.240136126722226437e-08,-2.302362130242288310e-08,-2.364588133762350183e-08,-2.426814137282412056e-08,-2.489040140802473930e-08,-2.551266144322535803e-08,-2.613492147842597676e-08,-2.675718151362659549e-08,-2.737944154882721422e-08,-2.800170158402783295e-08,-2.862396161922845168e-08,-2.924622165442907041e-08,-2.986848168962968583e-08,-3.049074172483030456e-08,-3.111300176003092329e-08,-3.173526179523154202e-08,-3.235752183043216075e-08,-3.297978186563277948e-08,-3.360204190083339821e-08,-3.422430193603401694e-08,-3.484656197123463567e-08,-3.546882200643525441e-08,-3.609108204163587314e-08,-3.671334207683649187e-08,-3.733560211203711060e-08,-3.795786214723772933e-08,-3.858012218243834806e-08,-3.920238221763896679e-08 +0.000000000000000000e+00,-6.050787675611993538e-10,-1.210157535122398708e-09,-1.815236302683598165e-09,-2.420315070244797829e-09,-3.025393837805997493e-09,-3.630472605367197157e-09,-4.235551372928396821e-09,-4.840630140489596485e-09,-5.445708908050796149e-09,-6.050787675611995813e-09,-6.655866443173195477e-09,-7.260945210734395141e-09,-7.866023978295594805e-09,-8.471102745856793642e-09,-9.076181513417992479e-09,-9.681260280979191316e-09,-1.028633904854039015e-08,-1.089141781610158899e-08,-1.149649658366278783e-08,-1.210157535122398666e-08,-1.270665411878518550e-08,-1.331173288634638434e-08,-1.391681165390758317e-08,-1.452189042146878201e-08,-1.512696918902998085e-08,-1.573204795659117968e-08,-1.633712672415237852e-08,-1.694220549171357736e-08,-1.754728425927477619e-08,-1.815236302683597503e-08,-1.875744179439717387e-08,-1.936252056195837271e-08,-1.996759932951957154e-08,-2.057267809708077038e-08,-2.117775686464196922e-08,-2.178283563220316805e-08,-2.238791439976436689e-08,-2.299299316732556573e-08,-2.359807193488676456e-08,-2.420315070244796340e-08,-2.480822947000916224e-08,-2.541330823757036107e-08,-2.601838700513155991e-08,-2.662346577269275875e-08,-2.722854454025395758e-08,-2.783362330781515642e-08,-2.843870207537635526e-08,-2.904378084293755410e-08,-2.964885961049875293e-08,-3.025393837805994846e-08,-3.085901714562114399e-08,-3.146409591318233952e-08,-3.206917468074353504e-08,-3.267425344830473057e-08,-3.327933221586592610e-08,-3.388441098342712163e-08,-3.448948975098831716e-08,-3.509456851854951269e-08,-3.569964728611070821e-08,-3.630472605367190374e-08,-3.690980482123309927e-08,-3.751488358879429480e-08,-3.811996235635549033e-08 +0.000000000000000000e+00,-5.940329010647053798e-10,-1.188065802129410760e-09,-1.782098703194116036e-09,-2.376131604258821106e-09,-2.970164505323526175e-09,-3.564197406388231245e-09,-4.158230307452935901e-09,-4.752263208517640557e-09,-5.346296109582345213e-09,-5.940329010647049869e-09,-6.534361911711754525e-09,-7.128394812776459181e-09,-7.722427713841163837e-09,-8.316460614905868493e-09,-8.910493515970573149e-09,-9.504526417035277805e-09,-1.009855931809998246e-08,-1.069259221916468712e-08,-1.128662512022939177e-08,-1.188065802129409643e-08,-1.247469092235880109e-08,-1.306872382342350574e-08,-1.366275672448821040e-08,-1.425678962555291505e-08,-1.485082252661761971e-08,-1.544485542768232437e-08,-1.603888832874702902e-08,-1.663292122981173368e-08,-1.722695413087643833e-08,-1.782098703194114299e-08,-1.841501993300584765e-08,-1.900905283407055230e-08,-1.960308573513525696e-08,-2.019711863619996161e-08,-2.079115153726466627e-08,-2.138518443832937093e-08,-2.197921733939407558e-08,-2.257325024045878024e-08,-2.316728314152348489e-08,-2.376131604258818955e-08,-2.435534894365289421e-08,-2.494938184471759886e-08,-2.554341474578230352e-08,-2.613744764684700817e-08,-2.673148054791171283e-08,-2.732551344897641749e-08,-2.791954635004112214e-08,-2.851357925110582680e-08,-2.910761215217053145e-08,-2.970164505323523611e-08,-3.029567795429994407e-08,-3.088971085536465535e-08,-3.148374375642936662e-08,-3.207777665749407789e-08,-3.267180955855878917e-08,-3.326584245962350044e-08,-3.385987536068821172e-08,-3.445390826175292299e-08,-3.504794116281763426e-08,-3.564197406388234554e-08,-3.623600696494705681e-08,-3.683003986601176808e-08,-3.742407276707647936e-08 +0.000000000000000000e+00,6.450176812112233207e-10,1.290035362422446641e-09,1.935053043633669755e-09,2.580070724844892869e-09,3.225088406056115983e-09,3.870106087267339510e-09,4.515123768478563038e-09,5.160141449689786565e-09,5.805159130901010093e-09,6.450176812112233620e-09,7.095194493323457148e-09,7.740212174534680675e-09,8.385229855745904203e-09,9.030247536957127730e-09,9.675265218168351258e-09,1.032028289937957478e-08,1.096530058059079831e-08,1.161031826180202184e-08,1.225533594301324537e-08,1.290035362422446889e-08,1.354537130543569242e-08,1.419038898664691595e-08,1.483540666785813948e-08,1.548042434906936466e-08,1.612544203028058984e-08,1.677045971149181502e-08,1.741547739270304020e-08,1.806049507391426539e-08,1.870551275512549057e-08,1.935053043633671575e-08,1.999554811754794093e-08,2.064056579875916611e-08,2.128558347997039130e-08,2.193060116118161648e-08,2.257561884239284166e-08,2.322063652360406684e-08,2.386565420481529202e-08,2.451067188602651720e-08,2.515568956723774239e-08,2.580070724844896757e-08,2.644572492966019275e-08,2.709074261087141793e-08,2.773576029208264311e-08,2.838077797329386830e-08,2.902579565450509348e-08,2.967081333571631866e-08,3.031583101692754384e-08,3.096084869813876902e-08,3.160586637934999420e-08,3.225088406056121939e-08,3.289590174177244457e-08,3.354091942298366975e-08,3.418593710419489493e-08,3.483095478540612011e-08,3.547597246661734530e-08,3.612099014782857048e-08,3.676600782903979566e-08,3.741102551025102084e-08,3.805604319146224602e-08,3.870106087267347120e-08,3.934607855388469639e-08,3.999109623509592157e-08,4.063611391630714675e-08 +0.000000000000000000e+00,6.323786806567588192e-10,1.264757361313517638e-09,1.897136041970276458e-09,2.529514722627035277e-09,3.161893403283794096e-09,3.794272083940552915e-09,4.426650764597311735e-09,5.059029445254070554e-09,5.691408125910829373e-09,6.323786806567588192e-09,6.956165487224347011e-09,7.588544167881105831e-09,8.220922848537864650e-09,8.853301529194623469e-09,9.485680209851382288e-09,1.011805889050814111e-08,1.075043757116489993e-08,1.138281625182165875e-08,1.201519493247841757e-08,1.264757361313517638e-08,1.327995229379193520e-08,1.391233097444869402e-08,1.454470965510545284e-08,1.517708833576221166e-08,1.580946701641897213e-08,1.644184569707573261e-08,1.707422437773249308e-08,1.770660305838925356e-08,1.833898173904601403e-08,1.897136041970277450e-08,1.960373910035953498e-08,2.023611778101629545e-08,2.086849646167305592e-08,2.150087514232981640e-08,2.213325382298657687e-08,2.276563250364333734e-08,2.339801118430009782e-08,2.403038986495685829e-08,2.466276854561361876e-08,2.529514722627037924e-08,2.592752590692713971e-08,2.655990458758390019e-08,2.719228326824066066e-08,2.782466194889742113e-08,2.845704062955418161e-08,2.908941931021094208e-08,2.972179799086770255e-08,3.035417667152446303e-08,3.098655535218122350e-08,3.161893403283798397e-08,3.225131271349474445e-08,3.288369139415150492e-08,3.351607007480826539e-08,3.414844875546502587e-08,3.478082743612178634e-08,3.541320611677854682e-08,3.604558479743530729e-08,3.667796347809206776e-08,3.731034215874882824e-08,3.794272083940558871e-08,3.857509952006234918e-08,3.920747820071910966e-08,3.983985688137587013e-08 +0.000000000000000000e+00,6.258751184813597669e-10,1.251750236962719534e-09,1.877625355444079301e-09,2.503500473925439068e-09,3.129375592406798835e-09,3.755250710888158602e-09,4.381125829369518368e-09,5.007000947850878135e-09,5.632876066332237902e-09,6.258751184813597669e-09,6.884626303294957436e-09,7.510501421776317203e-09,8.136376540257676143e-09,8.762251658739035083e-09,9.388126777220394022e-09,1.001400189570175296e-08,1.063987701418311190e-08,1.126575213266447084e-08,1.189162725114582978e-08,1.251750236962718872e-08,1.314337748810854766e-08,1.376925260658990660e-08,1.439512772507126554e-08,1.502100284355262448e-08,1.564687796203398342e-08,1.627275308051534236e-08,1.689862819899670130e-08,1.752450331747806024e-08,1.815037843595941918e-08,1.877625355444077812e-08,1.940212867292213706e-08,2.002800379140349600e-08,2.065387890988485494e-08,2.127975402836621388e-08,2.190562914684757282e-08,2.253150426532893176e-08,2.315737938381029070e-08,2.378325450229164964e-08,2.440912962077300858e-08,2.503500473925436752e-08,2.566087985773572646e-08,2.628675497621708540e-08,2.691263009469844434e-08,2.753850521317980327e-08,2.816438033166116221e-08,2.879025545014252115e-08,2.941613056862388009e-08,3.004200568710524234e-08,3.066788080558660128e-08,3.129375592406796022e-08,3.191963104254931916e-08,3.254550616103067810e-08,3.317138127951203704e-08,3.379725639799339598e-08,3.442313151647475492e-08,3.504900663495611386e-08,3.567488175343747280e-08,3.630075687191883174e-08,3.692663199040019068e-08,3.755250710888154962e-08,3.817838222736290856e-08,3.880425734584426750e-08,3.943013246432562644e-08 +0.000000000000000000e+00,-6.450176812850652170e-10,-1.290035362570130434e-09,-1.935053043855195754e-09,-2.580070725140261281e-09,-3.225088406425326809e-09,-3.870106087710392336e-09,-4.515123768995458276e-09,-5.160141450280524217e-09,-5.805159131565590158e-09,-6.450176812850656099e-09,-7.095194494135722039e-09,-7.740212175420787980e-09,-8.385229856705853921e-09,-9.030247537990919862e-09,-9.675265219275985802e-09,-1.032028290056105174e-08,-1.096530058184611768e-08,-1.161031826313118362e-08,-1.225533594441624957e-08,-1.290035362570131551e-08,-1.354537130698638145e-08,-1.419038898827144739e-08,-1.483540666955651333e-08,-1.548042435084157927e-08,-1.612544203212664521e-08,-1.677045971341171115e-08,-1.741547739469677709e-08,-1.806049507598184303e-08,-1.870551275726690897e-08,-1.935053043855197491e-08,-1.999554811983704085e-08,-2.064056580112210680e-08,-2.128558348240717274e-08,-2.193060116369223868e-08,-2.257561884497730462e-08,-2.322063652626237056e-08,-2.386565420754743650e-08,-2.451067188883250244e-08,-2.515568957011756838e-08,-2.580070725140263432e-08,-2.644572493268770026e-08,-2.709074261397276620e-08,-2.773576029525783214e-08,-2.838077797654289808e-08,-2.902579565782796402e-08,-2.967081333911302997e-08,-3.031583102039809591e-08,-3.096084870168316516e-08,-3.160586638296823441e-08,-3.225088406425330365e-08,-3.289590174553837290e-08,-3.354091942682344215e-08,-3.418593710810851140e-08,-3.483095478939358065e-08,-3.547597247067864990e-08,-3.612099015196371915e-08,-3.676600783324878840e-08,-3.741102551453385765e-08,-3.805604319581892690e-08,-3.870106087710399615e-08,-3.934607855838906540e-08,-3.999109623967413465e-08,-4.063611392095920390e-08 +0.000000000000000000e+00,-6.323786807363571688e-10,-1.264757361472714338e-09,-1.897136042209071506e-09,-2.529514722945428675e-09,-3.161893403681785844e-09,-3.794272084418143013e-09,-4.426650765154500595e-09,-5.059029445890858178e-09,-5.691408126627215760e-09,-6.323786807363573342e-09,-6.956165488099930925e-09,-7.588544168836287680e-09,-8.220922849572644435e-09,-8.853301530309001190e-09,-9.485680211045357945e-09,-1.011805889178171470e-08,-1.075043757251807146e-08,-1.138281625325442821e-08,-1.201519493399078497e-08,-1.264757361472714172e-08,-1.327995229546349848e-08,-1.391233097619985523e-08,-1.454470965693621199e-08,-1.517708833767256874e-08,-1.580946701840892384e-08,-1.644184569914527894e-08,-1.707422437988163404e-08,-1.770660306061798915e-08,-1.833898174135434425e-08,-1.897136042209069935e-08,-1.960373910282705445e-08,-2.023611778356340955e-08,-2.086849646429976465e-08,-2.150087514503611975e-08,-2.213325382577247485e-08,-2.276563250650882995e-08,-2.339801118724518505e-08,-2.403038986798154015e-08,-2.466276854871789525e-08,-2.529514722945425036e-08,-2.592752591019060546e-08,-2.655990459092696056e-08,-2.719228327166331566e-08,-2.782466195239967076e-08,-2.845704063313602586e-08,-2.908941931387238096e-08,-2.972179799460873606e-08,-3.035417667534509116e-08,-3.098655535608144626e-08,-3.161893403681780136e-08,-3.225131271755415646e-08,-3.288369139829051157e-08,-3.351607007902686667e-08,-3.414844875976322177e-08,-3.478082744049957687e-08,-3.541320612123593197e-08,-3.604558480197228707e-08,-3.667796348270864217e-08,-3.731034216344499727e-08,-3.794272084418135237e-08,-3.857509952491770747e-08,-3.920747820565406257e-08,-3.983985688639041768e-08 +0.000000000000000000e+00,-6.258751185487272172e-10,-1.251750237097454434e-09,-1.877625355646181858e-09,-2.503500474194909282e-09,-3.129375592743636706e-09,-3.755250711292363717e-09,-4.381125829841090727e-09,-5.007000948389817737e-09,-5.632876066938544748e-09,-6.258751185487271758e-09,-6.884626304035998768e-09,-7.510501422584725779e-09,-8.136376541133451962e-09,-8.762251659682178145e-09,-9.388126778230904328e-09,-1.001400189677963051e-08,-1.063987701532835669e-08,-1.126575213387708288e-08,-1.189162725242580906e-08,-1.251750237097453524e-08,-1.314337748952326143e-08,-1.376925260807198761e-08,-1.439512772662071379e-08,-1.502100284516944163e-08,-1.564687796371816947e-08,-1.627275308226689731e-08,-1.689862820081562514e-08,-1.752450331936435298e-08,-1.815037843791308082e-08,-1.877625355646180866e-08,-1.940212867501053649e-08,-2.002800379355926433e-08,-2.065387891210799217e-08,-2.127975403065672001e-08,-2.190562914920544784e-08,-2.253150426775417568e-08,-2.315737938630290352e-08,-2.378325450485163136e-08,-2.440912962340035919e-08,-2.503500474194908703e-08,-2.566087986049781487e-08,-2.628675497904654271e-08,-2.691263009759527054e-08,-2.753850521614399838e-08,-2.816438033469272622e-08,-2.879025545324145406e-08,-2.941613057179018190e-08,-3.004200569033890973e-08,-3.066788080888763426e-08,-3.129375592743635879e-08,-3.191963104598508332e-08,-3.254550616453380785e-08,-3.317138128308253238e-08,-3.379725640163125691e-08,-3.442313152017998143e-08,-3.504900663872870596e-08,-3.567488175727743049e-08,-3.630075687582615502e-08,-3.692663199437487955e-08,-3.755250711292360408e-08,-3.817838223147232861e-08,-3.880425735002105314e-08,-3.943013246856977766e-08 +0.000000000000000000e+00,6.661685676237226083e-10,1.332337135247445217e-09,1.998505702871167721e-09,2.664674270494890020e-09,3.330842838118612318e-09,3.997011405742334616e-09,4.663179973366056914e-09,5.329348540989779212e-09,5.995517108613501510e-09,6.661685676237223808e-09,7.327854243860946106e-09,7.994022811484667577e-09,8.660191379108389875e-09,9.326359946732112173e-09,9.992528514355834472e-09,1.065869708197955677e-08,1.132486564960327907e-08,1.199103421722700137e-08,1.265720278485072366e-08,1.332337135247444596e-08,1.398953992009816826e-08,1.465570848772189056e-08,1.532187705534561286e-08,1.598804562296933515e-08,1.665421419059305745e-08,1.732038275821677975e-08,1.798655132584050205e-08,1.865271989346422435e-08,1.931888846108794665e-08,1.998505702871166894e-08,2.065122559633539124e-08,2.131739416395911354e-08,2.198356273158283584e-08,2.264973129920655814e-08,2.331589986683028043e-08,2.398206843445400273e-08,2.464823700207772503e-08,2.531440556970144733e-08,2.598057413732516963e-08,2.664674270494889192e-08,2.731291127257261422e-08,2.797907984019633652e-08,2.864524840782005882e-08,2.931141697544378112e-08,2.997758554306750672e-08,3.064375411069123233e-08,3.130992267831495794e-08,3.197609124593868354e-08,3.264225981356240915e-08,3.330842838118613476e-08,3.397459694880986036e-08,3.464076551643358597e-08,3.530693408405731158e-08,3.597310265168103718e-08,3.663927121930476279e-08,3.730543978692848840e-08,3.797160835455221401e-08,3.863777692217593961e-08,3.930394548979966522e-08,3.997011405742339083e-08,4.063628262504711643e-08,4.130245119267084204e-08,4.196861976029456765e-08 +0.000000000000000000e+00,6.553226529768788722e-10,1.310645305953757744e-09,1.965967958930636617e-09,2.621290611907515489e-09,3.276613264884394361e-09,3.931935917861273233e-09,4.587258570838152519e-09,5.242581223815031805e-09,5.897903876791911091e-09,6.553226529768790376e-09,7.208549182745669662e-09,7.863871835722548121e-09,8.519194488699426579e-09,9.174517141676305038e-09,9.829839794653183497e-09,1.048516244763006196e-08,1.114048510060694041e-08,1.179580775358381887e-08,1.245113040656069733e-08,1.310645305953757579e-08,1.376177571251445425e-08,1.441709836549133271e-08,1.507242101846821282e-08,1.572774367144509293e-08,1.638306632442197305e-08,1.703838897739885316e-08,1.769371163037573327e-08,1.834903428335261338e-08,1.900435693632949350e-08,1.965967958930637361e-08,2.031500224228325372e-08,2.097032489526013384e-08,2.162564754823701395e-08,2.228097020121389406e-08,2.293629285419077418e-08,2.359161550716765429e-08,2.424693816014453440e-08,2.490226081312141451e-08,2.555758346609829463e-08,2.621290611907517474e-08,2.686822877205205485e-08,2.752355142502893497e-08,2.817887407800581508e-08,2.883419673098269519e-08,2.948951938395957531e-08,3.014484203693645211e-08,3.080016468991332891e-08,3.145548734289020572e-08,3.211080999586708252e-08,3.276613264884395933e-08,3.342145530182083613e-08,3.407677795479771293e-08,3.473210060777458974e-08,3.538742326075146654e-08,3.604274591372834335e-08,3.669806856670522015e-08,3.735339121968209696e-08,3.800871387265897376e-08,3.866403652563585056e-08,3.931935917861272737e-08,3.997468183158960417e-08,4.063000448456648098e-08,4.128532713754335778e-08 +0.000000000000000000e+00,6.521492982174728787e-10,1.304298596434945757e-09,1.956447894652418740e-09,2.608597192869891929e-09,3.260746491087365118e-09,3.912895789304838306e-09,4.565045087522311495e-09,5.217194385739784684e-09,5.869343683957257873e-09,6.521492982174731062e-09,7.173642280392204251e-09,7.825791578609678267e-09,8.477940876827151456e-09,9.130090175044624645e-09,9.782239473262097834e-09,1.043438877147957102e-08,1.108653806969704421e-08,1.173868736791451740e-08,1.239083666613199059e-08,1.304298596434946378e-08,1.369513526256693697e-08,1.434728456078441016e-08,1.499943385900188335e-08,1.565158315721935653e-08,1.630373245543682972e-08,1.695588175365430291e-08,1.760803105187177610e-08,1.826018035008924929e-08,1.891232964830672248e-08,1.956447894652419567e-08,2.021662824474166886e-08,2.086877754295914205e-08,2.152092684117661524e-08,2.217307613939408842e-08,2.282522543761156161e-08,2.347737473582903480e-08,2.412952403404650799e-08,2.478167333226398118e-08,2.543382263048145437e-08,2.608597192869892756e-08,2.673812122691640075e-08,2.739027052513387394e-08,2.804241982335134712e-08,2.869456912156882031e-08,2.934671841978629350e-08,2.999886771800376669e-08,3.065101701622123988e-08,3.130316631443871307e-08,3.195531561265618626e-08,3.260746491087365945e-08,3.325961420909113264e-08,3.391176350730860582e-08,3.456391280552607901e-08,3.521606210374355220e-08,3.586821140196102539e-08,3.652036070017849858e-08,3.717250999839597177e-08,3.782465929661344496e-08,3.847680859483091815e-08,3.912895789304839134e-08,3.978110719126586453e-08,4.043325648948333771e-08,4.108540578770081090e-08 +0.000000000000000000e+00,-6.661685676847772229e-10,-1.332337135369554446e-09,-1.998505703054331565e-09,-2.664674270739108478e-09,-3.330842838423885391e-09,-3.997011406108662303e-09,-4.663179973793438803e-09,-5.329348541478215302e-09,-5.995517109162991801e-09,-6.661685676847768300e-09,-7.327854244532544799e-09,-7.994022812217321298e-09,-8.660191379902097797e-09,-9.326359947586874296e-09,-9.992528515271650795e-09,-1.065869708295642729e-08,-1.132486565064120379e-08,-1.199103421832598029e-08,-1.265720278601075679e-08,-1.332337135369553329e-08,-1.398953992138030979e-08,-1.465570848906508629e-08,-1.532187705674986444e-08,-1.598804562443464260e-08,-1.665421419211942075e-08,-1.732038275980419890e-08,-1.798655132748897706e-08,-1.865271989517375521e-08,-1.931888846285853336e-08,-1.998505703054331152e-08,-2.065122559822808967e-08,-2.131739416591286782e-08,-2.198356273359764598e-08,-2.264973130128242413e-08,-2.331589986896720228e-08,-2.398206843665198044e-08,-2.464823700433675859e-08,-2.531440557202153675e-08,-2.598057413970631490e-08,-2.664674270739109305e-08,-2.731291127507587121e-08,-2.797907984276064936e-08,-2.864524841044542751e-08,-2.931141697813020567e-08,-2.997758554581498382e-08,-3.064375411349976197e-08,-3.130992268118454013e-08,-3.197609124886931828e-08,-3.264225981655409643e-08,-3.330842838423887459e-08,-3.397459695192365274e-08,-3.464076551960843089e-08,-3.530693408729320905e-08,-3.597310265497798720e-08,-3.663927122266276535e-08,-3.730543979034754351e-08,-3.797160835803232166e-08,-3.863777692571709981e-08,-3.930394549340187797e-08,-3.997011406108665612e-08,-4.063628262877143428e-08,-4.130245119645621243e-08,-4.196861976414099058e-08 +0.000000000000000000e+00,-6.553226530444445356e-10,-1.310645306088889071e-09,-1.965967959133333503e-09,-2.621290612177777729e-09,-3.276613265222221954e-09,-3.931935918266666180e-09,-4.587258571311110405e-09,-5.242581224355554630e-09,-5.897903877399998856e-09,-6.553226530444443081e-09,-7.208549183488887307e-09,-7.863871836533330705e-09,-8.519194489577774930e-09,-9.174517142622219156e-09,-9.829839795666663381e-09,-1.048516244871110761e-08,-1.114048510175555183e-08,-1.179580775479999606e-08,-1.245113040784444028e-08,-1.310645306088888451e-08,-1.376177571393332873e-08,-1.441709836697777296e-08,-1.507242102002221718e-08,-1.572774367306666141e-08,-1.638306632611110564e-08,-1.703838897915554986e-08,-1.769371163219999409e-08,-1.834903428524443831e-08,-1.900435693828888254e-08,-1.965967959133332676e-08,-2.031500224437777099e-08,-2.097032489742221521e-08,-2.162564755046665944e-08,-2.228097020351110366e-08,-2.293629285655554789e-08,-2.359161550959999211e-08,-2.424693816264443634e-08,-2.490226081568888057e-08,-2.555758346873332479e-08,-2.621290612177776902e-08,-2.686822877482221324e-08,-2.752355142786665747e-08,-2.817887408091110169e-08,-2.883419673395554592e-08,-2.948951938699999014e-08,-3.014484204004443437e-08,-3.080016469308887529e-08,-3.145548734613331620e-08,-3.211080999917775712e-08,-3.276613265222219804e-08,-3.342145530526663895e-08,-3.407677795831107987e-08,-3.473210061135552079e-08,-3.538742326439996170e-08,-3.604274591744440262e-08,-3.669806857048884354e-08,-3.735339122353328445e-08,-3.800871387657772537e-08,-3.866403652962216629e-08,-3.931935918266660720e-08,-3.997468183571104812e-08,-4.063000448875548904e-08,-4.128532714179992995e-08 +0.000000000000000000e+00,-6.521492982729200360e-10,-1.304298596545840072e-09,-1.956447894818760211e-09,-2.608597193091680558e-09,-3.260746491364600904e-09,-3.912895789637521250e-09,-4.565045087910442010e-09,-5.217194386183362769e-09,-5.869343684456283529e-09,-6.521492982729204289e-09,-7.173642281002125049e-09,-7.825791579275045808e-09,-8.477940877547966568e-09,-9.130090175820887328e-09,-9.782239474093808088e-09,-1.043438877236672885e-08,-1.108653807063964961e-08,-1.173868736891257037e-08,-1.239083666718549113e-08,-1.304298596545841189e-08,-1.369513526373133265e-08,-1.434728456200425341e-08,-1.499943386027717417e-08,-1.565158315855009493e-08,-1.630373245682301569e-08,-1.695588175509593645e-08,-1.760803105336885720e-08,-1.826018035164177796e-08,-1.891232964991469872e-08,-1.956447894818761948e-08,-2.021662824646054024e-08,-2.086877754473346100e-08,-2.152092684300638176e-08,-2.217307614127930252e-08,-2.282522543955222328e-08,-2.347737473782514404e-08,-2.412952403609806480e-08,-2.478167333437098556e-08,-2.543382263264390632e-08,-2.608597193091682708e-08,-2.673812122918974784e-08,-2.739027052746266860e-08,-2.804241982573558936e-08,-2.869456912400851012e-08,-2.934671842228143088e-08,-2.999886772055435495e-08,-3.065101701882727571e-08,-3.130316631710019647e-08,-3.195531561537311723e-08,-3.260746491364603799e-08,-3.325961421191895875e-08,-3.391176351019187951e-08,-3.456391280846480027e-08,-3.521606210673772103e-08,-3.586821140501064179e-08,-3.652036070328356255e-08,-3.717251000155648331e-08,-3.782465929982940407e-08,-3.847680859810232483e-08,-3.912895789637524559e-08,-3.978110719464816635e-08,-4.043325649292108711e-08,-4.108540579119400787e-08 +0.000000000000000000e+00,6.869507038974798385e-10,1.373901407794959677e-09,2.060852111692439722e-09,2.747802815589919768e-09,3.434753519487399813e-09,4.121704223384879445e-09,4.808654927282359076e-09,5.495605631179838708e-09,6.182556335077318340e-09,6.869507038974797971e-09,7.556457742872278430e-09,8.243408446769758889e-09,8.930359150667239348e-09,9.617309854564719807e-09,1.030426055846220027e-08,1.099121126235968072e-08,1.167816196625716118e-08,1.236511267015464164e-08,1.305206337405212210e-08,1.373901407794960256e-08,1.442596478184708302e-08,1.511291548574456348e-08,1.579986618964204394e-08,1.648681689353952440e-08,1.717376759743700485e-08,1.786071830133448531e-08,1.854766900523196577e-08,1.923461970912944623e-08,1.992157041302692669e-08,2.060852111692440715e-08,2.129547182082188761e-08,2.198242252471936807e-08,2.266937322861684853e-08,2.335632393251432898e-08,2.404327463641180944e-08,2.473022534030928990e-08,2.541717604420677036e-08,2.610412674810425082e-08,2.679107745200173128e-08,2.747802815589921174e-08,2.816497885979669220e-08,2.885192956369417266e-08,2.953888026759165311e-08,3.022583097148913357e-08,3.091278167538661072e-08,3.159973237928408787e-08,3.228668308318156502e-08,3.297363378707904217e-08,3.366058449097651932e-08,3.434753519487399647e-08,3.503448589877147362e-08,3.572143660266895078e-08,3.640838730656642793e-08,3.709533801046390508e-08,3.778228871436138223e-08,3.846923941825885938e-08,3.915619012215633653e-08,3.984314082605381368e-08,4.053009152995129083e-08,4.121704223384876798e-08,4.190399293774624513e-08,4.259094364164372228e-08,4.327789434554119943e-08 +0.000000000000000000e+00,6.765176898702335644e-10,1.353035379740467129e-09,2.029553069610700797e-09,2.706070759480934671e-09,3.382588449351168546e-09,4.059106139221402421e-09,4.735623829091636295e-09,5.412141518961870170e-09,6.088659208832104044e-09,6.765176898702337919e-09,7.441694588572571794e-09,8.118212278442806495e-09,8.794729968313040370e-09,9.471247658183274245e-09,1.014776534805350812e-08,1.082428303792374199e-08,1.150080072779397587e-08,1.217731841766420974e-08,1.285383610753444362e-08,1.353035379740467749e-08,1.420687148727491137e-08,1.488338917714514524e-08,1.555990686701537912e-08,1.623642455688561299e-08,1.691294224675584687e-08,1.758945993662608074e-08,1.826597762649631461e-08,1.894249531636654849e-08,1.961901300623678236e-08,2.029553069610701624e-08,2.097204838597725011e-08,2.164856607584748399e-08,2.232508376571771786e-08,2.300160145558795174e-08,2.367811914545818561e-08,2.435463683532841949e-08,2.503115452519865336e-08,2.570767221506888724e-08,2.638418990493912111e-08,2.706070759480935498e-08,2.773722528467958886e-08,2.841374297454982273e-08,2.909026066442005661e-08,2.976677835429029048e-08,3.044329604416052436e-08,3.111981373403075823e-08,3.179633142390099211e-08,3.247284911377122598e-08,3.314936680364145986e-08,3.382588449351169373e-08,3.450240218338192761e-08,3.517891987325216148e-08,3.585543756312239536e-08,3.653195525299262923e-08,3.720847294286286310e-08,3.788499063273309698e-08,3.856150832260333085e-08,3.923802601247356473e-08,3.991454370234379860e-08,4.059106139221403248e-08,4.126757908208426635e-08,4.194409677195450023e-08,4.262061446182473410e-08 +0.000000000000000000e+00,6.764254420448491669e-10,1.352850884089698334e-09,2.029276326134547604e-09,2.705701768179397081e-09,3.382127210224246558e-09,4.058552652269096035e-09,4.734978094313945926e-09,5.411403536358795817e-09,6.087828978403645707e-09,6.764254420448495598e-09,7.440679862493345489e-09,8.117105304538195379e-09,8.793530746583045270e-09,9.469956188627895161e-09,1.014638163067274505e-08,1.082280707271759494e-08,1.149923251476244483e-08,1.217565795680729472e-08,1.285208339885214461e-08,1.352850884089699450e-08,1.420493428294184440e-08,1.488135972498669429e-08,1.555778516703154252e-08,1.623421060907639076e-08,1.691063605112123899e-08,1.758706149316608723e-08,1.826348693521093547e-08,1.893991237725578370e-08,1.961633781930063194e-08,2.029276326134548018e-08,2.096918870339032841e-08,2.164561414543517665e-08,2.232203958748002489e-08,2.299846502952487312e-08,2.367489047156972136e-08,2.435131591361456959e-08,2.502774135565941783e-08,2.570416679770426607e-08,2.638059223974911430e-08,2.705701768179396254e-08,2.773344312383881078e-08,2.840986856588365901e-08,2.908629400792850725e-08,2.976271944997335548e-08,3.043914489201820372e-08,3.111557033406305196e-08,3.179199577610790019e-08,3.246842121815274843e-08,3.314484666019759667e-08,3.382127210224244490e-08,3.449769754428729314e-08,3.517412298633214138e-08,3.585054842837698961e-08,3.652697387042183785e-08,3.720339931246668608e-08,3.787982475451153432e-08,3.855625019655638256e-08,3.923267563860123079e-08,3.990910108064607903e-08,4.058552652269092727e-08,4.126195196473577550e-08,4.193837740678062374e-08,4.261480284882547197e-08 +0.000000000000000000e+00,-6.869507039452918085e-10,-1.373901407890583617e-09,-2.060852111835875322e-09,-2.747802815781166820e-09,-3.434753519726458319e-09,-4.121704223671749817e-09,-4.808654927617041315e-09,-5.495605631562332814e-09,-6.182556335507624312e-09,-6.869507039452915810e-09,-7.556457743398206481e-09,-8.243408447343497980e-09,-8.930359151288789478e-09,-9.617309855234080976e-09,-1.030426055917937247e-08,-1.099121126312466397e-08,-1.167816196706995547e-08,-1.236511267101524697e-08,-1.305206337496053847e-08,-1.373901407890582997e-08,-1.442596478285112146e-08,-1.511291548679641296e-08,-1.579986619074170446e-08,-1.648681689468699596e-08,-1.717376759863228746e-08,-1.786071830257757896e-08,-1.854766900652287045e-08,-1.923461971046816195e-08,-1.992157041441345345e-08,-2.060852111835874495e-08,-2.129547182230403645e-08,-2.198242252624932795e-08,-2.266937323019461944e-08,-2.335632393413991094e-08,-2.404327463808520244e-08,-2.473022534203049394e-08,-2.541717604597578544e-08,-2.610412674992107694e-08,-2.679107745386636843e-08,-2.747802815781165993e-08,-2.816497886175695143e-08,-2.885192956570224293e-08,-2.953888026964753443e-08,-3.022583097359282592e-08,-3.091278167753811411e-08,-3.159973238148340230e-08,-3.228668308542869049e-08,-3.297363378937397868e-08,-3.366058449331926687e-08,-3.434753519726455506e-08,-3.503448590120984325e-08,-3.572143660515513144e-08,-3.640838730910041963e-08,-3.709533801304570782e-08,-3.778228871699099601e-08,-3.846923942093628420e-08,-3.915619012488157239e-08,-3.984314082882686058e-08,-4.053009153277214877e-08,-4.121704223671743696e-08,-4.190399294066272515e-08,-4.259094364460801334e-08,-4.327789434855330153e-08 +0.000000000000000000e+00,-6.765176899246973073e-10,-1.353035379849394615e-09,-2.029553069774092129e-09,-2.706070759698789643e-09,-3.382588449623487157e-09,-4.059106139548184257e-09,-4.735623829472881358e-09,-5.412141519397578458e-09,-6.088659209322275559e-09,-6.765176899246972660e-09,-7.441694589171669760e-09,-8.118212279096366861e-09,-8.794729969021063961e-09,-9.471247658945761062e-09,-1.014776534887045816e-08,-1.082428303879515526e-08,-1.150080072871985236e-08,-1.217731841864454946e-08,-1.285383610856924656e-08,-1.353035379849394366e-08,-1.420687148841864077e-08,-1.488338917834333787e-08,-1.555990686826803497e-08,-1.623642455819273041e-08,-1.691294224811742586e-08,-1.758945993804212130e-08,-1.826597762796681675e-08,-1.894249531789151220e-08,-1.961901300781620764e-08,-2.029553069774090309e-08,-2.097204838766559854e-08,-2.164856607759029398e-08,-2.232508376751498943e-08,-2.300160145743968487e-08,-2.367811914736438032e-08,-2.435463683728907577e-08,-2.503115452721377121e-08,-2.570767221713846666e-08,-2.638418990706316210e-08,-2.706070759698785755e-08,-2.773722528691255300e-08,-2.841374297683724844e-08,-2.909026066676194389e-08,-2.976677835668663934e-08,-3.044329604661133478e-08,-3.111981373653603023e-08,-3.179633142646072567e-08,-3.247284911638542112e-08,-3.314936680631011657e-08,-3.382588449623481201e-08,-3.450240218615950746e-08,-3.517891987608420290e-08,-3.585543756600889835e-08,-3.653195525593359380e-08,-3.720847294585828924e-08,-3.788499063578298469e-08,-3.856150832570768014e-08,-3.923802601563237558e-08,-3.991454370555707103e-08,-4.059106139548176647e-08,-4.126757908540646192e-08,-4.194409677533115737e-08,-4.262061446525585281e-08 +0.000000000000000000e+00,-6.764254420876455272e-10,-1.352850884175291054e-09,-2.029276326262936375e-09,-2.705701768350581695e-09,-3.382127210438227016e-09,-4.058552652525872750e-09,-4.734978094613518484e-09,-5.411403536701164218e-09,-6.087828978788809952e-09,-6.764254420876455686e-09,-7.440679862964101420e-09,-8.117105305051747154e-09,-8.793530747139392061e-09,-9.469956189227036968e-09,-1.014638163131468187e-08,-1.082280707340232678e-08,-1.149923251548997169e-08,-1.217565795757761659e-08,-1.285208339966526150e-08,-1.352850884175290641e-08,-1.420493428384055132e-08,-1.488135972592819622e-08,-1.555778516801584113e-08,-1.623421061010348438e-08,-1.691063605219112763e-08,-1.758706149427877089e-08,-1.826348693636641414e-08,-1.893991237845405739e-08,-1.961633782054170064e-08,-2.029276326262934390e-08,-2.096918870471698715e-08,-2.164561414680463040e-08,-2.232203958889227365e-08,-2.299846503097991691e-08,-2.367489047306756016e-08,-2.435131591515520341e-08,-2.502774135724284666e-08,-2.570416679933048992e-08,-2.638059224141813317e-08,-2.705701768350577642e-08,-2.773344312559341967e-08,-2.840986856768106293e-08,-2.908629400976870618e-08,-2.976271945185634943e-08,-3.043914489394399268e-08,-3.111557033603163594e-08,-3.179199577811927919e-08,-3.246842122020692244e-08,-3.314484666229456569e-08,-3.382127210438220895e-08,-3.449769754646985220e-08,-3.517412298855749545e-08,-3.585054843064513870e-08,-3.652697387273278196e-08,-3.720339931482042521e-08,-3.787982475690806846e-08,-3.855625019899571171e-08,-3.923267564108335497e-08,-3.990910108317099822e-08,-4.058552652525864147e-08,-4.126195196734628472e-08,-4.193837740943392798e-08,-4.261480285152157123e-08 +0.000000000000000000e+00,6.956601187185481025e-10,1.391320237437096205e-09,2.086980356155644308e-09,2.782640474874192410e-09,3.478300593592740513e-09,4.173960712311288615e-09,4.869620831029836718e-09,5.565280949748384820e-09,6.260941068466932923e-09,6.956601187185481025e-09,7.652261305904028301e-09,8.347921424622575576e-09,9.043581543341122851e-09,9.739241662059670127e-09,1.043490178077821740e-08,1.113056189949676468e-08,1.182622201821531195e-08,1.252188213693385923e-08,1.321754225565240650e-08,1.391320237437095378e-08,1.460886249308950105e-08,1.530452261180804998e-08,1.600018273052659891e-08,1.669584284924514784e-08,1.739150296796369677e-08,1.808716308668224570e-08,1.878282320540079463e-08,1.947848332411934356e-08,2.017414344283789249e-08,2.086980356155644142e-08,2.156546368027499035e-08,2.226112379899353928e-08,2.295678391771208821e-08,2.365244403643063714e-08,2.434810415514918607e-08,2.504376427386773500e-08,2.573942439258628393e-08,2.643508451130483286e-08,2.713074463002338179e-08,2.782640474874193072e-08,2.852206486746047965e-08,2.921772498617902858e-08,2.991338510489757751e-08,3.060904522361612644e-08,3.130470534233467537e-08,3.200036546105322430e-08,3.269602557977177323e-08,3.339168569849032216e-08,3.408734581720887109e-08,3.478300593592742002e-08,3.547866605464596895e-08,3.617432617336451788e-08,3.686998629208306681e-08,3.756564641080161574e-08,3.826130652952016466e-08,3.895696664823871359e-08,3.965262676695726252e-08,4.034828688567581145e-08,4.104394700439436038e-08,4.173960712311290931e-08,4.243526724183145824e-08,4.313092736055000717e-08,4.382658747926855610e-08 +0.000000000000000000e+00,-6.956601187596700425e-10,-1.391320237519340085e-09,-2.086980356279010024e-09,-2.782640475038679757e-09,-3.478300593798349489e-09,-4.173960712558019221e-09,-4.869620831317688954e-09,-5.565280950077358686e-09,-6.260941068837028418e-09,-6.956601187596698151e-09,-7.652261306356367056e-09,-8.347921425116036788e-09,-9.043581543875706520e-09,-9.739241662635376253e-09,-1.043490178139504599e-08,-1.113056190015471572e-08,-1.182622201891438545e-08,-1.252188213767405518e-08,-1.321754225643372491e-08,-1.391320237519339465e-08,-1.460886249395306438e-08,-1.530452261271273411e-08,-1.600018273147240384e-08,-1.669584285023207358e-08,-1.739150296899174331e-08,-1.808716308775141304e-08,-1.878282320651108277e-08,-1.947848332527075251e-08,-2.017414344403042224e-08,-2.086980356279009197e-08,-2.156546368154976170e-08,-2.226112380030943143e-08,-2.295678391906910117e-08,-2.365244403782877090e-08,-2.434810415658844063e-08,-2.504376427534811036e-08,-2.573942439410778010e-08,-2.643508451286744983e-08,-2.713074463162711956e-08,-2.782640475038678929e-08,-2.852206486914645903e-08,-2.921772498790612876e-08,-2.991338510666579849e-08,-3.060904522542546822e-08,-3.130470534418513796e-08,-3.200036546294480769e-08,-3.269602558170447742e-08,-3.339168570046414715e-08,-3.408734581922381688e-08,-3.478300593798348662e-08,-3.547866605674315635e-08,-3.617432617550282608e-08,-3.686998629426249581e-08,-3.756564641302216555e-08,-3.826130653178183528e-08,-3.895696665054150501e-08,-3.965262676930117474e-08,-4.034828688806084448e-08,-4.104394700682051421e-08,-4.173960712558018394e-08,-4.243526724433985367e-08,-4.313092736309952340e-08,-4.382658748185919314e-08 +0.000000000000000000e+00,6.538255980837803268e-10,1.307651196167560654e-09,1.961476794251341187e-09,2.615302392335121721e-09,3.269127990418902255e-09,3.922953588502682375e-09,4.576779186586462495e-09,5.230604784670242615e-09,5.884430382754022735e-09,6.538255980837802855e-09,7.192081578921582975e-09,7.845907177005363095e-09,8.499732775089142388e-09,9.153558373172921681e-09,9.807383971256700974e-09,1.046120956934048027e-08,1.111503516742425956e-08,1.176886076550803885e-08,1.242268636359181815e-08,1.307651196167559744e-08,1.373033755975937673e-08,1.438416315784315602e-08,1.503798875592693532e-08,1.569181435401071626e-08,1.634563995209449721e-08,1.699946555017827816e-08,1.765329114826205911e-08,1.830711674634584005e-08,1.896094234442962100e-08,1.961476794251340195e-08,2.026859354059718289e-08,2.092241913868096384e-08,2.157624473676474479e-08,2.223007033484852574e-08,2.288389593293230668e-08,2.353772153101608763e-08,2.419154712909986858e-08,2.484537272718364953e-08,2.549919832526743047e-08,2.615302392335121142e-08,2.680684952143499237e-08,2.746067511951877331e-08,2.811450071760255426e-08,2.876832631568633521e-08,2.942215191377011616e-08,3.007597751185389710e-08,3.072980310993767474e-08,3.138362870802145238e-08,3.203745430610523002e-08,3.269127990418900766e-08,3.334510550227278530e-08,3.399893110035656293e-08,3.465275669844034057e-08,3.530658229652411821e-08,3.596040789460789585e-08,3.661423349269167349e-08,3.726805909077545113e-08,3.792188468885922876e-08,3.857571028694300640e-08,3.922953588502678404e-08,3.988336148311056168e-08,4.053718708119433932e-08,4.119101267927811696e-08 +0.000000000000000000e+00,6.526614660678273153e-10,1.305322932135654631e-09,1.957984398203482049e-09,2.610645864271309675e-09,3.263307330339137300e-09,3.915968796406964926e-09,4.568630262474792552e-09,5.221291728542620177e-09,5.873953194610447803e-09,6.526614660678275428e-09,7.179276126746103054e-09,7.831937592813931506e-09,8.484599058881760786e-09,9.137260524949590066e-09,9.789921991017419346e-09,1.044258345708524863e-08,1.109524492315307791e-08,1.174790638922090719e-08,1.240056785528873647e-08,1.305322932135656575e-08,1.370589078742439503e-08,1.435855225349222431e-08,1.501121371956005359e-08,1.566387518562788287e-08,1.631653665169571215e-08,1.696919811776354142e-08,1.762185958383137070e-08,1.827452104989919998e-08,1.892718251596702926e-08,1.957984398203485854e-08,2.023250544810268782e-08,2.088516691417051710e-08,2.153782838023834638e-08,2.219048984630617566e-08,2.284315131237400494e-08,2.349581277844183422e-08,2.414847424450966350e-08,2.480113571057749278e-08,2.545379717664532206e-08,2.610645864271315134e-08,2.675912010878098062e-08,2.741178157484880990e-08,2.806444304091663918e-08,2.871710450698446846e-08,2.936976597305229774e-08,3.002242743912012702e-08,3.067508890518795630e-08,3.132775037125578558e-08,3.198041183732361486e-08,3.263307330339144414e-08,3.328573476945927342e-08,3.393839623552710270e-08,3.459105770159493198e-08,3.524371916766276126e-08,3.589638063373059054e-08,3.654904209979841982e-08,3.720170356586624910e-08,3.785436503193407838e-08,3.850702649800190766e-08,3.915968796406973694e-08,3.981234943013756622e-08,4.046501089620539550e-08,4.111767236227322478e-08 +0.000000000000000000e+00,-5.857540885930139609e-20,-1.171508177186027922e-19,-1.757262265779041883e-19,-2.343016354372055844e-19,-2.928770442965069804e-19,-3.514524531558083765e-19,-4.100278620151097726e-19,-4.686032708744111687e-19,-5.271786797337126130e-19,-5.857540885930140572e-19,-6.443294974523155014e-19,-7.029049063116169457e-19,-7.614803151709183899e-19,-8.200557240302198341e-19,-8.786311328895212784e-19,-9.372065417488227226e-19,-9.957819506081241669e-19,-1.054357359467425611e-18,-1.112932768326727055e-18,-1.171508177186028500e-18,-1.230083586045329944e-18,-1.288658994904631388e-18,-1.347234403763932832e-18,-1.405809812623234277e-18,-1.464385221482535721e-18,-1.522960630341837165e-18,-1.581536039201138609e-18,-1.640111448060440053e-18,-1.698686856919741498e-18,-1.757262265779042942e-18,-1.815837674638344386e-18,-1.874413083497645830e-18,-1.932988492356947275e-18,-1.991563901216248719e-18,-2.050139310075550163e-18,-2.108714718934851607e-18,-2.167290127794153052e-18,-2.225865536653454496e-18,-2.284440945512755940e-18,-2.343016354372057384e-18,-2.401591763231358829e-18,-2.460167172090660273e-18,-2.518742580949961717e-18,-2.577317989809263161e-18,-2.635893398668564606e-18,-2.694468807527866050e-18,-2.753044216387167494e-18,-2.811619625246468938e-18,-2.870195034105770382e-18,-2.928770442965071827e-18,-2.987345851824373271e-18,-3.045921260683674715e-18,-3.104496669542976159e-18,-3.163072078402277604e-18,-3.221647487261579048e-18,-3.280222896120880492e-18,-3.338798304980181936e-18,-3.397373713839483381e-18,-3.455949122698784825e-18,-3.514524531558086654e-18,-3.573099940417388098e-18,-3.631675349276689543e-18,-3.690250758135990987e-18 +0.000000000000000000e+00,6.266050607162369643e-10,1.253210121432473929e-09,1.879815182148711100e-09,2.506420242864948271e-09,3.133025303581185442e-09,3.759630364297422199e-09,4.386235425013658957e-09,5.012840485729895714e-09,5.639445546446132472e-09,6.266050607162369229e-09,6.892655667878605987e-09,7.519260728594842744e-09,8.145865789311078675e-09,8.772470850027314605e-09,9.399075910743550535e-09,1.002568097145978647e-08,1.065228603217602240e-08,1.127889109289225833e-08,1.190549615360849426e-08,1.253210121432473019e-08,1.315870627504096612e-08,1.378531133575720205e-08,1.441191639647343798e-08,1.503852145718967556e-08,1.566512651790591315e-08,1.629173157862215073e-08,1.691833663933838832e-08,1.754494170005462590e-08,1.817154676077086349e-08,1.879815182148710107e-08,1.942475688220333866e-08,2.005136194291957624e-08,2.067796700363581382e-08,2.130457206435205141e-08,2.193117712506828899e-08,2.255778218578452658e-08,2.318438724650076416e-08,2.381099230721700175e-08,2.443759736793323933e-08,2.506420242864947692e-08,2.569080748936571450e-08,2.631741255008195209e-08,2.694401761079818967e-08,2.757062267151442726e-08,2.819722773223066484e-08,2.882383279294690243e-08,2.945043785366314001e-08,3.007704291437937760e-08,3.070364797509561849e-08,3.133025303581185938e-08,3.195685809652810028e-08,3.258346315724434117e-08,3.321006821796058206e-08,3.383667327867682296e-08,3.446327833939306385e-08,3.508988340010930474e-08,3.571648846082554564e-08,3.634309352154178653e-08,3.696969858225802742e-08,3.759630364297426832e-08,3.822290870369050921e-08,3.884951376440675010e-08,3.947611882512299100e-08 +0.000000000000000000e+00,3.782796849093313925e-10,7.565593698186627851e-10,1.134839054727994281e-09,1.513118739637325777e-09,1.891398424546657273e-09,2.269678109455988562e-09,2.647957794365319851e-09,3.026237479274651140e-09,3.404517164183982429e-09,3.782796849093313718e-09,4.161076534002645008e-09,4.539356218911976297e-09,4.917635903821307586e-09,5.295915588730638875e-09,5.674195273639970164e-09,6.052474958549301453e-09,6.430754643458632742e-09,6.809034328367964032e-09,7.187314013277295321e-09,7.565593698186625783e-09,7.943873383095956245e-09,8.322153068005286707e-09,8.700432752914617168e-09,9.078712437823947630e-09,9.456992122733278092e-09,9.835271807642608554e-09,1.021355149255193902e-08,1.059183117746126948e-08,1.097011086237059994e-08,1.134839054727993040e-08,1.172667023218926086e-08,1.210494991709859133e-08,1.248322960200792179e-08,1.286150928691725225e-08,1.323978897182658271e-08,1.361806865673591317e-08,1.399634834164524364e-08,1.437462802655457410e-08,1.475290771146390456e-08,1.513118739637323502e-08,1.550946708128256548e-08,1.588774676619189595e-08,1.626602645110122641e-08,1.664430613601055687e-08,1.702258582091988733e-08,1.740086550582921779e-08,1.777914519073854826e-08,1.815742487564787872e-08,1.853570456055720918e-08,1.891398424546653964e-08,1.929226393037587010e-08,1.967054361528520057e-08,2.004882330019453103e-08,2.042710298510386149e-08,2.080538267001319195e-08,2.118366235492252241e-08,2.156194203983185287e-08,2.194022172474118334e-08,2.231850140965051380e-08,2.269678109455984426e-08,2.307506077946917472e-08,2.345334046437850518e-08,2.383162014928783565e-08 +0.000000000000000000e+00,5.570385773131136295e-10,1.114077154626227259e-09,1.671115731939340785e-09,2.228154309252454104e-09,2.785192886565567424e-09,3.342231463878680743e-09,3.899270041191793649e-09,4.456308618504906554e-09,5.013347195818019460e-09,5.570385773131132366e-09,6.127424350444245271e-09,6.684462927757358177e-09,7.241501505070471083e-09,7.798540082383583988e-09,8.355578659696696894e-09,8.912617237009809800e-09,9.469655814322922705e-09,1.002669439163603561e-08,1.058373296894914852e-08,1.114077154626226142e-08,1.169781012357537433e-08,1.225484870088848723e-08,1.281188727820160014e-08,1.336892585551471305e-08,1.392596443282782595e-08,1.448300301014093886e-08,1.504004158745405342e-08,1.559708016476716798e-08,1.615411874208028254e-08,1.671115731939339710e-08,1.726819589670651166e-08,1.782523447401962622e-08,1.838227305133274078e-08,1.893931162864585534e-08,1.949635020595896990e-08,2.005338878327208446e-08,2.061042736058519902e-08,2.116746593789831358e-08,2.172450451521142814e-08,2.228154309252454270e-08,2.283858166983765726e-08,2.339562024715077182e-08,2.395265882446388638e-08,2.450969740177700094e-08,2.506673597909011550e-08,2.562377455640323006e-08,2.618081313371634462e-08,2.673785171102945918e-08,2.729489028834257374e-08,2.785192886565568830e-08,2.840896744296880286e-08,2.896600602028191742e-08,2.952304459759503198e-08,3.008008317490814654e-08,3.063712175222126110e-08,3.119416032953437566e-08,3.175119890684749022e-08,3.230823748416060478e-08,3.286527606147371934e-08,3.342231463878683390e-08,3.397935321609994846e-08,3.453639179341306302e-08,3.509343037072617758e-08 +0.000000000000000000e+00,3.257847359059821140e-10,6.515694718119642280e-10,9.773542077179462902e-10,1.303138943623928249e-09,1.628923679529910208e-09,1.954708415435892167e-09,2.280493151341874333e-09,2.606277887247856498e-09,2.932062623153838664e-09,3.257847359059820830e-09,3.583632094965802995e-09,3.909416830871785161e-09,4.235201566777767327e-09,4.560986302683749492e-09,4.886771038589731658e-09,5.212555774495713824e-09,5.538340510401695989e-09,5.864125246307678155e-09,6.189909982213660321e-09,6.515694718119642486e-09,6.841479454025624652e-09,7.167264189931606818e-09,7.493048925837588983e-09,7.818833661743571976e-09,8.144618397649554969e-09,8.470403133555537962e-09,8.796187869461520955e-09,9.121972605367503948e-09,9.447757341273486940e-09,9.773542077179469933e-09,1.009932681308545293e-08,1.042511154899143592e-08,1.075089628489741891e-08,1.107668102080340190e-08,1.140246575670938490e-08,1.172825049261536789e-08,1.205403522852135088e-08,1.237981996442733388e-08,1.270560470033331687e-08,1.303138943623929986e-08,1.335717417214528285e-08,1.368295890805126585e-08,1.400874364395724884e-08,1.433452837986323183e-08,1.466031311576921483e-08,1.498609785167519782e-08,1.531188258758118081e-08,1.563766732348716380e-08,1.596345205939314680e-08,1.628923679529912979e-08,1.661502153120511278e-08,1.694080626711109578e-08,1.726659100301707877e-08,1.759237573892306176e-08,1.791816047482904475e-08,1.824394521073502775e-08,1.856972994664101074e-08,1.889551468254699373e-08,1.922129941845297673e-08,1.954708415435895972e-08,1.987286889026494271e-08,2.019865362617092570e-08,2.052443836207690870e-08 +0.000000000000000000e+00,-5.517598711407063008e-20,-1.103519742281412602e-19,-1.655279613422119023e-19,-2.207039484562825685e-19,-2.758799355703532347e-19,-3.310559226844239009e-19,-3.862319097984945670e-19,-4.414078969125652332e-19,-4.965838840266359476e-19,-5.517598711407066619e-19,-6.069358582547773763e-19,-6.621118453688480906e-19,-7.172878324829188049e-19,-7.724638195969895193e-19,-8.276398067110602336e-19,-8.828157938251310443e-19,-9.379917809392018549e-19,-9.931677680532726655e-19,-1.048343755167343476e-18,-1.103519742281414287e-18,-1.158695729395485097e-18,-1.213871716509555908e-18,-1.269047703623626719e-18,-1.324223690737697529e-18,-1.379399677851768340e-18,-1.434575664965839151e-18,-1.489751652079909961e-18,-1.544927639193980772e-18,-1.600103626308051583e-18,-1.655279613422122393e-18,-1.710455600536193204e-18,-1.765631587650264014e-18,-1.820807574764334825e-18,-1.875983561878405636e-18,-1.931159548992476446e-18,-1.986335536106547257e-18,-2.041511523220618068e-18,-2.096687510334688878e-18,-2.151863497448759689e-18,-2.207039484562830500e-18,-2.262215471676901310e-18,-2.317391458790972121e-18,-2.372567445905042931e-18,-2.427743433019113742e-18,-2.482919420133184553e-18,-2.538095407247255363e-18,-2.593271394361326174e-18,-2.648447381475396985e-18,-2.703623368589467795e-18,-2.758799355703538606e-18,-2.813975342817609417e-18,-2.869151329931680227e-18,-2.924327317045751038e-18,-2.979503304159821848e-18,-3.034679291273892659e-18,-3.089855278387963470e-18,-3.145031265502034280e-18,-3.200207252616105091e-18,-3.255383239730175902e-18,-3.310559226844246712e-18,-3.365735213958317523e-18,-3.420911201072388334e-18,-3.476087188186458759e-18 +0.000000000000000000e+00,-6.538255982002066184e-10,-1.307651196400413237e-09,-1.961476794600619855e-09,-2.615302392800826474e-09,-3.269127991001033092e-09,-3.922953589201239711e-09,-4.576779187401446329e-09,-5.230604785601652948e-09,-5.884430383801859566e-09,-6.538255982002066184e-09,-7.192081580202272803e-09,-7.845907178402479421e-09,-8.499732776602686040e-09,-9.153558374802892658e-09,-9.807383973003099277e-09,-1.046120957120330590e-08,-1.111503516940351251e-08,-1.176886076760371913e-08,-1.242268636580392575e-08,-1.307651196400413237e-08,-1.373033756220433899e-08,-1.438416316040454561e-08,-1.503798875860475388e-08,-1.569181435680496215e-08,-1.634563995500517042e-08,-1.699946555320537870e-08,-1.765329115140558697e-08,-1.830711674960579524e-08,-1.896094234780600352e-08,-1.961476794600621179e-08,-2.026859354420642006e-08,-2.092241914240662833e-08,-2.157624474060683661e-08,-2.223007033880704488e-08,-2.288389593700725315e-08,-2.353772153520746143e-08,-2.419154713340766970e-08,-2.484537273160787797e-08,-2.549919832980808624e-08,-2.615302392800829452e-08,-2.680684952620850279e-08,-2.746067512440871106e-08,-2.811450072260891933e-08,-2.876832632080912761e-08,-2.942215191900933588e-08,-3.007597751720954746e-08,-3.072980311540975904e-08,-3.138362871360997063e-08,-3.203745431181018221e-08,-3.269127991001039379e-08,-3.334510550821060537e-08,-3.399893110641081695e-08,-3.465275670461102853e-08,-3.530658230281124011e-08,-3.596040790101145170e-08,-3.661423349921166328e-08,-3.726805909741187486e-08,-3.792188469561208644e-08,-3.857571029381229802e-08,-3.922953589201250960e-08,-3.988336149021272118e-08,-4.053718708841293277e-08,-4.119101268661314435e-08 +0.000000000000000000e+00,-6.526614661848727516e-10,-1.305322932369745503e-09,-1.957984398554618151e-09,-2.610645864739490593e-09,-3.263307330924363034e-09,-3.915968797109235476e-09,-4.568630263294107504e-09,-5.221291729478979532e-09,-5.873953195663851559e-09,-6.526614661848723587e-09,-7.179276128033595615e-09,-7.831937594218467643e-09,-8.484599060403339671e-09,-9.137260526588211699e-09,-9.789921992773083726e-09,-1.044258345895795575e-08,-1.109524492514282778e-08,-1.174790639132769981e-08,-1.240056785751257184e-08,-1.305322932369744387e-08,-1.370589078988231589e-08,-1.435855225606718792e-08,-1.501121372225205995e-08,-1.566387518843693198e-08,-1.631653665462180400e-08,-1.696919812080667603e-08,-1.762185958699154806e-08,-1.827452105317642009e-08,-1.892718251936129212e-08,-1.957984398554616414e-08,-2.023250545173103617e-08,-2.088516691791590820e-08,-2.153782838410078023e-08,-2.219048985028565226e-08,-2.284315131647052428e-08,-2.349581278265539631e-08,-2.414847424884026834e-08,-2.480113571502514037e-08,-2.545379718121001239e-08,-2.610645864739488442e-08,-2.675912011357975645e-08,-2.741178157976462848e-08,-2.806444304594950051e-08,-2.871710451213437253e-08,-2.936976597831924456e-08,-3.002242744450411328e-08,-3.067508891068898531e-08,-3.132775037687385734e-08,-3.198041184305872936e-08,-3.263307330924360139e-08,-3.328573477542847342e-08,-3.393839624161334545e-08,-3.459105770779821748e-08,-3.524371917398308950e-08,-3.589638064016796153e-08,-3.654904210635283356e-08,-3.720170357253770559e-08,-3.785436503872257762e-08,-3.850702650490744964e-08,-3.915968797109232167e-08,-3.981234943727719370e-08,-4.046501090346206573e-08,-4.111767236964693775e-08 +0.000000000000000000e+00,-3.257847360230950689e-10,-6.515694720461901378e-10,-9.773542080692852584e-10,-1.303138944092380482e-09,-1.628923680115475706e-09,-1.954708416138570930e-09,-2.280493152161666154e-09,-2.606277888184761378e-09,-2.932062624207856602e-09,-3.257847360230951826e-09,-3.583632096254047050e-09,-3.909416832277142688e-09,-4.235201568300237912e-09,-4.560986304323333136e-09,-4.886771040346428360e-09,-5.212555776369523584e-09,-5.538340512392618808e-09,-5.864125248415714032e-09,-6.189909984438809256e-09,-6.515694720461904480e-09,-6.841479456484999704e-09,-7.167264192508094928e-09,-7.493048928531190152e-09,-7.818833664554285376e-09,-8.144618400577380600e-09,-8.470403136600475824e-09,-8.796187872623571047e-09,-9.121972608646666271e-09,-9.447757344669761495e-09,-9.773542080692856719e-09,-1.009932681671595194e-08,-1.042511155273904717e-08,-1.075089628876214239e-08,-1.107668102478523762e-08,-1.140246576080833284e-08,-1.172825049683142806e-08,-1.205403523285452329e-08,-1.237981996887761851e-08,-1.270560470490071374e-08,-1.303138944092380896e-08,-1.335717417694690418e-08,-1.368295891296999941e-08,-1.400874364899309463e-08,-1.433452838501618986e-08,-1.466031312103928508e-08,-1.498609785706238030e-08,-1.531188259308547553e-08,-1.563766732910857075e-08,-1.596345206513166598e-08,-1.628923680115476120e-08,-1.661502153717785642e-08,-1.694080627320095165e-08,-1.726659100922404687e-08,-1.759237574524714209e-08,-1.791816048127023732e-08,-1.824394521729333254e-08,-1.856972995331642777e-08,-1.889551468933952299e-08,-1.922129942536261821e-08,-1.954708416138571344e-08,-1.987286889740880866e-08,-2.019865363343190389e-08,-2.052443836945499911e-08 +0.000000000000000000e+00,-6.266050608328360333e-10,-1.253210121665672067e-09,-1.879815182498507996e-09,-2.506420243331343719e-09,-3.133025304164179442e-09,-3.759630364997015166e-09,-4.386235425829850475e-09,-5.012840486662685784e-09,-5.639445547495521094e-09,-6.266050608328356403e-09,-6.892655669161191713e-09,-7.519260729994027022e-09,-8.145865790826862332e-09,-8.772470851659697641e-09,-9.399075912492532951e-09,-1.002568097332536826e-08,-1.065228603415820357e-08,-1.127889109499103888e-08,-1.190549615582387419e-08,-1.253210121665670950e-08,-1.315870627748954481e-08,-1.378531133832238012e-08,-1.441191639915521543e-08,-1.503852145998805074e-08,-1.566512652082088770e-08,-1.629173158165372466e-08,-1.691833664248656163e-08,-1.754494170331939859e-08,-1.817154676415223556e-08,-1.879815182498507252e-08,-1.942475688581790948e-08,-2.005136194665074645e-08,-2.067796700748358341e-08,-2.130457206831642037e-08,-2.193117712914925734e-08,-2.255778218998209430e-08,-2.318438725081493127e-08,-2.381099231164776823e-08,-2.443759737248060519e-08,-2.506420243331344216e-08,-2.569080749414627912e-08,-2.631741255497911608e-08,-2.694401761581195305e-08,-2.757062267664479001e-08,-2.819722773747762698e-08,-2.882383279831046394e-08,-2.945043785914330090e-08,-3.007704291997613456e-08,-3.070364798080896821e-08,-3.133025304164180187e-08,-3.195685810247463552e-08,-3.258346316330746918e-08,-3.321006822414030283e-08,-3.383667328497313649e-08,-3.446327834580597015e-08,-3.508988340663880380e-08,-3.571648846747163746e-08,-3.634309352830447111e-08,-3.696969858913730477e-08,-3.759630364997013842e-08,-3.822290871080297208e-08,-3.884951377163580573e-08,-3.947611883246863939e-08 +0.000000000000000000e+00,-3.782796850195991694e-10,-7.565593700391983387e-10,-1.134839055058797456e-09,-1.513118740078396471e-09,-1.891398425097995485e-09,-2.269678110117594499e-09,-2.647957795137193514e-09,-3.026237480156792528e-09,-3.404517165176391542e-09,-3.782796850195990970e-09,-4.161076535215590398e-09,-4.539356220235189826e-09,-4.917635905254789254e-09,-5.295915590274388681e-09,-5.674195275293988109e-09,-6.052474960313587537e-09,-6.430754645333186965e-09,-6.809034330352786393e-09,-7.187314015372385821e-09,-7.565593700391985249e-09,-7.943873385411585504e-09,-8.322153070431185759e-09,-8.700432755450786014e-09,-9.078712440470386269e-09,-9.456992125489986524e-09,-9.835271810509586779e-09,-1.021355149552918703e-08,-1.059183118054878729e-08,-1.097011086556838754e-08,-1.134839055058798780e-08,-1.172667023560758805e-08,-1.210494992062718831e-08,-1.248322960564678856e-08,-1.286150929066638882e-08,-1.323978897568598907e-08,-1.361806866070558933e-08,-1.399634834572518958e-08,-1.437462803074478984e-08,-1.475290771576439009e-08,-1.513118740078399035e-08,-1.550946708580359060e-08,-1.588774677082319086e-08,-1.626602645584279111e-08,-1.664430614086239137e-08,-1.702258582588199162e-08,-1.740086551090159188e-08,-1.777914519592119213e-08,-1.815742488094079239e-08,-1.853570456596039265e-08,-1.891398425097999290e-08,-1.929226393599959316e-08,-1.967054362101919341e-08,-2.004882330603879367e-08,-2.042710299105839392e-08,-2.080538267607799418e-08,-2.118366236109759443e-08,-2.156194204611719469e-08,-2.194022173113679494e-08,-2.231850141615639520e-08,-2.269678110117599545e-08,-2.307506078619559571e-08,-2.345334047121519596e-08,-2.383162015623479622e-08 +0.000000000000000000e+00,-5.570385774223886345e-10,-1.114077154844777269e-09,-1.671115732267165903e-09,-2.228154309689554538e-09,-2.785192887111942966e-09,-3.342231464534331393e-09,-3.899270041956719821e-09,-4.456308619379108249e-09,-5.013347196801496676e-09,-5.570385774223885104e-09,-6.127424351646273532e-09,-6.684462929068661959e-09,-7.241501506491050387e-09,-7.798540083913437988e-09,-8.355578661335826415e-09,-8.912617238758214843e-09,-9.469655816180603271e-09,-1.002669439360299170e-08,-1.058373297102538013e-08,-1.114077154844776855e-08,-1.169781012587015698e-08,-1.225484870329254541e-08,-1.281188728071493384e-08,-1.336892585813732226e-08,-1.392596443555971069e-08,-1.448300301298209912e-08,-1.504004159040448755e-08,-1.559708016782687598e-08,-1.615411874524926440e-08,-1.671115732267165283e-08,-1.726819590009404126e-08,-1.782523447751642969e-08,-1.838227305493881811e-08,-1.893931163236120654e-08,-1.949635020978359497e-08,-2.005338878720598340e-08,-2.061042736462837182e-08,-2.116746594205076025e-08,-2.172450451947314868e-08,-2.228154309689553711e-08,-2.283858167431792554e-08,-2.339562025174031396e-08,-2.395265882916270239e-08,-2.450969740658509082e-08,-2.506673598400747925e-08,-2.562377456142986767e-08,-2.618081313885225610e-08,-2.673785171627464453e-08,-2.729489029369703296e-08,-2.785192887111942138e-08,-2.840896744854180981e-08,-2.896600602596419824e-08,-2.952304460338658667e-08,-3.008008318080897510e-08,-3.063712175823136352e-08,-3.119416033565375195e-08,-3.175119891307614038e-08,-3.230823749049852881e-08,-3.286527606792091723e-08,-3.342231464534330566e-08,-3.397935322276569409e-08,-3.453639180018808252e-08,-3.509343037761047094e-08 +0.000000000000000000e+00,6.493431434318061824e-10,1.298686286863612365e-09,1.948029430295418547e-09,2.597372573727224729e-09,3.246715717159030912e-09,3.896058860590837094e-09,4.545402004022643276e-09,5.194745147454449459e-09,5.844088290886255641e-09,6.493431434318061824e-09,7.142774577749868006e-09,7.792117721181674188e-09,8.441460864613480371e-09,9.090804008045286553e-09,9.740147151477092735e-09,1.038949029490889892e-08,1.103883343834070510e-08,1.168817658177251128e-08,1.233751972520431746e-08,1.298686286863612365e-08,1.363620601206792983e-08,1.428554915549973601e-08,1.493489229893154219e-08,1.558423544236334838e-08,1.623357858579515456e-08,1.688292172922696074e-08,1.753226487265876692e-08,1.818160801609057311e-08,1.883095115952237929e-08,1.948029430295418547e-08,2.012963744638599165e-08,2.077898058981779784e-08,2.142832373324960402e-08,2.207766687668141020e-08,2.272701002011321638e-08,2.337635316354502256e-08,2.402569630697682875e-08,2.467503945040863493e-08,2.532438259384044111e-08,2.597372573727224729e-08,2.662306888070405348e-08,2.727241202413585966e-08,2.792175516756766584e-08,2.857109831099947202e-08,2.922044145443127821e-08,2.986978459786308439e-08,3.051912774129489388e-08,3.116847088472670337e-08,3.181781402815851286e-08,3.246715717159032235e-08,3.311650031502213184e-08,3.376584345845394133e-08,3.441518660188575083e-08,3.506452974531756032e-08,3.571387288874936981e-08,3.636321603218117930e-08,3.701255917561298879e-08,3.766190231904479828e-08,3.831124546247660777e-08,3.896058860590841726e-08,3.960993174934022675e-08,4.025927489277203625e-08,4.090861803620384574e-08 +0.000000000000000000e+00,6.398328839718999893e-10,1.279665767943799979e-09,1.919498651915700071e-09,2.559331535887600371e-09,3.199164419859500670e-09,3.838997303831400970e-09,4.478830187803301683e-09,5.118663071775202396e-09,5.758495955747103109e-09,6.398328839719003822e-09,7.038161723690904535e-09,7.677994607662805249e-09,8.317827491634705962e-09,8.957660375606606675e-09,9.597493259578507388e-09,1.023732614355040810e-08,1.087715902752230881e-08,1.151699191149420953e-08,1.215682479546611024e-08,1.279665767943801095e-08,1.343649056340991167e-08,1.407632344738181238e-08,1.471615633135371309e-08,1.535598921532561381e-08,1.599582209929751617e-08,1.663565498326941854e-08,1.727548786724132091e-08,1.791532075121322328e-08,1.855515363518512564e-08,1.919498651915702801e-08,1.983481940312893038e-08,2.047465228710083275e-08,2.111448517107273511e-08,2.175431805504463748e-08,2.239415093901653985e-08,2.303398382298844222e-08,2.367381670696034458e-08,2.431364959093224695e-08,2.495348247490414932e-08,2.559331535887605169e-08,2.623314824284795405e-08,2.687298112681985642e-08,2.751281401079175879e-08,2.815264689476366116e-08,2.879247977873556352e-08,2.943231266270746589e-08,3.007214554667936826e-08,3.071197843065127393e-08,3.135181131462317961e-08,3.199164419859508529e-08,3.263147708256699096e-08,3.327130996653889664e-08,3.391114285051080231e-08,3.455097573448270799e-08,3.519080861845461367e-08,3.583064150242651934e-08,3.647047438639842502e-08,3.711030727037033070e-08,3.775014015434223637e-08,3.838997303831414205e-08,3.902980592228604772e-08,3.966963880625795340e-08,4.030947169022985908e-08 +0.000000000000000000e+00,6.039025729253191961e-10,1.207805145850638392e-09,1.811707718775957485e-09,2.415610291701276371e-09,3.019512864626595257e-09,3.623415437551914143e-09,4.227318010477232615e-09,4.831220583402551087e-09,5.435123156327869560e-09,6.039025729253188032e-09,6.642928302178506504e-09,7.246830875103824977e-09,7.850733448029143449e-09,8.454636020954461921e-09,9.058538593879780394e-09,9.662441166805098866e-09,1.026634373973041734e-08,1.087024631265573581e-08,1.147414888558105428e-08,1.207805145850637276e-08,1.268195403143169123e-08,1.328585660435700970e-08,1.388975917728232817e-08,1.449366175020764664e-08,1.509756432313296512e-08,1.570146689605828359e-08,1.630536946898360206e-08,1.690927204190892053e-08,1.751317461483423901e-08,1.811707718775955748e-08,1.872097976068487595e-08,1.932488233361019442e-08,1.992878490653551290e-08,2.053268747946083137e-08,2.113659005238614984e-08,2.174049262531146831e-08,2.234439519823678679e-08,2.294829777116210526e-08,2.355220034408742373e-08,2.415610291701274220e-08,2.476000548993806067e-08,2.536390806286337915e-08,2.596781063578869762e-08,2.657171320871401609e-08,2.717561578163933456e-08,2.777951835456465304e-08,2.838342092748997151e-08,2.898732350041528998e-08,2.959122607334060845e-08,3.019512864626593023e-08,3.079903121919125202e-08,3.140293379211657380e-08,3.200683636504189558e-08,3.261073893796721736e-08,3.321464151089253914e-08,3.381854408381786092e-08,3.442244665674318270e-08,3.502634922966850448e-08,3.563025180259382626e-08,3.623415437551914804e-08,3.683805694844446983e-08,3.744195952136979161e-08,3.804586209429511339e-08 +0.000000000000000000e+00,-6.493431435459861616e-10,-1.298686287091972323e-09,-1.948029430637958588e-09,-2.597372574183945060e-09,-3.246715717729931532e-09,-3.896058861275918004e-09,-4.545402004821904889e-09,-5.194745148367891774e-09,-5.844088291913878660e-09,-6.493431435459865545e-09,-7.142774579005852431e-09,-7.792117722551839316e-09,-8.441460866097826201e-09,-9.090804009643813087e-09,-9.740147153189799972e-09,-1.038949029673578686e-08,-1.103883344028177374e-08,-1.168817658382776063e-08,-1.233751972737374751e-08,-1.298686287091973440e-08,-1.363620601446572128e-08,-1.428554915801170817e-08,-1.493489230155769506e-08,-1.558423544510368194e-08,-1.623357858864966883e-08,-1.688292173219565571e-08,-1.753226487574164260e-08,-1.818160801928762948e-08,-1.883095116283361637e-08,-1.948029430637960325e-08,-2.012963744992559014e-08,-2.077898059347157702e-08,-2.142832373701756391e-08,-2.207766688056355079e-08,-2.272701002410953768e-08,-2.337635316765552457e-08,-2.402569631120151145e-08,-2.467503945474749834e-08,-2.532438259829348522e-08,-2.597372574183947211e-08,-2.662306888538545899e-08,-2.727241202893144588e-08,-2.792175517247743276e-08,-2.857109831602341965e-08,-2.922044145956940653e-08,-2.986978460311539673e-08,-3.051912774666139023e-08,-3.116847089020738373e-08,-3.181781403375337724e-08,-3.246715717729937074e-08,-3.311650032084536424e-08,-3.376584346439135774e-08,-3.441518660793735125e-08,-3.506452975148334475e-08,-3.571387289502933825e-08,-3.636321603857533176e-08,-3.701255918212132526e-08,-3.766190232566731876e-08,-3.831124546921331226e-08,-3.896058861275930577e-08,-3.960993175630529927e-08,-4.025927489985129277e-08,-4.090861804339728628e-08 +0.000000000000000000e+00,-6.398328840876192483e-10,-1.279665768175238497e-09,-1.919498652262857848e-09,-2.559331536350477407e-09,-3.199164420438096965e-09,-3.838997304525716524e-09,-4.478830188613336496e-09,-5.118663072700956468e-09,-5.758495956788576440e-09,-6.398328840876196412e-09,-7.038161724963816384e-09,-7.677994609051436356e-09,-8.317827493139056328e-09,-8.957660377226676300e-09,-9.597493261314296272e-09,-1.023732614540191624e-08,-1.087715902948953622e-08,-1.151699191357715619e-08,-1.215682479766477616e-08,-1.279665768175239613e-08,-1.343649056584001610e-08,-1.407632344992763608e-08,-1.471615633401525605e-08,-1.535598921810287602e-08,-1.599582210219049765e-08,-1.663565498627811927e-08,-1.727548787036574090e-08,-1.791532075445336253e-08,-1.855515363854098415e-08,-1.919498652262860578e-08,-1.983481940671622741e-08,-2.047465229080384903e-08,-2.111448517489147066e-08,-2.175431805897909229e-08,-2.239415094306671391e-08,-2.303398382715433554e-08,-2.367381671124195716e-08,-2.431364959532957879e-08,-2.495348247941720042e-08,-2.559331536350482204e-08,-2.623314824759244367e-08,-2.687298113168006530e-08,-2.751281401576768692e-08,-2.815264689985530855e-08,-2.879247978394293018e-08,-2.943231266803055180e-08,-3.007214555211817343e-08,-3.071197843620579836e-08,-3.135181132029342330e-08,-3.199164420438104823e-08,-3.263147708846867317e-08,-3.327130997255629810e-08,-3.391114285664392304e-08,-3.455097574073154798e-08,-3.519080862481917291e-08,-3.583064150890679785e-08,-3.647047439299442278e-08,-3.711030727708204772e-08,-3.775014016116967265e-08,-3.838997304525729759e-08,-3.902980592934492252e-08,-3.966963881343254746e-08,-4.030947169752017239e-08 +0.000000000000000000e+00,-6.039025730322288782e-10,-1.207805146064457756e-09,-1.811707719096686635e-09,-2.415610292128915513e-09,-3.019512865161144598e-09,-3.623415438193373683e-09,-4.227318011225602768e-09,-4.831220584257831853e-09,-5.435123157290060937e-09,-6.039025730322290022e-09,-6.642928303354519107e-09,-7.246830876386748192e-09,-7.850733449418977277e-09,-8.454636022451205535e-09,-9.058538595483433793e-09,-9.662441168515662051e-09,-1.026634374154789031e-08,-1.087024631458011857e-08,-1.147414888761234682e-08,-1.207805146064457508e-08,-1.268195403367680334e-08,-1.328585660670903160e-08,-1.388975917974125986e-08,-1.449366175277348811e-08,-1.509756432580571803e-08,-1.570146689883794794e-08,-1.630536947187017785e-08,-1.690927204490240776e-08,-1.751317461793463767e-08,-1.811707719096686759e-08,-1.872097976399909750e-08,-1.932488233703132741e-08,-1.992878491006355732e-08,-2.053268748309578723e-08,-2.113659005612801715e-08,-2.174049262916024706e-08,-2.234439520219247697e-08,-2.294829777522470688e-08,-2.355220034825693680e-08,-2.415610292128916671e-08,-2.476000549432139662e-08,-2.536390806735362653e-08,-2.596781064038585644e-08,-2.657171321341808636e-08,-2.717561578645031627e-08,-2.777951835948254618e-08,-2.838342093251477609e-08,-2.898732350554700600e-08,-2.959122607857923592e-08,-3.019512865161146252e-08,-3.079903122464368912e-08,-3.140293379767591573e-08,-3.200683637070814233e-08,-3.261073894374036893e-08,-3.321464151677259554e-08,-3.381854408980482214e-08,-3.442244666283704874e-08,-3.502634923586927535e-08,-3.563025180890150195e-08,-3.623415438193372855e-08,-3.683805695496595516e-08,-3.744195952799818176e-08,-3.804586210103040836e-08 +0.000000000000000000e+00,6.523380596777703296e-10,1.304676119355540659e-09,1.957014179033310885e-09,2.609352238711080905e-09,3.261690298388850924e-09,3.914028358066620943e-09,4.566366417744390963e-09,5.218704477422160982e-09,5.871042537099931001e-09,6.523380596777701021e-09,7.175718656455471040e-09,7.828056716133240232e-09,8.480394775811009425e-09,9.132732835488778617e-09,9.785070895166547809e-09,1.043740895484431700e-08,1.108974701452208619e-08,1.174208507419985539e-08,1.239442313387762458e-08,1.304676119355539377e-08,1.369909925323316296e-08,1.435143731291093215e-08,1.500377537258870135e-08,1.565611343226647054e-08,1.630845149194423973e-08,1.696078955162200892e-08,1.761312761129977812e-08,1.826546567097754731e-08,1.891780373065531650e-08,1.957014179033308569e-08,2.022247985001085488e-08,2.087481790968862408e-08,2.152715596936639327e-08,2.217949402904416246e-08,2.283183208872193165e-08,2.348417014839970084e-08,2.413650820807747004e-08,2.478884626775523923e-08,2.544118432743300842e-08,2.609352238711077761e-08,2.674586044678854681e-08,2.739819850646631600e-08,2.805053656614408519e-08,2.870287462582185438e-08,2.935521268549962357e-08,3.000755074517738946e-08,3.065988880485515534e-08,3.131222686453292122e-08,3.196456492421068711e-08,3.261690298388845299e-08,3.326924104356621888e-08,3.392157910324398476e-08,3.457391716292175064e-08,3.522625522259951653e-08,3.587859328227728241e-08,3.653093134195504829e-08,3.718326940163281418e-08,3.783560746131058006e-08,3.848794552098834594e-08,3.914028358066611183e-08,3.979262164034387771e-08,4.044495970002164359e-08,4.109729775969940948e-08 +0.000000000000000000e+00,6.466168351467856302e-10,1.293233670293571260e-09,1.939850505440356787e-09,2.586467340587142107e-09,3.233084175733927427e-09,3.879701010880712748e-09,4.526317846027498068e-09,5.172934681174283388e-09,5.819551516321068708e-09,6.466168351467854028e-09,7.112785186614639348e-09,7.759402021761423841e-09,8.406018856908208334e-09,9.052635692054992826e-09,9.699252527201777319e-09,1.034586936234856181e-08,1.099248619749534631e-08,1.163910303264213080e-08,1.228571986778891529e-08,1.293233670293569978e-08,1.357895353808248428e-08,1.422557037322926877e-08,1.487218720837605326e-08,1.551880404352283776e-08,1.616542087866962225e-08,1.681203771381640674e-08,1.745865454896319123e-08,1.810527138410997573e-08,1.875188821925676022e-08,1.939850505440354471e-08,2.004512188955032921e-08,2.069173872469711370e-08,2.133835555984389819e-08,2.198497239499068268e-08,2.263158923013746718e-08,2.327820606528425167e-08,2.392482290043103616e-08,2.457143973557782066e-08,2.521805657072460515e-08,2.586467340587138964e-08,2.651129024101817413e-08,2.715790707616495863e-08,2.780452391131174312e-08,2.845114074645852761e-08,2.909775758160531211e-08,2.974437441675209660e-08,3.039099125189888109e-08,3.103760808704566889e-08,3.168422492219245669e-08,3.233084175733924450e-08,3.297745859248603230e-08,3.362407542763282010e-08,3.427069226277960790e-08,3.491730909792639570e-08,3.556392593307318350e-08,3.621054276821997131e-08,3.685715960336675911e-08,3.750377643851354691e-08,3.815039327366033471e-08,3.879701010880712251e-08,3.944362694395391031e-08,4.009024377910069812e-08,4.073686061424748592e-08 +0.000000000000000000e+00,6.287329997199463032e-10,1.257465999439892606e-09,1.886198999159838910e-09,2.514931998879785213e-09,3.143664998599731516e-09,3.772397998319677819e-09,4.401130998039624536e-09,5.029863997759571253e-09,5.658596997479517970e-09,6.287329997199464687e-09,6.916062996919411404e-09,7.544795996639357293e-09,8.173528996359303183e-09,8.802261996079249072e-09,9.430994995799194962e-09,1.005972799551914085e-08,1.068846099523908674e-08,1.131719399495903263e-08,1.194592699467897852e-08,1.257465999439892441e-08,1.320339299411887030e-08,1.383212599383881619e-08,1.446085899355876208e-08,1.508959199327870797e-08,1.571832499299865386e-08,1.634705799271859975e-08,1.697579099243854564e-08,1.760452399215849153e-08,1.823325699187843742e-08,1.886198999159838331e-08,1.949072299131832920e-08,2.011945599103827509e-08,2.074818899075822098e-08,2.137692199047816687e-08,2.200565499019811275e-08,2.263438798991805864e-08,2.326312098963800453e-08,2.389185398935795042e-08,2.452058698907789631e-08,2.514931998879784220e-08,2.577805298851778809e-08,2.640678598823773398e-08,2.703551898795767987e-08,2.766425198767762576e-08,2.829298498739757165e-08,2.892171798711751754e-08,2.955045098683746343e-08,3.017918398655740932e-08,3.080791698627735521e-08,3.143664998599730110e-08,3.206538298571724699e-08,3.269411598543719288e-08,3.332284898515713877e-08,3.395158198487708466e-08,3.458031498459703055e-08,3.520904798431697644e-08,3.583778098403692233e-08,3.646651398375686822e-08,3.709524698347681411e-08,3.772397998319676000e-08,3.835271298291670589e-08,3.898144598263665178e-08,3.961017898235659766e-08 +0.000000000000000000e+00,-6.523380597858734264e-10,-1.304676119571746853e-09,-1.957014179357620279e-09,-2.609352239143493706e-09,-3.261690298929367132e-09,-3.914028358715240559e-09,-4.566366418501113985e-09,-5.218704478286987411e-09,-5.871042538072860838e-09,-6.523380597858734264e-09,-7.175718657644607691e-09,-7.828056717430481117e-09,-8.480394777216354544e-09,-9.132732837002227970e-09,-9.785070896788101397e-09,-1.043740895657397482e-08,-1.108974701635984825e-08,-1.174208507614572168e-08,-1.239442313593159510e-08,-1.304676119571746853e-08,-1.369909925550334196e-08,-1.435143731528921538e-08,-1.500377537507508715e-08,-1.565611343486095893e-08,-1.630845149464683070e-08,-1.696078955443270247e-08,-1.761312761421857424e-08,-1.826546567400444601e-08,-1.891780373379031779e-08,-1.957014179357618956e-08,-2.022247985336206133e-08,-2.087481791314793310e-08,-2.152715597293380487e-08,-2.217949403271967665e-08,-2.283183209250554842e-08,-2.348417015229142019e-08,-2.413650821207729196e-08,-2.478884627186316373e-08,-2.544118433164903551e-08,-2.609352239143490728e-08,-2.674586045122077905e-08,-2.739819851100665082e-08,-2.805053657079252260e-08,-2.870287463057839437e-08,-2.935521269036426614e-08,-3.000755075015013460e-08,-3.065988880993600307e-08,-3.131222686972187153e-08,-3.196456492950773999e-08,-3.261690298929360846e-08,-3.326924104907947692e-08,-3.392157910886534538e-08,-3.457391716865121385e-08,-3.522625522843708231e-08,-3.587859328822295077e-08,-3.653093134800881924e-08,-3.718326940779468770e-08,-3.783560746758055616e-08,-3.848794552736642463e-08,-3.914028358715229309e-08,-3.979262164693816155e-08,-4.044495970672403002e-08,-4.109729776650989848e-08 +0.000000000000000000e+00,-6.466168352584007292e-10,-1.293233670516801458e-09,-1.939850505775201981e-09,-2.586467341033602503e-09,-3.233084176292003026e-09,-3.879701011550403962e-09,-4.526317846808804898e-09,-5.172934682067205834e-09,-5.819551517325606770e-09,-6.466168352584007706e-09,-7.112785187842408642e-09,-7.759402023100809578e-09,-8.406018858359210514e-09,-9.052635693617611450e-09,-9.699252528876012386e-09,-1.034586936413441332e-08,-1.099248619939281426e-08,-1.163910303465121519e-08,-1.228571986990961613e-08,-1.293233670516801707e-08,-1.357895354042641800e-08,-1.422557037568481894e-08,-1.487218721094321987e-08,-1.551880404620162246e-08,-1.616542088146002671e-08,-1.681203771671843095e-08,-1.745865455197683520e-08,-1.810527138723523944e-08,-1.875188822249364369e-08,-1.939850505775204793e-08,-2.004512189301045218e-08,-2.069173872826885642e-08,-2.133835556352726067e-08,-2.198497239878566491e-08,-2.263158923404406916e-08,-2.327820606930247340e-08,-2.392482290456087765e-08,-2.457143973981928189e-08,-2.521805657507768614e-08,-2.586467341033609038e-08,-2.651129024559449462e-08,-2.715790708085289887e-08,-2.780452391611130311e-08,-2.845114075136970736e-08,-2.909775758662811160e-08,-2.974437442188651585e-08,-3.039099125714492009e-08,-3.103760809240332434e-08,-3.168422492766172858e-08,-3.233084176292013283e-08,-3.297745859817853707e-08,-3.362407543343694132e-08,-3.427069226869534556e-08,-3.491730910395374981e-08,-3.556392593921215405e-08,-3.621054277447055830e-08,-3.685715960972896254e-08,-3.750377644498736679e-08,-3.815039328024577103e-08,-3.879701011550417527e-08,-3.944362695076257952e-08,-4.009024378602098376e-08,-4.073686062127938801e-08 +0.000000000000000000e+00,-6.287329998211268290e-10,-1.257465999642253658e-09,-1.886198999463380694e-09,-2.514931999284507729e-09,-3.143664999105634765e-09,-3.772397998926761387e-09,-4.401130998747888010e-09,-5.029863998569014632e-09,-5.658596998390141254e-09,-6.287329998211267876e-09,-6.916062998032394498e-09,-7.544795997853521120e-09,-8.173528997674647743e-09,-8.802261997495774365e-09,-9.430994997316900987e-09,-1.005972799713802761e-08,-1.068846099695915423e-08,-1.131719399678028085e-08,-1.194592699660140748e-08,-1.257465999642253410e-08,-1.320339299624366072e-08,-1.383212599606478734e-08,-1.446085899588591396e-08,-1.508959199570703893e-08,-1.571832499552816555e-08,-1.634705799534929218e-08,-1.697579099517041880e-08,-1.760452399499154542e-08,-1.823325699481267204e-08,-1.886198999463379867e-08,-1.949072299445492529e-08,-2.011945599427605191e-08,-2.074818899409717853e-08,-2.137692199391830515e-08,-2.200565499373943178e-08,-2.263438799356055840e-08,-2.326312099338168502e-08,-2.389185399320281164e-08,-2.452058699302393826e-08,-2.514931999284506489e-08,-2.577805299266619151e-08,-2.640678599248731813e-08,-2.703551899230844475e-08,-2.766425199212957138e-08,-2.829298499195069800e-08,-2.892171799177182462e-08,-2.955045099159295124e-08,-3.017918399141407786e-08,-3.080791699123520449e-08,-3.143664999105633111e-08,-3.206538299087745773e-08,-3.269411599069858435e-08,-3.332284899051971098e-08,-3.395158199034083760e-08,-3.458031499016196422e-08,-3.520904798998309084e-08,-3.583778098980421746e-08,-3.646651398962534409e-08,-3.709524698944647071e-08,-3.772397998926759733e-08,-3.835271298908872395e-08,-3.898144598890985057e-08,-3.961017898873097720e-08 +0.000000000000000000e+00,6.611194389654281218e-10,1.322238877930856244e-09,1.983358316896284365e-09,2.644477755861712487e-09,3.305597194827140609e-09,3.966716633792568731e-09,4.627836072757996853e-09,5.288955511723424974e-09,5.950074950688853096e-09,6.611194389654281218e-09,7.272313828619709340e-09,7.933433267585137462e-09,8.594552706550565584e-09,9.255672145515993705e-09,9.916791584481421827e-09,1.057791102344684995e-08,1.123903046241227807e-08,1.190014990137770619e-08,1.256126934034313431e-08,1.322238877930856244e-08,1.388350821827399056e-08,1.454462765723941868e-08,1.520574709620484680e-08,1.586686653517027492e-08,1.652798597413570305e-08,1.718910541310113117e-08,1.785022485206655929e-08,1.851134429103198741e-08,1.917246372999741553e-08,1.983358316896284365e-08,2.049470260792827178e-08,2.115582204689369990e-08,2.181694148585912802e-08,2.247806092482455614e-08,2.313918036378998426e-08,2.380029980275541239e-08,2.446141924172084051e-08,2.512253868068626863e-08,2.578365811965169675e-08,2.644477755861712487e-08,2.710589699758255299e-08,2.776701643654798112e-08,2.842813587551340924e-08,2.908925531447883736e-08,2.975037475344426548e-08,3.041149419240969360e-08,3.107261363137511842e-08,3.173373307034054323e-08,3.239485250930596804e-08,3.305597194827139286e-08,3.371709138723681767e-08,3.437821082620224248e-08,3.503933026516766729e-08,3.570044970413309211e-08,3.636156914309851692e-08,3.702268858206394173e-08,3.768380802102936655e-08,3.834492745999479136e-08,3.900604689896021617e-08,3.966716633792564099e-08,4.032828577689106580e-08,4.098940521585649061e-08,4.165052465482191543e-08 +0.000000000000000000e+00,6.546655253610118062e-10,1.309331050722023612e-09,1.963996576083035419e-09,2.618662101444047225e-09,3.273327626805059031e-09,3.927993152166070837e-09,4.582658677527082643e-09,5.237324202888094449e-09,5.891989728249106256e-09,6.546655253610118062e-09,7.201320778971129868e-09,7.855986304332141674e-09,8.510651829693154307e-09,9.165317355054166941e-09,9.819982880415179574e-09,1.047464840577619221e-08,1.112931393113720484e-08,1.178397945649821747e-08,1.243864498185923011e-08,1.309331050722024274e-08,1.374797603258125537e-08,1.440264155794226801e-08,1.505730708330328064e-08,1.571197260866429327e-08,1.636663813402530591e-08,1.702130365938631854e-08,1.767596918474733117e-08,1.833063471010834381e-08,1.898530023546935644e-08,1.963996576083036907e-08,2.029463128619138171e-08,2.094929681155239434e-08,2.160396233691340697e-08,2.225862786227441961e-08,2.291329338763543224e-08,2.356795891299644487e-08,2.422262443835745751e-08,2.487728996371847014e-08,2.553195548907948277e-08,2.618662101444049541e-08,2.684128653980150804e-08,2.749595206516252067e-08,2.815061759052353331e-08,2.880528311588454594e-08,2.945994864124555857e-08,3.011461416660656790e-08,3.076927969196757391e-08,3.142394521732857993e-08,3.207861074268958595e-08,3.273327626805059196e-08,3.338794179341159798e-08,3.404260731877260399e-08,3.469727284413361001e-08,3.535193836949461603e-08,3.600660389485562204e-08,3.666126942021662806e-08,3.731593494557763407e-08,3.797060047093864009e-08,3.862526599629964611e-08,3.927993152166065212e-08,3.993459704702165814e-08,4.058926257238266415e-08,4.124392809774367017e-08 +0.000000000000000000e+00,6.470686087706711929e-10,1.294137217541342386e-09,1.941205826312013579e-09,2.588274435082684771e-09,3.235343043853355964e-09,3.882411652624027157e-09,4.529480261394697936e-09,5.176548870165368716e-09,5.823617478936039495e-09,6.470686087706710274e-09,7.117754696477381054e-09,7.764823305248052660e-09,8.411891914018724266e-09,9.058960522789395873e-09,9.706029131560067479e-09,1.035309774033073909e-08,1.100016634910141069e-08,1.164723495787208230e-08,1.229430356664275391e-08,1.294137217541342551e-08,1.358844078418409712e-08,1.423550939295476872e-08,1.488257800172544033e-08,1.552964661049611194e-08,1.617671521926678520e-08,1.682378382803745846e-08,1.747085243680813172e-08,1.811792104557880498e-08,1.876498965434947824e-08,1.941205826312015150e-08,2.005912687189082476e-08,2.070619548066149802e-08,2.135326408943217128e-08,2.200033269820284455e-08,2.264740130697351781e-08,2.329446991574419107e-08,2.394153852451486433e-08,2.458860713328553759e-08,2.523567574205621085e-08,2.588274435082688411e-08,2.652981295959755737e-08,2.717688156836823063e-08,2.782395017713890389e-08,2.847101878590957715e-08,2.911808739468025041e-08,2.976515600345092368e-08,3.041222461222159694e-08,3.105929322099227020e-08,3.170636182976294346e-08,3.235343043853361672e-08,3.300049904730428998e-08,3.364756765607496324e-08,3.429463626484563650e-08,3.494170487361630976e-08,3.558877348238698302e-08,3.623584209115765628e-08,3.688291069992832954e-08,3.752997930869900281e-08,3.817704791746967607e-08,3.882411652624034933e-08,3.947118513501102259e-08,4.011825374378169585e-08,4.076532235255236911e-08 +0.000000000000000000e+00,-6.611194390640518323e-10,-1.322238878128103665e-09,-1.983358317192155290e-09,-2.644477756256206915e-09,-3.305597195320258541e-09,-3.966716634384310580e-09,-4.627836073448362619e-09,-5.288955512512414658e-09,-5.950074951576466697e-09,-6.611194390640518736e-09,-7.272313829704570775e-09,-7.933433268768622814e-09,-8.594552707832675681e-09,-9.255672146896728547e-09,-9.916791585960781413e-09,-1.057791102502483428e-08,-1.123903046408888715e-08,-1.190014990315294001e-08,-1.256126934221699288e-08,-1.322238878128104574e-08,-1.388350822034509861e-08,-1.454462765940915148e-08,-1.520574709847320434e-08,-1.586686653753725556e-08,-1.652798597660130677e-08,-1.718910541566535798e-08,-1.785022485472940919e-08,-1.851134429379346040e-08,-1.917246373285751161e-08,-1.983358317192156283e-08,-2.049470261098561404e-08,-2.115582205004966525e-08,-2.181694148911371646e-08,-2.247806092817776767e-08,-2.313918036724181889e-08,-2.380029980630587010e-08,-2.446141924536992131e-08,-2.512253868443397252e-08,-2.578365812349802373e-08,-2.644477756256207495e-08,-2.710589700162612616e-08,-2.776701644069017737e-08,-2.842813587975422858e-08,-2.908925531881827979e-08,-2.975037475788233100e-08,-3.041149419694638222e-08,-3.107261363601043343e-08,-3.173373307507448464e-08,-3.239485251413853585e-08,-3.305597195320258706e-08,-3.371709139226663828e-08,-3.437821083133068949e-08,-3.503933027039474070e-08,-3.570044970945879191e-08,-3.636156914852284312e-08,-3.702268858758689434e-08,-3.768380802665094555e-08,-3.834492746571499676e-08,-3.900604690477904797e-08,-3.966716634384309918e-08,-4.032828578290715039e-08,-4.098940522197120161e-08,-4.165052466103525282e-08 +0.000000000000000000e+00,-6.546655254647013775e-10,-1.309331050929402755e-09,-1.963996576394104132e-09,-2.618662101858805510e-09,-3.273327627323506887e-09,-3.927993152788208265e-09,-4.582658678252909642e-09,-5.237324203717611020e-09,-5.891989729182312397e-09,-6.546655254647013775e-09,-7.201320780111715152e-09,-7.855986305576416530e-09,-8.510651831041117907e-09,-9.165317356505819285e-09,-9.819982881970520662e-09,-1.047464840743522204e-08,-1.112931393289992342e-08,-1.178397945836462479e-08,-1.243864498382932617e-08,-1.309331050929402755e-08,-1.374797603475872893e-08,-1.440264156022343030e-08,-1.505730708568813168e-08,-1.571197261115283306e-08,-1.636663813661753444e-08,-1.702130366208223581e-08,-1.767596918754693719e-08,-1.833063471301163857e-08,-1.898530023847633995e-08,-1.963996576394104132e-08,-2.029463128940574270e-08,-2.094929681487044408e-08,-2.160396234033514546e-08,-2.225862786579984683e-08,-2.291329339126454821e-08,-2.356795891672924959e-08,-2.422262444219395097e-08,-2.487728996765865234e-08,-2.553195549312335372e-08,-2.618662101858805510e-08,-2.684128654405275648e-08,-2.749595206951745785e-08,-2.815061759498215923e-08,-2.880528312044686061e-08,-2.945994864591156199e-08,-3.011461417137626336e-08,-3.076927969684096474e-08,-3.142394522230566612e-08,-3.207861074777036750e-08,-3.273327627323506887e-08,-3.338794179869977025e-08,-3.404260732416447163e-08,-3.469727284962917301e-08,-3.535193837509387438e-08,-3.600660390055857576e-08,-3.666126942602327714e-08,-3.731593495148797852e-08,-3.797060047695267989e-08,-3.862526600241738127e-08,-3.927993152788208265e-08,-3.993459705334678403e-08,-4.058926257881148540e-08,-4.124392810427618678e-08 +0.000000000000000000e+00,-6.470686088626259664e-10,-1.294137217725251933e-09,-1.941205826587877899e-09,-2.588274435450503866e-09,-3.235343044313129832e-09,-3.882411653175755799e-09,-4.529480262038381765e-09,-5.176548870901007731e-09,-5.823617479763633698e-09,-6.470686088626259664e-09,-7.117754697488885631e-09,-7.764823306351511597e-09,-8.411891915214137564e-09,-9.058960524076763530e-09,-9.706029132939389496e-09,-1.035309774180201546e-08,-1.100016635066464143e-08,-1.164723495952726740e-08,-1.229430356838989336e-08,-1.294137217725251933e-08,-1.358844078611514530e-08,-1.423550939497777126e-08,-1.488257800384039723e-08,-1.552964661270302319e-08,-1.617671522156564916e-08,-1.682378383042827513e-08,-1.747085243929090109e-08,-1.811792104815352706e-08,-1.876498965701615303e-08,-1.941205826587877899e-08,-2.005912687474140496e-08,-2.070619548360403093e-08,-2.135326409246665689e-08,-2.200033270132928286e-08,-2.264740131019190883e-08,-2.329446991905453479e-08,-2.394153852791716076e-08,-2.458860713677978672e-08,-2.523567574564241269e-08,-2.588274435450503866e-08,-2.652981296336766462e-08,-2.717688157223029059e-08,-2.782395018109291656e-08,-2.847101878995554252e-08,-2.911808739881816849e-08,-2.976515600768079446e-08,-3.041222461654342373e-08,-3.105929322540605301e-08,-3.170636183426868228e-08,-3.235343044313131156e-08,-3.300049905199394083e-08,-3.364756766085657011e-08,-3.429463626971919938e-08,-3.494170487858182866e-08,-3.558877348744445793e-08,-3.623584209630708721e-08,-3.688291070516971648e-08,-3.752997931403234576e-08,-3.817704792289497503e-08,-3.882411653175760431e-08,-3.947118514062023358e-08,-4.011825374948286286e-08,-4.076532235834549213e-08 +0.000000000000000000e+00,6.739951687527314119e-10,1.347990337505462824e-09,2.021985506258194339e-09,2.695980675010926061e-09,3.369975843763657784e-09,4.043971012516389506e-09,4.717966181269120814e-09,5.391961350021852123e-09,6.065956518774583431e-09,6.739951687527314740e-09,7.413946856280046048e-09,8.087942025032777357e-09,8.761937193785508665e-09,9.435932362538239974e-09,1.010992753129097128e-08,1.078392270004370259e-08,1.145791786879643390e-08,1.213191303754916521e-08,1.280590820630189652e-08,1.347990337505462783e-08,1.415389854380735913e-08,1.482789371256009044e-08,1.550188888131282010e-08,1.617588405006555141e-08,1.684987921881828271e-08,1.752387438757101402e-08,1.819786955632374533e-08,1.887186472507647664e-08,1.954585989382920795e-08,2.021985506258193926e-08,2.089385023133467056e-08,2.156784540008740187e-08,2.224184056884013318e-08,2.291583573759286449e-08,2.358983090634559580e-08,2.426382607509832711e-08,2.493782124385105842e-08,2.561181641260378972e-08,2.628581158135652103e-08,2.695980675010925234e-08,2.763380191886198365e-08,2.830779708761471496e-08,2.898179225636744627e-08,2.965578742512017758e-08,3.032978259387290888e-08,3.100377776262564019e-08,3.167777293137837150e-08,3.235176810013110281e-08,3.302576326888383412e-08,3.369975843763656543e-08,3.437375360638929674e-08,3.504774877514202804e-08,3.572174394389475935e-08,3.639573911264749066e-08,3.706973428140022197e-08,3.774372945015295328e-08,3.841772461890568459e-08,3.909171978765841590e-08,3.976571495641114720e-08,4.043971012516387851e-08,4.111370529391660982e-08,4.178770046266934113e-08,4.246169563142207244e-08 +0.000000000000000000e+00,6.663730890947463156e-10,1.332746178189492631e-09,1.999119267284238947e-09,2.665492356378985262e-09,3.331865445473731578e-09,3.998238534568477894e-09,4.664611623663224623e-09,5.330984712757971352e-09,5.997357801852718081e-09,6.663730890947464811e-09,7.330103980042211540e-09,7.996477069136957442e-09,8.662850158231703344e-09,9.329223247326449246e-09,9.995596336421195148e-09,1.066196942551594105e-08,1.132834251461068695e-08,1.199471560370543285e-08,1.266108869280017876e-08,1.332746178189492466e-08,1.399383487098967056e-08,1.466020796008441646e-08,1.532658104917916071e-08,1.599295413827390496e-08,1.665932722736864921e-08,1.732570031646339345e-08,1.799207340555813770e-08,1.865844649465288195e-08,1.932481958374762620e-08,1.999119267284237044e-08,2.065756576193711469e-08,2.132393885103185894e-08,2.199031194012660319e-08,2.265668502922134743e-08,2.332305811831609168e-08,2.398943120741083593e-08,2.465580429650558018e-08,2.532217738560032442e-08,2.598855047469506867e-08,2.665492356378981292e-08,2.732129665288455717e-08,2.798766974197930142e-08,2.865404283107404566e-08,2.932041592016878991e-08,2.998678900926353416e-08,3.065316209835828171e-08,3.131953518745302927e-08,3.198590827654777683e-08,3.265228136564252438e-08,3.331865445473727194e-08,3.398502754383201950e-08,3.465140063292676705e-08,3.531777372202151461e-08,3.598414681111626217e-08,3.665051990021100972e-08,3.731689298930575728e-08,3.798326607840050483e-08,3.864963916749525239e-08,3.931601225658999995e-08,3.998238534568474750e-08,4.064875843477949506e-08,4.131513152387424262e-08,4.198150461296899017e-08 +0.000000000000000000e+00,6.646549410511712565e-10,1.329309882102342513e-09,1.993964823153513976e-09,2.658619764204685439e-09,3.323274705255856903e-09,3.987929646307027952e-09,4.652584587358199002e-09,5.317239528409370052e-09,5.981894469460541101e-09,6.646549410511712151e-09,7.311204351562883201e-09,7.975859292614054250e-09,8.640514233665225300e-09,9.305169174716396350e-09,9.969824115767567399e-09,1.063447905681873845e-08,1.129913399786990950e-08,1.196378893892108055e-08,1.262844387997225160e-08,1.329309882102342265e-08,1.395775376207459370e-08,1.462240870312576475e-08,1.528706364417693414e-08,1.595171858522810519e-08,1.661637352627927624e-08,1.728102846733044729e-08,1.794568340838161834e-08,1.861033834943278939e-08,1.927499329048396044e-08,1.993964823153513149e-08,2.060430317258630254e-08,2.126895811363747359e-08,2.193361305468864464e-08,2.259826799573981569e-08,2.326292293679098674e-08,2.392757787784215779e-08,2.459223281889332884e-08,2.525688775994449989e-08,2.592154270099567094e-08,2.658619764204684199e-08,2.725085258309801304e-08,2.791550752414918409e-08,2.858016246520035514e-08,2.924481740625152618e-08,2.990947234730269723e-08,3.057412728835386828e-08,3.123878222940503933e-08,3.190343717045621038e-08,3.256809211150738143e-08,3.323274705255855248e-08,3.389740199360972353e-08,3.456205693466089458e-08,3.522671187571206563e-08,3.589136681676323668e-08,3.655602175781440773e-08,3.722067669886557878e-08,3.788533163991674983e-08,3.854998658096792088e-08,3.921464152201909193e-08,3.987929646307026298e-08,4.054395140412143403e-08,4.120860634517260508e-08,4.187326128622377613e-08 +0.000000000000000000e+00,-6.739951688390918596e-10,-1.347990337678183719e-09,-2.021985506517275579e-09,-2.695980675356367439e-09,-3.369975844195459298e-09,-4.043971013034551158e-09,-4.717966181873642604e-09,-5.391961350712734050e-09,-6.065956519551825496e-09,-6.739951688390916942e-09,-7.413946857230008388e-09,-8.087942026069100661e-09,-8.761937194908192934e-09,-9.435932363747285208e-09,-1.010992753258637748e-08,-1.078392270142546975e-08,-1.145791787026456203e-08,-1.213191303910365430e-08,-1.280590820794274657e-08,-1.347990337678183885e-08,-1.415389854562093112e-08,-1.482789371446002339e-08,-1.550188888329911567e-08,-1.617588405213820794e-08,-1.684987922097730021e-08,-1.752387438981639249e-08,-1.819786955865548476e-08,-1.887186472749457703e-08,-1.954585989633366931e-08,-2.021985506517276158e-08,-2.089385023401185385e-08,-2.156784540285094613e-08,-2.224184057169003840e-08,-2.291583574052913067e-08,-2.358983090936822295e-08,-2.426382607820731522e-08,-2.493782124704640749e-08,-2.561181641588549976e-08,-2.628581158472459204e-08,-2.695980675356368431e-08,-2.763380192240277658e-08,-2.830779709124186886e-08,-2.898179226008096113e-08,-2.965578742892005340e-08,-3.032978259775914237e-08,-3.100377776659823133e-08,-3.167777293543732030e-08,-3.235176810427640926e-08,-3.302576327311549823e-08,-3.369975844195458719e-08,-3.437375361079367616e-08,-3.504774877963276512e-08,-3.572174394847185408e-08,-3.639573911731094305e-08,-3.706973428615003201e-08,-3.774372945498912098e-08,-3.841772462382820994e-08,-3.909171979266729891e-08,-3.976571496150638787e-08,-4.043971013034547684e-08,-4.111370529918456580e-08,-4.178770046802365477e-08,-4.246169563686274373e-08 +0.000000000000000000e+00,-6.663730891875973394e-10,-1.332746178375194679e-09,-1.999119267562792018e-09,-2.665492356750389358e-09,-3.331865445937986697e-09,-3.998238535125584036e-09,-4.664611624313181789e-09,-5.330984713500779542e-09,-5.997357802688377295e-09,-6.663730891875975048e-09,-7.330103981063572801e-09,-7.996477070251169727e-09,-8.662850159438766653e-09,-9.329223248626363578e-09,-9.995596337813960504e-09,-1.066196942700155743e-08,-1.132834251618915436e-08,-1.199471560537675128e-08,-1.266108869456434821e-08,-1.332746178375194513e-08,-1.399383487293954206e-08,-1.466020796212713898e-08,-1.532658105131473591e-08,-1.599295414050233284e-08,-1.665932722968992976e-08,-1.732570031887752669e-08,-1.799207340806512361e-08,-1.865844649725272054e-08,-1.932481958644031747e-08,-1.999119267562791439e-08,-2.065756576481551132e-08,-2.132393885400310824e-08,-2.199031194319070517e-08,-2.265668503237830209e-08,-2.332305812156589902e-08,-2.398943121075349595e-08,-2.465580429994109287e-08,-2.532217738912868980e-08,-2.598855047831628672e-08,-2.665492356750388365e-08,-2.732129665669148057e-08,-2.798766974587907750e-08,-2.865404283506667443e-08,-2.932041592425427135e-08,-2.998678901344186828e-08,-3.065316210262946520e-08,-3.131953519181706213e-08,-3.198590828100465906e-08,-3.265228137019225598e-08,-3.331865445937985291e-08,-3.398502754856744983e-08,-3.465140063775504676e-08,-3.531777372694264368e-08,-3.598414681613024061e-08,-3.665051990531783754e-08,-3.731689299450543446e-08,-3.798326608369303139e-08,-3.864963917288062831e-08,-3.931601226206822524e-08,-3.998238535125582216e-08,-4.064875844044341909e-08,-4.131513152963101602e-08,-4.198150461881861294e-08 +0.000000000000000000e+00,-6.646549411314650581e-10,-1.329309882262930116e-09,-1.993964823394395174e-09,-2.658619764525860233e-09,-3.323274705657325291e-09,-3.987929646788790349e-09,-4.652584587920254993e-09,-5.317239529051719638e-09,-5.981894470183184282e-09,-6.646549411314648927e-09,-7.311204352446113571e-09,-7.975859293577579043e-09,-8.640514234709044515e-09,-9.305169175840509987e-09,-9.969824116971975458e-09,-1.063447905810344093e-08,-1.129913399923490640e-08,-1.196378894036637187e-08,-1.262844388149783735e-08,-1.329309882262930282e-08,-1.395775376376076829e-08,-1.462240870489223376e-08,-1.528706364602369758e-08,-1.595171858715516140e-08,-1.661637352828662521e-08,-1.728102846941808903e-08,-1.794568341054955285e-08,-1.861033835168101666e-08,-1.927499329281248048e-08,-1.993964823394394430e-08,-2.060430317507540812e-08,-2.126895811620687193e-08,-2.193361305733833575e-08,-2.259826799846979957e-08,-2.326292293960126339e-08,-2.392757788073272720e-08,-2.459223282186419102e-08,-2.525688776299565484e-08,-2.592154270412711866e-08,-2.658619764525858247e-08,-2.725085258639004629e-08,-2.791550752752151011e-08,-2.858016246865297392e-08,-2.924481740978443774e-08,-2.990947235091590156e-08,-3.057412729204736869e-08,-3.123878223317883581e-08,-3.190343717431030294e-08,-3.256809211544177006e-08,-3.323274705657323719e-08,-3.389740199770470432e-08,-3.456205693883617144e-08,-3.522671187996763857e-08,-3.589136682109910569e-08,-3.655602176223057282e-08,-3.722067670336203995e-08,-3.788533164449350707e-08,-3.854998658562497420e-08,-3.921464152675644132e-08,-3.987929646788790845e-08,-4.054395140901937558e-08,-4.120860635015084270e-08,-4.187326129128230983e-08 +0.000000000000000000e+00,6.885485940462945774e-10,1.377097188092589155e-09,2.065645782138883939e-09,2.754194376185178723e-09,3.442742970231473507e-09,4.131291564277767878e-09,4.819840158324062249e-09,5.508388752370356619e-09,6.196937346416650990e-09,6.885485940462945360e-09,7.574034534509238904e-09,8.262583128555532447e-09,8.951131722601825991e-09,9.639680316648119534e-09,1.032822891069441308e-08,1.101677750474070662e-08,1.170532609878700016e-08,1.239387469283329371e-08,1.308242328687958725e-08,1.377097188092588079e-08,1.445952047497217434e-08,1.514806906901846788e-08,1.583661766306476142e-08,1.652516625711105497e-08,1.721371485115734851e-08,1.790226344520364206e-08,1.859081203924993560e-08,1.927936063329622914e-08,1.996790922734252269e-08,2.065645782138881623e-08,2.134500641543510977e-08,2.203355500948140332e-08,2.272210360352769686e-08,2.341065219757399040e-08,2.409920079162028395e-08,2.478774938566657749e-08,2.547629797971287103e-08,2.616484657375916458e-08,2.685339516780545812e-08,2.754194376185175166e-08,2.823049235589804521e-08,2.891904094994433875e-08,2.960758954399063229e-08,3.029613813803692915e-08,3.098468673208322600e-08,3.167323532612952285e-08,3.236178392017581970e-08,3.305033251422211655e-08,3.373888110826841341e-08,3.442742970231471026e-08,3.511597829636100711e-08,3.580452689040730396e-08,3.649307548445360081e-08,3.718162407849989767e-08,3.787017267254619452e-08,3.855872126659249137e-08,3.924726986063878822e-08,3.993581845468508508e-08,4.062436704873138193e-08,4.131291564277767878e-08,4.200146423682397563e-08,4.269001283087027248e-08,4.337856142491656934e-08 +0.000000000000000000e+00,6.808977683273062692e-10,1.361795536654612538e-09,2.042693304981918911e-09,2.723591073309225491e-09,3.404488841636532070e-09,4.085386609963838649e-09,4.766284378291145229e-09,5.447182146618451808e-09,6.128079914945758388e-09,6.808977683273064967e-09,7.489875451600371546e-09,8.170773219927678953e-09,8.851670988254986360e-09,9.532568756582293766e-09,1.021346652490960117e-08,1.089436429323690858e-08,1.157526206156421599e-08,1.225615982989152339e-08,1.293705759821883080e-08,1.361795536654613821e-08,1.429885313487344561e-08,1.497975090320075302e-08,1.566064867152806208e-08,1.634154643985537114e-08,1.702244420818268020e-08,1.770334197650998926e-08,1.838423974483729832e-08,1.906513751316460738e-08,1.974603528149191645e-08,2.042693304981922551e-08,2.110783081814653457e-08,2.178872858647384363e-08,2.246962635480115269e-08,2.315052412312846175e-08,2.383142189145577081e-08,2.451231965978307987e-08,2.519321742811038893e-08,2.587411519643769799e-08,2.655501296476500706e-08,2.723591073309231612e-08,2.791680850141962518e-08,2.859770626974693424e-08,2.927860403807424330e-08,2.995950180640155236e-08,3.064039957472886142e-08,3.132129734305617048e-08,3.200219511138347954e-08,3.268309287971078860e-08,3.336399064803809767e-08,3.404488841636540673e-08,3.472578618469271579e-08,3.540668395302002485e-08,3.608758172134733391e-08,3.676847948967464297e-08,3.744937725800195203e-08,3.813027502632926109e-08,3.881117279465657015e-08,3.949207056298387921e-08,4.017296833131118827e-08,4.085386609963849734e-08,4.153476386796580640e-08,4.221566163629311546e-08,4.289655940462042452e-08 +0.000000000000000000e+00,6.817672986781177993e-10,1.363534597356235599e-09,2.045301896034353605e-09,2.727069194712471611e-09,3.408836493390589617e-09,4.090603792068707209e-09,4.772371090746824802e-09,5.454138389424942394e-09,6.135905688103059987e-09,6.817672986781177579e-09,7.499440285459295999e-09,8.181207584137414419e-09,8.862974882815532838e-09,9.544742181493651258e-09,1.022650948017176968e-08,1.090827677884988810e-08,1.159004407752800652e-08,1.227181137620612494e-08,1.295357867488424336e-08,1.363534597356236178e-08,1.431711327224048020e-08,1.499888057091859862e-08,1.568064786959671703e-08,1.636241516827483545e-08,1.704418246695295387e-08,1.772594976563107229e-08,1.840771706430919071e-08,1.908948436298730913e-08,1.977125166166542755e-08,2.045301896034354597e-08,2.113478625902166439e-08,2.181655355769978281e-08,2.249832085637790123e-08,2.318008815505601965e-08,2.386185545373413807e-08,2.454362275241225649e-08,2.522539005109037491e-08,2.590715734976849333e-08,2.658892464844661175e-08,2.727069194712473017e-08,2.795245924580284859e-08,2.863422654448096701e-08,2.931599384315908543e-08,2.999776114183720385e-08,3.067952844051532227e-08,3.136129573919344069e-08,3.204306303787155911e-08,3.272483033654967753e-08,3.340659763522779595e-08,3.408836493390591437e-08,3.477013223258403279e-08,3.545189953126215121e-08,3.613366682994026962e-08,3.681543412861838804e-08,3.749720142729650646e-08,3.817896872597462488e-08,3.886073602465274330e-08,3.954250332333086172e-08,4.022427062200898014e-08,4.090603792068709856e-08,4.158780521936521698e-08,4.226957251804333540e-08,4.295133981672145382e-08 +0.000000000000000000e+00,-6.885485941185434272e-10,-1.377097188237086854e-09,-2.065645782355630075e-09,-2.754194376474173295e-09,-3.442742970592716516e-09,-4.131291564711260150e-09,-4.819840158829803784e-09,-5.508388752948347418e-09,-6.196937347066891052e-09,-6.885485941185434686e-09,-7.574034535303977493e-09,-8.262583129422520300e-09,-8.951131723541063106e-09,-9.639680317659605913e-09,-1.032822891177814872e-08,-1.101677750589669153e-08,-1.170532610001523433e-08,-1.239387469413377714e-08,-1.308242328825231995e-08,-1.377097188237086275e-08,-1.445952047648940556e-08,-1.514806907060794837e-08,-1.583661766472649117e-08,-1.652516625884503398e-08,-1.721371485296357679e-08,-1.790226344708211960e-08,-1.859081204120066240e-08,-1.927936063531920521e-08,-1.996790922943774802e-08,-2.065645782355629082e-08,-2.134500641767483363e-08,-2.203355501179337644e-08,-2.272210360591191924e-08,-2.341065220003046205e-08,-2.409920079414900486e-08,-2.478774938826754766e-08,-2.547629798238609047e-08,-2.616484657650463328e-08,-2.685339517062317608e-08,-2.754194376474171889e-08,-2.823049235886026170e-08,-2.891904095297880450e-08,-2.960758954709734731e-08,-3.029613814121589012e-08,-3.098468673533442962e-08,-3.167323532945296911e-08,-3.236178392357150861e-08,-3.305033251769004811e-08,-3.373888111180858761e-08,-3.442742970592712711e-08,-3.511597830004566661e-08,-3.580452689416420610e-08,-3.649307548828274560e-08,-3.718162408240128510e-08,-3.787017267651982460e-08,-3.855872127063836410e-08,-3.924726986475690359e-08,-3.993581845887544309e-08,-4.062436705299398259e-08,-4.131291564711252209e-08,-4.200146424123106159e-08,-4.269001283534960108e-08,-4.337856142946814058e-08 +0.000000000000000000e+00,-6.808977684067791975e-10,-1.361795536813558395e-09,-2.042693305220337593e-09,-2.723591073627116790e-09,-3.404488842033895988e-09,-4.085386610440675185e-09,-4.766284378847453969e-09,-5.447182147254232753e-09,-6.128079915661011537e-09,-6.808977684067790321e-09,-7.489875452474569105e-09,-8.170773220881348716e-09,-8.851670989288128327e-09,-9.532568757694907938e-09,-1.021346652610168755e-08,-1.089436429450846716e-08,-1.157526206291524677e-08,-1.225615983132202638e-08,-1.293705759972880599e-08,-1.361795536813558561e-08,-1.429885313654236522e-08,-1.497975090494914483e-08,-1.566064867335592609e-08,-1.634154644176270736e-08,-1.702244421016948862e-08,-1.770334197857626989e-08,-1.838423974698305116e-08,-1.906513751538983242e-08,-1.974603528379661369e-08,-2.042693305220339495e-08,-2.110783082061017622e-08,-2.178872858901695748e-08,-2.246962635742373875e-08,-2.315052412583052001e-08,-2.383142189423730128e-08,-2.451231966264408254e-08,-2.519321743105086381e-08,-2.587411519945764508e-08,-2.655501296786442634e-08,-2.723591073627120761e-08,-2.791680850467798887e-08,-2.859770627308477014e-08,-2.927860404149155140e-08,-2.995950180989833598e-08,-3.064039957830512055e-08,-3.132129734671190513e-08,-3.200219511511868970e-08,-3.268309288352547427e-08,-3.336399065193225885e-08,-3.404488842033904342e-08,-3.472578618874582800e-08,-3.540668395715261257e-08,-3.608758172555939715e-08,-3.676847949396618172e-08,-3.744937726237296629e-08,-3.813027503077975087e-08,-3.881117279918653544e-08,-3.949207056759332002e-08,-4.017296833600010459e-08,-4.085386610440688916e-08,-4.153476387281367374e-08,-4.221566164122045831e-08,-4.289655940962724289e-08 +0.000000000000000000e+00,-6.817672987448739630e-10,-1.363534597489747926e-09,-2.045301896234621889e-09,-2.727069194979495852e-09,-3.408836493724369815e-09,-4.090603792469243778e-09,-4.772371091214118155e-09,-5.454138389958992532e-09,-6.135905688703866908e-09,-6.817672987448741285e-09,-7.499440286193615661e-09,-8.181207584938489211e-09,-8.862974883683362760e-09,-9.544742182428236310e-09,-1.022650948117310986e-08,-1.090827677991798341e-08,-1.159004407866285696e-08,-1.227181137740773051e-08,-1.295357867615260406e-08,-1.363534597489747761e-08,-1.431711327364235116e-08,-1.499888057238722471e-08,-1.568064787113209660e-08,-1.636241516987696850e-08,-1.704418246862184039e-08,-1.772594976736671229e-08,-1.840771706611158418e-08,-1.908948436485645608e-08,-1.977125166360132797e-08,-2.045301896234619987e-08,-2.113478626109107176e-08,-2.181655355983594366e-08,-2.249832085858081555e-08,-2.318008815732568745e-08,-2.386185545607055934e-08,-2.454362275481543124e-08,-2.522539005356030313e-08,-2.590715735230517503e-08,-2.658892465105004692e-08,-2.727069194979491882e-08,-2.795245924853979071e-08,-2.863422654728466261e-08,-2.931599384602953450e-08,-2.999776114477440309e-08,-3.067952844351927168e-08,-3.136129574226414026e-08,-3.204306304100900885e-08,-3.272483033975387743e-08,-3.340659763849874602e-08,-3.408836493724361461e-08,-3.477013223598848319e-08,-3.545189953473335178e-08,-3.613366683347822037e-08,-3.681543413222308895e-08,-3.749720143096795754e-08,-3.817896872971282613e-08,-3.886073602845769471e-08,-3.954250332720256330e-08,-4.022427062594743188e-08,-4.090603792469230047e-08,-4.158780522343716906e-08,-4.226957252218203764e-08,-4.295133982092690623e-08 +0.000000000000000000e+00,6.988243848852009422e-10,1.397648769770401884e-09,2.096473154655602930e-09,2.795297539540804182e-09,3.494121924426005435e-09,4.192946309311206687e-09,4.891770694196407940e-09,5.590595079081609192e-09,6.289419463966810445e-09,6.988243848852011697e-09,7.687068233737212949e-09,8.385892618622415029e-09,9.084717003507617109e-09,9.783541388392819188e-09,1.048236577327802127e-08,1.118119015816322335e-08,1.188001454304842543e-08,1.257883892793362751e-08,1.327766331281882959e-08,1.397648769770403167e-08,1.467531208258923375e-08,1.537413646747443582e-08,1.607296085235963790e-08,1.677178523724483998e-08,1.747060962213004206e-08,1.816943400701524414e-08,1.886825839190044622e-08,1.956708277678564830e-08,2.026590716167085038e-08,2.096473154655605246e-08,2.166355593144125454e-08,2.236238031632645662e-08,2.306120470121165870e-08,2.376002908609686078e-08,2.445885347098206286e-08,2.515767785586726494e-08,2.585650224075246702e-08,2.655532662563766910e-08,2.725415101052287118e-08,2.795297539540807326e-08,2.865179978029327534e-08,2.935062416517847742e-08,3.004944855006367619e-08,3.074827293494887827e-08,3.144709731983408035e-08,3.214592170471928243e-08,3.284474608960448451e-08,3.354357047448968659e-08,3.424239485937488867e-08,3.494121924426009074e-08,3.564004362914529282e-08,3.633886801403049490e-08,3.703769239891569698e-08,3.773651678380089906e-08,3.843534116868610114e-08,3.913416555357130322e-08,3.983298993845650530e-08,4.053181432334170738e-08,4.123063870822690946e-08,4.192946309311211154e-08,4.262828747799731362e-08,4.332711186288251570e-08,4.402593624776771778e-08 +0.000000000000000000e+00,6.943742022167732627e-10,1.388748404433546525e-09,2.083122606650319685e-09,2.777496808867092637e-09,3.471871011083865590e-09,4.166245213300638542e-09,4.860619415517411081e-09,5.554993617734183620e-09,6.249367819950956159e-09,6.943742022167728698e-09,7.638116224384501237e-09,8.332490426601273776e-09,9.026864628818046315e-09,9.721238831034818854e-09,1.041561303325159139e-08,1.110998723546836393e-08,1.180436143768513647e-08,1.249873563990190901e-08,1.319310984211868155e-08,1.388748404433545409e-08,1.458185824655222663e-08,1.527623244876899917e-08,1.597060665098577336e-08,1.666498085320254755e-08,1.735935505541932174e-08,1.805372925763609594e-08,1.874810345985287013e-08,1.944247766206964432e-08,2.013685186428641852e-08,2.083122606650319271e-08,2.152560026871996690e-08,2.221997447093674110e-08,2.291434867315351529e-08,2.360872287537028948e-08,2.430309707758706368e-08,2.499747127980383787e-08,2.569184548202061206e-08,2.638621968423738626e-08,2.708059388645416045e-08,2.777496808867093464e-08,2.846934229088770884e-08,2.916371649310448303e-08,2.985809069532125722e-08,3.055246489753803142e-08,3.124683909975480561e-08,3.194121330197157980e-08,3.263558750418835400e-08,3.332996170640512819e-08,3.402433590862190238e-08,3.471871011083867658e-08,3.541308431305545077e-08,3.610745851527222496e-08,3.680183271748899916e-08,3.749620691970577335e-08,3.819058112192254754e-08,3.888495532413932174e-08,3.957932952635609593e-08,4.027370372857287012e-08,4.096807793078964432e-08,4.166245213300641851e-08,4.235682633522319270e-08,4.305120053743996690e-08,4.374557473965674109e-08 +0.000000000000000000e+00,6.964025805851030109e-10,1.392805161170206022e-09,2.089207741755309033e-09,2.785610322340412044e-09,3.482012902925515054e-09,4.178415483510618065e-09,4.874818064095721490e-09,5.571220644680824914e-09,6.267623225265928339e-09,6.964025805851031763e-09,7.660428386436135188e-09,8.356830967021237785e-09,9.053233547606340382e-09,9.749636128191442980e-09,1.044603870877654558e-08,1.114244128936164817e-08,1.183884386994675077e-08,1.253524645053185337e-08,1.323164903111695597e-08,1.392805161170205856e-08,1.462445419228716116e-08,1.532085677287226376e-08,1.601725935345736636e-08,1.671366193404246895e-08,1.741006451462757155e-08,1.810646709521267415e-08,1.880286967579777674e-08,1.949927225638287934e-08,2.019567483696798194e-08,2.089207741755308454e-08,2.158847999813818713e-08,2.228488257872328973e-08,2.298128515930839233e-08,2.367768773989349493e-08,2.437409032047859752e-08,2.507049290106370012e-08,2.576689548164880272e-08,2.646329806223390531e-08,2.715970064281900791e-08,2.785610322340411051e-08,2.855250580398921311e-08,2.924890838457431570e-08,2.994531096515941499e-08,3.064171354574451428e-08,3.133811612632961357e-08,3.203451870691471286e-08,3.273092128749981215e-08,3.342732386808491144e-08,3.412372644867001072e-08,3.482012902925511001e-08,3.551653160984020930e-08,3.621293419042530859e-08,3.690933677101040788e-08,3.760573935159550717e-08,3.830214193218060646e-08,3.899854451276570574e-08,3.969494709335080503e-08,4.039134967393590432e-08,4.108775225452100361e-08,4.178415483510610290e-08,4.248055741569120219e-08,4.317695999627630148e-08,4.387336257686140076e-08 +0.000000000000000000e+00,-6.988243849428264796e-10,-1.397648769885652959e-09,-2.096473154828479542e-09,-2.795297539771306332e-09,-3.494121924714133122e-09,-4.192946309656959912e-09,-4.891770694599786701e-09,-5.590595079542613491e-09,-6.289419464485440281e-09,-6.988243849428267071e-09,-7.687068234371094688e-09,-8.385892619313921477e-09,-9.084717004256748267e-09,-9.783541389199575057e-09,-1.048236577414240185e-08,-1.118119015908522864e-08,-1.188001454402805543e-08,-1.257883892897088222e-08,-1.327766331391370901e-08,-1.397648769885653580e-08,-1.467531208379936259e-08,-1.537413646874218938e-08,-1.607296085368501617e-08,-1.677178523862784295e-08,-1.747060962357066974e-08,-1.816943400851349653e-08,-1.886825839345632332e-08,-1.956708277839915011e-08,-2.026590716334197690e-08,-2.096473154828480369e-08,-2.166355593322763048e-08,-2.236238031817045727e-08,-2.306120470311328406e-08,-2.376002908805611085e-08,-2.445885347299893764e-08,-2.515767785794176443e-08,-2.585650224288459122e-08,-2.655532662782741801e-08,-2.725415101277024480e-08,-2.795297539771307159e-08,-2.865179978265589838e-08,-2.935062416759872517e-08,-3.004944855254155196e-08,-3.074827293748437875e-08,-3.144709732242720554e-08,-3.214592170737003233e-08,-3.284474609231285912e-08,-3.354357047725568591e-08,-3.424239486219851270e-08,-3.494121924714133949e-08,-3.564004363208416628e-08,-3.633886801702699307e-08,-3.703769240196981986e-08,-3.773651678691264665e-08,-3.843534117185547344e-08,-3.913416555679830023e-08,-3.983298994174112702e-08,-4.053181432668395381e-08,-4.123063871162678060e-08,-4.192946309656960739e-08,-4.262828748151243418e-08,-4.332711186645526097e-08,-4.402593625139808776e-08 +0.000000000000000000e+00,-6.943742022816710618e-10,-1.388748404563342124e-09,-2.083122606845013185e-09,-2.777496809126684247e-09,-3.471871011408355309e-09,-4.166245213690026371e-09,-4.860619415971697019e-09,-5.554993618253367667e-09,-6.249367820535038316e-09,-6.943742022816708964e-09,-7.638116225098379612e-09,-8.332490427380051088e-09,-9.026864629661722563e-09,-9.721238831943394038e-09,-1.041561303422506551e-08,-1.110998723650673699e-08,-1.180436143878840846e-08,-1.249873564107007994e-08,-1.319310984335175142e-08,-1.388748404563342289e-08,-1.458185824791509437e-08,-1.527623245019676584e-08,-1.597060665247843732e-08,-1.666498085476010879e-08,-1.735935505704178027e-08,-1.805372925932345174e-08,-1.874810346160512322e-08,-1.944247766388679469e-08,-2.013685186616846617e-08,-2.083122606845013765e-08,-2.152560027073180912e-08,-2.221997447301348060e-08,-2.291434867529515207e-08,-2.360872287757682355e-08,-2.430309707985849502e-08,-2.499747128214016650e-08,-2.569184548442183797e-08,-2.638621968670350945e-08,-2.708059388898518092e-08,-2.777496809126685240e-08,-2.846934229354852387e-08,-2.916371649583019535e-08,-2.985809069811186683e-08,-3.055246490039353830e-08,-3.124683910267520978e-08,-3.194121330495688125e-08,-3.263558750723855273e-08,-3.332996170952022420e-08,-3.402433591180189568e-08,-3.471871011408356715e-08,-3.541308431636523863e-08,-3.610745851864691010e-08,-3.680183272092858158e-08,-3.749620692321025306e-08,-3.819058112549192453e-08,-3.888495532777359601e-08,-3.957932953005526748e-08,-4.027370373233693896e-08,-4.096807793461861043e-08,-4.166245213690028191e-08,-4.235682633918195338e-08,-4.305120054146362486e-08,-4.374557474374529633e-08 +0.000000000000000000e+00,-6.964025806377442681e-10,-1.392805161275488536e-09,-2.089207741913232701e-09,-2.785610322550976659e-09,-3.482012903188720617e-09,-4.178415483826464574e-09,-4.874818064464208946e-09,-5.571220645101953317e-09,-6.267623225739697689e-09,-6.964025806377442060e-09,-7.660428387015186432e-09,-8.356830967652930803e-09,-9.053233548290675175e-09,-9.749636128928419546e-09,-1.044603870956616392e-08,-1.114244129020390829e-08,-1.183884387084165266e-08,-1.253524645147939703e-08,-1.323164903211714140e-08,-1.392805161275488578e-08,-1.462445419339263015e-08,-1.532085677403037617e-08,-1.601725935466812385e-08,-1.671366193530587153e-08,-1.741006451594361921e-08,-1.810646709658136689e-08,-1.880286967721911457e-08,-1.949927225785686225e-08,-2.019567483849460993e-08,-2.089207741913235761e-08,-2.158847999977010529e-08,-2.228488258040785297e-08,-2.298128516104560065e-08,-2.367768774168334833e-08,-2.437409032232109602e-08,-2.507049290295884370e-08,-2.576689548359659138e-08,-2.646329806423433906e-08,-2.715970064487208674e-08,-2.785610322550983442e-08,-2.855250580614758210e-08,-2.924890838678532978e-08,-2.994531096742307746e-08,-3.064171354806082514e-08,-3.133811612869857282e-08,-3.203451870933632050e-08,-3.273092128997406818e-08,-3.342732387061181586e-08,-3.412372645124956354e-08,-3.482012903188731122e-08,-3.551653161252505890e-08,-3.621293419316280658e-08,-3.690933677380055426e-08,-3.760573935443830194e-08,-3.830214193507604962e-08,-3.899854451571379730e-08,-3.969494709635154498e-08,-4.039134967698929266e-08,-4.108775225762704034e-08,-4.178415483826478802e-08,-4.248055741890253570e-08,-4.317695999954028338e-08,-4.387336258017803106e-08 +0.000000000000000000e+00,6.958839665283001016e-10,1.391767933056600203e-09,2.087651899584900201e-09,2.783535866113199993e-09,3.479419832641499784e-09,4.175303799169799575e-09,4.871187765698099367e-09,5.567071732226399158e-09,6.262955698754698950e-09,6.958839665282998741e-09,7.654723631811297705e-09,8.350607598339597496e-09,9.046491564867897288e-09,9.742375531396197079e-09,1.043825949792449687e-08,1.113414346445279666e-08,1.183002743098109645e-08,1.252591139750939624e-08,1.322179536403769604e-08,1.391767933056599583e-08,1.461356329709429562e-08,1.530944726362259541e-08,1.600533123015089520e-08,1.670121519667919499e-08,1.739709916320749478e-08,1.809298312973579458e-08,1.878886709626409437e-08,1.948475106279239416e-08,2.018063502932069395e-08,2.087651899584899374e-08,2.157240296237729353e-08,2.226828692890559332e-08,2.296417089543389312e-08,2.366005486196219291e-08,2.435593882849049270e-08,2.505182279501879249e-08,2.574770676154709228e-08,2.644359072807539207e-08,2.713947469460369186e-08,2.783535866113199165e-08,2.853124262766029145e-08,2.922712659418859124e-08,2.992301056071689103e-08,3.061889452724519082e-08,3.131477849377349061e-08,3.201066246030179040e-08,3.270654642683009019e-08,3.340243039335838999e-08,3.409831435988668978e-08,3.479419832641498957e-08,3.549008229294328936e-08,3.618596625947158915e-08,3.688185022599988894e-08,3.757773419252818873e-08,3.827361815905648853e-08,3.896950212558478832e-08,3.966538609211308811e-08,4.036127005864138790e-08,4.105715402516968769e-08,4.175303799169798748e-08,4.244892195822628727e-08,4.314480592475458707e-08,4.384068989128288686e-08 +0.000000000000000000e+00,-6.958839665788323584e-10,-1.391767933157664717e-09,-2.087651899736497179e-09,-2.783535866315329847e-09,-3.479419832894162516e-09,-4.175303799472995184e-09,-4.871187766051827439e-09,-5.567071732630659694e-09,-6.262955699209491949e-09,-6.958839665788324204e-09,-7.654723632367156459e-09,-8.350607598945988714e-09,-9.046491565524820969e-09,-9.742375532103653224e-09,-1.043825949868248548e-08,-1.113414346526131773e-08,-1.183002743184014999e-08,-1.252591139841898224e-08,-1.322179536499781450e-08,-1.391767933157664675e-08,-1.461356329815547901e-08,-1.530944726473431292e-08,-1.600533123131314683e-08,-1.670121519789198074e-08,-1.739709916447081465e-08,-1.809298313104964856e-08,-1.878886709762848247e-08,-1.948475106420731637e-08,-2.018063503078615028e-08,-2.087651899736498419e-08,-2.157240296394381810e-08,-2.226828693052265201e-08,-2.296417089710148592e-08,-2.366005486368031983e-08,-2.435593883025915374e-08,-2.505182279683798765e-08,-2.574770676341682156e-08,-2.644359072999565547e-08,-2.713947469657448938e-08,-2.783535866315332329e-08,-2.853124262973215720e-08,-2.922712659631099111e-08,-2.992301056288982171e-08,-3.061889452946865231e-08,-3.131477849604748291e-08,-3.201066246262631351e-08,-3.270654642920514411e-08,-3.340243039578397471e-08,-3.409831436236280531e-08,-3.479419832894163591e-08,-3.549008229552046651e-08,-3.618596626209929711e-08,-3.688185022867812771e-08,-3.757773419525695831e-08,-3.827361816183578891e-08,-3.896950212841461951e-08,-3.966538609499345012e-08,-4.036127006157228072e-08,-4.105715402815111132e-08,-4.175303799472994192e-08,-4.244892196130877252e-08,-4.314480592788760312e-08,-4.384068989446643372e-08 +0.000000000000000000e+00,8.547593212230099280e-10,1.709518642446019856e-09,2.564277963669029681e-09,3.419037284892039298e-09,4.273796606115048916e-09,5.128555927338058534e-09,5.983315248561068152e-09,6.838074569784077769e-09,7.692833891007087387e-09,8.547593212230097832e-09,9.402352533453108277e-09,1.025711185467611872e-08,1.111187117589912917e-08,1.196663049712213961e-08,1.282138981834515006e-08,1.367614913956816050e-08,1.453090846079117095e-08,1.538566778201418139e-08,1.624042710323719184e-08,1.709518642446020228e-08,1.794994574568321273e-08,1.880470506690622317e-08,1.965946438812923362e-08,2.051422370935224406e-08,2.136898303057525451e-08,2.222374235179826495e-08,2.307850167302127540e-08,2.393326099424428584e-08,2.478802031546729629e-08,2.564277963669030673e-08,2.649753895791331718e-08,2.735229827913632762e-08,2.820705760035933807e-08,2.906181692158234851e-08,2.991657624280535565e-08,3.077133556402836278e-08,3.162609488525136992e-08,3.248085420647437706e-08,3.333561352769738419e-08,3.419037284892039133e-08,3.504513217014339847e-08,3.589989149136640560e-08,3.675465081258941274e-08,3.760941013381241987e-08,3.846416945503542701e-08,3.931892877625843415e-08,4.017368809748144128e-08,4.102844741870444842e-08,4.188320673992745555e-08,4.273796606115046269e-08,4.359272538237346983e-08,4.444748470359647696e-08,4.530224402481948410e-08,4.615700334604249124e-08,4.701176266726549837e-08,4.786652198848850551e-08,4.872128130971151264e-08,4.957604063093451978e-08,5.043079995215752692e-08,5.128555927338053405e-08,5.214031859460354119e-08,5.299507791582654833e-08,5.384983723704955546e-08 +0.000000000000000000e+00,1.196626740536166880e-09,2.393253481072333759e-09,3.589880221608500432e-09,4.786506962144666691e-09,5.983133702680832950e-09,7.179760443216999210e-09,8.376387183753166296e-09,9.573013924289333382e-09,1.076964066482550047e-08,1.196626740536166756e-08,1.316289414589783464e-08,1.435952088643400173e-08,1.555614762697016881e-08,1.675277436750633590e-08,1.794940110804250299e-08,1.914602784857867007e-08,2.034265458911483716e-08,2.153928132965100425e-08,2.273590807018717133e-08,2.393253481072333842e-08,2.512916155125950551e-08,2.632578829179567259e-08,2.752241503233183968e-08,2.871904177286800676e-08,2.991566851340417385e-08,3.111229525394033763e-08,3.230892199447650141e-08,3.350554873501266518e-08,3.470217547554882896e-08,3.589880221608499274e-08,3.709542895662115652e-08,3.829205569715732029e-08,3.948868243769348407e-08,4.068530917822964785e-08,4.188193591876581163e-08,4.307856265930197541e-08,4.427518939983813918e-08,4.547181614037430296e-08,4.666844288091046674e-08,4.786506962144663052e-08,4.906169636198279429e-08,5.025832310251895807e-08,5.145494984305512185e-08,5.265157658359128563e-08,5.384820332412744940e-08,5.504483006466361318e-08,5.624145680519977696e-08,5.743808354573594074e-08,5.863471028627210451e-08,5.983133702680826829e-08,6.102796376734443869e-08,6.222459050788060908e-08,6.342121724841677948e-08,6.461784398895294987e-08,6.581447072948912027e-08,6.701109747002529066e-08,6.820772421056146106e-08,6.940435095109763145e-08,7.060097769163380185e-08,7.179760443216997224e-08,7.299423117270614264e-08,7.419085791324231303e-08,7.538748465377848343e-08 +0.000000000000000000e+00,-6.500481863789809666e-20,-1.300096372757961933e-19,-1.950144559136942900e-19,-2.600192745515923866e-19,-3.250240931894904833e-19,-3.900289118273885800e-19,-4.550337304652866766e-19,-5.200385491031847733e-19,-5.850433677410828699e-19,-6.500481863789809666e-19,-7.150530050168790632e-19,-7.800578236547771599e-19,-8.450626422926752566e-19,-9.100674609305733532e-19,-9.750722795684715462e-19,-1.040077098206369739e-18,-1.105081916844267932e-18,-1.170086735482166125e-18,-1.235091554120064318e-18,-1.300096372757962511e-18,-1.365101191395860704e-18,-1.430106010033758897e-18,-1.495110828671657090e-18,-1.560115647309555283e-18,-1.625120465947453476e-18,-1.690125284585351669e-18,-1.755130103223249862e-18,-1.820134921861147862e-18,-1.885139740499045862e-18,-1.950144559136943863e-18,-2.015149377774841863e-18,-2.080154196412739863e-18,-2.145159015050637864e-18,-2.210163833688535864e-18,-2.275168652326433865e-18,-2.340173470964331865e-18,-2.405178289602229865e-18,-2.470183108240127866e-18,-2.535187926878025866e-18,-2.600192745515923866e-18,-2.665197564153821867e-18,-2.730202382791719867e-18,-2.795207201429617867e-18,-2.860212020067515868e-18,-2.925216838705413868e-18,-2.990221657343311869e-18,-3.055226475981209869e-18,-3.120231294619107869e-18,-3.185236113257005870e-18,-3.250240931894903870e-18,-3.315245750532801870e-18,-3.380250569170699871e-18,-3.445255387808597871e-18,-3.510260206446495871e-18,-3.575265025084393872e-18,-3.640269843722291872e-18,-3.705274662360189873e-18,-3.770279480998087873e-18,-3.835284299635985873e-18,-3.900289118273883874e-18,-3.965293936911781874e-18,-4.030298755549679874e-18,-4.095303574187577875e-18 +0.000000000000000000e+00,9.304904926630387786e-10,1.860980985326077557e-09,2.791471477989116543e-09,3.721961970652155528e-09,4.652452463315194513e-09,5.582942955978233085e-09,6.513433448641271657e-09,7.443923941304310229e-09,8.374414433967348800e-09,9.304904926630387372e-09,1.023539541929342594e-08,1.116588591195646452e-08,1.209637640461950309e-08,1.302686689728254166e-08,1.395735738994558023e-08,1.488784788260861880e-08,1.581833837527165903e-08,1.674882886793470091e-08,1.767931936059774279e-08,1.860980985326078467e-08,1.954030034592382655e-08,2.047079083858686843e-08,2.140128133124991031e-08,2.233177182391295219e-08,2.326226231657599407e-08,2.419275280923903595e-08,2.512324330190207783e-08,2.605373379456511971e-08,2.698422428722816160e-08,2.791471477989120348e-08,2.884520527255424536e-08,2.977569576521728724e-08,3.070618625788032912e-08,3.163667675054337100e-08,3.256716724320641288e-08,3.349765773586945476e-08,3.442814822853249664e-08,3.535863872119553852e-08,3.628912921385858040e-08,3.721961970652162228e-08,3.815011019918466416e-08,3.908060069184770604e-08,4.001109118451074792e-08,4.094158167717378980e-08,4.187207216983683168e-08,4.280256266249987356e-08,4.373305315516291544e-08,4.466354364782595732e-08,4.559403414048899921e-08,4.652452463315204109e-08,4.745501512581508297e-08,4.838550561847812485e-08,4.931599611114116673e-08,5.024648660380420861e-08,5.117697709646725049e-08,5.210746758913029237e-08,5.303795808179333425e-08,5.396844857445637613e-08,5.489893906711941801e-08,5.582942955978245989e-08,5.675992005244550177e-08,5.769041054510854365e-08,5.862090103777158553e-08 +0.000000000000000000e+00,9.293432881538625256e-10,1.858686576307725051e-09,2.788029864461587370e-09,3.717373152615449689e-09,4.646716440769312008e-09,5.576059728923174740e-09,6.505403017077037472e-09,7.434746305230900205e-09,8.364089593384762110e-09,9.293432881538624015e-09,1.022277616969248592e-08,1.115211945784634783e-08,1.208146274600020973e-08,1.301080603415407164e-08,1.394014932230793354e-08,1.486949261046179545e-08,1.579883589861565735e-08,1.672817918676951760e-08,1.765752247492337785e-08,1.858686576307723810e-08,1.951620905123109836e-08,2.044555233938495861e-08,2.137489562753881886e-08,2.230423891569267911e-08,2.323358220384653936e-08,2.416292549200039961e-08,2.509226878015425986e-08,2.602161206830812011e-08,2.695095535646198036e-08,2.788029864461584061e-08,2.880964193276970086e-08,2.973898522092356111e-08,3.066832850907742137e-08,3.159767179723128162e-08,3.252701508538514187e-08,3.345635837353900212e-08,3.438570166169286237e-08,3.531504494984672262e-08,3.624438823800058287e-08,3.717373152615444312e-08,3.810307481430830337e-08,3.903241810246216362e-08,3.996176139061602387e-08,4.089110467876988413e-08,4.182044796692374438e-08,4.274979125507760463e-08,4.367913454323146488e-08,4.460847783138532513e-08,4.553782111953918538e-08,4.646716440769304563e-08,4.739650769584690588e-08,4.832585098400076613e-08,4.925519427215462638e-08,5.018453756030848663e-08,5.111388084846234688e-08,5.204322413661620714e-08,5.297256742477006739e-08,5.390191071292392764e-08,5.483125400107778789e-08,5.576059728923164814e-08,5.668994057738550839e-08,5.761928386553936864e-08,5.854862715369322889e-08 +0.000000000000000000e+00,7.461537049836401410e-10,1.492307409967280282e-09,2.238461114950920320e-09,2.984614819934560151e-09,3.730768524918199981e-09,4.476922229901839812e-09,5.223075934885479643e-09,5.969229639869119474e-09,6.715383344852759305e-09,7.461537049836399963e-09,8.207690754820040621e-09,8.953844459803681279e-09,9.699998164787321937e-09,1.044615186977096259e-08,1.119230557475460325e-08,1.193845927973824391e-08,1.268461298472188457e-08,1.343076668970552523e-08,1.417692039468916588e-08,1.492307409967280654e-08,1.566922780465644720e-08,1.641538150964008786e-08,1.716153521462372852e-08,1.790768891960736918e-08,1.865384262459100983e-08,1.939999632957465049e-08,2.014615003455829115e-08,2.089230373954193181e-08,2.163845744452557247e-08,2.238461114950921312e-08,2.313076485449285378e-08,2.387691855947649444e-08,2.462307226446013510e-08,2.536922596944377576e-08,2.611537967442741641e-08,2.686153337941105707e-08,2.760768708439469773e-08,2.835384078937833839e-08,2.909999449436197905e-08,2.984614819934561970e-08,3.059230190432926036e-08,3.133845560931290102e-08,3.208460931429654168e-08,3.283076301928018234e-08,3.357691672426382299e-08,3.432307042924746365e-08,3.506922413423110431e-08,3.581537783921474497e-08,3.656153154419838563e-08,3.730768524918202628e-08,3.805383895416566694e-08,3.879999265914930760e-08,3.954614636413294826e-08,4.029230006911658892e-08,4.103845377410022957e-08,4.178460747908387023e-08,4.253076118406751089e-08,4.327691488905115155e-08,4.402306859403479221e-08,4.476922229901843286e-08,4.551537600400207352e-08,4.626152970898571418e-08,4.700768341396935484e-08 +0.000000000000000000e+00,5.980349855998891942e-10,1.196069971199778388e-09,1.794104956799667582e-09,2.392139942399556777e-09,2.990174927999445971e-09,3.588209913599335165e-09,4.186244899199224359e-09,4.784279884799113553e-09,5.382314870399002747e-09,5.980349855998891942e-09,6.578384841598781136e-09,7.176419827198670330e-09,7.774454812798558697e-09,8.372489798398447064e-09,8.970524783998335431e-09,9.568559769598223798e-09,1.016659475519811216e-08,1.076462974079800053e-08,1.136266472639788890e-08,1.196069971199777727e-08,1.255873469759766563e-08,1.315676968319755400e-08,1.375480466879744237e-08,1.435283965439733073e-08,1.495087463999721910e-08,1.554890962559710747e-08,1.614694461119699583e-08,1.674497959679688420e-08,1.734301458239677257e-08,1.794104956799666094e-08,1.853908455359654930e-08,1.913711953919643767e-08,1.973515452479632604e-08,2.033318951039621440e-08,2.093122449599610277e-08,2.152925948159599114e-08,2.212729446719587950e-08,2.272532945279576787e-08,2.332336443839565624e-08,2.392139942399554461e-08,2.451943440959543297e-08,2.511746939519532134e-08,2.571550438079520971e-08,2.631353936639509807e-08,2.691157435199498644e-08,2.750960933759487481e-08,2.810764432319476317e-08,2.870567930879465154e-08,2.930371429439453991e-08,2.990174927999443158e-08,3.049978426559432657e-08,3.109781925119422155e-08,3.169585423679411654e-08,3.229388922239401152e-08,3.289192420799390651e-08,3.348995919359380149e-08,3.408799417919369647e-08,3.468602916479359146e-08,3.528406415039348644e-08,3.588209913599338143e-08,3.648013412159327641e-08,3.707816910719317140e-08,3.767620409279306638e-08 +0.000000000000000000e+00,-6.182104487092727580e-20,-1.236420897418545516e-19,-1.854631346127818394e-19,-2.472841794837091513e-19,-3.091052243546364633e-19,-3.709262692255637752e-19,-4.327473140964910871e-19,-4.945683589674183990e-19,-5.563894038383457109e-19,-6.182104487092730228e-19,-6.800314935802003347e-19,-7.418525384511276466e-19,-8.036735833220549585e-19,-8.654946281929822704e-19,-9.273156730639095824e-19,-9.891367179348369906e-19,-1.050957762805764399e-18,-1.112778807676691807e-18,-1.174599852547619215e-18,-1.236420897418546623e-18,-1.298241942289474032e-18,-1.360062987160401440e-18,-1.421884032031328848e-18,-1.483705076902256256e-18,-1.545526121773183664e-18,-1.607347166644111073e-18,-1.669168211515038481e-18,-1.730989256385965889e-18,-1.792810301256893105e-18,-1.854631346127820320e-18,-1.916452390998747536e-18,-1.978273435869674752e-18,-2.040094480740601967e-18,-2.101915525611529183e-18,-2.163736570482456398e-18,-2.225557615353383614e-18,-2.287378660224310830e-18,-2.349199705095238045e-18,-2.411020749966165261e-18,-2.472841794837092476e-18,-2.534662839708019692e-18,-2.596483884578946908e-18,-2.658304929449874123e-18,-2.720125974320801339e-18,-2.781947019191728554e-18,-2.843768064062655770e-18,-2.905589108933582986e-18,-2.967410153804510201e-18,-3.029231198675437417e-18,-3.091052243546364633e-18,-3.152873288417291848e-18,-3.214694333288219064e-18,-3.276515378159146279e-18,-3.338336423030073495e-18,-3.400157467901000711e-18,-3.461978512771927926e-18,-3.523799557642855142e-18,-3.585620602513782357e-18,-3.647441647384709573e-18,-3.709262692255636789e-18,-3.771083737126564004e-18,-3.832904781997491220e-18,-3.894725826868418436e-18 +0.000000000000000000e+00,-8.547593213535012885e-10,-1.709518642707002577e-09,-2.564277964060503659e-09,-3.419037285414004740e-09,-4.273796606767505822e-09,-5.128555928121007318e-09,-5.983315249474508813e-09,-6.838074570828010308e-09,-7.692833892181511803e-09,-8.547593213535013299e-09,-9.402352534888514794e-09,-1.025711185624201629e-08,-1.111187117759551778e-08,-1.196663049894901928e-08,-1.282138982030252078e-08,-1.367614914165602227e-08,-1.453090846300952377e-08,-1.538566778436302361e-08,-1.624042710571652345e-08,-1.709518642707002329e-08,-1.794994574842352313e-08,-1.880470506977702297e-08,-1.965946439113052281e-08,-2.051422371248402265e-08,-2.136898303383752249e-08,-2.222374235519102233e-08,-2.307850167654452218e-08,-2.393326099789802202e-08,-2.478802031925152186e-08,-2.564277964060502170e-08,-2.649753896195852154e-08,-2.735229828331202138e-08,-2.820705760466552122e-08,-2.906181692601902106e-08,-2.991657624737251759e-08,-3.077133556872601413e-08,-3.162609489007951066e-08,-3.248085421143300719e-08,-3.333561353278650372e-08,-3.419037285414000026e-08,-3.504513217549349679e-08,-3.589989149684699332e-08,-3.675465081820048985e-08,-3.760941013955398638e-08,-3.846416946090748292e-08,-3.931892878226097945e-08,-4.017368810361447598e-08,-4.102844742496797251e-08,-4.188320674632146905e-08,-4.273796606767496558e-08,-4.359272538902846211e-08,-4.444748471038195864e-08,-4.530224403173545517e-08,-4.615700335308895171e-08,-4.701176267444244824e-08,-4.786652199579594477e-08,-4.872128131714944130e-08,-4.957604063850293784e-08,-5.043079995985643437e-08,-5.128555928120993090e-08,-5.214031860256342743e-08,-5.299507792391692396e-08,-5.384983724527042050e-08 +0.000000000000000000e+00,-1.196626740666123364e-09,-2.393253481332246729e-09,-3.589880221998370093e-09,-4.786506962664493458e-09,-5.983133703330617236e-09,-7.179760443996741014e-09,-8.376387184662864792e-09,-9.573013925328988570e-09,-1.076964066599511235e-08,-1.196626740666123613e-08,-1.316289414732735990e-08,-1.435952088799348368e-08,-1.555614762865960911e-08,-1.675277436932573289e-08,-1.794940110999185667e-08,-1.914602785065798045e-08,-2.034265459132410423e-08,-2.153928133199022801e-08,-2.273590807265635178e-08,-2.393253481332247556e-08,-2.512916155398859934e-08,-2.632578829465472312e-08,-2.752241503532084690e-08,-2.871904177598697067e-08,-2.991566851665309445e-08,-3.111229525731921823e-08,-3.230892199798534201e-08,-3.350554873865146579e-08,-3.470217547931758956e-08,-3.589880221998371334e-08,-3.709542896064983712e-08,-3.829205570131596090e-08,-3.948868244198208468e-08,-4.068530918264820845e-08,-4.188193592331433223e-08,-4.307856266398045601e-08,-4.427518940464657979e-08,-4.547181614531270357e-08,-4.666844288597882734e-08,-4.786506962664495112e-08,-4.906169636731107490e-08,-5.025832310797719868e-08,-5.145494984864332246e-08,-5.265157658930944623e-08,-5.384820332997557001e-08,-5.504483007064169379e-08,-5.624145681130781757e-08,-5.743808355197394135e-08,-5.863471029264006513e-08,-5.983133703330618890e-08,-6.102796377397231268e-08,-6.222459051463843646e-08,-6.342121725530456024e-08,-6.461784399597068402e-08,-6.581447073663680779e-08,-6.701109747730293157e-08,-6.820772421796905535e-08,-6.940435095863517913e-08,-7.060097769930130291e-08,-7.179760443996742668e-08,-7.299423118063355046e-08,-7.419085792129967424e-08,-7.538748466196579802e-08 +0.000000000000000000e+00,-5.980349857298755609e-10,-1.196069971459751122e-09,-1.794104957189626579e-09,-2.392139942919501830e-09,-2.990174928649377081e-09,-3.588209914379252332e-09,-4.186244900109127169e-09,-4.784279885839002006e-09,-5.382314871568876843e-09,-5.980349857298751680e-09,-6.578384843028626517e-09,-7.176419828758501355e-09,-7.774454814488376192e-09,-8.372489800218251029e-09,-8.970524785948125866e-09,-9.568559771678000703e-09,-1.016659475740787554e-08,-1.076462974313775038e-08,-1.136266472886762521e-08,-1.196069971459750005e-08,-1.255873470032737489e-08,-1.315676968605724973e-08,-1.375480467178712456e-08,-1.435283965751699940e-08,-1.495087464324687424e-08,-1.554890962897674907e-08,-1.614694461470662391e-08,-1.674497960043649875e-08,-1.734301458616637359e-08,-1.794104957189624842e-08,-1.853908455762612326e-08,-1.913711954335599810e-08,-1.973515452908587293e-08,-2.033318951481574777e-08,-2.093122450054562261e-08,-2.152925948627549745e-08,-2.212729447200537228e-08,-2.272532945773524712e-08,-2.332336444346512196e-08,-2.392139942919499679e-08,-2.451943441492487163e-08,-2.511746940065474647e-08,-2.571550438638462131e-08,-2.631353937211449614e-08,-2.691157435784437098e-08,-2.750960934357424582e-08,-2.810764432930412066e-08,-2.870567931503399549e-08,-2.930371430076387033e-08,-2.990174928649374186e-08,-3.049978427222361669e-08,-3.109781925795349153e-08,-3.169585424368336637e-08,-3.229388922941324121e-08,-3.289192421514311604e-08,-3.348995920087299088e-08,-3.408799418660286572e-08,-3.468602917233274056e-08,-3.528406415806261539e-08,-3.588209914379249023e-08,-3.648013412952236507e-08,-3.707816911525223990e-08,-3.767620410098211474e-08 +0.000000000000000000e+00,-9.304904927930696063e-10,-1.860980985586139213e-09,-2.791471478379208716e-09,-3.721961971172278012e-09,-4.652452463965346894e-09,-5.582942956758415777e-09,-6.513433449551484659e-09,-7.443923942344553542e-09,-8.374414435137622424e-09,-9.304904927930690480e-09,-1.023539542072375854e-08,-1.116588591351682659e-08,-1.209637640630989465e-08,-1.302686689910296270e-08,-1.395735739189603076e-08,-1.488784788468909881e-08,-1.581833837748216687e-08,-1.674882887027523492e-08,-1.767931936306830298e-08,-1.860980985586137103e-08,-1.954030034865443909e-08,-2.047079084144750714e-08,-2.140128133424057520e-08,-2.233177182703364325e-08,-2.326226231982671131e-08,-2.419275281261977937e-08,-2.512324330541284742e-08,-2.605373379820591548e-08,-2.698422429099898353e-08,-2.791471478379205159e-08,-2.884520527658511964e-08,-2.977569576937818770e-08,-3.070618626217125244e-08,-3.163667675496431388e-08,-3.256716724775737532e-08,-3.349765774055043676e-08,-3.442814823334349820e-08,-3.535863872613655963e-08,-3.628912921892962107e-08,-3.721961971172268251e-08,-3.815011020451574395e-08,-3.908060069730880539e-08,-4.001109119010186682e-08,-4.094158168289492826e-08,-4.187207217568798970e-08,-4.280256266848105114e-08,-4.373305316127411257e-08,-4.466354365406717401e-08,-4.559403414686023545e-08,-4.652452463965329689e-08,-4.745501513244635833e-08,-4.838550562523941976e-08,-4.931599611803248120e-08,-5.024648661082554264e-08,-5.117697710361860408e-08,-5.210746759641166552e-08,-5.303795808920472695e-08,-5.396844858199778839e-08,-5.489893907479084983e-08,-5.582942956758391127e-08,-5.675992006037697271e-08,-5.769041055317003414e-08,-5.862090104596309558e-08 +0.000000000000000000e+00,-9.293432882774472382e-10,-1.858686576554894476e-09,-2.788029864832341715e-09,-3.717373153109788953e-09,-4.646716441387236605e-09,-5.576059729664684257e-09,-6.505403017942131908e-09,-7.434746306219579560e-09,-8.364089594497027212e-09,-9.293432882774474864e-09,-1.022277617105192252e-08,-1.115211945932937017e-08,-1.208146274760681782e-08,-1.301080603588426547e-08,-1.394014932416171312e-08,-1.486949261243916077e-08,-1.579883590071661008e-08,-1.672817918899405773e-08,-1.765752247727150538e-08,-1.858686576554895304e-08,-1.951620905382640069e-08,-2.044555234210384834e-08,-2.137489563038129599e-08,-2.230423891865874364e-08,-2.323358220693619130e-08,-2.416292549521363895e-08,-2.509226878349108660e-08,-2.602161207176853425e-08,-2.695095536004598190e-08,-2.788029864832342955e-08,-2.880964193660087721e-08,-2.973898522487832486e-08,-3.066832851315577251e-08,-3.159767180143322016e-08,-3.252701508971066781e-08,-3.345635837798811547e-08,-3.438570166626556312e-08,-3.531504495454301077e-08,-3.624438824282045842e-08,-3.717373153109790607e-08,-3.810307481937535372e-08,-3.903241810765280138e-08,-3.996176139593024903e-08,-4.089110468420769668e-08,-4.182044797248514433e-08,-4.274979126076259198e-08,-4.367913454904003964e-08,-4.460847783731748729e-08,-4.553782112559493494e-08,-4.646716441387238259e-08,-4.739650770214983024e-08,-4.832585099042727789e-08,-4.925519427870472555e-08,-5.018453756698217320e-08,-5.111388085525962085e-08,-5.204322414353706850e-08,-5.297256743181451615e-08,-5.390191072009196381e-08,-5.483125400836941146e-08,-5.576059729664685911e-08,-5.668994058492430676e-08,-5.761928387320175441e-08,-5.854862716147920206e-08 +0.000000000000000000e+00,-7.461537051070996392e-10,-1.492307410214199278e-09,-2.238461115321298711e-09,-2.984614820428398143e-09,-3.730768525535497576e-09,-4.476922230642597422e-09,-5.223075935749697268e-09,-5.969229640856797114e-09,-6.715383345963896960e-09,-7.461537051070996806e-09,-8.207690756178095824e-09,-8.953844461285194843e-09,-9.699998166392293862e-09,-1.044615187149939288e-08,-1.119230557660649190e-08,-1.193845928171359092e-08,-1.268461298682068994e-08,-1.343076669192778896e-08,-1.417692039703488797e-08,-1.492307410214198699e-08,-1.566922780724908601e-08,-1.641538151235618503e-08,-1.716153521746328405e-08,-1.790768892257038307e-08,-1.865384262767748209e-08,-1.939999633278458111e-08,-2.014615003789168013e-08,-2.089230374299877914e-08,-2.163845744810587816e-08,-2.238461115321297718e-08,-2.313076485832007620e-08,-2.387691856342717522e-08,-2.462307226853427424e-08,-2.536922597364137326e-08,-2.611537967874847228e-08,-2.686153338385557129e-08,-2.760768708896267031e-08,-2.835384079406976933e-08,-2.909999449917686835e-08,-2.984614820428396737e-08,-3.059230190939106970e-08,-3.133845561449817202e-08,-3.208460931960527435e-08,-3.283076302471237668e-08,-3.357691672981947901e-08,-3.432307043492658133e-08,-3.506922414003368366e-08,-3.581537784514078599e-08,-3.656153155024788832e-08,-3.730768525535499065e-08,-3.805383896046209297e-08,-3.879999266556919530e-08,-3.954614637067629763e-08,-4.029230007578339996e-08,-4.103845378089050228e-08,-4.178460748599760461e-08,-4.253076119110470694e-08,-4.327691489621180927e-08,-4.402306860131891159e-08,-4.476922230642601392e-08,-4.551537601153311625e-08,-4.626152971664021858e-08,-4.700768342174732090e-08 +0.000000000000000000e+00,7.437714863605632201e-10,1.487542972721126440e-09,2.231314459081689557e-09,2.975085945442252467e-09,3.718857431802815377e-09,4.462628918163378287e-09,5.206400404523940783e-09,5.950171890884503279e-09,6.693943377245065776e-09,7.437714863605628272e-09,8.181486349966190768e-09,8.925257836326753265e-09,9.669029322687315761e-09,1.041280080904787826e-08,1.115657229540844075e-08,1.190034378176900325e-08,1.264411526812956575e-08,1.338788675449012824e-08,1.413165824085069074e-08,1.487542972721125324e-08,1.561920121357181739e-08,1.636297269993238154e-08,1.710674418629294569e-08,1.785051567265350984e-08,1.859428715901407399e-08,1.933805864537463814e-08,2.008183013173520229e-08,2.082560161809576644e-08,2.156937310445633059e-08,2.231314459081689474e-08,2.305691607717745889e-08,2.380068756353802304e-08,2.454445904989858719e-08,2.528823053625915134e-08,2.603200202261971550e-08,2.677577350898027965e-08,2.751954499534084380e-08,2.826331648170140795e-08,2.900708796806197210e-08,2.975085945442253625e-08,3.049463094078310040e-08,3.123840242714366124e-08,3.198217391350422208e-08,3.272594539986478293e-08,3.346971688622534377e-08,3.421348837258590461e-08,3.495725985894646545e-08,3.570103134530702629e-08,3.644480283166758714e-08,3.718857431802814798e-08,3.793234580438870882e-08,3.867611729074926966e-08,3.941988877710983050e-08,4.016366026347039135e-08,4.090743174983095219e-08,4.165120323619151303e-08,4.239497472255207387e-08,4.313874620891263471e-08,4.388251769527319555e-08,4.462628918163375640e-08,4.537006066799431724e-08,4.611383215435487808e-08,4.685760364071543892e-08 +0.000000000000000000e+00,7.850300941108918248e-10,1.570060188221783650e-09,2.355090282332675371e-09,3.140120376443566886e-09,3.925150470554458400e-09,4.710180564665349915e-09,5.495210658776241430e-09,6.280240752887132944e-09,7.065270846998024459e-09,7.850300941108916801e-09,8.635331035219809142e-09,9.420361129330701484e-09,1.020539122344159383e-08,1.099042131755248617e-08,1.177545141166337851e-08,1.256048150577427085e-08,1.334551159988516319e-08,1.413054169399605554e-08,1.491557178810694788e-08,1.570060188221784022e-08,1.648563197632873256e-08,1.727066207043962490e-08,1.805569216455051724e-08,1.884072225866140959e-08,1.962575235277230193e-08,2.041078244688319427e-08,2.119581254099408661e-08,2.198084263510497895e-08,2.276587272921587129e-08,2.355090282332676364e-08,2.433593291743765598e-08,2.512096301154854832e-08,2.590599310565944066e-08,2.669102319977033300e-08,2.747605329388122535e-08,2.826108338799211769e-08,2.904611348210301003e-08,2.983114357621390237e-08,3.061617367032479471e-08,3.140120376443568705e-08,3.218623385854657940e-08,3.297126395265747174e-08,3.375629404676836408e-08,3.454132414087925642e-08,3.532635423499014876e-08,3.611138432910104111e-08,3.689641442321193345e-08,3.768144451732282579e-08,3.846647461143371813e-08,3.925150470554461047e-08,4.003653479965550281e-08,4.082156489376639516e-08,4.160659498787728750e-08,4.239162508198817984e-08,4.317665517609907218e-08,4.396168527020996452e-08,4.474671536432085687e-08,4.553174545843174921e-08,4.631677555254264155e-08,4.710180564665353389e-08,4.788683574076442623e-08,4.867186583487531857e-08,4.945689592898621092e-08 +0.000000000000000000e+00,6.913107117327681483e-10,1.382621423465536297e-09,2.073932135198304341e-09,2.765242846931072179e-09,3.456553558663840018e-09,4.147864270396607856e-09,4.839174982129375694e-09,5.530485693862143532e-09,6.221796405594911370e-09,6.913107117327679208e-09,7.604417829060447046e-09,8.295728540793214057e-09,8.987039252525981068e-09,9.678349964258748079e-09,1.036966067599151509e-08,1.106097138772428210e-08,1.175228209945704911e-08,1.244359281118981612e-08,1.313490352292258313e-08,1.382621423465535014e-08,1.451752494638811715e-08,1.520883565812088417e-08,1.590014636985365118e-08,1.659145708158641819e-08,1.728276779331918520e-08,1.797407850505195221e-08,1.866538921678471922e-08,1.935669992851748623e-08,2.004801064025025324e-08,2.073932135198302025e-08,2.143063206371578726e-08,2.212194277544855427e-08,2.281325348718132129e-08,2.350456419891408830e-08,2.419587491064685531e-08,2.488718562237962232e-08,2.557849633411238933e-08,2.626980704584515634e-08,2.696111775757792335e-08,2.765242846931069036e-08,2.834373918104345737e-08,2.903504989277622438e-08,2.972636060450899139e-08,3.041767131624176171e-08,3.110898202797453203e-08,3.180029273970730235e-08,3.249160345144007267e-08,3.318291416317284299e-08,3.387422487490561331e-08,3.456553558663838363e-08,3.525684629837115395e-08,3.594815701010392427e-08,3.663946772183669459e-08,3.733077843356946491e-08,3.802208914530223523e-08,3.871339985703500555e-08,3.940471056876777587e-08,4.009602128050054619e-08,4.078733199223331651e-08,4.147864270396608683e-08,4.216995341569885715e-08,4.286126412743162747e-08,4.355257483916439779e-08 +0.000000000000000000e+00,-7.437714864912851572e-10,-1.487542972982570314e-09,-2.231314459473855472e-09,-2.975085945965140629e-09,-3.718857432456425786e-09,-4.462628918947710943e-09,-5.206400405438996101e-09,-5.950171891930281258e-09,-6.693943378421566415e-09,-7.437714864912851572e-09,-8.181486351404136730e-09,-8.925257837895421887e-09,-9.669029324386707044e-09,-1.041280081087799220e-08,-1.115657229736927736e-08,-1.190034378386056252e-08,-1.264411527035184767e-08,-1.338788675684313283e-08,-1.413165824333441799e-08,-1.487542972982570314e-08,-1.561920121631698830e-08,-1.636297270280827346e-08,-1.710674418929955862e-08,-1.785051567579084377e-08,-1.859428716228212893e-08,-1.933805864877341409e-08,-2.008183013526469925e-08,-2.082560162175598440e-08,-2.156937310824726956e-08,-2.231314459473855472e-08,-2.305691608122983987e-08,-2.380068756772112503e-08,-2.454445905421241019e-08,-2.528823054070369535e-08,-2.603200202719498050e-08,-2.677577351368626566e-08,-2.751954500017755082e-08,-2.826331648666883598e-08,-2.900708797316012113e-08,-2.975085945965140629e-08,-3.049463094614268814e-08,-3.123840243263396999e-08,-3.198217391912525184e-08,-3.272594540561653368e-08,-3.346971689210781553e-08,-3.421348837859909738e-08,-3.495725986509037923e-08,-3.570103135158166108e-08,-3.644480283807294293e-08,-3.718857432456422478e-08,-3.793234581105550662e-08,-3.867611729754678847e-08,-3.941988878403807032e-08,-4.016366027052935217e-08,-4.090743175702063402e-08,-4.165120324351191587e-08,-4.239497473000319771e-08,-4.313874621649447956e-08,-4.388251770298576141e-08,-4.462628918947704326e-08,-4.537006067596832511e-08,-4.611383216245960696e-08,-4.685760364895088881e-08 +0.000000000000000000e+00,-7.850300942417117829e-10,-1.570060188483423566e-09,-2.355090282725135349e-09,-3.140120376966847131e-09,-3.925150471208558914e-09,-4.710180565450270697e-09,-5.495210659691982480e-09,-6.280240753933694263e-09,-7.065270848175406046e-09,-7.850300942417117829e-09,-8.635331036658828784e-09,-9.420361130900539740e-09,-1.020539122514225070e-08,-1.099042131938396165e-08,-1.177545141362567261e-08,-1.256048150786738356e-08,-1.334551160210909452e-08,-1.413054169635080547e-08,-1.491557179059251643e-08,-1.570060188483422573e-08,-1.648563197907593503e-08,-1.727066207331764433e-08,-1.805569216755935364e-08,-1.884072226180106294e-08,-1.962575235604277224e-08,-2.041078245028448154e-08,-2.119581254452619084e-08,-2.198084263876790014e-08,-2.276587273300960944e-08,-2.355090282725131874e-08,-2.433593292149302805e-08,-2.512096301573473735e-08,-2.590599310997644665e-08,-2.669102320421815595e-08,-2.747605329845986525e-08,-2.826108339270157455e-08,-2.904611348694328385e-08,-2.983114358118499315e-08,-3.061617367542669915e-08,-3.140120376966840514e-08,-3.218623386391011113e-08,-3.297126395815181713e-08,-3.375629405239352312e-08,-3.454132414663522911e-08,-3.532635424087693510e-08,-3.611138433511864110e-08,-3.689641442936034709e-08,-3.768144452360205308e-08,-3.846647461784375907e-08,-3.925150471208546507e-08,-4.003653480632717106e-08,-4.082156490056887705e-08,-4.160659499481058304e-08,-4.239162508905228904e-08,-4.317665518329399503e-08,-4.396168527753570102e-08,-4.474671537177740701e-08,-4.553174546601911301e-08,-4.631677556026081900e-08,-4.710180565450252499e-08,-4.788683574874423098e-08,-4.867186584298593698e-08,-4.945689593722764297e-08 +0.000000000000000000e+00,-6.913107118552516767e-10,-1.382621423710503353e-09,-2.073932135565754927e-09,-2.765242847421006293e-09,-3.456553559276257660e-09,-4.147864271131509026e-09,-4.839174982986759979e-09,-5.530485694842010932e-09,-6.221796406697261885e-09,-6.913107118552512838e-09,-7.604417830407763791e-09,-8.295728542263014744e-09,-8.987039254118265697e-09,-9.678349965973516650e-09,-1.036966067782876760e-08,-1.106097138968401856e-08,-1.175228210153926951e-08,-1.244359281339452046e-08,-1.313490352524977141e-08,-1.382621423710502237e-08,-1.451752494896027332e-08,-1.520883566081552427e-08,-1.590014637267077688e-08,-1.659145708452602949e-08,-1.728276779638128209e-08,-1.797407850823653470e-08,-1.866538922009178731e-08,-1.935669993194703992e-08,-2.004801064380229252e-08,-2.073932135565754513e-08,-2.143063206751279774e-08,-2.212194277936805035e-08,-2.281325349122330295e-08,-2.350456420307855556e-08,-2.419587491493380817e-08,-2.488718562678906077e-08,-2.557849633864431338e-08,-2.626980705049956599e-08,-2.696111776235481860e-08,-2.765242847421007120e-08,-2.834373918606532381e-08,-2.903504989792057642e-08,-2.972636060977582903e-08,-3.041767132163108163e-08,-3.110898203348633424e-08,-3.180029274534158685e-08,-3.249160345719683945e-08,-3.318291416905209206e-08,-3.387422488090734467e-08,-3.456553559276259728e-08,-3.525684630461784988e-08,-3.594815701647310249e-08,-3.663946772832835510e-08,-3.733077844018360771e-08,-3.802208915203886031e-08,-3.871339986389411292e-08,-3.940471057574936553e-08,-4.009602128760461813e-08,-4.078733199945987074e-08,-4.147864271131512335e-08,-4.216995342317037596e-08,-4.286126413502562856e-08,-4.355257484688088117e-08 +0.000000000000000000e+00,7.026176330449108632e-10,1.405235266089821726e-09,2.107852899134732693e-09,2.810470532179643866e-09,3.513088165224555040e-09,4.215705798269466213e-09,4.918323431314377387e-09,5.620941064359288560e-09,6.323558697404199733e-09,7.026176330449110907e-09,7.728793963494021253e-09,8.431411596538930772e-09,9.134029229583840291e-09,9.836646862628749810e-09,1.053926449567365933e-08,1.124188212871856885e-08,1.194449976176347837e-08,1.264711739480838789e-08,1.334973502785329741e-08,1.405235266089820692e-08,1.475497029394311644e-08,1.545758792698802596e-08,1.616020556003293548e-08,1.686282319307784500e-08,1.756544082612275452e-08,1.826805845916766404e-08,1.897067609221257356e-08,1.967329372525748308e-08,2.037591135830239260e-08,2.107852899134730211e-08,2.178114662439221163e-08,2.248376425743712115e-08,2.318638189048203067e-08,2.388899952352694019e-08,2.459161715657184971e-08,2.529423478961675923e-08,2.599685242266166875e-08,2.669947005570657827e-08,2.740208768875148779e-08,2.810470532179639730e-08,2.880732295484130682e-08,2.950994058788621634e-08,3.021255822093112586e-08,3.091517585397603207e-08,3.161779348702093828e-08,3.232041112006584449e-08,3.302302875311075070e-08,3.372564638615565691e-08,3.442826401920056312e-08,3.513088165224546933e-08,3.583349928529037554e-08,3.653611691833528175e-08,3.723873455138018796e-08,3.794135218442509417e-08,3.864396981747000039e-08,3.934658745051490660e-08,4.004920508355981281e-08,4.075182271660471902e-08,4.145444034964962523e-08,4.215705798269453144e-08,4.285967561573943765e-08,4.356229324878434386e-08,4.426491088182925007e-08 +0.000000000000000000e+00,7.222288545358160848e-10,1.444457709071632170e-09,2.166686563607448461e-09,2.888915418143264753e-09,3.611144272679081045e-09,4.333373127214896923e-09,5.055601981750712801e-09,5.777830836286528679e-09,6.500059690822344557e-09,7.222288545358160435e-09,7.944517399893976313e-09,8.666746254429792191e-09,9.388975108965608069e-09,1.011120396350142395e-08,1.083343281803723982e-08,1.155566167257305570e-08,1.227789052710887158e-08,1.300011938164468746e-08,1.372234823618050334e-08,1.444457709071631922e-08,1.516680594525213509e-08,1.588903479978795263e-08,1.661126365432377016e-08,1.733349250885958769e-08,1.805572136339540522e-08,1.877795021793122276e-08,1.950017907246704029e-08,2.022240792700285782e-08,2.094463678153867535e-08,2.166686563607449288e-08,2.238909449061031042e-08,2.311132334514612795e-08,2.383355219968194548e-08,2.455578105421776301e-08,2.527800990875358055e-08,2.600023876328939808e-08,2.672246761782521561e-08,2.744469647236103314e-08,2.816692532689685068e-08,2.888915418143266821e-08,2.961138303596848574e-08,3.033361189050430327e-08,3.105584074504012081e-08,3.177806959957593834e-08,3.250029845411175587e-08,3.322252730864757340e-08,3.394475616318339094e-08,3.466698501771920847e-08,3.538921387225502600e-08,3.611144272679084353e-08,3.683367158132666107e-08,3.755590043586247860e-08,3.827812929039829613e-08,3.900035814493411366e-08,3.972258699946993119e-08,4.044481585400574873e-08,4.116704470854156626e-08,4.188927356307738379e-08,4.261150241761320132e-08,4.333373127214901886e-08,4.405596012668483639e-08,4.477818898122065392e-08,4.550041783575647145e-08 +0.000000000000000000e+00,6.723741639126640222e-10,1.344748327825328044e-09,2.017122491737991963e-09,2.689496655650655675e-09,3.361870819563319387e-09,4.034244983475983099e-09,4.706619147388646811e-09,5.378993311301310523e-09,6.051367475213974235e-09,6.723741639126637948e-09,7.396115803039301660e-09,8.068489966951964544e-09,8.740864130864626602e-09,9.413238294777288660e-09,1.008561245868995072e-08,1.075798662260261278e-08,1.143036078651527483e-08,1.210273495042793689e-08,1.277510911434059895e-08,1.344748327825326101e-08,1.411985744216592306e-08,1.479223160607858512e-08,1.546460576999124718e-08,1.613697993390390924e-08,1.680935409781657129e-08,1.748172826172923335e-08,1.815410242564189541e-08,1.882647658955455747e-08,1.949885075346721952e-08,2.017122491737988158e-08,2.084359908129254364e-08,2.151597324520520570e-08,2.218834740911786776e-08,2.286072157303052981e-08,2.353309573694319187e-08,2.420546990085585393e-08,2.487784406476851599e-08,2.555021822868117804e-08,2.622259239259384010e-08,2.689496655650650216e-08,2.756734072041916422e-08,2.823971488433182627e-08,2.891208904824448833e-08,2.958446321215715039e-08,3.025683737606981245e-08,3.092921153998247451e-08,3.160158570389513656e-08,3.227395986780779862e-08,3.294633403172046068e-08,3.361870819563312274e-08,3.429108235954578479e-08,3.496345652345844685e-08,3.563583068737110891e-08,3.630820485128377097e-08,3.698057901519643302e-08,3.765295317910909508e-08,3.832532734302175714e-08,3.899770150693441920e-08,3.967007567084708125e-08,4.034244983475974331e-08,4.101482399867240537e-08,4.168719816258506743e-08,4.235957232649772949e-08 +0.000000000000000000e+00,-7.026176331737753663e-10,-1.405235266347550733e-09,-2.107852899521326306e-09,-2.810470532695101879e-09,-3.513088165868877452e-09,-4.215705799042652611e-09,-4.918323432216427771e-09,-5.620941065390202930e-09,-6.323558698563978090e-09,-7.026176331737753249e-09,-7.728793964911527581e-09,-8.431411598085301914e-09,-9.134029231259076246e-09,-9.836646864432850578e-09,-1.053926449760662491e-08,-1.124188213078039924e-08,-1.194449976395417358e-08,-1.264711739712794791e-08,-1.334973503030172224e-08,-1.405235266347549657e-08,-1.475497029664927090e-08,-1.545758792982304524e-08,-1.616020556299681957e-08,-1.686282319617059390e-08,-1.756544082934436823e-08,-1.826805846251814257e-08,-1.897067609569191690e-08,-1.967329372886569123e-08,-2.037591136203946556e-08,-2.107852899521323989e-08,-2.178114662838701423e-08,-2.248376426156078856e-08,-2.318638189473456289e-08,-2.388899952790833722e-08,-2.459161716108211156e-08,-2.529423479425588589e-08,-2.599685242742966022e-08,-2.669947006060343455e-08,-2.740208769377720889e-08,-2.810470532695098322e-08,-2.880732296012475755e-08,-2.950994059329853188e-08,-3.021255822647230291e-08,-3.091517585964607062e-08,-3.161779349281983834e-08,-3.232041112599360605e-08,-3.302302875916737377e-08,-3.372564639234114148e-08,-3.442826402551490920e-08,-3.513088165868867691e-08,-3.583349929186244462e-08,-3.653611692503621234e-08,-3.723873455820998005e-08,-3.794135219138374777e-08,-3.864396982455751548e-08,-3.934658745773128320e-08,-4.004920509090505091e-08,-4.075182272407881863e-08,-4.145444035725258634e-08,-4.215705799042635406e-08,-4.285967562360012177e-08,-4.356229325677388949e-08,-4.426491088994765720e-08 +0.000000000000000000e+00,-7.222288546658727620e-10,-1.444457709331745524e-09,-2.166686563997618389e-09,-2.888915418663491461e-09,-3.611144273329364534e-09,-4.333373127995237606e-09,-5.055601982661111092e-09,-5.777830837326984577e-09,-6.500059691992858063e-09,-7.222288546658731549e-09,-7.944517401324605035e-09,-8.666746255990478520e-09,-9.388975110656352006e-09,-1.011120396532222549e-08,-1.083343281998809898e-08,-1.155566167465397246e-08,-1.227789052931984595e-08,-1.300011938398571943e-08,-1.372234823865159292e-08,-1.444457709331746641e-08,-1.516680594798333989e-08,-1.588903480264921338e-08,-1.661126365731508686e-08,-1.733349251198096035e-08,-1.805572136664683383e-08,-1.877795022131270732e-08,-1.950017907597858081e-08,-2.022240793064445429e-08,-2.094463678531032778e-08,-2.166686563997620126e-08,-2.238909449464207475e-08,-2.311132334930794824e-08,-2.383355220397382172e-08,-2.455578105863969521e-08,-2.527800991330556869e-08,-2.600023876797144218e-08,-2.672246762263731566e-08,-2.744469647730318915e-08,-2.816692533196906264e-08,-2.888915418663493612e-08,-2.961138304130080961e-08,-3.033361189596667978e-08,-3.105584075063254996e-08,-3.177806960529842014e-08,-3.250029845996429032e-08,-3.322252731463016049e-08,-3.394475616929603067e-08,-3.466698502396190085e-08,-3.538921387862777102e-08,-3.611144273329364120e-08,-3.683367158795951138e-08,-3.755590044262538155e-08,-3.827812929729125173e-08,-3.900035815195712191e-08,-3.972258700662299209e-08,-4.044481586128886226e-08,-4.116704471595473244e-08,-4.188927357062060262e-08,-4.261150242528647279e-08,-4.333373127995234297e-08,-4.405596013461821315e-08,-4.477818898928408332e-08,-4.550041784394995350e-08 +0.000000000000000000e+00,-6.723741640312480145e-10,-1.344748328062496029e-09,-2.017122492093744147e-09,-2.689496656124992471e-09,-3.361870820156240796e-09,-4.034244984187489121e-09,-4.706619148218737445e-09,-5.378993312249985770e-09,-6.051367476281234095e-09,-6.723741640312482419e-09,-7.396115804343730744e-09,-8.068489968374979896e-09,-8.740864132406229875e-09,-9.413238296437479854e-09,-1.008561246046872983e-08,-1.075798662449997981e-08,-1.143036078853122979e-08,-1.210273495256247977e-08,-1.277510911659372975e-08,-1.344748328062497973e-08,-1.411985744465622971e-08,-1.479223160868747969e-08,-1.546460577271872966e-08,-1.613697993674997964e-08,-1.680935410078122962e-08,-1.748172826481247960e-08,-1.815410242884372958e-08,-1.882647659287497956e-08,-1.949885075690622954e-08,-2.017122492093747952e-08,-2.084359908496872950e-08,-2.151597324899997948e-08,-2.218834741303122945e-08,-2.286072157706247943e-08,-2.353309574109372941e-08,-2.420546990512497939e-08,-2.487784406915622937e-08,-2.555021823318747935e-08,-2.622259239721872933e-08,-2.689496656124997931e-08,-2.756734072528122929e-08,-2.823971488931247927e-08,-2.891208905334372925e-08,-2.958446321737497922e-08,-3.025683738140622589e-08,-3.092921154543747256e-08,-3.160158570946871923e-08,-3.227395987349996591e-08,-3.294633403753121258e-08,-3.361870820156245925e-08,-3.429108236559370592e-08,-3.496345652962495259e-08,-3.563583069365619926e-08,-3.630820485768744593e-08,-3.698057902171869260e-08,-3.765295318574993927e-08,-3.832532734978118594e-08,-3.899770151381243261e-08,-3.967007567784367928e-08,-4.034244984187492595e-08,-4.101482400590617262e-08,-4.168719816993741929e-08,-4.235957233396866596e-08 +0.000000000000000000e+00,6.841931531143767407e-10,1.368386306228753481e-09,2.052579459343130119e-09,2.736772612457506549e-09,3.420965765571882980e-09,4.105158918686259410e-09,4.789352071800635841e-09,5.473545224915012271e-09,6.157738378029388702e-09,6.841931531143765133e-09,7.526124684258141563e-09,8.210317837372517166e-09,8.894510990486892770e-09,9.578704143601268373e-09,1.026289729671564398e-08,1.094709044983001958e-08,1.163128360294439518e-08,1.231547675605877079e-08,1.299966990917314639e-08,1.368386306228752199e-08,1.436805621540189760e-08,1.505224936851627320e-08,1.573644252163064715e-08,1.642063567474502110e-08,1.710482882785939505e-08,1.778902198097376900e-08,1.847321513408814294e-08,1.915740828720251689e-08,1.984160144031689084e-08,2.052579459343126479e-08,2.120998774654563874e-08,2.189418089966001269e-08,2.257837405277438664e-08,2.326256720588876059e-08,2.394676035900313454e-08,2.463095351211750849e-08,2.531514666523188243e-08,2.599933981834625638e-08,2.668353297146063033e-08,2.736772612457500428e-08,2.805191927768937823e-08,2.873611243080375218e-08,2.942030558391812613e-08,3.010449873703250008e-08,3.078869189014687403e-08,3.147288504326124798e-08,3.215707819637562192e-08,3.284127134948999587e-08,3.352546450260436982e-08,3.420965765571874377e-08,3.489385080883311772e-08,3.557804396194749167e-08,3.626223711506186562e-08,3.694643026817623957e-08,3.763062342129061352e-08,3.831481657440498747e-08,3.899900972751936141e-08,3.968320288063373536e-08,4.036739603374810931e-08,4.105158918686248326e-08,4.173578233997685721e-08,4.241997549309123116e-08,4.310416864620560511e-08 +0.000000000000000000e+00,6.930687957570369113e-10,1.386137591514073823e-09,2.079206387271110631e-09,2.772275183028147232e-09,3.465343978785183833e-09,4.158412774542220434e-09,4.851481570299257449e-09,5.544550366056294464e-09,6.237619161813331478e-09,6.930687957570368493e-09,7.623756753327405508e-09,8.316825549084442522e-09,9.009894344841479537e-09,9.702963140598516552e-09,1.039603193635555357e-08,1.108910073211259058e-08,1.178216952786962760e-08,1.247523832362666461e-08,1.316830711938370163e-08,1.386137591514073864e-08,1.455444471089777566e-08,1.524751350665481432e-08,1.594058230241185465e-08,1.663365109816889497e-08,1.732671989392593529e-08,1.801978868968297562e-08,1.871285748544001594e-08,1.940592628119705626e-08,2.009899507695409659e-08,2.079206387271113691e-08,2.148513266846817724e-08,2.217820146422521756e-08,2.287127025998225788e-08,2.356433905573929821e-08,2.425740785149633853e-08,2.495047664725337885e-08,2.564354544301041918e-08,2.633661423876745950e-08,2.702968303452449982e-08,2.772275183028154015e-08,2.841582062603858047e-08,2.910888942179562079e-08,2.980195821755266112e-08,3.049502701330970144e-08,3.118809580906674176e-08,3.188116460482378209e-08,3.257423340058082241e-08,3.326730219633786273e-08,3.396037099209490306e-08,3.465343978785194338e-08,3.534650858360898370e-08,3.603957737936602403e-08,3.673264617512306435e-08,3.742571497088010467e-08,3.811878376663714500e-08,3.881185256239418532e-08,3.950492135815122565e-08,4.019799015390826597e-08,4.089105894966530629e-08,4.158412774542234662e-08,4.227719654117938694e-08,4.297026533693642726e-08,4.366333413269346759e-08 +0.000000000000000000e+00,6.691078179460108495e-10,1.338215635892021699e-09,2.007323453838032755e-09,2.676431271784043812e-09,3.345539089730054868e-09,4.014646907676065511e-09,4.683754725622076154e-09,5.352862543568086796e-09,6.021970361514097439e-09,6.691078179460108082e-09,7.360185997406118725e-09,8.029293815352129367e-09,8.698401633298140837e-09,9.367509451244152307e-09,1.003661726919016378e-08,1.070572508713617525e-08,1.137483290508218672e-08,1.204394072302819819e-08,1.271304854097420966e-08,1.338215635892022113e-08,1.405126417686623260e-08,1.472037199481224407e-08,1.538947981275825554e-08,1.605858763070426866e-08,1.672769544865028179e-08,1.739680326659629491e-08,1.806591108454230803e-08,1.873501890248832116e-08,1.940412672043433428e-08,2.007323453838034741e-08,2.074234235632636053e-08,2.141145017427237366e-08,2.208055799221838678e-08,2.274966581016439990e-08,2.341877362811041303e-08,2.408788144605642615e-08,2.475698926400243928e-08,2.542609708194845240e-08,2.609520489989446553e-08,2.676431271784047865e-08,2.743342053578649177e-08,2.810252835373250490e-08,2.877163617167851802e-08,2.944074398962453115e-08,3.010985180757054096e-08,3.077895962551655078e-08,3.144806744346256059e-08,3.211717526140857041e-08,3.278628307935458022e-08,3.345539089730059004e-08,3.412449871524659986e-08,3.479360653319260967e-08,3.546271435113861949e-08,3.613182216908462930e-08,3.680092998703063912e-08,3.747003780497664893e-08,3.813914562292265875e-08,3.880825344086866856e-08,3.947736125881467838e-08,4.014646907676068820e-08,4.081557689470669801e-08,4.148468471265270783e-08,4.215379253059871764e-08 +0.000000000000000000e+00,-6.841931532389419726e-10,-1.368386306477883945e-09,-2.052579459716825918e-09,-2.736772612955767890e-09,-3.420965766194709863e-09,-4.105158919433651835e-09,-4.789352072672593394e-09,-5.473545225911534953e-09,-6.157738379150476512e-09,-6.841931532389418071e-09,-7.526124685628359630e-09,-8.210317838867302017e-09,-8.894510992106244403e-09,-9.578704145345186789e-09,-1.026289729858412917e-08,-1.094709045182307156e-08,-1.163128360506201395e-08,-1.231547675830095633e-08,-1.299966991153989872e-08,-1.368386306477884111e-08,-1.436805621801778349e-08,-1.505224937125672588e-08,-1.573644252449566992e-08,-1.642063567773461396e-08,-1.710482883097355800e-08,-1.778902198421250204e-08,-1.847321513745144608e-08,-1.915740829069039012e-08,-1.984160144392933416e-08,-2.052579459716827820e-08,-2.120998775040722224e-08,-2.189418090364616628e-08,-2.257837405688511032e-08,-2.326256721012405436e-08,-2.394676036336299840e-08,-2.463095351660194245e-08,-2.531514666984088649e-08,-2.599933982307983053e-08,-2.668353297631877457e-08,-2.736772612955771861e-08,-2.805191928279666265e-08,-2.873611243603560669e-08,-2.942030558927455073e-08,-3.010449874251349808e-08,-3.078869189575244543e-08,-3.147288504899139278e-08,-3.215707820223034013e-08,-3.284127135546928748e-08,-3.352546450870823482e-08,-3.420965766194718217e-08,-3.489385081518612952e-08,-3.557804396842507687e-08,-3.626223712166402422e-08,-3.694643027490297157e-08,-3.763062342814191892e-08,-3.831481658138086627e-08,-3.899900973461981362e-08,-3.968320288785876097e-08,-4.036739604109770832e-08,-4.105158919433665567e-08,-4.173578234757560302e-08,-4.241997550081455036e-08,-4.310416865405349771e-08 +0.000000000000000000e+00,-6.930687958840168902e-10,-1.386137591768033780e-09,-2.079206387652050877e-09,-2.772275183536067974e-09,-3.465343979420085071e-09,-4.158412775304101755e-09,-4.851481571188118438e-09,-5.544550367072135121e-09,-6.237619162956151805e-09,-6.930687958840168488e-09,-7.623756754724184344e-09,-8.316825550608200201e-09,-9.009894346492216057e-09,-9.702963142376231913e-09,-1.039603193826024777e-08,-1.108910073414426363e-08,-1.178216953002827948e-08,-1.247523832591229534e-08,-1.316830712179631119e-08,-1.386137591768032705e-08,-1.455444471356434291e-08,-1.524751350944835876e-08,-1.594058230533237462e-08,-1.663365110121639048e-08,-1.732671989710040633e-08,-1.801978869298442219e-08,-1.871285748886843804e-08,-1.940592628475245390e-08,-2.009899508063646976e-08,-2.079206387652048561e-08,-2.148513267240450147e-08,-2.217820146828851732e-08,-2.287127026417253318e-08,-2.356433906005654904e-08,-2.425740785594056489e-08,-2.495047665182458075e-08,-2.564354544770859661e-08,-2.633661424359261246e-08,-2.702968303947662832e-08,-2.772275183536064417e-08,-2.841582063124466003e-08,-2.910888942712867589e-08,-2.980195822301269174e-08,-3.049502701889671091e-08,-3.118809581478072676e-08,-3.188116461066474262e-08,-3.257423340654875848e-08,-3.326730220243277433e-08,-3.396037099831679019e-08,-3.465343979420080605e-08,-3.534650859008482190e-08,-3.603957738596883776e-08,-3.673264618185285361e-08,-3.742571497773686947e-08,-3.811878377362088533e-08,-3.881185256950490118e-08,-3.950492136538891704e-08,-4.019799016127293289e-08,-4.089105895715694875e-08,-4.158412775304096461e-08,-4.227719654892498046e-08,-4.297026534480899632e-08,-4.366333414069301218e-08 +0.000000000000000000e+00,-6.691078180577128025e-10,-1.338215636115425605e-09,-2.007323454173138511e-09,-2.676431272230851623e-09,-3.345539090288564736e-09,-4.014646908346277849e-09,-4.683754726403990961e-09,-5.352862544461704074e-09,-6.021970362519417187e-09,-6.691078180577130299e-09,-7.360185998634843412e-09,-8.029293816692557352e-09,-8.698401634750271292e-09,-9.367509452807985232e-09,-1.003661727086569917e-08,-1.070572508892341311e-08,-1.137483290698112705e-08,-1.204394072503884099e-08,-1.271304854309655493e-08,-1.338215636115426887e-08,-1.405126417921198281e-08,-1.472037199726969675e-08,-1.538947981532740904e-08,-1.605858763338512132e-08,-1.672769545144283361e-08,-1.739680326950054589e-08,-1.806591108755825818e-08,-1.873501890561597046e-08,-1.940412672367368275e-08,-2.007323454173139503e-08,-2.074234235978910732e-08,-2.141145017784681961e-08,-2.208055799590453189e-08,-2.274966581396224418e-08,-2.341877363201995646e-08,-2.408788145007766875e-08,-2.475698926813538103e-08,-2.542609708619309332e-08,-2.609520490425080560e-08,-2.676431272230851789e-08,-2.743342054036623017e-08,-2.810252835842394246e-08,-2.877163617648165475e-08,-2.944074399453936703e-08,-3.010985181259707932e-08,-3.077895963065479160e-08,-3.144806744871250389e-08,-3.211717526677021617e-08,-3.278628308482792846e-08,-3.345539090288564074e-08,-3.412449872094335303e-08,-3.479360653900106532e-08,-3.546271435705877760e-08,-3.613182217511648989e-08,-3.680092999317420217e-08,-3.747003781123191446e-08,-3.813914562928962674e-08,-3.880825344734733903e-08,-3.947736126540505131e-08,-4.014646908346276360e-08,-4.081557690152047588e-08,-4.148468471957818817e-08,-4.215379253763590046e-08 +0.000000000000000000e+00,6.788807437562404222e-10,1.357761487512480844e-09,2.036642231268721267e-09,2.715522975024961689e-09,3.394403718781202111e-09,4.073284462537442533e-09,4.752165206293682955e-09,5.431045950049923377e-09,6.109926693806163800e-09,6.788807437562404222e-09,7.467688181318644644e-09,8.146568925074885066e-09,8.825449668831125488e-09,9.504330412587365910e-09,1.018321115634360633e-08,1.086209190009984675e-08,1.154097264385608718e-08,1.221985338761232760e-08,1.289873413136856802e-08,1.357761487512480844e-08,1.425649561888104887e-08,1.493537636263728929e-08,1.561425710639352806e-08,1.629313785014976682e-08,1.697201859390600559e-08,1.765089933766224436e-08,1.832978008141848313e-08,1.900866082517472189e-08,1.968754156893096066e-08,2.036642231268719943e-08,2.104530305644343820e-08,2.172418380019967697e-08,2.240306454395591573e-08,2.308194528771215450e-08,2.376082603146839327e-08,2.443970677522463204e-08,2.511858751898087081e-08,2.579746826273710957e-08,2.647634900649334834e-08,2.715522975024958711e-08,2.783411049400582588e-08,2.851299123776206464e-08,2.919187198151830341e-08,2.987075272527454549e-08,3.054963346903078757e-08,3.122851421278702964e-08,3.190739495654327172e-08,3.258627570029951379e-08,3.326515644405575587e-08,3.394403718781199795e-08,3.462291793156824002e-08,3.530179867532448210e-08,3.598067941908072418e-08,3.665956016283696625e-08,3.733844090659320833e-08,3.801732165034945041e-08,3.869620239410569248e-08,3.937508313786193456e-08,4.005396388161817664e-08,4.073284462537441871e-08,4.141172536913066079e-08,4.209060611288690287e-08,4.276948685664314494e-08 +0.000000000000000000e+00,6.804624484600447820e-10,1.360924896920089564e-09,2.041387345380134346e-09,2.721849793840179128e-09,3.402312242300223910e-09,4.082774690760268692e-09,4.763237139220313474e-09,5.443699587680358256e-09,6.124162036140403038e-09,6.804624484600447820e-09,7.485086933060493429e-09,8.165549381520539039e-09,8.846011829980584648e-09,9.526474278440630257e-09,1.020693672690067587e-08,1.088739917536072148e-08,1.156786162382076708e-08,1.224832407228081269e-08,1.292878652074085830e-08,1.360924896920090391e-08,1.428971141766094952e-08,1.497017386612099348e-08,1.565063631458103743e-08,1.633109876304108139e-08,1.701156121150112534e-08,1.769202365996116930e-08,1.837248610842121325e-08,1.905294855688125721e-08,1.973341100534130116e-08,2.041387345380134512e-08,2.109433590226138907e-08,2.177479835072143302e-08,2.245526079918147698e-08,2.313572324764152093e-08,2.381618569610156489e-08,2.449664814456160884e-08,2.517711059302165280e-08,2.585757304148169675e-08,2.653803548994174071e-08,2.721849793840178466e-08,2.789896038686182862e-08,2.857942283532187257e-08,2.925988528378191653e-08,2.994034773224196048e-08,3.062081018070200444e-08,3.130127262916204839e-08,3.198173507762209235e-08,3.266219752608213630e-08,3.334265997454218026e-08,3.402312242300222421e-08,3.470358487146226817e-08,3.538404731992231212e-08,3.606450976838235608e-08,3.674497221684240003e-08,3.742543466530244399e-08,3.810589711376248794e-08,3.878635956222253190e-08,3.946682201068257585e-08,4.014728445914261981e-08,4.082774690760266376e-08,4.150820935606270772e-08,4.218867180452275167e-08,4.286913425298279562e-08 +0.000000000000000000e+00,6.741180789719983112e-10,1.348236157943996622e-09,2.022354236915994830e-09,2.696472315887992831e-09,3.370590394859990832e-09,4.044708473831988833e-09,4.718826552803986834e-09,5.392944631775984835e-09,6.067062710747982836e-09,6.741180789719980838e-09,7.415298868691978839e-09,8.089416947663976012e-09,8.763535026635972359e-09,9.437653105607968706e-09,1.011177118457996505e-08,1.078588926355196140e-08,1.146000734252395775e-08,1.213412542149595409e-08,1.280824350046795044e-08,1.348236157943994679e-08,1.415647965841194313e-08,1.483059773738393948e-08,1.550471581635593583e-08,1.617883389532793217e-08,1.685295197429992852e-08,1.752707005327192487e-08,1.820118813224392121e-08,1.887530621121591756e-08,1.954942429018791391e-08,2.022354236915991025e-08,2.089766044813190660e-08,2.157177852710390295e-08,2.224589660607589929e-08,2.292001468504789564e-08,2.359413276401989199e-08,2.426825084299188833e-08,2.494236892196388468e-08,2.561648700093588103e-08,2.629060507990787737e-08,2.696472315887987372e-08,2.763884123785187007e-08,2.831295931682386641e-08,2.898707739579586276e-08,2.966119547476785911e-08,3.033531355373985876e-08,3.100943163271185842e-08,3.168354971168385807e-08,3.235766779065585773e-08,3.303178586962785738e-08,3.370590394859985704e-08,3.438002202757185669e-08,3.505414010654385635e-08,3.572825818551585600e-08,3.640237626448785566e-08,3.707649434345985532e-08,3.775061242243185497e-08,3.842473050140385463e-08,3.909884858037585428e-08,3.977296665934785394e-08,4.044708473831985359e-08,4.112120281729185325e-08,4.179532089626385290e-08,4.246943897523585256e-08 +0.000000000000000000e+00,-6.788807438746933063e-10,-1.357761487749386613e-09,-2.036642231624079712e-09,-2.715522975498772812e-09,-3.394403719373465911e-09,-4.073284463248159424e-09,-4.752165207122852937e-09,-5.431045950997546450e-09,-6.109926694872239963e-09,-6.788807438746933476e-09,-7.467688182621627817e-09,-8.146568926496322157e-09,-8.825449670371016497e-09,-9.504330414245710837e-09,-1.018321115812040518e-08,-1.086209190199509952e-08,-1.154097264586979386e-08,-1.221985338974448820e-08,-1.289873413361918254e-08,-1.357761487749387688e-08,-1.425649562136857122e-08,-1.493537636524326556e-08,-1.561425710911795990e-08,-1.629313785299265424e-08,-1.697201859686734858e-08,-1.765089934074204292e-08,-1.832978008461673726e-08,-1.900866082849143160e-08,-1.968754157236612594e-08,-2.036642231624082028e-08,-2.104530306011551462e-08,-2.172418380399020896e-08,-2.240306454786490330e-08,-2.308194529173959764e-08,-2.376082603561429198e-08,-2.443970677948898632e-08,-2.511858752336368066e-08,-2.579746826723837500e-08,-2.647634901111306934e-08,-2.715522975498776368e-08,-2.783411049886245802e-08,-2.851299124273715236e-08,-2.919187198661184670e-08,-2.987075273048653774e-08,-3.054963347436122546e-08,-3.122851421823591318e-08,-3.190739496211060090e-08,-3.258627570598528863e-08,-3.326515644985997635e-08,-3.394403719373466407e-08,-3.462291793760935180e-08,-3.530179868148403952e-08,-3.598067942535872724e-08,-3.665956016923341496e-08,-3.733844091310810269e-08,-3.801732165698279041e-08,-3.869620240085747813e-08,-3.937508314473216586e-08,-4.005396388860685358e-08,-4.073284463248154130e-08,-4.141172537635622902e-08,-4.209060612023091675e-08,-4.276948686410560447e-08 +0.000000000000000000e+00,-6.804624485817600665e-10,-1.360924897163520133e-09,-2.041387345745279993e-09,-2.721849794327039852e-09,-3.402312242908799712e-09,-4.082774691490559985e-09,-4.763237140072320258e-09,-5.443699588654080532e-09,-6.124162037235840805e-09,-6.804624485817601078e-09,-7.485086934399361351e-09,-8.165549382981121625e-09,-8.846011831562881898e-09,-9.526474280144642171e-09,-1.020693672872640244e-08,-1.088739917730816272e-08,-1.156786162588992299e-08,-1.224832407447168326e-08,-1.292878652305344354e-08,-1.360924897163520381e-08,-1.428971142021696408e-08,-1.497017386879872270e-08,-1.565063631738048132e-08,-1.633109876596223994e-08,-1.701156121454399856e-08,-1.769202366312575718e-08,-1.837248611170751580e-08,-1.905294856028927442e-08,-1.973341100887103304e-08,-2.041387345745279165e-08,-2.109433590603455027e-08,-2.177479835461630889e-08,-2.245526080319806751e-08,-2.313572325177982613e-08,-2.381618570036158475e-08,-2.449664814894334337e-08,-2.517711059752510199e-08,-2.585757304610686061e-08,-2.653803549468861922e-08,-2.721849794327037784e-08,-2.789896039185213646e-08,-2.857942284043389508e-08,-2.925988528901565370e-08,-2.994034773759741232e-08,-3.062081018617917094e-08,-3.130127263476092956e-08,-3.198173508334268818e-08,-3.266219753192444679e-08,-3.334265998050620541e-08,-3.402312242908796403e-08,-3.470358487766972265e-08,-3.538404732625148127e-08,-3.606450977483323989e-08,-3.674497222341499851e-08,-3.742543467199675713e-08,-3.810589712057851575e-08,-3.878635956916027436e-08,-3.946682201774203298e-08,-4.014728446632379160e-08,-4.082774691490555022e-08,-4.150820936348730884e-08,-4.218867181206906746e-08,-4.286913426065082608e-08 +0.000000000000000000e+00,-6.741180790745893867e-10,-1.348236158149178773e-09,-2.022354237223768057e-09,-2.696472316298357133e-09,-3.370590395372946210e-09,-4.044708474447535286e-09,-4.718826553522124363e-09,-5.392944632596713439e-09,-6.067062711671302516e-09,-6.741180790745891592e-09,-7.415298869820480669e-09,-8.089416948895068918e-09,-8.763535027969657167e-09,-9.437653107044245417e-09,-1.011177118611883367e-08,-1.078588926519342192e-08,-1.146000734426801016e-08,-1.213412542334259841e-08,-1.280824350241718666e-08,-1.348236158149177491e-08,-1.415647966056636316e-08,-1.483059773964095141e-08,-1.550471581871554132e-08,-1.617883389779013122e-08,-1.685295197686472112e-08,-1.752707005593931103e-08,-1.820118813501390093e-08,-1.887530621408849083e-08,-1.954942429316308074e-08,-2.022354237223767064e-08,-2.089766045131226054e-08,-2.157177853038685045e-08,-2.224589660946144035e-08,-2.292001468853603026e-08,-2.359413276761062016e-08,-2.426825084668521006e-08,-2.494236892575979997e-08,-2.561648700483438987e-08,-2.629060508390897977e-08,-2.696472316298356968e-08,-2.763884124205815958e-08,-2.831295932113274949e-08,-2.898707740020733939e-08,-2.966119547928192929e-08,-3.033531355835651920e-08,-3.100943163743110910e-08,-3.168354971650569900e-08,-3.235766779558028891e-08,-3.303178587465487881e-08,-3.370590395372946871e-08,-3.438002203280405862e-08,-3.505414011187864852e-08,-3.572825819095323843e-08,-3.640237627002782833e-08,-3.707649434910241823e-08,-3.775061242817700814e-08,-3.842473050725159804e-08,-3.909884858632618794e-08,-3.977296666540077785e-08,-4.044708474447536775e-08,-4.112120282354995766e-08,-4.179532090262454756e-08,-4.246943898169913746e-08 +0.000000000000000000e+00,6.833702167432640279e-10,1.366740433486528056e-09,2.050110650229792291e-09,2.733480866973056525e-09,3.416851083716320760e-09,4.100221300459584581e-09,4.783591517202848402e-09,5.466961733946112223e-09,6.150331950689376044e-09,6.833702167432639865e-09,7.517072384175902859e-09,8.200442600919165853e-09,8.883812817662428847e-09,9.567183034405691841e-09,1.025055325114895484e-08,1.093392346789221783e-08,1.161729368463548082e-08,1.230066390137874382e-08,1.298403411812200681e-08,1.366740433486526980e-08,1.435077455160853280e-08,1.503414476835179579e-08,1.571751498509505879e-08,1.640088520183832178e-08,1.708425541858158477e-08,1.776762563532484777e-08,1.845099585206811076e-08,1.913436606881137376e-08,1.981773628555463675e-08,2.050110650229789974e-08,2.118447671904116274e-08,2.186784693578442573e-08,2.255121715252768873e-08,2.323458736927095172e-08,2.391795758601421471e-08,2.460132780275747771e-08,2.528469801950074070e-08,2.596806823624400370e-08,2.665143845298726669e-08,2.733480866973052968e-08,2.801817888647379268e-08,2.870154910321705567e-08,2.938491931996031866e-08,3.006828953670358497e-08,3.075165975344684796e-08,3.143502997019011096e-08,3.211840018693337395e-08,3.280177040367663694e-08,3.348514062041989994e-08,3.416851083716316293e-08,3.485188105390642593e-08,3.553525127064968892e-08,3.621862148739295191e-08,3.690199170413621491e-08,3.758536192087947790e-08,3.826873213762274089e-08,3.895210235436600389e-08,3.963547257110926688e-08,4.031884278785252988e-08,4.100221300459579287e-08,4.168558322133905586e-08,4.236895343808231886e-08,4.305232365482558185e-08 +0.000000000000000000e+00,6.795435244540187121e-10,1.359087048908037424e-09,2.038630573362056033e-09,2.718174097816074435e-09,3.397717622270092837e-09,4.077261146724111239e-09,4.756804671178129641e-09,5.436348195632148043e-09,6.115891720086166445e-09,6.795435244540184846e-09,7.474978768994202421e-09,8.154522293448220823e-09,8.834065817902239225e-09,9.513609342356257627e-09,1.019315286681027603e-08,1.087269639126429443e-08,1.155223991571831283e-08,1.223178344017233123e-08,1.291132696462634964e-08,1.359087048908036804e-08,1.427041401353438644e-08,1.494995753798840484e-08,1.562950106244242324e-08,1.630904458689644165e-08,1.698858811135046005e-08,1.766813163580447845e-08,1.834767516025849685e-08,1.902721868471251525e-08,1.970676220916653366e-08,2.038630573362055206e-08,2.106584925807457046e-08,2.174539278252858886e-08,2.242493630698260726e-08,2.310447983143662567e-08,2.378402335589064407e-08,2.446356688034466247e-08,2.514311040479868087e-08,2.582265392925269927e-08,2.650219745370671768e-08,2.718174097816073608e-08,2.786128450261475448e-08,2.854082802706877288e-08,2.922037155152279128e-08,2.989991507597680968e-08,3.057945860043082478e-08,3.125900212488483987e-08,3.193854564933885496e-08,3.261808917379287006e-08,3.329763269824688515e-08,3.397717622270090024e-08,3.465671974715491534e-08,3.533626327160893043e-08,3.601580679606294552e-08,3.669535032051696062e-08,3.737489384497097571e-08,3.805443736942499080e-08,3.873398089387900590e-08,3.941352441833302099e-08,4.009306794278703608e-08,4.077261146724105118e-08,4.145215499169506627e-08,4.213169851614908136e-08,4.281124204060309646e-08 +0.000000000000000000e+00,6.840406468760588914e-10,1.368081293752117783e-09,2.052121940628176778e-09,2.736162587504235979e-09,3.420203234380295181e-09,4.104243881256354382e-09,4.788284528132413584e-09,5.472325175008472785e-09,6.156365821884531987e-09,6.840406468760591188e-09,7.524447115636650390e-09,8.208487762512710419e-09,8.892528409388770448e-09,9.576569056264830476e-09,1.026060970314089051e-08,1.094465035001695053e-08,1.162869099689301056e-08,1.231273164376907059e-08,1.299677229064513062e-08,1.368081293752119065e-08,1.436485358439725068e-08,1.504889423127331071e-08,1.573293487814936908e-08,1.641697552502542746e-08,1.710101617190148583e-08,1.778505681877754420e-08,1.846909746565360258e-08,1.915313811252966095e-08,1.983717875940571933e-08,2.052121940628177770e-08,2.120526005315783608e-08,2.188930070003389445e-08,2.257334134690995282e-08,2.325738199378601120e-08,2.394142264066206957e-08,2.462546328753812795e-08,2.530950393441418632e-08,2.599354458129024470e-08,2.667758522816630307e-08,2.736162587504236145e-08,2.804566652191841982e-08,2.872970716879447819e-08,2.941374781567053657e-08,3.009778846254659494e-08,3.078182910942265332e-08,3.146586975629871169e-08,3.214991040317477007e-08,3.283395105005082844e-08,3.351799169692688681e-08,3.420203234380294519e-08,3.488607299067900356e-08,3.557011363755506194e-08,3.625415428443112031e-08,3.693819493130717869e-08,3.762223557818323706e-08,3.830627622505929544e-08,3.899031687193535381e-08,3.967435751881141218e-08,4.035839816568747056e-08,4.104243881256352893e-08,4.172647945943958731e-08,4.241052010631564568e-08,4.309456075319170406e-08 +0.000000000000000000e+00,-6.833702168539212517e-10,-1.366740433707842503e-09,-2.050110650561763859e-09,-2.733480867415685420e-09,-3.416851084269606982e-09,-4.100221301123528544e-09,-4.783591517977450106e-09,-5.466961734831371668e-09,-6.150331951685293230e-09,-6.833702168539214792e-09,-7.517072385393135527e-09,-8.200442602247055434e-09,-8.883812819100975342e-09,-9.567183035954895249e-09,-1.025055325280881516e-08,-1.093392346966273506e-08,-1.161729368651665497e-08,-1.230066390337057488e-08,-1.298403412022449479e-08,-1.366740433707841469e-08,-1.435077455393233460e-08,-1.503414477078625451e-08,-1.571751498764017442e-08,-1.640088520449409432e-08,-1.708425542134801423e-08,-1.776762563820193414e-08,-1.845099585505585405e-08,-1.913436607190977396e-08,-1.981773628876369386e-08,-2.050110650561761377e-08,-2.118447672247153368e-08,-2.186784693932545359e-08,-2.255121715617937349e-08,-2.323458737303329340e-08,-2.391795758988721331e-08,-2.460132780674113322e-08,-2.528469802359505312e-08,-2.596806824044897303e-08,-2.665143845730289294e-08,-2.733480867415681285e-08,-2.801817889101073275e-08,-2.870154910786465266e-08,-2.938491932471857257e-08,-3.006828954157248917e-08,-3.075165975842640907e-08,-3.143502997528032898e-08,-3.211840019213424889e-08,-3.280177040898816880e-08,-3.348514062584208870e-08,-3.416851084269600861e-08,-3.485188105954992852e-08,-3.553525127640384843e-08,-3.621862149325776834e-08,-3.690199171011168824e-08,-3.758536192696560815e-08,-3.826873214381952806e-08,-3.895210236067344797e-08,-3.963547257752736787e-08,-4.031884279438128778e-08,-4.100221301123520769e-08,-4.168558322808912760e-08,-4.236895344494304750e-08,-4.305232366179696741e-08 +0.000000000000000000e+00,-6.795435245688321049e-10,-1.359087049137664210e-09,-2.038630573706496522e-09,-2.718174098275328833e-09,-3.397717622844161145e-09,-4.077261147412993043e-09,-4.756804671981824941e-09,-5.436348196550656839e-09,-6.115891721119488738e-09,-6.795435245688320636e-09,-7.474978770257151707e-09,-8.154522294825982778e-09,-8.834065819394813848e-09,-9.513609343963644919e-09,-1.019315286853247599e-08,-1.087269639310130706e-08,-1.155223991767013813e-08,-1.223178344223896920e-08,-1.291132696680780027e-08,-1.359087049137663135e-08,-1.427041401594546242e-08,-1.494995754051429349e-08,-1.562950106508312456e-08,-1.630904458965195563e-08,-1.698858811422078670e-08,-1.766813163878961777e-08,-1.834767516335844884e-08,-1.902721868792727991e-08,-1.970676221249611098e-08,-2.038630573706494205e-08,-2.106584926163377313e-08,-2.174539278620260420e-08,-2.242493631077143527e-08,-2.310447983534026634e-08,-2.378402335990909741e-08,-2.446356688447792848e-08,-2.514311040904675955e-08,-2.582265393361559062e-08,-2.650219745818442169e-08,-2.718174098275325276e-08,-2.786128450732208383e-08,-2.854082803189091491e-08,-2.922037155645974598e-08,-2.989991508102858036e-08,-3.057945860559741474e-08,-3.125900213016624912e-08,-3.193854565473508350e-08,-3.261808917930391788e-08,-3.329763270387275225e-08,-3.397717622844158663e-08,-3.465671975301042101e-08,-3.533626327757925539e-08,-3.601580680214808977e-08,-3.669535032671692415e-08,-3.737489385128575853e-08,-3.805443737585459291e-08,-3.873398090042342729e-08,-3.941352442499226167e-08,-4.009306794956109605e-08,-4.077261147412993043e-08,-4.145215499869876481e-08,-4.213169852326759919e-08,-4.281124204783643357e-08 +0.000000000000000000e+00,-6.840406469674160269e-10,-1.368081293934832054e-09,-2.052121940902248184e-09,-2.736162587869664521e-09,-3.420203234837080859e-09,-4.104243881804497196e-09,-4.788284528771913533e-09,-5.472325175739329870e-09,-6.156365822706746207e-09,-6.840406469674162544e-09,-7.524447116641578881e-09,-8.208487763608996046e-09,-8.892528410576413210e-09,-9.576569057543830374e-09,-1.026060970451124754e-08,-1.094465035147866470e-08,-1.162869099844608187e-08,-1.231273164541349903e-08,-1.299677229238091620e-08,-1.368081293934833336e-08,-1.436485358631575052e-08,-1.504889423328316769e-08,-1.573293488025058651e-08,-1.641697552721800533e-08,-1.710101617418542414e-08,-1.778505682115284296e-08,-1.846909746812026178e-08,-1.915313811508768060e-08,-1.983717876205509942e-08,-2.052121940902251824e-08,-2.120526005598993706e-08,-2.188930070295735588e-08,-2.257334134992477469e-08,-2.325738199689219351e-08,-2.394142264385961233e-08,-2.462546329082703115e-08,-2.530950393779444997e-08,-2.599354458476186879e-08,-2.667758523172928761e-08,-2.736162587869670643e-08,-2.804566652566412524e-08,-2.872970717263154406e-08,-2.941374781959896288e-08,-3.009778846656638170e-08,-3.078182911353380052e-08,-3.146586976050121934e-08,-3.214991040746863816e-08,-3.283395105443605697e-08,-3.351799170140347579e-08,-3.420203234837089461e-08,-3.488607299533831343e-08,-3.557011364230573225e-08,-3.625415428927315107e-08,-3.693819493624056989e-08,-3.762223558320798871e-08,-3.830627623017540752e-08,-3.899031687714282634e-08,-3.967435752411024516e-08,-4.035839817107766398e-08,-4.104243881804508280e-08,-4.172647946501250162e-08,-4.241052011197992044e-08,-4.309456075894733925e-08 +0.000000000000000000e+00,6.949577303115383118e-10,1.389915460623076624e-09,2.084873190934614832e-09,2.779830921246152834e-09,3.474788651557690835e-09,4.169746381869228837e-09,4.864704112180766425e-09,5.559661842492304013e-09,6.254619572803841601e-09,6.949577303115379189e-09,7.644535033426916777e-09,8.339492763738454365e-09,9.034450494049991953e-09,9.729408224361529541e-09,1.042436595467306713e-08,1.111932368498460472e-08,1.181428141529614231e-08,1.250923914560767989e-08,1.320419687591921748e-08,1.389915460623075507e-08,1.459411233654229266e-08,1.528907006685383025e-08,1.598402779716536949e-08,1.667898552747690873e-08,1.737394325778844797e-08,1.806890098809998722e-08,1.876385871841152646e-08,1.945881644872306570e-08,2.015377417903460494e-08,2.084873190934614418e-08,2.154368963965768343e-08,2.223864736996922267e-08,2.293360510028076191e-08,2.362856283059230115e-08,2.432352056090384040e-08,2.501847829121537964e-08,2.571343602152691888e-08,2.640839375183845812e-08,2.710335148214999737e-08,2.779830921246153661e-08,2.849326694277307585e-08,2.918822467308461509e-08,2.988318240339615434e-08,3.057814013370769358e-08,3.127309786401923282e-08,3.196805559433077206e-08,3.266301332464231131e-08,3.335797105495385055e-08,3.405292878526538979e-08,3.474788651557692903e-08,3.544284424588846827e-08,3.613780197620000752e-08,3.683275970651154676e-08,3.752771743682308600e-08,3.822267516713462524e-08,3.891763289744616449e-08,3.961259062775770373e-08,4.030754835806924297e-08,4.100250608838078221e-08,4.169746381869232146e-08,4.239242154900386070e-08,4.308737927931539994e-08,4.378233700962693918e-08 +0.000000000000000000e+00,6.880021271432717622e-10,1.376004254286543524e-09,2.064006381429815390e-09,2.752008508573087462e-09,3.440010635716359535e-09,4.128012762859631607e-09,4.816014890002903266e-09,5.504017017146174924e-09,6.192019144289446583e-09,6.880021271432718242e-09,7.568023398575989901e-09,8.256025525719261559e-09,8.944027652862533218e-09,9.632029780005804877e-09,1.032003190714907654e-08,1.100803403429234819e-08,1.169603616143561985e-08,1.238403828857889151e-08,1.307204041572216317e-08,1.376004254286543483e-08,1.444804467000870649e-08,1.513604679715197649e-08,1.582404892429524815e-08,1.651205105143851981e-08,1.720005317858179147e-08,1.788805530572506313e-08,1.857605743286833479e-08,1.926405956001160645e-08,1.995206168715487810e-08,2.064006381429814976e-08,2.132806594144142142e-08,2.201606806858469308e-08,2.270407019572796474e-08,2.339207232287123640e-08,2.408007445001450806e-08,2.476807657715777972e-08,2.545607870430105137e-08,2.614408083144432303e-08,2.683208295858759469e-08,2.752008508573086635e-08,2.820808721287413801e-08,2.889608934001740967e-08,2.958409146716068133e-08,3.027209359430395299e-08,3.096009572144722464e-08,3.164809784859049630e-08,3.233609997573376796e-08,3.302410210287703962e-08,3.371210423002031128e-08,3.440010635716358294e-08,3.508810848430685460e-08,3.577611061145012626e-08,3.646411273859339791e-08,3.715211486573666957e-08,3.784011699287994123e-08,3.852811912002321289e-08,3.921612124716648455e-08,3.990412337430975621e-08,4.059212550145302787e-08,4.128012762859629953e-08,4.196812975573957118e-08,4.265613188288284284e-08,4.334413401002611450e-08 +0.000000000000000000e+00,6.941155683956411109e-10,1.388231136791282222e-09,2.082346705186923436e-09,2.776462273582564857e-09,3.470577841978206278e-09,4.164693410373847699e-09,4.858808978769489121e-09,5.552924547165130542e-09,6.247040115560771963e-09,6.941155683956413384e-09,7.635271252352054805e-09,8.329386820747697053e-09,9.023502389143339302e-09,9.717617957538981550e-09,1.041173352593462380e-08,1.110584909433026605e-08,1.179996466272590829e-08,1.249408023112155054e-08,1.318819579951719279e-08,1.388231136791283504e-08,1.457642693630847729e-08,1.527054250470411954e-08,1.596465807309976178e-08,1.665877364149540403e-08,1.735288920989104628e-08,1.804700477828668853e-08,1.874112034668233078e-08,1.943523591507797303e-08,2.012935148347361527e-08,2.082346705186925752e-08,2.151758262026489977e-08,2.221169818866054202e-08,2.290581375705618427e-08,2.359992932545182652e-08,2.429404489384746876e-08,2.498816046224311101e-08,2.568227603063875326e-08,2.637639159903439551e-08,2.707050716743003776e-08,2.776462273582568001e-08,2.845873830422132225e-08,2.915285387261696450e-08,2.984696944101261006e-08,3.054108500940825892e-08,3.123520057780390779e-08,3.192931614619955666e-08,3.262343171459520552e-08,3.331754728299085439e-08,3.401166285138650325e-08,3.470577841978215212e-08,3.539989398817780098e-08,3.609400955657344985e-08,3.678812512496909872e-08,3.748224069336474758e-08,3.817635626176039645e-08,3.887047183015604531e-08,3.956458739855169418e-08,4.025870296694734305e-08,4.095281853534299191e-08,4.164693410373864078e-08,4.234104967213428964e-08,4.303516524052993851e-08,4.372928080892558737e-08 +0.000000000000000000e+00,-6.949577304126898862e-10,-1.389915460825379772e-09,-2.084873191238069762e-09,-2.779830921650759959e-09,-3.474788652063450155e-09,-4.169746382476140351e-09,-4.864704112888830548e-09,-5.559661843301520744e-09,-6.254619573714210941e-09,-6.949577304126901137e-09,-7.644535034539592161e-09,-8.339492764952282357e-09,-9.034450495364972553e-09,-9.729408225777662750e-09,-1.042436595619035295e-08,-1.111932368660304314e-08,-1.181428141701573334e-08,-1.250923914742842354e-08,-1.320419687784111373e-08,-1.389915460825380393e-08,-1.459411233866649412e-08,-1.528907006907918432e-08,-1.598402779949187452e-08,-1.667898552990456471e-08,-1.737394326031725491e-08,-1.806890099072994511e-08,-1.876385872114263530e-08,-1.945881645155532550e-08,-2.015377418196801570e-08,-2.084873191238070589e-08,-2.154368964279339609e-08,-2.223864737320608629e-08,-2.293360510361877648e-08,-2.362856283403146668e-08,-2.432352056444415687e-08,-2.501847829485684707e-08,-2.571343602526953727e-08,-2.640839375568222746e-08,-2.710335148609491766e-08,-2.779830921650760786e-08,-2.849326694692029805e-08,-2.918822467733298825e-08,-2.988318240774567514e-08,-3.057814013815836203e-08,-3.127309786857104891e-08,-3.196805559898373580e-08,-3.266301332939642269e-08,-3.335797105980910958e-08,-3.405292879022179646e-08,-3.474788652063448335e-08,-3.544284425104717024e-08,-3.613780198145985713e-08,-3.683275971187254401e-08,-3.752771744228523090e-08,-3.822267517269791779e-08,-3.891763290311060468e-08,-3.961259063352329157e-08,-4.030754836393597845e-08,-4.100250609434866534e-08,-4.169746382476135223e-08,-4.239242155517403912e-08,-4.308737928558672600e-08,-4.378233701599941289e-08 +0.000000000000000000e+00,-6.880021272493621218e-10,-1.376004254498724244e-09,-2.064006381748086365e-09,-2.752008508997448487e-09,-3.440010636246810609e-09,-4.128012763496172731e-09,-4.816014890745534439e-09,-5.504017017994896147e-09,-6.192019145244257855e-09,-6.880021272493619564e-09,-7.568023399742981272e-09,-8.256025526992343807e-09,-8.944027654241706343e-09,-9.632029781491068878e-09,-1.032003190874043141e-08,-1.100803403598979395e-08,-1.169603616323915648e-08,-1.238403829048851902e-08,-1.307204041773788156e-08,-1.376004254498724409e-08,-1.444804467223660663e-08,-1.513604679948596916e-08,-1.582404892673533170e-08,-1.651205105398469423e-08,-1.720005318123405677e-08,-1.788805530848341930e-08,-1.857605743573278184e-08,-1.926405956298214437e-08,-1.995206169023150691e-08,-2.064006381748086944e-08,-2.132806594473023198e-08,-2.201606807197959452e-08,-2.270407019922895705e-08,-2.339207232647831959e-08,-2.408007445372768212e-08,-2.476807658097704466e-08,-2.545607870822640719e-08,-2.614408083547576973e-08,-2.683208296272513226e-08,-2.752008508997449480e-08,-2.820808721722385733e-08,-2.889608934447321987e-08,-2.958409147172258240e-08,-3.027209359897194494e-08,-3.096009572622130748e-08,-3.164809785347067001e-08,-3.233609998072003255e-08,-3.302410210796939508e-08,-3.371210423521875762e-08,-3.440010636246812015e-08,-3.508810848971748269e-08,-3.577611061696684522e-08,-3.646411274421620776e-08,-3.715211487146557029e-08,-3.784011699871493283e-08,-3.852811912596429536e-08,-3.921612125321365790e-08,-3.990412338046302044e-08,-4.059212550771238297e-08,-4.128012763496174551e-08,-4.196812976221110804e-08,-4.265613188946047058e-08,-4.334413401670983311e-08 +0.000000000000000000e+00,-6.941155684744965489e-10,-1.388231136948993098e-09,-2.082346705423489647e-09,-2.776462273897986196e-09,-3.470577842372482745e-09,-4.164693410846979293e-09,-4.858808979321475842e-09,-5.552924547795972391e-09,-6.247040116270468940e-09,-6.941155684744965489e-09,-7.635271253219462865e-09,-8.329386821693960241e-09,-9.023502390168457617e-09,-9.717617958642954993e-09,-1.041173352711745237e-08,-1.110584909559194975e-08,-1.179996466406644712e-08,-1.249408023254094450e-08,-1.318819580101544187e-08,-1.388231136948993925e-08,-1.457642693796443663e-08,-1.527054250643893235e-08,-1.596465807491342807e-08,-1.665877364338792379e-08,-1.735288921186241951e-08,-1.804700478033691523e-08,-1.874112034881141096e-08,-1.943523591728590668e-08,-2.012935148576040240e-08,-2.082346705423489812e-08,-2.151758262270939384e-08,-2.221169819118388956e-08,-2.290581375965838529e-08,-2.359992932813288101e-08,-2.429404489660737673e-08,-2.498816046508187245e-08,-2.568227603355636817e-08,-2.637639160203086390e-08,-2.707050717050535962e-08,-2.776462273897985534e-08,-2.845873830745435106e-08,-2.915285387592884678e-08,-2.984696944440334250e-08,-3.054108501287783823e-08,-3.123520058135233395e-08,-3.192931614982682967e-08,-3.262343171830132539e-08,-3.331754728677582111e-08,-3.401166285525031683e-08,-3.470577842372481256e-08,-3.539989399219930828e-08,-3.609400956067380400e-08,-3.678812512914829972e-08,-3.748224069762279544e-08,-3.817635626609729116e-08,-3.887047183457178689e-08,-3.956458740304628261e-08,-4.025870297152077833e-08,-4.095281853999527405e-08,-4.164693410846976977e-08,-4.234104967694426549e-08,-4.303516524541876122e-08,-4.372928081389325694e-08 +0.000000000000000000e+00,7.074469586220421848e-10,1.414893917244084370e-09,2.122340875866126554e-09,2.829787834488168739e-09,3.537234793110210924e-09,4.244681751732253109e-09,4.952128710354295293e-09,5.659575668976337478e-09,6.367022627598379663e-09,7.074469586220421848e-09,7.781916544842464860e-09,8.489363503464507872e-09,9.196810462086550884e-09,9.904257420708593895e-09,1.061170437933063691e-08,1.131915133795267992e-08,1.202659829657472293e-08,1.273404525519676594e-08,1.344149221381880896e-08,1.414893917244085197e-08,1.485638613106289498e-08,1.556383308968493634e-08,1.627128004830697769e-08,1.697872700692901905e-08,1.768617396555106041e-08,1.839362092417310177e-08,1.910106788279514312e-08,1.980851484141718448e-08,2.051596180003922584e-08,2.122340875866126720e-08,2.193085571728330856e-08,2.263830267590534991e-08,2.334574963452739127e-08,2.405319659314943263e-08,2.476064355177147399e-08,2.546809051039351534e-08,2.617553746901555670e-08,2.688298442763759806e-08,2.759043138625963942e-08,2.829787834488168077e-08,2.900532530350372213e-08,2.971277226212576349e-08,3.042021922074780154e-08,3.112766617936983959e-08,3.183511313799187764e-08,3.254256009661391568e-08,3.325000705523595373e-08,3.395745401385799178e-08,3.466490097248002983e-08,3.537234793110206788e-08,3.607979488972410593e-08,3.678724184834614398e-08,3.749468880696818203e-08,3.820213576559022007e-08,3.890958272421225812e-08,3.961702968283429617e-08,4.032447664145633422e-08,4.103192360007837227e-08,4.173937055870041032e-08,4.244681751732244837e-08,4.315426447594448642e-08,4.386171143456652447e-08,4.456915839318856251e-08 +0.000000000000000000e+00,-4.533763627190167451e-20,-9.067527254380334903e-20,-1.360129088157050175e-19,-1.813505450876066740e-19,-2.266881813595083545e-19,-2.720258176314100350e-19,-3.173634539033117156e-19,-3.627010901752133961e-19,-4.080387264471150766e-19,-4.533763627190167090e-19,-4.987139989909183414e-19,-5.440516352628199738e-19,-5.893892715347216062e-19,-6.347269078066232386e-19,-6.800645440785248709e-19,-7.254021803504265033e-19,-7.707398166223281357e-19,-8.160774528942297681e-19,-8.614150891661314005e-19,-9.067527254380330329e-19,-9.520903617099347615e-19,-9.974279979818364902e-19,-1.042765634253738219e-18,-1.088103270525639948e-18,-1.133440906797541676e-18,-1.178778543069443405e-18,-1.224116179341345134e-18,-1.269453815613246862e-18,-1.314791451885148591e-18,-1.360129088157050320e-18,-1.405466724428952048e-18,-1.450804360700853777e-18,-1.496141996972755506e-18,-1.541479633244657234e-18,-1.586817269516558963e-18,-1.632154905788460692e-18,-1.677492542060362420e-18,-1.722830178332264149e-18,-1.768167814604165878e-18,-1.813505450876067606e-18,-1.858843087147969335e-18,-1.904180723419871064e-18,-1.949518359691772792e-18,-1.994855995963674521e-18,-2.040193632235576250e-18,-2.085531268507477979e-18,-2.130868904779379707e-18,-2.176206541051281436e-18,-2.221544177323183165e-18,-2.266881813595084893e-18,-2.312219449866986622e-18,-2.357557086138888351e-18,-2.402894722410790079e-18,-2.448232358682691808e-18,-2.493569994954593537e-18,-2.538907631226495265e-18,-2.584245267498396994e-18,-2.629582903770298723e-18,-2.674920540042200451e-18,-2.720258176314102180e-18,-2.765595812586003909e-18,-2.810933448857905637e-18,-2.856271085129807366e-18 +0.000000000000000000e+00,7.014036778682394791e-10,1.402807355736478958e-09,2.104211033604718230e-09,2.805614711472957503e-09,3.507018389341196775e-09,4.208422067209436461e-09,4.909825745077676147e-09,5.611229422945915833e-09,6.312633100814155519e-09,7.014036778682395204e-09,7.715440456550634063e-09,8.416844134418872922e-09,9.118247812287111780e-09,9.819651490155350639e-09,1.052105516802358950e-08,1.122245884589182836e-08,1.192386252376006722e-08,1.262526620162830607e-08,1.332666987949654493e-08,1.402807355736478379e-08,1.472947723523302265e-08,1.543088091310126151e-08,1.613228459096950037e-08,1.683368826883773923e-08,1.753509194670597808e-08,1.823649562457421694e-08,1.893789930244245580e-08,1.963930298031069466e-08,2.034070665817893352e-08,2.104211033604717238e-08,2.174351401391541124e-08,2.244491769178365010e-08,2.314632136965188895e-08,2.384772504752012781e-08,2.454912872538836667e-08,2.525053240325660553e-08,2.595193608112484439e-08,2.665333975899308325e-08,2.735474343686132211e-08,2.805614711472956097e-08,2.875755079259779982e-08,2.945895447046603868e-08,3.016035814833427754e-08,3.086176182620251640e-08,3.156316550407075526e-08,3.226456918193899412e-08,3.296597285980723298e-08,3.366737653767547183e-08,3.436878021554371069e-08,3.507018389341194955e-08,3.577158757128018841e-08,3.647299124914842727e-08,3.717439492701666613e-08,3.787579860488490499e-08,3.857720228275314385e-08,3.927860596062138270e-08,3.998000963848962156e-08,4.068141331635786042e-08,4.138281699422609928e-08,4.208422067209433814e-08,4.278562434996257700e-08,4.348702802783081586e-08,4.418843170569905472e-08 +0.000000000000000000e+00,6.939534007801463119e-10,1.387906801560292624e-09,2.081860202340439039e-09,2.775813603120585661e-09,3.469767003900732283e-09,4.163720404680878905e-09,4.857673805461025527e-09,5.551627206241172149e-09,6.245580607021318771e-09,6.939534007801465393e-09,7.633487408581611188e-09,8.327440809361756156e-09,9.021394210141901123e-09,9.715347610922046091e-09,1.040930101170219106e-08,1.110325441248233603e-08,1.179720781326248099e-08,1.249116121404262596e-08,1.318511461482277093e-08,1.387906801560291590e-08,1.457302141638306086e-08,1.526697481716320583e-08,1.596092821794335080e-08,1.665488161872349577e-08,1.734883501950364074e-08,1.804278842028378570e-08,1.873674182106393067e-08,1.943069522184407564e-08,2.012464862262422061e-08,2.081860202340436557e-08,2.151255542418451054e-08,2.220650882496465551e-08,2.290046222574480048e-08,2.359441562652494544e-08,2.428836902730509041e-08,2.498232242808523538e-08,2.567627582886538035e-08,2.637022922964552532e-08,2.706418263042567028e-08,2.775813603120581525e-08,2.845208943198596022e-08,2.914604283276610519e-08,2.983999623354624685e-08,3.053394963432639181e-08,3.122790303510653678e-08,3.192185643588668175e-08,3.261580983666682672e-08,3.330976323744697168e-08,3.400371663822711665e-08,3.469767003900726162e-08,3.539162343978740659e-08,3.608557684056755155e-08,3.677953024134769652e-08,3.747348364212784149e-08,3.816743704290798646e-08,3.886139044368813143e-08,3.955534384446827639e-08,4.024929724524842136e-08,4.094325064602856633e-08,4.163720404680871130e-08,4.233115744758885626e-08,4.302511084836900123e-08,4.371906424914914620e-08 +0.000000000000000000e+00,3.536968368134585519e-10,7.073936736269171038e-10,1.061090510440375759e-09,1.414787347253834414e-09,1.768484184067293070e-09,2.122181020880751518e-09,2.475877857694209967e-09,2.829574694507668415e-09,3.183271531321126864e-09,3.536968368134585312e-09,3.890665204948043761e-09,4.244362041761502209e-09,4.598058878574960658e-09,4.951755715388419106e-09,5.305452552201877555e-09,5.659149389015336003e-09,6.012846225828794452e-09,6.366543062642252900e-09,6.720239899455711349e-09,7.073936736269169797e-09,7.427633573082628246e-09,7.781330409896085867e-09,8.135027246709544316e-09,8.488724083523002764e-09,8.842420920336461213e-09,9.196117757149919661e-09,9.549814593963378110e-09,9.903511430776836558e-09,1.025720826759029501e-08,1.061090510440375346e-08,1.096460194121721190e-08,1.131829877803067035e-08,1.167199561484412880e-08,1.202569245165758725e-08,1.237938928847104570e-08,1.273308612528450415e-08,1.308678296209796260e-08,1.344047979891142104e-08,1.379417663572487949e-08,1.414787347253833794e-08,1.450157030935179639e-08,1.485526714616525484e-08,1.520896398297871329e-08,1.556266081979217173e-08,1.591635765660563018e-08,1.627005449341908863e-08,1.662375133023254708e-08,1.697744816704600553e-08,1.733114500385946398e-08,1.768484184067292243e-08,1.803853867748638087e-08,1.839223551429983932e-08,1.874593235111329777e-08,1.909962918792675622e-08,1.945332602474021467e-08,1.980702286155367312e-08,2.016071969836713157e-08,2.051441653518059001e-08,2.086811337199404846e-08,2.122181020880750691e-08,2.157550704562096536e-08,2.192920388243442381e-08,2.228290071924788226e-08 +0.000000000000000000e+00,-3.308792930119606689e-20,-6.617585860239213377e-20,-9.926378790358820066e-20,-1.323517172047842675e-19,-1.654396465059803224e-19,-1.985275758071763772e-19,-2.316155051083724321e-19,-2.647034344095684869e-19,-2.977913637107645418e-19,-3.308792930119605966e-19,-3.639672223131566515e-19,-3.970551516143527063e-19,-4.301430809155487612e-19,-4.632310102167448642e-19,-4.963189395179409672e-19,-5.294068688191370702e-19,-5.624947981203331732e-19,-5.955827274215292762e-19,-6.286706567227253792e-19,-6.617585860239214822e-19,-6.948465153251175852e-19,-7.279344446263136882e-19,-7.610223739275097912e-19,-7.941103032287058942e-19,-8.271982325299019972e-19,-8.602861618310981002e-19,-8.933740911322942032e-19,-9.264620204334903062e-19,-9.595499497346864092e-19,-9.926378790358825122e-19,-1.025725808337078615e-18,-1.058813737638274718e-18,-1.091901666939470821e-18,-1.124989596240666924e-18,-1.158077525541863027e-18,-1.191165454843059130e-18,-1.224253384144255233e-18,-1.257341313445451336e-18,-1.290429242746647439e-18,-1.323517172047843542e-18,-1.356605101349039645e-18,-1.389693030650235748e-18,-1.422780959951431851e-18,-1.455868889252627954e-18,-1.488956818553824057e-18,-1.522044747855020160e-18,-1.555132677156216263e-18,-1.588220606457412366e-18,-1.621308535758608469e-18,-1.654396465059804572e-18,-1.687484394361000675e-18,-1.720572323662196778e-18,-1.753660252963392881e-18,-1.786748182264589177e-18,-1.819836111565785472e-18,-1.852924040866981768e-18,-1.886011970168178063e-18,-1.919099899469374359e-18,-1.952187828770570655e-18,-1.985275758071766950e-18,-2.018363687372963246e-18,-2.051451616674159541e-18,-2.084539545975355837e-18 +0.000000000000000000e+00,-7.074469587127695257e-10,-1.414893917425539051e-09,-2.122340876138308681e-09,-2.829787834851078516e-09,-3.537234793563848352e-09,-4.244681752276618188e-09,-4.952128710989388024e-09,-5.659575669702157860e-09,-6.367022628414927696e-09,-7.074469587127697532e-09,-7.781916545840468195e-09,-8.489363504553238031e-09,-9.196810463266007867e-09,-9.904257421978777703e-09,-1.061170438069154754e-08,-1.131915133940431737e-08,-1.202659829811708721e-08,-1.273404525682985705e-08,-1.344149221554262688e-08,-1.414893917425539672e-08,-1.485638613296816655e-08,-1.556383309168093639e-08,-1.627128005039370623e-08,-1.697872700910647606e-08,-1.768617396781924590e-08,-1.839362092653201573e-08,-1.910106788524478557e-08,-1.980851484395755541e-08,-2.051596180267032524e-08,-2.122340876138309508e-08,-2.193085572009586491e-08,-2.263830267880863475e-08,-2.334574963752140458e-08,-2.405319659623417442e-08,-2.476064355494694426e-08,-2.546809051365971409e-08,-2.617553747237248393e-08,-2.688298443108525376e-08,-2.759043138979802360e-08,-2.829787834851079344e-08,-2.900532530722356327e-08,-2.971277226593633311e-08,-3.042021922464910294e-08,-3.112766618336187278e-08,-3.183511314207464262e-08,-3.254256010078741245e-08,-3.325000705950018229e-08,-3.395745401821295212e-08,-3.466490097692572196e-08,-3.537234793563849179e-08,-3.607979489435126163e-08,-3.678724185306403147e-08,-3.749468881177680130e-08,-3.820213577048957114e-08,-3.890958272920234097e-08,-3.961702968791511081e-08,-4.032447664662788065e-08,-4.103192360534065048e-08,-4.173937056405342032e-08,-4.244681752276619015e-08,-4.315426448147895999e-08,-4.386171144019172983e-08,-4.456915839890449966e-08 +0.000000000000000000e+00,-3.536968369041539947e-10,-7.073936738083079894e-10,-1.061090510712461932e-09,-1.414787347616615772e-09,-1.768484184520769612e-09,-2.122181021424923451e-09,-2.475877858329077291e-09,-2.829574695233231130e-09,-3.183271532137384970e-09,-3.536968369041538810e-09,-3.890665205945692236e-09,-4.244362042849846075e-09,-4.598058879753999915e-09,-4.951755716658153754e-09,-5.305452553562307594e-09,-5.659149390466461434e-09,-6.012846227370615273e-09,-6.366543064274769113e-09,-6.720239901178922952e-09,-7.073936738083076792e-09,-7.427633574987230632e-09,-7.781330411891384471e-09,-8.135027248795538311e-09,-8.488724085699692150e-09,-8.842420922603845990e-09,-9.196117759507999830e-09,-9.549814596412153669e-09,-9.903511433316307509e-09,-1.025720827022046135e-08,-1.061090510712461519e-08,-1.096460194402876903e-08,-1.131829878093292287e-08,-1.167199561783707671e-08,-1.202569245474123055e-08,-1.237938929164538439e-08,-1.273308612854953823e-08,-1.308678296545369207e-08,-1.344047980235784590e-08,-1.379417663926199974e-08,-1.414787347616615358e-08,-1.450157031307030742e-08,-1.485526714997446126e-08,-1.520896398687861510e-08,-1.556266082378276894e-08,-1.591635766068692278e-08,-1.627005449759107662e-08,-1.662375133449523046e-08,-1.697744817139938430e-08,-1.733114500830353814e-08,-1.768484184520769198e-08,-1.803853868211184582e-08,-1.839223551901599966e-08,-1.874593235592015350e-08,-1.909962919282430734e-08,-1.945332602972846118e-08,-1.980702286663261502e-08,-2.016071970353676886e-08,-2.051441654044092270e-08,-2.086811337734507654e-08,-2.122181021424923038e-08,-2.157550705115338422e-08,-2.192920388805753806e-08,-2.228290072496169189e-08 +0.000000000000000000e+00,-7.014036779643007908e-10,-1.402807355928601582e-09,-2.104211033892902166e-09,-2.805614711857202750e-09,-3.507018389821503334e-09,-4.208422067785804331e-09,-4.909825745750105329e-09,-5.611229423714406326e-09,-6.312633101678707324e-09,-7.014036779643008322e-09,-7.715440457607309319e-09,-8.416844135571610317e-09,-9.118247813535911314e-09,-9.819651491500212312e-09,-1.052105516946451331e-08,-1.122245884742881431e-08,-1.192386252539311530e-08,-1.262526620335741630e-08,-1.332666988132171730e-08,-1.402807355928601830e-08,-1.472947723725031930e-08,-1.543088091521462195e-08,-1.613228459317892625e-08,-1.683368827114323056e-08,-1.753509194910753487e-08,-1.823649562707183917e-08,-1.893789930503614348e-08,-1.963930298300044778e-08,-2.034070666096475209e-08,-2.104211033892905640e-08,-2.174351401689336070e-08,-2.244491769485766501e-08,-2.314632137282196932e-08,-2.384772505078627362e-08,-2.454912872875057793e-08,-2.525053240671488224e-08,-2.595193608467918654e-08,-2.665333976264349085e-08,-2.735474344060779515e-08,-2.805614711857209946e-08,-2.875755079653640377e-08,-2.945895447450070807e-08,-3.016035815246501238e-08,-3.086176183042931669e-08,-3.156316550839362099e-08,-3.226456918635792530e-08,-3.296597286432222960e-08,-3.366737654228653391e-08,-3.436878022025083822e-08,-3.507018389821514252e-08,-3.577158757617944683e-08,-3.647299125414375114e-08,-3.717439493210805544e-08,-3.787579861007235975e-08,-3.857720228803666406e-08,-3.927860596600096836e-08,-3.998000964396527267e-08,-4.068141332192957697e-08,-4.138281699989388128e-08,-4.208422067785818559e-08,-4.278562435582248989e-08,-4.348702803378679420e-08,-4.418843171175109851e-08 +0.000000000000000000e+00,-6.939534008463439219e-10,-1.387906801692687844e-09,-2.081860202539031869e-09,-2.775813603385376101e-09,-3.469767004231720333e-09,-4.163720405078064565e-09,-4.857673805924408798e-09,-5.551627206770753030e-09,-6.245580607617097262e-09,-6.939534008463441494e-09,-7.633487409309784899e-09,-8.327440810156127477e-09,-9.021394211002470054e-09,-9.715347611848812632e-09,-1.040930101269515521e-08,-1.110325441354149779e-08,-1.179720781438784037e-08,-1.249116121523418294e-08,-1.318511461608052552e-08,-1.387906801692686810e-08,-1.457302141777321068e-08,-1.526697481861955325e-08,-1.596092821946589583e-08,-1.665488162031223841e-08,-1.734883502115858099e-08,-1.804278842200492356e-08,-1.873674182285126614e-08,-1.943069522369760872e-08,-2.012464862454395130e-08,-2.081860202539029388e-08,-2.151255542623663645e-08,-2.220650882708297903e-08,-2.290046222792932161e-08,-2.359441562877566419e-08,-2.428836902962200676e-08,-2.498232243046834934e-08,-2.567627583131469192e-08,-2.637022923216103450e-08,-2.706418263300737708e-08,-2.775813603385371965e-08,-2.845208943470006223e-08,-2.914604283554640481e-08,-2.983999623639274739e-08,-3.053394963723908666e-08,-3.122790303808542592e-08,-3.192185643893176519e-08,-3.261580983977810446e-08,-3.330976324062444373e-08,-3.400371664147078300e-08,-3.469767004231712227e-08,-3.539162344316346154e-08,-3.608557684400980081e-08,-3.677953024485614008e-08,-3.747348364570247935e-08,-3.816743704654881861e-08,-3.886139044739515788e-08,-3.955534384824149715e-08,-4.024929724908783642e-08,-4.094325064993417569e-08,-4.163720405078051496e-08,-4.233115745162685423e-08,-4.302511085247319350e-08,-4.371906425331953277e-08 +0.000000000000000000e+00,1.108318175187120447e-09,2.216636350374240894e-09,3.324954525561361134e-09,4.433272700748480961e-09,5.541590875935600788e-09,6.649909051122720614e-09,7.758227226309841268e-09,8.866545401496961922e-09,9.974863576684082576e-09,1.108318175187120323e-08,1.219149992705832388e-08,1.329981810224544454e-08,1.440813627743256519e-08,1.551645445261968584e-08,1.662477262780680650e-08,1.773309080299392715e-08,1.884140897818104781e-08,1.994972715336816846e-08,2.105804532855528911e-08,2.216636350374240977e-08,2.327468167892953042e-08,2.438299985411665108e-08,2.549131802930377173e-08,2.659963620449089238e-08,2.770795437967801304e-08,2.881627255486513369e-08,2.992459073005225104e-08,3.103290890523936507e-08,3.214122708042647911e-08,3.324954525561359314e-08,3.435786343080070718e-08,3.546618160598782122e-08,3.657449978117493525e-08,3.768281795636204929e-08,3.879113613154916333e-08,3.989945430673627736e-08,4.100777248192339140e-08,4.211609065711050544e-08,4.322440883229761947e-08,4.433272700748473351e-08,4.544104518267184755e-08,4.654936335785896158e-08,4.765768153304607562e-08,4.876599970823318965e-08,4.987431788342030369e-08,5.098263605860741773e-08,5.209095423379453176e-08,5.319927240898164580e-08,5.430759058416875984e-08,5.541590875935587387e-08,5.652422693454298791e-08,5.763254510973010195e-08,5.874086328491721598e-08,5.984918146010433002e-08,6.095749963529144405e-08,6.206581781047855809e-08,6.317413598566567213e-08,6.428245416085278616e-08,6.539077233603990020e-08,6.649909051122701424e-08,6.760740868641412827e-08,6.871572686160124231e-08,6.982404503678835635e-08 +0.000000000000000000e+00,1.693894263897214083e-09,3.387788527794428165e-09,5.081682791691642661e-09,6.775577055588857157e-09,8.469471319486071653e-09,1.016336558338328532e-08,1.185725984728049899e-08,1.355115411117771266e-08,1.524504837507492798e-08,1.693894263897214331e-08,1.863283690286935863e-08,2.032673116676657395e-08,2.202062543066378928e-08,2.371451969456100460e-08,2.540841395845821992e-08,2.710230822235543525e-08,2.879620248625265057e-08,3.049009675014986920e-08,3.218399101404708783e-08,3.387788527794430647e-08,3.557177954184152510e-08,3.726567380573874373e-08,3.895956806963596236e-08,4.065346233353318099e-08,4.234735659743039963e-08,4.404125086132761826e-08,4.573514512522483689e-08,4.742903938912205552e-08,4.912293365301927415e-08,5.081682791691649279e-08,5.251072218081371142e-08,5.420461644471093005e-08,5.589851070860814868e-08,5.759240497250536731e-08,5.928629923640258595e-08,6.098019350029980458e-08,6.267408776419702321e-08,6.436798202809424184e-08,6.606187629199146047e-08,6.775577055588867911e-08,6.944966481978589774e-08,7.114355908368311637e-08,7.283745334758033500e-08,7.453134761147755363e-08,7.622524187537477227e-08,7.791913613927199090e-08,7.961303040316920953e-08,8.130692466706642816e-08,8.300081893096364679e-08,8.469471319486086543e-08,8.638860745875808406e-08,8.808250172265530269e-08,8.977639598655252132e-08,9.147029025044973995e-08,9.316418451434695859e-08,9.485807877824417722e-08,9.655197304214139585e-08,9.824586730603861448e-08,9.993976156993583311e-08,1.016336558338330517e-07,1.033275500977302704e-07,1.050214443616274890e-07,1.067153386255247076e-07 +0.000000000000000000e+00,-7.137118601157110841e-20,-1.427423720231422168e-19,-2.141135580347133252e-19,-2.854847440462844336e-19,-3.568559300578555420e-19,-4.282271160694266505e-19,-4.995983020809977589e-19,-5.709694880925688673e-19,-6.423406741041399757e-19,-7.137118601157110841e-19,-7.850830461272821925e-19,-8.564542321388533009e-19,-9.278254181504245056e-19,-9.991966041619957103e-19,-1.070567790173566915e-18,-1.141938976185138120e-18,-1.213310162196709324e-18,-1.284681348208280529e-18,-1.356052534219851734e-18,-1.427423720231422939e-18,-1.498794906242994143e-18,-1.570166092254565348e-18,-1.641537278266136553e-18,-1.712908464277707757e-18,-1.784279650289278962e-18,-1.855650836300850167e-18,-1.927022022312421372e-18,-1.998393208323992576e-18,-2.069764394335563781e-18,-2.141135580347134986e-18,-2.212506766358706190e-18,-2.283877952370277395e-18,-2.355249138381848600e-18,-2.426620324393419804e-18,-2.497991510404991009e-18,-2.569362696416562214e-18,-2.640733882428133419e-18,-2.712105068439704623e-18,-2.783476254451275828e-18,-2.854847440462847033e-18,-2.926218626474418237e-18,-2.997589812485989442e-18,-3.068960998497560647e-18,-3.140332184509131852e-18,-3.211703370520703056e-18,-3.283074556532274261e-18,-3.354445742543845466e-18,-3.425816928555416670e-18,-3.497188114566987875e-18,-3.568559300578559465e-18,-3.639930486590131055e-18,-3.711301672601702645e-18,-3.782672858613274235e-18,-3.854044044624845825e-18,-3.925415230636417414e-18,-3.996786416647989004e-18,-4.068157602659560594e-18,-4.139528788671132184e-18,-4.210899974682703774e-18,-4.282271160694275364e-18,-4.353642346705846954e-18,-4.425013532717418544e-18,-4.496384718728990134e-18 +0.000000000000000000e+00,1.246812703216146248e-09,2.493625406432292497e-09,3.740438109648438745e-09,4.987250812864584993e-09,6.234063516080731241e-09,7.480876219296877490e-09,8.727688922513022911e-09,9.974501625729168332e-09,1.122131432894531375e-08,1.246812703216145917e-08,1.371493973537760460e-08,1.496175243859375167e-08,1.620856514180989875e-08,1.745537784502604582e-08,1.870219054824219290e-08,1.994900325145833997e-08,2.119581595467448705e-08,2.244262865789063412e-08,2.368944136110678120e-08,2.493625406432292827e-08,2.618306676753907535e-08,2.742987947075522242e-08,2.867669217397136950e-08,2.992350487718751658e-08,3.117031758040366365e-08,3.241713028361981073e-08,3.366394298683595780e-08,3.491075569005210488e-08,3.615756839326825195e-08,3.740438109648439903e-08,3.865119379970054610e-08,3.989800650291669318e-08,4.114481920613284025e-08,4.239163190934898733e-08,4.363844461256513441e-08,4.488525731578128148e-08,4.613207001899742856e-08,4.737888272221357563e-08,4.862569542542972271e-08,4.987250812864586978e-08,5.111932083186201686e-08,5.236613353507816393e-08,5.361294623829431101e-08,5.485975894151045808e-08,5.610657164472660516e-08,5.735338434794275224e-08,5.860019705115889931e-08,5.984700975437504639e-08,6.109382245759120008e-08,6.234063516080735377e-08,6.358744786402350747e-08,6.483426056723966116e-08,6.608107327045581485e-08,6.732788597367196854e-08,6.857469867688812224e-08,6.982151138010427593e-08,7.106832408332042962e-08,7.231513678653658332e-08,7.356194948975273701e-08,7.480876219296889070e-08,7.605557489618504439e-08,7.730238759940119809e-08,7.854920030261735178e-08 +0.000000000000000000e+00,1.459470213985832266e-09,2.918940427971664532e-09,4.378410641957497212e-09,5.837880855943329892e-09,7.297351069929162572e-09,8.756821283914994425e-09,1.021629149790082628e-08,1.167576171188665813e-08,1.313523192587248998e-08,1.459470213985832184e-08,1.605417235384415369e-08,1.751364256782998554e-08,1.897311278181581739e-08,2.043258299580164925e-08,2.189205320978748110e-08,2.335152342377331295e-08,2.481099363775914480e-08,2.627046385174497666e-08,2.772993406573080851e-08,2.918940427971664036e-08,3.064887449370247552e-08,3.210834470768831399e-08,3.356781492167415246e-08,3.502728513565999093e-08,3.648675534964582940e-08,3.794622556363166787e-08,3.940569577761750634e-08,4.086516599160334481e-08,4.232463620558918328e-08,4.378410641957502175e-08,4.524357663356086022e-08,4.670304684754669869e-08,4.816251706153253716e-08,4.962198727551837563e-08,5.108145748950421410e-08,5.254092770349005257e-08,5.400039791747589104e-08,5.545986813146172951e-08,5.691933834544756799e-08,5.837880855943340646e-08,5.983827877341924493e-08,6.129774898740508340e-08,6.275721920139092187e-08,6.421668941537676034e-08,6.567615962936259881e-08,6.713562984334843728e-08,6.859510005733427575e-08,7.005457027132011422e-08,7.151404048530595269e-08,7.297351069929179116e-08,7.443298091327762963e-08,7.589245112726346810e-08,7.735192134124930657e-08,7.881139155523514504e-08,8.027086176922098351e-08,8.173033198320682198e-08,8.318980219719266045e-08,8.464927241117849892e-08,8.610874262516433739e-08,8.756821283915017586e-08,8.902768305313601433e-08,9.048715326712185280e-08,9.194662348110769127e-08 +0.000000000000000000e+00,9.823746187116026007e-10,1.964749237423205201e-09,2.947123856134807802e-09,3.929498474846410403e-09,4.911873093558013003e-09,5.894247712269615604e-09,6.876622330981218205e-09,7.858996949692820806e-09,8.841371568404422579e-09,9.823746187116024353e-09,1.080612080582762613e-08,1.178849542453922790e-08,1.277087004325082967e-08,1.375324466196243145e-08,1.473561928067403322e-08,1.571799389938563499e-08,1.670036851809723677e-08,1.768274313680883854e-08,1.866511775552044031e-08,1.964749237423204209e-08,2.062986699294364386e-08,2.161224161165524563e-08,2.259461623036684741e-08,2.357699084907844918e-08,2.455936546779005096e-08,2.554174008650165273e-08,2.652411470521325450e-08,2.750648932392485628e-08,2.848886394263645805e-08,2.947123856134805982e-08,3.045361318005965829e-08,3.143598779877125675e-08,3.241836241748285522e-08,3.340073703619445368e-08,3.438311165490605215e-08,3.536548627361765061e-08,3.634786089232924908e-08,3.733023551104084754e-08,3.831261012975244601e-08,3.929498474846404447e-08,4.027735936717564294e-08,4.125973398588724140e-08,4.224210860459883987e-08,4.322448322331043833e-08,4.420685784202203679e-08,4.518923246073363526e-08,4.617160707944523372e-08,4.715398169815683219e-08,4.813635631686843065e-08,4.911873093558002912e-08,5.010110555429162758e-08,5.108348017300322605e-08,5.206585479171482451e-08,5.304822941042642298e-08,5.403060402913802144e-08,5.501297864784961991e-08,5.599535326656121837e-08,5.697772788527281684e-08,5.796010250398441530e-08,5.894247712269601377e-08,5.992485174140761223e-08,6.090722636011921070e-08,6.188960097883080916e-08 +0.000000000000000000e+00,8.458775128116012240e-10,1.691755025623202448e-09,2.537632538434803672e-09,3.383510051246404896e-09,4.229387564058006120e-09,5.075265076869607344e-09,5.921142589681208568e-09,6.767020102492809792e-09,7.612897615304410189e-09,8.458775128116010585e-09,9.304652640927610982e-09,1.015053015373921138e-08,1.099640766655081178e-08,1.184228517936241217e-08,1.268816269217401257e-08,1.353404020498561297e-08,1.437991771779721336e-08,1.522579523060881376e-08,1.607167274342041416e-08,1.691755025623201455e-08,1.776342776904361495e-08,1.860930528185521535e-08,1.945518279466681574e-08,2.030106030747841614e-08,2.114693782029001654e-08,2.199281533310161693e-08,2.283869284591321733e-08,2.368457035872481773e-08,2.453044787153641812e-08,2.537632538434801852e-08,2.622220289715961892e-08,2.706808040997121931e-08,2.791395792278281971e-08,2.875983543559442011e-08,2.960571294840602051e-08,3.045159046121762090e-08,3.129746797402922461e-08,3.214334548684082831e-08,3.298922299965243202e-08,3.383510051246403572e-08,3.468097802527563943e-08,3.552685553808724314e-08,3.637273305089884684e-08,3.721861056371045055e-08,3.806448807652205425e-08,3.891036558933365796e-08,3.975624310214526166e-08,4.060212061495686537e-08,4.144799812776846907e-08,4.229387564058007278e-08,4.313975315339167648e-08,4.398563066620328019e-08,4.483150817901488390e-08,4.567738569182648760e-08,4.652326320463809131e-08,4.736914071744969501e-08,4.821501823026129872e-08,4.906089574307290242e-08,4.990677325588450613e-08,5.075265076869610983e-08,5.159852828150771354e-08,5.244440579431931725e-08,5.329028330713092095e-08 +0.000000000000000000e+00,-6.820509414208538618e-20,-1.364101882841707724e-19,-2.046152824262561585e-19,-2.728203765683415447e-19,-3.410254707104269068e-19,-4.092305648525122690e-19,-4.774356589945976311e-19,-5.456407531366829932e-19,-6.138458472787683553e-19,-6.820509414208537174e-19,-7.502560355629390795e-19,-8.184611297050244416e-19,-8.866662238471097074e-19,-9.548713179891950695e-19,-1.023076412131280432e-18,-1.091281506273365794e-18,-1.159486600415451156e-18,-1.227691694557536518e-18,-1.295896788699621880e-18,-1.364101882841707242e-18,-1.432306976983792604e-18,-1.500512071125877966e-18,-1.568717165267963329e-18,-1.636922259410048691e-18,-1.705127353552134053e-18,-1.773332447694219415e-18,-1.841537541836304777e-18,-1.909742635978390139e-18,-1.977947730120475501e-18,-2.046152824262560863e-18,-2.114357918404646225e-18,-2.182563012546731587e-18,-2.250768106688816950e-18,-2.318973200830902312e-18,-2.387178294972987674e-18,-2.455383389115073036e-18,-2.523588483257158398e-18,-2.591793577399243760e-18,-2.659998671541329122e-18,-2.728203765683414484e-18,-2.796408859825499846e-18,-2.864613953967585209e-18,-2.932819048109670571e-18,-3.001024142251755933e-18,-3.069229236393841295e-18,-3.137434330535926657e-18,-3.205639424678012019e-18,-3.273844518820097381e-18,-3.342049612962182743e-18,-3.410254707104268105e-18,-3.478459801246353082e-18,-3.546664895388438059e-18,-3.614869989530523036e-18,-3.683075083672608013e-18,-3.751280177814692990e-18,-3.819485271956777967e-18,-3.887690366098862944e-18,-3.955895460240947921e-18,-4.024100554383032898e-18,-4.092305648525117875e-18,-4.160510742667202852e-18,-4.228715836809287829e-18,-4.296920930951372805e-18 +0.000000000000000000e+00,-1.108318175331677290e-09,-2.216636350663354580e-09,-3.324954525995032077e-09,-4.433272701326709988e-09,-5.541590876658387898e-09,-6.649909051990065809e-09,-7.758227227321744546e-09,-8.866545402653423284e-09,-9.974863577985102022e-09,-1.108318175331678076e-08,-1.219149992864845950e-08,-1.329981810398013823e-08,-1.440813627931181697e-08,-1.551645445464349571e-08,-1.662477262997517445e-08,-1.773309080530685319e-08,-1.884140898063853192e-08,-1.994972715597021066e-08,-2.105804533130188940e-08,-2.216636350663356814e-08,-2.327468168196524687e-08,-2.438299985729692561e-08,-2.549131803262860435e-08,-2.659963620796028309e-08,-2.770795438329196182e-08,-2.881627255862364056e-08,-2.992459073395531930e-08,-3.103290890928699804e-08,-3.214122708461867678e-08,-3.324954525995035551e-08,-3.435786343528203425e-08,-3.546618161061371299e-08,-3.657449978594539173e-08,-3.768281796127707046e-08,-3.879113613660874920e-08,-3.989945431194042794e-08,-4.100777248727210668e-08,-4.211609066260378541e-08,-4.322440883793546415e-08,-4.433272701326714289e-08,-4.544104518859882163e-08,-4.654936336393050036e-08,-4.765768153926217910e-08,-4.876599971459385784e-08,-4.987431788992553658e-08,-5.098263606525721532e-08,-5.209095424058889405e-08,-5.319927241592057279e-08,-5.430759059125225153e-08,-5.541590876658393027e-08,-5.652422694191560900e-08,-5.763254511724728774e-08,-5.874086329257896648e-08,-5.984918146791065183e-08,-6.095749964324234381e-08,-6.206581781857403578e-08,-6.317413599390572775e-08,-6.428245416923741972e-08,-6.539077234456911170e-08,-6.649909051990080367e-08,-6.760740869523249564e-08,-6.871572687056418761e-08,-6.982404504589587959e-08 +0.000000000000000000e+00,-1.693894264039874407e-09,-3.387788528079748815e-09,-5.081682792119623429e-09,-6.775577056159498456e-09,-8.469471320199374311e-09,-1.016336558423925017e-08,-1.185725984827912602e-08,-1.355115411231900188e-08,-1.524504837635887773e-08,-1.693894264039875524e-08,-1.863283690443863275e-08,-2.032673116847851026e-08,-2.202062543251838777e-08,-2.371451969655826528e-08,-2.540841396059814279e-08,-2.710230822463802029e-08,-2.879620248867789780e-08,-3.049009675271777531e-08,-3.218399101675765282e-08,-3.387788528079753033e-08,-3.557177954483740784e-08,-3.726567380887728535e-08,-3.895956807291716286e-08,-4.065346233695704037e-08,-4.234735660099691788e-08,-4.404125086503679539e-08,-4.573514512907667290e-08,-4.742903939311655040e-08,-4.912293365715642791e-08,-5.081682792119630542e-08,-5.251072218523618293e-08,-5.420461644927606044e-08,-5.589851071331593795e-08,-5.759240497735581546e-08,-5.928629924139569297e-08,-6.098019350543556386e-08,-6.267408776947542814e-08,-6.436798203351529241e-08,-6.606187629755515668e-08,-6.775577056159502096e-08,-6.944966482563488523e-08,-7.114355908967474951e-08,-7.283745335371461378e-08,-7.453134761775447806e-08,-7.622524188179434233e-08,-7.791913614583420660e-08,-7.961303040987407088e-08,-8.130692467391393515e-08,-8.300081893795379943e-08,-8.469471320199366370e-08,-8.638860746603352798e-08,-8.808250173007339225e-08,-8.977639599411325652e-08,-9.147029025815312080e-08,-9.316418452219298507e-08,-9.485807878623284935e-08,-9.655197305027271362e-08,-9.824586731431257790e-08,-9.993976157835244217e-08,-1.016336558423923064e-07,-1.033275501064321707e-07,-1.050214443704720350e-07,-1.067153386345118993e-07 +0.000000000000000000e+00,-8.458775129542994956e-10,-1.691755025908598991e-09,-2.537632538862898590e-09,-3.383510051817198396e-09,-4.229387564771498202e-09,-5.075265077725798008e-09,-5.921142590680097813e-09,-6.767020103634397619e-09,-7.612897616588697425e-09,-8.458775129542996404e-09,-9.304652642497295382e-09,-1.015053015545159436e-08,-1.099640766840589334e-08,-1.184228518136019232e-08,-1.268816269431449130e-08,-1.353404020726879028e-08,-1.437991772022308925e-08,-1.522579523317738823e-08,-1.607167274613168721e-08,-1.691755025908598619e-08,-1.776342777204028517e-08,-1.860930528499458415e-08,-1.945518279794888313e-08,-2.030106031090318210e-08,-2.114693782385748108e-08,-2.199281533681178006e-08,-2.283869284976607904e-08,-2.368457036272037802e-08,-2.453044787567467700e-08,-2.537632538862897598e-08,-2.622220290158327495e-08,-2.706808041453757393e-08,-2.791395792749187291e-08,-2.875983544044617189e-08,-2.960571295340047087e-08,-3.045159046635476985e-08,-3.129746797930907214e-08,-3.214334549226337442e-08,-3.298922300521767671e-08,-3.383510051817197900e-08,-3.468097803112628128e-08,-3.552685554408058357e-08,-3.637273305703488586e-08,-3.721861056998918815e-08,-3.806448808294349043e-08,-3.891036559589779272e-08,-3.975624310885209501e-08,-4.060212062180639730e-08,-4.144799813476069958e-08,-4.229387564771500187e-08,-4.313975316066930416e-08,-4.398563067362360645e-08,-4.483150818657790873e-08,-4.567738569953221102e-08,-4.652326321248651331e-08,-4.736914072544081560e-08,-4.821501823839511788e-08,-4.906089575134942017e-08,-4.990677326430372246e-08,-5.075265077725802474e-08,-5.159852829021232703e-08,-5.244440580316662932e-08,-5.329028331612093161e-08 +0.000000000000000000e+00,-1.246812703359496235e-09,-2.493625406718992470e-09,-3.740438110078489118e-09,-4.987250813437985767e-09,-6.234063516797482415e-09,-7.480876220156978236e-09,-8.727688923516474057e-09,-9.974501626875969879e-09,-1.122131433023546570e-08,-1.246812703359496152e-08,-1.371493973695445734e-08,-1.496175244031395316e-08,-1.620856514367345064e-08,-1.745537784703294811e-08,-1.870219055039244559e-08,-1.994900325375194307e-08,-2.119581595711144054e-08,-2.244262866047093802e-08,-2.368944136383043549e-08,-2.493625406718993297e-08,-2.618306677054943044e-08,-2.742987947390892792e-08,-2.867669217726842540e-08,-2.992350488062792618e-08,-3.117031758398742696e-08,-3.241713028734692775e-08,-3.366394299070642853e-08,-3.491075569406592932e-08,-3.615756839742543010e-08,-3.740438110078493089e-08,-3.865119380414443167e-08,-3.989800650750393245e-08,-4.114481921086343324e-08,-4.239163191422293402e-08,-4.363844461758243481e-08,-4.488525732094193559e-08,-4.613207002430143638e-08,-4.737888272766093716e-08,-4.862569543102043794e-08,-4.987250813437993873e-08,-5.111932083773943951e-08,-5.236613354109894030e-08,-5.361294624445844108e-08,-5.485975894781794187e-08,-5.610657165117744265e-08,-5.735338435453694343e-08,-5.860019705789644422e-08,-5.984700976125594500e-08,-6.109382246461544579e-08,-6.234063516797494657e-08,-6.358744787133444736e-08,-6.483426057469394814e-08,-6.608107327805344892e-08,-6.732788598141294971e-08,-6.857469868477245049e-08,-6.982151138813195128e-08,-7.106832409149145206e-08,-7.231513679485095285e-08,-7.356194949821045363e-08,-7.480876220156995442e-08,-7.605557490492945520e-08,-7.730238760828895598e-08,-7.854920031164845677e-08 +0.000000000000000000e+00,-1.459470214122272400e-09,-2.918940428244544799e-09,-4.378410642366817612e-09,-5.837880856489090425e-09,-7.297351070611363239e-09,-8.756821284733635225e-09,-1.021629149885590721e-08,-1.167576171297817920e-08,-1.313523192710045118e-08,-1.459470214122272317e-08,-1.605417235534499350e-08,-1.751364256946726383e-08,-1.897311278358953416e-08,-2.043258299771180449e-08,-2.189205321183407483e-08,-2.335152342595634516e-08,-2.481099364007861549e-08,-2.627046385420088582e-08,-2.772993406832315615e-08,-2.918940428244542648e-08,-3.064887449656769682e-08,-3.210834471068996715e-08,-3.356781492481223748e-08,-3.502728513893450781e-08,-3.648675535305677814e-08,-3.794622556717904847e-08,-3.940569578130131881e-08,-4.086516599542358914e-08,-4.232463620954585947e-08,-4.378410642366812980e-08,-4.524357663779040013e-08,-4.670304685191267046e-08,-4.816251706603494080e-08,-4.962198728015721113e-08,-5.108145749427948146e-08,-5.254092770840175179e-08,-5.400039792252402212e-08,-5.545986813664629245e-08,-5.691933835076856279e-08,-5.837880856489083312e-08,-5.983827877901310345e-08,-6.129774899313536716e-08,-6.275721920725763088e-08,-6.421668942137989459e-08,-6.567615963550215831e-08,-6.713562984962442202e-08,-6.859510006374668573e-08,-7.005457027786894945e-08,-7.151404049199121316e-08,-7.297351070611347688e-08,-7.443298092023574059e-08,-7.589245113435800430e-08,-7.735192134848026802e-08,-7.881139156260253173e-08,-8.027086177672479545e-08,-8.173033199084705916e-08,-8.318980220496932288e-08,-8.464927241909158659e-08,-8.610874263321385030e-08,-8.756821284733611402e-08,-8.902768306145837773e-08,-9.048715327558064145e-08,-9.194662348970290516e-08 +0.000000000000000000e+00,-9.823746188490262518e-10,-1.964749237698052504e-09,-2.947123856547078755e-09,-3.929498475396105007e-09,-4.911873094245131259e-09,-5.894247713094157511e-09,-6.876622331943183762e-09,-7.858996950792210014e-09,-8.841371569641236266e-09,-9.823746188490262518e-09,-1.080612080733928877e-08,-1.178849542618831502e-08,-1.277087004503734127e-08,-1.375324466388636752e-08,-1.473561928273539378e-08,-1.571799390158442003e-08,-1.670036852043344628e-08,-1.768274313928247253e-08,-1.866511775813149878e-08,-1.964749237698052504e-08,-2.062986699582955129e-08,-2.161224161467857754e-08,-2.259461623352760379e-08,-2.357699085237663004e-08,-2.455936547122565629e-08,-2.554174009007468255e-08,-2.652411470892370880e-08,-2.750648932777273505e-08,-2.848886394662176130e-08,-2.947123856547078755e-08,-3.045361318431981050e-08,-3.143598780316883344e-08,-3.241836242201785638e-08,-3.340073704086687933e-08,-3.438311165971590227e-08,-3.536548627856492521e-08,-3.634786089741394815e-08,-3.733023551626297110e-08,-3.831261013511199404e-08,-3.929498475396101698e-08,-4.027735937281003993e-08,-4.125973399165906287e-08,-4.224210861050808581e-08,-4.322448322935710876e-08,-4.420685784820613170e-08,-4.518923246705515464e-08,-4.617160708590417758e-08,-4.715398170475320053e-08,-4.813635632360222347e-08,-4.911873094245124641e-08,-5.010110556130026936e-08,-5.108348018014929230e-08,-5.206585479899831524e-08,-5.304822941784733819e-08,-5.403060403669636113e-08,-5.501297865554538407e-08,-5.599535327439440701e-08,-5.697772789324342996e-08,-5.796010251209245290e-08,-5.894247713094147584e-08,-5.992485174979049879e-08,-6.090722636863951511e-08,-6.188960098748853144e-08 +0.000000000000000000e+00,8.837489204327800905e-10,1.767497840865560181e-09,2.651246761298340168e-09,3.534995681731119949e-09,4.418744602163899729e-09,5.302493522596679509e-09,6.186242443029459290e-09,7.069991363462239070e-09,7.953740283895019677e-09,8.837489204327801112e-09,9.721238124760582547e-09,1.060498704519336398e-08,1.148873596562614542e-08,1.237248488605892685e-08,1.325623380649170829e-08,1.413998272692448972e-08,1.502373164735727115e-08,1.590748056779005259e-08,1.679122948822283402e-08,1.767497840865561546e-08,1.855872732908839689e-08,1.944247624952117833e-08,2.032622516995395976e-08,2.120997409038674120e-08,2.209372301081952263e-08,2.297747193125230407e-08,2.386122085168508550e-08,2.474496977211786694e-08,2.562871869255064837e-08,2.651246761298342981e-08,2.739621653341621124e-08,2.827996545384899268e-08,2.916371437428177411e-08,3.004746329471455554e-08,3.093121221514733698e-08,3.181496113558011841e-08,3.269871005601289985e-08,3.358245897644568128e-08,3.446620789687846272e-08,3.534995681731124415e-08,3.623370573774402559e-08,3.711745465817680702e-08,3.800120357860958846e-08,3.888495249904236989e-08,3.976870141947515133e-08,4.065245033990793276e-08,4.153619926034071420e-08,4.241994818077349563e-08,4.330369710120627707e-08,4.418744602163905850e-08,4.507119494207183993e-08,4.595494386250462137e-08,4.683869278293740280e-08,4.772244170337018424e-08,4.860619062380296567e-08,4.948993954423574711e-08,5.037368846466852854e-08,5.125743738510130998e-08,5.214118630553409141e-08,5.302493522596687285e-08,5.390868414639965428e-08,5.479243306683243572e-08,5.567618198726521715e-08 +0.000000000000000000e+00,9.632076700344686035e-10,1.926415340068937207e-09,2.889623010103406017e-09,3.852830680137875241e-09,4.816038350172344465e-09,5.779246020206813689e-09,6.742453690241282913e-09,7.705661360275752137e-09,8.668869030310221360e-09,9.632076700344690584e-09,1.059528437037915981e-08,1.155849204041362903e-08,1.252169971044809826e-08,1.348490738048256748e-08,1.444811505051703670e-08,1.541132272055150758e-08,1.637453039058597846e-08,1.733773806062044934e-08,1.830094573065492022e-08,1.926415340068939109e-08,2.022736107072386197e-08,2.119056874075833285e-08,2.215377641079280373e-08,2.311698408082727461e-08,2.408019175086174549e-08,2.504339942089621636e-08,2.600660709093068724e-08,2.696981476096515812e-08,2.793302243099962900e-08,2.889623010103409988e-08,2.985943777106857076e-08,3.082264544110304163e-08,3.178585311113751251e-08,3.274906078117198339e-08,3.371226845120645427e-08,3.467547612124092515e-08,3.563868379127539602e-08,3.660189146130986690e-08,3.756509913134433778e-08,3.852830680137880866e-08,3.949151447141327954e-08,4.045472214144775042e-08,4.141792981148222129e-08,4.238113748151669217e-08,4.334434515155116305e-08,4.430755282158563393e-08,4.527076049162010481e-08,4.623396816165457569e-08,4.719717583168904656e-08,4.816038350172351744e-08,4.912359117175798832e-08,5.008679884179245920e-08,5.105000651182693008e-08,5.201321418186140095e-08,5.297642185189587183e-08,5.393962952193034271e-08,5.490283719196481359e-08,5.586604486199928447e-08,5.682925253203375535e-08,5.779246020206822622e-08,5.875566787210269710e-08,5.971887554213716798e-08,6.068208321217163886e-08 +0.000000000000000000e+00,8.133488159012533783e-10,1.626697631802506757e-09,2.440046447703760032e-09,3.253395263605013100e-09,4.066744079506266581e-09,4.880092895407520063e-09,5.693441711308773545e-09,6.506790527210027027e-09,7.320139343111280508e-09,8.133488159012533163e-09,8.946836974913785818e-09,9.760185790815038472e-09,1.057353460671629113e-08,1.138688342261754378e-08,1.220023223851879644e-08,1.301358105442004909e-08,1.382692987032130174e-08,1.464027868622255440e-08,1.545362750212380871e-08,1.626697631802506302e-08,1.708032513392631733e-08,1.789367394982757164e-08,1.870702276572882594e-08,1.952037158163008025e-08,2.033372039753133456e-08,2.114706921343258887e-08,2.196041802933384318e-08,2.277376684523509749e-08,2.358711566113635180e-08,2.440046447703760611e-08,2.521381329293886042e-08,2.602716210884011472e-08,2.684051092474136903e-08,2.765385974064262334e-08,2.846720855654387765e-08,2.928055737244513196e-08,3.009390618834638627e-08,3.090725500424764389e-08,3.172060382014890150e-08,3.253395263605015912e-08,3.334730145195141674e-08,3.416065026785267436e-08,3.497399908375393197e-08,3.578734789965518959e-08,3.660069671555644721e-08,3.741404553145770483e-08,3.822739434735896245e-08,3.904074316326022006e-08,3.985409197916147768e-08,4.066744079506273530e-08,4.148078961096399292e-08,4.229413842686525053e-08,4.310748724276650815e-08,4.392083605866776577e-08,4.473418487456902339e-08,4.554753369047028100e-08,4.636088250637153862e-08,4.717423132227279624e-08,4.798758013817405386e-08,4.880092895407531147e-08,4.961427776997656909e-08,5.042762658587782671e-08,5.124097540177908433e-08 +0.000000000000000000e+00,-8.837489205798554918e-10,-1.767497841159710984e-09,-2.651246761739566579e-09,-3.534995682319422381e-09,-4.418744602899278183e-09,-5.302493523479133985e-09,-6.186242444058989787e-09,-7.069991364638845589e-09,-7.953740285218700563e-09,-8.837489205798554711e-09,-9.721238126378408859e-09,-1.060498704695826301e-08,-1.148873596753811715e-08,-1.237248488811797130e-08,-1.325623380869782545e-08,-1.413998272927767960e-08,-1.502373164985753374e-08,-1.590748057043738789e-08,-1.679122949101724204e-08,-1.767497841159709619e-08,-1.855872733217695033e-08,-1.944247625275680448e-08,-2.032622517333665863e-08,-2.120997409391651278e-08,-2.209372301449636693e-08,-2.297747193507622107e-08,-2.386122085565607522e-08,-2.474496977623592937e-08,-2.562871869681578352e-08,-2.651246761739563766e-08,-2.739621653797549181e-08,-2.827996545855534596e-08,-2.916371437913520011e-08,-3.004746329971505425e-08,-3.093121222029490840e-08,-3.181496114087476255e-08,-3.269871006145461670e-08,-3.358245898203447084e-08,-3.446620790261432499e-08,-3.534995682319417914e-08,-3.623370574377403329e-08,-3.711745466435388743e-08,-3.800120358493374158e-08,-3.888495250551359573e-08,-3.976870142609344988e-08,-4.065245034667330402e-08,-4.153619926725315817e-08,-4.241994818783301232e-08,-4.330369710841286647e-08,-4.418744602899272062e-08,-4.507119494957257476e-08,-4.595494387015242891e-08,-4.683869279073228306e-08,-4.772244171131213721e-08,-4.860619063189199135e-08,-4.948993955247184550e-08,-5.037368847305169965e-08,-5.125743739363155380e-08,-5.214118631421140794e-08,-5.302493523479126209e-08,-5.390868415537111624e-08,-5.479243307595097039e-08,-5.567618199653082453e-08 +0.000000000000000000e+00,-9.632076701803276356e-10,-1.926415340360655271e-09,-2.889623010540982907e-09,-3.852830680721310543e-09,-4.816038350901638178e-09,-5.779246021081965814e-09,-6.742453691262293449e-09,-7.705661361442621085e-09,-8.668869031622948721e-09,-9.632076701803276356e-09,-1.059528437198360399e-08,-1.155849204216393163e-08,-1.252169971234425926e-08,-1.348490738252458690e-08,-1.444811505270491453e-08,-1.541132272288524217e-08,-1.637453039306556815e-08,-1.733773806324589413e-08,-1.830094573342622011e-08,-1.926415340360654610e-08,-2.022736107378687208e-08,-2.119056874396719806e-08,-2.215377641414752404e-08,-2.311698408432785002e-08,-2.408019175450817600e-08,-2.504339942468850198e-08,-2.600660709486882796e-08,-2.696981476504915395e-08,-2.793302243522947993e-08,-2.889623010540980591e-08,-2.985943777559013189e-08,-3.082264544577045787e-08,-3.178585311595078385e-08,-3.274906078613110983e-08,-3.371226845631143581e-08,-3.467547612649176180e-08,-3.563868379667208778e-08,-3.660189146685241376e-08,-3.756509913703273974e-08,-3.852830680721306572e-08,-3.949151447739339170e-08,-4.045472214757371768e-08,-4.141792981775404366e-08,-4.238113748793436965e-08,-4.334434515811469563e-08,-4.430755282829502161e-08,-4.527076049847534759e-08,-4.623396816865567357e-08,-4.719717583883599955e-08,-4.816038350901632553e-08,-4.912359117919665152e-08,-5.008679884937697750e-08,-5.105000651955730348e-08,-5.201321418973762946e-08,-5.297642185991795544e-08,-5.393962953009828142e-08,-5.490283720027860740e-08,-5.586604487045893338e-08,-5.682925254063925937e-08,-5.779246021081958535e-08,-5.875566788099991133e-08,-5.971887555118023731e-08,-6.068208322136056991e-08 +0.000000000000000000e+00,-8.133488160401030888e-10,-1.626697632080206178e-09,-2.440046448120309163e-09,-3.253395264160411942e-09,-4.066744080200514307e-09,-4.880092896240616672e-09,-5.693441712280719037e-09,-6.506790528320821402e-09,-7.320139344360923767e-09,-8.133488160401025304e-09,-8.946836976441126842e-09,-9.760185792481228380e-09,-1.057353460852132992e-08,-1.138688342456143146e-08,-1.220023224060153299e-08,-1.301358105664163453e-08,-1.382692987268173607e-08,-1.464027868872183761e-08,-1.545362750476193914e-08,-1.626697632080204068e-08,-1.708032513684214222e-08,-1.789367395288224376e-08,-1.870702276892234530e-08,-1.952037158496244683e-08,-2.033372040100254837e-08,-2.114706921704264991e-08,-2.196041803308275145e-08,-2.277376684912285299e-08,-2.358711566516295452e-08,-2.440046448120305606e-08,-2.521381329724315760e-08,-2.602716211328325914e-08,-2.684051092932336067e-08,-2.765385974536346221e-08,-2.846720856140356375e-08,-2.928055737744366529e-08,-3.009390619348376683e-08,-3.090725500952386505e-08,-3.172060382556396328e-08,-3.253395264160406151e-08,-3.334730145764415974e-08,-3.416065027368425797e-08,-3.497399908972435620e-08,-3.578734790576445443e-08,-3.660069672180455266e-08,-3.741404553784465089e-08,-3.822739435388474912e-08,-3.904074316992484735e-08,-3.985409198596494557e-08,-4.066744080200504380e-08,-4.148078961804514203e-08,-4.229413843408524026e-08,-4.310748725012533849e-08,-4.392083606616543672e-08,-4.473418488220553495e-08,-4.554753369824563318e-08,-4.636088251428573141e-08,-4.717423133032582964e-08,-4.798758014636592787e-08,-4.880092896240602609e-08,-4.961427777844612432e-08,-5.042762659448622255e-08,-5.124097541052632078e-08 +0.000000000000000000e+00,7.853171443651279539e-10,1.570634288730255908e-09,2.355951433095383758e-09,3.141268577460511402e-09,3.926585721825639046e-09,4.711902866190766689e-09,5.497220010555894333e-09,6.282537154921021977e-09,7.067854299286149620e-09,7.853171443651276437e-09,8.638488588016404080e-09,9.423805732381531724e-09,1.020912287674665937e-08,1.099444002111178701e-08,1.177975716547691466e-08,1.256507430984204230e-08,1.335039145420716994e-08,1.413570859857229759e-08,1.492102574293742523e-08,1.570634288730255287e-08,1.649166003166768052e-08,1.727697717603280816e-08,1.806229432039793580e-08,1.884761146476306345e-08,1.963292860912819109e-08,2.041824575349331874e-08,2.120356289785844638e-08,2.198888004222357402e-08,2.277419718658870167e-08,2.355951433095382931e-08,2.434483147531895695e-08,2.513014861968408460e-08,2.591546576404921224e-08,2.670078290841433989e-08,2.748610005277946753e-08,2.827141719714459517e-08,2.905673434150972282e-08,2.984205148587485046e-08,3.062736863023997810e-08,3.141268577460510575e-08,3.219800291897023339e-08,3.298332006333536103e-08,3.376863720770048868e-08,3.455395435206561632e-08,3.533927149643074397e-08,3.612458864079587161e-08,3.690990578516099925e-08,3.769522292952612690e-08,3.848054007389125454e-08,3.926585721825638218e-08,4.005117436262150983e-08,4.083649150698663747e-08,4.162180865135176512e-08,4.240712579571689276e-08,4.319244294008202040e-08,4.397776008444714805e-08,4.476307722881227569e-08,4.554839437317740333e-08,4.633371151754253098e-08,4.711902866190765862e-08,4.790434580627278626e-08,4.868966295063791391e-08,4.947498009500304155e-08 +0.000000000000000000e+00,8.276441370558739321e-10,1.655288274111747864e-09,2.482932411167621693e-09,3.310576548223495315e-09,4.138220685279369350e-09,4.965864822335243386e-09,5.793508959391117421e-09,6.621153096446991457e-09,7.448797233502865492e-09,8.276441370558738700e-09,9.104085507614611909e-09,9.931729644670485117e-09,1.075937378172635833e-08,1.158701791878223153e-08,1.241466205583810474e-08,1.324230619289397795e-08,1.406995032994985116e-08,1.489759446700572437e-08,1.572523860406159923e-08,1.655288274111747409e-08,1.738052687817334895e-08,1.820817101522922382e-08,1.903581515228509868e-08,1.986345928934097354e-08,2.069110342639684841e-08,2.151874756345272327e-08,2.234639170050859813e-08,2.317403583756447299e-08,2.400167997462034786e-08,2.482932411167622272e-08,2.565696824873209758e-08,2.648461238578797244e-08,2.731225652284384731e-08,2.813990065989972217e-08,2.896754479695559703e-08,2.979518893401147189e-08,3.062283307106734676e-08,3.145047720812322493e-08,3.227812134517910310e-08,3.310576548223498127e-08,3.393340961929085944e-08,3.476105375634673761e-08,3.558869789340261579e-08,3.641634203045849396e-08,3.724398616751437213e-08,3.807163030457025030e-08,3.889927444162612847e-08,3.972691857868200664e-08,4.055456271573788481e-08,4.138220685279376298e-08,4.220985098984964116e-08,4.303749512690551933e-08,4.386513926396139750e-08,4.469278340101727567e-08,4.552042753807315384e-08,4.634807167512903201e-08,4.717571581218491018e-08,4.800335994924078836e-08,4.883100408629666653e-08,4.965864822335254470e-08,5.048629236040842287e-08,5.131393649746430104e-08,5.214158063452017921e-08 +0.000000000000000000e+00,7.413416113529092948e-10,1.482683222705818590e-09,2.224024834058727678e-09,2.965366445411636766e-09,3.706708056764545854e-09,4.448049668117455355e-09,5.189391279470364857e-09,5.930732890823274358e-09,6.672074502176183860e-09,7.413416113529093362e-09,8.154757724882002863e-09,8.896099336234912365e-09,9.637440947587821866e-09,1.037878255894073137e-08,1.112012417029364087e-08,1.186146578164655037e-08,1.260280739299945987e-08,1.334414900435236937e-08,1.408549061570527888e-08,1.482683222705818838e-08,1.556817383841109788e-08,1.630951544976400573e-08,1.705085706111691357e-08,1.779219867246982142e-08,1.853354028382272927e-08,1.927488189517563712e-08,2.001622350652854496e-08,2.075756511788145281e-08,2.149890672923436066e-08,2.224024834058726850e-08,2.298158995194017635e-08,2.372293156329308420e-08,2.446427317464599205e-08,2.520561478599889989e-08,2.594695639735180774e-08,2.668829800870471559e-08,2.742963962005762343e-08,2.817098123141053128e-08,2.891232284276343913e-08,2.965366445411634698e-08,3.039500606546925151e-08,3.113634767682215605e-08,3.187768928817506059e-08,3.261903089952796513e-08,3.336037251088086967e-08,3.410171412223377421e-08,3.484305573358667875e-08,3.558439734493958328e-08,3.632573895629248782e-08,3.706708056764539236e-08,3.780842217899829690e-08,3.854976379035120144e-08,3.929110540170410598e-08,4.003244701305701052e-08,4.077378862440991505e-08,4.151513023576281959e-08,4.225647184711572413e-08,4.299781345846862867e-08,4.373915506982153321e-08,4.448049668117443775e-08,4.522183829252734228e-08,4.596317990388024682e-08,4.670452151523315136e-08 +0.000000000000000000e+00,-7.853171445135768885e-10,-1.570634289027153777e-09,-2.355951433540730769e-09,-3.141268578054307968e-09,-3.926585722567885580e-09,-4.711902867081463192e-09,-5.497220011595040805e-09,-6.282537156108618417e-09,-7.067854300622196029e-09,-7.853171445135774469e-09,-8.638488589649352908e-09,-9.423805734162931348e-09,-1.020912287867650979e-08,-1.099444002319008823e-08,-1.177975716770366667e-08,-1.256507431221724511e-08,-1.335039145673082355e-08,-1.413570860124440198e-08,-1.492102574575797877e-08,-1.570634289027155555e-08,-1.649166003478513234e-08,-1.727697717929870913e-08,-1.806229432381228591e-08,-1.884761146832586270e-08,-1.963292861283943948e-08,-2.041824575735301627e-08,-2.120356290186659305e-08,-2.198888004638016984e-08,-2.277419719089374662e-08,-2.355951433540732341e-08,-2.434483147992090019e-08,-2.513014862443447698e-08,-2.591546576894805376e-08,-2.670078291346163055e-08,-2.748610005797520733e-08,-2.827141720248878412e-08,-2.905673434700236090e-08,-2.984205149151593769e-08,-3.062736863602951447e-08,-3.141268578054309126e-08,-3.219800292505666804e-08,-3.298332006957024483e-08,-3.376863721408382161e-08,-3.455395435859739840e-08,-3.533927150311097518e-08,-3.612458864762455197e-08,-3.690990579213812875e-08,-3.769522293665170554e-08,-3.848054008116528232e-08,-3.926585722567885911e-08,-4.005117437019243589e-08,-4.083649151470601268e-08,-4.162180865921958946e-08,-4.240712580373316625e-08,-4.319244294824674303e-08,-4.397776009276031982e-08,-4.476307723727389660e-08,-4.554839438178747339e-08,-4.633371152630105018e-08,-4.711902867081462696e-08,-4.790434581532820375e-08,-4.868966295984178053e-08,-4.947498010435535732e-08 +0.000000000000000000e+00,-8.276441372037908862e-10,-1.655288274407581772e-09,-2.482932411611372659e-09,-3.310576548815163545e-09,-4.138220686018954845e-09,-4.965864823222746144e-09,-5.793508960426537444e-09,-6.621153097630328744e-09,-7.448797234834120044e-09,-8.276441372037911344e-09,-9.104085509241702643e-09,-9.931729646445493943e-09,-1.075937378364928524e-08,-1.158701792085307654e-08,-1.241466205805686784e-08,-1.324230619526065914e-08,-1.406995033246445044e-08,-1.489759446966824174e-08,-1.572523860687203470e-08,-1.655288274407582600e-08,-1.738052688127961730e-08,-1.820817101848340860e-08,-1.903581515568719990e-08,-1.986345929289099119e-08,-2.069110343009478249e-08,-2.151874756729857379e-08,-2.234639170450236509e-08,-2.317403584170615639e-08,-2.400167997890994769e-08,-2.482932411611373899e-08,-2.565696825331753029e-08,-2.648461239052132159e-08,-2.731225652772511289e-08,-2.813990066492890419e-08,-2.896754480213269549e-08,-2.979518893933648679e-08,-3.062283307654027809e-08,-3.145047721374406939e-08,-3.227812135094786069e-08,-3.310576548815165199e-08,-3.393340962535544329e-08,-3.476105376255923459e-08,-3.558869789976302589e-08,-3.641634203696681719e-08,-3.724398617417060849e-08,-3.807163031137439979e-08,-3.889927444857819109e-08,-3.972691858578198239e-08,-4.055456272298577369e-08,-4.138220686018956499e-08,-4.220985099739335629e-08,-4.303749513459714759e-08,-4.386513927180093889e-08,-4.469278340900473019e-08,-4.552042754620852149e-08,-4.634807168341231279e-08,-4.717571582061610409e-08,-4.800335995781989539e-08,-4.883100409502368669e-08,-4.965864823222747799e-08,-5.048629236943126929e-08,-5.131393650663506059e-08,-5.214158064383885189e-08 +0.000000000000000000e+00,-7.413416114918100836e-10,-1.482683222983620167e-09,-2.224024834475430251e-09,-2.965366445967240335e-09,-3.706708057459050418e-09,-4.448049668950860502e-09,-5.189391280442670999e-09,-5.930732891934481496e-09,-6.672074503426291994e-09,-7.413416114918102491e-09,-8.154757726409912988e-09,-8.896099337901722658e-09,-9.637440949393532328e-09,-1.037878256088534200e-08,-1.112012417237715167e-08,-1.186146578386896134e-08,-1.260280739536077101e-08,-1.334414900685258068e-08,-1.408549061834439035e-08,-1.482683222983620002e-08,-1.556817384132801134e-08,-1.630951545281982267e-08,-1.705085706431163399e-08,-1.779219867580344532e-08,-1.853354028729525664e-08,-1.927488189878706796e-08,-2.001622351027887929e-08,-2.075756512177069061e-08,-2.149890673326250194e-08,-2.224024834475431326e-08,-2.298158995624612459e-08,-2.372293156773793591e-08,-2.446427317922974724e-08,-2.520561479072155856e-08,-2.594695640221336988e-08,-2.668829801370518121e-08,-2.742963962519699253e-08,-2.817098123668880386e-08,-2.891232284818061518e-08,-2.965366445967242651e-08,-3.039500607116423783e-08,-3.113634768265604916e-08,-3.187768929414786048e-08,-3.261903090563967180e-08,-3.336037251713148313e-08,-3.410171412862329445e-08,-3.484305574011510578e-08,-3.558439735160691710e-08,-3.632573896309872843e-08,-3.706708057459053975e-08,-3.780842218608235108e-08,-3.854976379757416240e-08,-3.929110540906597372e-08,-4.003244702055778505e-08,-4.077378863204959637e-08,-4.151513024354140770e-08,-4.225647185503321902e-08,-4.299781346652503035e-08,-4.373915507801684167e-08,-4.448049668950865299e-08,-4.522183830100046432e-08,-4.596317991249227564e-08,-4.670452152398408697e-08 +0.000000000000000000e+00,7.296791496516147336e-10,1.459358299303229467e-09,2.189037448954844201e-09,2.918716598606458934e-09,3.648395748258073668e-09,4.378074897909688401e-09,5.107754047561303135e-09,5.837433197212917869e-09,6.567112346864532602e-09,7.296791496516147336e-09,8.026470646167762069e-09,8.756149795819376803e-09,9.485828945470991536e-09,1.021550809512260627e-08,1.094518724477422100e-08,1.167486639442583574e-08,1.240454554407745047e-08,1.313422469372906520e-08,1.386390384338067994e-08,1.459358299303229467e-08,1.532326214268390940e-08,1.605294129233552414e-08,1.678262044198713887e-08,1.751229959163875361e-08,1.824197874129036834e-08,1.897165789094198307e-08,1.970133704059359781e-08,2.043101619024521254e-08,2.116069533989682727e-08,2.189037448954844201e-08,2.262005363920005674e-08,2.334973278885167147e-08,2.407941193850328621e-08,2.480909108815490094e-08,2.553877023780651567e-08,2.626844938745813041e-08,2.699812853710974514e-08,2.772780768676135988e-08,2.845748683641297461e-08,2.918716598606458934e-08,2.991684513571620738e-08,3.064652428536782543e-08,3.137620343501944347e-08,3.210588258467106151e-08,3.283556173432267955e-08,3.356524088397429760e-08,3.429492003362591564e-08,3.502459918327753368e-08,3.575427833292915172e-08,3.648395748258076977e-08,3.721363663223238781e-08,3.794331578188400585e-08,3.867299493153562389e-08,3.940267408118724193e-08,4.013235323083885998e-08,4.086203238049047802e-08,4.159171153014209606e-08,4.232139067979371410e-08,4.305106982944533215e-08,4.378074897909695019e-08,4.451042812874856823e-08,4.524010727840018627e-08,4.596978642805180432e-08 +0.000000000000000000e+00,7.554445693810166303e-10,1.510889138762033261e-09,2.266333708143049994e-09,3.021778277524066935e-09,3.777222846905084289e-09,4.532667416286101643e-09,5.288111985667118997e-09,6.043556555048136351e-09,6.799001124429153705e-09,7.554445693810171886e-09,8.309890263191190067e-09,9.065334832572208248e-09,9.820779401953226430e-09,1.057622397133424461e-08,1.133166854071526279e-08,1.208711311009628097e-08,1.284255767947729915e-08,1.359800224885831734e-08,1.435344681823933552e-08,1.510889138762035370e-08,1.586433595700137188e-08,1.661978052638239006e-08,1.737522509576340824e-08,1.813066966514442642e-08,1.888611423452544460e-08,1.964155880390646279e-08,2.039700337328748097e-08,2.115244794266849915e-08,2.190789251204951733e-08,2.266333708143053551e-08,2.341878165081155369e-08,2.417422622019257187e-08,2.492967078957359005e-08,2.568511535895460824e-08,2.644055992833562642e-08,2.719600449771664460e-08,2.795144906709766278e-08,2.870689363647868096e-08,2.946233820585969914e-08,3.021778277524071401e-08,3.097322734462173220e-08,3.172867191400275038e-08,3.248411648338376856e-08,3.323956105276478674e-08,3.399500562214580492e-08,3.475045019152682310e-08,3.550589476090784128e-08,3.626133933028885946e-08,3.701678389966987764e-08,3.777222846905089583e-08,3.852767303843191401e-08,3.928311760781293219e-08,4.003856217719395037e-08,4.079400674657496855e-08,4.154945131595598673e-08,4.230489588533700491e-08,4.306034045471802309e-08,4.381578502409904128e-08,4.457122959348005946e-08,4.532667416286107764e-08,4.608211873224209582e-08,4.683756330162311400e-08,4.759300787100413218e-08 +0.000000000000000000e+00,7.046587293823353993e-10,1.409317458764670799e-09,2.113976188147006198e-09,2.818634917529341597e-09,3.523293646911676996e-09,4.227952376294012396e-09,4.932611105676347795e-09,5.637269835058683194e-09,6.341928564441018594e-09,7.046587293823353993e-09,7.751246023205688565e-09,8.455904752588023137e-09,9.160563481970357709e-09,9.865222211352692281e-09,1.056988094073502685e-08,1.127453967011736143e-08,1.197919839949969600e-08,1.268385712888203057e-08,1.338851585826436514e-08,1.409317458764669971e-08,1.479783331702903429e-08,1.550249204641137051e-08,1.620715077579370674e-08,1.691180950517604297e-08,1.761646823455837919e-08,1.832112696394071542e-08,1.902578569332305164e-08,1.973044442270538787e-08,2.043510315208772410e-08,2.113976188147006032e-08,2.184442061085239655e-08,2.254907934023473278e-08,2.325373806961706900e-08,2.395839679899940523e-08,2.466305552838174146e-08,2.536771425776407768e-08,2.607237298714641391e-08,2.677703171652875014e-08,2.748169044591108636e-08,2.818634917529342259e-08,2.889100790467575882e-08,2.959566663405809504e-08,3.030032536344043127e-08,3.100498409282276749e-08,3.170964282220510372e-08,3.241430155158743995e-08,3.311896028096977617e-08,3.382361901035211240e-08,3.452827773973444863e-08,3.523293646911678485e-08,3.593759519849912108e-08,3.664225392788145731e-08,3.734691265726379353e-08,3.805157138664612976e-08,3.875623011602846599e-08,3.946088884541080221e-08,4.016554757479313844e-08,4.087020630417547467e-08,4.157486503355781089e-08,4.227952376294014712e-08,4.298418249232248334e-08,4.368884122170481957e-08,4.439349995108715580e-08 +0.000000000000000000e+00,-7.296791498010127546e-10,-1.459358299602025509e-09,-2.189037449403038367e-09,-2.918716599204051432e-09,-3.648395749005064497e-09,-4.378074898806077561e-09,-5.107754048607091040e-09,-5.837433198408104518e-09,-6.567112348209117997e-09,-7.296791498010131475e-09,-8.026470647811144953e-09,-8.756149797612158432e-09,-9.485828947413171910e-09,-1.021550809721418539e-08,-1.094518724701519887e-08,-1.167486639681621235e-08,-1.240454554661722582e-08,-1.313422469641823930e-08,-1.386390384621925278e-08,-1.459358299602026626e-08,-1.532326214582127974e-08,-1.605294129562229322e-08,-1.678262044542330669e-08,-1.751229959522432017e-08,-1.824197874502533365e-08,-1.897165789482634713e-08,-1.970133704462736061e-08,-2.043101619442837409e-08,-2.116069534422938756e-08,-2.189037449403040104e-08,-2.262005364383141452e-08,-2.334973279363242800e-08,-2.407941194343344148e-08,-2.480909109323445496e-08,-2.553877024303546843e-08,-2.626844939283648191e-08,-2.699812854263749539e-08,-2.772780769243850887e-08,-2.845748684223952235e-08,-2.918716599204053583e-08,-2.991684514184155261e-08,-3.064652429164256609e-08,-3.137620344144357957e-08,-3.210588259124459305e-08,-3.283556174104560653e-08,-3.356524089084662000e-08,-3.429492004064763348e-08,-3.502459919044864696e-08,-3.575427834024966044e-08,-3.648395749005067392e-08,-3.721363663985168740e-08,-3.794331578965270087e-08,-3.867299493945371435e-08,-3.940267408925472783e-08,-4.013235323905574131e-08,-4.086203238885675479e-08,-4.159171153865776827e-08,-4.232139068845878174e-08,-4.305106983825979522e-08,-4.378074898806080870e-08,-4.451042813786182218e-08,-4.524010728766283566e-08,-4.596978643746384914e-08 +0.000000000000000000e+00,-7.554445695300642369e-10,-1.510889139060128474e-09,-2.266333708590192814e-09,-3.021778278120257361e-09,-3.777222847650321908e-09,-4.532667417180386455e-09,-5.288111986710451002e-09,-6.043556556240515549e-09,-6.799001125770580096e-09,-7.554445695300645471e-09,-8.309890264830711672e-09,-9.065334834360777874e-09,-9.820779403890844075e-09,-1.057622397342091028e-08,-1.133166854295097648e-08,-1.208711311248104268e-08,-1.284255768201110888e-08,-1.359800225154117508e-08,-1.435344682107124128e-08,-1.510889139060130749e-08,-1.586433596013137369e-08,-1.661978052966143989e-08,-1.737522509919150609e-08,-1.813066966872157229e-08,-1.888611423825163849e-08,-1.964155880778170469e-08,-2.039700337731177090e-08,-2.115244794684183710e-08,-2.190789251637190330e-08,-2.266333708590196950e-08,-2.341878165543203570e-08,-2.417422622496210190e-08,-2.492967079449216810e-08,-2.568511536402223431e-08,-2.644055993355230051e-08,-2.719600450308236671e-08,-2.795144907261243291e-08,-2.870689364214249911e-08,-2.946233821167256531e-08,-3.021778278120263482e-08,-3.097322735073270433e-08,-3.172867192026277384e-08,-3.248411648979284335e-08,-3.323956105932291286e-08,-3.399500562885298237e-08,-3.475045019838305188e-08,-3.550589476791312139e-08,-3.626133933744319090e-08,-3.701678390697326041e-08,-3.777222847650332992e-08,-3.852767304603339943e-08,-3.928311761556346894e-08,-4.003856218509353845e-08,-4.079400675462360796e-08,-4.154945132415367747e-08,-4.230489589368374699e-08,-4.306034046321381650e-08,-4.381578503274388601e-08,-4.457122960227395552e-08,-4.532667417180402503e-08,-4.608211874133409454e-08,-4.683756331086416405e-08,-4.759300788039423356e-08 +0.000000000000000000e+00,-7.046587295195219597e-10,-1.409317459039043919e-09,-2.113976188558565776e-09,-2.818634918078087425e-09,-3.523293647597609075e-09,-4.227952377117130724e-09,-4.932611106636652374e-09,-5.637269836156174023e-09,-6.341928565675695673e-09,-7.046587295195217322e-09,-7.751246024714738972e-09,-8.455904754234259794e-09,-9.160563483753780616e-09,-9.865222213273301439e-09,-1.056988094279282226e-08,-1.127453967231234308e-08,-1.197919840183186391e-08,-1.268385713135138473e-08,-1.338851586087090555e-08,-1.409317459039042637e-08,-1.479783331990994720e-08,-1.550249204942946802e-08,-1.620715077894899049e-08,-1.691180950846851297e-08,-1.761646823798803545e-08,-1.832112696750755792e-08,-1.902578569702708040e-08,-1.973044442654660288e-08,-2.043510315606612535e-08,-2.113976188558564783e-08,-2.184442061510517031e-08,-2.254907934462469278e-08,-2.325373807414421526e-08,-2.395839680366373774e-08,-2.466305553318326021e-08,-2.536771426270278269e-08,-2.607237299222230517e-08,-2.677703172174182764e-08,-2.748169045126135012e-08,-2.818634918078087260e-08,-2.889100791030039507e-08,-2.959566663981991755e-08,-3.030032536933944003e-08,-3.100498409885896250e-08,-3.170964282837848498e-08,-3.241430155789800746e-08,-3.311896028741752993e-08,-3.382361901693705241e-08,-3.452827774645657489e-08,-3.523293647597609736e-08,-3.593759520549561984e-08,-3.664225393501514232e-08,-3.734691266453466479e-08,-3.805157139405418727e-08,-3.875623012357370975e-08,-3.946088885309323223e-08,-4.016554758261275470e-08,-4.087020631213227718e-08,-4.157486504165179966e-08,-4.227952377117132213e-08,-4.298418250069084461e-08,-4.368884123021036709e-08,-4.439349995972988956e-08 +0.000000000000000000e+00,6.955612183941329426e-10,1.391122436788265885e-09,2.086683655182399034e-09,2.782244873576532184e-09,3.477806091970665333e-09,4.173367310364798069e-09,4.868928528758930805e-09,5.564489747153063540e-09,6.260050965547196276e-09,6.955612183941329012e-09,7.651173402335460921e-09,8.346734620729592829e-09,9.042295839123724738e-09,9.737857057517856646e-09,1.043341827591198855e-08,1.112897949430612046e-08,1.182454071270025237e-08,1.252010193109438428e-08,1.321566314948851619e-08,1.391122436788264810e-08,1.460678558627678001e-08,1.530234680467091192e-08,1.599790802306504382e-08,1.669346924145917573e-08,1.738903045985330764e-08,1.808459167824743955e-08,1.878015289664157146e-08,1.947571411503570337e-08,2.017127533342983528e-08,2.086683655182396718e-08,2.156239777021809909e-08,2.225795898861223100e-08,2.295352020700636291e-08,2.364908142540049482e-08,2.434464264379462673e-08,2.504020386218875864e-08,2.573576508058289054e-08,2.643132629897702245e-08,2.712688751737115436e-08,2.782244873576528627e-08,2.851800995415941818e-08,2.921357117255355009e-08,2.990913239094768200e-08,3.060469360934181721e-08,3.130025482773595243e-08,3.199581604613008765e-08,3.269137726452422286e-08,3.338693848291835808e-08,3.408249970131249330e-08,3.477806091970662852e-08,3.547362213810076373e-08,3.616918335649489895e-08,3.686474457488903417e-08,3.756030579328316939e-08,3.825586701167730460e-08,3.895142823007143982e-08,3.964698944846557504e-08,4.034255066685971025e-08,4.103811188525384547e-08,4.173367310364798069e-08,4.242923432204211591e-08,4.312479554043625112e-08,4.382035675883038634e-08 +0.000000000000000000e+00,7.114566684788841250e-10,1.422913336957768250e-09,2.134370005436652375e-09,2.845826673915536500e-09,3.557283342394420625e-09,4.268740010873304750e-09,4.980196679352189289e-09,5.691653347831073827e-09,6.403110016309958366e-09,7.114566684788842904e-09,7.826023353267727443e-09,8.537480021746611154e-09,9.248936690225494866e-09,9.960393358704378577e-09,1.067185002718326229e-08,1.138330669566214600e-08,1.209476336414102971e-08,1.280622003261991342e-08,1.351767670109879713e-08,1.422913336957768085e-08,1.494059003805656456e-08,1.565204670653544827e-08,1.636350337501433198e-08,1.707496004349321569e-08,1.778641671197209940e-08,1.849787338045098311e-08,1.920933004892986683e-08,1.992078671740875054e-08,2.063224338588763425e-08,2.134370005436651796e-08,2.205515672284540167e-08,2.276661339132428538e-08,2.347807005980316909e-08,2.418952672828205281e-08,2.490098339676093652e-08,2.561244006523982023e-08,2.632389673371870394e-08,2.703535340219758765e-08,2.774681007067647136e-08,2.845826673915535507e-08,2.916972340763423878e-08,2.988118007611312250e-08,3.059263674459200621e-08,3.130409341307088992e-08,3.201555008154977363e-08,3.272700675002865734e-08,3.343846341850754105e-08,3.414992008698642476e-08,3.486137675546530848e-08,3.557283342394419219e-08,3.628429009242307590e-08,3.699574676090195961e-08,3.770720342938084332e-08,3.841866009785972703e-08,3.913011676633861074e-08,3.984157343481749446e-08,4.055303010329637817e-08,4.126448677177526188e-08,4.197594344025414559e-08,4.268740010873302930e-08,4.339885677721191301e-08,4.411031344569079672e-08,4.482177011416968044e-08 +0.000000000000000000e+00,6.858585320358106162e-10,1.371717064071621232e-09,2.057575596107431642e-09,2.743434128143242051e-09,3.429292660179052460e-09,4.115151192214863283e-09,4.801009724250674106e-09,5.486868256286484929e-09,6.172726788322295752e-09,6.858585320358106575e-09,7.544443852393918226e-09,8.230302384429729876e-09,8.916160916465541526e-09,9.602019448501353176e-09,1.028787798053716483e-08,1.097373651257297648e-08,1.165959504460878813e-08,1.234545357664459978e-08,1.303131210868041143e-08,1.371717064071622308e-08,1.440302917275203473e-08,1.508888770478784638e-08,1.577474623682365803e-08,1.646060476885946968e-08,1.714646330089528133e-08,1.783232183293109298e-08,1.851818036496690463e-08,1.920403889700271628e-08,1.988989742903852793e-08,2.057575596107433958e-08,2.126161449311015123e-08,2.194747302514596288e-08,2.263333155718177453e-08,2.331919008921758618e-08,2.400504862125339783e-08,2.469090715328920948e-08,2.537676568532502113e-08,2.606262421736083278e-08,2.674848274939664443e-08,2.743434128143245608e-08,2.812019981346826773e-08,2.880605834550407938e-08,2.949191687753989103e-08,3.017777540957569937e-08,3.086363394161150440e-08,3.154949247364730944e-08,3.223535100568311447e-08,3.292120953771891950e-08,3.360706806975472454e-08,3.429292660179052957e-08,3.497878513382633460e-08,3.566464366586213963e-08,3.635050219789794467e-08,3.703636072993374970e-08,3.772221926196955473e-08,3.840807779400535976e-08,3.909393632604116480e-08,3.977979485807696983e-08,4.046565339011277486e-08,4.115151192214857990e-08,4.183737045418438493e-08,4.252322898622018996e-08,4.320908751825599499e-08 +0.000000000000000000e+00,-6.955612185428476090e-10,-1.391122437085695218e-09,-2.086683655628543034e-09,-2.782244874171390850e-09,-3.477806092714238665e-09,-4.173367311257086068e-09,-4.868928529799933470e-09,-5.564489748342780872e-09,-6.260050966885628274e-09,-6.955612185428475676e-09,-7.651173403971323078e-09,-8.346734622514170481e-09,-9.042295841057017883e-09,-9.737857059599865285e-09,-1.043341827814271269e-08,-1.112897949668556009e-08,-1.182454071522840749e-08,-1.252010193377125489e-08,-1.321566315231410230e-08,-1.391122437085694970e-08,-1.460678558939979710e-08,-1.530234680794264616e-08,-1.599790802648549521e-08,-1.669346924502834427e-08,-1.738903046357119333e-08,-1.808459168211404238e-08,-1.878015290065689144e-08,-1.947571411919974050e-08,-2.017127533774258955e-08,-2.086683655628543861e-08,-2.156239777482828767e-08,-2.225795899337113672e-08,-2.295352021191398578e-08,-2.364908143045683484e-08,-2.434464264899968389e-08,-2.504020386754253295e-08,-2.573576508608538201e-08,-2.643132630462823106e-08,-2.712688752317108012e-08,-2.782244874171392917e-08,-2.851800996025677823e-08,-2.921357117879962729e-08,-2.990913239734247634e-08,-3.060469361588532540e-08,-3.130025483442817446e-08,-3.199581605297102351e-08,-3.269137727151387257e-08,-3.338693849005672163e-08,-3.408249970859957068e-08,-3.477806092714241974e-08,-3.547362214568526880e-08,-3.616918336422811785e-08,-3.686474458277096691e-08,-3.756030580131381597e-08,-3.825586701985666502e-08,-3.895142823839951408e-08,-3.964698945694236314e-08,-4.034255067548521219e-08,-4.103811189402806125e-08,-4.173367311257091031e-08,-4.242923433111375936e-08,-4.312479554965660842e-08,-4.382035676819945748e-08 +0.000000000000000000e+00,-7.114566686281093687e-10,-1.422913337256218737e-09,-2.134370005884327899e-09,-2.845826674512437061e-09,-3.557283343140546223e-09,-4.268740011768655798e-09,-4.980196680396765374e-09,-5.691653349024874949e-09,-6.403110017652984525e-09,-7.114566686281094100e-09,-7.826023354909204503e-09,-8.537480023537314905e-09,-9.248936692165425308e-09,-9.960393360793535711e-09,-1.067185002942164611e-08,-1.138330669804975652e-08,-1.209476336667786692e-08,-1.280622003530597732e-08,-1.351767670393408772e-08,-1.422913337256219813e-08,-1.494059004119030853e-08,-1.565204670981841893e-08,-1.636350337844652933e-08,-1.707496004707463974e-08,-1.778641671570275014e-08,-1.849787338433086054e-08,-1.920933005295897094e-08,-1.992078672158708135e-08,-2.063224339021519175e-08,-2.134370005884330215e-08,-2.205515672747141256e-08,-2.276661339609952296e-08,-2.347807006472763336e-08,-2.418952673335574376e-08,-2.490098340198385417e-08,-2.561244007061196457e-08,-2.632389673924007497e-08,-2.703535340786818537e-08,-2.774681007649629578e-08,-2.845826674512440618e-08,-2.916972341375251658e-08,-2.988118008238063029e-08,-3.059263675100874400e-08,-3.130409341963685772e-08,-3.201555008826497143e-08,-3.272700675689308514e-08,-3.343846342552119885e-08,-3.414992009414931256e-08,-3.486137676277742627e-08,-3.557283343140553998e-08,-3.628429010003365370e-08,-3.699574676866176741e-08,-3.770720343728988112e-08,-3.841866010591799483e-08,-3.913011677454610854e-08,-3.984157344317422225e-08,-4.055303011180233596e-08,-4.126448678043044967e-08,-4.197594344905856339e-08,-4.268740011768667710e-08,-4.339885678631479081e-08,-4.411031345494290452e-08,-4.482177012357101823e-08 +0.000000000000000000e+00,-6.858585321696862828e-10,-1.371717064339372566e-09,-2.057575596509058848e-09,-2.743434128678745131e-09,-3.429292660848431414e-09,-4.115151193018117697e-09,-4.801009725187804393e-09,-5.486868257357491090e-09,-6.172726789527177786e-09,-6.858585321696864482e-09,-7.544443853866551179e-09,-8.230302386036237048e-09,-8.916160918205922917e-09,-9.602019450375608786e-09,-1.028787798254529466e-08,-1.097373651471498052e-08,-1.165959504688466639e-08,-1.234545357905435226e-08,-1.303131211122403813e-08,-1.371717064339372400e-08,-1.440302917556340987e-08,-1.508888770773309574e-08,-1.577474623990278161e-08,-1.646060477207246748e-08,-1.714646330424215335e-08,-1.783232183641183922e-08,-1.851818036858152509e-08,-1.920403890075121096e-08,-1.988989743292089682e-08,-2.057575596509058269e-08,-2.126161449726026856e-08,-2.194747302942995443e-08,-2.263333156159964030e-08,-2.331919009376932617e-08,-2.400504862593901204e-08,-2.469090715810869791e-08,-2.537676569027838378e-08,-2.606262422244806965e-08,-2.674848275461775552e-08,-2.743434128678744139e-08,-2.812019981895712726e-08,-2.880605835112681312e-08,-2.949191688329649899e-08,-3.017777541546618486e-08,-3.086363394763586742e-08,-3.154949247980554998e-08,-3.223535101197523254e-08,-3.292120954414491510e-08,-3.360706807631459767e-08,-3.429292660848428023e-08,-3.497878514065396279e-08,-3.566464367282364535e-08,-3.635050220499332791e-08,-3.703636073716301047e-08,-3.772221926933269303e-08,-3.840807780150237559e-08,-3.909393633367205815e-08,-3.977979486584174071e-08,-4.046565339801142327e-08,-4.115151193018110583e-08,-4.183737046235078839e-08,-4.252322899452047095e-08,-4.320908752669015351e-08 +0.000000000000000000e+00,6.761585992366333092e-10,1.352317198473266618e-09,2.028475797709899928e-09,2.704634396946533237e-09,3.380792996183166546e-09,4.056951595419799855e-09,4.733110194656433578e-09,5.409268793893067301e-09,6.085427393129701024e-09,6.761585992366334747e-09,7.437744591602968470e-09,8.113903190839601365e-09,8.790061790076234261e-09,9.466220389312867157e-09,1.014237898854950005e-08,1.081853758778613295e-08,1.149469618702276584e-08,1.217085478625939874e-08,1.284701338549603163e-08,1.352317198473266453e-08,1.419933058396929743e-08,1.487548918320593032e-08,1.555164778244256487e-08,1.622780638167919942e-08,1.690396498091583397e-08,1.758012358015246852e-08,1.825628217938910307e-08,1.893244077862573762e-08,1.960859937786237217e-08,2.028475797709900672e-08,2.096091657633564127e-08,2.163707517557227582e-08,2.231323377480891037e-08,2.298939237404554492e-08,2.366555097328217947e-08,2.434170957251881402e-08,2.501786817175544857e-08,2.569402677099208312e-08,2.637018537022871767e-08,2.704634396946535222e-08,2.772250256870198677e-08,2.839866116793862132e-08,2.907481976717525587e-08,2.975097836641189042e-08,3.042713696564852497e-08,3.110329556488515621e-08,3.177945416412178745e-08,3.245561276335841870e-08,3.313177136259504994e-08,3.380792996183168118e-08,3.448408856106831242e-08,3.516024716030494366e-08,3.583640575954157490e-08,3.651256435877820614e-08,3.718872295801483739e-08,3.786488155725146863e-08,3.854104015648809987e-08,3.921719875572473111e-08,3.989335735496136235e-08,4.056951595419799359e-08,4.124567455343462483e-08,4.192183315267125607e-08,4.259799175190788732e-08 +0.000000000000000000e+00,6.844221343039350609e-10,1.368844268607870122e-09,2.053266402911805183e-09,2.737688537215740244e-09,3.422110671519675305e-09,4.106532805823610366e-09,4.790954940127545840e-09,5.475377074431481315e-09,6.159799208735416789e-09,6.844221343039352264e-09,7.528643477343287738e-09,8.213065611647222385e-09,8.897487745951157033e-09,9.581909880255091680e-09,1.026633201455902633e-08,1.095075414886296097e-08,1.163517628316689562e-08,1.231959841747083027e-08,1.300402055177476492e-08,1.368844268607869956e-08,1.437286482038263421e-08,1.505728695468656886e-08,1.574170908899050516e-08,1.642613122329444146e-08,1.711055335759837776e-08,1.779497549190231407e-08,1.847939762620625037e-08,1.916381976051018667e-08,1.984824189481412297e-08,2.053266402911805927e-08,2.121708616342199557e-08,2.190150829772593188e-08,2.258593043202986818e-08,2.327035256633380448e-08,2.395477470063774078e-08,2.463919683494167708e-08,2.532361896924561338e-08,2.600804110354954969e-08,2.669246323785348599e-08,2.737688537215742229e-08,2.806130750646135859e-08,2.874572964076529489e-08,2.943015177506923119e-08,3.011457390937317080e-08,3.079899604367711041e-08,3.148341817798105003e-08,3.216784031228498964e-08,3.285226244658892925e-08,3.353668458089286886e-08,3.422110671519680847e-08,3.490552884950074808e-08,3.558995098380468769e-08,3.627437311810862730e-08,3.695879525241256691e-08,3.764321738671650652e-08,3.832763952102044613e-08,3.901206165532438574e-08,3.969648378962832535e-08,4.038090592393226496e-08,4.106532805823620457e-08,4.174975019254014418e-08,4.243417232684408379e-08,4.311859446114802340e-08 +0.000000000000000000e+00,6.800495170578609146e-10,1.360099034115721829e-09,2.040148551173582951e-09,2.720198068231444072e-09,3.400247585289305193e-09,4.080297102347165901e-09,4.760346619405026609e-09,5.440396136462887317e-09,6.120445653520748025e-09,6.800495170578608732e-09,7.480544687636470267e-09,8.160594204694331802e-09,8.840643721752193337e-09,9.520693238810054872e-09,1.020074275586791641e-08,1.088079227292577794e-08,1.156084178998363948e-08,1.224089130704150101e-08,1.292094082409936255e-08,1.360099034115722408e-08,1.428103985821508562e-08,1.496108937527294715e-08,1.564113889233080869e-08,1.632118840938867022e-08,1.700123792644653176e-08,1.768128744350439329e-08,1.836133696056225483e-08,1.904138647762011636e-08,1.972143599467797790e-08,2.040148551173583943e-08,2.108153502879370097e-08,2.176158454585156250e-08,2.244163406290942404e-08,2.312168357996728557e-08,2.380173309702514711e-08,2.448178261408300864e-08,2.516183213114087018e-08,2.584188164819873171e-08,2.652193116525659325e-08,2.720198068231445478e-08,2.788203019937231632e-08,2.856207971643017785e-08,2.924212923348803939e-08,2.992217875054590092e-08,3.060222826760375915e-08,3.128227778466161737e-08,3.196232730171947560e-08,3.264237681877733383e-08,3.332242633583519205e-08,3.400247585289305028e-08,3.468252536995090851e-08,3.536257488700876673e-08,3.604262440406662496e-08,3.672267392112448318e-08,3.740272343818234141e-08,3.808277295524019964e-08,3.876282247229805786e-08,3.944287198935591609e-08,4.012292150641377432e-08,4.080297102347163254e-08,4.148302054052949077e-08,4.216307005758734899e-08,4.284311957464520722e-08 +0.000000000000000000e+00,-6.761585993844548274e-10,-1.352317198768909655e-09,-2.028475798153364275e-09,-2.704634397537818896e-09,-3.380792996922273517e-09,-4.056951596306728551e-09,-4.733110195691183585e-09,-5.409268795075638619e-09,-6.085427394460093653e-09,-6.761585993844548688e-09,-7.437744593229003722e-09,-8.113903192613458756e-09,-8.790061791997913790e-09,-9.466220391382368824e-09,-1.014237899076682386e-08,-1.081853759015127889e-08,-1.149469618953573393e-08,-1.217085478892018896e-08,-1.284701338830464400e-08,-1.352317198768909903e-08,-1.419933058707355406e-08,-1.487548918645800910e-08,-1.555164778584246248e-08,-1.622780638522691420e-08,-1.690396498461136593e-08,-1.758012358399581765e-08,-1.825628218338026938e-08,-1.893244078276472111e-08,-1.960859938214917283e-08,-2.028475798153362456e-08,-2.096091658091807628e-08,-2.163707518030252801e-08,-2.231323377968697973e-08,-2.298939237907143146e-08,-2.366555097845588318e-08,-2.434170957784033491e-08,-2.501786817722478663e-08,-2.569402677660923836e-08,-2.637018537599369009e-08,-2.704634397537814181e-08,-2.772250257476259354e-08,-2.839866117414704526e-08,-2.907481977353149699e-08,-2.975097837291594871e-08,-3.042713697230040044e-08,-3.110329557168485216e-08,-3.177945417106930389e-08,-3.245561277045375561e-08,-3.313177136983820734e-08,-3.380792996922265907e-08,-3.448408856860711079e-08,-3.516024716799156252e-08,-3.583640576737601424e-08,-3.651256436676046597e-08,-3.718872296614491769e-08,-3.786488156552936942e-08,-3.854104016491382114e-08,-3.921719876429827287e-08,-3.989335736368272460e-08,-4.056951596306717632e-08,-4.124567456245162805e-08,-4.192183316183607977e-08,-4.259799176122053150e-08 +0.000000000000000000e+00,-6.844221344522065653e-10,-1.368844268904413131e-09,-2.053266403356619489e-09,-2.737688537808825848e-09,-3.422110672261032206e-09,-4.106532806713238978e-09,-4.790954941165445751e-09,-5.475377075617652523e-09,-6.159799210069859295e-09,-6.844221344522066067e-09,-7.528643478974272839e-09,-8.213065613426479611e-09,-8.897487747878686383e-09,-9.581909882330893155e-09,-1.026633201678309993e-08,-1.095075415123530670e-08,-1.163517628568751347e-08,-1.231959842013972024e-08,-1.300402055459192702e-08,-1.368844268904413379e-08,-1.437286482349634056e-08,-1.505728695794854899e-08,-1.574170909240075907e-08,-1.642613122685296915e-08,-1.711055336130517923e-08,-1.779497549575738931e-08,-1.847939763020959939e-08,-1.916381976466180947e-08,-1.984824189911401955e-08,-2.053266403356622963e-08,-2.121708616801843971e-08,-2.190150830247064980e-08,-2.258593043692285988e-08,-2.327035257137506996e-08,-2.395477470582728004e-08,-2.463919684027949012e-08,-2.532361897473170020e-08,-2.600804110918391028e-08,-2.669246324363612036e-08,-2.737688537808833044e-08,-2.806130751254054052e-08,-2.874572964699275060e-08,-2.943015178144496068e-08,-3.011457391589717077e-08,-3.079899605034938085e-08,-3.148341818480159093e-08,-3.216784031925380101e-08,-3.285226245370601109e-08,-3.353668458815822117e-08,-3.422110672261043125e-08,-3.490552885706264133e-08,-3.558995099151485141e-08,-3.627437312596706149e-08,-3.695879526041927157e-08,-3.764321739487148165e-08,-3.832763952932369174e-08,-3.901206166377590182e-08,-3.969648379822811190e-08,-4.038090593268032198e-08,-4.106532806713253206e-08,-4.174975020158474214e-08,-4.243417233603695222e-08,-4.311859447048916230e-08 +0.000000000000000000e+00,-6.800495171874110470e-10,-1.360099034374822094e-09,-2.040148551562232934e-09,-2.720198068749643774e-09,-3.400247585937054615e-09,-4.080297103124465868e-09,-4.760346620311877122e-09,-5.440396137499288376e-09,-6.120445654686699630e-09,-6.800495171874110884e-09,-7.480544689061522137e-09,-8.160594206248933391e-09,-8.840643723436344645e-09,-9.520693240623755899e-09,-1.020074275781116715e-08,-1.088079227499857841e-08,-1.156084179218598966e-08,-1.224089130937340091e-08,-1.292094082656081217e-08,-1.360099034374822342e-08,-1.428103986093563468e-08,-1.496108937812304758e-08,-1.564113889531046215e-08,-1.632118841249787671e-08,-1.700123792968529127e-08,-1.768128744687270583e-08,-1.836133696406012040e-08,-1.904138648124753496e-08,-1.972143599843494952e-08,-2.040148551562236408e-08,-2.108153503280977865e-08,-2.176158454999719321e-08,-2.244163406718460777e-08,-2.312168358437202233e-08,-2.380173310155943690e-08,-2.448178261874685146e-08,-2.516183213593426602e-08,-2.584188165312168058e-08,-2.652193117030909515e-08,-2.720198068749650971e-08,-2.788203020468392427e-08,-2.856207972187133883e-08,-2.924212923905875340e-08,-2.992217875624616796e-08,-3.060222827343358252e-08,-3.128227779062099708e-08,-3.196232730780841165e-08,-3.264237682499582621e-08,-3.332242634218324077e-08,-3.400247585937065533e-08,-3.468252537655806990e-08,-3.536257489374548446e-08,-3.604262441093289902e-08,-3.672267392812031358e-08,-3.740272344530772815e-08,-3.808277296249514271e-08,-3.876282247968255727e-08,-3.944287199686997183e-08,-4.012292151405738640e-08,-4.080297103124480096e-08,-4.148302054843221552e-08,-4.216307006561963008e-08,-4.284311958280704465e-08 +0.000000000000000000e+00,6.729713411324371177e-10,1.345942682264874235e-09,2.018914023397311146e-09,2.691885364529748057e-09,3.364856705662184968e-09,4.037828046794622293e-09,4.710799387927059617e-09,5.383770729059496942e-09,6.056742070191934266e-09,6.729713411324371591e-09,7.402684752456808915e-09,8.075656093589246240e-09,8.748627434721683564e-09,9.421598775854120889e-09,1.009457011698655821e-08,1.076754145811899554e-08,1.144051279925143286e-08,1.211348414038387019e-08,1.278645548151630751e-08,1.345942682264874484e-08,1.413239816378118216e-08,1.480536950491361948e-08,1.547834084604605846e-08,1.615131218717849579e-08,1.682428352831093311e-08,1.749725486944337044e-08,1.817022621057580776e-08,1.884319755170824509e-08,1.951616889284068241e-08,2.018914023397311974e-08,2.086211157510555706e-08,2.153508291623799438e-08,2.220805425737043171e-08,2.288102559850286903e-08,2.355399693963530636e-08,2.422696828076774368e-08,2.489993962190018101e-08,2.557291096303261833e-08,2.624588230416505566e-08,2.691885364529749298e-08,2.759182498642993030e-08,2.826479632756236763e-08,2.893776766869480495e-08,2.961073900982724228e-08,3.028371035095967960e-08,3.095668169209211693e-08,3.162965303322455425e-08,3.230262437435699158e-08,3.297559571548942890e-08,3.364856705662186623e-08,3.432153839775430355e-08,3.499450973888674087e-08,3.566748108001917820e-08,3.634045242115161552e-08,3.701342376228405285e-08,3.768639510341649017e-08,3.835936644454892750e-08,3.903233778568136482e-08,3.970530912681380215e-08,4.037828046794623947e-08,4.105125180907867680e-08,4.172422315021111412e-08,4.239719449134355144e-08 +0.000000000000000000e+00,6.719993134292479211e-10,1.343998626858495842e-09,2.015997940287743867e-09,2.687997253716992098e-09,3.359996567146240329e-09,4.031995880575488561e-09,4.703995194004736792e-09,5.375994507433985023e-09,6.047993820863233255e-09,6.719993134292481486e-09,7.391992447721729717e-09,8.063991761150978776e-09,8.735991074580228661e-09,9.407990388009478547e-09,1.007998970143872843e-08,1.075198901486797832e-08,1.142398832829722820e-08,1.209598764172647809e-08,1.276798695515572798e-08,1.343998626858497786e-08,1.411198558201422775e-08,1.478398489544347763e-08,1.545598420887272752e-08,1.612798352230197740e-08,1.679998283573122729e-08,1.747198214916047717e-08,1.814398146258972706e-08,1.881598077601897695e-08,1.948798008944822683e-08,2.015997940287747672e-08,2.083197871630672660e-08,2.150397802973597649e-08,2.217597734316522637e-08,2.284797665659447626e-08,2.351997597002372615e-08,2.419197528345297603e-08,2.486397459688222592e-08,2.553597391031147580e-08,2.620797322374072569e-08,2.687997253716997557e-08,2.755197185059922546e-08,2.822397116402847535e-08,2.889597047745772523e-08,2.956796979088697512e-08,3.023996910431622831e-08,3.091196841774548151e-08,3.158396773117473470e-08,3.225596704460398789e-08,3.292796635803324109e-08,3.359996567146249428e-08,3.427196498489174748e-08,3.494396429832100067e-08,3.561596361175025387e-08,3.628796292517950706e-08,3.695996223860876026e-08,3.763196155203801345e-08,3.830396086546726664e-08,3.897596017889651984e-08,3.964795949232577303e-08,4.031995880575502623e-08,4.099195811918427942e-08,4.166395743261353262e-08,4.233595674604278581e-08 +0.000000000000000000e+00,6.847263177397580491e-10,1.369452635479516098e-09,2.054178953219274147e-09,2.738905270959032197e-09,3.423631588698790246e-09,4.108357906438548295e-09,4.793084224178306344e-09,5.477810541918064393e-09,6.162536859657822442e-09,6.847263177397580491e-09,7.531989495137338541e-09,8.216715812877096590e-09,8.901442130616854639e-09,9.586168448356612688e-09,1.027089476609637074e-08,1.095562108383612879e-08,1.164034740157588684e-08,1.232507371931564488e-08,1.300980003705540293e-08,1.369452635479516098e-08,1.437925267253491903e-08,1.506397899027467708e-08,1.574870530801443513e-08,1.643343162575419318e-08,1.711815794349395123e-08,1.780288426123370928e-08,1.848761057897346733e-08,1.917233689671322538e-08,1.985706321445298343e-08,2.054178953219274147e-08,2.122651584993249952e-08,2.191124216767225757e-08,2.259596848541201562e-08,2.328069480315177367e-08,2.396542112089153172e-08,2.465014743863128977e-08,2.533487375637104782e-08,2.601960007411080587e-08,2.670432639185056392e-08,2.738905270959032197e-08,2.807377902733008002e-08,2.875850534506983806e-08,2.944323166280959611e-08,3.012795798054935416e-08,3.081268429828911552e-08,3.149741061602887688e-08,3.218213693376863824e-08,3.286686325150839959e-08,3.355158956924816095e-08,3.423631588698792231e-08,3.492104220472768367e-08,3.560576852246744503e-08,3.629049484020720638e-08,3.697522115794696774e-08,3.765994747568672910e-08,3.834467379342649046e-08,3.902940011116625181e-08,3.971412642890601317e-08,4.039885274664577453e-08,4.108357906438553589e-08,4.176830538212529725e-08,4.245303169986505860e-08,4.313775801760481996e-08 +0.000000000000000000e+00,-6.729713412788951320e-10,-1.345942682557790264e-09,-2.018914023836685499e-09,-2.691885365115580942e-09,-3.364856706394476384e-09,-4.037828047673371826e-09,-4.710799388952267268e-09,-5.383770730231162711e-09,-6.056742071510058153e-09,-6.729713412788953595e-09,-7.402684754067849037e-09,-8.075656095346745307e-09,-8.748627436625641576e-09,-9.421598777904537846e-09,-1.009457011918343411e-08,-1.076754146046233038e-08,-1.144051280174122665e-08,-1.211348414302012292e-08,-1.278645548429901919e-08,-1.345942682557791546e-08,-1.413239816685681173e-08,-1.480536950813570800e-08,-1.547834084941460262e-08,-1.615131219069349723e-08,-1.682428353197239185e-08,-1.749725487325128646e-08,-1.817022621453018108e-08,-1.884319755580907569e-08,-1.951616889708797031e-08,-2.018914023836686492e-08,-2.086211157964575954e-08,-2.153508292092465415e-08,-2.220805426220354877e-08,-2.288102560348244338e-08,-2.355399694476133800e-08,-2.422696828604023261e-08,-2.489993962731912723e-08,-2.557291096859802184e-08,-2.624588230987691646e-08,-2.691885365115581107e-08,-2.759182499243470569e-08,-2.826479633371360030e-08,-2.893776767499249492e-08,-2.961073901627138953e-08,-3.028371035755028415e-08,-3.095668169882917876e-08,-3.162965304010807338e-08,-3.230262438138696799e-08,-3.297559572266586261e-08,-3.364856706394475722e-08,-3.432153840522365184e-08,-3.499450974650254645e-08,-3.566748108778144107e-08,-3.634045242906033568e-08,-3.701342377033923030e-08,-3.768639511161812491e-08,-3.835936645289701953e-08,-3.903233779417591414e-08,-3.970530913545480876e-08,-4.037828047673370337e-08,-4.105125181801259799e-08,-4.172422315929149260e-08,-4.239719450057038722e-08 +0.000000000000000000e+00,-6.719993135764509150e-10,-1.343998627152901830e-09,-2.015997940729352848e-09,-2.687997254305804073e-09,-3.359996567882255299e-09,-4.031995881458706524e-09,-4.703995195035158163e-09,-5.375994508611609801e-09,-6.047993822188061440e-09,-6.719993135764513079e-09,-7.391992449340964718e-09,-8.063991762917416356e-09,-8.735991076493867995e-09,-9.407990390070319634e-09,-1.007998970364677127e-08,-1.075198901722322291e-08,-1.142398833079967455e-08,-1.209598764437612619e-08,-1.276798695795257783e-08,-1.343998627152902947e-08,-1.411198558510548111e-08,-1.478398489868193274e-08,-1.545598421225838438e-08,-1.612798352583483602e-08,-1.679998283941128766e-08,-1.747198215298773930e-08,-1.814398146656419094e-08,-1.881598078014064258e-08,-1.948798009371709422e-08,-2.015997940729354585e-08,-2.083197872086999749e-08,-2.150397803444644913e-08,-2.217597734802290077e-08,-2.284797666159935241e-08,-2.351997597517580405e-08,-2.419197528875225569e-08,-2.486397460232870733e-08,-2.553597391590515896e-08,-2.620797322948161060e-08,-2.687997254305806224e-08,-2.755197185663451388e-08,-2.822397117021096552e-08,-2.889597048378741716e-08,-2.956796979736386880e-08,-3.023996911094031713e-08,-3.091196842451676215e-08,-3.158396773809320717e-08,-3.225596705166965219e-08,-3.292796636524609721e-08,-3.359996567882254223e-08,-3.427196499239898725e-08,-3.494396430597543228e-08,-3.561596361955187730e-08,-3.628796293312832232e-08,-3.695996224670476734e-08,-3.763196156028121236e-08,-3.830396087385765738e-08,-3.897596018743410240e-08,-3.964795950101054742e-08,-4.031995881458699245e-08,-4.099195812816343747e-08,-4.166395744173988249e-08,-4.233595675531632751e-08 +0.000000000000000000e+00,-6.847263178637724821e-10,-1.369452635727544964e-09,-2.054178953591317653e-09,-2.738905271455090342e-09,-3.423631589318863031e-09,-4.108357907182635306e-09,-4.793084225046407581e-09,-5.477810542910179857e-09,-6.162536860773952132e-09,-6.847263178637724407e-09,-7.531989496501496683e-09,-8.216715814365268958e-09,-8.901442132229041233e-09,-9.586168450092813509e-09,-1.027089476795658578e-08,-1.095562108582035806e-08,-1.164034740368413033e-08,-1.232507372154790261e-08,-1.300980003941167489e-08,-1.369452635727544716e-08,-1.437925267513921944e-08,-1.506397899300299006e-08,-1.574870531086676233e-08,-1.643343162873053461e-08,-1.711815794659430688e-08,-1.780288426445807916e-08,-1.848761058232185143e-08,-1.917233690018562371e-08,-1.985706321804939598e-08,-2.054178953591316826e-08,-2.122651585377694053e-08,-2.191124217164071281e-08,-2.259596848950448509e-08,-2.328069480736825736e-08,-2.396542112523202964e-08,-2.465014744309580191e-08,-2.533487376095957419e-08,-2.601960007882334646e-08,-2.670432639668711874e-08,-2.738905271455089101e-08,-2.807377903241466329e-08,-2.875850535027843556e-08,-2.944323166814220784e-08,-3.012795798600598011e-08,-3.081268430386975239e-08,-3.149741062173352466e-08,-3.218213693959729694e-08,-3.286686325746106921e-08,-3.355158957532484149e-08,-3.423631589318861377e-08,-3.492104221105238604e-08,-3.560576852891615832e-08,-3.629049484677993059e-08,-3.697522116464370287e-08,-3.765994748250747514e-08,-3.834467380037124742e-08,-3.902940011823501969e-08,-3.971412643609879197e-08,-4.039885275396256424e-08,-4.108357907182633652e-08,-4.176830538969010879e-08,-4.245303170755388107e-08,-4.313775802541765334e-08 +0.000000000000000000e+00,6.847086146655782601e-10,1.369417229331156520e-09,2.054125843996734780e-09,2.738834458662313041e-09,3.423543073327891301e-09,4.108251687993469561e-09,4.792960302659047407e-09,5.477668917324625254e-09,6.162377531990203101e-09,6.847086146655780947e-09,7.531794761321358794e-09,8.216503375986937467e-09,8.901211990652516141e-09,9.585920605318094815e-09,1.027062921998367349e-08,1.095533783464925216e-08,1.164004644931483084e-08,1.232475506398040951e-08,1.300946367864598818e-08,1.369417229331156686e-08,1.437888090797714553e-08,1.506358952264272420e-08,1.574829813730830122e-08,1.643300675197387824e-08,1.711771536663945526e-08,1.780242398130503228e-08,1.848713259597060930e-08,1.917184121063618632e-08,1.985654982530176334e-08,2.054125843996734036e-08,2.122596705463291738e-08,2.191067566929849440e-08,2.259538428396407142e-08,2.328009289862964844e-08,2.396480151329522546e-08,2.464951012796080248e-08,2.533421874262637950e-08,2.601892735729195651e-08,2.670363597195753353e-08,2.738834458662311055e-08,2.807305320128868757e-08,2.875776181595426459e-08,2.944247043061984161e-08,3.012717904528541532e-08,3.081188765995098903e-08,3.149659627461656274e-08,3.218130488928213645e-08,3.286601350394771016e-08,3.355072211861328388e-08,3.423543073327885759e-08,3.492013934794443130e-08,3.560484796261000501e-08,3.628955657727557872e-08,3.697426519194115243e-08,3.765897380660672614e-08,3.834368242127229985e-08,3.902839103593787356e-08,3.971309965060344727e-08,4.039780826526902098e-08,4.108251687993459469e-08,4.176722549460016840e-08,4.245193410926574211e-08,4.313664272393131582e-08 +0.000000000000000000e+00,-7.221322648139370575e-20,-1.444264529627874115e-19,-2.166396794441811293e-19,-2.888529059255748712e-19,-3.610661324069686130e-19,-4.332793588883623549e-19,-5.054925853697561449e-19,-5.777058118511499349e-19,-6.499190383325437249e-19,-7.221322648139375149e-19,-7.943454912953313049e-19,-8.665587177767250949e-19,-9.387719442581188850e-19,-1.010985170739512675e-18,-1.083198397220906465e-18,-1.155411623702300255e-18,-1.227624850183694045e-18,-1.299838076665087835e-18,-1.372051303146481625e-18,-1.444264529627875415e-18,-1.516477756109269205e-18,-1.588690982590662995e-18,-1.660904209072056785e-18,-1.733117435553450575e-18,-1.805330662034844558e-18,-1.877543888516238540e-18,-1.949757114997632523e-18,-2.021970341479026505e-18,-2.094183567960420488e-18,-2.166396794441814471e-18,-2.238610020923208453e-18,-2.310823247404602436e-18,-2.383036473885996418e-18,-2.455249700367390401e-18,-2.527462926848784384e-18,-2.599676153330178366e-18,-2.671889379811572349e-18,-2.744102606292966332e-18,-2.816315832774360314e-18,-2.888529059255754297e-18,-2.960742285737148279e-18,-3.032955512218542262e-18,-3.105168738699936245e-18,-3.177381965181330227e-18,-3.249595191662724210e-18,-3.321808418144118192e-18,-3.394021644625512175e-18,-3.466234871106906158e-18,-3.538448097588300140e-18,-3.610661324069693738e-18,-3.682874550551087335e-18,-3.755087777032480932e-18,-3.827301003513874530e-18,-3.899514229995268127e-18,-3.971727456476661725e-18,-4.043940682958055322e-18,-4.116153909439448919e-18,-4.188367135920842517e-18,-4.260580362402236114e-18,-4.332793588883629712e-18,-4.405006815365023309e-18,-4.477220041846416907e-18,-4.549433268327810504e-18 +0.000000000000000000e+00,6.744393088873227830e-10,1.348878617774645566e-09,2.023317926661968142e-09,2.697757235549290719e-09,3.372196544436613295e-09,4.046635853323936285e-09,4.721075162211259274e-09,5.395514471098582264e-09,6.069953779985905254e-09,6.744393088873228244e-09,7.418832397760551234e-09,8.093271706647874224e-09,8.767711015535196386e-09,9.442150324422518549e-09,1.011658963330984071e-08,1.079102894219716287e-08,1.146546825108448504e-08,1.213990755997180720e-08,1.281434686885912936e-08,1.348878617774645152e-08,1.416322548663377369e-08,1.483766479552109585e-08,1.551210410440841801e-08,1.618654341329573852e-08,1.686098272218305903e-08,1.753542203107037954e-08,1.820986133995770005e-08,1.888430064884502055e-08,1.955873995773234106e-08,2.023317926661966157e-08,2.090761857550698208e-08,2.158205788439430259e-08,2.225649719328162310e-08,2.293093650216894360e-08,2.360537581105626411e-08,2.427981511994358462e-08,2.495425442883090513e-08,2.562869373771822564e-08,2.630313304660554615e-08,2.697757235549286665e-08,2.765201166438018716e-08,2.832645097326750767e-08,2.900089028215482818e-08,2.967532959104214869e-08,3.034976889992946919e-08,3.102420820881678970e-08,3.169864751770411021e-08,3.237308682659143072e-08,3.304752613547875123e-08,3.372196544436607174e-08,3.439640475325339224e-08,3.507084406214071275e-08,3.574528337102803326e-08,3.641972267991535377e-08,3.709416198880267428e-08,3.776860129768999479e-08,3.844304060657731529e-08,3.911747991546463580e-08,3.979191922435195631e-08,4.046635853323927682e-08,4.114079784212659733e-08,4.181523715101391784e-08,4.248967645990123834e-08 +0.000000000000000000e+00,7.013982617318742328e-10,1.402796523463748466e-09,2.104194785195622905e-09,2.805593046927497345e-09,3.506991308659371784e-09,4.208389570391245810e-09,4.909787832123119836e-09,5.611186093854993862e-09,6.312584355586867888e-09,7.013982617318741914e-09,7.715380879050615940e-09,8.416779140782489966e-09,9.118177402514363992e-09,9.819575664246238018e-09,1.052097392597811204e-08,1.122237218770998607e-08,1.192377044944186010e-08,1.262516871117373412e-08,1.332656697290560815e-08,1.402796523463748217e-08,1.472936349636935620e-08,1.543076175810123188e-08,1.613216001983310756e-08,1.683355828156498324e-08,1.753495654329685892e-08,1.823635480502873460e-08,1.893775306676061028e-08,1.963915132849248596e-08,2.034054959022436164e-08,2.104194785195623732e-08,2.174334611368811300e-08,2.244474437541998868e-08,2.314614263715186436e-08,2.384754089888374004e-08,2.454893916061561572e-08,2.525033742234749140e-08,2.595173568407936709e-08,2.665313394581124277e-08,2.735453220754311845e-08,2.805593046927499413e-08,2.875732873100686981e-08,2.945872699273874549e-08,3.016012525447061786e-08,3.086152351620249023e-08,3.156292177793436260e-08,3.226432003966623497e-08,3.296571830139810734e-08,3.366711656312997972e-08,3.436851482486185209e-08,3.506991308659372446e-08,3.577131134832559683e-08,3.647270961005746920e-08,3.717410787178934157e-08,3.787550613352121395e-08,3.857690439525308632e-08,3.927830265698495869e-08,3.997970091871683106e-08,4.068109918044870343e-08,4.138249744218057580e-08,4.208389570391244818e-08,4.278529396564432055e-08,4.348669222737619292e-08,4.418809048910806529e-08 +0.000000000000000000e+00,3.423184077256549763e-10,6.846368154513099527e-10,1.026955223176964929e-09,1.369273630902619905e-09,1.711592038628274882e-09,2.053910446353929858e-09,2.396228854079585041e-09,2.738547261805240224e-09,3.080865669530895407e-09,3.423184077256550590e-09,3.765502484982205774e-09,4.107820892707860543e-09,4.450139300433515313e-09,4.792457708159170082e-09,5.134776115884824852e-09,5.477094523610479621e-09,5.819412931336134391e-09,6.161731339061789160e-09,6.504049746787443930e-09,6.846368154513098699e-09,7.188686562238753469e-09,7.531004969964408239e-09,7.873323377690063008e-09,8.215641785415717778e-09,8.557960193141372547e-09,8.900278600867027317e-09,9.242597008592682086e-09,9.584915416318336856e-09,9.927233824043991625e-09,1.026955223176964639e-08,1.061187063949530116e-08,1.095418904722095593e-08,1.129650745494661070e-08,1.163882586267226547e-08,1.198114427039792024e-08,1.232346267812357501e-08,1.266578108584922978e-08,1.300809949357488455e-08,1.335041790130053932e-08,1.369273630902619409e-08,1.403505471675184886e-08,1.437737312447750363e-08,1.471969153220315840e-08,1.506200993992881317e-08,1.540432834765446794e-08,1.574664675538012271e-08,1.608896516310577748e-08,1.643128357083143225e-08,1.677360197855708702e-08,1.711592038628274179e-08,1.745823879400839656e-08,1.780055720173405132e-08,1.814287560945970609e-08,1.848519401718536086e-08,1.882751242491101563e-08,1.916983083263667040e-08,1.951214924036232517e-08,1.985446764808797994e-08,2.019678605581363471e-08,2.053910446353928948e-08,2.088142287126494425e-08,2.122374127899059902e-08,2.156605968671625379e-08 +0.000000000000000000e+00,-5.865937871240737640e-20,-1.173187574248147528e-19,-1.759781361372221412e-19,-2.346375148496295537e-19,-2.932968935620369663e-19,-3.519562722744443788e-19,-4.106156509868517913e-19,-4.692750296992592038e-19,-5.279344084116665681e-19,-5.865937871240739325e-19,-6.452531658364812969e-19,-7.039125445488886612e-19,-7.625719232612960256e-19,-8.212313019737033900e-19,-8.798906806861107543e-19,-9.385500593985182150e-19,-9.972094381109256756e-19,-1.055868816823333136e-18,-1.114528195535740597e-18,-1.173187574248148058e-18,-1.231846952960555518e-18,-1.290506331672962979e-18,-1.349165710385370440e-18,-1.407825089097777900e-18,-1.466484467810185361e-18,-1.525143846522592822e-18,-1.583803225235000282e-18,-1.642462603947407743e-18,-1.701121982659815204e-18,-1.759781361372222664e-18,-1.818440740084630125e-18,-1.877100118797037586e-18,-1.935759497509445046e-18,-1.994418876221852507e-18,-2.053078254934259967e-18,-2.111737633646667428e-18,-2.170397012359074889e-18,-2.229056391071482349e-18,-2.287715769783889810e-18,-2.346375148496297271e-18,-2.405034527208704731e-18,-2.463693905921112192e-18,-2.522353284633519653e-18,-2.581012663345927113e-18,-2.639672042058334574e-18,-2.698331420770742035e-18,-2.756990799483149495e-18,-2.815650178195556956e-18,-2.874309556907964417e-18,-2.932968935620371877e-18,-2.991628314332779338e-18,-3.050287693045186799e-18,-3.108947071757594259e-18,-3.167606450470001720e-18,-3.226265829182409181e-18,-3.284925207894816641e-18,-3.343584586607224102e-18,-3.402243965319631563e-18,-3.460903344032039023e-18,-3.519562722744446099e-18,-3.578222101456853174e-18,-3.636881480169260250e-18,-3.695540858881667325e-18 +0.000000000000000000e+00,-6.847086148099751472e-10,-1.369417229619950294e-09,-2.054125844429925545e-09,-2.738834459239901002e-09,-3.423543074049876460e-09,-4.108251688859851917e-09,-4.792960303669827374e-09,-5.477668918479802832e-09,-6.162377533289778289e-09,-6.847086148099753746e-09,-7.531794762909729204e-09,-8.216503377719705488e-09,-8.901211992529681773e-09,-9.585920607339658057e-09,-1.027062922214963434e-08,-1.095533783695961063e-08,-1.164004645176958691e-08,-1.232475506657956320e-08,-1.300946368138953948e-08,-1.369417229619951576e-08,-1.437888091100949205e-08,-1.506358952581946833e-08,-1.574829814062944462e-08,-1.643300675543942090e-08,-1.711771537024939719e-08,-1.780242398505937347e-08,-1.848713259986934976e-08,-1.917184121467932604e-08,-1.985654982948930233e-08,-2.054125844429927861e-08,-2.122596705910925489e-08,-2.191067567391923118e-08,-2.259538428872920746e-08,-2.328009290353918375e-08,-2.396480151834916003e-08,-2.464951013315913632e-08,-2.533421874796911260e-08,-2.601892736277908889e-08,-2.670363597758906517e-08,-2.738834459239904146e-08,-2.807305320720901774e-08,-2.875776182201899402e-08,-2.944247043682897031e-08,-3.012717905163894329e-08,-3.081188766644891626e-08,-3.149659628125888924e-08,-3.218130489606886221e-08,-3.286601351087883519e-08,-3.355072212568880816e-08,-3.423543074049878114e-08,-3.492013935530875412e-08,-3.560484797011872709e-08,-3.628955658492870007e-08,-3.697426519973867304e-08,-3.765897381454864602e-08,-3.834368242935861900e-08,-3.902839104416859197e-08,-3.971309965897856495e-08,-4.039780827378853792e-08,-4.108251688859851090e-08,-4.176722550340848387e-08,-4.245193411821845685e-08,-4.313664273302842983e-08 +0.000000000000000000e+00,-3.423184078700691825e-10,-6.846368157401383649e-10,-1.026955223610207599e-09,-1.369273631480276937e-09,-1.711592039350346274e-09,-2.053910447220415612e-09,-2.396228855090484949e-09,-2.738547262960554287e-09,-3.080865670830623624e-09,-3.423184078700692962e-09,-3.765502486570762299e-09,-4.107820894440832051e-09,-4.450139302310901802e-09,-4.792457710180971553e-09,-5.134776118051041304e-09,-5.477094525921111055e-09,-5.819412933791180806e-09,-6.161731341661250557e-09,-6.504049749531320309e-09,-6.846368157401390060e-09,-7.188686565271459811e-09,-7.531004973141529562e-09,-7.873323381011600140e-09,-8.215641788881670719e-09,-8.557960196751741297e-09,-8.900278604621811875e-09,-9.242597012491882454e-09,-9.584915420361953032e-09,-9.927233828232023610e-09,-1.026955223610209419e-08,-1.061187064397216477e-08,-1.095418905184223535e-08,-1.129650745971230592e-08,-1.163882586758237650e-08,-1.198114427545244708e-08,-1.232346268332251766e-08,-1.266578109119258824e-08,-1.300809949906265882e-08,-1.335041790693272939e-08,-1.369273631480279997e-08,-1.403505472267287055e-08,-1.437737313054294113e-08,-1.471969153841301171e-08,-1.506200994628308229e-08,-1.540432835415315286e-08,-1.574664676202322344e-08,-1.608896516989329402e-08,-1.643128357776336460e-08,-1.677360198563343518e-08,-1.711592039350350575e-08,-1.745823880137357633e-08,-1.780055720924364691e-08,-1.814287561711371749e-08,-1.848519402498378807e-08,-1.882751243285385865e-08,-1.916983084072392922e-08,-1.951214924859399980e-08,-1.985446765646407038e-08,-2.019678606433414096e-08,-2.053910447220421154e-08,-2.088142288007428212e-08,-2.122374128794435269e-08,-2.156605969581442327e-08 +0.000000000000000000e+00,-6.744393090329751234e-10,-1.348878618065950247e-09,-2.023317927098925474e-09,-2.697757236131900907e-09,-3.372196545164876341e-09,-4.046635854197851775e-09,-4.721075163230827208e-09,-5.395514472263802642e-09,-6.069953781296778075e-09,-6.744393090329753509e-09,-7.418832399362728943e-09,-8.093271708395705203e-09,-8.767711017428682291e-09,-9.442150326461659379e-09,-1.011658963549463647e-08,-1.079102894452761356e-08,-1.146546825356059064e-08,-1.213990756259356773e-08,-1.281434687162654482e-08,-1.348878618065952191e-08,-1.416322548969249900e-08,-1.483766479872547608e-08,-1.551210410775845317e-08,-1.618654341679143026e-08,-1.686098272582440735e-08,-1.753542203485738444e-08,-1.820986134389036152e-08,-1.888430065292333861e-08,-1.955873996195631570e-08,-2.023317927098929279e-08,-2.090761858002226988e-08,-2.158205788905524696e-08,-2.225649719808822405e-08,-2.293093650712120114e-08,-2.360537581615417823e-08,-2.427981512518715532e-08,-2.495425443422013240e-08,-2.562869374325310949e-08,-2.630313305228608658e-08,-2.697757236131906367e-08,-2.765201167035204076e-08,-2.832645097938501784e-08,-2.900089028841799493e-08,-2.967532959745097202e-08,-3.034976890648394911e-08,-3.102420821551692619e-08,-3.169864752454990328e-08,-3.237308683358288037e-08,-3.304752614261585746e-08,-3.372196545164883455e-08,-3.439640476068181163e-08,-3.507084406971478872e-08,-3.574528337874776581e-08,-3.641972268778074290e-08,-3.709416199681371999e-08,-3.776860130584669707e-08,-3.844304061487967416e-08,-3.911747992391265125e-08,-3.979191923294562834e-08,-4.046635854197860543e-08,-4.114079785101158251e-08,-4.181523716004455960e-08,-4.248967646907753669e-08 +0.000000000000000000e+00,-7.013982618491713388e-10,-1.402796523698342678e-09,-2.104194785547513809e-09,-2.805593047396684941e-09,-3.506991309245856073e-09,-4.208389571095027619e-09,-4.909787832944199165e-09,-5.611186094793370710e-09,-6.312584356642542256e-09,-7.013982618491713801e-09,-7.715380880340885347e-09,-8.416779142190056892e-09,-9.118177404039228438e-09,-9.819575665888399983e-09,-1.052097392773757153e-08,-1.122237218958674307e-08,-1.192377045143591462e-08,-1.262516871328508617e-08,-1.332656697513425771e-08,-1.402796523698342926e-08,-1.472936349883260080e-08,-1.543076176068177069e-08,-1.613216002253094058e-08,-1.683355828438011048e-08,-1.753495654622928037e-08,-1.823635480807845026e-08,-1.893775306992762015e-08,-1.963915133177679004e-08,-2.034054959362595993e-08,-2.104194785547512982e-08,-2.174334611732429971e-08,-2.244474437917346961e-08,-2.314614264102263950e-08,-2.384754090287180939e-08,-2.454893916472097928e-08,-2.525033742657014917e-08,-2.595173568841931906e-08,-2.665313395026848895e-08,-2.735453221211765884e-08,-2.805593047396682873e-08,-2.875732873581599863e-08,-2.945872699766516852e-08,-3.016012525951434172e-08,-3.086152352136351492e-08,-3.156292178321268812e-08,-3.226432004506186132e-08,-3.296571830691103452e-08,-3.366711656876020772e-08,-3.436851483060938092e-08,-3.506991309245855412e-08,-3.577131135430772732e-08,-3.647270961615690052e-08,-3.717410787800607372e-08,-3.787550613985524692e-08,-3.857690440170442012e-08,-3.927830266355359332e-08,-3.997970092540276652e-08,-4.068109918725193972e-08,-4.138249744910111292e-08,-4.208389571095028612e-08,-4.278529397279945932e-08,-4.348669223464863252e-08,-4.418809049649780572e-08 +0.000000000000000000e+00,1.320650879397228499e-09,2.641301758794456999e-09,3.961952638191685705e-09,5.282603517588914825e-09,6.603254396986143944e-09,7.923905276383373064e-09,9.244556155780602184e-09,1.056520703517783130e-08,1.188585791457506042e-08,1.320650879397228954e-08,1.452715967336951866e-08,1.584781055276674944e-08,1.716846143216398187e-08,1.848911231156121429e-08,1.980976319095844672e-08,2.113041407035567915e-08,2.245106494975291158e-08,2.377171582915014401e-08,2.509236670854737644e-08,2.641301758794460886e-08,2.773366846734184129e-08,2.905431934673907372e-08,3.037497022613630615e-08,3.169562110553353858e-08,3.301627198493077101e-08,3.433692286432800344e-08,3.565757374372523586e-08,3.697822462312246829e-08,3.829887550251970072e-08,3.961952638191693315e-08,4.094017726131416558e-08,4.226082814071139801e-08,4.358147902010863043e-08,4.490212989950586286e-08,4.622278077890309529e-08,4.754343165830032772e-08,4.886408253769756015e-08,5.018473341709479258e-08,5.150538429649202501e-08,5.282603517588925743e-08,5.414668605528648986e-08,5.546733693468372229e-08,5.678798781408095472e-08,5.810863869347818715e-08,5.942928957287541958e-08,6.074994045227265200e-08,6.207059133166988443e-08,6.339124221106711686e-08,6.471189309046434929e-08,6.603254396986158172e-08,6.735319484925881415e-08,6.867384572865604658e-08,6.999449660805327900e-08,7.131514748745051143e-08,7.263579836684774386e-08,7.395644924624497629e-08,7.527710012564220872e-08,7.659775100503944115e-08,7.791840188443667358e-08,7.923905276383390600e-08,8.055970364323113843e-08,8.188035452262837086e-08,8.320100540202560329e-08 +0.000000000000000000e+00,2.020301155422367126e-09,4.040602310844734251e-09,6.060903466267100963e-09,8.081204621689466848e-09,1.010150577711183273e-08,1.212180693253419862e-08,1.414210808795656450e-08,1.616240924337893039e-08,1.818271039880129462e-08,2.020301155422365885e-08,2.222331270964602308e-08,2.424361386506838731e-08,2.626391502049075154e-08,2.828421617591311577e-08,3.030451733133548000e-08,3.232481848675784092e-08,3.434511964218020184e-08,3.636542079760256277e-08,3.838572195302492369e-08,4.040602310844728461e-08,4.242632426386964553e-08,4.444662541929200645e-08,4.646692657471436737e-08,4.848722773013672830e-08,5.050752888555908922e-08,5.252783004098145014e-08,5.454813119640381106e-08,5.656843235182617198e-08,5.858873350724853290e-08,6.060903466267089383e-08,6.262933581809325475e-08,6.464963697351561567e-08,6.666993812893797659e-08,6.869023928436033751e-08,7.071054043978269843e-08,7.273084159520505936e-08,7.475114275062742028e-08,7.677144390604978120e-08,7.879174506147214212e-08,8.081204621689450304e-08,8.283234737231686396e-08,8.485264852773922489e-08,8.687294968316158581e-08,8.889325083858394673e-08,9.091355199400630765e-08,9.293385314942866857e-08,9.495415430485102949e-08,9.697445546027339042e-08,9.899475661569575134e-08,1.010150577711181123e-07,1.030353589265404732e-07,1.050556600819628341e-07,1.070759612373851950e-07,1.090962623928075559e-07,1.111165635482299169e-07,1.131368647036522778e-07,1.151571658590746387e-07,1.171774670144969996e-07,1.191977681699193606e-07,1.212180693253417082e-07,1.232383704807640427e-07,1.252586716361863771e-07,1.272789727916087116e-07 +0.000000000000000000e+00,-7.722683964946978095e-20,-1.544536792989395619e-19,-2.316805189484093549e-19,-3.089073585978791719e-19,-3.861341982473489890e-19,-4.633610378968188061e-19,-5.405878775462886231e-19,-6.178147171957584402e-19,-6.950415568452282573e-19,-7.722683964946980743e-19,-8.494952361441678914e-19,-9.267220757936378047e-19,-1.003948915443107814e-18,-1.081175755092577824e-18,-1.158402594742047834e-18,-1.235629434391517843e-18,-1.312856274040987853e-18,-1.390083113690457863e-18,-1.467309953339927872e-18,-1.544536792989397882e-18,-1.621763632638867892e-18,-1.698990472288337901e-18,-1.776217311937807911e-18,-1.853444151587277921e-18,-1.930670991236747930e-18,-2.007897830886217940e-18,-2.085124670535687950e-18,-2.162351510185157959e-18,-2.239578349834627969e-18,-2.316805189484097979e-18,-2.394032029133567988e-18,-2.471258868783037998e-18,-2.548485708432508007e-18,-2.625712548081978017e-18,-2.702939387731448027e-18,-2.780166227380918036e-18,-2.857393067030388046e-18,-2.934619906679858056e-18,-3.011846746329328065e-18,-3.089073585978798075e-18,-3.166300425628268085e-18,-3.243527265277738094e-18,-3.320754104927208104e-18,-3.397980944576678114e-18,-3.475207784226148123e-18,-3.552434623875618133e-18,-3.629661463525088143e-18,-3.706888303174558152e-18,-3.784115142824028162e-18,-3.861341982473498172e-18,-3.938568822122968181e-18,-4.015795661772438191e-18,-4.093022501421908201e-18,-4.170249341071378210e-18,-4.247476180720848220e-18,-4.324703020370318230e-18,-4.401929860019788239e-18,-4.479156699669258249e-18,-4.556383539318728258e-18,-4.633610378968198268e-18,-4.710837218617668278e-18,-4.788064058267138287e-18,-4.865290897916608297e-18 +0.000000000000000000e+00,1.503191764386181901e-09,3.006383528772363801e-09,4.509575293158545288e-09,6.012767057544726775e-09,7.515958821930908262e-09,9.019150586317090576e-09,1.052234235070327289e-08,1.202553411508945520e-08,1.352872587947563752e-08,1.503191764386181983e-08,1.653510940824800380e-08,1.803830117263418777e-08,1.954149293702037174e-08,2.104468470140655571e-08,2.254787646579273968e-08,2.405106823017892364e-08,2.555425999456510761e-08,2.705745175895129158e-08,2.856064352333747555e-08,3.006383528772365952e-08,3.156702705210984349e-08,3.307021881649602746e-08,3.457341058088221142e-08,3.607660234526839539e-08,3.757979410965457936e-08,3.908298587404076333e-08,4.058617763842694730e-08,4.208936940281313127e-08,4.359256116719931523e-08,4.509575293158549920e-08,4.659894469597168317e-08,4.810213646035786714e-08,4.960532822474405111e-08,5.110851998913023508e-08,5.261171175351641905e-08,5.411490351790260301e-08,5.561809528228878698e-08,5.712128704667497095e-08,5.862447881106115492e-08,6.012767057544733227e-08,6.163086233983351624e-08,6.313405410421970021e-08,6.463724586860588418e-08,6.614043763299206815e-08,6.764362939737825211e-08,6.914682116176443608e-08,7.065001292615062005e-08,7.215320469053680402e-08,7.365639645492298799e-08,7.515958821930917196e-08,7.666277998369535592e-08,7.816597174808153989e-08,7.966916351246772386e-08,8.117235527685390783e-08,8.267554704124009180e-08,8.417873880562627577e-08,8.568193057001245974e-08,8.718512233439864370e-08,8.868831409878482767e-08,9.019150586317101164e-08,9.169469762755719561e-08,9.319788939194337958e-08,9.470108115632956355e-08 +0.000000000000000000e+00,1.881490556341160013e-09,3.762981112682320026e-09,5.644471669023479625e-09,7.525962225364638398e-09,9.407452781705797170e-09,1.128894333804695594e-08,1.317043389438811471e-08,1.505192445072927349e-08,1.693341500707043226e-08,1.881490556341159103e-08,2.069639611975274980e-08,2.257788667609390858e-08,2.445937723243506735e-08,2.634086778877622612e-08,2.822235834511738489e-08,3.010384890145854036e-08,3.198533945779969913e-08,3.386683001414085790e-08,3.574832057048201667e-08,3.762981112682317544e-08,3.951130168316433422e-08,4.139279223950549299e-08,4.327428279584665176e-08,4.515577335218781053e-08,4.703726390852896931e-08,4.891875446487012808e-08,5.080024502121128685e-08,5.268173557755244562e-08,5.456322613389360439e-08,5.644471669023476317e-08,5.832620724657592194e-08,6.020769780291708071e-08,6.208918835925823948e-08,6.397067891559939826e-08,6.585216947194055703e-08,6.773366002828171580e-08,6.961515058462287457e-08,7.149664114096403335e-08,7.337813169730519212e-08,7.525962225364635089e-08,7.714111280998750966e-08,7.902260336632866843e-08,8.090409392266982721e-08,8.278558447901098598e-08,8.466707503535214475e-08,8.654856559169330352e-08,8.843005614803446230e-08,9.031154670437562107e-08,9.219303726071677984e-08,9.407452781705793861e-08,9.595601837339909738e-08,9.783750892974025616e-08,9.971899948608141493e-08,1.016004900424225737e-07,1.034819805987637325e-07,1.053634711551048912e-07,1.072449617114460500e-07,1.091264522677872088e-07,1.110079428241283676e-07,1.128894333804695263e-07,1.147709239368106851e-07,1.166524144931518439e-07,1.185339050494930027e-07 +0.000000000000000000e+00,1.225454277027416435e-09,2.450908554054832870e-09,3.676362831082249512e-09,4.901817108109666567e-09,6.127271385137083622e-09,7.352725662164500678e-09,8.578179939191918560e-09,9.803634216219336443e-09,1.102908849324675433e-08,1.225454277027417221e-08,1.347999704730159009e-08,1.470545132432900797e-08,1.593090560135642586e-08,1.715635987838384374e-08,1.838181415541126162e-08,1.960726843243867950e-08,2.083272270946609739e-08,2.205817698649351527e-08,2.328363126352093315e-08,2.450908554054835103e-08,2.573453981757576892e-08,2.695999409460318680e-08,2.818544837163060468e-08,2.941090264865802256e-08,3.063635692568544045e-08,3.186181120271285833e-08,3.308726547974027621e-08,3.431271975676769409e-08,3.553817403379511198e-08,3.676362831082252986e-08,3.798908258784994774e-08,3.921453686487736562e-08,4.043999114190478351e-08,4.166544541893220139e-08,4.289089969595961927e-08,4.411635397298703715e-08,4.534180825001445504e-08,4.656726252704187292e-08,4.779271680406929080e-08,4.901817108109670868e-08,5.024362535812412657e-08,5.146907963515154445e-08,5.269453391217896233e-08,5.391998818920638021e-08,5.514544246623379810e-08,5.637089674326121598e-08,5.759635102028863386e-08,5.882180529731605174e-08,6.004725957434346963e-08,6.127271385137088089e-08,6.249816812839829216e-08,6.372362240542570342e-08,6.494907668245311469e-08,6.617453095948052595e-08,6.739998523650793722e-08,6.862543951353534848e-08,6.985089379056275975e-08,7.107634806759017101e-08,7.230180234461758228e-08,7.352725662164499354e-08,7.475271089867240481e-08,7.597816517569981607e-08,7.720361945272722734e-08 +0.000000000000000000e+00,1.008889337787322027e-09,2.017778675574644053e-09,3.026668013361965873e-09,4.035557351149287280e-09,5.044446688936608686e-09,6.053336026723930092e-09,7.062225364511251499e-09,8.071114702298572905e-09,9.080004040085894311e-09,1.008889337787321572e-08,1.109778271566053712e-08,1.210667205344785853e-08,1.311556139123517994e-08,1.412445072902250134e-08,1.513334006680982275e-08,1.614222940459714250e-08,1.715111874238446225e-08,1.816000808017178200e-08,1.916889741795910176e-08,2.017778675574642151e-08,2.118667609353374126e-08,2.219556543132106101e-08,2.320445476910838076e-08,2.421334410689570052e-08,2.522223344468302027e-08,2.623112278247034002e-08,2.724001212025765977e-08,2.824890145804497952e-08,2.925779079583229928e-08,3.026668013361961903e-08,3.127556947140694209e-08,3.228445880919426515e-08,3.329334814698158821e-08,3.430223748476891127e-08,3.531112682255623433e-08,3.632001616034355739e-08,3.732890549813088045e-08,3.833779483591820351e-08,3.934668417370552657e-08,4.035557351149284964e-08,4.136446284928017270e-08,4.237335218706749576e-08,4.338224152485481882e-08,4.439113086264214188e-08,4.540002020042946494e-08,4.640890953821678800e-08,4.741779887600411106e-08,4.842668821379143412e-08,4.943557755157875718e-08,5.044446688936608024e-08,5.145335622715340330e-08,5.246224556494072636e-08,5.347113490272804942e-08,5.448002424051537248e-08,5.548891357830269555e-08,5.649780291609001861e-08,5.750669225387734167e-08,5.851558159166466473e-08,5.952447092945198779e-08,6.053336026723930423e-08,6.154224960502662067e-08,6.255113894281393712e-08,6.356002828060125356e-08 +0.000000000000000000e+00,-7.440278891157789525e-20,-1.488055778231557905e-19,-2.232083667347336978e-19,-2.976111556463116292e-19,-3.720139445578895605e-19,-4.464167334694674919e-19,-5.208195223810454233e-19,-5.952223112926233546e-19,-6.696251002042012860e-19,-7.440278891157792174e-19,-8.184306780273571487e-19,-8.928334669389351764e-19,-9.672362558505131077e-19,-1.041639044762091039e-18,-1.116041833673668970e-18,-1.190444622585246902e-18,-1.264847411496824833e-18,-1.339250200408402765e-18,-1.413652989319980696e-18,-1.488055778231558627e-18,-1.562458567143136559e-18,-1.636861356054714490e-18,-1.711264144966292421e-18,-1.785666933877870353e-18,-1.860069722789448284e-18,-1.934472511701026215e-18,-2.008875300612604147e-18,-2.083278089524182078e-18,-2.157680878435760010e-18,-2.232083667347337941e-18,-2.306486456258915872e-18,-2.380889245170493804e-18,-2.455292034082071735e-18,-2.529694822993649666e-18,-2.604097611905227598e-18,-2.678500400816805529e-18,-2.752903189728383461e-18,-2.827305978639961392e-18,-2.901708767551539323e-18,-2.976111556463117255e-18,-3.050514345374695186e-18,-3.124917134286273117e-18,-3.199319923197851049e-18,-3.273722712109428980e-18,-3.348125501021006911e-18,-3.422528289932584843e-18,-3.496931078844162774e-18,-3.571333867755740706e-18,-3.645736656667318637e-18,-3.720139445578896568e-18,-3.794542234490474500e-18,-3.868945023402052431e-18,-3.943347812313630362e-18,-4.017750601225208294e-18,-4.092153390136786225e-18,-4.166556179048364156e-18,-4.240958967959942088e-18,-4.315361756871520019e-18,-4.389764545783097951e-18,-4.464167334694675882e-18,-4.538570123606253813e-18,-4.612972912517831745e-18,-4.687375701429409676e-18 +0.000000000000000000e+00,-1.320650879555831076e-09,-2.641301759111662152e-09,-3.961952638667493228e-09,-5.282603518223324304e-09,-6.603254397779155380e-09,-7.923905277334986456e-09,-9.244556156890817532e-09,-1.056520703644664861e-08,-1.188585791600247968e-08,-1.320650879555831076e-08,-1.452715967511414184e-08,-1.584781055466997291e-08,-1.716846143422580564e-08,-1.848911231378163837e-08,-1.980976319333747110e-08,-2.113041407289330383e-08,-2.245106495244913656e-08,-2.377171583200496929e-08,-2.509236671156080203e-08,-2.641301759111663476e-08,-2.773366847067246749e-08,-2.905431935022830022e-08,-3.037497022978413295e-08,-3.169562110933996568e-08,-3.301627198889579841e-08,-3.433692286845163114e-08,-3.565757374800746387e-08,-3.697822462756329660e-08,-3.829887550711912933e-08,-3.961952638667496206e-08,-4.094017726623079479e-08,-4.226082814578662752e-08,-4.358147902534246025e-08,-4.490212990489829298e-08,-4.622278078445412571e-08,-4.754343166400995844e-08,-4.886408254356579117e-08,-5.018473342312162390e-08,-5.150538430267745663e-08,-5.282603518223328936e-08,-5.414668606178912209e-08,-5.546733694134495482e-08,-5.678798782090078755e-08,-5.810863870045662029e-08,-5.942928958001245302e-08,-6.074994045956829236e-08,-6.207059133912413171e-08,-6.339124221867997106e-08,-6.471189309823581041e-08,-6.603254397779164975e-08,-6.735319485734748910e-08,-6.867384573690332845e-08,-6.999449661645916780e-08,-7.131514749601500715e-08,-7.263579837557084649e-08,-7.395644925512668584e-08,-7.527710013468252519e-08,-7.659775101423836454e-08,-7.791840189379420389e-08,-7.923905277335004323e-08,-8.055970365290588258e-08,-8.188035453246172193e-08,-8.320100541201756128e-08 +0.000000000000000000e+00,-2.020301155576606945e-09,-4.040602311153213890e-09,-6.060903466729820835e-09,-8.081204622306427780e-09,-1.010150577788303472e-08,-1.212180693345964167e-08,-1.414210808903624861e-08,-1.616240924461285556e-08,-1.818271040018946250e-08,-2.020301155576606945e-08,-2.222331271134267639e-08,-2.424361386691928334e-08,-2.626391502249589028e-08,-2.828421617807249723e-08,-3.030451733364910417e-08,-3.232481848922571112e-08,-3.434511964480231806e-08,-3.636542080037892501e-08,-3.838572195595553195e-08,-4.040602311153213890e-08,-4.242632426710874584e-08,-4.444662542268535279e-08,-4.646692657826195973e-08,-4.848722773383856668e-08,-5.050752888941517362e-08,-5.252783004499178057e-08,-5.454813120056838751e-08,-5.656843235614499446e-08,-5.858873351172160140e-08,-6.060903466729820835e-08,-6.262933582287482191e-08,-6.464963697845143547e-08,-6.666993813402804903e-08,-6.869023928960466260e-08,-7.071054044518127616e-08,-7.273084160075788972e-08,-7.475114275633450328e-08,-7.677144391191111685e-08,-7.879174506748773041e-08,-8.081204622306434397e-08,-8.283234737864095753e-08,-8.485264853421757109e-08,-8.687294968979418466e-08,-8.889325084537079822e-08,-9.091355200094741178e-08,-9.293385315652402534e-08,-9.495415431210063891e-08,-9.697445546767725247e-08,-9.899475662325386603e-08,-1.010150577788304796e-07,-1.030353589344070932e-07,-1.050556600899837067e-07,-1.070759612455603203e-07,-1.090962624011369338e-07,-1.111165635567135474e-07,-1.131368647122901610e-07,-1.151571658678667745e-07,-1.171774670234433881e-07,-1.191977681790200017e-07,-1.212180693345966020e-07,-1.232383704901732023e-07,-1.252586716457498026e-07,-1.272789728013264030e-07 +0.000000000000000000e+00,-1.008889337941703501e-09,-2.017778675883407001e-09,-3.026668013825110502e-09,-4.035557351766814003e-09,-5.044446689708517090e-09,-6.053336027650220177e-09,-7.062225365591923264e-09,-8.071114703533626351e-09,-9.080004041475329438e-09,-1.008889337941703253e-08,-1.109778271735873561e-08,-1.210667205530043870e-08,-1.311556139324214179e-08,-1.412445073118384487e-08,-1.513334006912554796e-08,-1.614222940706724939e-08,-1.715111874500895083e-08,-1.816000808295065226e-08,-1.916889742089235369e-08,-2.017778675883405512e-08,-2.118667609677575656e-08,-2.219556543471745799e-08,-2.320445477265915942e-08,-2.421334411060086086e-08,-2.522223344854256229e-08,-2.623112278648426372e-08,-2.724001212442596515e-08,-2.824890146236766659e-08,-2.925779080030936802e-08,-3.026668013825106945e-08,-3.127556947619277089e-08,-3.228445881413447232e-08,-3.329334815207617375e-08,-3.430223749001787518e-08,-3.531112682795957662e-08,-3.632001616590127805e-08,-3.732890550384297948e-08,-3.833779484178468091e-08,-3.934668417972638235e-08,-4.035557351766808378e-08,-4.136446285560978521e-08,-4.237335219355148665e-08,-4.338224153149318808e-08,-4.439113086943488951e-08,-4.540002020737659094e-08,-4.640890954531829238e-08,-4.741779888325999381e-08,-4.842668822120169524e-08,-4.943557755914339667e-08,-5.044446689708509811e-08,-5.145335623502679954e-08,-5.246224557296850097e-08,-5.347113491091020241e-08,-5.448002424885190384e-08,-5.548891358679360527e-08,-5.649780292473530670e-08,-5.750669226267700814e-08,-5.851558160061870957e-08,-5.952447093856041100e-08,-6.053336027650211244e-08,-6.154224961444381387e-08,-6.255113895238551530e-08,-6.356002829032721673e-08 +0.000000000000000000e+00,-1.503191764542536821e-09,-3.006383529085073641e-09,-4.509575293627610462e-09,-6.012767058170147283e-09,-7.515958822712684931e-09,-9.019150587255222579e-09,-1.052234235179776023e-08,-1.202553411634029787e-08,-1.352872588088283552e-08,-1.503191764542537317e-08,-1.653510940996791082e-08,-1.803830117451044847e-08,-1.954149293905298611e-08,-2.104468470359552376e-08,-2.254787646813806141e-08,-2.405106823268059906e-08,-2.555425999722313671e-08,-2.705745176176567435e-08,-2.856064352630821200e-08,-3.006383529085075296e-08,-3.156702705539329391e-08,-3.307021881993583487e-08,-3.457341058447837583e-08,-3.607660234902091678e-08,-3.757979411356345774e-08,-3.908298587810599870e-08,-4.058617764264853965e-08,-4.208936940719108061e-08,-4.359256117173362157e-08,-4.509575293627616252e-08,-4.659894470081870348e-08,-4.810213646536124444e-08,-4.960532822990378539e-08,-5.110851999444632635e-08,-5.261171175898886731e-08,-5.411490352353140826e-08,-5.561809528807394922e-08,-5.712128705261649018e-08,-5.862447881715903113e-08,-6.012767058170157209e-08,-6.163086234624411305e-08,-6.313405411078665400e-08,-6.463724587532919496e-08,-6.614043763987173592e-08,-6.764362940441427687e-08,-6.914682116895681783e-08,-7.065001293349935879e-08,-7.215320469804189974e-08,-7.365639646258444070e-08,-7.515958822712698166e-08,-7.666277999166952261e-08,-7.816597175621206357e-08,-7.966916352075460453e-08,-8.117235528529714548e-08,-8.267554704983968644e-08,-8.417873881438222740e-08,-8.568193057892476835e-08,-8.718512234346730931e-08,-8.868831410800985027e-08,-9.019150587255239122e-08,-9.169469763709493218e-08,-9.319788940163747314e-08,-9.470108116618001409e-08 +0.000000000000000000e+00,-1.881490556489800647e-09,-3.762981112979601294e-09,-5.644471669469401940e-09,-7.525962225959202587e-09,-9.407452782449002407e-09,-1.128894333893880223e-08,-1.317043389542860205e-08,-1.505192445191840187e-08,-1.693341500840820169e-08,-1.881490556489800150e-08,-2.069639612138780132e-08,-2.257788667787760114e-08,-2.445937723436740096e-08,-2.634086779085720078e-08,-2.822235834734700060e-08,-3.010384890383679711e-08,-3.198533946032659693e-08,-3.386683001681639675e-08,-3.574832057330619657e-08,-3.762981112979599639e-08,-3.951130168628579621e-08,-4.139279224277559603e-08,-4.327428279926539585e-08,-4.515577335575519567e-08,-4.703726391224499549e-08,-4.891875446873479531e-08,-5.080024502522459513e-08,-5.268173558171439495e-08,-5.456322613820419477e-08,-5.644471669469399459e-08,-5.832620725118379441e-08,-6.020769780767359423e-08,-6.208918836416339405e-08,-6.397067892065319387e-08,-6.585216947714299369e-08,-6.773366003363279351e-08,-6.961515059012259332e-08,-7.149664114661239314e-08,-7.337813170310219296e-08,-7.525962225959199278e-08,-7.714111281608179260e-08,-7.902260337257159242e-08,-8.090409392906139224e-08,-8.278558448555119206e-08,-8.466707504204099188e-08,-8.654856559853079170e-08,-8.843005615502059152e-08,-9.031154671151039134e-08,-9.219303726800019116e-08,-9.407452782448999098e-08,-9.595601838097979080e-08,-9.783750893746959062e-08,-9.971899949395939044e-08,-1.016004900504491903e-07,-1.034819806069389901e-07,-1.053634711634287899e-07,-1.072449617199185897e-07,-1.091264522764083895e-07,-1.110079428328981894e-07,-1.128894333893879892e-07,-1.147709239458777890e-07,-1.166524145023675888e-07,-1.185339050588573886e-07 +0.000000000000000000e+00,-1.225454277179023338e-09,-2.450908554358046677e-09,-3.676362831537069808e-09,-4.901817108716092526e-09,-6.127271385895115244e-09,-7.352725663074137962e-09,-8.578179940253161508e-09,-9.803634217432185053e-09,-1.102908849461120860e-08,-1.225454277179023214e-08,-1.347999704896925569e-08,-1.470545132614827923e-08,-1.593090560332730278e-08,-1.715635988050632632e-08,-1.838181415768534987e-08,-1.960726843486437341e-08,-2.083272271204339696e-08,-2.205817698922242050e-08,-2.328363126640144405e-08,-2.450908554358046759e-08,-2.573453982075949114e-08,-2.695999409793851469e-08,-2.818544837511753823e-08,-2.941090265229656178e-08,-3.063635692947558201e-08,-3.186181120665459894e-08,-3.308726548383361587e-08,-3.431271976101263280e-08,-3.553817403819164972e-08,-3.676362831537066665e-08,-3.798908259254968358e-08,-3.921453686972870051e-08,-4.043999114690771743e-08,-4.166544542408673436e-08,-4.289089970126575129e-08,-4.411635397844476822e-08,-4.534180825562378514e-08,-4.656726253280280207e-08,-4.779271680998181900e-08,-4.901817108716083593e-08,-5.024362536433985286e-08,-5.146907964151886978e-08,-5.269453391869788671e-08,-5.391998819587690364e-08,-5.514544247305592057e-08,-5.637089675023493749e-08,-5.759635102741395442e-08,-5.882180530459297135e-08,-6.004725958177198828e-08,-6.127271385895100521e-08,-6.249816813613002213e-08,-6.372362241330903906e-08,-6.494907669048805599e-08,-6.617453096766707292e-08,-6.739998524484608984e-08,-6.862543952202510677e-08,-6.985089379920412370e-08,-7.107634807638314063e-08,-7.230180235356215756e-08,-7.352725663074117448e-08,-7.475271090792019141e-08,-7.597816518509920834e-08,-7.720361946227822527e-08 +0.000000000000000000e+00,1.020128717904546324e-09,2.040257435809092647e-09,3.060386153713638971e-09,4.080514871618185294e-09,5.100643589522731204e-09,6.120772307427277114e-09,7.140901025331823024e-09,8.161029743236368934e-09,9.181158461140914844e-09,1.020128717904546075e-08,1.122141589695000666e-08,1.224154461485455257e-08,1.326167333275909848e-08,1.428180205066364439e-08,1.530193076856819030e-08,1.632205948647273456e-08,1.734218820437727881e-08,1.836231692228182307e-08,1.938244564018636733e-08,2.040257435809091158e-08,2.142270307599545584e-08,2.244283179390000009e-08,2.346296051180454435e-08,2.448308922970908860e-08,2.550321794761363286e-08,2.652334666551817712e-08,2.754347538342272137e-08,2.856360410132726563e-08,2.958373281923180988e-08,3.060386153713635414e-08,3.162399025504090170e-08,3.264411897294544927e-08,3.366424769084999683e-08,3.468437640875454439e-08,3.570450512665909196e-08,3.672463384456363952e-08,3.774476256246818709e-08,3.876489128037273465e-08,3.978501999827728222e-08,4.080514871618182978e-08,4.182527743408637735e-08,4.284540615199092491e-08,4.386553486989547247e-08,4.488566358780002004e-08,4.590579230570456760e-08,4.692592102360911517e-08,4.794604974151366273e-08,4.896617845941821030e-08,4.998630717732275786e-08,5.100643589522730542e-08,5.202656461313185299e-08,5.304669333103640055e-08,5.406682204894094812e-08,5.508695076684549568e-08,5.610707948475004325e-08,5.712720820265459081e-08,5.814733692055913837e-08,5.916746563846368594e-08,6.018759435636823350e-08,6.120772307427277445e-08,6.222785179217731540e-08,6.324798051008185634e-08,6.426810922798639729e-08 +0.000000000000000000e+00,1.128184102924845289e-09,2.256368205849690577e-09,3.384552308774535659e-09,4.512736411699380327e-09,5.640920514624224995e-09,6.769104617549069663e-09,7.897288720473913504e-09,9.025472823398757345e-09,1.015365692632360119e-08,1.128184102924844503e-08,1.241002513217328887e-08,1.353820923509813271e-08,1.466639333802297655e-08,1.579457744094782039e-08,1.692276154387266423e-08,1.805094564679750807e-08,1.917912974972235191e-08,2.030731385264719576e-08,2.143549795557203960e-08,2.256368205849688344e-08,2.369186616142172728e-08,2.482005026434657112e-08,2.594823436727141496e-08,2.707641847019625880e-08,2.820460257312110264e-08,2.933278667604594648e-08,3.046097077897078702e-08,3.158915488189562755e-08,3.271733898482046808e-08,3.384552308774530861e-08,3.497370719067014914e-08,3.610189129359498968e-08,3.723007539651983021e-08,3.835825949944467074e-08,3.948644360236951127e-08,4.061462770529435181e-08,4.174281180821919234e-08,4.287099591114403287e-08,4.399918001406887340e-08,4.512736411699371393e-08,4.625554821991855447e-08,4.738373232284339500e-08,4.851191642576823553e-08,4.964010052869307606e-08,5.076828463161791660e-08,5.189646873454275713e-08,5.302465283746759766e-08,5.415283694039243819e-08,5.528102104331727872e-08,5.640920514624211926e-08,5.753738924916695979e-08,5.866557335209180032e-08,5.979375745501664085e-08,6.092194155794148139e-08,6.205012566086632192e-08,6.317830976379116245e-08,6.430649386671600298e-08,6.543467796964084352e-08,6.656286207256568405e-08,6.769104617549052458e-08,6.881923027841536511e-08,6.994741438134020564e-08,7.107559848426504618e-08 +0.000000000000000000e+00,9.620068683401996334e-10,1.924013736680399267e-09,2.886020605020598900e-09,3.848027473360798534e-09,4.810034341700997753e-09,5.772041210041196973e-09,6.734048078381396193e-09,7.696054946721595413e-09,8.658061815061794633e-09,9.620068683401993853e-09,1.058207555174219307e-08,1.154408242008239229e-08,1.250608928842259151e-08,1.346809615676279073e-08,1.443010302510298995e-08,1.539210989344318752e-08,1.635411676178338508e-08,1.731612363012358265e-08,1.827813049846378021e-08,1.924013736680397778e-08,2.020214423514417534e-08,2.116415110348437291e-08,2.212615797182457048e-08,2.308816484016476804e-08,2.405017170850496561e-08,2.501217857684516317e-08,2.597418544518536074e-08,2.693619231352555830e-08,2.789819918186575587e-08,2.886020605020595343e-08,2.982221291854615431e-08,3.078421978688635518e-08,3.174622665522655606e-08,3.270823352356675693e-08,3.367024039190695780e-08,3.463224726024715868e-08,3.559425412858735955e-08,3.655626099692756043e-08,3.751826786526776130e-08,3.848027473360796218e-08,3.944228160194816305e-08,4.040428847028836392e-08,4.136629533862856480e-08,4.232830220696876567e-08,4.329030907530896655e-08,4.425231594364916742e-08,4.521432281198936829e-08,4.617632968032956917e-08,4.713833654866977004e-08,4.810034341700997092e-08,4.906235028535017179e-08,5.002435715369037267e-08,5.098636402203057354e-08,5.194837089037077441e-08,5.291037775871097529e-08,5.387238462705117616e-08,5.483439149539137704e-08,5.579639836373157791e-08,5.675840523207177879e-08,5.772041210041197966e-08,5.868241896875218053e-08,5.964442583709238803e-08,6.060643270543259552e-08 +0.000000000000000000e+00,-1.020128718067708113e-09,-2.040257436135416226e-09,-3.060386154203124339e-09,-4.080514872270832452e-09,-5.100643590338540565e-09,-6.120772308406248678e-09,-7.140901026473956791e-09,-8.161029744541664904e-09,-9.181158462609372190e-09,-1.020128718067707948e-08,-1.122141589874478676e-08,-1.224154461681249405e-08,-1.326167333488020133e-08,-1.428180205294790862e-08,-1.530193077101561590e-08,-1.632205948908332319e-08,-1.734218820715103048e-08,-1.836231692521873776e-08,-1.938244564328644505e-08,-2.040257436135415233e-08,-2.142270307942185962e-08,-2.244283179748956690e-08,-2.346296051555727419e-08,-2.448308923362498148e-08,-2.550321795169268876e-08,-2.652334666976039605e-08,-2.754347538782810333e-08,-2.856360410589581062e-08,-2.958373282396351791e-08,-3.060386154203122519e-08,-3.162399026009893248e-08,-3.264411897816663976e-08,-3.366424769623434705e-08,-3.468437641430205433e-08,-3.570450513236976162e-08,-3.672463385043746891e-08,-3.774476256850517619e-08,-3.876489128657288348e-08,-3.978502000464059076e-08,-4.080514872270829805e-08,-4.182527744077600533e-08,-4.284540615884371262e-08,-4.386553487691141991e-08,-4.488566359497912719e-08,-4.590579231304683448e-08,-4.692592103111454176e-08,-4.794604974918224905e-08,-4.896617846724995634e-08,-4.998630718531766362e-08,-5.100643590338537091e-08,-5.202656462145307819e-08,-5.304669333952078548e-08,-5.406682205758849276e-08,-5.508695077565620005e-08,-5.610707949372390734e-08,-5.712720821179161462e-08,-5.814733692985932191e-08,-5.916746564792702919e-08,-6.018759436599473648e-08,-6.120772308406243715e-08,-6.222785180213013782e-08,-6.324798052019783848e-08,-6.426810923826553915e-08 +0.000000000000000000e+00,-1.128184103085701519e-09,-2.256368206171403038e-09,-3.384552309257104556e-09,-4.512736412342806075e-09,-5.640920515428507594e-09,-6.769104618514209113e-09,-7.897288721599911459e-09,-9.025472824685613805e-09,-1.015365692777131615e-08,-1.128184103085701850e-08,-1.241002513394272084e-08,-1.353820923702842319e-08,-1.466639334011412553e-08,-1.579457744319982953e-08,-1.692276154628553354e-08,-1.805094564937123754e-08,-1.917912975245694154e-08,-2.030731385554264554e-08,-2.143549795862834954e-08,-2.256368206171405354e-08,-2.369186616479975754e-08,-2.482005026788546154e-08,-2.594823437097116554e-08,-2.707641847405686954e-08,-2.820460257714257354e-08,-2.933278668022827754e-08,-3.046097078331398154e-08,-3.158915488639968554e-08,-3.271733898948538954e-08,-3.384552309257109354e-08,-3.497370719565679754e-08,-3.610189129874250154e-08,-3.723007540182820554e-08,-3.835825950491390954e-08,-3.948644360799961354e-08,-4.061462771108531754e-08,-4.174281181417102154e-08,-4.287099591725672554e-08,-4.399918002034242954e-08,-4.512736412342813354e-08,-4.625554822651383754e-08,-4.738373232959954154e-08,-4.851191643268524554e-08,-4.964010053577094955e-08,-5.076828463885665355e-08,-5.189646874194235755e-08,-5.302465284502806155e-08,-5.415283694811376555e-08,-5.528102105119946955e-08,-5.640920515428517355e-08,-5.753738925737087755e-08,-5.866557336045658155e-08,-5.979375746354227893e-08,-6.092194156662797631e-08,-6.205012566971367370e-08,-6.317830977279937108e-08,-6.430649387588506846e-08,-6.543467797897076585e-08,-6.656286208205646323e-08,-6.769104618514216061e-08,-6.881923028822785799e-08,-6.994741439131355538e-08,-7.107559849439925276e-08 +0.000000000000000000e+00,-9.620068684953336350e-10,-1.924013736990667270e-09,-2.886020605486000905e-09,-3.848027473981334540e-09,-4.810034342476668175e-09,-5.772041210972001810e-09,-6.734048079467335445e-09,-7.696054947962669080e-09,-8.658061816458002715e-09,-9.620068684953336350e-09,-1.058207555344866998e-08,-1.154408242194400362e-08,-1.250608929043933725e-08,-1.346809615893467089e-08,-1.443010302743000452e-08,-1.539210989592533816e-08,-1.635411676442067179e-08,-1.731612363291600543e-08,-1.827813050141133906e-08,-1.924013736990667270e-08,-2.020214423840200633e-08,-2.116415110689733997e-08,-2.212615797539267360e-08,-2.308816484388800724e-08,-2.405017171238334087e-08,-2.501217858087867451e-08,-2.597418544937400814e-08,-2.693619231786934178e-08,-2.789819918636467541e-08,-2.886020605486000905e-08,-2.982221292335534268e-08,-3.078421979185067632e-08,-3.174622666034600995e-08,-3.270823352884134359e-08,-3.367024039733667722e-08,-3.463224726583201086e-08,-3.559425413432734449e-08,-3.655626100282267813e-08,-3.751826787131801176e-08,-3.848027473981334540e-08,-3.944228160830867903e-08,-4.040428847680401267e-08,-4.136629534529934630e-08,-4.232830221379467994e-08,-4.329030908229001357e-08,-4.425231595078534721e-08,-4.521432281928068084e-08,-4.617632968777601448e-08,-4.713833655627134811e-08,-4.810034342476668175e-08,-4.906235029326201538e-08,-5.002435716175734902e-08,-5.098636403025268265e-08,-5.194837089874801629e-08,-5.291037776724334992e-08,-5.387238463573868356e-08,-5.483439150423401719e-08,-5.579639837272935083e-08,-5.675840524122468446e-08,-5.772041210972001810e-08,-5.868241897821535173e-08,-5.964442584671068537e-08,-6.060643271520601900e-08 +0.000000000000000000e+00,8.741271558749355097e-10,1.748254311749871019e-09,2.622381467624806632e-09,3.496508623499742452e-09,4.370635779374677859e-09,5.244762935249613265e-09,6.118890091124548671e-09,6.993017246999484077e-09,7.867144402874419484e-09,8.741271558749355717e-09,9.615398714624291951e-09,1.048952587049922818e-08,1.136365302637416442e-08,1.223778018224910065e-08,1.311190733812403688e-08,1.398603449399897312e-08,1.486016164987390935e-08,1.573428880574884558e-08,1.660841596162378182e-08,1.748254311749871805e-08,1.835667027337365429e-08,1.923079742924859052e-08,2.010492458512352675e-08,2.097905174099846299e-08,2.185317889687339922e-08,2.272730605274833545e-08,2.360143320862327169e-08,2.447556036449820792e-08,2.534968752037314415e-08,2.622381467624808039e-08,2.709794183212301662e-08,2.797206898799795285e-08,2.884619614387288909e-08,2.972032329974782532e-08,3.059445045562276155e-08,3.146857761149769779e-08,3.234270476737263402e-08,3.321683192324757025e-08,3.409095907912250649e-08,3.496508623499744272e-08,3.583921339087237895e-08,3.671334054674731519e-08,3.758746770262225142e-08,3.846159485849718765e-08,3.933572201437212389e-08,4.020984917024706012e-08,4.108397632612199635e-08,4.195810348199693259e-08,4.283223063787186882e-08,4.370635779374680506e-08,4.458048494962174129e-08,4.545461210549667752e-08,4.632873926137161376e-08,4.720286641724654999e-08,4.807699357312148622e-08,4.895112072899642246e-08,4.982524788487135869e-08,5.069937504074629492e-08,5.157350219662123116e-08,5.244762935249616739e-08,5.332175650837110362e-08,5.419588366424603986e-08,5.507001082012097609e-08 +0.000000000000000000e+00,9.355743796068033941e-10,1.871148759213606788e-09,2.806723138820410182e-09,3.742297518427213576e-09,4.677871898034016971e-09,5.613446277640820365e-09,6.549020657247623759e-09,7.484595036854427153e-09,8.420169416461231374e-09,9.355743796068035595e-09,1.029131817567483982e-08,1.122689255528164404e-08,1.216246693488844826e-08,1.309804131449525248e-08,1.403361569410205670e-08,1.496919007370886092e-08,1.590476445331566514e-08,1.684033883292246937e-08,1.777591321252927359e-08,1.871148759213607781e-08,1.964706197174288203e-08,2.058263635134968625e-08,2.151821073095649047e-08,2.245378511056329469e-08,2.338935949017009891e-08,2.432493386977690314e-08,2.526050824938370736e-08,2.619608262899051158e-08,2.713165700859731580e-08,2.806723138820412002e-08,2.900280576781092424e-08,2.993838014741772846e-08,3.087395452702452938e-08,3.180952890663133029e-08,3.274510328623813120e-08,3.368067766584493211e-08,3.461625204545173303e-08,3.555182642505853394e-08,3.648740080466533485e-08,3.742297518427213576e-08,3.835854956387893668e-08,3.929412394348573759e-08,4.022969832309253850e-08,4.116527270269933941e-08,4.210084708230614033e-08,4.303642146191294124e-08,4.397199584151974215e-08,4.490757022112654306e-08,4.584314460073334398e-08,4.677871898034014489e-08,4.771429335994694580e-08,4.864986773955374671e-08,4.958544211916054763e-08,5.052101649876734854e-08,5.145659087837414945e-08,5.239216525798095037e-08,5.332773963758775128e-08,5.426331401719455219e-08,5.519888839680135310e-08,5.613446277640815402e-08,5.707003715601495493e-08,5.800561153562175584e-08,5.894118591522855675e-08 +0.000000000000000000e+00,8.358169140303963844e-10,1.671633828060792769e-09,2.507450742091189153e-09,3.343267656121585538e-09,4.179084570151981922e-09,5.014901484182378306e-09,5.850718398212774691e-09,6.686535312243171075e-09,7.522352226273568287e-09,8.358169140303965499e-09,9.193986054334362710e-09,1.002980296836475992e-08,1.086561988239515713e-08,1.170143679642555434e-08,1.253725371045595156e-08,1.337307062448634877e-08,1.420888753851674598e-08,1.504470445254714319e-08,1.588052136657754040e-08,1.671633828060793761e-08,1.755215519463833483e-08,1.838797210866873204e-08,1.922378902269912925e-08,2.005960593672952646e-08,2.089542285075992367e-08,2.173123976479032088e-08,2.256705667882071810e-08,2.340287359285111531e-08,2.423869050688151252e-08,2.507450742091190973e-08,2.591032433494230694e-08,2.674614124897270415e-08,2.758195816300310137e-08,2.841777507703349858e-08,2.925359199106389579e-08,3.008940890509429300e-08,3.092522581912469021e-08,3.176104273315508742e-08,3.259685964718548463e-08,3.343267656121588185e-08,3.426849347524627906e-08,3.510431038927667627e-08,3.594012730330707348e-08,3.677594421733747069e-08,3.761176113136786790e-08,3.844757804539826512e-08,3.928339495942866233e-08,4.011921187345905954e-08,4.095502878748945675e-08,4.179084570151985396e-08,4.262666261555025117e-08,4.346247952958064839e-08,4.429829644361104560e-08,4.513411335764144281e-08,4.596993027167184002e-08,4.680574718570223723e-08,4.764156409973263444e-08,4.847738101376303166e-08,4.931319792779342887e-08,5.014901484182382608e-08,5.098483175585422329e-08,5.182064866988462050e-08,5.265646558391501771e-08 +0.000000000000000000e+00,-8.741271560434344752e-10,-1.748254312086868950e-09,-2.622381468130303322e-09,-3.496508624173737487e-09,-4.370635780217171239e-09,-5.244762936260604990e-09,-6.118890092304038741e-09,-6.993017248347472493e-09,-7.867144404390906244e-09,-8.741271560434339168e-09,-9.615398716477772093e-09,-1.048952587252120502e-08,-1.136365302856463794e-08,-1.223778018460807087e-08,-1.311190734065150379e-08,-1.398603449669493671e-08,-1.486016165273836964e-08,-1.573428880878180256e-08,-1.660841596482523549e-08,-1.748254312086866841e-08,-1.835667027691210133e-08,-1.923079743295553426e-08,-2.010492458899896718e-08,-2.097905174504240011e-08,-2.185317890108583303e-08,-2.272730605712926596e-08,-2.360143321317269888e-08,-2.447556036921613180e-08,-2.534968752525956473e-08,-2.622381468130299765e-08,-2.709794183734643058e-08,-2.797206899338986350e-08,-2.884619614943329643e-08,-2.972032330547672935e-08,-3.059445046152016227e-08,-3.146857761756359851e-08,-3.234270477360703474e-08,-3.321683192965047097e-08,-3.409095908569390721e-08,-3.496508624173734344e-08,-3.583921339778077967e-08,-3.671334055382421590e-08,-3.758746770986765214e-08,-3.846159486591108837e-08,-3.933572202195452460e-08,-4.020984917799796084e-08,-4.108397633404139707e-08,-4.195810349008483330e-08,-4.283223064612826954e-08,-4.370635780217170577e-08,-4.458048495821514200e-08,-4.545461211425857823e-08,-4.632873927030201447e-08,-4.720286642634545070e-08,-4.807699358238888693e-08,-4.895112073843232317e-08,-4.982524789447575940e-08,-5.069937505051919563e-08,-5.157350220656263186e-08,-5.244762936260606810e-08,-5.332175651864950433e-08,-5.419588367469294056e-08,-5.507001083073637680e-08 +0.000000000000000000e+00,-9.355743797726491778e-10,-1.871148759545298356e-09,-2.806723139317947740e-09,-3.742297519090597538e-09,-4.677871898863247337e-09,-5.613446278635897135e-09,-6.549020658408546933e-09,-7.484595038181196731e-09,-8.420169417953845702e-09,-9.355743797726494673e-09,-1.029131817749914364e-08,-1.122689255727179262e-08,-1.216246693704444159e-08,-1.309804131681709056e-08,-1.403361569658973953e-08,-1.496919007636239015e-08,-1.590476445613504078e-08,-1.684033883590769140e-08,-1.777591321568034203e-08,-1.871148759545299266e-08,-1.964706197522564328e-08,-2.058263635499829391e-08,-2.151821073477094453e-08,-2.245378511454359516e-08,-2.338935949431624578e-08,-2.432493387408889641e-08,-2.526050825386154703e-08,-2.619608263363419766e-08,-2.713165701340684828e-08,-2.806723139317949891e-08,-2.900280577295214953e-08,-2.993838015272480016e-08,-3.087395453249744748e-08,-3.180952891227009479e-08,-3.274510329204274211e-08,-3.368067767181538943e-08,-3.461625205158803674e-08,-3.555182643136068406e-08,-3.648740081113333138e-08,-3.742297519090597869e-08,-3.835854957067862601e-08,-3.929412395045127333e-08,-4.022969833022392064e-08,-4.116527270999656796e-08,-4.210084708976921528e-08,-4.303642146954186259e-08,-4.397199584931450991e-08,-4.490757022908715723e-08,-4.584314460885980454e-08,-4.677871898863245186e-08,-4.771429336840509918e-08,-4.864986774817774649e-08,-4.958544212795039381e-08,-5.052101650772304113e-08,-5.145659088749568844e-08,-5.239216526726833576e-08,-5.332773964704098308e-08,-5.426331402681363039e-08,-5.519888840658627771e-08,-5.613446278635892503e-08,-5.707003716613157234e-08,-5.800561154590421966e-08,-5.894118592567686698e-08 +0.000000000000000000e+00,-8.358169141887906150e-10,-1.671633828377581230e-09,-2.507450742566371742e-09,-3.343267656755162046e-09,-4.179084570943951937e-09,-5.014901485132741829e-09,-5.850718399321531720e-09,-6.686535313510321611e-09,-7.522352227699111502e-09,-8.358169141887900566e-09,-9.193986056076689630e-09,-1.002980297026547869e-08,-1.086561988445426776e-08,-1.170143679864305682e-08,-1.253725371283184589e-08,-1.337307062702063495e-08,-1.420888754120942401e-08,-1.504470445539821308e-08,-1.588052136958700214e-08,-1.671633828377579121e-08,-1.755215519796458027e-08,-1.838797211215336933e-08,-1.922378902634215840e-08,-2.005960594053094746e-08,-2.089542285471973653e-08,-2.173123976890852559e-08,-2.256705668309731465e-08,-2.340287359728610372e-08,-2.423869051147489278e-08,-2.507450742566368185e-08,-2.591032433985247091e-08,-2.674614125404125997e-08,-2.758195816823004904e-08,-2.841777508241883810e-08,-2.925359199660762717e-08,-3.008940891079641954e-08,-3.092522582498521191e-08,-3.176104273917400428e-08,-3.259685965336279666e-08,-3.343267656755158903e-08,-3.426849348174038140e-08,-3.510431039592917378e-08,-3.594012731011796615e-08,-3.677594422430675852e-08,-3.761176113849555089e-08,-3.844757805268434327e-08,-3.928339496687313564e-08,-4.011921188106192801e-08,-4.095502879525072038e-08,-4.179084570943951276e-08,-4.262666262362830513e-08,-4.346247953781709750e-08,-4.429829645200588988e-08,-4.513411336619468225e-08,-4.596993028038347462e-08,-4.680574719457226699e-08,-4.764156410876105937e-08,-4.847738102294985174e-08,-4.931319793713864411e-08,-5.014901485132743648e-08,-5.098483176551622886e-08,-5.182064867970502123e-08,-5.265646559389381360e-08 +0.000000000000000000e+00,7.849332174496747549e-10,1.569866434899349510e-09,2.354799652349024265e-09,3.139732869798699020e-09,3.924666087248373775e-09,4.709599304698048529e-09,5.494532522147723284e-09,6.279465739597398039e-09,7.064398957047072794e-09,7.849332174496747549e-09,8.634265391946422304e-09,9.419198609396097059e-09,1.020413182684577181e-08,1.098906504429544657e-08,1.177399826174512132e-08,1.255893147919479608e-08,1.334386469664447083e-08,1.412879791409414559e-08,1.491373113154382034e-08,1.569866434899349510e-08,1.648359756644316985e-08,1.726853078389284461e-08,1.805346400134251936e-08,1.883839721879219412e-08,1.962333043624186887e-08,2.040826365369154363e-08,2.119319687114121838e-08,2.197813008859089314e-08,2.276306330604056789e-08,2.354799652349024265e-08,2.433292974093991740e-08,2.511786295838959216e-08,2.590279617583926691e-08,2.668772939328894167e-08,2.747266261073861642e-08,2.825759582818829118e-08,2.904252904563796593e-08,2.982746226308764069e-08,3.061239548053731544e-08,3.139732869798699020e-08,3.218226191543666495e-08,3.296719513288633971e-08,3.375212835033601446e-08,3.453706156778568922e-08,3.532199478523536397e-08,3.610692800268503873e-08,3.689186122013471348e-08,3.767679443758438824e-08,3.846172765503406299e-08,3.924666087248373775e-08,4.003159408993341250e-08,4.081652730738308726e-08,4.160146052483276201e-08,4.238639374228243676e-08,4.317132695973211152e-08,4.395626017718178627e-08,4.474119339463146103e-08,4.552612661208113578e-08,4.631105982953081054e-08,4.709599304698048529e-08,4.788092626443016005e-08,4.866585948187983480e-08,4.945079269932950956e-08 +0.000000000000000000e+00,8.257266418019393716e-10,1.651453283603878743e-09,2.477179925405818011e-09,3.302906567207757073e-09,4.128633209009696548e-09,4.954359850811636023e-09,5.780086492613575498e-09,6.605813134415514973e-09,7.431539776217454448e-09,8.257266418019393096e-09,9.082993059821331744e-09,9.908719701623270391e-09,1.073444634342520904e-08,1.156017298522714769e-08,1.238589962702908633e-08,1.321162626883102498e-08,1.403735291063296363e-08,1.486307955243490228e-08,1.568880619423684093e-08,1.651453283603877957e-08,1.734025947784071822e-08,1.816598611964265687e-08,1.899171276144459552e-08,1.981743940324653417e-08,2.064316604504847281e-08,2.146889268685041146e-08,2.229461932865235011e-08,2.312034597045428876e-08,2.394607261225622740e-08,2.477179925405816605e-08,2.559752589586010470e-08,2.642325253766204335e-08,2.724897917946398200e-08,2.807470582126592064e-08,2.890043246306785929e-08,2.972615910486979794e-08,3.055188574667173328e-08,3.137761238847366862e-08,3.220333903027560396e-08,3.302906567207753930e-08,3.385479231387947463e-08,3.468051895568140997e-08,3.550624559748334531e-08,3.633197223928528065e-08,3.715769888108721599e-08,3.798342552288915133e-08,3.880915216469108667e-08,3.963487880649302201e-08,4.046060544829495735e-08,4.128633209009689269e-08,4.211205873189882803e-08,4.293778537370076337e-08,4.376351201550269870e-08,4.458923865730463404e-08,4.541496529910656938e-08,4.624069194090850472e-08,4.706641858271044006e-08,4.789214522451237540e-08,4.871787186631431074e-08,4.954359850811624608e-08,5.036932514991818142e-08,5.119505179172011676e-08,5.202077843352205210e-08 +0.000000000000000000e+00,7.619214481444953730e-10,1.523842896288990746e-09,2.285764344433486326e-09,3.047685792577981906e-09,3.809607240722477485e-09,4.571528688866972652e-09,5.333450137011467818e-09,6.095371585155962984e-09,6.857293033300458150e-09,7.619214481444953316e-09,8.381135929589447655e-09,9.143057377733941994e-09,9.904978825878436333e-09,1.066690027402293067e-08,1.142882172216742501e-08,1.219074317031191935e-08,1.295266461845641369e-08,1.371458606660090803e-08,1.447650751474540237e-08,1.523842896288989671e-08,1.600035041103439105e-08,1.676227185917888538e-08,1.752419330732337972e-08,1.828611475546787406e-08,1.904803620361236840e-08,1.980995765175686274e-08,2.057187909990135708e-08,2.133380054804585142e-08,2.209572199619034576e-08,2.285764344433484010e-08,2.361956489247933444e-08,2.438148634062382877e-08,2.514340778876832311e-08,2.590532923691281745e-08,2.666725068505731179e-08,2.742917213320180613e-08,2.819109358134630047e-08,2.895301502949079481e-08,2.971493647763528915e-08,3.047685792577978680e-08,3.123877937392428113e-08,3.200070082206877547e-08,3.276262227021326981e-08,3.352454371835776415e-08,3.428646516650225849e-08,3.504838661464675283e-08,3.581030806279124717e-08,3.657222951093574151e-08,3.733415095908023585e-08,3.809607240722473019e-08,3.885799385536922452e-08,3.961991530351371886e-08,4.038183675165821320e-08,4.114375819980270754e-08,4.190567964794720188e-08,4.266760109609169622e-08,4.342952254423619056e-08,4.419144399238068490e-08,4.495336544052517924e-08,4.571528688866967358e-08,4.647720833681416791e-08,4.723912978495866225e-08,4.800105123310315659e-08 +0.000000000000000000e+00,-7.849332176229159469e-10,-1.569866435245831894e-09,-2.354799652868747634e-09,-3.139732870491663374e-09,-3.924666088114579114e-09,-4.709599305737495268e-09,-5.494532523360411421e-09,-6.279465740983327575e-09,-7.064398958606243729e-09,-7.849332176229159882e-09,-8.634265393852076036e-09,-9.419198611474992190e-09,-1.020413182909790834e-08,-1.098906504672082450e-08,-1.177399826434374065e-08,-1.255893148196665680e-08,-1.334386469958957296e-08,-1.412879791721248911e-08,-1.491373113483540361e-08,-1.569866435245831646e-08,-1.648359757008122930e-08,-1.726853078770414215e-08,-1.805346400532705499e-08,-1.883839722294996784e-08,-1.962333044057288068e-08,-2.040826365819579353e-08,-2.119319687581870637e-08,-2.197813009344161922e-08,-2.276306331106453206e-08,-2.354799652868744491e-08,-2.433292974631035775e-08,-2.511786296393327060e-08,-2.590279618155618344e-08,-2.668772939917909629e-08,-2.747266261680200913e-08,-2.825759583442492198e-08,-2.904252905204783482e-08,-2.982746226967074767e-08,-3.061239548729366051e-08,-3.139732870491657336e-08,-3.218226192253948620e-08,-3.296719514016239905e-08,-3.375212835778531189e-08,-3.453706157540822474e-08,-3.532199479303113758e-08,-3.610692801065405042e-08,-3.689186122827696327e-08,-3.767679444589987611e-08,-3.846172766352278896e-08,-3.924666088114570180e-08,-4.003159409876861465e-08,-4.081652731639152749e-08,-4.160146053401444034e-08,-4.238639375163735318e-08,-4.317132696926026603e-08,-4.395626018688317887e-08,-4.474119340450609172e-08,-4.552612662212900456e-08,-4.631105983975191741e-08,-4.709599305737483025e-08,-4.788092627499774310e-08,-4.866585949262065594e-08,-4.945079271024356879e-08 +0.000000000000000000e+00,-8.257266419728028329e-10,-1.651453283945605666e-09,-2.477179925918408602e-09,-3.302906567891211745e-09,-4.128633209864015302e-09,-4.954359851836818859e-09,-5.780086493809622415e-09,-6.605813135782425972e-09,-7.431539777755229529e-09,-8.257266419728033913e-09,-9.082993061700838297e-09,-9.908719703673642680e-09,-1.073444634564644706e-08,-1.156017298761925145e-08,-1.238589962959205583e-08,-1.321162627156486022e-08,-1.403735291353766460e-08,-1.486307955551046898e-08,-1.568880619748327337e-08,-1.651453283945607775e-08,-1.734025948142888214e-08,-1.816598612340168652e-08,-1.899171276537449090e-08,-1.981743940734729529e-08,-2.064316604932009967e-08,-2.146889269129290405e-08,-2.229461933326570844e-08,-2.312034597523851282e-08,-2.394607261721131721e-08,-2.477179925918412159e-08,-2.559752590115692597e-08,-2.642325254312973036e-08,-2.724897918510253474e-08,-2.807470582707533913e-08,-2.890043246904814351e-08,-2.972615911102094789e-08,-3.055188575299374897e-08,-3.137761239496655335e-08,-3.220333903693935774e-08,-3.302906567891216212e-08,-3.385479232088496650e-08,-3.468051896285777089e-08,-3.550624560483057527e-08,-3.633197224680337966e-08,-3.715769888877618404e-08,-3.798342553074898842e-08,-3.880915217272179281e-08,-3.963487881469459719e-08,-4.046060545666740158e-08,-4.128633209864020596e-08,-4.211205874061301034e-08,-4.293778538258581473e-08,-4.376351202455861911e-08,-4.458923866653142349e-08,-4.541496530850422788e-08,-4.624069195047703226e-08,-4.706641859244983665e-08,-4.789214523442264103e-08,-4.871787187639544541e-08,-4.954359851836824980e-08,-5.036932516034105418e-08,-5.119505180231385857e-08,-5.202077844428666295e-08 +0.000000000000000000e+00,-7.619214483056702746e-10,-1.523842896611340549e-09,-2.285764344917010617e-09,-3.047685793222680685e-09,-3.809607241528350752e-09,-4.571528689834021234e-09,-5.333450138139691715e-09,-6.095371586445362197e-09,-6.857293034751032678e-09,-7.619214483056703159e-09,-8.381135931362373641e-09,-9.143057379668044122e-09,-9.904978827973714603e-09,-1.066690027627938508e-08,-1.142882172458505557e-08,-1.219074317289072605e-08,-1.295266462119639653e-08,-1.371458606950206701e-08,-1.447650751780773749e-08,-1.523842896611340963e-08,-1.600035041441908176e-08,-1.676227186272475390e-08,-1.752419331103042603e-08,-1.828611475933609817e-08,-1.904803620764177031e-08,-1.980995765594744244e-08,-2.057187910425311458e-08,-2.133380055255878671e-08,-2.209572200086445885e-08,-2.285764344917013098e-08,-2.361956489747580312e-08,-2.438148634578147526e-08,-2.514340779408714739e-08,-2.590532924239281953e-08,-2.666725069069849166e-08,-2.742917213900416380e-08,-2.819109358730983593e-08,-2.895301503561550807e-08,-2.971493648392118021e-08,-3.047685793222685234e-08,-3.123877938053252779e-08,-3.200070082883820323e-08,-3.276262227714387868e-08,-3.352454372544955412e-08,-3.428646517375522956e-08,-3.504838662206090501e-08,-3.581030807036658045e-08,-3.657222951867225590e-08,-3.733415096697793134e-08,-3.809607241528360679e-08,-3.885799386358928223e-08,-3.961991531189495768e-08,-4.038183676020063312e-08,-4.114375820850630856e-08,-4.190567965681198401e-08,-4.266760110511765945e-08,-4.342952255342333490e-08,-4.419144400172901034e-08,-4.495336545003468579e-08,-4.571528689834036123e-08,-4.647720834664603668e-08,-4.723912979495171212e-08,-4.800105124325738756e-08 +0.000000000000000000e+00,7.220149135155423416e-10,1.444029827031084683e-09,2.166044740546627128e-09,2.888059654062169780e-09,3.610074567577712432e-09,4.332089481093255084e-09,5.054104394608797736e-09,5.776119308124340387e-09,6.498134221639883039e-09,7.220149135155425691e-09,7.942164048670968343e-09,8.664178962186511822e-09,9.386193875702055301e-09,1.010820878921759878e-08,1.083022370273314226e-08,1.155223861624868574e-08,1.227425352976422922e-08,1.299626844327977270e-08,1.371828335679531617e-08,1.444029827031085965e-08,1.516231318382640313e-08,1.588432809734194661e-08,1.660634301085749009e-08,1.732835792437303357e-08,1.805037283788857705e-08,1.877238775140412053e-08,1.949440266491966401e-08,2.021641757843520749e-08,2.093843249195075096e-08,2.166044740546629444e-08,2.238246231898183792e-08,2.310447723249738140e-08,2.382649214601292488e-08,2.454850705952846836e-08,2.527052197304401184e-08,2.599253688655955532e-08,2.671455180007509880e-08,2.743656671359064228e-08,2.815858162710618575e-08,2.888059654062172923e-08,2.960261145413727271e-08,3.032462636765281950e-08,3.104664128116836629e-08,3.176865619468391308e-08,3.249067110819945986e-08,3.321268602171500665e-08,3.393470093523055344e-08,3.465671584874610023e-08,3.537873076226164701e-08,3.610074567577719380e-08,3.682276058929274059e-08,3.754477550280828738e-08,3.826679041632383417e-08,3.898880532983938095e-08,3.971082024335492774e-08,4.043283515687047453e-08,4.115485007038602132e-08,4.187686498390156810e-08,4.259887989741711489e-08,4.332089481093266168e-08,4.404290972444820847e-08,4.476492463796375526e-08,4.548693955147930204e-08 +0.000000000000000000e+00,7.521193504667320943e-10,1.504238700933464189e-09,2.256358051400196386e-09,3.008477401866928791e-09,3.760596752333661195e-09,4.512716102800393600e-09,5.264835453267126004e-09,6.016954803733858409e-09,6.769074154200590813e-09,7.521193504667322390e-09,8.273312855134053968e-09,9.025432205600785545e-09,9.777551556067517122e-09,1.052967090653424870e-08,1.128179025700098028e-08,1.203390960746771185e-08,1.278602895793444343e-08,1.353814830840117501e-08,1.429026765886790659e-08,1.504238700933463816e-08,1.579450635980136974e-08,1.654662571026810132e-08,1.729874506073483290e-08,1.805086441120156447e-08,1.880298376166829605e-08,1.955510311213502763e-08,2.030722246260175920e-08,2.105934181306849078e-08,2.181146116353522236e-08,2.256358051400195394e-08,2.331569986446868551e-08,2.406781921493541709e-08,2.481993856540214867e-08,2.557205791586888025e-08,2.632417726633561182e-08,2.707629661680234340e-08,2.782841596726907498e-08,2.858053531773580655e-08,2.933265466820253813e-08,3.008477401866926971e-08,3.083689336913600129e-08,3.158901271960273286e-08,3.234113207006946444e-08,3.309325142053619602e-08,3.384537077100292760e-08,3.459749012146965917e-08,3.534960947193639075e-08,3.610172882240312233e-08,3.685384817286985391e-08,3.760596752333658548e-08,3.835808687380331706e-08,3.911020622427004864e-08,3.986232557473678021e-08,4.061444492520351179e-08,4.136656427567024337e-08,4.211868362613697495e-08,4.287080297660370652e-08,4.362292232707043810e-08,4.437504167753716968e-08,4.512716102800390126e-08,4.587928037847063283e-08,4.663139972893736441e-08,4.738351907940409599e-08 +0.000000000000000000e+00,7.124009240260499664e-10,1.424801848052099933e-09,2.137202772078150003e-09,2.849603696104200279e-09,3.562004620130250556e-09,4.274405544156300833e-09,4.986806468182351109e-09,5.699207392208401386e-09,6.411608316234451662e-09,7.124009240260501939e-09,7.836410164286553043e-09,8.548811088312603320e-09,9.261212012338653596e-09,9.973612936364703873e-09,1.068601386039075415e-08,1.139841478441680443e-08,1.211081570844285470e-08,1.282321663246890498e-08,1.353561755649495526e-08,1.424801848052100553e-08,1.496041940454705581e-08,1.567282032857310609e-08,1.638522125259915636e-08,1.709762217662520664e-08,1.781002310065125692e-08,1.852242402467730719e-08,1.923482494870335747e-08,1.994722587272940775e-08,2.065962679675545802e-08,2.137202772078150830e-08,2.208442864480755858e-08,2.279682956883360885e-08,2.350923049285965913e-08,2.422163141688570941e-08,2.493403234091175968e-08,2.564643326493780996e-08,2.635883418896386024e-08,2.707123511298991051e-08,2.778363603701596079e-08,2.849603696104201107e-08,2.920843788506806134e-08,2.992083880909411162e-08,3.063323973312015859e-08,3.134564065714620555e-08,3.205804158117225252e-08,3.277044250519829949e-08,3.348284342922434646e-08,3.419524435325039343e-08,3.490764527727644039e-08,3.562004620130248736e-08,3.633244712532853433e-08,3.704484804935458130e-08,3.775724897338062827e-08,3.846964989740667523e-08,3.918205082143272220e-08,3.989445174545876917e-08,4.060685266948481614e-08,4.131925359351086310e-08,4.203165451753691007e-08,4.274405544156295704e-08,4.345645636558900401e-08,4.416885728961505098e-08,4.488125821364109794e-08 +0.000000000000000000e+00,-7.220149136930382405e-10,-1.444029827386076481e-09,-2.166044741079114721e-09,-2.888059654772152962e-09,-3.610074568465191202e-09,-4.332089482158229443e-09,-5.054104395851267683e-09,-5.776119309544305924e-09,-6.498134223237344164e-09,-7.220149136930382405e-09,-7.942164050623420645e-09,-8.664178964316458886e-09,-9.386193878009497126e-09,-1.010820879170253537e-08,-1.083022370539557361e-08,-1.155223861908861185e-08,-1.227425353278165009e-08,-1.299626844647468833e-08,-1.371828336016772657e-08,-1.444029827386076481e-08,-1.516231318755380470e-08,-1.588432810124684460e-08,-1.660634301493988449e-08,-1.732835792863292439e-08,-1.805037284232596428e-08,-1.877238775601900418e-08,-1.949440266971204407e-08,-2.021641758340508397e-08,-2.093843249709812386e-08,-2.166044741079116376e-08,-2.238246232448420365e-08,-2.310447723817724355e-08,-2.382649215187028344e-08,-2.454850706556332334e-08,-2.527052197925636323e-08,-2.599253689294940313e-08,-2.671455180664244302e-08,-2.743656672033548292e-08,-2.815858163402852281e-08,-2.888059654772156271e-08,-2.960261146141460260e-08,-3.032462637510764250e-08,-3.104664128880068239e-08,-3.176865620249372229e-08,-3.249067111618676218e-08,-3.321268602987980208e-08,-3.393470094357284197e-08,-3.465671585726588187e-08,-3.537873077095892176e-08,-3.610074568465196165e-08,-3.682276059834500155e-08,-3.754477551203804144e-08,-3.826679042573108134e-08,-3.898880533942412123e-08,-3.971082025311716113e-08,-4.043283516681020102e-08,-4.115485008050324092e-08,-4.187686499419628081e-08,-4.259887990788932071e-08,-4.332089482158236060e-08,-4.404290973527540050e-08,-4.476492464896844039e-08,-4.548693956266148029e-08 +0.000000000000000000e+00,-7.521193506420387563e-10,-1.504238701284077513e-09,-2.256358051926116165e-09,-3.008477402568154611e-09,-3.760596753210193057e-09,-4.512716103852231504e-09,-5.264835454494269950e-09,-6.016954805136308396e-09,-6.769074155778346842e-09,-7.521193506420386115e-09,-8.273312857062425388e-09,-9.025432207704464661e-09,-9.777551558346503935e-09,-1.052967090898854321e-08,-1.128179025963058248e-08,-1.203390961027262175e-08,-1.278602896091466103e-08,-1.353814831155670030e-08,-1.429026766219873957e-08,-1.504238701284077885e-08,-1.579450636348281977e-08,-1.654662571412486070e-08,-1.729874506476690163e-08,-1.805086441540894256e-08,-1.880298376605098349e-08,-1.955510311669302441e-08,-2.030722246733506534e-08,-2.105934181797710627e-08,-2.181146116861914720e-08,-2.256358051926118812e-08,-2.331569986990322905e-08,-2.406781922054526998e-08,-2.481993857118731091e-08,-2.557205792182935183e-08,-2.632417727247139276e-08,-2.707629662311343369e-08,-2.782841597375547462e-08,-2.858053532439751554e-08,-2.933265467503955647e-08,-3.008477402568159740e-08,-3.083689337632363833e-08,-3.158901272696567925e-08,-3.234113207760772018e-08,-3.309325142824976111e-08,-3.384537077889180204e-08,-3.459749012953384297e-08,-3.534960948017588389e-08,-3.610172883081792482e-08,-3.685384818145996575e-08,-3.760596753210200668e-08,-3.835808688274404760e-08,-3.911020623338608853e-08,-3.986232558402812946e-08,-4.061444493467017039e-08,-4.136656428531221131e-08,-4.211868363595425224e-08,-4.287080298659629317e-08,-4.362292233723833410e-08,-4.437504168788037502e-08,-4.512716103852241595e-08,-4.587928038916445688e-08,-4.663139973980649781e-08,-4.738351909044853873e-08 +0.000000000000000000e+00,-7.124009241893821551e-10,-1.424801848378764310e-09,-2.137202772568146569e-09,-2.849603696757529034e-09,-3.562004620946911499e-09,-4.274405545136293964e-09,-4.986806469325676016e-09,-5.699207393515058068e-09,-6.411608317704440119e-09,-7.124009241893822171e-09,-7.836410166083204223e-09,-8.548811090272586274e-09,-9.261212014461968326e-09,-9.973612938651350378e-09,-1.068601386284073243e-08,-1.139841478703011448e-08,-1.211081571121949653e-08,-1.282321663540887858e-08,-1.353561755959826064e-08,-1.424801848378764269e-08,-1.496041940797702639e-08,-1.567282033216641175e-08,-1.638522125635579711e-08,-1.709762218054518247e-08,-1.781002310473456784e-08,-1.852242402892395320e-08,-1.923482495311333856e-08,-1.994722587730272392e-08,-2.065962680149210928e-08,-2.137202772568149464e-08,-2.208442864987088000e-08,-2.279682957406026536e-08,-2.350923049824965072e-08,-2.422163142243903608e-08,-2.493403234662842144e-08,-2.564643327081780680e-08,-2.635883419500719216e-08,-2.707123511919657752e-08,-2.778363604338596288e-08,-2.849603696757534824e-08,-2.920843789176473360e-08,-2.992083881595411896e-08,-3.063323974014350432e-08,-3.134564066433288968e-08,-3.205804158852227504e-08,-3.277044251271166040e-08,-3.348284343690104576e-08,-3.419524436109043112e-08,-3.490764528527981648e-08,-3.562004620946920184e-08,-3.633244713365858720e-08,-3.704484805784797257e-08,-3.775724898203735793e-08,-3.846964990622674329e-08,-3.918205083041612865e-08,-3.989445175460551401e-08,-4.060685267879489937e-08,-4.131925360298428473e-08,-4.203165452717367009e-08,-4.274405545136305545e-08,-4.345645637555244081e-08,-4.416885729974182617e-08,-4.488125822393121153e-08 +0.000000000000000000e+00,6.717083208673466540e-10,1.343416641734693308e-09,2.015124962602039859e-09,2.686833283469386203e-09,3.358541604336732546e-09,4.030249925204078890e-09,4.701958246071425234e-09,5.373666566938771578e-09,6.045374887806117922e-09,6.717083208673464266e-09,7.388791529540810610e-09,8.060499850408156126e-09,8.732208171275501643e-09,9.403916492142847160e-09,1.007562481301019268e-08,1.074733313387753819e-08,1.141904145474488371e-08,1.209074977561222923e-08,1.276245809647957474e-08,1.343416641734692026e-08,1.410587473821426578e-08,1.477758305908161129e-08,1.544929137994895516e-08,1.612099970081629902e-08,1.679270802168364288e-08,1.746441634255098674e-08,1.813612466341833060e-08,1.880783298428567447e-08,1.947954130515301833e-08,2.015124962602036219e-08,2.082295794688770605e-08,2.149466626775504992e-08,2.216637458862239378e-08,2.283808290948973764e-08,2.350979123035708150e-08,2.418149955122442537e-08,2.485320787209176923e-08,2.552491619295911309e-08,2.619662451382645695e-08,2.686833283469380081e-08,2.754004115556114468e-08,2.821174947642848854e-08,2.888345779729583240e-08,2.955516611816317626e-08,3.022687443903052013e-08,3.089858275989786399e-08,3.157029108076520785e-08,3.224199940163255171e-08,3.291370772249989558e-08,3.358541604336723944e-08,3.425712436423458330e-08,3.492883268510192716e-08,3.560054100596927102e-08,3.627224932683661489e-08,3.694395764770395875e-08,3.761566596857130261e-08,3.828737428943864647e-08,3.895908261030599034e-08,3.963079093117333420e-08,4.030249925204067806e-08,4.097420757290802192e-08,4.164591589377536579e-08,4.231762421464270965e-08 +0.000000000000000000e+00,6.965284876008928803e-10,1.393056975201785761e-09,2.089585462802678641e-09,2.786113950403571521e-09,3.482642438004464402e-09,4.179170925605357282e-09,4.875699413206249749e-09,5.572227900807142216e-09,6.268756388408034682e-09,6.965284876008927149e-09,7.661813363609819616e-09,8.358341851210712910e-09,9.054870338811606204e-09,9.751398826412499498e-09,1.044792731401339279e-08,1.114445580161428609e-08,1.184098428921517938e-08,1.253751277681607267e-08,1.323404126441696597e-08,1.393056975201785926e-08,1.462709823961875256e-08,1.532362672721964585e-08,1.602015521482053914e-08,1.671668370242143244e-08,1.741321219002232573e-08,1.810974067762321902e-08,1.880626916522411232e-08,1.950279765282500561e-08,2.019932614042589891e-08,2.089585462802679220e-08,2.159238311562768549e-08,2.228891160322857879e-08,2.298544009082947208e-08,2.368196857843036538e-08,2.437849706603125867e-08,2.507502555363215196e-08,2.577155404123304526e-08,2.646808252883393855e-08,2.716461101643483185e-08,2.786113950403572514e-08,2.855766799163661843e-08,2.925419647923751173e-08,2.995072496683840502e-08,3.064725345443929832e-08,3.134378194204019161e-08,3.204031042964108490e-08,3.273683891724197820e-08,3.343336740484287149e-08,3.412989589244376479e-08,3.482642438004465808e-08,3.552295286764555137e-08,3.621948135524644467e-08,3.691600984284733796e-08,3.761253833044823126e-08,3.830906681804912455e-08,3.900559530565001784e-08,3.970212379325091114e-08,4.039865228085180443e-08,4.109518076845269772e-08,4.179170925605359102e-08,4.248823774365448431e-08,4.318476623125537761e-08,4.388129471885627090e-08 +0.000000000000000000e+00,6.779135947932673789e-10,1.355827189586534758e-09,2.033740784379802033e-09,2.711654379173069102e-09,3.389567973966336171e-09,4.067481568759603239e-09,4.745395163552870308e-09,5.423308758346137377e-09,6.101222353139404445e-09,6.779135947932671514e-09,7.457049542725939410e-09,8.134963137519208133e-09,8.812876732312476856e-09,9.490790327105745579e-09,1.016870392189901430e-08,1.084661751669228303e-08,1.152453111148555175e-08,1.220244470627882047e-08,1.288035830107208919e-08,1.355827189586535792e-08,1.423618549065862664e-08,1.491409908545189536e-08,1.559201268024516409e-08,1.626992627503843281e-08,1.694783986983170153e-08,1.762575346462497026e-08,1.830366705941823898e-08,1.898158065421150770e-08,1.965949424900477643e-08,2.033740784379804515e-08,2.101532143859131387e-08,2.169323503338458259e-08,2.237114862817785132e-08,2.304906222297112004e-08,2.372697581776438876e-08,2.440488941255765749e-08,2.508280300735092621e-08,2.576071660214419493e-08,2.643863019693746366e-08,2.711654379173073238e-08,2.779445738652400110e-08,2.847237098131726982e-08,2.915028457611053855e-08,2.982819817090381058e-08,3.050611176569708592e-08,3.118402536049036126e-08,3.186193895528363660e-08,3.253985255007691194e-08,3.321776614487018728e-08,3.389567973966346262e-08,3.457359333445673796e-08,3.525150692925001330e-08,3.592942052404328864e-08,3.660733411883656398e-08,3.728524771362983933e-08,3.796316130842311467e-08,3.864107490321639001e-08,3.931898849800966535e-08,3.999690209280294069e-08,4.067481568759621603e-08,4.135272928238949137e-08,4.203064287718276671e-08,4.270855647197604205e-08 +0.000000000000000000e+00,-6.717083210496837308e-10,-1.343416642099367462e-09,-2.015124963149051089e-09,-2.686833284198734510e-09,-3.358541605248417930e-09,-4.030249926298101351e-09,-4.701958247347784772e-09,-5.373666568397468192e-09,-6.045374889447151613e-09,-6.717083210496835034e-09,-7.388791531546518454e-09,-8.060499852596201048e-09,-8.732208173645883641e-09,-9.403916494695566235e-09,-1.007562481574524883e-08,-1.074733313679493142e-08,-1.141904145784461402e-08,-1.209074977889429661e-08,-1.276245809994397920e-08,-1.343416642099366180e-08,-1.410587474204334439e-08,-1.477758306309302698e-08,-1.544929138414270792e-08,-1.612099970519238886e-08,-1.679270802624206980e-08,-1.746441634729175074e-08,-1.813612466834143168e-08,-1.880783298939111262e-08,-1.947954131044079356e-08,-2.015124963149047450e-08,-2.082295795254015543e-08,-2.149466627358983637e-08,-2.216637459463951731e-08,-2.283808291568919825e-08,-2.350979123673887919e-08,-2.418149955778856013e-08,-2.485320787883824107e-08,-2.552491619988792201e-08,-2.619662452093760295e-08,-2.686833284198728389e-08,-2.754004116303696483e-08,-2.821174948408664576e-08,-2.888345780513632670e-08,-2.955516612618600764e-08,-3.022687444723568858e-08,-3.089858276828536952e-08,-3.157029108933505046e-08,-3.224199941038473140e-08,-3.291370773143441234e-08,-3.358541605248409328e-08,-3.425712437353377422e-08,-3.492883269458345516e-08,-3.560054101563313609e-08,-3.627224933668281703e-08,-3.694395765773249797e-08,-3.761566597878217891e-08,-3.828737429983185985e-08,-3.895908262088154079e-08,-3.963079094193122173e-08,-4.030249926298090267e-08,-4.097420758403058361e-08,-4.164591590508026455e-08,-4.231762422612994549e-08 +0.000000000000000000e+00,-6.965284877807311479e-10,-1.393056975561462296e-09,-2.089585463342193547e-09,-2.786113951122925005e-09,-3.482642438903656463e-09,-4.179170926684387921e-09,-4.875699414465119379e-09,-5.572227902245850838e-09,-6.268756390026582296e-09,-6.965284877807313754e-09,-7.661813365588045212e-09,-8.358341853368777497e-09,-9.054870341149509782e-09,-9.751398828930242068e-09,-1.044792731671097435e-08,-1.114445580449170664e-08,-1.184098429227243892e-08,-1.253751278005317121e-08,-1.323404126783390349e-08,-1.393056975561463578e-08,-1.462709824339536806e-08,-1.532362673117610035e-08,-1.602015521895683264e-08,-1.671668370673756492e-08,-1.741321219451829721e-08,-1.810974068229902949e-08,-1.880626917007976178e-08,-1.950279765786049406e-08,-2.019932614564122635e-08,-2.089585463342195863e-08,-2.159238312120269092e-08,-2.228891160898342320e-08,-2.298544009676415549e-08,-2.368196858454488777e-08,-2.437849707232562006e-08,-2.507502556010635234e-08,-2.577155404788708463e-08,-2.646808253566781691e-08,-2.716461102344854920e-08,-2.786113951122928148e-08,-2.855766799901001377e-08,-2.925419648679074606e-08,-2.995072497457147834e-08,-3.064725346235220732e-08,-3.134378195013293629e-08,-3.204031043791366527e-08,-3.273683892569439425e-08,-3.343336741347512322e-08,-3.412989590125585220e-08,-3.482642438903658118e-08,-3.552295287681731015e-08,-3.621948136459803913e-08,-3.691600985237876811e-08,-3.761253834015949708e-08,-3.830906682794022606e-08,-3.900559531572095504e-08,-3.970212380350168401e-08,-4.039865229128241299e-08,-4.109518077906314197e-08,-4.179170926684387094e-08,-4.248823775462459992e-08,-4.318476624240532890e-08,-4.388129473018605787e-08 +0.000000000000000000e+00,-6.779135949588103111e-10,-1.355827189917620622e-09,-2.033740784876430933e-09,-2.711654379835241244e-09,-3.389567974794051555e-09,-4.067481569752861867e-09,-4.745395164711671764e-09,-5.423308759670481662e-09,-6.101222354629291559e-09,-6.779135949588101457e-09,-7.457049544546911354e-09,-8.134963139505722079e-09,-8.812876734464532803e-09,-9.490790329423343528e-09,-1.016870392438215425e-08,-1.084661751934096498e-08,-1.152453111429977570e-08,-1.220244470925858643e-08,-1.288035830421739715e-08,-1.355827189917620788e-08,-1.423618549413501860e-08,-1.491409908909382933e-08,-1.559201268405264005e-08,-1.626992627901145078e-08,-1.694783987397026150e-08,-1.762575346892907222e-08,-1.830366706388788295e-08,-1.898158065884669367e-08,-1.965949425380550440e-08,-2.033740784876431512e-08,-2.101532144372312585e-08,-2.169323503868193657e-08,-2.237114863364074730e-08,-2.304906222859955802e-08,-2.372697582355836875e-08,-2.440488941851717947e-08,-2.508280301347599020e-08,-2.576071660843480092e-08,-2.643863020339361165e-08,-2.711654379835242237e-08,-2.779445739331123309e-08,-2.847237098827004382e-08,-2.915028458322885454e-08,-2.982819817818766527e-08,-3.050611177314647599e-08,-3.118402536810528672e-08,-3.186193896306409744e-08,-3.253985255802290817e-08,-3.321776615298171889e-08,-3.389567974794052962e-08,-3.457359334289934034e-08,-3.525150693785815107e-08,-3.592942053281696179e-08,-3.660733412777577252e-08,-3.728524772273458324e-08,-3.796316131769339397e-08,-3.864107491265220469e-08,-3.931898850761101541e-08,-3.999690210256982614e-08,-4.067481569752863686e-08,-4.135272929248744759e-08,-4.203064288744625831e-08,-4.270855648240506904e-08 +0.000000000000000000e+00,6.292324143404602689e-10,1.258464828680920538e-09,1.887697243021380703e-09,2.516929657361840662e-09,3.146162071702300621e-09,3.775394486042760580e-09,4.404626900383220125e-09,5.033859314723679670e-09,5.663091729064139215e-09,6.292324143404598760e-09,6.921556557745058306e-09,7.550788972085517851e-09,8.180021386425977396e-09,8.809253800766436941e-09,9.438486215106896486e-09,1.006771862944735603e-08,1.069695104378781558e-08,1.132618345812827512e-08,1.195541587246873467e-08,1.258464828680919421e-08,1.321388070114965376e-08,1.384311311549011330e-08,1.447234552983057285e-08,1.510157794417103239e-08,1.573081035851149194e-08,1.636004277285195148e-08,1.698927518719241103e-08,1.761850760153287057e-08,1.824774001587333012e-08,1.887697243021378966e-08,1.950620484455424921e-08,2.013543725889470875e-08,2.076466967323516830e-08,2.139390208757562784e-08,2.202313450191608739e-08,2.265236691625654693e-08,2.328159933059700648e-08,2.391083174493746603e-08,2.454006415927792557e-08,2.516929657361838512e-08,2.579852898795884466e-08,2.642776140229930421e-08,2.705699381663976375e-08,2.768622623098022330e-08,2.831545864532068284e-08,2.894469105966114239e-08,2.957392347400160193e-08,3.020315588834205817e-08,3.083238830268251110e-08,3.146162071702296402e-08,3.209085313136341695e-08,3.272008554570386988e-08,3.334931796004432281e-08,3.397855037438477573e-08,3.460778278872522866e-08,3.523701520306568159e-08,3.586624761740613452e-08,3.649548003174658745e-08,3.712471244608704037e-08,3.775394486042749330e-08,3.838317727476794623e-08,3.901240968910839916e-08,3.964164210344885208e-08 +0.000000000000000000e+00,6.503852071759526850e-10,1.300770414351905370e-09,1.951155621527858055e-09,2.601540828703810740e-09,3.251926035879763425e-09,3.902311243055716110e-09,4.552696450231668795e-09,5.203081657407621480e-09,5.853466864583574165e-09,6.503852071759526850e-09,7.154237278935479535e-09,7.804622486111432221e-09,8.455007693287385733e-09,9.105392900463339245e-09,9.755778107639292757e-09,1.040616331481524627e-08,1.105654852199119978e-08,1.170693372916715329e-08,1.235731893634310681e-08,1.300770414351906032e-08,1.365808935069501383e-08,1.430847455787096734e-08,1.495885976504692086e-08,1.560924497222287437e-08,1.625963017939882788e-08,1.691001538657478139e-08,1.756040059375073490e-08,1.821078580092668842e-08,1.886117100810264193e-08,1.951155621527859544e-08,2.016194142245454895e-08,2.081232662963050247e-08,2.146271183680645598e-08,2.211309704398240949e-08,2.276348225115836300e-08,2.341386745833431651e-08,2.406425266551027003e-08,2.471463787268622354e-08,2.536502307986217705e-08,2.601540828703813056e-08,2.666579349421408408e-08,2.731617870139003759e-08,2.796656390856599110e-08,2.861694911574194461e-08,2.926733432291789812e-08,2.991771953009385494e-08,3.056810473726981177e-08,3.121848994444576859e-08,3.186887515162172541e-08,3.251926035879768223e-08,3.316964556597363905e-08,3.382003077314959587e-08,3.447041598032555269e-08,3.512080118750150951e-08,3.577118639467746633e-08,3.642157160185342315e-08,3.707195680902937998e-08,3.772234201620533680e-08,3.837272722338129362e-08,3.902311243055725044e-08,3.967349763773320726e-08,4.032388284490916408e-08,4.097426805208512090e-08 +0.000000000000000000e+00,6.549807147772260200e-10,1.309961429554452040e-09,1.964942144331678164e-09,2.619922859108904494e-09,3.274903573886130824e-09,3.929884288663357154e-09,4.584865003440583484e-09,5.239845718217809815e-09,5.894826432995036145e-09,6.549807147772262475e-09,7.204787862549488805e-09,7.859768577326715963e-09,8.514749292103943947e-09,9.169730006881171932e-09,9.824710721658399917e-09,1.047969143643562790e-08,1.113467215121285589e-08,1.178965286599008387e-08,1.244463358076731185e-08,1.309961429554453984e-08,1.375459501032176782e-08,1.440957572509899581e-08,1.506455643987622379e-08,1.571953715465345178e-08,1.637451786943067976e-08,1.702949858420790775e-08,1.768447929898513573e-08,1.833946001376236372e-08,1.899444072853959170e-08,1.964942144331681969e-08,2.030440215809404767e-08,2.095938287287127565e-08,2.161436358764850364e-08,2.226934430242573162e-08,2.292432501720295961e-08,2.357930573198018759e-08,2.423428644675741558e-08,2.488926716153464356e-08,2.554424787631187155e-08,2.619922859108909953e-08,2.685420930586632752e-08,2.750919002064355550e-08,2.816417073542078349e-08,2.881915145019801147e-08,2.947413216497523945e-08,3.012911287975246744e-08,3.078409359452969873e-08,3.143907430930693003e-08,3.209405502408416132e-08,3.274903573886139261e-08,3.340401645363862391e-08,3.405899716841585520e-08,3.471397788319308649e-08,3.536895859797031779e-08,3.602393931274754908e-08,3.667892002752478037e-08,3.733390074230201167e-08,3.798888145707924296e-08,3.864386217185647425e-08,3.929884288663370555e-08,3.995382360141093684e-08,4.060880431618816813e-08,4.126378503096539943e-08 +0.000000000000000000e+00,-6.292324145278976380e-10,-1.258464829055795276e-09,-1.887697243583692707e-09,-2.516929658111590138e-09,-3.146162072639487570e-09,-3.775394487167385414e-09,-4.404626901695283259e-09,-5.033859316223181104e-09,-5.663091730751078949e-09,-6.292324145278976794e-09,-6.921556559806874638e-09,-7.550788974334772483e-09,-8.180021388862669501e-09,-8.809253803390566518e-09,-9.438486217918463536e-09,-1.006771863244636055e-08,-1.069695104697425757e-08,-1.132618346150215459e-08,-1.195541587603005161e-08,-1.258464829055794862e-08,-1.321388070508584564e-08,-1.384311311961374266e-08,-1.447234553414163968e-08,-1.510157794866953504e-08,-1.573081036319743040e-08,-1.636004277772532577e-08,-1.698927519225322113e-08,-1.761850760678111649e-08,-1.824774002130901186e-08,-1.887697243583690722e-08,-1.950620485036480258e-08,-2.013543726489269795e-08,-2.076466967942059331e-08,-2.139390209394848867e-08,-2.202313450847638404e-08,-2.265236692300427940e-08,-2.328159933753217476e-08,-2.391083175206007013e-08,-2.454006416658796549e-08,-2.516929658111586085e-08,-2.579852899564375622e-08,-2.642776141017165158e-08,-2.705699382469954694e-08,-2.768622623922744231e-08,-2.831545865375533767e-08,-2.894469106828323303e-08,-2.957392348281112839e-08,-3.020315589733902376e-08,-3.083238831186691581e-08,-3.146162072639480787e-08,-3.209085314092269992e-08,-3.272008555545059198e-08,-3.334931796997848403e-08,-3.397855038450637609e-08,-3.460778279903426814e-08,-3.523701521356216019e-08,-3.586624762809005225e-08,-3.649548004261794430e-08,-3.712471245714583636e-08,-3.775394487167372841e-08,-3.838317728620162047e-08,-3.901240970072951252e-08,-3.964164211525740458e-08 +0.000000000000000000e+00,-6.503852073608071826e-10,-1.300770414721614365e-09,-1.951155622082421444e-09,-2.601540829443228317e-09,-3.251926036804035189e-09,-3.902311244164842062e-09,-4.552696451525648934e-09,-5.203081658886455807e-09,-5.853466866247262679e-09,-6.503852073608069552e-09,-7.154237280968876424e-09,-7.804622488329682469e-09,-8.455007695690487687e-09,-9.105392903051292905e-09,-9.755778110412098123e-09,-1.040616331777290334e-08,-1.105654852513370856e-08,-1.170693373249451378e-08,-1.235731893985531900e-08,-1.300770414721612421e-08,-1.365808935457692943e-08,-1.430847456193773465e-08,-1.495885976929853987e-08,-1.560924497665934509e-08,-1.625963018402015030e-08,-1.691001539138095552e-08,-1.756040059874176074e-08,-1.821078580610256596e-08,-1.886117101346337118e-08,-1.951155622082417639e-08,-2.016194142818498161e-08,-2.081232663554578683e-08,-2.146271184290659205e-08,-2.211309705026739727e-08,-2.276348225762820248e-08,-2.341386746498900770e-08,-2.406425267234981292e-08,-2.471463787971061814e-08,-2.536502308707142336e-08,-2.601540829443222858e-08,-2.666579350179303379e-08,-2.731617870915383901e-08,-2.796656391651464423e-08,-2.861694912387544945e-08,-2.926733433123625467e-08,-2.991771953859705988e-08,-3.056810474595786179e-08,-3.121848995331866370e-08,-3.186887516067946561e-08,-3.251926036804026752e-08,-3.316964557540106943e-08,-3.382003078276187134e-08,-3.447041599012267325e-08,-3.512080119748347516e-08,-3.577118640484427707e-08,-3.642157161220507898e-08,-3.707195681956588089e-08,-3.772234202692668280e-08,-3.837272723428748471e-08,-3.902311244164828661e-08,-3.967349764900908852e-08,-4.032388285636989043e-08,-4.097426806373069234e-08 +0.000000000000000000e+00,-6.549807149451653979e-10,-1.309961429890330796e-09,-1.964942144835496090e-09,-2.619922859780661178e-09,-3.274903574725826266e-09,-3.929884289670991353e-09,-4.584865004616156855e-09,-5.239845719561322356e-09,-5.894826434506487857e-09,-6.549807149451653358e-09,-7.204787864396818860e-09,-7.859768579341984361e-09,-8.514749294287149862e-09,-9.169730009232315364e-09,-9.824710724177480865e-09,-1.047969143912264637e-08,-1.113467215406781187e-08,-1.178965286901297737e-08,-1.244463358395814287e-08,-1.309961429890330837e-08,-1.375459501384847387e-08,-1.440957572879363937e-08,-1.506455644373880322e-08,-1.571953715868396541e-08,-1.637451787362912761e-08,-1.702949858857428980e-08,-1.768447930351945199e-08,-1.833946001846461418e-08,-1.899444073340977638e-08,-1.964942144835493857e-08,-2.030440216330010076e-08,-2.095938287824526295e-08,-2.161436359319042515e-08,-2.226934430813558734e-08,-2.292432502308074953e-08,-2.357930573802591172e-08,-2.423428645297107392e-08,-2.488926716791623611e-08,-2.554424788286139830e-08,-2.619922859780656049e-08,-2.685420931275172269e-08,-2.750919002769688488e-08,-2.816417074264204707e-08,-2.881915145758720926e-08,-2.947413217253237146e-08,-3.012911288747753365e-08,-3.078409360242269584e-08,-3.143907431736785803e-08,-3.209405503231302023e-08,-3.274903574725818242e-08,-3.340401646220334461e-08,-3.405899717714850680e-08,-3.471397789209366900e-08,-3.536895860703883119e-08,-3.602393932198399338e-08,-3.667892003692915558e-08,-3.733390075187431777e-08,-3.798888146681947996e-08,-3.864386218176464215e-08,-3.929884289670980435e-08,-3.995382361165496654e-08,-4.060880432660012873e-08,-4.126378504154529092e-08 +0.000000000000000000e+00,5.939499798059498546e-10,1.187899959611899709e-09,1.781849939417849461e-09,2.375799919223799005e-09,2.969749899029748549e-09,3.563699878835698094e-09,4.157649858641647638e-09,4.751599838447597183e-09,5.345549818253546727e-09,5.939499798059496272e-09,6.533449777865445816e-09,7.127399757671395361e-09,7.721349737477344078e-09,8.315299717283293622e-09,8.909249697089243167e-09,9.503199676895192711e-09,1.009714965670114226e-08,1.069109963650709180e-08,1.128504961631304134e-08,1.187899959611899089e-08,1.247294957592494043e-08,1.306689955573088998e-08,1.366084953553683952e-08,1.425479951534278907e-08,1.484874949514873861e-08,1.544269947495468816e-08,1.603664945476063770e-08,1.663059943456658724e-08,1.722454941437253679e-08,1.781849939417848633e-08,1.841244937398443588e-08,1.900639935379038542e-08,1.960034933359633497e-08,2.019429931340228451e-08,2.078824929320823406e-08,2.138219927301418360e-08,2.197614925282013314e-08,2.257009923262608269e-08,2.316404921243203223e-08,2.375799919223798178e-08,2.435194917204393132e-08,2.494589915184988087e-08,2.553984913165583041e-08,2.613379911146177996e-08,2.672774909126772950e-08,2.732169907107367904e-08,2.791564905087962859e-08,2.850959903068557813e-08,2.910354901049152768e-08,2.969749899029747722e-08,3.029144897010342677e-08,3.088539894990937631e-08,3.147934892971532586e-08,3.207329890952127540e-08,3.266724888932722494e-08,3.326119886913317449e-08,3.385514884893912403e-08,3.444909882874507358e-08,3.504304880855102312e-08,3.563699878835697267e-08,3.623094876816292221e-08,3.682489874796887176e-08,3.741884872777482130e-08 +0.000000000000000000e+00,-9.633281845127898447e-20,-1.926656369025579689e-19,-2.889984553538369534e-19,-3.853312738051159379e-19,-4.816640922563949705e-19,-5.779969107076740031e-19,-6.743297291589530358e-19,-7.706625476102320684e-19,-8.669953660615111010e-19,-9.633281845127901336e-19,-1.059661002964069166e-18,-1.155993821415348199e-18,-1.252326639866627231e-18,-1.348659458317906264e-18,-1.444992276769185297e-18,-1.541325095220464329e-18,-1.637657913671743362e-18,-1.733990732123022395e-18,-1.830323550574301235e-18,-1.926656369025579882e-18,-2.022989187476858529e-18,-2.119322005928137177e-18,-2.215654824379415824e-18,-2.311987642830694472e-18,-2.408320461281973119e-18,-2.504653279733251767e-18,-2.600986098184530414e-18,-2.697318916635809062e-18,-2.793651735087087709e-18,-2.889984553538366356e-18,-2.986317371989645004e-18,-3.082650190440923651e-18,-3.178983008892202299e-18,-3.275315827343480946e-18,-3.371648645794759594e-18,-3.467981464246038241e-18,-3.564314282697316888e-18,-3.660647101148595536e-18,-3.756979919599874183e-18,-3.853312738051152831e-18,-3.949645556502431478e-18,-4.045978374953710126e-18,-4.142311193404988773e-18,-4.238644011856267420e-18,-4.334976830307546068e-18,-4.431309648758824715e-18,-4.527642467210103363e-18,-4.623975285661382010e-18,-4.720308104112660658e-18,-4.816640922563939305e-18,-4.912973741015217953e-18,-5.009306559466496600e-18,-5.105639377917775247e-18,-5.201972196369053895e-18,-5.298305014820332542e-18,-5.394637833271611190e-18,-5.490970651722889837e-18,-5.587303470174168485e-18,-5.683636288625447132e-18,-5.779969107076725779e-18,-5.876301925528004427e-18,-5.972634743979283074e-18,-6.068967562430561722e-18 +0.000000000000000000e+00,6.112507253562336616e-10,1.222501450712467323e-09,1.833752176068700881e-09,2.445002901424934233e-09,3.056253626781167584e-09,3.667504352137400936e-09,4.278755077493634287e-09,4.890005802849867639e-09,5.501256528206100990e-09,6.112507253562334342e-09,6.723757978918567693e-09,7.335008704274801044e-09,7.946259429631034396e-09,8.557510154987268574e-09,9.168760880343502753e-09,9.780011605699736932e-09,1.039126233105597111e-08,1.100251305641220529e-08,1.161376378176843947e-08,1.222501450712467365e-08,1.283626523248090782e-08,1.344751595783714200e-08,1.405876668319337618e-08,1.467001740854961036e-08,1.528126813390584619e-08,1.589251885926208203e-08,1.650376958461831786e-08,1.711502030997455369e-08,1.772627103533078953e-08,1.833752176068702536e-08,1.894877248604326119e-08,1.956002321139949702e-08,2.017127393675573286e-08,2.078252466211196869e-08,2.139377538746820452e-08,2.200502611282444036e-08,2.261627683818067619e-08,2.322752756353691202e-08,2.383877828889314786e-08,2.445002901424938369e-08,2.506127973960561952e-08,2.567253046496185535e-08,2.628378119031809119e-08,2.689503191567432702e-08,2.750628264103056285e-08,2.811753336638679869e-08,2.872878409174303452e-08,2.934003481709927035e-08,2.995128554245550618e-08,3.056253626781174533e-08,3.117378699316798447e-08,3.178503771852422361e-08,3.239628844388046275e-08,3.300753916923670189e-08,3.361878989459294104e-08,3.423004061994918018e-08,3.484129134530541932e-08,3.545254207066165846e-08,3.606379279601789760e-08,3.667504352137413674e-08,3.728629424673037589e-08,3.789754497208661503e-08,3.850879569744285417e-08 +0.000000000000000000e+00,6.468402705808289328e-10,1.293680541161657866e-09,1.940520811742486902e-09,2.587361082323316145e-09,3.234201352904145388e-09,3.881041623484974631e-09,4.527881894065804288e-09,5.174722164646633944e-09,5.821562435227463601e-09,6.468402705808293257e-09,7.115242976389122914e-09,7.762083246969952571e-09,8.408923517550782227e-09,9.055763788131611884e-09,9.702604058712441541e-09,1.034944432929327120e-08,1.099628459987410085e-08,1.164312487045493051e-08,1.228996514103576017e-08,1.293680541161658982e-08,1.358364568219741948e-08,1.423048595277824914e-08,1.487732622335907879e-08,1.552416649393990845e-08,1.617100676452073645e-08,1.681784703510156445e-08,1.746468730568239246e-08,1.811152757626322046e-08,1.875836784684404846e-08,1.940520811742487646e-08,2.005204838800570447e-08,2.069888865858653247e-08,2.134572892916736047e-08,2.199256919974818847e-08,2.263940947032901647e-08,2.328624974090984448e-08,2.393309001149067248e-08,2.457993028207150048e-08,2.522677055265232848e-08,2.587361082323315649e-08,2.652045109381398449e-08,2.716729136439481249e-08,2.781413163497564049e-08,2.846097190555646850e-08,2.910781217613729650e-08,2.975465244671812450e-08,3.040149271729895250e-08,3.104833298787978381e-08,3.169517325846061512e-08,3.234201352904144643e-08,3.298885379962227775e-08,3.363569407020310906e-08,3.428253434078394037e-08,3.492937461136477168e-08,3.557621488194560299e-08,3.622305515252643430e-08,3.686989542310726561e-08,3.751673569368809692e-08,3.816357596426892823e-08,3.881041623484975954e-08,3.945725650543059086e-08,4.010409677601142217e-08,4.075093704659225348e-08 +0.000000000000000000e+00,2.969910964568024665e-10,5.939821929136049331e-10,8.909732893704074513e-10,1.187964385827210073e-09,1.484955482284012695e-09,1.781946578740815316e-09,2.078937675197617938e-09,2.375928771654420560e-09,2.672919868111223181e-09,2.969910964568025803e-09,3.266902061024828424e-09,3.563893157481631046e-09,3.860884253938433668e-09,4.157875350395235876e-09,4.454866446852038084e-09,4.751857543308840292e-09,5.048848639765642500e-09,5.345839736222444708e-09,5.642830832679246916e-09,5.939821929136049124e-09,6.236813025592851332e-09,6.533804122049653540e-09,6.830795218506455748e-09,7.127786314963257956e-09,7.424777411420060164e-09,7.721768507876862372e-09,8.018759604333665408e-09,8.315750700790468443e-09,8.612741797247271478e-09,8.909732893704074513e-09,9.206723990160877549e-09,9.503715086617680584e-09,9.800706183074483619e-09,1.009769727953128665e-08,1.039468837598808969e-08,1.069167947244489272e-08,1.098867056890169576e-08,1.128566166535849880e-08,1.158265276181530183e-08,1.187964385827210487e-08,1.217663495472890790e-08,1.247362605118571094e-08,1.277061714764251397e-08,1.306760824409931701e-08,1.336459934055612004e-08,1.366159043701292308e-08,1.395858153346972611e-08,1.425557262992652915e-08,1.455256372638333218e-08,1.484955482284013522e-08,1.514654591929693825e-08,1.544353701575374129e-08,1.574052811221054432e-08,1.603751920866734736e-08,1.633451030512415039e-08,1.663150140158095343e-08,1.692849249803775646e-08,1.722548359449455950e-08,1.752247469095136254e-08,1.781946578740816557e-08,1.811645688386496861e-08,1.841344798032177164e-08,1.871043907677857468e-08 +0.000000000000000000e+00,-8.500906217681950474e-20,-1.700181243536390095e-19,-2.550271865304585142e-19,-3.400362487072780189e-19,-4.250453108840975237e-19,-5.100543730609170284e-19,-5.950634352377364850e-19,-6.800724974145559416e-19,-7.650815595913753982e-19,-8.500906217681948548e-19,-9.350996839450143114e-19,-1.020108746121833864e-18,-1.105117808298653417e-18,-1.190126870475472970e-18,-1.275135932652292523e-18,-1.360144994829112076e-18,-1.445154057005931629e-18,-1.530163119182751182e-18,-1.615172181359570734e-18,-1.700181243536390287e-18,-1.785190305713209840e-18,-1.870199367890029393e-18,-1.955208430066848946e-18,-2.040217492243668499e-18,-2.125226554420488052e-18,-2.210235616597307605e-18,-2.295244678774127157e-18,-2.380253740950946710e-18,-2.465262803127766263e-18,-2.550271865304585816e-18,-2.635280927481405369e-18,-2.720289989658224922e-18,-2.805299051835044475e-18,-2.890308114011864028e-18,-2.975317176188683581e-18,-3.060326238365503133e-18,-3.145335300542322686e-18,-3.230344362719142239e-18,-3.315353424895961792e-18,-3.400362487072781345e-18,-3.485371549249600898e-18,-3.570380611426420451e-18,-3.655389673603240004e-18,-3.740398735780059557e-18,-3.825407797956879109e-18,-3.910416860133698662e-18,-3.995425922310518215e-18,-4.080434984487337768e-18,-4.165444046664157321e-18,-4.250453108840976874e-18,-4.335462171017796427e-18,-4.420471233194615980e-18,-4.505480295371435532e-18,-4.590489357548255085e-18,-4.675498419725074638e-18,-4.760507481901894191e-18,-4.845516544078713744e-18,-4.930525606255533297e-18,-5.015534668432352850e-18,-5.100543730609172403e-18,-5.185552792785991956e-18,-5.270561854962811508e-18,-5.355570917139631061e-18 +0.000000000000000000e+00,-5.939499799985908101e-10,-1.187899959997181620e-09,-1.781849939995772430e-09,-2.375799919994363241e-09,-2.969749899992954051e-09,-3.563699879991544861e-09,-4.157649859990135671e-09,-4.751599839988726481e-09,-5.345549819987317291e-09,-5.939499799985908101e-09,-6.533449779984498911e-09,-7.127399759983089722e-09,-7.721349739981679704e-09,-8.315299719980269687e-09,-8.909249699978859670e-09,-9.503199679977449653e-09,-1.009714965997603964e-08,-1.069109963997462962e-08,-1.128504961997321960e-08,-1.187899959997180959e-08,-1.247294957997039957e-08,-1.306689955996898955e-08,-1.366084953996757953e-08,-1.425479951996616952e-08,-1.484874949996475950e-08,-1.544269947996334948e-08,-1.603664945996193947e-08,-1.663059943996052945e-08,-1.722454941995911943e-08,-1.781849939995770941e-08,-1.841244937995629940e-08,-1.900639935995488938e-08,-1.960034933995347936e-08,-2.019429931995206935e-08,-2.078824929995065933e-08,-2.138219927994924931e-08,-2.197614925994783930e-08,-2.257009923994642928e-08,-2.316404921994501926e-08,-2.375799919994360924e-08,-2.435194917994219923e-08,-2.494589915994078921e-08,-2.553984913993937919e-08,-2.613379911993796918e-08,-2.672774909993655916e-08,-2.732169907993514914e-08,-2.791564905993373912e-08,-2.850959903993232911e-08,-2.910354901993091909e-08,-2.969749899992950907e-08,-3.029144897992810237e-08,-3.088539895992669235e-08,-3.147934893992528233e-08,-3.207329891992387231e-08,-3.266724889992246230e-08,-3.326119887992105228e-08,-3.385514885991964226e-08,-3.444909883991823225e-08,-3.504304881991682223e-08,-3.563699879991541221e-08,-3.623094877991400219e-08,-3.682489875991259218e-08,-3.741884873991118216e-08 +0.000000000000000000e+00,-2.969910966494669967e-10,-5.939821932989339934e-10,-8.909732899484009383e-10,-1.187964386597867780e-09,-1.484955483247334621e-09,-1.781946579896801463e-09,-2.078937676546268098e-09,-2.375928773195734733e-09,-2.672919869845201367e-09,-2.969910966494668002e-09,-3.266902063144134637e-09,-3.563893159793601272e-09,-3.860884256443067907e-09,-4.157875353092534541e-09,-4.454866449742001176e-09,-4.751857546391467811e-09,-5.048848643040934446e-09,-5.345839739690401081e-09,-5.642830836339867715e-09,-5.939821932989334350e-09,-6.236813029638800985e-09,-6.533804126288267620e-09,-6.830795222937734254e-09,-7.127786319587200889e-09,-7.424777416236667524e-09,-7.721768512886134159e-09,-8.018759609535600794e-09,-8.315750706185067428e-09,-8.612741802834534063e-09,-8.909732899484000698e-09,-9.206723996133467333e-09,-9.503715092782933967e-09,-9.800706189432400602e-09,-1.009769728608186724e-08,-1.039468838273133387e-08,-1.069167947938080051e-08,-1.098867057603026714e-08,-1.128566167267973378e-08,-1.158265276932920041e-08,-1.187964386597866705e-08,-1.217663496262813368e-08,-1.247362605927760032e-08,-1.277061715592706695e-08,-1.306760825257653358e-08,-1.336459934922600022e-08,-1.366159044587546685e-08,-1.395858154252493349e-08,-1.425557263917440012e-08,-1.455256373582386676e-08,-1.484955483247333339e-08,-1.514654592912280168e-08,-1.544353702577227163e-08,-1.574052812242174157e-08,-1.603751921907121151e-08,-1.633451031572068146e-08,-1.663150141237015140e-08,-1.692849250901962134e-08,-1.722548360566909129e-08,-1.752247470231856123e-08,-1.781946579896803117e-08,-1.811645689561750112e-08,-1.841344799226697106e-08,-1.871043908891644100e-08 +0.000000000000000000e+00,-6.112507255462432522e-10,-1.222501451092486504e-09,-1.833752176638729653e-09,-2.445002902184972595e-09,-3.056253627731215537e-09,-3.667504353277458479e-09,-4.278755078823701008e-09,-4.890005804369943536e-09,-5.501256529916186064e-09,-6.112507255462428593e-09,-6.723757981008671121e-09,-7.335008706554913650e-09,-7.946259432101156178e-09,-8.557510157647398706e-09,-9.168760883193641235e-09,-9.780011608739883763e-09,-1.039126233428612629e-08,-1.100251305983236882e-08,-1.161376378537861135e-08,-1.222501451092485388e-08,-1.283626523647109641e-08,-1.344751596201733893e-08,-1.405876668756358146e-08,-1.467001741310982399e-08,-1.528126813865606652e-08,-1.589251886420230905e-08,-1.650376958974855158e-08,-1.711502031529479410e-08,-1.772627104084103663e-08,-1.833752176638727916e-08,-1.894877249193352169e-08,-1.956002321747976422e-08,-2.017127394302600675e-08,-2.078252466857224927e-08,-2.139377539411849180e-08,-2.200502611966473433e-08,-2.261627684521097686e-08,-2.322752757075721939e-08,-2.383877829630346192e-08,-2.445002902184970444e-08,-2.506127974739594697e-08,-2.567253047294218950e-08,-2.628378119848843203e-08,-2.689503192403467456e-08,-2.750628264958091709e-08,-2.811753337512715962e-08,-2.872878410067340214e-08,-2.934003482621964467e-08,-2.995128555176588720e-08,-3.056253627731213304e-08,-3.117378700285837887e-08,-3.178503772840462471e-08,-3.239628845395087055e-08,-3.300753917949711639e-08,-3.361878990504336222e-08,-3.423004063058960806e-08,-3.484129135613585390e-08,-3.545254208168209973e-08,-3.606379280722834557e-08,-3.667504353277459141e-08,-3.728629425832083725e-08,-3.789754498386708308e-08,-3.850879570941332892e-08 +0.000000000000000000e+00,-6.468402707507688470e-10,-1.293680541501537694e-09,-1.940520812252306438e-09,-2.587361083003074974e-09,-3.234201353753843511e-09,-3.881041624504612048e-09,-4.527881895255380998e-09,-5.174722166006149949e-09,-5.821562436756918899e-09,-6.468402707507687849e-09,-7.115242978258456800e-09,-7.762083249009225750e-09,-8.408923519759994701e-09,-9.055763790510763651e-09,-9.702604061261532601e-09,-1.034944433201230155e-08,-1.099628460276307050e-08,-1.164312487351383945e-08,-1.228996514426460840e-08,-1.293680541501537735e-08,-1.358364568576614630e-08,-1.423048595651691525e-08,-1.487732622726768420e-08,-1.552416649801845481e-08,-1.617100676876922541e-08,-1.681784703951999602e-08,-1.746468731027076662e-08,-1.811152758102153723e-08,-1.875836785177230783e-08,-1.940520812252307844e-08,-2.005204839327384904e-08,-2.069888866402461965e-08,-2.134572893477539025e-08,-2.199256920552616086e-08,-2.263940947627693146e-08,-2.328624974702770207e-08,-2.393309001777847267e-08,-2.457993028852924328e-08,-2.522677055928001388e-08,-2.587361083003078449e-08,-2.652045110078155509e-08,-2.716729137153232569e-08,-2.781413164228309630e-08,-2.846097191303386690e-08,-2.910781218378463751e-08,-2.975465245453540811e-08,-3.040149272528618203e-08,-3.104833299603695594e-08,-3.169517326678772985e-08,-3.234201353753850377e-08,-3.298885380828927768e-08,-3.363569407904005159e-08,-3.428253434979082551e-08,-3.492937462054159942e-08,-3.557621489129237333e-08,-3.622305516204314725e-08,-3.686989543279392116e-08,-3.751673570354469508e-08,-3.816357597429546899e-08,-3.881041624504624290e-08,-3.945725651579701682e-08,-4.010409678654779073e-08,-4.075093705729856464e-08 +0.000000000000000000e+00,1.405859163972491386e-09,2.811718327944982772e-09,4.217577491917473744e-09,5.623436655889964717e-09,7.029295819862455689e-09,8.435154983834947489e-09,9.841014147807439288e-09,1.124687331177993109e-08,1.265273247575242289e-08,1.405859163972491469e-08,1.546445080369740814e-08,1.687030996766990160e-08,1.827616913164239505e-08,1.968202829561488850e-08,2.108788745958738196e-08,2.249374662355987541e-08,2.389960578753236886e-08,2.530546495150486232e-08,2.671132411547735577e-08,2.811718327944984923e-08,2.952304244342234268e-08,3.092890160739483613e-08,3.233476077136732959e-08,3.374061993533982304e-08,3.514647909931231650e-08,3.655233826328480995e-08,3.795819742725730340e-08,3.936405659122979686e-08,4.076991575520229031e-08,4.217577491917478377e-08,4.358163408314727722e-08,4.498749324711977067e-08,4.639335241109226413e-08,4.779921157506475758e-08,4.920507073903725104e-08,5.061092990300974449e-08,5.201678906698223794e-08,5.342264823095473140e-08,5.482850739492722485e-08,5.623436655889971831e-08,5.764022572287221176e-08,5.904608488684470521e-08,6.045194405081719867e-08,6.185780321478968550e-08,6.326366237876217234e-08,6.466952154273465918e-08,6.607538070670714601e-08,6.748123987067963285e-08,6.888709903465211969e-08,7.029295819862460652e-08,7.169881736259709336e-08,7.310467652656958020e-08,7.451053569054206703e-08,7.591639485451455387e-08,7.732225401848704071e-08,7.872811318245952754e-08,8.013397234643201438e-08,8.153983151040450122e-08,8.294569067437698805e-08,8.435154983834947489e-08,8.575740900232196172e-08,8.716326816629444856e-08,8.856912733026693540e-08 +0.000000000000000000e+00,2.132964315166236352e-09,4.265928630332472705e-09,6.398892945498709470e-09,8.531857260664947063e-09,1.066482157583118466e-08,1.279778589099742225e-08,1.493075020616365984e-08,1.706371452132989744e-08,1.919667883649613503e-08,2.132964315166237262e-08,2.346260746682861021e-08,2.559557178199484781e-08,2.772853609716108540e-08,2.986150041232731968e-08,3.199446472749355397e-08,3.412742904265978825e-08,3.626039335782602254e-08,3.839335767299225682e-08,4.052632198815849111e-08,4.265928630332472539e-08,4.479225061849095967e-08,4.692521493365719396e-08,4.905817924882342824e-08,5.119114356398966253e-08,5.332410787915589681e-08,5.545707219432213110e-08,5.759003650948836538e-08,5.972300082465459967e-08,6.185596513982084057e-08,6.398892945498708147e-08,6.612189377015332237e-08,6.825485808531956327e-08,7.038782240048580417e-08,7.252078671565204508e-08,7.465375103081828598e-08,7.678671534598452688e-08,7.891967966115076778e-08,8.105264397631700868e-08,8.318560829148324958e-08,8.531857260664949049e-08,8.745153692181573139e-08,8.958450123698197229e-08,9.171746555214821319e-08,9.385042986731445409e-08,9.598339418248069499e-08,9.811635849764693590e-08,1.002493228128131768e-07,1.023822871279794177e-07,1.045152514431456586e-07,1.066482157583118995e-07,1.087811800734781404e-07,1.109141443886443813e-07,1.130471087038106222e-07,1.151800730189768631e-07,1.173130373341431040e-07,1.194460016493093317e-07,1.215789659644755593e-07,1.237119302796417870e-07,1.258448945948080147e-07,1.279778589099742423e-07,1.301108232251404700e-07,1.322437875403066977e-07,1.343767518554729253e-07 +0.000000000000000000e+00,-8.223927311409622934e-20,-1.644785462281924587e-19,-2.467178193422887000e-19,-3.289570924563849655e-19,-4.111963655704812309e-19,-4.934356386845774964e-19,-5.756749117986738100e-19,-6.579141849127701236e-19,-7.401534580268664372e-19,-8.223927311409627508e-19,-9.046320042550590644e-19,-9.868712773691553780e-19,-1.069110550483251692e-18,-1.151349823597348005e-18,-1.233589096711444319e-18,-1.315828369825540632e-18,-1.398067642939636946e-18,-1.480306916053733260e-18,-1.562546189167829573e-18,-1.644785462281925887e-18,-1.727024735396022200e-18,-1.809264008510118514e-18,-1.891503281624214827e-18,-1.973742554738311141e-18,-2.055981827852407455e-18,-2.138221100966503768e-18,-2.220460374080600082e-18,-2.302699647194696395e-18,-2.384938920308792709e-18,-2.467178193422889023e-18,-2.549417466536985336e-18,-2.631656739651081650e-18,-2.713896012765177963e-18,-2.796135285879274277e-18,-2.878374558993370591e-18,-2.960613832107466904e-18,-3.042853105221563218e-18,-3.125092378335659531e-18,-3.207331651449755845e-18,-3.289570924563852159e-18,-3.371810197677948472e-18,-3.454049470792044786e-18,-3.536288743906141099e-18,-3.618528017020237798e-18,-3.700767290134334497e-18,-3.783006563248431196e-18,-3.865245836362527895e-18,-3.947485109476624593e-18,-4.029724382590721292e-18,-4.111963655704817991e-18,-4.194202928818914690e-18,-4.276442201933011388e-18,-4.358681475047108087e-18,-4.440920748161204786e-18,-4.523160021275301485e-18,-4.605399294389398184e-18,-4.687638567503494882e-18,-4.769877840617591581e-18,-4.852117113731688280e-18,-4.934356386845784979e-18,-5.016595659959881677e-18,-5.098834933073978376e-18,-5.181074206188075075e-18 +0.000000000000000000e+00,1.602813102057161504e-09,3.205626204114323008e-09,4.808439306171484718e-09,6.411252408228646843e-09,8.014065510285809794e-09,9.616878612342972745e-09,1.121969171440013570e-08,1.282250481645729865e-08,1.442531791851446160e-08,1.602813102057162621e-08,1.763094412262879081e-08,1.923375722468595542e-08,2.083657032674312002e-08,2.243938342880028463e-08,2.404219653085744923e-08,2.564500963291461384e-08,2.724782273497177845e-08,2.885063583702894305e-08,3.045344893908610435e-08,3.205626204114326565e-08,3.365907514320042694e-08,3.526188824525758824e-08,3.686470134731474954e-08,3.846751444937191083e-08,4.007032755142907213e-08,4.167314065348623343e-08,4.327595375554339473e-08,4.487876685760055602e-08,4.648157995965771732e-08,4.808439306171487862e-08,4.968720616377203991e-08,5.129001926582920121e-08,5.289283236788636251e-08,5.449564546994352381e-08,5.609845857200068510e-08,5.770127167405784640e-08,5.930408477611500770e-08,6.090689787817216899e-08,6.250971098022933029e-08,6.411252408228649159e-08,6.571533718434365288e-08,6.731815028640081418e-08,6.892096338845797548e-08,7.052377649051513678e-08,7.212658959257229807e-08,7.372940269462945937e-08,7.533221579668662067e-08,7.693502889874378196e-08,7.853784200080094326e-08,8.014065510285810456e-08,8.174346820491526586e-08,8.334628130697242715e-08,8.494909440902958845e-08,8.655190751108674975e-08,8.815472061314391104e-08,8.975753371520107234e-08,9.136034681725823364e-08,9.296315991931539493e-08,9.456597302137255623e-08,9.616878612342971753e-08,9.777159922548687883e-08,9.937441232754404012e-08,1.009772254296012014e-07 +0.000000000000000000e+00,2.104634494530863550e-09,4.209268989061727099e-09,6.313903483592590649e-09,8.418537978123454199e-09,1.052317247265431692e-08,1.262780696718517964e-08,1.473244146171604237e-08,1.683707595624690509e-08,1.894171045077776781e-08,2.104634494530863053e-08,2.315097943983949326e-08,2.525561393437035598e-08,2.736024842890121870e-08,2.946488292343208142e-08,3.156951741796294745e-08,3.367415191249381679e-08,3.577878640702468613e-08,3.788342090155555547e-08,3.998805539608642481e-08,4.209268989061729415e-08,4.419732438514816349e-08,4.630195887967903283e-08,4.840659337420990217e-08,5.051122786874077151e-08,5.261586236327164085e-08,5.472049685780251019e-08,5.682513135233337953e-08,5.892976584686424887e-08,6.103440034139511821e-08,6.313903483592598755e-08,6.524366933045685689e-08,6.734830382498772623e-08,6.945293831951859557e-08,7.155757281404946491e-08,7.366220730858033425e-08,7.576684180311120359e-08,7.787147629764207293e-08,7.997611079217294227e-08,8.208074528670381161e-08,8.418537978123468095e-08,8.629001427576555029e-08,8.839464877029641963e-08,9.049928326482728897e-08,9.260391775935815831e-08,9.470855225388902765e-08,9.681318674841989699e-08,9.891782124295076633e-08,1.010224557374816357e-07,1.031270902320125050e-07,1.052317247265433744e-07,1.073363592210742437e-07,1.094409937156051130e-07,1.115456282101359824e-07,1.136502627046668517e-07,1.157548971991977211e-07,1.178595316937285904e-07,1.199641661882594730e-07,1.220688006827903688e-07,1.241734351773212646e-07,1.262780696718521604e-07,1.283827041663830562e-07,1.304873386609139520e-07,1.325919731554448478e-07 +0.000000000000000000e+00,1.382047305213638923e-09,2.764094610427277847e-09,4.146141915640916770e-09,5.528189220854555693e-09,6.910236526068194617e-09,8.292283831281833540e-09,9.674331136495472464e-09,1.105637844170911139e-08,1.243842574692275031e-08,1.382047305213638923e-08,1.520252035735002816e-08,1.658456766256366708e-08,1.796661496777730600e-08,1.934866227299094493e-08,2.073070957820458385e-08,2.211275688341822277e-08,2.349480418863186170e-08,2.487685149384550062e-08,2.625889879905913954e-08,2.764094610427277847e-08,2.902299340948641739e-08,3.040504071470005631e-08,3.178708801991369855e-08,3.316913532512734078e-08,3.455118263034098301e-08,3.593322993555462524e-08,3.731527724076826747e-08,3.869732454598190971e-08,4.007937185119555194e-08,4.146141915640919417e-08,4.284346646162283640e-08,4.422551376683647863e-08,4.560756107205012087e-08,4.698960837726376310e-08,4.837165568247740533e-08,4.975370298769104756e-08,5.113575029290468980e-08,5.251779759811833203e-08,5.389984490333197426e-08,5.528189220854561649e-08,5.666393951375925872e-08,5.804598681897290096e-08,5.942803412418654319e-08,6.081008142940017880e-08,6.219212873461381442e-08,6.357417603982745003e-08,6.495622334504108565e-08,6.633827065025472126e-08,6.772031795546835688e-08,6.910236526068199249e-08,7.048441256589562810e-08,7.186645987110926372e-08,7.324850717632289933e-08,7.463055448153653495e-08,7.601260178675017056e-08,7.739464909196380618e-08,7.877669639717744179e-08,8.015874370239107741e-08,8.154079100760471302e-08,8.292283831281834864e-08,8.430488561803198425e-08,8.568693292324561987e-08,8.706898022845925548e-08 +0.000000000000000000e+00,1.065129220926202260e-09,2.130258441852404520e-09,3.195387662778606781e-09,4.260516883704809041e-09,5.325646104631010887e-09,6.390775325557212734e-09,7.455904546483414581e-09,8.521033767409616427e-09,9.586162988335818274e-09,1.065129220926202012e-08,1.171642143018822197e-08,1.278155065111442381e-08,1.384667987204062566e-08,1.491180909296682585e-08,1.597693831389302439e-08,1.704206753481922293e-08,1.810719675574542147e-08,1.917232597667162000e-08,2.023745519759781854e-08,2.130258441852401708e-08,2.236771363945021562e-08,2.343284286037641416e-08,2.449797208130261269e-08,2.556310130222881123e-08,2.662823052315500977e-08,2.769335974408120831e-08,2.875848896500740685e-08,2.982361818593360538e-08,3.088874740685980392e-08,3.195387662778600246e-08,3.301900584871220100e-08,3.408413506963839953e-08,3.514926429056459807e-08,3.621439351149079661e-08,3.727952273241699515e-08,3.834465195334319369e-08,3.940978117426939222e-08,4.047491039519559076e-08,4.154003961612178930e-08,4.260516883704798784e-08,4.367029805797418638e-08,4.473542727890038491e-08,4.580055649982658345e-08,4.686568572075278199e-08,4.793081494167898053e-08,4.899594416260517907e-08,5.006107338353137760e-08,5.112620260445757614e-08,5.219133182538377468e-08,5.325646104630997322e-08,5.432159026723617175e-08,5.538671948816237029e-08,5.645184870908856883e-08,5.751697793001476737e-08,5.858210715094096591e-08,5.964723637186717106e-08,6.071236559279338283e-08,6.177749481371959461e-08,6.284262403464580638e-08,6.390775325557201815e-08,6.497288247649822993e-08,6.603801169742444170e-08,6.710314091835065347e-08 +0.000000000000000000e+00,-7.983655413627871825e-20,-1.596731082725574365e-19,-2.395096624088361427e-19,-3.193462165451148249e-19,-3.991827706813935070e-19,-4.790193248176721891e-19,-5.588558789539508713e-19,-6.386924330902295534e-19,-7.185289872265082355e-19,-7.983655413627869177e-19,-8.782020954990655998e-19,-9.580386496353441857e-19,-1.037875203771622772e-18,-1.117711757907901357e-18,-1.197548312044179943e-18,-1.277384866180458529e-18,-1.357221420316737115e-18,-1.437057974453015701e-18,-1.516894528589294287e-18,-1.596731082725572872e-18,-1.676567636861851458e-18,-1.756404190998130044e-18,-1.836240745134408437e-18,-1.916077299270686831e-18,-1.995913853406965224e-18,-2.075750407543243617e-18,-2.155586961679522010e-18,-2.235423515815800404e-18,-2.315260069952078797e-18,-2.395096624088357190e-18,-2.474933178224635583e-18,-2.554769732360913977e-18,-2.634606286497192370e-18,-2.714442840633470763e-18,-2.794279394769749156e-18,-2.874115948906027550e-18,-2.953952503042305943e-18,-3.033789057178584336e-18,-3.113625611314862729e-18,-3.193462165451141123e-18,-3.273298719587419516e-18,-3.353135273723697909e-18,-3.432971827859976302e-18,-3.512808381996254696e-18,-3.592644936132533089e-18,-3.672481490268811482e-18,-3.752318044405089875e-18,-3.832154598541368269e-18,-3.911991152677646662e-18,-3.991827706813925055e-18,-4.071664260950203448e-18,-4.151500815086481842e-18,-4.231337369222760235e-18,-4.311173923359038628e-18,-4.391010477495317021e-18,-4.470847031631595415e-18,-4.550683585767873808e-18,-4.630520139904152201e-18,-4.710356694040430594e-18,-4.790193248176708988e-18,-4.870029802312987381e-18,-4.949866356449265774e-18,-5.029702910585544167e-18 +0.000000000000000000e+00,-1.405859164143726665e-09,-2.811718328287453330e-09,-4.217577492431180202e-09,-5.623436656574907487e-09,-7.029295820718634773e-09,-8.435154984862362058e-09,-9.841014149006088516e-09,-1.124687331314981497e-08,-1.265273247729354143e-08,-1.405859164143726789e-08,-1.546445080558099435e-08,-1.687030996972472081e-08,-1.827616913386844727e-08,-1.968202829801217372e-08,-2.108788746215590018e-08,-2.249374662629962664e-08,-2.389960579044335310e-08,-2.530546495458707956e-08,-2.671132411873080601e-08,-2.811718328287453247e-08,-2.952304244701825893e-08,-3.092890161116198208e-08,-3.233476077530570192e-08,-3.374061993944942176e-08,-3.514647910359314160e-08,-3.655233826773686144e-08,-3.795819743188058128e-08,-3.936405659602430112e-08,-4.076991576016802097e-08,-4.217577492431174081e-08,-4.358163408845546065e-08,-4.498749325259918049e-08,-4.639335241674290033e-08,-4.779921158088662017e-08,-4.920507074503034001e-08,-5.061092990917405985e-08,-5.201678907331777969e-08,-5.342264823746149953e-08,-5.482850740160521937e-08,-5.623436656574893921e-08,-5.764022572989265905e-08,-5.904608489403637890e-08,-6.045194405818009874e-08,-6.185780322232381858e-08,-6.326366238646753842e-08,-6.466952155061125826e-08,-6.607538071475497810e-08,-6.748123987889869794e-08,-6.888709904304241778e-08,-7.029295820718613762e-08,-7.169881737132985746e-08,-7.310467653547357730e-08,-7.451053569961729714e-08,-7.591639486376101698e-08,-7.732225402790473683e-08,-7.872811319204845667e-08,-8.013397235619217651e-08,-8.153983152033589635e-08,-8.294569068447961619e-08,-8.435154984862333603e-08,-8.575740901276705587e-08,-8.716326817691077571e-08,-8.856912734105449555e-08 +0.000000000000000000e+00,-2.132964315330441630e-09,-4.265928630660883260e-09,-6.398892945991325304e-09,-8.531857261321768174e-09,-1.066482157665221105e-08,-1.279778589198265392e-08,-1.493075020731309679e-08,-1.706371452264353966e-08,-1.919667883797398253e-08,-2.132964315330442540e-08,-2.346260746863486827e-08,-2.559557178396531114e-08,-2.772853609929575401e-08,-2.986150041462619357e-08,-3.199446472995663314e-08,-3.412742904528707270e-08,-3.626039336061751226e-08,-3.839335767594795182e-08,-4.052632199127839138e-08,-4.265928630660883095e-08,-4.479225062193927051e-08,-4.692521493726971007e-08,-4.905817925260014963e-08,-5.119114356793058919e-08,-5.332410788326102876e-08,-5.545707219859146832e-08,-5.759003651392190788e-08,-5.972300082925234744e-08,-6.185596514458278039e-08,-6.398892945991321333e-08,-6.612189377524364628e-08,-6.825485809057407922e-08,-7.038782240590451217e-08,-7.252078672123494511e-08,-7.465375103656537805e-08,-7.678671535189581100e-08,-7.891967966722624394e-08,-8.105264398255667689e-08,-8.318560829788710983e-08,-8.531857261321754278e-08,-8.745153692854797572e-08,-8.958450124387840867e-08,-9.171746555920884161e-08,-9.385042987453927456e-08,-9.598339418986970750e-08,-9.811635850520014045e-08,-1.002493228205305734e-07,-1.023822871358610063e-07,-1.045152514511914393e-07,-1.066482157665218722e-07,-1.087811800818523052e-07,-1.109141443971827381e-07,-1.130471087125131711e-07,-1.151800730278436040e-07,-1.173130373431740369e-07,-1.194460016585044567e-07,-1.215789659738348764e-07,-1.237119302891652961e-07,-1.258448946044957158e-07,-1.279778589198261355e-07,-1.301108232351565552e-07,-1.322437875504869749e-07,-1.343767518658173946e-07 +0.000000000000000000e+00,-1.065129221090618676e-09,-2.130258442181237352e-09,-3.195387663271855821e-09,-4.260516884362473876e-09,-5.325646105453091932e-09,-6.390775326543709987e-09,-7.455904547634328870e-09,-8.521033768724947752e-09,-9.586162989815566635e-09,-1.065129221090618552e-08,-1.171642143199680440e-08,-1.278155065308742328e-08,-1.384667987417804217e-08,-1.491180909526866105e-08,-1.597693831635927993e-08,-1.704206753744989881e-08,-1.810719675854051770e-08,-1.917232597963113658e-08,-2.023745520072175546e-08,-2.130258442181237434e-08,-2.236771364290299323e-08,-2.343284286399361211e-08,-2.449797208508423099e-08,-2.556310130617484987e-08,-2.662823052726546876e-08,-2.769335974835608764e-08,-2.875848896944670652e-08,-2.982361819053732871e-08,-3.088874741162795090e-08,-3.195387663271857310e-08,-3.301900585380919529e-08,-3.408413507489981748e-08,-3.514926429599043967e-08,-3.621439351708106186e-08,-3.727952273817168405e-08,-3.834465195926230624e-08,-3.940978118035292844e-08,-4.047491040144355063e-08,-4.154003962253417282e-08,-4.260516884362479501e-08,-4.367029806471541720e-08,-4.473542728580603939e-08,-4.580055650689666158e-08,-4.686568572798728377e-08,-4.793081494907790597e-08,-4.899594417016852816e-08,-5.006107339125915035e-08,-5.112620261234977254e-08,-5.219133183344039473e-08,-5.325646105453101692e-08,-5.432159027562163911e-08,-5.538671949671226131e-08,-5.645184871780288350e-08,-5.751697793889350569e-08,-5.858210715998412788e-08,-5.964723638107475007e-08,-6.071236560216537888e-08,-6.177749482325600769e-08,-6.284262404434663650e-08,-6.390775326543726531e-08,-6.497288248652789411e-08,-6.603801170761852292e-08,-6.710314092870915173e-08 +0.000000000000000000e+00,-1.602813102224826258e-09,-3.205626204449652515e-09,-4.808439306674479187e-09,-6.411252408899305858e-09,-8.014065511124132529e-09,-9.616878613348958374e-09,-1.121969171557378422e-08,-1.282250481779861006e-08,-1.442531792002343591e-08,-1.602813102224826175e-08,-1.763094412447308925e-08,-1.923375722669791675e-08,-2.083657032892274425e-08,-2.243938343114757174e-08,-2.404219653337239924e-08,-2.564500963559722674e-08,-2.724782273782205424e-08,-2.885063584004688174e-08,-3.045344894227170924e-08,-3.205626204449653674e-08,-3.365907514672136423e-08,-3.526188824894619173e-08,-3.686470135117101923e-08,-3.846751445339584673e-08,-4.007032755562067423e-08,-4.167314065784550173e-08,-4.327595376007032922e-08,-4.487876686229515672e-08,-4.648157996451998422e-08,-4.808439306674481172e-08,-4.968720616896963922e-08,-5.129001927119446672e-08,-5.289283237341929422e-08,-5.449564547564412171e-08,-5.609845857786894921e-08,-5.770127168009377671e-08,-5.930408478231860421e-08,-6.090689788454343171e-08,-6.250971098676826582e-08,-6.411252408899309994e-08,-6.571533719121793406e-08,-6.731815029344276817e-08,-6.892096339566760229e-08,-7.052377649789243640e-08,-7.212658960011727052e-08,-7.372940270234210464e-08,-7.533221580456693875e-08,-7.693502890679177287e-08,-7.853784200901660698e-08,-8.014065511124144110e-08,-8.174346821346627522e-08,-8.334628131569110933e-08,-8.494909441791594345e-08,-8.655190752014077756e-08,-8.815472062236561168e-08,-8.975753372459044580e-08,-9.136034682681527991e-08,-9.296315992904011403e-08,-9.456597303126494814e-08,-9.616878613348978226e-08,-9.777159923571461638e-08,-9.937441233793945049e-08,-1.009772254401642846e-07 +0.000000000000000000e+00,-2.104634494690358861e-09,-4.209268989380717722e-09,-6.313903484071076583e-09,-8.418537978761435444e-09,-1.052317247345179513e-08,-1.262780696814215482e-08,-1.473244146283251451e-08,-1.683707595752287420e-08,-1.894171045221323389e-08,-2.104634494690359357e-08,-2.315097944159395326e-08,-2.525561393628431295e-08,-2.736024843097467264e-08,-2.946488292566503233e-08,-3.156951742035539201e-08,-3.367415191504575501e-08,-3.577878640973611801e-08,-3.788342090442648101e-08,-3.998805539911684400e-08,-4.209268989380720700e-08,-4.419732438849757000e-08,-4.630195888318793299e-08,-4.840659337787829599e-08,-5.051122787256865899e-08,-5.261586236725902198e-08,-5.472049686194938498e-08,-5.682513135663974798e-08,-5.892976585133011097e-08,-6.103440034602047397e-08,-6.313903484071083697e-08,-6.524366933540119997e-08,-6.734830383009156296e-08,-6.945293832478192596e-08,-7.155757281947228896e-08,-7.366220731416265195e-08,-7.576684180885301495e-08,-7.787147630354337795e-08,-7.997611079823374094e-08,-8.208074529292410394e-08,-8.418537978761446694e-08,-8.629001428230482993e-08,-8.839464877699519293e-08,-9.049928327168555593e-08,-9.260391776637591893e-08,-9.470855226106628192e-08,-9.681318675575664492e-08,-9.891782125044700792e-08,-1.010224557451373709e-07,-1.031270902398277339e-07,-1.052317247345180969e-07,-1.073363592292084599e-07,-1.094409937238988229e-07,-1.115456282185891859e-07,-1.136502627132795489e-07,-1.157548972079699119e-07,-1.178595317026602749e-07,-1.199641661973506247e-07,-1.220688006920409744e-07,-1.241734351867313242e-07,-1.262780696814216739e-07,-1.283827041761120237e-07,-1.304873386708023735e-07,-1.325919731654927232e-07 +0.000000000000000000e+00,-1.382047305378769403e-09,-2.764094610757538805e-09,-4.146141916136308621e-09,-5.528189221515078438e-09,-6.910236526893848254e-09,-8.292283832272617243e-09,-9.674331137651386232e-09,-1.105637844303015522e-08,-1.243842574840892421e-08,-1.382047305378769320e-08,-1.520252035916646053e-08,-1.658456766454522787e-08,-1.796661496992399520e-08,-1.934866227530276254e-08,-2.073070958068152987e-08,-2.211275688606029721e-08,-2.349480419143906454e-08,-2.487685149681783188e-08,-2.625889880219659921e-08,-2.764094610757536655e-08,-2.902299341295413388e-08,-3.040504071833290122e-08,-3.178708802371166855e-08,-3.316913532909043588e-08,-3.455118263446920322e-08,-3.593322993984797055e-08,-3.731527724522673789e-08,-3.869732455060550522e-08,-4.007937185598427256e-08,-4.146141916136303989e-08,-4.284346646674180723e-08,-4.422551377212057456e-08,-4.560756107749934190e-08,-4.698960838287810923e-08,-4.837165568825687657e-08,-4.975370299363564390e-08,-5.113575029901441124e-08,-5.251779760439317857e-08,-5.389984490977194590e-08,-5.528189221515071324e-08,-5.666393952052948057e-08,-5.804598682590824791e-08,-5.942803413128701524e-08,-6.081008143666578920e-08,-6.219212874204455653e-08,-6.357417604742332387e-08,-6.495622335280209120e-08,-6.633827065818085853e-08,-6.772031796355962587e-08,-6.910236526893839320e-08,-7.048441257431716054e-08,-7.186645987969592787e-08,-7.324850718507469521e-08,-7.463055449045346254e-08,-7.601260179583222988e-08,-7.739464910121099721e-08,-7.877669640658976455e-08,-8.015874371196853188e-08,-8.154079101734729922e-08,-8.292283832272606655e-08,-8.430488562810483389e-08,-8.568693293348360122e-08,-8.706898023886236855e-08 +0.000000000000000000e+00,1.079448620946548032e-09,2.158897241893096064e-09,3.238345862839643890e-09,4.317794483786191301e-09,5.397243104732738713e-09,6.476691725679286125e-09,7.556140346625833537e-09,8.635588967572380948e-09,9.715037588518928360e-09,1.079448620946547577e-08,1.187393483041202318e-08,1.295338345135857060e-08,1.403283207230511801e-08,1.511228069325166707e-08,1.619172931419821614e-08,1.727117793514476521e-08,1.835062655609131427e-08,1.943007517703786334e-08,2.050952379798441240e-08,2.158897241893096147e-08,2.266842103987751054e-08,2.374786966082405960e-08,2.482731828177060867e-08,2.590676690271715773e-08,2.698621552366370680e-08,2.806566414461025587e-08,2.914511276555680493e-08,3.022456138650335400e-08,3.130401000744990306e-08,3.238345862839645213e-08,3.346290724934300120e-08,3.454235587028955026e-08,3.562180449123609933e-08,3.670125311218264840e-08,3.778070173312919746e-08,3.886015035407574653e-08,3.993959897502229559e-08,4.101904759596884466e-08,4.209849621691539373e-08,4.317794483786194279e-08,4.425739345880849186e-08,4.533684207975504092e-08,4.641629070070158999e-08,4.749573932164813906e-08,4.857518794259468812e-08,4.965463656354123719e-08,5.073408518448778625e-08,5.181353380543433532e-08,5.289298242638088439e-08,5.397243104732743345e-08,5.505187966827398252e-08,5.613132828922053159e-08,5.721077691016708065e-08,5.829022553111362972e-08,5.936967415206017878e-08,6.044912277300672123e-08,6.152857139395326368e-08,6.260802001489980613e-08,6.368746863584634858e-08,6.476691725679289103e-08,6.584636587773943348e-08,6.692581449868597592e-08,6.800526311963251837e-08 +0.000000000000000000e+00,1.197692463956566817e-09,2.395384927913133633e-09,3.593077391869700657e-09,4.790769855826268094e-09,5.988462319782835531e-09,7.186154783739402968e-09,8.383847247695970405e-09,9.581539711652537842e-09,1.077923217560910528e-08,1.197692463956567272e-08,1.317461710352224015e-08,1.437230956747880759e-08,1.557000203143537503e-08,1.676769449539194081e-08,1.796538695934850659e-08,1.916307942330507238e-08,2.036077188726163816e-08,2.155846435121820394e-08,2.275615681517476972e-08,2.395384927913133551e-08,2.515154174308790129e-08,2.634923420704446707e-08,2.754692667100103286e-08,2.874461913495759864e-08,2.994231159891416111e-08,3.114000406287072359e-08,3.233769652682728606e-08,3.353538899078384853e-08,3.473308145474041101e-08,3.593077391869697348e-08,3.712846638265353596e-08,3.832615884661009843e-08,3.952385131056666090e-08,4.072154377452322338e-08,4.191923623847978585e-08,4.311692870243634833e-08,4.431462116639291080e-08,4.551231363034947327e-08,4.671000609430603575e-08,4.790769855826259822e-08,4.910539102221916070e-08,5.030308348617572317e-08,5.150077595013228564e-08,5.269846841408884812e-08,5.389616087804541059e-08,5.509385334200197307e-08,5.629154580595853554e-08,5.748923826991509801e-08,5.868693073387166049e-08,5.988462319782821635e-08,6.108231566178477220e-08,6.228000812574132806e-08,6.347770058969788391e-08,6.467539305365443977e-08,6.587308551761099563e-08,6.707077798156755148e-08,6.826847044552410734e-08,6.946616290948066320e-08,7.066385537343721905e-08,7.186154783739377491e-08,7.305924030135033077e-08,7.425693276530688662e-08,7.545462522926344248e-08 +0.000000000000000000e+00,1.069203477821312954e-09,2.138406955642625908e-09,3.207610433463938656e-09,4.276813911285250990e-09,5.346017389106563324e-09,6.415220866927875657e-09,7.484424344749187991e-09,8.553627822570500325e-09,9.622831300391812659e-09,1.069203477821312499e-08,1.176123825603443733e-08,1.283044173385574966e-08,1.389964521167706199e-08,1.496884868949837598e-08,1.603805216731968997e-08,1.710725564514100396e-08,1.817645912296231795e-08,1.924566260078363194e-08,2.031486607860494592e-08,2.138406955642625991e-08,2.245327303424757390e-08,2.352247651206888789e-08,2.459167998989020188e-08,2.566088346771151586e-08,2.673008694553282985e-08,2.779929042335414384e-08,2.886849390117545783e-08,2.993769737899677182e-08,3.100690085681808581e-08,3.207610433463939979e-08,3.314530781246071378e-08,3.421451129028202777e-08,3.528371476810334176e-08,3.635291824592465575e-08,3.742212172374596973e-08,3.849132520156728372e-08,3.956052867938859771e-08,4.062973215720991170e-08,4.169893563503122569e-08,4.276813911285253968e-08,4.383734259067385366e-08,4.490654606849516765e-08,4.597574954631648164e-08,4.704495302413779563e-08,4.811415650195910962e-08,4.918335997978042360e-08,5.025256345760173759e-08,5.132176693542305158e-08,5.239097041324436557e-08,5.346017389106567956e-08,5.452937736888699355e-08,5.559858084670830753e-08,5.666778432452962152e-08,5.773698780235093551e-08,5.880619128017224950e-08,5.987539475799355687e-08,6.094459823581486424e-08,6.201380171363617161e-08,6.308300519145747898e-08,6.415220866927878635e-08,6.522141214710009372e-08,6.629061562492140109e-08,6.735981910274270846e-08 +0.000000000000000000e+00,-1.079448621125286046e-09,-2.158897242250572092e-09,-3.238345863375857931e-09,-4.317794484501143357e-09,-5.397243105626428783e-09,-6.476691726751714208e-09,-7.556140347877000461e-09,-8.635588969002286714e-09,-9.715037590127572967e-09,-1.079448621125285922e-08,-1.187393483237814547e-08,-1.295338345350343173e-08,-1.403283207462871798e-08,-1.511228069575400423e-08,-1.619172931687929048e-08,-1.727117793800457674e-08,-1.835062655912986299e-08,-1.943007518025514924e-08,-2.050952380138043550e-08,-2.158897242250572175e-08,-2.266842104363100800e-08,-2.374786966475629425e-08,-2.482731828588158051e-08,-2.590676690700686676e-08,-2.698621552813215301e-08,-2.806566414925743927e-08,-2.914511277038272552e-08,-3.022456139150801508e-08,-3.130401001263330795e-08,-3.238345863375860082e-08,-3.346290725488389369e-08,-3.454235587600918656e-08,-3.562180449713447943e-08,-3.670125311825977230e-08,-3.778070173938506517e-08,-3.886015036051035804e-08,-3.993959898163565091e-08,-4.101904760276094378e-08,-4.209849622388623665e-08,-4.317794484501152952e-08,-4.425739346613682239e-08,-4.533684208726211526e-08,-4.641629070838740814e-08,-4.749573932951270101e-08,-4.857518795063799388e-08,-4.965463657176328675e-08,-5.073408519288857962e-08,-5.181353381401387249e-08,-5.289298243513916536e-08,-5.397243105626445823e-08,-5.505187967738975110e-08,-5.613132829851504397e-08,-5.721077691964033684e-08,-5.829022554076562971e-08,-5.936967416189092258e-08,-6.044912278301621545e-08,-6.152857140414150832e-08,-6.260802002526680119e-08,-6.368746864639209406e-08,-6.476691726751738693e-08,-6.584636588864267980e-08,-6.692581450976797267e-08,-6.800526313089326554e-08 +0.000000000000000000e+00,-1.197692464131537023e-09,-2.395384928263074046e-09,-3.593077392394611276e-09,-4.790769856526148919e-09,-5.988462320657686562e-09,-7.186154784789224206e-09,-8.383847248920761849e-09,-9.581539713052299492e-09,-1.077923217718383714e-08,-1.197692464131537478e-08,-1.317461710544691242e-08,-1.437230956957845007e-08,-1.557000203370998605e-08,-1.676769449784152039e-08,-1.796538696197305472e-08,-1.916307942610458906e-08,-2.036077189023612339e-08,-2.155846435436765773e-08,-2.275615681849919206e-08,-2.395384928263072640e-08,-2.515154174676226073e-08,-2.634923421089379507e-08,-2.754692667502532940e-08,-2.874461913915686374e-08,-2.994231160328839807e-08,-3.114000406741993241e-08,-3.233769653155146674e-08,-3.353538899568300107e-08,-3.473308145981453541e-08,-3.593077392394606974e-08,-3.712846638807760408e-08,-3.832615885220913841e-08,-3.952385131634067275e-08,-4.072154378047220708e-08,-4.191923624460374142e-08,-4.311692870873527575e-08,-4.431462117286681009e-08,-4.551231363699834442e-08,-4.671000610112987876e-08,-4.790769856526141309e-08,-4.910539102939294742e-08,-5.030308349352448176e-08,-5.150077595765601609e-08,-5.269846842178755043e-08,-5.389616088591908476e-08,-5.509385335005061910e-08,-5.629154581418215343e-08,-5.748923827831368777e-08,-5.868693074244522210e-08,-5.988462320657675644e-08,-6.108231567070829077e-08,-6.228000813483982511e-08,-6.347770059897135944e-08,-6.467539306310289377e-08,-6.587308552723442811e-08,-6.707077799136596244e-08,-6.826847045549749678e-08,-6.946616291962903111e-08,-7.066385538376056545e-08,-7.186154784789209978e-08,-7.305924031202363412e-08,-7.425693277615516845e-08,-7.545462524028670279e-08 +0.000000000000000000e+00,-1.069203477992515766e-09,-2.138406955985031533e-09,-3.207610433977547506e-09,-4.276813911970063893e-09,-5.346017389962580279e-09,-6.415220867955096666e-09,-7.484424345947613880e-09,-8.553627823940131094e-09,-9.622831301932648308e-09,-1.069203477992516552e-08,-1.176123825791768274e-08,-1.283044173591019995e-08,-1.389964521390271716e-08,-1.496884869189523438e-08,-1.603805216988775159e-08,-1.710725564788026881e-08,-1.817645912587278602e-08,-1.924566260386530323e-08,-2.031486608185782045e-08,-2.138406955985033766e-08,-2.245327303784285488e-08,-2.352247651583537209e-08,-2.459167999382788930e-08,-2.566088347182040652e-08,-2.673008694981292373e-08,-2.779929042780544094e-08,-2.886849390579795816e-08,-2.993769738379047537e-08,-3.100690086178299590e-08,-3.207610433977551642e-08,-3.314530781776803694e-08,-3.421451129576055746e-08,-3.528371477375307799e-08,-3.635291825174559851e-08,-3.742212172973811903e-08,-3.849132520773063955e-08,-3.956052868572316008e-08,-4.062973216371568060e-08,-4.169893564170820112e-08,-4.276813911970072164e-08,-4.383734259769324217e-08,-4.490654607568576269e-08,-4.597574955367828321e-08,-4.704495303167080374e-08,-4.811415650966332426e-08,-4.918335998765584478e-08,-5.025256346564836530e-08,-5.132176694364088583e-08,-5.239097042163340635e-08,-5.346017389962592687e-08,-5.452937737761844739e-08,-5.559858085561096792e-08,-5.666778433360348844e-08,-5.773698781159600896e-08,-5.880619128958852948e-08,-5.987539476758104339e-08,-6.094459824557355729e-08,-6.201380172356607120e-08,-6.308300520155858511e-08,-6.415220867955109901e-08,-6.522141215754361292e-08,-6.629061563553612682e-08,-6.735981911352864073e-08 +0.000000000000000000e+00,9.147402658477189164e-10,1.829480531695437833e-09,2.744220797543156646e-09,3.658961063390875252e-09,4.573701329238593858e-09,5.488441595086312465e-09,6.403181860934031071e-09,7.317922126781749677e-09,8.232662392629468283e-09,9.147402658477187717e-09,1.006214292432490715e-08,1.097688319017262658e-08,1.189162345602034602e-08,1.280636372186806545e-08,1.372110398771578488e-08,1.463584425356350432e-08,1.555058451941122210e-08,1.646532478525893988e-08,1.738006505110665765e-08,1.829480531695437543e-08,1.920954558280209321e-08,2.012428584864981099e-08,2.103902611449752877e-08,2.195376638034524655e-08,2.286850664619296433e-08,2.378324691204068211e-08,2.469798717788839989e-08,2.561272744373611767e-08,2.652746770958383545e-08,2.744220797543155322e-08,2.835694824127927100e-08,2.927168850712698878e-08,3.018642877297470656e-08,3.110116903882242434e-08,3.201590930467014212e-08,3.293064957051785990e-08,3.384538983636557768e-08,3.476013010221329546e-08,3.567487036806101324e-08,3.658961063390873101e-08,3.750435089975644879e-08,3.841909116560416657e-08,3.933383143145188435e-08,4.024857169729960213e-08,4.116331196314731991e-08,4.207805222899503769e-08,4.299279249484275547e-08,4.390753276069047325e-08,4.482227302653819103e-08,4.573701329238590881e-08,4.665175355823362658e-08,4.756649382408134436e-08,4.848123408992906214e-08,4.939597435577677992e-08,5.031071462162449770e-08,5.122545488747221548e-08,5.214019515331993326e-08,5.305493541916765104e-08,5.396967568501536882e-08,5.488441595086308660e-08,5.579915621671080438e-08,5.671389648255852215e-08,5.762863674840623993e-08 +0.000000000000000000e+00,9.839216507687383983e-10,1.967843301537476797e-09,2.951764952306215195e-09,3.935686603074953593e-09,4.919608253843691992e-09,5.903529904612430390e-09,6.887451555381168788e-09,7.871373206149907187e-09,8.855294856918645585e-09,9.839216507687383983e-09,1.082313815845612238e-08,1.180705980922486078e-08,1.279098145999359918e-08,1.377490311076233758e-08,1.475882476153107598e-08,1.574274641229981437e-08,1.672666806306855277e-08,1.771058971383729117e-08,1.869451136460602957e-08,1.967843301537476797e-08,2.066235466614350637e-08,2.164627631691224476e-08,2.263019796768098316e-08,2.361411961844972156e-08,2.459804126921845996e-08,2.558196291998719836e-08,2.656588457075593676e-08,2.754980622152467515e-08,2.853372787229341355e-08,2.951764952306215195e-08,3.050157117383089035e-08,3.148549282459962875e-08,3.246941447536836715e-08,3.345333612613710554e-08,3.443725777690584394e-08,3.542117942767458234e-08,3.640510107844332074e-08,3.738902272921205914e-08,3.837294437998079754e-08,3.935686603074953593e-08,4.034078768151827433e-08,4.132470933228701273e-08,4.230863098305575113e-08,4.329255263382448953e-08,4.427647428459322793e-08,4.526039593536196632e-08,4.624431758613070472e-08,4.722823923689944312e-08,4.821216088766818152e-08,4.919608253843691992e-08,5.018000418920565832e-08,5.116392583997439671e-08,5.214784749074313511e-08,5.313176914151187351e-08,5.411569079228061191e-08,5.509961244304935031e-08,5.608353409381808871e-08,5.706745574458682710e-08,5.805137739535556550e-08,5.903529904612430390e-08,6.001922069689304230e-08,6.100314234766178070e-08,6.198706399843051910e-08 +0.000000000000000000e+00,9.098296379410035253e-10,1.819659275882007051e-09,2.729488913823010576e-09,3.639318551764014101e-09,4.549148189705017627e-09,5.458977827646021152e-09,6.368807465587024677e-09,7.278637103528028202e-09,8.188466741469030901e-09,9.098296379410033599e-09,1.000812601735103630e-08,1.091795565529203899e-08,1.182778529323304169e-08,1.273761493117404439e-08,1.364744456911504709e-08,1.455727420705604979e-08,1.546710384499705249e-08,1.637693348293805518e-08,1.728676312087905788e-08,1.819659275882006058e-08,1.910642239676106328e-08,2.001625203470206598e-08,2.092608167264306867e-08,2.183591131058407137e-08,2.274574094852507407e-08,2.365557058646607677e-08,2.456540022440707947e-08,2.547522986234808216e-08,2.638505950028908486e-08,2.729488913823008756e-08,2.820471877617109026e-08,2.911454841411209296e-08,3.002437805205309896e-08,3.093420768999410497e-08,3.184403732793511098e-08,3.275386696587611698e-08,3.366369660381712299e-08,3.457352624175812900e-08,3.548335587969913501e-08,3.639318551764014101e-08,3.730301515558114702e-08,3.821284479352215303e-08,3.912267443146315903e-08,4.003250406940416504e-08,4.094233370734517105e-08,4.185216334528617705e-08,4.276199298322718306e-08,4.367182262116818907e-08,4.458165225910919507e-08,4.549148189705020108e-08,4.640131153499120709e-08,4.731114117293221309e-08,4.822097081087321910e-08,4.913080044881422511e-08,5.004063008675523111e-08,5.095045972469623712e-08,5.186028936263724313e-08,5.277011900057824914e-08,5.367994863851925514e-08,5.458977827646026115e-08,5.549960791440126716e-08,5.640943755234227316e-08,5.731926719028327917e-08 +0.000000000000000000e+00,-9.147402660343181447e-10,-1.829480532068636289e-09,-2.744220798102954434e-09,-3.658961064137272579e-09,-4.573701330171590724e-09,-5.488441596205908868e-09,-6.403181862240227013e-09,-7.317922128274545158e-09,-8.232662394308863303e-09,-9.147402660343181447e-09,-1.006214292637749959e-08,-1.097688319241181774e-08,-1.189162345844613588e-08,-1.280636372448045403e-08,-1.372110399051477217e-08,-1.463584425654909032e-08,-1.555058452258340681e-08,-1.646532478861772330e-08,-1.738006505465203979e-08,-1.829480532068635628e-08,-1.920954558672067277e-08,-2.012428585275498926e-08,-2.103902611878930575e-08,-2.195376638482362224e-08,-2.286850665085793873e-08,-2.378324691689225522e-08,-2.469798718292657171e-08,-2.561272744896088820e-08,-2.652746771499520469e-08,-2.744220798102952118e-08,-2.835694824706383767e-08,-2.927168851309815416e-08,-3.018642877913247065e-08,-3.110116904516678714e-08,-3.201590931120110363e-08,-3.293064957723542012e-08,-3.384538984326973661e-08,-3.476013010930405310e-08,-3.567487037533836959e-08,-3.658961064137268608e-08,-3.750435090740700257e-08,-3.841909117344131907e-08,-3.933383143947563556e-08,-4.024857170550995205e-08,-4.116331197154426854e-08,-4.207805223757858503e-08,-4.299279250361290152e-08,-4.390753276964721801e-08,-4.482227303568153450e-08,-4.573701330171585099e-08,-4.665175356775016748e-08,-4.756649383378448397e-08,-4.848123409981880046e-08,-4.939597436585311695e-08,-5.031071463188743344e-08,-5.122545489792174993e-08,-5.214019516395606642e-08,-5.305493542999038291e-08,-5.396967569602469940e-08,-5.488441596205901589e-08,-5.579915622809333238e-08,-5.671389649412764887e-08,-5.762863676016196536e-08 +0.000000000000000000e+00,-9.839216509513728466e-10,-1.967843301902745693e-09,-2.951764952854118540e-09,-3.935686603805491386e-09,-4.919608254756864646e-09,-5.903529905708237907e-09,-6.887451556659611167e-09,-7.871373207610984427e-09,-8.855294858562357687e-09,-9.839216509513730947e-09,-1.082313816046510421e-08,-1.180705981141647747e-08,-1.279098146236785073e-08,-1.377490311331922399e-08,-1.475882476427059725e-08,-1.574274641522197216e-08,-1.672666806617334542e-08,-1.771058971712471868e-08,-1.869451136807609194e-08,-1.967843301902746520e-08,-2.066235466997883846e-08,-2.164627632093021172e-08,-2.263019797188158498e-08,-2.361411962283295824e-08,-2.459804127378433150e-08,-2.558196292473570476e-08,-2.656588457568707802e-08,-2.754980622663845128e-08,-2.853372787758982454e-08,-2.951764952854119780e-08,-3.050157117949257106e-08,-3.148549283044394432e-08,-3.246941448139531758e-08,-3.345333613234669085e-08,-3.443725778329806411e-08,-3.542117943424943737e-08,-3.640510108520081063e-08,-3.738902273615218389e-08,-3.837294438710355715e-08,-3.935686603805493041e-08,-4.034078768900630367e-08,-4.132470933995767693e-08,-4.230863099090905019e-08,-4.329255264186042345e-08,-4.427647429281179671e-08,-4.526039594376316997e-08,-4.624431759471454323e-08,-4.722823924566591649e-08,-4.821216089661728975e-08,-4.919608254756866301e-08,-5.018000419852003627e-08,-5.116392584947140953e-08,-5.214784750042278279e-08,-5.313176915137415605e-08,-5.411569080232552931e-08,-5.509961245327690257e-08,-5.608353410422827583e-08,-5.706745575517964909e-08,-5.805137740613102235e-08,-5.903529905708239561e-08,-6.001922070803376225e-08,-6.100314235898512889e-08,-6.198706400993649554e-08 +0.000000000000000000e+00,-9.098296381188877855e-10,-1.819659276237775571e-09,-2.729488914356663253e-09,-3.639318552475550728e-09,-4.549148190594437790e-09,-5.458977828713324852e-09,-6.368807466832211913e-09,-7.278637104951098975e-09,-8.188466743069986037e-09,-9.098296381188872271e-09,-1.000812601930775851e-08,-1.091795565742664474e-08,-1.182778529554553097e-08,-1.273761493366441721e-08,-1.364744457178330344e-08,-1.455727420990218968e-08,-1.546710384802107591e-08,-1.637693348613996215e-08,-1.728676312425884838e-08,-1.819659276237773462e-08,-1.910642240049662085e-08,-2.001625203861550708e-08,-2.092608167673439332e-08,-2.183591131485327955e-08,-2.274574095297216579e-08,-2.365557059109105202e-08,-2.456540022920993826e-08,-2.547522986732882449e-08,-2.638505950544771073e-08,-2.729488914356659696e-08,-2.820471878168548320e-08,-2.911454841980436943e-08,-3.002437805792325566e-08,-3.093420769604213859e-08,-3.184403733416102152e-08,-3.275386697227990444e-08,-3.366369661039878737e-08,-3.457352624851767029e-08,-3.548335588663655322e-08,-3.639318552475543614e-08,-3.730301516287431907e-08,-3.821284480099320200e-08,-3.912267443911208492e-08,-4.003250407723096785e-08,-4.094233371534985077e-08,-4.185216335346873370e-08,-4.276199299158761663e-08,-4.367182262970649955e-08,-4.458165226782538248e-08,-4.549148190594426540e-08,-4.640131154406314833e-08,-4.731114118218203125e-08,-4.822097082030091418e-08,-4.913080045841979711e-08,-5.004063009653868003e-08,-5.095045973465756296e-08,-5.186028937277644588e-08,-5.277011901089532881e-08,-5.367994864901421173e-08,-5.458977828713309466e-08,-5.549960792525197759e-08,-5.640943756337086051e-08,-5.731926720148974344e-08 +0.000000000000000000e+00,8.118086912395733349e-10,1.623617382479146670e-09,2.435426073718720108e-09,3.247234764958293753e-09,4.059043456197867398e-09,4.870852147437441043e-09,5.682660838677014688e-09,6.494469529916588333e-09,7.306278221156161979e-09,8.118086912395734796e-09,8.929895603635307614e-09,9.741704294874880432e-09,1.055351298611445325e-08,1.136532167735402607e-08,1.217713036859359889e-08,1.298893905983317170e-08,1.380074775107274452e-08,1.461255644231231734e-08,1.542436513355189016e-08,1.623617382479146298e-08,1.704798251603103579e-08,1.785979120727060861e-08,1.867159989851018143e-08,1.948340858974975425e-08,2.029521728098932706e-08,2.110702597222889988e-08,2.191883466346847270e-08,2.273064335470804552e-08,2.354245204594761834e-08,2.435426073718719115e-08,2.516606942842676397e-08,2.597787811966633679e-08,2.678968681090590961e-08,2.760149550214548243e-08,2.841330419338505524e-08,2.922511288462462806e-08,3.003692157586420088e-08,3.084873026710377370e-08,3.166053895834334652e-08,3.247234764958291933e-08,3.328415634082249215e-08,3.409596503206206497e-08,3.490777372330163779e-08,3.571958241454121060e-08,3.653139110578078342e-08,3.734319979702035624e-08,3.815500848825992906e-08,3.896681717949950188e-08,3.977862587073907469e-08,4.059043456197864751e-08,4.140224325321822033e-08,4.221405194445779315e-08,4.302586063569736597e-08,4.383766932693693878e-08,4.464947801817651160e-08,4.546128670941608442e-08,4.627309540065565724e-08,4.708490409189523006e-08,4.789671278313480287e-08,4.870852147437437569e-08,4.952033016561394851e-08,5.033213885685352133e-08,5.114394754809309414e-08 +0.000000000000000000e+00,8.587086696088461356e-10,1.717417339217692271e-09,2.576126008826538510e-09,3.434834678435384956e-09,4.293543348044231815e-09,5.152252017653078675e-09,6.010960687261925534e-09,6.869669356870772393e-09,7.728378026479619253e-09,8.587086696088466939e-09,9.445795365697314626e-09,1.030450403530616231e-08,1.116321270491501000e-08,1.202192137452385769e-08,1.288063004413270537e-08,1.373933871374155306e-08,1.459804738335040074e-08,1.545675605295924843e-08,1.631546472256809612e-08,1.717417339217694380e-08,1.803288206178579149e-08,1.889159073139463918e-08,1.975029940100348686e-08,2.060900807061233455e-08,2.146771674022118224e-08,2.232642540983002992e-08,2.318513407943887761e-08,2.404384274904772530e-08,2.490255141865657298e-08,2.576126008826542067e-08,2.661996875787426836e-08,2.747867742748311604e-08,2.833738609709196373e-08,2.919609476670081142e-08,3.005480343630966241e-08,3.091351210591851672e-08,3.177222077552737102e-08,3.263092944513622532e-08,3.348963811474507963e-08,3.434834678435393393e-08,3.520705545396278823e-08,3.606576412357164254e-08,3.692447279318049684e-08,3.778318146278935115e-08,3.864189013239820545e-08,3.950059880200705975e-08,4.035930747161591406e-08,4.121801614122476836e-08,4.207672481083362267e-08,4.293543348044247697e-08,4.379414215005133127e-08,4.465285081966018558e-08,4.551155948926903988e-08,4.637026815887789419e-08,4.722897682848674849e-08,4.808768549809560279e-08,4.894639416770445710e-08,4.980510283731331140e-08,5.066381150692216571e-08,5.152252017653102001e-08,5.238122884613987431e-08,5.323993751574872862e-08,5.409864618535758292e-08 +0.000000000000000000e+00,8.108145615473332158e-10,1.621629123094666432e-09,2.432443684641999647e-09,3.243258246189332863e-09,4.054072807736666079e-09,4.864887369283999295e-09,5.675701930831332511e-09,6.486516492378665727e-09,7.297331053925998942e-09,8.108145615473332158e-09,8.918960177020665374e-09,9.729774738567998590e-09,1.054058930011533181e-08,1.135140386166266502e-08,1.216221842320999824e-08,1.297303298475733145e-08,1.378384754630466467e-08,1.459466210785199788e-08,1.540547666939932945e-08,1.621629123094666101e-08,1.702710579249399257e-08,1.783792035404132413e-08,1.864873491558865569e-08,1.945954947713598725e-08,2.027036403868331881e-08,2.108117860023065038e-08,2.189199316177798194e-08,2.270280772332531350e-08,2.351362228487264506e-08,2.432443684641997662e-08,2.513525140796730818e-08,2.594606596951463975e-08,2.675688053106197131e-08,2.756769509260930287e-08,2.837850965415663443e-08,2.918932421570396599e-08,3.000013877725129755e-08,3.081095333879863242e-08,3.162176790034596729e-08,3.243258246189330216e-08,3.324339702344063703e-08,3.405421158498797190e-08,3.486502614653530677e-08,3.567584070808264164e-08,3.648665526962997651e-08,3.729746983117731138e-08,3.810828439272464625e-08,3.891909895427198112e-08,3.972991351581931599e-08,4.054072807736665086e-08,4.135154263891398573e-08,4.216235720046132060e-08,4.297317176200865548e-08,4.378398632355599035e-08,4.459480088510332522e-08,4.540561544665066009e-08,4.621643000819799496e-08,4.702724456974532983e-08,4.783805913129266470e-08,4.864887369283999957e-08,4.945968825438733444e-08,5.027050281593466931e-08,5.108131737748200418e-08 +0.000000000000000000e+00,-8.118086914342716953e-10,-1.623617382868543391e-09,-2.435426074302815086e-09,-3.247234765737086781e-09,-4.059043457171358063e-09,-4.870852148605629345e-09,-5.682660840039900627e-09,-6.494469531474171908e-09,-7.306278222908443190e-09,-8.118086914342714472e-09,-8.929895605776985754e-09,-9.741704297211257035e-09,-1.055351298864552832e-08,-1.136532168007979960e-08,-1.217713037151407088e-08,-1.298893906294834216e-08,-1.380074775438261344e-08,-1.461255644581688473e-08,-1.542436513725115435e-08,-1.623617382868542564e-08,-1.704798252011969692e-08,-1.785979121155396820e-08,-1.867159990298823948e-08,-1.948340859442251076e-08,-2.029521728585678204e-08,-2.110702597729105333e-08,-2.191883466872532461e-08,-2.273064336015959589e-08,-2.354245205159386717e-08,-2.435426074302813845e-08,-2.516606943446240973e-08,-2.597787812589668102e-08,-2.678968681733095230e-08,-2.760149550876522358e-08,-2.841330420019949486e-08,-2.922511289163376614e-08,-3.003692158306803742e-08,-3.084873027450230871e-08,-3.166053896593657999e-08,-3.247234765737085127e-08,-3.328415634880512255e-08,-3.409596504023939383e-08,-3.490777373167366512e-08,-3.571958242310793640e-08,-3.653139111454220768e-08,-3.734319980597647896e-08,-3.815500849741075024e-08,-3.896681718884502152e-08,-3.977862588027929281e-08,-4.059043457171356409e-08,-4.140224326314783537e-08,-4.221405195458210665e-08,-4.302586064601637793e-08,-4.383766933745064921e-08,-4.464947802888492050e-08,-4.546128672031919178e-08,-4.627309541175346306e-08,-4.708490410318773434e-08,-4.789671279462200562e-08,-4.870852148605627691e-08,-4.952033017749054819e-08,-5.033213886892481947e-08,-5.114394756035909075e-08 +0.000000000000000000e+00,-8.587086697996229361e-10,-1.717417339599245872e-09,-2.576126009398868912e-09,-3.434834679198492158e-09,-4.293543348998114991e-09,-5.152252018797737824e-09,-6.010960688597360656e-09,-6.869669358396983489e-09,-7.728378028196606322e-09,-8.587086697996229982e-09,-9.445795367795853642e-09,-1.030450403759547730e-08,-1.116321270739510096e-08,-1.202192137719472462e-08,-1.288063004699434828e-08,-1.373933871679397194e-08,-1.459804738659359560e-08,-1.545675605639321926e-08,-1.631546472619284458e-08,-1.717417339599246989e-08,-1.803288206579209520e-08,-1.889159073559172052e-08,-1.975029940539134583e-08,-2.060900807519097115e-08,-2.146771674499059646e-08,-2.232642541479022178e-08,-2.318513408458984709e-08,-2.404384275438947240e-08,-2.490255142418909772e-08,-2.576126009398872303e-08,-2.661996876378834835e-08,-2.747867743358797366e-08,-2.833738610338759898e-08,-2.919609477318722429e-08,-3.005480344298684960e-08,-3.091351211278647161e-08,-3.177222078258609362e-08,-3.263092945238571562e-08,-3.348963812218533763e-08,-3.434834679198495963e-08,-3.520705546178458164e-08,-3.606576413158420364e-08,-3.692447280138382565e-08,-3.778318147118344765e-08,-3.864189014098306966e-08,-3.950059881078269167e-08,-4.035930748058231367e-08,-4.121801615038193568e-08,-4.207672482018155768e-08,-4.293543348998117969e-08,-4.379414215978080169e-08,-4.465285082958042370e-08,-4.551155949938004570e-08,-4.637026816917966771e-08,-4.722897683897928972e-08,-4.808768550877891172e-08,-4.894639417857853373e-08,-4.980510284837815573e-08,-5.066381151817777774e-08,-5.152252018797739974e-08,-5.238122885777702175e-08,-5.323993752757664375e-08,-5.409864619737626576e-08 +0.000000000000000000e+00,-8.108145617316818925e-10,-1.621629123463363785e-09,-2.432443685195045574e-09,-3.243258246926727156e-09,-4.054072808658408325e-09,-4.864887370390089494e-09,-5.675701932121770662e-09,-6.486516493853451831e-09,-7.297331055585133000e-09,-8.108145617316813341e-09,-8.918960179048493683e-09,-9.729774740780174024e-09,-1.054058930251185437e-08,-1.135140386424353471e-08,-1.216221842597521505e-08,-1.297303298770689539e-08,-1.378384754943857573e-08,-1.459466211117025607e-08,-1.540547667290193641e-08,-1.621629123463361676e-08,-1.702710579636529710e-08,-1.783792035809697744e-08,-1.864873491982865778e-08,-1.945954948156033812e-08,-2.027036404329201846e-08,-2.108117860502369880e-08,-2.189199316675537915e-08,-2.270280772848705949e-08,-2.351362229021873983e-08,-2.432443685195042017e-08,-2.513525141368210051e-08,-2.594606597541378085e-08,-2.675688053714546120e-08,-2.756769509887714154e-08,-2.837850966060882188e-08,-2.918932422234050222e-08,-3.000013878407218256e-08,-3.081095334580385959e-08,-3.162176790753553663e-08,-3.243258246926721366e-08,-3.324339703099889069e-08,-3.405421159273056773e-08,-3.486502615446224476e-08,-3.567584071619392179e-08,-3.648665527792559882e-08,-3.729746983965727586e-08,-3.810828440138895289e-08,-3.891909896312062992e-08,-3.972991352485230695e-08,-4.054072808658398399e-08,-4.135154264831566102e-08,-4.216235721004733805e-08,-4.297317177177901509e-08,-4.378398633351069212e-08,-4.459480089524236915e-08,-4.540561545697404618e-08,-4.621643001870572322e-08,-4.702724458043740025e-08,-4.783805914216907728e-08,-4.864887370390075432e-08,-4.945968826563243135e-08,-5.027050282736410838e-08,-5.108131738909578541e-08 +0.000000000000000000e+00,7.364461581527165072e-10,1.472892316305433014e-09,2.209338474458149625e-09,2.945784632610866443e-09,3.682230790763583260e-09,4.418676948916300077e-09,5.155123107069016895e-09,5.891569265221733712e-09,6.628015423374450530e-09,7.364461581527167347e-09,8.100907739679883337e-09,8.837353897832598501e-09,9.573800055985313664e-09,1.031024621413802883e-08,1.104669237229074399e-08,1.178313853044345915e-08,1.251958468859617432e-08,1.325603084674888948e-08,1.399247700490160464e-08,1.472892316305431981e-08,1.546536932120703497e-08,1.620181547935975013e-08,1.693826163751246529e-08,1.767470779566518046e-08,1.841115395381789562e-08,1.914760011197061078e-08,1.988404627012332595e-08,2.062049242827604111e-08,2.135693858642875627e-08,2.209338474458147144e-08,2.282983090273418660e-08,2.356627706088690176e-08,2.430272321903961693e-08,2.503916937719233209e-08,2.577561553534504725e-08,2.651206169349776241e-08,2.724850785165047758e-08,2.798495400980319274e-08,2.872140016795590790e-08,2.945784632610862307e-08,3.019429248426133492e-08,3.093073864241405008e-08,3.166718480056676525e-08,3.240363095871948041e-08,3.314007711687219557e-08,3.387652327502491074e-08,3.461296943317762590e-08,3.534941559133034106e-08,3.608586174948305623e-08,3.682230790763577139e-08,3.755875406578848655e-08,3.829520022394120172e-08,3.903164638209391688e-08,3.976809254024663204e-08,4.050453869839934720e-08,4.124098485655206237e-08,4.197743101470477753e-08,4.271387717285749269e-08,4.345032333101020786e-08,4.418676948916292302e-08,4.492321564731563818e-08,4.565966180546835335e-08,4.639610796362106851e-08 +0.000000000000000000e+00,7.726302900811448651e-10,1.545260580162289730e-09,2.317890870243434388e-09,3.090521160324579047e-09,3.863151450405723705e-09,4.635781740486868777e-09,5.408412030568013849e-09,6.181042320649158921e-09,6.953672610730303992e-09,7.726302900811449064e-09,8.498933190892593309e-09,9.271563480973737554e-09,1.004419377105488180e-08,1.081682406113602604e-08,1.158945435121717029e-08,1.236208464129831453e-08,1.313471493137945878e-08,1.390734522146060302e-08,1.467997551154174727e-08,1.545260580162289151e-08,1.622523609170403576e-08,1.699786638178518000e-08,1.777049667186632425e-08,1.854312696194746849e-08,1.931575725202861273e-08,2.008838754210975698e-08,2.086101783219090122e-08,2.163364812227204547e-08,2.240627841235318971e-08,2.317890870243433396e-08,2.395153899251547820e-08,2.472416928259662245e-08,2.549679957267776669e-08,2.626942986275891094e-08,2.704206015284005518e-08,2.781469044292119943e-08,2.858732073300234367e-08,2.935995102308348792e-08,3.013258131316463547e-08,3.090521160324578302e-08,3.167784189332693058e-08,3.245047218340807813e-08,3.322310247348922568e-08,3.399573276357037324e-08,3.476836305365152079e-08,3.554099334373266834e-08,3.631362363381381590e-08,3.708625392389496345e-08,3.785888421397611100e-08,3.863151450405725856e-08,3.940414479413840611e-08,4.017677508421955366e-08,4.094940537430070122e-08,4.172203566438184877e-08,4.249466595446299632e-08,4.326729624454414388e-08,4.403992653462529143e-08,4.481255682470643898e-08,4.558518711478758654e-08,4.635781740486873409e-08,4.713044769494988164e-08,4.790307798503102920e-08,4.867570827511217675e-08 +0.000000000000000000e+00,7.384226306456597052e-10,1.476845261291319410e-09,2.215267891936978909e-09,2.953690522582638407e-09,3.692113153228297906e-09,4.430535783873957818e-09,5.168958414519617730e-09,5.907381045165277642e-09,6.645803675810937554e-09,7.384226306456597466e-09,8.122648937102258205e-09,8.861071567747918944e-09,9.599494198393579684e-09,1.033791682903924042e-08,1.107633945968490116e-08,1.181476209033056190e-08,1.255318472097622264e-08,1.329160735162188338e-08,1.403002998226754412e-08,1.476845261291320486e-08,1.550687524355886560e-08,1.624529787420452634e-08,1.698372050485018708e-08,1.772214313549584781e-08,1.846056576614150855e-08,1.919898839678716929e-08,1.993741102743283003e-08,2.067583365807849077e-08,2.141425628872415151e-08,2.215267891936981225e-08,2.289110155001547299e-08,2.362952418066113373e-08,2.436794681130679447e-08,2.510636944195245521e-08,2.584479207259811595e-08,2.658321470324377669e-08,2.732163733388943742e-08,2.806005996453509816e-08,2.879848259518075890e-08,2.953690522582641964e-08,3.027532785647207707e-08,3.101375048711773781e-08,3.175217311776339855e-08,3.249059574840905929e-08,3.322901837905472003e-08,3.396744100970038077e-08,3.470586364034604151e-08,3.544428627099170225e-08,3.618270890163736299e-08,3.692113153228302373e-08,3.765955416292868446e-08,3.839797679357434520e-08,3.913639942422000594e-08,3.987482205486566668e-08,4.061324468551132742e-08,4.135166731615698816e-08,4.209008994680264890e-08,4.282851257744830964e-08,4.356693520809397038e-08,4.430535783873963112e-08,4.504378046938529186e-08,4.578220310003095260e-08,4.652062573067661334e-08 +0.000000000000000000e+00,-7.364461583557959651e-10,-1.472892316711591930e-09,-2.209338475067387999e-09,-2.945784633423184274e-09,-3.682230791778980549e-09,-4.418676950134776824e-09,-5.155123108490573100e-09,-5.891569266846369375e-09,-6.628015425202165650e-09,-7.364461583557961925e-09,-8.100907741913757374e-09,-8.837353900269551994e-09,-9.573800058625346615e-09,-1.031024621698114124e-08,-1.104669237533693586e-08,-1.178313853369273048e-08,-1.251958469204852510e-08,-1.325603085040431972e-08,-1.399247700876011434e-08,-1.472892316711590896e-08,-1.546536932547170358e-08,-1.620181548382749820e-08,-1.693826164218329282e-08,-1.767470780053908745e-08,-1.841115395889488207e-08,-1.914760011725067669e-08,-1.988404627560647131e-08,-2.062049243396226593e-08,-2.135693859231806055e-08,-2.209338475067385517e-08,-2.282983090902964979e-08,-2.356627706738544441e-08,-2.430272322574123903e-08,-2.503916938409703365e-08,-2.577561554245282828e-08,-2.651206170080862290e-08,-2.724850785916441752e-08,-2.798495401752021214e-08,-2.872140017587600676e-08,-2.945784633423180138e-08,-3.019429249258759600e-08,-3.093073865094339393e-08,-3.166718480929919186e-08,-3.240363096765498979e-08,-3.314007712601078772e-08,-3.387652328436658565e-08,-3.461296944272238358e-08,-3.534941560107818151e-08,-3.608586175943397944e-08,-3.682230791778977737e-08,-3.755875407614557530e-08,-3.829520023450137323e-08,-3.903164639285717116e-08,-3.976809255121296909e-08,-4.050453870956876702e-08,-4.124098486792456495e-08,-4.197743102628036287e-08,-4.271387718463616080e-08,-4.345032334299195873e-08,-4.418676950134775666e-08,-4.492321565970355459e-08,-4.565966181805935252e-08,-4.639610797641515045e-08 +0.000000000000000000e+00,-7.726302902799860562e-10,-1.545260580559972112e-09,-2.317890870839958169e-09,-3.090521161119944225e-09,-3.863151451399930281e-09,-4.635781741679916337e-09,-5.408412031959902394e-09,-6.181042322239888450e-09,-6.953672612519874506e-09,-7.726302902799860562e-09,-8.498933193079847446e-09,-9.271563483359834329e-09,-1.004419377363982121e-08,-1.081682406391980810e-08,-1.158945435419979498e-08,-1.236208464447978186e-08,-1.313471493475976875e-08,-1.390734522503975563e-08,-1.467997551531974251e-08,-1.545260580559973105e-08,-1.622523609587971959e-08,-1.699786638615970813e-08,-1.777049667643969666e-08,-1.854312696671968520e-08,-1.931575725699967374e-08,-2.008838754727966228e-08,-2.086101783755965082e-08,-2.163364812783963935e-08,-2.240627841811962789e-08,-2.317890870839961643e-08,-2.395153899867960497e-08,-2.472416928895959350e-08,-2.549679957923958204e-08,-2.626942986951957058e-08,-2.704206015979955912e-08,-2.781469045007954765e-08,-2.858732074035953619e-08,-2.935995103063952473e-08,-3.013258132091951327e-08,-3.090521161119950181e-08,-3.167784190147949034e-08,-3.245047219175947888e-08,-3.322310248203946742e-08,-3.399573277231945596e-08,-3.476836306259944449e-08,-3.554099335287943303e-08,-3.631362364315942157e-08,-3.708625393343941011e-08,-3.785888422371939865e-08,-3.863151451399938718e-08,-3.940414480427937572e-08,-4.017677509455936426e-08,-4.094940538483935280e-08,-4.172203567511934133e-08,-4.249466596539932987e-08,-4.326729625567931841e-08,-4.403992654595930695e-08,-4.481255683623929549e-08,-4.558518712651928402e-08,-4.635781741679927256e-08,-4.713044770707926110e-08,-4.790307799735924964e-08,-4.867570828763923817e-08 +0.000000000000000000e+00,-7.384226308365872595e-10,-1.476845261673174519e-09,-2.215267892509761778e-09,-2.953690523346349038e-09,-3.692113154182936297e-09,-4.430535785019523557e-09,-5.168958415856110816e-09,-5.907381046692698076e-09,-6.645803677529285335e-09,-7.384226308365872595e-09,-8.122648939202459854e-09,-8.861071570039047114e-09,-9.599494200875634373e-09,-1.033791683171222163e-08,-1.107633946254880889e-08,-1.181476209338539615e-08,-1.255318472422198341e-08,-1.329160735505857067e-08,-1.403002998589515793e-08,-1.476845261673174519e-08,-1.550687524756833245e-08,-1.624529787840491971e-08,-1.698372050924150697e-08,-1.772214314007809423e-08,-1.846056577091468149e-08,-1.919898840175126875e-08,-1.993741103258785601e-08,-2.067583366342444327e-08,-2.141425629426103052e-08,-2.215267892509761778e-08,-2.289110155593420504e-08,-2.362952418677079230e-08,-2.436794681760737956e-08,-2.510636944844396682e-08,-2.584479207928055408e-08,-2.658321471011714134e-08,-2.732163734095372860e-08,-2.806005997179031586e-08,-2.879848260262690312e-08,-2.953690523346349038e-08,-3.027532786430007764e-08,-3.101375049513666490e-08,-3.175217312597325216e-08,-3.249059575680983942e-08,-3.322901838764642668e-08,-3.396744101848301394e-08,-3.470586364931960120e-08,-3.544428628015618845e-08,-3.618270891099277571e-08,-3.692113154182936297e-08,-3.765955417266595023e-08,-3.839797680350253749e-08,-3.913639943433912475e-08,-3.987482206517571201e-08,-4.061324469601229927e-08,-4.135166732684888653e-08,-4.209008995768547379e-08,-4.282851258852206105e-08,-4.356693521935864831e-08,-4.430535785019523557e-08,-4.504378048103182283e-08,-4.578220311186841009e-08,-4.652062574270499735e-08 +0.000000000000000000e+00,6.712839145201887665e-10,1.342567829040377533e-09,2.013851743560566196e-09,2.685135658080754653e-09,3.356419572600943109e-09,4.027703487121131565e-09,4.698987401641320435e-09,5.370271316161509305e-09,6.041555230681698175e-09,6.712839145201887045e-09,7.384123059722075915e-09,8.055406974242264785e-09,8.726690888762453655e-09,9.397974803282642525e-09,1.006925871780283139e-08,1.074054263232302026e-08,1.141182654684320913e-08,1.208311046136339800e-08,1.275439437588358687e-08,1.342567829040377574e-08,1.409696220492396461e-08,1.476824611944415348e-08,1.543953003396434070e-08,1.611081394848452626e-08,1.678209786300471182e-08,1.745338177752489738e-08,1.812466569204508294e-08,1.879594960656526851e-08,1.946723352108545407e-08,2.013851743560563963e-08,2.080980135012582519e-08,2.148108526464601075e-08,2.215236917916619631e-08,2.282365309368638187e-08,2.349493700820656743e-08,2.416622092272675300e-08,2.483750483724693856e-08,2.550878875176712412e-08,2.618007266628730968e-08,2.685135658080749524e-08,2.752264049532768080e-08,2.819392440984786636e-08,2.886520832436805192e-08,2.953649223888823749e-08,3.020777615340842305e-08,3.087906006792860861e-08,3.155034398244879417e-08,3.222162789696897973e-08,3.289291181148916529e-08,3.356419572600935085e-08,3.423547964052953641e-08,3.490676355504972198e-08,3.557804746956990754e-08,3.624933138409009310e-08,3.692061529861027866e-08,3.759189921313046422e-08,3.826318312765064978e-08,3.893446704217083534e-08,3.960575095669102090e-08,4.027703487121120646e-08,4.094831878573139203e-08,4.161960270025157759e-08,4.229088661477176315e-08 +0.000000000000000000e+00,7.041766822968288279e-10,1.408353364593657656e-09,2.112530046890486587e-09,2.816706729187315725e-09,3.520883411484144863e-09,4.225060093780974002e-09,4.929236776077802726e-09,5.633413458374631451e-09,6.337590140671460175e-09,7.041766822968288900e-09,7.745943505265117624e-09,8.450120187561946349e-09,9.154296869858775073e-09,9.858473552155603798e-09,1.056265023445243252e-08,1.126682691674926125e-08,1.197100359904608997e-08,1.267518028134291870e-08,1.337935696363974742e-08,1.408353364593657615e-08,1.478771032823340487e-08,1.549188701053023194e-08,1.619606369282705736e-08,1.690024037512388277e-08,1.760441705742070819e-08,1.830859373971753360e-08,1.901277042201435902e-08,1.971694710431118443e-08,2.042112378660800985e-08,2.112530046890483527e-08,2.182947715120166068e-08,2.253365383349848610e-08,2.323783051579531151e-08,2.394200719809213693e-08,2.464618388038896235e-08,2.535036056268578776e-08,2.605453724498261318e-08,2.675871392727943859e-08,2.746289060957626401e-08,2.816706729187308942e-08,2.887124397416991484e-08,2.957542065646674026e-08,3.027959733876356567e-08,3.098377402106039109e-08,3.168795070335721650e-08,3.239212738565404192e-08,3.309630406795086734e-08,3.380048075024769275e-08,3.450465743254451817e-08,3.520883411484134358e-08,3.591301079713816900e-08,3.661718747943499441e-08,3.732136416173181983e-08,3.802554084402864525e-08,3.872971752632547066e-08,3.943389420862229608e-08,4.013807089091912149e-08,4.084224757321594691e-08,4.154642425551277232e-08,4.225060093780959774e-08,4.295477762010642316e-08,4.365895430240324857e-08,4.436313098470007399e-08 +0.000000000000000000e+00,6.779215173524687806e-10,1.355843034704937561e-09,2.033764552057406238e-09,2.711686069409874709e-09,3.389607586762343179e-09,4.067529104114811650e-09,4.745450621467280120e-09,5.423372138819748591e-09,6.101293656172217061e-09,6.779215173524685531e-09,7.457136690877154829e-09,8.135058208229624954e-09,8.812979725582095079e-09,9.490901242934565203e-09,1.016882276028703533e-08,1.084674427763950545e-08,1.152466579499197558e-08,1.220258731234444570e-08,1.288050882969691583e-08,1.355843034704938595e-08,1.423635186440185608e-08,1.491427338175432620e-08,1.559219489910679633e-08,1.627011641645926645e-08,1.694803793381173658e-08,1.762595945116420670e-08,1.830388096851667683e-08,1.898180248586914695e-08,1.965972400322161708e-08,2.033764552057408720e-08,2.101556703792655732e-08,2.169348855527902745e-08,2.237141007263149757e-08,2.304933158998396770e-08,2.372725310733643782e-08,2.440517462468890795e-08,2.508309614204137807e-08,2.576101765939384820e-08,2.643893917674631832e-08,2.711686069409878845e-08,2.779478221145125857e-08,2.847270372880372870e-08,2.915062524615619882e-08,2.982854676350867226e-08,3.050646828086114238e-08,3.118438979821361251e-08,3.186231131556608263e-08,3.254023283291855275e-08,3.321815435027102288e-08,3.389607586762349300e-08,3.457399738497596313e-08,3.525191890232843325e-08,3.592984041968090338e-08,3.660776193703337350e-08,3.728568345438584363e-08,3.796360497173831375e-08,3.864152648909078388e-08,3.931944800644325400e-08,3.999736952379572413e-08,4.067529104114819425e-08,4.135321255850066438e-08,4.203113407585313450e-08,4.270905559320560463e-08 +0.000000000000000000e+00,-6.712839147321221588e-10,-1.342567829464244318e-09,-2.013851744196366580e-09,-2.685135658928489049e-09,-3.356419573660611518e-09,-4.027703488392733987e-09,-4.698987403124856456e-09,-5.370271317856978925e-09,-6.041555232589101394e-09,-6.712839147321223863e-09,-7.384123062053346332e-09,-8.055406976785469629e-09,-8.726690891517592098e-09,-9.397974806249714567e-09,-1.006925872098183704e-08,-1.074054263571395950e-08,-1.141182655044608197e-08,-1.208311046517820444e-08,-1.275439437991032691e-08,-1.342567829464244938e-08,-1.409696220937457185e-08,-1.476824612410669432e-08,-1.543953003883881679e-08,-1.611081395357093926e-08,-1.678209786830306173e-08,-1.745338178303518420e-08,-1.812466569776730666e-08,-1.879594961249942913e-08,-1.946723352723155160e-08,-2.013851744196367407e-08,-2.080980135669579654e-08,-2.148108527142791901e-08,-2.215236918616004148e-08,-2.282365310089216395e-08,-2.349493701562428642e-08,-2.416622093035640889e-08,-2.483750484508853135e-08,-2.550878875982065382e-08,-2.618007267455277629e-08,-2.685135658928489876e-08,-2.752264050401702123e-08,-2.819392441874914370e-08,-2.886520833348126617e-08,-2.953649224821338864e-08,-3.020777616294551111e-08,-3.087906007767763358e-08,-3.155034399240975604e-08,-3.222162790714187851e-08,-3.289291182187400098e-08,-3.356419573660612345e-08,-3.423547965133824592e-08,-3.490676356607036839e-08,-3.557804748080249086e-08,-3.624933139553461333e-08,-3.692061531026673580e-08,-3.759189922499885827e-08,-3.826318313973098074e-08,-3.893446705446310320e-08,-3.960575096919522567e-08,-4.027703488392734814e-08,-4.094831879865947061e-08,-4.161960271339159308e-08,-4.229088662812371555e-08 +0.000000000000000000e+00,-7.041766825043244997e-10,-1.408353365008648999e-09,-2.112530047512973499e-09,-2.816706730017297999e-09,-3.520883412521622498e-09,-4.225060095025946998e-09,-4.929236777530271498e-09,-5.633413460034595997e-09,-6.337590142538920497e-09,-7.041766825043244997e-09,-7.745943507547568669e-09,-8.450120190051892341e-09,-9.154296872556216014e-09,-9.858473555060539686e-09,-1.056265023756486336e-08,-1.126682692006918703e-08,-1.197100360257351070e-08,-1.267518028507783438e-08,-1.337935696758215805e-08,-1.408353365008648172e-08,-1.478771033259080539e-08,-1.549188701509513072e-08,-1.619606369759945605e-08,-1.690024038010378137e-08,-1.760441706260810670e-08,-1.830859374511243203e-08,-1.901277042761675735e-08,-1.971694711012108268e-08,-2.042112379262540801e-08,-2.112530047512973334e-08,-2.182947715763405866e-08,-2.253365384013838399e-08,-2.323783052264270932e-08,-2.394200720514703464e-08,-2.464618388765135997e-08,-2.535036057015568530e-08,-2.605453725266001062e-08,-2.675871393516433595e-08,-2.746289061766866128e-08,-2.816706730017298660e-08,-2.887124398267731193e-08,-2.957542066518163726e-08,-3.027959734768596589e-08,-3.098377403019029453e-08,-3.168795071269462316e-08,-3.239212739519895180e-08,-3.309630407770328044e-08,-3.380048076020760907e-08,-3.450465744271193771e-08,-3.520883412521626634e-08,-3.591301080772059498e-08,-3.661718749022492361e-08,-3.732136417272925225e-08,-3.802554085523358088e-08,-3.872971753773790952e-08,-3.943389422024223816e-08,-4.013807090274656679e-08,-4.084224758525089543e-08,-4.154642426775522406e-08,-4.225060095025955270e-08,-4.295477763276388133e-08,-4.365895431526820997e-08,-4.436313099777253860e-08 +0.000000000000000000e+00,-6.779215175503660553e-10,-1.355843035100732111e-09,-2.033764552651098166e-09,-2.711686070201464221e-09,-3.389607587751830276e-09,-4.067529105302196332e-09,-4.745450622852561974e-09,-5.423372140402927615e-09,-6.101293657953293257e-09,-6.779215175503658899e-09,-7.457136693054024540e-09,-8.135058210604391009e-09,-8.812979728154757478e-09,-9.490901245705123947e-09,-1.016882276325549042e-08,-1.084674428080585688e-08,-1.152466579835622335e-08,-1.220258731590658982e-08,-1.288050883345695629e-08,-1.355843035100732276e-08,-1.423635186855768923e-08,-1.491427338610805570e-08,-1.559219490365842382e-08,-1.627011642120879194e-08,-1.694803793875916007e-08,-1.762595945630952819e-08,-1.830388097385989631e-08,-1.898180249141026444e-08,-1.965972400896063256e-08,-2.033764552651100068e-08,-2.101556704406136881e-08,-2.169348856161173693e-08,-2.237141007916210505e-08,-2.304933159671247318e-08,-2.372725311426284130e-08,-2.440517463181320942e-08,-2.508309614936357755e-08,-2.576101766691394567e-08,-2.643893918446431379e-08,-2.711686070201468192e-08,-2.779478221956505004e-08,-2.847270373711541816e-08,-2.915062525466578629e-08,-2.982854677221615772e-08,-3.050646828976652915e-08,-3.118438980731690058e-08,-3.186231132486727201e-08,-3.254023284241764345e-08,-3.321815435996801488e-08,-3.389607587751838631e-08,-3.457399739506875774e-08,-3.525191891261912917e-08,-3.592984043016950061e-08,-3.660776194771987204e-08,-3.728568346527024347e-08,-3.796360498282061490e-08,-3.864152650037098633e-08,-3.931944801792135777e-08,-3.999736953547172920e-08,-4.067529105302210063e-08,-4.135321257057247206e-08,-4.203113408812284349e-08,-4.270905560567321493e-08 +0.000000000000000000e+00,6.051566938879782628e-10,1.210313387775956526e-09,1.815470081663934685e-09,2.420626775551912638e-09,3.025783469439890590e-09,3.630940163327868543e-09,4.236096857215846496e-09,4.841253551103824448e-09,5.446410244991802401e-09,6.051566938879780354e-09,6.656723632767758306e-09,7.261880326655736259e-09,7.867037020543714212e-09,8.472193714431692992e-09,9.077350408319671771e-09,9.682507102207650551e-09,1.028766379609562933e-08,1.089282048998360811e-08,1.149797718387158689e-08,1.210313387775956567e-08,1.270829057164754445e-08,1.331344726553552323e-08,1.391860395942350201e-08,1.452376065331148079e-08,1.512891734719945957e-08,1.573407404108743835e-08,1.633923073497541713e-08,1.694438742886339591e-08,1.754954412275137469e-08,1.815470081663935347e-08,1.875985751052733225e-08,1.936501420441531103e-08,1.997017089830328981e-08,2.057532759219126859e-08,2.118048428607924737e-08,2.178564097996722615e-08,2.239079767385520493e-08,2.299595436774318371e-08,2.360111106163116249e-08,2.420626775551914127e-08,2.481142444940712005e-08,2.541658114329509883e-08,2.602173783718307761e-08,2.662689453107105639e-08,2.723205122495903517e-08,2.783720791884701395e-08,2.844236461273499273e-08,2.904752130662297151e-08,2.965267800051095029e-08,3.025783469439893237e-08,3.086299138828691446e-08,3.146814808217489655e-08,3.207330477606287864e-08,3.267846146995086073e-08,3.328361816383884282e-08,3.388877485772682491e-08,3.449393155161480699e-08,3.509908824550278908e-08,3.570424493939077117e-08,3.630940163327875326e-08,3.691455832716673535e-08,3.751971502105471744e-08,3.812487171494269953e-08 +0.000000000000000000e+00,6.402483476401184682e-10,1.280496695280236936e-09,1.920745042920355612e-09,2.560993390560474287e-09,3.201241738200592962e-09,3.841490085840711223e-09,4.481738433480829485e-09,5.121986781120947746e-09,5.762235128761066007e-09,6.402483476401184269e-09,7.042731824041302530e-09,7.682980171681420792e-09,8.323228519321539053e-09,8.963476866961657315e-09,9.603725214601775576e-09,1.024397356224189384e-08,1.088422190988201210e-08,1.152447025752213036e-08,1.216471860516224862e-08,1.280496695280236688e-08,1.344521530044248514e-08,1.408546364808260341e-08,1.472571199572272167e-08,1.536596034336283827e-08,1.600620869100295488e-08,1.664645703864307149e-08,1.728670538628318810e-08,1.792695373392330470e-08,1.856720208156342131e-08,1.920745042920353792e-08,1.984769877684365452e-08,2.048794712448377113e-08,2.112819547212388774e-08,2.176844381976400435e-08,2.240869216740412095e-08,2.304894051504423756e-08,2.368918886268435417e-08,2.432943721032447077e-08,2.496968555796458738e-08,2.560993390560470399e-08,2.625018225324482060e-08,2.689043060088493720e-08,2.753067894852505381e-08,2.817092729616517042e-08,2.881117564380528702e-08,2.945142399144540363e-08,3.009167233908551693e-08,3.073192068672563023e-08,3.137216903436574353e-08,3.201241738200585682e-08,3.265266572964597012e-08,3.329291407728608342e-08,3.393316242492619672e-08,3.457341077256631002e-08,3.521365912020642332e-08,3.585390746784653661e-08,3.649415581548664991e-08,3.713440416312676321e-08,3.777465251076687651e-08,3.841490085840698981e-08,3.905514920604710311e-08,3.969539755368721640e-08,4.033564590132732970e-08 +0.000000000000000000e+00,6.206831884761689246e-10,1.241366376952337849e-09,1.862049565428506670e-09,2.482732753904675285e-09,3.103415942380843899e-09,3.724099130857012513e-09,4.344782319333181541e-09,4.965465507809350569e-09,5.586148696285519597e-09,6.206831884761688625e-09,6.827515073237857653e-09,7.448198261714026681e-09,8.068881450190195709e-09,8.689564638666364737e-09,9.310247827142533765e-09,9.930931015618702793e-09,1.055161420409487182e-08,1.117229739257104085e-08,1.179298058104720988e-08,1.241366376952337890e-08,1.303434695799954793e-08,1.365503014647571696e-08,1.427571333495188599e-08,1.489639652342805502e-08,1.551707971190422404e-08,1.613776290038039142e-08,1.675844608885655879e-08,1.737912927733272617e-08,1.799981246580889354e-08,1.862049565428506091e-08,1.924117884276122829e-08,1.986186203123739566e-08,2.048254521971356303e-08,2.110322840818973041e-08,2.172391159666589778e-08,2.234459478514206515e-08,2.296527797361823253e-08,2.358596116209439990e-08,2.420664435057056728e-08,2.482732753904673465e-08,2.544801072752290202e-08,2.606869391599906940e-08,2.668937710447523677e-08,2.731006029295140414e-08,2.793074348142757152e-08,2.855142666990373889e-08,2.917210985837990626e-08,2.979279304685607364e-08,3.041347623533223770e-08,3.103415942380840177e-08,3.165484261228456583e-08,3.227552580076072990e-08,3.289620898923689396e-08,3.351689217771305803e-08,3.413757536618922209e-08,3.475825855466538616e-08,3.537894174314155022e-08,3.599962493161771429e-08,3.662030812009387835e-08,3.724099130857004242e-08,3.786167449704620648e-08,3.848235768552237055e-08,3.910304087399853461e-08 +0.000000000000000000e+00,-6.051566941083752638e-10,-1.210313388216750528e-09,-1.815470082325125791e-09,-2.420626776433501055e-09,-3.025783470541876319e-09,-3.630940164650251583e-09,-4.236096858758626847e-09,-4.841253552867002110e-09,-5.446410246975377374e-09,-6.051566941083752638e-09,-6.656723635192127902e-09,-7.261880329300503165e-09,-7.867037023408879256e-09,-8.472193717517255347e-09,-9.077350411625631438e-09,-9.682507105734007529e-09,-1.028766379984238362e-08,-1.089282049395075971e-08,-1.149797718805913580e-08,-1.210313388216751189e-08,-1.270829057627588798e-08,-1.331344727038426408e-08,-1.391860396449264017e-08,-1.452376065860101626e-08,-1.512891735270939235e-08,-1.573407404681776844e-08,-1.633923074092614453e-08,-1.694438743503452062e-08,-1.754954412914289671e-08,-1.815470082325127280e-08,-1.875985751735964889e-08,-1.936501421146802498e-08,-1.997017090557640108e-08,-2.057532759968477717e-08,-2.118048429379315326e-08,-2.178564098790152935e-08,-2.239079768200990544e-08,-2.299595437611828153e-08,-2.360111107022665762e-08,-2.420626776433503371e-08,-2.481142445844340980e-08,-2.541658115255178589e-08,-2.602173784666016199e-08,-2.662689454076853808e-08,-2.723205123487691417e-08,-2.783720792898529026e-08,-2.844236462309366635e-08,-2.904752131720204244e-08,-2.965267801131041853e-08,-3.025783470541879131e-08,-3.086299139952716079e-08,-3.146814809363553026e-08,-3.207330478774389973e-08,-3.267846148185226921e-08,-3.328361817596063868e-08,-3.388877487006900815e-08,-3.449393156417737763e-08,-3.509908825828574710e-08,-3.570424495239411658e-08,-3.630940164650248605e-08,-3.691455834061085552e-08,-3.751971503471922500e-08,-3.812487172882759447e-08 +0.000000000000000000e+00,-6.402483478562664492e-10,-1.280496695712532898e-09,-1.920745043568799451e-09,-2.560993391425066210e-09,-3.201241739281332970e-09,-3.841490087137599729e-09,-4.481738434993866902e-09,-5.121986782850134075e-09,-5.762235130706401248e-09,-6.402483478562668421e-09,-7.042731826418935594e-09,-7.682980174275202767e-09,-8.323228522131469940e-09,-8.963476869987737113e-09,-9.603725217844004286e-09,-1.024397356570027146e-08,-1.088422191355653863e-08,-1.152447026141280580e-08,-1.216471860926907298e-08,-1.280496695712534015e-08,-1.344521530498160732e-08,-1.408546365283787450e-08,-1.472571200069414167e-08,-1.536596034855040884e-08,-1.600620869640667767e-08,-1.664645704426294650e-08,-1.728670539211921532e-08,-1.792695373997548415e-08,-1.856720208783175298e-08,-1.920745043568802181e-08,-1.984769878354429063e-08,-2.048794713140055946e-08,-2.112819547925682829e-08,-2.176844382711309712e-08,-2.240869217496936594e-08,-2.304894052282563477e-08,-2.368918887068190360e-08,-2.432943721853817242e-08,-2.496968556639444125e-08,-2.560993391425071008e-08,-2.625018226210697891e-08,-2.689043060996324773e-08,-2.753067895781951656e-08,-2.817092730567578539e-08,-2.881117565353205422e-08,-2.945142400138832304e-08,-3.009167234924459187e-08,-3.073192069710086401e-08,-3.137216904495713614e-08,-3.201241739281340828e-08,-3.265266574066968041e-08,-3.329291408852595255e-08,-3.393316243638222469e-08,-3.457341078423849682e-08,-3.521365913209476896e-08,-3.585390747995104109e-08,-3.649415582780731323e-08,-3.713440417566358537e-08,-3.777465252351985750e-08,-3.841490087137612964e-08,-3.905514921923240178e-08,-3.969539756708867391e-08,-4.033564591494494605e-08 +0.000000000000000000e+00,-6.206831886810617691e-10,-1.241366377362123538e-09,-1.862049566043185411e-09,-2.482732754724247490e-09,-3.103415943405309569e-09,-3.724099132086371649e-09,-4.344782320767433314e-09,-4.965465509448494980e-09,-5.586148698129556646e-09,-6.206831886810618311e-09,-6.827515075491679977e-09,-7.448198264172741643e-09,-8.068881452853803308e-09,-8.689564641534864974e-09,-9.310247830215926640e-09,-9.930931018896988305e-09,-1.055161420757804997e-08,-1.117229739625911164e-08,-1.179298058494017330e-08,-1.241366377362123497e-08,-1.303434696230229663e-08,-1.365503015098335830e-08,-1.427571333966441997e-08,-1.489639652834548163e-08,-1.551707971702654330e-08,-1.613776290570760662e-08,-1.675844609438866994e-08,-1.737912928306973326e-08,-1.799981247175079658e-08,-1.862049566043185990e-08,-1.924117884911292322e-08,-1.986186203779398654e-08,-2.048254522647504986e-08,-2.110322841515611318e-08,-2.172391160383717650e-08,-2.234459479251823982e-08,-2.296527798119930314e-08,-2.358596116988036646e-08,-2.420664435856142978e-08,-2.482732754724249310e-08,-2.544801073592355642e-08,-2.606869392460461974e-08,-2.668937711328568306e-08,-2.731006030196674638e-08,-2.793074349064780970e-08,-2.855142667932887302e-08,-2.917210986800993634e-08,-2.979279305669099966e-08,-3.041347624537206629e-08,-3.103415943405313292e-08,-3.165484262273419954e-08,-3.227552581141526617e-08,-3.289620900009633280e-08,-3.351689218877739943e-08,-3.413757537745846606e-08,-3.475825856613953269e-08,-3.537894175482059932e-08,-3.599962494350166595e-08,-3.662030813218273257e-08,-3.724099132086379920e-08,-3.786167450954486583e-08,-3.848235769822593246e-08,-3.910304088690699909e-08 +0.000000000000000000e+00,5.317735759060311052e-10,1.063547151812062210e-09,1.595320727718093212e-09,2.127094303624124007e-09,2.658867879530154802e-09,3.190641455436185597e-09,3.722415031342216392e-09,4.254188607248247187e-09,4.785962183154278396e-09,5.317735759060309605e-09,5.849509334966340813e-09,6.381282910872372022e-09,6.913056486778403230e-09,7.444830062684434439e-09,7.976603638590465648e-09,8.508377214496496029e-09,9.040150790402526410e-09,9.571924366308556792e-09,1.010369794221458717e-08,1.063547151812061755e-08,1.116724509402664794e-08,1.169901866993267832e-08,1.223079224583870870e-08,1.276256582174473908e-08,1.329433939765076946e-08,1.382611297355679984e-08,1.435788654946283022e-08,1.488966012536886061e-08,1.542143370127489099e-08,1.595320727718092137e-08,1.648498085308695175e-08,1.701675442899298213e-08,1.754852800489901251e-08,1.808030158080504289e-08,1.861207515671107328e-08,1.914384873261710366e-08,1.967562230852313404e-08,2.020739588442916442e-08,2.073916946033519480e-08,2.127094303624122518e-08,2.180271661214725556e-08,2.233449018805328595e-08,2.286626376395931633e-08,2.339803733986534671e-08,2.392981091577137709e-08,2.446158449167740747e-08,2.499335806758343785e-08,2.552513164348946823e-08,2.605690521939549862e-08,2.658867879530152900e-08,2.712045237120755938e-08,2.765222594711358976e-08,2.818399952301962014e-08,2.871577309892565052e-08,2.924754667483168090e-08,2.977932025073771129e-08,3.031109382664374498e-08,3.084286740254977536e-08,3.137464097845580574e-08,3.190641455436183612e-08,3.243818813026786650e-08,3.296996170617389688e-08,3.350173528207992727e-08 +0.000000000000000000e+00,-1.146565897556384214e-19,-2.293131795112768427e-19,-3.439697692669152400e-19,-4.586263590225535891e-19,-5.732829487781919383e-19,-6.879395385338302874e-19,-8.025961282894686365e-19,-9.172527180451069857e-19,-1.031909307800745239e-18,-1.146565897556383491e-18,-1.261222487312021744e-18,-1.375879077067659997e-18,-1.490535666823298250e-18,-1.605192256578936503e-18,-1.719848846334574756e-18,-1.834505436090212816e-18,-1.949162025845850876e-18,-2.063818615601488936e-18,-2.178475205357126997e-18,-2.293131795112765057e-18,-2.407788384868403117e-18,-2.522444974624041177e-18,-2.637101564379679238e-18,-2.751758154135317298e-18,-2.866414743890955358e-18,-2.981071333646593418e-18,-3.095727923402231479e-18,-3.210384513157869539e-18,-3.325041102913507599e-18,-3.439697692669145659e-18,-3.554354282424783720e-18,-3.669010872180421780e-18,-3.783667461936059840e-18,-3.898324051691697900e-18,-4.012980641447335961e-18,-4.127637231202974021e-18,-4.242293820958612081e-18,-4.356950410714250141e-18,-4.471607000469888201e-18,-4.586263590225526262e-18,-4.700920179981164322e-18,-4.815576769736802382e-18,-4.930233359492440442e-18,-5.044889949248078503e-18,-5.159546539003716563e-18,-5.274203128759354623e-18,-5.388859718514992683e-18,-5.503516308270630744e-18,-5.618172898026268804e-18,-5.732829487781906864e-18,-5.847486077537544924e-18,-5.962142667293182985e-18,-6.076799257048821045e-18,-6.191455846804459105e-18,-6.306112436560097165e-18,-6.420769026315735226e-18,-6.535425616071373286e-18,-6.650082205827011346e-18,-6.764738795582649406e-18,-6.879395385338287467e-18,-6.994051975093925527e-18,-7.108708564849564358e-18,-7.223365154605203188e-18 +0.000000000000000000e+00,5.727873327028705964e-10,1.145574665405741193e-09,1.718361998108611893e-09,2.291149330811482799e-09,2.863936663514353706e-09,3.436723996217224612e-09,4.009511328920095933e-09,4.582298661622967253e-09,5.155085994325838573e-09,5.727873327028709893e-09,6.300660659731581213e-09,6.873447992434452534e-09,7.446235325137323854e-09,8.019022657840195174e-09,8.591809990543066494e-09,9.164597323245937814e-09,9.737384655948809135e-09,1.031017198865168045e-08,1.088295932135455177e-08,1.145574665405742310e-08,1.202853398676029442e-08,1.260132131946316574e-08,1.317410865216603706e-08,1.374689598486890838e-08,1.431968331757177970e-08,1.489247065027465102e-08,1.546525798297752234e-08,1.603804531568039366e-08,1.661083264838326498e-08,1.718361998108613630e-08,1.775640731378900762e-08,1.832919464649187894e-08,1.890198197919475026e-08,1.947476931189762158e-08,2.004755664460049290e-08,2.062034397730336422e-08,2.119313131000623554e-08,2.176591864270910686e-08,2.233870597541197818e-08,2.291149330811484950e-08,2.348428064081772082e-08,2.405706797352059214e-08,2.462985530622346346e-08,2.520264263892633478e-08,2.577542997162920610e-08,2.634821730433207742e-08,2.692100463703494874e-08,2.749379196973782006e-08,2.806657930244069138e-08,2.863936663514356270e-08,2.921215396784643402e-08,2.978494130054930534e-08,3.035772863325217335e-08,3.093051596595503806e-08,3.150330329865790276e-08,3.207609063136076746e-08,3.264887796406363216e-08,3.322166529676649687e-08,3.379445262946936157e-08,3.436723996217222627e-08,3.494002729487509097e-08,3.551281462757795568e-08,3.608560196028082038e-08 +0.000000000000000000e+00,5.584454500539957315e-10,1.116890900107991463e-09,1.675336350161987194e-09,2.233781800215982926e-09,2.792227250269978451e-09,3.350672700323973975e-09,3.909118150377969500e-09,4.467563600431965025e-09,5.026009050485960549e-09,5.584454500539956074e-09,6.142899950593951599e-09,6.701345400647947124e-09,7.259790850701942648e-09,7.818236300755939000e-09,8.376681750809935352e-09,8.935127200863931704e-09,9.493572650917928056e-09,1.005201810097192441e-08,1.061046355102592076e-08,1.116890900107991711e-08,1.172735445113391346e-08,1.228579990118790982e-08,1.284424535124190617e-08,1.340269080129590252e-08,1.396113625134989887e-08,1.451958170140389522e-08,1.507802715145789157e-08,1.563647260151188793e-08,1.619491805156588428e-08,1.675336350161988063e-08,1.731180895167387698e-08,1.787025440172787333e-08,1.842869985178186969e-08,1.898714530183586604e-08,1.954559075188986239e-08,2.010403620194385874e-08,2.066248165199785509e-08,2.122092710205185145e-08,2.177937255210584780e-08,2.233781800215984415e-08,2.289626345221384050e-08,2.345470890226783685e-08,2.401315435232183320e-08,2.457159980237582956e-08,2.513004525242982591e-08,2.568849070248382226e-08,2.624693615253781861e-08,2.680538160259181496e-08,2.736382705264581132e-08,2.792227250269980767e-08,2.848071795275380402e-08,2.903916340280780037e-08,2.959760885286179672e-08,3.015605430291579638e-08,3.071449975296979604e-08,3.127294520302379571e-08,3.183139065307779537e-08,3.238983610313179503e-08,3.294828155318579469e-08,3.350672700323979435e-08,3.406517245329379401e-08,3.462361790334779367e-08,3.518206335340179333e-08 +0.000000000000000000e+00,2.659275655376700763e-10,5.318551310753401526e-10,7.977826966130102806e-10,1.063710262150680512e-09,1.329637827688350743e-09,1.595565393226020975e-09,1.861492958763691206e-09,2.127420524301361438e-09,2.393348089839031669e-09,2.659275655376701901e-09,2.925203220914372132e-09,3.191130786452042363e-09,3.457058351989712595e-09,3.722985917527382826e-09,3.988913483065052644e-09,4.254841048602722048e-09,4.520768614140391452e-09,4.786696179678060857e-09,5.052623745215730261e-09,5.318551310753399665e-09,5.584478876291069069e-09,5.850406441828738474e-09,6.116334007366407878e-09,6.382261572904077282e-09,6.648189138441746686e-09,6.914116703979416091e-09,7.180044269517085495e-09,7.445971835054754899e-09,7.711899400592424303e-09,7.977826966130093707e-09,8.243754531667763112e-09,8.509682097205432516e-09,8.775609662743101920e-09,9.041537228280771324e-09,9.307464793818440729e-09,9.573392359356110133e-09,9.839319924893779537e-09,1.010524749043144894e-08,1.037117505596911835e-08,1.063710262150678775e-08,1.090303018704445715e-08,1.116895775258212656e-08,1.143488531811979596e-08,1.170081288365746537e-08,1.196674044919513477e-08,1.223266801473280418e-08,1.249859558027047358e-08,1.276452314580814298e-08,1.303045071134581239e-08,1.329637827688348179e-08,1.356230584242115120e-08,1.382823340795882060e-08,1.409416097349649000e-08,1.436008853903415941e-08,1.462601610457182881e-08,1.489194367010949822e-08,1.515787123564716762e-08,1.542379880118483537e-08,1.568972636672250312e-08,1.595565393226017087e-08,1.622158149779783862e-08,1.648750906333550637e-08,1.675343662887317412e-08 +0.000000000000000000e+00,-1.060505739866783750e-19,-2.121011479733567501e-19,-3.181517219600351130e-19,-4.242022959467134520e-19,-5.302528699333918390e-19,-6.363034439200702261e-19,-7.423540179067486132e-19,-8.484045918934270002e-19,-9.544551658801053873e-19,-1.060505739866783678e-18,-1.166556313853461969e-18,-1.272606887840140260e-18,-1.378657461826818550e-18,-1.484708035813496841e-18,-1.590758609800175132e-18,-1.696809183786853423e-18,-1.802859757773531521e-18,-1.908910331760209619e-18,-2.014960905746887717e-18,-2.121011479733565815e-18,-2.227062053720243914e-18,-2.333112627706922012e-18,-2.439163201693600110e-18,-2.545213775680278208e-18,-2.651264349666956306e-18,-2.757314923653634404e-18,-2.863365497640312503e-18,-2.969416071626990601e-18,-3.075466645613668699e-18,-3.181517219600346797e-18,-3.287567793587024895e-18,-3.393618367573702993e-18,-3.499668941560381092e-18,-3.605719515547059190e-18,-3.711770089533737288e-18,-3.817820663520415386e-18,-3.923871237507093484e-18,-4.029921811493771583e-18,-4.135972385480449681e-18,-4.242022959467127779e-18,-4.348073533453805877e-18,-4.454124107440483975e-18,-4.560174681427162073e-18,-4.666225255413840172e-18,-4.772275829400518270e-18,-4.878326403387196368e-18,-4.984376977373874466e-18,-5.090427551360552564e-18,-5.196478125347230662e-18,-5.302528699333908761e-18,-5.408579273320586859e-18,-5.514629847307264957e-18,-5.620680421293943055e-18,-5.726730995280621153e-18,-5.832781569267299251e-18,-5.938832143253977350e-18,-6.044882717240655448e-18,-6.150933291227333546e-18,-6.256983865214011644e-18,-6.363034439200689742e-18,-6.469085013187367841e-18,-6.575135587174045939e-18,-6.681186161160724037e-18 +0.000000000000000000e+00,-5.317735761352481262e-10,-1.063547152270496252e-09,-1.595320728405744379e-09,-2.127094304540992505e-09,-2.658867880676240424e-09,-3.190641456811488344e-09,-3.722415032946736263e-09,-4.254188609081984183e-09,-4.785962185217232102e-09,-5.317735761352480022e-09,-5.849509337487727941e-09,-6.381282913622975860e-09,-6.913056489758223780e-09,-7.444830065893471699e-09,-7.976603642028719619e-09,-8.508377218163966711e-09,-9.040150794299213803e-09,-9.571924370434460895e-09,-1.010369794656970799e-08,-1.063547152270495508e-08,-1.116724509884020217e-08,-1.169901867497544926e-08,-1.223079225111069636e-08,-1.276256582724594345e-08,-1.329433940338119054e-08,-1.382611297951643763e-08,-1.435788655565168473e-08,-1.488966013178693182e-08,-1.542143370792217726e-08,-1.595320728405742269e-08,-1.648498086019266813e-08,-1.701675443632791357e-08,-1.754852801246315901e-08,-1.808030158859840445e-08,-1.861207516473364988e-08,-1.914384874086889532e-08,-1.967562231700414076e-08,-2.020739589313938620e-08,-2.073916946927463163e-08,-2.127094304540987707e-08,-2.180271662154512251e-08,-2.233449019768036795e-08,-2.286626377381561339e-08,-2.339803734995085882e-08,-2.392981092608610426e-08,-2.446158450222134970e-08,-2.499335807835659514e-08,-2.552513165449184058e-08,-2.605690523062708601e-08,-2.658867880676233145e-08,-2.712045238289757689e-08,-2.765222595903282233e-08,-2.818399953516806777e-08,-2.871577311130331320e-08,-2.924754668743855864e-08,-2.977932026357380408e-08,-3.031109383970904952e-08,-3.084286741584429495e-08,-3.137464099197954039e-08,-3.190641456811478583e-08,-3.243818814425003127e-08,-3.296996172038527671e-08,-3.350173529652052214e-08 +0.000000000000000000e+00,-2.659275657669621123e-10,-5.318551315339242245e-10,-7.977826973008863368e-10,-1.063710263067848449e-09,-1.329637828834810665e-09,-1.595565394601772880e-09,-1.861492960368735096e-09,-2.127420526135697312e-09,-2.393348091902659527e-09,-2.659275657669621743e-09,-2.925203223436583959e-09,-3.191130789203546174e-09,-3.457058354970508390e-09,-3.722985920737470606e-09,-3.988913486504433235e-09,-4.254841052271395451e-09,-4.520768618038357666e-09,-4.786696183805319882e-09,-5.052623749572282098e-09,-5.318551315339244313e-09,-5.584478881106206529e-09,-5.850406446873168745e-09,-6.116334012640130960e-09,-6.382261578407093176e-09,-6.648189144174055392e-09,-6.914116709941017607e-09,-7.180044275707979823e-09,-7.445971841474942039e-09,-7.711899407241904254e-09,-7.977826973008866470e-09,-8.243754538775828686e-09,-8.509682104542790901e-09,-8.775609670309753117e-09,-9.041537236076715333e-09,-9.307464801843677548e-09,-9.573392367610639764e-09,-9.839319933377601980e-09,-1.010524749914456420e-08,-1.037117506491152641e-08,-1.063710263067848863e-08,-1.090303019644545084e-08,-1.116895776221241306e-08,-1.143488532797937527e-08,-1.170081289374633749e-08,-1.196674045951329971e-08,-1.223266802528026192e-08,-1.249859559104722414e-08,-1.276452315681418635e-08,-1.303045072258114857e-08,-1.329637828834811078e-08,-1.356230585411507300e-08,-1.382823341988203521e-08,-1.409416098564899743e-08,-1.436008855141595965e-08,-1.462601611718292186e-08,-1.489194368294988408e-08,-1.515787124871684629e-08,-1.542379881448380851e-08,-1.568972638025077072e-08,-1.595565394601773294e-08,-1.622158151178469516e-08,-1.648750907755165737e-08,-1.675343664331861959e-08 +0.000000000000000000e+00,-5.727873329275568390e-10,-1.145574665855113678e-09,-1.718361998782670620e-09,-2.291149331710227770e-09,-2.863936664637784919e-09,-3.436723997565342068e-09,-4.009511330492898804e-09,-4.582298663420455539e-09,-5.155085996348012275e-09,-5.727873329275569011e-09,-6.300660662203125746e-09,-6.873447995130682482e-09,-7.446235328058239217e-09,-8.019022660985795953e-09,-8.591809993913352689e-09,-9.164597326840909424e-09,-9.737384659768466160e-09,-1.031017199269602290e-08,-1.088295932562357963e-08,-1.145574665855113637e-08,-1.202853399147869310e-08,-1.260132132440624984e-08,-1.317410865733380657e-08,-1.374689599026136331e-08,-1.431968332318892004e-08,-1.489247065611647678e-08,-1.546525798904403517e-08,-1.603804532197159521e-08,-1.661083265489915526e-08,-1.718361998782671530e-08,-1.775640732075427535e-08,-1.832919465368183539e-08,-1.890198198660939544e-08,-1.947476931953695548e-08,-2.004755665246451553e-08,-2.062034398539207557e-08,-2.119313131831963561e-08,-2.176591865124719566e-08,-2.233870598417475570e-08,-2.291149331710231575e-08,-2.348428065002987579e-08,-2.405706798295743584e-08,-2.462985531588499588e-08,-2.520264264881255592e-08,-2.577542998174011597e-08,-2.634821731466767601e-08,-2.692100464759523606e-08,-2.749379198052279610e-08,-2.806657931345035615e-08,-2.863936664637791619e-08,-2.921215397930547623e-08,-2.978494131223303628e-08,-3.035772864516059632e-08,-3.093051597808815637e-08,-3.150330331101571641e-08,-3.207609064394327646e-08,-3.264887797687083650e-08,-3.322166530979839655e-08,-3.379445264272595659e-08,-3.436723997565351663e-08,-3.494002730858107668e-08,-3.551281464150863672e-08,-3.608560197443619677e-08 +0.000000000000000000e+00,-5.584454502660523737e-10,-1.116890900532104747e-09,-1.675336350798157121e-09,-2.233781801064209495e-09,-2.792227251330261869e-09,-3.350672701596314242e-09,-3.909118151862366616e-09,-4.467563602128418990e-09,-5.026009052394471363e-09,-5.584454502660523737e-09,-6.142899952926576111e-09,-6.701345403192628485e-09,-7.259790853458680858e-09,-7.818236303724733232e-09,-8.376681753990785606e-09,-8.935127204256837979e-09,-9.493572654522890353e-09,-1.005201810478894273e-08,-1.061046355505499510e-08,-1.116890900532104747e-08,-1.172735445558709985e-08,-1.228579990585315222e-08,-1.284424535611920460e-08,-1.340269080638525697e-08,-1.396113625665130934e-08,-1.451958170691736172e-08,-1.507802715718341409e-08,-1.563647260744946646e-08,-1.619491805771551884e-08,-1.675336350798157121e-08,-1.731180895824762359e-08,-1.787025440851367596e-08,-1.842869985877972833e-08,-1.898714530904578071e-08,-1.954559075931183308e-08,-2.010403620957788545e-08,-2.066248165984393783e-08,-2.122092711010999020e-08,-2.177937256037604257e-08,-2.233781801064209495e-08,-2.289626346090814732e-08,-2.345470891117419970e-08,-2.401315436144025207e-08,-2.457159981170630444e-08,-2.513004526197235682e-08,-2.568849071223840919e-08,-2.624693616250446156e-08,-2.680538161277051394e-08,-2.736382706303656631e-08,-2.792227251330261869e-08,-2.848071796356867106e-08,-2.903916341383472343e-08,-2.959760886410077581e-08,-3.015605431436682818e-08,-3.071449976463288386e-08,-3.127294521489893955e-08,-3.183139066516499523e-08,-3.238983611543105091e-08,-3.294828156569710659e-08,-3.350672701596316227e-08,-3.406517246622921796e-08,-3.462361791649527364e-08,-3.518206336676132932e-08 +0.000000000000000000e+00,2.020301155489010586e-09,4.040602310978021172e-09,6.060903466467032172e-09,8.081204621956043998e-09,1.010150577744505582e-08,1.212180693293406765e-08,1.414210808842307948e-08,1.616240924391209131e-08,1.818271039940110313e-08,2.020301155489011496e-08,2.222331271037912679e-08,2.424361386586813861e-08,2.626391502135715044e-08,2.828421617684616227e-08,3.030451733233517740e-08,3.232481848782418923e-08,3.434511964331320105e-08,3.636542079880221288e-08,3.838572195429122471e-08,4.040602310978023653e-08,4.242632426526924836e-08,4.444662542075826019e-08,4.646692657624727202e-08,4.848722773173628384e-08,5.050752888722529567e-08,5.252783004271430750e-08,5.454813119820331932e-08,5.656843235369233115e-08,5.858873350918134298e-08,6.060903466467035480e-08,6.262933582015936663e-08,6.464963697564837846e-08,6.666993813113739028e-08,6.869023928662640211e-08,7.071054044211541394e-08,7.273084159760442576e-08,7.475114275309343759e-08,7.677144390858244942e-08,7.879174506407146124e-08,8.081204621956047307e-08,8.283234737504948490e-08,8.485264853053849672e-08,8.687294968602750855e-08,8.889325084151652038e-08,9.091355199700553220e-08,9.293385315249454403e-08,9.495415430798355586e-08,9.697445546347256768e-08,9.899475661896157951e-08,1.010150577744505913e-07,1.030353589299396032e-07,1.050556600854286150e-07,1.070759612409176268e-07,1.090962623964066386e-07,1.111165635518956505e-07,1.131368647073846623e-07,1.151571658628736741e-07,1.171774670183626860e-07,1.191977681738516978e-07,1.212180693293407096e-07,1.232383704848297214e-07,1.252586716403187333e-07,1.272789727958077451e-07 +0.000000000000000000e+00,1.320650879484972510e-09,2.641301758969945020e-09,3.961952638454917737e-09,5.282603517939890867e-09,6.603254397424863998e-09,7.923905276909837128e-09,9.244556156394810258e-09,1.056520703587978339e-08,1.188585791536475652e-08,1.320650879484972965e-08,1.452715967433470278e-08,1.584781055381967756e-08,1.716846143330465070e-08,1.848911231278962383e-08,1.980976319227459696e-08,2.113041407175957009e-08,2.245106495124454322e-08,2.377171583072951635e-08,2.509236671021448948e-08,2.641301758969946261e-08,2.773366846918443574e-08,2.905431934866940887e-08,3.037497022815438200e-08,3.169562110763935513e-08,3.301627198712432826e-08,3.433692286660930139e-08,3.565757374609427452e-08,3.697822462557924765e-08,3.829887550506422078e-08,3.961952638454919391e-08,4.094017726403416704e-08,4.226082814351914017e-08,4.358147902300411330e-08,4.490212990248908643e-08,4.622278078197405956e-08,4.754343166145903269e-08,4.886408254094400582e-08,5.018473342042897896e-08,5.150538429991395209e-08,5.282603517939892522e-08,5.414668605888389835e-08,5.546733693836887148e-08,5.678798781785384461e-08,5.810863869733881774e-08,5.942928957682379087e-08,6.074994045630876400e-08,6.207059133579374375e-08,6.339124221527872349e-08,6.471189309476370324e-08,6.603254397424868299e-08,6.735319485373366274e-08,6.867384573321864249e-08,6.999449661270362223e-08,7.131514749218860198e-08,7.263579837167358173e-08,7.395644925115856148e-08,7.527710013064354122e-08,7.659775101012852097e-08,7.791840188961350072e-08,7.923905276909848047e-08,8.055970364858346022e-08,8.188035452806843996e-08,8.320100540755341971e-08 +0.000000000000000000e+00,-1.036801511481947713e-20,-2.073603022963895425e-20,-3.110404534445843138e-20,-4.147206045927790850e-20,-5.184007557409738563e-20,-6.220809068891686275e-20,-7.257610580373634589e-20,-8.294412091855582904e-20,-9.331213603337531218e-20,-1.036801511481947953e-19,-1.140481662630142785e-19,-1.244161813778337496e-19,-1.347841964926532207e-19,-1.451522116074726918e-19,-1.555202267222921629e-19,-1.658882418371116340e-19,-1.762562569519311051e-19,-1.866242720667505762e-19,-1.969922871815700473e-19,-2.073603022963895184e-19,-2.177283174112089895e-19,-2.280963325260284606e-19,-2.384643476408479317e-19,-2.488323627556674029e-19,-2.592003778704868740e-19,-2.695683929853063451e-19,-2.799364081001258162e-19,-2.903044232149452873e-19,-3.006724383297647584e-19,-3.110404534445842295e-19,-3.214084685594037006e-19,-3.317764836742231717e-19,-3.421444987890426428e-19,-3.525125139038621139e-19,-3.628805290186815850e-19,-3.732485441335010561e-19,-3.836165592483205272e-19,-3.939845743631399983e-19,-4.043525894779594695e-19,-4.147206045927789406e-19,-4.250886197075984117e-19,-4.354566348224178828e-19,-4.458246499372374020e-19,-4.561926650520569213e-19,-4.665606801668764405e-19,-4.769286952816959598e-19,-4.872967103965154790e-19,-4.976647255113349983e-19,-5.080327406261545176e-19,-5.184007557409740368e-19,-5.287687708557935561e-19,-5.391367859706130753e-19,-5.495048010854325946e-19,-5.598728162002521138e-19,-5.702408313150716331e-19,-5.806088464298911523e-19,-5.909768615447106716e-19,-6.013448766595301908e-19,-6.117128917743497101e-19,-6.220809068891692294e-19,-6.324489220039887486e-19,-6.428169371188082679e-19,-6.531849522336277871e-19 +0.000000000000000000e+00,2.104634494601977508e-09,4.209268989203955015e-09,6.313903483805932937e-09,8.418537978407911685e-09,1.052317247300989043e-08,1.262780696761186918e-08,1.473244146221384793e-08,1.683707595681582668e-08,1.894171045141780377e-08,2.104634494601978087e-08,2.315097944062175796e-08,2.525561393522373506e-08,2.736024842982571215e-08,2.946488292442768924e-08,3.156951741902966634e-08,3.367415191363164674e-08,3.577878640823362714e-08,3.788342090283560755e-08,3.998805539743758795e-08,4.209268989203956835e-08,4.419732438664154875e-08,4.630195888124352916e-08,4.840659337584550956e-08,5.051122787044748996e-08,5.261586236504947037e-08,5.472049685965145077e-08,5.682513135425343117e-08,5.892976584885541157e-08,6.103440034345739198e-08,6.313903483805937238e-08,6.524366933266135278e-08,6.734830382726333319e-08,6.945293832186531359e-08,7.155757281646729399e-08,7.366220731106927439e-08,7.576684180567125480e-08,7.787147630027323520e-08,7.997611079487521560e-08,8.208074528947719601e-08,8.418537978407917641e-08,8.629001427868115681e-08,8.839464877328313721e-08,9.049928326788511762e-08,9.260391776248709802e-08,9.470855225708907842e-08,9.681318675169105883e-08,9.891782124629303923e-08,1.010224557408950196e-07,1.031270902354970000e-07,1.052317247300989804e-07,1.073363592247009608e-07,1.094409937193029412e-07,1.115456282139049216e-07,1.136502627085069020e-07,1.157548972031088825e-07,1.178595316977108629e-07,1.199641661923128433e-07,1.220688006869148369e-07,1.241734351815168305e-07,1.262780696761188242e-07,1.283827041707208178e-07,1.304873386653228114e-07,1.325919731599248051e-07 +0.000000000000000000e+00,1.503191764463409137e-09,3.006383528926818274e-09,4.509575293390226997e-09,6.012767057853635720e-09,7.515958822317044444e-09,9.019150586780453994e-09,1.052234235124386354e-08,1.202553411570727310e-08,1.352872588017068265e-08,1.503191764463409220e-08,1.653510940909750175e-08,1.803830117356091130e-08,1.954149293802432085e-08,2.104468470248773040e-08,2.254787646695113995e-08,2.405106823141454950e-08,2.555425999587795905e-08,2.705745176034136860e-08,2.856064352480477815e-08,3.006383528926819101e-08,3.156702705373160056e-08,3.307021881819501011e-08,3.457341058265841966e-08,3.607660234712182921e-08,3.757979411158523876e-08,3.908298587604864831e-08,4.058617764051205786e-08,4.208936940497546741e-08,4.359256116943887696e-08,4.509575293390228652e-08,4.659894469836569607e-08,4.810213646282910562e-08,4.960532822729251517e-08,5.110851999175592472e-08,5.261171175621933427e-08,5.411490352068274382e-08,5.561809528514615337e-08,5.712128704960956292e-08,5.862447881407297247e-08,6.012767057853638202e-08,6.163086234299979157e-08,6.313405410746320112e-08,6.463724587192661067e-08,6.614043763639002022e-08,6.764362940085342977e-08,6.914682116531683932e-08,7.065001292978024887e-08,7.215320469424365842e-08,7.365639645870706797e-08,7.515958822317047753e-08,7.666277998763388708e-08,7.816597175209729663e-08,7.966916351656070618e-08,8.117235528102411573e-08,8.267554704548752528e-08,8.417873880995093483e-08,8.568193057441434438e-08,8.718512233887775393e-08,8.868831410334116348e-08,9.019150586780457303e-08,9.169469763226798258e-08,9.319788939673139213e-08,9.470108116119480168e-08 +0.000000000000000000e+00,1.382047305306005012e-09,2.764094610612010025e-09,4.146141915918014831e-09,5.528189221224019223e-09,6.910236526530023615e-09,8.292283831836028007e-09,9.674331137142033226e-09,1.105637844244803845e-08,1.243842574775404366e-08,1.382047305306004888e-08,1.520252035836605410e-08,1.658456766367205932e-08,1.796661496897806454e-08,1.934866227428406976e-08,2.073070957959007498e-08,2.211275688489608020e-08,2.349480419020208542e-08,2.487685149550809064e-08,2.625889880081409586e-08,2.764094610612010108e-08,2.902299341142610630e-08,3.040504071673210821e-08,3.178708802203811012e-08,3.316913532734411203e-08,3.455118263265011394e-08,3.593322993795611585e-08,3.731527724326211776e-08,3.869732454856811967e-08,4.007937185387412158e-08,4.146141915918012349e-08,4.284346646448612540e-08,4.422551376979212731e-08,4.560756107509812922e-08,4.698960838040413113e-08,4.837165568571013304e-08,4.975370299101613495e-08,5.113575029632213687e-08,5.251779760162813878e-08,5.389984490693414069e-08,5.528189221224014260e-08,5.666393951754614451e-08,5.804598682285214642e-08,5.942803412815814833e-08,6.081008143346415024e-08,6.219212873877015215e-08,6.357417604407615406e-08,6.495622334938215597e-08,6.633827065468815788e-08,6.772031795999415979e-08,6.910236526530016170e-08,7.048441257060616361e-08,7.186645987591216552e-08,7.324850718121816743e-08,7.463055448652416934e-08,7.601260179183017126e-08,7.739464909713617317e-08,7.877669640244217508e-08,8.015874370774817699e-08,8.154079101305417890e-08,8.292283831836018081e-08,8.430488562366618272e-08,8.568693292897218463e-08,8.706898023427818654e-08 +0.000000000000000000e+00,1.008889337854064542e-09,2.017778675708129084e-09,3.026668013562193626e-09,4.035557351416258168e-09,5.044446689270323124e-09,6.053336027124388079e-09,7.062225364978453035e-09,8.071114702832517990e-09,9.080004040686582946e-09,1.008889337854064790e-08,1.109778271639471286e-08,1.210667205424877781e-08,1.311556139210284277e-08,1.412445072995690772e-08,1.513334006781097268e-08,1.614222940566503929e-08,1.715111874351910590e-08,1.816000808137317251e-08,1.916889741922723912e-08,2.017778675708130573e-08,2.118667609493537234e-08,2.219556543278943895e-08,2.320445477064350556e-08,2.421334410849757217e-08,2.522223344635163878e-08,2.623112278420570539e-08,2.724001212205977200e-08,2.824890145991383861e-08,2.925779079776790522e-08,3.026668013562197183e-08,3.127556947347603844e-08,3.228445881133010505e-08,3.329334814918417166e-08,3.430223748703823827e-08,3.531112682489230488e-08,3.632001616274637149e-08,3.732890550060043810e-08,3.833779483845450471e-08,3.934668417630857132e-08,4.035557351416263793e-08,4.136446285201670454e-08,4.237335218987077115e-08,4.338224152772483776e-08,4.439113086557890437e-08,4.540002020343297098e-08,4.640890954128703759e-08,4.741779887914110420e-08,4.842668821699517081e-08,4.943557755484923742e-08,5.044446689270330403e-08,5.145335623055737064e-08,5.246224556841143725e-08,5.347113490626550386e-08,5.448002424411957047e-08,5.548891358197363708e-08,5.649780291982770369e-08,5.750669225768177030e-08,5.851558159553583691e-08,5.952447093338990352e-08,6.053336027124397013e-08,6.154224960909804335e-08,6.255113894695211658e-08,6.356002828480618981e-08 +0.000000000000000000e+00,-8.622034521314178496e-21,-1.724406904262835699e-20,-2.586610356394253699e-20,-3.448813808525672000e-20,-4.311017260657090301e-20,-5.173220712788508602e-20,-6.035424164919927505e-20,-6.897627617051346408e-20,-7.759831069182765311e-20,-8.622034521314184214e-20,-9.484237973445603117e-20,-1.034644142557702202e-19,-1.120864487770844092e-19,-1.207084832983985983e-19,-1.293305178197127873e-19,-1.379525523410269763e-19,-1.465745868623411653e-19,-1.551966213836553544e-19,-1.638186559049695434e-19,-1.724406904262837324e-19,-1.810627249475979215e-19,-1.896847594689121105e-19,-1.983067939902262995e-19,-2.069288285115404885e-19,-2.155508630328546776e-19,-2.241728975541688666e-19,-2.327949320754830556e-19,-2.414169665967972447e-19,-2.500390011181114337e-19,-2.586610356394256227e-19,-2.672830701607398117e-19,-2.759051046820540008e-19,-2.845271392033681898e-19,-2.931491737246823788e-19,-3.017712082459965679e-19,-3.103932427673107569e-19,-3.190152772886249459e-19,-3.276373118099391349e-19,-3.362593463312533240e-19,-3.448813808525675130e-19,-3.535034153738817020e-19,-3.621254498951958911e-19,-3.707474844165100801e-19,-3.793695189378242691e-19,-3.879915534591384581e-19,-3.966135879804526472e-19,-4.052356225017668362e-19,-4.138576570230810252e-19,-4.224796915443952143e-19,-4.311017260657094033e-19,-4.397237605870235442e-19,-4.483457951083376369e-19,-4.569678296296517296e-19,-4.655898641509658224e-19,-4.742118986722799151e-19,-4.828339331935940078e-19,-4.914559677149081006e-19,-5.000780022362221933e-19,-5.087000367575362860e-19,-5.173220712788503787e-19,-5.259441058001644715e-19,-5.345661403214785642e-19,-5.431881748427926569e-19 +0.000000000000000000e+00,-2.020301155509749245e-09,-4.040602311019498489e-09,-6.060903466529247734e-09,-8.081204622038996979e-09,-1.010150577754874622e-08,-1.212180693305849547e-08,-1.414210808856824471e-08,-1.616240924407799396e-08,-1.818271039958774486e-08,-2.020301155509749576e-08,-2.222331271060724665e-08,-2.424361386611699755e-08,-2.626391502162674845e-08,-2.828421617713649935e-08,-3.030451733264625025e-08,-3.232481848815600115e-08,-3.434511964366575205e-08,-3.636542079917550295e-08,-3.838572195468525385e-08,-4.040602311019500475e-08,-4.242632426570475565e-08,-4.444662542121450654e-08,-4.646692657672425744e-08,-4.848722773223400834e-08,-5.050752888774375924e-08,-5.252783004325351014e-08,-5.454813119876326104e-08,-5.656843235427301194e-08,-5.858873350978276284e-08,-6.060903466529251374e-08,-6.262933582080226464e-08,-6.464963697631201554e-08,-6.666993813182176643e-08,-6.869023928733151733e-08,-7.071054044284126823e-08,-7.273084159835101913e-08,-7.475114275386077003e-08,-7.677144390937052093e-08,-7.879174506488027183e-08,-8.081204622039002273e-08,-8.283234737589977363e-08,-8.485264853140952453e-08,-8.687294968691927542e-08,-8.889325084242902632e-08,-9.091355199793877722e-08,-9.293385315344852812e-08,-9.495415430895827902e-08,-9.697445546446802992e-08,-9.899475661997778082e-08,-1.010150577754875317e-07,-1.030353589309972826e-07,-1.050556600865070335e-07,-1.070759612420167844e-07,-1.090962623975265353e-07,-1.111165635530362862e-07,-1.131368647085460371e-07,-1.151571658640557880e-07,-1.171774670195655389e-07,-1.191977681750752898e-07,-1.212180693305850539e-07,-1.232383704860948181e-07,-1.252586716416045822e-07,-1.272789727971143463e-07 +0.000000000000000000e+00,-1.320650879467892471e-09,-2.641301758935784942e-09,-3.961952638403677207e-09,-5.282603517871569057e-09,-6.603254397339460908e-09,-7.923905276807352759e-09,-9.244556156275244610e-09,-1.056520703574313646e-08,-1.188585791521102831e-08,-1.320650879467892016e-08,-1.452715967414681201e-08,-1.584781055361470221e-08,-1.716846143308259241e-08,-1.848911231255048260e-08,-1.980976319201837280e-08,-2.113041407148626299e-08,-2.245106495095415319e-08,-2.377171583042204339e-08,-2.509236670988993358e-08,-2.641301758935782378e-08,-2.773366846882571398e-08,-2.905431934829360417e-08,-3.037497022776149768e-08,-3.169562110722939118e-08,-3.301627198669728469e-08,-3.433692286616517819e-08,-3.565757374563307170e-08,-3.697822462510096520e-08,-3.829887550456885871e-08,-3.961952638403675221e-08,-4.094017726350464572e-08,-4.226082814297253922e-08,-4.358147902244043273e-08,-4.490212990190832623e-08,-4.622278078137621974e-08,-4.754343166084411324e-08,-4.886408254031200675e-08,-5.018473341977990025e-08,-5.150538429924779376e-08,-5.282603517871568727e-08,-5.414668605818358077e-08,-5.546733693765147428e-08,-5.678798781711936778e-08,-5.810863869658726129e-08,-5.942928957605515479e-08,-6.074994045552304830e-08,-6.207059133499094180e-08,-6.339124221445883531e-08,-6.471189309392672881e-08,-6.603254397339462232e-08,-6.735319485286251582e-08,-6.867384573233040933e-08,-6.999449661179830283e-08,-7.131514749126619634e-08,-7.263579837073408984e-08,-7.395644925020198335e-08,-7.527710012966987685e-08,-7.659775100913777036e-08,-7.791840188860566386e-08,-7.923905276807355737e-08,-8.055970364754145087e-08,-8.188035452700934438e-08,-8.320100540647723788e-08 +0.000000000000000000e+00,-1.008889337874832772e-09,-2.017778675749665545e-09,-3.026668013624498110e-09,-4.035557351499330263e-09,-5.044446689374162415e-09,-6.053336027248994567e-09,-7.062225365123826719e-09,-8.071114702998658871e-09,-9.080004040873491023e-09,-1.008889337874832317e-08,-1.109778271662315533e-08,-1.210667205449798748e-08,-1.311556139237281963e-08,-1.412445073024765178e-08,-1.513334006812248228e-08,-1.614222940599731443e-08,-1.715111874387214658e-08,-1.816000808174697874e-08,-1.916889741962181089e-08,-2.017778675749664304e-08,-2.118667609537147519e-08,-2.219556543324630734e-08,-2.320445477112113950e-08,-2.421334410899597165e-08,-2.522223344687080380e-08,-2.623112278474563595e-08,-2.724001212262046811e-08,-2.824890146049530026e-08,-2.925779079837013241e-08,-3.026668013624496456e-08,-3.127556947411979671e-08,-3.228445881199462887e-08,-3.329334814986946102e-08,-3.430223748774429317e-08,-3.531112682561912532e-08,-3.632001616349395747e-08,-3.732890550136878963e-08,-3.833779483924362178e-08,-3.934668417711845393e-08,-4.035557351499328608e-08,-4.136446285286811823e-08,-4.237335219074295039e-08,-4.338224152861778254e-08,-4.439113086649261469e-08,-4.540002020436744684e-08,-4.640890954224227899e-08,-4.741779888011711115e-08,-4.842668821799194330e-08,-4.943557755586677545e-08,-5.044446689374160760e-08,-5.145335623161643975e-08,-5.246224556949127191e-08,-5.347113490736610406e-08,-5.448002424524093621e-08,-5.548891358311576836e-08,-5.649780292099060051e-08,-5.750669225886543267e-08,-5.851558159674026482e-08,-5.952447093461509697e-08,-6.053336027248992912e-08,-6.154224961036475466e-08,-6.255113894823958019e-08,-6.356002828611440573e-08 +0.000000000000000000e+00,-2.104634494619245317e-09,-4.209268989238490633e-09,-6.313903483857735950e-09,-8.418537978476981266e-09,-1.052317247309622658e-08,-1.262780696771547190e-08,-1.473244146233471722e-08,-1.683707595695396253e-08,-1.894171045157320785e-08,-2.104634494619245317e-08,-2.315097944081169848e-08,-2.525561393543094380e-08,-2.736024843005018912e-08,-2.946488292466943443e-08,-3.156951741928867975e-08,-3.367415191390792507e-08,-3.577878640852717038e-08,-3.788342090314641570e-08,-3.998805539776566102e-08,-4.209268989238490633e-08,-4.419732438700415165e-08,-4.630195888162339696e-08,-4.840659337624264228e-08,-5.051122787086188760e-08,-5.261586236548113291e-08,-5.472049686010037823e-08,-5.682513135471962355e-08,-5.892976584933886886e-08,-6.103440034395812080e-08,-6.313903483857737273e-08,-6.524366933319662467e-08,-6.734830382781587660e-08,-6.945293832243512853e-08,-7.155757281705438047e-08,-7.366220731167363240e-08,-7.576684180629288434e-08,-7.787147630091213627e-08,-7.997611079553138820e-08,-8.208074529015064014e-08,-8.418537978476989207e-08,-8.629001427938914401e-08,-8.839464877400839594e-08,-9.049928326862764787e-08,-9.260391776324689981e-08,-9.470855225786615174e-08,-9.681318675248540368e-08,-9.891782124710465561e-08,-1.010224557417239075e-07,-1.031270902363431595e-07,-1.052317247309624114e-07,-1.073363592255816633e-07,-1.094409937202009153e-07,-1.115456282148201672e-07,-1.136502627094394191e-07,-1.157548972040586711e-07,-1.178595316986779230e-07,-1.199641661932971750e-07,-1.220688006879164269e-07,-1.241734351825356788e-07,-1.262780696771549308e-07,-1.283827041717741827e-07,-1.304873386663934346e-07,-1.325919731610126866e-07 +0.000000000000000000e+00,-1.503191764465269673e-09,-3.006383528930539346e-09,-4.509575293395808812e-09,-6.012767057861077864e-09,-7.515958822326346917e-09,-9.019150586791615970e-09,-1.052234235125688502e-08,-1.202553411572215407e-08,-1.352872588018742313e-08,-1.503191764465269053e-08,-1.653510940911795958e-08,-1.803830117358322863e-08,-1.954149293804849768e-08,-2.104468470251376674e-08,-2.254787646697903579e-08,-2.405106823144430484e-08,-2.555425999590957389e-08,-2.705745176037484295e-08,-2.856064352484011200e-08,-3.006383528930538105e-08,-3.156702705377065010e-08,-3.307021881823591916e-08,-3.457341058270118821e-08,-3.607660234716645726e-08,-3.757979411163172631e-08,-3.908298587609699537e-08,-4.058617764056226442e-08,-4.208936940502753347e-08,-4.359256116949280252e-08,-4.509575293395807158e-08,-4.659894469842334063e-08,-4.810213646288860968e-08,-4.960532822735387873e-08,-5.110851999181914779e-08,-5.261171175628441684e-08,-5.411490352074968589e-08,-5.561809528521495494e-08,-5.712128704968022400e-08,-5.862447881414549305e-08,-6.012767057861076210e-08,-6.163086234307603777e-08,-6.313405410754131344e-08,-6.463724587200658911e-08,-6.614043763647186478e-08,-6.764362940093714045e-08,-6.914682116540241612e-08,-7.065001292986769179e-08,-7.215320469433296746e-08,-7.365639645879824313e-08,-7.515958822326351880e-08,-7.666277998772879447e-08,-7.816597175219407014e-08,-7.966916351665934581e-08,-8.117235528112462148e-08,-8.267554704558989715e-08,-8.417873881005517282e-08,-8.568193057452044849e-08,-8.718512233898572416e-08,-8.868831410345099983e-08,-9.019150586791627550e-08,-9.169469763238155117e-08,-9.319788939684682684e-08,-9.470108116131210251e-08 +0.000000000000000000e+00,-1.382047305286256696e-09,-2.764094610572513391e-09,-4.146141915858769674e-09,-5.528189221145025956e-09,-6.910236526431282238e-09,-8.292283831717539347e-09,-9.674331137003796457e-09,-1.105637844229005357e-08,-1.243842574757631068e-08,-1.382047305286256778e-08,-1.520252035814882324e-08,-1.658456766343507869e-08,-1.796661496872133415e-08,-1.934866227400758960e-08,-2.073070957929384506e-08,-2.211275688458010051e-08,-2.349480418986635597e-08,-2.487685149515261142e-08,-2.625889880043886688e-08,-2.764094610572512233e-08,-2.902299341101137779e-08,-3.040504071629763324e-08,-3.178708802158388870e-08,-3.316913532687014415e-08,-3.455118263215639961e-08,-3.593322993744265506e-08,-3.731527724272891052e-08,-3.869732454801516597e-08,-4.007937185330142143e-08,-4.146141915858767688e-08,-4.284346646387393234e-08,-4.422551376916018779e-08,-4.560756107444644325e-08,-4.698960837973269870e-08,-4.837165568501895416e-08,-4.975370299030520961e-08,-5.113575029559146507e-08,-5.251779760087772052e-08,-5.389984490616397598e-08,-5.528189221145023143e-08,-5.666393951673648689e-08,-5.804598682202274234e-08,-5.942803412730899780e-08,-6.081008143259525325e-08,-6.219212873788150871e-08,-6.357417604316776416e-08,-6.495622334845401962e-08,-6.633827065374027507e-08,-6.772031795902653053e-08,-6.910236526431278598e-08,-7.048441256959904144e-08,-7.186645987488529689e-08,-7.324850718017155235e-08,-7.463055448545780780e-08,-7.601260179074406326e-08,-7.739464909603031871e-08,-7.877669640131657417e-08,-8.015874370660282962e-08,-8.154079101188908508e-08,-8.292283831717534053e-08,-8.430488562246159599e-08,-8.568693292774785144e-08,-8.706898023303410690e-08 +0.000000000000000000e+00,1.020128718013257915e-09,2.040257436026515830e-09,3.060386154039773539e-09,4.080514872053030833e-09,5.100643590066288128e-09,6.120772308079545423e-09,7.140901026092802718e-09,8.161029744106060013e-09,9.181158462119317307e-09,1.020128718013257460e-08,1.122141589814583190e-08,1.224154461615908919e-08,1.326167333417234649e-08,1.428180205218560378e-08,1.530193077019886108e-08,1.632205948821211672e-08,1.734218820622537236e-08,1.836231692423862800e-08,1.938244564225188364e-08,2.040257436026513928e-08,2.142270307827839492e-08,2.244283179629165056e-08,2.346296051430490620e-08,2.448308923231816184e-08,2.550321795033141748e-08,2.652334666834467312e-08,2.754347538635792876e-08,2.856360410437118440e-08,2.958373282238444004e-08,3.060386154039769568e-08,3.162399025841095463e-08,3.264411897642421358e-08,3.366424769443747253e-08,3.468437641245073148e-08,3.570450513046399043e-08,3.672463384847724938e-08,3.774476256649050833e-08,3.876489128450376728e-08,3.978502000251702622e-08,4.080514872053028517e-08,4.182527743854354412e-08,4.284540615655680307e-08,4.386553487457006202e-08,4.488566359258332097e-08,4.590579231059657992e-08,4.692592102860983887e-08,4.794604974662309782e-08,4.896617846463635677e-08,4.998630718264961572e-08,5.100643590066287467e-08,5.202656461867613361e-08,5.304669333668939256e-08,5.406682205470265151e-08,5.508695077271591046e-08,5.610707949072916941e-08,5.712720820874242836e-08,5.814733692675568731e-08,5.916746564476894626e-08,6.018759436278220521e-08,6.120772308079545754e-08,6.222785179880870987e-08,6.324798051682196220e-08,6.426810923483521453e-08 +0.000000000000000000e+00,1.128184103023202233e-09,2.256368206046404467e-09,3.384552309069606700e-09,4.512736412092808933e-09,5.640920515116011166e-09,6.769104618139213400e-09,7.897288721162415633e-09,9.025472824185617866e-09,1.015365692720882010e-08,1.128184103023202233e-08,1.241002513325522457e-08,1.353820923627842680e-08,1.466639333930162903e-08,1.579457744232483127e-08,1.692276154534803350e-08,1.805094564837123573e-08,1.917912975139443797e-08,2.030731385441764020e-08,2.143549795744084243e-08,2.256368206046404467e-08,2.369186616348724690e-08,2.482005026651044913e-08,2.594823436953365136e-08,2.707641847255685360e-08,2.820460257558005583e-08,2.933278667860325806e-08,3.046097078162646030e-08,3.158915488464966253e-08,3.271733898767286476e-08,3.384552309069606700e-08,3.497370719371926923e-08,3.610189129674247146e-08,3.723007539976567370e-08,3.835825950278887593e-08,3.948644360581207816e-08,4.061462770883528040e-08,4.174281181185848263e-08,4.287099591488168486e-08,4.399918001790488710e-08,4.512736412092808933e-08,4.625554822395129156e-08,4.738373232697449380e-08,4.851191642999769603e-08,4.964010053302089826e-08,5.076828463604410050e-08,5.189646873906730273e-08,5.302465284209050496e-08,5.415283694511370720e-08,5.528102104813690943e-08,5.640920515116011166e-08,5.753738925418331390e-08,5.866557335720651613e-08,5.979375746022971836e-08,6.092194156325292060e-08,6.205012566627612283e-08,6.317830976929932506e-08,6.430649387232252730e-08,6.543467797534572953e-08,6.656286207836893176e-08,6.769104618139213400e-08,6.881923028441533623e-08,6.994741438743853846e-08,7.107559849046174070e-08 +0.000000000000000000e+00,1.069203477935131559e-09,2.138406955870263118e-09,3.207610433805394677e-09,4.276813911740526236e-09,5.346017389675657795e-09,6.415220867610789354e-09,7.484424345545921740e-09,8.553627823481054126e-09,9.622831301416186512e-09,1.069203477935131890e-08,1.176123825728645128e-08,1.283044173522158367e-08,1.389964521315671606e-08,1.496884869109185010e-08,1.603805216902698414e-08,1.710725564696211818e-08,1.817645912489725222e-08,1.924566260283238626e-08,2.031486608076752030e-08,2.138406955870265434e-08,2.245327303663778838e-08,2.352247651457292242e-08,2.459167999250805646e-08,2.566088347044319050e-08,2.673008694837832454e-08,2.779929042631345858e-08,2.886849390424859262e-08,2.993769738218372666e-08,3.100690086011886070e-08,3.207610433805399474e-08,3.314530781598912879e-08,3.421451129392426283e-08,3.528371477185939687e-08,3.635291824979453091e-08,3.742212172772966495e-08,3.849132520566479899e-08,3.956052868359993303e-08,4.062973216153506707e-08,4.169893563947020111e-08,4.276813911740533515e-08,4.383734259534046919e-08,4.490654607327560323e-08,4.597574955121073727e-08,4.704495302914587131e-08,4.811415650708100535e-08,4.918335998501613939e-08,5.025256346295127343e-08,5.132176694088640747e-08,5.239097041882154151e-08,5.346017389675667555e-08,5.452937737469180959e-08,5.559858085262694364e-08,5.666778433056207768e-08,5.773698780849721172e-08,5.880619128643234576e-08,5.987539476436747980e-08,6.094459824230260722e-08,6.201380172023773464e-08,6.308300519817286207e-08,6.415220867610798949e-08,6.522141215404311691e-08,6.629061563197824434e-08,6.735981910991337176e-08 +0.000000000000000000e+00,-1.020128717959140244e-09,-2.040257435918280488e-09,-3.060386153877420732e-09,-4.080514871836560976e-09,-5.100643589795700806e-09,-6.120772307754840637e-09,-7.140901025713980467e-09,-8.161029743673120297e-09,-9.181158461632260128e-09,-1.020128717959139996e-08,-1.122141589755053979e-08,-1.224154461550967962e-08,-1.326167333346881945e-08,-1.428180205142795928e-08,-1.530193076938709911e-08,-1.632205948734623729e-08,-1.734218820530537546e-08,-1.836231692326451364e-08,-1.938244564122365181e-08,-2.040257435918278999e-08,-2.142270307714192817e-08,-2.244283179510106634e-08,-2.346296051306020452e-08,-2.448308923101934269e-08,-2.550321794897848087e-08,-2.652334666693761905e-08,-2.754347538489675722e-08,-2.856360410285589540e-08,-2.958373282081503357e-08,-3.060386153877417175e-08,-3.162399025673331324e-08,-3.264411897469245472e-08,-3.366424769265159620e-08,-3.468437641061073769e-08,-3.570450512856987917e-08,-3.672463384652902066e-08,-3.774476256448816214e-08,-3.876489128244730363e-08,-3.978502000040644511e-08,-4.080514871836558660e-08,-4.182527743632472808e-08,-4.284540615428386957e-08,-4.386553487224301105e-08,-4.488566359020215254e-08,-4.590579230816129402e-08,-4.692592102612043551e-08,-4.794604974407957699e-08,-4.896617846203871848e-08,-4.998630717999785996e-08,-5.100643589795700145e-08,-5.202656461591614293e-08,-5.304669333387528442e-08,-5.406682205183442590e-08,-5.508695076979356738e-08,-5.610707948775270887e-08,-5.712720820571185035e-08,-5.814733692367099184e-08,-5.916746564163013332e-08,-6.018759435958927481e-08,-6.120772307754840968e-08,-6.222785179550754454e-08,-6.324798051346667941e-08,-6.426810923142581428e-08 +0.000000000000000000e+00,-1.128184102987289153e-09,-2.256368205974578306e-09,-3.384552308961867252e-09,-4.512736411949155785e-09,-5.640920514936444317e-09,-6.769104617923732850e-09,-7.897288720911022210e-09,-9.025472823898311570e-09,-1.015365692688560093e-08,-1.128184102987289029e-08,-1.241002513286017965e-08,-1.353820923584746901e-08,-1.466639333883475837e-08,-1.579457744182204773e-08,-1.692276154480933709e-08,-1.805094564779662645e-08,-1.917912975078391581e-08,-2.030731385377120517e-08,-2.143549795675849453e-08,-2.256368205974578389e-08,-2.369186616273307325e-08,-2.482005026572036261e-08,-2.594823436870765197e-08,-2.707641847169494133e-08,-2.820460257468223069e-08,-2.933278667766952005e-08,-3.046097078065680610e-08,-3.158915488364408884e-08,-3.271733898663137158e-08,-3.384552308961865432e-08,-3.497370719260593707e-08,-3.610189129559321981e-08,-3.723007539858050255e-08,-3.835825950156778529e-08,-3.948644360455506804e-08,-4.061462770754235078e-08,-4.174281181052963352e-08,-4.287099591351691626e-08,-4.399918001650419900e-08,-4.512736411949148175e-08,-4.625554822247876449e-08,-4.738373232546604723e-08,-4.851191642845332997e-08,-4.964010053144061272e-08,-5.076828463442789546e-08,-5.189646873741517820e-08,-5.302465284040246094e-08,-5.415283694338974369e-08,-5.528102104637702643e-08,-5.640920514936430917e-08,-5.753738925235159191e-08,-5.866557335533887466e-08,-5.979375745832615740e-08,-6.092194156131344014e-08,-6.205012566430072288e-08,-6.317830976728800562e-08,-6.430649387027528837e-08,-6.543467797326257111e-08,-6.656286207624985385e-08,-6.769104617923713659e-08,-6.881923028222441934e-08,-6.994741438521170208e-08,-7.107559848819898482e-08 +0.000000000000000000e+00,-1.069203477878797871e-09,-2.138406955757595742e-09,-3.207610433636393406e-09,-4.276813911515190656e-09,-5.346017389393987907e-09,-6.415220867272785157e-09,-7.484424345151581581e-09,-8.553627823030378004e-09,-9.622831300909174427e-09,-1.069203477878797085e-08,-1.176123825666676727e-08,-1.283044173454556370e-08,-1.389964521242436012e-08,-1.496884869030315654e-08,-1.603805216818195297e-08,-1.710725564606074939e-08,-1.817645912393954581e-08,-1.924566260181834224e-08,-2.031486607969713866e-08,-2.138406955757593508e-08,-2.245327303545473151e-08,-2.352247651333352793e-08,-2.459167999121232435e-08,-2.566088346909112078e-08,-2.673008694696991720e-08,-2.779929042484871362e-08,-2.886849390272751005e-08,-2.993769738060630647e-08,-3.100690085848509959e-08,-3.207610433636389270e-08,-3.314530781424268581e-08,-3.421451129212147893e-08,-3.528371477000027204e-08,-3.635291824787906516e-08,-3.742212172575785827e-08,-3.849132520363665139e-08,-3.956052868151544450e-08,-4.062973215939423762e-08,-4.169893563727303073e-08,-4.276813911515182385e-08,-4.383734259303061696e-08,-4.490654607090941007e-08,-4.597574954878820319e-08,-4.704495302666699630e-08,-4.811415650454578942e-08,-4.918335998242458253e-08,-5.025256346030337565e-08,-5.132176693818216876e-08,-5.239097041606096188e-08,-5.346017389393975499e-08,-5.452937737181854811e-08,-5.559858084969734122e-08,-5.666778432757613434e-08,-5.773698780545492745e-08,-5.880619128333372056e-08,-5.987539476121252030e-08,-6.094459823909132003e-08,-6.201380171697011976e-08,-6.308300519484891949e-08,-6.415220867272771922e-08,-6.522141215060651896e-08,-6.629061562848531869e-08,-6.735981910636411842e-08 +0.000000000000000000e+00,8.741271560034738968e-10,1.748254312006947794e-09,2.622381468010421690e-09,3.496508624013895587e-09,4.370635780017369070e-09,5.244762936020842554e-09,6.118890092024316037e-09,6.993017248027789520e-09,7.867144404031263003e-09,8.741271560034736486e-09,9.615398716038209970e-09,1.048952587204168345e-08,1.136365302804515694e-08,1.223778018404863042e-08,1.311190734005210390e-08,1.398603449605557739e-08,1.486016165205905087e-08,1.573428880806252270e-08,1.660841596406599618e-08,1.748254312006946966e-08,1.835667027607294315e-08,1.923079743207641663e-08,2.010492458807989011e-08,2.097905174408336360e-08,2.185317890008683708e-08,2.272730605609031056e-08,2.360143321209378405e-08,2.447556036809725753e-08,2.534968752410073101e-08,2.622381468010420450e-08,2.709794183610767798e-08,2.797206899211115146e-08,2.884619614811462495e-08,2.972032330411809843e-08,3.059445046012157191e-08,3.146857761612504540e-08,3.234270477212851888e-08,3.321683192813199236e-08,3.409095908413546584e-08,3.496508624013893933e-08,3.583921339614241281e-08,3.671334055214588629e-08,3.758746770814935978e-08,3.846159486415283326e-08,3.933572202015630674e-08,4.020984917615978023e-08,4.108397633216325371e-08,4.195810348816672719e-08,4.283223064417020068e-08,4.370635780017367416e-08,4.458048495617714764e-08,4.545461211218062113e-08,4.632873926818409461e-08,4.720286642418756809e-08,4.807699358019104158e-08,4.895112073619451506e-08,4.982524789219798854e-08,5.069937504820146203e-08,5.157350220420493551e-08,5.244762936020840899e-08,5.332175651621188247e-08,5.419588367221535596e-08,5.507001082821882944e-08 +0.000000000000000000e+00,9.355743797256039009e-10,1.871148759451207802e-09,2.806723139176811703e-09,3.742297518902415603e-09,4.677871898628019504e-09,5.613446278353623405e-09,6.549020658079227306e-09,7.484595037804831207e-09,8.420169417530435108e-09,9.355743797256039009e-09,1.029131817698164291e-08,1.122689255670724681e-08,1.216246693643285071e-08,1.309804131615845461e-08,1.403361569588405851e-08,1.496919007560966241e-08,1.590476445533526631e-08,1.684033883506087022e-08,1.777591321478647412e-08,1.871148759451207802e-08,1.964706197423768192e-08,2.058263635396328582e-08,2.151821073368888972e-08,2.245378511341449362e-08,2.338935949314009752e-08,2.432493387286570142e-08,2.526050825259130532e-08,2.619608263231690922e-08,2.713165701204251312e-08,2.806723139176811703e-08,2.900280577149372093e-08,2.993838015121932483e-08,3.087395453094492873e-08,3.180952891067053263e-08,3.274510329039613653e-08,3.368067767012174043e-08,3.461625204984734433e-08,3.555182642957294823e-08,3.648740080929855213e-08,3.742297518902415603e-08,3.835854956874975994e-08,3.929412394847536384e-08,4.022969832820096774e-08,4.116527270792657164e-08,4.210084708765217554e-08,4.303642146737777944e-08,4.397199584710338334e-08,4.490757022682898724e-08,4.584314460655459114e-08,4.677871898628019504e-08,4.771429336600579894e-08,4.864986774573140284e-08,4.958544212545700675e-08,5.052101650518261065e-08,5.145659088490821455e-08,5.239216526463381845e-08,5.332773964435942235e-08,5.426331402408502625e-08,5.519888840381063015e-08,5.613446278353623405e-08,5.707003716326183795e-08,5.800561154298744185e-08,5.894118592271304575e-08 +0.000000000000000000e+00,9.098296380751724275e-10,1.819659276150344855e-09,2.729488914225517489e-09,3.639318552300690123e-09,4.549148190375862758e-09,5.458977828451034978e-09,6.368807466526207199e-09,7.278637104601379420e-09,8.188466742676552467e-09,9.098296380751725515e-09,1.000812601882689856e-08,1.091795565690207161e-08,1.182778529497724466e-08,1.273761493305241771e-08,1.364744457112759075e-08,1.455727420920276380e-08,1.546710384727793685e-08,1.637693348535311155e-08,1.728676312342828625e-08,1.819659276150346096e-08,1.910642239957863566e-08,2.001625203765381036e-08,2.092608167572898506e-08,2.183591131380415977e-08,2.274574095187933447e-08,2.365557058995450917e-08,2.456540022802968387e-08,2.547522986610485857e-08,2.638505950418003328e-08,2.729488914225520798e-08,2.820471878033038268e-08,2.911454841840555738e-08,3.002437805648073209e-08,3.093420769455590679e-08,3.184403733263108149e-08,3.275386697070625619e-08,3.366369660878143089e-08,3.457352624685660560e-08,3.548335588493178030e-08,3.639318552300695500e-08,3.730301516108212970e-08,3.821284479915730441e-08,3.912267443723247911e-08,4.003250407530765381e-08,4.094233371338282851e-08,4.185216335145800321e-08,4.276199298953317792e-08,4.367182262760835262e-08,4.458165226568352732e-08,4.549148190375870202e-08,4.640131154183387673e-08,4.731114117990905143e-08,4.822097081798422613e-08,4.913080045605940083e-08,5.004063009413457553e-08,5.095045973220975024e-08,5.186028937028492494e-08,5.277011900836009964e-08,5.367994864643527434e-08,5.458977828451044904e-08,5.549960792258562375e-08,5.640943756066079845e-08,5.731926719873597315e-08 +0.000000000000000000e+00,-8.741271559148678605e-10,-1.748254311829735721e-09,-2.622381467744603478e-09,-3.496508623659471029e-09,-4.370635779574338579e-09,-5.244762935489206129e-09,-6.118890091404073680e-09,-6.993017247318941230e-09,-7.867144403233809607e-09,-8.741271559148678812e-09,-9.615398715063548017e-09,-1.048952587097841722e-08,-1.136365302689328643e-08,-1.223778018280815563e-08,-1.311190733872302484e-08,-1.398603449463789404e-08,-1.486016165055276325e-08,-1.573428880646763245e-08,-1.660841596238250165e-08,-1.748254311829737086e-08,-1.835667027421224006e-08,-1.923079743012710927e-08,-2.010492458604197847e-08,-2.097905174195684768e-08,-2.185317889787171688e-08,-2.272730605378658609e-08,-2.360143320970145529e-08,-2.447556036561632450e-08,-2.534968752153119370e-08,-2.622381467744606291e-08,-2.709794183336093211e-08,-2.797206898927580132e-08,-2.884619614519067052e-08,-2.972032330110553972e-08,-3.059445045702040562e-08,-3.146857761293527152e-08,-3.234270476885013741e-08,-3.321683192476500331e-08,-3.409095908067986920e-08,-3.496508623659473510e-08,-3.583921339250960100e-08,-3.671334054842446689e-08,-3.758746770433933279e-08,-3.846159486025419868e-08,-3.933572201616906458e-08,-4.020984917208393048e-08,-4.108397632799879637e-08,-4.195810348391366227e-08,-4.283223063982852816e-08,-4.370635779574339406e-08,-4.458048495165825996e-08,-4.545461210757312585e-08,-4.632873926348799175e-08,-4.720286641940285764e-08,-4.807699357531772354e-08,-4.895112073123258944e-08,-4.982524788714745533e-08,-5.069937504306232123e-08,-5.157350219897718712e-08,-5.244762935489205302e-08,-5.332175651080691892e-08,-5.419588366672178481e-08,-5.507001082263665071e-08 +0.000000000000000000e+00,-9.355743796538248896e-10,-1.871148759307649779e-09,-2.806723138961474669e-09,-3.742297518615299558e-09,-4.677871898269124034e-09,-5.613446277922948510e-09,-6.549020657576772987e-09,-7.484595037230597463e-09,-8.420169416884421939e-09,-9.355743796538246415e-09,-1.029131817619207089e-08,-1.122689255584589537e-08,-1.216246693549971984e-08,-1.309804131515354432e-08,-1.403361569480736879e-08,-1.496919007446119162e-08,-1.590476445411501609e-08,-1.684033883376884057e-08,-1.777591321342266504e-08,-1.871148759307648952e-08,-1.964706197273031400e-08,-2.058263635238413847e-08,-2.151821073203796295e-08,-2.245378511169178742e-08,-2.338935949134561190e-08,-2.432493387099943638e-08,-2.526050825065326085e-08,-2.619608263030708533e-08,-2.713165700996090980e-08,-2.806723138961473428e-08,-2.900280576926855876e-08,-2.993838014892238323e-08,-3.087395452857620771e-08,-3.180952890823003218e-08,-3.274510328788385666e-08,-3.368067766753768114e-08,-3.461625204719150561e-08,-3.555182642684533009e-08,-3.648740080649915456e-08,-3.742297518615297904e-08,-3.835854956580680352e-08,-3.929412394546062799e-08,-4.022969832511445247e-08,-4.116527270476827694e-08,-4.210084708442210142e-08,-4.303642146407592590e-08,-4.397199584372975037e-08,-4.490757022338357485e-08,-4.584314460303739933e-08,-4.677871898269122380e-08,-4.771429336234504828e-08,-4.864986774199887275e-08,-4.958544212165269723e-08,-5.052101650130652171e-08,-5.145659088096034618e-08,-5.239216526061417066e-08,-5.332773964026799513e-08,-5.426331401992181961e-08,-5.519888839957564409e-08,-5.613446277922946856e-08,-5.707003715888329304e-08,-5.800561153853711751e-08,-5.894118591819094199e-08 +0.000000000000000000e+00,-9.098296379846963426e-10,-1.819659275969392685e-09,-2.729488913954088924e-09,-3.639318551938784957e-09,-4.549148189923480989e-09,-5.458977827908177022e-09,-6.368807465892873054e-09,-7.278637103877569087e-09,-8.188466741862265946e-09,-9.098296379846963633e-09,-1.000812601783166132e-08,-1.091795565581635901e-08,-1.182778529380105669e-08,-1.273761493178575438e-08,-1.364744456977045207e-08,-1.455727420775514975e-08,-1.546710384573984744e-08,-1.637693348372454513e-08,-1.728676312170924281e-08,-1.819659275969394050e-08,-1.910642239767863819e-08,-2.001625203566333587e-08,-2.092608167364803356e-08,-2.183591131163273125e-08,-2.274574094961742894e-08,-2.365557058760212662e-08,-2.456540022558682431e-08,-2.547522986357152200e-08,-2.638505950155621968e-08,-2.729488913954091737e-08,-2.820471877752561506e-08,-2.911454841551031274e-08,-3.002437805349501374e-08,-3.093420769147971473e-08,-3.184403732946441573e-08,-3.275386696744911672e-08,-3.366369660543381772e-08,-3.457352624341851872e-08,-3.548335588140321971e-08,-3.639318551938792071e-08,-3.730301515737262170e-08,-3.821284479535732270e-08,-3.912267443334202369e-08,-4.003250407132672469e-08,-4.094233370931142568e-08,-4.185216334729612668e-08,-4.276199298528082768e-08,-4.367182262326552867e-08,-4.458165226125022967e-08,-4.549148189923493066e-08,-4.640131153721963166e-08,-4.731114117520433265e-08,-4.822097081318903365e-08,-4.913080045117373464e-08,-5.004063008915843564e-08,-5.095045972714313664e-08,-5.186028936512783763e-08,-5.277011900311253863e-08,-5.367994864109723962e-08,-5.458977827908194062e-08,-5.549960791706664161e-08,-5.640943755505134261e-08,-5.731926719303604360e-08 +0.000000000000000000e+00,7.849332175960894456e-10,1.569866435192178891e-09,2.354799652788268337e-09,3.139732870384357783e-09,3.924666087980446815e-09,4.709599305576535847e-09,5.494532523172624879e-09,6.279465740768713911e-09,7.064398958364802943e-09,7.849332175960891975e-09,8.634265393556981007e-09,9.419198611153070039e-09,1.020413182874915907e-08,1.098906504634524810e-08,1.177399826394133714e-08,1.255893148153742617e-08,1.334386469913351520e-08,1.412879791672960423e-08,1.491373113432569492e-08,1.569866435192178726e-08,1.648359756951787960e-08,1.726853078711397194e-08,1.805346400471006428e-08,1.883839722230615662e-08,1.962333043990224896e-08,2.040826365749834130e-08,2.119319687509443364e-08,2.197813009269052598e-08,2.276306331028661833e-08,2.354799652788271067e-08,2.433292974547880301e-08,2.511786296307489535e-08,2.590279618067098769e-08,2.668772939826708003e-08,2.747266261586317237e-08,2.825759583345926471e-08,2.904252905105535705e-08,2.982746226865144939e-08,3.061239548624754173e-08,3.139732870384363407e-08,3.218226192143972641e-08,3.296719513903581876e-08,3.375212835663191110e-08,3.453706157422800344e-08,3.532199479182409578e-08,3.610692800942018812e-08,3.689186122701628046e-08,3.767679444461237280e-08,3.846172766220846514e-08,3.924666087980455748e-08,4.003159409740064982e-08,4.081652731499674216e-08,4.160146053259283450e-08,4.238639375018892684e-08,4.317132696778501919e-08,4.395626018538111153e-08,4.474119340297720387e-08,4.552612662057329621e-08,4.631105983816938855e-08,4.709599305576548089e-08,4.788092627336157323e-08,4.866585949095766557e-08,4.945079270855375791e-08 +0.000000000000000000e+00,8.257266419396336141e-10,1.651453283879267228e-09,2.477179925818900842e-09,3.302906567758534457e-09,4.128633209698168071e-09,4.954359851637801685e-09,5.780086493577435299e-09,6.605813135517068913e-09,7.431539777456702527e-09,8.257266419396336141e-09,9.082993061335968928e-09,9.908719703275601715e-09,1.073444634521523450e-08,1.156017298715486729e-08,1.238589962909450008e-08,1.321162627103413286e-08,1.403735291297376565e-08,1.486307955491339844e-08,1.568880619685303122e-08,1.651453283879266236e-08,1.734025948073229349e-08,1.816598612267192462e-08,1.899171276461155575e-08,1.981743940655118689e-08,2.064316604849081802e-08,2.146889269043044915e-08,2.229461933237008028e-08,2.312034597430971142e-08,2.394607261624934255e-08,2.477179925818897368e-08,2.559752590012860482e-08,2.642325254206823595e-08,2.724897918400786708e-08,2.807470582594749821e-08,2.890043246788712935e-08,2.972615910982676048e-08,3.055188575176639161e-08,3.137761239370602274e-08,3.220333903564565388e-08,3.302906567758528501e-08,3.385479231952491614e-08,3.468051896146454727e-08,3.550624560340417841e-08,3.633197224534380954e-08,3.715769888728344067e-08,3.798342552922307180e-08,3.880915217116270294e-08,3.963487881310233407e-08,4.046060545504196520e-08,4.128633209698159633e-08,4.211205873892122747e-08,4.293778538086085860e-08,4.376351202280048973e-08,4.458923866474012086e-08,4.541496530667975200e-08,4.624069194861938313e-08,4.706641859055901426e-08,4.789214523249864540e-08,4.871787187443827653e-08,4.954359851637790766e-08,5.036932515831753879e-08,5.119505180025716993e-08,5.202077844219680106e-08 +0.000000000000000000e+00,8.108145617005773165e-10,1.621629123401154633e-09,2.432443685101731743e-09,3.243258246802308852e-09,4.054072808502885962e-09,4.864887370203463485e-09,5.675701931904041009e-09,6.486516493604618532e-09,7.297331055305196055e-09,8.108145617005773578e-09,8.918960178706351929e-09,9.729774740406930279e-09,1.054058930210750863e-08,1.135140386380808698e-08,1.216221842550866533e-08,1.297303298720924368e-08,1.378384754890982203e-08,1.459466211061040038e-08,1.540547667231097873e-08,1.621629123401155708e-08,1.702710579571213543e-08,1.783792035741271378e-08,1.864873491911329213e-08,1.945954948081387048e-08,2.027036404251444884e-08,2.108117860421502719e-08,2.189199316591560554e-08,2.270280772761618389e-08,2.351362228931676224e-08,2.432443685101734059e-08,2.513525141271791894e-08,2.594606597441849729e-08,2.675688053611907564e-08,2.756769509781965399e-08,2.837850965952023234e-08,2.918932422122081069e-08,3.000013878292138904e-08,3.081095334462197070e-08,3.162176790632255236e-08,3.243258246802313402e-08,3.324339702972371568e-08,3.405421159142429734e-08,3.486502615312487900e-08,3.567584071482546066e-08,3.648665527652604231e-08,3.729746983822662397e-08,3.810828439992720563e-08,3.891909896162778729e-08,3.972991352332836895e-08,4.054072808502895061e-08,4.135154264672953227e-08,4.216235720843011393e-08,4.297317177013069559e-08,4.378398633183127725e-08,4.459480089353185891e-08,4.540561545523244057e-08,4.621643001693302222e-08,4.702724457863360388e-08,4.783805914033418554e-08,4.864887370203476720e-08,4.945968826373534886e-08,5.027050282543593052e-08,5.108131738713651218e-08 +0.000000000000000000e+00,-7.849332174764607243e-10,-1.569866434952921449e-09,-2.354799652429382380e-09,-3.139732869905843311e-09,-3.924666087382304242e-09,-4.709599304858764759e-09,-5.494532522335225277e-09,-6.279465739811685794e-09,-7.064398957288146312e-09,-7.849332174764606829e-09,-8.634265392241067347e-09,-9.419198609717527864e-09,-1.020413182719398838e-08,-1.098906504467044890e-08,-1.177399826214690942e-08,-1.255893147962336993e-08,-1.334386469709983045e-08,-1.412879791457629097e-08,-1.491373113205275149e-08,-1.569866434952921035e-08,-1.648359756700566921e-08,-1.726853078448212808e-08,-1.805346400195858694e-08,-1.883839721943504580e-08,-1.962333043691150467e-08,-2.040826365438796353e-08,-2.119319687186442239e-08,-2.197813008934088126e-08,-2.276306330681734012e-08,-2.354799652429379898e-08,-2.433292974177025784e-08,-2.511786295924671671e-08,-2.590279617672317557e-08,-2.668772939419963443e-08,-2.747266261167609330e-08,-2.825759582915255216e-08,-2.904252904662901102e-08,-2.982746226410546989e-08,-3.061239548158193206e-08,-3.139732869905839423e-08,-3.218226191653485640e-08,-3.296719513401131857e-08,-3.375212835148778075e-08,-3.453706156896424292e-08,-3.532199478644070509e-08,-3.610692800391716726e-08,-3.689186122139362943e-08,-3.767679443887009161e-08,-3.846172765634655378e-08,-3.924666087382301595e-08,-4.003159409129947812e-08,-4.081652730877594029e-08,-4.160146052625240246e-08,-4.238639374372886464e-08,-4.317132696120532681e-08,-4.395626017868178898e-08,-4.474119339615825115e-08,-4.552612661363471332e-08,-4.631105983111117550e-08,-4.709599304858763767e-08,-4.788092626606409984e-08,-4.866585948354056201e-08,-4.945079270101702418e-08 +0.000000000000000000e+00,-8.257266418350550304e-10,-1.651453283670110061e-09,-2.477179925505165298e-09,-3.302906567340220535e-09,-4.128633209175275773e-09,-4.954359851010330596e-09,-5.780086492845385420e-09,-6.605813134680440244e-09,-7.431539776515495067e-09,-8.257266418350549891e-09,-9.082993060185605542e-09,-9.908719702020661193e-09,-1.073444634385571684e-08,-1.156017298569077249e-08,-1.238589962752582815e-08,-1.321162626936088380e-08,-1.403735291119593945e-08,-1.486307955303099510e-08,-1.568880619486605075e-08,-1.651453283670110640e-08,-1.734025947853616205e-08,-1.816598612037121770e-08,-1.899171276220627335e-08,-1.981743940404132900e-08,-2.064316604587638465e-08,-2.146889268771144030e-08,-2.229461932954649596e-08,-2.312034597138155161e-08,-2.394607261321660726e-08,-2.477179925505166291e-08,-2.559752589688671856e-08,-2.642325253872177421e-08,-2.724897918055682986e-08,-2.807470582239188551e-08,-2.890043246422694116e-08,-2.972615910606199681e-08,-3.055188574789705246e-08,-3.137761238973210811e-08,-3.220333903156716377e-08,-3.302906567340221942e-08,-3.385479231523727507e-08,-3.468051895707233072e-08,-3.550624559890738637e-08,-3.633197224074244202e-08,-3.715769888257749767e-08,-3.798342552441255332e-08,-3.880915216624760897e-08,-3.963487880808266462e-08,-4.046060544991772027e-08,-4.128633209175277592e-08,-4.211205873358783158e-08,-4.293778537542288723e-08,-4.376351201725794288e-08,-4.458923865909299853e-08,-4.541496530092805418e-08,-4.624069194276310983e-08,-4.706641858459816548e-08,-4.789214522643322113e-08,-4.871787186826827678e-08,-4.954359851010333243e-08,-5.036932515193838808e-08,-5.119505179377344373e-08,-5.202077843560849939e-08 +0.000000000000000000e+00,-8.108145615784754285e-10,-1.621629123156950857e-09,-2.432443684735426389e-09,-3.243258246313902128e-09,-4.054072807892377866e-09,-4.864887369470853605e-09,-5.675701931049329344e-09,-6.486516492627805082e-09,-7.297331054206280821e-09,-8.108145615784755733e-09,-8.918960177363230644e-09,-9.729774738941705556e-09,-1.054058930052018047e-08,-1.135140386209865538e-08,-1.216221842367713029e-08,-1.297303298525560520e-08,-1.378384754683408011e-08,-1.459466210841255502e-08,-1.540547666999102828e-08,-1.621629123156950154e-08,-1.702710579314797480e-08,-1.783792035472644805e-08,-1.864873491630492131e-08,-1.945954947788339457e-08,-2.027036403946186782e-08,-2.108117860104034108e-08,-2.189199316261881434e-08,-2.270280772419728760e-08,-2.351362228577576085e-08,-2.432443684735423411e-08,-2.513525140893270737e-08,-2.594606597051118062e-08,-2.675688053208965388e-08,-2.756769509366812714e-08,-2.837850965524660040e-08,-2.918932421682507365e-08,-3.000013877840354691e-08,-3.081095333998201686e-08,-3.162176790156048681e-08,-3.243258246313895676e-08,-3.324339702471742670e-08,-3.405421158629589665e-08,-3.486502614787436660e-08,-3.567584070945283655e-08,-3.648665527103130650e-08,-3.729746983260977645e-08,-3.810828439418824640e-08,-3.891909895576671634e-08,-3.972991351734518629e-08,-4.054072807892365624e-08,-4.135154264050212619e-08,-4.216235720208059614e-08,-4.297317176365906609e-08,-4.378398632523753603e-08,-4.459480088681600598e-08,-4.540561544839447593e-08,-4.621643000997294588e-08,-4.702724457155141583e-08,-4.783805913312988578e-08,-4.864887369470835572e-08,-4.945968825628682567e-08,-5.027050281786529562e-08,-5.108131737944376557e-08 +0.000000000000000000e+00,7.220149136779864485e-10,1.444029827355972897e-09,2.166044741033959345e-09,2.888059654711945794e-09,3.610074568389932242e-09,4.332089482067918691e-09,5.054104395745904726e-09,5.776119309423890761e-09,6.498134223101876795e-09,7.220149136779862830e-09,7.942164050457848865e-09,8.664178964135835727e-09,9.386193877813822589e-09,1.010820879149180945e-08,1.083022370516979631e-08,1.155223861884778318e-08,1.227425353252577004e-08,1.299626844620375690e-08,1.371828335988174376e-08,1.444029827355973062e-08,1.516231318723771583e-08,1.588432810091570104e-08,1.660634301459368625e-08,1.732835792827167145e-08,1.805037284194965666e-08,1.877238775562764187e-08,1.949440266930562708e-08,2.021641758298361229e-08,2.093843249666159749e-08,2.166044741033958270e-08,2.238246232401756791e-08,2.310447723769555312e-08,2.382649215137353832e-08,2.454850706505152353e-08,2.527052197872950874e-08,2.599253689240749395e-08,2.671455180608547915e-08,2.743656671976346436e-08,2.815858163344144957e-08,2.888059654711943478e-08,2.960261146079741999e-08,3.032462637447540519e-08,3.104664128815339040e-08,3.176865620183137561e-08,3.249067111550936082e-08,3.321268602918734602e-08,3.393470094286533123e-08,3.465671585654331644e-08,3.537873077022130165e-08,3.610074568389928685e-08,3.682276059757727206e-08,3.754477551125525727e-08,3.826679042493324248e-08,3.898880533861122769e-08,3.971082025228921289e-08,4.043283516596719810e-08,4.115485007964518331e-08,4.187686499332316852e-08,4.259887990700115372e-08,4.332089482067913893e-08,4.404290973435712414e-08,4.476492464803510935e-08,4.548693956171309455e-08 +0.000000000000000000e+00,7.521193506213339085e-10,1.504238701242667817e-09,2.256358051864001519e-09,3.008477402485335221e-09,3.760596753106668922e-09,4.512716103728003038e-09,5.264835454349337153e-09,6.016954804970671268e-09,6.769074155592005384e-09,7.521193506213339499e-09,8.273312856834674441e-09,9.025432207456009384e-09,9.777551558077344326e-09,1.052967090869867927e-08,1.128179025932001421e-08,1.203390960994134915e-08,1.278602896056268410e-08,1.353814831118401904e-08,1.429026766180535398e-08,1.504238701242668892e-08,1.579450636304802387e-08,1.654662571366935881e-08,1.729874506429069375e-08,1.805086441491202869e-08,1.880298376553336364e-08,1.955510311615469858e-08,2.030722246677603352e-08,2.105934181739736846e-08,2.181146116801870341e-08,2.256358051864003835e-08,2.331569986926137329e-08,2.406781921988270823e-08,2.481993857050404318e-08,2.557205792112537812e-08,2.632417727174671306e-08,2.707629662236804800e-08,2.782841597298938295e-08,2.858053532361071789e-08,2.933265467423205283e-08,3.008477402485338447e-08,3.083689337547471941e-08,3.158901272609605435e-08,3.234113207671738929e-08,3.309325142733872424e-08,3.384537077796005918e-08,3.459749012858139412e-08,3.534960947920272906e-08,3.610172882982406401e-08,3.685384818044539895e-08,3.760596753106673389e-08,3.835808688168806883e-08,3.911020623230940378e-08,3.986232558293073872e-08,4.061444493355207366e-08,4.136656428417340860e-08,4.211868363479474355e-08,4.287080298541607849e-08,4.362292233603741343e-08,4.437504168665874837e-08,4.512716103728008332e-08,4.587928038790141826e-08,4.663139973852275320e-08,4.738351908914408814e-08 +0.000000000000000000e+00,7.384226308165600795e-10,1.476845261633120159e-09,2.215267892449680342e-09,2.953690523266240731e-09,3.692113154082801121e-09,4.430535784899361511e-09,5.168958415715921900e-09,5.907381046532482290e-09,6.645803677349042680e-09,7.384226308165603069e-09,8.122648938982163459e-09,8.861071569798724676e-09,9.599494200615285893e-09,1.033791683143184711e-08,1.107633946224840833e-08,1.181476209306496954e-08,1.255318472388153076e-08,1.329160735469809198e-08,1.403002998551465319e-08,1.476845261633121441e-08,1.550687524714777397e-08,1.624529787796433354e-08,1.698372050878089310e-08,1.772214313959745266e-08,1.846056577041401222e-08,1.919898840123057179e-08,1.993741103204713135e-08,2.067583366286369091e-08,2.141425629368025047e-08,2.215267892449681004e-08,2.289110155531336960e-08,2.362952418612992916e-08,2.436794681694648872e-08,2.510636944776304829e-08,2.584479207857960785e-08,2.658321470939616741e-08,2.732163734021272697e-08,2.806005997102928654e-08,2.879848260184584610e-08,2.953690523266240566e-08,3.027532786347896522e-08,3.101375049429552148e-08,3.175217312511207773e-08,3.249059575592863398e-08,3.322901838674519024e-08,3.396744101756174649e-08,3.470586364837830275e-08,3.544428627919485900e-08,3.618270891001141525e-08,3.692113154082797151e-08,3.765955417164452776e-08,3.839797680246108401e-08,3.913639943327764027e-08,3.987482206409419652e-08,4.061324469491075278e-08,4.135166732572730903e-08,4.209008995654386528e-08,4.282851258736042154e-08,4.356693521817697779e-08,4.430535784899353404e-08,4.504378047981009030e-08,4.578220311062664655e-08,4.652062574144320281e-08 +0.000000000000000000e+00,-7.220149135306428339e-10,-1.444029827061285668e-09,-2.166044740591928502e-09,-2.888059654122571336e-09,-3.610074567653214170e-09,-4.332089481183857003e-09,-5.054104394714499837e-09,-5.776119308245142671e-09,-6.498134221775785505e-09,-7.220149135306428339e-09,-7.942164048837071173e-09,-8.664178962367714007e-09,-9.386193875898356841e-09,-1.010820878942899967e-08,-1.083022370295964251e-08,-1.155223861649028534e-08,-1.227425353002092818e-08,-1.299626844355157101e-08,-1.371828335708221384e-08,-1.444029827061285668e-08,-1.516231318414349786e-08,-1.588432809767413904e-08,-1.660634301120478022e-08,-1.732835792473542140e-08,-1.805037283826606258e-08,-1.877238775179670376e-08,-1.949440266532734493e-08,-2.021641757885798611e-08,-2.093843249238862729e-08,-2.166044740591926847e-08,-2.238246231944990965e-08,-2.310447723298055083e-08,-2.382649214651119201e-08,-2.454850706004183319e-08,-2.527052197357247437e-08,-2.599253688710311555e-08,-2.671455180063375673e-08,-2.743656671416439791e-08,-2.815858162769503909e-08,-2.888059654122568027e-08,-2.960261145475632145e-08,-3.032462636828696263e-08,-3.104664128181760381e-08,-3.176865619534824499e-08,-3.249067110887888617e-08,-3.321268602240952735e-08,-3.393470093594016853e-08,-3.465671584947080971e-08,-3.537873076300145088e-08,-3.610074567653209206e-08,-3.682276059006273324e-08,-3.754477550359337442e-08,-3.826679041712401560e-08,-3.898880533065465678e-08,-3.971082024418529796e-08,-4.043283515771593914e-08,-4.115485007124658032e-08,-4.187686498477722150e-08,-4.259887989830786268e-08,-4.332089481183850386e-08,-4.404290972536914504e-08,-4.476492463889978622e-08,-4.548693955243042740e-08 +0.000000000000000000e+00,-7.521193504875105611e-10,-1.504238700975021122e-09,-2.256358051462531890e-09,-3.008477401950042658e-09,-3.760596752437553426e-09,-4.512716102925063780e-09,-5.264835453412574134e-09,-6.016954803900084489e-09,-6.769074154387594843e-09,-7.521193504875105197e-09,-8.273312855362615552e-09,-9.025432205850125906e-09,-9.777551556337636260e-09,-1.052967090682514661e-08,-1.128179025731265697e-08,-1.203390960780016732e-08,-1.278602895828767768e-08,-1.353814830877518803e-08,-1.429026765926269839e-08,-1.504238700975020709e-08,-1.579450636023771744e-08,-1.654662571072522779e-08,-1.729874506121273815e-08,-1.805086441170024850e-08,-1.880298376218775886e-08,-1.955510311267526921e-08,-2.030722246316277957e-08,-2.105934181365028992e-08,-2.181146116413780027e-08,-2.256358051462531063e-08,-2.331569986511282098e-08,-2.406781921560033134e-08,-2.481993856608784169e-08,-2.557205791657535205e-08,-2.632417726706286240e-08,-2.707629661755037275e-08,-2.782841596803788311e-08,-2.858053531852539346e-08,-2.933265466901290382e-08,-3.008477401950041417e-08,-3.083689336998792453e-08,-3.158901272047543488e-08,-3.234113207096294523e-08,-3.309325142145045559e-08,-3.384537077193796594e-08,-3.459749012242547630e-08,-3.534960947291298665e-08,-3.610172882340049701e-08,-3.685384817388800736e-08,-3.760596752437551771e-08,-3.835808687486302807e-08,-3.911020622535053842e-08,-3.986232557583804878e-08,-4.061444492632555913e-08,-4.136656427681306949e-08,-4.211868362730057984e-08,-4.287080297778809019e-08,-4.362292232827560055e-08,-4.437504167876311090e-08,-4.512716102925062126e-08,-4.587928037973813161e-08,-4.663139973022564197e-08,-4.738351908071315232e-08 +0.000000000000000000e+00,-7.384226306656965012e-10,-1.476845261331393002e-09,-2.215267891997089297e-09,-2.953690522662785591e-09,-3.692113153328481886e-09,-4.430535783994178594e-09,-5.168958414659875302e-09,-5.907381045325572010e-09,-6.645803675991268718e-09,-7.384226306656965426e-09,-8.122648937322662134e-09,-8.861071567988358842e-09,-9.599494198654055550e-09,-1.033791682931975226e-08,-1.107633945998544897e-08,-1.181476209065114567e-08,-1.255318472131684238e-08,-1.329160735198253909e-08,-1.403002998264823580e-08,-1.476845261331393251e-08,-1.550687524397962921e-08,-1.624529787464532427e-08,-1.698372050531101932e-08,-1.772214313597671437e-08,-1.846056576664240943e-08,-1.919898839730810448e-08,-1.993741102797379954e-08,-2.067583365863949459e-08,-2.141425628930518964e-08,-2.215267891997088470e-08,-2.289110155063657975e-08,-2.362952418130227480e-08,-2.436794681196796986e-08,-2.510636944263366491e-08,-2.584479207329935996e-08,-2.658321470396505502e-08,-2.732163733463075007e-08,-2.806005996529644513e-08,-2.879848259596214018e-08,-2.953690522662783523e-08,-3.027532785729352698e-08,-3.101375048795921872e-08,-3.175217311862491047e-08,-3.249059574929060221e-08,-3.322901837995629396e-08,-3.396744101062198570e-08,-3.470586364128767745e-08,-3.544428627195336919e-08,-3.618270890261906094e-08,-3.692113153328475268e-08,-3.765955416395044443e-08,-3.839797679461613617e-08,-3.913639942528182792e-08,-3.987482205594751966e-08,-4.061324468661321141e-08,-4.135166731727890315e-08,-4.209008994794459490e-08,-4.282851257861028664e-08,-4.356693520927597839e-08,-4.430535783994167013e-08,-4.504378047060736188e-08,-4.578220310127305362e-08,-4.652062573193874537e-08 +0.000000000000000000e+00,6.717083210444656687e-10,1.343416642088931337e-09,2.015124963133397110e-09,2.686833284177863089e-09,3.358541605222329067e-09,4.030249926266795046e-09,4.701958247311261439e-09,5.373666568355727831e-09,6.045374889400194224e-09,6.717083210444660616e-09,7.388791531489127009e-09,8.060499852533593401e-09,8.732208173578059794e-09,9.403916494622526187e-09,1.007562481566699258e-08,1.074733313671145897e-08,1.141904145775592536e-08,1.209074977880039176e-08,1.276245809984485815e-08,1.343416642088932454e-08,1.410587474193379093e-08,1.477758306297825733e-08,1.544929138402272372e-08,1.612099970506719011e-08,1.679270802611165650e-08,1.746441634715612290e-08,1.813612466820058929e-08,1.880783298924505568e-08,1.947954131028952207e-08,2.015124963133398847e-08,2.082295795237845486e-08,2.149466627342292125e-08,2.216637459446738764e-08,2.283808291551185404e-08,2.350979123655632043e-08,2.418149955760078682e-08,2.485320787864525321e-08,2.552491619968971961e-08,2.619662452073418600e-08,2.686833284177865239e-08,2.754004116282311878e-08,2.821174948386758518e-08,2.888345780491205157e-08,2.955516612595651796e-08,3.022687444700098105e-08,3.089858276804544082e-08,3.157029108908990060e-08,3.224199941013436037e-08,3.291370773117882015e-08,3.358541605222327992e-08,3.425712437326773970e-08,3.492883269431219947e-08,3.560054101535665925e-08,3.627224933640111902e-08,3.694395765744557880e-08,3.761566597849003857e-08,3.828737429953449835e-08,3.895908262057895812e-08,3.963079094162341790e-08,4.030249926266787767e-08,4.097420758371233745e-08,4.164591590475679722e-08,4.231762422580125700e-08 +0.000000000000000000e+00,6.965284877708234887e-10,1.393056975541646977e-09,2.089585463312470466e-09,2.786113951083293955e-09,3.482642438854117444e-09,4.179170926624940932e-09,4.875699414395764421e-09,5.572227902166587910e-09,6.268756389937411398e-09,6.965284877708234887e-09,7.661813365479059203e-09,8.358341853249883519e-09,9.054870341020707835e-09,9.751398828791532151e-09,1.044792731656235647e-08,1.114445580433318078e-08,1.184098429210400510e-08,1.253751277987482941e-08,1.323404126764565373e-08,1.393056975541647805e-08,1.462709824318730236e-08,1.532362673095812502e-08,1.602015521872894769e-08,1.671668370649977035e-08,1.741321219427059301e-08,1.810974068204141567e-08,1.880626916981223833e-08,1.950279765758306099e-08,2.019932614535388365e-08,2.089585463312470632e-08,2.159238312089552898e-08,2.228891160866635164e-08,2.298544009643717430e-08,2.368196858420799696e-08,2.437849707197881962e-08,2.507502555974964229e-08,2.577155404752046495e-08,2.646808253529128761e-08,2.716461102306211027e-08,2.786113951083293293e-08,2.855766799860375559e-08,2.925419648637457825e-08,2.995072497414540092e-08,3.064725346191622358e-08,3.134378194968704624e-08,3.204031043745786890e-08,3.273683892522869156e-08,3.343336741299951422e-08,3.412989590077033689e-08,3.482642438854115955e-08,3.552295287631198221e-08,3.621948136408280487e-08,3.691600985185362753e-08,3.761253833962445019e-08,3.830906682739527285e-08,3.900559531516609552e-08,3.970212380293691818e-08,4.039865229070774084e-08,4.109518077847856350e-08,4.179170926624938616e-08,4.248823775402020882e-08,4.318476624179103149e-08,4.388129472956185415e-08 +0.000000000000000000e+00,6.779215175402200647e-10,1.355843035080440129e-09,2.033764552620659987e-09,2.711686070160879845e-09,3.389607587701099703e-09,4.067529105241319975e-09,4.745450622781540246e-09,5.423372140321760518e-09,6.101293657861980789e-09,6.779215175402201061e-09,7.457136692942421332e-09,8.135058210482641604e-09,8.812979728022861875e-09,9.490901245563082147e-09,1.016882276310330242e-08,1.084674428064352269e-08,1.152466579818374296e-08,1.220258731572396323e-08,1.288050883326418350e-08,1.355843035080440378e-08,1.423635186834462405e-08,1.491427338588484597e-08,1.559219490342506624e-08,1.627011642096528652e-08,1.694803793850550679e-08,1.762595945604572706e-08,1.830388097358594733e-08,1.898180249112616760e-08,1.965972400866638787e-08,2.033764552620660814e-08,2.101556704374682842e-08,2.169348856128704869e-08,2.237141007882726896e-08,2.304933159636748923e-08,2.372725311390770950e-08,2.440517463144792977e-08,2.508309614898815005e-08,2.576101766652837032e-08,2.643893918406859059e-08,2.711686070160881086e-08,2.779478221914903113e-08,2.847270373668925140e-08,2.915062525422947167e-08,2.982854677176969195e-08,3.050646828930991222e-08,3.118438980685013249e-08,3.186231132439035276e-08,3.254023284193057303e-08,3.321815435947079330e-08,3.389607587701101357e-08,3.457399739455123385e-08,3.525191891209145412e-08,3.592984042963167439e-08,3.660776194717189466e-08,3.728568346471211493e-08,3.796360498225233520e-08,3.864152649979255548e-08,3.931944801733277575e-08,3.999736953487299602e-08,4.067529105241321629e-08,4.135321256995343656e-08,4.203113408749365683e-08,4.270905560503387710e-08 +0.000000000000000000e+00,-6.717083208725409347e-10,-1.343416641745081869e-09,-2.015124962617622701e-09,-2.686833283490163325e-09,-3.358541604362703950e-09,-4.030249925235244574e-09,-4.701958246107784785e-09,-5.373666566980324996e-09,-6.045374887852865207e-09,-6.717083208725405418e-09,-7.388791529597945629e-09,-8.060499850470485840e-09,-8.732208171343026051e-09,-9.403916492215566262e-09,-1.007562481308810647e-08,-1.074733313396064668e-08,-1.141904145483318689e-08,-1.209074977570572711e-08,-1.276245809657826732e-08,-1.343416641745080753e-08,-1.410587473832334774e-08,-1.477758305919588795e-08,-1.544929138006842651e-08,-1.612099970094096506e-08,-1.679270802181350362e-08,-1.746441634268604218e-08,-1.813612466355858073e-08,-1.880783298443111929e-08,-1.947954130530365784e-08,-2.015124962617619640e-08,-2.082295794704873496e-08,-2.149466626792127351e-08,-2.216637458879381207e-08,-2.283808290966635063e-08,-2.350979123053888918e-08,-2.418149955141142774e-08,-2.485320787228396630e-08,-2.552491619315650485e-08,-2.619662451402904341e-08,-2.686833283490158197e-08,-2.754004115577412052e-08,-2.821174947664665908e-08,-2.888345779751919764e-08,-2.955516611839173619e-08,-3.022687443926427475e-08,-3.089858276013681331e-08,-3.157029108100935186e-08,-3.224199940188189042e-08,-3.291370772275442898e-08,-3.358541604362696753e-08,-3.425712436449950609e-08,-3.492883268537204465e-08,-3.560054100624458320e-08,-3.627224932711712176e-08,-3.694395764798966032e-08,-3.761566596886219887e-08,-3.828737428973473743e-08,-3.895908261060727599e-08,-3.963079093147981454e-08,-4.030249925235235310e-08,-4.097420757322489165e-08,-4.164591589409743021e-08,-4.231762421496996877e-08 +0.000000000000000000e+00,-6.965284876108178069e-10,-1.393056975221635614e-09,-2.089585462832453421e-09,-2.786113950443271228e-09,-3.482642438054089035e-09,-4.179170925664906842e-09,-4.875699413275724648e-09,-5.572227900886542455e-09,-6.268756388497360262e-09,-6.965284876108178069e-09,-7.661813363718995876e-09,-8.358341851329813683e-09,-9.054870338940631490e-09,-9.751398826551449297e-09,-1.044792731416226710e-08,-1.114445580177308491e-08,-1.184098428938390272e-08,-1.253751277699472052e-08,-1.323404126460553833e-08,-1.393056975221635614e-08,-1.462709823982717395e-08,-1.532362672743799175e-08,-1.602015521504880790e-08,-1.671668370265962406e-08,-1.741321219027044021e-08,-1.810974067788125636e-08,-1.880626916549207252e-08,-1.950279765310288867e-08,-2.019932614071370482e-08,-2.089585462832452097e-08,-2.159238311593533713e-08,-2.228891160354615328e-08,-2.298544009115696943e-08,-2.368196857876778558e-08,-2.437849706637860174e-08,-2.507502555398941789e-08,-2.577155404160023404e-08,-2.646808252921105019e-08,-2.716461101682186635e-08,-2.786113950443268250e-08,-2.855766799204349865e-08,-2.925419647965431480e-08,-2.995072496726513096e-08,-3.064725345487595042e-08,-3.134378194248676988e-08,-3.204031043009758934e-08,-3.273683891770840880e-08,-3.343336740531922826e-08,-3.412989589293004772e-08,-3.482642438054086719e-08,-3.552295286815168665e-08,-3.621948135576250611e-08,-3.691600984337332557e-08,-3.761253833098414503e-08,-3.830906681859496449e-08,-3.900559530620578395e-08,-3.970212379381660341e-08,-4.039865228142742288e-08,-4.109518076903824234e-08,-4.179170925664906180e-08,-4.248823774425988126e-08,-4.318476623187070072e-08,-4.388129471948152018e-08 +0.000000000000000000e+00,-6.779215173625630724e-10,-1.355843034725126145e-09,-2.033764552087689321e-09,-2.711686069450252703e-09,-3.389607586812816086e-09,-4.067529104175379469e-09,-4.745450621537942851e-09,-5.423372138900506234e-09,-6.101293656263069616e-09,-6.779215173625632999e-09,-7.457136690988195554e-09,-8.135058208350757283e-09,-8.812979725713319011e-09,-9.490901243075880739e-09,-1.016882276043844247e-08,-1.084674427780100420e-08,-1.152466579516356592e-08,-1.220258731252612765e-08,-1.288050882988868938e-08,-1.355843034725125111e-08,-1.423635186461381284e-08,-1.491427338197637457e-08,-1.559219489933893629e-08,-1.627011641670149802e-08,-1.694803793406405975e-08,-1.762595945142662148e-08,-1.830388096878918321e-08,-1.898180248615174493e-08,-1.965972400351430666e-08,-2.033764552087686839e-08,-2.101556703823943012e-08,-2.169348855560199185e-08,-2.237141007296455358e-08,-2.304933159032711530e-08,-2.372725310768967703e-08,-2.440517462505223876e-08,-2.508309614241480049e-08,-2.576101765977736222e-08,-2.643893917713992395e-08,-2.711686069450248567e-08,-2.779478221186504740e-08,-2.847270372922760913e-08,-2.915062524659017086e-08,-2.982854676395272928e-08,-3.050646828131528439e-08,-3.118438979867783950e-08,-3.186231131604039461e-08,-3.254023283340294972e-08,-3.321815435076550483e-08,-3.389607586812805994e-08,-3.457399738549061505e-08,-3.525191890285317016e-08,-3.592984042021572528e-08,-3.660776193757828039e-08,-3.728568345494083550e-08,-3.796360497230339061e-08,-3.864152648966594572e-08,-3.931944800702850083e-08,-3.999736952439105594e-08,-4.067529104175361105e-08,-4.135321255911616616e-08,-4.203113407647872127e-08,-4.270905559384127638e-08 +0.000000000000000000e+00,6.292324145315065236e-10,1.258464829063013047e-09,1.887697243594519674e-09,2.516929658126026508e-09,3.146162072657533342e-09,3.775394487189040176e-09,4.404626901720547009e-09,5.033859316252053843e-09,5.663091730783560677e-09,6.292324145315067511e-09,6.921556559846574345e-09,7.550788974378082006e-09,8.180021388909590494e-09,8.809253803441098982e-09,9.438486217972607470e-09,1.006771863250411596e-08,1.069695104703562445e-08,1.132618346156713293e-08,1.195541587609864142e-08,1.258464829063014991e-08,1.321388070516165840e-08,1.384311311969316689e-08,1.447234553422467538e-08,1.510157794875618386e-08,1.573081036328769235e-08,1.636004277781920084e-08,1.698927519235070933e-08,1.761850760688221782e-08,1.824774002141372630e-08,1.887697243594523479e-08,1.950620485047674328e-08,2.013543726500825177e-08,2.076466967953976026e-08,2.139390209407126875e-08,2.202313450860277723e-08,2.265236692313428572e-08,2.328159933766579421e-08,2.391083175219730270e-08,2.454006416672881119e-08,2.516929658126031967e-08,2.579852899579182816e-08,2.642776141032333665e-08,2.705699382485484514e-08,2.768622623938635363e-08,2.831545865391786212e-08,2.894469106844937060e-08,2.957392348298087909e-08,3.020315589751238758e-08,3.083238831204389276e-08,3.146162072657539794e-08,3.209085314110690312e-08,3.272008555563840830e-08,3.334931797016991348e-08,3.397855038470141866e-08,3.460778279923292384e-08,3.523701521376442902e-08,3.586624762829593419e-08,3.649548004282743937e-08,3.712471245735894455e-08,3.775394487189044973e-08,3.838317728642195491e-08,3.901240970095346009e-08,3.964164211548496527e-08 +0.000000000000000000e+00,6.503852073600653050e-10,1.300770414720130610e-09,1.951155622080195915e-09,2.601540829440261220e-09,3.251926036800326525e-09,3.902311244160391830e-09,4.552696451520456722e-09,5.203081658880521613e-09,5.853466866240586504e-09,6.503852073600651396e-09,7.154237280960716287e-09,7.804622488320782006e-09,8.455007695680847724e-09,9.105392903040913443e-09,9.755778110400979162e-09,1.040616331776104488e-08,1.105654852512111060e-08,1.170693373248117632e-08,1.235731893984124204e-08,1.300770414720130775e-08,1.365808935456137347e-08,1.430847456192143919e-08,1.495885976928150326e-08,1.560924497664156732e-08,1.625963018400163138e-08,1.691001539136169545e-08,1.756040059872175951e-08,1.821078580608182358e-08,1.886117101344188764e-08,1.951155622080195171e-08,2.016194142816201577e-08,2.081232663552207983e-08,2.146271184288214390e-08,2.211309705024220796e-08,2.276348225760227203e-08,2.341386746496233609e-08,2.406425267232240016e-08,2.471463787968246422e-08,2.536502308704252828e-08,2.601540829440259235e-08,2.666579350176265641e-08,2.731617870912272048e-08,2.796656391648278454e-08,2.861694912384284861e-08,2.926733433120291267e-08,2.991771953856298004e-08,3.056810474592304742e-08,3.121848995328311479e-08,3.186887516064318216e-08,3.251926036800324953e-08,3.316964557536331691e-08,3.382003078272338428e-08,3.447041599008345165e-08,3.512080119744351903e-08,3.577118640480358640e-08,3.642157161216365377e-08,3.707195681952372115e-08,3.772234202688378852e-08,3.837272723424385589e-08,3.902311244160392326e-08,3.967349764896399064e-08,4.032388285632405801e-08,4.097426806368412538e-08 +0.000000000000000000e+00,6.206831886801299501e-10,1.241366377360259900e-09,1.862049566040389954e-09,2.482732754720520214e-09,3.103415943400650474e-09,3.724099132080780735e-09,4.344782320760910995e-09,4.965465509441041255e-09,5.586148698121171516e-09,6.206831886801301776e-09,6.827515075481432036e-09,7.448198264161562297e-09,8.068881452841693384e-09,8.689564641521823645e-09,9.310247830201953905e-09,9.930931018882084165e-09,1.055161420756221443e-08,1.117229739624234469e-08,1.179298058492247495e-08,1.241366377360260521e-08,1.303434696228273547e-08,1.365503015096286573e-08,1.427571333964299599e-08,1.489639652832312625e-08,1.551707971700325651e-08,1.613776290568338677e-08,1.675844609436351703e-08,1.737912928304364729e-08,1.799981247172377755e-08,1.862049566040390781e-08,1.924117884908403807e-08,1.986186203776416833e-08,2.048254522644429859e-08,2.110322841512442885e-08,2.172391160380455911e-08,2.234459479248468937e-08,2.296527798116481963e-08,2.358596116984494989e-08,2.420664435852508015e-08,2.482732754720521041e-08,2.544801073588534067e-08,2.606869392456547093e-08,2.668937711324560119e-08,2.731006030192573145e-08,2.793074349060586171e-08,2.855142667928599197e-08,2.917210986796612224e-08,2.979279305664625250e-08,3.041347624532637945e-08,3.103415943400650640e-08,3.165484262268663335e-08,3.227552581136676030e-08,3.289620900004688725e-08,3.351689218872701421e-08,3.413757537740714116e-08,3.475825856608726811e-08,3.537894175476739506e-08,3.599962494344752201e-08,3.662030813212764896e-08,3.724099132080777591e-08,3.786167450948790287e-08,3.848235769816802982e-08,3.910304088684815677e-08 +0.000000000000000000e+00,-6.292324143368431115e-10,-1.258464828673686223e-09,-1.887697243010529335e-09,-2.516929657347372446e-09,-3.146162071684215558e-09,-3.775394486021058669e-09,-4.404626900357901781e-09,-5.033859314694744892e-09,-5.663091729031588004e-09,-6.292324143368431115e-09,-6.921556557705274227e-09,-7.550788972042117338e-09,-8.180021386378960450e-09,-8.809253800715803561e-09,-9.438486215052646673e-09,-1.006771862938948978e-08,-1.069695104372633290e-08,-1.132618345806317601e-08,-1.195541587240001912e-08,-1.258464828673686223e-08,-1.321388070107370534e-08,-1.384311311541054845e-08,-1.447234552974739157e-08,-1.510157794408423468e-08,-1.573081035842107779e-08,-1.636004277275792090e-08,-1.698927518709476401e-08,-1.761850760143160712e-08,-1.824774001576845023e-08,-1.887697243010529335e-08,-1.950620484444213646e-08,-2.013543725877897957e-08,-2.076466967311582268e-08,-2.139390208745266579e-08,-2.202313450178950890e-08,-2.265236691612635201e-08,-2.328159933046319513e-08,-2.391083174480003824e-08,-2.454006415913688135e-08,-2.516929657347372446e-08,-2.579852898781056757e-08,-2.642776140214741068e-08,-2.705699381648425380e-08,-2.768622623082109691e-08,-2.831545864515794002e-08,-2.894469105949478313e-08,-2.957392347383162624e-08,-3.020315588816846935e-08,-3.083238830250530916e-08,-3.146162071684214896e-08,-3.209085313117898876e-08,-3.272008554551582856e-08,-3.334931795985266837e-08,-3.397855037418950817e-08,-3.460778278852634797e-08,-3.523701520286318778e-08,-3.586624761720002758e-08,-3.649548003153686738e-08,-3.712471244587370718e-08,-3.775394486021054699e-08,-3.838317727454738679e-08,-3.901240968888422659e-08,-3.964164210322106640e-08 +0.000000000000000000e+00,-6.503852071767096587e-10,-1.300770414353419317e-09,-1.951155621530129080e-09,-2.601540828706839048e-09,-3.251926035883549017e-09,-3.902311243060258986e-09,-4.552696450236968541e-09,-5.203081657413678097e-09,-5.853466864590387652e-09,-6.503852071767097207e-09,-7.154237278943806763e-09,-7.804622486120516318e-09,-8.455007693297225873e-09,-9.105392900473935429e-09,-9.755778107650644984e-09,-1.040616331482735454e-08,-1.105654852200406409e-08,-1.170693372918077365e-08,-1.235731893635748321e-08,-1.300770414353419276e-08,-1.365808935071090232e-08,-1.430847455788761187e-08,-1.495885976506432143e-08,-1.560924497224102933e-08,-1.625963017941773723e-08,-1.691001538659444513e-08,-1.756040059377115303e-08,-1.821078580094786093e-08,-1.886117100812456883e-08,-1.951155621530127673e-08,-2.016194142247798463e-08,-2.081232662965469253e-08,-2.146271183683140044e-08,-2.211309704400810834e-08,-2.276348225118481624e-08,-2.341386745836152414e-08,-2.406425266553823204e-08,-2.471463787271493994e-08,-2.536502307989164784e-08,-2.601540828706835574e-08,-2.666579349424506364e-08,-2.731617870142177154e-08,-2.796656390859847945e-08,-2.861694911577518735e-08,-2.926733432295189525e-08,-2.991771953012860315e-08,-3.056810473730531436e-08,-3.121848994448202557e-08,-3.186887515165873678e-08,-3.251926035883544799e-08,-3.316964556601215920e-08,-3.382003077318887041e-08,-3.447041598036558162e-08,-3.512080118754229283e-08,-3.577118639471900404e-08,-3.642157160189571524e-08,-3.707195680907242645e-08,-3.772234201624913766e-08,-3.837272722342584887e-08,-3.902311243060256008e-08,-3.967349763777927129e-08,-4.032388284495598250e-08,-4.097426805213269371e-08 +0.000000000000000000e+00,-6.206831884770809946e-10,-1.241366376954161989e-09,-1.862049565431242984e-09,-2.482732753908323978e-09,-3.103415942385404973e-09,-3.724099130862485968e-09,-4.344782319339567376e-09,-4.965465507816648784e-09,-5.586148696293730192e-09,-6.206831884770811600e-09,-6.827515073247893008e-09,-7.448198261724974417e-09,-8.068881450202055825e-09,-8.689564638679138060e-09,-9.310247827156220296e-09,-9.930931015633302531e-09,-1.055161420411038477e-08,-1.117229739258746700e-08,-1.179298058106454924e-08,-1.241366376954163147e-08,-1.303434695801871371e-08,-1.365503014649579594e-08,-1.427571333497287818e-08,-1.489639652344996041e-08,-1.551707971192704430e-08,-1.613776290040412819e-08,-1.675844608888121208e-08,-1.737912927735829597e-08,-1.799981246583537986e-08,-1.862049565431246375e-08,-1.924117884278954764e-08,-1.986186203126663153e-08,-2.048254521974371542e-08,-2.110322840822079931e-08,-2.172391159669788320e-08,-2.234459478517496709e-08,-2.296527797365205098e-08,-2.358596116212913487e-08,-2.420664435060621876e-08,-2.482732753908330265e-08,-2.544801072756038654e-08,-2.606869391603747043e-08,-2.668937710451455432e-08,-2.731006029299163821e-08,-2.793074348146872210e-08,-2.855142666994580599e-08,-2.917210985842288988e-08,-2.979279304689997377e-08,-3.041347623537705766e-08,-3.103415942385414155e-08,-3.165484261233122544e-08,-3.227552580080830933e-08,-3.289620898928539322e-08,-3.351689217776247711e-08,-3.413757536623956100e-08,-3.475825855471664488e-08,-3.537894174319372877e-08,-3.599962493167081266e-08,-3.662030812014789655e-08,-3.724099130862498044e-08,-3.786167449710206433e-08,-3.848235768557914822e-08,-3.910304087405623211e-08 +0.000000000000000000e+00,5.939499800106417977e-10,1.187899960021283595e-09,1.781849940031925393e-09,2.375799920042567191e-09,2.969749900053209195e-09,3.563699880063851200e-09,4.157649860074493204e-09,4.751599840085135209e-09,5.345549820095777213e-09,5.939499800106419218e-09,6.533449780117061222e-09,7.127399760127703226e-09,7.721349740138344404e-09,8.315299720148984754e-09,8.909249700159625104e-09,9.503199680170265454e-09,1.009714966018090580e-08,1.069109964019154615e-08,1.128504962020218650e-08,1.187899960021282685e-08,1.247294958022346720e-08,1.306689956023410755e-08,1.366084954024474790e-08,1.425479952025538825e-08,1.484874950026602861e-08,1.544269948027666896e-08,1.603664946028730931e-08,1.663059944029794966e-08,1.722454942030859001e-08,1.781849940031923036e-08,1.841244938032987071e-08,1.900639936034051106e-08,1.960034934035115141e-08,2.019429932036179176e-08,2.078824930037243211e-08,2.138219928038307246e-08,2.197614926039371281e-08,2.257009924040435316e-08,2.316404922041499351e-08,2.375799920042563386e-08,2.435194918043627421e-08,2.494589916044691456e-08,2.553984914045755491e-08,2.613379912046819526e-08,2.672774910047883561e-08,2.732169908048947596e-08,2.791564906050011631e-08,2.850959904051075666e-08,2.910354902052139701e-08,2.969749900053203736e-08,3.029144898054267771e-08,3.088539896055331806e-08,3.147934894056395841e-08,3.207329892057459876e-08,3.266724890058523911e-08,3.326119888059587946e-08,3.385514886060651981e-08,3.444909884061716016e-08,3.504304882062780051e-08,3.563699880063844086e-08,3.623094878064908121e-08,3.682489876065972156e-08,3.741884874067036191e-08 +0.000000000000000000e+00,1.084432794534587429e-19,2.168865589069174858e-19,3.253298383603762287e-19,4.337731178138349716e-19,5.422163972672936664e-19,6.506596767207523611e-19,7.591029561742110559e-19,8.675462356276697506e-19,9.759895150811284454e-19,1.084432794534587140e-18,1.192876073988045835e-18,1.301319353441504530e-18,1.409762632894963224e-18,1.518205912348421919e-18,1.626649191801880614e-18,1.735092471255339116e-18,1.843535750708797811e-18,1.951979030162256506e-18,2.060422309615715200e-18,2.168865589069173895e-18,2.277308868522632590e-18,2.385752147976091285e-18,2.494195427429549979e-18,2.602638706883008674e-18,2.711081986336467369e-18,2.819525265789926064e-18,2.927968545243384758e-18,3.036411824696843453e-18,3.144855104150302148e-18,3.253298383603760843e-18,3.361741663057219537e-18,3.470184942510678232e-18,3.578628221964136927e-18,3.687071501417595622e-18,3.795514780871054316e-18,3.903958060324513011e-18,4.012401339777971706e-18,4.120844619231430401e-18,4.229287898684889096e-18,4.337731178138347790e-18,4.446174457591806485e-18,4.554617737045265180e-18,4.663061016498723875e-18,4.771504295952182569e-18,4.879947575405641264e-18,4.988390854859099959e-18,5.096834134312558654e-18,5.205277413766017348e-18,5.313720693219476043e-18,5.422163972672934738e-18,5.530607252126393433e-18,5.639050531579852127e-18,5.747493811033310822e-18,5.855937090486769517e-18,5.964380369940228212e-18,6.072823649393686906e-18,6.181266928847145601e-18,6.289710208300604296e-18,6.398153487754062991e-18,6.506596767207521685e-18,6.615040046660980380e-18,6.723483326114439075e-18,6.831926605567897770e-18 +0.000000000000000000e+00,6.112507255540654856e-10,1.222501451108130971e-09,1.833752176662196354e-09,2.445002902216261529e-09,3.056253627770326704e-09,3.667504353324391880e-09,4.278755078878457055e-09,4.890005804432522231e-09,5.501256529986587406e-09,6.112507255540652582e-09,6.723757981094717757e-09,7.335008706648782933e-09,7.946259432202848108e-09,8.557510157756914111e-09,9.168760883310980113e-09,9.780011608865046116e-09,1.039126233441911212e-08,1.100251305997317812e-08,1.161376378552724412e-08,1.222501451108131013e-08,1.283626523663537613e-08,1.344751596218944213e-08,1.405876668774350813e-08,1.467001741329757414e-08,1.528126813885163849e-08,1.589251886440570283e-08,1.650376958995976718e-08,1.711502031551383153e-08,1.772627104106789588e-08,1.833752176662196023e-08,1.894877249217602457e-08,1.956002321773008892e-08,2.017127394328415327e-08,2.078252466883821762e-08,2.139377539439228197e-08,2.200502611994634632e-08,2.261627684550041066e-08,2.322752757105447501e-08,2.383877829660853936e-08,2.445002902216260371e-08,2.506127974771666806e-08,2.567253047327073241e-08,2.628378119882479675e-08,2.689503192437886110e-08,2.750628264993292545e-08,2.811753337548698980e-08,2.872878410104105415e-08,2.934003482659511850e-08,2.995128555214918284e-08,3.056253627770325050e-08,3.117378700325731816e-08,3.178503772881138581e-08,3.239628845436545347e-08,3.300753917991952113e-08,3.361878990547358879e-08,3.423004063102765644e-08,3.484129135658172410e-08,3.545254208213579176e-08,3.606379280768985941e-08,3.667504353324392707e-08,3.728629425879799473e-08,3.789754498435206238e-08,3.850879570990613004e-08 +0.000000000000000000e+00,5.584454502742768237e-10,1.116890900548553647e-09,1.675336350822830471e-09,2.233781801097107295e-09,2.792227251371384326e-09,3.350672701645661356e-09,3.909118151919938387e-09,4.467563602194215417e-09,5.026009052468492448e-09,5.584454502742769478e-09,6.142899953017046509e-09,6.701345403291323539e-09,7.259790853565600570e-09,7.818236303839876773e-09,8.376681754114152977e-09,8.935127204388429180e-09,9.493572654662705383e-09,1.005201810493698159e-08,1.061046355521125779e-08,1.116890900548553399e-08,1.172735445575981020e-08,1.228579990603408640e-08,1.284424535630836260e-08,1.340269080658263881e-08,1.396113625685691501e-08,1.451958170713119121e-08,1.507802715740546576e-08,1.563647260767974031e-08,1.619491805795401486e-08,1.675336350822828941e-08,1.731180895850256396e-08,1.787025440877683851e-08,1.842869985905111306e-08,1.898714530932538761e-08,1.954559075959966215e-08,2.010403620987393670e-08,2.066248166014821125e-08,2.122092711042248580e-08,2.177937256069676035e-08,2.233781801097103490e-08,2.289626346124530945e-08,2.345470891151958400e-08,2.401315436179385855e-08,2.457159981206813310e-08,2.513004526234240764e-08,2.568849071261668219e-08,2.624693616289095674e-08,2.680538161316523129e-08,2.736382706343950584e-08,2.792227251371378039e-08,2.848071796398805494e-08,2.903916341426232949e-08,2.959760886453660404e-08,3.015605431481087859e-08,3.071449976508515313e-08,3.127294521535942768e-08,3.183139066563370223e-08,3.238983611590797678e-08,3.294828156618225133e-08,3.350672701645652588e-08,3.406517246673080043e-08,3.462361791700507498e-08,3.518206336727934953e-08 +0.000000000000000000e+00,2.969910966615575338e-10,5.939821933231150676e-10,8.909732899846726014e-10,1.187964386646230135e-09,1.484955483307787669e-09,1.781946579969345203e-09,2.078937676630902737e-09,2.375928773292460270e-09,2.672919869954017804e-09,2.969910966615575338e-09,3.266902063277132872e-09,3.563893159938690406e-09,3.860884256600247939e-09,4.157875353261805473e-09,4.454866449923363007e-09,4.751857546584920541e-09,5.048848643246478075e-09,5.345839739908035608e-09,5.642830836569593142e-09,5.939821933231150676e-09,6.236813029892708210e-09,6.533804126554265744e-09,6.830795223215823277e-09,7.127786319877380811e-09,7.424777416538938345e-09,7.721768513200495879e-09,8.018759609862054240e-09,8.315750706523612601e-09,8.612741803185170962e-09,8.909732899846729323e-09,9.206723996508287684e-09,9.503715093169846045e-09,9.800706189831404406e-09,1.009769728649296277e-08,1.039468838315452113e-08,1.069167947981607949e-08,1.098867057647763785e-08,1.128566167313919621e-08,1.158265276980075457e-08,1.187964386646231293e-08,1.217663496312387129e-08,1.247362605978542965e-08,1.277061715644698802e-08,1.306760825310854638e-08,1.336459934977010474e-08,1.366159044643166310e-08,1.395858154309322146e-08,1.425557263975477982e-08,1.455256373641633818e-08,1.484955483307789654e-08,1.514654592973945490e-08,1.544353702640101492e-08,1.574052812306257493e-08,1.603751921972413495e-08,1.633451031638569496e-08,1.663150141304725498e-08,1.692849250970881500e-08,1.722548360637037501e-08,1.752247470303193503e-08,1.781946579969349504e-08,1.811645689635505506e-08,1.841344799301661507e-08,1.871043908967817509e-08 +0.000000000000000000e+00,1.143443029280051581e-19,2.286886058560103162e-19,3.430329087840154502e-19,4.573772117120205361e-19,5.717215146400256220e-19,6.860658175680307079e-19,8.004101204960357938e-19,9.147544234240408796e-19,1.029098726352045869e-18,1.143443029280050859e-18,1.257787332208055848e-18,1.372131635136060838e-18,1.486475938064065828e-18,1.600820240992070817e-18,1.715164543920075807e-18,1.829508846848080604e-18,1.943853149776085401e-18,2.058197452704090198e-18,2.172541755632094995e-18,2.286886058560099792e-18,2.401230361488104589e-18,2.515574664416109386e-18,2.629918967344114183e-18,2.744263270272118980e-18,2.858607573200123777e-18,2.972951876128128574e-18,3.087296179056133371e-18,3.201640481984138168e-18,3.315984784912142965e-18,3.430329087840147762e-18,3.544673390768152173e-18,3.659017693696156585e-18,3.773361996624160997e-18,3.887706299552165409e-18,4.002050602480169821e-18,4.116394905408174232e-18,4.230739208336178644e-18,4.345083511264183056e-18,4.459427814192187468e-18,4.573772117120191880e-18,4.688116420048196291e-18,4.802460722976200703e-18,4.916805025904205115e-18,5.031149328832209527e-18,5.145493631760213939e-18,5.259837934688218351e-18,5.374182237616222762e-18,5.488526540544227174e-18,5.602870843472231586e-18,5.717215146400235998e-18,5.831559449328240410e-18,5.945903752256244821e-18,6.060248055184249233e-18,6.174592358112253645e-18,6.288936661040258057e-18,6.403280963968262469e-18,6.517625266896266880e-18,6.631969569824271292e-18,6.746313872752275704e-18,6.860658175680280116e-18,6.975002478608284528e-18,7.089346781536288939e-18,7.203691084464293351e-18 +0.000000000000000000e+00,-5.939499797938531654e-10,-1.187899959587706331e-09,-1.781849939381559393e-09,-2.375799919175412248e-09,-2.969749898969265103e-09,-3.563699878763117958e-09,-4.157649858556970813e-09,-4.751599838350823669e-09,-5.345549818144676524e-09,-5.939499797938529379e-09,-6.533449777732382234e-09,-7.127399757526235089e-09,-7.721349737320087117e-09,-8.315299717113939972e-09,-8.909249696907792828e-09,-9.503199676701645683e-09,-1.009714965649549854e-08,-1.069109963628935139e-08,-1.128504961608320425e-08,-1.187899959587705710e-08,-1.247294957567090996e-08,-1.306689955546476281e-08,-1.366084953525861567e-08,-1.425479951505246852e-08,-1.484874949484632138e-08,-1.544269947464017423e-08,-1.603664945443402709e-08,-1.663059943422787994e-08,-1.722454941402173280e-08,-1.781849939381558566e-08,-1.841244937360943851e-08,-1.900639935340329137e-08,-1.960034933319714422e-08,-2.019429931299099708e-08,-2.078824929278484993e-08,-2.138219927257870279e-08,-2.197614925237255564e-08,-2.257009923216640850e-08,-2.316404921196026135e-08,-2.375799919175411421e-08,-2.435194917154796706e-08,-2.494589915134181992e-08,-2.553984913113567277e-08,-2.613379911092952563e-08,-2.672774909072337848e-08,-2.732169907051723134e-08,-2.791564905031108419e-08,-2.850959903010493705e-08,-2.910354900989878990e-08,-2.969749898969264276e-08,-3.029144896948649561e-08,-3.088539894928034847e-08,-3.147934892907420132e-08,-3.207329890886805418e-08,-3.266724888866190703e-08,-3.326119886845575989e-08,-3.385514884824961274e-08,-3.444909882804346560e-08,-3.504304880783731846e-08,-3.563699878763117131e-08,-3.623094876742502417e-08,-3.682489874721887702e-08,-3.741884872701272988e-08 +0.000000000000000000e+00,-2.969910964446883548e-10,-5.939821928893767096e-10,-8.909732893340650643e-10,-1.187964385778753419e-09,-1.484955482223441774e-09,-1.781946578668130129e-09,-2.078937675112818690e-09,-2.375928771557507252e-09,-2.672919868002195813e-09,-2.969910964446884375e-09,-3.266902060891572937e-09,-3.563893157336261498e-09,-3.860884253780950060e-09,-4.157875350225639035e-09,-4.454866446670328010e-09,-4.751857543115016985e-09,-5.048848639559705960e-09,-5.345839736004394935e-09,-5.642830832449083911e-09,-5.939821928893772886e-09,-6.236813025338461861e-09,-6.533804121783150836e-09,-6.830795218227839811e-09,-7.127786314672528786e-09,-7.424777411117217762e-09,-7.721768507561906737e-09,-8.018759604006594885e-09,-8.315750700451283033e-09,-8.612741796895971181e-09,-8.909732893340659329e-09,-9.206723989785347477e-09,-9.503715086230035625e-09,-9.800706182674723773e-09,-1.009769727911941192e-08,-1.039468837556410007e-08,-1.069167947200878822e-08,-1.098867056845347636e-08,-1.128566166489816451e-08,-1.158265276134285266e-08,-1.187964385778754081e-08,-1.217663495423222896e-08,-1.247362605067691710e-08,-1.277061714712160525e-08,-1.306760824356629340e-08,-1.336459934001098155e-08,-1.366159043645566970e-08,-1.395858153290035784e-08,-1.425557262934504599e-08,-1.455256372578973414e-08,-1.484955482223442229e-08,-1.514654591867911044e-08,-1.544353701512379693e-08,-1.574052811156848342e-08,-1.603751920801316992e-08,-1.633451030445785641e-08,-1.663150140090254290e-08,-1.692849249734722940e-08,-1.722548359379191589e-08,-1.752247469023660239e-08,-1.781946578668128888e-08,-1.811645688312597537e-08,-1.841344797957066187e-08,-1.871043907601534836e-08 +0.000000000000000000e+00,-6.112507253483424620e-10,-1.222501450696684924e-09,-1.833752176045027386e-09,-2.445002901393369848e-09,-3.056253626741712310e-09,-3.667504352090054772e-09,-4.278755077438396820e-09,-4.890005802786738869e-09,-5.501256528135080917e-09,-6.112507253483422965e-09,-6.723757978831765014e-09,-7.335008704180107062e-09,-7.946259429528449111e-09,-8.557510154876790332e-09,-9.168760880225131553e-09,-9.780011605573472774e-09,-1.039126233092181400e-08,-1.100251305627015522e-08,-1.161376378161849644e-08,-1.222501450696683766e-08,-1.283626523231517888e-08,-1.344751595766352010e-08,-1.405876668301186132e-08,-1.467001740836020254e-08,-1.528126813370854377e-08,-1.589251885905688499e-08,-1.650376958440522621e-08,-1.711502030975356743e-08,-1.772627103510190865e-08,-1.833752176045024987e-08,-1.894877248579859109e-08,-1.956002321114693231e-08,-2.017127393649527353e-08,-2.078252466184361476e-08,-2.139377538719195598e-08,-2.200502611254029720e-08,-2.261627683788863842e-08,-2.322752756323697964e-08,-2.383877828858532086e-08,-2.445002901393366208e-08,-2.506127973928200330e-08,-2.567253046463034453e-08,-2.628378118997868575e-08,-2.689503191532702697e-08,-2.750628264067536819e-08,-2.811753336602370941e-08,-2.872878409137205063e-08,-2.934003481672039185e-08,-2.995128554206872977e-08,-3.056253626741706768e-08,-3.117378699276540559e-08,-3.178503771811374350e-08,-3.239628844346208142e-08,-3.300753916881041933e-08,-3.361878989415875724e-08,-3.423004061950709515e-08,-3.484129134485543307e-08,-3.545254207020377098e-08,-3.606379279555210889e-08,-3.667504352090044680e-08,-3.728629424624878472e-08,-3.789754497159712263e-08,-3.850879569694546054e-08 +0.000000000000000000e+00,-5.584454500456991099e-10,-1.116890900091398220e-09,-1.675336350137097330e-09,-2.233781800182796440e-09,-2.792227250228495343e-09,-3.350672700274194246e-09,-3.909118150319893149e-09,-4.467563600365592052e-09,-5.026009050411290956e-09,-5.584454500456989859e-09,-6.142899950502688762e-09,-6.701345400548387665e-09,-7.259790850594086568e-09,-7.818236300639786298e-09,-8.376681750685486029e-09,-8.935127200731185759e-09,-9.493572650776885489e-09,-1.005201810082258522e-08,-1.061046355086828495e-08,-1.116890900091398468e-08,-1.172735445095968441e-08,-1.228579990100538414e-08,-1.284424535105108387e-08,-1.340269080109678360e-08,-1.396113625114248333e-08,-1.451958170118818306e-08,-1.507802715123388445e-08,-1.563647260127958583e-08,-1.619491805132528722e-08,-1.675336350137098860e-08,-1.731180895141668999e-08,-1.787025440146239137e-08,-1.842869985150809276e-08,-1.898714530155379414e-08,-1.954559075159949552e-08,-2.010403620164519691e-08,-2.066248165169089829e-08,-2.122092710173659968e-08,-2.177937255178230106e-08,-2.233781800182800245e-08,-2.289626345187370383e-08,-2.345470890191940522e-08,-2.401315435196510660e-08,-2.457159980201080799e-08,-2.513004525205650937e-08,-2.568849070210221076e-08,-2.624693615214791214e-08,-2.680538160219361353e-08,-2.736382705223931491e-08,-2.792227250228501630e-08,-2.848071795233071768e-08,-2.903916340237641906e-08,-2.959760885242212045e-08,-3.015605430246782183e-08,-3.071449975251352322e-08,-3.127294520255922460e-08,-3.183139065260492599e-08,-3.238983610265062737e-08,-3.294828155269632876e-08,-3.350672700274203014e-08,-3.406517245278773153e-08,-3.462361790283343291e-08,-3.518206335287913430e-08 +0.000000000000000000e+00,1.693894263953133353e-09,3.387788527906266706e-09,5.081682791859399852e-09,6.775577055812532585e-09,8.469471319765665318e-09,1.016336558371879805e-08,1.185725984767193078e-08,1.355115411162506352e-08,1.524504837557819790e-08,1.693894263953133394e-08,1.863283690348446999e-08,2.032673116743760603e-08,2.202062543139074207e-08,2.371451969534387811e-08,2.540841395929701415e-08,2.710230822325015019e-08,2.879620248720328623e-08,3.049009675115642228e-08,3.218399101510955832e-08,3.387788527906269436e-08,3.557177954301583040e-08,3.726567380696896644e-08,3.895956807092210248e-08,4.065346233487523852e-08,4.234735659882837457e-08,4.404125086278151061e-08,4.573514512673464665e-08,4.742903939068778269e-08,4.912293365464091873e-08,5.081682791859405477e-08,5.251072218254719081e-08,5.420461644650032686e-08,5.589851071045346290e-08,5.759240497440659894e-08,5.928629923835973498e-08,6.098019350231287102e-08,6.267408776626600706e-08,6.436798203021914310e-08,6.606187629417227915e-08,6.775577055812541519e-08,6.944966482207855123e-08,7.114355908603168727e-08,7.283745334998482331e-08,7.453134761393795935e-08,7.622524187789109539e-08,7.791913614184423144e-08,7.961303040579736748e-08,8.130692466975050352e-08,8.300081893370363956e-08,8.469471319765677560e-08,8.638860746160991164e-08,8.808250172556304768e-08,8.977639598951618373e-08,9.147029025346931977e-08,9.316418451742245581e-08,9.485807878137559185e-08,9.655197304532872789e-08,9.824586730928186393e-08,9.993976157323499997e-08,1.016336558371881360e-07,1.033275501011412721e-07,1.050214443650944081e-07,1.067153386290475441e-07 +0.000000000000000000e+00,1.108318175263898524e-09,2.216636350527797049e-09,3.324954525791695366e-09,4.433272701055593270e-09,5.541590876319491174e-09,6.649909051583389078e-09,7.758227226847286982e-09,8.866545402111184886e-09,9.974863577375082790e-09,1.108318175263898069e-08,1.219149992790287860e-08,1.329981810316677650e-08,1.440813627843067441e-08,1.551645445369457396e-08,1.662477262895847352e-08,1.773309080422237308e-08,1.884140897948627264e-08,1.994972715475017220e-08,2.105804533001407175e-08,2.216636350527797131e-08,2.327468168054187087e-08,2.438299985580577043e-08,2.549131803106966999e-08,2.659963620633356955e-08,2.770795438159746910e-08,2.881627255686136866e-08,2.992459073212527153e-08,3.103290890738917440e-08,3.214122708265307726e-08,3.324954525791698013e-08,3.435786343318088300e-08,3.546618160844478586e-08,3.657449978370868873e-08,3.768281795897259160e-08,3.879113613423649447e-08,3.989945430950039733e-08,4.100777248476430020e-08,4.211609066002820307e-08,4.322440883529210593e-08,4.433272701055600880e-08,4.544104518581991167e-08,4.654936336108381453e-08,4.765768153634771740e-08,4.876599971161162027e-08,4.987431788687552314e-08,5.098263606213942600e-08,5.209095423740332887e-08,5.319927241266723174e-08,5.430759058793113460e-08,5.541590876319503747e-08,5.652422693845894034e-08,5.763254511372284320e-08,5.874086328898674607e-08,5.984918146425064894e-08,6.095749963951455181e-08,6.206581781477845467e-08,6.317413599004235754e-08,6.428245416530626041e-08,6.539077234057016327e-08,6.649909051583406614e-08,6.760740869109796901e-08,6.871572686636187187e-08,6.982404504162577474e-08 +0.000000000000000000e+00,-1.525899819905313543e-20,-3.051799639810627086e-20,-4.577699459715940630e-20,-6.103599279621254173e-20,-7.629499099526567716e-20,-9.155398919431881259e-20,-1.068129873933719480e-19,-1.220719855924250835e-19,-1.373309837914782309e-19,-1.525899819905313784e-19,-1.678489801895845259e-19,-1.831079783886376733e-19,-1.983669765876908208e-19,-2.136259747867439683e-19,-2.288849729857971157e-19,-2.441439711848502632e-19,-2.594029693839034107e-19,-2.746619675829565581e-19,-2.899209657820097056e-19,-3.051799639810628531e-19,-3.204389621801160006e-19,-3.356979603791691480e-19,-3.509569585782222955e-19,-3.662159567772754430e-19,-3.814749549763285904e-19,-3.967339531753817379e-19,-4.119929513744348854e-19,-4.272519495734880328e-19,-4.425109477725412285e-19,-4.577699459715944241e-19,-4.730289441706476197e-19,-4.882879423697008153e-19,-5.035469405687540109e-19,-5.188059387678072065e-19,-5.340649369668604022e-19,-5.493239351659135978e-19,-5.645829333649667934e-19,-5.798419315640199890e-19,-5.951009297630731846e-19,-6.103599279621263803e-19,-6.256189261611795759e-19,-6.408779243602327715e-19,-6.561369225592859671e-19,-6.713959207583391627e-19,-6.866549189573923583e-19,-7.019139171564455540e-19,-7.171729153554987496e-19,-7.324319135545519452e-19,-7.476909117536051408e-19,-7.629499099526583364e-19,-7.782089081517115320e-19,-7.934679063507647277e-19,-8.087269045498179233e-19,-8.239859027488711189e-19,-8.392449009479243145e-19,-8.545038991469775101e-19,-8.697628973460307057e-19,-8.850218955450839977e-19,-9.002808937441372896e-19,-9.155398919431905815e-19,-9.307988901422438734e-19,-9.460578883412971653e-19,-9.613168865403504572e-19 +0.000000000000000000e+00,1.881490556402894156e-09,3.762981112805788313e-09,5.644471669208682056e-09,7.525962225611574972e-09,9.407452782014467887e-09,1.128894333841736080e-08,1.317043389482025372e-08,1.505192445122314663e-08,1.693341500762603955e-08,1.881490556402893247e-08,2.069639612043182538e-08,2.257788667683471830e-08,2.445937723323761121e-08,2.634086778964050413e-08,2.822235834604339704e-08,3.010384890244628665e-08,3.198533945884917295e-08,3.386683001525205925e-08,3.574832057165494555e-08,3.762981112805783184e-08,3.951130168446071814e-08,4.139279224086360444e-08,4.327428279726649074e-08,4.515577335366937704e-08,4.703726391007226334e-08,4.891875446647514963e-08,5.080024502287803593e-08,5.268173557928092223e-08,5.456322613568380853e-08,5.644471669208669483e-08,5.832620724848958113e-08,6.020769780489246742e-08,6.208918836129535372e-08,6.397067891769824002e-08,6.585216947410112632e-08,6.773366003050401262e-08,6.961515058690689892e-08,7.149664114330978521e-08,7.337813169971267151e-08,7.525962225611555781e-08,7.714111281251844411e-08,7.902260336892133041e-08,8.090409392532421670e-08,8.278558448172710300e-08,8.466707503812998930e-08,8.654856559453287560e-08,8.843005615093576190e-08,9.031154670733864820e-08,9.219303726374153449e-08,9.407452782014442079e-08,9.595601837654730709e-08,9.783750893295019339e-08,9.971899948935307969e-08,1.016004900457559660e-07,1.034819806021588523e-07,1.053634711585617386e-07,1.072449617149646249e-07,1.091264522713675112e-07,1.110079428277703975e-07,1.128894333841732838e-07,1.147709239405761701e-07,1.166524144969790564e-07,1.185339050533819427e-07 +0.000000000000000000e+00,1.246812703282253489e-09,2.493625406564506978e-09,3.740438109846760260e-09,4.987250813129013128e-09,6.234063516411265997e-09,7.480876219693518865e-09,8.727688922975770906e-09,9.974501626258022948e-09,1.122131432954027499e-08,1.246812703282252703e-08,1.371493973610477907e-08,1.496175243938703111e-08,1.620856514266928315e-08,1.745537784595153520e-08,1.870219054923378724e-08,1.994900325251603928e-08,2.119581595579829132e-08,2.244262865908054336e-08,2.368944136236279540e-08,2.493625406564504744e-08,2.618306676892729948e-08,2.742987947220955153e-08,2.867669217549180357e-08,2.992350487877405561e-08,3.117031758205631096e-08,3.241713028533856631e-08,3.366394298862082166e-08,3.491075569190307701e-08,3.615756839518533236e-08,3.740438109846758771e-08,3.865119380174984306e-08,3.989800650503209841e-08,4.114481920831435376e-08,4.239163191159660911e-08,4.363844461487886446e-08,4.488525731816111981e-08,4.613207002144337516e-08,4.737888272472563051e-08,4.862569542800788586e-08,4.987250813129014121e-08,5.111932083457239656e-08,5.236613353785465191e-08,5.361294624113690726e-08,5.485975894441916261e-08,5.610657164770141796e-08,5.735338435098367331e-08,5.860019705426592866e-08,5.984700975754817739e-08,6.109382246083042612e-08,6.234063516411267486e-08,6.358744786739492359e-08,6.483426057067717232e-08,6.608107327395942105e-08,6.732788597724166979e-08,6.857469868052391852e-08,6.982151138380616725e-08,7.106832408708841598e-08,7.231513679037066472e-08,7.356194949365291345e-08,7.480876219693516218e-08,7.605557490021741091e-08,7.730238760349965965e-08,7.854920030678190838e-08 +0.000000000000000000e+00,1.225454277109585455e-09,2.450908554219170910e-09,3.676362831328756365e-09,4.901817108438341820e-09,6.127271385547926862e-09,7.352725662657511903e-09,8.578179939767096945e-09,9.803634216876681986e-09,1.102908849398626703e-08,1.225454277109585207e-08,1.347999704820543711e-08,1.470545132531502215e-08,1.593090560242460719e-08,1.715635987953419389e-08,1.838181415664378059e-08,1.960726843375336728e-08,2.083272271086295398e-08,2.205817698797254067e-08,2.328363126508212737e-08,2.450908554219171406e-08,2.573453981930130076e-08,2.695999409641088746e-08,2.818544837352047415e-08,2.941090265063006085e-08,3.063635692773964754e-08,3.186181120484923424e-08,3.308726548195882094e-08,3.431271975906840763e-08,3.553817403617799433e-08,3.676362831328758102e-08,3.798908259039716772e-08,3.921453686750675441e-08,4.043999114461634111e-08,4.166544542172592781e-08,4.289089969883551450e-08,4.411635397594510120e-08,4.534180825305468789e-08,4.656726253016427459e-08,4.779271680727386129e-08,4.901817108438344798e-08,5.024362536149303468e-08,5.146907963860262137e-08,5.269453391571220807e-08,5.391998819282179476e-08,5.514544246993138146e-08,5.637089674704096816e-08,5.759635102415055485e-08,5.882180530126014155e-08,6.004725957836973486e-08,6.127271385547933479e-08,6.249816813258893472e-08,6.372362240969853465e-08,6.494907668680813458e-08,6.617453096391773451e-08,6.739998524102733445e-08,6.862543951813693438e-08,6.985089379524653431e-08,7.107634807235613424e-08,7.230180234946573417e-08,7.352725662657533410e-08,7.475271090368493403e-08,7.597816518079453396e-08,7.720361945790413389e-08 +0.000000000000000000e+00,8.458775128675974223e-10,1.691755025735194845e-09,2.537632538602792474e-09,3.383510051470390103e-09,4.229387564337987732e-09,5.075265077205584948e-09,5.921142590073182163e-09,6.767020102940779379e-09,7.612897615808376594e-09,8.458775128675973810e-09,9.304652641543571025e-09,1.015053015441116824e-08,1.099640766727876546e-08,1.184228518014636267e-08,1.268816269301395989e-08,1.353404020588155710e-08,1.437991771874915432e-08,1.522579523161674988e-08,1.607167274448434379e-08,1.691755025735193769e-08,1.776342777021953160e-08,1.860930528308712551e-08,1.945518279595471941e-08,2.030106030882231332e-08,2.114693782168990723e-08,2.199281533455750113e-08,2.283869284742509504e-08,2.368457036029268895e-08,2.453044787316028285e-08,2.537632538602787676e-08,2.622220289889547067e-08,2.706808041176306458e-08,2.791395792463065848e-08,2.875983543749825239e-08,2.960571295036584630e-08,3.045159046323344020e-08,3.129746797610103411e-08,3.214334548896862802e-08,3.298922300183622192e-08,3.383510051470381583e-08,3.468097802757140974e-08,3.552685554043900364e-08,3.637273305330659755e-08,3.721861056617419146e-08,3.806448807904178536e-08,3.891036559190937927e-08,3.975624310477697318e-08,4.060212061764456708e-08,4.144799813051216099e-08,4.229387564337975490e-08,4.313975315624734880e-08,4.398563066911494271e-08,4.483150818198253662e-08,4.567738569485013053e-08,4.652326320771772443e-08,4.736914072058531834e-08,4.821501823345291225e-08,4.906089574632050615e-08,4.990677325918810006e-08,5.075265077205569397e-08,5.159852828492328787e-08,5.244440579779088178e-08,5.329028331065847569e-08 +0.000000000000000000e+00,-1.262189109554352211e-20,-2.524378219108704423e-20,-3.786567328663056634e-20,-5.048756438217408845e-20,-6.310945547771761658e-20,-7.573134657326114471e-20,-8.835323766880467284e-20,-1.009751287643482010e-19,-1.135970198598917291e-19,-1.262189109554352572e-19,-1.388408020509787854e-19,-1.514626931465223135e-19,-1.640845842420658416e-19,-1.767064753376093698e-19,-1.893283664331528979e-19,-2.019502575286964260e-19,-2.145721486242399542e-19,-2.271940397197834582e-19,-2.398159308153269623e-19,-2.524378219108704663e-19,-2.650597130064139704e-19,-2.776816041019574744e-19,-2.903034951975009785e-19,-3.029253862930444826e-19,-3.155472773885879866e-19,-3.281691684841314907e-19,-3.407910595796749947e-19,-3.534129506752184988e-19,-3.660348417707620028e-19,-3.786567328663055069e-19,-3.912786239618490110e-19,-4.039005150573925150e-19,-4.165224061529360191e-19,-4.291442972484795231e-19,-4.417661883440230753e-19,-4.543880794395666275e-19,-4.670099705351101797e-19,-4.796318616306537319e-19,-4.922537527261972842e-19,-5.048756438217408364e-19,-5.174975349172843886e-19,-5.301194260128279408e-19,-5.427413171083714930e-19,-5.553632082039150452e-19,-5.679850992994585974e-19,-5.806069903950021496e-19,-5.932288814905457018e-19,-6.058507725860892540e-19,-6.184726636816328062e-19,-6.310945547771763584e-19,-6.437164458727199106e-19,-6.563383369682634628e-19,-6.689602280638070150e-19,-6.815821191593505672e-19,-6.942040102548941194e-19,-7.068259013504376716e-19,-7.194477924459812238e-19,-7.320696835415247761e-19,-7.446915746370683283e-19,-7.573134657326118805e-19,-7.699353568281554327e-19,-7.825572479236989849e-19,-7.951791390192425371e-19 +0.000000000000000000e+00,-1.693894263983756407e-09,-3.387788527967512813e-09,-5.081682791951269013e-09,-6.775577055935024799e-09,-8.469471319918781412e-09,-1.016336558390253803e-08,-1.185725984788629464e-08,-1.355115411187005125e-08,-1.524504837585380787e-08,-1.693894263983756282e-08,-1.863283690382131778e-08,-2.032673116780507274e-08,-2.202062543178882770e-08,-2.371451969577258266e-08,-2.540841395975633762e-08,-2.710230822374009258e-08,-2.879620248772384754e-08,-3.049009675170760250e-08,-3.218399101569135746e-08,-3.387788527967511241e-08,-3.557177954365886737e-08,-3.726567380764262233e-08,-3.895956807162637729e-08,-4.065346233561013225e-08,-4.234735659959388721e-08,-4.404125086357764217e-08,-4.573514512756139713e-08,-4.742903939154515209e-08,-4.912293365552890705e-08,-5.081682791951266200e-08,-5.251072218349641696e-08,-5.420461644748017192e-08,-5.589851071146392688e-08,-5.759240497544768184e-08,-5.928629923943143680e-08,-6.098019350341519176e-08,-6.267408776739895333e-08,-6.436798203138271491e-08,-6.606187629536647649e-08,-6.775577055935023806e-08,-6.944966482333399964e-08,-7.114355908731776122e-08,-7.283745335130152279e-08,-7.453134761528528437e-08,-7.622524187926904595e-08,-7.791913614325280752e-08,-7.961303040723656910e-08,-8.130692467122033068e-08,-8.300081893520409225e-08,-8.469471319918785383e-08,-8.638860746317161540e-08,-8.808250172715537698e-08,-8.977639599113913856e-08,-9.147029025512290013e-08,-9.316418451910666171e-08,-9.485807878309042329e-08,-9.655197304707418486e-08,-9.824586731105794644e-08,-9.993976157504170802e-08,-1.016336558390254696e-07,-1.033275501030092312e-07,-1.050214443669929927e-07,-1.067153386309767543e-07 +0.000000000000000000e+00,-1.108318175255077677e-09,-2.216636350510155354e-09,-3.324954525765233031e-09,-4.433272701020310708e-09,-5.541590876275388385e-09,-6.649909051530466062e-09,-7.758227226785542912e-09,-8.866545402040619762e-09,-9.974863577295696612e-09,-1.108318175255077346e-08,-1.219149992780585031e-08,-1.329981810306092716e-08,-1.440813627831600401e-08,-1.551645445357107921e-08,-1.662477262882615440e-08,-1.773309080408122960e-08,-1.884140897933630479e-08,-1.994972715459137999e-08,-2.105804532984645518e-08,-2.216636350510153038e-08,-2.327468168035660558e-08,-2.438299985561168077e-08,-2.549131803086675597e-08,-2.659963620612183116e-08,-2.770795438137690636e-08,-2.881627255663198155e-08,-2.992459073188705675e-08,-3.103290890714213194e-08,-3.214122708239720714e-08,-3.324954525765228233e-08,-3.435786343290735753e-08,-3.546618160816243273e-08,-3.657449978341750792e-08,-3.768281795867258312e-08,-3.879113613392765831e-08,-3.989945430918273351e-08,-4.100777248443780870e-08,-4.211609065969288390e-08,-4.322440883494795909e-08,-4.433272701020303429e-08,-4.544104518545810949e-08,-4.654936336071318468e-08,-4.765768153596825988e-08,-4.876599971122333507e-08,-4.987431788647841027e-08,-5.098263606173348546e-08,-5.209095423698856066e-08,-5.319927241224363585e-08,-5.430759058749871105e-08,-5.541590876275378624e-08,-5.652422693800886144e-08,-5.763254511326393664e-08,-5.874086328851901183e-08,-5.984918146377408703e-08,-6.095749963902916222e-08,-6.206581781428423742e-08,-6.317413598953931261e-08,-6.428245416479438781e-08,-6.539077234004946300e-08,-6.649909051530453820e-08,-6.760740869055961340e-08,-6.871572686581468859e-08,-6.982404504106976379e-08 +0.000000000000000000e+00,-8.458775128981751877e-10,-1.691755025796350375e-09,-2.537632538694525563e-09,-3.383510051592700751e-09,-4.229387564490875525e-09,-5.075265077389050299e-09,-5.921142590287225073e-09,-6.767020103185399847e-09,-7.612897616083574621e-09,-8.458775128981749395e-09,-9.304652641879924169e-09,-1.015053015477809894e-08,-1.099640766767627372e-08,-1.184228518057444849e-08,-1.268816269347262327e-08,-1.353404020637079804e-08,-1.437991771926897281e-08,-1.522579523216714924e-08,-1.607167274506532567e-08,-1.691755025796350210e-08,-1.776342777086167853e-08,-1.860930528375985496e-08,-1.945518279665803138e-08,-2.030106030955620781e-08,-2.114693782245438424e-08,-2.199281533535256067e-08,-2.283869284825073710e-08,-2.368457036114891353e-08,-2.453044787404708995e-08,-2.537632538694526638e-08,-2.622220289984344281e-08,-2.706808041274161924e-08,-2.791395792563979567e-08,-2.875983543853797210e-08,-2.960571295143614853e-08,-3.045159046433432495e-08,-3.129746797723250469e-08,-3.214334549013068443e-08,-3.298922300302886417e-08,-3.383510051592704390e-08,-3.468097802882522364e-08,-3.552685554172340338e-08,-3.637273305462158311e-08,-3.721861056751976285e-08,-3.806448808041794259e-08,-3.891036559331612233e-08,-3.975624310621430206e-08,-4.060212061911248180e-08,-4.144799813201066154e-08,-4.229387564490884127e-08,-4.313975315780702101e-08,-4.398563067070520075e-08,-4.483150818360338049e-08,-4.567738569650156022e-08,-4.652326320939973996e-08,-4.736914072229791970e-08,-4.821501823519609943e-08,-4.906089574809427917e-08,-4.990677326099245891e-08,-5.075265077389063865e-08,-5.159852828678881838e-08,-5.244440579968699812e-08,-5.329028331258517786e-08 +0.000000000000000000e+00,-1.881490556427973859e-09,-3.762981112855947718e-09,-5.644471669283921577e-09,-7.525962225711895436e-09,-9.407452782139868468e-09,-1.128894333856784150e-08,-1.317043389499581453e-08,-1.505192445142378756e-08,-1.693341500785176060e-08,-1.881490556427973363e-08,-2.069639612070770666e-08,-2.257788667713567969e-08,-2.445937723356365272e-08,-2.634086778999162576e-08,-2.822235834641959879e-08,-3.010384890284756851e-08,-3.198533945927553492e-08,-3.386683001570350134e-08,-3.574832057213146775e-08,-3.762981112855943417e-08,-3.951130168498740058e-08,-4.139279224141536700e-08,-4.327428279784333341e-08,-4.515577335427129983e-08,-4.703726391069926624e-08,-4.891875446712723265e-08,-5.080024502355519907e-08,-5.268173557998316548e-08,-5.456322613641113190e-08,-5.644471669283909831e-08,-5.832620724926706473e-08,-6.020769780569503114e-08,-6.208918836212299756e-08,-6.397067891855096397e-08,-6.585216947497893038e-08,-6.773366003140689680e-08,-6.961515058783486321e-08,-7.149664114426282963e-08,-7.337813170069079604e-08,-7.525962225711876246e-08,-7.714111281354672887e-08,-7.902260336997469529e-08,-8.090409392640266170e-08,-8.278558448283062811e-08,-8.466707503925859453e-08,-8.654856559568656094e-08,-8.843005615211452736e-08,-9.031154670854249377e-08,-9.219303726497046019e-08,-9.407452782139842660e-08,-9.595601837782639302e-08,-9.783750893425435943e-08,-9.971899949068232584e-08,-1.016004900471102923e-07,-1.034819806035382587e-07,-1.053634711599662251e-07,-1.072449617163941915e-07,-1.091264522728221579e-07,-1.110079428292501243e-07,-1.128894333856780907e-07,-1.147709239421060572e-07,-1.166524144985340236e-07,-1.185339050549619900e-07 +0.000000000000000000e+00,-1.246812703293217561e-09,-2.493625406586435122e-09,-3.740438109879653097e-09,-4.987250813172871071e-09,-6.234063516466089046e-09,-7.480876219759306194e-09,-8.727688923052523341e-09,-9.974501626345740489e-09,-1.122131432963895764e-08,-1.246812703293217478e-08,-1.371493973622539193e-08,-1.496175243951860908e-08,-1.620856514281182623e-08,-1.745537784610504337e-08,-1.870219054939826052e-08,-1.994900325269147767e-08,-2.119581595598469482e-08,-2.244262865927791196e-08,-2.368944136257112911e-08,-2.493625406586434626e-08,-2.618306676915756341e-08,-2.742987947245078055e-08,-2.867669217574399770e-08,-2.992350487903721154e-08,-3.117031758233042538e-08,-3.241713028562363922e-08,-3.366394298891685306e-08,-3.491075569221006689e-08,-3.615756839550328073e-08,-3.740438109879649457e-08,-3.865119380208970841e-08,-3.989800650538292225e-08,-4.114481920867613609e-08,-4.239163191196934993e-08,-4.363844461526256377e-08,-4.488525731855577760e-08,-4.613207002184899144e-08,-4.737888272514220528e-08,-4.862569542843541912e-08,-4.987250813172863296e-08,-5.111932083502184680e-08,-5.236613353831506064e-08,-5.361294624160827448e-08,-5.485975894490148831e-08,-5.610657164819470215e-08,-5.735338435148791599e-08,-5.860019705478112983e-08,-5.984700975807434367e-08,-6.109382246136756413e-08,-6.234063516466078458e-08,-6.358744786795400504e-08,-6.483426057124722549e-08,-6.608107327454044595e-08,-6.732788597783366641e-08,-6.857469868112688686e-08,-6.982151138442010732e-08,-7.106832408771332778e-08,-7.231513679100654823e-08,-7.356194949429976869e-08,-7.480876219759298914e-08,-7.605557490088620960e-08,-7.730238760417943006e-08,-7.854920030747265051e-08 +0.000000000000000000e+00,-1.225454277096799724e-09,-2.450908554193599449e-09,-3.676362831290399173e-09,-4.901817108387198897e-09,-6.127271385483999035e-09,-7.352725662580799173e-09,-8.578179939677599311e-09,-9.803634216774399449e-09,-1.102908849387119959e-08,-1.225454277096799972e-08,-1.347999704806479986e-08,-1.470545132516160000e-08,-1.593090560225840014e-08,-1.715635987935519862e-08,-1.838181415645199711e-08,-1.960726843354879559e-08,-2.083272271064559407e-08,-2.205817698774239256e-08,-2.328363126483919104e-08,-2.450908554193598952e-08,-2.573453981903278801e-08,-2.695999409612958649e-08,-2.818544837322638497e-08,-2.941090265032318346e-08,-3.063635692741997863e-08,-3.186181120451677381e-08,-3.308726548161356898e-08,-3.431271975871036416e-08,-3.553817403580715933e-08,-3.676362831290395451e-08,-3.798908259000074968e-08,-3.921453686709754486e-08,-4.043999114419434003e-08,-4.166544542129113521e-08,-4.289089969838793038e-08,-4.411635397548472556e-08,-4.534180825258152073e-08,-4.656726252967831591e-08,-4.779271680677511108e-08,-4.901817108387190626e-08,-5.024362536096870143e-08,-5.146907963806549661e-08,-5.269453391516229178e-08,-5.391998819225908695e-08,-5.514544246935588213e-08,-5.637089674645267730e-08,-5.759635102354947248e-08,-5.882180530064626765e-08,-6.004725957774306283e-08,-6.127271385483985139e-08,-6.249816813193663994e-08,-6.372362240903342850e-08,-6.494907668613021706e-08,-6.617453096322700562e-08,-6.739998524032379417e-08,-6.862543951742058273e-08,-6.985089379451737129e-08,-7.107634807161415985e-08,-7.230180234871094840e-08,-7.352725662580773696e-08,-7.475271090290452552e-08,-7.597816518000131408e-08,-7.720361945709810263e-08 +0.000000000000000000e+00,8.837489205297143880e-10,1.767497841059428776e-09,2.651246761589142957e-09,3.534995682118857138e-09,4.418744602648571320e-09,5.302493523178285914e-09,6.186242443708000509e-09,7.069991364237715104e-09,7.953740284767430526e-09,8.837489205297145948e-09,9.721238125826861370e-09,1.060498704635657679e-08,1.148873596688629221e-08,1.237248488741600764e-08,1.325623380794572306e-08,1.413998272847543848e-08,1.502373164900515390e-08,1.590748056953486767e-08,1.679122949006458144e-08,1.767497841059429520e-08,1.855872733112400897e-08,1.944247625165372274e-08,2.032622517218343651e-08,2.120997409271315027e-08,2.209372301324286404e-08,2.297747193377257781e-08,2.386122085430229158e-08,2.474496977483200535e-08,2.562871869536171911e-08,2.651246761589143288e-08,2.739621653642114665e-08,2.827996545695086042e-08,2.916371437748057418e-08,3.004746329801028795e-08,3.093121221854000172e-08,3.181496113906971549e-08,3.269871005959942925e-08,3.358245898012914302e-08,3.446620790065885679e-08,3.534995682118857056e-08,3.623370574171828432e-08,3.711745466224799809e-08,3.800120358277771186e-08,3.888495250330742563e-08,3.976870142383713939e-08,4.065245034436685316e-08,4.153619926489656693e-08,4.241994818542628070e-08,4.330369710595599446e-08,4.418744602648570823e-08,4.507119494701542200e-08,4.595494386754513577e-08,4.683869278807484953e-08,4.772244170860456330e-08,4.860619062913427707e-08,4.948993954966399084e-08,5.037368847019370461e-08,5.125743739072341837e-08,5.214118631125313214e-08,5.302493523178284591e-08,5.390868415231255968e-08,5.479243307284227344e-08,5.567618199337198721e-08 +0.000000000000000000e+00,9.632076701215163349e-10,1.926415340243032670e-09,2.889623010364549005e-09,3.852830680486065339e-09,4.816038350607582088e-09,5.779246020729098836e-09,6.742453690850615585e-09,7.705661360972132333e-09,8.668869031093649082e-09,9.632076701215165830e-09,1.059528437133668258e-08,1.155849204145819933e-08,1.252169971157971608e-08,1.348490738170123282e-08,1.444811505182274957e-08,1.541132272194426798e-08,1.637453039206578472e-08,1.733773806218730147e-08,1.830094573230881822e-08,1.926415340243033497e-08,2.022736107255185172e-08,2.119056874267336847e-08,2.215377641279488521e-08,2.311698408291640196e-08,2.408019175303791871e-08,2.504339942315943546e-08,2.600660709328095221e-08,2.696981476340246896e-08,2.793302243352398571e-08,2.889623010364550245e-08,2.985943777376701920e-08,3.082264544388853595e-08,3.178585311401005270e-08,3.274906078413156945e-08,3.371226845425308620e-08,3.467547612437460294e-08,3.563868379449611969e-08,3.660189146461763644e-08,3.756509913473915319e-08,3.852830680486066994e-08,3.949151447498218669e-08,4.045472214510370343e-08,4.141792981522522018e-08,4.238113748534673693e-08,4.334434515546825368e-08,4.430755282558977043e-08,4.527076049571128718e-08,4.623396816583280393e-08,4.719717583595432067e-08,4.816038350607583742e-08,4.912359117619735417e-08,5.008679884631887092e-08,5.105000651644038767e-08,5.201321418656190442e-08,5.297642185668342116e-08,5.393962952680493791e-08,5.490283719692645466e-08,5.586604486704797141e-08,5.682925253716948816e-08,5.779246020729100491e-08,5.875566787741252166e-08,5.971887554753403840e-08,6.068208321765555515e-08 +0.000000000000000000e+00,9.620068684430461009e-10,1.924013736886092202e-09,2.886020605329138509e-09,3.848027473772185231e-09,4.810034342215231952e-09,5.772041210658278673e-09,6.734048079101325395e-09,7.696054947544372116e-09,8.658061815987419664e-09,9.620068684430467213e-09,1.058207555287351476e-08,1.154408242131656231e-08,1.250608928975960986e-08,1.346809615820265741e-08,1.443010302664570496e-08,1.539210989508875416e-08,1.635411676353180336e-08,1.731612363197485256e-08,1.827813050041790177e-08,1.924013736886095097e-08,2.020214423730400017e-08,2.116415110574704938e-08,2.212615797419009858e-08,2.308816484263314778e-08,2.405017171107619698e-08,2.501217857951924619e-08,2.597418544796229539e-08,2.693619231640534459e-08,2.789819918484839379e-08,2.886020605329144300e-08,2.982221292173449220e-08,3.078421979017754140e-08,3.174622665862059061e-08,3.270823352706363981e-08,3.367024039550668901e-08,3.463224726394973821e-08,3.559425413239278742e-08,3.655626100083583662e-08,3.751826786927888582e-08,3.848027473772193503e-08,3.944228160616498423e-08,4.040428847460803343e-08,4.136629534305108263e-08,4.232830221149413184e-08,4.329030907993718104e-08,4.425231594838023024e-08,4.521432281682327945e-08,4.617632968526632865e-08,4.713833655370937785e-08,4.810034342215242705e-08,4.906235029059547626e-08,5.002435715903852546e-08,5.098636402748157466e-08,5.194837089592462387e-08,5.291037776436767307e-08,5.387238463281072227e-08,5.483439150125377147e-08,5.579639836969682068e-08,5.675840523813986988e-08,5.772041210658291908e-08,5.868241897502596829e-08,5.964442584346901087e-08,6.060643271191205346e-08 +0.000000000000000000e+00,-8.837489204826448126e-10,-1.767497840965289625e-09,-2.651246761447934541e-09,-3.534995681930579664e-09,-4.418744602413224373e-09,-5.302493522895869082e-09,-6.186242443378513792e-09,-7.069991363861158501e-09,-7.953740284343803210e-09,-8.837489204826448746e-09,-9.721238125309094283e-09,-1.060498704579173982e-08,-1.148873596627438536e-08,-1.237248488675703089e-08,-1.325623380723967643e-08,-1.413998272772232196e-08,-1.502373164820496585e-08,-1.590748056868760973e-08,-1.679122948917025361e-08,-1.767497840965289749e-08,-1.855872733013554137e-08,-1.944247625061818526e-08,-2.032622517110082914e-08,-2.120997409158347302e-08,-2.209372301206611690e-08,-2.297747193254876078e-08,-2.386122085303140467e-08,-2.474496977351404855e-08,-2.562871869399669243e-08,-2.651246761447933631e-08,-2.739621653496198019e-08,-2.827996545544462408e-08,-2.916371437592726796e-08,-3.004746329640991184e-08,-3.093121221689255572e-08,-3.181496113737519961e-08,-3.269871005785784349e-08,-3.358245897834048737e-08,-3.446620789882313125e-08,-3.534995681930577513e-08,-3.623370573978841902e-08,-3.711745466027106290e-08,-3.800120358075370678e-08,-3.888495250123635066e-08,-3.976870142171899454e-08,-4.065245034220163843e-08,-4.153619926268428231e-08,-4.241994818316692619e-08,-4.330369710364957007e-08,-4.418744602413221395e-08,-4.507119494461485784e-08,-4.595494386509750172e-08,-4.683869278558014560e-08,-4.772244170606278948e-08,-4.860619062654543336e-08,-4.948993954702807725e-08,-5.037368846751072113e-08,-5.125743738799336501e-08,-5.214118630847600889e-08,-5.302493522895865277e-08,-5.390868414944129666e-08,-5.479243306992394054e-08,-5.567618199040658442e-08 +0.000000000000000000e+00,-9.632076700932546753e-10,-1.926415340186509351e-09,-2.889623010279764233e-09,-3.852830680373019528e-09,-4.816038350466274824e-09,-5.779246020559530119e-09,-6.742453690652785415e-09,-7.705661360746040711e-09,-8.668869030839296006e-09,-9.632076700932551302e-09,-1.059528437102580660e-08,-1.155849204111906189e-08,-1.252169971121231719e-08,-1.348490738130557248e-08,-1.444811505139882778e-08,-1.541132272149208473e-08,-1.637453039158534168e-08,-1.733773806167859863e-08,-1.830094573177185558e-08,-1.926415340186511253e-08,-2.022736107195836948e-08,-2.119056874205162643e-08,-2.215377641214488338e-08,-2.311698408223814033e-08,-2.408019175233139728e-08,-2.504339942242465423e-08,-2.600660709251791118e-08,-2.696981476261116813e-08,-2.793302243270442508e-08,-2.889623010279768203e-08,-2.985943777289093567e-08,-3.082264544298418931e-08,-3.178585311307744295e-08,-3.274906078317069660e-08,-3.371226845326395024e-08,-3.467547612335720388e-08,-3.563868379345045752e-08,-3.660189146354371116e-08,-3.756509913363696480e-08,-3.852830680373021844e-08,-3.949151447382347208e-08,-4.045472214391672573e-08,-4.141792981400997937e-08,-4.238113748410323301e-08,-4.334434515419648665e-08,-4.430755282428974029e-08,-4.527076049438299393e-08,-4.623396816447624757e-08,-4.719717583456950121e-08,-4.816038350466275486e-08,-4.912359117475600850e-08,-5.008679884484926214e-08,-5.105000651494251578e-08,-5.201321418503576942e-08,-5.297642185512902306e-08,-5.393962952522227670e-08,-5.490283719531553034e-08,-5.586604486540878399e-08,-5.682925253550203763e-08,-5.779246020559529127e-08,-5.875566787568854491e-08,-5.971887554578179193e-08,-6.068208321587503896e-08 +0.000000000000000000e+00,-9.620068683924532531e-10,-1.924013736784906506e-09,-2.886020605177359966e-09,-3.848027473569813840e-09,-4.810034341962267713e-09,-5.772041210354721587e-09,-6.734048078747175460e-09,-7.696054947139629333e-09,-8.658061815532083207e-09,-9.620068683924537080e-09,-1.058207555231699095e-08,-1.154408242070944483e-08,-1.250608928910189870e-08,-1.346809615749435257e-08,-1.443010302588680645e-08,-1.539210989427926198e-08,-1.635411676267171750e-08,-1.731612363106417303e-08,-1.827813049945662856e-08,-1.924013736784908409e-08,-2.020214423624153961e-08,-2.116415110463399514e-08,-2.212615797302645067e-08,-2.308816484141890620e-08,-2.405017170981136173e-08,-2.501217857820381725e-08,-2.597418544659627278e-08,-2.693619231498872831e-08,-2.789819918338118384e-08,-2.886020605177363937e-08,-2.982221292016609158e-08,-3.078421978855854380e-08,-3.174622665695099602e-08,-3.270823352534344824e-08,-3.367024039373590046e-08,-3.463224726212835268e-08,-3.559425413052080490e-08,-3.655626099891325712e-08,-3.751826786730570934e-08,-3.848027473569816156e-08,-3.944228160409061378e-08,-4.040428847248306599e-08,-4.136629534087551821e-08,-4.232830220926797043e-08,-4.329030907766042265e-08,-4.425231594605287487e-08,-4.521432281444532709e-08,-4.617632968283777931e-08,-4.713833655123023153e-08,-4.810034341962268375e-08,-4.906235028801513597e-08,-5.002435715640758819e-08,-5.098636402480004041e-08,-5.194837089319249262e-08,-5.291037776158494484e-08,-5.387238462997739706e-08,-5.483439149836984928e-08,-5.579639836676230150e-08,-5.675840523515475372e-08,-5.772041210354720594e-08,-5.868241897193965816e-08,-5.964442584033210376e-08,-6.060643270872454936e-08 +0.000000000000000000e+00,7.853171444801754388e-10,1.570634288960350878e-09,2.355951433440526523e-09,3.141268577920702169e-09,3.926585722400877814e-09,4.711902866881053046e-09,5.497220011361228278e-09,6.282537155841403510e-09,7.067854300321578742e-09,7.853171444801753974e-09,8.638488589281929206e-09,9.423805733762104438e-09,1.020912287824227967e-08,1.099444002272245490e-08,1.177975716720263013e-08,1.256507431168280537e-08,1.335039145616298060e-08,1.413570860064315583e-08,1.492102574512333272e-08,1.570634288960351126e-08,1.649166003408368980e-08,1.727697717856386834e-08,1.806229432304404688e-08,1.884761146752422542e-08,1.963292861200440396e-08,2.041824575648458250e-08,2.120356290096476104e-08,2.198888004544493958e-08,2.277419718992511812e-08,2.355951433440529666e-08,2.434483147888547521e-08,2.513014862336565375e-08,2.591546576784583229e-08,2.670078291232601083e-08,2.748610005680618937e-08,2.827141720128636791e-08,2.905673434576654645e-08,2.984205149024672499e-08,3.062736863472690353e-08,3.141268577920708207e-08,3.219800292368726061e-08,3.298332006816743915e-08,3.376863721264761769e-08,3.455395435712779623e-08,3.533927150160797478e-08,3.612458864608815332e-08,3.690990579056833186e-08,3.769522293504851040e-08,3.848054007952868894e-08,3.926585722400886748e-08,4.005117436848904602e-08,4.083649151296922456e-08,4.162180865744940310e-08,4.240712580192958164e-08,4.319244294640976018e-08,4.397776009088993872e-08,4.476307723537011726e-08,4.554839437985029580e-08,4.633371152433047435e-08,4.711902866881065289e-08,4.790434581329083143e-08,4.868966295777100997e-08,4.947498010225118851e-08 +0.000000000000000000e+00,8.276441371623021950e-10,1.655288274324604390e-09,2.482932411486906378e-09,3.310576548649208366e-09,4.138220685811510355e-09,4.965864822973812756e-09,5.793508960136115158e-09,6.621153097298417560e-09,7.448797234460719962e-09,8.276441371623022364e-09,9.104085508785325593e-09,9.931729645947628822e-09,1.075937378310993205e-08,1.158701792027223528e-08,1.241466205743453851e-08,1.324230619459684174e-08,1.406995033175914497e-08,1.489759446892144820e-08,1.572523860608375142e-08,1.655288274324605465e-08,1.738052688040835788e-08,1.820817101757066111e-08,1.903581515473296434e-08,1.986345929189526757e-08,2.069110342905757080e-08,2.151874756621987403e-08,2.234639170338217726e-08,2.317403584054448049e-08,2.400167997770678371e-08,2.482932411486908694e-08,2.565696825203139017e-08,2.648461238919369340e-08,2.731225652635599663e-08,2.813990066351829986e-08,2.896754480068060309e-08,2.979518893784290632e-08,3.062283307500520955e-08,3.145047721216751608e-08,3.227812134932982262e-08,3.310576548649212916e-08,3.393340962365443570e-08,3.476105376081674223e-08,3.558869789797904877e-08,3.641634203514135531e-08,3.724398617230366185e-08,3.807163030946596839e-08,3.889927444662827492e-08,3.972691858379058146e-08,4.055456272095288800e-08,4.138220685811519454e-08,4.220985099527750107e-08,4.303749513243980761e-08,4.386513926960211415e-08,4.469278340676442069e-08,4.552042754392672722e-08,4.634807168108903376e-08,4.717571581825134030e-08,4.800335995541364684e-08,4.883100409257595338e-08,4.965864822973825991e-08,5.048629236690056645e-08,5.131393650406287299e-08,5.214158064122517953e-08 +0.000000000000000000e+00,8.358169141523086412e-10,1.671633828304617282e-09,2.507450742456925820e-09,3.343267656609234151e-09,4.179084570761542069e-09,5.014901484913849986e-09,5.850718399066157904e-09,6.686535313218465821e-09,7.522352227370773739e-09,8.358169141523080829e-09,9.193986055675387919e-09,1.002980296982769501e-08,1.086561988398000210e-08,1.170143679813230919e-08,1.253725371228461628e-08,1.337307062643692337e-08,1.420888754058923046e-08,1.504470445474153755e-08,1.588052136889384464e-08,1.671633828304615173e-08,1.755215519719845882e-08,1.838797211135076591e-08,1.922378902550307300e-08,2.005960593965538009e-08,2.089542285380768718e-08,2.173123976795999427e-08,2.256705668211230136e-08,2.340287359626460845e-08,2.423869051041691554e-08,2.507450742456922263e-08,2.591032433872152972e-08,2.674614125287383681e-08,2.758195816702614391e-08,2.841777508117845100e-08,2.925359199533075809e-08,3.008940890948306848e-08,3.092522582363537888e-08,3.176104273778768928e-08,3.259685965193999968e-08,3.343267656609231008e-08,3.426849348024462048e-08,3.510431039439693088e-08,3.594012730854924128e-08,3.677594422270155168e-08,3.761176113685386208e-08,3.844757805100617247e-08,3.928339496515848287e-08,4.011921187931079327e-08,4.095502879346310367e-08,4.179084570761541407e-08,4.262666262176772447e-08,4.346247953592003487e-08,4.429829645007234527e-08,4.513411336422465567e-08,4.596993027837696607e-08,4.680574719252927646e-08,4.764156410668158686e-08,4.847738102083389726e-08,4.931319793498620766e-08,5.014901484913851806e-08,5.098483176329082846e-08,5.182064867744313886e-08,5.265646559159544926e-08 +0.000000000000000000e+00,-7.853171443987623584e-10,-1.570634288797524717e-09,-2.355951433196286972e-09,-3.141268577595049020e-09,-3.926585721993810654e-09,-4.711902866392572289e-09,-5.497220010791333924e-09,-6.282537155190095558e-09,-7.067854299588857193e-09,-7.853171443987618000e-09,-8.638488588386378807e-09,-9.423805732785139615e-09,-1.020912287718390042e-08,-1.099444002158266123e-08,-1.177975716598142204e-08,-1.256507431038018284e-08,-1.335039145477894365e-08,-1.413570859917770446e-08,-1.492102574357646527e-08,-1.570634288797522607e-08,-1.649166003237398688e-08,-1.727697717677274769e-08,-1.806229432117150850e-08,-1.884761146557026930e-08,-1.963292860996903011e-08,-2.041824575436779092e-08,-2.120356289876655173e-08,-2.198888004316531253e-08,-2.277419718756407334e-08,-2.355951433196283415e-08,-2.434483147636159496e-08,-2.513014862076035576e-08,-2.591546576515911657e-08,-2.670078290955787738e-08,-2.748610005395663818e-08,-2.827141719835539899e-08,-2.905673434275415980e-08,-2.984205148715291730e-08,-3.062736863155167480e-08,-3.141268577595043230e-08,-3.219800292034918979e-08,-3.298332006474794729e-08,-3.376863720914670479e-08,-3.455395435354546229e-08,-3.533927149794421979e-08,-3.612458864234297729e-08,-3.690990578674173479e-08,-3.769522293114049228e-08,-3.848054007553924978e-08,-3.926585721993800728e-08,-4.005117436433676478e-08,-4.083649150873552228e-08,-4.162180865313427978e-08,-4.240712579753303728e-08,-4.319244294193179478e-08,-4.397776008633055227e-08,-4.476307723072930977e-08,-4.554839437512806727e-08,-4.633371151952682477e-08,-4.711902866392558227e-08,-4.790434580832433977e-08,-4.868966295272309727e-08,-4.947498009712185476e-08 +0.000000000000000000e+00,-8.276441370974664344e-10,-1.655288274194932869e-09,-2.482932411292399407e-09,-3.310576548389866151e-09,-4.138220685487332482e-09,-4.965864822584798813e-09,-5.793508959682265144e-09,-6.621153096779731475e-09,-7.448797233877197806e-09,-8.276441370974664965e-09,-9.104085508072132123e-09,-9.931729645169599281e-09,-1.075937378226706644e-08,-1.158701791936453360e-08,-1.241466205646200076e-08,-1.324230619355946791e-08,-1.406995033065693507e-08,-1.489759446775440223e-08,-1.572523860485186773e-08,-1.655288274194933324e-08,-1.738052687904679874e-08,-1.820817101614426425e-08,-1.903581515324172975e-08,-1.986345929033919525e-08,-2.069110342743666076e-08,-2.151874756453412626e-08,-2.234639170163159176e-08,-2.317403583872905727e-08,-2.400167997582652277e-08,-2.482932411292398828e-08,-2.565696825002145378e-08,-2.648461238711891928e-08,-2.731225652421638479e-08,-2.813990066131385029e-08,-2.896754479841131580e-08,-2.979518893550878130e-08,-3.062283307260624680e-08,-3.145047720970370900e-08,-3.227812134680117119e-08,-3.310576548389863339e-08,-3.393340962099609558e-08,-3.476105375809355778e-08,-3.558869789519101997e-08,-3.641634203228848217e-08,-3.724398616938594436e-08,-3.807163030648340656e-08,-3.889927444358086875e-08,-3.972691858067833095e-08,-4.055456271777579315e-08,-4.138220685487325534e-08,-4.220985099197071754e-08,-4.303749512906817973e-08,-4.386513926616564193e-08,-4.469278340326310412e-08,-4.552042754036056632e-08,-4.634807167745802851e-08,-4.717571581455549071e-08,-4.800335995165295290e-08,-4.883100408875041510e-08,-4.965864822584787729e-08,-5.048629236294533949e-08,-5.131393650004280168e-08,-5.214158063714026388e-08 +0.000000000000000000e+00,-8.358169140669903377e-10,-1.671633828133980675e-09,-2.507450742200970910e-09,-3.343267656267960937e-09,-4.179084570334950965e-09,-5.014901484401940992e-09,-5.850718398468931020e-09,-6.686535312535921047e-09,-7.522352226602911902e-09,-8.358169140669903584e-09,-9.193986054736895266e-09,-1.002980296880388695e-08,-1.086561988287087863e-08,-1.170143679693787031e-08,-1.253725371100486199e-08,-1.337307062507185368e-08,-1.420888753913884536e-08,-1.504470445320583704e-08,-1.588052136727282872e-08,-1.671633828133982040e-08,-1.755215519540681208e-08,-1.838797210947380377e-08,-1.922378902354079545e-08,-2.005960593760778713e-08,-2.089542285167477881e-08,-2.173123976574177049e-08,-2.256705667980876218e-08,-2.340287359387575386e-08,-2.423869050794274554e-08,-2.507450742200973722e-08,-2.591032433607672890e-08,-2.674614125014372059e-08,-2.758195816421071227e-08,-2.841777507827770395e-08,-2.925359199234469563e-08,-3.008940890641168731e-08,-3.092522582047867900e-08,-3.176104273454567068e-08,-3.259685964861266236e-08,-3.343267656267965404e-08,-3.426849347674664572e-08,-3.510431039081363740e-08,-3.594012730488062909e-08,-3.677594421894762077e-08,-3.761176113301461245e-08,-3.844757804708160413e-08,-3.928339496114859581e-08,-4.011921187521558750e-08,-4.095502878928257918e-08,-4.179084570334957086e-08,-4.262666261741656254e-08,-4.346247953148355422e-08,-4.429829644555054591e-08,-4.513411335961753759e-08,-4.596993027368452927e-08,-4.680574718775152095e-08,-4.764156410181851263e-08,-4.847738101588550432e-08,-4.931319792995249600e-08,-5.014901484401948768e-08,-5.098483175808647936e-08,-5.182064867215347104e-08,-5.265646558622046272e-08 +0.000000000000000000e+00,7.296791497812959741e-10,1.459358299562591948e-09,2.189037449343887922e-09,2.918716599125183896e-09,3.648395748906479870e-09,4.378074898687775845e-09,5.107754048469071819e-09,5.837433198250367793e-09,6.567112348031663767e-09,7.296791497812959741e-09,8.026470647594254888e-09,8.756149797375550035e-09,9.485828947156845182e-09,1.021550809693814033e-08,1.094518724671943548e-08,1.167486639650073062e-08,1.240454554628202577e-08,1.313422469606332092e-08,1.386390384584461606e-08,1.459358299562591121e-08,1.532326214540720636e-08,1.605294129518850316e-08,1.678262044496979996e-08,1.751229959475109676e-08,1.824197874453239356e-08,1.897165789431369036e-08,1.970133704409498716e-08,2.043101619387628397e-08,2.116069534365758077e-08,2.189037449343887757e-08,2.262005364322017437e-08,2.334973279300147117e-08,2.407941194278276797e-08,2.480909109256406477e-08,2.553877024234536158e-08,2.626844939212665838e-08,2.699812854190795518e-08,2.772780769168925198e-08,2.845748684147054878e-08,2.918716599125184558e-08,2.991684514103313907e-08,3.064652429081443257e-08,3.137620344059572606e-08,3.210588259037701955e-08,3.283556174015831304e-08,3.356524088993960654e-08,3.429492003972090003e-08,3.502459918950219352e-08,3.575427833928348701e-08,3.648395748906478051e-08,3.721363663884607400e-08,3.794331578862736749e-08,3.867299493840866098e-08,3.940267408818995448e-08,4.013235323797124797e-08,4.086203238775254146e-08,4.159171153753383495e-08,4.232139068731512845e-08,4.305106983709642194e-08,4.378074898687771543e-08,4.451042813665900893e-08,4.524010728644030242e-08,4.596978643622159591e-08 +0.000000000000000000e+00,7.554445695037095388e-10,1.510889139007419078e-09,2.266333708511128410e-09,3.021778278014837742e-09,3.777222847518547074e-09,4.532667417022256819e-09,5.288111986525966565e-09,6.043556556029676310e-09,6.799001125533386056e-09,7.554445695037095801e-09,8.309890264540804720e-09,9.065334834044513638e-09,9.820779403548222557e-09,1.057622397305193147e-08,1.133166854255564039e-08,1.208711311205934931e-08,1.284255768156305823e-08,1.359800225106676715e-08,1.435344682057047607e-08,1.510889139007418499e-08,1.586433595957789390e-08,1.661978052908160282e-08,1.737522509858531174e-08,1.813066966808902066e-08,1.888611423759272958e-08,1.964155880709643850e-08,2.039700337660014741e-08,2.115244794610385633e-08,2.190789251560756525e-08,2.266333708511127417e-08,2.341878165461498309e-08,2.417422622411869201e-08,2.492967079362240092e-08,2.568511536312610984e-08,2.644055993262981876e-08,2.719600450213352768e-08,2.795144907163723660e-08,2.870689364114094552e-08,2.946233821064465443e-08,3.021778278014836335e-08,3.097322734965207558e-08,3.172867191915578781e-08,3.248411648865950003e-08,3.323956105816321226e-08,3.399500562766692449e-08,3.475045019717063672e-08,3.550589476667434894e-08,3.626133933617806117e-08,3.701678390568177340e-08,3.777222847518548562e-08,3.852767304468919785e-08,3.928311761419291008e-08,4.003856218369662231e-08,4.079400675320033453e-08,4.154945132270404676e-08,4.230489589220775899e-08,4.306034046171147121e-08,4.381578503121518344e-08,4.457122960071889567e-08,4.532667417022260790e-08,4.608211873972632012e-08,4.683756330923003235e-08,4.759300787873374458e-08 +0.000000000000000000e+00,7.619214482828050379e-10,1.523842896565610076e-09,2.285764344848415010e-09,3.047685793131219738e-09,3.809607241414024466e-09,4.571528689696829193e-09,5.333450137979633921e-09,6.095371586262438649e-09,6.857293034545243376e-09,7.619214482828048931e-09,8.381135931110854486e-09,9.143057379393660041e-09,9.904978827676465596e-09,1.066690027595927115e-08,1.142882172424207671e-08,1.219074317252488226e-08,1.295266462080768782e-08,1.371458606909049337e-08,1.447650751737329893e-08,1.523842896565610448e-08,1.600035041393891004e-08,1.676227186222171559e-08,1.752419331050452114e-08,1.828611475878732670e-08,1.904803620707013225e-08,1.980995765535293781e-08,2.057187910363574336e-08,2.133380055191854892e-08,2.209572200020135447e-08,2.285764344848416003e-08,2.361956489676696558e-08,2.438148634504977114e-08,2.514340779333257669e-08,2.590532924161538225e-08,2.666725068989818780e-08,2.742917213818099336e-08,2.819109358646379891e-08,2.895301503474660447e-08,2.971493648302941002e-08,3.047685793131221558e-08,3.123877937959502113e-08,3.200070082787782669e-08,3.276262227616063224e-08,3.352454372444343780e-08,3.428646517272624335e-08,3.504838662100904891e-08,3.581030806929185446e-08,3.657222951757466002e-08,3.733415096585746557e-08,3.809607241414027113e-08,3.885799386242307668e-08,3.961991531070588224e-08,4.038183675898868779e-08,4.114375820727149335e-08,4.190567965555429890e-08,4.266760110383710446e-08,4.342952255211991001e-08,4.419144400040271557e-08,4.495336544868552112e-08,4.571528689696832668e-08,4.647720834525113223e-08,4.723912979353393779e-08,4.800105124181674334e-08 +0.000000000000000000e+00,-7.296791496712792983e-10,-1.459358299342558597e-09,-2.189037449013837895e-09,-2.918716598685117193e-09,-3.648395748356396491e-09,-4.378074898027675790e-09,-5.107754047698955088e-09,-5.837433197370234386e-09,-6.567112347041513684e-09,-7.296791496712792983e-09,-8.026470646384073108e-09,-8.756149796055353234e-09,-9.485828945726633359e-09,-1.021550809539791348e-08,-1.094518724506919361e-08,-1.167486639474047374e-08,-1.240454554441175386e-08,-1.313422469408303399e-08,-1.386390384375431411e-08,-1.459358299342559424e-08,-1.532326214309687436e-08,-1.605294129276815283e-08,-1.678262044243943130e-08,-1.751229959211070978e-08,-1.824197874178198825e-08,-1.897165789145326672e-08,-1.970133704112454519e-08,-2.043101619079582366e-08,-2.116069534046710213e-08,-2.189037449013838060e-08,-2.262005363980965907e-08,-2.334973278948093754e-08,-2.407941193915221602e-08,-2.480909108882349449e-08,-2.553877023849477296e-08,-2.626844938816605143e-08,-2.699812853783732990e-08,-2.772780768750860837e-08,-2.845748683717988684e-08,-2.918716598685116531e-08,-2.991684513652244378e-08,-3.064652428619372226e-08,-3.137620343586500073e-08,-3.210588258553627920e-08,-3.283556173520755767e-08,-3.356524088487883614e-08,-3.429492003455011461e-08,-3.502459918422139308e-08,-3.575427833389267155e-08,-3.648395748356395002e-08,-3.721363663323522850e-08,-3.794331578290650697e-08,-3.867299493257778544e-08,-3.940267408224906391e-08,-4.013235323192034238e-08,-4.086203238159162085e-08,-4.159171153126289932e-08,-4.232139068093417779e-08,-4.305106983060545626e-08,-4.378074898027673474e-08,-4.451042812994801321e-08,-4.524010727961929168e-08,-4.596978642929057015e-08 +0.000000000000000000e+00,-7.554445694073324509e-10,-1.510889138814664902e-09,-2.266333708221997353e-09,-3.021778277629329803e-09,-3.777222847036662254e-09,-4.532667416443994705e-09,-5.288111985851327156e-09,-6.043556555258659607e-09,-6.799001124665992058e-09,-7.554445694073324509e-09,-8.309890263480656960e-09,-9.065334832887989410e-09,-9.820779402295321861e-09,-1.057622397170265431e-08,-1.133166854110998676e-08,-1.208711311051731921e-08,-1.284255767992465166e-08,-1.359800224933198412e-08,-1.435344681873931657e-08,-1.510889138814664902e-08,-1.586433595755398147e-08,-1.661978052696131392e-08,-1.737522509636864637e-08,-1.813066966577597882e-08,-1.888611423518331127e-08,-1.964155880459064372e-08,-2.039700337399797617e-08,-2.115244794340530862e-08,-2.190789251281264108e-08,-2.266333708221997353e-08,-2.341878165162730598e-08,-2.417422622103463843e-08,-2.492967079044197088e-08,-2.568511535984930333e-08,-2.644055992925663578e-08,-2.719600449866396823e-08,-2.795144906807130068e-08,-2.870689363747863313e-08,-2.946233820688596558e-08,-3.021778277629329803e-08,-3.097322734570062718e-08,-3.172867191510795632e-08,-3.248411648451528546e-08,-3.323956105392261460e-08,-3.399500562332994375e-08,-3.475045019273727289e-08,-3.550589476214460203e-08,-3.626133933155193117e-08,-3.701678390095926031e-08,-3.777222847036658946e-08,-3.852767303977391860e-08,-3.928311760918124774e-08,-4.003856217858857688e-08,-4.079400674799590602e-08,-4.154945131740323517e-08,-4.230489588681056431e-08,-4.306034045621789345e-08,-4.381578502562522259e-08,-4.457122959503255174e-08,-4.532667416443988088e-08,-4.608211873384721002e-08,-4.683756330325453916e-08,-4.759300787266186830e-08 +0.000000000000000000e+00,-7.619214481673865625e-10,-1.523842896334773125e-09,-2.285764344502159687e-09,-3.047685792669546250e-09,-3.809607240836932812e-09,-4.571528689004319375e-09,-5.333450137171705937e-09,-6.095371585339092500e-09,-6.857293033506479062e-09,-7.619214481673865625e-09,-8.381135929841251360e-09,-9.143057378008637095e-09,-9.904978826176022831e-09,-1.066690027434340857e-08,-1.142882172251079430e-08,-1.219074317067818004e-08,-1.295266461884556577e-08,-1.371458606701295151e-08,-1.447650751518033724e-08,-1.523842896334772132e-08,-1.600035041151510540e-08,-1.676227185968248949e-08,-1.752419330784987357e-08,-1.828611475601725765e-08,-1.904803620418464173e-08,-1.980995765235202581e-08,-2.057187910051940989e-08,-2.133380054868679397e-08,-2.209572199685417805e-08,-2.285764344502156213e-08,-2.361956489318894621e-08,-2.438148634135633029e-08,-2.514340778952371438e-08,-2.590532923769109846e-08,-2.666725068585848254e-08,-2.742917213402586662e-08,-2.819109358219325070e-08,-2.895301503036063478e-08,-2.971493647852801886e-08,-3.047685792669540294e-08,-3.123877937486278702e-08,-3.200070082303017110e-08,-3.276262227119755518e-08,-3.352454371936493927e-08,-3.428646516753232335e-08,-3.504838661569970743e-08,-3.581030806386709151e-08,-3.657222951203447559e-08,-3.733415096020185967e-08,-3.809607240836924375e-08,-3.885799385653662783e-08,-3.961991530470401191e-08,-4.038183675287139599e-08,-4.114375820103878007e-08,-4.190567964920616416e-08,-4.266760109737354824e-08,-4.342952254554093232e-08,-4.419144399370831640e-08,-4.495336544187570048e-08,-4.571528689004308456e-08,-4.647720833821046864e-08,-4.723912978637785272e-08,-4.800105123454523680e-08 +0.000000000000000000e+00,6.955612185347028785e-10,1.391122437069405757e-09,2.086683655604108532e-09,2.782244874138811100e-09,3.477806092673513669e-09,4.173367311208216237e-09,4.868928529742919219e-09,5.564489748277622201e-09,6.260050966812325183e-09,6.955612185347028164e-09,7.651173403881731146e-09,8.346734622416434128e-09,9.042295840951137110e-09,9.737857059485840092e-09,1.043341827802054307e-08,1.112897949655524606e-08,1.182454071508994904e-08,1.252010193362465202e-08,1.321566315215935500e-08,1.391122437069405798e-08,1.460678558922876097e-08,1.530234680776346560e-08,1.599790802629816858e-08,1.669346924483287157e-08,1.738903046336757455e-08,1.808459168190227753e-08,1.878015290043698051e-08,1.947571411897168349e-08,2.017127533750638647e-08,2.086683655604108946e-08,2.156239777457579244e-08,2.225795899311049542e-08,2.295352021164519840e-08,2.364908143017990138e-08,2.434464264871460437e-08,2.504020386724930735e-08,2.573576508578401033e-08,2.643132630431871331e-08,2.712688752285341629e-08,2.782244874138811928e-08,2.851800995992282226e-08,2.921357117845752524e-08,2.990913239699222822e-08,3.060469361552693120e-08,3.130025483406163418e-08,3.199581605259633717e-08,3.269137727113104015e-08,3.338693848966574313e-08,3.408249970820044611e-08,3.477806092673514909e-08,3.547362214526985208e-08,3.616918336380455506e-08,3.686474458233925804e-08,3.756030580087396102e-08,3.825586701940866400e-08,3.895142823794336699e-08,3.964698945647806997e-08,4.034255067501277295e-08,4.103811189354747593e-08,4.173367311208217891e-08,4.242923433061688189e-08,4.312479554915158488e-08,4.382035676768628786e-08 +0.000000000000000000e+00,7.114566686143766195e-10,1.422913337228753239e-09,2.134370005843129755e-09,2.845826674457506064e-09,3.557283343071882374e-09,4.268740011686258683e-09,4.980196680300634579e-09,5.691653348915010475e-09,6.403110017529386370e-09,7.114566686143762266e-09,7.826023354758138162e-09,8.537480023372514058e-09,9.248936691986889953e-09,9.960393360601265849e-09,1.067185002921564174e-08,1.138330669783001764e-08,1.209476336644439354e-08,1.280622003505876943e-08,1.351767670367314533e-08,1.422913337228752122e-08,1.494059004090189712e-08,1.565204670951627301e-08,1.636350337813064891e-08,1.707496004674502481e-08,1.778641671535940070e-08,1.849787338397377660e-08,1.920933005258815249e-08,1.992078672120252839e-08,2.063224338981690429e-08,2.134370005843128018e-08,2.205515672704565608e-08,2.276661339566003197e-08,2.347807006427440787e-08,2.418952673288878376e-08,2.490098340150315966e-08,2.561244007011753556e-08,2.632389673873191145e-08,2.703535340734628735e-08,2.774681007596066324e-08,2.845826674457503914e-08,2.916972341318941503e-08,2.988118008180378762e-08,3.059263675041816352e-08,3.130409341903253941e-08,3.201555008764691531e-08,3.272700675626129120e-08,3.343846342487566710e-08,3.414992009349004300e-08,3.486137676210441889e-08,3.557283343071879479e-08,3.628429009933317068e-08,3.699574676794754658e-08,3.770720343656192247e-08,3.841866010517629837e-08,3.913011677379067427e-08,3.984157344240505016e-08,4.055303011101942606e-08,4.126448677963380195e-08,4.197594344824817785e-08,4.268740011686255374e-08,4.339885678547692964e-08,4.411031345409130554e-08,4.482177012270568143e-08 +0.000000000000000000e+00,7.124009241782468564e-10,1.424801848356493713e-09,2.137202772534740466e-09,2.849603696712987012e-09,3.562004620891233558e-09,4.274405545069480105e-09,4.986806469247726651e-09,5.699207393425973197e-09,6.411608317604219743e-09,7.124009241782466290e-09,7.836410165960713663e-09,8.548811090138961864e-09,9.261212014317210064e-09,9.973612938495458265e-09,1.068601386267370647e-08,1.139841478685195467e-08,1.211081571103020287e-08,1.282321663520845107e-08,1.353561755938669927e-08,1.424801848356494747e-08,1.496041940774319567e-08,1.567282033192144387e-08,1.638522125609969207e-08,1.709762218027794027e-08,1.781002310445618847e-08,1.852242402863443667e-08,1.923482495281268487e-08,1.994722587699093307e-08,2.065962680116918127e-08,2.137202772534742947e-08,2.208442864952567768e-08,2.279682957370392588e-08,2.350923049788217408e-08,2.422163142206042228e-08,2.493403234623867048e-08,2.564643327041691868e-08,2.635883419459516688e-08,2.707123511877341508e-08,2.778363604295166328e-08,2.849603696712991148e-08,2.920843789130815968e-08,2.992083881548641119e-08,3.063323973966466601e-08,3.134564066384292083e-08,3.205804158802117565e-08,3.277044251219943046e-08,3.348284343637768528e-08,3.419524436055594010e-08,3.490764528473419492e-08,3.562004620891244974e-08,3.633244713309070455e-08,3.704484805726895937e-08,3.775724898144721419e-08,3.846964990562546901e-08,3.918205082980372383e-08,3.989445175398197864e-08,4.060685267816023346e-08,4.131925360233848828e-08,4.203165452651674310e-08,4.274405545069499792e-08,4.345645637487325273e-08,4.416885729905150755e-08,4.488125822322976237e-08 +0.000000000000000000e+00,-6.955612184024347340e-10,-1.391122436804869468e-09,-2.086683655207304202e-09,-2.782244873609738936e-09,-3.477806092012173670e-09,-4.173367310414608404e-09,-4.868928528817042724e-09,-5.564489747219477045e-09,-6.260050965621911365e-09,-6.955612184024345685e-09,-7.651173402426780006e-09,-8.346734620829215153e-09,-9.042295839231650301e-09,-9.737857057634085449e-09,-1.043341827603652060e-08,-1.112897949443895574e-08,-1.182454071284139089e-08,-1.252010193124382604e-08,-1.321566314964626119e-08,-1.391122436804869633e-08,-1.460678558645113148e-08,-1.530234680485356663e-08,-1.599790802325600343e-08,-1.669346924165844023e-08,-1.738903046006087703e-08,-1.808459167846331384e-08,-1.878015289686575064e-08,-1.947571411526818744e-08,-2.017127533367062424e-08,-2.086683655207306104e-08,-2.156239777047549785e-08,-2.225795898887793465e-08,-2.295352020728037145e-08,-2.364908142568280825e-08,-2.434464264408524505e-08,-2.504020386248768186e-08,-2.573576508089011866e-08,-2.643132629929255546e-08,-2.712688751769499226e-08,-2.782244873609742906e-08,-2.851800995449986587e-08,-2.921357117290230267e-08,-2.990913239130473947e-08,-3.060469360970717958e-08,-3.130025482810961969e-08,-3.199581604651205980e-08,-3.269137726491449991e-08,-3.338693848331694002e-08,-3.408249970171938013e-08,-3.477806092012182024e-08,-3.547362213852426036e-08,-3.616918335692670047e-08,-3.686474457532914058e-08,-3.756030579373158069e-08,-3.825586701213402080e-08,-3.895142823053646091e-08,-3.964698944893890102e-08,-4.034255066734134113e-08,-4.103811188574378124e-08,-4.173367310414622135e-08,-4.242923432254866146e-08,-4.312479554095110157e-08,-4.382035675935354168e-08 +0.000000000000000000e+00,-7.114566684926536837e-10,-1.422913336985307367e-09,-2.134370005477960948e-09,-2.845826673970614321e-09,-3.557283342463267695e-09,-4.268740010955921068e-09,-4.980196679448574028e-09,-5.691653347941226988e-09,-6.403110016433879948e-09,-7.114566684926532908e-09,-7.826023353419185867e-09,-8.537480021911838827e-09,-9.248936690404491787e-09,-9.960393358897144747e-09,-1.067185002738979771e-08,-1.138330669588245067e-08,-1.209476336437510363e-08,-1.280622003286775659e-08,-1.351767670136040955e-08,-1.422913336985306251e-08,-1.494059003834571381e-08,-1.565204670683836512e-08,-1.636350337533101642e-08,-1.707496004382366773e-08,-1.778641671231631903e-08,-1.849787338080897034e-08,-1.920933004930162164e-08,-1.992078671779427295e-08,-2.063224338628692426e-08,-2.134370005477957556e-08,-2.205515672327222687e-08,-2.276661339176487817e-08,-2.347807006025752948e-08,-2.418952672875018078e-08,-2.490098339724283209e-08,-2.561244006573548339e-08,-2.632389673422813470e-08,-2.703535340272078601e-08,-2.774681007121343731e-08,-2.845826673970608862e-08,-2.916972340819873992e-08,-2.988118007669138792e-08,-3.059263674518403592e-08,-3.130409341367668391e-08,-3.201555008216933191e-08,-3.272700675066197991e-08,-3.343846341915462790e-08,-3.414992008764727590e-08,-3.486137675613992390e-08,-3.557283342463257189e-08,-3.628429009312521989e-08,-3.699574676161786789e-08,-3.770720343011051588e-08,-3.841866009860316388e-08,-3.913011676709581188e-08,-3.984157343558845987e-08,-4.055303010408110787e-08,-4.126448677257375587e-08,-4.197594344106640386e-08,-4.268740010955905186e-08,-4.339885677805169986e-08,-4.411031344654434785e-08,-4.482177011503699585e-08 +0.000000000000000000e+00,-7.124009240372188693e-10,-1.424801848074437739e-09,-2.137202772111656608e-09,-2.849603696148875477e-09,-3.562004620186094346e-09,-4.274405544223313216e-09,-4.986806468260532085e-09,-5.699207392297750954e-09,-6.411608316334969823e-09,-7.124009240372188693e-09,-7.836410164409407562e-09,-8.548811088446626431e-09,-9.261212012483845300e-09,-9.973612936521064170e-09,-1.068601386055828304e-08,-1.139841478459550191e-08,-1.211081570863272078e-08,-1.282321663266993965e-08,-1.353561755670715852e-08,-1.424801848074437739e-08,-1.496041940478159460e-08,-1.567282032881881181e-08,-1.638522125285602903e-08,-1.709762217689324624e-08,-1.781002310093046346e-08,-1.852242402496768067e-08,-1.923482494900489789e-08,-1.994722587304211510e-08,-2.065962679707933232e-08,-2.137202772111654953e-08,-2.208442864515376675e-08,-2.279682956919098396e-08,-2.350923049322820118e-08,-2.422163141726541839e-08,-2.493403234130263561e-08,-2.564643326533985282e-08,-2.635883418937707004e-08,-2.707123511341428725e-08,-2.778363603745150447e-08,-2.849603696148872168e-08,-2.920843788552593890e-08,-2.992083880956315611e-08,-3.063323973360037333e-08,-3.134564065763759054e-08,-3.205804158167480776e-08,-3.277044250571202497e-08,-3.348284342974924219e-08,-3.419524435378645940e-08,-3.490764527782367662e-08,-3.562004620186089383e-08,-3.633244712589811105e-08,-3.704484804993532826e-08,-3.775724897397254548e-08,-3.846964989800976269e-08,-3.918205082204697991e-08,-3.989445174608419712e-08,-4.060685267012141434e-08,-4.131925359415863155e-08,-4.203165451819584877e-08,-4.274405544223306598e-08,-4.345645636627028320e-08,-4.416885729030750041e-08,-4.488125821434471763e-08 +0.000000000000000000e+00,6.761585993853708265e-10,1.352317198770741653e-09,2.028475798156112583e-09,2.704634397541483720e-09,3.380792996926854856e-09,4.056951596312225993e-09,4.733110195697597544e-09,5.409268795082969094e-09,6.085427394468340644e-09,6.761585993853712194e-09,7.437744593239083745e-09,8.113903192624455295e-09,8.790061792009826845e-09,9.466220391395198396e-09,1.014237899078056995e-08,1.081853759016594150e-08,1.149469618955131305e-08,1.217085478893668460e-08,1.284701338832205615e-08,1.352317198770742770e-08,1.419933058709279925e-08,1.487548918647817080e-08,1.555164778586354235e-08,1.622780638524891390e-08,1.690396498463428545e-08,1.758012358401965700e-08,1.825628218340502855e-08,1.893244078279040010e-08,1.960859938217577165e-08,2.028475798156114320e-08,2.096091658094651475e-08,2.163707518033188630e-08,2.231323377971725785e-08,2.298939237910262940e-08,2.366555097848800095e-08,2.434170957787337250e-08,2.501786817725874405e-08,2.569402677664411560e-08,2.637018537602948715e-08,2.704634397541485870e-08,2.772250257480023025e-08,2.839866117418560180e-08,2.907481977357097336e-08,2.975097837295634491e-08,3.042713697234171976e-08,3.110329557172709131e-08,3.177945417111246287e-08,3.245561277049783442e-08,3.313177136988320597e-08,3.380792996926857752e-08,3.448408856865394907e-08,3.516024716803932062e-08,3.583640576742469217e-08,3.651256436681006372e-08,3.718872296619543527e-08,3.786488156558080682e-08,3.854104016496617837e-08,3.921719876435154992e-08,3.989335736373692147e-08,4.056951596312229302e-08,4.124567456250766457e-08,4.192183316189303612e-08,4.259799176127840767e-08 +0.000000000000000000e+00,6.844221344489053909e-10,1.368844268897810782e-09,2.053266403346716069e-09,2.737688537795621150e-09,3.422110672244526231e-09,4.106532806693431311e-09,4.790954941142335979e-09,5.475377075591240646e-09,6.159799210040145313e-09,6.844221344489049980e-09,7.528643478937954647e-09,8.213065613386859314e-09,8.897487747835763981e-09,9.581909882284668648e-09,1.026633201673357332e-08,1.095075415118247798e-08,1.163517628563138265e-08,1.231959842008028732e-08,1.300402055452919198e-08,1.368844268897809665e-08,1.437286482342700132e-08,1.505728695787590599e-08,1.574170909232481065e-08,1.642613122677371532e-08,1.711055336122261999e-08,1.779497549567152465e-08,1.847939763012042932e-08,1.916381976456933399e-08,1.984824189901823866e-08,2.053266403346714332e-08,2.121708616791604799e-08,2.190150830236495266e-08,2.258593043681385732e-08,2.327035257126276199e-08,2.395477470571166666e-08,2.463919684016057133e-08,2.532361897460947599e-08,2.600804110905838066e-08,2.669246324350728533e-08,2.737688537795618999e-08,2.806130751240509466e-08,2.874572964685399933e-08,2.943015178130290399e-08,3.011457391575180535e-08,3.079899605020070671e-08,3.148341818464960807e-08,3.216784031909850943e-08,3.285226245354741079e-08,3.353668458799631215e-08,3.422110672244521350e-08,3.490552885689411486e-08,3.558995099134301622e-08,3.627437312579191758e-08,3.695879526024081894e-08,3.764321739468972030e-08,3.832763952913862165e-08,3.901206166358752301e-08,3.969648379803642437e-08,4.038090593248532573e-08,4.106532806693422709e-08,4.174975020138312845e-08,4.243417233583202980e-08,4.311859447028093116e-08 +0.000000000000000000e+00,6.779135949571477815e-10,1.355827189914295563e-09,2.033740784871443448e-09,2.711654379828591539e-09,3.389567974785739631e-09,4.067481569742887723e-09,4.745395164700035814e-09,5.423308759657183906e-09,6.101222354614331998e-09,6.779135949571480089e-09,7.457049544528627354e-09,8.134963139485773791e-09,8.812876734442920228e-09,9.490790329400066666e-09,1.016870392435721310e-08,1.084661751931435954e-08,1.152453111427150598e-08,1.220244470922865241e-08,1.288035830418579885e-08,1.355827189914294529e-08,1.423618549410009173e-08,1.491409908905723816e-08,1.559201268401438460e-08,1.626992627897153104e-08,1.694783987392867748e-08,1.762575346888582391e-08,1.830366706384297035e-08,1.898158065880011679e-08,1.965949425375726323e-08,2.033740784871440966e-08,2.101532144367155610e-08,2.169323503862870254e-08,2.237114863358584897e-08,2.304906222854299541e-08,2.372697582350014185e-08,2.440488941845728829e-08,2.508280301341443472e-08,2.576071660837158116e-08,2.643863020332872760e-08,2.711654379828587404e-08,2.779445739324302047e-08,2.847237098820016691e-08,2.915028458315731335e-08,2.982819817811445648e-08,3.050611177307159960e-08,3.118402536802874273e-08,3.186193896298588586e-08,3.253985255794302899e-08,3.321776615290017212e-08,3.389567974785731525e-08,3.457359334281445838e-08,3.525150693777160150e-08,3.592942053272874463e-08,3.660733412768588776e-08,3.728524772264303089e-08,3.796316131760017402e-08,3.864107491255731715e-08,3.931898850751446028e-08,3.999690210247160340e-08,4.067481569742874653e-08,4.135272929238588966e-08,4.203064288734303279e-08,4.270855648230017592e-08 +0.000000000000000000e+00,-6.761585992356849467e-10,-1.352317198471369893e-09,-2.028475797707054840e-09,-2.704634396942739787e-09,-3.380792996178424733e-09,-4.056951595414109680e-09,-4.733110194649794627e-09,-5.409268793885479573e-09,-6.085427393121164520e-09,-6.761585992356849467e-09,-7.437744591592534413e-09,-8.113903190828219360e-09,-8.790061790063904307e-09,-9.466220389299589253e-09,-1.014237898853527420e-08,-1.081853758777095915e-08,-1.149469618700664409e-08,-1.217085478624232904e-08,-1.284701338547801399e-08,-1.352317198471369893e-08,-1.419933058394938388e-08,-1.487548918318506883e-08,-1.555164778242075377e-08,-1.622780638165643872e-08,-1.690396498089212367e-08,-1.758012358012780861e-08,-1.825628217936349356e-08,-1.893244077859917851e-08,-1.960859937783486345e-08,-2.028475797707054840e-08,-2.096091657630623335e-08,-2.163707517554191829e-08,-2.231323377477760324e-08,-2.298939237401328819e-08,-2.366555097324897313e-08,-2.434170957248465808e-08,-2.501786817172034303e-08,-2.569402677095602797e-08,-2.637018537019171292e-08,-2.704634396942739787e-08,-2.772250256866308281e-08,-2.839866116789876776e-08,-2.907481976713445271e-08,-2.975097836637013765e-08,-3.042713696560582260e-08,-3.110329556484150755e-08,-3.177945416407719249e-08,-3.245561276331287744e-08,-3.313177136254856239e-08,-3.380792996178424733e-08,-3.448408856101993228e-08,-3.516024716025561723e-08,-3.583640575949130217e-08,-3.651256435872698712e-08,-3.718872295796267207e-08,-3.786488155719835701e-08,-3.854104015643404196e-08,-3.921719875566972691e-08,-3.989335735490541185e-08,-4.056951595414109680e-08,-4.124567455337678175e-08,-4.192183315261246669e-08,-4.259799175184815164e-08 +0.000000000000000000e+00,-6.844221343073481115e-10,-1.368844268614696223e-09,-2.053266402922044438e-09,-2.737688537229392860e-09,-3.422110671536741281e-09,-4.106532805844089703e-09,-4.790954940151438125e-09,-5.475377074458786547e-09,-6.159799208766134968e-09,-6.844221343073483390e-09,-7.528643477380831812e-09,-8.213065611688181061e-09,-8.897487745995530309e-09,-9.581909880302879558e-09,-1.026633201461022881e-08,-1.095075414891757806e-08,-1.163517628322492731e-08,-1.231959841753227655e-08,-1.300402055183962580e-08,-1.368844268614697505e-08,-1.437286482045432430e-08,-1.505728695476167355e-08,-1.574170908906902114e-08,-1.642613122337636874e-08,-1.711055335768371633e-08,-1.779497549199106393e-08,-1.847939762629841152e-08,-1.916381976060575912e-08,-1.984824189491310671e-08,-2.053266402922045431e-08,-2.121708616352780190e-08,-2.190150829783514949e-08,-2.258593043214249709e-08,-2.327035256644984468e-08,-2.395477470075719228e-08,-2.463919683506453987e-08,-2.532361896937188747e-08,-2.600804110367923506e-08,-2.669246323798658266e-08,-2.737688537229393025e-08,-2.806130750660127785e-08,-2.874572964090862544e-08,-2.943015177521597303e-08,-3.011457390952332063e-08,-3.079899604383066822e-08,-3.148341817813801582e-08,-3.216784031244536341e-08,-3.285226244675271101e-08,-3.353668458106005860e-08,-3.422110671536740620e-08,-3.490552884967475379e-08,-3.558995098398210139e-08,-3.627437311828944898e-08,-3.695879525259679657e-08,-3.764321738690414417e-08,-3.832763952121149176e-08,-3.901206165551883936e-08,-3.969648378982618695e-08,-4.038090592413353455e-08,-4.106532805844088214e-08,-4.174975019274822974e-08,-4.243417232705557733e-08,-4.311859446136292493e-08 +0.000000000000000000e+00,-6.779135947948849306e-10,-1.355827189589769861e-09,-2.033740784384654688e-09,-2.711654379179539309e-09,-3.389567973974423929e-09,-4.067481568769308549e-09,-4.745395163564193583e-09,-5.423308758359078617e-09,-6.101222353153963651e-09,-6.779135947948848685e-09,-7.457049542743733719e-09,-8.134963137538618753e-09,-8.812876732333503787e-09,-9.490790327128388821e-09,-1.016870392192327386e-08,-1.084661751671815889e-08,-1.152453111151304392e-08,-1.220244470630792896e-08,-1.288035830110281399e-08,-1.355827189589769903e-08,-1.423618549069258406e-08,-1.491409908548746744e-08,-1.559201268028235082e-08,-1.626992627507723420e-08,-1.694783986987211758e-08,-1.762575346466700096e-08,-1.830366705946188434e-08,-1.898158065425676772e-08,-1.965949424905165110e-08,-2.033740784384653448e-08,-2.101532143864141786e-08,-2.169323503343630123e-08,-2.237114862823118461e-08,-2.304906222302606799e-08,-2.372697581782095137e-08,-2.440488941261583475e-08,-2.508280300741071813e-08,-2.576071660220560151e-08,-2.643863019700048489e-08,-2.711654379179536827e-08,-2.779445738659025165e-08,-2.847237098138513503e-08,-2.915028457618001841e-08,-2.982819817097490179e-08,-3.050611176576978517e-08,-3.118402536056466855e-08,-3.186193895535955193e-08,-3.253985255015443531e-08,-3.321776614494931869e-08,-3.389567973974420207e-08,-3.457359333453908545e-08,-3.525150692933396883e-08,-3.592942052412885221e-08,-3.660733411892373559e-08,-3.728524771371861897e-08,-3.796316130851350235e-08,-3.864107490330838573e-08,-3.931898849810326910e-08,-3.999690209289815248e-08,-4.067481568769303586e-08,-4.135272928248791924e-08,-4.203064287728280262e-08,-4.270855647207768600e-08 +0.000000000000000000e+00,6.729713412871431567e-10,1.345942682574286313e-09,2.018914023861429367e-09,2.691885365148572213e-09,3.364856706435715060e-09,4.037828047722857906e-09,4.710799389010001166e-09,5.383770730297144427e-09,6.056742071584287687e-09,6.729713412871430947e-09,7.402684754158574207e-09,8.075656095445717467e-09,8.748627436732860727e-09,9.421598778020003987e-09,1.009457011930714725e-08,1.076754146059429051e-08,1.144051280188143377e-08,1.211348414316857703e-08,1.278645548445572029e-08,1.345942682574286355e-08,1.413239816703000681e-08,1.480536950831715007e-08,1.547834084960429167e-08,1.615131219089143163e-08,1.682428353217857158e-08,1.749725487346571153e-08,1.817022621475285148e-08,1.884319755603999143e-08,1.951616889732713138e-08,2.018914023861427133e-08,2.086211157990141129e-08,2.153508292118855124e-08,2.220805426247569119e-08,2.288102560376283114e-08,2.355399694504997109e-08,2.422696828633711104e-08,2.489993962762425099e-08,2.557291096891139094e-08,2.624588231019853090e-08,2.691885365148567085e-08,2.759182499277281080e-08,2.826479633405995075e-08,2.893776767534709070e-08,2.961073901663423065e-08,3.028371035792137060e-08,3.095668169920851056e-08,3.162965304049565051e-08,3.230262438178279046e-08,3.297559572306993041e-08,3.364856706435707036e-08,3.432153840564421031e-08,3.499450974693135026e-08,3.566748108821849022e-08,3.634045242950563017e-08,3.701342377079277012e-08,3.768639511207991007e-08,3.835936645336705002e-08,3.903233779465418997e-08,3.970530913594132992e-08,4.037828047722846988e-08,4.105125181851560983e-08,4.172422315980274978e-08,4.239719450108988973e-08 +0.000000000000000000e+00,6.719993135812134073e-10,1.343998627162426815e-09,2.015997940743640325e-09,2.687997254324854043e-09,3.359996567906067761e-09,4.031995881487281478e-09,4.703995195068495196e-09,5.375994508649708913e-09,6.047993822230922631e-09,6.719993135812136348e-09,7.391992449393350066e-09,8.063991762974564610e-09,8.735991076555779155e-09,9.407990390136993700e-09,1.007998970371820824e-08,1.075198901729942279e-08,1.142398833088063733e-08,1.209598764446185188e-08,1.276798695804306642e-08,1.343998627162428097e-08,1.411198558520549551e-08,1.478398489878671006e-08,1.545598421236792626e-08,1.612798352594914246e-08,1.679998283953035865e-08,1.747198215311157485e-08,1.814398146669279105e-08,1.881598078027400725e-08,1.948798009385522345e-08,2.015997940743643965e-08,2.083197872101765585e-08,2.150397803459887205e-08,2.217597734818008825e-08,2.284797666176130445e-08,2.351997597534252065e-08,2.419197528892373684e-08,2.486397460250495304e-08,2.553597391608616924e-08,2.620797322966738544e-08,2.687997254324860164e-08,2.755197185682981784e-08,2.822397117041103404e-08,2.889597048399225024e-08,2.956796979757346644e-08,3.023996911115468264e-08,3.091196842473589884e-08,3.158396773831711503e-08,3.225596705189833123e-08,3.292796636547954743e-08,3.359996567906076363e-08,3.427196499264197983e-08,3.494396430622319603e-08,3.561596361980441223e-08,3.628796293338562843e-08,3.695996224696684463e-08,3.763196156054806083e-08,3.830396087412927703e-08,3.897596018771049322e-08,3.964795950129170942e-08,4.031995881487292562e-08,4.099195812845414182e-08,4.166395744203535802e-08,4.233595675561657422e-08 +0.000000000000000000e+00,6.549807149516082043e-10,1.309961429903216409e-09,1.964942144854824406e-09,2.619922859806432404e-09,3.274903574758040401e-09,3.929884289709648812e-09,4.584865004661257223e-09,5.239845719612865634e-09,5.894826434564474045e-09,6.549807149516082456e-09,7.204787864467690867e-09,7.859768579419299278e-09,8.514749294370908517e-09,9.169730009322517755e-09,9.824710724274126993e-09,1.047969143922573623e-08,1.113467215417734547e-08,1.178965286912895471e-08,1.244463358408056395e-08,1.309961429903217318e-08,1.375459501398378242e-08,1.440957572893539166e-08,1.506455644388700090e-08,1.571953715883860848e-08,1.637451787379021607e-08,1.702949858874182365e-08,1.768447930369343123e-08,1.833946001864503882e-08,1.899444073359664640e-08,1.964942144854825399e-08,2.030440216349986157e-08,2.095938287845146915e-08,2.161436359340307674e-08,2.226934430835468432e-08,2.292432502330629191e-08,2.357930573825789949e-08,2.423428645320950707e-08,2.488926716816111466e-08,2.554424788311272224e-08,2.619922859806432983e-08,2.685420931301593741e-08,2.750919002796754499e-08,2.816417074291915258e-08,2.881915145787076016e-08,2.947413217282236774e-08,3.012911288777397533e-08,3.078409360272558291e-08,3.143907431767719050e-08,3.209405503262879808e-08,3.274903574758040566e-08,3.340401646253201325e-08,3.405899717748362083e-08,3.471397789243522842e-08,3.536895860738683600e-08,3.602393932233844358e-08,3.667892003729005117e-08,3.733390075224165875e-08,3.798888146719326634e-08,3.864386218214487392e-08,3.929884289709648150e-08,3.995382361204808909e-08,4.060880432699969667e-08,4.126378504195130425e-08 +0.000000000000000000e+00,-6.729713411243685912e-10,-1.345942682248737182e-09,-2.018914023373105774e-09,-2.691885364497474365e-09,-3.364856705621842956e-09,-4.037828046746211547e-09,-4.710799387870579725e-09,-5.383770728994947903e-09,-6.056742070119316080e-09,-6.729713411243684258e-09,-7.402684752368052436e-09,-8.075656093492421440e-09,-8.748627434616790445e-09,-9.421598775741159450e-09,-1.009457011686552845e-08,-1.076754145798989746e-08,-1.144051279911426646e-08,-1.211348414023863547e-08,-1.278645548136300447e-08,-1.345942682248737348e-08,-1.413239816361174248e-08,-1.480536950473611149e-08,-1.547834084586047884e-08,-1.615131218698484619e-08,-1.682428352810921354e-08,-1.749725486923358089e-08,-1.817022621035794824e-08,-1.884319755148231559e-08,-1.951616889260668294e-08,-2.018914023373105029e-08,-2.086211157485541764e-08,-2.153508291597978499e-08,-2.220805425710415234e-08,-2.288102559822851969e-08,-2.355399693935288704e-08,-2.422696828047725439e-08,-2.489993962160162175e-08,-2.557291096272598910e-08,-2.624588230385035645e-08,-2.691885364497472380e-08,-2.759182498609909115e-08,-2.826479632722345850e-08,-2.893776766834782585e-08,-2.961073900947219320e-08,-3.028371035059656055e-08,-3.095668169172093121e-08,-3.162965303284530187e-08,-3.230262437396967253e-08,-3.297559571509404319e-08,-3.364856705621841384e-08,-3.432153839734278450e-08,-3.499450973846715516e-08,-3.566748107959152582e-08,-3.634045242071589648e-08,-3.701342376184026714e-08,-3.768639510296463780e-08,-3.835936644408900846e-08,-3.903233778521337912e-08,-3.970530912633774978e-08,-4.037828046746212044e-08,-4.105125180858649110e-08,-4.172422314971086175e-08,-4.239719449083523241e-08 +0.000000000000000000e+00,-6.719993134245891365e-10,-1.343998626849178273e-09,-2.015997940273767410e-09,-2.687997253698356546e-09,-3.359996567122945683e-09,-4.031995880547534819e-09,-4.703995193972123542e-09,-5.375994507396712265e-09,-6.047993820821300988e-09,-6.719993134245889711e-09,-7.391992447670478434e-09,-8.063991761095067984e-09,-8.735991074519657534e-09,-9.407990387944247084e-09,-1.007998970136883663e-08,-1.075198901479342618e-08,-1.142398832821801573e-08,-1.209598764164260528e-08,-1.276798695506719483e-08,-1.343998626849178438e-08,-1.411198558191637393e-08,-1.478398489534096348e-08,-1.545598420876555469e-08,-1.612798352219014589e-08,-1.679998283561473710e-08,-1.747198214903932830e-08,-1.814398146246391951e-08,-1.881598077588851071e-08,-1.948798008931310192e-08,-2.015997940273769312e-08,-2.083197871616228432e-08,-2.150397802958687553e-08,-2.217597734301146673e-08,-2.284797665643605794e-08,-2.351997596986064914e-08,-2.419197528328524035e-08,-2.486397459670983155e-08,-2.553597391013442276e-08,-2.620797322355901396e-08,-2.687997253698360516e-08,-2.755197185040819637e-08,-2.822397116383278757e-08,-2.889597047725737878e-08,-2.956796979068196998e-08,-3.023996910410656119e-08,-3.091196841753114908e-08,-3.158396773095573698e-08,-3.225596704438032487e-08,-3.292796635780491277e-08,-3.359996567122950067e-08,-3.427196498465408856e-08,-3.494396429807867646e-08,-3.561596361150326435e-08,-3.628796292492785225e-08,-3.695996223835244014e-08,-3.763196155177702804e-08,-3.830396086520161594e-08,-3.897596017862620383e-08,-3.964795949205079173e-08,-4.031995880547537962e-08,-4.099195811889996752e-08,-4.166395743232455541e-08,-4.233595674574914331e-08 +0.000000000000000000e+00,-6.549807147706742326e-10,-1.309961429541348465e-09,-1.964942144312022698e-09,-2.619922859082696930e-09,-3.274903573853371163e-09,-3.929884288624045396e-09,-4.584865003394719628e-09,-5.239845718165393861e-09,-5.894826432936068093e-09,-6.549807147706742326e-09,-7.204787862477416559e-09,-7.859768577248090791e-09,-8.514749292018764197e-09,-9.169730006789437602e-09,-9.824710721560111008e-09,-1.047969143633078441e-08,-1.113467215110145782e-08,-1.178965286587213122e-08,-1.244463358064280463e-08,-1.309961429541347803e-08,-1.375459501018415144e-08,-1.440957572495482485e-08,-1.506455643972549825e-08,-1.571953715449617166e-08,-1.637451786926684506e-08,-1.702949858403751847e-08,-1.768447929880819187e-08,-1.833946001357886528e-08,-1.899444072834953868e-08,-1.964942144312021209e-08,-2.030440215789088549e-08,-2.095938287266155890e-08,-2.161436358743223231e-08,-2.226934430220290571e-08,-2.292432501697357912e-08,-2.357930573174425252e-08,-2.423428644651492593e-08,-2.488926716128559933e-08,-2.554424787605627274e-08,-2.619922859082694614e-08,-2.685420930559761955e-08,-2.750919002036829295e-08,-2.816417073513896636e-08,-2.881915144990963976e-08,-2.947413216468031317e-08,-3.012911287945098988e-08,-3.078409359422166991e-08,-3.143907430899234993e-08,-3.209405502376302995e-08,-3.274903573853370998e-08,-3.340401645330439000e-08,-3.405899716807507002e-08,-3.471397788284575004e-08,-3.536895859761643007e-08,-3.602393931238711009e-08,-3.667892002715779011e-08,-3.733390074192847014e-08,-3.798888145669915016e-08,-3.864386217146983018e-08,-3.929884288624051020e-08,-3.995382360101119023e-08,-4.060880431578187025e-08,-4.126378503055255027e-08 +0.000000000000000000e+00,6.847086148235950895e-10,1.369417229647190179e-09,2.054125844470785372e-09,2.738834459294380772e-09,3.423543074117976172e-09,4.108251688941571571e-09,4.792960303765166557e-09,5.477668918588761544e-09,6.162377533412356530e-09,6.847086148235951516e-09,7.531794763059546502e-09,8.216503377883141488e-09,8.901211992706736474e-09,9.585920607530331460e-09,1.027062922235392645e-08,1.095533783717752143e-08,1.164004645200111642e-08,1.232475506682471141e-08,1.300946368164830639e-08,1.369417229647190138e-08,1.437888091129549636e-08,1.506358952611908970e-08,1.574829814094268137e-08,1.643300675576627305e-08,1.711771537058986473e-08,1.780242398541345641e-08,1.848713260023704808e-08,1.917184121506063976e-08,1.985654982988423144e-08,2.054125844470782311e-08,2.122596705953141479e-08,2.191067567435500647e-08,2.259538428917859815e-08,2.328009290400218982e-08,2.396480151882578150e-08,2.464951013364937318e-08,2.533421874847296486e-08,2.601892736329655653e-08,2.670363597812014821e-08,2.738834459294373989e-08,2.807305320776733157e-08,2.875776182259092324e-08,2.944247043741451492e-08,3.012717905223810660e-08,3.081188766706169828e-08,3.149659628188528995e-08,3.218130489670888163e-08,3.286601351153247331e-08,3.355072212635606499e-08,3.423543074117965666e-08,3.492013935600324834e-08,3.560484797082684002e-08,3.628955658565043170e-08,3.697426520047402337e-08,3.765897381529761505e-08,3.834368243012120673e-08,3.902839104494479841e-08,3.971309965976839008e-08,4.039780827459198176e-08,4.108251688941557344e-08,4.176722550423916512e-08,4.245193411906275679e-08,4.313664273388634847e-08 +0.000000000000000000e+00,8.593977460320911974e-20,1.718795492064182395e-19,2.578193238096273352e-19,3.437590984128364308e-19,4.296988730160455265e-19,5.156386476192546703e-19,6.015784222224638141e-19,6.875181968256729579e-19,7.734579714288821018e-19,8.593977460320912456e-19,9.453375206353003894e-19,1.031277295238509533e-18,1.117217069841718677e-18,1.203156844444927821e-18,1.289096619048136965e-18,1.375036393651346108e-18,1.460976168254555252e-18,1.546915942857764396e-18,1.632855717460973540e-18,1.718795492064182684e-18,1.804735266667391635e-18,1.890675041270600394e-18,1.976614815873809152e-18,2.062554590477017911e-18,2.148494365080226669e-18,2.234434139683435428e-18,2.320373914286644187e-18,2.406313688889852945e-18,2.492253463493061704e-18,2.578193238096270463e-18,2.664133012699479221e-18,2.750072787302687980e-18,2.836012561905896739e-18,2.921952336509105497e-18,3.007892111112314256e-18,3.093831885715523014e-18,3.179771660318731773e-18,3.265711434921940532e-18,3.351651209525149290e-18,3.437590984128358049e-18,3.523530758731566808e-18,3.609470533334775566e-18,3.695410307937984325e-18,3.781350082541193083e-18,3.867289857144401842e-18,3.953229631747610601e-18,4.039169406350819359e-18,4.125109180954028118e-18,4.211048955557236877e-18,4.296988730160445635e-18,4.382928504763654394e-18,4.468868279366863152e-18,4.554808053970071911e-18,4.640747828573280670e-18,4.726687603176489428e-18,4.812627377779698187e-18,4.898567152382906946e-18,4.984506926986115704e-18,5.070446701589324463e-18,5.156386476192533222e-18,5.242326250795741980e-18,5.328266025398950739e-18,5.414205800002159497e-18 +0.000000000000000000e+00,6.744393090441589155e-10,1.348878618088317831e-09,2.023317927132476747e-09,2.697757236176635662e-09,3.372196545220794578e-09,4.046635854264953493e-09,4.721075163309112409e-09,5.395514472353271324e-09,6.069953781397430240e-09,6.744393090441589155e-09,7.418832399485748071e-09,8.093271708529906986e-09,8.767711017574065902e-09,9.442150326618224817e-09,1.011658963566238373e-08,1.079102894470654265e-08,1.146546825375070156e-08,1.213990756279486048e-08,1.281434687183901939e-08,1.348878618088317831e-08,1.416322548992733723e-08,1.483766479897149614e-08,1.551210410801565340e-08,1.618654341705981066e-08,1.686098272610396792e-08,1.753542203514812519e-08,1.820986134419228245e-08,1.888430065323643971e-08,1.955873996228059697e-08,2.023317927132475423e-08,2.090761858036891149e-08,2.158205788941306875e-08,2.225649719845722601e-08,2.293093650750138327e-08,2.360537581654554054e-08,2.427981512558969780e-08,2.495425443463385506e-08,2.562869374367801232e-08,2.630313305272216958e-08,2.697757236176632684e-08,2.765201167081048410e-08,2.832645097985464136e-08,2.900089028889879863e-08,2.967532959794295589e-08,3.034976890698711315e-08,3.102420821603126710e-08,3.169864752507542105e-08,3.237308683411957500e-08,3.304752614316372896e-08,3.372196545220788291e-08,3.439640476125203686e-08,3.507084407029619081e-08,3.574528337934034477e-08,3.641972268838449872e-08,3.709416199742865267e-08,3.776860130647280662e-08,3.844304061551696058e-08,3.911747992456111453e-08,3.979191923360526848e-08,4.046635854264942243e-08,4.114079785169357639e-08,4.181523716073773034e-08,4.248967646978188429e-08 +0.000000000000000000e+00,6.468402707646076820e-10,1.293680541529215364e-09,1.940520812293823046e-09,2.587361083058430728e-09,3.234201353823038410e-09,3.881041624587646092e-09,4.527881895352253774e-09,5.174722166116861456e-09,5.821562436881469138e-09,6.468402707646076820e-09,7.115242978410684502e-09,7.762083249175292184e-09,8.408923519939899866e-09,9.055763790704507548e-09,9.702604061469115230e-09,1.034944433223372291e-08,1.099628460299833059e-08,1.164312487376293828e-08,1.228996514452754596e-08,1.293680541529215364e-08,1.358364568605676132e-08,1.423048595682136900e-08,1.487732622758597669e-08,1.552416649835058437e-08,1.617100676911519205e-08,1.681784703987979973e-08,1.746468731064440741e-08,1.811152758140901510e-08,1.875836785217362278e-08,1.940520812293823046e-08,2.005204839370283814e-08,2.069888866446744582e-08,2.134572893523205351e-08,2.199256920599666119e-08,2.263940947676126887e-08,2.328624974752587655e-08,2.393309001829048424e-08,2.457993028905509192e-08,2.522677055981969960e-08,2.587361083058430728e-08,2.652045110134891496e-08,2.716729137211352265e-08,2.781413164287813033e-08,2.846097191364273801e-08,2.910781218440734569e-08,2.975465245517195337e-08,3.040149272593655775e-08,3.104833299670116212e-08,3.169517326746576649e-08,3.234201353823037087e-08,3.298885380899497524e-08,3.363569407975957961e-08,3.428253435052418399e-08,3.492937462128878836e-08,3.557621489205339273e-08,3.622305516281799711e-08,3.686989543358260148e-08,3.751673570434720585e-08,3.816357597511181023e-08,3.881041624587641460e-08,3.945725651664101897e-08,4.010409678740562335e-08,4.075093705817022772e-08 +0.000000000000000000e+00,3.423184078837395828e-10,6.846368157674791657e-10,1.026955223651218800e-09,1.369273631534958538e-09,1.711592039418698276e-09,2.053910447302438014e-09,2.396228855186177752e-09,2.738547263069917490e-09,3.080865670953657228e-09,3.423184078837396966e-09,3.765502486721136290e-09,4.107820894604875201e-09,4.450139302488614112e-09,4.792457710372353022e-09,5.134776118256091933e-09,5.477094526139830844e-09,5.819412934023569755e-09,6.161731341907308666e-09,6.504049749791047576e-09,6.846368157674786487e-09,7.188686565558525398e-09,7.531004973442264309e-09,7.873323381326003219e-09,8.215641789209742130e-09,8.557960197093481041e-09,8.900278604977219952e-09,9.242597012860958862e-09,9.584915420744697773e-09,9.927233828628436684e-09,1.026955223651217559e-08,1.061187064439591451e-08,1.095418905227965342e-08,1.129650746016339233e-08,1.163882586804713124e-08,1.198114427593087015e-08,1.232346268381460906e-08,1.266578109169834797e-08,1.300809949958208688e-08,1.335041790746582579e-08,1.369273631534956470e-08,1.403505472323330361e-08,1.437737313111704252e-08,1.471969153900078143e-08,1.506200994688451869e-08,1.540432835476825760e-08,1.574664676265199651e-08,1.608896517053573542e-08,1.643128357841947433e-08,1.677360198630321324e-08,1.711592039418695216e-08,1.745823880207069107e-08,1.780055720995442998e-08,1.814287561783816889e-08,1.848519402572190780e-08,1.882751243360564671e-08,1.916983084148938562e-08,1.951214924937312453e-08,1.985446765725686344e-08,2.019678606514060235e-08,2.053910447302434126e-08,2.088142288090808017e-08,2.122374128879181908e-08,2.156605969667555800e-08 +0.000000000000000000e+00,9.879557137720063431e-20,1.975911427544012686e-19,2.963867141316018909e-19,3.951822855088024891e-19,4.939778568860030873e-19,5.927734282632036855e-19,6.915689996404042837e-19,7.903645710176048819e-19,8.891601423948053838e-19,9.879557137720059820e-19,1.086751285149206580e-18,1.185546856526407178e-18,1.284342427903607777e-18,1.383137999280808375e-18,1.481933570658008973e-18,1.580729142035209571e-18,1.679524713412410169e-18,1.778320284789610768e-18,1.877115856166811366e-18,1.975911427544011964e-18,2.074706998921212562e-18,2.173502570298413160e-18,2.272298141675613759e-18,2.371093713052814357e-18,2.469889284430014955e-18,2.568684855807215553e-18,2.667480427184416151e-18,2.766275998561616749e-18,2.865071569938817348e-18,2.963867141316017946e-18,3.062662712693218544e-18,3.161458284070419142e-18,3.260253855447619740e-18,3.359049426824820339e-18,3.457844998202020937e-18,3.556640569579221535e-18,3.655436140956422133e-18,3.754231712333622731e-18,3.853027283710823330e-18,3.951822855088023928e-18,4.050618426465224526e-18,4.149413997842425124e-18,4.248209569219625722e-18,4.347005140596826321e-18,4.445800711974026919e-18,4.544596283351227517e-18,4.643391854728428115e-18,4.742187426105628713e-18,4.840982997482829312e-18,4.939778568860029910e-18,5.038574140237230508e-18,5.137369711614431106e-18,5.236165282991631704e-18,5.334960854368832303e-18,5.433756425746032901e-18,5.532551997123233499e-18,5.631347568500434097e-18,5.730143139877634695e-18,5.828938711254835294e-18,5.927734282632035892e-18,6.026529854009236490e-18,6.125325425386437088e-18,6.224120996763637686e-18 +0.000000000000000000e+00,-6.847086146518051860e-10,-1.369417229303610372e-09,-2.054125843955415454e-09,-2.738834458607220330e-09,-3.423543073259025206e-09,-4.108251687910830082e-09,-4.792960302562634544e-09,-5.477668917214439006e-09,-6.162377531866243468e-09,-6.847086146518047930e-09,-7.531794761169852393e-09,-8.216503375821656855e-09,-8.901211990473461317e-09,-9.585920605125265779e-09,-1.027062921977707024e-08,-1.095533783442887470e-08,-1.164004644908067917e-08,-1.232475506373248363e-08,-1.300946367838428809e-08,-1.369417229303609255e-08,-1.437888090768789701e-08,-1.506358952233970148e-08,-1.574829813699150428e-08,-1.643300675164330709e-08,-1.711771536629510990e-08,-1.780242398094691271e-08,-1.848713259559871552e-08,-1.917184121025051832e-08,-1.985654982490232113e-08,-2.054125843955412394e-08,-2.122596705420592675e-08,-2.191067566885772955e-08,-2.259538428350953236e-08,-2.328009289816133517e-08,-2.396480151281313798e-08,-2.464951012746494079e-08,-2.533421874211674359e-08,-2.601892735676854640e-08,-2.670363597142034921e-08,-2.738834458607215202e-08,-2.807305320072395483e-08,-2.875776181537575763e-08,-2.944247043002756044e-08,-3.012717904467936325e-08,-3.081188765933116606e-08,-3.149659627398296886e-08,-3.218130488863477167e-08,-3.286601350328657448e-08,-3.355072211793837729e-08,-3.423543073259018010e-08,-3.492013934724198290e-08,-3.560484796189378571e-08,-3.628955657654558852e-08,-3.697426519119739133e-08,-3.765897380584919413e-08,-3.834368242050099694e-08,-3.902839103515279975e-08,-3.971309964980460256e-08,-4.039780826445640537e-08,-4.108251687910820817e-08,-4.176722549376001098e-08,-4.245193410841181379e-08,-4.313664272306361660e-08 +0.000000000000000000e+00,-3.423184077119009790e-10,-6.846368154238019580e-10,-1.026955223135702885e-09,-1.369273630847603709e-09,-1.711592038559504533e-09,-2.053910446271405357e-09,-2.396228853983306181e-09,-2.738547261695207005e-09,-3.080865669407107829e-09,-3.423184077119008653e-09,-3.765502484830909477e-09,-4.107820892542809887e-09,-4.450139300254710297e-09,-4.792457707966610707e-09,-5.134776115678511118e-09,-5.477094523390411528e-09,-5.819412931102311938e-09,-6.161731338814212349e-09,-6.504049746526112759e-09,-6.846368154238013169e-09,-7.188686561949913580e-09,-7.531004969661813990e-09,-7.873323377373714400e-09,-8.215641785085614811e-09,-8.557960192797515221e-09,-8.900278600509415631e-09,-9.242597008221316041e-09,-9.584915415933216452e-09,-9.927233823645116862e-09,-1.026955223135701727e-08,-1.061187063906891768e-08,-1.095418904678081809e-08,-1.129650745449271850e-08,-1.163882586220461891e-08,-1.198114426991651932e-08,-1.232346267762841973e-08,-1.266578108534032014e-08,-1.300809949305222055e-08,-1.335041790076412097e-08,-1.369273630847602138e-08,-1.403505471618792179e-08,-1.437737312389982220e-08,-1.471969153161172261e-08,-1.506200993932362467e-08,-1.540432834703552839e-08,-1.574664675474743211e-08,-1.608896516245933583e-08,-1.643128357017123955e-08,-1.677360197788314327e-08,-1.711592038559504699e-08,-1.745823879330695070e-08,-1.780055720101885442e-08,-1.814287560873075814e-08,-1.848519401644266186e-08,-1.882751242415456558e-08,-1.916983083186646930e-08,-1.951214923957837302e-08,-1.985446764729027674e-08,-2.019678605500218046e-08,-2.053910446271408418e-08,-2.088142287042598789e-08,-2.122374127813789161e-08,-2.156605968584979533e-08 +0.000000000000000000e+00,-6.744393088763971747e-10,-1.348878617752794349e-09,-2.023317926629191524e-09,-2.697757235505588699e-09,-3.372196544381985874e-09,-4.046635853258383048e-09,-4.721075162134780637e-09,-5.395514471011178225e-09,-6.069953779887575813e-09,-6.744393088763973401e-09,-7.418832397640370990e-09,-8.093271706516767751e-09,-8.767711015393164512e-09,-9.442150324269561273e-09,-1.011658963314595803e-08,-1.079102894202235480e-08,-1.146546825089875156e-08,-1.213990755977514832e-08,-1.281434686865154508e-08,-1.348878617752794184e-08,-1.416322548640433860e-08,-1.483766479528073536e-08,-1.551210410415713378e-08,-1.618654341303353219e-08,-1.686098272190993061e-08,-1.753542203078632902e-08,-1.820986133966272744e-08,-1.888430064853912585e-08,-1.955873995741552427e-08,-2.023317926629192269e-08,-2.090761857516832110e-08,-2.158205788404471952e-08,-2.225649719292111793e-08,-2.293093650179751635e-08,-2.360537581067391476e-08,-2.427981511955031318e-08,-2.495425442842671159e-08,-2.562869373730311001e-08,-2.630313304617950842e-08,-2.697757235505590684e-08,-2.765201166393230526e-08,-2.832645097280870367e-08,-2.900089028168510209e-08,-2.967532959056150050e-08,-3.034976889943789892e-08,-3.102420820831429402e-08,-3.169864751719068913e-08,-3.237308682606708424e-08,-3.304752613494347934e-08,-3.372196544381987445e-08,-3.439640475269626956e-08,-3.507084406157266467e-08,-3.574528337044905977e-08,-3.641972267932545488e-08,-3.709416198820184999e-08,-3.776860129707824509e-08,-3.844304060595464020e-08,-3.911747991483103531e-08,-3.979191922370743041e-08,-4.046635853258382552e-08,-4.114079784146022063e-08,-4.181523715033661573e-08,-4.248967645921301084e-08 +0.000000000000000000e+00,-6.468402705671135545e-10,-1.293680541134227109e-09,-1.940520811701340870e-09,-2.587361082268454632e-09,-3.234201352835568393e-09,-3.881041623402681741e-09,-4.527881893969795088e-09,-5.174722164536908436e-09,-5.821562435104021784e-09,-6.468402705671135131e-09,-7.115242976238248479e-09,-7.762083246805361827e-09,-8.408923517372475174e-09,-9.055763787939588522e-09,-9.702604058506701870e-09,-1.034944432907381522e-08,-1.099628459964092857e-08,-1.164312487020804191e-08,-1.228996514077515526e-08,-1.293680541134226861e-08,-1.358364568190938196e-08,-1.423048595247649530e-08,-1.487732622304360865e-08,-1.552416649361072034e-08,-1.617100676417783369e-08,-1.681784703474494704e-08,-1.746468730531206039e-08,-1.811152757587917374e-08,-1.875836784644628708e-08,-1.940520811701340043e-08,-2.005204838758051378e-08,-2.069888865814762713e-08,-2.134572892871474047e-08,-2.199256919928185382e-08,-2.263940946984896717e-08,-2.328624974041608052e-08,-2.393309001098319386e-08,-2.457993028155030721e-08,-2.522677055211742056e-08,-2.587361082268453391e-08,-2.652045109325164726e-08,-2.716729136381876060e-08,-2.781413163438587395e-08,-2.846097190495298730e-08,-2.910781217552010065e-08,-2.975465244608721399e-08,-3.040149271665432734e-08,-3.104833298722144069e-08,-3.169517325778855404e-08,-3.234201352835566739e-08,-3.298885379892278073e-08,-3.363569406948989408e-08,-3.428253434005700743e-08,-3.492937461062412078e-08,-3.557621488119123412e-08,-3.622305515175834747e-08,-3.686989542232546082e-08,-3.751673569289257417e-08,-3.816357596345968751e-08,-3.881041623402680086e-08,-3.945725650459391421e-08,-4.010409677516102756e-08,-4.075093704572814091e-08 +0.000000000000000000e+00,1.196626740579218322e-09,2.393253481158436644e-09,3.589880221737654758e-09,4.786506962316872460e-09,5.983133702896090161e-09,7.179760443475307863e-09,8.376387184054524737e-09,9.573013924633741611e-09,1.076964066521295849e-08,1.196626740579217536e-08,1.316289414637139223e-08,1.435952088695060911e-08,1.555614762752982598e-08,1.675277436810904286e-08,1.794940110868825973e-08,1.914602784926747660e-08,2.034265458984669348e-08,2.153928133042591035e-08,2.273590807100512723e-08,2.393253481158434410e-08,2.512916155216356098e-08,2.632578829274277785e-08,2.752241503332199472e-08,2.871904177390121160e-08,2.991566851448042847e-08,3.111229525505964535e-08,3.230892199563886222e-08,3.350554873621807909e-08,3.470217547679729597e-08,3.589880221737651284e-08,3.709542895795572972e-08,3.829205569853494659e-08,3.948868243911416347e-08,4.068530917969338034e-08,4.188193592027259721e-08,4.307856266085181409e-08,4.427518940143103096e-08,4.547181614201024784e-08,4.666844288258946471e-08,4.786506962316868158e-08,4.906169636374789846e-08,5.025832310432711533e-08,5.145494984490633221e-08,5.265157658548554908e-08,5.384820332606476596e-08,5.504483006664398283e-08,5.624145680722319970e-08,5.743808354780241658e-08,5.863471028838163345e-08,5.983133702896085694e-08,6.102796376954008044e-08,6.222459051011930393e-08,6.342121725069852742e-08,6.461784399127775091e-08,6.581447073185697440e-08,6.701109747243619789e-08,6.820772421301542139e-08,6.940435095359464488e-08,7.060097769417386837e-08,7.179760443475309186e-08,7.299423117533231535e-08,7.419085791591153884e-08,7.538748465649076234e-08 +0.000000000000000000e+00,8.547593212875909169e-10,1.709518642575181834e-09,2.564277963862772751e-09,3.419037285150363668e-09,4.273796606437954585e-09,5.128555927725545502e-09,5.983315249013136418e-09,6.838074570300727335e-09,7.692833891588317425e-09,8.547593212875907515e-09,9.402352534163497605e-09,1.025711185545108769e-08,1.111187117673867778e-08,1.196663049802626787e-08,1.282138981931385796e-08,1.367614914060144805e-08,1.453090846188903814e-08,1.538566778317662823e-08,1.624042710446421832e-08,1.709518642575180841e-08,1.794994574703939850e-08,1.880470506832698859e-08,1.965946438961457868e-08,2.051422371090216877e-08,2.136898303218975886e-08,2.222374235347734895e-08,2.307850167476493904e-08,2.393326099605252913e-08,2.478802031734011922e-08,2.564277963862770931e-08,2.649753895991529940e-08,2.735229828120288949e-08,2.820705760249047958e-08,2.906181692377806967e-08,2.991657624506566307e-08,3.077133556635325647e-08,3.162609488764084986e-08,3.248085420892844326e-08,3.333561353021603666e-08,3.419037285150363006e-08,3.504513217279122346e-08,3.589989149407881686e-08,3.675465081536641026e-08,3.760941013665400365e-08,3.846416945794159705e-08,3.931892877922919045e-08,4.017368810051678385e-08,4.102844742180437725e-08,4.188320674309197065e-08,4.273796606437956404e-08,4.359272538566715744e-08,4.444748470695475084e-08,4.530224402824234424e-08,4.615700334952993764e-08,4.701176267081753104e-08,4.786652199210512444e-08,4.872128131339271783e-08,4.957604063468031123e-08,5.043079995596790463e-08,5.128555927725549803e-08,5.214031859854309143e-08,5.299507791983068483e-08,5.384983724111827822e-08 +0.000000000000000000e+00,-2.182310253836509998e-20,-4.364620507673019996e-20,-6.546930761509530595e-20,-8.729241015346041195e-20,-1.091155126918255179e-19,-1.309386152301906119e-19,-1.527617177685557059e-19,-1.745848203069207998e-19,-1.964079228452858938e-19,-2.182310253836509877e-19,-2.400541279220160817e-19,-2.618772304603811757e-19,-2.837003329987462696e-19,-3.055234355371113636e-19,-3.273465380754764575e-19,-3.491696406138415515e-19,-3.709927431522066455e-19,-3.928158456905717394e-19,-4.146389482289368334e-19,-4.364620507673018792e-19,-4.582851533056668769e-19,-4.801082558440318745e-19,-5.019313583823968722e-19,-5.237544609207618698e-19,-5.455775634591268675e-19,-5.674006659974918652e-19,-5.892237685358568628e-19,-6.110468710742218605e-19,-6.328699736125868582e-19,-6.546930761509518558e-19,-6.765161786893168535e-19,-6.983392812276818511e-19,-7.201623837660468488e-19,-7.419854863044118465e-19,-7.638085888427768441e-19,-7.856316913811418418e-19,-8.074547939195068395e-19,-8.292778964578718371e-19,-8.511009989962368348e-19,-8.729241015346018324e-19,-8.947472040729668301e-19,-9.165703066113318278e-19,-9.383934091496968254e-19,-9.602165116880618231e-19,-9.820396142264268208e-19,-1.003862716764791818e-18,-1.025685819303156816e-18,-1.047508921841521814e-18,-1.069332024379886811e-18,-1.091155126918251809e-18,-1.112978229456616807e-18,-1.134801331994981804e-18,-1.156624434533346802e-18,-1.178447537071711800e-18,-1.200270639610076797e-18,-1.222093742148441795e-18,-1.243916844686806793e-18,-1.265739947225171790e-18,-1.287563049763536788e-18,-1.309386152301901786e-18,-1.331209254840266783e-18,-1.353032357378631781e-18,-1.374855459916996779e-18 +0.000000000000000000e+00,1.459470214035543753e-09,2.918940428071087506e-09,4.378410642106631259e-09,5.837880856142175012e-09,7.297351070177718766e-09,8.756821284213262519e-09,1.021629149824880627e-08,1.167576171228435002e-08,1.313523192631989378e-08,1.459470214035543753e-08,1.605417235439098294e-08,1.751364256842652835e-08,1.897311278246207375e-08,2.043258299649761916e-08,2.189205321053316457e-08,2.335152342456870998e-08,2.481099363860425538e-08,2.627046385263980079e-08,2.772993406667534620e-08,2.918940428071089161e-08,3.064887449474643701e-08,3.210834470878197911e-08,3.356781492281752121e-08,3.502728513685306331e-08,3.648675535088860541e-08,3.794622556492414751e-08,3.940569577895968961e-08,4.086516599299523170e-08,4.232463620703077380e-08,4.378410642106631590e-08,4.524357663510185800e-08,4.670304684913740010e-08,4.816251706317294220e-08,4.962198727720848430e-08,5.108145749124402640e-08,5.254092770527956849e-08,5.400039791931511059e-08,5.545986813335065269e-08,5.691933834738619479e-08,5.837880856142173689e-08,5.983827877545727237e-08,6.129774898949280785e-08,6.275721920352834333e-08,6.421668941756387881e-08,6.567615963159941430e-08,6.713562984563494978e-08,6.859510005967048526e-08,7.005457027370602074e-08,7.151404048774155622e-08,7.297351070177709170e-08,7.443298091581262718e-08,7.589245112984816267e-08,7.735192134388369815e-08,7.881139155791923363e-08,8.027086177195476911e-08,8.173033198599030459e-08,8.318980220002584007e-08,8.464927241406137555e-08,8.610874262809691103e-08,8.756821284213244652e-08,8.902768305616798200e-08,9.048715327020351748e-08,9.194662348423905296e-08 +0.000000000000000000e+00,9.304904927168889602e-10,1.860980985433777920e-09,2.791471478150666984e-09,3.721961970867556255e-09,4.652452463584445111e-09,5.582942956301333968e-09,6.513433449018222825e-09,7.443923941735111682e-09,8.374414434452000539e-09,9.304904927168890223e-09,1.023539541988577991e-08,1.116588591260266959e-08,1.209637640531955927e-08,1.302686689803644896e-08,1.395735739075333864e-08,1.488784788347022833e-08,1.581833837618711636e-08,1.674882886890400439e-08,1.767931936162089242e-08,1.860980985433778045e-08,1.954030034705466848e-08,2.047079083977155650e-08,2.140128133248844453e-08,2.233177182520533256e-08,2.326226231792222059e-08,2.419275281063910862e-08,2.512324330335599665e-08,2.605373379607288468e-08,2.698422428878977271e-08,2.791471478150666074e-08,2.884520527422354877e-08,2.977569576694043680e-08,3.070618625965732483e-08,3.163667675237421286e-08,3.256716724509110089e-08,3.349765773780798892e-08,3.442814823052487695e-08,3.535863872324176498e-08,3.628912921595865301e-08,3.721961970867554104e-08,3.815011020139242907e-08,3.908060069410931710e-08,4.001109118682620513e-08,4.094158167954309316e-08,4.187207217225998119e-08,4.280256266497686922e-08,4.373305315769375725e-08,4.466354365041064528e-08,4.559403414312753331e-08,4.652452463584442134e-08,4.745501512856130937e-08,4.838550562127819739e-08,4.931599611399508542e-08,5.024648660671197345e-08,5.117697709942886148e-08,5.210746759214574951e-08,5.303795808486263754e-08,5.396844857757952557e-08,5.489893907029641360e-08,5.582942956301330163e-08,5.675992005573018966e-08,5.769041054844707769e-08,5.862090104116396572e-08 +0.000000000000000000e+00,9.823746187821063062e-10,1.964749237564212612e-09,2.947123856346318712e-09,3.929498475128424398e-09,4.911873093910530084e-09,5.894247712692635769e-09,6.876622331474741455e-09,7.858996950256847141e-09,8.841371569038952827e-09,9.823746187821058513e-09,1.080612080660316420e-08,1.178849542538526988e-08,1.277087004416737557e-08,1.375324466294948126e-08,1.473561928173158694e-08,1.571799390051369097e-08,1.670036851929579501e-08,1.768274313807789904e-08,1.866511775686000307e-08,1.964749237564210710e-08,2.062986699442421113e-08,2.161224161320631516e-08,2.259461623198841919e-08,2.357699085077052323e-08,2.455936546955262726e-08,2.554174008833473129e-08,2.652411470711683532e-08,2.750648932589893935e-08,2.848886394468104338e-08,2.947123856346314741e-08,3.045361318224525475e-08,3.143598780102736209e-08,3.241836241980946943e-08,3.340073703859157678e-08,3.438311165737368412e-08,3.536548627615579146e-08,3.634786089493789880e-08,3.733023551372000614e-08,3.831261013250211348e-08,3.929498475128422082e-08,4.027735937006632816e-08,4.125973398884843550e-08,4.224210860763054284e-08,4.322448322641265018e-08,4.420685784519475752e-08,4.518923246397686486e-08,4.617160708275897220e-08,4.715398170154107954e-08,4.813635632032318688e-08,4.911873093910529422e-08,5.010110555788740156e-08,5.108348017666950890e-08,5.206585479545161624e-08,5.304822941423372358e-08,5.403060403301583092e-08,5.501297865179793826e-08,5.599535327058004560e-08,5.697772788936215294e-08,5.796010250814426028e-08,5.894247712692636762e-08,5.992485174570847496e-08,6.090722636449058892e-08,6.188960098327270288e-08 +0.000000000000000000e+00,5.980349856430007103e-10,1.196069971286001421e-09,1.794104956929002234e-09,2.392139942572003255e-09,2.990174928215004275e-09,3.588209913858005296e-09,4.186244899501006316e-09,4.784279885144007337e-09,5.382314870787008357e-09,5.980349856430009378e-09,6.578384842073010398e-09,7.176419827716011419e-09,7.774454813359013267e-09,8.372489799002014287e-09,8.970524784645015308e-09,9.568559770288016328e-09,1.016659475593101735e-08,1.076462974157401837e-08,1.136266472721701939e-08,1.196069971286002041e-08,1.255873469850302143e-08,1.315676968414602245e-08,1.375480466978902347e-08,1.435283965543202449e-08,1.495087464107502551e-08,1.554890962671802653e-08,1.614694461236102755e-08,1.674497959800402857e-08,1.734301458364702959e-08,1.794104956929003062e-08,1.853908455493303164e-08,1.913711954057603266e-08,1.973515452621903368e-08,2.033318951186203470e-08,2.093122449750503572e-08,2.152925948314803674e-08,2.212729446879103776e-08,2.272532945443403878e-08,2.332336444007703980e-08,2.392139942572004082e-08,2.451943441136304184e-08,2.511746939700604286e-08,2.571550438264904388e-08,2.631353936829204490e-08,2.691157435393504592e-08,2.750960933957804694e-08,2.810764432522104796e-08,2.870567931086404898e-08,2.930371429650705000e-08,2.990174928215005103e-08,3.049978426779305205e-08,3.109781925343605307e-08,3.169585423907905409e-08,3.229388922472205511e-08,3.289192421036505613e-08,3.348995919600805715e-08,3.408799418165105817e-08,3.468602916729405919e-08,3.528406415293706021e-08,3.588209913858006123e-08,3.648013412422306225e-08,3.707816910986606327e-08,3.767620409550906429e-08 +0.000000000000000000e+00,-1.838662331543122782e-20,-3.677324663086245563e-20,-5.515986994629368947e-20,-7.354649326172492330e-20,-9.193311657715615714e-20,-1.103197398925873789e-19,-1.287063632080186007e-19,-1.470929865234498225e-19,-1.654796098388810443e-19,-1.838662331543122661e-19,-2.022528564697434879e-19,-2.206394797851747097e-19,-2.390261031006059315e-19,-2.574127264160371533e-19,-2.757993497314683751e-19,-2.941859730468995969e-19,-3.125725963623308187e-19,-3.309592196777620405e-19,-3.493458429931932623e-19,-3.677324663086244841e-19,-3.861190896240557059e-19,-4.045057129394869277e-19,-4.228923362549181495e-19,-4.412789595703493231e-19,-4.596655828857804968e-19,-4.780522062012116704e-19,-4.964388295166428441e-19,-5.148254528320740177e-19,-5.332120761475051914e-19,-5.515986994629363650e-19,-5.699853227783675387e-19,-5.883719460937987123e-19,-6.067585694092298860e-19,-6.251451927246610596e-19,-6.435318160400922333e-19,-6.619184393555234069e-19,-6.803050626709545806e-19,-6.986916859863857542e-19,-7.170783093018169279e-19,-7.354649326172481015e-19,-7.538515559326792752e-19,-7.722381792481104488e-19,-7.906248025635416225e-19,-8.090114258789727961e-19,-8.273980491944039698e-19,-8.457846725098351434e-19,-8.641712958252663171e-19,-8.825579191406974907e-19,-9.009445424561285681e-19,-9.193311657715596454e-19,-9.377177890869907228e-19,-9.561044124024218001e-19,-9.744910357178528775e-19,-9.928776590332839549e-19,-1.011264282348715032e-18,-1.029650905664146110e-18,-1.048037528979577187e-18,-1.066424152295008264e-18,-1.084810775610439342e-18,-1.103197398925870419e-18,-1.121584022241301496e-18,-1.139970645556732574e-18,-1.158357268872163651e-18 +0.000000000000000000e+00,-1.196626740622695555e-09,-2.393253481245391110e-09,-3.589880221868086665e-09,-4.786506962490782221e-09,-5.983133703113477362e-09,-7.179760443736172504e-09,-8.376387184358867645e-09,-9.573013924981562787e-09,-1.076964066560425793e-08,-1.196626740622695307e-08,-1.316289414684964821e-08,-1.435952088747234335e-08,-1.555614762809503849e-08,-1.675277436871773529e-08,-1.794940110934043209e-08,-1.914602784996312888e-08,-2.034265459058582568e-08,-2.153928133120852247e-08,-2.273590807183121927e-08,-2.393253481245391607e-08,-2.512916155307661286e-08,-2.632578829369930966e-08,-2.752241503432200645e-08,-2.871904177494470325e-08,-2.991566851556739674e-08,-3.111229525619009022e-08,-3.230892199681278371e-08,-3.350554873743547720e-08,-3.470217547805817069e-08,-3.589880221868086417e-08,-3.709542895930355766e-08,-3.829205569992625115e-08,-3.948868244054894463e-08,-4.068530918117163812e-08,-4.188193592179433161e-08,-4.307856266241702510e-08,-4.427518940303971858e-08,-4.547181614366241207e-08,-4.666844288428510556e-08,-4.786506962490779904e-08,-4.906169636553049253e-08,-5.025832310615318602e-08,-5.145494984677587951e-08,-5.265157658739857299e-08,-5.384820332802126648e-08,-5.504483006864395997e-08,-5.624145680926665345e-08,-5.743808354988934694e-08,-5.863471029051204043e-08,-5.983133703113474053e-08,-6.102796377175744064e-08,-6.222459051238014074e-08,-6.342121725300284085e-08,-6.461784399362554095e-08,-6.581447073424824106e-08,-6.701109747487094116e-08,-6.820772421549364127e-08,-6.940435095611634137e-08,-7.060097769673904148e-08,-7.179760443736174158e-08,-7.299423117798444168e-08,-7.419085791860714179e-08,-7.538748465922984189e-08 +0.000000000000000000e+00,-8.547593212888561931e-10,-1.709518642577712386e-09,-2.564277963866568683e-09,-3.419037285155425186e-09,-4.273796606444281689e-09,-5.128555927733138192e-09,-5.983315249021994696e-09,-6.838074570310851199e-09,-7.692833891599707702e-09,-8.547593212888563378e-09,-9.402352534177419054e-09,-1.025711185546627473e-08,-1.111187117675513041e-08,-1.196663049804398608e-08,-1.282138981933284176e-08,-1.367614914062169743e-08,-1.453090846191055311e-08,-1.538566778319940879e-08,-1.624042710448826281e-08,-1.709518642577711683e-08,-1.794994574706597085e-08,-1.880470506835482487e-08,-1.965946438964367890e-08,-2.051422371093253292e-08,-2.136898303222138694e-08,-2.222374235351024096e-08,-2.307850167479909498e-08,-2.393326099608794900e-08,-2.478802031737680303e-08,-2.564277963866565705e-08,-2.649753895995451107e-08,-2.735229828124336509e-08,-2.820705760253221911e-08,-2.906181692382107313e-08,-2.991657624510992716e-08,-3.077133556639878449e-08,-3.162609488768764182e-08,-3.248085420897649915e-08,-3.333561353026535648e-08,-3.419037285155421381e-08,-3.504513217284307114e-08,-3.589989149413192847e-08,-3.675465081542078580e-08,-3.760941013670964313e-08,-3.846416945799850046e-08,-3.931892877928735779e-08,-4.017368810057621512e-08,-4.102844742186507245e-08,-4.188320674315392978e-08,-4.273796606444278711e-08,-4.359272538573164444e-08,-4.444748470702050177e-08,-4.530224402830935910e-08,-4.615700334959821643e-08,-4.701176267088707377e-08,-4.786652199217593110e-08,-4.872128131346478843e-08,-4.957604063475364576e-08,-5.043079995604250309e-08,-5.128555927733136042e-08,-5.214031859862021775e-08,-5.299507791990907508e-08,-5.384983724119793241e-08 +0.000000000000000000e+00,-5.980349856865867179e-10,-1.196069971373173436e-09,-1.794104957059760050e-09,-2.392139942746346458e-09,-2.990174928432932866e-09,-3.588209914119519274e-09,-4.186244899806106095e-09,-4.784279885492692916e-09,-5.382314871179279738e-09,-5.980349856865866559e-09,-6.578384842552453380e-09,-7.176419828239040202e-09,-7.774454813925627023e-09,-8.372489799612213844e-09,-8.970524785298800666e-09,-9.568559770985387487e-09,-1.016659475667197431e-08,-1.076462974235856113e-08,-1.136266472804514795e-08,-1.196069971373173477e-08,-1.255873469941832159e-08,-1.315676968510490842e-08,-1.375480467079149524e-08,-1.435283965647808206e-08,-1.495087464216466722e-08,-1.554890962785125074e-08,-1.614694461353783425e-08,-1.674497959922441776e-08,-1.734301458491100128e-08,-1.794104957059758479e-08,-1.853908455628416830e-08,-1.913711954197075181e-08,-1.973515452765733533e-08,-2.033318951334391884e-08,-2.093122449903050235e-08,-2.152925948471708586e-08,-2.212729447040366938e-08,-2.272532945609025289e-08,-2.332336444177683640e-08,-2.392139942746341991e-08,-2.451943441315000343e-08,-2.511746939883658694e-08,-2.571550438452317045e-08,-2.631353937020975396e-08,-2.691157435589633748e-08,-2.750960934158292099e-08,-2.810764432726950450e-08,-2.870567931295608801e-08,-2.930371429864267153e-08,-2.990174928432925504e-08,-3.049978427001583855e-08,-3.109781925570242207e-08,-3.169585424138900558e-08,-3.229388922707558909e-08,-3.289192421276217260e-08,-3.348995919844875612e-08,-3.408799418413533963e-08,-3.468602916982192314e-08,-3.528406415550850665e-08,-3.588209914119509017e-08,-3.648013412688167368e-08,-3.707816911256825719e-08,-3.767620409825484070e-08 +0.000000000000000000e+00,-1.459470214072247618e-09,-2.918940428144495236e-09,-4.378410642216743061e-09,-5.837880856288991299e-09,-7.297351070361239538e-09,-8.756821284433487776e-09,-1.021629149850573684e-08,-1.167576171257798591e-08,-1.313523192665023497e-08,-1.459470214072248404e-08,-1.605417235479473310e-08,-1.751364256886698217e-08,-1.897311278293923124e-08,-2.043258299701148030e-08,-2.189205321108372937e-08,-2.335152342515597843e-08,-2.481099363922822750e-08,-2.627046385330047656e-08,-2.772993406737272563e-08,-2.918940428144497469e-08,-3.064887449551722376e-08,-3.210834470958947283e-08,-3.356781492366172189e-08,-3.502728513773397096e-08,-3.648675535180622002e-08,-3.794622556587846909e-08,-3.940569577995071815e-08,-4.086516599402296722e-08,-4.232463620809521629e-08,-4.378410642216746535e-08,-4.524357663623971442e-08,-4.670304685031196348e-08,-4.816251706438421255e-08,-4.962198727845646161e-08,-5.108145749252871068e-08,-5.254092770660095974e-08,-5.400039792067320881e-08,-5.545986813474545788e-08,-5.691933834881770694e-08,-5.837880856288995601e-08,-5.983827877696221169e-08,-6.129774899103446076e-08,-6.275721920510670982e-08,-6.421668941917895889e-08,-6.567615963325120795e-08,-6.713562984732345702e-08,-6.859510006139570608e-08,-7.005457027546795515e-08,-7.151404048954020421e-08,-7.297351070361245328e-08,-7.443298091768470235e-08,-7.589245113175695141e-08,-7.735192134582920048e-08,-7.881139155990144954e-08,-8.027086177397369861e-08,-8.173033198804594767e-08,-8.318980220211819674e-08,-8.464927241619044581e-08,-8.610874263026269487e-08,-8.756821284433494394e-08,-8.902768305840719300e-08,-9.048715327247944207e-08,-9.194662348655169113e-08 +0.000000000000000000e+00,-9.304904927390943136e-10,-1.860980985478188627e-09,-2.791471478217282734e-09,-3.721961970956376841e-09,-4.652452463695470948e-09,-5.582942956434565468e-09,-6.513433449173659988e-09,-7.443923941912754509e-09,-8.374414434651849029e-09,-9.304904927390943549e-09,-1.023539542013003807e-08,-1.116588591286913259e-08,-1.209637640560822711e-08,-1.302686689834732163e-08,-1.395735739108641615e-08,-1.488784788382551067e-08,-1.581833837656460519e-08,-1.674882886930369806e-08,-1.767931936204279092e-08,-1.860980985478188379e-08,-1.954030034752097666e-08,-2.047079084026006952e-08,-2.140128133299916239e-08,-2.233177182573825525e-08,-2.326226231847734812e-08,-2.419275281121644099e-08,-2.512324330395553385e-08,-2.605373379669462672e-08,-2.698422428943371958e-08,-2.791471478217281245e-08,-2.884520527491190532e-08,-2.977569576765099818e-08,-3.070618626039008774e-08,-3.163667675312917730e-08,-3.256716724586826685e-08,-3.349765773860735641e-08,-3.442814823134644597e-08,-3.535863872408553553e-08,-3.628912921682462508e-08,-3.721961970956371464e-08,-3.815011020230280420e-08,-3.908060069504189376e-08,-4.001109118778098331e-08,-4.094158168052007287e-08,-4.187207217325916243e-08,-4.280256266599825198e-08,-4.373305315873734154e-08,-4.466354365147643110e-08,-4.559403414421552066e-08,-4.652452463695461021e-08,-4.745501512969369977e-08,-4.838550562243278933e-08,-4.931599611517187889e-08,-5.024648660791096844e-08,-5.117697710065005800e-08,-5.210746759338914756e-08,-5.303795808612823712e-08,-5.396844857886732667e-08,-5.489893907160641623e-08,-5.582942956434550579e-08,-5.675992005708459534e-08,-5.769041054982368490e-08,-5.862090104256277446e-08 +0.000000000000000000e+00,-9.823746187785347471e-10,-1.964749237557069494e-09,-2.947123856335604241e-09,-3.929498475114138989e-09,-4.911873093892673736e-09,-5.894247712671208483e-09,-6.876622331449743230e-09,-7.858996950228277977e-09,-8.841371569006811897e-09,-9.823746187785345817e-09,-1.080612080656387974e-08,-1.178849542534241366e-08,-1.277087004412094758e-08,-1.375324466289948150e-08,-1.473561928167801542e-08,-1.571799390045654934e-08,-1.670036851923508326e-08,-1.768274313801361718e-08,-1.866511775679215110e-08,-1.964749237557068502e-08,-2.062986699434921894e-08,-2.161224161312775286e-08,-2.259461623190628678e-08,-2.357699085068482070e-08,-2.455936546946335462e-08,-2.554174008824188854e-08,-2.652411470702042246e-08,-2.750648932579895638e-08,-2.848886394457749030e-08,-2.947123856335602422e-08,-3.045361318213455814e-08,-3.143598780091309206e-08,-3.241836241969162598e-08,-3.340073703847015990e-08,-3.438311165724869382e-08,-3.536548627602722774e-08,-3.634786089480576166e-08,-3.733023551358429558e-08,-3.831261013236282950e-08,-3.929498475114136342e-08,-4.027735936991989734e-08,-4.125973398869843126e-08,-4.224210860747696518e-08,-4.322448322625549910e-08,-4.420685784503403302e-08,-4.518923246381256694e-08,-4.617160708259110086e-08,-4.715398170136963478e-08,-4.813635632014816870e-08,-4.911873093892670262e-08,-5.010110555770523654e-08,-5.108348017648377046e-08,-5.206585479526230438e-08,-5.304822941404083830e-08,-5.403060403281937222e-08,-5.501297865159790614e-08,-5.599535327037644006e-08,-5.697772788915497398e-08,-5.796010250793350790e-08,-5.894247712671204182e-08,-5.992485174549057574e-08,-6.090722636426911627e-08,-6.188960098304765681e-08 +0.000000000000000000e+00,7.437714864451045942e-10,1.487542972890209188e-09,2.231314459335313886e-09,2.975085945780418790e-09,3.718857432225523695e-09,4.462628918670628599e-09,5.206400405115733917e-09,5.950171891560839235e-09,6.693943378005944553e-09,7.437714864451049871e-09,8.181486350896155189e-09,8.925257837341260507e-09,9.669029323786365825e-09,1.041280081023147114e-08,1.115657229667657646e-08,1.190034378312168178e-08,1.264411526956678710e-08,1.338788675601189242e-08,1.413165824245699773e-08,1.487542972890210305e-08,1.561920121534720837e-08,1.636297270179231369e-08,1.710674418823741901e-08,1.785051567468252432e-08,1.859428716112762964e-08,1.933805864757273496e-08,2.008183013401784028e-08,2.082560162046294560e-08,2.156937310690805091e-08,2.231314459335315623e-08,2.305691607979826155e-08,2.380068756624336687e-08,2.454445905268847219e-08,2.528823053913357750e-08,2.603200202557868282e-08,2.677577351202378814e-08,2.751954499846889346e-08,2.826331648491399878e-08,2.900708797135910409e-08,2.975085945780420941e-08,3.049463094424931804e-08,3.123840243069442336e-08,3.198217391713952867e-08,3.272594540358463399e-08,3.346971689002973931e-08,3.421348837647484463e-08,3.495725986291994995e-08,3.570103134936505526e-08,3.644480283581016058e-08,3.718857432225526590e-08,3.793234580870037122e-08,3.867611729514547654e-08,3.941988878159058185e-08,4.016366026803568717e-08,4.090743175448079249e-08,4.165120324092589781e-08,4.239497472737100313e-08,4.313874621381610844e-08,4.388251770026121376e-08,4.462628918670631908e-08,4.537006067315142440e-08,4.611383215959652972e-08,4.685760364604163503e-08 +0.000000000000000000e+00,7.850300941858605479e-10,1.570060188371721096e-09,2.355090282557581644e-09,3.140120376743442192e-09,3.925150470929302740e-09,4.710180565115163287e-09,5.495210659301023835e-09,6.280240753486884383e-09,7.065270847672744931e-09,7.850300941858605479e-09,8.635331036044465200e-09,9.420361130230324920e-09,1.020539122441618464e-08,1.099042131860204436e-08,1.177545141278790408e-08,1.256048150697376380e-08,1.334551160115962352e-08,1.413054169534548324e-08,1.491557178953134297e-08,1.570060188371720103e-08,1.648563197790305910e-08,1.727066207208891716e-08,1.805569216627477523e-08,1.884072226046063330e-08,1.962575235464649136e-08,2.041078244883234943e-08,2.119581254301820750e-08,2.198084263720406556e-08,2.276587273138992363e-08,2.355090282557578170e-08,2.433593291976163976e-08,2.512096301394749783e-08,2.590599310813335589e-08,2.669102320231921396e-08,2.747605329650507203e-08,2.826108339069093009e-08,2.904611348487678816e-08,2.983114357906264623e-08,3.061617367324850098e-08,3.140120376743435574e-08,3.218623386162021050e-08,3.297126395580606526e-08,3.375629404999192001e-08,3.454132414417777477e-08,3.532635423836362953e-08,3.611138433254948429e-08,3.689641442673533905e-08,3.768144452092119380e-08,3.846647461510704856e-08,3.925150470929290332e-08,4.003653480347875808e-08,4.082156489766461283e-08,4.160659499185046759e-08,4.239162508603632235e-08,4.317665518022217711e-08,4.396168527440803186e-08,4.474671536859388662e-08,4.553174546277974138e-08,4.631677555696559614e-08,4.710180565115145089e-08,4.788683574533730565e-08,4.867186583952316041e-08,4.945689593370901517e-08 +0.000000000000000000e+00,8.133488159917919153e-10,1.626697631983583831e-09,2.440046447975375953e-09,3.253395263967168075e-09,4.066744079958960197e-09,4.880092895950751905e-09,5.693441711942543614e-09,6.506790527934335322e-09,7.320139343926127031e-09,8.133488159917918739e-09,8.946836975909709621e-09,9.760185791901500502e-09,1.057353460789329138e-08,1.138688342388508226e-08,1.220023223987687315e-08,1.301358105586866403e-08,1.382692987186045491e-08,1.464027868785224579e-08,1.545362750384403667e-08,1.626697631983582755e-08,1.708032513582761843e-08,1.789367395181940932e-08,1.870702276781120020e-08,1.952037158380299108e-08,2.033372039979478196e-08,2.114706921578657284e-08,2.196041803177836372e-08,2.277376684777015460e-08,2.358711566376194548e-08,2.440046447975373637e-08,2.521381329574552725e-08,2.602716211173731813e-08,2.684051092772910901e-08,2.765385974372089989e-08,2.846720855971269077e-08,2.928055737570448165e-08,3.009390619169626923e-08,3.090725500768805349e-08,3.172060382367983775e-08,3.253395263967162202e-08,3.334730145566340628e-08,3.416065027165519055e-08,3.497399908764697481e-08,3.578734790363875907e-08,3.660069671963054334e-08,3.741404553562232760e-08,3.822739435161411187e-08,3.904074316760589613e-08,3.985409198359768039e-08,4.066744079958946466e-08,4.148078961558124892e-08,4.229413843157303318e-08,4.310748724756481745e-08,4.392083606355660171e-08,4.473418487954838598e-08,4.554753369554017024e-08,4.636088251153195450e-08,4.717423132752373877e-08,4.798758014351552303e-08,4.880092895950730730e-08,4.961427777549909156e-08,5.042762659149087582e-08,5.124097540748266009e-08 +0.000000000000000000e+00,-7.437714864065997503e-10,-1.487542972813199501e-09,-2.231314459219799354e-09,-2.975085945626399415e-09,-3.718857432032999475e-09,-4.462628918439599536e-09,-5.206400404846199596e-09,-5.950171891252799657e-09,-6.693943377659399717e-09,-7.437714864065999778e-09,-8.181486350472599011e-09,-8.925257836879197417e-09,-9.669029323285795823e-09,-1.041280080969239423e-08,-1.115657229609899264e-08,-1.190034378250559104e-08,-1.264411526891218945e-08,-1.338788675531878785e-08,-1.413165824172538626e-08,-1.487542972813198467e-08,-1.561920121453858307e-08,-1.636297270094518148e-08,-1.710674418735177988e-08,-1.785051567375837829e-08,-1.859428716016497670e-08,-1.933805864657157510e-08,-2.008183013297817351e-08,-2.082560161938477192e-08,-2.156937310579137032e-08,-2.231314459219796873e-08,-2.305691607860456713e-08,-2.380068756501116554e-08,-2.454445905141776395e-08,-2.528823053782436235e-08,-2.603200202423096076e-08,-2.677577351063755916e-08,-2.751954499704415757e-08,-2.826331648345075598e-08,-2.900708796985735438e-08,-2.975085945626395279e-08,-3.049463094267055450e-08,-3.123840242907715953e-08,-3.198217391548376455e-08,-3.272594540189036957e-08,-3.346971688829697460e-08,-3.421348837470357962e-08,-3.495725986111018465e-08,-3.570103134751678967e-08,-3.644480283392339469e-08,-3.718857432032999972e-08,-3.793234580673660474e-08,-3.867611729314320976e-08,-3.941988877954981479e-08,-4.016366026595641981e-08,-4.090743175236302483e-08,-4.165120323876962986e-08,-4.239497472517623488e-08,-4.313874621158283990e-08,-4.388251769798944493e-08,-4.462628918439604995e-08,-4.537006067080265498e-08,-4.611383215720926000e-08,-4.685760364361586502e-08 +0.000000000000000000e+00,-7.850300941666082293e-10,-1.570060188333216459e-09,-2.355090282499824585e-09,-3.140120376666432504e-09,-3.925150470833040423e-09,-4.710180564999648342e-09,-5.495210659166256261e-09,-6.280240753332864180e-09,-7.065270847499472099e-09,-7.850300941666079191e-09,-8.635331035832687111e-09,-9.420361129999295030e-09,-1.020539122416590295e-08,-1.099042131833251087e-08,-1.177545141249911879e-08,-1.256048150666572671e-08,-1.334551160083233463e-08,-1.413054169499894254e-08,-1.491557178916555046e-08,-1.570060188333215838e-08,-1.648563197749876630e-08,-1.727066207166537422e-08,-1.805569216583198214e-08,-1.884072225999859006e-08,-1.962575235416519798e-08,-2.041078244833180590e-08,-2.119581254249841382e-08,-2.198084263666502174e-08,-2.276587273083162966e-08,-2.355090282499823757e-08,-2.433593291916484549e-08,-2.512096301333145341e-08,-2.590599310749806133e-08,-2.669102320166466925e-08,-2.747605329583127717e-08,-2.826108338999788509e-08,-2.904611348416449301e-08,-2.983114357833110093e-08,-3.061617367249771216e-08,-3.140120376666432338e-08,-3.218623386083093461e-08,-3.297126395499754584e-08,-3.375629404916415707e-08,-3.454132414333076829e-08,-3.532635423749737952e-08,-3.611138433166399075e-08,-3.689641442583060198e-08,-3.768144451999721321e-08,-3.846647461416382443e-08,-3.925150470833043566e-08,-4.003653480249704689e-08,-4.082156489666365812e-08,-4.160659499083026935e-08,-4.239162508499688057e-08,-4.317665517916349180e-08,-4.396168527333010303e-08,-4.474671536749671426e-08,-4.553174546166332548e-08,-4.631677555582993671e-08,-4.710180564999654794e-08,-4.788683574416315917e-08,-4.867186583832977040e-08,-4.945689593249638162e-08 +0.000000000000000000e+00,-8.133488159494078011e-10,-1.626697631898815602e-09,-2.440046447848223403e-09,-3.253395263797631204e-09,-4.066744079747039005e-09,-4.880092895696446807e-09,-5.693441711645854608e-09,-6.506790527595262409e-09,-7.320139343544670210e-09,-8.133488159494078011e-09,-8.946836975443485812e-09,-9.760185791392893613e-09,-1.057353460734230141e-08,-1.138688342329170922e-08,-1.220023223924111702e-08,-1.301358105519052482e-08,-1.382692987113993262e-08,-1.464027868708934042e-08,-1.545362750303874988e-08,-1.626697631898815933e-08,-1.708032513493756879e-08,-1.789367395088697824e-08,-1.870702276683638770e-08,-1.952037158278579715e-08,-2.033372039873520661e-08,-2.114706921468461606e-08,-2.196041803063402552e-08,-2.277376684658343497e-08,-2.358711566253284443e-08,-2.440046447848225389e-08,-2.521381329443166334e-08,-2.602716211038107280e-08,-2.684051092633048225e-08,-2.765385974227989171e-08,-2.846720855822930116e-08,-2.928055737417871062e-08,-3.009390619012812007e-08,-3.090725500607752622e-08,-3.172060382202693237e-08,-3.253395263797633851e-08,-3.334730145392574466e-08,-3.416065026987515081e-08,-3.497399908582455695e-08,-3.578734790177396310e-08,-3.660069671772336925e-08,-3.741404553367277539e-08,-3.822739434962218154e-08,-3.904074316557158769e-08,-3.985409198152099383e-08,-4.066744079747039998e-08,-4.148078961341980613e-08,-4.229413842936921227e-08,-4.310748724531861842e-08,-4.392083606126802457e-08,-4.473418487721743071e-08,-4.554753369316683686e-08,-4.636088250911624301e-08,-4.717423132506564915e-08,-4.798758014101505530e-08,-4.880092895696446145e-08,-4.961427777291386760e-08,-5.042762658886327374e-08,-5.124097540481267989e-08 +0.000000000000000000e+00,7.026176331452709292e-10,1.405235266290541858e-09,2.107852899435812787e-09,2.810470532581083717e-09,3.513088165726354646e-09,4.215705798871625575e-09,4.918323432016896090e-09,5.620941065162166606e-09,6.323558698307437122e-09,7.026176331452707637e-09,7.728793964597978153e-09,8.431411597743249496e-09,9.134029230888520838e-09,9.836646864033792181e-09,1.053926449717906352e-08,1.124188213032433487e-08,1.194449976346960621e-08,1.264711739661487755e-08,1.334973502976014889e-08,1.405235266290542024e-08,1.475497029605069158e-08,1.545758792919596292e-08,1.616020556234123261e-08,1.686282319548650230e-08,1.756544082863177199e-08,1.826805846177704168e-08,1.897067609492231136e-08,1.967329372806758105e-08,2.037591136121285074e-08,2.107852899435812043e-08,2.178114662750339012e-08,2.248376426064865981e-08,2.318638189379392950e-08,2.388899952693919918e-08,2.459161716008446887e-08,2.529423479322973856e-08,2.599685242637500825e-08,2.669947005952027794e-08,2.740208769266554763e-08,2.810470532581081731e-08,2.880732295895608700e-08,2.950994059210135669e-08,3.021255822524662638e-08,3.091517585839189276e-08,3.161779349153715914e-08,3.232041112468242552e-08,3.302302875782769190e-08,3.372564639097295828e-08,3.442826402411822466e-08,3.513088165726349104e-08,3.583349929040875742e-08,3.653611692355402380e-08,3.723873455669929018e-08,3.794135218984455656e-08,3.864396982298982293e-08,3.934658745613508931e-08,4.004920508928035569e-08,4.075182272242562207e-08,4.145444035557088845e-08,4.215705798871615483e-08,4.285967562186142121e-08,4.356229325500668759e-08,4.426491088815195397e-08 +0.000000000000000000e+00,7.222288546289793693e-10,1.444457709257958739e-09,2.166686563886937901e-09,2.888915418515917063e-09,3.611144273144896226e-09,4.333373127773875802e-09,5.055601982402855378e-09,5.777830837031834954e-09,6.500059691660814530e-09,7.222288546289794106e-09,7.944517400918773682e-09,8.666746255547753258e-09,9.388975110176732835e-09,1.011120396480571241e-08,1.083343281943469199e-08,1.155566167406367156e-08,1.227789052869265114e-08,1.300011938332163071e-08,1.372234823795061029e-08,1.444457709257958987e-08,1.516680594720856944e-08,1.588903480183754736e-08,1.661126365646652529e-08,1.733349251109550321e-08,1.805572136572448113e-08,1.877795022035345905e-08,1.950017907498243697e-08,2.022240792961141489e-08,2.094463678424039282e-08,2.166686563886937074e-08,2.238909449349834866e-08,2.311132334812732658e-08,2.383355220275630450e-08,2.455578105738528243e-08,2.527800991201426035e-08,2.600023876664323827e-08,2.672246762127221619e-08,2.744469647590119411e-08,2.816692533053017203e-08,2.888915418515914996e-08,2.961138303978812788e-08,3.033361189441710580e-08,3.105584074904608372e-08,3.177806960367506164e-08,3.250029845830403956e-08,3.322252731293301749e-08,3.394475616756199541e-08,3.466698502219097333e-08,3.538921387681995125e-08,3.611144273144892917e-08,3.683367158607790709e-08,3.755590044070688502e-08,3.827812929533586294e-08,3.900035814996484086e-08,3.972258700459381878e-08,4.044481585922279670e-08,4.116704471385177462e-08,4.188927356848075255e-08,4.261150242310973047e-08,4.333373127773870839e-08,4.405596013236768631e-08,4.477818898699666423e-08,4.550041784162564215e-08 +0.000000000000000000e+00,7.413416114603569544e-10,1.482683222920713909e-09,2.224024834381070863e-09,2.965366445841427818e-09,3.706708057301784772e-09,4.448049668762141727e-09,5.189391280222498681e-09,5.930732891682855635e-09,6.672074503143212590e-09,7.413416114603569544e-09,8.154757726063926499e-09,8.896099337524283453e-09,9.637440948984640408e-09,1.037878256044499736e-08,1.112012417190535432e-08,1.186146578336571127e-08,1.260280739482606823e-08,1.334414900628642518e-08,1.408549061774678213e-08,1.482683222920713909e-08,1.556817384066749770e-08,1.630951545212785631e-08,1.705085706358821492e-08,1.779219867504857352e-08,1.853354028650893213e-08,1.927488189796929074e-08,2.001622350942964935e-08,2.075756512089000796e-08,2.149890673235036657e-08,2.224024834381072518e-08,2.298158995527108379e-08,2.372293156673144239e-08,2.446427317819180100e-08,2.520561478965215961e-08,2.594695640111251822e-08,2.668829801257287683e-08,2.742963962403323544e-08,2.817098123549359405e-08,2.891232284695395266e-08,2.965366445841431126e-08,3.039500606987466987e-08,3.113634768133502848e-08,3.187768929279538709e-08,3.261903090425574570e-08,3.336037251571610431e-08,3.410171412717646292e-08,3.484305573863682153e-08,3.558439735009718013e-08,3.632573896155753874e-08,3.706708057301789735e-08,3.780842218447825596e-08,3.854976379593861457e-08,3.929110540739897318e-08,4.003244701885933179e-08,4.077378863031969040e-08,4.151513024178004901e-08,4.225647185324040761e-08,4.299781346470076622e-08,4.373915507616112483e-08,4.448049668762148344e-08,4.522183829908184205e-08,4.596317991054220066e-08,4.670452152200255927e-08 +0.000000000000000000e+00,-7.026176330735011203e-10,-1.405235266147002241e-09,-2.107852899220503464e-09,-2.810470532294004895e-09,-3.513088165367506325e-09,-4.215705798441007756e-09,-4.918323431514509600e-09,-5.620941064588011444e-09,-6.323558697661513288e-09,-7.026176330735015132e-09,-7.728793963808516976e-09,-8.431411596882018820e-09,-9.134029229955520664e-09,-9.836646863029022508e-09,-1.053926449610252435e-08,-1.124188212917602620e-08,-1.194449976224952804e-08,-1.264711739532302988e-08,-1.334973502839653173e-08,-1.405235266147003357e-08,-1.475497029454353542e-08,-1.545758792761703726e-08,-1.616020556069053745e-08,-1.686282319376403764e-08,-1.756544082683753783e-08,-1.826805845991103802e-08,-1.897067609298453821e-08,-1.967329372605803840e-08,-2.037591135913153859e-08,-2.107852899220503878e-08,-2.178114662527853897e-08,-2.248376425835203916e-08,-2.318638189142553935e-08,-2.388899952449903954e-08,-2.459161715757253973e-08,-2.529423479064603992e-08,-2.599685242371954011e-08,-2.669947005679304030e-08,-2.740208768986654049e-08,-2.810470532294004068e-08,-2.880732295601354087e-08,-2.950994058908704106e-08,-3.021255822216054125e-08,-3.091517585523404143e-08,-3.161779348830754162e-08,-3.232041112138104181e-08,-3.302302875445454200e-08,-3.372564638752804219e-08,-3.442826402060154238e-08,-3.513088165367504257e-08,-3.583349928674854276e-08,-3.653611691982204295e-08,-3.723873455289554314e-08,-3.794135218596904333e-08,-3.864396981904254352e-08,-3.934658745211604371e-08,-4.004920508518954390e-08,-4.075182271826304409e-08,-4.145444035133654428e-08,-4.215705798441004447e-08,-4.285967561748354466e-08,-4.356229325055704485e-08,-4.426491088363054504e-08 +0.000000000000000000e+00,-7.222288545727510433e-10,-1.444457709145502087e-09,-2.166686563718253027e-09,-2.888915418291003760e-09,-3.611144272863754493e-09,-4.333373127436505226e-09,-5.055601982009256373e-09,-5.777830836582007520e-09,-6.500059691154758666e-09,-7.222288545727509813e-09,-7.944517400300260960e-09,-8.666746254873012107e-09,-9.388975109445763253e-09,-1.011120396401851440e-08,-1.083343281859126555e-08,-1.155566167316401669e-08,-1.227789052773676784e-08,-1.300011938230951899e-08,-1.372234823688227013e-08,-1.444457709145502128e-08,-1.516680594602777243e-08,-1.588903480060052192e-08,-1.661126365517327141e-08,-1.733349250974602090e-08,-1.805572136431877040e-08,-1.877795021889151989e-08,-1.950017907346426938e-08,-2.022240792803701887e-08,-2.094463678260976837e-08,-2.166686563718251786e-08,-2.238909449175526735e-08,-2.311132334632801684e-08,-2.383355220090076634e-08,-2.455578105547351583e-08,-2.527800991004626532e-08,-2.600023876461901481e-08,-2.672246761919176431e-08,-2.744469647376451380e-08,-2.816692532833726329e-08,-2.888915418291001278e-08,-2.961138303748276228e-08,-3.033361189205551177e-08,-3.105584074662826126e-08,-3.177806960120101075e-08,-3.250029845577376024e-08,-3.322252731034650974e-08,-3.394475616491925923e-08,-3.466698501949200872e-08,-3.538921387406475821e-08,-3.611144272863750771e-08,-3.683367158321025720e-08,-3.755590043778300669e-08,-3.827812929235575618e-08,-3.900035814692850568e-08,-3.972258700150125517e-08,-4.044481585607400466e-08,-4.116704471064675415e-08,-4.188927356521950365e-08,-4.261150241979225314e-08,-4.333373127436500263e-08,-4.405596012893775212e-08,-4.477818898351050162e-08,-4.550041783808325111e-08 +0.000000000000000000e+00,-7.413416113842385537e-10,-1.482683222768477107e-09,-2.224024834152715661e-09,-2.965366445536954215e-09,-3.706708056921192768e-09,-4.448049668305431322e-09,-5.189391279689670289e-09,-5.930732891073909257e-09,-6.672074502458148224e-09,-7.413416113842387191e-09,-8.154757725226626159e-09,-8.896099336610864299e-09,-9.637440947995102439e-09,-1.037878255937934058e-08,-1.112012417076357872e-08,-1.186146578214781686e-08,-1.260280739353205500e-08,-1.334414900491629314e-08,-1.408549061630053128e-08,-1.482683222768476942e-08,-1.556817383906900756e-08,-1.630951545045324570e-08,-1.705085706183748384e-08,-1.779219867322172198e-08,-1.853354028460596012e-08,-1.927488189599019826e-08,-2.001622350737443640e-08,-2.075756511875867454e-08,-2.149890673014291268e-08,-2.224024834152715082e-08,-2.298158995291138896e-08,-2.372293156429562710e-08,-2.446427317567986524e-08,-2.520561478706410338e-08,-2.594695639844834152e-08,-2.668829800983257966e-08,-2.742963962121681780e-08,-2.817098123260105594e-08,-2.891232284398529408e-08,-2.965366445536953222e-08,-3.039500606675377036e-08,-3.113634767813800850e-08,-3.187768928952224664e-08,-3.261903090090648478e-08,-3.336037251229072292e-08,-3.410171412367496106e-08,-3.484305573505919920e-08,-3.558439734644343734e-08,-3.632573895782767548e-08,-3.706708056921191362e-08,-3.780842218059615176e-08,-3.854976379198038990e-08,-3.929110540336462804e-08,-4.003244701474886618e-08,-4.077378862613310432e-08,-4.151513023751734246e-08,-4.225647184890158060e-08,-4.299781346028581874e-08,-4.373915507167005688e-08,-4.448049668305429502e-08,-4.522183829443853316e-08,-4.596317990582277130e-08,-4.670452151720700944e-08 +0.000000000000000000e+00,6.841931532250497844e-10,1.368386306450099569e-09,2.052579459675149250e-09,2.736772612900198724e-09,3.420965766125248198e-09,4.105158919350297672e-09,4.789352072575346733e-09,5.473545225800395793e-09,6.157738379025444854e-09,6.841931532250493915e-09,7.526124685475542975e-09,8.210317838700592036e-09,8.894510991925641096e-09,9.578704145150690157e-09,1.026289729837573922e-08,1.094709045160078828e-08,1.163128360482583734e-08,1.231547675805088640e-08,1.299966991127593546e-08,1.368386306450098452e-08,1.436805621772603358e-08,1.505224937095108264e-08,1.573644252417613336e-08,1.642063567740118407e-08,1.710482883062623479e-08,1.778902198385128550e-08,1.847321513707633622e-08,1.915740829030138693e-08,1.984160144352643765e-08,2.052579459675148836e-08,2.120998774997653908e-08,2.189418090320158979e-08,2.257837405642664051e-08,2.326256720965169122e-08,2.394676036287674194e-08,2.463095351610179265e-08,2.531514666932684337e-08,2.599933982255189408e-08,2.668353297577694480e-08,2.736772612900199551e-08,2.805191928222704623e-08,2.873611243545209694e-08,2.942030558867714766e-08,3.010449874190219837e-08,3.078869189512724909e-08,3.147288504835229980e-08,3.215707820157735052e-08,3.284127135480240123e-08,3.352546450802745195e-08,3.420965766125250266e-08,3.489385081447755338e-08,3.557804396770260409e-08,3.626223712092765481e-08,3.694643027415270552e-08,3.763062342737775624e-08,3.831481658060280695e-08,3.899900973382785767e-08,3.968320288705290838e-08,4.036739604027795910e-08,4.105158919350300981e-08,4.173578234672806053e-08,4.241997549995311124e-08,4.310416865317816195e-08 +0.000000000000000000e+00,6.930687958632962226e-10,1.386137591726592445e-09,2.079206387589888668e-09,2.772275183453184891e-09,3.465343979316481113e-09,4.158412775179777336e-09,4.851481571043073145e-09,5.544550366906368954e-09,6.237619162769664763e-09,6.930687958632960572e-09,7.623756754496256381e-09,8.316825550359553017e-09,9.009894346222849653e-09,9.702963142086146290e-09,1.039603193794944293e-08,1.108910073381273956e-08,1.178216952967603620e-08,1.247523832553933283e-08,1.316830712140262947e-08,1.386137591726592611e-08,1.455444471312922274e-08,1.524751350899251938e-08,1.594058230485581602e-08,1.663365110071911265e-08,1.732671989658240929e-08,1.801978869244570592e-08,1.871285748830900256e-08,1.940592628417229920e-08,2.009899508003559583e-08,2.079206387589889247e-08,2.148513267176218911e-08,2.217820146762548574e-08,2.287127026348878238e-08,2.356433905935207901e-08,2.425740785521537565e-08,2.495047665107867229e-08,2.564354544694196892e-08,2.633661424280526556e-08,2.702968303866856220e-08,2.772275183453185883e-08,2.841582063039515547e-08,2.910888942625845210e-08,2.980195822212174874e-08,3.049502701798504538e-08,3.118809581384834201e-08,3.188116460971163865e-08,3.257423340557493528e-08,3.326730220143823192e-08,3.396037099730152856e-08,3.465343979316482519e-08,3.534650858902812183e-08,3.603957738489141847e-08,3.673264618075471510e-08,3.742571497661801174e-08,3.811878377248130837e-08,3.881185256834460501e-08,3.950492136420790165e-08,4.019799016007119828e-08,4.089105895593449492e-08,4.158412775179779156e-08,4.227719654766108819e-08,4.297026534352438483e-08,4.366333413938768146e-08 +0.000000000000000000e+00,7.046587295025992919e-10,1.409317459005198584e-09,2.113976188507797979e-09,2.818634918010397581e-09,3.523293647512997183e-09,4.227952377015596786e-09,4.932611106518196801e-09,5.637269836020796817e-09,6.341928565523396833e-09,7.046587295025996848e-09,7.751246024528596864e-09,8.455904754031196880e-09,9.160563483533796896e-09,9.865222213036396911e-09,1.056988094253899693e-08,1.127453967204159694e-08,1.197919840154419696e-08,1.268385713104679697e-08,1.338851586054939699e-08,1.409317459005199701e-08,1.479783331955459702e-08,1.550249204905719704e-08,1.620715077855979871e-08,1.691180950806240038e-08,1.761646823756500205e-08,1.832112696706760372e-08,1.902578569657020539e-08,1.973044442607280706e-08,2.043510315557540873e-08,2.113976188507801040e-08,2.184442061458061207e-08,2.254907934408321374e-08,2.325373807358581541e-08,2.395839680308841708e-08,2.466305553259101875e-08,2.536771426209362042e-08,2.607237299159622209e-08,2.677703172109882376e-08,2.748169045060142543e-08,2.818634918010402710e-08,2.889100790960662877e-08,2.959566663910923044e-08,3.030032536861183211e-08,3.100498409811443378e-08,3.170964282761703545e-08,3.241430155711963712e-08,3.311896028662223879e-08,3.382361901612484046e-08,3.452827774562744213e-08,3.523293647513004380e-08,3.593759520463264547e-08,3.664225393413524714e-08,3.734691266363784881e-08,3.805157139314045048e-08,3.875623012264305215e-08,3.946088885214565382e-08,4.016554758164825549e-08,4.087020631115085716e-08,4.157486504065345883e-08,4.227952377015606050e-08,4.298418249965866217e-08,4.368884122916126384e-08,4.439349995866386551e-08 +0.000000000000000000e+00,-6.841931531282227102e-10,-1.368386306256445420e-09,-2.052579459384668234e-09,-2.736772612512891254e-09,-3.420965765641114275e-09,-4.105158918769337295e-09,-4.789352071897559902e-09,-5.473545225025782509e-09,-6.157738378154005116e-09,-6.841931531282227722e-09,-7.526124684410450329e-09,-8.210317837538672936e-09,-8.894510990666895543e-09,-9.578704143795118150e-09,-1.026289729692334076e-08,-1.094709045005156336e-08,-1.163128360317978597e-08,-1.231547675630800858e-08,-1.299966990943623118e-08,-1.368386306256445379e-08,-1.436805621569267640e-08,-1.505224936882090066e-08,-1.573644252194912492e-08,-1.642063567507734918e-08,-1.710482882820557344e-08,-1.778902198133379770e-08,-1.847321513446202196e-08,-1.915740828759024623e-08,-1.984160144071847049e-08,-2.052579459384669475e-08,-2.120998774697491901e-08,-2.189418090010314327e-08,-2.257837405323136753e-08,-2.326256720635959179e-08,-2.394676035948781605e-08,-2.463095351261604031e-08,-2.531514666574426458e-08,-2.599933981887248884e-08,-2.668353297200071310e-08,-2.736772612512893736e-08,-2.805191927825716162e-08,-2.873611243138538588e-08,-2.942030558451361014e-08,-3.010449873764183440e-08,-3.078869189077005867e-08,-3.147288504389828293e-08,-3.215707819702650719e-08,-3.284127135015473145e-08,-3.352546450328295571e-08,-3.420965765641117997e-08,-3.489385080953940423e-08,-3.557804396266762849e-08,-3.626223711579585275e-08,-3.694643026892407702e-08,-3.763062342205230128e-08,-3.831481657518052554e-08,-3.899900972830874980e-08,-3.968320288143697406e-08,-4.036739603456519832e-08,-4.105158918769342258e-08,-4.173578234082164684e-08,-4.241997549394987111e-08,-4.310416864707809537e-08 +0.000000000000000000e+00,-6.930687957778589085e-10,-1.386137591555717817e-09,-2.079206387333576829e-09,-2.772275183111436048e-09,-3.465343978889295266e-09,-4.158412774667154485e-09,-4.851481570445013290e-09,-5.544550366222872095e-09,-6.237619162000730900e-09,-6.930687957778589705e-09,-7.623756753556448511e-09,-8.316825549334307316e-09,-9.009894345112166121e-09,-9.702963140890024926e-09,-1.039603193666788373e-08,-1.108910073244574254e-08,-1.178216952822360134e-08,-1.247523832400146015e-08,-1.316830711977931895e-08,-1.386137591555717776e-08,-1.455444471133503656e-08,-1.524751350711289371e-08,-1.594058230289075252e-08,-1.663365109866861132e-08,-1.732671989444647013e-08,-1.801978869022432893e-08,-1.871285748600218774e-08,-1.940592628178004654e-08,-2.009899507755790535e-08,-2.079206387333576415e-08,-2.148513266911362296e-08,-2.217820146489148176e-08,-2.287127026066934057e-08,-2.356433905644719937e-08,-2.425740785222505818e-08,-2.495047664800291698e-08,-2.564354544378077579e-08,-2.633661423955863459e-08,-2.702968303533649340e-08,-2.772275183111435220e-08,-2.841582062689221101e-08,-2.910888942267006981e-08,-2.980195821844792862e-08,-3.049502701422578742e-08,-3.118809581000364623e-08,-3.188116460578150504e-08,-3.257423340155936384e-08,-3.326730219733722265e-08,-3.396037099311508145e-08,-3.465343978889294026e-08,-3.534650858467079906e-08,-3.603957738044865787e-08,-3.673264617622651667e-08,-3.742571497200437548e-08,-3.811878376778223428e-08,-3.881185256356009309e-08,-3.950492135933795189e-08,-4.019799015511581070e-08,-4.089105895089366950e-08,-4.158412774667152831e-08,-4.227719654244938711e-08,-4.297026533822724592e-08,-4.366333413400510472e-08 +0.000000000000000000e+00,-7.046587293995173882e-10,-1.409317458799034776e-09,-2.113976188198551958e-09,-2.818634917598069139e-09,-3.523293646997586320e-09,-4.227952376397103915e-09,-4.932611105796621510e-09,-5.637269835196139105e-09,-6.341928564595656700e-09,-7.046587293995174295e-09,-7.751246023394692717e-09,-8.455904752794211140e-09,-9.160563482193729562e-09,-9.865222211593247984e-09,-1.056988094099276641e-08,-1.127453967039228483e-08,-1.197919839979180325e-08,-1.268385712919132167e-08,-1.338851585859084009e-08,-1.409317458799035852e-08,-1.479783331738987694e-08,-1.550249204678939536e-08,-1.620715077618891378e-08,-1.691180950558843221e-08,-1.761646823498795063e-08,-1.832112696438746905e-08,-1.902578569378698747e-08,-1.973044442318650589e-08,-2.043510315258602432e-08,-2.113976188198554274e-08,-2.184442061138506116e-08,-2.254907934078457958e-08,-2.325373807018409800e-08,-2.395839679958361643e-08,-2.466305552898313485e-08,-2.536771425838265327e-08,-2.607237298778217169e-08,-2.677703171718169012e-08,-2.748169044658120854e-08,-2.818634917598072696e-08,-2.889100790538024538e-08,-2.959566663477976380e-08,-3.030032536417928223e-08,-3.100498409357879734e-08,-3.170964282297831245e-08,-3.241430155237782757e-08,-3.311896028177734268e-08,-3.382361901117685779e-08,-3.452827774057637291e-08,-3.523293646997588802e-08,-3.593759519937540313e-08,-3.664225392877491825e-08,-3.734691265817443336e-08,-3.805157138757394847e-08,-3.875623011697346359e-08,-3.946088884637297870e-08,-4.016554757577249381e-08,-4.087020630517200893e-08,-4.157486503457152404e-08,-4.227952376397103915e-08,-4.298418249337055427e-08,-4.368884122277006938e-08,-4.439349995216958449e-08 +0.000000000000000000e+00,6.788807438718510103e-10,1.357761487743702021e-09,2.036642231615553134e-09,2.715522975487404455e-09,3.394403719359255775e-09,4.073284463231107096e-09,4.752165207102958416e-09,5.431045950974809737e-09,6.109926694846661057e-09,6.788807438718512378e-09,7.467688182590363698e-09,8.146568926462215846e-09,8.825449670334067994e-09,9.504330414205920141e-09,1.018321115807777229e-08,1.086209190194962444e-08,1.154097264582147658e-08,1.221985338969332873e-08,1.289873413356518088e-08,1.357761487743703303e-08,1.425649562130888517e-08,1.493537636518073732e-08,1.561425710905258947e-08,1.629313785292444162e-08,1.697201859679629377e-08,1.765089934066814591e-08,1.832978008453999806e-08,1.900866082841185021e-08,1.968754157228370236e-08,2.036642231615555450e-08,2.104530306002740665e-08,2.172418380389925880e-08,2.240306454777111095e-08,2.308194529164296309e-08,2.376082603551481524e-08,2.443970677938666739e-08,2.511858752325851954e-08,2.579746826713037169e-08,2.647634901100222383e-08,2.715522975487407598e-08,2.783411049874592813e-08,2.851299124261778028e-08,2.919187198648963242e-08,2.987075273036148126e-08,3.054963347423333010e-08,3.122851421810517894e-08,3.190739496197702778e-08,3.258627570584887662e-08,3.326515644972072546e-08,3.394403719359257430e-08,3.462291793746442314e-08,3.530179868133627197e-08,3.598067942520812081e-08,3.665956016907996965e-08,3.733844091295181849e-08,3.801732165682366733e-08,3.869620240069551617e-08,3.937508314456736501e-08,4.005396388843921385e-08,4.073284463231106269e-08,4.141172537618291152e-08,4.209060612005476036e-08,4.276948686392660920e-08 +0.000000000000000000e+00,6.804624485738609052e-10,1.360924897147721810e-09,2.041387345721582922e-09,2.721849794295444034e-09,3.402312242869305146e-09,4.082774691443165845e-09,4.763237140017026543e-09,5.443699588590887242e-09,6.124162037164747940e-09,6.804624485738608638e-09,7.485086934312469337e-09,8.165549382886330035e-09,8.846011831460190734e-09,9.526474280034051432e-09,1.020693672860791213e-08,1.088739917718177283e-08,1.156786162575563353e-08,1.224832407432949423e-08,1.292878652290335492e-08,1.360924897147721562e-08,1.428971142005107632e-08,1.497017386862493536e-08,1.565063631719879275e-08,1.633109876577265014e-08,1.701156121434650753e-08,1.769202366292036492e-08,1.837248611149422231e-08,1.905294856006807970e-08,1.973341100864193709e-08,2.041387345721579448e-08,2.109433590578965187e-08,2.177479835436350926e-08,2.245526080293736665e-08,2.313572325151122404e-08,2.381618570008508143e-08,2.449664814865893882e-08,2.517711059723279621e-08,2.585757304580665360e-08,2.653803549438051099e-08,2.721849794295436838e-08,2.789896039152822577e-08,2.857942284010208316e-08,2.925988528867594055e-08,2.994034773724979794e-08,3.062081018582365533e-08,3.130127263439751272e-08,3.198173508297137011e-08,3.266219753154522750e-08,3.334265998011908489e-08,3.402312242869294228e-08,3.470358487726679967e-08,3.538404732584065706e-08,3.606450977441451445e-08,3.674497222298837183e-08,3.742543467156222922e-08,3.810589712013608661e-08,3.878635956870994400e-08,3.946682201728380139e-08,4.014728446585765878e-08,4.082774691443151617e-08,4.150820936300537356e-08,4.218867181157923095e-08,4.286913426015308834e-08 +0.000000000000000000e+00,6.858585321639214543e-10,1.371717064327842909e-09,2.057575596491764570e-09,2.743434128655686231e-09,3.429292660819607892e-09,4.115151192983529139e-09,4.801009725147450387e-09,5.486868257311371635e-09,6.172726789475292882e-09,6.858585321639214130e-09,7.544443853803136204e-09,8.230302385967058279e-09,8.916160918130980354e-09,9.602019450294902428e-09,1.028787798245882450e-08,1.097373651462274658e-08,1.165959504678666865e-08,1.234545357895059073e-08,1.303131211111451280e-08,1.371717064327843488e-08,1.440302917544235695e-08,1.508888770760627903e-08,1.577474623977020110e-08,1.646060477193412318e-08,1.714646330409804525e-08,1.783232183626196732e-08,1.851818036842588940e-08,1.920403890058981147e-08,1.988989743275373355e-08,2.057575596491765562e-08,2.126161449708157770e-08,2.194747302924549977e-08,2.263333156140942185e-08,2.331919009357334392e-08,2.400504862573726600e-08,2.469090715790118807e-08,2.537676569006511015e-08,2.606262422222903222e-08,2.674848275439295430e-08,2.743434128655687637e-08,2.812019981872079845e-08,2.880605835088472052e-08,2.949191688304864259e-08,3.017777541521256467e-08,3.086363394737649005e-08,3.154949247954041544e-08,3.223535101170434082e-08,3.292120954386826620e-08,3.360706807603219159e-08,3.429292660819611697e-08,3.497878514036004235e-08,3.566464367252396774e-08,3.635050220468789312e-08,3.703636073685181850e-08,3.772221926901574389e-08,3.840807780117966927e-08,3.909393633334359465e-08,3.977979486550752004e-08,4.046565339767144542e-08,4.115151192983537080e-08,4.183737046199929619e-08,4.252322899416322157e-08,4.320908752632714695e-08 +0.000000000000000000e+00,-6.788807437591835308e-10,-1.357761487518367062e-09,-2.036642231277550592e-09,-2.715522975036734123e-09,-3.394403718795917654e-09,-4.073284462555101185e-09,-4.752165206314284716e-09,-5.431045950073468246e-09,-6.109926693832651777e-09,-6.788807437591835308e-09,-7.467688181351018839e-09,-8.146568925110202370e-09,-8.825449668869385900e-09,-9.504330412628569431e-09,-1.018321115638775296e-08,-1.086209190014693649e-08,-1.154097264390612002e-08,-1.221985338766530355e-08,-1.289873413142448709e-08,-1.357761487518367062e-08,-1.425649561894285415e-08,-1.493537636270203768e-08,-1.561425710646122121e-08,-1.629313785022040474e-08,-1.697201859397958827e-08,-1.765089933773877180e-08,-1.832978008149795533e-08,-1.900866082525713886e-08,-1.968754156901632239e-08,-2.036642231277550592e-08,-2.104530305653468945e-08,-2.172418380029387299e-08,-2.240306454405305652e-08,-2.308194528781224005e-08,-2.376082603157142358e-08,-2.443970677533060711e-08,-2.511858751908979064e-08,-2.579746826284897417e-08,-2.647634900660815770e-08,-2.715522975036734123e-08,-2.783411049412652476e-08,-2.851299123788570829e-08,-2.919187198164489182e-08,-2.987075272540407536e-08,-3.054963346916326219e-08,-3.122851421292244903e-08,-3.190739495668163587e-08,-3.258627570044082271e-08,-3.326515644420000955e-08,-3.394403718795919639e-08,-3.462291793171838323e-08,-3.530179867547757007e-08,-3.598067941923675691e-08,-3.665956016299594375e-08,-3.733844090675513059e-08,-3.801732165051431743e-08,-3.869620239427350427e-08,-3.937508313803269111e-08,-4.005396388179187795e-08,-4.073284462555106479e-08,-4.141172536931025163e-08,-4.209060611306943847e-08,-4.276948685682862531e-08 +0.000000000000000000e+00,-6.804624484680193201e-10,-1.360924896936038640e-09,-2.041387345404058064e-09,-2.721849793872077694e-09,-3.402312242340097324e-09,-4.082774690808116955e-09,-4.763237139276136585e-09,-5.443699587744156215e-09,-6.124162036212175846e-09,-6.804624484680195476e-09,-7.485086933148214279e-09,-8.165549381616232255e-09,-8.846011830084250231e-09,-9.526474278552268207e-09,-1.020693672702028618e-08,-1.088739917548830416e-08,-1.156786162395632213e-08,-1.224832407242434011e-08,-1.292878652089235809e-08,-1.360924896936037606e-08,-1.428971141782839404e-08,-1.497017386629641201e-08,-1.565063631476442999e-08,-1.633109876323244797e-08,-1.701156121170046594e-08,-1.769202366016848392e-08,-1.837248610863650189e-08,-1.905294855710451987e-08,-1.973341100557253785e-08,-2.041387345404055582e-08,-2.109433590250857380e-08,-2.177479835097659177e-08,-2.245526079944460975e-08,-2.313572324791262773e-08,-2.381618569638064570e-08,-2.449664814484866368e-08,-2.517711059331668165e-08,-2.585757304178469963e-08,-2.653803549025271761e-08,-2.721849793872073558e-08,-2.789896038718875356e-08,-2.857942283565677153e-08,-2.925988528412478951e-08,-2.994034773259280418e-08,-3.062081018106081554e-08,-3.130127262952882689e-08,-3.198173507799683825e-08,-3.266219752646484961e-08,-3.334265997493286097e-08,-3.402312242340087233e-08,-3.470358487186888369e-08,-3.538404732033689504e-08,-3.606450976880490640e-08,-3.674497221727291776e-08,-3.742543466574092912e-08,-3.810589711420894048e-08,-3.878635956267695184e-08,-3.946682201114496320e-08,-4.014728445961297455e-08,-4.082774690808098591e-08,-4.150820935654899727e-08,-4.218867180501700863e-08,-4.286913425348501999e-08 +0.000000000000000000e+00,-6.858585320415250900e-10,-1.371717064083050180e-09,-2.057575596124575374e-09,-2.743434128166100774e-09,-3.429292660207626174e-09,-4.115151192249151574e-09,-4.801009724290677388e-09,-5.486868256332203202e-09,-6.172726788373729016e-09,-6.858585320415254830e-09,-7.544443852456780643e-09,-8.230302384498306457e-09,-8.916160916539832271e-09,-9.602019448581358085e-09,-1.028787798062288390e-08,-1.097373651266440971e-08,-1.165959504470593553e-08,-1.234545357674746134e-08,-1.303131210878898715e-08,-1.371717064083051297e-08,-1.440302917287203878e-08,-1.508888770491356460e-08,-1.577474623695509041e-08,-1.646060476899661622e-08,-1.714646330103814204e-08,-1.783232183307966785e-08,-1.851818036512119366e-08,-1.920403889716271948e-08,-1.988989742920424529e-08,-2.057575596124577111e-08,-2.126161449328729692e-08,-2.194747302532882273e-08,-2.263333155737034855e-08,-2.331919008941187436e-08,-2.400504862145340018e-08,-2.469090715349492599e-08,-2.537676568553645180e-08,-2.606262421757797762e-08,-2.674848274961950343e-08,-2.743434128166102924e-08,-2.812019981370255506e-08,-2.880605834574408087e-08,-2.949191687778560669e-08,-3.017777540982713581e-08,-3.086363394186866493e-08,-3.154949247391019405e-08,-3.223535100595172318e-08,-3.292120953799325230e-08,-3.360706807003478142e-08,-3.429292660207631054e-08,-3.497878513411783967e-08,-3.566464366615936879e-08,-3.635050219820089791e-08,-3.703636073024242703e-08,-3.772221926228395616e-08,-3.840807779432548528e-08,-3.909393632636701440e-08,-3.977979485840854352e-08,-4.046565339045007265e-08,-4.115151192249160177e-08,-4.183737045453313089e-08,-4.252322898657466001e-08,-4.320908751861618914e-08 +0.000000000000000000e+00,6.833702168586155017e-10,1.366740433717231003e-09,2.050110650575846608e-09,2.733480867434462420e-09,3.416851084293078232e-09,4.100221301151694044e-09,4.783591518010309856e-09,5.466961734868925668e-09,6.150331951727541480e-09,6.833702168586157292e-09,7.517072385444773104e-09,8.200442602303389743e-09,8.883812819162006382e-09,9.567183036020623021e-09,1.025055325287923966e-08,1.093392346973785630e-08,1.161729368659647294e-08,1.230066390345508958e-08,1.298403412031370622e-08,1.366740433717232286e-08,1.435077455403093949e-08,1.503414477088955613e-08,1.571751498774817443e-08,1.640088520460679272e-08,1.708425542146541101e-08,1.776762563832402931e-08,1.845099585518264760e-08,1.913436607204126589e-08,1.981773628889988419e-08,2.050110650575850248e-08,2.118447672261712077e-08,2.186784693947573907e-08,2.255121715633435736e-08,2.323458737319297565e-08,2.391795759005159395e-08,2.460132780691021224e-08,2.528469802376883053e-08,2.596806824062744883e-08,2.665143845748606712e-08,2.733480867434468542e-08,2.801817889120330371e-08,2.870154910806192200e-08,2.938491932492054030e-08,3.006828954177915859e-08,3.075165975863777688e-08,3.143502997549639518e-08,3.211840019235501347e-08,3.280177040921363176e-08,3.348514062607225006e-08,3.416851084293086835e-08,3.485188105978948664e-08,3.553525127664810494e-08,3.621862149350672323e-08,3.690199171036534152e-08,3.758536192722395982e-08,3.826873214408257811e-08,3.895210236094119640e-08,3.963547257779981470e-08,4.031884279465843299e-08,4.100221301151705128e-08,4.168558322837566958e-08,4.236895344523428787e-08,4.305232366209290616e-08 +0.000000000000000000e+00,6.795435245700861107e-10,1.359087049140172221e-09,2.038630573710258539e-09,2.718174098280344857e-09,3.397717622850431174e-09,4.077261147420517078e-09,4.756804671990602982e-09,5.436348196560688886e-09,6.115891721130774790e-09,6.795435245700860694e-09,7.474978770270945770e-09,8.154522294841030847e-09,8.834065819411115924e-09,9.513609343981201001e-09,1.019315286855128608e-08,1.087269639312137115e-08,1.155223991769145623e-08,1.223178344226154131e-08,1.291132696683162638e-08,1.359087049140171146e-08,1.427041401597179654e-08,1.494995754054188161e-08,1.562950106511196669e-08,1.630904458968205177e-08,1.698858811425213685e-08,1.766813163882222192e-08,1.834767516339230700e-08,1.902721868796239208e-08,1.970676221253247715e-08,2.038630573710256223e-08,2.106584926167264731e-08,2.174539278624273238e-08,2.242493631081281746e-08,2.310447983538290254e-08,2.378402335995298761e-08,2.446356688452307269e-08,2.514311040909315777e-08,2.582265393366324284e-08,2.650219745823332792e-08,2.718174098280341300e-08,2.786128450737349807e-08,2.854082803194358315e-08,2.922037155651366823e-08,2.989991508108375661e-08,3.057945860565384169e-08,3.125900213022392677e-08,3.193854565479401184e-08,3.261808917936409692e-08,3.329763270393418200e-08,3.397717622850426707e-08,3.465671975307435215e-08,3.533626327764443723e-08,3.601580680221452230e-08,3.669535032678460738e-08,3.737489385135469246e-08,3.805443737592477753e-08,3.873398090049486261e-08,3.941352442506494769e-08,4.009306794963503276e-08,4.077261147420511784e-08,4.145215499877520292e-08,4.213169852334528799e-08,4.281124204791537307e-08 +0.000000000000000000e+00,6.800495171901818953e-10,1.360099034380363791e-09,2.040148551570545686e-09,2.720198068760727581e-09,3.400247585950909476e-09,4.080297103141091372e-09,4.760346620331272853e-09,5.440396137521454335e-09,6.120445654711635817e-09,6.800495171901817298e-09,7.480544689091998780e-09,8.160594206282181089e-09,8.840643723472363398e-09,9.520693240662545707e-09,1.020074275785272802e-08,1.088079227504291032e-08,1.156084179223309263e-08,1.224089130942327494e-08,1.292094082661345725e-08,1.360099034380363956e-08,1.428103986099382187e-08,1.496108937818400418e-08,1.564113889537418814e-08,1.632118841256437210e-08,1.700123792975455607e-08,1.768128744694474003e-08,1.836133696413492399e-08,1.904138648132510796e-08,1.972143599851529192e-08,2.040148551570547588e-08,2.108153503289565985e-08,2.176158455008584381e-08,2.244163406727602777e-08,2.312168358446621174e-08,2.380173310165639570e-08,2.448178261884657966e-08,2.516183213603676363e-08,2.584188165322694759e-08,2.652193117041713155e-08,2.720198068760731552e-08,2.788203020479749948e-08,2.856207972198768344e-08,2.924212923917786740e-08,2.992217875636805468e-08,3.060222827355824195e-08,3.128227779074842922e-08,3.196232730793861649e-08,3.264237682512880376e-08,3.332242634231899104e-08,3.400247585950917831e-08,3.468252537669936558e-08,3.536257489388955285e-08,3.604262441107974012e-08,3.672267392826992740e-08,3.740272344546011467e-08,3.808277296265030194e-08,3.876282247984048921e-08,3.944287199703067648e-08,4.012292151422086376e-08,4.080297103141105103e-08,4.148302054860123830e-08,4.216307006579142557e-08,4.284311958298161284e-08 +0.000000000000000000e+00,-6.833702167387781240e-10,-1.366740433477556248e-09,-2.050110650216334476e-09,-2.733480866955112910e-09,-3.416851083693891344e-09,-4.100221300432669778e-09,-4.783591517171447799e-09,-5.466961733910225820e-09,-6.150331950649003840e-09,-6.833702167387781861e-09,-7.517072384126559881e-09,-8.200442600865337902e-09,-8.883812817604115923e-09,-9.567183034342893943e-09,-1.025055325108167196e-08,-1.093392346782044998e-08,-1.161729368455922801e-08,-1.230066390129800603e-08,-1.298403411803678405e-08,-1.366740433477556207e-08,-1.435077455151434009e-08,-1.503414476825311976e-08,-1.571751498499189944e-08,-1.640088520173067911e-08,-1.708425541846945879e-08,-1.776762563520823846e-08,-1.845099585194701814e-08,-1.913436606868579781e-08,-1.981773628542457749e-08,-2.050110650216335716e-08,-2.118447671890213684e-08,-2.186784693564091651e-08,-2.255121715237969619e-08,-2.323458736911847586e-08,-2.391795758585725554e-08,-2.460132780259603521e-08,-2.528469801933481489e-08,-2.596806823607359456e-08,-2.665143845281237424e-08,-2.733480866955115391e-08,-2.801817888628993359e-08,-2.870154910302871326e-08,-2.938491931976749294e-08,-3.006828953650627261e-08,-3.075165975324505560e-08,-3.143502996998383858e-08,-3.211840018672262156e-08,-3.280177040346140455e-08,-3.348514062020018753e-08,-3.416851083693897052e-08,-3.485188105367775350e-08,-3.553525127041653648e-08,-3.621862148715531947e-08,-3.690199170389410245e-08,-3.758536192063288543e-08,-3.826873213737166842e-08,-3.895210235411045140e-08,-3.963547257084923439e-08,-4.031884278758801737e-08,-4.100221300432680035e-08,-4.168558322106558334e-08,-4.236895343780436632e-08,-4.305232365454314930e-08 +0.000000000000000000e+00,-6.795435244528467006e-10,-1.359087048905693401e-09,-2.038630573358540102e-09,-2.718174097811386802e-09,-3.397717622264233503e-09,-4.077261146717080204e-09,-4.756804671169926491e-09,-5.436348195622772778e-09,-6.115891720075619065e-09,-6.795435244528465352e-09,-7.474978768981311639e-09,-8.154522293434158753e-09,-8.834065817887005867e-09,-9.513609342339852981e-09,-1.019315286679270010e-08,-1.087269639124554721e-08,-1.155223991569839432e-08,-1.223178344015124144e-08,-1.291132696460408855e-08,-1.359087048905693567e-08,-1.427041401350978278e-08,-1.494995753796262989e-08,-1.562950106241547701e-08,-1.630904458686832412e-08,-1.698858811132117124e-08,-1.766813163577401835e-08,-1.834767516022686547e-08,-1.902721868467971258e-08,-1.970676220913255969e-08,-2.038630573358540681e-08,-2.106584925803825392e-08,-2.174539278249110104e-08,-2.242493630694394815e-08,-2.310447983139679526e-08,-2.378402335584964238e-08,-2.446356688030248949e-08,-2.514311040475533661e-08,-2.582265392920818372e-08,-2.650219745366103084e-08,-2.718174097811387795e-08,-2.786128450256672506e-08,-2.854082802701957218e-08,-2.922037155147241929e-08,-2.989991507592526641e-08,-3.057945860037811021e-08,-3.125900212483095402e-08,-3.193854564928379782e-08,-3.261808917373664163e-08,-3.329763269818948543e-08,-3.397717622264232924e-08,-3.465671974709517304e-08,-3.533626327154801685e-08,-3.601580679600086066e-08,-3.669535032045370446e-08,-3.737489384490654827e-08,-3.805443736935939207e-08,-3.873398089381223588e-08,-3.941352441826507968e-08,-4.009306794271792349e-08,-4.077261146717076729e-08,-4.145215499162361110e-08,-4.213169851607645490e-08,-4.281124204052929871e-08 +0.000000000000000000e+00,-6.800495170552861081e-10,-1.360099034110572216e-09,-2.040148551165858324e-09,-2.720198068221144433e-09,-3.400247585276430541e-09,-4.080297102331716649e-09,-4.760346619387003171e-09,-5.440396136442289692e-09,-6.120445653497576214e-09,-6.800495170552862736e-09,-7.480544687608149258e-09,-8.160594204663434952e-09,-8.840643721718720647e-09,-9.520693238774006341e-09,-1.020074275582929204e-08,-1.088079227288457773e-08,-1.156084178993986342e-08,-1.224089130699514912e-08,-1.292094082405043481e-08,-1.360099034110572051e-08,-1.428103985816100620e-08,-1.496108937521629190e-08,-1.564113889227157925e-08,-1.632118840932686660e-08,-1.700123792638215394e-08,-1.768128744343744129e-08,-1.836133696049272864e-08,-1.904138647754801599e-08,-1.972143599460330334e-08,-2.040148551165859069e-08,-2.108153502871387804e-08,-2.176158454576916539e-08,-2.244163406282445274e-08,-2.312168357987974008e-08,-2.380173309693502743e-08,-2.448178261399031478e-08,-2.516183213104560213e-08,-2.584188164810088948e-08,-2.652193116515617683e-08,-2.720198068221146418e-08,-2.788203019926675153e-08,-2.856207971632203888e-08,-2.924212923337732623e-08,-2.992217875043261688e-08,-3.060222826748790754e-08,-3.128227778454319820e-08,-3.196232730159848886e-08,-3.264237681865377951e-08,-3.332242633570907017e-08,-3.400247585276436083e-08,-3.468252536981965149e-08,-3.536257488687494214e-08,-3.604262440393023280e-08,-3.672267392098552346e-08,-3.740272343804081412e-08,-3.808277295509610477e-08,-3.876282247215139543e-08,-3.944287198920668609e-08,-4.012292150626197675e-08,-4.080297102331726740e-08,-4.148302054037255806e-08,-4.216307005742784872e-08,-4.284311957448313938e-08 +0.000000000000000000e+00,6.949577304215222106e-10,1.389915460843044421e-09,2.084873191264566839e-09,2.779830921686089256e-09,3.474788652107611673e-09,4.169746382529133677e-09,4.864704112950655681e-09,5.559661843372177685e-09,6.254619573793699689e-09,6.949577304215221693e-09,7.644535034636742869e-09,8.339492765058264046e-09,9.034450495479785222e-09,9.729408225901306399e-09,1.042436595632282758e-08,1.111932368674434875e-08,1.181428141716586993e-08,1.250923914758739111e-08,1.320419687800891228e-08,1.389915460843043346e-08,1.459411233885195464e-08,1.528907006927347581e-08,1.598402779969499699e-08,1.667898553011651817e-08,1.737394326053803934e-08,1.806890099095956052e-08,1.876385872138108170e-08,1.945881645180260287e-08,2.015377418222412405e-08,2.084873191264564523e-08,2.154368964306716640e-08,2.223864737348868758e-08,2.293360510391020876e-08,2.362856283433172993e-08,2.432352056475325111e-08,2.501847829517477229e-08,2.571343602559629346e-08,2.640839375601781464e-08,2.710335148643933582e-08,2.779830921686085699e-08,2.849326694728237817e-08,2.918822467770389935e-08,2.988318240812542383e-08,3.057814013854694501e-08,3.127309786896846618e-08,3.196805559938998736e-08,3.266301332981150854e-08,3.335797106023302971e-08,3.405292879065455089e-08,3.474788652107607207e-08,3.544284425149759324e-08,3.613780198191911442e-08,3.683275971234063560e-08,3.752771744276215677e-08,3.822267517318367795e-08,3.891763290360519913e-08,3.961259063402672030e-08,4.030754836444824148e-08,4.100250609486976266e-08,4.169746382529128383e-08,4.239242155571280501e-08,4.308737928613432619e-08,4.378233701655584736e-08 +0.000000000000000000e+00,6.880021272566086376e-10,1.376004254513217275e-09,2.064006381769825913e-09,2.752008509026434550e-09,3.440010636283043188e-09,4.128012763539651825e-09,4.816014890796260463e-09,5.504017018052869101e-09,6.192019145309477738e-09,6.880021272566086376e-09,7.568023399822695013e-09,8.256025527079303651e-09,8.944027654335912288e-09,9.632029781592520926e-09,1.032003190884912956e-08,1.100803403610573820e-08,1.169603616336234684e-08,1.238403829061895548e-08,1.307204041787556411e-08,1.376004254513217275e-08,1.444804467238878139e-08,1.513604679964539003e-08,1.582404892690199866e-08,1.651205105415860730e-08,1.720005318141521594e-08,1.788805530867182458e-08,1.857605743592843321e-08,1.926405956318504185e-08,1.995206169044165049e-08,2.064006381769825913e-08,2.132806594495486776e-08,2.201606807221147640e-08,2.270407019946808504e-08,2.339207232672469368e-08,2.408007445398130231e-08,2.476807658123791095e-08,2.545607870849451959e-08,2.614408083575112823e-08,2.683208296300773686e-08,2.752008509026434550e-08,2.820808721752095414e-08,2.889608934477756278e-08,2.958409147203417142e-08,3.027209359929078005e-08,3.096009572654738869e-08,3.164809785380399733e-08,3.233609998106060597e-08,3.302410210831721460e-08,3.371210423557382324e-08,3.440010636283043188e-08,3.508810849008704052e-08,3.577611061734364915e-08,3.646411274460025779e-08,3.715211487185686643e-08,3.784011699911347507e-08,3.852811912637008370e-08,3.921612125362669234e-08,3.990412338088330098e-08,4.059212550813990962e-08,4.128012763539651825e-08,4.196812976265312689e-08,4.265613188990973553e-08,4.334413401716634417e-08 +0.000000000000000000e+00,6.847263178725805081e-10,1.369452635745161016e-09,2.054178953617741524e-09,2.738905271490322032e-09,3.423631589362902540e-09,4.108357907235483048e-09,4.793084225108063970e-09,5.477810542980644892e-09,6.162536860853225813e-09,6.847263178725806735e-09,7.531989496598387657e-09,8.216715814470967751e-09,8.901442132343547846e-09,9.586168450216127940e-09,1.027089476808870803e-08,1.095562108596128813e-08,1.164034740383386822e-08,1.232507372170644832e-08,1.300980003957902841e-08,1.369452635745160851e-08,1.437925267532418860e-08,1.506397899319676870e-08,1.574870531106934879e-08,1.643343162894192888e-08,1.711815794681450898e-08,1.780288426468708907e-08,1.848761058255966917e-08,1.917233690043224926e-08,1.985706321830482936e-08,2.054178953617740945e-08,2.122651585404998955e-08,2.191124217192256964e-08,2.259596848979514973e-08,2.328069480766772983e-08,2.396542112554030992e-08,2.465014744341289002e-08,2.533487376128547011e-08,2.601960007915805021e-08,2.670432639703063030e-08,2.738905271490321040e-08,2.807377903277579049e-08,2.875850535064837059e-08,2.944323166852095068e-08,3.012795798639353077e-08,3.081268430426611087e-08,3.149741062213869096e-08,3.218213694001127106e-08,3.286686325788385115e-08,3.355158957575643125e-08,3.423631589362901134e-08,3.492104221150159144e-08,3.560576852937417153e-08,3.629049484724675162e-08,3.697522116511933172e-08,3.765994748299191181e-08,3.834467380086449191e-08,3.902940011873707200e-08,3.971412643660965210e-08,4.039885275448223219e-08,4.108357907235481229e-08,4.176830539022739238e-08,4.245303170809997247e-08,4.313775802597255257e-08 +0.000000000000000000e+00,-6.949577303029417339e-10,-1.389915460605883468e-09,-2.084873190908825409e-09,-2.779830921211767349e-09,-3.474788651514709290e-09,-4.169746381817650817e-09,-4.864704112120592344e-09,-5.559661842423533871e-09,-6.254619572726475398e-09,-6.949577303029416925e-09,-7.644535033332358453e-09,-8.339492763635299980e-09,-9.034450493938241507e-09,-9.729408224241183034e-09,-1.042436595454412456e-08,-1.111932368484706609e-08,-1.181428141515000762e-08,-1.250923914545294914e-08,-1.320419687575589067e-08,-1.389915460605883220e-08,-1.459411233636177372e-08,-1.528907006666471691e-08,-1.598402779696766009e-08,-1.667898552727060327e-08,-1.737394325757354645e-08,-1.806890098787648963e-08,-1.876385871817943281e-08,-1.945881644848237599e-08,-2.015377417878531918e-08,-2.084873190908826236e-08,-2.154368963939120554e-08,-2.223864736969414872e-08,-2.293360509999709190e-08,-2.362856283030003508e-08,-2.432352056060297826e-08,-2.501847829090592145e-08,-2.571343602120886463e-08,-2.640839375151180781e-08,-2.710335148181475099e-08,-2.779830921211769417e-08,-2.849326694242063735e-08,-2.918822467272358053e-08,-2.988318240302652372e-08,-3.057814013332946690e-08,-3.127309786363241008e-08,-3.196805559393535326e-08,-3.266301332423829644e-08,-3.335797105454123962e-08,-3.405292878484418280e-08,-3.474788651514712599e-08,-3.544284424545006917e-08,-3.613780197575301235e-08,-3.683275970605595553e-08,-3.752771743635889871e-08,-3.822267516666184189e-08,-3.891763289696478508e-08,-3.961259062726772826e-08,-4.030754835757067144e-08,-4.100250608787361462e-08,-4.169746381817655780e-08,-4.239242154847950098e-08,-4.308737927878244416e-08,-4.378233700908538735e-08 +0.000000000000000000e+00,-6.880021271361791020e-10,-1.376004254272358204e-09,-2.064006381408537409e-09,-2.752008508544716822e-09,-3.440010635680896234e-09,-4.128012762817075646e-09,-4.816014889953255058e-09,-5.504017017089434470e-09,-6.192019144225613882e-09,-6.880021271361793295e-09,-7.568023398497971880e-09,-8.256025525634149637e-09,-8.944027652770327395e-09,-9.632029779906505153e-09,-1.032003190704268291e-08,-1.100803403417886067e-08,-1.169603616131503843e-08,-1.238403828845121618e-08,-1.307204041558739394e-08,-1.376004254272357170e-08,-1.444804466985974946e-08,-1.513604679699592722e-08,-1.582404892413210497e-08,-1.651205105126828273e-08,-1.720005317840446049e-08,-1.788805530554063825e-08,-1.857605743267681600e-08,-1.926405955981299376e-08,-1.995206168694917152e-08,-2.064006381408534928e-08,-2.132806594122152704e-08,-2.201606806835770479e-08,-2.270407019549388255e-08,-2.339207232263006031e-08,-2.408007444976623807e-08,-2.476807657690241583e-08,-2.545607870403859358e-08,-2.614408083117477134e-08,-2.683208295831094910e-08,-2.752008508544712686e-08,-2.820808721258330461e-08,-2.889608933971948237e-08,-2.958409146685566013e-08,-3.027209359399183458e-08,-3.096009572112800572e-08,-3.164809784826417686e-08,-3.233609997540034800e-08,-3.302410210253651914e-08,-3.371210422967269028e-08,-3.440010635680886142e-08,-3.508810848394503256e-08,-3.577611061108120370e-08,-3.646411273821737484e-08,-3.715211486535354598e-08,-3.784011699248971712e-08,-3.852811911962588826e-08,-3.921612124676205940e-08,-3.990412337389823054e-08,-4.059212550103440168e-08,-4.128012762817057282e-08,-4.196812975530674397e-08,-4.265613188244291511e-08,-4.334413400957908625e-08 +0.000000000000000000e+00,-6.847263177311810134e-10,-1.369452635462362027e-09,-2.054178953193543040e-09,-2.738905270924724054e-09,-3.423631588655905067e-09,-4.108357906387086080e-09,-4.793084224118267094e-09,-5.477810541849448107e-09,-6.162536859580629120e-09,-6.847263177311810134e-09,-7.531989495042990320e-09,-8.216715812774170506e-09,-8.901442130505350692e-09,-9.586168448236530879e-09,-1.027089476596771106e-08,-1.095562108369889125e-08,-1.164034740143007144e-08,-1.232507371916125162e-08,-1.300980003689243181e-08,-1.369452635462361200e-08,-1.437925267235479218e-08,-1.506397899008597402e-08,-1.574870530781715586e-08,-1.643343162554833770e-08,-1.711815794327951954e-08,-1.780288426101070138e-08,-1.848761057874188323e-08,-1.917233689647306507e-08,-1.985706321420424691e-08,-2.054178953193542875e-08,-2.122651584966661059e-08,-2.191124216739779243e-08,-2.259596848512897427e-08,-2.328069480286015611e-08,-2.396542112059133795e-08,-2.465014743832251979e-08,-2.533487375605370163e-08,-2.601960007378488347e-08,-2.670432639151606531e-08,-2.738905270924724715e-08,-2.807377902697842899e-08,-2.875850534470961083e-08,-2.944323166244079267e-08,-3.012795798017197451e-08,-3.081268429790315966e-08,-3.149741061563434481e-08,-3.218213693336552996e-08,-3.286686325109671511e-08,-3.355158956882790026e-08,-3.423631588655908541e-08,-3.492104220429027056e-08,-3.560576852202145571e-08,-3.629049483975264086e-08,-3.697522115748382601e-08,-3.765994747521501116e-08,-3.834467379294619631e-08,-3.902940011067738146e-08,-3.971412642840856660e-08,-4.039885274613975175e-08,-4.108357906387093690e-08,-4.176830538160212205e-08,-4.245303169933330720e-08,-4.313775801706449235e-08 +0.000000000000000000e+00,7.074469587208958514e-10,1.414893917441791703e-09,2.122340876162687348e-09,2.829787834883582992e-09,3.537234793604478637e-09,4.244681752325374695e-09,4.952128711046270753e-09,5.659575669767166812e-09,6.367022628488062870e-09,7.074469587208958928e-09,7.781916545929854986e-09,8.489363504650751044e-09,9.196810463371647103e-09,9.904257422092543161e-09,1.061170438081343922e-08,1.131915133953433528e-08,1.202659829825523134e-08,1.273404525697612739e-08,1.344149221569702345e-08,1.414893917441791951e-08,1.485638613313881557e-08,1.556383309185971328e-08,1.627128005058060934e-08,1.697872700930150540e-08,1.768617396802240146e-08,1.839362092674329751e-08,1.910106788546419357e-08,1.980851484418508963e-08,2.051596180290598569e-08,2.122340876162688175e-08,2.193085572034777781e-08,2.263830267906867386e-08,2.334574963778956992e-08,2.405319659651046598e-08,2.476064355523136204e-08,2.546809051395225810e-08,2.617553747267315415e-08,2.688298443139405021e-08,2.759043139011494627e-08,2.829787834883584233e-08,2.900532530755673839e-08,2.971277226627763445e-08,3.042021922499853050e-08,3.112766618371942656e-08,3.183511314244032262e-08,3.254256010116121868e-08,3.325000705988211474e-08,3.395745401860301080e-08,3.466490097732390685e-08,3.537234793604480291e-08,3.607979489476569897e-08,3.678724185348659503e-08,3.749468881220749109e-08,3.820213577092838714e-08,3.890958272964928320e-08,3.961702968837017926e-08,4.032447664709107532e-08,4.103192360581197138e-08,4.173937056453286744e-08,4.244681752325376349e-08,4.315426448197465955e-08,4.386171144069555561e-08,4.456915839941645167e-08 +0.000000000000000000e+00,5.336216608236110226e-20,1.067243321647222045e-19,1.600864982470833128e-19,2.134486643294444331e-19,2.668108304118055294e-19,3.201729964941666256e-19,3.735351625765277219e-19,4.268973286588888181e-19,4.802594947412499144e-19,5.336216608236110588e-19,5.869838269059722032e-19,6.403459929883333475e-19,6.937081590706944919e-19,7.470703251530556363e-19,8.004324912354167807e-19,8.537946573177779251e-19,9.071568234001391658e-19,9.605189894825004065e-19,1.013881155564861647e-18,1.067243321647222888e-18,1.120605487729584129e-18,1.173967653811945369e-18,1.227329819894306610e-18,1.280691985976667851e-18,1.334054152059029091e-18,1.387416318141390332e-18,1.440778484223751573e-18,1.494140650306112813e-18,1.547502816388474054e-18,1.600864982470835295e-18,1.654227148553196535e-18,1.707589314635557776e-18,1.760951480717919017e-18,1.814313646800280258e-18,1.867675812882641498e-18,1.921037978965002739e-18,1.974400145047363980e-18,2.027762311129725220e-18,2.081124477212086461e-18,2.134486643294447702e-18,2.187848809376808942e-18,2.241210975459170183e-18,2.294573141541531424e-18,2.347935307623892664e-18,2.401297473706253905e-18,2.454659639788615146e-18,2.508021805870976387e-18,2.561383971953337627e-18,2.614746138035698868e-18,2.668108304118060109e-18,2.721470470200421349e-18,2.774832636282782590e-18,2.828194802365143831e-18,2.881556968447505071e-18,2.934919134529866312e-18,2.988281300612227553e-18,3.041643466694588793e-18,3.095005632776950034e-18,3.148367798859311275e-18,3.201729964941672516e-18,3.255092131024033756e-18,3.308454297106394997e-18,3.361816463188756238e-18 +0.000000000000000000e+00,7.014036779734705015e-10,1.402807355946941003e-09,2.104211033920411711e-09,2.805614711893882420e-09,3.507018389867353128e-09,4.208422067840823422e-09,4.909825745814293717e-09,5.611229423787764012e-09,6.312633101761234307e-09,7.014036779734704601e-09,7.715440457708174069e-09,8.416844135681643536e-09,9.118247813655113004e-09,9.819651491628582471e-09,1.052105516960205194e-08,1.122245884757552141e-08,1.192386252554899087e-08,1.262526620352246034e-08,1.332666988149592981e-08,1.402807355946939928e-08,1.472947723744286874e-08,1.543088091541633821e-08,1.613228459338980768e-08,1.683368827136327715e-08,1.753509194933674661e-08,1.823649562731021608e-08,1.893789930528368555e-08,1.963930298325715502e-08,2.034070666123062448e-08,2.104211033920409395e-08,2.174351401717756342e-08,2.244491769515103289e-08,2.314632137312450235e-08,2.384772505109797182e-08,2.454912872907144129e-08,2.525053240704491076e-08,2.595193608501838022e-08,2.665333976299184969e-08,2.735474344096531916e-08,2.805614711893878863e-08,2.875755079691225809e-08,2.945895447488572756e-08,3.016035815285919372e-08,3.086176183083265657e-08,3.156316550880611942e-08,3.226456918677958227e-08,3.296597286475304512e-08,3.366737654272650797e-08,3.436878022069997082e-08,3.507018389867343367e-08,3.577158757664689652e-08,3.647299125462035937e-08,3.717439493259382222e-08,3.787579861056728507e-08,3.857720228854074792e-08,3.927860596651421077e-08,3.998000964448767362e-08,4.068141332246113647e-08,4.138281700043459932e-08,4.208422067840806217e-08,4.278562435638152502e-08,4.348702803435498787e-08,4.418843171232845072e-08 +0.000000000000000000e+00,7.013982618611279243e-10,1.402796523722255849e-09,2.104194785583383670e-09,2.805593047444511284e-09,3.506991309305638898e-09,4.208389571166766512e-09,4.909787833027894126e-09,5.611186094889021740e-09,6.312584356750149354e-09,7.013982618611276968e-09,7.715380880472403755e-09,8.416779142333531370e-09,9.118177404194658984e-09,9.819575666055786598e-09,1.052097392791691421e-08,1.122237218977804183e-08,1.192377045163916944e-08,1.262516871350029705e-08,1.332656697536142467e-08,1.402796523722255228e-08,1.472936349908367990e-08,1.543076176094480751e-08,1.613216002280593512e-08,1.683355828466706274e-08,1.753495654652819035e-08,1.823635480838931797e-08,1.893775307025044558e-08,1.963915133211157320e-08,2.034054959397270081e-08,2.104194785583382842e-08,2.174334611769495604e-08,2.244474437955608365e-08,2.314614264141721127e-08,2.384754090327833888e-08,2.454893916513946649e-08,2.525033742700059411e-08,2.595173568886172172e-08,2.665313395072284934e-08,2.735453221258397695e-08,2.805593047444510457e-08,2.875732873630623218e-08,2.945872699816735979e-08,3.016012526002849072e-08,3.086152352188962164e-08,3.156292178375075256e-08,3.226432004561188348e-08,3.296571830747301441e-08,3.366711656933414533e-08,3.436851483119527625e-08,3.506991309305640718e-08,3.577131135491753810e-08,3.647270961677866902e-08,3.717410787863979994e-08,3.787550614050093087e-08,3.857690440236206179e-08,3.927830266422319271e-08,3.997970092608432364e-08,4.068109918794545456e-08,4.138249744980658548e-08,4.208389571166771640e-08,4.278529397352884733e-08,4.348669223538997825e-08,4.418809049725110917e-08 +0.000000000000000000e+00,3.536968369122464577e-10,7.073936738244929154e-10,1.061090510736739270e-09,1.414787347648985624e-09,1.768484184561231978e-09,2.122181021473478540e-09,2.475877858385725101e-09,2.829574695297971662e-09,3.183271532210218223e-09,3.536968369122464784e-09,3.890665206034711759e-09,4.244362042946958733e-09,4.598058879859205708e-09,4.951755716771452683e-09,5.305452553683699658e-09,5.659149390595946632e-09,6.012846227508193607e-09,6.366543064420440582e-09,6.720239901332687556e-09,7.073936738244934531e-09,7.427633575157181506e-09,7.781330412069428481e-09,8.135027248981675455e-09,8.488724085893922430e-09,8.842420922806169405e-09,9.196117759718416379e-09,9.549814596630663354e-09,9.903511433542910329e-09,1.025720827045515730e-08,1.061090510736740428e-08,1.096460194427965125e-08,1.131829878119189823e-08,1.167199561810414520e-08,1.202569245501639218e-08,1.237938929192863915e-08,1.273308612884088613e-08,1.308678296575313310e-08,1.344047980266538008e-08,1.379417663957762705e-08,1.414787347648987403e-08,1.450157031340212100e-08,1.485526715031436797e-08,1.520896398722661330e-08,1.556266082413886027e-08,1.591635766105110724e-08,1.627005449796335422e-08,1.662375133487560119e-08,1.697744817178784817e-08,1.733114500870009514e-08,1.768484184561234212e-08,1.803853868252458909e-08,1.839223551943683607e-08,1.874593235634908304e-08,1.909962919326133002e-08,1.945332603017357699e-08,1.980702286708582397e-08,2.016071970399807094e-08,2.051441654091031792e-08,2.086811337782256489e-08,2.122181021473481187e-08,2.157550705164705884e-08,2.192920388855930581e-08,2.228290072547155279e-08 +0.000000000000000000e+00,7.060939524646429742e-20,1.412187904929285948e-19,2.118281857393929043e-19,2.824375809858572378e-19,3.530469762323215713e-19,4.236563714787859049e-19,4.942657667252502866e-19,5.648751619717146682e-19,6.354845572181790499e-19,7.060939524646434316e-19,7.767033477111078133e-19,8.473127429575721949e-19,9.179221382040365766e-19,9.885315334505009583e-19,1.059140928696965340e-18,1.129750323943429722e-18,1.200359719189894103e-18,1.270969114436358485e-18,1.341578509682822867e-18,1.412187904929287248e-18,1.482797300175751630e-18,1.553406695422216012e-18,1.624016090668680393e-18,1.694625485915144775e-18,1.765234881161609349e-18,1.835844276408073924e-18,1.906453671654538498e-18,1.977063066901003072e-18,2.047672462147467646e-18,2.118281857393932221e-18,2.188891252640396795e-18,2.259500647886861369e-18,2.330110043133325943e-18,2.400719438379790518e-18,2.471328833626255092e-18,2.541938228872719666e-18,2.612547624119184241e-18,2.683157019365648815e-18,2.753766414612113389e-18,2.824375809858577963e-18,2.894985205105042538e-18,2.965594600351507112e-18,3.036203995597971686e-18,3.106813390844436260e-18,3.177422786090900835e-18,3.248032181337365409e-18,3.318641576583829983e-18,3.389250971830294558e-18,3.459860367076759132e-18,3.530469762323223321e-18,3.601079157569687510e-18,3.671688552816151699e-18,3.742297948062615888e-18,3.812907343309080077e-18,3.883516738555544266e-18,3.954126133802008455e-18,4.024735529048472644e-18,4.095344924294936834e-18,4.165954319541401023e-18,4.236563714787865212e-18,4.307173110034329401e-18,4.377782505280793590e-18,4.448391900527257779e-18 +0.000000000000000000e+00,-7.074469586142619307e-10,-1.414893917228523861e-09,-2.122340875842785999e-09,-2.829787834457048136e-09,-3.537234793071310274e-09,-4.244681751685571998e-09,-4.952128710299833722e-09,-5.659575668914095446e-09,-6.367022627528357170e-09,-7.074469586142618894e-09,-7.781916544756881445e-09,-8.489363503371143996e-09,-9.196810461985406547e-09,-9.904257420599669098e-09,-1.061170437921393165e-08,-1.131915133782819420e-08,-1.202659829644245675e-08,-1.273404525505671930e-08,-1.344149221367098185e-08,-1.414893917228524440e-08,-1.485638613089950696e-08,-1.556383308951376951e-08,-1.627128004812803206e-08,-1.697872700674229461e-08,-1.768617396535655716e-08,-1.839362092397081971e-08,-1.910106788258508226e-08,-1.980851484119934481e-08,-2.051596179981360736e-08,-2.122340875842786992e-08,-2.193085571704213247e-08,-2.263830267565639502e-08,-2.334574963427065757e-08,-2.405319659288492012e-08,-2.476064355149918267e-08,-2.546809051011344522e-08,-2.617553746872770777e-08,-2.688298442734197032e-08,-2.759043138595623288e-08,-2.829787834457049543e-08,-2.900532530318475798e-08,-2.971277226179902053e-08,-3.042021922041328308e-08,-3.112766617902754563e-08,-3.183511313764180818e-08,-3.254256009625607073e-08,-3.325000705487033328e-08,-3.395745401348459584e-08,-3.466490097209885839e-08,-3.537234793071312094e-08,-3.607979488932738349e-08,-3.678724184794164604e-08,-3.749468880655590859e-08,-3.820213576517017114e-08,-3.890958272378443369e-08,-3.961702968239869624e-08,-4.032447664101295880e-08,-4.103192359962722135e-08,-4.173937055824148390e-08,-4.244681751685574645e-08,-4.315426447547000900e-08,-4.386171143408427155e-08,-4.456915839269853410e-08 +0.000000000000000000e+00,-3.536968368055359194e-10,-7.073936736110718388e-10,-1.061090510416607758e-09,-1.414787347222143678e-09,-1.768484184027679597e-09,-2.122181020833215516e-09,-2.475877857638751643e-09,-2.829574694444287769e-09,-3.183271531249823895e-09,-3.536968368055360021e-09,-3.890665204860896147e-09,-4.244362041666431860e-09,-4.598058878471967573e-09,-4.951755715277503285e-09,-5.305452552083038998e-09,-5.659149388888574710e-09,-6.012846225694110423e-09,-6.366543062499646136e-09,-6.720239899305181848e-09,-7.073936736110717561e-09,-7.427633572916253273e-09,-7.781330409721788986e-09,-8.135027246527324699e-09,-8.488724083332860411e-09,-8.842420920138396124e-09,-9.196117756943931837e-09,-9.549814593749467549e-09,-9.903511430555003262e-09,-1.025720826736053897e-08,-1.061090510416607469e-08,-1.096460194097161040e-08,-1.131829877777714611e-08,-1.167199561458268182e-08,-1.202569245138821754e-08,-1.237938928819375325e-08,-1.273308612499928896e-08,-1.308678296180482468e-08,-1.344047979861036039e-08,-1.379417663541589610e-08,-1.414787347222143181e-08,-1.450157030902696753e-08,-1.485526714583250324e-08,-1.520896398263803730e-08,-1.556266081944357135e-08,-1.591635765624910541e-08,-1.627005449305463947e-08,-1.662375132986017353e-08,-1.697744816666570759e-08,-1.733114500347124165e-08,-1.768484184027677570e-08,-1.803853867708230976e-08,-1.839223551388784382e-08,-1.874593235069337788e-08,-1.909962918749891194e-08,-1.945332602430444600e-08,-1.980702286110998005e-08,-2.016071969791551411e-08,-2.051441653472104817e-08,-2.086811337152658223e-08,-2.122181020833211629e-08,-2.157550704513765034e-08,-2.192920388194318440e-08,-2.228290071874871846e-08 +0.000000000000000000e+00,-7.014036778592077008e-10,-1.402807355718415402e-09,-2.104211033577623102e-09,-2.805614711436830803e-09,-3.507018389296038504e-09,-4.208422067155246205e-09,-4.909825745014453905e-09,-5.611229422873661606e-09,-6.312633100732869307e-09,-7.014036778592077008e-09,-7.715440456451284708e-09,-8.416844134310492409e-09,-9.118247812169700110e-09,-9.819651490028907811e-09,-1.052105516788811551e-08,-1.122245884574732321e-08,-1.192386252360653091e-08,-1.262526620146573861e-08,-1.332666987932494631e-08,-1.402807355718415402e-08,-1.472947723504336172e-08,-1.543088091290256942e-08,-1.613228459076177877e-08,-1.683368826862098813e-08,-1.753509194648019748e-08,-1.823649562433940684e-08,-1.893789930219861619e-08,-1.963930298005782555e-08,-2.034070665791703490e-08,-2.104211033577624426e-08,-2.174351401363545361e-08,-2.244491769149466297e-08,-2.314632136935387232e-08,-2.384772504721308168e-08,-2.454912872507229103e-08,-2.525053240293150039e-08,-2.595193608079070974e-08,-2.665333975864991910e-08,-2.735474343650912845e-08,-2.805614711436833781e-08,-2.875755079222754716e-08,-2.945895447008675652e-08,-3.016035814794596587e-08,-3.086176182580517192e-08,-3.156316550366437797e-08,-3.226456918152358401e-08,-3.296597285938279006e-08,-3.366737653724199611e-08,-3.436878021510120215e-08,-3.507018389296040820e-08,-3.577158757081961425e-08,-3.647299124867882029e-08,-3.717439492653802634e-08,-3.787579860439723239e-08,-3.857720228225643843e-08,-3.927860596011564448e-08,-3.998000963797485052e-08,-4.068141331583405657e-08,-4.138281699369326262e-08,-4.208422067155246866e-08,-4.278562434941167471e-08,-4.348702802727088076e-08,-4.418843170513008680e-08 +0.000000000000000000e+00,-7.013982617199877508e-10,-1.402796523439975502e-09,-2.104194785159963149e-09,-2.805593046879950589e-09,-3.506991308599938030e-09,-4.208389570319925471e-09,-4.909787832039912911e-09,-5.611186093759900352e-09,-6.312584355479887792e-09,-7.013982617199875233e-09,-7.715380878919861846e-09,-8.416779140639849287e-09,-9.118177402359836727e-09,-9.819575664079824168e-09,-1.052097392579981161e-08,-1.122237218751979905e-08,-1.192377044923978649e-08,-1.262516871095977393e-08,-1.332656697267976137e-08,-1.402796523439974881e-08,-1.472936349611973625e-08,-1.543076175783972369e-08,-1.613216001955971113e-08,-1.683355828127969857e-08,-1.753495654299968601e-08,-1.823635480471967345e-08,-1.893775306643966090e-08,-1.963915132815964834e-08,-2.034054958987963578e-08,-2.104194785159962322e-08,-2.174334611331961066e-08,-2.244474437503959810e-08,-2.314614263675958554e-08,-2.384754089847957298e-08,-2.454893916019956042e-08,-2.525033742191954786e-08,-2.595173568363953530e-08,-2.665313394535952274e-08,-2.735453220707951018e-08,-2.805593046879949762e-08,-2.875732873051948506e-08,-2.945872699223947250e-08,-3.016012525395945994e-08,-3.086152351567944739e-08,-3.156292177739943483e-08,-3.226432003911942227e-08,-3.296571830083940971e-08,-3.366711656255939715e-08,-3.436851482427938459e-08,-3.506991308599937203e-08,-3.577131134771935947e-08,-3.647270960943934691e-08,-3.717410787115933435e-08,-3.787550613287932179e-08,-3.857690439459930923e-08,-3.927830265631929667e-08,-3.997970091803928411e-08,-4.068109917975927155e-08,-4.138249744147925899e-08,-4.208389570319924643e-08,-4.278529396491923387e-08,-4.348669222663922132e-08,-4.418809048835920876e-08 +0.000000000000000000e+00,6.526614660968279574e-10,1.305322932193655915e-09,1.957984398290484079e-09,2.610645864387312243e-09,3.263307330484140408e-09,3.915968796580968158e-09,4.568630262677795909e-09,5.221291728774623659e-09,5.873953194871451410e-09,6.526614660968279161e-09,7.179276127065106911e-09,7.831937593161934662e-09,8.484599059258763240e-09,9.137260525355591818e-09,9.789921991452420395e-09,1.044258345754924897e-08,1.109524492364607755e-08,1.174790638974290613e-08,1.240056785583973471e-08,1.305322932193656328e-08,1.370589078803339186e-08,1.435855225413022044e-08,1.501121372022704902e-08,1.566387518632387925e-08,1.631653665242070948e-08,1.696919811851753971e-08,1.762185958461436995e-08,1.827452105071120018e-08,1.892718251680803041e-08,1.957984398290486064e-08,2.023250544900169088e-08,2.088516691509852111e-08,2.153782838119535134e-08,2.219048984729218157e-08,2.284315131338901180e-08,2.349581277948584204e-08,2.414847424558267227e-08,2.480113571167950250e-08,2.545379717777633273e-08,2.610645864387316296e-08,2.675912010996999320e-08,2.741178157606682343e-08,2.806444304216365366e-08,2.871710450826048389e-08,2.936976597435731413e-08,3.002242744045414436e-08,3.067508890655097790e-08,3.132775037264781144e-08,3.198041183874464498e-08,3.263307330484147852e-08,3.328573477093831206e-08,3.393839623703514560e-08,3.459105770313197914e-08,3.524371916922881268e-08,3.589638063532564623e-08,3.654904210142247977e-08,3.720170356751931331e-08,3.785436503361614685e-08,3.850702649971298039e-08,3.915968796580981393e-08,3.981234943190664747e-08,4.046501089800348101e-08,4.111767236410031455e-08 +0.000000000000000000e+00,6.538255981360752022e-10,1.307651196272150404e-09,1.961476794408225503e-09,2.615302392544300395e-09,3.269127990680375287e-09,3.922953588816450179e-09,4.576779186952525485e-09,5.230604785088600790e-09,5.884430383224676096e-09,6.538255981360751401e-09,7.192081579496826707e-09,7.845907177632902012e-09,8.499732775768977318e-09,9.153558373905052623e-09,9.807383972041127929e-09,1.046120957017720323e-08,1.111503516831327854e-08,1.176886076644935385e-08,1.242268636458542915e-08,1.307651196272150446e-08,1.373033756085757976e-08,1.438416315899365507e-08,1.503798875712973203e-08,1.569181435526580733e-08,1.634563995340188264e-08,1.699946555153795794e-08,1.765329114967403325e-08,1.830711674781010856e-08,1.896094234594618386e-08,1.961476794408225917e-08,2.026859354221833447e-08,2.092241914035440978e-08,2.157624473849048508e-08,2.223007033662656039e-08,2.288389593476263569e-08,2.353772153289871100e-08,2.419154713103478631e-08,2.484537272917086161e-08,2.549919832730693692e-08,2.615302392544301222e-08,2.680684952357908753e-08,2.746067512171516283e-08,2.811450071985123814e-08,2.876832631798731344e-08,2.942215191612338875e-08,3.007597751425946406e-08,3.072980311239553936e-08,3.138362871053161467e-08,3.203745430866768997e-08,3.269127990680376528e-08,3.334510550493984058e-08,3.399893110307591589e-08,3.465275670121199119e-08,3.530658229934806650e-08,3.596040789748414181e-08,3.661423349562021711e-08,3.726805909375629242e-08,3.792188469189236772e-08,3.857571029002844303e-08,3.922953588816451833e-08,3.988336148630059364e-08,4.053718708443666894e-08,4.119101268257274425e-08 +0.000000000000000000e+00,-2.963424798513572111e-20,-5.926849597027144222e-20,-8.890274395540716333e-20,-1.185369919405428844e-19,-1.481712399256786056e-19,-1.778054879108143267e-19,-2.074397358959500478e-19,-2.370739838810857689e-19,-2.667082318662214900e-19,-2.963424798513572111e-19,-3.259767278364929322e-19,-3.556109758216286533e-19,-3.852452238067643744e-19,-4.148794717919000956e-19,-4.445137197770358648e-19,-4.741479677621716341e-19,-5.037822157473074033e-19,-5.334164637324431726e-19,-5.630507117175789418e-19,-5.926849597027147111e-19,-6.223192076878504804e-19,-6.519534556729862496e-19,-6.815877036581220189e-19,-7.112219516432577881e-19,-7.408561996283935574e-19,-7.704904476135293267e-19,-8.001246955986650959e-19,-8.297589435838008652e-19,-8.593931915689366344e-19,-8.890274395540725000e-19,-9.186616875392083655e-19,-9.482959355243442311e-19,-9.779301835094800967e-19,-1.007564431494615962e-18,-1.037198679479751828e-18,-1.066832927464887693e-18,-1.096467175450023559e-18,-1.126101423435159424e-18,-1.155735671420295290e-18,-1.185369919405431156e-18,-1.215004167390567021e-18,-1.244638415375702887e-18,-1.274272663360838752e-18,-1.303906911345974618e-18,-1.333541159331110483e-18,-1.363175407316246349e-18,-1.392809655301382214e-18,-1.422443903286518080e-18,-1.452078151271653946e-18,-1.481712399256789811e-18,-1.511346647241925677e-18,-1.540980895227061542e-18,-1.570615143212197408e-18,-1.600249391197333273e-18,-1.629883639182469139e-18,-1.659517887167605004e-18,-1.689152135152740870e-18,-1.718786383137876736e-18,-1.748420631123012794e-18,-1.778054879108148852e-18,-1.807689127093284910e-18,-1.837323375078420968e-18,-1.866957623063557026e-18 +0.000000000000000000e+00,9.293432881900981029e-10,1.858686576380196206e-09,2.788029864570294205e-09,3.717373152760391998e-09,4.646716440950490204e-09,5.576059729140588411e-09,6.505403017330686617e-09,7.434746305520784823e-09,8.364089593710883030e-09,9.293432881900980409e-09,1.022277617009107779e-08,1.115211945828117517e-08,1.208146274647127255e-08,1.301080603466136993e-08,1.394014932285146730e-08,1.486949261104156468e-08,1.579883589923166206e-08,1.672817918742175944e-08,1.765752247561185682e-08,1.858686576380195420e-08,1.951620905199205158e-08,2.044555234018214896e-08,2.137489562837224634e-08,2.230423891656234372e-08,2.323358220475244110e-08,2.416292549294253847e-08,2.509226878113263585e-08,2.602161206932273323e-08,2.695095535751283061e-08,2.788029864570292799e-08,2.880964193389302537e-08,2.973898522208312275e-08,3.066832851027322013e-08,3.159767179846331751e-08,3.252701508665341489e-08,3.345635837484351227e-08,3.438570166303360965e-08,3.531504495122370702e-08,3.624438823941380440e-08,3.717373152760390178e-08,3.810307481579399916e-08,3.903241810398409654e-08,3.996176139217419392e-08,4.089110468036429130e-08,4.182044796855438868e-08,4.274979125674448606e-08,4.367913454493458344e-08,4.460847783312468082e-08,4.553782112131477820e-08,4.646716440950487557e-08,4.739650769769497295e-08,4.832585098588507033e-08,4.925519427407516771e-08,5.018453756226526509e-08,5.111388085045536247e-08,5.204322413864545985e-08,5.297256742683555723e-08,5.390191071502565461e-08,5.483125400321575199e-08,5.576059729140584937e-08,5.668994057959594674e-08,5.761928386778604412e-08,5.854862715597614150e-08 +0.000000000000000000e+00,6.266050607570101443e-10,1.253210121514020289e-09,1.879815182271030433e-09,2.506420243028040577e-09,3.133025303785050721e-09,3.759630364542060866e-09,4.386235425299071010e-09,5.012840486056081154e-09,5.639445546813091298e-09,6.266050607570101443e-09,6.892655668327111587e-09,7.519260729084121731e-09,8.145865789841132703e-09,8.772470850598143674e-09,9.399075911355154645e-09,1.002568097211216562e-08,1.065228603286917659e-08,1.127889109362618756e-08,1.190549615438319853e-08,1.253210121514020950e-08,1.315870627589722047e-08,1.378531133665423145e-08,1.441191639741124242e-08,1.503852145816825339e-08,1.566512651892526436e-08,1.629173157968227533e-08,1.691833664043928630e-08,1.754494170119629727e-08,1.817154676195330825e-08,1.879815182271031922e-08,1.942475688346733019e-08,2.005136194422434116e-08,2.067796700498135213e-08,2.130457206573836310e-08,2.193117712649537407e-08,2.255778218725238505e-08,2.318438724800939602e-08,2.381099230876640699e-08,2.443759736952341796e-08,2.506420243028042893e-08,2.569080749103743990e-08,2.631741255179445087e-08,2.694401761255146185e-08,2.757062267330847282e-08,2.819722773406548379e-08,2.882383279482249476e-08,2.945043785557950573e-08,3.007704291633651339e-08,3.070364797709351775e-08,3.133025303785052210e-08,3.195685809860752646e-08,3.258346315936453081e-08,3.321006822012153516e-08,3.383667328087853952e-08,3.446327834163554387e-08,3.508988340239254823e-08,3.571648846314955258e-08,3.634309352390655693e-08,3.696969858466356129e-08,3.759630364542056564e-08,3.822290870617757000e-08,3.884951376693457435e-08,3.947611882769157870e-08 +0.000000000000000000e+00,7.461537050418950595e-10,1.492307410083790119e-09,2.238461115125685385e-09,2.984614820167580651e-09,3.730768525209475918e-09,4.476922230251370770e-09,5.223075935293265623e-09,5.969229640335160476e-09,6.715383345377055328e-09,7.461537050418950181e-09,8.207690755460844206e-09,8.953844460502738232e-09,9.699998165544632257e-09,1.044615187058652628e-08,1.119230557562842031e-08,1.193845928067031433e-08,1.268461298571220836e-08,1.343076669075410238e-08,1.417692039579599641e-08,1.492307410083789044e-08,1.566922780587978446e-08,1.641538151092167849e-08,1.716153521596357251e-08,1.790768892100546654e-08,1.865384262604736056e-08,1.939999633108925459e-08,2.014615003613114861e-08,2.089230374117304264e-08,2.163845744621493667e-08,2.238461115125683069e-08,2.313076485629872472e-08,2.387691856134061874e-08,2.462307226638251277e-08,2.536922597142440679e-08,2.611537967646630082e-08,2.686153338150819484e-08,2.760768708655008887e-08,2.835384079159198289e-08,2.909999449663387692e-08,2.984614820167577425e-08,3.059230190671767490e-08,3.133845561175957554e-08,3.208460931680147618e-08,3.283076302184337683e-08,3.357691672688527747e-08,3.432307043192717811e-08,3.506922413696907875e-08,3.581537784201097940e-08,3.656153154705288004e-08,3.730768525209478068e-08,3.805383895713668133e-08,3.879999266217858197e-08,3.954614636722048261e-08,4.029230007226238326e-08,4.103845377730428390e-08,4.178460748234618454e-08,4.253076118738808518e-08,4.327691489242998583e-08,4.402306859747188647e-08,4.476922230251378711e-08,4.551537600755568776e-08,4.626152971259758840e-08,4.700768341763948904e-08 +0.000000000000000000e+00,3.257847359349260942e-10,6.515694718698521884e-10,9.773542078047783343e-10,1.303138943739704584e-09,1.628923679674630833e-09,1.954708415609557082e-09,2.280493151544483125e-09,2.606277887479409167e-09,2.932062623414335210e-09,3.257847359349261252e-09,3.583632095284187295e-09,3.909416831219113337e-09,4.235201567154039380e-09,4.560986303088965422e-09,4.886771039023891465e-09,5.212555774958817507e-09,5.538340510893743549e-09,5.864125246828669592e-09,6.189909982763595634e-09,6.515694718698521677e-09,6.841479454633447719e-09,7.167264190568373762e-09,7.493048926503300632e-09,7.818833662438228328e-09,8.144618398373156025e-09,8.470403134308083722e-09,8.796187870243011419e-09,9.121972606177939116e-09,9.447757342112866813e-09,9.773542078047794510e-09,1.009932681398272221e-08,1.042511154991764990e-08,1.075089628585257760e-08,1.107668102178750530e-08,1.140246575772243299e-08,1.172825049365736069e-08,1.205403522959228839e-08,1.237981996552721608e-08,1.270560470146214378e-08,1.303138943739707148e-08,1.335717417333199917e-08,1.368295890926692687e-08,1.400874364520185457e-08,1.433452838113678227e-08,1.466031311707170996e-08,1.498609785300663766e-08,1.531188258894156536e-08,1.563766732487649305e-08,1.596345206081142075e-08,1.628923679674634845e-08,1.661502153268127614e-08,1.694080626861620384e-08,1.726659100455113154e-08,1.759237574048605923e-08,1.791816047642098693e-08,1.824394521235591463e-08,1.856972994829084232e-08,1.889551468422577002e-08,1.922129942016069772e-08,1.954708415609562542e-08,1.987286889203055311e-08,2.019865362796548081e-08,2.052443836390040851e-08 +0.000000000000000000e+00,-2.562188121154553831e-20,-5.124376242309107663e-20,-7.686564363463661193e-20,-1.024875248461821412e-19,-1.281094060577276705e-19,-1.537312872692731998e-19,-1.793531684808187291e-19,-2.049750496923642584e-19,-2.305969309039097876e-19,-2.562188121154553410e-19,-2.818406933270008944e-19,-3.074625745385464477e-19,-3.330844557500920011e-19,-3.587063369616375544e-19,-3.843282181731831078e-19,-4.099500993847286612e-19,-4.355719805962742145e-19,-4.611938618078197679e-19,-4.868157430193653212e-19,-5.124376242309108746e-19,-5.380595054424564280e-19,-5.636813866540019813e-19,-5.893032678655475347e-19,-6.149251490770930880e-19,-6.405470302886386414e-19,-6.661689115001841948e-19,-6.917907927117297481e-19,-7.174126739232753015e-19,-7.430345551348208548e-19,-7.686564363463664082e-19,-7.942783175579119616e-19,-8.199001987694575149e-19,-8.455220799810030683e-19,-8.711439611925486216e-19,-8.967658424040940787e-19,-9.223877236156395358e-19,-9.480096048271849928e-19,-9.736314860387304499e-19,-9.992533672502759070e-19,-1.024875248461821364e-18,-1.050497129673366821e-18,-1.076119010884912278e-18,-1.101740892096457735e-18,-1.127362773308003192e-18,-1.152984654519548649e-18,-1.178606535731094106e-18,-1.204228416942639563e-18,-1.229850298154185021e-18,-1.255472179365730478e-18,-1.281094060577275935e-18,-1.306715941788821392e-18,-1.332337823000366849e-18,-1.357959704211912306e-18,-1.383581585423457763e-18,-1.409203466635003220e-18,-1.434825347846548677e-18,-1.460447229058094134e-18,-1.486069110269639591e-18,-1.511690991481185048e-18,-1.537312872692730505e-18,-1.562934753904275962e-18,-1.588556635115821419e-18,-1.614178516327366876e-18 +0.000000000000000000e+00,-6.526614661558571169e-10,-1.305322932311714234e-09,-1.957984398467571454e-09,-2.610645864623428881e-09,-3.263307330779286308e-09,-3.915968796935143735e-09,-4.568630263091001576e-09,-5.221291729246859417e-09,-5.873953195402717257e-09,-6.526614661558575098e-09,-7.179276127714432939e-09,-7.831937593870290779e-09,-8.484599060026148620e-09,-9.137260526182006461e-09,-9.789921992337864302e-09,-1.044258345849372214e-08,-1.109524492464957998e-08,-1.174790639080543782e-08,-1.240056785696129566e-08,-1.305322932311715350e-08,-1.370589078927301135e-08,-1.435855225542886919e-08,-1.501121372158472703e-08,-1.566387518774058487e-08,-1.631653665389644271e-08,-1.696919812005230055e-08,-1.762185958620815839e-08,-1.827452105236401623e-08,-1.892718251851987407e-08,-1.957984398467573191e-08,-2.023250545083158975e-08,-2.088516691698744759e-08,-2.153782838314330543e-08,-2.219048984929916327e-08,-2.284315131545502112e-08,-2.349581278161087896e-08,-2.414847424776673680e-08,-2.480113571392259464e-08,-2.545379718007845248e-08,-2.610645864623431032e-08,-2.675912011239016816e-08,-2.741178157854602600e-08,-2.806444304470188384e-08,-2.871710451085774168e-08,-2.936976597701359952e-08,-3.002242744316945405e-08,-3.067508890932530859e-08,-3.132775037548116312e-08,-3.198041184163701765e-08,-3.263307330779287218e-08,-3.328573477394872671e-08,-3.393839624010458125e-08,-3.459105770626043578e-08,-3.524371917241629031e-08,-3.589638063857214484e-08,-3.654904210472799937e-08,-3.720170357088385391e-08,-3.785436503703970844e-08,-3.850702650319556297e-08,-3.915968796935141750e-08,-3.981234943550727203e-08,-4.046501090166312657e-08,-4.111767236781898110e-08 +0.000000000000000000e+00,-6.538255981478289217e-10,-1.307651196295657843e-09,-1.961476794443486972e-09,-2.615302392591316100e-09,-3.269127990739145229e-09,-3.922953588886973944e-09,-4.576779187034802659e-09,-5.230604785182631373e-09,-5.884430383330460088e-09,-6.538255981478288803e-09,-7.192081579626117518e-09,-7.845907177773946233e-09,-8.499732775921775775e-09,-9.153558374069605317e-09,-9.807383972217434859e-09,-1.046120957036526440e-08,-1.111503516851309394e-08,-1.176886076666092349e-08,-1.242268636480875303e-08,-1.307651196295658257e-08,-1.373033756110441211e-08,-1.438416315925224165e-08,-1.503798875740007120e-08,-1.569181435554790239e-08,-1.634563995369573359e-08,-1.699946555184356478e-08,-1.765329114999139598e-08,-1.830711674813922718e-08,-1.896094234628705837e-08,-1.961476794443488957e-08,-2.026859354258272077e-08,-2.092241914073055196e-08,-2.157624473887838316e-08,-2.223007033702621436e-08,-2.288389593517404555e-08,-2.353772153332187675e-08,-2.419154713146970795e-08,-2.484537272961753914e-08,-2.549919832776537034e-08,-2.615302392591320153e-08,-2.680684952406103273e-08,-2.746067512220886393e-08,-2.811450072035669512e-08,-2.876832631850452632e-08,-2.942215191665235752e-08,-3.007597751480018871e-08,-3.072980311294801660e-08,-3.138362871109584449e-08,-3.203745430924367238e-08,-3.269127990739150026e-08,-3.334510550553932815e-08,-3.399893110368715604e-08,-3.465275670183498393e-08,-3.530658229998281181e-08,-3.596040789813063970e-08,-3.661423349627846759e-08,-3.726805909442629548e-08,-3.792188469257412337e-08,-3.857571029072195125e-08,-3.922953588886977914e-08,-3.988336148701760703e-08,-4.053718708516543492e-08,-4.119101268331326280e-08 +0.000000000000000000e+00,-3.257847359941405421e-10,-6.515694719882810842e-10,-9.773542079824215747e-10,-1.303138943976561962e-09,-1.628923679970702349e-09,-1.954708415964842736e-09,-2.280493151958983330e-09,-2.606277887953123923e-09,-2.932062623947264517e-09,-3.257847359941405111e-09,-3.583632095935545705e-09,-3.909416831929686299e-09,-4.235201567923826892e-09,-4.560986303917967486e-09,-4.886771039912108080e-09,-5.212555775906248674e-09,-5.538340511900389268e-09,-5.864125247894529862e-09,-6.189909983888670455e-09,-6.515694719882811049e-09,-6.841479455876951643e-09,-7.167264191871092237e-09,-7.493048927865233658e-09,-7.818833663859374252e-09,-8.144618399853514845e-09,-8.470403135847655439e-09,-8.796187871841796033e-09,-9.121972607835936627e-09,-9.447757343830077221e-09,-9.773542079824217815e-09,-1.009932681581835841e-08,-1.042511155181249900e-08,-1.075089628780663960e-08,-1.107668102380078019e-08,-1.140246575979492078e-08,-1.172825049578906138e-08,-1.205403523178320197e-08,-1.237981996777734257e-08,-1.270560470377148316e-08,-1.303138943976562375e-08,-1.335717417575976435e-08,-1.368295891175390494e-08,-1.400874364774804553e-08,-1.433452838374218613e-08,-1.466031311973632672e-08,-1.498609785573046732e-08,-1.531188259172460791e-08,-1.563766732771874850e-08,-1.596345206371288910e-08,-1.628923679970702969e-08,-1.661502153570117028e-08,-1.694080627169531088e-08,-1.726659100768945147e-08,-1.759237574368359207e-08,-1.791816047967773266e-08,-1.824394521567187325e-08,-1.856972995166601385e-08,-1.889551468766015444e-08,-1.922129942365429504e-08,-1.954708415964843563e-08,-1.987286889564257622e-08,-2.019865363163671682e-08,-2.052443836763085741e-08 +0.000000000000000000e+00,-9.293432882411384554e-10,-1.858686576482276911e-09,-2.788029864723415263e-09,-3.717373152964553408e-09,-4.646716441205691967e-09,-5.576059729446830526e-09,-6.505403017687969085e-09,-7.434746305929107643e-09,-8.364089594170246202e-09,-9.293432882411383934e-09,-1.022277617065252167e-08,-1.115211945889365940e-08,-1.208146274713479713e-08,-1.301080603537593486e-08,-1.394014932361707259e-08,-1.486949261185821032e-08,-1.579883590009934806e-08,-1.672817918834048579e-08,-1.765752247658162352e-08,-1.858686576482276125e-08,-1.951620905306389898e-08,-2.044555234130503671e-08,-2.137489562954617445e-08,-2.230423891778731218e-08,-2.323358220602844991e-08,-2.416292549426958764e-08,-2.509226878251072537e-08,-2.602161207075186310e-08,-2.695095535899300084e-08,-2.788029864723413857e-08,-2.880964193547527630e-08,-2.973898522371641403e-08,-3.066832851195755176e-08,-3.159767180019868949e-08,-3.252701508843982723e-08,-3.345635837668096496e-08,-3.438570166492210269e-08,-3.531504495316324042e-08,-3.624438824140437815e-08,-3.717373152964551588e-08,-3.810307481788665362e-08,-3.903241810612779135e-08,-3.996176139436892908e-08,-4.089110468261006681e-08,-4.182044797085120454e-08,-4.274979125909234227e-08,-4.367913454733348001e-08,-4.460847783557461774e-08,-4.553782112381575547e-08,-4.646716441205689320e-08,-4.739650770029803093e-08,-4.832585098853916866e-08,-4.925519427678030640e-08,-5.018453756502144413e-08,-5.111388085326258186e-08,-5.204322414150371959e-08,-5.297256742974485732e-08,-5.390191071798599505e-08,-5.483125400622713278e-08,-5.576059729446827052e-08,-5.668994058270940825e-08,-5.761928387095054598e-08,-5.854862715919168371e-08 +0.000000000000000000e+00,-6.266050607918149059e-10,-1.253210121583629812e-09,-1.879815182375444614e-09,-2.506420243167259210e-09,-3.133025303959073806e-09,-3.759630364750888401e-09,-4.386235425542702997e-09,-5.012840486334517593e-09,-5.639445547126332189e-09,-6.266050607918146784e-09,-6.892655668709961380e-09,-7.519260729501775149e-09,-8.145865790293588917e-09,-8.772470851085402686e-09,-9.399075911877216454e-09,-1.002568097266903022e-08,-1.065228603346084399e-08,-1.127889109425265776e-08,-1.190549615504447153e-08,-1.253210121583628530e-08,-1.315870627662809907e-08,-1.378531133741991283e-08,-1.441191639821172660e-08,-1.503852145900354037e-08,-1.566512651979535579e-08,-1.629173158058717122e-08,-1.691833664137898664e-08,-1.754494170217080206e-08,-1.817154676296261749e-08,-1.879815182375443291e-08,-1.942475688454624833e-08,-2.005136194533806375e-08,-2.067796700612987918e-08,-2.130457206692169460e-08,-2.193117712771351002e-08,-2.255778218850532545e-08,-2.318438724929714087e-08,-2.381099231008895629e-08,-2.443759737088077171e-08,-2.506420243167258714e-08,-2.569080749246440256e-08,-2.631741255325621798e-08,-2.694401761404803341e-08,-2.757062267483984883e-08,-2.819722773563166425e-08,-2.882383279642347967e-08,-2.945043785721529510e-08,-3.007704291800711383e-08,-3.070364797879893256e-08,-3.133025303959075129e-08,-3.195685810038257002e-08,-3.258346316117438876e-08,-3.321006822196620749e-08,-3.383667328275802622e-08,-3.446327834354984495e-08,-3.508988340434166368e-08,-3.571648846513348241e-08,-3.634309352592530115e-08,-3.696969858671711988e-08,-3.759630364750893861e-08,-3.822290870830075734e-08,-3.884951376909257607e-08,-3.947611882988439480e-08 +0.000000000000000000e+00,-7.461537050486732876e-10,-1.492307410097346575e-09,-2.238461115146019966e-09,-2.984614820194693564e-09,-3.730768525243367162e-09,-4.476922230292040760e-09,-5.223075935340714357e-09,-5.969229640389387955e-09,-6.715383345438061553e-09,-7.461537050486735978e-09,-8.207690755535409576e-09,-8.953844460584083173e-09,-9.699998165632756771e-09,-1.044615187068143037e-08,-1.119230557573010397e-08,-1.193845928077877756e-08,-1.268461298582745116e-08,-1.343076669087612476e-08,-1.417692039592479836e-08,-1.492307410097347196e-08,-1.566922780602214555e-08,-1.641538151107081915e-08,-1.716153521611949275e-08,-1.790768892116816635e-08,-1.865384262621683994e-08,-1.939999633126551354e-08,-2.014615003631418714e-08,-2.089230374136286074e-08,-2.163845744641153434e-08,-2.238461115146020793e-08,-2.313076485650888153e-08,-2.387691856155755513e-08,-2.462307226660622873e-08,-2.536922597165490232e-08,-2.611537967670357592e-08,-2.686153338175224952e-08,-2.760768708680092312e-08,-2.835384079184959672e-08,-2.909999449689827031e-08,-2.984614820194694391e-08,-3.059230190699562082e-08,-3.133845561204429772e-08,-3.208460931709297463e-08,-3.283076302214165154e-08,-3.357691672719032844e-08,-3.432307043223900535e-08,-3.506922413728768226e-08,-3.581537784233635916e-08,-3.656153154738503607e-08,-3.730768525243371298e-08,-3.805383895748238988e-08,-3.879999266253106679e-08,-3.954614636757974370e-08,-4.029230007262842060e-08,-4.103845377767709751e-08,-4.178460748272577442e-08,-4.253076118777445132e-08,-4.327691489282312823e-08,-4.402306859787180513e-08,-4.476922230292048204e-08,-4.551537600796915895e-08,-4.626152971301783585e-08,-4.700768341806651276e-08 +0.000000000000000000e+00,6.493431435045446197e-10,1.298686287009089239e-09,1.948029430513633756e-09,2.597372574018178065e-09,3.246715717522722375e-09,3.896058861027266684e-09,4.545402004531810994e-09,5.194745148036355303e-09,5.844088291540899613e-09,6.493431435045443922e-09,7.142774578549988232e-09,7.792117722054531714e-09,8.441460865559075197e-09,9.090804009063618679e-09,9.740147152568162161e-09,1.038949029607270564e-08,1.103883343957724913e-08,1.168817658308179261e-08,1.233751972658633609e-08,1.298686287009087957e-08,1.363620601359542306e-08,1.428554915709996654e-08,1.493489230060450837e-08,1.558423544410905019e-08,1.623357858761359202e-08,1.688292173111813385e-08,1.753226487462267568e-08,1.818160801812721751e-08,1.883095116163175933e-08,1.948029430513630116e-08,2.012963744864084299e-08,2.077898059214538482e-08,2.142832373564992665e-08,2.207766687915446847e-08,2.272701002265901030e-08,2.337635316616355213e-08,2.402569630966809396e-08,2.467503945317263579e-08,2.532438259667717761e-08,2.597372574018171944e-08,2.662306888368626127e-08,2.727241202719080310e-08,2.792175517069534493e-08,2.857109831419988675e-08,2.922044145770442858e-08,2.986978460120897041e-08,3.051912774471351224e-08,3.116847088821805407e-08,3.181781403172259589e-08,3.246715717522713772e-08,3.311650031873167955e-08,3.376584346223622138e-08,3.441518660574076320e-08,3.506452974924530503e-08,3.571387289274984686e-08,3.636321603625438869e-08,3.701255917975893052e-08,3.766190232326347234e-08,3.831124546676801417e-08,3.896058861027255600e-08,3.960993175377709783e-08,4.025927489728163966e-08,4.090861804078618148e-08 +0.000000000000000000e+00,6.398328840350570902e-10,1.279665768070114180e-09,1.919498652105171167e-09,2.559331536140227947e-09,3.199164420175284727e-09,3.838997304210341507e-09,4.478830188245398288e-09,5.118663072280455068e-09,5.758495956315511848e-09,6.398328840350568628e-09,7.038161724385625408e-09,7.677994608420681361e-09,8.317827492455737313e-09,8.957660376490793266e-09,9.597493260525849219e-09,1.023732614456090517e-08,1.087715902859596112e-08,1.151699191263101708e-08,1.215682479666607303e-08,1.279665768070112898e-08,1.343649056473618494e-08,1.407632344877124089e-08,1.471615633280629684e-08,1.535598921684135280e-08,1.599582210087640875e-08,1.663565498491146470e-08,1.727548786894652065e-08,1.791532075298157661e-08,1.855515363701663256e-08,1.919498652105168851e-08,1.983481940508674447e-08,2.047465228912180042e-08,2.111448517315685637e-08,2.175431805719191232e-08,2.239415094122696828e-08,2.303398382526202423e-08,2.367381670929708018e-08,2.431364959333213614e-08,2.495348247736719209e-08,2.559331536140224804e-08,2.623314824543730399e-08,2.687298112947235995e-08,2.751281401350741590e-08,2.815264689754247185e-08,2.879247978157752781e-08,2.943231266561258376e-08,3.007214554964763640e-08,3.071197843368268574e-08,3.135181131771773507e-08,3.199164420175278441e-08,3.263147708578783374e-08,3.327130996982288308e-08,3.391114285385793241e-08,3.455097573789298175e-08,3.519080862192803109e-08,3.583064150596308042e-08,3.647047438999812976e-08,3.711030727403317909e-08,3.775014015806822843e-08,3.838997304210327776e-08,3.902980592613832710e-08,3.966963881017337643e-08,4.030947169420842577e-08 +0.000000000000000000e+00,6.913107118111763917e-10,1.382621423622352783e-09,2.073932135433529279e-09,2.765242847244705981e-09,3.456553559055882682e-09,4.147864270867059384e-09,4.839174982678236500e-09,5.530485694489413615e-09,6.221796406300590731e-09,6.913107118111767846e-09,7.604417829922944962e-09,8.295728541734122078e-09,8.987039253545299193e-09,9.678349965356476309e-09,1.036966067716765342e-08,1.106097138897883054e-08,1.175228210079000766e-08,1.244359281260118477e-08,1.313490352441236189e-08,1.382621423622353900e-08,1.451752494803471612e-08,1.520883565984589323e-08,1.590014637165707035e-08,1.659145708346824746e-08,1.728276779527942458e-08,1.797407850709060169e-08,1.866538921890177881e-08,1.935669993071295593e-08,2.004801064252413304e-08,2.073932135433531016e-08,2.143063206614648727e-08,2.212194277795766439e-08,2.281325348976884150e-08,2.350456420158001862e-08,2.419587491339119573e-08,2.488718562520237285e-08,2.557849633701354997e-08,2.626980704882472708e-08,2.696111776063590420e-08,2.765242847244708131e-08,2.834373918425825843e-08,2.903504989606943554e-08,2.972636060788061266e-08,3.041767131969179308e-08,3.110898203150297351e-08,3.180029274331415393e-08,3.249160345512533436e-08,3.318291416693651478e-08,3.387422487874769520e-08,3.456553559055887563e-08,3.525684630237005605e-08,3.594815701418123648e-08,3.663946772599241690e-08,3.733077843780359733e-08,3.802208914961477775e-08,3.871339986142595817e-08,3.940471057323713860e-08,4.009602128504831902e-08,4.078733199685949945e-08,4.147864270867067987e-08,4.216995342048186029e-08,4.286126413229304072e-08,4.355257484410422114e-08 +0.000000000000000000e+00,-6.493431434733445044e-10,-1.298686286946689009e-09,-1.948029430420033306e-09,-2.597372573893377604e-09,-3.246715717366721902e-09,-3.896058860840066613e-09,-4.545402004313411324e-09,-5.194745147786756035e-09,-5.844088291260100746e-09,-6.493431434733445457e-09,-7.142774578206790169e-09,-7.792117721680134880e-09,-8.441460865153480418e-09,-9.090804008626825956e-09,-9.740147152100171495e-09,-1.038949029557351703e-08,-1.103883343904686257e-08,-1.168817658252020811e-08,-1.233751972599355365e-08,-1.298686286946689919e-08,-1.363620601294024472e-08,-1.428554915641359026e-08,-1.493489229988693580e-08,-1.558423544336027969e-08,-1.623357858683362357e-08,-1.688292173030696745e-08,-1.753226487378031134e-08,-1.818160801725365522e-08,-1.883095116072699911e-08,-1.948029430420034299e-08,-2.012963744767368687e-08,-2.077898059114703076e-08,-2.142832373462037464e-08,-2.207766687809371853e-08,-2.272701002156706241e-08,-2.337635316504040629e-08,-2.402569630851375018e-08,-2.467503945198709406e-08,-2.532438259546043795e-08,-2.597372573893378183e-08,-2.662306888240712571e-08,-2.727241202588046960e-08,-2.792175516935381348e-08,-2.857109831282715737e-08,-2.922044145630050125e-08,-2.986978459977384513e-08,-3.051912774324718571e-08,-3.116847088672052628e-08,-3.181781403019386686e-08,-3.246715717366720743e-08,-3.311650031714054801e-08,-3.376584346061388859e-08,-3.441518660408722916e-08,-3.506452974756056974e-08,-3.571387289103391031e-08,-3.636321603450725089e-08,-3.701255917798059146e-08,-3.766190232145393204e-08,-3.831124546492727261e-08,-3.896058860840061319e-08,-3.960993175187395376e-08,-4.025927489534729434e-08,-4.090861803882063491e-08 +0.000000000000000000e+00,-6.398328840244580115e-10,-1.279665768048916023e-09,-1.919498652073373931e-09,-2.559331536097831632e-09,-3.199164420122289334e-09,-3.838997304146747035e-09,-4.478830188171205150e-09,-5.118663072195663265e-09,-5.758495956220121379e-09,-6.398328840244579494e-09,-7.038161724269037609e-09,-7.677994608293495724e-09,-8.317827492317953839e-09,-8.957660376342411954e-09,-9.597493260366870069e-09,-1.023732614439132818e-08,-1.087715902841578630e-08,-1.151699191244024441e-08,-1.215682479646470253e-08,-1.279665768048916064e-08,-1.343649056451361876e-08,-1.407632344853807687e-08,-1.471615633256253499e-08,-1.535598921658699476e-08,-1.599582210061145618e-08,-1.663565498463591760e-08,-1.727548786866037903e-08,-1.791532075268484045e-08,-1.855515363670930187e-08,-1.919498652073376330e-08,-1.983481940475822472e-08,-2.047465228878268615e-08,-2.111448517280714757e-08,-2.175431805683160899e-08,-2.239415094085607042e-08,-2.303398382488053184e-08,-2.367381670890499326e-08,-2.431364959292945469e-08,-2.495348247695391611e-08,-2.559331536097837753e-08,-2.623314824500283896e-08,-2.687298112902730038e-08,-2.751281401305176180e-08,-2.815264689707622323e-08,-2.879247978110068465e-08,-2.943231266512514608e-08,-3.007214554914960750e-08,-3.071197843317406892e-08,-3.135181131719853035e-08,-3.199164420122299177e-08,-3.263147708524745319e-08,-3.327130996927191462e-08,-3.391114285329637604e-08,-3.455097573732083746e-08,-3.519080862134529889e-08,-3.583064150536976031e-08,-3.647047438939422174e-08,-3.711030727341868316e-08,-3.775014015744314458e-08,-3.838997304146760601e-08,-3.902980592549206743e-08,-3.966963880951652885e-08,-4.030947169354099028e-08 +0.000000000000000000e+00,-6.913107117768377464e-10,-1.382621423553675493e-09,-2.073932135330513446e-09,-2.765242847107351399e-09,-3.456553558884189352e-09,-4.147864270661026892e-09,-4.839174982437864431e-09,-5.530485694214701971e-09,-6.221796405991539510e-09,-6.913107117768377050e-09,-7.604417829545214590e-09,-8.295728541322052129e-09,-8.987039253098889669e-09,-9.678349964875727208e-09,-1.036966067665256475e-08,-1.106097138842940229e-08,-1.175228210020623983e-08,-1.244359281198307737e-08,-1.313490352375991491e-08,-1.382621423553675245e-08,-1.451752494731358999e-08,-1.520883565909042918e-08,-1.590014637086726837e-08,-1.659145708264410757e-08,-1.728276779442094676e-08,-1.797407850619778595e-08,-1.866538921797462515e-08,-1.935669992975146434e-08,-2.004801064152830354e-08,-2.073932135330514273e-08,-2.143063206508198192e-08,-2.212194277685882112e-08,-2.281325348863566031e-08,-2.350456420041249951e-08,-2.419587491218933870e-08,-2.488718562396617789e-08,-2.557849633574301709e-08,-2.626980704751985628e-08,-2.696111775929669548e-08,-2.765242847107353467e-08,-2.834373918285037386e-08,-2.903504989462721306e-08,-2.972636060640405225e-08,-3.041767131818089145e-08,-3.110898202995773395e-08,-3.180029274173457645e-08,-3.249160345351141895e-08,-3.318291416528826146e-08,-3.387422487706510396e-08,-3.456553558884194646e-08,-3.525684630061878896e-08,-3.594815701239563147e-08,-3.663946772417247397e-08,-3.733077843594931647e-08,-3.802208914772615897e-08,-3.871339985950300148e-08,-3.940471057127984398e-08,-4.009602128305668648e-08,-4.078733199483352899e-08,-4.147864270661037149e-08,-4.216995341838721399e-08,-4.286126413016405649e-08,-4.355257484194089900e-08 +0.000000000000000000e+00,6.523380597643064497e-10,1.304676119528612899e-09,1.957014179292919453e-09,2.609352239057226212e-09,3.261690298821532972e-09,3.914028358585839732e-09,4.566366418350146906e-09,5.218704478114454079e-09,5.871042537878761253e-09,6.523380597643068426e-09,7.175718657407375600e-09,7.828056717171682773e-09,8.480394776935989947e-09,9.132732836700297120e-09,9.785070896464604294e-09,1.043740895622891147e-08,1.108974701599321864e-08,1.174208507575752581e-08,1.239442313552183299e-08,1.304676119528614016e-08,1.369909925505044733e-08,1.435143731481475451e-08,1.500377537457906334e-08,1.565611343434337216e-08,1.630845149410768099e-08,1.696078955387198982e-08,1.761312761363629865e-08,1.826546567340060748e-08,1.891780373316491630e-08,1.957014179292922513e-08,2.022247985269353396e-08,2.087481791245784279e-08,2.152715597222215161e-08,2.217949403198646044e-08,2.283183209175076927e-08,2.348417015151507810e-08,2.413650821127938693e-08,2.478884627104369575e-08,2.544118433080800458e-08,2.609352239057231341e-08,2.674586045033662224e-08,2.739819851010093107e-08,2.805053656986523989e-08,2.870287462962954872e-08,2.935521268939385755e-08,3.000755074915816638e-08,3.065988880892247521e-08,3.131222686868678403e-08,3.196456492845109286e-08,3.261690298821540169e-08,3.326924104797971052e-08,3.392157910774401934e-08,3.457391716750832817e-08,3.522625522727263700e-08,3.587859328703694583e-08,3.653093134680125466e-08,3.718326940656556348e-08,3.783560746632987231e-08,3.848794552609418114e-08,3.914028358585848997e-08,3.979262164562279880e-08,4.044495970538710762e-08,4.109729776515141645e-08 +0.000000000000000000e+00,6.466168352273722539e-10,1.293233670454744508e-09,1.939850505682116865e-09,2.586467340909489429e-09,3.233084176136861993e-09,3.879701011364234557e-09,4.526317846591607121e-09,5.172934681818979685e-09,5.819551517046352249e-09,6.466168352273724813e-09,7.112785187501097377e-09,7.759402022728470769e-09,8.406018857955844160e-09,9.052635693183217551e-09,9.699252528410590942e-09,1.034586936363796433e-08,1.099248619886533772e-08,1.163910303409271112e-08,1.228571986932008451e-08,1.293233670454745790e-08,1.357895353977483129e-08,1.422557037500220468e-08,1.487218721022957807e-08,1.551880404545695146e-08,1.616542088068432320e-08,1.681203771591169494e-08,1.745865455113906667e-08,1.810527138636643841e-08,1.875188822159381015e-08,1.939850505682118188e-08,2.004512189204855362e-08,2.069173872727592536e-08,2.133835556250329710e-08,2.198497239773066883e-08,2.263158923295804057e-08,2.327820606818541231e-08,2.392482290341278404e-08,2.457143973864015578e-08,2.521805657386752752e-08,2.586467340909489925e-08,2.651129024432227099e-08,2.715790707954964273e-08,2.780452391477701446e-08,2.845114075000438620e-08,2.909775758523175794e-08,2.974437442045912967e-08,3.039099125568650141e-08,3.103760809091386984e-08,3.168422492614123827e-08,3.233084176136860670e-08,3.297745859659597512e-08,3.362407543182334355e-08,3.427069226705071198e-08,3.491730910227808041e-08,3.556392593750544884e-08,3.621054277273281726e-08,3.685715960796018569e-08,3.750377644318755412e-08,3.815039327841492255e-08,3.879701011364229098e-08,3.944362694886965941e-08,4.009024378409702783e-08,4.073686061932439626e-08 +0.000000000000000000e+00,6.723741640058443673e-10,1.344748328011688735e-09,2.017122492017533102e-09,2.689496656023377469e-09,3.361870820029221836e-09,4.034244984035066204e-09,4.706619148040910984e-09,5.378993312046755765e-09,6.051367476052600546e-09,6.723741640058445327e-09,7.396115804064290108e-09,8.068489968070134062e-09,8.740864132075978015e-09,9.413238296081821969e-09,1.008561246008766592e-08,1.075798662409350988e-08,1.143036078809935383e-08,1.210273495210519778e-08,1.277510911611104174e-08,1.344748328011688569e-08,1.411985744412272964e-08,1.479223160812857360e-08,1.546460577213441921e-08,1.613697993614026481e-08,1.680935410014611042e-08,1.748172826415195603e-08,1.815410242815780164e-08,1.882647659216364725e-08,1.949885075616949285e-08,2.017122492017533846e-08,2.084359908418118407e-08,2.151597324818702968e-08,2.218834741219287529e-08,2.286072157619872089e-08,2.353309574020456650e-08,2.420546990421041211e-08,2.487784406821625772e-08,2.555021823222210333e-08,2.622259239622794893e-08,2.689496656023379454e-08,2.756734072423964015e-08,2.823971488824548576e-08,2.891208905225133137e-08,2.958446321625717698e-08,3.025683738026302258e-08,3.092921154426886488e-08,3.160158570827470718e-08,3.227395987228054948e-08,3.294633403628639178e-08,3.361870820029223408e-08,3.429108236429807638e-08,3.496345652830391868e-08,3.563583069230976098e-08,3.630820485631560328e-08,3.698057902032144558e-08,3.765295318432728788e-08,3.832532734833313017e-08,3.899770151233897247e-08,3.967007567634481477e-08,4.034244984035065707e-08,4.101482400435649937e-08,4.168719816836234167e-08,4.235957233236818397e-08 +0.000000000000000000e+00,-6.523380596994050317e-10,-1.304676119398810063e-09,-1.957014179098215198e-09,-2.609352238797620540e-09,-3.261690298497025882e-09,-3.914028358196431224e-09,-4.566366417895836152e-09,-5.218704477595241081e-09,-5.871042537294646009e-09,-6.523380596994050937e-09,-7.175718656693455865e-09,-7.828056716392860794e-09,-8.480394776092265722e-09,-9.132732835791670650e-09,-9.785070895491075579e-09,-1.043740895519048051e-08,-1.108974701488988544e-08,-1.174208507458929036e-08,-1.239442313428869529e-08,-1.304676119398810022e-08,-1.369909925368750515e-08,-1.435143731338691008e-08,-1.500377537308631335e-08,-1.565611343278571828e-08,-1.630845149248512321e-08,-1.696078955218452814e-08,-1.761312761188393306e-08,-1.826546567158333799e-08,-1.891780373128274292e-08,-1.957014179098214785e-08,-2.022247985068155278e-08,-2.087481791038095771e-08,-2.152715597008036263e-08,-2.217949402977976756e-08,-2.283183208947917249e-08,-2.348417014917857742e-08,-2.413650820887798235e-08,-2.478884626857738727e-08,-2.544118432827679220e-08,-2.609352238797619713e-08,-2.674586044767560206e-08,-2.739819850737500699e-08,-2.805053656707441192e-08,-2.870287462677381684e-08,-2.935521268647322177e-08,-3.000755074617262670e-08,-3.065988880587203163e-08,-3.131222686557143656e-08,-3.196456492527084149e-08,-3.261690298497024641e-08,-3.326924104466965134e-08,-3.392157910436905627e-08,-3.457391716406846120e-08,-3.522625522376786613e-08,-3.587859328346727106e-08,-3.653093134316667598e-08,-3.718326940286608091e-08,-3.783560746256548584e-08,-3.848794552226489077e-08,-3.914028358196429570e-08,-3.979262164166370063e-08,-4.044495970136310555e-08,-4.109729776106251048e-08 +0.000000000000000000e+00,-6.466168351779057159e-10,-1.293233670355811432e-09,-1.939850505533717354e-09,-2.586467340711623277e-09,-3.233084175889529200e-09,-3.879701011067434709e-09,-4.526317846245340218e-09,-5.172934681423245727e-09,-5.819551516601151236e-09,-6.466168351779056745e-09,-7.112785186956962254e-09,-7.759402022134867763e-09,-8.406018857312772445e-09,-9.052635692490677127e-09,-9.699252527668581809e-09,-1.034586936284648649e-08,-1.099248619802439117e-08,-1.163910303320229585e-08,-1.228571986838020054e-08,-1.293233670355810522e-08,-1.357895353873600990e-08,-1.422557037391391458e-08,-1.487218720909181926e-08,-1.551880404426972560e-08,-1.616542087944763194e-08,-1.681203771462553827e-08,-1.745865454980344461e-08,-1.810527138498135094e-08,-1.875188822015925728e-08,-1.939850505533716362e-08,-2.004512189051506995e-08,-2.069173872569297629e-08,-2.133835556087088263e-08,-2.198497239604878896e-08,-2.263158923122669530e-08,-2.327820606640460163e-08,-2.392482290158250797e-08,-2.457143973676041431e-08,-2.521805657193832064e-08,-2.586467340711622698e-08,-2.651129024229413332e-08,-2.715790707747203965e-08,-2.780452391264994599e-08,-2.845114074782785232e-08,-2.909775758300575866e-08,-2.974437441818366500e-08,-3.039099125336157464e-08,-3.103760808853948429e-08,-3.168422492371739393e-08,-3.233084175889530358e-08,-3.297745859407321322e-08,-3.362407542925112287e-08,-3.427069226442903251e-08,-3.491730909960694216e-08,-3.556392593478485180e-08,-3.621054276996276145e-08,-3.685715960514067109e-08,-3.750377644031858074e-08,-3.815039327549649038e-08,-3.879701011067440003e-08,-3.944362694585230967e-08,-4.009024378103021932e-08,-4.073686061620812896e-08 +0.000000000000000000e+00,-6.723741639380507122e-10,-1.344748327876101424e-09,-2.017122491814152137e-09,-2.689496655752202849e-09,-3.361870819690253561e-09,-4.034244983628304273e-09,-4.706619147566354985e-09,-5.378993311504405698e-09,-6.051367475442456410e-09,-6.723741639380507122e-09,-7.396115803318557834e-09,-8.068489967256608547e-09,-8.740864131194658432e-09,-9.413238295132708317e-09,-1.008561245907075820e-08,-1.075798662300880809e-08,-1.143036078694685797e-08,-1.210273495088490786e-08,-1.277510911482295774e-08,-1.344748327876100763e-08,-1.411985744269905751e-08,-1.479223160663710740e-08,-1.546460577057515728e-08,-1.613697993451320717e-08,-1.680935409845125705e-08,-1.748172826238930694e-08,-1.815410242632735682e-08,-1.882647659026540671e-08,-1.949885075420345659e-08,-2.017122491814150648e-08,-2.084359908207955636e-08,-2.151597324601760625e-08,-2.218834740995565613e-08,-2.286072157389370602e-08,-2.353309573783175590e-08,-2.420546990176980579e-08,-2.487784406570785567e-08,-2.555021822964590556e-08,-2.622259239358395544e-08,-2.689496655752200533e-08,-2.756734072146005521e-08,-2.823971488539810510e-08,-2.891208904933615498e-08,-2.958446321327420487e-08,-3.025683737721225475e-08,-3.092921154115030133e-08,-3.160158570508834791e-08,-3.227395986902639448e-08,-3.294633403296444106e-08,-3.361870819690248763e-08,-3.429108236084053421e-08,-3.496345652477858079e-08,-3.563583068871662736e-08,-3.630820485265467394e-08,-3.698057901659272052e-08,-3.765295318053076709e-08,-3.832532734446881367e-08,-3.899770150840686024e-08,-3.967007567234490682e-08,-4.034244983628295340e-08,-4.101482400022099997e-08,-4.168719816415904655e-08,-4.235957232809709313e-08 +0.000000000000000000e+00,6.611194390577631917e-10,1.322238878115526383e-09,1.983358317173289782e-09,2.644477756231053180e-09,3.305597195288816579e-09,3.966716634346579564e-09,4.627836073404342548e-09,5.288955512462105533e-09,5.950074951519868518e-09,6.611194390577631503e-09,7.272313829635394488e-09,7.933433268693157473e-09,8.594552707750920458e-09,9.255672146808683443e-09,9.916791585866446427e-09,1.057791102492420941e-08,1.123903046398197240e-08,1.190014990303973538e-08,1.256126934209749837e-08,1.322238878115526135e-08,1.388350822021302434e-08,1.454462765927078732e-08,1.520574709832855031e-08,1.586686653738631164e-08,1.652798597644407297e-08,1.718910541550183430e-08,1.785022485455959563e-08,1.851134429361735696e-08,1.917246373267511829e-08,1.983358317173287962e-08,2.049470261079064095e-08,2.115582204984840228e-08,2.181694148890616361e-08,2.247806092796392494e-08,2.313918036702168627e-08,2.380029980607944760e-08,2.446141924513720893e-08,2.512253868419497026e-08,2.578365812325273159e-08,2.644477756231049292e-08,2.710589700136825426e-08,2.776701644042601559e-08,2.842813587948377692e-08,2.908925531854153825e-08,2.975037475759929958e-08,3.041149419665706091e-08,3.107261363571482555e-08,3.173373307477259019e-08,3.239485251383035483e-08,3.305597195288811946e-08,3.371709139194588410e-08,3.437821083100364874e-08,3.503933027006141338e-08,3.570044970911917802e-08,3.636156914817694266e-08,3.702268858723470730e-08,3.768380802629247194e-08,3.834492746535023658e-08,3.900604690440800122e-08,3.966716634346576586e-08,4.032828578252353050e-08,4.098940522158129514e-08,4.165052466063905977e-08 +0.000000000000000000e+00,6.546655254514878910e-10,1.309331050902975782e-09,1.963996576354463570e-09,2.618662101805951150e-09,3.273327627257438731e-09,3.927993152708926312e-09,4.582658678160414306e-09,5.237324203611902301e-09,5.891989729063390295e-09,6.546655254514878290e-09,7.201320779966366284e-09,7.855986305417854278e-09,8.510651830869342273e-09,9.165317356320830267e-09,9.819982881772318261e-09,1.047464840722380626e-08,1.112931393267529425e-08,1.178397945812678224e-08,1.243864498357827024e-08,1.309331050902975823e-08,1.374797603448124623e-08,1.440264155993273422e-08,1.505730708538422222e-08,1.571197261083571187e-08,1.636663813628720151e-08,1.702130366173869116e-08,1.767596918719018081e-08,1.833063471264167046e-08,1.898530023809316011e-08,1.963996576354464976e-08,2.029463128899613941e-08,2.094929681444762906e-08,2.160396233989911870e-08,2.225862786535060835e-08,2.291329339080209800e-08,2.356795891625358765e-08,2.422262444170507730e-08,2.487728996715656695e-08,2.553195549260805660e-08,2.618662101805954625e-08,2.684128654351103589e-08,2.749595206896252554e-08,2.815061759441401519e-08,2.880528311986550484e-08,2.945994864531699449e-08,3.011461417076848414e-08,3.076927969621997048e-08,3.142394522167145682e-08,3.207861074712294316e-08,3.273327627257442950e-08,3.338794179802591584e-08,3.404260732347740218e-08,3.469727284892888852e-08,3.535193837438037486e-08,3.600660389983186120e-08,3.666126942528334754e-08,3.731593495073483388e-08,3.797060047618632022e-08,3.862526600163780656e-08,3.927993152708929290e-08,3.993459705254077924e-08,4.058926257799226558e-08,4.124392810344375192e-08 +0.000000000000000000e+00,6.691078180474086136e-10,1.338215636094817227e-09,2.007323454142225944e-09,2.676431272189634868e-09,3.345539090237043792e-09,4.014646908284452715e-09,4.683754726331861639e-09,5.352862544379270563e-09,6.021970362426679487e-09,6.691078180474088411e-09,7.360185998521497334e-09,8.029293816568907085e-09,8.698401634616316009e-09,9.367509452663724933e-09,1.003661727071113386e-08,1.070572508875854278e-08,1.137483290680595170e-08,1.204394072485336063e-08,1.271304854290076955e-08,1.338215636094817848e-08,1.405126417899558740e-08,1.472037199704299632e-08,1.538947981509040525e-08,1.605858763313781417e-08,1.672769545118522309e-08,1.739680326923263202e-08,1.806591108728004094e-08,1.873501890532744987e-08,1.940412672337485879e-08,2.007323454142226771e-08,2.074234235946967664e-08,2.141145017751708556e-08,2.208055799556449448e-08,2.274966581361190341e-08,2.341877363165931233e-08,2.408788144970672126e-08,2.475698926775413018e-08,2.542609708580153910e-08,2.609520490384894803e-08,2.676431272189635695e-08,2.743342053994376587e-08,2.810252835799117480e-08,2.877163617603858372e-08,2.944074399408599265e-08,3.010985181213340157e-08,3.077895963018081049e-08,3.144806744822821942e-08,3.211717526627562834e-08,3.278628308432303727e-08,3.345539090237044619e-08,3.412449872041785511e-08,3.479360653846526404e-08,3.546271435651267296e-08,3.613182217456008188e-08,3.680092999260749081e-08,3.747003781065489973e-08,3.813914562870230866e-08,3.880825344674971758e-08,3.947736126479712650e-08,4.014646908284453543e-08,4.081557690089194435e-08,4.148468471893935327e-08,4.215379253698676220e-08 +0.000000000000000000e+00,-6.611194389717245172e-10,-1.322238877943449034e-09,-1.983358316915173448e-09,-2.644477755886897655e-09,-3.305597194858621862e-09,-3.966716633830346069e-09,-4.627836072802070690e-09,-5.288955511773795311e-09,-5.950074950745519931e-09,-6.611194389717244552e-09,-7.272313828688969173e-09,-7.933433267660693793e-09,-8.594552706632418414e-09,-9.255672145604143035e-09,-9.916791584575867655e-09,-1.057791102354759228e-08,-1.123903046251931690e-08,-1.190014990149104152e-08,-1.256126934046276614e-08,-1.322238877943449076e-08,-1.388350821840621538e-08,-1.454462765737794000e-08,-1.520574709634966627e-08,-1.586686653532139090e-08,-1.652798597429311552e-08,-1.718910541326484014e-08,-1.785022485223656476e-08,-1.851134429120828938e-08,-1.917246373018001400e-08,-1.983358316915173862e-08,-2.049470260812346324e-08,-2.115582204709518786e-08,-2.181694148606691248e-08,-2.247806092503863710e-08,-2.313918036401036172e-08,-2.380029980298208634e-08,-2.446141924195381096e-08,-2.512253868092553558e-08,-2.578365811989726020e-08,-2.644477755886898483e-08,-2.710589699784070945e-08,-2.776701643681243407e-08,-2.842813587578415869e-08,-2.908925531475588331e-08,-2.975037475372760793e-08,-3.041149419269933255e-08,-3.107261363167105717e-08,-3.173373307064278179e-08,-3.239485250961450641e-08,-3.305597194858623103e-08,-3.371709138755795565e-08,-3.437821082652968027e-08,-3.503933026550140489e-08,-3.570044970447312951e-08,-3.636156914344485413e-08,-3.702268858241657876e-08,-3.768380802138830338e-08,-3.834492746036002800e-08,-3.900604689933175262e-08,-3.966716633830347724e-08,-4.032828577727520186e-08,-4.098940521624692648e-08,-4.165052465521865110e-08 +0.000000000000000000e+00,-6.546655253743273461e-10,-1.309331050748654692e-09,-1.963996576122982038e-09,-2.618662101497309384e-09,-3.273327626871636730e-09,-3.927993152245964076e-09,-4.582658677620291836e-09,-5.237324202994619596e-09,-5.891989728368947355e-09,-6.546655253743275115e-09,-7.201320779117602875e-09,-7.855986304491929807e-09,-8.510651829866256740e-09,-9.165317355240583672e-09,-9.819982880614910605e-09,-1.047464840598923754e-08,-1.112931393136356447e-08,-1.178397945673789140e-08,-1.243864498211221833e-08,-1.309331050748654527e-08,-1.374797603286087220e-08,-1.440264155823519913e-08,-1.505730708360952606e-08,-1.571197260898385300e-08,-1.636663813435817993e-08,-1.702130365973250686e-08,-1.767596918510683379e-08,-1.833063471048116073e-08,-1.898530023585548766e-08,-1.963996576122981459e-08,-2.029463128660414152e-08,-2.094929681197846846e-08,-2.160396233735279539e-08,-2.225862786272712232e-08,-2.291329338810144925e-08,-2.356795891347577619e-08,-2.422262443885010312e-08,-2.487728996422443005e-08,-2.553195548959875698e-08,-2.618662101497308392e-08,-2.684128654034741085e-08,-2.749595206572173778e-08,-2.815061759109606471e-08,-2.880528311647039165e-08,-2.945994864184471858e-08,-3.011461416721904551e-08,-3.076927969259337244e-08,-3.142394521796769938e-08,-3.207861074334202631e-08,-3.273327626871635324e-08,-3.338794179409068017e-08,-3.404260731946500711e-08,-3.469727284483933404e-08,-3.535193837021366097e-08,-3.600660389558798790e-08,-3.666126942096231484e-08,-3.731593494633664177e-08,-3.797060047171096870e-08,-3.862526599708529563e-08,-3.927993152245962257e-08,-3.993459704783394950e-08,-4.058926257320827643e-08,-4.124392809858260336e-08 +0.000000000000000000e+00,-6.691078179564178156e-10,-1.338215635912835631e-09,-2.007323453869253447e-09,-2.676431271825671262e-09,-3.345539089782089078e-09,-4.014646907738506894e-09,-4.683754725694925123e-09,-5.352862543651343352e-09,-6.021970361607761581e-09,-6.691078179564179811e-09,-7.360185997520598040e-09,-8.029293815477015442e-09,-8.698401633433432844e-09,-9.367509451389850246e-09,-1.003661726934626765e-08,-1.070572508730268505e-08,-1.137483290525910245e-08,-1.204394072321551985e-08,-1.271304854117193726e-08,-1.338215635912835466e-08,-1.405126417708477206e-08,-1.472037199504118946e-08,-1.538947981299760521e-08,-1.605858763095402096e-08,-1.672769544891043671e-08,-1.739680326686685245e-08,-1.806591108482326820e-08,-1.873501890277968395e-08,-1.940412672073609970e-08,-2.007323453869251544e-08,-2.074234235664893119e-08,-2.141145017460534694e-08,-2.208055799256176269e-08,-2.274966581051817843e-08,-2.341877362847459418e-08,-2.408788144643100993e-08,-2.475698926438742568e-08,-2.542609708234384142e-08,-2.609520490030025717e-08,-2.676431271825667292e-08,-2.743342053621308867e-08,-2.810252835416950442e-08,-2.877163617212592016e-08,-2.944074399008233591e-08,-3.010985180803875166e-08,-3.077895962599517072e-08,-3.144806744395158977e-08,-3.211717526190800883e-08,-3.278628307986442788e-08,-3.345539089782084694e-08,-3.412449871577726600e-08,-3.479360653373368505e-08,-3.546271435169010411e-08,-3.613182216964652317e-08,-3.680092998760294222e-08,-3.747003780555936128e-08,-3.813914562351578034e-08,-3.880825344147219939e-08,-3.947736125942861845e-08,-4.014646907738503750e-08,-4.081557689534145656e-08,-4.148468471329787562e-08,-4.215379253125429467e-08 +0.000000000000000000e+00,6.739951688429665804e-10,1.347990337685933161e-09,2.021985506528899534e-09,2.695980675371865908e-09,3.369975844214832282e-09,4.043971013057799069e-09,4.717966181900765856e-09,5.391961350743732643e-09,6.065956519586699431e-09,6.739951688429666218e-09,7.413946857272633005e-09,8.087942026115599792e-09,8.761937194958566579e-09,9.435932363801533367e-09,1.010992753264450015e-08,1.078392270148746694e-08,1.145791787033043373e-08,1.213191303917340052e-08,1.280590820801636730e-08,1.347990337685933409e-08,1.415389854570230088e-08,1.482789371454526766e-08,1.550188888338823611e-08,1.617588405223120289e-08,1.684987922107416968e-08,1.752387438991713647e-08,1.819786955876010325e-08,1.887186472760307004e-08,1.954585989644603683e-08,2.021985506528900362e-08,2.089385023413197040e-08,2.156784540297493719e-08,2.224184057181790398e-08,2.291583574066087077e-08,2.358983090950383755e-08,2.426382607834680434e-08,2.493782124718977113e-08,2.561181641603273791e-08,2.628581158487570470e-08,2.695980675371867149e-08,2.763380192256163828e-08,2.830779709140460506e-08,2.898179226024757185e-08,2.965578742909053864e-08,3.032978259793350542e-08,3.100377776677647221e-08,3.167777293561943900e-08,3.235176810446240579e-08,3.302576327330537257e-08,3.369975844214833936e-08,3.437375361099130615e-08,3.504774877983427293e-08,3.572174394867723972e-08,3.639573911752020651e-08,3.706973428636317330e-08,3.774372945520614008e-08,3.841772462404910687e-08,3.909171979289207366e-08,3.976571496173504045e-08,4.043971013057800723e-08,4.111370529942097402e-08,4.178770046826394081e-08,4.246169563710690759e-08 +0.000000000000000000e+00,6.663730891869772641e-10,1.332746178373954528e-09,1.999119267560931689e-09,2.665492356747908643e-09,3.331865445934885597e-09,3.998238535121862551e-09,4.664611624308839091e-09,5.330984713495815631e-09,5.997357802682792172e-09,6.663730891869768712e-09,7.330103981056745252e-09,7.996477070243721793e-09,8.662850159430698333e-09,9.329223248617674873e-09,9.995596337804651414e-09,1.066196942699162795e-08,1.132834251617860449e-08,1.199471560536558103e-08,1.266108869455255757e-08,1.332746178373953412e-08,1.399383487292651066e-08,1.466020796211348720e-08,1.532658105130046208e-08,1.599295414048743697e-08,1.665932722967441185e-08,1.732570031886138674e-08,1.799207340804836163e-08,1.865844649723533651e-08,1.932481958642231140e-08,1.999119267560928628e-08,2.065756576479626117e-08,2.132393885398323606e-08,2.199031194317021094e-08,2.265668503235718583e-08,2.332305812154416071e-08,2.398943121073113560e-08,2.465580429991811049e-08,2.532217738910508537e-08,2.598855047829206026e-08,2.665492356747903514e-08,2.732129665666601003e-08,2.798766974585298492e-08,2.865404283503995980e-08,2.932041592422693469e-08,2.998678901341390957e-08,3.065316210260088446e-08,3.131953519178785934e-08,3.198590828097483423e-08,3.265228137016180912e-08,3.331865445934878400e-08,3.398502754853575889e-08,3.465140063772273377e-08,3.531777372690970866e-08,3.598414681609668355e-08,3.665051990528365843e-08,3.731689299447063332e-08,3.798326608365760820e-08,3.864963917284458309e-08,3.931601226203155798e-08,3.998238535121853286e-08,4.064875844040550775e-08,4.131513152959248263e-08,4.198150461877945752e-08 +0.000000000000000000e+00,6.741180790748616325e-10,1.348236158149723265e-09,2.022354237224584898e-09,2.696472316299446530e-09,3.370590395374308163e-09,4.044708474449169795e-09,4.718826553524031841e-09,5.392944632598893887e-09,6.067062711673755933e-09,6.741180790748617980e-09,7.415298869823480026e-09,8.089416948898341245e-09,8.763535027973202464e-09,9.437653107048063682e-09,1.011177118612292490e-08,1.078588926519778612e-08,1.146000734427264734e-08,1.213412542334750856e-08,1.280824350242236978e-08,1.348236158149723100e-08,1.415647966057209221e-08,1.483059773964695343e-08,1.550471581872181465e-08,1.617883389779667587e-08,1.685295197687153709e-08,1.752707005594639831e-08,1.820118813502125953e-08,1.887530621409612075e-08,1.954942429317098197e-08,2.022354237224584319e-08,2.089766045132070440e-08,2.157177853039556562e-08,2.224589660947042684e-08,2.292001468854528806e-08,2.359413276762014928e-08,2.426825084669501050e-08,2.494236892576987172e-08,2.561648700484473294e-08,2.629060508391959416e-08,2.696472316299445537e-08,2.763884124206931659e-08,2.831295932114417781e-08,2.898707740021903903e-08,2.966119547929390025e-08,3.033531355836876147e-08,3.100943163744362269e-08,3.168354971651848391e-08,3.235766779559334513e-08,3.303178587466820634e-08,3.370590395374306756e-08,3.438002203281792878e-08,3.505414011189279000e-08,3.572825819096765122e-08,3.640237627004251244e-08,3.707649434911737366e-08,3.775061242819223488e-08,3.842473050726709610e-08,3.909884858634195732e-08,3.977296666541681853e-08,4.044708474449167975e-08,4.112120282356654097e-08,4.179532090264140219e-08,4.246943898171626341e-08 +0.000000000000000000e+00,-6.739951687490229545e-10,-1.347990337498045909e-09,-2.021985506247068760e-09,-2.695980674996091404e-09,-3.369975843745114049e-09,-4.043971012494136693e-09,-4.717966181243158923e-09,-5.391961349992181154e-09,-6.065956518741203385e-09,-6.739951687490225616e-09,-7.413946856239247846e-09,-8.087942024988270077e-09,-8.761937193737292308e-09,-9.435932362486314538e-09,-1.010992753123533677e-08,-1.078392269998435900e-08,-1.145791786873338123e-08,-1.213191303748240346e-08,-1.280590820623142569e-08,-1.347990337498044792e-08,-1.415389854372947015e-08,-1.482789371247849238e-08,-1.550188888122751461e-08,-1.617588404997653685e-08,-1.684987921872555908e-08,-1.752387438747458131e-08,-1.819786955622360354e-08,-1.887186472497262577e-08,-1.954585989372164800e-08,-2.021985506247067023e-08,-2.089385023121969246e-08,-2.156784539996871469e-08,-2.224184056871773692e-08,-2.291583573746675915e-08,-2.358983090621578138e-08,-2.426382607496480361e-08,-2.493782124371382584e-08,-2.561181641246284807e-08,-2.628581158121187031e-08,-2.695980674996089254e-08,-2.763380191870991477e-08,-2.830779708745893700e-08,-2.898179225620795923e-08,-2.965578742495698146e-08,-3.032978259370600369e-08,-3.100377776245502923e-08,-3.167777293120405477e-08,-3.235176809995308031e-08,-3.302576326870210585e-08,-3.369975843745113139e-08,-3.437375360620015693e-08,-3.504774877494918247e-08,-3.572174394369820800e-08,-3.639573911244723354e-08,-3.706973428119625908e-08,-3.774372944994528462e-08,-3.841772461869431016e-08,-3.909171978744333570e-08,-3.976571495619236124e-08,-4.043971012494138678e-08,-4.111370529369041232e-08,-4.178770046243943786e-08,-4.246169563118846340e-08 +0.000000000000000000e+00,-6.663730890953351648e-10,-1.332746178190670330e-09,-1.999119267286005391e-09,-2.665492356381340246e-09,-3.331865445476675100e-09,-3.998238534572009955e-09,-4.664611623667344810e-09,-5.330984712762679664e-09,-5.997357801858014519e-09,-6.663730890953349373e-09,-7.330103980048684228e-09,-7.996477069144018255e-09,-8.662850158239351456e-09,-9.329223247334684656e-09,-9.995596336430017856e-09,-1.066196942552535106e-08,-1.132834251462068426e-08,-1.199471560371601746e-08,-1.266108869281135066e-08,-1.332746178190668386e-08,-1.399383487100201706e-08,-1.466020796009735026e-08,-1.532658104919268346e-08,-1.599295413828801666e-08,-1.665932722738334986e-08,-1.732570031647868306e-08,-1.799207340557401626e-08,-1.865844649466934946e-08,-1.932481958376468266e-08,-1.999119267286001586e-08,-2.065756576195534906e-08,-2.132393885105068226e-08,-2.199031194014601546e-08,-2.265668502924134866e-08,-2.332305811833668186e-08,-2.398943120743201506e-08,-2.465580429652734826e-08,-2.532217738562268146e-08,-2.598855047471801466e-08,-2.665492356381334786e-08,-2.732129665290868106e-08,-2.798766974200401426e-08,-2.865404283109934746e-08,-2.932041592019468066e-08,-2.998678900929001056e-08,-3.065316209838534045e-08,-3.131953518748067034e-08,-3.198590827657600023e-08,-3.265228136567133012e-08,-3.331865445476666001e-08,-3.398502754386198990e-08,-3.465140063295731980e-08,-3.531777372205264969e-08,-3.598414681114797958e-08,-3.665051990024330947e-08,-3.731689298933863936e-08,-3.798326607843396925e-08,-3.864963916752929915e-08,-3.931601225662462904e-08,-3.998238534571995893e-08,-4.064875843481528882e-08,-4.131513152391061871e-08,-4.198150461300594860e-08 +0.000000000000000000e+00,-6.741180789718753715e-10,-1.348236157943750743e-09,-2.022354236915625908e-09,-2.696472315887501072e-09,-3.370590394859376237e-09,-4.044708473831251815e-09,-4.718826552803127394e-09,-5.392944631775002972e-09,-6.067062710746878550e-09,-6.741180789718754129e-09,-7.415298868690629707e-09,-8.089416947662505285e-09,-8.763535026634380864e-09,-9.437653105606256442e-09,-1.011177118457813202e-08,-1.078588926355000760e-08,-1.146000734252188318e-08,-1.213412542149375876e-08,-1.280824350046563433e-08,-1.348236157943750991e-08,-1.415647965840938549e-08,-1.483059773738126107e-08,-1.550471581635313665e-08,-1.617883389532501388e-08,-1.685295197429689111e-08,-1.752707005326876834e-08,-1.820118813224064558e-08,-1.887530621121252281e-08,-1.954942429018440004e-08,-2.022354236915627728e-08,-2.089766044812815451e-08,-2.157177852710003174e-08,-2.224589660607190897e-08,-2.292001468504378621e-08,-2.359413276401566344e-08,-2.426825084298754067e-08,-2.494236892195941790e-08,-2.561648700093129514e-08,-2.629060507990317237e-08,-2.696472315887504960e-08,-2.763884123784692683e-08,-2.831295931681880407e-08,-2.898707739579068130e-08,-2.966119547476255853e-08,-3.033531355373443246e-08,-3.100943163270630638e-08,-3.168354971167818030e-08,-3.235766779065005423e-08,-3.303178586962192815e-08,-3.370590394859380208e-08,-3.438002202756567600e-08,-3.505414010653754992e-08,-3.572825818550942385e-08,-3.640237626448129777e-08,-3.707649434345317170e-08,-3.775061242242504562e-08,-3.842473050139691954e-08,-3.909884858036879347e-08,-3.977296665934066739e-08,-4.044708473831254132e-08,-4.112120281728441524e-08,-4.179532089625628916e-08,-4.246943897522816309e-08 +0.000000000000000000e+00,6.885485941268694137e-10,1.377097188253738827e-09,2.065645782380608448e-09,2.754194376507478068e-09,3.442742970634347689e-09,4.131291564761216896e-09,4.819840158888086103e-09,5.508388753014955309e-09,6.196937347141824516e-09,6.885485941268693723e-09,7.574034535395562930e-09,8.262583129522432137e-09,8.951131723649301344e-09,9.639680317776170551e-09,1.032822891190303976e-08,1.101677750602990896e-08,1.170532610015677817e-08,1.239387469428364738e-08,1.308242328841051659e-08,1.377097188253738579e-08,1.445952047666425500e-08,1.514806907079112586e-08,1.583661766491799672e-08,1.652516625904486758e-08,1.721371485317173844e-08,1.790226344729860931e-08,1.859081204142548017e-08,1.927936063555235103e-08,1.996790922967922189e-08,2.065645782380609275e-08,2.134500641793296361e-08,2.203355501205983447e-08,2.272210360618670533e-08,2.341065220031357620e-08,2.409920079444044706e-08,2.478774938856731792e-08,2.547629798269418878e-08,2.616484657682105964e-08,2.685339517094793050e-08,2.754194376507480136e-08,2.823049235920167222e-08,2.891904095332854309e-08,2.960758954745541395e-08,3.029613814158228481e-08,3.098468673570915567e-08,3.167323532983602653e-08,3.236178392396289739e-08,3.305033251808976825e-08,3.373888111221663911e-08,3.442742970634350998e-08,3.511597830047038084e-08,3.580452689459725170e-08,3.649307548872412256e-08,3.718162408285099342e-08,3.787017267697786428e-08,3.855872127110473514e-08,3.924726986523160600e-08,3.993581845935847687e-08,4.062436705348534773e-08,4.131291564761221859e-08,4.200146424173908945e-08,4.269001283586596031e-08,4.337856142999283117e-08 +0.000000000000000000e+00,6.808977684136536888e-10,1.361795536827307378e-09,2.042693305240961273e-09,2.723591073654615169e-09,3.404488842068269064e-09,4.085386610481922547e-09,4.766284378895576029e-09,5.447182147309229511e-09,6.128079915722882993e-09,6.808977684136536475e-09,7.489875452550189957e-09,8.170773220963843439e-09,8.851670989377496921e-09,9.532568757791150403e-09,1.021346652620480388e-08,1.089436429461845737e-08,1.157526206303211085e-08,1.225615983144576433e-08,1.293705759985941781e-08,1.361795536827307129e-08,1.429885313668672478e-08,1.497975090510037660e-08,1.566064867351403009e-08,1.634154644192768357e-08,1.702244421034133705e-08,1.770334197875499053e-08,1.838423974716864401e-08,1.906513751558229750e-08,1.974603528399595098e-08,2.042693305240960446e-08,2.110783082082325794e-08,2.178872858923691142e-08,2.246962635765056491e-08,2.315052412606421839e-08,2.383142189447787187e-08,2.451231966289152535e-08,2.519321743130517883e-08,2.587411519971883232e-08,2.655501296813248580e-08,2.723591073654613928e-08,2.791680850495979276e-08,2.859770627337344625e-08,2.927860404178709973e-08,2.995950181020075321e-08,3.064039957861440669e-08,3.132129734702806017e-08,3.200219511544171366e-08,3.268309288385536714e-08,3.336399065226902062e-08,3.404488842068267410e-08,3.472578618909632758e-08,3.540668395750998107e-08,3.608758172592363455e-08,3.676847949433728803e-08,3.744937726275094151e-08,3.813027503116459499e-08,3.881117279957824848e-08,3.949207056799190196e-08,4.017296833640555544e-08,4.085386610481920892e-08,4.153476387323286240e-08,4.221566164164651589e-08,4.289655941006016937e-08 +0.000000000000000000e+00,6.840406469741218768e-10,1.368081293948243754e-09,2.052121940922365630e-09,2.736162587896487507e-09,3.420203234870609384e-09,4.104243881844731261e-09,4.788284528818852724e-09,5.472325175792974187e-09,6.156365822767095650e-09,6.840406469741217113e-09,7.524447116715338577e-09,8.208487763689460867e-09,8.892528410663583157e-09,9.576569057637705448e-09,1.026060970461182774e-08,1.094465035158595003e-08,1.162869099856007232e-08,1.231273164553419461e-08,1.299677229250831690e-08,1.368081293948243919e-08,1.436485358645656148e-08,1.504889423343068377e-08,1.573293488040480606e-08,1.641697552737892835e-08,1.710101617435305064e-08,1.778505682132717293e-08,1.846909746830129522e-08,1.915313811527541751e-08,1.983717876224953980e-08,2.052121940922366209e-08,2.120526005619778438e-08,2.188930070317190667e-08,2.257334135014602896e-08,2.325738199712015125e-08,2.394142264409427355e-08,2.462546329106839584e-08,2.530950393804251813e-08,2.599354458501664042e-08,2.667758523199076271e-08,2.736162587896488500e-08,2.804566652593900729e-08,2.872970717291312958e-08,2.941374781988725187e-08,3.009778846686137416e-08,3.078182911383549645e-08,3.146586976080961874e-08,3.214991040778374103e-08,3.283395105475786332e-08,3.351799170173198561e-08,3.420203234870610790e-08,3.488607299568023019e-08,3.557011364265435248e-08,3.625415428962847477e-08,3.693819493660259706e-08,3.762223558357671935e-08,3.830627623055084164e-08,3.899031687752496393e-08,3.967435752449908622e-08,4.035839817147320851e-08,4.104243881844733080e-08,4.172647946542145309e-08,4.241052011239557539e-08,4.309456075936969768e-08 +0.000000000000000000e+00,-6.885485940382655488e-10,-1.377097188076531098e-09,-2.065645782114796440e-09,-2.754194376153061782e-09,-3.442742970191327124e-09,-4.131291564229592879e-09,-4.819840158267858635e-09,-5.508388752306124390e-09,-6.196937346344390146e-09,-6.885485940382655901e-09,-7.574034534420922484e-09,-8.262583128459189067e-09,-8.951131722497455650e-09,-9.639680316535722232e-09,-1.032822891057398882e-08,-1.101677750461225540e-08,-1.170532609865052198e-08,-1.239387469268878856e-08,-1.308242328672705515e-08,-1.377097188076532173e-08,-1.445952047480358831e-08,-1.514806906884185489e-08,-1.583661766288012148e-08,-1.652516625691838806e-08,-1.721371485095665464e-08,-1.790226344499492123e-08,-1.859081203903318781e-08,-1.927936063307145439e-08,-1.996790922710972097e-08,-2.065645782114798756e-08,-2.134500641518625414e-08,-2.203355500922452072e-08,-2.272210360326278730e-08,-2.341065219730105389e-08,-2.409920079133932047e-08,-2.478774938537758705e-08,-2.547629797941585364e-08,-2.616484657345412022e-08,-2.685339516749238680e-08,-2.754194376153065338e-08,-2.823049235556891997e-08,-2.891904094960718655e-08,-2.960758954364545313e-08,-3.029613813768371641e-08,-3.098468673172197968e-08,-3.167323532576024295e-08,-3.236178391979850623e-08,-3.305033251383676950e-08,-3.373888110787503278e-08,-3.442742970191329605e-08,-3.511597829595155932e-08,-3.580452688998982260e-08,-3.649307548402808587e-08,-3.718162407806634915e-08,-3.787017267210461242e-08,-3.855872126614287569e-08,-3.924726986018113897e-08,-3.993581845421940224e-08,-4.062436704825766552e-08,-4.131291564229592879e-08,-4.200146423633419207e-08,-4.269001283037245534e-08,-4.337856142441071861e-08 +0.000000000000000000e+00,-6.808977683206970961e-10,-1.361795536641394192e-09,-2.042693304962091392e-09,-2.723591073282788798e-09,-3.404488841603486204e-09,-4.085386609924183611e-09,-4.766284378244881017e-09,-5.447182146565578423e-09,-6.128079914886275830e-09,-6.808977683206973236e-09,-7.489875451527670642e-09,-8.170773219848368876e-09,-8.851670988169067109e-09,-9.532568756489765343e-09,-1.021346652481046358e-08,-1.089436429313116181e-08,-1.157526206145186004e-08,-1.225615982977255828e-08,-1.293705759809325651e-08,-1.361795536641395474e-08,-1.429885313473465298e-08,-1.497975090305535121e-08,-1.566064867137604944e-08,-1.634154643969674768e-08,-1.702244420801744591e-08,-1.770334197633814415e-08,-1.838423974465884238e-08,-1.906513751297954061e-08,-1.974603528130023885e-08,-2.042693304962093708e-08,-2.110783081794163531e-08,-2.178872858626233355e-08,-2.246962635458303178e-08,-2.315052412290373001e-08,-2.383142189122442825e-08,-2.451231965954512648e-08,-2.519321742786582471e-08,-2.587411519618652295e-08,-2.655501296450722118e-08,-2.723591073282791941e-08,-2.791680850114861765e-08,-2.859770626946931588e-08,-2.927860403779001411e-08,-2.995950180611070904e-08,-3.064039957443140066e-08,-3.132129734275209227e-08,-3.200219511107278389e-08,-3.268309287939347550e-08,-3.336399064771416712e-08,-3.404488841603485874e-08,-3.472578618435555035e-08,-3.540668395267624197e-08,-3.608758172099693358e-08,-3.676847948931762520e-08,-3.744937725763831682e-08,-3.813027502595900843e-08,-3.881117279427970005e-08,-3.949207056260039166e-08,-4.017296833092108328e-08,-4.085386609924177490e-08,-4.153476386756246651e-08,-4.221566163588315813e-08,-4.289655940420384974e-08 +0.000000000000000000e+00,-6.840406468696562032e-10,-1.368081293739312406e-09,-2.052121940608968817e-09,-2.736162587478625227e-09,-3.420203234348281637e-09,-4.104243881217937633e-09,-4.788284528087593629e-09,-5.472325174957249626e-09,-6.156365821826905622e-09,-6.840406468696561619e-09,-7.524447115566217615e-09,-8.208487762435873612e-09,-8.892528409305529608e-09,-9.576569056175185605e-09,-1.026060970304484160e-08,-1.094465034991449760e-08,-1.162869099678415359e-08,-1.231273164365380959e-08,-1.299677229052346559e-08,-1.368081293739312158e-08,-1.436485358426277758e-08,-1.504889423113243192e-08,-1.573293487800208461e-08,-1.641697552487173730e-08,-1.710101617174138998e-08,-1.778505681861104267e-08,-1.846909746548069536e-08,-1.915313811235034805e-08,-1.983717875922000074e-08,-2.052121940608965342e-08,-2.120526005295930611e-08,-2.188930069982895880e-08,-2.257334134669861149e-08,-2.325738199356826417e-08,-2.394142264043791686e-08,-2.462546328730756955e-08,-2.530950393417722224e-08,-2.599354458104687493e-08,-2.667758522791652761e-08,-2.736162587478618030e-08,-2.804566652165583299e-08,-2.872970716852548568e-08,-2.941374781539513836e-08,-3.009778846226479105e-08,-3.078182910913444374e-08,-3.146586975600409643e-08,-3.214991040287374911e-08,-3.283395104974340180e-08,-3.351799169661305449e-08,-3.420203234348270718e-08,-3.488607299035235987e-08,-3.557011363722201255e-08,-3.625415428409166524e-08,-3.693819493096131793e-08,-3.762223557783097062e-08,-3.830627622470062330e-08,-3.899031687157027599e-08,-3.967435751843992868e-08,-4.035839816530958137e-08,-4.104243881217923406e-08,-4.172647945904888674e-08,-4.241052010591853943e-08,-4.309456075278819212e-08 +0.000000000000000000e+00,6.988243849469807874e-10,1.397648769893961575e-09,2.096473154840942259e-09,2.795297539787922736e-09,3.494121924734903213e-09,4.192946309681883691e-09,4.891770694628864581e-09,5.590595079575845472e-09,6.289419464522826363e-09,6.988243849469807254e-09,7.687068234416788145e-09,8.385892619363769036e-09,9.084717004310749926e-09,9.783541389257730817e-09,1.048236577420471171e-08,1.118119015915169260e-08,1.188001454409867349e-08,1.257883892904565438e-08,1.327766331399263527e-08,1.397648769893961616e-08,1.467531208388659705e-08,1.537413646883357629e-08,1.607296085378055553e-08,1.677178523872753476e-08,1.747060962367451400e-08,1.816943400862149324e-08,1.886825839356847247e-08,1.956708277851545171e-08,2.026590716346243094e-08,2.096473154840941018e-08,2.166355593335638942e-08,2.236238031830336865e-08,2.306120470325034789e-08,2.376002908819732713e-08,2.445885347314430636e-08,2.515767785809128560e-08,2.585650224303826484e-08,2.655532662798524407e-08,2.725415101293222331e-08,2.795297539787920255e-08,2.865179978282618178e-08,2.935062416777316102e-08,3.004944855272014356e-08,3.074827293766712611e-08,3.144709732261410865e-08,3.214592170756109120e-08,3.284474609250807374e-08,3.354357047745505629e-08,3.424239486240203883e-08,3.494121924734902138e-08,3.564004363229600393e-08,3.633886801724298647e-08,3.703769240218996902e-08,3.773651678713695156e-08,3.843534117208393411e-08,3.913416555703091665e-08,3.983298994197789920e-08,4.053181432692488174e-08,4.123063871187186429e-08,4.192946309681884683e-08,4.262828748176582938e-08,4.332711186671281192e-08,4.402593625165979447e-08 +0.000000000000000000e+00,6.943742022891113446e-10,1.388748404578222689e-09,2.083122606867334241e-09,2.777496809156445792e-09,3.471871011445557344e-09,4.166245213734668481e-09,4.860619416023779619e-09,5.554993618312890757e-09,6.249367820602001895e-09,6.943742022891113033e-09,7.638116225180224171e-09,8.332490427469335309e-09,9.026864629758446446e-09,9.721238832047557584e-09,1.041561303433666872e-08,1.110998723662577986e-08,1.180436143891489100e-08,1.249873564120400214e-08,1.319310984349311327e-08,1.388748404578222441e-08,1.458185824807133555e-08,1.527623245036044834e-08,1.597060665264956113e-08,1.666498085493867393e-08,1.735935505722778672e-08,1.805372925951689951e-08,1.874810346180601230e-08,1.944247766409512509e-08,2.013685186638423789e-08,2.083122606867335068e-08,2.152560027096246347e-08,2.221997447325157626e-08,2.291434867554068906e-08,2.360872287782980185e-08,2.430309708011891464e-08,2.499747128240802743e-08,2.569184548469714022e-08,2.638621968698625302e-08,2.708059388927536581e-08,2.777496809156447860e-08,2.846934229385359139e-08,2.916371649614270419e-08,2.985809069843181367e-08,3.055246490072092315e-08,3.124683910301003264e-08,3.194121330529914212e-08,3.263558750758825160e-08,3.332996170987736109e-08,3.402433591216647057e-08,3.471871011445558005e-08,3.541308431674468954e-08,3.610745851903379902e-08,3.680183272132290850e-08,3.749620692361201799e-08,3.819058112590112747e-08,3.888495532819023695e-08,3.957932953047934644e-08,4.027370373276845592e-08,4.096807793505756541e-08,4.166245213734667489e-08,4.235682633963578437e-08,4.305120054192489386e-08,4.374557474421400334e-08 +0.000000000000000000e+00,6.941155684820513962e-10,1.388231136964102792e-09,2.082346705446154395e-09,2.776462273928205999e-09,3.470577842410257602e-09,4.164693410892308791e-09,4.858808979374359980e-09,5.552924547856411170e-09,6.247040116338462359e-09,6.941155684820513549e-09,7.635271253302564738e-09,8.329386821784615928e-09,9.023502390266667117e-09,9.717617958748718307e-09,1.041173352723076950e-08,1.110584909571282069e-08,1.179996466419487187e-08,1.249408023267692306e-08,1.318819580115897425e-08,1.388231136964102544e-08,1.457642693812307663e-08,1.527054250660512948e-08,1.596465807508718232e-08,1.665877364356923516e-08,1.735288921205128801e-08,1.804700478053334085e-08,1.874112034901539370e-08,1.943523591749744654e-08,2.012935148597949938e-08,2.082346705446155223e-08,2.151758262294360507e-08,2.221169819142565791e-08,2.290581375990771076e-08,2.359992932838976360e-08,2.429404489687181645e-08,2.498816046535386929e-08,2.568227603383592213e-08,2.637639160231797498e-08,2.707050717080002782e-08,2.776462273928208066e-08,2.845873830776413351e-08,2.915285387624618635e-08,2.984696944472823920e-08,3.054108501321029204e-08,3.123520058169234488e-08,3.192931615017439773e-08,3.262343171865645057e-08,3.331754728713850342e-08,3.401166285562055626e-08,3.470577842410260910e-08,3.539989399258466195e-08,3.609400956106671479e-08,3.678812512954876763e-08,3.748224069803082048e-08,3.817635626651287332e-08,3.887047183499492617e-08,3.956458740347697901e-08,4.025870297195903185e-08,4.095281854044108470e-08,4.164693410892313754e-08,4.234104967740519038e-08,4.303516524588724323e-08,4.372928081436929607e-08 +0.000000000000000000e+00,-6.988243848812101060e-10,-1.397648769762420212e-09,-2.096473154643630318e-09,-2.795297539524840424e-09,-3.494121924406050530e-09,-4.192946309287260636e-09,-4.891770694168470742e-09,-5.590595079049680848e-09,-6.289419463930890954e-09,-6.988243848812101060e-09,-7.687068233693311166e-09,-8.385892618574521271e-09,-9.084717003455731377e-09,-9.783541388336941483e-09,-1.048236577321815159e-08,-1.118119015809936170e-08,-1.188001454298057180e-08,-1.257883892786178191e-08,-1.327766331274299201e-08,-1.397648769762420212e-08,-1.467531208250541223e-08,-1.537413646738662233e-08,-1.607296085226783078e-08,-1.677178523714903923e-08,-1.747060962203024769e-08,-1.816943400691145614e-08,-1.886825839179266459e-08,-1.956708277667387304e-08,-2.026590716155508149e-08,-2.096473154643628994e-08,-2.166355593131749840e-08,-2.236238031619870685e-08,-2.306120470107991530e-08,-2.376002908596112375e-08,-2.445885347084233220e-08,-2.515767785572354065e-08,-2.585650224060474911e-08,-2.655532662548595756e-08,-2.725415101036716601e-08,-2.795297539524837446e-08,-2.865179978012958291e-08,-2.935062416501079136e-08,-3.004944854989199981e-08,-3.074827293477321157e-08,-3.144709731965442334e-08,-3.214592170453563510e-08,-3.284474608941684686e-08,-3.354357047429805862e-08,-3.424239485917927038e-08,-3.494121924406048214e-08,-3.564004362894169390e-08,-3.633886801382290566e-08,-3.703769239870411742e-08,-3.773651678358532918e-08,-3.843534116846654094e-08,-3.913416555334775270e-08,-3.983298993822896446e-08,-4.053181432311017622e-08,-4.123063870799138798e-08,-4.192946309287259974e-08,-4.262828747775381150e-08,-4.332711186263502326e-08,-4.402593624751623502e-08 +0.000000000000000000e+00,-6.943742022096371756e-10,-1.388748404419274351e-09,-2.083122606628911423e-09,-2.777496808838548289e-09,-3.471871011048185154e-09,-4.166245213257822019e-09,-4.860619415467459298e-09,-5.554993617677096577e-09,-6.249367819886733856e-09,-6.943742022096371135e-09,-7.638116224306008414e-09,-8.332490426515645693e-09,-9.026864628725282972e-09,-9.721238830934920251e-09,-1.041561303314455753e-08,-1.110998723535419481e-08,-1.180436143756383209e-08,-1.249873563977346937e-08,-1.319310984198310665e-08,-1.388748404419274392e-08,-1.458185824640238120e-08,-1.527623244861202014e-08,-1.597060665082166072e-08,-1.666498085303130131e-08,-1.735935505524094190e-08,-1.805372925745058249e-08,-1.874810345966022308e-08,-1.944247766186986366e-08,-2.013685186407950425e-08,-2.083122606628914484e-08,-2.152560026849878543e-08,-2.221997447070842601e-08,-2.291434867291806660e-08,-2.360872287512770719e-08,-2.430309707733734778e-08,-2.499747127954698836e-08,-2.569184548175662895e-08,-2.638621968396626954e-08,-2.708059388617591013e-08,-2.777496808838555072e-08,-2.846934229059519130e-08,-2.916371649280483189e-08,-2.985809069501447248e-08,-3.055246489722411307e-08,-3.124683909943375365e-08,-3.194121330164339424e-08,-3.263558750385303483e-08,-3.332996170606267542e-08,-3.402433590827231600e-08,-3.471871011048195659e-08,-3.541308431269159718e-08,-3.610745851490123777e-08,-3.680183271711087836e-08,-3.749620691932051894e-08,-3.819058112153015953e-08,-3.888495532373980012e-08,-3.957932952594944071e-08,-4.027370372815908129e-08,-4.096807793036872188e-08,-4.166245213257836247e-08,-4.235682633478800306e-08,-4.305120053699764364e-08,-4.374557473920728423e-08 +0.000000000000000000e+00,-6.941155683884144475e-10,-1.388231136776828895e-09,-2.082346705165243446e-09,-2.776462273553658204e-09,-3.470577841942072961e-09,-4.164693410330487719e-09,-4.858808978718902063e-09,-5.552924547107316407e-09,-6.247040115495730751e-09,-6.941155683884145095e-09,-7.635271252272559439e-09,-8.329386820660973784e-09,-9.023502389049388128e-09,-9.717617957437802472e-09,-1.041173352582621682e-08,-1.110584909421463116e-08,-1.179996466260304550e-08,-1.249408023099145985e-08,-1.318819579937987419e-08,-1.388231136776828854e-08,-1.457642693615670288e-08,-1.527054250454511888e-08,-1.596465807293353488e-08,-1.665877364132195088e-08,-1.735288920971036687e-08,-1.804700477809878287e-08,-1.874112034648719887e-08,-1.943523591487561487e-08,-2.012935148326403087e-08,-2.082346705165244687e-08,-2.151758262004086287e-08,-2.221169818842927886e-08,-2.290581375681769486e-08,-2.359992932520611086e-08,-2.429404489359452686e-08,-2.498816046198294286e-08,-2.568227603037135886e-08,-2.637639159875977485e-08,-2.707050716714819085e-08,-2.776462273553660685e-08,-2.845873830392502285e-08,-2.915285387231343885e-08,-2.984696944070185485e-08,-3.054108500909027085e-08,-3.123520057747868684e-08,-3.192931614586710284e-08,-3.262343171425551884e-08,-3.331754728264393484e-08,-3.401166285103235084e-08,-3.470577841942076684e-08,-3.539989398780918283e-08,-3.609400955619759883e-08,-3.678812512458601483e-08,-3.748224069297443083e-08,-3.817635626136284683e-08,-3.887047182975126283e-08,-3.956458739813967882e-08,-4.025870296652809482e-08,-4.095281853491651082e-08,-4.164693410330492682e-08,-4.234104967169334282e-08,-4.303516524008175882e-08,-4.372928080847017482e-08 +0.000000000000000000e+00,6.855279721233153126e-10,1.371055944246630625e-09,2.056583916369946041e-09,2.742111888493261250e-09,3.427639860616577700e-09,4.113167832739892909e-09,4.798695804863208532e-09,5.484223776986524155e-09,6.169751749109839778e-09,6.855279721233155401e-09,7.540807693356470196e-09,8.226335665479784165e-09,8.911863637603098133e-09,9.597391609726412101e-09,1.028291958184972607e-08,1.096844755397304169e-08,1.165397552609635401e-08,1.233950349821966632e-08,1.302503147034298194e-08,1.371055944246629757e-08,1.439608741458960988e-08,1.508161538671292385e-08,1.576714335883623782e-08,1.645267133095955179e-08,1.713819930308286575e-08,1.782372727520617972e-08,1.850925524732949369e-08,1.919478321945280766e-08,1.988031119157612163e-08,2.056583916369943560e-08,2.125136713582274626e-08,2.193689510794606353e-08,2.262242308006937750e-08,2.330795105219269147e-08,2.399347902431600875e-08,2.467900699643931941e-08,2.536453496856263337e-08,2.605006294068594734e-08,2.673559091280925800e-08,2.742111888493257528e-08,2.810664685705588925e-08,2.879217482917920322e-08,2.947770280130252049e-08,3.016323077342582784e-08,3.084875874554913850e-08,3.153428671767244916e-08,3.221981468979575982e-08,3.290534266191907048e-08,3.359087063404238114e-08,3.427639860616569180e-08,3.496192657828900246e-08,3.564745455041231312e-08,3.633298252253562378e-08,3.701851049465893444e-08,3.770403846678224510e-08,3.838956643890555576e-08,3.907509441102886642e-08,3.976062238315217046e-08,4.044615035527548774e-08,4.113167832739879840e-08,4.181720629952210906e-08,4.250273427164542634e-08,4.318826224376873038e-08 +0.000000000000000000e+00,1.716979385293092346e-20,3.433958770586184693e-20,5.150938155879277340e-20,6.867917541172370590e-20,8.584896926465463839e-20,1.030187631175855829e-19,1.201885569705165034e-19,1.373583508234474359e-19,1.545281446763783443e-19,1.716979385293093008e-19,1.888677323822402333e-19,2.060375262351711658e-19,2.232073200881020983e-19,2.403771139410330067e-19,2.575469077939639152e-19,2.747167016468948236e-19,2.918864954998257320e-19,3.090562893527566404e-19,3.262260832056875488e-19,3.433958770586185054e-19,3.605656709115493657e-19,3.777354647644802741e-19,3.949052586174111825e-19,4.120750524703420428e-19,4.292448463232729993e-19,4.464146401762039078e-19,4.635844340291348643e-19,4.807542278820658209e-19,4.979240217349967775e-19,5.150938155879277340e-19,5.322636094408586906e-19,5.494334032937896472e-19,5.666031971467206037e-19,5.837729909996514640e-19,6.009427848525824206e-19,6.181125787055133771e-19,6.352823725584443337e-19,6.524521664113752903e-19,6.696219602643062468e-19,6.867917541172372034e-19,7.039615479701681600e-19,7.211313418230991165e-19,7.383011356760300731e-19,7.554709295289610297e-19,7.726407233818919862e-19,7.898105172348229428e-19,8.069803110877538994e-19,8.241501049406848559e-19,8.413198987936158125e-19,8.584896926465467691e-19,8.756594864994778219e-19,8.928292803524087785e-19,9.099990742053397351e-19,9.271688680582706916e-19,9.443386619112016482e-19,9.615084557641326048e-19,9.786782496170635613e-19,9.958480434699945179e-19,1.013017837322925474e-18,1.030187631175856431e-18,1.047357425028787388e-18,1.064527218881718344e-18,1.081697012734649301e-18 +0.000000000000000000e+00,6.958839665788356671e-10,1.391767933157671334e-09,2.087651899736507105e-09,2.783535866315343082e-09,3.479419832894179059e-09,4.175303799473015037e-09,4.871187766051850600e-09,5.567071732630686164e-09,6.262955699209521728e-09,6.958839665788357292e-09,7.654723632367192855e-09,8.350607598946028419e-09,9.046491565524863983e-09,9.742375532103699546e-09,1.043825949868253511e-08,1.113414346526137067e-08,1.183002743184020624e-08,1.252591139841904180e-08,1.322179536499787736e-08,1.391767933157671293e-08,1.461356329815554849e-08,1.530944726473438571e-08,1.600533123131322293e-08,1.670121519789206015e-08,1.739709916447089736e-08,1.809298313104973458e-08,1.878886709762857180e-08,1.948475106420740902e-08,2.018063503078624624e-08,2.087651899736508346e-08,2.157240296394392067e-08,2.226828693052275789e-08,2.296417089710159511e-08,2.366005486368043233e-08,2.435593883025926955e-08,2.505182279683810676e-08,2.574770676341694398e-08,2.644359072999578120e-08,2.713947469657461842e-08,2.783535866315345564e-08,2.853124262973229285e-08,2.922712659631113007e-08,2.992301056288996729e-08,3.061889452946880451e-08,3.131477849604764173e-08,3.201066246262647894e-08,3.270654642920531616e-08,3.340243039578415338e-08,3.409831436236299060e-08,3.479419832894182782e-08,3.549008229552066503e-08,3.618596626209950225e-08,3.688185022867833947e-08,3.757773419525717669e-08,3.827361816183601391e-08,3.896950212841485113e-08,3.966538609499368834e-08,4.036127006157252556e-08,4.105715402815136278e-08,4.175303799473020000e-08,4.244892196130903722e-08,4.314480592788787443e-08,4.384068989446671165e-08 +0.000000000000000000e+00,6.939534008480479140e-10,1.387906801696095828e-09,2.081860202544143845e-09,2.775813603392192069e-09,3.469767004240240294e-09,4.163720405088288518e-09,4.857673805936336742e-09,5.551627206784384966e-09,6.245580607632433190e-09,6.939534008480481414e-09,7.633487409328528811e-09,8.327440810176575381e-09,9.021394211024621951e-09,9.715347611872668521e-09,1.040930101272071509e-08,1.110325441356876166e-08,1.179720781441680823e-08,1.249116121526485480e-08,1.318511461611290137e-08,1.387906801696094794e-08,1.457302141780899451e-08,1.526697481865704108e-08,1.596092821950508765e-08,1.665488162035313422e-08,1.734883502120118079e-08,1.804278842204922736e-08,1.873674182289727393e-08,1.943069522374532050e-08,2.012464862459336707e-08,2.081860202544141364e-08,2.151255542628946021e-08,2.220650882713750678e-08,2.290046222798555335e-08,2.359441562883359992e-08,2.428836902968164649e-08,2.498232243052969306e-08,2.567627583137773963e-08,2.637022923222578620e-08,2.706418263307383277e-08,2.775813603392187934e-08,2.845208943476992591e-08,2.914604283561797248e-08,2.983999623646602235e-08,3.053394963731407554e-08,3.122790303816212873e-08,3.192185643901018192e-08,3.261580983985823510e-08,3.330976324070628829e-08,3.400371664155434148e-08,3.469767004240239466e-08,3.539162344325044785e-08,3.608557684409850104e-08,3.677953024494655423e-08,3.747348364579460741e-08,3.816743704664266060e-08,3.886139044749071379e-08,3.955534384833876698e-08,4.024929724918682016e-08,4.094325065003487335e-08,4.163720405088292654e-08,4.233115745173097972e-08,4.302511085257903291e-08,4.371906425342708610e-08 +0.000000000000000000e+00,3.428187971849749642e-10,6.856375943699499284e-10,1.028456391554924841e-09,1.371275188739899857e-09,1.714093985924874252e-09,2.056912783109849268e-09,2.399731580294824077e-09,2.742550377479798887e-09,3.085369174664773696e-09,3.428187971849748505e-09,3.771006769034723728e-09,4.113825566219699364e-09,4.456644363404675000e-09,4.799463160589650636e-09,5.142281957774627100e-09,5.485100754959601082e-09,5.827919552144578373e-09,6.170738349329552354e-09,6.513557146514529645e-09,6.856375943699503627e-09,7.199194740884480918e-09,7.542013538069455727e-09,7.884832335254431363e-09,8.227651132439406999e-09,8.570469929624382636e-09,8.913288726809358272e-09,9.256107523994333908e-09,9.598926321179309545e-09,9.941745118364285181e-09,1.028456391554926082e-08,1.062738271273423645e-08,1.097020150991921209e-08,1.131302030710418773e-08,1.165583910428916336e-08,1.199865790147413900e-08,1.234147669865911464e-08,1.268429549584409027e-08,1.302711429302906591e-08,1.336993309021404154e-08,1.371275188739901718e-08,1.405557068458399282e-08,1.439838948176896845e-08,1.474120827895394409e-08,1.508402707613892138e-08,1.542684587332390032e-08,1.576966467050887927e-08,1.611248346769385821e-08,1.645530226487883716e-08,1.679812106206381611e-08,1.714093985924879505e-08,1.748375865643377400e-08,1.782657745361875294e-08,1.816939625080373189e-08,1.851221504798871083e-08,1.885503384517368978e-08,1.919785264235866872e-08,1.954067143954364767e-08,1.988349023672862330e-08,2.022630903391360556e-08,2.056912783109858781e-08,2.091194662828356345e-08,2.125476542546853908e-08,2.159758422265352134e-08 +0.000000000000000000e+00,3.449262539071938733e-20,6.898525078143877467e-20,1.034778761721581680e-19,1.379705015628775734e-19,1.724631269535969788e-19,2.069557523443163842e-19,2.414483777350357896e-19,2.759410031257551950e-19,3.104336285164746004e-19,3.449262539071940057e-19,3.794188792979134111e-19,4.139115046886328165e-19,4.484041300793522701e-19,4.828967554700716754e-19,5.173893808607910808e-19,5.518820062515104862e-19,5.863746316422298916e-19,6.208672570329492970e-19,6.553598824236687024e-19,6.898525078143881078e-19,7.243451332051075132e-19,7.588377585958269186e-19,7.933303839865463239e-19,8.278230093772657293e-19,8.623156347679851347e-19,8.968082601587045401e-19,9.313008855494239455e-19,9.657935109401433509e-19,1.000286136330862756e-18,1.034778761721582162e-18,1.069271387112301567e-18,1.103764012503020972e-18,1.138256637893740378e-18,1.172749263284459783e-18,1.207241888675179189e-18,1.241734514065898594e-18,1.276227139456617999e-18,1.310719764847337405e-18,1.345212390238056810e-18,1.379705015628776216e-18,1.414197641019495621e-18,1.448690266410215026e-18,1.483182891800934432e-18,1.517675517191653837e-18,1.552168142582373243e-18,1.586660767973092648e-18,1.621153393363812053e-18,1.655646018754531459e-18,1.690138644145250864e-18,1.724631269535970269e-18,1.759123894926689482e-18,1.793616520317408695e-18,1.828109145708127908e-18,1.862601771098847121e-18,1.897094396489566333e-18,1.931587021880285546e-18,1.966079647271004759e-18,2.000572272661723972e-18,2.035064898052443185e-18,2.069557523443162397e-18,2.104050148833881610e-18,2.138542774224600823e-18,2.173035399615320036e-18 +0.000000000000000000e+00,-6.855279720887499163e-10,-1.371055944177499833e-09,-2.056583916266249852e-09,-2.742111888354999665e-09,-3.427639860443749892e-09,-4.113167832532499705e-09,-4.798695804621249931e-09,-5.484223776709999331e-09,-6.169751748798750384e-09,-6.855279720887500611e-09,-7.540807692976251664e-09,-8.226335665065002718e-09,-8.911863637153753772e-09,-9.597391609242504826e-09,-1.028291958133125588e-08,-1.096844755342000859e-08,-1.165397552550875799e-08,-1.233950349759750739e-08,-1.302503146968626009e-08,-1.371055944177501280e-08,-1.439608741386376220e-08,-1.508161538595251326e-08,-1.576714335804126431e-08,-1.645267133013001536e-08,-1.713819930221876642e-08,-1.782372727430751747e-08,-1.850925524639626852e-08,-1.919478321848501958e-08,-1.988031119057377394e-08,-2.056583916266252168e-08,-2.125136713475127274e-08,-2.193689510684002379e-08,-2.262242307892877154e-08,-2.330795105101752590e-08,-2.399347902310627695e-08,-2.467900699519502801e-08,-2.536453496728378237e-08,-2.605006293937253011e-08,-2.673559091146128117e-08,-2.742111888355003222e-08,-2.810664685563877997e-08,-2.879217482772753433e-08,-2.947770279981628538e-08,-3.016323077190503313e-08,-3.084875874399378087e-08,-3.153428671608252862e-08,-3.221981468817127636e-08,-3.290534266026002411e-08,-3.359087063234877185e-08,-3.427639860443751960e-08,-3.496192657652626734e-08,-3.564745454861501509e-08,-3.633298252070376283e-08,-3.701851049279251058e-08,-3.770403846488125832e-08,-3.838956643697000607e-08,-3.907509440905875381e-08,-3.976062238114750156e-08,-4.044615035323624930e-08,-4.113167832532499705e-08,-4.181720629741374479e-08,-4.250273426950249254e-08,-4.318826224159124028e-08 +0.000000000000000000e+00,-3.428187971506102627e-10,-6.856375943012205253e-10,-1.028456391451830840e-09,-1.371275188602441051e-09,-1.714093985753051882e-09,-2.056912782903662093e-09,-2.399731580054272511e-09,-2.742550377204882928e-09,-3.085369174355493346e-09,-3.428187971506103764e-09,-3.771006768656713768e-09,-4.113825565807323359e-09,-4.456644362957932949e-09,-4.799463160108542540e-09,-5.142281957259152130e-09,-5.485100754409762548e-09,-5.827919551560371312e-09,-6.170738348710980075e-09,-6.513557145861590493e-09,-6.856375943012200910e-09,-7.199194740162809674e-09,-7.542013537313419264e-09,-7.884832334464028855e-09,-8.227651131614638446e-09,-8.570469928765248036e-09,-8.913288725915857627e-09,-9.256107523066467217e-09,-9.598926320217076808e-09,-9.941745117367684744e-09,-1.028456391451829599e-08,-1.062738271166890558e-08,-1.097020150881951517e-08,-1.131302030597012642e-08,-1.165583910312073435e-08,-1.199865790027134394e-08,-1.234147669742195353e-08,-1.268429549457256147e-08,-1.302711429172317271e-08,-1.336993308887378230e-08,-1.371275188602439189e-08,-1.405557068317500314e-08,-1.439838948032561108e-08,-1.474120827747622067e-08,-1.508402707462682860e-08,-1.542684587177743654e-08,-1.576966466892804448e-08,-1.611248346607865241e-08,-1.645530226322926035e-08,-1.679812106037986828e-08,-1.714093985753047622e-08,-1.748375865468108416e-08,-1.782657745183169209e-08,-1.816939624898230003e-08,-1.851221504613290796e-08,-1.885503384328351590e-08,-1.919785264043412384e-08,-1.954067143758473177e-08,-1.988349023473533971e-08,-2.022630903188595095e-08,-2.056912782903655558e-08,-2.091194662618716021e-08,-2.125476542333777145e-08,-2.159758422048838270e-08 +0.000000000000000000e+00,-6.958839665284154933e-10,-1.391767933056830987e-09,-2.087651899585246376e-09,-2.783535866113661559e-09,-3.479419832642076743e-09,-4.175303799170491926e-09,-4.871187765698907522e-09,-5.567071732227323119e-09,-6.262955698755738716e-09,-6.958839665284154312e-09,-7.654723631812569909e-09,-8.350607598340985506e-09,-9.046491564869401102e-09,-9.742375531397816699e-09,-1.043825949792623230e-08,-1.113414346445464789e-08,-1.183002743098306349e-08,-1.252591139751147909e-08,-1.322179536403989468e-08,-1.391767933056831028e-08,-1.461356329709672588e-08,-1.530944726362514313e-08,-1.600533123015356203e-08,-1.670121519668198094e-08,-1.739709916321039984e-08,-1.809298312973881875e-08,-1.878886709626723765e-08,-1.948475106279565656e-08,-2.018063502932407546e-08,-2.087651899585249437e-08,-2.157240296238091327e-08,-2.226828692890933218e-08,-2.296417089543775109e-08,-2.366005486196616999e-08,-2.435593882849458890e-08,-2.505182279502300780e-08,-2.574770676155142671e-08,-2.644359072807984561e-08,-2.713947469460826452e-08,-2.783535866113668342e-08,-2.853124262766510233e-08,-2.922712659419352123e-08,-2.992301056072194014e-08,-3.061889452725035904e-08,-3.131477849377877795e-08,-3.201066246030719686e-08,-3.270654642683561576e-08,-3.340243039336403467e-08,-3.409831435989245357e-08,-3.479419832642087248e-08,-3.549008229294929138e-08,-3.618596625947771029e-08,-3.688185022600612919e-08,-3.757773419253454810e-08,-3.827361815906296700e-08,-3.896950212559138591e-08,-3.966538609211980481e-08,-4.036127005864822372e-08,-4.105715402517664263e-08,-4.175303799170506153e-08,-4.244892195823348044e-08,-4.314480592476189934e-08,-4.384068989129031825e-08 +0.000000000000000000e+00,-6.939534007789436946e-10,-1.387906801557887389e-09,-2.081860202336830877e-09,-2.775813603115774365e-09,-3.469767003894717853e-09,-4.163720404673661754e-09,-4.857673805452605656e-09,-5.551627206231549557e-09,-6.245580607010493459e-09,-6.939534007789437360e-09,-7.633487408568381261e-09,-8.327440809347325163e-09,-9.021394210126269064e-09,-9.715347610905212966e-09,-1.040930101168415687e-08,-1.110325441246310077e-08,-1.179720781324204467e-08,-1.249116121402098857e-08,-1.318511461479993247e-08,-1.387906801557887637e-08,-1.457302141635782028e-08,-1.526697481713676583e-08,-1.596092821791571304e-08,-1.665488161869466025e-08,-1.734883501947360746e-08,-1.804278842025255467e-08,-1.873674182103150188e-08,-1.943069522181044909e-08,-2.012464862258939630e-08,-2.081860202336834351e-08,-2.151255542414729072e-08,-2.220650882492623793e-08,-2.290046222570518514e-08,-2.359441562648413235e-08,-2.428836902726307956e-08,-2.498232242804202677e-08,-2.567627582882097398e-08,-2.637022922959992119e-08,-2.706418263037886840e-08,-2.775813603115781561e-08,-2.845208943193676282e-08,-2.914604283271571003e-08,-2.983999623349465724e-08,-3.053394963427360445e-08,-3.122790303505255167e-08,-3.192185643583149888e-08,-3.261580983661044609e-08,-3.330976323738939330e-08,-3.400371663816834051e-08,-3.469767003894728772e-08,-3.539162343972623493e-08,-3.608557684050518214e-08,-3.677953024128412935e-08,-3.747348364206307656e-08,-3.816743704284202377e-08,-3.886139044362097098e-08,-3.955534384439991819e-08,-4.024929724517886540e-08,-4.094325064595781261e-08,-4.163720404673675982e-08,-4.233115744751570703e-08,-4.302511084829465424e-08,-4.371906424907360145e-08 +0.000000000000000000e+00,1.202842618731547629e-10,2.405685237463095259e-10,3.608527856194642888e-10,4.811370474926190517e-10,6.014213093657737630e-10,7.217055712389284742e-10,8.419898331120831854e-10,9.622740949852378967e-10,1.082558356858392608e-09,1.202842618731547319e-09,1.323126880604702030e-09,1.443411142477856742e-09,1.563695404351011453e-09,1.683979666224166164e-09,1.804263928097320875e-09,1.924548189970475380e-09,2.044832451843629884e-09,2.165116713716784389e-09,2.285400975589938893e-09,2.405685237463093398e-09,2.525969499336247902e-09,2.646253761209402406e-09,2.766538023082556911e-09,2.886822284955711415e-09,3.007106546828865920e-09,3.127390808702020424e-09,3.247675070575174929e-09,3.367959332448329433e-09,3.488243594321483938e-09,3.608527856194638442e-09,3.728812118067792946e-09,3.849096379940947451e-09,3.969380641814101955e-09,4.089664903687256460e-09,4.209949165560410964e-09,4.330233427433565469e-09,4.450517689306719973e-09,4.570801951179874477e-09,4.691086213053028982e-09,4.811370474926183486e-09,4.931654736799337991e-09,5.051938998672492495e-09,5.172223260545647000e-09,5.292507522418801504e-09,5.412791784291956009e-09,5.533076046165110513e-09,5.653360308038265017e-09,5.773644569911419522e-09,5.893928831784574026e-09,6.014213093657728531e-09,6.134497355530883035e-09,6.254781617404037540e-09,6.375065879277192044e-09,6.495350141150346549e-09,6.615634403023501053e-09,6.735918664896655557e-09,6.856202926769810062e-09,6.976487188642964566e-09,7.096771450516119071e-09,7.217055712389273575e-09,7.337339974262428080e-09,7.457624236135582584e-09,7.577908498008737088e-09 +0.000000000000000000e+00,4.501794149388570530e-10,9.003588298777141060e-10,1.350538244816571159e-09,1.800717659755428212e-09,2.250897074694285265e-09,2.701076489633142318e-09,3.151255904571999371e-09,3.601435319510856424e-09,4.051614734449713477e-09,4.501794149388570530e-09,4.951973564327427583e-09,5.402152979266284636e-09,5.852332394205141689e-09,6.302511809143998742e-09,6.752691224082855795e-09,7.202870639021712848e-09,7.653050053960569901e-09,8.103229468899426954e-09,8.553408883838284007e-09,9.003588298777141060e-09,9.453767713715998113e-09,9.903947128654855166e-09,1.035412654359371222e-08,1.080430595853256927e-08,1.125448537347142633e-08,1.170466478841028338e-08,1.215484420334914043e-08,1.260502361828799748e-08,1.305520303322685454e-08,1.350538244816571159e-08,1.395556186310456864e-08,1.440574127804342570e-08,1.485592069298228275e-08,1.530610010792113980e-08,1.575627952285999686e-08,1.620645893779885391e-08,1.665663835273771096e-08,1.710681776767656801e-08,1.755699718261542507e-08,1.800717659755428212e-08,1.845735601249313917e-08,1.890753542743199623e-08,1.935771484237085328e-08,1.980789425730971033e-08,2.025807367224856739e-08,2.070825308718742444e-08,2.115843250212628149e-08,2.160861191706513854e-08,2.205879133200399560e-08,2.250897074694285265e-08,2.295915016188170970e-08,2.340932957682056676e-08,2.385950899175942381e-08,2.430968840669828086e-08,2.475986782163713792e-08,2.521004723657599497e-08,2.566022665151485202e-08,2.611040606645370907e-08,2.656058548139256613e-08,2.701076489633142318e-08,2.746094431127028023e-08,2.791112372620913729e-08,2.836130314114799434e-08 +0.000000000000000000e+00,-3.805389391378823513e-20,-7.610778782757647027e-20,-1.141616817413647054e-19,-1.522155756551529405e-19,-1.902694695689411757e-19,-2.283233634827294108e-19,-2.663772573965176459e-19,-3.044311513103058811e-19,-3.424850452240941162e-19,-3.805389391378823513e-19,-4.185928330516705865e-19,-4.566467269654588216e-19,-4.947006208792470086e-19,-5.327545147930351956e-19,-5.708084087068233826e-19,-6.088623026206115695e-19,-6.469161965343997565e-19,-6.849700904481879435e-19,-7.230239843619761305e-19,-7.610778782757643175e-19,-7.991317721895525045e-19,-8.371856661033406915e-19,-8.752395600171288784e-19,-9.132934539309170654e-19,-9.513473478447052524e-19,-9.894012417584934394e-19,-1.027455135672281626e-18,-1.065509029586069813e-18,-1.103562923499858000e-18,-1.141616817413646187e-18,-1.179670711327434374e-18,-1.217724605241222561e-18,-1.255778499155010748e-18,-1.293832393068798935e-18,-1.331886286982587122e-18,-1.369940180896375309e-18,-1.407994074810163496e-18,-1.446047968723951683e-18,-1.484101862637739870e-18,-1.522155756551528057e-18,-1.560209650465316244e-18,-1.598263544379104431e-18,-1.636317438292892618e-18,-1.674371332206680805e-18,-1.712425226120468992e-18,-1.750479120034257372e-18,-1.788533013948045559e-18,-1.826586907861833746e-18,-1.864640801775621933e-18,-1.902694695689410120e-18,-1.940748589603198307e-18,-1.978802483516986494e-18,-2.016856377430774681e-18,-2.054910271344562868e-18,-2.092964165258351055e-18,-2.131018059172139242e-18,-2.169071953085927429e-18,-2.207125846999715616e-18,-2.245179740913503803e-18,-2.283233634827291989e-18,-2.321287528741080176e-18,-2.359341422654868363e-18,-2.397395316568656550e-18 +0.000000000000000000e+00,3.782796849306963304e-10,7.565593698613926608e-10,1.134839054792088991e-09,1.513118739722785322e-09,1.891398424653481859e-09,2.269678109584178396e-09,2.647957794514874933e-09,3.026237479445571470e-09,3.404517164376268007e-09,3.782796849306964545e-09,4.161076534237661082e-09,4.539356219168357619e-09,4.917635904099054156e-09,5.295915589029750693e-09,5.674195273960447230e-09,6.052474958891143768e-09,6.430754643821840305e-09,6.809034328752536842e-09,7.187314013683233379e-09,7.565593698613930743e-09,7.943873383544628935e-09,8.322153068475327127e-09,8.700432753406025318e-09,9.078712438336723510e-09,9.456992123267421701e-09,9.835271808198119893e-09,1.021355149312881808e-08,1.059183117805951628e-08,1.097011086299021447e-08,1.134839054792091266e-08,1.172667023285161085e-08,1.210494991778230904e-08,1.248322960271300723e-08,1.286150928764370542e-08,1.323978897257440362e-08,1.361806865750510181e-08,1.399634834243580000e-08,1.437462802736649819e-08,1.475290771229719638e-08,1.513118739722789457e-08,1.550946708215859277e-08,1.588774676708929096e-08,1.626602645201998915e-08,1.664430613695068734e-08,1.702258582188138553e-08,1.740086550681208372e-08,1.777914519174278191e-08,1.815742487667348011e-08,1.853570456160417830e-08,1.891398424653487649e-08,1.929226393146557468e-08,1.967054361639627287e-08,2.004882330132697106e-08,2.042710298625766926e-08,2.080538267118836745e-08,2.118366235611906564e-08,2.156194204104976383e-08,2.194022172598046202e-08,2.231850141091116021e-08,2.269678109584185840e-08,2.307506078077255660e-08,2.345334046570325479e-08,2.383162015063395298e-08 +0.000000000000000000e+00,3.238361819549088559e-10,6.476723639098177119e-10,9.715085458647264644e-10,1.295344727819635217e-09,1.619180909774543970e-09,1.943017091729452929e-09,2.266853273684361888e-09,2.590689455639270848e-09,2.914525637594179807e-09,3.238361819549088766e-09,3.562198001503997726e-09,3.886034183458906685e-09,4.209870365413816058e-09,4.533706547368725431e-09,4.857542729323634804e-09,5.181378911278544177e-09,5.505215093233453550e-09,5.829051275188362923e-09,6.152887457143272295e-09,6.476723639098181668e-09,6.800559821053091041e-09,7.124396003008000414e-09,7.448232184962909787e-09,7.772068366917818333e-09,8.095904548872726879e-09,8.419740730827635424e-09,8.743576912782543970e-09,9.067413094737452516e-09,9.391249276692361062e-09,9.715085458647269607e-09,1.003892164060217815e-08,1.036275782255708670e-08,1.068659400451199524e-08,1.101043018646690379e-08,1.133426636842181234e-08,1.165810255037672088e-08,1.198193873233162943e-08,1.230577491428653797e-08,1.262961109624144652e-08,1.295344727819635507e-08,1.327728346015126361e-08,1.360111964210617216e-08,1.392495582406108070e-08,1.424879200601598925e-08,1.457262818797089779e-08,1.489646436992580634e-08,1.522030055188071323e-08,1.554413673383562012e-08,1.586797291579052701e-08,1.619180909774543391e-08,1.651564527970034080e-08,1.683948146165524769e-08,1.716331764361015458e-08,1.748715382556506147e-08,1.781099000751996836e-08,1.813482618947487525e-08,1.845866237142978214e-08,1.878249855338468904e-08,1.910633473533959593e-08,1.943017091729450282e-08,1.975400709924940971e-08,2.007784328120431660e-08,2.040167946315922349e-08 +0.000000000000000000e+00,5.570385773555487187e-10,1.114077154711097437e-09,1.671115732066646156e-09,2.228154309422194875e-09,2.785192886777743800e-09,3.342231464133292726e-09,3.899270041488841651e-09,4.456308618844390577e-09,5.013347196199939502e-09,5.570385773555488428e-09,6.127424350911037353e-09,6.684462928266586278e-09,7.241501505622135204e-09,7.798540082977684957e-09,8.355578660333233882e-09,8.912617237688782808e-09,9.469655815044331733e-09,1.002669439239988066e-08,1.058373296975542958e-08,1.114077154711097851e-08,1.169781012446652743e-08,1.225484870182207636e-08,1.281188727917762529e-08,1.336892585653317421e-08,1.392596443388872314e-08,1.448300301124427206e-08,1.504004158859982099e-08,1.559708016595536991e-08,1.615411874331091884e-08,1.671115732066646776e-08,1.726819589802201669e-08,1.782523447537756562e-08,1.838227305273311454e-08,1.893931163008866347e-08,1.949635020744421239e-08,2.005338878479976132e-08,2.061042736215531024e-08,2.116746593951085917e-08,2.172450451686640809e-08,2.228154309422195702e-08,2.283858167157750594e-08,2.339562024893305487e-08,2.395265882628860380e-08,2.450969740364415272e-08,2.506673598099970165e-08,2.562377455835525057e-08,2.618081313571079950e-08,2.673785171306634842e-08,2.729489029042189735e-08,2.785192886777744627e-08,2.840896744513299520e-08,2.896600602248854412e-08,2.952304459984409305e-08,3.008008317719964198e-08,3.063712175455518759e-08,3.119416033191073321e-08,3.175119890926627883e-08,3.230823748662182444e-08,3.286527606397737006e-08,3.342231464133291568e-08,3.397935321868846129e-08,3.453639179604400691e-08,3.509343037339955253e-08 +0.000000000000000000e+00,5.920032857633943122e-11,1.184006571526788624e-10,1.776009857290182936e-10,2.368013143053577249e-10,2.960016428816971561e-10,3.552019714580365873e-10,4.144023000343760185e-10,4.736026286107154497e-10,5.328029571870548809e-10,5.920032857633943122e-10,6.512036143397337434e-10,7.104039429160731746e-10,7.696042714924126058e-10,8.288046000687520370e-10,8.880049286450914682e-10,9.472052572214308995e-10,1.006405585797770331e-09,1.065605914374109762e-09,1.124806242950449193e-09,1.184006571526788624e-09,1.243206900103128056e-09,1.302407228679467487e-09,1.361607557255806918e-09,1.420807885832146349e-09,1.480008214408485780e-09,1.539208542984825212e-09,1.598408871561164643e-09,1.657609200137504074e-09,1.716809528713843505e-09,1.776009857290182936e-09,1.835210185866522368e-09,1.894410514442861799e-09,1.953610843019201230e-09,2.012811171595540661e-09,2.072011500171880093e-09,2.131211828748219524e-09,2.190412157324558955e-09,2.249612485900898386e-09,2.308812814477237817e-09,2.368013143053577249e-09,2.427213471629916680e-09,2.486413800206256111e-09,2.545614128782595542e-09,2.604814457358934974e-09,2.664014785935274405e-09,2.723215114511613836e-09,2.782415443087953267e-09,2.841615771664292698e-09,2.900816100240632130e-09,2.960016428816971561e-09,3.019216757393310992e-09,3.078417085969650423e-09,3.137617414545989854e-09,3.196817743122329286e-09,3.256018071698668717e-09,3.315218400275008148e-09,3.374418728851347579e-09,3.433619057427687011e-09,3.492819386004026442e-09,3.552019714580365873e-09,3.611220043156705304e-09,3.670420371733044735e-09,3.729620700309384580e-09 +0.000000000000000000e+00,-3.379552322709414903e-20,-6.759104645418829805e-20,-1.013865696812824471e-19,-1.351820929083765961e-19,-1.689776161354707451e-19,-2.027731393625648942e-19,-2.365686625896590432e-19,-2.703641858167531922e-19,-3.041597090438473412e-19,-3.379552322709414903e-19,-3.717507554980356393e-19,-4.055462787251297883e-19,-4.393418019522239855e-19,-4.731373251793181827e-19,-5.069328484064123798e-19,-5.407283716335065770e-19,-5.745238948606007742e-19,-6.083194180876949714e-19,-6.421149413147891685e-19,-6.759104645418833657e-19,-7.097059877689775629e-19,-7.435015109960717601e-19,-7.772970342231659572e-19,-8.110925574502601544e-19,-8.448880806773543516e-19,-8.786836039044485487e-19,-9.124791271315427459e-19,-9.462746503586369431e-19,-9.800701735857311403e-19,-1.013865696812825337e-18,-1.047661220039919535e-18,-1.081456743267013732e-18,-1.115252266494107929e-18,-1.149047789721202126e-18,-1.182843312948296323e-18,-1.216638836175390520e-18,-1.250434359402484718e-18,-1.284229882629578915e-18,-1.318025405856673112e-18,-1.351820929083767309e-18,-1.385616452310861506e-18,-1.419411975537955704e-18,-1.453207498765049901e-18,-1.487003021992144098e-18,-1.520798545219238295e-18,-1.554594068446332492e-18,-1.588389591673426689e-18,-1.622185114900520887e-18,-1.655980638127615084e-18,-1.689776161354709281e-18,-1.723571684581803478e-18,-1.757367207808897483e-18,-1.791162731035991295e-18,-1.824958254263085107e-18,-1.858753777490178919e-18,-1.892549300717272731e-18,-1.926344823944366543e-18,-1.960140347171460355e-18,-1.993935870398554167e-18,-2.027731393625647979e-18,-2.061526916852741791e-18,-2.095322440079835603e-18,-2.129117963306929415e-18 +0.000000000000000000e+00,-1.202842619490650244e-10,-2.405685238981300487e-10,-3.608527858471950731e-10,-4.811370477962600974e-10,-6.014213097453251735e-10,-7.217055716943902495e-10,-8.419898336434553256e-10,-9.622740955925204016e-10,-1.082558357541585478e-09,-1.202842619490650554e-09,-1.323126881439715630e-09,-1.443411143388780706e-09,-1.563695405337845782e-09,-1.683979667286910858e-09,-1.804263929235975934e-09,-1.924548191185041217e-09,-2.044832453134106500e-09,-2.165116715083171782e-09,-2.285400977032237065e-09,-2.405685238981302348e-09,-2.525969500930367631e-09,-2.646253762879432914e-09,-2.766538024828498197e-09,-2.886822286777563480e-09,-3.007106548726628762e-09,-3.127390810675694045e-09,-3.247675072624759328e-09,-3.367959334573824611e-09,-3.488243596522889894e-09,-3.608527858471955177e-09,-3.728812120421020873e-09,-3.849096382370086570e-09,-3.969380644319152266e-09,-4.089664906268217962e-09,-4.209949168217283659e-09,-4.330233430166349355e-09,-4.450517692115415052e-09,-4.570801954064480748e-09,-4.691086216013546445e-09,-4.811370477962612141e-09,-4.931654739911677837e-09,-5.051939001860743534e-09,-5.172223263809809230e-09,-5.292507525758874927e-09,-5.412791787707940623e-09,-5.533076049657006320e-09,-5.653360311606072016e-09,-5.773644573555137712e-09,-5.893928835504203409e-09,-6.014213097453269105e-09,-6.134497359402334802e-09,-6.254781621351400498e-09,-6.375065883300466195e-09,-6.495350145249531891e-09,-6.615634407198597588e-09,-6.735918669147663284e-09,-6.856202931096728980e-09,-6.976487193045794677e-09,-7.096771454994860373e-09,-7.217055716943926070e-09,-7.337339978892991766e-09,-7.457624240842058290e-09,-7.577908502791124813e-09 +0.000000000000000000e+00,-4.501794149751133615e-10,-9.003588299502267231e-10,-1.350538244925340033e-09,-1.800717659900453239e-09,-2.250897074875566446e-09,-2.701076489850679652e-09,-3.151255904825792859e-09,-3.601435319800906065e-09,-4.051614734776019685e-09,-4.501794149751133719e-09,-4.951973564726247752e-09,-5.402152979701361786e-09,-5.852332394676475820e-09,-6.302511809651589853e-09,-6.752691224626703887e-09,-7.202870639601817920e-09,-7.653050054576931954e-09,-8.103229469552045988e-09,-8.553408884527160021e-09,-9.003588299502274055e-09,-9.453767714477388088e-09,-9.903947129452502122e-09,-1.035412654442761616e-08,-1.080430595940273019e-08,-1.125448537437784422e-08,-1.170466478935295826e-08,-1.215484420432807229e-08,-1.260502361930318632e-08,-1.305520303427830036e-08,-1.350538244925341439e-08,-1.395556186422852842e-08,-1.440574127920364246e-08,-1.485592069417875649e-08,-1.530610010915387053e-08,-1.575627952412898456e-08,-1.620645893910409859e-08,-1.665663835407921263e-08,-1.710681776905432666e-08,-1.755699718402944069e-08,-1.800717659900455473e-08,-1.845735601397966876e-08,-1.890753542895478279e-08,-1.935771484392989683e-08,-1.980789425890501086e-08,-2.025807367388012490e-08,-2.070825308885523893e-08,-2.115843250383035296e-08,-2.160861191880546700e-08,-2.205879133378058103e-08,-2.250897074875569506e-08,-2.295915016373080910e-08,-2.340932957870592313e-08,-2.385950899368103716e-08,-2.430968840865615120e-08,-2.475986782363126523e-08,-2.521004723860637926e-08,-2.566022665358149330e-08,-2.611040606855660733e-08,-2.656058548353172137e-08,-2.701076489850683540e-08,-2.746094431348194943e-08,-2.791112372845706347e-08,-2.836130314343217750e-08 +0.000000000000000000e+00,-5.920032865240546108e-11,-1.184006573048109222e-10,-1.776009859572163832e-10,-2.368013146096218443e-10,-2.960016432620273054e-10,-3.552019719144327665e-10,-4.144023005668382276e-10,-4.736026292192436887e-10,-5.328029578716492014e-10,-5.920032865240547142e-10,-6.512036151764602270e-10,-7.104039438288657398e-10,-7.696042724812712526e-10,-8.288046011336767653e-10,-8.880049297860822781e-10,-9.472052584384877909e-10,-1.006405587090893304e-09,-1.065605915743298816e-09,-1.124806244395704329e-09,-1.184006573048109842e-09,-1.243206901700515355e-09,-1.302407230352920868e-09,-1.361607559005326380e-09,-1.420807887657731893e-09,-1.480008216310137406e-09,-1.539208544962542919e-09,-1.598408873614948431e-09,-1.657609202267353944e-09,-1.716809530919759457e-09,-1.776009859572164970e-09,-1.835210188224570483e-09,-1.894410516876975995e-09,-1.953610845529381301e-09,-2.012811174181786607e-09,-2.072011502834191913e-09,-2.131211831486597219e-09,-2.190412160139002525e-09,-2.249612488791407831e-09,-2.308812817443813137e-09,-2.368013146096218443e-09,-2.427213474748623749e-09,-2.486413803401029055e-09,-2.545614132053434361e-09,-2.604814460705839667e-09,-2.664014789358244973e-09,-2.723215118010650279e-09,-2.782415446663055585e-09,-2.841615775315460891e-09,-2.900816103967866197e-09,-2.960016432620271503e-09,-3.019216761272676809e-09,-3.078417089925082115e-09,-3.137617418577487421e-09,-3.196817747229892727e-09,-3.256018075882298033e-09,-3.315218404534703339e-09,-3.374418733187108645e-09,-3.433619061839513951e-09,-3.492819390491919257e-09,-3.552019719144324563e-09,-3.611220047796729869e-09,-3.670420376449135175e-09,-3.729620705101540481e-09 +0.000000000000000000e+00,-3.782796849981069491e-10,-7.565593699962138982e-10,-1.134839054994320796e-09,-1.513118739992427590e-09,-1.891398424990534384e-09,-2.269678109988641178e-09,-2.647957794986747972e-09,-3.026237479984854766e-09,-3.404517164982961560e-09,-3.782796849981067940e-09,-4.161076534979174734e-09,-4.539356219977281528e-09,-4.917635904975388322e-09,-5.295915589973495116e-09,-5.674195274971601910e-09,-6.052474959969708704e-09,-6.430754644967815498e-09,-6.809034329965922292e-09,-7.187314014964029086e-09,-7.565593699962135880e-09,-7.943873384960242674e-09,-8.322153069958349468e-09,-8.700432754956456262e-09,-9.078712439954563056e-09,-9.456992124952669850e-09,-9.835271809950776644e-09,-1.021355149494888344e-08,-1.059183117994699023e-08,-1.097011086494509703e-08,-1.134839054994320382e-08,-1.172667023494131061e-08,-1.210494991993941741e-08,-1.248322960493752420e-08,-1.286150928993563100e-08,-1.323978897493373779e-08,-1.361806865993184458e-08,-1.399634834492995138e-08,-1.437462802992805817e-08,-1.475290771492616497e-08,-1.513118739992427176e-08,-1.550946708492237855e-08,-1.588774676992048535e-08,-1.626602645491859214e-08,-1.664430613991669894e-08,-1.702258582491480573e-08,-1.740086550991291252e-08,-1.777914519491101932e-08,-1.815742487990912611e-08,-1.853570456490723291e-08,-1.891398424990533970e-08,-1.929226393490344649e-08,-1.967054361990155329e-08,-2.004882330489966008e-08,-2.042710298989776688e-08,-2.080538267489587367e-08,-2.118366235989398046e-08,-2.156194204489208726e-08,-2.194022172989019405e-08,-2.231850141488830085e-08,-2.269678109988640764e-08,-2.307506078488451443e-08,-2.345334046988262123e-08,-2.383162015488072802e-08 +0.000000000000000000e+00,-3.238361820102891666e-10,-6.476723640205783333e-10,-9.715085460308675516e-10,-1.295344728041156873e-09,-1.619180910051446195e-09,-1.943017092061735517e-09,-2.266853274072024632e-09,-2.590689456082313747e-09,-2.914525638092602862e-09,-3.238361820102891977e-09,-3.562198002113181092e-09,-3.886034184123470207e-09,-4.209870366133759321e-09,-4.533706548144048436e-09,-4.857542730154337551e-09,-5.181378912164626666e-09,-5.505215094174915781e-09,-5.829051276185204896e-09,-6.152887458195494011e-09,-6.476723640205783126e-09,-6.800559822216072241e-09,-7.124396004226361356e-09,-7.448232186236650471e-09,-7.772068368246938759e-09,-8.095904550257227046e-09,-8.419740732267515334e-09,-8.743576914277803622e-09,-9.067413096288091910e-09,-9.391249278298380197e-09,-9.715085460308668485e-09,-1.003892164231895677e-08,-1.036275782432924506e-08,-1.068659400633953335e-08,-1.101043018834982164e-08,-1.133426637036010992e-08,-1.165810255237039821e-08,-1.198193873438068650e-08,-1.230577491639097479e-08,-1.262961109840126308e-08,-1.295344728041155136e-08,-1.327728346242183965e-08,-1.360111964443212794e-08,-1.392495582644241623e-08,-1.424879200845270451e-08,-1.457262819046299280e-08,-1.489646437247328109e-08,-1.522030055448356938e-08,-1.554413673649385766e-08,-1.586797291850414595e-08,-1.619180910051443424e-08,-1.651564528252472253e-08,-1.683948146453501082e-08,-1.716331764654529910e-08,-1.748715382855558739e-08,-1.781099001056587568e-08,-1.813482619257616397e-08,-1.845866237458645225e-08,-1.878249855659674054e-08,-1.910633473860702883e-08,-1.943017092061731712e-08,-1.975400710262760541e-08,-2.007784328463789369e-08,-2.040167946664818198e-08 +0.000000000000000000e+00,-5.570385773797706350e-10,-1.114077154759541270e-09,-1.671115732139311905e-09,-2.228154309519082540e-09,-2.785192886898852968e-09,-3.342231464278623396e-09,-3.899270041658393824e-09,-4.456308619038164253e-09,-5.013347196417934681e-09,-5.570385773797705109e-09,-6.127424351177475537e-09,-6.684462928557245965e-09,-7.241501505937016393e-09,-7.798540083316785994e-09,-8.355578660696554768e-09,-8.912617238076323542e-09,-9.469655815456092316e-09,-1.002669439283586109e-08,-1.058373297021562986e-08,-1.114077154759539864e-08,-1.169781012497516741e-08,-1.225484870235493618e-08,-1.281188727973470496e-08,-1.336892585711447373e-08,-1.392596443449424251e-08,-1.448300301187401128e-08,-1.504004158925378005e-08,-1.559708016663354883e-08,-1.615411874401331760e-08,-1.671115732139308638e-08,-1.726819589877285515e-08,-1.782523447615262392e-08,-1.838227305353239270e-08,-1.893931163091216147e-08,-1.949635020829193024e-08,-2.005338878567169902e-08,-2.061042736305146779e-08,-2.116746594043123657e-08,-2.172450451781100534e-08,-2.228154309519077411e-08,-2.283858167257054289e-08,-2.339562024995031166e-08,-2.395265882733008043e-08,-2.450969740470984921e-08,-2.506673598208961798e-08,-2.562377455946938676e-08,-2.618081313684915553e-08,-2.673785171422892430e-08,-2.729489029160869308e-08,-2.785192886898846185e-08,-2.840896744636823063e-08,-2.896600602374799940e-08,-2.952304460112776817e-08,-3.008008317850753364e-08,-3.063712175588729910e-08,-3.119416033326706457e-08,-3.175119891064683003e-08,-3.230823748802659550e-08,-3.286527606540636096e-08,-3.342231464278612643e-08,-3.397935322016589189e-08,-3.453639179754565736e-08,-3.509343037492542282e-08 +0.000000000000000000e+00,5.501340208744884791e-10,1.100268041748976958e-09,1.650402062623465437e-09,2.200536083497953916e-09,2.750670104372442395e-09,3.300804125246930874e-09,3.850938146121419767e-09,4.401072166995908660e-09,4.951206187870397552e-09,5.501340208744886445e-09,6.051474229619375338e-09,6.601608250493864230e-09,7.151742271368353123e-09,7.701876292242842843e-09,8.252010313117332563e-09,8.802144333991822283e-09,9.352278354866312002e-09,9.902412375740801722e-09,1.045254639661529144e-08,1.100268041748978116e-08,1.155281443836427088e-08,1.210294845923876060e-08,1.265308248011325032e-08,1.320321650098774004e-08,1.375335052186222976e-08,1.430348454273671948e-08,1.485361856361120920e-08,1.540375258448569892e-08,1.595388660536018864e-08,1.650402062623467836e-08,1.705415464710916808e-08,1.760428866798365780e-08,1.815442268885814752e-08,1.870455670973263724e-08,1.925469073060712696e-08,1.980482475148161668e-08,2.035495877235610640e-08,2.090509279323059612e-08,2.145522681410508584e-08,2.200536083497957556e-08,2.255549485585406528e-08,2.310562887672855500e-08,2.365576289760304472e-08,2.420589691847753444e-08,2.475603093935202416e-08,2.530616496022651388e-08,2.585629898110100360e-08,2.640643300197549332e-08,2.695656702284998304e-08,2.750670104372447276e-08,2.805683506459896248e-08,2.860696908547345220e-08,2.915710310634794192e-08,2.970723712722243164e-08,3.025737114809692136e-08,3.080750516897141108e-08,3.135763918984590080e-08,3.190777321072039052e-08,3.245790723159488024e-08,3.300804125246936996e-08,3.355817527334385968e-08,3.410830929421834940e-08,3.465844331509283912e-08 +0.000000000000000000e+00,4.958396909981852947e-10,9.916793819963705894e-10,1.487519072994555988e-09,1.983358763992741592e-09,2.479198454990927197e-09,2.975038145989112802e-09,3.470877836987298407e-09,3.966717527985484012e-09,4.462557218983669617e-09,4.958396909981855222e-09,5.454236600980040827e-09,5.950076291978226432e-09,6.445915982976412037e-09,6.941755673974597642e-09,7.437595364972783247e-09,7.933435055970969679e-09,8.429274746969156938e-09,8.925114437967344197e-09,9.420954128965531456e-09,9.916793819963718716e-09,1.041263351096190598e-08,1.090847320196009323e-08,1.140431289295828049e-08,1.190015258395646775e-08,1.239599227495465501e-08,1.289183196595284227e-08,1.338767165695102953e-08,1.388351134794921679e-08,1.437935103894740405e-08,1.487519072994559131e-08,1.537103042094377857e-08,1.586687011194196583e-08,1.636270980294015309e-08,1.685854949393834035e-08,1.735438918493652760e-08,1.785022887593471486e-08,1.834606856693290212e-08,1.884190825793108938e-08,1.933774794892927664e-08,1.983358763992746390e-08,2.032942733092565116e-08,2.082526702192383842e-08,2.132110671292202568e-08,2.181694640392021294e-08,2.231278609491840020e-08,2.280862578591658746e-08,2.330446547691477472e-08,2.380030516791296198e-08,2.429614485891114923e-08,2.479198454990933649e-08,2.528782424090752375e-08,2.578366393190571101e-08,2.627950362290389827e-08,2.677534331390208553e-08,2.727118300490027279e-08,2.776702269589846005e-08,2.826286238689664731e-08,2.875870207789483457e-08,2.925454176889302183e-08,2.975038145989120909e-08,3.024622115088939635e-08,3.074206084188758361e-08,3.123790053288577086e-08 +0.000000000000000000e+00,6.039025729864849631e-10,1.207805145972969926e-09,1.811707718959454889e-09,2.415610291945939852e-09,3.019512864932425022e-09,3.623415437918910192e-09,4.227318010905395362e-09,4.831220583891880532e-09,5.435123156878365702e-09,6.039025729864850872e-09,6.642928302851336042e-09,7.246830875837821212e-09,7.850733448824305554e-09,8.454636021810789070e-09,9.058538594797272586e-09,9.662441167783756101e-09,1.026634374077023962e-08,1.087024631375672313e-08,1.147414888674320665e-08,1.207805145972969016e-08,1.268195403271617368e-08,1.328585660570265719e-08,1.388975917868914071e-08,1.449366175167562423e-08,1.509756432466210774e-08,1.570146689764859126e-08,1.630536947063507477e-08,1.690927204362155829e-08,1.751317461660804180e-08,1.811707718959452532e-08,1.872097976258100883e-08,1.932488233556749235e-08,1.992878490855397587e-08,2.053268748154045938e-08,2.113659005452694290e-08,2.174049262751342641e-08,2.234439520049990993e-08,2.294829777348639344e-08,2.355220034647287696e-08,2.415610291945936047e-08,2.476000549244584399e-08,2.536390806543232751e-08,2.596781063841881102e-08,2.657171321140529454e-08,2.717561578439177805e-08,2.777951835737826157e-08,2.838342093036474508e-08,2.898732350335122860e-08,2.959122607633771211e-08,3.019512864932419563e-08,3.079903122231068245e-08,3.140293379529716928e-08,3.200683636828365610e-08,3.261073894127014293e-08,3.321464151425662975e-08,3.381854408724311658e-08,3.442244666022960340e-08,3.502634923321609022e-08,3.563025180620257705e-08,3.623415437918906387e-08,3.683805695217555070e-08,3.744195952516203752e-08,3.804586209814852435e-08 +0.000000000000000000e+00,-5.501340208740926732e-10,-1.100268041748185346e-09,-1.650402062622278019e-09,-2.200536083496370693e-09,-2.750670104370463366e-09,-3.300804125244556039e-09,-3.850938146118648712e-09,-4.401072166992741385e-09,-4.951206187866834058e-09,-5.501340208740926732e-09,-6.051474229615019405e-09,-6.601608250489112078e-09,-7.151742271363204751e-09,-7.701876292237297424e-09,-8.252010313111390097e-09,-8.802144333985482770e-09,-9.352278354859575444e-09,-9.902412375733668117e-09,-1.045254639660776079e-08,-1.100268041748185346e-08,-1.155281443835594614e-08,-1.210294845923003881e-08,-1.265308248010413148e-08,-1.320321650097822416e-08,-1.375335052185231683e-08,-1.430348454272640950e-08,-1.485361856360050218e-08,-1.540375258447459485e-08,-1.595388660534868752e-08,-1.650402062622278019e-08,-1.705415464709687287e-08,-1.760428866797096554e-08,-1.815442268884505821e-08,-1.870455670971915089e-08,-1.925469073059324356e-08,-1.980482475146733623e-08,-2.035495877234142891e-08,-2.090509279321552158e-08,-2.145522681408961425e-08,-2.200536083496370693e-08,-2.255549485583779960e-08,-2.310562887671189227e-08,-2.365576289758598495e-08,-2.420589691846007762e-08,-2.475603093933417029e-08,-2.530616496020826296e-08,-2.585629898108235564e-08,-2.640643300195644831e-08,-2.695656702283054098e-08,-2.750670104370463366e-08,-2.805683506457872633e-08,-2.860696908545281900e-08,-2.915710310632691168e-08,-2.970723712720100435e-08,-3.025737114807509702e-08,-3.080750516894918970e-08,-3.135763918982328237e-08,-3.190777321069737504e-08,-3.245790723157146772e-08,-3.300804125244556039e-08,-3.355817527331965306e-08,-3.410830929419374574e-08,-3.465844331506783841e-08 +0.000000000000000000e+00,-4.958396910156290863e-10,-9.916793820312581725e-10,-1.487519073046887155e-09,-1.983358764062515932e-09,-2.479198455078144708e-09,-2.975038146093773484e-09,-3.470877837109402260e-09,-3.966717528125031036e-09,-4.462557219140659398e-09,-4.958396910156287761e-09,-5.454236601171916123e-09,-5.950076292187544486e-09,-6.445915983203172848e-09,-6.941755674218801211e-09,-7.437595365234429573e-09,-7.933435056250057109e-09,-8.429274747265684644e-09,-8.925114438281312179e-09,-9.420954129296939715e-09,-9.916793820312567250e-09,-1.041263351132819479e-08,-1.090847320234382232e-08,-1.140431289335944986e-08,-1.190015258437507739e-08,-1.239599227539070493e-08,-1.289183196640633246e-08,-1.338767165742196000e-08,-1.388351134843758753e-08,-1.437935103945321507e-08,-1.487519073046884260e-08,-1.537103042148447014e-08,-1.586687011250009767e-08,-1.636270980351572521e-08,-1.685854949453135274e-08,-1.735438918554698028e-08,-1.785022887656260781e-08,-1.834606856757823535e-08,-1.884190825859386289e-08,-1.933774794960949042e-08,-1.983358764062511796e-08,-2.032942733164074549e-08,-2.082526702265637303e-08,-2.132110671367200056e-08,-2.181694640468762810e-08,-2.231278609570325563e-08,-2.280862578671888317e-08,-2.330446547773451070e-08,-2.380030516875013824e-08,-2.429614485976576577e-08,-2.479198455078139331e-08,-2.528782424179702084e-08,-2.578366393281264838e-08,-2.627950362382827592e-08,-2.677534331484390345e-08,-2.727118300585953099e-08,-2.776702269687515852e-08,-2.826286238789078606e-08,-2.875870207890641359e-08,-2.925454176992204113e-08,-2.975038146093766866e-08,-3.024622115195329620e-08,-3.074206084296892704e-08,-3.123790053398455789e-08 +0.000000000000000000e+00,-6.039025729709913533e-10,-1.207805145941982707e-09,-1.811707718912974163e-09,-2.415610291883965827e-09,-3.019512864854957490e-09,-3.623415437825949153e-09,-4.227318010796941231e-09,-4.831220583767933308e-09,-5.435123156738925385e-09,-6.039025729709917462e-09,-6.642928302680909539e-09,-7.246830875651901616e-09,-7.850733448622893693e-09,-8.454636021593885770e-09,-9.058538594564877847e-09,-9.662441167535869924e-09,-1.026634374050686200e-08,-1.087024631347785408e-08,-1.147414888644884615e-08,-1.207805145941983823e-08,-1.268195403239083031e-08,-1.328585660536182239e-08,-1.388975917833281446e-08,-1.449366175130380654e-08,-1.509756432427479862e-08,-1.570146689724579069e-08,-1.630536947021678277e-08,-1.690927204318777485e-08,-1.751317461615876693e-08,-1.811707718912975900e-08,-1.872097976210075108e-08,-1.932488233507174316e-08,-1.992878490804273523e-08,-2.053268748101372731e-08,-2.113659005398471939e-08,-2.174049262695571146e-08,-2.234439519992670354e-08,-2.294829777289769562e-08,-2.355220034586868770e-08,-2.415610291883967977e-08,-2.476000549181067185e-08,-2.536390806478166393e-08,-2.596781063775265600e-08,-2.657171321072364808e-08,-2.717561578369464016e-08,-2.777951835666563223e-08,-2.838342092963662431e-08,-2.898732350260761639e-08,-2.959122607557860847e-08,-3.019512864854959723e-08,-3.079903122152058600e-08,-3.140293379449157477e-08,-3.200683636746256354e-08,-3.261073894043355231e-08,-3.321464151340454108e-08,-3.381854408637552984e-08,-3.442244665934651861e-08,-3.502634923231750738e-08,-3.563025180528849615e-08,-3.623415437825948492e-08,-3.683805695123047369e-08,-3.744195952420146245e-08,-3.804586209717245122e-08 +0.000000000000000000e+00,5.937785806247503603e-10,1.187557161249500721e-09,1.781335741874251081e-09,2.375114322499001441e-09,2.968892903123751802e-09,3.562671483748502162e-09,4.156450064373252109e-09,4.750228644998002055e-09,5.344007225622752002e-09,5.937785806247501949e-09,6.531564386872251896e-09,7.125342967497001842e-09,7.719121548121751789e-09,8.312900128746500909e-09,8.906678709371250028e-09,9.500457289995999148e-09,1.009423587062074827e-08,1.068801445124549739e-08,1.128179303187024651e-08,1.187557161249499563e-08,1.246935019311974475e-08,1.306312877374449387e-08,1.365690735436924298e-08,1.425068593499399210e-08,1.484446451561874122e-08,1.543824309624349034e-08,1.603202167686824112e-08,1.662580025749299189e-08,1.721957883811774267e-08,1.781335741874249344e-08,1.840713599936724421e-08,1.900091457999199499e-08,1.959469316061674576e-08,2.018847174124149653e-08,2.078225032186624731e-08,2.137602890249099808e-08,2.196980748311574886e-08,2.256358606374049963e-08,2.315736464436525040e-08,2.375114322499000118e-08,2.434492180561475195e-08,2.493870038623950273e-08,2.553247896686425350e-08,2.612625754748900427e-08,2.672003612811375505e-08,2.731381470873850582e-08,2.790759328936325660e-08,2.850137186998800737e-08,2.909515045061275814e-08,2.968892903123750892e-08,3.028270761186225969e-08,3.087648619248701377e-08,3.147026477311176786e-08,3.206404335373652194e-08,3.265782193436127602e-08,3.325160051498603010e-08,3.384537909561078419e-08,3.443915767623553827e-08,3.503293625686029235e-08,3.562671483748504644e-08,3.622049341810980052e-08,3.681427199873455460e-08,3.740805057935930868e-08 +0.000000000000000000e+00,5.663812991275683306e-10,1.132762598255136661e-09,1.699143897382704992e-09,2.265525196510273322e-09,2.831906495637841653e-09,3.398287794765409984e-09,3.964669093892978314e-09,4.531050393020546645e-09,5.097431692148114975e-09,5.663812991275683306e-09,6.230194290403251637e-09,6.796575589530819967e-09,7.362956888658388298e-09,7.929338187785956628e-09,8.495719486913524959e-09,9.062100786041093290e-09,9.628482085168661620e-09,1.019486338429622995e-08,1.076124468342379828e-08,1.132762598255136661e-08,1.189400728167893494e-08,1.246038858080650327e-08,1.302676987993407160e-08,1.359315117906163993e-08,1.415953247818920826e-08,1.472591377731677660e-08,1.529229507644434658e-08,1.585867637557191657e-08,1.642505767469948655e-08,1.699143897382705654e-08,1.755782027295462652e-08,1.812420157208219651e-08,1.869058287120976649e-08,1.925696417033733648e-08,1.982334546946490646e-08,2.038972676859247645e-08,2.095610806772004643e-08,2.152248936684761642e-08,2.208887066597518640e-08,2.265525196510275639e-08,2.322163326423032637e-08,2.378801456335789635e-08,2.435439586248546634e-08,2.492077716161303632e-08,2.548715846074060631e-08,2.605353975986817629e-08,2.661992105899574628e-08,2.718630235812331626e-08,2.775268365725088625e-08,2.831906495637845623e-08,2.888544625550602622e-08,2.945182755463359620e-08,3.001820885376116619e-08,3.058459015288873287e-08,3.115097145201629954e-08,3.171735275114386622e-08,3.228373405027143289e-08,3.285011534939899957e-08,3.341649664852656625e-08,3.398287794765413292e-08,3.454925924678169960e-08,3.511564054590926628e-08,3.568202184503683295e-08 +0.000000000000000000e+00,6.287329997951016589e-10,1.257465999590203318e-09,1.886198999385304770e-09,2.514931999180406222e-09,3.143664998975507674e-09,3.772397998770609540e-09,4.401130998565711406e-09,5.029863998360813272e-09,5.658596998155915137e-09,6.287329997951017003e-09,6.916062997746118869e-09,7.544795997541220734e-09,8.173528997336322600e-09,8.802261997131424466e-09,9.430994996926526332e-09,1.005972799672162820e-08,1.068846099651673006e-08,1.131719399631183193e-08,1.194592699610693379e-08,1.257465999590203566e-08,1.320339299569713753e-08,1.383212599549223939e-08,1.446085899528734126e-08,1.508959199508244478e-08,1.571832499487754830e-08,1.634705799467265182e-08,1.697579099446775534e-08,1.760452399426285886e-08,1.823325699405796238e-08,1.886198999385306590e-08,1.949072299364816942e-08,2.011945599344327294e-08,2.074818899323837646e-08,2.137692199303347998e-08,2.200565499282858350e-08,2.263438799262368702e-08,2.326312099241879054e-08,2.389185399221389406e-08,2.452058699200899758e-08,2.514931999180410110e-08,2.577805299159920462e-08,2.640678599139430814e-08,2.703551899118941166e-08,2.766425199098451518e-08,2.829298499077961870e-08,2.892171799057472222e-08,2.955045099036982574e-08,3.017918399016492926e-08,3.080791698996003609e-08,3.143664998975514292e-08,3.206538298955024975e-08,3.269411598934535658e-08,3.332284898914046340e-08,3.395158198893557023e-08,3.458031498873067706e-08,3.520904798852578389e-08,3.583778098832089072e-08,3.646651398811599755e-08,3.709524698791110438e-08,3.772397998770621121e-08,3.835271298750131803e-08,3.898144598729642486e-08,3.961017898709153169e-08 +0.000000000000000000e+00,-5.937785805920480850e-10,-1.187557161184096170e-09,-1.781335741776144152e-09,-2.375114322368191926e-09,-2.968892902960239701e-09,-3.562671483552287476e-09,-4.156450064144334837e-09,-4.750228644736382199e-09,-5.344007225328429560e-09,-5.937785805920476921e-09,-6.531564386512524282e-09,-7.125342967104571643e-09,-7.719121547696619005e-09,-8.312900128288666366e-09,-8.906678708880713727e-09,-9.500457289472761088e-09,-1.009423587006480845e-08,-1.068801445065685581e-08,-1.128179303124890317e-08,-1.187557161184095053e-08,-1.246935019243299789e-08,-1.306312877302504526e-08,-1.365690735361709262e-08,-1.425068593420913998e-08,-1.484446451480118734e-08,-1.543824309539323470e-08,-1.603202167598528206e-08,-1.662580025657732942e-08,-1.721957883716937678e-08,-1.781335741776142415e-08,-1.840713599835347151e-08,-1.900091457894551887e-08,-1.959469315953756623e-08,-2.018847174012961359e-08,-2.078225032072166095e-08,-2.137602890131370831e-08,-2.196980748190575567e-08,-2.256358606249780304e-08,-2.315736464308985040e-08,-2.375114322368189776e-08,-2.434492180427394512e-08,-2.493870038486599248e-08,-2.553247896545803984e-08,-2.612625754605008720e-08,-2.672003612664213456e-08,-2.731381470723418192e-08,-2.790759328782622929e-08,-2.850137186841827665e-08,-2.909515044901032401e-08,-2.968892902960237137e-08,-3.028270761019441873e-08,-3.087648619078646278e-08,-3.147026477137850684e-08,-3.206404335197055089e-08,-3.265782193256259494e-08,-3.325160051315463899e-08,-3.384537909374668305e-08,-3.443915767433872710e-08,-3.503293625493077115e-08,-3.562671483552281520e-08,-3.622049341611485926e-08,-3.681427199670690331e-08,-3.740805057729894736e-08 +0.000000000000000000e+00,-5.663812991104542739e-10,-1.132762598220908548e-09,-1.699143897331362718e-09,-2.265525196441816682e-09,-2.831906495552270646e-09,-3.398287794662724610e-09,-3.964669093773178573e-09,-4.531050392883632537e-09,-5.097431691994086501e-09,-5.663812991104540464e-09,-6.230194290214994428e-09,-6.796575589325448392e-09,-7.362956888435902356e-09,-7.929338187546355492e-09,-8.495719486656809456e-09,-9.062100785767263420e-09,-9.628482084877717383e-09,-1.019486338398817135e-08,-1.076124468309862531e-08,-1.132762598220907927e-08,-1.189400728131953324e-08,-1.246038858042998720e-08,-1.302676987954044117e-08,-1.359315117865089513e-08,-1.415953247776134909e-08,-1.472591377687180306e-08,-1.529229507598225702e-08,-1.585867637509271098e-08,-1.642505767420316495e-08,-1.699143897331361891e-08,-1.755782027242407288e-08,-1.812420157153452684e-08,-1.869058287064498080e-08,-1.925696416975543477e-08,-1.982334546886588873e-08,-2.038972676797634269e-08,-2.095610806708679666e-08,-2.152248936619725062e-08,-2.208887066530770459e-08,-2.265525196441815855e-08,-2.322163326352861251e-08,-2.378801456263906648e-08,-2.435439586174952044e-08,-2.492077716085997440e-08,-2.548715845997042837e-08,-2.605353975908088233e-08,-2.661992105819133630e-08,-2.718630235730179026e-08,-2.775268365641224422e-08,-2.831906495552269819e-08,-2.888544625463315215e-08,-2.945182755374360611e-08,-3.001820885285406008e-08,-3.058459015196451404e-08,-3.115097145107496800e-08,-3.171735275018542197e-08,-3.228373404929587593e-08,-3.285011534840632990e-08,-3.341649664751678386e-08,-3.398287794662723782e-08,-3.454925924573769179e-08,-3.511564054484814575e-08,-3.568202184395859971e-08 +0.000000000000000000e+00,-6.287329997459355943e-10,-1.257465999491871189e-09,-1.886198999237806886e-09,-2.514931998983742791e-09,-3.143664998729678695e-09,-3.772397998475614600e-09,-4.401130998221550504e-09,-5.029863997967486409e-09,-5.658596997713422313e-09,-6.287329997459358218e-09,-6.916062997205294122e-09,-7.544795996951230854e-09,-8.173528996697166758e-09,-8.802261996443102663e-09,-9.430994996189038567e-09,-1.005972799593497447e-08,-1.068846099568091038e-08,-1.131719399542684628e-08,-1.194592699517278219e-08,-1.257465999491871809e-08,-1.320339299466465399e-08,-1.383212599441058990e-08,-1.446085899415652580e-08,-1.508959199390246171e-08,-1.571832499364839761e-08,-1.634705799339433352e-08,-1.697579099314026942e-08,-1.760452399288620533e-08,-1.823325699263214123e-08,-1.886198999237807713e-08,-1.949072299212401304e-08,-2.011945599186994894e-08,-2.074818899161588485e-08,-2.137692199136182075e-08,-2.200565499110775666e-08,-2.263438799085369256e-08,-2.326312099059962847e-08,-2.389185399034556437e-08,-2.452058699009150028e-08,-2.514931998983743618e-08,-2.577805298958337208e-08,-2.640678598932930799e-08,-2.703551898907524389e-08,-2.766425198882117980e-08,-2.829298498856711570e-08,-2.892171798831305161e-08,-2.955045098805898751e-08,-3.017918398780492342e-08,-3.080791698755086263e-08,-3.143664998729680184e-08,-3.206538298704274106e-08,-3.269411598678868027e-08,-3.332284898653461948e-08,-3.395158198628055869e-08,-3.458031498602649791e-08,-3.520904798577243712e-08,-3.583778098551837633e-08,-3.646651398526431555e-08,-3.709524698501025476e-08,-3.772397998475619397e-08,-3.835271298450213319e-08,-3.898144598424807240e-08,-3.961017898399401161e-08 +0.000000000000000000e+00,6.222600351877714782e-10,1.244520070375542956e-09,1.866780105563314538e-09,2.489040140751086327e-09,3.111300175938858115e-09,3.733560211126629903e-09,4.355820246314401692e-09,4.978080281502173480e-09,5.600340316689945269e-09,6.222600351877717057e-09,6.844860387065488846e-09,7.467120422253261461e-09,8.089380457441034077e-09,8.711640492628806692e-09,9.333900527816579308e-09,9.956160563004351924e-09,1.057842059819212454e-08,1.120068063337989715e-08,1.182294066856766977e-08,1.244520070375544239e-08,1.306746073894321500e-08,1.368972077413098762e-08,1.431198080931876023e-08,1.493424084450653285e-08,1.555650087969430381e-08,1.617876091488207477e-08,1.680102095006984573e-08,1.742328098525761669e-08,1.804554102044538765e-08,1.866780105563315862e-08,1.929006109082092958e-08,1.991232112600870054e-08,2.053458116119647150e-08,2.115684119638424246e-08,2.177910123157201342e-08,2.240136126675978438e-08,2.302362130194755534e-08,2.364588133713532631e-08,2.426814137232309727e-08,2.489040140751086823e-08,2.551266144269863919e-08,2.613492147788641015e-08,2.675718151307418111e-08,2.737944154826195207e-08,2.800170158344972303e-08,2.862396161863749400e-08,2.924622165382526496e-08,2.986848168901303261e-08,3.049074172420080026e-08,3.111300175938856792e-08,3.173526179457633557e-08,3.235752182976410322e-08,3.297978186495187087e-08,3.360204190013963853e-08,3.422430193532740618e-08,3.484656197051517383e-08,3.546882200570294148e-08,3.609108204089070914e-08,3.671334207607847679e-08,3.733560211126624444e-08,3.795786214645401209e-08,3.858012218164177975e-08,3.920238221682954740e-08 +0.000000000000000000e+00,6.050787675398849774e-10,1.210157535079769955e-09,1.815236302619655036e-09,2.420315070159540323e-09,3.025393837699425611e-09,3.630472605239310898e-09,4.235551372779196600e-09,4.840630140319082301e-09,5.445708907858968002e-09,6.050787675398853703e-09,6.655866442938739404e-09,7.260945210478625106e-09,7.866023978018510807e-09,8.471102745558396508e-09,9.076181513098282209e-09,9.681260280638167910e-09,1.028633904817805361e-08,1.089141781571793931e-08,1.149649658325782501e-08,1.210157535079771072e-08,1.270665411833759642e-08,1.331173288587748212e-08,1.391681165341736782e-08,1.452189042095725352e-08,1.512696918849713757e-08,1.573204795603702161e-08,1.633712672357690566e-08,1.694220549111678971e-08,1.754728425865667375e-08,1.815236302619655780e-08,1.875744179373644185e-08,1.936252056127632589e-08,1.996759932881620994e-08,2.057267809635609399e-08,2.117775686389597803e-08,2.178283563143586208e-08,2.238791439897574613e-08,2.299299316651563018e-08,2.359807193405551422e-08,2.420315070159539827e-08,2.480822946913528232e-08,2.541330823667516636e-08,2.601838700421505041e-08,2.662346577175493446e-08,2.722854453929481850e-08,2.783362330683470255e-08,2.843870207437458660e-08,2.904378084191447064e-08,2.964885960945435469e-08,3.025393837699423543e-08,3.085901714453411617e-08,3.146409591207399690e-08,3.206917467961387764e-08,3.267425344715375838e-08,3.327933221469363912e-08,3.388441098223351986e-08,3.448948974977340060e-08,3.509456851731328133e-08,3.569964728485316207e-08,3.630472605239304281e-08,3.690980481993292355e-08,3.751488358747280429e-08,3.811996235501268502e-08 +0.000000000000000000e+00,6.470686088531100807e-10,1.294137217706220161e-09,1.941205826559330242e-09,2.588274435412440323e-09,3.235343044265550403e-09,3.882411653118660484e-09,4.529480261971770565e-09,5.176548870824880645e-09,5.823617479677990726e-09,6.470686088531100807e-09,7.117754697384210887e-09,7.764823306237320968e-09,8.411891915090431049e-09,9.058960523943541129e-09,9.706029132796651210e-09,1.035309774164976129e-08,1.100016635050287137e-08,1.164723495935598145e-08,1.229430356820909153e-08,1.294137217706220161e-08,1.358844078591531169e-08,1.423550939476842177e-08,1.488257800362153186e-08,1.552964661247464194e-08,1.617671522132775202e-08,1.682378383018086210e-08,1.747085243903397218e-08,1.811792104788708226e-08,1.876498965674019234e-08,1.941205826559330242e-08,2.005912687444641250e-08,2.070619548329952258e-08,2.135326409215263266e-08,2.200033270100574274e-08,2.264740130985885282e-08,2.329446991871196290e-08,2.394153852756507298e-08,2.458860713641818307e-08,2.523567574527129315e-08,2.588274435412440323e-08,2.652981296297751331e-08,2.717688157183062339e-08,2.782395018068373347e-08,2.847101878953684355e-08,2.911808739838995363e-08,2.976515600724306371e-08,3.041222461609617710e-08,3.105929322494929049e-08,3.170636183380240388e-08,3.235343044265551727e-08,3.300049905150863066e-08,3.364756766036174405e-08,3.429463626921485744e-08,3.494170487806797083e-08,3.558877348692108421e-08,3.623584209577419760e-08,3.688291070462731099e-08,3.752997931348042438e-08,3.817704792233353777e-08,3.882411653118665116e-08,3.947118514003976455e-08,4.011825374889287794e-08,4.076532235774599133e-08 +0.000000000000000000e+00,-6.222600351287124369e-10,-1.244520070257424874e-09,-1.866780105386137414e-09,-2.489040140514850161e-09,-3.111300175643562908e-09,-3.733560210772275655e-09,-4.355820245900988402e-09,-4.978080281029701149e-09,-5.600340316158413896e-09,-6.222600351287126643e-09,-6.844860386415839390e-09,-7.467120421544552965e-09,-8.089380456673266539e-09,-8.711640491801980113e-09,-9.333900526930693687e-09,-9.956160562059407262e-09,-1.057842059718812084e-08,-1.120068063231683441e-08,-1.182294066744554798e-08,-1.244520070257426156e-08,-1.306746073770297513e-08,-1.368972077283168871e-08,-1.431198080796040228e-08,-1.493424084308911586e-08,-1.555650087821782943e-08,-1.617876091334654300e-08,-1.680102094847525658e-08,-1.742328098360397015e-08,-1.804554101873268373e-08,-1.866780105386139730e-08,-1.929006108899011088e-08,-1.991232112411882445e-08,-2.053458115924753802e-08,-2.115684119437625160e-08,-2.177910122950496517e-08,-2.240136126463367875e-08,-2.302362129976239232e-08,-2.364588133489110590e-08,-2.426814137001981947e-08,-2.489040140514853304e-08,-2.551266144027724662e-08,-2.613492147540596019e-08,-2.675718151053467377e-08,-2.737944154566338734e-08,-2.800170158079210091e-08,-2.862396161592081449e-08,-2.924622165104952806e-08,-2.986848168617823833e-08,-3.049074172130695190e-08,-3.111300175643566548e-08,-3.173526179156437905e-08,-3.235752182669309263e-08,-3.297978186182180620e-08,-3.360204189695051977e-08,-3.422430193207923335e-08,-3.484656196720794692e-08,-3.546882200233666050e-08,-3.609108203746537407e-08,-3.671334207259408765e-08,-3.733560210772280122e-08,-3.795786214285151479e-08,-3.858012217798022837e-08,-3.920238221310894194e-08 +0.000000000000000000e+00,-6.050787674927313398e-10,-1.210157534985462680e-09,-1.815236302478193916e-09,-2.420315069970924946e-09,-3.025393837463655975e-09,-3.630472604956387005e-09,-4.235551372449118448e-09,-4.840630139941849891e-09,-5.445708907434581334e-09,-6.050787674927312778e-09,-6.655866442420044221e-09,-7.260945209912775664e-09,-7.866023977405507107e-09,-8.471102744898238550e-09,-9.076181512390969993e-09,-9.681260279883701437e-09,-1.028633904737643288e-08,-1.089141781486916432e-08,-1.149649658236189577e-08,-1.210157534985462721e-08,-1.270665411734735865e-08,-1.331173288484009010e-08,-1.391681165233282154e-08,-1.452189041982555298e-08,-1.512696918731828608e-08,-1.573204795481101752e-08,-1.633712672230374897e-08,-1.694220548979648041e-08,-1.754728425728921185e-08,-1.815236302478194330e-08,-1.875744179227467474e-08,-1.936252055976740618e-08,-1.996759932726013763e-08,-2.057267809475286907e-08,-2.117775686224560051e-08,-2.178283562973833195e-08,-2.238791439723106340e-08,-2.299299316472379484e-08,-2.359807193221652628e-08,-2.420315069970925773e-08,-2.480822946720198917e-08,-2.541330823469472061e-08,-2.601838700218745206e-08,-2.662346576968018350e-08,-2.722854453717291494e-08,-2.783362330466564639e-08,-2.843870207215837783e-08,-2.904378083965110927e-08,-2.964885960714384072e-08,-3.025393837463657216e-08,-3.085901714212930360e-08,-3.146409590962203505e-08,-3.206917467711476649e-08,-3.267425344460749793e-08,-3.327933221210022938e-08,-3.388441097959296082e-08,-3.448948974708569226e-08,-3.509456851457842370e-08,-3.569964728207115515e-08,-3.630472604956388659e-08,-3.690980481705661803e-08,-3.751488358454934948e-08,-3.811996235204208092e-08 +0.000000000000000000e+00,-6.470686087802621453e-10,-1.294137217560524291e-09,-1.941205826340786643e-09,-2.588274435121048995e-09,-3.235343043901311347e-09,-3.882411652681573285e-09,-4.529480261461835224e-09,-5.176548870242097162e-09,-5.823617479022359101e-09,-6.470686087802621039e-09,-7.117754696582882978e-09,-7.764823305363144916e-09,-8.411891914143406855e-09,-9.058960522923668793e-09,-9.706029131703930732e-09,-1.035309774048419267e-08,-1.100016634926445461e-08,-1.164723495804471655e-08,-1.229430356682497849e-08,-1.294137217560524042e-08,-1.358844078438550236e-08,-1.423550939316576430e-08,-1.488257800194602624e-08,-1.552964661072628652e-08,-1.617671521950654846e-08,-1.682378382828681040e-08,-1.747085243706707234e-08,-1.811792104584733428e-08,-1.876498965462759622e-08,-1.941205826340785815e-08,-2.005912687218812009e-08,-2.070619548096838203e-08,-2.135326408974864397e-08,-2.200033269852890591e-08,-2.264740130730916785e-08,-2.329446991608942979e-08,-2.394153852486969172e-08,-2.458860713364995366e-08,-2.523567574243021560e-08,-2.588274435121047754e-08,-2.652981295999073948e-08,-2.717688156877100142e-08,-2.782395017755126335e-08,-2.847101878633152529e-08,-2.911808739511178723e-08,-2.976515600389204917e-08,-3.041222461267231111e-08,-3.105929322145257305e-08,-3.170636183023283499e-08,-3.235343043901309692e-08,-3.300049904779335886e-08,-3.364756765657362080e-08,-3.429463626535388274e-08,-3.494170487413414468e-08,-3.558877348291440662e-08,-3.623584209169466855e-08,-3.688291070047493049e-08,-3.752997930925519243e-08,-3.817704791803545437e-08,-3.882411652681571631e-08,-3.947118513559597825e-08,-4.011825374437624019e-08,-4.076532235315650212e-08 +0.000000000000000000e+00,6.450176812850299584e-10,1.290035362570059917e-09,1.935053043855089875e-09,2.580070725140119834e-09,3.225088406425149792e-09,3.870106087710179750e-09,4.515123768995210122e-09,5.160141450280240494e-09,5.805159131565270866e-09,6.450176812850301238e-09,7.095194494135331610e-09,7.740212175420361155e-09,8.385229856705390700e-09,9.030247537990420245e-09,9.675265219275449789e-09,1.032028290056047933e-08,1.096530058184550888e-08,1.161031826313053842e-08,1.225533594441556797e-08,1.290035362570059751e-08,1.354537130698562706e-08,1.419038898827065660e-08,1.483540666955568615e-08,1.548042435084071569e-08,1.612544203212574524e-08,1.677045971341077478e-08,1.741547739469580433e-08,1.806049507598083387e-08,1.870551275726586342e-08,1.935053043855089296e-08,1.999554811983592251e-08,2.064056580112095205e-08,2.128558348240598160e-08,2.193060116369101114e-08,2.257561884497604069e-08,2.322063652626107023e-08,2.386565420754609977e-08,2.451067188883112932e-08,2.515568957011615886e-08,2.580070725140118841e-08,2.644572493268621795e-08,2.709074261397124750e-08,2.773576029525627704e-08,2.838077797654130659e-08,2.902579565782633613e-08,2.967081333911136568e-08,3.031583102039639522e-08,3.096084870168142477e-08,3.160586638296645431e-08,3.225088406425148386e-08,3.289590174553651340e-08,3.354091942682154295e-08,3.418593710810657249e-08,3.483095478939160204e-08,3.547597247067663158e-08,3.612099015196166113e-08,3.676600783324669067e-08,3.741102551453172022e-08,3.805604319581674976e-08,3.870106087710177931e-08,3.934607855838680885e-08,3.999109623967183839e-08,4.063611392095686794e-08 +0.000000000000000000e+00,6.323786807303901980e-10,1.264757361460780396e-09,1.897136042191170491e-09,2.529514722921560379e-09,3.161893403651950266e-09,3.794272084382340154e-09,4.426650765112729629e-09,5.059029445843119103e-09,5.691408126573508577e-09,6.323786807303898051e-09,6.956165488034287526e-09,7.588544168764677000e-09,8.220922849495066474e-09,8.853301530225455948e-09,9.485680210955845423e-09,1.011805889168623490e-08,1.075043757241662437e-08,1.138281625314701385e-08,1.201519493387740332e-08,1.264757361460779279e-08,1.327995229533818227e-08,1.391233097606857174e-08,1.454470965679896122e-08,1.517708833752935069e-08,1.580946701825974017e-08,1.644184569899012964e-08,1.707422437972051911e-08,1.770660306045090859e-08,1.833898174118129806e-08,1.897136042191168754e-08,1.960373910264207701e-08,2.023611778337246649e-08,2.086849646410285596e-08,2.150087514483324543e-08,2.213325382556363491e-08,2.276563250629402438e-08,2.339801118702441386e-08,2.403038986775480333e-08,2.466276854848519280e-08,2.529514722921558228e-08,2.592752590994597175e-08,2.655990459067636123e-08,2.719228327140675070e-08,2.782466195213714018e-08,2.845704063286752965e-08,2.908941931359791912e-08,2.972179799432830860e-08,3.035417667505869476e-08,3.098655535578908093e-08,3.161893403651946710e-08,3.225131271724985326e-08,3.288369139798023943e-08,3.351607007871062559e-08,3.414844875944101176e-08,3.478082744017139792e-08,3.541320612090178409e-08,3.604558480163217025e-08,3.667796348236255642e-08,3.731034216309294259e-08,3.794272084382332875e-08,3.857509952455371492e-08,3.920747820528410108e-08,3.983985688601448725e-08 +0.000000000000000000e+00,6.646549411333960079e-10,1.329309882266792016e-09,1.993964823400187920e-09,2.658619764533583618e-09,3.323274705666979316e-09,3.987929646800375013e-09,4.652584587933771125e-09,5.317239529067167236e-09,5.981894470200563347e-09,6.646549411333959458e-09,7.311204352467355570e-09,7.975859293600751681e-09,8.640514234734147792e-09,9.305169175867543903e-09,9.969824117000940015e-09,1.063447905813433613e-08,1.129913399926773224e-08,1.196378894040112835e-08,1.262844388153452446e-08,1.329309882266792057e-08,1.395775376380131668e-08,1.462240870493471279e-08,1.528706364606810725e-08,1.595171858720150005e-08,1.661637352833489286e-08,1.728102846946828566e-08,1.794568341060167846e-08,1.861033835173507126e-08,1.927499329286846407e-08,1.993964823400185687e-08,2.060430317513524967e-08,2.126895811626864247e-08,2.193361305740203528e-08,2.259826799853542808e-08,2.326292293966882088e-08,2.392757788080221368e-08,2.459223282193560649e-08,2.525688776306899929e-08,2.592154270420239209e-08,2.658619764533578489e-08,2.725085258646917770e-08,2.791550752760257050e-08,2.858016246873596330e-08,2.924481740986935610e-08,2.990947235100274891e-08,3.057412729213614171e-08,3.123878223326953451e-08,3.190343717440292731e-08,3.256809211553632012e-08,3.323274705666971292e-08,3.389740199780310572e-08,3.456205693893649852e-08,3.522671188006989133e-08,3.589136682120328413e-08,3.655602176233667693e-08,3.722067670347006973e-08,3.788533164460346254e-08,3.854998658573685534e-08,3.921464152687024814e-08,3.987929646800364094e-08,4.054395140913703375e-08,4.120860635027042655e-08,4.187326129140381935e-08 +0.000000000000000000e+00,-6.450176812111226114e-10,-1.290035362422245223e-09,-1.935053043633367834e-09,-2.580070724844490446e-09,-3.225088406055613057e-09,-3.870106087266735669e-09,-4.515123768477858280e-09,-5.160141449688980891e-09,-5.805159130900103503e-09,-6.450176812111226114e-09,-7.095194493322348726e-09,-7.740212174533471337e-09,-8.385229855744593949e-09,-9.030247536955716560e-09,-9.675265218166839171e-09,-1.032028289937796178e-08,-1.096530058058908439e-08,-1.161031826180020701e-08,-1.225533594301132962e-08,-1.290035362422245223e-08,-1.354537130543357484e-08,-1.419038898664469745e-08,-1.483540666785582006e-08,-1.548042434906694267e-08,-1.612544203027806529e-08,-1.677045971148918790e-08,-1.741547739270031051e-08,-1.806049507391143312e-08,-1.870551275512255573e-08,-1.935053043633367834e-08,-1.999554811754480095e-08,-2.064056579875592357e-08,-2.128558347996704618e-08,-2.193060116117816879e-08,-2.257561884238929140e-08,-2.322063652360041401e-08,-2.386565420481153662e-08,-2.451067188602265923e-08,-2.515568956723378185e-08,-2.580070724844490446e-08,-2.644572492965602707e-08,-2.709074261086714968e-08,-2.773576029207827229e-08,-2.838077797328939490e-08,-2.902579565450051751e-08,-2.967081333571164013e-08,-3.031583101692276605e-08,-3.096084869813389197e-08,-3.160586637934501789e-08,-3.225088406055614381e-08,-3.289590174176726973e-08,-3.354091942297839565e-08,-3.418593710418952157e-08,-3.483095478540064749e-08,-3.547597246661177341e-08,-3.612099014782289933e-08,-3.676600782903402525e-08,-3.741102551024515117e-08,-3.805604319145627709e-08,-3.870106087266740301e-08,-3.934607855387852893e-08,-3.999109623508965485e-08,-4.063611391630078077e-08 +0.000000000000000000e+00,-6.323786806627600146e-10,-1.264757361325520029e-09,-1.897136041988280044e-09,-2.529514722651040058e-09,-3.161893403313800073e-09,-3.794272083976560087e-09,-4.426650764639320102e-09,-5.059029445302080116e-09,-5.691408125964840131e-09,-6.323786806627600146e-09,-6.956165487290360160e-09,-7.588544167953120175e-09,-8.220922848615879362e-09,-8.853301529278638549e-09,-9.485680209941397737e-09,-1.011805889060415692e-08,-1.075043757126691611e-08,-1.138281625192967530e-08,-1.201519493259243449e-08,-1.264757361325519367e-08,-1.327995229391795286e-08,-1.391233097458071205e-08,-1.454470965524347124e-08,-1.517708833590623042e-08,-1.580946701656898961e-08,-1.644184569723174880e-08,-1.707422437789450799e-08,-1.770660305855726717e-08,-1.833898173922002636e-08,-1.897136041988278555e-08,-1.960373910054554473e-08,-2.023611778120830392e-08,-2.086849646187106311e-08,-2.150087514253382230e-08,-2.213325382319658148e-08,-2.276563250385934067e-08,-2.339801118452209986e-08,-2.403038986518485905e-08,-2.466276854584761823e-08,-2.529514722651037742e-08,-2.592752590717313661e-08,-2.655990458783589580e-08,-2.719228326849865498e-08,-2.782466194916141417e-08,-2.845704062982417336e-08,-2.908941931048693255e-08,-2.972179799114969173e-08,-3.035417667181245423e-08,-3.098655535247521673e-08,-3.161893403313797922e-08,-3.225131271380074172e-08,-3.288369139446350421e-08,-3.351607007512626671e-08,-3.414844875578902921e-08,-3.478082743645179170e-08,-3.541320611711455420e-08,-3.604558479777731669e-08,-3.667796347844007919e-08,-3.731034215910284169e-08,-3.794272083976560418e-08,-3.857509952042836668e-08,-3.920747820109112917e-08,-3.983985688175389167e-08 +0.000000000000000000e+00,-6.646549410492804250e-10,-1.329309882098560850e-09,-1.993964823147841172e-09,-2.658619764197121286e-09,-3.323274705246401401e-09,-3.987929646295681516e-09,-4.652584587344961631e-09,-5.317239528394241745e-09,-5.981894469443521860e-09,-6.646549410492801975e-09,-7.311204351542082090e-09,-7.975859292591361377e-09,-8.640514233640639838e-09,-9.305169174689918298e-09,-9.969824115739196759e-09,-1.063447905678847522e-08,-1.129913399783775368e-08,-1.196378893888703214e-08,-1.262844387993631060e-08,-1.329309882098558906e-08,-1.395775376203486752e-08,-1.462240870308414598e-08,-1.528706364413342444e-08,-1.595171858518270290e-08,-1.661637352623198136e-08,-1.728102846728125982e-08,-1.794568340833053828e-08,-1.861033834937981674e-08,-1.927499329042909520e-08,-1.993964823147837366e-08,-2.060430317252765213e-08,-2.126895811357693059e-08,-2.193361305462620905e-08,-2.259826799567548751e-08,-2.326292293672476597e-08,-2.392757787777404443e-08,-2.459223281882332289e-08,-2.525688775987260135e-08,-2.592154270092187981e-08,-2.658619764197115827e-08,-2.725085258302043673e-08,-2.791550752406971519e-08,-2.858016246511899365e-08,-2.924481740616827211e-08,-2.990947234721755057e-08,-3.057412728826682903e-08,-3.123878222931610749e-08,-3.190343717036538595e-08,-3.256809211141466441e-08,-3.323274705246394287e-08,-3.389740199351322133e-08,-3.456205693456249979e-08,-3.522671187561177825e-08,-3.589136681666105671e-08,-3.655602175771033518e-08,-3.722067669875961364e-08,-3.788533163980889210e-08,-3.854998658085817056e-08,-3.921464152190744902e-08,-3.987929646295672748e-08,-4.054395140400600594e-08,-4.120860634505528440e-08,-4.187326128610456286e-08 +0.000000000000000000e+00,6.661685676929423227e-10,1.332337135385884645e-09,1.998505703078826865e-09,2.664674270771768877e-09,3.330842838464710890e-09,3.997011406157652902e-09,4.663179973850595329e-09,5.329348541543537755e-09,5.995517109236480181e-09,6.661685676929422607e-09,7.327854244622365033e-09,7.994022812315307459e-09,8.660191380008249885e-09,9.326359947701192311e-09,9.992528515394134738e-09,1.065869708308707716e-08,1.132486565078001959e-08,1.199103421847296202e-08,1.265720278616590444e-08,1.332337135385884687e-08,1.398953992155178929e-08,1.465570848924473172e-08,1.532187705693767415e-08,1.598804562463061823e-08,1.665421419232356231e-08,1.732038276001650639e-08,1.798655132770945047e-08,1.865271989540239455e-08,1.931888846309533863e-08,1.998505703078828271e-08,2.065122559848122679e-08,2.131739416617417087e-08,2.198356273386711495e-08,2.264973130156005903e-08,2.331589986925300311e-08,2.398206843694594719e-08,2.464823700463889127e-08,2.531440557233183535e-08,2.598057414002477943e-08,2.664674270771772351e-08,2.731291127541066760e-08,2.797907984310361168e-08,2.864524841079655576e-08,2.931141697848949984e-08,2.997758554618244392e-08,3.064375411387538800e-08,3.130992268156833208e-08,3.197609124926127616e-08,3.264225981695422024e-08,3.330842838464716432e-08,3.397459695234010840e-08,3.464076552003305248e-08,3.530693408772599656e-08,3.597310265541894064e-08,3.663927122311188472e-08,3.730543979080482880e-08,3.797160835849777288e-08,3.863777692619071696e-08,3.930394549388366104e-08,3.997011406157660512e-08,4.063628262926954921e-08,4.130245119696249329e-08,4.196861976465543737e-08 +0.000000000000000000e+00,6.553226530492716515e-10,1.310645306098543303e-09,1.965967959147814954e-09,2.621290612197086606e-09,3.276613265246358257e-09,3.931935918295629909e-09,4.587258571344901560e-09,5.242581224394173212e-09,5.897903877443444863e-09,6.553226530492716515e-09,7.208549183541988166e-09,7.863871836591259817e-09,8.519194489640531469e-09,9.174517142689803120e-09,9.829839795739074772e-09,1.048516244878834642e-08,1.114048510183761807e-08,1.179580775488688973e-08,1.245113040793616138e-08,1.310645306098543303e-08,1.376177571403470468e-08,1.441709836708397633e-08,1.507242102013324798e-08,1.572774367318251963e-08,1.638306632623179129e-08,1.703838897928106294e-08,1.769371163233033459e-08,1.834903428537960624e-08,1.900435693842887789e-08,1.965967959147814954e-08,2.031500224452742120e-08,2.097032489757669285e-08,2.162564755062596450e-08,2.228097020367523615e-08,2.293629285672450780e-08,2.359161550977377945e-08,2.424693816282305110e-08,2.490226081587232276e-08,2.555758346892159441e-08,2.621290612197086606e-08,2.686822877502013771e-08,2.752355142806940936e-08,2.817887408111868101e-08,2.883419673416795266e-08,2.948951938721722432e-08,3.014484204026649597e-08,3.080016469331576762e-08,3.145548734636503927e-08,3.211080999941431092e-08,3.276613265246358257e-08,3.342145530551285422e-08,3.407677795856212588e-08,3.473210061161139753e-08,3.538742326466066918e-08,3.604274591770994083e-08,3.669806857075921248e-08,3.735339122380848413e-08,3.800871387685775578e-08,3.866403652990702744e-08,3.931935918295629909e-08,3.997468183600557074e-08,4.063000448905484239e-08,4.128532714210411404e-08 +0.000000000000000000e+00,6.817672987531916777e-10,1.363534597506383355e-09,2.045301896259575033e-09,2.727069195012766711e-09,3.408836493765958388e-09,4.090603792519150066e-09,4.772371091272341744e-09,5.454138390025533422e-09,6.135905688778725099e-09,6.817672987531916777e-09,7.499440286285108455e-09,8.181207585038300132e-09,8.862974883791491810e-09,9.544742182544683488e-09,1.022650948129787517e-08,1.090827678005106684e-08,1.159004407880425852e-08,1.227181137755745020e-08,1.295357867631064188e-08,1.363534597506383355e-08,1.431711327381702523e-08,1.499888057257021691e-08,1.568064787132340693e-08,1.636241517007659696e-08,1.704418246882978698e-08,1.772594976758297700e-08,1.840771706633616703e-08,1.908948436508935705e-08,1.977125166384254707e-08,2.045301896259573710e-08,2.113478626134892712e-08,2.181655356010211714e-08,2.249832085885530717e-08,2.318008815760849719e-08,2.386185545636168721e-08,2.454362275511487724e-08,2.522539005386806726e-08,2.590715735262125728e-08,2.658892465137444731e-08,2.727069195012763733e-08,2.795245924888082735e-08,2.863422654763401738e-08,2.931599384638720740e-08,2.999776114514040073e-08,3.067952844389359406e-08,3.136129574264678740e-08,3.204306304139998073e-08,3.272483034015317406e-08,3.340659763890636739e-08,3.408836493765956072e-08,3.477013223641275406e-08,3.545189953516594739e-08,3.613366683391914072e-08,3.681543413267233405e-08,3.749720143142552738e-08,3.817896873017872072e-08,3.886073602893191405e-08,3.954250332768510738e-08,4.022427062643830071e-08,4.090603792519149404e-08,4.158780522394468738e-08,4.226957252269788071e-08,4.295133982145107404e-08 +0.000000000000000000e+00,-6.661685676156952340e-10,-1.332337135231390468e-09,-1.998505702847085599e-09,-2.664674270462780523e-09,-3.330842838078475446e-09,-3.997011405694170370e-09,-4.663179973309865708e-09,-5.329348540925561045e-09,-5.995517108541256383e-09,-6.661685676156951720e-09,-7.327854243772647057e-09,-7.994022811388342395e-09,-8.660191379004037732e-09,-9.326359946619733070e-09,-9.992528514235428407e-09,-1.065869708185112374e-08,-1.132486564946681908e-08,-1.199103421708251442e-08,-1.265720278469820976e-08,-1.332337135231390509e-08,-1.398953991992960043e-08,-1.465570848754529577e-08,-1.532187705516098945e-08,-1.598804562277668148e-08,-1.665421419039237351e-08,-1.732038275800806554e-08,-1.798655132562375757e-08,-1.865271989323944960e-08,-1.931888846085514162e-08,-1.998505702847083365e-08,-2.065122559608652568e-08,-2.131739416370221771e-08,-2.198356273131790974e-08,-2.264973129893360177e-08,-2.331589986654929380e-08,-2.398206843416498583e-08,-2.464823700178067785e-08,-2.531440556939636988e-08,-2.598057413701206191e-08,-2.664674270462775394e-08,-2.731291127224344597e-08,-2.797907983985913800e-08,-2.864524840747483003e-08,-2.931141697509052206e-08,-2.997758554270621408e-08,-3.064375411032190611e-08,-3.130992267793759814e-08,-3.197609124555329017e-08,-3.264225981316898220e-08,-3.330842838078467423e-08,-3.397459694840036626e-08,-3.464076551601605829e-08,-3.530693408363175031e-08,-3.597310265124744234e-08,-3.663927121886313437e-08,-3.730543978647882640e-08,-3.797160835409451843e-08,-3.863777692171021046e-08,-3.930394548932590249e-08,-3.997011405694159452e-08,-4.063628262455728654e-08,-4.130245119217297857e-08,-4.196861975978867060e-08 +0.000000000000000000e+00,-6.553226529721625985e-10,-1.310645305944325197e-09,-1.965967958916487692e-09,-2.621290611888649981e-09,-3.276613264860812269e-09,-3.931935917832974557e-09,-4.587258570805136432e-09,-5.242581223777298307e-09,-5.897903876749460182e-09,-6.553226529721622056e-09,-7.208549182693783931e-09,-7.863871835665945806e-09,-8.519194488638107681e-09,-9.174517141610269555e-09,-9.829839794582431430e-09,-1.048516244755459330e-08,-1.114048510052675518e-08,-1.179580775349891705e-08,-1.245113040647107893e-08,-1.310645305944324080e-08,-1.376177571241540268e-08,-1.441709836538756455e-08,-1.507242101835972643e-08,-1.572774367133188830e-08,-1.638306632430405018e-08,-1.703838897727621205e-08,-1.769371163024837393e-08,-1.834903428322053580e-08,-1.900435693619269768e-08,-1.965967958916485955e-08,-2.031500224213702143e-08,-2.097032489510918330e-08,-2.162564754808134518e-08,-2.228097020105350705e-08,-2.293629285402566893e-08,-2.359161550699783080e-08,-2.424693815996999267e-08,-2.490226081294215455e-08,-2.555758346591431642e-08,-2.621290611888647830e-08,-2.686822877185864017e-08,-2.752355142483080205e-08,-2.817887407780296392e-08,-2.883419673077512580e-08,-2.948951938374728767e-08,-3.014484203671945286e-08,-3.080016468969161804e-08,-3.145548734266378322e-08,-3.211080999563594841e-08,-3.276613264860811359e-08,-3.342145530158027877e-08,-3.407677795455244396e-08,-3.473210060752460914e-08,-3.538742326049677432e-08,-3.604274591346893951e-08,-3.669806856644110469e-08,-3.735339121941326987e-08,-3.800871387238543506e-08,-3.866403652535760024e-08,-3.931935917832976542e-08,-3.997468183130193061e-08,-4.063000448427409579e-08,-4.128532713724626098e-08 +0.000000000000000000e+00,-6.817672986698658455e-10,-1.363534597339731691e-09,-2.045301896009597743e-09,-2.727069194679463796e-09,-3.408836493349329848e-09,-4.090603792019195487e-09,-4.772371090689061125e-09,-5.454138389358926764e-09,-6.135905688028792403e-09,-6.817672986698658041e-09,-7.499440285368524507e-09,-8.181207584038390973e-09,-8.862974882708257439e-09,-9.544742181378123905e-09,-1.022650948004799037e-08,-1.090827677871785684e-08,-1.159004407738772330e-08,-1.227181137605758977e-08,-1.295357867472745623e-08,-1.363534597339732270e-08,-1.431711327206718917e-08,-1.499888057073705563e-08,-1.568064786940692210e-08,-1.636241516807678856e-08,-1.704418246674665503e-08,-1.772594976541652150e-08,-1.840771706408638796e-08,-1.908948436275625443e-08,-1.977125166142612089e-08,-2.045301896009598736e-08,-2.113478625876585382e-08,-2.181655355743572029e-08,-2.249832085610558676e-08,-2.318008815477545322e-08,-2.386185545344531969e-08,-2.454362275211518615e-08,-2.522539005078505262e-08,-2.590715734945491909e-08,-2.658892464812478555e-08,-2.727069194679465202e-08,-2.795245924546451848e-08,-2.863422654413438495e-08,-2.931599384280425142e-08,-2.999776114147411788e-08,-3.067952844014398435e-08,-3.136129573881385081e-08,-3.204306303748371728e-08,-3.272483033615358374e-08,-3.340659763482345021e-08,-3.408836493349331668e-08,-3.477013223216318314e-08,-3.545189953083304961e-08,-3.613366682950291607e-08,-3.681543412817278254e-08,-3.749720142684264901e-08,-3.817896872551251547e-08,-3.886073602418238194e-08,-3.954250332285224840e-08,-4.022427062152211487e-08,-4.090603792019198133e-08,-4.158780521886184780e-08,-4.226957251753171427e-08,-4.295133981620158073e-08 +0.000000000000000000e+00,6.869507039552768091e-10,1.373901407910553618e-09,2.060852111865830427e-09,2.747802815821107236e-09,3.434753519776384045e-09,4.121704223731660854e-09,4.808654927686937250e-09,5.495605631642213645e-09,6.182556335597490041e-09,6.869507039552766436e-09,7.556457743508042832e-09,8.243408447463320054e-09,8.930359151418597277e-09,9.617309855373874500e-09,1.030426055932915172e-08,1.099121126328442894e-08,1.167816196723970617e-08,1.236511267119498339e-08,1.305206337515026061e-08,1.373901407910553784e-08,1.442596478306081506e-08,1.511291548701609228e-08,1.579986619097136950e-08,1.648681689492664673e-08,1.717376759888192395e-08,1.786071830283720117e-08,1.854766900679247839e-08,1.923461971074775562e-08,1.992157041470303284e-08,2.060852111865831006e-08,2.129547182261358728e-08,2.198242252656886451e-08,2.266937323052414173e-08,2.335632393447941895e-08,2.404327463843469618e-08,2.473022534238997340e-08,2.541717604634525062e-08,2.610412675030052784e-08,2.679107745425580507e-08,2.747802815821108229e-08,2.816497886216635951e-08,2.885192956612163673e-08,2.953888027007691396e-08,3.022583097403219118e-08,3.091278167798746509e-08,3.159973238194273901e-08,3.228668308589801292e-08,3.297363378985328683e-08,3.366058449380856075e-08,3.434753519776383466e-08,3.503448590171910858e-08,3.572143660567438249e-08,3.640838730962965640e-08,3.709533801358493032e-08,3.778228871754020423e-08,3.846923942149547815e-08,3.915619012545075206e-08,3.984314082940602597e-08,4.053009153336129989e-08,4.121704223731657380e-08,4.190399294127184772e-08,4.259094364522712163e-08,4.327789434918239554e-08 +0.000000000000000000e+00,6.765176899345223518e-10,1.353035379869044704e-09,2.029553069803567055e-09,2.706070759738089407e-09,3.382588449672611759e-09,4.059106139607134111e-09,4.735623829541656463e-09,5.412141519476178815e-09,6.088659209410701166e-09,6.765176899345223518e-09,7.441694589279745870e-09,8.118212279214268222e-09,8.794729969148790574e-09,9.471247659083312926e-09,1.014776534901783528e-08,1.082428303895235763e-08,1.150080072888687998e-08,1.217731841882140233e-08,1.285383610875592468e-08,1.353035379869044704e-08,1.420687148862496939e-08,1.488338917855949174e-08,1.555990686849401409e-08,1.623642455842853644e-08,1.691294224836305880e-08,1.758945993829758115e-08,1.826597762823210350e-08,1.894249531816662585e-08,1.961901300810114820e-08,2.029553069803567055e-08,2.097204838797019291e-08,2.164856607790471526e-08,2.232508376783923761e-08,2.300160145777375996e-08,2.367811914770828231e-08,2.435463683764280467e-08,2.503115452757732702e-08,2.570767221751184937e-08,2.638418990744637172e-08,2.706070759738089407e-08,2.773722528731541643e-08,2.841374297724993878e-08,2.909026066718446113e-08,2.976677835711898348e-08,3.044329604705350583e-08,3.111981373698802818e-08,3.179633142692255054e-08,3.247284911685707289e-08,3.314936680679159524e-08,3.382588449672611759e-08,3.450240218666063994e-08,3.517891987659516230e-08,3.585543756652968465e-08,3.653195525646420700e-08,3.720847294639872935e-08,3.788499063633325170e-08,3.856150832626777405e-08,3.923802601620229641e-08,3.991454370613681876e-08,4.059106139607134111e-08,4.126757908600586346e-08,4.194409677594038581e-08,4.262061446587490817e-08 +0.000000000000000000e+00,6.964025806455154231e-10,1.392805161291030846e-09,2.089207741936546373e-09,2.785610322582062106e-09,3.482012903227577839e-09,4.178415483873093573e-09,4.874818064518609306e-09,5.571220645164125039e-09,6.267623225809640773e-09,6.964025806455156506e-09,7.660428387100672239e-09,8.356830967746188800e-09,9.053233548391705360e-09,9.749636129037221921e-09,1.044603870968273848e-08,1.114244129032825504e-08,1.183884387097377160e-08,1.253524645161928816e-08,1.323164903226480472e-08,1.392805161291032128e-08,1.462445419355583784e-08,1.532085677420135441e-08,1.601725935484687097e-08,1.671366193549238753e-08,1.741006451613790409e-08,1.810646709678342065e-08,1.880286967742893721e-08,1.949927225807445377e-08,2.019567483871997033e-08,2.089207741936548689e-08,2.158848000001100345e-08,2.228488258065652001e-08,2.298128516130203657e-08,2.367768774194755313e-08,2.437409032259306969e-08,2.507049290323858625e-08,2.576689548388410281e-08,2.646329806452961937e-08,2.715970064517513593e-08,2.785610322582065249e-08,2.855250580646616905e-08,2.924890838711168562e-08,2.994531096775719887e-08,3.064171354840271543e-08,3.133811612904823199e-08,3.203451870969374855e-08,3.273092129033926511e-08,3.342732387098478167e-08,3.412372645163029823e-08,3.482012903227581479e-08,3.551653161292133135e-08,3.621293419356684791e-08,3.690933677421236447e-08,3.760573935485788103e-08,3.830214193550339759e-08,3.899854451614891415e-08,3.969494709679443071e-08,4.039134967743994727e-08,4.108775225808546384e-08,4.178415483873098040e-08,4.248055741937649696e-08,4.317696000002201352e-08,4.387336258066753008e-08 +0.000000000000000000e+00,-6.869507038878051341e-10,-1.373901407775610268e-09,-2.060852111663415609e-09,-2.747802815551220950e-09,-3.434753519439026291e-09,-4.121704223326831218e-09,-4.808654927214636145e-09,-5.495605631102441072e-09,-6.182556334990246000e-09,-6.869507038878050927e-09,-7.556457742765856681e-09,-8.243408446653662436e-09,-8.930359150541468190e-09,-9.617309854429273945e-09,-1.030426055831707970e-08,-1.099121126220488545e-08,-1.167816196609269121e-08,-1.236511266998049696e-08,-1.305206337386830272e-08,-1.373901407775610847e-08,-1.442596478164391423e-08,-1.511291548553171998e-08,-1.579986618941952573e-08,-1.648681689330733149e-08,-1.717376759719513724e-08,-1.786071830108294300e-08,-1.854766900497074875e-08,-1.923461970885855451e-08,-1.992157041274636026e-08,-2.060852111663416602e-08,-2.129547182052197177e-08,-2.198242252440977752e-08,-2.266937322829758328e-08,-2.335632393218538903e-08,-2.404327463607319479e-08,-2.473022533996100054e-08,-2.541717604384880630e-08,-2.610412674773661205e-08,-2.679107745162441781e-08,-2.747802815551222356e-08,-2.816497885940002931e-08,-2.885192956328783507e-08,-2.953888026717564082e-08,-3.022583097106344658e-08,-3.091278167495124902e-08,-3.159973237883905147e-08,-3.228668308272685392e-08,-3.297363378661465636e-08,-3.366058449050245881e-08,-3.434753519439026125e-08,-3.503448589827806370e-08,-3.572143660216586614e-08,-3.640838730605366859e-08,-3.709533800994147104e-08,-3.778228871382927348e-08,-3.846923941771707593e-08,-3.915619012160487837e-08,-3.984314082549268082e-08,-4.053009152938048326e-08,-4.121704223326828571e-08,-4.190399293715608816e-08,-4.259094364104389060e-08,-4.327789434493169305e-08 +0.000000000000000000e+00,-6.765176898606575013e-10,-1.353035379721315003e-09,-2.029553069581972400e-09,-2.706070759442629592e-09,-3.382588449303286783e-09,-4.059106139163943974e-09,-4.735623829024600751e-09,-5.412141518885257529e-09,-6.088659208745914306e-09,-6.765176898606571084e-09,-7.441694588467227861e-09,-8.118212278327884639e-09,-8.794729968188541416e-09,-9.471247658049198194e-09,-1.014776534790985497e-08,-1.082428303777051175e-08,-1.150080072763116853e-08,-1.217731841749182530e-08,-1.285383610735248208e-08,-1.353035379721313886e-08,-1.420687148707379564e-08,-1.488338917693445241e-08,-1.555990686679511085e-08,-1.623642455665576928e-08,-1.691294224651642771e-08,-1.758945993637708614e-08,-1.826597762623774457e-08,-1.894249531609840300e-08,-1.961901300595906144e-08,-2.029553069581971987e-08,-2.097204838568037830e-08,-2.164856607554103673e-08,-2.232508376540169516e-08,-2.300160145526235360e-08,-2.367811914512301203e-08,-2.435463683498367046e-08,-2.503115452484432889e-08,-2.570767221470498732e-08,-2.638418990456564576e-08,-2.706070759442630419e-08,-2.773722528428696262e-08,-2.841374297414762105e-08,-2.909026066400827948e-08,-2.976677835386893791e-08,-3.044329604372959635e-08,-3.111981373359025478e-08,-3.179633142345091321e-08,-3.247284911331157164e-08,-3.314936680317223007e-08,-3.382588449303288851e-08,-3.450240218289354694e-08,-3.517891987275420537e-08,-3.585543756261486380e-08,-3.653195525247552223e-08,-3.720847294233618066e-08,-3.788499063219683910e-08,-3.856150832205749753e-08,-3.923802601191815596e-08,-3.991454370177881439e-08,-4.059106139163947282e-08,-4.126757908150013126e-08,-4.194409677136078969e-08,-4.262061446122144812e-08 +0.000000000000000000e+00,-6.964025805773287539e-10,-1.392805161154657508e-09,-2.089207741731986262e-09,-2.785610322309315016e-09,-3.482012902886643769e-09,-4.178415483463972523e-09,-4.874818064041301277e-09,-5.571220644618630031e-09,-6.267623225195958785e-09,-6.964025805773287539e-09,-7.660428386350616293e-09,-8.356830966927945047e-09,-9.053233547505273801e-09,-9.749636128082602555e-09,-1.044603870865993131e-08,-1.114244128923726006e-08,-1.183884386981458882e-08,-1.253524645039191757e-08,-1.323164903096924632e-08,-1.392805161154657508e-08,-1.462445419212390383e-08,-1.532085677270123259e-08,-1.601725935327855969e-08,-1.671366193385588678e-08,-1.741006451443321388e-08,-1.810646709501054098e-08,-1.880286967558786808e-08,-1.949927225616519518e-08,-2.019567483674252228e-08,-2.089207741731984938e-08,-2.158847999789717648e-08,-2.228488257847450358e-08,-2.298128515905183068e-08,-2.367768773962915778e-08,-2.437409032020648488e-08,-2.507049290078381198e-08,-2.576689548136113908e-08,-2.646329806193846618e-08,-2.715970064251579328e-08,-2.785610322309312038e-08,-2.855250580367044748e-08,-2.924890838424777458e-08,-2.994531096482510168e-08,-3.064171354540243208e-08,-3.133811612597976249e-08,-3.203451870655709290e-08,-3.273092128713442331e-08,-3.342732386771175372e-08,-3.412372644828908413e-08,-3.482012902886641453e-08,-3.551653160944374494e-08,-3.621293419002107535e-08,-3.690933677059840576e-08,-3.760573935117573617e-08,-3.830214193175306658e-08,-3.899854451233039698e-08,-3.969494709290772739e-08,-4.039134967348505780e-08,-4.108775225406238821e-08,-4.178415483463971862e-08,-4.248055741521704902e-08,-4.317695999579437943e-08,-4.387336257637170984e-08 +0.000000000000000000e+00,7.063251849663340960e-10,1.412650369932668192e-09,2.118975554899002288e-09,2.825300739865336384e-09,3.531625924831670480e-09,4.237951109798004576e-09,4.944276294764338672e-09,5.650601479730672768e-09,6.356926664697006864e-09,7.063251849663340960e-09,7.769577034629675057e-09,8.475902219596009153e-09,9.182227404562343249e-09,9.888552589528677345e-09,1.059487777449501144e-08,1.130120295946134554e-08,1.200752814442767963e-08,1.271385332939401373e-08,1.342017851436034782e-08,1.412650369932668192e-08,1.483282888429301602e-08,1.553915406925935011e-08,1.624547925422568421e-08,1.695180443919201831e-08,1.765812962415835240e-08,1.836445480912468650e-08,1.907077999409102059e-08,1.977710517905735469e-08,2.048343036402368879e-08,2.118975554899002288e-08,2.189608073395635698e-08,2.260240591892269107e-08,2.330873110388902517e-08,2.401505628885535927e-08,2.472138147382169336e-08,2.542770665878802746e-08,2.613403184375436155e-08,2.684035702872069565e-08,2.754668221368702975e-08,2.825300739865336384e-08,2.895933258361969794e-08,2.966565776858603203e-08,3.037198295355236613e-08,3.107830813851870023e-08,3.178463332348503432e-08,3.249095850845136842e-08,3.319728369341770251e-08,3.390360887838403661e-08,3.460993406335037071e-08,3.531625924831670480e-08,3.602258443328303890e-08,3.672890961824937299e-08,3.743523480321570709e-08,3.814155998818204119e-08,3.884788517314837528e-08,3.955421035811470938e-08,4.026053554308104347e-08,4.096686072804737757e-08,4.167318591301371167e-08,4.237951109798004576e-08,4.308583628294637986e-08,4.379216146791271395e-08,4.449848665287904805e-08 +0.000000000000000000e+00,6.956601187684062072e-10,1.391320237536812414e-09,2.086980356305218415e-09,2.782640475073624415e-09,3.478300593842030415e-09,4.173960712610436829e-09,4.869620831378843243e-09,5.565280950147249657e-09,6.260941068915656071e-09,6.956601187684062485e-09,7.652261306452468899e-09,8.347921425220875313e-09,9.043581543989281727e-09,9.739241662757688141e-09,1.043490178152609456e-08,1.113056190029450097e-08,1.182622201906290738e-08,1.252188213783131380e-08,1.321754225659972021e-08,1.391320237536812662e-08,1.460886249413653304e-08,1.530452261290493780e-08,1.600018273167334256e-08,1.669584285044174732e-08,1.739150296921015208e-08,1.808716308797855684e-08,1.878282320674696160e-08,1.947848332551536636e-08,2.017414344428377112e-08,2.086980356305217588e-08,2.156546368182058063e-08,2.226112380058898539e-08,2.295678391935739015e-08,2.365244403812579491e-08,2.434810415689419967e-08,2.504376427566260443e-08,2.573942439443100919e-08,2.643508451319941395e-08,2.713074463196781871e-08,2.782640475073622347e-08,2.852206486950462823e-08,2.921772498827303299e-08,2.991338510704143775e-08,3.060904522580984251e-08,3.130470534457824727e-08,3.200036546334665203e-08,3.269602558211505679e-08,3.339168570088346155e-08,3.408734581965186631e-08,3.478300593842027107e-08,3.547866605718867583e-08,3.617432617595708059e-08,3.686998629472548535e-08,3.756564641349389011e-08,3.826130653226229487e-08,3.895696665103069962e-08,3.965262676979910438e-08,4.034828688856750914e-08,4.104394700733591390e-08,4.173960712610431866e-08,4.243526724487272342e-08,4.313092736364112818e-08,4.382658748240953294e-08 +0.000000000000000000e+00,7.072969012501803796e-10,1.414593802500360759e-09,2.121890703750540932e-09,2.829187605000721105e-09,3.536484506250901278e-09,4.243781407501081864e-09,4.951078308751262450e-09,5.658375210001443037e-09,6.365672111251623623e-09,7.072969012501804210e-09,7.780265913751984796e-09,8.487562815002165382e-09,9.194859716252345969e-09,9.902156617502526555e-09,1.060945351875270714e-08,1.131675042000288773e-08,1.202404732125306831e-08,1.273134422250324890e-08,1.343864112375342949e-08,1.414593802500361007e-08,1.485323492625379066e-08,1.556053182750396959e-08,1.626782872875414852e-08,1.697512563000432746e-08,1.768242253125450639e-08,1.838971943250468532e-08,1.909701633375486425e-08,1.980431323500504318e-08,2.051161013625522212e-08,2.121890703750540105e-08,2.192620393875557998e-08,2.263350084000575891e-08,2.334079774125593784e-08,2.404809464250611678e-08,2.475539154375629571e-08,2.546268844500647464e-08,2.616998534625665357e-08,2.687728224750683250e-08,2.758457914875701144e-08,2.829187605000719037e-08,2.899917295125736930e-08,2.970646985250754823e-08,3.041376675375772716e-08,3.112106365500790610e-08,3.182836055625808503e-08,3.253565745750826396e-08,3.324295435875844289e-08,3.395025126000862183e-08,3.465754816125880076e-08,3.536484506250897969e-08,3.607214196375915862e-08,3.677943886500933755e-08,3.748673576625951649e-08,3.819403266750969542e-08,3.890132956875987435e-08,3.960862647001005328e-08,4.031592337126023221e-08,4.102322027251041115e-08,4.173051717376059008e-08,4.243781407501076901e-08,4.314511097626094794e-08,4.385240787751112687e-08,4.455970477876130581e-08 +0.000000000000000000e+00,-7.063251849191648454e-10,-1.412650369838329691e-09,-2.118975554757494433e-09,-2.825300739676658968e-09,-3.531625924595823503e-09,-4.237951109514988038e-09,-4.944276294434152987e-09,-5.650601479353317936e-09,-6.356926664272482885e-09,-7.063251849191647834e-09,-7.769577034110812782e-09,-8.475902219029977731e-09,-9.182227403949142680e-09,-9.888552588868307629e-09,-1.059487777378747258e-08,-1.130120295870663753e-08,-1.200752814362580248e-08,-1.271385332854496742e-08,-1.342017851346413237e-08,-1.412650369838329732e-08,-1.483282888330246227e-08,-1.553915406822162887e-08,-1.624547925314079382e-08,-1.695180443805995877e-08,-1.765812962297912372e-08,-1.836445480789828867e-08,-1.907077999281745362e-08,-1.977710517773661857e-08,-2.048343036265578352e-08,-2.118975554757494846e-08,-2.189608073249411341e-08,-2.260240591741327836e-08,-2.330873110233244331e-08,-2.401505628725160826e-08,-2.472138147217077321e-08,-2.542770665708993816e-08,-2.613403184200910311e-08,-2.684035702692826805e-08,-2.754668221184743300e-08,-2.825300739676659795e-08,-2.895933258168576290e-08,-2.966565776660492785e-08,-3.037198295152409280e-08,-3.107830813644325775e-08,-3.178463332136242270e-08,-3.249095850628158764e-08,-3.319728369120075259e-08,-3.390360887611991754e-08,-3.460993406103908249e-08,-3.531625924595824744e-08,-3.602258443087741239e-08,-3.672890961579657734e-08,-3.743523480071574229e-08,-3.814155998563490723e-08,-3.884788517055407218e-08,-3.955421035547323713e-08,-4.026053554039240208e-08,-4.096686072531156703e-08,-4.167318591023073198e-08,-4.237951109514989693e-08,-4.308583628006906188e-08,-4.379216146498822683e-08,-4.449848664990739177e-08 +0.000000000000000000e+00,-6.956601187099492499e-10,-1.391320237419898500e-09,-2.086980356129847853e-09,-2.782640474839797413e-09,-3.478300593549746973e-09,-4.173960712259696533e-09,-4.869620830969646093e-09,-5.565280949679595653e-09,-6.260941068389545213e-09,-6.956601187099494774e-09,-7.652261305809445161e-09,-8.347921424519394721e-09,-9.043581543229344281e-09,-9.739241661939293841e-09,-1.043490178064924340e-08,-1.113056189935919296e-08,-1.182622201806914252e-08,-1.252188213677909208e-08,-1.321754225548904164e-08,-1.391320237419899120e-08,-1.460886249290894076e-08,-1.530452261161889032e-08,-1.600018273032883988e-08,-1.669584284903878944e-08,-1.739150296774873900e-08,-1.808716308645868856e-08,-1.878282320516863812e-08,-1.947848332387858768e-08,-2.017414344258853724e-08,-2.086980356129848680e-08,-2.156546368000843636e-08,-2.226112379871838592e-08,-2.295678391742833548e-08,-2.365244403613828504e-08,-2.434810415484823460e-08,-2.504376427355818416e-08,-2.573942439226813372e-08,-2.643508451097808328e-08,-2.713074462968803284e-08,-2.782640474839798240e-08,-2.852206486710793196e-08,-2.921772498581788152e-08,-2.991338510452782777e-08,-3.060904522323777403e-08,-3.130470534194772028e-08,-3.200036546065766653e-08,-3.269602557936761278e-08,-3.339168569807755903e-08,-3.408734581678750528e-08,-3.478300593549745153e-08,-3.547866605420739779e-08,-3.617432617291734404e-08,-3.686998629162729029e-08,-3.756564641033723654e-08,-3.826130652904718279e-08,-3.895696664775712904e-08,-3.965262676646707529e-08,-4.034828688517702154e-08,-4.104394700388696780e-08,-4.173960712259691405e-08,-4.243526724130686030e-08,-4.313092736001680655e-08,-4.382658747872675280e-08 +0.000000000000000000e+00,-7.072969012083010524e-10,-1.414593802416602105e-09,-2.121890703624902950e-09,-2.829187604833203796e-09,-3.536484506041504641e-09,-4.243781407249805901e-09,-4.951078308458107160e-09,-5.658375209666408419e-09,-6.365672110874709678e-09,-7.072969012083010937e-09,-7.780265913291311369e-09,-8.487562814499611801e-09,-9.194859715707912233e-09,-9.902156616916212665e-09,-1.060945351812451310e-08,-1.131675041933281353e-08,-1.202404732054111396e-08,-1.273134422174941439e-08,-1.343864112295771483e-08,-1.414593802416601526e-08,-1.485323492537431569e-08,-1.556053182658261612e-08,-1.626782872779091655e-08,-1.697512562899921699e-08,-1.768242253020751742e-08,-1.838971943141581785e-08,-1.909701633262411828e-08,-1.980431323383241871e-08,-2.051161013504071915e-08,-2.121890703624901958e-08,-2.192620393745732001e-08,-2.263350083866562044e-08,-2.334079773987392087e-08,-2.404809464108222131e-08,-2.475539154229052174e-08,-2.546268844349882217e-08,-2.616998534470712260e-08,-2.687728224591542303e-08,-2.758457914712372346e-08,-2.829187604833202390e-08,-2.899917294954032433e-08,-2.970646985074862476e-08,-3.041376675195692188e-08,-3.112106365316521901e-08,-3.182836055437351613e-08,-3.253565745558181325e-08,-3.324295435679011038e-08,-3.395025125799840750e-08,-3.465754815920670462e-08,-3.536484506041500175e-08,-3.607214196162329887e-08,-3.677943886283159599e-08,-3.748673576403989312e-08,-3.819403266524819024e-08,-3.890132956645648736e-08,-3.960862646766478449e-08,-4.031592336887308161e-08,-4.102322027008137873e-08,-4.173051717128967586e-08,-4.243781407249797298e-08,-4.314511097370627010e-08,-4.385240787491456723e-08,-4.455970477612286435e-08 +0.000000000000000000e+00,-3.640353644122603063e-10,-7.280707288245206126e-10,-1.092106093236780919e-09,-1.456141457649041225e-09,-1.820176822061301531e-09,-2.184212186473561838e-09,-2.548247550885822144e-09,-2.912282915298082450e-09,-3.276318279710342756e-09,-3.640353644122603063e-09,-4.004389008534863369e-09,-4.368424372947123675e-09,-4.732459737359383982e-09,-5.096495101771644288e-09,-5.460530466183904594e-09,-5.824565830596164900e-09,-6.188601195008425207e-09,-6.552636559420685513e-09,-6.916671923832945819e-09,-7.280707288245206126e-09,-7.644742652657466432e-09,-8.008778017069726738e-09,-8.372813381481987044e-09,-8.736848745894247351e-09,-9.100884110306507657e-09,-9.464919474718767963e-09,-9.828954839131028269e-09,-1.019299020354328858e-08,-1.055702556795554888e-08,-1.092106093236780919e-08,-1.128509629678006949e-08,-1.164913166119232980e-08,-1.201316702560459011e-08,-1.237720239001685041e-08,-1.274123775442911072e-08,-1.310527311884137103e-08,-1.346930848325363133e-08,-1.383334384766589164e-08,-1.419737921207815194e-08,-1.456141457649041225e-08,-1.492544994090267090e-08,-1.528948530531492955e-08,-1.565352066972718821e-08,-1.601755603413944686e-08,-1.638159139855170551e-08,-1.674562676296396416e-08,-1.710966212737622281e-08,-1.747369749178848147e-08,-1.783773285620074012e-08,-1.820176822061299877e-08,-1.856580358502525742e-08,-1.892983894943751607e-08,-1.929387431384977473e-08,-1.965790967826203338e-08,-2.002194504267429203e-08,-2.038598040708655068e-08,-2.075001577149880933e-08,-2.111405113591106799e-08,-2.147808650032332664e-08,-2.184212186473558529e-08,-2.220615722914784394e-08,-2.257019259356010259e-08,-2.293422795797236125e-08 +0.000000000000000000e+00,1.952452710814293800e-10,3.904905421628587600e-10,5.857358132442881142e-10,7.809810843257174166e-10,9.762263554071466157e-10,1.171471626488575815e-09,1.366716897570005014e-09,1.561962168651434213e-09,1.757207439732863412e-09,1.952452710814292404e-09,2.147697981895721397e-09,2.342943252977150389e-09,2.538188524058579381e-09,2.733433795140008373e-09,2.928679066221437366e-09,3.123924337302866358e-09,3.319169608384295350e-09,3.514414879465724342e-09,3.709660150547153335e-09,3.904905421628582327e-09,4.100150692710011319e-09,4.295395963791440311e-09,4.490641234872869304e-09,4.685886505954298296e-09,4.881131777035727288e-09,5.076377048117156281e-09,5.271622319198585273e-09,5.466867590280014265e-09,5.662112861361443257e-09,5.857358132442872250e-09,6.052603403524301242e-09,6.247848674605730234e-09,6.443093945687159226e-09,6.638339216768588219e-09,6.833584487850017211e-09,7.028829758931446203e-09,7.224075030012875196e-09,7.419320301094304188e-09,7.614565572175733180e-09,7.809810843257163000e-09,8.005056114338592819e-09,8.200301385420022638e-09,8.395546656501452458e-09,8.590791927582882277e-09,8.786037198664312097e-09,8.981282469745741916e-09,9.176527740827171736e-09,9.371773011908601555e-09,9.567018282990031375e-09,9.762263554071461194e-09,9.957508825152891013e-09,1.015275409623432083e-08,1.034799936731575065e-08,1.054324463839718047e-08,1.073848990947861029e-08,1.093373518056004011e-08,1.112898045164146993e-08,1.132422572272289975e-08,1.151947099380432957e-08,1.171471626488575939e-08,1.190996153596718921e-08,1.210520680704861903e-08,1.230045207813004885e-08 +0.000000000000000000e+00,-4.685997310484545979e-20,-9.371994620969091959e-20,-1.405799193145363734e-19,-1.874398924193818151e-19,-2.342998655242272568e-19,-2.811598386290726986e-19,-3.280198117339181403e-19,-3.748797848387635821e-19,-4.217397579436090238e-19,-4.685997310484544174e-19,-5.154597041532997628e-19,-5.623196772581451083e-19,-6.091796503629904537e-19,-6.560396234678357991e-19,-7.028995965726811446e-19,-7.497595696775264900e-19,-7.966195427823718355e-19,-8.434795158872171809e-19,-8.903394889920625264e-19,-9.371994620969078718e-19,-9.840594352017532172e-19,-1.030919408306598563e-18,-1.077779381411443908e-18,-1.124639354516289254e-18,-1.171499327621134599e-18,-1.218359300725979944e-18,-1.265219273830825290e-18,-1.312079246935670635e-18,-1.358939220040515981e-18,-1.405799193145361326e-18,-1.452659166250206672e-18,-1.499519139355052017e-18,-1.546379112459897363e-18,-1.593239085564742708e-18,-1.640099058669588053e-18,-1.686959031774433399e-18,-1.733819004879278744e-18,-1.780678977984124282e-18,-1.827538951088969820e-18,-1.874398924193815358e-18,-1.921258897298660896e-18,-1.968118870403506434e-18,-2.014978843508351973e-18,-2.061838816613197511e-18,-2.108698789718043049e-18,-2.155558762822888587e-18,-2.202418735927734125e-18,-2.249278709032579663e-18,-2.296138682137425201e-18,-2.342998655242270739e-18,-2.389858628347116277e-18,-2.436718601451961815e-18,-2.483578574556807353e-18,-2.530438547661652891e-18,-2.577298520766498429e-18,-2.624158493871343967e-18,-2.671018466976189505e-18,-2.717878440081035043e-18,-2.764738413185880581e-18,-2.811598386290726119e-18,-2.858458359395571657e-18,-2.905318332500417195e-18,-2.952178305605262733e-18 +0.000000000000000000e+00,-1.386253632677844033e-10,-2.772507265355688067e-10,-4.158760898033531842e-10,-5.545014530711375100e-10,-6.931268163389218358e-10,-8.317521796067061616e-10,-9.703775428744905908e-10,-1.109002906142275020e-09,-1.247628269410059449e-09,-1.386253632677843878e-09,-1.524878995945628308e-09,-1.663504359213412737e-09,-1.802129722481197166e-09,-1.940755085748981595e-09,-2.079380449016766024e-09,-2.218005812284550454e-09,-2.356631175552334883e-09,-2.495256538820119312e-09,-2.633881902087903741e-09,-2.772507265355688170e-09,-2.911132628623472600e-09,-3.049757991891257029e-09,-3.188383355159041458e-09,-3.327008718426825887e-09,-3.465634081694610316e-09,-3.604259444962394746e-09,-3.742884808230179588e-09,-3.881510171497964017e-09,-4.020135534765748447e-09,-4.158760898033532876e-09,-4.297386261301317305e-09,-4.436011624569101734e-09,-4.574636987836886163e-09,-4.713262351104670593e-09,-4.851887714372455022e-09,-4.990513077640239451e-09,-5.129138440908023880e-09,-5.267763804175808309e-09,-5.406389167443592739e-09,-5.545014530711377168e-09,-5.683639893979161597e-09,-5.822265257246946026e-09,-5.960890620514730455e-09,-6.099515983782514885e-09,-6.238141347050299314e-09,-6.376766710318083743e-09,-6.515392073585868172e-09,-6.654017436853652601e-09,-6.792642800121437031e-09,-6.931268163389221460e-09,-7.069893526657005889e-09,-7.208518889924790318e-09,-7.347144253192574747e-09,-7.485769616460359177e-09,-7.624394979728143606e-09,-7.763020342995928035e-09,-7.901645706263712464e-09,-8.040271069531496893e-09,-8.178896432799281323e-09,-8.317521796067065752e-09,-8.456147159334850181e-09,-8.594772522602634610e-09,-8.733397885870419039e-09 +0.000000000000000000e+00,2.120293056458028808e-11,4.240586112916057616e-11,6.360879169374086425e-11,8.481172225832115233e-11,1.060146528229014404e-10,1.272175833874817285e-10,1.484205139520620036e-10,1.696234445166422788e-10,1.908263750812225540e-10,2.120293056458028291e-10,2.332322362103831043e-10,2.544351667749634053e-10,2.756380973395437063e-10,2.968410279041240073e-10,3.180439584687043083e-10,3.392468890332846093e-10,3.604498195978649103e-10,3.816527501624452113e-10,4.028556807270255123e-10,4.240586112916058133e-10,4.452615418561861143e-10,4.664644724207664154e-10,4.876674029853467681e-10,5.088703335499271208e-10,5.300732641145074735e-10,5.512761946790878262e-10,5.724791252436681789e-10,5.936820558082485316e-10,6.148849863728288843e-10,6.360879169374092370e-10,6.572908475019895897e-10,6.784937780665699424e-10,6.996967086311502951e-10,7.208996391957306478e-10,7.421025697603110005e-10,7.633055003248913532e-10,7.845084308894717059e-10,8.057113614540520586e-10,8.269142920186324113e-10,8.481172225832127640e-10,8.693201531477931168e-10,8.905230837123734695e-10,9.117260142769538222e-10,9.329289448415342783e-10,9.541318754061147344e-10,9.753348059706951905e-10,9.965377365352756466e-10,1.017740667099856103e-09,1.038943597664436559e-09,1.060146528229017015e-09,1.081349458793597471e-09,1.102552389358177927e-09,1.123755319922758383e-09,1.144958250487338839e-09,1.166161181051919295e-09,1.187364111616499752e-09,1.208567042181080208e-09,1.229769972745660664e-09,1.250972903310241120e-09,1.272175833874821576e-09,1.293378764439402032e-09,1.314581695003982488e-09,1.335784625568562944e-09 +0.000000000000000000e+00,3.169011569144128900e-10,6.338023138288257800e-10,9.507034707432387217e-10,1.267604627657651767e-09,1.584505784572064812e-09,1.901406941486477857e-09,2.218308098400890902e-09,2.535209255315303947e-09,2.852110412229716992e-09,3.169011569144130037e-09,3.485912726058543083e-09,3.802813882972956541e-09,4.119715039887370414e-09,4.436616196801784286e-09,4.753517353716198158e-09,5.070418510630612030e-09,5.387319667545025903e-09,5.704220824459439775e-09,6.021121981373853647e-09,6.338023138288267520e-09,6.654924295202681392e-09,6.971825452117095264e-09,7.288726609031509136e-09,7.605627765945923009e-09,7.922528922860336881e-09,8.239430079774750753e-09,8.556331236689164626e-09,8.873232393603578498e-09,9.190133550517992370e-09,9.507034707432406243e-09,9.823935864346820115e-09,1.014083702126123399e-08,1.045773817817564786e-08,1.077463933509006173e-08,1.109154049200447560e-08,1.140844164891888948e-08,1.172534280583330335e-08,1.204224396274771722e-08,1.235914511966213109e-08,1.267604627657654497e-08,1.299294743349095884e-08,1.330984859040537271e-08,1.362674974731978658e-08,1.394365090423420045e-08,1.426055206114861433e-08,1.457745321806302820e-08,1.489435437497744207e-08,1.521125553189185594e-08,1.552815668880626816e-08,1.584505784572068038e-08,1.616195900263509260e-08,1.647886015954950482e-08,1.679576131646391703e-08,1.711266247337832925e-08,1.742956363029274147e-08,1.774646478720715369e-08,1.806336594412156591e-08,1.838026710103597812e-08,1.869716825795039034e-08,1.901406941486480256e-08,1.933097057177921478e-08,1.964787172869362699e-08,1.996477288560803921e-08 +0.000000000000000000e+00,-1.820878404946378845e-10,-3.641756809892757690e-10,-5.462635214839136276e-10,-7.283513619785514346e-10,-9.104392024731892415e-10,-1.092527042967827048e-09,-1.274614883462464959e-09,-1.456702723957102869e-09,-1.638790564451740780e-09,-1.820878404946378690e-09,-2.002966245441016600e-09,-2.185054085935654511e-09,-2.367141926430292421e-09,-2.549229766924930331e-09,-2.731317607419568242e-09,-2.913405447914206152e-09,-3.095493288408844062e-09,-3.277581128903481973e-09,-3.459668969398119883e-09,-3.641756809892757793e-09,-3.823844650387396117e-09,-4.005932490882034028e-09,-4.188020331376671938e-09,-4.370108171871309848e-09,-4.552196012365947759e-09,-4.734283852860585669e-09,-4.916371693355223579e-09,-5.098459533849861490e-09,-5.280547374344499400e-09,-5.462635214839137310e-09,-5.644723055333775221e-09,-5.826810895828413131e-09,-6.008898736323051041e-09,-6.190986576817688952e-09,-6.373074417312326862e-09,-6.555162257806964772e-09,-6.737250098301602683e-09,-6.919337938796240593e-09,-7.101425779290878503e-09,-7.283513619785516414e-09,-7.465601460280154324e-09,-7.647689300774792235e-09,-7.829777141269430145e-09,-8.011864981764068055e-09,-8.193952822258705966e-09,-8.376040662753343876e-09,-8.558128503247981786e-09,-8.740216343742619697e-09,-8.922304184237257607e-09,-9.104392024731895517e-09,-9.286479865226533428e-09,-9.468567705721171338e-09,-9.650655546215809248e-09,-9.832743386710447159e-09,-1.001483122720508507e-08,-1.019691906769972298e-08,-1.037900690819436089e-08,-1.056109474868899880e-08,-1.074318258918363671e-08,-1.092527042967827462e-08,-1.110735827017291253e-08,-1.128944611066755044e-08,-1.147153395116218835e-08 +0.000000000000000000e+00,-4.238354174981024330e-20,-8.476708349962048660e-20,-1.271506252494307179e-19,-1.695341669992409491e-19,-2.119177087490511804e-19,-2.543012504988614357e-19,-2.966847922486716911e-19,-3.390683339984819464e-19,-3.814518757482922017e-19,-4.238354174981024571e-19,-4.662189592479127124e-19,-5.086025009977229677e-19,-5.509860427475332231e-19,-5.933695844973434784e-19,-6.357531262471537337e-19,-6.781366679969639891e-19,-7.205202097467742444e-19,-7.629037514965844998e-19,-8.052872932463947551e-19,-8.476708349962050104e-19,-8.900543767460152658e-19,-9.324379184958254248e-19,-9.748214602456355838e-19,-1.017205001995445743e-18,-1.059588543745255902e-18,-1.101972085495066061e-18,-1.144355627244876220e-18,-1.186739168994686379e-18,-1.229122710744496538e-18,-1.271506252494306697e-18,-1.313889794244116856e-18,-1.356273335993927015e-18,-1.398656877743737174e-18,-1.441040419493547333e-18,-1.483423961243357492e-18,-1.525807502993167651e-18,-1.568191044742977810e-18,-1.610574586492787969e-18,-1.652958128242598128e-18,-1.695341669992408288e-18,-1.737725211742218254e-18,-1.780108753492028220e-18,-1.822492295241838187e-18,-1.864875836991648153e-18,-1.907259378741458120e-18,-1.949642920491268086e-18,-1.992026462241078053e-18,-2.034410003990888019e-18,-2.076793545740697986e-18,-2.119177087490507952e-18,-2.161560629240317918e-18,-2.203944170990127885e-18,-2.246327712739937851e-18,-2.288711254489747818e-18,-2.331094796239557784e-18,-2.373478337989367751e-18,-2.415861879739177717e-18,-2.458245421488987684e-18,-2.500628963238797650e-18,-2.543012504988607616e-18,-2.585396046738417583e-18,-2.627779588488227549e-18,-2.670163130238037516e-18 +0.000000000000000000e+00,3.640353643187564302e-10,7.280707286375128604e-10,1.092106092956269291e-09,1.456141457275025721e-09,1.820176821593782151e-09,2.184212185912538581e-09,2.548247550231294805e-09,2.912282914550051028e-09,3.276318278868807252e-09,3.640353643187563475e-09,4.004389007506319698e-09,4.368424371825076335e-09,4.732459736143832972e-09,5.096495100462589609e-09,5.460530464781346247e-09,5.824565829100102884e-09,6.188601193418859521e-09,6.552636557737616158e-09,6.916671922056372795e-09,7.280707286375129432e-09,7.644742650693886896e-09,8.008778015012644360e-09,8.372813379331401824e-09,8.736848743650159288e-09,9.100884107968916753e-09,9.464919472287674217e-09,9.828954836606431681e-09,1.019299020092518915e-08,1.055702556524394661e-08,1.092106092956270407e-08,1.128509629388146154e-08,1.164913165820021900e-08,1.201316702251897647e-08,1.237720238683773393e-08,1.274123775115649139e-08,1.310527311547524886e-08,1.346930847979400632e-08,1.383334384411276379e-08,1.419737920843152125e-08,1.456141457275027872e-08,1.492544993706903618e-08,1.528948530138779364e-08,1.565352066570655111e-08,1.601755603002530857e-08,1.638159139434406604e-08,1.674562675866282350e-08,1.710966212298158096e-08,1.747369748730033843e-08,1.783773285161909589e-08,1.820176821593785336e-08,1.856580358025661082e-08,1.892983894457536829e-08,1.929387430889412575e-08,1.965790967321288321e-08,2.002194503753164068e-08,2.038598040185039814e-08,2.075001576616915561e-08,2.111405113048791307e-08,2.147808649480667054e-08,2.184212185912542800e-08,2.220615722344418546e-08,2.257019258776294293e-08,2.293422795208170039e-08 +0.000000000000000000e+00,-1.952452711420615638e-10,-3.904905422841231276e-10,-5.857358134261847173e-10,-7.809810845682463587e-10,-9.762263557103078966e-10,-1.171471626852369435e-09,-1.366716897994430973e-09,-1.561962169136492511e-09,-1.757207440278554048e-09,-1.952452711420615793e-09,-2.147697982562677538e-09,-2.342943253704739283e-09,-2.538188524846801028e-09,-2.733433795988862772e-09,-2.928679067130924517e-09,-3.123924338272986262e-09,-3.319169609415048007e-09,-3.514414880557109751e-09,-3.709660151699171496e-09,-3.904905422841233241e-09,-4.100150693983295399e-09,-4.295395965125357558e-09,-4.490641236267419716e-09,-4.685886507409481874e-09,-4.881131778551544033e-09,-5.076377049693606191e-09,-5.271622320835668349e-09,-5.466867591977730508e-09,-5.662112863119792666e-09,-5.857358134261854824e-09,-6.052603405403916983e-09,-6.247848676545979141e-09,-6.443093947688041299e-09,-6.638339218830103458e-09,-6.833584489972165616e-09,-7.028829761114227774e-09,-7.224075032256289933e-09,-7.419320303398352091e-09,-7.614565574540414249e-09,-7.809810845682476408e-09,-8.005056116824538566e-09,-8.200301387966600725e-09,-8.395546659108662883e-09,-8.590791930250725041e-09,-8.786037201392787200e-09,-8.981282472534849358e-09,-9.176527743676911516e-09,-9.371773014818973675e-09,-9.567018285961035833e-09,-9.762263557103097991e-09,-9.957508828245160150e-09,-1.015275409938722231e-08,-1.034799937052928447e-08,-1.054324464167134662e-08,-1.073848991281340878e-08,-1.093373518395547094e-08,-1.112898045509753310e-08,-1.132422572623959526e-08,-1.151947099738165742e-08,-1.171471626852371957e-08,-1.190996153966578173e-08,-1.210520681080784389e-08,-1.230045208194990605e-08 +0.000000000000000000e+00,1.820878404009547687e-10,3.641756808019095375e-10,5.462635212028643321e-10,7.283513616038191784e-10,9.104392020047740246e-10,1.092527042405728871e-09,1.274614882806683614e-09,1.456702723207638357e-09,1.638790563608593100e-09,1.820878404009547842e-09,2.002966244410502585e-09,2.185054084811457328e-09,2.367141925212412071e-09,2.549229765613366814e-09,2.731317606014321557e-09,2.913405446415276300e-09,3.095493286816231043e-09,3.277581127217185786e-09,3.459668967618140529e-09,3.641756808019095271e-09,3.823844648420049601e-09,4.005932488821004344e-09,4.188020329221959086e-09,4.370108169622913829e-09,4.552196010023868572e-09,4.734283850424823315e-09,4.916371690825778058e-09,5.098459531226732801e-09,5.280547371627687544e-09,5.462635212028642287e-09,5.644723052429597030e-09,5.826810892830551772e-09,6.008898733231506515e-09,6.190986573632461258e-09,6.373074414033416001e-09,6.555162254434370744e-09,6.737250094835325487e-09,6.919337935236280230e-09,7.101425775637234973e-09,7.283513616038189716e-09,7.465601456439144458e-09,7.647689296840099201e-09,7.829777137241053944e-09,8.011864977642008687e-09,8.193952818042963430e-09,8.376040658443918173e-09,8.558128498844872916e-09,8.740216339245827659e-09,8.922304179646782402e-09,9.104392020047737145e-09,9.286479860448691887e-09,9.468567700849646630e-09,9.650655541250601373e-09,9.832743381651556116e-09,1.001483122205251086e-08,1.019691906245346560e-08,1.037900690285442034e-08,1.056109474325537509e-08,1.074318258365632983e-08,1.092527042405728457e-08,1.110735826445823932e-08,1.128944610485919406e-08,1.147153394526014880e-08 +0.000000000000000000e+00,1.386253631831686605e-10,2.772507263663373210e-10,4.158760895495059816e-10,5.545014527326746421e-10,6.931268159158432509e-10,8.317521790990118597e-10,9.703775422821804685e-10,1.109002905465349077e-09,1.247628268648517686e-09,1.386253631831686295e-09,1.524878995014854904e-09,1.663504358198023513e-09,1.802129721381192121e-09,1.940755084564360937e-09,2.079380447747529753e-09,2.218005810930698568e-09,2.356631174113867384e-09,2.495256537297036200e-09,2.633881900480205015e-09,2.772507263663373831e-09,2.911132626846542646e-09,3.049757990029711462e-09,3.188383353212880278e-09,3.327008716396049093e-09,3.465634079579217909e-09,3.604259442762386724e-09,3.742884805945555540e-09,3.881510169128724356e-09,4.020135532311893171e-09,4.158760895495061987e-09,4.297386258678230803e-09,4.436011621861399618e-09,4.574636985044568434e-09,4.713262348227737249e-09,4.851887711410906065e-09,4.990513074594074881e-09,5.129138437777243696e-09,5.267763800960412512e-09,5.406389164143581327e-09,5.545014527326750143e-09,5.683639890509918959e-09,5.822265253693087774e-09,5.960890616876256590e-09,6.099515980059425406e-09,6.238141343242594221e-09,6.376766706425763037e-09,6.515392069608931852e-09,6.654017432792100668e-09,6.792642795975269484e-09,6.931268159158438299e-09,7.069893522341607115e-09,7.208518885524775930e-09,7.347144248707944746e-09,7.485769611891112735e-09,7.624394975074281550e-09,7.763020338257450366e-09,7.901645701440619181e-09,8.040271064623787997e-09,8.178896427806956813e-09,8.317521790990125628e-09,8.456147154173294444e-09,8.594772517356463259e-09,8.733397880539632075e-09 +0.000000000000000000e+00,-2.120293064126999597e-11,-4.240586128253999195e-11,-6.360879192380998469e-11,-8.481172256507997097e-11,-1.060146532063499572e-10,-1.272175838476199435e-10,-1.484205144888899169e-10,-1.696234451301598902e-10,-1.908263757714298636e-10,-2.120293064126998370e-10,-2.332322370539698103e-10,-2.544351676952397837e-10,-2.756380983365097570e-10,-2.968410289777797304e-10,-3.180439596190497037e-10,-3.392468902603196771e-10,-3.604498209015896504e-10,-3.816527515428596238e-10,-4.028556821841295971e-10,-4.240586128253995705e-10,-4.452615434666695439e-10,-4.664644741079395172e-10,-4.876674047492095423e-10,-5.088703353904795673e-10,-5.300732660317495924e-10,-5.512761966730196174e-10,-5.724791273142896425e-10,-5.936820579555596675e-10,-6.148849885968296926e-10,-6.360879192380997176e-10,-6.572908498793697427e-10,-6.784937805206397678e-10,-6.996967111619097928e-10,-7.208996418031798179e-10,-7.421025724444498429e-10,-7.633055030857198680e-10,-7.845084337269898930e-10,-8.057113643682599181e-10,-8.269142950095299431e-10,-8.481172256507999682e-10,-8.693201562920699932e-10,-8.905230869333400183e-10,-9.117260175746100433e-10,-9.329289482158800684e-10,-9.541318788571500935e-10,-9.753348094984201185e-10,-9.965377401396901436e-10,-1.017740670780960169e-09,-1.038943601422230194e-09,-1.060146532063500219e-09,-1.081349462704770244e-09,-1.102552393346040269e-09,-1.123755323987310294e-09,-1.144958254628580319e-09,-1.166161185269850344e-09,-1.187364115911120369e-09,-1.208567046552390394e-09,-1.229769977193660419e-09,-1.250972907834930444e-09,-1.272175838476200469e-09,-1.293378769117470494e-09,-1.314581699758740519e-09,-1.335784630400010544e-09 +0.000000000000000000e+00,-3.169011569630996552e-10,-6.338023139261993104e-10,-9.507034708892989656e-10,-1.267604627852398621e-09,-1.584505784815498276e-09,-1.901406941778597931e-09,-2.218308098741697586e-09,-2.535209255704797242e-09,-2.852110412667896897e-09,-3.169011569630996552e-09,-3.485912726594096207e-09,-3.802813883557195862e-09,-4.119715040520295931e-09,-4.436616197483396000e-09,-4.753517354446496069e-09,-5.070418511409596137e-09,-5.387319668372696206e-09,-5.704220825335796275e-09,-6.021121982298896344e-09,-6.338023139261996413e-09,-6.654924296225096481e-09,-6.971825453188196550e-09,-7.288726610151296619e-09,-7.605627767114396688e-09,-7.922528924077496756e-09,-8.239430081040596825e-09,-8.556331238003696894e-09,-8.873232394966796963e-09,-9.190133551929897032e-09,-9.507034708892997100e-09,-9.823935865856097169e-09,-1.014083702281919724e-08,-1.045773817978229731e-08,-1.077463933674539738e-08,-1.109154049370849744e-08,-1.140844165067159751e-08,-1.172534280763469758e-08,-1.204224396459779765e-08,-1.235914512156089772e-08,-1.267604627852399779e-08,-1.299294743548709786e-08,-1.330984859245019793e-08,-1.362674974941329799e-08,-1.394365090637639806e-08,-1.426055206333949813e-08,-1.457745322030259820e-08,-1.489435437726569827e-08,-1.521125553422879668e-08,-1.552815669119189675e-08,-1.584505784815499682e-08,-1.616195900511809689e-08,-1.647886016208119696e-08,-1.679576131904429703e-08,-1.711266247600739710e-08,-1.742956363297049717e-08,-1.774646478993359723e-08,-1.806336594689669730e-08,-1.838026710385979737e-08,-1.869716826082289744e-08,-1.901406941778599751e-08,-1.933097057474909758e-08,-1.964787173171219765e-08,-1.996477288867529772e-08 +0.000000000000000000e+00,4.084567735999542234e-10,8.169135471999084467e-10,1.225370320799862618e-09,1.633827094399816687e-09,2.042283867999770755e-09,2.450740641599724823e-09,2.859197415199678891e-09,3.267654188799632960e-09,3.676110962399587028e-09,4.084567735999541510e-09,4.493024509599495992e-09,4.901481283199450474e-09,5.309938056799404955e-09,5.718394830399359437e-09,6.126851603999313919e-09,6.535308377599268401e-09,6.943765151199222883e-09,7.352221924799177365e-09,7.760678698399131847e-09,8.169135471999086328e-09,8.577592245599040810e-09,8.986049019198995292e-09,9.394505792798949774e-09,9.802962566398904256e-09,1.021141933999885874e-08,1.061987611359881322e-08,1.102833288719876770e-08,1.143678966079872218e-08,1.184524643439867667e-08,1.225370320799863115e-08,1.266215998159858563e-08,1.307061675519854011e-08,1.347907352879849459e-08,1.388753030239844907e-08,1.429598707599840356e-08,1.470444384959835804e-08,1.511290062319831252e-08,1.552135739679826700e-08,1.592981417039822148e-08,1.633827094399817597e-08,1.674672771759813045e-08,1.715518449119808493e-08,1.756364126479803941e-08,1.797209803839799389e-08,1.838055481199794837e-08,1.878901158559790286e-08,1.919746835919785734e-08,1.960592513279781182e-08,2.001438190639776630e-08,2.042283867999772078e-08,2.083129545359767527e-08,2.123975222719762975e-08,2.164820900079758423e-08,2.205666577439753871e-08,2.246512254799749319e-08,2.287357932159744768e-08,2.328203609519740216e-08,2.369049286879735664e-08,2.409894964239731112e-08,2.450740641599726560e-08,2.491586318959722008e-08,2.532431996319717457e-08,2.573277673679712905e-08 +0.000000000000000000e+00,3.193829301098054973e-10,6.387658602196109946e-10,9.581487903294164402e-10,1.277531720439221782e-09,1.596914650549027125e-09,1.916297580658832467e-09,2.235680510768637602e-09,2.555063440878442738e-09,2.874446370988247873e-09,3.193829301098053008e-09,3.513212231207858144e-09,3.832595161317663279e-09,4.151978091427468415e-09,4.471361021537273550e-09,4.790743951647078685e-09,5.110126881756883821e-09,5.429509811866688956e-09,5.748892741976494092e-09,6.068275672086299227e-09,6.387658602196104362e-09,6.707041532305909498e-09,7.026424462415714633e-09,7.345807392525519769e-09,7.665190322635324904e-09,7.984573252745130040e-09,8.303956182854935175e-09,8.623339112964740310e-09,8.942722043074545446e-09,9.262104973184350581e-09,9.581487903294155717e-09,9.900870833403960852e-09,1.022025376351376599e-08,1.053963669362357112e-08,1.085901962373337626e-08,1.117840255384318139e-08,1.149778548395298653e-08,1.181716841406279166e-08,1.213655134417259680e-08,1.245593427428240194e-08,1.277531720439220707e-08,1.309470013450201221e-08,1.341408306461181734e-08,1.373346599472162248e-08,1.405284892483142761e-08,1.437223185494123275e-08,1.469161478505103788e-08,1.501099771516084302e-08,1.533038064527064650e-08,1.564976357538044998e-08,1.596914650549025346e-08,1.628852943560005694e-08,1.660791236570986042e-08,1.692729529581966390e-08,1.724667822592946739e-08,1.756606115603927087e-08,1.788544408614907435e-08,1.820482701625887783e-08,1.852420994636868131e-08,1.884359287647848479e-08,1.916297580658828827e-08,1.948235873669809175e-08,1.980174166680789523e-08,2.012112459691769872e-08 +0.000000000000000000e+00,4.767414846301429887e-10,9.534829692602859775e-10,1.430224453890428966e-09,1.906965938520571955e-09,2.383707423150715151e-09,2.860448907780858346e-09,3.337190392411001542e-09,3.813931877041144737e-09,4.290673361671287933e-09,4.767414846301431128e-09,5.244156330931574324e-09,5.720897815561717519e-09,6.197639300191860715e-09,6.674380784822003910e-09,7.151122269452147106e-09,7.627863754082291129e-09,8.104605238712435151e-09,8.581346723342579174e-09,9.058088207972723197e-09,9.534829692602867219e-09,1.001157117723301124e-08,1.048831266186315526e-08,1.096505414649329929e-08,1.144179563112344331e-08,1.191853711575358733e-08,1.239527860038373136e-08,1.287202008501387538e-08,1.334876156964401940e-08,1.382550305427416342e-08,1.430224453890430745e-08,1.477898602353445147e-08,1.525572750816459549e-08,1.573246899279473951e-08,1.620921047742488354e-08,1.668595196205502756e-08,1.716269344668517158e-08,1.763943493131531561e-08,1.811617641594545963e-08,1.859291790057560365e-08,1.906965938520574767e-08,1.954640086983589170e-08,2.002314235446603572e-08,2.049988383909617974e-08,2.097662532372632376e-08,2.145336680835646779e-08,2.193010829298661181e-08,2.240684977761675583e-08,2.288359126224689986e-08,2.336033274687704388e-08,2.383707423150718790e-08,2.431381571613733192e-08,2.479055720076747595e-08,2.526729868539761997e-08,2.574404017002776399e-08,2.622078165465790801e-08,2.669752313928805204e-08,2.717426462391819606e-08,2.765100610854834008e-08,2.812774759317848411e-08,2.860448907780862813e-08,2.908123056243877215e-08,2.955797204706891617e-08,3.003471353169906020e-08 +0.000000000000000000e+00,-4.084567736302554002e-10,-8.169135472605108003e-10,-1.225370320890766252e-09,-1.633827094521021807e-09,-2.042283868151277156e-09,-2.450740641781532504e-09,-2.859197415411787853e-09,-3.267654189042043201e-09,-3.676110962672298550e-09,-4.084567736302554312e-09,-4.493024509932810074e-09,-4.901481283563065836e-09,-5.309938057193321598e-09,-5.718394830823577360e-09,-6.126851604453833122e-09,-6.535308378084088884e-09,-6.943765151714344646e-09,-7.352221925344600408e-09,-7.760678698974856170e-09,-8.169135472605111932e-09,-8.577592246235367694e-09,-8.986049019865623456e-09,-9.394505793495879219e-09,-9.802962567126134981e-09,-1.021141934075639074e-08,-1.061987611438664650e-08,-1.102833288801690227e-08,-1.143678966164715803e-08,-1.184524643527741379e-08,-1.225370320890766955e-08,-1.266215998253792531e-08,-1.307061675616818108e-08,-1.347907352979843684e-08,-1.388753030342869260e-08,-1.429598707705894836e-08,-1.470444385068920413e-08,-1.511290062431945989e-08,-1.552135739794971565e-08,-1.592981417157997141e-08,-1.633827094521022717e-08,-1.674672771884048294e-08,-1.715518449247073870e-08,-1.756364126610099446e-08,-1.797209803973125022e-08,-1.838055481336150598e-08,-1.878901158699176175e-08,-1.919746836062201751e-08,-1.960592513425227327e-08,-2.001438190788252903e-08,-2.042283868151278479e-08,-2.083129545514304056e-08,-2.123975222877329632e-08,-2.164820900240355208e-08,-2.205666577603380784e-08,-2.246512254966406360e-08,-2.287357932329431937e-08,-2.328203609692457513e-08,-2.369049287055483089e-08,-2.409894964418508665e-08,-2.450740641781534241e-08,-2.491586319144559818e-08,-2.532431996507585394e-08,-2.573277673870610970e-08 +0.000000000000000000e+00,-3.193829301549401938e-10,-6.387658603098803877e-10,-9.581487904648205298e-10,-1.277531720619760569e-09,-1.596914650774700607e-09,-1.916297580929640646e-09,-2.235680511084580892e-09,-2.555063441239521137e-09,-2.874446371394461383e-09,-3.193829301549401628e-09,-3.513212231704341874e-09,-3.832595161859282119e-09,-4.151978092014222365e-09,-4.471361022169162610e-09,-4.790743952324102856e-09,-5.110126882479043101e-09,-5.429509812633983347e-09,-5.748892742788923592e-09,-6.068275672943863838e-09,-6.387658603098804083e-09,-6.707041533253744329e-09,-7.026424463408684574e-09,-7.345807393563624820e-09,-7.665190323718565893e-09,-7.984573253873506965e-09,-8.303956184028448038e-09,-8.623339114183389111e-09,-8.942722044338330184e-09,-9.262104974493271256e-09,-9.581487904648212329e-09,-9.900870834803153402e-09,-1.022025376495809447e-08,-1.053963669511303555e-08,-1.085901962526797662e-08,-1.117840255542291769e-08,-1.149778548557785877e-08,-1.181716841573279984e-08,-1.213655134588774091e-08,-1.245593427604268198e-08,-1.277531720619762306e-08,-1.309470013635256413e-08,-1.341408306650750520e-08,-1.373346599666244627e-08,-1.405284892681738735e-08,-1.437223185697232842e-08,-1.469161478712726949e-08,-1.501099771728221057e-08,-1.533038064743715164e-08,-1.564976357759209271e-08,-1.596914650774703378e-08,-1.628852943790197486e-08,-1.660791236805691593e-08,-1.692729529821185700e-08,-1.724667822836679807e-08,-1.756606115852173915e-08,-1.788544408867668022e-08,-1.820482701883162129e-08,-1.852420994898656236e-08,-1.884359287914150344e-08,-1.916297580929644451e-08,-1.948235873945138558e-08,-1.980174166960632666e-08,-2.012112459976126773e-08 +0.000000000000000000e+00,-4.767414846454807785e-10,-9.534829692909615569e-10,-1.430224453936442335e-09,-1.906965938581923114e-09,-2.383707423227403892e-09,-2.860448907872884671e-09,-3.337190392518365449e-09,-3.813931877163846228e-09,-4.290673361809327006e-09,-4.767414846454807785e-09,-5.244156331100288563e-09,-5.720897815745769341e-09,-6.197639300391250120e-09,-6.674380785036730898e-09,-7.151122269682211677e-09,-7.627863754327692455e-09,-8.104605238973172407e-09,-8.581346723618652358e-09,-9.058088208264132309e-09,-9.534829692909612260e-09,-1.001157117755509221e-08,-1.048831266220057216e-08,-1.096505414684605211e-08,-1.144179563149153207e-08,-1.191853711613701202e-08,-1.239527860078249197e-08,-1.287202008542797192e-08,-1.334876157007345187e-08,-1.382550305471893182e-08,-1.430224453936441177e-08,-1.477898602400989172e-08,-1.525572750865537168e-08,-1.573246899330085163e-08,-1.620921047794633158e-08,-1.668595196259181153e-08,-1.716269344723729148e-08,-1.763943493188277143e-08,-1.811617641652825138e-08,-1.859291790117373133e-08,-1.906965938581921129e-08,-1.954640087046469124e-08,-2.002314235511017119e-08,-2.049988383975565114e-08,-2.097662532440113109e-08,-2.145336680904661104e-08,-2.193010829369209099e-08,-2.240684977833757094e-08,-2.288359126298305090e-08,-2.336033274762853085e-08,-2.383707423227401080e-08,-2.431381571691949075e-08,-2.479055720156497070e-08,-2.526729868621045065e-08,-2.574404017085593060e-08,-2.622078165550141056e-08,-2.669752314014689051e-08,-2.717426462479237046e-08,-2.765100610943785041e-08,-2.812774759408333036e-08,-2.860448907872881031e-08,-2.908123056337429026e-08,-2.955797204801977021e-08,-3.003471353266525347e-08 +0.000000000000000000e+00,5.038904740695259845e-10,1.007780948139051969e-09,1.511671422208577954e-09,2.015561896278103938e-09,2.519452370347630129e-09,3.023342844417156321e-09,3.527233318486682512e-09,4.031123792556208703e-09,4.535014266625734895e-09,5.038904740695261086e-09,5.542795214764787277e-09,6.046685688834313469e-09,6.550576162903839660e-09,7.054466636973365851e-09,7.558357111042891215e-09,8.062247585112415752e-09,8.566138059181940289e-09,9.070028533251464826e-09,9.573919007320989363e-09,1.007780948139051390e-08,1.058169995546003844e-08,1.108559042952956297e-08,1.158948090359908751e-08,1.209337137766861205e-08,1.259726185173813658e-08,1.310115232580766112e-08,1.360504279987718566e-08,1.410893327394671020e-08,1.461282374801623473e-08,1.511671422208575927e-08,1.562060469615528381e-08,1.612449517022480834e-08,1.662838564429433288e-08,1.713227611836385742e-08,1.763616659243338195e-08,1.814005706650290649e-08,1.864394754057243103e-08,1.914783801464195557e-08,1.965172848871148010e-08,2.015561896278100464e-08,2.065950943685052918e-08,2.116339991092005371e-08,2.166729038498957825e-08,2.217118085905910279e-08,2.267507133312862732e-08,2.317896180719815186e-08,2.368285228126767640e-08,2.418674275533720093e-08,2.469063322940672547e-08,2.519452370347625001e-08,2.569841417754577455e-08,2.620230465161529908e-08,2.670619512568482362e-08,2.721008559975434816e-08,2.771397607382387269e-08,2.821786654789339723e-08,2.872175702196292177e-08,2.922564749603244630e-08,2.972953797010197084e-08,3.023342844417149869e-08,3.073731891824102984e-08,3.124120939231056100e-08,3.174509986638009215e-08 +0.000000000000000000e+00,4.574937838620869699e-10,9.149875677241739399e-10,1.372481351586260910e-09,1.829975135448347880e-09,2.287468919310434850e-09,2.744962703172521820e-09,3.202456487034608790e-09,3.659950270896695760e-09,4.117444054758783143e-09,4.574937838620870527e-09,5.032431622482957910e-09,5.489925406345045294e-09,5.947419190207132677e-09,6.404912974069220061e-09,6.862406757931307444e-09,7.319900541793394828e-09,7.777394325655482211e-09,8.234888109517569595e-09,8.692381893379656978e-09,9.149875677241744362e-09,9.607369461103831746e-09,1.006486324496591913e-08,1.052235702882800651e-08,1.097985081269009390e-08,1.143734459655218128e-08,1.189483838041426866e-08,1.235233216427635605e-08,1.280982594813844343e-08,1.326731973200053081e-08,1.372481351586261820e-08,1.418230729972470558e-08,1.463980108358679296e-08,1.509729486744888035e-08,1.555478865131096773e-08,1.601228243517305512e-08,1.646977621903514250e-08,1.692727000289722988e-08,1.738476378675931727e-08,1.784225757062140465e-08,1.829975135448349203e-08,1.875724513834557942e-08,1.921473892220766680e-08,1.967223270606975418e-08,2.012972648993184157e-08,2.058722027379392895e-08,2.104471405765601633e-08,2.150220784151810372e-08,2.195970162538019110e-08,2.241719540924227848e-08,2.287468919310436587e-08,2.333218297696645325e-08,2.378967676082854064e-08,2.424717054469062802e-08,2.470466432855271540e-08,2.516215811241480279e-08,2.561965189627689017e-08,2.607714568013897755e-08,2.653463946400106494e-08,2.699213324786315232e-08,2.744962703172523970e-08,2.790712081558732709e-08,2.836461459944941447e-08,2.882210838331150185e-08 +0.000000000000000000e+00,5.502506296908829686e-10,1.100501259381765937e-09,1.650751889072648906e-09,2.201002518763531874e-09,2.751253148454414843e-09,3.301503778145297811e-09,3.851754407836181193e-09,4.402005037527064576e-09,4.952255667217947958e-09,5.502506296908831340e-09,6.052756926599714722e-09,6.603007556290598104e-09,7.153258185981481486e-09,7.703508815672365696e-09,8.253759445363249905e-09,8.804010075054134114e-09,9.354260704745018324e-09,9.904511334435902533e-09,1.045476196412678674e-08,1.100501259381767095e-08,1.155526322350855516e-08,1.210551385319943937e-08,1.265576448289032358e-08,1.320601511258120779e-08,1.375626574227209200e-08,1.430651637196297621e-08,1.485676700165386042e-08,1.540701763134474463e-08,1.595726826103563049e-08,1.650751889072651635e-08,1.705776952041740222e-08,1.760802015010828808e-08,1.815827077979917394e-08,1.870852140949005981e-08,1.925877203918094567e-08,1.980902266887183154e-08,2.035927329856271740e-08,2.090952392825360326e-08,2.145977455794448913e-08,2.201002518763537499e-08,2.256027581732626085e-08,2.311052644701714672e-08,2.366077707670803258e-08,2.421102770639891845e-08,2.476127833608980431e-08,2.531152896578069017e-08,2.586177959547157604e-08,2.641203022516246190e-08,2.696228085485334776e-08,2.751253148454423363e-08,2.806278211423511949e-08,2.861303274392600535e-08,2.916328337361689122e-08,2.971353400330777708e-08,3.026378463299866295e-08,3.081403526268954881e-08,3.136428589238043467e-08,3.191453652207132054e-08,3.246478715176220640e-08,3.301503778145309226e-08,3.356528841114397813e-08,3.411553904083486399e-08,3.466578967052574986e-08 +0.000000000000000000e+00,-5.038904740712773327e-10,-1.007780948142554665e-09,-1.511671422213831998e-09,-2.015561896285109331e-09,-2.519452370356386663e-09,-3.023342844427663996e-09,-3.527233318498941329e-09,-4.031123792570218661e-09,-4.535014266641495994e-09,-5.038904740712773327e-09,-5.542795214784050659e-09,-6.046685688855327992e-09,-6.550576162926605325e-09,-7.054466636997882657e-09,-7.558357111069159163e-09,-8.062247585140435668e-09,-8.566138059211712174e-09,-9.070028533282988679e-09,-9.573919007354265185e-09,-1.007780948142554169e-08,-1.058169995549681820e-08,-1.108559042956809470e-08,-1.158948090363937121e-08,-1.209337137771064771e-08,-1.259726185178192422e-08,-1.310115232585320072e-08,-1.360504279992447723e-08,-1.410893327399575373e-08,-1.461282374806703024e-08,-1.511671422213830509e-08,-1.562060469620957994e-08,-1.612449517028085479e-08,-1.662838564435212964e-08,-1.713227611842340450e-08,-1.763616659249467935e-08,-1.814005706656595420e-08,-1.864394754063722905e-08,-1.914783801470850390e-08,-1.965172848877977875e-08,-2.015561896285105360e-08,-2.065950943692232845e-08,-2.116339991099360330e-08,-2.166729038506487816e-08,-2.217118085913615301e-08,-2.267507133320742786e-08,-2.317896180727870271e-08,-2.368285228134997756e-08,-2.418674275542125241e-08,-2.469063322949252726e-08,-2.519452370356380211e-08,-2.569841417763507696e-08,-2.620230465170635182e-08,-2.670619512577762667e-08,-2.721008559984890152e-08,-2.771397607392017637e-08,-2.821786654799145122e-08,-2.872175702206272607e-08,-2.922564749613400092e-08,-2.972953797020527577e-08,-3.023342844427655062e-08,-3.073731891834782217e-08,-3.124120939241909371e-08,-3.174509986649036525e-08 +0.000000000000000000e+00,-4.574937838781584172e-10,-9.149875677563168343e-10,-1.372481351634475200e-09,-1.829975135512633462e-09,-2.287468919390791724e-09,-2.744962703268949986e-09,-3.202456487147108248e-09,-3.659950271025266510e-09,-4.117444054903424772e-09,-4.574937838781583448e-09,-5.032431622659742124e-09,-5.489925406537900799e-09,-5.947419190416059475e-09,-6.404912974294218150e-09,-6.862406758172376826e-09,-7.319900542050535502e-09,-7.777394325928693350e-09,-8.234888109806851199e-09,-8.692381893685009047e-09,-9.149875677563166896e-09,-9.607369461441324744e-09,-1.006486324531948259e-08,-1.052235702919764044e-08,-1.097985081307579829e-08,-1.143734459695395614e-08,-1.189483838083211399e-08,-1.235233216471027184e-08,-1.280982594858842968e-08,-1.326731973246658753e-08,-1.372481351634474538e-08,-1.418230730022290323e-08,-1.463980108410106108e-08,-1.509729486797921893e-08,-1.555478865185737677e-08,-1.601228243573553462e-08,-1.646977621961369247e-08,-1.692727000349185032e-08,-1.738476378737000817e-08,-1.784225757124816602e-08,-1.829975135512632387e-08,-1.875724513900448171e-08,-1.921473892288263956e-08,-1.967223270676079741e-08,-2.012972649063895526e-08,-2.058722027451711311e-08,-2.104471405839527096e-08,-2.150220784227342880e-08,-2.195970162615158665e-08,-2.241719541002974450e-08,-2.287468919390790235e-08,-2.333218297778606020e-08,-2.378967676166421805e-08,-2.424717054554237590e-08,-2.470466432942053374e-08,-2.516215811329869159e-08,-2.561965189717684944e-08,-2.607714568105500729e-08,-2.653463946493316514e-08,-2.699213324881132299e-08,-2.744962703268948083e-08,-2.790712081656763868e-08,-2.836461460044579653e-08,-2.882210838432395438e-08 +0.000000000000000000e+00,-5.502506296752492550e-10,-1.100501259350498510e-09,-1.650751889025747765e-09,-2.201002518700997020e-09,-2.751253148376246275e-09,-3.301503778051495530e-09,-3.851754407726745198e-09,-4.402005037401994867e-09,-4.952255667077244536e-09,-5.502506296752494204e-09,-6.052756926427743873e-09,-6.603007556102993541e-09,-7.153258185778243210e-09,-7.703508815453493706e-09,-8.253759445128744201e-09,-8.804010074803994697e-09,-9.354260704479245193e-09,-9.904511334154495689e-09,-1.045476196382974618e-08,-1.100501259350499668e-08,-1.155526322318024718e-08,-1.210551385285549767e-08,-1.265576448253074817e-08,-1.320601511220599866e-08,-1.375626574188124916e-08,-1.430651637155649965e-08,-1.485676700123175015e-08,-1.540701763090700065e-08,-1.595726826058224949e-08,-1.650751889025749833e-08,-1.705776951993274717e-08,-1.760802014960799601e-08,-1.815827077928324485e-08,-1.870852140895849369e-08,-1.925877203863374254e-08,-1.980902266830899138e-08,-2.035927329798424022e-08,-2.090952392765948906e-08,-2.145977455733473790e-08,-2.201002518700998674e-08,-2.256027581668523558e-08,-2.311052644636048443e-08,-2.366077707603573327e-08,-2.421102770571098211e-08,-2.476127833538623095e-08,-2.531152896506147979e-08,-2.586177959473672863e-08,-2.641203022441197747e-08,-2.696228085408722632e-08,-2.751253148376247516e-08,-2.806278211343772400e-08,-2.861303274311297284e-08,-2.916328337278822168e-08,-2.971353400246347052e-08,-3.026378463213871936e-08,-3.081403526181396820e-08,-3.136428589148921705e-08,-3.191453652116446589e-08,-3.246478715083971473e-08,-3.301503778051496357e-08,-3.356528841019021241e-08,-3.411553903986546125e-08,-3.466578966954071009e-08 +0.000000000000000000e+00,5.607325323169942997e-10,1.121465064633988599e-09,1.682197596950982796e-09,2.242930129267976785e-09,2.803662661584970775e-09,3.364395193901964764e-09,3.925127726218958340e-09,4.485860258535951916e-09,5.046592790852945492e-09,5.607325323169939068e-09,6.168057855486932644e-09,6.728790387803926220e-09,7.289522920120919796e-09,7.850255452437913372e-09,8.410987984754906948e-09,8.971720517071900524e-09,9.532453049388894100e-09,1.009318558170588768e-08,1.065391811402288125e-08,1.121465064633987483e-08,1.177538317865686840e-08,1.233611571097386198e-08,1.289684824329085556e-08,1.345758077560784913e-08,1.401831330792484271e-08,1.457904584024183628e-08,1.513977837255882986e-08,1.570051090487582344e-08,1.626124343719281701e-08,1.682197596950981059e-08,1.738270850182680416e-08,1.794344103414379774e-08,1.850417356646079132e-08,1.906490609877778489e-08,1.962563863109477847e-08,2.018637116341177204e-08,2.074710369572876562e-08,2.130783622804575920e-08,2.186856876036275277e-08,2.242930129267974635e-08,2.299003382499673992e-08,2.355076635731373350e-08,2.411149888963072707e-08,2.467223142194772065e-08,2.523296395426471423e-08,2.579369648658170780e-08,2.635442901889870138e-08,2.691516155121569495e-08,2.747589408353268853e-08,2.803662661584968211e-08,2.859735914816667568e-08,2.915809168048366926e-08,2.971882421280066283e-08,3.027955674511765972e-08,3.084028927743465660e-08,3.140102180975165349e-08,3.196175434206865037e-08,3.252248687438564726e-08,3.308321940670264414e-08,3.364395193901964103e-08,3.420468447133663791e-08,3.476541700365363480e-08,3.532614953597063168e-08 +0.000000000000000000e+00,5.319636737576103139e-10,1.063927347515220628e-09,1.595891021272830942e-09,2.127854695030441256e-09,2.659818368788051363e-09,3.191782042545661470e-09,3.723745716303271577e-09,4.255709390060881684e-09,4.787673063818491791e-09,5.319636737576101898e-09,5.851600411333712005e-09,6.383564085091322113e-09,6.915527758848932220e-09,7.447491432606542327e-09,7.979455106364151607e-09,8.511418780121761714e-09,9.043382453879371821e-09,9.575346127636981928e-09,1.010730980139459204e-08,1.063927347515220214e-08,1.117123714890981225e-08,1.170320082266742236e-08,1.223516449642503246e-08,1.276712817018264257e-08,1.329909184394025268e-08,1.383105551769786278e-08,1.436301919145547289e-08,1.489498286521308300e-08,1.542694653897069311e-08,1.595891021272830321e-08,1.649087388648591332e-08,1.702283756024352343e-08,1.755480123400113353e-08,1.808676490775874364e-08,1.861872858151635375e-08,1.915069225527396386e-08,1.968265592903157396e-08,2.021461960278918407e-08,2.074658327654679418e-08,2.127854695030440428e-08,2.181051062406201439e-08,2.234247429781962450e-08,2.287443797157723461e-08,2.340640164533484471e-08,2.393836531909245482e-08,2.447032899285006493e-08,2.500229266660767503e-08,2.553425634036528514e-08,2.606622001412289525e-08,2.659818368788050536e-08,2.713014736163811546e-08,2.766211103539572557e-08,2.819407470915333568e-08,2.872603838291094578e-08,2.925800205666855589e-08,2.978996573042616600e-08,3.032192940418377280e-08,3.085389307794137960e-08,3.138585675169898639e-08,3.191782042545659319e-08,3.244978409921419999e-08,3.298174777297180679e-08,3.351371144672941359e-08 +0.000000000000000000e+00,5.940329010474876154e-10,1.188065802094975231e-09,1.782098703142462743e-09,2.376131604189950048e-09,2.970164505237437353e-09,3.564197406284924658e-09,4.158230307332412377e-09,4.752263208379900096e-09,5.346296109427387814e-09,5.940329010474875533e-09,6.534361911522363252e-09,7.128394812569850971e-09,7.722427713617338689e-09,8.316460614664826408e-09,8.910493515712314127e-09,9.504526416759801846e-09,1.009855931780728956e-08,1.069259221885477728e-08,1.128662511990226500e-08,1.188065802094975272e-08,1.247469092199724044e-08,1.306872382304472816e-08,1.366275672409221588e-08,1.425678962513970360e-08,1.485082252618719131e-08,1.544485542723467738e-08,1.603888832828216344e-08,1.663292122932964951e-08,1.722695413037713557e-08,1.782098703142462164e-08,1.841501993247210770e-08,1.900905283351959377e-08,1.960308573456707983e-08,2.019711863561456589e-08,2.079115153666205196e-08,2.138518443770953802e-08,2.197921733875702409e-08,2.257325023980451015e-08,2.316728314085199622e-08,2.376131604189948228e-08,2.435534894294696834e-08,2.494938184399445441e-08,2.554341474504194047e-08,2.613744764608942654e-08,2.673148054713691260e-08,2.732551344818439867e-08,2.791954634923188473e-08,2.851357925027937080e-08,2.910761215132685686e-08,2.970164505237434292e-08,3.029567795342182899e-08,3.088971085446931505e-08,3.148374375551680112e-08,3.207777665656428718e-08,3.267180955761177325e-08,3.326584245865925931e-08,3.385987535970674537e-08,3.445390826075423144e-08,3.504794116180171750e-08,3.564197406284920357e-08,3.623600696389668963e-08,3.683003986494417570e-08,3.742407276599166176e-08 +0.000000000000000000e+00,-5.607325322911398391e-10,-1.121465064582279678e-09,-1.682197596873419517e-09,-2.242930129164559356e-09,-2.803662661455699402e-09,-3.364395193746839448e-09,-3.925127726037979494e-09,-4.485860258329119540e-09,-5.046592790620259586e-09,-5.607325322911399632e-09,-6.168057855202539678e-09,-6.728790387493679724e-09,-7.289522919784819770e-09,-7.850255452075958988e-09,-8.410987984367098207e-09,-8.971720516658237426e-09,-9.532453048949376645e-09,-1.009318558124051586e-08,-1.065391811353165508e-08,-1.121465064582279430e-08,-1.177538317811393352e-08,-1.233611571040507274e-08,-1.289684824269621196e-08,-1.345758077498735118e-08,-1.401831330727849039e-08,-1.457904583956962961e-08,-1.513977837186076883e-08,-1.570051090415190805e-08,-1.626124343644304727e-08,-1.682197596873418649e-08,-1.738270850102532571e-08,-1.794344103331646493e-08,-1.850417356560760414e-08,-1.906490609789874336e-08,-1.962563863018988258e-08,-2.018637116248102180e-08,-2.074710369477216102e-08,-2.130783622706330024e-08,-2.186856875935443946e-08,-2.242930129164557868e-08,-2.299003382393671789e-08,-2.355076635622785711e-08,-2.411149888851899633e-08,-2.467223142081013555e-08,-2.523296395310127477e-08,-2.579369648539241399e-08,-2.635442901768355321e-08,-2.691516154997469243e-08,-2.747589408226583164e-08,-2.803662661455697086e-08,-2.859735914684811008e-08,-2.915809167913924930e-08,-2.971882421143038852e-08,-3.027955674372152443e-08,-3.084028927601266034e-08,-3.140102180830379625e-08,-3.196175434059493216e-08,-3.252248687288606807e-08,-3.308321940517720398e-08,-3.364395193746833989e-08,-3.420468446975947580e-08,-3.476541700205061171e-08,-3.532614953434174762e-08 +0.000000000000000000e+00,-5.319636737454329745e-10,-1.063927347490865949e-09,-1.595891021236298924e-09,-2.127854694981731898e-09,-2.659818368727165079e-09,-3.191782042472598261e-09,-3.723745716218031442e-09,-4.255709389963464623e-09,-4.787673063708897805e-09,-5.319636737454330986e-09,-5.851600411199764167e-09,-6.383564084945197349e-09,-6.915527758690630530e-09,-7.447491432436063711e-09,-7.979455106181496893e-09,-8.511418779926930901e-09,-9.043382453672364910e-09,-9.575346127417798918e-09,-1.010730980116323293e-08,-1.063927347490866694e-08,-1.117123714865410094e-08,-1.170320082239953495e-08,-1.223516449614496896e-08,-1.276712816989040297e-08,-1.329909184363583698e-08,-1.383105551738127099e-08,-1.436301919112670499e-08,-1.489498286487213900e-08,-1.542694653861757301e-08,-1.595891021236300702e-08,-1.649087388610844103e-08,-1.702283755985387504e-08,-1.755480123359930905e-08,-1.808676490734474305e-08,-1.861872858109017706e-08,-1.915069225483561107e-08,-1.968265592858104508e-08,-2.021461960232647909e-08,-2.074658327607191310e-08,-2.127854694981734710e-08,-2.181051062356278111e-08,-2.234247429730821512e-08,-2.287443797105364913e-08,-2.340640164479908314e-08,-2.393836531854451715e-08,-2.447032899228995116e-08,-2.500229266603538516e-08,-2.553425633978081917e-08,-2.606622001352625318e-08,-2.659818368727168719e-08,-2.713014736101712120e-08,-2.766211103476255521e-08,-2.819407470850798922e-08,-2.872603838225342322e-08,-2.925800205599885723e-08,-2.978996572974429124e-08,-3.032192940348972194e-08,-3.085389307723515264e-08,-3.138585675098058334e-08,-3.191782042472601404e-08,-3.244978409847144474e-08,-3.298174777221687544e-08,-3.351371144596230614e-08 +0.000000000000000000e+00,-5.940329010042033218e-10,-1.188065802008406644e-09,-1.782098703012609862e-09,-2.376131604016812874e-09,-2.970164505021015885e-09,-3.564197406025218897e-09,-4.158230307029421909e-09,-4.752263208033624920e-09,-5.346296109037827932e-09,-5.940329010042030944e-09,-6.534361911046233955e-09,-7.128394812050436967e-09,-7.722427713054640806e-09,-8.316460614058845472e-09,-8.910493515063050138e-09,-9.504526416067254804e-09,-1.009855931707145947e-08,-1.069259221807566414e-08,-1.128662511907986880e-08,-1.188065802008407347e-08,-1.247469092108827813e-08,-1.306872382209248280e-08,-1.366275672309668747e-08,-1.425678962410089213e-08,-1.485082252510509680e-08,-1.544485542610930146e-08,-1.603888832711350613e-08,-1.663292122811771080e-08,-1.722695412912191546e-08,-1.782098703012612013e-08,-1.841501993113032479e-08,-1.900905283213452946e-08,-1.960308573313873413e-08,-2.019711863414293879e-08,-2.079115153514714346e-08,-2.138518443615134812e-08,-2.197921733715555279e-08,-2.257325023815975746e-08,-2.316728313916396212e-08,-2.376131604016816679e-08,-2.435534894117237145e-08,-2.494938184217657612e-08,-2.554341474318078079e-08,-2.613744764418498545e-08,-2.673148054518919012e-08,-2.732551344619339478e-08,-2.791954634719759945e-08,-2.851357924820180412e-08,-2.910761214920600878e-08,-2.970164505021021345e-08,-3.029567795121441481e-08,-3.088971085221861616e-08,-3.148374375322281752e-08,-3.207777665422701888e-08,-3.267180955523122023e-08,-3.326584245623542159e-08,-3.385987535723962295e-08,-3.445390825824382431e-08,-3.504794115924802566e-08,-3.564197406025222702e-08,-3.623600696125642838e-08,-3.683003986226062974e-08,-3.742407276326483109e-08 +0.000000000000000000e+00,5.998855294343632735e-10,1.199771058868726547e-09,1.799656588303089717e-09,2.399542117737452680e-09,2.999427647171815644e-09,3.599313176606178607e-09,4.199198706040541570e-09,4.799084235474904533e-09,5.398969764909267497e-09,5.998855294343630460e-09,6.598740823777993423e-09,7.198626353212356387e-09,7.798511882646719350e-09,8.398397412081083140e-09,8.998282941515446931e-09,9.598168470949810721e-09,1.019805400038417451e-08,1.079793952981853830e-08,1.139782505925290209e-08,1.199771058868726588e-08,1.259759611812162967e-08,1.319748164755599346e-08,1.379736717699035725e-08,1.439725270642472104e-08,1.499713823585908649e-08,1.559702376529345193e-08,1.619690929472781738e-08,1.679679482416218282e-08,1.739668035359654827e-08,1.799656588303091371e-08,1.859645141246527916e-08,1.919633694189964460e-08,1.979622247133401005e-08,2.039610800076837549e-08,2.099599353020274094e-08,2.159587905963710638e-08,2.219576458907147183e-08,2.279565011850583727e-08,2.339553564794020272e-08,2.399542117737456816e-08,2.459530670680893361e-08,2.519519223624329905e-08,2.579507776567766450e-08,2.639496329511202994e-08,2.699484882454639539e-08,2.759473435398076083e-08,2.819461988341512628e-08,2.879450541284949172e-08,2.939439094228385717e-08,2.999427647171822592e-08,3.059416200115259467e-08,3.119404753058696343e-08,3.179393306002133218e-08,3.239381858945570093e-08,3.299370411889006969e-08,3.359358964832443844e-08,3.419347517775880719e-08,3.479336070719317595e-08,3.539324623662754470e-08,3.599313176606191345e-08,3.659301729549628221e-08,3.719290282493065096e-08,3.779278835436501972e-08 +0.000000000000000000e+00,5.799948531251986538e-10,1.159989706250397308e-09,1.739984559375595961e-09,2.319979412500794615e-09,2.899974265625993062e-09,3.479969118751191509e-09,4.059963971876389956e-09,4.639958825001588403e-09,5.219953678126786850e-09,5.799948531251985297e-09,6.379943384377183744e-09,6.959938237502382191e-09,7.539933090627580638e-09,8.119927943752779913e-09,8.699922796877979187e-09,9.279917650003178461e-09,9.859912503128377735e-09,1.043990735625357701e-08,1.101990220937877628e-08,1.159989706250397556e-08,1.217989191562917483e-08,1.275988676875437411e-08,1.333988162187957338e-08,1.391987647500477265e-08,1.449987132812997193e-08,1.507986618125517120e-08,1.565986103438037048e-08,1.623985588750556975e-08,1.681985074063076903e-08,1.739984559375596830e-08,1.797984044688116757e-08,1.855983530000636685e-08,1.913983015313156612e-08,1.971982500625676540e-08,2.029981985938196467e-08,2.087981471250716394e-08,2.145980956563236322e-08,2.203980441875756249e-08,2.261979927188276177e-08,2.319979412500796104e-08,2.377978897813316032e-08,2.435978383125835959e-08,2.493977868438355886e-08,2.551977353750875814e-08,2.609976839063395741e-08,2.667976324375915669e-08,2.725975809688435596e-08,2.783975295000955524e-08,2.841974780313475451e-08,2.899974265625995378e-08,2.957973750938515306e-08,3.015973236251034902e-08,3.073972721563554168e-08,3.131972206876073434e-08,3.189971692188592699e-08,3.247971177501111965e-08,3.305970662813631231e-08,3.363970148126150496e-08,3.421969633438669762e-08,3.479969118751189028e-08,3.537968604063708293e-08,3.595968089376227559e-08,3.653967574688746825e-08 +0.000000000000000000e+00,6.258751185460727946e-10,1.251750237092145589e-09,1.877625355638218591e-09,2.503500474184291592e-09,3.129375592730364593e-09,3.755250711276437181e-09,4.381125829822509769e-09,5.007000948368582357e-09,5.632876066914654944e-09,6.258751185460727532e-09,6.884626304006800120e-09,7.510501422552872708e-09,8.136376541098945296e-09,8.762251659645017883e-09,9.388126778191090471e-09,1.001400189673716306e-08,1.063987701528323565e-08,1.126575213382930823e-08,1.189162725237538082e-08,1.251750237092145341e-08,1.314337748946752600e-08,1.376925260801359859e-08,1.439512772655967117e-08,1.502100284510574211e-08,1.564687796365181304e-08,1.627275308219788397e-08,1.689862820074395491e-08,1.752450331929002584e-08,1.815037843783609677e-08,1.877625355638216771e-08,1.940212867492823864e-08,2.002800379347430957e-08,2.065387891202038051e-08,2.127975403056645144e-08,2.190562914911252237e-08,2.253150426765859331e-08,2.315737938620466424e-08,2.378325450475073517e-08,2.440912962329680611e-08,2.503500474184287704e-08,2.566087986038894797e-08,2.628675497893501891e-08,2.691263009748108984e-08,2.753850521602716078e-08,2.816438033457323171e-08,2.879025545311930264e-08,2.941613057166537358e-08,3.004200569021144451e-08,3.066788080875751544e-08,3.129375592730358638e-08,3.191963104584965731e-08,3.254550616439572824e-08,3.317138128294179918e-08,3.379725640148787011e-08,3.442313152003394104e-08,3.504900663858001198e-08,3.567488175712608291e-08,3.630075687567215384e-08,3.692663199421822478e-08,3.755250711276429571e-08,3.817838223131036664e-08,3.880425734985643758e-08,3.943013246840250851e-08 +0.000000000000000000e+00,-5.998855293873534619e-10,-1.199771058774706924e-09,-1.799656588162060386e-09,-2.399542117549413848e-09,-2.999427646936767309e-09,-3.599313176324120771e-09,-4.199198705711474233e-09,-4.799084235098827695e-09,-5.398969764486181157e-09,-5.998855293873534619e-09,-6.598740823260888081e-09,-7.198626352648241543e-09,-7.798511882035595005e-09,-8.398397411422948466e-09,-8.998282940810301928e-09,-9.598168470197655390e-09,-1.019805399958500885e-08,-1.079793952897236231e-08,-1.139782505835971578e-08,-1.199771058774706924e-08,-1.259759611713442270e-08,-1.319748164652177616e-08,-1.379736717590912962e-08,-1.439725270529648309e-08,-1.499713823468383489e-08,-1.559702376407118670e-08,-1.619690929345853851e-08,-1.679679482284589032e-08,-1.739668035223324212e-08,-1.799656588162059393e-08,-1.859645141100794574e-08,-1.919633694039529755e-08,-1.979622246978264935e-08,-2.039610799917000116e-08,-2.099599352855735297e-08,-2.159587905794470478e-08,-2.219576458733205658e-08,-2.279565011671940839e-08,-2.339553564610676020e-08,-2.399542117549411201e-08,-2.459530670488146381e-08,-2.519519223426881562e-08,-2.579507776365616743e-08,-2.639496329304351924e-08,-2.699484882243087104e-08,-2.759473435181822285e-08,-2.819461988120557466e-08,-2.879450541059292647e-08,-2.939439093998027827e-08,-2.999427646936763008e-08,-3.059416199875498189e-08,-3.119404752814233370e-08,-3.179393305752968550e-08,-3.239381858691703731e-08,-3.299370411630438912e-08,-3.359358964569174093e-08,-3.419347517507909273e-08,-3.479336070446644454e-08,-3.539324623385379635e-08,-3.599313176324114816e-08,-3.659301729262849996e-08,-3.719290282201585177e-08,-3.779278835140320358e-08 +0.000000000000000000e+00,-5.799948530877546690e-10,-1.159989706175509338e-09,-1.739984559263264007e-09,-2.319979412351018676e-09,-2.899974265438773138e-09,-3.479969118526527601e-09,-4.059963971614282063e-09,-4.639958824702036525e-09,-5.219953677789790987e-09,-5.799948530877545449e-09,-6.379943383965299912e-09,-6.959938237053054374e-09,-7.539933090140808009e-09,-8.119927943228562471e-09,-8.699922796316316933e-09,-9.279917649404071396e-09,-9.859912502491825858e-09,-1.043990735557958032e-08,-1.101990220866733478e-08,-1.159989706175508924e-08,-1.217989191484284371e-08,-1.275988676793059817e-08,-1.333988162101835263e-08,-1.391987647410610709e-08,-1.449987132719386156e-08,-1.507986618028161602e-08,-1.565986103336937048e-08,-1.623985588645712494e-08,-1.681985073954487940e-08,-1.739984559263263387e-08,-1.797984044572038833e-08,-1.855983529880814279e-08,-1.913983015189589725e-08,-1.971982500498365172e-08,-2.029981985807140618e-08,-2.087981471115916064e-08,-2.145980956424691510e-08,-2.203980441733466956e-08,-2.261979927042242403e-08,-2.319979412351017849e-08,-2.377978897659793295e-08,-2.435978382968568741e-08,-2.493977868277344188e-08,-2.551977353586119634e-08,-2.609976838894895080e-08,-2.667976324203670526e-08,-2.725975809512445972e-08,-2.783975294821221419e-08,-2.841974780129996865e-08,-2.899974265438772311e-08,-2.957973750747547757e-08,-3.015973236056323204e-08,-3.073972721365098319e-08,-3.131972206673873434e-08,-3.189971691982648550e-08,-3.247971177291423665e-08,-3.305970662600198780e-08,-3.363970147908973896e-08,-3.421969633217749011e-08,-3.479969118526524126e-08,-3.537968603835299242e-08,-3.595968089144074357e-08,-3.653967574452849472e-08 +0.000000000000000000e+00,-6.258751184841693893e-10,-1.251750236968338779e-09,-1.877625355452508271e-09,-2.503500473936677971e-09,-3.129375592420847670e-09,-3.755250710905017370e-09,-4.381125829389187069e-09,-5.007000947873356769e-09,-5.632876066357526468e-09,-6.258751184841696167e-09,-6.884626303325865867e-09,-7.510501421810036394e-09,-8.136376540294207747e-09,-8.762251658778379101e-09,-9.388126777262550455e-09,-1.001400189574672181e-08,-1.063987701423089316e-08,-1.126575213271506452e-08,-1.189162725119923587e-08,-1.251750236968340722e-08,-1.314337748816757858e-08,-1.376925260665174993e-08,-1.439512772513592129e-08,-1.502100284362009264e-08,-1.564687796210426399e-08,-1.627275308058843535e-08,-1.689862819907260670e-08,-1.752450331755677805e-08,-1.815037843604094941e-08,-1.877625355452512076e-08,-1.940212867300929212e-08,-2.002800379149346347e-08,-2.065387890997763482e-08,-2.127975402846180618e-08,-2.190562914694597753e-08,-2.253150426543014889e-08,-2.315737938391432024e-08,-2.378325450239849159e-08,-2.440912962088266295e-08,-2.503500473936683430e-08,-2.566087985785100565e-08,-2.628675497633517701e-08,-2.691263009481934836e-08,-2.753850521330351972e-08,-2.816438033178769107e-08,-2.879025545027186242e-08,-2.941613056875603378e-08,-3.004200568724020513e-08,-3.066788080572437648e-08,-3.129375592420854784e-08,-3.191963104269271919e-08,-3.254550616117689055e-08,-3.317138127966106190e-08,-3.379725639814523325e-08,-3.442313151662940461e-08,-3.504900663511357596e-08,-3.567488175359774732e-08,-3.630075687208191867e-08,-3.692663199056609002e-08,-3.755250710905026138e-08,-3.817838222753443273e-08,-3.880425734601860408e-08,-3.943013246450277544e-08 +0.000000000000000000e+00,6.305843340478431342e-10,1.261168668095686268e-09,1.891753002143529299e-09,2.522337336191372123e-09,3.152921670239214947e-09,3.783506004287057771e-09,4.414090338334901009e-09,5.044674672382744246e-09,5.675259006430587484e-09,6.305843340478430721e-09,6.936427674526273959e-09,7.567012008574117197e-09,8.197596342621960434e-09,8.828180676669803672e-09,9.458765010717646909e-09,1.008934934476549015e-08,1.071993367881333338e-08,1.135051801286117662e-08,1.198110234690901986e-08,1.261168668095686310e-08,1.324227101500470633e-08,1.387285534905254957e-08,1.450343968310039281e-08,1.513402401714823770e-08,1.576460835119608259e-08,1.639519268524392749e-08,1.702577701929177238e-08,1.765636135333961727e-08,1.828694568738746216e-08,1.891753002143530705e-08,1.954811435548315195e-08,2.017869868953099684e-08,2.080928302357884173e-08,2.143986735762668662e-08,2.207045169167453151e-08,2.270103602572237641e-08,2.333162035977022130e-08,2.396220469381806619e-08,2.459278902786591108e-08,2.522337336191375597e-08,2.585395769596160087e-08,2.648454203000944576e-08,2.711512636405729065e-08,2.774571069810513554e-08,2.837629503215298043e-08,2.900687936620082532e-08,2.963746370024867022e-08,3.026804803429651511e-08,3.089863236834436000e-08,3.152921670239220489e-08,3.215980103644004978e-08,3.279038537048789468e-08,3.342096970453573957e-08,3.405155403858358446e-08,3.468213837263142935e-08,3.531272270667927424e-08,3.594330704072711914e-08,3.657389137477496403e-08,3.720447570882280892e-08,3.783506004287065381e-08,3.846564437691849870e-08,3.909622871096634360e-08,3.972681304501418849e-08 +0.000000000000000000e+00,6.150123449747378337e-10,1.230024689949475667e-09,1.845037034924213501e-09,2.460049379898951335e-09,3.075061724873689169e-09,3.690074069848427002e-09,4.305086414823164836e-09,4.920098759797902670e-09,5.535111104772640504e-09,6.150123449747378337e-09,6.765135794722116171e-09,7.380148139696854005e-09,7.995160484671591839e-09,8.610172829646329672e-09,9.225185174621067506e-09,9.840197519595805340e-09,1.045520986457054317e-08,1.107022220954528101e-08,1.168523455452001884e-08,1.230024689949475667e-08,1.291525924446949451e-08,1.353027158944423234e-08,1.414528393441897018e-08,1.476029627939370801e-08,1.537530862436844584e-08,1.599032096934318368e-08,1.660533331431792151e-08,1.722034565929265934e-08,1.783535800426739718e-08,1.845037034924213501e-08,1.906538269421687285e-08,1.968039503919161068e-08,2.029540738416634851e-08,2.091041972914108635e-08,2.152543207411582418e-08,2.214044441909056201e-08,2.275545676406529985e-08,2.337046910904003768e-08,2.398548145401477552e-08,2.460049379898951335e-08,2.521550614396425118e-08,2.583051848893898902e-08,2.644553083391372685e-08,2.706054317888846468e-08,2.767555552386320252e-08,2.829056786883794035e-08,2.890558021381267819e-08,2.952059255878741602e-08,3.013560490376215054e-08,3.075061724873688507e-08,3.136562959371161959e-08,3.198064193868635412e-08,3.259565428366108865e-08,3.321066662863582317e-08,3.382567897361055770e-08,3.444069131858529222e-08,3.505570366356002675e-08,3.567071600853476127e-08,3.628572835350949580e-08,3.690074069848423032e-08,3.751575304345896485e-08,3.813076538843369937e-08,3.874577773340843390e-08 +0.000000000000000000e+00,6.521492982801155767e-10,1.304298596560231153e-09,1.956447894840346730e-09,2.608597193120462307e-09,3.260746491400577884e-09,3.912895789680693460e-09,4.565045087960809037e-09,5.217194386240924614e-09,5.869343684521040191e-09,6.521492982801155767e-09,7.173642281081271344e-09,7.825791579361386921e-09,8.477940877641502497e-09,9.130090175921618074e-09,9.782239474201733651e-09,1.043438877248184923e-08,1.108653807076196480e-08,1.173868736904208038e-08,1.239083666732219596e-08,1.304298596560231153e-08,1.369513526388242711e-08,1.434728456216254269e-08,1.499943386044265992e-08,1.565158315872277715e-08,1.630373245700289438e-08,1.695588175528301161e-08,1.760803105356312884e-08,1.826018035184324607e-08,1.891232965012336331e-08,1.956447894840348054e-08,2.021662824668359777e-08,2.086877754496371500e-08,2.152092684324383223e-08,2.217307614152394946e-08,2.282522543980406669e-08,2.347737473808418392e-08,2.412952403636430115e-08,2.478167333464441839e-08,2.543382263292453562e-08,2.608597193120465285e-08,2.673812122948477008e-08,2.739027052776488731e-08,2.804241982604500454e-08,2.869456912432512177e-08,2.934671842260523900e-08,2.999886772088535954e-08,3.065101701916548008e-08,3.130316631744560062e-08,3.195531561572572116e-08,3.260746491400584170e-08,3.325961421228596224e-08,3.391176351056608278e-08,3.456391280884620332e-08,3.521606210712632386e-08,3.586821140540644440e-08,3.652036070368656494e-08,3.717251000196668548e-08,3.782465930024680602e-08,3.847680859852692656e-08,3.912895789680704710e-08,3.978110719508716764e-08,4.043325649336728818e-08,4.108540579164740872e-08 +0.000000000000000000e+00,-6.305843339883411376e-10,-1.261168667976682275e-09,-1.891753001965023309e-09,-2.522337335953364137e-09,-3.152921669941704964e-09,-3.783506003930045792e-09,-4.414090337918386619e-09,-5.044674671906727446e-09,-5.675259005895068274e-09,-6.305843339883409101e-09,-6.936427673871749929e-09,-7.567012007860089929e-09,-8.197596341848430756e-09,-8.828180675836771584e-09,-9.458765009825112411e-09,-1.008934934381345324e-08,-1.071993367780179407e-08,-1.135051801179013489e-08,-1.198110234577847572e-08,-1.261168667976681655e-08,-1.324227101375515738e-08,-1.387285534774349820e-08,-1.450343968173183903e-08,-1.513402401572017986e-08,-1.576460834970852069e-08,-1.639519268369686151e-08,-1.702577701768520234e-08,-1.765636135167354317e-08,-1.828694568566188399e-08,-1.891753001965022482e-08,-1.954811435363856565e-08,-2.017869868762690648e-08,-2.080928302161524730e-08,-2.143986735560358813e-08,-2.207045168959192896e-08,-2.270103602358026979e-08,-2.333162035756861061e-08,-2.396220469155695144e-08,-2.459278902554529227e-08,-2.522337335953363310e-08,-2.585395769352197392e-08,-2.648454202751031475e-08,-2.711512636149865558e-08,-2.774571069548699641e-08,-2.837629502947533723e-08,-2.900687936346367806e-08,-2.963746369745201889e-08,-3.026804803144035972e-08,-3.089863236542870054e-08,-3.152921669941704137e-08,-3.215980103340538220e-08,-3.279038536739372302e-08,-3.342096970138206385e-08,-3.405155403537040468e-08,-3.468213836935874551e-08,-3.531272270334708633e-08,-3.594330703733542716e-08,-3.657389137132376799e-08,-3.720447570531210882e-08,-3.783506003930044964e-08,-3.846564437328879047e-08,-3.909622870727713130e-08,-3.972681304126547213e-08 +0.000000000000000000e+00,-6.150123449201533225e-10,-1.230024689840306645e-09,-1.845037034760459864e-09,-2.460049379680612876e-09,-3.075061724600765889e-09,-3.690074069520918901e-09,-4.305086414441071913e-09,-4.920098759361224926e-09,-5.535111104281377938e-09,-6.150123449201530950e-09,-6.765135794121683963e-09,-7.380148139041836975e-09,-7.995160483961989987e-09,-8.610172828882143827e-09,-9.225185173802297666e-09,-9.840197518722451506e-09,-1.045520986364260535e-08,-1.107022220856275918e-08,-1.168523455348291302e-08,-1.230024689840306686e-08,-1.291525924332322070e-08,-1.353027158824337454e-08,-1.414528393316352838e-08,-1.476029627808368222e-08,-1.537530862300383606e-08,-1.599032096792398990e-08,-1.660533331284414374e-08,-1.722034565776429758e-08,-1.783535800268445142e-08,-1.845037034760460526e-08,-1.906538269252475910e-08,-1.968039503744491294e-08,-2.029540738236506678e-08,-2.091041972728522062e-08,-2.152543207220537446e-08,-2.214044441712552830e-08,-2.275545676204568213e-08,-2.337046910696583597e-08,-2.398548145188598981e-08,-2.460049379680614365e-08,-2.521550614172629749e-08,-2.583051848664645133e-08,-2.644553083156660517e-08,-2.706054317648675901e-08,-2.767555552140691285e-08,-2.829056786632706669e-08,-2.890558021124722053e-08,-2.952059255616737437e-08,-3.013560490108752490e-08,-3.075061724600767874e-08,-3.136562959092783258e-08,-3.198064193584798642e-08,-3.259565428076814026e-08,-3.321066662568829410e-08,-3.382567897060844794e-08,-3.444069131552860178e-08,-3.505570366044875562e-08,-3.567071600536890946e-08,-3.628572835028906329e-08,-3.690074069520921713e-08,-3.751575304012937097e-08,-3.813076538504952481e-08,-3.874577772996967865e-08 +0.000000000000000000e+00,-6.521492982103993471e-10,-1.304298596420798694e-09,-1.956447894631198248e-09,-2.608597192841597802e-09,-3.260746491051997356e-09,-3.912895789262396496e-09,-4.565045087472795637e-09,-5.217194385683194777e-09,-5.869343683893593917e-09,-6.521492982103993058e-09,-7.173642280314392198e-09,-7.825791578524791338e-09,-8.477940876735190479e-09,-9.130090174945589619e-09,-9.782239473155988760e-09,-1.043438877136638790e-08,-1.108653806957678704e-08,-1.173868736778718618e-08,-1.239083666599758532e-08,-1.304298596420798446e-08,-1.369513526241838360e-08,-1.434728456062878274e-08,-1.499943385883918023e-08,-1.565158315704957937e-08,-1.630373245525997851e-08,-1.695588175347037765e-08,-1.760803105168077679e-08,-1.826018034989117593e-08,-1.891232964810157507e-08,-1.956447894631197421e-08,-2.021662824452237335e-08,-2.086877754273277249e-08,-2.152092684094317163e-08,-2.217307613915357077e-08,-2.282522543736396991e-08,-2.347737473557436905e-08,-2.412952403378476819e-08,-2.478167333199516733e-08,-2.543382263020556647e-08,-2.608597192841596561e-08,-2.673812122662636475e-08,-2.739027052483676389e-08,-2.804241982304716303e-08,-2.869456912125756218e-08,-2.934671841946796132e-08,-2.999886771767836046e-08,-3.065101701588875960e-08,-3.130316631409915874e-08,-3.195531561230955788e-08,-3.260746491051995702e-08,-3.325961420873035616e-08,-3.391176350694075530e-08,-3.456391280515115444e-08,-3.521606210336155358e-08,-3.586821140157195272e-08,-3.652036069978235186e-08,-3.717250999799275100e-08,-3.782465929620315014e-08,-3.847680859441354928e-08,-3.912895789262394842e-08,-3.978110719083434756e-08,-4.043325648904474670e-08,-4.108540578725514584e-08 +0.000000000000000000e+00,6.568338977365205470e-10,1.313667795473041094e-09,1.970501693209561744e-09,2.627335590946082602e-09,3.284169488682603459e-09,3.941003386419124316e-09,4.597837284155645173e-09,5.254671181892166031e-09,5.911505079628686888e-09,6.568338977365207745e-09,7.225172875101728602e-09,7.882006772838250287e-09,8.538840670574771971e-09,9.195674568311293655e-09,9.852508466047815340e-09,1.050934236378433702e-08,1.116617626152085871e-08,1.182301015925738039e-08,1.247984405699390208e-08,1.313667795473042376e-08,1.379351185246694545e-08,1.445034575020346713e-08,1.510717964793998881e-08,1.576401354567651050e-08,1.642084744341303218e-08,1.707768134114955387e-08,1.773451523888607555e-08,1.839134913662259724e-08,1.904818303435911892e-08,1.970501693209564061e-08,2.036185082983216229e-08,2.101868472756868397e-08,2.167551862530520566e-08,2.233235252304172734e-08,2.298918642077824903e-08,2.364602031851477071e-08,2.430285421625129240e-08,2.495968811398781408e-08,2.561652201172433577e-08,2.627335590946085745e-08,2.693018980719737913e-08,2.758702370493390082e-08,2.824385760267042250e-08,2.890069150040694419e-08,2.955752539814346587e-08,3.021435929587999086e-08,3.087119319361651586e-08,3.152802709135304085e-08,3.218486098908956584e-08,3.284169488682609084e-08,3.349852878456261583e-08,3.415536268229914082e-08,3.481219658003566582e-08,3.546903047777219081e-08,3.612586437550871580e-08,3.678269827324524080e-08,3.743953217098176579e-08,3.809636606871829078e-08,3.875319996645481578e-08,3.941003386419134077e-08,4.006686776192786576e-08,4.072370165966439075e-08,4.138053555740091575e-08 +0.000000000000000000e+00,6.435975191770876869e-10,1.287195038354175374e-09,1.930792557531262854e-09,2.574390076708350334e-09,3.217987595885437814e-09,3.861585115062525708e-09,4.505182634239613602e-09,5.148780153416701495e-09,5.792377672593789389e-09,6.435975191770877283e-09,7.079572710947965177e-09,7.723170230125053070e-09,8.366767749302140137e-09,9.010365268479227203e-09,9.653962787656314270e-09,1.029756030683340134e-08,1.094115782601048840e-08,1.158475534518757547e-08,1.222835286436466254e-08,1.287195038354174960e-08,1.351554790271883667e-08,1.415914542189592374e-08,1.480274294107301080e-08,1.544634046025009621e-08,1.608993797942718163e-08,1.673353549860426704e-08,1.737713301778135245e-08,1.802073053695843786e-08,1.866432805613552328e-08,1.930792557531260869e-08,1.995152309448969410e-08,2.059512061366677951e-08,2.123871813284386492e-08,2.188231565202095034e-08,2.252591317119803575e-08,2.316951069037512116e-08,2.381310820955220657e-08,2.445670572872929198e-08,2.510030324790637740e-08,2.574390076708346281e-08,2.638749828626054822e-08,2.703109580543763363e-08,2.767469332461471905e-08,2.831829084379180446e-08,2.896188836296888987e-08,2.960548588214597528e-08,3.024908340132306400e-08,3.089268092050015272e-08,3.153627843967724144e-08,3.217987595885433017e-08,3.282347347803141889e-08,3.346707099720850761e-08,3.411066851638559633e-08,3.475426603556268505e-08,3.539786355473977377e-08,3.604146107391686249e-08,3.668505859309395121e-08,3.732865611227103993e-08,3.797225363144812865e-08,3.861585115062521737e-08,3.925944866980230610e-08,3.990304618897939482e-08,4.054664370815648354e-08 +0.000000000000000000e+00,6.764254420985969849e-10,1.352850884197193970e-09,2.029276326295791162e-09,2.705701768394388353e-09,3.382127210492985545e-09,4.058552652591582323e-09,4.734978094690179101e-09,5.411403536788775880e-09,6.087828978887372658e-09,6.764254420985969436e-09,7.440679863084566214e-09,8.117105305183162992e-09,8.793530747281759770e-09,9.469956189380356548e-09,1.014638163147895333e-08,1.082280707357755010e-08,1.149923251567614688e-08,1.217565795777474366e-08,1.285208339987334044e-08,1.352850884197193722e-08,1.420493428407053400e-08,1.488135972616913077e-08,1.555778516826772755e-08,1.623421061036632268e-08,1.691063605246491780e-08,1.758706149456351292e-08,1.826348693666210805e-08,1.893991237876070317e-08,1.961633782085929829e-08,2.029276326295789342e-08,2.096918870505648854e-08,2.164561414715508367e-08,2.232203958925367879e-08,2.299846503135227391e-08,2.367489047345086904e-08,2.435131591554946416e-08,2.502774135764805928e-08,2.570416679974665441e-08,2.638059224184524953e-08,2.705701768394384466e-08,2.773344312604243978e-08,2.840986856814103490e-08,2.908629401023963003e-08,2.976271945233822515e-08,3.043914489443682028e-08,3.111557033653541540e-08,3.179199577863401052e-08,3.246842122073260565e-08,3.314484666283120077e-08,3.382127210492979589e-08,3.449769754702839102e-08,3.517412298912698614e-08,3.585054843122558127e-08,3.652697387332417639e-08,3.720339931542277151e-08,3.787982475752136664e-08,3.855625019961996176e-08,3.923267564171855688e-08,3.990910108381715201e-08,4.058552652591574713e-08,4.126195196801434226e-08,4.193837741011293738e-08,4.261480285221153250e-08 +0.000000000000000000e+00,-6.568338976767413415e-10,-1.313667795353482683e-09,-1.970501693030224025e-09,-2.627335590706965366e-09,-3.284169488383706708e-09,-3.941003386060448049e-09,-4.597837283737189391e-09,-5.254671181413930732e-09,-5.911505079090672074e-09,-6.568338976767413415e-09,-7.225172874444154757e-09,-7.882006772120896098e-09,-8.538840669797637440e-09,-9.195674567474378781e-09,-9.852508465151120123e-09,-1.050934236282786146e-08,-1.116617626050460281e-08,-1.182301015818134415e-08,-1.247984405585808549e-08,-1.313667795353482683e-08,-1.379351185121156817e-08,-1.445034574888830951e-08,-1.510717964656504920e-08,-1.576401354424178889e-08,-1.642084744191852857e-08,-1.707768133959526826e-08,-1.773451523727200795e-08,-1.839134913494874764e-08,-1.904818303262548732e-08,-1.970501693030222701e-08,-2.036185082797896670e-08,-2.101868472565570639e-08,-2.167551862333244607e-08,-2.233235252100918576e-08,-2.298918641868592545e-08,-2.364602031636266513e-08,-2.430285421403940482e-08,-2.495968811171614451e-08,-2.561652200939288420e-08,-2.627335590706962388e-08,-2.693018980474636357e-08,-2.758702370242310326e-08,-2.824385760009984294e-08,-2.890069149777658263e-08,-2.955752539545332232e-08,-3.021435929313005870e-08,-3.087119319080679508e-08,-3.152802708848353145e-08,-3.218486098616026783e-08,-3.284169488383700421e-08,-3.349852878151374059e-08,-3.415536267919047697e-08,-3.481219657686721335e-08,-3.546903047454394972e-08,-3.612586437222068610e-08,-3.678269826989742248e-08,-3.743953216757415886e-08,-3.809636606525089524e-08,-3.875319996292763162e-08,-3.941003386060436799e-08,-4.006686775828110437e-08,-4.072370165595784075e-08,-4.138053555363457713e-08 +0.000000000000000000e+00,-6.435975191159726881e-10,-1.287195038231945376e-09,-1.930792557347918271e-09,-2.574390076463891166e-09,-3.217987595579864061e-09,-3.861585114695836542e-09,-4.505182633811809024e-09,-5.148780152927781505e-09,-5.792377672043753986e-09,-6.435975191159726468e-09,-7.079572710275698949e-09,-7.723170229391671430e-09,-8.366767748507643085e-09,-9.010365267623614739e-09,-9.653962786739586393e-09,-1.029756030585555805e-08,-1.094115782497152970e-08,-1.158475534408750136e-08,-1.222835286320347301e-08,-1.287195038231944466e-08,-1.351554790143541632e-08,-1.415914542055138797e-08,-1.480274293966735963e-08,-1.544634045878333293e-08,-1.608993797789930624e-08,-1.673353549701527955e-08,-1.737713301613125286e-08,-1.802073053524722617e-08,-1.866432805436319948e-08,-1.930792557347917279e-08,-1.995152309259514609e-08,-2.059512061171111940e-08,-2.123871813082709271e-08,-2.188231564994306602e-08,-2.252591316905903933e-08,-2.316951068817501264e-08,-2.381310820729098595e-08,-2.445670572640695925e-08,-2.510030324552293256e-08,-2.574390076463890587e-08,-2.638749828375487918e-08,-2.703109580287085249e-08,-2.767469332198682580e-08,-2.831829084110279911e-08,-2.896188836021877241e-08,-2.960548587933474572e-08,-3.024908339845072234e-08,-3.089268091756669896e-08,-3.153627843668267557e-08,-3.217987595579865219e-08,-3.282347347491462881e-08,-3.346707099403060543e-08,-3.411066851314658204e-08,-3.475426603226255866e-08,-3.539786355137853528e-08,-3.604146107049451189e-08,-3.668505858961048851e-08,-3.732865610872646513e-08,-3.797225362784244175e-08,-3.861585114695841836e-08,-3.925944866607439498e-08,-3.990304618519037160e-08,-4.054664370430634822e-08 +0.000000000000000000e+00,-6.764254420339830122e-10,-1.352850884067966024e-09,-2.029276326101948830e-09,-2.705701768135931635e-09,-3.382127210169914440e-09,-4.058552652203897659e-09,-4.734978094237880878e-09,-5.411403536271864097e-09,-6.087828978305847316e-09,-6.764254420339830535e-09,-7.440679862373813754e-09,-8.117105304407796973e-09,-8.793530746441781019e-09,-9.469956188475765065e-09,-1.014638163050974911e-08,-1.082280707254373316e-08,-1.149923251457771720e-08,-1.217565795661170125e-08,-1.285208339864568530e-08,-1.352850884067966934e-08,-1.420493428271365339e-08,-1.488135972474763743e-08,-1.555778516678162148e-08,-1.623421060881560387e-08,-1.691063605084958626e-08,-1.758706149288356866e-08,-1.826348693491755105e-08,-1.893991237695153344e-08,-1.961633781898551583e-08,-2.029276326101949822e-08,-2.096918870305348061e-08,-2.164561414508746301e-08,-2.232203958712144540e-08,-2.299846502915542779e-08,-2.367489047118941018e-08,-2.435131591322339257e-08,-2.502774135525737497e-08,-2.570416679729135736e-08,-2.638059223932533975e-08,-2.705701768135932214e-08,-2.773344312339330453e-08,-2.840986856542728692e-08,-2.908629400746126932e-08,-2.976271944949525171e-08,-3.043914489152923410e-08,-3.111557033356321649e-08,-3.179199577559719888e-08,-3.246842121763118128e-08,-3.314484665966516367e-08,-3.382127210169914606e-08,-3.449769754373312845e-08,-3.517412298576711084e-08,-3.585054842780109323e-08,-3.652697386983507563e-08,-3.720339931186905802e-08,-3.787982475390304041e-08,-3.855625019593702280e-08,-3.923267563797100519e-08,-3.990910108000498758e-08,-4.058552652203896998e-08,-4.126195196407295237e-08,-4.193837740610693476e-08,-4.261480284814091715e-08 +0.000000000000000000e+00,6.830910881424688046e-10,1.366182176284937609e-09,2.049273264427406414e-09,2.732364352569875218e-09,3.415455440712344023e-09,4.098546528854812827e-09,4.781637616997281632e-09,5.464728705139750437e-09,6.147819793282219241e-09,6.830910881424688046e-09,7.514001969567156023e-09,8.197093057709624000e-09,8.880184145852091978e-09,9.563275233994559955e-09,1.024636632213702793e-08,1.092945741027949591e-08,1.161254849842196389e-08,1.229563958656443186e-08,1.297873067470689984e-08,1.366182176284936782e-08,1.434491285099183580e-08,1.502800393913430543e-08,1.571109502727677506e-08,1.639418611541924469e-08,1.707727720356171432e-08,1.776036829170418396e-08,1.844345937984665359e-08,1.912655046798912322e-08,1.980964155613159285e-08,2.049273264427406248e-08,2.117582373241653211e-08,2.185891482055900175e-08,2.254200590870147138e-08,2.322509699684394101e-08,2.390818808498641064e-08,2.459127917312888027e-08,2.527437026127134990e-08,2.595746134941381954e-08,2.664055243755628917e-08,2.732364352569875880e-08,2.800673461384122843e-08,2.868982570198369806e-08,2.937291679012616770e-08,3.005600787826863733e-08,3.073909896641110365e-08,3.142219005455356997e-08,3.210528114269603630e-08,3.278837223083850262e-08,3.347146331898096894e-08,3.415455440712343527e-08,3.483764549526590159e-08,3.552073658340836791e-08,3.620382767155083423e-08,3.688691875969330056e-08,3.757000984783576688e-08,3.825310093597823320e-08,3.893619202412069953e-08,3.961928311226316585e-08,4.030237420040563217e-08,4.098546528854809850e-08,4.166855637669056482e-08,4.235164746483303114e-08,4.303473855297549746e-08 +0.000000000000000000e+00,6.701062007149277609e-10,1.340212401429855522e-09,2.010318602144783490e-09,2.680424802859711457e-09,3.350531003574639425e-09,4.020637204289566979e-09,4.690743405004494533e-09,5.360849605719422087e-09,6.030955806434349641e-09,6.701062007149277196e-09,7.371168207864204750e-09,8.041274408579132304e-09,8.711380609294059031e-09,9.381486810008985758e-09,1.005159301072391248e-08,1.072169921143883921e-08,1.139180541215376594e-08,1.206191161286869267e-08,1.273201781358361939e-08,1.340212401429854612e-08,1.407223021501347285e-08,1.474233641572839957e-08,1.541244261644332630e-08,1.608254881715825468e-08,1.675265501787318306e-08,1.742276121858811144e-08,1.809286741930303983e-08,1.876297362001796821e-08,1.943307982073289659e-08,2.010318602144782497e-08,2.077329222216275335e-08,2.144339842287768173e-08,2.211350462359261011e-08,2.278361082430753849e-08,2.345371702502246688e-08,2.412382322573739526e-08,2.479392942645232364e-08,2.546403562716725202e-08,2.613414182788218040e-08,2.680424802859710878e-08,2.747435422931203716e-08,2.814446043002696554e-08,2.881456663074189393e-08,2.948467283145682231e-08,3.015477903217175400e-08,3.082488523288668569e-08,3.149499143360161738e-08,3.216509763431654907e-08,3.283520383503148076e-08,3.350531003574641245e-08,3.417541623646134414e-08,3.484552243717627583e-08,3.551562863789120752e-08,3.618573483860613921e-08,3.685584103932107090e-08,3.752594724003600259e-08,3.819605344075093428e-08,3.886615964146586597e-08,3.953626584218079766e-08,4.020637204289572935e-08,4.087647824361066104e-08,4.154658444432559273e-08,4.221669064504052442e-08 +0.000000000000000000e+00,6.989956050662098426e-10,1.397991210132419685e-09,2.096986815198629424e-09,2.795982420264838957e-09,3.494978025331048489e-09,4.193973630397258021e-09,4.892969235463467554e-09,5.591964840529677086e-09,6.290960445595886618e-09,6.989956050662096151e-09,7.688951655728305683e-09,8.387947260794514388e-09,9.086942865860723094e-09,9.785938470926931799e-09,1.048493407599314050e-08,1.118392968105934921e-08,1.188292528612555791e-08,1.258192089119176662e-08,1.328091649625797532e-08,1.397991210132418403e-08,1.467890770639039273e-08,1.537790331145660144e-08,1.607689891652280849e-08,1.677589452158901554e-08,1.747489012665522259e-08,1.817388573172142964e-08,1.887288133678763669e-08,1.957187694185384375e-08,2.027087254692005080e-08,2.096986815198625785e-08,2.166886375705246490e-08,2.236785936211867195e-08,2.306685496718487900e-08,2.376585057225108605e-08,2.446484617731729310e-08,2.516384178238350015e-08,2.586283738744970720e-08,2.656183299251591425e-08,2.726082859758212130e-08,2.795982420264832835e-08,2.865881980771453541e-08,2.935781541278074246e-08,3.005681101784694951e-08,3.075580662291315656e-08,3.145480222797936361e-08,3.215379783304557066e-08,3.285279343811177771e-08,3.355178904317798476e-08,3.425078464824419181e-08,3.494978025331039886e-08,3.564877585837660591e-08,3.634777146344281296e-08,3.704676706850902002e-08,3.774576267357522707e-08,3.844475827864143412e-08,3.914375388370764117e-08,3.984274948877384822e-08,4.054174509384005527e-08,4.124074069890626232e-08,4.193973630397246937e-08,4.263873190903867642e-08,4.333772751410488347e-08,4.403672311917109052e-08 +0.000000000000000000e+00,-6.830910880933880429e-10,-1.366182176186776086e-09,-2.049273264280164129e-09,-2.732364352373552172e-09,-3.415455440466940215e-09,-4.098546528560328258e-09,-4.781637616653716300e-09,-5.464728704747104343e-09,-6.147819792840492386e-09,-6.830910880933880429e-09,-7.514001969027268472e-09,-8.197093057120656515e-09,-8.880184145214044558e-09,-9.563275233307432601e-09,-1.024636632140082064e-08,-1.092945740949420869e-08,-1.161254849758759673e-08,-1.229563958568098477e-08,-1.297873067377437282e-08,-1.366182176186776086e-08,-1.434491284996114890e-08,-1.502800393805453694e-08,-1.571109502614792499e-08,-1.639418611424131303e-08,-1.707727720233470107e-08,-1.776036829042808912e-08,-1.844345937852147716e-08,-1.912655046661486520e-08,-1.980964155470825324e-08,-2.049273264280164129e-08,-2.117582373089502933e-08,-2.185891481898841737e-08,-2.254200590708180542e-08,-2.322509699517519346e-08,-2.390818808326858150e-08,-2.459127917136196955e-08,-2.527437025945535759e-08,-2.595746134754874563e-08,-2.664055243564213367e-08,-2.732364352373552172e-08,-2.800673461182890976e-08,-2.868982569992229780e-08,-2.937291678801568585e-08,-3.005600787610907389e-08,-3.073909896420246524e-08,-3.142219005229585659e-08,-3.210528114038924794e-08,-3.278837222848263930e-08,-3.347146331657603065e-08,-3.415455440466942200e-08,-3.483764549276281335e-08,-3.552073658085620470e-08,-3.620382766894959605e-08,-3.688691875704298741e-08,-3.757000984513637876e-08,-3.825310093322977011e-08,-3.893619202132316146e-08,-3.961928310941655281e-08,-4.030237419750994416e-08,-4.098546528560333551e-08,-4.166855637369672687e-08,-4.235164746179011822e-08,-4.303473854988350957e-08 +0.000000000000000000e+00,-6.701062006590857283e-10,-1.340212401318171457e-09,-2.010318601977257082e-09,-2.680424802636342500e-09,-3.350531003295427918e-09,-4.020637203954513336e-09,-4.690743404613598754e-09,-5.360849605272684172e-09,-6.030955805931769590e-09,-6.701062006590855009e-09,-7.371168207249940427e-09,-8.041274407909025018e-09,-8.711380608568108782e-09,-9.381486809227192545e-09,-1.005159300988627631e-08,-1.072169921054536007e-08,-1.139180541120444384e-08,-1.206191161186352760e-08,-1.273201781252261136e-08,-1.340212401318169513e-08,-1.407223021384077889e-08,-1.474233641449986266e-08,-1.541244261515894642e-08,-1.608254881581803018e-08,-1.675265501647711395e-08,-1.742276121713619771e-08,-1.809286741779528147e-08,-1.876297361845436524e-08,-1.943307981911344900e-08,-2.010318601977253277e-08,-2.077329222043161653e-08,-2.144339842109070029e-08,-2.211350462174978406e-08,-2.278361082240886782e-08,-2.345371702306795158e-08,-2.412382322372703535e-08,-2.479392942438611911e-08,-2.546403562504520288e-08,-2.613414182570428664e-08,-2.680424802636337040e-08,-2.747435422702245417e-08,-2.814446042768153793e-08,-2.881456662834062170e-08,-2.948467282899970546e-08,-3.015477902965879253e-08,-3.082488523031787960e-08,-3.149499143097696668e-08,-3.216509763163605375e-08,-3.283520383229514082e-08,-3.350531003295422789e-08,-3.417541623361331497e-08,-3.484552243427240204e-08,-3.551562863493148911e-08,-3.618573483559057618e-08,-3.685584103624966326e-08,-3.752594723690875033e-08,-3.819605343756783740e-08,-3.886615963822692447e-08,-3.953626583888601155e-08,-4.020637203954509862e-08,-4.087647824020418569e-08,-4.154658444086327276e-08,-4.221669064152235984e-08 +0.000000000000000000e+00,-6.989956050170517395e-10,-1.397991210034103479e-09,-2.096986815051155115e-09,-2.795982420068206544e-09,-3.494978025085257974e-09,-4.193973630102309403e-09,-4.892969235119360419e-09,-5.591964840136411435e-09,-6.290960445153462450e-09,-6.989956050170513466e-09,-7.688951655187564482e-09,-8.387947260204615498e-09,-9.086942865221666513e-09,-9.785938470238717529e-09,-1.048493407525576854e-08,-1.118392968027281956e-08,-1.188292528528987058e-08,-1.258192089030692159e-08,-1.328091649532397261e-08,-1.397991210034102362e-08,-1.467890770535807464e-08,-1.537790331037512565e-08,-1.607689891539217833e-08,-1.677589452040923100e-08,-1.747489012542628367e-08,-1.817388573044333634e-08,-1.887288133546038901e-08,-1.957187694047744168e-08,-2.027087254549449435e-08,-2.096986815051154702e-08,-2.166886375552859969e-08,-2.236785936054565236e-08,-2.306685496556270503e-08,-2.376585057057975770e-08,-2.446484617559681037e-08,-2.516384178061386304e-08,-2.586283738563091571e-08,-2.656183299064796838e-08,-2.726082859566502105e-08,-2.795982420068207372e-08,-2.865881980569912639e-08,-2.935781541071617906e-08,-3.005681101573323173e-08,-3.075580662075028440e-08,-3.145480222576733707e-08,-3.215379783078438974e-08,-3.285279343580144241e-08,-3.355178904081849508e-08,-3.425078464583554775e-08,-3.494978025085260042e-08,-3.564877585586965309e-08,-3.634777146088670576e-08,-3.704676706590375843e-08,-3.774576267092081110e-08,-3.844475827593786377e-08,-3.914375388095491644e-08,-3.984274948597196911e-08,-4.054174509098902178e-08,-4.124074069600607445e-08,-4.193973630102312712e-08,-4.263873190604017979e-08,-4.333772751105723246e-08,-4.403672311607428513e-08 +0.000000000000000000e+00,-6.751917395436169714e-10,-1.350383479087233943e-09,-2.025575218630850811e-09,-2.700766958174467472e-09,-3.375958697718084133e-09,-4.051150437261700794e-09,-4.726342176805317456e-09,-5.401533916348934117e-09,-6.076725655892550778e-09,-6.751917395436167439e-09,-7.427109134979784100e-09,-8.102300874523399934e-09,-8.777492614067014941e-09,-9.452684353610629948e-09,-1.012787609315424495e-08,-1.080306783269785996e-08,-1.147825957224147497e-08,-1.215345131178508998e-08,-1.282864305132870498e-08,-1.350383479087231999e-08,-1.417902653041593500e-08,-1.485421826995955000e-08,-1.552941000950316501e-08,-1.620460174904678002e-08,-1.687979348859039502e-08,-1.755498522813401003e-08,-1.823017696767762504e-08,-1.890536870722124004e-08,-1.958056044676485505e-08,-2.025575218630847006e-08,-2.093094392585208506e-08,-2.160613566539570007e-08,-2.228132740493931508e-08,-2.295651914448293008e-08,-2.363171088402654509e-08,-2.430690262357016010e-08,-2.498209436311377511e-08,-2.565728610265739011e-08,-2.633247784220100512e-08,-2.700766958174462013e-08,-2.768286132128823513e-08,-2.835805306083185014e-08,-2.903324480037546515e-08,-2.970843653991908015e-08,-3.038362827946269516e-08,-3.105882001900631017e-08,-3.173401175854992517e-08,-3.240920349809354018e-08,-3.308439523763715519e-08,-3.375958697718077019e-08,-3.443477871672438520e-08,-3.510997045626800021e-08,-3.578516219581161521e-08,-3.646035393535523022e-08,-3.713554567489884523e-08,-3.781073741444246023e-08,-3.848592915398607524e-08,-3.916112089352969025e-08,-3.983631263307330526e-08,-4.051150437261692026e-08,-4.118669611216053527e-08,-4.186188785170415028e-08,-4.253707959124776528e-08 +0.000000000000000000e+00,-1.350055992165658397e-11,-2.700111984331316793e-11,-4.050167976496975028e-11,-5.400223968662632940e-11,-6.750279960828290852e-11,-8.100335952993948763e-11,-9.450391945159606675e-11,-1.080044793732526459e-10,-1.215050392949092379e-10,-1.350055992165658429e-10,-1.485061591382224478e-10,-1.620067190598790528e-10,-1.755072789815356578e-10,-1.890078389031922628e-10,-2.025083988248488677e-10,-2.160089587465054727e-10,-2.295095186681620777e-10,-2.430100785898186826e-10,-2.565106385114752876e-10,-2.700111984331318926e-10,-2.835117583547884975e-10,-2.970123182764451025e-10,-3.105128781981017075e-10,-3.240134381197583124e-10,-3.375139980414149174e-10,-3.510145579630715224e-10,-3.645151178847281273e-10,-3.780156778063847323e-10,-3.915162377280413373e-10,-4.050167976496979422e-10,-4.185173575713545472e-10,-4.320179174930111522e-10,-4.455184774146677571e-10,-4.590190373363243621e-10,-4.725195972579809671e-10,-4.860201571796375720e-10,-4.995207171012941770e-10,-5.130212770229507820e-10,-5.265218369446073869e-10,-5.400223968662639919e-10,-5.535229567879205969e-10,-5.670235167095772018e-10,-5.805240766312338068e-10,-5.940246365528904118e-10,-6.075251964745470167e-10,-6.210257563962036217e-10,-6.345263163178602267e-10,-6.480268762395168317e-10,-6.615274361611734366e-10,-6.750279960828300416e-10,-6.885285560044866466e-10,-7.020291159261432515e-10,-7.155296758477998565e-10,-7.290302357694564615e-10,-7.425307956911130664e-10,-7.560313556127696714e-10,-7.695319155344262764e-10,-7.830324754560828813e-10,-7.965330353777394863e-10,-8.100335952993960913e-10,-8.235341552210526962e-10,-8.370347151427093012e-10,-8.505352750643659062e-10 +0.000000000000000000e+00,-5.579611469047274161e-20,-1.115922293809454832e-19,-1.673883440714182369e-19,-2.231844587618910146e-19,-2.789805734523637923e-19,-3.347766881428365700e-19,-3.905728028333093478e-19,-4.463689175237821255e-19,-5.021650322142548551e-19,-5.579611469047275846e-19,-6.137572615952003142e-19,-6.695533762856730438e-19,-7.253494909761457733e-19,-7.811456056666185029e-19,-8.369417203570912325e-19,-8.927378350475640584e-19,-9.485339497380368842e-19,-1.004330064428509710e-18,-1.060126179118982536e-18,-1.115922293809455362e-18,-1.171718408499928188e-18,-1.227514523190401014e-18,-1.283310637880873839e-18,-1.339106752571346665e-18,-1.394902867261819491e-18,-1.450698981952292317e-18,-1.506495096642765143e-18,-1.562291211333237969e-18,-1.618087326023710795e-18,-1.673883440714183621e-18,-1.729679555404656446e-18,-1.785475670095129272e-18,-1.841271784785601906e-18,-1.897067899476074539e-18,-1.952864014166547172e-18,-2.008660128857019805e-18,-2.064456243547492439e-18,-2.120252358237965072e-18,-2.176048472928437705e-18,-2.231844587618910338e-18,-2.287640702309382972e-18,-2.343436816999855605e-18,-2.399232931690328238e-18,-2.455029046380800872e-18,-2.510825161071273505e-18,-2.566621275761746138e-18,-2.622417390452218771e-18,-2.678213505142691405e-18,-2.734009619833164038e-18,-2.789805734523636671e-18,-2.845601849214109305e-18,-2.901397963904581938e-18,-2.957194078595054571e-18,-3.012990193285527204e-18,-3.068786307975999838e-18,-3.124582422666472471e-18,-3.180378537356945104e-18,-3.236174652047417737e-18,-3.291970766737890371e-18,-3.347766881428363004e-18,-3.403562996118835637e-18,-3.459359110809308271e-18,-3.515155225499780904e-18 +0.000000000000000000e+00,-5.454280487173374974e-10,-1.090856097434674995e-09,-1.636284146152012596e-09,-2.181712194869350403e-09,-2.727140243586688211e-09,-3.272568292304026018e-09,-3.817996341021364240e-09,-4.363424389738702461e-09,-4.908852438456040682e-09,-5.454280487173378903e-09,-5.999708535890717124e-09,-6.545136584608055346e-09,-7.090564633325393567e-09,-7.635992682042731788e-09,-8.181420730760070009e-09,-8.726848779477408230e-09,-9.272276828194746452e-09,-9.817704876912084673e-09,-1.036313292562942289e-08,-1.090856097434676112e-08,-1.145398902306409934e-08,-1.199941707178143756e-08,-1.254484512049877578e-08,-1.309027316921611400e-08,-1.363570121793345222e-08,-1.418112926665079044e-08,-1.472655731536812866e-08,-1.527198536408546688e-08,-1.581741341280280511e-08,-1.636284146152014333e-08,-1.690826951023748155e-08,-1.745369755895481977e-08,-1.799912560767215799e-08,-1.854455365638949621e-08,-1.908998170510683443e-08,-1.963540975382417265e-08,-2.018083780254151088e-08,-2.072626585125884910e-08,-2.127169389997618732e-08,-2.181712194869352554e-08,-2.236254999741086376e-08,-2.290797804612820198e-08,-2.345340609484554020e-08,-2.399883414356287842e-08,-2.454426219228021664e-08,-2.508969024099755487e-08,-2.563511828971489309e-08,-2.618054633843223131e-08,-2.672597438714956953e-08,-2.727140243586690775e-08,-2.781683048458424597e-08,-2.836225853330158419e-08,-2.890768658201892241e-08,-2.945311463073626064e-08,-2.999854267945360217e-08,-3.054397072817094039e-08,-3.108939877688827861e-08,-3.163482682560561683e-08,-3.218025487432295505e-08,-3.272568292304029327e-08,-3.327111097175763149e-08,-3.381653902047496971e-08,-3.436196706919230794e-08 +0.000000000000000000e+00,-2.209249574019875569e-10,-4.418499148039751139e-10,-6.627748722059626450e-10,-8.836998296079501244e-10,-1.104624787009937604e-09,-1.325549744411925083e-09,-1.546474701813912563e-09,-1.767399659215900042e-09,-1.988324616617887521e-09,-2.209249574019875208e-09,-2.430174531421862894e-09,-2.651099488823850580e-09,-2.872024446225838266e-09,-3.092949403627825952e-09,-3.313874361029813639e-09,-3.534799318431801325e-09,-3.755724275833789011e-09,-3.976649233235776697e-09,-4.197574190637764383e-09,-4.418499148039752070e-09,-4.639424105441739756e-09,-4.860349062843727442e-09,-5.081274020245715128e-09,-5.302198977647702814e-09,-5.523123935049690500e-09,-5.744048892451678187e-09,-5.964973849853665873e-09,-6.185898807255653559e-09,-6.406823764657641245e-09,-6.627748722059628931e-09,-6.848673679461616618e-09,-7.069598636863604304e-09,-7.290523594265591990e-09,-7.511448551667579676e-09,-7.732373509069566535e-09,-7.953298466471553394e-09,-8.174223423873540253e-09,-8.395148381275527112e-09,-8.616073338677513971e-09,-8.836998296079500830e-09,-9.057923253481487689e-09,-9.278848210883474548e-09,-9.499773168285461407e-09,-9.720698125687448266e-09,-9.941623083089435125e-09,-1.016254804049142198e-08,-1.038347299789340884e-08,-1.060439795529539570e-08,-1.082532291269738256e-08,-1.104624787009936942e-08,-1.126717282750135628e-08,-1.148809778490334314e-08,-1.170902274230533000e-08,-1.192994769970731686e-08,-1.215087265710930372e-08,-1.237179761451129057e-08,-1.259272257191327743e-08,-1.281364752931526429e-08,-1.303457248671725115e-08,-1.325549744411923801e-08,-1.347642240152122487e-08,-1.369734735892321173e-08,-1.391827231632519859e-08 +0.000000000000000000e+00,7.379124131927045238e-11,1.475824826385409048e-10,2.213737239578113442e-10,2.951649652770817578e-10,3.689562065963521714e-10,4.427474479156225850e-10,5.165386892348929986e-10,5.903299305541634122e-10,6.641211718734338258e-10,7.379124131927042394e-10,8.117036545119746530e-10,8.854948958312450666e-10,9.592861371505154802e-10,1.033077378469785997e-09,1.106868619789056514e-09,1.180659861108327031e-09,1.254451102427597548e-09,1.328242343746868065e-09,1.402033585066138582e-09,1.475824826385409099e-09,1.549616067704679616e-09,1.623407309023950133e-09,1.697198550343220650e-09,1.770989791662491167e-09,1.844781032981761684e-09,1.918572274301032201e-09,1.992363515620302718e-09,2.066154756939573235e-09,2.139945998258843752e-09,2.213737239578114269e-09,2.287528480897384786e-09,2.361319722216655303e-09,2.435110963535925820e-09,2.508902204855196337e-09,2.582693446174466854e-09,2.656484687493737371e-09,2.730275928813007888e-09,2.804067170132278405e-09,2.877858411451548922e-09,2.951649652770819439e-09,3.025440894090089956e-09,3.099232135409360473e-09,3.173023376728630990e-09,3.246814618047901507e-09,3.320605859367172024e-09,3.394397100686442541e-09,3.468188342005713058e-09,3.541979583324983575e-09,3.615770824644254092e-09,3.689562065963524609e-09,3.763353307282794713e-09,3.837144548602065230e-09,3.910935789921335747e-09,3.984727031240606264e-09,4.058518272559876781e-09,4.132309513879147298e-09,4.206100755198417815e-09,4.279891996517688332e-09,4.353683237836958849e-09,4.427474479156229366e-09,4.501265720475499883e-09,4.575056961794770400e-09,4.648848203114040917e-09 +0.000000000000000000e+00,-3.373506209521000322e-10,-6.747012419042000645e-10,-1.012051862856300200e-09,-1.349402483808400336e-09,-1.686753104760500471e-09,-2.024103725712600400e-09,-2.361454346664700329e-09,-2.698804967616800258e-09,-3.036155588568900187e-09,-3.373506209521000116e-09,-3.710856830473100045e-09,-4.048207451425199973e-09,-4.385558072377299489e-09,-4.722908693329399004e-09,-5.060259314281498519e-09,-5.397609935233598034e-09,-5.734960556185697550e-09,-6.072311177137797065e-09,-6.409661798089896580e-09,-6.747012419041996096e-09,-7.084363039994095611e-09,-7.421713660946195126e-09,-7.759064281898294641e-09,-8.096414902850394984e-09,-8.433765523802495326e-09,-8.771116144754595669e-09,-9.108466765706696011e-09,-9.445817386658796354e-09,-9.783168007610896696e-09,-1.012051862856299704e-08,-1.045786924951509738e-08,-1.079521987046719772e-08,-1.113257049141929807e-08,-1.146992111237139841e-08,-1.180727173332349875e-08,-1.214462235427559909e-08,-1.248197297522769944e-08,-1.281932359617979978e-08,-1.315667421713190012e-08,-1.349402483808400046e-08,-1.383137545903610081e-08,-1.416872607998820115e-08,-1.450607670094030149e-08,-1.484342732189240183e-08,-1.518077794284450383e-08,-1.551812856379660583e-08,-1.585547918474870782e-08,-1.619282980570080982e-08,-1.653018042665291182e-08,-1.686753104760501381e-08,-1.720488166855711581e-08,-1.754223228950921781e-08,-1.787958291046131980e-08,-1.821693353141342180e-08,-1.855428415236552380e-08,-1.889163477331762579e-08,-1.922898539426972779e-08,-1.956633601522182979e-08,-1.990368663617393178e-08,-2.024103725712603378e-08,-2.057838787807813578e-08,-2.091573849903023778e-08,-2.125308911998233977e-08 +0.000000000000000000e+00,-5.135470055702834365e-20,-1.027094011140566873e-19,-1.540641016710850370e-19,-2.054188022281133987e-19,-2.567735027851417844e-19,-3.081282033421701702e-19,-3.594829038991985560e-19,-4.108376044562269418e-19,-4.621923050132553275e-19,-5.135470055702837615e-19,-5.649017061273121954e-19,-6.162564066843406293e-19,-6.676111072413690633e-19,-7.189658077983974972e-19,-7.703205083554259311e-19,-8.216752089124543650e-19,-8.730299094694827027e-19,-9.243846100265110403e-19,-9.757393105835393779e-19,-1.027094011140567716e-18,-1.078448711697596053e-18,-1.129803412254624391e-18,-1.181158112811652728e-18,-1.232512813368681066e-18,-1.283867513925709404e-18,-1.335222214482737741e-18,-1.386576915039766079e-18,-1.437931615596794417e-18,-1.489286316153822754e-18,-1.540641016710851092e-18,-1.591995717267879429e-18,-1.643350417824907767e-18,-1.694705118381936105e-18,-1.746059818938964635e-18,-1.797414519495993165e-18,-1.848769220053021695e-18,-1.900123920610050226e-18,-1.951478621167078756e-18,-2.002833321724107286e-18,-2.054188022281135816e-18,-2.105542722838164346e-18,-2.156897423395192877e-18,-2.208252123952221407e-18,-2.259606824509249937e-18,-2.310961525066278467e-18,-2.362316225623306998e-18,-2.413670926180335528e-18,-2.465025626737364058e-18,-2.516380327294392588e-18,-2.567735027851421118e-18,-2.619089728408449649e-18,-2.670444428965478179e-18,-2.721799129522506709e-18,-2.773153830079535239e-18,-2.824508530636563770e-18,-2.875863231193592300e-18,-2.927217931750620830e-18,-2.978572632307649360e-18,-3.029927332864677890e-18,-3.081282033421706421e-18,-3.132636733978734951e-18,-3.183991434535763481e-18,-3.235346135092792011e-18 +0.000000000000000000e+00,6.751917394322345170e-10,1.350383478864469034e-09,2.025575218296703758e-09,2.700766957728938481e-09,3.375958697161173205e-09,4.051150436593407515e-09,4.726342176025641826e-09,5.401533915457876136e-09,6.076725654890110446e-09,6.751917394322344756e-09,7.427109133754579066e-09,8.102300873186813376e-09,8.777492612619048514e-09,9.452684352051283651e-09,1.012787609148351879e-08,1.080306783091575393e-08,1.147825957034798906e-08,1.215345130978022420e-08,1.282864304921245934e-08,1.350383478864469448e-08,1.417902652807692961e-08,1.485421826750916475e-08,1.552941000694139989e-08,1.620460174637363668e-08,1.687979348580587347e-08,1.755498522523811026e-08,1.823017696467034705e-08,1.890536870410258385e-08,1.958056044353482064e-08,2.025575218296705743e-08,2.093094392239929422e-08,2.160613566183153101e-08,2.228132740126376780e-08,2.295651914069600460e-08,2.363171088012824139e-08,2.430690261956047818e-08,2.498209435899271497e-08,2.565728609842495176e-08,2.633247783785718855e-08,2.700766957728942535e-08,2.768286131672166214e-08,2.835805305615389893e-08,2.903324479558613572e-08,2.970843653501837251e-08,3.038362827445060930e-08,3.105882001388284610e-08,3.173401175331508289e-08,3.240920349274731968e-08,3.308439523217955647e-08,3.375958697161179326e-08,3.443477871104403006e-08,3.510997045047626685e-08,3.578516218990850364e-08,3.646035392934074043e-08,3.713554566877297722e-08,3.781073740820521401e-08,3.848592914763745081e-08,3.916112088706968760e-08,3.983631262650192439e-08,4.051150436593416118e-08,4.118669610536639797e-08,4.186188784479863476e-08,4.253707958423087156e-08 +0.000000000000000000e+00,1.350055983664560875e-11,2.700111967329121750e-11,4.050167950993682301e-11,5.400223934658242853e-11,6.750279918322803405e-11,8.100335901987364602e-11,9.450391885651925800e-11,1.080044786931648700e-10,1.215050385298104949e-10,1.350055983664561198e-10,1.485061582031017447e-10,1.620067180397473696e-10,1.755072778763929945e-10,1.890078377130386194e-10,2.025083975496842443e-10,2.160089573863298692e-10,2.295095172229754941e-10,2.430100770596210932e-10,2.565106368962666922e-10,2.700111967329122913e-10,2.835117565695578903e-10,2.970123164062034894e-10,3.105128762428490884e-10,3.240134360794946875e-10,3.375139959161402866e-10,3.510145557527858856e-10,3.645151155894314847e-10,3.780156754260770837e-10,3.915162352627226828e-10,4.050167950993682818e-10,4.185173549360138809e-10,4.320179147726594799e-10,4.455184746093050790e-10,4.590190344459506780e-10,4.725195942825962771e-10,4.860201541192418761e-10,4.995207139558874752e-10,5.130212737925330743e-10,5.265218336291786733e-10,5.400223934658242724e-10,5.535229533024698714e-10,5.670235131391154705e-10,5.805240729757610695e-10,5.940246328124066686e-10,6.075251926490522676e-10,6.210257524856978667e-10,6.345263123223434657e-10,6.480268721589890648e-10,6.615274319956346639e-10,6.750279918322802629e-10,6.885285516689258620e-10,7.020291115055714610e-10,7.155296713422170601e-10,7.290302311788626591e-10,7.425307910155082582e-10,7.560313508521538572e-10,7.695319106887994563e-10,7.830324705254450553e-10,7.965330303620906544e-10,8.100335901987362535e-10,8.235341500353818525e-10,8.370347098720274516e-10,8.505352697086730506e-10 +0.000000000000000000e+00,3.373506208405313071e-10,6.747012416810626142e-10,1.012051862521593973e-09,1.349402483362125435e-09,1.686753104202656897e-09,2.024103725043188360e-09,2.361454345883719822e-09,2.698804966724251284e-09,3.036155587564782746e-09,3.373506208405314208e-09,3.710856829245845671e-09,4.048207450086377546e-09,4.385558070926909422e-09,4.722908691767441298e-09,5.060259312607973174e-09,5.397609933448505049e-09,5.734960554289036925e-09,6.072311175129568801e-09,6.409661795970100677e-09,6.747012416810632553e-09,7.084363037651164428e-09,7.421713658491696304e-09,7.759064279332228180e-09,8.096414900172760056e-09,8.433765521013291931e-09,8.771116141853823807e-09,9.108466762694355683e-09,9.445817383534887559e-09,9.783168004375419435e-09,1.012051862521595131e-08,1.045786924605648319e-08,1.079521986689701506e-08,1.113257048773754694e-08,1.146992110857807881e-08,1.180727172941861069e-08,1.214462235025914257e-08,1.248197297109967444e-08,1.281932359194020632e-08,1.315667421278073819e-08,1.349402483362127007e-08,1.383137545446180194e-08,1.416872607530233382e-08,1.450607669614286570e-08,1.484342731698339757e-08,1.518077793782392779e-08,1.551812855866445967e-08,1.585547917950499154e-08,1.619282980034552342e-08,1.653018042118605530e-08,1.686753104202658717e-08,1.720488166286711905e-08,1.754223228370765092e-08,1.787958290454818280e-08,1.821693352538871467e-08,1.855428414622924655e-08,1.889163476706977843e-08,1.922898538791031030e-08,1.956633600875084218e-08,1.990368662959137405e-08,2.024103725043190593e-08,2.057838787127243781e-08,2.091573849211296968e-08,2.125308911295350156e-08 +0.000000000000000000e+00,5.454280486148749451e-10,1.090856097229749890e-09,1.636284145844624835e-09,2.181712194459499781e-09,2.727140243074374726e-09,3.272568291689249671e-09,3.817996340304124202e-09,4.363424388918998734e-09,4.908852437533873265e-09,5.454280486148747797e-09,5.999708534763622328e-09,6.545136583378496860e-09,7.090564631993371391e-09,7.635992680608245096e-09,8.181420729223118800e-09,8.726848777837992505e-09,9.272276826452866209e-09,9.817704875067739913e-09,1.036313292368261362e-08,1.090856097229748732e-08,1.145398902091236103e-08,1.199941706952723473e-08,1.254484511814210844e-08,1.309027316675698214e-08,1.363570121537185584e-08,1.418112926398672955e-08,1.472655731260160325e-08,1.527198536121647696e-08,1.581741340983135066e-08,1.636284145844622437e-08,1.690826950706109807e-08,1.745369755567597177e-08,1.799912560429084548e-08,1.854455365290571918e-08,1.908998170152059289e-08,1.963540975013546659e-08,2.018083779875034030e-08,2.072626584736521400e-08,2.127169389598008770e-08,2.181712194459496141e-08,2.236254999320983511e-08,2.290797804182470882e-08,2.345340609043958252e-08,2.399883413905445623e-08,2.454426218766932993e-08,2.508969023628420364e-08,2.563511828489907734e-08,2.618054633351395104e-08,2.672597438212882475e-08,2.727140243074369845e-08,2.781683047935857216e-08,2.836225852797344586e-08,2.890768657658831957e-08,2.945311462520319327e-08,2.999854267381806697e-08,3.054397072243294068e-08,3.108939877104781438e-08,3.163482681966268809e-08,3.218025486827756179e-08,3.272568291689243550e-08,3.327111096550730920e-08,3.381653901412218290e-08,3.436196706273705661e-08 +0.000000000000000000e+00,2.209249573039837150e-10,4.418499146079674299e-10,6.627748719119511190e-10,8.836998292159347564e-10,1.104624786519918290e-09,1.325549743823901824e-09,1.546474701127885358e-09,1.767399658431868892e-09,1.988324615735852427e-09,2.209249573039835754e-09,2.430174530343819081e-09,2.651099487647802408e-09,2.872024444951785735e-09,3.092949402255769063e-09,3.313874359559752390e-09,3.534799316863735717e-09,3.755724274167719044e-09,3.976649231471702371e-09,4.197574188775685699e-09,4.418499146079669026e-09,4.639424103383652353e-09,4.860349060687635680e-09,5.081274017991619008e-09,5.302198975295602335e-09,5.523123932599585662e-09,5.744048889903568989e-09,5.964973847207552316e-09,6.185898804511535644e-09,6.406823761815518971e-09,6.627748719119502298e-09,6.848673676423485625e-09,7.069598633727468953e-09,7.290523591031452280e-09,7.511448548335434780e-09,7.732373505639417280e-09,7.953298462943399780e-09,8.174223420247382280e-09,8.395148377551364780e-09,8.616073334855347280e-09,8.836998292159329780e-09,9.057923249463312280e-09,9.278848206767294780e-09,9.499773164071277280e-09,9.720698121375259780e-09,9.941623078679242280e-09,1.016254803598322478e-08,1.038347299328720728e-08,1.060439795059118978e-08,1.082532290789517228e-08,1.104624786519915478e-08,1.126717282250313728e-08,1.148809777980711978e-08,1.170902273711110228e-08,1.192994769441508478e-08,1.215087265171906728e-08,1.237179760902304978e-08,1.259272256632703228e-08,1.281364752363101478e-08,1.303457248093499728e-08,1.325549743823897978e-08,1.347642239554296228e-08,1.369734735284694478e-08,1.391827231015092728e-08 +0.000000000000000000e+00,-7.379124139247716443e-11,-1.475824827849543289e-10,-2.213737241774314933e-10,-2.951649655699086577e-10,-3.689562069623857963e-10,-4.427474483548629349e-10,-5.165386897473400735e-10,-5.903299311398172121e-10,-6.641211725322943507e-10,-7.379124139247714892e-10,-8.117036553172486278e-10,-8.854948967097257664e-10,-9.592861381022029050e-10,-1.033077379494680147e-09,-1.106868620887157389e-09,-1.180659862279634631e-09,-1.254451103672111873e-09,-1.328242345064589115e-09,-1.402033586457066357e-09,-1.475824827849543599e-09,-1.549616069242020841e-09,-1.623407310634498083e-09,-1.697198552026975325e-09,-1.770989793419452567e-09,-1.844781034811929809e-09,-1.918572276204407051e-09,-1.992363517596884293e-09,-2.066154758989361535e-09,-2.139946000381838777e-09,-2.213737241774316019e-09,-2.287528483166793261e-09,-2.361319724559270503e-09,-2.435110965951747745e-09,-2.508902207344224987e-09,-2.582693448736702229e-09,-2.656484690129179471e-09,-2.730275931521656713e-09,-2.804067172914133955e-09,-2.877858414306611197e-09,-2.951649655699088439e-09,-3.025440897091565681e-09,-3.099232138484042922e-09,-3.173023379876520164e-09,-3.246814621268997406e-09,-3.320605862661474648e-09,-3.394397104053951890e-09,-3.468188345446429132e-09,-3.541979586838906374e-09,-3.615770828231383616e-09,-3.689562069623860858e-09,-3.763353311016338100e-09,-3.837144552408814929e-09,-3.910935793801291757e-09,-3.984727035193768586e-09,-4.058518276586245414e-09,-4.132309517978722242e-09,-4.206100759371199071e-09,-4.279892000763675899e-09,-4.353683242156152727e-09,-4.427474483548629556e-09,-4.501265724941106384e-09,-4.575056966333583213e-09,-4.648848207726060041e-09 +0.000000000000000000e+00,2.724403938534083956e-10,5.448807877068167912e-10,8.173211815602251867e-10,1.089761575413633582e-09,1.362201969267041875e-09,1.634642363120450167e-09,1.907082756973858459e-09,2.179523150827266751e-09,2.451963544680675043e-09,2.724403938534083335e-09,2.996844332387491628e-09,3.269284726240899920e-09,3.541725120094308212e-09,3.814165513947716091e-09,4.086605907801124383e-09,4.359046301654532675e-09,4.631486695507940967e-09,4.903927089361349259e-09,5.176367483214757551e-09,5.448807877068165844e-09,5.721248270921574136e-09,5.993688664774982428e-09,6.266129058628390720e-09,6.538569452481799012e-09,6.811009846335207305e-09,7.083450240188615597e-09,7.355890634042023889e-09,7.628331027895432181e-09,7.900771421748840473e-09,8.173211815602248766e-09,8.445652209455657058e-09,8.718092603309065350e-09,8.990532997162473642e-09,9.262973391015881934e-09,9.535413784869290226e-09,9.807854178722698519e-09,1.008029457257610681e-08,1.035273496642951510e-08,1.062517536028292340e-08,1.089761575413633169e-08,1.117005614798973998e-08,1.144249654184314827e-08,1.171493693569655656e-08,1.198737732954996486e-08,1.225981772340337315e-08,1.253225811725678144e-08,1.280469851111018973e-08,1.307713890496359802e-08,1.334957929881700632e-08,1.362201969267041461e-08,1.389446008652382290e-08,1.416690048037723119e-08,1.443934087423063949e-08,1.471178126808404778e-08,1.498422166193745607e-08,1.525666205579086436e-08,1.552910244964427265e-08,1.580154284349768095e-08,1.607398323735108924e-08,1.634642363120449753e-08,1.661886402505790582e-08,1.689130441891131412e-08,1.716374481276472241e-08 +0.000000000000000000e+00,1.582518224968610288e-10,3.165036449937220576e-10,4.747554674905831123e-10,6.330072899874442187e-10,7.912591124843053250e-10,9.495109349811664314e-10,1.107762757478027434e-09,1.266014579974888437e-09,1.424266402471749440e-09,1.582518224968610443e-09,1.740770047465471446e-09,1.899021869962332449e-09,2.057273692459193452e-09,2.215525514956054455e-09,2.373777337452915458e-09,2.532029159949776461e-09,2.690280982446637464e-09,2.848532804943498467e-09,3.006784627440359470e-09,3.165036449937220473e-09,3.323288272434081476e-09,3.481540094930942479e-09,3.639791917427803482e-09,3.798043739924664071e-09,3.956295562421524661e-09,4.114547384918385250e-09,4.272799207415245839e-09,4.431051029912106429e-09,4.589302852408967018e-09,4.747554674905827608e-09,4.905806497402688197e-09,5.064058319899548786e-09,5.222310142396409376e-09,5.380561964893269965e-09,5.538813787390130554e-09,5.697065609886991144e-09,5.855317432383851733e-09,6.013569254880712323e-09,6.171821077377572912e-09,6.330072899874433501e-09,6.488324722371294091e-09,6.646576544868154680e-09,6.804828367365015269e-09,6.963080189861875859e-09,7.121332012358736448e-09,7.279583834855597038e-09,7.437835657352457627e-09,7.596087479849318216e-09,7.754339302346178806e-09,7.912591124843039395e-09,8.070842947339899984e-09,8.229094769836760574e-09,8.387346592333621163e-09,8.545598414830481753e-09,8.703850237327342342e-09,8.862102059824202931e-09,9.020353882321063521e-09,9.178605704817924110e-09,9.336857527314784699e-09,9.495109349811645289e-09,9.653361172308505878e-09,9.811612994805366468e-09,9.969864817302227057e-09 +0.000000000000000000e+00,3.248244508502429179e-10,6.496489017004858358e-10,9.744733525507287536e-10,1.299297803400971672e-09,1.624122254251214589e-09,1.948946705101457507e-09,2.273771155951700218e-09,2.598595606801942929e-09,2.923420057652185641e-09,3.248244508502428352e-09,3.573068959352671063e-09,3.897893410202914187e-09,4.222717861053157312e-09,4.547542311903400437e-09,4.872366762753643561e-09,5.197191213603886686e-09,5.522015664454129811e-09,5.846840115304372935e-09,6.171664566154616060e-09,6.496489017004859185e-09,6.821313467855102309e-09,7.146137918705345434e-09,7.470962369555588559e-09,7.795786820405831684e-09,8.120611271256074808e-09,8.445435722106317933e-09,8.770260172956561058e-09,9.095084623806804182e-09,9.419909074657047307e-09,9.744733525507290432e-09,1.006955797635753356e-08,1.039438242720777668e-08,1.071920687805801981e-08,1.104403132890826293e-08,1.136885577975850605e-08,1.169368023060874918e-08,1.201850468145899230e-08,1.234332913230923543e-08,1.266815358315947855e-08,1.299297803400972168e-08,1.331780248485996480e-08,1.364262693571020793e-08,1.396745138656045105e-08,1.429227583741069418e-08,1.461710028826093730e-08,1.494192473911118043e-08,1.526674918996142190e-08,1.559157364081166337e-08,1.591639809166190484e-08,1.624122254251214631e-08,1.656604699336238778e-08,1.689087144421262925e-08,1.721569589506287072e-08,1.754052034591311219e-08,1.786534479676335366e-08,1.819016924761359513e-08,1.851499369846383660e-08,1.883981814931407807e-08,1.916464260016431954e-08,1.948946705101456101e-08,1.981429150186480248e-08,2.013911595271504395e-08,2.046394040356528542e-08 +0.000000000000000000e+00,-2.724403939138286144e-10,-5.448807878276572287e-10,-8.173211817414857914e-10,-1.089761575655314251e-09,-1.362201969569142710e-09,-1.634642363482971169e-09,-1.907082757396799628e-09,-2.179523151310628088e-09,-2.451963545224456547e-09,-2.724403939138285006e-09,-2.996844333052113465e-09,-3.269284726965941925e-09,-3.541725120879770384e-09,-3.814165514793599257e-09,-4.086605908707428130e-09,-4.359046302621257002e-09,-4.631486696535085875e-09,-4.903927090448914748e-09,-5.176367484362743621e-09,-5.448807878276572494e-09,-5.721248272190401367e-09,-5.993688666104230240e-09,-6.266129060018059112e-09,-6.538569453931887985e-09,-6.811009847845716858e-09,-7.083450241759545731e-09,-7.355890635673374604e-09,-7.628331029587203477e-09,-7.900771423501032349e-09,-8.173211817414861222e-09,-8.445652211328690095e-09,-8.718092605242518968e-09,-8.990532999156347841e-09,-9.262973393070176714e-09,-9.535413786984005587e-09,-9.807854180897834459e-09,-1.008029457481166333e-08,-1.035273496872549221e-08,-1.062517536263932108e-08,-1.089761575655314995e-08,-1.117005615046697882e-08,-1.144249654438080770e-08,-1.171493693829463657e-08,-1.198737733220846544e-08,-1.225981772612229432e-08,-1.253225812003612319e-08,-1.280469851394995206e-08,-1.307713890786378093e-08,-1.334957930177760981e-08,-1.362201969569143868e-08,-1.389446008960526755e-08,-1.416690048351909642e-08,-1.443934087743292530e-08,-1.471178127134675417e-08,-1.498422166526058139e-08,-1.525666205917441026e-08,-1.552910245308823913e-08,-1.580154284700206801e-08,-1.607398324091589688e-08,-1.634642363482972575e-08,-1.661886402874355463e-08,-1.689130442265738350e-08,-1.716374481657121237e-08 +0.000000000000000000e+00,-1.582518225694671431e-10,-3.165036451389342863e-10,-4.747554677084013777e-10,-6.330072902778684691e-10,-7.912591128473355605e-10,-9.495109354168027554e-10,-1.107762757986269950e-09,-1.266014580555737145e-09,-1.424266403125204340e-09,-1.582518225694671535e-09,-1.740770048264138729e-09,-1.899021870833605924e-09,-2.057273693403073119e-09,-2.215525515972540314e-09,-2.373777338542007509e-09,-2.532029161111474704e-09,-2.690280983680941898e-09,-2.848532806250409093e-09,-3.006784628819876288e-09,-3.165036451389343483e-09,-3.323288273958810678e-09,-3.481540096528277873e-09,-3.639791919097745067e-09,-3.798043741667212676e-09,-3.956295564236679871e-09,-4.114547386806147065e-09,-4.272799209375614260e-09,-4.431051031945081455e-09,-4.589302854514548650e-09,-4.747554677084015845e-09,-4.905806499653483040e-09,-5.064058322222950234e-09,-5.222310144792417429e-09,-5.380561967361884624e-09,-5.538813789931351819e-09,-5.697065612500819014e-09,-5.855317435070286209e-09,-6.013569257639753403e-09,-6.171821080209220598e-09,-6.330072902778687793e-09,-6.488324725348154988e-09,-6.646576547917622183e-09,-6.804828370487089378e-09,-6.963080193056556572e-09,-7.121332015626023767e-09,-7.279583838195490962e-09,-7.437835660764958157e-09,-7.596087483334425352e-09,-7.754339305903892546e-09,-7.912591128473359741e-09,-8.070842951042826936e-09,-8.229094773612294131e-09,-8.387346596181761326e-09,-8.545598418751228521e-09,-8.703850241320695715e-09,-8.862102063890162910e-09,-9.020353886459630105e-09,-9.178605709029097300e-09,-9.336857531598564495e-09,-9.495109354168031690e-09,-9.653361176737498884e-09,-9.811612999306966079e-09,-9.969864821876433274e-09 +0.000000000000000000e+00,-3.248244508958630143e-10,-6.496489017917260287e-10,-9.744733526875890947e-10,-1.299297803583452264e-09,-1.624122254479315434e-09,-1.948946705375178603e-09,-2.273771156271041566e-09,-2.598595607166904528e-09,-2.923420058062767491e-09,-3.248244508958630454e-09,-3.573068959854493416e-09,-3.897893410750356379e-09,-4.222717861646219342e-09,-4.547542312542082304e-09,-4.872366763437945267e-09,-5.197191214333808229e-09,-5.522015665229671192e-09,-5.846840116125534155e-09,-6.171664567021397117e-09,-6.496489017917260080e-09,-6.821313468813123043e-09,-7.146137919708986005e-09,-7.470962370604848968e-09,-7.795786821500711103e-09,-8.120611272396573239e-09,-8.445435723292435374e-09,-8.770260174188297510e-09,-9.095084625084159645e-09,-9.419909075980021781e-09,-9.744733526875883916e-09,-1.006955797777174605e-08,-1.039438242866760819e-08,-1.071920687956347032e-08,-1.104403133045933246e-08,-1.136885578135519459e-08,-1.169368023225105673e-08,-1.201850468314691886e-08,-1.234332913404278100e-08,-1.266815358493864314e-08,-1.299297803583450527e-08,-1.331780248673036741e-08,-1.364262693762622954e-08,-1.396745138852209168e-08,-1.429227583941795381e-08,-1.461710029031381595e-08,-1.494192474120967808e-08,-1.526674919210554022e-08,-1.559157364300140235e-08,-1.591639809389726449e-08,-1.624122254479312663e-08,-1.656604699568898876e-08,-1.689087144658485090e-08,-1.721569589748071303e-08,-1.754052034837657517e-08,-1.786534479927243730e-08,-1.819016925016829944e-08,-1.851499370106416157e-08,-1.883981815196002371e-08,-1.916464260285588584e-08,-1.948946705375174798e-08,-1.981429150464761012e-08,-2.013911595554347225e-08,-2.046394040643933439e-08 +0.000000000000000000e+00,4.109214194724060915e-10,8.218428389448121830e-10,1.232764258417218171e-09,1.643685677889624159e-09,2.054607097362030147e-09,2.465528516834436342e-09,2.876449936306842537e-09,3.287371355779248732e-09,3.698292775251654927e-09,4.109214194724061122e-09,4.520135614196467730e-09,4.931057033668874339e-09,5.341978453141280947e-09,5.752899872613687556e-09,6.163821292086094164e-09,6.574742711558500773e-09,6.985664131030907381e-09,7.396585550503313990e-09,7.807506969975720598e-09,8.218428389448127207e-09,8.629349808920533815e-09,9.040271228392940424e-09,9.451192647865347032e-09,9.862114067337753641e-09,1.027303548681016025e-08,1.068395690628256686e-08,1.109487832575497347e-08,1.150579974522738007e-08,1.191672116469978668e-08,1.232764258417219329e-08,1.273856400364459990e-08,1.314948542311700651e-08,1.356040684258941312e-08,1.397132826206181973e-08,1.438224968153422633e-08,1.479317110100663294e-08,1.520409252047903955e-08,1.561501393995144781e-08,1.602593535942385608e-08,1.643685677889626434e-08,1.684777819836867260e-08,1.725869961784108087e-08,1.766962103731348913e-08,1.808054245678589739e-08,1.849146387625830565e-08,1.890238529573071392e-08,1.931330671520312218e-08,1.972422813467553044e-08,2.013514955414793871e-08,2.054607097362034697e-08,2.095699239309275523e-08,2.136791381256516349e-08,2.177883523203757176e-08,2.218975665150998002e-08,2.260067807098238828e-08,2.301159949045479655e-08,2.342252090992720481e-08,2.383344232939961307e-08,2.424436374887202133e-08,2.465528516834442960e-08,2.506620658781683786e-08,2.547712800728924612e-08,2.588804942676165439e-08 +0.000000000000000000e+00,3.482958115427092391e-10,6.965916230854184781e-10,1.044887434628127665e-09,1.393183246170836749e-09,1.741479057713545833e-09,2.089774869256254917e-09,2.438070680798964001e-09,2.786366492341673085e-09,3.134662303884382169e-09,3.482958115427091253e-09,3.831253926969799923e-09,4.179549738512509007e-09,4.527845550055218091e-09,4.876141361597927175e-09,5.224437173140636259e-09,5.572732984683345343e-09,5.921028796226054427e-09,6.269324607768763511e-09,6.617620419311472595e-09,6.965916230854181679e-09,7.314212042396890763e-09,7.662507853939599847e-09,8.010803665482308931e-09,8.359099477025018015e-09,8.707395288567727099e-09,9.055691100110436183e-09,9.403986911653145267e-09,9.752282723195854351e-09,1.010057853473856343e-08,1.044887434628127252e-08,1.079717015782398160e-08,1.114546596936669069e-08,1.149376178090939977e-08,1.184205759245210885e-08,1.219035340399481794e-08,1.253864921553752702e-08,1.288694502708023611e-08,1.323524083862294519e-08,1.358353665016565427e-08,1.393183246170836336e-08,1.428012827325107244e-08,1.462842408479378153e-08,1.497671989633649061e-08,1.532501570787919969e-08,1.567331151942190878e-08,1.602160733096461786e-08,1.636990314250732695e-08,1.671819895405003603e-08,1.706649476559274511e-08,1.741479057713545420e-08,1.776308638867816328e-08,1.811138220022087237e-08,1.845967801176358145e-08,1.880797382330629053e-08,1.915626963484899962e-08,1.950456544639170870e-08,1.985286125793441779e-08,2.020115706947712687e-08,2.054945288101983595e-08,2.089774869256254504e-08,2.124604450410525412e-08,2.159434031564796321e-08,2.194263612719067229e-08 +0.000000000000000000e+00,4.472092773841759855e-10,8.944185547683519710e-10,1.341627832152527957e-09,1.788837109536703942e-09,2.236046386920879928e-09,2.683255664305055913e-09,3.130464941689231899e-09,3.577674219073407884e-09,4.024883496457583870e-09,4.472092773841759855e-09,4.919302051225935841e-09,5.366511328610111826e-09,5.813720605994287812e-09,6.260929883378463797e-09,6.708139160762639783e-09,7.155348438146815768e-09,7.602557715530992581e-09,8.049766992915169394e-09,8.496976270299346206e-09,8.944185547683523019e-09,9.391394825067699832e-09,9.838604102451876644e-09,1.028581337983605346e-08,1.073302265722023027e-08,1.118023193460440708e-08,1.162744121198858390e-08,1.207465048937276071e-08,1.252185976675693752e-08,1.296906904414111433e-08,1.341627832152529115e-08,1.386348759890946796e-08,1.431069687629364477e-08,1.475790615367782158e-08,1.520511543106199840e-08,1.565232470844617521e-08,1.609953398583035202e-08,1.654674326321452883e-08,1.699395254059870565e-08,1.744116181798288246e-08,1.788837109536705927e-08,1.833558037275123609e-08,1.878278965013541290e-08,1.922999892751958971e-08,1.967720820490376652e-08,2.012441748228794334e-08,2.057162675967212015e-08,2.101883603705629696e-08,2.146604531444047377e-08,2.191325459182465059e-08,2.236046386920882740e-08,2.280767314659300421e-08,2.325488242397718102e-08,2.370209170136135784e-08,2.414930097874553465e-08,2.459651025612971146e-08,2.504371953351388828e-08,2.549092881089806509e-08,2.593813808828224190e-08,2.638534736566641871e-08,2.683255664305059553e-08,2.727976592043477234e-08,2.772697519781894915e-08,2.817418447520312596e-08 +0.000000000000000000e+00,-4.109214195097103345e-10,-8.218428390194206689e-10,-1.232764258529130952e-09,-1.643685678038841131e-09,-2.054607097548551517e-09,-2.465528517058261903e-09,-2.876449936567972290e-09,-3.287371356077682676e-09,-3.698292775587393062e-09,-4.109214195097103035e-09,-4.520135614606813007e-09,-4.931057034116522980e-09,-5.341978453626232952e-09,-5.752899873135942925e-09,-6.163821292645652897e-09,-6.574742712155362870e-09,-6.985664131665072843e-09,-7.396585551174782815e-09,-7.807506970684491961e-09,-8.218428390194201106e-09,-8.629349809703910251e-09,-9.040271229213619397e-09,-9.451192648723328542e-09,-9.862114068233037688e-09,-1.027303548774274683e-08,-1.068395690725245598e-08,-1.109487832676216512e-08,-1.150579974627187427e-08,-1.191672116578158341e-08,-1.232764258529129256e-08,-1.273856400480100171e-08,-1.314948542431071085e-08,-1.356040684382042000e-08,-1.397132826333012914e-08,-1.438224968283983829e-08,-1.479317110234954743e-08,-1.520409252185925658e-08,-1.561501394136896407e-08,-1.602593536087867156e-08,-1.643685678038837905e-08,-1.684777819989808654e-08,-1.725869961940779403e-08,-1.766962103891750152e-08,-1.808054245842720902e-08,-1.849146387793691651e-08,-1.890238529744662400e-08,-1.931330671695633149e-08,-1.972422813646603898e-08,-2.013514955597574647e-08,-2.054607097548545396e-08,-2.095699239499516145e-08,-2.136791381450486894e-08,-2.177883523401457643e-08,-2.218975665352428393e-08,-2.260067807303399142e-08,-2.301159949254369891e-08,-2.342252091205340640e-08,-2.383344233156311389e-08,-2.424436375107282138e-08,-2.465528517058252887e-08,-2.506620659009223636e-08,-2.547712800960194385e-08,-2.588804942911165134e-08 +0.000000000000000000e+00,-3.482958115910751099e-10,-6.965916231821502197e-10,-1.044887434773225278e-09,-1.393183246364300233e-09,-1.741479057955375187e-09,-2.089774869546450142e-09,-2.438070681137525304e-09,-2.786366492728600465e-09,-3.134662304319675627e-09,-3.482958115910750788e-09,-3.831253927501825950e-09,-4.179549739092901111e-09,-4.527845550683976273e-09,-4.876141362275051435e-09,-5.224437173866126596e-09,-5.572732985457201758e-09,-5.921028797048276919e-09,-6.269324608639352081e-09,-6.617620420230427242e-09,-6.965916231821502404e-09,-7.314212043412577565e-09,-7.662507855003651900e-09,-8.010803666594726234e-09,-8.359099478185800568e-09,-8.707395289776874903e-09,-9.055691101367949237e-09,-9.403986912959023572e-09,-9.752282724550097906e-09,-1.010057853614117224e-08,-1.044887434773224657e-08,-1.079717015932332091e-08,-1.114546597091439524e-08,-1.149376178250546958e-08,-1.184205759409654391e-08,-1.219035340568761825e-08,-1.253864921727869258e-08,-1.288694502886976692e-08,-1.323524084046084125e-08,-1.358353665205191558e-08,-1.393183246364298992e-08,-1.428012827523406425e-08,-1.462842408682513859e-08,-1.497671989841621127e-08,-1.532501571000728395e-08,-1.567331152159835663e-08,-1.602160733318942931e-08,-1.636990314478050199e-08,-1.671819895637157467e-08,-1.706649476796264735e-08,-1.741479057955372003e-08,-1.776308639114479271e-08,-1.811138220273586539e-08,-1.845967801432693807e-08,-1.880797382591801075e-08,-1.915626963750908343e-08,-1.950456544910015611e-08,-1.985286126069122879e-08,-2.020115707228230147e-08,-2.054945288387337415e-08,-2.089774869546444683e-08,-2.124604450705551951e-08,-2.159434031864659219e-08,-2.194263613023766487e-08 +0.000000000000000000e+00,-4.472092774038530096e-10,-8.944185548077060192e-10,-1.341627832211559081e-09,-1.788837109615412245e-09,-2.236046387019265617e-09,-2.683255664423118988e-09,-3.130464941826972360e-09,-3.577674219230825731e-09,-4.024883496634679103e-09,-4.472092774038532888e-09,-4.919302051442386673e-09,-5.366511328846240458e-09,-5.813720606250094243e-09,-6.260929883653948028e-09,-6.708139161057801813e-09,-7.155348438461655599e-09,-7.602557715865509384e-09,-8.049766993269363169e-09,-8.496976270673216954e-09,-8.944185548077070739e-09,-9.391394825480924524e-09,-9.838604102884778309e-09,-1.028581338028863209e-08,-1.073302265769248588e-08,-1.118023193509633966e-08,-1.162744121250019345e-08,-1.207465048990404723e-08,-1.252185976730790102e-08,-1.296906904471175480e-08,-1.341627832211560859e-08,-1.386348759951946238e-08,-1.431069687692331616e-08,-1.475790615432716995e-08,-1.520511543173102208e-08,-1.565232470913487586e-08,-1.609953398653872965e-08,-1.654674326394258343e-08,-1.699395254134643722e-08,-1.744116181875029100e-08,-1.788837109615414479e-08,-1.833558037355799857e-08,-1.878278965096185236e-08,-1.922999892836570614e-08,-1.967720820576955993e-08,-2.012441748317341371e-08,-2.057162676057726750e-08,-2.101883603798112128e-08,-2.146604531538497507e-08,-2.191325459278882885e-08,-2.236046387019268264e-08,-2.280767314759653642e-08,-2.325488242500039021e-08,-2.370209170240424399e-08,-2.414930097980809778e-08,-2.459651025721195156e-08,-2.504371953461580535e-08,-2.549092881201965913e-08,-2.593813808942351292e-08,-2.638534736682736670e-08,-2.683255664423122049e-08,-2.727976592163507427e-08,-2.772697519903892806e-08,-2.817418447644278184e-08 +0.000000000000000000e+00,4.937949415594582670e-10,9.875898831189165339e-10,1.481384824678374801e-09,1.975179766237833068e-09,2.468974707797291335e-09,2.962769649356749602e-09,3.456564590916207869e-09,3.950359532475666136e-09,4.444154474035124403e-09,4.937949415594582670e-09,5.431744357154040937e-09,5.925539298713499204e-09,6.419334240272957471e-09,6.913129181832415738e-09,7.406924123391874005e-09,7.900719064951332272e-09,8.394514006510790539e-09,8.888308948070248805e-09,9.382103889629707072e-09,9.875898831189165339e-09,1.036969377274862361e-08,1.086348871430808187e-08,1.135728365586754014e-08,1.185107859742699841e-08,1.234487353898645667e-08,1.283866848054591494e-08,1.333246342210537321e-08,1.382625836366483148e-08,1.432005330522428974e-08,1.481384824678374801e-08,1.530764318834320462e-08,1.580143812990266123e-08,1.629523307146211785e-08,1.678902801302157446e-08,1.728282295458103107e-08,1.777661789614048768e-08,1.827041283769994430e-08,1.876420777925940091e-08,1.925800272081885752e-08,1.975179766237831414e-08,2.024559260393777075e-08,2.073938754549722736e-08,2.123318248705668397e-08,2.172697742861614059e-08,2.222077237017559720e-08,2.271456731173505381e-08,2.320836225329451042e-08,2.370215719485396704e-08,2.419595213641342365e-08,2.468974707797288026e-08,2.518354201953233687e-08,2.567733696109179349e-08,2.617113190265125010e-08,2.666492684421070671e-08,2.715872178577016332e-08,2.765251672732961994e-08,2.814631166888907655e-08,2.864010661044853316e-08,2.913390155200798977e-08,2.962769649356744639e-08,3.012149143512690300e-08,3.061528637668635630e-08,3.110908131824580961e-08 +0.000000000000000000e+00,4.541932725758798201e-10,9.083865451517596403e-10,1.362579817727639409e-09,1.816773090303519074e-09,2.270966362879398739e-09,2.725159635455278404e-09,3.179352908031158069e-09,3.633546180607037734e-09,4.087739453182916985e-09,4.541932725758796651e-09,4.996125998334676316e-09,5.450319270910555981e-09,5.904512543486435646e-09,6.358705816062315311e-09,6.812899088638194976e-09,7.267092361214074641e-09,7.721285633789954306e-09,8.175478906365833971e-09,8.629672178941713636e-09,9.083865451517593301e-09,9.538058724093472966e-09,9.992251996669352631e-09,1.044644526924523230e-08,1.090063854182111196e-08,1.135483181439699163e-08,1.180902508697287129e-08,1.226321835954875096e-08,1.271741163212463062e-08,1.317160490470051029e-08,1.362579817727638995e-08,1.407999144985226962e-08,1.453418472242814928e-08,1.498837799500403060e-08,1.544257126757991192e-08,1.589676454015579324e-08,1.635095781273167456e-08,1.680515108530755588e-08,1.725934435788343720e-08,1.771353763045931852e-08,1.816773090303519984e-08,1.862192417561108116e-08,1.907611744818696248e-08,1.953031072076284380e-08,1.998450399333872511e-08,2.043869726591460643e-08,2.089289053849048775e-08,2.134708381106636907e-08,2.180127708364225039e-08,2.225547035621813171e-08,2.270966362879401303e-08,2.316385690136989435e-08,2.361805017394577567e-08,2.407224344652165699e-08,2.452643671909753831e-08,2.498062999167341963e-08,2.543482326424930095e-08,2.588901653682518227e-08,2.634320980940106359e-08,2.679740308197694491e-08,2.725159635455282623e-08,2.770578962712870754e-08,2.815998289970458886e-08,2.861417617228047018e-08 +0.000000000000000000e+00,5.194420249975382500e-10,1.038884049995076500e-09,1.558326074992614853e-09,2.077768099990153414e-09,2.597210124987691974e-09,3.116652149985230534e-09,3.636094174982769094e-09,4.155536199980307654e-09,4.674978224977846215e-09,5.194420249975384775e-09,5.713862274972923335e-09,6.233304299970461895e-09,6.752746324968000455e-09,7.272188349965539016e-09,7.791630374963078403e-09,8.311072399960616963e-09,8.830514424958155523e-09,9.349956449955694084e-09,9.869398474953232644e-09,1.038884049995077120e-08,1.090828252494830976e-08,1.142772454994584832e-08,1.194716657494338688e-08,1.246660859994092544e-08,1.298605062493846400e-08,1.350549264993600257e-08,1.402493467493354113e-08,1.454437669993107969e-08,1.506381872492861825e-08,1.558326074992615681e-08,1.610270277492369537e-08,1.662214479992123393e-08,1.714158682491877249e-08,1.766102884991631105e-08,1.818047087491384961e-08,1.869991289991138817e-08,1.921935492490892673e-08,1.973879694990646529e-08,2.025823897490400385e-08,2.077768099990154241e-08,2.129712302489908097e-08,2.181656504989661953e-08,2.233600707489415809e-08,2.285544909989169665e-08,2.337489112488923521e-08,2.389433314988677377e-08,2.441377517488431233e-08,2.493321719988185089e-08,2.545265922487938945e-08,2.597210124987692801e-08,2.649154327487446657e-08,2.701098529987200513e-08,2.753042732486954369e-08,2.804986934986708225e-08,2.856931137486462081e-08,2.908875339986215937e-08,2.960819542485969793e-08,3.012763744985723649e-08,3.064707947485477505e-08,3.116652149985231361e-08,3.168596352484985217e-08,3.220540554984739073e-08,3.272484757484492929e-08 +0.000000000000000000e+00,-4.937949415748660568e-10,-9.875898831497321137e-10,-1.481384824724598067e-09,-1.975179766299463814e-09,-2.468974707874329560e-09,-2.962769649449195307e-09,-3.456564591024061054e-09,-3.950359532598926800e-09,-4.444154474173792961e-09,-4.937949415748659121e-09,-5.431744357323525281e-09,-5.925539298898391441e-09,-6.419334240473257602e-09,-6.913129182048123762e-09,-7.406924123622989922e-09,-7.900719065197855255e-09,-8.394514006772720588e-09,-8.888308948347585921e-09,-9.382103889922451254e-09,-9.875898831497316587e-09,-1.036969377307218192e-08,-1.086348871464704725e-08,-1.135728365622191259e-08,-1.185107859779677792e-08,-1.234487353937164325e-08,-1.283866848094650859e-08,-1.333246342252137392e-08,-1.382625836409623925e-08,-1.432005330567110458e-08,-1.481384824724596992e-08,-1.530764318882083525e-08,-1.580143813039570058e-08,-1.629523307197056592e-08,-1.678902801354543125e-08,-1.728282295512029658e-08,-1.777661789669516192e-08,-1.827041283827002725e-08,-1.876420777984489258e-08,-1.925800272141975792e-08,-1.975179766299462325e-08,-2.024559260456948858e-08,-2.073938754614435391e-08,-2.123318248771921925e-08,-2.172697742929408458e-08,-2.222077237086894991e-08,-2.271456731244381525e-08,-2.320836225401868058e-08,-2.370215719559354591e-08,-2.419595213716841125e-08,-2.468974707874327658e-08,-2.518354202031814191e-08,-2.567733696189300725e-08,-2.617113190346787258e-08,-2.666492684504273791e-08,-2.715872178661760324e-08,-2.765251672819246858e-08,-2.814631166976733391e-08,-2.864010661134219924e-08,-2.913390155291706458e-08,-2.962769649449192991e-08,-3.012149143606679193e-08,-3.061528637764165065e-08,-3.110908131921650937e-08 +0.000000000000000000e+00,-4.541932726021157144e-10,-9.083865452042314289e-10,-1.362579817806347092e-09,-1.816773090408462651e-09,-2.270966363010578417e-09,-2.725159635612694183e-09,-3.179352908214809949e-09,-3.633546180816925715e-09,-4.087739453419041482e-09,-4.541932726021156834e-09,-4.996125998623272187e-09,-5.450319271225387539e-09,-5.904512543827502892e-09,-6.358705816429618244e-09,-6.812899089031733597e-09,-7.267092361633848949e-09,-7.721285634235965129e-09,-8.175478906838081309e-09,-8.629672179440197489e-09,-9.083865452042313668e-09,-9.538058724644429848e-09,-9.992251997246546028e-09,-1.044644526984866221e-08,-1.090063854245077839e-08,-1.135483181505289457e-08,-1.180902508765501075e-08,-1.226321836025712693e-08,-1.271741163285924311e-08,-1.317160490546135929e-08,-1.362579817806347547e-08,-1.407999145066559165e-08,-1.453418472326770782e-08,-1.498837799586982400e-08,-1.544257126847194018e-08,-1.589676454107405636e-08,-1.635095781367617254e-08,-1.680515108627828872e-08,-1.725934435888040490e-08,-1.771353763148252108e-08,-1.816773090408463726e-08,-1.862192417668675344e-08,-1.907611744928886962e-08,-1.953031072189098580e-08,-1.998450399449310198e-08,-2.043869726709521816e-08,-2.089289053969733434e-08,-2.134708381229945052e-08,-2.180127708490156670e-08,-2.225547035750368288e-08,-2.270966363010579906e-08,-2.316385690270791524e-08,-2.361805017531003142e-08,-2.407224344791214760e-08,-2.452643672051426378e-08,-2.498062999311637996e-08,-2.543482326571849614e-08,-2.588901653832061232e-08,-2.634320981092272850e-08,-2.679740308352484468e-08,-2.725159635612696086e-08,-2.770578962872907704e-08,-2.815998290133119322e-08,-2.861417617393330940e-08 +0.000000000000000000e+00,-5.194420249923058156e-10,-1.038884049984611631e-09,-1.558326074976917447e-09,-2.077768099969223263e-09,-2.597210124961529078e-09,-3.116652149953834894e-09,-3.636094174946140709e-09,-4.155536199938446525e-09,-4.674978224930752341e-09,-5.194420249923058156e-09,-5.713862274915363972e-09,-6.233304299907669788e-09,-6.752746324899975603e-09,-7.272188349892281419e-09,-7.791630374884587235e-09,-8.311072399876893050e-09,-8.830514424869198866e-09,-9.349956449861504682e-09,-9.869398474853810497e-09,-1.038884049984611631e-08,-1.090828252483842213e-08,-1.142772454983072794e-08,-1.194716657482303376e-08,-1.246660859981533958e-08,-1.298605062480764539e-08,-1.350549264979995121e-08,-1.402493467479225702e-08,-1.454437669978456284e-08,-1.506381872477686700e-08,-1.558326074976917116e-08,-1.610270277476147532e-08,-1.662214479975377948e-08,-1.714158682474608364e-08,-1.766102884973838781e-08,-1.818047087473069197e-08,-1.869991289972299613e-08,-1.921935492471530029e-08,-1.973879694970760445e-08,-2.025823897469990861e-08,-2.077768099969221277e-08,-2.129712302468451693e-08,-2.181656504967682110e-08,-2.233600707466912526e-08,-2.285544909966142942e-08,-2.337489112465373358e-08,-2.389433314964603774e-08,-2.441377517463834190e-08,-2.493321719963064606e-08,-2.545265922462295022e-08,-2.597210124961525439e-08,-2.649154327460755855e-08,-2.701098529959986271e-08,-2.753042732459216687e-08,-2.804986934958447103e-08,-2.856931137457677519e-08,-2.908875339956907935e-08,-2.960819542456138352e-08,-3.012763744955368768e-08,-3.064707947454599184e-08,-3.116652149953829600e-08,-3.168596352453060016e-08,-3.220540554952290432e-08,-3.272484757451520848e-08 +0.000000000000000000e+00,5.489522661783966512e-10,1.097904532356793302e-09,1.646856798535189954e-09,2.195809064713586605e-09,2.744761330891983049e-09,3.293713597070379494e-09,3.842665863248775938e-09,4.391618129427172383e-09,4.940570395605568827e-09,5.489522661783965271e-09,6.038474927962361716e-09,6.587427194140758160e-09,7.136379460319154605e-09,7.685331726497550222e-09,8.234283992675945012e-09,8.783236258854339802e-09,9.332188525032734592e-09,9.881140791211129382e-09,1.043009305738952417e-08,1.097904532356791896e-08,1.152799758974631375e-08,1.207694985592470854e-08,1.262590212210310333e-08,1.317485438828149812e-08,1.372380665445989291e-08,1.427275892063828770e-08,1.482171118681668249e-08,1.537066345299507728e-08,1.591961571917347207e-08,1.646856798535186686e-08,1.701752025153026165e-08,1.756647251770865644e-08,1.811542478388705123e-08,1.866437705006544602e-08,1.921332931624384081e-08,1.976228158242223560e-08,2.031123384860063039e-08,2.086018611477902518e-08,2.140913838095741997e-08,2.195809064713581476e-08,2.250704291331420955e-08,2.305599517949260434e-08,2.360494744567099913e-08,2.415389971184939392e-08,2.470285197802778871e-08,2.525180424420618350e-08,2.580075651038457829e-08,2.634970877656297308e-08,2.689866104274136787e-08,2.744761330891976266e-08,2.799656557509815745e-08,2.854551784127655224e-08,2.909447010745494703e-08,2.964342237363334182e-08,3.019237463981173992e-08,3.074132690599013471e-08,3.129027917216852950e-08,3.183923143834692429e-08,3.238818370452531908e-08,3.293713597070371387e-08,3.348608823688210866e-08,3.403504050306050345e-08,3.458399276923889824e-08 +0.000000000000000000e+00,5.220241805861036116e-10,1.044048361172207223e-09,1.566072541758310835e-09,2.088096722344414447e-09,2.610120902930518058e-09,3.132145083516621670e-09,3.654169264102725281e-09,4.176193444688828893e-09,4.698217625274932091e-09,5.220241805861035289e-09,5.742265986447138487e-09,6.264290167033241685e-09,6.786314347619344883e-09,7.308338528205448081e-09,7.830362708791551279e-09,8.352386889377654477e-09,8.874411069963757675e-09,9.396435250549860873e-09,9.918459431135964071e-09,1.044048361172206727e-08,1.096250779230817047e-08,1.148453197289427367e-08,1.200655615348037686e-08,1.252858033406648006e-08,1.305060451465258326e-08,1.357262869523868646e-08,1.409465287582478966e-08,1.461667705641089285e-08,1.513870123699699440e-08,1.566072541758309594e-08,1.618274959816919748e-08,1.670477377875529903e-08,1.722679795934140057e-08,1.774882213992750212e-08,1.827084632051360366e-08,1.879287050109970520e-08,1.931489468168580675e-08,1.983691886227190829e-08,2.035894304285800983e-08,2.088096722344411138e-08,2.140299140403021292e-08,2.192501558461631447e-08,2.244703976520241601e-08,2.296906394578851755e-08,2.349108812637461910e-08,2.401311230696072064e-08,2.453513648754682218e-08,2.505716066813292373e-08,2.557918484871902527e-08,2.610120902930512681e-08,2.662323320989122836e-08,2.714525739047732990e-08,2.766728157106343145e-08,2.818930575164953299e-08,2.871132993223563453e-08,2.923335411282173608e-08,2.975537829340783762e-08,3.027740247399393586e-08,3.079942665458003409e-08,3.132145083516613233e-08,3.184347501575223056e-08,3.236549919633832880e-08,3.288752337692442703e-08 +0.000000000000000000e+00,5.687837905766629699e-10,1.137567581153325940e-09,1.706351371729988806e-09,2.275135162306651466e-09,2.843918952883314126e-09,3.412702743459976786e-09,3.981486534036639859e-09,4.550270324613302932e-09,5.119054115189966006e-09,5.687837905766629079e-09,6.256621696343292152e-09,6.825405486919955226e-09,7.394189277496618299e-09,7.962973068073281372e-09,8.531756858649944446e-09,9.100540649226607519e-09,9.669324439803270592e-09,1.023810823037993367e-08,1.080689202095659674e-08,1.137567581153325981e-08,1.194445960210992289e-08,1.251324339268658596e-08,1.308202718326324903e-08,1.365081097383991211e-08,1.421959476441657518e-08,1.478837855499323825e-08,1.535716234556990298e-08,1.592594613614656605e-08,1.649472992672322913e-08,1.706351371729989220e-08,1.763229750787655527e-08,1.820108129845321835e-08,1.876986508902988142e-08,1.933864887960654449e-08,1.990743267018320757e-08,2.047621646075987064e-08,2.104500025133653371e-08,2.161378404191319679e-08,2.218256783248985986e-08,2.275135162306652293e-08,2.332013541364318601e-08,2.388891920421984908e-08,2.445770299479651215e-08,2.502648678537317523e-08,2.559527057594983830e-08,2.616405436652650137e-08,2.673283815710316445e-08,2.730162194767982752e-08,2.787040573825649059e-08,2.843918952883315367e-08,2.900797331940981674e-08,2.957675710998647981e-08,3.014554090056314289e-08,3.071432469113980596e-08,3.128310848171646903e-08,3.185189227229313211e-08,3.242067606286979518e-08,3.298945985344645825e-08,3.355824364402312133e-08,3.412702743459978440e-08,3.469581122517644747e-08,3.526459501575311055e-08,3.583337880632977362e-08 +0.000000000000000000e+00,-5.489522661725980117e-10,-1.097904532345196023e-09,-1.646856798517794139e-09,-2.195809064690392461e-09,-2.744761330862990782e-09,-3.293713597035589104e-09,-3.842665863208187013e-09,-4.391618129380784921e-09,-4.940570395553382829e-09,-5.489522661725980738e-09,-6.038474927898578646e-09,-6.587427194071176554e-09,-7.136379460243774463e-09,-7.685331726416372371e-09,-8.234283992588970279e-09,-8.783236258761568188e-09,-9.332188524934166096e-09,-9.881140791106764004e-09,-1.043009305727936191e-08,-1.097904532345195982e-08,-1.152799758962455773e-08,-1.207694985579715564e-08,-1.262590212196975355e-08,-1.317485438814235145e-08,-1.372380665431494936e-08,-1.427275892048754727e-08,-1.482171118666014518e-08,-1.537066345283274143e-08,-1.591961571900533934e-08,-1.646856798517793725e-08,-1.701752025135053516e-08,-1.756647251752313307e-08,-1.811542478369573097e-08,-1.866437704986832888e-08,-1.921332931604092679e-08,-1.976228158221352470e-08,-2.031123384838612261e-08,-2.086018611455872052e-08,-2.140913838073131842e-08,-2.195809064690391633e-08,-2.250704291307651424e-08,-2.305599517924911215e-08,-2.360494744542171006e-08,-2.415389971159430797e-08,-2.470285197776690587e-08,-2.525180424393950378e-08,-2.580075651011210169e-08,-2.634970877628469960e-08,-2.689866104245729751e-08,-2.744761330862989542e-08,-2.799656557480249332e-08,-2.854551784097509123e-08,-2.909447010714768914e-08,-2.964342237332028705e-08,-3.019237463949288496e-08,-3.074132690566548287e-08,-3.129027917183808077e-08,-3.183923143801067868e-08,-3.238818370418327659e-08,-3.293713597035587450e-08,-3.348608823652847241e-08,-3.403504050270107032e-08,-3.458399276887366822e-08 +0.000000000000000000e+00,-5.220241805906701656e-10,-1.044048361181340331e-09,-1.566072541772010600e-09,-2.088096722362681076e-09,-2.610120902953351552e-09,-3.132145083544022028e-09,-3.654169264134692503e-09,-4.176193444725362979e-09,-4.698217625316033041e-09,-5.220241805906703104e-09,-5.742265986497373166e-09,-6.264290167088043228e-09,-6.786314347678713290e-09,-7.308338528269383352e-09,-7.830362708860053415e-09,-8.352386889450724304e-09,-8.874411070041395193e-09,-9.396435250632066083e-09,-9.918459431222736972e-09,-1.044048361181340786e-08,-1.096250779240407875e-08,-1.148453197299474964e-08,-1.200655615358542053e-08,-1.252858033417609142e-08,-1.305060451476676231e-08,-1.357262869535743320e-08,-1.409465287594810409e-08,-1.461667705653877498e-08,-1.513870123712944587e-08,-1.566072541772011676e-08,-1.618274959831078764e-08,-1.670477377890145853e-08,-1.722679795949212942e-08,-1.774882214008280031e-08,-1.827084632067347120e-08,-1.879287050126414209e-08,-1.931489468185481298e-08,-1.983691886244548387e-08,-2.035894304303615476e-08,-2.088096722362682565e-08,-2.140299140421749654e-08,-2.192501558480816743e-08,-2.244703976539883832e-08,-2.296906394598950921e-08,-2.349108812658018010e-08,-2.401311230717085099e-08,-2.453513648776152187e-08,-2.505716066835219276e-08,-2.557918484894286365e-08,-2.610120902953353454e-08,-2.662323321012420543e-08,-2.714525739071487632e-08,-2.766728157130554721e-08,-2.818930575189621810e-08,-2.871132993248688899e-08,-2.923335411307755988e-08,-2.975537829366823077e-08,-3.027740247425889835e-08,-3.079942665484956924e-08,-3.132145083544024013e-08,-3.184347501603091102e-08,-3.236549919662158191e-08,-3.288752337721225280e-08 +0.000000000000000000e+00,-5.687837905490113560e-10,-1.137567581098022712e-09,-1.706351371647034171e-09,-2.275135162196045838e-09,-2.843918952745057504e-09,-3.412702743294069170e-09,-3.981486533843081250e-09,-4.550270324392093330e-09,-5.119054114941105410e-09,-5.687837905490117489e-09,-6.256621696039129569e-09,-6.825405486588141649e-09,-7.394189277137153729e-09,-7.962973067686165809e-09,-8.531756858235177888e-09,-9.100540648784189968e-09,-9.669324439333202048e-09,-1.023810822988221413e-08,-1.080689202043122621e-08,-1.137567581098023829e-08,-1.194445960152925037e-08,-1.251324339207826245e-08,-1.308202718262727453e-08,-1.365081097317628661e-08,-1.421959476372529869e-08,-1.478837855427431077e-08,-1.535716234482332285e-08,-1.592594613537233493e-08,-1.649472992592134701e-08,-1.706351371647035909e-08,-1.763229750701937117e-08,-1.820108129756838325e-08,-1.876986508811739533e-08,-1.933864887866640740e-08,-1.990743266921541948e-08,-2.047621645976443156e-08,-2.104500025031344364e-08,-2.161378404086245572e-08,-2.218256783141146780e-08,-2.275135162196047988e-08,-2.332013541250949196e-08,-2.388891920305850404e-08,-2.445770299360751612e-08,-2.502648678415652820e-08,-2.559527057470554028e-08,-2.616405436525455236e-08,-2.673283815580356444e-08,-2.730162194635257652e-08,-2.787040573690158860e-08,-2.843918952745060068e-08,-2.900797331799961276e-08,-2.957675710854862484e-08,-3.014554089909763692e-08,-3.071432468964664569e-08,-3.128310848019565446e-08,-3.185189227074466323e-08,-3.242067606129367201e-08,-3.298945985184268078e-08,-3.355824364239168955e-08,-3.412702743294069832e-08,-3.469581122348970709e-08,-3.526459501403871586e-08,-3.583337880458772463e-08 +0.000000000000000000e+00,5.894611485512290401e-10,1.178922297102458080e-09,1.768383445653687120e-09,2.357844594204916160e-09,2.947305742756144994e-09,3.536766891307373827e-09,4.126228039858602660e-09,4.715689188409831494e-09,5.305150336961060327e-09,5.894611485512289160e-09,6.484072634063517993e-09,7.073533782614746827e-09,7.662994931165975660e-09,8.252456079717205320e-09,8.841917228268434981e-09,9.431378376819664641e-09,1.002083952537089430e-08,1.061030067392212396e-08,1.119976182247335362e-08,1.178922297102458328e-08,1.237868411957581294e-08,1.296814526812704260e-08,1.355760641667827226e-08,1.414706756522950193e-08,1.473652871378073159e-08,1.532598986233196125e-08,1.591545101088319091e-08,1.650491215943442057e-08,1.709437330798565023e-08,1.768383445653687989e-08,1.827329560508810955e-08,1.886275675363933921e-08,1.945221790219056887e-08,2.004167905074179853e-08,2.063114019929302819e-08,2.122060134784425785e-08,2.181006249639548751e-08,2.239952364494671717e-08,2.298898479349794683e-08,2.357844594204917649e-08,2.416790709060040615e-08,2.475736823915163581e-08,2.534682938770286547e-08,2.593629053625409513e-08,2.652575168480532480e-08,2.711521283335655446e-08,2.770467398190778412e-08,2.829413513045901378e-08,2.888359627901024344e-08,2.947305742756147310e-08,3.006251857611270276e-08,3.065197972466392911e-08,3.124144087321515546e-08,3.183090202176638181e-08,3.242036317031760816e-08,3.300982431886883452e-08,3.359928546742006087e-08,3.418874661597128722e-08,3.477820776452251357e-08,3.536766891307373992e-08,3.595713006162496628e-08,3.654659121017619263e-08,3.713605235872741898e-08 +0.000000000000000000e+00,5.694700683862327676e-10,1.138940136772465535e-09,1.708410205158698199e-09,2.277880273544930657e-09,2.847350341931163114e-09,3.416820410317395571e-09,3.986290478703628029e-09,4.555760547089860486e-09,5.125230615476092943e-09,5.694700683862325401e-09,6.264170752248557858e-09,6.833640820634790316e-09,7.403110889021022773e-09,7.972580957407256058e-09,8.542051025793489342e-09,9.111521094179722627e-09,9.680991162565955911e-09,1.025046123095218920e-08,1.081993129933842248e-08,1.138940136772465576e-08,1.195887143611088905e-08,1.252834150449712233e-08,1.309781157288335562e-08,1.366728164126958890e-08,1.423675170965582219e-08,1.480622177804205547e-08,1.537569184642828710e-08,1.594516191481451873e-08,1.651463198320075036e-08,1.708410205158698199e-08,1.765357211997321362e-08,1.822304218835944525e-08,1.879251225674567688e-08,1.936198232513190851e-08,1.993145239351814014e-08,2.050092246190437177e-08,2.107039253029060340e-08,2.163986259867683503e-08,2.220933266706306666e-08,2.277880273544929829e-08,2.334827280383552992e-08,2.391774287222176156e-08,2.448721294060799319e-08,2.505668300899422482e-08,2.562615307738045645e-08,2.619562314576668808e-08,2.676509321415291971e-08,2.733456328253915134e-08,2.790403335092538297e-08,2.847350341931161460e-08,2.904297348769784623e-08,2.961244355608407786e-08,3.018191362447030949e-08,3.075138369285654112e-08,3.132085376124277275e-08,3.189032382962900438e-08,3.245979389801523601e-08,3.302926396640146764e-08,3.359873403478769927e-08,3.416820410317393090e-08,3.473767417156016253e-08,3.530714423994639416e-08,3.587661430833262579e-08 +0.000000000000000000e+00,6.056853525236800420e-10,1.211370705047360084e-09,1.817056057571040126e-09,2.422741410094720168e-09,3.028426762618400210e-09,3.634112115142080252e-09,4.239797467665759880e-09,4.845482820189439509e-09,5.451168172713119137e-09,6.056853525236798765e-09,6.662538877760478394e-09,7.268224230284158022e-09,7.873909582807837651e-09,8.479594935331516452e-09,9.085280287855195253e-09,9.690965640378874054e-09,1.029665099290255286e-08,1.090233634542623166e-08,1.150802169794991046e-08,1.211370705047358926e-08,1.271939240299726806e-08,1.332507775552094686e-08,1.393076310804462566e-08,1.453644846056830446e-08,1.514213381309198327e-08,1.574781916561566207e-08,1.635350451813934087e-08,1.695918987066301967e-08,1.756487522318669847e-08,1.817056057571037727e-08,1.877624592823405607e-08,1.938193128075773487e-08,1.998761663328141367e-08,2.059330198580509248e-08,2.119898733832877128e-08,2.180467269085245008e-08,2.241035804337612888e-08,2.301604339589980768e-08,2.362172874842348648e-08,2.422741410094716528e-08,2.483309945347084408e-08,2.543878480599452289e-08,2.604447015851820169e-08,2.665015551104188049e-08,2.725584086356555929e-08,2.786152621608923809e-08,2.846721156861291689e-08,2.907289692113659569e-08,2.967858227366027449e-08,3.028426762618395330e-08,3.088995297870763210e-08,3.149563833123131090e-08,3.210132368375498970e-08,3.270700903627866850e-08,3.331269438880234730e-08,3.391837974132602610e-08,3.452406509384970490e-08,3.512975044637338371e-08,3.573543579889706251e-08,3.634112115142074131e-08,3.694680650394442011e-08,3.755249185646809891e-08,3.815817720899177771e-08 +0.000000000000000000e+00,-5.894611485265699588e-10,-1.178922297053139918e-09,-1.768383445579709877e-09,-2.357844594106279835e-09,-2.947305742632849587e-09,-3.536766891159419339e-09,-4.126228039685989092e-09,-4.715689188212558844e-09,-5.305150336739128596e-09,-5.894611485265698348e-09,-6.484072633792268100e-09,-7.073533782318837852e-09,-7.662994930845406777e-09,-8.252456079371976529e-09,-8.841917227898546281e-09,-9.431378376425116033e-09,-1.002083952495168578e-08,-1.061030067347825554e-08,-1.119976182200482529e-08,-1.178922297053139504e-08,-1.237868411905796479e-08,-1.296814526758453455e-08,-1.355760641611110430e-08,-1.414706756463767405e-08,-1.473652871316424380e-08,-1.532598986169081355e-08,-1.591545101021738331e-08,-1.650491215874395306e-08,-1.709437330727052281e-08,-1.768383445579709256e-08,-1.827329560432366231e-08,-1.886275675285023207e-08,-1.945221790137680182e-08,-2.004167904990337157e-08,-2.063114019842994132e-08,-2.122060134695651107e-08,-2.181006249548308083e-08,-2.239952364400965058e-08,-2.298898479253622033e-08,-2.357844594106279008e-08,-2.416790708958935983e-08,-2.475736823811592959e-08,-2.534682938664249934e-08,-2.593629053516906909e-08,-2.652575168369563884e-08,-2.711521283222220859e-08,-2.770467398074877835e-08,-2.829413512927534810e-08,-2.888359627780191785e-08,-2.947305742632848760e-08,-3.006251857485505735e-08,-3.065197972338162711e-08,-3.124144087190819686e-08,-3.183090202043476661e-08,-3.242036316896133636e-08,-3.300982431748790611e-08,-3.359928546601447587e-08,-3.418874661454104562e-08,-3.477820776306761537e-08,-3.536766891159418512e-08,-3.595713006012075488e-08,-3.654659120864732463e-08,-3.713605235717389438e-08 +0.000000000000000000e+00,-5.694700683703575172e-10,-1.138940136740715034e-09,-1.708410205111072448e-09,-2.277880273481429655e-09,-2.847350341851786862e-09,-3.416820410222144069e-09,-3.986290478592501277e-09,-4.555760546962858484e-09,-5.125230615333215691e-09,-5.694700683703572898e-09,-6.264170752073930105e-09,-6.833640820444287312e-09,-7.403110888814644519e-09,-7.972580957185002553e-09,-8.542051025555360587e-09,-9.111521093925718622e-09,-9.680991162296076656e-09,-1.025046123066643469e-08,-1.081993129903679272e-08,-1.138940136740715076e-08,-1.195887143577750879e-08,-1.252834150414786683e-08,-1.309781157251822486e-08,-1.366728164088858290e-08,-1.423675170925894093e-08,-1.480622177762929896e-08,-1.537569184599965534e-08,-1.594516191437001172e-08,-1.651463198274036810e-08,-1.708410205111072448e-08,-1.765357211948108086e-08,-1.822304218785143724e-08,-1.879251225622179362e-08,-1.936198232459215000e-08,-1.993145239296250638e-08,-2.050092246133286276e-08,-2.107039252970321914e-08,-2.163986259807357552e-08,-2.220933266644393190e-08,-2.277880273481428828e-08,-2.334827280318464466e-08,-2.391774287155500104e-08,-2.448721293992535742e-08,-2.505668300829571380e-08,-2.562615307666607018e-08,-2.619562314503642656e-08,-2.676509321340678294e-08,-2.733456328177713932e-08,-2.790403335014749570e-08,-2.847350341851785208e-08,-2.904297348688820846e-08,-2.961244355525856484e-08,-3.018191362362892122e-08,-3.075138369199927760e-08,-3.132085376036963398e-08,-3.189032382873999036e-08,-3.245979389711034674e-08,-3.302926396548070312e-08,-3.359873403385105950e-08,-3.416820410222141588e-08,-3.473767417059177226e-08,-3.530714423896212864e-08,-3.587661430733248502e-08 +0.000000000000000000e+00,-6.056853524786148286e-10,-1.211370704957229657e-09,-1.817056057435844486e-09,-2.422741409914459314e-09,-3.028426762393074143e-09,-3.634112114871688972e-09,-4.239797467350303800e-09,-4.845482819828918629e-09,-5.451168172307533458e-09,-6.056853524786148286e-09,-6.662538877264763115e-09,-7.268224229743377943e-09,-7.873909582221991945e-09,-8.479594934700605946e-09,-9.085280287179219948e-09,-9.690965639657833949e-09,-1.029665099213644795e-08,-1.090233634461506195e-08,-1.150802169709367595e-08,-1.211370704957228995e-08,-1.271939240205090396e-08,-1.332507775452951796e-08,-1.393076310700813196e-08,-1.453644845948674596e-08,-1.514213381196535996e-08,-1.574781916444397396e-08,-1.635350451692258797e-08,-1.695918986940120197e-08,-1.756487522187981597e-08,-1.817056057435842997e-08,-1.877624592683704397e-08,-1.938193127931565797e-08,-1.998761663179427197e-08,-2.059330198427288598e-08,-2.119898733675149998e-08,-2.180467268923011398e-08,-2.241035804170872798e-08,-2.301604339418734198e-08,-2.362172874666595598e-08,-2.422741409914456998e-08,-2.483309945162318399e-08,-2.543878480410179799e-08,-2.604447015658041199e-08,-2.665015550905902599e-08,-2.725584086153763999e-08,-2.786152621401625399e-08,-2.846721156649486799e-08,-2.907289691897348200e-08,-2.967858227145209600e-08,-3.028426762393071331e-08,-3.088995297640933393e-08,-3.149563832888795454e-08,-3.210132368136657516e-08,-3.270700903384519578e-08,-3.331269438632381640e-08,-3.391837973880243702e-08,-3.452406509128105764e-08,-3.512975044375967826e-08,-3.573543579623829888e-08,-3.634112114871691950e-08,-3.694680650119554011e-08,-3.755249185367416073e-08,-3.815817720615278135e-08 +0.000000000000000000e+00,6.212708725320820709e-10,1.242541745064164142e-09,1.863812617596246316e-09,2.485083490128328697e-09,3.106354362660411078e-09,3.727625235192493459e-09,4.348896107724576254e-09,4.970166980256659049e-09,5.591437852788741843e-09,6.212708725320824638e-09,6.833979597852907433e-09,7.455250470384990228e-09,8.076521342917073022e-09,8.697792215449155817e-09,9.319063087981238612e-09,9.940333960513321406e-09,1.056160483304540420e-08,1.118287570557748700e-08,1.180414657810956979e-08,1.242541745064165259e-08,1.304668832317373538e-08,1.366795919570581817e-08,1.428923006823790097e-08,1.491050094076998376e-08,1.553177181330206656e-08,1.615304268583414935e-08,1.677431355836623215e-08,1.739558443089831494e-08,1.801685530343039774e-08,1.863812617596248053e-08,1.925939704849456333e-08,1.988066792102664612e-08,2.050193879355872892e-08,2.112320966609081171e-08,2.174448053862289451e-08,2.236575141115497730e-08,2.298702228368706009e-08,2.360829315621914289e-08,2.422956402875122568e-08,2.485083490128330848e-08,2.547210577381539127e-08,2.609337664634747407e-08,2.671464751887955686e-08,2.733591839141163966e-08,2.795718926394372245e-08,2.857846013647580525e-08,2.919973100900788804e-08,2.982100188153997415e-08,3.044227275407205694e-08,3.106354362660413973e-08,3.168481449913622253e-08,3.230608537166830532e-08,3.292735624420038812e-08,3.354862711673247091e-08,3.416989798926455371e-08,3.479116886179663650e-08,3.541243973432871930e-08,3.603371060686080209e-08,3.665498147939288489e-08,3.727625235192496768e-08,3.789752322445705048e-08,3.851879409698913327e-08,3.914006496952121607e-08 +0.000000000000000000e+00,6.054681274662843887e-10,1.210936254932568777e-09,1.816404382398853270e-09,2.421872509865137968e-09,3.027340637331422667e-09,3.632808764797707366e-09,4.238276892263992065e-09,4.843745019730276764e-09,5.449213147196561463e-09,6.054681274662846162e-09,6.660149402129130861e-09,7.265617529595415560e-09,7.871085657061700259e-09,8.476553784527984130e-09,9.082021911994268002e-09,9.687490039460551874e-09,1.029295816692683575e-08,1.089842629439311962e-08,1.150389442185940349e-08,1.210936254932568736e-08,1.271483067679197123e-08,1.332029880425825510e-08,1.392576693172453898e-08,1.453123505919082285e-08,1.513670318665710672e-08,1.574217131412339059e-08,1.634763944158967446e-08,1.695310756905595833e-08,1.755857569652224221e-08,1.816404382398852608e-08,1.876951195145480995e-08,1.937498007892109382e-08,1.998044820638737769e-08,2.058591633385366156e-08,2.119138446131994544e-08,2.179685258878622931e-08,2.240232071625251318e-08,2.300778884371879705e-08,2.361325697118508092e-08,2.421872509865136479e-08,2.482419322611764867e-08,2.542966135358393254e-08,2.603512948105021641e-08,2.664059760851650028e-08,2.724606573598278415e-08,2.785153386344906803e-08,2.845700199091535190e-08,2.906247011838163577e-08,2.966793824584791964e-08,3.027340637331420682e-08,3.087887450078049069e-08,3.148434262824677456e-08,3.208981075571305844e-08,3.269527888317934231e-08,3.330074701064562618e-08,3.390621513811191005e-08,3.451168326557819392e-08,3.511715139304447779e-08,3.572261952051076167e-08,3.632808764797704554e-08,3.693355577544332941e-08,3.753902390290961328e-08,3.814449203037589715e-08 +0.000000000000000000e+00,6.355986638268207032e-10,1.271197327653641406e-09,1.906795991480462006e-09,2.542394655307282399e-09,3.177993319134102792e-09,3.813591982960923185e-09,4.449190646787743578e-09,5.084789310614563971e-09,5.720387974441384364e-09,6.355986638268204757e-09,6.991585302095025150e-09,7.627183965921844716e-09,8.262782629748663455e-09,8.898381293575482194e-09,9.533979957402300932e-09,1.016957862122911967e-08,1.080517728505593841e-08,1.144077594888275715e-08,1.207637461270957589e-08,1.271197327653639463e-08,1.334757194036321336e-08,1.398317060419003210e-08,1.461876926801685084e-08,1.525436793184366958e-08,1.588996659567048832e-08,1.652556525949730706e-08,1.716116392332412580e-08,1.779676258715094454e-08,1.843236125097776327e-08,1.906795991480458201e-08,1.970355857863140075e-08,2.033915724245821949e-08,2.097475590628503823e-08,2.161035457011185697e-08,2.224595323393867571e-08,2.288155189776549444e-08,2.351715056159231318e-08,2.415274922541913192e-08,2.478834788924595066e-08,2.542394655307276940e-08,2.605954521689958814e-08,2.669514388072640688e-08,2.733074254455322562e-08,2.796634120838004435e-08,2.860193987220686309e-08,2.923753853603368183e-08,2.987313719986050057e-08,3.050873586368731931e-08,3.114433452751413805e-08,3.177993319134095679e-08,3.241553185516777552e-08,3.305113051899459426e-08,3.368672918282141300e-08,3.432232784664823174e-08,3.495792651047505048e-08,3.559352517430186922e-08,3.622912383812868796e-08,3.686472250195550670e-08,3.750032116578232543e-08,3.813591982960914417e-08,3.877151849343596291e-08,3.940711715726278165e-08,4.004271582108960039e-08 +0.000000000000000000e+00,-6.212708724957688420e-10,-1.242541744991537684e-09,-1.863812617487306629e-09,-2.485083489983075782e-09,-3.106354362478844934e-09,-3.727625234974614086e-09,-4.348896107470383652e-09,-4.970166979966153218e-09,-5.591437852461922783e-09,-6.212708724957692349e-09,-6.833979597453461915e-09,-7.455250469949231481e-09,-8.076521342445001047e-09,-8.697792214940770612e-09,-9.319063087436540178e-09,-9.940333959932309744e-09,-1.056160483242807931e-08,-1.118287570492384888e-08,-1.180414657741961844e-08,-1.242541744991538801e-08,-1.304668832241115757e-08,-1.366795919490692714e-08,-1.428923006740269670e-08,-1.491050093989846627e-08,-1.553177181239423584e-08,-1.615304268489000540e-08,-1.677431355738577497e-08,-1.739558442988154453e-08,-1.801685530237731410e-08,-1.863812617487308367e-08,-1.925939704736885323e-08,-1.988066791986462280e-08,-2.050193879236039236e-08,-2.112320966485616193e-08,-2.174448053735193149e-08,-2.236575140984770106e-08,-2.298702228234347063e-08,-2.360829315483924019e-08,-2.422956402733500976e-08,-2.485083489983077932e-08,-2.547210577232654889e-08,-2.609337664482231845e-08,-2.671464751731808802e-08,-2.733591838981385759e-08,-2.795718926230962715e-08,-2.857846013480539672e-08,-2.919973100730116628e-08,-2.982100187979693916e-08,-3.044227275229271203e-08,-3.106354362478848491e-08,-3.168481449728425778e-08,-3.230608536978003066e-08,-3.292735624227580353e-08,-3.354862711477157641e-08,-3.416989798726734928e-08,-3.479116885976312215e-08,-3.541243973225889503e-08,-3.603371060475466790e-08,-3.665498147725044078e-08,-3.727625234974621365e-08,-3.789752322224198653e-08,-3.851879409473775940e-08,-3.914006496723353228e-08 +0.000000000000000000e+00,-6.054681274346815398e-10,-1.210936254869363080e-09,-1.816404382304044723e-09,-2.421872509738726573e-09,-3.027340637173408423e-09,-3.632808764608090273e-09,-4.238276892042772536e-09,-4.843745019477454800e-09,-5.449213146912137064e-09,-6.054681274346819327e-09,-6.660149401781501591e-09,-7.265617529216183854e-09,-7.871085656650866118e-09,-8.476553784085548382e-09,-9.082021911520230645e-09,-9.687490038954912909e-09,-1.029295816638959517e-08,-1.089842629382427744e-08,-1.150389442125895970e-08,-1.210936254869364196e-08,-1.271483067612832423e-08,-1.332029880356300649e-08,-1.392576693099768875e-08,-1.453123505843237102e-08,-1.513670318586705328e-08,-1.574217131330173554e-08,-1.634763944073641781e-08,-1.695310756817110007e-08,-1.755857569560578234e-08,-1.816404382304046460e-08,-1.876951195047514686e-08,-1.937498007790982913e-08,-1.998044820534451139e-08,-2.058591633277919365e-08,-2.119138446021387592e-08,-2.179685258764855818e-08,-2.240232071508324044e-08,-2.300778884251792271e-08,-2.361325696995260497e-08,-2.421872509738728724e-08,-2.482419322482196950e-08,-2.542966135225665176e-08,-2.603512947969133403e-08,-2.664059760712601629e-08,-2.724606573456069855e-08,-2.785153386199538082e-08,-2.845700198943006308e-08,-2.906247011686474534e-08,-2.966793824429942761e-08,-3.027340637173410656e-08,-3.087887449916878552e-08,-3.148434262660346447e-08,-3.208981075403814343e-08,-3.269527888147282238e-08,-3.330074700890750134e-08,-3.390621513634218029e-08,-3.451168326377685925e-08,-3.511715139121153820e-08,-3.572261951864621716e-08,-3.632808764608089611e-08,-3.693355577351557507e-08,-3.753902390095025402e-08,-3.814449202838493298e-08 +0.000000000000000000e+00,-6.355986637748806884e-10,-1.271197327549761377e-09,-1.906795991324641858e-09,-2.542394655099522340e-09,-3.177993318874402822e-09,-3.813591982649283717e-09,-4.449190646424164612e-09,-5.084789310199045507e-09,-5.720387973973926402e-09,-6.355986637748807297e-09,-6.991585301523688193e-09,-7.627183965298569088e-09,-8.262782629073449156e-09,-8.898381292848329224e-09,-9.533979956623209292e-09,-1.016957862039808936e-08,-1.080517728417296943e-08,-1.144077594794784950e-08,-1.207637461172272956e-08,-1.271197327549760963e-08,-1.334757193927248970e-08,-1.398317060304736977e-08,-1.461876926682224984e-08,-1.525436793059712825e-08,-1.588996659437200666e-08,-1.652556525814688508e-08,-1.716116392192176349e-08,-1.779676258569664190e-08,-1.843236124947152032e-08,-1.906795991324639873e-08,-1.970355857702127715e-08,-2.033915724079615556e-08,-2.097475590457103397e-08,-2.161035456834591239e-08,-2.224595323212079080e-08,-2.288155189589566921e-08,-2.351715055967054763e-08,-2.415274922344542604e-08,-2.478834788722030445e-08,-2.542394655099518287e-08,-2.605954521477006128e-08,-2.669514387854493970e-08,-2.733074254231981811e-08,-2.796634120609469652e-08,-2.860193986986957494e-08,-2.923753853364445335e-08,-2.987313719741933176e-08,-3.050873586119421018e-08,-3.114433452496908859e-08,-3.177993318874396700e-08,-3.241553185251884542e-08,-3.305113051629372383e-08,-3.368672918006860225e-08,-3.432232784384348066e-08,-3.495792650761835907e-08,-3.559352517139323749e-08,-3.622912383516811590e-08,-3.686472249894299431e-08,-3.750032116271787273e-08,-3.813591982649275114e-08,-3.877151849026762955e-08,-3.940711715404250797e-08,-4.004271581781738638e-08 +0.000000000000000000e+00,6.468493221199730907e-10,1.293698644239946181e-09,1.940547966359919065e-09,2.587397288479891949e-09,3.234246610599864833e-09,3.881095932719838131e-09,4.527945254839811428e-09,5.174794576959784726e-09,5.821643899079758023e-09,6.468493221199731321e-09,7.115342543319704619e-09,7.762191865439677916e-09,8.409041187559651214e-09,9.055890509679624511e-09,9.702739831799597809e-09,1.034958915391957111e-08,1.099643847603954440e-08,1.164328779815951770e-08,1.229013712027949100e-08,1.293698644239946430e-08,1.358383576451943759e-08,1.423068508663941089e-08,1.487753440875938419e-08,1.552438373087935914e-08,1.617123305299933244e-08,1.681808237511930574e-08,1.746493169723927903e-08,1.811178101935925233e-08,1.875863034147922563e-08,1.940547966359919893e-08,2.005232898571917222e-08,2.069917830783914552e-08,2.134602762995911882e-08,2.199287695207909212e-08,2.263972627419906541e-08,2.328657559631903871e-08,2.393342491843901201e-08,2.458027424055898531e-08,2.522712356267895860e-08,2.587397288479893190e-08,2.652082220691890520e-08,2.716767152903887850e-08,2.781452085115885179e-08,2.846137017327882509e-08,2.910821949539879839e-08,2.975506881751877169e-08,3.040191813963874498e-08,3.104876746175871828e-08,3.169561678387869158e-08,3.234246610599866488e-08,3.298931542811863817e-08,3.363616475023861147e-08,3.428301407235858477e-08,3.492986339447855807e-08,3.557671271659853136e-08,3.622356203871850466e-08,3.687041136083847796e-08,3.751726068295845126e-08,3.816411000507842455e-08,3.881095932719839785e-08,3.945780864931837115e-08,4.010465797143834445e-08,4.075150729355831774e-08 +0.000000000000000000e+00,6.340608597804261322e-10,1.268121719560852264e-09,1.902182579341278500e-09,2.536243439121704942e-09,3.170304298902131385e-09,3.804365158682557827e-09,4.438426018462983856e-09,5.072486878243409885e-09,5.706547738023835914e-09,6.340608597804261942e-09,6.974669457584687971e-09,7.608730317365114000e-09,8.242791177145540029e-09,8.876852036925966058e-09,9.510912896706392086e-09,1.014497375648681812e-08,1.077903461626724414e-08,1.141309547604767017e-08,1.204715633582809620e-08,1.268121719560852223e-08,1.331527805538894826e-08,1.394933891516937429e-08,1.458339977494980032e-08,1.521746063473022469e-08,1.585152149451065072e-08,1.648558235429107675e-08,1.711964321407150278e-08,1.775370407385192881e-08,1.838776493363235484e-08,1.902182579341278086e-08,1.965588665319320689e-08,2.028994751297363292e-08,2.092400837275405895e-08,2.155806923253448498e-08,2.219213009231491101e-08,2.282619095209533704e-08,2.346025181187576307e-08,2.409431267165618909e-08,2.472837353143661512e-08,2.536243439121704115e-08,2.599649525099746718e-08,2.663055611077789321e-08,2.726461697055831924e-08,2.789867783033874527e-08,2.853273869011917130e-08,2.916679954989959732e-08,2.980086040968002335e-08,3.043492126946044938e-08,3.106898212924087541e-08,3.170304298902130144e-08,3.233710384880172747e-08,3.297116470858215350e-08,3.360522556836257953e-08,3.423928642814300556e-08,3.487334728792343158e-08,3.550740814770385761e-08,3.614146900748428364e-08,3.677552986726470967e-08,3.740959072704513570e-08,3.804365158682556173e-08,3.867771244660598776e-08,3.931177330638641379e-08,3.994583416616683981e-08 +0.000000000000000000e+00,6.617542212933583017e-10,1.323508442586716603e-09,1.985262663880074802e-09,2.647016885173432793e-09,3.308771106466790785e-09,3.970525327760148776e-09,4.632279549053507181e-09,5.294033770346865586e-09,5.955787991640223991e-09,6.617542212933582396e-09,7.279296434226940801e-09,7.941050655520299206e-09,8.602804876813657612e-09,9.264559098107016017e-09,9.926313319400374422e-09,1.058806754069373283e-08,1.124982176198709123e-08,1.191157598328044964e-08,1.257333020457380804e-08,1.323508442586716645e-08,1.389683864716052485e-08,1.455859286845388326e-08,1.522034708974724166e-08,1.588210131104060172e-08,1.654385553233396178e-08,1.720560975362732184e-08,1.786736397492068190e-08,1.852911819621404196e-08,1.919087241750740202e-08,1.985262663880076208e-08,2.051438086009412214e-08,2.117613508138748220e-08,2.183788930268084226e-08,2.249964352397420232e-08,2.316139774526756238e-08,2.382315196656092243e-08,2.448490618785428249e-08,2.514666040914764255e-08,2.580841463044100261e-08,2.647016885173436267e-08,2.713192307302772273e-08,2.779367729432108279e-08,2.845543151561444285e-08,2.911718573690780291e-08,2.977893995820116297e-08,3.044069417949452303e-08,3.110244840078788640e-08,3.176420262208124977e-08,3.242595684337461313e-08,3.308771106466797650e-08,3.374946528596133987e-08,3.441121950725470324e-08,3.507297372854806661e-08,3.573472794984142997e-08,3.639648217113479334e-08,3.705823639242815671e-08,3.771999061372152008e-08,3.838174483501488345e-08,3.904349905630824682e-08,3.970525327760161018e-08,4.036700749889497355e-08,4.102876172018833692e-08,4.169051594148170029e-08 +0.000000000000000000e+00,-6.468493220804512283e-10,-1.293698644160902457e-09,-1.940547966241353478e-09,-2.587397288321804499e-09,-3.234246610402255521e-09,-3.881095932482706956e-09,-4.527945254563158391e-09,-5.174794576643609826e-09,-5.821643898724061261e-09,-6.468493220804512696e-09,-7.115342542884964131e-09,-7.762191864965415566e-09,-8.409041187045867829e-09,-9.055890509126320091e-09,-9.702739831206772353e-09,-1.034958915328722462e-08,-1.099643847536767688e-08,-1.164328779744812914e-08,-1.229013711952858140e-08,-1.293698644160903366e-08,-1.358383576368948593e-08,-1.423068508576993819e-08,-1.487753440785039045e-08,-1.552438372993084106e-08,-1.617123305201129167e-08,-1.681808237409174227e-08,-1.746493169617219288e-08,-1.811178101825264349e-08,-1.875863034033309410e-08,-1.940547966241354471e-08,-2.005232898449399531e-08,-2.069917830657444592e-08,-2.134602762865489653e-08,-2.199287695073534714e-08,-2.263972627281579775e-08,-2.328657559489624835e-08,-2.393342491697669896e-08,-2.458027423905714957e-08,-2.522712356113760018e-08,-2.587397288321805078e-08,-2.652082220529850139e-08,-2.716767152737895200e-08,-2.781452084945940261e-08,-2.846137017153985322e-08,-2.910821949362030382e-08,-2.975506881570075443e-08,-3.040191813778120173e-08,-3.104876745986164903e-08,-3.169561678194209633e-08,-3.234246610402254363e-08,-3.298931542610299093e-08,-3.363616474818343823e-08,-3.428301407026388553e-08,-3.492986339234433283e-08,-3.557671271442478012e-08,-3.622356203650522742e-08,-3.687041135858567472e-08,-3.751726068066612202e-08,-3.816411000274656932e-08,-3.881095932482701662e-08,-3.945780864690746392e-08,-4.010465796898791122e-08,-4.075150729106835852e-08 +0.000000000000000000e+00,-6.340608597413372988e-10,-1.268121719482674598e-09,-1.902182579224012000e-09,-2.536243438965349609e-09,-3.170304298706687218e-09,-3.804365158448024827e-09,-4.438426018189362436e-09,-5.072486877930700044e-09,-5.706547737672037653e-09,-6.340608597413375262e-09,-6.974669457154712871e-09,-7.608730316896051307e-09,-8.242791176637389744e-09,-8.876852036378728180e-09,-9.510912896120066616e-09,-1.014497375586140505e-08,-1.077903461560274349e-08,-1.141309547534408192e-08,-1.204715633508542036e-08,-1.268121719482675880e-08,-1.331527805456809723e-08,-1.394933891430943567e-08,-1.458339977405077410e-08,-1.521746063379211254e-08,-1.585152149353345263e-08,-1.648558235327479272e-08,-1.711964321301613281e-08,-1.775370407275747290e-08,-1.838776493249881299e-08,-1.902182579224015308e-08,-1.965588665198149317e-08,-2.028994751172283327e-08,-2.092400837146417336e-08,-2.155806923120551345e-08,-2.219213009094685354e-08,-2.282619095068819363e-08,-2.346025181042953372e-08,-2.409431267017087381e-08,-2.472837352991221390e-08,-2.536243438965355399e-08,-2.599649524939489408e-08,-2.663055610913623417e-08,-2.726461696887757426e-08,-2.789867782861891435e-08,-2.853273868836025444e-08,-2.916679954810159453e-08,-2.980086040784293462e-08,-3.043492126758427140e-08,-3.106898212732560819e-08,-3.170304298706694497e-08,-3.233710384680828175e-08,-3.297116470654961853e-08,-3.360522556629095531e-08,-3.423928642603229210e-08,-3.487334728577362888e-08,-3.550740814551496566e-08,-3.614146900525630244e-08,-3.677552986499763922e-08,-3.740959072473897600e-08,-3.804365158448031279e-08,-3.867771244422164957e-08,-3.931177330396298635e-08,-3.994583416370432313e-08 +0.000000000000000000e+00,-6.617542212454095367e-10,-1.323508442490819073e-09,-1.985262663736228507e-09,-2.647016884981637733e-09,-3.308771106227046960e-09,-3.970525327472456186e-09,-4.632279548717865413e-09,-5.294033769963274639e-09,-5.955787991208683866e-09,-6.617542212454093092e-09,-7.279296433699502319e-09,-7.941050654944910718e-09,-8.602804876190319117e-09,-9.264559097435727517e-09,-9.926313318681135916e-09,-1.058806753992654432e-08,-1.124982176117195271e-08,-1.191157598241736111e-08,-1.257333020366276951e-08,-1.323508442490817791e-08,-1.389683864615358631e-08,-1.455859286739899471e-08,-1.522034708864440146e-08,-1.588210130988980820e-08,-1.654385553113521495e-08,-1.720560975238062169e-08,-1.786736397362602844e-08,-1.852911819487143518e-08,-1.919087241611684193e-08,-1.985262663736224867e-08,-2.051438085860765542e-08,-2.117613507985306216e-08,-2.183788930109846891e-08,-2.249964352234387565e-08,-2.316139774358928240e-08,-2.382315196483468914e-08,-2.448490618608009589e-08,-2.514666040732550263e-08,-2.580841462857090938e-08,-2.647016884981631612e-08,-2.713192307106172287e-08,-2.779367729230712961e-08,-2.845543151355253636e-08,-2.911718573479794310e-08,-2.977893995604334985e-08,-3.044069417728875659e-08,-3.110244839853416334e-08,-3.176420261977957008e-08,-3.242595684102497683e-08,-3.308771106227038357e-08,-3.374946528351579032e-08,-3.441121950476119706e-08,-3.507297372600660380e-08,-3.573472794725201055e-08,-3.639648216849741729e-08,-3.705823638974282404e-08,-3.771999061098823078e-08,-3.838174483223363753e-08,-3.904349905347904427e-08,-3.970525327472445102e-08,-4.036700749596985776e-08,-4.102876171721526451e-08,-4.169051593846067125e-08 +0.000000000000000000e+00,-7.811731392973097906e-10,-1.562346278594619581e-09,-2.343519417891929475e-09,-3.124692557189239576e-09,-3.905865696486549263e-09,-4.687038835783858950e-09,-5.468211975081168638e-09,-6.249385114378478325e-09,-7.030558253675788012e-09,-7.811731392973098526e-09,-8.592904532270409041e-09,-9.374077671567719555e-09,-1.015525081086503007e-08,-1.093642395016234058e-08,-1.171759708945965110e-08,-1.249877022875696161e-08,-1.327994336805427213e-08,-1.406111650735158264e-08,-1.484228964664889316e-08,-1.562346278594620367e-08,-1.640463592524351584e-08,-1.718580906454082801e-08,-1.796698220383814018e-08,-1.874815534313545235e-08,-1.952932848243276451e-08,-2.031050162173007668e-08,-2.109167476102738885e-08,-2.187284790032470102e-08,-2.265402103962201319e-08,-2.343519417891932536e-08,-2.421636731821663753e-08,-2.499754045751394969e-08,-2.577871359681126186e-08,-2.655988673610857403e-08,-2.734105987540588620e-08,-2.812223301470319837e-08,-2.890340615400051054e-08,-2.968457929329782271e-08,-3.046575243259513488e-08,-3.124692557189244704e-08,-3.202809871118975921e-08,-3.280927185048707138e-08,-3.359044498978438355e-08,-3.437161812908169572e-08,-3.515279126837900789e-08,-3.593396440767632006e-08,-3.671513754697363223e-08,-3.749631068627094439e-08,-3.827748382556825656e-08,-3.905865696486556873e-08,-3.983983010416288090e-08,-4.062100324346019307e-08,-4.140217638275750524e-08,-4.218334952205481741e-08,-4.296452266135212958e-08,-4.374569580064944174e-08,-4.452686893994675391e-08,-4.530804207924406608e-08,-4.608921521854137825e-08,-4.687038835783869042e-08,-4.765156149713600259e-08,-4.843273463643331476e-08,-4.921390777573062693e-08 +0.000000000000000000e+00,-9.622476404674326749e-11,-1.924495280934865350e-10,-2.886742921402298283e-10,-3.848990561869731217e-10,-4.811238202337164150e-10,-5.773485842804596567e-10,-6.735733483272028983e-10,-7.697981123739461400e-10,-8.660228764206893816e-10,-9.622476404674326232e-10,-1.058472404514175968e-09,-1.154697168560919313e-09,-1.250921932607662658e-09,-1.347146696654406003e-09,-1.443371460701149348e-09,-1.539596224747892693e-09,-1.635820988794636039e-09,-1.732045752841379384e-09,-1.828270516888122729e-09,-1.924495280934866074e-09,-2.020720044981609419e-09,-2.116944809028352764e-09,-2.213169573075096109e-09,-2.309394337121839454e-09,-2.405619101168582799e-09,-2.501843865215326144e-09,-2.598068629262069489e-09,-2.694293393308812834e-09,-2.790518157355556179e-09,-2.886742921402299524e-09,-2.982967685449042869e-09,-3.079192449495786214e-09,-3.175417213542529559e-09,-3.271641977589272904e-09,-3.367866741636016249e-09,-3.464091505682759594e-09,-3.560316269729502939e-09,-3.656541033776246284e-09,-3.752765797822990043e-09,-3.848990561869733802e-09,-3.945215325916477560e-09,-4.041440089963221319e-09,-4.137664854009965078e-09,-4.233889618056708836e-09,-4.330114382103452595e-09,-4.426339146150196353e-09,-4.522563910196940112e-09,-4.618788674243683871e-09,-4.715013438290427629e-09,-4.811238202337171388e-09,-4.907462966383915147e-09,-5.003687730430658905e-09,-5.099912494477402664e-09,-5.196137258524146423e-09,-5.292362022570890181e-09,-5.388586786617633940e-09,-5.484811550664377698e-09,-5.581036314711121457e-09,-5.677261078757865216e-09,-5.773485842804608974e-09,-5.869710606851352733e-09,-5.965935370898096492e-09,-6.062160134944840250e-09 +0.000000000000000000e+00,-6.442896122367171605e-20,-1.288579224473434321e-19,-1.932868836710151481e-19,-2.577158448946868642e-19,-3.221448061183586043e-19,-3.865737673420303444e-19,-4.510027285657020846e-19,-5.154316897893738247e-19,-5.798606510130455648e-19,-6.442896122367173049e-19,-7.087185734603890450e-19,-7.731475346840607852e-19,-8.375764959077325253e-19,-9.020054571314043617e-19,-9.664344183550762944e-19,-1.030863379578748227e-18,-1.095292340802420160e-18,-1.159721302026092093e-18,-1.224150263249764025e-18,-1.288579224473435958e-18,-1.353008185697107891e-18,-1.417437146920779823e-18,-1.481866108144451756e-18,-1.546295069368123689e-18,-1.610724030591795622e-18,-1.675152991815467554e-18,-1.739581953039139487e-18,-1.804010914262811420e-18,-1.868439875486483352e-18,-1.932868836710155285e-18,-1.997297797933827218e-18,-2.061726759157499151e-18,-2.126155720381171083e-18,-2.190584681604843016e-18,-2.255013642828514949e-18,-2.319442604052186881e-18,-2.383871565275858814e-18,-2.448300526499530747e-18,-2.512729487723202680e-18,-2.577158448946874612e-18,-2.641587410170546545e-18,-2.706016371394218478e-18,-2.770445332617890410e-18,-2.834874293841562343e-18,-2.899303255065234276e-18,-2.963732216288906209e-18,-3.028161177512578141e-18,-3.092590138736250074e-18,-3.157019099959922007e-18,-3.221448061183593939e-18,-3.285877022407265872e-18,-3.350305983630937805e-18,-3.414734944854609738e-18,-3.479163906078282056e-18,-3.543592867301954373e-18,-3.608021828525626691e-18,-3.672450789749299009e-18,-3.736879750972971327e-18,-3.801308712196643645e-18,-3.865737673420315963e-18,-3.930166634643988281e-18,-3.994595595867660599e-18,-4.059024557091332917e-18 +0.000000000000000000e+00,-7.566326230841902594e-10,-1.513265246168380519e-09,-2.269897869252570778e-09,-3.026530492336761038e-09,-3.783163115420951711e-09,-4.539795738505142384e-09,-5.296428361589333057e-09,-6.053060984673523730e-09,-6.809693607757714403e-09,-7.566326230841905076e-09,-8.322958853926095749e-09,-9.079591477010286422e-09,-9.836224100094477095e-09,-1.059285672317866777e-08,-1.134948934626285844e-08,-1.210612196934704911e-08,-1.286275459243123979e-08,-1.361938721551543046e-08,-1.437601983859962113e-08,-1.513265246168381346e-08,-1.588928508476800579e-08,-1.664591770785219811e-08,-1.740255033093639044e-08,-1.815918295402058277e-08,-1.891581557710477510e-08,-1.967244820018896742e-08,-2.042908082327315975e-08,-2.118571344635735208e-08,-2.194234606944154441e-08,-2.269897869252573673e-08,-2.345561131560992906e-08,-2.421224393869412139e-08,-2.496887656177831372e-08,-2.572550918486250604e-08,-2.648214180794669837e-08,-2.723877443103089070e-08,-2.799540705411508303e-08,-2.875203967719927535e-08,-2.950867230028346768e-08,-3.026530492336766001e-08,-3.102193754645185233e-08,-3.177857016953604466e-08,-3.253520279262023699e-08,-3.329183541570442932e-08,-3.404846803878862164e-08,-3.480510066187281397e-08,-3.556173328495700630e-08,-3.631836590804119863e-08,-3.707499853112539095e-08,-3.783163115420958328e-08,-3.858826377729377561e-08,-3.934489640037796794e-08,-4.010152902346216026e-08,-4.085816164654635259e-08,-4.161479426963054492e-08,-4.237142689271473725e-08,-4.312805951579892957e-08,-4.388469213888312190e-08,-4.464132476196731423e-08,-4.539795738505150655e-08,-4.615459000813569888e-08,-4.691122263121989121e-08,-4.766785525430408354e-08 +0.000000000000000000e+00,-3.142172215326224689e-10,-6.284344430652449378e-10,-9.426516645978675101e-10,-1.256868886130490082e-09,-1.571086107663112655e-09,-1.885303329195735020e-09,-2.199520550728357386e-09,-2.513737772260979751e-09,-2.827954993793602117e-09,-3.142172215326224482e-09,-3.456389436858846848e-09,-3.770606658391469213e-09,-4.084823879924091579e-09,-4.399041101456713944e-09,-4.713258322989336310e-09,-5.027475544521958675e-09,-5.341692766054581041e-09,-5.655909987587203406e-09,-5.970127209119825772e-09,-6.284344430652448138e-09,-6.598561652185070503e-09,-6.912778873717692869e-09,-7.226996095250315234e-09,-7.541213316782936772e-09,-7.855430538315558311e-09,-8.169647759848179849e-09,-8.483864981380801387e-09,-8.798082202913422926e-09,-9.112299424446044464e-09,-9.426516645978666002e-09,-9.740733867511287541e-09,-1.005495108904390908e-08,-1.036916831057653062e-08,-1.068338553210915216e-08,-1.099760275364177369e-08,-1.131181997517439523e-08,-1.162603719670701677e-08,-1.194025441823963831e-08,-1.225447163977225985e-08,-1.256868886130488139e-08,-1.288290608283750292e-08,-1.319712330437012446e-08,-1.351134052590274600e-08,-1.382555774743536754e-08,-1.413977496896798908e-08,-1.445399219050061062e-08,-1.476820941203323215e-08,-1.508242663356585369e-08,-1.539664385509847523e-08,-1.571086107663109677e-08,-1.602507829816371831e-08,-1.633929551969633985e-08,-1.665351274122896138e-08,-1.696772996276158292e-08,-1.728194718429420446e-08,-1.759616440582682600e-08,-1.791038162735944754e-08,-1.822459884889206908e-08,-1.853881607042469061e-08,-1.885303329195731215e-08,-1.916725051348993369e-08,-1.948146773502255523e-08,-1.979568495655517677e-08 +0.000000000000000000e+00,-8.019340131413942989e-11,-1.603868026282788598e-10,-2.405802039424183026e-10,-3.207736052565577713e-10,-4.009670065706972399e-10,-4.811604078848367086e-10,-5.613538091989762289e-10,-6.415472105131157493e-10,-7.217406118272552697e-10,-8.019340131413947900e-10,-8.821274144555343104e-10,-9.623208157696738307e-10,-1.042514217083813351e-09,-1.122707618397952871e-09,-1.202901019712092392e-09,-1.283094421026231912e-09,-1.363287822340371433e-09,-1.443481223654510953e-09,-1.523674624968650473e-09,-1.603868026282789994e-09,-1.684061427596929514e-09,-1.764254828911069034e-09,-1.844448230225208555e-09,-1.924641631539348075e-09,-2.004835032853487595e-09,-2.085028434167627116e-09,-2.165221835481766636e-09,-2.245415236795906157e-09,-2.325608638110045677e-09,-2.405802039424185197e-09,-2.485995440738324718e-09,-2.566188842052464238e-09,-2.646382243366603758e-09,-2.726575644680743279e-09,-2.806769045994882799e-09,-2.886962447309022319e-09,-2.967155848623161840e-09,-3.047349249937301360e-09,-3.127542651251440881e-09,-3.207736052565580401e-09,-3.287929453879719921e-09,-3.368122855193859442e-09,-3.448316256507998962e-09,-3.528509657822138482e-09,-3.608703059136278003e-09,-3.688896460450417523e-09,-3.769089861764556630e-09,-3.849283263078695323e-09,-3.929476664392834016e-09,-4.009670065706972709e-09,-4.089863467021111403e-09,-4.170056868335250096e-09,-4.250250269649388789e-09,-4.330443670963527482e-09,-4.410637072277666175e-09,-4.490830473591804868e-09,-4.571023874905943562e-09,-4.651217276220082255e-09,-4.731410677534220948e-09,-4.811604078848359641e-09,-4.891797480162498334e-09,-4.971990881476637028e-09,-5.052184282790775721e-09 +0.000000000000000000e+00,-3.902022899272752347e-10,-7.804045798545504694e-10,-1.170606869781825601e-09,-1.560809159709100732e-09,-1.951011449636375863e-09,-2.341213739563651202e-09,-2.731416029490926540e-09,-3.121618319418201878e-09,-3.511820609345477216e-09,-3.902022899272752554e-09,-4.292225189200027479e-09,-4.682427479127302403e-09,-5.072629769054577328e-09,-5.462832058981852252e-09,-5.853034348909127177e-09,-6.243236638836402101e-09,-6.633438928763677026e-09,-7.023641218690951950e-09,-7.413843508618226875e-09,-7.804045798545501799e-09,-8.194248088472776724e-09,-8.584450378400051648e-09,-8.974652668327326573e-09,-9.364854958254601497e-09,-9.755057248181876422e-09,-1.014525953810915135e-08,-1.053546182803642627e-08,-1.092566411796370120e-08,-1.131586640789097612e-08,-1.170606869781825104e-08,-1.209627098774552597e-08,-1.248647327767280089e-08,-1.287667556760007582e-08,-1.326687785752735074e-08,-1.365708014745462567e-08,-1.404728243738190059e-08,-1.443748472730917552e-08,-1.482768701723645044e-08,-1.521788930716372537e-08,-1.560809159709100029e-08,-1.599829388701827521e-08,-1.638849617694555014e-08,-1.677869846687282506e-08,-1.716890075680009999e-08,-1.755910304672737491e-08,-1.794930533665464984e-08,-1.833950762658192476e-08,-1.872970991650919969e-08,-1.911991220643647461e-08,-1.951011449636374954e-08,-1.990031678629102446e-08,-2.029051907621829938e-08,-2.068072136614557431e-08,-2.107092365607284923e-08,-2.146112594600012416e-08,-2.185132823592739908e-08,-2.224153052585467401e-08,-2.263173281578194893e-08,-2.302193510570922386e-08,-2.341213739563649878e-08,-2.380233968556377370e-08,-2.419254197549104863e-08,-2.458274426541832355e-08 +0.000000000000000000e+00,-6.018414368428006388e-20,-1.203682873685601278e-19,-1.805524310528402037e-19,-2.407365747371203037e-19,-3.009207184214004036e-19,-3.611048621056805036e-19,-4.212890057899606036e-19,-4.814731494742407036e-19,-5.416572931585208517e-19,-6.018414368428009999e-19,-6.620255805270811480e-19,-7.222097242113612961e-19,-7.823938678956414443e-19,-8.425780115799215924e-19,-9.027621552642017406e-19,-9.629462989484819850e-19,-1.023130442632762229e-18,-1.083314586317042474e-18,-1.143498730001322718e-18,-1.203682873685602963e-18,-1.263867017369883207e-18,-1.324051161054163452e-18,-1.384235304738443696e-18,-1.444419448422723940e-18,-1.504603592107004185e-18,-1.564787735791284429e-18,-1.624971879475564674e-18,-1.685156023159844918e-18,-1.745340166844125355e-18,-1.805524310528405792e-18,-1.865708454212686229e-18,-1.925892597896966666e-18,-1.986076741581247103e-18,-2.046260885265527540e-18,-2.106445028949807977e-18,-2.166629172634088414e-18,-2.226813316318368851e-18,-2.286997460002649288e-18,-2.347181603686929725e-18,-2.407365747371210162e-18,-2.467549891055490600e-18,-2.527734034739771037e-18,-2.587918178424051474e-18,-2.648102322108331911e-18,-2.708286465792612348e-18,-2.768470609476892785e-18,-2.828654753161173222e-18,-2.888838896845453659e-18,-2.949023040529734096e-18,-3.009207184214014533e-18,-3.069391327898294970e-18,-3.129575471582575407e-18,-3.189759615266855844e-18,-3.249943758951136281e-18,-3.310127902635416718e-18,-3.370312046319697155e-18,-3.430496190003977592e-18,-3.490680333688258414e-18,-3.550864477372539236e-18,-3.611048621056820059e-18,-3.671232764741100881e-18,-3.731416908425381703e-18,-3.791601052109662525e-18 +0.000000000000000000e+00,7.811731391689899860e-10,1.562346278337979972e-09,2.343519417506969958e-09,3.124692556675959944e-09,3.905865695844949930e-09,4.687038835013939916e-09,5.468211974182929902e-09,6.249385113351919888e-09,7.030558252520909874e-09,7.811731391689899860e-09,8.592904530858889845e-09,9.374077670027879831e-09,1.015525080919686982e-08,1.093642394836585980e-08,1.171759708753484979e-08,1.249877022670383978e-08,1.327994336587282976e-08,1.406111650504181975e-08,1.484228964421080973e-08,1.562346278337979972e-08,1.640463592254878970e-08,1.718580906171777969e-08,1.796698220088676968e-08,1.874815534005575966e-08,1.952932847922474965e-08,2.031050161839373963e-08,2.109167475756272962e-08,2.187284789673171961e-08,2.265402103590070959e-08,2.343519417506969958e-08,2.421636731423868956e-08,2.499754045340767955e-08,2.577871359257666954e-08,2.655988673174565952e-08,2.734105987091464951e-08,2.812223301008363949e-08,2.890340614925262948e-08,2.968457928842161947e-08,3.046575242759061276e-08,3.124692556675960606e-08,3.202809870592859935e-08,3.280927184509759264e-08,3.359044498426658594e-08,3.437161812343557923e-08,3.515279126260457253e-08,3.593396440177356582e-08,3.671513754094255912e-08,3.749631068011155241e-08,3.827748381928054571e-08,3.905865695844953900e-08,3.983983009761853230e-08,4.062100323678752559e-08,4.140217637595651889e-08,4.218334951512551218e-08,4.296452265429450548e-08,4.374569579346349877e-08,4.452686893263249206e-08,4.530804207180148536e-08,4.608921521097047865e-08,4.687038835013947195e-08,4.765156148930846524e-08,4.843273462847745854e-08,4.921390776764645183e-08 +0.000000000000000000e+00,9.622476393795057340e-11,1.924495278759011468e-10,2.886742918138517073e-10,3.848990557518022419e-10,4.811238196897528282e-10,5.773485836277034146e-10,6.735733475656540009e-10,7.697981115036045872e-10,8.660228754415551735e-10,9.622476393795056565e-10,1.058472403317456139e-09,1.154697167255406622e-09,1.250921931193357105e-09,1.347146695131307588e-09,1.443371459069258071e-09,1.539596223007208554e-09,1.635820986945159037e-09,1.732045750883109520e-09,1.828270514821060003e-09,1.924495278759010486e-09,2.020720042696960969e-09,2.116944806634911452e-09,2.213169570572861935e-09,2.309394334510812417e-09,2.405619098448762900e-09,2.501843862386713383e-09,2.598068626324663866e-09,2.694293390262614349e-09,2.790518154200564832e-09,2.886742918138515315e-09,2.982967682076465798e-09,3.079192446014416281e-09,3.175417209952366764e-09,3.271641973890317247e-09,3.367866737828267730e-09,3.464091501766218213e-09,3.560316265704168695e-09,3.656541029642119178e-09,3.752765793580069661e-09,3.848990557518020144e-09,3.945215321455970627e-09,4.041440085393921110e-09,4.137664849331871593e-09,4.233889613269822076e-09,4.330114377207772559e-09,4.426339141145723042e-09,4.522563905083673525e-09,4.618788669021624008e-09,4.715013432959574491e-09,4.811238196897524974e-09,4.907462960835475456e-09,5.003687724773425939e-09,5.099912488711376422e-09,5.196137252649326905e-09,5.292362016587277388e-09,5.388586780525227871e-09,5.484811544463178354e-09,5.581036308401128837e-09,5.677261072339079320e-09,5.773485836277029803e-09,5.869710600214980286e-09,5.965935364152930769e-09,6.062160128090881252e-09 +0.000000000000000000e+00,3.902022897985736862e-10,7.804045795971473725e-10,1.170606869395721059e-09,1.560809159194294745e-09,1.951011448992868638e-09,2.341213738791442531e-09,2.731416028590016424e-09,3.121618318388590317e-09,3.511820608187164210e-09,3.902022897985738103e-09,4.292225187784311996e-09,4.682427477582885889e-09,5.072629767381459782e-09,5.462832057180033675e-09,5.853034346978607568e-09,6.243236636777181461e-09,6.633438926575755354e-09,7.023641216374329247e-09,7.413843506172903140e-09,7.804045795971477860e-09,8.194248085770053408e-09,8.584450375568628955e-09,8.974652665367204503e-09,9.364854955165780050e-09,9.755057244964355597e-09,1.014525953476293114e-08,1.053546182456150669e-08,1.092566411436008224e-08,1.131586640415865779e-08,1.170606869395723333e-08,1.209627098375580888e-08,1.248647327355438443e-08,1.287667556335295998e-08,1.326687785315153552e-08,1.365708014295011107e-08,1.404728243274868662e-08,1.443748472254726217e-08,1.482768701234583771e-08,1.521788930214441326e-08,1.560809159194298881e-08,1.599829388174156436e-08,1.638849617154013990e-08,1.677869846133871545e-08,1.716890075113729100e-08,1.755910304093586654e-08,1.794930533073444209e-08,1.833950762053301764e-08,1.872970991033159319e-08,1.911991220013016873e-08,1.951011448992874428e-08,1.990031677972731983e-08,2.029051906952589538e-08,2.068072135932447092e-08,2.107092364912304647e-08,2.146112593892162202e-08,2.185132822872019757e-08,2.224153051851877311e-08,2.263173280831734866e-08,2.302193509811592421e-08,2.341213738791449976e-08,2.380233967771307530e-08,2.419254196751165085e-08,2.458274425731022640e-08 +0.000000000000000000e+00,7.566326229642585832e-10,1.513265245928517166e-09,2.269897868892775750e-09,3.026530491857034333e-09,3.783163114821292916e-09,4.539795737785551499e-09,5.296428360749810082e-09,6.053060983714068665e-09,6.809693606678327249e-09,7.566326229642585832e-09,8.322958852606845242e-09,9.079591475571104652e-09,9.836224098535364063e-09,1.059285672149962347e-08,1.134948934446388288e-08,1.210612196742814229e-08,1.286275459039240170e-08,1.361938721335666111e-08,1.437601983632092052e-08,1.513265245928518159e-08,1.588928508224944265e-08,1.664591770521370372e-08,1.740255032817796478e-08,1.815918295114222585e-08,1.891581557410648691e-08,1.967244819707074798e-08,2.042908082003500904e-08,2.118571344299927011e-08,2.194234606596353117e-08,2.269897868892779224e-08,2.345561131189205330e-08,2.421224393485631437e-08,2.496887655782057543e-08,2.572550918078483650e-08,2.648214180374909756e-08,2.723877442671335863e-08,2.799540704967761969e-08,2.875203967264188075e-08,2.950867229560614182e-08,3.026530491857040288e-08,3.102193754153466726e-08,3.177857016449893163e-08,3.253520278746319600e-08,3.329183541042746038e-08,3.404846803339172475e-08,3.480510065635598912e-08,3.556173327932025350e-08,3.631836590228451787e-08,3.707499852524878224e-08,3.783163114821304662e-08,3.858826377117731099e-08,3.934489639414157537e-08,4.010152901710583974e-08,4.085816164007010411e-08,4.161479426303436849e-08,4.237142688599863286e-08,4.312805950896289723e-08,4.388469213192716161e-08,4.464132475489142598e-08,4.539795737785569035e-08,4.615459000081995473e-08,4.691122262378421910e-08,4.766785524674848347e-08 +0.000000000000000000e+00,3.142172214141354119e-10,6.284344428282708238e-10,9.426516642424062874e-10,1.256868885656541854e-09,1.571086107070677421e-09,1.885303328484812988e-09,2.199520549898948349e-09,2.513737771313083709e-09,2.827954992727219069e-09,3.142172214141354429e-09,3.456389435555489790e-09,3.770606656969625150e-09,4.084823878383760510e-09,4.399041099797895870e-09,4.713258321212031230e-09,5.027475542626166591e-09,5.341692764040301951e-09,5.655909985454437311e-09,5.970127206868572671e-09,6.284344428282708031e-09,6.598561649696843392e-09,6.912778871110978752e-09,7.226996092525114112e-09,7.541213313939248645e-09,7.855430535353383178e-09,8.169647756767517711e-09,8.483864978181652244e-09,8.798082199595786777e-09,9.112299421009921310e-09,9.426516642424055843e-09,9.740733863838190376e-09,1.005495108525232491e-08,1.036916830666645944e-08,1.068338552808059398e-08,1.099760274949472851e-08,1.131181997090886304e-08,1.162603719232299757e-08,1.194025441373713211e-08,1.225447163515126664e-08,1.256868885656540117e-08,1.288290607797953571e-08,1.319712329939367024e-08,1.351134052080780477e-08,1.382555774222193931e-08,1.413977496363607384e-08,1.445399218505020837e-08,1.476820940646434290e-08,1.508242662787847744e-08,1.539664384929261032e-08,1.571086107070674320e-08,1.602507829212087607e-08,1.633929551353500895e-08,1.665351273494914183e-08,1.696772995636327471e-08,1.728194717777740759e-08,1.759616439919154047e-08,1.791038162060567335e-08,1.822459884201980622e-08,1.853881606343393910e-08,1.885303328484807198e-08,1.916725050626220486e-08,1.948146772767633774e-08,1.979568494909047062e-08 +0.000000000000000000e+00,8.019340121679959421e-11,1.603868024335991884e-10,2.405802036503987826e-10,3.207736048671983769e-10,4.009670060839979711e-10,4.811604073007975653e-10,5.613538085175971595e-10,6.415472097343967537e-10,7.217406109511963479e-10,8.019340121679959421e-10,8.821274133847955363e-10,9.623208146015951306e-10,1.042514215818394725e-09,1.122707617035194319e-09,1.202901018251993913e-09,1.283094419468793507e-09,1.363287820685593102e-09,1.443481221902392696e-09,1.523674623119192290e-09,1.603868024335991884e-09,1.684061425552791478e-09,1.764254826769591073e-09,1.844448227986390667e-09,1.924641629203190261e-09,2.004835030419989649e-09,2.085028431636789036e-09,2.165221832853588423e-09,2.245415234070387811e-09,2.325608635287187198e-09,2.405802036503986586e-09,2.485995437720785973e-09,2.566188838937585360e-09,2.646382240154384748e-09,2.726575641371184135e-09,2.806769042587983523e-09,2.886962443804782910e-09,2.967155845021582298e-09,3.047349246238381685e-09,3.127542647455181072e-09,3.207736048671980460e-09,3.287929449888779847e-09,3.368122851105579235e-09,3.448316252322378622e-09,3.528509653539178009e-09,3.608703054755977397e-09,3.688896455972776784e-09,3.769089857189576172e-09,3.849283258406375559e-09,3.929476659623174947e-09,4.009670060839974334e-09,4.089863462056773721e-09,4.170056863273573109e-09,4.250250264490372496e-09,4.330443665707171884e-09,4.410637066923971271e-09,4.490830468140770659e-09,4.571023869357570046e-09,4.651217270574369433e-09,4.731410671791168821e-09,4.811604073007968208e-09,4.891797474224767596e-09,4.971990875441566983e-09,5.052184276658366370e-09 +0.000000000000000000e+00,2.139414272886465519e-10,4.278828545772931037e-10,6.418242818659396556e-10,8.557657091545862074e-10,1.069707136443232656e-09,1.283648563731879104e-09,1.497589991020525553e-09,1.711531418309172001e-09,1.925472845597818450e-09,2.139414272886464898e-09,2.353355700175111347e-09,2.567297127463757795e-09,2.781238554752404244e-09,2.995179982041050692e-09,3.209121409329697141e-09,3.423062836618343589e-09,3.637004263906990037e-09,3.850945691195636900e-09,4.064887118484283762e-09,4.278828545772930624e-09,4.492769973061577486e-09,4.706711400350224348e-09,4.920652827638871210e-09,5.134594254927518072e-09,5.348535682216164934e-09,5.562477109504811796e-09,5.776418536793458658e-09,5.990359964082105520e-09,6.204301391370752382e-09,6.418242818659399244e-09,6.632184245948046106e-09,6.846125673236692968e-09,7.060067100525339830e-09,7.274008527813986692e-09,7.487949955102632727e-09,7.701891382391278762e-09,7.915832809679924797e-09,8.129774236968570832e-09,8.343715664257216867e-09,8.557657091545862902e-09,8.771598518834508936e-09,8.985539946123154971e-09,9.199481373411801006e-09,9.413422800700447041e-09,9.627364227989093076e-09,9.841305655277739111e-09,1.005524708256638515e-08,1.026918850985503118e-08,1.048312993714367722e-08,1.069707136443232325e-08,1.091101279172096929e-08,1.112495421900961532e-08,1.133889564629826135e-08,1.155283707358690739e-08,1.176677850087555342e-08,1.198071992816419946e-08,1.219466135545284549e-08,1.240860278274149153e-08,1.262254421003013756e-08,1.283648563731878360e-08,1.305042706460742963e-08,1.326436849189607567e-08,1.347830991918472170e-08 +0.000000000000000000e+00,9.091723322332397312e-11,1.818344664466479462e-10,2.727516996699719323e-10,3.636689328932959442e-10,4.545861661166199561e-10,5.455033993399439679e-10,6.364206325632679798e-10,7.273378657865919917e-10,8.182550990099160036e-10,9.091723322332400155e-10,1.000089565456564027e-09,1.091006798679888143e-09,1.181924031903212258e-09,1.272841265126536373e-09,1.363758498349860489e-09,1.454675731573184604e-09,1.545592964796508719e-09,1.636510198019832834e-09,1.727427431243156950e-09,1.818344664466481065e-09,1.909261897689805180e-09,2.000179130913129296e-09,2.091096364136453411e-09,2.182013597359777526e-09,2.272930830583101641e-09,2.363848063806425757e-09,2.454765297029749872e-09,2.545682530253073987e-09,2.636599763476398103e-09,2.727516996699722218e-09,2.818434229923046333e-09,2.909351463146370448e-09,3.000268696369694564e-09,3.091185929593018679e-09,3.182103162816342794e-09,3.273020396039666910e-09,3.363937629262991025e-09,3.454854862486315140e-09,3.545772095709639255e-09,3.636689328932963371e-09,3.727606562156287486e-09,3.818523795379612015e-09,3.909441028602936544e-09,4.000358261826261073e-09,4.091275495049585602e-09,4.182192728272910130e-09,4.273109961496234659e-09,4.364027194719559188e-09,4.454944427942883717e-09,4.545861661166208246e-09,4.636778894389532775e-09,4.727696127612857304e-09,4.818613360836181833e-09,4.909530594059506361e-09,5.000447827282830890e-09,5.091365060506155419e-09,5.182282293729479948e-09,5.273199526952804477e-09,5.364116760176129006e-09,5.455033993399453535e-09,5.545951226622778064e-09,5.636868459846102593e-09,5.727785693069427121e-09 +0.000000000000000000e+00,2.165975233781916341e-10,4.331950467563832681e-10,6.497925701345749022e-10,8.663900935127665363e-10,1.082987616890958067e-09,1.299585140269149598e-09,1.516182663647341128e-09,1.732780187025532659e-09,1.949377710403724190e-09,2.165975233781915720e-09,2.382572757160107251e-09,2.599170280538298782e-09,2.815767803916490312e-09,3.032365327294681843e-09,3.248962850672873374e-09,3.465560374051064904e-09,3.682157897429256435e-09,3.898755420807447552e-09,4.115352944185638256e-09,4.331950467563828959e-09,4.548547990942019663e-09,4.765145514320210366e-09,4.981743037698401070e-09,5.198340561076591773e-09,5.414938084454782477e-09,5.631535607832973180e-09,5.848133131211163884e-09,6.064730654589354587e-09,6.281328177967545291e-09,6.497925701345735994e-09,6.714523224723926698e-09,6.931120748102117401e-09,7.147718271480308105e-09,7.364315794858498808e-09,7.580913318236689512e-09,7.797510841614880215e-09,8.014108364993070919e-09,8.230705888371261622e-09,8.447303411749452326e-09,8.663900935127643029e-09,8.880498458505833733e-09,9.097095981884024436e-09,9.313693505262215140e-09,9.530291028640405843e-09,9.746888552018596547e-09,9.963486075396787250e-09,1.018008359877497795e-08,1.039668112215316866e-08,1.061327864553135936e-08,1.082987616890955006e-08,1.104647369228774077e-08,1.126307121566593147e-08,1.147966873904412217e-08,1.169626626242231288e-08,1.191286378580050358e-08,1.212946130917869429e-08,1.234605883255688499e-08,1.256265635593507569e-08,1.277925387931326640e-08,1.299585140269145710e-08,1.321244892606964780e-08,1.342904644944783851e-08,1.364564397282602921e-08 +0.000000000000000000e+00,-2.139414273779130143e-10,-4.278828547558260286e-10,-6.418242821337390687e-10,-8.557657095116521605e-10,-1.069707136889565252e-09,-1.283648564267478344e-09,-1.497589991645391436e-09,-1.711531419023304528e-09,-1.925472846401217620e-09,-2.139414273779130505e-09,-2.353355701157043390e-09,-2.567297128534956275e-09,-2.781238555912869160e-09,-2.995179983290782045e-09,-3.209121410668694930e-09,-3.423062838046607815e-09,-3.637004265424520700e-09,-3.850945692802433585e-09,-4.064887120180346470e-09,-4.278828547558259355e-09,-4.492769974936172240e-09,-4.706711402314085125e-09,-4.920652829691998010e-09,-5.134594257069910895e-09,-5.348535684447823780e-09,-5.562477111825736665e-09,-5.776418539203649550e-09,-5.990359966581562435e-09,-6.204301393959475320e-09,-6.418242821337388206e-09,-6.632184248715301091e-09,-6.846125676093213976e-09,-7.060067103471126861e-09,-7.274008530849039746e-09,-7.487949958226953458e-09,-7.701891385604867170e-09,-7.915832812982780882e-09,-8.129774240360694595e-09,-8.343715667738608307e-09,-8.557657095116522019e-09,-8.771598522494435731e-09,-8.985539949872349443e-09,-9.199481377250263156e-09,-9.413422804628176868e-09,-9.627364232006090580e-09,-9.841305659384004292e-09,-1.005524708676191800e-08,-1.026918851413983172e-08,-1.048312994151774543e-08,-1.069707136889565914e-08,-1.091101279627357285e-08,-1.112495422365148657e-08,-1.133889565102940028e-08,-1.155283707840731399e-08,-1.176677850578522770e-08,-1.198071993316314141e-08,-1.219466136054105513e-08,-1.240860278791896884e-08,-1.262254421529688255e-08,-1.283648564267479626e-08,-1.305042707005270998e-08,-1.326436849743062369e-08,-1.347830992480853740e-08 +0.000000000000000000e+00,-9.091723332213007690e-11,-1.818344666442601538e-10,-2.727516999663902436e-10,-3.636689332885203593e-10,-4.545861666106504750e-10,-5.455033999327805907e-10,-6.364206332549107063e-10,-7.273378665770408220e-10,-8.182550998991709377e-10,-9.091723332213010533e-10,-1.000089566543431169e-09,-1.091006799865561388e-09,-1.181924033187691607e-09,-1.272841266509821826e-09,-1.363758499831952045e-09,-1.454675733154082264e-09,-1.545592966476212483e-09,-1.636510199798342703e-09,-1.727427433120472922e-09,-1.818344666442603141e-09,-1.909261899764733153e-09,-2.000179133086863165e-09,-2.091096366408993178e-09,-2.182013599731123190e-09,-2.272930833053253202e-09,-2.363848066375383214e-09,-2.454765299697513227e-09,-2.545682533019643239e-09,-2.636599766341773251e-09,-2.727516999663903263e-09,-2.818434232986033276e-09,-2.909351466308163288e-09,-3.000268699630293300e-09,-3.091185932952423313e-09,-3.182103166274553325e-09,-3.273020399596683337e-09,-3.363937632918813349e-09,-3.454854866240943362e-09,-3.545772099563073374e-09,-3.636689332885203386e-09,-3.727606566207333398e-09,-3.818523799529462997e-09,-3.909441032851592596e-09,-4.000358266173722195e-09,-4.091275499495851793e-09,-4.182192732817981392e-09,-4.273109966140110991e-09,-4.364027199462240589e-09,-4.454944432784370188e-09,-4.545861666106499787e-09,-4.636778899428629385e-09,-4.727696132750758984e-09,-4.818613366072888583e-09,-4.909530599395018181e-09,-5.000447832717147780e-09,-5.091365066039277379e-09,-5.182282299361406977e-09,-5.273199532683536576e-09,-5.364116766005666175e-09,-5.455033999327795774e-09,-5.545951232649925372e-09,-5.636868465972054971e-09,-5.727785699294184570e-09 +0.000000000000000000e+00,-2.165975234535381461e-10,-4.331950469070762921e-10,-6.497925703606144123e-10,-8.663900938141524808e-10,-1.082987617267690446e-09,-1.299585140721228411e-09,-1.516182664174766376e-09,-1.732780187628304341e-09,-1.949377711081842306e-09,-2.165975234535380065e-09,-2.382572757988917823e-09,-2.599170281442455581e-09,-2.815767804895993340e-09,-3.032365328349531098e-09,-3.248962851803068856e-09,-3.465560375256606615e-09,-3.682157898710144373e-09,-3.898755422163682131e-09,-4.115352945617219889e-09,-4.331950469070757648e-09,-4.548547992524295406e-09,-4.765145515977833164e-09,-4.981743039431370923e-09,-5.198340562884908681e-09,-5.414938086338446439e-09,-5.631535609791984198e-09,-5.848133133245521956e-09,-6.064730656699059714e-09,-6.281328180152597473e-09,-6.497925703606135231e-09,-6.714523227059672989e-09,-6.931120750513210748e-09,-7.147718273966748506e-09,-7.364315797420286264e-09,-7.580913320873824023e-09,-7.797510844327362608e-09,-8.014108367780901193e-09,-8.230705891234439779e-09,-8.447303414687978364e-09,-8.663900938141516950e-09,-8.880498461595055535e-09,-9.097095985048594121e-09,-9.313693508502132706e-09,-9.530291031955671292e-09,-9.746888555409209877e-09,-9.963486078862748463e-09,-1.018008360231628705e-08,-1.039668112576982563e-08,-1.061327864922336422e-08,-1.082987617267690280e-08,-1.104647369613044139e-08,-1.126307121958397998e-08,-1.147966874303751856e-08,-1.169626626649105715e-08,-1.191286378994459573e-08,-1.212946131339813432e-08,-1.234605883685167290e-08,-1.256265636030521149e-08,-1.277925388375875007e-08,-1.299585140721228866e-08,-1.321244893066582725e-08,-1.342904645411936583e-08,-1.364564397757290442e-08 +0.000000000000000000e+00,3.692233123741118625e-10,7.384466247482237249e-10,1.107669937122335536e-09,1.476893249496447243e-09,1.846116561870558950e-09,2.215339874244670658e-09,2.584563186618782158e-09,2.953786498992893659e-09,3.323009811367005160e-09,3.692233123741116660e-09,4.061456436115228161e-09,4.430679748489339661e-09,4.799903060863451162e-09,5.169126373237562662e-09,5.538349685611674163e-09,5.907572997985785664e-09,6.276796310359897164e-09,6.646019622734008665e-09,7.015242935108120165e-09,7.384466247482231666e-09,7.753689559856343994e-09,8.122912872230456321e-09,8.492136184604568649e-09,8.861359496978680977e-09,9.230582809352793305e-09,9.599806121726905632e-09,9.969029434101017960e-09,1.033825274647513029e-08,1.070747605884924262e-08,1.107669937122335494e-08,1.144592268359746727e-08,1.181514599597157960e-08,1.218436930834569193e-08,1.255359262071980425e-08,1.292281593309391658e-08,1.329203924546802891e-08,1.366126255784214124e-08,1.403048587021625357e-08,1.439970918259036589e-08,1.476893249496447822e-08,1.513815580733859055e-08,1.550737911971270122e-08,1.587660243208681190e-08,1.624582574446092257e-08,1.661504905683503324e-08,1.698427236920914392e-08,1.735349568158325459e-08,1.772271899395736526e-08,1.809194230633147594e-08,1.846116561870558661e-08,1.883038893107969728e-08,1.919961224345380796e-08,1.956883555582791863e-08,1.993805886820202930e-08,2.030728218057613998e-08,2.067650549295025065e-08,2.104572880532436132e-08,2.141495211769847200e-08,2.178417543007258267e-08,2.215339874244669334e-08,2.252262205482080402e-08,2.289184536719491469e-08,2.326106867956902536e-08 +0.000000000000000000e+00,2.999378161265773807e-10,5.998756322531547614e-10,8.998134483797321421e-10,1.199751264506309523e-09,1.499689080632886903e-09,1.799626896759464284e-09,2.099564712886041665e-09,2.399502529012619045e-09,2.699440345139196426e-09,2.999378161265773807e-09,3.299315977392351188e-09,3.599253793518928568e-09,3.899191609645505535e-09,4.199129425772082502e-09,4.499067241898659469e-09,4.799005058025236437e-09,5.098942874151813404e-09,5.398880690278390371e-09,5.698818506404967338e-09,5.998756322531544305e-09,6.298694138658121272e-09,6.598631954784698239e-09,6.898569770911275206e-09,7.198507587037852173e-09,7.498445403164429140e-09,7.798383219291006108e-09,8.098321035417583075e-09,8.398258851544160042e-09,8.698196667670737009e-09,8.998134483797313976e-09,9.298072299923890943e-09,9.598010116050467910e-09,9.897947932177044877e-09,1.019788574830362184e-08,1.049782356443019881e-08,1.079776138055677578e-08,1.109769919668335275e-08,1.139763701280992971e-08,1.169757482893650668e-08,1.199751264506308365e-08,1.229745046118966061e-08,1.259738827731623758e-08,1.289732609344281455e-08,1.319726390956939152e-08,1.349720172569596848e-08,1.379713954182254545e-08,1.409707735794912242e-08,1.439701517407569938e-08,1.469695299020227635e-08,1.499689080632885497e-08,1.529682862245543525e-08,1.559676643858201552e-08,1.589670425470859580e-08,1.619664207083517608e-08,1.649657988696175635e-08,1.679651770308833663e-08,1.709645551921491690e-08,1.739639333534149718e-08,1.769633115146807745e-08,1.799626896759465773e-08,1.829620678372123801e-08,1.859614459984781828e-08,1.889608241597439856e-08 +0.000000000000000000e+00,3.682817649419504273e-10,7.365635298839008546e-10,1.104845294825851385e-09,1.473127059767801916e-09,1.841408824709752447e-09,2.209690589651702770e-09,2.577972354593653094e-09,2.946254119535603418e-09,3.314535884477553742e-09,3.682817649419504066e-09,4.051099414361454803e-09,4.419381179303405541e-09,4.787662944245356278e-09,5.155944709187307016e-09,5.524226474129257753e-09,5.892508239071208491e-09,6.260790004013159228e-09,6.629071768955109966e-09,6.997353533897060703e-09,7.365635298839011441e-09,7.733917063780962178e-09,8.102198828722912916e-09,8.470480593664863653e-09,8.838762358606814391e-09,9.207044123548765128e-09,9.575325888490715866e-09,9.943607653432666603e-09,1.031188941837461734e-08,1.068017118331656808e-08,1.104845294825851882e-08,1.141673471320046955e-08,1.178501647814242029e-08,1.215329824308437103e-08,1.252158000802632177e-08,1.288986177296827250e-08,1.325814353791022324e-08,1.362642530285217398e-08,1.399470706779412472e-08,1.436298883273607545e-08,1.473127059767802619e-08,1.509955236261997858e-08,1.546783412756193097e-08,1.583611589250388337e-08,1.620439765744583576e-08,1.657267942238778815e-08,1.694096118732974054e-08,1.730924295227169293e-08,1.767752471721364532e-08,1.804580648215559772e-08,1.841408824709755011e-08,1.878237001203950250e-08,1.915065177698145489e-08,1.951893354192340728e-08,1.988721530686535968e-08,2.025549707180731207e-08,2.062377883674926446e-08,2.099206060169121685e-08,2.136034236663316924e-08,2.172862413157512163e-08,2.209690589651707403e-08,2.246518766145902642e-08,2.283346942640097881e-08,2.320175119134293120e-08 +0.000000000000000000e+00,-3.692233124437570579e-10,-7.384466248875141159e-10,-1.107669937331271225e-09,-1.476893249775028438e-09,-1.846116562218785652e-09,-2.215339874662542865e-09,-2.584563187106300078e-09,-2.953786499550057291e-09,-3.323009811993814504e-09,-3.692233124437571717e-09,-4.061456436881328930e-09,-4.430679749325086556e-09,-4.799903061768844183e-09,-5.169126374212601809e-09,-5.538349686656359436e-09,-5.907572999100117063e-09,-6.276796311543874689e-09,-6.646019623987632316e-09,-7.015242936431389943e-09,-7.384466248875147569e-09,-7.753689561318905196e-09,-8.122912873762662822e-09,-8.492136186206420449e-09,-8.861359498650178076e-09,-9.230582811093935702e-09,-9.599806123537693329e-09,-9.969029435981450955e-09,-1.033825274842520858e-08,-1.070747606086896621e-08,-1.107669937331272384e-08,-1.144592268575648146e-08,-1.181514599820023909e-08,-1.218436931064399672e-08,-1.255359262308775434e-08,-1.292281593553151197e-08,-1.329203924797526959e-08,-1.366126256041902722e-08,-1.403048587286278485e-08,-1.439970918530654247e-08,-1.476893249775030010e-08,-1.513815581019405773e-08,-1.550737912263781701e-08,-1.587660243508157629e-08,-1.624582574752533557e-08,-1.661504905996909485e-08,-1.698427237241285413e-08,-1.735349568485661341e-08,-1.772271899730037269e-08,-1.809194230974413198e-08,-1.846116562218789126e-08,-1.883038893463165054e-08,-1.919961224707540982e-08,-1.956883555951916910e-08,-1.993805887196292838e-08,-2.030728218440668766e-08,-2.067650549685044694e-08,-2.104572880929420622e-08,-2.141495212173796550e-08,-2.178417543418172479e-08,-2.215339874662548407e-08,-2.252262205906924335e-08,-2.289184537151300263e-08,-2.326106868395676191e-08 +0.000000000000000000e+00,-2.999378162060655084e-10,-5.998756324121310169e-10,-8.998134486181965253e-10,-1.199751264824262034e-09,-1.499689081030327542e-09,-1.799626897236393051e-09,-2.099564713442458352e-09,-2.399502529648523654e-09,-2.699440345854588956e-09,-2.999378162060654257e-09,-3.299315978266719559e-09,-3.599253794472784861e-09,-3.899191610678850162e-09,-4.199129426884915050e-09,-4.499067243090979938e-09,-4.799005059297044826e-09,-5.098942875503109714e-09,-5.398880691709174602e-09,-5.698818507915239491e-09,-5.998756324121304379e-09,-6.298694140327369267e-09,-6.598631956533434155e-09,-6.898569772739499043e-09,-7.198507588945563931e-09,-7.498445405151629646e-09,-7.798383221357695361e-09,-8.098321037563761077e-09,-8.398258853769826792e-09,-8.698196669975892507e-09,-8.998134486181958222e-09,-9.298072302388023937e-09,-9.598010118594089653e-09,-9.897947934800155368e-09,-1.019788575100622108e-08,-1.049782356721228680e-08,-1.079776138341835251e-08,-1.109769919962441823e-08,-1.139763701583048394e-08,-1.169757483203654966e-08,-1.199751264824261537e-08,-1.229745046444868109e-08,-1.259738828065474681e-08,-1.289732609686081252e-08,-1.319726391306687824e-08,-1.349720172927294395e-08,-1.379713954547900967e-08,-1.409707736168507538e-08,-1.439701517789114110e-08,-1.469695299409720681e-08,-1.499689081030327253e-08,-1.529682862650933824e-08,-1.559676644271540396e-08,-1.589670425892146967e-08,-1.619664207512753539e-08,-1.649657989133360110e-08,-1.679651770753966682e-08,-1.709645552374573253e-08,-1.739639333995179825e-08,-1.769633115615786396e-08,-1.799626897236392968e-08,-1.829620678856999539e-08,-1.859614460477606111e-08,-1.889608242098212683e-08 +0.000000000000000000e+00,-3.682817649961200558e-10,-7.365635299922401115e-10,-1.104845294988360116e-09,-1.473127059984480016e-09,-1.841408824980599917e-09,-2.209690589976719818e-09,-2.577972354972839718e-09,-2.946254119968959619e-09,-3.314535884965079519e-09,-3.682817649961199420e-09,-4.051099414957319321e-09,-4.419381179953438808e-09,-4.787662944949558295e-09,-5.155944709945677782e-09,-5.524226474941797269e-09,-5.892508239937916756e-09,-6.260790004934036243e-09,-6.629071769930155730e-09,-6.997353534926275217e-09,-7.365635299922394704e-09,-7.733917064918514191e-09,-8.102198829914633678e-09,-8.470480594910753166e-09,-8.838762359906872653e-09,-9.207044124902992140e-09,-9.575325889899111627e-09,-9.943607654895231114e-09,-1.031188941989135060e-08,-1.068017118488747009e-08,-1.104845294988358958e-08,-1.141673471487970906e-08,-1.178501647987582855e-08,-1.215329824487194804e-08,-1.252158000986806752e-08,-1.288986177486418701e-08,-1.325814353986030650e-08,-1.362642530485642598e-08,-1.399470706985254547e-08,-1.436298883484866496e-08,-1.473127059984478445e-08,-1.509955236484090559e-08,-1.546783412983702507e-08,-1.583611589483314456e-08,-1.620439765982926405e-08,-1.657267942482538354e-08,-1.694096118982150302e-08,-1.730924295481762251e-08,-1.767752471981374200e-08,-1.804580648480986148e-08,-1.841408824980598097e-08,-1.878237001480210046e-08,-1.915065177979821994e-08,-1.951893354479433943e-08,-1.988721530979045892e-08,-2.025549707478657841e-08,-2.062377883978269789e-08,-2.099206060477881738e-08,-2.136034236977493687e-08,-2.172862413477105635e-08,-2.209690589976717584e-08,-2.246518766476329533e-08,-2.283346942975941482e-08,-2.320175119475553430e-08 +0.000000000000000000e+00,4.628047497288170653e-10,9.256094994576341307e-10,1.388414249186451196e-09,1.851218998915268261e-09,2.314023748644085327e-09,2.776828498372902392e-09,3.239633248101719457e-09,3.702437997830536523e-09,4.165242747559354002e-09,4.628047497288171481e-09,5.090852247016988960e-09,5.553656996745806439e-09,6.016461746474623917e-09,6.479266496203441396e-09,6.942071245932258875e-09,7.404875995661076354e-09,7.867680745389893833e-09,8.330485495118711312e-09,8.793290244847528791e-09,9.256094994576346270e-09,9.718899744305163749e-09,1.018170449403398123e-08,1.064450924376279871e-08,1.110731399349161619e-08,1.157011874322043366e-08,1.203292349294925114e-08,1.249572824267806862e-08,1.295853299240688610e-08,1.342133774213570358e-08,1.388414249186452106e-08,1.434694724159333854e-08,1.480975199132215602e-08,1.527255674105097184e-08,1.573536149077978767e-08,1.619816624050860349e-08,1.666097099023741932e-08,1.712377573996623514e-08,1.758658048969505096e-08,1.804938523942386679e-08,1.851218998915268261e-08,1.897499473888149844e-08,1.943779948861031426e-08,1.990060423833913009e-08,2.036340898806794591e-08,2.082621373779676174e-08,2.128901848752557756e-08,2.175182323725439339e-08,2.221462798698320921e-08,2.267743273671202503e-08,2.314023748644084086e-08,2.360304223616965668e-08,2.406584698589847251e-08,2.452865173562728833e-08,2.499145648535610416e-08,2.545426123508491998e-08,2.591706598481373581e-08,2.637987073454255163e-08,2.684267548427136746e-08,2.730548023400018328e-08,2.776828498372899911e-08,2.823108973345781493e-08,2.869389448318663075e-08,2.915669923291544658e-08 +0.000000000000000000e+00,4.187170558094278066e-10,8.374341116188556133e-10,1.256151167428283368e-09,1.674868223237711020e-09,2.093585279047138464e-09,2.512302334856565909e-09,2.931019390665993354e-09,3.349736446475420799e-09,3.768453502284848243e-09,4.187170558094275275e-09,4.605887613903702306e-09,5.024604669713129337e-09,5.443321725522556368e-09,5.862038781331983399e-09,6.280755837141410430e-09,6.699472892950837461e-09,7.118189948760264493e-09,7.536907004569691524e-09,7.955624060379118555e-09,8.374341116188545586e-09,8.793058171997972617e-09,9.211775227807399648e-09,9.630492283616826680e-09,1.004920933942625371e-08,1.046792639523568074e-08,1.088664345104510777e-08,1.130536050685453480e-08,1.172407756266396184e-08,1.214279461847338887e-08,1.256151167428281590e-08,1.298022873009224293e-08,1.339894578590166996e-08,1.381766284171109699e-08,1.423637989752052402e-08,1.465509695332995105e-08,1.507381400913937974e-08,1.549253106494881008e-08,1.591124812075824042e-08,1.632996517656767076e-08,1.674868223237710110e-08,1.716739928818653144e-08,1.758611634399596178e-08,1.800483339980539212e-08,1.842355045561482246e-08,1.884226751142425280e-08,1.926098456723368314e-08,1.967970162304311348e-08,2.009841867885254382e-08,2.051713573466197416e-08,2.093585279047140450e-08,2.135456984628083484e-08,2.177328690209026518e-08,2.219200395789969552e-08,2.261072101370912586e-08,2.302943806951855620e-08,2.344815512532798654e-08,2.386687218113741688e-08,2.428558923694684722e-08,2.470430629275627756e-08,2.512302334856570790e-08,2.554174040437513824e-08,2.596045746018456858e-08,2.637917451599399892e-08 +0.000000000000000000e+00,4.594918405971147074e-10,9.189836811942294149e-10,1.378475521791344071e-09,1.837967362388458623e-09,2.297459202985573382e-09,2.756951043582688141e-09,3.216442884179802900e-09,3.675934724776917660e-09,4.135426565374032419e-09,4.594918405971146764e-09,5.054410246568261110e-09,5.513902087165375455e-09,5.973393927762489801e-09,6.432885768359604146e-09,6.892377608956718492e-09,7.351869449553832838e-09,7.811361290150946356e-09,8.270853130748059874e-09,8.730344971345173393e-09,9.189836811942286911e-09,9.649328652539400429e-09,1.010882049313651395e-08,1.056831233373362747e-08,1.102780417433074098e-08,1.148729601492785450e-08,1.194678785552496802e-08,1.240627969612208154e-08,1.286577153671919506e-08,1.332526337731630858e-08,1.378475521791342209e-08,1.424424705851053561e-08,1.470373889910764913e-08,1.516323073970476265e-08,1.562272258030187617e-08,1.608221442089898969e-08,1.654170626149610320e-08,1.700119810209321672e-08,1.746068994269033024e-08,1.792018178328744376e-08,1.837967362388455728e-08,1.883916546448167080e-08,1.929865730507878432e-08,1.975814914567589783e-08,2.021764098627301135e-08,2.067713282687012487e-08,2.113662466746723839e-08,2.159611650806435191e-08,2.205560834866146543e-08,2.251510018925857894e-08,2.297459202985569246e-08,2.343408387045280598e-08,2.389357571104991950e-08,2.435306755164703302e-08,2.481255939224414654e-08,2.527205123284126005e-08,2.573154307343837357e-08,2.619103491403548709e-08,2.665052675463260061e-08,2.711001859522971413e-08,2.756951043582682765e-08,2.802900227642394116e-08,2.848849411702105468e-08,2.894798595761816820e-08 +0.000000000000000000e+00,-4.628047497804185048e-10,-9.256094995608370096e-10,-1.388414249341255566e-09,-1.851218999121674226e-09,-2.314023748902092886e-09,-2.776828498682511546e-09,-3.239633248462930206e-09,-3.702437998243348866e-09,-4.165242748023767939e-09,-4.628047497804186599e-09,-5.090852247584605259e-09,-5.553656997365023919e-09,-6.016461747145442579e-09,-6.479266496925861239e-09,-6.942071246706279899e-09,-7.404875996486698559e-09,-7.867680746267117218e-09,-8.330485496047535878e-09,-8.793290245827954538e-09,-9.256094995608373198e-09,-9.718899745388791858e-09,-1.018170449516921052e-08,-1.064450924494962918e-08,-1.110731399473004784e-08,-1.157011874451046650e-08,-1.203292349429088516e-08,-1.249572824407130382e-08,-1.295853299385172248e-08,-1.342133774363214114e-08,-1.388414249341255980e-08,-1.434694724319297846e-08,-1.480975199297339712e-08,-1.527255674275381578e-08,-1.573536149253423444e-08,-1.619816624231465310e-08,-1.666097099209507176e-08,-1.712377574187549042e-08,-1.758658049165590908e-08,-1.804938524143632774e-08,-1.851218999121674640e-08,-1.897499474099716506e-08,-1.943779949077758372e-08,-1.990060424055800238e-08,-2.036340899033842104e-08,-2.082621374011883970e-08,-2.128901848989925836e-08,-2.175182323967967702e-08,-2.221462798946009568e-08,-2.267743273924051434e-08,-2.314023748902093300e-08,-2.360304223880135166e-08,-2.406584698858177032e-08,-2.452865173836218898e-08,-2.499145648814260764e-08,-2.545426123792302629e-08,-2.591706598770344495e-08,-2.637987073748386361e-08,-2.684267548726428227e-08,-2.730548023704470093e-08,-2.776828498682511959e-08,-2.823108973660553825e-08,-2.869389448638595691e-08,-2.915669923616637557e-08 +0.000000000000000000e+00,-4.187170558698370136e-10,-8.374341117396740271e-10,-1.256151167609510989e-09,-1.674868223479347847e-09,-2.093585279349184706e-09,-2.512302335219021564e-09,-2.931019391088858423e-09,-3.349736446958695281e-09,-3.768453502828532553e-09,-4.187170558698370239e-09,-4.605887614568207925e-09,-5.024604670438045610e-09,-5.443321726307883296e-09,-5.862038782177720982e-09,-6.280755838047558667e-09,-6.699472893917396353e-09,-7.118189949787234039e-09,-7.536907005657071724e-09,-7.955624061526909410e-09,-8.374341117396747095e-09,-8.793058173266584781e-09,-9.211775229136422467e-09,-9.630492285006260152e-09,-1.004920934087609784e-08,-1.046792639674593552e-08,-1.088664345261577321e-08,-1.130536050848561089e-08,-1.172407756435544858e-08,-1.214279462022528627e-08,-1.256151167609512395e-08,-1.298022873196496164e-08,-1.339894578783479932e-08,-1.381766284370463701e-08,-1.423637989957447469e-08,-1.465509695544431238e-08,-1.507381401131415007e-08,-1.549253106718398775e-08,-1.591124812305382544e-08,-1.632996517892366312e-08,-1.674868223479350081e-08,-1.716739929066333849e-08,-1.758611634653317618e-08,-1.800483340240301387e-08,-1.842355045827285155e-08,-1.884226751414268924e-08,-1.926098457001252692e-08,-1.967970162588236461e-08,-2.009841868175220229e-08,-2.051713573762203998e-08,-2.093585279349187766e-08,-2.135456984936171535e-08,-2.177328690523155304e-08,-2.219200396110139072e-08,-2.261072101697122841e-08,-2.302943807284106609e-08,-2.344815512871090378e-08,-2.386687218458074146e-08,-2.428558924045057915e-08,-2.470430629632041684e-08,-2.512302335219025452e-08,-2.554174040806009221e-08,-2.596045746392992989e-08,-2.637917451979976758e-08 +0.000000000000000000e+00,-4.594918406317253401e-10,-9.189836812634506803e-10,-1.378475521895176124e-09,-1.837967362526901567e-09,-2.297459203158627011e-09,-2.756951043790352248e-09,-3.216442884422077484e-09,-3.675934725053802721e-09,-4.135426565685527958e-09,-4.594918406317253195e-09,-5.054410246948978431e-09,-5.513902087580703668e-09,-5.973393928212428905e-09,-6.432885768844154142e-09,-6.892377609475879378e-09,-7.351869450107604615e-09,-7.811361290739329852e-09,-8.270853131371055916e-09,-8.730344972002781980e-09,-9.189836812634508044e-09,-9.649328653266234107e-09,-1.010882049389796017e-08,-1.056831233452968624e-08,-1.102780417516141230e-08,-1.148729601579313836e-08,-1.194678785642486443e-08,-1.240627969705659049e-08,-1.286577153768831655e-08,-1.332526337832004262e-08,-1.378475521895176868e-08,-1.424424705958349475e-08,-1.470373890021522081e-08,-1.516323074084694687e-08,-1.562272258147867294e-08,-1.608221442211039900e-08,-1.654170626274212507e-08,-1.700119810337385113e-08,-1.746068994400557719e-08,-1.792018178463730326e-08,-1.837967362526902932e-08,-1.883916546590075539e-08,-1.929865730653248145e-08,-1.975814914716420751e-08,-2.021764098779593358e-08,-2.067713282842765964e-08,-2.113662466905938571e-08,-2.159611650969111177e-08,-2.205560835032283783e-08,-2.251510019095456390e-08,-2.297459203158628996e-08,-2.343408387221801603e-08,-2.389357571284974209e-08,-2.435306755348146815e-08,-2.481255939411319422e-08,-2.527205123474492028e-08,-2.573154307537664634e-08,-2.619103491600837241e-08,-2.665052675664009847e-08,-2.711001859727182454e-08,-2.756951043790355060e-08,-2.802900227853527666e-08,-2.848849411916700273e-08,-2.894798595979872879e-08 +0.000000000000000000e+00,5.249014110786456815e-10,1.049802822157291363e-09,1.574704233235937148e-09,2.099605644314583140e-09,2.624507055393229131e-09,3.149408466471875123e-09,3.674309877550521115e-09,4.199211288629167106e-09,4.724112699707812684e-09,5.249014110786458262e-09,5.773915521865103841e-09,6.298816932943749419e-09,6.823718344022394997e-09,7.348619755101040575e-09,7.873521166179686153e-09,8.398422577258332558e-09,8.923323988336978963e-09,9.448225399415625369e-09,9.973126810494271774e-09,1.049802822157291818e-08,1.102292963265156458e-08,1.154783104373021099e-08,1.207273245480885740e-08,1.259763386588750380e-08,1.312253527696615021e-08,1.364743668804479661e-08,1.417233809912344302e-08,1.469723951020208942e-08,1.522214092128073583e-08,1.574704233235938223e-08,1.627194374343802864e-08,1.679684515451667504e-08,1.732174656559532145e-08,1.784664797667396785e-08,1.837154938775261426e-08,1.889645079883126066e-08,1.942135220990990707e-08,1.994625362098855347e-08,2.047115503206719988e-08,2.099605644314584628e-08,2.152095785422449269e-08,2.204585926530313910e-08,2.257076067638178550e-08,2.309566208746043191e-08,2.362056349853907831e-08,2.414546490961772472e-08,2.467036632069637112e-08,2.519526773177501753e-08,2.572016914285366393e-08,2.624507055393231034e-08,2.676997196501095674e-08,2.729487337608960315e-08,2.781977478716824955e-08,2.834467619824689596e-08,2.886957760932554236e-08,2.939447902040418877e-08,2.991938043148283848e-08,3.044428184256149151e-08,3.096918325364014453e-08,3.149408466471879755e-08,3.201898607579745057e-08,3.254388748687610360e-08,3.306878889795475662e-08 +0.000000000000000000e+00,4.949385286477824332e-10,9.898770572955648664e-10,1.484815585943347300e-09,1.979754114591129733e-09,2.474692643238912166e-09,2.969631171886694599e-09,3.464569700534477032e-09,3.959508229182259466e-09,4.454446757830041899e-09,4.949385286477824332e-09,5.444323815125606765e-09,5.939262343773389199e-09,6.434200872421171632e-09,6.929139401068954065e-09,7.424077929716736498e-09,7.919016458364518931e-09,8.413954987012302192e-09,8.908893515660085452e-09,9.403832044307868713e-09,9.898770572955651973e-09,1.039370910160343523e-08,1.088864763025121849e-08,1.138358615889900175e-08,1.187852468754678501e-08,1.237346321619456827e-08,1.286840174484235154e-08,1.336334027349013480e-08,1.385827880213791806e-08,1.435321733078570132e-08,1.484815585943348458e-08,1.534309438808126784e-08,1.583803291672905110e-08,1.633297144537683436e-08,1.682790997402461762e-08,1.732284850267240088e-08,1.781778703132018414e-08,1.831272555996796740e-08,1.880766408861575066e-08,1.930260261726353392e-08,1.979754114591131718e-08,2.029247967455910044e-08,2.078741820320688370e-08,2.128235673185466696e-08,2.177729526050245022e-08,2.227223378915023348e-08,2.276717231779801674e-08,2.326211084644580000e-08,2.375704937509358326e-08,2.425198790374136652e-08,2.474692643238914978e-08,2.524186496103693305e-08,2.573680348968471631e-08,2.623174201833249957e-08,2.672668054698028283e-08,2.722161907562806609e-08,2.771655760427584935e-08,2.821149613292363261e-08,2.870643466157141587e-08,2.920137319021919913e-08,2.969631171886698239e-08,3.019125024751476896e-08,3.068618877616255553e-08,3.118112730481034210e-08 +0.000000000000000000e+00,5.211760156071948081e-10,1.042352031214389616e-09,1.563528046821584424e-09,2.084704062428779232e-09,2.605880078035974247e-09,3.127056093643169262e-09,3.648232109250364277e-09,4.169408124857559292e-09,4.690584140464754307e-09,5.211760156071949322e-09,5.732936171679144336e-09,6.254112187286339351e-09,6.775288202893534366e-09,7.296464218500729381e-09,7.817640234107924396e-09,8.338816249715120238e-09,8.859992265322316080e-09,9.381168280929511922e-09,9.902344296536707764e-09,1.042352031214390361e-08,1.094469632775109945e-08,1.146587234335829529e-08,1.198704835896549113e-08,1.250822437457268697e-08,1.302940039017988282e-08,1.355057640578707866e-08,1.407175242139427450e-08,1.459292843700147034e-08,1.511410445260866618e-08,1.563528046821586203e-08,1.615645648382305787e-08,1.667763249943025371e-08,1.719880851503744955e-08,1.771998453064464540e-08,1.824116054625184124e-08,1.876233656185903708e-08,1.928351257746623292e-08,1.980468859307342876e-08,2.032586460868062461e-08,2.084704062428782045e-08,2.136821663989501629e-08,2.188939265550221213e-08,2.241056867110940797e-08,2.293174468671660382e-08,2.345292070232379966e-08,2.397409671793099550e-08,2.449527273353819134e-08,2.501644874914538718e-08,2.553762476475258303e-08,2.605880078035977887e-08,2.657997679596697471e-08,2.710115281157417055e-08,2.762232882718136639e-08,2.814350484278856224e-08,2.866468085839575808e-08,2.918585687400295392e-08,2.970703288961014976e-08,3.022820890521734560e-08,3.074938492082454145e-08,3.127056093643173729e-08,3.179173695203893313e-08,3.231291296764612897e-08,3.283408898325332481e-08 +0.000000000000000000e+00,-5.249014111131676508e-10,-1.049802822226335302e-09,-1.574704233339503056e-09,-2.099605644452671017e-09,-2.624507055565838978e-09,-3.149408466679006939e-09,-3.674309877792174900e-09,-4.199211288905342860e-09,-4.724112700018510821e-09,-5.249014111131678782e-09,-5.773915522244846743e-09,-6.298816933358014704e-09,-6.823718344471182665e-09,-7.348619755584350626e-09,-7.873521166697517760e-09,-8.398422577810684067e-09,-8.923323988923850373e-09,-9.448225400037016680e-09,-9.973126811150182986e-09,-1.049802822226334929e-08,-1.102292963337651560e-08,-1.154783104448968191e-08,-1.207273245560284821e-08,-1.259763386671601452e-08,-1.312253527782918083e-08,-1.364743668894234713e-08,-1.417233810005551344e-08,-1.469723951116867975e-08,-1.522214092228184605e-08,-1.574704233339501236e-08,-1.627194374450817867e-08,-1.679684515562134497e-08,-1.732174656673451128e-08,-1.784664797784767759e-08,-1.837154938896084389e-08,-1.889645080007401020e-08,-1.942135221118717651e-08,-1.994625362230034281e-08,-2.047115503341350912e-08,-2.099605644452667542e-08,-2.152095785563984173e-08,-2.204585926675300804e-08,-2.257076067786617434e-08,-2.309566208897934065e-08,-2.362056350009250696e-08,-2.414546491120567326e-08,-2.467036632231883957e-08,-2.519526773343200588e-08,-2.572016914454517218e-08,-2.624507055565833849e-08,-2.676997196677150480e-08,-2.729487337788467110e-08,-2.781977478899783741e-08,-2.834467620011100372e-08,-2.886957761122417002e-08,-2.939447902233733633e-08,-2.991938043345050264e-08,-3.044428184456366563e-08,-3.096918325567682863e-08,-3.149408466678999163e-08,-3.201898607790315463e-08,-3.254388748901631763e-08,-3.306878890012948062e-08 +0.000000000000000000e+00,-4.949385286907965488e-10,-9.898770573815930977e-10,-1.484815586072389543e-09,-1.979754114763185782e-09,-2.474692643453982020e-09,-2.969631172144778259e-09,-3.464569700835574498e-09,-3.959508229526370736e-09,-4.454446758217166562e-09,-4.949385286907962387e-09,-5.444323815598758212e-09,-5.939262344289554037e-09,-6.434200872980349862e-09,-6.929139401671145687e-09,-7.424077930361941512e-09,-7.919016459052736510e-09,-8.413954987743531508e-09,-8.908893516434326506e-09,-9.403832045125121503e-09,-9.898770573815916501e-09,-1.039370910250671150e-08,-1.088864763119750650e-08,-1.138358615988830149e-08,-1.187852468857909649e-08,-1.237346321726989149e-08,-1.286840174596068649e-08,-1.336334027465148149e-08,-1.385827880334227648e-08,-1.435321733203307148e-08,-1.484815586072386648e-08,-1.534309438941465982e-08,-1.583803291810545317e-08,-1.633297144679624651e-08,-1.682790997548703985e-08,-1.732284850417783320e-08,-1.781778703286862654e-08,-1.831272556155941988e-08,-1.880766409025021323e-08,-1.930260261894100657e-08,-1.979754114763179992e-08,-2.029247967632259326e-08,-2.078741820501338660e-08,-2.128235673370417995e-08,-2.177729526239497329e-08,-2.227223379108576663e-08,-2.276717231977655998e-08,-2.326211084846735332e-08,-2.375704937715814666e-08,-2.425198790584894001e-08,-2.474692643453973335e-08,-2.524186496323052669e-08,-2.573680349192132004e-08,-2.623174202061211338e-08,-2.672668054930290672e-08,-2.722161907799370007e-08,-2.771655760668449341e-08,-2.821149613537528676e-08,-2.870643466406608010e-08,-2.920137319275687344e-08,-2.969631172144766679e-08,-3.019125025013846013e-08,-3.068618877882925347e-08,-3.118112730752004682e-08 +0.000000000000000000e+00,-5.211760156226978271e-10,-1.042352031245395654e-09,-1.563528046868093481e-09,-2.084704062490791308e-09,-2.605880078113489342e-09,-3.127056093736187376e-09,-3.648232109358885410e-09,-4.169408124981583444e-09,-4.690584140604281478e-09,-5.211760156226979512e-09,-5.732936171849677546e-09,-6.254112187472375580e-09,-6.775288203095073614e-09,-7.296464218717771648e-09,-7.817640234340469682e-09,-8.338816249963168543e-09,-8.859992265585867404e-09,-9.381168281208566265e-09,-9.902344296831265126e-09,-1.042352031245396399e-08,-1.094469632807666285e-08,-1.146587234369936171e-08,-1.198704835932206057e-08,-1.250822437494475943e-08,-1.302940039056745829e-08,-1.355057640619015715e-08,-1.407175242181285601e-08,-1.459292843743555488e-08,-1.511410445305825539e-08,-1.563528046868095591e-08,-1.615645648430365642e-08,-1.667763249992635694e-08,-1.719880851554905745e-08,-1.771998453117175797e-08,-1.824116054679445848e-08,-1.876233656241715900e-08,-1.928351257803985951e-08,-1.980468859366256003e-08,-2.032586460928526055e-08,-2.084704062490796106e-08,-2.136821664053066158e-08,-2.188939265615336209e-08,-2.241056867177606261e-08,-2.293174468739876312e-08,-2.345292070302146364e-08,-2.397409671864416415e-08,-2.449527273426686467e-08,-2.501644874988956518e-08,-2.553762476551226570e-08,-2.605880078113496622e-08,-2.657997679675766673e-08,-2.710115281238036725e-08,-2.762232882800306776e-08,-2.814350484362576828e-08,-2.866468085924846879e-08,-2.918585687487116931e-08,-2.970703289049386982e-08,-3.022820890611657034e-08,-3.074938492173927085e-08,-3.127056093736197137e-08,-3.179173695298467189e-08,-3.231291296860737240e-08,-3.283408898423007292e-08 +0.000000000000000000e+00,5.697765953041964988e-10,1.139553190608392998e-09,1.709329785912589600e-09,2.279106381216786409e-09,2.848882976520983218e-09,3.418659571825180027e-09,3.988436167129376836e-09,4.558212762433573645e-09,5.127989357737770454e-09,5.697765953041967263e-09,6.267542548346164072e-09,6.837319143650360881e-09,7.407095738954557690e-09,7.976872334258753672e-09,8.546648929562949654e-09,9.116425524867145635e-09,9.686202120171341617e-09,1.025597871547553760e-08,1.082575531077973358e-08,1.139553190608392956e-08,1.196530850138812554e-08,1.253508509669232153e-08,1.310486169199651751e-08,1.367463828730071349e-08,1.424441488260490947e-08,1.481419147790910545e-08,1.538396807321330309e-08,1.595374466851750073e-08,1.652352126382169836e-08,1.709329785912589600e-08,1.766307445443009363e-08,1.823285104973429127e-08,1.880262764503848891e-08,1.937240424034268654e-08,1.994218083564688418e-08,2.051195743095108182e-08,2.108173402625527945e-08,2.165151062155947709e-08,2.222128721686367472e-08,2.279106381216787236e-08,2.336084040747207000e-08,2.393061700277626763e-08,2.450039359808046527e-08,2.507017019338466290e-08,2.563994678868886054e-08,2.620972338399305818e-08,2.677949997929725581e-08,2.734927657460145345e-08,2.791905316990565109e-08,2.848882976520984872e-08,2.905860636051404636e-08,2.962838295581824399e-08,3.019815955112244163e-08,3.076793614642663927e-08,3.133771274173083690e-08,3.190748933703503454e-08,3.247726593233923218e-08,3.304704252764342981e-08,3.361681912294762745e-08,3.418659571825182508e-08,3.475637231355602272e-08,3.532614890886022036e-08,3.589592550416441799e-08 +0.000000000000000000e+00,5.478207383779638192e-10,1.095641476755927638e-09,1.643462215133891458e-09,2.191282953511855277e-09,2.739103691889818889e-09,3.286924430267782502e-09,3.834745168645746114e-09,4.382565907023709726e-09,4.930386645401673339e-09,5.478207383779636951e-09,6.026028122157600564e-09,6.573848860535564176e-09,7.121669598913527788e-09,7.669490337291492228e-09,8.217311075669456668e-09,8.765131814047421107e-09,9.312952552425385547e-09,9.860773290803349986e-09,1.040859402918131443e-08,1.095641476755927887e-08,1.150423550593724331e-08,1.205205624431520774e-08,1.259987698269317218e-08,1.314769772107113662e-08,1.369551845944910106e-08,1.424333919782706550e-08,1.479115993620502994e-08,1.533898067458299438e-08,1.588680141296095882e-08,1.643462215133892326e-08,1.698244288971688770e-08,1.753026362809485214e-08,1.807808436647281658e-08,1.862590510485078102e-08,1.917372584322874546e-08,1.972154658160670990e-08,2.026936731998467434e-08,2.081718805836263878e-08,2.136500879674060322e-08,2.191282953511856766e-08,2.246065027349653210e-08,2.300847101187449654e-08,2.355629175025246098e-08,2.410411248863042542e-08,2.465193322700838986e-08,2.519975396538635429e-08,2.574757470376431873e-08,2.629539544214228317e-08,2.684321618052024761e-08,2.739103691889821205e-08,2.793885765727617649e-08,2.848667839565414093e-08,2.903449913403210537e-08,2.958231987241006981e-08,3.013014061078803094e-08,3.067796134916599538e-08,3.122578208754395982e-08,3.177360282592192426e-08,3.232142356429988870e-08,3.286924430267785314e-08,3.341706504105581758e-08,3.396488577943378202e-08,3.451270651781174646e-08 +0.000000000000000000e+00,5.659593225112252638e-10,1.131918645022450528e-09,1.697877967533675791e-09,2.263837290044901055e-09,2.829796612556126112e-09,3.395755935067351169e-09,3.961715257578576226e-09,4.527674580089801283e-09,5.093633902601026340e-09,5.659593225112251397e-09,6.225552547623476454e-09,6.791511870134701511e-09,7.357471192645926568e-09,7.923430515157152452e-09,8.489389837668378336e-09,9.055349160179604220e-09,9.621308482690830104e-09,1.018726780520205599e-08,1.075322712771328187e-08,1.131918645022450776e-08,1.188514577273573364e-08,1.245110509524695953e-08,1.301706441775818541e-08,1.358302374026941129e-08,1.414898306278063718e-08,1.471494238529186306e-08,1.528090170780308895e-08,1.584686103031431483e-08,1.641282035282554071e-08,1.697877967533676660e-08,1.754473899784799248e-08,1.811069832035921837e-08,1.867665764287044425e-08,1.924261696538167013e-08,1.980857628789289602e-08,2.037453561040412190e-08,2.094049493291534779e-08,2.150645425542657367e-08,2.207241357793779956e-08,2.263837290044902544e-08,2.320433222296025132e-08,2.377029154547147721e-08,2.433625086798270309e-08,2.490221019049392898e-08,2.546816951300515486e-08,2.603412883551638074e-08,2.660008815802760663e-08,2.716604748053883251e-08,2.773200680305005840e-08,2.829796612556128428e-08,2.886392544807251017e-08,2.942988477058373605e-08,2.999584409309495862e-08,3.056180341560618451e-08,3.112776273811741039e-08,3.169372206062863628e-08,3.225968138313986216e-08,3.282564070565108805e-08,3.339160002816231393e-08,3.395755935067353981e-08,3.452351867318476570e-08,3.508947799569599158e-08,3.565543731820721747e-08 +0.000000000000000000e+00,-5.697765953238445199e-10,-1.139553190647689040e-09,-1.709329785971533663e-09,-2.279106381295378493e-09,-2.848882976619223323e-09,-3.418659571943068153e-09,-3.988436167266912983e-09,-4.558212762590757814e-09,-5.127989357914602644e-09,-5.697765953238447474e-09,-6.267542548562292304e-09,-6.837319143886137134e-09,-7.407095739209981964e-09,-7.976872334533827621e-09,-8.546648929857672451e-09,-9.116425525181517281e-09,-9.686202120505362112e-09,-1.025597871582920694e-08,-1.082575531115305177e-08,-1.139553190647689660e-08,-1.196530850180074143e-08,-1.253508509712458626e-08,-1.310486169244843109e-08,-1.367463828777227592e-08,-1.424441488309612075e-08,-1.481419147841996558e-08,-1.538396807374381041e-08,-1.595374466906765524e-08,-1.652352126439150007e-08,-1.709329785971534490e-08,-1.766307445503918973e-08,-1.823285105036303456e-08,-1.880262764568687939e-08,-1.937240424101072422e-08,-1.994218083633456905e-08,-2.051195743165841388e-08,-2.108173402698225871e-08,-2.165151062230610354e-08,-2.222128721762994837e-08,-2.279106381295379320e-08,-2.336084040827763803e-08,-2.393061700360148286e-08,-2.450039359892532769e-08,-2.507017019424917252e-08,-2.563994678957301735e-08,-2.620972338489686218e-08,-2.677949998022070701e-08,-2.734927657554455184e-08,-2.791905317086839667e-08,-2.848882976619224150e-08,-2.905860636151608633e-08,-2.962838295683993116e-08,-3.019815955216377599e-08,-3.076793614748762083e-08,-3.133771274281146566e-08,-3.190748933813531049e-08,-3.247726593345915532e-08,-3.304704252878300015e-08,-3.361681912410684498e-08,-3.418659571943068981e-08,-3.475637231475453464e-08,-3.532614891007837947e-08,-3.589592550540222430e-08 +0.000000000000000000e+00,-5.478207384047301431e-10,-1.095641476809460286e-09,-1.643462215214190429e-09,-2.191282953618920572e-09,-2.739103692023650922e-09,-3.286924430428381272e-09,-3.834745168833111622e-09,-4.382565907237841972e-09,-4.930386645642572321e-09,-5.478207384047302671e-09,-6.026028122452033021e-09,-6.573848860856763371e-09,-7.121669599261493721e-09,-7.669490337666224898e-09,-8.217311076070956902e-09,-8.765131814475688906e-09,-9.312952552880420911e-09,-9.860773291285152915e-09,-1.040859402968988492e-08,-1.095641476809461692e-08,-1.150423550649934893e-08,-1.205205624490408093e-08,-1.259987698330881294e-08,-1.314769772171354494e-08,-1.369551846011827694e-08,-1.424333919852300895e-08,-1.479115993692774095e-08,-1.533898067533247296e-08,-1.588680141373720496e-08,-1.643462215214193697e-08,-1.698244289054666897e-08,-1.753026362895140097e-08,-1.807808436735613298e-08,-1.862590510576086498e-08,-1.917372584416559699e-08,-1.972154658257032899e-08,-2.026936732097506099e-08,-2.081718805937979300e-08,-2.136500879778452500e-08,-2.191282953618925701e-08,-2.246065027459398901e-08,-2.300847101299872102e-08,-2.355629175140345302e-08,-2.410411248980818502e-08,-2.465193322821291703e-08,-2.519975396661764903e-08,-2.574757470502238104e-08,-2.629539544342711304e-08,-2.684321618183184505e-08,-2.739103692023657705e-08,-2.793885765864130905e-08,-2.848667839704604106e-08,-2.903449913545077306e-08,-2.958231987385550507e-08,-3.013014061226024038e-08,-3.067796135066497900e-08,-3.122578208906971762e-08,-3.177360282747445624e-08,-3.232142356587919487e-08,-3.286924430428393349e-08,-3.341706504268867211e-08,-3.396488578109341073e-08,-3.451270651949814935e-08 +0.000000000000000000e+00,-5.659593225098139902e-10,-1.131918645019627980e-09,-1.697877967529442074e-09,-2.263837290039256375e-09,-2.829796612549070675e-09,-3.395755935058884975e-09,-3.961715257568699689e-09,-4.527674580078514403e-09,-5.093633902588329117e-09,-5.659593225098143832e-09,-6.225552547607958546e-09,-6.791511870117773260e-09,-7.357471192627587974e-09,-7.923430515137402688e-09,-8.489389837647217402e-09,-9.055349160157032116e-09,-9.621308482666846830e-09,-1.018726780517666154e-08,-1.075322712768647626e-08,-1.131918645019629097e-08,-1.188514577270610569e-08,-1.245110509521592040e-08,-1.301706441772573511e-08,-1.358302374023554983e-08,-1.414898306274536454e-08,-1.471494238525517926e-08,-1.528090170776499562e-08,-1.584686103027481199e-08,-1.641282035278462836e-08,-1.697877967529444473e-08,-1.754473899780426110e-08,-1.811069832031407747e-08,-1.867665764282389383e-08,-1.924261696533371020e-08,-1.980857628784352657e-08,-2.037453561035334294e-08,-2.094049493286315931e-08,-2.150645425537297568e-08,-2.207241357788279204e-08,-2.263837290039260841e-08,-2.320433222290242478e-08,-2.377029154541224115e-08,-2.433625086792205752e-08,-2.490221019043187389e-08,-2.546816951294169026e-08,-2.603412883545150662e-08,-2.660008815796132299e-08,-2.716604748047113936e-08,-2.773200680298095573e-08,-2.829796612549077210e-08,-2.886392544800058847e-08,-2.942988477051040483e-08,-2.999584409302022120e-08,-3.056180341553003757e-08,-3.112776273803985394e-08,-3.169372206054967031e-08,-3.225968138305948668e-08,-3.282564070556930304e-08,-3.339160002807911941e-08,-3.395755935058893578e-08,-3.452351867309875215e-08,-3.508947799560856852e-08,-3.565543731811838489e-08 +0.000000000000000000e+00,6.038608460499294552e-10,1.207721692099858910e-09,1.811582538149788262e-09,2.415443384199717407e-09,3.019304230249646552e-09,3.623165076299575697e-09,4.227025922349504842e-09,4.830886768399433987e-09,5.434747614449363133e-09,6.038608460499292278e-09,6.642469306549221423e-09,7.246330152599150568e-09,7.850190998649080540e-09,8.454051844699011339e-09,9.057912690748942139e-09,9.661773536798872938e-09,1.026563438284880374e-08,1.086949522889873454e-08,1.147335607494866534e-08,1.207721692099859614e-08,1.268107776704852694e-08,1.328493861309845773e-08,1.388879945914838853e-08,1.449266030519831933e-08,1.509652115124825013e-08,1.570038199729818093e-08,1.630424284334811173e-08,1.690810368939804253e-08,1.751196453544797333e-08,1.811582538149790413e-08,1.871968622754783493e-08,1.932354707359776573e-08,1.992740791964769653e-08,2.053126876569762733e-08,2.113512961174755813e-08,2.173899045779748893e-08,2.234285130384741973e-08,2.294671214989735052e-08,2.355057299594728132e-08,2.415443384199721212e-08,2.475829468804714292e-08,2.536215553409707372e-08,2.596601638014700452e-08,2.656987722619693532e-08,2.717373807224686612e-08,2.777759891829679692e-08,2.838145976434672772e-08,2.898532061039665852e-08,2.958918145644658932e-08,3.019304230249652012e-08,3.079690314854645092e-08,3.140076399459638172e-08,3.200462484064631252e-08,3.260848568669624332e-08,3.321234653274617411e-08,3.381620737879610491e-08,3.442006822484603571e-08,3.502392907089596651e-08,3.562778991694589731e-08,3.623165076299582811e-08,3.683551160904575891e-08,3.743937245509568971e-08,3.804323330114562051e-08 +0.000000000000000000e+00,5.870917477584524428e-10,1.174183495516904886e-09,1.761275243275357328e-09,2.348366991033809771e-09,2.935458738792262007e-09,3.522550486550714243e-09,4.109642234309166479e-09,4.696733982067618715e-09,5.283825729826070951e-09,5.870917477584523187e-09,6.458009225342975423e-09,7.045100973101427659e-09,7.632192720859879068e-09,8.219284468618331304e-09,8.806376216376783540e-09,9.393467964135235776e-09,9.980559711893688012e-09,1.056765145965214025e-08,1.115474320741059248e-08,1.174183495516904472e-08,1.232892670292749696e-08,1.291601845068594919e-08,1.350311019844440143e-08,1.409020194620285366e-08,1.467729369396130590e-08,1.526438544171975814e-08,1.585147718947821037e-08,1.643856893723666261e-08,1.702566068499511484e-08,1.761275243275356708e-08,1.819984418051201932e-08,1.878693592827047155e-08,1.937402767602892379e-08,1.996111942378737602e-08,2.054821117154582826e-08,2.113530291930428050e-08,2.172239466706273273e-08,2.230948641482118497e-08,2.289657816257963720e-08,2.348366991033808944e-08,2.407076165809654168e-08,2.465785340585499391e-08,2.524494515361344615e-08,2.583203690137189838e-08,2.641912864913035062e-08,2.700622039688880286e-08,2.759331214464725509e-08,2.818040389240570733e-08,2.876749564016415956e-08,2.935458738792261180e-08,2.994167913568106404e-08,3.052877088343951627e-08,3.111586263119796851e-08,3.170295437895642074e-08,3.229004612671487298e-08,3.287713787447332522e-08,3.346422962223177745e-08,3.405132136999022969e-08,3.463841311774868192e-08,3.522550486550713416e-08,3.581259661326558640e-08,3.639968836102403863e-08,3.698678010878249087e-08 +0.000000000000000000e+00,6.002914808948593706e-10,1.200582961789718741e-09,1.800874442684578008e-09,2.401165923579437069e-09,3.001457404474296129e-09,3.601748885369155190e-09,4.202040366264014250e-09,4.802331847158873311e-09,5.402623328053732371e-09,6.002914808948591431e-09,6.603206289843450492e-09,7.203497770738309552e-09,7.803789251633168613e-09,8.404080732528028500e-09,9.004372213422888388e-09,9.604663694317748276e-09,1.020495517521260816e-08,1.080524665610746805e-08,1.140553813700232794e-08,1.200582961789718783e-08,1.260612109879204771e-08,1.320641257968690760e-08,1.380670406058176749e-08,1.440699554147662738e-08,1.500728702237148892e-08,1.560757850326635046e-08,1.620786998416121200e-08,1.680816146505607354e-08,1.740845294595093509e-08,1.800874442684579663e-08,1.860903590774065817e-08,1.920932738863551971e-08,1.980961886953038125e-08,2.040991035042524280e-08,2.101020183132010434e-08,2.161049331221496588e-08,2.221078479310982742e-08,2.281107627400468896e-08,2.341136775489955051e-08,2.401165923579441205e-08,2.461195071668927359e-08,2.521224219758413513e-08,2.581253367847899667e-08,2.641282515937385822e-08,2.701311664026871976e-08,2.761340812116358130e-08,2.821369960205844284e-08,2.881399108295330438e-08,2.941428256384816593e-08,3.001457404474303078e-08,3.061486552563789563e-08,3.121515700653276048e-08,3.181544848742762533e-08,3.241573996832249018e-08,3.301603144921735503e-08,3.361632293011221988e-08,3.421661441100708473e-08,3.481690589190194958e-08,3.541719737279681443e-08,3.601748885369167928e-08,3.661778033458654413e-08,3.721807181548140898e-08,3.781836329637627384e-08 +0.000000000000000000e+00,-6.038608460585700805e-10,-1.207721692117140161e-09,-1.811582538175710242e-09,-2.415443384234280322e-09,-3.019304230292850196e-09,-3.623165076351420069e-09,-4.227025922409989943e-09,-4.830886768468559817e-09,-5.434747614527129691e-09,-6.038608460585699564e-09,-6.642469306644269438e-09,-7.246330152702839312e-09,-7.850190998761408358e-09,-8.454051844819978232e-09,-9.057912690878548106e-09,-9.661773536937117979e-09,-1.026563438299568785e-08,-1.086949522905425773e-08,-1.147335607511282760e-08,-1.207721692117139747e-08,-1.268107776722996735e-08,-1.328493861328853722e-08,-1.388879945934710710e-08,-1.449266030540567697e-08,-1.509652115146424684e-08,-1.570038199752281672e-08,-1.630424284358138659e-08,-1.690810368963995646e-08,-1.751196453569852634e-08,-1.811582538175709621e-08,-1.871968622781566609e-08,-1.932354707387423596e-08,-1.992740791993280583e-08,-2.053126876599137571e-08,-2.113512961204994558e-08,-2.173899045810851545e-08,-2.234285130416708533e-08,-2.294671215022565520e-08,-2.355057299628422507e-08,-2.415443384234279495e-08,-2.475829468840136482e-08,-2.536215553445993470e-08,-2.596601638051850457e-08,-2.656987722657707444e-08,-2.717373807263564432e-08,-2.777759891869421419e-08,-2.838145976475278406e-08,-2.898532061081135394e-08,-2.958918145686992381e-08,-3.019304230292849369e-08,-3.079690314898706025e-08,-3.140076399504562682e-08,-3.200462484110419338e-08,-3.260848568716275995e-08,-3.321234653322132651e-08,-3.381620737927989308e-08,-3.442006822533845964e-08,-3.502392907139702621e-08,-3.562778991745559277e-08,-3.623165076351415934e-08,-3.683551160957272590e-08,-3.743937245563129247e-08,-3.804323330168985903e-08 +0.000000000000000000e+00,-5.870917477721481756e-10,-1.174183495544296351e-09,-1.761275243316444423e-09,-2.348366991088592289e-09,-2.935458738860740154e-09,-3.522550486632888020e-09,-4.109642234405035885e-09,-4.696733982177183751e-09,-5.283825729949331616e-09,-5.870917477721479481e-09,-6.458009225493627347e-09,-7.045100973265775212e-09,-7.632192721037923078e-09,-8.219284468810071770e-09,-8.806376216582220463e-09,-9.393467964354369155e-09,-9.980559712126517848e-09,-1.056765145989866654e-08,-1.115474320767081523e-08,-1.174183495544296393e-08,-1.232892670321511262e-08,-1.291601845098726131e-08,-1.350311019875941000e-08,-1.409020194653155870e-08,-1.467729369430370739e-08,-1.526438544207585608e-08,-1.585147718984800643e-08,-1.643856893762015678e-08,-1.702566068539230712e-08,-1.761275243316445747e-08,-1.819984418093660782e-08,-1.878693592870875816e-08,-1.937402767648090851e-08,-1.996111942425305886e-08,-2.054821117202520920e-08,-2.113530291979735955e-08,-2.172239466756950990e-08,-2.230948641534166024e-08,-2.289657816311381059e-08,-2.348366991088596094e-08,-2.407076165865811129e-08,-2.465785340643026163e-08,-2.524494515420241198e-08,-2.583203690197456233e-08,-2.641912864974671267e-08,-2.700622039751886302e-08,-2.759331214529101337e-08,-2.818040389306316371e-08,-2.876749564083531406e-08,-2.935458738860746441e-08,-2.994167913637961476e-08,-3.052877088415176510e-08,-3.111586263192391545e-08,-3.170295437969606580e-08,-3.229004612746821614e-08,-3.287713787524036649e-08,-3.346422962301251684e-08,-3.405132137078466718e-08,-3.463841311855681753e-08,-3.522550486632896788e-08,-3.581259661410111823e-08,-3.639968836187326857e-08,-3.698678010964541892e-08 +0.000000000000000000e+00,-6.002914808804765609e-10,-1.200582961760953122e-09,-1.800874442641429786e-09,-2.401165923521906657e-09,-3.001457404402383528e-09,-3.601748885282860400e-09,-4.202040366163337271e-09,-4.802331847043814142e-09,-5.402623327924291013e-09,-6.002914808804767884e-09,-6.603206289685244755e-09,-7.203497770565721626e-09,-7.803789251446197670e-09,-8.404080732326672887e-09,-9.004372213207148104e-09,-9.604663694087623320e-09,-1.020495517496809854e-08,-1.080524665584857375e-08,-1.140553813672904897e-08,-1.200582961760952419e-08,-1.260612109848999940e-08,-1.320641257937047462e-08,-1.380670406025094984e-08,-1.440699554113142505e-08,-1.500728702201190027e-08,-1.560757850289237549e-08,-1.620786998377285070e-08,-1.680816146465332592e-08,-1.740845294553380114e-08,-1.800874442641427635e-08,-1.860903590729475157e-08,-1.920932738817522679e-08,-1.980961886905570201e-08,-2.040991034993617722e-08,-2.101020183081665244e-08,-2.161049331169712766e-08,-2.221078479257760287e-08,-2.281107627345807809e-08,-2.341136775433855331e-08,-2.401165923521902852e-08,-2.461195071609950374e-08,-2.521224219697997896e-08,-2.581253367786045417e-08,-2.641282515874092939e-08,-2.701311663962140461e-08,-2.761340812050187982e-08,-2.821369960138235504e-08,-2.881399108226283026e-08,-2.941428256314330547e-08,-3.001457404402378069e-08,-3.061486552490425260e-08,-3.121515700578472451e-08,-3.181544848666519641e-08,-3.241573996754566832e-08,-3.301603144842614023e-08,-3.361632292930661214e-08,-3.421661441018708405e-08,-3.481690589106755595e-08,-3.541719737194802786e-08,-3.601748885282849977e-08,-3.661778033370897168e-08,-3.721807181458944359e-08,-3.781836329546991549e-08 +0.000000000000000000e+00,6.297151979390105305e-10,1.259430395878021061e-09,1.889145593817031385e-09,2.518860791756041708e-09,3.148575989695052032e-09,3.778291187634062769e-09,4.408006385573073506e-09,5.037721583512084244e-09,5.667436781451094981e-09,6.297151979390105718e-09,6.926867177329116455e-09,7.556582375268127193e-09,8.186297573207137103e-09,8.816012771146147013e-09,9.445727969085156923e-09,1.007544316702416683e-08,1.070515836496317674e-08,1.133487356290218665e-08,1.196458876084119656e-08,1.259430395878020647e-08,1.322401915671921638e-08,1.385373435465822629e-08,1.448344955259723620e-08,1.511316475053624446e-08,1.574287994847525272e-08,1.637259514641426097e-08,1.700231034435326923e-08,1.763202554229227748e-08,1.826174074023128574e-08,1.889145593817029399e-08,1.952117113610930225e-08,2.015088633404831051e-08,2.078060153198731876e-08,2.141031672992632702e-08,2.204003192786533527e-08,2.266974712580434353e-08,2.329946232374335178e-08,2.392917752168236004e-08,2.455889271962136830e-08,2.518860791756037655e-08,2.581832311549938481e-08,2.644803831343839306e-08,2.707775351137740132e-08,2.770746870931640957e-08,2.833718390725541783e-08,2.896689910519442609e-08,2.959661430313343434e-08,3.022632950107244260e-08,3.085604469901144754e-08,3.148575989695045249e-08,3.211547509488945744e-08,3.274519029282846238e-08,3.337490549076746733e-08,3.400462068870647228e-08,3.463433588664547723e-08,3.526405108458448217e-08,3.589376628252348712e-08,3.652348148046249207e-08,3.715319667840149701e-08,3.778291187634050196e-08,3.841262707427950691e-08,3.904234227221851185e-08,3.967205747015751680e-08 +0.000000000000000000e+00,6.170976391923370257e-10,1.234195278384674051e-09,1.851292917577011077e-09,2.468390556769348103e-09,3.085488195961685335e-09,3.702585835154022568e-09,4.319683474346359800e-09,4.936781113538697033e-09,5.553878752731034265e-09,6.170976391923371498e-09,6.788074031115708730e-09,7.405171670308045963e-09,8.022269309500383195e-09,8.639366948692719600e-09,9.256464587885056006e-09,9.873562227077392411e-09,1.049065986626972882e-08,1.110775750546206522e-08,1.172485514465440163e-08,1.234195278384673803e-08,1.295905042303907444e-08,1.357614806223141084e-08,1.419324570142374725e-08,1.481034334061608365e-08,1.542744097980842006e-08,1.604453861900075646e-08,1.666163625819309287e-08,1.727873389738542927e-08,1.789583153657776568e-08,1.851292917577010209e-08,1.913002681496243849e-08,1.974712445415477490e-08,2.036422209334711130e-08,2.098131973253944771e-08,2.159841737173178411e-08,2.221551501092412052e-08,2.283261265011645692e-08,2.344971028930879333e-08,2.406680792850112973e-08,2.468390556769346614e-08,2.530100320688580254e-08,2.591810084607813895e-08,2.653519848527047535e-08,2.715229612446281176e-08,2.776939376365514817e-08,2.838649140284748457e-08,2.900358904203982098e-08,2.962068668123215738e-08,3.023778432042449709e-08,3.085488195961683350e-08,3.147197959880916991e-08,3.208907723800150631e-08,3.270617487719384272e-08,3.332327251638617912e-08,3.394037015557851553e-08,3.455746779477085193e-08,3.517456543396318834e-08,3.579166307315552474e-08,3.640876071234786115e-08,3.702585835154019755e-08,3.764295599073253396e-08,3.826005362992487036e-08,3.887715126911720677e-08 +0.000000000000000000e+00,6.278113310186751539e-10,1.255622662037350308e-09,1.883433993056025565e-09,2.511245324074701029e-09,3.139056655093376493e-09,3.766867986112051957e-09,4.394679317130727835e-09,5.022490648149403713e-09,5.650301979168079591e-09,6.278113310186755468e-09,6.905924641205431346e-09,7.533735972224107224e-09,8.161547303242783101e-09,8.789358634261458979e-09,9.417169965280134857e-09,1.004498129629881073e-08,1.067279262731748661e-08,1.130060395833616249e-08,1.192841528935483837e-08,1.255622662037351425e-08,1.318403795139219012e-08,1.381184928241086600e-08,1.443966061342954188e-08,1.506747194444821776e-08,1.569528327546689363e-08,1.632309460648556951e-08,1.695090593750424539e-08,1.757871726852292127e-08,1.820652859954159714e-08,1.883433993056027302e-08,1.946215126157894890e-08,2.008996259259762478e-08,2.071777392361630066e-08,2.134558525463497653e-08,2.197339658565365241e-08,2.260120791667232829e-08,2.322901924769100417e-08,2.385683057870968004e-08,2.448464190972835592e-08,2.511245324074703180e-08,2.574026457176570768e-08,2.636807590278438355e-08,2.699588723380305943e-08,2.762369856482173531e-08,2.825150989584041119e-08,2.887932122685908707e-08,2.950713255787776294e-08,3.013494388889644213e-08,3.076275521991511801e-08,3.139056655093379389e-08,3.201837788195246976e-08,3.264618921297114564e-08,3.327400054398982152e-08,3.390181187500849740e-08,3.452962320602717327e-08,3.515743453704584915e-08,3.578524586806452503e-08,3.641305719908320091e-08,3.704086853010187678e-08,3.766867986112055266e-08,3.829649119213922854e-08,3.892430252315790442e-08,3.955211385417658030e-08 +0.000000000000000000e+00,-6.297151979407456452e-10,-1.259430395881491290e-09,-1.889145593822236832e-09,-2.518860791762982167e-09,-3.148575989703727502e-09,-3.778291187644472837e-09,-4.408006385585218172e-09,-5.037721583525963507e-09,-5.667436781466708842e-09,-6.297151979407454177e-09,-6.926867177348199512e-09,-7.556582375288944020e-09,-8.186297573229689355e-09,-8.816012771170434690e-09,-9.445727969111180025e-09,-1.007544316705192536e-08,-1.070515836499267070e-08,-1.133487356293341603e-08,-1.196458876087416137e-08,-1.259430395881490670e-08,-1.322401915675565204e-08,-1.385373435469639737e-08,-1.448344955263714271e-08,-1.511316475057788804e-08,-1.574287994851863338e-08,-1.637259514645937871e-08,-1.700231034440012405e-08,-1.763202554234086938e-08,-1.826174074028161472e-08,-1.889145593822236005e-08,-1.952117113616310539e-08,-2.015088633410385072e-08,-2.078060153204459606e-08,-2.141031672998534139e-08,-2.204003192792608673e-08,-2.266974712586683206e-08,-2.329946232380757740e-08,-2.392917752174832273e-08,-2.455889271968906807e-08,-2.518860791762981340e-08,-2.581832311557055874e-08,-2.644803831351130407e-08,-2.707775351145204941e-08,-2.770746870939279474e-08,-2.833718390733354008e-08,-2.896689910527428541e-08,-2.959661430321503075e-08,-3.022632950115577608e-08,-3.085604469909652142e-08,-3.148575989703726675e-08,-3.211547509497801209e-08,-3.274519029291875742e-08,-3.337490549085950276e-08,-3.400462068880024809e-08,-3.463433588674099343e-08,-3.526405108468173876e-08,-3.589376628262248410e-08,-3.652348148056322943e-08,-3.715319667850397477e-08,-3.778291187644472010e-08,-3.841262707438546544e-08,-3.904234227232621077e-08,-3.967205747026695611e-08 +0.000000000000000000e+00,-6.170976391968905516e-10,-1.234195278393781103e-09,-1.851292917590671758e-09,-2.468390556787562620e-09,-3.085488195984453482e-09,-3.702585835181344343e-09,-4.319683474378235205e-09,-4.936781113575126067e-09,-5.553878752772016929e-09,-6.170976391968907790e-09,-6.788074031165798652e-09,-7.405171670362689514e-09,-8.022269309559579549e-09,-8.639366948756468756e-09,-9.256464587953357963e-09,-9.873562227150247171e-09,-1.049065986634713638e-08,-1.110775750554402559e-08,-1.172485514474091479e-08,-1.234195278393780400e-08,-1.295905042313469321e-08,-1.357614806233158242e-08,-1.419324570152847162e-08,-1.481034334072536083e-08,-1.542744097992225004e-08,-1.604453861911913924e-08,-1.666163625831602845e-08,-1.727873389751291766e-08,-1.789583153670980687e-08,-1.851292917590669607e-08,-1.913002681510358528e-08,-1.974712445430047449e-08,-2.036422209349736370e-08,-2.098131973269425290e-08,-2.159841737189114211e-08,-2.221551501108803132e-08,-2.283261265028492053e-08,-2.344971028948180973e-08,-2.406680792867869894e-08,-2.468390556787558815e-08,-2.530100320707247736e-08,-2.591810084626936656e-08,-2.653519848546625577e-08,-2.715229612466314498e-08,-2.776939376386003419e-08,-2.838649140305692339e-08,-2.900358904225381260e-08,-2.962068668145070181e-08,-3.023778432064759101e-08,-3.085488195984448022e-08,-3.147197959904136943e-08,-3.208907723823825864e-08,-3.270617487743514784e-08,-3.332327251663203705e-08,-3.394037015582892626e-08,-3.455746779502581547e-08,-3.517456543422270467e-08,-3.579166307341959388e-08,-3.640876071261648309e-08,-3.702585835181337230e-08,-3.764295599101026150e-08,-3.826005363020715071e-08,-3.887715126940403992e-08 +0.000000000000000000e+00,-6.278113309986281216e-10,-1.255622661997256243e-09,-1.883433992995884158e-09,-2.511245323994512073e-09,-3.139056654993139988e-09,-3.766867985991768316e-09,-4.394679316990396644e-09,-5.022490647989024973e-09,-5.650301978987653301e-09,-6.278113309986281629e-09,-6.905924640984909958e-09,-7.533735971983538286e-09,-8.161547302982166615e-09,-8.789358633980794943e-09,-9.417169964979423271e-09,-1.004498129597805160e-08,-1.067279262697667993e-08,-1.130060395797530826e-08,-1.192841528897393658e-08,-1.255622661997256491e-08,-1.318403795097119324e-08,-1.381184928196982157e-08,-1.443966061296844990e-08,-1.506747194396707988e-08,-1.569528327496571152e-08,-1.632309460596434316e-08,-1.695090593696297479e-08,-1.757871726796160643e-08,-1.820652859896023807e-08,-1.883433992995886970e-08,-1.946215126095750134e-08,-2.008996259195613298e-08,-2.071777392295476461e-08,-2.134558525395339625e-08,-2.197339658495202789e-08,-2.260120791595065953e-08,-2.322901924694929116e-08,-2.385683057794792280e-08,-2.448464190894655444e-08,-2.511245323994518607e-08,-2.574026457094381771e-08,-2.636807590194244935e-08,-2.699588723294108099e-08,-2.762369856393971262e-08,-2.825150989493834426e-08,-2.887932122593697590e-08,-2.950713255693560753e-08,-3.013494388793423917e-08,-3.076275521893287081e-08,-3.139056654993150245e-08,-3.201837788093013408e-08,-3.264618921192876572e-08,-3.327400054292739736e-08,-3.390181187392602899e-08,-3.452962320492466063e-08,-3.515743453592329227e-08,-3.578524586692192391e-08,-3.641305719792055554e-08,-3.704086852891918718e-08,-3.766867985991781882e-08,-3.829649119091645045e-08,-3.892430252191508209e-08,-3.955211385291371373e-08 +0.000000000000000000e+00,1.320650879386102920e-09,2.641301758772205840e-09,3.961952638158308967e-09,5.282603517544412508e-09,6.603254396930516048e-09,7.923905276316619589e-09,9.244556155702723129e-09,1.056520703508882667e-08,1.188585791447493021e-08,1.320650879386103375e-08,1.452715967324713729e-08,1.584781055263324249e-08,1.716846143201934768e-08,1.848911231140545288e-08,1.980976319079155807e-08,2.113041407017766327e-08,2.245106494956376846e-08,2.377171582894987366e-08,2.509236670833597885e-08,2.641301758772208405e-08,2.773366846710818924e-08,2.905431934649429443e-08,3.037497022588039632e-08,3.169562110526649821e-08,3.301627198465260009e-08,3.433692286403870198e-08,3.565757374342480387e-08,3.697822462281090575e-08,3.829887550219700764e-08,3.961952638158310952e-08,4.094017726096921141e-08,4.226082814035531330e-08,4.358147901974141518e-08,4.490212989912751707e-08,4.622278077851361895e-08,4.754343165789972084e-08,4.886408253728582273e-08,5.018473341667192461e-08,5.150538429605802650e-08,5.282603517544412839e-08,5.414668605483023027e-08,5.546733693421633216e-08,5.678798781360243404e-08,5.810863869298853593e-08,5.942928957237463782e-08,6.074994045176073970e-08,6.207059133114684159e-08,6.339124221053294347e-08,6.471189308991904536e-08,6.603254396930514725e-08,6.735319484869124913e-08,6.867384572807735102e-08,6.999449660746345291e-08,7.131514748684955479e-08,7.263579836623565668e-08,7.395644924562175856e-08,7.527710012500786045e-08,7.659775100439396234e-08,7.791840188378006422e-08,7.923905276316616611e-08,8.055970364255226799e-08,8.188035452193836988e-08,8.320100540132447177e-08 +0.000000000000000000e+00,2.020301155413513811e-09,4.040602310827027623e-09,6.060903466240541848e-09,8.081204621654056900e-09,1.010150577706757195e-08,1.212180693248108700e-08,1.414210808789460206e-08,1.616240924330811711e-08,1.818271039872163382e-08,2.020301155413515052e-08,2.222331270954866723e-08,2.424361386496218394e-08,2.626391502037570064e-08,2.828421617578921735e-08,3.030451733120273406e-08,3.232481848661625407e-08,3.434511964202977409e-08,3.636542079744329410e-08,3.838572195285681412e-08,4.040602310827033413e-08,4.242632426368385415e-08,4.444662541909737416e-08,4.646692657451089418e-08,4.848722772992441419e-08,5.050752888533793421e-08,5.252783004075145422e-08,5.454813119616497424e-08,5.656843235157849425e-08,5.858873350699201427e-08,6.060903466240553429e-08,6.262933581781905430e-08,6.464963697323257432e-08,6.666993812864609433e-08,6.869023928405961435e-08,7.071054043947313436e-08,7.273084159488665438e-08,7.475114275030017439e-08,7.677144390571369441e-08,7.879174506112721442e-08,8.081204621654073444e-08,8.283234737195425445e-08,8.485264852736777447e-08,8.687294968278129448e-08,8.889325083819481450e-08,9.091355199360833451e-08,9.293385314902185453e-08,9.495415430443537455e-08,9.697445545984889456e-08,9.899475661526241458e-08,1.010150577706759346e-07,1.030353589260894546e-07,1.050556600815029746e-07,1.070759612369164946e-07,1.090962623923300147e-07,1.111165635477435347e-07,1.131368647031570547e-07,1.151571658585705747e-07,1.171774670139840947e-07,1.191977681693976147e-07,1.212180693248111480e-07,1.232383704802246945e-07,1.252586716356382409e-07,1.272789727910517874e-07 +0.000000000000000000e+00,-8.616243544140992063e-20,-1.723248708828198413e-19,-2.584873063242297860e-19,-3.446497417656397307e-19,-4.308121772070496754e-19,-5.169746126484595719e-19,-6.031370480898694685e-19,-6.892994835312793651e-19,-7.754619189726892616e-19,-8.616243544140991582e-19,-9.477867898555089584e-19,-1.033949225296918759e-18,-1.120111660738328559e-18,-1.206274096179738359e-18,-1.292436531621148159e-18,-1.378598967062557960e-18,-1.464761402503967760e-18,-1.550923837945377560e-18,-1.637086273386787361e-18,-1.723248708828197161e-18,-1.809411144269606961e-18,-1.895573579711016761e-18,-1.981736015152426562e-18,-2.067898450593836362e-18,-2.154060886035246162e-18,-2.240223321476655962e-18,-2.326385756918065763e-18,-2.412548192359475563e-18,-2.498710627800885363e-18,-2.584873063242295163e-18,-2.671035498683704964e-18,-2.757197934125114764e-18,-2.843360369566524564e-18,-2.929522805007934364e-18,-3.015685240449344165e-18,-3.101847675890753965e-18,-3.188010111332163765e-18,-3.274172546773573565e-18,-3.360334982214983366e-18,-3.446497417656393166e-18,-3.532659853097802966e-18,-3.618822288539212381e-18,-3.704984723980621796e-18,-3.791147159422031211e-18,-3.877309594863440627e-18,-3.963472030304850042e-18,-4.049634465746259457e-18,-4.135796901187668872e-18,-4.221959336629078287e-18,-4.308121772070487702e-18,-4.394284207511897117e-18,-4.480446642953306532e-18,-4.566609078394715947e-18,-4.652771513836125362e-18,-4.738933949277534777e-18,-4.825096384718944192e-18,-4.911258820160353607e-18,-4.997421255601763023e-18,-5.083583691043172438e-18,-5.169746126484581853e-18,-5.255908561925991268e-18,-5.342070997367400683e-18,-5.428233432808810098e-18 +0.000000000000000000e+00,1.503191764376264212e-09,3.006383528752528424e-09,4.509575293128792429e-09,6.012767057505056020e-09,7.515958821881318784e-09,9.019150586257581549e-09,1.052234235063384431e-08,1.202553411501010708e-08,1.352872587938636984e-08,1.503191764376263095e-08,1.653510940813889206e-08,1.803830117251515317e-08,1.954149293689141428e-08,2.104468470126767539e-08,2.254787646564393650e-08,2.405106823002019761e-08,2.555425999439645872e-08,2.705745175877271983e-08,2.856064352314898094e-08,3.006383528752524205e-08,3.156702705190150647e-08,3.307021881627777089e-08,3.457341058065403531e-08,3.607660234503029972e-08,3.757979410940656414e-08,3.908298587378282856e-08,4.058617763815909298e-08,4.208936940253535740e-08,4.359256116691162182e-08,4.509575293128788624e-08,4.659894469566415065e-08,4.810213646004041507e-08,4.960532822441667949e-08,5.110851998879294391e-08,5.261171175316920833e-08,5.411490351754547275e-08,5.561809528192173717e-08,5.712128704629800159e-08,5.862447881067426600e-08,6.012767057505052381e-08,6.163086233942678161e-08,6.313405410380303941e-08,6.463724586817929721e-08,6.614043763255555501e-08,6.764362939693181281e-08,6.914682116130807061e-08,7.065001292568432841e-08,7.215320469006058621e-08,7.365639645443684402e-08,7.515958821881310182e-08,7.666277998318935962e-08,7.816597174756561742e-08,7.966916351194187522e-08,8.117235527631813302e-08,8.267554704069439082e-08,8.417873880507064862e-08,8.568193056944690643e-08,8.718512233382316423e-08,8.868831409819942203e-08,9.019150586257567983e-08,9.169469762695193763e-08,9.319788939132819543e-08,9.470108115570445323e-08 +0.000000000000000000e+00,2.104634494526398842e-09,4.209268989052797685e-09,6.313903483579196113e-09,8.418537978105593715e-09,1.052317247263199132e-08,1.262780696715838892e-08,1.473244146168478652e-08,1.683707595621118412e-08,1.894171045073758338e-08,2.104634494526398263e-08,2.315097943979038189e-08,2.525561393431678114e-08,2.736024842884318040e-08,2.946488292336957966e-08,3.156951741789597891e-08,3.367415191242237486e-08,3.577878640694877081e-08,3.788342090147516675e-08,3.998805539600156270e-08,4.209268989052795865e-08,4.419732438505435460e-08,4.630195887958075054e-08,4.840659337410714649e-08,5.051122786863354244e-08,5.261586236315993838e-08,5.472049685768633433e-08,5.682513135221273028e-08,5.892976584673912623e-08,6.103440034126552217e-08,6.313903483579191812e-08,6.524366933031831407e-08,6.734830382484471001e-08,6.945293831937110596e-08,7.155757281389750191e-08,7.366220730842389786e-08,7.576684180295029380e-08,7.787147629747668975e-08,7.997611079200308570e-08,8.208074528652948164e-08,8.418537978105587759e-08,8.629001427558227354e-08,8.839464877010866949e-08,9.049928326463506543e-08,9.260391775916146138e-08,9.470855225368785733e-08,9.681318674821425328e-08,9.891782124274064922e-08,1.010224557372670452e-07,1.031270902317934411e-07,1.052317247263198371e-07,1.073363592208462330e-07,1.094409937153726290e-07,1.115456282098990249e-07,1.136502627044254209e-07,1.157548971989518168e-07,1.178595316934782127e-07,1.199641661880046219e-07,1.220688006825310179e-07,1.241734351770574138e-07,1.262780696715838098e-07,1.283827041661102057e-07,1.304873386606366017e-07,1.325919731551629976e-07 +0.000000000000000000e+00,1.382047305207943164e-09,2.764094610415886329e-09,4.146141915623829700e-09,5.528189220831773485e-09,6.910236526039717270e-09,8.292283831247661055e-09,9.674331136455605667e-09,1.105637844166355028e-08,1.243842574687149489e-08,1.382047305207943950e-08,1.520252035728738411e-08,1.658456766249532873e-08,1.796661496770327334e-08,1.934866227291121795e-08,2.073070957811916256e-08,2.211275688332710717e-08,2.349480418853505179e-08,2.487685149374299640e-08,2.625889879895094101e-08,2.764094610415888562e-08,2.902299340936683024e-08,3.040504071457477485e-08,3.178708801978271946e-08,3.316913532499066407e-08,3.455118263019860868e-08,3.593322993540655330e-08,3.731527724061449791e-08,3.869732454582244252e-08,4.007937185103038713e-08,4.146141915623833174e-08,4.284346646144627636e-08,4.422551376665422097e-08,4.560756107186216558e-08,4.698960837707011019e-08,4.837165568227805480e-08,4.975370298748599942e-08,5.113575029269394403e-08,5.251779759790188864e-08,5.389984490310983325e-08,5.528189220831777786e-08,5.666393951352572248e-08,5.804598681873366709e-08,5.942803412394161170e-08,6.081008142914956293e-08,6.219212873435752078e-08,6.357417603956547862e-08,6.495622334477343647e-08,6.633827064998139432e-08,6.772031795518935216e-08,6.910236526039731001e-08,7.048441256560526786e-08,7.186645987081322570e-08,7.324850717602118355e-08,7.463055448122914140e-08,7.601260178643709924e-08,7.739464909164505709e-08,7.877669639685301494e-08,8.015874370206097279e-08,8.154079100726893063e-08,8.292283831247688848e-08,8.430488561768484633e-08,8.568693292289280417e-08,8.706898022810076202e-08 +0.000000000000000000e+00,1.008889337778426526e-09,2.017778675556853053e-09,3.026668013335279372e-09,4.035557351113705278e-09,5.044446688892131184e-09,6.053336026670557090e-09,7.062225364448982996e-09,8.071114702227408902e-09,9.080004040005834808e-09,1.008889337778426071e-08,1.109778271556268662e-08,1.210667205334111253e-08,1.311556139111953843e-08,1.412445072889796434e-08,1.513334006667639190e-08,1.614222940445482111e-08,1.715111874223325033e-08,1.816000808001167954e-08,1.916889741779010876e-08,2.017778675556853797e-08,2.118667609334696719e-08,2.219556543112539640e-08,2.320445476890382562e-08,2.421334410668225483e-08,2.522223344446068405e-08,2.623112278223911326e-08,2.724001212001754248e-08,2.824890145779597169e-08,2.925779079557440091e-08,3.026668013335283012e-08,3.127556947113125933e-08,3.228445880890968855e-08,3.329334814668811776e-08,3.430223748446654698e-08,3.531112682224497619e-08,3.632001616002340541e-08,3.732890549780183462e-08,3.833779483558026384e-08,3.934668417335869305e-08,4.035557351113712227e-08,4.136446284891555148e-08,4.237335218669398070e-08,4.338224152447240991e-08,4.439113086225083913e-08,4.540002020002926834e-08,4.640890953780769756e-08,4.741779887558612677e-08,4.842668821336455598e-08,4.943557755114298520e-08,5.044446688892141441e-08,5.145335622669984363e-08,5.246224556447827284e-08,5.347113490225670206e-08,5.448002424003513127e-08,5.548891357781356049e-08,5.649780291559198970e-08,5.750669225337041892e-08,5.851558159114884813e-08,5.952447092892727735e-08,6.053336026670569994e-08,6.154224960448412254e-08,6.255113894226254514e-08,6.356002828004096774e-08 +0.000000000000000000e+00,-8.434749163913242662e-20,-1.686949832782648532e-19,-2.530424749173972678e-19,-3.373899665565296583e-19,-4.217374581956620488e-19,-5.060849498347944393e-19,-5.904324414739268780e-19,-6.747799331130593166e-19,-7.591274247521917553e-19,-8.434749163913241940e-19,-9.278224080304566326e-19,-1.012169899669589071e-18,-1.096517391308721510e-18,-1.180864882947853949e-18,-1.265212374586986387e-18,-1.349559866226118826e-18,-1.433907357865251265e-18,-1.518254849504383703e-18,-1.602602341143516142e-18,-1.686949832782648581e-18,-1.771297324421781212e-18,-1.855644816060913650e-18,-1.939992307700046089e-18,-2.024339799339178528e-18,-2.108687290978310966e-18,-2.193034782617443405e-18,-2.277382274256575844e-18,-2.361729765895708282e-18,-2.446077257534840721e-18,-2.530424749173973160e-18,-2.614772240813105598e-18,-2.699119732452238037e-18,-2.783467224091370476e-18,-2.867814715730502914e-18,-2.952162207369635353e-18,-3.036509699008767792e-18,-3.120857190647900230e-18,-3.205204682287032669e-18,-3.289552173926165108e-18,-3.373899665565297546e-18,-3.458247157204429985e-18,-3.542594648843562424e-18,-3.626942140482694862e-18,-3.711289632121827301e-18,-3.795637123760959739e-18,-3.879984615400092178e-18,-3.964332107039224617e-18,-4.048679598678357055e-18,-4.133027090317489494e-18,-4.217374581956621933e-18,-4.301722073595754371e-18,-4.386069565234886810e-18,-4.470417056874019249e-18,-4.554764548513151687e-18,-4.639112040152284126e-18,-4.723459531791416565e-18,-4.807807023430549003e-18,-4.892154515069681442e-18,-4.976502006708813881e-18,-5.060849498347946319e-18,-5.145196989987078758e-18,-5.229544481626211197e-18,-5.313891973265343635e-18 +0.000000000000000000e+00,-1.320650879566766197e-09,-2.641301759133532394e-09,-3.961952638700298384e-09,-5.282603518267063961e-09,-6.603254397833829537e-09,-7.923905277400595114e-09,-9.244556156967359863e-09,-1.056520703653412461e-08,-1.188585791610088936e-08,-1.320650879566765411e-08,-1.452715967523441886e-08,-1.584781055480118361e-08,-1.716846143436794836e-08,-1.848911231393471311e-08,-1.980976319350147786e-08,-2.113041407306824261e-08,-2.245106495263500736e-08,-2.377171583220177211e-08,-2.509236671176853686e-08,-2.641301759133530160e-08,-2.773366847090206635e-08,-2.905431935046883110e-08,-3.037497023003559585e-08,-3.169562110960236060e-08,-3.301627198916912535e-08,-3.433692286873589010e-08,-3.565757374830265485e-08,-3.697822462786941960e-08,-3.829887550743618435e-08,-3.961952638700294910e-08,-4.094017726656971385e-08,-4.226082814613647860e-08,-4.358147902570324335e-08,-4.490212990527000810e-08,-4.622278078483677285e-08,-4.754343166440353759e-08,-4.886408254397030234e-08,-5.018473342353706709e-08,-5.150538430310383184e-08,-5.282603518267059659e-08,-5.414668606223736134e-08,-5.546733694180412609e-08,-5.678798782137089084e-08,-5.810863870093765559e-08,-5.942928958050442034e-08,-6.074994046007119171e-08,-6.207059133963796307e-08,-6.339124221920473444e-08,-6.471189309877150581e-08,-6.603254397833827717e-08,-6.735319485790504854e-08,-6.867384573747181991e-08,-6.999449661703859127e-08,-7.131514749660536264e-08,-7.263579837617213401e-08,-7.395644925573890537e-08,-7.527710013530567674e-08,-7.659775101487244811e-08,-7.791840189443921947e-08,-7.923905277400599084e-08,-8.055970365357276221e-08,-8.188035453313953358e-08,-8.320100541270630494e-08 +0.000000000000000000e+00,-2.020301155585547940e-09,-4.040602311171095880e-09,-6.060903466756643820e-09,-8.081204622342191761e-09,-1.010150577792773887e-08,-1.212180693351328599e-08,-1.414210808909883310e-08,-1.616240924468438021e-08,-1.818271040026992733e-08,-2.020301155585547444e-08,-2.222331271144102155e-08,-2.424361386702656866e-08,-2.626391502261211578e-08,-2.828421617819766289e-08,-3.030451733378320669e-08,-3.232481848936875381e-08,-3.434511964495430092e-08,-3.636542080053984803e-08,-3.838572195612539515e-08,-4.040602311171094226e-08,-4.242632426729648937e-08,-4.444662542288203648e-08,-4.646692657846758360e-08,-4.848722773405313071e-08,-5.050752888963867782e-08,-5.252783004522422494e-08,-5.454813120080977205e-08,-5.656843235639531916e-08,-5.858873351198086628e-08,-6.060903466756641339e-08,-6.262933582315196050e-08,-6.464963697873750761e-08,-6.666993813432305473e-08,-6.869023928990860184e-08,-7.071054044549414895e-08,-7.273084160107969607e-08,-7.475114275666524318e-08,-7.677144391225079029e-08,-7.879174506783633740e-08,-8.081204622342188452e-08,-8.283234737900743163e-08,-8.485264853459297874e-08,-8.687294969017852586e-08,-8.889325084576407297e-08,-9.091355200134962008e-08,-9.293385315693516720e-08,-9.495415431252071431e-08,-9.697445546810626142e-08,-9.899475662369180853e-08,-1.010150577792773556e-07,-1.030353589348629028e-07,-1.050556600904484499e-07,-1.070759612460339970e-07,-1.090962624016195441e-07,-1.111165635572050912e-07,-1.131368647127906383e-07,-1.151571658683761854e-07,-1.171774670239617326e-07,-1.191977681795472797e-07,-1.212180693351328268e-07,-1.232383704907183739e-07,-1.252586716463039210e-07,-1.272789728018894681e-07 +0.000000000000000000e+00,-1.008889337950643462e-09,-2.017778675901286924e-09,-3.026668013851930593e-09,-4.035557351802574675e-09,-5.044446689753218757e-09,-6.053336027703862840e-09,-7.062225365654506922e-09,-8.071114703605151005e-09,-9.080004041555794260e-09,-1.008889337950643751e-08,-1.109778271745708077e-08,-1.210667205540772403e-08,-1.311556139335836728e-08,-1.412445073130901054e-08,-1.513334006925965379e-08,-1.614222940721029870e-08,-1.715111874516094361e-08,-1.816000808311158852e-08,-1.916889742106223343e-08,-2.017778675901287834e-08,-2.118667609696352325e-08,-2.219556543491416816e-08,-2.320445477286481307e-08,-2.421334411081545798e-08,-2.522223344876610289e-08,-2.623112278671674780e-08,-2.724001212466739271e-08,-2.824890146261803761e-08,-2.925779080056868252e-08,-3.026668013851932743e-08,-3.127556947646997565e-08,-3.228445881442062387e-08,-3.329334815237127209e-08,-3.430223749032192031e-08,-3.531112682827256853e-08,-3.632001616622321674e-08,-3.732890550417386496e-08,-3.833779484212451318e-08,-3.934668418007516140e-08,-4.035557351802580962e-08,-4.136446285597645783e-08,-4.237335219392710605e-08,-4.338224153187775427e-08,-4.439113086982840249e-08,-4.540002020777905071e-08,-4.640890954572969893e-08,-4.741779888368034714e-08,-4.842668822163099536e-08,-4.943557755958164358e-08,-5.044446689753229180e-08,-5.145335623548294002e-08,-5.246224557343358824e-08,-5.347113491138423645e-08,-5.448002424933488467e-08,-5.548891358728553289e-08,-5.649780292523618111e-08,-5.750669226318682933e-08,-5.851558160113747755e-08,-5.952447093908812576e-08,-6.053336027703877398e-08,-6.154224961498942220e-08,-6.255113895294007042e-08,-6.356002829089071864e-08 +0.000000000000000000e+00,-1.503191764552440034e-09,-3.006383529104880068e-09,-4.509575293657320308e-09,-6.012767058209760962e-09,-7.515958822762201617e-09,-9.019150587314642271e-09,-1.052234235186708293e-08,-1.202553411641952358e-08,-1.352872588097196423e-08,-1.503191764552440654e-08,-1.653510941007684720e-08,-1.803830117462928785e-08,-1.954149293918172850e-08,-2.104468470373416916e-08,-2.254787646828660981e-08,-2.405106823283905047e-08,-2.555425999739149112e-08,-2.705745176194393178e-08,-2.856064352649637243e-08,-3.006383529104881308e-08,-3.156702705560125374e-08,-3.307021882015369439e-08,-3.457341058470613505e-08,-3.607660234925857570e-08,-3.757979411381101636e-08,-3.908298587836345701e-08,-4.058617764291589766e-08,-4.208936940746833832e-08,-4.359256117202077897e-08,-4.509575293657321963e-08,-4.659894470112566028e-08,-4.810213646567810093e-08,-4.960532823023054159e-08,-5.110851999478298224e-08,-5.261171175933542290e-08,-5.411490352388786355e-08,-5.561809528844030421e-08,-5.712128705299274486e-08,-5.862447881754518551e-08,-6.012767058209762617e-08,-6.163086234665006682e-08,-6.313405411120250748e-08,-6.463724587575494813e-08,-6.614043764030738878e-08,-6.764362940485982944e-08,-6.914682116941227009e-08,-7.065001293396471075e-08,-7.215320469851715140e-08,-7.365639646306959206e-08,-7.515958822762203271e-08,-7.666277999217447336e-08,-7.816597175672691402e-08,-7.966916352127935467e-08,-8.117235528583179533e-08,-8.267554705038423598e-08,-8.417873881493667664e-08,-8.568193057948911729e-08,-8.718512234404155794e-08,-8.868831410859399860e-08,-9.019150587314643925e-08,-9.169469763769887991e-08,-9.319788940225132056e-08,-9.470108116680376121e-08 +0.000000000000000000e+00,-2.104634494694871545e-09,-4.209268989389743090e-09,-6.313903484084615048e-09,-8.418537978779487834e-09,-1.052317247347436062e-08,-1.262780696816923341e-08,-1.473244146286410619e-08,-1.683707595755897898e-08,-1.894171045225385176e-08,-2.104634494694872455e-08,-2.315097944164359733e-08,-2.525561393633847012e-08,-2.736024843103334290e-08,-2.946488292572821569e-08,-3.156951742042308848e-08,-3.367415191511796457e-08,-3.577878640981284066e-08,-3.788342090450771676e-08,-3.998805539920259285e-08,-4.209268989389746895e-08,-4.419732438859234504e-08,-4.630195888328722114e-08,-4.840659337798209723e-08,-5.051122787267697332e-08,-5.261586236737184942e-08,-5.472049686206672551e-08,-5.682513135676160161e-08,-5.892976585145647770e-08,-6.103440034615135380e-08,-6.313903484084622989e-08,-6.524366933554110599e-08,-6.734830383023598208e-08,-6.945293832493085817e-08,-7.155757281962573427e-08,-7.366220731432061036e-08,-7.576684180901548646e-08,-7.787147630371036255e-08,-7.997611079840523865e-08,-8.208074529310011474e-08,-8.418537978779499083e-08,-8.629001428248986693e-08,-8.839464877718474302e-08,-9.049928327187961912e-08,-9.260391776657449521e-08,-9.470855226126937131e-08,-9.681318675596424740e-08,-9.891782125065912349e-08,-1.010224557453539996e-07,-1.031270902400488757e-07,-1.052317247347437518e-07,-1.073363592294386279e-07,-1.094409937241335040e-07,-1.115456282188283801e-07,-1.136502627135232562e-07,-1.157548972082181322e-07,-1.178595317029130083e-07,-1.199641661976078844e-07,-1.220688006923027605e-07,-1.241734351869976366e-07,-1.262780696816925127e-07,-1.283827041763873888e-07,-1.304873386710822649e-07,-1.325919731657771410e-07 +0.000000000000000000e+00,-1.382047305384399607e-09,-2.764094610768799215e-09,-4.146141916153198822e-09,-5.528189221537598430e-09,-6.910236526921998037e-09,-8.292283832306397645e-09,-9.674331137690798079e-09,-1.105637844307519851e-08,-1.243842574845959895e-08,-1.382047305384399938e-08,-1.520252035922839982e-08,-1.658456766461279860e-08,-1.796661496999719738e-08,-1.934866227538159616e-08,-2.073070958076599494e-08,-2.211275688615039372e-08,-2.349480419153479250e-08,-2.487685149691919128e-08,-2.625889880230359006e-08,-2.764094610768798884e-08,-2.902299341307238762e-08,-3.040504071845678640e-08,-3.178708802384118518e-08,-3.316913532922558396e-08,-3.455118263460998274e-08,-3.593322993999438152e-08,-3.731527724537878030e-08,-3.869732455076317908e-08,-4.007937185614757786e-08,-4.146141916153197664e-08,-4.284346646691637542e-08,-4.422551377230077420e-08,-4.560756107768517298e-08,-4.698960838306957176e-08,-4.837165568845397055e-08,-4.975370299383836933e-08,-5.113575029922276811e-08,-5.251779760460716689e-08,-5.389984490999156567e-08,-5.528189221537596445e-08,-5.666393952076036323e-08,-5.804598682614476201e-08,-5.942803413152916079e-08,-6.081008143691355957e-08,-6.219212874229795173e-08,-6.357417604768234389e-08,-6.495622335306673606e-08,-6.633827065845112822e-08,-6.772031796383552038e-08,-6.910236526921991254e-08,-7.048441257460430471e-08,-7.186645987998869687e-08,-7.324850718537308903e-08,-7.463055449075748120e-08,-7.601260179614187336e-08,-7.739464910152626552e-08,-7.877669640691065768e-08,-8.015874371229504985e-08,-8.154079101767944201e-08,-8.292283832306383417e-08,-8.430488562844822634e-08,-8.568693293383261850e-08,-8.706898023921701066e-08 +0.000000000000000000e+00,1.020128717891145791e-09,2.040257435782291582e-09,3.060386153673437579e-09,4.080514871564583991e-09,5.100643589455730402e-09,6.120772307346876813e-09,7.140901025238023224e-09,8.161029743129169635e-09,9.181158461020315219e-09,1.020128717891146080e-08,1.122141589680260639e-08,1.224154461469375197e-08,1.326167333258489756e-08,1.428180205047604314e-08,1.530193076836718872e-08,1.632205948625833596e-08,1.734218820414948320e-08,1.836231692204063044e-08,1.938244563993177768e-08,2.040257435782292492e-08,2.142270307571407215e-08,2.244283179360521939e-08,2.346296051149636663e-08,2.448308922938751387e-08,2.550321794727866111e-08,2.652334666516980835e-08,2.754347538306095558e-08,2.856360410095210282e-08,2.958373281884325006e-08,3.060386153673439730e-08,3.162399025462554454e-08,3.264411897251669178e-08,3.366424769040783901e-08,3.468437640829898625e-08,3.570450512619013349e-08,3.672463384408128073e-08,3.774476256197242797e-08,3.876489127986357521e-08,3.978501999775472245e-08,4.080514871564586968e-08,4.182527743353701692e-08,4.284540615142816416e-08,4.386553486931931140e-08,4.488566358721045864e-08,4.590579230510160588e-08,4.692592102299275311e-08,4.794604974088390035e-08,4.896617845877504759e-08,4.998630717666619483e-08,5.100643589455734207e-08,5.202656461244848931e-08,5.304669333033963654e-08,5.406682204823078378e-08,5.508695076612193102e-08,5.610707948401307826e-08,5.712720820190422550e-08,5.814733691979537274e-08,5.916746563768651997e-08,6.018759435557767383e-08,6.120772307346883430e-08,6.222785179135999478e-08,6.324798050925115525e-08,6.426810922714231572e-08 +0.000000000000000000e+00,1.128184102912619973e-09,2.256368205825239945e-09,3.384552308737860125e-09,4.512736411650480718e-09,5.640920514563101311e-09,6.769104617475721904e-09,7.897288720388343324e-09,9.025472823300964745e-09,1.015365692621358616e-08,1.128184102912620759e-08,1.241002513203882901e-08,1.353820923495145043e-08,1.466639333786407185e-08,1.579457744077669327e-08,1.692276154368931469e-08,1.805094564660193611e-08,1.917912974951455753e-08,2.030731385242717895e-08,2.143549795533980037e-08,2.256368205825242179e-08,2.369186616116504321e-08,2.482005026407766463e-08,2.594823436699028605e-08,2.707641846990290747e-08,2.820460257281552889e-08,2.933278667572815031e-08,3.046097077864077504e-08,3.158915488155339977e-08,3.271733898446602450e-08,3.384552308737864922e-08,3.497370719029127395e-08,3.610189129320389868e-08,3.723007539611652341e-08,3.835825949902914814e-08,3.948644360194177287e-08,4.061462770485439760e-08,4.174281180776702233e-08,4.287099591067964706e-08,4.399918001359227179e-08,4.512736411650489651e-08,4.625554821941752124e-08,4.738373232233014597e-08,4.851191642524277070e-08,4.964010052815539543e-08,5.076828463106802016e-08,5.189646873398064489e-08,5.302465283689326962e-08,5.415283693980589435e-08,5.528102104271851908e-08,5.640920514563114380e-08,5.753738924854376853e-08,5.866557335145639326e-08,5.979375745436901799e-08,6.092194155728164272e-08,6.205012566019426745e-08,6.317830976310689218e-08,6.430649386601951691e-08,6.543467796893214164e-08,6.656286207184476637e-08,6.769104617475739109e-08,6.881923027767001582e-08,6.994741438058264055e-08,7.107559848349526528e-08 +0.000000000000000000e+00,1.069203477814402687e-09,2.138406955628805375e-09,3.207610433443207855e-09,4.276813911257609922e-09,5.346017389072011989e-09,6.415220866886414056e-09,7.484424344700816123e-09,8.553627822515218190e-09,9.622831300329620257e-09,1.069203477814402232e-08,1.176123825595842439e-08,1.283044173377282646e-08,1.389964521158722853e-08,1.496884868940162894e-08,1.603805216721602770e-08,1.710725564503042645e-08,1.817645912284482521e-08,1.924566260065922397e-08,2.031486607847362273e-08,2.138406955628802149e-08,2.245327303410242025e-08,2.352247651191681900e-08,2.459167998973121776e-08,2.566088346754561652e-08,2.673008694536001528e-08,2.779929042317441404e-08,2.886849390098881280e-08,2.993769737880321155e-08,3.100690085661761031e-08,3.207610433443200907e-08,3.314530781224640783e-08,3.421451129006080659e-08,3.528371476787520535e-08,3.635291824568960410e-08,3.742212172350400286e-08,3.849132520131840162e-08,3.956052867913280038e-08,4.062973215694719914e-08,4.169893563476159789e-08,4.276813911257599665e-08,4.383734259039039541e-08,4.490654606820479417e-08,4.597574954601919293e-08,4.704495302383359169e-08,4.811415650164799044e-08,4.918335997946238920e-08,5.025256345727678796e-08,5.132176693509118672e-08,5.239097041290558548e-08,5.346017389071998424e-08,5.452937736853438299e-08,5.559858084634878175e-08,5.666778432416318051e-08,5.773698780197757927e-08,5.880619127979197803e-08,5.987539475760638340e-08,6.094459823542078216e-08,6.201380171323518092e-08,6.308300519104957968e-08,6.415220866886397844e-08,6.522141214667837719e-08,6.629061562449277595e-08,6.735981910230717471e-08 +0.000000000000000000e+00,-1.020128718081076386e-09,-2.040257436162152771e-09,-3.060386154243229364e-09,-4.080514872324306370e-09,-5.100643590405383376e-09,-6.120772308486460382e-09,-7.140901026567537388e-09,-8.161029744648614394e-09,-9.181158462729690573e-09,-1.020128718081076675e-08,-1.122141589889184293e-08,-1.224154461697291911e-08,-1.326167333505399529e-08,-1.428180205313507147e-08,-1.530193077121614765e-08,-1.632205948929722548e-08,-1.734218820737830331e-08,-1.836231692545938115e-08,-1.938244564354045898e-08,-2.040257436162153681e-08,-2.142270307970261464e-08,-2.244283179778369248e-08,-2.346296051586477031e-08,-2.448308923394584814e-08,-2.550321795202692598e-08,-2.652334667010800381e-08,-2.754347538818908164e-08,-2.856360410627015948e-08,-2.958373282435123731e-08,-3.060386154243231514e-08,-3.162399026051339629e-08,-3.264411897859447743e-08,-3.366424769667555857e-08,-3.468437641475663971e-08,-3.570450513283772085e-08,-3.672463385091880200e-08,-3.774476256899988314e-08,-3.876489128708096428e-08,-3.978502000516204542e-08,-4.080514872324312656e-08,-4.182527744132420771e-08,-4.284540615940528885e-08,-4.386553487748636999e-08,-4.488566359556745113e-08,-4.590579231364853227e-08,-4.692592103172961341e-08,-4.794604974981069456e-08,-4.896617846789177570e-08,-4.998630718597285684e-08,-5.100643590405393798e-08,-5.202656462213501912e-08,-5.304669334021610027e-08,-5.406682205829718141e-08,-5.508695077637826255e-08,-5.610707949445934369e-08,-5.712720821254042483e-08,-5.814733693062150598e-08,-5.916746564870258712e-08,-6.018759436678366826e-08,-6.120772308486474940e-08,-6.222785180294583054e-08,-6.324798052102691169e-08,-6.426810923910799283e-08 +0.000000000000000000e+00,-1.128184103097766982e-09,-2.256368206195533964e-09,-3.384552309293301153e-09,-4.512736412391068755e-09,-5.640920515488836358e-09,-6.769104618586603960e-09,-7.897288721684371562e-09,-9.025472824782139165e-09,-1.015365692787990677e-08,-1.128184103097767437e-08,-1.241002513407544197e-08,-1.353820923717320957e-08,-1.466639334027097718e-08,-1.579457744336874643e-08,-1.692276154646651404e-08,-1.805094564956428164e-08,-1.917912975266204924e-08,-2.030731385575981684e-08,-2.143549795885758445e-08,-2.256368206195535205e-08,-2.369186616505311965e-08,-2.482005026815088725e-08,-2.594823437124865486e-08,-2.707641847434642246e-08,-2.820460257744419006e-08,-2.933278668054195766e-08,-3.046097078363972526e-08,-3.158915488673749287e-08,-3.271733898983526047e-08,-3.384552309293302807e-08,-3.497370719603079567e-08,-3.610189129912856328e-08,-3.723007540222633088e-08,-3.835825950532409848e-08,-3.948644360842186608e-08,-4.061462771151963369e-08,-4.174281181461740129e-08,-4.287099591771516889e-08,-4.399918002081293649e-08,-4.512736412391070410e-08,-4.625554822700847170e-08,-4.738373233010623930e-08,-4.851191643320400690e-08,-4.964010053630177451e-08,-5.076828463939954211e-08,-5.189646874249730971e-08,-5.302465284559507731e-08,-5.415283694869284491e-08,-5.528102105179061252e-08,-5.640920515488838012e-08,-5.753738925798614772e-08,-5.866557336108391532e-08,-5.979375746418168293e-08,-6.092194156727945053e-08,-6.205012567037721813e-08,-6.317830977347498573e-08,-6.430649387657275334e-08,-6.543467797967052094e-08,-6.656286208276828854e-08,-6.769104618586605614e-08,-6.881923028896382375e-08,-6.994741439206159135e-08,-7.107559849515935895e-08 +0.000000000000000000e+00,-1.069203477999454985e-09,-2.138406955998909969e-09,-3.207610433998365160e-09,-4.276813911997820765e-09,-5.346017389997276370e-09,-6.415220867996731975e-09,-7.484424345996187580e-09,-8.553627823995643185e-09,-9.622831301995098790e-09,-1.069203477999455439e-08,-1.176123825799401000e-08,-1.283044173599346560e-08,-1.389964521399292121e-08,-1.496884869199237847e-08,-1.603805216999183407e-08,-1.710725564799128968e-08,-1.817645912599074528e-08,-1.924566260399020089e-08,-2.031486608198965649e-08,-2.138406955998911210e-08,-2.245327303798856770e-08,-2.352247651598802331e-08,-2.459167999398747891e-08,-2.566088347198693452e-08,-2.673008694998639012e-08,-2.779929042798584573e-08,-2.886849390598530133e-08,-2.993769738398475694e-08,-3.100690086198421254e-08,-3.207610433998366815e-08,-3.314530781798312375e-08,-3.421451129598257936e-08,-3.528371477398203496e-08,-3.635291825198149057e-08,-3.742212172998094617e-08,-3.849132520798040178e-08,-3.956052868597985738e-08,-4.062973216397931299e-08,-4.169893564197876859e-08,-4.276813911997822420e-08,-4.383734259797767980e-08,-4.490654607597713541e-08,-4.597574955397659101e-08,-4.704495303197604662e-08,-4.811415650997550222e-08,-4.918335998797495783e-08,-5.025256346597441343e-08,-5.132176694397386904e-08,-5.239097042197332464e-08,-5.346017389997278025e-08,-5.452937737797223585e-08,-5.559858085597169146e-08,-5.666778433397114706e-08,-5.773698781197060267e-08,-5.880619128997005827e-08,-5.987539476796951388e-08,-6.094459824596896286e-08,-6.201380172396841185e-08,-6.308300520196786084e-08,-6.415220867996730983e-08,-6.522141215796675881e-08,-6.629061563596620780e-08,-6.735981911396565679e-08 +0.000000000000000000e+00,8.741271558593149276e-10,1.748254311718629855e-09,2.622381467577944783e-09,3.496508623437259710e-09,4.370635779296574638e-09,5.244762935155889565e-09,6.118890091015204493e-09,6.993017246874519421e-09,7.867144402733835175e-09,8.741271558593150930e-09,9.615398714452466685e-09,1.048952587031178244e-08,1.136365302617109819e-08,1.223778018203041395e-08,1.311190733788972970e-08,1.398603449374904546e-08,1.486016164960836121e-08,1.573428880546767697e-08,1.660841596132699272e-08,1.748254311718630848e-08,1.835667027304562423e-08,1.923079742890493999e-08,2.010492458476425574e-08,2.097905174062357150e-08,2.185317889648288725e-08,2.272730605234220301e-08,2.360143320820151876e-08,2.447556036406083452e-08,2.534968751992015027e-08,2.622381467577946603e-08,2.709794183163878178e-08,2.797206898749809753e-08,2.884619614335741329e-08,2.972032329921672904e-08,3.059445045507604149e-08,3.146857761093535394e-08,3.234270476679466638e-08,3.321683192265397883e-08,3.409095907851329127e-08,3.496508623437260372e-08,3.583921339023191617e-08,3.671334054609122861e-08,3.758746770195054106e-08,3.846159485780985350e-08,3.933572201366916595e-08,4.020984916952847840e-08,4.108397632538779084e-08,4.195810348124710329e-08,4.283223063710641574e-08,4.370635779296572818e-08,4.458048494882504063e-08,4.545461210468435307e-08,4.632873926054366552e-08,4.720286641640297797e-08,4.807699357226229041e-08,4.895112072812160286e-08,4.982524788398091530e-08,5.069937503984022775e-08,5.157350219569954020e-08,5.244762935155885264e-08,5.332175650741816509e-08,5.419588366327747753e-08,5.507001081913678998e-08 +0.000000000000000000e+00,9.355743795923058131e-10,1.871148759184611626e-09,2.806723138776917439e-09,3.742297518369223252e-09,4.677871897961528652e-09,5.613446277553834051e-09,6.549020657146139451e-09,7.484595036738444850e-09,8.420169416330750250e-09,9.355743795923055649e-09,1.029131817551536105e-08,1.122689255510766645e-08,1.216246693469997185e-08,1.309804131429227725e-08,1.403361569388458265e-08,1.496919007347688639e-08,1.590476445306918848e-08,1.684033883266149057e-08,1.777591321225379266e-08,1.871148759184609476e-08,1.964706197143839685e-08,2.058263635103069894e-08,2.151821073062300103e-08,2.245378511021530312e-08,2.338935948980760521e-08,2.432493386939990730e-08,2.526050824899220939e-08,2.619608262858451148e-08,2.713165700817681357e-08,2.806723138776911566e-08,2.900280576736141775e-08,2.993838014695371984e-08,3.087395452654602194e-08,3.180952890613832403e-08,3.274510328573062612e-08,3.368067766532292821e-08,3.461625204491523030e-08,3.555182642450753239e-08,3.648740080409983448e-08,3.742297518369213657e-08,3.835854956328443866e-08,3.929412394287674075e-08,4.022969832246904284e-08,4.116527270206134493e-08,4.210084708165364702e-08,4.303642146124594912e-08,4.397199584083825121e-08,4.490757022043055330e-08,4.584314460002285539e-08,4.677871897961515748e-08,4.771429335920745957e-08,4.864986773879976166e-08,4.958544211839206375e-08,5.052101649798436584e-08,5.145659087757666793e-08,5.239216525716897002e-08,5.332773963676127211e-08,5.426331401635357420e-08,5.519888839594587630e-08,5.613446277553817839e-08,5.707003715513048048e-08,5.800561153472278257e-08,5.894118591431508466e-08 +0.000000000000000000e+00,9.098296379329608482e-10,1.819659275865921696e-09,2.729488913798882545e-09,3.639318551731843393e-09,4.549148189664804241e-09,5.458977827597765089e-09,6.368807465530725937e-09,7.278637103463686786e-09,8.188466741396647634e-09,9.098296379329608482e-09,1.000812601726256933e-08,1.091795565519553018e-08,1.182778529312849103e-08,1.273761493106145187e-08,1.364744456899441272e-08,1.455727420692737357e-08,1.546710384486033277e-08,1.637693348279329196e-08,1.728676312072625115e-08,1.819659275865921035e-08,1.910642239659216954e-08,2.001625203452512873e-08,2.092608167245808793e-08,2.183591131039104712e-08,2.274574094832400632e-08,2.365557058625696551e-08,2.456540022418992470e-08,2.547522986212288390e-08,2.638505950005584309e-08,2.729488913798880229e-08,2.820471877592176148e-08,2.911454841385472067e-08,3.002437805178767987e-08,3.093420768972063906e-08,3.184403732765359825e-08,3.275386696558655745e-08,3.366369660351951664e-08,3.457352624145247584e-08,3.548335587938543503e-08,3.639318551731839422e-08,3.730301515525135342e-08,3.821284479318431261e-08,3.912267443111727181e-08,4.003250406905023100e-08,4.094233370698319019e-08,4.185216334491614939e-08,4.276199298284910858e-08,4.367182262078206777e-08,4.458165225871502697e-08,4.549148189664798616e-08,4.640131153458094536e-08,4.731114117251390455e-08,4.822097081044686374e-08,4.913080044837982294e-08,5.004063008631278213e-08,5.095045972424574133e-08,5.186028936217870052e-08,5.277011900011165971e-08,5.367994863804461891e-08,5.458977827597757810e-08,5.549960791391053729e-08,5.640943755184349649e-08,5.731926718977645568e-08 +0.000000000000000000e+00,-8.741271560588799018e-10,-1.748254312117759804e-09,-2.622381468176639912e-09,-3.496508624235520021e-09,-4.370635780294400129e-09,-5.244762936353279824e-09,-6.118890092412159519e-09,-6.993017248471039214e-09,-7.867144404529918909e-09,-8.741271560588798604e-09,-9.615398716647678299e-09,-1.048952587270655799e-08,-1.136365302876543769e-08,-1.223778018482431738e-08,-1.311190734088319708e-08,-1.398603449694207677e-08,-1.486016165300095647e-08,-1.573428880905983782e-08,-1.660841596511871917e-08,-1.748254312117760052e-08,-1.835667027723648187e-08,-1.923079743329536322e-08,-2.010492458935424457e-08,-2.097905174541312591e-08,-2.185317890147200726e-08,-2.272730605753088861e-08,-2.360143321358976996e-08,-2.447556036964865131e-08,-2.534968752570753266e-08,-2.622381468176641401e-08,-2.709794183782529536e-08,-2.797206899388417671e-08,-2.884619614994305806e-08,-2.972032330600193941e-08,-3.059445046206082076e-08,-3.146857761811970211e-08,-3.234270477417858346e-08,-3.321683193023746481e-08,-3.409095908629634615e-08,-3.496508624235522750e-08,-3.583921339841410885e-08,-3.671334055447299020e-08,-3.758746771053187155e-08,-3.846159486659075290e-08,-3.933572202264963425e-08,-4.020984917870851560e-08,-4.108397633476739695e-08,-4.195810349082627830e-08,-4.283223064688515965e-08,-4.370635780294404100e-08,-4.458048495900292235e-08,-4.545461211506180370e-08,-4.632873927112068505e-08,-4.720286642717956639e-08,-4.807699358323844774e-08,-4.895112073929732909e-08,-4.982524789535621044e-08,-5.069937505141509179e-08,-5.157350220747397314e-08,-5.244762936353285449e-08,-5.332175651959173584e-08,-5.419588367565061719e-08,-5.507001083170949854e-08 +0.000000000000000000e+00,-9.355743797870921649e-10,-1.871148759574184330e-09,-2.806723139361276288e-09,-3.742297519148367832e-09,-4.677871898935459377e-09,-5.613446278722550921e-09,-6.549020658509642466e-09,-7.484595038296734010e-09,-8.420169418083825555e-09,-9.355743797870917099e-09,-1.029131817765800864e-08,-1.122689255744510019e-08,-1.216246693723219173e-08,-1.309804131701928328e-08,-1.403361569680637482e-08,-1.496919007659346471e-08,-1.590476445638055460e-08,-1.684033883616764449e-08,-1.777591321595473438e-08,-1.871148759574182427e-08,-1.964706197552891416e-08,-2.058263635531600405e-08,-2.151821073510309394e-08,-2.245378511489018383e-08,-2.338935949467727372e-08,-2.432493387446436361e-08,-2.526050825425145350e-08,-2.619608263403854339e-08,-2.713165701382563328e-08,-2.806723139361272317e-08,-2.900280577339981306e-08,-2.993838015318690295e-08,-3.087395453297399615e-08,-3.180952891276108935e-08,-3.274510329254818255e-08,-3.368067767233527575e-08,-3.461625205212236895e-08,-3.555182643190946215e-08,-3.648740081169655535e-08,-3.742297519148364855e-08,-3.835854957127074174e-08,-3.929412395105783494e-08,-4.022969833084492814e-08,-4.116527271063202134e-08,-4.210084709041911454e-08,-4.303642147020620774e-08,-4.397199584999330094e-08,-4.490757022978039414e-08,-4.584314460956748734e-08,-4.677871898935458053e-08,-4.771429336914167373e-08,-4.864986774892876693e-08,-4.958544212871586013e-08,-5.052101650850295333e-08,-5.145659088829004653e-08,-5.239216526807713973e-08,-5.332773964786423293e-08,-5.426331402765132613e-08,-5.519888840743841932e-08,-5.613446278722551252e-08,-5.707003716701260572e-08,-5.800561154679969892e-08,-5.894118592658679212e-08 +0.000000000000000000e+00,-9.098296381268956176e-10,-1.819659276253791235e-09,-2.729488914380686646e-09,-3.639318552507582057e-09,-4.549148190634477467e-09,-5.458977828761373292e-09,-6.368807466888269116e-09,-7.278637105015164941e-09,-8.188466743142059938e-09,-9.098296381268954935e-09,-1.000812601939584993e-08,-1.091795565752274493e-08,-1.182778529564963993e-08,-1.273761493377653492e-08,-1.364744457190342992e-08,-1.455727421003032492e-08,-1.546710384815721992e-08,-1.637693348628411326e-08,-1.728676312441100660e-08,-1.819659276253789994e-08,-1.910642240066479329e-08,-2.001625203879168663e-08,-2.092608167691857997e-08,-2.183591131504547331e-08,-2.274574095317236666e-08,-2.365557059129926000e-08,-2.456540022942615334e-08,-2.547522986755304669e-08,-2.638505950567994003e-08,-2.729488914380683337e-08,-2.820471878193372671e-08,-2.911454842006062006e-08,-3.002437805818751009e-08,-3.093420769631440013e-08,-3.184403733444129016e-08,-3.275386697256818019e-08,-3.366369661069507023e-08,-3.457352624882196026e-08,-3.548335588694885030e-08,-3.639318552507574033e-08,-3.730301516320263036e-08,-3.821284480132952040e-08,-3.912267443945641043e-08,-4.003250407758330047e-08,-4.094233371571019050e-08,-4.185216335383708053e-08,-4.276199299196397057e-08,-4.367182263009086060e-08,-4.458165226821775064e-08,-4.549148190634464067e-08,-4.640131154447153071e-08,-4.731114118259842074e-08,-4.822097082072531077e-08,-4.913080045885220081e-08,-5.004063009697909084e-08,-5.095045973510598088e-08,-5.186028937323287091e-08,-5.277011901135976094e-08,-5.367994864948665098e-08,-5.458977828761354101e-08,-5.549960792574043105e-08,-5.640943756386732108e-08,-5.731926720199421111e-08 +0.000000000000000000e+00,7.849332174322193828e-10,1.569866434864438766e-09,2.354799652296657942e-09,3.139732869728877118e-09,3.924666087161096294e-09,4.709599304593315883e-09,5.494532522025535473e-09,6.279465739457755063e-09,7.064398956889974652e-09,7.849332174322194242e-09,8.634265391754413831e-09,9.419198609186633421e-09,1.020413182661885301e-08,1.098906504405107260e-08,1.177399826148329219e-08,1.255893147891551178e-08,1.334386469634773137e-08,1.412879791377995096e-08,1.491373113121217055e-08,1.569866434864439179e-08,1.648359756607661304e-08,1.726853078350883428e-08,1.805346400094105552e-08,1.883839721837327677e-08,1.962333043580549801e-08,2.040826365323771926e-08,2.119319687066994050e-08,2.197813008810216174e-08,2.276306330553438299e-08,2.354799652296660423e-08,2.433292974039882548e-08,2.511786295783104672e-08,2.590279617526326796e-08,2.668772939269548921e-08,2.747266261012771045e-08,2.825759582755993170e-08,2.904252904499215294e-08,2.982746226242437418e-08,3.061239547985659212e-08,3.139732869728881005e-08,3.218226191472102799e-08,3.296719513215324593e-08,3.375212834958546386e-08,3.453706156701768180e-08,3.532199478444989973e-08,3.610692800188211767e-08,3.689186121931433560e-08,3.767679443674655354e-08,3.846172765417877147e-08,3.924666087161098941e-08,4.003159408904320734e-08,4.081652730647542528e-08,4.160146052390764321e-08,4.238639374133986115e-08,4.317132695877207908e-08,4.395626017620429702e-08,4.474119339363651495e-08,4.552612661106873289e-08,4.631105982850095082e-08,4.709599304593316876e-08,4.788092626336538670e-08,4.866585948079760463e-08,4.945079269822982257e-08 +0.000000000000000000e+00,8.257266417854349470e-10,1.651453283570869894e-09,2.477179925356305048e-09,3.302906567141740202e-09,4.128633208927175356e-09,4.954359850712610096e-09,5.780086492498044836e-09,6.605813134283479576e-09,7.431539776068914317e-09,8.257266417854349057e-09,9.082993059639783797e-09,9.908719701425218537e-09,1.073444634321065328e-08,1.156017298499608802e-08,1.238589962678152276e-08,1.321162626856695750e-08,1.403735291035239224e-08,1.486307955213782698e-08,1.568880619392326337e-08,1.651453283570870142e-08,1.734025947749413947e-08,1.816598611927957752e-08,1.899171276106501557e-08,1.981743940285045362e-08,2.064316604463589167e-08,2.146889268642132972e-08,2.229461932820676777e-08,2.312034596999220581e-08,2.394607261177764386e-08,2.477179925356308191e-08,2.559752589534851996e-08,2.642325253713395801e-08,2.724897917891939606e-08,2.807470582070483411e-08,2.890043246249027216e-08,2.972615910427571021e-08,3.055188574606114825e-08,3.137761238784658630e-08,3.220333902963202435e-08,3.302906567141746240e-08,3.385479231320290045e-08,3.468051895498833850e-08,3.550624559677377655e-08,3.633197223855921460e-08,3.715769888034465265e-08,3.798342552213009070e-08,3.880915216391552874e-08,3.963487880570096679e-08,4.046060544748640484e-08,4.128633208927184289e-08,4.211205873105728094e-08,4.293778537284271899e-08,4.376351201462815704e-08,4.458923865641359509e-08,4.541496529819903314e-08,4.624069193998447119e-08,4.706641858176990923e-08,4.789214522355534728e-08,4.871787186534078533e-08,4.954359850712622338e-08,5.036932514891166143e-08,5.119505179069709948e-08,5.202077843248253753e-08 +0.000000000000000000e+00,8.108145615378361484e-10,1.621629123075672297e-09,2.432443684613508238e-09,3.243258246151344180e-09,4.054072807689180122e-09,4.864887369227016477e-09,5.675701930764852832e-09,6.486516492302689187e-09,7.297331053840525542e-09,8.108145615378361898e-09,8.918960176916197426e-09,9.729774738454032954e-09,1.054058929999186848e-08,1.135140386152970401e-08,1.216221842306753954e-08,1.297303298460537507e-08,1.378384754614321059e-08,1.459466210768104612e-08,1.540547666921888165e-08,1.621629123075671718e-08,1.702710579229455271e-08,1.783792035383238823e-08,1.864873491537022376e-08,1.945954947690805929e-08,2.027036403844589482e-08,2.108117859998373035e-08,2.189199316152156587e-08,2.270280772305940140e-08,2.351362228459723693e-08,2.432443684613507246e-08,2.513525140767290799e-08,2.594606596921074351e-08,2.675688053074857904e-08,2.756769509228641457e-08,2.837850965382425010e-08,2.918932421536208563e-08,3.000013877689991785e-08,3.081095333843775006e-08,3.162176789997558228e-08,3.243258246151341450e-08,3.324339702305124672e-08,3.405421158458907894e-08,3.486502614612691116e-08,3.567584070766474338e-08,3.648665526920257560e-08,3.729746983074040782e-08,3.810828439227824004e-08,3.891909895381607226e-08,3.972991351535390448e-08,4.054072807689173670e-08,4.135154263842956892e-08,4.216235719996740114e-08,4.297317176150523335e-08,4.378398632304306557e-08,4.459480088458089779e-08,4.540561544611873001e-08,4.621643000765656223e-08,4.702724456919439445e-08,4.783805913073222667e-08,4.864887369227005889e-08,4.945968825380789111e-08,5.027050281534572333e-08,5.108131737688355555e-08 +0.000000000000000000e+00,-7.849332176403518802e-10,-1.569866435280703760e-09,-2.354799652921055641e-09,-3.139732870561407521e-09,-3.924666088201758988e-09,-4.709599305842110454e-09,-5.494532523482461921e-09,-6.279465741122813387e-09,-7.064398958763164854e-09,-7.849332176403516321e-09,-8.634265394043867787e-09,-9.419198611684219254e-09,-1.020413182932457072e-08,-1.098906504696492219e-08,-1.177399826460527365e-08,-1.255893148224562512e-08,-1.334386469988597659e-08,-1.412879791752632805e-08,-1.491373113516667952e-08,-1.569866435280702933e-08,-1.648359757044737914e-08,-1.726853078808772896e-08,-1.805346400572807877e-08,-1.883839722336842858e-08,-1.962333044100877839e-08,-2.040826365864912821e-08,-2.119319687628947802e-08,-2.197813009392982783e-08,-2.276306331157017764e-08,-2.354799652921052746e-08,-2.433292974685087727e-08,-2.511786296449122708e-08,-2.590279618213157689e-08,-2.668772939977192670e-08,-2.747266261741227652e-08,-2.825759583505262633e-08,-2.904252905269297614e-08,-2.982746227033332595e-08,-3.061239548797367577e-08,-3.139732870561402558e-08,-3.218226192325437539e-08,-3.296719514089472520e-08,-3.375212835853507501e-08,-3.453706157617542483e-08,-3.532199479381577464e-08,-3.610692801145612445e-08,-3.689186122909647426e-08,-3.767679444673682408e-08,-3.846172766437717389e-08,-3.924666088201752370e-08,-4.003159409965787351e-08,-4.081652731729822333e-08,-4.160146053493857314e-08,-4.238639375257892295e-08,-4.317132697021927276e-08,-4.395626018785962257e-08,-4.474119340549997239e-08,-4.552612662314032220e-08,-4.631105984078067201e-08,-4.709599305842102182e-08,-4.788092627606137164e-08,-4.866585949370172145e-08,-4.945079271134207126e-08 +0.000000000000000000e+00,-8.257266419893110832e-10,-1.651453283978622166e-09,-2.477179925967933146e-09,-3.302906567957243919e-09,-4.128633209946554692e-09,-4.954359851935865465e-09,-5.780086493925176238e-09,-6.605813135914487011e-09,-7.431539777903797784e-09,-8.257266419893109384e-09,-9.082993061882420985e-09,-9.908719703871732585e-09,-1.073444634586104418e-08,-1.156017298785035579e-08,-1.238589962983966739e-08,-1.321162627182897899e-08,-1.403735291381829059e-08,-1.486307955580760219e-08,-1.568880619779691379e-08,-1.651453283978622539e-08,-1.734025948177553699e-08,-1.816598612376484859e-08,-1.899171276575416019e-08,-1.981743940774347179e-08,-2.064316604973278339e-08,-2.146889269172209499e-08,-2.229461933371140659e-08,-2.312034597570071819e-08,-2.394607261769002979e-08,-2.477179925967934139e-08,-2.559752590166865299e-08,-2.642325254365796459e-08,-2.724897918564727619e-08,-2.807470582763658779e-08,-2.890043246962589939e-08,-2.972615911161521099e-08,-3.055188575360452590e-08,-3.137761239559384081e-08,-3.220333903758315572e-08,-3.302906567957247062e-08,-3.385479232156178553e-08,-3.468051896355110044e-08,-3.550624560554041535e-08,-3.633197224752973026e-08,-3.715769888951904517e-08,-3.798342553150836008e-08,-3.880915217349767499e-08,-3.963487881548698990e-08,-4.046060545747630481e-08,-4.128633209946561971e-08,-4.211205874145493462e-08,-4.293778538344424953e-08,-4.376351202543356444e-08,-4.458923866742287935e-08,-4.541496530941219426e-08,-4.624069195140150917e-08,-4.706641859339082408e-08,-4.789214523538013899e-08,-4.871787187736945389e-08,-4.954359851935876880e-08,-5.036932516134808371e-08,-5.119505180333739862e-08,-5.202077844532671353e-08 +0.000000000000000000e+00,-8.108145617410662565e-10,-1.621629123482132513e-09,-2.432443685223198666e-09,-3.243258246964264612e-09,-4.054072808705330972e-09,-4.864887370446397332e-09,-5.675701932187463692e-09,-6.486516493928530052e-09,-7.297331055669596412e-09,-8.108145617410661945e-09,-8.918960179151727477e-09,-9.729774740892793010e-09,-1.054058930263385854e-08,-1.135140386437492408e-08,-1.216221842611598961e-08,-1.297303298785705514e-08,-1.378384754959812067e-08,-1.459466211133918621e-08,-1.540547667308025008e-08,-1.621629123482131396e-08,-1.702710579656237784e-08,-1.783792035830344172e-08,-1.864873492004450560e-08,-1.945954948178556948e-08,-2.027036404352663335e-08,-2.108117860526769723e-08,-2.189199316700876111e-08,-2.270280772874982499e-08,-2.351362229049088887e-08,-2.432443685223195275e-08,-2.513525141397301663e-08,-2.594606597571408050e-08,-2.675688053745514438e-08,-2.756769509919620826e-08,-2.837850966093727214e-08,-2.918932422267833602e-08,-3.000013878441939990e-08,-3.081095334616046046e-08,-3.162176790790152103e-08,-3.243258246964258160e-08,-3.324339703138364217e-08,-3.405421159312470274e-08,-3.486502615486576331e-08,-3.567584071660682388e-08,-3.648665527834788445e-08,-3.729746984008894502e-08,-3.810828440183000559e-08,-3.891909896357106616e-08,-3.972991352531212673e-08,-4.054072808705318730e-08,-4.135154264879424787e-08,-4.216235721053530844e-08,-4.297317177227636901e-08,-4.378398633401742958e-08,-4.459480089575849015e-08,-4.540561545749955072e-08,-4.621643001924061129e-08,-4.702724458098167186e-08,-4.783805914272273243e-08,-4.864887370446379300e-08,-4.945968826620485357e-08,-5.027050282794591414e-08,-5.108131738968697471e-08 +0.000000000000000000e+00,7.220149134960532426e-10,1.444029826992106485e-09,2.166044740488159521e-09,2.888059653984212557e-09,3.610074567480265593e-09,4.332089480976319042e-09,5.054104394472372491e-09,5.776119307968425941e-09,6.498134221464479390e-09,7.220149134960532840e-09,7.942164048456586289e-09,8.664178961952639739e-09,9.386193875448693188e-09,1.010820878894474664e-08,1.083022370244080009e-08,1.155223861593685354e-08,1.227425352943290699e-08,1.299626844292896043e-08,1.371828335642501388e-08,1.444029826992106733e-08,1.516231318341712078e-08,1.588432809691317258e-08,1.660634301040922437e-08,1.732835792390527617e-08,1.805037283740132796e-08,1.877238775089737976e-08,1.949440266439343155e-08,2.021641757788948335e-08,2.093843249138553514e-08,2.166044740488158694e-08,2.238246231837763873e-08,2.310447723187369053e-08,2.382649214536974232e-08,2.454850705886579412e-08,2.527052197236184591e-08,2.599253688585789771e-08,2.671455179935394950e-08,2.743656671285000130e-08,2.815858162634605309e-08,2.888059653984210489e-08,2.960261145333815668e-08,3.032462636683420848e-08,3.104664128033026027e-08,3.176865619382631207e-08,3.249067110732236386e-08,3.321268602081841566e-08,3.393470093431446745e-08,3.465671584781051925e-08,3.537873076130657104e-08,3.610074567480262284e-08,3.682276058829867463e-08,3.754477550179472643e-08,3.826679041529077822e-08,3.898880532878683002e-08,3.971082024228288181e-08,4.043283515577893361e-08,4.115485006927498540e-08,4.187686498277103720e-08,4.259887989626708899e-08,4.332089480976314079e-08,4.404290972325919259e-08,4.476492463675524438e-08,4.548693955025129618e-08 +0.000000000000000000e+00,7.521193504482329237e-10,1.504238700896465847e-09,2.256358051344698771e-09,3.008477401792931695e-09,3.760596752241164205e-09,4.512716102689396715e-09,5.264835453137629225e-09,6.016954803585861735e-09,6.769074154034094245e-09,7.521193504482326755e-09,8.273312854930559265e-09,9.025432205378791775e-09,9.777551555827024285e-09,1.052967090627525680e-08,1.128179025672348931e-08,1.203390960717172182e-08,1.278602895761995433e-08,1.353814830806818684e-08,1.429026765851641935e-08,1.504238700896465020e-08,1.579450635941287940e-08,1.654662570986110860e-08,1.729874506030933781e-08,1.805086441075756701e-08,1.880298376120579621e-08,1.955510311165402541e-08,2.030722246210225461e-08,2.105934181255048381e-08,2.181146116299871301e-08,2.256358051344694222e-08,2.331569986389517142e-08,2.406781921434340062e-08,2.481993856479162982e-08,2.557205791523985902e-08,2.632417726568808822e-08,2.707629661613631742e-08,2.782841596658454662e-08,2.858053531703277583e-08,2.933265466748100503e-08,3.008477401792923423e-08,3.083689336837746343e-08,3.158901271882569263e-08,3.234113206927392183e-08,3.309325141972215103e-08,3.384537077017038024e-08,3.459749012061860944e-08,3.534960947106683864e-08,3.610172882151506784e-08,3.685384817196329704e-08,3.760596752241152624e-08,3.835808687285975544e-08,3.911020622330798465e-08,3.986232557375621385e-08,4.061444492420444305e-08,4.136656427465267225e-08,4.211868362510090145e-08,4.287080297554913065e-08,4.362292232599735985e-08,4.437504167644558905e-08,4.512716102689381826e-08,4.587928037734204746e-08,4.663139972779027666e-08,4.738351907823850586e-08 +0.000000000000000000e+00,7.384226306350195776e-10,1.476845261270039155e-09,2.215267891905058836e-09,2.953690522540078724e-09,3.692113153175098612e-09,4.430535783810118500e-09,5.168958414445138387e-09,5.907381045080158275e-09,6.645803675715178163e-09,7.384226306350198051e-09,8.122648936985218766e-09,8.861071567620238654e-09,9.599494198255258541e-09,1.033791682889027843e-08,1.107633945952529832e-08,1.181476209016031820e-08,1.255318472079533809e-08,1.329160735143035798e-08,1.403002998206537787e-08,1.476845261270039776e-08,1.550687524333541764e-08,1.624529787397043753e-08,1.698372050460545742e-08,1.772214313524047731e-08,1.846056576587549720e-08,1.919898839651051708e-08,1.993741102714553697e-08,2.067583365778055686e-08,2.141425628841557675e-08,2.215267891905059663e-08,2.289110154968561652e-08,2.362952418032063641e-08,2.436794681095565630e-08,2.510636944159067619e-08,2.584479207222569607e-08,2.658321470286071596e-08,2.732163733349573585e-08,2.806005996413075574e-08,2.879848259476577562e-08,2.953690522540079551e-08,3.027532785603581540e-08,3.101375048667083529e-08,3.175217311730585518e-08,3.249059574794087506e-08,3.322901837857589495e-08,3.396744100921091484e-08,3.470586363984593473e-08,3.544428627048095461e-08,3.618270890111597450e-08,3.692113153175099439e-08,3.765955416238601428e-08,3.839797679302103417e-08,3.913639942365605405e-08,3.987482205429107394e-08,4.061324468492609383e-08,4.135166731556111372e-08,4.209008994619613361e-08,4.282851257683115349e-08,4.356693520746617338e-08,4.430535783810119327e-08,4.504378046873621316e-08,4.578220309937123304e-08,4.652062573000625293e-08 +0.000000000000000000e+00,-7.220149137126587578e-10,-1.444029827425317516e-09,-2.166044741137976067e-09,-2.888059654850634618e-09,-3.610074568563293169e-09,-4.332089482275952133e-09,-5.054104395988611098e-09,-5.776119309701270063e-09,-6.498134223413929027e-09,-7.220149137126587992e-09,-7.942164050839246956e-09,-8.664178964551905921e-09,-9.386193878264564886e-09,-1.010820879197722385e-08,-1.083022370568988281e-08,-1.155223861940254178e-08,-1.227425353311520074e-08,-1.299626844682785971e-08,-1.371828336054051867e-08,-1.444029827425317764e-08,-1.516231318796583660e-08,-1.588432810167849391e-08,-1.660634301539115122e-08,-1.732835792910380853e-08,-1.805037284281646584e-08,-1.877238775652912315e-08,-1.949440267024178046e-08,-2.021641758395443777e-08,-2.093843249766709508e-08,-2.166044741137975239e-08,-2.238246232509240970e-08,-2.310447723880506702e-08,-2.382649215251772433e-08,-2.454850706623038164e-08,-2.527052197994303895e-08,-2.599253689365569626e-08,-2.671455180736835357e-08,-2.743656672108101088e-08,-2.815858163479366819e-08,-2.888059654850632550e-08,-2.960261146221898281e-08,-3.032462637593164012e-08,-3.104664128964430074e-08,-3.176865620335696136e-08,-3.249067111706962197e-08,-3.321268603078228259e-08,-3.393470094449494321e-08,-3.465671585820760383e-08,-3.537873077192026445e-08,-3.610074568563292507e-08,-3.682276059934558569e-08,-3.754477551305824631e-08,-3.826679042677090693e-08,-3.898880534048356755e-08,-3.971082025419622816e-08,-4.043283516790888878e-08,-4.115485008162154940e-08,-4.187686499533421002e-08,-4.259887990904687064e-08,-4.332089482275953126e-08,-4.404290973647219188e-08,-4.476492465018485250e-08,-4.548693956389751312e-08 +0.000000000000000000e+00,-7.521193506606442196e-10,-1.504238701321288439e-09,-2.256358051981932659e-09,-3.008477402642576878e-09,-3.760596753303221098e-09,-4.512716103963865317e-09,-5.264835454624509537e-09,-6.016954805285153757e-09,-6.769074155945797976e-09,-7.521193506606442196e-09,-8.273312857267086415e-09,-9.025432207927730635e-09,-9.777551558588374855e-09,-1.052967090924901907e-08,-1.128179025990966329e-08,-1.203390961057030751e-08,-1.278602896123095173e-08,-1.353814831189159595e-08,-1.429026766255224017e-08,-1.504238701321288439e-08,-1.579450636387352696e-08,-1.654662571453416952e-08,-1.729874506519481209e-08,-1.805086441585545465e-08,-1.880298376651609722e-08,-1.955510311717673978e-08,-2.030722246783738235e-08,-2.105934181849802491e-08,-2.181146116915866748e-08,-2.256358051981931004e-08,-2.331569987047995261e-08,-2.406781922114059517e-08,-2.481993857180123774e-08,-2.557205792246188030e-08,-2.632417727312252287e-08,-2.707629662378316544e-08,-2.782841597444380800e-08,-2.858053532510445057e-08,-2.933265467576509313e-08,-3.008477402642573570e-08,-3.083689337708637826e-08,-3.158901272774702083e-08,-3.234113207840766339e-08,-3.309325142906830596e-08,-3.384537077972894852e-08,-3.459749013038959109e-08,-3.534960948105023365e-08,-3.610172883171087622e-08,-3.685384818237151878e-08,-3.760596753303216135e-08,-3.835808688369280391e-08,-3.911020623435344648e-08,-3.986232558501408904e-08,-4.061444493567473161e-08,-4.136656428633537417e-08,-4.211868363699601674e-08,-4.287080298765665930e-08,-4.362292233831730187e-08,-4.437504168897794444e-08,-4.512716103963858700e-08,-4.587928039029922957e-08,-4.663139974095987213e-08,-4.738351909162051470e-08 +0.000000000000000000e+00,-7.384226308472045362e-10,-1.476845261694409072e-09,-2.215267892541613609e-09,-2.953690523388818145e-09,-3.692113154236022681e-09,-4.430535785083227217e-09,-5.168958415930431340e-09,-5.907381046777635463e-09,-6.645803677624839585e-09,-7.384226308472043708e-09,-8.122648939319247831e-09,-8.861071570166452780e-09,-9.599494201013657730e-09,-1.033791683186086268e-08,-1.107633946270806763e-08,-1.181476209355527258e-08,-1.255318472440247753e-08,-1.329160735524968248e-08,-1.403002998609688743e-08,-1.476845261694409238e-08,-1.550687524779129733e-08,-1.624529787863850228e-08,-1.698372050948570723e-08,-1.772214314033291218e-08,-1.846056577118011713e-08,-1.919898840202732208e-08,-1.993741103287452703e-08,-2.067583366372173198e-08,-2.141425629456893693e-08,-2.215267892541614188e-08,-2.289110155626334683e-08,-2.362952418711055178e-08,-2.436794681795775673e-08,-2.510636944880496168e-08,-2.584479207965216663e-08,-2.658321471049937158e-08,-2.732163734134657653e-08,-2.806005997219378148e-08,-2.879848260304098643e-08,-2.953690523388819138e-08,-3.027532786473539963e-08,-3.101375049558260789e-08,-3.175217312642981615e-08,-3.249059575727702441e-08,-3.322901838812423267e-08,-3.396744101897144093e-08,-3.470586364981864918e-08,-3.544428628066585744e-08,-3.618270891151306570e-08,-3.692113154236027396e-08,-3.765955417320748222e-08,-3.839797680405469048e-08,-3.913639943490189874e-08,-3.987482206574910699e-08,-4.061324469659631525e-08,-4.135166732744352351e-08,-4.209008995829073177e-08,-4.282851258913794003e-08,-4.356693521998514829e-08,-4.430535785083235655e-08,-4.504378048167956480e-08,-4.578220311252677306e-08,-4.652062574337398132e-08 +0.000000000000000000e+00,6.717083208462884968e-10,1.343416641692576994e-09,2.015124962538865594e-09,2.686833283385154401e-09,3.358541604231443208e-09,4.030249925077732015e-09,4.701958245924020822e-09,5.373666566770309629e-09,6.045374887616598436e-09,6.717083208462887243e-09,7.388791529309176050e-09,8.060499850155465684e-09,8.732208171001756145e-09,9.403916491848046607e-09,1.007562481269433707e-08,1.074733313354062753e-08,1.141904145438691799e-08,1.209074977523320845e-08,1.276245809607949891e-08,1.343416641692578937e-08,1.410587473777207984e-08,1.477758305861837030e-08,1.544929137946466076e-08,1.612099970031095122e-08,1.679270802115724168e-08,1.746441634200353214e-08,1.813612466284982260e-08,1.880783298369611307e-08,1.947954130454240353e-08,2.015124962538869399e-08,2.082295794623498445e-08,2.149466626708127491e-08,2.216637458792756537e-08,2.283808290877385583e-08,2.350979122962014630e-08,2.418149955046643676e-08,2.485320787131272722e-08,2.552491619215901768e-08,2.619662451300530814e-08,2.686833283385159860e-08,2.754004115469788906e-08,2.821174947554417952e-08,2.888345779639046999e-08,2.955516611723676045e-08,3.022687443808304760e-08,3.089858275892933475e-08,3.157029107977562191e-08,3.224199940062190906e-08,3.291370772146819621e-08,3.358541604231448336e-08,3.425712436316077052e-08,3.492883268400705767e-08,3.560054100485334482e-08,3.627224932569963197e-08,3.694395764654591913e-08,3.761566596739220628e-08,3.828737428823849343e-08,3.895908260908478058e-08,3.963079092993106774e-08,4.030249925077735489e-08,4.097420757162364204e-08,4.164591589246992920e-08,4.231762421331621635e-08 +0.000000000000000000e+00,6.965284875805682255e-10,1.393056975161136451e-09,2.089585462741704677e-09,2.786113950322272902e-09,3.482642437902841128e-09,4.179170925483409353e-09,4.875699413063977992e-09,5.572227900644546631e-09,6.268756388225115270e-09,6.965284875805683910e-09,7.661813363386252549e-09,8.358341850966820361e-09,9.054870338547388172e-09,9.751398826127955984e-09,1.044792731370852380e-08,1.114445580128909161e-08,1.184098428886965942e-08,1.253751277645022723e-08,1.323404126403079504e-08,1.393056975161136286e-08,1.462709823919193067e-08,1.532362672677249848e-08,1.602015521435306629e-08,1.671668370193363410e-08,1.741321218951420192e-08,1.810974067709476973e-08,1.880626916467533754e-08,1.950279765225590535e-08,2.019932613983647316e-08,2.089585462741704098e-08,2.159238311499760879e-08,2.228891160257817660e-08,2.298544009015874441e-08,2.368196857773931222e-08,2.437849706531988003e-08,2.507502555290044785e-08,2.577155404048101566e-08,2.646808252806158347e-08,2.716461101564215128e-08,2.786113950322271909e-08,2.855766799080328691e-08,2.925419647838385472e-08,2.995072496596442584e-08,3.064725345354499696e-08,3.134378194112556808e-08,3.204031042870613920e-08,3.273683891628671032e-08,3.343336740386728144e-08,3.412989589144785256e-08,3.482642437902842368e-08,3.552295286660899480e-08,3.621948135418956592e-08,3.691600984177013705e-08,3.761253832935070817e-08,3.830906681693127929e-08,3.900559530451185041e-08,3.970212379209242153e-08,4.039865227967299265e-08,4.109518076725356377e-08,4.179170925483413489e-08,4.248823774241470601e-08,4.318476622999527713e-08,4.388129471757584825e-08 +0.000000000000000000e+00,6.779215173407500095e-10,1.355843034681500019e-09,2.033764552022250235e-09,2.711686069363000451e-09,3.389607586703750668e-09,4.067529104044500470e-09,4.745450621385250273e-09,5.423372138726000076e-09,6.101293656066749878e-09,6.779215173407499681e-09,7.457136690748250311e-09,8.135058208089000941e-09,8.812979725429751571e-09,9.490901242770502201e-09,1.016882276011125283e-08,1.084674427745200346e-08,1.152466579479275409e-08,1.220258731213350472e-08,1.288050882947425535e-08,1.355843034681500598e-08,1.423635186415575661e-08,1.491427338149650724e-08,1.559219489883725787e-08,1.627011641617800850e-08,1.694803793351875913e-08,1.762595945085950976e-08,1.830388096820026039e-08,1.898180248554101102e-08,1.965972400288176165e-08,2.033764552022251228e-08,2.101556703756326291e-08,2.169348855490401354e-08,2.237141007224476417e-08,2.304933158958551480e-08,2.372725310692626543e-08,2.440517462426701606e-08,2.508309614160776669e-08,2.576101765894851732e-08,2.643893917628926795e-08,2.711686069363001858e-08,2.779478221097076921e-08,2.847270372831151984e-08,2.915062524565227047e-08,2.982854676299302110e-08,3.050646828033377173e-08,3.118438979767452236e-08,3.186231131501527299e-08,3.254023283235602362e-08,3.321815434969677425e-08,3.389607586703752488e-08,3.457399738437827551e-08,3.525191890171902614e-08,3.592984041905977677e-08,3.660776193640052740e-08,3.728568345374127802e-08,3.796360497108202865e-08,3.864152648842277928e-08,3.931944800576352991e-08,3.999736952310428054e-08,4.067529104044503117e-08,4.135321255778578180e-08,4.203113407512653243e-08,4.270905559246728306e-08 +0.000000000000000000e+00,-6.717083210707708394e-10,-1.343416642141541679e-09,-2.015124963212312622e-09,-2.686833284283083771e-09,-3.358541605353854921e-09,-4.030249926424626070e-09,-4.701958247495396806e-09,-5.373666568566167542e-09,-6.045374889636938278e-09,-6.717083210707709014e-09,-7.388791531778479750e-09,-8.060499852849250486e-09,-8.732208173920021222e-09,-9.403916494990791958e-09,-1.007562481606156269e-08,-1.074733313713233343e-08,-1.141904145820310417e-08,-1.209074977927387490e-08,-1.276245810034464564e-08,-1.343416642141541637e-08,-1.410587474248618711e-08,-1.477758306355695785e-08,-1.544929138462772693e-08,-1.612099970569849766e-08,-1.679270802676926840e-08,-1.746441634784003914e-08,-1.813612466891080987e-08,-1.880783298998158061e-08,-1.947954131105235134e-08,-2.015124963212312208e-08,-2.082295795319389282e-08,-2.149466627426466355e-08,-2.216637459533543429e-08,-2.283808291640620502e-08,-2.350979123747697576e-08,-2.418149955854774650e-08,-2.485320787961851723e-08,-2.552491620068928797e-08,-2.619662452176005870e-08,-2.686833284283082944e-08,-2.754004116390160018e-08,-2.821174948497237091e-08,-2.888345780604314165e-08,-2.955516612711391238e-08,-3.022687444818468312e-08,-3.089858276925545386e-08,-3.157029109032622459e-08,-3.224199941139699533e-08,-3.291370773246776606e-08,-3.358541605353853680e-08,-3.425712437460930754e-08,-3.492883269568007827e-08,-3.560054101675084901e-08,-3.627224933782161974e-08,-3.694395765889239048e-08,-3.761566597996316122e-08,-3.828737430103393195e-08,-3.895908262210470269e-08,-3.963079094317547342e-08,-4.030249926424624416e-08,-4.097420758531701490e-08,-4.164591590638778563e-08,-4.231762422745855637e-08 +0.000000000000000000e+00,-6.965284878012031443e-10,-1.393056975602406289e-09,-2.089585463403609226e-09,-2.786113951204812164e-09,-3.482642439006015101e-09,-4.179170926807218452e-09,-4.875699414608421803e-09,-5.572227902409625154e-09,-6.268756390210828505e-09,-6.965284878012031856e-09,-7.661813365813235207e-09,-8.358341853614438559e-09,-9.054870341415641910e-09,-9.751398829216845261e-09,-1.044792731701804861e-08,-1.114445580481925196e-08,-1.184098429262045531e-08,-1.253751278042165866e-08,-1.323404126822286202e-08,-1.393056975602406537e-08,-1.462709824382526872e-08,-1.532362673162647372e-08,-1.602015521942767707e-08,-1.671668370722888043e-08,-1.741321219503008378e-08,-1.810974068283128713e-08,-1.880626917063249048e-08,-1.950279765843369383e-08,-2.019932614623489718e-08,-2.089585463403610053e-08,-2.159238312183730388e-08,-2.228891160963850723e-08,-2.298544009743971059e-08,-2.368196858524091394e-08,-2.437849707304211729e-08,-2.507502556084332064e-08,-2.577155404864452399e-08,-2.646808253644572734e-08,-2.716461102424693069e-08,-2.786113951204813404e-08,-2.855766799984933739e-08,-2.925419648765054075e-08,-2.995072497545174410e-08,-3.064725346325294745e-08,-3.134378195105415080e-08,-3.204031043885535415e-08,-3.273683892665655750e-08,-3.343336741445776085e-08,-3.412989590225896420e-08,-3.482642439006016755e-08,-3.552295287786137090e-08,-3.621948136566257426e-08,-3.691600985346377761e-08,-3.761253834126498096e-08,-3.830906682906618431e-08,-3.900559531686738766e-08,-3.970212380466859101e-08,-4.039865229246979436e-08,-4.109518078027099771e-08,-4.179170926807220106e-08,-4.248823775587340442e-08,-4.318476624367460777e-08,-4.388129473147581112e-08 +0.000000000000000000e+00,-6.779215175621352845e-10,-1.355843035124270569e-09,-2.033764552686405957e-09,-2.711686070248541551e-09,-3.389607587810677146e-09,-4.067529105372812741e-09,-4.745450622934948335e-09,-5.423372140497083930e-09,-6.101293658059219525e-09,-6.779215175621355119e-09,-7.457136693183489887e-09,-8.135058210745623827e-09,-8.812979728307757767e-09,-9.490901245869891708e-09,-1.016882276343202565e-08,-1.084674428099415959e-08,-1.152466579855629353e-08,-1.220258731611842747e-08,-1.288050883368056141e-08,-1.355843035124269535e-08,-1.423635186880482929e-08,-1.491427338636696323e-08,-1.559219490392909717e-08,-1.627011642149123111e-08,-1.694803793905336505e-08,-1.762595945661549899e-08,-1.830388097417763293e-08,-1.898180249173976687e-08,-1.965972400930190081e-08,-2.033764552686403475e-08,-2.101556704442616869e-08,-2.169348856198830263e-08,-2.237141007955043657e-08,-2.304933159711257051e-08,-2.372725311467470445e-08,-2.440517463223683839e-08,-2.508309614979897233e-08,-2.576101766736110627e-08,-2.643893918492324021e-08,-2.711686070248537415e-08,-2.779478222004750810e-08,-2.847270373760964204e-08,-2.915062525517177598e-08,-2.982854677273390661e-08,-3.050646829029603724e-08,-3.118438980785816787e-08,-3.186231132542029850e-08,-3.254023284298242913e-08,-3.321815436054455977e-08,-3.389607587810669040e-08,-3.457399739566882103e-08,-3.525191891323095166e-08,-3.592984043079308229e-08,-3.660776194835521292e-08,-3.728568346591734355e-08,-3.796360498347947419e-08,-3.864152650104160482e-08,-3.931944801860373545e-08,-3.999736953616586608e-08,-4.067529105372799671e-08,-4.135321257129012734e-08,-4.203113408885225798e-08,-4.270905560641438861e-08 +0.000000000000000000e+00,6.292324143187996140e-10,1.258464828637599228e-09,1.887697242956398635e-09,2.516929657275198043e-09,3.146162071593997450e-09,3.775394485912797271e-09,4.404626900231597091e-09,5.033859314550396912e-09,5.663091728869196733e-09,6.292324143187996554e-09,6.921556557506796375e-09,7.550788971825596196e-09,8.180021386144395189e-09,8.809253800463194183e-09,9.438486214781993176e-09,1.006771862910079217e-08,1.069695104341959116e-08,1.132618345773839016e-08,1.195541587205718915e-08,1.258464828637598814e-08,1.321388070069478714e-08,1.384311311501358613e-08,1.447234552933238513e-08,1.510157794365118246e-08,1.573081035796997980e-08,1.636004277228877714e-08,1.698927518660757448e-08,1.761850760092637182e-08,1.824774001524516916e-08,1.887697242956396650e-08,1.950620484388276384e-08,2.013543725820156118e-08,2.076466967252035852e-08,2.139390208683915586e-08,2.202313450115795320e-08,2.265236691547675054e-08,2.328159932979554788e-08,2.391083174411434521e-08,2.454006415843314255e-08,2.516929657275193989e-08,2.579852898707073723e-08,2.642776140138953457e-08,2.705699381570833191e-08,2.768622623002712925e-08,2.831545864434592659e-08,2.894469105866472393e-08,2.957392347298352127e-08,3.020315588730231861e-08,3.083238830162111264e-08,3.146162071593990667e-08,3.209085313025870070e-08,3.272008554457749473e-08,3.334931795889628876e-08,3.397855037321508279e-08,3.460778278753387682e-08,3.523701520185267085e-08,3.586624761617146488e-08,3.649548003049025891e-08,3.712471244480905294e-08,3.775394485912784697e-08,3.838317727344664101e-08,3.901240968776543504e-08,3.964164210208422907e-08 +0.000000000000000000e+00,6.503852071545182640e-10,1.300770414309036528e-09,1.951155621463554689e-09,2.601540828618072643e-09,3.251926035772590596e-09,3.902311242927108550e-09,4.552696450081626504e-09,5.203081657236144458e-09,5.853466864390662412e-09,6.503852071545180365e-09,7.154237278699698319e-09,7.804622485854215446e-09,8.455007693008731745e-09,9.105392900163248045e-09,9.755778107317764344e-09,1.040616331447228064e-08,1.105654852162679694e-08,1.170693372878131324e-08,1.235731893593582954e-08,1.300770414309034584e-08,1.365808935024486214e-08,1.430847455739937844e-08,1.495885976455389474e-08,1.560924497170841104e-08,1.625963017886292734e-08,1.691001538601744364e-08,1.756040059317195994e-08,1.821078580032647624e-08,1.886117100748099254e-08,1.951155621463550884e-08,2.016194142179002514e-08,2.081232662894454144e-08,2.146271183609905773e-08,2.211309704325357403e-08,2.276348225040809033e-08,2.341386745756260663e-08,2.406425266471712293e-08,2.471463787187163923e-08,2.536502307902615553e-08,2.601540828618067183e-08,2.666579349333518813e-08,2.731617870048970443e-08,2.796656390764422073e-08,2.861694911479873703e-08,2.926733432195325333e-08,2.991771952910776963e-08,3.056810473626228593e-08,3.121848994341680223e-08,3.186887515057131853e-08,3.251926035772583483e-08,3.316964556488035113e-08,3.382003077203486742e-08,3.447041597918938372e-08,3.512080118634390002e-08,3.577118639349841632e-08,3.642157160065293262e-08,3.707195680780744892e-08,3.772234201496196522e-08,3.837272722211648152e-08,3.902311242927099782e-08,3.967349763642551412e-08,4.032388284358003042e-08,4.097426805073454672e-08 +0.000000000000000000e+00,6.206831884635298116e-10,1.241366376927059623e-09,1.862049565390589538e-09,2.482732753854119660e-09,3.103415942317649782e-09,3.724099130781179904e-09,4.344782319244709612e-09,4.965465507708239320e-09,5.586148696171769028e-09,6.206831884635298736e-09,6.827515073098828445e-09,7.448198261562358153e-09,8.068881450025887861e-09,8.689564638489417569e-09,9.310247826952947277e-09,9.930931015416476986e-09,1.055161420388000669e-08,1.117229739234353640e-08,1.179298058080706611e-08,1.241366376927059582e-08,1.303434695773412553e-08,1.365503014619765523e-08,1.427571333466118494e-08,1.489639652312471465e-08,1.551707971158824436e-08,1.613776290005177572e-08,1.675844608851530708e-08,1.737912927697883845e-08,1.799981246544236981e-08,1.862049565390590117e-08,1.924117884236943253e-08,1.986186203083296390e-08,2.048254521929649526e-08,2.110322840776002662e-08,2.172391159622355799e-08,2.234459478468708935e-08,2.296527797315062071e-08,2.358596116161415207e-08,2.420664435007768344e-08,2.482732753854121480e-08,2.544801072700474616e-08,2.606869391546827752e-08,2.668937710393180889e-08,2.731006029239534025e-08,2.793074348085887161e-08,2.855142666932240297e-08,2.917210985778593434e-08,2.979279304624946570e-08,3.041347623471299706e-08,3.103415942317652842e-08,3.165484261164005979e-08,3.227552580010359115e-08,3.289620898856712251e-08,3.351689217703065387e-08,3.413757536549418524e-08,3.475825855395771660e-08,3.537894174242124796e-08,3.599962493088477932e-08,3.662030811934831069e-08,3.724099130781184205e-08,3.786167449627537341e-08,3.848235768473890477e-08,3.910304087320243614e-08 +0.000000000000000000e+00,-6.292324145495401983e-10,-1.258464829099080397e-09,-1.887697243648620595e-09,-2.516929658198160793e-09,-3.146162072747700992e-09,-3.775394487297241190e-09,-4.404626901846781388e-09,-5.033859316396321587e-09,-5.663091730945861785e-09,-6.292324145495401983e-09,-6.921556560044942182e-09,-7.550788974594482380e-09,-8.180021389144023406e-09,-8.809253803693564431e-09,-9.438486218243105457e-09,-1.006771863279264648e-08,-1.069695104734218751e-08,-1.132618346189172853e-08,-1.195541587644126956e-08,-1.258464829099081058e-08,-1.321388070554035161e-08,-1.384311312008989264e-08,-1.447234553463943366e-08,-1.510157794918897469e-08,-1.573081036373851571e-08,-1.636004277828805674e-08,-1.698927519283759776e-08,-1.761850760738713879e-08,-1.824774002193667981e-08,-1.887697243648622084e-08,-1.950620485103576186e-08,-2.013543726558530289e-08,-2.076466968013484392e-08,-2.139390209468438494e-08,-2.202313450923392597e-08,-2.265236692378346699e-08,-2.328159933833300802e-08,-2.391083175288254904e-08,-2.454006416743209007e-08,-2.516929658198163109e-08,-2.579852899653117212e-08,-2.642776141108071315e-08,-2.705699382563025417e-08,-2.768622624017979520e-08,-2.831545865472933622e-08,-2.894469106927887725e-08,-2.957392348382841827e-08,-3.020315589837795599e-08,-3.083238831292749371e-08,-3.146162072747703142e-08,-3.209085314202656914e-08,-3.272008555657610686e-08,-3.334931797112564457e-08,-3.397855038567518229e-08,-3.460778280022472001e-08,-3.523701521477425772e-08,-3.586624762932379544e-08,-3.649548004387333316e-08,-3.712471245842287087e-08,-3.775394487297240859e-08,-3.838317728752194631e-08,-3.901240970207148403e-08,-3.964164211662102174e-08 +0.000000000000000000e+00,-6.503852073822929922e-10,-1.300770414764585984e-09,-1.951155622146879080e-09,-2.601540829529172383e-09,-3.251926036911465685e-09,-3.902311244293758987e-09,-4.552696451676052703e-09,-5.203081659058346419e-09,-5.853466866440640136e-09,-6.503852073822933852e-09,-7.154237281205227568e-09,-7.804622488587521284e-09,-8.455007695969815000e-09,-9.105392903352108716e-09,-9.755778110734402432e-09,-1.040616331811669615e-08,-1.105654852549898986e-08,-1.170693373288128358e-08,-1.235731894026357730e-08,-1.300770414764587101e-08,-1.365808935502816473e-08,-1.430847456241045844e-08,-1.495885976979275381e-08,-1.560924497717504918e-08,-1.625963018455734456e-08,-1.691001539193963993e-08,-1.756040059932193530e-08,-1.821078580670423067e-08,-1.886117101408652604e-08,-1.951155622146882141e-08,-2.016194142885111678e-08,-2.081232663623341215e-08,-2.146271184361570752e-08,-2.211309705099800289e-08,-2.276348225838029826e-08,-2.341386746576259363e-08,-2.406425267314488900e-08,-2.471463788052718437e-08,-2.536502308790947974e-08,-2.601540829529177511e-08,-2.666579350267407048e-08,-2.731617871005636585e-08,-2.796656391743866122e-08,-2.861694912482095659e-08,-2.926733433220325196e-08,-2.991771953958554733e-08,-3.056810474696784270e-08,-3.121848995435013807e-08,-3.186887516173243344e-08,-3.251926036911472881e-08,-3.316964557649702419e-08,-3.382003078387931956e-08,-3.447041599126161493e-08,-3.512080119864391030e-08,-3.577118640602620567e-08,-3.642157161340850104e-08,-3.707195682079079641e-08,-3.772234202817309178e-08,-3.837272723555538715e-08,-3.902311244293768252e-08,-3.967349765031997789e-08,-4.032388285770227326e-08,-4.097426806508456863e-08 +0.000000000000000000e+00,-6.206831886937331421e-10,-1.241366377387466284e-09,-1.862049566081199323e-09,-2.482732754774932155e-09,-3.103415943468664987e-09,-3.724099132162397819e-09,-4.344782320856130237e-09,-4.965465509549862655e-09,-5.586148698243595074e-09,-6.206831886937327492e-09,-6.827515075631059910e-09,-7.448198264324792329e-09,-8.068881453018524747e-09,-8.689564641712257165e-09,-9.310247830405989583e-09,-9.930931019099722002e-09,-1.055161420779345442e-08,-1.117229739648718684e-08,-1.179298058518091926e-08,-1.241366377387465168e-08,-1.303434696256838409e-08,-1.365503015126211651e-08,-1.427571333995584893e-08,-1.489639652864958135e-08,-1.551707971734331377e-08,-1.613776290603704618e-08,-1.675844609473077860e-08,-1.737912928342451102e-08,-1.799981247211824344e-08,-1.862049566081197586e-08,-1.924117884950570828e-08,-1.986186203819944069e-08,-2.048254522689317311e-08,-2.110322841558690553e-08,-2.172391160428063795e-08,-2.234459479297437037e-08,-2.296527798166810279e-08,-2.358596117036183520e-08,-2.420664435905556762e-08,-2.482732754774930004e-08,-2.544801073644303246e-08,-2.606869392513676488e-08,-2.668937711383049730e-08,-2.731006030252422971e-08,-2.793074349121796213e-08,-2.855142667991169455e-08,-2.917210986860542697e-08,-2.979279305729915939e-08,-3.041347624599288850e-08,-3.103415943468662092e-08,-3.165484262338035333e-08,-3.227552581207408575e-08,-3.289620900076781817e-08,-3.351689218946155059e-08,-3.413757537815528301e-08,-3.475825856684901543e-08,-3.537894175554274784e-08,-3.599962494423648026e-08,-3.662030813293021268e-08,-3.724099132162394510e-08,-3.786167451031767752e-08,-3.848235769901140994e-08,-3.910304088770514235e-08 +0.000000000000000000e+00,5.939499797842109278e-10,1.187899959568421856e-09,1.781849939352632887e-09,2.375799919136844125e-09,2.969749898921055363e-09,3.563699878705266601e-09,4.157649858489477838e-09,4.751599838273689076e-09,5.345549818057900314e-09,5.939499797842111552e-09,6.533449777626322790e-09,7.127399757410534028e-09,7.721349737194746093e-09,8.315299716978957331e-09,8.909249696763168569e-09,9.503199676547379807e-09,1.009714965633159105e-08,1.069109963611580228e-08,1.128504961590001352e-08,1.187899959568422476e-08,1.247294957546843600e-08,1.306689955525264723e-08,1.366084953503685847e-08,1.425479951482106971e-08,1.484874949460528095e-08,1.544269947438949219e-08,1.603664945417370342e-08,1.663059943395791466e-08,1.722454941374212590e-08,1.781849939352633714e-08,1.841244937331054838e-08,1.900639935309475961e-08,1.960034933287897085e-08,2.019429931266318209e-08,2.078824929244739333e-08,2.138219927223160457e-08,2.197614925201581580e-08,2.257009923180002704e-08,2.316404921158423828e-08,2.375799919136844952e-08,2.435194917115266076e-08,2.494589915093687199e-08,2.553984913072108323e-08,2.613379911050529447e-08,2.672774909028950571e-08,2.732169907007371695e-08,2.791564904985792818e-08,2.850959902964213942e-08,2.910354900942635066e-08,2.969749898921056190e-08,3.029144896899477314e-08,3.088539894877898437e-08,3.147934892856319561e-08,3.207329890834740685e-08,3.266724888813161809e-08,3.326119886791582933e-08,3.385514884770004056e-08,3.444909882748425180e-08,3.504304880726846304e-08,3.563699878705267428e-08,3.623094876683688551e-08,3.682489874662109675e-08,3.741884872640530799e-08 +0.000000000000000000e+00,-1.182240067681316180e-19,-2.364480135362632361e-19,-3.546720203043948541e-19,-4.728960270725264721e-19,-5.911200338406580901e-19,-7.093440406087897082e-19,-8.275680473769213262e-19,-9.457920541450529442e-19,-1.064016060913184562e-18,-1.182240067681316180e-18,-1.300464074449447798e-18,-1.418688081217579416e-18,-1.536912087985711034e-18,-1.655136094753842652e-18,-1.773360101521974270e-18,-1.891584108290105888e-18,-2.009808115058237507e-18,-2.128032121826369125e-18,-2.246256128594500743e-18,-2.364480135362632361e-18,-2.482704142130763979e-18,-2.600928148898895597e-18,-2.719152155667027215e-18,-2.837376162435158833e-18,-2.955600169203290451e-18,-3.073824175971422069e-18,-3.192048182739553687e-18,-3.310272189507685305e-18,-3.428496196275816923e-18,-3.546720203043948541e-18,-3.664944209812080544e-18,-3.783168216580212547e-18,-3.901392223348344551e-18,-4.019616230116476554e-18,-4.137840236884608557e-18,-4.256064243652740560e-18,-4.374288250420872563e-18,-4.492512257189004567e-18,-4.610736263957136570e-18,-4.728960270725268573e-18,-4.847184277493400576e-18,-4.965408284261532579e-18,-5.083632291029664583e-18,-5.201856297797796586e-18,-5.320080304565928589e-18,-5.438304311334060592e-18,-5.556528318102192596e-18,-5.674752324870324599e-18,-5.792976331638456602e-18,-5.911200338406588605e-18,-6.029424345174720608e-18,-6.147648351942852612e-18,-6.265872358710984615e-18,-6.384096365479116618e-18,-6.502320372247248621e-18,-6.620544379015380624e-18,-6.738768385783512628e-18,-6.856992392551644631e-18,-6.975216399319776634e-18,-7.093440406087907867e-18,-7.211664412856039100e-18,-7.329888419624170333e-18,-7.448112426392301566e-18 +0.000000000000000000e+00,6.112507253345599786e-10,1.222501450669119957e-09,1.833752176003679936e-09,2.445002901338239914e-09,3.056253626672799893e-09,3.667504352007359872e-09,4.278755077341919437e-09,4.890005802676479002e-09,5.501256528011038567e-09,6.112507253345598132e-09,6.723757978680157697e-09,7.335008704014717262e-09,7.946259429349276827e-09,8.557510154683835565e-09,9.168760880018394303e-09,9.780011605352953040e-09,1.039126233068751178e-08,1.100251305602207052e-08,1.161376378135662925e-08,1.222501450669118799e-08,1.283626523202574673e-08,1.344751595736030547e-08,1.405876668269486421e-08,1.467001740802942294e-08,1.528126813336398334e-08,1.589251885869854373e-08,1.650376958403310412e-08,1.711502030936766451e-08,1.772627103470222490e-08,1.833752176003678530e-08,1.894877248537134569e-08,1.956002321070590608e-08,2.017127393604046647e-08,2.078252466137502687e-08,2.139377538670958726e-08,2.200502611204414765e-08,2.261627683737870804e-08,2.322752756271326843e-08,2.383877828804782883e-08,2.445002901338238922e-08,2.506127973871694961e-08,2.567253046405151000e-08,2.628378118938607039e-08,2.689503191472063079e-08,2.750628264005519118e-08,2.811753336538975157e-08,2.872878409072431196e-08,2.934003481605887236e-08,2.995128554139343275e-08,3.056253626672799314e-08,3.117378699206255353e-08,3.178503771739711392e-08,3.239628844273167432e-08,3.300753916806623471e-08,3.361878989340079510e-08,3.423004061873535549e-08,3.484129134406991589e-08,3.545254206940447628e-08,3.606379279473903667e-08,3.667504352007359706e-08,3.728629424540815745e-08,3.789754497074271785e-08,3.850879569607727824e-08 +0.000000000000000000e+00,5.584454500405771042e-10,1.116890900081154208e-09,1.675336350121731416e-09,2.233781800162308830e-09,2.792227250202886245e-09,3.350672700243463659e-09,3.909118150284041487e-09,4.467563600324619315e-09,5.026009050365197143e-09,5.584454500405774971e-09,6.142899950446352799e-09,6.701345400486930627e-09,7.259790850527508455e-09,7.818236300568086283e-09,8.376681750608664111e-09,8.935127200649241939e-09,9.493572650689819767e-09,1.005201810073039759e-08,1.061046355077097542e-08,1.116890900081155325e-08,1.172735445085213108e-08,1.228579990089270891e-08,1.284424535093328673e-08,1.340269080097386456e-08,1.396113625101444239e-08,1.451958170105502022e-08,1.507802715109559970e-08,1.563647260113617918e-08,1.619491805117675867e-08,1.675336350121733815e-08,1.731180895125791763e-08,1.787025440129849711e-08,1.842869985133907660e-08,1.898714530137965608e-08,1.954559075142023556e-08,2.010403620146081504e-08,2.066248165150139452e-08,2.122092710154197401e-08,2.177937255158255349e-08,2.233781800162313297e-08,2.289626345166371245e-08,2.345470890170429194e-08,2.401315435174487142e-08,2.457159980178545090e-08,2.513004525182603038e-08,2.568849070186660987e-08,2.624693615190718935e-08,2.680538160194776883e-08,2.736382705198834831e-08,2.792227250202892779e-08,2.848071795206950728e-08,2.903916340211008676e-08,2.959760885215066624e-08,3.015605430219124572e-08,3.071449975223182521e-08,3.127294520227240469e-08,3.183139065231298417e-08,3.238983610235356365e-08,3.294828155239414314e-08,3.350672700243472262e-08,3.406517245247530210e-08,3.462361790251588158e-08,3.518206335255646107e-08 +0.000000000000000000e+00,2.969910964349649501e-10,5.939821928699299001e-10,8.909732893048948502e-10,1.187964385739859800e-09,1.484955482174824854e-09,1.781946578609789907e-09,2.078937675044754961e-09,2.375928771479720014e-09,2.672919867914685068e-09,2.969910964349650121e-09,3.266902060784615175e-09,3.563893157219580228e-09,3.860884253654545282e-09,4.157875350089509921e-09,4.454866446524474561e-09,4.751857542959439201e-09,5.048848639394403841e-09,5.345839735829368481e-09,5.642830832264333121e-09,5.939821928699297761e-09,6.236813025134262401e-09,6.533804121569227040e-09,6.830795218004191680e-09,7.127786314439156320e-09,7.424777410874120960e-09,7.721768507309085600e-09,8.018759603744051067e-09,8.315750700179016534e-09,8.612741796613982001e-09,8.909732893048947468e-09,9.206723989483912935e-09,9.503715085918878402e-09,9.800706182353843869e-09,1.009769727878880934e-08,1.039468837522377480e-08,1.069167947165874027e-08,1.098867056809370574e-08,1.128566166452867120e-08,1.158265276096363667e-08,1.187964385739860214e-08,1.217663495383356761e-08,1.247362605026853307e-08,1.277061714670349854e-08,1.306760824313846401e-08,1.336459933957342947e-08,1.366159043600839494e-08,1.395858153244336041e-08,1.425557262887832588e-08,1.455256372531329134e-08,1.484955482174825681e-08,1.514654591818322228e-08,1.544353701461818774e-08,1.574052811105315321e-08,1.603751920748811868e-08,1.633451030392308414e-08,1.663150140035804961e-08,1.692849249679301508e-08,1.722548359322798055e-08,1.752247468966294601e-08,1.781946578609791148e-08,1.811645688253287695e-08,1.841344797896784241e-08,1.871043907540280788e-08 +0.000000000000000000e+00,-1.196858142013861276e-19,-2.393716284027722553e-19,-3.590574426041583829e-19,-4.787432568055445106e-19,-5.984290710069305901e-19,-7.181148852083166696e-19,-8.378006994097027491e-19,-9.574865136110888286e-19,-1.077172327812474908e-18,-1.196858142013860988e-18,-1.316543956215247067e-18,-1.436229770416633147e-18,-1.555915584618019226e-18,-1.675601398819405306e-18,-1.795287213020791192e-18,-1.914973027222177272e-18,-2.034658841423563351e-18,-2.154344655624949431e-18,-2.274030469826335510e-18,-2.393716284027721590e-18,-2.513402098229107669e-18,-2.633087912430493749e-18,-2.752773726631879828e-18,-2.872459540833265908e-18,-2.992145355034651987e-18,-3.111831169236038067e-18,-3.231516983437424146e-18,-3.351202797638810226e-18,-3.470888611840196305e-18,-3.590574426041582385e-18,-3.710260240242968464e-18,-3.829946054444354544e-18,-3.949631868645740623e-18,-4.069317682847126703e-18,-4.189003497048512782e-18,-4.308689311249898862e-18,-4.428375125451284941e-18,-4.548060939652671021e-18,-4.667746753854057100e-18,-4.787432568055443180e-18,-4.907118382256829259e-18,-5.026804196458215339e-18,-5.146490010659601418e-18,-5.266175824860987498e-18,-5.385861639062373577e-18,-5.505547453263759657e-18,-5.625233267465145736e-18,-5.744919081666531816e-18,-5.864604895867917895e-18,-5.984290710069303975e-18,-6.103976524270690054e-18,-6.223662338472076134e-18,-6.343348152673462213e-18,-6.463033966874848293e-18,-6.582719781076234372e-18,-6.702405595277620452e-18,-6.822091409479006531e-18,-6.941777223680392611e-18,-7.061463037881778690e-18,-7.181148852083164770e-18,-7.300834666284550849e-18,-7.420520480485936929e-18,-7.540206294687323008e-18 +0.000000000000000000e+00,-5.939499800204110075e-10,-1.187899960040822015e-09,-1.781849940061233023e-09,-2.375799920081644030e-09,-2.969749900102055038e-09,-3.563699880122466045e-09,-4.157649860142877053e-09,-4.751599840163288060e-09,-5.345549820183699068e-09,-5.939499800204110075e-09,-6.533449780224521083e-09,-7.127399760244932090e-09,-7.721349740265343098e-09,-8.315299720285754105e-09,-8.909249700306165113e-09,-9.503199680326576120e-09,-1.009714966034698713e-08,-1.069109964036739814e-08,-1.128504962038780914e-08,-1.187899960040822015e-08,-1.247294958042863116e-08,-1.306689956044904217e-08,-1.366084954046945317e-08,-1.425479952048986418e-08,-1.484874950051027519e-08,-1.544269948053068620e-08,-1.603664946055109720e-08,-1.663059944057150821e-08,-1.722454942059191922e-08,-1.781849940061233023e-08,-1.841244938063274123e-08,-1.900639936065315224e-08,-1.960034934067356325e-08,-2.019429932069397426e-08,-2.078824930071438526e-08,-2.138219928073479627e-08,-2.197614926075520728e-08,-2.257009924077561829e-08,-2.316404922079602929e-08,-2.375799920081644030e-08,-2.435194918083685131e-08,-2.494589916085726232e-08,-2.553984914087767332e-08,-2.613379912089808433e-08,-2.672774910091849534e-08,-2.732169908093890635e-08,-2.791564906095931735e-08,-2.850959904097972836e-08,-2.910354902100013937e-08,-2.969749900102055038e-08,-3.029144898104095807e-08,-3.088539896106136577e-08,-3.147934894108177347e-08,-3.207329892110218117e-08,-3.266724890112258887e-08,-3.326119888114299657e-08,-3.385514886116340427e-08,-3.444909884118381197e-08,-3.504304882120421966e-08,-3.563699880122462736e-08,-3.623094878124503506e-08,-3.682489876126544276e-08,-3.741884874128585046e-08 +0.000000000000000000e+00,-2.969910966713502149e-10,-5.939821933427004298e-10,-8.909732900140506446e-10,-1.187964386685400860e-09,-1.484955483356750971e-09,-1.781946580028101082e-09,-2.078937676699451194e-09,-2.375928773370801305e-09,-2.672919870042151417e-09,-2.969910966713501528e-09,-3.266902063384851640e-09,-3.563893160056201751e-09,-3.860884256727551863e-09,-4.157875353398902388e-09,-4.454866450070252913e-09,-4.751857546741603438e-09,-5.048848643412953963e-09,-5.345839740084304488e-09,-5.642830836755655013e-09,-5.939821933427005538e-09,-6.236813030098356063e-09,-6.533804126769706588e-09,-6.830795223441057114e-09,-7.127786320112407639e-09,-7.424777416783758164e-09,-7.721768513455108689e-09,-8.018759610126459214e-09,-8.315750706797809739e-09,-8.612741803469160264e-09,-8.909732900140510789e-09,-9.206723996811861314e-09,-9.503715093483211839e-09,-9.800706190154562364e-09,-1.009769728682591289e-08,-1.039468838349726341e-08,-1.069167948016861394e-08,-1.098867057683996446e-08,-1.128566167351131499e-08,-1.158265277018266551e-08,-1.187964386685401604e-08,-1.217663496352536656e-08,-1.247362606019671709e-08,-1.277061715686806761e-08,-1.306760825353941814e-08,-1.336459935021076867e-08,-1.366159044688211919e-08,-1.395858154355346972e-08,-1.425557264022482024e-08,-1.455256373689617077e-08,-1.484955483356752129e-08,-1.514654593023887347e-08,-1.544353702691022730e-08,-1.574052812358158114e-08,-1.603751922025293497e-08,-1.633451031692428881e-08,-1.663150141359564264e-08,-1.692849251026699647e-08,-1.722548360693835031e-08,-1.752247470360970414e-08,-1.781946580028105797e-08,-1.811645689695241181e-08,-1.841344799362376564e-08,-1.871043909029511948e-08 +0.000000000000000000e+00,-6.112507255679486783e-10,-1.222501451135897357e-09,-1.833752176703846138e-09,-2.445002902271795127e-09,-3.056253627839744115e-09,-3.667504353407693103e-09,-4.278755078975642506e-09,-4.890005804543591908e-09,-5.501256530111541310e-09,-6.112507255679490712e-09,-6.723757981247440114e-09,-7.335008706815389516e-09,-7.946259432383338918e-09,-8.557510157951288320e-09,-9.168760883519237722e-09,-9.780011609087187124e-09,-1.039126233465513653e-08,-1.100251306022308593e-08,-1.161376378579103533e-08,-1.222501451135898473e-08,-1.283626523692693413e-08,-1.344751596249488354e-08,-1.405876668806283294e-08,-1.467001741363078234e-08,-1.528126813919873009e-08,-1.589251886476667784e-08,-1.650376959033462558e-08,-1.711502031590257333e-08,-1.772627104147052108e-08,-1.833752176703846883e-08,-1.894877249260641657e-08,-1.956002321817436432e-08,-2.017127394374231207e-08,-2.078252466931025982e-08,-2.139377539487820756e-08,-2.200502612044615531e-08,-2.261627684601410306e-08,-2.322752757158205081e-08,-2.383877829714999856e-08,-2.445002902271794630e-08,-2.506127974828589405e-08,-2.567253047385384180e-08,-2.628378119942178955e-08,-2.689503192498973729e-08,-2.750628265055768504e-08,-2.811753337612563279e-08,-2.872878410169358054e-08,-2.934003482726152828e-08,-2.995128555282947603e-08,-3.056253627839742047e-08,-3.117378700396536491e-08,-3.178503772953330935e-08,-3.239628845510125379e-08,-3.300753918066919823e-08,-3.361878990623714267e-08,-3.423004063180508710e-08,-3.484129135737303154e-08,-3.545254208294097598e-08,-3.606379280850892042e-08,-3.667504353407686486e-08,-3.728629425964480930e-08,-3.789754498521275374e-08,-3.850879571078069818e-08 +0.000000000000000000e+00,-5.584454502797517254e-10,-1.116890900559503451e-09,-1.675336350839255176e-09,-2.233781801119006902e-09,-2.792227251398758627e-09,-3.350672701678510353e-09,-3.909118151958261664e-09,-4.467563602238012976e-09,-5.026009052517764288e-09,-5.584454502797515600e-09,-6.142899953077266912e-09,-6.701345403357018224e-09,-7.259790853636769535e-09,-7.818236303916520020e-09,-8.376681754196270505e-09,-8.935127204476020989e-09,-9.493572654755771474e-09,-1.005201810503552196e-08,-1.061046355531527244e-08,-1.116890900559502293e-08,-1.172735445587477341e-08,-1.228579990615452390e-08,-1.284424535643427438e-08,-1.340269080671402487e-08,-1.396113625699377535e-08,-1.451958170727352584e-08,-1.507802715755327632e-08,-1.563647260783302681e-08,-1.619491805811277729e-08,-1.675336350839252777e-08,-1.731180895867227826e-08,-1.787025440895202874e-08,-1.842869985923177923e-08,-1.898714530951152971e-08,-1.954559075979128020e-08,-2.010403621007103068e-08,-2.066248166035078117e-08,-2.122092711063053165e-08,-2.177937256091028214e-08,-2.233781801119003262e-08,-2.289626346146978311e-08,-2.345470891174953359e-08,-2.401315436202928408e-08,-2.457159981230903456e-08,-2.513004526258878504e-08,-2.568849071286853553e-08,-2.624693616314828601e-08,-2.680538161342803650e-08,-2.736382706370778698e-08,-2.792227251398753747e-08,-2.848071796426728795e-08,-2.903916341454703844e-08,-2.959760886482678892e-08,-3.015605431510653941e-08,-3.071449976538629320e-08,-3.127294521566604699e-08,-3.183139066594580079e-08,-3.238983611622555458e-08,-3.294828156650530837e-08,-3.350672701678506217e-08,-3.406517246706481596e-08,-3.462361791734456975e-08,-3.518206336762432355e-08 +0.000000000000000000e+00,1.108318175166843148e-09,2.216636350333686297e-09,3.324954525500529445e-09,4.433272700667372593e-09,5.541590875834215741e-09,6.649909051001058890e-09,7.758227226167902038e-09,8.866545401334745186e-09,9.974863576501588335e-09,1.108318175166843148e-08,1.219149992683527463e-08,1.329981810200211778e-08,1.440813627716896093e-08,1.551645445233580408e-08,1.662477262750264557e-08,1.773309080266948706e-08,1.884140897783632856e-08,1.994972715300317005e-08,2.105804532817001155e-08,2.216636350333685304e-08,2.327468167850369453e-08,2.438299985367053603e-08,2.549131802883737752e-08,2.659963620400421902e-08,2.770795437917106051e-08,2.881627255433790200e-08,2.992459072950474350e-08,3.103290890467158830e-08,3.214122707983843310e-08,3.324954525500527790e-08,3.435786343017212271e-08,3.546618160533896751e-08,3.657449978050581231e-08,3.768281795567265712e-08,3.879113613083950192e-08,3.989945430600634672e-08,4.100777248117319152e-08,4.211609065634003633e-08,4.322440883150688113e-08,4.433272700667372593e-08,4.544104518184057073e-08,4.654936335700741554e-08,4.765768153217426034e-08,4.876599970734110514e-08,4.987431788250794994e-08,5.098263605767479475e-08,5.209095423284163955e-08,5.319927240800848435e-08,5.430759058317532916e-08,5.541590875834217396e-08,5.652422693350901876e-08,5.763254510867586356e-08,5.874086328384270837e-08,5.984918145900955317e-08,6.095749963417639135e-08,6.206581780934322954e-08,6.317413598451006772e-08,6.428245415967690591e-08,6.539077233484374409e-08,6.649909051001058228e-08,6.760740868517742046e-08,6.871572686034425865e-08,6.982404503551109684e-08 +0.000000000000000000e+00,1.693894263880245506e-09,3.387788527760491012e-09,5.081682791640736312e-09,6.775577055520981198e-09,8.469471319401226084e-09,1.016336558328147097e-08,1.185725984716171586e-08,1.355115411104196074e-08,1.524504837492220397e-08,1.693894263880244886e-08,1.863283690268269374e-08,2.032673116656293863e-08,2.202062543044318352e-08,2.371451969432342840e-08,2.540841395820367329e-08,2.710230822208391817e-08,2.879620248596416306e-08,3.049009674984440795e-08,3.218399101372465283e-08,3.387788527760489772e-08,3.557177954148514260e-08,3.726567380536538749e-08,3.895956806924563237e-08,4.065346233312587726e-08,4.234735659700612215e-08,4.404125086088636703e-08,4.573514512476661192e-08,4.742903938864685680e-08,4.912293365252710169e-08,5.081682791640734658e-08,5.251072218028759146e-08,5.420461644416783635e-08,5.589851070804808123e-08,5.759240497192832612e-08,5.928629923580857100e-08,6.098019349968881589e-08,6.267408776356906739e-08,6.436798202744931890e-08,6.606187629132957040e-08,6.775577055520982190e-08,6.944966481909007341e-08,7.114355908297032491e-08,7.283745334685057641e-08,7.453134761073082792e-08,7.622524187461107942e-08,7.791913613849133092e-08,7.961303040237158243e-08,8.130692466625183393e-08,8.300081893013208543e-08,8.469471319401233694e-08,8.638860745789258844e-08,8.808250172177283994e-08,8.977639598565309145e-08,9.147029024953334295e-08,9.316418451341359445e-08,9.485807877729384596e-08,9.655197304117409746e-08,9.824586730505434896e-08,9.993976156893460047e-08,1.016336558328148520e-07,1.033275500966951035e-07,1.050214443605753550e-07,1.067153386244556065e-07 +0.000000000000000000e+00,-8.864975346402786030e-20,-1.772995069280557206e-19,-2.659492603920835930e-19,-3.545990138561114894e-19,-4.432487673201393858e-19,-5.318985207841672822e-19,-6.205482742481951786e-19,-7.091980277122230750e-19,-7.978477811762509714e-19,-8.864975346402789642e-19,-9.751472881043070532e-19,-1.063797041568335142e-18,-1.152446795032363231e-18,-1.241096548496391320e-18,-1.329746301960419409e-18,-1.418396055424447498e-18,-1.507045808888475587e-18,-1.595695562352503676e-18,-1.684345315816531765e-18,-1.772995069280559854e-18,-1.861644822744587943e-18,-1.950294576208616032e-18,-2.038944329672644121e-18,-2.127594083136672210e-18,-2.216243836600700299e-18,-2.304893590064728388e-18,-2.393543343528756477e-18,-2.482193096992784566e-18,-2.570842850456812655e-18,-2.659492603920840744e-18,-2.748142357384868833e-18,-2.836792110848896922e-18,-2.925441864312925011e-18,-3.014091617776953100e-18,-3.102741371240981189e-18,-3.191391124705009278e-18,-3.280040878169037367e-18,-3.368690631633065456e-18,-3.457340385097093545e-18,-3.545990138561122020e-18,-3.634639892025150109e-18,-3.723289645489178198e-18,-3.811939398953206287e-18,-3.900589152417234376e-18,-3.989238905881262465e-18,-4.077888659345290554e-18,-4.166538412809318643e-18,-4.255188166273346732e-18,-4.343837919737374821e-18,-4.432487673201402910e-18,-4.521137426665430999e-18,-4.609787180129459088e-18,-4.698436933593487177e-18,-4.787086687057515266e-18,-4.875736440521543355e-18,-4.964386193985571444e-18,-5.053035947449599533e-18,-5.141685700913627622e-18,-5.230335454377655711e-18,-5.318985207841683800e-18,-5.407634961305711889e-18,-5.496284714769739978e-18,-5.584934468233768067e-18 +0.000000000000000000e+00,1.246812703197418466e-09,2.493625406394836931e-09,3.740438109592255810e-09,4.987250812789674690e-09,6.234063515987093569e-09,7.480876219184511621e-09,8.727688922381929673e-09,9.974501625579347725e-09,1.122131432877676578e-08,1.246812703197418383e-08,1.371493973517160188e-08,1.496175243836901993e-08,1.620856514156643633e-08,1.745537784476385273e-08,1.870219054796126913e-08,1.994900325115868552e-08,2.119581595435610192e-08,2.244262865755351832e-08,2.368944136075093472e-08,2.493625406394835111e-08,2.618306676714576751e-08,2.742987947034318391e-08,2.867669217354060031e-08,2.992350487673802001e-08,3.117031757993543972e-08,3.241713028313285943e-08,3.366394298633027913e-08,3.491075568952769884e-08,3.615756839272511855e-08,3.740438109592253825e-08,3.865119379911995796e-08,3.989800650231737766e-08,4.114481920551479737e-08,4.239163190871221708e-08,4.363844461190963678e-08,4.488525731510705649e-08,4.613207001830447620e-08,4.737888272150189590e-08,4.862569542469931561e-08,4.987250812789673532e-08,5.111932083109415502e-08,5.236613353429157473e-08,5.361294623748899443e-08,5.485975894068641414e-08,5.610657164388383385e-08,5.735338434708125355e-08,5.860019705027867326e-08,5.984700975347609297e-08,6.109382245667351929e-08,6.234063515987094561e-08,6.358744786306837194e-08,6.483426056626579826e-08,6.608107326946322459e-08,6.732788597266065091e-08,6.857469867585807723e-08,6.982151137905550356e-08,7.106832408225292988e-08,7.231513678545035620e-08,7.356194948864778253e-08,7.480876219184520885e-08,7.605557489504263518e-08,7.730238759824006150e-08,7.854920030143748782e-08 +0.000000000000000000e+00,1.881490556328119097e-09,3.762981112656238194e-09,5.644471668984357291e-09,7.525962225312476388e-09,9.407452781640595485e-09,1.128894333796871458e-08,1.317043389429683368e-08,1.505192445062495278e-08,1.693341500695307187e-08,1.881490556328119097e-08,2.069639611960931007e-08,2.257788667593742916e-08,2.445937723226554826e-08,2.634086778859366736e-08,2.822235834492178646e-08,3.010384890124990555e-08,3.198533945757802796e-08,3.386683001390615036e-08,3.574832057023427277e-08,3.762981112656239518e-08,3.951130168289051758e-08,4.139279223921863999e-08,4.327428279554676239e-08,4.515577335187488480e-08,4.703726390820300721e-08,4.891875446453112961e-08,5.080024502085925202e-08,5.268173557718737442e-08,5.456322613351549683e-08,5.644471668984361923e-08,5.832620724617174164e-08,6.020769780249986405e-08,6.208918835882798645e-08,6.397067891515610886e-08,6.585216947148423126e-08,6.773366002781235367e-08,6.961515058414047607e-08,7.149664114046859848e-08,7.337813169679672089e-08,7.525962225312484329e-08,7.714111280945296570e-08,7.902260336578108810e-08,8.090409392210921051e-08,8.278558447843733292e-08,8.466707503476545532e-08,8.654856559109357773e-08,8.843005614742170013e-08,9.031154670374982254e-08,9.219303726007794494e-08,9.407452781640606735e-08,9.595601837273418976e-08,9.783750892906231216e-08,9.971899948539043457e-08,1.016004900417185570e-07,1.034819805980466794e-07,1.053634711543748018e-07,1.072449617107029242e-07,1.091264522670310466e-07,1.110079428233591690e-07,1.128894333796872914e-07,1.147709239360154138e-07,1.166524144923435362e-07,1.185339050486716586e-07 +0.000000000000000000e+00,1.225454277011472942e-09,2.450908554022945884e-09,3.676362831034418620e-09,4.901817108045890942e-09,6.127271385057363264e-09,7.352725662068835585e-09,8.578179939080308734e-09,9.803634216091781883e-09,1.102908849310325503e-08,1.225454277011472818e-08,1.347999704712620133e-08,1.470545132413767448e-08,1.593090560114914763e-08,1.715635987816062078e-08,1.838181415517209393e-08,1.960726843218356708e-08,2.083272270919504022e-08,2.205817698620651337e-08,2.328363126321798652e-08,2.450908554022945967e-08,2.573453981724093282e-08,2.695999409425240597e-08,2.818544837126387912e-08,2.941090264827535227e-08,3.063635692528682542e-08,3.186181120229829526e-08,3.308726547930976510e-08,3.431271975632123494e-08,3.553817403333270478e-08,3.676362831034417462e-08,3.798908258735564446e-08,3.921453686436711430e-08,4.043999114137858414e-08,4.166544541839005398e-08,4.289089969540152382e-08,4.411635397241299366e-08,4.534180824942446350e-08,4.656726252643593334e-08,4.779271680344740318e-08,4.901817108045887302e-08,5.024362535747034286e-08,5.146907963448181270e-08,5.269453391149328254e-08,5.391998818850475238e-08,5.514544246551622222e-08,5.637089674252769206e-08,5.759635101953916190e-08,5.882180529655063174e-08,6.004725957356210820e-08,6.127271385057358466e-08,6.249816812758506112e-08,6.372362240459653757e-08,6.494907668160801403e-08,6.617453095861949049e-08,6.739998523563096695e-08,6.862543951264244341e-08,6.985089378965391986e-08,7.107634806666539632e-08,7.230180234367687278e-08,7.352725662068834924e-08,7.475271089769982569e-08,7.597816517471130215e-08,7.720361945172277861e-08 +0.000000000000000000e+00,8.458775127944473592e-10,1.691755025588894718e-09,2.537632538383342284e-09,3.383510051177789851e-09,4.229387563972237417e-09,5.075265076766684569e-09,5.921142589561131721e-09,6.767020102355578874e-09,7.612897615150025199e-09,8.458775127944471524e-09,9.304652640738917850e-09,1.015053015353336417e-08,1.099640766632781050e-08,1.184228517912225683e-08,1.268816269191670315e-08,1.353404020471114948e-08,1.437991771750559580e-08,1.522579523030004378e-08,1.607167274309449176e-08,1.691755025588893974e-08,1.776342776868338772e-08,1.860930528147783570e-08,1.945518279427228368e-08,2.030106030706673166e-08,2.114693781986117964e-08,2.199281533265562762e-08,2.283869284545007560e-08,2.368457035824452358e-08,2.453044787103897156e-08,2.537632538383341954e-08,2.622220289662786752e-08,2.706808040942231550e-08,2.791395792221676347e-08,2.875983543501121145e-08,2.960571294780565943e-08,3.045159046060010741e-08,3.129746797339455870e-08,3.214334548618900999e-08,3.298922299898346128e-08,3.383510051177791257e-08,3.468097802457236386e-08,3.552685553736681514e-08,3.637273305016126643e-08,3.721861056295571772e-08,3.806448807575016901e-08,3.891036558854462030e-08,3.975624310133907159e-08,4.060212061413352287e-08,4.144799812692797416e-08,4.229387563972242545e-08,4.313975315251687674e-08,4.398563066531132803e-08,4.483150817810577932e-08,4.567738569090023060e-08,4.652326320369468189e-08,4.736914071648913318e-08,4.821501822928358447e-08,4.906089574207803576e-08,4.990677325487248705e-08,5.075265076766693833e-08,5.159852828046138962e-08,5.244440579325584091e-08,5.329028330605029220e-08 +0.000000000000000000e+00,-8.758575104778776026e-20,-1.751715020955755205e-19,-2.627572531433632567e-19,-3.503430041911509929e-19,-4.379287552389387291e-19,-5.255145062867265134e-19,-6.131002573345142978e-19,-7.006860083823020821e-19,-7.882717594300898665e-19,-8.758575104778776508e-19,-9.634432615256654351e-19,-1.051029012573453219e-18,-1.138614763621241004e-18,-1.226200514669028788e-18,-1.313786265716816572e-18,-1.401372016764604357e-18,-1.488957767812392141e-18,-1.576543518860179926e-18,-1.664129269907967710e-18,-1.751715020955755687e-18,-1.839300772003543856e-18,-1.926886523051332026e-18,-2.014472274099120195e-18,-2.102058025146908365e-18,-2.189643776194696534e-18,-2.277229527242484704e-18,-2.364815278290272873e-18,-2.452401029338061043e-18,-2.539986780385849213e-18,-2.627572531433637382e-18,-2.715158282481425552e-18,-2.802744033529213721e-18,-2.890329784577001891e-18,-2.977915535624790060e-18,-3.065501286672578230e-18,-3.153087037720366399e-18,-3.240672788768154569e-18,-3.328258539815942738e-18,-3.415844290863730908e-18,-3.503430041911519077e-18,-3.591015792959307247e-18,-3.678601544007095416e-18,-3.766187295054883586e-18,-3.853773046102671755e-18,-3.941358797150459925e-18,-4.028944548198248094e-18,-4.116530299246036264e-18,-4.204116050293824433e-18,-4.291701801341612603e-18,-4.379287552389400773e-18,-4.466873303437188942e-18,-4.554459054484977112e-18,-4.642044805532765281e-18,-4.729630556580553451e-18,-4.817216307628341620e-18,-4.904802058676129790e-18,-4.992387809723917959e-18,-5.079973560771706129e-18,-5.167559311819494298e-18,-5.255145062867282468e-18,-5.342730813915070637e-18,-5.430316564962858807e-18,-5.517902316010646976e-18 +0.000000000000000000e+00,-1.108318175351978370e-09,-2.216636350703956741e-09,-3.324954526055934904e-09,-4.433272701407912654e-09,-5.541590876759890404e-09,-6.649909052111868154e-09,-7.758227227463845904e-09,-8.866545402815823654e-09,-9.974863578167801403e-09,-1.108318175351977915e-08,-1.219149992887175690e-08,-1.329981810422373465e-08,-1.440813627957571240e-08,-1.551645445492768850e-08,-1.662477263027966294e-08,-1.773309080563163738e-08,-1.884140898098361182e-08,-1.994972715633558626e-08,-2.105804533168756070e-08,-2.216636350703953515e-08,-2.327468168239150959e-08,-2.438299985774348403e-08,-2.549131803309545847e-08,-2.659963620844743291e-08,-2.770795438379940735e-08,-2.881627255915138179e-08,-2.992459073450335623e-08,-3.103290890985533068e-08,-3.214122708520730512e-08,-3.324954526055927956e-08,-3.435786343591125400e-08,-3.546618161126322844e-08,-3.657449978661520288e-08,-3.768281796196717732e-08,-3.879113613731915176e-08,-3.989945431267112620e-08,-4.100777248802310065e-08,-4.211609066337507509e-08,-4.322440883872704953e-08,-4.433272701407902397e-08,-4.544104518943099841e-08,-4.654936336478297285e-08,-4.765768154013494729e-08,-4.876599971548692173e-08,-4.987431789083889618e-08,-5.098263606619087062e-08,-5.209095424154284506e-08,-5.319927241689481950e-08,-5.430759059224679394e-08,-5.541590876759876838e-08,-5.652422694295074282e-08,-5.763254511830271726e-08,-5.874086329365469170e-08,-5.984918146900665953e-08,-6.095749964435862735e-08,-6.206581781971059518e-08,-6.317413599506256300e-08,-6.428245417041453082e-08,-6.539077234576649865e-08,-6.649909052111846647e-08,-6.760740869647043429e-08,-6.871572687182240212e-08,-6.982404504717436994e-08 +0.000000000000000000e+00,-1.693894264057149454e-09,-3.387788528114298908e-09,-5.081682792171448775e-09,-6.775577056228598643e-09,-8.469471320285748511e-09,-1.016336558434289755e-08,-1.185725984840004659e-08,-1.355115411245719563e-08,-1.524504837651434467e-08,-1.693894264057149371e-08,-1.863283690462864275e-08,-2.032673116868579179e-08,-2.202062543274294083e-08,-2.371451969680008987e-08,-2.540841396085723891e-08,-2.710230822491438795e-08,-2.879620248897153700e-08,-3.049009675302868273e-08,-3.218399101708583177e-08,-3.387788528114298081e-08,-3.557177954520012985e-08,-3.726567380925727889e-08,-3.895956807331442793e-08,-4.065346233737157697e-08,-4.234735660142872601e-08,-4.404125086548587505e-08,-4.573514512954302409e-08,-4.742903939360017313e-08,-4.912293365765732217e-08,-5.081682792171447121e-08,-5.251072218577162025e-08,-5.420461644982876929e-08,-5.589851071388591833e-08,-5.759240497794306737e-08,-5.928629924200021641e-08,-6.098019350605736545e-08,-6.267408777011451449e-08,-6.436798203417166353e-08,-6.606187629822881257e-08,-6.775577056228596162e-08,-6.944966482634311066e-08,-7.114355909040025970e-08,-7.283745335445740874e-08,-7.453134761851455778e-08,-7.622524188257170682e-08,-7.791913614662885586e-08,-7.961303041068600490e-08,-8.130692467474315394e-08,-8.300081893880030298e-08,-8.469471320285745202e-08,-8.638860746691460106e-08,-8.808250173097175010e-08,-8.977639599502889914e-08,-9.147029025908604818e-08,-9.316418452314319722e-08,-9.485807878720034626e-08,-9.655197305125749530e-08,-9.824586731531464434e-08,-9.993976157937179338e-08,-1.016336558434289424e-07,-1.033275501074860915e-07,-1.050214443715432405e-07,-1.067153386356003895e-07 +0.000000000000000000e+00,-8.458775129716192101e-10,-1.691755025943238420e-09,-2.537632538914857527e-09,-3.383510051886476427e-09,-4.229387564858095740e-09,-5.075265077829715054e-09,-5.921142590801334367e-09,-6.767020103772953681e-09,-7.612897616744572994e-09,-8.458775129716191480e-09,-9.304652642687809967e-09,-1.015053015565942845e-08,-1.099640766863104694e-08,-1.184228518160266543e-08,-1.268816269457428391e-08,-1.353404020754590240e-08,-1.437991772051752088e-08,-1.522579523348913937e-08,-1.607167274646075620e-08,-1.691755025943237303e-08,-1.776342777240398987e-08,-1.860930528537560670e-08,-1.945518279834722353e-08,-2.030106031131884036e-08,-2.114693782429045719e-08,-2.199281533726207403e-08,-2.283869285023369086e-08,-2.368457036320530769e-08,-2.453044787617692452e-08,-2.537632538914854135e-08,-2.622220290212015819e-08,-2.706808041509177502e-08,-2.791395792806339185e-08,-2.875983544103500868e-08,-2.960571295400662551e-08,-3.045159046697824565e-08,-3.129746797994986579e-08,-3.214334549292148594e-08,-3.298922300589310608e-08,-3.383510051886472622e-08,-3.468097803183634636e-08,-3.552685554480796650e-08,-3.637273305777958664e-08,-3.721861057075120678e-08,-3.806448808372282692e-08,-3.891036559669444706e-08,-3.975624310966606720e-08,-4.060212062263768734e-08,-4.144799813560930748e-08,-4.229387564858092762e-08,-4.313975316155254776e-08,-4.398563067452416790e-08,-4.483150818749578805e-08,-4.567738570046740819e-08,-4.652326321343902833e-08,-4.736914072641064847e-08,-4.821501823938226861e-08,-4.906089575235388875e-08,-4.990677326532550889e-08,-5.075265077829712903e-08,-5.159852829126874917e-08,-5.244440580424036931e-08,-5.329028331721198945e-08 +0.000000000000000000e+00,-1.246812703378302600e-09,-2.493625406756605199e-09,-3.740438110134907799e-09,-4.987250813513210399e-09,-6.234063516891512998e-09,-7.480876220269815598e-09,-8.727688923648118198e-09,-9.974501627026420797e-09,-1.122131433040472340e-08,-1.246812703378302600e-08,-1.371493973716132860e-08,-1.496175244053963120e-08,-1.620856514391793214e-08,-1.745537784729623309e-08,-1.870219055067453403e-08,-1.994900325405283498e-08,-2.119581595743113592e-08,-2.244262866080943687e-08,-2.368944136418773781e-08,-2.493625406756603876e-08,-2.618306677094433970e-08,-2.742987947432264065e-08,-2.867669217770094159e-08,-2.992350488107924254e-08,-3.117031758445754348e-08,-3.241713028783584443e-08,-3.366394299121414538e-08,-3.491075569459244632e-08,-3.615756839797074727e-08,-3.740438110134904821e-08,-3.865119380472734916e-08,-3.989800650810565010e-08,-4.114481921148395105e-08,-4.239163191486225199e-08,-4.363844461824055294e-08,-4.488525732161885388e-08,-4.613207002499715483e-08,-4.737888272837545577e-08,-4.862569543175375672e-08,-4.987250813513205766e-08,-5.111932083851035861e-08,-5.236613354188865955e-08,-5.361294624526696050e-08,-5.485975894864526144e-08,-5.610657165202356239e-08,-5.735338435540186334e-08,-5.860019705878016428e-08,-5.984700976215847184e-08,-6.109382246553677941e-08,-6.234063516891508697e-08,-6.358744787229339453e-08,-6.483426057567170209e-08,-6.608107327905000966e-08,-6.732788598242831722e-08,-6.857469868580662478e-08,-6.982151138918493235e-08,-7.106832409256323991e-08,-7.231513679594154747e-08,-7.356194949931985503e-08,-7.480876220269816260e-08,-7.605557490607647016e-08,-7.730238760945477772e-08,-7.854920031283308528e-08 +0.000000000000000000e+00,-1.881490556503018579e-09,-3.762981113006037159e-09,-5.644471669509056152e-09,-7.525962226012075972e-09,-9.407452782515095792e-09,-1.128894333901811561e-08,-1.317043389552113543e-08,-1.505192445202415525e-08,-1.693341500852717342e-08,-1.881490556503019158e-08,-2.069639612153320975e-08,-2.257788667803622792e-08,-2.445937723453924608e-08,-2.634086779104226425e-08,-2.822235834754528241e-08,-3.010384890404830389e-08,-3.198533946055132536e-08,-3.386683001705434684e-08,-3.574832057355736831e-08,-3.762981113006038979e-08,-3.951130168656341126e-08,-4.139279224306643273e-08,-4.327428279956945421e-08,-4.515577335607247568e-08,-4.703726391257549716e-08,-4.891875446907851863e-08,-5.080024502558154011e-08,-5.268173558208456158e-08,-5.456322613858758306e-08,-5.644471669509060453e-08,-5.832620725159362600e-08,-6.020769780809664748e-08,-6.208918836459966895e-08,-6.397067892110269043e-08,-6.585216947760571190e-08,-6.773366003410873338e-08,-6.961515059061175485e-08,-7.149664114711477633e-08,-7.337813170361779780e-08,-7.525962226012081928e-08,-7.714111281662384075e-08,-7.902260337312686222e-08,-8.090409392962988370e-08,-8.278558448613290517e-08,-8.466707504263592665e-08,-8.654856559913894812e-08,-8.843005615564196960e-08,-9.031154671214499107e-08,-9.219303726864801255e-08,-9.407452782515103402e-08,-9.595601838165405550e-08,-9.783750893815707697e-08,-9.971899949466009844e-08,-1.016004900511631199e-07,-1.034819806076661414e-07,-1.053634711641691629e-07,-1.072449617206721843e-07,-1.091264522771752058e-07,-1.110079428336782273e-07,-1.128894333901812488e-07,-1.147709239466842702e-07,-1.166524145031872917e-07,-1.185339050596903132e-07 +0.000000000000000000e+00,-1.225454277194867983e-09,-2.450908554389735966e-09,-3.676362831584603742e-09,-4.901817108779471105e-09,-6.127271385974338468e-09,-7.352725663169205830e-09,-8.578179940364073193e-09,-9.803634217558940555e-09,-1.102908849475380792e-08,-1.225454277194867528e-08,-1.347999704914354264e-08,-1.470545132633841001e-08,-1.593090560353327737e-08,-1.715635988072814639e-08,-1.838181415792301540e-08,-1.960726843511788442e-08,-2.083272271231275344e-08,-2.205817698950762245e-08,-2.328363126670249147e-08,-2.450908554389736049e-08,-2.573453982109222950e-08,-2.695999409828709852e-08,-2.818544837548196754e-08,-2.941090265267683656e-08,-3.063635692987170226e-08,-3.186181120706656797e-08,-3.308726548426143368e-08,-3.431271976145629939e-08,-3.553817403865116510e-08,-3.676362831584603081e-08,-3.798908259304089651e-08,-3.921453687023576222e-08,-4.043999114743062793e-08,-4.166544542462549364e-08,-4.289089970182035935e-08,-4.411635397901522505e-08,-4.534180825621009076e-08,-4.656726253340495647e-08,-4.779271681059982218e-08,-4.901817108779468789e-08,-5.024362536498955360e-08,-5.146907964218441930e-08,-5.269453391937928501e-08,-5.391998819657415072e-08,-5.514544247376901643e-08,-5.637089675096388214e-08,-5.759635102815874785e-08,-5.882180530535361355e-08,-6.004725958254847926e-08,-6.127271385974335159e-08,-6.249816813693822391e-08,-6.372362241413309624e-08,-6.494907669132796857e-08,-6.617453096852284089e-08,-6.739998524571771322e-08,-6.862543952291258554e-08,-6.985089380010745787e-08,-7.107634807730233019e-08,-7.230180235449720252e-08,-7.352725663169207485e-08,-7.475271090888694717e-08,-7.597816518608181950e-08,-7.720361946327669182e-08 +0.000000000000000000e+00,8.837489204093058421e-10,1.767497840818611684e-09,2.651246761227917320e-09,3.534995681637222955e-09,4.418744602046528590e-09,5.302493522455834639e-09,6.186242442865140688e-09,7.069991363274446737e-09,7.953740283683752786e-09,8.837489204093058835e-09,9.721238124502364884e-09,1.060498704491167093e-08,1.148873596532097698e-08,1.237248488573028303e-08,1.325623380613958908e-08,1.413998272654889513e-08,1.502373164695819952e-08,1.590748056736750226e-08,1.679122948777680500e-08,1.767497840818610774e-08,1.855872732859541048e-08,1.944247624900471322e-08,2.032622516941401596e-08,2.120997408982331870e-08,2.209372301023262144e-08,2.297747193064192418e-08,2.386122085105122692e-08,2.474496977146052966e-08,2.562871869186983241e-08,2.651246761227913515e-08,2.739621653268843789e-08,2.827996545309774063e-08,2.916371437350704337e-08,3.004746329391634611e-08,3.093121221432564885e-08,3.181496113473495159e-08,3.269871005514425433e-08,3.358245897555355707e-08,3.446620789596285981e-08,3.534995681637216255e-08,3.623370573678146529e-08,3.711745465719076803e-08,3.800120357760007077e-08,3.888495249800937351e-08,3.976870141841867625e-08,4.065245033882797899e-08,4.153619925923728173e-08,4.241994817964658447e-08,4.330369710005588721e-08,4.418744602046518995e-08,4.507119494087449269e-08,4.595494386128379543e-08,4.683869278169309817e-08,4.772244170210240091e-08,4.860619062251170365e-08,4.948993954292100639e-08,5.037368846333030913e-08,5.125743738373961187e-08,5.214118630414891461e-08,5.302493522455821735e-08,5.390868414496752009e-08,5.479243306537682283e-08,5.567618198578612557e-08 +0.000000000000000000e+00,9.632076700125685832e-10,1.926415340025137166e-09,2.889623010037705543e-09,3.852830680050273506e-09,4.816038350062841468e-09,5.779246020075409431e-09,6.742453690087977394e-09,7.705661360100545357e-09,8.668869030113114147e-09,9.632076700125682937e-09,1.059528437013825173e-08,1.155849204015082052e-08,1.252169971016338931e-08,1.348490738017595810e-08,1.444811505018852689e-08,1.541132272020109402e-08,1.637453039021366116e-08,1.733773806022622829e-08,1.830094573023879543e-08,1.926415340025136256e-08,2.022736107026392970e-08,2.119056874027649684e-08,2.215377641028906397e-08,2.311698408030163111e-08,2.408019175031419824e-08,2.504339942032676538e-08,2.600660709033933251e-08,2.696981476035189965e-08,2.793302243036446679e-08,2.889623010037703392e-08,2.985943777038960106e-08,3.082264544040216819e-08,3.178585311041473533e-08,3.274906078042730246e-08,3.371226845043986960e-08,3.467547612045243673e-08,3.563868379046500387e-08,3.660189146047757101e-08,3.756509913049013814e-08,3.852830680050270528e-08,3.949151447051527241e-08,4.045472214052783955e-08,4.141792981054040668e-08,4.238113748055297382e-08,4.334434515056554095e-08,4.430755282057810809e-08,4.527076049059067523e-08,4.623396816060324236e-08,4.719717583061580950e-08,4.816038350062837663e-08,4.912359117064094377e-08,5.008679884065351090e-08,5.105000651066607804e-08,5.201321418067864518e-08,5.297642185069121231e-08,5.393962952070377945e-08,5.490283719071634658e-08,5.586604486072891372e-08,5.682925253074148085e-08,5.779246020075404799e-08,5.875566787076661512e-08,5.971887554077918888e-08,6.068208321079176925e-08 +0.000000000000000000e+00,9.620068683213349524e-10,1.924013736642669905e-09,2.886020604964004857e-09,3.848027473285339809e-09,4.810034341606674348e-09,5.772041209928008887e-09,6.734048078249343426e-09,7.696054946570677965e-09,8.658061814892012503e-09,9.620068683213347042e-09,1.058207555153468158e-08,1.154408241985601612e-08,1.250608928817735066e-08,1.346809615649868520e-08,1.443010302482001974e-08,1.539210989314135262e-08,1.635411676146268716e-08,1.731612362978402170e-08,1.827813049810535624e-08,1.924013736642669078e-08,2.020214423474802531e-08,2.116415110306935985e-08,2.212615797139069439e-08,2.308816483971202893e-08,2.405017170803336347e-08,2.501217857635469801e-08,2.597418544467603255e-08,2.693619231299736709e-08,2.789819918131870162e-08,2.886020604964003616e-08,2.982221291796137070e-08,3.078421978628270524e-08,3.174622665460403978e-08,3.270823352292537432e-08,3.367024039124670886e-08,3.463224725956804340e-08,3.559425412788937793e-08,3.655626099621071247e-08,3.751826786453204701e-08,3.848027473285338155e-08,3.944228160117471609e-08,4.040428846949605063e-08,4.136629533781738517e-08,4.232830220613871971e-08,4.329030907446005424e-08,4.425231594278138878e-08,4.521432281110272332e-08,4.617632967942405786e-08,4.713833654774539240e-08,4.810034341606672694e-08,4.906235028438806148e-08,5.002435715270939602e-08,5.098636402103073056e-08,5.194837088935206509e-08,5.291037775767339963e-08,5.387238462599473417e-08,5.483439149431606871e-08,5.579639836263740325e-08,5.675840523095873779e-08,5.772041209928007233e-08,5.868241896760140687e-08,5.964442583592274140e-08,6.060643270424407594e-08 +0.000000000000000000e+00,-8.837489206031838462e-10,-1.767497841206367692e-09,-2.651246761809551435e-09,-3.534995682412734971e-09,-4.418744603015918094e-09,-5.302493523619101216e-09,-6.186242444222284339e-09,-7.069991364825467461e-09,-7.953740285428650583e-09,-8.837489206031832879e-09,-9.721238126635015174e-09,-1.060498704723819747e-08,-1.148873596784137976e-08,-1.237248488844456206e-08,-1.325623380904774435e-08,-1.413998272965092665e-08,-1.502373165025411060e-08,-1.590748057085729455e-08,-1.679122949146047850e-08,-1.767497841206366245e-08,-1.855872733266684640e-08,-1.944247625327003035e-08,-2.032622517387321430e-08,-2.120997409447639825e-08,-2.209372301507958220e-08,-2.297747193568276615e-08,-2.386122085628595010e-08,-2.474496977688913405e-08,-2.562871869749231799e-08,-2.651246761809550194e-08,-2.739621653869868589e-08,-2.827996545930186984e-08,-2.916371437990505379e-08,-3.004746330050823443e-08,-3.093121222111141508e-08,-3.181496114171459572e-08,-3.269871006231777636e-08,-3.358245898292095700e-08,-3.446620790352413764e-08,-3.534995682412731828e-08,-3.623370574473049892e-08,-3.711745466533367956e-08,-3.800120358593686020e-08,-3.888495250654004084e-08,-3.976870142714322148e-08,-4.065245034774640212e-08,-4.153619926834958277e-08,-4.241994818895276341e-08,-4.330369710955594405e-08,-4.418744603015912469e-08,-4.507119495076230533e-08,-4.595494387136548597e-08,-4.683869279196866661e-08,-4.772244171257184725e-08,-4.860619063317502789e-08,-4.948993955377820853e-08,-5.037368847438138917e-08,-5.125743739498456982e-08,-5.214118631558775046e-08,-5.302493523619093110e-08,-5.390868415679411174e-08,-5.479243307739729238e-08,-5.567618199800047302e-08 +0.000000000000000000e+00,-9.632076702021970503e-10,-1.926415340404394101e-09,-2.889623010606591151e-09,-3.852830680808788201e-09,-4.816038351010984838e-09,-5.779246021213181474e-09,-6.742453691415378111e-09,-7.705661361617574748e-09,-8.668869031819771384e-09,-9.632076702021968021e-09,-1.059528437222416466e-08,-1.155849204242636129e-08,-1.252169971262855793e-08,-1.348490738283075457e-08,-1.444811505303295120e-08,-1.541132272323514619e-08,-1.637453039343734282e-08,-1.733773806363953946e-08,-1.830094573384173610e-08,-1.926415340404393273e-08,-2.022736107424612937e-08,-2.119056874444832601e-08,-2.215377641465052264e-08,-2.311698408485271928e-08,-2.408019175505491592e-08,-2.504339942525711255e-08,-2.600660709545930919e-08,-2.696981476566150583e-08,-2.793302243586370246e-08,-2.889623010606589910e-08,-2.985943777626809574e-08,-3.082264544647029237e-08,-3.178585311667248901e-08,-3.274906078687468565e-08,-3.371226845707688228e-08,-3.467547612727907892e-08,-3.563868379748127556e-08,-3.660189146768347219e-08,-3.756509913788566883e-08,-3.852830680808786547e-08,-3.949151447829006210e-08,-4.045472214849225874e-08,-4.141792981869445538e-08,-4.238113748889665201e-08,-4.334434515909884865e-08,-4.430755282930104529e-08,-4.527076049950324192e-08,-4.623396816970543856e-08,-4.719717583990763520e-08,-4.816038351010983183e-08,-4.912359118031202847e-08,-5.008679885051422511e-08,-5.105000652071642174e-08,-5.201321419091861838e-08,-5.297642186112081502e-08,-5.393962953132301165e-08,-5.490283720152520829e-08,-5.586604487172740493e-08,-5.682925254192960156e-08,-5.779246021213179820e-08,-5.875566788233399484e-08,-5.971887555253619147e-08,-6.068208322273838811e-08 +0.000000000000000000e+00,-9.620068685142824817e-10,-1.924013737028564963e-09,-2.886020605542847238e-09,-3.848027474057129099e-09,-4.810034342571410961e-09,-5.772041211085692822e-09,-6.734048079599974683e-09,-7.696054948114256545e-09,-8.658061816628537579e-09,-9.620068685142818613e-09,-1.058207555365709965e-08,-1.154408242217138068e-08,-1.250608929068566172e-08,-1.346809615919994275e-08,-1.443010302771422378e-08,-1.539210989622850316e-08,-1.635411676474278254e-08,-1.731612363325706192e-08,-1.827813050177134130e-08,-1.924013737028562068e-08,-2.020214423879990006e-08,-2.116415110731417944e-08,-2.212615797582845882e-08,-2.308816484434273820e-08,-2.405017171285701758e-08,-2.501217858137129696e-08,-2.597418544988557634e-08,-2.693619231839985572e-08,-2.789819918691413510e-08,-2.886020605542841448e-08,-2.982221292394269386e-08,-3.078421979245697324e-08,-3.174622666097125262e-08,-3.270823352948553200e-08,-3.367024039799981138e-08,-3.463224726651409076e-08,-3.559425413502837014e-08,-3.655626100354264952e-08,-3.751826787205692890e-08,-3.848027474057120828e-08,-3.944228160908548766e-08,-4.040428847759976704e-08,-4.136629534611404642e-08,-4.232830221462832580e-08,-4.329030908314260518e-08,-4.425231595165688456e-08,-4.521432282017116393e-08,-4.617632968868544331e-08,-4.713833655719972269e-08,-4.810034342571400207e-08,-4.906235029422828145e-08,-5.002435716274256083e-08,-5.098636403125684021e-08,-5.194837089977111959e-08,-5.291037776828539897e-08,-5.387238463679967835e-08,-5.483439150531395773e-08,-5.579639837382823711e-08,-5.675840524234251649e-08,-5.772041211085679587e-08,-5.868241897937107525e-08,-5.964442584788536125e-08,-6.060643271639964725e-08 +0.000000000000000000e+00,7.853171443387986916e-10,1.570634288677597383e-09,2.355951433016396282e-09,3.141268577355195180e-09,3.926585721693994078e-09,4.711902866032792563e-09,5.497220010371591048e-09,6.282537154710389533e-09,7.067854299049188017e-09,7.853171443387986502e-09,8.638488587726784987e-09,9.423805732065583472e-09,1.020912287640438196e-08,1.099444002074318044e-08,1.177975716508197893e-08,1.256507430942077741e-08,1.335039145375957590e-08,1.413570859809837438e-08,1.492102574243717287e-08,1.570634288677596970e-08,1.649166003111476653e-08,1.727697717545356336e-08,1.806229431979236019e-08,1.884761146413115702e-08,1.963292860846995385e-08,2.041824575280875068e-08,2.120356289714754751e-08,2.198888004148634434e-08,2.277419718582514117e-08,2.355951433016393800e-08,2.434483147450273483e-08,2.513014861884153166e-08,2.591546576318032849e-08,2.670078290751912532e-08,2.748610005185792215e-08,2.827141719619671898e-08,2.905673434053551581e-08,2.984205148487431264e-08,3.062736862921310947e-08,3.141268577355190630e-08,3.219800291789070313e-08,3.298332006222949996e-08,3.376863720656829680e-08,3.455395435090709363e-08,3.533927149524589046e-08,3.612458863958468729e-08,3.690990578392348412e-08,3.769522292826228095e-08,3.848054007260107778e-08,3.926585721693987461e-08,4.005117436127867144e-08,4.083649150561746827e-08,4.162180864995626510e-08,4.240712579429506193e-08,4.319244293863385876e-08,4.397776008297265559e-08,4.476307722731145242e-08,4.554839437165024925e-08,4.633371151598904608e-08,4.711902866032784291e-08,4.790434580466663974e-08,4.868966294900543657e-08,4.947498009334423340e-08 +0.000000000000000000e+00,8.276441370309285429e-10,1.655288274061857086e-09,2.482932411092785422e-09,3.310576548123713758e-09,4.138220685154642094e-09,4.965864822185570844e-09,5.793508959216499594e-09,6.621153096247428344e-09,7.448797233278357093e-09,8.276441370309285843e-09,9.104085507340214593e-09,9.931729644371143342e-09,1.075937378140207209e-08,1.158701791843300084e-08,1.241466205546392959e-08,1.324230619249485834e-08,1.406995032952578709e-08,1.489759446655671584e-08,1.572523860358764459e-08,1.655288274061857499e-08,1.738052687764950540e-08,1.820817101468043580e-08,1.903581515171136621e-08,1.986345928874229661e-08,2.069110342577322702e-08,2.151874756280415742e-08,2.234639169983508782e-08,2.317403583686601823e-08,2.400167997389694863e-08,2.482932411092787904e-08,2.565696824795880944e-08,2.648461238498973984e-08,2.731225652202067025e-08,2.813990065905160065e-08,2.896754479608253106e-08,2.979518893311346146e-08,3.062283307014439186e-08,3.145047720717532227e-08,3.227812134420625267e-08,3.310576548123718308e-08,3.393340961826811348e-08,3.476105375529904388e-08,3.558869789232997429e-08,3.641634202936090469e-08,3.724398616639183510e-08,3.807163030342276550e-08,3.889927444045369591e-08,3.972691857748462631e-08,4.055456271451555671e-08,4.138220685154648712e-08,4.220985098857741752e-08,4.303749512560834793e-08,4.386513926263927833e-08,4.469278339967020873e-08,4.552042753670113914e-08,4.634807167373206954e-08,4.717571581076299995e-08,4.800335994779393035e-08,4.883100408482486075e-08,4.965864822185579116e-08,5.048629235888672156e-08,5.131393649591765197e-08,5.214158063294858237e-08 +0.000000000000000000e+00,8.358169140086686245e-10,1.671633828017337249e-09,2.507450742026005667e-09,3.343267656034674084e-09,4.179084570043342502e-09,5.014901484052011333e-09,5.850718398060680164e-09,6.686535312069348996e-09,7.522352226078017827e-09,8.358169140086686658e-09,9.193986054095355490e-09,1.002980296810402432e-08,1.086561988211269315e-08,1.170143679612136198e-08,1.253725371013003081e-08,1.337307062413869965e-08,1.420888753814736848e-08,1.504470445215603896e-08,1.588052136616471110e-08,1.671633828017338324e-08,1.755215519418205538e-08,1.838797210819072752e-08,1.922378902219939966e-08,2.005960593620807180e-08,2.089542285021674394e-08,2.173123976422541608e-08,2.256705667823408822e-08,2.340287359224276036e-08,2.423869050625143250e-08,2.507450742026010464e-08,2.591032433426877678e-08,2.674614124827744892e-08,2.758195816228612106e-08,2.841777507629479320e-08,2.925359199030346534e-08,3.008940890431213748e-08,3.092522581832080962e-08,3.176104273232948176e-08,3.259685964633815390e-08,3.343267656034682604e-08,3.426849347435549818e-08,3.510431038836417032e-08,3.594012730237284246e-08,3.677594421638151460e-08,3.761176113039018674e-08,3.844757804439885888e-08,3.928339495840753102e-08,4.011921187241620316e-08,4.095502878642487530e-08,4.179084570043354744e-08,4.262666261444221958e-08,4.346247952845089172e-08,4.429829644245956386e-08,4.513411335646823600e-08,4.596993027047690814e-08,4.680574718448558028e-08,4.764156409849425242e-08,4.847738101250292456e-08,4.931319792651159670e-08,5.014901484052026884e-08,5.098483175452894098e-08,5.182064866853761312e-08,5.265646558254628526e-08 +0.000000000000000000e+00,-7.853171445400340536e-10,-1.570634289080068107e-09,-2.355951433620102057e-09,-3.141268578160135801e-09,-3.926585722700169958e-09,-4.711902867240204115e-09,-5.497220011780238272e-09,-6.282537156320272429e-09,-7.067854300860306586e-09,-7.853171445400339916e-09,-8.638488589940373246e-09,-9.423805734480406576e-09,-1.020912287902043991e-08,-1.099444002356047324e-08,-1.177975716810050657e-08,-1.256507431264053989e-08,-1.335039145718057322e-08,-1.413570860172060655e-08,-1.492102574626063988e-08,-1.570634289080067321e-08,-1.649166003534070654e-08,-1.727697717988073987e-08,-1.806229432442077320e-08,-1.884761146896080653e-08,-1.963292861350083986e-08,-2.041824575804087319e-08,-2.120356290258090652e-08,-2.198888004712093985e-08,-2.277419719166097318e-08,-2.355951433620100651e-08,-2.434483148074103984e-08,-2.513014862528107317e-08,-2.591546576982110650e-08,-2.670078291436113983e-08,-2.748610005890117316e-08,-2.827141720344120649e-08,-2.905673434798123982e-08,-2.984205149252127315e-08,-3.062736863706130648e-08,-3.141268578160133981e-08,-3.219800292614137314e-08,-3.298332007068140647e-08,-3.376863721522143980e-08,-3.455395435976147313e-08,-3.533927150430150646e-08,-3.612458864884153979e-08,-3.690990579338157312e-08,-3.769522293792160645e-08,-3.848054008246163978e-08,-3.926585722700167311e-08,-4.005117437154170644e-08,-4.083649151608173977e-08,-4.162180866062177310e-08,-4.240712580516180643e-08,-4.319244294970183976e-08,-4.397776009424187309e-08,-4.476307723878190642e-08,-4.554839438332193975e-08,-4.633371152786197308e-08,-4.711902867240200641e-08,-4.790434581694203974e-08,-4.868966296148207307e-08,-4.947498010602210640e-08 +0.000000000000000000e+00,-8.276441372287805295e-10,-1.655288274457561059e-09,-2.482932411686341692e-09,-3.310576548915122532e-09,-4.138220686143903785e-09,-4.965864823372685038e-09,-5.793508960601466291e-09,-6.621153097830247545e-09,-7.448797235059028798e-09,-8.276441372287810878e-09,-9.104085509516592959e-09,-9.931729646745375039e-09,-1.075937378397415712e-08,-1.158701792120293920e-08,-1.241466205843172128e-08,-1.324230619566050336e-08,-1.406995033288928544e-08,-1.489759447011806752e-08,-1.572523860734684960e-08,-1.655288274457563168e-08,-1.738052688180441376e-08,-1.820817101903319584e-08,-1.903581515626197792e-08,-1.986345929349076000e-08,-2.069110343071954209e-08,-2.151874756794832417e-08,-2.234639170517710625e-08,-2.317403584240588833e-08,-2.400167997963467041e-08,-2.482932411686345249e-08,-2.565696825409223457e-08,-2.648461239132101665e-08,-2.731225652854979873e-08,-2.813990066577858081e-08,-2.896754480300736289e-08,-2.979518894023614497e-08,-3.062283307746492705e-08,-3.145047721469371244e-08,-3.227812135192249783e-08,-3.310576548915128322e-08,-3.393340962638006861e-08,-3.476105376360885400e-08,-3.558869790083763939e-08,-3.641634203806642477e-08,-3.724398617529521016e-08,-3.807163031252399555e-08,-3.889927444975278094e-08,-3.972691858698156633e-08,-4.055456272421035172e-08,-4.138220686143913711e-08,-4.220985099866792250e-08,-4.303749513589670789e-08,-4.386513927312549328e-08,-4.469278341035427867e-08,-4.552042754758306406e-08,-4.634807168481184944e-08,-4.717571582204063483e-08,-4.800335995926942022e-08,-4.883100409649820561e-08,-4.965864823372699100e-08,-5.048629237095577639e-08,-5.131393650818456178e-08,-5.214158064541334717e-08 +0.000000000000000000e+00,-8.358169142105683159e-10,-1.671633828421136632e-09,-2.507450742631704948e-09,-3.343267656842273264e-09,-4.179084571052841993e-09,-5.014901485263410723e-09,-5.850718399473979452e-09,-6.686535313684548182e-09,-7.522352227895116911e-09,-8.358169142105685641e-09,-9.193986056316254371e-09,-1.002980297052682310e-08,-1.086561988473739183e-08,-1.170143679894796056e-08,-1.253725371315852929e-08,-1.337307062736909802e-08,-1.420888754157966675e-08,-1.504470445579023382e-08,-1.588052137000080090e-08,-1.671633828421136797e-08,-1.755215519842193505e-08,-1.838797211263250212e-08,-1.922378902684306920e-08,-2.005960594105363627e-08,-2.089542285526420335e-08,-2.173123976947477042e-08,-2.256705668368533750e-08,-2.340287359789590457e-08,-2.423869051210647165e-08,-2.507450742631703873e-08,-2.591032434052760580e-08,-2.674614125473817288e-08,-2.758195816894873995e-08,-2.841777508315930703e-08,-2.925359199736987410e-08,-3.008940891158044118e-08,-3.092522582579100494e-08,-3.176104274000156871e-08,-3.259685965421213248e-08,-3.343267656842269624e-08,-3.426849348263326001e-08,-3.510431039684382377e-08,-3.594012731105438754e-08,-3.677594422526495131e-08,-3.761176113947551507e-08,-3.844757805368607884e-08,-3.928339496789664261e-08,-4.011921188210720637e-08,-4.095502879631777014e-08,-4.179084571052833391e-08,-4.262666262473889767e-08,-4.346247953894946144e-08,-4.429829645316002521e-08,-4.513411336737058897e-08,-4.596993028158115274e-08,-4.680574719579171651e-08,-4.764156411000228027e-08,-4.847738102421284404e-08,-4.931319793842340780e-08,-5.014901485263397157e-08,-5.098483176684453534e-08,-5.182064868105509910e-08,-5.265646559526566287e-08 +0.000000000000000000e+00,7.296791496232278595e-10,1.459358299246455719e-09,2.189037448869683475e-09,2.918716598492911024e-09,3.648395748116138574e-09,4.378074897739366123e-09,5.107754047362593672e-09,5.837433196985821222e-09,6.567112346609048771e-09,7.296791496232276320e-09,8.026470645855504697e-09,8.756149795478733900e-09,9.485828945101963104e-09,1.021550809472519231e-08,1.094518724434842151e-08,1.167486639397165072e-08,1.240454554359487992e-08,1.313422469321810912e-08,1.386390384284133833e-08,1.459358299246456753e-08,1.532326214208779673e-08,1.605294129171102594e-08,1.678262044133425514e-08,1.751229959095748434e-08,1.824197874058071355e-08,1.897165789020394275e-08,1.970133703982717196e-08,2.043101618945040116e-08,2.116069533907363036e-08,2.189037448869685957e-08,2.262005363832008877e-08,2.334973278794331797e-08,2.407941193756654718e-08,2.480909108718977638e-08,2.553877023681300558e-08,2.626844938643623479e-08,2.699812853605946399e-08,2.772780768568269320e-08,2.845748683530592240e-08,2.918716598492915160e-08,2.991684513455238412e-08,3.064652428417561332e-08,3.137620343379884252e-08,3.210588258342207173e-08,3.283556173304530093e-08,3.356524088266853013e-08,3.429492003229175934e-08,3.502459918191498854e-08,3.575427833153821774e-08,3.648395748116144695e-08,3.721363663078467615e-08,3.794331578040790536e-08,3.867299493003113456e-08,3.940267407965436376e-08,4.013235322927759297e-08,4.086203237890082217e-08,4.159171152852405137e-08,4.232139067814728058e-08,4.305106982777050978e-08,4.378074897739373899e-08,4.451042812701696819e-08,4.524010727664019739e-08,4.596978642626342660e-08 +0.000000000000000000e+00,7.554445693535760508e-10,1.510889138707152102e-09,2.266333708060728152e-09,3.021778277414304203e-09,3.777222846767879840e-09,4.532667416121455478e-09,5.288111985475031115e-09,6.043556554828606752e-09,6.799001124182182389e-09,7.554445693535758027e-09,8.309890262889333664e-09,9.065334832242909301e-09,9.820779401596484938e-09,1.057622397095006058e-08,1.133166854030363621e-08,1.208711310965721185e-08,1.284255767901078749e-08,1.359800224836436312e-08,1.435344681771793876e-08,1.510889138707151274e-08,1.586433595642508838e-08,1.661978052577866402e-08,1.737522509513223966e-08,1.813066966448581529e-08,1.888611423383939093e-08,1.964155880319296657e-08,2.039700337254654220e-08,2.115244794190011784e-08,2.190789251125369348e-08,2.266333708060726912e-08,2.341878164996084475e-08,2.417422621931442039e-08,2.492967078866799603e-08,2.568511535802157167e-08,2.644055992737514730e-08,2.719600449672872294e-08,2.795144906608229858e-08,2.870689363543587421e-08,2.946233820478944985e-08,3.021778277414302549e-08,3.097322734349660113e-08,3.172867191285017676e-08,3.248411648220375240e-08,3.323956105155732804e-08,3.399500562091090367e-08,3.475045019026447931e-08,3.550589475961805495e-08,3.626133932897163059e-08,3.701678389832520622e-08,3.777222846767878186e-08,3.852767303703235750e-08,3.928311760638593314e-08,4.003856217573950877e-08,4.079400674509308441e-08,4.154945131444666005e-08,4.230489588380023568e-08,4.306034045315381132e-08,4.381578502250738696e-08,4.457122959186096260e-08,4.532667416121453823e-08,4.608211873056811387e-08,4.683756329992168951e-08,4.759300786927526514e-08 +0.000000000000000000e+00,7.619214481203808868e-10,1.523842896240761774e-09,2.285764344361142764e-09,3.047685792481523961e-09,3.809607240601905158e-09,4.571528688722286355e-09,5.333450136842667552e-09,6.095371584963048749e-09,6.857293033083429946e-09,7.619214481203810315e-09,8.381135929324190685e-09,9.143057377444571055e-09,9.904978825564951425e-09,1.066690027368533179e-08,1.142882172180571216e-08,1.219074316992609253e-08,1.295266461804647290e-08,1.371458606616685327e-08,1.447650751428723364e-08,1.523842896240761401e-08,1.600035041052799438e-08,1.676227185864837475e-08,1.752419330676875512e-08,1.828611475488913549e-08,1.904803620300951586e-08,1.980995765112989623e-08,2.057187909925027660e-08,2.133380054737065697e-08,2.209572199549103734e-08,2.285764344361141771e-08,2.361956489173179808e-08,2.438148633985217845e-08,2.514340778797255882e-08,2.590532923609293919e-08,2.666725068421331956e-08,2.742917213233369993e-08,2.819109358045408030e-08,2.895301502857446067e-08,2.971493647669484104e-08,3.047685792481522141e-08,3.123877937293560178e-08,3.200070082105598215e-08,3.276262226917636252e-08,3.352454371729674289e-08,3.428646516541712326e-08,3.504838661353750363e-08,3.581030806165788400e-08,3.657222950977826437e-08,3.733415095789864474e-08,3.809607240601902511e-08,3.885799385413940548e-08,3.961991530225978585e-08,4.038183675038016622e-08,4.114375819850054659e-08,4.190567964662092696e-08,4.266760109474130733e-08,4.342952254286168770e-08,4.419144399098206807e-08,4.495336543910244844e-08,4.571528688722282881e-08,4.647720833534320918e-08,4.723912978346358954e-08,4.800105123158396991e-08 +0.000000000000000000e+00,-7.296791498292337789e-10,-1.459358299658467558e-09,-2.189037449487701544e-09,-2.918716599316935529e-09,-3.648395749146169515e-09,-4.378074898975403087e-09,-5.107754048804636659e-09,-5.837433198633870231e-09,-6.567112348463103804e-09,-7.296791498292337376e-09,-8.026470648121570948e-09,-8.756149797950804520e-09,-9.485828947780038092e-09,-1.021550809760927166e-08,-1.094518724743850524e-08,-1.167486639726773881e-08,-1.240454554709697238e-08,-1.313422469692620595e-08,-1.386390384675543952e-08,-1.459358299658467310e-08,-1.532326214641390832e-08,-1.605294129624314520e-08,-1.678262044607238209e-08,-1.751229959590161897e-08,-1.824197874573085585e-08,-1.897165789556009273e-08,-1.970133704538932961e-08,-2.043101619521856649e-08,-2.116069534504780337e-08,-2.189037449487704025e-08,-2.262005364470627713e-08,-2.334973279453551401e-08,-2.407941194436475089e-08,-2.480909109419398777e-08,-2.553877024402322466e-08,-2.626844939385246154e-08,-2.699812854368169842e-08,-2.772780769351093530e-08,-2.845748684334017218e-08,-2.918716599316940906e-08,-2.991684514299864594e-08,-3.064652429282788282e-08,-3.137620344265711970e-08,-3.210588259248635658e-08,-3.283556174231559346e-08,-3.356524089214483035e-08,-3.429492004197406723e-08,-3.502459919180330411e-08,-3.575427834163254099e-08,-3.648395749146177787e-08,-3.721363664129101475e-08,-3.794331579112025163e-08,-3.867299494094948851e-08,-3.940267409077872539e-08,-4.013235324060796227e-08,-4.086203239043719915e-08,-4.159171154026643603e-08,-4.232139069009567292e-08,-4.305106983992490980e-08,-4.378074898975414668e-08,-4.451042813958338356e-08,-4.524010728941262044e-08,-4.596978643924185732e-08 +0.000000000000000000e+00,-7.554445695574697646e-10,-1.510889139114939529e-09,-2.266333708672409190e-09,-3.021778278229878645e-09,-3.777222847787348513e-09,-4.532667417344818381e-09,-5.288111986902288248e-09,-6.043556556459758116e-09,-6.799001126017227984e-09,-7.554445695574697025e-09,-8.309890265132166066e-09,-9.065334834689635107e-09,-9.820779404247104147e-09,-1.057622397380457319e-08,-1.133166854336204223e-08,-1.208711311291951127e-08,-1.284255768247698031e-08,-1.359800225203444935e-08,-1.435344682159191839e-08,-1.510889139114938743e-08,-1.586433596070685647e-08,-1.661978053026432551e-08,-1.737522509982179456e-08,-1.813066966937926360e-08,-1.888611423893673264e-08,-1.964155880849420168e-08,-2.039700337805167072e-08,-2.115244794760913976e-08,-2.190789251716660880e-08,-2.266333708672407784e-08,-2.341878165628154688e-08,-2.417422622583901592e-08,-2.492967079539648496e-08,-2.568511536495395400e-08,-2.644055993451142304e-08,-2.719600450406889209e-08,-2.795144907362636113e-08,-2.870689364318383017e-08,-2.946233821274129921e-08,-3.021778278229876825e-08,-3.097322735185624060e-08,-3.172867192141371295e-08,-3.248411649097118530e-08,-3.323956106052865765e-08,-3.399500563008613000e-08,-3.475045019964360235e-08,-3.550589476920107469e-08,-3.626133933875854704e-08,-3.701678390831601939e-08,-3.777222847787349174e-08,-3.852767304743096409e-08,-3.928311761698843644e-08,-4.003856218654590879e-08,-4.079400675610338114e-08,-4.154945132566085349e-08,-4.230489589521832584e-08,-4.306034046477579819e-08,-4.381578503433327054e-08,-4.457122960389074289e-08,-4.532667417344821524e-08,-4.608211874300568759e-08,-4.683756331256315994e-08,-4.759300788212063229e-08 +0.000000000000000000e+00,-7.619214483298020282e-10,-1.523842896659604056e-09,-2.285764344989406291e-09,-3.047685793319208526e-09,-3.809607241649010761e-09,-4.571528689978812583e-09,-5.333450138308614404e-09,-6.095371586638416225e-09,-6.857293034968218047e-09,-7.619214483298019868e-09,-8.381135931627822517e-09,-9.143057379957625165e-09,-9.904978828287427814e-09,-1.066690027661723046e-08,-1.142882172494703311e-08,-1.219074317327683576e-08,-1.295266462160663841e-08,-1.371458606993644106e-08,-1.447650751826624371e-08,-1.523842896659604635e-08,-1.600035041492584900e-08,-1.676227186325565165e-08,-1.752419331158545430e-08,-1.828611475991525695e-08,-1.904803620824505960e-08,-1.980995765657486225e-08,-2.057187910490466489e-08,-2.133380055323446754e-08,-2.209572200156427019e-08,-2.285764344989407284e-08,-2.361956489822387549e-08,-2.438148634655367814e-08,-2.514340779488348079e-08,-2.590532924321328343e-08,-2.666725069154308608e-08,-2.742917213987288873e-08,-2.819109358820269138e-08,-2.895301503653249403e-08,-2.971493648486229668e-08,-3.047685793319209933e-08,-3.123877938152190197e-08,-3.200070082985170462e-08,-3.276262227818150727e-08,-3.352454372651130992e-08,-3.428646517484111257e-08,-3.504838662317091522e-08,-3.581030807150071787e-08,-3.657222951983052051e-08,-3.733415096816032316e-08,-3.809607241649012581e-08,-3.885799386481992846e-08,-3.961991531314973111e-08,-4.038183676147953376e-08,-4.114375820980933640e-08,-4.190567965813913905e-08,-4.266760110646894170e-08,-4.342952255479874435e-08,-4.419144400312854700e-08,-4.495336545145834965e-08,-4.571528689978815230e-08,-4.647720834811795494e-08,-4.723912979644775759e-08,-4.800105124477756024e-08 +0.000000000000000000e+00,6.955612183644355042e-10,1.391122436728871008e-09,2.086683655093306719e-09,2.782244873457742430e-09,3.477806091822178141e-09,4.173367310186613439e-09,4.868928528551048736e-09,5.564489746915484034e-09,6.260050965279919331e-09,6.955612183644354629e-09,7.651173402008790753e-09,8.346734620373226878e-09,9.042295838737663002e-09,9.737857057102099127e-09,1.043341827546653525e-08,1.112897949383097138e-08,1.182454071219540750e-08,1.252010193055984363e-08,1.321566314892427975e-08,1.391122436728871587e-08,1.460678558565315200e-08,1.530234680401758812e-08,1.599790802238202425e-08,1.669346924074646037e-08,1.738903045911089650e-08,1.808459167747533262e-08,1.878015289583976875e-08,1.947571411420420487e-08,2.017127533256864100e-08,2.086683655093307712e-08,2.156239776929751324e-08,2.225795898766194937e-08,2.295352020602638549e-08,2.364908142439082162e-08,2.434464264275525774e-08,2.504020386111969387e-08,2.573576507948412999e-08,2.643132629784856612e-08,2.712688751621300224e-08,2.782244873457743837e-08,2.851800995294187449e-08,2.921357117130631062e-08,2.990913238967074674e-08,3.060469360803518286e-08,3.130025482639961899e-08,3.199581604476405511e-08,3.269137726312849124e-08,3.338693848149292736e-08,3.408249969985736349e-08,3.477806091822179961e-08,3.547362213658623574e-08,3.616918335495067186e-08,3.686474457331510799e-08,3.756030579167954411e-08,3.825586701004398024e-08,3.895142822840841636e-08,3.964698944677285248e-08,4.034255066513728861e-08,4.103811188350172473e-08,4.173367310186616086e-08,4.242923432023059698e-08,4.312479553859503311e-08,4.382035675695946923e-08 +0.000000000000000000e+00,7.114566684497450336e-10,1.422913336899490067e-09,2.134370005349235101e-09,2.845826673798980134e-09,3.557283342248725168e-09,4.268740010698470201e-09,4.980196679148214821e-09,5.691653347597959441e-09,6.403110016047704061e-09,7.114566684497448681e-09,7.826023352947193301e-09,8.537480021396938748e-09,9.248936689846684195e-09,9.960393358296429643e-09,1.067185002674617509e-08,1.138330669519592054e-08,1.209476336364566598e-08,1.280622003209541143e-08,1.351767670054515688e-08,1.422913336899490233e-08,1.494059003744464943e-08,1.565204670589439653e-08,1.636350337434414363e-08,1.707496004279389073e-08,1.778641671124363783e-08,1.849787337969338493e-08,1.920933004814313204e-08,1.992078671659287914e-08,2.063224338504262624e-08,2.134370005349237334e-08,2.205515672194212044e-08,2.276661339039186754e-08,2.347807005884161465e-08,2.418952672729136175e-08,2.490098339574110885e-08,2.561244006419085595e-08,2.632389673264060305e-08,2.703535340109035015e-08,2.774681006954009725e-08,2.845826673798984436e-08,2.916972340643959146e-08,2.988118007488933856e-08,3.059263674333908566e-08,3.130409341178883276e-08,3.201555008023857986e-08,3.272700674868832696e-08,3.343846341713807407e-08,3.414992008558782117e-08,3.486137675403756827e-08,3.557283342248731537e-08,3.628429009093706247e-08,3.699574675938680957e-08,3.770720342783655668e-08,3.841866009628630378e-08,3.913011676473605088e-08,3.984157343318579798e-08,4.055303010163554508e-08,4.126448677008529218e-08,4.197594343853503928e-08,4.268740010698478639e-08,4.339885677543453349e-08,4.411031344388428059e-08,4.482177011233402769e-08 +0.000000000000000000e+00,7.124009240000011184e-10,1.424801848000002237e-09,2.137202772000003355e-09,2.849603696000004473e-09,3.562004620000005592e-09,4.274405544000006710e-09,4.986806468000008242e-09,5.699207392000009774e-09,6.411608316000011306e-09,7.124009240000012838e-09,7.836410164000014370e-09,8.548811088000015075e-09,9.261212012000015780e-09,9.973612936000016484e-09,1.068601386000001719e-08,1.139841478400001789e-08,1.211081570800001860e-08,1.282321663200001930e-08,1.353561755600002001e-08,1.424801848000002071e-08,1.496041940400002142e-08,1.567282032800002212e-08,1.638522125200002283e-08,1.709762217600002353e-08,1.781002310000002424e-08,1.852242402400002494e-08,1.923482494800002565e-08,1.994722587200002635e-08,2.065962679600002706e-08,2.137202772000002776e-08,2.208442864400002847e-08,2.279682956800002917e-08,2.350923049200002988e-08,2.422163141600003058e-08,2.493403234000003128e-08,2.564643326400003199e-08,2.635883418800003269e-08,2.707123511200003340e-08,2.778363603600003410e-08,2.849603696000003481e-08,2.920843788400003551e-08,2.992083880800003622e-08,3.063323973200003692e-08,3.134564065600003763e-08,3.205804158000003833e-08,3.277044250400003904e-08,3.348284342800003974e-08,3.419524435200004045e-08,3.490764527600004115e-08,3.562004620000004186e-08,3.633244712400004256e-08,3.704484804800004327e-08,3.775724897200004397e-08,3.846964989600004468e-08,3.918205082000004538e-08,3.989445174400004608e-08,4.060685266800004679e-08,4.131925359200004749e-08,4.203165451600004820e-08,4.274405544000004890e-08,4.345645636400004961e-08,4.416885728800005031e-08,4.488125821200005102e-08 +0.000000000000000000e+00,-6.955612185726692278e-10,-1.391122437145338456e-09,-2.086683655718007580e-09,-2.782244874290676498e-09,-3.477806092863345415e-09,-4.173367311436014333e-09,-4.868928530008683251e-09,-5.564489748581352168e-09,-6.260050967154021086e-09,-6.955612185726690004e-09,-7.651173404299359748e-09,-8.346734622872030320e-09,-9.042295841444700892e-09,-9.737857060017371464e-09,-1.043341827859004204e-08,-1.112897949716271261e-08,-1.182454071573538318e-08,-1.252010193430805375e-08,-1.321566315288072432e-08,-1.391122437145339490e-08,-1.460678559002606547e-08,-1.530234680859873604e-08,-1.599790802717140661e-08,-1.669346924574407718e-08,-1.738903046431674776e-08,-1.808459168288941833e-08,-1.878015290146208890e-08,-1.947571412003475947e-08,-2.017127533860743004e-08,-2.086683655718010062e-08,-2.156239777575277119e-08,-2.225795899432544176e-08,-2.295352021289811233e-08,-2.364908143147078290e-08,-2.434464265004345348e-08,-2.504020386861612405e-08,-2.573576508718879462e-08,-2.643132630576146519e-08,-2.712688752433413576e-08,-2.782244874290680634e-08,-2.851800996147947691e-08,-2.921357118005214748e-08,-2.990913239862481805e-08,-3.060469361719749193e-08,-3.130025483577016581e-08,-3.199581605434283969e-08,-3.269137727291551358e-08,-3.338693849148818746e-08,-3.408249971006086134e-08,-3.477806092863353522e-08,-3.547362214720620910e-08,-3.616918336577888298e-08,-3.686474458435155686e-08,-3.756030580292423074e-08,-3.825586702149690462e-08,-3.895142824006957850e-08,-3.964698945864225238e-08,-4.034255067721492626e-08,-4.103811189578760014e-08,-4.173367311436027402e-08,-4.242923433293294791e-08,-4.312479555150562179e-08,-4.382035677007829567e-08 +0.000000000000000000e+00,-7.114566686572459786e-10,-1.422913337314491957e-09,-2.134370005971737729e-09,-2.845826674628983501e-09,-3.557283343286229272e-09,-4.268740011943475458e-09,-4.980196680600721643e-09,-5.691653349257967828e-09,-6.403110017915214014e-09,-7.114566686572460199e-09,-7.826023355229707212e-09,-8.537480023886954224e-09,-9.248936692544201237e-09,-9.960393361201448249e-09,-1.067185002985869526e-08,-1.138330669851594227e-08,-1.209476336717318929e-08,-1.280622003583043630e-08,-1.351767670448768331e-08,-1.422913337314493032e-08,-1.494059004180217734e-08,-1.565204671045942435e-08,-1.636350337911667136e-08,-1.707496004777391837e-08,-1.778641671643116539e-08,-1.849787338508841240e-08,-1.920933005374565941e-08,-1.992078672240290642e-08,-2.063224339106015344e-08,-2.134370005971740045e-08,-2.205515672837464746e-08,-2.276661339703189447e-08,-2.347807006568914149e-08,-2.418952673434638850e-08,-2.490098340300363551e-08,-2.561244007166088252e-08,-2.632389674031812954e-08,-2.703535340897537655e-08,-2.774681007763262356e-08,-2.845826674628987057e-08,-2.916972341494711759e-08,-2.988118008360436791e-08,-3.059263675226161823e-08,-3.130409342091886855e-08,-3.201555008957611887e-08,-3.272700675823336919e-08,-3.343846342689061951e-08,-3.414992009554786984e-08,-3.486137676420512016e-08,-3.557283343286237048e-08,-3.628429010151962080e-08,-3.699574677017687112e-08,-3.770720343883412144e-08,-3.841866010749137176e-08,-3.913011677614862208e-08,-3.984157344480587241e-08,-4.055303011346312273e-08,-4.126448678212037305e-08,-4.197594345077762337e-08,-4.268740011943487369e-08,-4.339885678809212401e-08,-4.411031345674937433e-08,-4.482177012540662465e-08 +0.000000000000000000e+00,-7.124009242154375172e-10,-1.424801848430875034e-09,-2.137202772646312655e-09,-2.849603696861750482e-09,-3.562004621077188310e-09,-4.274405545292626137e-09,-4.986806469508064378e-09,-5.699207393723502619e-09,-6.411608317938940860e-09,-7.124009242154379101e-09,-7.836410166369817342e-09,-8.548811090585255583e-09,-9.261212014800693824e-09,-9.973612939016132065e-09,-1.068601386323157031e-08,-1.139841478744700855e-08,-1.211081571166244679e-08,-1.282321663587788503e-08,-1.353561756009332327e-08,-1.424801848430876151e-08,-1.496041940852419975e-08,-1.567282033273963799e-08,-1.638522125695507623e-08,-1.709762218117051447e-08,-1.781002310538595272e-08,-1.852242402960139096e-08,-1.923482495381682920e-08,-1.994722587803226744e-08,-2.065962680224770568e-08,-2.137202772646314392e-08,-2.208442865067858216e-08,-2.279682957489402040e-08,-2.350923049910945864e-08,-2.422163142332489688e-08,-2.493403234754033512e-08,-2.564643327175577337e-08,-2.635883419597121161e-08,-2.707123512018664985e-08,-2.778363604440208809e-08,-2.849603696861752633e-08,-2.920843789283296457e-08,-2.992083881704840612e-08,-3.063323974126385098e-08,-3.134564066547929584e-08,-3.205804158969474070e-08,-3.277044251391018555e-08,-3.348284343812563041e-08,-3.419524436234107527e-08,-3.490764528655652013e-08,-3.562004621077196499e-08,-3.633244713498740985e-08,-3.704484805920285470e-08,-3.775724898341829956e-08,-3.846964990763374442e-08,-3.918205083184918928e-08,-3.989445175606463414e-08,-4.060685268028007900e-08,-4.131925360449552385e-08,-4.203165452871096871e-08,-4.274405545292641357e-08,-4.345645637714185843e-08,-4.416885730135730329e-08,-4.488125822557274815e-08 +0.000000000000000000e+00,6.761585992076234648e-10,1.352317198415246930e-09,2.028475797622870188e-09,2.704634396830493446e-09,3.380792996038116703e-09,4.056951595245740375e-09,4.733110194453364047e-09,5.409268793660987718e-09,6.085427392868611390e-09,6.761585992076235061e-09,7.437744591283858733e-09,8.113903190491482404e-09,8.790061789699106076e-09,9.466220388906729748e-09,1.014237898811435342e-08,1.081853758732197709e-08,1.149469618652960076e-08,1.217085478573722443e-08,1.284701338494484811e-08,1.352317198415247178e-08,1.419933058336009545e-08,1.487548918256771912e-08,1.555164778177534114e-08,1.622780638098296150e-08,1.690396498019058186e-08,1.758012357939820223e-08,1.825628217860582259e-08,1.893244077781344295e-08,1.960859937702106331e-08,2.028475797622868368e-08,2.096091657543630404e-08,2.163707517464392440e-08,2.231323377385154477e-08,2.298939237305916513e-08,2.366555097226678549e-08,2.434170957147440585e-08,2.501786817068202622e-08,2.569402676988964658e-08,2.637018536909726694e-08,2.704634396830488731e-08,2.772250256751250767e-08,2.839866116672012803e-08,2.907481976592774839e-08,2.975097836513536876e-08,3.042713696434298912e-08,3.110329556355060948e-08,3.177945416275822985e-08,3.245561276196585021e-08,3.313177136117347057e-08,3.380792996038109093e-08,3.448408855958871130e-08,3.516024715879633166e-08,3.583640575800395202e-08,3.651256435721157239e-08,3.718872295641919275e-08,3.786488155562681311e-08,3.854104015483443347e-08,3.921719875404205384e-08,3.989335735324967420e-08,4.056951595245729456e-08,4.124567455166491493e-08,4.192183315087253529e-08,4.259799175008015565e-08 +0.000000000000000000e+00,6.844221342743131028e-10,1.368844268548626206e-09,2.053266402822939102e-09,2.737688537097251998e-09,3.422110671371564894e-09,4.106532805645878203e-09,4.790954939920191513e-09,5.475377074194504822e-09,6.159799208468818132e-09,6.844221342743131442e-09,7.528643477017444751e-09,8.213065611291758061e-09,8.897487745566071370e-09,9.581909879840384680e-09,1.026633201411469799e-08,1.095075414838901130e-08,1.163517628266332461e-08,1.231959841693763792e-08,1.300402055121195123e-08,1.368844268548626454e-08,1.437286481976057785e-08,1.505728695403489281e-08,1.574170908830920612e-08,1.642613122258351943e-08,1.711055335685783274e-08,1.779497549113214605e-08,1.847939762540645936e-08,1.916381975968077267e-08,1.984824189395508598e-08,2.053266402822939929e-08,2.121708616250371260e-08,2.190150829677802591e-08,2.258593043105233922e-08,2.327035256532665253e-08,2.395477469960096584e-08,2.463919683387527915e-08,2.532361896814959245e-08,2.600804110242390576e-08,2.669246323669821907e-08,2.737688537097253238e-08,2.806130750524684569e-08,2.874572963952115900e-08,2.943015177379547231e-08,3.011457390806978562e-08,3.079899604234409893e-08,3.148341817661841224e-08,3.216784031089272555e-08,3.285226244516703886e-08,3.353668457944135217e-08,3.422110671371566548e-08,3.490552884798997879e-08,3.558995098226429210e-08,3.627437311653860541e-08,3.695879525081291872e-08,3.764321738508723203e-08,3.832763951936154534e-08,3.901206165363585865e-08,3.969648378791017196e-08,4.038090592218448527e-08,4.106532805645879858e-08,4.174975019073311189e-08,4.243417232500742519e-08,4.311859445928173850e-08 +0.000000000000000000e+00,6.779135947663324136e-10,1.355827189532664827e-09,2.033740784298997241e-09,2.711654379065329654e-09,3.389567973831662068e-09,4.067481568597994482e-09,4.745395163364326895e-09,5.423308758130659309e-09,6.101222352896991722e-09,6.779135947663324136e-09,7.457049542429656550e-09,8.134963137195988963e-09,8.812876731962321377e-09,9.490790326728653790e-09,1.016870392149498620e-08,1.084661751626131862e-08,1.152453111102765103e-08,1.220244470579398344e-08,1.288035830056031586e-08,1.355827189532664827e-08,1.423618549009298069e-08,1.491409908485931310e-08,1.559201267962564551e-08,1.626992627439197793e-08,1.694783986915831034e-08,1.762575346392464275e-08,1.830366705869097517e-08,1.898158065345730758e-08,1.965949424822363999e-08,2.033740784298997241e-08,2.101532143775630482e-08,2.169323503252263723e-08,2.237114862728896965e-08,2.304906222205530206e-08,2.372697581682163448e-08,2.440488941158796689e-08,2.508280300635429930e-08,2.576071660112063172e-08,2.643863019588696413e-08,2.711654379065329654e-08,2.779445738541962896e-08,2.847237098018596137e-08,2.915028457495229378e-08,2.982819816971862620e-08,3.050611176448495530e-08,3.118402535925128441e-08,3.186193895401761351e-08,3.253985254878394262e-08,3.321776614355027172e-08,3.389567973831660083e-08,3.457359333308292993e-08,3.525150692784925904e-08,3.592942052261558814e-08,3.660733411738191725e-08,3.728524771214824635e-08,3.796316130691457546e-08,3.864107490168090456e-08,3.931898849644723367e-08,3.999690209121356277e-08,4.067481568597989188e-08,4.135272928074622098e-08,4.203064287551255009e-08,4.270855647027887919e-08 +0.000000000000000000e+00,-6.761585994134993101e-10,-1.352317198826998620e-09,-2.028475798240497827e-09,-2.704634397653996827e-09,-3.380792997067495827e-09,-4.056951596480994826e-09,-4.733110195894493826e-09,-5.409268795307992826e-09,-6.085427394721491826e-09,-6.761585994134990826e-09,-7.437744593548489826e-09,-8.113903192961987998e-09,-8.790061792375486998e-09,-9.466220391788985998e-09,-1.014237899120248500e-08,-1.081853759061598400e-08,-1.149469619002948300e-08,-1.217085478944298200e-08,-1.284701338885648100e-08,-1.352317198826998000e-08,-1.419933058768347900e-08,-1.487548918709697800e-08,-1.555164778651047700e-08,-1.622780638592397600e-08,-1.690396498533747500e-08,-1.758012358475097400e-08,-1.825628218416447300e-08,-1.893244078357797200e-08,-1.960859938299147100e-08,-2.028475798240497000e-08,-2.096091658181846900e-08,-2.163707518123196800e-08,-2.231323378064546700e-08,-2.298939238005896600e-08,-2.366555097947246500e-08,-2.434170957888596400e-08,-2.501786817829946300e-08,-2.569402677771296200e-08,-2.637018537712646099e-08,-2.704634397653995999e-08,-2.772250257595345899e-08,-2.839866117536695799e-08,-2.907481977478045699e-08,-2.975097837419395599e-08,-3.042713697360745169e-08,-3.110329557302094738e-08,-3.177945417243444307e-08,-3.245561277184793876e-08,-3.313177137126143445e-08,-3.380792997067493014e-08,-3.448408857008842583e-08,-3.516024716950192152e-08,-3.583640576891541721e-08,-3.651256436832891291e-08,-3.718872296774240860e-08,-3.786488156715590429e-08,-3.854104016656939998e-08,-3.921719876598289567e-08,-3.989335736539639136e-08,-4.056951596480988705e-08,-4.124567456422338274e-08,-4.192183316363687843e-08,-4.259799176305037413e-08 +0.000000000000000000e+00,-6.844221344819701781e-10,-1.368844268963940356e-09,-2.053266403445910328e-09,-2.737688537927880299e-09,-3.422110672409850270e-09,-4.106532806891820655e-09,-4.790954941373791040e-09,-5.475377075855761425e-09,-6.159799210337731810e-09,-6.844221344819702195e-09,-7.528643479301672580e-09,-8.213065613783642965e-09,-8.897487748265613350e-09,-9.581909882747583735e-09,-1.026633201722955412e-08,-1.095075415171152450e-08,-1.163517628619349489e-08,-1.231959842067546527e-08,-1.300402055515743566e-08,-1.368844268963940604e-08,-1.437286482412137643e-08,-1.505728695860334516e-08,-1.574170909308531389e-08,-1.642613122756728262e-08,-1.711055336204925135e-08,-1.779497549653122008e-08,-1.847939763101318881e-08,-1.916381976549515754e-08,-1.984824189997712627e-08,-2.053266403445909500e-08,-2.121708616894106373e-08,-2.190150830342303247e-08,-2.258593043790500120e-08,-2.327035257238696993e-08,-2.395477470686893866e-08,-2.463919684135090739e-08,-2.532361897583287612e-08,-2.600804111031484485e-08,-2.669246324479681358e-08,-2.737688537927878231e-08,-2.806130751376075104e-08,-2.874572964824271977e-08,-2.943015178272468850e-08,-3.011457391720665723e-08,-3.079899605168862596e-08,-3.148341818617059469e-08,-3.216784032065256342e-08,-3.285226245513453215e-08,-3.353668458961650088e-08,-3.422110672409846962e-08,-3.490552885858043835e-08,-3.558995099306240708e-08,-3.627437312754437581e-08,-3.695879526202634454e-08,-3.764321739650831327e-08,-3.832763953099028200e-08,-3.901206166547225073e-08,-3.969648379995421946e-08,-4.038090593443618819e-08,-4.106532806891815692e-08,-4.174975020340012565e-08,-4.243417233788209438e-08,-4.311859447236406311e-08 +0.000000000000000000e+00,-6.779135949856532526e-10,-1.355827189971306505e-09,-2.033740784956959861e-09,-2.711654379942613424e-09,-3.389567974928266987e-09,-4.067481569913920549e-09,-4.745395164899574112e-09,-5.423308759885227675e-09,-6.101222354870881238e-09,-6.779135949856534800e-09,-7.457049544842188363e-09,-8.134963139827842753e-09,-8.812876734813497143e-09,-9.490790329799151533e-09,-1.016870392478480592e-08,-1.084661751977046031e-08,-1.152453111475611470e-08,-1.220244470974176909e-08,-1.288035830472742348e-08,-1.355827189971307787e-08,-1.423618549469873226e-08,-1.491409908968438665e-08,-1.559201268467004104e-08,-1.626992627965569543e-08,-1.694783987464134982e-08,-1.762575346962700421e-08,-1.830366706461265860e-08,-1.898158065959831299e-08,-1.965949425458396738e-08,-2.033740784956962177e-08,-2.101532144455527616e-08,-2.169323503954093055e-08,-2.237114863452658494e-08,-2.304906222951223933e-08,-2.372697582449789372e-08,-2.440488941948354811e-08,-2.508280301446920250e-08,-2.576071660945485689e-08,-2.643863020444051128e-08,-2.711654379942616567e-08,-2.779445739441182006e-08,-2.847237098939747445e-08,-2.915028458438312884e-08,-2.982819817936877992e-08,-3.050611177435443100e-08,-3.118402536934008208e-08,-3.186193896432573317e-08,-3.253985255931138425e-08,-3.321776615429703533e-08,-3.389567974928268641e-08,-3.457359334426833749e-08,-3.525150693925398857e-08,-3.592942053423963965e-08,-3.660733412922529073e-08,-3.728524772421094182e-08,-3.796316131919659290e-08,-3.864107491418224398e-08,-3.931898850916789506e-08,-3.999690210415354614e-08,-4.067481569913919722e-08,-4.135272929412484830e-08,-4.203064288911049938e-08,-4.270855648409615046e-08 +0.000000000000000000e+00,6.729713411058500853e-10,1.345942682211700171e-09,2.018914023317550256e-09,2.691885364423400341e-09,3.364856705529250426e-09,4.037828046635100512e-09,4.710799387740950597e-09,5.383770728846800682e-09,6.056742069952650767e-09,6.729713411058500853e-09,7.402684752164350938e-09,8.075656093270201023e-09,8.748627434376051108e-09,9.421598775481901194e-09,1.009457011658775128e-08,1.076754145769360136e-08,1.144051279879945145e-08,1.211348413990530153e-08,1.278645548101115162e-08,1.345942682211700171e-08,1.413239816322285179e-08,1.480536950432870188e-08,1.547834084543455362e-08,1.615131218654040535e-08,1.682428352764625709e-08,1.749725486875210883e-08,1.817022620985796057e-08,1.884319755096381231e-08,1.951616889206966405e-08,2.018914023317551579e-08,2.086211157428136753e-08,2.153508291538721927e-08,2.220805425649307101e-08,2.288102559759892275e-08,2.355399693870477449e-08,2.422696827981062623e-08,2.489993962091647797e-08,2.557291096202232971e-08,2.624588230312818145e-08,2.691885364423403319e-08,2.759182498533988493e-08,2.826479632644573667e-08,2.893776766755158841e-08,2.961073900865744015e-08,3.028371034976329189e-08,3.095668169086914694e-08,3.162965303197500198e-08,3.230262437308085703e-08,3.297559571418671208e-08,3.364856705529256713e-08,3.432153839639842218e-08,3.499450973750427723e-08,3.566748107861013227e-08,3.634045241971598732e-08,3.701342376082184237e-08,3.768639510192769742e-08,3.835936644303355247e-08,3.903233778413940752e-08,3.970530912524526256e-08,4.037828046635111761e-08,4.105125180745697266e-08,4.172422314856282771e-08,4.239719448966868276e-08 +0.000000000000000000e+00,6.719993134013725549e-10,1.343998626802745110e-09,2.015997940204117561e-09,2.687997253605489806e-09,3.359996567006862050e-09,4.031995880408234295e-09,4.703995193809606540e-09,5.375994507210978784e-09,6.047993820612351029e-09,6.719993134013723274e-09,7.391992447415095518e-09,8.063991760816466936e-09,8.735991074217837526e-09,9.407990387619208117e-09,1.007998970102057871e-08,1.075198901442194930e-08,1.142398832782331989e-08,1.209598764122469048e-08,1.276798695462606107e-08,1.343998626802743166e-08,1.411198558142880225e-08,1.478398489483017284e-08,1.545598420823154343e-08,1.612798352163291402e-08,1.679998283503428461e-08,1.747198214843565520e-08,1.814398146183702579e-08,1.881598077523839638e-08,1.948798008863976697e-08,2.015997940204113756e-08,2.083197871544250815e-08,2.150397802884387874e-08,2.217597734224524933e-08,2.284797665564661992e-08,2.351997596904799051e-08,2.419197528244936110e-08,2.486397459585073169e-08,2.553597390925210228e-08,2.620797322265347287e-08,2.687997253605484346e-08,2.755197184945621405e-08,2.822397116285758464e-08,2.889597047625895524e-08,2.956796978966032583e-08,3.023996910306169311e-08,3.091196841646306039e-08,3.158396772986442767e-08,3.225596704326579495e-08,3.292796635666716223e-08,3.359996567006852952e-08,3.427196498346989680e-08,3.494396429687126408e-08,3.561596361027263136e-08,3.628796292367399864e-08,3.695996223707536592e-08,3.763196155047673320e-08,3.830396086387810049e-08,3.897596017727946777e-08,3.964795949068083505e-08,4.031995880408220233e-08,4.099195811748356961e-08,4.166395743088493689e-08,4.233595674428630418e-08 +0.000000000000000000e+00,6.549807147511650745e-10,1.309961429502330149e-09,1.964942144253495120e-09,2.619922859004659884e-09,3.274903573755824649e-09,3.929884288506989413e-09,4.584865003258154591e-09,5.239845718009319768e-09,5.894826432760484946e-09,6.549807147511650124e-09,7.204787862262815302e-09,7.859768577013980480e-09,8.514749291765145658e-09,9.169730006516310836e-09,9.824710721267476013e-09,1.047969143601864119e-08,1.113467215076980637e-08,1.178965286552097155e-08,1.244463358027213672e-08,1.309961429502330190e-08,1.375459500977446708e-08,1.440957572452563226e-08,1.506455643927679909e-08,1.571953715402796427e-08,1.637451786877912945e-08,1.702949858353029462e-08,1.768447929828145980e-08,1.833946001303262498e-08,1.899444072778379016e-08,1.964942144253495534e-08,2.030440215728612051e-08,2.095938287203728569e-08,2.161436358678845087e-08,2.226934430153961605e-08,2.292432501629078122e-08,2.357930573104194640e-08,2.423428644579311158e-08,2.488926716054427676e-08,2.554424787529544194e-08,2.619922859004660711e-08,2.685420930479777229e-08,2.750919001954893747e-08,2.816417073430010265e-08,2.881915144905126783e-08,2.947413216380243300e-08,3.012911287855359818e-08,3.078409359330476336e-08,3.143907430805592854e-08,3.209405502280709371e-08,3.274903573755825889e-08,3.340401645230942407e-08,3.405899716706058925e-08,3.471397788181175443e-08,3.536895859656291960e-08,3.602393931131408478e-08,3.667892002606524996e-08,3.733390074081641514e-08,3.798888145556758032e-08,3.864386217031874549e-08,3.929884288506991067e-08,3.995382359982107585e-08,4.060880431457224103e-08,4.126378502932340620e-08 +0.000000000000000000e+00,-6.729713413056706583e-10,-1.345942682611341317e-09,-2.018914023917012182e-09,-2.691885365222683047e-09,-3.364856706528353912e-09,-4.037828047834024363e-09,-4.710799389139694815e-09,-5.383770730445365266e-09,-6.056742071751035718e-09,-6.729713413056706169e-09,-7.402684754362376621e-09,-8.075656095668047072e-09,-8.748627436973717524e-09,-9.421598778279387975e-09,-1.009457011958505843e-08,-1.076754146089072888e-08,-1.144051280219639933e-08,-1.211348414350206978e-08,-1.278645548480774023e-08,-1.345942682611341068e-08,-1.413239816741908114e-08,-1.480536950872475159e-08,-1.547834085003042204e-08,-1.615131219133609084e-08,-1.682428353264175963e-08,-1.749725487394742843e-08,-1.817022621525309723e-08,-1.884319755655876602e-08,-1.951616889786443482e-08,-2.018914023917010362e-08,-2.086211158047577242e-08,-2.153508292178144121e-08,-2.220805426308711001e-08,-2.288102560439277881e-08,-2.355399694569844760e-08,-2.422696828700411640e-08,-2.489993962830978520e-08,-2.557291096961545399e-08,-2.624588231092112279e-08,-2.691885365222679159e-08,-2.759182499353246039e-08,-2.826479633483812918e-08,-2.893776767614379798e-08,-2.961073901744946678e-08,-3.028371035875513557e-08,-3.095668170006080437e-08,-3.162965304136647317e-08,-3.230262438267214197e-08,-3.297559572397781076e-08,-3.364856706528347956e-08,-3.432153840658914836e-08,-3.499450974789481715e-08,-3.566748108920048595e-08,-3.634045243050615475e-08,-3.701342377181182355e-08,-3.768639511311749234e-08,-3.835936645442316114e-08,-3.903233779572882994e-08,-3.970530913703449873e-08,-4.037828047834016753e-08,-4.105125181964583633e-08,-4.172422316095150513e-08,-4.239719450225717392e-08 +0.000000000000000000e+00,-6.719993136045086746e-10,-1.343998627209017349e-09,-2.015997940813525920e-09,-2.687997254418034285e-09,-3.359996568022542649e-09,-4.031995881627051013e-09,-4.703995195231558964e-09,-5.375994508836066915e-09,-6.047993822440574866e-09,-6.719993136045082816e-09,-7.391992449649590767e-09,-8.063991763254098718e-09,-8.735991076858606669e-09,-9.407990390463114619e-09,-1.007998970406762257e-08,-1.075198901767213052e-08,-1.142398833127663847e-08,-1.209598764488114642e-08,-1.276798695848565437e-08,-1.343998627209016232e-08,-1.411198558569467027e-08,-1.478398489929917823e-08,-1.545598421290368783e-08,-1.612798352650819744e-08,-1.679998284011270704e-08,-1.747198215371721665e-08,-1.814398146732172625e-08,-1.881598078092623586e-08,-1.948798009453074546e-08,-2.015997940813525507e-08,-2.083197872173976467e-08,-2.150397803534427428e-08,-2.217597734894878388e-08,-2.284797666255329349e-08,-2.351997597615780309e-08,-2.419197528976231270e-08,-2.486397460336682230e-08,-2.553597391697133191e-08,-2.620797323057584151e-08,-2.687997254418035112e-08,-2.755197185778486072e-08,-2.822397117138937033e-08,-2.889597048499387993e-08,-2.956796979859838954e-08,-3.023996911220289914e-08,-3.091196842580740875e-08,-3.158396773941191835e-08,-3.225596705301642796e-08,-3.292796636662093756e-08,-3.359996568022544717e-08,-3.427196499382995677e-08,-3.494396430743446638e-08,-3.561596362103897598e-08,-3.628796293464348559e-08,-3.695996224824799519e-08,-3.763196156185250480e-08,-3.830396087545701441e-08,-3.897596018906152401e-08,-3.964795950266603362e-08,-4.031995881627054322e-08,-4.099195812987505283e-08,-4.166395744347956243e-08,-4.233595675708407204e-08 +0.000000000000000000e+00,-6.549807149713226066e-10,-1.309961429942645213e-09,-1.964942144913967820e-09,-2.619922859885290426e-09,-3.274903574856613033e-09,-3.929884289827935640e-09,-4.584865004799258246e-09,-5.239845719770580853e-09,-5.894826434741903459e-09,-6.549807149713226066e-09,-7.204787864684548673e-09,-7.859768579655871279e-09,-8.514749294627193886e-09,-9.169730009598516493e-09,-9.824710724569839099e-09,-1.047969143954116171e-08,-1.113467215451248431e-08,-1.178965286948380692e-08,-1.244463358445512953e-08,-1.309961429942645213e-08,-1.375459501439777474e-08,-1.440957572936909735e-08,-1.506455644434042161e-08,-1.571953715931174587e-08,-1.637451787428307013e-08,-1.702949858925439439e-08,-1.768447930422571865e-08,-1.833946001919704291e-08,-1.899444073416836717e-08,-1.964942144913969143e-08,-2.030440216411101569e-08,-2.095938287908233996e-08,-2.161436359405366422e-08,-2.226934430902498848e-08,-2.292432502399631274e-08,-2.357930573896763700e-08,-2.423428645393896126e-08,-2.488926716891028552e-08,-2.554424788388160978e-08,-2.619922859885293404e-08,-2.685420931382425830e-08,-2.750919002879558256e-08,-2.816417074376690683e-08,-2.881915145873823109e-08,-2.947413217370955535e-08,-3.012911288868088292e-08,-3.078409360365221049e-08,-3.143907431862353806e-08,-3.209405503359486563e-08,-3.274903574856619320e-08,-3.340401646353752077e-08,-3.405899717850884834e-08,-3.471397789348017591e-08,-3.536895860845150347e-08,-3.602393932342283104e-08,-3.667892003839415861e-08,-3.733390075336548618e-08,-3.798888146833681375e-08,-3.864386218330814132e-08,-3.929884289827946889e-08,-3.995382361325079646e-08,-4.060880432822212403e-08,-4.126378504319345160e-08 +0.000000000000000000e+00,6.847086146418320761e-10,1.369417229283664152e-09,2.054125843925496332e-09,2.738834458567328718e-09,3.423543073209161104e-09,4.108251687850993491e-09,4.792960302492825463e-09,5.477668917134657436e-09,6.162377531776489409e-09,6.847086146418321381e-09,7.531794761060153354e-09,8.216503375701985327e-09,8.901211990343817300e-09,9.585920604985649272e-09,1.027062921962748125e-08,1.095533783426931322e-08,1.164004644891114519e-08,1.232475506355297716e-08,1.300946367819480914e-08,1.369417229283664111e-08,1.437888090747847308e-08,1.506358952212030671e-08,1.574829813676214034e-08,1.643300675140397396e-08,1.711771536604580759e-08,1.780242398068764122e-08,1.848713259532947484e-08,1.917184120997130847e-08,1.985654982461314210e-08,2.054125843925497572e-08,2.122596705389680935e-08,2.191067566853864298e-08,2.259538428318047661e-08,2.328009289782231023e-08,2.396480151246414386e-08,2.464951012710597749e-08,2.533421874174781111e-08,2.601892735638964474e-08,2.670363597103147837e-08,2.738834458567331200e-08,2.807305320031514562e-08,2.875776181495697925e-08,2.944247042959881288e-08,3.012717904424064650e-08,3.081188765888248344e-08,3.149659627352432038e-08,3.218130488816615731e-08,3.286601350280799425e-08,3.355072211744983118e-08,3.423543073209166812e-08,3.492013934673350505e-08,3.560484796137534199e-08,3.628955657601717893e-08,3.697426519065901586e-08,3.765897380530085280e-08,3.834368241994268973e-08,3.902839103458452667e-08,3.971309964922636361e-08,4.039780826386820054e-08,4.108251687851003748e-08,4.176722549315187441e-08,4.245193410779371135e-08,4.313664272243554828e-08 +0.000000000000000000e+00,-9.599067218354130869e-20,-1.919813443670826174e-19,-2.879720165506239261e-19,-3.839626887341652348e-19,-4.799533609177065435e-19,-5.759440331012478522e-19,-6.719347052847891608e-19,-7.679253774683304695e-19,-8.639160496518717782e-19,-9.599067218354130869e-19,-1.055897394018954396e-18,-1.151888066202495704e-18,-1.247878738386037013e-18,-1.343869410569578322e-18,-1.439860082753119630e-18,-1.535850754936660939e-18,-1.631841427120202248e-18,-1.727832099303743556e-18,-1.823822771487284865e-18,-1.919813443670826174e-18,-2.015804115854367483e-18,-2.111794788037908791e-18,-2.207785460221450100e-18,-2.303776132404991409e-18,-2.399766804588532717e-18,-2.495757476772074026e-18,-2.591748148955615335e-18,-2.687738821139156643e-18,-2.783729493322697952e-18,-2.879720165506239261e-18,-2.975710837689780569e-18,-3.071701509873321878e-18,-3.167692182056863187e-18,-3.263682854240404496e-18,-3.359673526423945804e-18,-3.455664198607487113e-18,-3.551654870791028422e-18,-3.647645542974569730e-18,-3.743636215158111039e-18,-3.839626887341652348e-18,-3.935617559525193656e-18,-4.031608231708734965e-18,-4.127598903892276274e-18,-4.223589576075817582e-18,-4.319580248259358891e-18,-4.415570920442900200e-18,-4.511561592626441509e-18,-4.607552264809982817e-18,-4.703542936993524126e-18,-4.799533609177065435e-18,-4.895524281360606743e-18,-4.991514953544148052e-18,-5.087505625727689361e-18,-5.183496297911230669e-18,-5.279486970094771978e-18,-5.375477642278313287e-18,-5.471468314461854595e-18,-5.567458986645395904e-18,-5.663449658828937213e-18,-5.759440331012478522e-18,-5.855431003196019830e-18,-5.951421675379561139e-18,-6.047412347563102448e-18 +0.000000000000000000e+00,6.744393088621876593e-10,1.348878617724375319e-09,2.023317926586563185e-09,2.697757235448751051e-09,3.372196544310938917e-09,4.046635853173126370e-09,4.721075162035313822e-09,5.395514470897501275e-09,6.069953779759688727e-09,6.744393088621876180e-09,7.418832397484063632e-09,8.093271706346251085e-09,8.767711015208438538e-09,9.442150324070625990e-09,1.011658963293281344e-08,1.079102894179500090e-08,1.146546825065718835e-08,1.213990755951937580e-08,1.281434686838156325e-08,1.348878617724375071e-08,1.416322548610593816e-08,1.483766479496812561e-08,1.551210410383031141e-08,1.618654341269249886e-08,1.686098272155468631e-08,1.753542203041687377e-08,1.820986133927906122e-08,1.888430064814124867e-08,1.955873995700343612e-08,2.023317926586562358e-08,2.090761857472781103e-08,2.158205788358999848e-08,2.225649719245218593e-08,2.293093650131437339e-08,2.360537581017656084e-08,2.427981511903874829e-08,2.495425442790093574e-08,2.562869373676312320e-08,2.630313304562531065e-08,2.697757235448749810e-08,2.765201166334968555e-08,2.832645097221187301e-08,2.900089028107406046e-08,2.967532958993624791e-08,3.034976889879843536e-08,3.102420820766062282e-08,3.169864751652281027e-08,3.237308682538499772e-08,3.304752613424718517e-08,3.372196544310937263e-08,3.439640475197156008e-08,3.507084406083374753e-08,3.574528336969593499e-08,3.641972267855812244e-08,3.709416198742030989e-08,3.776860129628249734e-08,3.844304060514468480e-08,3.911747991400687225e-08,3.979191922286905970e-08,4.046635853173124715e-08,4.114079784059343461e-08,4.181523714945562206e-08,4.248967645831780951e-08 +0.000000000000000000e+00,6.468402705560216829e-10,1.293680541112043366e-09,1.940520811668065049e-09,2.587361082224086731e-09,3.234201352780108414e-09,3.881041623336130097e-09,4.527881893892151780e-09,5.174722164448173463e-09,5.821562435004195146e-09,6.468402705560216829e-09,7.115242976116238512e-09,7.762083246672260194e-09,8.408923517228282704e-09,9.055763787784305214e-09,9.702604058340327725e-09,1.034944432889635023e-08,1.099628459945237274e-08,1.164312487000839525e-08,1.228996514056441776e-08,1.293680541112044027e-08,1.358364568167646278e-08,1.423048595223248529e-08,1.487732622278850780e-08,1.552416649334453031e-08,1.617100676390055283e-08,1.681784703445657534e-08,1.746468730501259785e-08,1.811152757556862036e-08,1.875836784612464287e-08,1.940520811668066538e-08,2.005204838723668789e-08,2.069888865779271040e-08,2.134572892834873291e-08,2.199256919890475542e-08,2.263940946946077793e-08,2.328624974001680044e-08,2.393309001057282295e-08,2.457993028112884546e-08,2.522677055168486797e-08,2.587361082224089048e-08,2.652045109279691299e-08,2.716729136335293550e-08,2.781413163390895801e-08,2.846097190446498052e-08,2.910781217502100303e-08,2.975465244557702554e-08,3.040149271613305135e-08,3.104833298668908048e-08,3.169517325724510961e-08,3.234201352780113874e-08,3.298885379835716786e-08,3.363569406891319699e-08,3.428253433946922612e-08,3.492937461002525525e-08,3.557621488058128437e-08,3.622305515113731350e-08,3.686989542169334263e-08,3.751673569224937176e-08,3.816357596280540088e-08,3.881041623336143001e-08,3.945725650391745914e-08,4.010409677447348827e-08,4.075093704502951739e-08 +0.000000000000000000e+00,3.423184077018775662e-10,6.846368154037551325e-10,1.026955223105632802e-09,1.369273630807510472e-09,1.711592038509388141e-09,2.053910446211265604e-09,2.396228853913143067e-09,2.738547261615020530e-09,3.080865669316897993e-09,3.423184077018775455e-09,3.765502484720652918e-09,4.107820892422530381e-09,4.450139300124407844e-09,4.792457707826285307e-09,5.134776115528162770e-09,5.477094523230040232e-09,5.819412930931917695e-09,6.161731338633795158e-09,6.504049746335672621e-09,6.846368154037550084e-09,7.188686561739427547e-09,7.531004969441305837e-09,7.873323377143184127e-09,8.215641784845062417e-09,8.557960192546940707e-09,8.900278600248818997e-09,9.242597007950697287e-09,9.584915415652575577e-09,9.927233823354453867e-09,1.026955223105633216e-08,1.061187063875821045e-08,1.095418904646008874e-08,1.129650745416196703e-08,1.163882586186384532e-08,1.198114426956572361e-08,1.232346267726760190e-08,1.266578108496948019e-08,1.300809949267135848e-08,1.335041790037323677e-08,1.369273630807511506e-08,1.403505471577699335e-08,1.437737312347887164e-08,1.471969153118074993e-08,1.506200993888262822e-08,1.540432834658450651e-08,1.574664675428638480e-08,1.608896516198826309e-08,1.643128356969014138e-08,1.677360197739201967e-08,1.711592038509389796e-08,1.745823879279577625e-08,1.780055720049765454e-08,1.814287560819953283e-08,1.848519401590141112e-08,1.882751242360328941e-08,1.916983083130516770e-08,1.951214923900704599e-08,1.985446764670892428e-08,2.019678605441080257e-08,2.053910446211268086e-08,2.088142286981455915e-08,2.122374127751643744e-08,2.156605968521831573e-08 +0.000000000000000000e+00,-1.098892519541621645e-19,-2.197785039083243291e-19,-3.296677558624864696e-19,-4.395570078166485619e-19,-5.494462597708106542e-19,-6.593355117249727465e-19,-7.692247636791348388e-19,-8.791140156332969312e-19,-9.890032675874590235e-19,-1.098892519541621116e-18,-1.208781771495783208e-18,-1.318671023449945300e-18,-1.428560275404107393e-18,-1.538449527358269485e-18,-1.648338779312431577e-18,-1.758228031266593477e-18,-1.868117283220755184e-18,-1.978006535174916891e-18,-2.087895787129078599e-18,-2.197785039083240306e-18,-2.307674291037402013e-18,-2.417563542991563720e-18,-2.527452794945725427e-18,-2.637342046899887134e-18,-2.747231298854048841e-18,-2.857120550808210548e-18,-2.967009802762372256e-18,-3.076899054716533963e-18,-3.186788306670695670e-18,-3.296677558624857377e-18,-3.406566810579019084e-18,-3.516456062533180791e-18,-3.626345314487342498e-18,-3.736234566441504206e-18,-3.846123818395665913e-18,-3.956013070349827620e-18,-4.065902322303989327e-18,-4.175791574258151034e-18,-4.285680826212312741e-18,-4.395570078166474448e-18,-4.505459330120636155e-18,-4.615348582074797863e-18,-4.725237834028959570e-18,-4.835127085983121277e-18,-4.945016337937282984e-18,-5.054905589891444691e-18,-5.164794841845606398e-18,-5.274684093799768105e-18,-5.384573345753929813e-18,-5.494462597708091520e-18,-5.604351849662253227e-18,-5.714241101616414934e-18,-5.824130353570576641e-18,-5.934019605524738348e-18,-6.043908857478900055e-18,-6.153798109433061762e-18,-6.263687361387223470e-18,-6.373576613341385177e-18,-6.483465865295546884e-18,-6.593355117249708591e-18,-6.703244369203870298e-18,-6.813133621158032005e-18,-6.923022873112193712e-18 +0.000000000000000000e+00,-6.847086148336941376e-10,-1.369417229667388275e-09,-2.054125844501082516e-09,-2.738834459334776964e-09,-3.423543074168471412e-09,-4.108251689002165860e-09,-4.792960303835860721e-09,-5.477668918669555583e-09,-6.162377533503250444e-09,-6.847086148336945306e-09,-7.531794763170640167e-09,-8.216503378004335028e-09,-8.901211992838029890e-09,-9.585920607671724751e-09,-1.027062922250541961e-08,-1.095533783733911447e-08,-1.164004645217280934e-08,-1.232475506700650420e-08,-1.300946368184019906e-08,-1.369417229667389392e-08,-1.437888091150758878e-08,-1.506358952634128364e-08,-1.574829814117498016e-08,-1.643300675600867667e-08,-1.711771537084237319e-08,-1.780242398567606971e-08,-1.848713260050976622e-08,-1.917184121534346274e-08,-1.985654983017715925e-08,-2.054125844501085577e-08,-2.122596705984455228e-08,-2.191067567467824880e-08,-2.259538428951194532e-08,-2.328009290434564183e-08,-2.396480151917933835e-08,-2.464951013401303486e-08,-2.533421874884673138e-08,-2.601892736368042790e-08,-2.670363597851412441e-08,-2.738834459334782093e-08,-2.807305320818151744e-08,-2.875776182301521396e-08,-2.944247043784891047e-08,-3.012717905268260699e-08,-3.081188766751630351e-08,-3.149659628235000002e-08,-3.218130489718369654e-08,-3.286601351201739305e-08,-3.355072212685108957e-08,-3.423543074168478608e-08,-3.492013935651848260e-08,-3.560484797135217912e-08,-3.628955658618587563e-08,-3.697426520101957215e-08,-3.765897381585326866e-08,-3.834368243068696518e-08,-3.902839104552066170e-08,-3.971309966035435821e-08,-4.039780827518805473e-08,-4.108251689002175124e-08,-4.176722550485544776e-08,-4.245193411968914427e-08,-4.313664273452284079e-08 +0.000000000000000000e+00,-3.423184078938273606e-10,-6.846368157876547212e-10,-1.026955223681482030e-09,-1.369273631575309236e-09,-1.711592039469136441e-09,-2.053910447362963647e-09,-2.396228855256790852e-09,-2.738547263150618058e-09,-3.080865671044445263e-09,-3.423184078938272469e-09,-3.765502486832099261e-09,-4.107820894725926466e-09,-4.450139302619753672e-09,-4.792457710513580877e-09,-5.134776118407408083e-09,-5.477094526301235288e-09,-5.819412934195062494e-09,-6.161731342088889699e-09,-6.504049749982716905e-09,-6.846368157876544110e-09,-7.188686565770371316e-09,-7.531004973664198521e-09,-7.873323381558025727e-09,-8.215641789451852932e-09,-8.557960197345680138e-09,-8.900278605239507343e-09,-9.242597013133334549e-09,-9.584915421027161754e-09,-9.927233828920988960e-09,-1.026955223681481617e-08,-1.061187064470864337e-08,-1.095418905260247058e-08,-1.129650746049629778e-08,-1.163882586839012499e-08,-1.198114427628395219e-08,-1.232346268417777940e-08,-1.266578109207160660e-08,-1.300809949996543381e-08,-1.335041790785926102e-08,-1.369273631575308822e-08,-1.403505472364691543e-08,-1.437737313154074263e-08,-1.471969153943456984e-08,-1.506200994732839704e-08,-1.540432835522222425e-08,-1.574664676311605145e-08,-1.608896517100987866e-08,-1.643128357890370586e-08,-1.677360198679753307e-08,-1.711592039469136028e-08,-1.745823880258518748e-08,-1.780055721047901469e-08,-1.814287561837284189e-08,-1.848519402626666910e-08,-1.882751243416049630e-08,-1.916983084205432351e-08,-1.951214924994815071e-08,-1.985446765784197792e-08,-2.019678606573580513e-08,-2.053910447362963233e-08,-2.088142288152345954e-08,-2.122374128941728674e-08,-2.156605969731111395e-08 +0.000000000000000000e+00,-6.744393090582657571e-10,-1.348878618116531514e-09,-2.023317927174797375e-09,-2.697757236233063442e-09,-3.372196545291329509e-09,-4.046635854349595576e-09,-4.721075163407861230e-09,-5.395514472466126884e-09,-6.069953781524392537e-09,-6.744393090582658191e-09,-7.418832399640923845e-09,-8.093271708699189498e-09,-8.767711017757455152e-09,-9.442150326815720806e-09,-1.011658963587398646e-08,-1.079102894493225211e-08,-1.146546825399051777e-08,-1.213990756304878342e-08,-1.281434687210704907e-08,-1.348878618116531473e-08,-1.416322549022358038e-08,-1.483766479928184604e-08,-1.551210410834011334e-08,-1.618654341739838231e-08,-1.686098272645665127e-08,-1.753542203551492023e-08,-1.820986134457318919e-08,-1.888430065363145816e-08,-1.955873996268972712e-08,-2.023317927174799608e-08,-2.090761858080626504e-08,-2.158205788986453400e-08,-2.225649719892280297e-08,-2.293093650798107193e-08,-2.360537581703934089e-08,-2.427981512609760985e-08,-2.495425443515587882e-08,-2.562869374421414778e-08,-2.630313305327241674e-08,-2.697757236233068570e-08,-2.765201167138895467e-08,-2.832645098044722363e-08,-2.900089028950549259e-08,-2.967532959856376155e-08,-3.034976890762203052e-08,-3.102420821668029948e-08,-3.169864752573856844e-08,-3.237308683479683740e-08,-3.304752614385510637e-08,-3.372196545291337533e-08,-3.439640476197164429e-08,-3.507084407102991325e-08,-3.574528338008818221e-08,-3.641972268914645118e-08,-3.709416199820472014e-08,-3.776860130726298910e-08,-3.844304061632125806e-08,-3.911747992537952703e-08,-3.979191923443779599e-08,-4.046635854349606495e-08,-4.114079785255433391e-08,-4.181523716161260288e-08,-4.248967647067087184e-08 +0.000000000000000000e+00,-6.468402707756453733e-10,-1.293680541551290747e-09,-1.940520812326935913e-09,-2.587361083102581080e-09,-3.234201353878226246e-09,-3.881041624653871826e-09,-4.527881895429517407e-09,-5.174722166205162987e-09,-5.821562436980808567e-09,-6.468402707756454147e-09,-7.115242978532099727e-09,-7.762083249307745307e-09,-8.408923520083390887e-09,-9.055763790859036467e-09,-9.702604061634682048e-09,-1.034944433241032763e-08,-1.099628460318597321e-08,-1.164312487396161879e-08,-1.228996514473726437e-08,-1.293680541551290995e-08,-1.358364568628855553e-08,-1.423048595706420111e-08,-1.487732622783984669e-08,-1.552416649861549392e-08,-1.617100676939114281e-08,-1.681784704016679170e-08,-1.746468731094244059e-08,-1.811152758171808948e-08,-1.875836785249373837e-08,-1.940520812326938726e-08,-2.005204839404503614e-08,-2.069888866482068503e-08,-2.134572893559633392e-08,-2.199256920637198281e-08,-2.263940947714763170e-08,-2.328624974792328059e-08,-2.393309001869892948e-08,-2.457993028947457837e-08,-2.522677056025022726e-08,-2.587361083102587614e-08,-2.652045110180152503e-08,-2.716729137257717392e-08,-2.781413164335282281e-08,-2.846097191412847170e-08,-2.910781218490412059e-08,-2.975465245567976948e-08,-3.040149272645541837e-08,-3.104833299723106726e-08,-3.169517326800671614e-08,-3.234201353878236503e-08,-3.298885380955801392e-08,-3.363569408033366281e-08,-3.428253435110931170e-08,-3.492937462188496059e-08,-3.557621489266060948e-08,-3.622305516343625837e-08,-3.686989543421190725e-08,-3.751673570498755614e-08,-3.816357597576320503e-08,-3.881041624653885392e-08,-3.945725651731450281e-08,-4.010409678809015170e-08,-4.075093705886580059e-08 +0.000000000000000000e+00,8.547593211964574303e-10,1.709518642392914861e-09,2.564277963589372188e-09,3.419037284785829308e-09,4.273796605982286428e-09,5.128555927178743548e-09,5.983315248375200668e-09,6.838074569571657788e-09,7.692833890768114908e-09,8.547593211964572856e-09,9.402352533161030803e-09,1.025711185435748875e-08,1.111187117555394670e-08,1.196663049675040464e-08,1.282138981794686259e-08,1.367614913914332054e-08,1.453090846033977849e-08,1.538566778153623643e-08,1.624042710273269438e-08,1.709518642392915233e-08,1.794994574512561028e-08,1.880470506632206822e-08,1.965946438751852617e-08,2.051422370871498412e-08,2.136898302991144207e-08,2.222374235110790001e-08,2.307850167230435796e-08,2.393326099350081591e-08,2.478802031469727385e-08,2.564277963589373180e-08,2.649753895709018975e-08,2.735229827828664770e-08,2.820705759948310564e-08,2.906181692067956359e-08,2.991657624187602154e-08,3.077133556307247949e-08,3.162609488426893743e-08,3.248085420546539538e-08,3.333561352666185333e-08,3.419037284785831127e-08,3.504513216905476922e-08,3.589989149025122717e-08,3.675465081144768512e-08,3.760941013264414306e-08,3.846416945384060101e-08,3.931892877503705896e-08,4.017368809623351691e-08,4.102844741742997485e-08,4.188320673862643280e-08,4.273796605982289075e-08,4.359272538101934869e-08,4.444748470221580664e-08,4.530224402341226459e-08,4.615700334460872254e-08,4.701176266580518048e-08,4.786652198700163843e-08,4.872128130819809638e-08,4.957604062939455433e-08,5.043079995059101227e-08,5.128555927178747022e-08,5.214031859298392817e-08,5.299507791418038612e-08,5.384983723537684406e-08 +0.000000000000000000e+00,1.196626740511977637e-09,2.393253481023955274e-09,3.589880221535932704e-09,4.786506962047909721e-09,5.983133702559886737e-09,7.179760443071863754e-09,8.376387183583840770e-09,9.573013924095817787e-09,1.076964066460779480e-08,1.196626740511977182e-08,1.316289414563174884e-08,1.435952088614372585e-08,1.555614762665570122e-08,1.675277436716767823e-08,1.794940110767965525e-08,1.914602784819163226e-08,2.034265458870360928e-08,2.153928132921558630e-08,2.273590806972756331e-08,2.393253481023954033e-08,2.512916155075151735e-08,2.632578829126349436e-08,2.752241503177547138e-08,2.871904177228744840e-08,2.991566851279942541e-08,3.111229525331140243e-08,3.230892199382337945e-08,3.350554873433535646e-08,3.470217547484733348e-08,3.589880221535931050e-08,3.709542895587128751e-08,3.829205569638326453e-08,3.948868243689524155e-08,4.068530917740721856e-08,4.188193591791919558e-08,4.307856265843117260e-08,4.427518939894314961e-08,4.547181613945512663e-08,4.666844287996710365e-08,4.786506962047908066e-08,4.906169636099105768e-08,5.025832310150303470e-08,5.145494984201501171e-08,5.265157658252698873e-08,5.384820332303896574e-08,5.504483006355094276e-08,5.624145680406291978e-08,5.743808354457489679e-08,5.863471028508687381e-08,5.983133702559885083e-08,6.102796376611082784e-08,6.222459050662280486e-08,6.342121724713478188e-08,6.461784398764675889e-08,6.581447072815873591e-08,6.701109746867071293e-08,6.820772420918268994e-08,6.940435094969466696e-08,7.060097769020664398e-08,7.179760443071862099e-08,7.299423117123059801e-08,7.419085791174257503e-08,7.538748465225455204e-08 +0.000000000000000000e+00,-8.951582071780576021e-20,-1.790316414356115204e-19,-2.685474621534172686e-19,-3.580632828712229927e-19,-4.475791035890287168e-19,-5.370949243068344409e-19,-6.266107450246401650e-19,-7.161265657424458891e-19,-8.056423864602516132e-19,-8.951582071780574336e-19,-9.846740278958632540e-19,-1.074189848613669074e-18,-1.163705669331474895e-18,-1.253221490049280715e-18,-1.342737310767086536e-18,-1.432253131484892356e-18,-1.521768952202698176e-18,-1.611284772920503997e-18,-1.700800593638309817e-18,-1.790316414356115638e-18,-1.879832235073921458e-18,-1.969348055791727278e-18,-2.058863876509533099e-18,-2.148379697227338919e-18,-2.237895517945144739e-18,-2.327411338662950560e-18,-2.416927159380756380e-18,-2.506442980098562201e-18,-2.595958800816368021e-18,-2.685474621534173841e-18,-2.774990442251979662e-18,-2.864506262969785482e-18,-2.954022083687591303e-18,-3.043537904405397123e-18,-3.133053725123202943e-18,-3.222569545841008764e-18,-3.312085366558814584e-18,-3.401601187276620405e-18,-3.491117007994426610e-18,-3.580632828712232816e-18,-3.670148649430039021e-18,-3.759664470147845227e-18,-3.849180290865651433e-18,-3.938696111583457638e-18,-4.028211932301263844e-18,-4.117727753019070049e-18,-4.207243573736876255e-18,-4.296759394454682460e-18,-4.386275215172488666e-18,-4.475791035890294872e-18,-4.565306856608101077e-18,-4.654822677325907283e-18,-4.744338498043713488e-18,-4.833854318761519694e-18,-4.923370139479325899e-18,-5.012885960197132105e-18,-5.102401780914938311e-18,-5.191917601632744516e-18,-5.281433422350550722e-18,-5.370949243068356927e-18,-5.460465063786163133e-18,-5.549980884503969339e-18,-5.639496705221775544e-18 +0.000000000000000000e+00,9.304904926377150577e-10,1.860980985275430115e-09,2.791471477913144966e-09,3.721961970550859817e-09,4.652452463188574668e-09,5.582942955826289933e-09,6.513433448464005197e-09,7.443923941101720462e-09,8.374414433739435726e-09,9.304904926377150991e-09,1.023539541901486626e-08,1.116588591165258152e-08,1.209637640429029678e-08,1.302686689692801205e-08,1.395735738956572731e-08,1.488784788220344258e-08,1.581833837484115784e-08,1.674882886747887145e-08,1.767931936011658506e-08,1.860980985275429867e-08,1.954030034539201228e-08,2.047079083802972589e-08,2.140128133066743950e-08,2.233177182330515311e-08,2.326226231594286672e-08,2.419275280858058033e-08,2.512324330121829394e-08,2.605373379385600755e-08,2.698422428649372116e-08,2.791471477913143477e-08,2.884520527176914838e-08,2.977569576440686199e-08,3.070618625704457230e-08,3.163667674968228260e-08,3.256716724231999290e-08,3.349765773495770320e-08,3.442814822759541350e-08,3.535863872023312380e-08,3.628912921287083410e-08,3.721961970550854441e-08,3.815011019814625471e-08,3.908060069078396501e-08,4.001109118342167531e-08,4.094158167605938561e-08,4.187207216869709591e-08,4.280256266133480621e-08,4.373305315397251652e-08,4.466354364661022682e-08,4.559403413924793712e-08,4.652452463188564742e-08,4.745501512452335772e-08,4.838550561716106802e-08,4.931599610979877832e-08,5.024648660243648863e-08,5.117697709507419893e-08,5.210746758771190923e-08,5.303795808034961953e-08,5.396844857298732983e-08,5.489893906562504013e-08,5.582942955826275043e-08,5.675992005090046074e-08,5.769041054353817104e-08,5.862090103617588134e-08 +0.000000000000000000e+00,1.459470213965094848e-09,2.918940427930189697e-09,4.378410641895284958e-09,5.837880855860380220e-09,7.297351069825475482e-09,8.756821283790569917e-09,1.021629149775566435e-08,1.167576171172075879e-08,1.313523192568585322e-08,1.459470213965094766e-08,1.605417235361604044e-08,1.751364256758113322e-08,1.897311278154622600e-08,2.043258299551131878e-08,2.189205320947641156e-08,2.335152342344150434e-08,2.481099363740659712e-08,2.627046385137168990e-08,2.772993406533678268e-08,2.918940427930187546e-08,3.064887449326696824e-08,3.210834470723206102e-08,3.356781492119715380e-08,3.502728513516224658e-08,3.648675534912733936e-08,3.794622556309243214e-08,3.940569577705752492e-08,4.086516599102261770e-08,4.232463620498771048e-08,4.378410641895280326e-08,4.524357663291789604e-08,4.670304684688298882e-08,4.816251706084808160e-08,4.962198727481317438e-08,5.108145748877826716e-08,5.254092770274335994e-08,5.400039791670845272e-08,5.545986813067354551e-08,5.691933834463863829e-08,5.837880855860373107e-08,5.983827877256882385e-08,6.129774898653391001e-08,6.275721920049899617e-08,6.421668941446408233e-08,6.567615962842916850e-08,6.713562984239425466e-08,6.859510005635934082e-08,7.005457027032442699e-08,7.151404048428951315e-08,7.297351069825459931e-08,7.443298091221968548e-08,7.589245112618477164e-08,7.735192134014985780e-08,7.881139155411494396e-08,8.027086176808003013e-08,8.173033198204511629e-08,8.318980219601020245e-08,8.464927240997528862e-08,8.610874262394037478e-08,8.756821283790546094e-08,8.902768305187054710e-08,9.048715326583563327e-08,9.194662347980071943e-08 +0.000000000000000000e+00,9.823746186877216896e-10,1.964749237375443379e-09,2.947123856063164862e-09,3.929498474750885931e-09,4.911873093438607001e-09,5.894247712126328070e-09,6.876622330814049139e-09,7.858996949501770208e-09,8.841371568189491277e-09,9.823746186877212347e-09,1.080612080556493342e-08,1.178849542425265449e-08,1.277087004294037555e-08,1.375324466162809662e-08,1.473561928031581769e-08,1.571799389900353711e-08,1.670036851769125652e-08,1.768274313637897594e-08,1.866511775506669535e-08,1.964749237375441477e-08,2.062986699244213418e-08,2.161224161112985360e-08,2.259461622981757301e-08,2.357699084850529243e-08,2.455936546719301184e-08,2.554174008588073126e-08,2.652411470456845067e-08,2.750648932325617009e-08,2.848886394194388950e-08,2.947123856063160892e-08,3.045361317931932502e-08,3.143598779800704113e-08,3.241836241669475723e-08,3.340073703538247334e-08,3.438311165407018945e-08,3.536548627275790555e-08,3.634786089144562166e-08,3.733023551013333777e-08,3.831261012882105387e-08,3.929498474750876998e-08,4.027735936619648608e-08,4.125973398488420219e-08,4.224210860357191830e-08,4.322448322225963440e-08,4.420685784094735051e-08,4.518923245963506661e-08,4.617160707832278272e-08,4.715398169701049883e-08,4.813635631569821493e-08,4.911873093438593104e-08,5.010110555307364714e-08,5.108348017176136325e-08,5.206585479044907936e-08,5.304822940913679546e-08,5.403060402782451157e-08,5.501297864651222768e-08,5.599535326519994378e-08,5.697772788388765989e-08,5.796010250257537599e-08,5.894247712126309210e-08,5.992485173995080821e-08,6.090722635863851770e-08,6.188960097732622718e-08 +0.000000000000000000e+00,5.980349855755079422e-10,1.196069971151015884e-09,1.794104956726523723e-09,2.392139942302031355e-09,2.990174927877538987e-09,3.588209913453046619e-09,4.186244899028554665e-09,4.784279884604062710e-09,5.382314870179570756e-09,5.980349855755078802e-09,6.578384841330586847e-09,7.176419826906094893e-09,7.774454812481602938e-09,8.372489798057110984e-09,8.970524783632619030e-09,9.568559769208127075e-09,1.016659475478363512e-08,1.076462974035914317e-08,1.136266472593465121e-08,1.196069971151015926e-08,1.255873469708566730e-08,1.315676968266117535e-08,1.375480466823668339e-08,1.435283965381219144e-08,1.495087463938769949e-08,1.554890962496320588e-08,1.614694461053871227e-08,1.674497959611421866e-08,1.734301458168972505e-08,1.794104956726523144e-08,1.853908455284073783e-08,1.913711953841624422e-08,1.973515452399175062e-08,2.033318950956725701e-08,2.093122449514276340e-08,2.152925948071826979e-08,2.212729446629377618e-08,2.272532945186928257e-08,2.332336443744478896e-08,2.392139942302029535e-08,2.451943440859580175e-08,2.511746939417130814e-08,2.571550437974681453e-08,2.631353936532232092e-08,2.691157435089782731e-08,2.750960933647333370e-08,2.810764432204884009e-08,2.870567930762434648e-08,2.930371429319985288e-08,2.990174927877535927e-08,3.049978426435086897e-08,3.109781924992637867e-08,3.169585423550188837e-08,3.229388922107739807e-08,3.289192420665290777e-08,3.348995919222841747e-08,3.408799417780392717e-08,3.468602916337943687e-08,3.528406414895494657e-08,3.588209913453045627e-08,3.648013412010596597e-08,3.707816910568147567e-08,3.767620409125698537e-08 +0.000000000000000000e+00,-8.929514592172815514e-20,-1.785902918434563103e-19,-2.678854377651844895e-19,-3.571805836869126687e-19,-4.464757296086408479e-19,-5.357708755303689790e-19,-6.250660214520971101e-19,-7.143611673738252411e-19,-8.036563132955533722e-19,-8.929514592172815033e-19,-9.822466051390096343e-19,-1.071541751060737765e-18,-1.160836896982465896e-18,-1.250132042904194028e-18,-1.339427188825922159e-18,-1.428722334747650290e-18,-1.518017480669378421e-18,-1.607312626591106552e-18,-1.696607772512834683e-18,-1.785902918434562621e-18,-1.875198064356290367e-18,-1.964493210278018113e-18,-2.053788356199745859e-18,-2.143083502121473605e-18,-2.232378648043201351e-18,-2.321673793964929097e-18,-2.410968939886656842e-18,-2.500264085808384588e-18,-2.589559231730112334e-18,-2.678854377651840080e-18,-2.768149523573567826e-18,-2.857444669495295572e-18,-2.946739815417023318e-18,-3.036034961338751064e-18,-3.125330107260478810e-18,-3.214625253182206555e-18,-3.303920399103934301e-18,-3.393215545025662047e-18,-3.482510690947389793e-18,-3.571805836869117539e-18,-3.661100982790845285e-18,-3.750396128712573031e-18,-3.839691274634300777e-18,-3.928986420556028522e-18,-4.018281566477756268e-18,-4.107576712399484014e-18,-4.196871858321211760e-18,-4.286167004242939506e-18,-4.375462150164667252e-18,-4.464757296086394998e-18,-4.554052442008122744e-18,-4.643347587929850490e-18,-4.732642733851578235e-18,-4.821937879773305981e-18,-4.911233025695033727e-18,-5.000528171616761473e-18,-5.089823317538489219e-18,-5.179118463460216965e-18,-5.268413609381944711e-18,-5.357708755303672457e-18,-5.447003901225400202e-18,-5.536299047147127948e-18,-5.625594193068855694e-18 +0.000000000000000000e+00,-8.547593213800243179e-10,-1.709518642760048636e-09,-2.564277964140073057e-09,-3.419037285520097685e-09,-4.273796606900122727e-09,-5.128555928280147768e-09,-5.983315249660172810e-09,-6.838074571040197852e-09,-7.692833892420222893e-09,-8.547593213800248762e-09,-9.402352535180274631e-09,-1.025711185656030050e-08,-1.111187117794032637e-08,-1.196663049932035224e-08,-1.282138982070037811e-08,-1.367614914208040398e-08,-1.453090846346042984e-08,-1.538566778484045571e-08,-1.624042710622048158e-08,-1.709518642760050745e-08,-1.794994574898053332e-08,-1.880470507036055919e-08,-1.965946439174058506e-08,-2.051422371312061093e-08,-2.136898303450063679e-08,-2.222374235588066266e-08,-2.307850167726068853e-08,-2.393326099864071440e-08,-2.478802032002074027e-08,-2.564277964140076614e-08,-2.649753896278079201e-08,-2.735229828416081788e-08,-2.820705760554084375e-08,-2.906181692692086961e-08,-2.991657624830089217e-08,-3.077133556968091804e-08,-3.162609489106094391e-08,-3.248085421244096978e-08,-3.333561353382099565e-08,-3.419037285520102152e-08,-3.504513217658104739e-08,-3.589989149796107326e-08,-3.675465081934109913e-08,-3.760941014072112499e-08,-3.846416946210115086e-08,-3.931892878348117673e-08,-4.017368810486120260e-08,-4.102844742624122847e-08,-4.188320674762125434e-08,-4.273796606900128021e-08,-4.359272539038130608e-08,-4.444748471176133194e-08,-4.530224403314135781e-08,-4.615700335452138368e-08,-4.701176267590140955e-08,-4.786652199728143542e-08,-4.872128131866146129e-08,-4.957604064004148716e-08,-5.043079996142151303e-08,-5.128555928280153890e-08,-5.214031860418156476e-08,-5.299507792556159063e-08,-5.384983724694161650e-08 +0.000000000000000000e+00,-1.196626740690480525e-09,-2.393253481380961050e-09,-3.589880222071441574e-09,-4.786506962761922099e-09,-5.983133703452403038e-09,-7.179760444142883976e-09,-8.376387184833364914e-09,-9.573013925523845853e-09,-1.076964066621432679e-08,-1.196626740690480773e-08,-1.316289414759528867e-08,-1.435952088828576961e-08,-1.555614762897625054e-08,-1.675277436966672983e-08,-1.794940111035720911e-08,-1.914602785104768840e-08,-2.034265459173816768e-08,-2.153928133242864696e-08,-2.273590807311912625e-08,-2.393253481380960553e-08,-2.512916155450008482e-08,-2.632578829519056410e-08,-2.752241503588104338e-08,-2.871904177657152267e-08,-2.991566851726200526e-08,-3.111229525795248785e-08,-3.230892199864297045e-08,-3.350554873933345304e-08,-3.470217548002393563e-08,-3.589880222071441823e-08,-3.709542896140490082e-08,-3.829205570209538341e-08,-3.948868244278586600e-08,-4.068530918347634860e-08,-4.188193592416683119e-08,-4.307856266485731378e-08,-4.427518940554779637e-08,-4.547181614623827897e-08,-4.666844288692876156e-08,-4.786506962761924415e-08,-4.906169636830972675e-08,-5.025832310900020934e-08,-5.145494984969069193e-08,-5.265157659038117452e-08,-5.384820333107165712e-08,-5.504483007176213971e-08,-5.624145681245262230e-08,-5.743808355314310489e-08,-5.863471029383358749e-08,-5.983133703452406346e-08,-6.102796377521453944e-08,-6.222459051590501541e-08,-6.342121725659549139e-08,-6.461784399728596736e-08,-6.581447073797644334e-08,-6.701109747866691931e-08,-6.820772421935739529e-08,-6.940435096004787127e-08,-7.060097770073834724e-08,-7.179760444142882322e-08,-7.299423118211929919e-08,-7.419085792280977517e-08,-7.538748466350025114e-08 +0.000000000000000000e+00,-5.980349857543513183e-10,-1.196069971508702637e-09,-1.794104957263053955e-09,-2.392139943017405273e-09,-2.990174928771756385e-09,-3.588209914526107496e-09,-4.186244900280458608e-09,-4.784279886034809719e-09,-5.382314871789160831e-09,-5.980349857543511942e-09,-6.578384843297863053e-09,-7.176419829052214165e-09,-7.774454814806566104e-09,-8.372489800560918869e-09,-8.970524786315271635e-09,-9.568559772069624401e-09,-1.016659475782397717e-08,-1.076462974357832993e-08,-1.136266472933268270e-08,-1.196069971508703546e-08,-1.255873470084138823e-08,-1.315676968659574100e-08,-1.375480467235009376e-08,-1.435283965810444653e-08,-1.495087464385879929e-08,-1.554890962961315206e-08,-1.614694461536750483e-08,-1.674497960112185759e-08,-1.734301458687621036e-08,-1.794104957263056312e-08,-1.853908455838491589e-08,-1.913711954413926865e-08,-1.973515452989362142e-08,-2.033318951564797419e-08,-2.093122450140232695e-08,-2.152925948715667972e-08,-2.212729447291103248e-08,-2.272532945866538525e-08,-2.332336444441973802e-08,-2.392139943017409078e-08,-2.451943441592844355e-08,-2.511746940168279631e-08,-2.571550438743714908e-08,-2.631353937319150184e-08,-2.691157435894585461e-08,-2.750960934470020738e-08,-2.810764433045456014e-08,-2.870567931620891291e-08,-2.930371430196326567e-08,-2.990174928771761844e-08,-3.049978427347197121e-08,-3.109781925922632397e-08,-3.169585424498067674e-08,-3.229388923073502950e-08,-3.289192421648938227e-08,-3.348995920224373503e-08,-3.408799418799808780e-08,-3.468602917375244057e-08,-3.528406415950679333e-08,-3.588209914526114610e-08,-3.648013413101549886e-08,-3.707816911676985163e-08,-3.767620410252420440e-08 +0.000000000000000000e+00,-9.304904928184175222e-10,-1.860980985636835044e-09,-2.791471478455252670e-09,-3.721961971273670502e-09,-4.652452464092088335e-09,-5.582942956910506167e-09,-6.513433449728924000e-09,-7.443923942547341832e-09,-8.374414435365758837e-09,-9.304904928184175015e-09,-1.023539542100259119e-08,-1.116588591382100737e-08,-1.209637640663942355e-08,-1.302686689945783973e-08,-1.395735739227625591e-08,-1.488784788509467208e-08,-1.581833837791308826e-08,-1.674882887073150444e-08,-1.767931936354992062e-08,-1.860980985636833680e-08,-1.954030034918675297e-08,-2.047079084200516915e-08,-2.140128133482358533e-08,-2.233177182764200151e-08,-2.326226232046041769e-08,-2.419275281327883386e-08,-2.512324330609725004e-08,-2.605373379891566622e-08,-2.698422429173408240e-08,-2.791471478455249858e-08,-2.884520527737091475e-08,-2.977569577018933093e-08,-3.070618626300775042e-08,-3.163667675582616991e-08,-3.256716724864458939e-08,-3.349765774146300888e-08,-3.442814823428142837e-08,-3.535863872709984785e-08,-3.628912921991826734e-08,-3.721961971273668683e-08,-3.815011020555510631e-08,-3.908060069837352580e-08,-4.001109119119194529e-08,-4.094158168401036477e-08,-4.187207217682878426e-08,-4.280256266964720375e-08,-4.373305316246562323e-08,-4.466354365528404272e-08,-4.559403414810246221e-08,-4.652452464092088169e-08,-4.745501513373930118e-08,-4.838550562655772067e-08,-4.931599611937614015e-08,-5.024648661219455964e-08,-5.117697710501297913e-08,-5.210746759783139861e-08,-5.303795809064981810e-08,-5.396844858346823759e-08,-5.489893907628665708e-08,-5.582942956910507656e-08,-5.675992006192349605e-08,-5.769041055474191554e-08,-5.862090104756033502e-08 +0.000000000000000000e+00,-1.459470214143234811e-09,-2.918940428286469621e-09,-4.378410642429704846e-09,-5.837880856572940070e-09,-7.297351070716175294e-09,-8.756821284859409691e-09,-1.021629149900264409e-08,-1.167576171314587849e-08,-1.313523192728911288e-08,-1.459470214143234728e-08,-1.605417235557558168e-08,-1.751364256971881607e-08,-1.897311278386205047e-08,-2.043258299800528487e-08,-2.189205321214851926e-08,-2.335152342629175366e-08,-2.481099364043498806e-08,-2.627046385457822246e-08,-2.772993406872145685e-08,-2.918940428286469125e-08,-3.064887449700792896e-08,-3.210834471115116997e-08,-3.356781492529441098e-08,-3.502728513943765200e-08,-3.648675535358089301e-08,-3.794622556772413403e-08,-3.940569578186737504e-08,-4.086516599601061606e-08,-4.232463621015385707e-08,-4.378410642429709809e-08,-4.524357663844033910e-08,-4.670304685258358012e-08,-4.816251706672682113e-08,-4.962198728087006214e-08,-5.108145749501330316e-08,-5.254092770915654417e-08,-5.400039792329978519e-08,-5.545986813744302620e-08,-5.691933835158626722e-08,-5.837880856572950823e-08,-5.983827877987274925e-08,-6.129774899401599026e-08,-6.275721920815923127e-08,-6.421668942230247229e-08,-6.567615963644571330e-08,-6.713562985058895432e-08,-6.859510006473219533e-08,-7.005457027887543635e-08,-7.151404049301867736e-08,-7.297351070716191838e-08,-7.443298092130515939e-08,-7.589245113544840041e-08,-7.735192134959164142e-08,-7.881139156373488243e-08,-8.027086177787812345e-08,-8.173033199202136446e-08,-8.318980220616460548e-08,-8.464927242030784649e-08,-8.610874263445108751e-08,-8.756821284859432852e-08,-8.902768306273756954e-08,-9.048715327688081055e-08,-9.194662349102405156e-08 +0.000000000000000000e+00,-9.823746188728897920e-10,-1.964749237745779584e-09,-2.947123856618669583e-09,-3.929498475491559995e-09,-4.911873094364450408e-09,-5.894247713237340820e-09,-6.876622332110231233e-09,-7.858996950983121645e-09,-8.841371569856012058e-09,-9.823746188728902470e-09,-1.080612080760179288e-08,-1.178849542647468329e-08,-1.277087004534757371e-08,-1.375324466422046412e-08,-1.473561928309335453e-08,-1.571799390196624660e-08,-1.670036852083913867e-08,-1.768274313971203073e-08,-1.866511775858492280e-08,-1.964749237745781487e-08,-2.062986699633070693e-08,-2.161224161520359900e-08,-2.259461623407649107e-08,-2.357699085294938313e-08,-2.455936547182227520e-08,-2.554174009069516727e-08,-2.652411470956805933e-08,-2.750648932844095140e-08,-2.848886394731384347e-08,-2.947123856618673553e-08,-3.045361318505962760e-08,-3.143598780393251967e-08,-3.241836242280541173e-08,-3.340073704167830380e-08,-3.438311166055119587e-08,-3.536548627942408793e-08,-3.634786089829698000e-08,-3.733023551716987207e-08,-3.831261013604276414e-08,-3.929498475491565620e-08,-4.027735937378854827e-08,-4.125973399266144034e-08,-4.224210861153433240e-08,-4.322448323040722447e-08,-4.420685784928011654e-08,-4.518923246815300860e-08,-4.617160708702590067e-08,-4.715398170589879274e-08,-4.813635632477168480e-08,-4.911873094364457687e-08,-5.010110556251746894e-08,-5.108348018139036100e-08,-5.206585480026325307e-08,-5.304822941913614514e-08,-5.403060403800903720e-08,-5.501297865688192927e-08,-5.599535327575482134e-08,-5.697772789462771340e-08,-5.796010251350060547e-08,-5.894247713237349754e-08,-5.992485175124638960e-08,-6.090722637011928167e-08,-6.188960098899217374e-08 +0.000000000000000000e+00,7.437714863316487082e-10,1.487542972663297416e-09,2.231314458994946021e-09,2.975085945326594419e-09,3.718857431658242817e-09,4.462628917989891215e-09,5.206400404321539613e-09,5.950171890653188011e-09,6.693943376984836409e-09,7.437714863316484807e-09,8.181486349648133205e-09,8.925257835979780776e-09,9.669029322311428347e-09,1.041280080864307592e-08,1.115657229497472349e-08,1.190034378130637106e-08,1.264411526763801863e-08,1.338788675396966620e-08,1.413165824030131377e-08,1.487542972663296134e-08,1.561920121296460726e-08,1.636297269929625318e-08,1.710674418562789909e-08,1.785051567195954501e-08,1.859428715829119093e-08,1.933805864462283684e-08,2.008183013095448276e-08,2.082560161728612867e-08,2.156937310361777459e-08,2.231314458994942051e-08,2.305691607628106642e-08,2.380068756261271234e-08,2.454445904894435826e-08,2.528823053527600417e-08,2.603200202160765009e-08,2.677577350793929601e-08,2.751954499427094192e-08,2.826331648060258784e-08,2.900708796693423376e-08,2.975085945326587967e-08,3.049463093959752559e-08,3.123840242592917481e-08,3.198217391226082404e-08,3.272594539859247326e-08,3.346971688492412249e-08,3.421348837125577171e-08,3.495725985758742094e-08,3.570103134391907016e-08,3.644480283025071939e-08,3.718857431658236862e-08,3.793234580291401784e-08,3.867611728924566707e-08,3.941988877557731629e-08,4.016366026190896552e-08,4.090743174824061474e-08,4.165120323457226397e-08,4.239497472090391319e-08,4.313874620723556242e-08,4.388251769356721164e-08,4.462628917989886087e-08,4.537006066623051009e-08,4.611383215256215932e-08,4.685760363889380854e-08 +0.000000000000000000e+00,7.850300940831426036e-10,1.570060188166285207e-09,2.355090282249427914e-09,3.140120376332570828e-09,3.925150470415713742e-09,4.710180564498856656e-09,5.495210658581999569e-09,6.280240752665142483e-09,7.065270846748285397e-09,7.850300940831427484e-09,8.635331034914569570e-09,9.420361128997711657e-09,1.020539122308085374e-08,1.099042131716399583e-08,1.177545141124713792e-08,1.256048150533028000e-08,1.334551159941342209e-08,1.413054169349656418e-08,1.491557178757970626e-08,1.570060188166284835e-08,1.648563197574599044e-08,1.727066206982913252e-08,1.805569216391227461e-08,1.884072225799541670e-08,1.962575235207855878e-08,2.041078244616170087e-08,2.119581254024484296e-08,2.198084263432798504e-08,2.276587272841112713e-08,2.355090282249426922e-08,2.433593291657741130e-08,2.512096301066055339e-08,2.590599310474369548e-08,2.669102319882683756e-08,2.747605329290997965e-08,2.826108338699312174e-08,2.904611348107626382e-08,2.983114357515940591e-08,3.061617366924255130e-08,3.140120376332569670e-08,3.218623385740884209e-08,3.297126395149198749e-08,3.375629404557513289e-08,3.454132413965827828e-08,3.532635423374142368e-08,3.611138432782456907e-08,3.689641442190771447e-08,3.768144451599085986e-08,3.846647461007400526e-08,3.925150470415715065e-08,4.003653479824029605e-08,4.082156489232344144e-08,4.160659498640658684e-08,4.239162508048973223e-08,4.317665517457287763e-08,4.396168526865602302e-08,4.474671536273916842e-08,4.553174545682231382e-08,4.631677555090545921e-08,4.710180564498860461e-08,4.788683573907175000e-08,4.867186583315489540e-08,4.945689592723804079e-08 +0.000000000000000000e+00,8.133488158744372169e-10,1.626697631748874434e-09,2.440046447623311754e-09,3.253395263497749281e-09,4.066744079372187222e-09,4.880092895246625162e-09,5.693441711121063103e-09,6.506790526995501044e-09,7.320139342869938984e-09,8.133488158744377752e-09,8.946836974618816520e-09,9.760185790493255288e-09,1.057353460636769406e-08,1.138688342224213282e-08,1.220023223811657159e-08,1.301358105399101036e-08,1.382692986986544913e-08,1.464027868573988789e-08,1.545362750161432501e-08,1.626697631748876212e-08,1.708032513336319923e-08,1.789367394923763635e-08,1.870702276511207346e-08,1.952037158098651058e-08,2.033372039686094769e-08,2.114706921273538480e-08,2.196041802860982192e-08,2.277376684448425903e-08,2.358711566035869614e-08,2.440046447623313326e-08,2.521381329210757037e-08,2.602716210798200748e-08,2.684051092385644460e-08,2.765385973973088171e-08,2.846720855560531882e-08,2.928055737147975594e-08,3.009390618735419305e-08,3.090725500322863016e-08,3.172060381910306728e-08,3.253395263497750439e-08,3.334730145085194150e-08,3.416065026672637862e-08,3.497399908260081573e-08,3.578734789847525284e-08,3.660069671434968996e-08,3.741404553022412707e-08,3.822739434609856418e-08,3.904074316197300130e-08,3.985409197784743841e-08,4.066744079372187553e-08,4.148078960959631264e-08,4.229413842547074975e-08,4.310748724134518687e-08,4.392083605721962398e-08,4.473418487309406109e-08,4.554753368896849821e-08,4.636088250484293532e-08,4.717423132071737243e-08,4.798758013659180955e-08,4.880092895246624666e-08,4.961427776834068377e-08,5.042762658421512089e-08,5.124097540008955800e-08 +0.000000000000000000e+00,-7.437714865201738198e-10,-1.487542973040347640e-09,-2.231314459560521666e-09,-2.975085946080695693e-09,-3.718857432600869719e-09,-4.462628919121043332e-09,-5.206400405641216945e-09,-5.950171892161390558e-09,-6.693943378681564171e-09,-7.437714865201737784e-09,-8.181486351721911397e-09,-8.925257838242085010e-09,-9.669029324762258623e-09,-1.041280081128243224e-08,-1.115657229780260585e-08,-1.190034378432277946e-08,-1.264411527084295307e-08,-1.338788675736312669e-08,-1.413165824388330030e-08,-1.487542973040347391e-08,-1.561920121692364587e-08,-1.636297270344381949e-08,-1.710674418996399310e-08,-1.785051567648416671e-08,-1.859428716300434032e-08,-1.933805864952451394e-08,-2.008183013604468755e-08,-2.082560162256486116e-08,-2.156937310908503478e-08,-2.231314459560520839e-08,-2.305691608212538200e-08,-2.380068756864555561e-08,-2.454445905516572923e-08,-2.528823054168590284e-08,-2.603200202820607645e-08,-2.677577351472625007e-08,-2.751954500124642368e-08,-2.826331648776659729e-08,-2.900708797428677091e-08,-2.975085946080694452e-08,-3.049463094732711813e-08,-3.123840243384729174e-08,-3.198217392036746536e-08,-3.272594540688763897e-08,-3.346971689340781258e-08,-3.421348837992798620e-08,-3.495725986644815981e-08,-3.570103135296833342e-08,-3.644480283948850704e-08,-3.718857432600868065e-08,-3.793234581252885426e-08,-3.867611729904902787e-08,-3.941988878556920149e-08,-4.016366027208937510e-08,-4.090743175860954871e-08,-4.165120324512972233e-08,-4.239497473164989594e-08,-4.313874621817006955e-08,-4.388251770469024316e-08,-4.462628919121041678e-08,-4.537006067773059039e-08,-4.611383216425076400e-08,-4.685760365077093762e-08 +0.000000000000000000e+00,-7.850300942694443571e-10,-1.570060188538888714e-09,-2.355090282808333175e-09,-3.140120377077777842e-09,-3.925150471347222509e-09,-4.710180565616667176e-09,-5.495210659886111844e-09,-6.280240754155556511e-09,-7.065270848425001178e-09,-7.850300942694446673e-09,-8.635331036963892994e-09,-9.420361131233339316e-09,-1.020539122550278564e-08,-1.099042131977223196e-08,-1.177545141404167828e-08,-1.256048150831112460e-08,-1.334551160258057092e-08,-1.413054169685001725e-08,-1.491557179111946357e-08,-1.570060188538890989e-08,-1.648563197965835621e-08,-1.727066207392780253e-08,-1.805569216819724885e-08,-1.884072226246669518e-08,-1.962575235673614150e-08,-2.041078245100558782e-08,-2.119581254527503414e-08,-2.198084263954448046e-08,-2.276587273381392678e-08,-2.355090282808337310e-08,-2.433593292235281943e-08,-2.512096301662226575e-08,-2.590599311089171207e-08,-2.669102320516115839e-08,-2.747605329943060471e-08,-2.826108339370005103e-08,-2.904611348796949736e-08,-2.983114358223894699e-08,-3.061617367650839993e-08,-3.140120377077785286e-08,-3.218623386504730580e-08,-3.297126395931675874e-08,-3.375629405358621168e-08,-3.454132414785566462e-08,-3.532635424212511756e-08,-3.611138433639457050e-08,-3.689641443066402344e-08,-3.768144452493347638e-08,-3.846647461920292932e-08,-3.925150471347238226e-08,-4.003653480774183519e-08,-4.082156490201128813e-08,-4.160659499628074107e-08,-4.239162509055019401e-08,-4.317665518481964695e-08,-4.396168527908909989e-08,-4.474671537335855283e-08,-4.553174546762800577e-08,-4.631677556189745871e-08,-4.710180565616691165e-08,-4.788683575043636459e-08,-4.867186584470581752e-08,-4.945689593897527046e-08 +0.000000000000000000e+00,-8.133488160668048925e-10,-1.626697632133609785e-09,-2.440046448200414574e-09,-3.253395264267219157e-09,-4.066744080334023739e-09,-4.880092896400828321e-09,-5.693441712467632904e-09,-6.506790528534437486e-09,-7.320139344601242068e-09,-8.133488160668045824e-09,-8.946836976734848752e-09,-9.760185792801651679e-09,-1.057353460886845461e-08,-1.138688342493525754e-08,-1.220023224100206046e-08,-1.301358105706886339e-08,-1.382692987313566632e-08,-1.464027868920246925e-08,-1.545362750526927218e-08,-1.626697632133607510e-08,-1.708032513740287803e-08,-1.789367395346968096e-08,-1.870702276953648389e-08,-1.952037158560328682e-08,-2.033372040167008974e-08,-2.114706921773689267e-08,-2.196041803380369560e-08,-2.277376684987049853e-08,-2.358711566593730146e-08,-2.440046448200410438e-08,-2.521381329807090731e-08,-2.602716211413771024e-08,-2.684051093020451317e-08,-2.765385974627131610e-08,-2.846720856233811902e-08,-2.928055737840492195e-08,-3.009390619447172488e-08,-3.090725501053853112e-08,-3.172060382660533735e-08,-3.253395264267214359e-08,-3.334730145873894983e-08,-3.416065027480575606e-08,-3.497399909087256230e-08,-3.578734790693936854e-08,-3.660069672300617477e-08,-3.741404553907298101e-08,-3.822739435513978725e-08,-3.904074317120659348e-08,-3.985409198727339972e-08,-4.066744080334020596e-08,-4.148078961940701219e-08,-4.229413843547381843e-08,-4.310748725154062467e-08,-4.392083606760743090e-08,-4.473418488367423714e-08,-4.554753369974104338e-08,-4.636088251580784961e-08,-4.717423133187465585e-08,-4.798758014794146209e-08,-4.880092896400826832e-08,-4.961427778007507456e-08,-5.042762659614188080e-08,-5.124097541220868703e-08 +0.000000000000000000e+00,7.026176330146114442e-10,1.405235266029222888e-09,2.107852899043834229e-09,2.810470532058445363e-09,3.513088165073056497e-09,4.215705798087667631e-09,4.918323431102279178e-09,5.620941064116890726e-09,6.323558697131502274e-09,7.026176330146113821e-09,7.728793963160725369e-09,8.431411596175336916e-09,9.134029229189948464e-09,9.836646862204560011e-09,1.053926449521917156e-08,1.124188212823378311e-08,1.194449976124839465e-08,1.264711739426300620e-08,1.334973502727761775e-08,1.405235266029222930e-08,1.475497029330684084e-08,1.545758792632145405e-08,1.616020555933606559e-08,1.686282319235067714e-08,1.756544082536528869e-08,1.826805845837990024e-08,1.897067609139451178e-08,1.967329372440912333e-08,2.037591135742373488e-08,2.107852899043834643e-08,2.178114662345295797e-08,2.248376425646756952e-08,2.318638188948218107e-08,2.388899952249679262e-08,2.459161715551140416e-08,2.529423478852601571e-08,2.599685242154062726e-08,2.669947005455523881e-08,2.740208768756985035e-08,2.810470532058446190e-08,2.880732295359907345e-08,2.950994058661368500e-08,3.021255821962829654e-08,3.091517585264290809e-08,3.161779348565751964e-08,3.232041111867213119e-08,3.302302875168674273e-08,3.372564638470135428e-08,3.442826401771596583e-08,3.513088165073057738e-08,3.583349928374518892e-08,3.653611691675980047e-08,3.723873454977441202e-08,3.794135218278902357e-08,3.864396981580363512e-08,3.934658744881824666e-08,4.004920508183285821e-08,4.075182271484746976e-08,4.145444034786208131e-08,4.215705798087669285e-08,4.285967561389130440e-08,4.356229324690591595e-08,4.426491087992052750e-08 +0.000000000000000000e+00,7.222288545061695181e-10,1.444457709012339036e-09,2.166686563518508347e-09,2.888915418024677659e-09,3.611144272530846970e-09,4.333373127037016695e-09,5.055601981543186420e-09,5.777830836049356145e-09,6.500059690555525870e-09,7.222288545061695594e-09,7.944517399567865319e-09,8.666746254074035044e-09,9.388975108580204769e-09,1.011120396308637449e-08,1.083343281759254422e-08,1.155566167209871394e-08,1.227789052660488367e-08,1.300011938111105339e-08,1.372234823561722312e-08,1.444457709012339284e-08,1.516680594462956257e-08,1.588903479913573064e-08,1.661126365364189871e-08,1.733349250814806678e-08,1.805572136265423485e-08,1.877795021716040292e-08,1.950017907166657099e-08,2.022240792617273906e-08,2.094463678067890713e-08,2.166686563518507520e-08,2.238909448969124327e-08,2.311132334419741134e-08,2.383355219870357941e-08,2.455578105320974748e-08,2.527800990771591556e-08,2.600023876222208363e-08,2.672246761672825170e-08,2.744469647123441977e-08,2.816692532574058784e-08,2.888915418024675591e-08,2.961138303475292398e-08,3.033361188925909205e-08,3.105584074376525681e-08,3.177806959827142157e-08,3.250029845277758633e-08,3.322252730728375110e-08,3.394475616178991586e-08,3.466698501629608062e-08,3.538921387080224538e-08,3.611144272530841014e-08,3.683367157981457491e-08,3.755590043432073967e-08,3.827812928882690443e-08,3.900035814333306919e-08,3.972258699783923395e-08,4.044481585234539871e-08,4.116704470685156348e-08,4.188927356135772824e-08,4.261150241586389300e-08,4.333373127037005776e-08,4.405596012487622252e-08,4.477818897938238729e-08,4.550041783388855205e-08 +0.000000000000000000e+00,7.413416113239144430e-10,1.482683222647828886e-09,2.224024833971743432e-09,2.965366445295658185e-09,3.706708056619572939e-09,4.448049667943487692e-09,5.189391279267402859e-09,5.930732890591318025e-09,6.672074501915233192e-09,7.413416113239148359e-09,8.154757724563063526e-09,8.896099335886978692e-09,9.637440947210893859e-09,1.037878255853480903e-08,1.112012416985872419e-08,1.186146578118263936e-08,1.260280739250655453e-08,1.334414900383046969e-08,1.408549061515438486e-08,1.482683222647830003e-08,1.556817383780221685e-08,1.630951544912613367e-08,1.705085706045005049e-08,1.779219867177396731e-08,1.853354028309788413e-08,1.927488189442180095e-08,2.001622350574571777e-08,2.075756511706963460e-08,2.149890672839355142e-08,2.224024833971746824e-08,2.298158995104138506e-08,2.372293156236530188e-08,2.446427317368921870e-08,2.520561478501313552e-08,2.594695639633705234e-08,2.668829800766096916e-08,2.742963961898488599e-08,2.817098123030880281e-08,2.891232284163271963e-08,2.965366445295663645e-08,3.039500606428055327e-08,3.113634767560447340e-08,3.187768928692839353e-08,3.261903089825231366e-08,3.336037250957623379e-08,3.410171412090015392e-08,3.484305573222407405e-08,3.558439734354799418e-08,3.632573895487191431e-08,3.706708056619583444e-08,3.780842217751975457e-08,3.854976378884367470e-08,3.929110540016759483e-08,4.003244701149151496e-08,4.077378862281543509e-08,4.151513023413935522e-08,4.225647184546327535e-08,4.299781345678719548e-08,4.373915506811111561e-08,4.448049667943503574e-08,4.522183829075895587e-08,4.596317990208287600e-08,4.670452151340679613e-08 +0.000000000000000000e+00,-7.026176332042749630e-10,-1.405235266408549926e-09,-2.107852899612824889e-09,-2.810470532817099852e-09,-3.513088166021374815e-09,-4.215705799225649778e-09,-4.918323432429924741e-09,-5.620941065634199704e-09,-6.323558698838474667e-09,-7.026176332042749630e-09,-7.728793965247025420e-09,-8.431411598451301211e-09,-9.134029231655577001e-09,-9.836646864859852791e-09,-1.053926449806412858e-08,-1.124188213126840437e-08,-1.194449976447268016e-08,-1.264711739767695595e-08,-1.334973503088123174e-08,-1.405235266408550753e-08,-1.475497029728978332e-08,-1.545758793049405746e-08,-1.616020556369833159e-08,-1.686282319690260573e-08,-1.756544083010687987e-08,-1.826805846331115400e-08,-1.897067609651542814e-08,-1.967329372971970227e-08,-2.037591136292397641e-08,-2.107852899612825054e-08,-2.178114662933252468e-08,-2.248376426253679882e-08,-2.318638189574107295e-08,-2.388899952894534709e-08,-2.459161716214962122e-08,-2.529423479535389536e-08,-2.599685242855816950e-08,-2.669947006176244363e-08,-2.740208769496671777e-08,-2.810470532817099190e-08,-2.880732296137526604e-08,-2.950994059457954018e-08,-3.021255822778381431e-08,-3.091517586098808845e-08,-3.161779349419236258e-08,-3.232041112739663672e-08,-3.302302876060091085e-08,-3.372564639380518499e-08,-3.442826402700945913e-08,-3.513088166021373326e-08,-3.583349929341800740e-08,-3.653611692662228153e-08,-3.723873455982655567e-08,-3.794135219303082981e-08,-3.864396982623510394e-08,-3.934658745943937808e-08,-4.004920509264365221e-08,-4.075182272584792635e-08,-4.145444035905220048e-08,-4.215705799225647462e-08,-4.285967562546074876e-08,-4.356229325866502289e-08,-4.426491089186929703e-08 +0.000000000000000000e+00,-7.222288546957117516e-10,-1.444457709391423503e-09,-2.166686564087135462e-09,-2.888915418782847420e-09,-3.611144273478559378e-09,-4.333373128174270923e-09,-5.055601982869982468e-09,-5.777830837565694013e-09,-6.500059692261405558e-09,-7.222288546957117102e-09,-7.944517401652828647e-09,-8.666746256348540192e-09,-9.388975111044251737e-09,-1.011120396573996328e-08,-1.083343282043567483e-08,-1.155566167513138637e-08,-1.227789052982709792e-08,-1.300011938452280946e-08,-1.372234823921852101e-08,-1.444457709391423255e-08,-1.516680594860994575e-08,-1.588903480330566060e-08,-1.661126365800137546e-08,-1.733349251269709031e-08,-1.805572136739280516e-08,-1.877795022208852002e-08,-1.950017907678423487e-08,-2.022240793147994972e-08,-2.094463678617566458e-08,-2.166686564087137943e-08,-2.238909449556709428e-08,-2.311132335026280914e-08,-2.383355220495852399e-08,-2.455578105965423885e-08,-2.527800991434995370e-08,-2.600023876904566855e-08,-2.672246762374138341e-08,-2.744469647843709826e-08,-2.816692533313281311e-08,-2.888915418782852797e-08,-2.961138304252424282e-08,-3.033361189721995767e-08,-3.105584075191567253e-08,-3.177806960661138738e-08,-3.250029846130710223e-08,-3.322252731600281709e-08,-3.394475617069853194e-08,-3.466698502539424679e-08,-3.538921388008996165e-08,-3.611144273478567650e-08,-3.683367158948139136e-08,-3.755590044417710621e-08,-3.827812929887282106e-08,-3.900035815356853592e-08,-3.972258700826425077e-08,-4.044481586295996562e-08,-4.116704471765568048e-08,-4.188927357235139533e-08,-4.261150242704711018e-08,-4.333373128174282504e-08,-4.405596013643853989e-08,-4.477818899113425474e-08,-4.550041784582996960e-08 +0.000000000000000000e+00,-7.413416115207902530e-10,-1.482683223041580506e-09,-2.224024834562370656e-09,-2.965366446083160598e-09,-3.706708057603950541e-09,-4.448049669124740484e-09,-5.189391280645530427e-09,-5.930732892166320370e-09,-6.672074503687110312e-09,-7.413416115207900255e-09,-8.154757726728690198e-09,-8.896099338249479314e-09,-9.637440949770268429e-09,-1.037878256129105754e-08,-1.112012417281184666e-08,-1.186146578433263578e-08,-1.260280739585342489e-08,-1.334414900737421401e-08,-1.408549061889500312e-08,-1.482683223041579224e-08,-1.556817384193658135e-08,-1.630951545345737047e-08,-1.705085706497815959e-08,-1.779219867649894870e-08,-1.853354028801973782e-08,-1.927488189954052693e-08,-2.001622351106131605e-08,-2.075756512258210516e-08,-2.149890673410289428e-08,-2.224024834562368339e-08,-2.298158995714447251e-08,-2.372293156866526163e-08,-2.446427318018605074e-08,-2.520561479170683986e-08,-2.594695640322762897e-08,-2.668829801474841809e-08,-2.742963962626920720e-08,-2.817098123778999632e-08,-2.891232284931078544e-08,-2.965366446083157455e-08,-3.039500607235236036e-08,-3.113634768387314286e-08,-3.187768929539392535e-08,-3.261903090691470785e-08,-3.336037251843549035e-08,-3.410171412995627285e-08,-3.484305574147705535e-08,-3.558439735299783785e-08,-3.632573896451862034e-08,-3.706708057603940284e-08,-3.780842218756018534e-08,-3.854976379908096784e-08,-3.929110541060175034e-08,-4.003244702212253283e-08,-4.077378863364331533e-08,-4.151513024516409783e-08,-4.225647185668488033e-08,-4.299781346820566283e-08,-4.373915507972644533e-08,-4.448049669124722782e-08,-4.522183830276801032e-08,-4.596317991428879282e-08,-4.670452152580957532e-08 +0.000000000000000000e+00,6.841931530837779857e-10,1.368386306167555971e-09,2.052579459251333750e-09,2.736772612335111529e-09,3.420965765418889308e-09,4.105158918502667501e-09,4.789352071586445693e-09,5.473545224670223886e-09,6.157738377754002078e-09,6.841931530837780271e-09,7.526124683921558463e-09,8.210317837005336656e-09,8.894510990089114848e-09,9.578704143172893041e-09,1.026289729625667123e-08,1.094709044934044943e-08,1.163128360242422762e-08,1.231547675550800581e-08,1.299966990859178400e-08,1.368386306167556220e-08,1.436805621475934039e-08,1.505224936784312023e-08,1.573644252092690174e-08,1.642063567401068324e-08,1.710482882709446474e-08,1.778902198017824624e-08,1.847321513326202774e-08,1.915740828634580924e-08,1.984160143942959074e-08,2.052579459251337224e-08,2.120998774559715375e-08,2.189418089868093525e-08,2.257837405176471675e-08,2.326256720484849825e-08,2.394676035793227975e-08,2.463095351101606125e-08,2.531514666409984275e-08,2.599933981718362425e-08,2.668353297026740576e-08,2.736772612335118726e-08,2.805191927643496876e-08,2.873611242951875026e-08,2.942030558260253176e-08,3.010449873568631326e-08,3.078869188877009476e-08,3.147288504185387626e-08,3.215707819493765777e-08,3.284127134802143927e-08,3.352546450110522077e-08,3.420965765418900227e-08,3.489385080727278377e-08,3.557804396035656527e-08,3.626223711344034677e-08,3.694643026652412827e-08,3.763062341960790978e-08,3.831481657269169128e-08,3.899900972577547278e-08,3.968320287885925428e-08,4.036739603194303578e-08,4.105158918502681728e-08,4.173578233811059878e-08,4.241997549119438028e-08,4.310416864427816179e-08 +0.000000000000000000e+00,6.930687957262563834e-10,1.386137591452512767e-09,2.079206387178769150e-09,2.772275182905025533e-09,3.465343978631281917e-09,4.158412774357538300e-09,4.851481570083795097e-09,5.544550365810051894e-09,6.237619161536308691e-09,6.930687957262565488e-09,7.623756752988822285e-09,8.316825548715078255e-09,9.009894344441334225e-09,9.702963140167590194e-09,1.039603193589384616e-08,1.108910073162010213e-08,1.178216952734635810e-08,1.247523832307261407e-08,1.316830711879887004e-08,1.386137591452512601e-08,1.455444471025138198e-08,1.524751350597763795e-08,1.594058230170389392e-08,1.663365109743014989e-08,1.732671989315640586e-08,1.801978868888266183e-08,1.871285748460891780e-08,1.940592628033517377e-08,2.009899507606142974e-08,2.079206387178768571e-08,2.148513266751394168e-08,2.217820146324019765e-08,2.287127025896645362e-08,2.356433905469270959e-08,2.425740785041896556e-08,2.495047664614522153e-08,2.564354544187147750e-08,2.633661423759773347e-08,2.702968303332398944e-08,2.772275182905024541e-08,2.841582062477650138e-08,2.910888942050275735e-08,2.980195821622901332e-08,3.049502701195526929e-08,3.118809580768152526e-08,3.188116460340778123e-08,3.257423339913403720e-08,3.326730219486029317e-08,3.396037099058654914e-08,3.465343978631280511e-08,3.534650858203906108e-08,3.603957737776531705e-08,3.673264617349157302e-08,3.742571496921782899e-08,3.811878376494408496e-08,3.881185256067034093e-08,3.950492135639659689e-08,4.019799015212285286e-08,4.089105894784910883e-08,4.158412774357536480e-08,4.227719653930162077e-08,4.297026533502787674e-08,4.366333413075413271e-08 +0.000000000000000000e+00,7.046587293520642078e-10,1.409317458704128416e-09,2.113976188056192520e-09,2.818634917408256418e-09,3.523293646760320315e-09,4.227952376112384213e-09,4.932611105464448110e-09,5.637269834816512008e-09,6.341928564168575905e-09,7.046587293520639803e-09,7.751246022872703701e-09,8.455904752224766771e-09,9.160563481576829841e-09,9.865222210928892912e-09,1.056988094028095598e-08,1.127453966963301905e-08,1.197919839898508212e-08,1.268385712833714519e-08,1.338851585768920826e-08,1.409317458704127133e-08,1.479783331639333440e-08,1.550249204574539748e-08,1.620715077509745889e-08,1.691180950444952031e-08,1.761646823380158172e-08,1.832112696315364314e-08,1.902578569250570456e-08,1.973044442185776597e-08,2.043510315120982739e-08,2.113976188056188880e-08,2.184442060991395022e-08,2.254907933926601164e-08,2.325373806861807305e-08,2.395839679797013447e-08,2.466305552732219588e-08,2.536771425667425730e-08,2.607237298602631872e-08,2.677703171537838013e-08,2.748169044473044155e-08,2.818634917408250296e-08,2.889100790343456438e-08,2.959566663278662580e-08,3.030032536213868721e-08,3.100498409149074863e-08,3.170964282084281004e-08,3.241430155019487146e-08,3.311896027954693288e-08,3.382361900889899429e-08,3.452827773825105571e-08,3.523293646760311712e-08,3.593759519695517854e-08,3.664225392630723996e-08,3.734691265565930137e-08,3.805157138501136279e-08,3.875623011436342420e-08,3.946088884371548562e-08,4.016554757306754704e-08,4.087020630241960845e-08,4.157486503177166987e-08,4.227952376112373128e-08,4.298418249047579270e-08,4.368884121982785412e-08,4.439349994917991553e-08 +0.000000000000000000e+00,-6.841931532696575669e-10,-1.368386306539315134e-09,-2.052579459808972597e-09,-2.736772613078629854e-09,-3.420965766348287111e-09,-4.105158919617944367e-09,-4.789352072887601624e-09,-5.473545226157258881e-09,-6.157738379426916137e-09,-6.841931532696573394e-09,-7.526124685966231478e-09,-8.210317839235890389e-09,-8.894510992505549300e-09,-9.578704145775208211e-09,-1.026289729904486712e-08,-1.094709045231452603e-08,-1.163128360558418494e-08,-1.231547675885384385e-08,-1.299966991212350277e-08,-1.368386306539316168e-08,-1.436805621866282059e-08,-1.505224937193247950e-08,-1.573644252520213841e-08,-1.642063567847179732e-08,-1.710482883174145623e-08,-1.778902198501111514e-08,-1.847321513828077405e-08,-1.915740829155043297e-08,-1.984160144482009188e-08,-2.052579459808975079e-08,-2.120998775135940970e-08,-2.189418090462906861e-08,-2.257837405789872752e-08,-2.326256721116838643e-08,-2.394676036443804534e-08,-2.463095351770770425e-08,-2.531514667097736316e-08,-2.599933982424702208e-08,-2.668353297751668099e-08,-2.736772613078633990e-08,-2.805191928405599881e-08,-2.873611243732565772e-08,-2.942030559059531663e-08,-3.010449874386497885e-08,-3.078869189713464438e-08,-3.147288505040430991e-08,-3.215707820367397544e-08,-3.284127135694364096e-08,-3.352546451021330649e-08,-3.420965766348297202e-08,-3.489385081675263755e-08,-3.557804397002230308e-08,-3.626223712329196861e-08,-3.694643027656163414e-08,-3.763062342983129966e-08,-3.831481658310096519e-08,-3.899900973637063072e-08,-3.968320288964029625e-08,-4.036739604290996178e-08,-4.105158919617962731e-08,-4.173578234944929283e-08,-4.241997550271895836e-08,-4.310416865598862389e-08 +0.000000000000000000e+00,-6.930687959149376253e-10,-1.386137591829875251e-09,-2.079206387744812979e-09,-2.772275183659750915e-09,-3.465343979574688850e-09,-4.158412775489626786e-09,-4.851481571404564307e-09,-5.544550367319501829e-09,-6.237619163234439351e-09,-6.930687959149376873e-09,-7.623756755064314395e-09,-8.316825550979251917e-09,-9.009894346894189439e-09,-9.702963142809126960e-09,-1.039603193872406448e-08,-1.108910073463900200e-08,-1.178216953055393953e-08,-1.247523832646887705e-08,-1.316830712238381457e-08,-1.386137591829875209e-08,-1.455444471421368961e-08,-1.524751351012862879e-08,-1.594058230604356797e-08,-1.663365110195850714e-08,-1.732671989787344632e-08,-1.801978869378838549e-08,-1.871285748970332467e-08,-1.940592628561826385e-08,-2.009899508153320302e-08,-2.079206387744814220e-08,-2.148513267336308138e-08,-2.217820146927802055e-08,-2.287127026519295973e-08,-2.356433906110789890e-08,-2.425740785702283808e-08,-2.495047665293777726e-08,-2.564354544885271643e-08,-2.633661424476765561e-08,-2.702968304068259479e-08,-2.772275183659753396e-08,-2.841582063251247314e-08,-2.910888942842741231e-08,-2.980195822434235149e-08,-3.049502702025729067e-08,-3.118809581617222984e-08,-3.188116461208716902e-08,-3.257423340800210820e-08,-3.326730220391704737e-08,-3.396037099983198655e-08,-3.465343979574692572e-08,-3.534650859166186490e-08,-3.603957738757680408e-08,-3.673264618349174325e-08,-3.742571497940668243e-08,-3.811878377532162161e-08,-3.881185257123656078e-08,-3.950492136715149996e-08,-4.019799016306643913e-08,-4.089105895898137831e-08,-4.158412775489631749e-08,-4.227719655081125666e-08,-4.297026534672619584e-08,-4.366333414264113501e-08 +0.000000000000000000e+00,-7.046587295500174206e-10,-1.409317459100034841e-09,-2.113976188650052365e-09,-2.818634918200070096e-09,-3.523293647750087827e-09,-4.227952377300105557e-09,-4.932611106850122874e-09,-5.637269836400140192e-09,-6.341928565950157509e-09,-7.046587295500174826e-09,-7.751246025050192143e-09,-8.455904754600209460e-09,-9.160563484150226777e-09,-9.865222213700244095e-09,-1.056988094325026141e-08,-1.127453967280027873e-08,-1.197919840235029605e-08,-1.268385713190031336e-08,-1.338851586145033068e-08,-1.409317459100034800e-08,-1.479783332055036531e-08,-1.550249205010038429e-08,-1.620715077965040326e-08,-1.691180950920042223e-08,-1.761646823875044120e-08,-1.832112696830046017e-08,-1.902578569785047914e-08,-1.973044442740049812e-08,-2.043510315695051709e-08,-2.113976188650053606e-08,-2.184442061605055503e-08,-2.254907934560057400e-08,-2.325373807515059297e-08,-2.395839680470061194e-08,-2.466305553425063092e-08,-2.536771426380064989e-08,-2.607237299335066886e-08,-2.677703172290068783e-08,-2.748169045245070680e-08,-2.818634918200072577e-08,-2.889100791155074474e-08,-2.959566664110076372e-08,-3.030032537065077938e-08,-3.100498410020079504e-08,-3.170964282975081070e-08,-3.241430155930082637e-08,-3.311896028885084203e-08,-3.382361901840085769e-08,-3.452827774795087336e-08,-3.523293647750088902e-08,-3.593759520705090468e-08,-3.664225393660092034e-08,-3.734691266615093601e-08,-3.805157139570095167e-08,-3.875623012525096733e-08,-3.946088885480098300e-08,-4.016554758435099866e-08,-4.087020631390101432e-08,-4.157486504345102998e-08,-4.227952377300104565e-08,-4.298418250255106131e-08,-4.368884123210107697e-08,-4.439349996165109264e-08 +0.000000000000000000e+00,6.788807437276320705e-10,1.357761487455264141e-09,2.036642231182896315e-09,2.715522974910528696e-09,3.394403718638161076e-09,4.073284462365793457e-09,4.752165206093425838e-09,5.431045949821058218e-09,6.109926693548690599e-09,6.788807437276322980e-09,7.467688181003955360e-09,8.146568924731588568e-09,8.825449668459221776e-09,9.504330412186854984e-09,1.018321115591448819e-08,1.086209189964212140e-08,1.154097264336975461e-08,1.221985338709738782e-08,1.289873413082502102e-08,1.357761487455265423e-08,1.425649561828028744e-08,1.493537636200792065e-08,1.561425710573555551e-08,1.629313784946319037e-08,1.697201859319082523e-08,1.765089933691846010e-08,1.832978008064609496e-08,1.900866082437372982e-08,1.968754156810136468e-08,2.036642231182899954e-08,2.104530305555663441e-08,2.172418379928426927e-08,2.240306454301190413e-08,2.308194528673953899e-08,2.376082603046717386e-08,2.443970677419480872e-08,2.511858751792244358e-08,2.579746826165007844e-08,2.647634900537771330e-08,2.715522974910534817e-08,2.783411049283298303e-08,2.851299123656061789e-08,2.919187198028825275e-08,2.987075272401588762e-08,3.054963346774352248e-08,3.122851421147115734e-08,3.190739495519879220e-08,3.258627569892642707e-08,3.326515644265406193e-08,3.394403718638169679e-08,3.462291793010933165e-08,3.530179867383696651e-08,3.598067941756460138e-08,3.665956016129223624e-08,3.733844090501987110e-08,3.801732164874750596e-08,3.869620239247514083e-08,3.937508313620277569e-08,4.005396387993041055e-08,4.073284462365804541e-08,4.141172536738568027e-08,4.209060611111331514e-08,4.276948685484095000e-08 +0.000000000000000000e+00,6.804624484300677566e-10,1.360924896860135513e-09,2.041387345290203270e-09,2.721849793720271026e-09,3.402312242150338783e-09,4.082774690580406540e-09,4.763237139010474296e-09,5.443699587440542053e-09,6.124162035870609810e-09,6.804624484300677566e-09,7.485086932730746150e-09,8.165549381160814734e-09,8.846011829590883318e-09,9.526474278020951901e-09,1.020693672645102049e-08,1.088739917488108907e-08,1.156786162331115765e-08,1.224832407174122624e-08,1.292878652017129482e-08,1.360924896860136340e-08,1.428971141703143199e-08,1.497017386546149892e-08,1.565063631389156585e-08,1.633109876232163278e-08,1.701156121075169971e-08,1.769202365918176664e-08,1.837248610761183356e-08,1.905294855604190049e-08,1.973341100447196742e-08,2.041387345290203435e-08,2.109433590133210128e-08,2.177479834976216821e-08,2.245526079819223514e-08,2.313572324662230207e-08,2.381618569505236900e-08,2.449664814348243593e-08,2.517711059191250286e-08,2.585757304034256979e-08,2.653803548877263672e-08,2.721849793720270365e-08,2.789896038563277058e-08,2.857942283406283751e-08,2.925988528249290444e-08,2.994034773092297137e-08,3.062081017935303829e-08,3.130127262778310522e-08,3.198173507621317215e-08,3.266219752464323908e-08,3.334265997307330601e-08,3.402312242150337294e-08,3.470358486993343987e-08,3.538404731836350680e-08,3.606450976679357373e-08,3.674497221522364066e-08,3.742543466365370759e-08,3.810589711208377452e-08,3.878635956051384145e-08,3.946682200894390838e-08,4.014728445737397531e-08,4.082774690580404224e-08,4.150820935423410917e-08,4.218867180266417610e-08,4.286913425109424302e-08 +0.000000000000000000e+00,6.858585320056652595e-10,1.371717064011330519e-09,2.057575596016995985e-09,2.743434128022661452e-09,3.429292660028326918e-09,4.115151192033991971e-09,4.801009724039657023e-09,5.486868256045322076e-09,6.172726788050987129e-09,6.858585320056652182e-09,7.544443852062318062e-09,8.230302384067983941e-09,8.916160916073649821e-09,9.602019448079315701e-09,1.028787798008498158e-08,1.097373651209064746e-08,1.165959504409631334e-08,1.234545357610197922e-08,1.303131210810764510e-08,1.371717064011331098e-08,1.440302917211897686e-08,1.508888770412464274e-08,1.577474623613030862e-08,1.646060476813597450e-08,1.714646330014164038e-08,1.783232183214730626e-08,1.851818036415297214e-08,1.920403889615863802e-08,1.988989742816430390e-08,2.057575596016996978e-08,2.126161449217563566e-08,2.194747302418130154e-08,2.263333155618696742e-08,2.331919008819263330e-08,2.400504862019829918e-08,2.469090715220396506e-08,2.537676568420963094e-08,2.606262421621529682e-08,2.674848274822096270e-08,2.743434128022662858e-08,2.812019981223229446e-08,2.880605834423796034e-08,2.949191687624362622e-08,3.017777540824929210e-08,3.086363394025495467e-08,3.154949247226061724e-08,3.223535100426627981e-08,3.292120953627194238e-08,3.360706806827760495e-08,3.429292660028326753e-08,3.497878513228893010e-08,3.566464366429459267e-08,3.635050219630025524e-08,3.703636072830591781e-08,3.772221926031158038e-08,3.840807779231724295e-08,3.909393632432290552e-08,3.977979485632856810e-08,4.046565338833423067e-08,4.115151192033989324e-08,4.183737045234555581e-08,4.252322898435121838e-08,4.320908751635688095e-08 +0.000000000000000000e+00,-6.788807439036015109e-10,-1.357761487807203022e-09,-2.036642231710804636e-09,-2.715522975614406457e-09,-3.394403719518008278e-09,-4.073284463421610100e-09,-4.752165207325211921e-09,-5.431045951228813742e-09,-6.109926695132415563e-09,-6.788807439036017384e-09,-7.467688182939619205e-09,-8.146568926843221853e-09,-8.825449670746824502e-09,-9.504330414650427150e-09,-1.018321115855402980e-08,-1.086209190245763245e-08,-1.154097264636123509e-08,-1.221985339026483774e-08,-1.289873413416844039e-08,-1.357761487807204304e-08,-1.425649562197564569e-08,-1.493537636587924834e-08,-1.561425710978285098e-08,-1.629313785368645363e-08,-1.697201859759005628e-08,-1.765089934149365893e-08,-1.832978008539726158e-08,-1.900866082930086423e-08,-1.968754157320446687e-08,-2.036642231710806952e-08,-2.104530306101167217e-08,-2.172418380491527482e-08,-2.240306454881887747e-08,-2.308194529272248012e-08,-2.376082603662608276e-08,-2.443970678052968541e-08,-2.511858752443328806e-08,-2.579746826833689071e-08,-2.647634901224049336e-08,-2.715522975614409601e-08,-2.783411050004769865e-08,-2.851299124395130130e-08,-2.919187198785490395e-08,-2.987075273175850329e-08,-3.054963347566210263e-08,-3.122851421956570197e-08,-3.190739496346930131e-08,-3.258627570737290065e-08,-3.326515645127649999e-08,-3.394403719518009933e-08,-3.462291793908369867e-08,-3.530179868298729801e-08,-3.598067942689089735e-08,-3.665956017079449669e-08,-3.733844091469809603e-08,-3.801732165860169537e-08,-3.869620240250529471e-08,-3.937508314640889404e-08,-4.005396389031249338e-08,-4.073284463421609272e-08,-4.141172537811969206e-08,-4.209060612202329140e-08,-4.276948686592689074e-08 +0.000000000000000000e+00,-6.804624486118758514e-10,-1.360924897223751703e-09,-2.041387345835627554e-09,-2.721849794447503406e-09,-3.402312243059379257e-09,-4.082774691671255108e-09,-4.763237140283130546e-09,-5.443699588895005984e-09,-6.124162037506881422e-09,-6.804624486118756860e-09,-7.485086934730632298e-09,-8.165549383342508563e-09,-8.846011831954384828e-09,-9.526474280566261093e-09,-1.020693672917813736e-08,-1.088739917779001362e-08,-1.156786162640188989e-08,-1.224832407501376615e-08,-1.292878652362564242e-08,-1.360924897223751868e-08,-1.428971142084939495e-08,-1.497017386946127121e-08,-1.565063631807314913e-08,-1.633109876668502705e-08,-1.701156121529690497e-08,-1.769202366390878289e-08,-1.837248611252066081e-08,-1.905294856113253873e-08,-1.973341100974441665e-08,-2.041387345835629457e-08,-2.109433590696817249e-08,-2.177479835558005041e-08,-2.245526080419192833e-08,-2.313572325280380624e-08,-2.381618570141568416e-08,-2.449664815002756208e-08,-2.517711059863944000e-08,-2.585757304725131792e-08,-2.653803549586319584e-08,-2.721849794447507376e-08,-2.789896039308695168e-08,-2.857942284169882960e-08,-2.925988529031070752e-08,-2.994034773892258875e-08,-3.062081018753446998e-08,-3.130127263614635120e-08,-3.198173508475823243e-08,-3.266219753337011366e-08,-3.334265998198199489e-08,-3.402312243059387612e-08,-3.470358487920575734e-08,-3.538404732781763857e-08,-3.606450977642951980e-08,-3.674497222504140103e-08,-3.742543467365328226e-08,-3.810589712226516348e-08,-3.878635957087704471e-08,-3.946682201948892594e-08,-4.014728446810080717e-08,-4.082774691671268840e-08,-4.150820936532456962e-08,-4.218867181393645085e-08,-4.286913426254833208e-08 +0.000000000000000000e+00,-6.858585321999749485e-10,-1.371717064399949897e-09,-2.057575596599925052e-09,-2.743434128799900208e-09,-3.429292660999875363e-09,-4.115151193199850105e-09,-4.801009725399824846e-09,-5.486868257599799588e-09,-6.172726789799774330e-09,-6.858585321999749071e-09,-7.544443854199722986e-09,-8.230302386399696900e-09,-8.916160918599670815e-09,-9.602019450799644729e-09,-1.028787798299961864e-08,-1.097373651519959256e-08,-1.165959504739956647e-08,-1.234545357959954039e-08,-1.303131211179951430e-08,-1.371717064399948822e-08,-1.440302917619946213e-08,-1.508888770839943605e-08,-1.577474624059940996e-08,-1.646060477279938387e-08,-1.714646330499935779e-08,-1.783232183719933170e-08,-1.851818036939930562e-08,-1.920403890159927953e-08,-1.988989743379925345e-08,-2.057575596599922736e-08,-2.126161449819920128e-08,-2.194747303039917519e-08,-2.263333156259914911e-08,-2.331919009479912302e-08,-2.400504862699909693e-08,-2.469090715919907085e-08,-2.537676569139904476e-08,-2.606262422359901868e-08,-2.674848275579899259e-08,-2.743434128799896651e-08,-2.812019982019894042e-08,-2.880605835239891434e-08,-2.949191688459888825e-08,-3.017777541679886547e-08,-3.086363394899884270e-08,-3.154949248119881992e-08,-3.223535101339879714e-08,-3.292120954559877437e-08,-3.360706807779875159e-08,-3.429292660999872881e-08,-3.497878514219870604e-08,-3.566464367439868326e-08,-3.635050220659866048e-08,-3.703636073879863771e-08,-3.772221927099861493e-08,-3.840807780319859215e-08,-3.909393633539856938e-08,-3.977979486759854660e-08,-4.046565339979852382e-08,-4.115151193199850105e-08,-4.183737046419847827e-08,-4.252322899639845549e-08,-4.320908752859843272e-08 +0.000000000000000000e+00,6.833702167184671177e-10,1.366740433436934235e-09,2.050110650155401456e-09,2.733480866873868884e-09,3.416851083592336312e-09,4.100221300310803740e-09,4.783591517029271168e-09,5.466961733747738596e-09,6.150331950466206024e-09,6.833702167184673452e-09,7.517072383903141707e-09,8.200442600621609135e-09,8.883812817340076562e-09,9.567183034058543990e-09,1.025055325077701142e-08,1.093392346749547885e-08,1.161729368421394627e-08,1.230066390093241370e-08,1.298403411765088113e-08,1.366740433436934856e-08,1.435077455108781599e-08,1.503414476780628341e-08,1.571751498452475084e-08,1.640088520124321827e-08,1.708425541796168570e-08,1.776762563468015312e-08,1.845099585139862055e-08,1.913436606811708798e-08,1.981773628483555541e-08,2.050110650155402284e-08,2.118447671827249026e-08,2.186784693499095769e-08,2.255121715170942512e-08,2.323458736842789255e-08,2.391795758514635998e-08,2.460132780186482740e-08,2.528469801858329483e-08,2.596806823530176226e-08,2.665143845202022969e-08,2.733480866873869712e-08,2.801817888545716454e-08,2.870154910217563197e-08,2.938491931889409940e-08,3.006828953561256683e-08,3.075165975233103425e-08,3.143502996904950168e-08,3.211840018576796911e-08,3.280177040248643654e-08,3.348514061920490397e-08,3.416851083592337139e-08,3.485188105264183882e-08,3.553525126936030625e-08,3.621862148607877368e-08,3.690199170279724111e-08,3.758536191951570853e-08,3.826873213623417596e-08,3.895210235295264339e-08,3.963547256967111082e-08,4.031884278638957825e-08,4.100221300310804567e-08,4.168558321982651310e-08,4.236895343654498053e-08,4.305232365326344796e-08 +0.000000000000000000e+00,6.795435244271629494e-10,1.359087048854325899e-09,2.038630573281488641e-09,2.718174097708651384e-09,3.397717622135814126e-09,4.077261146562977283e-09,4.756804670990140439e-09,5.436348195417303595e-09,6.115891719844466751e-09,6.795435244271629907e-09,7.474978768698793063e-09,8.154522293125956220e-09,8.834065817553119376e-09,9.513609341980282532e-09,1.019315286640744569e-08,1.087269639083460884e-08,1.155223991526177200e-08,1.223178343968893516e-08,1.291132696411609831e-08,1.359087048854326147e-08,1.427041401297042462e-08,1.494995753739758613e-08,1.562950106182474763e-08,1.630904458625190913e-08,1.698858811067907063e-08,1.766813163510623213e-08,1.834767515953339364e-08,1.902721868396055514e-08,1.970676220838771664e-08,2.038630573281487814e-08,2.106584925724203964e-08,2.174539278166920114e-08,2.242493630609636265e-08,2.310447983052352415e-08,2.378402335495068565e-08,2.446356687937784715e-08,2.514311040380500865e-08,2.582265392823217016e-08,2.650219745265933166e-08,2.718174097708649316e-08,2.786128450151365466e-08,2.854082802594081616e-08,2.922037155036797766e-08,2.989991507479513917e-08,3.057945859922230067e-08,3.125900212364946217e-08,3.193854564807662367e-08,3.261808917250378517e-08,3.329763269693094668e-08,3.397717622135810818e-08,3.465671974578526968e-08,3.533626327021243118e-08,3.601580679463959268e-08,3.669535031906675418e-08,3.737489384349391569e-08,3.805443736792107719e-08,3.873398089234823869e-08,3.941352441677540019e-08,4.009306794120256169e-08,4.077261146562972320e-08,4.145215499005688470e-08,4.213169851448404620e-08,4.281124203891120770e-08 +0.000000000000000000e+00,6.800495170301318559e-10,1.360099034060263712e-09,2.040148551090395464e-09,2.720198068120527010e-09,3.400247585150658556e-09,4.080297102180790102e-09,4.760346619210921234e-09,5.440396136241052366e-09,6.120445653271183498e-09,6.800495170301314630e-09,7.480544687331445762e-09,8.160594204361576894e-09,8.840643721391708026e-09,9.520693238421839159e-09,1.020074275545197029e-08,1.088079227248210142e-08,1.156084178951223255e-08,1.224089130654236369e-08,1.292094082357249482e-08,1.360099034060262595e-08,1.428103985763275708e-08,1.496108937466288822e-08,1.564113889169301935e-08,1.632118840872315048e-08,1.700123792575328161e-08,1.768128744278341274e-08,1.836133695981354388e-08,1.904138647684367501e-08,1.972143599387380614e-08,2.040148551090393727e-08,2.108153502793406840e-08,2.176158454496419954e-08,2.244163406199433067e-08,2.312168357902446180e-08,2.380173309605459293e-08,2.448178261308472407e-08,2.516183213011485520e-08,2.584188164714498633e-08,2.652193116417511746e-08,2.720198068120524859e-08,2.788203019823537973e-08,2.856207971526551086e-08,2.924212923229564199e-08,2.992217874932576981e-08,3.060222826635589433e-08,3.128227778338601884e-08,3.196232730041614336e-08,3.264237681744626787e-08,3.332242633447639239e-08,3.400247585150651690e-08,3.468252536853664142e-08,3.536257488556676593e-08,3.604262440259689045e-08,3.672267391962701496e-08,3.740272343665713948e-08,3.808277295368726399e-08,3.876282247071738850e-08,3.944287198774751302e-08,4.012292150477763753e-08,4.080297102180776205e-08,4.148302053883788656e-08,4.216307005586801108e-08,4.284311957289813559e-08 +0.000000000000000000e+00,-6.833702168789275420e-10,-1.366740433757855084e-09,-2.050110650636782523e-09,-2.733480867515709754e-09,-3.416851084394636986e-09,-4.100221301273564218e-09,-4.783591518152491450e-09,-5.466961735031418682e-09,-6.150331951910345914e-09,-6.833702168789273145e-09,-7.517072385668199550e-09,-8.200442602547126782e-09,-8.883812819426054014e-09,-9.567183036304981246e-09,-1.025055325318390848e-08,-1.093392347006283571e-08,-1.161729368694176294e-08,-1.230066390382069017e-08,-1.298403412069961740e-08,-1.366740433757854464e-08,-1.435077455445747187e-08,-1.503414477133639910e-08,-1.571751498821532633e-08,-1.640088520509425356e-08,-1.708425542197318080e-08,-1.776762563885210803e-08,-1.845099585573103526e-08,-1.913436607260996249e-08,-1.981773628948888972e-08,-2.050110650636781695e-08,-2.118447672324674419e-08,-2.186784694012567142e-08,-2.255121715700459865e-08,-2.323458737388352588e-08,-2.391795759076245311e-08,-2.460132780764138035e-08,-2.528469802452030758e-08,-2.596806824139923481e-08,-2.665143845827816204e-08,-2.733480867515708927e-08,-2.801817889203601651e-08,-2.870154910891494374e-08,-2.938491932579387097e-08,-3.006828954267279820e-08,-3.075165975955172543e-08,-3.143502997643065266e-08,-3.211840019330957990e-08,-3.280177041018850713e-08,-3.348514062706743436e-08,-3.416851084394636159e-08,-3.485188106082528882e-08,-3.553525127770421606e-08,-3.621862149458314329e-08,-3.690199171146207052e-08,-3.758536192834099775e-08,-3.826873214521992498e-08,-3.895210236209885221e-08,-3.963547257897777945e-08,-4.031884279585670668e-08,-4.100221301273563391e-08,-4.168558322961456114e-08,-4.236895344649348837e-08,-4.305232366337241561e-08 +0.000000000000000000e+00,-6.795435245959227870e-10,-1.359087049191845574e-09,-2.038630573787768258e-09,-2.718174098383690734e-09,-3.397717622979613211e-09,-4.077261147575535688e-09,-4.756804672171458578e-09,-5.436348196767381469e-09,-6.115891721363304359e-09,-6.795435245959227249e-09,-7.474978770555150140e-09,-8.154522295151073030e-09,-8.834065819746995920e-09,-9.513609344342918811e-09,-1.019315286893884170e-08,-1.087269639353476459e-08,-1.155223991813068748e-08,-1.223178344272661037e-08,-1.291132696732253326e-08,-1.359087049191845615e-08,-1.427041401651437904e-08,-1.494995754111030359e-08,-1.562950106570622979e-08,-1.630904459030215599e-08,-1.698858811489808219e-08,-1.766813163949400838e-08,-1.834767516408993458e-08,-1.902721868868586078e-08,-1.970676221328178698e-08,-2.038630573787771318e-08,-2.106584926247363938e-08,-2.174539278706956558e-08,-2.242493631166549178e-08,-2.310447983626141798e-08,-2.378402336085734418e-08,-2.446356688545327038e-08,-2.514311041004919657e-08,-2.582265393464512277e-08,-2.650219745924104897e-08,-2.718174098383697517e-08,-2.786128450843290137e-08,-2.854082803302882757e-08,-2.922037155762475377e-08,-2.989991508222067997e-08,-3.057945860681660617e-08,-3.125900213141253237e-08,-3.193854565600845857e-08,-3.261808918060438476e-08,-3.329763270520031096e-08,-3.397717622979623716e-08,-3.465671975439216336e-08,-3.533626327898808956e-08,-3.601580680358401576e-08,-3.669535032817994196e-08,-3.737489385277586816e-08,-3.805443737737179436e-08,-3.873398090196772056e-08,-3.941352442656364676e-08,-4.009306795115957295e-08,-4.077261147575549915e-08,-4.145215500035142535e-08,-4.213169852494735155e-08,-4.281124204954327775e-08 +0.000000000000000000e+00,-6.800495172154292053e-10,-1.360099034430858411e-09,-2.040148551646287719e-09,-2.720198068861717235e-09,-3.400247586077146750e-09,-4.080297103292576266e-09,-4.760346620508005781e-09,-5.440396137723435297e-09,-6.120445654938864812e-09,-6.800495172154294328e-09,-7.480544689369724671e-09,-8.160594206585154186e-09,-8.840643723800583702e-09,-9.520693241016013217e-09,-1.020074275823144273e-08,-1.088079227544687225e-08,-1.156084179266230176e-08,-1.224089130987773128e-08,-1.292094082709316079e-08,-1.360099034430859031e-08,-1.428103986152401983e-08,-1.496108937873944934e-08,-1.564113889595487886e-08,-1.632118841317030837e-08,-1.700123793038573789e-08,-1.768128744760116740e-08,-1.836133696481659692e-08,-1.904138648203202643e-08,-1.972143599924745595e-08,-2.040148551646288547e-08,-2.108153503367831498e-08,-2.176158455089374450e-08,-2.244163406810917401e-08,-2.312168358532460353e-08,-2.380173310254003304e-08,-2.448178261975546256e-08,-2.516183213697089207e-08,-2.584188165418632159e-08,-2.652193117140175110e-08,-2.720198068861718062e-08,-2.788203020583261014e-08,-2.856207972304803965e-08,-2.924212924026346917e-08,-2.992217875747889868e-08,-3.060222827469432489e-08,-3.128227779190975110e-08,-3.196232730912517730e-08,-3.264237682634060351e-08,-3.332242634355602972e-08,-3.400247586077145592e-08,-3.468252537798688213e-08,-3.536257489520230834e-08,-3.604262441241773454e-08,-3.672267392963316075e-08,-3.740272344684858696e-08,-3.808277296406401316e-08,-3.876282248127943937e-08,-3.944287199849486558e-08,-4.012292151571029178e-08,-4.080297103292571799e-08,-4.148302055014114420e-08,-4.216307006735657040e-08,-4.284311958457199661e-08 +0.000000000000000000e+00,6.949577302911412787e-10,1.389915460582282557e-09,2.084873190873423733e-09,2.779830921164564701e-09,3.474788651455705670e-09,4.169746381746846638e-09,4.864704112037987607e-09,5.559661842329128575e-09,6.254619572620269544e-09,6.949577302911410512e-09,7.644535033202550653e-09,8.339492763493691622e-09,9.034450493784832590e-09,9.729408224075973559e-09,1.042436595436711453e-08,1.111932368465825550e-08,1.181428141494939646e-08,1.250923914524053743e-08,1.320419687553167840e-08,1.389915460582281937e-08,1.459411233611396034e-08,1.528907006640510131e-08,1.598402779669624228e-08,1.667898552698738324e-08,1.737394325727852421e-08,1.806890098756966518e-08,1.876385871786080615e-08,1.945881644815194712e-08,2.015377417844308809e-08,2.084873190873422905e-08,2.154368963902537002e-08,2.223864736931651099e-08,2.293360509960765196e-08,2.362856282989879293e-08,2.432352056018993390e-08,2.501847829048107487e-08,2.571343602077221583e-08,2.640839375106335680e-08,2.710335148135449777e-08,2.779830921164563874e-08,2.849326694193677971e-08,2.918822467222792068e-08,2.988318240251905834e-08,3.057814013281019600e-08,3.127309786310133366e-08,3.196805559339247132e-08,3.266301332368360898e-08,3.335797105397474664e-08,3.405292878426588429e-08,3.474788651455702195e-08,3.544284424484815961e-08,3.613780197513929727e-08,3.683275970543043493e-08,3.752771743572157259e-08,3.822267516601271025e-08,3.891763289630384791e-08,3.961259062659498557e-08,4.030754835688612323e-08,4.100250608717726089e-08,4.169746381746839855e-08,4.239242154775953621e-08,4.308737927805067387e-08,4.378233700834181153e-08 +0.000000000000000000e+00,6.880021271205903664e-10,1.376004254241180733e-09,2.064006381361771099e-09,2.752008508482361465e-09,3.440010635602951832e-09,4.128012762723542198e-09,4.816014889844132564e-09,5.504017016964722931e-09,6.192019144085313297e-09,6.880021271205903664e-09,7.568023398326494030e-09,8.256025525447084396e-09,8.944027652567674763e-09,9.632029779688265129e-09,1.032003190680885550e-08,1.100803403392944586e-08,1.169603616105003623e-08,1.238403828817062659e-08,1.307204041529121696e-08,1.376004254241180733e-08,1.444804466953239769e-08,1.513604679665298806e-08,1.582404892377357843e-08,1.651205105089416879e-08,1.720005317801475916e-08,1.788805530513534953e-08,1.857605743225593989e-08,1.926405955937653026e-08,1.995206168649712062e-08,2.064006381361771099e-08,2.132806594073830136e-08,2.201606806785889172e-08,2.270407019497948209e-08,2.339207232210007246e-08,2.408007444922066282e-08,2.476807657634125319e-08,2.545607870346184356e-08,2.614408083058243392e-08,2.683208295770302429e-08,2.752008508482361465e-08,2.820808721194420502e-08,2.889608933906479539e-08,2.958409146618538575e-08,3.027209359330597612e-08,3.096009572042656979e-08,3.164809784754716347e-08,3.233609997466775714e-08,3.302410210178835082e-08,3.371210422890894450e-08,3.440010635602953817e-08,3.508810848315013185e-08,3.577611061027072552e-08,3.646411273739131920e-08,3.715211486451191287e-08,3.784011699163250655e-08,3.852811911875310022e-08,3.921612124587369390e-08,3.990412337299428757e-08,4.059212550011488125e-08,4.128012762723547492e-08,4.196812975435606860e-08,4.265613188147666227e-08,4.334413400859725595e-08 +0.000000000000000000e+00,6.847263177155301358e-10,1.369452635431060272e-09,2.054178953146590614e-09,2.738905270862120957e-09,3.423631588577651299e-09,4.108357906293181228e-09,4.793084224008711157e-09,5.477810541724241086e-09,6.162536859439771015e-09,6.847263177155300944e-09,7.531989494870830873e-09,8.216715812586360802e-09,8.901442130301890731e-09,9.586168448017420660e-09,1.027089476573295059e-08,1.095562108344848052e-08,1.164034740116401045e-08,1.232507371887954038e-08,1.300980003659507031e-08,1.369452635431060023e-08,1.437925267202613016e-08,1.506397898974166175e-08,1.574870530745719333e-08,1.643343162517272491e-08,1.711815794288825650e-08,1.780288426060378808e-08,1.848761057831931966e-08,1.917233689603485125e-08,1.985706321375038283e-08,2.054178953146591441e-08,2.122651584918144600e-08,2.191124216689697758e-08,2.259596848461250916e-08,2.328069480232804075e-08,2.396542112004357233e-08,2.465014743775910391e-08,2.533487375547463550e-08,2.601960007319016708e-08,2.670432639090569866e-08,2.738905270862123025e-08,2.807377902633676183e-08,2.875850534405229341e-08,2.944323166176782500e-08,3.012795797948335658e-08,3.081268429719889147e-08,3.149741061491442637e-08,3.218213693262996126e-08,3.286686325034549615e-08,3.355158956806103104e-08,3.423631588577656593e-08,3.492104220349210083e-08,3.560576852120763572e-08,3.629049483892317061e-08,3.697522115663870550e-08,3.765994747435424039e-08,3.834467379206977529e-08,3.902940010978531018e-08,3.971412642750084507e-08,4.039885274521637996e-08,4.108357906293191485e-08,4.176830538064744975e-08,4.245303169836298464e-08,4.313775801607851953e-08 +0.000000000000000000e+00,-6.949577304333020897e-10,-1.389915460866604179e-09,-2.084873191299906476e-09,-2.779830921733208772e-09,-3.474788652166511069e-09,-4.169746382599812952e-09,-4.864704113033114835e-09,-5.559661843466416718e-09,-6.254619573899718601e-09,-6.949577304333020484e-09,-7.644535034766322367e-09,-8.339492765199624249e-09,-9.034450495632926132e-09,-9.729408226066228015e-09,-1.042436595649952990e-08,-1.111932368693283178e-08,-1.181428141736613366e-08,-1.250923914779943555e-08,-1.320419687823273743e-08,-1.389915460866603931e-08,-1.459411233909934120e-08,-1.528907006953264473e-08,-1.598402779996594827e-08,-1.667898553039925181e-08,-1.737394326083255534e-08,-1.806890099126585888e-08,-1.876385872169916242e-08,-1.945881645213246596e-08,-2.015377418256576949e-08,-2.084873191299907303e-08,-2.154368964343237657e-08,-2.223864737386568011e-08,-2.293360510429898364e-08,-2.362856283473228718e-08,-2.432352056516559072e-08,-2.501847829559889426e-08,-2.571343602603219779e-08,-2.640839375646550133e-08,-2.710335148689880487e-08,-2.779830921733210840e-08,-2.849326694776541194e-08,-2.918822467819871548e-08,-2.988318240863201571e-08,-3.057814013906531594e-08,-3.127309786949861616e-08,-3.196805559993191639e-08,-3.266301333036521662e-08,-3.335797106079851685e-08,-3.405292879123181708e-08,-3.474788652166511731e-08,-3.544284425209841754e-08,-3.613780198253171776e-08,-3.683275971296501799e-08,-3.752771744339831822e-08,-3.822267517383161845e-08,-3.891763290426491868e-08,-3.961259063469821891e-08,-4.030754836513151914e-08,-4.100250609556481936e-08,-4.169746382599811959e-08,-4.239242155643141982e-08,-4.308737928686472005e-08,-4.378233701729802028e-08 +0.000000000000000000e+00,-6.880021272722037838e-10,-1.376004254544407568e-09,-2.064006381816611248e-09,-2.752008509088814722e-09,-3.440010636361018195e-09,-4.128012763633221669e-09,-4.816014890905425143e-09,-5.504017018177628616e-09,-6.192019145449832090e-09,-6.880021272722035564e-09,-7.568023399994239037e-09,-8.256025527266441684e-09,-8.944027654538644330e-09,-9.632029781810846977e-09,-1.032003190908304962e-08,-1.100803403635525227e-08,-1.169603616362745492e-08,-1.238403829089965756e-08,-1.307204041817186021e-08,-1.376004254544406286e-08,-1.444804467271626550e-08,-1.513604679998846815e-08,-1.582404892726067079e-08,-1.651205105453287344e-08,-1.720005318180507609e-08,-1.788805530907727873e-08,-1.857605743634948138e-08,-1.926405956362168403e-08,-1.995206169089388667e-08,-2.064006381816608932e-08,-2.132806594543829197e-08,-2.201606807271049461e-08,-2.270407019998269726e-08,-2.339207232725489991e-08,-2.408007445452710255e-08,-2.476807658179930520e-08,-2.545607870907150785e-08,-2.614408083634371049e-08,-2.683208296361591314e-08,-2.752008509088811578e-08,-2.820808721816031843e-08,-2.889608934543252108e-08,-2.958409147270472372e-08,-3.027209359997692968e-08,-3.096009572724913563e-08,-3.164809785452134159e-08,-3.233609998179354755e-08,-3.302410210906575350e-08,-3.371210423633795946e-08,-3.440010636361016541e-08,-3.508810849088237137e-08,-3.577611061815457732e-08,-3.646411274542678328e-08,-3.715211487269898923e-08,-3.784011699997119519e-08,-3.852811912724340114e-08,-3.921612125451560710e-08,-3.990412338178781305e-08,-4.059212550906001901e-08,-4.128012763633222496e-08,-4.196812976360443092e-08,-4.265613189087663687e-08,-4.334413401814884283e-08 +0.000000000000000000e+00,-6.847263178882460681e-10,-1.369452635776492136e-09,-2.054178953664738204e-09,-2.738905271552984272e-09,-3.423631589441230340e-09,-4.108357907329476409e-09,-4.793084225217722477e-09,-5.477810543105968545e-09,-6.162536860994214613e-09,-6.847263178882460681e-09,-7.531989496770705922e-09,-8.216715814658951163e-09,-8.901442132547196404e-09,-9.586168450435441645e-09,-1.027089476832368689e-08,-1.095562108621193213e-08,-1.164034740410017737e-08,-1.232507372198842261e-08,-1.300980003987666785e-08,-1.369452635776491309e-08,-1.437925267565315833e-08,-1.506397899354140523e-08,-1.574870531142965212e-08,-1.643343162931789902e-08,-1.711815794720614591e-08,-1.780288426509439281e-08,-1.848761058298263970e-08,-1.917233690087088660e-08,-1.985706321875913349e-08,-2.054178953664738039e-08,-2.122651585453562728e-08,-2.191124217242387418e-08,-2.259596849031212107e-08,-2.328069480820036797e-08,-2.396542112608861486e-08,-2.465014744397686176e-08,-2.533487376186510866e-08,-2.601960007975335555e-08,-2.670432639764160245e-08,-2.738905271552984934e-08,-2.807377903341809624e-08,-2.875850535130634313e-08,-2.944323166919459003e-08,-3.012795798708283692e-08,-3.081268430497108051e-08,-3.149741062285932410e-08,-3.218213694074756768e-08,-3.286686325863581127e-08,-3.355158957652405485e-08,-3.423631589441229844e-08,-3.492104221230054203e-08,-3.560576853018878561e-08,-3.629049484807702920e-08,-3.697522116596527279e-08,-3.765994748385351637e-08,-3.834467380174175996e-08,-3.902940011963000355e-08,-3.971412643751824713e-08,-4.039885275540649072e-08,-4.108357907329473431e-08,-4.176830539118297789e-08,-4.245303170907122148e-08,-4.313775802695946507e-08 +0.000000000000000000e+00,7.074469586062760189e-10,1.414893917212552038e-09,2.122340875818827953e-09,2.829787834425103662e-09,3.537234793031379371e-09,4.244681751637655079e-09,4.952128710243930375e-09,5.659575668850205670e-09,6.367022627456480965e-09,7.074469586062756260e-09,7.781916544669031555e-09,8.489363503275306850e-09,9.196810461881582145e-09,9.904257420487857440e-09,1.061170437909413274e-08,1.131915133770040803e-08,1.202659829630668333e-08,1.273404525491295862e-08,1.344149221351923392e-08,1.414893917212550921e-08,1.485638613073178451e-08,1.556383308933805980e-08,1.627128004794433510e-08,1.697872700655061039e-08,1.768617396515688569e-08,1.839362092376316098e-08,1.910106788236943628e-08,1.980851484097571157e-08,2.051596179958198687e-08,2.122340875818826216e-08,2.193085571679453746e-08,2.263830267540081275e-08,2.334574963400708805e-08,2.405319659261336334e-08,2.476064355121963864e-08,2.546809050982591393e-08,2.617553746843218923e-08,2.688298442703846452e-08,2.759043138564473982e-08,2.829787834425101511e-08,2.900532530285729041e-08,2.971277226146356570e-08,3.042021922006984431e-08,3.112766617867612622e-08,3.183511313728240813e-08,3.254256009588869004e-08,3.325000705449497196e-08,3.395745401310125387e-08,3.466490097170753578e-08,3.537234793031381770e-08,3.607979488892009961e-08,3.678724184752638152e-08,3.749468880613266343e-08,3.820213576473894535e-08,3.890958272334522726e-08,3.961702968195150917e-08,4.032447664055779108e-08,4.103192359916407300e-08,4.173937055777035491e-08,4.244681751637663682e-08,4.315426447498291873e-08,4.386171143358920065e-08,4.456915839219548256e-08 +0.000000000000000000e+00,-6.129692033276429020e-20,-1.225938406655285804e-19,-1.838907609982928706e-19,-2.451876813310571608e-19,-3.064846016638214269e-19,-3.677815219965856931e-19,-4.290784423293499592e-19,-4.903753626621142253e-19,-5.516722829948784914e-19,-6.129692033276427576e-19,-6.742661236604070237e-19,-7.355630439931712898e-19,-7.968599643259355559e-19,-8.581568846586998221e-19,-9.194538049914640882e-19,-9.807507253242282580e-19,-1.042047645656992428e-18,-1.103344565989756598e-18,-1.164641486322520768e-18,-1.225938406655284937e-18,-1.287235326988049107e-18,-1.348532247320813277e-18,-1.409829167653577447e-18,-1.471126087986341617e-18,-1.532423008319105786e-18,-1.593719928651869956e-18,-1.655016848984634126e-18,-1.716313769317398296e-18,-1.777610689650162658e-18,-1.838907609982927021e-18,-1.900204530315691383e-18,-1.961501450648455746e-18,-2.022798370981220108e-18,-2.084095291313984471e-18,-2.145392211646748833e-18,-2.206689131979513195e-18,-2.267986052312277558e-18,-2.329282972645041920e-18,-2.390579892977806283e-18,-2.451876813310570645e-18,-2.513173733643335007e-18,-2.574470653976099370e-18,-2.635767574308863732e-18,-2.697064494641628095e-18,-2.758361414974392457e-18,-2.819658335307156820e-18,-2.880955255639921182e-18,-2.942252175972685544e-18,-3.003549096305449907e-18,-3.064846016638214269e-18,-3.126142936970978632e-18,-3.187439857303742994e-18,-3.248736777636507357e-18,-3.310033697969271719e-18,-3.371330618302036081e-18,-3.432627538634800444e-18,-3.493924458967564806e-18,-3.555221379300329169e-18,-3.616518299633093531e-18,-3.677815219965857894e-18,-3.739112140298622256e-18,-3.800409060631386618e-18,-3.861705980964150981e-18 +0.000000000000000000e+00,7.014036778501457304e-10,1.402807355700291461e-09,2.104211033550436984e-09,2.805614711400582508e-09,3.507018389250728031e-09,4.208422067100873969e-09,4.909825744951019906e-09,5.611229422801165843e-09,6.312633100651311780e-09,7.014036778501457717e-09,7.715440456351604482e-09,8.416844134201751246e-09,9.118247812051898010e-09,9.819651489902044775e-09,1.052105516775219154e-08,1.122245884560233830e-08,1.192386252345248507e-08,1.262526620130263183e-08,1.332666987915277860e-08,1.402807355700292536e-08,1.472947723485307212e-08,1.543088091270321889e-08,1.613228459055336565e-08,1.683368826840351242e-08,1.753509194625365918e-08,1.823649562410380595e-08,1.893789930195395271e-08,1.963930297980409948e-08,2.034070665765424624e-08,2.104211033550439300e-08,2.174351401335453977e-08,2.244491769120468653e-08,2.314632136905483330e-08,2.384772504690498006e-08,2.454912872475512683e-08,2.525053240260527359e-08,2.595193608045542035e-08,2.665333975830556712e-08,2.735474343615571388e-08,2.805614711400586065e-08,2.875755079185600741e-08,2.945895446970615418e-08,3.016035814755630425e-08,3.086176182540645763e-08,3.156316550325661101e-08,3.226456918110676439e-08,3.296597285895691778e-08,3.366737653680707116e-08,3.436878021465722454e-08,3.507018389250737792e-08,3.577158757035753130e-08,3.647299124820768469e-08,3.717439492605783807e-08,3.787579860390799145e-08,3.857720228175814483e-08,3.927860595960829821e-08,3.998000963745845159e-08,4.068141331530860498e-08,4.138281699315875836e-08,4.208422067100891174e-08,4.278562434885906512e-08,4.348702802670921850e-08,4.418843170455937188e-08 +0.000000000000000000e+00,7.013982617114375984e-10,1.402796523422875197e-09,2.104194785134312692e-09,2.805593046845749980e-09,3.506991308557187268e-09,4.208389570268624556e-09,4.909787831980062258e-09,5.611186093691499960e-09,6.312584355402937661e-09,7.013982617114375363e-09,7.715380878825813065e-09,8.416779140537250767e-09,9.118177402248688468e-09,9.819575663960126170e-09,1.052097392567156387e-08,1.122237218738300157e-08,1.192377044909443928e-08,1.262516871080587698e-08,1.332656697251731468e-08,1.402796523422875238e-08,1.472936349594019008e-08,1.543076175765162944e-08,1.613216001936306714e-08,1.683355828107450484e-08,1.753495654278594254e-08,1.823635480449738025e-08,1.893775306620881795e-08,1.963915132792025565e-08,2.034054958963169335e-08,2.104194785134313105e-08,2.174334611305456875e-08,2.244474437476600646e-08,2.314614263647744416e-08,2.384754089818888186e-08,2.454893915990031956e-08,2.525033742161175726e-08,2.595173568332319497e-08,2.665313394503463267e-08,2.735453220674607037e-08,2.805593046845750807e-08,2.875732873016894577e-08,2.945872699188038347e-08,3.016012525359182118e-08,3.086152351530325888e-08,3.156292177701469658e-08,3.226432003872613428e-08,3.296571830043757198e-08,3.366711656214900968e-08,3.436851482386044739e-08,3.506991308557188509e-08,3.577131134728332279e-08,3.647270960899476049e-08,3.717410787070619819e-08,3.787550613241763589e-08,3.857690439412907360e-08,3.927830265584051130e-08,3.997970091755194900e-08,4.068109917926338670e-08,4.138249744097482440e-08,4.208389570268626211e-08,4.278529396439769981e-08,4.348669222610913751e-08,4.418809048782057521e-08 +0.000000000000000000e+00,3.536968367975953991e-10,7.073936735951907982e-10,1.061090510392786197e-09,1.414787347190381596e-09,1.768484183987976996e-09,2.122181020785572395e-09,2.475877857583167587e-09,2.829574694380762779e-09,3.183271531178357972e-09,3.536968367975953164e-09,3.890665204773548356e-09,4.244362041571143962e-09,4.598058878368739568e-09,4.951755715166335174e-09,5.305452551963930780e-09,5.659149388761526386e-09,6.012846225559121992e-09,6.366543062356717598e-09,6.720239899154313204e-09,7.073936735951908809e-09,7.427633572749504415e-09,7.781330409547100021e-09,8.135027246344694800e-09,8.488724083142289579e-09,8.842420919939884357e-09,9.196117756737479136e-09,9.549814593535073915e-09,9.903511430332668694e-09,1.025720826713026347e-08,1.061090510392785825e-08,1.096460194072545303e-08,1.131829877752304781e-08,1.167199561432064259e-08,1.202569245111823737e-08,1.237938928791583214e-08,1.273308612471342692e-08,1.308678296151102170e-08,1.344047979830861648e-08,1.379417663510621126e-08,1.414787347190380604e-08,1.450157030870140082e-08,1.485526714549899560e-08,1.520896398229659037e-08,1.556266081909418350e-08,1.591635765589177662e-08,1.627005449268936975e-08,1.662375132948696287e-08,1.697744816628455600e-08,1.733114500308214912e-08,1.768484183987974225e-08,1.803853867667733537e-08,1.839223551347492849e-08,1.874593235027252162e-08,1.909962918707011474e-08,1.945332602386770787e-08,1.980702286066530099e-08,2.016071969746289412e-08,2.051441653426048724e-08,2.086811337105808036e-08,2.122181020785567349e-08,2.157550704465326661e-08,2.192920388145085974e-08,2.228290071824845286e-08 +0.000000000000000000e+00,-7.922674068878310803e-20,-1.584534813775662161e-19,-2.376802220663493120e-19,-3.169069627551323840e-19,-3.961337034439154559e-19,-4.753604441326985278e-19,-5.545871848214816479e-19,-6.338139255102647679e-19,-7.130406661990478880e-19,-7.922674068878310081e-19,-8.714941475766141281e-19,-9.507208882653972482e-19,-1.029947628954180368e-18,-1.109174369642963488e-18,-1.188401110331746608e-18,-1.267627851020529728e-18,-1.346854591709312849e-18,-1.426081332398095969e-18,-1.505308073086879089e-18,-1.584534813775662209e-18,-1.663761554464445329e-18,-1.742988295153228641e-18,-1.822215035842012147e-18,-1.901441776530795652e-18,-1.980668517219579157e-18,-2.059895257908362662e-18,-2.139121998597146168e-18,-2.218348739285929673e-18,-2.297575479974713178e-18,-2.376802220663496683e-18,-2.456028961352280189e-18,-2.535255702041063694e-18,-2.614482442729847199e-18,-2.693709183418630704e-18,-2.772935924107414210e-18,-2.852162664796197715e-18,-2.931389405484981220e-18,-3.010616146173764725e-18,-3.089842886862548231e-18,-3.169069627551331736e-18,-3.248296368240115241e-18,-3.327523108928898746e-18,-3.406749849617682252e-18,-3.485976590306465757e-18,-3.565203330995249262e-18,-3.644430071684032767e-18,-3.723656812372816273e-18,-3.802883553061599778e-18,-3.882110293750383283e-18,-3.961337034439166788e-18,-4.040563775127950294e-18,-4.119790515816733799e-18,-4.199017256505517304e-18,-4.278243997194300810e-18,-4.357470737883084315e-18,-4.436697478571867820e-18,-4.515924219260651325e-18,-4.595150959949434831e-18,-4.674377700638218336e-18,-4.753604441327001841e-18,-4.832831182015785346e-18,-4.912057922704568852e-18,-4.991284663393352357e-18 +0.000000000000000000e+00,-7.074469587288644959e-10,-1.414893917457728992e-09,-2.122340876186593694e-09,-2.829787834915458397e-09,-3.537234793644323100e-09,-4.244681752373187389e-09,-4.952128711102051678e-09,-5.659575669830915967e-09,-6.367022628559780256e-09,-7.074469587288644545e-09,-7.781916546017508007e-09,-8.489363504746371469e-09,-9.196810463475234931e-09,-9.904257422204098393e-09,-1.061170438093296185e-08,-1.131915133966182532e-08,-1.202659829839068878e-08,-1.273404525711955224e-08,-1.344149221584841570e-08,-1.414893917457727916e-08,-1.485638613330614263e-08,-1.556383309203500609e-08,-1.627128005076386955e-08,-1.697872700949273301e-08,-1.768617396822159647e-08,-1.839362092695045994e-08,-1.910106788567932340e-08,-1.980851484440818686e-08,-2.051596180313705032e-08,-2.122340876186591378e-08,-2.193085572059477724e-08,-2.263830267932364071e-08,-2.334574963805250417e-08,-2.405319659678136763e-08,-2.476064355551023109e-08,-2.546809051423909455e-08,-2.617553747296795802e-08,-2.688298443169682148e-08,-2.759043139042568494e-08,-2.829787834915454840e-08,-2.900532530788341186e-08,-2.971277226661227533e-08,-3.042021922534114210e-08,-3.112766618407000556e-08,-3.183511314279886902e-08,-3.254256010152773248e-08,-3.325000706025659594e-08,-3.395745401898545941e-08,-3.466490097771432287e-08,-3.537234793644318633e-08,-3.607979489517204979e-08,-3.678724185390091325e-08,-3.749468881262977672e-08,-3.820213577135864018e-08,-3.890958273008750364e-08,-3.961702968881636710e-08,-4.032447664754523056e-08,-4.103192360627409402e-08,-4.173937056500295749e-08,-4.244681752373182095e-08,-4.315426448246068441e-08,-4.386171144118954787e-08,-4.456915839991841133e-08 +0.000000000000000000e+00,-3.536968369201876501e-10,-7.073936738403753002e-10,-1.061090510760562899e-09,-1.414787347680750394e-09,-1.768484184600937889e-09,-2.122181021521125384e-09,-2.475877858441312879e-09,-2.829574695361500374e-09,-3.183271532281687869e-09,-3.536968369201875364e-09,-3.890665206122062859e-09,-4.244362043042249940e-09,-4.598058879962437021e-09,-4.951755716882624103e-09,-5.305452553802811184e-09,-5.659149390722998266e-09,-6.012846227643185347e-09,-6.366543064563372428e-09,-6.720239901483559510e-09,-7.073936738403746591e-09,-7.427633575323933673e-09,-7.781330412244120754e-09,-8.135027249164308663e-09,-8.488724086084496571e-09,-8.842420923004684480e-09,-9.196117759924872388e-09,-9.549814596845060297e-09,-9.903511433765248206e-09,-1.025720827068543611e-08,-1.061090510760562402e-08,-1.096460194452581193e-08,-1.131829878144599984e-08,-1.167199561836618775e-08,-1.202569245528637566e-08,-1.237938929220656357e-08,-1.273308612912675147e-08,-1.308678296604693938e-08,-1.344047980296712729e-08,-1.379417663988731520e-08,-1.414787347680750311e-08,-1.450157031372769102e-08,-1.485526715064787893e-08,-1.520896398756806683e-08,-1.556266082448825474e-08,-1.591635766140844265e-08,-1.627005449832863056e-08,-1.662375133524881847e-08,-1.697744817216900638e-08,-1.733114500908919429e-08,-1.768484184600938219e-08,-1.803853868292957010e-08,-1.839223551984975801e-08,-1.874593235676994592e-08,-1.909962919369013383e-08,-1.945332603061032174e-08,-1.980702286753050965e-08,-2.016071970445069755e-08,-2.051441654137088546e-08,-2.086811337829107337e-08,-2.122181021521126128e-08,-2.157550705213144919e-08,-2.192920388905163710e-08,-2.228290072597182501e-08 +0.000000000000000000e+00,-7.014036779826104337e-10,-1.402807355965220867e-09,-2.104211033947831094e-09,-2.805614711930441321e-09,-3.507018389913051548e-09,-4.208422067895662188e-09,-4.909825745878272829e-09,-5.611229423860883469e-09,-6.312633101843494110e-09,-7.014036779826104750e-09,-7.715440457808716218e-09,-8.416844135791327685e-09,-9.118247813773939153e-09,-9.819651491756550621e-09,-1.052105516973916209e-08,-1.122245884772177356e-08,-1.192386252570438502e-08,-1.262526620368699649e-08,-1.332666988166960796e-08,-1.402807355965221943e-08,-1.472947723763483089e-08,-1.543088091561744236e-08,-1.613228459360005383e-08,-1.683368827158266530e-08,-1.753509194956527676e-08,-1.823649562754788823e-08,-1.893789930553049970e-08,-1.963930298351311117e-08,-2.034070666149572264e-08,-2.104211033947833410e-08,-2.174351401746094557e-08,-2.244491769544355704e-08,-2.314632137342616851e-08,-2.384772505140877997e-08,-2.454912872939139144e-08,-2.525053240737400291e-08,-2.595193608535661438e-08,-2.665333976333922584e-08,-2.735474344132183731e-08,-2.805614711930444878e-08,-2.875755079728706025e-08,-2.945895447526967171e-08,-3.016035815325228318e-08,-3.086176183123489134e-08,-3.156316550921749950e-08,-3.226456918720010766e-08,-3.296597286518271582e-08,-3.366737654316532398e-08,-3.436878022114793214e-08,-3.507018389913054029e-08,-3.577158757711314845e-08,-3.647299125509575661e-08,-3.717439493307836477e-08,-3.787579861106097293e-08,-3.857720228904358109e-08,-3.927860596702618925e-08,-3.998000964500879741e-08,-4.068141332299140557e-08,-4.138281700097401372e-08,-4.208422067895662188e-08,-4.278562435693923004e-08,-4.348702803492183820e-08,-4.418843171290444636e-08 +0.000000000000000000e+00,-7.013982618698305881e-10,-1.402796523739661176e-09,-2.104194785609491971e-09,-2.805593047479322766e-09,-3.506991309349153561e-09,-4.208389571218983942e-09,-4.909787833088814324e-09,-5.611186094958644705e-09,-6.312584356828475087e-09,-7.013982618698305468e-09,-7.715380880568135022e-09,-8.416779142437964576e-09,-9.118177404307794130e-09,-9.819575666177623685e-09,-1.052097392804745324e-08,-1.122237218991728279e-08,-1.192377045178711235e-08,-1.262516871365694190e-08,-1.332656697552677146e-08,-1.402796523739660101e-08,-1.472936349926643056e-08,-1.543076176113626012e-08,-1.613216002300608967e-08,-1.683355828487591923e-08,-1.753495654674574878e-08,-1.823635480861557833e-08,-1.893775307048540789e-08,-1.963915133235523744e-08,-2.034054959422506700e-08,-2.104194785609489655e-08,-2.174334611796472611e-08,-2.244474437983455566e-08,-2.314614264170438521e-08,-2.384754090357421477e-08,-2.454893916544404432e-08,-2.525033742731387388e-08,-2.595173568918370343e-08,-2.665313395105353298e-08,-2.735453221292336254e-08,-2.805593047479319209e-08,-2.875732873666302165e-08,-2.945872699853285120e-08,-3.016012526040268076e-08,-3.086152352227251362e-08,-3.156292178414234648e-08,-3.226432004601217934e-08,-3.296571830788201221e-08,-3.366711656975184507e-08,-3.436851483162167793e-08,-3.506991309349151080e-08,-3.577131135536134366e-08,-3.647270961723117652e-08,-3.717410787910100938e-08,-3.787550614097084225e-08,-3.857690440284067511e-08,-3.927830266471050797e-08,-3.997970092658034084e-08,-4.068109918845017370e-08,-4.138249745032000656e-08,-4.208389571218983942e-08,-4.278529397405967229e-08,-4.348669223592950515e-08,-4.418809049779933801e-08 +0.000000000000000000e+00,6.538255980543404519e-10,1.307651196108680904e-09,1.961476794163021459e-09,2.615302392217362221e-09,3.269127990271702983e-09,3.922953588326043745e-09,4.576779186380384507e-09,5.230604784434725269e-09,5.884430382489066031e-09,6.538255980543406793e-09,7.192081578597747555e-09,7.845907176652089145e-09,8.499732774706430734e-09,9.153558372760772323e-09,9.807383970815113912e-09,1.046120956886945550e-08,1.111503516692379709e-08,1.176886076497813868e-08,1.242268636303248027e-08,1.307651196108682186e-08,1.373033755914116345e-08,1.438416315719550504e-08,1.503798875524984828e-08,1.569181435330419152e-08,1.634563995135853477e-08,1.699946554941287801e-08,1.765329114746722125e-08,1.830711674552156450e-08,1.896094234357590774e-08,1.961476794163025099e-08,2.026859353968459423e-08,2.092241913773893747e-08,2.157624473579328072e-08,2.223007033384762396e-08,2.288389593190196720e-08,2.353772152995631045e-08,2.419154712801065369e-08,2.484537272606499693e-08,2.549919832411934018e-08,2.615302392217368342e-08,2.680684952022802667e-08,2.746067511828236991e-08,2.811450071633671315e-08,2.876832631439105640e-08,2.942215191244539964e-08,3.007597751049974288e-08,3.072980310855408613e-08,3.138362870660842937e-08,3.203745430466277261e-08,3.269127990271711586e-08,3.334510550077145910e-08,3.399893109882580234e-08,3.465275669688014559e-08,3.530658229493448883e-08,3.596040789298883208e-08,3.661423349104317532e-08,3.726805908909751856e-08,3.792188468715186181e-08,3.857571028520620505e-08,3.922953588326054829e-08,3.988336148131489154e-08,4.053718707936923478e-08,4.119101267742357802e-08 +0.000000000000000000e+00,6.526614660387131427e-10,1.305322932077426285e-09,1.957984398116139221e-09,2.610645864154852157e-09,3.263307330193565093e-09,3.915968796232278443e-09,4.568630262270991792e-09,5.221291728309705142e-09,5.873953194348418491e-09,6.526614660387131841e-09,7.179276126425845190e-09,7.831937592464558540e-09,8.484599058503272716e-09,9.137260524541986893e-09,9.789921990580701070e-09,1.044258345661941525e-08,1.109524492265812942e-08,1.174790638869684360e-08,1.240056785473555778e-08,1.305322932077427195e-08,1.370589078681298613e-08,1.435855225285170031e-08,1.501121371889041448e-08,1.566387518492912701e-08,1.631653665096783953e-08,1.696919811700655205e-08,1.762185958304526457e-08,1.827452104908397710e-08,1.892718251512268962e-08,1.957984398116140214e-08,2.023250544720011466e-08,2.088516691323882718e-08,2.153782837927753971e-08,2.219048984531625223e-08,2.284315131135496475e-08,2.349581277739367727e-08,2.414847424343238980e-08,2.480113570947110232e-08,2.545379717550981484e-08,2.610645864154852736e-08,2.675912010758723989e-08,2.741178157362595241e-08,2.806444303966466493e-08,2.871710450570337745e-08,2.936976597174208997e-08,3.002242743778080250e-08,3.067508890381951502e-08,3.132775036985822754e-08,3.198041183589694006e-08,3.263307330193565259e-08,3.328573476797436511e-08,3.393839623401307763e-08,3.459105770005179015e-08,3.524371916609050268e-08,3.589638063212921520e-08,3.654904209816792772e-08,3.720170356420664024e-08,3.785436503024535277e-08,3.850702649628406529e-08,3.915968796232277781e-08,3.981234942836149033e-08,4.046501089440020285e-08,4.111767236043891538e-08 +0.000000000000000000e+00,-8.786861798260394223e-20,-1.757372359652078845e-19,-2.636058539478118387e-19,-3.514744719304158171e-19,-4.393430899130197954e-19,-5.272117078956237738e-19,-6.150803258782277521e-19,-7.029489438608317305e-19,-7.908175618434357088e-19,-8.786861798260395909e-19,-9.665547978086434729e-19,-1.054423415791247355e-18,-1.142292033773851237e-18,-1.230160651756455119e-18,-1.318029269739059001e-18,-1.405897887721662883e-18,-1.493766505704266765e-18,-1.581635123686870647e-18,-1.669503741669474529e-18,-1.757372359652078411e-18,-1.845240977634682486e-18,-1.933109595617286561e-18,-2.020978213599890635e-18,-2.108846831582494710e-18,-2.196715449565098785e-18,-2.284584067547702859e-18,-2.372452685530306934e-18,-2.460321303512911008e-18,-2.548189921495515083e-18,-2.636058539478119158e-18,-2.723927157460723232e-18,-2.811795775443327307e-18,-2.899664393425931382e-18,-2.987533011408535456e-18,-3.075401629391139531e-18,-3.163270247373743606e-18,-3.251138865356347680e-18,-3.339007483338951755e-18,-3.426876101321555830e-18,-3.514744719304159904e-18,-3.602613337286763979e-18,-3.690481955269368053e-18,-3.778350573251972128e-18,-3.866219191234576203e-18,-3.954087809217180277e-18,-4.041956427199784352e-18,-4.129825045182388427e-18,-4.217693663164992501e-18,-4.305562281147596576e-18,-4.393430899130200651e-18,-4.481299517112804725e-18,-4.569168135095408800e-18,-4.657036753078012875e-18,-4.744905371060616949e-18,-4.832773989043221024e-18,-4.920642607025825098e-18,-5.008511225008429173e-18,-5.096379842991033248e-18,-5.184248460973637322e-18,-5.272117078956241397e-18,-5.359985696938845472e-18,-5.447854314921449546e-18,-5.535722932904053621e-18 +0.000000000000000000e+00,6.266050606869299552e-10,1.253210121373859910e-09,1.879815182060790072e-09,2.506420242747720234e-09,3.133025303434650396e-09,3.759630364121580145e-09,4.386235424808509893e-09,5.012840485495439642e-09,5.639445546182369390e-09,6.266050606869299138e-09,6.892655667556228887e-09,7.519260728243158635e-09,8.145865788930089211e-09,8.772470849617019786e-09,9.399075910303950362e-09,1.002568097099088094e-08,1.065228603167781151e-08,1.127889109236474209e-08,1.190549615305167266e-08,1.253210121373860324e-08,1.315870627442553382e-08,1.378531133511246439e-08,1.441191639579939497e-08,1.503852145648632720e-08,1.566512651717325943e-08,1.629173157786019166e-08,1.691833663854712389e-08,1.754494169923405612e-08,1.817154675992098835e-08,1.879815182060792058e-08,1.942475688129485281e-08,2.005136194198178504e-08,2.067796700266871727e-08,2.130457206335564950e-08,2.193117712404258173e-08,2.255778218472951396e-08,2.318438724541644619e-08,2.381099230610337842e-08,2.443759736679031065e-08,2.506420242747724288e-08,2.569080748816417511e-08,2.631741254885110734e-08,2.694401760953803957e-08,2.757062267022497180e-08,2.819722773091190403e-08,2.882383279159883626e-08,2.945043785228576849e-08,3.007704291297270072e-08,3.070364797365963295e-08,3.133025303434656518e-08,3.195685809503349741e-08,3.258346315572042964e-08,3.321006821640736186e-08,3.383667327709429409e-08,3.446327833778122632e-08,3.508988339846815855e-08,3.571648845915509078e-08,3.634309351984202301e-08,3.696969858052895524e-08,3.759630364121588747e-08,3.822290870190281970e-08,3.884951376258975193e-08,3.947611882327668416e-08 +0.000000000000000000e+00,9.293432881270180332e-10,1.858686576254036066e-09,2.788029864381053893e-09,3.717373152508071719e-09,4.646716440635089546e-09,5.576059728762107786e-09,6.505403016889126026e-09,7.434746305016144266e-09,8.364089593143162505e-09,9.293432881270180745e-09,1.022277616939719899e-08,1.115211945752421723e-08,1.208146274565123547e-08,1.301080603377825371e-08,1.394014932190527195e-08,1.486949261003229019e-08,1.579883589815930843e-08,1.672817918628632501e-08,1.765752247441334160e-08,1.858686576254035818e-08,1.951620905066737477e-08,2.044555233879439135e-08,2.137489562692140794e-08,2.230423891504842452e-08,2.323358220317544111e-08,2.416292549130245770e-08,2.509226877942947428e-08,2.602161206755649087e-08,2.695095535568350745e-08,2.788029864381052404e-08,2.880964193193754062e-08,2.973898522006455721e-08,3.066832850819157049e-08,3.159767179631858376e-08,3.252701508444559704e-08,3.345635837257261032e-08,3.438570166069962359e-08,3.531504494882663687e-08,3.624438823695365015e-08,3.717373152508066342e-08,3.810307481320767670e-08,3.903241810133468998e-08,3.996176138946170326e-08,4.089110467758871653e-08,4.182044796571572981e-08,4.274979125384274309e-08,4.367913454196975636e-08,4.460847783009676964e-08,4.553782111822378292e-08,4.646716440635079619e-08,4.739650769447780947e-08,4.832585098260482275e-08,4.925519427073183602e-08,5.018453755885884930e-08,5.111388084698586258e-08,5.204322413511287586e-08,5.297256742323988913e-08,5.390191071136690241e-08,5.483125399949391569e-08,5.576059728762092896e-08,5.668994057574794224e-08,5.761928386387495552e-08,5.854862715200196879e-08 +0.000000000000000000e+00,7.461537049552798401e-10,1.492307409910559680e-09,2.238461114865839417e-09,2.984614819821118947e-09,3.730768524776398063e-09,4.476922229731677180e-09,5.223075934686956296e-09,5.969229639642235412e-09,6.715383344597514529e-09,7.461537049552792818e-09,8.207690754508071107e-09,8.953844459463349396e-09,9.699998164418627686e-09,1.044615186937390597e-08,1.119230557432918426e-08,1.193845927928446255e-08,1.268461298423974084e-08,1.343076668919501913e-08,1.417692039415029742e-08,1.492307409910557571e-08,1.566922780406085400e-08,1.641538150901613229e-08,1.716153521397141058e-08,1.790768891892668887e-08,1.865384262388196716e-08,1.939999632883724544e-08,2.014615003379252373e-08,2.089230373874780202e-08,2.163845744370308031e-08,2.238461114865835860e-08,2.313076485361363689e-08,2.387691855856891518e-08,2.462307226352419347e-08,2.536922596847947176e-08,2.611537967343475005e-08,2.686153337839002834e-08,2.760768708334530663e-08,2.835384078830058491e-08,2.909999449325586320e-08,2.984614819821114480e-08,3.059230190316642309e-08,3.133845560812170138e-08,3.208460931307697967e-08,3.283076301803225796e-08,3.357691672298753625e-08,3.432307042794281454e-08,3.506922413289809283e-08,3.581537783785337112e-08,3.656153154280864940e-08,3.730768524776392769e-08,3.805383895271920598e-08,3.879999265767448427e-08,3.954614636262976256e-08,4.029230006758504085e-08,4.103845377254031914e-08,4.178460747749559743e-08,4.253076118245087572e-08,4.327691488740615401e-08,4.402306859236143230e-08,4.476922229731671059e-08,4.551537600227198887e-08,4.626152970722726716e-08,4.700768341218254545e-08 +0.000000000000000000e+00,3.257847358767357476e-10,6.515694717534714951e-10,9.773542076302072427e-10,1.303138943506942990e-09,1.628923679383678738e-09,1.954708415260414485e-09,2.280493151137150440e-09,2.606277887013886394e-09,2.932062622890622348e-09,3.257847358767358303e-09,3.583632094644094257e-09,3.909416830520829798e-09,4.235201566397565339e-09,4.560986302274300879e-09,4.886771038151036420e-09,5.212555774027771961e-09,5.538340509904507502e-09,5.864125245781243042e-09,6.189909981657978583e-09,6.515694717534714124e-09,6.841479453411449665e-09,7.167264189288185205e-09,7.493048925164920746e-09,7.818833661041656287e-09,8.144618396918391828e-09,8.470403132795127368e-09,8.796187868671862909e-09,9.121972604548598450e-09,9.447757340425333991e-09,9.773542076302069531e-09,1.009932681217880507e-08,1.042511154805554061e-08,1.075089628393227615e-08,1.107668101980901169e-08,1.140246575568574724e-08,1.172825049156248278e-08,1.205403522743921832e-08,1.237981996331595386e-08,1.270560469919268940e-08,1.303138943506942494e-08,1.335717417094616048e-08,1.368295890682289602e-08,1.400874364269963156e-08,1.433452837857636710e-08,1.466031311445310264e-08,1.498609785032983818e-08,1.531188258620657538e-08,1.563766732208331257e-08,1.596345205796004977e-08,1.628923679383678696e-08,1.661502152971352416e-08,1.694080626559026135e-08,1.726659100146699855e-08,1.759237573734373574e-08,1.791816047322047294e-08,1.824394520909721013e-08,1.856972994497394733e-08,1.889551468085068452e-08,1.922129941672742172e-08,1.954708415260415892e-08,1.987286888848089611e-08,2.019865362435763331e-08,2.052443836023437050e-08 +0.000000000000000000e+00,-8.894821170920540593e-20,-1.778964234184108119e-19,-2.668446351276162178e-19,-3.557928468368216237e-19,-4.447410585460270296e-19,-5.336892702552324356e-19,-6.226374819644378415e-19,-7.115856936736432474e-19,-8.005339053828486533e-19,-8.894821170920540593e-19,-9.784303288012594652e-19,-1.067378540510464871e-18,-1.156326752219670277e-18,-1.245274963928875683e-18,-1.334223175638081089e-18,-1.423171387347286495e-18,-1.512119599056491901e-18,-1.601067810765697307e-18,-1.690016022474902713e-18,-1.778964234184108119e-18,-1.867912445893313524e-18,-1.956860657602518930e-18,-2.045808869311724336e-18,-2.134757081020929742e-18,-2.223705292730135148e-18,-2.312653504439340554e-18,-2.401601716148545960e-18,-2.490549927857751366e-18,-2.579498139566956772e-18,-2.668446351276162178e-18,-2.757394562985367584e-18,-2.846342774694572990e-18,-2.935290986403778396e-18,-3.024239198112983802e-18,-3.113187409822189207e-18,-3.202135621531394613e-18,-3.291083833240600019e-18,-3.380032044949805425e-18,-3.468980256659010831e-18,-3.557928468368216237e-18,-3.646876680077422028e-18,-3.735824891786627819e-18,-3.824773103495833610e-18,-3.913721315205039402e-18,-4.002669526914245193e-18,-4.091617738623450984e-18,-4.180565950332656775e-18,-4.269514162041862566e-18,-4.358462373751068357e-18,-4.447410585460274148e-18,-4.536358797169479939e-18,-4.625307008878685730e-18,-4.714255220587891522e-18,-4.803203432297097313e-18,-4.892151644006303104e-18,-4.981099855715508895e-18,-5.070048067424714686e-18,-5.158996279133920477e-18,-5.247944490843126268e-18,-5.336892702552332059e-18,-5.425840914261537850e-18,-5.514789125970743642e-18,-5.603737337679949433e-18 +0.000000000000000000e+00,-6.538255982296310872e-10,-1.307651196459262174e-09,-1.961476794688893262e-09,-2.615302392918524349e-09,-3.269127991148155436e-09,-3.922953589377786523e-09,-4.576779187607417610e-09,-5.230604785837048698e-09,-5.884430384066679785e-09,-6.538255982296310872e-09,-7.192081580525941959e-09,-7.845907178755573046e-09,-8.499732776985204134e-09,-9.153558375214835221e-09,-9.807383973444466308e-09,-1.046120957167409740e-08,-1.111503516990372848e-08,-1.176886076813335957e-08,-1.242268636636299066e-08,-1.307651196459262174e-08,-1.373033756282225283e-08,-1.438416316105188392e-08,-1.503798875928151335e-08,-1.569181435751114278e-08,-1.634563995574077222e-08,-1.699946555397040165e-08,-1.765329115220003108e-08,-1.830711675042966052e-08,-1.896094234865928995e-08,-1.961476794688891938e-08,-2.026859354511854881e-08,-2.092241914334817825e-08,-2.157624474157780768e-08,-2.223007033980743711e-08,-2.288389593803706655e-08,-2.353772153626669598e-08,-2.419154713449632541e-08,-2.484537273272595484e-08,-2.549919833095558428e-08,-2.615302392918521371e-08,-2.680684952741484314e-08,-2.746067512564447258e-08,-2.811450072387410201e-08,-2.876832632210373144e-08,-2.942215192033336087e-08,-3.007597751856298700e-08,-3.072980311679261312e-08,-3.138362871502223925e-08,-3.203745431325186537e-08,-3.269127991148149149e-08,-3.334510550971111762e-08,-3.399893110794074374e-08,-3.465275670617036987e-08,-3.530658230439999599e-08,-3.596040790262962211e-08,-3.661423350085924824e-08,-3.726805909908887436e-08,-3.792188469731850049e-08,-3.857571029554812661e-08,-3.922953589377775274e-08,-3.988336149200737886e-08,-4.053718709023700498e-08,-4.119101268846663111e-08 +0.000000000000000000e+00,-6.526614662142181212e-10,-1.305322932428436242e-09,-1.957984398642654570e-09,-2.610645864856872899e-09,-3.263307331071091227e-09,-3.915968797285309141e-09,-4.568630263499527055e-09,-5.221291729713744970e-09,-5.873953195927962884e-09,-6.526614662142180799e-09,-7.179276128356398713e-09,-7.831937594570616628e-09,-8.484599060784835369e-09,-9.137260526999054111e-09,-9.789921993213272852e-09,-1.044258345942749159e-08,-1.109524492564171034e-08,-1.174790639185592908e-08,-1.240056785807014782e-08,-1.305322932428436656e-08,-1.370589079049858530e-08,-1.435855225671280404e-08,-1.501121372292702279e-08,-1.566387518914124318e-08,-1.631653665535546358e-08,-1.696919812156968397e-08,-1.762185958778390437e-08,-1.827452105399812477e-08,-1.892718252021234516e-08,-1.957984398642656556e-08,-2.023250545264078595e-08,-2.088516691885500635e-08,-2.153782838506922675e-08,-2.219048985128344714e-08,-2.284315131749766754e-08,-2.349581278371188793e-08,-2.414847424992610833e-08,-2.480113571614032873e-08,-2.545379718235454912e-08,-2.610645864856876952e-08,-2.675912011478298991e-08,-2.741178158099721031e-08,-2.806444304721143071e-08,-2.871710451342565110e-08,-2.936976597963987150e-08,-3.002242744585409189e-08,-3.067508891206831229e-08,-3.132775037828253268e-08,-3.198041184449675308e-08,-3.263307331071097348e-08,-3.328573477692519387e-08,-3.393839624313941427e-08,-3.459105770935363466e-08,-3.524371917556785506e-08,-3.589638064178207546e-08,-3.654904210799629585e-08,-3.720170357421051625e-08,-3.785436504042473664e-08,-3.850702650663895704e-08,-3.915968797285317744e-08,-3.981234943906739783e-08,-4.046501090528161823e-08,-4.111767237149583862e-08 +0.000000000000000000e+00,-3.257847360524441608e-10,-6.515694721048883216e-10,-9.773542081573324307e-10,-1.303138944209776436e-09,-1.628923680262220442e-09,-1.954708416314664448e-09,-2.280493152367108454e-09,-2.606277888419552459e-09,-2.932062624471996465e-09,-3.257847360524440471e-09,-3.583632096576884476e-09,-3.909416832629328068e-09,-4.235201568681771661e-09,-4.560986304734215253e-09,-4.886771040786658845e-09,-5.212555776839102437e-09,-5.538340512891546029e-09,-5.864125248943989621e-09,-6.189909984996433213e-09,-6.515694721048876805e-09,-6.841479457101320397e-09,-7.167264193153763990e-09,-7.493048929206207582e-09,-7.818833665258651174e-09,-8.144618401311094766e-09,-8.470403137363538358e-09,-8.796187873415981950e-09,-9.121972609468425542e-09,-9.447757345520869134e-09,-9.773542081573312727e-09,-1.009932681762575632e-08,-1.042511155367819991e-08,-1.075089628973064350e-08,-1.107668102578308709e-08,-1.140246576183553069e-08,-1.172825049788797428e-08,-1.205403523394041787e-08,-1.237981996999286146e-08,-1.270560470604530506e-08,-1.303138944209774865e-08,-1.335717417815019224e-08,-1.368295891420263583e-08,-1.400874365025507942e-08,-1.433452838630752302e-08,-1.466031312235996661e-08,-1.498609785841241185e-08,-1.531188259446485545e-08,-1.563766733051729904e-08,-1.596345206656974263e-08,-1.628923680262218622e-08,-1.661502153867462982e-08,-1.694080627472707341e-08,-1.726659101077951700e-08,-1.759237574683196059e-08,-1.791816048288440418e-08,-1.824394521893684778e-08,-1.856972995498929137e-08,-1.889551469104173496e-08,-1.922129942709417855e-08,-1.954708416314662214e-08,-1.987286889919906574e-08,-2.019865363525150933e-08,-2.052443837130395292e-08 +0.000000000000000000e+00,-6.266050608621132639e-10,-1.253210121724226528e-09,-1.879815182586339688e-09,-2.506420243448452642e-09,-3.133025304310565595e-09,-3.759630365172678549e-09,-4.386235426034791089e-09,-5.012840486896903629e-09,-5.639445547759016169e-09,-6.266050608621128709e-09,-6.892655669483241250e-09,-7.519260730345353790e-09,-8.145865791207466330e-09,-8.772470852069578870e-09,-9.399075912931691410e-09,-1.002568097379380395e-08,-1.065228603465591649e-08,-1.127889109551802903e-08,-1.190549615638014157e-08,-1.253210121724225411e-08,-1.315870627810436665e-08,-1.378531133896647919e-08,-1.441191639982859173e-08,-1.503852146069070427e-08,-1.566512652155281681e-08,-1.629173158241492935e-08,-1.691833664327704189e-08,-1.754494170413915443e-08,-1.817154676500126697e-08,-1.879815182586337951e-08,-1.942475688672549205e-08,-2.005136194758760459e-08,-2.067796700844971713e-08,-2.130457206931182967e-08,-2.193117713017394221e-08,-2.255778219103605475e-08,-2.318438725189816729e-08,-2.381099231276027983e-08,-2.443759737362239237e-08,-2.506420243448450491e-08,-2.569080749534661745e-08,-2.631741255620872999e-08,-2.694401761707084253e-08,-2.757062267793295507e-08,-2.819722773879506761e-08,-2.882383279965718015e-08,-2.945043786051929269e-08,-3.007704292138140192e-08,-3.070364798224351115e-08,-3.133025304310562039e-08,-3.195685810396772962e-08,-3.258346316482983885e-08,-3.321006822569194808e-08,-3.383667328655405731e-08,-3.446327834741616654e-08,-3.508988340827827577e-08,-3.571648846914038501e-08,-3.634309353000249424e-08,-3.696969859086460347e-08,-3.759630365172671270e-08,-3.822290871258882193e-08,-3.884951377345093116e-08,-3.947611883431304039e-08 +0.000000000000000000e+00,-9.293432883045317164e-10,-1.858686576609063433e-09,-2.788029864913595253e-09,-3.717373153218127279e-09,-4.646716441522659306e-09,-5.576059729827191333e-09,-6.505403018131723359e-09,-7.434746306436255386e-09,-8.364089594740787412e-09,-9.293432883045318612e-09,-1.022277617134984981e-08,-1.115211945965438101e-08,-1.208146274795891221e-08,-1.301080603626344341e-08,-1.394014932456797461e-08,-1.486949261287250581e-08,-1.579883590117703866e-08,-1.672817918948157152e-08,-1.765752247778610437e-08,-1.858686576609063722e-08,-1.951620905439517008e-08,-2.044555234269970293e-08,-2.137489563100423579e-08,-2.230423891930876864e-08,-2.323358220761330149e-08,-2.416292549591783435e-08,-2.509226878422236720e-08,-2.602161207252690005e-08,-2.695095536083143291e-08,-2.788029864913596576e-08,-2.880964193744049862e-08,-2.973898522574503147e-08,-3.066832851404956432e-08,-3.159767180235409718e-08,-3.252701509065863003e-08,-3.345635837896316288e-08,-3.438570166726769574e-08,-3.531504495557222859e-08,-3.624438824387676145e-08,-3.717373153218129430e-08,-3.810307482048582715e-08,-3.903241810879036001e-08,-3.996176139709489286e-08,-4.089110468539942571e-08,-4.182044797370395857e-08,-4.274979126200849142e-08,-4.367913455031302428e-08,-4.460847783861755713e-08,-4.553782112692208998e-08,-4.646716441522662284e-08,-4.739650770353115569e-08,-4.832585099183568855e-08,-4.925519428014022140e-08,-5.018453756844475425e-08,-5.111388085674928711e-08,-5.204322414505381996e-08,-5.297256743335835281e-08,-5.390191072166288567e-08,-5.483125400996741852e-08,-5.576059729827195138e-08,-5.668994058657648423e-08,-5.761928387488101708e-08,-5.854862716318554994e-08 +0.000000000000000000e+00,-7.461537051354229238e-10,-1.492307410270845848e-09,-2.238461115406268771e-09,-2.984614820541691695e-09,-3.730768525677115032e-09,-4.476922230812538370e-09,-5.223075935947961707e-09,-5.969229641083385044e-09,-6.715383346218808382e-09,-7.461537051354231719e-09,-8.207690756489655056e-09,-8.953844461625078394e-09,-9.699998166760501731e-09,-1.044615187189592507e-08,-1.119230557703134841e-08,-1.193845928216677174e-08,-1.268461298730219508e-08,-1.343076669243761842e-08,-1.417692039757304176e-08,-1.492307410270846675e-08,-1.566922780784389174e-08,-1.641538151297931673e-08,-1.716153521811474172e-08,-1.790768892325016671e-08,-1.865384262838559171e-08,-1.939999633352101670e-08,-2.014615003865644169e-08,-2.089230374379186668e-08,-2.163845744892729167e-08,-2.238461115406271666e-08,-2.313076485919814166e-08,-2.387691856433356665e-08,-2.462307226946899164e-08,-2.536922597460441663e-08,-2.611537967973984162e-08,-2.686153338487526661e-08,-2.760768709001069161e-08,-2.835384079514611660e-08,-2.909999450028154159e-08,-2.984614820541696658e-08,-3.059230191055239157e-08,-3.133845561568781656e-08,-3.208460932082324156e-08,-3.283076302595866655e-08,-3.357691673109409154e-08,-3.432307043622951653e-08,-3.506922414136494152e-08,-3.581537784650036651e-08,-3.656153155163579151e-08,-3.730768525677121650e-08,-3.805383896190664149e-08,-3.879999266704206648e-08,-3.954614637217749147e-08,-4.029230007731291646e-08,-4.103845378244834146e-08,-4.178460748758376645e-08,-4.253076119271919144e-08,-4.327691489785461643e-08,-4.402306860299004142e-08,-4.476922230812546642e-08,-4.551537601326089141e-08,-4.626152971839631640e-08,-4.700768342353174139e-08 +0.000000000000000000e+00,6.493431434021501030e-10,1.298686286804300206e-09,1.948029430206450309e-09,2.597372573608600412e-09,3.246715717010750515e-09,3.896058860412900618e-09,4.545402003815050721e-09,5.194745147217200824e-09,5.844088290619350927e-09,6.493431434021501030e-09,7.142774577423651133e-09,7.792117720825801236e-09,8.441460864227951339e-09,9.090804007630101442e-09,9.740147151032251545e-09,1.038949029443440165e-08,1.103883343783655175e-08,1.168817658123870185e-08,1.233751972464085196e-08,1.298686286804300206e-08,1.363620601144515216e-08,1.428554915484730227e-08,1.493489229824945237e-08,1.558423544165160247e-08,1.623357858505375258e-08,1.688292172845590268e-08,1.753226487185805278e-08,1.818160801526020288e-08,1.883095115866235299e-08,1.948029430206450309e-08,2.012963744546665319e-08,2.077898058886880330e-08,2.142832373227095340e-08,2.207766687567310350e-08,2.272701001907525361e-08,2.337635316247740371e-08,2.402569630587955381e-08,2.467503944928170392e-08,2.532438259268385402e-08,2.597372573608600412e-08,2.662306887948815422e-08,2.727241202289030433e-08,2.792175516629245443e-08,2.857109830969460453e-08,2.922044145309675464e-08,2.986978459649890474e-08,3.051912773990105484e-08,3.116847088330320495e-08,3.181781402670535505e-08,3.246715717010750515e-08,3.311650031350965525e-08,3.376584345691180536e-08,3.441518660031395546e-08,3.506452974371610556e-08,3.571387288711825567e-08,3.636321603052040577e-08,3.701255917392255587e-08,3.766190231732470598e-08,3.831124546072685608e-08,3.896058860412900618e-08,3.960993174753115628e-08,4.025927489093330639e-08,4.090861803433545649e-08 +0.000000000000000000e+00,6.398328839421619157e-10,1.279665767884323831e-09,1.919498651826485747e-09,2.559331535768647663e-09,3.199164419710809579e-09,3.838997303652971494e-09,4.478830187595133410e-09,5.118663071537295326e-09,5.758495955479457241e-09,6.398328839421619157e-09,7.038161723363781073e-09,7.677994607305942989e-09,8.317827491248104904e-09,8.957660375190266820e-09,9.597493259132428736e-09,1.023732614307459065e-08,1.087715902701675257e-08,1.151699191095891448e-08,1.215682479490107640e-08,1.279665767884323831e-08,1.343649056278540023e-08,1.407632344672756215e-08,1.471615633066972406e-08,1.535598921461188598e-08,1.599582209855404624e-08,1.663565498249620650e-08,1.727548786643836676e-08,1.791532075038052702e-08,1.855515363432268728e-08,1.919498651826484755e-08,1.983481940220700781e-08,2.047465228614916807e-08,2.111448517009132833e-08,2.175431805403348859e-08,2.239415093797564885e-08,2.303398382191780911e-08,2.367381670585996937e-08,2.431364958980212964e-08,2.495348247374428990e-08,2.559331535768645016e-08,2.623314824162861042e-08,2.687298112557077068e-08,2.751281400951293094e-08,2.815264689345509120e-08,2.879247977739725147e-08,2.943231266133941173e-08,3.007214554528157199e-08,3.071197842922373225e-08,3.135181131316589251e-08,3.199164419710805277e-08,3.263147708105021303e-08,3.327130996499237330e-08,3.391114284893453356e-08,3.455097573287669382e-08,3.519080861681885408e-08,3.583064150076101434e-08,3.647047438470317460e-08,3.711030726864533486e-08,3.775014015258749512e-08,3.838997303652965539e-08,3.902980592047181565e-08,3.966963880441397591e-08,4.030947168835613617e-08 +0.000000000000000000e+00,6.913107117030145650e-10,1.382621423406029130e-09,2.073932135109043695e-09,2.765242846812058260e-09,3.456553558515072825e-09,4.147864270218087390e-09,4.839174981921101542e-09,5.530485693624115693e-09,6.221796405327129845e-09,6.913107117030143996e-09,7.604417828733158147e-09,8.295728540436173126e-09,8.987039252139188105e-09,9.678349963842203083e-09,1.036966067554521806e-08,1.106097138724823304e-08,1.175228209895124802e-08,1.244359281065426300e-08,1.313490352235727798e-08,1.382621423406029296e-08,1.451752494576330793e-08,1.520883565746632291e-08,1.590014636916933789e-08,1.659145708087235287e-08,1.728276779257536785e-08,1.797407850427838283e-08,1.866538921598139781e-08,1.935669992768441278e-08,2.004801063938742776e-08,2.073932135109044274e-08,2.143063206279345772e-08,2.212194277449647270e-08,2.281325348619948768e-08,2.350456419790250266e-08,2.419587490960551763e-08,2.488718562130853261e-08,2.557849633301154759e-08,2.626980704471456257e-08,2.696111775641757755e-08,2.765242846812059253e-08,2.834373917982360751e-08,2.903504989152662248e-08,2.972636060322963746e-08,3.041767131493265244e-08,3.110898202663567073e-08,3.180029273833868902e-08,3.249160345004170730e-08,3.318291416174472559e-08,3.387422487344774388e-08,3.456553558515076217e-08,3.525684629685378045e-08,3.594815700855679874e-08,3.663946772025981703e-08,3.733077843196283532e-08,3.802208914366585360e-08,3.871339985536887189e-08,3.940471056707189018e-08,4.009602127877490846e-08,4.078733199047792675e-08,4.147864270218094504e-08,4.216995341388396333e-08,4.286126412558698161e-08,4.355257483728999990e-08 +0.000000000000000000e+00,-6.493431435757565986e-10,-1.298686287151513197e-09,-1.948029430727269693e-09,-2.597372574303025981e-09,-3.246715717878782269e-09,-3.896058861454538558e-09,-4.545402005030294846e-09,-5.194745148606051135e-09,-5.844088292181807423e-09,-6.493431435757563712e-09,-7.142774579333320000e-09,-7.792117722909075461e-09,-8.441460866484830923e-09,-9.090804010060586384e-09,-9.740147153636341845e-09,-1.038949029721209731e-08,-1.103883344078785277e-08,-1.168817658436360823e-08,-1.233751972793936369e-08,-1.298686287151511915e-08,-1.363620601509087461e-08,-1.428554915866663007e-08,-1.493489230224238554e-08,-1.558423544581814100e-08,-1.623357858939389646e-08,-1.688292173296965192e-08,-1.753226487654540738e-08,-1.818160802012116284e-08,-1.883095116369691830e-08,-1.948029430727267376e-08,-2.012963745084842923e-08,-2.077898059442418469e-08,-2.142832373799994015e-08,-2.207766688157569561e-08,-2.272701002515145107e-08,-2.337635316872720653e-08,-2.402569631230296199e-08,-2.467503945587871745e-08,-2.532438259945447292e-08,-2.597372574303022838e-08,-2.662306888660598384e-08,-2.727241203018173930e-08,-2.792175517375749476e-08,-2.857109831733325022e-08,-2.922044146090900568e-08,-2.986978460448475784e-08,-3.051912774806050999e-08,-3.116847089163626214e-08,-3.181781403521201429e-08,-3.246715717878776645e-08,-3.311650032236351860e-08,-3.376584346593927075e-08,-3.441518660951502290e-08,-3.506452975309077506e-08,-3.571387289666652721e-08,-3.636321604024227936e-08,-3.701255918381803151e-08,-3.766190232739378367e-08,-3.831124547096953582e-08,-3.896058861454528797e-08,-3.960993175812104012e-08,-4.025927490169679228e-08,-4.090861804527254443e-08 +0.000000000000000000e+00,-6.398328841173832747e-10,-1.279665768234766549e-09,-1.919498652352149927e-09,-2.559331536469533512e-09,-3.199164420586917097e-09,-3.838997304704300682e-09,-4.478830188821684267e-09,-5.118663072939067852e-09,-5.758495957056451437e-09,-6.398328841173835022e-09,-7.038161725291218606e-09,-7.677994609408603019e-09,-8.317827493525986603e-09,-8.957660377643370188e-09,-9.597493261760753773e-09,-1.023732614587813736e-08,-1.087715902999552094e-08,-1.151699191411290453e-08,-1.215682479823028811e-08,-1.279665768234767170e-08,-1.343649056646505528e-08,-1.407632345058243887e-08,-1.471615633469982245e-08,-1.535598921881720604e-08,-1.599582210293458962e-08,-1.663565498705197321e-08,-1.727548787116935679e-08,-1.791532075528674038e-08,-1.855515363940412396e-08,-1.919498652352150755e-08,-1.983481940763889113e-08,-2.047465229175627472e-08,-2.111448517587365830e-08,-2.175431805999104189e-08,-2.239415094410842547e-08,-2.303398382822580906e-08,-2.367381671234319264e-08,-2.431364959646057623e-08,-2.495348248057795981e-08,-2.559331536469534340e-08,-2.623314824881272698e-08,-2.687298113293011056e-08,-2.751281401704749415e-08,-2.815264690116487773e-08,-2.879247978528226132e-08,-2.943231266939964490e-08,-3.007214555351702849e-08,-3.071197843763441207e-08,-3.135181132175179566e-08,-3.199164420586917924e-08,-3.263147708998656283e-08,-3.327130997410394641e-08,-3.391114285822133000e-08,-3.455097574233871358e-08,-3.519080862645609717e-08,-3.583064151057348075e-08,-3.647047439469086434e-08,-3.711030727880824792e-08,-3.775014016292563151e-08,-3.838997304704301509e-08,-3.902980593116039868e-08,-3.966963881527778226e-08,-4.030947169939516585e-08 +0.000000000000000000e+00,-6.913107118850691596e-10,-1.382621423770138319e-09,-2.073932135655207479e-09,-2.765242847540276639e-09,-3.456553559425345798e-09,-4.147864271310414958e-09,-4.839174983195484117e-09,-5.530485695080553277e-09,-6.221796406965622437e-09,-6.913107118850691596e-09,-7.604417830735760756e-09,-8.295728542620829916e-09,-8.987039254505899075e-09,-9.678349966390968235e-09,-1.036966067827603739e-08,-1.106097139016110655e-08,-1.175228210204617571e-08,-1.244359281393124487e-08,-1.313490352581631403e-08,-1.382621423770138319e-08,-1.451752494958645235e-08,-1.520883566147152151e-08,-1.590014637335658902e-08,-1.659145708524165652e-08,-1.728276779712672403e-08,-1.797407850901179153e-08,-1.866538922089685904e-08,-1.935669993278192654e-08,-2.004801064466699405e-08,-2.073932135655206155e-08,-2.143063206843712906e-08,-2.212194278032219656e-08,-2.281325349220726407e-08,-2.350456420409233158e-08,-2.419587491597739908e-08,-2.488718562786246659e-08,-2.557849633974753409e-08,-2.626980705163260160e-08,-2.696111776351766910e-08,-2.765242847540273661e-08,-2.834373918728780411e-08,-2.903504989917287162e-08,-2.972636061105793912e-08,-3.041767132294300994e-08,-3.110898203482808075e-08,-3.180029274671315156e-08,-3.249160345859822238e-08,-3.318291417048329319e-08,-3.387422488236836401e-08,-3.456553559425343482e-08,-3.525684630613850563e-08,-3.594815701802357645e-08,-3.663946772990864726e-08,-3.733077844179371808e-08,-3.802208915367878889e-08,-3.871339986556385970e-08,-3.940471057744893052e-08,-4.009602128933400133e-08,-4.078733200121907215e-08,-4.147864271310414296e-08,-4.216995342498921377e-08,-4.286126413687428459e-08,-4.355257484875935540e-08 +0.000000000000000000e+00,6.523380596480283268e-10,1.304676119296056654e-09,1.957014178944084981e-09,2.609352238592113307e-09,3.261690298240141634e-09,3.914028357888169961e-09,4.566366417536197874e-09,5.218704477184225788e-09,5.871042536832253701e-09,6.523380596480281614e-09,7.175718656128309527e-09,7.828056715776338268e-09,8.480394775424367008e-09,9.132732835072395749e-09,9.785070894720424489e-09,1.043740895436845323e-08,1.108974701401648197e-08,1.174208507366451071e-08,1.239442313331253945e-08,1.304676119296056819e-08,1.369909925260859693e-08,1.435143731225662567e-08,1.500377537190465607e-08,1.565611343155268646e-08,1.630845149120071686e-08,1.696078955084874725e-08,1.761312761049677765e-08,1.826546567014480804e-08,1.891780372979283844e-08,1.957014178944086883e-08,2.022247984908889923e-08,2.087481790873692962e-08,2.152715596838496001e-08,2.217949402803299041e-08,2.283183208768102080e-08,2.348417014732905120e-08,2.413650820697708159e-08,2.478884626662511199e-08,2.544118432627314238e-08,2.609352238592117278e-08,2.674586044556920317e-08,2.739819850521723357e-08,2.805053656486526396e-08,2.870287462451329436e-08,2.935521268416132475e-08,3.000755074380935184e-08,3.065988880345737892e-08,3.131222686310540601e-08,3.196456492275343310e-08,3.261690298240146018e-08,3.326924104204948727e-08,3.392157910169751436e-08,3.457391716134554144e-08,3.522625522099356853e-08,3.587859328064159561e-08,3.653093134028962270e-08,3.718326939993764979e-08,3.783560745958567687e-08,3.848794551923370396e-08,3.914028357888173104e-08,3.979262163852975813e-08,4.044495969817778522e-08,4.109729775782581230e-08 +0.000000000000000000e+00,6.466168351170863307e-10,1.293233670234172661e-09,1.939850505351259096e-09,2.586467340468345737e-09,3.233084175585432377e-09,3.879701010702519018e-09,4.526317845819606073e-09,5.172934680936693127e-09,5.819551516053780182e-09,6.466168351170867236e-09,7.112785186287954291e-09,7.759402021405041346e-09,8.406018856522128400e-09,9.052635691639215455e-09,9.699252526756302509e-09,1.034586936187338956e-08,1.099248619699047662e-08,1.163910303210756367e-08,1.228571986722465073e-08,1.293233670234173778e-08,1.357895353745882484e-08,1.422557037257591189e-08,1.487218720769299895e-08,1.551880404281008600e-08,1.616542087792717140e-08,1.681203771304425680e-08,1.745865454816134220e-08,1.810527138327842760e-08,1.875188821839551300e-08,1.939850505351259840e-08,2.004512188862968380e-08,2.069173872374676920e-08,2.133835555886385460e-08,2.198497239398094000e-08,2.263158922909802540e-08,2.327820606421511080e-08,2.392482289933219620e-08,2.457143973444928160e-08,2.521805656956636700e-08,2.586467340468345240e-08,2.651129023980053780e-08,2.715790707491762320e-08,2.780452391003470860e-08,2.845114074515179400e-08,2.909775758026887940e-08,2.974437441538596480e-08,3.039099125050305020e-08,3.103760808562013891e-08,3.168422492073722762e-08,3.233084175585431633e-08,3.297745859097140504e-08,3.362407542608849375e-08,3.427069226120558246e-08,3.491730909632267117e-08,3.556392593143975987e-08,3.621054276655684858e-08,3.685715960167393729e-08,3.750377643679102600e-08,3.815039327190811471e-08,3.879701010702520342e-08,3.944362694214229213e-08,4.009024377725938084e-08,4.073686061237646955e-08 +0.000000000000000000e+00,6.723741638821469513e-10,1.344748327764293903e-09,2.017122491646440854e-09,2.689496655528587805e-09,3.361870819410734756e-09,4.034244983292881708e-09,4.706619147175028245e-09,5.378993311057174783e-09,6.051367474939321321e-09,6.723741638821467858e-09,7.396115802703614396e-09,8.068489966585761761e-09,8.740864130467909126e-09,9.413238294350056491e-09,1.008561245823220386e-08,1.075798662211435122e-08,1.143036078599649859e-08,1.210273494987864595e-08,1.277510911376079332e-08,1.344748327764294068e-08,1.411985744152508804e-08,1.479223160540723541e-08,1.546460576928938112e-08,1.613697993317152683e-08,1.680935409705367254e-08,1.748172826093581825e-08,1.815410242481796396e-08,1.882647658870010967e-08,1.949885075258225538e-08,2.017122491646440109e-08,2.084359908034654680e-08,2.151597324422869251e-08,2.218834740811083823e-08,2.286072157199298394e-08,2.353309573587512965e-08,2.420546989975727536e-08,2.487784406363942107e-08,2.555021822752156678e-08,2.622259239140371249e-08,2.689496655528585820e-08,2.756734071916800391e-08,2.823971488305014962e-08,2.891208904693229533e-08,2.958446321081444104e-08,3.025683737469658675e-08,3.092921153857873577e-08,3.160158570246088479e-08,3.227395986634303381e-08,3.294633403022518283e-08,3.361870819410733185e-08,3.429108235798948087e-08,3.496345652187162989e-08,3.563583068575377891e-08,3.630820484963592792e-08,3.698057901351807694e-08,3.765295317740022596e-08,3.832532734128237498e-08,3.899770150516452400e-08,3.967007566904667302e-08,4.034244983292882204e-08,4.101482399681097106e-08,4.168719816069312008e-08,4.235957232457526910e-08 +0.000000000000000000e+00,-6.523380598157644251e-10,-1.304676119631528850e-09,-1.957014179447293275e-09,-2.609352239263057700e-09,-3.261690299078822125e-09,-3.914028358894586550e-09,-4.566366418710350975e-09,-5.218704478526115400e-09,-5.871042538341879825e-09,-6.523380598157644251e-09,-7.175718657973408676e-09,-7.828056717789173101e-09,-8.480394777604937526e-09,-9.132732837420701951e-09,-9.785070897236466376e-09,-1.043740895705223080e-08,-1.108974701686799523e-08,-1.174208507668375965e-08,-1.239442313649952408e-08,-1.304676119631528850e-08,-1.369909925613105293e-08,-1.435143731594681735e-08,-1.500377537576258012e-08,-1.565611343557834289e-08,-1.630845149539410566e-08,-1.696078955520986843e-08,-1.761312761502563120e-08,-1.826546567484139398e-08,-1.891780373465715675e-08,-1.957014179447291952e-08,-2.022247985428868229e-08,-2.087481791410444506e-08,-2.152715597392020783e-08,-2.217949403373597060e-08,-2.283183209355173337e-08,-2.348417015336749614e-08,-2.413650821318325891e-08,-2.478884627299902168e-08,-2.544118433281478445e-08,-2.609352239263054722e-08,-2.674586045244630999e-08,-2.739819851226207276e-08,-2.805053657207783554e-08,-2.870287463189359831e-08,-2.935521269170936108e-08,-3.000755075152512054e-08,-3.065988881134088000e-08,-3.131222687115663946e-08,-3.196456493097239892e-08,-3.261690299078815839e-08,-3.326924105060391785e-08,-3.392157911041967731e-08,-3.457391717023543677e-08,-3.522625523005119623e-08,-3.587859328986695570e-08,-3.653093134968271516e-08,-3.718326940949847462e-08,-3.783560746931423408e-08,-3.848794552912999354e-08,-3.914028358894575301e-08,-3.979262164876151247e-08,-4.044495970857727193e-08,-4.109729776839303139e-08 +0.000000000000000000e+00,-6.466168352882348592e-10,-1.293233670576469718e-09,-1.939850505864704577e-09,-2.586467341152939437e-09,-3.233084176441174296e-09,-3.879701011729409155e-09,-4.526317847017644014e-09,-5.172934682305878873e-09,-5.819551517594113732e-09,-6.466168352882348592e-09,-7.112785188170583451e-09,-7.759402023458818310e-09,-8.406018858747053996e-09,-9.052635694035289683e-09,-9.699252529323525369e-09,-1.034586936461176106e-08,-1.099248619989999674e-08,-1.163910303518823243e-08,-1.228571987047646811e-08,-1.293233670576470380e-08,-1.357895354105293949e-08,-1.422557037634117517e-08,-1.487218721162941086e-08,-1.551880404691764655e-08,-1.616542088220588223e-08,-1.681203771749411792e-08,-1.745865455278235361e-08,-1.810527138807058929e-08,-1.875188822335882498e-08,-1.939850505864706066e-08,-2.004512189393529635e-08,-2.069173872922353204e-08,-2.133835556451176772e-08,-2.198497239980000341e-08,-2.263158923508823910e-08,-2.327820607037647478e-08,-2.392482290566471047e-08,-2.457143974095294615e-08,-2.521805657624118184e-08,-2.586467341152941753e-08,-2.651129024681765321e-08,-2.715790708210588890e-08,-2.780452391739412459e-08,-2.845114075268236027e-08,-2.909775758797059596e-08,-2.974437442325883165e-08,-3.039099125854707064e-08,-3.103760809383531294e-08,-3.168422492912355525e-08,-3.233084176441179755e-08,-3.297745859970003986e-08,-3.362407543498828216e-08,-3.427069227027652446e-08,-3.491730910556476677e-08,-3.556392594085300907e-08,-3.621054277614125137e-08,-3.685715961142949368e-08,-3.750377644671773598e-08,-3.815039328200597829e-08,-3.879701011729422059e-08,-3.944362695258246289e-08,-4.009024378787070520e-08,-4.073686062315894750e-08 +0.000000000000000000e+00,-6.723741640618849232e-10,-1.344748328123769846e-09,-2.017122492185654666e-09,-2.689496656247539279e-09,-3.361870820309423892e-09,-4.034244984371308505e-09,-4.706619148433193118e-09,-5.378993312495077731e-09,-6.051367476556962344e-09,-6.723741640618846957e-09,-7.396115804680731570e-09,-8.068489968742615356e-09,-8.740864132804499142e-09,-9.413238296866382928e-09,-1.008561246092826671e-08,-1.075798662499015050e-08,-1.143036078905203429e-08,-1.210273495311391807e-08,-1.277510911717580186e-08,-1.344748328123768564e-08,-1.411985744529956943e-08,-1.479223160936145321e-08,-1.546460577342333865e-08,-1.613697993748522409e-08,-1.680935410154710953e-08,-1.748172826560899497e-08,-1.815410242967088041e-08,-1.882647659373276586e-08,-1.949885075779465130e-08,-2.017122492185653674e-08,-2.084359908591842218e-08,-2.151597324998030762e-08,-2.218834741404219306e-08,-2.286072157810407850e-08,-2.353309574216596394e-08,-2.420546990622784938e-08,-2.487784407028973482e-08,-2.555021823435162026e-08,-2.622259239841350570e-08,-2.689496656247539114e-08,-2.756734072653727658e-08,-2.823971489059916202e-08,-2.891208905466104746e-08,-2.958446321872293290e-08,-3.025683738278481834e-08,-3.092921154684670378e-08,-3.160158571090858922e-08,-3.227395987497047466e-08,-3.294633403903236010e-08,-3.361870820309424554e-08,-3.429108236715613098e-08,-3.496345653121801642e-08,-3.563583069527990186e-08,-3.630820485934178730e-08,-3.698057902340367274e-08,-3.765295318746555818e-08,-3.832532735152744362e-08,-3.899770151558932906e-08,-3.967007567965121450e-08,-4.034244984371309994e-08,-4.101482400777498538e-08,-4.168719817183687082e-08,-4.235957233589875626e-08 +0.000000000000000000e+00,6.611194389379859914e-10,1.322238877875971983e-09,1.983358316813957974e-09,2.644477755751943966e-09,3.305597194689929957e-09,3.966716633627915948e-09,4.627836072565902353e-09,5.288955511503888758e-09,5.950074950441875163e-09,6.611194389379861568e-09,7.272313828317847973e-09,7.933433267255833551e-09,8.594552706193819129e-09,9.255672145131804707e-09,9.916791584069790285e-09,1.057791102300777586e-08,1.123903046194576144e-08,1.190014990088374702e-08,1.256126933982173260e-08,1.322238877875971817e-08,1.388350821769770375e-08,1.454462765663568933e-08,1.520574709557367491e-08,1.586686653451166048e-08,1.652798597344964606e-08,1.718910541238763164e-08,1.785022485132561722e-08,1.851134429026360280e-08,1.917246372920158837e-08,1.983358316813957395e-08,2.049470260707755953e-08,2.115582204601554511e-08,2.181694148495353069e-08,2.247806092389151626e-08,2.313918036282950184e-08,2.380029980176748742e-08,2.446141924070547300e-08,2.512253867964345857e-08,2.578365811858144415e-08,2.644477755751942973e-08,2.710589699645741531e-08,2.776701643539540089e-08,2.842813587433338646e-08,2.908925531327137204e-08,2.975037475220935762e-08,3.041149419114734320e-08,3.107261363008532547e-08,3.173373306902330773e-08,3.239485250796129000e-08,3.305597194689927227e-08,3.371709138583725454e-08,3.437821082477523681e-08,3.503933026371321908e-08,3.570044970265120135e-08,3.636156914158918362e-08,3.702268858052716589e-08,3.768380801946514816e-08,3.834492745840313043e-08,3.900604689734111269e-08,3.966716633627909496e-08,4.032828577521707723e-08,4.098940521415505950e-08,4.165052465309304177e-08 +0.000000000000000000e+00,6.546655253321131141e-10,1.309331050664226228e-09,1.963996575996339446e-09,2.618662101328452870e-09,3.273327626660566294e-09,3.927993151992679719e-09,4.582658677324793143e-09,5.237324202656906567e-09,5.891989727989019991e-09,6.546655253321133416e-09,7.201320778653246840e-09,7.855986303985361091e-09,8.510651829317475343e-09,9.165317354649589594e-09,9.819982879981703846e-09,1.047464840531381810e-08,1.112931393064593235e-08,1.178397945597804660e-08,1.243864498131016085e-08,1.309331050664227510e-08,1.374797603197438935e-08,1.440264155730650361e-08,1.505730708263861786e-08,1.571197260797073211e-08,1.636663813330284636e-08,1.702130365863496061e-08,1.767596918396707486e-08,1.833063470929918911e-08,1.898530023463130337e-08,1.963996575996341762e-08,2.029463128529553187e-08,2.094929681062764612e-08,2.160396233595976037e-08,2.225862786129187462e-08,2.291329338662398888e-08,2.356795891195610313e-08,2.422262443728821738e-08,2.487728996262033163e-08,2.553195548795244588e-08,2.618662101328456013e-08,2.684128653861667438e-08,2.749595206394878864e-08,2.815061758928090289e-08,2.880528311461301714e-08,2.945994863994513139e-08,3.011461416527724233e-08,3.076927969060935658e-08,3.142394521594147084e-08,3.207861074127358509e-08,3.273327626660569934e-08,3.338794179193781359e-08,3.404260731726992784e-08,3.469727284260204209e-08,3.535193836793415634e-08,3.600660389326627060e-08,3.666126941859838485e-08,3.731593494393049910e-08,3.797060046926261335e-08,3.862526599459472760e-08,3.927993151992684185e-08,3.993459704525895610e-08,4.058926257059107036e-08,4.124392809592318461e-08 +0.000000000000000000e+00,6.691078179164997336e-10,1.338215635832999467e-09,2.007323453749499201e-09,2.676431271665998934e-09,3.345539089582498668e-09,4.014646907498998402e-09,4.683754725415498549e-09,5.352862543331998696e-09,6.021970361248498843e-09,6.691078179164998991e-09,7.360185997081499138e-09,8.029293814997998458e-09,8.698401632914497778e-09,9.367509450830997098e-09,1.003661726874749642e-08,1.070572508666399574e-08,1.137483290458049506e-08,1.204394072249699438e-08,1.271304854041349370e-08,1.338215635832999302e-08,1.405126417624649234e-08,1.472037199416299166e-08,1.538947981207949098e-08,1.605858762999599030e-08,1.672769544791248962e-08,1.739680326582898894e-08,1.806591108374548826e-08,1.873501890166198758e-08,1.940412671957848690e-08,2.007323453749498622e-08,2.074234235541148554e-08,2.141145017332798486e-08,2.208055799124448418e-08,2.274966580916098350e-08,2.341877362707748282e-08,2.408788144499398214e-08,2.475698926291048146e-08,2.542609708082698078e-08,2.609520489874348010e-08,2.676431271665997942e-08,2.743342053457647874e-08,2.810252835249297806e-08,2.877163617040947738e-08,2.944074398832597670e-08,3.010985180624247271e-08,3.077895962415896872e-08,3.144806744207546473e-08,3.211717525999196074e-08,3.278628307790845676e-08,3.345539089582495277e-08,3.412449871374144878e-08,3.479360653165794479e-08,3.546271434957444080e-08,3.613182216749093681e-08,3.680092998540743282e-08,3.747003780332392883e-08,3.813914562124042485e-08,3.880825343915692086e-08,3.947736125707341687e-08,4.014646907498991288e-08,4.081557689290640889e-08,4.148468471082290490e-08,4.215379252873940091e-08 +0.000000000000000000e+00,-6.611194390915975671e-10,-1.322238878183195134e-09,-1.983358317274792701e-09,-2.644477756366390268e-09,-3.305597195457987835e-09,-3.966716634549585402e-09,-4.627836073641182556e-09,-5.288955512732779709e-09,-5.950074951824376863e-09,-6.611194390915974016e-09,-7.272313830007571170e-09,-7.933433269099169150e-09,-8.594552708190767131e-09,-9.255672147282365112e-09,-9.916791586373963092e-09,-1.057791102546556107e-08,-1.123903046455715905e-08,-1.190014990364875703e-08,-1.256126934274035501e-08,-1.322238878183195300e-08,-1.388350822092355098e-08,-1.454462766001514896e-08,-1.520574709910674528e-08,-1.586686653819834161e-08,-1.652798597728993794e-08,-1.718910541638153426e-08,-1.785022485547313059e-08,-1.851134429456472691e-08,-1.917246373365632324e-08,-1.983358317274791957e-08,-2.049470261183951589e-08,-2.115582205093111222e-08,-2.181694149002270855e-08,-2.247806092911430487e-08,-2.313918036820590120e-08,-2.380029980729749752e-08,-2.446141924638909385e-08,-2.512253868548069018e-08,-2.578365812457228650e-08,-2.644477756366388283e-08,-2.710589700275547916e-08,-2.776701644184707548e-08,-2.842813588093867181e-08,-2.908925532003026813e-08,-2.975037475912186446e-08,-3.041149419821346410e-08,-3.107261363730506373e-08,-3.173373307639666337e-08,-3.239485251548826300e-08,-3.305597195457986264e-08,-3.371709139367146227e-08,-3.437821083276306191e-08,-3.503933027185466154e-08,-3.570044971094626118e-08,-3.636156915003786081e-08,-3.702268858912946045e-08,-3.768380802822106008e-08,-3.834492746731265972e-08,-3.900604690640425935e-08,-3.966716634549585899e-08,-4.032828578458745862e-08,-4.098940522367905826e-08,-4.165052466277065789e-08 +0.000000000000000000e+00,-6.546655254937450330e-10,-1.309331050987490066e-09,-1.963996576481235202e-09,-2.618662101974980545e-09,-3.273327627468725889e-09,-3.927993152962471232e-09,-4.582658678456216575e-09,-5.237324203949961918e-09,-5.891989729443707261e-09,-6.546655254937452604e-09,-7.201320780431197948e-09,-7.855986305924944118e-09,-8.510651831418689461e-09,-9.165317356912434804e-09,-9.819982882406180147e-09,-1.047464840789992549e-08,-1.112931393339367083e-08,-1.178397945888741618e-08,-1.243864498438116152e-08,-1.309331050987490686e-08,-1.374797603536865221e-08,-1.440264156086239755e-08,-1.505730708635614289e-08,-1.571197261184988824e-08,-1.636663813734363358e-08,-1.702130366283737892e-08,-1.767596918833112427e-08,-1.833063471382486961e-08,-1.898530023931861495e-08,-1.963996576481236029e-08,-2.029463129030610564e-08,-2.094929681579985098e-08,-2.160396234129359632e-08,-2.225862786678734167e-08,-2.291329339228108701e-08,-2.356795891777483235e-08,-2.422262444326857770e-08,-2.487728996876232304e-08,-2.553195549425606838e-08,-2.618662101974981373e-08,-2.684128654524355907e-08,-2.749595207073730441e-08,-2.815061759623104976e-08,-2.880528312172479510e-08,-2.945994864721854044e-08,-3.011461417271228579e-08,-3.076927969820603113e-08,-3.142394522369977647e-08,-3.207861074919352181e-08,-3.273327627468726716e-08,-3.338794180018101250e-08,-3.404260732567475784e-08,-3.469727285116850319e-08,-3.535193837666224853e-08,-3.600660390215599387e-08,-3.666126942764973922e-08,-3.731593495314348456e-08,-3.797060047863722990e-08,-3.862526600413097525e-08,-3.927993152962472059e-08,-3.993459705511846593e-08,-4.058926258061221128e-08,-4.124392810610595662e-08 +0.000000000000000000e+00,-6.691078180873649527e-10,-1.338215636174729905e-09,-2.007323454262094755e-09,-2.676431272349459397e-09,-3.345539090436824040e-09,-4.014646908524188682e-09,-4.683754726611553738e-09,-5.352862544698918794e-09,-6.021970362786283850e-09,-6.691078180873648906e-09,-7.360185998961013963e-09,-8.029293817048379019e-09,-8.698401635135744075e-09,-9.367509453223109131e-09,-1.003661727131047419e-08,-1.070572508939783924e-08,-1.137483290748520430e-08,-1.204394072557256936e-08,-1.271304854365993441e-08,-1.338215636174729947e-08,-1.405126417983466452e-08,-1.472037199792202958e-08,-1.538947981600939629e-08,-1.605858763409676135e-08,-1.672769545218412640e-08,-1.739680327027149146e-08,-1.806591108835885651e-08,-1.873501890644622157e-08,-1.940412672453358663e-08,-2.007323454262095168e-08,-2.074234236070831674e-08,-2.141145017879568179e-08,-2.208055799688304685e-08,-2.274966581497041191e-08,-2.341877363305777696e-08,-2.408788145114514202e-08,-2.475698926923250708e-08,-2.542609708731987213e-08,-2.609520490540723719e-08,-2.676431272349460224e-08,-2.743342054158196730e-08,-2.810252835966933236e-08,-2.877163617775669741e-08,-2.944074399584406247e-08,-3.010985181393142752e-08,-3.077895963201879258e-08,-3.144806745010615764e-08,-3.211717526819352269e-08,-3.278628308628088775e-08,-3.345539090436825280e-08,-3.412449872245561786e-08,-3.479360654054298292e-08,-3.546271435863034797e-08,-3.613182217671771303e-08,-3.680092999480507808e-08,-3.747003781289244314e-08,-3.813914563097980820e-08,-3.880825344906717325e-08,-3.947736126715453831e-08,-4.014646908524190337e-08,-4.081557690332926842e-08,-4.148468472141663348e-08,-4.215379253950399853e-08 +0.000000000000000000e+00,6.739951687301299425e-10,1.347990337460259885e-09,2.021985506190389931e-09,2.695980674920520184e-09,3.369975843650650436e-09,4.043971012380780689e-09,4.717966181110910942e-09,5.391961349841041194e-09,6.065956518571171447e-09,6.739951687301301700e-09,7.413946856031431952e-09,8.087942024761563032e-09,8.761937193491694112e-09,9.435932362221825192e-09,1.010992753095195627e-08,1.078392269968208735e-08,1.145791786841221843e-08,1.213191303714234951e-08,1.280590820587248059e-08,1.347990337460261167e-08,1.415389854333274275e-08,1.482789371206287383e-08,1.550188888079300656e-08,1.617588404952313930e-08,1.684987921825327203e-08,1.752387438698340477e-08,1.819786955571353750e-08,1.887186472444367024e-08,1.954585989317380297e-08,2.021985506190393570e-08,2.089385023063406844e-08,2.156784539936420117e-08,2.224184056809433391e-08,2.291583573682446664e-08,2.358983090555459938e-08,2.426382607428473211e-08,2.493782124301486484e-08,2.561181641174499758e-08,2.628581158047513031e-08,2.695980674920526305e-08,2.763380191793539578e-08,2.830779708666552851e-08,2.898179225539566125e-08,2.965578742412579398e-08,3.032978259285592672e-08,3.100377776158605945e-08,3.167777293031619219e-08,3.235176809904632492e-08,3.302576326777645765e-08,3.369975843650659039e-08,3.437375360523672312e-08,3.504774877396685586e-08,3.572174394269698859e-08,3.639573911142712133e-08,3.706973428015725406e-08,3.774372944888738679e-08,3.841772461761751953e-08,3.909171978634765226e-08,3.976571495507778500e-08,4.043971012380791773e-08,4.111370529253805046e-08,4.178770046126818320e-08,4.246169562999831593e-08 +0.000000000000000000e+00,6.663730890695646630e-10,1.332746178139129326e-09,1.999119267208693782e-09,2.665492356278258239e-09,3.331865445347822695e-09,3.998238534417387565e-09,4.664611623486952434e-09,5.330984712556517304e-09,5.997357801626082174e-09,6.663730890695647044e-09,7.330103979765211914e-09,7.996477068834776783e-09,8.662850157904341653e-09,9.329223246973906523e-09,9.995596336043471393e-09,1.066196942511303626e-08,1.132834251418260113e-08,1.199471560325216600e-08,1.266108869232173087e-08,1.332746178139129574e-08,1.399383487046086061e-08,1.466020795953042548e-08,1.532658104859998870e-08,1.599295413766955026e-08,1.665932722673911182e-08,1.732570031580867338e-08,1.799207340487823494e-08,1.865844649394779650e-08,1.932481958301735806e-08,1.999119267208691962e-08,2.065756576115648119e-08,2.132393885022604275e-08,2.199031193929560431e-08,2.265668502836516587e-08,2.332305811743472743e-08,2.398943120650428899e-08,2.465580429557385055e-08,2.532217738464341211e-08,2.598855047371297367e-08,2.665492356278253524e-08,2.732129665185209680e-08,2.798766974092165836e-08,2.865404282999121992e-08,2.932041591906078148e-08,2.998678900813034304e-08,3.065316209719990460e-08,3.131953518626946616e-08,3.198590827533902772e-08,3.265228136440858929e-08,3.331865445347815085e-08,3.398502754254771241e-08,3.465140063161727397e-08,3.531777372068683553e-08,3.598414680975639709e-08,3.665051989882595865e-08,3.731689298789552021e-08,3.798326607696508177e-08,3.864963916603464334e-08,3.931601225510420490e-08,3.998238534417376646e-08,4.064875843324332802e-08,4.131513152231288958e-08,4.198150461138245114e-08 +0.000000000000000000e+00,6.741180789460193599e-10,1.348236157892038720e-09,2.022354236838057873e-09,2.696472315784077026e-09,3.370590394730096179e-09,4.044708473676115746e-09,4.718826552622135313e-09,5.392944631568154879e-09,6.067062710514174446e-09,6.741180789460194013e-09,7.415298868406213580e-09,8.089416947352233146e-09,8.763535026298252713e-09,9.437653105244272280e-09,1.011177118419029185e-08,1.078588926313631141e-08,1.146000734208233098e-08,1.213412542102835055e-08,1.280824349997437011e-08,1.348236157892038968e-08,1.415647965786640925e-08,1.483059773681242881e-08,1.550471581575845003e-08,1.617883389470446960e-08,1.685295197365048917e-08,1.752707005259650873e-08,1.820118813154252830e-08,1.887530621048854787e-08,1.954942428943456743e-08,2.022354236838058700e-08,2.089766044732660657e-08,2.157177852627262613e-08,2.224589660521864570e-08,2.292001468416466527e-08,2.359413276311068484e-08,2.426825084205670440e-08,2.494236892100272397e-08,2.561648699994874354e-08,2.629060507889476310e-08,2.696472315784078267e-08,2.763884123678680224e-08,2.831295931573282180e-08,2.898707739467884137e-08,2.966119547362486094e-08,3.033531355257088050e-08,3.100943163151690007e-08,3.168354971046291964e-08,3.235766778940893920e-08,3.303178586835495877e-08,3.370590394730097834e-08,3.438002202624699790e-08,3.505414010519301747e-08,3.572825818413903704e-08,3.640237626308505660e-08,3.707649434203107617e-08,3.775061242097709574e-08,3.842473049992311530e-08,3.909884857886913487e-08,3.977296665781515444e-08,4.044708473676117400e-08,4.112120281570719357e-08,4.179532089465321314e-08,4.246943897359923270e-08 +0.000000000000000000e+00,-6.739951688618806855e-10,-1.347990337723761371e-09,-2.021985506585642057e-09,-2.695980675447522742e-09,-3.369975844309403428e-09,-4.043971013171284113e-09,-4.717966182033164385e-09,-5.391961350895044657e-09,-6.065956519756924929e-09,-6.739951688618805201e-09,-7.413946857480685473e-09,-8.087942026342566572e-09,-8.761937195204447671e-09,-9.435932364066328770e-09,-1.010992753292820987e-08,-1.078392270179009097e-08,-1.145791787065197207e-08,-1.213191303951385317e-08,-1.280590820837573427e-08,-1.347990337723761536e-08,-1.415389854609949646e-08,-1.482789371496137756e-08,-1.550188888382326032e-08,-1.617588405268514307e-08,-1.684987922154702582e-08,-1.752387439040890858e-08,-1.819786955927079133e-08,-1.887186472813267408e-08,-1.954585989699455684e-08,-2.021985506585643959e-08,-2.089385023471832234e-08,-2.156784540358020510e-08,-2.224184057244208785e-08,-2.291583574130397060e-08,-2.358983091016585336e-08,-2.426382607902773611e-08,-2.493782124788961886e-08,-2.561181641675150162e-08,-2.628581158561338437e-08,-2.695980675447526712e-08,-2.763380192333714988e-08,-2.830779709219903263e-08,-2.898179226106091539e-08,-2.965578742992279814e-08,-3.032978259878468089e-08,-3.100377776764656034e-08,-3.167777293650843978e-08,-3.235176810537031923e-08,-3.302576327423219867e-08,-3.369975844309407812e-08,-3.437375361195595756e-08,-3.504774878081783701e-08,-3.572174394967971645e-08,-3.639573911854159589e-08,-3.706973428740347534e-08,-3.774372945626535478e-08,-3.841772462512723423e-08,-3.909171979398911367e-08,-3.976571496285099312e-08,-4.043971013171287256e-08,-4.111370530057475201e-08,-4.178770046943663145e-08,-4.246169563829851090e-08 +0.000000000000000000e+00,-6.663730892130252850e-10,-1.332746178426050570e-09,-1.999119267639075855e-09,-2.665492356852101140e-09,-3.331865446065126425e-09,-3.998238535278151710e-09,-4.664611624491176995e-09,-5.330984713704202280e-09,-5.997357802917227565e-09,-6.663730892130252850e-09,-7.330103981343278135e-09,-7.996477070556303420e-09,-8.662850159769327878e-09,-9.329223248982352336e-09,-9.995596338195376793e-09,-1.066196942740840125e-08,-1.132834251662142571e-08,-1.199471560583445017e-08,-1.266108869504747462e-08,-1.332746178426049908e-08,-1.399383487347352354e-08,-1.466020796268654800e-08,-1.532658105189957246e-08,-1.599295414111259691e-08,-1.665932723032562137e-08,-1.732570031953864583e-08,-1.799207340875167029e-08,-1.865844649796469474e-08,-1.932481958717771920e-08,-1.999119267639074366e-08,-2.065756576560376812e-08,-2.132393885481679258e-08,-2.199031194402981703e-08,-2.265668503324284149e-08,-2.332305812245586595e-08,-2.398943121166889041e-08,-2.465580430088191487e-08,-2.532217739009493932e-08,-2.598855047930796378e-08,-2.665492356852098824e-08,-2.732129665773401270e-08,-2.798766974694703715e-08,-2.865404283616006161e-08,-2.932041592537308607e-08,-2.998678901458611053e-08,-3.065316210379913168e-08,-3.131953519301215283e-08,-3.198590828222517398e-08,-3.265228137143819512e-08,-3.331865446065121627e-08,-3.398502754986423742e-08,-3.465140063907725857e-08,-3.531777372829027972e-08,-3.598414681750330087e-08,-3.665051990671632202e-08,-3.731689299592934317e-08,-3.798326608514236432e-08,-3.864963917435538547e-08,-3.931601226356840662e-08,-3.998238535278142776e-08,-4.064875844199444891e-08,-4.131513153120747006e-08,-4.198150462042049121e-08 +0.000000000000000000e+00,-6.741180791007713074e-10,-1.348236158201542615e-09,-2.022354237302313819e-09,-2.696472316403084816e-09,-3.370590395503855813e-09,-4.044708474604626811e-09,-4.718826553705397808e-09,-5.392944632806168805e-09,-6.067062711906939802e-09,-6.741180791007710800e-09,-7.415298870108481797e-09,-8.089416949209251967e-09,-8.763535028310022137e-09,-9.437653107410792307e-09,-1.011177118651156248e-08,-1.078588926561233265e-08,-1.146000734471310282e-08,-1.213412542381387299e-08,-1.280824350291464316e-08,-1.348236158201541333e-08,-1.415647966111618350e-08,-1.483059774021695367e-08,-1.550471581931772218e-08,-1.617883389841849070e-08,-1.685295197751925921e-08,-1.752707005662002773e-08,-1.820118813572079625e-08,-1.887530621482156476e-08,-1.954942429392233328e-08,-2.022354237302310179e-08,-2.089766045212387031e-08,-2.157177853122463882e-08,-2.224589661032540734e-08,-2.292001468942617586e-08,-2.359413276852694437e-08,-2.426825084762771289e-08,-2.494236892672848140e-08,-2.561648700582924992e-08,-2.629060508493001843e-08,-2.696472316403078695e-08,-2.763884124313155547e-08,-2.831295932223232398e-08,-2.898707740133309250e-08,-2.966119548043386101e-08,-3.033531355953462953e-08,-3.100943163863539804e-08,-3.168354971773616656e-08,-3.235766779683693508e-08,-3.303178587593770359e-08,-3.370590395503847211e-08,-3.438002203413924062e-08,-3.505414011324000914e-08,-3.572825819234077765e-08,-3.640237627144154617e-08,-3.707649435054231469e-08,-3.775061242964308320e-08,-3.842473050874385172e-08,-3.909884858784462023e-08,-3.977296666694538875e-08,-4.044708474604615726e-08,-4.112120282514692578e-08,-4.179532090424769430e-08,-4.246943898334846281e-08 +0.000000000000000000e+00,6.885485940290279059e-10,1.377097188058055812e-09,2.065645782087083821e-09,2.754194376116112037e-09,3.442742970145140253e-09,4.131291564174168469e-09,4.819840158203197099e-09,5.508388752232225729e-09,6.196937346261254358e-09,6.885485940290282988e-09,7.574034534319311618e-09,8.262583128348340247e-09,8.951131722377368877e-09,9.639680316406397507e-09,1.032822891043542614e-08,1.101677750446445477e-08,1.170532609849348340e-08,1.239387469252251203e-08,1.308242328655154066e-08,1.377097188058056928e-08,1.445952047460959791e-08,1.514806906863862654e-08,1.583661766266765517e-08,1.652516625669668380e-08,1.721371485072571243e-08,1.790226344475474106e-08,1.859081203878376969e-08,1.927936063281279832e-08,1.996790922684182695e-08,2.065645782087085558e-08,2.134500641489988421e-08,2.203355500892891284e-08,2.272210360295794147e-08,2.341065219698697010e-08,2.409920079101599873e-08,2.478774938504502736e-08,2.547629797907405599e-08,2.616484657310308462e-08,2.685339516713211325e-08,2.754194376116114188e-08,2.823049235519017051e-08,2.891904094921919914e-08,2.960758954324822777e-08,3.029613813727725971e-08,3.098468673130629164e-08,3.167323532533532358e-08,3.236178391936435552e-08,3.305033251339338746e-08,3.373888110742241940e-08,3.442742970145145134e-08,3.511597829548048327e-08,3.580452688950951521e-08,3.649307548353854715e-08,3.718162407756757909e-08,3.787017267159661103e-08,3.855872126562564297e-08,3.924726985965467490e-08,3.993581845368370684e-08,4.062436704771273878e-08,4.131291564174177072e-08,4.200146423577080266e-08,4.269001282979983460e-08,4.337856142382886654e-08 +0.000000000000000000e+00,6.808977683073141410e-10,1.361795536614628282e-09,2.042693304921942526e-09,2.723591073229256978e-09,3.404488841536571429e-09,4.085386609843885880e-09,4.766284378151200331e-09,5.447182146458514782e-09,6.128079914765829234e-09,6.808977683073143685e-09,7.489875451380458963e-09,8.170773219687773414e-09,8.851670987995087866e-09,9.532568756302402317e-09,1.021346652460971677e-08,1.089436429291703122e-08,1.157526206122434567e-08,1.225615982953166012e-08,1.293705759783897457e-08,1.361795536614628902e-08,1.429885313445360348e-08,1.497975090276091793e-08,1.566064867106823238e-08,1.634154643937554683e-08,1.702244420768286128e-08,1.770334197599017573e-08,1.838423974429749018e-08,1.906513751260480463e-08,1.974603528091211908e-08,2.042693304921943354e-08,2.110783081752674799e-08,2.178872858583406244e-08,2.246962635414137689e-08,2.315052412244869134e-08,2.383142189075600579e-08,2.451231965906332024e-08,2.519321742737063469e-08,2.587411519567794915e-08,2.655501296398526360e-08,2.723591073229257805e-08,2.791680850059989250e-08,2.859770626890720695e-08,2.927860403721452140e-08,2.995950180552183585e-08,3.064039957382914700e-08,3.132129734213645814e-08,3.200219511044376928e-08,3.268309287875108042e-08,3.336399064705839157e-08,3.404488841536570271e-08,3.472578618367301385e-08,3.540668395198032499e-08,3.608758172028763614e-08,3.676847948859494728e-08,3.744937725690225842e-08,3.813027502520956956e-08,3.881117279351688070e-08,3.949207056182419185e-08,4.017296833013150299e-08,4.085386609843881413e-08,4.153476386674612527e-08,4.221566163505343642e-08,4.289655940336074756e-08 +0.000000000000000000e+00,6.840406468550154166e-10,1.368081293710030833e-09,2.052121940565046353e-09,2.736162587420062080e-09,3.420203234275077807e-09,4.104243881130093534e-09,4.788284527985109260e-09,5.472325174840124987e-09,6.156365821695140714e-09,6.840406468550156441e-09,7.524447115405172167e-09,8.208487762260188721e-09,8.892528409115205275e-09,9.576569055970221829e-09,1.026060970282523838e-08,1.094465034968025494e-08,1.162869099653527149e-08,1.231273164339028805e-08,1.299677229024530460e-08,1.368081293710032115e-08,1.436485358395533771e-08,1.504889423081035426e-08,1.573293487766536916e-08,1.641697552452038406e-08,1.710101617137539896e-08,1.778505681823041386e-08,1.846909746508542876e-08,1.915313811194044366e-08,1.983717875879545856e-08,2.052121940565047346e-08,2.120526005250548836e-08,2.188930069936050326e-08,2.257334134621551816e-08,2.325738199307053306e-08,2.394142263992554796e-08,2.462546328678056286e-08,2.530950393363557776e-08,2.599354458049059265e-08,2.667758522734560755e-08,2.736162587420062245e-08,2.804566652105563735e-08,2.872970716791065225e-08,2.941374781476566715e-08,3.009778846162068205e-08,3.078182910847569695e-08,3.146586975533071185e-08,3.214991040218572675e-08,3.283395104904074165e-08,3.351799169589575655e-08,3.420203234275077145e-08,3.488607298960578635e-08,3.557011363646080125e-08,3.625415428331581615e-08,3.693819493017083105e-08,3.762223557702584595e-08,3.830627622388086085e-08,3.899031687073587575e-08,3.967435751759089065e-08,4.035839816444590555e-08,4.104243881130092045e-08,4.172647945815593535e-08,4.241052010501095025e-08,4.309456075186596514e-08 +0.000000000000000000e+00,-6.885485941359834965e-10,-1.377097188271966993e-09,-2.065645782407950489e-09,-2.754194376543933986e-09,-3.442742970679917482e-09,-4.131291564815900979e-09,-4.819840158951884889e-09,-5.508388753087868799e-09,-6.196937347223852709e-09,-6.885485941359836619e-09,-7.574034535495820529e-09,-8.262583129631803612e-09,-8.951131723767786695e-09,-9.639680317903769778e-09,-1.032822891203975286e-08,-1.101677750617573594e-08,-1.170532610031171903e-08,-1.239387469444770211e-08,-1.308242328858368519e-08,-1.377097188271966828e-08,-1.445952047685565136e-08,-1.514806907099163444e-08,-1.583661766512761752e-08,-1.652516625926360061e-08,-1.721371485339958369e-08,-1.790226344753556677e-08,-1.859081204167154986e-08,-1.927936063580753294e-08,-1.996790922994351602e-08,-2.065645782407949910e-08,-2.134500641821548219e-08,-2.203355501235146527e-08,-2.272210360648744835e-08,-2.341065220062343144e-08,-2.409920079475941452e-08,-2.478774938889539760e-08,-2.547629798303138068e-08,-2.616484657716736377e-08,-2.685339517130334685e-08,-2.754194376543932993e-08,-2.823049235957531302e-08,-2.891904095371129610e-08,-2.960758954784727918e-08,-3.029613814198326226e-08,-3.098468673611924535e-08,-3.167323533025522843e-08,-3.236178392439121151e-08,-3.305033251852719460e-08,-3.373888111266317768e-08,-3.442742970679916076e-08,-3.511597830093514384e-08,-3.580452689507112693e-08,-3.649307548920711001e-08,-3.718162408334309309e-08,-3.787017267747907618e-08,-3.855872127161505926e-08,-3.924726986575104234e-08,-3.993581845988702542e-08,-4.062436705402300851e-08,-4.131291564815899159e-08,-4.200146424229497467e-08,-4.269001283643095776e-08,-4.337856143056694084e-08 +0.000000000000000000e+00,-6.808977684270056247e-10,-1.361795536854011249e-09,-2.042693305281016667e-09,-2.723591073708022085e-09,-3.404488842135027503e-09,-4.085386610562033334e-09,-4.766284378989039166e-09,-5.447182147416044997e-09,-6.128079915843050829e-09,-6.808977684270056660e-09,-7.489875452697062492e-09,-8.170773221124068323e-09,-8.851670989551074155e-09,-9.532568757978079986e-09,-1.021346652640508582e-08,-1.089436429483209165e-08,-1.157526206325909748e-08,-1.225615983168610331e-08,-1.293705760011310914e-08,-1.361795536854011498e-08,-1.429885313696712081e-08,-1.497975090539412498e-08,-1.566064867382112916e-08,-1.634154644224813334e-08,-1.702244421067513752e-08,-1.770334197910214169e-08,-1.838423974752914587e-08,-1.906513751595615005e-08,-1.974603528438315422e-08,-2.042693305281015840e-08,-2.110783082123716258e-08,-2.178872858966416675e-08,-2.246962635809117093e-08,-2.315052412651817511e-08,-2.383142189494517929e-08,-2.451231966337218346e-08,-2.519321743179918764e-08,-2.587411520022619182e-08,-2.655501296865319599e-08,-2.723591073708020017e-08,-2.791680850550720435e-08,-2.859770627393420853e-08,-2.927860404236121270e-08,-2.995950181078821688e-08,-3.064039957921521775e-08,-3.132129734764221862e-08,-3.200219511606921949e-08,-3.268309288449622035e-08,-3.336399065292322122e-08,-3.404488842135022209e-08,-3.472578618977722296e-08,-3.540668395820422383e-08,-3.608758172663122470e-08,-3.676847949505822556e-08,-3.744937726348522643e-08,-3.813027503191222730e-08,-3.881117280033922817e-08,-3.949207056876622904e-08,-4.017296833719322991e-08,-4.085386610562023077e-08,-4.153476387404723164e-08,-4.221566164247423251e-08,-4.289655941090123338e-08 +0.000000000000000000e+00,-6.840406469887958540e-10,-1.368081293977591708e-09,-2.052121940966387769e-09,-2.736162587955183830e-09,-3.420203234943979891e-09,-4.104243881932775538e-09,-4.788284528921571185e-09,-5.472325175910366832e-09,-6.156365822899162480e-09,-6.840406469887958127e-09,-7.524447116876754601e-09,-8.208487763865551076e-09,-8.892528410854347550e-09,-9.576569057843144025e-09,-1.026060970483194050e-08,-1.094465035182073697e-08,-1.162869099880953345e-08,-1.231273164579832992e-08,-1.299677229278712640e-08,-1.368081293977592287e-08,-1.436485358676471935e-08,-1.504889423375351582e-08,-1.573293488074231229e-08,-1.641697552773110877e-08,-1.710101617471990524e-08,-1.778505682170870172e-08,-1.846909746869749819e-08,-1.915313811568629467e-08,-1.983717876267509114e-08,-2.052121940966388762e-08,-2.120526005665268409e-08,-2.188930070364148056e-08,-2.257334135063027704e-08,-2.325738199761907351e-08,-2.394142264460786999e-08,-2.462546329159666646e-08,-2.530950393858546294e-08,-2.599354458557425941e-08,-2.667758523256305589e-08,-2.736162587955185236e-08,-2.804566652654064883e-08,-2.872970717352944531e-08,-2.941374782051824178e-08,-3.009778846750703826e-08,-3.078182911449583142e-08,-3.146586976148462459e-08,-3.214991040847341775e-08,-3.283395105546221092e-08,-3.351799170245100409e-08,-3.420203234943979725e-08,-3.488607299642859042e-08,-3.557011364341738358e-08,-3.625415429040617675e-08,-3.693819493739496991e-08,-3.762223558438376308e-08,-3.830627623137255625e-08,-3.899031687836134941e-08,-3.967435752535014258e-08,-4.035839817233893574e-08,-4.104243881932772891e-08,-4.172647946631652207e-08,-4.241052011330531524e-08,-4.309456076029410841e-08 +0.000000000000000000e+00,6.988243848732226432e-10,1.397648769746445286e-09,2.096473154619667723e-09,2.795297539492890159e-09,3.494121924366112595e-09,4.192946309239335445e-09,4.891770694112558295e-09,5.590595078985781145e-09,6.289419463859003995e-09,6.988243848732226845e-09,7.687068233605449695e-09,8.385892618478672545e-09,9.084717003351895395e-09,9.783541388225118245e-09,1.048236577309834110e-08,1.118119015797156395e-08,1.188001454284478680e-08,1.257883892771800964e-08,1.327766331259123249e-08,1.397648769746445534e-08,1.467531208233767819e-08,1.537413646721089939e-08,1.607296085208412059e-08,1.677178523695734178e-08,1.747060962183056298e-08,1.816943400670378417e-08,1.886825839157700537e-08,1.956708277645022656e-08,2.026590716132344776e-08,2.096473154619666896e-08,2.166355593106989015e-08,2.236238031594311135e-08,2.306120470081633254e-08,2.376002908568955374e-08,2.445885347056277493e-08,2.515767785543599613e-08,2.585650224030921732e-08,2.655532662518243852e-08,2.725415101005565972e-08,2.795297539492888091e-08,2.865179977980210211e-08,2.935062416467532330e-08,3.004944854954854781e-08,3.074827293442177231e-08,3.144709731929499682e-08,3.214592170416822132e-08,3.284474608904144582e-08,3.354357047391467033e-08,3.424239485878789483e-08,3.494121924366111934e-08,3.564004362853434384e-08,3.633886801340756835e-08,3.703769239828079285e-08,3.773651678315401735e-08,3.843534116802724186e-08,3.913416555290046636e-08,3.983298993777369087e-08,4.053181432264691537e-08,4.123063870752013988e-08,4.192946309239336438e-08,4.262828747726658888e-08,4.332711186213981339e-08,4.402593624701303789e-08 +0.000000000000000000e+00,6.943742022022645148e-10,1.388748404404529030e-09,2.083122606606793441e-09,2.777496808809057645e-09,3.471871011011321850e-09,4.166245213213586055e-09,4.860619415415849846e-09,5.554993617618113637e-09,6.249367819820377428e-09,6.943742022022641219e-09,7.638116224224905009e-09,8.332490426427168800e-09,9.026864628629432591e-09,9.721238830831696382e-09,1.041561303303396017e-08,1.110998723523622396e-08,1.180436143743848776e-08,1.249873563964075155e-08,1.319310984184301534e-08,1.388748404404527913e-08,1.458185824624754292e-08,1.527623244844980671e-08,1.597060665065206885e-08,1.666498085285433098e-08,1.735935505505659312e-08,1.805372925725885526e-08,1.874810345946111739e-08,1.944247766166337953e-08,2.013685186386564167e-08,2.083122606606790380e-08,2.152560026827016594e-08,2.221997447047242808e-08,2.291434867267469021e-08,2.360872287487695235e-08,2.430309707707921449e-08,2.499747127928147662e-08,2.569184548148373876e-08,2.638621968368600090e-08,2.708059388588826303e-08,2.777496808809052517e-08,2.846934229029278731e-08,2.916371649249504944e-08,2.985809069469731158e-08,3.055246489689957372e-08,3.124683909910183585e-08,3.194121330130409799e-08,3.263558750350636013e-08,3.332996170570862226e-08,3.402433590791088440e-08,3.471871011011314654e-08,3.541308431231540867e-08,3.610745851451767081e-08,3.680183271671993295e-08,3.749620691892219508e-08,3.819058112112445722e-08,3.888495532332671936e-08,3.957932952552898149e-08,4.027370372773124363e-08,4.096807792993350577e-08,4.166245213213576790e-08,4.235682633433803004e-08,4.305120053654029217e-08,4.374557473874255431e-08 +0.000000000000000000e+00,6.941155683796306166e-10,1.388231136759261233e-09,2.082346705138891953e-09,2.776462273518522880e-09,3.470577841898153807e-09,4.164693410277784733e-09,4.858808978657416074e-09,5.552924547037047414e-09,6.247040115416678754e-09,6.941155683796310095e-09,7.635271252175941435e-09,8.329386820555572776e-09,9.023502388935204116e-09,9.717617957314835456e-09,1.041173352569446680e-08,1.110584909407409814e-08,1.179996466245372948e-08,1.249408023083336082e-08,1.318819579921299216e-08,1.388231136759262350e-08,1.457642693597225484e-08,1.527054250435188618e-08,1.596465807273151752e-08,1.665877364111114886e-08,1.735288920949078020e-08,1.804700477787041154e-08,1.874112034625004288e-08,1.943523591462967422e-08,2.012935148300930556e-08,2.082346705138893690e-08,2.151758261976856824e-08,2.221169818814819958e-08,2.290581375652783092e-08,2.359992932490746226e-08,2.429404489328709360e-08,2.498816046166672494e-08,2.568227603004635628e-08,2.637639159842598762e-08,2.707050716680561897e-08,2.776462273518525031e-08,2.845873830356488165e-08,2.915285387194451299e-08,2.984696944032414433e-08,3.054108500870377898e-08,3.123520057708341362e-08,3.192931614546304827e-08,3.262343171384268292e-08,3.331754728222231757e-08,3.401166285060195222e-08,3.470577841898158687e-08,3.539989398736122152e-08,3.609400955574085617e-08,3.678812512412049082e-08,3.748224069250012547e-08,3.817635626087976012e-08,3.887047182925939476e-08,3.956458739763902941e-08,4.025870296601866406e-08,4.095281853439829871e-08,4.164693410277793336e-08,4.234104967115756801e-08,4.303516523953720266e-08,4.372928080791683731e-08 +0.000000000000000000e+00,-6.988243849547853399e-10,-1.397648769909570680e-09,-2.096473154864356020e-09,-2.795297539819141360e-09,-3.494121924773926700e-09,-4.192946309728712039e-09,-4.891770694683497379e-09,-5.590595079638282719e-09,-6.289419464593068059e-09,-6.988243849547853399e-09,-7.687068234502639566e-09,-8.385892619457425733e-09,-9.084717004412211900e-09,-9.783541389366998067e-09,-1.048236577432178423e-08,-1.118119015927657040e-08,-1.188001454423135657e-08,-1.257883892918614274e-08,-1.327766331414092890e-08,-1.397648769909571507e-08,-1.467531208405050124e-08,-1.537413646900528575e-08,-1.607296085396007026e-08,-1.677178523891485478e-08,-1.747060962386963929e-08,-1.816943400882442380e-08,-1.886825839377920831e-08,-1.956708277873399283e-08,-2.026590716368877734e-08,-2.096473154864356185e-08,-2.166355593359834636e-08,-2.236238031855313088e-08,-2.306120470350791539e-08,-2.376002908846269990e-08,-2.445885347341748442e-08,-2.515767785837226893e-08,-2.585650224332705344e-08,-2.655532662828183795e-08,-2.725415101323662247e-08,-2.795297539819140698e-08,-2.865179978314619149e-08,-2.935062416810097600e-08,-3.004944855305576052e-08,-3.074827293801054503e-08,-3.144709732296532954e-08,-3.214592170792011405e-08,-3.284474609287489857e-08,-3.354357047782968308e-08,-3.424239486278446759e-08,-3.494121924773925211e-08,-3.564004363269403662e-08,-3.633886801764882113e-08,-3.703769240260360564e-08,-3.773651678755839016e-08,-3.843534117251317467e-08,-3.913416555746795918e-08,-3.983298994242274369e-08,-4.053181432737752821e-08,-4.123063871233231272e-08,-4.192946309728709723e-08,-4.262828748224188175e-08,-4.332711186719666626e-08,-4.402593625215145077e-08 +0.000000000000000000e+00,-6.943742022961956296e-10,-1.388748404592391259e-09,-2.083122606888586992e-09,-2.777496809184782932e-09,-3.471871011480978872e-09,-4.166245213777174812e-09,-4.860619416073370751e-09,-5.554993618369566691e-09,-6.249367820665762631e-09,-6.943742022961958571e-09,-7.638116225258154511e-09,-8.332490427554351278e-09,-9.026864629850548045e-09,-9.721238832146744812e-09,-1.041561303444294158e-08,-1.110998723673913835e-08,-1.180436143903533511e-08,-1.249873564133153188e-08,-1.319310984362772865e-08,-1.388748404592392541e-08,-1.458185824822012218e-08,-1.527623245051631895e-08,-1.597060665281251571e-08,-1.666498085510871248e-08,-1.735935505740490925e-08,-1.805372925970110602e-08,-1.874810346199730278e-08,-1.944247766429349955e-08,-2.013685186658969632e-08,-2.083122606888589308e-08,-2.152560027118208985e-08,-2.221997447347828662e-08,-2.291434867577448338e-08,-2.360872287807068015e-08,-2.430309708036687692e-08,-2.499747128266307369e-08,-2.569184548495927045e-08,-2.638621968725546722e-08,-2.708059388955166399e-08,-2.777496809184786075e-08,-2.846934229414405752e-08,-2.916371649644025429e-08,-2.985809069873645436e-08,-3.055246490103265775e-08,-3.124683910332886113e-08,-3.194121330562506452e-08,-3.263558750792126790e-08,-3.332996171021747128e-08,-3.402433591251367467e-08,-3.471871011480987805e-08,-3.541308431710608144e-08,-3.610745851940228482e-08,-3.680183272169848821e-08,-3.749620692399469159e-08,-3.819058112629089498e-08,-3.888495532858709836e-08,-3.957932953088330174e-08,-4.027370373317950513e-08,-4.096807793547570851e-08,-4.166245213777191190e-08,-4.235682634006811528e-08,-4.305120054236431867e-08,-4.374557474466052205e-08 +0.000000000000000000e+00,-6.941155684906968812e-10,-1.388231136981393762e-09,-2.082346705472090644e-09,-2.776462273962787525e-09,-3.470577842453484406e-09,-4.164693410944181287e-09,-4.858808979434878168e-09,-5.552924547925575050e-09,-6.247040116416271931e-09,-6.941155684906968812e-09,-7.635271253397665693e-09,-8.329386821888362574e-09,-9.023502390379059456e-09,-9.717617958869756337e-09,-1.041173352736045322e-08,-1.110584909585115010e-08,-1.179996466434184698e-08,-1.249408023283254386e-08,-1.318819580132324074e-08,-1.388231136981393762e-08,-1.457642693830463451e-08,-1.527054250679533139e-08,-1.596465807528602992e-08,-1.665877364377672846e-08,-1.735288921226742699e-08,-1.804700478075812553e-08,-1.874112034924882406e-08,-1.943523591773952260e-08,-2.012935148623022114e-08,-2.082346705472091967e-08,-2.151758262321161821e-08,-2.221169819170231674e-08,-2.290581376019301528e-08,-2.359992932868371381e-08,-2.429404489717441235e-08,-2.498816046566511088e-08,-2.568227603415580942e-08,-2.637639160264650796e-08,-2.707050717113720649e-08,-2.776462273962790503e-08,-2.845873830811860356e-08,-2.915285387660930210e-08,-2.984696944510000063e-08,-3.054108501359069586e-08,-3.123520058208139109e-08,-3.192931615057208631e-08,-3.262343171906278154e-08,-3.331754728755347677e-08,-3.401166285604417199e-08,-3.470577842453486722e-08,-3.539989399302556245e-08,-3.609400956151625767e-08,-3.678812513000695290e-08,-3.748224069849764813e-08,-3.817635626698834336e-08,-3.887047183547903858e-08,-3.956458740396973381e-08,-4.025870297246042904e-08,-4.095281854095112426e-08,-4.164693410944181949e-08,-4.234104967793251472e-08,-4.303516524642320994e-08,-4.372928081491390517e-08 +0.000000000000000000e+00,6.855279720763180121e-10,1.371055944152636024e-09,2.056583916228953933e-09,2.742111888305272048e-09,3.427639860381589750e-09,4.113167832457907866e-09,4.798695804534225568e-09,5.484223776610544097e-09,6.169751748686860972e-09,6.855279720763178673e-09,7.540807692839495548e-09,8.226335664915812423e-09,8.911863636992129298e-09,9.597391609068446172e-09,1.028291958114476305e-08,1.096844755322107827e-08,1.165397552529739680e-08,1.233950349737371533e-08,1.302503146945003055e-08,1.371055944152634577e-08,1.439608741360266430e-08,1.508161538567898117e-08,1.576714335775529804e-08,1.645267132983161492e-08,1.713819930190793179e-08,1.782372727398424867e-08,1.850925524606056554e-08,1.919478321813688242e-08,1.988031119021320260e-08,2.056583916228951617e-08,2.125136713436583304e-08,2.193689510644214992e-08,2.262242307851846348e-08,2.330795105059478367e-08,2.399347902267110054e-08,2.467900699474741742e-08,2.536453496682373760e-08,2.605006293890005117e-08,2.673559091097636804e-08,2.742111888305268492e-08,2.810664685512899848e-08,2.879217482720531866e-08,2.947770279928163554e-08,3.016323077135795572e-08,3.084875874343427591e-08,3.153428671551059609e-08,3.221981468758691627e-08,3.290534265966323646e-08,3.359087063173955664e-08,3.427639860381587682e-08,3.496192657589219701e-08,3.564745454796851719e-08,3.633298252004483737e-08,3.701851049212115756e-08,3.770403846419747774e-08,3.838956643627379792e-08,3.907509440835011811e-08,3.976062238042643829e-08,4.044615035250276509e-08,4.113167832457907866e-08,4.181720629665539222e-08,4.250273426873171903e-08,4.318826224080804583e-08 +0.000000000000000000e+00,-2.981310918637026854e-20,-5.962621837274053708e-20,-8.943932755911081164e-20,-1.192524367454810982e-19,-1.490655459318513848e-19,-1.788786551182216955e-19,-2.086917643045919580e-19,-2.385048734909622446e-19,-2.683179826773325312e-19,-2.981310918637028178e-19,-3.279442010500731526e-19,-3.577573102364433910e-19,-3.875704194228136776e-19,-4.173835286091839642e-19,-4.471966377955542508e-19,-4.770097469819245855e-19,-5.068228561682949203e-19,-5.366359653546652550e-19,-5.664490745410355898e-19,-5.962621837274059245e-19,-6.260752929137762592e-19,-6.558884021001464977e-19,-6.857015112865169287e-19,-7.155146204728872635e-19,-7.453277296592575982e-19,-7.751408388456280293e-19,-8.049539480319982677e-19,-8.347670572183686025e-19,-8.645801664047389372e-19,-8.943932755911092719e-19,-9.242063847774797030e-19,-9.540194939638501340e-19,-9.838326031502205651e-19,-1.013645712336590996e-18,-1.043458821522961427e-18,-1.073271930709331858e-18,-1.103085039895702289e-18,-1.132898149082072720e-18,-1.162711258268443344e-18,-1.192524367454813582e-18,-1.222337476641184013e-18,-1.252150585827554444e-18,-1.281963695013924683e-18,-1.311776804200295307e-18,-1.341589913386665738e-18,-1.371403022573036169e-18,-1.401216131759406792e-18,-1.431029240945777031e-18,-1.460842350132147462e-18,-1.490655459318517893e-18,-1.520468568504888131e-18,-1.550281677691258755e-18,-1.580094786877629186e-18,-1.609907896063999617e-18,-1.639721005250370241e-18,-1.669534114436740479e-18,-1.699347223623110910e-18,-1.729160332809481341e-18,-1.758973441995851772e-18,-1.788786551182222011e-18,-1.818599660368592249e-18,-1.848412769554962487e-18,-1.878225878741332726e-18 +0.000000000000000000e+00,6.958839665185068001e-10,1.391767933037013600e-09,2.087651899555520400e-09,2.783535866074027200e-09,3.479419832592534000e-09,4.175303799111040801e-09,4.871187765629547601e-09,5.567071732148054401e-09,6.262955698666561201e-09,6.958839665185068001e-09,7.654723631703575628e-09,8.350607598222083256e-09,9.046491564740590883e-09,9.742375531259098510e-09,1.043825949777760614e-08,1.113414346429611376e-08,1.183002743081462139e-08,1.252591139733312902e-08,1.322179536385163665e-08,1.391767933037014427e-08,1.461356329688865190e-08,1.530944726340715787e-08,1.600533122992566385e-08,1.670121519644416982e-08,1.739709916296267579e-08,1.809298312948118177e-08,1.878886709599968774e-08,1.948475106251819371e-08,2.018063502903669968e-08,2.087651899555520566e-08,2.157240296207371163e-08,2.226828692859221760e-08,2.296417089511072358e-08,2.366005486162922955e-08,2.435593882814773552e-08,2.505182279466624149e-08,2.574770676118474747e-08,2.644359072770325344e-08,2.713947469422175941e-08,2.783535866074026539e-08,2.853124262725877136e-08,2.922712659377727733e-08,2.992301056029578331e-08,3.061889452681428928e-08,3.131477849333279525e-08,3.201066245985130122e-08,3.270654642636980720e-08,3.340243039288831317e-08,3.409831435940681914e-08,3.479419832592532512e-08,3.549008229244383109e-08,3.618596625896233706e-08,3.688185022548084303e-08,3.757773419199934901e-08,3.827361815851785498e-08,3.896950212503636095e-08,3.966538609155486693e-08,4.036127005807337290e-08,4.105715402459187887e-08,4.175303799111038484e-08,4.244892195762889082e-08,4.314480592414739679e-08,4.384068989066590276e-08 +0.000000000000000000e+00,6.939534007687208796e-10,1.387906801537441759e-09,2.081860202306162742e-09,2.775813603074883932e-09,3.469767003843605122e-09,4.163720404612326312e-09,4.857673805381047915e-09,5.551627206149769519e-09,6.245580606918491122e-09,6.939534007687212726e-09,7.633487408455934329e-09,8.327440809224655932e-09,9.021394209993377536e-09,9.715347610762099139e-09,1.040930101153082074e-08,1.110325441229954235e-08,1.179720781306826395e-08,1.249116121383698555e-08,1.318511461460570716e-08,1.387906801537442876e-08,1.457302141614315036e-08,1.526697481691187197e-08,1.596092821768059522e-08,1.665488161844931848e-08,1.734883501921804174e-08,1.804278841998676500e-08,1.873674182075548826e-08,1.943069522152421151e-08,2.012464862229293477e-08,2.081860202306165803e-08,2.151255542383038129e-08,2.220650882459910454e-08,2.290046222536782780e-08,2.359441562613655106e-08,2.428836902690527432e-08,2.498232242767399758e-08,2.567627582844272083e-08,2.637022922921144409e-08,2.706418262998016735e-08,2.775813603074889061e-08,2.845208943151761386e-08,2.914604283228633712e-08,2.983999623305506038e-08,3.053394963382378364e-08,3.122790303459250690e-08,3.192185643536123015e-08,3.261580983612995341e-08,3.330976323689867667e-08,3.400371663766739993e-08,3.469767003843612318e-08,3.539162343920484644e-08,3.608557683997356970e-08,3.677953024074229296e-08,3.747348364151101622e-08,3.816743704227973947e-08,3.886139044304846273e-08,3.955534384381718599e-08,4.024929724458590925e-08,4.094325064535463250e-08,4.163720404612335576e-08,4.233115744689207902e-08,4.302511084766080228e-08,4.371906424842952554e-08 +0.000000000000000000e+00,3.428187971380419770e-10,6.856375942760839541e-10,1.028456391414125879e-09,1.371275188552167908e-09,1.714093985690209523e-09,2.056912782828251345e-09,2.399731579966293167e-09,2.742550377104334989e-09,3.085369174242377225e-09,3.428187971380418633e-09,3.771006768518460455e-09,4.113825565656501863e-09,4.456644362794543272e-09,4.799463159932584680e-09,5.142281957070625261e-09,5.485100754208666669e-09,5.827919551346708078e-09,6.170738348484749486e-09,6.513557145622790894e-09,6.856375942760832303e-09,7.199194739898873711e-09,7.542013537036915947e-09,7.884832334174957355e-09,8.227651131312998763e-09,8.570469928451040172e-09,8.913288725589081580e-09,9.256107522727122988e-09,9.598926319865164397e-09,9.941745117003205805e-09,1.028456391414124721e-08,1.062738271127928862e-08,1.097020150841733003e-08,1.131302030555537144e-08,1.165583910269341285e-08,1.199865789983145426e-08,1.234147669696949566e-08,1.268429549410753707e-08,1.302711429124557848e-08,1.336993308838361989e-08,1.371275188552166130e-08,1.405557068265970271e-08,1.439838947979774411e-08,1.474120827693578552e-08,1.508402707407382858e-08,1.542684587121186999e-08,1.576966466834991140e-08,1.611248346548795281e-08,1.645530226262599422e-08,1.679812105976403563e-08,1.714093985690207703e-08,1.748375865404011844e-08,1.782657745117815985e-08,1.816939624831620126e-08,1.851221504545424267e-08,1.885503384259228408e-08,1.919785263973032548e-08,1.954067143686836689e-08,1.988349023400641161e-08,2.022630903114445302e-08,2.056912782828249443e-08,2.091194662542053584e-08,2.125476542255857724e-08,2.159758421969661865e-08 +0.000000000000000000e+00,-4.456488415321097646e-20,-8.912976830642195292e-20,-1.336946524596329294e-19,-1.782595366128439058e-19,-2.228244207660549064e-19,-2.673893049192659069e-19,-3.119541890724769075e-19,-3.565190732256879080e-19,-4.010839573788989085e-19,-4.456488415321099091e-19,-4.902137256853209096e-19,-5.347786098385319101e-19,-5.793434939917429107e-19,-6.239083781449539112e-19,-6.684732622981649117e-19,-7.130381464513759123e-19,-7.576030306045869128e-19,-8.021679147577979133e-19,-8.467327989110089139e-19,-8.912976830642200107e-19,-9.358625672174310112e-19,-9.804274513706420118e-19,-1.024992335523853012e-18,-1.069557219677064013e-18,-1.114122103830275013e-18,-1.158686987983486014e-18,-1.203251872136697014e-18,-1.247816756289908015e-18,-1.292381640443119016e-18,-1.336946524596330016e-18,-1.381511408749541017e-18,-1.426076292902752017e-18,-1.470641177055963018e-18,-1.515206061209174018e-18,-1.559770945362385019e-18,-1.604335829515596019e-18,-1.648900713668807020e-18,-1.693465597822018020e-18,-1.738030481975229021e-18,-1.782595366128440021e-18,-1.827160250281651022e-18,-1.871725134434862022e-18,-1.916290018588073023e-18,-1.960854902741284024e-18,-2.005419786894495024e-18,-2.049984671047706025e-18,-2.094549555200917025e-18,-2.139114439354128026e-18,-2.183679323507339026e-18,-2.228244207660550027e-18,-2.272809091813761027e-18,-2.317373975966972028e-18,-2.361938860120183028e-18,-2.406503744273394029e-18,-2.451068628426605029e-18,-2.495633512579816030e-18,-2.540198396733027031e-18,-2.584763280886238031e-18,-2.629328165039449032e-18,-2.673893049192660032e-18,-2.718457933345871033e-18,-2.763022817499082033e-18,-2.807587701652293034e-18 +0.000000000000000000e+00,-6.855279721360574095e-10,-1.371055944272114819e-09,-2.056583916408172125e-09,-2.742111888544228811e-09,-3.427639860680286324e-09,-4.113167832816343423e-09,-4.798695804952400936e-09,-5.484223777088457622e-09,-6.169751749224515962e-09,-6.855279721360574302e-09,-7.540807693496630988e-09,-8.226335665632688501e-09,-8.911863637768746014e-09,-9.597391609904803527e-09,-1.028291958204086269e-08,-1.096844755417691855e-08,-1.165397552631297607e-08,-1.233950349844903358e-08,-1.302503147058508944e-08,-1.371055944272114860e-08,-1.439608741485720612e-08,-1.508161538699326198e-08,-1.576714335912931783e-08,-1.645267133126537369e-08,-1.713819930340142955e-08,-1.782372727553748541e-08,-1.850925524767354127e-08,-1.919478321980959713e-08,-1.988031119194565299e-08,-2.056583916408170554e-08,-2.125136713621776470e-08,-2.193689510835382387e-08,-2.262242308048987642e-08,-2.330795105262592897e-08,-2.399347902476198814e-08,-2.467900699689804730e-08,-2.536453496903409985e-08,-2.605006294117015240e-08,-2.673559091330621157e-08,-2.742111888544227074e-08,-2.810664685757832329e-08,-2.879217482971437584e-08,-2.947770280185043501e-08,-3.016323077398649086e-08,-3.084875874612254672e-08,-3.153428671825860258e-08,-3.221981469039465844e-08,-3.290534266253071430e-08,-3.359087063466677016e-08,-3.427639860680282602e-08,-3.496192657893888187e-08,-3.564745455107493773e-08,-3.633298252321099359e-08,-3.701851049534704945e-08,-3.770403846748310531e-08,-3.838956643961916117e-08,-3.907509441175521703e-08,-3.976062238389127288e-08,-4.044615035602732874e-08,-4.113167832816338460e-08,-4.181720630029943384e-08,-4.250273427243549632e-08,-4.318826224457155218e-08 +0.000000000000000000e+00,-3.428187971976908499e-10,-6.856375943953816998e-10,-1.028456391593072550e-09,-1.371275188790763400e-09,-1.714093985988454249e-09,-2.056912783186145099e-09,-2.399731580383835742e-09,-2.742550377581526385e-09,-3.085369174779217442e-09,-3.428187971976907672e-09,-3.771006769174598315e-09,-4.113825566372289371e-09,-4.456644363569980428e-09,-4.799463160767671485e-09,-5.142281957965362541e-09,-5.485100755163053598e-09,-5.827919552360744655e-09,-6.170738349558435711e-09,-6.513557146756126768e-09,-6.856375943953817825e-09,-7.199194741151508882e-09,-7.542013538349199938e-09,-7.884832335546890995e-09,-8.227651132744582052e-09,-8.570469929942273108e-09,-8.913288727139964165e-09,-9.256107524337655222e-09,-9.598926321535346278e-09,-9.941745118733035681e-09,-1.028456391593072674e-08,-1.062738271312841779e-08,-1.097020151032610885e-08,-1.131302030752379991e-08,-1.165583910472149096e-08,-1.199865790191918202e-08,-1.234147669911687308e-08,-1.268429549631456413e-08,-1.302711429351225519e-08,-1.336993309070994625e-08,-1.371275188790763730e-08,-1.405557068510532836e-08,-1.439838948230301942e-08,-1.474120827950071047e-08,-1.508402707669840319e-08,-1.542684587389609424e-08,-1.576966467109378530e-08,-1.611248346829147636e-08,-1.645530226548916741e-08,-1.679812106268685847e-08,-1.714093985988454953e-08,-1.748375865708224058e-08,-1.782657745427993164e-08,-1.816939625147762270e-08,-1.851221504867531375e-08,-1.885503384587300481e-08,-1.919785264307069587e-08,-1.954067144026838692e-08,-1.988349023746607798e-08,-2.022630903466376904e-08,-2.056912783186146009e-08,-2.091194662905915115e-08,-2.125476542625684221e-08,-2.159758422345453326e-08 +0.000000000000000000e+00,-6.958839665887631786e-10,-1.391767933177526357e-09,-2.087651899766289329e-09,-2.783535866355052301e-09,-3.479419832943815273e-09,-4.175303799532578658e-09,-4.871187766121342044e-09,-5.567071732710105429e-09,-6.262955699298868814e-09,-6.958839665887632200e-09,-7.654723632476395585e-09,-8.350607599065158971e-09,-9.046491565653922356e-09,-9.742375532242685742e-09,-1.043825949883144913e-08,-1.113414346542021251e-08,-1.183002743200897590e-08,-1.252591139859773928e-08,-1.322179536518650267e-08,-1.391767933177526605e-08,-1.461356329836402944e-08,-1.530944726495279448e-08,-1.600533123154155786e-08,-1.670121519813032125e-08,-1.739709916471908464e-08,-1.809298313130784802e-08,-1.878886709789661141e-08,-1.948475106448537479e-08,-2.018063503107413818e-08,-2.087651899766290156e-08,-2.157240296425166495e-08,-2.226828693084042833e-08,-2.296417089742919172e-08,-2.366005486401795510e-08,-2.435593883060671849e-08,-2.505182279719548188e-08,-2.574770676378424526e-08,-2.644359073037300865e-08,-2.713947469696177203e-08,-2.783535866355053542e-08,-2.853124263013929880e-08,-2.922712659672806219e-08,-2.992301056331682557e-08,-3.061889452990558896e-08,-3.131477849649435234e-08,-3.201066246308311573e-08,-3.270654642967187912e-08,-3.340243039626064250e-08,-3.409831436284940589e-08,-3.479419832943816927e-08,-3.549008229602693266e-08,-3.618596626261569604e-08,-3.688185022920445943e-08,-3.757773419579322281e-08,-3.827361816238198620e-08,-3.896950212897074958e-08,-3.966538609555951297e-08,-4.036127006214827635e-08,-4.105715402873703974e-08,-4.175303799532580313e-08,-4.244892196191456651e-08,-4.314480592850332990e-08,-4.384068989509209328e-08 +0.000000000000000000e+00,-6.939534008578988079e-10,-1.387906801715797616e-09,-2.081860202573696527e-09,-2.775813603431595645e-09,-3.469767004289494763e-09,-4.163720405147393881e-09,-4.857673806005292999e-09,-5.551627206863192117e-09,-6.245580607721091236e-09,-6.939534008578990354e-09,-7.633487409436889472e-09,-8.327440810294789417e-09,-9.021394211152689362e-09,-9.715347612010589308e-09,-1.040930101286848925e-08,-1.110325441372638920e-08,-1.179720781458428914e-08,-1.249116121544218909e-08,-1.318511461630008903e-08,-1.387906801715798898e-08,-1.457302141801588892e-08,-1.526697481887378887e-08,-1.596092821973168881e-08,-1.665488162058958876e-08,-1.734883502144748871e-08,-1.804278842230538865e-08,-1.873674182316328860e-08,-1.943069522402118854e-08,-2.012464862487908849e-08,-2.081860202573698843e-08,-2.151255542659488838e-08,-2.220650882745278832e-08,-2.290046222831068827e-08,-2.359441562916858821e-08,-2.428836903002648816e-08,-2.498232243088438810e-08,-2.567627583174228805e-08,-2.637022923260018799e-08,-2.706418263345808794e-08,-2.775813603431598788e-08,-2.845208943517388783e-08,-2.914604283603178777e-08,-2.983999623688968441e-08,-3.053394963774758436e-08,-3.122790303860548430e-08,-3.192185643946338425e-08,-3.261580984032128419e-08,-3.330976324117918414e-08,-3.400371664203708408e-08,-3.469767004289498403e-08,-3.539162344375288397e-08,-3.608557684461078392e-08,-3.677953024546868386e-08,-3.747348364632658381e-08,-3.816743704718448375e-08,-3.886139044804238370e-08,-3.955534384890028365e-08,-4.024929724975818359e-08,-4.094325065061608354e-08,-4.163720405147398348e-08,-4.233115745233188343e-08,-4.302511085318978337e-08,-4.371906425404768332e-08 +0.000000000000000000e+00,4.501794148755451659e-10,9.003588297510903318e-10,1.350538244626635601e-09,1.800717659502180870e-09,2.250897074377726140e-09,2.701076489253271202e-09,3.151255904128816265e-09,3.601435319004361327e-09,4.051614733879906803e-09,4.501794148755452279e-09,4.951973563630997756e-09,5.402152978506543232e-09,5.852332393382088708e-09,6.302511808257634184e-09,6.752691223133179660e-09,7.202870638008725136e-09,7.653050052884270612e-09,8.103229467759816915e-09,8.553408882635363219e-09,9.003588297510909522e-09,9.453767712386455825e-09,9.903947127262002129e-09,1.035412654213754843e-08,1.080430595701309474e-08,1.125448537188864104e-08,1.170466478676418734e-08,1.215484420163973364e-08,1.260502361651527995e-08,1.305520303139082625e-08,1.350538244626637255e-08,1.395556186114191886e-08,1.440574127601746516e-08,1.485592069089301146e-08,1.530610010576855777e-08,1.575627952064410573e-08,1.620645893551965368e-08,1.665663835039520164e-08,1.710681776527074960e-08,1.755699718014629756e-08,1.800717659502184551e-08,1.845735600989739347e-08,1.890753542477294143e-08,1.935771483964848939e-08,1.980789425452403734e-08,2.025807366939958530e-08,2.070825308427513326e-08,2.115843249915068122e-08,2.160861191402622917e-08,2.205879132890177713e-08,2.250897074377732509e-08,2.295915015865287305e-08,2.340932957352842101e-08,2.385950898840396896e-08,2.430968840327951692e-08,2.475986781815506488e-08,2.521004723303061284e-08,2.566022664790616079e-08,2.611040606278170875e-08,2.656058547765725671e-08,2.701076489253280467e-08,2.746094430740835262e-08,2.791112372228390058e-08,2.836130313715944854e-08 +0.000000000000000000e+00,1.202842618268995469e-10,2.405685236537990937e-10,3.608527854806986406e-10,4.811370473075981875e-10,6.014213091344977860e-10,7.217055709613973846e-10,8.419898327882969831e-10,9.622740946151965817e-10,1.082558356442096180e-09,1.202842618268995779e-09,1.323126880095895377e-09,1.443411141922794976e-09,1.563695403749694575e-09,1.683979665576594173e-09,1.804263927403493772e-09,1.924548189230393577e-09,2.044832451057293382e-09,2.165116712884193188e-09,2.285400974711092993e-09,2.405685236537992798e-09,2.525969498364892604e-09,2.646253760191792409e-09,2.766538022018692215e-09,2.886822283845592020e-09,3.007106545672491825e-09,3.127390807499391631e-09,3.247675069326291436e-09,3.367959331153191241e-09,3.488243592980091047e-09,3.608527854806990852e-09,3.728812116633890244e-09,3.849096378460789636e-09,3.969380640287689027e-09,4.089664902114588419e-09,4.209949163941487811e-09,4.330233425768387203e-09,4.450517687595286594e-09,4.570801949422185986e-09,4.691086211249085378e-09,4.811370473075984770e-09,4.931654734902884161e-09,5.051938996729783553e-09,5.172223258556682945e-09,5.292507520383582337e-09,5.412791782210481729e-09,5.533076044037381120e-09,5.653360305864280512e-09,5.773644567691179904e-09,5.893928829518079296e-09,6.014213091344978687e-09,6.134497353171878079e-09,6.254781614998777471e-09,6.375065876825676863e-09,6.495350138652576254e-09,6.615634400479475646e-09,6.735918662306375038e-09,6.856202924133274430e-09,6.976487185960173822e-09,7.096771447787073213e-09,7.217055709613972605e-09,7.337339971440871997e-09,7.457624233267770561e-09,7.577908495094669126e-09 +0.000000000000000000e+00,-8.435073598789198570e-20,-1.687014719757839714e-19,-2.530522079636759451e-19,-3.374029439515678947e-19,-4.217536799394598443e-19,-5.061044159273517938e-19,-5.904551519152437434e-19,-6.748058879031356930e-19,-7.591566238910276426e-19,-8.435073598789195922e-19,-9.278580958668114455e-19,-1.012208831854703395e-18,-1.096559567842595345e-18,-1.180910303830487294e-18,-1.265261039818379244e-18,-1.349611775806271193e-18,-1.433962511794163143e-18,-1.518313247782055093e-18,-1.602663983769947042e-18,-1.687014719757838992e-18,-1.771365455745730941e-18,-1.855716191733622891e-18,-1.940066927721514841e-18,-2.024417663709406790e-18,-2.108768399697298740e-18,-2.193119135685190689e-18,-2.277469871673082639e-18,-2.361820607660974589e-18,-2.446171343648866538e-18,-2.530522079636758488e-18,-2.614872815624650437e-18,-2.699223551612542387e-18,-2.783574287600434337e-18,-2.867925023588326286e-18,-2.952275759576218236e-18,-3.036626495564110185e-18,-3.120977231552002135e-18,-3.205327967539894084e-18,-3.289678703527786034e-18,-3.374029439515677984e-18,-3.458380175503569933e-18,-3.542730911491461883e-18,-3.627081647479353832e-18,-3.711432383467245782e-18,-3.795783119455137732e-18,-3.880133855443029681e-18,-3.964484591430921631e-18,-4.048835327418813580e-18,-4.133186063406705530e-18,-4.217536799394597480e-18,-4.301887535382489429e-18,-4.386238271370381379e-18,-4.470589007358273328e-18,-4.554939743346165278e-18,-4.639290479334057228e-18,-4.723641215321949177e-18,-4.807991951309841127e-18,-4.892342687297733076e-18,-4.976693423285625026e-18,-5.061044159273516975e-18,-5.145394895261408925e-18,-5.229745631249300875e-18,-5.314096367237192824e-18 +0.000000000000000000e+00,3.238361818999898535e-10,6.476723637999797071e-10,9.715085456999694572e-10,1.295344727599959207e-09,1.619180909499948957e-09,1.943017091399938914e-09,2.266853273299928871e-09,2.590689455199918828e-09,2.914525637099908785e-09,3.238361818999898742e-09,3.562198000899888699e-09,3.886034182799878656e-09,4.209870364699868199e-09,4.533706546599857743e-09,4.857542728499847286e-09,5.181378910399836829e-09,5.505215092299826373e-09,5.829051274199815916e-09,6.152887456099805459e-09,6.476723637999795003e-09,6.800559819899784546e-09,7.124396001799774089e-09,7.448232183699763633e-09,7.772068365599752349e-09,8.095904547499741065e-09,8.419740729399729781e-09,8.743576911299718497e-09,9.067413093199707214e-09,9.391249275099695930e-09,9.715085456999684646e-09,1.003892163889967336e-08,1.036275782079966208e-08,1.068659400269965079e-08,1.101043018459963951e-08,1.133426636649962823e-08,1.165810254839961694e-08,1.198193873029960566e-08,1.230577491219959438e-08,1.262961109409958309e-08,1.295344727599957181e-08,1.327728345789956052e-08,1.360111963979954924e-08,1.392495582169953796e-08,1.424879200359952667e-08,1.457262818549951539e-08,1.489646436739950410e-08,1.522030054929949282e-08,1.554413673119948154e-08,1.586797291309947025e-08,1.619180909499945897e-08,1.651564527689944769e-08,1.683948145879943640e-08,1.716331764069942512e-08,1.748715382259941383e-08,1.781099000449940255e-08,1.813482618639939127e-08,1.845866236829937998e-08,1.878249855019936870e-08,1.910633473209935741e-08,1.943017091399934613e-08,1.975400709589933485e-08,2.007784327779932356e-08,2.040167945969931228e-08 +0.000000000000000000e+00,3.782796848781846820e-10,7.565593697563693641e-10,1.134839054634554098e-09,1.513118739512738935e-09,1.891398424390923979e-09,2.269678109269109023e-09,2.647957794147294067e-09,3.026237479025479111e-09,3.404517163903664155e-09,3.782796848781849612e-09,4.161076533660035070e-09,4.539356218538220527e-09,4.917635903416405985e-09,5.295915588294591442e-09,5.674195273172776900e-09,6.052474958050962357e-09,6.430754642929147815e-09,6.809034327807333272e-09,7.187314012685518730e-09,7.565593697563704187e-09,7.943873382441889645e-09,8.322153067320075103e-09,8.700432752198260560e-09,9.078712437076446018e-09,9.456992121954631475e-09,9.835271806832816933e-09,1.021355149171100239e-08,1.059183117658918785e-08,1.097011086146737331e-08,1.134839054634555876e-08,1.172667023122374422e-08,1.210494991610192968e-08,1.248322960098011514e-08,1.286150928585830059e-08,1.323978897073648605e-08,1.361806865561467151e-08,1.399634834049285697e-08,1.437462802537104242e-08,1.475290771024922788e-08,1.513118739512741168e-08,1.550946708000559383e-08,1.588774676488377598e-08,1.626602644976195813e-08,1.664430613464014028e-08,1.702258581951832243e-08,1.740086550439650458e-08,1.777914518927468673e-08,1.815742487415286887e-08,1.853570455903105102e-08,1.891398424390923317e-08,1.929226392878741532e-08,1.967054361366559747e-08,2.004882329854377962e-08,2.042710298342196177e-08,2.080538266830014392e-08,2.118366235317832606e-08,2.156194203805650821e-08,2.194022172293469036e-08,2.231850140781287251e-08,2.269678109269105466e-08,2.307506077756923681e-08,2.345334046244741896e-08,2.383162014732560111e-08 +0.000000000000000000e+00,5.570385772830149051e-10,1.114077154566029810e-09,1.671115731849044715e-09,2.228154309132059620e-09,2.785192886415074732e-09,3.342231463698089844e-09,3.899270040981104956e-09,4.456308618264120068e-09,5.013347195547135180e-09,5.570385772830150292e-09,6.127424350113165404e-09,6.684462927396180516e-09,7.241501504679195628e-09,7.798540081962211567e-09,8.355578659245226679e-09,8.912617236528241791e-09,9.469655813811256903e-09,1.002669439109427201e-08,1.058373296837728713e-08,1.114077154566030224e-08,1.169781012294331735e-08,1.225484870022633246e-08,1.281188727750934757e-08,1.336892585479236269e-08,1.392596443207537780e-08,1.448300300935839291e-08,1.504004158664140802e-08,1.559708016392442313e-08,1.615411874120743825e-08,1.671115731849045336e-08,1.726819589577346847e-08,1.782523447305648358e-08,1.838227305033949869e-08,1.893931162762251381e-08,1.949635020490552892e-08,2.005338878218854403e-08,2.061042735947155914e-08,2.116746593675457425e-08,2.172450451403758936e-08,2.228154309132060448e-08,2.283858166860361959e-08,2.339562024588663470e-08,2.395265882316964981e-08,2.450969740045266492e-08,2.506673597773568004e-08,2.562377455501869515e-08,2.618081313230171026e-08,2.673785170958472537e-08,2.729489028686774048e-08,2.785192886415075560e-08,2.840896744143377071e-08,2.896600601871678582e-08,2.952304459599980093e-08,3.008008317328281604e-08,3.063712175056583446e-08,3.119416032784885288e-08,3.175119890513187131e-08,3.230823748241488973e-08,3.286527605969790815e-08,3.342231463698092657e-08,3.397935321426394499e-08,3.453639179154696341e-08,3.509343036882998183e-08 +0.000000000000000000e+00,5.920032853005253671e-11,1.184006570601050734e-10,1.776009855901576231e-10,2.368013141202101985e-10,2.960016426502627740e-10,3.552019711803153495e-10,4.144022997103679250e-10,4.736026282404205005e-10,5.328029567704730760e-10,5.920032853005256515e-10,6.512036138305782270e-10,7.104039423606308024e-10,7.696042708906833779e-10,8.288045994207359534e-10,8.880049279507885289e-10,9.472052564808412078e-10,1.006405585010893887e-09,1.065605913540946566e-09,1.124806242070999244e-09,1.184006570601051923e-09,1.243206899131104602e-09,1.302407227661157281e-09,1.361607556191209960e-09,1.420807884721262639e-09,1.480008213251315318e-09,1.539208541781367997e-09,1.598408870311420676e-09,1.657609198841473354e-09,1.716809527371526033e-09,1.776009855901578712e-09,1.835210184431631391e-09,1.894410512961684070e-09,1.953610841491736542e-09,2.012811170021789014e-09,2.072011498551841486e-09,2.131211827081893958e-09,2.190412155611946430e-09,2.249612484141998902e-09,2.308812812672051375e-09,2.368013141202103847e-09,2.427213469732156319e-09,2.486413798262208791e-09,2.545614126792261263e-09,2.604814455322313735e-09,2.664014783852366207e-09,2.723215112382418679e-09,2.782415440912471151e-09,2.841615769442523623e-09,2.900816097972576095e-09,2.960016426502628568e-09,3.019216755032681040e-09,3.078417083562733512e-09,3.137617412092785984e-09,3.196817740622838456e-09,3.256018069152890928e-09,3.315218397682943400e-09,3.374418726212995872e-09,3.433619054743048344e-09,3.492819383273100816e-09,3.552019711803153288e-09,3.611220040333205761e-09,3.670420368863258233e-09,3.729620697393310705e-09 +0.000000000000000000e+00,-8.637533359557864385e-20,-1.727506671911572877e-19,-2.591260007867359316e-19,-3.455013343823145754e-19,-4.318766679778932193e-19,-5.182520015734718631e-19,-6.046273351690504588e-19,-6.910026687646290545e-19,-7.773780023602076502e-19,-8.637533359557862459e-19,-9.501286695513648416e-19,-1.036504003146943534e-18,-1.122879336742522226e-18,-1.209254670338100918e-18,-1.295630003933679610e-18,-1.382005337529258302e-18,-1.468380671124836994e-18,-1.554756004720415686e-18,-1.641131338315994378e-18,-1.727506671911573070e-18,-1.813882005507151569e-18,-1.900257339102730068e-18,-1.986632672698308568e-18,-2.073008006293887067e-18,-2.159383339889465567e-18,-2.245758673485044066e-18,-2.332134007080622566e-18,-2.418509340676201065e-18,-2.504884674271779564e-18,-2.591260007867358064e-18,-2.677635341462936563e-18,-2.764010675058515063e-18,-2.850386008654093562e-18,-2.936761342249672061e-18,-3.023136675845250561e-18,-3.109512009440829060e-18,-3.195887343036407560e-18,-3.282262676631986059e-18,-3.368638010227564558e-18,-3.455013343823143058e-18,-3.541388677418721557e-18,-3.627764011014300057e-18,-3.714139344609878556e-18,-3.800514678205457055e-18,-3.886890011801035555e-18,-3.973265345396614054e-18,-4.059640678992192554e-18,-4.146016012587771053e-18,-4.232391346183349552e-18,-4.318766679778928052e-18,-4.405142013374506551e-18,-4.491517346970085051e-18,-4.577892680565663550e-18,-4.664268014161242050e-18,-4.750643347756820549e-18,-4.837018681352399048e-18,-4.923394014947977548e-18,-5.009769348543556047e-18,-5.096144682139134547e-18,-5.182520015734713046e-18,-5.268895349330291545e-18,-5.355270682925870045e-18,-5.441646016521448544e-18 +0.000000000000000000e+00,-4.501794150387581888e-10,-9.003588300775163776e-10,-1.350538245116274618e-09,-1.800717660155032962e-09,-2.250897075193791513e-09,-2.701076490232550064e-09,-3.151255905271308614e-09,-3.601435320310067165e-09,-4.051614735348825716e-09,-4.501794150387584680e-09,-4.951973565426343644e-09,-5.402152980465102609e-09,-5.852332395503861573e-09,-6.302511810542620537e-09,-6.752691225581379501e-09,-7.202870640620138466e-09,-7.653050055658897430e-09,-8.103229470697656394e-09,-8.553408885736415359e-09,-9.003588300775174323e-09,-9.453767715813933287e-09,-9.903947130852692252e-09,-1.035412654589145122e-08,-1.080430596093021018e-08,-1.125448537596896914e-08,-1.170466479100772811e-08,-1.215484420604648707e-08,-1.260502362108524604e-08,-1.305520303612400500e-08,-1.350538245116276397e-08,-1.395556186620152293e-08,-1.440574128124028189e-08,-1.485592069627904086e-08,-1.530610011131780148e-08,-1.575627952635656210e-08,-1.620645894139532271e-08,-1.665663835643408333e-08,-1.710681777147284395e-08,-1.755699718651160457e-08,-1.800717660155036519e-08,-1.845735601658912581e-08,-1.890753543162788643e-08,-1.935771484666664705e-08,-1.980789426170540766e-08,-2.025807367674416828e-08,-2.070825309178292890e-08,-2.115843250682168952e-08,-2.160861192186045014e-08,-2.205879133689921076e-08,-2.250897075193797138e-08,-2.295915016697673199e-08,-2.340932958201549261e-08,-2.385950899705425323e-08,-2.430968841209301385e-08,-2.475986782713177447e-08,-2.521004724217053509e-08,-2.566022665720929571e-08,-2.611040607224805633e-08,-2.656058548728681694e-08,-2.701076490232557756e-08,-2.746094431736433818e-08,-2.791112373240309880e-08,-2.836130314744185942e-08 +0.000000000000000000e+00,-1.202842619954795244e-10,-2.405685239909590488e-10,-3.608527859864385732e-10,-4.811370479819180976e-10,-6.014213099773976219e-10,-7.217055719728771463e-10,-8.419898339683566707e-10,-9.622740959638361951e-10,-1.082558357959315823e-09,-1.202842619954795451e-09,-1.323126881950275078e-09,-1.443411143945754706e-09,-1.563695405941234334e-09,-1.683979667936713962e-09,-1.804263929932193590e-09,-1.924548191927673217e-09,-2.044832453923152845e-09,-2.165116715918632473e-09,-2.285400977914112101e-09,-2.405685239909591729e-09,-2.525969501905071356e-09,-2.646253763900550984e-09,-2.766538025896030612e-09,-2.886822287891510240e-09,-3.007106549886989867e-09,-3.127390811882469495e-09,-3.247675073877949123e-09,-3.367959335873428751e-09,-3.488243597868908379e-09,-3.608527859864388006e-09,-3.728812121859867634e-09,-3.849096383855347262e-09,-3.969380645850826890e-09,-4.089664907846306518e-09,-4.209949169841786145e-09,-4.330233431837265773e-09,-4.450517693832745401e-09,-4.570801955828225029e-09,-4.691086217823704656e-09,-4.811370479819184284e-09,-4.931654741814663912e-09,-5.051939003810143540e-09,-5.172223265805623168e-09,-5.292507527801102795e-09,-5.412791789796582423e-09,-5.533076051792062051e-09,-5.653360313787541679e-09,-5.773644575783021307e-09,-5.893928837778500934e-09,-6.014213099773980562e-09,-6.134497361769460190e-09,-6.254781623764939818e-09,-6.375065885760419446e-09,-6.495350147755899073e-09,-6.615634409751378701e-09,-6.735918671746858329e-09,-6.856202933742337957e-09,-6.976487195737817584e-09,-7.096771457733297212e-09,-7.217055719728776840e-09,-7.337339981724256468e-09,-7.457624243719736923e-09,-7.577908505715218205e-09 +0.000000000000000000e+00,-5.920032869875719879e-11,-1.184006573975143976e-10,-1.776009860962715964e-10,-2.368013147950287952e-10,-2.960016434937859940e-10,-3.552019721925431927e-10,-4.144023008913003915e-10,-4.736026295900575903e-10,-5.328029582888147891e-10,-5.920032869875719879e-10,-6.512036156863291867e-10,-7.104039443850863855e-10,-7.696042730838435843e-10,-8.288046017826007831e-10,-8.880049304813579819e-10,-9.472052591801151806e-10,-1.006405587878872379e-09,-1.065605916577629578e-09,-1.124806245276386777e-09,-1.184006573975143976e-09,-1.243206902673901175e-09,-1.302407231372658373e-09,-1.361607560071415572e-09,-1.420807888770172771e-09,-1.480008217468929970e-09,-1.539208546167687169e-09,-1.598408874866444367e-09,-1.657609203565201566e-09,-1.716809532263958765e-09,-1.776009860962715964e-09,-1.835210189661473162e-09,-1.894410518360230361e-09,-1.953610847058987560e-09,-2.012811175757744759e-09,-2.072011504456501958e-09,-2.131211833155259156e-09,-2.190412161854016355e-09,-2.249612490552773554e-09,-2.308812819251530753e-09,-2.368013147950287952e-09,-2.427213476649045150e-09,-2.486413805347802349e-09,-2.545614134046559548e-09,-2.604814462745316747e-09,-2.664014791444073946e-09,-2.723215120142831144e-09,-2.782415448841588343e-09,-2.841615777540345542e-09,-2.900816106239102741e-09,-2.960016434937859940e-09,-3.019216763636617138e-09,-3.078417092335374337e-09,-3.137617421034131536e-09,-3.196817749732888735e-09,-3.256018078431645933e-09,-3.315218407130403132e-09,-3.374418735829160331e-09,-3.433619064527917530e-09,-3.492819393226674729e-09,-3.552019721925431927e-09,-3.611220050624189126e-09,-3.670420379322946325e-09,-3.729620708021703937e-09 +0.000000000000000000e+00,-3.238361820653409315e-10,-6.476723641306818631e-10,-9.715085461960228463e-10,-1.295344728261363933e-09,-1.619180910326705020e-09,-1.943017092392046106e-09,-2.266853274457387400e-09,-2.590689456522728693e-09,-2.914525638588069987e-09,-3.238361820653411280e-09,-3.562198002718752573e-09,-3.886034184784093867e-09,-4.209870366849435160e-09,-4.533706548914776454e-09,-4.857542730980117747e-09,-5.181378913045459041e-09,-5.505215095110800334e-09,-5.829051277176141627e-09,-6.152887459241482921e-09,-6.476723641306824214e-09,-6.800559823372165508e-09,-7.124396005437506801e-09,-7.448232187502848095e-09,-7.772068369568189388e-09,-8.095904551633529854e-09,-8.419740733698870321e-09,-8.743576915764210787e-09,-9.067413097829551253e-09,-9.391249279894891719e-09,-9.715085461960232186e-09,-1.003892164402557265e-08,-1.036275782609091312e-08,-1.068659400815625358e-08,-1.101043019022159405e-08,-1.133426637228693452e-08,-1.165810255435227498e-08,-1.198193873641761545e-08,-1.230577491848295592e-08,-1.262961110054829638e-08,-1.295344728261363685e-08,-1.327728346467897731e-08,-1.360111964674431778e-08,-1.392495582880965825e-08,-1.424879201087499871e-08,-1.457262819294033918e-08,-1.489646437500567965e-08,-1.522030055707102011e-08,-1.554413673913636223e-08,-1.586797292120170435e-08,-1.619180910326704647e-08,-1.651564528533238859e-08,-1.683948146739773071e-08,-1.716331764946307284e-08,-1.748715383152841496e-08,-1.781099001359375708e-08,-1.813482619565909920e-08,-1.845866237772444132e-08,-1.878249855978978344e-08,-1.910633474185512556e-08,-1.943017092392046768e-08,-1.975400710598580980e-08,-2.007784328805115192e-08,-2.040167947011649404e-08 +0.000000000000000000e+00,-3.782796850506853923e-10,-7.565593701013707846e-10,-1.134839055152056280e-09,-1.513118740202741776e-09,-1.891398425253427272e-09,-2.269678110304112560e-09,-2.647957795354797849e-09,-3.026237480405483138e-09,-3.404517165456168427e-09,-3.782796850506853716e-09,-4.161076535557539418e-09,-4.539356220608225121e-09,-4.917635905658910823e-09,-5.295915590709596526e-09,-5.674195275760282228e-09,-6.052474960810967931e-09,-6.430754645861653633e-09,-6.809034330912339336e-09,-7.187314015963025038e-09,-7.565593701013710741e-09,-7.943873386064396443e-09,-8.322153071115082146e-09,-8.700432756165767848e-09,-9.078712441216453551e-09,-9.456992126267139253e-09,-9.835271811317824955e-09,-1.021355149636851066e-08,-1.059183118141919636e-08,-1.097011086646988206e-08,-1.134839055152056777e-08,-1.172667023657125347e-08,-1.210494992162193917e-08,-1.248322960667262487e-08,-1.286150929172331058e-08,-1.323978897677399628e-08,-1.361806866182468198e-08,-1.399634834687536768e-08,-1.437462803192605339e-08,-1.475290771697673909e-08,-1.513118740202742479e-08,-1.550946708707811049e-08,-1.588774677212879619e-08,-1.626602645717948190e-08,-1.664430614223016760e-08,-1.702258582728085330e-08,-1.740086551233153900e-08,-1.777914519738222471e-08,-1.815742488243291041e-08,-1.853570456748359611e-08,-1.891398425253428181e-08,-1.929226393758496752e-08,-1.967054362263565322e-08,-2.004882330768633892e-08,-2.042710299273702462e-08,-2.080538267778771033e-08,-2.118366236283839603e-08,-2.156194204788908173e-08,-2.194022173293976743e-08,-2.231850141799045314e-08,-2.269678110304113884e-08,-2.307506078809182454e-08,-2.345334047314251024e-08,-2.383162015819319595e-08 +0.000000000000000000e+00,-5.570385774526204315e-10,-1.114077154905240863e-09,-1.671115732357861295e-09,-2.228154309810481726e-09,-2.785192887263101951e-09,-3.342231464715722175e-09,-3.899270042168342400e-09,-4.456308619620962625e-09,-5.013347197073582850e-09,-5.570385774526203074e-09,-6.127424351978823299e-09,-6.684462929431443524e-09,-7.241501506884063748e-09,-7.798540084336683146e-09,-8.355578661789303371e-09,-8.912617239241923595e-09,-9.469655816694543820e-09,-1.002669439414716404e-08,-1.058373297159978427e-08,-1.114077154905240449e-08,-1.169781012650502472e-08,-1.225484870395764494e-08,-1.281188728141026517e-08,-1.336892585886288539e-08,-1.392596443631550562e-08,-1.448300301376812584e-08,-1.504004159122074607e-08,-1.559708016867336629e-08,-1.615411874612598652e-08,-1.671115732357860674e-08,-1.726819590103122697e-08,-1.782523447848384719e-08,-1.838227305593646742e-08,-1.893931163338908764e-08,-1.949635021084170787e-08,-2.005338878829432809e-08,-2.061042736574694831e-08,-2.116746594319956854e-08,-2.172450452065218876e-08,-2.228154309810480899e-08,-2.283858167555742921e-08,-2.339562025301004944e-08,-2.395265883046266966e-08,-2.450969740791528989e-08,-2.506673598536791011e-08,-2.562377456282053034e-08,-2.618081314027315056e-08,-2.673785171772577079e-08,-2.729489029517839101e-08,-2.785192887263101124e-08,-2.840896745008363146e-08,-2.896600602753625169e-08,-2.952304460498887191e-08,-3.008008318244149213e-08,-3.063712175989411567e-08,-3.119416033734673920e-08,-3.175119891479936273e-08,-3.230823749225198627e-08,-3.286527606970460980e-08,-3.342231464715723334e-08,-3.397935322460985687e-08,-3.453639180206248040e-08,-3.509343037951510394e-08 +0.000000000000000000e+00,5.501340207959259664e-10,1.100268041591851933e-09,1.650402062387777899e-09,2.200536083183703866e-09,2.750670103979629625e-09,3.300804124775555385e-09,3.850938145571481145e-09,4.401072166367406904e-09,4.951206187163332664e-09,5.501340207959258423e-09,6.051474228755184183e-09,6.601608249551109943e-09,7.151742270347035702e-09,7.701876291142960635e-09,8.252010311938884740e-09,8.802144332734808845e-09,9.352278353530732951e-09,9.902412374326657056e-09,1.045254639512258116e-08,1.100268041591850527e-08,1.155281443671442937e-08,1.210294845751035348e-08,1.265308247830627758e-08,1.320321649910220169e-08,1.375335051989812579e-08,1.430348454069404990e-08,1.485361856148997400e-08,1.540375258228589811e-08,1.595388660308182221e-08,1.650402062387774632e-08,1.705415464467367042e-08,1.760428866546959453e-08,1.815442268626551863e-08,1.870455670706144274e-08,1.925469072785736685e-08,1.980482474865329095e-08,2.035495876944921506e-08,2.090509279024513916e-08,2.145522681104106327e-08,2.200536083183698737e-08,2.255549485263291148e-08,2.310562887342883558e-08,2.365576289422475969e-08,2.420589691502068379e-08,2.475603093581660790e-08,2.530616495661253200e-08,2.585629897740845611e-08,2.640643299820438021e-08,2.695656701900030432e-08,2.750670103979622842e-08,2.805683506059215253e-08,2.860696908138807663e-08,2.915710310218400074e-08,2.970723712297992485e-08,3.025737114377584895e-08,3.080750516457177636e-08,3.135763918536770378e-08,3.190777320616363119e-08,3.245790722695955861e-08,3.300804124775548602e-08,3.355817526855141343e-08,3.410830928934734085e-08,3.465844331014326826e-08 +0.000000000000000000e+00,4.958396909267761366e-10,9.916793818535522732e-10,1.487519072780328410e-09,1.983358763707104546e-09,2.479198454633880476e-09,2.975038145560656406e-09,3.470877836487432336e-09,3.966717527414208266e-09,4.462557218340984196e-09,4.958396909267760125e-09,5.454236600194536055e-09,5.950076291121311985e-09,6.445915982048087915e-09,6.941755672974863845e-09,7.437595363901639774e-09,7.933435054828414877e-09,8.429274745755189980e-09,8.925114436681965082e-09,9.420954127608740185e-09,9.916793818535515288e-09,1.041263350946229039e-08,1.090847320038906549e-08,1.140431289131584060e-08,1.190015258224261570e-08,1.239599227316939080e-08,1.289183196409616590e-08,1.338767165502294101e-08,1.388351134594971611e-08,1.437935103687649121e-08,1.487519072780326631e-08,1.537103041873004142e-08,1.586687010965681652e-08,1.636270980058359162e-08,1.685854949151036672e-08,1.735438918243714183e-08,1.785022887336391693e-08,1.834606856429069203e-08,1.884190825521746713e-08,1.933774794614424224e-08,1.983358763707101734e-08,2.032942732799779244e-08,2.082526701892456755e-08,2.132110670985134265e-08,2.181694640077811775e-08,2.231278609170489285e-08,2.280862578263166796e-08,2.330446547355844306e-08,2.380030516448521816e-08,2.429614485541199326e-08,2.479198454633876837e-08,2.528782423726554347e-08,2.578366392819231857e-08,2.627950361911909367e-08,2.677534331004586878e-08,2.727118300097264388e-08,2.776702269189941898e-08,2.826286238282619408e-08,2.875870207375296919e-08,2.925454176467974429e-08,2.975038145560651939e-08,3.024622114653329780e-08,3.074206083746007622e-08,3.123790052838685463e-08 +0.000000000000000000e+00,6.039025728961263379e-10,1.207805145792252676e-09,1.811707718688378910e-09,2.415610291584504938e-09,3.019512864480630966e-09,3.623415437376756994e-09,4.227318010272882608e-09,4.831220583169008222e-09,5.435123156065133836e-09,6.039025728961259450e-09,6.642928301857385064e-09,7.246830874753510679e-09,7.850733447649636293e-09,8.454636020545761907e-09,9.058538593441887521e-09,9.662441166338013135e-09,1.026634373923413875e-08,1.087024631213026436e-08,1.147414888502638998e-08,1.207805145792251559e-08,1.268195403081864121e-08,1.328585660371476682e-08,1.388975917661089243e-08,1.449366174950701805e-08,1.509756432240314366e-08,1.570146689529926928e-08,1.630536946819539489e-08,1.690927204109152051e-08,1.751317461398764612e-08,1.811707718688377173e-08,1.872097975977989735e-08,1.932488233267602296e-08,1.992878490557214858e-08,2.053268747846827419e-08,2.113659005136439980e-08,2.174049262426052542e-08,2.234439519715665103e-08,2.294829777005277665e-08,2.355220034294890226e-08,2.415610291584502787e-08,2.476000548874115349e-08,2.536390806163727910e-08,2.596781063453340472e-08,2.657171320742953033e-08,2.717561578032565595e-08,2.777951835322178156e-08,2.838342092611790717e-08,2.898732349901403279e-08,2.959122607191015840e-08,3.019512864480628071e-08,3.079903121770239970e-08,3.140293379059851870e-08,3.200683636349463770e-08,3.261073893639075669e-08,3.321464150928687569e-08,3.381854408218299469e-08,3.442244665507911368e-08,3.502634922797523268e-08,3.563025180087135168e-08,3.623415437376747067e-08,3.683805694666358967e-08,3.744195951955970867e-08,3.804586209245582766e-08 +0.000000000000000000e+00,-5.501340209527684062e-10,-1.100268041905536812e-09,-1.650402062858305322e-09,-2.200536083811074038e-09,-2.750670104763842755e-09,-3.300804125716611471e-09,-3.850938146669380601e-09,-4.401072167622149731e-09,-4.951206188574918861e-09,-5.501340209527687991e-09,-6.051474230480457121e-09,-6.601608251433226250e-09,-7.151742272385995380e-09,-7.701876293338764510e-09,-8.252010314291533640e-09,-8.802144335244302770e-09,-9.352278356197071900e-09,-9.902412377149841030e-09,-1.045254639810261016e-08,-1.100268041905537929e-08,-1.155281444000814842e-08,-1.210294846096091755e-08,-1.265308248191368668e-08,-1.320321650286645581e-08,-1.375335052381922494e-08,-1.430348454477199407e-08,-1.485361856572476320e-08,-1.540375258667753233e-08,-1.595388660763030311e-08,-1.650402062858307390e-08,-1.705415464953584468e-08,-1.760428867048861547e-08,-1.815442269144138625e-08,-1.870455671239415704e-08,-1.925469073334692782e-08,-1.980482475429969860e-08,-2.035495877525246939e-08,-2.090509279620524017e-08,-2.145522681715801096e-08,-2.200536083811078174e-08,-2.255549485906355253e-08,-2.310562888001632331e-08,-2.365576290096909409e-08,-2.420589692192186488e-08,-2.475603094287463566e-08,-2.530616496382740645e-08,-2.585629898478017723e-08,-2.640643300573294802e-08,-2.695656702668571880e-08,-2.750670104763848958e-08,-2.805683506859126037e-08,-2.860696908954403115e-08,-2.915710311049680194e-08,-2.970723713144957272e-08,-3.025737115240234351e-08,-3.080750517335511098e-08,-3.135763919430787846e-08,-3.190777321526064593e-08,-3.245790723621341341e-08,-3.300804125716618088e-08,-3.355817527811894836e-08,-3.410830929907171583e-08,-3.465844332002448331e-08 +0.000000000000000000e+00,-4.958396910872214649e-10,-9.916793821744429298e-10,-1.487519073261664395e-09,-1.983358764348885860e-09,-2.479198455436107531e-09,-2.975038146523329203e-09,-3.470877837610550875e-09,-3.966717528697772546e-09,-4.462557219784994218e-09,-4.958396910872215890e-09,-5.454236601959437561e-09,-5.950076293046659233e-09,-6.445915984133880905e-09,-6.941755675221102576e-09,-7.437595366308324248e-09,-7.933435057395546747e-09,-8.429274748482768419e-09,-8.925114439569990090e-09,-9.420954130657211762e-09,-9.916793821744433434e-09,-1.041263351283165511e-08,-1.090847320391887678e-08,-1.140431289500609845e-08,-1.190015258609332012e-08,-1.239599227718054179e-08,-1.289183196826776346e-08,-1.338767165935498514e-08,-1.388351135044220681e-08,-1.437935104152942848e-08,-1.487519073261665015e-08,-1.537103042370387182e-08,-1.586687011479109349e-08,-1.636270980587831517e-08,-1.685854949696553684e-08,-1.735438918805275851e-08,-1.785022887913998018e-08,-1.834606857022720185e-08,-1.884190826131442352e-08,-1.933774795240164520e-08,-1.983358764348886687e-08,-2.032942733457608854e-08,-2.082526702566331021e-08,-2.132110671675053188e-08,-2.181694640783775355e-08,-2.231278609892497523e-08,-2.280862579001219690e-08,-2.330446548109941857e-08,-2.380030517218664024e-08,-2.429614486327386191e-08,-2.479198455436108358e-08,-2.528782424544830526e-08,-2.578366393653552693e-08,-2.627950362762274860e-08,-2.677534331870997027e-08,-2.727118300979719194e-08,-2.776702270088441361e-08,-2.826286239197163529e-08,-2.875870208305885696e-08,-2.925454177414607863e-08,-2.975038146523330030e-08,-3.024622115632052528e-08,-3.074206084740775026e-08,-3.123790053849497524e-08 +0.000000000000000000e+00,-6.039025730615138636e-10,-1.207805146123027727e-09,-1.811707719184541694e-09,-2.415610292246055868e-09,-3.019512865307570042e-09,-3.623415438369084215e-09,-4.227318011430597976e-09,-4.831220584492111736e-09,-5.435123157553625496e-09,-6.039025730615139256e-09,-6.642928303676653016e-09,-7.246830876738166777e-09,-7.850733449799680537e-09,-8.454636022861194297e-09,-9.058538595922708057e-09,-9.662441168984221817e-09,-1.026634374204573558e-08,-1.087024631510724934e-08,-1.147414888816876310e-08,-1.207805146123027686e-08,-1.268195403429179062e-08,-1.328585660735330438e-08,-1.388975918041481814e-08,-1.449366175347633190e-08,-1.509756432653784566e-08,-1.570146689959936107e-08,-1.630536947266087649e-08,-1.690927204572239190e-08,-1.751317461878390732e-08,-1.811707719184542273e-08,-1.872097976490693815e-08,-1.932488233796845356e-08,-1.992878491102996898e-08,-2.053268748409148439e-08,-2.113659005715299980e-08,-2.174049263021451522e-08,-2.234439520327603063e-08,-2.294829777633754605e-08,-2.355220034939906146e-08,-2.415610292246057688e-08,-2.476000549552209229e-08,-2.536390806858360771e-08,-2.596781064164512312e-08,-2.657171321470663854e-08,-2.717561578776815395e-08,-2.777951836082966936e-08,-2.838342093389118478e-08,-2.898732350695270019e-08,-2.959122608001421561e-08,-3.019512865307573102e-08,-3.079903122613724644e-08,-3.140293379919876185e-08,-3.200683637226027727e-08,-3.261073894532179268e-08,-3.321464151838330810e-08,-3.381854409144482351e-08,-3.442244666450633892e-08,-3.502634923756785434e-08,-3.563025181062936975e-08,-3.623415438369088517e-08,-3.683805695675240058e-08,-3.744195952981391600e-08,-3.804586210287543141e-08 +0.000000000000000000e+00,5.937785805347847493e-10,1.187557161069569499e-09,1.781335741604354248e-09,2.375114322139138997e-09,2.968892902673923954e-09,3.562671483208708910e-09,4.156450063743493866e-09,4.750228644278278822e-09,5.344007224813063778e-09,5.937785805347848734e-09,6.531564385882633690e-09,7.125342966417418646e-09,7.719121546952202775e-09,8.312900127486986077e-09,8.906678708021769379e-09,9.500457288556552681e-09,1.009423586909133598e-08,1.068801444962611928e-08,1.128179303016090259e-08,1.187557161069568589e-08,1.246935019123046919e-08,1.306312877176525249e-08,1.365690735230003579e-08,1.425068593283481909e-08,1.484446451336960240e-08,1.543824309390438570e-08,1.603202167443916900e-08,1.662580025497395230e-08,1.721957883550873560e-08,1.781335741604351891e-08,1.840713599657830221e-08,1.900091457711308551e-08,1.959469315764786881e-08,2.018847173818265211e-08,2.078225031871743541e-08,2.137602889925221872e-08,2.196980747978700202e-08,2.256358606032178532e-08,2.315736464085656862e-08,2.375114322139135192e-08,2.434492180192613523e-08,2.493870038246091853e-08,2.553247896299570183e-08,2.612625754353048513e-08,2.672003612406526843e-08,2.731381470460005173e-08,2.790759328513483504e-08,2.850137186566961834e-08,2.909515044620440164e-08,2.968892902673918494e-08,3.028270760727396824e-08,3.087648618780875154e-08,3.147026476834353485e-08,3.206404334887831815e-08,3.265782192941310145e-08,3.325160050994788475e-08,3.384537909048266805e-08,3.443915767101745136e-08,3.503293625155223466e-08,3.562671483208701796e-08,3.622049341262180126e-08,3.681427199315658456e-08,3.740805057369136786e-08 +0.000000000000000000e+00,5.663812990428912989e-10,1.132762598085782598e-09,1.699143897128673897e-09,2.265525196171565195e-09,2.831906495214456701e-09,3.398287794257348207e-09,3.964669093300239712e-09,4.531050392343131218e-09,5.097431691386022724e-09,5.663812990428914229e-09,6.230194289471805735e-09,6.796575588514697241e-09,7.362956887557588746e-09,7.929338186600481079e-09,8.495719485643374239e-09,9.062100784686267399e-09,9.628482083729160559e-09,1.019486338277205372e-08,1.076124468181494688e-08,1.132762598085784004e-08,1.189400727990073320e-08,1.246038857894362636e-08,1.302676987798651952e-08,1.359315117702941268e-08,1.415953247607230584e-08,1.472591377511519900e-08,1.529229507415809216e-08,1.585867637320098532e-08,1.642505767224387848e-08,1.699143897128677164e-08,1.755782027032966480e-08,1.812420156937255796e-08,1.869058286841545112e-08,1.925696416745834428e-08,1.982334546650123744e-08,2.038972676554413060e-08,2.095610806458702376e-08,2.152248936362991692e-08,2.208887066267281008e-08,2.265525196171570324e-08,2.322163326075859640e-08,2.378801455980148956e-08,2.435439585884438272e-08,2.492077715788727588e-08,2.548715845693016904e-08,2.605353975597306220e-08,2.661992105501595536e-08,2.718630235405884852e-08,2.775268365310174168e-08,2.831906495214463484e-08,2.888544625118752800e-08,2.945182755023042116e-08,3.001820884927331432e-08,3.058459014831621079e-08,3.115097144735910726e-08,3.171735274640200373e-08,3.228373404544490019e-08,3.285011534448779666e-08,3.341649664353069313e-08,3.398287794257358960e-08,3.454925924161648607e-08,3.511564054065938254e-08,3.568202183970227901e-08 +0.000000000000000000e+00,6.287329996915813495e-10,1.257465999383162699e-09,1.886198999074743945e-09,2.514931998766324984e-09,3.143664998457906023e-09,3.772397998149487063e-09,4.401130997841068102e-09,5.029863997532649141e-09,5.658596997224230180e-09,6.287329996915811220e-09,6.916062996607392259e-09,7.544795996298972471e-09,8.173528995990552683e-09,8.802261995682132895e-09,9.430994995373713107e-09,1.005972799506529332e-08,1.068846099475687353e-08,1.131719399444845374e-08,1.194592699414003396e-08,1.257465999383161417e-08,1.320339299352319438e-08,1.383212599321477459e-08,1.446085899290635480e-08,1.508959199259793502e-08,1.571832499228951523e-08,1.634705799198109544e-08,1.697579099167267565e-08,1.760452399136425586e-08,1.823325699105583608e-08,1.886198999074741629e-08,1.949072299043899650e-08,2.011945599013057671e-08,2.074818898982215692e-08,2.137692198951373714e-08,2.200565498920531735e-08,2.263438798889689756e-08,2.326312098858847777e-08,2.389185398828005799e-08,2.452058698797163820e-08,2.514931998766321841e-08,2.577805298735479862e-08,2.640678598704637883e-08,2.703551898673795905e-08,2.766425198642953926e-08,2.829298498612111947e-08,2.892171798581269968e-08,2.955045098550427989e-08,3.017918398519586341e-08,3.080791698488744694e-08,3.143664998457903046e-08,3.206538298427061398e-08,3.269411598396219750e-08,3.332284898365378102e-08,3.395158198334536454e-08,3.458031498303694806e-08,3.520904798272853158e-08,3.583778098242011510e-08,3.646651398211169862e-08,3.709524698180328214e-08,3.772397998149486566e-08,3.835271298118644918e-08,3.898144598087803271e-08,3.961017898056961623e-08 +0.000000000000000000e+00,-5.937785806820737700e-10,-1.187557161364147540e-09,-1.781335742046221310e-09,-2.375114322728295080e-09,-2.968892903410368643e-09,-3.562671484092442206e-09,-4.156450064774515770e-09,-4.750228645456589333e-09,-5.344007226138662896e-09,-5.937785806820736459e-09,-6.531564387502810022e-09,-7.125342968184883585e-09,-7.719121548866957149e-09,-8.312900129549031539e-09,-8.906678710231105929e-09,-9.500457290913180320e-09,-1.009423587159525471e-08,-1.068801445227732910e-08,-1.128179303295940349e-08,-1.187557161364147788e-08,-1.246935019432355227e-08,-1.306312877500562666e-08,-1.365690735568770105e-08,-1.425068593636977544e-08,-1.484446451705184983e-08,-1.543824309773392422e-08,-1.603202167841599861e-08,-1.662580025909807300e-08,-1.721957883978014739e-08,-1.781335742046222178e-08,-1.840713600114429618e-08,-1.900091458182637057e-08,-1.959469316250844496e-08,-2.018847174319051935e-08,-2.078225032387259374e-08,-2.137602890455466813e-08,-2.196980748523674252e-08,-2.256358606591881691e-08,-2.315736464660089130e-08,-2.375114322728296569e-08,-2.434492180796504008e-08,-2.493870038864711447e-08,-2.553247896932918886e-08,-2.612625755001126325e-08,-2.672003613069333764e-08,-2.731381471137541203e-08,-2.790759329205748642e-08,-2.850137187273956081e-08,-2.909515045342163520e-08,-2.968892903410370959e-08,-3.028270761478578067e-08,-3.087648619546785506e-08,-3.147026477614992945e-08,-3.206404335683200385e-08,-3.265782193751407824e-08,-3.325160051819615263e-08,-3.384537909887822702e-08,-3.443915767956030141e-08,-3.503293626024237580e-08,-3.562671484092445019e-08,-3.622049342160652458e-08,-3.681427200228859897e-08,-3.740805058297067336e-08 +0.000000000000000000e+00,-5.663812991951409216e-10,-1.132762598390281843e-09,-1.699143897585422765e-09,-2.265525196780563687e-09,-2.831906495975704401e-09,-3.398287795170845116e-09,-3.964669094365985831e-09,-4.531050393561126546e-09,-5.097431692756267261e-09,-5.663812991951407976e-09,-6.230194291146548690e-09,-6.796575590341689405e-09,-7.362956889536830120e-09,-7.929338188731970008e-09,-8.495719487927110723e-09,-9.062100787122251437e-09,-9.628482086317392152e-09,-1.019486338551253287e-08,-1.076124468470767358e-08,-1.132762598390281430e-08,-1.189400728309795501e-08,-1.246038858229309573e-08,-1.302676988148823644e-08,-1.359315118068337716e-08,-1.415953247987851787e-08,-1.472591377907365859e-08,-1.529229507826879930e-08,-1.585867637746394002e-08,-1.642505767665908073e-08,-1.699143897585422145e-08,-1.755782027504936216e-08,-1.812420157424450287e-08,-1.869058287343964359e-08,-1.925696417263478430e-08,-1.982334547182992502e-08,-2.038972677102506573e-08,-2.095610807022020645e-08,-2.152248936941534716e-08,-2.208887066861048788e-08,-2.265525196780562859e-08,-2.322163326700076931e-08,-2.378801456619591002e-08,-2.435439586539105074e-08,-2.492077716458619145e-08,-2.548715846378133217e-08,-2.605353976297647288e-08,-2.661992106217161360e-08,-2.718630236136675431e-08,-2.775268366056189503e-08,-2.831906495975703574e-08,-2.888544625895217646e-08,-2.945182755814731717e-08,-3.001820885734246120e-08,-3.058459015653760522e-08,-3.115097145573274924e-08,-3.171735275492789327e-08,-3.228373405412303729e-08,-3.285011535331818131e-08,-3.341649665251332534e-08,-3.398287795170846936e-08,-3.454925925090361338e-08,-3.511564055009875741e-08,-3.568202184929390143e-08 +0.000000000000000000e+00,-6.287329998497202914e-10,-1.257465999699440583e-09,-1.886198999549160978e-09,-2.514931999398881579e-09,-3.143664999248602181e-09,-3.772397999098322782e-09,-4.401130998948043384e-09,-5.029863998797763985e-09,-5.658596998647484587e-09,-6.287329998497205189e-09,-6.916062998346925790e-09,-7.544795998196647219e-09,-8.173528998046367821e-09,-8.802261997896088422e-09,-9.430994997745809024e-09,-1.005972799759552963e-08,-1.068846099744525023e-08,-1.131719399729497083e-08,-1.194592699714469143e-08,-1.257465999699441203e-08,-1.320339299684413263e-08,-1.383212599669385323e-08,-1.446085899654357384e-08,-1.508959199639329444e-08,-1.571832499624301504e-08,-1.634705799609273564e-08,-1.697579099594245624e-08,-1.760452399579217684e-08,-1.823325699564189745e-08,-1.886198999549161805e-08,-1.949072299534133865e-08,-2.011945599519105925e-08,-2.074818899504077985e-08,-2.137692199489050045e-08,-2.200565499474022106e-08,-2.263438799458994166e-08,-2.326312099443966226e-08,-2.389185399428938286e-08,-2.452058699413910346e-08,-2.514931999398882406e-08,-2.577805299383854466e-08,-2.640678599368826527e-08,-2.703551899353798587e-08,-2.766425199338770647e-08,-2.829298499323742707e-08,-2.892171799308714767e-08,-2.955045099293686827e-08,-3.017918399278658888e-08,-3.080791699263630948e-08,-3.143664999248603008e-08,-3.206538299233575068e-08,-3.269411599218547128e-08,-3.332284899203519188e-08,-3.395158199188491249e-08,-3.458031499173463309e-08,-3.520904799158435369e-08,-3.583778099143407429e-08,-3.646651399128379489e-08,-3.709524699113351549e-08,-3.772397999098323610e-08,-3.835271299083295670e-08,-3.898144599068267730e-08,-3.961017899053239790e-08 +0.000000000000000000e+00,6.222600350906014343e-10,1.244520070181202869e-09,1.866780105271804510e-09,2.489040140362406151e-09,3.111300175453007792e-09,3.733560210543609019e-09,4.355820245634210247e-09,4.978080280724811475e-09,5.600340315815412702e-09,6.222600350906013930e-09,6.844860385996615157e-09,7.467120421087216385e-09,8.089380456177818439e-09,8.711640491268420494e-09,9.333900526359022549e-09,9.956160561449624603e-09,1.057842059654022666e-08,1.120068063163082871e-08,1.182294066672143077e-08,1.244520070181203282e-08,1.306746073690263488e-08,1.368972077199323693e-08,1.431198080708383899e-08,1.493424084217444270e-08,1.555650087726504640e-08,1.617876091235565011e-08,1.680102094744625382e-08,1.742328098253685753e-08,1.804554101762746124e-08,1.866780105271806495e-08,1.929006108780866866e-08,1.991232112289927237e-08,2.053458115798987608e-08,2.115684119308047979e-08,2.177910122817108349e-08,2.240136126326168720e-08,2.302362129835229091e-08,2.364588133344289462e-08,2.426814136853349833e-08,2.489040140362410204e-08,2.551266143871470575e-08,2.613492147380530946e-08,2.675718150889591317e-08,2.737944154398651688e-08,2.800170157907712059e-08,2.862396161416772429e-08,2.924622164925832800e-08,2.986848168434893171e-08,3.049074171943953542e-08,3.111300175453013913e-08,3.173526178962074284e-08,3.235752182471134655e-08,3.297978185980195026e-08,3.360204189489255397e-08,3.422430192998315768e-08,3.484656196507376139e-08,3.546882200016436509e-08,3.609108203525496880e-08,3.671334207034557251e-08,3.733560210543617622e-08,3.795786214052677993e-08,3.858012217561738364e-08,3.920238221070798735e-08 +0.000000000000000000e+00,6.050787674454314980e-10,1.210157534890862996e-09,1.815236302336294391e-09,2.420315069781725578e-09,3.025393837227156766e-09,3.630472604672587954e-09,4.235551372118019555e-09,4.840630139563451157e-09,5.445708907008882758e-09,6.050787674454314360e-09,6.655866441899745961e-09,7.260945209345177562e-09,7.866023976790609164e-09,8.471102744236040765e-09,9.076181511681472367e-09,9.681260279126903968e-09,1.028633904657233557e-08,1.089141781401776717e-08,1.149649658146319877e-08,1.210157534890863037e-08,1.270665411635406198e-08,1.331173288379949358e-08,1.391681165124492518e-08,1.452189041869035678e-08,1.512696918613578838e-08,1.573204795358121833e-08,1.633712672102664827e-08,1.694220548847207822e-08,1.754728425591750817e-08,1.815236302336293812e-08,1.875744179080836806e-08,1.936252055825379801e-08,1.996759932569922796e-08,2.057267809314465790e-08,2.117775686059008785e-08,2.178283562803551780e-08,2.238791439548094775e-08,2.299299316292637769e-08,2.359807193037180764e-08,2.420315069781723759e-08,2.480822946526266753e-08,2.541330823270809748e-08,2.601838700015352743e-08,2.662346576759895737e-08,2.722854453504438732e-08,2.783362330248981727e-08,2.843870206993524722e-08,2.904378083738067716e-08,2.964885960482610711e-08,3.025393837227153706e-08,3.085901713971696700e-08,3.146409590716239695e-08,3.206917467460782690e-08,3.267425344205325684e-08,3.327933220949868679e-08,3.388441097694411674e-08,3.448948974438954669e-08,3.509456851183497663e-08,3.569964727928040658e-08,3.630472604672583653e-08,3.690980481417126647e-08,3.751488358161669642e-08,3.811996234906212637e-08 +0.000000000000000000e+00,6.470686087440349432e-10,1.294137217488069886e-09,1.941205826232105036e-09,2.588274434976140186e-09,3.235343043720175336e-09,3.882411652464210073e-09,4.529480261208244809e-09,5.176548869952279545e-09,5.823617478696314282e-09,6.470686087440349018e-09,7.117754696184383754e-09,7.764823304928418491e-09,8.411891913672453227e-09,9.058960522416487964e-09,9.706029131160522700e-09,1.035309773990455744e-08,1.100016634864859217e-08,1.164723495739262691e-08,1.229430356613666165e-08,1.294137217488069638e-08,1.358844078362473112e-08,1.423550939236876585e-08,1.488257800111280059e-08,1.552964660985683367e-08,1.617671521860086510e-08,1.682378382734489653e-08,1.747085243608892796e-08,1.811792104483295938e-08,1.876498965357699081e-08,1.941205826232102224e-08,2.005912687106505367e-08,2.070619547980908509e-08,2.135326408855311652e-08,2.200033269729714795e-08,2.264740130604117938e-08,2.329446991478521080e-08,2.394153852352924223e-08,2.458860713227327366e-08,2.523567574101730509e-08,2.588274434976133652e-08,2.652981295850536794e-08,2.717688156724939937e-08,2.782395017599343080e-08,2.847101878473746223e-08,2.911808739348149365e-08,2.976515600222552508e-08,3.041222461096955651e-08,3.105929321971358794e-08,3.170636182845761936e-08,3.235343043720165079e-08,3.300049904594568222e-08,3.364756765468971365e-08,3.429463626343374507e-08,3.494170487217777650e-08,3.558877348092180793e-08,3.623584208966583936e-08,3.688291069840987079e-08,3.752997930715390221e-08,3.817704791589793364e-08,3.882411652464196507e-08,3.947118513338599650e-08,4.011825374213002792e-08,4.076532235087405935e-08 +0.000000000000000000e+00,-6.222600352258823774e-10,-1.244520070451764755e-09,-1.866780105677647029e-09,-2.489040140903529096e-09,-3.111300176129411163e-09,-3.733560211355293230e-09,-4.355820246581175711e-09,-4.978080281807058192e-09,-5.600340317032940673e-09,-6.222600352258823154e-09,-6.844860387484705634e-09,-7.467120422710588115e-09,-8.089380457936470596e-09,-8.711640493162353077e-09,-9.333900528388235558e-09,-9.956160563614118038e-09,-1.057842059884000052e-08,-1.120068063406588300e-08,-1.182294066929176548e-08,-1.244520070451764796e-08,-1.306746073974353044e-08,-1.368972077496941292e-08,-1.431198081019529540e-08,-1.493424084542117954e-08,-1.555650088064706367e-08,-1.617876091587294781e-08,-1.680102095109883194e-08,-1.742328098632471608e-08,-1.804554102155060021e-08,-1.866780105677648435e-08,-1.929006109200236849e-08,-1.991232112722825262e-08,-2.053458116245413676e-08,-2.115684119768002089e-08,-2.177910123290590503e-08,-2.240136126813178916e-08,-2.302362130335767330e-08,-2.364588133858355743e-08,-2.426814137380944157e-08,-2.489040140903532570e-08,-2.551266144426120984e-08,-2.613492147948709397e-08,-2.675718151471297811e-08,-2.737944154993886224e-08,-2.800170158516474638e-08,-2.862396162039063051e-08,-2.924622165561651465e-08,-2.986848169084239878e-08,-3.049074172606828292e-08,-3.111300176129416705e-08,-3.173526179652005119e-08,-3.235752183174593532e-08,-3.297978186697181946e-08,-3.360204190219770359e-08,-3.422430193742358773e-08,-3.484656197264947186e-08,-3.546882200787535600e-08,-3.609108204310124013e-08,-3.671334207832712427e-08,-3.733560211355300840e-08,-3.795786214877889254e-08,-3.858012218400477668e-08,-3.920238221923066081e-08 +0.000000000000000000e+00,-6.050787675872600926e-10,-1.210157535174520185e-09,-1.815236302761780381e-09,-2.420315070349040784e-09,-3.025393837936301187e-09,-3.630472605523561590e-09,-4.235551373110821579e-09,-4.840630140698081568e-09,-5.445708908285341557e-09,-6.050787675872601547e-09,-6.655866443459861536e-09,-7.260945211047121525e-09,-7.866023978634381514e-09,-8.471102746221641504e-09,-9.076181513808901493e-09,-9.681260281396161482e-09,-1.028633904898342147e-08,-1.089141781657068146e-08,-1.149649658415794145e-08,-1.210157535174520144e-08,-1.270665411933246143e-08,-1.331173288691972142e-08,-1.391681165450698141e-08,-1.452189042209424140e-08,-1.512696918968150139e-08,-1.573204795726876303e-08,-1.633712672485602467e-08,-1.694220549244328632e-08,-1.754728426003054796e-08,-1.815236302761780960e-08,-1.875744179520507125e-08,-1.936252056279233289e-08,-1.996759933037959453e-08,-2.057267809796685618e-08,-2.117775686555411782e-08,-2.178283563314137946e-08,-2.238791440072864111e-08,-2.299299316831590275e-08,-2.359807193590316440e-08,-2.420315070349042604e-08,-2.480822947107768768e-08,-2.541330823866494933e-08,-2.601838700625221097e-08,-2.662346577383947261e-08,-2.722854454142673426e-08,-2.783362330901399590e-08,-2.843870207660125754e-08,-2.904378084418851919e-08,-2.964885961177578083e-08,-3.025393837936304247e-08,-3.085901714695030412e-08,-3.146409591453756576e-08,-3.206917468212482741e-08,-3.267425344971208905e-08,-3.327933221729935069e-08,-3.388441098488661234e-08,-3.448948975247387398e-08,-3.509456852006113562e-08,-3.569964728764839727e-08,-3.630472605523565891e-08,-3.690980482282292055e-08,-3.751488359041018220e-08,-3.811996235799744384e-08 +0.000000000000000000e+00,-6.470686088894407837e-10,-1.294137217778881567e-09,-1.941205826668322455e-09,-2.588274435557763549e-09,-3.235343044447204643e-09,-3.882411653336645736e-09,-4.529480262226087244e-09,-5.176548871115528751e-09,-5.823617480004970259e-09,-6.470686088894411767e-09,-7.117754697783853274e-09,-7.764823306673294782e-09,-8.411891915562736289e-09,-9.058960524452177797e-09,-9.706029133341619304e-09,-1.035309774223106081e-08,-1.100016635112050232e-08,-1.164723496000994383e-08,-1.229430356889938533e-08,-1.294137217778882684e-08,-1.358844078667826835e-08,-1.423550939556770986e-08,-1.488257800445715136e-08,-1.552964661334659287e-08,-1.617671522223603273e-08,-1.682378383112547258e-08,-1.747085244001491243e-08,-1.811792104890435228e-08,-1.876498965779379214e-08,-1.941205826668323199e-08,-2.005912687557267184e-08,-2.070619548446211170e-08,-2.135326409335155155e-08,-2.200033270224099140e-08,-2.264740131113043126e-08,-2.329446992001987111e-08,-2.394153852890931096e-08,-2.458860713779875082e-08,-2.523567574668819067e-08,-2.588274435557763052e-08,-2.652981296446707038e-08,-2.717688157335651023e-08,-2.782395018224595008e-08,-2.847101879113538994e-08,-2.911808740002482979e-08,-2.976515600891426964e-08,-3.041222461780370949e-08,-3.105929322669315266e-08,-3.170636183558259582e-08,-3.235343044447203898e-08,-3.300049905336148214e-08,-3.364756766225092530e-08,-3.429463627114036847e-08,-3.494170488002981163e-08,-3.558877348891925479e-08,-3.623584209780869795e-08,-3.688291070669814111e-08,-3.752997931558758428e-08,-3.817704792447702744e-08,-3.882411653336647060e-08,-3.947118514225591376e-08,-4.011825375114535692e-08,-4.076532236003480008e-08 +0.000000000000000000e+00,6.450176811891570371e-10,1.290035362378314074e-09,1.935053043567471318e-09,2.580070724756628562e-09,3.225088405945785806e-09,3.870106087134942636e-09,4.515123768324099466e-09,5.160141449513256296e-09,5.805159130702413127e-09,6.450176811891569957e-09,7.095194493080726787e-09,7.740212174269883617e-09,8.385229855459041275e-09,9.030247536648198932e-09,9.675265217837356590e-09,1.032028289902651425e-08,1.096530058021567190e-08,1.161031826140482956e-08,1.225533594259398722e-08,1.290035362378314488e-08,1.354537130497230253e-08,1.419038898616146019e-08,1.483540666735061785e-08,1.548042434853977716e-08,1.612544202972893647e-08,1.677045971091809578e-08,1.741547739210725510e-08,1.806049507329641441e-08,1.870551275448557372e-08,1.935053043567473303e-08,1.999554811686389234e-08,2.064056579805305166e-08,2.128558347924221097e-08,2.193060116043137028e-08,2.257561884162052959e-08,2.322063652280968890e-08,2.386565420399884821e-08,2.451067188518800753e-08,2.515568956637716684e-08,2.580070724756632615e-08,2.644572492875548546e-08,2.709074260994464477e-08,2.773576029113380409e-08,2.838077797232296340e-08,2.902579565351212271e-08,2.967081333470128202e-08,3.031583101589044464e-08,3.096084869707960726e-08,3.160586637826876988e-08,3.225088405945793250e-08,3.289590174064709512e-08,3.354091942183625774e-08,3.418593710302542036e-08,3.483095478421458298e-08,3.547597246540374561e-08,3.612099014659290823e-08,3.676600782778207085e-08,3.741102550897123347e-08,3.805604319016039609e-08,3.870106087134955871e-08,3.934607855253872133e-08,3.999109623372788395e-08,4.063611391491704657e-08 +0.000000000000000000e+00,6.323786806329203011e-10,1.264757361265840602e-09,1.897136041898760903e-09,2.529514722531681205e-09,3.161893403164601506e-09,3.794272083797521807e-09,4.426650764430442108e-09,5.059029445063362409e-09,5.691408125696282710e-09,6.323786806329203011e-09,6.956165486962123313e-09,7.588544167595043614e-09,8.220922848227964742e-09,8.853301528860885870e-09,9.485680209493806999e-09,1.011805889012672813e-08,1.075043757075964926e-08,1.138281625139257038e-08,1.201519493202549151e-08,1.264757361265841264e-08,1.327995229329133377e-08,1.391233097392425490e-08,1.454470965455717603e-08,1.517708833519009715e-08,1.580946701582301828e-08,1.644184569645593941e-08,1.707422437708886054e-08,1.770660305772178167e-08,1.833898173835470280e-08,1.897136041898762392e-08,1.960373909962054505e-08,2.023611778025346618e-08,2.086849646088638731e-08,2.150087514151930844e-08,2.213325382215222957e-08,2.276563250278515069e-08,2.339801118341807182e-08,2.403038986405099295e-08,2.466276854468391408e-08,2.529514722531683521e-08,2.592752590594975634e-08,2.655990458658267746e-08,2.719228326721559859e-08,2.782466194784851972e-08,2.845704062848144085e-08,2.908941930911436198e-08,2.972179798974728311e-08,3.035417667038020092e-08,3.098655535101311874e-08,3.161893403164603656e-08,3.225131271227895438e-08,3.288369139291187220e-08,3.351607007354479002e-08,3.414844875417770784e-08,3.478082743481062566e-08,3.541320611544354348e-08,3.604558479607646130e-08,3.667796347670937912e-08,3.731034215734229694e-08,3.794272083797521476e-08,3.857509951860813258e-08,3.920747819924105040e-08,3.983985687987396822e-08 +0.000000000000000000e+00,6.646549410283131542e-10,1.329309882056626308e-09,1.993964823084939463e-09,2.658619764113252617e-09,3.323274705141565771e-09,3.987929646169878925e-09,4.652584587198192493e-09,5.317239528226506061e-09,5.981894469254819629e-09,6.646549410283133196e-09,7.311204351311446764e-09,7.975859292339759505e-09,8.640514233368072245e-09,9.305169174396384986e-09,9.969824115424697727e-09,1.063447905645301047e-08,1.129913399748132321e-08,1.196378893850963595e-08,1.262844387953794869e-08,1.329309882056626143e-08,1.395775376159457417e-08,1.462240870262288691e-08,1.528706364365119800e-08,1.595171858467950908e-08,1.661637352570782017e-08,1.728102846673613126e-08,1.794568340776444234e-08,1.861033834879275343e-08,1.927499328982106451e-08,1.993964823084937560e-08,2.060430317187768669e-08,2.126895811290599777e-08,2.193361305393430886e-08,2.259826799496261995e-08,2.326292293599093103e-08,2.392757787701924212e-08,2.459223281804755320e-08,2.525688775907586429e-08,2.592154270010417538e-08,2.658619764113248646e-08,2.725085258216079755e-08,2.791550752318910864e-08,2.858016246421741972e-08,2.924481740524573081e-08,2.990947234627404189e-08,3.057412728730235629e-08,3.123878222833067068e-08,3.190343716935898508e-08,3.256809211038729947e-08,3.323274705141561387e-08,3.389740199244392826e-08,3.456205693347224266e-08,3.522671187450055705e-08,3.589136681552887145e-08,3.655602175655718584e-08,3.722067669758550024e-08,3.788533163861381463e-08,3.854998657964212903e-08,3.921464152067044342e-08,3.987929646169875782e-08,4.054395140272707221e-08,4.120860634375538661e-08,4.187326128478370100e-08 +0.000000000000000000e+00,-6.450176813073130667e-10,-1.290035362614626133e-09,-1.935053043921939304e-09,-2.580070725229252680e-09,-3.225088406536566057e-09,-3.870106087843879434e-09,-4.515123769151193225e-09,-5.160141450458507015e-09,-5.805159131765820806e-09,-6.450176813073134596e-09,-7.095194494380448387e-09,-7.740212175687762177e-09,-8.385229856995075968e-09,-9.030247538302389758e-09,-9.675265219609703549e-09,-1.032028290091701734e-08,-1.096530058222433113e-08,-1.161031826353164492e-08,-1.225533594483895871e-08,-1.290035362614627250e-08,-1.354537130745358629e-08,-1.419038898876090008e-08,-1.483540667006821387e-08,-1.548042435137552766e-08,-1.612544203268284145e-08,-1.677045971399015524e-08,-1.741547739529746903e-08,-1.806049507660478283e-08,-1.870551275791209662e-08,-1.935053043921941041e-08,-1.999554812052672420e-08,-2.064056580183403799e-08,-2.128558348314135178e-08,-2.193060116444866557e-08,-2.257561884575597936e-08,-2.322063652706329315e-08,-2.386565420837060694e-08,-2.451067188967792073e-08,-2.515568957098523452e-08,-2.580070725229254831e-08,-2.644572493359986210e-08,-2.709074261490717589e-08,-2.773576029621448968e-08,-2.838077797752180347e-08,-2.902579565882911726e-08,-2.967081334013643105e-08,-3.031583102144374484e-08,-3.096084870275106194e-08,-3.160586638405837904e-08,-3.225088406536569614e-08,-3.289590174667301324e-08,-3.354091942798033034e-08,-3.418593710928764744e-08,-3.483095479059496454e-08,-3.547597247190228164e-08,-3.612099015320959874e-08,-3.676600783451691584e-08,-3.741102551582423294e-08,-3.805604319713155004e-08,-3.870106087843886713e-08,-3.934607855974618423e-08,-3.999109624105350133e-08,-4.063611392236081843e-08 +0.000000000000000000e+00,-6.323786807604284348e-10,-1.264757361520856870e-09,-1.897136042281285201e-09,-2.529514723041713326e-09,-3.161893403802141450e-09,-3.794272084562569575e-09,-4.426650765322997286e-09,-5.059029446083424997e-09,-5.691408126843852708e-09,-6.323786807604280419e-09,-6.956165488364708130e-09,-7.588544169125135841e-09,-8.220922849885563552e-09,-8.853301530645991263e-09,-9.485680211406418974e-09,-1.011805889216684669e-08,-1.075043757292727440e-08,-1.138281625368770211e-08,-1.201519493444812982e-08,-1.264757361520855753e-08,-1.327995229596898524e-08,-1.391233097672941295e-08,-1.454470965748984066e-08,-1.517708833825026837e-08,-1.580946701901069443e-08,-1.644184569977112049e-08,-1.707422438053154654e-08,-1.770660306129197260e-08,-1.833898174205239866e-08,-1.897136042281282471e-08,-1.960373910357325077e-08,-2.023611778433367683e-08,-2.086849646509410288e-08,-2.150087514585452894e-08,-2.213325382661495500e-08,-2.276563250737538105e-08,-2.339801118813580711e-08,-2.403038986889623317e-08,-2.466276854965665922e-08,-2.529514723041708528e-08,-2.592752591117751134e-08,-2.655990459193793739e-08,-2.719228327269836345e-08,-2.782466195345878951e-08,-2.845704063421921556e-08,-2.908941931497964162e-08,-2.972179799574006768e-08,-3.035417667650049042e-08,-3.098655535726091317e-08,-3.161893403802133592e-08,-3.225131271878175867e-08,-3.288369139954218142e-08,-3.351607008030260416e-08,-3.414844876106302691e-08,-3.478082744182344966e-08,-3.541320612258387241e-08,-3.604558480334429516e-08,-3.667796348410471790e-08,-3.731034216486514065e-08,-3.794272084562556340e-08,-3.857509952638598615e-08,-3.920747820714640890e-08,-3.983985688790683164e-08 +0.000000000000000000e+00,-6.646549411544450661e-10,-1.329309882308890132e-09,-1.993964823463335302e-09,-2.658619764617780678e-09,-3.323274705772226054e-09,-3.987929646926671431e-09,-4.652584588081116807e-09,-5.317239529235562183e-09,-5.981894470390007560e-09,-6.646549411544452936e-09,-7.311204352698898312e-09,-7.975859293853344516e-09,-8.640514235007790719e-09,-9.305169176162236923e-09,-9.969824117316683126e-09,-1.063447905847112933e-08,-1.129913399962557553e-08,-1.196378894078002174e-08,-1.262844388193446794e-08,-1.329309882308891414e-08,-1.395775376424336035e-08,-1.462240870539780655e-08,-1.528706364655225275e-08,-1.595171858770669896e-08,-1.661637352886114516e-08,-1.728102847001559136e-08,-1.794568341117003757e-08,-1.861033835232448377e-08,-1.927499329347892998e-08,-1.993964823463337618e-08,-2.060430317578782238e-08,-2.126895811694226859e-08,-2.193361305809671479e-08,-2.259826799925116099e-08,-2.326292294040560720e-08,-2.392757788156005340e-08,-2.459223282271449960e-08,-2.525688776386894581e-08,-2.592154270502339201e-08,-2.658619764617783821e-08,-2.725085258733228442e-08,-2.791550752848673062e-08,-2.858016246964117682e-08,-2.924481741079562303e-08,-2.990947235195006923e-08,-3.057412729310451874e-08,-3.123878223425896826e-08,-3.190343717541341777e-08,-3.256809211656786728e-08,-3.323274705772231679e-08,-3.389740199887676630e-08,-3.456205694003121582e-08,-3.522671188118566533e-08,-3.589136682234011484e-08,-3.655602176349456435e-08,-3.722067670464901387e-08,-3.788533164580346338e-08,-3.854998658695791289e-08,-3.921464152811236240e-08,-3.987929646926681191e-08,-4.054395141042126143e-08,-4.120860635157571094e-08,-4.187326129273016045e-08 +0.000000000000000000e+00,6.661685676052847524e-10,1.332337135210569505e-09,1.998505702815854154e-09,2.664674270421138596e-09,3.330842838026423038e-09,3.997011405631707481e-09,4.663179973236991923e-09,5.329348540842276365e-09,5.995517108447560807e-09,6.661685676052845250e-09,7.327854243658129692e-09,7.994022811263413307e-09,8.660191378868696095e-09,9.326359946473978883e-09,9.992528514079261671e-09,1.065869708168454446e-08,1.132486564928982725e-08,1.199103421689511003e-08,1.265720278450039282e-08,1.332337135210567561e-08,1.398953991971095840e-08,1.465570848731624119e-08,1.532187705492152397e-08,1.598804562252680676e-08,1.665421419013208955e-08,1.732038275773737234e-08,1.798655132534265513e-08,1.865271989294793791e-08,1.931888846055322070e-08,1.998505702815850349e-08,2.065122559576378628e-08,2.131739416336906906e-08,2.198356273097435185e-08,2.264973129857963464e-08,2.331589986618491743e-08,2.398206843379020022e-08,2.464823700139548300e-08,2.531440556900076579e-08,2.598057413660604858e-08,2.664674270421133137e-08,2.731291127181661416e-08,2.797907983942189694e-08,2.864524840702717973e-08,2.931141697463246252e-08,2.997758554223774531e-08,3.064375410984302810e-08,3.130992267744831088e-08,3.197609124505359367e-08,3.264225981265887646e-08,3.330842838026415925e-08,3.397459694786944203e-08,3.464076551547472482e-08,3.530693408308000761e-08,3.597310265068529040e-08,3.663927121829057319e-08,3.730543978589585597e-08,3.797160835350113876e-08,3.863777692110642155e-08,3.930394548871170434e-08,3.997011405631698713e-08,4.063628262392226991e-08,4.130245119152755270e-08,4.196861975913283549e-08 +0.000000000000000000e+00,6.553226529565431538e-10,1.310645305913086308e-09,1.965967958869629565e-09,2.621290611826173029e-09,3.276613264782716493e-09,3.931935917739259957e-09,4.587258570695803007e-09,5.242581223652346058e-09,5.897903876608889108e-09,6.553226529565432159e-09,7.208549182521975209e-09,7.863871835478518259e-09,8.519194488435061310e-09,9.174517141391604360e-09,9.829839794348147411e-09,1.048516244730469046e-08,1.114048510026123351e-08,1.179580775321777656e-08,1.245113040617431961e-08,1.310645305913086266e-08,1.376177571208740571e-08,1.441709836504394876e-08,1.507242101800049181e-08,1.572774367095703321e-08,1.638306632391357461e-08,1.703838897687011600e-08,1.769371162982665740e-08,1.834903428278319879e-08,1.900435693573974019e-08,1.965967958869628159e-08,2.031500224165282298e-08,2.097032489460936438e-08,2.162564754756590577e-08,2.228097020052244717e-08,2.293629285347898857e-08,2.359161550643552996e-08,2.424693815939207136e-08,2.490226081234861276e-08,2.555758346530515415e-08,2.621290611826169555e-08,2.686822877121823694e-08,2.752355142417477834e-08,2.817887407713131974e-08,2.883419673008786113e-08,2.948951938304440253e-08,3.014484203600094392e-08,3.080016468895748532e-08,3.145548734191402672e-08,3.211080999487056811e-08,3.276613264782710951e-08,3.342145530078365090e-08,3.407677795374019230e-08,3.473210060669673370e-08,3.538742325965327509e-08,3.604274591260981649e-08,3.669806856556635788e-08,3.735339121852289928e-08,3.800871387147944068e-08,3.866403652443598207e-08,3.931935917739252347e-08,3.997468183034906486e-08,4.063000448330560626e-08,4.128532713626214766e-08 +0.000000000000000000e+00,6.817672986599990283e-10,1.363534597319998057e-09,2.045301895979997085e-09,2.727069194639996113e-09,3.408836493299995142e-09,4.090603791959994170e-09,4.772371090619993198e-09,5.454138389279992227e-09,6.135905687939991255e-09,6.817672986599990283e-09,7.499440285259988485e-09,8.181207583919986686e-09,8.862974882579984887e-09,9.544742181239983088e-09,1.022650947989998129e-08,1.090827677855997949e-08,1.159004407721997769e-08,1.227181137587997589e-08,1.295357867453997409e-08,1.363534597319997230e-08,1.431711327185997050e-08,1.499888057051997035e-08,1.568064786917997021e-08,1.636241516783997006e-08,1.704418246649996992e-08,1.772594976515996977e-08,1.840771706381996963e-08,1.908948436247996948e-08,1.977125166113996934e-08,2.045301895979996920e-08,2.113478625845996905e-08,2.181655355711996891e-08,2.249832085577996876e-08,2.318008815443996862e-08,2.386185545309996847e-08,2.454362275175996833e-08,2.522539005041996818e-08,2.590715734907996804e-08,2.658892464773996790e-08,2.727069194639996775e-08,2.795245924505996761e-08,2.863422654371996746e-08,2.931599384237996732e-08,2.999776114103996717e-08,3.067952843969996703e-08,3.136129573835996688e-08,3.204306303701996674e-08,3.272483033567996660e-08,3.340659763433996645e-08,3.408836493299996631e-08,3.477013223165996616e-08,3.545189953031996602e-08,3.613366682897996587e-08,3.681543412763996573e-08,3.749720142629996558e-08,3.817896872495996544e-08,3.886073602361996530e-08,3.954250332227996515e-08,4.022427062093996501e-08,4.090603791959996486e-08,4.158780521825996472e-08,4.226957251691996457e-08,4.295133981557996443e-08 +0.000000000000000000e+00,-6.661685677033289195e-10,-1.332337135406657839e-09,-1.998505703109986758e-09,-2.664674270813315678e-09,-3.330842838516644597e-09,-3.997011406219973517e-09,-4.663179973923302850e-09,-5.329348541626632183e-09,-5.995517109329961516e-09,-6.661685677033290849e-09,-7.327854244736620182e-09,-7.994022812439948688e-09,-8.660191380143277194e-09,-9.326359947846605700e-09,-9.992528515549934206e-09,-1.065869708325326271e-08,-1.132486565095659122e-08,-1.199103421865991972e-08,-1.265720278636324823e-08,-1.332337135406657674e-08,-1.398953992176990524e-08,-1.465570848947323375e-08,-1.532187705717656391e-08,-1.598804562487989407e-08,-1.665421419258322423e-08,-1.732038276028655439e-08,-1.798655132798988455e-08,-1.865271989569321471e-08,-1.931888846339654487e-08,-1.998505703109987503e-08,-2.065122559880320519e-08,-2.131739416650653535e-08,-2.198356273420986551e-08,-2.264973130191319567e-08,-2.331589986961652583e-08,-2.398206843731985599e-08,-2.464823700502318615e-08,-2.531440557272651631e-08,-2.598057414042984647e-08,-2.664674270813317663e-08,-2.731291127583650679e-08,-2.797907984353983695e-08,-2.864524841124316711e-08,-2.931141697894649727e-08,-2.997758554664982743e-08,-3.064375411435315428e-08,-3.130992268205648114e-08,-3.197609124975980799e-08,-3.264225981746313484e-08,-3.330842838516646169e-08,-3.397459695286978854e-08,-3.464076552057311539e-08,-3.530693408827644225e-08,-3.597310265597976910e-08,-3.663927122368309595e-08,-3.730543979138642280e-08,-3.797160835908974965e-08,-3.863777692679307650e-08,-3.930394549449640335e-08,-3.997011406219973021e-08,-4.063628262990305706e-08,-4.130245119760638391e-08,-4.196861976530971076e-08 +0.000000000000000000e+00,-6.553226530649026767e-10,-1.310645306129805353e-09,-1.965967959194707823e-09,-2.621290612259610293e-09,-3.276613265324512763e-09,-3.931935918389415647e-09,-4.587258571454318530e-09,-5.242581224519221414e-09,-5.897903877584124297e-09,-6.553226530649027181e-09,-7.208549183713930064e-09,-7.863871836778832948e-09,-8.519194489843736658e-09,-9.174517142908640369e-09,-9.829839795973544080e-09,-1.048516244903844779e-08,-1.114048510210335150e-08,-1.179580775516825521e-08,-1.245113040823315892e-08,-1.310645306129806263e-08,-1.376177571436296634e-08,-1.441709836742787005e-08,-1.507242102049277376e-08,-1.572774367355767582e-08,-1.638306632662257788e-08,-1.703838897968747993e-08,-1.769371163275238199e-08,-1.834903428581728405e-08,-1.900435693888218610e-08,-1.965967959194708816e-08,-2.031500224501199022e-08,-2.097032489807689227e-08,-2.162564755114179433e-08,-2.228097020420669638e-08,-2.293629285727159844e-08,-2.359161551033650050e-08,-2.424693816340140255e-08,-2.490226081646630461e-08,-2.555758346953120667e-08,-2.621290612259610872e-08,-2.686822877566101078e-08,-2.752355142872591283e-08,-2.817887408179081489e-08,-2.883419673485571695e-08,-2.948951938792061900e-08,-3.014484204098552106e-08,-3.080016469405042312e-08,-3.145548734711532517e-08,-3.211081000018022723e-08,-3.276613265324512929e-08,-3.342145530631003134e-08,-3.407677795937493340e-08,-3.473210061243983545e-08,-3.538742326550473751e-08,-3.604274591856963957e-08,-3.669806857163454162e-08,-3.735339122469944368e-08,-3.800871387776434574e-08,-3.866403653082924779e-08,-3.931935918389414985e-08,-3.997468183695905190e-08,-4.063000449002395396e-08,-4.128532714308885602e-08 +0.000000000000000000e+00,-6.817672987631055407e-10,-1.363534597526211081e-09,-2.045301896289316726e-09,-2.727069195052422577e-09,-3.408836493815528427e-09,-4.090603792578634278e-09,-4.772371091341740543e-09,-5.454138390104846807e-09,-6.135905688867953072e-09,-6.817672987631059336e-09,-7.499440286394165601e-09,-8.181207585157271866e-09,-8.862974883920378130e-09,-9.544742182683484395e-09,-1.022650948144659066e-08,-1.090827678020969692e-08,-1.159004407897280319e-08,-1.227181137773590945e-08,-1.295357867649901572e-08,-1.363534597526212198e-08,-1.431711327402522825e-08,-1.499888057278833451e-08,-1.568064787155144078e-08,-1.636241517031454704e-08,-1.704418246907765330e-08,-1.772594976784075957e-08,-1.840771706660386583e-08,-1.908948436536697210e-08,-1.977125166413007836e-08,-2.045301896289318463e-08,-2.113478626165629089e-08,-2.181655356041939716e-08,-2.249832085918250342e-08,-2.318008815794560968e-08,-2.386185545670871595e-08,-2.454362275547182221e-08,-2.522539005423492848e-08,-2.590715735299803474e-08,-2.658892465176114101e-08,-2.727069195052424727e-08,-2.795245924928735354e-08,-2.863422654805045980e-08,-2.931599384681356607e-08,-2.999776114557667564e-08,-3.067952844433978852e-08,-3.136129574310290140e-08,-3.204306304186601428e-08,-3.272483034062912717e-08,-3.340659763939224005e-08,-3.408836493815535293e-08,-3.477013223691846581e-08,-3.545189953568157869e-08,-3.613366683444469158e-08,-3.681543413320780446e-08,-3.749720143197091734e-08,-3.817896873073403022e-08,-3.886073602949714310e-08,-3.954250332826025599e-08,-4.022427062702336887e-08,-4.090603792578648175e-08,-4.158780522454959463e-08,-4.226957252331270751e-08,-4.295133982207582040e-08 +0.000000000000000000e+00,6.869507038835035881e-10,1.373901407767007176e-09,2.060852111650510764e-09,2.747802815534014352e-09,3.434753519417517940e-09,4.121704223301021528e-09,4.808654927184525117e-09,5.495605631068028705e-09,6.182556334951532293e-09,6.869507038835035881e-09,7.556457742718538642e-09,8.243408446602041403e-09,8.930359150485544163e-09,9.617309854369046924e-09,1.030426055825254969e-08,1.099121126213605245e-08,1.167816196601955521e-08,1.236511266990305797e-08,1.305206337378656073e-08,1.373901407767006349e-08,1.442596478155356625e-08,1.511291548543707067e-08,1.579986618932057508e-08,1.648681689320407950e-08,1.717376759708758391e-08,1.786071830097108833e-08,1.854766900485459274e-08,1.923461970873809716e-08,1.992157041262160157e-08,2.060852111650510599e-08,2.129547182038861040e-08,2.198242252427211482e-08,2.266937322815561923e-08,2.335632393203912365e-08,2.404327463592262806e-08,2.473022533980613248e-08,2.541717604368963689e-08,2.610412674757314131e-08,2.679107745145664573e-08,2.747802815534015014e-08,2.816497885922365456e-08,2.885192956310715897e-08,2.953888026699066339e-08,3.022583097087416780e-08,3.091278167475767553e-08,3.159973237864118325e-08,3.228668308252469097e-08,3.297363378640819870e-08,3.366058449029170642e-08,3.434753519417521415e-08,3.503448589805872187e-08,3.572143660194222959e-08,3.640838730582573732e-08,3.709533800970924504e-08,3.778228871359275277e-08,3.846923941747626049e-08,3.915619012135976821e-08,3.984314082524327594e-08,4.053009152912678366e-08,4.121704223301029139e-08,4.190399293689379911e-08,4.259094364077730683e-08,4.327789434466081456e-08 +0.000000000000000000e+00,6.765176898539858760e-10,1.353035379707971752e-09,2.029553069561957525e-09,2.706070759415943091e-09,3.382588449269928656e-09,4.059106139123914222e-09,4.735623828977899788e-09,5.412141518831885354e-09,6.088659208685870920e-09,6.765176898539856486e-09,7.441694588393842052e-09,8.118212278247826790e-09,8.794729968101811529e-09,9.471247657955796268e-09,1.014776534780978101e-08,1.082428303766376574e-08,1.150080072751775048e-08,1.217731841737173522e-08,1.285383610722571996e-08,1.353035379707970470e-08,1.420687148693368944e-08,1.488338917678767418e-08,1.555990686664165892e-08,1.623642455649564365e-08,1.691294224634962839e-08,1.758945993620361313e-08,1.826597762605759787e-08,1.894249531591158261e-08,1.961901300576556735e-08,2.029553069561955209e-08,2.097204838547353682e-08,2.164856607532752156e-08,2.232508376518150630e-08,2.300160145503549104e-08,2.367811914488947578e-08,2.435463683474346052e-08,2.503115452459744526e-08,2.570767221445143000e-08,2.638418990430541473e-08,2.706070759415939947e-08,2.773722528401338421e-08,2.841374297386736895e-08,2.909026066372135369e-08,2.976677835357533843e-08,3.044329604342932317e-08,3.111981373328330460e-08,3.179633142313728603e-08,3.247284911299126746e-08,3.314936680284524889e-08,3.382588449269923032e-08,3.450240218255321175e-08,3.517891987240719318e-08,3.585543756226117461e-08,3.653195525211515604e-08,3.720847294196913747e-08,3.788499063182311890e-08,3.856150832167710033e-08,3.923802601153108176e-08,3.991454370138506319e-08,4.059106139123904462e-08,4.126757908109302605e-08,4.194409677094700748e-08,4.262061446080098891e-08 +0.000000000000000000e+00,6.964025805720081214e-10,1.392805161144016243e-09,2.089207741716024157e-09,2.785610322288032072e-09,3.482012902860039987e-09,4.178415483432048315e-09,4.874818064004056643e-09,5.571220644576064971e-09,6.267623225148073299e-09,6.964025805720081628e-09,7.660428386292089956e-09,8.356830966864098284e-09,9.053233547436106612e-09,9.749636128008114940e-09,1.044603870858012327e-08,1.114244128915213160e-08,1.183884386972413992e-08,1.253524645029614825e-08,1.323164903086815658e-08,1.392805161144016491e-08,1.462445419201217324e-08,1.532085677258417991e-08,1.601725935315618659e-08,1.671366193372819326e-08,1.741006451430019993e-08,1.810646709487220661e-08,1.880286967544421328e-08,1.949927225601621995e-08,2.019567483658822663e-08,2.089207741716023330e-08,2.158847999773223998e-08,2.228488257830424665e-08,2.298128515887625332e-08,2.367768773944826000e-08,2.437409032002026667e-08,2.507049290059227335e-08,2.576689548116428002e-08,2.646329806173628669e-08,2.715970064230829337e-08,2.785610322288030004e-08,2.855250580345230671e-08,2.924890838402431339e-08,2.994531096459632337e-08,3.064171354516833335e-08,3.133811612574034334e-08,3.203451870631235332e-08,3.273092128688436330e-08,3.342732386745637328e-08,3.412372644802838327e-08,3.482012902860039325e-08,3.551653160917240323e-08,3.621293418974441321e-08,3.690933677031642320e-08,3.760573935088843318e-08,3.830214193146044316e-08,3.899854451203245314e-08,3.969494709260446313e-08,4.039134967317647311e-08,4.108775225374848309e-08,4.178415483432049307e-08,4.248055741489250306e-08,4.317695999546451304e-08,4.387336257603652302e-08 +0.000000000000000000e+00,-6.869507039593894477e-10,-1.373901407918778895e-09,-2.060852111878168240e-09,-2.747802815837557377e-09,-3.434753519796946515e-09,-4.121704223756335652e-09,-4.808654927715724790e-09,-5.495605631675113927e-09,-6.182556335634503064e-09,-6.869507039593892202e-09,-7.556457743553281339e-09,-8.243408447512669650e-09,-8.930359151472057960e-09,-9.617309855431446270e-09,-1.030426055939083458e-08,-1.099121126335022289e-08,-1.167816196730961120e-08,-1.236511267126899951e-08,-1.305206337522838782e-08,-1.373901407918777613e-08,-1.442596478314716444e-08,-1.511291548710655275e-08,-1.579986619106594272e-08,-1.648681689502533268e-08,-1.717376759898472265e-08,-1.786071830294411261e-08,-1.854766900690350258e-08,-1.923461971086289254e-08,-1.992157041482228251e-08,-2.060852111878167247e-08,-2.129547182274106243e-08,-2.198242252670045240e-08,-2.266937323065984236e-08,-2.335632393461923233e-08,-2.404327463857862229e-08,-2.473022534253801226e-08,-2.541717604649740222e-08,-2.610412675045679219e-08,-2.679107745441618215e-08,-2.747802815837557212e-08,-2.816497886233496208e-08,-2.885192956629435205e-08,-2.953888027025374201e-08,-3.022583097421313198e-08,-3.091278167817252194e-08,-3.159973238213191190e-08,-3.228668308609130187e-08,-3.297363379005069183e-08,-3.366058449401008180e-08,-3.434753519796947176e-08,-3.503448590192886173e-08,-3.572143660588825169e-08,-3.640838730984764166e-08,-3.709533801380703162e-08,-3.778228871776642159e-08,-3.846923942172581155e-08,-3.915619012568520152e-08,-3.984314082964459148e-08,-4.053009153360398144e-08,-4.121704223756337141e-08,-4.190399294152276137e-08,-4.259094364548215134e-08,-4.327789434944154130e-08 +0.000000000000000000e+00,-6.765176899409283487e-10,-1.353035379881856697e-09,-2.029553069822784943e-09,-2.706070759763712981e-09,-3.382588449704641020e-09,-4.059106139645569058e-09,-4.735623829586497097e-09,-5.412141519527425135e-09,-6.088659209468353174e-09,-6.765176899409281212e-09,-7.441694589350209251e-09,-8.118212279291136462e-09,-8.794729969232064500e-09,-9.471247659172992539e-09,-1.014776534911392058e-08,-1.082428303905484862e-08,-1.150080072899577665e-08,-1.217731841893670469e-08,-1.285383610887763273e-08,-1.353035379881856077e-08,-1.420687148875948881e-08,-1.488338917870041685e-08,-1.555990686864134489e-08,-1.623642455858227292e-08,-1.691294224852320096e-08,-1.758945993846412900e-08,-1.826597762840505704e-08,-1.894249531834598508e-08,-1.961901300828691312e-08,-2.029553069822784115e-08,-2.097204838816876919e-08,-2.164856607810969723e-08,-2.232508376805062527e-08,-2.300160145799155331e-08,-2.367811914793248135e-08,-2.435463683787340939e-08,-2.503115452781433742e-08,-2.570767221775526546e-08,-2.638418990769619350e-08,-2.706070759763712154e-08,-2.773722528757804958e-08,-2.841374297751897762e-08,-2.909026066745990566e-08,-2.976677835740083369e-08,-3.044329604734176173e-08,-3.111981373728268977e-08,-3.179633142722361781e-08,-3.247284911716454585e-08,-3.314936680710547389e-08,-3.382588449704640192e-08,-3.450240218698732996e-08,-3.517891987692825800e-08,-3.585543756686918604e-08,-3.653195525681011408e-08,-3.720847294675104212e-08,-3.788499063669197016e-08,-3.856150832663289819e-08,-3.923802601657382623e-08,-3.991454370651475427e-08,-4.059106139645568231e-08,-4.126757908639661035e-08,-4.194409677633753839e-08,-4.262061446627846643e-08 +0.000000000000000000e+00,-6.964025806508848593e-10,-1.392805161301769719e-09,-2.089207741952654474e-09,-2.785610322603539024e-09,-3.482012903254423573e-09,-4.178415483905308122e-09,-4.874818064556193084e-09,-5.571220645207078047e-09,-6.267623225857963010e-09,-6.964025806508847973e-09,-7.660428387159732935e-09,-8.356830967810617898e-09,-9.053233548461502861e-09,-9.749636129112387823e-09,-1.044603870976327279e-08,-1.114244129041415775e-08,-1.183884387106504271e-08,-1.253524645171592767e-08,-1.323164903236681264e-08,-1.392805161301769760e-08,-1.462445419366858256e-08,-1.532085677431946587e-08,-1.601725935497034918e-08,-1.671366193562123249e-08,-1.741006451627211580e-08,-1.810646709692299910e-08,-1.880286967757388241e-08,-1.949927225822476572e-08,-2.019567483887564903e-08,-2.089207741952653234e-08,-2.158848000017741565e-08,-2.228488258082829895e-08,-2.298128516147918226e-08,-2.367768774213006557e-08,-2.437409032278094888e-08,-2.507049290343183219e-08,-2.576689548408271550e-08,-2.646329806473359880e-08,-2.715970064538448211e-08,-2.785610322603536542e-08,-2.855250580668624873e-08,-2.924890838733713204e-08,-2.994531096798801535e-08,-3.064171354863889865e-08,-3.133811612928978196e-08,-3.203451870994066527e-08,-3.273092129059154858e-08,-3.342732387124243189e-08,-3.412372645189331520e-08,-3.482012903254419850e-08,-3.551653161319508181e-08,-3.621293419384596512e-08,-3.690933677449684843e-08,-3.760573935514773174e-08,-3.830214193579861505e-08,-3.899854451644949835e-08,-3.969494709710038166e-08,-4.039134967775126497e-08,-4.108775225840214828e-08,-4.178415483905303159e-08,-4.248055741970391490e-08,-4.317696000035479820e-08,-4.387336258100568151e-08 +0.000000000000000000e+00,7.063251849149559436e-10,1.412650369829911887e-09,2.118975554744867934e-09,2.825300739659824188e-09,3.531625924574780442e-09,4.237951109489736696e-09,4.944276294404692950e-09,5.650601479319649204e-09,6.356926664234605457e-09,7.063251849149561711e-09,7.769577034064518792e-09,8.475902218979475046e-09,9.182227403894431300e-09,9.888552588809387554e-09,1.059487777372434381e-08,1.130120295863930006e-08,1.200752814355425632e-08,1.271385332846921257e-08,1.342017851338416882e-08,1.412650369829912508e-08,1.483282888321408133e-08,1.553915406812903758e-08,1.624547925304399384e-08,1.695180443795895009e-08,1.765812962287390635e-08,1.836445480778886260e-08,1.907077999270381885e-08,1.977710517761877511e-08,2.048343036253373136e-08,2.118975554744868762e-08,2.189608073236364387e-08,2.260240591727860012e-08,2.330873110219355638e-08,2.401505628710851263e-08,2.472138147202346888e-08,2.542770665693842514e-08,2.613403184185338139e-08,2.684035702676833765e-08,2.754668221168329390e-08,2.825300739659825015e-08,2.895933258151320641e-08,2.966565776642816266e-08,3.037198295134311892e-08,3.107830813625807517e-08,3.178463332117303142e-08,3.249095850608798768e-08,3.319728369100294393e-08,3.390360887591790018e-08,3.460993406083285644e-08,3.531625924574781269e-08,3.602258443066276895e-08,3.672890961557772520e-08,3.743523480049268145e-08,3.814155998540763771e-08,3.884788517032259396e-08,3.955421035523755021e-08,4.026053554015250647e-08,4.096686072506746272e-08,4.167318590998241898e-08,4.237951109489737523e-08,4.308583627981233148e-08,4.379216146472728774e-08,4.449848664964224399e-08 +0.000000000000000000e+00,6.956601187063034513e-10,1.391320237412606903e-09,2.086980356118910457e-09,2.782640474825214219e-09,3.478300593531517980e-09,4.173960712237821742e-09,4.869620830944125090e-09,5.565280949650428438e-09,6.260941068356731786e-09,6.956601187063035134e-09,7.652261305769338482e-09,8.347921424475641830e-09,9.043581543181945178e-09,9.739241661888248525e-09,1.043490178059455187e-08,1.113056189930085522e-08,1.182622201800715857e-08,1.252188213671346192e-08,1.321754225541976527e-08,1.391320237412606861e-08,1.460886249283237196e-08,1.530452261153867365e-08,1.600018273024497369e-08,1.669584284895127373e-08,1.739150296765757377e-08,1.808716308636387381e-08,1.878282320507017385e-08,1.947848332377647389e-08,2.017414344248277393e-08,2.086980356118907397e-08,2.156546367989537401e-08,2.226112379860167405e-08,2.295678391730797409e-08,2.365244403601427413e-08,2.434810415472057416e-08,2.504376427342687420e-08,2.573942439213317424e-08,2.643508451083947428e-08,2.713074462954577432e-08,2.782640474825207436e-08,2.852206486695837440e-08,2.921772498566467444e-08,2.991338510437097448e-08,3.060904522307727452e-08,3.130470534178357456e-08,3.200036546048987460e-08,3.269602557919617463e-08,3.339168569790247467e-08,3.408734581660877471e-08,3.478300593531507475e-08,3.547866605402137479e-08,3.617432617272767483e-08,3.686998629143397487e-08,3.756564641014027491e-08,3.826130652884657495e-08,3.895696664755287499e-08,3.965262676625917503e-08,4.034828688496547507e-08,4.104394700367177511e-08,4.173960712237807514e-08,4.243526724108437518e-08,4.313092735979067522e-08,4.382658747849697526e-08 +0.000000000000000000e+00,7.072969012005907985e-10,1.414593802401181597e-09,2.121890703601772499e-09,2.829187604802363608e-09,3.536484506002954716e-09,4.243781407203545825e-09,4.951078308404136934e-09,5.658375209604728042e-09,6.365672110805319151e-09,7.072969012005910260e-09,7.780265913206502195e-09,8.487562814407093304e-09,9.194859715607684413e-09,9.902156616808275521e-09,1.060945351800886663e-08,1.131675041920945774e-08,1.202404732041004885e-08,1.273134422161063996e-08,1.343864112281123106e-08,1.414593802401182217e-08,1.485323492521241328e-08,1.556053182641300439e-08,1.626782872761359550e-08,1.697512562881418661e-08,1.768242253001477772e-08,1.838971943121536883e-08,1.909701633241595993e-08,1.980431323361655104e-08,2.051161013481714215e-08,2.121890703601773326e-08,2.192620393721832437e-08,2.263350083841891548e-08,2.334079773961950659e-08,2.404809464082009770e-08,2.475539154202068880e-08,2.546268844322127991e-08,2.616998534442187102e-08,2.687728224562246213e-08,2.758457914682305324e-08,2.829187604802364435e-08,2.899917294922423546e-08,2.970646985042482656e-08,3.041376675162541436e-08,3.112106365282600216e-08,3.182836055402658996e-08,3.253565745522717776e-08,3.324295435642776556e-08,3.395025125762835336e-08,3.465754815882894116e-08,3.536484506002952896e-08,3.607214196123011676e-08,3.677943886243070456e-08,3.748673576363129236e-08,3.819403266483188016e-08,3.890132956603246796e-08,3.960862646723305576e-08,4.031592336843364356e-08,4.102322026963423136e-08,4.173051717083481916e-08,4.243781407203540696e-08,4.314511097323599476e-08,4.385240787443658256e-08,4.455970477563717036e-08 +0.000000000000000000e+00,-7.063251849706376066e-10,-1.412650369941275213e-09,-2.118975554911912923e-09,-2.825300739882550840e-09,-3.531625924853188757e-09,-4.237951109823826673e-09,-4.944276294794464590e-09,-5.650601479765102507e-09,-6.356926664735740424e-09,-7.063251849706378341e-09,-7.769577034677016257e-09,-8.475902219647655001e-09,-9.182227404618293745e-09,-9.888552589588932489e-09,-1.059487777455957123e-08,-1.130120295953020998e-08,-1.200752814450084872e-08,-1.271385332947148746e-08,-1.342017851444212621e-08,-1.412650369941276495e-08,-1.483282888438340370e-08,-1.553915406935404244e-08,-1.624547925432468118e-08,-1.695180443929531993e-08,-1.765812962426595867e-08,-1.836445480923659742e-08,-1.907077999420723616e-08,-1.977710517917787490e-08,-2.048343036414851365e-08,-2.118975554911915239e-08,-2.189608073408979114e-08,-2.260240591906042988e-08,-2.330873110403106862e-08,-2.401505628900170737e-08,-2.472138147397234611e-08,-2.542770665894298486e-08,-2.613403184391362360e-08,-2.684035702888426234e-08,-2.754668221385490109e-08,-2.825300739882553983e-08,-2.895933258379617858e-08,-2.966565776876681732e-08,-3.037198295373745606e-08,-3.107830813870809150e-08,-3.178463332367872693e-08,-3.249095850864936237e-08,-3.319728369361999780e-08,-3.390360887859063324e-08,-3.460993406356126868e-08,-3.531625924853190411e-08,-3.602258443350253955e-08,-3.672890961847317498e-08,-3.743523480344381042e-08,-3.814155998841444585e-08,-3.884788517338508129e-08,-3.955421035835571672e-08,-4.026053554332635216e-08,-4.096686072829698759e-08,-4.167318591326762303e-08,-4.237951109823825846e-08,-4.308583628320889390e-08,-4.379216146817952933e-08,-4.449848665315016477e-08 +0.000000000000000000e+00,-6.956601187719750779e-10,-1.391320237543950156e-09,-2.086980356315925441e-09,-2.782640475087900725e-09,-3.478300593859876010e-09,-4.173960712631850881e-09,-4.869620831403825752e-09,-5.565280950175800623e-09,-6.260941068947775494e-09,-6.956601187719750366e-09,-7.652261306491725237e-09,-8.347921425263700108e-09,-9.043581544035674979e-09,-9.739241662807649850e-09,-1.043490178157962472e-08,-1.113056190035159959e-08,-1.182622201912357446e-08,-1.252188213789554933e-08,-1.321754225666752421e-08,-1.391320237543949908e-08,-1.460886249421147395e-08,-1.530452261298344716e-08,-1.600018273175541873e-08,-1.669584285052739029e-08,-1.739150296929936185e-08,-1.808716308807133341e-08,-1.878282320684330498e-08,-1.947848332561527654e-08,-2.017414344438724810e-08,-2.086980356315921966e-08,-2.156546368193119123e-08,-2.226112380070316279e-08,-2.295678391947513435e-08,-2.365244403824710591e-08,-2.434810415701907748e-08,-2.504376427579104904e-08,-2.573942439456302060e-08,-2.643508451333499216e-08,-2.713074463210696373e-08,-2.782640475087893529e-08,-2.852206486965090685e-08,-2.921772498842287841e-08,-2.991338510719484998e-08,-3.060904522596682154e-08,-3.130470534473879310e-08,-3.200036546351076466e-08,-3.269602558228273622e-08,-3.339168570105470779e-08,-3.408734581982667935e-08,-3.478300593859865091e-08,-3.547866605737062247e-08,-3.617432617614259404e-08,-3.686998629491456560e-08,-3.756564641368653716e-08,-3.826130653245850872e-08,-3.895696665123048029e-08,-3.965262677000245185e-08,-4.034828688877442341e-08,-4.104394700754639497e-08,-4.173960712631836654e-08,-4.243526724509033810e-08,-4.313092736386230966e-08,-4.382658748263428122e-08 +0.000000000000000000e+00,-7.072969012579092451e-10,-1.414593802515818490e-09,-2.121890703773727632e-09,-2.829187605031636567e-09,-3.536484506289545501e-09,-4.243781407547454436e-09,-4.951078308805363371e-09,-5.658375210063272306e-09,-6.365672111321181241e-09,-7.072969012579090176e-09,-7.780265913836999111e-09,-8.487562815094907218e-09,-9.194859716352815326e-09,-9.902156617610723434e-09,-1.060945351886863154e-08,-1.131675042012653965e-08,-1.202404732138444776e-08,-1.273134422264235586e-08,-1.343864112390026397e-08,-1.414593802515817208e-08,-1.485323492641608019e-08,-1.556053182767398830e-08,-1.626782872893189640e-08,-1.697512563018980451e-08,-1.768242253144771262e-08,-1.838971943270562073e-08,-1.909701633396352883e-08,-1.980431323522143694e-08,-2.051161013647934505e-08,-2.121890703773725316e-08,-2.192620393899516126e-08,-2.263350084025306937e-08,-2.334079774151097748e-08,-2.404809464276888559e-08,-2.475539154402679370e-08,-2.546268844528470180e-08,-2.616998534654260991e-08,-2.687728224780051802e-08,-2.758457914905842613e-08,-2.829187605031633423e-08,-2.899917295157424234e-08,-2.970646985283215045e-08,-3.041376675409005525e-08,-3.112106365534795674e-08,-3.182836055660585823e-08,-3.253565745786375972e-08,-3.324295435912166121e-08,-3.395025126037956270e-08,-3.465754816163746419e-08,-3.536484506289536568e-08,-3.607214196415326717e-08,-3.677943886541116866e-08,-3.748673576666907015e-08,-3.819403266792697164e-08,-3.890132956918487313e-08,-3.960862647044277462e-08,-4.031592337170067611e-08,-4.102322027295857760e-08,-4.173051717421647909e-08,-4.243781407547438058e-08,-4.314511097673228207e-08,-4.385240787799018356e-08,-4.455970477924808505e-08 +0.000000000000000000e+00,1.952452710377641698e-10,3.904905420755283397e-10,5.857358131132924837e-10,7.809810841510565759e-10,9.762263551888205648e-10,1.171471626226584554e-09,1.366716897264348543e-09,1.561962168302112532e-09,1.757207439339876520e-09,1.952452710377640302e-09,2.147697981415404085e-09,2.342943252453167867e-09,2.538188523490931649e-09,2.733433794528695431e-09,2.928679065566459213e-09,3.123924336604222995e-09,3.319169607641986777e-09,3.514414878679750559e-09,3.709660149717514341e-09,3.904905420755278123e-09,4.100150691793041906e-09,4.295395962830805688e-09,4.490641233868569470e-09,4.685886504906333252e-09,4.881131775944097034e-09,5.076377046981860816e-09,5.271622318019624598e-09,5.466867589057388380e-09,5.662112860095152162e-09,5.857358131132915944e-09,6.052603402170679726e-09,6.247848673208443509e-09,6.443093944246207291e-09,6.638339215283971073e-09,6.833584486321734855e-09,7.028829757359498637e-09,7.224075028397262419e-09,7.419320299435026201e-09,7.614565570472789983e-09,7.809810841510554592e-09,8.005056112548319202e-09,8.200301383586083811e-09,8.395546654623848420e-09,8.590791925661613030e-09,8.786037196699377639e-09,8.981282467737142248e-09,9.176527738774906857e-09,9.371773009812671467e-09,9.567018280850436076e-09,9.762263551888200685e-09,9.957508822925965295e-09,1.015275409396372990e-08,1.034799936500149451e-08,1.054324463603925912e-08,1.073848990707702373e-08,1.093373517811478834e-08,1.112898044915255295e-08,1.132422572019031756e-08,1.151947099122808217e-08,1.171471626226584678e-08,1.190996153330361139e-08,1.210520680434137600e-08,1.230045207537914061e-08 +0.000000000000000000e+00,-3.640353644442347661e-10,-7.280707288884695321e-10,-1.092106093332704298e-09,-1.456141457776939064e-09,-1.820176822221173830e-09,-2.184212186665408596e-09,-2.548247551109643156e-09,-2.912282915553877715e-09,-3.276318279998112274e-09,-3.640353644442346833e-09,-4.004389008886581393e-09,-4.368424373330816366e-09,-4.732459737775051338e-09,-5.096495102219286311e-09,-5.460530466663521284e-09,-5.824565831107756257e-09,-6.188601195551991230e-09,-6.552636559996226203e-09,-6.916671924440461176e-09,-7.280707288884696148e-09,-7.644742653328930294e-09,-8.008778017773164440e-09,-8.372813382217398585e-09,-8.736848746661632731e-09,-9.100884111105866877e-09,-9.464919475550101022e-09,-9.828954839994335168e-09,-1.019299020443856931e-08,-1.055702556888280346e-08,-1.092106093332703761e-08,-1.128509629777127175e-08,-1.164913166221550590e-08,-1.201316702665974004e-08,-1.237720239110397419e-08,-1.274123775554820833e-08,-1.310527311999244248e-08,-1.346930848443667662e-08,-1.383334384888091077e-08,-1.419737921332514492e-08,-1.456141457776937906e-08,-1.492544994221361321e-08,-1.528948530665784735e-08,-1.565352067110208150e-08,-1.601755603554631564e-08,-1.638159139999054979e-08,-1.674562676443478394e-08,-1.710966212887901808e-08,-1.747369749332325223e-08,-1.783773285776748637e-08,-1.820176822221172052e-08,-1.856580358665595466e-08,-1.892983895110018881e-08,-1.929387431554442296e-08,-1.965790967998865710e-08,-2.002194504443289125e-08,-2.038598040887712539e-08,-2.075001577332135954e-08,-2.111405113776559368e-08,-2.147808650220982783e-08,-2.184212186665406198e-08,-2.220615723109829612e-08,-2.257019259554253027e-08,-2.293422795998676441e-08 +0.000000000000000000e+00,-7.890861606581523040e-20,-1.578172321316304608e-19,-2.367258481974456912e-19,-3.156344642632609216e-19,-3.945430803290761520e-19,-4.734516963948913824e-19,-5.523603124607066609e-19,-6.312689285265219395e-19,-7.101775445923372180e-19,-7.890861606581524966e-19,-8.679947767239677751e-19,-9.469033927897829574e-19,-1.025812008855598140e-18,-1.104720624921413322e-18,-1.183629240987228504e-18,-1.262537857053043686e-18,-1.341446473118858869e-18,-1.420355089184674051e-18,-1.499263705250489233e-18,-1.578172321316304415e-18,-1.657080937382119598e-18,-1.735989553447934780e-18,-1.814898169513749770e-18,-1.893806785579564759e-18,-1.972715401645379749e-18,-2.051624017711194738e-18,-2.130532633777009728e-18,-2.209441249842824718e-18,-2.288349865908639707e-18,-2.367258481974454697e-18,-2.446167098040269687e-18,-2.525075714106084676e-18,-2.603984330171899666e-18,-2.682892946237714656e-18,-2.761801562303529645e-18,-2.840710178369344635e-18,-2.919618794435159625e-18,-2.998527410500974614e-18,-3.077436026566789604e-18,-3.156344642632604594e-18,-3.235253258698419583e-18,-3.314161874764234573e-18,-3.393070490830049563e-18,-3.471979106895864167e-18,-3.550887722961678772e-18,-3.629796339027493376e-18,-3.708704955093307980e-18,-3.787613571159122585e-18,-3.866522187224937189e-18,-3.945430803290751794e-18,-4.024339419356566398e-18,-4.103248035422381003e-18,-4.182156651488195607e-18,-4.261065267554010212e-18,-4.339973883619824816e-18,-4.418882499685639421e-18,-4.497791115751454025e-18,-4.576699731817268630e-18,-4.655608347883083234e-18,-4.734516963948897839e-18,-4.813425580014712443e-18,-4.892334196080527048e-18,-4.971242812146341652e-18 +0.000000000000000000e+00,2.120293052676562944e-11,4.240586105353125889e-11,6.360879158029688187e-11,8.481172210706250485e-11,1.060146526338281278e-10,1.272175831605937637e-10,1.484205136873593996e-10,1.696234442141250356e-10,1.908263747408906715e-10,2.120293052676563074e-10,2.332322357944219433e-10,2.544351663211875792e-10,2.756380968479532151e-10,2.968410273747188510e-10,3.180439579014844869e-10,3.392468884282501228e-10,3.604498189550157587e-10,3.816527494817813946e-10,4.028556800085470305e-10,4.240586105353126664e-10,4.452615410620783023e-10,4.664644715888438865e-10,4.876674021156094707e-10,5.088703326423750550e-10,5.300732631691406392e-10,5.512761936959062234e-10,5.724791242226718076e-10,5.936820547494373918e-10,6.148849852762029760e-10,6.360879158029685602e-10,6.572908463297341444e-10,6.784937768564997286e-10,6.996967073832653128e-10,7.208996379100308970e-10,7.421025684367964812e-10,7.633054989635620654e-10,7.845084294903276497e-10,8.057113600170932339e-10,8.269142905438588181e-10,8.481172210706244023e-10,8.693201515973899865e-10,8.905230821241555707e-10,9.117260126509211549e-10,9.329289431776867391e-10,9.541318737044524267e-10,9.753348042312181143e-10,9.965377347579838019e-10,1.017740665284749490e-09,1.038943595811515177e-09,1.060146526338280865e-09,1.081349456865046552e-09,1.102552387391812240e-09,1.123755317918577928e-09,1.144958248445343615e-09,1.166161178972109303e-09,1.187364109498874990e-09,1.208567040025640678e-09,1.229769970552406366e-09,1.250972901079172053e-09,1.272175831605937741e-09,1.293378762132703428e-09,1.314581692659469116e-09,1.335784623186234804e-09 +0.000000000000000000e+00,-1.386253633070441013e-10,-2.772507266140882026e-10,-4.158760899211323297e-10,-5.545014532281765085e-10,-6.931268165352206873e-10,-8.317521798422648662e-10,-9.703775431493089416e-10,-1.109002906456353017e-09,-1.247628269763397092e-09,-1.386253633070441168e-09,-1.524878996377485243e-09,-1.663504359684529319e-09,-1.802129722991573394e-09,-1.940755086298617470e-09,-2.079380449605661545e-09,-2.218005812912705620e-09,-2.356631176219749696e-09,-2.495256539526793771e-09,-2.633881902833837847e-09,-2.772507266140881922e-09,-2.911132629447925998e-09,-3.049757992754970073e-09,-3.188383356062014148e-09,-3.327008719369058224e-09,-3.465634082676102299e-09,-3.604259445983146375e-09,-3.742884809290190037e-09,-3.881510172597234112e-09,-4.020135535904278187e-09,-4.158760899211322263e-09,-4.297386262518366338e-09,-4.436011625825410414e-09,-4.574636989132454489e-09,-4.713262352439498565e-09,-4.851887715746542640e-09,-4.990513079053586715e-09,-5.129138442360630791e-09,-5.267763805667674866e-09,-5.406389168974718942e-09,-5.545014532281763017e-09,-5.683639895588807093e-09,-5.822265258895851168e-09,-5.960890622202895243e-09,-6.099515985509939319e-09,-6.238141348816983394e-09,-6.376766712124027470e-09,-6.515392075431071545e-09,-6.654017438738115621e-09,-6.792642802045159696e-09,-6.931268165352203771e-09,-7.069893528659247847e-09,-7.208518891966291922e-09,-7.347144255273335998e-09,-7.485769618580380073e-09,-7.624394981887424149e-09,-7.763020345194468224e-09,-7.901645708501512299e-09,-8.040271071808556375e-09,-8.178896435115600450e-09,-8.317521798422644526e-09,-8.456147161729688601e-09,-8.594772525036732677e-09,-8.733397888343776752e-09 +0.000000000000000000e+00,3.169011568607600426e-10,6.338023137215200853e-10,9.507034705822801279e-10,1.267604627443040171e-09,1.584505784303800213e-09,1.901406941164560256e-09,2.218308098025320298e-09,2.535209254886080341e-09,2.852110411746840384e-09,3.169011568607600426e-09,3.485912725468360469e-09,3.802813882329120512e-09,4.119715039189880141e-09,4.436616196050639770e-09,4.753517352911399399e-09,5.070418509772159028e-09,5.387319666632918657e-09,5.704220823493678286e-09,6.021121980354437915e-09,6.338023137215197544e-09,6.654924294075957173e-09,6.971825450936716802e-09,7.288726607797476431e-09,7.605627764658236060e-09,7.922528921518995689e-09,8.239430078379755318e-09,8.556331235240514947e-09,8.873232392101274576e-09,9.190133548962034205e-09,9.507034705822793834e-09,9.823935862683553463e-09,1.014083701954431309e-08,1.045773817640507272e-08,1.077463933326583235e-08,1.109154049012659198e-08,1.140844164698735161e-08,1.172534280384811124e-08,1.204224396070887087e-08,1.235914511756963050e-08,1.267604627443039012e-08,1.299294743129114975e-08,1.330984858815190938e-08,1.362674974501266901e-08,1.394365090187342864e-08,1.426055205873418827e-08,1.457745321559494790e-08,1.489435437245570753e-08,1.521125552931646881e-08,1.552815668617723009e-08,1.584505784303799138e-08,1.616195899989875266e-08,1.647886015675951394e-08,1.679576131362027523e-08,1.711266247048103651e-08,1.742956362734179779e-08,1.774646478420255908e-08,1.806336594106332036e-08,1.838026709792408165e-08,1.869716825478484293e-08,1.901406941164560421e-08,1.933097056850636550e-08,1.964787172536712678e-08,1.996477288222788806e-08 +0.000000000000000000e+00,-1.820878405266552801e-10,-3.641756810533105602e-10,-5.462635215799658404e-10,-7.283513621066211205e-10,-9.104392026332764006e-10,-1.092527043159931681e-09,-1.274614883686587064e-09,-1.456702724213242448e-09,-1.638790564739897831e-09,-1.820878405266553215e-09,-2.002966245793208598e-09,-2.185054086319863775e-09,-2.367141926846518952e-09,-2.549229767373174129e-09,-2.731317607899829305e-09,-2.913405448426484482e-09,-3.095493288953139659e-09,-3.277581129479794835e-09,-3.459668970006450012e-09,-3.641756810533105189e-09,-3.823844651059759952e-09,-4.005932491586414715e-09,-4.188020332113069478e-09,-4.370108172639724241e-09,-4.552196013166379005e-09,-4.734283853693033768e-09,-4.916371694219688531e-09,-5.098459534746343294e-09,-5.280547375272998057e-09,-5.462635215799652820e-09,-5.644723056326307583e-09,-5.826810896852962346e-09,-6.008898737379617110e-09,-6.190986577906271873e-09,-6.373074418432926636e-09,-6.555162258959581399e-09,-6.737250099486236162e-09,-6.919337940012890925e-09,-7.101425780539545688e-09,-7.283513621066200452e-09,-7.465601461592855215e-09,-7.647689302119509978e-09,-7.829777142646164741e-09,-8.011864983172819504e-09,-8.193952823699474267e-09,-8.376040664226129030e-09,-8.558128504752783794e-09,-8.740216345279438557e-09,-8.922304185806093320e-09,-9.104392026332748083e-09,-9.286479866859402846e-09,-9.468567707386057609e-09,-9.650655547912712372e-09,-9.832743388439367135e-09,-1.001483122896602190e-08,-1.019691906949267666e-08,-1.037900691001933142e-08,-1.056109475054598619e-08,-1.074318259107264095e-08,-1.092527043159929571e-08,-1.110735827212595048e-08,-1.128944611265260524e-08,-1.147153395317926000e-08 +0.000000000000000000e+00,-8.182862003689536894e-20,-1.636572400737907379e-19,-2.454858601106860827e-19,-3.273144801475814276e-19,-4.091431001844767725e-19,-4.909717202213721655e-19,-5.728003402582675585e-19,-6.546289602951629515e-19,-7.364575803320583445e-19,-8.182862003689537375e-19,-9.001148204058491305e-19,-9.819434404427445235e-19,-1.063772060479639917e-18,-1.145600680516535310e-18,-1.227429300553430703e-18,-1.309257920590326096e-18,-1.391086540627221489e-18,-1.472915160664116882e-18,-1.554743780701012275e-18,-1.636572400737907668e-18,-1.718401020774803061e-18,-1.800229640811698646e-18,-1.882058260848594039e-18,-1.963886880885489432e-18,-2.045715500922384825e-18,-2.127544120959280218e-18,-2.209372740996175611e-18,-2.291201361033071004e-18,-2.373029981069966397e-18,-2.454858601106861790e-18,-2.536687221143757183e-18,-2.618515841180652576e-18,-2.700344461217547969e-18,-2.782173081254443362e-18,-2.864001701291338755e-18,-2.945830321328234148e-18,-3.027658941365129541e-18,-3.109487561402024934e-18,-3.191316181438920327e-18,-3.273144801475815720e-18,-3.354973421512711113e-18,-3.436802041549606506e-18,-3.518630661586501899e-18,-3.600459281623397292e-18,-3.682287901660292685e-18,-3.764116521697188078e-18,-3.845945141734083471e-18,-3.927773761770978864e-18,-4.009602381807874257e-18,-4.091431001844769650e-18,-4.173259621881665044e-18,-4.255088241918560437e-18,-4.336916861955455830e-18,-4.418745481992351223e-18,-4.500574102029246616e-18,-4.582402722066142009e-18,-4.664231342103037402e-18,-4.746059962139932795e-18,-4.827888582176828188e-18,-4.909717202213723581e-18,-4.991545822250618974e-18,-5.073374442287514367e-18,-5.155203062324409760e-18 +0.000000000000000000e+00,-1.952452711858756665e-10,-3.904905423717513330e-10,-5.857358135576270253e-10,-7.809810847435027694e-10,-9.762263559293784100e-10,-1.171471627115254051e-09,-1.366716898301129691e-09,-1.561962169487005332e-09,-1.757207440672880973e-09,-1.952452711858756820e-09,-2.147697983044632668e-09,-2.342943254230508515e-09,-2.538188525416384362e-09,-2.733433796602260210e-09,-2.928679067788136057e-09,-3.123924338974011905e-09,-3.319169610159887752e-09,-3.514414881345763600e-09,-3.709660152531639447e-09,-3.904905423717515295e-09,-4.100150694903391556e-09,-4.295395966089267817e-09,-4.490641237275144078e-09,-4.685886508461020339e-09,-4.881131779646896600e-09,-5.076377050832772861e-09,-5.271622322018649122e-09,-5.466867593204525383e-09,-5.662112864390401644e-09,-5.857358135576277905e-09,-6.052603406762154166e-09,-6.247848677948030427e-09,-6.443093949133906688e-09,-6.638339220319782949e-09,-6.833584491505659210e-09,-7.028829762691535471e-09,-7.224075033877411732e-09,-7.419320305063287993e-09,-7.614565576249164254e-09,-7.809810847435040515e-09,-8.005056118620916776e-09,-8.200301389806793037e-09,-8.395546660992669298e-09,-8.590791932178545559e-09,-8.786037203364421820e-09,-8.981282474550298081e-09,-9.176527745736174343e-09,-9.371773016922050604e-09,-9.567018288107926865e-09,-9.762263559293803126e-09,-9.957508830479679387e-09,-1.015275410166555565e-08,-1.034799937285143191e-08,-1.054324464403730817e-08,-1.073848991522318443e-08,-1.093373518640906069e-08,-1.112898045759493695e-08,-1.132422572878081321e-08,-1.151947099996668947e-08,-1.171471627115256574e-08,-1.190996154233844200e-08,-1.210520681352431826e-08,-1.230045208471019452e-08 +0.000000000000000000e+00,3.640353642866552050e-10,7.280707285733104100e-10,1.092106092859965615e-09,1.456141457146620820e-09,1.820176821433276025e-09,2.184212185719931230e-09,2.548247550006586228e-09,2.912282914293241226e-09,3.276318278579896225e-09,3.640353642866551223e-09,4.004389007153206221e-09,4.368424371439861633e-09,4.732459735726517045e-09,5.096495100013172457e-09,5.460530464299827868e-09,5.824565828586483280e-09,6.188601192873138692e-09,6.552636557159794104e-09,6.916671921446449516e-09,7.280707285733104927e-09,7.644742650019761166e-09,8.008778014306417405e-09,8.372813378593073644e-09,8.736848742879729883e-09,9.100884107166386122e-09,9.464919471453042361e-09,9.828954835739698600e-09,1.019299020002635484e-08,1.055702556431301108e-08,1.092106092859966732e-08,1.128509629288632356e-08,1.164913165717297980e-08,1.201316702145963603e-08,1.237720238574629227e-08,1.274123775003294851e-08,1.310527311431960475e-08,1.346930847860626099e-08,1.383334384289291723e-08,1.419737920717957347e-08,1.456141457146622971e-08,1.492544993575288595e-08,1.528948530003954218e-08,1.565352066432619842e-08,1.601755602861285466e-08,1.638159139289951090e-08,1.674562675718616714e-08,1.710966212147282338e-08,1.747369748575947962e-08,1.783773285004613586e-08,1.820176821433279210e-08,1.856580357861944834e-08,1.892983894290610457e-08,1.929387430719276081e-08,1.965790967147941705e-08,2.002194503576607329e-08,2.038598040005272953e-08,2.075001576433938577e-08,2.111405112862604201e-08,2.147808649291269825e-08,2.184212185719935449e-08,2.220615722148601073e-08,2.257019258577266696e-08,2.293422795005932320e-08 +0.000000000000000000e+00,1.820878403688816418e-10,3.641756807377632836e-10,5.462635211066449255e-10,7.283513614755265673e-10,9.104392018444082091e-10,1.092527042213289851e-09,1.274614882582171493e-09,1.456702722951053135e-09,1.638790563319934776e-09,1.820878403688816418e-09,2.002966244057698060e-09,2.185054084426579702e-09,2.367141924795461344e-09,2.549229765164342985e-09,2.731317605533224627e-09,2.913405445902106269e-09,3.095493286270987911e-09,3.277581126639869553e-09,3.459668967008751195e-09,3.641756807377632836e-09,3.823844647746514478e-09,4.005932488115396120e-09,4.188020328484277762e-09,4.370108168853159404e-09,4.552196009222041045e-09,4.734283849590922687e-09,4.916371689959804329e-09,5.098459530328685971e-09,5.280547370697567613e-09,5.462635211066449255e-09,5.644723051435330896e-09,5.826810891804212538e-09,6.008898732173094180e-09,6.190986572541975822e-09,6.373074412910857464e-09,6.555162253279739105e-09,6.737250093648620747e-09,6.919337934017502389e-09,7.101425774386384031e-09,7.283513614755265673e-09,7.465601455124147315e-09,7.647689295493028956e-09,7.829777135861910598e-09,8.011864976230792240e-09,8.193952816599673882e-09,8.376040656968555524e-09,8.558128497337437165e-09,8.740216337706318807e-09,8.922304178075200449e-09,9.104392018444082091e-09,9.286479858812963733e-09,9.468567699181845375e-09,9.650655539550727016e-09,9.832743379919608658e-09,1.001483122028849030e-08,1.019691906065737194e-08,1.037900690102625358e-08,1.056109474139513523e-08,1.074318258176401687e-08,1.092527042213289851e-08,1.110735826250178015e-08,1.128944610287066179e-08,1.147153394323954343e-08 +0.000000000000000000e+00,-2.120293067932693452e-11,-4.240586135865386904e-11,-6.360879203798080033e-11,-8.481172271730772516e-11,-1.060146533966346500e-10,-1.272175840759615748e-10,-1.484205147552884996e-10,-1.696234454346154245e-10,-1.908263761139423493e-10,-2.120293067932692741e-10,-2.332322374725961989e-10,-2.544351681519230979e-10,-2.756380988312499969e-10,-2.968410295105768959e-10,-3.180439601899037949e-10,-3.392468908692306938e-10,-3.604498215485575928e-10,-3.816527522278844918e-10,-4.028556829072113908e-10,-4.240586135865382897e-10,-4.452615442658651887e-10,-4.664644749451920877e-10,-4.876674056245190384e-10,-5.088703363038459891e-10,-5.300732669831729397e-10,-5.512761976624998904e-10,-5.724791283418268411e-10,-5.936820590211537918e-10,-6.148849897004807424e-10,-6.360879203798076931e-10,-6.572908510591346438e-10,-6.784937817384615945e-10,-6.996967124177885451e-10,-7.208996430971154958e-10,-7.421025737764424465e-10,-7.633055044557693972e-10,-7.845084351350963478e-10,-8.057113658144232985e-10,-8.269142964937502492e-10,-8.481172271730771999e-10,-8.693201578524041506e-10,-8.905230885317311012e-10,-9.117260192110580519e-10,-9.329289498903850026e-10,-9.541318805697119533e-10,-9.753348112490389039e-10,-9.965377419283658546e-10,-1.017740672607692805e-09,-1.038943603287019756e-09,-1.060146533966346707e-09,-1.081349464645673657e-09,-1.102552395325000608e-09,-1.123755326004327559e-09,-1.144958256683654509e-09,-1.166161187362981460e-09,-1.187364118042308411e-09,-1.208567048721635361e-09,-1.229769979400962312e-09,-1.250972910080289263e-09,-1.272175840759616213e-09,-1.293378771438943164e-09,-1.314581702118270115e-09,-1.335784632797597065e-09 +0.000000000000000000e+00,1.386253631435930830e-10,2.772507262871861660e-10,4.158760894307792490e-10,5.545014525743723320e-10,6.931268157179654150e-10,8.317521788615584979e-10,9.703775420051514775e-10,1.109002905148744457e-09,1.247628268292337437e-09,1.386253631435930416e-09,1.524878994579523396e-09,1.663504357723116376e-09,1.802129720866709355e-09,1.940755084010302128e-09,2.079380447153894901e-09,2.218005810297487673e-09,2.356631173441080446e-09,2.495256536584673219e-09,2.633881899728265992e-09,2.772507262871858765e-09,2.911132626015451537e-09,3.049757989159044310e-09,3.188383352302637083e-09,3.327008715446229856e-09,3.465634078589822629e-09,3.604259441733415401e-09,3.742884804877007761e-09,3.881510168020600120e-09,4.020135531164192479e-09,4.158760894307784838e-09,4.297386257451377198e-09,4.436011620594969557e-09,4.574636983738561916e-09,4.713262346882154275e-09,4.851887710025746634e-09,4.990513073169338994e-09,5.129138436312931353e-09,5.267763799456523712e-09,5.406389162600116071e-09,5.545014525743708430e-09,5.683639888887300790e-09,5.822265252030893149e-09,5.960890615174485508e-09,6.099515978318077867e-09,6.238141341461670226e-09,6.376766704605262586e-09,6.515392067748854945e-09,6.654017430892447304e-09,6.792642794036039663e-09,6.931268157179632022e-09,7.069893520323224382e-09,7.208518883466816741e-09,7.347144246610409100e-09,7.485769609754002286e-09,7.624394972897595473e-09,7.763020336041188659e-09,7.901645699184781846e-09,8.040271062328375032e-09,8.178896425471968218e-09,8.317521788615561405e-09,8.456147151759154591e-09,8.594772514902747778e-09,8.733397878046340964e-09 +0.000000000000000000e+00,-3.169011570168545560e-10,-6.338023140337091120e-10,-9.507034710505636163e-10,-1.267604628067418017e-09,-1.584505785084272418e-09,-1.901406942101126819e-09,-2.218308099117981220e-09,-2.535209256134835621e-09,-2.852110413151690022e-09,-3.169011570168544422e-09,-3.485912727185398823e-09,-3.802813884202252811e-09,-4.119715041219106384e-09,-4.436616198235959958e-09,-4.753517355252813532e-09,-5.070418512269667106e-09,-5.387319669286520679e-09,-5.704220826303374253e-09,-6.021121983320227827e-09,-6.338023140337081400e-09,-6.654924297353934974e-09,-6.971825454370788548e-09,-7.288726611387642121e-09,-7.605627768404495695e-09,-7.922528925421349269e-09,-8.239430082438202843e-09,-8.556331239455056416e-09,-8.873232396471909990e-09,-9.190133553488763564e-09,-9.507034710505617137e-09,-9.823935867522470711e-09,-1.014083702453932428e-08,-1.045773818155617786e-08,-1.077463933857303143e-08,-1.109154049558988501e-08,-1.140844165260673858e-08,-1.172534280962359215e-08,-1.204224396664044573e-08,-1.235914512365729930e-08,-1.267604628067415287e-08,-1.299294743769100645e-08,-1.330984859470786002e-08,-1.362674975172471360e-08,-1.394365090874156717e-08,-1.426055206575842074e-08,-1.457745322277527432e-08,-1.489435437979212789e-08,-1.521125553680898146e-08,-1.552815669382583504e-08,-1.584505785084268861e-08,-1.616195900785954219e-08,-1.647886016487639576e-08,-1.679576132189324933e-08,-1.711266247891010291e-08,-1.742956363592695648e-08,-1.774646479294381005e-08,-1.806336594996066363e-08,-1.838026710697751720e-08,-1.869716826399437078e-08,-1.901406942101122435e-08,-1.933097057802807792e-08,-1.964787173504493150e-08,-1.996477289206178507e-08 +0.000000000000000000e+00,4.084567735463499211e-10,8.169135470926998423e-10,1.225370320639049815e-09,1.633827094185399891e-09,2.042283867731750174e-09,2.450740641278100457e-09,2.859197414824450740e-09,3.267654188370801023e-09,3.676110961917151306e-09,4.084567735463502003e-09,4.493024509009852700e-09,4.901481282556203396e-09,5.309938056102554093e-09,5.718394829648904790e-09,6.126851603195255486e-09,6.535308376741606183e-09,6.943765150287956879e-09,7.352221923834307576e-09,7.760678697380657446e-09,8.169135470927007315e-09,8.577592244473357184e-09,8.986049018019707054e-09,9.394505791566056923e-09,9.802962565112406793e-09,1.021141933865875666e-08,1.061987611220510653e-08,1.102833288575145640e-08,1.143678965929780627e-08,1.184524643284415614e-08,1.225370320639050601e-08,1.266215997993685588e-08,1.307061675348320575e-08,1.347907352702955562e-08,1.388753030057590549e-08,1.429598707412225536e-08,1.470444384766860523e-08,1.511290062121495510e-08,1.552135739476130496e-08,1.592981416830765483e-08,1.633827094185400470e-08,1.674672771540035457e-08,1.715518448894670444e-08,1.756364126249305431e-08,1.797209803603940418e-08,1.838055480958575405e-08,1.878901158313210392e-08,1.919746835667845379e-08,1.960592513022480366e-08,2.001438190377115353e-08,2.042283867731750340e-08,2.083129545086385327e-08,2.123975222441020314e-08,2.164820899795655301e-08,2.205666577150290288e-08,2.246512254504925275e-08,2.287357931859560261e-08,2.328203609214195248e-08,2.369049286568830235e-08,2.409894963923465222e-08,2.450740641278100209e-08,2.491586318632735196e-08,2.532431995987370183e-08,2.573277673342005170e-08 +0.000000000000000000e+00,3.193829300608854155e-10,6.387658601217708310e-10,9.581487901826561948e-10,1.277531720243541455e-09,1.596914650304426716e-09,1.916297580365311976e-09,2.235680510426197236e-09,2.555063440487082497e-09,2.874446370547967757e-09,3.193829300608853017e-09,3.513212230669738278e-09,3.832595160730623125e-09,4.151978090791507971e-09,4.471361020852392818e-09,4.790743950913277665e-09,5.110126880974162512e-09,5.429509811035047359e-09,5.748892741095932205e-09,6.068275671156817052e-09,6.387658601217701899e-09,6.707041531278586746e-09,7.026424461339471593e-09,7.345807391400356439e-09,7.665190321461241286e-09,7.984573251522126960e-09,8.303956181583012634e-09,8.623339111643898308e-09,8.942722041704783982e-09,9.262104971765669656e-09,9.581487901826555330e-09,9.900870831887441004e-09,1.022025376194832668e-08,1.053963669200921235e-08,1.085901962207009803e-08,1.117840255213098370e-08,1.149778548219186937e-08,1.181716841225275505e-08,1.213655134231364072e-08,1.245593427237452640e-08,1.277531720243541207e-08,1.309470013249629774e-08,1.341408306255718342e-08,1.373346599261806909e-08,1.405284892267895477e-08,1.437223185273984044e-08,1.469161478280072611e-08,1.501099771286161179e-08,1.533038064292249912e-08,1.564976357298338644e-08,1.596914650304427377e-08,1.628852943310516110e-08,1.660791236316604843e-08,1.692729529322693576e-08,1.724667822328782309e-08,1.756606115334871041e-08,1.788544408340959774e-08,1.820482701347048507e-08,1.852420994353137240e-08,1.884359287359225973e-08,1.916297580365314706e-08,1.948235873371403438e-08,1.980174166377492171e-08,2.012112459383580904e-08 +0.000000000000000000e+00,4.767414845640451573e-10,9.534829691280903147e-10,1.430224453692135369e-09,1.906965938256180216e-09,2.383707422820225063e-09,2.860448907384269910e-09,3.337190391948314757e-09,3.813931876512359604e-09,4.290673361076404452e-09,4.767414845640449299e-09,5.244156330204494146e-09,5.720897814768538993e-09,6.197639299332583840e-09,6.674380783896628687e-09,7.151122268460673534e-09,7.627863753024717554e-09,8.104605237588761574e-09,8.581346722152805594e-09,9.058088206716849614e-09,9.534829691280893634e-09,1.001157117584493765e-08,1.048831266040898167e-08,1.096505414497302569e-08,1.144179562953706971e-08,1.191853711410111373e-08,1.239527859866515775e-08,1.287202008322920177e-08,1.334876156779324579e-08,1.382550305235728981e-08,1.430224453692133383e-08,1.477898602148537785e-08,1.525572750604942187e-08,1.573246899061346424e-08,1.620921047517750661e-08,1.668595195974154897e-08,1.716269344430559134e-08,1.763943492886963370e-08,1.811617641343367607e-08,1.859291789799771843e-08,1.906965938256176080e-08,1.954640086712580316e-08,2.002314235168984553e-08,2.049988383625388790e-08,2.097662532081793026e-08,2.145336680538197263e-08,2.193010828994601499e-08,2.240684977451005736e-08,2.288359125907409972e-08,2.336033274363814209e-08,2.383707422820218445e-08,2.431381571276622682e-08,2.479055719733026919e-08,2.526729868189431155e-08,2.574404016645835392e-08,2.622078165102239628e-08,2.669752313558643865e-08,2.717426462015048101e-08,2.765100610471452338e-08,2.812774758927856575e-08,2.860448907384260811e-08,2.908123055840665048e-08,2.955797204297069284e-08,3.003471352753473521e-08 +0.000000000000000000e+00,-4.084567736839606701e-10,-8.169135473679213402e-10,-1.225370321051882010e-09,-1.633827094735842680e-09,-2.042283868419803144e-09,-2.450740642103763607e-09,-2.859197415787724070e-09,-3.267654189471684534e-09,-3.676110963155644997e-09,-4.084567736839605460e-09,-4.493024510523565924e-09,-4.901481284207526387e-09,-5.309938057891486850e-09,-5.718394831575447314e-09,-6.126851605259407777e-09,-6.535308378943368240e-09,-6.943765152627328704e-09,-7.352221926311289167e-09,-7.760678699995249630e-09,-8.169135473679209266e-09,-8.577592247363168903e-09,-8.986049021047128539e-09,-9.394505794731088175e-09,-9.802962568415047811e-09,-1.021141934209900745e-08,-1.061987611578296708e-08,-1.102833288946692672e-08,-1.143678966315088636e-08,-1.184524643683484599e-08,-1.225370321051880563e-08,-1.266215998420276526e-08,-1.307061675788672490e-08,-1.347907353157068454e-08,-1.388753030525464417e-08,-1.429598707893860381e-08,-1.470444385262256344e-08,-1.511290062630652308e-08,-1.552135739999048272e-08,-1.592981417367444235e-08,-1.633827094735840199e-08,-1.674672772104236163e-08,-1.715518449472632126e-08,-1.756364126841028090e-08,-1.797209804209424053e-08,-1.838055481577820017e-08,-1.878901158946215981e-08,-1.919746836314611944e-08,-1.960592513683007908e-08,-2.001438191051403871e-08,-2.042283868419799835e-08,-2.083129545788195799e-08,-2.123975223156591762e-08,-2.164820900524987726e-08,-2.205666577893383690e-08,-2.246512255261779653e-08,-2.287357932630175617e-08,-2.328203609998571580e-08,-2.369049287366967544e-08,-2.409894964735363508e-08,-2.450740642103759471e-08,-2.491586319472155435e-08,-2.532431996840551398e-08,-2.573277674208947362e-08 +0.000000000000000000e+00,-3.193829302041928022e-10,-6.387658604083856045e-10,-9.581487906125783550e-10,-1.277531720816771002e-09,-1.596914651020963649e-09,-1.916297581225156297e-09,-2.235680511429348944e-09,-2.555063441633541591e-09,-2.874446371837734238e-09,-3.193829302041926885e-09,-3.513212232246119532e-09,-3.832595162450311766e-09,-4.151978092654503999e-09,-4.471361022858696233e-09,-4.790743953062888467e-09,-5.110126883267080700e-09,-5.429509813471272934e-09,-5.748892743675465167e-09,-6.068275673879657401e-09,-6.387658604083849634e-09,-6.707041534288041868e-09,-7.026424464492234101e-09,-7.345807394696426335e-09,-7.665190324900618569e-09,-7.984573255104811629e-09,-8.303956185309004690e-09,-8.623339115513197751e-09,-8.942722045717390812e-09,-9.262104975921583872e-09,-9.581487906125776933e-09,-9.900870836329969994e-09,-1.022025376653416305e-08,-1.053963669673835612e-08,-1.085901962694254918e-08,-1.117840255714674224e-08,-1.149778548735093530e-08,-1.181716841755512836e-08,-1.213655134775932142e-08,-1.245593427796351448e-08,-1.277531720816770754e-08,-1.309470013837190060e-08,-1.341408306857609366e-08,-1.373346599878028672e-08,-1.405284892898447978e-08,-1.437223185918867284e-08,-1.469161478939286590e-08,-1.501099771959705897e-08,-1.533038064980125368e-08,-1.564976358000544840e-08,-1.596914651020964311e-08,-1.628852944041383783e-08,-1.660791237061803254e-08,-1.692729530082222726e-08,-1.724667823102642197e-08,-1.756606116123061669e-08,-1.788544409143481140e-08,-1.820482702163900612e-08,-1.852420995184320083e-08,-1.884359288204739555e-08,-1.916297581225159026e-08,-1.948235874245578498e-08,-1.980174167265997969e-08,-2.012112460286417441e-08 +0.000000000000000000e+00,-4.767414847117126131e-10,-9.534829694234252262e-10,-1.430224454135137736e-09,-1.906965938846850039e-09,-2.383707423558562342e-09,-2.860448908270274645e-09,-3.337190392981986948e-09,-3.813931877693699251e-09,-4.290673362405411553e-09,-4.767414847117123856e-09,-5.244156331828836159e-09,-5.720897816540548462e-09,-6.197639301252260765e-09,-6.674380785963973068e-09,-7.151122270675685371e-09,-7.627863755387396847e-09,-8.104605240099107495e-09,-8.581346724810818144e-09,-9.058088209522528792e-09,-9.534829694234239441e-09,-1.001157117894595009e-08,-1.048831266365766074e-08,-1.096505414836937139e-08,-1.144179563308108204e-08,-1.191853711779279268e-08,-1.239527860250450333e-08,-1.287202008721621398e-08,-1.334876157192792463e-08,-1.382550305663963528e-08,-1.430224454135134593e-08,-1.477898602606305658e-08,-1.525572751077476722e-08,-1.573246899548647787e-08,-1.620921048019818852e-08,-1.668595196490989917e-08,-1.716269344962160982e-08,-1.763943493433332047e-08,-1.811617641904503112e-08,-1.859291790375674176e-08,-1.906965938846845241e-08,-1.954640087318016306e-08,-2.002314235789187371e-08,-2.049988384260358436e-08,-2.097662532731529501e-08,-2.145336681202700566e-08,-2.193010829673871630e-08,-2.240684978145042695e-08,-2.288359126616213760e-08,-2.336033275087384825e-08,-2.383707423558555890e-08,-2.431381572029726955e-08,-2.479055720500898019e-08,-2.526729868972069084e-08,-2.574404017443240149e-08,-2.622078165914411214e-08,-2.669752314385582279e-08,-2.717426462856753344e-08,-2.765100611327924409e-08,-2.812774759799095473e-08,-2.860448908270266538e-08,-2.908123056741437603e-08,-2.955797205212608668e-08,-3.003471353683779733e-08 +0.000000000000000000e+00,5.038904740085814883e-10,1.007780948017162977e-09,1.511671422025744362e-09,2.015561896034325540e-09,2.519452370042906718e-09,3.023342844051487896e-09,3.527233318060069074e-09,4.031123792068650252e-09,4.535014266077231430e-09,5.038904740085812609e-09,5.542795214094393787e-09,6.046685688102974965e-09,6.550576162111556143e-09,7.054466636120137321e-09,7.558357110128717672e-09,8.062247584137298850e-09,8.566138058145880028e-09,9.070028532154461207e-09,9.573919006163042385e-09,1.007780948017162356e-08,1.058169995418020474e-08,1.108559042818878592e-08,1.158948090219736710e-08,1.209337137620594828e-08,1.259726185021452945e-08,1.310115232422311063e-08,1.360504279823169181e-08,1.410893327224027299e-08,1.461282374624885417e-08,1.511671422025743534e-08,1.562060469426601652e-08,1.612449516827459770e-08,1.662838564228317888e-08,1.713227611629176006e-08,1.763616659030034124e-08,1.814005706430892241e-08,1.864394753831750359e-08,1.914783801232608477e-08,1.965172848633466595e-08,2.015561896034324713e-08,2.065950943435182830e-08,2.116339990836040948e-08,2.166729038236899066e-08,2.217118085637757184e-08,2.267507133038615302e-08,2.317896180439473419e-08,2.368285227840331537e-08,2.418674275241189655e-08,2.469063322642047773e-08,2.519452370042905891e-08,2.569841417443764009e-08,2.620230464844622126e-08,2.670619512245480244e-08,2.721008559646338362e-08,2.771397607047196480e-08,2.821786654448054598e-08,2.872175701848912715e-08,2.922564749249770833e-08,2.972953796650628951e-08,3.023342844051487069e-08,3.073731891452345518e-08,3.124120938853203966e-08,3.174509986254062415e-08 +0.000000000000000000e+00,4.574937838047821202e-10,9.149875676095642403e-10,1.372481351414346309e-09,1.829975135219128274e-09,2.287468919023910239e-09,2.744962702828692204e-09,3.202456486633474169e-09,3.659950270438256134e-09,4.117444054243037686e-09,4.574937838047819651e-09,5.032431621852601616e-09,5.489925405657383581e-09,5.947419189462165546e-09,6.404912973266947511e-09,6.862406757071729476e-09,7.319900540876511441e-09,7.777394324681293406e-09,8.234888108486075371e-09,8.692381892290857336e-09,9.149875676095639301e-09,9.607369459900421266e-09,1.006486324370520323e-08,1.052235702750998520e-08,1.097985081131476716e-08,1.143734459511954913e-08,1.189483837892433109e-08,1.235233216272911306e-08,1.280982594653389502e-08,1.326731973033867699e-08,1.372481351414345895e-08,1.418230729794824092e-08,1.463980108175302288e-08,1.509729486555780319e-08,1.555478864936258350e-08,1.601228243316736381e-08,1.646977621697214412e-08,1.692727000077692444e-08,1.738476378458170475e-08,1.784225756838648506e-08,1.829975135219126537e-08,1.875724513599604568e-08,1.921473891980082599e-08,1.967223270360560630e-08,2.012972648741038661e-08,2.058722027121516692e-08,2.104471405501994723e-08,2.150220783882472754e-08,2.195970162262950785e-08,2.241719540643428816e-08,2.287468919023906847e-08,2.333218297404384879e-08,2.378967675784862910e-08,2.424717054165340941e-08,2.470466432545818972e-08,2.516215810926297003e-08,2.561965189306775034e-08,2.607714567687253065e-08,2.653463946067731096e-08,2.699213324448209127e-08,2.744962702828687158e-08,2.790712081209165189e-08,2.836461459589643220e-08,2.882210837970121251e-08 +0.000000000000000000e+00,5.502506296151405214e-10,1.100501259230281043e-09,1.650751888845421564e-09,2.201002518460562086e-09,2.751253148075702607e-09,3.301503777690843128e-09,3.851754407305983236e-09,4.402005036921123344e-09,4.952255666536263452e-09,5.502506296151403560e-09,6.052756925766543667e-09,6.603007555381683775e-09,7.153258184996823883e-09,7.703508814611963164e-09,8.253759444227102444e-09,8.804010073842241725e-09,9.354260703457381006e-09,9.904511333072520286e-09,1.045476196268765957e-08,1.100501259230279885e-08,1.155526322191793813e-08,1.210551385153307741e-08,1.265576448114821669e-08,1.320601511076335597e-08,1.375626574037849525e-08,1.430651636999363453e-08,1.485676699960877381e-08,1.540701762922391309e-08,1.595726825883905237e-08,1.650751888845419165e-08,1.705776951806933093e-08,1.760802014768447022e-08,1.815827077729960950e-08,1.870852140691474878e-08,1.925877203652988806e-08,1.980902266614502734e-08,2.035927329576016662e-08,2.090952392537530590e-08,2.145977455499044518e-08,2.201002518460558446e-08,2.256027581422072374e-08,2.311052644383586302e-08,2.366077707345100230e-08,2.421102770306614158e-08,2.476127833268128086e-08,2.531152896229642014e-08,2.586177959191155942e-08,2.641203022152669871e-08,2.696228085114183799e-08,2.751253148075697727e-08,2.806278211037211655e-08,2.861303273998725583e-08,2.916328336960239511e-08,2.971353399921753439e-08,3.026378462883267698e-08,3.081403525844781957e-08,3.136428588806296216e-08,3.191453651767810475e-08,3.246478714729324734e-08,3.301503777690838993e-08,3.356528840652353251e-08,3.411553903613867510e-08,3.466578966575381769e-08 +0.000000000000000000e+00,-5.038904741318122711e-10,-1.007780948263624542e-09,-1.511671422395436813e-09,-2.015561896527249084e-09,-2.519452370659061148e-09,-3.023342844790873213e-09,-3.527233318922685277e-09,-4.031123793054497341e-09,-4.535014267186309406e-09,-5.038904741318121470e-09,-5.542795215449933534e-09,-6.046685689581745598e-09,-6.550576163713557663e-09,-7.054466637845369727e-09,-7.558357111977181791e-09,-8.062247586108993028e-09,-8.566138060240804265e-09,-9.070028534372615502e-09,-9.573919008504426739e-09,-1.007780948263623798e-08,-1.058169995676804921e-08,-1.108559043089986045e-08,-1.158948090503167169e-08,-1.209337137916348292e-08,-1.259726185329529416e-08,-1.310115232742710540e-08,-1.360504280155891664e-08,-1.410893327569072787e-08,-1.461282374982253911e-08,-1.511671422395435035e-08,-1.562060469808616158e-08,-1.612449517221797282e-08,-1.662838564634978406e-08,-1.713227612048159530e-08,-1.763616659461340653e-08,-1.814005706874521777e-08,-1.864394754287702901e-08,-1.914783801700884024e-08,-1.965172849114065148e-08,-2.015561896527246272e-08,-2.065950943940427396e-08,-2.116339991353608519e-08,-2.166729038766789643e-08,-2.217118086179970767e-08,-2.267507133593151890e-08,-2.317896181006333014e-08,-2.368285228419514138e-08,-2.418674275832695261e-08,-2.469063323245876385e-08,-2.519452370659057509e-08,-2.569841418072238633e-08,-2.620230465485419756e-08,-2.670619512898600880e-08,-2.721008560311782004e-08,-2.771397607724963127e-08,-2.821786655138144251e-08,-2.872175702551325375e-08,-2.922564749964506499e-08,-2.972953797377687622e-08,-3.023342844790868746e-08,-3.073731892204050201e-08,-3.124120939617231655e-08,-3.174509987030413110e-08 +0.000000000000000000e+00,-4.574937839354973882e-10,-9.149875678709947763e-10,-1.372481351806492164e-09,-1.829975135741989553e-09,-2.287468919677486734e-09,-2.744962703612983915e-09,-3.202456487548481097e-09,-3.659950271483978278e-09,-4.117444055419475459e-09,-4.574937839354972641e-09,-5.032431623290469822e-09,-5.489925407225967003e-09,-5.947419191161464185e-09,-6.404912975096961366e-09,-6.862406759032458548e-09,-7.319900542967955729e-09,-7.777394326903452910e-09,-8.234888110838950919e-09,-8.692381894774448927e-09,-9.149875678709946936e-09,-9.607369462645444944e-09,-1.006486324658094295e-08,-1.052235703051644096e-08,-1.097985081445193897e-08,-1.143734459838743698e-08,-1.189483838232293499e-08,-1.235233216625843300e-08,-1.280982595019393100e-08,-1.326731973412942901e-08,-1.372481351806492702e-08,-1.418230730200042503e-08,-1.463980108593592304e-08,-1.509729486987142105e-08,-1.555478865380691906e-08,-1.601228243774241706e-08,-1.646977622167791507e-08,-1.692727000561341308e-08,-1.738476378954891109e-08,-1.784225757348440910e-08,-1.829975135741990711e-08,-1.875724514135540512e-08,-1.921473892529090312e-08,-1.967223270922640113e-08,-2.012972649316189914e-08,-2.058722027709739715e-08,-2.104471406103289516e-08,-2.150220784496839317e-08,-2.195970162890389118e-08,-2.241719541283938918e-08,-2.287468919677488719e-08,-2.333218298071038520e-08,-2.378967676464588321e-08,-2.424717054858138122e-08,-2.470466433251687923e-08,-2.516215811645237723e-08,-2.561965190038787524e-08,-2.607714568432337325e-08,-2.653463946825887126e-08,-2.699213325219436927e-08,-2.744962703612986728e-08,-2.790712082006536529e-08,-2.836461460400086329e-08,-2.882210838793636130e-08 +0.000000000000000000e+00,-5.502506297509756755e-10,-1.100501259501951351e-09,-1.650751889252927130e-09,-2.201002519003903116e-09,-2.751253148754879101e-09,-3.301503778505855087e-09,-3.851754408256830659e-09,-4.402005038007806231e-09,-4.952255667758781803e-09,-5.502506297509757375e-09,-6.052756927260732948e-09,-6.603007557011708520e-09,-7.153258186762684092e-09,-7.703508816513659664e-09,-8.253759446264635236e-09,-8.804010076015610808e-09,-9.354260705766586380e-09,-9.904511335517561952e-09,-1.045476196526853752e-08,-1.100501259501951310e-08,-1.155526322477048867e-08,-1.210551385452146424e-08,-1.265576448427243981e-08,-1.320601511402341538e-08,-1.375626574377439096e-08,-1.430651637352536653e-08,-1.485676700327634210e-08,-1.540701763302731602e-08,-1.595726826277828828e-08,-1.650751889252926055e-08,-1.705776952228023281e-08,-1.760802015203120507e-08,-1.815827078178217734e-08,-1.870852141153314960e-08,-1.925877204128412186e-08,-1.980902267103509413e-08,-2.035927330078606639e-08,-2.090952393053703865e-08,-2.145977456028801092e-08,-2.201002519003898318e-08,-2.256027581978995544e-08,-2.311052644954092771e-08,-2.366077707929189997e-08,-2.421102770904287223e-08,-2.476127833879384450e-08,-2.531152896854481676e-08,-2.586177959829578902e-08,-2.641203022804676129e-08,-2.696228085779773355e-08,-2.751253148754870581e-08,-2.806278211729967808e-08,-2.861303274705065034e-08,-2.916328337680162260e-08,-2.971353400655259487e-08,-3.026378463630356713e-08,-3.081403526605453939e-08,-3.136428589580551166e-08,-3.191453652555648392e-08,-3.246478715530745618e-08,-3.301503778505842845e-08,-3.356528841480940071e-08,-3.411553904456037297e-08,-3.466578967431134524e-08 +0.000000000000000000e+00,5.607325322492889462e-10,1.121465064498577892e-09,1.682197596747866942e-09,2.242930128997156198e-09,2.803662661246445455e-09,3.364395193495734711e-09,3.925127725745023554e-09,4.485860257994312397e-09,5.046592790243601240e-09,5.607325322492890083e-09,6.168057854742178925e-09,6.728790386991467768e-09,7.289522919240756611e-09,7.850255451490045454e-09,8.410987983739334297e-09,8.971720515988623139e-09,9.532453048237911982e-09,1.009318558048720083e-08,1.065391811273648967e-08,1.121465064498577851e-08,1.177538317723506735e-08,1.233611570948435620e-08,1.289684824173364504e-08,1.345758077398293388e-08,1.401831330623222272e-08,1.457904583848151157e-08,1.513977837073080041e-08,1.570051090298008760e-08,1.626124343522937479e-08,1.682197596747866198e-08,1.738270849972794916e-08,1.794344103197723635e-08,1.850417356422652354e-08,1.906490609647581073e-08,1.962563862872509792e-08,2.018637116097438511e-08,2.074710369322367230e-08,2.130783622547295948e-08,2.186856875772224667e-08,2.242930128997153386e-08,2.299003382222082105e-08,2.355076635447010824e-08,2.411149888671939543e-08,2.467223141896868261e-08,2.523296395121796980e-08,2.579369648346725699e-08,2.635442901571654418e-08,2.691516154796583137e-08,2.747589408021511856e-08,2.803662661246440575e-08,2.859735914471369293e-08,2.915809167696298012e-08,2.971882420921226731e-08,3.027955674146155450e-08,3.084028927371084169e-08,3.140102180596012888e-08,3.196175433820941606e-08,3.252248687045870325e-08,3.308321940270799044e-08,3.364395193495727763e-08,3.420468446720656482e-08,3.476541699945585201e-08,3.532614953170513919e-08 +0.000000000000000000e+00,5.319636736932127523e-10,1.063927347386425505e-09,1.595891021079638153e-09,2.127854694772850595e-09,2.659818368466063038e-09,3.191782042159275480e-09,3.723745715852487922e-09,4.255709389545700364e-09,4.787673063238912806e-09,5.319636736932125248e-09,5.851600410625337690e-09,6.383564084318550132e-09,6.915527758011762574e-09,7.447491431704975016e-09,7.979455105398186631e-09,8.511418779091399073e-09,9.043382452784611515e-09,9.575346126477823957e-09,1.010730980017103640e-08,1.063927347386424884e-08,1.117123714755746128e-08,1.170320082125067373e-08,1.223516449494388617e-08,1.276712816863709861e-08,1.329909184233031105e-08,1.383105551602352349e-08,1.436301918971673594e-08,1.489498286340994838e-08,1.542694653710316082e-08,1.595891021079637326e-08,1.649087388448958570e-08,1.702283755818279815e-08,1.755480123187601059e-08,1.808676490556922303e-08,1.861872857926243547e-08,1.915069225295564791e-08,1.968265592664886036e-08,2.021461960034207280e-08,2.074658327403528524e-08,2.127854694772849768e-08,2.181051062142171012e-08,2.234247429511492257e-08,2.287443796880813501e-08,2.340640164250134745e-08,2.393836531619455989e-08,2.447032898988777233e-08,2.500229266358098478e-08,2.553425633727419722e-08,2.606622001096740966e-08,2.659818368466062210e-08,2.713014735835383455e-08,2.766211103204704699e-08,2.819407470574025943e-08,2.872603837943347187e-08,2.925800205312668431e-08,2.978996572681989676e-08,3.032192940051310920e-08,3.085389307420632164e-08,3.138585674789953408e-08,3.191782042159274652e-08,3.244978409528595897e-08,3.298174776897917141e-08,3.351371144267238385e-08 +0.000000000000000000e+00,5.940329009643339401e-10,1.188065801928667880e-09,1.782098702893001820e-09,2.376131603857335760e-09,2.970164504821669494e-09,3.564197405786003227e-09,4.158230306750336960e-09,4.752263207714670694e-09,5.346296108679004427e-09,5.940329009643338160e-09,6.534361910607671894e-09,7.128394811572005627e-09,7.722427712536339360e-09,8.316460613500673921e-09,8.910493514465008481e-09,9.504526415429343042e-09,1.009855931639367760e-08,1.069259221735801216e-08,1.128662511832234672e-08,1.188065801928668128e-08,1.247469092025101584e-08,1.306872382121535040e-08,1.366275672217968497e-08,1.425678962314401953e-08,1.485082252410835409e-08,1.544485542507268865e-08,1.603888832603702321e-08,1.663292122700135777e-08,1.722695412796569233e-08,1.782098702893002689e-08,1.841501992989436145e-08,1.900905283085869601e-08,1.960308573182303057e-08,2.019711863278736513e-08,2.079115153375169969e-08,2.138518443471603425e-08,2.197921733568036881e-08,2.257325023664470337e-08,2.316728313760903793e-08,2.376131603857337249e-08,2.435534893953770705e-08,2.494938184050204161e-08,2.554341474146637617e-08,2.613744764243071074e-08,2.673148054339504530e-08,2.732551344435937986e-08,2.791954634532371442e-08,2.851357924628804898e-08,2.910761214725238354e-08,2.970164504821671810e-08,3.029567794918105266e-08,3.088971085014538391e-08,3.148374375110971516e-08,3.207777665207404641e-08,3.267180955303837767e-08,3.326584245400270892e-08,3.385987535496704017e-08,3.445390825593137142e-08,3.504794115689570267e-08,3.564197405786003392e-08,3.623600695882436518e-08,3.683003985978869643e-08,3.742407276075302768e-08 +0.000000000000000000e+00,-5.607325323587955618e-10,-1.121465064717591124e-09,-1.682197597076386685e-09,-2.242930129435182247e-09,-2.803662661793977809e-09,-3.364395194152773371e-09,-3.925127726511568519e-09,-4.485860258870363667e-09,-5.046592791229158815e-09,-5.607325323587953964e-09,-6.168057855946749112e-09,-6.728790388305544260e-09,-7.289522920664339408e-09,-7.850255453023133729e-09,-8.410987985381928050e-09,-8.971720517740722371e-09,-9.532453050099516692e-09,-1.009318558245831101e-08,-1.065391811481710533e-08,-1.121465064717589966e-08,-1.177538317953469398e-08,-1.233611571189348830e-08,-1.289684824425228262e-08,-1.345758077661107694e-08,-1.401831330896987126e-08,-1.457904584132866558e-08,-1.513977837368746156e-08,-1.570051090604625753e-08,-1.626124343840505351e-08,-1.682197597076384948e-08,-1.738270850312264546e-08,-1.794344103548144143e-08,-1.850417356784023741e-08,-1.906490610019903338e-08,-1.962563863255782936e-08,-2.018637116491662534e-08,-2.074710369727542131e-08,-2.130783622963421729e-08,-2.186856876199301326e-08,-2.242930129435180924e-08,-2.299003382671060521e-08,-2.355076635906940119e-08,-2.411149889142819716e-08,-2.467223142378699314e-08,-2.523296395614578911e-08,-2.579369648850458509e-08,-2.635442902086338106e-08,-2.691516155322217704e-08,-2.747589408558097302e-08,-2.803662661793976899e-08,-2.859735915029856497e-08,-2.915809168265736094e-08,-2.971882421501615692e-08,-3.027955674737494958e-08,-3.084028927973374225e-08,-3.140102181209253492e-08,-3.196175434445132758e-08,-3.252248687681012025e-08,-3.308321940916891292e-08,-3.364395194152770558e-08,-3.420468447388649825e-08,-3.476541700624529092e-08,-3.532614953860408358e-08 +0.000000000000000000e+00,-5.319636738095697675e-10,-1.063927347619139535e-09,-1.595891021428709199e-09,-2.127854695238278656e-09,-2.659818369047848114e-09,-3.191782042857417571e-09,-3.723745716666987028e-09,-4.255709390476556486e-09,-4.787673064286125943e-09,-5.319636738095695400e-09,-5.851600411905264857e-09,-6.383564085714834315e-09,-6.915527759524403772e-09,-7.447491433333973229e-09,-7.979455107143542687e-09,-8.511418780953111317e-09,-9.043382454762679947e-09,-9.575346128572248577e-09,-1.010730980238181721e-08,-1.063927347619138584e-08,-1.117123715000095447e-08,-1.170320082381052310e-08,-1.223516449762009173e-08,-1.276712817142966036e-08,-1.329909184523922899e-08,-1.383105551904879762e-08,-1.436301919285836625e-08,-1.489498286666793488e-08,-1.542694654047750185e-08,-1.595891021428706883e-08,-1.649087388809663581e-08,-1.702283756190620278e-08,-1.755480123571576976e-08,-1.808676490952533673e-08,-1.861872858333490371e-08,-1.915069225714447068e-08,-1.968265593095403766e-08,-2.021461960476360464e-08,-2.074658327857317161e-08,-2.127854695238273859e-08,-2.181051062619230556e-08,-2.234247430000187254e-08,-2.287443797381143951e-08,-2.340640164762100649e-08,-2.393836532143057347e-08,-2.447032899524014044e-08,-2.500229266904970742e-08,-2.553425634285927439e-08,-2.606622001666884137e-08,-2.659818369047840834e-08,-2.713014736428797532e-08,-2.766211103809754230e-08,-2.819407471190710927e-08,-2.872603838571667625e-08,-2.925800205952624322e-08,-2.978996573333581020e-08,-3.032192940714537717e-08,-3.085389308095494415e-08,-3.138585675476451113e-08,-3.191782042857407810e-08,-3.244978410238364508e-08,-3.298174777619321205e-08,-3.351371145000277903e-08 +0.000000000000000000e+00,-5.940329010873447962e-10,-1.188065802174689592e-09,-1.782098703262034389e-09,-2.376131604349379185e-09,-2.970164505436723774e-09,-3.564197406524068363e-09,-4.158230307611412953e-09,-4.752263208698757542e-09,-5.346296109786102132e-09,-5.940329010873446721e-09,-6.534361911960791310e-09,-7.128394813048135900e-09,-7.722427714135481316e-09,-8.316460615222827560e-09,-8.910493516310173804e-09,-9.504526417397520048e-09,-1.009855931848486629e-08,-1.069259221957221254e-08,-1.128662512065955878e-08,-1.188065802174690502e-08,-1.247469092283425127e-08,-1.306872382392159751e-08,-1.366275672500894375e-08,-1.425678962609629000e-08,-1.485082252718363624e-08,-1.544485542827098249e-08,-1.603888832935832873e-08,-1.663292123044567497e-08,-1.722695413153302122e-08,-1.782098703262036746e-08,-1.841501993370771370e-08,-1.900905283479505995e-08,-1.960308573588240619e-08,-2.019711863696975244e-08,-2.079115153805709868e-08,-2.138518443914444492e-08,-2.197921734023179117e-08,-2.257325024131913741e-08,-2.316728314240648365e-08,-2.376131604349382990e-08,-2.435534894458117614e-08,-2.494938184566852238e-08,-2.554341474675586863e-08,-2.613744764784321487e-08,-2.673148054893056112e-08,-2.732551345001790736e-08,-2.791954635110525360e-08,-2.851357925219259985e-08,-2.910761215327994609e-08,-2.970164505436729233e-08,-3.029567795545463527e-08,-3.088971085654197820e-08,-3.148374375762932114e-08,-3.207777665871666408e-08,-3.267180955980400701e-08,-3.326584246089134995e-08,-3.385987536197869288e-08,-3.445390826306603582e-08,-3.504794116415337875e-08,-3.564197406524072169e-08,-3.623600696632806462e-08,-3.683003986741540756e-08,-3.742407276850275049e-08 +0.000000000000000000e+00,5.998855293628770842e-10,1.199771058725754168e-09,1.799656588088631149e-09,2.399542117451507923e-09,2.999427646814384697e-09,3.599313176177261471e-09,4.199198705540138659e-09,4.799084234903015846e-09,5.398969764265893034e-09,5.998855293628770221e-09,6.598740822991647409e-09,7.198626352354524596e-09,7.798511881717401784e-09,8.398397411080278972e-09,8.998282940443156159e-09,9.598168469806033347e-09,1.019805399916891053e-08,1.079793952853178772e-08,1.139782505789466491e-08,1.199771058725754210e-08,1.259759611662041928e-08,1.319748164598329647e-08,1.379736717534617366e-08,1.439725270470905085e-08,1.499713823407192638e-08,1.559702376343480026e-08,1.619690929279767414e-08,1.679679482216054802e-08,1.739668035152342190e-08,1.799656588088629577e-08,1.859645141024916965e-08,1.919633693961204353e-08,1.979622246897491741e-08,2.039610799833779129e-08,2.099599352770066517e-08,2.159587905706353905e-08,2.219576458642641293e-08,2.279565011578928681e-08,2.339553564515216068e-08,2.399542117451503456e-08,2.459530670387790844e-08,2.519519223324078232e-08,2.579507776260365620e-08,2.639496329196653008e-08,2.699484882132940396e-08,2.759473435069227784e-08,2.819461988005515171e-08,2.879450540941802559e-08,2.939439093878089947e-08,2.999427646814377335e-08,3.059416199750664723e-08,3.119404752686952111e-08,3.179393305623239499e-08,3.239381858559526887e-08,3.299370411495814275e-08,3.359358964432101662e-08,3.419347517368389050e-08,3.479336070304676438e-08,3.539324623240963826e-08,3.599313176177251214e-08,3.659301729113538602e-08,3.719290282049825990e-08,3.779278834986113378e-08 +0.000000000000000000e+00,5.799948530552885538e-10,1.159989706110577108e-09,1.739984559165865765e-09,2.319979412221154629e-09,2.899974265276443493e-09,3.479969118331732357e-09,4.059963971387021634e-09,4.639958824442310912e-09,5.219953677497600189e-09,5.799948530552889467e-09,6.379943383608178744e-09,6.959938236663468022e-09,7.539933089718757299e-09,8.119927942774046577e-09,8.699922795829335854e-09,9.279917648884625132e-09,9.859912501939914409e-09,1.043990735499520369e-08,1.101990220805049296e-08,1.159989706110578224e-08,1.217989191416107152e-08,1.275988676721636080e-08,1.333988162027165007e-08,1.391987647332693935e-08,1.449987132638222863e-08,1.507986617943751791e-08,1.565986103249280718e-08,1.623985588554809646e-08,1.681985073860338574e-08,1.739984559165867502e-08,1.797984044471396430e-08,1.855983529776925357e-08,1.913983015082454285e-08,1.971982500387983213e-08,2.029981985693512141e-08,2.087981470999041068e-08,2.145980956304569996e-08,2.203980441610098924e-08,2.261979926915627852e-08,2.319979412221156779e-08,2.377978897526685707e-08,2.435978382832214635e-08,2.493977868137743563e-08,2.551977353443272490e-08,2.609976838748801418e-08,2.667976324054330346e-08,2.725975809359859274e-08,2.783975294665388201e-08,2.841974779970917129e-08,2.899974265276446057e-08,2.957973750581974985e-08,3.015973235887504243e-08,3.073972721193033502e-08,3.131972206498562760e-08,3.189971691804092019e-08,3.247971177109621278e-08,3.305970662415150536e-08,3.363970147720679795e-08,3.421969633026209054e-08,3.479969118331738312e-08,3.537968603637267571e-08,3.595968088942796829e-08,3.653967574248326088e-08 +0.000000000000000000e+00,6.258751184609378150e-10,1.251750236921875630e-09,1.877625355382813342e-09,2.503500473843750846e-09,3.129375592304688351e-09,3.755250710765625856e-09,4.381125829226563361e-09,5.007000947687500865e-09,5.632876066148438370e-09,6.258751184609375875e-09,6.884626303070313380e-09,7.510501421531250057e-09,8.136376539992187562e-09,8.762251658453125067e-09,9.388126776914062572e-09,1.001400189537500008e-08,1.063987701383593758e-08,1.126575213229687509e-08,1.189162725075781259e-08,1.251750236921875010e-08,1.314337748767968760e-08,1.376925260614062511e-08,1.439512772460156261e-08,1.502100284306250011e-08,1.564687796152343762e-08,1.627275307998437512e-08,1.689862819844531263e-08,1.752450331690625013e-08,1.815037843536718764e-08,1.877625355382812514e-08,1.940212867228906265e-08,2.002800379075000015e-08,2.065387890921093766e-08,2.127975402767187516e-08,2.190562914613281267e-08,2.253150426459375017e-08,2.315737938305468768e-08,2.378325450151562518e-08,2.440912961997656269e-08,2.503500473843750019e-08,2.566087985689843770e-08,2.628675497535937520e-08,2.691263009382031271e-08,2.753850521228125021e-08,2.816438033074218771e-08,2.879025544920312522e-08,2.941613056766406272e-08,3.004200568612500023e-08,3.066788080458593773e-08,3.129375592304687524e-08,3.191963104150781274e-08,3.254550615996875025e-08,3.317138127842968775e-08,3.379725639689062526e-08,3.442313151535156276e-08,3.504900663381250027e-08,3.567488175227343777e-08,3.630075687073437528e-08,3.692663198919531278e-08,3.755250710765625029e-08,3.817838222611718779e-08,3.880425734457812530e-08,3.943013246303906280e-08 +0.000000000000000000e+00,-5.998855294586444366e-10,-1.199771058917288873e-09,-1.799656588375933310e-09,-2.399542117834577746e-09,-2.999427647293222183e-09,-3.599313176751866619e-09,-4.199198706210510642e-09,-4.799084235669154665e-09,-5.398969765127798688e-09,-5.998855294586442711e-09,-6.598740824045086734e-09,-7.198626353503730757e-09,-7.798511882962374780e-09,-8.398397412421017976e-09,-8.998282941879661172e-09,-9.598168471338304368e-09,-1.019805400079694756e-08,-1.079793953025559076e-08,-1.139782505971423396e-08,-1.199771058917287715e-08,-1.259759611863152035e-08,-1.319748164809016354e-08,-1.379736717754880674e-08,-1.439725270700744993e-08,-1.499713823646609148e-08,-1.559702376592473302e-08,-1.619690929538337456e-08,-1.679679482484201610e-08,-1.739668035430065764e-08,-1.799656588375929918e-08,-1.859645141321794072e-08,-1.919633694267658227e-08,-1.979622247213522381e-08,-2.039610800159386535e-08,-2.099599353105250689e-08,-2.159587906051114843e-08,-2.219576458996978997e-08,-2.279565011942843151e-08,-2.339553564888707306e-08,-2.399542117834571460e-08,-2.459530670780435614e-08,-2.519519223726299768e-08,-2.579507776672163922e-08,-2.639496329618028076e-08,-2.699484882563892230e-08,-2.759473435509756385e-08,-2.819461988455620539e-08,-2.879450541401484693e-08,-2.939439094347348847e-08,-2.999427647293213001e-08,-3.059416200239077155e-08,-3.119404753184941309e-08,-3.179393306130805464e-08,-3.239381859076669618e-08,-3.299370412022533772e-08,-3.359358964968397926e-08,-3.419347517914262080e-08,-3.479336070860126234e-08,-3.539324623805990388e-08,-3.599313176751854543e-08,-3.659301729697718697e-08,-3.719290282643582851e-08,-3.779278835589447005e-08 +0.000000000000000000e+00,-5.799948531579512838e-10,-1.159989706315902568e-09,-1.739984559473853851e-09,-2.319979412631805135e-09,-2.899974265789756626e-09,-3.479969118947708116e-09,-4.059963972105659607e-09,-4.639958825263611097e-09,-5.219953678421562588e-09,-5.799948531579514078e-09,-6.379943384737465569e-09,-6.959938237895417059e-09,-7.539933091053368550e-09,-8.119927944211319213e-09,-8.699922797369269877e-09,-9.279917650527220540e-09,-9.859912503685171203e-09,-1.043990735684312187e-08,-1.101990221000107253e-08,-1.159989706315902319e-08,-1.217989191631697386e-08,-1.275988676947492452e-08,-1.333988162263287518e-08,-1.391987647579082585e-08,-1.449987132894877651e-08,-1.507986618210672717e-08,-1.565986103526467618e-08,-1.623985588842262519e-08,-1.681985074158057420e-08,-1.739984559473852321e-08,-1.797984044789647222e-08,-1.855983530105442123e-08,-1.913983015421237024e-08,-1.971982500737031925e-08,-2.029981986052826825e-08,-2.087981471368621726e-08,-2.145980956684416627e-08,-2.203980442000211528e-08,-2.261979927316006429e-08,-2.319979412631801330e-08,-2.377978897947596231e-08,-2.435978383263391132e-08,-2.493977868579186033e-08,-2.551977353894980934e-08,-2.609976839210775834e-08,-2.667976324526570735e-08,-2.725975809842365636e-08,-2.783975295158160537e-08,-2.841974780473955438e-08,-2.899974265789750339e-08,-2.957973751105545240e-08,-3.015973236421340141e-08,-3.073972721737135042e-08,-3.131972207052929943e-08,-3.189971692368724843e-08,-3.247971177684519744e-08,-3.305970663000314645e-08,-3.363970148316109546e-08,-3.421969633631904447e-08,-3.479969118947699348e-08,-3.537968604263494249e-08,-3.595968089579289150e-08,-3.653967574895084051e-08 +0.000000000000000000e+00,-6.258751185692260969e-10,-1.251750237138452194e-09,-1.877625355707678187e-09,-2.503500474276903974e-09,-3.129375592846129761e-09,-3.755250711415355547e-09,-4.381125829984580921e-09,-5.007000948553806294e-09,-5.632876067123031667e-09,-6.258751185692257040e-09,-6.884626304261482413e-09,-7.510501422830707786e-09,-8.136376541399933159e-09,-8.762251659969158533e-09,-9.388126778538383906e-09,-1.001400189710760928e-08,-1.063987701567683465e-08,-1.126575213424606003e-08,-1.189162725281528540e-08,-1.251750237138451077e-08,-1.314337748995373614e-08,-1.376925260852296152e-08,-1.439512772709218689e-08,-1.502100284566141226e-08,-1.564687796423063764e-08,-1.627275308279986301e-08,-1.689862820136908838e-08,-1.752450331993831376e-08,-1.815037843850753913e-08,-1.877625355707676450e-08,-1.940212867564598988e-08,-2.002800379421521525e-08,-2.065387891278444062e-08,-2.127975403135366600e-08,-2.190562914992289137e-08,-2.253150426849211674e-08,-2.315737938706134211e-08,-2.378325450563056749e-08,-2.440912962419979286e-08,-2.503500474276901823e-08,-2.566087986133824361e-08,-2.628675497990746898e-08,-2.691263009847669435e-08,-2.753850521704591973e-08,-2.816438033561514510e-08,-2.879025545418437047e-08,-2.941613057275359585e-08,-3.004200569132281791e-08,-3.066788080989204328e-08,-3.129375592846126866e-08,-3.191963104703049403e-08,-3.254550616559971940e-08,-3.317138128416894478e-08,-3.379725640273817015e-08,-3.442313152130739552e-08,-3.504900663987662090e-08,-3.567488175844584627e-08,-3.630075687701507164e-08,-3.692663199558429701e-08,-3.755250711415352239e-08,-3.817838223272274776e-08,-3.880425735129197313e-08,-3.943013246986119851e-08 +0.000000000000000000e+00,6.305843339778470074e-10,1.261168667955694015e-09,1.891753001933540815e-09,2.522337335911387616e-09,3.152921669889234416e-09,3.783506003867081631e-09,4.414090337844928845e-09,5.044674671822776059e-09,5.675259005800623273e-09,6.305843339778470487e-09,6.936427673756317701e-09,7.567012007734164915e-09,8.197596341712012130e-09,8.828180675689859344e-09,9.458765009667706558e-09,1.008934934364555377e-08,1.071993367762340099e-08,1.135051801160124820e-08,1.198110234557909541e-08,1.261168667955694263e-08,1.324227101353478984e-08,1.387285534751263706e-08,1.450343968149048427e-08,1.513402401546833314e-08,1.576460834944618201e-08,1.639519268342403088e-08,1.702577701740187975e-08,1.765636135137972861e-08,1.828694568535757748e-08,1.891753001933542635e-08,1.954811435331327522e-08,2.017869868729112409e-08,2.080928302126897296e-08,2.143986735524682182e-08,2.207045168922467069e-08,2.270103602320251956e-08,2.333162035718036843e-08,2.396220469115821730e-08,2.459278902513606617e-08,2.522337335911391504e-08,2.585395769309176390e-08,2.648454202706961277e-08,2.711512636104746164e-08,2.774571069502531051e-08,2.837629502900315938e-08,2.900687936298100825e-08,2.963746369695885712e-08,3.026804803093670598e-08,3.089863236491455816e-08,3.152921669889241034e-08,3.215980103287026252e-08,3.279038536684811469e-08,3.342096970082596687e-08,3.405155403480381905e-08,3.468213836878167122e-08,3.531272270275952340e-08,3.594330703673737558e-08,3.657389137071522776e-08,3.720447570469307993e-08,3.783506003867093211e-08,3.846564437264878429e-08,3.909622870662663647e-08,3.972681304060448864e-08 +0.000000000000000000e+00,6.150123449033508027e-10,1.230024689806701605e-09,1.845037034710052305e-09,2.460049379613402797e-09,3.075061724516753290e-09,3.690074069420103782e-09,4.305086414323454275e-09,4.920098759226804767e-09,5.535111104130155260e-09,6.150123449033505752e-09,6.765135793936856245e-09,7.380148138840206737e-09,7.995160483743558057e-09,8.610172828646910204e-09,9.225185173550262351e-09,9.840197518453614498e-09,1.045520986335696664e-08,1.107022220826031879e-08,1.168523455316367094e-08,1.230024689806702309e-08,1.291525924297037523e-08,1.353027158787372738e-08,1.414528393277707953e-08,1.476029627768043167e-08,1.537530862258378382e-08,1.599032096748713597e-08,1.660533331239048811e-08,1.722034565729384026e-08,1.783535800219719241e-08,1.845037034710054455e-08,1.906538269200389670e-08,1.968039503690724885e-08,2.029540738181060099e-08,2.091041972671395314e-08,2.152543207161730529e-08,2.214044441652065744e-08,2.275545676142400958e-08,2.337046910632736173e-08,2.398548145123071388e-08,2.460049379613406602e-08,2.521550614103741817e-08,2.583051848594077032e-08,2.644553083084412246e-08,2.706054317574747461e-08,2.767555552065082676e-08,2.829056786555417890e-08,2.890558021045753105e-08,2.952059255536088320e-08,3.013560490026423535e-08,3.075061724516758749e-08,3.136562959007093964e-08,3.198064193497429179e-08,3.259565427987764393e-08,3.321066662478099608e-08,3.382567896968434823e-08,3.444069131458770037e-08,3.505570365949105252e-08,3.567071600439440467e-08,3.628572834929775681e-08,3.690074069420110896e-08,3.751575303910446111e-08,3.813076538400781325e-08,3.874577772891116540e-08 +0.000000000000000000e+00,6.521492982000865762e-10,1.304298596400173152e-09,1.956447894600259625e-09,2.608597192800345891e-09,3.260746491000432157e-09,3.912895789200518424e-09,4.565045087400604276e-09,5.217194385600690128e-09,5.869343683800775981e-09,6.521492982000861833e-09,7.173642280200947686e-09,7.825791578401033538e-09,8.477940876601119391e-09,9.130090174801205243e-09,9.782239473001291096e-09,1.043438877120137695e-08,1.108653806940146280e-08,1.173868736760154865e-08,1.239083666580163451e-08,1.304298596400172036e-08,1.369513526220180621e-08,1.434728456040189206e-08,1.499943385860197792e-08,1.565158315680206377e-08,1.630373245500214962e-08,1.695588175320223547e-08,1.760803105140232133e-08,1.826018034960240718e-08,1.891232964780249303e-08,1.956447894600257888e-08,2.021662824420266474e-08,2.086877754240275059e-08,2.152092684060283644e-08,2.217307613880292229e-08,2.282522543700300815e-08,2.347737473520309400e-08,2.412952403340317985e-08,2.478167333160326570e-08,2.543382262980335155e-08,2.608597192800343741e-08,2.673812122620352326e-08,2.739027052440360911e-08,2.804241982260369496e-08,2.869456912080378082e-08,2.934671841900386667e-08,2.999886771720395583e-08,3.065101701540404499e-08,3.130316631360413415e-08,3.195531561180422331e-08,3.260746491000431248e-08,3.325961420820440164e-08,3.391176350640449080e-08,3.456391280460457996e-08,3.521606210280466912e-08,3.586821140100475828e-08,3.652036069920484744e-08,3.717250999740493660e-08,3.782465929560502577e-08,3.847680859380511493e-08,3.912895789200520409e-08,3.978110719020529325e-08,4.043325648840538241e-08,4.108540578660547157e-08 +0.000000000000000000e+00,-6.305843340586096136e-10,-1.261168668117219227e-09,-1.891753002175828634e-09,-2.522337336234438041e-09,-3.152921670293047448e-09,-3.783506004351657268e-09,-4.414090338410267089e-09,-5.044674672468876909e-09,-5.675259006527486730e-09,-6.305843340586096550e-09,-6.936427674644706370e-09,-7.567012008703316191e-09,-8.197596342761926011e-09,-8.828180676820535832e-09,-9.458765010879145652e-09,-1.008934934493775547e-08,-1.071993367899636529e-08,-1.135051801305497511e-08,-1.198110234711358493e-08,-1.261168668117219475e-08,-1.324227101523080457e-08,-1.387285534928941440e-08,-1.450343968334802422e-08,-1.513402401740663569e-08,-1.576460835146524717e-08,-1.639519268552385864e-08,-1.702577701958247011e-08,-1.765636135364108159e-08,-1.828694568769969306e-08,-1.891753002175830454e-08,-1.954811435581691601e-08,-2.017869868987552749e-08,-2.080928302393413896e-08,-2.143986735799275044e-08,-2.207045169205136191e-08,-2.270103602610997339e-08,-2.333162036016858486e-08,-2.396220469422719634e-08,-2.459278902828580781e-08,-2.522337336234441929e-08,-2.585395769640303076e-08,-2.648454203046164224e-08,-2.711512636452025371e-08,-2.774571069857886519e-08,-2.837629503263747666e-08,-2.900687936669608814e-08,-2.963746370075469961e-08,-3.026804803481331109e-08,-3.089863236887192256e-08,-3.152921670293053404e-08,-3.215980103698914551e-08,-3.279038537104775698e-08,-3.342096970510636846e-08,-3.405155403916497993e-08,-3.468213837322359141e-08,-3.531272270728220288e-08,-3.594330704134081436e-08,-3.657389137539942583e-08,-3.720447570945803731e-08,-3.783506004351664878e-08,-3.846564437757526026e-08,-3.909622871163387173e-08,-3.972681304569248321e-08 +0.000000000000000000e+00,-6.150123449919326439e-10,-1.230024689983865288e-09,-1.845037034975797932e-09,-2.460049379967730576e-09,-3.075061724959663013e-09,-3.690074069951595450e-09,-4.305086414943527887e-09,-4.920098759935460324e-09,-5.535111104927392761e-09,-6.150123449919325199e-09,-6.765135794911257636e-09,-7.380148139903190073e-09,-7.995160484895122510e-09,-8.610172829887055774e-09,-9.225185174878989039e-09,-9.840197519870922303e-09,-1.045520986486285557e-08,-1.107022220985478883e-08,-1.168523455484672210e-08,-1.230024689983865536e-08,-1.291525924483058862e-08,-1.353027158982252189e-08,-1.414528393481445515e-08,-1.476029627980638842e-08,-1.537530862479832168e-08,-1.599032096979025495e-08,-1.660533331478218821e-08,-1.722034565977412147e-08,-1.783535800476605474e-08,-1.845037034975798800e-08,-1.906538269474992127e-08,-1.968039503974185453e-08,-2.029540738473378780e-08,-2.091041972972572106e-08,-2.152543207471765433e-08,-2.214044441970958759e-08,-2.275545676470152085e-08,-2.337046910969345412e-08,-2.398548145468538738e-08,-2.460049379967732065e-08,-2.521550614466925391e-08,-2.583051848966118718e-08,-2.644553083465312044e-08,-2.706054317964505370e-08,-2.767555552463698697e-08,-2.829056786962892023e-08,-2.890558021462085350e-08,-2.952059255961278676e-08,-3.013560490460472333e-08,-3.075061724959666322e-08,-3.136562959458860310e-08,-3.198064193958054298e-08,-3.259565428457248286e-08,-3.321066662956442274e-08,-3.382567897455636262e-08,-3.444069131954830251e-08,-3.505570366454024239e-08,-3.567071600953218227e-08,-3.628572835452412215e-08,-3.690074069951606203e-08,-3.751575304450800192e-08,-3.813076538949994180e-08,-3.874577773449188168e-08 +0.000000000000000000e+00,-6.521492982905386728e-10,-1.304298596581077346e-09,-1.956447894871615812e-09,-2.608597193162154278e-09,-3.260746491452692744e-09,-3.912895789743231623e-09,-4.565045088033770503e-09,-5.217194386324309383e-09,-5.869343684614848262e-09,-6.521492982905387142e-09,-7.173642281195926022e-09,-7.825791579486464901e-09,-8.477940877777002954e-09,-9.130090176067541006e-09,-9.782239474358079059e-09,-1.043438877264861711e-08,-1.108653807093915516e-08,-1.173868736922969322e-08,-1.239083666752023127e-08,-1.304298596581076932e-08,-1.369513526410130737e-08,-1.434728456239184543e-08,-1.499943386068238348e-08,-1.565158315897291988e-08,-1.630373245726345627e-08,-1.695588175555399267e-08,-1.760803105384452907e-08,-1.826018035213506547e-08,-1.891232965042560187e-08,-1.956447894871613826e-08,-2.021662824700667466e-08,-2.086877754529721106e-08,-2.152092684358774746e-08,-2.217307614187828386e-08,-2.282522544016882026e-08,-2.347737473845935665e-08,-2.412952403674989305e-08,-2.478167333504042945e-08,-2.543382263333096585e-08,-2.608597193162150225e-08,-2.673812122991203864e-08,-2.739027052820257504e-08,-2.804241982649311144e-08,-2.869456912478364784e-08,-2.934671842307418424e-08,-2.999886772136472063e-08,-3.065101701965525703e-08,-3.130316631794579343e-08,-3.195531561623632983e-08,-3.260746491452686623e-08,-3.325961421281740262e-08,-3.391176351110793902e-08,-3.456391280939847542e-08,-3.521606210768901182e-08,-3.586821140597954822e-08,-3.652036070427008461e-08,-3.717251000256062101e-08,-3.782465930085115741e-08,-3.847680859914169381e-08,-3.912895789743223021e-08,-3.978110719572276661e-08,-4.043325649401330300e-08,-4.108540579230383940e-08 +0.000000000000000000e+00,6.568338976745738181e-10,1.313667795349147636e-09,1.970501693023721558e-09,2.627335590698295686e-09,3.284169488372869814e-09,3.941003386047443943e-09,4.597837283722018071e-09,5.254671181396592199e-09,5.911505079071166328e-09,6.568338976745740456e-09,7.225172874420314584e-09,7.882006772094889540e-09,8.538840669769465322e-09,9.195674567444041105e-09,9.852508465118616888e-09,1.050934236279319267e-08,1.116617626046776845e-08,1.182301015814234424e-08,1.247984405581692002e-08,1.313667795349149580e-08,1.379351185116607158e-08,1.445034574884064737e-08,1.510717964651522315e-08,1.576401354418979893e-08,1.642084744186437471e-08,1.707768133953895050e-08,1.773451523721352628e-08,1.839134913488810206e-08,1.904818303256267785e-08,1.970501693023725363e-08,2.036185082791182941e-08,2.101868472558640519e-08,2.167551862326098098e-08,2.233235252093555676e-08,2.298918641861013254e-08,2.364602031628470832e-08,2.430285421395928411e-08,2.495968811163385989e-08,2.561652200930843567e-08,2.627335590698301145e-08,2.693018980465758724e-08,2.758702370233216302e-08,2.824385760000673880e-08,2.890069149768131459e-08,2.955752539535589037e-08,3.021435929303046615e-08,3.087119319070504524e-08,3.152802708837962433e-08,3.218486098605420343e-08,3.284169488372878252e-08,3.349852878140336161e-08,3.415536267907794070e-08,3.481219657675251979e-08,3.546903047442709888e-08,3.612586437210167797e-08,3.678269826977625706e-08,3.743953216745083616e-08,3.809636606512541525e-08,3.875319996279999434e-08,3.941003386047457343e-08,4.006686775814915252e-08,4.072370165582373161e-08,4.138053555349831070e-08 +0.000000000000000000e+00,6.435975191102968850e-10,1.287195038220593770e-09,1.930792557330890758e-09,2.574390076441187953e-09,3.217987595551485149e-09,3.861585114661782344e-09,4.505182633772079539e-09,5.148780152882376734e-09,5.792377671992673929e-09,6.435975191102971124e-09,7.079572710213268320e-09,7.723170229323566342e-09,8.366767748433865191e-09,9.010365267544164041e-09,9.653962786654462890e-09,1.029756030576476174e-08,1.094115782487506059e-08,1.158475534398535944e-08,1.222835286309565829e-08,1.287195038220595714e-08,1.351554790131625599e-08,1.415914542042655484e-08,1.480274293953685369e-08,1.544634045864715254e-08,1.608993797775745139e-08,1.673353549686775024e-08,1.737713301597804908e-08,1.802073053508834793e-08,1.866432805419864678e-08,1.930792557330894563e-08,1.995152309241924448e-08,2.059512061152954333e-08,2.123871813063984218e-08,2.188231564975014103e-08,2.252591316886043988e-08,2.316951068797073873e-08,2.381310820708103758e-08,2.445670572619133643e-08,2.510030324530163528e-08,2.574390076441193413e-08,2.638749828352223298e-08,2.703109580263253183e-08,2.767469332174283068e-08,2.831829084085312953e-08,2.896188835996342838e-08,2.960548587907372723e-08,3.024908339818402607e-08,3.089268091729432492e-08,3.153627843640462377e-08,3.217987595551492262e-08,3.282347347462522147e-08,3.346707099373552032e-08,3.411066851284581917e-08,3.475426603195611802e-08,3.539786355106641687e-08,3.604146107017671572e-08,3.668505858928701457e-08,3.732865610839731342e-08,3.797225362750761227e-08,3.861585114661791112e-08,3.925944866572820997e-08,3.990304618483850882e-08,4.054664370394880767e-08 +0.000000000000000000e+00,6.764254420305132997e-10,1.352850884061026599e-09,2.029276326091540002e-09,2.705701768122053612e-09,3.382127210152567222e-09,4.058552652183080832e-09,4.734978094213594028e-09,5.411403536244107225e-09,6.087828978274620421e-09,6.764254420305133617e-09,7.440679862335646814e-09,8.117105304366160010e-09,8.793530746396673206e-09,9.469956188427186402e-09,1.014638163045769960e-08,1.082280707248821279e-08,1.149923251451872599e-08,1.217565795654923919e-08,1.285208339857975238e-08,1.352850884061026558e-08,1.420493428264077878e-08,1.488135972467129197e-08,1.555778516670180517e-08,1.623421060873231671e-08,1.691063605076282825e-08,1.758706149279333979e-08,1.826348693482385134e-08,1.893991237685436288e-08,1.961633781888487442e-08,2.029276326091538596e-08,2.096918870294589750e-08,2.164561414497640905e-08,2.232203958700692059e-08,2.299846502903743213e-08,2.367489047106794367e-08,2.435131591309845521e-08,2.502774135512896676e-08,2.570416679715947830e-08,2.638059223918998984e-08,2.705701768122050138e-08,2.773344312325101292e-08,2.840986856528152447e-08,2.908629400731203601e-08,2.976271944934254755e-08,3.043914489137306240e-08,3.111557033340357725e-08,3.179199577543409210e-08,3.246842121746460695e-08,3.314484665949512180e-08,3.382127210152563665e-08,3.449769754355615150e-08,3.517412298558666635e-08,3.585054842761718121e-08,3.652697386964769606e-08,3.720339931167821091e-08,3.787982475370872576e-08,3.855625019573924061e-08,3.923267563776975546e-08,3.990910107980027031e-08,4.058552652183078516e-08,4.126195196386130001e-08,4.193837740589181486e-08,4.261480284792232971e-08 +0.000000000000000000e+00,-6.568338977384976121e-10,-1.313667795476995224e-09,-1.970501693215492629e-09,-2.627335590953990035e-09,-3.284169488692487440e-09,-3.941003386430985259e-09,-4.597837284169483078e-09,-5.254671181907980897e-09,-5.911505079646478716e-09,-6.568338977384976534e-09,-7.225172875123474353e-09,-7.882006772861972172e-09,-8.538840670600470818e-09,-9.195674568338969464e-09,-9.852508466077468110e-09,-1.050934236381596676e-08,-1.116617626155446540e-08,-1.182301015929296405e-08,-1.247984405703146269e-08,-1.313667795476996134e-08,-1.379351185250845999e-08,-1.445034575024695863e-08,-1.510717964798545728e-08,-1.576401354572395427e-08,-1.642084744346245126e-08,-1.707768134120094825e-08,-1.773451523893944525e-08,-1.839134913667794224e-08,-1.904818303441643923e-08,-1.970501693215493622e-08,-2.036185082989343321e-08,-2.101868472763193020e-08,-2.167551862537042720e-08,-2.233235252310892419e-08,-2.298918642084742118e-08,-2.364602031858591817e-08,-2.430285421632441516e-08,-2.495968811406291215e-08,-2.561652201180140915e-08,-2.627335590953990614e-08,-2.693018980727840313e-08,-2.758702370501690012e-08,-2.824385760275539711e-08,-2.890069150049389410e-08,-2.955752539823239110e-08,-3.021435929597088809e-08,-3.087119319370938508e-08,-3.152802709144788207e-08,-3.218486098918637906e-08,-3.284169488692487605e-08,-3.349852878466337305e-08,-3.415536268240187004e-08,-3.481219658014036703e-08,-3.546903047787886402e-08,-3.612586437561736101e-08,-3.678269827335585800e-08,-3.743953217109435500e-08,-3.809636606883285199e-08,-3.875319996657134898e-08,-3.941003386430984597e-08,-4.006686776204834296e-08,-4.072370165978683995e-08,-4.138053555752533695e-08 +0.000000000000000000e+00,-6.435975191825519386e-10,-1.287195038365103877e-09,-1.930792557547655919e-09,-2.574390076730208168e-09,-3.217987595912760417e-09,-3.861585115095312666e-09,-4.505182634277864915e-09,-5.148780153460417164e-09,-5.792377672642969412e-09,-6.435975191825521661e-09,-7.079572711008073910e-09,-7.723170230190626986e-09,-8.366767749373180062e-09,-9.010365268555733138e-09,-9.653962787738286214e-09,-1.029756030692083929e-08,-1.094115782610339237e-08,-1.158475534528594544e-08,-1.222835286446849852e-08,-1.287195038365105159e-08,-1.351554790283360467e-08,-1.415914542201615775e-08,-1.480274294119871082e-08,-1.544634046038126390e-08,-1.608993797956381532e-08,-1.673353549874636674e-08,-1.737713301792891816e-08,-1.802073053711146959e-08,-1.866432805629402101e-08,-1.930792557547657243e-08,-1.995152309465912385e-08,-2.059512061384167527e-08,-2.123871813302422669e-08,-2.188231565220677811e-08,-2.252591317138932954e-08,-2.316951069057188096e-08,-2.381310820975443238e-08,-2.445670572893698380e-08,-2.510030324811953522e-08,-2.574390076730208664e-08,-2.638749828648463807e-08,-2.703109580566718949e-08,-2.767469332484974091e-08,-2.831829084403229233e-08,-2.896188836321484375e-08,-2.960548588239739517e-08,-3.024908340157994660e-08,-3.089268092076249471e-08,-3.153627843994504282e-08,-3.217987595912759094e-08,-3.282347347831013905e-08,-3.346707099749268716e-08,-3.411066851667523527e-08,-3.475426603585778339e-08,-3.539786355504033150e-08,-3.604146107422287961e-08,-3.668505859340542773e-08,-3.732865611258797584e-08,-3.797225363177052395e-08,-3.861585115095307206e-08,-3.925944867013562018e-08,-3.990304618931816829e-08,-4.054664370850071640e-08 +0.000000000000000000e+00,-6.764254421021664761e-10,-1.352850884204332952e-09,-2.029276326306499428e-09,-2.705701768408665904e-09,-3.382127210510832380e-09,-4.058552652612998856e-09,-4.734978094715164919e-09,-5.411403536817330981e-09,-6.087828978919497044e-09,-6.764254421021663106e-09,-7.440679863123829169e-09,-8.117105305225996059e-09,-8.793530747328162948e-09,-9.469956189430329838e-09,-1.014638163153249673e-08,-1.082280707363466362e-08,-1.149923251573683051e-08,-1.217565795783899740e-08,-1.285208339994116429e-08,-1.352850884204333118e-08,-1.420493428414549807e-08,-1.488135972624766496e-08,-1.555778516834983019e-08,-1.623421061045199543e-08,-1.691063605255416066e-08,-1.758706149465632590e-08,-1.826348693675849113e-08,-1.893991237886065637e-08,-1.961633782096282160e-08,-2.029276326306498684e-08,-2.096918870516715207e-08,-2.164561414726931731e-08,-2.232203958937148254e-08,-2.299846503147364778e-08,-2.367489047357581301e-08,-2.435131591567797825e-08,-2.502774135778014348e-08,-2.570416679988230872e-08,-2.638059224198447396e-08,-2.705701768408663919e-08,-2.773344312618880443e-08,-2.840986856829096966e-08,-2.908629401039313490e-08,-2.976271945249530013e-08,-3.043914489459746537e-08,-3.111557033669963391e-08,-3.179199577880180246e-08,-3.246842122090397100e-08,-3.314484666300613954e-08,-3.382127210510830809e-08,-3.449769754721047663e-08,-3.517412298931264518e-08,-3.585054843141481372e-08,-3.652697387351698226e-08,-3.720339931561915081e-08,-3.787982475772131935e-08,-3.855625019982348790e-08,-3.923267564192565644e-08,-3.990910108402782498e-08,-4.058552652612999353e-08,-4.126195196823216207e-08,-4.193837741033433062e-08,-4.261480285243649916e-08 +0.000000000000000000e+00,6.830910880926513352e-10,1.366182176185302670e-09,2.049273264277953902e-09,2.732364352370604927e-09,3.415455440463255952e-09,4.098546528555906977e-09,4.781637616648558002e-09,5.464728704741209027e-09,6.147819792833860052e-09,6.830910880926511077e-09,7.514001969019162102e-09,8.197093057111812300e-09,8.880184145204462498e-09,9.563275233297112696e-09,1.024636632138976289e-08,1.092945740948241309e-08,1.161254849757506329e-08,1.229563958566771349e-08,1.297873067376036368e-08,1.366182176185301388e-08,1.434491284994566408e-08,1.502800393803831428e-08,1.571109502613096448e-08,1.639418611422361467e-08,1.707727720231626487e-08,1.776036829040891507e-08,1.844345937850156527e-08,1.912655046659421547e-08,1.980964155468686566e-08,2.049273264277951586e-08,2.117582373087216606e-08,2.185891481896481626e-08,2.254200590705746645e-08,2.322509699515011665e-08,2.390818808324276685e-08,2.459127917133541705e-08,2.527437025942806725e-08,2.595746134752071744e-08,2.664055243561336764e-08,2.732364352370601784e-08,2.800673461179866804e-08,2.868982569989131823e-08,2.937291678798396843e-08,3.005600787607662194e-08,3.073909896416927214e-08,3.142219005226192233e-08,3.210528114035457253e-08,3.278837222844722273e-08,3.347146331653987293e-08,3.415455440463252313e-08,3.483764549272517332e-08,3.552073658081782352e-08,3.620382766891047372e-08,3.688691875700312392e-08,3.757000984509577411e-08,3.825310093318842431e-08,3.893619202128107451e-08,3.961928310937372471e-08,4.030237419746637491e-08,4.098546528555902510e-08,4.166855637365167530e-08,4.235164746174432550e-08,4.303473854983697570e-08 +0.000000000000000000e+00,6.701062006584282231e-10,1.340212401316856446e-09,2.010318601975284669e-09,2.680424802633712893e-09,3.350531003292141116e-09,4.020637203950569339e-09,4.690743404608997148e-09,5.360849605267424958e-09,6.030955805925852768e-09,6.701062006584280577e-09,7.371168207242708387e-09,8.041274407901137023e-09,8.711380608559565660e-09,9.381486809217994297e-09,1.005159300987642293e-08,1.072169921053485157e-08,1.139180541119328021e-08,1.206191161185170884e-08,1.273201781251013748e-08,1.340212401316856612e-08,1.407223021382699475e-08,1.474233641448542339e-08,1.541244261514385203e-08,1.608254881580228066e-08,1.675265501646070930e-08,1.742276121711913794e-08,1.809286741777756657e-08,1.876297361843599521e-08,1.943307981909442385e-08,2.010318601975285248e-08,2.077329222041128112e-08,2.144339842106970976e-08,2.211350462172813839e-08,2.278361082238656703e-08,2.345371702304499567e-08,2.412382322370342431e-08,2.479392942436185294e-08,2.546403562502028158e-08,2.613414182567871022e-08,2.680424802633713885e-08,2.747435422699556749e-08,2.814446042765399613e-08,2.881456662831242476e-08,2.948467282897085340e-08,3.015477902962927873e-08,3.082488523028770406e-08,3.149499143094612938e-08,3.216509763160455471e-08,3.283520383226298004e-08,3.350531003292140537e-08,3.417541623357983070e-08,3.484552243423825602e-08,3.551562863489668135e-08,3.618573483555510668e-08,3.685584103621353201e-08,3.752594723687195734e-08,3.819605343753038266e-08,3.886615963818880799e-08,3.953626583884723332e-08,4.020637203950565865e-08,4.087647824016408398e-08,4.154658444082250930e-08,4.221669064148093463e-08 +0.000000000000000000e+00,6.989956050143850126e-10,1.397991210028770025e-09,2.096986815043155038e-09,2.795982420057540050e-09,3.494978025071925063e-09,4.193973630086310076e-09,4.892969235100695088e-09,5.591964840115080101e-09,6.290960445129465114e-09,6.989956050143850126e-09,7.688951655158234312e-09,8.387947260172618497e-09,9.086942865187002683e-09,9.785938470201386868e-09,1.048493407521577105e-08,1.118392968023015524e-08,1.188292528524453942e-08,1.258192089025892361e-08,1.328091649527330780e-08,1.397991210028769198e-08,1.467890770530207617e-08,1.537790331031646201e-08,1.607689891533084785e-08,1.677589452034523369e-08,1.747489012535961953e-08,1.817388573037400537e-08,1.887288133538839120e-08,1.957187694040277704e-08,2.027087254541716288e-08,2.096986815043154872e-08,2.166886375544593456e-08,2.236785936046032040e-08,2.306685496547470624e-08,2.376585057048909208e-08,2.446484617550347792e-08,2.516384178051786376e-08,2.586283738553224960e-08,2.656183299054663544e-08,2.726082859556102128e-08,2.795982420057540712e-08,2.865881980558979296e-08,2.935781541060417880e-08,3.005681101561856464e-08,3.075580662063295048e-08,3.145480222564733632e-08,3.215379783066172216e-08,3.285279343567610800e-08,3.355178904069049384e-08,3.425078464570487968e-08,3.494978025071926552e-08,3.564877585573365136e-08,3.634777146074803720e-08,3.704676706576242304e-08,3.774576267077680888e-08,3.844475827579119472e-08,3.914375388080558056e-08,3.984274948581996640e-08,4.054174509083435224e-08,4.124074069584873808e-08,4.193973630086312392e-08,4.263873190587750976e-08,4.333772751089189560e-08,4.403672311590628144e-08 +0.000000000000000000e+00,-6.830910881431567086e-10,-1.366182176286313417e-09,-2.049273264429470229e-09,-2.732364352572627248e-09,-3.415455440715784267e-09,-4.098546528858941286e-09,-4.781637617002098305e-09,-5.464728705145255324e-09,-6.147819793288412342e-09,-6.830910881431569361e-09,-7.514001969574726380e-09,-8.197093057717884226e-09,-8.880184145861042072e-09,-9.563275234004199918e-09,-1.024636632214735776e-08,-1.092945741029051561e-08,-1.161254849843367346e-08,-1.229563958657683130e-08,-1.297873067471998915e-08,-1.366182176286314699e-08,-1.434491285100630484e-08,-1.502800393914946269e-08,-1.571109502729262053e-08,-1.639418611543577838e-08,-1.707727720357893622e-08,-1.776036829172209407e-08,-1.844345937986525192e-08,-1.912655046800840976e-08,-1.980964155615156761e-08,-2.049273264429472545e-08,-2.117582373243788330e-08,-2.185891482058104115e-08,-2.254200590872419899e-08,-2.322509699686735684e-08,-2.390818808501051468e-08,-2.459127917315367253e-08,-2.527437026129683038e-08,-2.595746134943998822e-08,-2.664055243758314607e-08,-2.732364352572630391e-08,-2.800673461386946176e-08,-2.868982570201261961e-08,-2.937291679015577745e-08,-3.005600787829893199e-08,-3.073909896644208653e-08,-3.142219005458524106e-08,-3.210528114272839560e-08,-3.278837223087155014e-08,-3.347146331901470468e-08,-3.415455440715785921e-08,-3.483764549530101375e-08,-3.552073658344416829e-08,-3.620382767158732283e-08,-3.688691875973047736e-08,-3.757000984787363190e-08,-3.825310093601678644e-08,-3.893619202415994097e-08,-3.961928311230309551e-08,-4.030237420044625005e-08,-4.098546528858940459e-08,-4.166855637673255912e-08,-4.235164746487571366e-08,-4.303473855301886820e-08 +0.000000000000000000e+00,-6.701062007152142756e-10,-1.340212401430428551e-09,-2.010318602145642930e-09,-2.680424802860857516e-09,-3.350531003576072102e-09,-4.020637204291286688e-09,-4.690743405006501273e-09,-5.360849605721715859e-09,-6.030955806436930445e-09,-6.701062007152145031e-09,-7.371168207867359617e-09,-8.041274408582575029e-09,-8.711380609297791270e-09,-9.381486810013007510e-09,-1.005159301072822375e-08,-1.072169921144343999e-08,-1.139180541215865623e-08,-1.206191161287387247e-08,-1.273201781358908871e-08,-1.340212401430430495e-08,-1.407223021501952119e-08,-1.474233641573473743e-08,-1.541244261644995367e-08,-1.608254881716516991e-08,-1.675265501788038615e-08,-1.742276121859560239e-08,-1.809286741931081863e-08,-1.876297362002603487e-08,-1.943307982074125111e-08,-2.010318602145646735e-08,-2.077329222217168359e-08,-2.144339842288689983e-08,-2.211350462360211607e-08,-2.278361082431733231e-08,-2.345371702503254855e-08,-2.412382322574776479e-08,-2.479392942646298103e-08,-2.546403562717819727e-08,-2.613414182789341351e-08,-2.680424802860862975e-08,-2.747435422932384599e-08,-2.814446043003906223e-08,-2.881456663075427847e-08,-2.948467283146949471e-08,-3.015477903218471095e-08,-3.082488523289992719e-08,-3.149499143361514343e-08,-3.216509763433035968e-08,-3.283520383504557592e-08,-3.350531003576079216e-08,-3.417541623647600840e-08,-3.484552243719122464e-08,-3.551562863790644088e-08,-3.618573483862165712e-08,-3.685584103933687336e-08,-3.752594724005208960e-08,-3.819605344076730584e-08,-3.886615964148252208e-08,-3.953626584219773832e-08,-4.020637204291295456e-08,-4.087647824362817080e-08,-4.154658444434338704e-08,-4.221669064505860328e-08 +0.000000000000000000e+00,-6.989956050688325221e-10,-1.397991210137665044e-09,-2.096986815206497566e-09,-2.795982420275330088e-09,-3.494978025344162610e-09,-4.193973630412995132e-09,-4.892969235481827655e-09,-5.591964840550660177e-09,-6.290960445619492699e-09,-6.989956050688325221e-09,-7.688951655757157743e-09,-8.387947260825990265e-09,-9.086942865894822787e-09,-9.785938470963655309e-09,-1.048493407603248783e-08,-1.118392968110132035e-08,-1.188292528617015288e-08,-1.258192089123898540e-08,-1.328091649630781792e-08,-1.397991210137665044e-08,-1.467890770644548296e-08,-1.537790331151431549e-08,-1.607689891658314635e-08,-1.677589452165197722e-08,-1.747489012672080809e-08,-1.817388573178963896e-08,-1.887288133685846982e-08,-1.957187694192730069e-08,-2.027087254699613156e-08,-2.096986815206496243e-08,-2.166886375713379330e-08,-2.236785936220262416e-08,-2.306685496727145503e-08,-2.376585057234028590e-08,-2.446484617740911677e-08,-2.516384178247794763e-08,-2.586283738754677850e-08,-2.656183299261560937e-08,-2.726082859768444024e-08,-2.795982420275327110e-08,-2.865881980782210197e-08,-2.935781541289093284e-08,-3.005681101795976371e-08,-3.075580662302859788e-08,-3.145480222809743206e-08,-3.215379783316626624e-08,-3.285279343823510041e-08,-3.355178904330393459e-08,-3.425078464837276877e-08,-3.494978025344160294e-08,-3.564877585851043712e-08,-3.634777146357927130e-08,-3.704676706864810547e-08,-3.774576267371693965e-08,-3.844475827878577383e-08,-3.914375388385460800e-08,-3.984274948892344218e-08,-4.054174509399227635e-08,-4.124074069906111053e-08,-4.193973630412994471e-08,-4.263873190919877888e-08,-4.333772751426761306e-08,-4.403672311933644724e-08 +0.000000000000000000e+00,-1.350055994399844797e-11,-2.700111988799689593e-11,-4.050167983199534228e-11,-5.400223977599378540e-11,-6.750279971999222852e-11,-8.100335966399067164e-11,-9.450391960798911476e-11,-1.080044795519875579e-10,-1.215050394959859881e-10,-1.350055994399844312e-10,-1.485061593839828743e-10,-1.620067193279813174e-10,-1.755072792719797606e-10,-1.890078392159782037e-10,-2.025083991599766468e-10,-2.160089591039750899e-10,-2.295095190479735330e-10,-2.430100789919719762e-10,-2.565106389359704193e-10,-2.700111988799688624e-10,-2.835117588239673055e-10,-2.970123187679657486e-10,-3.105128787119641918e-10,-3.240134386559626349e-10,-3.375139985999610780e-10,-3.510145585439595211e-10,-3.645151184879579642e-10,-3.780156784319564074e-10,-3.915162383759548505e-10,-4.050167983199532936e-10,-4.185173582639517367e-10,-4.320179182079501798e-10,-4.455184781519486230e-10,-4.590190380959470661e-10,-4.725195980399455092e-10,-4.860201579839439523e-10,-4.995207179279423954e-10,-5.130212778719408386e-10,-5.265218378159392817e-10,-5.400223977599377248e-10,-5.535229577039361679e-10,-5.670235176479346110e-10,-5.805240775919330542e-10,-5.940246375359314973e-10,-6.075251974799299404e-10,-6.210257574239283835e-10,-6.345263173679268266e-10,-6.480268773119252698e-10,-6.615274372559237129e-10,-6.750279971999221560e-10,-6.885285571439205991e-10,-7.020291170879190422e-10,-7.155296770319174854e-10,-7.290302369759159285e-10,-7.425307969199143716e-10,-7.560313568639128147e-10,-7.695319168079112578e-10,-7.830324767519097010e-10,-7.965330366959081441e-10,-8.100335966399065872e-10,-8.235341565839050303e-10,-8.370347165279034734e-10,-8.505352764719019166e-10 +0.000000000000000000e+00,-6.751917395597683966e-10,-1.350383479119536793e-09,-2.025575218679305397e-09,-2.700766958239074000e-09,-3.375958697798842604e-09,-4.051150437358610793e-09,-4.726342176918378983e-09,-5.401533916478147173e-09,-6.076725656037915363e-09,-6.751917395597683553e-09,-7.427109135157451743e-09,-8.102300874717219932e-09,-8.777492614276988122e-09,-9.452684353836756312e-09,-1.012787609339652450e-08,-1.080306783295629269e-08,-1.147825957251606088e-08,-1.215345131207582907e-08,-1.282864305163559726e-08,-1.350383479119536545e-08,-1.417902653075513364e-08,-1.485421827031490183e-08,-1.552941000987466837e-08,-1.620460174943443656e-08,-1.687979348899420475e-08,-1.755498522855397294e-08,-1.823017696811374113e-08,-1.890536870767350932e-08,-1.958056044723327751e-08,-2.025575218679304570e-08,-2.093094392635281388e-08,-2.160613566591258207e-08,-2.228132740547235026e-08,-2.295651914503211845e-08,-2.363171088459188664e-08,-2.430690262415165483e-08,-2.498209436371142302e-08,-2.565728610327119121e-08,-2.633247784283095940e-08,-2.700766958239072759e-08,-2.768286132195049578e-08,-2.835805306151026397e-08,-2.903324480107003216e-08,-2.970843654062980035e-08,-3.038362828018956854e-08,-3.105882001974933673e-08,-3.173401175930910492e-08,-3.240920349886887311e-08,-3.308439523842864130e-08,-3.375958697798840949e-08,-3.443477871754817768e-08,-3.510997045710794587e-08,-3.578516219666771406e-08,-3.646035393622748225e-08,-3.713554567578725044e-08,-3.781073741534701863e-08,-3.848592915490678682e-08,-3.916112089446655501e-08,-3.983631263402632320e-08,-4.051150437358609139e-08,-4.118669611314585958e-08,-4.186188785270562777e-08,-4.253707959226539596e-08 +0.000000000000000000e+00,-7.219397065409497526e-20,-1.443879413081899505e-19,-2.165819119622849258e-19,-2.887758826163799010e-19,-3.609698532704749004e-19,-4.331638239245698997e-19,-5.053577945786648990e-19,-5.775517652327598984e-19,-6.497457358868548977e-19,-7.219397065409498971e-19,-7.941336771950448964e-19,-8.663276478491398957e-19,-9.385216185032347988e-19,-1.010715589157329606e-18,-1.082909559811424412e-18,-1.155103530465519219e-18,-1.227297501119614026e-18,-1.299491471773708832e-18,-1.371685442427803639e-18,-1.443879413081898446e-18,-1.516073383735993253e-18,-1.588267354390088059e-18,-1.660461325044182866e-18,-1.732655295698277673e-18,-1.804849266352372480e-18,-1.877043237006467286e-18,-1.949237207660562093e-18,-2.021431178314656900e-18,-2.093625148968751707e-18,-2.165819119622846513e-18,-2.238013090276941320e-18,-2.310207060931036127e-18,-2.382401031585130934e-18,-2.454595002239225740e-18,-2.526788972893320547e-18,-2.598982943547415354e-18,-2.671176914201510161e-18,-2.743370884855604967e-18,-2.815564855509699774e-18,-2.887758826163794581e-18,-2.959952796817889388e-18,-3.032146767471984194e-18,-3.104340738126079001e-18,-3.176534708780173808e-18,-3.248728679434268615e-18,-3.320922650088363421e-18,-3.393116620742458228e-18,-3.465310591396553035e-18,-3.537504562050647841e-18,-3.609698532704742648e-18,-3.681892503358837455e-18,-3.754086474012932262e-18,-3.826280444667027068e-18,-3.898474415321121875e-18,-3.970668385975216682e-18,-4.042862356629311489e-18,-4.115056327283406295e-18,-4.187250297937501102e-18,-4.259444268591595909e-18,-4.331638239245690716e-18,-4.403832209899785522e-18,-4.476026180553880329e-18,-4.548220151207975136e-18 +0.000000000000000000e+00,-2.209249574212274678e-10,-4.418499148424549356e-10,-6.627748722636823776e-10,-8.836998296849097678e-10,-1.104624787106137055e-09,-1.325549744527364342e-09,-1.546474701948591628e-09,-1.767399659369818915e-09,-1.988324616791046202e-09,-2.209249574212273282e-09,-2.430174531633500362e-09,-2.651099489054727442e-09,-2.872024446475954522e-09,-3.092949403897181602e-09,-3.313874361318408682e-09,-3.534799318739635763e-09,-3.755724276160862843e-09,-3.976649233582089923e-09,-4.197574191003317003e-09,-4.418499148424544083e-09,-4.639424105845771163e-09,-4.860349063266998243e-09,-5.081274020688225323e-09,-5.302198978109452403e-09,-5.523123935530679483e-09,-5.744048892951906563e-09,-5.964973850373133643e-09,-6.185898807794360723e-09,-6.406823765215587803e-09,-6.627748722636814883e-09,-6.848673680058041963e-09,-7.069598637479269044e-09,-7.290523594900496124e-09,-7.511448552321724031e-09,-7.732373509742951111e-09,-7.953298467164178191e-09,-8.174223424585405271e-09,-8.395148382006632351e-09,-8.616073339427859431e-09,-8.836998296849086511e-09,-9.057923254270313591e-09,-9.278848211691540671e-09,-9.499773169112767751e-09,-9.720698126533994831e-09,-9.941623083955221911e-09,-1.016254804137644899e-08,-1.038347299879767607e-08,-1.060439795621890315e-08,-1.082532291364013023e-08,-1.104624787106135731e-08,-1.126717282848258439e-08,-1.148809778590381147e-08,-1.170902274332503855e-08,-1.192994770074626563e-08,-1.215087265816749271e-08,-1.237179761558871979e-08,-1.259272257300994687e-08,-1.281364753043117395e-08,-1.303457248785240103e-08,-1.325549744527362811e-08,-1.347642240269485519e-08,-1.369734736011608227e-08,-1.391827231753730935e-08 +0.000000000000000000e+00,-5.454280487415296352e-10,-1.090856097483059270e-09,-1.636284146224589009e-09,-2.181712194966118954e-09,-2.727140243707648900e-09,-3.272568292449178845e-09,-3.817996341190708791e-09,-4.363424389932238736e-09,-4.908852438673768681e-09,-5.454280487415298627e-09,-5.999708536156828572e-09,-6.545136584898358517e-09,-7.090564633639888463e-09,-7.635992682381419235e-09,-8.181420731122950835e-09,-8.726848779864482435e-09,-9.272276828606014035e-09,-9.817704877347545634e-09,-1.036313292608907723e-08,-1.090856097483060883e-08,-1.145398902357214043e-08,-1.199941707231367203e-08,-1.254484512105520363e-08,-1.309027316979673523e-08,-1.363570121853826683e-08,-1.418112926727979843e-08,-1.472655731602133003e-08,-1.527198536476286163e-08,-1.581741341350439323e-08,-1.636284146224592483e-08,-1.690826951098745643e-08,-1.745369755972898803e-08,-1.799912560847051963e-08,-1.854455365721205123e-08,-1.908998170595358283e-08,-1.963540975469511443e-08,-2.018083780343664603e-08,-2.072626585217817763e-08,-2.127169390091970923e-08,-2.181712194966124083e-08,-2.236254999840277243e-08,-2.290797804714430403e-08,-2.345340609588583563e-08,-2.399883414462736723e-08,-2.454426219336889883e-08,-2.508969024211043043e-08,-2.563511829085196203e-08,-2.618054633959349363e-08,-2.672597438833502523e-08,-2.727140243707655683e-08,-2.781683048581808843e-08,-2.836225853455962003e-08,-2.890768658330115163e-08,-2.945311463204268323e-08,-2.999854268078421152e-08,-3.054397072952574312e-08,-3.108939877826727472e-08,-3.163482682700880632e-08,-3.218025487575033792e-08,-3.272568292449186952e-08,-3.327111097323340111e-08,-3.381653902197493271e-08,-3.436196707071646431e-08 +0.000000000000000000e+00,7.379124128614171375e-11,1.475824825722834275e-10,2.213737238584251283e-10,2.951649651445668033e-10,3.689562064307084783e-10,4.427474477168501532e-10,5.165386890029918799e-10,5.903299302891336066e-10,6.641211715752753333e-10,7.379124128614170599e-10,8.117036541475587866e-10,8.854948954337005133e-10,9.592861367198422399e-10,1.033077378005983967e-09,1.106868619292125693e-09,1.180659860578267420e-09,1.254451101864409147e-09,1.328242343150550873e-09,1.402033584436692600e-09,1.475824825722834327e-09,1.549616067008976053e-09,1.623407308295117780e-09,1.697198549581259507e-09,1.770989790867401233e-09,1.844781032153542960e-09,1.918572273439684480e-09,1.992363514725826000e-09,2.066154756011967520e-09,2.139945997298109040e-09,2.213737238584250559e-09,2.287528479870392079e-09,2.361319721156533599e-09,2.435110962442675119e-09,2.508902203728816639e-09,2.582693445014958159e-09,2.656484686301099679e-09,2.730275927587241199e-09,2.804067168873382718e-09,2.877858410159524238e-09,2.951649651445665758e-09,3.025440892731807278e-09,3.099232134017948798e-09,3.173023375304090318e-09,3.246814616590231838e-09,3.320605857876373358e-09,3.394397099162514877e-09,3.468188340448656397e-09,3.541979581734797917e-09,3.615770823020939437e-09,3.689562064307080957e-09,3.763353305593222063e-09,3.837144546879363170e-09,3.910935788165504276e-09,3.984727029451645382e-09,4.058518270737786488e-09,4.132309512023927595e-09,4.206100753310068701e-09,4.279891994596209807e-09,4.353683235882350914e-09,4.427474477168492020e-09,4.501265718454633126e-09,4.575056959740774232e-09,4.648848201026915339e-09 +0.000000000000000000e+00,-3.373506209683330382e-10,-6.747012419366660764e-10,-1.012051862904999218e-09,-1.349402483873332360e-09,-1.686753104841665501e-09,-2.024103725809998436e-09,-2.361454346778331371e-09,-2.698804967746664305e-09,-3.036155588714997240e-09,-3.373506209683330175e-09,-3.710856830651663110e-09,-4.048207451619996045e-09,-4.385558072588328979e-09,-4.722908693556661914e-09,-5.060259314524994849e-09,-5.397609935493327784e-09,-5.734960556461660718e-09,-6.072311177429993653e-09,-6.409661798398326588e-09,-6.747012419366659523e-09,-7.084363040334992458e-09,-7.421713661303325392e-09,-7.759064282271659154e-09,-8.096414903239993744e-09,-8.433765524208328333e-09,-8.771116145176662922e-09,-9.108466766144997511e-09,-9.445817387113332100e-09,-9.783168008081666689e-09,-1.012051862905000128e-08,-1.045786925001833587e-08,-1.079521987098667046e-08,-1.113257049195500505e-08,-1.146992111292333963e-08,-1.180727173389167422e-08,-1.214462235486000881e-08,-1.248197297582834340e-08,-1.281932359679667799e-08,-1.315667421776501258e-08,-1.349402483873334717e-08,-1.383137545970168176e-08,-1.416872608067001635e-08,-1.450607670163835094e-08,-1.484342732260668553e-08,-1.518077794357502012e-08,-1.551812856454335470e-08,-1.585547918551168929e-08,-1.619282980648002388e-08,-1.653018042744835847e-08,-1.686753104841669306e-08,-1.720488166938502765e-08,-1.754223229035336224e-08,-1.787958291132169683e-08,-1.821693353229003142e-08,-1.855428415325836601e-08,-1.889163477422670060e-08,-1.922898539519503519e-08,-1.956633601616336977e-08,-1.990368663713170436e-08,-2.024103725810003895e-08,-2.057838787906837354e-08,-2.091573850003670813e-08,-2.125308912100504272e-08 +0.000000000000000000e+00,-7.571051287269705804e-20,-1.514210257453941161e-19,-2.271315386180911862e-19,-3.028420514907882803e-19,-3.785525643634853745e-19,-4.542630772361824686e-19,-5.299735901088796109e-19,-6.056841029815767532e-19,-6.813946158542738955e-19,-7.571051287269710378e-19,-8.328156415996681801e-19,-9.085261544723653224e-19,-9.842366673450624647e-19,-1.059947180217759607e-18,-1.135657693090456749e-18,-1.211368205963153892e-18,-1.287078718835851034e-18,-1.362789231708548176e-18,-1.438499744581245318e-18,-1.514210257453942461e-18,-1.589920770326639603e-18,-1.665631283199336745e-18,-1.741341796072033888e-18,-1.817052308944731030e-18,-1.892762821817428172e-18,-1.968473334690125315e-18,-2.044183847562822457e-18,-2.119894360435519599e-18,-2.195604873308216741e-18,-2.271315386180913884e-18,-2.347025899053611026e-18,-2.422736411926308168e-18,-2.498446924799005311e-18,-2.574157437671702453e-18,-2.649867950544399595e-18,-2.725578463417096738e-18,-2.801288976289793880e-18,-2.876999489162491022e-18,-2.952710002035188164e-18,-3.028420514907885307e-18,-3.104131027780582449e-18,-3.179841540653279591e-18,-3.255552053525976734e-18,-3.331262566398673876e-18,-3.406973079271371018e-18,-3.482683592144067775e-18,-3.558394105016764533e-18,-3.634104617889461290e-18,-3.709815130762158047e-18,-3.785525643634854804e-18,-3.861236156507551561e-18,-3.936946669380248318e-18,-4.012657182252945075e-18,-4.088367695125641832e-18,-4.164078207998338589e-18,-4.239788720871035347e-18,-4.315499233743732104e-18,-4.391209746616428861e-18,-4.466920259489125618e-18,-4.542630772361822375e-18,-4.618341285234519132e-18,-4.694051798107215889e-18,-4.769762310979912646e-18 +0.000000000000000000e+00,1.350055981417795836e-11,2.700111962835591673e-11,4.050167944253387509e-11,5.400223925671183345e-11,6.750279907088978535e-11,8.100335888506773725e-11,9.450391869924568915e-11,1.080044785134236411e-10,1.215050383276015930e-10,1.350055981417795449e-10,1.485061579559574968e-10,1.620067177701354487e-10,1.755072775843134006e-10,1.890078373984913525e-10,2.025083972126693044e-10,2.160089570268472563e-10,2.295095168410252082e-10,2.430100766552031859e-10,2.565106364693811637e-10,2.700111962835591414e-10,2.835117560977371192e-10,2.970123159119150969e-10,3.105128757260930747e-10,3.240134355402710524e-10,3.375139953544490302e-10,3.510145551686270079e-10,3.645151149828049857e-10,3.780156747969829634e-10,3.915162346111609412e-10,4.050167944253389189e-10,4.185173542395168967e-10,4.320179140536948744e-10,4.455184738678728522e-10,4.590190336820508299e-10,4.725195934962287560e-10,4.860201533104066820e-10,4.995207131245846081e-10,5.130212729387625341e-10,5.265218327529404602e-10,5.400223925671183862e-10,5.535229523812963123e-10,5.670235121954742383e-10,5.805240720096521644e-10,5.940246318238300904e-10,6.075251916380080165e-10,6.210257514521859425e-10,6.345263112663638686e-10,6.480268710805417946e-10,6.615274308947197207e-10,6.750279907088976467e-10,6.885285505230755728e-10,7.020291103372534988e-10,7.155296701514314249e-10,7.290302299656093509e-10,7.425307897797872770e-10,7.560313495939652030e-10,7.695319094081431291e-10,7.830324692223210551e-10,7.965330290364989812e-10,8.100335888506769072e-10,8.235341486648548333e-10,8.370347084790327594e-10,8.505352682932106854e-10 +0.000000000000000000e+00,6.751917394153908449e-10,1.350383478830781690e-09,2.025575218246172535e-09,2.700766957661563380e-09,3.375958697076954225e-09,4.051150436492345070e-09,4.726342175907736328e-09,5.401533915323127587e-09,6.076725654738518845e-09,6.751917394153910104e-09,7.427109133569301362e-09,8.102300872984691794e-09,8.777492612400082225e-09,9.452684351815472656e-09,1.012787609123086309e-08,1.080306783064625352e-08,1.147825957006164395e-08,1.215345130947703438e-08,1.282864304889242481e-08,1.350383478830781524e-08,1.417902652772320568e-08,1.485421826713859611e-08,1.552941000655398819e-08,1.620460174596938028e-08,1.687979348538477236e-08,1.755498522480016445e-08,1.823017696421555654e-08,1.890536870363094862e-08,1.958056044304634071e-08,2.025575218246173279e-08,2.093094392187712488e-08,2.160613566129251696e-08,2.228132740070790905e-08,2.295651914012330114e-08,2.363171087953869322e-08,2.430690261895408531e-08,2.498209435836947739e-08,2.565728609778486948e-08,2.633247783720026156e-08,2.700766957661565365e-08,2.768286131603104574e-08,2.835805305544643782e-08,2.903324479486182991e-08,2.970843653427722199e-08,3.038362827369261408e-08,3.105882001310800286e-08,3.173401175252339163e-08,3.240920349193878041e-08,3.308439523135416919e-08,3.375958697076955796e-08,3.443477871018494674e-08,3.510997044960033552e-08,3.578516218901572429e-08,3.646035392843111307e-08,3.713554566784650185e-08,3.781073740726189063e-08,3.848592914667727940e-08,3.916112088609266818e-08,3.983631262550805696e-08,4.051150436492344573e-08,4.118669610433883451e-08,4.186188784375422329e-08,4.253707958316961206e-08 +0.000000000000000000e+00,3.373506208239150063e-10,6.747012416478300127e-10,1.012051862471744967e-09,1.349402483295659819e-09,1.686753104119574670e-09,2.024103724943489521e-09,2.361454345767404166e-09,2.698804966591318810e-09,3.036155587415233454e-09,3.373506208239148099e-09,3.710856829063062743e-09,4.048207449886977388e-09,4.385558070710892032e-09,4.722908691534806677e-09,5.060259312358721321e-09,5.397609933182635966e-09,5.734960554006550610e-09,6.072311174830465255e-09,6.409661795654379899e-09,6.747012416478294544e-09,7.084363037302209188e-09,7.421713658126123832e-09,7.759064278950039304e-09,8.096414899773954776e-09,8.433765520597870247e-09,8.771116141421785719e-09,9.108466762245701191e-09,9.445817383069616662e-09,9.783168003893532134e-09,1.012051862471744761e-08,1.045786924554136308e-08,1.079521986636527855e-08,1.113257048718919402e-08,1.146992110801310949e-08,1.180727172883702496e-08,1.214462234966094044e-08,1.248197297048485591e-08,1.281932359130877138e-08,1.315667421213268685e-08,1.349402483295660232e-08,1.383137545378051779e-08,1.416872607460443327e-08,1.450607669542834874e-08,1.484342731625226421e-08,1.518077793707617968e-08,1.551812855790009515e-08,1.585547917872401062e-08,1.619282979954792609e-08,1.653018042037184157e-08,1.686753104119575704e-08,1.720488166201967251e-08,1.754223228284358798e-08,1.787958290366750345e-08,1.821693352449141892e-08,1.855428414531533440e-08,1.889163476613924987e-08,1.922898538696316534e-08,1.956633600778708081e-08,1.990368662861099628e-08,2.024103724943491175e-08,2.057838787025882723e-08,2.091573849108274270e-08,2.125308911190665817e-08 +0.000000000000000000e+00,2.209249572845897676e-10,4.418499145691795351e-10,6.627748718537693027e-10,8.836998291383590703e-10,1.104624786422948734e-09,1.325549743707538399e-09,1.546474700992128063e-09,1.767399658276717727e-09,1.988324615561307391e-09,2.209249572845897055e-09,2.430174530130486719e-09,2.651099487415076384e-09,2.872024444699666048e-09,3.092949401984255712e-09,3.313874359268845376e-09,3.534799316553435040e-09,3.755724273838024704e-09,3.976649231122614782e-09,4.197574188407204860e-09,4.418499145691794938e-09,4.639424102976385015e-09,4.860349060260975093e-09,5.081274017545565171e-09,5.302198974830155249e-09,5.523123932114745326e-09,5.744048889399335404e-09,5.964973846683925482e-09,6.185898803968515560e-09,6.406823761253105638e-09,6.627748718537695715e-09,6.848673675822285793e-09,7.069598633106875871e-09,7.290523590391465949e-09,7.511448547676056026e-09,7.732373504960646104e-09,7.953298462245236182e-09,8.174223419529826260e-09,8.395148376814416337e-09,8.616073334099006415e-09,8.836998291383596493e-09,9.057923248668186571e-09,9.278848205952776648e-09,9.499773163237366726e-09,9.720698120521956804e-09,9.941623077806546882e-09,1.016254803509113696e-08,1.038347299237572704e-08,1.060439794966031711e-08,1.082532290694490719e-08,1.104624786422949727e-08,1.126717282151408735e-08,1.148809777879867743e-08,1.170902273608326750e-08,1.192994769336785758e-08,1.215087265065244766e-08,1.237179760793703774e-08,1.259272256522162781e-08,1.281364752250621789e-08,1.303457247979080797e-08,1.325549743707539805e-08,1.347642239435998813e-08,1.369734735164457820e-08,1.391827230892916828e-08 +0.000000000000000000e+00,5.454280485903148154e-10,1.090856097180629631e-09,1.636284145770944549e-09,2.181712194361259675e-09,2.727140242951574801e-09,3.272568291541889926e-09,3.817996340132204638e-09,4.363424388722519350e-09,4.908852437312834062e-09,5.454280485903148774e-09,5.999708534493463486e-09,6.545136583083778198e-09,7.090564631674092910e-09,7.635992680264407622e-09,8.181420728854722334e-09,8.726848777445037046e-09,9.272276826035351758e-09,9.817704874625666470e-09,1.036313292321598118e-08,1.090856097180629589e-08,1.145398902039661061e-08,1.199941706898692532e-08,1.254484511757724003e-08,1.309027316616755474e-08,1.363570121475786945e-08,1.418112926334818417e-08,1.472655731193849888e-08,1.527198536052881194e-08,1.581741340911912499e-08,1.636284145770943805e-08,1.690826950629975111e-08,1.745369755489006417e-08,1.799912560348037722e-08,1.854455365207069028e-08,1.908998170066100334e-08,1.963540974925131640e-08,2.018083779784162945e-08,2.072626584643194251e-08,2.127169389502225557e-08,2.181712194361256863e-08,2.236254999220288168e-08,2.290797804079319474e-08,2.345340608938350780e-08,2.399883413797382086e-08,2.454426218656413391e-08,2.508969023515444697e-08,2.563511828374476003e-08,2.618054633233507309e-08,2.672597438092538614e-08,2.727140242951569920e-08,2.781683047810601226e-08,2.836225852669632532e-08,2.890768657528663838e-08,2.945311462387695143e-08,2.999854267246726118e-08,3.054397072105757093e-08,3.108939876964788068e-08,3.163482681823819043e-08,3.218025486682850018e-08,3.272568291541880993e-08,3.327111096400911968e-08,3.381653901259942942e-08,3.436196706118973917e-08 +0.000000000000000000e+00,-7.379124142565199253e-11,-1.475824828513039851e-10,-2.213737242769559776e-10,-2.951649657026079701e-10,-3.689562071282599627e-10,-4.427474485539119552e-10,-5.165386899795639994e-10,-5.903299314052160437e-10,-6.641211728308680879e-10,-7.379124142565201321e-10,-8.117036556821721764e-10,-8.854948971078242206e-10,-9.592861385334762648e-10,-1.033077379959128412e-09,-1.106868621384780560e-09,-1.180659862810432708e-09,-1.254451104236084855e-09,-1.328242345661737003e-09,-1.402033587087389151e-09,-1.475824828513041298e-09,-1.549616069938693446e-09,-1.623407311364345593e-09,-1.697198552789997741e-09,-1.770989794215649889e-09,-1.844781035641302036e-09,-1.918572277066954184e-09,-1.992363518492606332e-09,-2.066154759918258479e-09,-2.139946001343910627e-09,-2.213737242769562775e-09,-2.287528484195214922e-09,-2.361319725620867070e-09,-2.435110967046519217e-09,-2.508902208472171365e-09,-2.582693449897823513e-09,-2.656484691323475660e-09,-2.730275932749127808e-09,-2.804067174174779956e-09,-2.877858415600432103e-09,-2.951649657026084251e-09,-3.025440898451736398e-09,-3.099232139877388546e-09,-3.173023381303040694e-09,-3.246814622728692841e-09,-3.320605864154344989e-09,-3.394397105579997137e-09,-3.468188347005649284e-09,-3.541979588431301432e-09,-3.615770829856953579e-09,-3.689562071282605727e-09,-3.763353312708257461e-09,-3.837144554133909195e-09,-3.910935795559560929e-09,-3.984727036985212663e-09,-4.058518278410864397e-09,-4.132309519836516131e-09,-4.206100761262167865e-09,-4.279892002687819599e-09,-4.353683244113471333e-09,-4.427474485539123068e-09,-4.501265726964774802e-09,-4.575056968390426536e-09,-4.648848209816078270e-09 +0.000000000000000000e+00,2.724403938260390571e-10,5.448807876520781141e-10,8.173211814781171712e-10,1.089761575304156228e-09,1.362201969130195182e-09,1.634642362956234136e-09,1.907082756782273089e-09,2.179523150608312043e-09,2.451963544434350997e-09,2.724403938260389950e-09,2.996844332086428904e-09,3.269284725912467858e-09,3.541725119738506811e-09,3.814165513564546178e-09,4.086605907390585546e-09,4.359046301216624913e-09,4.631486695042664280e-09,4.903927088868703648e-09,5.176367482694743015e-09,5.448807876520782382e-09,5.721248270346821749e-09,5.993688664172861117e-09,6.266129057998900484e-09,6.538569451824939851e-09,6.811009845650979218e-09,7.083450239477018586e-09,7.355890633303057953e-09,7.628331027129097320e-09,7.900771420955137515e-09,8.173211814781177709e-09,8.445652208607217903e-09,8.718092602433258098e-09,8.990532996259298292e-09,9.262973390085338487e-09,9.535413783911378681e-09,9.807854177737418876e-09,1.008029457156345907e-08,1.035273496538949926e-08,1.062517535921553946e-08,1.089761575304157965e-08,1.117005614686761985e-08,1.144249654069366004e-08,1.171493693451970024e-08,1.198737732834574043e-08,1.225981772217178063e-08,1.253225811599782082e-08,1.280469850982386101e-08,1.307713890364990121e-08,1.334957929747594140e-08,1.362201969130198160e-08,1.389446008512802179e-08,1.416690047895406199e-08,1.443934087278010218e-08,1.471178126660614238e-08,1.498422166043218257e-08,1.525666205425822442e-08,1.552910244808426627e-08,1.580154284191030812e-08,1.607398323573634997e-08,1.634642362956239181e-08,1.661886402338843366e-08,1.689130441721447551e-08,1.716374481104051736e-08 +0.000000000000000000e+00,1.582518224718249342e-10,3.165036449436498683e-10,4.747554674154748025e-10,6.330072898872997367e-10,7.912591123591246708e-10,9.495109348309496050e-10,1.107762757302774539e-09,1.266014579774599473e-09,1.424266402246424407e-09,1.582518224718249342e-09,1.740770047190074276e-09,1.899021869661899210e-09,2.057273692133724351e-09,2.215525514605549492e-09,2.373777337077374633e-09,2.532029159549199774e-09,2.690280982021024915e-09,2.848532804492850056e-09,3.006784626964675197e-09,3.165036449436500338e-09,3.323288271908325479e-09,3.481540094380150620e-09,3.639791916851975761e-09,3.798043739323800901e-09,3.956295561795626042e-09,4.114547384267451183e-09,4.272799206739276324e-09,4.431051029211101465e-09,4.589302851682926606e-09,4.747554674154751747e-09,4.905806496626576888e-09,5.064058319098402029e-09,5.222310141570227170e-09,5.380561964042052311e-09,5.538813786513877452e-09,5.697065608985702593e-09,5.855317431457527734e-09,6.013569253929352875e-09,6.171821076401178016e-09,6.330072898873003157e-09,6.488324721344828298e-09,6.646576543816653439e-09,6.804828366288478580e-09,6.963080188760303721e-09,7.121332011232128862e-09,7.279583833703954003e-09,7.437835656175779144e-09,7.596087478647603457e-09,7.754339301119428598e-09,7.912591123591253739e-09,8.070842946063078880e-09,8.229094768534904021e-09,8.387346591006729162e-09,8.545598413478554303e-09,8.703850235950379444e-09,8.862102058422204585e-09,9.020353880894029726e-09,9.178605703365854867e-09,9.336857525837680008e-09,9.495109348309505149e-09,9.653361170781330290e-09,9.811612993253155431e-09,9.969864815724980572e-09 +0.000000000000000000e+00,3.248244508095303289e-10,6.496489016190606578e-10,9.744733524285909867e-10,1.299297803238121316e-09,1.624122254047651645e-09,1.948946704857181973e-09,2.273771155666712509e-09,2.598595606476243045e-09,2.923420057285773581e-09,3.248244508095304116e-09,3.573068958904834652e-09,3.897893409714364774e-09,4.222717860523894896e-09,4.547542311333425018e-09,4.872366762142955140e-09,5.197191212952485262e-09,5.522015663762015385e-09,5.846840114571545507e-09,6.171664565381075629e-09,6.496489016190605751e-09,6.821313467000135873e-09,7.146137917809665995e-09,7.470962368619195290e-09,7.795786819428724585e-09,8.120611270238253880e-09,8.445435721047783175e-09,8.770260171857312470e-09,9.095084622666841765e-09,9.419909073476371060e-09,9.744733524285900355e-09,1.006955797509542965e-08,1.039438242590495894e-08,1.071920687671448824e-08,1.104403132752401753e-08,1.136885577833354683e-08,1.169368022914307612e-08,1.201850467995260542e-08,1.234332913076213471e-08,1.266815358157166401e-08,1.299297803238119330e-08,1.331780248319072260e-08,1.364262693400025189e-08,1.396745138480978119e-08,1.429227583561931048e-08,1.461710028642883978e-08,1.494192473723837073e-08,1.526674918804790168e-08,1.559157363885743263e-08,1.591639808966696358e-08,1.624122254047649452e-08,1.656604699128602547e-08,1.689087144209555642e-08,1.721569589290508737e-08,1.754052034371461832e-08,1.786534479452414927e-08,1.819016924533368022e-08,1.851499369614321117e-08,1.883981814695274212e-08,1.916464259776227307e-08,1.948946704857180402e-08,1.981429149938133497e-08,2.013911595019086592e-08,2.046394040100039687e-08 +0.000000000000000000e+00,-2.724403939412331597e-10,-5.448807878824663195e-10,-8.173211818236994792e-10,-1.089761575764932639e-09,-1.362201969706165799e-09,-1.634642363647398958e-09,-1.907082757588631911e-09,-2.179523151529864864e-09,-2.451963545471097817e-09,-2.724403939412330770e-09,-2.996844333353563723e-09,-3.269284727294796676e-09,-3.541725121236029629e-09,-3.814165515177262168e-09,-4.086605909118494708e-09,-4.359046303059727247e-09,-4.631486697000959787e-09,-4.903927090942192326e-09,-5.176367484883424865e-09,-5.448807878824657405e-09,-5.721248272765889944e-09,-5.993688666707122483e-09,-6.266129060648355023e-09,-6.538569454589587562e-09,-6.811009848530820101e-09,-7.083450242472052641e-09,-7.355890636413285180e-09,-7.628331030354517720e-09,-7.900771424295749432e-09,-8.173211818236981144e-09,-8.445652212178212856e-09,-8.718092606119444568e-09,-8.990533000060676280e-09,-9.262973394001907993e-09,-9.535413787943139705e-09,-9.807854181884371417e-09,-1.008029457582560313e-08,-1.035273496976683484e-08,-1.062517536370806655e-08,-1.089761575764929827e-08,-1.117005615159052998e-08,-1.144249654553176169e-08,-1.171493693947299340e-08,-1.198737733341422511e-08,-1.225981772735545683e-08,-1.253225812129668854e-08,-1.280469851523792025e-08,-1.307713890917915196e-08,-1.334957930312038368e-08,-1.362201969706161539e-08,-1.389446009100284710e-08,-1.416690048494407881e-08,-1.443934087888531052e-08,-1.471178127282654224e-08,-1.498422166676777395e-08,-1.525666206070900566e-08,-1.552910245465023737e-08,-1.580154284859146908e-08,-1.607398324253270080e-08,-1.634642363647393251e-08,-1.661886403041516422e-08,-1.689130442435639593e-08,-1.716374481829762765e-08 +0.000000000000000000e+00,-1.582518225946255054e-10,-3.165036451892510108e-10,-4.747554677838765421e-10,-6.330072903785021251e-10,-7.912591129731277080e-10,-9.495109355677532910e-10,-1.107762758162378771e-09,-1.266014580757004250e-09,-1.424266403351629730e-09,-1.582518225946255209e-09,-1.740770048540880689e-09,-1.899021871135506168e-09,-2.057273693730131648e-09,-2.215525516324757128e-09,-2.373777338919382607e-09,-2.532029161514008087e-09,-2.690280984108633566e-09,-2.848532806703259046e-09,-3.006784629297884525e-09,-3.165036451892510005e-09,-3.323288274487135484e-09,-3.481540097081760964e-09,-3.639791919676386444e-09,-3.798043742271011510e-09,-3.956295564865636576e-09,-4.114547387460261642e-09,-4.272799210054886708e-09,-4.431051032649511773e-09,-4.589302855244136839e-09,-4.747554677838761905e-09,-4.905806500433386971e-09,-5.064058323028012037e-09,-5.222310145622637103e-09,-5.380561968217262169e-09,-5.538813790811887235e-09,-5.697065613406512301e-09,-5.855317436001137367e-09,-6.013569258595762433e-09,-6.171821081190387499e-09,-6.330072903785012565e-09,-6.488324726379637631e-09,-6.646576548974262697e-09,-6.804828371568887763e-09,-6.963080194163512829e-09,-7.121332016758137895e-09,-7.279583839352762961e-09,-7.437835661947388027e-09,-7.596087484542013093e-09,-7.754339307136638159e-09,-7.912591129731263225e-09,-8.070842952325888291e-09,-8.229094774920513357e-09,-8.387346597515138423e-09,-8.545598420109763489e-09,-8.703850242704388555e-09,-8.862102065299013621e-09,-9.020353887893638687e-09,-9.178605710488263753e-09,-9.336857533082888819e-09,-9.495109355677513885e-09,-9.653361178272138951e-09,-9.811613000866764017e-09,-9.969864823461389083e-09 +0.000000000000000000e+00,-3.248244509365243181e-10,-6.496489018730486362e-10,-9.744733528095730061e-10,-1.299297803746097479e-09,-1.624122254682621952e-09,-1.948946705619146426e-09,-2.273771156555671106e-09,-2.598595607492195786e-09,-2.923420058428720466e-09,-3.248244509365245146e-09,-3.573068960301769826e-09,-3.897893411238294506e-09,-4.222717862174819186e-09,-4.547542313111343866e-09,-4.872366764047868546e-09,-5.197191214984393226e-09,-5.522015665920917906e-09,-5.846840116857442586e-09,-6.171664567793967266e-09,-6.496489018730491946e-09,-6.821313469667016626e-09,-7.146137920603541306e-09,-7.470962371540065986e-09,-7.795786822476590666e-09,-8.120611273413115346e-09,-8.445435724349640026e-09,-8.770260175286164706e-09,-9.095084626222689386e-09,-9.419909077159214066e-09,-9.744733528095738746e-09,-1.006955797903226343e-08,-1.039438242996878811e-08,-1.071920688090531279e-08,-1.104403133184183747e-08,-1.136885578277836215e-08,-1.169368023371488683e-08,-1.201850468465141151e-08,-1.234332913558793619e-08,-1.266815358652446087e-08,-1.299297803746098555e-08,-1.331780248839751023e-08,-1.364262693933403491e-08,-1.396745139027055959e-08,-1.429227584120708427e-08,-1.461710029214360895e-08,-1.494192474308013197e-08,-1.526674919401665500e-08,-1.559157364495317802e-08,-1.591639809588970105e-08,-1.624122254682622407e-08,-1.656604699776274710e-08,-1.689087144869927013e-08,-1.721569589963579315e-08,-1.754052035057231618e-08,-1.786534480150883920e-08,-1.819016925244536223e-08,-1.851499370338188525e-08,-1.883981815431840828e-08,-1.916464260525493131e-08,-1.948946705619145433e-08,-1.981429150712797736e-08,-2.013911595806450038e-08,-2.046394040900102341e-08 +0.000000000000000000e+00,4.109214194420939546e-10,8.218428388841879091e-10,1.232764258326281864e-09,1.643685677768375818e-09,2.054607097210469566e-09,2.465528516652563314e-09,2.876449936094657062e-09,3.287371355536750809e-09,3.698292774978844557e-09,4.109214194420938305e-09,4.520135613863032053e-09,4.931057033305125800e-09,5.341978452747219548e-09,5.752899872189313296e-09,6.163821291631407044e-09,6.574742711073500792e-09,6.985664130515594539e-09,7.396585549957688287e-09,7.807506969399781208e-09,8.218428388841874955e-09,8.629349808283968703e-09,9.040271227726062451e-09,9.451192647168156199e-09,9.862114066610249947e-09,1.027303548605234369e-08,1.068395690549443744e-08,1.109487832493653119e-08,1.150579974437862494e-08,1.191672116382071869e-08,1.232764258326281243e-08,1.273856400270490618e-08,1.314948542214699993e-08,1.356040684158909368e-08,1.397132826103118742e-08,1.438224968047328117e-08,1.479317109991537492e-08,1.520409251935746867e-08,1.561501393879956242e-08,1.602593535824165616e-08,1.643685677768374991e-08,1.684777819712584366e-08,1.725869961656793741e-08,1.766962103601003115e-08,1.808054245545212490e-08,1.849146387489421865e-08,1.890238529433631240e-08,1.931330671377840615e-08,1.972422813322049989e-08,2.013514955266259364e-08,2.054607097210468739e-08,2.095699239154678114e-08,2.136791381098887488e-08,2.177883523043096863e-08,2.218975664987306238e-08,2.260067806931515613e-08,2.301159948875724988e-08,2.342252090819934362e-08,2.383344232764143737e-08,2.424436374708353112e-08,2.465528516652562487e-08,2.506620658596771861e-08,2.547712800540981236e-08,2.588804942485190611e-08 +0.000000000000000000e+00,3.482958115134054870e-10,6.965916230268109739e-10,1.044887434540216564e-09,1.393183246053622155e-09,1.741479057567027745e-09,2.089774869080433129e-09,2.438070680593838512e-09,2.786366492107243896e-09,3.134662303620649279e-09,3.482958115134054663e-09,3.831253926647460046e-09,4.179549738160865430e-09,4.527845549674270814e-09,4.876141361187676197e-09,5.224437172701081581e-09,5.572732984214486964e-09,5.921028795727892348e-09,6.269324607241297732e-09,6.617620418754703115e-09,6.965916230268108499e-09,7.314212041781513882e-09,7.662507853294918439e-09,8.010803664808322168e-09,8.359099476321725897e-09,8.707395287835129626e-09,9.055691099348533355e-09,9.403986910861937085e-09,9.752282722375340814e-09,1.010057853388874454e-08,1.044887434540214827e-08,1.079717015691555200e-08,1.114546596842895573e-08,1.149376177994235946e-08,1.184205759145576319e-08,1.219035340296916692e-08,1.253864921448257065e-08,1.288694502599597438e-08,1.323524083750937811e-08,1.358353664902278184e-08,1.393183246053618556e-08,1.428012827204958929e-08,1.462842408356299302e-08,1.497671989507639675e-08,1.532501570658980048e-08,1.567331151810320421e-08,1.602160732961660794e-08,1.636990314113001167e-08,1.671819895264341540e-08,1.706649476415681913e-08,1.741479057567022286e-08,1.776308638718362659e-08,1.811138219869703031e-08,1.845967801021043404e-08,1.880797382172383777e-08,1.915626963323724150e-08,1.950456544475064523e-08,1.985286125626404896e-08,2.020115706777745269e-08,2.054945287929085642e-08,2.089774869080426015e-08,2.124604450231766388e-08,2.159434031383106761e-08,2.194263612534447134e-08 +0.000000000000000000e+00,4.472092773383988798e-10,8.944185546767977597e-10,1.341627832015196536e-09,1.788837109353595313e-09,2.236046386691994089e-09,2.683255664030393072e-09,3.130464941368792055e-09,3.577674218707191039e-09,4.024883496045590022e-09,4.472092773383989005e-09,4.919302050722387988e-09,5.366511328060786972e-09,5.813720605399185955e-09,6.260929882737584938e-09,6.708139160075983921e-09,7.155348437414382904e-09,7.602557714752781061e-09,8.049766992091178389e-09,8.496976269429575718e-09,8.944185546767973047e-09,9.391394824106370376e-09,9.838604101444767705e-09,1.028581337878316503e-08,1.073302265612156236e-08,1.118023193345995969e-08,1.162744121079835702e-08,1.207465048813675435e-08,1.252185976547515168e-08,1.296906904281354901e-08,1.341627832015194634e-08,1.386348759749034366e-08,1.431069687482874099e-08,1.475790615216713832e-08,1.520511542950553565e-08,1.565232470684393298e-08,1.609953398418233031e-08,1.654674326152072764e-08,1.699395253885912497e-08,1.744116181619752230e-08,1.788837109353591962e-08,1.833558037087431695e-08,1.878278964821271428e-08,1.922999892555111161e-08,1.967720820288950894e-08,2.012441748022790627e-08,2.057162675756630360e-08,2.101883603490470093e-08,2.146604531224309826e-08,2.191325458958149558e-08,2.236046386691989291e-08,2.280767314425829024e-08,2.325488242159668757e-08,2.370209169893508490e-08,2.414930097627348223e-08,2.459651025361187956e-08,2.504371953095027689e-08,2.549092880828867422e-08,2.593813808562707154e-08,2.638534736296546887e-08,2.683255664030386620e-08,2.727976591764226353e-08,2.772697519498066086e-08,2.817418447231905819e-08 +0.000000000000000000e+00,-4.109214195402537201e-10,-8.218428390805074402e-10,-1.232764258620761264e-09,-1.643685678161015087e-09,-2.054607097701268911e-09,-2.465528517241522527e-09,-2.876449936781776144e-09,-3.287371356322029761e-09,-3.698292775862283377e-09,-4.109214195402536994e-09,-4.520135614942790611e-09,-4.931057034483044228e-09,-5.341978454023297844e-09,-5.752899873563551461e-09,-6.163821293103805078e-09,-6.574742712644058694e-09,-6.985664132184312311e-09,-7.396585551724565928e-09,-7.807506971264818717e-09,-8.218428390805072334e-09,-8.629349810345325951e-09,-9.040271229885579567e-09,-9.451192649425833184e-09,-9.862114068966086801e-09,-1.027303548850634042e-08,-1.068395690804659403e-08,-1.109487832758684765e-08,-1.150579974712710127e-08,-1.191672116666735488e-08,-1.232764258620760850e-08,-1.273856400574786212e-08,-1.314948542528811573e-08,-1.356040684482836935e-08,-1.397132826436862297e-08,-1.438224968390887658e-08,-1.479317110344913020e-08,-1.520409252298938382e-08,-1.561501394252963743e-08,-1.602593536206989105e-08,-1.643685678161014467e-08,-1.684777820115039828e-08,-1.725869962069065190e-08,-1.766962104023090552e-08,-1.808054245977115913e-08,-1.849146387931141275e-08,-1.890238529885166637e-08,-1.931330671839191998e-08,-1.972422813793217360e-08,-2.013514955747242722e-08,-2.054607097701268084e-08,-2.095699239655293445e-08,-2.136791381609318807e-08,-2.177883523563344169e-08,-2.218975665517369530e-08,-2.260067807471394892e-08,-2.301159949425420254e-08,-2.342252091379445615e-08,-2.383344233333470977e-08,-2.424436375287496339e-08,-2.465528517241521700e-08,-2.506620659195547062e-08,-2.547712801149572424e-08,-2.588804943103597785e-08 +0.000000000000000000e+00,-3.482958116202351910e-10,-6.965916232404703820e-10,-1.044887434860705625e-09,-1.393183246480940971e-09,-1.741479058101176317e-09,-2.089774869721411663e-09,-2.438070681341647009e-09,-2.786366492961882355e-09,-3.134662304582117701e-09,-3.482958116202353047e-09,-3.831253927822588393e-09,-4.179549739442824153e-09,-4.527845551063059913e-09,-4.876141362683295673e-09,-5.224437174303531432e-09,-5.572732985923767192e-09,-5.921028797544002952e-09,-6.269324609164238711e-09,-6.617620420784474471e-09,-6.965916232404710231e-09,-7.314212044024945990e-09,-7.662507855645181750e-09,-8.010803667265417510e-09,-8.359099478885653269e-09,-8.707395290505889029e-09,-9.055691102126124789e-09,-9.403986913746360548e-09,-9.752282725366596308e-09,-1.010057853698683207e-08,-1.044887434860706783e-08,-1.079717016022730359e-08,-1.114546597184753935e-08,-1.149376178346777511e-08,-1.184205759508801087e-08,-1.219035340670824663e-08,-1.253864921832848239e-08,-1.288694502994871815e-08,-1.323524084156895390e-08,-1.358353665318918966e-08,-1.393183246480942542e-08,-1.428012827642966118e-08,-1.462842408804989694e-08,-1.497671989967013105e-08,-1.532501571129036681e-08,-1.567331152291060257e-08,-1.602160733453083833e-08,-1.636990314615107409e-08,-1.671819895777130985e-08,-1.706649476939154561e-08,-1.741479058101178137e-08,-1.776308639263201713e-08,-1.811138220425225289e-08,-1.845967801587248865e-08,-1.880797382749272441e-08,-1.915626963911296017e-08,-1.950456545073319592e-08,-1.985286126235343168e-08,-2.020115707397366744e-08,-2.054945288559390320e-08,-2.089774869721413896e-08,-2.124604450883437472e-08,-2.159434032045461048e-08,-2.194263613207484624e-08 +0.000000000000000000e+00,-4.472092774495401077e-10,-8.944185548990802154e-10,-1.341627832348620220e-09,-1.788837109798160224e-09,-2.236046387247700228e-09,-2.683255664697240439e-09,-3.130464942146780651e-09,-3.577674219596320862e-09,-4.024883497045860659e-09,-4.472092774495400457e-09,-4.919302051944940254e-09,-5.366511329394480052e-09,-5.813720606844019849e-09,-6.260929884293559647e-09,-6.708139161743099444e-09,-7.155348439192639242e-09,-7.602557716642179039e-09,-8.049766994091718010e-09,-8.496976271541256980e-09,-8.944185548990795950e-09,-9.391394826440334921e-09,-9.838604103889873891e-09,-1.028581338133941286e-08,-1.073302265878895183e-08,-1.118023193623849080e-08,-1.162744121368802977e-08,-1.207465049113756874e-08,-1.252185976858710771e-08,-1.296906904603664668e-08,-1.341627832348618565e-08,-1.386348760093572462e-08,-1.431069687838526359e-08,-1.475790615583480256e-08,-1.520511543328434153e-08,-1.565232471073388216e-08,-1.609953398818342278e-08,-1.654674326563296341e-08,-1.699395254308250403e-08,-1.744116182053204466e-08,-1.788837109798158528e-08,-1.833558037543112591e-08,-1.878278965288066653e-08,-1.922999893033020716e-08,-1.967720820777974778e-08,-2.012441748522928841e-08,-2.057162676267882903e-08,-2.101883604012836966e-08,-2.146604531757791028e-08,-2.191325459502745091e-08,-2.236046387247699153e-08,-2.280767314992653215e-08,-2.325488242737607278e-08,-2.370209170482561340e-08,-2.414930098227515403e-08,-2.459651025972469465e-08,-2.504371953717423528e-08,-2.549092881462377590e-08,-2.593813809207331653e-08,-2.638534736952285715e-08,-2.683255664697239778e-08,-2.727976592442193840e-08,-2.772697520187147903e-08,-2.817418447932101965e-08 +0.000000000000000000e+00,4.937949415267804969e-10,9.875898830535609937e-10,1.481384824580341491e-09,1.975179766107121987e-09,2.468974707633902484e-09,2.962769649160682981e-09,3.456564590687463478e-09,3.950359532214243975e-09,4.444154473741024472e-09,4.937949415267804969e-09,5.431744356794585466e-09,5.925539298321365962e-09,6.419334239848146459e-09,6.913129181374926956e-09,7.406924122901707453e-09,7.900719064428487950e-09,8.394514005955267620e-09,8.888308947482047289e-09,9.382103889008826959e-09,9.875898830535606629e-09,1.036969377206238630e-08,1.086348871358916597e-08,1.135728365511594564e-08,1.185107859664272531e-08,1.234487353816950498e-08,1.283866847969628465e-08,1.333246342122306432e-08,1.382625836274984399e-08,1.432005330427662366e-08,1.481384824580340333e-08,1.530764318733018300e-08,1.580143812885696267e-08,1.629523307038374233e-08,1.678902801191052200e-08,1.728282295343730167e-08,1.777661789496408134e-08,1.827041283649086101e-08,1.876420777801764068e-08,1.925800271954442035e-08,1.975179766107120002e-08,2.024559260259797969e-08,2.073938754412475936e-08,2.123318248565153903e-08,2.172697742717831870e-08,2.222077236870509837e-08,2.271456731023187804e-08,2.320836225175865771e-08,2.370215719328543738e-08,2.419595213481221705e-08,2.468974707633899672e-08,2.518354201786577639e-08,2.567733695939255606e-08,2.617113190091933573e-08,2.666492684244611540e-08,2.715872178397289507e-08,2.765251672549967474e-08,2.814631166702645441e-08,2.864010660855323408e-08,2.913390155008001375e-08,2.962769649160679342e-08,3.012149143313356978e-08,3.061528637466034614e-08,3.110908131618712250e-08 +0.000000000000000000e+00,4.541932725443514175e-10,9.083865450887028350e-10,1.362579817633054201e-09,1.816773090177405463e-09,2.270966362721756726e-09,2.725159635266107988e-09,3.179352907810459250e-09,3.633546180354810513e-09,4.087739452899161775e-09,4.541932725443513451e-09,4.996125997987865127e-09,5.450319270532216803e-09,5.904512543076568479e-09,6.358705815620920155e-09,6.812899088165271831e-09,7.267092360709623507e-09,7.721285633253976011e-09,8.175478905798328514e-09,8.629672178342681017e-09,9.083865450887033520e-09,9.538058723431386023e-09,9.992251995975738526e-09,1.044644526852009103e-08,1.090063854106444353e-08,1.135483181360879604e-08,1.180902508615314854e-08,1.226321835869750104e-08,1.271741163124185355e-08,1.317160490378620605e-08,1.362579817633055855e-08,1.407999144887491106e-08,1.453418472141926356e-08,1.498837799396361606e-08,1.544257126650796856e-08,1.589676453905232107e-08,1.635095781159667357e-08,1.680515108414102607e-08,1.725934435668537858e-08,1.771353762922973108e-08,1.816773090177408358e-08,1.862192417431843609e-08,1.907611744686278859e-08,1.953031071940714109e-08,1.998450399195149360e-08,2.043869726449584610e-08,2.089289053704019860e-08,2.134708380958455111e-08,2.180127708212890361e-08,2.225547035467325611e-08,2.270966362721760862e-08,2.316385689976196112e-08,2.361805017230631362e-08,2.407224344485066613e-08,2.452643671739501863e-08,2.498062998993937113e-08,2.543482326248372363e-08,2.588901653502807614e-08,2.634320980757242864e-08,2.679740308011678114e-08,2.725159635266113365e-08,2.770578962520548615e-08,2.815998289774983865e-08,2.861417617029419116e-08 +0.000000000000000000e+00,5.194420249474374713e-10,1.038884049894874943e-09,1.558326074842312414e-09,2.077768099789749885e-09,2.597210124737187356e-09,3.116652149684624828e-09,3.636094174632062299e-09,4.155536199579499770e-09,4.674978224526937655e-09,5.194420249474375540e-09,5.713862274421813425e-09,6.233304299369251310e-09,6.752746324316689194e-09,7.272188349264127079e-09,7.791630374211564964e-09,8.311072399159002849e-09,8.830514424106440734e-09,9.349956449053878619e-09,9.869398474001316504e-09,1.038884049894875439e-08,1.090828252389619227e-08,1.142772454884363016e-08,1.194716657379106804e-08,1.246660859873850593e-08,1.298605062368594381e-08,1.350549264863338170e-08,1.402493467358081958e-08,1.454437669852825747e-08,1.506381872347569535e-08,1.558326074842313324e-08,1.610270277337057112e-08,1.662214479831800901e-08,1.714158682326544689e-08,1.766102884821288478e-08,1.818047087316032266e-08,1.869991289810776055e-08,1.921935492305519843e-08,1.973879694800263632e-08,2.025823897295007420e-08,2.077768099789751209e-08,2.129712302284494997e-08,2.181656504779238786e-08,2.233600707273982574e-08,2.285544909768726362e-08,2.337489112263470151e-08,2.389433314758213939e-08,2.441377517252957728e-08,2.493321719747701516e-08,2.545265922242445305e-08,2.597210124737189093e-08,2.649154327231932882e-08,2.701098529726676670e-08,2.753042732221420459e-08,2.804986934716164247e-08,2.856931137210908036e-08,2.908875339705651824e-08,2.960819542200395613e-08,3.012763744695139732e-08,3.064707947189884182e-08,3.116652149684628633e-08,3.168596352179373083e-08,3.220540554674117533e-08,3.272484757168861983e-08 +0.000000000000000000e+00,-4.937949416078417154e-10,-9.875898832156834307e-10,-1.481384824823525146e-09,-1.975179766431366861e-09,-2.468974708039208577e-09,-2.962769649647050292e-09,-3.456564591254892008e-09,-3.950359532862733723e-09,-4.444154474470575438e-09,-4.937949416078417154e-09,-5.431744357686258869e-09,-5.925539299294100584e-09,-6.419334240901942300e-09,-6.913129182509784015e-09,-7.406924124117625730e-09,-7.900719065725467446e-09,-8.394514007333309161e-09,-8.888308948941150877e-09,-9.382103890548992592e-09,-9.875898832156834307e-09,-1.036969377376467602e-08,-1.086348871537251774e-08,-1.135728365698035945e-08,-1.185107859858820117e-08,-1.234487354019604288e-08,-1.283866848180388460e-08,-1.333246342341172631e-08,-1.382625836501956803e-08,-1.432005330662740975e-08,-1.481384824823525146e-08,-1.530764318984309483e-08,-1.580143813145093820e-08,-1.629523307305878157e-08,-1.678902801466662494e-08,-1.728282295627446831e-08,-1.777661789788231168e-08,-1.827041283949015505e-08,-1.876420778109799842e-08,-1.925800272270584179e-08,-1.975179766431368516e-08,-2.024559260592152853e-08,-2.073938754752937190e-08,-2.123318248913721527e-08,-2.172697743074505864e-08,-2.222077237235290201e-08,-2.271456731396074538e-08,-2.320836225556858875e-08,-2.370215719717643212e-08,-2.419595213878427549e-08,-2.468974708039211886e-08,-2.518354202199996223e-08,-2.567733696360780559e-08,-2.617113190521564896e-08,-2.666492684682349233e-08,-2.715872178843133570e-08,-2.765251673003917907e-08,-2.814631167164702244e-08,-2.864010661325486581e-08,-2.913390155486270918e-08,-2.962769649647055255e-08,-3.012149143807839592e-08,-3.061528637968624260e-08,-3.110908132129408928e-08 +0.000000000000000000e+00,-4.541932726337040360e-10,-9.083865452674080719e-10,-1.362579817901112005e-09,-1.816773090534815937e-09,-2.270966363168519870e-09,-2.725159635802224009e-09,-3.179352908435928148e-09,-3.633546181069632288e-09,-4.087739453703336014e-09,-4.541932726337039739e-09,-4.996125998970743465e-09,-5.450319271604447191e-09,-5.904512544238150917e-09,-6.358705816871854642e-09,-6.812899089505558368e-09,-7.267092362139262094e-09,-7.721285634772965820e-09,-8.175478907406668718e-09,-8.629672180040371617e-09,-9.083865452674074515e-09,-9.538058725307777414e-09,-9.992251997941480313e-09,-1.044644527057518321e-08,-1.090063854320888611e-08,-1.135483181584258901e-08,-1.180902508847629191e-08,-1.226321836110999481e-08,-1.271741163374369770e-08,-1.317160490637740060e-08,-1.362579817901110350e-08,-1.407999145164480640e-08,-1.453418472427850930e-08,-1.498837799691221054e-08,-1.544257126954591179e-08,-1.589676454217961303e-08,-1.635095781481331428e-08,-1.680515108744701552e-08,-1.725934436008071676e-08,-1.771353763271441801e-08,-1.816773090534811925e-08,-1.862192417798182050e-08,-1.907611745061552174e-08,-1.953031072324922299e-08,-1.998450399588292423e-08,-2.043869726851662547e-08,-2.089289054115032672e-08,-2.134708381378402796e-08,-2.180127708641772921e-08,-2.225547035905143045e-08,-2.270966363168513169e-08,-2.316385690431883294e-08,-2.361805017695253418e-08,-2.407224344958623543e-08,-2.452643672221993667e-08,-2.498062999485363792e-08,-2.543482326748733916e-08,-2.588901654012104040e-08,-2.634320981275474165e-08,-2.679740308538844289e-08,-2.725159635802214414e-08,-2.770578963065584538e-08,-2.815998290328954663e-08,-2.861417617592324787e-08 +0.000000000000000000e+00,-5.194420250427124444e-10,-1.038884050085424889e-09,-1.558326075128137230e-09,-2.077768100170849364e-09,-2.597210125213561498e-09,-3.116652150256273632e-09,-3.636094175298985767e-09,-4.155536200341697901e-09,-4.674978225384409622e-09,-5.194420250427121342e-09,-5.713862275469833063e-09,-6.233304300512544783e-09,-6.752746325555256504e-09,-7.272188350597968225e-09,-7.791630375640679945e-09,-8.311072400683390839e-09,-8.830514425726101732e-09,-9.349956450768812626e-09,-9.869398475811523519e-09,-1.038884050085423441e-08,-1.090828252589694531e-08,-1.142772455093965620e-08,-1.194716657598236709e-08,-1.246660860102507799e-08,-1.298605062606778888e-08,-1.350549265111049977e-08,-1.402493467615321067e-08,-1.454437670119592156e-08,-1.506381872623863411e-08,-1.558326075128134666e-08,-1.610270277632405920e-08,-1.662214480136677175e-08,-1.714158682640948430e-08,-1.766102885145219685e-08,-1.818047087649490939e-08,-1.869991290153762194e-08,-1.921935492658033449e-08,-1.973879695162304704e-08,-2.025823897666575959e-08,-2.077768100170847213e-08,-2.129712302675118468e-08,-2.181656505179389723e-08,-2.233600707683660978e-08,-2.285544910187932233e-08,-2.337489112692203487e-08,-2.389433315196474742e-08,-2.441377517700745997e-08,-2.493321720205017252e-08,-2.545265922709288506e-08,-2.597210125213559761e-08,-2.649154327717831016e-08,-2.701098530222102271e-08,-2.753042732726373526e-08,-2.804986935230644780e-08,-2.856931137734916035e-08,-2.908875340239187290e-08,-2.960819542743458545e-08,-3.012763745247729469e-08,-3.064707947752000392e-08,-3.116652150256271316e-08,-3.168596352760542240e-08,-3.220540555264813164e-08,-3.272484757769084088e-08 +0.000000000000000000e+00,5.489522661423626992e-10,1.097904532284725398e-09,1.646856798427087994e-09,2.195809064569450383e-09,2.744761330711812772e-09,3.293713596854175161e-09,3.842665862996537964e-09,4.391618129138900766e-09,4.940570395281263569e-09,5.489522661423626371e-09,6.038474927565989174e-09,6.587427193708351977e-09,7.136379459850714779e-09,7.685331725993077582e-09,8.234283992135440384e-09,8.783236258277803187e-09,9.332188524420165990e-09,9.881140790562528792e-09,1.043009305670489159e-08,1.097904532284725440e-08,1.152799758898961720e-08,1.207694985513198000e-08,1.262590212127434281e-08,1.317485438741670561e-08,1.372380665355906841e-08,1.427275891970143121e-08,1.482171118584379402e-08,1.537066345198615847e-08,1.591961571812852127e-08,1.646856798427088408e-08,1.701752025041324688e-08,1.756647251655560968e-08,1.811542478269797249e-08,1.866437704884033529e-08,1.921332931498269809e-08,1.976228158112506089e-08,2.031123384726742370e-08,2.086018611340978650e-08,2.140913837955214930e-08,2.195809064569451210e-08,2.250704291183687491e-08,2.305599517797923771e-08,2.360494744412160051e-08,2.415389971026396331e-08,2.470285197640632612e-08,2.525180424254868892e-08,2.580075650869105172e-08,2.634970877483341452e-08,2.689866104097577733e-08,2.744761330711814013e-08,2.799656557326050293e-08,2.854551783940286573e-08,2.909447010554522854e-08,2.964342237168759134e-08,3.019237463782995414e-08,3.074132690397231694e-08,3.129027917011467975e-08,3.183923143625704255e-08,3.238818370239940535e-08,3.293713596854176815e-08,3.348608823468413096e-08,3.403504050082649376e-08,3.458399276696885656e-08 +0.000000000000000000e+00,5.220241805516327208e-10,1.044048361103265442e-09,1.566072541654898162e-09,2.088096722206530883e-09,2.610120902758163811e-09,3.132145083309796738e-09,3.654169263861429666e-09,4.176193444413062593e-09,4.698217624964695521e-09,5.220241805516328448e-09,5.742265986067961376e-09,6.264290166619594303e-09,6.786314347171227231e-09,7.308338527722860159e-09,7.830362708274492259e-09,8.352386888826123532e-09,8.874411069377754805e-09,9.396435249929386079e-09,9.918459430481017352e-09,1.044048361103264862e-08,1.096250779158427990e-08,1.148453197213591117e-08,1.200655615268754244e-08,1.252858033323917372e-08,1.305060451379080499e-08,1.357262869434243626e-08,1.409465287489406754e-08,1.461667705544569881e-08,1.513870123599733008e-08,1.566072541654896136e-08,1.618274959710059263e-08,1.670477377765222390e-08,1.722679795820385518e-08,1.774882213875548645e-08,1.827084631930711772e-08,1.879287049985874900e-08,1.931489468041038027e-08,1.983691886096201154e-08,2.035894304151364282e-08,2.088096722206527409e-08,2.140299140261690536e-08,2.192501558316853664e-08,2.244703976372016791e-08,2.296906394427179918e-08,2.349108812482343045e-08,2.401311230537506173e-08,2.453513648592669300e-08,2.505716066647832427e-08,2.557918484702995555e-08,2.610120902758158682e-08,2.662323320813321809e-08,2.714525738868484937e-08,2.766728156923648064e-08,2.818930574978811191e-08,2.871132993033974319e-08,2.923335411089137446e-08,2.975537829144300573e-08,3.027740247199463370e-08,3.079942665254626166e-08,3.132145083309788963e-08,3.184347501364951759e-08,3.236549919420114556e-08,3.288752337475277352e-08 +0.000000000000000000e+00,5.687837905221013095e-10,1.137567581044202619e-09,1.706351371566303825e-09,2.275135162088404825e-09,2.843918952610505824e-09,3.412702743132606823e-09,3.981486533654707409e-09,4.550270324176807995e-09,5.119054114698908581e-09,5.687837905221009166e-09,6.256621695743109752e-09,6.825405486265210338e-09,7.394189276787310924e-09,7.962973067309411509e-09,8.531756857831512095e-09,9.100540648353612681e-09,9.669324438875713267e-09,1.023810822939781385e-08,1.080689201991991444e-08,1.137567581044201502e-08,1.194445960096411561e-08,1.251324339148621620e-08,1.308202718200831678e-08,1.365081097253041737e-08,1.421959476305251795e-08,1.478837855357461854e-08,1.535716234409672078e-08,1.592594613461882302e-08,1.649472992514092526e-08,1.706351371566302750e-08,1.763229750618512974e-08,1.820108129670723198e-08,1.876986508722933422e-08,1.933864887775143646e-08,1.990743266827353870e-08,2.047621645879564094e-08,2.104500024931774318e-08,2.161378403983984542e-08,2.218256783036194766e-08,2.275135162088404990e-08,2.332013541140615214e-08,2.388891920192825438e-08,2.445770299245035662e-08,2.502648678297245886e-08,2.559527057349456110e-08,2.616405436401666334e-08,2.673283815453876558e-08,2.730162194506086782e-08,2.787040573558297006e-08,2.843918952610507230e-08,2.900797331662717454e-08,2.957675710714927678e-08,3.014554089767137902e-08,3.071432468819348126e-08,3.128310847871558350e-08,3.185189226923768574e-08,3.242067605975978798e-08,3.298945985028189022e-08,3.355824364080399246e-08,3.412702743132609470e-08,3.469581122184819694e-08,3.526459501237029918e-08,3.583337880289240142e-08 +0.000000000000000000e+00,-5.489522662088442390e-10,-1.097904532417688478e-09,-1.646856798626532820e-09,-2.195809064835377370e-09,-2.744761331044221919e-09,-3.293713597253066468e-09,-3.842665863461911431e-09,-4.391618129670756393e-09,-4.940570395879601356e-09,-5.489522662088446319e-09,-6.038474928297291282e-09,-6.587427194506136245e-09,-7.136379460714981207e-09,-7.685331726923826170e-09,-8.234283993132671133e-09,-8.783236259341516096e-09,-9.332188525550361058e-09,-9.881140791759206021e-09,-1.043009305796805098e-08,-1.097904532417689595e-08,-1.152799759038574091e-08,-1.207694985659458587e-08,-1.262590212280343084e-08,-1.317485438901227580e-08,-1.372380665522112076e-08,-1.427275892142996572e-08,-1.482171118763881069e-08,-1.537066345384765565e-08,-1.591961572005650061e-08,-1.646856798626534557e-08,-1.701752025247419054e-08,-1.756647251868303550e-08,-1.811542478489188046e-08,-1.866437705110072543e-08,-1.921332931730957039e-08,-1.976228158351841535e-08,-2.031123384972726031e-08,-2.086018611593610528e-08,-2.140913838214495024e-08,-2.195809064835379520e-08,-2.250704291456264017e-08,-2.305599518077148513e-08,-2.360494744698033009e-08,-2.415389971318917505e-08,-2.470285197939802002e-08,-2.525180424560686498e-08,-2.580075651181570994e-08,-2.634970877802455490e-08,-2.689866104423339987e-08,-2.744761331044224483e-08,-2.799656557665108979e-08,-2.854551784285993476e-08,-2.909447010906877972e-08,-2.964342237527762468e-08,-3.019237464148646964e-08,-3.074132690769531792e-08,-3.129027917390416619e-08,-3.183923144011301446e-08,-3.238818370632186273e-08,-3.293713597253071100e-08,-3.348608823873955927e-08,-3.403504050494840754e-08,-3.458399277115725582e-08 +0.000000000000000000e+00,-5.220241806252014407e-10,-1.044048361250402881e-09,-1.566072541875604219e-09,-2.088096722500805349e-09,-2.610120903126006479e-09,-3.132145083751207610e-09,-3.654169264376408740e-09,-4.176193445001609871e-09,-4.698217625626811415e-09,-5.220241806252012959e-09,-5.742265986877214503e-09,-6.264290167502416047e-09,-6.786314348127617591e-09,-7.308338528752819135e-09,-7.830362709378020679e-09,-8.352386890003221396e-09,-8.874411070628422113e-09,-9.396435251253622830e-09,-9.918459431878823547e-09,-1.044048361250402426e-08,-1.096250779312922498e-08,-1.148453197375442570e-08,-1.200655615437962641e-08,-1.252858033500482713e-08,-1.305060451563002785e-08,-1.357262869625522856e-08,-1.409465287688042928e-08,-1.461667705750563000e-08,-1.513870123813083072e-08,-1.566072541875603143e-08,-1.618274959938123215e-08,-1.670477378000643287e-08,-1.722679796063163358e-08,-1.774882214125683430e-08,-1.827084632188203502e-08,-1.879287050250723573e-08,-1.931489468313243645e-08,-1.983691886375763717e-08,-2.035894304438283788e-08,-2.088096722500803860e-08,-2.140299140563323932e-08,-2.192501558625844003e-08,-2.244703976688364075e-08,-2.296906394750884147e-08,-2.349108812813404219e-08,-2.401311230875924290e-08,-2.453513648938444362e-08,-2.505716067000964434e-08,-2.557918485063484505e-08,-2.610120903126004577e-08,-2.662323321188524649e-08,-2.714525739251044720e-08,-2.766728157313564792e-08,-2.818930575376084864e-08,-2.871132993438604935e-08,-2.923335411501125007e-08,-2.975537829563645079e-08,-3.027740247626165481e-08,-3.079942665688685553e-08,-3.132145083751205625e-08,-3.184347501813725696e-08,-3.236549919876245768e-08,-3.288752337938765840e-08 +0.000000000000000000e+00,-5.687837906036207861e-10,-1.137567581207241572e-09,-1.706351371810862255e-09,-2.275135162414482731e-09,-2.843918953018103207e-09,-3.412702743621723683e-09,-3.981486534225344572e-09,-4.550270324828965462e-09,-5.119054115432586351e-09,-5.687837906036207241e-09,-6.256621696639828130e-09,-6.825405487243449020e-09,-7.394189277847069909e-09,-7.962973068450690799e-09,-8.531756859054311688e-09,-9.100540649657932578e-09,-9.669324440261553467e-09,-1.023810823086517436e-08,-1.080689202146879525e-08,-1.137567581207241614e-08,-1.194445960267603702e-08,-1.251324339327965791e-08,-1.308202718388327880e-08,-1.365081097448689969e-08,-1.421959476509052058e-08,-1.478837855569414147e-08,-1.535716234629776236e-08,-1.592594613690138491e-08,-1.649472992750500745e-08,-1.706351371810862999e-08,-1.763229750871225254e-08,-1.820108129931587508e-08,-1.876986508991949763e-08,-1.933864888052312017e-08,-1.990743267112674271e-08,-2.047621646173036526e-08,-2.104500025233398780e-08,-2.161378404293761034e-08,-2.218256783354123289e-08,-2.275135162414485543e-08,-2.332013541474847798e-08,-2.388891920535210052e-08,-2.445770299595572306e-08,-2.502648678655934561e-08,-2.559527057716296815e-08,-2.616405436776659070e-08,-2.673283815837021324e-08,-2.730162194897383578e-08,-2.787040573957745833e-08,-2.843918953018108087e-08,-2.900797332078470341e-08,-2.957675711138832596e-08,-3.014554090199194850e-08,-3.071432469259557105e-08,-3.128310848319919359e-08,-3.185189227380281613e-08,-3.242067606440643868e-08,-3.298945985501006122e-08,-3.355824364561368377e-08,-3.412702743621730631e-08,-3.469581122682092885e-08,-3.526459501742455140e-08,-3.583337880802817394e-08 +0.000000000000000000e+00,5.894611485119780793e-10,1.178922297023956159e-09,1.768383445535934238e-09,2.357844594047912317e-09,2.947305742559890603e-09,3.536766891071868889e-09,4.126228039583847175e-09,4.715689188095825461e-09,5.305150336607803747e-09,5.894611485119782033e-09,6.484072633631760319e-09,7.073533782143738605e-09,7.662994930655717719e-09,8.252456079167696005e-09,8.841917227679674291e-09,9.431378376191652577e-09,1.002083952470363086e-08,1.061030067321560915e-08,1.119976182172758743e-08,1.178922297023956572e-08,1.237868411875154401e-08,1.296814526726352229e-08,1.355760641577550058e-08,1.414706756428747887e-08,1.473652871279945715e-08,1.532598986131143544e-08,1.591545100982341372e-08,1.650491215833539201e-08,1.709437330684737030e-08,1.768383445535934858e-08,1.827329560387132687e-08,1.886275675238330515e-08,1.945221790089528344e-08,2.004167904940726173e-08,2.063114019791924001e-08,2.122060134643121830e-08,2.181006249494319658e-08,2.239952364345517487e-08,2.298898479196715316e-08,2.357844594047913144e-08,2.416790708899110973e-08,2.475736823750308801e-08,2.534682938601506630e-08,2.593629053452704459e-08,2.652575168303902287e-08,2.711521283155100116e-08,2.770467398006297944e-08,2.829413512857495773e-08,2.888359627708693602e-08,2.947305742559891430e-08,3.006251857411089259e-08,3.065197972262287087e-08,3.124144087113484916e-08,3.183090201964682745e-08,3.242036316815880573e-08,3.300982431667078402e-08,3.359928546518276230e-08,3.418874661369474059e-08,3.477820776220671888e-08,3.536766891071869716e-08,3.595713005923067545e-08,3.654659120774265373e-08,3.713605235625463202e-08 +0.000000000000000000e+00,5.694700683483477921e-10,1.138940136696695584e-09,1.708410205045043376e-09,2.277880273393391168e-09,2.847350341741738754e-09,3.416820410090086339e-09,3.986290478438433924e-09,4.555760546786781510e-09,5.125230615135129095e-09,5.694700683483476680e-09,6.264170751831824266e-09,6.833640820180171851e-09,7.403110888528519436e-09,7.972580956876867849e-09,8.542051025225216261e-09,9.111521093573564674e-09,9.680991161921913086e-09,1.025046123027026150e-08,1.081993129861860991e-08,1.138940136696695832e-08,1.195887143531530674e-08,1.252834150366365515e-08,1.309781157201200356e-08,1.366728164036035197e-08,1.423675170870870039e-08,1.480622177705704880e-08,1.537569184540539556e-08,1.594516191375374231e-08,1.651463198210208907e-08,1.708410205045043583e-08,1.765357211879878259e-08,1.822304218714712935e-08,1.879251225549547611e-08,1.936198232384382286e-08,1.993145239219216962e-08,2.050092246054051638e-08,2.107039252888886314e-08,2.163986259723720990e-08,2.220933266558555665e-08,2.277880273393390341e-08,2.334827280228225017e-08,2.391774287063059693e-08,2.448721293897894369e-08,2.505668300732729045e-08,2.562615307567563720e-08,2.619562314402398396e-08,2.676509321237233072e-08,2.733456328072067748e-08,2.790403334906902424e-08,2.847350341741737099e-08,2.904297348576571775e-08,2.961244355411406451e-08,3.018191362246241127e-08,3.075138369081075803e-08,3.132085375915910478e-08,3.189032382750745154e-08,3.245979389585579830e-08,3.302926396420414506e-08,3.359873403255249182e-08,3.416820410090083858e-08,3.473767416924918533e-08,3.530714423759753209e-08,3.587661430594587885e-08 +0.000000000000000000e+00,6.056853524672275501e-10,1.211370704934455100e-09,1.817056057401682754e-09,2.422741409868910614e-09,3.028426762336138474e-09,3.634112114803366335e-09,4.239797467270594195e-09,4.845482819737822055e-09,5.451168172205049916e-09,6.056853524672277776e-09,6.662538877139505636e-09,7.268224229606733497e-09,7.873909582073961357e-09,8.479594934541188390e-09,9.085280287008415423e-09,9.690965639475642456e-09,1.029665099194286949e-08,1.090233634441009652e-08,1.150802169687732356e-08,1.211370704934455059e-08,1.271939240181177762e-08,1.332507775427900465e-08,1.393076310674623169e-08,1.453644845921345872e-08,1.514213381168068741e-08,1.574781916414791610e-08,1.635350451661514478e-08,1.695918986908237347e-08,1.756487522154960216e-08,1.817056057401683085e-08,1.877624592648405953e-08,1.938193127895128822e-08,1.998761663141851691e-08,2.059330198388574560e-08,2.119898733635297428e-08,2.180467268882020297e-08,2.241035804128743166e-08,2.301604339375466035e-08,2.362172874622188903e-08,2.422741409868911772e-08,2.483309945115634641e-08,2.543878480362357510e-08,2.604447015609080378e-08,2.665015550855803247e-08,2.725584086102526116e-08,2.786152621349248985e-08,2.846721156595971853e-08,2.907289691842694722e-08,2.967858227089417591e-08,3.028426762336140129e-08,3.088995297582862667e-08,3.149563832829585204e-08,3.210132368076307742e-08,3.270700903323030280e-08,3.331269438569752818e-08,3.391837973816475356e-08,3.452406509063197894e-08,3.512975044309920432e-08,3.573543579556642970e-08,3.634112114803365507e-08,3.694680650050088045e-08,3.755249185296810583e-08,3.815817720543533121e-08 +0.000000000000000000e+00,-5.894611485656098852e-10,-1.178922297131219770e-09,-1.768383445696829759e-09,-2.357844594262439955e-09,-2.947305742828050150e-09,-3.536766891393660345e-09,-4.126228039959270541e-09,-4.715689188524880736e-09,-5.305150337090490932e-09,-5.894611485656101127e-09,-6.484072634221711322e-09,-7.073533782787321518e-09,-7.662994931352931713e-09,-8.252456079918541082e-09,-8.841917228484150450e-09,-9.431378377049759818e-09,-1.002083952561536919e-08,-1.061030067418097855e-08,-1.119976182274658792e-08,-1.178922297131219729e-08,-1.237868411987780666e-08,-1.296814526844341603e-08,-1.355760641700902540e-08,-1.414706756557463476e-08,-1.473652871414024413e-08,-1.532598986270585350e-08,-1.591545101127146287e-08,-1.650491215983707224e-08,-1.709437330840268161e-08,-1.768383445696829097e-08,-1.827329560553390034e-08,-1.886275675409950971e-08,-1.945221790266511908e-08,-2.004167905123072845e-08,-2.063114019979633781e-08,-2.122060134836194718e-08,-2.181006249692755655e-08,-2.239952364549316592e-08,-2.298898479405877529e-08,-2.357844594262438466e-08,-2.416790709118999402e-08,-2.475736823975560339e-08,-2.534682938832121276e-08,-2.593629053688682213e-08,-2.652575168545243150e-08,-2.711521283401804087e-08,-2.770467398258365023e-08,-2.829413513114925960e-08,-2.888359627971486897e-08,-2.947305742828047834e-08,-3.006251857684608771e-08,-3.065197972541170038e-08,-3.124144087397731306e-08,-3.183090202254292574e-08,-3.242036317110853841e-08,-3.300982431967415109e-08,-3.359928546823976377e-08,-3.418874661680537645e-08,-3.477820776537098912e-08,-3.536766891393660180e-08,-3.595713006250221448e-08,-3.654659121106782715e-08,-3.713605235963343983e-08 +0.000000000000000000e+00,-5.694700684081892429e-10,-1.138940136816378486e-09,-1.708410205224567832e-09,-2.277880273632757385e-09,-2.847350342040946939e-09,-3.416820410449136492e-09,-3.986290478857326458e-09,-4.555760547265516425e-09,-5.125230615673706392e-09,-5.694700684081896359e-09,-6.264170752490086325e-09,-6.833640820898276292e-09,-7.403110889306466259e-09,-7.972580957714656225e-09,-8.542051026122846192e-09,-9.111521094531036159e-09,-9.680991162939226126e-09,-1.025046123134741609e-08,-1.081993129975560606e-08,-1.138940136816379603e-08,-1.195887143657198599e-08,-1.252834150498017596e-08,-1.309781157338836593e-08,-1.366728164179655589e-08,-1.423675171020474586e-08,-1.480622177861293583e-08,-1.537569184702112414e-08,-1.594516191542931245e-08,-1.651463198383750076e-08,-1.708410205224568908e-08,-1.765357212065387739e-08,-1.822304218906206570e-08,-1.879251225747025401e-08,-1.936198232587844233e-08,-1.993145239428663064e-08,-2.050092246269481895e-08,-2.107039253110300726e-08,-2.163986259951119557e-08,-2.220933266791938389e-08,-2.277880273632757220e-08,-2.334827280473576051e-08,-2.391774287314394882e-08,-2.448721294155213714e-08,-2.505668300996032545e-08,-2.562615307836851376e-08,-2.619562314677670207e-08,-2.676509321518489039e-08,-2.733456328359307870e-08,-2.790403335200126701e-08,-2.847350342040945532e-08,-2.904297348881764364e-08,-2.961244355722583195e-08,-3.018191362563402026e-08,-3.075138369404220857e-08,-3.132085376245039688e-08,-3.189032383085858520e-08,-3.245979389926677351e-08,-3.302926396767496182e-08,-3.359873403608315013e-08,-3.416820410449133845e-08,-3.473767417289952676e-08,-3.530714424130771507e-08,-3.587661430971590338e-08 +0.000000000000000000e+00,-6.056853525351777491e-10,-1.211370705070355498e-09,-1.817056057605533144e-09,-2.422741410140710583e-09,-3.028426762675888022e-09,-3.634112115211065461e-09,-4.239797467746242900e-09,-4.845482820281420338e-09,-5.451168172816597777e-09,-6.056853525351775216e-09,-6.662538877886952655e-09,-7.268224230422130094e-09,-7.873909582957307533e-09,-8.479594935492485799e-09,-9.085280288027664065e-09,-9.690965640562842331e-09,-1.029665099309802060e-08,-1.090233634563319886e-08,-1.150802169816837713e-08,-1.211370705070355540e-08,-1.271939240323873366e-08,-1.332507775577391193e-08,-1.393076310830909019e-08,-1.453644846084426846e-08,-1.514213381337944507e-08,-1.574781916591462168e-08,-1.635350451844979830e-08,-1.695918987098497491e-08,-1.756487522352015152e-08,-1.817056057605532813e-08,-1.877624592859050474e-08,-1.938193128112568135e-08,-1.998761663366085797e-08,-2.059330198619603458e-08,-2.119898733873121119e-08,-2.180467269126638780e-08,-2.241035804380156441e-08,-2.301604339633674102e-08,-2.362172874887191764e-08,-2.422741410140709425e-08,-2.483309945394227086e-08,-2.543878480647744747e-08,-2.604447015901262408e-08,-2.665015551154780069e-08,-2.725584086408297731e-08,-2.786152621661815392e-08,-2.846721156915333053e-08,-2.907289692168850714e-08,-2.967858227422368375e-08,-3.028426762675886367e-08,-3.088995297929404359e-08,-3.149563833182922351e-08,-3.210132368436440343e-08,-3.270700903689958336e-08,-3.331269438943476328e-08,-3.391837974196994320e-08,-3.452406509450512312e-08,-3.512975044704030304e-08,-3.573543579957548296e-08,-3.634112115211066288e-08,-3.694680650464584280e-08,-3.755249185718102272e-08,-3.815817720971620264e-08 +0.000000000000000000e+00,6.212708724926965898e-10,1.242541744985393180e-09,1.863812617478089769e-09,2.485083489970786359e-09,3.106354362463482949e-09,3.727625234956179539e-09,4.348896107448876129e-09,4.970166979941572719e-09,5.591437852434269308e-09,6.212708724926965898e-09,6.833979597419662488e-09,7.455250469912359078e-09,8.076521342405054841e-09,8.697792214897750603e-09,9.319063087390446366e-09,9.940333959883142128e-09,1.056160483237583789e-08,1.118287570486853365e-08,1.180414657736122942e-08,1.242541744985392518e-08,1.304668832234662094e-08,1.366795919483931670e-08,1.428923006733201247e-08,1.491050093982470823e-08,1.553177181231740399e-08,1.615304268481009975e-08,1.677431355730279552e-08,1.739558442979549128e-08,1.801685530228818704e-08,1.863812617478088281e-08,1.925939704727357857e-08,1.988066791976627433e-08,2.050193879225897009e-08,2.112320966475166586e-08,2.174448053724436162e-08,2.236575140973705738e-08,2.298702228222975314e-08,2.360829315472244891e-08,2.422956402721514467e-08,2.485083489970784043e-08,2.547210577220053619e-08,2.609337664469323196e-08,2.671464751718592772e-08,2.733591838967862348e-08,2.795718926217131925e-08,2.857846013466401501e-08,2.919973100715671077e-08,2.982100187964940984e-08,3.044227275214210560e-08,3.106354362463480137e-08,3.168481449712749713e-08,3.230608536962019289e-08,3.292735624211288865e-08,3.354862711460558442e-08,3.416989798709828018e-08,3.479116885959097594e-08,3.541243973208367171e-08,3.603371060457636747e-08,3.665498147706906323e-08,3.727625234956175899e-08,3.789752322205445476e-08,3.851879409454715052e-08,3.914006496703984628e-08 +0.000000000000000000e+00,6.054681274265354651e-10,1.210936254853070930e-09,1.816404382279606499e-09,2.421872509706142274e-09,3.027340637132678049e-09,3.632808764559213825e-09,4.238276891985750014e-09,4.843745019412286203e-09,5.449213146838822392e-09,6.054681274265358581e-09,6.660149401691894769e-09,7.265617529118430958e-09,7.871085656544967147e-09,8.476553783971503336e-09,9.082021911398039525e-09,9.687490038824575714e-09,1.029295816625111190e-08,1.089842629367764809e-08,1.150389442110418428e-08,1.210936254853072047e-08,1.271483067595725666e-08,1.332029880338379285e-08,1.392576693081032904e-08,1.453123505823686523e-08,1.513670318566340141e-08,1.574217131308993760e-08,1.634763944051647379e-08,1.695310756794300998e-08,1.755857569536954617e-08,1.816404382279608236e-08,1.876951195022261855e-08,1.937498007764915474e-08,1.998044820507569093e-08,2.058591633250222711e-08,2.119138445992876330e-08,2.179685258735529949e-08,2.240232071478183568e-08,2.300778884220837187e-08,2.361325696963490806e-08,2.421872509706144425e-08,2.482419322448798044e-08,2.542966135191451663e-08,2.603512947934105282e-08,2.664059760676758900e-08,2.724606573419412519e-08,2.785153386162066138e-08,2.845700198904719757e-08,2.906247011647373376e-08,2.966793824390026995e-08,3.027340637132680283e-08,3.087887449875333571e-08,3.148434262617986859e-08,3.208981075360640147e-08,3.269527888103293435e-08,3.330074700845946723e-08,3.390621513588600011e-08,3.451168326331253299e-08,3.511715139073906587e-08,3.572261951816559875e-08,3.632808764559213163e-08,3.693355577301866451e-08,3.753902390044519739e-08,3.814449202787173027e-08 +0.000000000000000000e+00,6.355986637735471698e-10,1.271197327547094340e-09,1.906795991320641613e-09,2.542394655094189093e-09,3.177993318867736573e-09,3.813591982641284053e-09,4.449190646414831533e-09,5.084789310188379013e-09,5.720387973961926493e-09,6.355986637735473973e-09,6.991585301509021453e-09,7.627183965282569760e-09,8.262782629056118068e-09,8.898381292829666375e-09,9.533979956603214682e-09,1.016957862037676299e-08,1.080517728415031130e-08,1.144077594792385960e-08,1.207637461169740791e-08,1.271197327547095622e-08,1.334757193924450453e-08,1.398317060301805283e-08,1.461876926679160114e-08,1.525436793056514945e-08,1.588996659433869775e-08,1.652556525811224606e-08,1.716116392188579437e-08,1.779676258565934268e-08,1.843236124943289098e-08,1.906795991320643929e-08,1.970355857697998760e-08,2.033915724075353590e-08,2.097475590452708421e-08,2.161035456830063252e-08,2.224595323207418083e-08,2.288155189584772913e-08,2.351715055962127744e-08,2.415274922339482575e-08,2.478834788716837406e-08,2.542394655094192236e-08,2.605954521471547067e-08,2.669514387848901898e-08,2.733074254226256728e-08,2.796634120603611559e-08,2.860193986980966390e-08,2.923753853358321221e-08,2.987313719735675720e-08,3.050873586113030551e-08,3.114433452490385382e-08,3.177993318867740213e-08,3.241553185245095043e-08,3.305113051622449874e-08,3.368672917999804705e-08,3.432232784377159535e-08,3.495792650754514366e-08,3.559352517131869197e-08,3.622912383509224028e-08,3.686472249886578858e-08,3.750032116263933689e-08,3.813591982641288520e-08,3.877151849018643351e-08,3.940711715395998181e-08,4.004271581773353012e-08 +0.000000000000000000e+00,-6.212708725349631410e-10,-1.242541745069926282e-09,-1.863812617604889526e-09,-2.485083490139852978e-09,-3.106354362674816429e-09,-3.727625235209779880e-09,-4.348896107744742917e-09,-4.970166980279705955e-09,-5.591437852814668993e-09,-6.212708725349632030e-09,-6.833979597884595068e-09,-7.455250470419558105e-09,-8.076521342954521143e-09,-8.697792215489484181e-09,-9.319063088024447218e-09,-9.940333960559410256e-09,-1.056160483309437329e-08,-1.118287570562933633e-08,-1.180414657816429937e-08,-1.242541745069926241e-08,-1.304668832323422544e-08,-1.366795919576918848e-08,-1.428923006830415152e-08,-1.491050094083911290e-08,-1.553177181337407429e-08,-1.615304268590903567e-08,-1.677431355844399705e-08,-1.739558443097895843e-08,-1.801685530351391982e-08,-1.863812617604888120e-08,-1.925939704858384258e-08,-1.988066792111880397e-08,-2.050193879365376535e-08,-2.112320966618872673e-08,-2.174448053872368812e-08,-2.236575141125864950e-08,-2.298702228379361088e-08,-2.360829315632857227e-08,-2.422956402886353365e-08,-2.485083490139849503e-08,-2.547210577393345642e-08,-2.609337664646841780e-08,-2.671464751900337918e-08,-2.733591839153834057e-08,-2.795718926407330195e-08,-2.857846013660826333e-08,-2.919973100914322472e-08,-2.982100188167818610e-08,-3.044227275421314748e-08,-3.106354362674810887e-08,-3.168481449928307025e-08,-3.230608537181803163e-08,-3.292735624435299302e-08,-3.354862711688795440e-08,-3.416989798942291578e-08,-3.479116886195787717e-08,-3.541243973449283855e-08,-3.603371060702779993e-08,-3.665498147956276131e-08,-3.727625235209772270e-08,-3.789752322463268408e-08,-3.851879409716764546e-08,-3.914006496970260685e-08 +0.000000000000000000e+00,-6.054681274743054557e-10,-1.210936254948610911e-09,-1.816404382422916367e-09,-2.421872509897221823e-09,-3.027340637371527279e-09,-3.632808764845832734e-09,-4.238276892320137776e-09,-4.843745019794442818e-09,-5.449213147268747861e-09,-6.054681274743052903e-09,-6.660149402217357945e-09,-7.265617529691662987e-09,-7.871085657165968029e-09,-8.476553784640272244e-09,-9.082021912114576459e-09,-9.687490039588880674e-09,-1.029295816706318489e-08,-1.089842629453748910e-08,-1.150389442201179332e-08,-1.210936254948609753e-08,-1.271483067696040175e-08,-1.332029880443470596e-08,-1.392576693190901018e-08,-1.453123505938331439e-08,-1.513670318685761861e-08,-1.574217131433192282e-08,-1.634763944180622704e-08,-1.695310756928053125e-08,-1.755857569675483547e-08,-1.816404382422913968e-08,-1.876951195170344390e-08,-1.937498007917774811e-08,-1.998044820665205233e-08,-2.058591633412635654e-08,-2.119138446160066076e-08,-2.179685258907496497e-08,-2.240232071654926919e-08,-2.300778884402357340e-08,-2.361325697149787762e-08,-2.421872509897218183e-08,-2.482419322644648605e-08,-2.542966135392079026e-08,-2.603512948139509448e-08,-2.664059760886939869e-08,-2.724606573634370291e-08,-2.785153386381800712e-08,-2.845700199129231134e-08,-2.906247011876661555e-08,-2.966793824624091977e-08,-3.027340637371522398e-08,-3.087887450118952820e-08,-3.148434262866383241e-08,-3.208981075613813663e-08,-3.269527888361244084e-08,-3.330074701108674506e-08,-3.390621513856104927e-08,-3.451168326603535349e-08,-3.511715139350965770e-08,-3.572261952098396192e-08,-3.632808764845826613e-08,-3.693355577593257035e-08,-3.753902390340687456e-08,-3.814449203088117878e-08 +0.000000000000000000e+00,-6.355986638281494655e-10,-1.271197327656298931e-09,-1.906795991484448190e-09,-2.542394655312597448e-09,-3.177993319140746707e-09,-3.813591982968896379e-09,-4.449190646797046052e-09,-5.084789310625195724e-09,-5.720387974453345396e-09,-6.355986638281495068e-09,-6.991585302109644741e-09,-7.627183965937794413e-09,-8.262782629765944912e-09,-8.898381293594095412e-09,-9.533979957422245911e-09,-1.016957862125039641e-08,-1.080517728507854691e-08,-1.144077594890669741e-08,-1.207637461273484791e-08,-1.271197327656299841e-08,-1.334757194039114891e-08,-1.398317060421929941e-08,-1.461876926804744991e-08,-1.525436793187559875e-08,-1.588996659570374760e-08,-1.652556525953189644e-08,-1.716116392336004529e-08,-1.779676258718819413e-08,-1.843236125101634298e-08,-1.906795991484449182e-08,-1.970355857867264067e-08,-2.033915724250078951e-08,-2.097475590632893836e-08,-2.161035457015708720e-08,-2.224595323398523605e-08,-2.288155189781338489e-08,-2.351715056164153374e-08,-2.415274922546968258e-08,-2.478834788929783143e-08,-2.542394655312598027e-08,-2.605954521695412912e-08,-2.669514388078227796e-08,-2.733074254461042681e-08,-2.796634120843857565e-08,-2.860193987226672450e-08,-2.923753853609487334e-08,-2.987313719992302219e-08,-3.050873586375117103e-08,-3.114433452757931988e-08,-3.177993319140746872e-08,-3.241553185523561757e-08,-3.305113051906376641e-08,-3.368672918289191526e-08,-3.432232784672006410e-08,-3.495792651054821295e-08,-3.559352517437636179e-08,-3.622912383820451064e-08,-3.686472250203265949e-08,-3.750032116586080833e-08,-3.813591982968895718e-08,-3.877151849351710602e-08,-3.940711715734525487e-08,-4.004271582117340371e-08 +0.000000000000000000e+00,6.468493220845954031e-10,1.293698644169190806e-09,1.940547966253786003e-09,2.587397288338381199e-09,3.234246610422976395e-09,3.881095932507572005e-09,4.527945254592167615e-09,5.174794576676763225e-09,5.821643898761358835e-09,6.468493220845954445e-09,7.115342542930550055e-09,7.762191865015145665e-09,8.409041187099740447e-09,9.055890509184335230e-09,9.702739831268930013e-09,1.034958915335352480e-08,1.099643847543811958e-08,1.164328779752271436e-08,1.229013711960730914e-08,1.293698644169190393e-08,1.358383576377649871e-08,1.423068508586109349e-08,1.487753440794568827e-08,1.552438373003028140e-08,1.617123305211487453e-08,1.681808237419946766e-08,1.746493169628406079e-08,1.811178101836865392e-08,1.875863034045324705e-08,1.940547966253784017e-08,2.005232898462243330e-08,2.069917830670702643e-08,2.134602762879161956e-08,2.199287695087621269e-08,2.263972627296080582e-08,2.328657559504539894e-08,2.393342491712999207e-08,2.458027423921458520e-08,2.522712356129917833e-08,2.587397288338377146e-08,2.652082220546836459e-08,2.716767152755295771e-08,2.781452084963755084e-08,2.846137017172214397e-08,2.910821949380673710e-08,2.975506881589133023e-08,3.040191813797592666e-08,3.104876746006052310e-08,3.169561678214511954e-08,3.234246610422971598e-08,3.298931542631431241e-08,3.363616474839890885e-08,3.428301407048350529e-08,3.492986339256810172e-08,3.557671271465269816e-08,3.622356203673729460e-08,3.687041135882189104e-08,3.751726068090648747e-08,3.816411000299108391e-08,3.881095932507568035e-08,3.945780864716027678e-08,4.010465796924487322e-08,4.075150729132946966e-08 +0.000000000000000000e+00,6.340608597425434315e-10,1.268121719485086863e-09,1.902182579227630088e-09,2.536243438970173312e-09,3.170304298712716537e-09,3.804365158455260175e-09,4.438426018197803814e-09,5.072486877940347452e-09,5.706547737682891090e-09,6.340608597425434729e-09,6.974669457167978367e-09,7.608730316910522005e-09,8.242791176653064816e-09,8.876852036395607627e-09,9.510912896138150438e-09,1.014497375588069325e-08,1.077903461562323606e-08,1.141309547536577887e-08,1.204715633510832168e-08,1.268121719485086449e-08,1.331527805459340731e-08,1.394933891433595012e-08,1.458339977407849293e-08,1.521746063382103408e-08,1.585152149356357524e-08,1.648558235330611640e-08,1.711964321304865755e-08,1.775370407279119871e-08,1.838776493253373987e-08,1.902182579227628102e-08,1.965588665201882218e-08,2.028994751176136334e-08,2.092400837150390449e-08,2.155806923124644565e-08,2.219213009098898681e-08,2.282619095073152797e-08,2.346025181047406912e-08,2.409431267021661028e-08,2.472837352995915144e-08,2.536243438970169259e-08,2.599649524944423375e-08,2.663055610918677491e-08,2.726461696892931606e-08,2.789867782867185722e-08,2.853273868841439838e-08,2.916679954815693953e-08,2.980086040789948069e-08,3.043492126764202185e-08,3.106898212738456300e-08,3.170304298712710416e-08,3.233710384686964532e-08,3.297116470661218647e-08,3.360522556635472763e-08,3.423928642609726879e-08,3.487334728583980994e-08,3.550740814558235110e-08,3.614146900532489226e-08,3.677552986506743341e-08,3.740959072480997457e-08,3.804365158455251573e-08,3.867771244429505688e-08,3.931177330403759804e-08,3.994583416378013920e-08 +0.000000000000000000e+00,6.617542212485317299e-10,1.323508442497063460e-09,1.985262663745595086e-09,2.647016884994126506e-09,3.308771106242657926e-09,3.970525327491189346e-09,4.632279548739721179e-09,5.294033769988253012e-09,5.955787991236784845e-09,6.617542212485316679e-09,7.279296433733848512e-09,7.941050654982380345e-09,8.602804876230912179e-09,9.264559097479444012e-09,9.926313318727975845e-09,1.058806753997650768e-08,1.124982176122503951e-08,1.191157598247357135e-08,1.257333020372210318e-08,1.323508442497063501e-08,1.389683864621916685e-08,1.455859286746769868e-08,1.522034708871623051e-08,1.588210130996476400e-08,1.654385553121329749e-08,1.720560975246183097e-08,1.786736397371036446e-08,1.852911819495889795e-08,1.919087241620743144e-08,1.985262663745596493e-08,2.051438085870449841e-08,2.117613507995303190e-08,2.183788930120156539e-08,2.249964352245009888e-08,2.316139774369863236e-08,2.382315196494716585e-08,2.448490618619569934e-08,2.514666040744423283e-08,2.580841462869276631e-08,2.647016884994129980e-08,2.713192307118983329e-08,2.779367729243836678e-08,2.845543151368690027e-08,2.911718573493543375e-08,2.977893995618396724e-08,3.044069417743250073e-08,3.110244839868103752e-08,3.176420261992957432e-08,3.242595684117811112e-08,3.308771106242664791e-08,3.374946528367518471e-08,3.441121950492372151e-08,3.507297372617225830e-08,3.573472794742079510e-08,3.639648216866933190e-08,3.705823638991786869e-08,3.771999061116640549e-08,3.838174483241494229e-08,3.904349905366347908e-08,3.970525327491201588e-08,4.036700749616055267e-08,4.102876171740908947e-08,4.169051593865762627e-08 +0.000000000000000000e+00,-6.468493221158045140e-10,-1.293698644231609028e-09,-1.940547966347413749e-09,-2.587397288463218470e-09,-3.234246610579023191e-09,-3.881095932694827498e-09,-4.527945254810631805e-09,-5.174794576926436112e-09,-5.821643899042240420e-09,-6.468493221158044727e-09,-7.115342543273849034e-09,-7.762191865389653341e-09,-8.409041187505457649e-09,-9.055890509621261956e-09,-9.702739831737066263e-09,-1.034958915385287057e-08,-1.099643847596867488e-08,-1.164328779808447918e-08,-1.229013712020028349e-08,-1.293698644231608780e-08,-1.358383576443189211e-08,-1.423068508654769641e-08,-1.487753440866350072e-08,-1.552438373077930337e-08,-1.617123305289510768e-08,-1.681808237501091199e-08,-1.746493169712671630e-08,-1.811178101924252060e-08,-1.875863034135832491e-08,-1.940547966347412922e-08,-2.005232898558993352e-08,-2.069917830770573783e-08,-2.134602762982154214e-08,-2.199287695193734645e-08,-2.263972627405315075e-08,-2.328657559616895506e-08,-2.393342491828475937e-08,-2.458027424040056368e-08,-2.522712356251636798e-08,-2.587397288463217229e-08,-2.652082220674797660e-08,-2.716767152886378090e-08,-2.781452085097958521e-08,-2.846137017309538952e-08,-2.910821949521119383e-08,-2.975506881732699813e-08,-3.040191813944280244e-08,-3.104876746155860675e-08,-3.169561678367441106e-08,-3.234246610579021536e-08,-3.298931542790601967e-08,-3.363616475002182398e-08,-3.428301407213762828e-08,-3.492986339425343259e-08,-3.557671271636923690e-08,-3.622356203848504121e-08,-3.687041136060084551e-08,-3.751726068271664982e-08,-3.816411000483245413e-08,-3.881095932694825844e-08,-3.945780864906406274e-08,-4.010465797117986705e-08,-4.075150729329567136e-08 +0.000000000000000000e+00,-6.340608597793582420e-10,-1.268121719558716484e-09,-1.902182579338074829e-09,-2.536243439117433382e-09,-3.170304298896791934e-09,-3.804365158676150486e-09,-4.438426018455509452e-09,-5.072486878234868418e-09,-5.706547738014227384e-09,-6.340608597793586349e-09,-6.974669457572945315e-09,-7.608730317352304281e-09,-8.242791177131663247e-09,-8.876852036911022213e-09,-9.510912896690381178e-09,-1.014497375646974014e-08,-1.077903461624909911e-08,-1.141309547602845808e-08,-1.204715633580781704e-08,-1.268121719558717601e-08,-1.331527805536653497e-08,-1.394933891514589394e-08,-1.458339977492525290e-08,-1.521746063470461187e-08,-1.585152149448396918e-08,-1.648558235426332649e-08,-1.711964321404268381e-08,-1.775370407382204112e-08,-1.838776493360139843e-08,-1.902182579338075574e-08,-1.965588665316011305e-08,-2.028994751293947036e-08,-2.092400837271882767e-08,-2.155806923249818499e-08,-2.219213009227754230e-08,-2.282619095205689961e-08,-2.346025181183625692e-08,-2.409431267161561423e-08,-2.472837353139497154e-08,-2.536243439117432885e-08,-2.599649525095368617e-08,-2.663055611073304348e-08,-2.726461697051240079e-08,-2.789867783029175810e-08,-2.853273869007111541e-08,-2.916679954985047272e-08,-2.980086040962983003e-08,-3.043492126940919065e-08,-3.106898212918855127e-08,-3.170304298896791189e-08,-3.233710384874727251e-08,-3.297116470852663314e-08,-3.360522556830599376e-08,-3.423928642808535438e-08,-3.487334728786471500e-08,-3.550740814764407562e-08,-3.614146900742343624e-08,-3.677552986720279686e-08,-3.740959072698215748e-08,-3.804365158676151810e-08,-3.867771244654087872e-08,-3.931177330632023934e-08,-3.994583416609959996e-08 +0.000000000000000000e+00,-6.617542212902422089e-10,-1.323508442580484418e-09,-1.985262663870726420e-09,-2.647016885160968422e-09,-3.308771106451210424e-09,-3.970525327741452840e-09,-4.632279549031695256e-09,-5.294033770321937671e-09,-5.955787991612180087e-09,-6.617542212902422503e-09,-7.279296434192664918e-09,-7.941050655482907334e-09,-8.602804876773148923e-09,-9.264559098063390511e-09,-9.926313319353632100e-09,-1.058806754064387369e-08,-1.124982176193411528e-08,-1.191157598322435687e-08,-1.257333020451459845e-08,-1.323508442580484004e-08,-1.389683864709508163e-08,-1.455859286838532322e-08,-1.522034708967556481e-08,-1.588210131096580474e-08,-1.654385553225604468e-08,-1.720560975354628461e-08,-1.786736397483652454e-08,-1.852911819612676448e-08,-1.919087241741700441e-08,-1.985262663870724435e-08,-2.051438085999748428e-08,-2.117613508128772422e-08,-2.183788930257796415e-08,-2.249964352386820408e-08,-2.316139774515844402e-08,-2.382315196644868395e-08,-2.448490618773892389e-08,-2.514666040902916382e-08,-2.580841463031940375e-08,-2.647016885160964369e-08,-2.713192307289988362e-08,-2.779367729419012356e-08,-2.845543151548036349e-08,-2.911718573677060343e-08,-2.977893995806084336e-08,-3.044069417935108329e-08,-3.110244840064132323e-08,-3.176420262193156316e-08,-3.242595684322180310e-08,-3.308771106451204303e-08,-3.374946528580228296e-08,-3.441121950709252290e-08,-3.507297372838276283e-08,-3.573472794967300277e-08,-3.639648217096324270e-08,-3.705823639225348264e-08,-3.771999061354372257e-08,-3.838174483483396250e-08,-3.904349905612420244e-08,-3.970525327741444237e-08,-4.036700749870468231e-08,-4.102876171999492224e-08,-4.169051594128516217e-08 +0.000000000000000000e+00,-7.566326230924112973e-10,-1.513265246184822595e-09,-2.269897869277233995e-09,-3.026530492369645603e-09,-3.783163115462057624e-09,-4.539795738554469645e-09,-5.296428361646881666e-09,-6.053060984739293687e-09,-6.809693607831705709e-09,-7.566326230924118557e-09,-8.322958854016531405e-09,-9.079591477108944253e-09,-9.836224100201357102e-09,-1.059285672329376995e-08,-1.134948934638618280e-08,-1.210612196947859565e-08,-1.286275459257100849e-08,-1.361938721566342134e-08,-1.437601983875583419e-08,-1.513265246184824704e-08,-1.588928508494066154e-08,-1.664591770803307605e-08,-1.740255033112549055e-08,-1.815918295421790505e-08,-1.891581557731031955e-08,-1.967244820040273406e-08,-2.042908082349514856e-08,-2.118571344658756306e-08,-2.194234606967997756e-08,-2.269897869277239207e-08,-2.345561131586480657e-08,-2.421224393895722107e-08,-2.496887656204963557e-08,-2.572550918514205008e-08,-2.648214180823446458e-08,-2.723877443132687908e-08,-2.799540705441929358e-08,-2.875203967751170809e-08,-2.950867230060412259e-08,-3.026530492369654040e-08,-3.102193754678895821e-08,-3.177857016988137602e-08,-3.253520279297379384e-08,-3.329183541606621165e-08,-3.404846803915862946e-08,-3.480510066225104727e-08,-3.556173328534346508e-08,-3.631836590843588289e-08,-3.707499853152830070e-08,-3.783163115462071852e-08,-3.858826377771313633e-08,-3.934489640080555414e-08,-4.010152902389797195e-08,-4.085816164699038976e-08,-4.161479427008280757e-08,-4.237142689317522538e-08,-4.312805951626764320e-08,-4.388469213936006101e-08,-4.464132476245247882e-08,-4.539795738554489663e-08,-4.615459000863731444e-08,-4.691122263172973225e-08,-4.766785525482215006e-08 +0.000000000000000000e+00,-8.019340132534202740e-11,-1.603868026506840548e-10,-2.405802039760260822e-10,-3.207736053013681096e-10,-4.009670066267101370e-10,-4.811604079520521644e-10,-5.613538092773941918e-10,-6.415472106027362192e-10,-7.217406119280782466e-10,-8.019340132534202740e-10,-8.821274145787623014e-10,-9.623208159041043288e-10,-1.042514217229446356e-09,-1.122707618554788384e-09,-1.202901019880130411e-09,-1.283094421205472438e-09,-1.363287822530814466e-09,-1.443481223856156493e-09,-1.523674625181498521e-09,-1.603868026506840548e-09,-1.684061427832182575e-09,-1.764254829157524603e-09,-1.844448230482866630e-09,-1.924641631808208658e-09,-2.004835033133550685e-09,-2.085028434458892712e-09,-2.165221835784234740e-09,-2.245415237109576767e-09,-2.325608638434918795e-09,-2.405802039760260822e-09,-2.485995441085602849e-09,-2.566188842410944877e-09,-2.646382243736286904e-09,-2.726575645061628932e-09,-2.806769046386970959e-09,-2.886962447712312986e-09,-2.967155849037655014e-09,-3.047349250362997041e-09,-3.127542651688339068e-09,-3.207736053013681096e-09,-3.287929454339023123e-09,-3.368122855664365151e-09,-3.448316256989707178e-09,-3.528509658315049205e-09,-3.608703059640391233e-09,-3.688896460965733260e-09,-3.769089862291075288e-09,-3.849283263616417315e-09,-3.929476664941759342e-09,-4.009670066267101370e-09,-4.089863467592443397e-09,-4.170056868917785425e-09,-4.250250270243127452e-09,-4.330443671568469479e-09,-4.410637072893811507e-09,-4.490830474219153534e-09,-4.571023875544495562e-09,-4.651217276869837589e-09,-4.731410678195179616e-09,-4.811604079520521644e-09,-4.891797480845863671e-09,-4.971990882171205699e-09,-5.052184283496547726e-09 +0.000000000000000000e+00,-6.839773282104294368e-20,-1.367954656420858874e-19,-2.051931984631288310e-19,-2.735909312841717747e-19,-3.419886641052147184e-19,-4.103863969262576621e-19,-4.787841297473005576e-19,-5.471818625683434532e-19,-6.155795953893863487e-19,-6.839773282104292442e-19,-7.523750610314721398e-19,-8.207727938525150353e-19,-8.891705266735579308e-19,-9.575682594946007301e-19,-1.025965992315643529e-18,-1.094363725136686329e-18,-1.162761457957729128e-18,-1.231159190778771927e-18,-1.299556923599814726e-18,-1.367954656420857525e-18,-1.436352389241900325e-18,-1.504750122062943124e-18,-1.573147854883985923e-18,-1.641545587705028722e-18,-1.709943320526071522e-18,-1.778341053347114321e-18,-1.846738786168157313e-18,-1.915136518989200305e-18,-1.983534251810243296e-18,-2.051931984631286288e-18,-2.120329717452329280e-18,-2.188727450273372272e-18,-2.257125183094415264e-18,-2.325522915915458256e-18,-2.393920648736501247e-18,-2.462318381557544239e-18,-2.530716114378587231e-18,-2.599113847199630223e-18,-2.667511580020673215e-18,-2.735909312841716207e-18,-2.804307045662759198e-18,-2.872704778483802190e-18,-2.941102511304845182e-18,-3.009500244125888174e-18,-3.077897976946931166e-18,-3.146295709767974157e-18,-3.214693442589017149e-18,-3.283091175410060141e-18,-3.351488908231103133e-18,-3.419886641052146125e-18,-3.488284373873189117e-18,-3.556682106694232494e-18,-3.625079839515275871e-18,-3.693477572336319248e-18,-3.761875305157362625e-18,-3.830273037978406002e-18,-3.898670770799449379e-18,-3.967068503620492756e-18,-4.035466236441536133e-18,-4.103863969262579510e-18,-4.172261702083622887e-18,-4.240659434904666264e-18,-4.309057167725709641e-18 +0.000000000000000000e+00,7.566326229558400559e-10,1.513265245911680112e-09,2.269897868867520271e-09,3.026530491823360637e-09,3.783163114779201003e-09,4.539795737735041369e-09,5.296428360690881735e-09,6.053060983646722101e-09,6.809693606602562468e-09,7.566326229558403661e-09,8.322958852514244027e-09,9.079591475470084393e-09,9.836224098425924759e-09,1.059285672138176513e-08,1.134948934433760549e-08,1.210612196729344586e-08,1.286275459024928622e-08,1.361938721320512659e-08,1.437601983616096696e-08,1.513265245911680732e-08,1.588928508207264769e-08,1.664591770502848805e-08,1.740255032798432842e-08,1.815918295094016879e-08,1.891581557389600915e-08,1.967244819685184952e-08,2.042908081980768988e-08,2.118571344276353025e-08,2.194234606571937062e-08,2.269897868867521098e-08,2.345561131163105135e-08,2.421224393458689171e-08,2.496887655754273208e-08,2.572550918049857245e-08,2.648214180345441281e-08,2.723877442641025318e-08,2.799540704936609354e-08,2.875203967232193391e-08,2.950867229527777428e-08,3.026530491823361464e-08,3.102193754118945501e-08,3.177857016414529538e-08,3.253520278710113574e-08,3.329183541005697611e-08,3.404846803301281647e-08,3.480510065596865684e-08,3.556173327892449721e-08,3.631836590188033757e-08,3.707499852483617794e-08,3.783163114779201830e-08,3.858826377074785867e-08,3.934489639370369904e-08,4.010152901665953940e-08,4.085816163961537977e-08,4.161479426257122013e-08,4.237142688552706050e-08,4.312805950848290087e-08,4.388469213143874123e-08,4.464132475439458160e-08,4.539795737735042196e-08,4.615459000030626233e-08,4.691122262326210270e-08,4.766785524621794306e-08 +0.000000000000000000e+00,8.019340120555567645e-11,1.603868024111113529e-10,2.405802036166670293e-10,3.207736048222227058e-10,4.009670060277783822e-10,4.811604072333340587e-10,5.613538084388896834e-10,6.415472096444453082e-10,7.217406108500009329e-10,8.019340120555565577e-10,8.821274132611121824e-10,9.623208144666679106e-10,1.042514215672223639e-09,1.122707616877779367e-09,1.202901018083335095e-09,1.283094419288890823e-09,1.363287820494446551e-09,1.443481221700002279e-09,1.523674622905558008e-09,1.603868024111113736e-09,1.684061425316669464e-09,1.764254826522225192e-09,1.844448227727780920e-09,1.924641628933336648e-09,2.004835030138892170e-09,2.085028431344447691e-09,2.165221832550003212e-09,2.245415233755558734e-09,2.325608634961114255e-09,2.405802036166669776e-09,2.485995437372225298e-09,2.566188838577780819e-09,2.646382239783336341e-09,2.726575640988891862e-09,2.806769042194447383e-09,2.886962443400002905e-09,2.967155844605558426e-09,3.047349245811113947e-09,3.127542647016669469e-09,3.207736048222224990e-09,3.287929449427780511e-09,3.368122850633336033e-09,3.448316251838891554e-09,3.528509653044447075e-09,3.608703054250002597e-09,3.688896455455558118e-09,3.769089856661113639e-09,3.849283257866669161e-09,3.929476659072224682e-09,4.009670060277780203e-09,4.089863461483335725e-09,4.170056862688891246e-09,4.250250263894446768e-09,4.330443665100002289e-09,4.410637066305557810e-09,4.490830467511113332e-09,4.571023868716668853e-09,4.651217269922224374e-09,4.731410671127779896e-09,4.811604072333335417e-09,4.891797473538890938e-09,4.971990874744446460e-09,5.052184275950001981e-09 +0.000000000000000000e+00,2.165975233644505097e-10,4.331950467289010195e-10,6.497925700933515292e-10,8.663900934578020390e-10,1.082987616822252445e-09,1.299585140186702852e-09,1.516182663551153258e-09,1.732780186915603664e-09,1.949377710280054071e-09,2.165975233644504477e-09,2.382572757008954883e-09,2.599170280373405290e-09,2.815767803737855696e-09,3.032365327102306102e-09,3.248962850466756509e-09,3.465560373831206915e-09,3.682157897195657321e-09,3.898755420560107314e-09,4.115352943924556893e-09,4.331950467289006472e-09,4.548547990653456052e-09,4.765145514017905631e-09,4.981743037382355210e-09,5.198340560746804789e-09,5.414938084111254368e-09,5.631535607475703947e-09,5.848133130840153527e-09,6.064730654204603106e-09,6.281328177569052685e-09,6.497925700933502264e-09,6.714523224297951843e-09,6.931120747662401422e-09,7.147718271026851002e-09,7.364315794391300581e-09,7.580913317755750160e-09,7.797510841120199739e-09,8.014108364484649318e-09,8.230705887849098897e-09,8.447303411213548477e-09,8.663900934577998056e-09,8.880498457942447635e-09,9.097095981306897214e-09,9.313693504671346793e-09,9.530291028035796372e-09,9.746888551400245951e-09,9.963486074764695531e-09,1.018008359812914511e-08,1.039668112149359469e-08,1.061327864485804427e-08,1.082987616822249385e-08,1.104647369158694343e-08,1.126307121495139301e-08,1.147966873831584258e-08,1.169626626168029216e-08,1.191286378504474174e-08,1.212946130840919132e-08,1.234605883177364090e-08,1.256265635513809048e-08,1.277925387850254006e-08,1.299585140186698964e-08,1.321244892523143922e-08,1.342904644859588880e-08,1.364564397196033838e-08 +0.000000000000000000e+00,-2.165975234672770990e-10,-4.331950469345541981e-10,-6.497925704018312713e-10,-8.663900938691082928e-10,-1.082987617336385314e-09,-1.299585140803662336e-09,-1.516182664270939357e-09,-1.732780187738216379e-09,-1.949377711205493400e-09,-2.165975234672770629e-09,-2.382572758140047857e-09,-2.599170281607325085e-09,-2.815767805074602313e-09,-3.032365328541879542e-09,-3.248962852009156770e-09,-3.465560375476433998e-09,-3.682157898943711227e-09,-3.898755422410988455e-09,-4.115352945878265683e-09,-4.331950469345542911e-09,-4.548547992812820140e-09,-4.765145516280097368e-09,-4.981743039747374596e-09,-5.198340563214651825e-09,-5.414938086681929053e-09,-5.631535610149206281e-09,-5.848133133616483509e-09,-6.064730657083760738e-09,-6.281328180551037966e-09,-6.497925704018315194e-09,-6.714523227485592423e-09,-6.931120750952869651e-09,-7.147718274420146879e-09,-7.364315797887424107e-09,-7.580913321354700509e-09,-7.797510844821976910e-09,-8.014108368289253311e-09,-8.230705891756529712e-09,-8.447303415223806113e-09,-8.663900938691082514e-09,-8.880498462158358915e-09,-9.097095985625635316e-09,-9.313693509092911717e-09,-9.530291032560188118e-09,-9.746888556027464520e-09,-9.963486079494740921e-09,-1.018008360296201732e-08,-1.039668112642929372e-08,-1.061327864989657012e-08,-1.082987617336384653e-08,-1.104647369683112293e-08,-1.126307122029839933e-08,-1.147966874376567573e-08,-1.169626626723295213e-08,-1.191286379070022853e-08,-1.212946131416750493e-08,-1.234605883763478133e-08,-1.256265636110205773e-08,-1.277925388456933414e-08,-1.299585140803661054e-08,-1.321244893150388694e-08,-1.342904645497116334e-08,-1.364564397843843974e-08 +0.000000000000000000e+00,3.682817649269046323e-10,7.365635298538092646e-10,1.104845294780713794e-09,1.473127059707618322e-09,1.841408824634522851e-09,2.209690589561427587e-09,2.577972354488332323e-09,2.946254119415237059e-09,3.314535884342141794e-09,3.682817649269046530e-09,4.051099414195950852e-09,4.419381179122855174e-09,4.787662944049759496e-09,5.155944708976663819e-09,5.524226473903568141e-09,5.892508238830472463e-09,6.260790003757376785e-09,6.629071768684281107e-09,6.997353533611185429e-09,7.365635298538089751e-09,7.733917063464994073e-09,8.102198828391898396e-09,8.470480593318802718e-09,8.838762358245707040e-09,9.207044123172611362e-09,9.575325888099515684e-09,9.943607653026420006e-09,1.031188941795332433e-08,1.068017118288022865e-08,1.104845294780713297e-08,1.141673471273403729e-08,1.178501647766094162e-08,1.215329824258784594e-08,1.252158000751475026e-08,1.288986177244165458e-08,1.325814353736855891e-08,1.362642530229546323e-08,1.399470706722236755e-08,1.436298883214927187e-08,1.473127059707617619e-08,1.509955236200308052e-08,1.546783412692998484e-08,1.583611589185688916e-08,1.620439765678379348e-08,1.657267942171069780e-08,1.694096118663760213e-08,1.730924295156450645e-08,1.767752471649141077e-08,1.804580648141831509e-08,1.841408824634521942e-08,1.878237001127212374e-08,1.915065177619902806e-08,1.951893354112593238e-08,1.988721530605283670e-08,2.025549707097974103e-08,2.062377883590664535e-08,2.099206060083354967e-08,2.136034236576045399e-08,2.172862413068735831e-08,2.209690589561426264e-08,2.246518766054116696e-08,2.283346942546807128e-08,2.320175119039497560e-08 +0.000000000000000000e+00,-3.682817650113190859e-10,-7.365635300226381718e-10,-1.104845295033957206e-09,-1.473127060045276137e-09,-1.841408825056595068e-09,-2.209690590067913999e-09,-2.577972355079232929e-09,-2.946254120090551860e-09,-3.314535885101870791e-09,-3.682817650113189722e-09,-4.051099415124509066e-09,-4.419381180135828824e-09,-4.787662945147148582e-09,-5.155944710158468340e-09,-5.524226475169788098e-09,-5.892508240181107856e-09,-6.260790005192427614e-09,-6.629071770203747372e-09,-6.997353535215067130e-09,-7.365635300226386888e-09,-7.733917065237706646e-09,-8.102198830249026404e-09,-8.470480595260346162e-09,-8.838762360271665920e-09,-9.207044125282985678e-09,-9.575325890294305436e-09,-9.943607655305625194e-09,-1.031188942031694495e-08,-1.068017118532826471e-08,-1.104845295033958447e-08,-1.141673471535090423e-08,-1.178501648036222398e-08,-1.215329824537354374e-08,-1.252158001038486350e-08,-1.288986177539618326e-08,-1.325814354040750302e-08,-1.362642530541882277e-08,-1.399470707043014253e-08,-1.436298883544146229e-08,-1.473127060045278205e-08,-1.509955236546410346e-08,-1.546783413047542322e-08,-1.583611589548674298e-08,-1.620439766049806273e-08,-1.657267942550938249e-08,-1.694096119052070225e-08,-1.730924295553202201e-08,-1.767752472054334177e-08,-1.804580648555466152e-08,-1.841408825056598128e-08,-1.878237001557730104e-08,-1.915065178058862080e-08,-1.951893354559994056e-08,-1.988721531061126031e-08,-2.025549707562258007e-08,-2.062377884063389983e-08,-2.099206060564521959e-08,-2.136034237065653935e-08,-2.172862413566785910e-08,-2.209690590067917886e-08,-2.246518766569049862e-08,-2.283346943070181838e-08,-2.320175119571313814e-08 +0.000000000000000000e+00,4.594918405812032163e-10,9.189836811624064325e-10,1.378475521743609752e-09,1.837967362324813072e-09,2.297459202906016392e-09,2.756951043487219504e-09,3.216442884068422617e-09,3.675934724649625730e-09,4.135426565230828429e-09,4.594918405812031129e-09,5.054410246393233828e-09,5.513902086974436527e-09,5.973393927555639227e-09,6.432885768136841926e-09,6.892377608718044625e-09,7.351869449299247324e-09,7.811361289880450024e-09,8.270853130461653550e-09,8.730344971042857077e-09,9.189836811624060603e-09,9.649328652205264130e-09,1.010882049278646766e-08,1.056831233336767118e-08,1.102780417394887471e-08,1.148729601453007824e-08,1.194678785511128176e-08,1.240627969569248529e-08,1.286577153627368881e-08,1.332526337685489234e-08,1.378475521743609587e-08,1.424424705801729939e-08,1.470373889859850292e-08,1.516323073917970810e-08,1.562272257976091328e-08,1.608221442034211846e-08,1.654170626092332364e-08,1.700119810150452882e-08,1.746068994208573401e-08,1.792018178266693919e-08,1.837967362324814437e-08,1.883916546382934955e-08,1.929865730441055473e-08,1.975814914499175991e-08,2.021764098557296509e-08,2.067713282615417027e-08,2.113662466673537545e-08,2.159611650731658063e-08,2.205560834789778581e-08,2.251510018847899099e-08,2.297459202906019618e-08,2.343408386964140136e-08,2.389357571022260654e-08,2.435306755080381172e-08,2.481255939138501690e-08,2.527205123196622208e-08,2.573154307254742726e-08,2.619103491312863244e-08,2.665052675370983762e-08,2.711001859429104280e-08,2.756951043487224798e-08,2.802900227545345316e-08,2.848849411603465835e-08,2.894798595661586353e-08 +0.000000000000000000e+00,-4.594918406478854508e-10,-9.189836812957709016e-10,-1.378475521943656352e-09,-1.837967362591541803e-09,-2.297459203239427254e-09,-2.756951043887312705e-09,-3.216442884535198155e-09,-3.675934725183083606e-09,-4.135426565830969471e-09,-4.594918406478855335e-09,-5.054410247126741199e-09,-5.513902087774627064e-09,-5.973393928422512928e-09,-6.432885769070398792e-09,-6.892377609718284657e-09,-7.351869450366170521e-09,-7.811361291014056386e-09,-8.270853131661942250e-09,-8.730344972309828114e-09,-9.189836812957713979e-09,-9.649328653605599843e-09,-1.010882049425348571e-08,-1.056831233490137157e-08,-1.102780417554925744e-08,-1.148729601619714330e-08,-1.194678785684502916e-08,-1.240627969749291503e-08,-1.286577153814080089e-08,-1.332526337878868676e-08,-1.378475521943657262e-08,-1.424424706008445849e-08,-1.470373890073234435e-08,-1.516323074138023022e-08,-1.562272258202811608e-08,-1.608221442267600194e-08,-1.654170626332388781e-08,-1.700119810397177367e-08,-1.746068994461965954e-08,-1.792018178526754540e-08,-1.837967362591543127e-08,-1.883916546656331713e-08,-1.929865730721120299e-08,-1.975814914785908886e-08,-2.021764098850697472e-08,-2.067713282915486059e-08,-2.113662466980274645e-08,-2.159611651045063232e-08,-2.205560835109851818e-08,-2.251510019174640405e-08,-2.297459203239428991e-08,-2.343408387304217577e-08,-2.389357571369006164e-08,-2.435306755433794750e-08,-2.481255939498583337e-08,-2.527205123563371923e-08,-2.573154307628160510e-08,-2.619103491692949096e-08,-2.665052675757737682e-08,-2.711001859822526269e-08,-2.756951043887314855e-08,-2.802900227952103442e-08,-2.848849412016892028e-08,-2.894798596081680615e-08 +0.000000000000000000e+00,5.211760155893221234e-10,1.042352031178644247e-09,1.563528046767966370e-09,2.084704062357288494e-09,2.605880077946610617e-09,3.127056093535932740e-09,3.648232109125254864e-09,4.169408124714576987e-09,4.690584140303899110e-09,5.211760155893221234e-09,5.732936171482543357e-09,6.254112187071865481e-09,6.775288202661187604e-09,7.296464218250509727e-09,7.817640233839831851e-09,8.338816249429153974e-09,8.859992265018476097e-09,9.381168280607798221e-09,9.902344296197120344e-09,1.042352031178644247e-08,1.094469632737576459e-08,1.146587234296508671e-08,1.198704835855440884e-08,1.250822437414373096e-08,1.302940038973305308e-08,1.355057640532237521e-08,1.407175242091169733e-08,1.459292843650101945e-08,1.511410445209034158e-08,1.563528046767966370e-08,1.615645648326898582e-08,1.667763249885830795e-08,1.719880851444763007e-08,1.771998453003695219e-08,1.824116054562627432e-08,1.876233656121559644e-08,1.928351257680491857e-08,1.980468859239424069e-08,2.032586460798356281e-08,2.084704062357288494e-08,2.136821663916220706e-08,2.188939265475152918e-08,2.241056867034085131e-08,2.293174468593017343e-08,2.345292070151949555e-08,2.397409671710881768e-08,2.449527273269813980e-08,2.501644874828746192e-08,2.553762476387678405e-08,2.605880077946610617e-08,2.657997679505542829e-08,2.710115281064475042e-08,2.762232882623407254e-08,2.814350484182339466e-08,2.866468085741271679e-08,2.918585687300203891e-08,2.970703288859136103e-08,3.022820890418068316e-08,3.074938491977000528e-08,3.127056093535932740e-08,3.179173695094864953e-08,3.231291296653797165e-08,3.283408898212729377e-08 +0.000000000000000000e+00,-5.211760156406929346e-10,-1.042352031281385869e-09,-1.563528046922078804e-09,-2.084704062562771738e-09,-2.605880078203464673e-09,-3.127056093844157607e-09,-3.648232109484850542e-09,-4.169408125125543476e-09,-4.690584140766236825e-09,-5.211760156406930173e-09,-5.732936172047623521e-09,-6.254112187688316869e-09,-6.775288203329010217e-09,-7.296464218969703565e-09,-7.817640234610396913e-09,-8.338816250251090262e-09,-8.859992265891783610e-09,-9.381168281532476958e-09,-9.902344297173170306e-09,-1.042352031281386365e-08,-1.094469632845455700e-08,-1.146587234409525035e-08,-1.198704835973594370e-08,-1.250822437537663705e-08,-1.302940039101733039e-08,-1.355057640665802374e-08,-1.407175242229871709e-08,-1.459292843793941044e-08,-1.511410445358010379e-08,-1.563528046922079714e-08,-1.615645648486149048e-08,-1.667763250050218383e-08,-1.719880851614287718e-08,-1.771998453178357053e-08,-1.824116054742426388e-08,-1.876233656306495722e-08,-1.928351257870565057e-08,-1.980468859434634392e-08,-2.032586460998703727e-08,-2.084704062562773062e-08,-2.136821664126842397e-08,-2.188939265690911731e-08,-2.241056867254981066e-08,-2.293174468819050401e-08,-2.345292070383119736e-08,-2.397409671947189071e-08,-2.449527273511258405e-08,-2.501644875075327740e-08,-2.553762476639397075e-08,-2.605880078203466410e-08,-2.657997679767535745e-08,-2.710115281331605079e-08,-2.762232882895674414e-08,-2.814350484459743749e-08,-2.866468086023813084e-08,-2.918585687587882419e-08,-2.970703289151951754e-08,-3.022820890716021419e-08,-3.074938492280091416e-08,-3.127056093844161412e-08,-3.179173695408231409e-08,-3.231291296972301405e-08,-3.283408898536371402e-08 +0.000000000000000000e+00,5.659593224915834465e-10,1.131918644983166893e-09,1.697877967474750340e-09,2.263837289966333786e-09,2.829796612457917439e-09,3.395755934949501093e-09,3.961715257441084746e-09,4.527674579932668399e-09,5.093633902424252053e-09,5.659593224915835706e-09,6.225552547407419359e-09,6.791511869899003013e-09,7.357471192390586666e-09,7.923430514882171147e-09,8.489389837373756454e-09,9.055349159865341762e-09,9.621308482356927070e-09,1.018726780484851238e-08,1.075322712734009768e-08,1.131918644983168299e-08,1.188514577232326830e-08,1.245110509481485361e-08,1.301706441730643892e-08,1.358302373979802422e-08,1.414898306228960953e-08,1.471494238478119484e-08,1.528090170727278015e-08,1.584686102976436545e-08,1.641282035225595076e-08,1.697877967474753607e-08,1.754473899723912138e-08,1.811069831973070668e-08,1.867665764222229199e-08,1.924261696471387730e-08,1.980857628720546261e-08,2.037453560969704792e-08,2.094049493218863322e-08,2.150645425468021853e-08,2.207241357717180384e-08,2.263837289966338915e-08,2.320433222215497445e-08,2.377029154464655976e-08,2.433625086713814507e-08,2.490221018962973038e-08,2.546816951212131568e-08,2.603412883461290099e-08,2.660008815710448630e-08,2.716604747959607161e-08,2.773200680208765692e-08,2.829796612457924222e-08,2.886392544707082753e-08,2.942988476956241284e-08,2.999584409205399484e-08,3.056180341454558015e-08,3.112776273703716545e-08,3.169372205952875076e-08,3.225968138202033607e-08,3.282564070451192138e-08,3.339160002700350668e-08,3.395755934949509199e-08,3.452351867198667730e-08,3.508947799447826261e-08,3.565543731696984791e-08 +0.000000000000000000e+00,-5.659593225295061621e-10,-1.131918645059012324e-09,-1.697877967588518486e-09,-2.263837290118024648e-09,-2.829796612647530810e-09,-3.395755935177036973e-09,-3.961715257706542721e-09,-4.527674580236048470e-09,-5.093633902765554218e-09,-5.659593225295059967e-09,-6.225552547824565715e-09,-6.791511870354071464e-09,-7.357471192883577212e-09,-7.923430515413082133e-09,-8.489389837942587055e-09,-9.055349160472091976e-09,-9.621308483001596897e-09,-1.018726780553110182e-08,-1.075322712806060674e-08,-1.131918645059011166e-08,-1.188514577311961658e-08,-1.245110509564912150e-08,-1.301706441817862643e-08,-1.358302374070813135e-08,-1.414898306323763627e-08,-1.471494238576714119e-08,-1.528090170829664777e-08,-1.584686103082615434e-08,-1.641282035335566092e-08,-1.697877967588516749e-08,-1.754473899841467407e-08,-1.811069832094418064e-08,-1.867665764347368722e-08,-1.924261696600319379e-08,-1.980857628853270037e-08,-2.037453561106220695e-08,-2.094049493359171352e-08,-2.150645425612122010e-08,-2.207241357865072667e-08,-2.263837290118023325e-08,-2.320433222370973982e-08,-2.377029154623924640e-08,-2.433625086876875298e-08,-2.490221019129825955e-08,-2.546816951382776613e-08,-2.603412883635727270e-08,-2.660008815888677928e-08,-2.716604748141628585e-08,-2.773200680394579243e-08,-2.829796612647529901e-08,-2.886392544900480558e-08,-2.942988477153431216e-08,-2.999584409406381873e-08,-3.056180341659332200e-08,-3.112776273912282527e-08,-3.169372206165232853e-08,-3.225968138418183180e-08,-3.282564070671133507e-08,-3.339160002924083833e-08,-3.395755935177034160e-08,-3.452351867429984487e-08,-3.508947799682934814e-08,-3.565543731935885140e-08 +0.000000000000000000e+00,6.002914808741284667e-10,1.200582961748256933e-09,1.800874442622385400e-09,2.401165923496513867e-09,3.001457404370642127e-09,3.601748885244770387e-09,4.202040366118898647e-09,4.802331846993026906e-09,5.402623327867155166e-09,6.002914808741283426e-09,6.603206289615411686e-09,7.203497770489539946e-09,7.803789251363668206e-09,8.404080732237797293e-09,9.004372213111926380e-09,9.604663693986055467e-09,1.020495517486018455e-08,1.080524665573431364e-08,1.140553813660844273e-08,1.200582961748257182e-08,1.260612109835670090e-08,1.320641257923082999e-08,1.380670406010495908e-08,1.440699554097908816e-08,1.500728702185321725e-08,1.560757850272734634e-08,1.620786998360147543e-08,1.680816146447560451e-08,1.740845294534973360e-08,1.800874442622386269e-08,1.860903590709799177e-08,1.920932738797212086e-08,1.980961886884624995e-08,2.040991034972037904e-08,2.101020183059450812e-08,2.161049331146863721e-08,2.221078479234276630e-08,2.281107627321689538e-08,2.341136775409102447e-08,2.401165923496515356e-08,2.461195071583928264e-08,2.521224219671341173e-08,2.581253367758754082e-08,2.641282515846166991e-08,2.701311663933579899e-08,2.761340812020992808e-08,2.821369960108405717e-08,2.881399108195818625e-08,2.941428256283231534e-08,3.001457404370644774e-08,3.061486552458058013e-08,3.121515700545471253e-08,3.181544848632884492e-08,3.241573996720297732e-08,3.301603144807710972e-08,3.361632292895124211e-08,3.421661440982537451e-08,3.481690589069950690e-08,3.541719737157363930e-08,3.601748885244777170e-08,3.661778033332190409e-08,3.721807181419603649e-08,3.781836329507016888e-08 +0.000000000000000000e+00,-6.002914809010588825e-10,-1.200582961802117765e-09,-1.800874442703176751e-09,-2.401165923604235944e-09,-3.001457404505295136e-09,-3.601748885406354329e-09,-4.202040366307413108e-09,-4.802331847208471887e-09,-5.402623328109530666e-09,-6.002914809010589446e-09,-6.603206289911648225e-09,-7.203497770812707004e-09,-7.803789251713765783e-09,-8.404080732614824562e-09,-9.004372213515883341e-09,-9.604663694416942120e-09,-1.020495517531800090e-08,-1.080524665621905968e-08,-1.140553813712011846e-08,-1.200582961802117724e-08,-1.260612109892223602e-08,-1.320641257982329479e-08,-1.380670406072435357e-08,-1.440699554162541235e-08,-1.500728702252646948e-08,-1.560757850342752826e-08,-1.620786998432858704e-08,-1.680816146522964582e-08,-1.740845294613070459e-08,-1.800874442703176337e-08,-1.860903590793282215e-08,-1.920932738883388093e-08,-1.980961886973493971e-08,-2.040991035063599849e-08,-2.101020183153705727e-08,-2.161049331243811605e-08,-2.221078479333917483e-08,-2.281107627424023361e-08,-2.341136775514129239e-08,-2.401165923604235116e-08,-2.461195071694340994e-08,-2.521224219784446872e-08,-2.581253367874552750e-08,-2.641282515964658628e-08,-2.701311664054764506e-08,-2.761340812144870384e-08,-2.821369960234976262e-08,-2.881399108325082140e-08,-2.941428256415188018e-08,-3.001457404505293896e-08,-3.061486552595399773e-08,-3.121515700685505651e-08,-3.181544848775611529e-08,-3.241573996865717407e-08,-3.301603144955823285e-08,-3.361632293045929163e-08,-3.421661441136035041e-08,-3.481690589226140919e-08,-3.541719737316246797e-08,-3.601748885406352675e-08,-3.661778033496458553e-08,-3.721807181586564431e-08,-3.781836329676670308e-08 +0.000000000000000000e+00,6.278113309995235446e-10,1.255622661999047089e-09,1.883433992998570841e-09,2.511245323998094592e-09,3.139056654997618343e-09,3.766867985997141681e-09,4.394679316996665019e-09,5.022490647996188357e-09,5.650301978995711695e-09,6.278113309995235032e-09,6.905924640994758370e-09,7.533735971994281708e-09,8.161547302993805046e-09,8.789358633993328384e-09,9.417169964992851721e-09,1.004498129599237506e-08,1.067279262699189840e-08,1.130060395799142173e-08,1.192841528899094507e-08,1.255622661999046841e-08,1.318403795098999175e-08,1.381184928198951509e-08,1.443966061298903842e-08,1.506747194398856011e-08,1.569528327498808179e-08,1.632309460598760347e-08,1.695090593698712516e-08,1.757871726798664684e-08,1.820652859898616852e-08,1.883433992998569021e-08,1.946215126098521189e-08,2.008996259198473357e-08,2.071777392298425526e-08,2.134558525398377694e-08,2.197339658498329862e-08,2.260120791598282031e-08,2.322901924698234199e-08,2.385683057798186368e-08,2.448464190898138536e-08,2.511245323998090704e-08,2.574026457098042873e-08,2.636807590197995041e-08,2.699588723297947209e-08,2.762369856397899378e-08,2.825150989497851546e-08,2.887932122597803714e-08,2.950713255697755883e-08,3.013494388797708051e-08,3.076275521897660550e-08,3.139056654997613049e-08,3.201837788097565549e-08,3.264618921197518048e-08,3.327400054297470547e-08,3.390181187397423046e-08,3.452962320497375545e-08,3.515743453597328045e-08,3.578524586697280544e-08,3.641305719797233043e-08,3.704086852897185542e-08,3.766867985997138042e-08,3.829649119097090541e-08,3.892430252197043040e-08,3.955211385296995539e-08 +0.000000000000000000e+00,-6.278113310177697013e-10,-1.255622662035539403e-09,-1.883433993053309104e-09,-2.511245324071078805e-09,-3.139056655088848507e-09,-3.766867986106618208e-09,-4.394679317124388323e-09,-5.022490648142158438e-09,-5.650301979159928553e-09,-6.278113310177698668e-09,-6.905924641195468783e-09,-7.533735972213238070e-09,-8.161547303231007358e-09,-8.789358634248776646e-09,-9.417169965266545934e-09,-1.004498129628431522e-08,-1.067279262730208451e-08,-1.130060395831985380e-08,-1.192841528933762308e-08,-1.255622662035539237e-08,-1.318403795137316166e-08,-1.381184928239093095e-08,-1.443966061340870024e-08,-1.506747194442646952e-08,-1.569528327544423881e-08,-1.632309460646200810e-08,-1.695090593747977739e-08,-1.757871726849754667e-08,-1.820652859951531596e-08,-1.883433993053308525e-08,-1.946215126155085454e-08,-2.008996259256862383e-08,-2.071777392358639311e-08,-2.134558525460416240e-08,-2.197339658562193169e-08,-2.260120791663970098e-08,-2.322901924765747026e-08,-2.385683057867523955e-08,-2.448464190969300884e-08,-2.511245324071077813e-08,-2.574026457172854742e-08,-2.636807590274631670e-08,-2.699588723376408599e-08,-2.762369856478185528e-08,-2.825150989579962457e-08,-2.887932122681739385e-08,-2.950713255783516314e-08,-3.013494388885293243e-08,-3.076275521987070172e-08,-3.139056655088847100e-08,-3.201837788190624029e-08,-3.264618921292400958e-08,-3.327400054394177887e-08,-3.390181187495954816e-08,-3.452962320597731744e-08,-3.515743453699508673e-08,-3.578524586801285602e-08,-3.641305719903062531e-08,-3.704086853004839459e-08,-3.766867986106616388e-08,-3.829649119208393317e-08,-3.892430252310170246e-08,-3.955211385411947175e-08 +0.000000000000000000e+00,7.206883803104219007e-10,1.441376760620843801e-09,2.162065140931265599e-09,2.882753521241687189e-09,3.603441901552108780e-09,4.324130281862530370e-09,5.044818662172951961e-09,5.765507042483373552e-09,6.486195422793795142e-09,7.206883803104216733e-09,7.927572183414637496e-09,8.648260563725059087e-09,9.368948944035480677e-09,1.008963732434590227e-08,1.081032570465632386e-08,1.153101408496674545e-08,1.225170246527716704e-08,1.297239084558758863e-08,1.369307922589801022e-08,1.441376760620843181e-08,1.513445598651885340e-08,1.585514436682927499e-08,1.657583274713969658e-08,1.729652112745011817e-08,1.801720950776053976e-08,1.873789788807096135e-08,1.945858626838138294e-08,2.017927464869180454e-08,2.089996302900222613e-08,2.162065140931264772e-08,2.234133978962306931e-08,2.306202816993349090e-08,2.378271655024391249e-08,2.450340493055433408e-08,2.522409331086475567e-08,2.594478169117517726e-08,2.666547007148559885e-08,2.738615845179602044e-08,2.810684683210644203e-08,2.882753521241686362e-08,2.954822359272728521e-08,3.026891197303770680e-08,3.098960035334812508e-08,3.171028873365854337e-08,3.243097711396896165e-08,3.315166549427937993e-08,3.387235387458979821e-08,3.459304225490021649e-08,3.531373063521063478e-08,3.603441901552105306e-08,3.675510739583147134e-08,3.747579577614188962e-08,3.819648415645230790e-08,3.891717253676272618e-08,3.963786091707314447e-08,4.035854929738356275e-08,4.107923767769398103e-08,4.179992605800439931e-08,4.252061443831481759e-08,4.324130281862523588e-08,4.396199119893565416e-08,4.468267957924607244e-08,4.540336795955649072e-08 +0.000000000000000000e+00,6.735104208307983832e-10,1.347020841661596766e-09,2.020531262492394943e-09,2.694041683323193119e-09,3.367552104153991296e-09,4.041062524984789886e-09,4.714572945815588476e-09,5.388083366646387066e-09,6.061593787477185656e-09,6.735104208307984246e-09,7.408614629138782836e-09,8.082125049969581426e-09,8.755635470800379189e-09,9.429145891631176952e-09,1.010265631246197471e-08,1.077616673329277248e-08,1.144967715412357024e-08,1.212318757495436800e-08,1.279669799578516577e-08,1.347020841661596353e-08,1.414371883744676129e-08,1.481722925827755905e-08,1.549073967910835682e-08,1.616425009993915293e-08,1.683776052076994903e-08,1.751127094160074514e-08,1.818478136243154125e-08,1.885829178326233736e-08,1.953180220409313347e-08,2.020531262492392958e-08,2.087882304575472569e-08,2.155233346658552179e-08,2.222584388741631790e-08,2.289935430824711401e-08,2.357286472907791012e-08,2.424637514990870623e-08,2.491988557073950234e-08,2.559339599157029845e-08,2.626690641240109455e-08,2.694041683323189066e-08,2.761392725406268677e-08,2.828743767489348288e-08,2.896094809572427899e-08,2.963445851655507510e-08,3.030796893738587120e-08,3.098147935821666731e-08,3.165498977904746342e-08,3.232850019987825953e-08,3.300201062070905564e-08,3.367552104153985175e-08,3.434903146237064786e-08,3.502254188320144396e-08,3.569605230403224007e-08,3.636956272486303618e-08,3.704307314569383229e-08,3.771658356652462840e-08,3.839009398735542451e-08,3.906360440818622062e-08,3.973711482901701672e-08,4.041062524984781283e-08,4.108413567067860894e-08,4.175764609150940505e-08,4.243115651234020116e-08 +0.000000000000000000e+00,9.259279400763542169e-21,1.851855880152708434e-20,2.777783820229062651e-20,3.703711760305416868e-20,4.629639700381771085e-20,5.555567640458125302e-20,6.481495580534480120e-20,7.407423520610834939e-20,8.333351460687189758e-20,9.259279400763544577e-20,1.018520734083989940e-19,1.111113528091625301e-19,1.203706322099260663e-19,1.296299116106896024e-19,1.388891910114531386e-19,1.481484704122166747e-19,1.574077498129802109e-19,1.666670292137437470e-19,1.759263086145072832e-19,1.851855880152708193e-19,1.944448674160343555e-19,2.037041468167978916e-19,2.129634262175614278e-19,2.222227056183249639e-19,2.314819850190885001e-19,2.407412644198520362e-19,2.500005438206155724e-19,2.592598232213791085e-19,2.685191026221426447e-19,2.777783820229061808e-19,2.870376614236697170e-19,2.962969408244332531e-19,3.055562202251967893e-19,3.148154996259603254e-19,3.240747790267238616e-19,3.333340584274873977e-19,3.425933378282509339e-19,3.518526172290144700e-19,3.611118966297780062e-19,3.703711760305415423e-19,3.796304554313050785e-19,3.888897348320686146e-19,3.981490142328321508e-19,4.074082936335956869e-19,4.166675730343592231e-19,4.259268524351227592e-19,4.351861318358863435e-19,4.444454112366499278e-19,4.537046906374135121e-19,4.629639700381770964e-19,4.722232494389406807e-19,4.814825288397042650e-19,4.907418082404678493e-19,5.000010876412314336e-19,5.092603670419950179e-19,5.185196464427586022e-19,5.277789258435221865e-19,5.370382052442857708e-19,5.462974846450493551e-19,5.555567640458129394e-19,5.648160434465765237e-19,5.740753228473401080e-19,5.833346022481036923e-19 +0.000000000000000000e+00,7.130822928954926380e-10,1.426164585790985276e-09,2.139246878686477914e-09,2.852329171581970552e-09,3.565411464477463190e-09,4.278493757372955828e-09,4.991576050268448880e-09,5.704658343163941931e-09,6.417740636059434983e-09,7.130822928954928035e-09,7.843905221850421086e-09,8.556987514745913311e-09,9.270069807641405535e-09,9.983152100536897759e-09,1.069623439343238998e-08,1.140931668632788221e-08,1.212239897922337443e-08,1.283548127211886666e-08,1.354856356501435888e-08,1.426164585790985111e-08,1.497472815080534168e-08,1.568781044370083225e-08,1.640089273659632282e-08,1.711397502949181339e-08,1.782705732238730396e-08,1.854013961528279453e-08,1.925322190817828510e-08,1.996630420107377567e-08,2.067938649396926624e-08,2.139246878686475681e-08,2.210555107976024738e-08,2.281863337265573795e-08,2.353171566555122852e-08,2.424479795844671909e-08,2.495788025134220966e-08,2.567096254423770023e-08,2.638404483713319080e-08,2.709712713002868137e-08,2.781020942292417194e-08,2.852329171581966251e-08,2.923637400871515308e-08,2.994945630161064365e-08,3.066253859450613422e-08,3.137562088740162479e-08,3.208870318029711536e-08,3.280178547319260593e-08,3.351486776608809650e-08,3.422795005898358707e-08,3.494103235187907764e-08,3.565411464477456821e-08,3.636719693767005878e-08,3.708027923056554935e-08,3.779336152346103992e-08,3.850644381635653049e-08,3.921952610925202106e-08,3.993260840214751163e-08,4.064569069504300220e-08,4.135877298793849277e-08,4.207185528083398334e-08,4.278493757372947391e-08,4.349801986662496448e-08,4.421110215952045505e-08,4.492418445241594562e-08 +0.000000000000000000e+00,7.232281380799527877e-10,1.446456276159905575e-09,2.169684414239858467e-09,2.892912552319811564e-09,3.616140690399764662e-09,4.339368828479717760e-09,5.062596966559671272e-09,5.785825104639624783e-09,6.509053242719578295e-09,7.232281380799531806e-09,7.955509518879485318e-09,8.678737656959438829e-09,9.401965795039392341e-09,1.012519393311934585e-08,1.084842207119929936e-08,1.157165020927925288e-08,1.229487834735920639e-08,1.301810648543915990e-08,1.374133462351911341e-08,1.446456276159906692e-08,1.518779089967901878e-08,1.591101903775897064e-08,1.663424717583892249e-08,1.735747531391887435e-08,1.808070345199882621e-08,1.880393159007877806e-08,1.952715972815872992e-08,2.025038786623868178e-08,2.097361600431863364e-08,2.169684414239858549e-08,2.242007228047853735e-08,2.314330041855848921e-08,2.386652855663844106e-08,2.458975669471839292e-08,2.531298483279834478e-08,2.603621297087829664e-08,2.675944110895824849e-08,2.748266924703820035e-08,2.820589738511815221e-08,2.892912552319810406e-08,2.965235366127805592e-08,3.037558179935801109e-08,3.109880993743796625e-08,3.182203807551792142e-08,3.254526621359787658e-08,3.326849435167783175e-08,3.399172248975778692e-08,3.471495062783774208e-08,3.543817876591769725e-08,3.616140690399765241e-08,3.688463504207760758e-08,3.760786318015756275e-08,3.833109131823751791e-08,3.905431945631747308e-08,3.977754759439742824e-08,4.050077573247738341e-08,4.122400387055733857e-08,4.194723200863729374e-08,4.267046014671724891e-08,4.339368828479720407e-08,4.411691642287715924e-08,4.484014456095711440e-08,4.556337269903706957e-08 +0.000000000000000000e+00,6.767930355112464970e-10,1.353586071022492994e-09,2.030379106533739491e-09,2.707172142044985988e-09,3.383965177556232485e-09,4.060758213067478982e-09,4.737551248578725893e-09,5.414344284089972803e-09,6.091137319601219714e-09,6.767930355112466625e-09,7.444723390623713535e-09,8.121516426134959619e-09,8.798309461646205702e-09,9.475102497157451786e-09,1.015189553266869787e-08,1.082868856817994395e-08,1.150548160369119004e-08,1.218227463920243612e-08,1.285906767471368220e-08,1.353586071022492829e-08,1.421265374573617437e-08,1.488944678124742045e-08,1.556623981675866819e-08,1.624303285226991593e-08,1.691982588778116367e-08,1.759661892329241140e-08,1.827341195880365914e-08,1.895020499431490688e-08,1.962699802982615462e-08,2.030379106533740236e-08,2.098058410084865009e-08,2.165737713635989783e-08,2.233417017187114557e-08,2.301096320738239331e-08,2.368775624289364104e-08,2.436454927840488878e-08,2.504134231391613652e-08,2.571813534942738426e-08,2.639492838493863200e-08,2.707172142044987973e-08,2.774851445596112747e-08,2.842530749147237521e-08,2.910210052698362295e-08,2.977889356249487068e-08,3.045568659800611842e-08,3.113247963351736285e-08,3.180927266902860728e-08,3.248606570453985171e-08,3.316285874005109614e-08,3.383965177556234057e-08,3.451644481107358500e-08,3.519323784658482943e-08,3.587003088209607386e-08,3.654682391760731828e-08,3.722361695311856271e-08,3.790040998862980714e-08,3.857720302414105157e-08,3.925399605965229600e-08,3.993078909516354043e-08,4.060758213067478486e-08,4.128437516618602929e-08,4.196116820169727372e-08,4.263796123720851815e-08 +0.000000000000000000e+00,3.367184284610511885e-10,6.734368569221023771e-10,1.010155285383153514e-09,1.346873713844204547e-09,1.683592142305255581e-09,2.020310570766306614e-09,2.357028999227357648e-09,2.693747427688408681e-09,3.030465856149459715e-09,3.367184284610510748e-09,3.703902713071561781e-09,4.040621141532612401e-09,4.377339569993663435e-09,4.714057998454714468e-09,5.050776426915765502e-09,5.387494855376816535e-09,5.724213283837867569e-09,6.060931712298918602e-09,6.397650140759969635e-09,6.734368569221020669e-09,7.071086997682071702e-09,7.407805426143122736e-09,7.744523854604173769e-09,8.081242283065224803e-09,8.417960711526275836e-09,8.754679139987326870e-09,9.091397568448377903e-09,9.428115996909428936e-09,9.764834425370479970e-09,1.010155285383153100e-08,1.043827128229258204e-08,1.077498971075363307e-08,1.111170813921468410e-08,1.144842656767573514e-08,1.178514499613678617e-08,1.212186342459783720e-08,1.245858185305888824e-08,1.279530028151993927e-08,1.313201870998099030e-08,1.346873713844204134e-08,1.380545556690309237e-08,1.414217399536414340e-08,1.447889242382519444e-08,1.481561085228624547e-08,1.515232928074729485e-08,1.548904770920834423e-08,1.582576613766939361e-08,1.616248456613044299e-08,1.649920299459149237e-08,1.683592142305254175e-08,1.717263985151359113e-08,1.750935827997464050e-08,1.784607670843568988e-08,1.818279513689673926e-08,1.851951356535778864e-08,1.885623199381883802e-08,1.919295042227988740e-08,1.952966885074093678e-08,1.986638727920198616e-08,2.020310570766303554e-08,2.053982413612408492e-08,2.087654256458513430e-08,2.121326099304618367e-08 +0.000000000000000000e+00,1.308404202909386492e-20,2.616808405818772983e-20,3.925212608728159625e-20,5.233616811637546568e-20,6.542021014546933511e-20,7.850425217456320454e-20,9.158829420365707398e-20,1.046723362327509434e-19,1.177563782618448249e-19,1.308404202909386943e-19,1.439244623200325637e-19,1.570085043491264332e-19,1.700925463782203026e-19,1.831765884073141720e-19,1.962606304364080415e-19,2.093446724655019109e-19,2.224287144945957803e-19,2.355127565236896497e-19,2.485967985527835192e-19,2.616808405818773886e-19,2.747648826109712580e-19,2.878489246400651275e-19,3.009329666691589969e-19,3.140170086982528663e-19,3.271010507273467358e-19,3.401850927564406052e-19,3.532691347855344746e-19,3.663531768146283440e-19,3.794372188437222135e-19,3.925212608728160829e-19,4.056053029019099523e-19,4.186893449310038218e-19,4.317733869600976912e-19,4.448574289891915606e-19,4.579414710182853819e-19,4.710255130473792032e-19,4.841095550764730245e-19,4.971935971055668458e-19,5.102776391346606670e-19,5.233616811637544883e-19,5.364457231928483096e-19,5.495297652219421309e-19,5.626138072510359522e-19,5.756978492801297735e-19,5.887818913092235947e-19,6.018659333383174160e-19,6.149499753674112373e-19,6.280340173965050586e-19,6.411180594255988799e-19,6.542021014546927011e-19,6.672861434837865224e-19,6.803701855128803437e-19,6.934542275419741650e-19,7.065382695710679863e-19,7.196223116001618076e-19,7.327063536292556288e-19,7.457903956583494501e-19,7.588744376874432714e-19,7.719584797165370927e-19,7.850425217456309140e-19,7.981265637747247352e-19,8.112106058038185565e-19,8.242946478329123778e-19 +0.000000000000000000e+00,-7.206883802813843457e-10,-1.441376760562768691e-09,-2.162065140844153141e-09,-2.882753521125537796e-09,-3.603441901406922452e-09,-4.324130281688307108e-09,-5.044818661969691351e-09,-5.765507042251075593e-09,-6.486195422532459835e-09,-7.206883802813844078e-09,-7.927572183095228320e-09,-8.648260563376612562e-09,-9.368948943657996805e-09,-1.008963732393938105e-08,-1.081032570422076529e-08,-1.153101408450214953e-08,-1.225170246478353377e-08,-1.297239084506491802e-08,-1.369307922534630226e-08,-1.441376760562768650e-08,-1.513445598590907240e-08,-1.585514436619045995e-08,-1.657583274647184750e-08,-1.729652112675323505e-08,-1.801720950703462260e-08,-1.873789788731601015e-08,-1.945858626759739770e-08,-2.017927464787878525e-08,-2.089996302816017281e-08,-2.162065140844156036e-08,-2.234133978872294791e-08,-2.306202816900433546e-08,-2.378271654928572301e-08,-2.450340492956711056e-08,-2.522409330984849811e-08,-2.594478169012988566e-08,-2.666547007041127321e-08,-2.738615845069266077e-08,-2.810684683097404832e-08,-2.882753521125543587e-08,-2.954822359153682342e-08,-3.026891197181821097e-08,-3.098960035209959852e-08,-3.171028873238098607e-08,-3.243097711266237362e-08,-3.315166549294376117e-08,-3.387235387322514872e-08,-3.459304225350653628e-08,-3.531373063378792383e-08,-3.603441901406931138e-08,-3.675510739435069893e-08,-3.747579577463208648e-08,-3.819648415491347403e-08,-3.891717253519486158e-08,-3.963786091547624913e-08,-4.035854929575763668e-08,-4.107923767603902424e-08,-4.179992605632041179e-08,-4.252061443660179934e-08,-4.324130281688318689e-08,-4.396199119716457444e-08,-4.468267957744596199e-08,-4.540336795772734954e-08 +0.000000000000000000e+00,-6.735104208122252834e-10,-1.347020841624450567e-09,-2.020531262436676057e-09,-2.694041683248901547e-09,-3.367552104061127037e-09,-4.041062524873352114e-09,-4.714572945685577190e-09,-5.388083366497802267e-09,-6.061593787310027343e-09,-6.735104208122252420e-09,-7.408614628934477497e-09,-8.082125049746702573e-09,-8.755635470558928477e-09,-9.429145891371154381e-09,-1.010265631218338028e-08,-1.077616673299560619e-08,-1.144967715380783209e-08,-1.212318757462005800e-08,-1.279669799543228390e-08,-1.347020841624450980e-08,-1.414371883705673571e-08,-1.481722925786896161e-08,-1.549073967868118751e-08,-1.616425009949341507e-08,-1.683776052030564263e-08,-1.751127094111787019e-08,-1.818478136193009775e-08,-1.885829178274232530e-08,-1.953180220355455286e-08,-2.020531262436678042e-08,-2.087882304517900798e-08,-2.155233346599123554e-08,-2.222584388680346310e-08,-2.289935430761569065e-08,-2.357286472842791821e-08,-2.424637514924014577e-08,-2.491988557005237333e-08,-2.559339599086460089e-08,-2.626690641167682844e-08,-2.694041683248905600e-08,-2.761392725330128356e-08,-2.828743767411351112e-08,-2.896094809492573868e-08,-2.963445851573796623e-08,-3.030796893655019379e-08,-3.098147935736242135e-08,-3.165498977817464891e-08,-3.232850019898687647e-08,-3.300201061979910403e-08,-3.367552104061133158e-08,-3.434903146142355914e-08,-3.502254188223578670e-08,-3.569605230304801426e-08,-3.636956272386024182e-08,-3.704307314467246937e-08,-3.771658356548469693e-08,-3.839009398629692449e-08,-3.906360440710915205e-08,-3.973711482792137961e-08,-4.041062524873360716e-08,-4.108413566954583472e-08,-4.175764609035806228e-08,-4.243115651117028984e-08 +0.000000000000000000e+00,-3.367184284424820178e-10,-6.734368568849640355e-10,-1.010155285327446002e-09,-1.346873713769927864e-09,-1.683592142212409727e-09,-2.020310570654891590e-09,-2.357028999097373245e-09,-2.693747427539854901e-09,-3.030465855982336557e-09,-3.367184284424818213e-09,-3.703902712867299869e-09,-4.040621141309781525e-09,-4.377339569752263181e-09,-4.714057998194744837e-09,-5.050776426637226492e-09,-5.387494855079708148e-09,-5.724213283522189804e-09,-6.060931711964671460e-09,-6.397650140407153116e-09,-6.734368568849634772e-09,-7.071086997292116428e-09,-7.407805425734598084e-09,-7.744523854177078912e-09,-8.081242282619559741e-09,-8.417960711062040570e-09,-8.754679139504521398e-09,-9.091397567947002227e-09,-9.428115996389483056e-09,-9.764834424831963884e-09,-1.010155285327444471e-08,-1.043827128171692554e-08,-1.077498971015940637e-08,-1.111170813860188720e-08,-1.144842656704436803e-08,-1.178514499548684886e-08,-1.212186342392932969e-08,-1.245858185237181051e-08,-1.279530028081429134e-08,-1.313201870925677217e-08,-1.346873713769925300e-08,-1.380545556614173383e-08,-1.414217399458421466e-08,-1.447889242302669549e-08,-1.481561085146917631e-08,-1.515232927991165714e-08,-1.548904770835413797e-08,-1.582576613679661880e-08,-1.616248456523909963e-08,-1.649920299368158046e-08,-1.683592142212406129e-08,-1.717263985056654212e-08,-1.750935827900902294e-08,-1.784607670745150377e-08,-1.818279513589398460e-08,-1.851951356433646543e-08,-1.885623199277894626e-08,-1.919295042122142709e-08,-1.952966884966390792e-08,-1.986638727810638875e-08,-2.020310570654886957e-08,-2.053982413499135040e-08,-2.087654256343383123e-08,-2.121326099187631206e-08 +0.000000000000000000e+00,-7.130822928574423298e-10,-1.426164585714884660e-09,-2.139246878572326990e-09,-2.852329171429769319e-09,-3.565411464287211649e-09,-4.278493757144653979e-09,-4.991576050002096722e-09,-5.704658342859539466e-09,-6.417740635716982209e-09,-7.130822928574424953e-09,-7.843905221431867696e-09,-8.556987514289309612e-09,-9.270069807146751529e-09,-9.983152100004193445e-09,-1.069623439286163536e-08,-1.140931668571907728e-08,-1.212239897857651919e-08,-1.283548127143396111e-08,-1.354856356429140303e-08,-1.426164585714884494e-08,-1.497472815000628520e-08,-1.568781044286372547e-08,-1.640089273572116573e-08,-1.711397502857860599e-08,-1.782705732143604625e-08,-1.854013961429348651e-08,-1.925322190715092678e-08,-1.996630420000836704e-08,-2.067938649286580730e-08,-2.139246878572324756e-08,-2.210555107858068782e-08,-2.281863337143812809e-08,-2.353171566429556835e-08,-2.424479795715300861e-08,-2.495788025001044887e-08,-2.567096254286788913e-08,-2.638404483572532939e-08,-2.709712712858276966e-08,-2.781020942144020992e-08,-2.852329171429765018e-08,-2.923637400715509044e-08,-2.994945630001253070e-08,-3.066253859286997097e-08,-3.137562088572741123e-08,-3.208870317858485149e-08,-3.280178547144229175e-08,-3.351486776429973201e-08,-3.422795005715717228e-08,-3.494103235001461254e-08,-3.565411464287205280e-08,-3.636719693572949306e-08,-3.708027922858693332e-08,-3.779336152144437358e-08,-3.850644381430181385e-08,-3.921952610715925411e-08,-3.993260840001669437e-08,-4.064569069287413463e-08,-4.135877298573157489e-08,-4.207185527858901516e-08,-4.278493757144645542e-08,-4.349801986430389568e-08,-4.421110215716133594e-08,-4.492418445001877620e-08 +0.000000000000000000e+00,-7.232281380550023321e-10,-1.446456276110004664e-09,-2.169684414165006893e-09,-2.892912552220008915e-09,-3.616140690275010937e-09,-4.339368828330012959e-09,-5.062596966385015394e-09,-5.785825104440017830e-09,-6.509053242495020265e-09,-7.232281380550022701e-09,-7.955509518605025136e-09,-8.678737656660027572e-09,-9.401965794715030007e-09,-1.012519393277003244e-08,-1.084842207082503488e-08,-1.157165020888003731e-08,-1.229487834693503975e-08,-1.301810648499004218e-08,-1.374133462304504462e-08,-1.446456276110004706e-08,-1.518779089915504949e-08,-1.591101903721005027e-08,-1.663424717526505105e-08,-1.735747531332005183e-08,-1.808070345137505262e-08,-1.880393158943005340e-08,-1.952715972748505418e-08,-2.025038786554005496e-08,-2.097361600359505574e-08,-2.169684414165005652e-08,-2.242007227970505730e-08,-2.314330041776005808e-08,-2.386652855581505886e-08,-2.458975669387005965e-08,-2.531298483192506043e-08,-2.603621296998006121e-08,-2.675944110803506199e-08,-2.748266924609006277e-08,-2.820589738414506355e-08,-2.892912552220006433e-08,-2.965235366025506511e-08,-3.037558179831006590e-08,-3.109880993636506668e-08,-3.182203807442006746e-08,-3.254526621247506824e-08,-3.326849435053006902e-08,-3.399172248858506980e-08,-3.471495062664007058e-08,-3.543817876469507136e-08,-3.616140690275007214e-08,-3.688463504080507293e-08,-3.760786317886007371e-08,-3.833109131691507449e-08,-3.905431945497007527e-08,-3.977754759302507605e-08,-4.050077573108007683e-08,-4.122400386913507761e-08,-4.194723200719007839e-08,-4.267046014524507917e-08,-4.339368828330007996e-08,-4.411691642135508074e-08,-4.484014455941008152e-08,-4.556337269746508230e-08 +0.000000000000000000e+00,-6.767930354851265114e-10,-1.353586070970253023e-09,-2.030379106455379431e-09,-2.707172141940505632e-09,-3.383965177425631833e-09,-4.060758212910758035e-09,-4.737551248395884236e-09,-5.414344283881010437e-09,-6.091137319366136638e-09,-6.767930354851262840e-09,-7.444723390336389041e-09,-8.121516425821514415e-09,-8.798309461306639789e-09,-9.475102496791765163e-09,-1.015189553227689054e-08,-1.082868856776201591e-08,-1.150548160324714129e-08,-1.218227463873226666e-08,-1.285906767421739203e-08,-1.353586070970251741e-08,-1.421265374518764278e-08,-1.488944678067276816e-08,-1.556623981615789353e-08,-1.624303285164301890e-08,-1.691982588712814428e-08,-1.759661892261326965e-08,-1.827341195809839503e-08,-1.895020499358352040e-08,-1.962699802906864577e-08,-2.030379106455377115e-08,-2.098058410003889652e-08,-2.165737713552402190e-08,-2.233417017100914727e-08,-2.301096320649427264e-08,-2.368775624197939802e-08,-2.436454927746452339e-08,-2.504134231294964877e-08,-2.571813534843477414e-08,-2.639492838391989951e-08,-2.707172141940502489e-08,-2.774851445489015026e-08,-2.842530749037527564e-08,-2.910210052586040101e-08,-2.977889356134552638e-08,-3.045568659683065507e-08,-3.113247963231578044e-08,-3.180927266780090582e-08,-3.248606570328603119e-08,-3.316285873877115656e-08,-3.383965177425628194e-08,-3.451644480974140731e-08,-3.519323784522653269e-08,-3.587003088071165806e-08,-3.654682391619678343e-08,-3.722361695168190881e-08,-3.790040998716703418e-08,-3.857720302265215956e-08,-3.925399605813728493e-08,-3.993078909362241030e-08,-4.060758212910753568e-08,-4.128437516459266105e-08,-4.196116820007778643e-08,-4.263796123556291180e-08 +0.000000000000000000e+00,7.454547749269452875e-10,1.490909549853890575e-09,2.236364324780836069e-09,2.981819099707781564e-09,3.727273874634727058e-09,4.472728649561672139e-09,5.218183424488617220e-09,5.963638199415562300e-09,6.709092974342507381e-09,7.454547749269452462e-09,8.200002524196397543e-09,8.945457299123342623e-09,9.690912074050287704e-09,1.043636684897723278e-08,1.118182162390417787e-08,1.192727639883112295e-08,1.267273117375806803e-08,1.341818594868501311e-08,1.416364072361195819e-08,1.490909549853890161e-08,1.565455027346584339e-08,1.640000504839278516e-08,1.714545982331972693e-08,1.789091459824666870e-08,1.863636937317361047e-08,1.938182414810055225e-08,2.012727892302749402e-08,2.087273369795443579e-08,2.161818847288137756e-08,2.236364324780831934e-08,2.310909802273526111e-08,2.385455279766220288e-08,2.460000757258914465e-08,2.534546234751608642e-08,2.609091712244302820e-08,2.683637189736996997e-08,2.758182667229691174e-08,2.832728144722385351e-08,2.907273622215079528e-08,2.981819099707773706e-08,3.056364577200467883e-08,3.130910054693162060e-08,3.205455532185856237e-08,3.280001009678550414e-08,3.354546487171244592e-08,3.429091964663938769e-08,3.503637442156632946e-08,3.578182919649327123e-08,3.652728397142021300e-08,3.727273874634715478e-08,3.801819352127409655e-08,3.876364829620103832e-08,3.950910307112798009e-08,4.025455784605492186e-08,4.100001262098186364e-08,4.174546739590880541e-08,4.249092217083574718e-08,4.323637694576268895e-08,4.398183172068963072e-08,4.472728649561657250e-08,4.547274127054351427e-08,4.621819604547045604e-08,4.696365082039739781e-08 +0.000000000000000000e+00,6.810435357169112199e-10,1.362087071433822440e-09,2.043130607150733556e-09,2.724174142867644466e-09,3.405217678584555376e-09,4.086261214301466286e-09,4.767304750018377609e-09,5.448348285735288932e-09,6.129391821452200256e-09,6.810435357169111579e-09,7.491478892886022902e-09,8.172522428602934226e-09,8.853565964319845549e-09,9.534609500036756872e-09,1.021565303575366820e-08,1.089669657147057952e-08,1.157774010718749084e-08,1.225878364290440217e-08,1.293982717862131349e-08,1.362087071433822481e-08,1.430191425005513614e-08,1.498295778577204911e-08,1.566400132148896375e-08,1.634504485720587838e-08,1.702608839292279301e-08,1.770713192863970764e-08,1.838817546435662227e-08,1.906921900007353691e-08,1.975026253579045154e-08,2.043130607150736617e-08,2.111234960722428080e-08,2.179339314294119543e-08,2.247443667865811007e-08,2.315548021437502470e-08,2.383652375009193933e-08,2.451756728580885396e-08,2.519861082152576859e-08,2.587965435724268323e-08,2.656069789295959786e-08,2.724174142867651249e-08,2.792278496439342712e-08,2.860382850011034175e-08,2.928487203582725639e-08,2.996591557154417102e-08,3.064695910726108565e-08,3.132800264297800028e-08,3.200904617869491491e-08,3.269008971441182955e-08,3.337113325012874418e-08,3.405217678584565881e-08,3.473322032156257344e-08,3.541426385727948807e-08,3.609530739299640271e-08,3.677635092871331734e-08,3.745739446443023197e-08,3.813843800014714660e-08,3.881948153586406123e-08,3.950052507158097587e-08,4.018156860729789050e-08,4.086261214301480513e-08,4.154365567873171976e-08,4.222469921444863440e-08,4.290574275016554903e-08 +0.000000000000000000e+00,2.406485656833507490e-21,4.812971313667014980e-21,7.219456970500522471e-21,9.625942627334029961e-21,1.203242828416753745e-20,1.443891394100104494e-20,1.684539959783455093e-20,1.925188525466805691e-20,2.165837091150156290e-20,2.406485656833506888e-20,2.647134222516857487e-20,2.887782788200208386e-20,3.128431353883559286e-20,3.369079919566910185e-20,3.609728485250261085e-20,3.850377050933611984e-20,4.091025616616962884e-20,4.331674182300313783e-20,4.572322747983664683e-20,4.812971313667015582e-20,5.053619879350366482e-20,5.294268445033717381e-20,5.534917010717068281e-20,5.775565576400419180e-20,6.016214142083770080e-20,6.256862707767120979e-20,6.497511273450471879e-20,6.738159839133822778e-20,6.978808404817173678e-20,7.219456970500524577e-20,7.460105536183875477e-20,7.700754101867226376e-20,7.941402667550577276e-20,8.182051233233928175e-20,8.422699798917279075e-20,8.663348364600629974e-20,8.903996930283980874e-20,9.144645495967331773e-20,9.385294061650682672e-20,9.625942627334033572e-20,9.866591193017384471e-20,1.010723975870073537e-19,1.034788832438408627e-19,1.058853689006743717e-19,1.082918545575078807e-19,1.106983402143413897e-19,1.131048258711748987e-19,1.155113115280084077e-19,1.179177971848419167e-19,1.203242828416754257e-19,1.227307684985089347e-19,1.251372541553424437e-19,1.275437398121759527e-19,1.299502254690094616e-19,1.323567111258429706e-19,1.347631967826764796e-19,1.371696824395099886e-19,1.395761680963434976e-19,1.419826537531770066e-19,1.443891394100105156e-19,1.467956250668440246e-19,1.492021107236775336e-19,1.516085963805110426e-19 +0.000000000000000000e+00,7.320220933159050927e-10,1.464044186631810185e-09,2.196066279947715381e-09,2.928088373263620784e-09,3.660110466579526187e-09,4.392132559895431590e-09,5.124154653211337407e-09,5.856176746527243223e-09,6.588198839843149040e-09,7.320220933159054856e-09,8.052243026474960673e-09,8.784265119790866489e-09,9.516287213106772306e-09,1.024830930642267812e-08,1.098033139973858394e-08,1.171235349305448976e-08,1.244437558637039557e-08,1.317639767968630139e-08,1.390841977300220720e-08,1.464044186631811302e-08,1.537246395963401884e-08,1.610448605294992465e-08,1.683650814626583047e-08,1.756853023958173629e-08,1.830055233289764210e-08,1.903257442621354792e-08,1.976459651952945374e-08,2.049661861284535955e-08,2.122864070616126537e-08,2.196066279947717119e-08,2.269268489279307700e-08,2.342470698610898282e-08,2.415672907942488864e-08,2.488875117274079445e-08,2.562077326605670027e-08,2.635279535937260608e-08,2.708481745268851190e-08,2.781683954600441772e-08,2.854886163932032353e-08,2.928088373263622935e-08,3.001290582595213517e-08,3.074492791926803767e-08,3.147695001258394018e-08,3.220897210589984269e-08,3.294099419921574520e-08,3.367301629253164771e-08,3.440503838584755021e-08,3.513706047916345272e-08,3.586908257247935523e-08,3.660110466579525774e-08,3.733312675911116024e-08,3.806514885242706275e-08,3.879717094574296526e-08,3.952919303905886777e-08,4.026121513237477028e-08,4.099323722569067278e-08,4.172525931900657529e-08,4.245728141232247780e-08,4.318930350563838031e-08,4.392132559895428281e-08,4.465334769227018532e-08,4.538536978558608783e-08,4.611739187890199034e-08 +0.000000000000000000e+00,7.479722627637226023e-10,1.495944525527445205e-09,2.243916788291167910e-09,2.991889051054890823e-09,3.739861313818614149e-09,4.487833576582337475e-09,5.235805839346060801e-09,5.983778102109784127e-09,6.731750364873507453e-09,7.479722627637231606e-09,8.227694890400955759e-09,8.975667153164679913e-09,9.723639415928404066e-09,1.047161167869212822e-08,1.121958394145585237e-08,1.196755620421957653e-08,1.271552846698330068e-08,1.346350072974702483e-08,1.421147299251074899e-08,1.495944525527447314e-08,1.570741751803819729e-08,1.645538978080192144e-08,1.720336204356564560e-08,1.795133430632936975e-08,1.869930656909309390e-08,1.944727883185681806e-08,2.019525109462054221e-08,2.094322335738426636e-08,2.169119562014799052e-08,2.243916788291171467e-08,2.318714014567543882e-08,2.393511240843916298e-08,2.468308467120288713e-08,2.543105693396661128e-08,2.617902919673033544e-08,2.692700145949405959e-08,2.767497372225778374e-08,2.842294598502150790e-08,2.917091824778523205e-08,2.991889051054895289e-08,3.066686277331267374e-08,3.141483503607639458e-08,3.216280729884011543e-08,3.291077956160383627e-08,3.365875182436755712e-08,3.440672408713127796e-08,3.515469634989499881e-08,3.590266861265871965e-08,3.665064087542244049e-08,3.739861313818616134e-08,3.814658540094988218e-08,3.889455766371360303e-08,3.964252992647732387e-08,4.039050218924104472e-08,4.113847445200476556e-08,4.188644671476848641e-08,4.263441897753220725e-08,4.338239124029592810e-08,4.413036350305964894e-08,4.487833576582336978e-08,4.562630802858709063e-08,4.637428029135081147e-08,4.712225255411453232e-08 +0.000000000000000000e+00,6.754873683374387062e-10,1.350974736674877412e-09,2.026462105012316119e-09,2.701949473349754825e-09,3.377436841687193531e-09,4.052924210024632237e-09,4.728411578362070944e-09,5.403898946699509650e-09,6.079386315036948356e-09,6.754873683374387062e-09,7.430361051711825768e-09,8.105848420049264475e-09,8.781335788386704008e-09,9.456823156724143541e-09,1.013231052506158307e-08,1.080779789339902261e-08,1.148328526173646214e-08,1.215877263007390167e-08,1.283425999841134121e-08,1.350974736674878074e-08,1.418523473508622028e-08,1.486072210342365981e-08,1.553620947176109934e-08,1.621169684009853888e-08,1.688718420843597841e-08,1.756267157677341794e-08,1.823815894511085748e-08,1.891364631344829701e-08,1.958913368178573654e-08,2.026462105012317608e-08,2.094010841846061561e-08,2.161559578679805514e-08,2.229108315513549468e-08,2.296657052347293421e-08,2.364205789181037374e-08,2.431754526014781328e-08,2.499303262848525281e-08,2.566851999682269234e-08,2.634400736516013188e-08,2.701949473349757141e-08,2.769498210183501094e-08,2.837046947017245048e-08,2.904595683850989001e-08,2.972144420684732954e-08,3.039693157518476908e-08,3.107241894352221192e-08,3.174790631185965476e-08,3.242339368019709760e-08,3.309888104853454045e-08,3.377436841687198329e-08,3.444985578520942613e-08,3.512534315354686897e-08,3.580083052188431181e-08,3.647631789022175466e-08,3.715180525855919750e-08,3.782729262689664034e-08,3.850277999523408318e-08,3.917826736357152602e-08,3.985375473190896887e-08,4.052924210024641171e-08,4.120472946858385455e-08,4.188021683692129739e-08,4.255570420525874023e-08 +0.000000000000000000e+00,3.410942107164768038e-10,6.821884214329536075e-10,1.023282632149430411e-09,1.364376842865907215e-09,1.705471053582384019e-09,2.046565264298860823e-09,2.387659475015337419e-09,2.728753685731814016e-09,3.069847896448290613e-09,3.410942107164767210e-09,3.752036317881243807e-09,4.093130528597720818e-09,4.434224739314197828e-09,4.775318950030674839e-09,5.116413160747151849e-09,5.457507371463628860e-09,5.798601582180105871e-09,6.139695792896582881e-09,6.480790003613059892e-09,6.821884214329536902e-09,7.162978425046013913e-09,7.504072635762490923e-09,7.845166846478967934e-09,8.186261057195444944e-09,8.527355267911921955e-09,8.868449478628398966e-09,9.209543689344875976e-09,9.550637900061352987e-09,9.891732110777829997e-09,1.023282632149430701e-08,1.057392053221078402e-08,1.091501474292726103e-08,1.125610895364373804e-08,1.159720316436021505e-08,1.193829737507669206e-08,1.227939158579316907e-08,1.262048579650964608e-08,1.296158000722612309e-08,1.330267421794260010e-08,1.364376842865907711e-08,1.398486263937555412e-08,1.432595685009203113e-08,1.466705106080850814e-08,1.500814527152498516e-08,1.534923948224146051e-08,1.569033369295793587e-08,1.603142790367441122e-08,1.637252211439088658e-08,1.671361632510736194e-08,1.705471053582383729e-08,1.739580474654031265e-08,1.773689895725678800e-08,1.807799316797326336e-08,1.841908737868973872e-08,1.876018158940621407e-08,1.910127580012268943e-08,1.944237001083916479e-08,1.978346422155564014e-08,2.012455843227211550e-08,2.046565264298859085e-08,2.080674685370506621e-08,2.114784106442154157e-08,2.148893527513801692e-08 +0.000000000000000000e+00,5.755813367057344234e-21,1.151162673411468847e-20,1.726744010117203120e-20,2.302325346822937393e-20,2.877906683528671666e-20,3.453488020234406240e-20,4.029069356940140814e-20,4.604650693645875388e-20,5.180232030351609961e-20,5.755813367057344535e-20,6.331394703763079109e-20,6.906976040468813683e-20,7.482557377174548257e-20,8.058138713880282831e-20,8.633720050586017405e-20,9.209301387291751979e-20,9.784882723997486553e-20,1.036046406070322113e-19,1.093604539740895450e-19,1.151162673411468666e-19,1.208720807082041883e-19,1.266278940752615100e-19,1.323837074423188316e-19,1.381395208093761533e-19,1.438953341764334750e-19,1.496511475434907966e-19,1.554069609105481183e-19,1.611627742776054400e-19,1.669185876446627616e-19,1.726744010117200833e-19,1.784302143787774049e-19,1.841860277458347266e-19,1.899418411128920483e-19,1.956976544799493699e-19,2.014534678470066916e-19,2.072092812140640133e-19,2.129650945811213349e-19,2.187209079481786566e-19,2.244767213152359783e-19,2.302325346822932999e-19,2.359883480493506216e-19,2.417441614164079433e-19,2.474999747834652649e-19,2.532557881505225866e-19,2.590116015175799083e-19,2.647674148846372299e-19,2.705232282516945516e-19,2.762790416187518733e-19,2.820348549858091949e-19,2.877906683528665166e-19,2.935464817199238382e-19,2.993022950869811599e-19,3.050581084540384816e-19,3.108139218210958032e-19,3.165697351881531249e-19,3.223255485552104466e-19,3.280813619222677682e-19,3.338371752893250899e-19,3.395929886563824116e-19,3.453488020234397332e-19,3.511046153904970549e-19,3.568604287575543766e-19,3.626162421246116982e-19 +0.000000000000000000e+00,-7.454547749128472348e-10,-1.490909549825694470e-09,-2.236364324738541498e-09,-2.981819099651388525e-09,-3.727273874564235553e-09,-4.472728649477082995e-09,-5.218183424389930437e-09,-5.963638199302777878e-09,-6.709092974215625320e-09,-7.454547749128472761e-09,-8.200002524041319376e-09,-8.945457298954165990e-09,-9.690912073867012604e-09,-1.043636684877985922e-08,-1.118182162369270583e-08,-1.192727639860555245e-08,-1.267273117351839906e-08,-1.341818594843124568e-08,-1.416364072334409229e-08,-1.490909549825693891e-08,-1.565455027316978552e-08,-1.640000504808263213e-08,-1.714545982299547875e-08,-1.789091459790832536e-08,-1.863636937282117198e-08,-1.938182414773401859e-08,-2.012727892264686521e-08,-2.087273369755971182e-08,-2.161818847247255843e-08,-2.236364324738540505e-08,-2.310909802229825166e-08,-2.385455279721109828e-08,-2.460000757212394489e-08,-2.534546234703679151e-08,-2.609091712194963812e-08,-2.683637189686248474e-08,-2.758182667177533135e-08,-2.832728144668817796e-08,-2.907273622160102458e-08,-2.981819099651387119e-08,-3.056364577142671781e-08,-3.130910054633956442e-08,-3.205455532125241104e-08,-3.280001009616525765e-08,-3.354546487107810426e-08,-3.429091964599095088e-08,-3.503637442090379749e-08,-3.578182919581664411e-08,-3.652728397072949072e-08,-3.727273874564233734e-08,-3.801819352055518395e-08,-3.876364829546803057e-08,-3.950910307038087718e-08,-4.025455784529372379e-08,-4.100001262020657041e-08,-4.174546739511941702e-08,-4.249092217003226364e-08,-4.323637694494511025e-08,-4.398183171985795687e-08,-4.472728649477080348e-08,-4.547274126968365009e-08,-4.621819604459649671e-08,-4.696365081950934332e-08 +0.000000000000000000e+00,-6.810435357119177374e-10,-1.362087071423835475e-09,-2.043130607135753315e-09,-2.724174142847671363e-09,-3.405217678559589411e-09,-4.086261214271507458e-09,-4.767304749983425919e-09,-5.448348285695344380e-09,-6.129391821407262842e-09,-6.810435357119181303e-09,-7.491478892831099764e-09,-8.172522428543018225e-09,-8.853565964254936686e-09,-9.534609499966855147e-09,-1.021565303567877361e-08,-1.089669657139069207e-08,-1.157774010710261053e-08,-1.225878364281452899e-08,-1.293982717852644745e-08,-1.362087071423836591e-08,-1.430191424995028438e-08,-1.498295778566220284e-08,-1.566400132137412130e-08,-1.634504485708603976e-08,-1.702608839279795822e-08,-1.770713192850987668e-08,-1.838817546422179514e-08,-1.906921899993371360e-08,-1.975026253564563206e-08,-2.043130607135755053e-08,-2.111234960706946899e-08,-2.179339314278138745e-08,-2.247443667849330591e-08,-2.315548021420522437e-08,-2.383652374991714283e-08,-2.451756728562906129e-08,-2.519861082134097975e-08,-2.587965435705289821e-08,-2.656069789276481668e-08,-2.724174142847673514e-08,-2.792278496418865360e-08,-2.860382849990057206e-08,-2.928487203561249052e-08,-2.996591557132441229e-08,-3.064695910703633075e-08,-3.132800264274824921e-08,-3.200904617846016767e-08,-3.269008971417208614e-08,-3.337113324988400460e-08,-3.405217678559592306e-08,-3.473322032130784152e-08,-3.541426385701975998e-08,-3.609530739273167844e-08,-3.677635092844359690e-08,-3.745739446415551536e-08,-3.813843799986743382e-08,-3.881948153557935229e-08,-3.950052507129127075e-08,-4.018156860700318921e-08,-4.086261214271510767e-08,-4.154365567842702613e-08,-4.222469921413894459e-08,-4.290574274985086305e-08 +0.000000000000000000e+00,-3.410942107116235283e-10,-6.821884214232470566e-10,-1.023282632134870585e-09,-1.364376842846494113e-09,-1.705471053558117642e-09,-2.046565264269741170e-09,-2.387659474981364698e-09,-2.728753685692988226e-09,-3.069847896404611755e-09,-3.410942107116235283e-09,-3.752036317827859225e-09,-4.093130528539483167e-09,-4.434224739251107109e-09,-4.775318949962731051e-09,-5.116413160674354992e-09,-5.457507371385978934e-09,-5.798601582097602876e-09,-6.139695792809226818e-09,-6.480790003520850760e-09,-6.821884214232474702e-09,-7.162978424944098644e-09,-7.504072635655721759e-09,-7.845166846367344873e-09,-8.186261057078967988e-09,-8.527355267790591103e-09,-8.868449478502214217e-09,-9.209543689213837332e-09,-9.550637899925460447e-09,-9.891732110637083562e-09,-1.023282632134870668e-08,-1.057392053206032979e-08,-1.091501474277195291e-08,-1.125610895348357602e-08,-1.159720316419519914e-08,-1.193829737490682225e-08,-1.227939158561844536e-08,-1.262048579633006848e-08,-1.296158000704169159e-08,-1.330267421775331471e-08,-1.364376842846493782e-08,-1.398486263917656094e-08,-1.432595684988818405e-08,-1.466705106059980717e-08,-1.500814527131143028e-08,-1.534923948202305174e-08,-1.569033369273467320e-08,-1.603142790344629466e-08,-1.637252211415791612e-08,-1.671361632486953758e-08,-1.705471053558115904e-08,-1.739580474629278050e-08,-1.773689895700440197e-08,-1.807799316771602343e-08,-1.841908737842764489e-08,-1.876018158913926635e-08,-1.910127579985088781e-08,-1.944237001056250927e-08,-1.978346422127413073e-08,-2.012455843198575219e-08,-2.046565264269737365e-08,-2.080674685340899511e-08,-2.114784106412061657e-08,-2.148893527483223803e-08 +0.000000000000000000e+00,-7.320220932950968474e-10,-1.464044186590193695e-09,-2.196066279885290542e-09,-2.928088373180387390e-09,-3.660110466475484237e-09,-4.392132559770581084e-09,-5.124154653065677518e-09,-5.856176746360773952e-09,-6.588198839655870386e-09,-7.320220932950966820e-09,-8.052243026246063253e-09,-8.784265119541160514e-09,-9.516287212836257775e-09,-1.024830930613135504e-08,-1.098033139942645230e-08,-1.171235349272154956e-08,-1.244437558601664682e-08,-1.317639767931174408e-08,-1.390841977260684134e-08,-1.464044186590193860e-08,-1.537246395919703586e-08,-1.610448605249213312e-08,-1.683650814578723039e-08,-1.756853023908232765e-08,-1.830055233237742491e-08,-1.903257442567252217e-08,-1.976459651896761943e-08,-2.049661861226271669e-08,-2.122864070555781395e-08,-2.196066279885291121e-08,-2.269268489214800847e-08,-2.342470698544310573e-08,-2.415672907873820300e-08,-2.488875117203330026e-08,-2.562077326532839752e-08,-2.635279535862349478e-08,-2.708481745191859204e-08,-2.781683954521368930e-08,-2.854886163850878656e-08,-2.928088373180388382e-08,-3.001290582509898108e-08,-3.074492791839407834e-08,-3.147695001168917561e-08,-3.220897210498427287e-08,-3.294099419827937013e-08,-3.367301629157446739e-08,-3.440503838486956465e-08,-3.513706047816466191e-08,-3.586908257145975917e-08,-3.660110466475485643e-08,-3.733312675804995369e-08,-3.806514885134505095e-08,-3.879717094464014822e-08,-3.952919303793524548e-08,-4.026121513123034274e-08,-4.099323722452544000e-08,-4.172525931782053726e-08,-4.245728141111563452e-08,-4.318930350441073178e-08,-4.392132559770582904e-08,-4.465334769100092630e-08,-4.538536978429602356e-08,-4.611739187759112083e-08 +0.000000000000000000e+00,-7.479722627512291765e-10,-1.495944525502458353e-09,-2.243916788253687529e-09,-2.991889051004916706e-09,-3.739861313756145469e-09,-4.487833576507374232e-09,-5.235805839258602995e-09,-5.983778102009831758e-09,-6.731750364761060520e-09,-7.479722627512289283e-09,-8.227694890263518046e-09,-8.975667153014746809e-09,-9.723639415765975572e-09,-1.047161167851720433e-08,-1.121958394126843310e-08,-1.196755620401966186e-08,-1.271552846677089062e-08,-1.346350072952211939e-08,-1.421147299227334815e-08,-1.495944525502457526e-08,-1.570741751777580237e-08,-1.645538978052702948e-08,-1.720336204327825658e-08,-1.795133430602948369e-08,-1.869930656878071080e-08,-1.944727883153193791e-08,-2.019525109428316502e-08,-2.094322335703439213e-08,-2.169119561978561923e-08,-2.243916788253684634e-08,-2.318714014528807345e-08,-2.393511240803930056e-08,-2.468308467079052767e-08,-2.543105693354175478e-08,-2.617902919629298189e-08,-2.692700145904420899e-08,-2.767497372179543610e-08,-2.842294598454666321e-08,-2.917091824729789032e-08,-2.991889051004911743e-08,-3.066686277280034454e-08,-3.141483503555157165e-08,-3.216280729830279875e-08,-3.291077956105402586e-08,-3.365875182380525297e-08,-3.440672408655648008e-08,-3.515469634930770719e-08,-3.590266861205893430e-08,-3.665064087481016141e-08,-3.739861313756138851e-08,-3.814658540031261562e-08,-3.889455766306384273e-08,-3.964252992581506984e-08,-4.039050218856629695e-08,-4.113847445131752406e-08,-4.188644671406875117e-08,-4.263441897681997827e-08,-4.338239123957120538e-08,-4.413036350232243249e-08,-4.487833576507365960e-08,-4.562630802782488671e-08,-4.637428029057611382e-08,-4.712225255332734093e-08 +0.000000000000000000e+00,-6.754873683258926090e-10,-1.350974736651785218e-09,-2.026462104977677930e-09,-2.701949473303570850e-09,-3.377436841629463769e-09,-4.052924209955356688e-09,-4.728411578281249607e-09,-5.403898946607142527e-09,-6.079386314933035446e-09,-6.754873683258928365e-09,-7.430361051584821284e-09,-8.105848419910715031e-09,-8.781335788236608777e-09,-9.456823156562502524e-09,-1.013231052488839627e-08,-1.080779789321429002e-08,-1.148328526154018376e-08,-1.215877262986607751e-08,-1.283425999819197126e-08,-1.350974736651786500e-08,-1.418523473484375875e-08,-1.486072210316965249e-08,-1.553620947149554790e-08,-1.621169683982144330e-08,-1.688718420814733870e-08,-1.756267157647323410e-08,-1.823815894479912950e-08,-1.891364631312502490e-08,-1.958913368145092030e-08,-2.026462104977681570e-08,-2.094010841810271110e-08,-2.161559578642860650e-08,-2.229108315475450190e-08,-2.296657052308039730e-08,-2.364205789140629270e-08,-2.431754525973218811e-08,-2.499303262805808351e-08,-2.566851999638397891e-08,-2.634400736470987431e-08,-2.701949473303576971e-08,-2.769498210136166511e-08,-2.837046946968756051e-08,-2.904595683801345591e-08,-2.972144420633935131e-08,-3.039693157466524671e-08,-3.107241894299114211e-08,-3.174790631131703751e-08,-3.242339367964293291e-08,-3.309888104796882832e-08,-3.377436841629472372e-08,-3.444985578462061912e-08,-3.512534315294651452e-08,-3.580083052127240992e-08,-3.647631788959830532e-08,-3.715180525792420072e-08,-3.782729262625009612e-08,-3.850277999457599152e-08,-3.917826736290188692e-08,-3.985375473122778232e-08,-4.052924209955367772e-08,-4.120472946787957312e-08,-4.188021683620546853e-08,-4.255570420453136393e-08 +0.000000000000000000e+00,7.706812410975935156e-10,1.541362482195187031e-09,2.312043723292780444e-09,3.082724964390373649e-09,3.853406205487966441e-09,4.624087446585559233e-09,5.394768687683152025e-09,6.165449928780744816e-09,6.936131169878337608e-09,7.706812410975929573e-09,8.477493652073521538e-09,9.248174893171113502e-09,1.001885613426870547e-08,1.078953737536629743e-08,1.156021861646388940e-08,1.233089985756148136e-08,1.310158109865907333e-08,1.387226233975666529e-08,1.464294358085425725e-08,1.541362482195184922e-08,1.618430606304943953e-08,1.695498730414702984e-08,1.772566854524462015e-08,1.849634978634221046e-08,1.926703102743980077e-08,2.003771226853739108e-08,2.080839350963498139e-08,2.157907475073257170e-08,2.234975599183016201e-08,2.312043723292775232e-08,2.389111847402534263e-08,2.466179971512293294e-08,2.543248095622052325e-08,2.620316219731811356e-08,2.697384343841570387e-08,2.774452467951329418e-08,2.851520592061088450e-08,2.928588716170847481e-08,3.005656840280606512e-08,3.082724964390365212e-08,3.159793088500123912e-08,3.236861212609882612e-08,3.313929336719641312e-08,3.390997460829400012e-08,3.468065584939158713e-08,3.545133709048917413e-08,3.622201833158676113e-08,3.699269957268434813e-08,3.776338081378193513e-08,3.853406205487952213e-08,3.930474329597710913e-08,4.007542453707469614e-08,4.084610577817228314e-08,4.161678701926987014e-08,4.238746826036745714e-08,4.315814950146504414e-08,4.392883074256263114e-08,4.469951198366021815e-08,4.547019322475780515e-08,4.624087446585539215e-08,4.701155570695297915e-08,4.778223694805056615e-08,4.855291818914815315e-08 +0.000000000000000000e+00,7.104953638212238984e-10,1.420990727642447797e-09,2.131486091463671902e-09,2.841981455284896007e-09,3.552476819106120112e-09,4.262972182927343804e-09,4.973467546748567495e-09,5.683962910569791187e-09,6.394458274391014878e-09,7.104953638212238570e-09,7.815449002033463089e-09,8.525944365854687607e-09,9.236439729675912126e-09,9.946935093497136645e-09,1.065743045731836116e-08,1.136792582113958568e-08,1.207842118496081020e-08,1.278891654878203472e-08,1.349941191260325924e-08,1.420990727642448376e-08,1.492040264024570828e-08,1.563089800406693279e-08,1.634139336788815731e-08,1.705188873170938183e-08,1.776238409553060635e-08,1.847287945935183087e-08,1.918337482317305539e-08,1.989387018699427991e-08,2.060436555081550443e-08,2.131486091463672894e-08,2.202535627845795346e-08,2.273585164227917798e-08,2.344634700610040250e-08,2.415684236992162702e-08,2.486733773374285154e-08,2.557783309756407606e-08,2.628832846138530058e-08,2.699882382520652509e-08,2.770931918902774961e-08,2.841981455284897413e-08,2.913030991667019865e-08,2.984080528049142317e-08,3.055130064431264769e-08,3.126179600813387221e-08,3.197229137195509673e-08,3.268278673577632124e-08,3.339328209959754576e-08,3.410377746341877028e-08,3.481427282723999480e-08,3.552476819106121932e-08,3.623526355488244384e-08,3.694575891870366836e-08,3.765625428252489288e-08,3.836674964634611739e-08,3.907724501016734191e-08,3.978774037398856643e-08,4.049823573780979095e-08,4.120873110163101547e-08,4.191922646545223999e-08,4.262972182927346451e-08,4.334021719309468903e-08,4.405071255691591354e-08,4.476120792073713806e-08 +0.000000000000000000e+00,-5.815778175429332307e-22,-1.163155635085866461e-21,-1.744733452628799786e-21,-2.326311270171733299e-21,-2.907889087714666812e-21,-3.489466905257600325e-21,-4.071044722800533838e-21,-4.652622540343467350e-21,-5.234200357886400863e-21,-5.815778175429334376e-21,-6.397355992972267889e-21,-6.978933810515202154e-21,-7.560511628058136419e-21,-8.142089445601070684e-21,-8.723667263144004949e-21,-9.305245080686939215e-21,-9.886822898229873480e-21,-1.046840071577280774e-20,-1.104997853331574201e-20,-1.163155635085867628e-20,-1.221313416840161054e-20,-1.279471198594454481e-20,-1.337628980348747907e-20,-1.395786762103041334e-20,-1.453944543857334760e-20,-1.512102325611628187e-20,-1.570260107365921613e-20,-1.628417889120215040e-20,-1.686575670874508466e-20,-1.744733452628801893e-20,-1.802891234383095319e-20,-1.861049016137388746e-20,-1.919206797891682172e-20,-1.977364579645975599e-20,-2.035522361400269025e-20,-2.093680143154562452e-20,-2.151837924908855878e-20,-2.209995706663149305e-20,-2.268153488417442731e-20,-2.326311270171736158e-20,-2.384469051926029584e-20,-2.442626833680323011e-20,-2.500784615434616437e-20,-2.558942397188909864e-20,-2.617100178943203290e-20,-2.675257960697496717e-20,-2.733415742451790444e-20,-2.791573524206084473e-20,-2.849731305960378501e-20,-2.907889087714672529e-20,-2.966046869468966558e-20,-3.024204651223260586e-20,-3.082362432977554615e-20,-3.140520214731848643e-20,-3.198677996486142671e-20,-3.256835778240436700e-20,-3.314993559994730728e-20,-3.373151341749024756e-20,-3.431309123503318785e-20,-3.489466905257612813e-20,-3.547624687011906842e-20,-3.605782468766200870e-20,-3.663940250520494898e-20 +0.000000000000000000e+00,7.556943817478519423e-10,1.511388763495703885e-09,2.267083145243555723e-09,3.022777526991407356e-09,3.778471908739258988e-09,4.534166290487110620e-09,5.289860672234962252e-09,6.045555053982813884e-09,6.801249435730665516e-09,7.556943817478516321e-09,8.312638199226367953e-09,9.068332580974219585e-09,9.824026962722071217e-09,1.057972134446992285e-08,1.133541572621777448e-08,1.209111010796562611e-08,1.284680448971347775e-08,1.360249887146132938e-08,1.435819325320918101e-08,1.511388763495703264e-08,1.586958201670488427e-08,1.662527639845273591e-08,1.738097078020058754e-08,1.813666516194843917e-08,1.889235954369629080e-08,1.964805392544414243e-08,2.040374830719199407e-08,2.115944268893984570e-08,2.191513707068769733e-08,2.267083145243554896e-08,2.342652583418340059e-08,2.418222021593125223e-08,2.493791459767910386e-08,2.569360897942695549e-08,2.644930336117480712e-08,2.720499774292265876e-08,2.796069212467051039e-08,2.871638650641836202e-08,2.947208088816621365e-08,3.022777526991406528e-08,3.098346965166191361e-08,3.173916403340976193e-08,3.249485841515761025e-08,3.325055279690545858e-08,3.400624717865330690e-08,3.476194156040115522e-08,3.551763594214900355e-08,3.627333032389685187e-08,3.702902470564470019e-08,3.778471908739254852e-08,3.854041346914039684e-08,3.929610785088824516e-08,4.005180223263609349e-08,4.080749661438394181e-08,4.156319099613179013e-08,4.231888537787963846e-08,4.307457975962748678e-08,4.383027414137533510e-08,4.458596852312318343e-08,4.534166290487103175e-08,4.609735728661888007e-08,4.685305166836672840e-08,4.760874605011457672e-08 +0.000000000000000000e+00,7.967977014420181404e-10,1.593595402884036281e-09,2.390393104326054318e-09,3.187190805768072148e-09,3.983988507210089978e-09,4.780786208652107808e-09,5.577583910094125638e-09,6.374381611536143469e-09,7.171179312978161299e-09,7.967977014420178302e-09,8.764774715862196132e-09,9.561572417304213962e-09,1.035837011874623179e-08,1.115516782018824962e-08,1.195196552163026745e-08,1.274876322307228528e-08,1.354556092451430311e-08,1.434235862595632094e-08,1.513915632739833877e-08,1.593595402884035660e-08,1.673275173028237443e-08,1.752954943172439226e-08,1.832634713316641009e-08,1.912314483460842792e-08,1.991994253605044575e-08,2.071674023749246358e-08,2.151353793893448141e-08,2.231033564037649924e-08,2.310713334181851708e-08,2.390393104326053491e-08,2.470072874470255274e-08,2.549752644614457057e-08,2.629432414758658840e-08,2.709112184902860623e-08,2.788791955047062406e-08,2.868471725191264189e-08,2.948151495335465972e-08,3.027831265479667755e-08,3.107511035623869207e-08,3.187190805768070659e-08,3.266870575912272111e-08,3.346550346056473563e-08,3.426230116200675015e-08,3.505909886344876468e-08,3.585589656489077920e-08,3.665269426633279372e-08,3.744949196777480824e-08,3.824628966921682276e-08,3.904308737065883728e-08,3.983988507210085180e-08,4.063668277354286633e-08,4.143348047498488085e-08,4.223027817642689537e-08,4.302707587786890989e-08,4.382387357931092441e-08,4.462067128075293893e-08,4.541746898219495345e-08,4.621426668363696798e-08,4.701106438507898250e-08,4.780786208652099702e-08,4.860465978796301154e-08,4.940145748940502606e-08,5.019825519084704058e-08 +0.000000000000000000e+00,6.904856181044313476e-10,1.380971236208862695e-09,2.071456854313294043e-09,2.761942472417725390e-09,3.452428090522156738e-09,4.142913708626588085e-09,4.833399326731019019e-09,5.523884944835449953e-09,6.214370562939880887e-09,6.904856181044311821e-09,7.595341799148742755e-09,8.285827417253174517e-09,8.976313035357606278e-09,9.666798653462038039e-09,1.035728427156646980e-08,1.104776988967090156e-08,1.173825550777533332e-08,1.242874112587976508e-08,1.311922674398419684e-08,1.380971236208862861e-08,1.450019798019306037e-08,1.519068359829749213e-08,1.588116921640192224e-08,1.657165483450635234e-08,1.726214045261078245e-08,1.795262607071521256e-08,1.864311168881964266e-08,1.933359730692407277e-08,2.002408292502850288e-08,2.071456854313293298e-08,2.140505416123736309e-08,2.209553977934179320e-08,2.278602539744622330e-08,2.347651101555065341e-08,2.416699663365508352e-08,2.485748225175951362e-08,2.554796786986394373e-08,2.623845348796837384e-08,2.692893910607280394e-08,2.761942472417723405e-08,2.830991034228166416e-08,2.900039596038609426e-08,2.969088157849052437e-08,3.038136719659495117e-08,3.107185281469937797e-08,3.176233843280380477e-08,3.245282405090823156e-08,3.314330966901265836e-08,3.383379528711708516e-08,3.452428090522151196e-08,3.521476652332593876e-08,3.590525214143036555e-08,3.659573775953479235e-08,3.728622337763921915e-08,3.797670899574364595e-08,3.866719461384807275e-08,3.935768023195249954e-08,4.004816585005692634e-08,4.073865146816135314e-08,4.142913708626577994e-08,4.211962270437020674e-08,4.281010832247463353e-08,4.350059394057906033e-08 +0.000000000000000000e+00,3.534372529549424450e-10,7.068745059098848900e-10,1.060311758864827387e-09,1.413749011819769987e-09,1.767186264774712587e-09,2.120623517729655187e-09,2.474060770684597787e-09,2.827498023639540387e-09,3.180935276594482987e-09,3.534372529549425587e-09,3.887809782504367774e-09,4.241247035459309547e-09,4.594684288414251320e-09,4.948121541369193092e-09,5.301558794324134865e-09,5.654996047279076638e-09,6.008433300234018411e-09,6.361870553188960184e-09,6.715307806143901957e-09,7.068745059098843730e-09,7.422182312053785503e-09,7.775619565008727276e-09,8.129056817963669049e-09,8.482494070918610822e-09,8.835931323873552594e-09,9.189368576828494367e-09,9.542805829783436140e-09,9.896243082738377913e-09,1.024968033569331969e-08,1.060311758864826146e-08,1.095655484160320323e-08,1.130999209455814500e-08,1.166342934751308678e-08,1.201686660046802855e-08,1.237030385342297032e-08,1.272374110637791210e-08,1.307717835933285387e-08,1.343061561228779564e-08,1.378405286524273742e-08,1.413749011819767919e-08,1.449092737115262096e-08,1.484436462410756273e-08,1.519780187706250285e-08,1.555123913001744463e-08,1.590467638297238640e-08,1.625811363592732817e-08,1.661155088888226994e-08,1.696498814183721172e-08,1.731842539479215349e-08,1.767186264774709526e-08,1.802529990070203704e-08,1.837873715365697881e-08,1.873217440661192058e-08,1.908561165956686235e-08,1.943904891252180413e-08,1.979248616547674590e-08,2.014592341843168767e-08,2.049936067138662945e-08,2.085279792434157122e-08,2.120623517729651299e-08,2.155967243025145476e-08,2.191310968320639654e-08,2.226654693616133831e-08 +0.000000000000000000e+00,2.054644144372579973e-22,4.109288288745159946e-22,6.163932433117740154e-22,8.218576577490320832e-22,1.027322072186290057e-21,1.232786486623548031e-21,1.438250901060806005e-21,1.643715315498063978e-21,1.849179729935321952e-21,2.054644144372580114e-21,2.260108558809838276e-21,2.465572973247096438e-21,2.671037387684354600e-21,2.876501802121612761e-21,3.081966216558870923e-21,3.287430630996129085e-21,3.492895045433387247e-21,3.698359459870645409e-21,3.903823874307903571e-21,4.109288288745161733e-21,4.314752703182419895e-21,4.520217117619678056e-21,4.725681532056936218e-21,4.931145946494194380e-21,5.136610360931452542e-21,5.342074775368710704e-21,5.547539189805968866e-21,5.753003604243227028e-21,5.958468018680485189e-21,6.163932433117743351e-21,6.369396847555001513e-21,6.574861261992259675e-21,6.780325676429517837e-21,6.985790090866775999e-21,7.191254505304034161e-21,7.396718919741292322e-21,7.602183334178550484e-21,7.807647748615808646e-21,8.013112163053066808e-21,8.218576577490324970e-21,8.424040991927583132e-21,8.629505406364841294e-21,8.834969820802099456e-21,9.040434235239357617e-21,9.245898649676615779e-21,9.451363064113873941e-21,9.656827478551132103e-21,9.862291892988390265e-21,1.006775630742564843e-20,1.027322072186290659e-20,1.047868513630016475e-20,1.068414955073742291e-20,1.088961396517468107e-20,1.109507837961193924e-20,1.130054279404919740e-20,1.150600720848645556e-20,1.171147162292371372e-20,1.191693603736097188e-20,1.212240045179823005e-20,1.232786486623548821e-20,1.253332928067274637e-20,1.273879369511000453e-20,1.294425810954726269e-20 +0.000000000000000000e+00,-7.706812410911796606e-10,-1.541362482182359321e-09,-2.312043723273538982e-09,-3.082724964364718642e-09,-3.853406205455898303e-09,-4.624087446547077963e-09,-5.394768687638257624e-09,-6.165449928729437285e-09,-6.936131169820616945e-09,-7.706812410911796606e-09,-8.477493652002976266e-09,-9.248174893094155927e-09,-1.001885613418533559e-08,-1.078953737527651525e-08,-1.156021861636769491e-08,-1.233089985745887457e-08,-1.310158109855005423e-08,-1.387226233964123389e-08,-1.464294358073241355e-08,-1.541362482182359321e-08,-1.618430606291477453e-08,-1.695498730400595584e-08,-1.772566854509713716e-08,-1.849634978618831847e-08,-1.926703102727949979e-08,-2.003771226837068110e-08,-2.080839350946186242e-08,-2.157907475055304373e-08,-2.234975599164422505e-08,-2.312043723273540636e-08,-2.389111847382658768e-08,-2.466179971491776899e-08,-2.543248095600895031e-08,-2.620316219710013162e-08,-2.697384343819131294e-08,-2.774452467928249425e-08,-2.851520592037367557e-08,-2.928588716146485688e-08,-3.005656840255603819e-08,-3.082724964364721951e-08,-3.159793088473840082e-08,-3.236861212582958214e-08,-3.313929336692076345e-08,-3.390997460801194477e-08,-3.468065584910312608e-08,-3.545133709019430740e-08,-3.622201833128548871e-08,-3.699269957237667003e-08,-3.776338081346785134e-08,-3.853406205455903266e-08,-3.930474329565021397e-08,-4.007542453674139529e-08,-4.084610577783257660e-08,-4.161678701892375792e-08,-4.238746826001493923e-08,-4.315814950110612055e-08,-4.392883074219730186e-08,-4.469951198328848318e-08,-4.547019322437966449e-08,-4.624087446547084581e-08,-4.701155570656202712e-08,-4.778223694765320844e-08,-4.855291818874438975e-08 +0.000000000000000000e+00,-7.104953638220630731e-10,-1.420990727644126146e-09,-2.131486091466189012e-09,-2.841981455288251879e-09,-3.552476819110314745e-09,-4.262972182932378025e-09,-4.973467546754441305e-09,-5.683962910576504585e-09,-6.394458274398567865e-09,-7.104953638220631144e-09,-7.815449002042694424e-09,-8.525944365864757704e-09,-9.236439729686820984e-09,-9.946935093508884264e-09,-1.065743045733094754e-08,-1.136792582115301082e-08,-1.207842118497507410e-08,-1.278891654879713738e-08,-1.349941191261920066e-08,-1.420990727644126394e-08,-1.492040264026332722e-08,-1.563089800408538885e-08,-1.634139336790745047e-08,-1.705188873172951210e-08,-1.776238409555157373e-08,-1.847287945937363535e-08,-1.918337482319569698e-08,-1.989387018701775860e-08,-2.060436555083982023e-08,-2.131486091466188185e-08,-2.202535627848394348e-08,-2.273585164230600510e-08,-2.344634700612806673e-08,-2.415684236995012835e-08,-2.486733773377218998e-08,-2.557783309759425161e-08,-2.628832846141631323e-08,-2.699882382523837486e-08,-2.770931918906043648e-08,-2.841981455288249811e-08,-2.913030991670455973e-08,-2.984080528052662136e-08,-3.055130064434867968e-08,-3.126179600817073799e-08,-3.197229137199279631e-08,-3.268278673581485463e-08,-3.339328209963691294e-08,-3.410377746345897126e-08,-3.481427282728102958e-08,-3.552476819110308789e-08,-3.623526355492514621e-08,-3.694575891874720453e-08,-3.765625428256926284e-08,-3.836674964639132116e-08,-3.907724501021337948e-08,-3.978774037403543779e-08,-4.049823573785749611e-08,-4.120873110167955443e-08,-4.191922646550161274e-08,-4.262972182932367106e-08,-4.334021719314572938e-08,-4.405071255696778770e-08,-4.476120792078984601e-08 +0.000000000000000000e+00,-3.534372529559892938e-10,-7.068745059119785875e-10,-1.060311758867967778e-09,-1.413749011823956968e-09,-1.767186264779946159e-09,-2.120623517735935556e-09,-2.474060770691924953e-09,-2.827498023647914350e-09,-3.180935276603903747e-09,-3.534372529559893144e-09,-3.887809782515882128e-09,-4.241247035471871111e-09,-4.594684288427860095e-09,-4.948121541383849079e-09,-5.301558794339838062e-09,-5.654996047295827046e-09,-6.008433300251816029e-09,-6.361870553207805013e-09,-6.715307806163793996e-09,-7.068745059119782980e-09,-7.422182312075771963e-09,-7.775619565031760947e-09,-8.129056817987749931e-09,-8.482494070943738914e-09,-8.835931323899727898e-09,-9.189368576855716881e-09,-9.542805829811705865e-09,-9.896243082767694848e-09,-1.024968033572368383e-08,-1.060311758867967282e-08,-1.095655484163566180e-08,-1.130999209459165078e-08,-1.166342934754763977e-08,-1.201686660050362875e-08,-1.237030385345961773e-08,-1.272374110641560672e-08,-1.307717835937159570e-08,-1.343061561232758468e-08,-1.378405286528357367e-08,-1.413749011823956265e-08,-1.449092737119555163e-08,-1.484436462415154062e-08,-1.519780187710752795e-08,-1.555123913006351528e-08,-1.590467638301950261e-08,-1.625811363597548994e-08,-1.661155088893147726e-08,-1.696498814188746459e-08,-1.731842539484345192e-08,-1.767186264779943925e-08,-1.802529990075542658e-08,-1.837873715371141391e-08,-1.873217440666740124e-08,-1.908561165962338857e-08,-1.943904891257937590e-08,-1.979248616553536323e-08,-2.014592341849135056e-08,-2.049936067144733789e-08,-2.085279792440332521e-08,-2.120623517735931254e-08,-2.155967243031529987e-08,-2.191310968327128720e-08,-2.226654693622727453e-08 +0.000000000000000000e+00,-7.556943817379525549e-10,-1.511388763475905110e-09,-2.267083145213857458e-09,-3.022777526951809806e-09,-3.778471908689762154e-09,-4.534166290427714916e-09,-5.289860672165667678e-09,-6.045555053903620439e-09,-6.801249435641573201e-09,-7.556943817379525963e-09,-8.312638199117477897e-09,-9.068332580855429832e-09,-9.824026962593381766e-09,-1.057972134433133370e-08,-1.133541572606928564e-08,-1.209111010780723757e-08,-1.284680448954518950e-08,-1.360249887128314144e-08,-1.435819325302109337e-08,-1.511388763475904531e-08,-1.586958201649699724e-08,-1.662527639823494918e-08,-1.738097077997290111e-08,-1.813666516171085305e-08,-1.889235954344880498e-08,-1.964805392518675691e-08,-2.040374830692470885e-08,-2.115944268866266078e-08,-2.191513707040061272e-08,-2.267083145213856465e-08,-2.342652583387651659e-08,-2.418222021561446852e-08,-2.493791459735242046e-08,-2.569360897909037239e-08,-2.644930336082832433e-08,-2.720499774256627626e-08,-2.796069212430422819e-08,-2.871638650604218013e-08,-2.947208088778013206e-08,-3.022777526951808400e-08,-3.098346965125603924e-08,-3.173916403299399448e-08,-3.249485841473194973e-08,-3.325055279646990497e-08,-3.400624717820786021e-08,-3.476194155994581546e-08,-3.551763594168377070e-08,-3.627333032342172594e-08,-3.702902470515968119e-08,-3.778471908689763643e-08,-3.854041346863559167e-08,-3.929610785037354692e-08,-4.005180223211150216e-08,-4.080749661384945740e-08,-4.156319099558741265e-08,-4.231888537732536789e-08,-4.307457975906332313e-08,-4.383027414080127838e-08,-4.458596852253923362e-08,-4.534166290427718886e-08,-4.609735728601514411e-08,-4.685305166775309935e-08,-4.760874604949105459e-08 +0.000000000000000000e+00,-7.967977014376993270e-10,-1.593595402875398654e-09,-2.390393104313098188e-09,-3.187190805750797722e-09,-3.983988507188497255e-09,-4.780786208626196376e-09,-5.577583910063895496e-09,-6.374381611501594616e-09,-7.171179312939293736e-09,-7.967977014376992856e-09,-8.764774715814692804e-09,-9.561572417252392751e-09,-1.035837011869009270e-08,-1.115516782012779265e-08,-1.195196552156549259e-08,-1.274876322300319254e-08,-1.354556092444089249e-08,-1.434235862587859244e-08,-1.513915632731629238e-08,-1.593595402875399233e-08,-1.673275173019169228e-08,-1.752954943162939222e-08,-1.832634713306709217e-08,-1.912314483450479212e-08,-1.991994253594249207e-08,-2.071674023738019201e-08,-2.151353793881789196e-08,-2.231033564025559191e-08,-2.310713334169329186e-08,-2.390393104313099180e-08,-2.470072874456869175e-08,-2.549752644600639170e-08,-2.629432414744409165e-08,-2.709112184888179159e-08,-2.788791955031949154e-08,-2.868471725175719149e-08,-2.948151495319489144e-08,-3.027831265463259138e-08,-3.107511035607029133e-08,-3.187190805750799128e-08,-3.266870575894569122e-08,-3.346550346038339117e-08,-3.426230116182109112e-08,-3.505909886325879107e-08,-3.585589656469649101e-08,-3.665269426613419096e-08,-3.744949196757189091e-08,-3.824628966900959086e-08,-3.904308737044729080e-08,-3.983988507188499075e-08,-4.063668277332269070e-08,-4.143348047476039065e-08,-4.223027817619809059e-08,-4.302707587763579054e-08,-4.382387357907349049e-08,-4.462067128051119044e-08,-4.541746898194889038e-08,-4.621426668338659033e-08,-4.701106438482429028e-08,-4.780786208626199023e-08,-4.860465978769969017e-08,-4.940145748913739012e-08,-5.019825519057509007e-08 +0.000000000000000000e+00,-6.904856181037054966e-10,-1.380971236207410993e-09,-2.071456854311116490e-09,-2.761942472414821986e-09,-3.452428090518527483e-09,-4.142913708622232980e-09,-4.833399326725938476e-09,-5.523884944829643973e-09,-6.214370562933349469e-09,-6.904856181037054966e-09,-7.595341799140760462e-09,-8.285827417244465959e-09,-8.976313035348171456e-09,-9.666798653451876952e-09,-1.035728427155558245e-08,-1.104776988965928795e-08,-1.173825550776299344e-08,-1.242874112586669894e-08,-1.311922674397040444e-08,-1.380971236207410993e-08,-1.450019798017781543e-08,-1.519068359828152092e-08,-1.588116921638522642e-08,-1.657165483448893192e-08,-1.726214045259263741e-08,-1.795262607069634291e-08,-1.864311168880004841e-08,-1.933359730690375390e-08,-2.002408292500745940e-08,-2.071456854311116490e-08,-2.140505416121487039e-08,-2.209553977931857589e-08,-2.278602539742228139e-08,-2.347651101552598688e-08,-2.416699663362969238e-08,-2.485748225173339788e-08,-2.554796786983710337e-08,-2.623845348794080887e-08,-2.692893910604451437e-08,-2.761942472414821986e-08,-2.830991034225192536e-08,-2.900039596035563086e-08,-2.969088157845933635e-08,-3.038136719656304185e-08,-3.107185281466674735e-08,-3.176233843277045284e-08,-3.245282405087415834e-08,-3.314330966897786384e-08,-3.383379528708156933e-08,-3.452428090518527483e-08,-3.521476652328898033e-08,-3.590525214139268582e-08,-3.659573775949639132e-08,-3.728622337760009682e-08,-3.797670899570380231e-08,-3.866719461380750781e-08,-3.935768023191121331e-08,-4.004816585001491880e-08,-4.073865146811862430e-08,-4.142913708622232980e-08,-4.211962270432603529e-08,-4.281010832242974079e-08,-4.350059394053344629e-08 +0.000000000000000000e+00,8.390704923960770092e-10,1.678140984792154018e-09,2.517211477188230924e-09,3.356281969584307623e-09,4.195352461980383909e-09,5.034422954376460194e-09,5.873493446772536479e-09,6.712563939168612765e-09,7.551634431564689050e-09,8.390704923960764509e-09,9.229775416356839967e-09,1.006884590875291543e-08,1.090791640114899088e-08,1.174698689354506634e-08,1.258605738594114180e-08,1.342512787833721726e-08,1.426419837073329272e-08,1.510326886312936817e-08,1.594233935552544363e-08,1.678140984792151909e-08,1.762048034031759455e-08,1.845955083271367001e-08,1.929862132510974547e-08,2.013769181750582092e-08,2.097676230990189638e-08,2.181583280229797184e-08,2.265490329469404730e-08,2.349397378709012276e-08,2.433304427948619822e-08,2.517211477188227367e-08,2.601118526427834913e-08,2.685025575667442459e-08,2.768932624907050005e-08,2.852839674146657551e-08,2.936746723386265096e-08,3.020653772625872973e-08,3.104560821865481181e-08,3.188467871105089388e-08,3.272374920344697596e-08,3.356281969584305803e-08,3.440189018823914011e-08,3.524096068063522219e-08,3.608003117303130426e-08,3.691910166542738634e-08,3.775817215782346841e-08,3.859724265021955049e-08,3.943631314261563256e-08,4.027538363501171464e-08,4.111445412740779672e-08,4.195352461980387879e-08,4.279259511219996087e-08,4.363166560459604294e-08,4.447073609699212502e-08,4.530980658938820709e-08,4.614887708178428917e-08,4.698794757418037125e-08,4.782701806657645332e-08,4.866608855897253540e-08,4.950515905136861747e-08,5.034422954376469955e-08,5.118330003616078162e-08,5.202237052855686370e-08,5.286144102095294578e-08 +0.000000000000000000e+00,9.026579930016830402e-10,1.805315986003366080e-09,2.707973979005049017e-09,3.610631972006731747e-09,4.513289965008414063e-09,5.415947958010096380e-09,6.318605951011778696e-09,7.221263944013461013e-09,8.123921937015143329e-09,9.026579930016824818e-09,9.929237923018506307e-09,1.083189591602018780e-08,1.173455390902186929e-08,1.263721190202355078e-08,1.353986989502523226e-08,1.444252788802691375e-08,1.534518588102859359e-08,1.624784387403027342e-08,1.715050186703195326e-08,1.805315986003363309e-08,1.895581785303531293e-08,1.985847584603699276e-08,2.076113383903867260e-08,2.166379183204035243e-08,2.256644982504203227e-08,2.346910781804371210e-08,2.437176581104539194e-08,2.527442380404707177e-08,2.617708179704875161e-08,2.707973979005043144e-08,2.798239778305211128e-08,2.888505577605379111e-08,2.978771376905547095e-08,3.069037176205714747e-08,3.159302975505882400e-08,3.249568774806050052e-08,3.339834574106217705e-08,3.430100373406385358e-08,3.520366172706553010e-08,3.610631972006720663e-08,3.700897771306888315e-08,3.791163570607055968e-08,3.881429369907223621e-08,3.971695169207391273e-08,4.061960968507558926e-08,4.152226767807726579e-08,4.242492567107894231e-08,4.332758366408061884e-08,4.423024165708229536e-08,4.513289965008397189e-08,4.603555764308564842e-08,4.693821563608732494e-08,4.784087362908900147e-08,4.874353162209067799e-08,4.964618961509235452e-08,5.054884760809403105e-08,5.145150560109570757e-08,5.235416359409738410e-08,5.325682158709906063e-08,5.415947958010073715e-08,5.506213757310241368e-08,5.596479556610409020e-08,5.686745355910576673e-08 +0.000000000000000000e+00,4.901202809375425630e-24,9.802405618750851260e-24,1.470360842812627689e-23,1.960481123750170252e-23,2.450601404687712815e-23,2.940721685625255378e-23,3.430841966562797647e-23,3.920962247500339916e-23,4.411082528437882185e-23,4.901202809375424454e-23,5.391323090312966724e-23,5.881443371250509580e-23,6.371563652188052437e-23,6.861683933125595294e-23,7.351804214063138151e-23,7.841924495000681008e-23,8.332044775938223865e-23,8.822165056875766722e-23,9.312285337813309578e-23,9.802405618750852435e-23,1.029252589968839529e-22,1.078264618062593815e-22,1.127276646156348101e-22,1.176288674250102386e-22,1.225300702343856672e-22,1.274312730437610958e-22,1.323324758531365243e-22,1.372336786625119529e-22,1.421348814718873815e-22,1.470360842812628100e-22,1.519372870906382386e-22,1.568384899000136672e-22,1.617396927093890957e-22,1.666408955187645243e-22,1.715420983281399529e-22,1.764433011375153815e-22,1.813445039468908100e-22,1.862457067562662386e-22,1.911469095656416672e-22,1.960481123750170957e-22,2.009493151843925243e-22,2.058505179937679529e-22,2.107517208031433814e-22,2.156529236125188100e-22,2.205541264218942386e-22,2.254553292312696671e-22,2.303565320406450957e-22,2.352577348500205243e-22,2.401589376593959528e-22,2.450601404687713814e-22,2.499613432781468100e-22,2.548625460875222386e-22,2.597637488968976671e-22,2.646649517062730957e-22,2.695661545156485243e-22,2.744673573250239528e-22,2.793685601343993814e-22,2.842697629437748100e-22,2.891709657531502385e-22,2.940721685625256671e-22,2.989733713719010957e-22,3.038745741812765242e-22,3.087757769906519528e-22 +0.000000000000000000e+00,8.143613370754352617e-10,1.628722674150870523e-09,2.443084011226305682e-09,3.257445348301740633e-09,4.071806685377175171e-09,4.886168022452609709e-09,5.700529359528044247e-09,6.514890696603478785e-09,7.329252033678913322e-09,8.143613370754347033e-09,8.957974707829780744e-09,9.772336044905214454e-09,1.058669738198064817e-08,1.140105871905608188e-08,1.221542005613151559e-08,1.302978139320694930e-08,1.384414273028238301e-08,1.465850406735781672e-08,1.547286540443325043e-08,1.628722674150868414e-08,1.710158807858411785e-08,1.791594941565955156e-08,1.873031075273498527e-08,1.954467208981041898e-08,2.035903342688585269e-08,2.117339476396128640e-08,2.198775610103672011e-08,2.280211743811215383e-08,2.361647877518758754e-08,2.443084011226302125e-08,2.524520144933845496e-08,2.605956278641388867e-08,2.687392412348932238e-08,2.768828546056475609e-08,2.850264679764018980e-08,2.931700813471562351e-08,3.013136947179106053e-08,3.094573080886649424e-08,3.176009214594192795e-08,3.257445348301736166e-08,3.338881482009279537e-08,3.420317615716822908e-08,3.501753749424366279e-08,3.583189883131909651e-08,3.664626016839453022e-08,3.746062150546996393e-08,3.827498284254539764e-08,3.908934417962083135e-08,3.990370551669626506e-08,4.071806685377169877e-08,4.153242819084713248e-08,4.234678952792256619e-08,4.316115086499799990e-08,4.397551220207343361e-08,4.478987353914886732e-08,4.560423487622430103e-08,4.641859621329973474e-08,4.723295755037516846e-08,4.804731888745060217e-08,4.886168022452603588e-08,4.967604156160146959e-08,5.049040289867690330e-08,5.130476423575233701e-08 +0.000000000000000000e+00,7.890789905468604532e-10,1.578157981093720906e-09,2.367236971640581360e-09,3.156315962187441813e-09,3.945394952734302680e-09,4.734473943281163546e-09,5.523552933828024413e-09,6.312631924374885280e-09,7.101710914921746147e-09,7.890789905468607014e-09,8.679868896015467880e-09,9.468947886562328747e-09,1.025802687710918961e-08,1.104710586765605048e-08,1.183618485820291135e-08,1.262526384874977221e-08,1.341434283929663308e-08,1.420342182984349395e-08,1.499250082039035316e-08,1.578157981093721072e-08,1.657065880148406828e-08,1.735973779203092583e-08,1.814881678257778339e-08,1.893789577312464095e-08,1.972697476367149851e-08,2.051605375421835607e-08,2.130513274476521362e-08,2.209421173531207118e-08,2.288329072585892874e-08,2.367236971640578630e-08,2.446144870695264386e-08,2.525052769749950142e-08,2.603960668804635897e-08,2.682868567859321653e-08,2.761776466914007409e-08,2.840684365968693165e-08,2.919592265023378921e-08,2.998500164078064676e-08,3.077408063132750432e-08,3.156315962187436188e-08,3.235223861242121944e-08,3.314131760296807700e-08,3.393039659351493455e-08,3.471947558406179211e-08,3.550855457460864967e-08,3.629763356515550723e-08,3.708671255570236479e-08,3.787579154624922234e-08,3.866487053679607990e-08,3.945394952734293746e-08,4.024302851788979502e-08,4.103210750843665258e-08,4.182118649898351013e-08,4.261026548953036769e-08,4.339934448007722525e-08,4.418842347062408281e-08,4.497750246117094037e-08,4.576658145171779792e-08,4.655566044226465548e-08,4.734473943281151304e-08,4.813381842335837060e-08,4.892289741390522816e-08,4.971197640445208572e-08 +0.000000000000000000e+00,8.028596926317281836e-10,1.605719385263456367e-09,2.408579077895184758e-09,3.211438770526913148e-09,4.014298463158641538e-09,4.817158155790369515e-09,5.620017848422097492e-09,6.422877541053825469e-09,7.225737233685553445e-09,8.028596926317281422e-09,8.831456618949008572e-09,9.634316311580735721e-09,1.043717600421246287e-08,1.124003569684419002e-08,1.204289538947591717e-08,1.284575508210764432e-08,1.364861477473937147e-08,1.445147446737109862e-08,1.525433416000282577e-08,1.605719385263455292e-08,1.686005354526628007e-08,1.766291323789800722e-08,1.846577293052973437e-08,1.926863262316146152e-08,2.007149231579318867e-08,2.087435200842491582e-08,2.167721170105664297e-08,2.248007139368837011e-08,2.328293108632009726e-08,2.408579077895182441e-08,2.488865047158355156e-08,2.569151016421527871e-08,2.649436985684700586e-08,2.729722954947873301e-08,2.810008924211046016e-08,2.890294893474218731e-08,2.970580862737391446e-08,3.050866832000564492e-08,3.131152801263737869e-08,3.211438770526911245e-08,3.291724739790084622e-08,3.372010709053257999e-08,3.452296678316431375e-08,3.532582647579604752e-08,3.612868616842778129e-08,3.693154586105951506e-08,3.773440555369124882e-08,3.853726524632298259e-08,3.934012493895471636e-08,4.014298463158645012e-08,4.094584432421818389e-08,4.174870401684991766e-08,4.255156370948165143e-08,4.335442340211338519e-08,4.415728309474511896e-08,4.496014278737685273e-08,4.576300248000858649e-08,4.656586217264032026e-08,4.736872186527205403e-08,4.817158155790378779e-08,4.897444125053552156e-08,4.977730094316725533e-08,5.058016063579898910e-08 +0.000000000000000000e+00,4.527692412876383567e-10,9.055384825752767133e-10,1.358307723862915070e-09,1.811076965150553427e-09,2.263846206438191783e-09,2.716615447725830140e-09,3.169384689013468497e-09,3.622153930301106853e-09,4.074923171588745210e-09,4.527692412876383567e-09,4.980461654164021923e-09,5.433230895451660280e-09,5.886000136739298637e-09,6.338769378026936993e-09,6.791538619314575350e-09,7.244307860602213706e-09,7.697077101889852063e-09,8.149846343177490420e-09,8.602615584465128776e-09,9.055384825752767133e-09,9.508154067040405490e-09,9.960923308328043846e-09,1.041369254961568220e-08,1.086646179090332056e-08,1.131923103219095892e-08,1.177200027347859727e-08,1.222476951476623563e-08,1.267753875605387399e-08,1.313030799734151234e-08,1.358307723862915070e-08,1.403584647991678906e-08,1.448861572120442741e-08,1.494138496249206577e-08,1.539415420377970413e-08,1.584692344506734248e-08,1.629969268635498084e-08,1.675246192764261920e-08,1.720523116893025755e-08,1.765800041021789591e-08,1.811076965150553427e-08,1.856353889279317262e-08,1.901630813408081098e-08,1.946907737536844934e-08,1.992184661665608769e-08,2.037461585794372605e-08,2.082738509923136441e-08,2.128015434051900276e-08,2.173292358180664112e-08,2.218569282309427948e-08,2.263846206438191783e-08,2.309123130566955619e-08,2.354400054695719455e-08,2.399676978824483290e-08,2.444953902953247126e-08,2.490230827082010962e-08,2.535507751210774797e-08,2.580784675339538633e-08,2.626061599468302469e-08,2.671338523597066304e-08,2.716615447725830140e-08,2.761892371854593976e-08,2.807169295983357811e-08,2.852446220112121647e-08 +0.000000000000000000e+00,-2.732936726092100614e-22,-5.465873452184201227e-22,-8.198810178276301841e-22,-1.093174690436840245e-21,-1.366468363046050307e-21,-1.639762035655260368e-21,-1.913055708264470618e-21,-2.186349380873680867e-21,-2.459643053482891117e-21,-2.732936726092101366e-21,-3.006230398701311615e-21,-3.279524071310521865e-21,-3.552817743919732114e-21,-3.826111416528942740e-21,-4.099405089138153366e-21,-4.372698761747363991e-21,-4.645992434356574617e-21,-4.919286106965785242e-21,-5.192579779574995868e-21,-5.465873452184206494e-21,-5.739167124793417119e-21,-6.012460797402627745e-21,-6.285754470011838370e-21,-6.559048142621048996e-21,-6.832341815230259622e-21,-7.105635487839470247e-21,-7.378929160448680873e-21,-7.652222833057891498e-21,-7.925516505667102124e-21,-8.198810178276312750e-21,-8.472103850885523375e-21,-8.745397523494734001e-21,-9.018691196103944626e-21,-9.291984868713155252e-21,-9.565278541322365878e-21,-9.838572213931576503e-21,-1.011186588654078713e-20,-1.038515955914999775e-20,-1.065845323175920838e-20,-1.093174690436841901e-20,-1.120504057697762963e-20,-1.147833424958684026e-20,-1.175162792219605088e-20,-1.202492159480526151e-20,-1.229821526741447213e-20,-1.257150894002368276e-20,-1.284480261263289338e-20,-1.311809628524210401e-20,-1.339138995785131464e-20,-1.366468363046052526e-20,-1.393797730306973589e-20,-1.421127097567894651e-20,-1.448456464828815714e-20,-1.475785832089736776e-20,-1.503115199350657839e-20,-1.530444566611578902e-20,-1.557773933872499964e-20,-1.585103301133421027e-20,-1.612432668394342089e-20,-1.639762035655263152e-20,-1.667091402916184214e-20,-1.694420770177105277e-20,-1.721750137438026339e-20 +0.000000000000000000e+00,-8.390704923940329425e-10,-1.678140984788065885e-09,-2.517211477182098621e-09,-3.356281969576131356e-09,-4.195352461970164092e-09,-5.034422954364197241e-09,-5.873493446758230391e-09,-6.712563939152263540e-09,-7.551634431546295862e-09,-8.390704923940328184e-09,-9.229775416334360506e-09,-1.006884590872839283e-08,-1.090791640112242515e-08,-1.174698689351645747e-08,-1.258605738591048979e-08,-1.342512787830452212e-08,-1.426419837069855444e-08,-1.510326886309258511e-08,-1.594233935548661577e-08,-1.678140984788064644e-08,-1.762048034027467711e-08,-1.845955083266870778e-08,-1.929862132506273845e-08,-2.013769181745676911e-08,-2.097676230985079978e-08,-2.181583280224483045e-08,-2.265490329463886112e-08,-2.349397378703289178e-08,-2.433304427942692245e-08,-2.517211477182095312e-08,-2.601118526421498379e-08,-2.685025575660901446e-08,-2.768932624900304512e-08,-2.852839674139707579e-08,-2.936746723379110646e-08,-3.020653772618513713e-08,-3.104560821857916779e-08,-3.188467871097319846e-08,-3.272374920336722913e-08,-3.356281969576125980e-08,-3.440189018815529047e-08,-3.524096068054932113e-08,-3.608003117294335180e-08,-3.691910166533738247e-08,-3.775817215773141314e-08,-3.859724265012544380e-08,-3.943631314251947447e-08,-4.027538363491350514e-08,-4.111445412730753581e-08,-4.195352461970156648e-08,-4.279259511209559714e-08,-4.363166560448962781e-08,-4.447073609688365848e-08,-4.530980658927768915e-08,-4.614887708167171981e-08,-4.698794757406575048e-08,-4.782701806645978115e-08,-4.866608855885381182e-08,-4.950515905124784249e-08,-5.034422954364187315e-08,-5.118330003603590382e-08,-5.202237052842993449e-08,-5.286144102082396516e-08 +0.000000000000000000e+00,-9.026579930016000119e-10,-1.805315986003200024e-09,-2.707973979004800036e-09,-3.610631972006400048e-09,-4.513289965008000473e-09,-5.415947958009600899e-09,-6.318605951011201324e-09,-7.221263944012801750e-09,-8.123921937014402175e-09,-9.026579930016002601e-09,-9.929237923017603026e-09,-1.083189591601920345e-08,-1.173455390902080388e-08,-1.263721190202240430e-08,-1.353986989502400473e-08,-1.444252788802560515e-08,-1.534518588102720392e-08,-1.624784387402880104e-08,-1.715050186703039816e-08,-1.805315986003199528e-08,-1.895581785303359239e-08,-1.985847584603518951e-08,-2.076113383903678663e-08,-2.166379183203838374e-08,-2.256644982503998086e-08,-2.346910781804157798e-08,-2.437176581104317509e-08,-2.527442380404477221e-08,-2.617708179704636933e-08,-2.707973979004796644e-08,-2.798239778304956356e-08,-2.888505577605116068e-08,-2.978771376905275779e-08,-3.069037176205435491e-08,-3.159302975505595203e-08,-3.249568774805754914e-08,-3.339834574105914626e-08,-3.430100373406074338e-08,-3.520366172706234049e-08,-3.610631972006393761e-08,-3.700897771306553473e-08,-3.791163570606713184e-08,-3.881429369906872896e-08,-3.971695169207032608e-08,-4.061960968507192319e-08,-4.152226767807352031e-08,-4.242492567107511743e-08,-4.332758366407671455e-08,-4.423024165707831166e-08,-4.513289965007990878e-08,-4.603555764308150590e-08,-4.693821563608310301e-08,-4.784087362908470013e-08,-4.874353162208629725e-08,-4.964618961508789436e-08,-5.054884760808949148e-08,-5.145150560109108860e-08,-5.235416359409268571e-08,-5.325682158709428283e-08,-5.415947958009587995e-08,-5.506213757309747706e-08,-5.596479556609907418e-08,-5.686745355910067130e-08 +0.000000000000000000e+00,-4.527692412875804023e-10,-9.055384825751608046e-10,-1.358307723862741155e-09,-1.811076965150321402e-09,-2.263846206437901443e-09,-2.716615447725481483e-09,-3.169384689013061524e-09,-3.622153930300641564e-09,-4.074923171588221605e-09,-4.527692412875801231e-09,-4.980461654163380858e-09,-5.433230895450960485e-09,-5.886000136738540112e-09,-6.338769378026119739e-09,-6.791538619313699366e-09,-7.244307860601278992e-09,-7.697077101888859446e-09,-8.149846343176439900e-09,-8.602615584464020354e-09,-9.055384825751600808e-09,-9.508154067039181262e-09,-9.960923308326761716e-09,-1.041369254961434217e-08,-1.086646179090192262e-08,-1.131923103218950308e-08,-1.177200027347708353e-08,-1.222476951476466399e-08,-1.267753875605224444e-08,-1.313030799733982489e-08,-1.358307723862740535e-08,-1.403584647991498580e-08,-1.448861572120256626e-08,-1.494138496249014671e-08,-1.539415420377772551e-08,-1.584692344506530431e-08,-1.629969268635288311e-08,-1.675246192764046191e-08,-1.720523116892804071e-08,-1.765800041021561951e-08,-1.811076965150319831e-08,-1.856353889279077711e-08,-1.901630813407835591e-08,-1.946907737536593471e-08,-1.992184661665351351e-08,-2.037461585794109231e-08,-2.082738509922867111e-08,-2.128015434051624991e-08,-2.173292358180382871e-08,-2.218569282309140751e-08,-2.263846206437898630e-08,-2.309123130566656510e-08,-2.354400054695414390e-08,-2.399676978824172270e-08,-2.444953902952930150e-08,-2.490230827081688030e-08,-2.535507751210445910e-08,-2.580784675339203790e-08,-2.626061599467961670e-08,-2.671338523596719550e-08,-2.716615447725477430e-08,-2.761892371854235310e-08,-2.807169295982993190e-08,-2.852446220111751070e-08 +0.000000000000000000e+00,-8.143613370718082815e-10,-1.628722674143616563e-09,-2.443084011215424948e-09,-3.257445348287233539e-09,-4.071806685359041718e-09,-4.886168022430849896e-09,-5.700529359502658074e-09,-6.514890696574466252e-09,-7.329252033646274430e-09,-8.143613370718083435e-09,-8.957974707789892440e-09,-9.772336044861701446e-09,-1.058669738193351045e-08,-1.140105871900531946e-08,-1.221542005607712846e-08,-1.302978139314893747e-08,-1.384414273022074647e-08,-1.465850406729255548e-08,-1.547286540436436614e-08,-1.628722674143617680e-08,-1.710158807850798746e-08,-1.791594941557979812e-08,-1.873031075265160878e-08,-1.954467208972341943e-08,-2.035903342679523009e-08,-2.117339476386704075e-08,-2.198775610093885141e-08,-2.280211743801066207e-08,-2.361647877508247273e-08,-2.443084011215428339e-08,-2.524520144922609405e-08,-2.605956278629790471e-08,-2.687392412336971537e-08,-2.768828546044152603e-08,-2.850264679751333669e-08,-2.931700813458514735e-08,-3.013136947165695801e-08,-3.094573080872877198e-08,-3.176009214580058595e-08,-3.257445348287239991e-08,-3.338881481994421388e-08,-3.420317615701602785e-08,-3.501753749408784182e-08,-3.583189883115965579e-08,-3.664626016823146976e-08,-3.746062150530328372e-08,-3.827498284237509769e-08,-3.908934417944691166e-08,-3.990370551651872563e-08,-4.071806685359053960e-08,-4.153242819066235357e-08,-4.234678952773416753e-08,-4.316115086480598150e-08,-4.397551220187779547e-08,-4.478987353894960944e-08,-4.560423487602142341e-08,-4.641859621309323738e-08,-4.723295755016505134e-08,-4.804731888723686531e-08,-4.886168022430867928e-08,-4.967604156138049325e-08,-5.049040289845230722e-08,-5.130476423552412119e-08 +0.000000000000000000e+00,-7.890789905457918392e-10,-1.578157981091583678e-09,-2.367236971637375621e-09,-3.156315962183167771e-09,-3.945394952728959920e-09,-4.734473943274752069e-09,-5.523552933820544219e-09,-6.312631924366336368e-09,-7.101710914912128518e-09,-7.890789905457921494e-09,-8.679868896003713644e-09,-9.468947886549505793e-09,-1.025802687709529794e-08,-1.104710586764109009e-08,-1.183618485818688224e-08,-1.262526384873267439e-08,-1.341434283927846654e-08,-1.420342182982425869e-08,-1.499250082037005084e-08,-1.578157981091584299e-08,-1.657065880146163514e-08,-1.735973779200742729e-08,-1.814881678255321944e-08,-1.893789577309901159e-08,-1.972697476364480374e-08,-2.051605375419059589e-08,-2.130513274473638803e-08,-2.209421173528218018e-08,-2.288329072582797233e-08,-2.367236971637376448e-08,-2.446144870691955663e-08,-2.525052769746534878e-08,-2.603960668801114093e-08,-2.682868567855693308e-08,-2.761776466910272523e-08,-2.840684365964851738e-08,-2.919592265019430953e-08,-2.998500164074010168e-08,-3.077408063128589383e-08,-3.156315962183168598e-08,-3.235223861237747813e-08,-3.314131760292327028e-08,-3.393039659346906243e-08,-3.471947558401485458e-08,-3.550855457456064672e-08,-3.629763356510643887e-08,-3.708671255565223102e-08,-3.787579154619802317e-08,-3.866487053674381532e-08,-3.945394952728960747e-08,-4.024302851783539962e-08,-4.103210750838119177e-08,-4.182118649892698392e-08,-4.261026548947277607e-08,-4.339934448001856822e-08,-4.418842347056436037e-08,-4.497750246111015252e-08,-4.576658145165594467e-08,-4.655566044220173682e-08,-4.734473943274752897e-08,-4.813381842329332112e-08,-4.892289741383911327e-08,-4.971197640438490541e-08 +0.000000000000000000e+00,-8.028596926322883916e-10,-1.605719385264576783e-09,-2.408579077896865175e-09,-3.211438770529153567e-09,-4.014298463161441545e-09,-4.817158155793729523e-09,-5.620017848426017501e-09,-6.422877541058305479e-09,-7.225737233690593457e-09,-8.028596926322881435e-09,-8.831456618955169413e-09,-9.634316311587457391e-09,-1.043717600421974537e-08,-1.124003569685203335e-08,-1.204289538948432133e-08,-1.284575508211660930e-08,-1.364861477474889728e-08,-1.445147446738118526e-08,-1.525433416001347324e-08,-1.605719385264575956e-08,-1.686005354527804588e-08,-1.766291323791033221e-08,-1.846577293054261853e-08,-1.926863262317490486e-08,-2.007149231580719118e-08,-2.087435200843947750e-08,-2.167721170107176383e-08,-2.248007139370405015e-08,-2.328293108633633647e-08,-2.408579077896862280e-08,-2.488865047160090912e-08,-2.569151016423319545e-08,-2.649436985686548177e-08,-2.729722954949776809e-08,-2.810008924213005442e-08,-2.890294893476234074e-08,-2.970580862739462706e-08,-3.050866832002691339e-08,-3.131152801265920302e-08,-3.211438770529149265e-08,-3.291724739792378228e-08,-3.372010709055607192e-08,-3.452296678318836155e-08,-3.532582647582065118e-08,-3.612868616845294081e-08,-3.693154586108523045e-08,-3.773440555371752008e-08,-3.853726524634980971e-08,-3.934012493898209934e-08,-4.014298463161438898e-08,-4.094584432424667861e-08,-4.174870401687896824e-08,-4.255156370951125787e-08,-4.335442340214354751e-08,-4.415728309477583714e-08,-4.496014278740812677e-08,-4.576300248004041640e-08,-4.656586217267270604e-08,-4.736872186530499567e-08,-4.817158155793728530e-08,-4.897444125056957493e-08,-4.977730094320186457e-08,-5.058016063583415420e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.927969290736438087e-10,1.585593858147287617e-09,2.378390787220931323e-09,3.171187716294574821e-09,3.963984645368217906e-09,4.756781574441860991e-09,5.549578503515504076e-09,6.342375432589147161e-09,7.135172361662790246e-09,7.927969290736432504e-09,8.720766219810074762e-09,9.513563148883717019e-09,1.030636007795735928e-08,1.109915700703100153e-08,1.189195393610464379e-08,1.268475086517828605e-08,1.347754779425192831e-08,1.427034472332557057e-08,1.506314165239921117e-08,1.585593858147285177e-08,1.664873551054649238e-08,1.744153243962013298e-08,1.823432936869377358e-08,1.902712629776741419e-08,1.981992322684105479e-08,2.061272015591469539e-08,2.140551708498833600e-08,2.219831401406197660e-08,2.299111094313561720e-08,2.378390787220925781e-08,2.457670480128289841e-08,2.536950173035653901e-08,2.616229865943017962e-08,2.695509558850382022e-08,2.774789251757746082e-08,2.854068944665110143e-08,2.933348637572474203e-08,3.012628330479838263e-08,3.091908023387202324e-08,3.171187716294566384e-08,3.250467409201930444e-08,3.329747102109294505e-08,3.409026795016658565e-08,3.488306487924022625e-08,3.567586180831386686e-08,3.646865873738750746e-08,3.726145566646114806e-08,3.805425259553478867e-08,3.884704952460842927e-08,3.963984645368206987e-08,4.043264338275571048e-08,4.122544031182935108e-08,4.201823724090299168e-08,4.281103416997663229e-08,4.360383109905027289e-08,4.439662802812391349e-08,4.518942495719755410e-08,4.598222188627119470e-08,4.677501881534483531e-08,4.756781574441847591e-08,4.836061267349211651e-08,4.915340960256575712e-08,4.994620653163939772e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841924149653e-09,2.091647683848299306e-09,3.137471525772448959e-09,4.183295367696598612e-09,5.229119209620748265e-09,6.274943051544897918e-09,7.320766893469047571e-09,8.366590735393197224e-09,9.412414577317346050e-09,1.045823841924149488e-08,1.150406226116564370e-08,1.254988610308979253e-08,1.359570994501394135e-08,1.464153378693809018e-08,1.568735762886223900e-08,1.673318147078638783e-08,1.777900531271053666e-08,1.882482915463468548e-08,1.987065299655883431e-08,2.091647683848298313e-08,2.196230068040713196e-08,2.300812452233128079e-08,2.405394836425542961e-08,2.509977220617957844e-08,2.614559604810372726e-08,2.719141989002787609e-08,2.823724373195202491e-08,2.928306757387617374e-08,3.032889141580032257e-08,3.137471525772447139e-08,3.242053909964862022e-08,3.346636294157276904e-08,3.451218678349691787e-08,3.555801062542106670e-08,3.660383446734521552e-08,3.764965830926936435e-08,3.869548215119351317e-08,3.974130599311766200e-08,4.078712983504181082e-08,4.183295367696595965e-08,4.287877751889010848e-08,4.392460136081425730e-08,4.497042520273840613e-08,4.601624904466255495e-08,4.706207288658670378e-08,4.810789672851085261e-08,4.915372057043500143e-08,5.019954441235915026e-08,5.124536825428329908e-08,5.229119209620744791e-08,5.333701593813159674e-08,5.438283978005574556e-08,5.542866362197989439e-08,5.647448746390404321e-08,5.752031130582819204e-08,5.856613514775234086e-08,5.961195898967649631e-08,6.065778283160065837e-08,6.170360667352482043e-08,6.274943051544898249e-08,6.379525435737314455e-08,6.484107819929730661e-08,6.588690204122146867e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.056387404013279421e-23,-8.112774808026558843e-23,-1.216916221203983768e-22,-1.622554961605311533e-22,-2.028193702006639299e-22,-2.433832442407967065e-22,-2.839471182809295066e-22,-3.245109923210623067e-22,-3.650748663611951068e-22,-4.056387404013279069e-22,-4.462026144414607070e-22,-4.867664884815935071e-22,-5.273303625217263072e-22,-5.678942365618591072e-22,-6.084581106019919073e-22,-6.490219846421247074e-22,-6.895858586822575075e-22,-7.301497327223903076e-22,-7.707136067625231077e-22,-8.112774808026559078e-22,-8.518413548427888019e-22,-8.924052288829216020e-22,-9.329691029230544021e-22,-9.735329769631872022e-22,-1.014096851003320002e-21,-1.054660725043452802e-21,-1.095224599083585602e-21,-1.135788473123718403e-21,-1.176352347163851203e-21,-1.216916221203984003e-21,-1.257480095244116803e-21,-1.298043969284249603e-21,-1.338607843324382403e-21,-1.379171717364515203e-21,-1.419735591404648003e-21,-1.460299465444780803e-21,-1.500863339484913603e-21,-1.541427213525046403e-21,-1.581991087565179204e-21,-1.622554961605312004e-21,-1.663118835645444804e-21,-1.703682709685577604e-21,-1.744246583725710404e-21,-1.784810457765843204e-21,-1.825374331805976004e-21,-1.865938205846108804e-21,-1.906502079886241604e-21,-1.947065953926374404e-21,-1.987629827966507204e-21,-2.028193702006640005e-21,-2.068757576046772805e-21,-2.109321450086905605e-21,-2.149885324127038405e-21,-2.190449198167171205e-21,-2.231013072207304005e-21,-2.271576946247436805e-21,-2.312140820287569605e-21,-2.352704694327702405e-21,-2.393268568367835205e-21,-2.433832442407968005e-21,-2.474396316448100806e-21,-2.514960190488233606e-21,-2.555524064528366406e-21 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.927969290728090801e-10,-1.585593858145618160e-09,-2.378390787218427033e-09,-3.171187716291235907e-09,-3.963984645364044780e-09,-4.756781574436854067e-09,-5.549578503509663354e-09,-6.342375432582472641e-09,-7.135172361655281928e-09,-7.927969290728091214e-09,-8.720766219800901329e-09,-9.513563148873711443e-09,-1.030636007794652156e-08,-1.109915700701933167e-08,-1.189195393609214178e-08,-1.268475086516495190e-08,-1.347754779423776201e-08,-1.427034472331057213e-08,-1.506314165238338224e-08,-1.585593858145619236e-08,-1.664873551052900247e-08,-1.744153243960181258e-08,-1.823432936867462270e-08,-1.902712629774743281e-08,-1.981992322682024293e-08,-2.061272015589305304e-08,-2.140551708496586315e-08,-2.219831401403867327e-08,-2.299111094311148338e-08,-2.378390787218429350e-08,-2.457670480125710361e-08,-2.536950173032991372e-08,-2.616229865940272384e-08,-2.695509558847553395e-08,-2.774789251754834407e-08,-2.854068944662115418e-08,-2.933348637569396429e-08,-3.012628330476677772e-08,-3.091908023383959114e-08,-3.171187716291240456e-08,-3.250467409198521799e-08,-3.329747102105803141e-08,-3.409026795013084483e-08,-3.488306487920365825e-08,-3.567586180827647168e-08,-3.646865873734928510e-08,-3.726145566642209852e-08,-3.805425259549491194e-08,-3.884704952456772537e-08,-3.963984645364053879e-08,-4.043264338271335221e-08,-4.122544031178616564e-08,-4.201823724085897906e-08,-4.281103416993179248e-08,-4.360383109900460590e-08,-4.439662802807741933e-08,-4.518942495715023275e-08,-4.598222188622304617e-08,-4.677501881529585960e-08,-4.756781574436867302e-08,-4.836061267344148644e-08,-4.915340960251429986e-08,-4.994620653158711329e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841924210244e-09,-2.091647683848420488e-09,-3.137471525772630939e-09,-4.183295367696841803e-09,-5.229119209621052668e-09,-6.274943051545263532e-09,-7.320766893469474396e-09,-8.366590735393685261e-09,-9.412414577317895298e-09,-1.045823841924210534e-08,-1.150406226116631537e-08,-1.254988610309052541e-08,-1.359570994501473545e-08,-1.464153378693894548e-08,-1.568735762886315552e-08,-1.673318147078736721e-08,-1.777900531271157890e-08,-1.882482915463579060e-08,-1.987065299656000229e-08,-2.091647683848421398e-08,-2.196230068040842567e-08,-2.300812452233263736e-08,-2.405394836425684905e-08,-2.509977220618106075e-08,-2.614559604810527244e-08,-2.719141989002948413e-08,-2.823724373195369582e-08,-2.928306757387790751e-08,-3.032889141580211589e-08,-3.137471525772632428e-08,-3.242053909965053266e-08,-3.346636294157474104e-08,-3.451218678349894943e-08,-3.555801062542315781e-08,-3.660383446734736619e-08,-3.764965830927157457e-08,-3.869548215119578296e-08,-3.974130599311999134e-08,-4.078712983504419972e-08,-4.183295367696840811e-08,-4.287877751889261649e-08,-4.392460136081682487e-08,-4.497042520274103325e-08,-4.601624904466524164e-08,-4.706207288658945002e-08,-4.810789672851365840e-08,-4.915372057043786679e-08,-5.019954441236207517e-08,-5.124536825428628355e-08,-5.229119209621049193e-08,-5.333701593813470032e-08,-5.438283978005890870e-08,-5.542866362198311708e-08,-5.647448746390732547e-08,-5.752031130583153385e-08,-5.856613514775574223e-08,-5.961195898967995061e-08,-6.065778283160415238e-08,-6.170360667352835414e-08,-6.274943051545255591e-08,-6.379525435737675768e-08,-6.484107819930095944e-08,-6.588690204122516121e-08 +0.000000000000000000e+00,6.984049450752827333e-10,1.396809890150565467e-09,2.095214835225848407e-09,2.793619780301131347e-09,3.492024725376414287e-09,4.190429670451696813e-09,4.888834615526979340e-09,5.587239560602261866e-09,6.285644505677544393e-09,6.984049450752826919e-09,7.682454395828109446e-09,8.380859340903391972e-09,9.079264285978674499e-09,9.777669231053957025e-09,1.047607417612923955e-08,1.117447912120452208e-08,1.187288406627980460e-08,1.257128901135508713e-08,1.326969395643036966e-08,1.396809890150565218e-08,1.466650384658093471e-08,1.536490879165621889e-08,1.606331373673150307e-08,1.676171868180678725e-08,1.746012362688207143e-08,1.815852857195735562e-08,1.885693351703263980e-08,1.955533846210792398e-08,2.025374340718320816e-08,2.095214835225849234e-08,2.165055329733377652e-08,2.234895824240906070e-08,2.304736318748434488e-08,2.374576813255962906e-08,2.444417307763491324e-08,2.514257802271019742e-08,2.584098296778548160e-08,2.653938791286076579e-08,2.723779285793604997e-08,2.793619780301133415e-08,2.863460274808661833e-08,2.933300769316190251e-08,3.003141263823718669e-08,3.072981758331247087e-08,3.142822252838775505e-08,3.212662747346303923e-08,3.282503241853832341e-08,3.352343736361360759e-08,3.422184230868889177e-08,3.492024725376417596e-08,3.561865219883946014e-08,3.631705714391474432e-08,3.701546208899002850e-08,3.771386703406531268e-08,3.841227197914059686e-08,3.911067692421588104e-08,3.980908186929116522e-08,4.050748681436644940e-08,4.120589175944173358e-08,4.190429670451701776e-08,4.260270164959230194e-08,4.330110659466758613e-08,4.399951153974287031e-08 +0.000000000000000000e+00,6.903220630125464258e-10,1.380644126025092852e-09,2.070966189037639174e-09,2.761288252050185290e-09,3.451610315062731405e-09,4.141932378075277521e-09,4.832254441087823637e-09,5.522576504100369752e-09,6.212898567112915868e-09,6.903220630125461984e-09,7.593542693138007272e-09,8.283864756150553388e-09,8.974186819163099503e-09,9.664508882175645619e-09,1.035483094518819173e-08,1.104515300820073785e-08,1.173547507121328397e-08,1.242579713422583008e-08,1.311611919723837620e-08,1.380644126025092231e-08,1.449676332326346843e-08,1.518708538627601454e-08,1.587740744928856066e-08,1.656772951230110678e-08,1.725805157531365289e-08,1.794837363832619901e-08,1.863869570133874512e-08,1.932901776435129124e-08,2.001933982736383735e-08,2.070966189037638347e-08,2.139998395338892958e-08,2.209030601640147570e-08,2.278062807941402182e-08,2.347095014242656793e-08,2.416127220543911405e-08,2.485159426845166016e-08,2.554191633146420628e-08,2.623223839447675239e-08,2.692256045748929851e-08,2.761288252050184463e-08,2.830320458351439074e-08,2.899352664652693686e-08,2.968384870953948297e-08,3.037417077255202909e-08,3.106449283556457520e-08,3.175481489857712132e-08,3.244513696158966744e-08,3.313545902460221355e-08,3.382578108761475967e-08,3.451610315062730578e-08,3.520642521363985190e-08,3.589674727665239801e-08,3.658706933966494413e-08,3.727739140267749024e-08,3.796771346569003636e-08,3.865803552870258248e-08,3.934835759171512859e-08,4.003867965472767471e-08,4.072900171774022082e-08,4.141932378075276694e-08,4.210964584376531305e-08,4.279996790677785917e-08,4.349028996979040529e-08 +0.000000000000000000e+00,7.151613858986815945e-10,1.430322771797363189e-09,2.145484157696044577e-09,2.860645543594725964e-09,3.575806929493407352e-09,4.290968315392089153e-09,5.006129701290770954e-09,5.721291087189452756e-09,6.436452473088134557e-09,7.151613858986816358e-09,7.866775244885498159e-09,8.581936630784179961e-09,9.297098016682861762e-09,1.001225940258154356e-08,1.072742078848022536e-08,1.144258217437890717e-08,1.215774356027758897e-08,1.287290494617627077e-08,1.358806633207495257e-08,1.430322771797363437e-08,1.501838910387231617e-08,1.573355048977099632e-08,1.644871187566967647e-08,1.716387326156835661e-08,1.787903464746703676e-08,1.859419603336571691e-08,1.930935741926439705e-08,2.002451880516307720e-08,2.073968019106175735e-08,2.145484157696043749e-08,2.217000296285911764e-08,2.288516434875779779e-08,2.360032573465647793e-08,2.431548712055515808e-08,2.503064850645383823e-08,2.574580989235251838e-08,2.646097127825119852e-08,2.717613266414987867e-08,2.789129405004855882e-08,2.860645543594723896e-08,2.932161682184591911e-08,3.003677820774459926e-08,3.075193959364327940e-08,3.146710097954195955e-08,3.218226236544063970e-08,3.289742375133931984e-08,3.361258513723799999e-08,3.432774652313668014e-08,3.504290790903536029e-08,3.575806929493404043e-08,3.647323068083272058e-08,3.718839206673140073e-08,3.790355345263008087e-08,3.861871483852876102e-08,3.933387622442744117e-08,4.004903761032612131e-08,4.076419899622480146e-08,4.147936038212348161e-08,4.219452176802216175e-08,4.290968315392084190e-08,4.362484453981952205e-08,4.434000592571820219e-08,4.505516731161688234e-08 +0.000000000000000000e+00,-6.984049450395729327e-10,-1.396809890079145865e-09,-2.095214835118718591e-09,-2.793619780158291317e-09,-3.492024725197864043e-09,-4.190429670237437182e-09,-4.888834615277010322e-09,-5.587239560316583461e-09,-6.285644505356156601e-09,-6.984049450395729740e-09,-7.682454395435302880e-09,-8.380859340474876019e-09,-9.079264285514449158e-09,-9.777669230554022298e-09,-1.047607417559359544e-08,-1.117447912063316858e-08,-1.187288406567274172e-08,-1.257128901071231486e-08,-1.326969395575188800e-08,-1.396809890079146113e-08,-1.466650384583103427e-08,-1.536490879087060907e-08,-1.606331373591018552e-08,-1.676171868094976196e-08,-1.746012362598933841e-08,-1.815852857102891486e-08,-1.885693351606849131e-08,-1.955533846110806776e-08,-2.025374340614764421e-08,-2.095214835118722065e-08,-2.165055329622679710e-08,-2.234895824126637355e-08,-2.304736318630595000e-08,-2.374576813134552645e-08,-2.444417307638510289e-08,-2.514257802142467934e-08,-2.584098296646425579e-08,-2.653938791150383224e-08,-2.723779285654340869e-08,-2.793619780158298513e-08,-2.863460274662256158e-08,-2.933300769166213803e-08,-3.003141263670171448e-08,-3.072981758174129093e-08,-3.142822252678086738e-08,-3.212662747182044382e-08,-3.282503241686002027e-08,-3.352343736189959672e-08,-3.422184230693917317e-08,-3.492024725197874962e-08,-3.561865219701832606e-08,-3.631705714205790251e-08,-3.701546208709747896e-08,-3.771386703213705541e-08,-3.841227197717663186e-08,-3.911067692221620831e-08,-3.980908186725578475e-08,-4.050748681229536120e-08,-4.120589175733493765e-08,-4.190429670237451410e-08,-4.260270164741409055e-08,-4.330110659245366699e-08,-4.399951153749324344e-08 +0.000000000000000000e+00,-6.903220629705644248e-10,-1.380644125941128850e-09,-2.070966188911693481e-09,-2.761288251882258113e-09,-3.451610314852822744e-09,-4.141932377823386962e-09,-4.832254440793951180e-09,-5.522576503764515398e-09,-6.212898566735079616e-09,-6.903220629705643835e-09,-7.593542692676208880e-09,-8.283864755646773925e-09,-8.974186818617338970e-09,-9.664508881587904015e-09,-1.035483094455846906e-08,-1.104515300752903411e-08,-1.173547507049959915e-08,-1.242579713347016420e-08,-1.311611919644072924e-08,-1.380644125941129429e-08,-1.449676332238185933e-08,-1.518708538535242438e-08,-1.587740744832298942e-08,-1.656772951129355447e-08,-1.725805157426411951e-08,-1.794837363723468456e-08,-1.863869570020524960e-08,-1.932901776317581465e-08,-2.001933982614637969e-08,-2.070966188911694474e-08,-2.139998395208750978e-08,-2.209030601505807483e-08,-2.278062807802863987e-08,-2.347095014099920492e-08,-2.416127220396976996e-08,-2.485159426694033501e-08,-2.554191632991090005e-08,-2.623223839288146510e-08,-2.692256045585203015e-08,-2.761288251882259519e-08,-2.830320458179316024e-08,-2.899352664476372528e-08,-2.968384870773429033e-08,-3.037417077070485537e-08,-3.106449283367542042e-08,-3.175481489664598546e-08,-3.244513695961655051e-08,-3.313545902258711555e-08,-3.382578108555768060e-08,-3.451610314852824564e-08,-3.520642521149881069e-08,-3.589674727446937573e-08,-3.658706933743994078e-08,-3.727739140041050582e-08,-3.796771346338107087e-08,-3.865803552635163591e-08,-3.934835758932220096e-08,-4.003867965229276600e-08,-4.072900171526333105e-08,-4.141932377823389609e-08,-4.210964584120446114e-08,-4.279996790417502618e-08,-4.349028996714559123e-08 +0.000000000000000000e+00,-7.151613858654080475e-10,-1.430322771730816095e-09,-2.145484157596224143e-09,-2.860645543461632190e-09,-3.575806929327040238e-09,-4.290968315192448285e-09,-5.006129701057856746e-09,-5.721291086923265207e-09,-6.436452472788673668e-09,-7.151613858654082130e-09,-7.866775244519490591e-09,-8.581936630384898225e-09,-9.297098016250305859e-09,-1.001225940211571349e-08,-1.072742078798112113e-08,-1.144258217384652876e-08,-1.215774355971193639e-08,-1.287290494557734403e-08,-1.358806633144275166e-08,-1.430322771730815930e-08,-1.501838910317356693e-08,-1.573355048903897456e-08,-1.644871187490438220e-08,-1.716387326076978983e-08,-1.787903464663519747e-08,-1.859419603250060510e-08,-1.930935741836601273e-08,-2.002451880423142037e-08,-2.073968019009682800e-08,-2.145484157596223564e-08,-2.217000296182764327e-08,-2.288516434769305090e-08,-2.360032573355845854e-08,-2.431548711942386617e-08,-2.503064850528927381e-08,-2.574580989115468144e-08,-2.646097127702008907e-08,-2.717613266288549671e-08,-2.789129404875090434e-08,-2.860645543461631197e-08,-2.932161682048171961e-08,-3.003677820634712724e-08,-3.075193959221253488e-08,-3.146710097807794251e-08,-3.218226236394335014e-08,-3.289742374980875778e-08,-3.361258513567416541e-08,-3.432774652153957305e-08,-3.504290790740498068e-08,-3.575806929327038831e-08,-3.647323067913579595e-08,-3.718839206500120358e-08,-3.790355345086661122e-08,-3.861871483673201885e-08,-3.933387622259742648e-08,-4.004903760846283412e-08,-4.076419899432824175e-08,-4.147936038019364939e-08,-4.219452176605905702e-08,-4.290968315192446465e-08,-4.362484453778987229e-08,-4.434000592365527992e-08,-4.505516730952068756e-08 +0.000000000000000000e+00,7.157049271992133467e-10,1.431409854398426693e-09,2.147114781597640040e-09,2.862819708796853387e-09,3.578524635996066733e-09,4.294229563195280080e-09,5.009934490394493013e-09,5.725639417593705946e-09,6.441344344792918879e-09,7.157049271992131812e-09,7.872754199191344745e-09,8.588459126390558506e-09,9.304164053589772266e-09,1.001986898078898603e-08,1.073557390798819979e-08,1.145127883518741355e-08,1.216698376238662731e-08,1.288268868958584107e-08,1.359839361678505483e-08,1.431409854398426859e-08,1.502980347118348069e-08,1.574550839838269280e-08,1.646121332558190491e-08,1.717691825278111701e-08,1.789262317998032912e-08,1.860832810717954122e-08,1.932403303437875333e-08,2.003973796157796543e-08,2.075544288877717754e-08,2.147114781597638965e-08,2.218685274317560175e-08,2.290255767037481386e-08,2.361826259757402596e-08,2.433396752477323807e-08,2.504967245197245018e-08,2.576537737917166228e-08,2.648108230637087439e-08,2.719678723357008649e-08,2.791249216076929860e-08,2.862819708796851071e-08,2.934390201516772281e-08,3.005960694236693492e-08,3.077531186956614702e-08,3.149101679676535913e-08,3.220672172396457123e-08,3.292242665116378334e-08,3.363813157836299545e-08,3.435383650556220755e-08,3.506954143276141966e-08,3.578524635996063176e-08,3.650095128715984387e-08,3.721665621435905598e-08,3.793236114155826808e-08,3.864806606875748019e-08,3.936377099595669229e-08,4.007947592315590440e-08,4.079518085035511651e-08,4.151088577755432861e-08,4.222659070475354072e-08,4.294229563195275282e-08,4.365800055915196493e-08,4.437370548635117703e-08,4.508941041355038914e-08 +0.000000000000000000e+00,7.070137497874880754e-10,1.414027499574976151e-09,2.121041249362464123e-09,2.828054999149951888e-09,3.535068748937439653e-09,4.242082498724927418e-09,4.949096248512415183e-09,5.656109998299902949e-09,6.363123748087390714e-09,7.070137497874878479e-09,7.777151247662366244e-09,8.484164997449853182e-09,9.191178747237340120e-09,9.898192497024827058e-09,1.060520624681231400e-08,1.131221999659980093e-08,1.201923374638728787e-08,1.272624749617477481e-08,1.343326124596226175e-08,1.414027499574974869e-08,1.484728874553723562e-08,1.555430249532472256e-08,1.626131624511220785e-08,1.696832999489969313e-08,1.767534374468717841e-08,1.838235749447466370e-08,1.908937124426214898e-08,1.979638499404963426e-08,2.050339874383711955e-08,2.121041249362460483e-08,2.191742624341209011e-08,2.262443999319957540e-08,2.333145374298706068e-08,2.403846749277454597e-08,2.474548124256203125e-08,2.545249499234951653e-08,2.615950874213700182e-08,2.686652249192448710e-08,2.757353624171197238e-08,2.828054999149945767e-08,2.898756374128694295e-08,2.969457749107442823e-08,3.040159124086191352e-08,3.110860499064939880e-08,3.181561874043688409e-08,3.252263249022436937e-08,3.322964624001185465e-08,3.393665998979933994e-08,3.464367373958682522e-08,3.535068748937431050e-08,3.605770123916179579e-08,3.676471498894928107e-08,3.747172873873676635e-08,3.817874248852425164e-08,3.888575623831173692e-08,3.959276998809922221e-08,4.029978373788670749e-08,4.100679748767419277e-08,4.171381123746167806e-08,4.242082498724916334e-08,4.312783873703664862e-08,4.383485248682413391e-08,4.454186623661161919e-08 +0.000000000000000000e+00,7.331768317914410669e-10,1.466353663582882134e-09,2.199530495374323201e-09,2.932707327165764268e-09,3.665884158957205334e-09,4.399060990748646401e-09,5.132237822540087468e-09,5.865414654331528535e-09,6.598591486122969602e-09,7.331768317914410669e-09,8.064945149705852563e-09,8.798121981497294457e-09,9.531298813288736351e-09,1.026447564508017824e-08,1.099765247687162014e-08,1.173082930866306203e-08,1.246400614045450393e-08,1.319718297224594582e-08,1.393035980403738772e-08,1.466353663582882961e-08,1.539671346762027150e-08,1.612989029941171174e-08,1.686306713120315198e-08,1.759624396299459222e-08,1.832942079478603246e-08,1.906259762657747270e-08,1.979577445836891294e-08,2.052895129016035318e-08,2.126212812195179342e-08,2.199530495374323366e-08,2.272848178553467390e-08,2.346165861732611414e-08,2.419483544911755438e-08,2.492801228090899462e-08,2.566118911270043486e-08,2.639436594449187510e-08,2.712754277628331534e-08,2.786071960807475558e-08,2.859389643986619582e-08,2.932707327165763606e-08,3.006025010344907299e-08,3.079342693524050992e-08,3.152660376703194685e-08,3.225978059882338378e-08,3.299295743061482071e-08,3.372613426240625764e-08,3.445931109419769457e-08,3.519248792598913151e-08,3.592566475778056844e-08,3.665884158957200537e-08,3.739201842136344230e-08,3.812519525315487923e-08,3.885837208494631616e-08,3.959154891673775309e-08,4.032472574852919002e-08,4.105790258032062695e-08,4.179107941211206388e-08,4.252425624390350082e-08,4.325743307569493775e-08,4.399060990748637468e-08,4.472378673927781161e-08,4.545696357106924854e-08,4.619014040286068547e-08 +0.000000000000000000e+00,-7.157049271751933658e-10,-1.431409854350386732e-09,-2.147114781525580201e-09,-2.862819708700773877e-09,-3.578524635875967553e-09,-4.294229563051161229e-09,-5.009934490226355319e-09,-5.725639417401549408e-09,-6.441344344576743498e-09,-7.157049271751937587e-09,-7.872754198927131677e-09,-8.588459126102325767e-09,-9.304164053277519856e-09,-1.001986898045271395e-08,-1.073557390762790804e-08,-1.145127883480310213e-08,-1.216698376197829621e-08,-1.288268868915349030e-08,-1.359839361632868439e-08,-1.431409854350387848e-08,-1.502980347067907257e-08,-1.574550839785426666e-08,-1.646121332502946075e-08,-1.717691825220465484e-08,-1.789262317937984893e-08,-1.860832810655504302e-08,-1.932403303373023711e-08,-2.003973796090543120e-08,-2.075544288808062529e-08,-2.147114781525581938e-08,-2.218685274243101347e-08,-2.290255766960620756e-08,-2.361826259678140165e-08,-2.433396752395659574e-08,-2.504967245113178983e-08,-2.576537737830698392e-08,-2.648108230548217801e-08,-2.719678723265737210e-08,-2.791249215983256619e-08,-2.862819708700776028e-08,-2.934390201418295437e-08,-3.005960694135814515e-08,-3.077531186853333593e-08,-3.149101679570852671e-08,-3.220672172288371749e-08,-3.292242665005890827e-08,-3.363813157723409905e-08,-3.435383650440928983e-08,-3.506954143158448061e-08,-3.578524635875967139e-08,-3.650095128593486217e-08,-3.721665621311005296e-08,-3.793236114028524374e-08,-3.864806606746043452e-08,-3.936377099463562530e-08,-4.007947592181081608e-08,-4.079518084898600686e-08,-4.151088577616119764e-08,-4.222659070333638842e-08,-4.294229563051157920e-08,-4.365800055768676998e-08,-4.437370548486196076e-08,-4.508941041203715155e-08 +0.000000000000000000e+00,-7.070137497576259247e-10,-1.414027499515251849e-09,-2.121041249272877981e-09,-2.828054999030504112e-09,-3.535068748788130244e-09,-4.242082498545755962e-09,-4.949096248303381680e-09,-5.656109998061007397e-09,-6.363123747818633115e-09,-7.070137497576258833e-09,-7.777151247333884551e-09,-8.484164997091510269e-09,-9.191178746849135987e-09,-9.898192496606761705e-09,-1.060520624636438742e-08,-1.131221999612201314e-08,-1.201923374587963886e-08,-1.272624749563726458e-08,-1.343326124539489029e-08,-1.414027499515251601e-08,-1.484728874491014173e-08,-1.555430249466776910e-08,-1.626131624442539647e-08,-1.696832999418302385e-08,-1.767534374394065122e-08,-1.838235749369827859e-08,-1.908937124345590596e-08,-1.979638499321353334e-08,-2.050339874297116071e-08,-2.121041249272878808e-08,-2.191742624248641545e-08,-2.262443999224404282e-08,-2.333145374200167020e-08,-2.403846749175929757e-08,-2.474548124151692494e-08,-2.545249499127455231e-08,-2.615950874103217969e-08,-2.686652249078980706e-08,-2.757353624054743443e-08,-2.828054999030506180e-08,-2.898756374006268917e-08,-2.969457748982031655e-08,-3.040159123957794392e-08,-3.110860498933557129e-08,-3.181561873909319866e-08,-3.252263248885082604e-08,-3.322964623860845341e-08,-3.393665998836608078e-08,-3.464367373812370815e-08,-3.535068748788133552e-08,-3.605770123763896290e-08,-3.676471498739659027e-08,-3.747172873715421764e-08,-3.817874248691184501e-08,-3.888575623666947239e-08,-3.959276998642709976e-08,-4.029978373618472713e-08,-4.100679748594235450e-08,-4.171381123569998187e-08,-4.242082498545760925e-08,-4.312783873521523662e-08,-4.383485248497286399e-08,-4.454186623473049136e-08 +0.000000000000000000e+00,-7.331768317713255853e-10,-1.466353663542651171e-09,-2.199530495313976653e-09,-2.932707327085301928e-09,-3.665884158856627203e-09,-4.399060990627952478e-09,-5.132237822399277340e-09,-5.865414654170602201e-09,-6.598591485941927063e-09,-7.331768317713251924e-09,-8.064945149484576786e-09,-8.798121981255901647e-09,-9.531298813027226509e-09,-1.026447564479855137e-08,-1.099765247656987623e-08,-1.173082930834120109e-08,-1.246400614011252596e-08,-1.319718297188385082e-08,-1.393035980365517568e-08,-1.466353663542650054e-08,-1.539671346719782375e-08,-1.612989029896914695e-08,-1.686306713074047016e-08,-1.759624396251179337e-08,-1.832942079428311658e-08,-1.906259762605443978e-08,-1.979577445782576299e-08,-2.052895128959708620e-08,-2.126212812136840940e-08,-2.199530495313973261e-08,-2.272848178491105582e-08,-2.346165861668237903e-08,-2.419483544845370223e-08,-2.492801228022502544e-08,-2.566118911199634865e-08,-2.639436594376767186e-08,-2.712754277553899506e-08,-2.786071960731031827e-08,-2.859389643908164148e-08,-2.932707327085296468e-08,-3.006025010262428789e-08,-3.079342693439560779e-08,-3.152660376616692769e-08,-3.225978059793824759e-08,-3.299295742970956748e-08,-3.372613426148088738e-08,-3.445931109325220728e-08,-3.519248792502352718e-08,-3.592566475679484708e-08,-3.665884158856616698e-08,-3.739201842033748688e-08,-3.812519525210880677e-08,-3.885837208388012667e-08,-3.959154891565144657e-08,-4.032472574742276647e-08,-4.105790257919408637e-08,-4.179107941096540627e-08,-4.252425624273672617e-08,-4.325743307450804606e-08,-4.399060990627936596e-08,-4.472378673805068586e-08,-4.545696356982200576e-08,-4.619014040159332566e-08 +0.000000000000000000e+00,7.303297705579629041e-10,1.460659541115925808e-09,2.190989311673888609e-09,2.921319082231851203e-09,3.651648852789813797e-09,4.381978623347776391e-09,5.112308393905738985e-09,5.842638164463701579e-09,6.572967935021664173e-09,7.303297705579626767e-09,8.033627476137589361e-09,8.763957246695551127e-09,9.494287017253512894e-09,1.022461678781147466e-08,1.095494655836943643e-08,1.168527632892739819e-08,1.241560609948535996e-08,1.314593587004332173e-08,1.387626564060128349e-08,1.460659541115924526e-08,1.533692518171720703e-08,1.606725495227516880e-08,1.679758472283313056e-08,1.752791449339109233e-08,1.825824426394905410e-08,1.898857403450701586e-08,1.971890380506497763e-08,2.044923357562293940e-08,2.117956334618090116e-08,2.190989311673886293e-08,2.264022288729682470e-08,2.337055265785478646e-08,2.410088242841274823e-08,2.483121219897071000e-08,2.556154196952867176e-08,2.629187174008663353e-08,2.702220151064459530e-08,2.775253128120255706e-08,2.848286105176051883e-08,2.921319082231848060e-08,2.994352059287644236e-08,3.067385036343440082e-08,3.140418013399235928e-08,3.213450990455031774e-08,3.286483967510827620e-08,3.359516944566623465e-08,3.432549921622419311e-08,3.505582898678215157e-08,3.578615875734011003e-08,3.651648852789806849e-08,3.724681829845602694e-08,3.797714806901398540e-08,3.870747783957194386e-08,3.943780761012990232e-08,4.016813738068786078e-08,4.089846715124581923e-08,4.162879692180377769e-08,4.235912669236173615e-08,4.308945646291969461e-08,4.381978623347765307e-08,4.455011600403561152e-08,4.528044577459356998e-08,4.601077554515152844e-08 +0.000000000000000000e+00,7.222011035293266466e-10,1.444402207058653293e-09,2.166603310587979836e-09,2.888804414117306173e-09,3.611005517646632509e-09,4.333206621175958846e-09,5.055407724705284768e-09,5.777608828234610691e-09,6.499809931763936614e-09,7.222011035293262537e-09,7.944212138822588460e-09,8.666413242351914383e-09,9.388614345881240305e-09,1.011081544941056623e-08,1.083301655293989215e-08,1.155521765646921807e-08,1.227741875999854400e-08,1.299961986352786992e-08,1.372182096705719584e-08,1.444402207058652177e-08,1.516622317411584769e-08,1.588842427764517361e-08,1.661062538117449953e-08,1.733282648470382546e-08,1.805502758823315138e-08,1.877722869176247730e-08,1.949942979529180322e-08,2.022163089882112915e-08,2.094383200235045507e-08,2.166603310587978099e-08,2.238823420940910692e-08,2.311043531293843284e-08,2.383263641646775876e-08,2.455483751999708468e-08,2.527703862352641061e-08,2.599923972705573653e-08,2.672144083058506245e-08,2.744364193411438838e-08,2.816584303764371430e-08,2.888804414117304022e-08,2.961024524470236614e-08,3.033244634823169538e-08,3.105464745176102461e-08,3.177684855529035384e-08,3.249904965881968307e-08,3.322125076234901230e-08,3.394345186587834153e-08,3.466565296940767077e-08,3.538785407293700000e-08,3.611005517646632923e-08,3.683225627999565846e-08,3.755445738352498769e-08,3.827665848705431692e-08,3.899885959058364615e-08,3.972106069411297539e-08,4.044326179764230462e-08,4.116546290117163385e-08,4.188766400470096308e-08,4.260986510823029231e-08,4.333206621175962154e-08,4.405426731528895078e-08,4.477646841881828001e-08,4.549866952234760924e-08 +0.000000000000000000e+00,7.566360855369046529e-10,1.513272171073809306e-09,2.269908256610714062e-09,3.026544342147619025e-09,3.783180427684523575e-09,4.539816513221428124e-09,5.296452598758332673e-09,6.053088684295237223e-09,6.809724769832141772e-09,7.566360855369047149e-09,8.322996940905952526e-09,9.079633026442857902e-09,9.836269111979763279e-09,1.059290519751666866e-08,1.134954128305357403e-08,1.210617736859047941e-08,1.286281345412738479e-08,1.361944953966429016e-08,1.437608562520119554e-08,1.513272171073810092e-08,1.588935779627500629e-08,1.664599388181191167e-08,1.740262996734881705e-08,1.815926605288572242e-08,1.891590213842262780e-08,1.967253822395953318e-08,2.042917430949643855e-08,2.118581039503334393e-08,2.194244648057024931e-08,2.269908256610715468e-08,2.345571865164406006e-08,2.421235473718096544e-08,2.496899082271787081e-08,2.572562690825477619e-08,2.648226299379168157e-08,2.723889907932858694e-08,2.799553516486549232e-08,2.875217125040239770e-08,2.950880733593930307e-08,3.026544342147620845e-08,3.102207950701311052e-08,3.177871559255001258e-08,3.253535167808691465e-08,3.329198776362381672e-08,3.404862384916071879e-08,3.480525993469762086e-08,3.556189602023452292e-08,3.631853210577142499e-08,3.707516819130832706e-08,3.783180427684522913e-08,3.858844036238213120e-08,3.934507644791903326e-08,4.010171253345593533e-08,4.085834861899283740e-08,4.161498470452973947e-08,4.237162079006664154e-08,4.312825687560354360e-08,4.388489296114044567e-08,4.464152904667734774e-08,4.539816513221424981e-08,4.615480121775115188e-08,4.691143730328805394e-08,4.766807338882495601e-08 +0.000000000000000000e+00,-7.303297705450378969e-10,-1.460659541090075794e-09,-2.190989311635113691e-09,-2.921319082180151588e-09,-3.651648852725189484e-09,-4.381978623270227381e-09,-5.112308393815265278e-09,-5.842638164360303175e-09,-6.572967934905341072e-09,-7.303297705450378969e-09,-8.033627475995416866e-09,-8.763957246540454763e-09,-9.494287017085492659e-09,-1.022461678763053056e-08,-1.095494655817556845e-08,-1.168527632872060635e-08,-1.241560609926564425e-08,-1.314593586981068214e-08,-1.387626564035572004e-08,-1.460659541090075794e-08,-1.533692518144579583e-08,-1.606725495199083373e-08,-1.679758472253587163e-08,-1.752791449308090953e-08,-1.825824426362594742e-08,-1.898857403417098532e-08,-1.971890380471602322e-08,-2.044923357526106111e-08,-2.117956334580609901e-08,-2.190989311635113691e-08,-2.264022288689617480e-08,-2.337055265744121270e-08,-2.410088242798625060e-08,-2.483121219853128849e-08,-2.556154196907632639e-08,-2.629187173962136429e-08,-2.702220151016640218e-08,-2.775253128071144008e-08,-2.848286105125647798e-08,-2.921319082180151588e-08,-2.994352059234655046e-08,-3.067385036289158505e-08,-3.140418013343661964e-08,-3.213450990398165423e-08,-3.286483967452668882e-08,-3.359516944507172340e-08,-3.432549921561675799e-08,-3.505582898616179258e-08,-3.578615875670682717e-08,-3.651648852725186176e-08,-3.724681829779689634e-08,-3.797714806834193093e-08,-3.870747783888696552e-08,-3.943780760943200011e-08,-4.016813737997703470e-08,-4.089846715052206929e-08,-4.162879692106710387e-08,-4.235912669161213846e-08,-4.308945646215717305e-08,-4.381978623270220764e-08,-4.455011600324724223e-08,-4.528044577379227681e-08,-4.601077554433731140e-08 +0.000000000000000000e+00,-7.222011035112441682e-10,-1.444402207022488336e-09,-2.166603310533732505e-09,-2.888804414044976673e-09,-3.611005517556220841e-09,-4.333206621067465009e-09,-5.055407724578709591e-09,-5.777608828089954173e-09,-6.499809931601198755e-09,-7.222011035112443337e-09,-7.944212138623687918e-09,-8.666413242134931673e-09,-9.388614345646175428e-09,-1.011081544915741918e-08,-1.083301655266866294e-08,-1.155521765617990669e-08,-1.227741875969115045e-08,-1.299961986320239420e-08,-1.372182096671363796e-08,-1.444402207022488171e-08,-1.516622317373612546e-08,-1.588842427724736922e-08,-1.661062538075861297e-08,-1.733282648426985673e-08,-1.805502758778110048e-08,-1.877722869129234424e-08,-1.949942979480358799e-08,-2.022163089831483175e-08,-2.094383200182607550e-08,-2.166603310533731926e-08,-2.238823420884856301e-08,-2.311043531235980677e-08,-2.383263641587105052e-08,-2.455483751938229427e-08,-2.527703862289353803e-08,-2.599923972640478178e-08,-2.672144082991602554e-08,-2.744364193342726929e-08,-2.816584303693851305e-08,-2.888804414044975680e-08,-2.961024524396100056e-08,-3.033244634747224431e-08,-3.105464745098348807e-08,-3.177684855449473182e-08,-3.249904965800597558e-08,-3.322125076151721933e-08,-3.394345186502846309e-08,-3.466565296853970684e-08,-3.538785407205095059e-08,-3.611005517556219435e-08,-3.683225627907343810e-08,-3.755445738258468186e-08,-3.827665848609592561e-08,-3.899885958960716937e-08,-3.972106069311841312e-08,-4.044326179662965688e-08,-4.116546290014090063e-08,-4.188766400365214439e-08,-4.260986510716338814e-08,-4.333206621067463190e-08,-4.405426731418587565e-08,-4.477646841769711940e-08,-4.549866952120836316e-08 +0.000000000000000000e+00,-7.566360855274231985e-10,-1.513272171054846397e-09,-2.269908256582269389e-09,-3.026544342109692380e-09,-3.783180427637115372e-09,-4.539816513164538777e-09,-5.296452598691962183e-09,-6.053088684219385588e-09,-6.809724769746808993e-09,-7.566360855274232399e-09,-8.322996940801654977e-09,-9.079633026329077555e-09,-9.836269111856500133e-09,-1.059290519738392271e-08,-1.134954128291134529e-08,-1.210617736843876787e-08,-1.286281345396619045e-08,-1.361944953949361302e-08,-1.437608562502103560e-08,-1.513272171054845818e-08,-1.588935779607588076e-08,-1.664599388160330334e-08,-1.740262996713072591e-08,-1.815926605265814849e-08,-1.891590213818557107e-08,-1.967253822371299365e-08,-2.042917430924041623e-08,-2.118581039476783880e-08,-2.194244648029526138e-08,-2.269908256582268396e-08,-2.345571865135010654e-08,-2.421235473687752912e-08,-2.496899082240495170e-08,-2.572562690793237427e-08,-2.648226299345979685e-08,-2.723889907898721943e-08,-2.799553516451464201e-08,-2.875217125004206459e-08,-2.950880733556948716e-08,-3.026544342109690974e-08,-3.102207950662433563e-08,-3.177871559215176152e-08,-3.253535167767918740e-08,-3.329198776320661329e-08,-3.404862384873403918e-08,-3.480525993426146506e-08,-3.556189601978889095e-08,-3.631853210531631684e-08,-3.707516819084374272e-08,-3.783180427637116861e-08,-3.858844036189859450e-08,-3.934507644742602038e-08,-4.010171253295344627e-08,-4.085834861848087216e-08,-4.161498470400829804e-08,-4.237162078953572393e-08,-4.312825687506314982e-08,-4.388489296059057570e-08,-4.464152904611800159e-08,-4.539816513164542748e-08,-4.615480121717285337e-08,-4.691143730270027925e-08,-4.766807338822770514e-08 +0.000000000000000000e+00,7.316189739174027508e-10,1.463237947834805502e-09,2.194856921752208356e-09,2.926475895669611417e-09,3.658094869587014478e-09,4.389713843504417539e-09,5.121332817421820186e-09,5.852951791339222834e-09,6.584570765256625481e-09,7.316189739174028128e-09,8.047808713091430776e-09,8.779427687008833423e-09,9.511046660926236071e-09,1.024266563484363872e-08,1.097428460876104137e-08,1.170590358267844401e-08,1.243752255659584666e-08,1.316914153051324931e-08,1.390076050443065195e-08,1.463237947834805460e-08,1.536399845226545725e-08,1.609561742618286155e-08,1.682723640010026585e-08,1.755885537401767016e-08,1.829047434793507446e-08,1.902209332185247876e-08,1.975371229576988306e-08,2.048533126968728736e-08,2.121695024360469166e-08,2.194856921752209597e-08,2.268018819143950027e-08,2.341180716535690457e-08,2.414342613927430887e-08,2.487504511319171317e-08,2.560666408710911747e-08,2.633828306102652178e-08,2.706990203494392608e-08,2.780152100886133038e-08,2.853313998277873468e-08,2.926475895669613898e-08,2.999637793061354329e-08,3.072799690453094759e-08,3.145961587844835189e-08,3.219123485236575619e-08,3.292285382628316049e-08,3.365447280020056479e-08,3.438609177411796910e-08,3.511771074803537340e-08,3.584932972195277770e-08,3.658094869587018200e-08,3.731256766978758630e-08,3.804418664370499060e-08,3.877580561762239491e-08,3.950742459153979921e-08,4.023904356545720351e-08,4.097066253937460781e-08,4.170228151329201211e-08,4.243390048720941641e-08,4.316551946112682072e-08,4.389713843504422502e-08,4.462875740896162932e-08,4.536037638287903362e-08,4.609199535679643792e-08 +0.000000000000000000e+00,7.388853246231798138e-10,1.477770649246359628e-09,2.216655973869539441e-09,2.955541298492719255e-09,3.694426623115899069e-09,4.433311947739078883e-09,5.172197272362258696e-09,5.911082596985438510e-09,6.649967921608618324e-09,7.388853246231798138e-09,8.127738570854977124e-09,8.866623895478156111e-09,9.605509220101335097e-09,1.034439454472451408e-08,1.108327986934769307e-08,1.182216519397087206e-08,1.256105051859405104e-08,1.329993584321723003e-08,1.403882116784040902e-08,1.477770649246358800e-08,1.551659181708676699e-08,1.625547714170994763e-08,1.699436246633312827e-08,1.773324779095630891e-08,1.847213311557948955e-08,1.921101844020267019e-08,1.994990376482585084e-08,2.068878908944903148e-08,2.142767441407221212e-08,2.216655973869539276e-08,2.290544506331857340e-08,2.364433038794175404e-08,2.438321571256493468e-08,2.512210103718811532e-08,2.586098636181129596e-08,2.659987168643447660e-08,2.733875701105765724e-08,2.807764233568083789e-08,2.881652766030401853e-08,2.955541298492719917e-08,3.029429830955037650e-08,3.103318363417355383e-08,3.177206895879673116e-08,3.251095428341990850e-08,3.324983960804308583e-08,3.398872493266626316e-08,3.472761025728944049e-08,3.546649558191261783e-08,3.620538090653579516e-08,3.694426623115897249e-08,3.768315155578214982e-08,3.842203688040532715e-08,3.916092220502850449e-08,3.989980752965168182e-08,4.063869285427485915e-08,4.137757817889803648e-08,4.211646350352121382e-08,4.285534882814439115e-08,4.359423415276756848e-08,4.433311947739074581e-08,4.507200480201392314e-08,4.581089012663710048e-08,4.654977545126027781e-08 +0.000000000000000000e+00,7.595217788495090706e-10,1.519043557699018141e-09,2.278565336548527108e-09,3.038087115398035869e-09,3.797608894247544216e-09,4.557130673097052562e-09,5.316652451946560909e-09,6.076174230796069256e-09,6.835696009645577603e-09,7.595217788495085122e-09,8.354739567344592642e-09,9.114261346194100162e-09,9.873783125043607681e-09,1.063330490389311520e-08,1.139282668274262272e-08,1.215234846159213024e-08,1.291187024044163776e-08,1.367139201929114528e-08,1.443091379814065280e-08,1.519043557699016032e-08,1.594995735583966949e-08,1.670947913468917867e-08,1.746900091353868784e-08,1.822852269238819701e-08,1.898804447123770619e-08,1.974756625008721536e-08,2.050708802893672454e-08,2.126660980778623371e-08,2.202613158663574288e-08,2.278565336548525206e-08,2.354517514433476123e-08,2.430469692318427041e-08,2.506421870203377958e-08,2.582374048088328875e-08,2.658326225973279793e-08,2.734278403858230710e-08,2.810230581743181628e-08,2.886182759628132545e-08,2.962134937513083462e-08,3.038087115398034049e-08,3.114039293282984635e-08,3.189991471167935222e-08,3.265943649052885808e-08,3.341895826937836395e-08,3.417848004822786982e-08,3.493800182707737568e-08,3.569752360592688155e-08,3.645704538477638741e-08,3.721656716362589328e-08,3.797608894247539914e-08,3.873561072132490501e-08,3.949513250017441087e-08,4.025465427902391674e-08,4.101417605787342260e-08,4.177369783672292847e-08,4.253321961557243433e-08,4.329274139442194020e-08,4.405226317327144606e-08,4.481178495212095193e-08,4.557130673097045779e-08,4.633082850981996366e-08,4.709035028866946952e-08,4.784987206751897539e-08 +0.000000000000000000e+00,-7.316189739131820617e-10,-1.463237947826364123e-09,-2.194856921739546289e-09,-2.926475895652728660e-09,-3.658094869565911032e-09,-4.389713843479093404e-09,-5.121332817392275776e-09,-5.852951791305458148e-09,-6.584570765218640520e-09,-7.316189739131822892e-09,-8.047808713045006091e-09,-8.779427686958188463e-09,-9.511046660871370835e-09,-1.024266563478455321e-08,-1.097428460869773558e-08,-1.170590358261091795e-08,-1.243752255652410032e-08,-1.316914153043728269e-08,-1.390076050435046507e-08,-1.463237947826364744e-08,-1.536399845217682981e-08,-1.609561742609001218e-08,-1.682723640000319455e-08,-1.755885537391637693e-08,-1.829047434782955930e-08,-1.902209332174274167e-08,-1.975371229565592404e-08,-2.048533126956910641e-08,-2.121695024348228879e-08,-2.194856921739547116e-08,-2.268018819130865353e-08,-2.341180716522183590e-08,-2.414342613913501827e-08,-2.487504511304820065e-08,-2.560666408696138302e-08,-2.633828306087456539e-08,-2.706990203478774776e-08,-2.780152100870093013e-08,-2.853313998261411250e-08,-2.926475895652729488e-08,-2.999637793044047725e-08,-3.072799690435365962e-08,-3.145961587826684199e-08,-3.219123485218002436e-08,-3.292285382609320674e-08,-3.365447280000638911e-08,-3.438609177391957148e-08,-3.511771074783275385e-08,-3.584932972174593622e-08,-3.658094869565911860e-08,-3.731256766957230097e-08,-3.804418664348548334e-08,-3.877580561739866571e-08,-3.950742459131184808e-08,-4.023904356522503046e-08,-4.097066253913821283e-08,-4.170228151305139520e-08,-4.243390048696457757e-08,-4.316551946087775994e-08,-4.389713843479094231e-08,-4.462875740870412469e-08,-4.536037638261730706e-08,-4.609199535653048943e-08 +0.000000000000000000e+00,-7.388853246150913315e-10,-1.477770649230182663e-09,-2.216655973845274098e-09,-2.955541298460365740e-09,-3.694426623075457381e-09,-4.433311947690549023e-09,-5.172197272305640665e-09,-5.911082596920732307e-09,-6.649967921535823948e-09,-7.388853246150915590e-09,-8.127738570766007232e-09,-8.866623895381099701e-09,-9.605509219996192170e-09,-1.034439454461128464e-08,-1.108327986922637711e-08,-1.182216519384146958e-08,-1.256105051845656205e-08,-1.329993584307165451e-08,-1.403882116768674698e-08,-1.477770649230183945e-08,-1.551659181691693358e-08,-1.625547714153202770e-08,-1.699436246614712182e-08,-1.773324779076221594e-08,-1.847213311537731007e-08,-1.921101843999240419e-08,-1.994990376460749831e-08,-2.068878908922259244e-08,-2.142767441383768656e-08,-2.216655973845278068e-08,-2.290544506306787481e-08,-2.364433038768296893e-08,-2.438321571229806305e-08,-2.512210103691315718e-08,-2.586098636152825130e-08,-2.659987168614334542e-08,-2.733875701075843955e-08,-2.807764233537353367e-08,-2.881652765998862779e-08,-2.955541298460372192e-08,-3.029429830921881604e-08,-3.103318363383390685e-08,-3.177206895844899767e-08,-3.251095428306408848e-08,-3.324983960767917930e-08,-3.398872493229427011e-08,-3.472761025690936093e-08,-3.546649558152445174e-08,-3.620538090613954256e-08,-3.694426623075463337e-08,-3.768315155536972419e-08,-3.842203687998481500e-08,-3.916092220459990581e-08,-3.989980752921499663e-08,-4.063869285383008744e-08,-4.137757817844517826e-08,-4.211646350306026907e-08,-4.285534882767535989e-08,-4.359423415229045070e-08,-4.433311947690554152e-08,-4.507200480152063233e-08,-4.581089012613572315e-08,-4.654977545075081396e-08 +0.000000000000000000e+00,-7.595217788467449432e-10,-1.519043557693489886e-09,-2.278565336540235036e-09,-3.038087115386980186e-09,-3.797608894233725336e-09,-4.557130673080470073e-09,-5.316652451927214809e-09,-6.076174230773959545e-09,-6.835696009620704282e-09,-7.595217788467449018e-09,-8.354739567314193754e-09,-9.114261346160938491e-09,-9.873783125007683227e-09,-1.063330490385442796e-08,-1.139282668270117270e-08,-1.215234846154791744e-08,-1.291187024039466217e-08,-1.367139201924140691e-08,-1.443091379808815165e-08,-1.519043557693489473e-08,-1.594995735578163781e-08,-1.670947913462838089e-08,-1.746900091347512397e-08,-1.822852269232186706e-08,-1.898804447116861014e-08,-1.974756625001535322e-08,-2.050708802886209630e-08,-2.126660980770883938e-08,-2.202613158655558247e-08,-2.278565336540232555e-08,-2.354517514424906863e-08,-2.430469692309581171e-08,-2.506421870194255479e-08,-2.582374048078929788e-08,-2.658326225963604096e-08,-2.734278403848278404e-08,-2.810230581732952712e-08,-2.886182759617627020e-08,-2.962134937502301329e-08,-3.038087115386975637e-08,-3.114039293271650276e-08,-3.189991471156324915e-08,-3.265943649040999554e-08,-3.341895826925674193e-08,-3.417848004810348832e-08,-3.493800182695023471e-08,-3.569752360579698110e-08,-3.645704538464372749e-08,-3.721656716349047388e-08,-3.797608894233722027e-08,-3.873561072118396667e-08,-3.949513250003071306e-08,-4.025465427887745945e-08,-4.101417605772420584e-08,-4.177369783657095223e-08,-4.253321961541769862e-08,-4.329274139426444501e-08,-4.405226317311119140e-08,-4.481178495195793779e-08,-4.557130673080468418e-08,-4.633082850965143057e-08,-4.709035028849817696e-08,-4.784987206734492335e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.403540568300018639e-10,1.480708113660003728e-09,2.221062170490005385e-09,2.961416227320007042e-09,3.701770284150008699e-09,4.442124340980010770e-09,5.182478397810012840e-09,5.922832454640014911e-09,6.663186511470016982e-09,7.403540568300019052e-09,8.143894625130021123e-09,8.884248681960023194e-09,9.624602738790025264e-09,1.036495679562002734e-08,1.110531085245002941e-08,1.184566490928003148e-08,1.258601896611003355e-08,1.332637302294003562e-08,1.406672707977003769e-08,1.480708113660003976e-08,1.554743519343004183e-08,1.628778925026004225e-08,1.702814330709004266e-08,1.776849736392004308e-08,1.850885142075004350e-08,1.924920547758004391e-08,1.998955953441004433e-08,2.072991359124004474e-08,2.147026764807004516e-08,2.221062170490004558e-08,2.295097576173004599e-08,2.369132981856004641e-08,2.443168387539004683e-08,2.517203793222004724e-08,2.591239198905004766e-08,2.665274604588004807e-08,2.739310010271004849e-08,2.813345415954004891e-08,2.887380821637004932e-08,2.961416227320004974e-08,3.035451633003005016e-08,3.109487038686005057e-08,3.183522444369005099e-08,3.257557850052005140e-08,3.331593255735005182e-08,3.405628661418005224e-08,3.479664067101005265e-08,3.553699472784005307e-08,3.627734878467005349e-08,3.701770284150005390e-08,3.775805689833005432e-08,3.849841095516005474e-08,3.923876501199005515e-08,3.997911906882005557e-08,4.071947312565005598e-08,4.145982718248005640e-08,4.220018123931005682e-08,4.294053529614005723e-08,4.368088935297005765e-08,4.442124340980005807e-08,4.516159746663005848e-08,4.590195152346005890e-08,4.664230558029005931e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.403540568285212106e-10,-1.480708113657042421e-09,-2.221062170485563425e-09,-2.961416227314084429e-09,-3.701770284142605433e-09,-4.442124340971126850e-09,-5.182478397799648267e-09,-5.922832454628169685e-09,-6.663186511456691102e-09,-7.403540568285212519e-09,-8.143894625113733937e-09,-8.884248681942255354e-09,-9.624602738770776772e-09,-1.036495679559929819e-08,-1.110531085242781961e-08,-1.184566490925634102e-08,-1.258601896608486244e-08,-1.332637302291338386e-08,-1.406672707974190528e-08,-1.480708113657042669e-08,-1.554743519339894646e-08,-1.628778925022746456e-08,-1.702814330705598267e-08,-1.776849736388450078e-08,-1.850885142071301889e-08,-1.924920547754153700e-08,-1.998955953437005511e-08,-2.072991359119857322e-08,-2.147026764802709133e-08,-2.221062170485560943e-08,-2.295097576168412754e-08,-2.369132981851264565e-08,-2.443168387534116376e-08,-2.517203793216968187e-08,-2.591239198899819998e-08,-2.665274604582671809e-08,-2.739310010265523619e-08,-2.813345415948375430e-08,-2.887380821631227241e-08,-2.961416227314079052e-08,-3.035451632996930863e-08,-3.109487038679782674e-08,-3.183522444362634485e-08,-3.257557850045486296e-08,-3.331593255728338106e-08,-3.405628661411189917e-08,-3.479664067094041728e-08,-3.553699472776893539e-08,-3.627734878459745350e-08,-3.701770284142597161e-08,-3.775805689825448972e-08,-3.849841095508300782e-08,-3.923876501191152593e-08,-3.997911906874004404e-08,-4.071947312556856215e-08,-4.145982718239708026e-08,-4.220018123922559837e-08,-4.294053529605411648e-08,-4.368088935288263459e-08,-4.442124340971115269e-08,-4.516159746653967080e-08,-4.590195152336818891e-08,-4.664230558019670702e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.630303559768996459e-10,1.326060711953799292e-09,1.989091067930698731e-09,2.652121423907598170e-09,3.315151779884497609e-09,3.978182135861397462e-09,4.641212491838297315e-09,5.304242847815197167e-09,5.967273203792097020e-09,6.630303559768996873e-09,7.293333915745896725e-09,7.956364271722796578e-09,8.619394627699697258e-09,9.282424983676597938e-09,9.945455339653498618e-09,1.060848569563039930e-08,1.127151605160729998e-08,1.193454640758420066e-08,1.259757676356110134e-08,1.326060711953800202e-08,1.392363747551490270e-08,1.458666783149180338e-08,1.524969818746870406e-08,1.591272854344560308e-08,1.657575889942250211e-08,1.723878925539940113e-08,1.790181961137630016e-08,1.856484996735319918e-08,1.922788032333009821e-08,1.989091067930699724e-08,2.055394103528389626e-08,2.121697139126079529e-08,2.188000174723769431e-08,2.254303210321459334e-08,2.320606245919149236e-08,2.386909281516839139e-08,2.453212317114529041e-08,2.519515352712218944e-08,2.585818388309908846e-08,2.652121423907598749e-08,2.718424459505288652e-08,2.784727495102978554e-08,2.851030530700668457e-08,2.917333566298358359e-08,2.983636601896048262e-08,3.049939637493738164e-08,3.116242673091428067e-08,3.182545708689117969e-08,3.248848744286807872e-08,3.315151779884497775e-08,3.381454815482187677e-08,3.447757851079877580e-08,3.514060886677567482e-08,3.580363922275257385e-08,3.646666957872947287e-08,3.712969993470637190e-08,3.779273029068327092e-08,3.845576064666016995e-08,3.911879100263706898e-08,3.978182135861396800e-08,4.044485171459086703e-08,4.110788207056776605e-08,4.177091242654466508e-08 +0.000000000000000000e+00,6.550802739982767932e-10,1.310160547996553586e-09,1.965240821994830483e-09,2.620321095993107586e-09,3.275401369991384690e-09,3.930481643989661793e-09,4.585561917987938897e-09,5.240642191986216000e-09,5.895722465984493103e-09,6.550802739982770207e-09,7.205883013981047310e-09,7.860963287979325241e-09,8.516043561977603171e-09,9.171123835975881102e-09,9.826204109974159033e-09,1.048128438397243696e-08,1.113636465797071489e-08,1.179144493196899282e-08,1.244652520596727076e-08,1.310160547996554869e-08,1.375668575396382662e-08,1.441176602796210455e-08,1.506684630196038248e-08,1.572192657595866041e-08,1.637700684995693834e-08,1.703208712395521627e-08,1.768716739795349420e-08,1.834224767195177213e-08,1.899732794595005006e-08,1.965240821994832799e-08,2.030748849394660592e-08,2.096256876794488385e-08,2.161764904194316178e-08,2.227272931594143971e-08,2.292780958993971764e-08,2.358288986393799558e-08,2.423797013793627351e-08,2.489305041193455144e-08,2.554813068593282937e-08,2.620321095993110730e-08,2.685829123392938523e-08,2.751337150792766316e-08,2.816845178192594109e-08,2.882353205592421902e-08,2.947861232992249695e-08,3.013369260392077157e-08,3.078877287791904289e-08,3.144385315191731420e-08,3.209893342591558551e-08,3.275401369991385682e-08,3.340909397391212814e-08,3.406417424791039945e-08,3.471925452190867076e-08,3.537433479590694208e-08,3.602941506990521339e-08,3.668449534390348470e-08,3.733957561790175602e-08,3.799465589190002733e-08,3.864973616589829864e-08,3.930481643989656996e-08,3.995989671389484127e-08,4.061497698789311258e-08,4.127005726189138390e-08 +0.000000000000000000e+00,6.774339556535083001e-10,1.354867911307016600e-09,2.032301866960524797e-09,2.709735822614032787e-09,3.387169778267540777e-09,4.064603733921048767e-09,4.742037689574557170e-09,5.419471645228065574e-09,6.096905600881573977e-09,6.774339556535082381e-09,7.451773512188590784e-09,8.129207467842099188e-09,8.806641423495607591e-09,9.484075379149115995e-09,1.016150933480262440e-08,1.083894329045613280e-08,1.151637724610964121e-08,1.219381120176314961e-08,1.287124515741665801e-08,1.354867911307016642e-08,1.422611306872367482e-08,1.490354702437718157e-08,1.558098098003068832e-08,1.625841493568419507e-08,1.693584889133770182e-08,1.761328284699120856e-08,1.829071680264471531e-08,1.896815075829822206e-08,1.964558471395172881e-08,2.032301866960523556e-08,2.100045262525874231e-08,2.167788658091224906e-08,2.235532053656575581e-08,2.303275449221926256e-08,2.371018844787276931e-08,2.438762240352627606e-08,2.506505635917978281e-08,2.574249031483328955e-08,2.641992427048679630e-08,2.709735822614030305e-08,2.777479218179380980e-08,2.845222613744731655e-08,2.912966009310082330e-08,2.980709404875433005e-08,3.048452800440783349e-08,3.116196196006133693e-08,3.183939591571484037e-08,3.251682987136834381e-08,3.319426382702184725e-08,3.387169778267535069e-08,3.454913173832885413e-08,3.522656569398235757e-08,3.590399964963586101e-08,3.658143360528936445e-08,3.725886756094286789e-08,3.793630151659637133e-08,3.861373547224987477e-08,3.929116942790337821e-08,3.996860338355688166e-08,4.064603733921038510e-08,4.132347129486388854e-08,4.200090525051739198e-08,4.267833920617089542e-08 +0.000000000000000000e+00,-6.630303559461073306e-10,-1.326060711892214661e-09,-1.989091067838322095e-09,-2.652121423784429736e-09,-3.315151779730537377e-09,-3.978182135676645018e-09,-4.641212491622753072e-09,-5.304242847568861126e-09,-5.967273203514969181e-09,-6.630303559461077235e-09,-7.293333915407185290e-09,-7.956364271353293344e-09,-8.619394627299401398e-09,-9.282424983245509453e-09,-9.945455339191617507e-09,-1.060848569513772556e-08,-1.127151605108383362e-08,-1.193454640702994167e-08,-1.259757676297604972e-08,-1.326060711892215778e-08,-1.392363747486826583e-08,-1.458666783081437389e-08,-1.524969818676048194e-08,-1.591272854270659000e-08,-1.657575889865269805e-08,-1.723878925459880611e-08,-1.790181961054491416e-08,-1.856484996649102221e-08,-1.922788032243713027e-08,-1.989091067838323832e-08,-2.055394103432934638e-08,-2.121697139027545443e-08,-2.188000174622156249e-08,-2.254303210216767054e-08,-2.320606245811377860e-08,-2.386909281405988665e-08,-2.453212317000599470e-08,-2.519515352595210276e-08,-2.585818388189821081e-08,-2.652121423784431887e-08,-2.718424459379042692e-08,-2.784727494973653498e-08,-2.851030530568264303e-08,-2.917333566162875108e-08,-2.983636601757485583e-08,-3.049939637352095727e-08,-3.116242672946705870e-08,-3.182545708541316014e-08,-3.248848744135926158e-08,-3.315151779730536301e-08,-3.381454815325146445e-08,-3.447757850919756589e-08,-3.514060886514366733e-08,-3.580363922108976876e-08,-3.646666957703587020e-08,-3.712969993298197164e-08,-3.779273028892807307e-08,-3.845576064487417451e-08,-3.911879100082027595e-08,-3.978182135676637738e-08,-4.044485171271247882e-08,-4.110788206865858026e-08,-4.177091242460468170e-08 +0.000000000000000000e+00,-6.550802739620882618e-10,-1.310160547924176524e-09,-1.965240821886264682e-09,-2.620321095848352634e-09,-3.275401369810440585e-09,-3.930481643772528537e-09,-4.585561917734616488e-09,-5.240642191696704440e-09,-5.895722465658792392e-09,-6.550802739620880343e-09,-7.205883013582968295e-09,-7.860963287545055419e-09,-8.516043561507142544e-09,-9.171123835469229668e-09,-9.826204109431316793e-09,-1.048128438339340392e-08,-1.113636465735549104e-08,-1.179144493131757817e-08,-1.244652520527966529e-08,-1.310160547924175241e-08,-1.375668575320383954e-08,-1.441176602716592666e-08,-1.506684630112801379e-08,-1.572192657509010091e-08,-1.637700684905218804e-08,-1.703208712301427516e-08,-1.768716739697636229e-08,-1.834224767093844941e-08,-1.899732794490053653e-08,-1.965240821886262366e-08,-2.030748849282471078e-08,-2.096256876678679791e-08,-2.161764904074888503e-08,-2.227272931471097216e-08,-2.292780958867305928e-08,-2.358288986263514641e-08,-2.423797013659723353e-08,-2.489305041055932065e-08,-2.554813068452140778e-08,-2.620321095848349490e-08,-2.685829123244558203e-08,-2.751337150640766915e-08,-2.816845178036975628e-08,-2.882353205433184340e-08,-2.947861232829393053e-08,-3.013369260225602096e-08,-3.078877287621810808e-08,-3.144385315018019521e-08,-3.209893342414228233e-08,-3.275401369810436946e-08,-3.340909397206645658e-08,-3.406417424602854371e-08,-3.471925451999063083e-08,-3.537433479395271795e-08,-3.602941506791480508e-08,-3.668449534187689220e-08,-3.733957561583897933e-08,-3.799465588980106645e-08,-3.864973616376315358e-08,-3.930481643772524070e-08,-3.995989671168732782e-08,-4.061497698564941495e-08,-4.127005725961150207e-08 +0.000000000000000000e+00,-6.774339556172307434e-10,-1.354867911234461487e-09,-2.032301866851692230e-09,-2.709735822468922973e-09,-3.387169778086153717e-09,-4.064603733703384460e-09,-4.742037689320615204e-09,-5.419471644937845947e-09,-6.096905600555076690e-09,-6.774339556172307434e-09,-7.451773511789539004e-09,-8.129207467406770575e-09,-8.806641423024002145e-09,-9.484075378641233716e-09,-1.016150933425846529e-08,-1.083894328987569686e-08,-1.151637724549292843e-08,-1.219381120111016000e-08,-1.287124515672739157e-08,-1.354867911234462314e-08,-1.422611306796185471e-08,-1.490354702357908463e-08,-1.558098097919631454e-08,-1.625841493481354446e-08,-1.693584889043077437e-08,-1.761328284604800429e-08,-1.829071680166523421e-08,-1.896815075728246412e-08,-1.964558471289969404e-08,-2.032301866851692396e-08,-2.100045262413415387e-08,-2.167788657975138379e-08,-2.235532053536861370e-08,-2.303275449098584362e-08,-2.371018844660307354e-08,-2.438762240222030345e-08,-2.506505635783753337e-08,-2.574249031345476328e-08,-2.641992426907199320e-08,-2.709735822468922312e-08,-2.777479218030645303e-08,-2.845222613592368295e-08,-2.912966009154091287e-08,-2.980709404715814278e-08,-3.048452800277537601e-08,-3.116196195839260923e-08,-3.183939591400984246e-08,-3.251682986962707568e-08,-3.319426382524430891e-08,-3.387169778086154213e-08,-3.454913173647877536e-08,-3.522656569209600858e-08,-3.590399964771324181e-08,-3.658143360333047503e-08,-3.725886755894770826e-08,-3.793630151456494148e-08,-3.861373547018217471e-08,-3.929116942579940793e-08,-3.996860338141664116e-08,-4.064603733703387438e-08,-4.132347129265110761e-08,-4.200090524826834083e-08,-4.267833920388557406e-08 +0.000000000000000000e+00,6.773211887059356136e-10,1.354642377411871227e-09,2.031963566117806944e-09,2.709284754823742868e-09,3.386605943529678792e-09,4.063927132235614715e-09,4.741248320941550225e-09,5.418569509647485736e-09,6.095890698353421246e-09,6.773211887059356756e-09,7.450533075765292266e-09,8.127854264471227776e-09,8.805175453177163286e-09,9.482496641883098797e-09,1.015981783058903431e-08,1.083713901929496982e-08,1.151446020800090533e-08,1.219178139670684084e-08,1.286910258541277635e-08,1.354642377411871186e-08,1.422374496282464737e-08,1.490106615153058288e-08,1.557838734023651839e-08,1.625570852894245224e-08,1.693302971764838610e-08,1.761035090635431996e-08,1.828767209506025381e-08,1.896499328376618767e-08,1.964231447247212152e-08,2.031963566117805538e-08,2.099695684988398923e-08,2.167427803858992309e-08,2.235159922729585695e-08,2.302892041600179080e-08,2.370624160470772466e-08,2.438356279341365851e-08,2.506088398211959237e-08,2.573820517082552622e-08,2.641552635953146008e-08,2.709284754823739394e-08,2.777016873694332779e-08,2.844748992564926165e-08,2.912481111435519550e-08,2.980213230306112936e-08,3.047945349176705991e-08,3.115677468047299045e-08,3.183409586917892100e-08,3.251141705788485155e-08,3.318873824659078209e-08,3.386605943529671264e-08,3.454338062400264319e-08,3.522070181270857374e-08,3.589802300141450428e-08,3.657534419012043483e-08,3.725266537882636538e-08,3.792998656753229592e-08,3.860730775623822647e-08,3.928462894494415702e-08,3.996195013365008757e-08,4.063927132235601811e-08,4.131659251106194866e-08,4.199391369976787921e-08,4.267123488847380975e-08 +0.000000000000000000e+00,6.705985851510794146e-10,1.341197170302158829e-09,2.011795755453238140e-09,2.682394340604317245e-09,3.352992925755396349e-09,4.023591510906475454e-09,4.694190096057554558e-09,5.364788681208633663e-09,6.035387266359712767e-09,6.705985851510791871e-09,7.376584436661870976e-09,8.047183021812949253e-09,8.717781606964027530e-09,9.388380192115105808e-09,1.005897877726618408e-08,1.072957736241726236e-08,1.140017594756834064e-08,1.207077453271941892e-08,1.274137311787049719e-08,1.341197170302157547e-08,1.408257028817265375e-08,1.475316887332373203e-08,1.542376745847480865e-08,1.609436604362588527e-08,1.676496462877696189e-08,1.743556321392803852e-08,1.810616179907911514e-08,1.877676038423019176e-08,1.944735896938126839e-08,2.011795755453234501e-08,2.078855613968342163e-08,2.145915472483449825e-08,2.212975330998557488e-08,2.280035189513665150e-08,2.347095048028772812e-08,2.414154906543880475e-08,2.481214765058988137e-08,2.548274623574095799e-08,2.615334482089203461e-08,2.682394340604311124e-08,2.749454199119418786e-08,2.816514057634526448e-08,2.883573916149634111e-08,2.950633774664741773e-08,3.017693633179849435e-08,3.084753491694957097e-08,3.151813350210064760e-08,3.218873208725172422e-08,3.285933067240280084e-08,3.352992925755387747e-08,3.420052784270495409e-08,3.487112642785603071e-08,3.554172501300710733e-08,3.621232359815818396e-08,3.688292218330926058e-08,3.755352076846033720e-08,3.822411935361141383e-08,3.889471793876249045e-08,3.956531652391356707e-08,4.023591510906464370e-08,4.090651369421572032e-08,4.157711227936679694e-08,4.224771086451787356e-08 +0.000000000000000000e+00,6.917737207671404393e-10,1.383547441534280879e-09,2.075321162301421215e-09,2.767094883068561344e-09,3.458868603835701473e-09,4.150642324602841602e-09,4.842416045369981318e-09,5.534189766137121033e-09,6.225963486904260749e-09,6.917737207671400464e-09,7.609510928438540180e-09,8.301284649205679895e-09,8.993058369972819611e-09,9.684832090739959327e-09,1.037660581150709904e-08,1.106837953227423876e-08,1.176015325304137847e-08,1.245192697380851819e-08,1.314370069457565790e-08,1.383547441534279762e-08,1.452724813610993734e-08,1.521902185687707705e-08,1.591079557764421677e-08,1.660256929841135648e-08,1.729434301917849620e-08,1.798611673994563591e-08,1.867789046071277563e-08,1.936966418147991534e-08,2.006143790224705506e-08,2.075321162301419478e-08,2.144498534378133449e-08,2.213675906454847421e-08,2.282853278531561392e-08,2.352030650608275364e-08,2.421208022684989335e-08,2.490385394761703307e-08,2.559562766838417278e-08,2.628740138915131250e-08,2.697917510991845222e-08,2.767094883068559193e-08,2.836272255145273165e-08,2.905449627221987136e-08,2.974626999298701108e-08,3.043804371375414748e-08,3.112981743452128389e-08,3.182159115528842030e-08,3.251336487605555671e-08,3.320513859682269311e-08,3.389691231758982952e-08,3.458868603835696593e-08,3.528045975912410233e-08,3.597223347989123874e-08,3.666400720065837515e-08,3.735578092142551155e-08,3.804755464219264796e-08,3.873932836295978437e-08,3.943110208372692077e-08,4.012287580449405718e-08,4.081464952526119359e-08,4.150642324602832999e-08,4.219819696679546640e-08,4.288997068756260281e-08,4.358174440832973921e-08 +0.000000000000000000e+00,-6.773211886882796502e-10,-1.354642377376559300e-09,-2.031963566064838847e-09,-2.709284754753118187e-09,-3.386605943441397527e-09,-4.063927132129676867e-09,-4.741248320817956207e-09,-5.418569509506235547e-09,-6.095890698194514887e-09,-6.773211886882794227e-09,-7.450533075571073567e-09,-8.127854264259352080e-09,-8.805175452947630593e-09,-9.482496641635909105e-09,-1.015981783032418762e-08,-1.083713901901246613e-08,-1.151446020770074464e-08,-1.219178139638902316e-08,-1.286910258507730167e-08,-1.354642377376558018e-08,-1.422374496245385869e-08,-1.490106615114213721e-08,-1.557838733983041572e-08,-1.625570852851869423e-08,-1.693302971720697275e-08,-1.761035090589525126e-08,-1.828767209458352977e-08,-1.896499328327180828e-08,-1.964231447196008680e-08,-2.031963566064836531e-08,-2.099695684933664382e-08,-2.167427803802492234e-08,-2.235159922671320085e-08,-2.302892041540147936e-08,-2.370624160408975787e-08,-2.438356279277803639e-08,-2.506088398146631490e-08,-2.573820517015459341e-08,-2.641552635884287193e-08,-2.709284754753115044e-08,-2.777016873621942895e-08,-2.844748992490770746e-08,-2.912481111359598598e-08,-2.980213230228426449e-08,-3.047945349097254300e-08,-3.115677467966081821e-08,-3.183409586834909341e-08,-3.251141705703736861e-08,-3.318873824572564382e-08,-3.386605943441391902e-08,-3.454338062310219423e-08,-3.522070181179046943e-08,-3.589802300047874463e-08,-3.657534418916701984e-08,-3.725266537785529504e-08,-3.792998656654357025e-08,-3.860730775523184545e-08,-3.928462894392012066e-08,-3.996195013260839586e-08,-4.063927132129667106e-08,-4.131659250998494627e-08,-4.199391369867322147e-08,-4.267123488736149668e-08 +0.000000000000000000e+00,-6.705985851271033778e-10,-1.341197170254206756e-09,-2.011795755381310237e-09,-2.682394340508413925e-09,-3.352992925635517613e-09,-4.023591510762621301e-09,-4.694190095889724575e-09,-5.364788681016827849e-09,-6.035387266143931124e-09,-6.705985851271034398e-09,-7.376584436398137672e-09,-8.047183021525240947e-09,-8.717781606652344221e-09,-9.388380191779447496e-09,-1.005897877690655077e-08,-1.072957736203365404e-08,-1.140017594716075732e-08,-1.207077453228786059e-08,-1.274137311741496387e-08,-1.341197170254206714e-08,-1.408257028766917042e-08,-1.475316887279627369e-08,-1.542376745792337696e-08,-1.609436604305047858e-08,-1.676496462817758020e-08,-1.743556321330468182e-08,-1.810616179843178344e-08,-1.877676038355888506e-08,-1.944735896868598668e-08,-2.011795755381308830e-08,-2.078855613894018992e-08,-2.145915472406729154e-08,-2.212975330919439316e-08,-2.280035189432149478e-08,-2.347095047944859640e-08,-2.414154906457569802e-08,-2.481214764970279964e-08,-2.548274623482990126e-08,-2.615334481995700288e-08,-2.682394340508410450e-08,-2.749454199021120612e-08,-2.816514057533830774e-08,-2.883573916046540937e-08,-2.950633774559251099e-08,-3.017693633071961261e-08,-3.084753491584671423e-08,-3.151813350097381585e-08,-3.218873208610091747e-08,-3.285933067122801909e-08,-3.352992925635512071e-08,-3.420052784148222233e-08,-3.487112642660932395e-08,-3.554172501173642557e-08,-3.621232359686352719e-08,-3.688292218199062881e-08,-3.755352076711773043e-08,-3.822411935224483205e-08,-3.889471793737193367e-08,-3.956531652249903529e-08,-4.023591510762613691e-08,-4.090651369275323853e-08,-4.157711227788034015e-08,-4.224771086300744177e-08 +0.000000000000000000e+00,-6.917737207437825132e-10,-1.383547441487565026e-09,-2.075321162231347436e-09,-2.767094882975129639e-09,-3.458868603718911842e-09,-4.150642324462694045e-09,-4.842416045206475835e-09,-5.534189765950257624e-09,-6.225963486694039414e-09,-6.917737207437821203e-09,-7.609510928181602992e-09,-8.301284648925384782e-09,-8.993058369669166571e-09,-9.684832090412948361e-09,-1.037660581115673015e-08,-1.106837953190051194e-08,-1.176015325264429373e-08,-1.245192697338807552e-08,-1.314370069413185731e-08,-1.383547441487563910e-08,-1.452724813561942089e-08,-1.521902185636320268e-08,-1.591079557710698612e-08,-1.660256929785076956e-08,-1.729434301859455301e-08,-1.798611673933833645e-08,-1.867789046008211989e-08,-1.936966418082590334e-08,-2.006143790156968678e-08,-2.075321162231347023e-08,-2.144498534305725367e-08,-2.213675906380103711e-08,-2.282853278454482056e-08,-2.352030650528860400e-08,-2.421208022603238745e-08,-2.490385394677617089e-08,-2.559562766751995433e-08,-2.628740138826373778e-08,-2.697917510900752122e-08,-2.767094882975130466e-08,-2.836272255049508811e-08,-2.905449627123887155e-08,-2.974626999198265500e-08,-3.043804371272643844e-08,-3.112981743347022188e-08,-3.182159115421400533e-08,-3.251336487495778877e-08,-3.320513859570157221e-08,-3.389691231644535566e-08,-3.458868603718913910e-08,-3.528045975793292255e-08,-3.597223347867670599e-08,-3.666400719942048943e-08,-3.735578092016427288e-08,-3.804755464090805632e-08,-3.873932836165183976e-08,-3.943110208239562321e-08,-4.012287580313940665e-08,-4.081464952388319010e-08,-4.150642324462697354e-08,-4.219819696537075698e-08,-4.288997068611454043e-08,-4.358174440685832387e-08 +0.000000000000000000e+00,6.888369009261971467e-10,1.377673801852394293e-09,2.066510702778591440e-09,2.755347603704788587e-09,3.444184504630985733e-09,4.133021405557182880e-09,4.821858306483380027e-09,5.510695207409577173e-09,6.199532108335774320e-09,6.888369009261971467e-09,7.577205910188168613e-09,8.266042811114365760e-09,8.954879712040562907e-09,9.643716612966760053e-09,1.033255351389295720e-08,1.102139041481915435e-08,1.171022731574535149e-08,1.239906421667154864e-08,1.308790111759774579e-08,1.377673801852394293e-08,1.446557491945014008e-08,1.515441182037633723e-08,1.584324872130253437e-08,1.653208562222873152e-08,1.722092252315492867e-08,1.790975942408112581e-08,1.859859632500732296e-08,1.928743322593352011e-08,1.997627012685971725e-08,2.066510702778591440e-08,2.135394392871211155e-08,2.204278082963830869e-08,2.273161773056450584e-08,2.342045463149070299e-08,2.410929153241690013e-08,2.479812843334309728e-08,2.548696533426929443e-08,2.617580223519549157e-08,2.686463913612168872e-08,2.755347603704788587e-08,2.824231293797408301e-08,2.893114983890028016e-08,2.961998673982647731e-08,3.030882364075267445e-08,3.099766054167887491e-08,3.168649744260507536e-08,3.237533434353127582e-08,3.306417124445747627e-08,3.375300814538367673e-08,3.444184504630987719e-08,3.513068194723607764e-08,3.581951884816227810e-08,3.650835574908847855e-08,3.719719265001467901e-08,3.788602955094087946e-08,3.857486645186707992e-08,3.926370335279328037e-08,3.995254025371948083e-08,4.064137715464568128e-08,4.133021405557188174e-08,4.201905095649808219e-08,4.270788785742428265e-08,4.339672475835048311e-08 +0.000000000000000000e+00,6.826964342992761444e-10,1.365392868598552289e-09,2.048089302897828640e-09,2.730785737197104991e-09,3.413482171496381343e-09,4.096178605795657280e-09,4.778875040094933218e-09,5.461571474394209155e-09,6.144267908693485093e-09,6.826964342992761031e-09,7.509660777292036141e-09,8.192357211591311252e-09,8.875053645890586362e-09,9.557750080189861473e-09,1.024044651448913658e-08,1.092314294878841169e-08,1.160583938308768680e-08,1.228853581738696191e-08,1.297123225168623702e-08,1.365392868598551214e-08,1.433662512028478725e-08,1.501932155458406236e-08,1.570201798888333747e-08,1.638471442318261258e-08,1.706741085748188769e-08,1.775010729178116280e-08,1.843280372608043791e-08,1.911550016037971302e-08,1.979819659467898813e-08,2.048089302897826324e-08,2.116358946327753835e-08,2.184628589757681346e-08,2.252898233187608857e-08,2.321167876617536368e-08,2.389437520047463879e-08,2.457707163477391390e-08,2.525976806907318901e-08,2.594246450337246412e-08,2.662516093767173923e-08,2.730785737197101434e-08,2.799055380627028945e-08,2.867325024056956457e-08,2.935594667486883968e-08,3.003864310916811809e-08,3.072133954346739651e-08,3.140403597776667493e-08,3.208673241206595335e-08,3.276942884636523177e-08,3.345212528066451019e-08,3.413482171496378861e-08,3.481751814926306703e-08,3.550021458356234545e-08,3.618291101786162387e-08,3.686560745216090229e-08,3.754830388646018071e-08,3.823100032075945912e-08,3.891369675505873754e-08,3.959639318935801596e-08,4.027908962365729438e-08,4.096178605795657280e-08,4.164448249225585122e-08,4.232717892655512964e-08,4.300987536085440806e-08 +0.000000000000000000e+00,7.064029843389383693e-10,1.412805968677876739e-09,2.119208953016815211e-09,2.825611937355753891e-09,3.532014921694692570e-09,4.238417906033631250e-09,4.944820890372570343e-09,5.651223874711509436e-09,6.357626859050448529e-09,7.064029843389387622e-09,7.770432827728326715e-09,8.476835812067265809e-09,9.183238796406204902e-09,9.889641780745143995e-09,1.059604476508408309e-08,1.130244774942302218e-08,1.200885073376196127e-08,1.271525371810090037e-08,1.342165670243983946e-08,1.412805968677877855e-08,1.483446267111771765e-08,1.554086565545665674e-08,1.624726863979559583e-08,1.695367162413453493e-08,1.766007460847347402e-08,1.836647759281241311e-08,1.907288057715135221e-08,1.977928356149029130e-08,2.048568654582923039e-08,2.119208953016816948e-08,2.189849251450710858e-08,2.260489549884604767e-08,2.331129848318498676e-08,2.401770146752392586e-08,2.472410445186286495e-08,2.543050743620180404e-08,2.613691042054074314e-08,2.684331340487968223e-08,2.754971638921862132e-08,2.825611937355756042e-08,2.896252235789649951e-08,2.966892534223543860e-08,3.037532832657437769e-08,3.108173131091332010e-08,3.178813429525226250e-08,3.249453727959120490e-08,3.320094026393014730e-08,3.390734324826908970e-08,3.461374623260803211e-08,3.532014921694697451e-08,3.602655220128591691e-08,3.673295518562485931e-08,3.743935816996380171e-08,3.814576115430274412e-08,3.885216413864168652e-08,3.955856712298062892e-08,4.026497010731957132e-08,4.097137309165851372e-08,4.167777607599745612e-08,4.238417906033639853e-08,4.309058204467534093e-08,4.379698502901428333e-08,4.450338801335322573e-08 +0.000000000000000000e+00,-6.888369009178745723e-10,-1.377673801835749145e-09,-2.066510702753623820e-09,-2.755347603671498703e-09,-3.444184504589373585e-09,-4.133021405507248468e-09,-4.821858306425123350e-09,-5.510695207342998233e-09,-6.199532108260873115e-09,-6.888369009178747998e-09,-7.577205910096622880e-09,-8.266042811014498590e-09,-8.954879711932374300e-09,-9.643716612850250010e-09,-1.033255351376812572e-08,-1.102139041468600143e-08,-1.171022731560387714e-08,-1.239906421652175285e-08,-1.308790111743962856e-08,-1.377673801835750427e-08,-1.446557491927537998e-08,-1.515441182019325569e-08,-1.584324872111113140e-08,-1.653208562202900711e-08,-1.722092252294688282e-08,-1.790975942386475853e-08,-1.859859632478263424e-08,-1.928743322570050995e-08,-1.997627012661838565e-08,-2.066510702753626136e-08,-2.135394392845413707e-08,-2.204278082937201278e-08,-2.273161773028988849e-08,-2.342045463120776420e-08,-2.410929153212563991e-08,-2.479812843304351562e-08,-2.548696533396139133e-08,-2.617580223487926704e-08,-2.686463913579714275e-08,-2.755347603671501846e-08,-2.824231293763289417e-08,-2.893114983855076988e-08,-2.961998673946864559e-08,-3.030882364038651799e-08,-3.099766054130439370e-08,-3.168649744222226941e-08,-3.237533434314014512e-08,-3.306417124405802083e-08,-3.375300814497589654e-08,-3.444184504589377225e-08,-3.513068194681164796e-08,-3.581951884772952367e-08,-3.650835574864739938e-08,-3.719719264956527509e-08,-3.788602955048315080e-08,-3.857486645140102651e-08,-3.926370335231890222e-08,-3.995254025323677793e-08,-4.064137715415465364e-08,-4.133021405507252935e-08,-4.201905095599040506e-08,-4.270788785690828077e-08,-4.339672475782615648e-08 +0.000000000000000000e+00,-6.826964342867074452e-10,-1.365392868573414890e-09,-2.048089302860122439e-09,-2.730785737146830194e-09,-3.413482171433537950e-09,-4.096178605720245705e-09,-4.778875040006953461e-09,-5.461571474293661216e-09,-6.144267908580368971e-09,-6.826964342867076727e-09,-7.509660777153784482e-09,-8.192357211440493065e-09,-8.875053645727201647e-09,-9.557750080013910230e-09,-1.024044651430061881e-08,-1.092314294858732740e-08,-1.160583938287403598e-08,-1.228853581716074456e-08,-1.297123225144745314e-08,-1.365392868573416173e-08,-1.433662512002087031e-08,-1.501932155430757889e-08,-1.570201798859428747e-08,-1.638471442288099606e-08,-1.706741085716770464e-08,-1.775010729145441322e-08,-1.843280372574112180e-08,-1.911550016002783039e-08,-1.979819659431453897e-08,-2.048089302860124755e-08,-2.116358946288795613e-08,-2.184628589717466472e-08,-2.252898233146137330e-08,-2.321167876574808188e-08,-2.389437520003479046e-08,-2.457707163432149905e-08,-2.525976806860820763e-08,-2.594246450289491621e-08,-2.662516093718162479e-08,-2.730785737146833338e-08,-2.799055380575504196e-08,-2.867325024004175054e-08,-2.935594667432845913e-08,-3.003864310861516440e-08,-3.072133954290186967e-08,-3.140403597718857495e-08,-3.208673241147528022e-08,-3.276942884576198549e-08,-3.345212528004869077e-08,-3.413482171433539604e-08,-3.481751814862210132e-08,-3.550021458290880659e-08,-3.618291101719551186e-08,-3.686560745148221714e-08,-3.754830388576892241e-08,-3.823100032005562769e-08,-3.891369675434233296e-08,-3.959639318862903823e-08,-4.027908962291574351e-08,-4.096178605720244878e-08,-4.164448249148915405e-08,-4.232717892577585933e-08,-4.300987536006256460e-08 +0.000000000000000000e+00,-7.064029843273551524e-10,-1.412805968654710305e-09,-2.119208952982065354e-09,-2.825611937309420196e-09,-3.532014921636775038e-09,-4.238417905964129880e-09,-4.944820890291485136e-09,-5.651223874618840392e-09,-6.357626858946195648e-09,-7.064029843273550904e-09,-7.770432827600906160e-09,-8.476835811928261415e-09,-9.183238796255616671e-09,-9.889641780582971927e-09,-1.059604476491032718e-08,-1.130244774923768244e-08,-1.200885073356503769e-08,-1.271525371789239295e-08,-1.342165670221974821e-08,-1.412805968654710346e-08,-1.483446267087445872e-08,-1.554086565520181563e-08,-1.624726863952917088e-08,-1.695367162385652614e-08,-1.766007460818388140e-08,-1.836647759251123665e-08,-1.907288057683859191e-08,-1.977928356116594716e-08,-2.048568654549330242e-08,-2.119208952982065767e-08,-2.189849251414801293e-08,-2.260489549847536819e-08,-2.331129848280272344e-08,-2.401770146713007870e-08,-2.472410445145743395e-08,-2.543050743578478921e-08,-2.613691042011214446e-08,-2.684331340443949972e-08,-2.754971638876685498e-08,-2.825611937309421023e-08,-2.896252235742156549e-08,-2.966892534174892074e-08,-3.037532832607627600e-08,-3.108173131040363126e-08,-3.178813429473098651e-08,-3.249453727905834177e-08,-3.320094026338569702e-08,-3.390734324771305228e-08,-3.461374623204040753e-08,-3.532014921636776279e-08,-3.602655220069511805e-08,-3.673295518502247330e-08,-3.743935816934982856e-08,-3.814576115367718381e-08,-3.885216413800453907e-08,-3.955856712233189433e-08,-4.026497010665924958e-08,-4.097137309098660484e-08,-4.167777607531396009e-08,-4.238417905964131535e-08,-4.309058204396867060e-08,-4.379698502829602586e-08,-4.450338801262338112e-08 +0.000000000000000000e+00,6.844521663347533980e-10,1.368904332669506796e-09,2.053356499004260401e-09,2.737808665339014006e-09,3.422260831673767611e-09,4.106712998008520802e-09,4.791165164343273993e-09,5.475617330678027184e-09,6.160069497012780375e-09,6.844521663347533567e-09,7.528973829682286758e-09,8.213425996017039949e-09,8.897878162351793140e-09,9.582330328686546332e-09,1.026678249502129952e-08,1.095123466135605271e-08,1.163568682769080591e-08,1.232013899402555910e-08,1.300459116036031229e-08,1.368904332669506548e-08,1.437349549302981867e-08,1.505794765936457352e-08,1.574239982569932836e-08,1.642685199203408321e-08,1.711130415836883805e-08,1.779575632470359290e-08,1.848020849103834774e-08,1.916466065737310259e-08,1.984911282370785744e-08,2.053356499004261228e-08,2.121801715637736713e-08,2.190246932271212197e-08,2.258692148904687682e-08,2.327137365538163166e-08,2.395582582171638651e-08,2.464027798805114135e-08,2.532473015438589620e-08,2.600918232072065105e-08,2.669363448705540589e-08,2.737808665339016074e-08,2.806253881972491558e-08,2.874699098605967043e-08,2.943144315239442527e-08,3.011589531872918012e-08,3.080034748506393827e-08,3.148479965139869643e-08,3.216925181773345458e-08,3.285370398406821274e-08,3.353815615040297089e-08,3.422260831673772905e-08,3.490706048307248720e-08,3.559151264940724535e-08,3.627596481574200351e-08,3.696041698207676166e-08,3.764486914841151982e-08,3.832932131474627797e-08,3.901377348108103613e-08,3.969822564741579428e-08,4.038267781375055243e-08,4.106712998008531059e-08,4.175158214642006874e-08,4.243603431275482690e-08,4.312048647908958505e-08 +0.000000000000000000e+00,6.943976584329537057e-10,1.388795316865907411e-09,2.083192975298861014e-09,2.777590633731814409e-09,3.471988292164767805e-09,4.166385950597721200e-09,4.860783609030675009e-09,5.555181267463628819e-09,6.249578925896582628e-09,6.943976584329536437e-09,7.638374242762490246e-09,8.332771901195444055e-09,9.027169559628397864e-09,9.721567218061351673e-09,1.041596487649430548e-08,1.111036253492725929e-08,1.180476019336021310e-08,1.249915785179316691e-08,1.319355551022612072e-08,1.388795316865907453e-08,1.458235082709202834e-08,1.527674848552498049e-08,1.597114614395793265e-08,1.666554380239088480e-08,1.735994146082383696e-08,1.805433911925678911e-08,1.874873677768974127e-08,1.944313443612269342e-08,2.013753209455564558e-08,2.083192975298859773e-08,2.152632741142154988e-08,2.222072506985450204e-08,2.291512272828745419e-08,2.360952038672040635e-08,2.430391804515335850e-08,2.499831570358631066e-08,2.569271336201926281e-08,2.638711102045221497e-08,2.708150867888516712e-08,2.777590633731811928e-08,2.847030399575107143e-08,2.916470165418402359e-08,2.985909931261697574e-08,3.055349697104992790e-08,3.124789462948288005e-08,3.194229228791583221e-08,3.263668994634878436e-08,3.333108760478173652e-08,3.402548526321468867e-08,3.471988292164764083e-08,3.541428058008059298e-08,3.610867823851354513e-08,3.680307589694649729e-08,3.749747355537944944e-08,3.819187121381240160e-08,3.888626887224535375e-08,3.958066653067830591e-08,4.027506418911125806e-08,4.096946184754421022e-08,4.166385950597716237e-08,4.235825716441011453e-08,4.305265482284306668e-08,4.374705248127601884e-08 +0.000000000000000000e+00,6.994777046079957580e-10,1.398955409215991516e-09,2.098433113823987067e-09,2.797910818431982618e-09,3.497388523039978170e-09,4.196866227647974134e-09,4.896343932255970099e-09,5.595821636863966064e-09,6.295299341471962029e-09,6.994777046079957994e-09,7.694254750687953131e-09,8.393732455295948269e-09,9.093210159903943406e-09,9.792687864511938544e-09,1.049216556911993368e-08,1.119164327372792882e-08,1.189112097833592396e-08,1.259059868294391909e-08,1.329007638755191423e-08,1.398955409215990937e-08,1.468903179676790451e-08,1.538850950137589965e-08,1.608798720598389478e-08,1.678746491059188992e-08,1.748694261519988506e-08,1.818642031980788020e-08,1.888589802441587533e-08,1.958537572902387047e-08,2.028485343363186561e-08,2.098433113823986075e-08,2.168380884284785588e-08,2.238328654745585102e-08,2.308276425206384616e-08,2.378224195667184130e-08,2.448171966127983643e-08,2.518119736588783157e-08,2.588067507049582671e-08,2.658015277510382185e-08,2.727963047971181698e-08,2.797910818431981212e-08,2.867858588892780726e-08,2.937806359353580240e-08,3.007754129814379423e-08,3.077701900275178606e-08,3.147649670735977788e-08,3.217597441196776971e-08,3.287545211657576154e-08,3.357492982118375337e-08,3.427440752579174520e-08,3.497388523039973703e-08,3.567336293500772886e-08,3.637284063961572069e-08,3.707231834422371252e-08,3.777179604883170434e-08,3.847127375343969617e-08,3.917075145804768800e-08,3.987022916265567983e-08,4.056970686726367166e-08,4.126918457187166349e-08,4.196866227647965532e-08,4.266813998108764715e-08,4.336761768569563898e-08,4.406709539030363080e-08 +0.000000000000000000e+00,-6.844521663313464479e-10,-1.368904332662692896e-09,-2.053356498994039344e-09,-2.737808665325385792e-09,-3.422260831656732239e-09,-4.106712997988078687e-09,-4.791165164319424722e-09,-5.475617330650770756e-09,-6.160069496982116790e-09,-6.844521663313462824e-09,-7.528973829644808859e-09,-8.213425995976155720e-09,-8.897878162307502582e-09,-9.582330328638849443e-09,-1.026678249497019630e-08,-1.095123466130154317e-08,-1.163568682763289003e-08,-1.232013899396423689e-08,-1.300459116029558375e-08,-1.368904332662693061e-08,-1.437349549295827747e-08,-1.505794765928962434e-08,-1.574239982562097120e-08,-1.642685199195231806e-08,-1.711130415828366492e-08,-1.779575632461501178e-08,-1.848020849094635864e-08,-1.916466065727770550e-08,-1.984911282360905237e-08,-2.053356498994039923e-08,-2.121801715627174609e-08,-2.190246932260309295e-08,-2.258692148893443981e-08,-2.327137365526578667e-08,-2.395582582159713353e-08,-2.464027798792848040e-08,-2.532473015425982726e-08,-2.600918232059117412e-08,-2.669363448692252098e-08,-2.737808665325386784e-08,-2.806253881958521470e-08,-2.874699098591656156e-08,-2.943144315224790843e-08,-3.011589531857925529e-08,-3.080034748491059884e-08,-3.148479965124194239e-08,-3.216925181757328595e-08,-3.285370398390462950e-08,-3.353815615023597305e-08,-3.422260831656731660e-08,-3.490706048289866016e-08,-3.559151264923000371e-08,-3.627596481556134726e-08,-3.696041698189269081e-08,-3.764486914822403437e-08,-3.832932131455537792e-08,-3.901377348088672147e-08,-3.969822564721806503e-08,-4.038267781354940858e-08,-4.106712997988075213e-08,-4.175158214621209568e-08,-4.243603431254343924e-08,-4.312048647887478279e-08 +0.000000000000000000e+00,-6.943976584274254509e-10,-1.388795316854850902e-09,-2.083192975282276456e-09,-2.777590633709702217e-09,-3.471988292137127978e-09,-4.166385950564553739e-09,-4.860783608991979500e-09,-5.555181267419405262e-09,-6.249578925846831023e-09,-6.943976584274256784e-09,-7.638374242701682545e-09,-8.332771901129109133e-09,-9.027169559556535721e-09,-9.721567217983962310e-09,-1.041596487641138890e-08,-1.111036253483881549e-08,-1.180476019326624207e-08,-1.249915785169366866e-08,-1.319355551012109525e-08,-1.388795316854852184e-08,-1.458235082697594843e-08,-1.527674848540337502e-08,-1.597114614383080160e-08,-1.666554380225822819e-08,-1.735994146068565478e-08,-1.805433911911308137e-08,-1.874873677754050796e-08,-1.944313443596793455e-08,-2.013753209439536113e-08,-2.083192975282278772e-08,-2.152632741125021431e-08,-2.222072506967764090e-08,-2.291512272810506749e-08,-2.360952038653249407e-08,-2.430391804495992066e-08,-2.499831570338734725e-08,-2.569271336181477384e-08,-2.638711102024220043e-08,-2.708150867866962702e-08,-2.777590633709705360e-08,-2.847030399552448019e-08,-2.916470165395190678e-08,-2.985909931237933668e-08,-3.055349697080676988e-08,-3.124789462923420309e-08,-3.194229228766163630e-08,-3.263668994608906950e-08,-3.333108760451650271e-08,-3.402548526294393591e-08,-3.471988292137136912e-08,-3.541428057979880232e-08,-3.610867823822623553e-08,-3.680307589665366874e-08,-3.749747355508110194e-08,-3.819187121350853515e-08,-3.888626887193596835e-08,-3.958066653036340156e-08,-4.027506418879083476e-08,-4.096946184721826797e-08,-4.166385950564570118e-08,-4.235825716407313438e-08,-4.305265482250056759e-08,-4.374705248092800079e-08 +0.000000000000000000e+00,-6.994777046041979650e-10,-1.398955409208395930e-09,-2.098433113812593895e-09,-2.797910818416791860e-09,-3.497388523020989825e-09,-4.196866227625187790e-09,-4.896343932229385342e-09,-5.595821636833582893e-09,-6.295299341437780444e-09,-6.994777046041977996e-09,-7.694254750646175547e-09,-8.393732455250373926e-09,-9.093210159854572304e-09,-9.792687864458770683e-09,-1.049216556906296906e-08,-1.119164327366716744e-08,-1.189112097827136582e-08,-1.259059868287556420e-08,-1.329007638747976258e-08,-1.398955409208396095e-08,-1.468903179668815933e-08,-1.538850950129235771e-08,-1.608798720589655444e-08,-1.678746491050075116e-08,-1.748694261510494788e-08,-1.818642031970914461e-08,-1.888589802431334133e-08,-1.958537572891753806e-08,-2.028485343352173478e-08,-2.098433113812593151e-08,-2.168380884273012823e-08,-2.238328654733432495e-08,-2.308276425193852168e-08,-2.378224195654271840e-08,-2.448171966114691513e-08,-2.518119736575111185e-08,-2.588067507035530858e-08,-2.658015277495950530e-08,-2.727963047956370202e-08,-2.797910818416789875e-08,-2.867858588877209547e-08,-2.937806359337629220e-08,-3.007754129798048892e-08,-3.077701900258468234e-08,-3.147649670718887575e-08,-3.217597441179306917e-08,-3.287545211639726258e-08,-3.357492982100145600e-08,-3.427440752560564941e-08,-3.497388523020984283e-08,-3.567336293481403625e-08,-3.637284063941822966e-08,-3.707231834402242308e-08,-3.777179604862661649e-08,-3.847127375323080991e-08,-3.917075145783500332e-08,-3.987022916243919674e-08,-4.056970686704339015e-08,-4.126918457164758357e-08,-4.196866227625177698e-08,-4.266813998085597040e-08,-4.336761768546016382e-08,-4.406709539006435723e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.763057455006733815e-10,1.352611491001346763e-09,2.028917236502020041e-09,2.705222982002693112e-09,3.381528727503366184e-09,4.057834473004039255e-09,4.734140218504712326e-09,5.410445964005385398e-09,6.086751709506058469e-09,6.763057455006731540e-09,7.439363200507404612e-09,8.115668946008076856e-09,8.791974691508749927e-09,9.468280437009422998e-09,1.014458618251009607e-08,1.082089192801076914e-08,1.149719767351144221e-08,1.217350341901211528e-08,1.284980916451278836e-08,1.352611491001346143e-08,1.420242065551413450e-08,1.487872640101480757e-08,1.555503214651548064e-08,1.623133789201615371e-08,1.690764363751682678e-08,1.758394938301749985e-08,1.826025512851817293e-08,1.893656087401884600e-08,1.961286661951951907e-08,2.028917236502019214e-08,2.096547811052086521e-08,2.164178385602153828e-08,2.231808960152221135e-08,2.299439534702288442e-08,2.367070109252355750e-08,2.434700683802423057e-08,2.502331258352490364e-08,2.569961832902557671e-08,2.637592407452624978e-08,2.705222982002692285e-08,2.772853556552759592e-08,2.840484131102826900e-08,2.908114705652894207e-08,2.975745280202961514e-08,3.043375854753029152e-08,3.111006429303096790e-08,3.178637003853164428e-08,3.246267578403232066e-08,3.313898152953299704e-08,3.381528727503367342e-08,3.449159302053434980e-08,3.516789876603502618e-08,3.584420451153570256e-08,3.652051025703637894e-08,3.719681600253705532e-08,3.787312174803773170e-08,3.854942749353840808e-08,3.922573323903908446e-08,3.990203898453976084e-08,4.057834473004043722e-08,4.125465047554111360e-08,4.193095622104178998e-08,4.260726196654246636e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.763057454993433785e-10,-1.352611490998686757e-09,-2.028917236498030135e-09,-2.705222981997373514e-09,-3.381528727496716892e-09,-4.057834472996060271e-09,-4.734140218495404063e-09,-5.410445963994747855e-09,-6.086751709494091647e-09,-6.763057454993435439e-09,-7.439363200492779231e-09,-8.115668945992122196e-09,-8.791974691491465161e-09,-9.468280436990808126e-09,-1.014458618249015109e-08,-1.082089192798949406e-08,-1.149719767348883702e-08,-1.217350341898817999e-08,-1.284980916448752295e-08,-1.352611490998686592e-08,-1.420242065548620888e-08,-1.487872640098555185e-08,-1.555503214648489481e-08,-1.623133789198423777e-08,-1.690764363748358074e-08,-1.758394938298292370e-08,-1.826025512848226667e-08,-1.893656087398160963e-08,-1.961286661948095260e-08,-2.028917236498029556e-08,-2.096547811047963853e-08,-2.164178385597898149e-08,-2.231808960147832446e-08,-2.299439534697766742e-08,-2.367070109247701039e-08,-2.434700683797635335e-08,-2.502331258347569632e-08,-2.569961832897503928e-08,-2.637592407447438225e-08,-2.705222981997372521e-08,-2.772853556547306818e-08,-2.840484131097241114e-08,-2.908114705647175411e-08,-2.975745280197109707e-08,-3.043375854747044335e-08,-3.111006429296978962e-08,-3.178637003846913589e-08,-3.246267578396848217e-08,-3.313898152946782844e-08,-3.381528727496717471e-08,-3.449159302046652099e-08,-3.516789876596586726e-08,-3.584420451146521354e-08,-3.652051025696455981e-08,-3.719681600246390608e-08,-3.787312174796325236e-08,-3.854942749346259863e-08,-3.922573323896194490e-08,-3.990203898446129118e-08,-4.057834472996063745e-08,-4.125465047545998372e-08,-4.193095622095933000e-08,-4.260726196645867627e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.477748953319462529e-10,1.295549790663892506e-09,1.943324685995838552e-09,2.591099581327784598e-09,3.238874476659730644e-09,3.886649371991677104e-09,4.534424267323623564e-09,5.182199162655570023e-09,5.829974057987516483e-09,6.477748953319462943e-09,7.125523848651409403e-09,7.773298743983355862e-09,8.421073639315302322e-09,9.068848534647248782e-09,9.716623429979195242e-09,1.036439832531114170e-08,1.101217322064308816e-08,1.165994811597503462e-08,1.230772301130698108e-08,1.295549790663892754e-08,1.360327280197087400e-08,1.425104769730282046e-08,1.489882259263476692e-08,1.554659748796671503e-08,1.619437238329866315e-08,1.684214727863061126e-08,1.748992217396255938e-08,1.813769706929450749e-08,1.878547196462645560e-08,1.943324685995840372e-08,2.008102175529035183e-08,2.072879665062229995e-08,2.137657154595424806e-08,2.202434644128619617e-08,2.267212133661814429e-08,2.331989623195009240e-08,2.396767112728204052e-08,2.461544602261398863e-08,2.526322091794593674e-08,2.591099581327788486e-08,2.655877070860983297e-08,2.720654560394178109e-08,2.785432049927372920e-08,2.850209539460567732e-08,2.914987028993762543e-08,2.979764518526957354e-08,3.044542008060151835e-08,3.109319497593346315e-08,3.174096987126540796e-08,3.238874476659735276e-08,3.303651966192929757e-08,3.368429455726124238e-08,3.433206945259318718e-08,3.497984434792513199e-08,3.562761924325707679e-08,3.627539413858902160e-08,3.692316903392096640e-08,3.757094392925291121e-08,3.821871882458485601e-08,3.886649371991680082e-08,3.951426861524874562e-08,4.016204351058069043e-08,4.080981840591263523e-08 +0.000000000000000000e+00,6.389033074428940726e-10,1.277806614885788145e-09,1.916709922328682321e-09,2.555613229771576704e-09,3.194516537214471087e-09,3.833419844657365469e-09,4.472323152100259439e-09,5.111226459543153408e-09,5.750129766986047377e-09,6.389033074428941346e-09,7.027936381871835315e-09,7.666839689314729285e-09,8.305742996757623254e-09,8.944646304200517223e-09,9.583549611643411192e-09,1.022245291908630516e-08,1.086135622652919913e-08,1.150025953397209310e-08,1.213916284141498707e-08,1.277806614885788104e-08,1.341696945630077501e-08,1.405587276374366898e-08,1.469477607118656295e-08,1.533367937862945526e-08,1.597258268607234758e-08,1.661148599351523989e-08,1.725038930095813220e-08,1.788929260840102452e-08,1.852819591584391683e-08,1.916709922328680915e-08,1.980600253072970146e-08,2.044490583817259378e-08,2.108380914561548609e-08,2.172271245305837841e-08,2.236161576050127072e-08,2.300051906794416304e-08,2.363942237538705535e-08,2.427832568282994767e-08,2.491722899027283998e-08,2.555613229771573230e-08,2.619503560515862461e-08,2.683393891260151693e-08,2.747284222004440924e-08,2.811174552748730156e-08,2.875064883493019387e-08,2.938955214237308619e-08,3.002845544981597850e-08,3.066735875725887082e-08,3.130626206470176313e-08,3.194516537214465545e-08,3.258406867958754776e-08,3.322297198703044008e-08,3.386187529447333239e-08,3.450077860191622471e-08,3.513968190935911702e-08,3.577858521680200933e-08,3.641748852424490165e-08,3.705639183168779396e-08,3.769529513913068628e-08,3.833419844657357859e-08,3.897310175401647091e-08,3.961200506145936322e-08,4.025090836890225554e-08 +0.000000000000000000e+00,6.459600075590799204e-10,1.291920015118159841e-09,1.937880022677239554e-09,2.583840030236319268e-09,3.229800037795398982e-09,3.875760045354479109e-09,4.521720052913559236e-09,5.167680060472639363e-09,5.813640068031719490e-09,6.459600075590799618e-09,7.105560083149879745e-09,7.751520090708959872e-09,8.397480098268040826e-09,9.043440105827121781e-09,9.689400113386202735e-09,1.033536012094528369e-08,1.098132012850436464e-08,1.162728013606344560e-08,1.227324014362252655e-08,1.291920015118160751e-08,1.356516015874068846e-08,1.421112016629976942e-08,1.485708017385885037e-08,1.550304018141792967e-08,1.614900018897700897e-08,1.679496019653608827e-08,1.744092020409516757e-08,1.808688021165424687e-08,1.873284021921332617e-08,1.937880022677240547e-08,2.002476023433148477e-08,2.067072024189056407e-08,2.131668024944964337e-08,2.196264025700872267e-08,2.260860026456780197e-08,2.325456027212688127e-08,2.390052027968596057e-08,2.454648028724503987e-08,2.519244029480411917e-08,2.583840030236319847e-08,2.648436030992227777e-08,2.713032031748135707e-08,2.777628032504043637e-08,2.842224033259951567e-08,2.906820034015859497e-08,2.971416034771767427e-08,3.036012035527675357e-08,3.100608036283583287e-08,3.165204037039491217e-08,3.229800037795399147e-08,3.294396038551307077e-08,3.358992039307215007e-08,3.423588040063122937e-08,3.488184040819030867e-08,3.552780041574938797e-08,3.617376042330846727e-08,3.681972043086754657e-08,3.746568043842662587e-08,3.811164044598570517e-08,3.875760045354478447e-08,3.940356046110386377e-08,4.004952046866294307e-08,4.069548047622202237e-08 +0.000000000000000000e+00,-6.477748953304413012e-10,-1.295549790660882602e-09,-1.943324685991323800e-09,-2.591099581321764791e-09,-3.238874476652205782e-09,-3.886649371982646773e-09,-4.534424267313087764e-09,-5.182199162643528755e-09,-5.829974057973969746e-09,-6.477748953304410737e-09,-7.125523848634851728e-09,-7.773298743965291892e-09,-8.421073639295731229e-09,-9.068848534626170565e-09,-9.716623429956609902e-09,-1.036439832528704924e-08,-1.101217322061748858e-08,-1.165994811594792791e-08,-1.230772301127836725e-08,-1.295549790660880659e-08,-1.360327280193924592e-08,-1.425104769726968526e-08,-1.489882259260012460e-08,-1.554659748793056393e-08,-1.619437238326100327e-08,-1.684214727859144261e-08,-1.748992217392188194e-08,-1.813769706925232128e-08,-1.878547196458276062e-08,-1.943324685991319995e-08,-2.008102175524363929e-08,-2.072879665057407863e-08,-2.137657154590451796e-08,-2.202434644123495730e-08,-2.267212133656539664e-08,-2.331989623189583597e-08,-2.396767112722627531e-08,-2.461544602255671464e-08,-2.526322091788715398e-08,-2.591099581321759332e-08,-2.655877070854803265e-08,-2.720654560387847199e-08,-2.785432049920891133e-08,-2.850209539453935066e-08,-2.914987028986979000e-08,-2.979764518520022934e-08,-3.044542008053067198e-08,-3.109319497586111463e-08,-3.174096987119155727e-08,-3.238874476652199992e-08,-3.303651966185244257e-08,-3.368429455718288521e-08,-3.433206945251332786e-08,-3.497984434784377050e-08,-3.562761924317421315e-08,-3.627539413850465579e-08,-3.692316903383509844e-08,-3.757094392916554108e-08,-3.821871882449598373e-08,-3.886649371982642637e-08,-3.951426861515686902e-08,-4.016204351048731166e-08,-4.080981840581775431e-08 +0.000000000000000000e+00,-6.389033074428974847e-10,-1.277806614885794969e-09,-1.916709922328692661e-09,-2.555613229771590352e-09,-3.194516537214488044e-09,-3.833419844657385322e-09,-4.472323152100282600e-09,-5.111226459543179878e-09,-5.750129766986077156e-09,-6.389033074428974433e-09,-7.027936381871871711e-09,-7.666839689314768989e-09,-8.305742996757666267e-09,-8.944646304200563545e-09,-9.583549611643460823e-09,-1.022245291908635810e-08,-1.086135622652925538e-08,-1.150025953397215266e-08,-1.213916284141504993e-08,-1.277806614885794721e-08,-1.341696945630084449e-08,-1.405587276374374177e-08,-1.469477607118663905e-08,-1.533367937862953467e-08,-1.597258268607243029e-08,-1.661148599351532592e-08,-1.725038930095822154e-08,-1.788929260840111716e-08,-1.852819591584401279e-08,-1.916709922328690841e-08,-1.980600253072980403e-08,-2.044490583817269966e-08,-2.108380914561559528e-08,-2.172271245305849091e-08,-2.236161576050138653e-08,-2.300051906794428215e-08,-2.363942237538717778e-08,-2.427832568283007340e-08,-2.491722899027296902e-08,-2.555613229771586465e-08,-2.619503560515876027e-08,-2.683393891260165589e-08,-2.747284222004455152e-08,-2.811174552748744714e-08,-2.875064883493034276e-08,-2.938955214237323839e-08,-3.002845544981613732e-08,-3.066735875725903625e-08,-3.130626206470193518e-08,-3.194516537214483412e-08,-3.258406867958773305e-08,-3.322297198703063198e-08,-3.386187529447353091e-08,-3.450077860191642985e-08,-3.513968190935932878e-08,-3.577858521680222771e-08,-3.641748852424512664e-08,-3.705639183168802558e-08,-3.769529513913092451e-08,-3.833419844657382344e-08,-3.897310175401672237e-08,-3.961200506145962130e-08,-4.025090836890252024e-08 +0.000000000000000000e+00,-6.459600075419921267e-10,-1.291920015083984253e-09,-1.937880022625976277e-09,-2.583840030167968093e-09,-3.229800037709959910e-09,-3.875760045251951726e-09,-4.521720052793943129e-09,-5.167680060335934532e-09,-5.813640067877925935e-09,-6.459600075419917338e-09,-7.105560082961908741e-09,-7.751520090503900144e-09,-8.397480098045891547e-09,-9.043440105587882950e-09,-9.689400113129874353e-09,-1.033536012067186576e-08,-1.098132012821385716e-08,-1.162728013575584856e-08,-1.227324014329783996e-08,-1.291920015083983137e-08,-1.356516015838182277e-08,-1.421112016592381417e-08,-1.485708017346580558e-08,-1.550304018100779698e-08,-1.614900018854978673e-08,-1.679496019609177648e-08,-1.744092020363376622e-08,-1.808688021117575597e-08,-1.873284021871774572e-08,-1.937880022625973547e-08,-2.002476023380172522e-08,-2.067072024134371497e-08,-2.131668024888570472e-08,-2.196264025642769446e-08,-2.260860026396968421e-08,-2.325456027151167396e-08,-2.390052027905366371e-08,-2.454648028659565346e-08,-2.519244029413764321e-08,-2.583840030167963296e-08,-2.648436030922162270e-08,-2.713032031676361245e-08,-2.777628032430560220e-08,-2.842224033184759195e-08,-2.906820033938958170e-08,-2.971416034693157145e-08,-3.036012035447356120e-08,-3.100608036201554764e-08,-3.165204036955753408e-08,-3.229800037709952052e-08,-3.294396038464150696e-08,-3.358992039218349340e-08,-3.423588039972547983e-08,-3.488184040726746627e-08,-3.552780041480945271e-08,-3.617376042235143915e-08,-3.681972042989342559e-08,-3.746568043743541203e-08,-3.811164044497739847e-08,-3.875760045251938491e-08,-3.940356046006137135e-08,-4.004952046760335779e-08,-4.069548047514534423e-08 +0.000000000000000000e+00,6.616148266587359155e-10,1.323229653317471831e-09,1.984844479976207850e-09,2.646459306634944075e-09,3.308074133293680301e-09,3.969688959952416527e-09,4.631303786611153166e-09,5.292918613269889805e-09,5.954533439928626445e-09,6.616148266587363084e-09,7.277763093246099723e-09,7.939377919904836362e-09,8.600992746563573002e-09,9.262607573222309641e-09,9.924222399881046280e-09,1.058583722653978292e-08,1.124745205319851956e-08,1.190906687985725620e-08,1.257068170651599284e-08,1.323229653317472948e-08,1.389391135983346612e-08,1.455552618649220275e-08,1.521714101315093939e-08,1.587875583980967603e-08,1.654037066646841267e-08,1.720198549312714931e-08,1.786360031978588595e-08,1.852521514644462259e-08,1.918682997310335923e-08,1.984844479976209587e-08,2.051005962642083251e-08,2.117167445307956915e-08,2.183328927973830579e-08,2.249490410639704243e-08,2.315651893305577907e-08,2.381813375971451570e-08,2.447974858637325234e-08,2.514136341303198898e-08,2.580297823969072562e-08,2.646459306634946226e-08,2.712620789300819890e-08,2.778782271966693554e-08,2.844943754632567218e-08,2.911105237298440882e-08,2.977266719964314546e-08,3.043428202630187879e-08,3.109589685296061212e-08,3.175751167961934545e-08,3.241912650627807878e-08,3.308074133293681211e-08,3.374235615959554544e-08,3.440397098625427877e-08,3.506558581291301210e-08,3.572720063957174543e-08,3.638881546623047876e-08,3.705043029288921209e-08,3.771204511954794542e-08,3.837365994620667875e-08,3.903527477286541209e-08,3.969688959952414542e-08,4.035850442618287875e-08,4.102011925284161208e-08,4.168173407950034541e-08 +0.000000000000000000e+00,6.551066306072946088e-10,1.310213261214589218e-09,1.965319891821883620e-09,2.620426522429178022e-09,3.275533153036472423e-09,3.930639783643767239e-09,4.585746414251062055e-09,5.240853044858356870e-09,5.895959675465651686e-09,6.551066306072946501e-09,7.206172936680241317e-09,7.861279567287536132e-09,8.516386197894830948e-09,9.171492828502125764e-09,9.826599459109420579e-09,1.048170608971671539e-08,1.113681272032401021e-08,1.179191935093130503e-08,1.244702598153859984e-08,1.310213261214589466e-08,1.375723924275318947e-08,1.441234587336048429e-08,1.506745250396777910e-08,1.572255913457507557e-08,1.637766576518237204e-08,1.703277239578966851e-08,1.768787902639696498e-08,1.834298565700426145e-08,1.899809228761155792e-08,1.965319891821885439e-08,2.030830554882615086e-08,2.096341217943344733e-08,2.161851881004074380e-08,2.227362544064804027e-08,2.292873207125533674e-08,2.358383870186263321e-08,2.423894533246992968e-08,2.489405196307722615e-08,2.554915859368452262e-08,2.620426522429181909e-08,2.685937185489911556e-08,2.751447848550641203e-08,2.816958511611370850e-08,2.882469174672100497e-08,2.947979837732830144e-08,3.013490500793559791e-08,3.079001163854289438e-08,3.144511826915019085e-08,3.210022489975748732e-08,3.275533153036478379e-08,3.341043816097208026e-08,3.406554479157937673e-08,3.472065142218667320e-08,3.537575805279396967e-08,3.603086468340126614e-08,3.668597131400856261e-08,3.734107794461585908e-08,3.799618457522315555e-08,3.865129120583045202e-08,3.930639783643774849e-08,3.996150446704504496e-08,4.061661109765234143e-08,4.127171772825963790e-08 +0.000000000000000000e+00,6.609124782522645907e-10,1.321824956504529181e-09,1.982737434756793565e-09,2.643649913009057949e-09,3.304562391261322333e-09,3.965474869513587131e-09,4.626387347765851928e-09,5.287299826018116726e-09,5.948212304270381523e-09,6.609124782522646321e-09,7.270037260774911118e-09,7.930949739027175916e-09,8.591862217279439886e-09,9.252774695531703856e-09,9.913687173783967827e-09,1.057459965203623180e-08,1.123551213028849577e-08,1.189642460854075974e-08,1.255733708679302371e-08,1.321824956504528768e-08,1.387916204329755165e-08,1.454007452154981562e-08,1.520098699980207959e-08,1.586189947805434191e-08,1.652281195630660422e-08,1.718372443455886654e-08,1.784463691281112885e-08,1.850554939106339117e-08,1.916646186931565349e-08,1.982737434756791580e-08,2.048828682582017812e-08,2.114919930407244043e-08,2.181011178232470275e-08,2.247102426057696507e-08,2.313193673882922738e-08,2.379284921708148970e-08,2.445376169533375201e-08,2.511467417358601433e-08,2.577558665183827665e-08,2.643649913009053896e-08,2.709741160834280128e-08,2.775832408659506359e-08,2.841923656484732591e-08,2.908014904309958822e-08,2.974106152135185054e-08,3.040197399960411286e-08,3.106288647785637848e-08,3.172379895610864411e-08,3.238471143436090973e-08,3.304562391261317536e-08,3.370653639086544098e-08,3.436744886911770660e-08,3.502836134736997223e-08,3.568927382562223785e-08,3.635018630387450348e-08,3.701109878212676910e-08,3.767201126037903473e-08,3.833292373863130035e-08,3.899383621688356598e-08,3.965474869513583160e-08,4.031566117338809723e-08,4.097657365164036285e-08,4.163748612989262848e-08 +0.000000000000000000e+00,-6.616148266563784507e-10,-1.323229653312756901e-09,-1.984844479969135456e-09,-2.646459306625514216e-09,-3.308074133281892977e-09,-3.969688959938271738e-09,-4.631303786594650913e-09,-5.292918613251030087e-09,-5.954533439907409262e-09,-6.616148266563788436e-09,-7.277763093220167611e-09,-7.939377919876546785e-09,-8.600992746532925960e-09,-9.262607573189305134e-09,-9.924222399845684309e-09,-1.058583722650206348e-08,-1.124745205315844266e-08,-1.190906687981482183e-08,-1.257068170647120101e-08,-1.323229653312758018e-08,-1.389391135978395936e-08,-1.455552618644033853e-08,-1.521714101309671605e-08,-1.587875583975309357e-08,-1.654037066640947109e-08,-1.720198549306584861e-08,-1.786360031972222613e-08,-1.852521514637860365e-08,-1.918682997303498117e-08,-1.984844479969135869e-08,-2.051005962634773621e-08,-2.117167445300411373e-08,-2.183328927966049125e-08,-2.249490410631686877e-08,-2.315651893297324629e-08,-2.381813375962962381e-08,-2.447974858628600133e-08,-2.514136341294237885e-08,-2.580297823959875637e-08,-2.646459306625513389e-08,-2.712620789291151141e-08,-2.778782271956788893e-08,-2.844943754622426645e-08,-2.911105237288064397e-08,-2.977266719953702149e-08,-3.043428202619339901e-08,-3.109589685284977653e-08,-3.175751167950615405e-08,-3.241912650616253157e-08,-3.308074133281890909e-08,-3.374235615947528661e-08,-3.440397098613166413e-08,-3.506558581278804166e-08,-3.572720063944441918e-08,-3.638881546610079670e-08,-3.705043029275717422e-08,-3.771204511941355174e-08,-3.837365994606992926e-08,-3.903527477272630678e-08,-3.969688959938268430e-08,-4.035850442603906182e-08,-4.102011925269543934e-08,-4.168173407935181686e-08 +0.000000000000000000e+00,-6.551066306051630677e-10,-1.310213261210326135e-09,-1.965319891815489100e-09,-2.620426522420651857e-09,-3.275533153025814615e-09,-3.930639783630977372e-09,-4.585746414236139716e-09,-5.240853044841302060e-09,-5.895959675446464404e-09,-6.551066306051626748e-09,-7.206172936656789092e-09,-7.861279567261951436e-09,-8.516386197867113780e-09,-9.171492828472276124e-09,-9.826599459077438468e-09,-1.048170608968260081e-08,-1.113681272028776316e-08,-1.179191935089292550e-08,-1.244702598149808784e-08,-1.310213261210325019e-08,-1.375723924270841253e-08,-1.441234587331357488e-08,-1.506745250391873722e-08,-1.572255913452389956e-08,-1.637766576512906191e-08,-1.703277239573422425e-08,-1.768787902633938660e-08,-1.834298565694454894e-08,-1.899809228754971128e-08,-1.965319891815487363e-08,-2.030830554876003597e-08,-2.096341217936519832e-08,-2.161851880997036066e-08,-2.227362544057552300e-08,-2.292873207118068535e-08,-2.358383870178584769e-08,-2.423894533239101003e-08,-2.489405196299617238e-08,-2.554915859360133472e-08,-2.620426522420649707e-08,-2.685937185481165941e-08,-2.751447848541682175e-08,-2.816958511602198410e-08,-2.882469174662714644e-08,-2.947979837723230879e-08,-3.013490500783747444e-08,-3.079001163844264009e-08,-3.144511826904780574e-08,-3.210022489965297140e-08,-3.275533153025813705e-08,-3.341043816086330270e-08,-3.406554479146846836e-08,-3.472065142207363401e-08,-3.537575805267879966e-08,-3.603086468328396531e-08,-3.668597131388913097e-08,-3.734107794449429662e-08,-3.799618457509946227e-08,-3.865129120570462792e-08,-3.930639783630979358e-08,-3.996150446691495923e-08,-4.061661109752012488e-08,-4.127171772812529053e-08 +0.000000000000000000e+00,-6.609124782403292017e-10,-1.321824956480658403e-09,-1.982737434720987398e-09,-2.643649912961316393e-09,-3.304562391201645388e-09,-3.965474869441974796e-09,-4.626387347682304205e-09,-5.287299825922633613e-09,-5.948212304162963022e-09,-6.609124782403292430e-09,-7.270037260643621839e-09,-7.930949738883951247e-09,-8.591862217124280656e-09,-9.252774695364610064e-09,-9.913687173604939472e-09,-1.057459965184526888e-08,-1.123551213008559829e-08,-1.189642460832592770e-08,-1.255733708656625711e-08,-1.321824956480658651e-08,-1.387916204304691592e-08,-1.454007452128724533e-08,-1.520098699952757474e-08,-1.586189947776790580e-08,-1.652281195600823687e-08,-1.718372443424856793e-08,-1.784463691248889899e-08,-1.850554939072923005e-08,-1.916646186896956112e-08,-1.982737434720989218e-08,-2.048828682545022324e-08,-2.114919930369055431e-08,-2.181011178193088537e-08,-2.247102426017121643e-08,-2.313193673841154749e-08,-2.379284921665187856e-08,-2.445376169489220962e-08,-2.511467417313254068e-08,-2.577558665137287175e-08,-2.643649912961320281e-08,-2.709741160785353387e-08,-2.775832408609386493e-08,-2.841923656433419600e-08,-2.908014904257452706e-08,-2.974106152081485812e-08,-3.040197399905518918e-08,-3.106288647729552356e-08,-3.172379895553585793e-08,-3.238471143377619230e-08,-3.304562391201652667e-08,-3.370653639025686104e-08,-3.436744886849719541e-08,-3.502836134673752979e-08,-3.568927382497786416e-08,-3.635018630321819853e-08,-3.701109878145853290e-08,-3.767201125969886727e-08,-3.833292373793920164e-08,-3.899383621617953601e-08,-3.965474869441987039e-08,-4.031566117266020476e-08,-4.097657365090053913e-08,-4.163748612914087350e-08 +0.000000000000000000e+00,6.720793088333368609e-10,1.344158617666673722e-09,2.016237926500010790e-09,2.688317235333347857e-09,3.360396544166684925e-09,4.032475853000021579e-09,4.704555161833358233e-09,5.376634470666694887e-09,6.048713779500031541e-09,6.720793088333368195e-09,7.392872397166704850e-09,8.064951706000041504e-09,8.737031014833377331e-09,9.409110323666713158e-09,1.008118963250004898e-08,1.075326894133338481e-08,1.142534825016672064e-08,1.209742755900005647e-08,1.276950686783339229e-08,1.344158617666672812e-08,1.411366548550006395e-08,1.478574479433339977e-08,1.545782410316673560e-08,1.612990341200007308e-08,1.680198272083341056e-08,1.747406202966674804e-08,1.814614133850008553e-08,1.881822064733342301e-08,1.949029995616676049e-08,2.016237926500009797e-08,2.083445857383343545e-08,2.150653788266677293e-08,2.217861719150011041e-08,2.285069650033344789e-08,2.352277580916678538e-08,2.419485511800012286e-08,2.486693442683346034e-08,2.553901373566679782e-08,2.621109304450013530e-08,2.688317235333347278e-08,2.755525166216681026e-08,2.822733097100014774e-08,2.889941027983348523e-08,2.957148958866682271e-08,3.024356889750016019e-08,3.091564820633349767e-08,3.158772751516683515e-08,3.225980682400017263e-08,3.293188613283351011e-08,3.360396544166684759e-08,3.427604475050018508e-08,3.494812405933352256e-08,3.562020336816686004e-08,3.629228267700019752e-08,3.696436198583353500e-08,3.763644129466687248e-08,3.830852060350020996e-08,3.898059991233354745e-08,3.965267922116688493e-08,4.032475853000022241e-08,4.099683783883355989e-08,4.166891714766689737e-08,4.234099645650023485e-08 +0.000000000000000000e+00,6.665307130157478281e-10,1.333061426031495656e-09,1.999592139047243588e-09,2.666122852062991726e-09,3.332653565078739864e-09,3.999184278094488002e-09,4.665714991110235727e-09,5.332245704125983452e-09,5.998776417141731176e-09,6.665307130157478901e-09,7.331837843173226626e-09,7.998368556188974350e-09,8.664899269204722075e-09,9.331429982220469800e-09,9.997960695236217524e-09,1.066449140825196525e-08,1.133102212126771297e-08,1.199755283428346070e-08,1.266408354729920842e-08,1.333061426031495615e-08,1.399714497333070387e-08,1.466367568634645160e-08,1.533020639936219932e-08,1.599673711237794539e-08,1.666326782539369146e-08,1.732979853840943753e-08,1.799632925142518360e-08,1.866285996444092967e-08,1.932939067745667574e-08,1.999592139047242181e-08,2.066245210348816788e-08,2.132898281650391395e-08,2.199551352951966002e-08,2.266204424253540610e-08,2.332857495555115217e-08,2.399510566856689824e-08,2.466163638158264431e-08,2.532816709459839038e-08,2.599469780761413645e-08,2.666122852062988252e-08,2.732775923364562859e-08,2.799428994666137466e-08,2.866082065967712073e-08,2.932735137269286680e-08,2.999388208570860956e-08,3.066041279872435232e-08,3.132694351174009508e-08,3.199347422475583784e-08,3.266000493777158061e-08,3.332653565078732337e-08,3.399306636380306613e-08,3.465959707681880889e-08,3.532612778983455165e-08,3.599265850285029441e-08,3.665918921586603718e-08,3.732571992888177994e-08,3.799225064189752270e-08,3.865878135491326546e-08,3.932531206792900822e-08,3.999184278094475098e-08,4.065837349396049375e-08,4.132490420697623651e-08,4.199143491999197927e-08 +0.000000000000000000e+00,6.734504817275123778e-10,1.346900963455024756e-09,2.020351445182536927e-09,2.693801926910049098e-09,3.367252408637561269e-09,4.040702890365073853e-09,4.714153372092586438e-09,5.387603853820099023e-09,6.061054335547611607e-09,6.734504817275124192e-09,7.407955299002636777e-09,8.081405780730149361e-09,8.754856262457661946e-09,9.428306744185174531e-09,1.010175722591268712e-08,1.077520770764019970e-08,1.144865818936771228e-08,1.212210867109522487e-08,1.279555915282273745e-08,1.346900963455025004e-08,1.414246011627776262e-08,1.481591059800527521e-08,1.548936107973278614e-08,1.616281156146029541e-08,1.683626204318780469e-08,1.750971252491531397e-08,1.818316300664282324e-08,1.885661348837033252e-08,1.953006397009784179e-08,2.020351445182535107e-08,2.087696493355286035e-08,2.155041541528036962e-08,2.222386589700787890e-08,2.289731637873538817e-08,2.357076686046289745e-08,2.424421734219040672e-08,2.491766782391791600e-08,2.559111830564542528e-08,2.626456878737293455e-08,2.693801926910044383e-08,2.761146975082795310e-08,2.828492023255546238e-08,2.895837071428297166e-08,2.963182119601048093e-08,3.030527167773799021e-08,3.097872215946549948e-08,3.165217264119300876e-08,3.232562312292051804e-08,3.299907360464802731e-08,3.367252408637553659e-08,3.434597456810304586e-08,3.501942504983055514e-08,3.569287553155806442e-08,3.636632601328557369e-08,3.703977649501308297e-08,3.771322697674059224e-08,3.838667745846810152e-08,3.906012794019561079e-08,3.973357842192312007e-08,4.040702890365062935e-08,4.108047938537813862e-08,4.175392986710564790e-08,4.242738034883315717e-08 +0.000000000000000000e+00,-6.720793088322035201e-10,-1.344158617664407040e-09,-2.016237926496610664e-09,-2.688317235328814494e-09,-3.360396544161018324e-09,-4.032475852993222154e-09,-4.704555161825426398e-09,-5.376634470657630642e-09,-6.048713779489834886e-09,-6.720793088322039130e-09,-7.392872397154243374e-09,-8.064951705986447618e-09,-8.737031014818651861e-09,-9.409110323650856105e-09,-1.008118963248306035e-08,-1.075326894131526459e-08,-1.142534825014746884e-08,-1.209742755897967308e-08,-1.276950686781187732e-08,-1.344158617664408157e-08,-1.411366548547628581e-08,-1.478574479430849006e-08,-1.545782410314069595e-08,-1.612990341197290185e-08,-1.680198272080510775e-08,-1.747406202963731365e-08,-1.814614133846951955e-08,-1.881822064730172545e-08,-1.949029995613393134e-08,-2.016237926496613724e-08,-2.083445857379834314e-08,-2.150653788263054904e-08,-2.217861719146275494e-08,-2.285069650029496083e-08,-2.352277580912716673e-08,-2.419485511795937263e-08,-2.486693442679157853e-08,-2.553901373562378443e-08,-2.621109304445599033e-08,-2.688317235328819622e-08,-2.755525166212040212e-08,-2.822733097095260802e-08,-2.889941027978481392e-08,-2.957148958861701982e-08,-3.024356889744922571e-08,-3.091564820628143161e-08,-3.158772751511363751e-08,-3.225980682394584341e-08,-3.293188613277804931e-08,-3.360396544161025521e-08,-3.427604475044246110e-08,-3.494812405927466700e-08,-3.562020336810687290e-08,-3.629228267693907880e-08,-3.696436198577128470e-08,-3.763644129460349060e-08,-3.830852060343569649e-08,-3.898059991226790239e-08,-3.965267922110010829e-08,-4.032475852993231419e-08,-4.099683783876452009e-08,-4.166891714759672598e-08,-4.234099645642893188e-08 +0.000000000000000000e+00,-6.665307130139406452e-10,-1.333061426027881290e-09,-1.999592139041821832e-09,-2.666122852055762167e-09,-3.332653565069702502e-09,-3.999184278083642837e-09,-4.665714991097583172e-09,-5.332245704111523507e-09,-5.998776417125463842e-09,-6.665307130139404177e-09,-7.331837843153344513e-09,-7.998368556167284020e-09,-8.664899269181223528e-09,-9.331429982195163036e-09,-9.997960695209102544e-09,-1.066449140822304205e-08,-1.133102212123698156e-08,-1.199755283425092107e-08,-1.266408354726486058e-08,-1.333061426027880008e-08,-1.399714497329273959e-08,-1.466367568630667910e-08,-1.533020639932061861e-08,-1.599673711233455811e-08,-1.666326782534849762e-08,-1.732979853836243713e-08,-1.799632925137637664e-08,-1.866285996439031615e-08,-1.932939067740425565e-08,-1.999592139041819516e-08,-2.066245210343213467e-08,-2.132898281644607418e-08,-2.199551352946001369e-08,-2.266204424247395319e-08,-2.332857495548789270e-08,-2.399510566850183221e-08,-2.466163638151577172e-08,-2.532816709452971122e-08,-2.599469780754365073e-08,-2.666122852055759024e-08,-2.732775923357152975e-08,-2.799428994658546926e-08,-2.866082065959940876e-08,-2.932735137261334827e-08,-2.999388208562728778e-08,-3.066041279864122398e-08,-3.132694351165516018e-08,-3.199347422466909638e-08,-3.266000493768303258e-08,-3.332653565069696878e-08,-3.399306636371090497e-08,-3.465959707672484117e-08,-3.532612778973877737e-08,-3.599265850275271357e-08,-3.665918921576664977e-08,-3.732571992878058597e-08,-3.799225064179452217e-08,-3.865878135480845837e-08,-3.932531206782239457e-08,-3.999184278083633077e-08,-4.065837349385026697e-08,-4.132490420686420316e-08,-4.199143491987813936e-08 +0.000000000000000000e+00,-6.734504817213687006e-10,-1.346900963442737401e-09,-2.020351445164106102e-09,-2.693801926885474803e-09,-3.367252408606843503e-09,-4.040702890328212204e-09,-4.714153372049581318e-09,-5.387603853770950432e-09,-6.061054335492319546e-09,-6.734504817213688661e-09,-7.407955298935057775e-09,-8.081405780656426062e-09,-8.754856262377794349e-09,-9.428306744099162636e-09,-1.010175722582053092e-08,-1.077520770754189921e-08,-1.144865818926326750e-08,-1.212210867098463578e-08,-1.279555915270600407e-08,-1.346900963442737236e-08,-1.414246011614874065e-08,-1.481591059787010893e-08,-1.548936107959147722e-08,-1.616281156131284551e-08,-1.683626204303421379e-08,-1.750971252475558208e-08,-1.818316300647695037e-08,-1.885661348819831865e-08,-1.953006396991968694e-08,-2.020351445164105523e-08,-2.087696493336242352e-08,-2.155041541508379180e-08,-2.222386589680516009e-08,-2.289731637852652838e-08,-2.357076686024789666e-08,-2.424421734196926495e-08,-2.491766782369063324e-08,-2.559111830541200153e-08,-2.626456878713336981e-08,-2.693801926885473810e-08,-2.761146975057610639e-08,-2.828492023229747467e-08,-2.895837071401884296e-08,-2.963182119574021125e-08,-3.030527167746157953e-08,-3.097872215918294782e-08,-3.165217264090431611e-08,-3.232562312262568440e-08,-3.299907360434705268e-08,-3.367252408606842097e-08,-3.434597456778978926e-08,-3.501942504951115754e-08,-3.569287553123252583e-08,-3.636632601295389412e-08,-3.703977649467526240e-08,-3.771322697639663069e-08,-3.838667745811799898e-08,-3.906012793983936727e-08,-3.973357842156073555e-08,-4.040702890328210384e-08,-4.108047938500347213e-08,-4.175392986672484041e-08,-4.242738034844620870e-08 +0.000000000000000000e+00,6.635000987525171980e-10,1.327000197505034396e-09,1.990500296257551801e-09,2.654000395010069206e-09,3.317500493762586610e-09,3.981000592515103602e-09,4.644500691267620593e-09,5.308000790020137584e-09,5.971500888772654575e-09,6.635000987525171566e-09,7.298501086277688557e-09,7.962001185030205549e-09,8.625501283782722540e-09,9.289001382535239531e-09,9.952501481287756522e-09,1.061600158004027351e-08,1.127950167879279050e-08,1.194300177754530750e-08,1.260650187629782449e-08,1.327000197505034148e-08,1.393350207380285847e-08,1.459700217255537546e-08,1.526050227130789245e-08,1.592400237006040779e-08,1.658750246881292313e-08,1.725100256756543846e-08,1.791450266631795380e-08,1.857800276507046914e-08,1.924150286382298447e-08,1.990500296257549981e-08,2.056850306132801515e-08,2.123200316008053048e-08,2.189550325883304582e-08,2.255900335758556116e-08,2.322250345633807649e-08,2.388600355509059183e-08,2.454950365384310717e-08,2.521300375259562250e-08,2.587650385134813784e-08,2.654000395010065318e-08,2.720350404885316851e-08,2.786700414760568385e-08,2.853050424635819919e-08,2.919400434511071453e-08,2.985750444386322655e-08,3.052100454261573858e-08,3.118450464136825061e-08,3.184800474012076264e-08,3.251150483887327467e-08,3.317500493762578669e-08,3.383850503637829872e-08,3.450200513513081075e-08,3.516550523388332278e-08,3.582900533263583481e-08,3.649250543138834683e-08,3.715600553014085886e-08,3.781950562889337089e-08,3.848300572764588292e-08,3.914650582639839495e-08,3.981000592515090697e-08,4.047350602390341900e-08,4.113700612265593103e-08,4.180050622140844306e-08 +0.000000000000000000e+00,6.755598084595045012e-10,1.351119616919009002e-09,2.026679425378513400e-09,2.702239233838017591e-09,3.377799042297521782e-09,4.053358850757025973e-09,4.728918659216530164e-09,5.404478467676034355e-09,6.080038276135538546e-09,6.755598084595042737e-09,7.431157893054546928e-09,8.106717701514050292e-09,8.782277509973554483e-09,9.457837318433058674e-09,1.013339712689256287e-08,1.080895693535206706e-08,1.148451674381157125e-08,1.216007655227107544e-08,1.283563636073057963e-08,1.351119616919008382e-08,1.418675597764958801e-08,1.486231578610909220e-08,1.553787559456859639e-08,1.621343540302810058e-08,1.688899521148760478e-08,1.756455501994710897e-08,1.824011482840661316e-08,1.891567463686611735e-08,1.959123444532562154e-08,2.026679425378512573e-08,2.094235406224462992e-08,2.161791387070413411e-08,2.229347367916363830e-08,2.296903348762314249e-08,2.364459329608264669e-08,2.432015310454215088e-08,2.499571291300165507e-08,2.567127272146115926e-08,2.634683252992066345e-08,2.702239233838016764e-08,2.769795214683967183e-08,2.837351195529917602e-08,2.904907176375868021e-08,2.972463157221818440e-08,3.040019138067768860e-08,3.107575118913719279e-08,3.175131099759669698e-08,3.242687080605620117e-08,3.310243061451570536e-08,3.377799042297520955e-08,3.445355023143471374e-08,3.512911003989421793e-08,3.580466984835372212e-08,3.648022965681322632e-08,3.715578946527273051e-08,3.783134927373223470e-08,3.850690908219173889e-08,3.918246889065124308e-08,3.985802869911074727e-08,4.053358850757025146e-08,4.120914831602975565e-08,4.188470812448925984e-08,4.256026793294876403e-08 +0.000000000000000000e+00,6.659881567932821185e-10,1.331976313586564237e-09,1.997964470379846149e-09,2.663952627173128060e-09,3.329940783966409972e-09,3.995928940759692298e-09,4.661917097552974623e-09,5.327905254346256948e-09,5.993893411139539273e-09,6.659881567932821599e-09,7.325869724726103924e-09,7.991857881519386249e-09,8.657846038312667748e-09,9.323834195105949246e-09,9.989822351899230744e-09,1.065581050869251224e-08,1.132179866548579374e-08,1.198778682227907524e-08,1.265377497907235674e-08,1.331976313586563823e-08,1.398575129265891973e-08,1.465173944945220123e-08,1.531772760624548273e-08,1.598371576303876257e-08,1.664970391983204242e-08,1.731569207662532226e-08,1.798168023341860210e-08,1.864766839021188195e-08,1.931365654700516179e-08,1.997964470379844164e-08,2.064563286059172148e-08,2.131162101738500132e-08,2.197760917417828117e-08,2.264359733097156101e-08,2.330958548776484085e-08,2.397557364455812070e-08,2.464156180135140054e-08,2.530754995814468039e-08,2.597353811493796023e-08,2.663952627173124007e-08,2.730551442852451992e-08,2.797150258531779976e-08,2.863749074211107960e-08,2.930347889890435945e-08,2.996946705569763929e-08,3.063545521249091914e-08,3.130144336928419898e-08,3.196743152607747882e-08,3.263341968287075867e-08,3.329940783966403851e-08,3.396539599645731835e-08,3.463138415325059820e-08,3.529737231004387804e-08,3.596336046683715789e-08,3.662934862363043773e-08,3.729533678042371757e-08,3.796132493721699742e-08,3.862731309401027726e-08,3.929330125080355710e-08,3.995928940759683695e-08,4.062527756439011679e-08,4.129126572118339664e-08,4.195725387797667648e-08 +0.000000000000000000e+00,-6.635000987522208605e-10,-1.327000197504441721e-09,-1.990500296256662582e-09,-2.654000395008883442e-09,-3.317500493761104303e-09,-3.981000592513325163e-09,-4.644500691265546024e-09,-5.308000790017766884e-09,-5.971500888769987745e-09,-6.635000987522208605e-09,-7.298501086274429466e-09,-7.962001185026650326e-09,-8.625501283778871187e-09,-9.289001382531092047e-09,-9.952501481283312908e-09,-1.061600158003553377e-08,-1.127950167878775463e-08,-1.194300177753997549e-08,-1.260650187629219635e-08,-1.327000197504441721e-08,-1.393350207379663807e-08,-1.459700217254885893e-08,-1.526050227130107979e-08,-1.592400237005330065e-08,-1.658750246880552151e-08,-1.725100256755774237e-08,-1.791450266630996323e-08,-1.857800276506218409e-08,-1.924150286381440496e-08,-1.990500296256662582e-08,-2.056850306131884668e-08,-2.123200316007106754e-08,-2.189550325882328840e-08,-2.255900335757550926e-08,-2.322250345632773012e-08,-2.388600355507995098e-08,-2.454950365383217184e-08,-2.521300375258439270e-08,-2.587650385133661356e-08,-2.654000395008883442e-08,-2.720350404884105528e-08,-2.786700414759327614e-08,-2.853050424634549700e-08,-2.919400434509771786e-08,-2.985750444384993872e-08,-3.052100454260215958e-08,-3.118450464135438044e-08,-3.184800474010660131e-08,-3.251150483885882217e-08,-3.317500493761104303e-08,-3.383850503636326389e-08,-3.450200513511548475e-08,-3.516550523386770561e-08,-3.582900533261992647e-08,-3.649250543137214733e-08,-3.715600553012436819e-08,-3.781950562887658905e-08,-3.848300572762880991e-08,-3.914650582638103077e-08,-3.981000592513325163e-08,-4.047350602388547249e-08,-4.113700612263769335e-08,-4.180050622138991421e-08 +0.000000000000000000e+00,-6.755598084587596251e-10,-1.351119616917519250e-09,-2.026679425376278772e-09,-2.702239233835038087e-09,-3.377799042293797402e-09,-4.053358850752556716e-09,-4.728918659211316445e-09,-5.404478467670076173e-09,-6.080038276128835902e-09,-6.755598084587595630e-09,-7.431157893046355359e-09,-8.106717701505115087e-09,-8.782277509963874816e-09,-9.457837318422634544e-09,-1.013339712688139427e-08,-1.080895693534015400e-08,-1.148451674379891373e-08,-1.216007655225767346e-08,-1.283563636071643319e-08,-1.351119616917519291e-08,-1.418675597763395264e-08,-1.486231578609271237e-08,-1.553787559455147045e-08,-1.621343540301022687e-08,-1.688899521146898329e-08,-1.756455501992773971e-08,-1.824011482838649613e-08,-1.891567463684525254e-08,-1.959123444530400896e-08,-2.026679425376276538e-08,-2.094235406222152180e-08,-2.161791387068027822e-08,-2.229347367913903464e-08,-2.296903348759779106e-08,-2.364459329605654748e-08,-2.432015310451530390e-08,-2.499571291297406032e-08,-2.567127272143281674e-08,-2.634683252989157316e-08,-2.702239233835032958e-08,-2.769795214680908600e-08,-2.837351195526784242e-08,-2.904907176372659884e-08,-2.972463157218535526e-08,-3.040019138064411168e-08,-3.107575118910286810e-08,-3.175131099756162452e-08,-3.242687080602038094e-08,-3.310243061447913736e-08,-3.377799042293789378e-08,-3.445355023139665020e-08,-3.512911003985540662e-08,-3.580466984831416304e-08,-3.648022965677291946e-08,-3.715578946523167588e-08,-3.783134927369043230e-08,-3.850690908214918872e-08,-3.918246889060794514e-08,-3.985802869906670156e-08,-4.053358850752545798e-08,-4.120914831598421440e-08,-4.188470812444297082e-08,-4.256026793290172724e-08 +0.000000000000000000e+00,-6.659881567912501493e-10,-1.331976313582500299e-09,-1.997964470373750655e-09,-2.663952627165001011e-09,-3.329940783956251367e-09,-3.995928940747501310e-09,-4.661917097538751252e-09,-5.327905254330001195e-09,-5.993893411121251137e-09,-6.659881567912501080e-09,-7.325869724703751022e-09,-7.991857881495000965e-09,-8.657846038286250907e-09,-9.323834195077500850e-09,-9.989822351868750793e-09,-1.065581050866000074e-08,-1.132179866545125068e-08,-1.198778682224250062e-08,-1.265377497903375056e-08,-1.331976313582500051e-08,-1.398575129261625045e-08,-1.465173944940750039e-08,-1.531772760619875033e-08,-1.598371576298999862e-08,-1.664970391978124691e-08,-1.731569207657249520e-08,-1.798168023336374349e-08,-1.864766839015499177e-08,-1.931365654694624006e-08,-1.997964470373748835e-08,-2.064563286052873664e-08,-2.131162101731998493e-08,-2.197760917411123321e-08,-2.264359733090248150e-08,-2.330958548769372979e-08,-2.397557364448497808e-08,-2.464156180127622637e-08,-2.530754995806747466e-08,-2.597353811485872294e-08,-2.663952627164997123e-08,-2.730551442844121952e-08,-2.797150258523246781e-08,-2.863749074202371610e-08,-2.930347889881496438e-08,-2.996946705560621267e-08,-3.063545521239746096e-08,-3.130144336918870925e-08,-3.196743152597995754e-08,-3.263341968277120583e-08,-3.329940783956245411e-08,-3.396539599635370240e-08,-3.463138415314495069e-08,-3.529737230993619898e-08,-3.596336046672744727e-08,-3.662934862351869555e-08,-3.729533678030994384e-08,-3.796132493710119213e-08,-3.862731309389244042e-08,-3.929330125068368871e-08,-3.995928940747493700e-08,-4.062527756426618528e-08,-4.129126572105743357e-08,-4.195725387784868186e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.588661104646565715e-10,1.317732220929313143e-09,1.976598331393969508e-09,2.635464441858625873e-09,3.294330552323282237e-09,3.953196662787939016e-09,4.612062773252595794e-09,5.270928883717252572e-09,5.929794994181909351e-09,6.588661104646566129e-09,7.247527215111222907e-09,7.906393325575879685e-09,8.565259436040536464e-09,9.224125546505193242e-09,9.882991656969850020e-09,1.054185776743450680e-08,1.120072387789916358e-08,1.185958998836382036e-08,1.251845609882847713e-08,1.317732220929313391e-08,1.383618831975779069e-08,1.449505443022244747e-08,1.515392054068710259e-08,1.581278665115175606e-08,1.647165276161640953e-08,1.713051887208106300e-08,1.778938498254571647e-08,1.844825109301036994e-08,1.910711720347502341e-08,1.976598331393967688e-08,2.042484942440433035e-08,2.108371553486898382e-08,2.174258164533363729e-08,2.240144775579829076e-08,2.306031386626294423e-08,2.371917997672759770e-08,2.437804608719225117e-08,2.503691219765690464e-08,2.569577830812155811e-08,2.635464441858621158e-08,2.701351052905086505e-08,2.767237663951551851e-08,2.833124274998017198e-08,2.899010886044482545e-08,2.964897497090947892e-08,3.030784108137413239e-08,3.096670719183878586e-08,3.162557330230343933e-08,3.228443941276809280e-08,3.294330552323274627e-08,3.360217163369739974e-08,3.426103774416205321e-08,3.491990385462670668e-08,3.557876996509136015e-08,3.623763607555601362e-08,3.689650218602066709e-08,3.755536829648532056e-08,3.821423440694997403e-08,3.887310051741462750e-08,3.953196662787928097e-08,4.019083273834393444e-08,4.084969884880858791e-08,4.150856495927324138e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.588661104647457002e-10,-1.317732220929491400e-09,-1.976598331394237101e-09,-2.635464441858982801e-09,-3.294330552323728501e-09,-3.953196662788474201e-09,-4.612062773253219488e-09,-5.270928883717964775e-09,-5.929794994182710061e-09,-6.588661104647455348e-09,-7.247527215112200635e-09,-7.906393325576946748e-09,-8.565259436041692862e-09,-9.224125546506438976e-09,-9.882991656971185090e-09,-1.054185776743593120e-08,-1.120072387790067732e-08,-1.185958998836542343e-08,-1.251845609883016955e-08,-1.317732220929491566e-08,-1.383618831975966177e-08,-1.449505443022440789e-08,-1.515392054068915400e-08,-1.581278665115390011e-08,-1.647165276161864623e-08,-1.713051887208339234e-08,-1.778938498254813846e-08,-1.844825109301288457e-08,-1.910711720347763068e-08,-1.976598331394237680e-08,-2.042484942440712291e-08,-2.108371553487186902e-08,-2.174258164533661514e-08,-2.240144775580136125e-08,-2.306031386626610737e-08,-2.371917997673085348e-08,-2.437804608719559959e-08,-2.503691219766034571e-08,-2.569577830812509182e-08,-2.635464441858983794e-08,-2.701351052905458405e-08,-2.767237663951933016e-08,-2.833124274998407628e-08,-2.899010886044882239e-08,-2.964897497091356850e-08,-3.030784108137831462e-08,-3.096670719184306073e-08,-3.162557330230780685e-08,-3.228443941277255296e-08,-3.294330552323729907e-08,-3.360217163370204519e-08,-3.426103774416679130e-08,-3.491990385463153742e-08,-3.557876996509628353e-08,-3.623763607556102964e-08,-3.689650218602577576e-08,-3.755536829649052187e-08,-3.821423440695526798e-08,-3.887310051742001410e-08,-3.953196662788476021e-08,-4.019083273834950633e-08,-4.084969884881425244e-08,-4.150856495927899855e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.630303559497953154e-10,1.326060711899590631e-09,1.989091067849386050e-09,2.652121423799181675e-09,3.315151779748977301e-09,3.978182135698772926e-09,4.641212491648568552e-09,5.304242847598364177e-09,5.967273203548159803e-09,6.630303559497955428e-09,7.293333915447751054e-09,7.956364271397547507e-09,8.619394627347344787e-09,9.282424983297142067e-09,9.945455339246939347e-09,1.060848569519673663e-08,1.127151605114653391e-08,1.193454640709633119e-08,1.259757676304612847e-08,1.326060711899592575e-08,1.392363747494572303e-08,1.458666783089552031e-08,1.524969818684531759e-08,1.591272854279511487e-08,1.657575889874491215e-08,1.723878925469470943e-08,1.790181961064450671e-08,1.856484996659430399e-08,1.922788032254410127e-08,1.989091067849389855e-08,2.055394103444369583e-08,2.121697139039349311e-08,2.188000174634329039e-08,2.254303210229308767e-08,2.320606245824288495e-08,2.386909281419268222e-08,2.453212317014247950e-08,2.519515352609227678e-08,2.585818388204207406e-08,2.652121423799187134e-08,2.718424459394166862e-08,2.784727494989146590e-08,2.851030530584126318e-08,2.917333566179106046e-08,2.983636601774086105e-08,3.049939637369066164e-08,3.116242672964046223e-08,3.182545708559026282e-08,3.248848744154006341e-08,3.315151779748986400e-08,3.381454815343966458e-08,3.447757850938946517e-08,3.514060886533926576e-08,3.580363922128906635e-08,3.646666957723886694e-08,3.712969993318866753e-08,3.779273028913846812e-08,3.845576064508826871e-08,3.911879100103806929e-08,3.978182135698786988e-08,4.044485171293767047e-08,4.110788206888747106e-08,4.177091242483727165e-08 +0.000000000000000000e+00,6.550802739667388780e-10,1.310160547933477756e-09,1.965240821900216737e-09,2.620321095866955926e-09,3.275401369833695114e-09,3.930481643800434302e-09,4.585561917767173490e-09,5.240642191733912678e-09,5.895722465700651867e-09,6.550802739667391055e-09,7.205883013634130243e-09,7.860963287600870258e-09,8.516043561567609447e-09,9.171123835534348635e-09,9.826204109501087823e-09,1.048128438346782701e-08,1.113636465743456620e-08,1.179144493140130539e-08,1.244652520536804458e-08,1.310160547933478376e-08,1.375668575330152295e-08,1.441176602726826214e-08,1.506684630123500133e-08,1.572192657520174052e-08,1.637700684916847970e-08,1.703208712313521889e-08,1.768716739710195808e-08,1.834224767106869727e-08,1.899732794503543646e-08,1.965240821900217565e-08,2.030748849296891483e-08,2.096256876693565402e-08,2.161764904090239321e-08,2.227272931486913240e-08,2.292780958883587159e-08,2.358288986280261077e-08,2.423797013676934996e-08,2.489305041073608915e-08,2.554813068470282834e-08,2.620321095866956753e-08,2.685829123263630672e-08,2.751337150660304590e-08,2.816845178056978509e-08,2.882353205453652428e-08,2.947861232850326347e-08,3.013369260247000266e-08,3.078877287643674185e-08,3.144385315040348103e-08,3.209893342437022022e-08,3.275401369833695941e-08,3.340909397230369860e-08,3.406417424627043779e-08,3.471925452023717697e-08,3.537433479420391616e-08,3.602941506817065535e-08,3.668449534213739454e-08,3.733957561610413373e-08,3.799465589007087292e-08,3.864973616403761210e-08,3.930481643800435129e-08,3.995989671197109048e-08,4.061497698593782967e-08,4.127005725990456886e-08 +0.000000000000000000e+00,6.459600075446361061e-10,1.291920015089272212e-09,1.937880022633908525e-09,2.583840030178544838e-09,3.229800037723181151e-09,3.875760045267817050e-09,4.521720052812452950e-09,5.167680060357088849e-09,5.813640067901724748e-09,6.459600075446360648e-09,7.105560082990996547e-09,7.751520090535632446e-09,8.397480098080267519e-09,9.043440105624902591e-09,9.689400113169537663e-09,1.033536012071417274e-08,1.098132012825880781e-08,1.162728013580344288e-08,1.227324014334807795e-08,1.291920015089271302e-08,1.356516015843734810e-08,1.421112016598198317e-08,1.485708017352661824e-08,1.550304018107125497e-08,1.614900018861589169e-08,1.679496019616052842e-08,1.744092020370516515e-08,1.808688021124980187e-08,1.873284021879443860e-08,1.937880022633907533e-08,2.002476023388371205e-08,2.067072024142834878e-08,2.131668024897298551e-08,2.196264025651762223e-08,2.260860026406225896e-08,2.325456027160689569e-08,2.390052027915153241e-08,2.454648028669616914e-08,2.519244029424080586e-08,2.583840030178544259e-08,2.648436030933007932e-08,2.713032031687471604e-08,2.777628032441935277e-08,2.842224033196398950e-08,2.906820033950862622e-08,2.971416034705326295e-08,3.036012035459790299e-08,3.100608036214254302e-08,3.165204036968718306e-08,3.229800037723182309e-08,3.294396038477646313e-08,3.358992039232110316e-08,3.423588039986574320e-08,3.488184040741038323e-08,3.552780041495502327e-08,3.617376042249966330e-08,3.681972043004430334e-08,3.746568043758894337e-08,3.811164044513358341e-08,3.875760045267822344e-08,3.940356046022286348e-08,4.004952046776750351e-08,4.069548047531214355e-08 +0.000000000000000000e+00,-6.630303559727968301e-10,-1.326060711945593660e-09,-1.989091067918390283e-09,-2.652121423891186907e-09,-3.315151779863983530e-09,-3.978182135836780567e-09,-4.641212491809577604e-09,-5.304242847782374640e-09,-5.967273203755171677e-09,-6.630303559727968714e-09,-7.293333915700765751e-09,-7.956364271673562788e-09,-8.619394627646360652e-09,-9.282424983619158516e-09,-9.945455339591956380e-09,-1.060848569556475424e-08,-1.127151605153755211e-08,-1.193454640751034997e-08,-1.259757676348314784e-08,-1.326060711945594570e-08,-1.392363747542874356e-08,-1.458666783140154143e-08,-1.524969818737433929e-08,-1.591272854334713550e-08,-1.657575889931993171e-08,-1.723878925529272792e-08,-1.790181961126552413e-08,-1.856484996723832034e-08,-1.922788032321111655e-08,-1.989091067918391276e-08,-2.055394103515670897e-08,-2.121697139112950518e-08,-2.188000174710230139e-08,-2.254303210307509760e-08,-2.320606245904789381e-08,-2.386909281502069002e-08,-2.453212317099348623e-08,-2.519515352696628244e-08,-2.585818388293907865e-08,-2.652121423891187486e-08,-2.718424459488467107e-08,-2.784727495085746728e-08,-2.851030530683026349e-08,-2.917333566280305970e-08,-2.983636601877585591e-08,-3.049939637474865211e-08,-3.116242673072144832e-08,-3.182545708669424453e-08,-3.248848744266704074e-08,-3.315151779863983695e-08,-3.381454815461263316e-08,-3.447757851058542937e-08,-3.514060886655822558e-08,-3.580363922253102179e-08,-3.646666957850381800e-08,-3.712969993447661421e-08,-3.779273029044941042e-08,-3.845576064642220663e-08,-3.911879100239500284e-08,-3.978182135836779905e-08,-4.044485171434059526e-08,-4.110788207031339147e-08,-4.177091242628618768e-08 +0.000000000000000000e+00,-6.550802739932546695e-10,-1.310160547986509339e-09,-1.965240821979764215e-09,-2.620321095973019092e-09,-3.275401369966273968e-09,-3.930481643959528431e-09,-4.585561917952782893e-09,-5.240642191946037356e-09,-5.895722465939291819e-09,-6.550802739932546282e-09,-7.205883013925800744e-09,-7.860963287919055207e-09,-8.516043561912308843e-09,-9.171123835905562478e-09,-9.826204109898816114e-09,-1.048128438389206975e-08,-1.113636465788532338e-08,-1.179144493187857702e-08,-1.244652520587183066e-08,-1.310160547986508429e-08,-1.375668575385833793e-08,-1.441176602785159156e-08,-1.506684630184484520e-08,-1.572192657583810049e-08,-1.637700684983135578e-08,-1.703208712382461107e-08,-1.768716739781786636e-08,-1.834224767181112165e-08,-1.899732794580437694e-08,-1.965240821979763223e-08,-2.030748849379088752e-08,-2.096256876778414281e-08,-2.161764904177739810e-08,-2.227272931577065339e-08,-2.292780958976390868e-08,-2.358288986375716397e-08,-2.423797013775041926e-08,-2.489305041174367455e-08,-2.554813068573692984e-08,-2.620321095973018513e-08,-2.685829123372344042e-08,-2.751337150771669571e-08,-2.816845178170995100e-08,-2.882353205570320629e-08,-2.947861232969646158e-08,-3.013369260368971687e-08,-3.078877287768297216e-08,-3.144385315167622745e-08,-3.209893342566948274e-08,-3.275401369966273803e-08,-3.340909397365599332e-08,-3.406417424764924861e-08,-3.471925452164250390e-08,-3.537433479563575919e-08,-3.602941506962901448e-08,-3.668449534362226977e-08,-3.733957561761552506e-08,-3.799465589160878034e-08,-3.864973616560203563e-08,-3.930481643959529092e-08,-3.995989671358854621e-08,-4.061497698758180150e-08,-4.127005726157505679e-08 +0.000000000000000000e+00,-6.459600075564654093e-10,-1.291920015112930819e-09,-1.937880022669396228e-09,-2.583840030225861637e-09,-3.229800037782327046e-09,-3.875760045338792456e-09,-4.521720052895257865e-09,-5.167680060451723274e-09,-5.813640068008188684e-09,-6.459600075564654093e-09,-7.105560083121119502e-09,-7.751520090677584911e-09,-8.397480098234050321e-09,-9.043440105790515730e-09,-9.689400113346981139e-09,-1.033536012090344655e-08,-1.098132012845991196e-08,-1.162728013601637737e-08,-1.227324014357284278e-08,-1.291920015112930819e-08,-1.356516015868577359e-08,-1.421112016624223900e-08,-1.485708017379870441e-08,-1.550304018135516982e-08,-1.614900018891163523e-08,-1.679496019646810064e-08,-1.744092020402456605e-08,-1.808688021158103146e-08,-1.873284021913749687e-08,-1.937880022669396228e-08,-2.002476023425042769e-08,-2.067072024180689310e-08,-2.131668024936335851e-08,-2.196264025691982392e-08,-2.260860026447628932e-08,-2.325456027203275473e-08,-2.390052027958922014e-08,-2.454648028714568555e-08,-2.519244029470215096e-08,-2.583840030225861637e-08,-2.648436030981508178e-08,-2.713032031737154719e-08,-2.777628032492801260e-08,-2.842224033248447801e-08,-2.906820034004094342e-08,-2.971416034759740883e-08,-3.036012035515387424e-08,-3.100608036271033965e-08,-3.165204037026680505e-08,-3.229800037782327046e-08,-3.294396038537973587e-08,-3.358992039293620128e-08,-3.423588040049266669e-08,-3.488184040804913210e-08,-3.552780041560559751e-08,-3.617376042316206292e-08,-3.681972043071852833e-08,-3.746568043827499374e-08,-3.811164044583145915e-08,-3.875760045338792456e-08,-3.940356046094438997e-08,-4.004952046850085538e-08,-4.069548047605732078e-08 +0.000000000000000000e+00,6.773211886886489863e-10,1.354642377377297973e-09,2.031963566065946856e-09,2.709284754754595532e-09,3.386605943443244208e-09,4.063927132131892884e-09,4.741248320820541974e-09,5.418569509509191063e-09,6.095890698197840153e-09,6.773211886886489243e-09,7.450533075575138332e-09,8.127854264263787422e-09,8.805175452952436512e-09,9.482496641641085602e-09,1.015981783032973469e-08,1.083713901901838378e-08,1.151446020770703287e-08,1.219178139639568196e-08,1.286910258508433105e-08,1.354642377377298014e-08,1.422374496246162923e-08,1.490106615115027832e-08,1.557838733983892575e-08,1.625570852852757154e-08,1.693302971721621732e-08,1.761035090590486310e-08,1.828767209459350888e-08,1.896499328328215466e-08,1.964231447197080044e-08,2.031963566065944622e-08,2.099695684934809200e-08,2.167427803803673778e-08,2.235159922672538356e-08,2.302892041541402935e-08,2.370624160410267513e-08,2.438356279279132091e-08,2.506088398147996669e-08,2.573820517016861247e-08,2.641552635885725825e-08,2.709284754754590403e-08,2.777016873623454981e-08,2.844748992492319559e-08,2.912481111361184137e-08,2.980213230230048716e-08,3.047945349098913294e-08,3.115677467967777872e-08,3.183409586836642450e-08,3.251141705705507028e-08,3.318873824574371606e-08,3.386605943443236184e-08,3.454338062312100762e-08,3.522070181180965340e-08,3.589802300049829918e-08,3.657534418918694497e-08,3.725266537787559075e-08,3.792998656656423653e-08,3.860730775525288231e-08,3.928462894394152809e-08,3.996195013263017387e-08,4.063927132131881965e-08,4.131659251000746543e-08,4.199391369869611121e-08,4.267123488738475699e-08 +0.000000000000000000e+00,6.705985851290962627e-10,1.341197170258192525e-09,2.011795755387288685e-09,2.682394340516384637e-09,3.352992925645480590e-09,4.023591510774576542e-09,4.694190095903672494e-09,5.364788681032768447e-09,6.035387266161864399e-09,6.705985851290960352e-09,7.376584436420056304e-09,8.047183021549151430e-09,8.717781606678246555e-09,9.388380191807341680e-09,1.005897877693643681e-08,1.072957736206553193e-08,1.140017594719462706e-08,1.207077453232372218e-08,1.274137311745281731e-08,1.341197170258191243e-08,1.408257028771100756e-08,1.475316887284010268e-08,1.542376745796919615e-08,1.609436604309828962e-08,1.676496462822738310e-08,1.743556321335647657e-08,1.810616179848557004e-08,1.877676038361466351e-08,1.944735896874375698e-08,2.011795755387285045e-08,2.078855613900194392e-08,2.145915472413103739e-08,2.212975330926013086e-08,2.280035189438922433e-08,2.347095047951831780e-08,2.414154906464741128e-08,2.481214764977650475e-08,2.548274623490559822e-08,2.615334482003469169e-08,2.682394340516378516e-08,2.749454199029287863e-08,2.816514057542197210e-08,2.883573916055106557e-08,2.950633774568015904e-08,3.017693633080925251e-08,3.084753491593834598e-08,3.151813350106743946e-08,3.218873208619653293e-08,3.285933067132562640e-08,3.352992925645471987e-08,3.420052784158381334e-08,3.487112642671290681e-08,3.554172501184200028e-08,3.621232359697109375e-08,3.688292218210018722e-08,3.755352076722928069e-08,3.822411935235837416e-08,3.889471793748746764e-08,3.956531652261656111e-08,4.023591510774565458e-08,4.090651369287474805e-08,4.157711227800384152e-08,4.224771086313293499e-08 +0.000000000000000000e+00,6.609124782426043619e-10,1.321824956485208724e-09,1.982737434727813293e-09,2.643649912970417861e-09,3.304562391213022430e-09,3.965474869455626585e-09,4.626387347698230740e-09,5.287299825940834895e-09,5.948212304183439051e-09,6.609124782426043206e-09,7.270037260668647361e-09,7.930949738911251516e-09,8.591862217153855671e-09,9.252774695396459826e-09,9.913687173639063981e-09,1.057459965188166814e-08,1.123551213012427229e-08,1.189642460836687645e-08,1.255733708660948060e-08,1.321824956485208476e-08,1.387916204309468891e-08,1.454007452133729307e-08,1.520098699957989557e-08,1.586189947782249972e-08,1.652281195606510388e-08,1.718372443430770803e-08,1.784463691255031219e-08,1.850554939079291634e-08,1.916646186903552050e-08,1.982737434727812465e-08,2.048828682552072881e-08,2.114919930376333296e-08,2.181011178200593712e-08,2.247102426024854127e-08,2.313193673849114543e-08,2.379284921673374959e-08,2.445376169497635374e-08,2.511467417321895790e-08,2.577558665146156205e-08,2.643649912970416621e-08,2.709741160794677036e-08,2.775832408618937452e-08,2.841923656443197867e-08,2.908014904267458283e-08,2.974106152091718698e-08,3.040197399915979114e-08,3.106288647740239529e-08,3.172379895564499945e-08,3.238471143388760360e-08,3.304562391213020776e-08,3.370653639037281191e-08,3.436744886861541607e-08,3.502836134685802022e-08,3.568927382510062438e-08,3.635018630334322853e-08,3.701109878158583269e-08,3.767201125982843684e-08,3.833292373807104100e-08,3.899383621631364515e-08,3.965474869455624931e-08,4.031566117279885346e-08,4.097657365104145762e-08,4.163748612928406177e-08 +0.000000000000000000e+00,-6.773211887054697041e-10,-1.354642377410939408e-09,-2.031963566116409009e-09,-2.709284754821878403e-09,-3.386605943527347797e-09,-4.063927132232817190e-09,-4.741248320938286171e-09,-5.418569509643755151e-09,-6.095890698349224131e-09,-6.773211887054693112e-09,-7.450533075760162092e-09,-8.127854264465631072e-09,-8.805175453171100052e-09,-9.482496641876569033e-09,-1.015981783058203801e-08,-1.083713901928750699e-08,-1.151446020799297597e-08,-1.219178139669844495e-08,-1.286910258540391393e-08,-1.354642377410938291e-08,-1.422374496281485189e-08,-1.490106615152032088e-08,-1.557838734022578820e-08,-1.625570852893125553e-08,-1.693302971763672285e-08,-1.761035090634219018e-08,-1.828767209504765750e-08,-1.896499328375312483e-08,-1.964231447245859216e-08,-2.031963566116405948e-08,-2.099695684986952681e-08,-2.167427803857499413e-08,-2.235159922728046146e-08,-2.302892041598592879e-08,-2.370624160469139611e-08,-2.438356279339686344e-08,-2.506088398210233076e-08,-2.573820517080779809e-08,-2.641552635951326542e-08,-2.709284754821873274e-08,-2.777016873692420007e-08,-2.844748992562966739e-08,-2.912481111433513472e-08,-2.980213230304060205e-08,-3.047945349174606937e-08,-3.115677468045153670e-08,-3.183409586915700402e-08,-3.251141705786247135e-08,-3.318873824656793868e-08,-3.386605943527340600e-08,-3.454338062397887333e-08,-3.522070181268434065e-08,-3.589802300138980798e-08,-3.657534419009527530e-08,-3.725266537880074263e-08,-3.792998656750620996e-08,-3.860730775621167728e-08,-3.928462894491714461e-08,-3.996195013362261193e-08,-4.063927132232807926e-08,-4.131659251103354659e-08,-4.199391369973901391e-08,-4.267123488844448124e-08 +0.000000000000000000e+00,-6.705985851488887302e-10,-1.341197170297777460e-09,-2.011795755446666190e-09,-2.682394340595554921e-09,-3.352992925744443651e-09,-4.023591510893332381e-09,-4.694190096042221111e-09,-5.364788681191109841e-09,-6.035387266339998571e-09,-6.705985851488887302e-09,-7.376584436637776032e-09,-8.047183021786664762e-09,-8.717781606935554319e-09,-9.388380192084443877e-09,-1.005897877723333343e-08,-1.072957736238222299e-08,-1.140017594753111255e-08,-1.207077453268000211e-08,-1.274137311782889166e-08,-1.341197170297778122e-08,-1.408257028812667078e-08,-1.475316887327556034e-08,-1.542376745842444989e-08,-1.609436604357333945e-08,-1.676496462872222901e-08,-1.743556321387111856e-08,-1.810616179902000812e-08,-1.877676038416889768e-08,-1.944735896931778724e-08,-2.011795755446667679e-08,-2.078855613961556635e-08,-2.145915472476445591e-08,-2.212975330991334547e-08,-2.280035189506223502e-08,-2.347095048021112458e-08,-2.414154906536001414e-08,-2.481214765050890370e-08,-2.548274623565779325e-08,-2.615334482080668281e-08,-2.682394340595557237e-08,-2.749454199110446192e-08,-2.816514057625335148e-08,-2.883573916140224104e-08,-2.950633774655113060e-08,-3.017693633170002015e-08,-3.084753491684891302e-08,-3.151813350199780589e-08,-3.218873208714669875e-08,-3.285933067229559162e-08,-3.352992925744448448e-08,-3.420052784259337735e-08,-3.487112642774227022e-08,-3.554172501289116308e-08,-3.621232359804005595e-08,-3.688292218318894881e-08,-3.755352076833784168e-08,-3.822411935348673455e-08,-3.889471793863562741e-08,-3.956531652378452028e-08,-4.023591510893341315e-08,-4.090651369408230601e-08,-4.157711227923119888e-08,-4.224771086438009174e-08 +0.000000000000000000e+00,-6.609124782499942901e-10,-1.321824956499988580e-09,-1.982737434749982974e-09,-2.643649912999977574e-09,-3.304562391249972174e-09,-3.965474869499966775e-09,-4.626387347749960961e-09,-5.287299825999955148e-09,-5.948212304249949335e-09,-6.609124782499943522e-09,-7.270037260749937708e-09,-7.930949738999931895e-09,-8.591862217249926082e-09,-9.252774695499920269e-09,-9.913687173749914455e-09,-1.057459965199990864e-08,-1.123551213024990283e-08,-1.189642460849989702e-08,-1.255733708674989120e-08,-1.321824956499988539e-08,-1.387916204324987958e-08,-1.454007452149987376e-08,-1.520098699974986795e-08,-1.586189947799986048e-08,-1.652281195624985301e-08,-1.718372443449984555e-08,-1.784463691274983808e-08,-1.850554939099983061e-08,-1.916646186924982314e-08,-1.982737434749981568e-08,-2.048828682574980821e-08,-2.114919930399980074e-08,-2.181011178224979327e-08,-2.247102426049978581e-08,-2.313193673874977834e-08,-2.379284921699977087e-08,-2.445376169524976340e-08,-2.511467417349975593e-08,-2.577558665174974847e-08,-2.643649912999974100e-08,-2.709741160824973353e-08,-2.775832408649972606e-08,-2.841923656474971860e-08,-2.908014904299971113e-08,-2.974106152124970366e-08,-3.040197399949969619e-08,-3.106288647774969203e-08,-3.172379895599968788e-08,-3.238471143424968372e-08,-3.304562391249967956e-08,-3.370653639074967540e-08,-3.436744886899967124e-08,-3.502836134724966708e-08,-3.568927382549966292e-08,-3.635018630374965876e-08,-3.701109878199965460e-08,-3.767201126024965045e-08,-3.833292373849964629e-08,-3.899383621674964213e-08,-3.965474869499963797e-08,-4.031566117324963381e-08,-4.097657365149962965e-08,-4.163748612974962549e-08 +0.000000000000000000e+00,6.888369009162133869e-10,1.377673801832426774e-09,2.066510702748640057e-09,2.755347603664853134e-09,3.444184504581066210e-09,4.133021405497279287e-09,4.821858306413492364e-09,5.510695207329705440e-09,6.199532108245918517e-09,6.888369009162131594e-09,7.577205910078345498e-09,8.266042810994560229e-09,8.954879711910774960e-09,9.643716612826989691e-09,1.033255351374320442e-08,1.102139041465941915e-08,1.171022731557563388e-08,1.239906421649184861e-08,1.308790111740806335e-08,1.377673801832427808e-08,1.446557491924049281e-08,1.515441182015670754e-08,1.584324872107292227e-08,1.653208562198913700e-08,1.722092252290535173e-08,1.790975942382156646e-08,1.859859632473778119e-08,1.928743322565399593e-08,1.997627012657021066e-08,2.066510702748642539e-08,2.135394392840264012e-08,2.204278082931885485e-08,2.273161773023506958e-08,2.342045463115128431e-08,2.410929153206749904e-08,2.479812843298371377e-08,2.548696533389992850e-08,2.617580223481614324e-08,2.686463913573235797e-08,2.755347603664857270e-08,2.824231293756478743e-08,2.893114983848100216e-08,2.961998673939721689e-08,3.030882364031343493e-08,3.099766054122965628e-08,3.168649744214587763e-08,3.237533434306209898e-08,3.306417124397832032e-08,3.375300814489454167e-08,3.444184504581076302e-08,3.513068194672698437e-08,3.581951884764320572e-08,3.650835574855942707e-08,3.719719264947564841e-08,3.788602955039186976e-08,3.857486645130809111e-08,3.926370335222431246e-08,3.995254025314053381e-08,4.064137715405675516e-08,4.133021405497297651e-08,4.201905095588919785e-08,4.270788785680541920e-08,4.339672475772164055e-08 +0.000000000000000000e+00,6.826964342859227610e-10,1.365392868571845522e-09,2.048089302857768283e-09,2.730785737143691044e-09,3.413482171429613805e-09,4.096178605715536566e-09,4.778875040001459327e-09,5.461571474287382088e-09,6.144267908573304849e-09,6.826964342859227610e-09,7.509660777145150371e-09,8.192357211431073132e-09,8.875053645716995893e-09,9.557750080002918654e-09,1.024044651428884142e-08,1.092314294857476418e-08,1.160583938286068694e-08,1.228853581714660970e-08,1.297123225143253246e-08,1.365392868571845522e-08,1.433662512000437798e-08,1.501932155429030074e-08,1.570201798857622185e-08,1.638471442286214296e-08,1.706741085714806406e-08,1.775010729143398517e-08,1.843280372571990628e-08,1.911550016000582738e-08,1.979819659429174849e-08,2.048089302857766960e-08,2.116358946286359070e-08,2.184628589714951181e-08,2.252898233143543292e-08,2.321167876572135402e-08,2.389437520000727513e-08,2.457707163429319624e-08,2.525976806857911734e-08,2.594246450286503845e-08,2.662516093715095956e-08,2.730785737143688066e-08,2.799055380572280177e-08,2.867325024000872288e-08,2.935594667429464398e-08,3.003864310858056840e-08,3.072133954286649281e-08,3.140403597715241723e-08,3.208673241143834164e-08,3.276942884572426606e-08,3.345212528001019047e-08,3.413482171429611489e-08,3.481751814858203930e-08,3.550021458286796372e-08,3.618291101715388814e-08,3.686560745143981255e-08,3.754830388572573697e-08,3.823100032001166138e-08,3.891369675429758580e-08,3.959639318858351021e-08,4.027908962286943463e-08,4.096178605715535904e-08,4.164448249144128346e-08,4.232717892572720787e-08,4.300987536001313229e-08 +0.000000000000000000e+00,6.734504817220006666e-10,1.346900963444001333e-09,2.020351445166002000e-09,2.693801926888002666e-09,3.367252408610003333e-09,4.040702890332004000e-09,4.714153372054005080e-09,5.387603853776006160e-09,6.061054335498007240e-09,6.734504817220008321e-09,7.407955298942009401e-09,8.081405780664009654e-09,8.754856262386009907e-09,9.428306744108010160e-09,1.010175722583001041e-08,1.077520770755201067e-08,1.144865818927401092e-08,1.212210867099601117e-08,1.279555915271801143e-08,1.346900963444001168e-08,1.414246011616201193e-08,1.481591059788401218e-08,1.548936107960601244e-08,1.616281156132801269e-08,1.683626204305001294e-08,1.750971252477201320e-08,1.818316300649401345e-08,1.885661348821601370e-08,1.953006396993801396e-08,2.020351445166001421e-08,2.087696493338201446e-08,2.155041541510401471e-08,2.222386589682601497e-08,2.289731637854801522e-08,2.357076686027001547e-08,2.424421734199201573e-08,2.491766782371401598e-08,2.559111830543601623e-08,2.626456878715801649e-08,2.693801926888001674e-08,2.761146975060201699e-08,2.828492023232401724e-08,2.895837071404601750e-08,2.963182119576801775e-08,3.030527167749002131e-08,3.097872215921202487e-08,3.165217264093402844e-08,3.232562312265603200e-08,3.299907360437803556e-08,3.367252408610003912e-08,3.434597456782204268e-08,3.501942504954404624e-08,3.569287553126604981e-08,3.636632601298805337e-08,3.703977649471005693e-08,3.771322697643206049e-08,3.838667745815406405e-08,3.906012793987606762e-08,3.973357842159807118e-08,4.040702890332007474e-08,4.108047938504207830e-08,4.175392986676408186e-08,4.242738034848608542e-08 +0.000000000000000000e+00,-6.888369009280240784e-10,-1.377673801856048157e-09,-2.066510702784072339e-09,-2.755347603712096727e-09,-3.444184504640121116e-09,-4.133021405568145505e-09,-4.821858306496169893e-09,-5.510695207424194282e-09,-6.199532108352218670e-09,-6.888369009280243059e-09,-7.577205910208267448e-09,-8.266042811136292664e-09,-8.954879712064317879e-09,-9.643716612992343095e-09,-1.033255351392036831e-08,-1.102139041484839353e-08,-1.171022731577641874e-08,-1.239906421670444396e-08,-1.308790111763246917e-08,-1.377673801856049439e-08,-1.446557491948851961e-08,-1.515441182041654482e-08,-1.584324872134457169e-08,-1.653208562227259856e-08,-1.722092252320062543e-08,-1.790975942412865230e-08,-1.859859632505667917e-08,-1.928743322598470604e-08,-1.997627012691273291e-08,-2.066510702784075978e-08,-2.135394392876878665e-08,-2.204278082969681352e-08,-2.273161773062484039e-08,-2.342045463155286726e-08,-2.410929153248089413e-08,-2.479812843340892100e-08,-2.548696533433694787e-08,-2.617580223526497474e-08,-2.686463913619300161e-08,-2.755347603712102848e-08,-2.824231293804905535e-08,-2.893114983897708223e-08,-2.961998673990510910e-08,-3.030882364083313597e-08,-3.099766054176116284e-08,-3.168649744268918971e-08,-3.237533434361721658e-08,-3.306417124454524345e-08,-3.375300814547327032e-08,-3.444184504640129719e-08,-3.513068194732932406e-08,-3.581951884825735093e-08,-3.650835574918537780e-08,-3.719719265011340467e-08,-3.788602955104143154e-08,-3.857486645196945841e-08,-3.926370335289748528e-08,-3.995254025382551215e-08,-4.064137715475353902e-08,-4.133021405568156589e-08,-4.201905095660959276e-08,-4.270788785753761963e-08,-4.339672475846564650e-08 +0.000000000000000000e+00,-6.826964343001626753e-10,-1.365392868600325351e-09,-2.048089302900488026e-09,-2.730785737200650701e-09,-3.413482171500813376e-09,-4.096178605800976052e-09,-4.778875040101138727e-09,-5.461571474401301402e-09,-6.144267908701464077e-09,-6.826964343001626753e-09,-7.509660777301790255e-09,-8.192357211601953757e-09,-8.875053645902117260e-09,-9.557750080202280762e-09,-1.024044651450244426e-08,-1.092314294880260777e-08,-1.160583938310277127e-08,-1.228853581740293477e-08,-1.297123225170309827e-08,-1.365392868600326178e-08,-1.433662512030342528e-08,-1.501932155460358713e-08,-1.570201798890374898e-08,-1.638471442320391082e-08,-1.706741085750407267e-08,-1.775010729180423452e-08,-1.843280372610439637e-08,-1.911550016040455822e-08,-1.979819659470472006e-08,-2.048089302900488191e-08,-2.116358946330504376e-08,-2.184628589760520561e-08,-2.252898233190536746e-08,-2.321167876620552930e-08,-2.389437520050569115e-08,-2.457707163480585300e-08,-2.525976806910601485e-08,-2.594246450340617670e-08,-2.662516093770633854e-08,-2.730785737200650039e-08,-2.799055380630666224e-08,-2.867325024060682409e-08,-2.935594667490698594e-08,-3.003864310920714778e-08,-3.072133954350730632e-08,-3.140403597780746486e-08,-3.208673241210762340e-08,-3.276942884640778194e-08,-3.345212528070794048e-08,-3.413482171500809902e-08,-3.481751814930825756e-08,-3.550021458360841610e-08,-3.618291101790857464e-08,-3.686560745220873318e-08,-3.754830388650889172e-08,-3.823100032080905026e-08,-3.891369675510920880e-08,-3.959639318940936734e-08,-4.027908962370952588e-08,-4.096178605800968441e-08,-4.164448249230984295e-08,-4.232717892661000149e-08,-4.300987536091016003e-08 +0.000000000000000000e+00,-6.734504817268784473e-10,-1.346900963453756895e-09,-2.020351445180635238e-09,-2.693801926907513376e-09,-3.367252408634391513e-09,-4.040702890361269650e-09,-4.714153372088147787e-09,-5.387603853815025924e-09,-6.061054335541904061e-09,-6.734504817268782198e-09,-7.407955298995660335e-09,-8.081405780722537645e-09,-8.754856262449414955e-09,-9.428306744176292265e-09,-1.010175722590316958e-08,-1.077520770763004688e-08,-1.144865818935692419e-08,-1.212210867108380150e-08,-1.279555915281067881e-08,-1.346900963453755612e-08,-1.414246011626443343e-08,-1.481591059799131074e-08,-1.548936107971818805e-08,-1.616281156144506536e-08,-1.683626204317194267e-08,-1.750971252489881998e-08,-1.818316300662569729e-08,-1.885661348835257460e-08,-1.953006397007945191e-08,-2.020351445180632922e-08,-2.087696493353320653e-08,-2.155041541526008384e-08,-2.222386589698696115e-08,-2.289731637871383846e-08,-2.357076686044071577e-08,-2.424421734216759308e-08,-2.491766782389447039e-08,-2.559111830562134770e-08,-2.626456878734822501e-08,-2.693801926907510232e-08,-2.761146975080197963e-08,-2.828492023252885694e-08,-2.895837071425573425e-08,-2.963182119598261156e-08,-3.030527167770948887e-08,-3.097872215943636287e-08,-3.165217264116323688e-08,-3.232562312289011088e-08,-3.299907360461698488e-08,-3.367252408634385888e-08,-3.434597456807073288e-08,-3.501942504979760688e-08,-3.569287553152448088e-08,-3.636632601325135488e-08,-3.703977649497822888e-08,-3.771322697670510289e-08,-3.838667745843197689e-08,-3.906012794015885089e-08,-3.973357842188572489e-08,-4.040702890361259889e-08,-4.108047938533947289e-08,-4.175392986706634689e-08,-4.242738034879322089e-08 +0.000000000000000000e+00,6.844521663307720743e-10,1.368904332661544149e-09,2.053356498992316326e-09,2.737808665323088711e-09,3.422260831653861096e-09,4.106712997984633480e-09,4.791165164315406278e-09,5.475617330646179076e-09,6.160069496976951874e-09,6.844521663307724673e-09,7.528973829638497471e-09,8.213425995969270269e-09,8.897878162300043067e-09,9.582330328630815865e-09,1.026678249496158866e-08,1.095123466129236146e-08,1.163568682762313426e-08,1.232013899395390706e-08,1.300459116028467986e-08,1.368904332661545265e-08,1.437349549294622545e-08,1.505794765927699825e-08,1.574239982560777270e-08,1.642685199193854716e-08,1.711130415826932161e-08,1.779575632460009606e-08,1.848020849093087051e-08,1.916466065726164497e-08,1.984911282359241942e-08,2.053356498992319387e-08,2.121801715625396832e-08,2.190246932258474278e-08,2.258692148891551723e-08,2.327137365524629168e-08,2.395582582157706613e-08,2.464027798790784059e-08,2.532473015423861504e-08,2.600918232056938949e-08,2.669363448690016394e-08,2.737808665323093839e-08,2.806253881956171285e-08,2.874699098589248730e-08,2.943144315222326175e-08,3.011589531855403620e-08,3.080034748488481066e-08,3.148479965121558511e-08,3.216925181754635956e-08,3.285370398387713401e-08,3.353815615020790847e-08,3.422260831653868292e-08,3.490706048286945737e-08,3.559151264920023182e-08,3.627596481553100628e-08,3.696041698186178073e-08,3.764486914819255518e-08,3.832932131452332963e-08,3.901377348085410409e-08,3.969822564718487854e-08,4.038267781351565299e-08,4.106712997984642744e-08,4.175158214617720190e-08,4.243603431250797635e-08,4.312048647883875080e-08 +0.000000000000000000e+00,6.943976584260642218e-10,1.388795316852128444e-09,2.083192975278192665e-09,2.777590633704256887e-09,3.471988292130321109e-09,4.166385950556385331e-09,4.860783608982449553e-09,5.555181267408513774e-09,6.249578925834577996e-09,6.943976584260642218e-09,7.638374242686707267e-09,8.332771901112772316e-09,9.027169559538837365e-09,9.721567217964902414e-09,1.041596487639096746e-08,1.111036253481703251e-08,1.180476019324309756e-08,1.249915785166916261e-08,1.319355551009522766e-08,1.388795316852129271e-08,1.458235082694735776e-08,1.527674848537342115e-08,1.597114614379948455e-08,1.666554380222554794e-08,1.735994146065161134e-08,1.805433911907767473e-08,1.874873677750373812e-08,1.944313443592980152e-08,2.013753209435586491e-08,2.083192975278192831e-08,2.152632741120799170e-08,2.222072506963405510e-08,2.291512272806011849e-08,2.360952038648618189e-08,2.430391804491224528e-08,2.499831570333830868e-08,2.569271336176437207e-08,2.638711102019043547e-08,2.708150867861649886e-08,2.777590633704256225e-08,2.847030399546862565e-08,2.916470165389468904e-08,2.985909931232075244e-08,3.055349697074681583e-08,3.124789462917287923e-08,3.194229228759894262e-08,3.263668994602500602e-08,3.333108760445106941e-08,3.402548526287713281e-08,3.471988292130319620e-08,3.541428057972925960e-08,3.610867823815532299e-08,3.680307589658138638e-08,3.749747355500744978e-08,3.819187121343351317e-08,3.888626887185957657e-08,3.958066653028563996e-08,4.027506418871170336e-08,4.096946184713776675e-08,4.166385950556383015e-08,4.235825716398989354e-08,4.305265482241595694e-08,4.374705248084202033e-08 +0.000000000000000000e+00,6.659881567913321436e-10,1.331976313582664287e-09,1.997964470373996327e-09,2.663952627165328161e-09,3.329940783956659994e-09,3.995928940747991828e-09,4.661917097539323661e-09,5.327905254330655495e-09,5.993893411121987328e-09,6.659881567913319161e-09,7.325869724704650995e-09,7.991857881495982001e-09,8.657846038287313007e-09,9.323834195078644014e-09,9.989822351869975020e-09,1.065581050866130603e-08,1.132179866545263703e-08,1.198778682224396804e-08,1.265377497903529904e-08,1.331976313582663005e-08,1.398575129261796106e-08,1.465173944940929206e-08,1.531772760620062307e-08,1.598371576299195408e-08,1.664970391978328508e-08,1.731569207657461609e-08,1.798168023336594709e-08,1.864766839015727810e-08,1.931365654694860911e-08,1.997964470373994011e-08,2.064563286053127112e-08,2.131162101732260213e-08,2.197760917411393313e-08,2.264359733090526414e-08,2.330958548769659514e-08,2.397557364448792615e-08,2.464156180127925716e-08,2.530754995807058816e-08,2.597353811486191917e-08,2.663952627165325018e-08,2.730551442844458118e-08,2.797150258523591219e-08,2.863749074202724319e-08,2.930347889881857420e-08,2.996946705560990521e-08,3.063545521240123290e-08,3.130144336919256060e-08,3.196743152598388830e-08,3.263341968277521600e-08,3.329940783956654369e-08,3.396539599635787139e-08,3.463138415314919909e-08,3.529737230994052679e-08,3.596336046673185449e-08,3.662934862352318218e-08,3.729533678031450988e-08,3.796132493710583758e-08,3.862731309389716528e-08,3.929330125068849297e-08,3.995928940747982067e-08,4.062527756427114837e-08,4.129126572106247607e-08,4.195725387785380376e-08 +0.000000000000000000e+00,-6.844521663352853786e-10,-1.368904332670570757e-09,-2.053356499005856032e-09,-2.737808665341141101e-09,-3.422260831676426169e-09,-4.106712998011711237e-09,-4.791165164346996306e-09,-5.475617330682281374e-09,-6.160069497017566443e-09,-6.844521663352851511e-09,-7.528973829688136579e-09,-8.213425996023420820e-09,-8.897878162358705062e-09,-9.582330328693989303e-09,-1.026678249502927354e-08,-1.095123466136455779e-08,-1.163568682769984203e-08,-1.232013899403512627e-08,-1.300459116037041051e-08,-1.368904332670569475e-08,-1.437349549304097899e-08,-1.505794765937626323e-08,-1.574239982571154747e-08,-1.642685199204683171e-08,-1.711130415838211596e-08,-1.779575632471740020e-08,-1.848020849105268444e-08,-1.916466065738796868e-08,-1.984911282372325292e-08,-2.053356499005853716e-08,-2.121801715639382140e-08,-2.190246932272910564e-08,-2.258692148906438989e-08,-2.327137365539967413e-08,-2.395582582173495837e-08,-2.464027798807024261e-08,-2.532473015440552685e-08,-2.600918232074081109e-08,-2.669363448707609533e-08,-2.737808665341137957e-08,-2.806253881974666381e-08,-2.874699098608194806e-08,-2.943144315241723230e-08,-3.011589531875251985e-08,-3.080034748508780740e-08,-3.148479965142309495e-08,-3.216925181775838250e-08,-3.285370398409367005e-08,-3.353815615042895760e-08,-3.422260831676424515e-08,-3.490706048309953270e-08,-3.559151264943482025e-08,-3.627596481577010780e-08,-3.696041698210539535e-08,-3.764486914844068290e-08,-3.832932131477597045e-08,-3.901377348111125800e-08,-3.969822564744654555e-08,-4.038267781378183310e-08,-4.106712998011712065e-08,-4.175158214645240820e-08,-4.243603431278769575e-08,-4.312048647912298330e-08 +0.000000000000000000e+00,-6.943976584343543293e-10,-1.388795316868708659e-09,-2.083192975303063091e-09,-2.777590633737417731e-09,-3.471988292171772370e-09,-4.166385950606127010e-09,-4.860783609040482063e-09,-5.555181267474837116e-09,-6.249578925909192169e-09,-6.943976584343547222e-09,-7.638374242777902275e-09,-8.332771901212257328e-09,-9.027169559646612381e-09,-9.721567218080967434e-09,-1.041596487651532249e-08,-1.111036253494967754e-08,-1.180476019338403259e-08,-1.249915785181838765e-08,-1.319355551025274270e-08,-1.388795316868709775e-08,-1.458235082712145281e-08,-1.527674848555580786e-08,-1.597114614399016291e-08,-1.666554380242451797e-08,-1.735994146085887302e-08,-1.805433911929322807e-08,-1.874873677772758312e-08,-1.944313443616193818e-08,-2.013753209459629323e-08,-2.083192975303064828e-08,-2.152632741146500334e-08,-2.222072506989935839e-08,-2.291512272833371344e-08,-2.360952038676806850e-08,-2.430391804520242355e-08,-2.499831570363677860e-08,-2.569271336207113366e-08,-2.638711102050548871e-08,-2.708150867893984376e-08,-2.777590633737419881e-08,-2.847030399580855387e-08,-2.916470165424290892e-08,-2.985909931267726728e-08,-3.055349697111162234e-08,-3.124789462954597739e-08,-3.194229228798033244e-08,-3.263668994641468749e-08,-3.333108760484904255e-08,-3.402548526328339760e-08,-3.471988292171775265e-08,-3.541428058015210771e-08,-3.610867823858646276e-08,-3.680307589702081781e-08,-3.749747355545517287e-08,-3.819187121388952792e-08,-3.888626887232388297e-08,-3.958066653075823803e-08,-4.027506418919259308e-08,-4.096946184762694813e-08,-4.166385950606130318e-08,-4.235825716449565824e-08,-4.305265482293001329e-08,-4.374705248136436834e-08 +0.000000000000000000e+00,-6.659881567931845112e-10,-1.331976313586369022e-09,-1.997964470379553327e-09,-2.663952627172737631e-09,-3.329940783965921936e-09,-3.995928940759106654e-09,-4.661917097552291372e-09,-5.327905254345476090e-09,-5.993893411138660808e-09,-6.659881567931845526e-09,-7.325869724725030244e-09,-7.991857881518214962e-09,-8.657846038311400507e-09,-9.323834195104586052e-09,-9.989822351897771597e-09,-1.065581050869095714e-08,-1.132179866548414269e-08,-1.198778682227732823e-08,-1.265377497907051378e-08,-1.331976313586369932e-08,-1.398575129265688487e-08,-1.465173944945007041e-08,-1.531772760624325596e-08,-1.598371576303643985e-08,-1.664970391982962374e-08,-1.731569207662280763e-08,-1.798168023341599152e-08,-1.864766839020917541e-08,-1.931365654700235930e-08,-1.997964470379554319e-08,-2.064563286058872709e-08,-2.131162101738191098e-08,-2.197760917417509487e-08,-2.264359733096827876e-08,-2.330958548776146265e-08,-2.397557364455464654e-08,-2.464156180134783043e-08,-2.530754995814101432e-08,-2.597353811493419821e-08,-2.663952627172738210e-08,-2.730551442852056599e-08,-2.797150258531374988e-08,-2.863749074210693378e-08,-2.930347889890011767e-08,-2.996946705569329825e-08,-3.063545521248647883e-08,-3.130144336927965941e-08,-3.196743152607283999e-08,-3.263341968286602058e-08,-3.329940783965920116e-08,-3.396539599645238174e-08,-3.463138415324556232e-08,-3.529737231003874290e-08,-3.596336046683192349e-08,-3.662934862362510407e-08,-3.729533678041828465e-08,-3.796132493721146523e-08,-3.862731309400464582e-08,-3.929330125079782640e-08,-3.995928940759100698e-08,-4.062527756438418756e-08,-4.129126572117736814e-08,-4.195725387797054873e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.763057454992817535e-10,1.352611490998563507e-09,2.028917236497845261e-09,2.705222981997127014e-09,3.381528727496408768e-09,4.057834472995690521e-09,4.734140218494972275e-09,5.410445963994254028e-09,6.086751709493535782e-09,6.763057454992817535e-09,7.439363200492099289e-09,8.115668945991381042e-09,8.791974691490662796e-09,9.468280436989944549e-09,1.014458618248922630e-08,1.082089192798850806e-08,1.149719767348778981e-08,1.217350341898707156e-08,1.284980916448635332e-08,1.352611490998563507e-08,1.420242065548491682e-08,1.487872640098419858e-08,1.555503214648348199e-08,1.623133789198276539e-08,1.690764363748204880e-08,1.758394938298133221e-08,1.826025512848061562e-08,1.893656087397989902e-08,1.961286661947918243e-08,2.028917236497846584e-08,2.096547811047774925e-08,2.164178385597703266e-08,2.231808960147631606e-08,2.299439534697559947e-08,2.367070109247488288e-08,2.434700683797416629e-08,2.502331258347344970e-08,2.569961832897273310e-08,2.637592407447201651e-08,2.705222981997129992e-08,2.772853556547058333e-08,2.840484131096986674e-08,2.908114705646915014e-08,2.975745280196843355e-08,3.043375854746771696e-08,3.111006429296700368e-08,3.178637003846629039e-08,3.246267578396557711e-08,3.313898152946486383e-08,3.381528727496415054e-08,3.449159302046343726e-08,3.516789876596272398e-08,3.584420451146201069e-08,3.652051025696129741e-08,3.719681600246058413e-08,3.787312174795987084e-08,3.854942749345915756e-08,3.922573323895844427e-08,3.990203898445773099e-08,4.057834472995701771e-08,4.125465047545630442e-08,4.193095622095559114e-08,4.260726196645487786e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-6.763057455006894081e-10,-1.352611491001378816e-09,-2.028917236502068018e-09,-2.705222982002757219e-09,-3.381528727503446420e-09,-4.057834473004136035e-09,-4.734140218504825650e-09,-5.410445964005515265e-09,-6.086751709506204880e-09,-6.763057455006894495e-09,-7.439363200507584110e-09,-8.115668946008273725e-09,-8.791974691508963340e-09,-9.468280437009652955e-09,-1.014458618251034257e-08,-1.082089192801103218e-08,-1.149719767351172180e-08,-1.217350341901241141e-08,-1.284980916451310103e-08,-1.352611491001379064e-08,-1.420242065551448026e-08,-1.487872640101516987e-08,-1.555503214651586114e-08,-1.623133789201655076e-08,-1.690764363751724037e-08,-1.758394938301792999e-08,-1.826025512851861960e-08,-1.893656087401930922e-08,-1.961286661951999883e-08,-2.028917236502068845e-08,-2.096547811052137806e-08,-2.164178385602206768e-08,-2.231808960152275729e-08,-2.299439534702344691e-08,-2.367070109252413652e-08,-2.434700683802482614e-08,-2.502331258352551575e-08,-2.569961832902620537e-08,-2.637592407452689498e-08,-2.705222982002758460e-08,-2.772853556552827421e-08,-2.840484131102896383e-08,-2.908114705652965344e-08,-2.975745280203034306e-08,-3.043375854753103267e-08,-3.111006429303172229e-08,-3.178637003853241190e-08,-3.246267578403310152e-08,-3.313898152953379113e-08,-3.381528727503448075e-08,-3.449159302053517036e-08,-3.516789876603585998e-08,-3.584420451153654959e-08,-3.652051025703723921e-08,-3.719681600253792882e-08,-3.787312174803861844e-08,-3.854942749353930805e-08,-3.922573323903999767e-08,-3.990203898454068728e-08,-4.057834473004137690e-08,-4.125465047554206651e-08,-4.193095622104275613e-08,-4.260726196654344574e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.984049450386655155e-10,1.396809890077331031e-09,2.095214835115996340e-09,2.793619780154661648e-09,3.492024725193326957e-09,4.190429670231992680e-09,4.888834615270658402e-09,5.587239560309324124e-09,6.285644505347989846e-09,6.984049450386655569e-09,7.682454395425322118e-09,8.380859340463988668e-09,9.079264285502655217e-09,9.777669230541321767e-09,1.047607417557998832e-08,1.117447912061865487e-08,1.187288406565732142e-08,1.257128901069598796e-08,1.326969395573465451e-08,1.396809890077332106e-08,1.466650384581198761e-08,1.536490879085065416e-08,1.606331373588932071e-08,1.676171868092798726e-08,1.746012362596665381e-08,1.815852857100532036e-08,1.885693351604398691e-08,1.955533846108265346e-08,2.025374340612132001e-08,2.095214835115998656e-08,2.165055329619865311e-08,2.234895824123731966e-08,2.304736318627598621e-08,2.374576813131465276e-08,2.444417307635331931e-08,2.514257802139198586e-08,2.584098296643065241e-08,2.653938791146931895e-08,2.723779285650798550e-08,2.793619780154665205e-08,2.863460274658531860e-08,2.933300769162398515e-08,3.003141263666265170e-08,3.072981758170131494e-08,3.142822252673997818e-08,3.212662747177864142e-08,3.282503241681730467e-08,3.352343736185596791e-08,3.422184230689463115e-08,3.492024725193329439e-08,3.561865219697195763e-08,3.631705714201062087e-08,3.701546208704928411e-08,3.771386703208794735e-08,3.841227197712661059e-08,3.911067692216527383e-08,3.980908186720393707e-08,4.050748681224260031e-08,4.120589175728126355e-08,4.190429670231992680e-08,4.260270164735859004e-08,4.330110659239725328e-08,4.399951153743591652e-08 +0.000000000000000000e+00,6.903220629696394301e-10,1.380644125939278860e-09,2.070966188908918290e-09,2.761288251878557720e-09,3.451610314848197150e-09,4.141932377817836581e-09,4.832254440787476011e-09,5.522576503757115441e-09,6.212898566726754871e-09,6.903220629696394301e-09,7.593542692666034558e-09,8.283864755635674815e-09,8.974186818605315073e-09,9.664508881574955330e-09,1.035483094454459559e-08,1.104515300751423584e-08,1.173547507048387610e-08,1.242579713345351636e-08,1.311611919642315662e-08,1.380644125939279687e-08,1.449676332236243713e-08,1.518708538533207573e-08,1.587740744830171434e-08,1.656772951127135294e-08,1.725805157424099154e-08,1.794837363721063015e-08,1.863869570018026875e-08,1.932901776314990735e-08,2.001933982611954595e-08,2.070966188908918456e-08,2.139998395205882316e-08,2.209030601502846176e-08,2.278062807799810037e-08,2.347095014096773897e-08,2.416127220393737757e-08,2.485159426690701617e-08,2.554191632987665478e-08,2.623223839284629338e-08,2.692256045581593198e-08,2.761288251878557059e-08,2.830320458175520919e-08,2.899352664472484779e-08,2.968384870769448639e-08,3.037417077066412500e-08,3.106449283363376360e-08,3.175481489660340220e-08,3.244513695957304081e-08,3.313545902254267941e-08,3.382578108551231801e-08,3.451610314848195662e-08,3.520642521145159522e-08,3.589674727442123382e-08,3.658706933739087242e-08,3.727739140036051103e-08,3.796771346333014963e-08,3.865803552629978823e-08,3.934835758926942684e-08,4.003867965223906544e-08,4.072900171520870404e-08,4.141932377817834264e-08,4.210964584114798125e-08,4.279996790411761985e-08,4.349028996708725845e-08 +0.000000000000000000e+00,6.774339556199376919e-10,1.354867911239875384e-09,2.032301866859813076e-09,2.709735822479750768e-09,3.387169778099688460e-09,4.064603733719626152e-09,4.742037689339563430e-09,5.419471644959500708e-09,6.096905600579437987e-09,6.774339556199375265e-09,7.451773511819312543e-09,8.129207467439250649e-09,8.806641423059188754e-09,9.484075378679126860e-09,1.016150933429906497e-08,1.083894328991900307e-08,1.151637724553894118e-08,1.219381120115887928e-08,1.287124515677881739e-08,1.354867911239875549e-08,1.422611306801869360e-08,1.490354702363863170e-08,1.558098097925856816e-08,1.625841493487850461e-08,1.693584889049844106e-08,1.761328284611837751e-08,1.829071680173831396e-08,1.896815075735825041e-08,1.964558471297818686e-08,2.032301866859812331e-08,2.100045262421805976e-08,2.167788657983799622e-08,2.235532053545793267e-08,2.303275449107786912e-08,2.371018844669780557e-08,2.438762240231774202e-08,2.506505635793767847e-08,2.574249031355761492e-08,2.641992426917755137e-08,2.709735822479748782e-08,2.777479218041742428e-08,2.845222613603736073e-08,2.912966009165729718e-08,2.980709404727723032e-08,3.048452800289716346e-08,3.116196195851709661e-08,3.183939591413702975e-08,3.251682986975696289e-08,3.319426382537689603e-08,3.387169778099682918e-08,3.454913173661676232e-08,3.522656569223669546e-08,3.590399964785662860e-08,3.658143360347656174e-08,3.725886755909649489e-08,3.793630151471642803e-08,3.861373547033636117e-08,3.929116942595629431e-08,3.996860338157622746e-08,4.064603733719616060e-08,4.132347129281609374e-08,4.200090524843602688e-08,4.267833920405596003e-08 +0.000000000000000000e+00,-6.984049450762186882e-10,-1.396809890152437376e-09,-2.095214835228655858e-09,-2.793619780304874339e-09,-3.492024725381092820e-09,-4.190429670457311715e-09,-4.888834615533530610e-09,-5.587239560609749505e-09,-6.285644505685968400e-09,-6.984049450762187295e-09,-7.682454395838406190e-09,-8.380859340914625085e-09,-9.079264285990843980e-09,-9.777669231067062875e-09,-1.047607417614328177e-08,-1.117447912121950066e-08,-1.187288406629571956e-08,-1.257128901137193845e-08,-1.326969395644815735e-08,-1.396809890152437624e-08,-1.466650384660059514e-08,-1.536490879167681238e-08,-1.606331373675302962e-08,-1.676171868182924686e-08,-1.746012362690546410e-08,-1.815852857198168134e-08,-1.885693351705789858e-08,-1.955533846213411582e-08,-2.025374340721033306e-08,-2.095214835228655030e-08,-2.165055329736276755e-08,-2.234895824243898479e-08,-2.304736318751520203e-08,-2.374576813259141927e-08,-2.444417307766763651e-08,-2.514257802274385375e-08,-2.584098296782007099e-08,-2.653938791289628823e-08,-2.723779285797250547e-08,-2.793619780304872271e-08,-2.863460274812493995e-08,-2.933300769320115719e-08,-3.003141263827737443e-08,-3.072981758335359167e-08,-3.142822252842980891e-08,-3.212662747350602615e-08,-3.282503241858224339e-08,-3.352343736365846064e-08,-3.422184230873467788e-08,-3.492024725381089512e-08,-3.561865219888711236e-08,-3.631705714396332960e-08,-3.701546208903954684e-08,-3.771386703411576408e-08,-3.841227197919198132e-08,-3.911067692426819856e-08,-3.980908186934441580e-08,-4.050748681442063304e-08,-4.120589175949685028e-08,-4.190429670457306752e-08,-4.260270164964928476e-08,-4.330110659472550200e-08,-4.399951153980171924e-08 +0.000000000000000000e+00,-6.903220630135470042e-10,-1.380644126027094008e-09,-2.070966189040641013e-09,-2.761288252054188017e-09,-3.451610315067735021e-09,-4.141932378081282025e-09,-4.832254441094829029e-09,-5.522576504108376033e-09,-6.212898567121923038e-09,-6.903220630135470042e-09,-7.593542693149017046e-09,-8.283864756162564050e-09,-8.974186819176111054e-09,-9.664508882189658059e-09,-1.035483094520320506e-08,-1.104515300821675207e-08,-1.173547507123029907e-08,-1.242579713424384608e-08,-1.311611919725739308e-08,-1.380644126027094008e-08,-1.449676332328448709e-08,-1.518708538629803409e-08,-1.587740744931158275e-08,-1.656772951232513141e-08,-1.725805157533868007e-08,-1.794837363835222873e-08,-1.863869570136577738e-08,-1.932901776437932604e-08,-2.001933982739287470e-08,-2.070966189040642336e-08,-2.139998395341997202e-08,-2.209030601643352068e-08,-2.278062807944706934e-08,-2.347095014246061799e-08,-2.416127220547416665e-08,-2.485159426848771531e-08,-2.554191633150126397e-08,-2.623223839451481263e-08,-2.692256045752836129e-08,-2.761288252054190995e-08,-2.830320458355545860e-08,-2.899352664656900726e-08,-2.968384870958255592e-08,-3.037417077259610127e-08,-3.106449283560964662e-08,-3.175481489862319197e-08,-3.244513696163673732e-08,-3.313545902465028267e-08,-3.382578108766382802e-08,-3.451610315067737337e-08,-3.520642521369091872e-08,-3.589674727670446407e-08,-3.658706933971800942e-08,-3.727739140273155477e-08,-3.796771346574510012e-08,-3.865803552875864547e-08,-3.934835759177219082e-08,-4.003867965478573617e-08,-4.072900171779928152e-08,-4.141932378081282687e-08,-4.210964584382637222e-08,-4.279996790683991757e-08,-4.349028996985346292e-08 +0.000000000000000000e+00,-6.774339556508960637e-10,-1.354867911301792127e-09,-2.032301866952688088e-09,-2.709735822603583841e-09,-3.387169778254479595e-09,-4.064603733905375348e-09,-4.742037689556271515e-09,-5.419471645207167683e-09,-6.096905600858063850e-09,-6.774339556508960017e-09,-7.451773512159856184e-09,-8.129207467810752351e-09,-8.806641423461648518e-09,-9.484075379112544685e-09,-1.016150933476344085e-08,-1.083894329041433702e-08,-1.151637724606523319e-08,-1.219381120171612935e-08,-1.287124515736702552e-08,-1.354867911301792169e-08,-1.422611306866881786e-08,-1.490354702431971568e-08,-1.558098097997061184e-08,-1.625841493562150801e-08,-1.693584889127240418e-08,-1.761328284692330035e-08,-1.829071680257419651e-08,-1.896815075822509268e-08,-1.964558471387598885e-08,-2.032301866952688501e-08,-2.100045262517778118e-08,-2.167788658082867735e-08,-2.235532053647957351e-08,-2.303275449213046968e-08,-2.371018844778136585e-08,-2.438762240343226202e-08,-2.506505635908315818e-08,-2.574249031473405435e-08,-2.641992427038495052e-08,-2.709735822603584668e-08,-2.777479218168674285e-08,-2.845222613733763902e-08,-2.912966009298853519e-08,-2.980709404863943135e-08,-3.048452800429032752e-08,-3.116196195994122369e-08,-3.183939591559211985e-08,-3.251682987124301602e-08,-3.319426382689391219e-08,-3.387169778254480836e-08,-3.454913173819570452e-08,-3.522656569384660069e-08,-3.590399964949749686e-08,-3.658143360514839302e-08,-3.725886756079928919e-08,-3.793630151645018536e-08,-3.861373547210108153e-08,-3.929116942775197769e-08,-3.996860338340287386e-08,-4.064603733905377003e-08,-4.132347129470466619e-08,-4.200090525035556236e-08,-4.267833920600645853e-08 +0.000000000000000000e+00,7.157049271751542816e-10,1.431409854350308563e-09,2.147114781525462741e-09,2.862819708700616713e-09,3.578524635875770684e-09,4.294229563050924655e-09,5.009934490226079040e-09,5.725639417401233425e-09,6.441344344576387810e-09,7.157049271751542195e-09,7.872754198926696580e-09,8.588459126101850965e-09,9.304164053277005350e-09,1.001986898045215973e-08,1.073557390762731412e-08,1.145127883480246850e-08,1.216698376197762289e-08,1.288268868915277727e-08,1.359839361632793166e-08,1.431409854350308604e-08,1.502980347067823878e-08,1.574550839785338985e-08,1.646121332502854093e-08,1.717691825220369200e-08,1.789262317937884308e-08,1.860832810655399416e-08,1.932403303372914523e-08,2.003973796090429631e-08,2.075544288807944739e-08,2.147114781525459846e-08,2.218685274242974954e-08,2.290255766960490061e-08,2.361826259678005169e-08,2.433396752395520277e-08,2.504967245113035384e-08,2.576537737830550492e-08,2.648108230548065599e-08,2.719678723265580707e-08,2.791249215983095815e-08,2.862819708700610922e-08,2.934390201418126030e-08,3.005960694135641138e-08,3.077531186853156245e-08,3.149101679570671353e-08,3.220672172288186460e-08,3.292242665005701568e-08,3.363813157723216676e-08,3.435383650440731783e-08,3.506954143158246891e-08,3.578524635875761999e-08,3.650095128593277106e-08,3.721665621310792214e-08,3.793236114028307321e-08,3.864806606745822429e-08,3.936377099463337537e-08,4.007947592180852644e-08,4.079518084898367752e-08,4.151088577615882860e-08,4.222659070333397967e-08,4.294229563050913075e-08,4.365800055768428182e-08,4.437370548485943290e-08,4.508941041203458398e-08 +0.000000000000000000e+00,7.070137497569677991e-10,1.414027499513935598e-09,2.121041249270903501e-09,2.828054999027871610e-09,3.535068748784839719e-09,4.242082498541807829e-09,4.949096248298775938e-09,5.656109998055744047e-09,6.363123747812712156e-09,7.070137497569680266e-09,7.777151247326648375e-09,8.484164997083617311e-09,9.191178746840586248e-09,9.898192496597555184e-09,1.060520624635452412e-08,1.131221999611149306e-08,1.201923374586846199e-08,1.272624749562543093e-08,1.343326124538239987e-08,1.414027499513936880e-08,1.484728874489633774e-08,1.555430249465330668e-08,1.626131624441027561e-08,1.696832999416724455e-08,1.767534374392421349e-08,1.838235749368118242e-08,1.908937124343815136e-08,1.979638499319512030e-08,2.050339874295208923e-08,2.121041249270905817e-08,2.191742624246602710e-08,2.262443999222299604e-08,2.333145374197996498e-08,2.403846749173693391e-08,2.474548124149390285e-08,2.545249499125087179e-08,2.615950874100784072e-08,2.686652249076480966e-08,2.757353624052177860e-08,2.828054999027874753e-08,2.898756374003571647e-08,2.969457748979268541e-08,3.040159123954965434e-08,3.110860498930661997e-08,3.181561873906358560e-08,3.252263248882055123e-08,3.322964623857751685e-08,3.393665998833448248e-08,3.464367373809144811e-08,3.535068748784841374e-08,3.605770123760537936e-08,3.676471498736234499e-08,3.747172873711931062e-08,3.817874248687627625e-08,3.888575623663324188e-08,3.959276998639020750e-08,4.029978373614717313e-08,4.100679748590413876e-08,4.171381123566110439e-08,4.242082498541807001e-08,4.312783873517503564e-08,4.383485248493200127e-08,4.454186623468896690e-08 +0.000000000000000000e+00,6.917737207448558834e-10,1.383547441489711767e-09,2.075321162234567650e-09,2.767094882979423534e-09,3.458868603724279417e-09,4.150642324469135301e-09,4.842416045213991598e-09,5.534189765958847895e-09,6.225963486703704192e-09,6.917737207448560489e-09,7.609510928193416786e-09,8.301284648938272256e-09,8.993058369683127726e-09,9.684832090427983195e-09,1.037660581117283867e-08,1.106837953191769414e-08,1.176015325266254961e-08,1.245192697340740507e-08,1.314370069415226054e-08,1.383547441489711601e-08,1.452724813564197148e-08,1.521902185638682695e-08,1.591079557713168242e-08,1.660256929787653789e-08,1.729434301862139336e-08,1.798611673936624883e-08,1.867789046011110430e-08,1.936966418085595977e-08,2.006143790160081524e-08,2.075321162234567071e-08,2.144498534309052618e-08,2.213675906383538165e-08,2.282853278458023712e-08,2.352030650532509259e-08,2.421208022606994806e-08,2.490385394681480353e-08,2.559562766755965900e-08,2.628740138830451447e-08,2.697917510904936994e-08,2.767094882979422541e-08,2.836272255053908088e-08,2.905449627128393635e-08,2.974626999202879182e-08,3.043804371277364729e-08,3.112981743351850276e-08,3.182159115426335823e-08,3.251336487500821370e-08,3.320513859575306917e-08,3.389691231649792464e-08,3.458868603724278011e-08,3.528045975798763558e-08,3.597223347873249105e-08,3.666400719947734652e-08,3.735578092022220199e-08,3.804755464096705746e-08,3.873932836171191293e-08,3.943110208245676840e-08,4.012287580320162387e-08,4.081464952394647934e-08,4.150642324469133481e-08,4.219819696543619028e-08,4.288997068618104575e-08,4.358174440692590122e-08 +0.000000000000000000e+00,-7.157049271994866265e-10,-1.431409854398973253e-09,-2.147114781598459776e-09,-2.862819708797946092e-09,-3.578524635997432408e-09,-4.294229563196918725e-09,-5.009934490396405455e-09,-5.725639417595892184e-09,-6.441344344795378914e-09,-7.157049271994865644e-09,-7.872754199194352374e-09,-8.588459126393839104e-09,-9.304164053593325834e-09,-1.001986898079281256e-08,-1.073557390799229929e-08,-1.145127883519178602e-08,-1.216698376239127275e-08,-1.288268868959075948e-08,-1.359839361679024621e-08,-1.431409854398973294e-08,-1.502980347118921802e-08,-1.574550839838870144e-08,-1.646121332558818486e-08,-1.717691825278766828e-08,-1.789262317998715170e-08,-1.860832810718663512e-08,-1.932403303438611854e-08,-2.003973796158560197e-08,-2.075544288878508539e-08,-2.147114781598456881e-08,-2.218685274318405223e-08,-2.290255767038353565e-08,-2.361826259758301907e-08,-2.433396752478250249e-08,-2.504967245198198591e-08,-2.576537737918146934e-08,-2.648108230638095276e-08,-2.719678723358043618e-08,-2.791249216077991960e-08,-2.862819708797940302e-08,-2.934390201517888644e-08,-3.005960694237836986e-08,-3.077531186957785328e-08,-3.149101679677733670e-08,-3.220672172397682013e-08,-3.292242665117630355e-08,-3.363813157837578697e-08,-3.435383650557527039e-08,-3.506954143277475381e-08,-3.578524635997423723e-08,-3.650095128717372065e-08,-3.721665621437320407e-08,-3.793236114157268749e-08,-3.864806606877217092e-08,-3.936377099597165434e-08,-4.007947592317113776e-08,-4.079518085037062118e-08,-4.151088577757010460e-08,-4.222659070476958802e-08,-4.294229563196907144e-08,-4.365800055916855486e-08,-4.437370548636803828e-08,-4.508941041356752171e-08 +0.000000000000000000e+00,-7.070137497880522125e-10,-1.414027499576104425e-09,-2.121041249364156534e-09,-2.828054999152208437e-09,-3.535068748940260339e-09,-4.242082498728312241e-09,-4.949096248516364144e-09,-5.656109998304416046e-09,-6.363123748092467948e-09,-7.070137497880519851e-09,-7.777151247668571753e-09,-8.484164997456622828e-09,-9.191178747244673903e-09,-9.898192497032724979e-09,-1.060520624682077605e-08,-1.131221999660882713e-08,-1.201923374639687820e-08,-1.272624749618492928e-08,-1.343326124597298035e-08,-1.414027499576103143e-08,-1.484728874554908250e-08,-1.555430249533713358e-08,-1.626131624512518466e-08,-1.696832999491323573e-08,-1.767534374470128681e-08,-1.838235749448933788e-08,-1.908937124427738896e-08,-1.979638499406544003e-08,-2.050339874385349111e-08,-2.121041249364154218e-08,-2.191742624342959326e-08,-2.262443999321764433e-08,-2.333145374300569541e-08,-2.403846749279374648e-08,-2.474548124258179756e-08,-2.545249499236984863e-08,-2.615950874215789971e-08,-2.686652249194595078e-08,-2.757353624173400186e-08,-2.828054999152205293e-08,-2.898756374131010401e-08,-2.969457749109815508e-08,-3.040159124088620616e-08,-3.110860499067426054e-08,-3.181561874046231493e-08,-3.252263249025036931e-08,-3.322964624003842369e-08,-3.393665998982647808e-08,-3.464367373961453246e-08,-3.535068748940258685e-08,-3.605770123919064123e-08,-3.676471498897869561e-08,-3.747172873876675000e-08,-3.817874248855480438e-08,-3.888575623834285877e-08,-3.959276998813091315e-08,-4.029978373791896753e-08,-4.100679748770702192e-08,-4.171381123749507630e-08,-4.242082498728313068e-08,-4.312783873707118507e-08,-4.383485248685923945e-08,-4.454186623664729384e-08 +0.000000000000000000e+00,-6.917737207660248829e-10,-1.383547441532049766e-09,-2.075321162298074855e-09,-2.767094883064099945e-09,-3.458868603830125035e-09,-4.150642324596149711e-09,-4.842416045362174387e-09,-5.534189766128199063e-09,-6.225963486894223739e-09,-6.917737207660248415e-09,-7.609510928426273091e-09,-8.301284649192297767e-09,-8.993058369958322444e-09,-9.684832090724347120e-09,-1.037660581149037180e-08,-1.106837953225639647e-08,-1.176015325302242115e-08,-1.245192697378844582e-08,-1.314370069455447050e-08,-1.383547441532049518e-08,-1.452724813608651985e-08,-1.521902185685254287e-08,-1.591079557761856755e-08,-1.660256929838459223e-08,-1.729434301915061690e-08,-1.798611673991664158e-08,-1.867789046068266625e-08,-1.936966418144869093e-08,-2.006143790221471561e-08,-2.075321162298074028e-08,-2.144498534374676496e-08,-2.213675906451278964e-08,-2.282853278527881431e-08,-2.352030650604483899e-08,-2.421208022681086366e-08,-2.490385394757688834e-08,-2.559562766834291302e-08,-2.628740138910893769e-08,-2.697917510987496237e-08,-2.767094883064098704e-08,-2.836272255140701172e-08,-2.905449627217303640e-08,-2.974626999293906107e-08,-3.043804371370508575e-08,-3.112981743447111042e-08,-3.182159115523713510e-08,-3.251336487600315978e-08,-3.320513859676918445e-08,-3.389691231753520913e-08,-3.458868603830123380e-08,-3.528045975906725848e-08,-3.597223347983328316e-08,-3.666400720059930783e-08,-3.735578092136533251e-08,-3.804755464213135719e-08,-3.873932836289738186e-08,-3.943110208366340654e-08,-4.012287580442943121e-08,-4.081464952519545589e-08,-4.150642324596148057e-08,-4.219819696672750524e-08,-4.288997068749352992e-08,-4.358174440825955459e-08 +0.000000000000000000e+00,7.303297705457459635e-10,1.460659541091491927e-09,2.190989311637237890e-09,2.921319082182983854e-09,3.651648852728729817e-09,4.381978623274475781e-09,5.112308393820221744e-09,5.842638164365967708e-09,6.572967934911713671e-09,7.303297705457459635e-09,8.033627476003205598e-09,8.763957246548951562e-09,9.494287017094697525e-09,1.022461678764044349e-08,1.095494655818618945e-08,1.168527632873193542e-08,1.241560609927768138e-08,1.314593586982342734e-08,1.387626564036917331e-08,1.460659541091491927e-08,1.533692518146066523e-08,1.606725495200641120e-08,1.679758472255215716e-08,1.752791449309790312e-08,1.825824426364364909e-08,1.898857403418939505e-08,1.971890380473514101e-08,2.044923357528088698e-08,2.117956334582663294e-08,2.190989311637237890e-08,2.264022288691812487e-08,2.337055265746387083e-08,2.410088242800961679e-08,2.483121219855536276e-08,2.556154196910110872e-08,2.629187173964685469e-08,2.702220151019260065e-08,2.775253128073834661e-08,2.848286105128409258e-08,2.921319082182983854e-08,2.994352059237558781e-08,3.067385036292133708e-08,3.140418013346708636e-08,3.213450990401283563e-08,3.286483967455858490e-08,3.359516944510433417e-08,3.432549921565008344e-08,3.505582898619583272e-08,3.578615875674158199e-08,3.651648852728733126e-08,3.724681829783308053e-08,3.797714806837882981e-08,3.870747783892457908e-08,3.943780760947032835e-08,4.016813738001607762e-08,4.089846715056182689e-08,4.162879692110757617e-08,4.235912669165332544e-08,4.308945646219907471e-08,4.381978623274482398e-08,4.455011600329057326e-08,4.528044577383632253e-08,4.601077554438207180e-08 +0.000000000000000000e+00,7.222011035116294276e-10,1.444402207023258855e-09,2.166603310534888490e-09,2.888804414046518124e-09,3.611005517558147758e-09,4.333206621069776979e-09,5.055407724581406200e-09,5.777608828093035421e-09,6.499809931604664642e-09,7.222011035116293862e-09,7.944212138627923083e-09,8.666413242139552304e-09,9.388614345651181525e-09,1.011081544916281075e-08,1.083301655267443997e-08,1.155521765618606919e-08,1.227741875969769841e-08,1.299961986320932763e-08,1.372182096672095685e-08,1.444402207023258607e-08,1.516622317374421529e-08,1.588842427725584617e-08,1.661062538076747704e-08,1.733282648427910792e-08,1.805502758779073879e-08,1.877722869130236967e-08,1.949942979481400054e-08,2.022163089832563142e-08,2.094383200183726229e-08,2.166603310534889317e-08,2.238823420886052404e-08,2.311043531237215492e-08,2.383263641588378579e-08,2.455483751939541667e-08,2.527703862290704754e-08,2.599923972641867842e-08,2.672144082993030929e-08,2.744364193344194017e-08,2.816584303695357104e-08,2.888804414046520192e-08,2.961024524397683279e-08,3.033244634748846367e-08,3.105464745100009785e-08,3.177684855451173204e-08,3.249904965802336622e-08,3.322125076153500040e-08,3.394345186504663459e-08,3.466565296855826877e-08,3.538785407206990296e-08,3.611005517558153714e-08,3.683225627909317132e-08,3.755445738260480551e-08,3.827665848611643969e-08,3.899885958962807388e-08,3.972106069313970806e-08,4.044326179665134224e-08,4.116546290016297643e-08,4.188766400367461061e-08,4.260986510718624480e-08,4.333206621069787898e-08,4.405426731420951316e-08,4.477646841772114735e-08,4.549866952123278153e-08 +0.000000000000000000e+00,7.064029843268612222e-10,1.412805968653722444e-09,2.119208952980583460e-09,2.825611937307444475e-09,3.532014921634305491e-09,4.238417905961166920e-09,4.944820890288028349e-09,5.651223874614889778e-09,6.357626858941751206e-09,7.064029843268612635e-09,7.770432827595474892e-09,8.476835811922337148e-09,9.183238796249199404e-09,9.889641780576061660e-09,1.059604476490292392e-08,1.130244774922978617e-08,1.200885073355664843e-08,1.271525371788351068e-08,1.342165670221037294e-08,1.412805968653723520e-08,1.483446267086409745e-08,1.554086565519095971e-08,1.624726863951782197e-08,1.695367162384468422e-08,1.766007460817154648e-08,1.836647759249840873e-08,1.907288057682527099e-08,1.977928356115213325e-08,2.048568654547899550e-08,2.119208952980585776e-08,2.189849251413272001e-08,2.260489549845958227e-08,2.331129848278644453e-08,2.401770146711330678e-08,2.472410445144016904e-08,2.543050743576703130e-08,2.613691042009389355e-08,2.684331340442075581e-08,2.754971638874761806e-08,2.825611937307448032e-08,2.896252235740134258e-08,2.966892534172820483e-08,3.037532832605506709e-08,3.108173131038192604e-08,3.178813429470878498e-08,3.249453727903564393e-08,3.320094026336250288e-08,3.390734324768936183e-08,3.461374623201622077e-08,3.532014921634307972e-08,3.602655220066993867e-08,3.673295518499679762e-08,3.743935816932365656e-08,3.814576115365051551e-08,3.885216413797737446e-08,3.955856712230423341e-08,4.026497010663109235e-08,4.097137309095795130e-08,4.167777607528481025e-08,4.238417905961166920e-08,4.309058204393852814e-08,4.379698502826538709e-08,4.450338801259224604e-08 +0.000000000000000000e+00,-7.303297705579747949e-10,-1.460659541115949590e-09,-2.190989311673924178e-09,-2.921319082231898766e-09,-3.651648852789873354e-09,-4.381978623347848356e-09,-5.112308393905823357e-09,-5.842638164463798359e-09,-6.572967935021773361e-09,-7.303297705579748362e-09,-8.033627476137723364e-09,-8.763957246695698366e-09,-9.494287017253673367e-09,-1.022461678781164837e-08,-1.095494655836962337e-08,-1.168527632892759837e-08,-1.241560609948557337e-08,-1.314593587004354838e-08,-1.387626564060152338e-08,-1.460659541115949838e-08,-1.533692518171747173e-08,-1.606725495227544342e-08,-1.679758472283341511e-08,-1.752791449339138680e-08,-1.825824426394935850e-08,-1.898857403450733019e-08,-1.971890380506530188e-08,-2.044923357562327358e-08,-2.117956334618124527e-08,-2.190989311673921696e-08,-2.264022288729718866e-08,-2.337055265785516035e-08,-2.410088242841313204e-08,-2.483121219897110373e-08,-2.556154196952907543e-08,-2.629187174008704712e-08,-2.702220151064501881e-08,-2.775253128120299051e-08,-2.848286105176096220e-08,-2.921319082231893389e-08,-2.994352059287690558e-08,-3.067385036343487728e-08,-3.140418013399284897e-08,-3.213450990455082066e-08,-3.286483967510879236e-08,-3.359516944566676405e-08,-3.432549921622473574e-08,-3.505582898678270744e-08,-3.578615875734067913e-08,-3.651648852789865082e-08,-3.724681829845662251e-08,-3.797714806901459421e-08,-3.870747783957256590e-08,-3.943780761013053759e-08,-4.016813738068850929e-08,-4.089846715124648098e-08,-4.162879692180445267e-08,-4.235912669236242436e-08,-4.308945646292039606e-08,-4.381978623347836775e-08,-4.455011600403633944e-08,-4.528044577459431114e-08,-4.601077554515228283e-08 +0.000000000000000000e+00,-7.222011035294029540e-10,-1.444402207058805908e-09,-2.166603310588208965e-09,-2.888804414117612230e-09,-3.611005517647015494e-09,-4.333206621176418758e-09,-5.055407724705822436e-09,-5.777608828235226114e-09,-6.499809931764629791e-09,-7.222011035294033469e-09,-7.944212138823437147e-09,-8.666413242352840825e-09,-9.388614345882244503e-09,-1.011081544941164818e-08,-1.083301655294105186e-08,-1.155521765647045554e-08,-1.227741875999985921e-08,-1.299961986352926289e-08,-1.372182096705866657e-08,-1.444402207058807025e-08,-1.516622317411747558e-08,-1.588842427764688091e-08,-1.661062538117628624e-08,-1.733282648470569158e-08,-1.805502758823509691e-08,-1.877722869176450224e-08,-1.949942979529390757e-08,-2.022163089882331290e-08,-2.094383200235271824e-08,-2.166603310588212357e-08,-2.238823420941152890e-08,-2.311043531294093423e-08,-2.383263641647033957e-08,-2.455483751999974490e-08,-2.527703862352915023e-08,-2.599923972705855556e-08,-2.672144083058796089e-08,-2.744364193411736623e-08,-2.816584303764677156e-08,-2.888804414117617689e-08,-2.961024524470558222e-08,-3.033244634823499086e-08,-3.105464745176439950e-08,-3.177684855529380815e-08,-3.249904965882321679e-08,-3.322125076235262543e-08,-3.394345186588203407e-08,-3.466565296941144271e-08,-3.538785407294085135e-08,-3.611005517647025999e-08,-3.683225627999966863e-08,-3.755445738352907727e-08,-3.827665848705848591e-08,-3.899885959058789455e-08,-3.972106069411730320e-08,-4.044326179764671184e-08,-4.116546290117612048e-08,-4.188766400470552912e-08,-4.260986510823493776e-08,-4.333206621176434640e-08,-4.405426731529375504e-08,-4.477646841882316368e-08,-4.549866952235257232e-08 +0.000000000000000000e+00,-7.064029843395470709e-10,-1.412805968679094142e-09,-2.119208953018641213e-09,-2.825611937358188283e-09,-3.532014921697735354e-09,-4.238417906037282425e-09,-4.944820890376829496e-09,-5.651223874716376567e-09,-6.357626859055923638e-09,-7.064029843395470709e-09,-7.770432827735016952e-09,-8.476835812074563196e-09,-9.183238796414109440e-09,-9.889641780753655683e-09,-1.059604476509320193e-08,-1.130244774943274817e-08,-1.200885073377229441e-08,-1.271525371811184066e-08,-1.342165670245138690e-08,-1.412805968679093315e-08,-1.483446267113047939e-08,-1.554086565547002729e-08,-1.624726863980957519e-08,-1.695367162414912308e-08,-1.766007460848867098e-08,-1.836647759282821888e-08,-1.907288057716776678e-08,-1.977928356150731468e-08,-2.048568654584686257e-08,-2.119208953018641047e-08,-2.189849251452595837e-08,-2.260489549886550627e-08,-2.331129848320505417e-08,-2.401770146754460206e-08,-2.472410445188414996e-08,-2.543050743622369786e-08,-2.613691042056324576e-08,-2.684331340490279366e-08,-2.754971638924234155e-08,-2.825611937358188945e-08,-2.896252235792143735e-08,-2.966892534226098525e-08,-3.037532832660052984e-08,-3.108173131094007443e-08,-3.178813429527961902e-08,-3.249453727961916361e-08,-3.320094026395870819e-08,-3.390734324829825278e-08,-3.461374623263779737e-08,-3.532014921697734196e-08,-3.602655220131688655e-08,-3.673295518565643114e-08,-3.743935816999597573e-08,-3.814576115433552032e-08,-3.885216413867506491e-08,-3.955856712301460950e-08,-4.026497010735415409e-08,-4.097137309169369868e-08,-4.167777607603324327e-08,-4.238417906037278786e-08,-4.309058204471233244e-08,-4.379698502905187703e-08,-4.450338801339142162e-08 +0.000000000000000000e+00,7.316189739134752972e-10,1.463237947826950594e-09,2.194856921740425995e-09,2.926475895653901603e-09,3.658094869567377210e-09,4.389713843480852817e-09,5.121332817394328011e-09,5.852951791307803205e-09,6.584570765221278399e-09,7.316189739134753593e-09,8.047808713048228787e-09,8.779427686961703981e-09,9.511046660875179174e-09,1.024266563478865437e-08,1.097428460870212956e-08,1.170590358261560476e-08,1.243752255652907995e-08,1.316914153044255514e-08,1.390076050435603034e-08,1.463237947826950553e-08,1.536399845218298073e-08,1.609561742609645757e-08,1.682723640000993442e-08,1.755885537392341127e-08,1.829047434783688812e-08,1.902209332175036497e-08,1.975371229566384181e-08,2.048533126957731866e-08,2.121695024349079551e-08,2.194856921740427236e-08,2.268018819131774921e-08,2.341180716523122606e-08,2.414342613914470290e-08,2.487504511305817975e-08,2.560666408697165660e-08,2.633828306088513345e-08,2.706990203479861030e-08,2.780152100871208714e-08,2.853313998262556399e-08,2.926475895653904084e-08,2.999637793045251438e-08,3.072799690436598792e-08,3.145961587827946146e-08,3.219123485219293500e-08,3.292285382610640854e-08,3.365447280001988208e-08,3.438609177393335562e-08,3.511771074784682916e-08,3.584932972176030270e-08,3.658094869567377624e-08,3.731256766958724978e-08,3.804418664350072332e-08,3.877580561741419685e-08,3.950742459132767039e-08,4.023904356524114393e-08,4.097066253915461747e-08,4.170228151306809101e-08,4.243390048698156455e-08,4.316551946089503809e-08,4.389713843480851163e-08,4.462875740872198517e-08,4.536037638263545871e-08,4.609199535654893225e-08 +0.000000000000000000e+00,7.388853246154842423e-10,1.477770649230968485e-09,2.216655973846452830e-09,2.955541298461937383e-09,3.694426623077421935e-09,4.433311947692906488e-09,5.172197272308391040e-09,5.911082596923875593e-09,6.649967921539360145e-09,7.388853246154844698e-09,8.127738570770330078e-09,8.866623895385814630e-09,9.605509220001299183e-09,1.034439454461678374e-08,1.108327986923226829e-08,1.182216519384775284e-08,1.256105051846323739e-08,1.329993584307872195e-08,1.403882116769420650e-08,1.477770649230969105e-08,1.551659181692517560e-08,1.625547714154066016e-08,1.699436246615614471e-08,1.773324779077162926e-08,1.847213311538711381e-08,1.921101844000259837e-08,1.994990376461808292e-08,2.068878908923356747e-08,2.142767441384905202e-08,2.216655973846453658e-08,2.290544506308002113e-08,2.364433038769550568e-08,2.438321571231099023e-08,2.512210103692647479e-08,2.586098636154195934e-08,2.659987168615744389e-08,2.733875701077292844e-08,2.807764233538841300e-08,2.881652766000389755e-08,2.955541298461938210e-08,3.029429830923486996e-08,3.103318363385035782e-08,3.177206895846584568e-08,3.251095428308133355e-08,3.324983960769682141e-08,3.398872493231230927e-08,3.472761025692779713e-08,3.546649558154328499e-08,3.620538090615877285e-08,3.694426623077426071e-08,3.768315155538974857e-08,3.842203688000523644e-08,3.916092220462072430e-08,3.989980752923621216e-08,4.063869285385170002e-08,4.137757817846718788e-08,4.211646350308267574e-08,4.285534882769816360e-08,4.359423415231365146e-08,4.433311947692913933e-08,4.507200480154462719e-08,4.581089012616011505e-08,4.654977545077560291e-08 +0.000000000000000000e+00,6.994777046039620117e-10,1.398955409207924023e-09,2.098433113811886242e-09,2.797910818415848461e-09,3.497388523019810679e-09,4.196866227623772484e-09,4.896343932227734289e-09,5.595821636831696094e-09,6.295299341435657899e-09,6.994777046039619704e-09,7.694254750643581509e-09,8.393732455247543314e-09,9.093210159851505119e-09,9.792687864455466924e-09,1.049216556905942873e-08,1.119164327366339053e-08,1.189112097826735234e-08,1.259059868287131414e-08,1.329007638747527595e-08,1.398955409207923775e-08,1.468903179668319956e-08,1.538850950128715971e-08,1.608798720589112151e-08,1.678746491049508332e-08,1.748694261509904512e-08,1.818642031970300693e-08,1.888589802430696873e-08,1.958537572891093054e-08,2.028485343351489234e-08,2.098433113811885415e-08,2.168380884272281595e-08,2.238328654732677776e-08,2.308276425193073956e-08,2.378224195653470137e-08,2.448171966113866317e-08,2.518119736574262498e-08,2.588067507034658678e-08,2.658015277495054859e-08,2.727963047955451039e-08,2.797910818415847220e-08,2.867858588876243400e-08,2.937806359336639581e-08,3.007754129797035761e-08,3.077701900257431942e-08,3.147649670717828122e-08,3.217597441178224303e-08,3.287545211638620483e-08,3.357492982099016664e-08,3.427440752559412844e-08,3.497388523019809025e-08,3.567336293480205205e-08,3.637284063940601386e-08,3.707231834400997566e-08,3.777179604861393747e-08,3.847127375321789927e-08,3.917075145782186108e-08,3.987022916242582288e-08,4.056970686702978469e-08,4.126918457163374649e-08,4.196866227623770830e-08,4.266813998084167010e-08,4.336761768544563191e-08,4.406709539004959371e-08 +0.000000000000000000e+00,-7.316189739169974323e-10,-1.463237947833994865e-09,-2.194856921750992400e-09,-2.926475895667990143e-09,-3.658094869584987885e-09,-4.389713843501985628e-09,-5.121332817418982957e-09,-5.852951791335980286e-09,-6.584570765252977614e-09,-7.316189739169974943e-09,-8.047808713086972272e-09,-8.779427687003969601e-09,-9.511046660920966930e-09,-1.024266563483796426e-08,-1.097428460875496159e-08,-1.170590358267195892e-08,-1.243752255658895625e-08,-1.316914153050595357e-08,-1.390076050442295090e-08,-1.463237947833994823e-08,-1.536399845225694722e-08,-1.609561742617394785e-08,-1.682723640009094849e-08,-1.755885537400794913e-08,-1.829047434792494977e-08,-1.902209332184195040e-08,-1.975371229575895104e-08,-2.048533126967595168e-08,-2.121695024359295232e-08,-2.194856921750995295e-08,-2.268018819142695359e-08,-2.341180716534395423e-08,-2.414342613926095487e-08,-2.487504511317795550e-08,-2.560666408709495614e-08,-2.633828306101195678e-08,-2.706990203492895742e-08,-2.780152100884595806e-08,-2.853313998276295869e-08,-2.926475895667995933e-08,-2.999637793059695997e-08,-3.072799690451396061e-08,-3.145961587843096124e-08,-3.219123485234796188e-08,-3.292285382626496252e-08,-3.365447280018196316e-08,-3.438609177409896379e-08,-3.511771074801596443e-08,-3.584932972193296507e-08,-3.658094869584996571e-08,-3.731256766976696634e-08,-3.804418664368396698e-08,-3.877580561760096762e-08,-3.950742459151796826e-08,-4.023904356543496889e-08,-4.097066253935196953e-08,-4.170228151326897017e-08,-4.243390048718597081e-08,-4.316551946110297145e-08,-4.389713843501997208e-08,-4.462875740893697272e-08,-4.536037638285397336e-08,-4.609199535677097400e-08 +0.000000000000000000e+00,-7.388853246227559871e-10,-1.477770649245511974e-09,-2.216655973868268065e-09,-2.955541298491024362e-09,-3.694426623113780659e-09,-4.433311947736536956e-09,-5.172197272359293254e-09,-5.911082596982049551e-09,-6.649967921604805848e-09,-7.388853246227562146e-09,-8.127738570850318443e-09,-8.866623895473075567e-09,-9.605509220095832692e-09,-1.034439454471858982e-08,-1.108327986934134694e-08,-1.182216519396410407e-08,-1.256105051858686119e-08,-1.329993584320961831e-08,-1.403882116783237544e-08,-1.477770649245513256e-08,-1.551659181707788969e-08,-1.625547714170064681e-08,-1.699436246632340394e-08,-1.773324779094616106e-08,-1.847213311556891819e-08,-1.921101844019167531e-08,-1.994990376481443243e-08,-2.068878908943718956e-08,-2.142767441405994668e-08,-2.216655973868270381e-08,-2.290544506330546093e-08,-2.364433038792821806e-08,-2.438321571255097518e-08,-2.512210103717373231e-08,-2.586098636179648943e-08,-2.659987168641924655e-08,-2.733875701104200368e-08,-2.807764233566476080e-08,-2.881652766028751793e-08,-2.955541298491027505e-08,-3.029429830953303218e-08,-3.103318363415579261e-08,-3.177206895877855304e-08,-3.251095428340131348e-08,-3.324983960802407391e-08,-3.398872493264683434e-08,-3.472761025726959478e-08,-3.546649558189235521e-08,-3.620538090651511564e-08,-3.694426623113787608e-08,-3.768315155576063651e-08,-3.842203688038339694e-08,-3.916092220500615737e-08,-3.989980752962891781e-08,-4.063869285425167824e-08,-4.137757817887443867e-08,-4.211646350349719911e-08,-4.285534882811995954e-08,-4.359423415274271997e-08,-4.433311947736548041e-08,-4.507200480198824084e-08,-4.581089012661100127e-08,-4.654977545123376171e-08 +0.000000000000000000e+00,-6.994777046081689489e-10,-1.398955409216337898e-09,-2.098433113824506950e-09,-2.797910818432676209e-09,-3.497388523040845468e-09,-4.196866227649014728e-09,-4.896343932257183573e-09,-5.595821636865352419e-09,-6.295299341473521264e-09,-6.994777046081690110e-09,-7.694254750689858955e-09,-8.393732455298027801e-09,-9.093210159906196646e-09,-9.792687864514365492e-09,-1.049216556912253434e-08,-1.119164327373070318e-08,-1.189112097833887203e-08,-1.259059868294704087e-08,-1.329007638755520972e-08,-1.398955409216337857e-08,-1.468903179677154741e-08,-1.538850950137971791e-08,-1.608798720598788841e-08,-1.678746491059605891e-08,-1.748694261520422941e-08,-1.818642031981239991e-08,-1.888589802442057041e-08,-1.958537572902874091e-08,-2.028485343363691141e-08,-2.098433113824508191e-08,-2.168380884285325241e-08,-2.238328654746142291e-08,-2.308276425206959341e-08,-2.378224195667776391e-08,-2.448171966128593441e-08,-2.518119736589410491e-08,-2.588067507050227541e-08,-2.658015277511044591e-08,-2.727963047971861641e-08,-2.797910818432678691e-08,-2.867858588893495741e-08,-2.937806359354312791e-08,-3.007754129815129841e-08,-3.077701900275946891e-08,-3.147649670736763941e-08,-3.217597441197580991e-08,-3.287545211658398041e-08,-3.357492982119215091e-08,-3.427440752580032141e-08,-3.497388523040849191e-08,-3.567336293501666241e-08,-3.637284063962483291e-08,-3.707231834423300341e-08,-3.777179604884117391e-08,-3.847127375344934441e-08,-3.917075145805751491e-08,-3.987022916266568541e-08,-4.056970686727385591e-08,-4.126918457188202641e-08,-4.196866227649019691e-08,-4.266813998109836741e-08,-4.336761768570653791e-08,-4.406709539031470841e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.403540568287050515e-10,1.480708113657410103e-09,2.221062170486115154e-09,2.961416227314820206e-09,3.701770284143525257e-09,4.442124340972230309e-09,5.182478397800935360e-09,5.922832454629640412e-09,6.663186511458345463e-09,7.403540568287050515e-09,8.143894625115755566e-09,8.884248681944460618e-09,9.624602738773165669e-09,1.036495679560187072e-08,1.110531085243057577e-08,1.184566490925928082e-08,1.258601896608798588e-08,1.332637302291669093e-08,1.406672707974539598e-08,1.480708113657410103e-08,1.554743519340280443e-08,1.628778925023150782e-08,1.702814330706021122e-08,1.776849736388891462e-08,1.850885142071761802e-08,1.924920547754632141e-08,1.998955953437502481e-08,2.072991359120372821e-08,2.147026764803243160e-08,2.221062170486113500e-08,2.295097576168983840e-08,2.369132981851854179e-08,2.443168387534724519e-08,2.517203793217594859e-08,2.591239198900465199e-08,2.665274604583335538e-08,2.739310010266205878e-08,2.813345415949076218e-08,2.887380821631946557e-08,2.961416227314816897e-08,3.035451632997687237e-08,3.109487038680557577e-08,3.183522444363427916e-08,3.257557850046298256e-08,3.331593255729168596e-08,3.405628661412038935e-08,3.479664067094909275e-08,3.553699472777779615e-08,3.627734878460649955e-08,3.701770284143520294e-08,3.775805689826390634e-08,3.849841095509260974e-08,3.923876501192131313e-08,3.997911906875001653e-08,4.071947312557871993e-08,4.145982718240742333e-08,4.220018123923612672e-08,4.294053529606483012e-08,4.368088935289353352e-08,4.442124340972223691e-08,4.516159746655094031e-08,4.590195152337964371e-08,4.664230558020834711e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.403540568298567971e-10,-1.480708113659713594e-09,-2.221062170489570288e-09,-2.961416227319426775e-09,-3.701770284149283262e-09,-4.442124340979139748e-09,-5.182478397808996235e-09,-5.922832454638852722e-09,-6.663186511468709209e-09,-7.403540568298565696e-09,-8.143894625128423010e-09,-8.884248681958281151e-09,-9.624602738788139293e-09,-1.036495679561799743e-08,-1.110531085244785558e-08,-1.184566490927771372e-08,-1.258601896610757186e-08,-1.332637302293743000e-08,-1.406672707976728814e-08,-1.480708113659714628e-08,-1.554743519342700442e-08,-1.628778925025686256e-08,-1.702814330708672071e-08,-1.776849736391657885e-08,-1.850885142074643699e-08,-1.924920547757629513e-08,-1.998955953440615327e-08,-2.072991359123601141e-08,-2.147026764806586955e-08,-2.221062170489572769e-08,-2.295097576172558584e-08,-2.369132981855544398e-08,-2.443168387538530212e-08,-2.517203793221516026e-08,-2.591239198904501840e-08,-2.665274604587487654e-08,-2.739310010270473468e-08,-2.813345415953459282e-08,-2.887380821636445097e-08,-2.961416227319430911e-08,-3.035451633002416725e-08,-3.109487038685402208e-08,-3.183522444368387691e-08,-3.257557850051373175e-08,-3.331593255734358658e-08,-3.405628661417344141e-08,-3.479664067100329624e-08,-3.553699472783315108e-08,-3.627734878466300591e-08,-3.701770284149286074e-08,-3.775805689832271557e-08,-3.849841095515257041e-08,-3.923876501198242524e-08,-3.997911906881228007e-08,-4.071947312564213490e-08,-4.145982718247198974e-08,-4.220018123930184457e-08,-4.294053529613169940e-08,-4.368088935296155423e-08,-4.442124340979140907e-08,-4.516159746662126390e-08,-4.590195152345111873e-08,-4.664230558028097356e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.206883802760157368e-10,1.441376760552031474e-09,2.162065140828047107e-09,2.882753521104062533e-09,3.603441901380077960e-09,4.324130281656093387e-09,5.044818661932109227e-09,5.765507042208125067e-09,6.486195422484140907e-09,7.206883802760156747e-09,7.927572183036172587e-09,8.648260563312188427e-09,9.368948943588204268e-09,1.008963732386422011e-08,1.081032570414023595e-08,1.153101408441625179e-08,1.225170246469226763e-08,1.297239084496828347e-08,1.369307922524429931e-08,1.441376760552031515e-08,1.513445598579633099e-08,1.585514436607234517e-08,1.657583274634835936e-08,1.729652112662437355e-08,1.801720950690038773e-08,1.873789788717640192e-08,1.945858626745241610e-08,2.017927464772843029e-08,2.089996302800444448e-08,2.162065140828045866e-08,2.234133978855647285e-08,2.306202816883248703e-08,2.378271654910850122e-08,2.450340492938451540e-08,2.522409330966052959e-08,2.594478168993654378e-08,2.666547007021255796e-08,2.738615845048857215e-08,2.810684683076458633e-08,2.882753521104060052e-08,2.954822359131661470e-08,3.026891197159262889e-08,3.098960035186864308e-08,3.171028873214465726e-08,3.243097711242067145e-08,3.315166549269668563e-08,3.387235387297269982e-08,3.459304225324871401e-08,3.531373063352472819e-08,3.603441901380074238e-08,3.675510739407675656e-08,3.747579577435277075e-08,3.819648415462878493e-08,3.891717253490479912e-08,3.963786091518081331e-08,4.035854929545682749e-08,4.107923767573284168e-08,4.179992605600885586e-08,4.252061443628487005e-08,4.324130281656088423e-08,4.396199119683689842e-08,4.468267957711291261e-08,4.540336795738892679e-08 +0.000000000000000000e+00,7.130822928525784044e-10,1.426164585705156809e-09,2.139246878557735110e-09,2.852329171410313204e-09,3.565411464262891298e-09,4.278493757115469393e-09,4.991576049968047487e-09,5.704658342820625581e-09,6.417740635673203675e-09,7.130822928525781770e-09,7.843905221378360691e-09,8.556987514230940440e-09,9.270069807083520188e-09,9.983152099936099937e-09,1.069623439278867969e-08,1.140931668564125943e-08,1.212239897849383918e-08,1.283548127134641893e-08,1.354856356419899868e-08,1.426164585705157843e-08,1.497472814990415818e-08,1.568781044275673793e-08,1.640089273560931767e-08,1.711397502846189742e-08,1.782705732131447717e-08,1.854013961416705692e-08,1.925322190701963667e-08,1.996630419987221642e-08,2.067938649272479617e-08,2.139246878557737591e-08,2.210555107842995566e-08,2.281863337128253541e-08,2.353171566413511516e-08,2.424479795698769491e-08,2.495788024984027466e-08,2.567096254269285441e-08,2.638404483554543415e-08,2.709712712839801390e-08,2.781020942125059365e-08,2.852329171410317340e-08,2.923637400695575315e-08,2.994945629980832959e-08,3.066253859266090603e-08,3.137562088551348247e-08,3.208870317836605891e-08,3.280178547121863535e-08,3.351486776407121179e-08,3.422795005692378823e-08,3.494103234977636467e-08,3.565411464262894111e-08,3.636719693548151755e-08,3.708027922833409399e-08,3.779336152118667043e-08,3.850644381403924687e-08,3.921952610689182331e-08,3.993260839974439975e-08,4.064569069259697619e-08,4.135877298544955263e-08,4.207185527830212907e-08,4.278493757115470551e-08,4.349801986400728195e-08,4.421110215685985839e-08,4.492418444971243483e-08 +0.000000000000000000e+00,7.151613858621632248e-10,1.430322771724326450e-09,2.145484157586489468e-09,2.860645543448652486e-09,3.575806929310815504e-09,4.290968315172978935e-09,5.006129701035142367e-09,5.721291086897305798e-09,6.436452472759469230e-09,7.151613858621632661e-09,7.866775244483796093e-09,8.581936630345959525e-09,9.297098016208122956e-09,1.001225940207028639e-08,1.072742078793244982e-08,1.144258217379461325e-08,1.215774355965677668e-08,1.287290494551894011e-08,1.358806633138110355e-08,1.430322771724326698e-08,1.501838910310543041e-08,1.573355048896759219e-08,1.644871187482975396e-08,1.716387326069191574e-08,1.787903464655407752e-08,1.859419603241623929e-08,1.930935741827840107e-08,2.002451880414056285e-08,2.073968019000272463e-08,2.145484157586488640e-08,2.217000296172704818e-08,2.288516434758920996e-08,2.360032573345137174e-08,2.431548711931353351e-08,2.503064850517569529e-08,2.574580989103785707e-08,2.646097127690001884e-08,2.717613266276218062e-08,2.789129404862434240e-08,2.860645543448650418e-08,2.932161682034866595e-08,3.003677820621082773e-08,3.075193959207298620e-08,3.146710097793514467e-08,3.218226236379730314e-08,3.289742374965946160e-08,3.361258513552162007e-08,3.432774652138377854e-08,3.504290790724593701e-08,3.575806929310809548e-08,3.647323067897025395e-08,3.718839206483241241e-08,3.790355345069457088e-08,3.861871483655672935e-08,3.933387622241888782e-08,4.004903760828104629e-08,4.076419899414320476e-08,4.147936038000536323e-08,4.219452176586752169e-08,4.290968315172968016e-08,4.362484453759183863e-08,4.434000592345399710e-08,4.505516730931615557e-08 +0.000000000000000000e+00,-7.206883803160156062e-10,-1.441376760632031212e-09,-2.162065140948046612e-09,-2.882753521264062011e-09,-3.603441901580077411e-09,-4.324130281896093224e-09,-5.044818662212109037e-09,-5.765507042528124850e-09,-6.486195422844140663e-09,-7.206883803160156476e-09,-7.927572183476173116e-09,-8.648260563792189756e-09,-9.368948944108206397e-09,-1.008963732442422304e-08,-1.081032570474023968e-08,-1.153101408505625632e-08,-1.225170246537227296e-08,-1.297239084568828960e-08,-1.369307922600430624e-08,-1.441376760632032288e-08,-1.513445598663633952e-08,-1.585514436695235616e-08,-1.657583274726837280e-08,-1.729652112758438944e-08,-1.801720950790040608e-08,-1.873789788821642272e-08,-1.945858626853243936e-08,-2.017927464884845600e-08,-2.089996302916447264e-08,-2.162065140948048928e-08,-2.234133978979650592e-08,-2.306202817011252256e-08,-2.378271655042853920e-08,-2.450340493074455584e-08,-2.522409331106057248e-08,-2.594478169137658912e-08,-2.666547007169260576e-08,-2.738615845200862240e-08,-2.810684683232463904e-08,-2.882753521264065568e-08,-2.954822359295667232e-08,-3.026891197327268565e-08,-3.098960035358869568e-08,-3.171028873390470570e-08,-3.243097711422071572e-08,-3.315166549453672575e-08,-3.387235387485273577e-08,-3.459304225516874579e-08,-3.531373063548475581e-08,-3.603441901580076584e-08,-3.675510739611677586e-08,-3.747579577643278588e-08,-3.819648415674879590e-08,-3.891717253706480593e-08,-3.963786091738081595e-08,-4.035854929769682597e-08,-4.107923767801283600e-08,-4.179992605832884602e-08,-4.252061443864485604e-08,-4.324130281896086606e-08,-4.396199119927687609e-08,-4.468267957959288611e-08,-4.540336795990889613e-08 +0.000000000000000000e+00,-7.130822929006499023e-10,-1.426164585801299805e-09,-2.139246878701949914e-09,-2.852329171602600023e-09,-3.565411464503250132e-09,-4.278493757403899828e-09,-4.991576050304549523e-09,-5.704658343205199219e-09,-6.417740636105848914e-09,-7.130822929006498610e-09,-7.843905221907147478e-09,-8.556987514807796347e-09,-9.270069807708445215e-09,-9.983152100609094083e-09,-1.069623439350974295e-08,-1.140931668641039182e-08,-1.212239897931104069e-08,-1.283548127221168956e-08,-1.354856356511233843e-08,-1.426164585801298729e-08,-1.497472815091363616e-08,-1.568781044381428503e-08,-1.640089273671493390e-08,-1.711397502961558277e-08,-1.782705732251623164e-08,-1.854013961541688050e-08,-1.925322190831752937e-08,-1.996630420121817824e-08,-2.067938649411882711e-08,-2.139246878701947598e-08,-2.210555107992012485e-08,-2.281863337282077371e-08,-2.353171566572142258e-08,-2.424479795862207145e-08,-2.495788025152272032e-08,-2.567096254442336919e-08,-2.638404483732401806e-08,-2.709712713022466692e-08,-2.781020942312531579e-08,-2.852329171602596466e-08,-2.923637400892661353e-08,-2.994945630182725909e-08,-3.066253859472790465e-08,-3.137562088762855021e-08,-3.208870318052919577e-08,-3.280178547342984133e-08,-3.351486776633048689e-08,-3.422795005923113245e-08,-3.494103235213177801e-08,-3.565411464503242357e-08,-3.636719693793306913e-08,-3.708027923083371469e-08,-3.779336152373436024e-08,-3.850644381663500580e-08,-3.921952610953565136e-08,-3.993260840243629692e-08,-4.064569069533694248e-08,-4.135877298823758804e-08,-4.207185528113823360e-08,-4.278493757403887916e-08,-4.349801986693952472e-08,-4.421110215984017028e-08,-4.492418445274081584e-08 +0.000000000000000000e+00,-7.151613859021382788e-10,-1.430322771804276558e-09,-2.145484157706414940e-09,-2.860645543608553529e-09,-3.575806929510692118e-09,-4.290968315412830707e-09,-5.006129701314969296e-09,-5.721291087217107885e-09,-6.436452473119246474e-09,-7.151613859021385063e-09,-7.866775244923523652e-09,-8.581936630825663068e-09,-9.297098016727802485e-09,-1.001225940262994190e-08,-1.072742078853208132e-08,-1.144258217443422073e-08,-1.215774356033636015e-08,-1.287290494623849957e-08,-1.358806633214063898e-08,-1.430322771804277840e-08,-1.501838910394491616e-08,-1.573355048984705392e-08,-1.644871187574919168e-08,-1.716387326165132945e-08,-1.787903464755346721e-08,-1.859419603345560497e-08,-1.930935741935774273e-08,-2.002451880525988049e-08,-2.073968019116201825e-08,-2.145484157706415602e-08,-2.217000296296629378e-08,-2.288516434886843154e-08,-2.360032573477056930e-08,-2.431548712067270706e-08,-2.503064850657484483e-08,-2.574580989247698259e-08,-2.646097127837912035e-08,-2.717613266428125811e-08,-2.789129405018339587e-08,-2.860645543608553364e-08,-2.932161682198767140e-08,-3.003677820788980585e-08,-3.075193959379194030e-08,-3.146710097969407476e-08,-3.218226236559620921e-08,-3.289742375149834366e-08,-3.361258513740047812e-08,-3.432774652330261257e-08,-3.504290790920474702e-08,-3.575806929510688148e-08,-3.647323068100901593e-08,-3.718839206691115038e-08,-3.790355345281328483e-08,-3.861871483871541929e-08,-3.933387622461755374e-08,-4.004903761051968819e-08,-4.076419899642182265e-08,-4.147936038232395710e-08,-4.219452176822609155e-08,-4.290968315412822601e-08,-4.362484454003036046e-08,-4.434000592593249491e-08,-4.505516731183462937e-08 +0.000000000000000000e+00,7.454547749072427759e-10,1.490909549814485552e-09,2.236364324721728224e-09,2.981819099628970690e-09,3.727273874536213156e-09,4.472728649443455622e-09,5.218183424350698087e-09,5.963638199257940553e-09,6.709092974165183019e-09,7.454547749072426312e-09,8.200002523979669605e-09,8.945457298886912898e-09,9.690912073794156190e-09,1.043636684870139948e-08,1.118182162360864278e-08,1.192727639851588607e-08,1.267273117342312936e-08,1.341818594833037266e-08,1.416364072323761595e-08,1.490909549814485924e-08,1.565455027305210088e-08,1.640000504795934252e-08,1.714545982286658416e-08,1.789091459777382580e-08,1.863636937268106743e-08,1.938182414758830907e-08,2.012727892249555071e-08,2.087273369740279235e-08,2.161818847231003399e-08,2.236364324721727563e-08,2.310909802212451726e-08,2.385455279703175890e-08,2.460000757193900054e-08,2.534546234684624218e-08,2.609091712175348382e-08,2.683637189666072546e-08,2.758182667156796710e-08,2.832728144647520873e-08,2.907273622138245037e-08,2.981819099628969201e-08,3.056364577119693365e-08,3.130910054610417529e-08,3.205455532101141693e-08,3.280001009591865857e-08,3.354546487082590020e-08,3.429091964573314184e-08,3.503637442064038348e-08,3.578182919554762512e-08,3.652728397045486676e-08,3.727273874536210840e-08,3.801819352026935004e-08,3.876364829517659167e-08,3.950910307008383331e-08,4.025455784499107495e-08,4.100001261989831659e-08,4.174546739480555823e-08,4.249092216971279987e-08,4.323637694462004151e-08,4.398183171952728314e-08,4.472728649443452478e-08,4.547274126934176642e-08,4.621819604424900806e-08,4.696365081915624970e-08 +0.000000000000000000e+00,7.320220932892848696e-10,1.464044186578569739e-09,2.196066279867854816e-09,2.928088373157139892e-09,3.660110466446424969e-09,4.392132559735709631e-09,5.124154653024994294e-09,5.856176746314278957e-09,6.588198839603563620e-09,7.320220932892848283e-09,8.052243026182132118e-09,8.784265119471415954e-09,9.516287212760699790e-09,1.024830930604998363e-08,1.098033139933926746e-08,1.171235349262855130e-08,1.244437558591783513e-08,1.317639767920711897e-08,1.390841977249640280e-08,1.464044186578568664e-08,1.537246395907497047e-08,1.610448605236425431e-08,1.683650814565353815e-08,1.756853023894282198e-08,1.830055233223210582e-08,1.903257442552138965e-08,1.976459651881067349e-08,2.049661861209995732e-08,2.122864070538924116e-08,2.196066279867852500e-08,2.269268489196780883e-08,2.342470698525709267e-08,2.415672907854637650e-08,2.488875117183566034e-08,2.562077326512494417e-08,2.635279535841422801e-08,2.708481745170351185e-08,2.781683954499279568e-08,2.854886163828207952e-08,2.928088373157136335e-08,3.001290582486064719e-08,3.074492791814992771e-08,3.147695001143920824e-08,3.220897210472848877e-08,3.294099419801776930e-08,3.367301629130704982e-08,3.440503838459633035e-08,3.513706047788561088e-08,3.586908257117489140e-08,3.660110466446417193e-08,3.733312675775345246e-08,3.806514885104273298e-08,3.879717094433201351e-08,3.952919303762129404e-08,4.026121513091057456e-08,4.099323722419985509e-08,4.172525931748913562e-08,4.245728141077841615e-08,4.318930350406769667e-08,4.392132559735697720e-08,4.465334769064625773e-08,4.538536978393553825e-08,4.611739187722481878e-08 +0.000000000000000000e+00,7.331768317686270120e-10,1.466353663537254024e-09,2.199530495305881036e-09,2.932707327074508048e-09,3.665884158843135060e-09,4.399060990611762072e-09,5.132237822380389498e-09,5.865414654149016923e-09,6.598591485917644349e-09,7.331768317686271774e-09,8.064945149454899200e-09,8.798121981223525798e-09,9.531298812992152397e-09,1.026447564476077900e-08,1.099765247652940559e-08,1.173082930829803219e-08,1.246400614006665879e-08,1.319718297183528539e-08,1.393035980360391199e-08,1.466353663537253859e-08,1.539671346714116518e-08,1.612989029890979178e-08,1.686306713067841838e-08,1.759624396244704498e-08,1.832942079421567158e-08,1.906259762598429818e-08,1.979577445775292477e-08,2.052895128952155137e-08,2.126212812129017797e-08,2.199530495305880457e-08,2.272848178482743117e-08,2.346165861659605777e-08,2.419483544836468436e-08,2.492801228013331096e-08,2.566118911190193756e-08,2.639436594367056416e-08,2.712754277543919076e-08,2.786071960720781736e-08,2.859389643897644396e-08,2.932707327074507055e-08,3.006025010251369715e-08,3.079342693428232375e-08,3.152660376605095035e-08,3.225978059781957695e-08,3.299295742958820355e-08,3.372613426135683014e-08,3.445931109312545674e-08,3.519248792489408334e-08,3.592566475666270994e-08,3.665884158843133654e-08,3.739201842019996314e-08,3.812519525196858973e-08,3.885837208373721633e-08,3.959154891550584293e-08,4.032472574727446953e-08,4.105790257904309613e-08,4.179107941081172273e-08,4.252425624258034932e-08,4.325743307434897592e-08,4.399060990611760252e-08,4.472378673788622912e-08,4.545696356965485572e-08,4.619014040142348232e-08 +0.000000000000000000e+00,-7.454547749321653142e-10,-1.490909549864330628e-09,-2.236364324796495839e-09,-2.981819099728660843e-09,-3.727273874660826261e-09,-4.472728649592991678e-09,-5.218183424525157096e-09,-5.963638199457322514e-09,-6.709092974389487931e-09,-7.454547749321652522e-09,-8.200002524253817112e-09,-8.945457299185981702e-09,-9.690912074118146293e-09,-1.043636684905031088e-08,-1.118182162398247547e-08,-1.192727639891464006e-08,-1.267273117384680465e-08,-1.341818594877896924e-08,-1.416364072371113384e-08,-1.490909549864329843e-08,-1.565455027357546136e-08,-1.640000504850762430e-08,-1.714545982343978723e-08,-1.789091459837195017e-08,-1.863636937330411311e-08,-1.938182414823627604e-08,-2.012727892316843898e-08,-2.087273369810060191e-08,-2.161818847303276485e-08,-2.236364324796492779e-08,-2.310909802289709072e-08,-2.385455279782925366e-08,-2.460000757276141659e-08,-2.534546234769357953e-08,-2.609091712262574247e-08,-2.683637189755790540e-08,-2.758182667249006834e-08,-2.832728144742223127e-08,-2.907273622235439421e-08,-2.981819099728655715e-08,-3.056364577221872008e-08,-3.130910054715088302e-08,-3.205455532208304595e-08,-3.280001009701520889e-08,-3.354546487194737183e-08,-3.429091964687953476e-08,-3.503637442181169770e-08,-3.578182919674386063e-08,-3.652728397167602357e-08,-3.727273874660818651e-08,-3.801819352154034944e-08,-3.876364829647251238e-08,-3.950910307140467532e-08,-4.025455784633683825e-08,-4.100001262126900119e-08,-4.174546739620116412e-08,-4.249092217113332706e-08,-4.323637694606549000e-08,-4.398183172099765293e-08,-4.472728649592981587e-08,-4.547274127086197880e-08,-4.621819604579414174e-08,-4.696365082072630468e-08 +0.000000000000000000e+00,-7.320220933215507038e-10,-1.464044186643101408e-09,-2.196066279964652318e-09,-2.928088373286203229e-09,-3.660110466607754139e-09,-4.392132559929304636e-09,-5.124154653250855133e-09,-5.856176746572405630e-09,-6.588198839893956127e-09,-7.320220933215506624e-09,-8.052243026537057121e-09,-8.784265119858607618e-09,-9.516287213180158115e-09,-1.024830930650170861e-08,-1.098033139982325911e-08,-1.171235349314480961e-08,-1.244437558646636010e-08,-1.317639767978791060e-08,-1.390841977310946110e-08,-1.464044186643101159e-08,-1.537246395975256375e-08,-1.610448605307411755e-08,-1.683650814639567136e-08,-1.756853023971722516e-08,-1.830055233303877897e-08,-1.903257442636033277e-08,-1.976459651968188658e-08,-2.049661861300344039e-08,-2.122864070632499419e-08,-2.196066279964654800e-08,-2.269268489296810180e-08,-2.342470698628965561e-08,-2.415672907961120941e-08,-2.488875117293276322e-08,-2.562077326625431703e-08,-2.635279535957587083e-08,-2.708481745289742464e-08,-2.781683954621897844e-08,-2.854886163954053225e-08,-2.928088373286208605e-08,-3.001290582618363986e-08,-3.074492791950519367e-08,-3.147695001282674747e-08,-3.220897210614830128e-08,-3.294099419946985508e-08,-3.367301629279140889e-08,-3.440503838611296269e-08,-3.513706047943451650e-08,-3.586908257275607031e-08,-3.660110466607762411e-08,-3.733312675939917792e-08,-3.806514885272073172e-08,-3.879717094604228553e-08,-3.952919303936383933e-08,-4.026121513268539314e-08,-4.099323722600694695e-08,-4.172525931932850075e-08,-4.245728141265005456e-08,-4.318930350597160836e-08,-4.392132559929316217e-08,-4.465334769261471597e-08,-4.538536978593626978e-08,-4.611739187925782358e-08 +0.000000000000000000e+00,-7.331768317941842046e-10,-1.466353663588368409e-09,-2.199530495382552821e-09,-2.932707327176737232e-09,-3.665884158970921643e-09,-4.399060990765105641e-09,-5.132237822559289639e-09,-5.865414654353473637e-09,-6.598591486147657634e-09,-7.331768317941841632e-09,-8.064945149736024803e-09,-8.798121981530207973e-09,-9.531298813324391144e-09,-1.026447564511857431e-08,-1.099765247691275749e-08,-1.173082930870694066e-08,-1.246400614050112383e-08,-1.319718297229530700e-08,-1.393035980408949017e-08,-1.466353663588367334e-08,-1.539671346767785651e-08,-1.612989029947203968e-08,-1.686306713126622285e-08,-1.759624396306040602e-08,-1.832942079485458919e-08,-1.906259762664877236e-08,-1.979577445844295553e-08,-2.052895129023713870e-08,-2.126212812203132187e-08,-2.199530495382550504e-08,-2.272848178561968821e-08,-2.346165861741387139e-08,-2.419483544920805456e-08,-2.492801228100223773e-08,-2.566118911279642090e-08,-2.639436594459060407e-08,-2.712754277638478724e-08,-2.786071960817897041e-08,-2.859389643997315358e-08,-2.932707327176733675e-08,-3.006025010356151661e-08,-3.079342693535569317e-08,-3.152660376714986972e-08,-3.225978059894404627e-08,-3.299295743073822282e-08,-3.372613426253239938e-08,-3.445931109432657593e-08,-3.519248792612075248e-08,-3.592566475791492904e-08,-3.665884158970910559e-08,-3.739201842150328214e-08,-3.812519525329745870e-08,-3.885837208509163525e-08,-3.959154891688581180e-08,-4.032472574867998836e-08,-4.105790258047416491e-08,-4.179107941226834146e-08,-4.252425624406251802e-08,-4.325743307585669457e-08,-4.399060990765087112e-08,-4.472378673944504768e-08,-4.545696357123922423e-08,-4.619014040303340078e-08 +0.000000000000000000e+00,7.706812410880484718e-10,1.541362482176096944e-09,2.312043723264145519e-09,3.082724964352194301e-09,3.853406205440243083e-09,4.624087446528291865e-09,5.394768687616340646e-09,6.165449928704389428e-09,6.936131169792438210e-09,7.706812410880486165e-09,8.477493651968534120e-09,9.248174893056582075e-09,1.001885613414463003e-08,1.078953737523267798e-08,1.156021861632072594e-08,1.233089985740877389e-08,1.310158109849682185e-08,1.387226233958486980e-08,1.464294358067291776e-08,1.541362482176096571e-08,1.618430606284901367e-08,1.695498730393706162e-08,1.772566854502510958e-08,1.849634978611315753e-08,1.926703102720120549e-08,2.003771226828925344e-08,2.080839350937730140e-08,2.157907475046534935e-08,2.234975599155339731e-08,2.312043723264144526e-08,2.389111847372949322e-08,2.466179971481754117e-08,2.543248095590558912e-08,2.620316219699363708e-08,2.697384343808168503e-08,2.774452467916973299e-08,2.851520592025778094e-08,2.928588716134582890e-08,3.005656840243387354e-08,3.082724964352191819e-08,3.159793088460996284e-08,3.236861212569800748e-08,3.313929336678605213e-08,3.390997460787409677e-08,3.468065584896214142e-08,3.545133709005018607e-08,3.622201833113823071e-08,3.699269957222627536e-08,3.776338081331432001e-08,3.853406205440236465e-08,3.930474329549040930e-08,4.007542453657845394e-08,4.084610577766649859e-08,4.161678701875454324e-08,4.238746825984258788e-08,4.315814950093063253e-08,4.392883074201867717e-08,4.469951198310672182e-08,4.547019322419476647e-08,4.624087446528281111e-08,4.701155570637085576e-08,4.778223694745890040e-08,4.855291818854694505e-08 +0.000000000000000000e+00,7.556943817336408760e-10,1.511388763467281752e-09,2.267083145200922835e-09,3.022777526934563917e-09,3.778471908668205000e-09,4.534166290401845669e-09,5.289860672135486339e-09,6.045555053869127008e-09,6.801249435602767677e-09,7.556943817336408346e-09,8.312638199070049015e-09,9.068332580803689684e-09,9.824026962537330354e-09,1.057972134427097102e-08,1.133541572600461169e-08,1.209111010773825236e-08,1.284680448947189303e-08,1.360249887120553370e-08,1.435819325293917437e-08,1.511388763467281338e-08,1.586958201640645405e-08,1.662527639814009472e-08,1.738097077987373539e-08,1.813666516160737606e-08,1.889235954334101673e-08,1.964805392507465740e-08,2.040374830680829807e-08,2.115944268854193874e-08,2.191513707027557941e-08,2.267083145200922008e-08,2.342652583374286074e-08,2.418222021547650141e-08,2.493791459721014208e-08,2.569360897894378275e-08,2.644930336067742342e-08,2.720499774241106409e-08,2.796069212414470476e-08,2.871638650587834543e-08,2.947208088761198610e-08,3.022777526934562677e-08,3.098346965107926744e-08,3.173916403281290811e-08,3.249485841454654877e-08,3.325055279628018944e-08,3.400624717801383011e-08,3.476194155974747078e-08,3.551763594148111145e-08,3.627333032321475212e-08,3.702902470494839279e-08,3.778471908668203346e-08,3.854041346841567413e-08,3.929610785014931480e-08,4.005180223188295547e-08,4.080749661361659614e-08,4.156319099535023680e-08,4.231888537708387747e-08,4.307457975881751814e-08,4.383027414055115881e-08,4.458596852228479948e-08,4.534166290401844015e-08,4.609735728575208082e-08,4.685305166748572149e-08,4.760874604921936216e-08 +0.000000000000000000e+00,7.566360855254778765e-10,1.513272171050955753e-09,2.269908256576433629e-09,3.026544342101911506e-09,3.783180427627389382e-09,4.539816513152867259e-09,5.296452598678345135e-09,6.053088684203823012e-09,6.809724769729300888e-09,7.566360855254778765e-09,8.322996940780257469e-09,9.079633026305736172e-09,9.836269111831214876e-09,1.059290519735669358e-08,1.134954128288217228e-08,1.210617736840765099e-08,1.286281345393312969e-08,1.361944953945860839e-08,1.437608562498408710e-08,1.513272171050956746e-08,1.588935779603504781e-08,1.664599388156052817e-08,1.740262996708600853e-08,1.815926605261148889e-08,1.891590213813696925e-08,1.967253822366244960e-08,2.042917430918792996e-08,2.118581039471341032e-08,2.194244648023889068e-08,2.269908256576437104e-08,2.345571865128985139e-08,2.421235473681533175e-08,2.496899082234081211e-08,2.572562690786629247e-08,2.648226299339177283e-08,2.723889907891725318e-08,2.799553516444273354e-08,2.875217124996821390e-08,2.950880733549369426e-08,3.026544342101917462e-08,3.102207950654465497e-08,3.177871559207013533e-08,3.253535167759561569e-08,3.329198776312109605e-08,3.404862384864657641e-08,3.480525993417205676e-08,3.556189601969753712e-08,3.631853210522301748e-08,3.707516819074849784e-08,3.783180427627397820e-08,3.858844036179945855e-08,3.934507644732493891e-08,4.010171253285041927e-08,4.085834861837589963e-08,4.161498470390137999e-08,4.237162078942686035e-08,4.312825687495234070e-08,4.388489296047782106e-08,4.464152904600330142e-08,4.539816513152878178e-08,4.615480121705426214e-08,4.691143730257974249e-08,4.766807338810522285e-08 +0.000000000000000000e+00,-7.706812411012625786e-10,-1.541362482202525157e-09,-2.312043723303787736e-09,-3.082724964405050315e-09,-3.853406205506313307e-09,-4.624087446607576299e-09,-5.394768687708839291e-09,-6.165449928810102284e-09,-6.936131169911365276e-09,-7.706812411012628268e-09,-8.477493652113891260e-09,-9.248174893215154252e-09,-1.001885613431641724e-08,-1.078953737541768024e-08,-1.156021861651894323e-08,-1.233089985762020622e-08,-1.310158109872146921e-08,-1.387226233982273221e-08,-1.464294358092399520e-08,-1.541362482202525984e-08,-1.618430606312652615e-08,-1.695498730422779245e-08,-1.772566854532905875e-08,-1.849634978643032505e-08,-1.926703102753159135e-08,-2.003771226863285765e-08,-2.080839350973412395e-08,-2.157907475083539025e-08,-2.234975599193665655e-08,-2.312043723303792285e-08,-2.389111847413918916e-08,-2.466179971524045546e-08,-2.543248095634172176e-08,-2.620316219744298806e-08,-2.697384343854425436e-08,-2.774452467964552066e-08,-2.851520592074678696e-08,-2.928588716184805326e-08,-3.005656840294931956e-08,-3.082724964405058586e-08,-3.159793088515185216e-08,-3.236861212625311847e-08,-3.313929336735438477e-08,-3.390997460845565107e-08,-3.468065584955691737e-08,-3.545133709065818367e-08,-3.622201833175944997e-08,-3.699269957286071627e-08,-3.776338081396198257e-08,-3.853406205506324887e-08,-3.930474329616451517e-08,-4.007542453726578148e-08,-4.084610577836704778e-08,-4.161678701946831408e-08,-4.238746826056958038e-08,-4.315814950167084668e-08,-4.392883074277211298e-08,-4.469951198387337928e-08,-4.547019322497464558e-08,-4.624087446607591188e-08,-4.701155570717717818e-08,-4.778223694827844448e-08,-4.855291818937971079e-08 +0.000000000000000000e+00,-7.556943817522562655e-10,-1.511388763504512531e-09,-2.267083145256768693e-09,-3.022777527009024648e-09,-3.778471908761281017e-09,-4.534166290513537386e-09,-5.289860672265793755e-09,-6.045555054018050124e-09,-6.801249435770306492e-09,-7.556943817522562034e-09,-8.312638199274817576e-09,-9.068332581027073118e-09,-9.824026962779328659e-09,-1.057972134453158420e-08,-1.133541572628383974e-08,-1.209111010803609528e-08,-1.284680448978835083e-08,-1.360249887154060637e-08,-1.435819325329286191e-08,-1.511388763504511745e-08,-1.586958201679737299e-08,-1.662527639854962853e-08,-1.738097078030188408e-08,-1.813666516205413962e-08,-1.889235954380639516e-08,-1.964805392555865070e-08,-2.040374830731090624e-08,-2.115944268906316178e-08,-2.191513707081541733e-08,-2.267083145256767287e-08,-2.342652583431992841e-08,-2.418222021607218395e-08,-2.493791459782443949e-08,-2.569360897957669503e-08,-2.644930336132895058e-08,-2.720499774308120612e-08,-2.796069212483346166e-08,-2.871638650658571720e-08,-2.947208088833797274e-08,-3.022777527009022828e-08,-3.098346965184248383e-08,-3.173916403359473937e-08,-3.249485841534699491e-08,-3.325055279709925045e-08,-3.400624717885150599e-08,-3.476194156060376153e-08,-3.551763594235601708e-08,-3.627333032410827262e-08,-3.702902470586052816e-08,-3.778471908761278370e-08,-3.854041346936503924e-08,-3.929610785111729478e-08,-4.005180223286955033e-08,-4.080749661462180587e-08,-4.156319099637406141e-08,-4.231888537812631695e-08,-4.307457975987857249e-08,-4.383027414163082803e-08,-4.458596852338308358e-08,-4.534166290513533912e-08,-4.609735728688759466e-08,-4.685305166863985020e-08,-4.760874605039210574e-08 +0.000000000000000000e+00,-7.566360855389120134e-10,-1.513272171077824027e-09,-2.269908256616735937e-09,-3.026544342155647640e-09,-3.783180427694558930e-09,-4.539816513233470219e-09,-5.296452598772381509e-09,-6.053088684311292799e-09,-6.809724769850204088e-09,-7.566360855389114551e-09,-8.322996940928025013e-09,-9.079633026466935476e-09,-9.836269112005845938e-09,-1.059290519754475640e-08,-1.134954128308366686e-08,-1.210617736862257733e-08,-1.286281345416148779e-08,-1.361944953970039825e-08,-1.437608562523930871e-08,-1.513272171077821918e-08,-1.588935779631712964e-08,-1.664599388185604010e-08,-1.740262996739495056e-08,-1.815926605293386103e-08,-1.891590213847277149e-08,-1.967253822401168195e-08,-2.042917430955059241e-08,-2.118581039508950287e-08,-2.194244648062841334e-08,-2.269908256616732380e-08,-2.345571865170623426e-08,-2.421235473724514472e-08,-2.496899082278405519e-08,-2.572562690832296565e-08,-2.648226299386187611e-08,-2.723889907940078657e-08,-2.799553516493969704e-08,-2.875217125047860750e-08,-2.950880733601751796e-08,-3.026544342155643173e-08,-3.102207950709534550e-08,-3.177871559263425928e-08,-3.253535167817317305e-08,-3.329198776371208682e-08,-3.404862384925100059e-08,-3.480525993478991436e-08,-3.556189602032882813e-08,-3.631853210586774190e-08,-3.707516819140665567e-08,-3.783180427694556944e-08,-3.858844036248448322e-08,-3.934507644802339699e-08,-4.010171253356231076e-08,-4.085834861910122453e-08,-4.161498470464013830e-08,-4.237162079017905207e-08,-4.312825687571796584e-08,-4.388489296125687961e-08,-4.464152904679579339e-08,-4.539816513233470716e-08,-4.615480121787362093e-08,-4.691143730341253470e-08,-4.766807338895144847e-08 +0.000000000000000000e+00,8.390704923930004143e-10,1.678140984786000829e-09,2.517211477179001243e-09,3.356281969572001657e-09,4.195352461965001658e-09,5.034422954358001659e-09,5.873493446751001659e-09,6.712563939144001660e-09,7.551634431537001661e-09,8.390704923930001662e-09,9.229775416323001662e-09,1.006884590871600166e-08,1.090791640110900166e-08,1.174698689350200166e-08,1.258605738589500167e-08,1.342512787828800167e-08,1.426419837068100167e-08,1.510326886307400332e-08,1.594233935546700498e-08,1.678140984786000663e-08,1.762048034025300829e-08,1.845955083264600994e-08,1.929862132503901160e-08,2.013769181743201325e-08,2.097676230982501491e-08,2.181583280221801656e-08,2.265490329461101822e-08,2.349397378700401987e-08,2.433304427939702153e-08,2.517211477179002318e-08,2.601118526418302484e-08,2.685025575657602649e-08,2.768932624896902815e-08,2.852839674136202980e-08,2.936746723375503146e-08,3.020653772614803311e-08,3.104560821854103146e-08,3.188467871093402981e-08,3.272374920332702815e-08,3.356281969572002650e-08,3.440189018811302485e-08,3.524096068050602319e-08,3.608003117289902154e-08,3.691910166529201988e-08,3.775817215768501823e-08,3.859724265007801658e-08,3.943631314247101492e-08,4.027538363486401327e-08,4.111445412725701162e-08,4.195352461965000996e-08,4.279259511204300831e-08,4.363166560443600666e-08,4.447073609682900500e-08,4.530980658922200335e-08,4.614887708161500169e-08,4.698794757400800004e-08,4.782701806640099839e-08,4.866608855879399673e-08,4.950515905118699508e-08,5.034422954357999343e-08,5.118330003597299177e-08,5.202237052836599012e-08,5.286144102075898846e-08 +0.000000000000000000e+00,8.143613370697413639e-10,1.628722674139482728e-09,2.443084011209223988e-09,3.257445348278965042e-09,4.071806685348706096e-09,4.886168022418447149e-09,5.700529359488188203e-09,6.514890696557929257e-09,7.329252033627670311e-09,8.143613370697410537e-09,8.957974707767149937e-09,9.772336044836889336e-09,1.058669738190662874e-08,1.140105871897636813e-08,1.221542005604610753e-08,1.302978139311584693e-08,1.384414273018558633e-08,1.465850406725532573e-08,1.547286540432506513e-08,1.628722674139480453e-08,1.710158807846454393e-08,1.791594941553428333e-08,1.873031075260402273e-08,1.954467208967376213e-08,2.035903342674350153e-08,2.117339476381324093e-08,2.198775610088298033e-08,2.280211743795271973e-08,2.361647877502245912e-08,2.443084011209219852e-08,2.524520144916193792e-08,2.605956278623167732e-08,2.687392412330141672e-08,2.768828546037115612e-08,2.850264679744089552e-08,2.931700813451063492e-08,3.013136947158037432e-08,3.094573080865011703e-08,3.176009214571985974e-08,3.257445348278960244e-08,3.338881481985934515e-08,3.420317615692908786e-08,3.501753749399883057e-08,3.583189883106857328e-08,3.664626016813831598e-08,3.746062150520805869e-08,3.827498284227780140e-08,3.908934417934754411e-08,3.990370551641728682e-08,4.071806685348702952e-08,4.153242819055677223e-08,4.234678952762651494e-08,4.316115086469625765e-08,4.397551220176600036e-08,4.478987353883574307e-08,4.560423487590548577e-08,4.641859621297522848e-08,4.723295755004497119e-08,4.804731888711471390e-08,4.886168022418445661e-08,4.967604156125419931e-08,5.049040289832394202e-08,5.130476423539368473e-08 +0.000000000000000000e+00,7.595217788462409834e-10,1.519043557692481967e-09,2.278565336538722950e-09,3.038087115384963933e-09,3.797608894231204917e-09,4.557130673077445900e-09,5.316652451923686884e-09,6.076174230769927867e-09,6.835696009616168850e-09,7.595217788462409834e-09,8.354739567308651644e-09,9.114261346154893455e-09,9.873783125001135265e-09,1.063330490384737708e-08,1.139282668269361889e-08,1.215234846153986070e-08,1.291187024038610251e-08,1.367139201923234432e-08,1.443091379807858613e-08,1.519043557692482959e-08,1.594995735577107306e-08,1.670947913461731652e-08,1.746900091346355999e-08,1.822852269230980345e-08,1.898804447115604692e-08,1.974756625000229038e-08,2.050708802884853385e-08,2.126660980769477731e-08,2.202613158654102078e-08,2.278565336538726424e-08,2.354517514423350771e-08,2.430469692307975117e-08,2.506421870192599464e-08,2.582374048077223810e-08,2.658326225961848157e-08,2.734278403846472503e-08,2.810230581731096850e-08,2.886182759615721196e-08,2.962134937500345543e-08,3.038087115384969889e-08,3.114039293269594236e-08,3.189991471154218582e-08,3.265943649038842929e-08,3.341895826923467275e-08,3.417848004808091622e-08,3.493800182692715968e-08,3.569752360577340315e-08,3.645704538461964661e-08,3.721656716346589008e-08,3.797608894231213354e-08,3.873561072115837701e-08,3.949513250000462047e-08,4.025465427885086394e-08,4.101417605769710740e-08,4.177369783654335087e-08,4.253321961538959433e-08,4.329274139423583780e-08,4.405226317308208126e-08,4.481178495192832473e-08,4.557130673077456819e-08,4.633082850962081166e-08,4.709035028846705512e-08,4.784987206731329859e-08 +0.000000000000000000e+00,-8.390704923969659182e-10,-1.678140984793931836e-09,-2.517211477190897755e-09,-3.356281969587863673e-09,-4.195352461984829177e-09,-5.034422954381794682e-09,-5.873493446778760186e-09,-6.712563939175725691e-09,-7.551634431572691196e-09,-8.390704923969656700e-09,-9.229775416366622205e-09,-1.006884590876358771e-08,-1.090791640116055321e-08,-1.174698689355751872e-08,-1.258605738595448422e-08,-1.342512787835144973e-08,-1.426419837074841523e-08,-1.510326886314537908e-08,-1.594233935554234128e-08,-1.678140984793930347e-08,-1.762048034033626567e-08,-1.845955083273322787e-08,-1.929862132513019006e-08,-2.013769181752715226e-08,-2.097676230992411445e-08,-2.181583280232107665e-08,-2.265490329471803885e-08,-2.349397378711500104e-08,-2.433304427951196324e-08,-2.517211477190892543e-08,-2.601118526430588763e-08,-2.685025575670284982e-08,-2.768932624909981202e-08,-2.852839674149677422e-08,-2.936746723389373641e-08,-3.020653772629069861e-08,-3.104560821868766080e-08,-3.188467871108462300e-08,-3.272374920348158520e-08,-3.356281969587854739e-08,-3.440189018827550959e-08,-3.524096068067247178e-08,-3.608003117306943398e-08,-3.691910166546639617e-08,-3.775817215786335837e-08,-3.859724265026032057e-08,-3.943631314265728276e-08,-4.027538363505424496e-08,-4.111445412745120715e-08,-4.195352461984816935e-08,-4.279259511224513155e-08,-4.363166560464209374e-08,-4.447073609703905594e-08,-4.530980658943601813e-08,-4.614887708183298033e-08,-4.698794757422994252e-08,-4.782701806662690472e-08,-4.866608855902386692e-08,-4.950515905142082911e-08,-5.034422954381779131e-08,-5.118330003621475350e-08,-5.202237052861171570e-08,-5.286144102100867790e-08 +0.000000000000000000e+00,-8.143613370779793590e-10,-1.628722674155958718e-09,-2.443084011233938077e-09,-3.257445348311917436e-09,-4.071806685389897209e-09,-4.886168022467876981e-09,-5.700529359545856754e-09,-6.514890696623836527e-09,-7.329252033701816299e-09,-8.143613370779796072e-09,-8.957974707857775844e-09,-9.772336044935755617e-09,-1.058669738201373539e-08,-1.140105871909171516e-08,-1.221542005616969493e-08,-1.302978139324767471e-08,-1.384414273032565448e-08,-1.465850406740363425e-08,-1.547286540448161403e-08,-1.628722674155959545e-08,-1.710158807863757688e-08,-1.791594941571555831e-08,-1.873031075279353973e-08,-1.954467208987152116e-08,-2.035903342694950259e-08,-2.117339476402748401e-08,-2.198775610110546544e-08,-2.280211743818344687e-08,-2.361647877526142830e-08,-2.443084011233940972e-08,-2.524520144941739115e-08,-2.605956278649537258e-08,-2.687392412357335400e-08,-2.768828546065133543e-08,-2.850264679772931686e-08,-2.931700813480729828e-08,-3.013136947188527971e-08,-3.094573080896326114e-08,-3.176009214604124257e-08,-3.257445348311922399e-08,-3.338881482019720542e-08,-3.420317615727518685e-08,-3.501753749435316827e-08,-3.583189883143114970e-08,-3.664626016850913113e-08,-3.746062150558711255e-08,-3.827498284266509398e-08,-3.908934417974307541e-08,-3.990370551682105683e-08,-4.071806685389903826e-08,-4.153242819097701969e-08,-4.234678952805500112e-08,-4.316115086513298254e-08,-4.397551220221096397e-08,-4.478987353928894540e-08,-4.560423487636692682e-08,-4.641859621344490825e-08,-4.723295755052288968e-08,-4.804731888760087110e-08,-4.886168022467885253e-08,-4.967604156175683396e-08,-5.049040289883481539e-08,-5.130476423591279681e-08 +0.000000000000000000e+00,-7.595217788501779495e-10,-1.519043557700355899e-09,-2.278565336550533848e-09,-3.038087115400711798e-09,-3.797608894250889334e-09,-4.557130673101066870e-09,-5.316652451951244406e-09,-6.076174230801421942e-09,-6.835696009651599478e-09,-7.595217788501777013e-09,-8.354739567351954549e-09,-9.114261346202132085e-09,-9.873783125052309621e-09,-1.063330490390248716e-08,-1.139282668275266469e-08,-1.215234846160284223e-08,-1.291187024045301976e-08,-1.367139201930319730e-08,-1.443091379815337484e-08,-1.519043557700355072e-08,-1.594995735585372495e-08,-1.670947913470389917e-08,-1.746900091355407340e-08,-1.822852269240424763e-08,-1.898804447125442185e-08,-1.974756625010459608e-08,-2.050708802895477031e-08,-2.126660980780494454e-08,-2.202613158665511876e-08,-2.278565336550529299e-08,-2.354517514435546722e-08,-2.430469692320564144e-08,-2.506421870205581567e-08,-2.582374048090598990e-08,-2.658326225975616413e-08,-2.734278403860633835e-08,-2.810230581745651258e-08,-2.886182759630668681e-08,-2.962134937515686103e-08,-3.038087115400703526e-08,-3.114039293285720949e-08,-3.189991471170738372e-08,-3.265943649055755794e-08,-3.341895826940773217e-08,-3.417848004825790640e-08,-3.493800182710808063e-08,-3.569752360595825485e-08,-3.645704538480842908e-08,-3.721656716365860331e-08,-3.797608894250877753e-08,-3.873561072135895176e-08,-3.949513250020912599e-08,-4.025465427905930022e-08,-4.101417605790947444e-08,-4.177369783675964867e-08,-4.253321961560982290e-08,-4.329274139445999712e-08,-4.405226317331017135e-08,-4.481178495216034558e-08,-4.557130673101051981e-08,-4.633082850986069403e-08,-4.709035028871086826e-08,-4.784987206756104249e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,7.927969290725214280e-10,1.585593858145042856e-09,2.378390787217564284e-09,3.171187716290085712e-09,3.963984645362607140e-09,4.756781574435128568e-09,5.549578503507649996e-09,6.342375432580171424e-09,7.135172361652692852e-09,7.927969290725214280e-09,8.720766219797734881e-09,9.513563148870255482e-09,1.030636007794277608e-08,1.109915700701529668e-08,1.189195393608781728e-08,1.268475086516033789e-08,1.347754779423285849e-08,1.427034472330537909e-08,1.506314165237789969e-08,1.585593858145041863e-08,1.664873551052293758e-08,1.744153243959545653e-08,1.823432936866797547e-08,1.902712629774049442e-08,1.981992322681301337e-08,2.061272015588553231e-08,2.140551708495805126e-08,2.219831401403057021e-08,2.299111094310308915e-08,2.378390787217560810e-08,2.457670480124812705e-08,2.536950173032064599e-08,2.616229865939316494e-08,2.695509558846568389e-08,2.774789251753820283e-08,2.854068944661072178e-08,2.933348637568324072e-08,3.012628330475575967e-08,3.091908023382827531e-08,3.171187716290079095e-08,3.250467409197330658e-08,3.329747102104582222e-08,3.409026795011833786e-08,3.488306487919085350e-08,3.567586180826336914e-08,3.646865873733588477e-08,3.726145566640840041e-08,3.805425259548091605e-08,3.884704952455343169e-08,3.963984645362594732e-08,4.043264338269846296e-08,4.122544031177097860e-08,4.201823724084349424e-08,4.281103416991600988e-08,4.360383109898852551e-08,4.439662802806104115e-08,4.518942495713355679e-08,4.598222188620607243e-08,4.677501881527858806e-08,4.756781574435110370e-08,4.836061267342361934e-08,4.915340960249613498e-08,4.994620653156865062e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,-7.927969290738299244e-10,-1.585593858147659849e-09,-2.378390787221489670e-09,-3.171187716295319284e-09,-3.963984645369149312e-09,-4.756781574442979339e-09,-5.549578503516809367e-09,-6.342375432590639395e-09,-7.135172361664469423e-09,-7.927969290738298623e-09,-8.720766219812127824e-09,-9.513563148885957024e-09,-1.030636007795978622e-08,-1.109915700703361543e-08,-1.189195393610744463e-08,-1.268475086518127383e-08,-1.347754779425510303e-08,-1.427034472332893223e-08,-1.506314165240276143e-08,-1.585593858147659063e-08,-1.664873551055041983e-08,-1.744153243962424903e-08,-1.823432936869807823e-08,-1.902712629777190743e-08,-1.981992322684573663e-08,-2.061272015591956583e-08,-2.140551708499339503e-08,-2.219831401406722423e-08,-2.299111094314105343e-08,-2.378390787221488263e-08,-2.457670480128871184e-08,-2.536950173036254104e-08,-2.616229865943637024e-08,-2.695509558851019944e-08,-2.774789251758402864e-08,-2.854068944665785784e-08,-2.933348637573168704e-08,-3.012628330480551624e-08,-3.091908023387934875e-08,-3.171187716295318126e-08,-3.250467409202701377e-08,-3.329747102110084628e-08,-3.409026795017467879e-08,-3.488306487924851130e-08,-3.567586180832234380e-08,-3.646865873739617631e-08,-3.726145566647000882e-08,-3.805425259554384133e-08,-3.884704952461767384e-08,-3.963984645369150635e-08,-4.043264338276533886e-08,-4.122544031183917137e-08,-4.201823724091300388e-08,-4.281103416998683639e-08,-4.360383109906066890e-08,-4.439662802813450141e-08,-4.518942495720833392e-08,-4.598222188628216643e-08,-4.677501881535599893e-08,-4.756781574442983144e-08,-4.836061267350366395e-08,-4.915340960257749646e-08,-4.994620653165132897e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,6.735104208001808099e-10,1.347020841600361620e-09,2.020531262400542326e-09,2.694041683200722826e-09,3.367552104000903326e-09,4.041062524801083825e-09,4.714572945601264325e-09,5.388083366401444825e-09,6.061593787201625324e-09,6.735104208001805824e-09,7.408614628801986324e-09,8.082125049602165996e-09,8.755635470402346496e-09,9.429145891202526995e-09,1.010265631200270750e-08,1.077616673280288799e-08,1.144967715360306849e-08,1.212318757440324899e-08,1.279669799520342949e-08,1.347020841600360999e-08,1.414371883680379049e-08,1.481722925760397099e-08,1.549073967840415149e-08,1.616425009920433199e-08,1.683776052000451249e-08,1.751127094080469299e-08,1.818478136160487349e-08,1.885829178240505399e-08,1.953180220320523449e-08,2.020531262400541499e-08,2.087882304480559549e-08,2.155233346560577599e-08,2.222584388640595649e-08,2.289935430720613699e-08,2.357286472800631749e-08,2.424637514880649799e-08,2.491988556960667849e-08,2.559339599040685899e-08,2.626690641120703949e-08,2.694041683200721999e-08,2.761392725280740049e-08,2.828743767360758099e-08,2.896094809440776149e-08,2.963445851520794199e-08,3.030796893600811918e-08,3.098147935680829637e-08,3.165498977760847356e-08,3.232850019840865075e-08,3.300201061920882794e-08,3.367552104000900513e-08,3.434903146080918232e-08,3.502254188160935951e-08,3.569605230240953670e-08,3.636956272320971389e-08,3.704307314400989109e-08,3.771658356481006828e-08,3.839009398561024547e-08,3.906360440641042266e-08,3.973711482721059985e-08,4.041062524801077704e-08,4.108413566881095423e-08,4.175764608961113142e-08,4.243115651041130861e-08 +0.000000000000000000e+00,-2.131092086877301734e-20,-4.262184173754603467e-20,-6.393276260631905201e-20,-8.524368347509206934e-20,-1.065546043438650867e-19,-1.278655252126381040e-19,-1.491764460814111093e-19,-1.704873669501841146e-19,-1.917982878189571199e-19,-2.131092086877301252e-19,-2.344201295565031305e-19,-2.557310504252761599e-19,-2.770419712940491893e-19,-2.983528921628222186e-19,-3.196638130315952480e-19,-3.409747339003682774e-19,-3.622856547691413068e-19,-3.835965756379143361e-19,-4.049074965066873655e-19,-4.262184173754603949e-19,-4.475293382442334242e-19,-4.688402591130064536e-19,-4.901511799817794830e-19,-5.114621008505525124e-19,-5.327730217193255417e-19,-5.540839425880985711e-19,-5.753948634568716005e-19,-5.967057843256446299e-19,-6.180167051944176592e-19,-6.393276260631906886e-19,-6.606385469319637180e-19,-6.819494678007367474e-19,-7.032603886695097767e-19,-7.245713095382828061e-19,-7.458822304070558355e-19,-7.671931512758288648e-19,-7.885040721446018942e-19,-8.098149930133749236e-19,-8.311259138821479530e-19,-8.524368347509209823e-19,-8.737477556196941080e-19,-8.950586764884672337e-19,-9.163695973572403593e-19,-9.376805182260134850e-19,-9.589914390947866107e-19,-9.803023599635597364e-19,-1.001613280832332862e-18,-1.022924201701105988e-18,-1.044235122569879113e-18,-1.065546043438652239e-18,-1.086856964307425365e-18,-1.108167885176198490e-18,-1.129478806044971616e-18,-1.150789726913744742e-18,-1.172100647782517867e-18,-1.193411568651290993e-18,-1.214722489520064119e-18,-1.236033410388837244e-18,-1.257344331257610370e-18,-1.278655252126383496e-18,-1.299966172995156621e-18,-1.321277093863929747e-18,-1.342588014732702873e-18 +0.000000000000000000e+00,6.767930354729947704e-10,1.353586070945989541e-09,2.030379106418984311e-09,2.707172141891979082e-09,3.383965177364973852e-09,4.060758212837968622e-09,4.737551248310963393e-09,5.414344283783958163e-09,6.091137319256952933e-09,6.767930354729947704e-09,7.444723390202942474e-09,8.121516425675937245e-09,8.798309461148932842e-09,9.475102496621928440e-09,1.015189553209492404e-08,1.082868856756791963e-08,1.150548160304091523e-08,1.218227463851391083e-08,1.285906767398690643e-08,1.353586070945990202e-08,1.421265374493289762e-08,1.488944678040589322e-08,1.556623981587888882e-08,1.624303285135188442e-08,1.691982588682488001e-08,1.759661892229787561e-08,1.827341195777087121e-08,1.895020499324386681e-08,1.962699802871686240e-08,2.030379106418985800e-08,2.098058409966285360e-08,2.165737713513584920e-08,2.233417017060884479e-08,2.301096320608184039e-08,2.368775624155483599e-08,2.436454927702783159e-08,2.504134231250082718e-08,2.571813534797382278e-08,2.639492838344681838e-08,2.707172141891981398e-08,2.774851445439280957e-08,2.842530748986580517e-08,2.910210052533880077e-08,2.977889356081179637e-08,3.045568659628479527e-08,3.113247963175779749e-08,3.180927266723079970e-08,3.248606570270380192e-08,3.316285873817680413e-08,3.383965177364980635e-08,3.451644480912280856e-08,3.519323784459581078e-08,3.587003088006881299e-08,3.654682391554181521e-08,3.722361695101481742e-08,3.790040998648781964e-08,3.857720302196082185e-08,3.925399605743382407e-08,3.993078909290682628e-08,4.060758212837982850e-08,4.128437516385283071e-08,4.196116819932583293e-08,4.263796123479883514e-08 +0.000000000000000000e+00,7.232281380469170552e-10,1.446456276093834110e-09,2.169684414140751062e-09,2.892912552187667807e-09,3.616140690234584552e-09,4.339368828281501297e-09,5.062596966328418042e-09,5.785825104375334787e-09,6.509053242422251532e-09,7.232281380469168277e-09,7.955509518516085022e-09,8.678737656563000940e-09,9.401965794609916858e-09,1.012519393265683278e-08,1.084842207070374869e-08,1.157165020875066461e-08,1.229487834679758053e-08,1.301810648484449645e-08,1.374133462289141236e-08,1.446456276093832828e-08,1.518779089898524585e-08,1.591101903703216343e-08,1.663424717507908100e-08,1.735747531312599857e-08,1.808070345117291614e-08,1.880393158921983372e-08,1.952715972726675129e-08,2.025038786531366886e-08,2.097361600336058643e-08,2.169684414140750400e-08,2.242007227945442158e-08,2.314330041750133915e-08,2.386652855554825672e-08,2.458975669359517429e-08,2.531298483164209187e-08,2.603621296968900944e-08,2.675944110773592701e-08,2.748266924578284458e-08,2.820589738382976215e-08,2.892912552187667973e-08,2.965235365992359730e-08,3.037558179797051818e-08,3.109880993601743906e-08,3.182203807406435994e-08,3.254526621211128082e-08,3.326849435015820170e-08,3.399172248820512258e-08,3.471495062625204347e-08,3.543817876429896435e-08,3.616140690234588523e-08,3.688463504039280611e-08,3.760786317843972699e-08,3.833109131648664787e-08,3.905431945453356875e-08,3.977754759258048963e-08,4.050077573062741051e-08,4.122400386867433139e-08,4.194723200672125227e-08,4.267046014476817316e-08,4.339368828281509404e-08,4.411691642086201492e-08,4.484014455890893580e-08,4.556337269695585668e-08 +0.000000000000000000e+00,3.367184284304676330e-10,6.734368568609352659e-10,1.010155285291402847e-09,1.346873713721870325e-09,1.683592142152337803e-09,2.020310570582805281e-09,2.357028999013272965e-09,2.693747427443740650e-09,3.030465855874208335e-09,3.367184284304676019e-09,3.703902712735143704e-09,4.040621141165611389e-09,4.377339569596079073e-09,4.714057998026546758e-09,5.050776426457014443e-09,5.387494854887482127e-09,5.724213283317949812e-09,6.060931711748417497e-09,6.397650140178885181e-09,6.734368568609352866e-09,7.071086997039820551e-09,7.407805425470288235e-09,7.744523853900755920e-09,8.081242282331224432e-09,8.417960710761692944e-09,8.754679139192161455e-09,9.091397567622629967e-09,9.428115996053098479e-09,9.764834424483566991e-09,1.010155285291403550e-08,1.043827128134450401e-08,1.077498970977497253e-08,1.111170813820544104e-08,1.144842656663590955e-08,1.178514499506637806e-08,1.212186342349684657e-08,1.245858185192731509e-08,1.279530028035778360e-08,1.313201870878825211e-08,1.346873713721872062e-08,1.380545556564918913e-08,1.414217399407965764e-08,1.447889242251012616e-08,1.481561085094059467e-08,1.515232927937106483e-08,1.548904770780153500e-08,1.582576613623200517e-08,1.616248456466247533e-08,1.649920299309294550e-08,1.683592142152341567e-08,1.717263984995388583e-08,1.750935827838435600e-08,1.784607670681482616e-08,1.818279513524529633e-08,1.851951356367576650e-08,1.885623199210623666e-08,1.919295042053670683e-08,1.952966884896717700e-08,1.986638727739764716e-08,2.020310570582811733e-08,2.053982413425858749e-08,2.087654256268905766e-08,2.121326099111952783e-08 +0.000000000000000000e+00,-2.525296604389702018e-20,-5.050593208779404035e-20,-7.575889813169105752e-20,-1.010118641755880687e-19,-1.262648302194850798e-19,-1.515177962633820910e-19,-1.767707623072791021e-19,-2.020237283511761133e-19,-2.272766943950731244e-19,-2.525296604389701596e-19,-2.777826264828671948e-19,-3.030355925267642301e-19,-3.282885585706612653e-19,-3.535415246145583005e-19,-3.787944906584553357e-19,-4.040474567023523710e-19,-4.293004227462494062e-19,-4.545533887901464414e-19,-4.798063548340435248e-19,-5.050593208779406081e-19,-5.303122869218376915e-19,-5.555652529657347749e-19,-5.808182190096318582e-19,-6.060711850535289416e-19,-6.313241510974260250e-19,-6.565771171413231084e-19,-6.818300831852201917e-19,-7.070830492291172751e-19,-7.323360152730143585e-19,-7.575889813169114418e-19,-7.828419473608085252e-19,-8.080949134047056086e-19,-8.333478794486026919e-19,-8.586008454924997753e-19,-8.838538115363968587e-19,-9.091067775802938458e-19,-9.343597436241908328e-19,-9.596127096680878199e-19,-9.848656757119848070e-19,-1.010118641755881794e-18,-1.035371607799778781e-18,-1.060624573843675768e-18,-1.085877539887572755e-18,-1.111130505931469742e-18,-1.136383471975366729e-18,-1.161636438019263716e-18,-1.186889404063160704e-18,-1.212142370107057691e-18,-1.237395336150954678e-18,-1.262648302194851665e-18,-1.287901268238748652e-18,-1.313154234282645639e-18,-1.338407200326542626e-18,-1.363660166370439613e-18,-1.388913132414336600e-18,-1.414166098458233587e-18,-1.439419064502130574e-18,-1.464672030546027561e-18,-1.489924996589924548e-18,-1.515177962633821536e-18,-1.540430928677718523e-18,-1.565683894721615510e-18,-1.590936860765512497e-18 +0.000000000000000000e+00,-6.735104208429561805e-10,-1.347020841685912361e-09,-2.020531262528868645e-09,-2.694041683371825136e-09,-3.367552104214781626e-09,-4.041062525057738117e-09,-4.714572945900694608e-09,-5.388083366743651098e-09,-6.061593787586607589e-09,-6.735104208429564080e-09,-7.408614629272520570e-09,-8.082125050115477888e-09,-8.755635470958435206e-09,-9.429145891801392524e-09,-1.010265631264434984e-08,-1.077616673348730716e-08,-1.144967715433026448e-08,-1.212318757517322180e-08,-1.279669799601617911e-08,-1.347020841685913643e-08,-1.414371883770209375e-08,-1.481722925854505107e-08,-1.549073967938801004e-08,-1.616425010023096901e-08,-1.683776052107392798e-08,-1.751127094191688696e-08,-1.818478136275984593e-08,-1.885829178360280490e-08,-1.953180220444576387e-08,-2.020531262528872284e-08,-2.087882304613168182e-08,-2.155233346697464079e-08,-2.222584388781759976e-08,-2.289935430866055873e-08,-2.357286472950351771e-08,-2.424637515034647668e-08,-2.491988557118943565e-08,-2.559339599203239462e-08,-2.626690641287535359e-08,-2.694041683371831257e-08,-2.761392725456127154e-08,-2.828743767540423051e-08,-2.896094809624718948e-08,-2.963445851709014846e-08,-3.030796893793310743e-08,-3.098147935877606640e-08,-3.165498977961902537e-08,-3.232850020046198434e-08,-3.300201062130494332e-08,-3.367552104214790229e-08,-3.434903146299086126e-08,-3.502254188383382023e-08,-3.569605230467677921e-08,-3.636956272551973818e-08,-3.704307314636269715e-08,-3.771658356720565612e-08,-3.839009398804861509e-08,-3.906360440889157407e-08,-3.973711482973453304e-08,-4.041062525057749201e-08,-4.108413567142045098e-08,-4.175764609226340996e-08,-4.243115651310636893e-08 +0.000000000000000000e+00,-3.367184284731227005e-10,-6.734368569462454010e-10,-1.010155285419368102e-09,-1.346873713892490802e-09,-1.683592142365613503e-09,-2.020310570838736203e-09,-2.357028999311858697e-09,-2.693747427784981190e-09,-3.030465856258103684e-09,-3.367184284731226178e-09,-3.703902713204348672e-09,-4.040621141677471579e-09,-4.377339570150594486e-09,-4.714057998623717394e-09,-5.050776427096840301e-09,-5.387494855569963208e-09,-5.724213284043086115e-09,-6.060931712516209023e-09,-6.397650140989331930e-09,-6.734368569462454837e-09,-7.071086997935577745e-09,-7.407805426408700652e-09,-7.744523854881823559e-09,-8.081242283354946467e-09,-8.417960711828069374e-09,-8.754679140301192281e-09,-9.091397568774315188e-09,-9.428115997247438096e-09,-9.764834425720561003e-09,-1.010155285419368391e-08,-1.043827128266680682e-08,-1.077498971113992972e-08,-1.111170813961305263e-08,-1.144842656808617554e-08,-1.178514499655929845e-08,-1.212186342503242135e-08,-1.245858185350554426e-08,-1.279530028197866717e-08,-1.313201871045179008e-08,-1.346873713892491298e-08,-1.380545556739803589e-08,-1.414217399587115880e-08,-1.447889242434428171e-08,-1.481561085281740461e-08,-1.515232928129052752e-08,-1.548904770976365043e-08,-1.582576613823677333e-08,-1.616248456670989624e-08,-1.649920299518301915e-08,-1.683592142365614206e-08,-1.717263985212926496e-08,-1.750935828060238787e-08,-1.784607670907551078e-08,-1.818279513754863369e-08,-1.851951356602175659e-08,-1.885623199449487950e-08,-1.919295042296800241e-08,-1.952966885144112531e-08,-1.986638727991424822e-08,-2.020310570838737113e-08,-2.053982413686049404e-08,-2.087654256533361694e-08,-2.121326099380673985e-08 +0.000000000000000000e+00,-6.767930355236693023e-10,-1.353586071047338605e-09,-2.030379106571007700e-09,-2.707172142094676795e-09,-3.383965177618345891e-09,-4.060758213142015400e-09,-4.737551248665684909e-09,-5.414344284189354418e-09,-6.091137319713023927e-09,-6.767930355236693436e-09,-7.444723390760362945e-09,-8.121516426284032454e-09,-8.798309461807702791e-09,-9.475102497331373127e-09,-1.015189553285504346e-08,-1.082868856837871380e-08,-1.150548160390238414e-08,-1.218227463942605447e-08,-1.285906767494972481e-08,-1.353586071047339514e-08,-1.421265374599706548e-08,-1.488944678152073582e-08,-1.556623981704440615e-08,-1.624303285256807483e-08,-1.691982588809174352e-08,-1.759661892361541220e-08,-1.827341195913908088e-08,-1.895020499466274956e-08,-1.962699803018641824e-08,-2.030379106571008693e-08,-2.098058410123375561e-08,-2.165737713675742429e-08,-2.233417017228109297e-08,-2.301096320780476165e-08,-2.368775624332843034e-08,-2.436454927885209902e-08,-2.504134231437576770e-08,-2.571813534989943638e-08,-2.639492838542310506e-08,-2.707172142094677375e-08,-2.774851445647044243e-08,-2.842530749199411111e-08,-2.910210052751777979e-08,-2.977889356304144847e-08,-3.045568659856511385e-08,-3.113247963408877922e-08,-3.180927266961244459e-08,-3.248606570513610997e-08,-3.316285874065977534e-08,-3.383965177618344071e-08,-3.451644481170710608e-08,-3.519323784723077146e-08,-3.587003088275443683e-08,-3.654682391827810220e-08,-3.722361695380176758e-08,-3.790040998932543295e-08,-3.857720302484909832e-08,-3.925399606037276370e-08,-3.993078909589642907e-08,-4.060758213142009444e-08,-4.128437516694375982e-08,-4.196116820246742519e-08,-4.263796123799109056e-08 +0.000000000000000000e+00,-7.232281380883040032e-10,-1.446456276176608006e-09,-2.169684414264912113e-09,-2.892912552353216426e-09,-3.616140690441520740e-09,-4.339368828529825053e-09,-5.062596966618129780e-09,-5.785825104706434507e-09,-6.509053242794739234e-09,-7.232281380883043961e-09,-7.955509518971348688e-09,-8.678737657059653415e-09,-9.401965795147958142e-09,-1.012519393323626287e-08,-1.084842207132456760e-08,-1.157165020941287232e-08,-1.229487834750117705e-08,-1.301810648558948178e-08,-1.374133462367778650e-08,-1.446456276176609123e-08,-1.518779089985439430e-08,-1.591101903794269738e-08,-1.663424717603100045e-08,-1.735747531411930352e-08,-1.808070345220760659e-08,-1.880393159029590967e-08,-1.952715972838421274e-08,-2.025038786647251581e-08,-2.097361600456081888e-08,-2.169684414264912196e-08,-2.242007228073742503e-08,-2.314330041882572810e-08,-2.386652855691403117e-08,-2.458975669500233425e-08,-2.531298483309063732e-08,-2.603621297117894039e-08,-2.675944110926724346e-08,-2.748266924735554654e-08,-2.820589738544384961e-08,-2.892912552353215268e-08,-2.965235366162045576e-08,-3.037558179970876214e-08,-3.109880993779706852e-08,-3.182203807588537490e-08,-3.254526621397368128e-08,-3.326849435206198766e-08,-3.399172249015029404e-08,-3.471495062823860042e-08,-3.543817876632690681e-08,-3.616140690441521319e-08,-3.688463504250351957e-08,-3.760786318059182595e-08,-3.833109131868013233e-08,-3.905431945676843871e-08,-3.977754759485674509e-08,-4.050077573294505147e-08,-4.122400387103335786e-08,-4.194723200912166424e-08,-4.267046014720997062e-08,-4.339368828529827700e-08,-4.411691642338658338e-08,-4.484014456147488976e-08,-4.556337269956319614e-08 +0.000000000000000000e+00,6.810435357000773707e-10,1.362087071400154741e-09,2.043130607100232112e-09,2.724174142800309483e-09,3.405217678500386853e-09,4.086261214200464224e-09,4.767304749900541595e-09,5.448348285600618965e-09,6.129391821300696336e-09,6.810435357000773707e-09,7.491478892700851905e-09,8.172522428400930103e-09,8.853565964101008300e-09,9.534609499801086498e-09,1.021565303550116470e-08,1.089669657120124289e-08,1.157774010690132109e-08,1.225878364260139929e-08,1.293982717830147749e-08,1.362087071400155569e-08,1.430191424970163388e-08,1.498295778540171043e-08,1.566400132110178697e-08,1.634504485680186351e-08,1.702608839250194006e-08,1.770713192820201660e-08,1.838817546390209314e-08,1.906921899960216969e-08,1.975026253530224623e-08,2.043130607100232277e-08,2.111234960670239932e-08,2.179339314240247586e-08,2.247443667810255241e-08,2.315548021380262895e-08,2.383652374950270549e-08,2.451756728520278204e-08,2.519861082090285858e-08,2.587965435660293512e-08,2.656069789230301167e-08,2.724174142800308821e-08,2.792278496370316475e-08,2.860382849940324130e-08,2.928487203510331784e-08,2.996591557080339438e-08,3.064695910650346762e-08,3.132800264220354085e-08,3.200904617790361409e-08,3.269008971360368732e-08,3.337113324930376056e-08,3.405217678500383379e-08,3.473322032070390703e-08,3.541426385640398026e-08,3.609530739210405350e-08,3.677635092780412673e-08,3.745739446350419997e-08,3.813843799920427320e-08,3.881948153490434644e-08,3.950052507060441967e-08,4.018156860630449291e-08,4.086261214200456614e-08,4.154365567770463938e-08,4.222469921340471261e-08,4.290574274910478584e-08 +0.000000000000000000e+00,-1.437917489081316361e-20,-2.875834978162632723e-20,-4.313752467243949084e-20,-5.751669956325265445e-20,-7.189587445406581807e-20,-8.627504934487898168e-20,-1.006542242356921453e-19,-1.150333991265053089e-19,-1.294125740173184605e-19,-1.437917489081316121e-19,-1.581709237989447636e-19,-1.725500986897579152e-19,-1.869292735805710668e-19,-2.013084484713842184e-19,-2.156876233621973699e-19,-2.300667982530105215e-19,-2.444459731438236731e-19,-2.588251480346368247e-19,-2.732043229254499762e-19,-2.875834978162631278e-19,-3.019626727070762794e-19,-3.163418475978894310e-19,-3.307210224887025825e-19,-3.451001973795157341e-19,-3.594793722703288857e-19,-3.738585471611420373e-19,-3.882377220519551888e-19,-4.026168969427683404e-19,-4.169960718335814920e-19,-4.313752467243946436e-19,-4.457544216152077952e-19,-4.601335965060209467e-19,-4.745127713968340983e-19,-4.888919462876472499e-19,-5.032711211784604015e-19,-5.176502960692735530e-19,-5.320294709600867046e-19,-5.464086458508998562e-19,-5.607878207417130078e-19,-5.751669956325261593e-19,-5.895461705233393109e-19,-6.039253454141524625e-19,-6.183045203049656141e-19,-6.326836951957787656e-19,-6.470628700865919172e-19,-6.614420449774050688e-19,-6.758212198682182204e-19,-6.902003947590313719e-19,-7.045795696498445235e-19,-7.189587445406576751e-19,-7.333379194314708267e-19,-7.477170943222839782e-19,-7.620962692130971298e-19,-7.764754441039102814e-19,-7.908546189947234330e-19,-8.052337938855365846e-19,-8.196129687763497361e-19,-8.339921436671628877e-19,-8.483713185579760393e-19,-8.627504934487891909e-19,-8.771296683396022461e-19,-8.915088432304153977e-19,-9.058880181212285493e-19 +0.000000000000000000e+00,6.754873683137817543e-10,1.350974736627563509e-09,2.026462104941345263e-09,2.701949473255127017e-09,3.377436841568908771e-09,4.052924209882690526e-09,4.728411578196471866e-09,5.403898946510253207e-09,6.079386314824034548e-09,6.754873683137815889e-09,7.430361051451597229e-09,8.105848419765379397e-09,8.781335788079161565e-09,9.456823156392943733e-09,1.013231052470672590e-08,1.080779789302050807e-08,1.148328526133429024e-08,1.215877262964807240e-08,1.283425999796185457e-08,1.350974736627563674e-08,1.418523473458941891e-08,1.486072210290320108e-08,1.553620947121698324e-08,1.621169683953076541e-08,1.688718420784454758e-08,1.756267157615832975e-08,1.823815894447211192e-08,1.891364631278589408e-08,1.958913368109967625e-08,2.026462104941345842e-08,2.094010841772724059e-08,2.161559578604102275e-08,2.229108315435480492e-08,2.296657052266858709e-08,2.364205789098236926e-08,2.431754525929615143e-08,2.499303262760993359e-08,2.566851999592371576e-08,2.634400736423749793e-08,2.701949473255128010e-08,2.769498210086506227e-08,2.837046946917884443e-08,2.904595683749262660e-08,2.972144420580640877e-08,3.039693157412019425e-08,3.107241894243397972e-08,3.174790631074776520e-08,3.242339367906155068e-08,3.309888104737533615e-08,3.377436841568912163e-08,3.444985578400290711e-08,3.512534315231669258e-08,3.580083052063047806e-08,3.647631788894426354e-08,3.715180525725804901e-08,3.782729262557183449e-08,3.850277999388561996e-08,3.917826736219940544e-08,3.985375473051319092e-08,4.052924209882697639e-08,4.120472946714076187e-08,4.188021683545454735e-08,4.255570420376833282e-08 +0.000000000000000000e+00,7.479722627447005501e-10,1.495944525489401100e-09,2.243916788234101547e-09,2.991889050978801787e-09,3.739861313723501613e-09,4.487833576468201439e-09,5.235805839212901266e-09,5.983778101957601092e-09,6.731750364702300918e-09,7.479722627446999918e-09,8.227694890191698917e-09,8.975667152936397916e-09,9.723639415681096915e-09,1.047161167842579591e-08,1.121958394117049491e-08,1.196755620391519391e-08,1.271552846665989291e-08,1.346350072940459191e-08,1.421147299214929091e-08,1.495944525489398991e-08,1.570741751763868891e-08,1.645538978038338791e-08,1.720336204312808691e-08,1.795133430587278591e-08,1.869930656861748490e-08,1.944727883136218390e-08,2.019525109410688290e-08,2.094322335685158190e-08,2.169119561959628090e-08,2.243916788234097990e-08,2.318714014508567890e-08,2.393511240783037790e-08,2.468308467057507690e-08,2.543105693331977590e-08,2.617902919606447490e-08,2.692700145880917390e-08,2.767497372155387289e-08,2.842294598429857189e-08,2.917091824704327089e-08,2.991889050978797320e-08,3.066686277253267551e-08,3.141483503527737782e-08,3.216280729802208012e-08,3.291077956076678243e-08,3.365875182351148474e-08,3.440672408625618705e-08,3.515469634900088936e-08,3.590266861174559166e-08,3.665064087449029397e-08,3.739861313723499628e-08,3.814658539997969859e-08,3.889455766272440089e-08,3.964252992546910320e-08,4.039050218821380551e-08,4.113847445095850782e-08,4.188644671370321013e-08,4.263441897644791243e-08,4.338239123919261474e-08,4.413036350193731705e-08,4.487833576468201936e-08,4.562630802742672167e-08,4.637428029017142397e-08,4.712225255291612628e-08 +0.000000000000000000e+00,3.410942106997017360e-10,6.821884213994034721e-10,1.023282632099105156e-09,1.364376842798806737e-09,1.705471053498508318e-09,2.046565264198209899e-09,2.387659474897911687e-09,2.728753685597613475e-09,3.069847896297315262e-09,3.410942106997017050e-09,3.752036317696718838e-09,4.093130528396420626e-09,4.434224739096122413e-09,4.775318949795824201e-09,5.116413160495525989e-09,5.457507371195227776e-09,5.798601581894929564e-09,6.139695792594631352e-09,6.480790003294333140e-09,6.821884213994034927e-09,7.162978424693736715e-09,7.504072635393439330e-09,7.845166846093142772e-09,8.186261056792846214e-09,8.527355267492549656e-09,8.868449478192253098e-09,9.209543688891956540e-09,9.550637899591659982e-09,9.891732110291363425e-09,1.023282632099106687e-08,1.057392053169077031e-08,1.091501474239047375e-08,1.125610895309017719e-08,1.159720316378988063e-08,1.193829737448958408e-08,1.227939158518928752e-08,1.262048579588899096e-08,1.296158000658869440e-08,1.330267421728839785e-08,1.364376842798810129e-08,1.398486263868780473e-08,1.432595684938750817e-08,1.466705106008721161e-08,1.500814527078691506e-08,1.534923948148661850e-08,1.569033369218632194e-08,1.603142790288602538e-08,1.637252211358572882e-08,1.671361632428543227e-08,1.705471053498513571e-08,1.739580474568483915e-08,1.773689895638454259e-08,1.807799316708424603e-08,1.841908737778394948e-08,1.876018158848365292e-08,1.910127579918335636e-08,1.944237000988305980e-08,1.978346422058276325e-08,2.012455843128246669e-08,2.046565264198217013e-08,2.080674685268187357e-08,2.114784106338157701e-08,2.148893527408128046e-08 +0.000000000000000000e+00,-1.772797668862252461e-20,-3.545595337724504923e-20,-5.318393006586757685e-20,-7.091190675449011049e-20,-8.863988344311264413e-20,-1.063678601317351778e-19,-1.240958368203577234e-19,-1.418238135089802691e-19,-1.595517901976028148e-19,-1.772797668862253605e-19,-1.950077435748479062e-19,-2.127357202634704518e-19,-2.304636969520929975e-19,-2.481916736407155432e-19,-2.659196503293380889e-19,-2.836476270179606345e-19,-3.013756037065831802e-19,-3.191035803952057259e-19,-3.368315570838282716e-19,-3.545595337724508173e-19,-3.722875104610733629e-19,-3.900154871496959086e-19,-4.077434638383184543e-19,-4.254714405269410000e-19,-4.431994172155635456e-19,-4.609273939041860913e-19,-4.786553705928086370e-19,-4.963833472814311827e-19,-5.141113239700537283e-19,-5.318393006586762740e-19,-5.495672773472988197e-19,-5.672952540359213654e-19,-5.850232307245439111e-19,-6.027512074131664567e-19,-6.204791841017890024e-19,-6.382071607904115481e-19,-6.559351374790340938e-19,-6.736631141676566394e-19,-6.913910908562791851e-19,-7.091190675449017308e-19,-7.268470442335242765e-19,-7.445750209221468222e-19,-7.623029976107693678e-19,-7.800309742993919135e-19,-7.977589509880144592e-19,-8.154869276766370049e-19,-8.332149043652595505e-19,-8.509428810538820962e-19,-8.686708577425046419e-19,-8.863988344311270913e-19,-9.041268111197495407e-19,-9.218547878083719900e-19,-9.395827644969944394e-19,-9.573107411856168888e-19,-9.750387178742393382e-19,-9.927666945628617876e-19,-1.010494671251484237e-18,-1.028222647940106686e-18,-1.045950624628729136e-18,-1.063678601317351585e-18,-1.081406578005974034e-18,-1.099134554694596484e-18,-1.116862531383218933e-18 +0.000000000000000000e+00,-6.810435357289190907e-10,-1.362087071457838181e-09,-2.043130607186757272e-09,-2.724174142915676363e-09,-3.405217678644595453e-09,-4.086261214373514544e-09,-4.767304750102434048e-09,-5.448348285831353553e-09,-6.129391821560273057e-09,-6.810435357289192561e-09,-7.491478893018112066e-09,-8.172522428747030743e-09,-8.853565964475949420e-09,-9.534609500204868097e-09,-1.021565303593378677e-08,-1.089669657166270545e-08,-1.157774010739162413e-08,-1.225878364312054281e-08,-1.293982717884946148e-08,-1.362087071457838016e-08,-1.430191425030729884e-08,-1.498295778603621751e-08,-1.566400132176513619e-08,-1.634504485749405487e-08,-1.702608839322297354e-08,-1.770713192895189222e-08,-1.838817546468081090e-08,-1.906921900040972958e-08,-1.975026253613864825e-08,-2.043130607186756693e-08,-2.111234960759648561e-08,-2.179339314332540428e-08,-2.247443667905432296e-08,-2.315548021478324164e-08,-2.383652375051216032e-08,-2.451756728624107899e-08,-2.519861082196999767e-08,-2.587965435769891635e-08,-2.656069789342783502e-08,-2.724174142915675370e-08,-2.792278496488567238e-08,-2.860382850061459106e-08,-2.928487203634350973e-08,-2.996591557207242841e-08,-3.064695910780134709e-08,-3.132800264353026576e-08,-3.200904617925918444e-08,-3.269008971498810312e-08,-3.337113325071702180e-08,-3.405217678644594047e-08,-3.473322032217485915e-08,-3.541426385790377783e-08,-3.609530739363269650e-08,-3.677635092936161518e-08,-3.745739446509053386e-08,-3.813843800081945253e-08,-3.881948153654837121e-08,-3.950052507227728989e-08,-4.018156860800620857e-08,-4.086261214373512724e-08,-4.154365567946404592e-08,-4.222469921519296460e-08,-4.290574275092188327e-08 +0.000000000000000000e+00,-3.410942107284973407e-10,-6.821884214569946814e-10,-1.023282632185491970e-09,-1.364376842913989156e-09,-1.705471053642486342e-09,-2.046565264370983527e-09,-2.387659475099480713e-09,-2.728753685827977899e-09,-3.069847896556475084e-09,-3.410942107284972270e-09,-3.752036318013469455e-09,-4.093130528741966227e-09,-4.434224739470462999e-09,-4.775318950198959771e-09,-5.116413160927456544e-09,-5.457507371655953316e-09,-5.798601582384450088e-09,-6.139695793112946860e-09,-6.480790003841443632e-09,-6.821884214569940404e-09,-7.162978425298437176e-09,-7.504072636026933948e-09,-7.845166846755429893e-09,-8.186261057483925837e-09,-8.527355268212421782e-09,-8.868449478940917727e-09,-9.209543689669413672e-09,-9.550637900397909617e-09,-9.891732111126405562e-09,-1.023282632185490151e-08,-1.057392053258339745e-08,-1.091501474331189340e-08,-1.125610895404038934e-08,-1.159720316476888529e-08,-1.193829737549738123e-08,-1.227939158622587718e-08,-1.262048579695437312e-08,-1.296158000768286907e-08,-1.330267421841136501e-08,-1.364376842913986095e-08,-1.398486263986835690e-08,-1.432595685059685284e-08,-1.466705106132534879e-08,-1.500814527205384473e-08,-1.534923948278234068e-08,-1.569033369351083662e-08,-1.603142790423933257e-08,-1.637252211496782851e-08,-1.671361632569632446e-08,-1.705471053642482040e-08,-1.739580474715331635e-08,-1.773689895788181229e-08,-1.807799316861030824e-08,-1.841908737933880418e-08,-1.876018159006730013e-08,-1.910127580079579607e-08,-1.944237001152429202e-08,-1.978346422225278796e-08,-2.012455843298128391e-08,-2.046565264370977985e-08,-2.080674685443827580e-08,-2.114784106516677174e-08,-2.148893527589526769e-08 +0.000000000000000000e+00,-6.754873683494389256e-10,-1.350974736698877851e-09,-2.026462105048316673e-09,-2.701949473397755289e-09,-3.377436841747193904e-09,-4.052924210096632519e-09,-4.728411578446071135e-09,-5.403898946795509750e-09,-6.079386315144948365e-09,-6.754873683494386981e-09,-7.430361051843825596e-09,-8.105848420193263384e-09,-8.781335788542700345e-09,-9.456823156892137306e-09,-1.013231052524157427e-08,-1.080779789359101123e-08,-1.148328526194044819e-08,-1.215877263028988515e-08,-1.283425999863932211e-08,-1.350974736698875907e-08,-1.418523473533819603e-08,-1.486072210368763299e-08,-1.553620947203706996e-08,-1.621169684038650692e-08,-1.688718420873594388e-08,-1.756267157708538084e-08,-1.823815894543481780e-08,-1.891364631378425476e-08,-1.958913368213369172e-08,-2.026462105048312868e-08,-2.094010841883256564e-08,-2.161559578718200260e-08,-2.229108315553143957e-08,-2.296657052388087653e-08,-2.364205789223031349e-08,-2.431754526057975045e-08,-2.499303262892918741e-08,-2.566851999727862437e-08,-2.634400736562806133e-08,-2.701949473397749829e-08,-2.769498210232693525e-08,-2.837046947067637221e-08,-2.904595683902580918e-08,-2.972144420737524614e-08,-3.039693157572468641e-08,-3.107241894407412668e-08,-3.174790631242356695e-08,-3.242339368077300722e-08,-3.309888104912244748e-08,-3.377436841747188775e-08,-3.444985578582132802e-08,-3.512534315417076829e-08,-3.580083052252020856e-08,-3.647631789086964883e-08,-3.715180525921908910e-08,-3.782729262756852937e-08,-3.850277999591796964e-08,-3.917826736426740991e-08,-3.985375473261685018e-08,-4.052924210096629045e-08,-4.120472946931573072e-08,-4.188021683766517099e-08,-4.255570420601461126e-08 +0.000000000000000000e+00,-7.479722627705322633e-10,-1.495944525541064527e-09,-2.243916788311596790e-09,-2.991889051082129053e-09,-3.739861313852660903e-09,-4.487833576623192752e-09,-5.235805839393724602e-09,-5.983778102164256452e-09,-6.731750364934788301e-09,-7.479722627705320151e-09,-8.227694890475852001e-09,-8.975667153246383850e-09,-9.723639416016915700e-09,-1.047161167878744755e-08,-1.121958394155797940e-08,-1.196755620432851125e-08,-1.271552846709904310e-08,-1.346350072986957495e-08,-1.421147299264010680e-08,-1.495944525541063699e-08,-1.570741751818116719e-08,-1.645538978095169738e-08,-1.720336204372222758e-08,-1.795133430649275777e-08,-1.869930656926328797e-08,-1.944727883203381817e-08,-2.019525109480434836e-08,-2.094322335757487856e-08,-2.169119562034540875e-08,-2.243916788311593895e-08,-2.318714014588646914e-08,-2.393511240865699934e-08,-2.468308467142752953e-08,-2.543105693419805973e-08,-2.617902919696858992e-08,-2.692700145973912012e-08,-2.767497372250965031e-08,-2.842294598528018051e-08,-2.917091824805071070e-08,-2.991889051082124090e-08,-3.066686277359177109e-08,-3.141483503636230129e-08,-3.216280729913283149e-08,-3.291077956190336168e-08,-3.365875182467389188e-08,-3.440672408744442207e-08,-3.515469635021495227e-08,-3.590266861298548246e-08,-3.665064087575601266e-08,-3.739861313852654285e-08,-3.814658540129707305e-08,-3.889455766406760324e-08,-3.964252992683813344e-08,-4.039050218960866363e-08,-4.113847445237919383e-08,-4.188644671514972402e-08,-4.263441897792025422e-08,-4.338239124069078442e-08,-4.413036350346131461e-08,-4.487833576623184481e-08,-4.562630802900237500e-08,-4.637428029177290520e-08,-4.712225255454343539e-08 +0.000000000000000000e+00,7.104953638146430562e-10,1.420990727629286112e-09,2.131486091443929169e-09,2.841981455258572225e-09,3.552476819073215281e-09,4.262972182887858337e-09,4.973467546702500980e-09,5.683962910517143622e-09,6.394458274331786265e-09,7.104953638146428908e-09,7.815449001961071550e-09,8.525944365775715020e-09,9.236439729590358490e-09,9.946935093405001960e-09,1.065743045721964543e-08,1.136792582103428890e-08,1.207842118484893237e-08,1.278891654866357584e-08,1.349941191247821931e-08,1.420990727629286278e-08,1.492040264010750625e-08,1.563089800392214972e-08,1.634139336773679319e-08,1.705188873155143666e-08,1.776238409536608013e-08,1.847287945918072360e-08,1.918337482299536707e-08,1.989387018681001054e-08,2.060436555062465401e-08,2.131486091443929748e-08,2.202535627825394095e-08,2.273585164206858442e-08,2.344634700588322789e-08,2.415684236969787136e-08,2.486733773351251483e-08,2.557783309732715829e-08,2.628832846114180176e-08,2.699882382495644523e-08,2.770931918877108870e-08,2.841981455258573217e-08,2.913030991640037564e-08,2.984080528021501911e-08,3.055130064402966589e-08,3.126179600784431267e-08,3.197229137165895945e-08,3.268278673547360623e-08,3.339328209928825301e-08,3.410377746310289978e-08,3.481427282691754656e-08,3.552476819073219334e-08,3.623526355454684012e-08,3.694575891836148690e-08,3.765625428217613368e-08,3.836674964599078046e-08,3.907724500980542723e-08,3.978774037362007401e-08,4.049823573743472079e-08,4.120873110124936757e-08,4.191922646506401435e-08,4.262972182887866113e-08,4.334021719269330791e-08,4.405071255650795468e-08,4.476120792032260146e-08 +0.000000000000000000e+00,-6.977056621908256989e-21,-1.395411324381651398e-20,-2.093116986572477097e-20,-2.790822648763302796e-20,-3.488528310954128795e-20,-4.186233973144954795e-20,-4.883939635335780795e-20,-5.581645297526606795e-20,-6.279350959717432795e-20,-6.977056621908258794e-20,-7.674762284099084794e-20,-8.372467946289910794e-20,-9.070173608480736794e-20,-9.767879270671562794e-20,-1.046558493286238879e-19,-1.116329059505321600e-19,-1.186099625724404440e-19,-1.255870191943487281e-19,-1.325640758162570122e-19,-1.395411324381652963e-19,-1.465181890600735803e-19,-1.534952456819818644e-19,-1.604723023038901485e-19,-1.674493589257984325e-19,-1.744264155477067166e-19,-1.814034721696150007e-19,-1.883805287915232848e-19,-1.953575854134315688e-19,-2.023346420353398529e-19,-2.093116986572481370e-19,-2.162887552791564211e-19,-2.232658119010647051e-19,-2.302428685229729892e-19,-2.372199251448812733e-19,-2.441969817667895573e-19,-2.511740383886978414e-19,-2.581510950106061255e-19,-2.651281516325144096e-19,-2.721052082544226936e-19,-2.790822648763309777e-19,-2.860593214982392618e-19,-2.930363781201475459e-19,-3.000134347420558299e-19,-3.069904913639641140e-19,-3.139675479858723981e-19,-3.209446046077806821e-19,-3.279216612296889662e-19,-3.348987178515972503e-19,-3.418757744735055344e-19,-3.488528310954138184e-19,-3.558298877173221025e-19,-3.628069443392303866e-19,-3.697840009611386706e-19,-3.767610575830469547e-19,-3.837381142049552388e-19,-3.907151708268635229e-19,-3.976922274487718069e-19,-4.046692840706800910e-19,-4.116463406925883751e-19,-4.186233973144966592e-19,-4.256004539364049432e-19,-4.325775105583132273e-19,-4.395545671802215114e-19 +0.000000000000000000e+00,6.904856180936604220e-10,1.380971236187320844e-09,2.071456854280981473e-09,2.761942472374642102e-09,3.452428090468302731e-09,4.142913708561962946e-09,4.833399326655623161e-09,5.523884944749283376e-09,6.214370562842943591e-09,6.904856180936603807e-09,7.595341799030264022e-09,8.285827417123924237e-09,8.976313035217584452e-09,9.666798653311244668e-09,1.035728427140490488e-08,1.104776988949856510e-08,1.173825550759222531e-08,1.242874112568588553e-08,1.311922674377954574e-08,1.380971236187320596e-08,1.450019797996686617e-08,1.519068359806052474e-08,1.588116921615418495e-08,1.657165483424784517e-08,1.726214045234150538e-08,1.795262607043516560e-08,1.864311168852882581e-08,1.933359730662248603e-08,2.002408292471614624e-08,2.071456854280980646e-08,2.140505416090346667e-08,2.209553977899712689e-08,2.278602539709078710e-08,2.347651101518444732e-08,2.416699663327810753e-08,2.485748225137176775e-08,2.554796786946542796e-08,2.623845348755908818e-08,2.692893910565274839e-08,2.761942472374640861e-08,2.830991034184006882e-08,2.900039595993372904e-08,2.969088157802738925e-08,3.038136719612104947e-08,3.107185281421470969e-08,3.176233843230836990e-08,3.245282405040203012e-08,3.314330966849569033e-08,3.383379528658935055e-08,3.452428090468301076e-08,3.521476652277667098e-08,3.590525214087033119e-08,3.659573775896399141e-08,3.728622337705765162e-08,3.797670899515131184e-08,3.866719461324497205e-08,3.935768023133863227e-08,4.004816584943229248e-08,4.073865146752595270e-08,4.142913708561961291e-08,4.211962270371327313e-08,4.281010832180693334e-08,4.350059393990059356e-08 +0.000000000000000000e+00,7.967977014335816219e-10,1.593595402867163244e-09,2.390393104300745072e-09,3.187190805734326901e-09,3.983988507167908730e-09,4.780786208601490145e-09,5.577583910035071560e-09,6.374381611468652975e-09,7.171179312902234390e-09,7.967977014335815805e-09,8.764774715769396393e-09,9.561572417202976981e-09,1.035837011863655757e-08,1.115516782007013816e-08,1.195196552150371875e-08,1.274876322293729933e-08,1.354556092437087992e-08,1.434235862580446051e-08,1.513915632723804110e-08,1.593595402867162168e-08,1.673275173010520227e-08,1.752954943153878286e-08,1.832634713297236345e-08,1.912314483440594404e-08,1.991994253583952462e-08,2.071674023727310521e-08,2.151353793870668580e-08,2.231033564014026639e-08,2.310713334157384698e-08,2.390393104300742756e-08,2.470072874444100815e-08,2.549752644587458874e-08,2.629432414730816933e-08,2.709112184874174992e-08,2.788791955017533050e-08,2.868471725160891109e-08,2.948151495304249168e-08,3.027831265447606896e-08,3.107511035590964624e-08,3.187190805734322352e-08,3.266870575877680080e-08,3.346550346021037808e-08,3.426230116164395535e-08,3.505909886307753263e-08,3.585589656451110991e-08,3.665269426594468719e-08,3.744949196737826447e-08,3.824628966881184175e-08,3.904308737024541903e-08,3.983988507167899631e-08,4.063668277311257359e-08,4.143348047454615087e-08,4.223027817597972815e-08,4.302707587741330543e-08,4.382387357884688271e-08,4.462067128028045998e-08,4.541746898171403726e-08,4.621426668314761454e-08,4.701106438458119182e-08,4.780786208601476910e-08,4.860465978744834638e-08,4.940145748888192366e-08,5.019825519031550094e-08 +0.000000000000000000e+00,3.534372529485000005e-10,7.068745058970000010e-10,1.060311758845499898e-09,1.413749011793999795e-09,1.767186264742499692e-09,2.120623517690999796e-09,2.474060770639499900e-09,2.827498023588000004e-09,3.180935276536500108e-09,3.534372529485000212e-09,3.887809782433499902e-09,4.241247035381999592e-09,4.594684288330499283e-09,4.948121541278998973e-09,5.301558794227498663e-09,5.654996047175998353e-09,6.008433300124498044e-09,6.361870553072997734e-09,6.715307806021497424e-09,7.068745058969997115e-09,7.422182311918496805e-09,7.775619564866996495e-09,8.129056817815496185e-09,8.482494070763995876e-09,8.835931323712495566e-09,9.189368576660995256e-09,9.542805829609494947e-09,9.896243082557994637e-09,1.024968033550649433e-08,1.060311758845499402e-08,1.095655484140349371e-08,1.130999209435199340e-08,1.166342934730049309e-08,1.201686660024899278e-08,1.237030385319749247e-08,1.272374110614599216e-08,1.307717835909449185e-08,1.343061561204299154e-08,1.378405286499149123e-08,1.413749011793999092e-08,1.449092737088849061e-08,1.484436462383699030e-08,1.519780187678548999e-08,1.555123912973398968e-08,1.590467638268248937e-08,1.625811363563098906e-08,1.661155088857948875e-08,1.696498814152798844e-08,1.731842539447648813e-08,1.767186264742498782e-08,1.802529990037348751e-08,1.837873715332198720e-08,1.873217440627048689e-08,1.908561165921898658e-08,1.943904891216748627e-08,1.979248616511598597e-08,2.014592341806448566e-08,2.049936067101298535e-08,2.085279792396148504e-08,2.120623517690998473e-08,2.155967242985848442e-08,2.191310968280698411e-08,2.226654693575548380e-08 +0.000000000000000000e+00,-1.058282942948736887e-20,-2.116565885897473774e-20,-3.174848828846210661e-20,-4.233131771794947548e-20,-5.291414714743684435e-20,-6.349697657692421322e-20,-7.407980600641158209e-20,-8.466263543589895096e-20,-9.524546486538631983e-20,-1.058282942948736887e-19,-1.164111237243610455e-19,-1.269939531538484024e-19,-1.375767825833357592e-19,-1.481596120128231160e-19,-1.587424414423104729e-19,-1.693252708717978297e-19,-1.799081003012851865e-19,-1.904909297307725434e-19,-2.010737591602599002e-19,-2.116565885897472570e-19,-2.222394180192346139e-19,-2.328222474487219948e-19,-2.434050768782093757e-19,-2.539879063076967566e-19,-2.645707357371841375e-19,-2.751535651666715184e-19,-2.857363945961588993e-19,-2.963192240256462802e-19,-3.069020534551336611e-19,-3.174848828846210420e-19,-3.280677123141084229e-19,-3.386505417435958038e-19,-3.492333711730831847e-19,-3.598162006025705656e-19,-3.703990300320579466e-19,-3.809818594615453275e-19,-3.915646888910327084e-19,-4.021475183205200893e-19,-4.127303477500074702e-19,-4.233131771794948511e-19,-4.338960066089821838e-19,-4.444788360384695166e-19,-4.550616654679568494e-19,-4.656444948974441821e-19,-4.762273243269315149e-19,-4.868101537564188476e-19,-4.973929831859061804e-19,-5.079758126153935132e-19,-5.185586420448808459e-19,-5.291414714743681787e-19,-5.397243009038555114e-19,-5.503071303333428442e-19,-5.608899597628301769e-19,-5.714727891923175097e-19,-5.820556186218048425e-19,-5.926384480512921752e-19,-6.032212774807795080e-19,-6.138041069102668407e-19,-6.243869363397541735e-19,-6.349697657692415063e-19,-6.455525951987288390e-19,-6.561354246282161718e-19,-6.667182540577035045e-19 +0.000000000000000000e+00,-7.104953638289568997e-10,-1.420990727657913799e-09,-2.131486091486870596e-09,-2.841981455315827185e-09,-3.552476819144783775e-09,-4.262972182973740364e-09,-4.973467546802697367e-09,-5.683962910631654370e-09,-6.394458274460611374e-09,-7.104953638289568377e-09,-7.815449002118525380e-09,-8.525944365947482383e-09,-9.236439729776439386e-09,-9.946935093605396389e-09,-1.065743045743435339e-08,-1.136792582126331040e-08,-1.207842118509226740e-08,-1.278891654892122440e-08,-1.349941191275018140e-08,-1.420990727657913841e-08,-1.492040264040809376e-08,-1.563089800423704745e-08,-1.634139336806600115e-08,-1.705188873189495484e-08,-1.776238409572390853e-08,-1.847287945955286223e-08,-1.918337482338181592e-08,-1.989387018721076962e-08,-2.060436555103972331e-08,-2.131486091486867701e-08,-2.202535627869763070e-08,-2.273585164252658439e-08,-2.344634700635553809e-08,-2.415684237018449178e-08,-2.486733773401344548e-08,-2.557783309784239917e-08,-2.628832846167135287e-08,-2.699882382550030656e-08,-2.770931918932926026e-08,-2.841981455315821395e-08,-2.913030991698716764e-08,-2.984080528081612134e-08,-3.055130064464507503e-08,-3.126179600847402873e-08,-3.197229137230298242e-08,-3.268278673613193612e-08,-3.339328209996088981e-08,-3.410377746378984350e-08,-3.481427282761879720e-08,-3.552476819144775089e-08,-3.623526355527670459e-08,-3.694575891910565828e-08,-3.765625428293461198e-08,-3.836674964676356567e-08,-3.907724501059251937e-08,-3.978774037442147306e-08,-4.049823573825042675e-08,-4.120873110207938045e-08,-4.191922646590833414e-08,-4.262972182973728784e-08,-4.334021719356624153e-08,-4.405071255739519523e-08,-4.476120792122414892e-08 +0.000000000000000000e+00,-3.534372529625839395e-10,-7.068745059251678790e-10,-1.060311758887751870e-09,-1.413749011850335965e-09,-1.767186264812920059e-09,-2.120623517775504154e-09,-2.474060770738088248e-09,-2.827498023700672343e-09,-3.180935276663256438e-09,-3.534372529625840532e-09,-3.887809782588424213e-09,-4.241247035551007481e-09,-4.594684288513590748e-09,-4.948121541476174015e-09,-5.301558794438757283e-09,-5.654996047401340550e-09,-6.008433300363923818e-09,-6.361870553326507085e-09,-6.715307806289090352e-09,-7.068745059251673620e-09,-7.422182312214256887e-09,-7.775619565176840155e-09,-8.129056818139423422e-09,-8.482494071102006689e-09,-8.835931324064589957e-09,-9.189368577027173224e-09,-9.542805829989756492e-09,-9.896243082952339759e-09,-1.024968033591492303e-08,-1.060311758887750629e-08,-1.095655484184008956e-08,-1.130999209480267283e-08,-1.166342934776525610e-08,-1.201686660072783936e-08,-1.237030385369042263e-08,-1.272374110665300590e-08,-1.307717835961558917e-08,-1.343061561257817243e-08,-1.378405286554075570e-08,-1.413749011850333897e-08,-1.449092737146592224e-08,-1.484436462442850550e-08,-1.519780187739108877e-08,-1.555123913035367038e-08,-1.590467638331625200e-08,-1.625811363627883361e-08,-1.661155088924141522e-08,-1.696498814220399684e-08,-1.731842539516657845e-08,-1.767186264812916006e-08,-1.802529990109174167e-08,-1.837873715405432329e-08,-1.873217440701690490e-08,-1.908561165997948651e-08,-1.943904891294206813e-08,-1.979248616590464974e-08,-2.014592341886723135e-08,-2.049936067182981297e-08,-2.085279792479239458e-08,-2.120623517775497619e-08,-2.155967243071755780e-08,-2.191310968368013942e-08,-2.226654693664272103e-08 +0.000000000000000000e+00,-6.904856181148613713e-10,-1.380971236229722743e-09,-2.071456854344584217e-09,-2.761942472459445899e-09,-3.452428090574307580e-09,-4.142913708689169262e-09,-4.833399326804030943e-09,-5.523884944918892625e-09,-6.214370563033754306e-09,-6.904856181148615988e-09,-7.595341799263477669e-09,-8.285827417378340178e-09,-8.976313035493202687e-09,-9.666798653608065196e-09,-1.035728427172292770e-08,-1.104776988983779021e-08,-1.173825550795265272e-08,-1.242874112606751523e-08,-1.311922674418237774e-08,-1.380971236229724025e-08,-1.450019798041210276e-08,-1.519068359852696527e-08,-1.588116921664182777e-08,-1.657165483475669028e-08,-1.726214045287155279e-08,-1.795262607098641530e-08,-1.864311168910127781e-08,-1.933359730721614032e-08,-2.002408292533100283e-08,-2.071456854344586533e-08,-2.140505416156072784e-08,-2.209553977967559035e-08,-2.278602539779045286e-08,-2.347651101590531537e-08,-2.416699663402017788e-08,-2.485748225213504039e-08,-2.554796787024990290e-08,-2.623845348836476540e-08,-2.692893910647962791e-08,-2.761942472459449042e-08,-2.830991034270935293e-08,-2.900039596082421544e-08,-2.969088157893907795e-08,-3.038136719705393715e-08,-3.107185281516879304e-08,-3.176233843328364893e-08,-3.245282405139850482e-08,-3.314330966951336071e-08,-3.383379528762821660e-08,-3.452428090574307249e-08,-3.521476652385792839e-08,-3.590525214197278428e-08,-3.659573776008764017e-08,-3.728622337820249606e-08,-3.797670899631735195e-08,-3.866719461443220784e-08,-3.935768023254706373e-08,-4.004816585066191962e-08,-4.073865146877677552e-08,-4.142913708689163141e-08,-4.211962270500648730e-08,-4.281010832312134319e-08,-4.350059394123619908e-08 +0.000000000000000000e+00,-7.967977014463573231e-10,-1.593595402892714646e-09,-2.390393104339072073e-09,-3.187190805785429706e-09,-3.983988507231787753e-09,-4.780786208678145800e-09,-5.577583910124503846e-09,-6.374381611570861893e-09,-7.171179313017219940e-09,-7.967977014463578814e-09,-8.764774715909937688e-09,-9.561572417356296562e-09,-1.035837011880265544e-08,-1.115516782024901431e-08,-1.195196552169537318e-08,-1.274876322314173206e-08,-1.354556092458809093e-08,-1.434235862603444981e-08,-1.513915632748080868e-08,-1.593595402892716755e-08,-1.673275173037352643e-08,-1.752954943181988530e-08,-1.832634713326624418e-08,-1.912314483471260305e-08,-1.991994253615896192e-08,-2.071674023760532080e-08,-2.151353793905167967e-08,-2.231033564049803855e-08,-2.310713334194439742e-08,-2.390393104339075629e-08,-2.470072874483711517e-08,-2.549752644628347404e-08,-2.629432414772983292e-08,-2.709112184917619179e-08,-2.788791955062255066e-08,-2.868471725206890954e-08,-2.948151495351526841e-08,-3.027831265496163060e-08,-3.107511035640799278e-08,-3.187190805785435496e-08,-3.266870575930071714e-08,-3.346550346074707933e-08,-3.426230116219344151e-08,-3.505909886363980369e-08,-3.585589656508616587e-08,-3.665269426653252806e-08,-3.744949196797889024e-08,-3.824628966942525242e-08,-3.904308737087161461e-08,-3.983988507231797679e-08,-4.063668277376433897e-08,-4.143348047521070115e-08,-4.223027817665706334e-08,-4.302707587810342552e-08,-4.382387357954978770e-08,-4.462067128099614989e-08,-4.541746898244251207e-08,-4.621426668388887425e-08,-4.701106438533523643e-08,-4.780786208678159862e-08,-4.860465978822796080e-08,-4.940145748967432298e-08,-5.019825519112068516e-08 +0.000000000000000000e+00,9.026579929998745132e-10,1.805315985999749026e-09,2.707973978999623539e-09,3.610631971999498053e-09,4.513289964999372979e-09,5.415947957999247906e-09,6.318605950999122833e-09,7.221263943998997760e-09,8.123921936998872686e-09,9.026579929998747613e-09,9.929237922998622540e-09,1.083189591599849747e-08,1.173455390899837239e-08,1.263721190199824732e-08,1.353986989499812225e-08,1.444252788799799717e-08,1.534518588099787210e-08,1.624784387399774537e-08,1.715050186699761865e-08,1.805315985999749192e-08,1.895581785299736519e-08,1.985847584599723846e-08,2.076113383899711173e-08,2.166379183199698501e-08,2.256644982499685828e-08,2.346910781799673155e-08,2.437176581099660482e-08,2.527442380399647810e-08,2.617708179699635137e-08,2.707973978999622464e-08,2.798239778299609791e-08,2.888505577599597119e-08,2.978771376899584446e-08,3.069037176199571773e-08,3.159302975499558769e-08,3.249568774799545766e-08,3.339834574099532762e-08,3.430100373399519759e-08,3.520366172699506755e-08,3.610631971999493751e-08,3.700897771299480748e-08,3.791163570599467744e-08,3.881429369899454740e-08,3.971695169199441737e-08,4.061960968499428733e-08,4.152226767799415730e-08,4.242492567099402726e-08,4.332758366399389722e-08,4.423024165699376719e-08,4.513289964999363715e-08,4.603555764299350711e-08,4.693821563599337708e-08,4.784087362899324704e-08,4.874353162199311700e-08,4.964618961499298697e-08,5.054884760799285693e-08,5.145150560099272690e-08,5.235416359399259686e-08,5.325682158699246682e-08,5.415947957999233679e-08,5.506213757299220675e-08,5.596479556599207671e-08,5.686745355899194668e-08 +0.000000000000000000e+00,-1.747581817082172041e-21,-3.495163634164344082e-21,-5.242745451246516124e-21,-6.990327268328688165e-21,-8.737909085410859454e-21,-1.048549090249303074e-20,-1.223307271957520203e-20,-1.398065453665737332e-20,-1.572823635373954461e-20,-1.747581817082171590e-20,-1.922339998790388719e-20,-2.097098180498605848e-20,-2.271856362206822976e-20,-2.446614543915040105e-20,-2.621372725623257234e-20,-2.796130907331474062e-20,-2.970889089039690589e-20,-3.145647270747907116e-20,-3.320405452456123643e-20,-3.495163634164340170e-20,-3.669921815872556697e-20,-3.844679997580773224e-20,-4.019438179288989751e-20,-4.194196360997206279e-20,-4.368954542705422806e-20,-4.543712724413639333e-20,-4.718470906121855860e-20,-4.893229087830072387e-20,-5.067987269538288914e-20,-5.242745451246505441e-20,-5.417503632954721968e-20,-5.592261814662938495e-20,-5.767019996371155022e-20,-5.941778178079371549e-20,-6.116536359787588076e-20,-6.291294541495804603e-20,-6.466052723204021130e-20,-6.640810904912237657e-20,-6.815569086620454184e-20,-6.990327268328670711e-20,-7.165085450036887238e-20,-7.339843631745103765e-20,-7.514601813453320292e-20,-7.689359995161536819e-20,-7.864118176869753346e-20,-8.038876358577969873e-20,-8.213634540286186400e-20,-8.388392721994402927e-20,-8.563150903702619454e-20,-8.737909085410835981e-20,-8.912667267119052508e-20,-9.087425448827269036e-20,-9.262183630535485563e-20,-9.436941812243702090e-20,-9.611699993951918617e-20,-9.786458175660135144e-20,-9.961216357368351671e-20,-1.013597453907656820e-19,-1.031073272078478472e-19,-1.048549090249300125e-19,-1.066024908420121778e-19,-1.083500726590943431e-19,-1.100976544761765204e-19 +0.000000000000000000e+00,8.028596926279046446e-10,1.605719385255809289e-09,2.408579077883713830e-09,3.211438770511618165e-09,4.014298463139522913e-09,4.817158155767427661e-09,5.620017848395332409e-09,6.422877541023237157e-09,7.225737233651141905e-09,8.028596926279045826e-09,8.831456618906949746e-09,9.634316311534853667e-09,1.043717600416275759e-08,1.124003569679066151e-08,1.204289538941856543e-08,1.284575508204646935e-08,1.364861477467437327e-08,1.445147446730227719e-08,1.525433415993018277e-08,1.605719385255808834e-08,1.686005354518599392e-08,1.766291323781389949e-08,1.846577293044180507e-08,1.926863262306971064e-08,2.007149231569761622e-08,2.087435200832552179e-08,2.167721170095342737e-08,2.248007139358133294e-08,2.328293108620923852e-08,2.408579077883714409e-08,2.488865047146504967e-08,2.569151016409295524e-08,2.649436985672086082e-08,2.729722954934876639e-08,2.810008924197667197e-08,2.890294893460457755e-08,2.970580862723248312e-08,3.050866831986039200e-08,3.131152801248830089e-08,3.211438770511620977e-08,3.291724739774411866e-08,3.372010709037202754e-08,3.452296678299993642e-08,3.532582647562784531e-08,3.612868616825575419e-08,3.693154586088366308e-08,3.773440555351157196e-08,3.853726524613948084e-08,3.934012493876738973e-08,4.014298463139529861e-08,4.094584432402320749e-08,4.174870401665111638e-08,4.255156370927902526e-08,4.335442340190693415e-08,4.415728309453484303e-08,4.496014278716275191e-08,4.576300247979066080e-08,4.656586217241856968e-08,4.736872186504647857e-08,4.817158155767438745e-08,4.897444125030229633e-08,4.977730094293020522e-08,5.058016063555811410e-08 +0.000000000000000000e+00,7.890789905446375087e-10,1.578157981089275017e-09,2.367236971633912629e-09,3.156315962178550448e-09,3.945394952723188681e-09,4.734473943267826913e-09,5.523552933812465146e-09,6.312631924357103378e-09,7.101710914901741611e-09,7.890789905446380670e-09,8.679868895991019730e-09,9.468947886535658790e-09,1.025802687708029785e-08,1.104710586762493691e-08,1.183618485816957597e-08,1.262526384871421503e-08,1.341434283925885409e-08,1.420342182980349315e-08,1.499250082034813386e-08,1.578157981089277458e-08,1.657065880143741529e-08,1.735973779198205600e-08,1.814881678252669672e-08,1.893789577307133743e-08,1.972697476361597815e-08,2.051605375416061886e-08,2.130513274470525957e-08,2.209421173524990029e-08,2.288329072579454100e-08,2.367236971633918172e-08,2.446144870688382243e-08,2.525052769742846314e-08,2.603960668797310386e-08,2.682868567851774457e-08,2.761776466906238529e-08,2.840684365960702600e-08,2.919592265015166671e-08,2.998500164069630743e-08,3.077408063124094814e-08,3.156315962178558886e-08,3.235223861233022957e-08,3.314131760287487028e-08,3.393039659341951100e-08,3.471947558396415171e-08,3.550855457450879243e-08,3.629763356505343314e-08,3.708671255559807385e-08,3.787579154614271457e-08,3.866487053668735528e-08,3.945394952723199600e-08,4.024302851777663671e-08,4.103210750832127742e-08,4.182118649886591814e-08,4.261026548941055885e-08,4.339934447995519957e-08,4.418842347049984028e-08,4.497750246104448099e-08,4.576658145158912171e-08,4.655566044213376242e-08,4.734473943267840314e-08,4.813381842322304385e-08,4.892289741376768456e-08,4.971197640431232528e-08 +0.000000000000000000e+00,4.527692412859006570e-10,9.055384825718013140e-10,1.358307723857701971e-09,1.811076965143602628e-09,2.263846206429503078e-09,2.716615447715403528e-09,3.169384689001303978e-09,3.622153930287204429e-09,4.074923171573104879e-09,4.527692412859005329e-09,4.980461654144905779e-09,5.433230895430806229e-09,5.886000136716706680e-09,6.338769378002607130e-09,6.791538619288507580e-09,7.244307860574408030e-09,7.697077101860308480e-09,8.149846343146209758e-09,8.602615584432111035e-09,9.055384825718012312e-09,9.508154067003913590e-09,9.960923308289814867e-09,1.041369254957571614e-08,1.086646179086161742e-08,1.131923103214751870e-08,1.177200027343341998e-08,1.222476951471932125e-08,1.267753875600522253e-08,1.313030799729112381e-08,1.358307723857702509e-08,1.403584647986292636e-08,1.448861572114882764e-08,1.494138496243472892e-08,1.539415420372063020e-08,1.584692344500653147e-08,1.629969268629243275e-08,1.675246192757833403e-08,1.720523116886423531e-08,1.765800041015013658e-08,1.811076965143603786e-08,1.856353889272193914e-08,1.901630813400784041e-08,1.946907737529374169e-08,1.992184661657964297e-08,2.037461585786554425e-08,2.082738509915144552e-08,2.128015434043734680e-08,2.173292358172324808e-08,2.218569282300914936e-08,2.263846206429505063e-08,2.309123130558095191e-08,2.354400054686685319e-08,2.399676978815275447e-08,2.444953902943865574e-08,2.490230827072455702e-08,2.535507751201045830e-08,2.580784675329635958e-08,2.626061599458226085e-08,2.671338523586816213e-08,2.716615447715406341e-08,2.761892371843996468e-08,2.807169295972586596e-08,2.852446220101176724e-08 +0.000000000000000000e+00,-3.922101558600902196e-21,-7.844203117201804393e-21,-1.176630467580270659e-20,-1.568840623440360879e-20,-1.961050779300451098e-20,-2.353260935160541318e-20,-2.745471091020631838e-20,-3.137681246880722359e-20,-3.529891402740812879e-20,-3.922101558600903400e-20,-4.314311714460993921e-20,-4.706521870321084441e-20,-5.098732026181174962e-20,-5.490942182041266084e-20,-5.883152337901357206e-20,-6.275362493761448329e-20,-6.667572649621539451e-20,-7.059782805481630574e-20,-7.451992961341721696e-20,-7.844203117201812818e-20,-8.236413273061903941e-20,-8.628623428921995063e-20,-9.020833584782086186e-20,-9.413043740642177308e-20,-9.805253896502268430e-20,-1.019746405236235955e-19,-1.058967420822245068e-19,-1.098188436408254180e-19,-1.137409451994263172e-19,-1.176630467580272164e-19,-1.215851483166281155e-19,-1.255072498752290147e-19,-1.294293514338299139e-19,-1.333514529924308131e-19,-1.372735545510317123e-19,-1.411956561096326115e-19,-1.451177576682335107e-19,-1.490398592268344098e-19,-1.529619607854353090e-19,-1.568840623440362082e-19,-1.608061639026371074e-19,-1.647282654612380066e-19,-1.686503670198389058e-19,-1.725724685784398050e-19,-1.764945701370407042e-19,-1.804166716956416033e-19,-1.843387732542425025e-19,-1.882608748128434017e-19,-1.921829763714443009e-19,-1.961050779300452001e-19,-2.000271794886460993e-19,-2.039492810472469985e-19,-2.078713826058478977e-19,-2.117934841644487968e-19,-2.157155857230496960e-19,-2.196376872816505952e-19,-2.235597888402514944e-19,-2.274818903988523936e-19,-2.314039919574532928e-19,-2.353260935160541920e-19,-2.392481950746550911e-19,-2.431702966332559903e-19,-2.470923981918568895e-19 +0.000000000000000000e+00,-9.026579930036219515e-10,-1.805315986007243903e-09,-2.707973979010865751e-09,-3.610631972014487393e-09,-4.513289965018108620e-09,-5.415947958021729848e-09,-6.318605951025351076e-09,-7.221263944028972304e-09,-8.123921937032593531e-09,-9.026579930036213932e-09,-9.929237923039834332e-09,-1.083189591604345473e-08,-1.173455390904707513e-08,-1.263721190205069553e-08,-1.353986989505431593e-08,-1.444252788805793634e-08,-1.534518588106155508e-08,-1.624784387406517383e-08,-1.715050186706879257e-08,-1.805315986007241132e-08,-1.895581785307603007e-08,-1.985847584607964881e-08,-2.076113383908326756e-08,-2.166379183208688630e-08,-2.256644982509050505e-08,-2.346910781809412380e-08,-2.437176581109774254e-08,-2.527442380410136129e-08,-2.617708179710498004e-08,-2.707973979010859878e-08,-2.798239778311221753e-08,-2.888505577611583627e-08,-2.978771376911945502e-08,-3.069037176212307046e-08,-3.159302975512668590e-08,-3.249568774813030133e-08,-3.339834574113391677e-08,-3.430100373413753221e-08,-3.520366172714114765e-08,-3.610631972014476308e-08,-3.700897771314837852e-08,-3.791163570615199396e-08,-3.881429369915560940e-08,-3.971695169215922483e-08,-4.061960968516284027e-08,-4.152226767816645571e-08,-4.242492567117007115e-08,-4.332758366417368658e-08,-4.423024165717730202e-08,-4.513289965018091746e-08,-4.603555764318453290e-08,-4.693821563618814833e-08,-4.784087362919176377e-08,-4.874353162219537921e-08,-4.964618961519899465e-08,-5.054884760820261008e-08,-5.145150560120622552e-08,-5.235416359420984096e-08,-5.325682158721345640e-08,-5.415947958021707183e-08,-5.506213757322068727e-08,-5.596479556622430271e-08,-5.686745355922791815e-08 +0.000000000000000000e+00,-4.527692412894345277e-10,-9.055384825788690553e-10,-1.358307723868303531e-09,-1.811076965157737904e-09,-2.263846206447172483e-09,-2.716615447736607063e-09,-3.169384689026041642e-09,-3.622153930315476221e-09,-4.074923171604910801e-09,-4.527692412894344966e-09,-4.980461654183779132e-09,-5.433230895473213298e-09,-5.886000136762647464e-09,-6.338769378052081629e-09,-6.791538619341515795e-09,-7.244307860630949961e-09,-7.697077101920384954e-09,-8.149846343209819947e-09,-8.602615584499254940e-09,-9.055384825788689933e-09,-9.508154067078124926e-09,-9.960923308367559919e-09,-1.041369254965699491e-08,-1.086646179094642990e-08,-1.131923103223586490e-08,-1.177200027352529989e-08,-1.222476951481473488e-08,-1.267753875610416988e-08,-1.313030799739360487e-08,-1.358307723868303986e-08,-1.403584647997247486e-08,-1.448861572126190985e-08,-1.494138496255134484e-08,-1.539415420384077983e-08,-1.584692344513021483e-08,-1.629969268641964982e-08,-1.675246192770908481e-08,-1.720523116899851981e-08,-1.765800041028795480e-08,-1.811076965157738979e-08,-1.856353889286682478e-08,-1.901630813415625978e-08,-1.946907737544569477e-08,-1.992184661673512976e-08,-2.037461585802456476e-08,-2.082738509931399975e-08,-2.128015434060343474e-08,-2.173292358189286974e-08,-2.218569282318230473e-08,-2.263846206447173972e-08,-2.309123130576117471e-08,-2.354400054705060971e-08,-2.399676978834004470e-08,-2.444953902962947969e-08,-2.490230827091891469e-08,-2.535507751220834968e-08,-2.580784675349778467e-08,-2.626061599478721966e-08,-2.671338523607665466e-08,-2.716615447736608965e-08,-2.761892371865552464e-08,-2.807169295994495964e-08,-2.852446220123439463e-08 +0.000000000000000000e+00,-8.028596926361210296e-10,-1.605719385272242059e-09,-2.408579077908362985e-09,-3.211438770544483705e-09,-4.014298463180604011e-09,-4.817158155816724317e-09,-5.620017848452844622e-09,-6.422877541088964928e-09,-7.225737233725085234e-09,-8.028596926361204713e-09,-8.831456618997324191e-09,-9.634316311633443670e-09,-1.043717600426956315e-08,-1.124003569690568263e-08,-1.204289538954180211e-08,-1.284575508217792158e-08,-1.364861477481404106e-08,-1.445147446745016054e-08,-1.525433416008628167e-08,-1.605719385272240281e-08,-1.686005354535852394e-08,-1.766291323799464507e-08,-1.846577293063076621e-08,-1.926863262326688734e-08,-2.007149231590300847e-08,-2.087435200853912961e-08,-2.167721170117525074e-08,-2.248007139381137187e-08,-2.328293108644749301e-08,-2.408579077908361414e-08,-2.488865047171973527e-08,-2.569151016435585640e-08,-2.649436985699197754e-08,-2.729722954962809867e-08,-2.810008924226421980e-08,-2.890294893490034094e-08,-2.970580862753646207e-08,-3.050866832017258320e-08,-3.131152801280870434e-08,-3.211438770544482547e-08,-3.291724739808094660e-08,-3.372010709071706773e-08,-3.452296678335318887e-08,-3.532582647598931000e-08,-3.612868616862543113e-08,-3.693154586126155227e-08,-3.773440555389767340e-08,-3.853726524653379453e-08,-3.934012493916991567e-08,-4.014298463180603680e-08,-4.094584432444215793e-08,-4.174870401707827906e-08,-4.255156370971440020e-08,-4.335442340235052133e-08,-4.415728309498664246e-08,-4.496014278762276360e-08,-4.576300248025888473e-08,-4.656586217289500586e-08,-4.736872186553112700e-08,-4.817158155816724813e-08,-4.897444125080336926e-08,-4.977730094343949039e-08,-5.058016063607561153e-08 +0.000000000000000000e+00,-7.890789905482548729e-10,-1.578157981096509746e-09,-2.367236971644764826e-09,-3.156315962193019905e-09,-3.945394952741274985e-09,-4.734473943289529651e-09,-5.523552933837784317e-09,-6.312631924386038983e-09,-7.101710914934293649e-09,-7.890789905482548316e-09,-8.679868896030802155e-09,-9.468947886579055993e-09,-1.025802687712730983e-08,-1.104710586767556367e-08,-1.183618485822381751e-08,-1.262526384877207135e-08,-1.341434283932032519e-08,-1.420342182986857903e-08,-1.499250082041683287e-08,-1.578157981096508670e-08,-1.657065880151334054e-08,-1.735973779206159438e-08,-1.814881678260984822e-08,-1.893789577315810206e-08,-1.972697476370635590e-08,-2.051605375425460974e-08,-2.130513274480286358e-08,-2.209421173535111742e-08,-2.288329072589937126e-08,-2.367236971644762509e-08,-2.446144870699587893e-08,-2.525052769754413277e-08,-2.603960668809238661e-08,-2.682868567864064045e-08,-2.761776466918889429e-08,-2.840684365973714813e-08,-2.919592265028540197e-08,-2.998500164083365911e-08,-3.077408063138191295e-08,-3.156315962193016679e-08,-3.235223861247842063e-08,-3.314131760302667447e-08,-3.393039659357492831e-08,-3.471947558412318215e-08,-3.550855457467143599e-08,-3.629763356521968983e-08,-3.708671255576794367e-08,-3.787579154631619750e-08,-3.866487053686445134e-08,-3.945394952741270518e-08,-4.024302851796095902e-08,-4.103210750850921286e-08,-4.182118649905746670e-08,-4.261026548960572054e-08,-4.339934448015397438e-08,-4.418842347070222822e-08,-4.497750246125048205e-08,-4.576658145179873589e-08,-4.655566044234698973e-08,-4.734473943289524357e-08,-4.813381842344349741e-08,-4.892289741399175125e-08,-4.971197640454000509e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841923776801e-09,2.091647683847553603e-09,3.137471525771330611e-09,4.183295367695108033e-09,5.229119209618885454e-09,6.274943051542662876e-09,7.320766893466440298e-09,8.366590735390217720e-09,9.412414577313994314e-09,1.045823841923777091e-08,1.150406226116154750e-08,1.254988610308532410e-08,1.359570994500910069e-08,1.464153378693287729e-08,1.568735762885665388e-08,1.673318147078043213e-08,1.777900531270421038e-08,1.882482915462798863e-08,1.987065299655176688e-08,2.091647683847554513e-08,2.196230068039932337e-08,2.300812452232310162e-08,2.405394836424687987e-08,2.509977220617065812e-08,2.614559604809443637e-08,2.719141989001821462e-08,2.823724373194199287e-08,2.928306757386577112e-08,3.032889141578954937e-08,3.137471525771332762e-08,3.242053909963710586e-08,3.346636294156088411e-08,3.451218678348466236e-08,3.555801062540844061e-08,3.660383446733221886e-08,3.764965830925599711e-08,3.869548215117977536e-08,3.974130599310355361e-08,4.078712983502733186e-08,4.183295367695111010e-08,4.287877751887488835e-08,4.392460136079866660e-08,4.497042520272244485e-08,4.601624904464622310e-08,4.706207288657000135e-08,4.810789672849377960e-08,4.915372057041755785e-08,5.019954441234133610e-08,5.124536825426511434e-08,5.229119209618889259e-08,5.333701593811267084e-08,5.438283978003644909e-08,5.542866362196022734e-08,5.647448746388400559e-08,5.752031130580778384e-08,5.856613514773156209e-08,5.961195898965534695e-08,6.065778283157913844e-08,6.170360667350292992e-08,6.274943051542672140e-08,6.379525435735051289e-08,6.484107819927430437e-08,6.588690204119809586e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.908221622517203916e-22,-7.816443245034407831e-22,-1.172466486755161175e-21,-1.563288649006881566e-21,-1.954110811258601958e-21,-2.344932973510322349e-21,-2.735755135762042741e-21,-3.126577298013763132e-21,-3.517399460265483900e-21,-3.908221622517204668e-21,-4.299043784768925436e-21,-4.689865947020646203e-21,-5.080688109272366971e-21,-5.471510271524087739e-21,-5.862332433775808506e-21,-6.253154596027529274e-21,-6.643976758279250042e-21,-7.034798920530970810e-21,-7.425621082782691577e-21,-7.816443245034412345e-21,-8.207265407286133113e-21,-8.598087569537853880e-21,-8.988909731789574648e-21,-9.379731894041295416e-21,-9.770554056293016184e-21,-1.016137621854473695e-20,-1.055219838079645772e-20,-1.094302054304817849e-20,-1.133384270529989925e-20,-1.172466486755162002e-20,-1.211548702980334079e-20,-1.250630919205506156e-20,-1.289713135430678233e-20,-1.328795351655850309e-20,-1.367877567881022537e-20,-1.406959784106194764e-20,-1.446042000331366991e-20,-1.485124216556539218e-20,-1.524206432781711445e-20,-1.563288649006883673e-20,-1.602370865232055900e-20,-1.641453081457228127e-20,-1.680535297682400354e-20,-1.719617513907572582e-20,-1.758699730132744809e-20,-1.797781946357917036e-20,-1.836864162583089263e-20,-1.875946378808261491e-20,-1.915028595033433718e-20,-1.954110811258605945e-20,-1.993193027483778172e-20,-2.032275243708950400e-20,-2.071357459934122627e-20,-2.110439676159294854e-20,-2.149521892384467081e-20,-2.188604108609639308e-20,-2.227686324834811536e-20,-2.266768541059983763e-20,-2.305850757285155990e-20,-2.344932973510328217e-20,-2.384015189735500445e-20,-2.423097405960672672e-20,-2.462179622185844899e-20 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,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.045823841924962565e-09,-2.091647683849925130e-09,-3.137471525774887487e-09,-4.183295367699849432e-09,-5.229119209624811376e-09,-6.274943051549773321e-09,-7.320766893474735265e-09,-8.366590735399697209e-09,-9.412414577324658327e-09,-1.045823841924961944e-08,-1.150406226117458056e-08,-1.254988610309954168e-08,-1.359570994502450280e-08,-1.464153378694946391e-08,-1.568735762887442503e-08,-1.673318147079938449e-08,-1.777900531272434396e-08,-1.882482915464930342e-08,-1.987065299657426288e-08,-2.091647683849922234e-08,-2.196230068042418181e-08,-2.300812452234914127e-08,-2.405394836427410073e-08,-2.509977220619906020e-08,-2.614559604812401966e-08,-2.719141989004897912e-08,-2.823724373197393858e-08,-2.928306757389889805e-08,-3.032889141582386082e-08,-3.137471525774882359e-08,-3.242053909967378636e-08,-3.346636294159874913e-08,-3.451218678352371190e-08,-3.555801062544867468e-08,-3.660383446737363745e-08,-3.764965830929860022e-08,-3.869548215122356299e-08,-3.974130599314852576e-08,-4.078712983507348853e-08,-4.183295367699845131e-08,-4.287877751892341408e-08,-4.392460136084837685e-08,-4.497042520277333962e-08,-4.601624904469830239e-08,-4.706207288662326516e-08,-4.810789672854822793e-08,-4.915372057047319071e-08,-5.019954441239815348e-08,-5.124536825432311625e-08,-5.229119209624807902e-08,-5.333701593817304179e-08,-5.438283978009800456e-08,-5.542866362202296734e-08,-5.647448746394793011e-08,-5.752031130587289288e-08,-5.856613514779785565e-08,-5.961195898972281842e-08,-6.065778283164777458e-08,-6.170360667357273073e-08,-6.274943051549768688e-08,-6.379525435742264304e-08,-6.484107819934759919e-08,-6.588690204127255535e-08 +0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/uvs.csv b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/uvs.csv new file mode 100644 index 000000000..70ab0a526 --- /dev/null +++ b/src/pyvale/data/render/riley/fe/platehole3d_2mr_63f/uvs.csv @@ -0,0 +1,2520 @@ +2.616147555246215450e-01,9.999999999999997780e-02 +3.212110666434662698e-01,9.999999999999997780e-02 +3.212110666434662143e-01,1.228571428571428870e-01 +2.616147555246215450e-01,1.228571428571428870e-01 +2.616147555246215450e-01,9.999999999999997780e-02 +3.212110666434662698e-01,9.999999999999997780e-02 +2.616147555246215450e-01,1.228571428571428870e-01 +2.914129110840439352e-01,9.999999999999997780e-02 +3.212110666434662143e-01,1.114285714285715434e-01 +2.914129110840438797e-01,1.228571428571428870e-01 +2.616147555246215450e-01,1.114285714285715434e-01 +2.616147555246215450e-01,9.999999999999997780e-02 +3.212110666434662698e-01,9.999999999999997780e-02 +2.616147555246215450e-01,1.228571428571428870e-01 +2.914129110840439352e-01,9.999999999999997780e-02 +2.616147555246215450e-01,1.114285714285715434e-01 +2.616147555246215450e-01,9.999999999999997780e-02 +3.212110666434662698e-01,9.999999999999997780e-02 +3.212110666434662143e-01,1.228571428571428870e-01 +2.616147555246215450e-01,1.228571428571428870e-01 +2.616147555246215450e-01,9.999999999999997780e-02 +3.212110666434662698e-01,9.999999999999997780e-02 +2.616147555246215450e-01,1.228571428571428870e-01 +2.914129110840439352e-01,9.999999999999997780e-02 +3.212110666434662143e-01,1.114285714285715434e-01 +2.914129110840438797e-01,1.228571428571428870e-01 +2.616147555246215450e-01,1.114285714285715434e-01 +3.212110666434662143e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.457142857142857961e-01 +3.212110666434662143e-01,1.342857142857143415e-01 +2.914129110840438797e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.342857142857143415e-01 +2.616147555246215450e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.342857142857143415e-01 +3.212110666434662143e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.457142857142857961e-01 +3.212110666434662143e-01,1.342857142857143415e-01 +2.914129110840438797e-01,1.457142857142857961e-01 +2.616147555246215450e-01,1.342857142857143415e-01 +3.212110666434661588e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.685714285714285943e-01 +3.212110666434662143e-01,1.571428571428572507e-01 +2.914129110840438242e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.571428571428572507e-01 +2.616147555246215450e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.571428571428572507e-01 +3.212110666434661588e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.685714285714285943e-01 +3.212110666434662143e-01,1.571428571428572507e-01 +2.914129110840438242e-01,1.685714285714285943e-01 +2.616147555246215450e-01,1.571428571428572507e-01 +3.212110666434661588e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.914285714285713924e-01 +3.212110666434661588e-01,1.800000000000000488e-01 +2.914129110840438242e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.800000000000000488e-01 +2.616147555246215450e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.800000000000000488e-01 +3.212110666434661588e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.914285714285713924e-01 +3.212110666434661588e-01,1.800000000000000488e-01 +2.914129110840438242e-01,1.914285714285713924e-01 +2.616147555246215450e-01,1.800000000000000488e-01 +3.212110666434661033e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.142857142857143016e-01 +3.212110666434661588e-01,2.028571428571428470e-01 +2.914129110840438242e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.028571428571428470e-01 +2.616147555246215450e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.028571428571428470e-01 +3.212110666434661033e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.142857142857143016e-01 +3.212110666434661588e-01,2.028571428571428470e-01 +2.914129110840438242e-01,2.142857142857143016e-01 +2.616147555246215450e-01,2.028571428571428470e-01 +3.808073777623108835e-01,9.999999999999997780e-02 +3.808073777623108280e-01,1.228571428571428870e-01 +3.808073777623108835e-01,9.999999999999997780e-02 +3.510092222028885489e-01,9.999999999999997780e-02 +3.808073777623108280e-01,1.114285714285715434e-01 +3.510092222028885489e-01,1.228571428571428870e-01 +3.808073777623108835e-01,9.999999999999997780e-02 +3.510092222028885489e-01,9.999999999999997780e-02 +3.808073777623108835e-01,9.999999999999997780e-02 +3.808073777623108280e-01,1.228571428571428870e-01 +3.808073777623108835e-01,9.999999999999997780e-02 +3.510092222028885489e-01,9.999999999999997780e-02 +3.808073777623108280e-01,1.114285714285715434e-01 +3.510092222028885489e-01,1.228571428571428870e-01 +3.808073777623108280e-01,1.457142857142856851e-01 +3.808073777623108280e-01,1.342857142857143415e-01 +3.510092222028885489e-01,1.457142857142857961e-01 +3.808073777623108280e-01,1.457142857142856851e-01 +3.808073777623108280e-01,1.342857142857143415e-01 +3.510092222028885489e-01,1.457142857142857961e-01 +3.808073777623107170e-01,1.685714285714284832e-01 +3.808073777623107725e-01,1.571428571428572507e-01 +3.510092222028884934e-01,1.685714285714285943e-01 +3.808073777623107170e-01,1.685714285714284832e-01 +3.808073777623107725e-01,1.571428571428572507e-01 +3.510092222028884934e-01,1.685714285714285943e-01 +3.808073777623107170e-01,1.914285714285713924e-01 +3.808073777623107170e-01,1.800000000000000488e-01 +3.510092222028884379e-01,1.914285714285713924e-01 +3.808073777623107170e-01,1.914285714285713924e-01 +3.808073777623107170e-01,1.800000000000000488e-01 +3.510092222028884379e-01,1.914285714285713924e-01 +3.808073777623107170e-01,2.142857142857143016e-01 +3.808073777623107170e-01,2.028571428571428470e-01 +3.510092222028883269e-01,2.142857142857143016e-01 +3.808073777623107170e-01,2.142857142857143016e-01 +3.808073777623107170e-01,2.028571428571428470e-01 +3.510092222028883269e-01,2.142857142857143016e-01 +4.404036888811554973e-01,9.999999999999997780e-02 +4.404036888811554973e-01,1.228571428571428870e-01 +4.404036888811554973e-01,9.999999999999997780e-02 +4.106055333217331627e-01,9.999999999999997780e-02 +4.404036888811554973e-01,1.114285714285715434e-01 +4.106055333217331071e-01,1.228571428571428870e-01 +4.404036888811554973e-01,9.999999999999997780e-02 +4.106055333217331627e-01,9.999999999999997780e-02 +4.404036888811554973e-01,9.999999999999997780e-02 +4.404036888811554973e-01,1.228571428571428870e-01 +4.404036888811554973e-01,9.999999999999997780e-02 +4.106055333217331627e-01,9.999999999999997780e-02 +4.404036888811554973e-01,1.114285714285715434e-01 +4.106055333217331071e-01,1.228571428571428870e-01 +4.404036888811553863e-01,1.457142857142856851e-01 +4.404036888811553863e-01,1.342857142857143415e-01 +4.106055333217331071e-01,1.457142857142856851e-01 +4.404036888811553863e-01,1.457142857142856851e-01 +4.404036888811553863e-01,1.342857142857143415e-01 +4.106055333217331071e-01,1.457142857142856851e-01 +4.404036888811553863e-01,1.685714285714284832e-01 +4.404036888811553863e-01,1.571428571428572507e-01 +4.106055333217330516e-01,1.685714285714284832e-01 +4.404036888811553863e-01,1.685714285714284832e-01 +4.404036888811553863e-01,1.571428571428572507e-01 +4.106055333217330516e-01,1.685714285714284832e-01 +4.404036888811553307e-01,1.914285714285713924e-01 +4.404036888811553307e-01,1.800000000000000488e-01 +4.106055333217330516e-01,1.914285714285713924e-01 +4.404036888811553307e-01,1.914285714285713924e-01 +4.404036888811553307e-01,1.800000000000000488e-01 +4.106055333217330516e-01,1.914285714285713924e-01 +4.404036888811552197e-01,2.142857142857143016e-01 +4.404036888811552197e-01,2.028571428571428470e-01 +4.106055333217329961e-01,2.142857142857143016e-01 +4.404036888811552197e-01,2.142857142857143016e-01 +4.404036888811552197e-01,2.028571428571428470e-01 +4.106055333217329961e-01,2.142857142857143016e-01 +5.000000000000000000e-01,9.999999999999997780e-02 +5.000000000000000000e-01,1.228571428571428870e-01 +5.000000000000000000e-01,9.999999999999997780e-02 +4.702018444405777209e-01,9.999999999999997780e-02 +5.000000000000000000e-01,1.114285714285715434e-01 +4.702018444405777209e-01,1.228571428571428870e-01 +5.000000000000000000e-01,9.999999999999997780e-02 +4.702018444405777209e-01,9.999999999999997780e-02 +5.000000000000000000e-01,9.999999999999997780e-02 +5.000000000000000000e-01,1.228571428571428870e-01 +5.000000000000000000e-01,9.999999999999997780e-02 +4.702018444405777209e-01,9.999999999999997780e-02 +5.000000000000000000e-01,1.114285714285715434e-01 +4.702018444405777209e-01,1.228571428571428870e-01 +5.000000000000000000e-01,1.457142857142856851e-01 +5.000000000000000000e-01,1.342857142857143415e-01 +4.702018444405777209e-01,1.457142857142856851e-01 +5.000000000000000000e-01,1.457142857142856851e-01 +5.000000000000000000e-01,1.342857142857143415e-01 +4.702018444405777209e-01,1.457142857142856851e-01 +5.000000000000000000e-01,1.685714285714284832e-01 +5.000000000000000000e-01,1.571428571428572507e-01 +4.702018444405777209e-01,1.685714285714284832e-01 +5.000000000000000000e-01,1.685714285714284832e-01 +5.000000000000000000e-01,1.571428571428572507e-01 +4.702018444405777209e-01,1.685714285714284832e-01 +5.000000000000000000e-01,1.914285714285713924e-01 +5.000000000000000000e-01,1.800000000000000488e-01 +4.702018444405777209e-01,1.914285714285713924e-01 +5.000000000000000000e-01,1.914285714285713924e-01 +5.000000000000000000e-01,1.800000000000000488e-01 +4.702018444405777209e-01,1.914285714285713924e-01 +5.000000000000000000e-01,2.142857142857143016e-01 +5.000000000000000000e-01,2.028571428571428470e-01 +4.702018444405777209e-01,2.142857142857143016e-01 +5.000000000000000000e-01,2.142857142857143016e-01 +5.000000000000000000e-01,2.028571428571428470e-01 +4.702018444405777209e-01,2.142857142857143016e-01 +5.595963111188447803e-01,9.999999999999997780e-02 +5.595963111188447803e-01,1.228571428571428870e-01 +5.595963111188447803e-01,9.999999999999997780e-02 +5.297981555594223346e-01,9.999999999999997780e-02 +5.595963111188447803e-01,1.114285714285715434e-01 +5.297981555594223346e-01,1.228571428571428870e-01 +5.595963111188447803e-01,9.999999999999997780e-02 +5.297981555594223346e-01,9.999999999999997780e-02 +5.595963111188447803e-01,9.999999999999997780e-02 +5.595963111188447803e-01,1.228571428571428870e-01 +5.595963111188447803e-01,9.999999999999997780e-02 +5.297981555594223346e-01,9.999999999999997780e-02 +5.595963111188447803e-01,1.114285714285715434e-01 +5.297981555594223346e-01,1.228571428571428870e-01 +5.595963111188445582e-01,1.457142857142856851e-01 +5.595963111188445582e-01,1.342857142857143415e-01 +5.297981555594223346e-01,1.457142857142856851e-01 +5.595963111188445582e-01,1.457142857142856851e-01 +5.595963111188447803e-01,1.342857142857143415e-01 +5.297981555594223346e-01,1.457142857142856851e-01 +5.595963111188445582e-01,1.685714285714284832e-01 +5.595963111188445582e-01,1.571428571428572507e-01 +5.297981555594223346e-01,1.685714285714284832e-01 +5.595963111188445582e-01,1.685714285714284832e-01 +5.595963111188445582e-01,1.571428571428572507e-01 +5.297981555594223346e-01,1.685714285714284832e-01 +5.595963111188445582e-01,1.914285714285713924e-01 +5.595963111188445582e-01,1.800000000000000488e-01 +5.297981555594223346e-01,1.914285714285713924e-01 +5.595963111188445582e-01,1.914285714285713924e-01 +5.595963111188445582e-01,1.800000000000000488e-01 +5.297981555594223346e-01,1.914285714285713924e-01 +5.595963111188445582e-01,2.142857142857143016e-01 +5.595963111188445582e-01,2.028571428571428470e-01 +5.297981555594223346e-01,2.142857142857143016e-01 +5.595963111188445582e-01,2.142857142857143016e-01 +5.595963111188445582e-01,2.028571428571428470e-01 +5.297981555594223346e-01,2.142857142857143016e-01 +6.191926222376893385e-01,9.999999999999997780e-02 +6.191926222376892275e-01,1.228571428571428870e-01 +6.191926222376893385e-01,9.999999999999997780e-02 +5.893944666782671149e-01,9.999999999999997780e-02 +6.191926222376892275e-01,1.114285714285715434e-01 +5.893944666782670039e-01,1.228571428571428870e-01 +6.191926222376893385e-01,9.999999999999997780e-02 +5.893944666782671149e-01,9.999999999999997780e-02 +6.191926222376893385e-01,9.999999999999997780e-02 +6.191926222376892275e-01,1.228571428571428870e-01 +6.191926222376893385e-01,9.999999999999997780e-02 +5.893944666782671149e-01,9.999999999999997780e-02 +6.191926222376892275e-01,1.114285714285715434e-01 +5.893944666782670039e-01,1.228571428571428870e-01 +6.191926222376892275e-01,1.457142857142856851e-01 +6.191926222376892275e-01,1.342857142857143415e-01 +5.893944666782670039e-01,1.457142857142856851e-01 +6.191926222376892275e-01,1.457142857142856851e-01 +6.191926222376892275e-01,1.342857142857143415e-01 +5.893944666782670039e-01,1.457142857142856851e-01 +6.191926222376892275e-01,1.685714285714284832e-01 +6.191926222376892275e-01,1.571428571428572507e-01 +5.893944666782670039e-01,1.685714285714284832e-01 +6.191926222376892275e-01,1.685714285714284832e-01 +6.191926222376892275e-01,1.571428571428572507e-01 +5.893944666782670039e-01,1.685714285714284832e-01 +6.191926222376892275e-01,1.914285714285713924e-01 +6.191926222376892275e-01,1.800000000000000488e-01 +5.893944666782670039e-01,1.914285714285713924e-01 +6.191926222376892275e-01,1.914285714285713924e-01 +6.191926222376892275e-01,1.800000000000000488e-01 +5.893944666782670039e-01,1.914285714285713924e-01 +6.191926222376892275e-01,2.142857142857143016e-01 +6.191926222376892275e-01,2.028571428571428470e-01 +5.893944666782666708e-01,2.142857142857143016e-01 +6.191926222376892275e-01,2.142857142857143016e-01 +6.191926222376892275e-01,2.028571428571428470e-01 +5.893944666782666708e-01,2.142857142857143016e-01 +6.787889333565338967e-01,9.999999999999997780e-02 +6.787889333565337857e-01,1.228571428571428870e-01 +6.787889333565338967e-01,9.999999999999997780e-02 +6.489907777971115621e-01,9.999999999999997780e-02 +6.787889333565338967e-01,1.114285714285715434e-01 +6.489907777971115621e-01,1.228571428571428870e-01 +6.787889333565338967e-01,9.999999999999997780e-02 +6.489907777971115621e-01,9.999999999999997780e-02 +6.787889333565338967e-01,9.999999999999997780e-02 +6.787889333565337857e-01,1.228571428571428870e-01 +6.787889333565338967e-01,9.999999999999997780e-02 +6.489907777971115621e-01,9.999999999999997780e-02 +6.787889333565338967e-01,1.114285714285715434e-01 +6.489907777971115621e-01,1.228571428571428870e-01 +6.787889333565337857e-01,1.457142857142856851e-01 +6.787889333565337857e-01,1.342857142857143415e-01 +6.489907777971115621e-01,1.457142857142856851e-01 +6.787889333565337857e-01,1.457142857142856851e-01 +6.787889333565337857e-01,1.342857142857143415e-01 +6.489907777971115621e-01,1.457142857142856851e-01 +6.787889333565337857e-01,1.685714285714284832e-01 +6.787889333565337857e-01,1.571428571428572507e-01 +6.489907777971115621e-01,1.685714285714284832e-01 +6.787889333565337857e-01,1.685714285714284832e-01 +6.787889333565337857e-01,1.571428571428572507e-01 +6.489907777971115621e-01,1.685714285714284832e-01 +6.787889333565337857e-01,1.914285714285713924e-01 +6.787889333565337857e-01,1.800000000000000488e-01 +6.489907777971115621e-01,1.914285714285713924e-01 +6.787889333565337857e-01,1.914285714285713924e-01 +6.787889333565337857e-01,1.800000000000000488e-01 +6.489907777971115621e-01,1.914285714285713924e-01 +6.787889333565337857e-01,2.142857142857143016e-01 +6.787889333565337857e-01,2.028571428571428470e-01 +6.489907777971115621e-01,2.142857142857143016e-01 +6.787889333565337857e-01,2.142857142857143016e-01 +6.787889333565337857e-01,2.028571428571428470e-01 +6.489907777971115621e-01,2.142857142857143016e-01 +7.383852444753784550e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.228571428571428870e-01 +7.383852444753784550e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.228571428571428870e-01 +7.085870889159561203e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.114285714285715434e-01 +7.085870889159561203e-01,1.228571428571428870e-01 +7.383852444753784550e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.228571428571428870e-01 +7.085870889159561203e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.114285714285715434e-01 +7.383852444753784550e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.228571428571428870e-01 +7.383852444753784550e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.228571428571428870e-01 +7.085870889159561203e-01,9.999999999999997780e-02 +7.383852444753784550e-01,1.114285714285715434e-01 +7.085870889159561203e-01,1.228571428571428870e-01 +7.383852444753784550e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.342857142857143415e-01 +7.085870889159561203e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.342857142857143415e-01 +7.383852444753784550e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.342857142857143415e-01 +7.085870889159561203e-01,1.457142857142856851e-01 +7.383852444753784550e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.571428571428572507e-01 +7.085870889159561203e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.571428571428572507e-01 +7.383852444753784550e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.571428571428572507e-01 +7.085870889159561203e-01,1.685714285714284832e-01 +7.383852444753784550e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.800000000000000488e-01 +7.085870889159561203e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.800000000000000488e-01 +7.383852444753784550e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.914285714285713924e-01 +7.383852444753784550e-01,1.800000000000000488e-01 +7.085870889159561203e-01,1.914285714285713924e-01 +7.383852444753784550e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.028571428571428470e-01 +7.085870889159561203e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.028571428571428470e-01 +7.383852444753784550e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.142857142857143016e-01 +7.383852444753784550e-01,2.028571428571428470e-01 +7.085870889159561203e-01,2.142857142857143016e-01 +4.190570578178451355e-01,4.788782834454203829e-01 +4.415488152883058071e-01,4.860649769988477642e-01 +4.404036888811553863e-01,4.999999999999942268e-01 +4.180550722115886630e-01,5.000000000000000000e-01 +4.415488152883058071e-01,4.860649769988477642e-01 +4.404036888811553863e-01,4.999999999999942268e-01 +4.303029365530754990e-01,4.824716302221339070e-01 +4.406906614085214779e-01,4.929987756907454610e-01 +4.292293805463721079e-01,5.000000000000000000e-01 +4.185560650147168715e-01,4.894391417227100805e-01 +4.415488152883058071e-01,4.860649769988477642e-01 +4.404036888811553863e-01,4.999999999999942268e-01 +4.406906614085216445e-01,4.929987756907427965e-01 +4.190570578178451355e-01,4.788782834454203829e-01 +4.415488152883058071e-01,4.860649769988477642e-01 +4.404036888811553863e-01,4.999999999999942268e-01 +4.180550722115886630e-01,5.000000000000000000e-01 +4.415488152883058071e-01,4.860649769988477642e-01 +4.404036888811553863e-01,4.999999999999942268e-01 +4.303029365530754990e-01,4.824716302221339070e-01 +4.406906614085214779e-01,4.929987756907454610e-01 +4.292293805463721079e-01,5.000000000000000000e-01 +4.185560650147168715e-01,4.894391417227100805e-01 +3.965653003473846860e-01,4.716915898919928907e-01 +3.957064555420219953e-01,5.000000000000000000e-01 +4.078111790826148830e-01,4.752849366687064148e-01 +4.068807638768053292e-01,5.000000000000000000e-01 +3.961358779447033407e-01,4.858457949459964453e-01 +3.965653003473846860e-01,4.716915898919928907e-01 +3.957064555420219953e-01,5.000000000000000000e-01 +4.078111790826148830e-01,4.752849366687064148e-01 +4.068807638768053292e-01,5.000000000000000000e-01 +3.961358779447033407e-01,4.858457949459964453e-01 +3.740735428769241810e-01,4.645048963385653984e-01 +3.733578388724552721e-01,5.000000000000000000e-01 +3.853194216121544335e-01,4.680982431152792556e-01 +3.845321472072387170e-01,5.000000000000000000e-01 +3.737156908746896988e-01,4.822524481692826992e-01 +3.740735428769241810e-01,4.645048963385653984e-01 +3.733578388724552721e-01,5.000000000000000000e-01 +3.853194216121544891e-01,4.680982431152792556e-01 +3.845321472072387170e-01,5.000000000000000000e-01 +3.737156908746896988e-01,4.822524481692826992e-01 +3.515817854064636205e-01,4.573182027851380171e-01 +3.510092222028885489e-01,5.000000000000000000e-01 +3.628276641416939285e-01,4.609115495618516523e-01 +3.621835305376719383e-01,5.000000000000000000e-01 +3.512955038046761125e-01,4.786591013925689531e-01 +3.515817854064636205e-01,4.573182027851380171e-01 +3.510092222028885489e-01,5.000000000000000000e-01 +3.628276641416939285e-01,4.609115495618516523e-01 +3.621835305376719383e-01,5.000000000000000000e-01 +3.512955038046761125e-01,4.786591013925689531e-01 +3.290900279360032266e-01,4.501315092317105249e-01 +3.286606055333218257e-01,5.000000000000000000e-01 +3.403359066712334235e-01,4.537248560084242710e-01 +3.398349138681052151e-01,5.000000000000000000e-01 +3.288753167346625261e-01,4.750657546158553179e-01 +3.290900279360032266e-01,4.501315092317105249e-01 +3.286606055333218257e-01,5.000000000000000000e-01 +3.403359066712334235e-01,4.537248560084242710e-01 +3.398349138681052151e-01,5.000000000000000000e-01 +3.288753167346625261e-01,4.750657546158553179e-01 +3.065982704655426105e-01,4.429448156782832546e-01 +3.063119888637550470e-01,5.000000000000000000e-01 +3.178441492007729186e-01,4.465381624549970008e-01 +3.174862971985384363e-01,5.000000000000000000e-01 +3.064551296646488288e-01,4.714724078391416828e-01 +3.065982704655426105e-01,4.429448156782832546e-01 +3.063119888637550470e-01,5.000000000000000000e-01 +3.178441492007729186e-01,4.465381624549970008e-01 +3.174862971985384363e-01,5.000000000000000000e-01 +3.064551296646488288e-01,4.714724078391416828e-01 +2.841065129950821055e-01,4.357581221248557624e-01 +2.839633721941883238e-01,5.000000000000000000e-01 +2.953523917303123580e-01,4.393514689015695085e-01 +2.951376805289716576e-01,5.000000000000000000e-01 +2.840349425946351869e-01,4.678790610624278257e-01 +2.841065129950821055e-01,4.357581221248557624e-01 +2.839633721941883238e-01,5.000000000000000000e-01 +2.953523917303123580e-01,4.393514689015695085e-01 +2.951376805289716576e-01,5.000000000000000000e-01 +2.840349425946351869e-01,4.678790610624278257e-01 +2.616147555246215450e-01,4.285714285714286031e-01 +2.616147555246215450e-01,5.000000000000000000e-01 +2.616147555246215450e-01,4.285714285714286031e-01 +2.616147555246215450e-01,5.000000000000000000e-01 +2.728606342598517975e-01,4.321647753481421272e-01 +2.727890638594049899e-01,5.000000000000000000e-01 +2.616147555246215450e-01,4.642857142857143016e-01 +2.616147555246215450e-01,4.285714285714286031e-01 +2.616147555246215450e-01,5.000000000000000000e-01 +2.616147555246215450e-01,4.642857142857143016e-01 +2.616147555246215450e-01,4.285714285714286031e-01 +2.616147555246215450e-01,5.000000000000000000e-01 +2.616147555246215450e-01,4.285714285714286031e-01 +2.616147555246215450e-01,5.000000000000000000e-01 +2.728606342598517975e-01,4.321647753481421272e-01 +2.727890638594049899e-01,5.000000000000000000e-01 +2.616147555246215450e-01,4.642857142857143016e-01 +4.220245088916865228e-01,4.582251426200384392e-01 +4.449401879441248209e-01,4.726654691167786471e-01 +4.449401879441248209e-01,4.726654691167786471e-01 +4.334823484179057274e-01,4.654453058684085986e-01 +4.429698860295317453e-01,4.792653801961094251e-01 +4.205407833547658569e-01,4.685517130327292445e-01 +4.449401879441248209e-01,4.726654691167786471e-01 +4.429698860295317453e-01,4.792653801961094251e-01 +4.220245088916865228e-01,4.582251426200384392e-01 +4.449401879441248209e-01,4.726654691167786471e-01 +4.449401879441248209e-01,4.726654691167786471e-01 +4.334823484179056163e-01,4.654453058684085986e-01 +4.429698860295317453e-01,4.792653801961094251e-01 +4.205407833547658569e-01,4.685517130327292445e-01 +3.991088298392487244e-01,4.437848161232982314e-01 +4.105666693654676513e-01,4.510049793716682798e-01 +3.978370650933166774e-01,4.577382030076454500e-01 +3.991088298392487244e-01,4.437848161232982314e-01 +4.105666693654676513e-01,4.510049793716682798e-01 +3.978370650933166774e-01,4.577382030076454500e-01 +3.761931507868108704e-01,4.293444896265581345e-01 +3.876509903130297974e-01,4.365646528749282940e-01 +3.751333468318675535e-01,4.469246929825617665e-01 +3.761931507868108704e-01,4.293444896265581345e-01 +3.876509903130297974e-01,4.365646528749282940e-01 +3.751333468318675535e-01,4.469246929825617665e-01 +3.532774717343730164e-01,4.149041631298178157e-01 +3.647353112605919434e-01,4.221243263781878641e-01 +3.524296285704183740e-01,4.361111829574778609e-01 +3.532774717343730164e-01,4.149041631298178157e-01 +3.647353112605919434e-01,4.221243263781878641e-01 +3.524296285704183740e-01,4.361111829574778609e-01 +3.303617926819351069e-01,4.004638366330777188e-01 +3.418196322081540894e-01,4.076839998814477672e-01 +3.297259103089691390e-01,4.252976729323939553e-01 +3.303617926819351069e-01,4.004638366330777188e-01 +3.418196322081540894e-01,4.076839998814477672e-01 +3.297259103089691390e-01,4.252976729323939553e-01 +3.074461136294973085e-01,3.860235101363372889e-01 +3.189039531557161800e-01,3.932436733847076704e-01 +3.070221920475199595e-01,4.144841629073102718e-01 +3.074461136294973085e-01,3.860235101363372889e-01 +3.189039531557161800e-01,3.932436733847076704e-01 +3.070221920475199595e-01,4.144841629073102718e-01 +2.845304345770593990e-01,3.715831836395973031e-01 +2.959882741032783260e-01,3.788033468879673515e-01 +2.843184737860707245e-01,4.036706528822264772e-01 +2.845304345770593990e-01,3.715831836395973031e-01 +2.959882741032783260e-01,3.788033468879673515e-01 +2.843184737860707245e-01,4.036706528822264772e-01 +2.616147555246215450e-01,3.571428571428570953e-01 +2.616147555246215450e-01,3.571428571428570953e-01 +2.730725950508404720e-01,3.643630203912271437e-01 +2.616147555246215450e-01,3.928571428571427937e-01 +2.616147555246215450e-01,3.571428571428570953e-01 +2.616147555246215450e-01,3.928571428571427937e-01 +2.616147555246215450e-01,3.571428571428570953e-01 +2.616147555246215450e-01,3.571428571428570953e-01 +2.730725950508404720e-01,3.643630203912271437e-01 +2.616147555246215450e-01,3.928571428571427937e-01 +4.268433879525108110e-01,4.384911461505599517e-01 +4.504474782993528881e-01,4.603164119271705434e-01 +4.504474782993528881e-01,4.603164119271705434e-01 +4.386454331259318495e-01,4.494037790388650810e-01 +4.474407459475709392e-01,4.663288045124280856e-01 +4.244339484220986947e-01,4.483581443852990844e-01 +4.504474782993528881e-01,4.603164119271705434e-01 +4.474407459475709392e-01,4.663288045124280856e-01 +4.268433879525108110e-01,4.384911461505599517e-01 +4.504474782993528881e-01,4.603164119271705434e-01 +4.504474782993528881e-01,4.603164119271705434e-01 +4.386454331259318495e-01,4.494037790388650810e-01 +4.474407459475709392e-01,4.663288045124280856e-01 +4.244339484220985836e-01,4.483581443852990844e-01 +4.032392976056695111e-01,4.166658803739492489e-01 +4.150413427790901610e-01,4.275785132622546003e-01 +4.011740637224591177e-01,4.302253482486236846e-01 +4.032392976056695111e-01,4.166658803739492489e-01 +4.150413427790901610e-01,4.275785132622546003e-01 +4.011740637224591732e-01,4.302253482486236846e-01 +3.796352072588281557e-01,3.948406145973387682e-01 +3.914372524322488056e-01,4.057532474856438975e-01 +3.779141790228195408e-01,4.120925521119483959e-01 +3.796352072588281557e-01,3.948406145973387682e-01 +3.914372524322488056e-01,4.057532474856438975e-01 +3.779141790228195408e-01,4.120925521119483959e-01 +3.560311169119868557e-01,3.730153488207279544e-01 +3.678331620854075612e-01,3.839279817090334168e-01 +3.546542943231799083e-01,3.939597559752728850e-01 +3.560311169119868557e-01,3.730153488207279544e-01 +3.678331620854075612e-01,3.839279817090334168e-01 +3.546542943231799083e-01,3.939597559752728850e-01 +3.324270265651455558e-01,3.511900830441174737e-01 +3.442290717385661503e-01,3.621027159324226030e-01 +3.313944096235403314e-01,3.758269598385974852e-01 +3.324270265651455558e-01,3.511900830441174737e-01 +3.442290717385661503e-01,3.621027159324226030e-01 +3.313944096235403314e-01,3.758269598385974852e-01 +3.088229362183041449e-01,3.293648172675067709e-01 +3.206249813917249059e-01,3.402774501558121223e-01 +3.081345249239006989e-01,3.576941637019219744e-01 +3.088229362183041449e-01,3.293648172675067709e-01 +3.206249813917249059e-01,3.402774501558121223e-01 +3.081345249239006989e-01,3.576941637019219744e-01 +2.852188458714629005e-01,3.075395514908961792e-01 +2.970208910448834949e-01,3.184521843792015305e-01 +2.848746402242611220e-01,3.395613675652466856e-01 +2.852188458714629005e-01,3.075395514908961792e-01 +2.970208910448834949e-01,3.184521843792015305e-01 +2.848746402242611220e-01,3.395613675652466856e-01 +2.616147555246215450e-01,2.857142857142855874e-01 +2.616147555246215450e-01,2.857142857142855874e-01 +2.734168006980421950e-01,2.966269186025908278e-01 +2.616147555246215450e-01,3.214285714285713969e-01 +2.616147555246215450e-01,2.857142857142855874e-01 +2.616147555246215450e-01,3.214285714285713969e-01 +2.616147555246215450e-01,2.857142857142855874e-01 +2.616147555246215450e-01,2.857142857142855874e-01 +2.734168006980421950e-01,2.966269186025908278e-01 +2.616147555246215450e-01,3.214285714285713969e-01 +4.333285081804689742e-01,4.200915404615542803e-01 +4.578590442741624633e-01,4.494923727723885154e-01 +4.578590442741624633e-01,4.494923727723885154e-01 +4.455937762273157743e-01,4.347919566169714534e-01 +4.539314285232758373e-01,4.546861939883101167e-01 +4.300859480664899204e-01,4.292913433060572270e-01 +4.578590442741624633e-01,4.494923727723885154e-01 +4.539314285232758373e-01,4.546861939883101167e-01 +4.333285081804689742e-01,4.200915404615542803e-01 +4.578590442741624633e-01,4.494923727723885154e-01 +4.578590442741624633e-01,4.494923727723885154e-01 +4.455937762273157743e-01,4.347919566169714534e-01 +4.539314285232758373e-01,4.546861939883101167e-01 +4.300859480664899204e-01,4.292913433060572270e-01 +4.087979720867765399e-01,3.906907081507200452e-01 +4.210632401336227848e-01,4.053911243061371072e-01 +4.060186348462230255e-01,4.036782942623345916e-01 +4.087979720867765399e-01,3.906907081507200452e-01 +4.210632401336227848e-01,4.053911243061371072e-01 +4.060186348462230810e-01,4.036782942623345916e-01 +3.842674359930839945e-01,3.612898758398856991e-01 +3.965327040399302394e-01,3.759902919953028722e-01 +3.819513216259561306e-01,3.780652452186120671e-01 +3.842674359930839945e-01,3.612898758398856991e-01 +3.965327040399302394e-01,3.759902919953028722e-01 +3.819513216259561306e-01,3.780652452186120671e-01 +3.597368998993915046e-01,3.318890435290514640e-01 +3.720021679462377495e-01,3.465894596844685260e-01 +3.578840084056891802e-01,3.524521961748898757e-01 +3.597368998993915046e-01,3.318890435290514640e-01 +3.720021679462377495e-01,3.465894596844685260e-01 +3.578840084056891802e-01,3.524521961748898757e-01 +3.352063638056990147e-01,3.024882112182171179e-01 +3.474716318525453151e-01,3.171886273736342909e-01 +3.338166951854222853e-01,3.268391471311672403e-01 +3.352063638056990147e-01,3.024882112182171179e-01 +3.474716318525453151e-01,3.171886273736342909e-01 +3.338166951854222853e-01,3.268391471311672403e-01 +3.106758277120065248e-01,2.730873789073827718e-01 +3.229410957588527697e-01,2.877877950627999448e-01 +3.097493819651553348e-01,3.012260980874447158e-01 +3.106758277120065248e-01,2.730873789073827718e-01 +3.229410957588527697e-01,2.877877950627999448e-01 +3.097493819651553348e-01,3.012260980874447158e-01 +2.861452916183140349e-01,2.436865465965485367e-01 +2.984105596651602244e-01,2.583869627519657097e-01 +2.856820687448884399e-01,2.756130490437224134e-01 +2.861452916183140349e-01,2.436865465965485367e-01 +2.984105596651602244e-01,2.583869627519657097e-01 +2.856820687448884399e-01,2.756130490437224134e-01 +2.738800235714677900e-01,2.289861304411314746e-01 +2.616147555246215450e-01,2.500000000000000000e-01 +2.616147555246215450e-01,2.500000000000000000e-01 +2.738800235714677900e-01,2.289861304411314746e-01 +2.616147555246215450e-01,2.500000000000000000e-01 +4.486801889319535497e-01,4.123188635168045790e-01 +4.668900635445958902e-01,4.406093134069601902e-01 +4.668900635445958902e-01,4.406093134069601902e-01 +4.577851262382747755e-01,4.264640884618822181e-01 +4.621925004652787661e-01,4.447849676169464139e-01 +4.410043485562112897e-01,4.162052019891794297e-01 +4.668900635445958902e-01,4.406093134069601902e-01 +4.621925004652787661e-01,4.447849676169464139e-01 +4.486801889319535497e-01,4.123188635168045790e-01 +4.668900635445958902e-01,4.406093134069601902e-01 +4.668900635445958902e-01,4.406093134069601902e-01 +4.577851262382747755e-01,4.264640884618822181e-01 +4.621925004652787661e-01,4.447849676169464139e-01 +4.410043485562112897e-01,4.162052019891794297e-01 +4.304703143193125414e-01,3.840284136266487458e-01 +4.395752516256330455e-01,3.981736385717266069e-01 +4.196341432030445406e-01,3.873595608886842845e-01 +4.304703143193125414e-01,3.840284136266487458e-01 +4.395752516256330455e-01,3.981736385717266069e-01 +4.196341432030445406e-01,3.873595608886842845e-01 +4.122604397066714221e-01,3.557379637364930236e-01 +4.213653770129919818e-01,3.698831886815706627e-01 +3.982639378498777361e-01,3.585139197881891393e-01 +4.122604397066714221e-01,3.557379637364930236e-01 +4.213653770129919818e-01,3.698831886815706627e-01 +3.982639378498777361e-01,3.585139197881891393e-01 +3.940505650940304139e-01,3.274475138463371904e-01 +4.031555024003509180e-01,3.415927387914151625e-01 +3.768937324967109315e-01,3.296682786876943272e-01 +3.940505650940304139e-01,3.274475138463371904e-01 +4.031555024003509180e-01,3.415927387914151625e-01 +3.768937324967109315e-01,3.296682786876943272e-01 +3.758406904813892946e-01,2.991570639561814682e-01 +3.849456277877098542e-01,3.133022889012592183e-01 +3.555235271435441824e-01,3.008226375871992930e-01 +3.758406904813892946e-01,2.991570639561814682e-01 +3.849456277877098542e-01,3.133022889012592183e-01 +3.555235271435441824e-01,3.008226375871992930e-01 +3.576308158687481753e-01,2.708666140660257460e-01 +3.667357531750687905e-01,2.850118390111034961e-01 +3.341533217903773778e-01,2.719769964867042589e-01 +3.576308158687481753e-01,2.708666140660257460e-01 +3.667357531750687905e-01,2.850118390111034961e-01 +3.341533217903773778e-01,2.719769964867042589e-01 +3.394209412561071115e-01,2.425761641758700238e-01 +3.485258785624277267e-01,2.567213891209478849e-01 +3.127831164372105732e-01,2.431313553862093357e-01 +3.394209412561071115e-01,2.425761641758700238e-01 +3.485258785624277267e-01,2.567213891209478849e-01 +3.127831164372105732e-01,2.431313553862093357e-01 +3.303160039497866074e-01,2.284309392307922737e-01 +3.303160039497866074e-01,2.284309392307922737e-01 +4.651452164369386244e-01,4.065432435037581449e-01 +4.771934791047441893e-01,4.340086048206217573e-01 +4.771934791047441893e-01,4.340086048206217573e-01 +4.711693477708415179e-01,4.202759241621898401e-01 +4.719064934117110921e-01,4.370056239751167748e-01 +4.569127026844461148e-01,4.094310535102813065e-01 +4.771934791047441893e-01,4.340086048206217573e-01 +4.719064934117110921e-01,4.370056239751167748e-01 +4.651452164369386244e-01,4.065432435037581449e-01 +4.771934791047441893e-01,4.340086048206217573e-01 +4.771934791047441893e-01,4.340086048206217573e-01 +4.711693477708415179e-01,4.202759241621898401e-01 +4.719064934117110921e-01,4.370056239751167748e-01 +4.569127026844461148e-01,4.094310535102813065e-01 +4.530969537691347804e-01,3.790778821868948656e-01 +4.591210851030366746e-01,3.928105628453265608e-01 +4.417836340442236054e-01,3.815531479067718612e-01 +4.530969537691347804e-01,3.790778821868948656e-01 +4.591210851030366746e-01,3.928105628453265608e-01 +4.417836340442236054e-01,3.815531479067718612e-01 +4.410486911013307143e-01,3.516125208700313642e-01 +4.470728224352326641e-01,3.653452015284630594e-01 +4.266545654040010405e-01,3.536752423032621939e-01 +4.410486911013307143e-01,3.516125208700313642e-01 +4.470728224352326641e-01,3.653452015284630594e-01 +4.266545654040010405e-01,3.536752423032621939e-01 +4.290004284335267037e-01,3.241471595531678629e-01 +4.350245597674286535e-01,3.378798402115995581e-01 +4.115254967637785311e-01,3.257973366997525266e-01 +4.290004284335267037e-01,3.241471595531678629e-01 +4.350245597674286535e-01,3.378798402115995581e-01 +4.115254967637785311e-01,3.257973366997525266e-01 +4.169521657657227487e-01,2.966817982363044726e-01 +4.229762970996246985e-01,3.104144788947361677e-01 +3.963964281235560216e-01,2.979194310962429704e-01 +4.169521657657227487e-01,2.966817982363044726e-01 +4.229762970996246985e-01,3.104144788947361677e-01 +3.963964281235560771e-01,2.979194310962429704e-01 +4.049039030979186826e-01,2.692164369194409712e-01 +4.109280344318206879e-01,2.829491175778727774e-01 +3.812673594833334567e-01,2.700415254927333031e-01 +4.049039030979186826e-01,2.692164369194409712e-01 +4.109280344318206879e-01,2.829491175778727774e-01 +3.812673594833334567e-01,2.700415254927333031e-01 +3.928556404301147276e-01,2.417510756025776919e-01 +3.988797717640166773e-01,2.554837562610093871e-01 +3.661382908431109473e-01,2.421636198892237468e-01 +3.928556404301147276e-01,2.417510756025776919e-01 +3.988797717640166773e-01,2.554837562610093871e-01 +3.661382908431109473e-01,2.421636198892237468e-01 +3.868315090962126668e-01,2.280183949441459967e-01 +3.868315090962126668e-01,2.280183949441459967e-01 +4.823771305238892526e-01,4.029866342605119556e-01 +4.883733364728529702e-01,4.299439085426260965e-01 +4.883733364728529702e-01,4.299439085426260965e-01 +4.853752334983710837e-01,4.164652714015690815e-01 +4.827001040613112526e-01,4.316471188762701638e-01 +4.737611734804140218e-01,4.047649388821350502e-01 +4.883733364728529702e-01,4.299439085426260965e-01 +4.827001040613112526e-01,4.316471188762701638e-01 +4.823771305238892526e-01,4.029866342605119556e-01 +4.883733364728529702e-01,4.299439085426260965e-01 +4.883733364728529702e-01,4.299439085426260965e-01 +4.853752334983710837e-01,4.164652714015690815e-01 +4.827001040613112526e-01,4.316471188762701638e-01 +4.737611734804140218e-01,4.047649388821350502e-01 +4.763809245749272558e-01,3.760293599783981477e-01 +4.793790275494081987e-01,3.895079971194550517e-01 +4.647389391720310181e-01,3.775536210826463401e-01 +4.763809245749272558e-01,3.760293599783981477e-01 +4.793790275494081987e-01,3.895079971194550517e-01 +4.647389391720310181e-01,3.775536210826463401e-01 +4.703847186259653146e-01,3.490720856962841179e-01 +4.733828216004462019e-01,3.625507228373410218e-01 +4.557167048636480144e-01,3.503423032831577411e-01 +4.703847186259653146e-01,3.490720856962841179e-01 +4.733828216004462019e-01,3.625507228373410218e-01 +4.557167048636480144e-01,3.503423032831577411e-01 +4.643885126770033178e-01,3.221148114141700880e-01 +4.673866156514842052e-01,3.355934485552269919e-01 +4.466944705552650108e-01,3.231309854836690310e-01 +4.643885126770033178e-01,3.221148114141700880e-01 +4.673866156514842052e-01,3.355934485552269919e-01 +4.466944705552650108e-01,3.231309854836690310e-01 +4.583923067280410990e-01,2.951575371320560581e-01 +4.613904097025222639e-01,3.086361742731131841e-01 +4.376722362468820071e-01,2.959196676841803209e-01 +4.583923067280410990e-01,2.951575371320560581e-01 +4.613904097025222639e-01,3.086361742731131841e-01 +4.376722362468820071e-01,2.959196676841803209e-01 +4.523961007790793798e-01,2.682002628499420283e-01 +4.553942037535602116e-01,2.816788999909991542e-01 +4.286500019384989479e-01,2.687083498846916108e-01 +4.523961007790793798e-01,2.682002628499420283e-01 +4.553942037535602116e-01,2.816788999909991542e-01 +4.286500019384989479e-01,2.687083498846916108e-01 +4.463998948301173275e-01,2.412429885678283314e-01 +4.493979978045983259e-01,2.547216257088851243e-01 +4.196277676301160553e-01,2.414970320852030117e-01 +4.463998948301173275e-01,2.412429885678283314e-01 +4.493979978045983259e-01,2.547216257088851243e-01 +4.196277676301160553e-01,2.414970320852030117e-01 +4.434017918556362736e-01,2.277643514267712055e-01 +4.434017918556362736e-01,2.277643514267712055e-01 +5.000000000000000000e-01,4.017857142857141906e-01 +5.000000000000021094e-01,4.285714285714286031e-01 +5.000000000000021094e-01,4.285714285714286031e-01 +5.000000000000000000e-01,4.151785714285713969e-01 +4.941585400099420267e-01,4.289153766662714418e-01 +4.911885652619445430e-01,4.023861742731131841e-01 +5.000000000000021094e-01,4.285714285714286031e-01 +4.941585400099420267e-01,4.289153766662714418e-01 +5.000000000000000000e-01,4.017857142857141906e-01 +5.000000000000021094e-01,4.285714285714286031e-01 +5.000000000000021094e-01,4.285714285714286031e-01 +5.000000000000000000e-01,4.151785714285713969e-01 +4.941585400099420267e-01,4.289153766662714418e-01 +4.911885652619445430e-01,4.023861742731131841e-01 +5.000000000000000000e-01,3.750000000000000000e-01 +5.000000000000000000e-01,3.883928571428570953e-01 +4.881904622874636002e-01,3.755146799891990739e-01 +5.000000000000000000e-01,3.750000000000000000e-01 +5.000000000000000000e-01,3.883928571428570953e-01 +4.881904622874636002e-01,3.755146799891990739e-01 +5.000000000000000000e-01,3.482142857142856984e-01 +5.000000000000000000e-01,3.616071428571427937e-01 +4.851923593129825463e-01,3.486431857052848526e-01 +5.000000000000000000e-01,3.482142857142856984e-01 +5.000000000000000000e-01,3.616071428571427937e-01 +4.851923593129825463e-01,3.486431857052848526e-01 +5.000000000000000000e-01,3.214285714285713969e-01 +5.000000000000000000e-01,3.348214285714286031e-01 +4.821942563385016589e-01,3.217716914213706314e-01 +5.000000000000000000e-01,3.214285714285713969e-01 +5.000000000000000000e-01,3.348214285714286031e-01 +4.821942563385016589e-01,3.217716914213706314e-01 +5.000000000000000000e-01,2.946428571428570953e-01 +5.000000000000000000e-01,3.080357142857141906e-01 +4.791961533640206050e-01,2.949001971374565212e-01 +5.000000000000000000e-01,2.946428571428570953e-01 +5.000000000000000000e-01,3.080357142857141906e-01 +4.791961533640206050e-01,2.949001971374565212e-01 +5.000000000000000000e-01,2.678571428571427937e-01 +5.000000000000000000e-01,2.812500000000000000e-01 +4.761980503895396066e-01,2.680287028535424110e-01 +5.000000000000000000e-01,2.678571428571427937e-01 +5.000000000000000000e-01,2.812500000000000000e-01 +4.761980503895396066e-01,2.680287028535424110e-01 +5.000000000000000000e-01,2.410714285714286031e-01 +5.000000000000000000e-01,2.544642857142856984e-01 +4.731999474150585527e-01,2.411572085696283008e-01 +5.000000000000000000e-01,2.410714285714286031e-01 +5.000000000000000000e-01,2.544642857142856984e-01 +4.731999474150585527e-01,2.411572085696283008e-01 +5.000000000000000000e-01,2.276785714285713969e-01 +5.000000000000000000e-01,2.276785714285713969e-01 +5.176228694761124682e-01,4.029866342605129548e-01 +5.116266635271506935e-01,4.299439085426267626e-01 +5.116266635271506935e-01,4.299439085426267626e-01 +5.146247665016314699e-01,4.164652714015697477e-01 +5.058414599900619146e-01,4.289153766662718859e-01 +5.088114347380562341e-01,4.023861742731136282e-01 +5.116266635271506935e-01,4.299439085426267626e-01 +5.058414599900619146e-01,4.289153766662718859e-01 +5.176228694761124682e-01,4.029866342605129548e-01 +5.116266635271506935e-01,4.299439085426267626e-01 +5.116266635271506935e-01,4.299439085426267626e-01 +5.146247665016314699e-01,4.164652714015697477e-01 +5.058414599900619146e-01,4.289153766662718859e-01 +5.088114347380562341e-01,4.023861742731136282e-01 +5.236190754250740209e-01,3.760293599783985918e-01 +5.206209724505931336e-01,3.895079971194558288e-01 +5.118095377125370105e-01,3.755146799891992959e-01 +5.236190754250740209e-01,3.760293599783985918e-01 +5.206209724505931336e-01,3.895079971194558288e-01 +5.118095377125370105e-01,3.755146799891992959e-01 +5.296152813740359067e-01,3.490720856962845620e-01 +5.266171783995549083e-01,3.625507228373416879e-01 +5.148076406870178978e-01,3.486431857052850747e-01 +5.296152813740359067e-01,3.490720856962845620e-01 +5.266171783995549083e-01,3.625507228373416879e-01 +5.148076406870178978e-01,3.486431857052850747e-01 +5.356114873229975704e-01,3.221148114141705321e-01 +5.326133843485167940e-01,3.355934485552274360e-01 +5.178057436614986742e-01,3.217716914213708534e-01 +5.356114873229975704e-01,3.221148114141705321e-01 +5.326133843485167940e-01,3.355934485552274360e-01 +5.178057436614986742e-01,3.217716914213708534e-01 +5.416076932719593451e-01,2.951575371320563912e-01 +5.386095902974784577e-01,3.086361742731135172e-01 +5.208038466359795615e-01,2.949001971374567432e-01 +5.416076932719593451e-01,2.951575371320563912e-01 +5.386095902974784577e-01,3.086361742731135172e-01 +5.208038466359795615e-01,2.949001971374567432e-01 +5.476038992209210088e-01,2.682002628499422503e-01 +5.446057962464401214e-01,2.816788999909993763e-01 +5.238019496104604489e-01,2.680287028535425220e-01 +5.476038992209210088e-01,2.682002628499422503e-01 +5.446057962464401214e-01,2.816788999909993763e-01 +5.238019496104604489e-01,2.680287028535425220e-01 +5.536001051698828945e-01,2.412429885678283314e-01 +5.506020021954018961e-01,2.547216257088853464e-01 +5.268000525849414473e-01,2.411572085696284118e-01 +5.536001051698828945e-01,2.412429885678283314e-01 +5.506020021954018961e-01,2.547216257088853464e-01 +5.268000525849414473e-01,2.411572085696284118e-01 +5.565982081443636709e-01,2.277643514267712055e-01 +5.565982081443636709e-01,2.277643514267712055e-01 +5.348547835630624858e-01,4.065432435037594772e-01 +5.228065208952586973e-01,4.340086048206230895e-01 +5.228065208952586973e-01,4.340086048206230895e-01 +5.288306522291604805e-01,4.202759241621912834e-01 +5.172998959386919671e-01,4.316471188762714961e-01 +5.262388265195874215e-01,4.047649388821361605e-01 +5.228065208952586973e-01,4.340086048206230895e-01 +5.172998959386919671e-01,4.316471188762714961e-01 +5.348547835630624858e-01,4.065432435037594772e-01 +5.228065208952586973e-01,4.340086048206230895e-01 +5.228065208952586973e-01,4.340086048206230895e-01 +5.288306522291604805e-01,4.202759241621912834e-01 +5.172998959386919671e-01,4.316471188762714961e-01 +5.262388265195874215e-01,4.047649388821361605e-01 +5.469030462308663854e-01,3.790778821868959758e-01 +5.408789148969644911e-01,3.928105628453277820e-01 +5.352610608279703142e-01,3.775536210826472283e-01 +5.469030462308663854e-01,3.790778821868959758e-01 +5.408789148969644911e-01,3.928105628453277820e-01 +5.352610608279703142e-01,3.775536210826472283e-01 +5.589513088986702849e-01,3.516125208700322524e-01 +5.529271775647682796e-01,3.653452015284639476e-01 +5.442832951363528737e-01,3.503423032831584072e-01 +5.589513088986702849e-01,3.516125208700322524e-01 +5.529271775647682796e-01,3.653452015284639476e-01 +5.442832951363528737e-01,3.503423032831584072e-01 +5.709995715664739624e-01,3.241471595531686400e-01 +5.649754402325719571e-01,3.378798402116004462e-01 +5.533055294447357664e-01,3.231309854836695861e-01 +5.709995715664739624e-01,3.241471595531686400e-01 +5.649754402325719571e-01,3.378798402116004462e-01 +5.533055294447357664e-01,3.231309854836695861e-01 +5.830478342342777509e-01,2.966817982363049166e-01 +5.770237029003758567e-01,3.104144788947368339e-01 +5.623277637531185480e-01,2.959196676841807649e-01 +5.830478342342777509e-01,2.966817982363049166e-01 +5.770237029003758567e-01,3.104144788947368339e-01 +5.623277637531185480e-01,2.959196676841807649e-01 +5.950960969020816504e-01,2.692164369194414153e-01 +5.890719655681797562e-01,2.829491175778732215e-01 +5.713499980615012186e-01,2.687083498846918328e-01 +5.950960969020816504e-01,2.692164369194414153e-01 +5.890719655681797562e-01,2.829491175778732215e-01 +5.713499980615014406e-01,2.687083498846918328e-01 +6.071443595698852169e-01,2.417510756025779139e-01 +6.011202282359835447e-01,2.554837562610097201e-01 +5.803722323698840002e-01,2.414970320852031227e-01 +6.071443595698852169e-01,2.417510756025779139e-01 +6.011202282359835447e-01,2.554837562610097201e-01 +5.803722323698840002e-01,2.414970320852031227e-01 +6.131684909037872222e-01,2.280183949441462188e-01 +6.131684909037872222e-01,2.280183949441462188e-01 +5.513198110680472830e-01,4.123188635168059113e-01 +5.331099364554063857e-01,4.406093134069619666e-01 +5.331099364554063857e-01,4.406093134069619666e-01 +5.422148737617268344e-01,4.264640884618841055e-01 +5.280935065882915724e-01,4.370056239751183291e-01 +5.430872973155548289e-01,4.094310535102826387e-01 +5.331099364554063857e-01,4.406093134069619666e-01 +5.280935065882915724e-01,4.370056239751183291e-01 +5.513198110680472830e-01,4.123188635168059113e-01 +5.331099364554063857e-01,4.406093134069619666e-01 +5.331099364554063857e-01,4.406093134069619666e-01 +5.422148737617268344e-01,4.264640884618841055e-01 +5.280935065882915724e-01,4.370056239751183291e-01 +5.430872973155548289e-01,4.094310535102826387e-01 +5.695296856806882912e-01,3.840284136266500781e-01 +5.604247483743677316e-01,3.981736385717279392e-01 +5.582163659557773938e-01,3.815531479067729714e-01 +5.695296856806882912e-01,3.840284136266500781e-01 +5.604247483743677316e-01,3.981736385717279392e-01 +5.582163659557773938e-01,3.815531479067729714e-01 +5.877395602933291885e-01,3.557379637364941338e-01 +5.786346229870086288e-01,3.698831886815721059e-01 +5.733454345959996257e-01,3.536752423032630821e-01 +5.877395602933291885e-01,3.557379637364941338e-01 +5.786346229870086288e-01,3.698831886815721059e-01 +5.733454345959996257e-01,3.536752423032630821e-01 +6.059494349059700857e-01,3.274475138463380786e-01 +5.968444975996495261e-01,3.415927387914160507e-01 +5.884745032362220796e-01,3.257973366997534148e-01 +6.059494349059700857e-01,3.274475138463380786e-01 +5.968444975996495261e-01,3.415927387914160507e-01 +5.884745032362220796e-01,3.257973366997534148e-01 +6.241593095186109830e-01,2.991570639561820233e-01 +6.150543722122904233e-01,3.133022889012599954e-01 +6.036035718764444225e-01,2.979194310962435255e-01 +6.241593095186109830e-01,2.991570639561820233e-01 +6.150543722122906454e-01,3.133022889012599954e-01 +6.036035718764444225e-01,2.979194310962435255e-01 +6.423691841312519912e-01,2.708666140660261901e-01 +6.332642468249314316e-01,2.850118390111040512e-01 +6.187326405166667653e-01,2.700415254927337472e-01 +6.423691841312519912e-01,2.708666140660261901e-01 +6.332642468249314316e-01,2.850118390111040512e-01 +6.187326405166668764e-01,2.700415254927337472e-01 +6.605790587438928885e-01,2.425761641758702458e-01 +6.514741214375723288e-01,2.567213891209481069e-01 +6.338617091568889972e-01,2.421636198892239689e-01 +6.605790587438928885e-01,2.425761641758702458e-01 +6.514741214375723288e-01,2.567213891209481069e-01 +6.338617091568892192e-01,2.421636198892239689e-01 +6.696839960502132261e-01,2.284309392307922737e-01 +6.696839960502132261e-01,2.284309392307922737e-01 +5.666714918195314699e-01,4.200915404615558346e-01 +5.421409557258389800e-01,4.494923727723904028e-01 +5.421409557258389800e-01,4.494923727723904028e-01 +5.544062237726852249e-01,4.347919566169728967e-01 +5.378074995347230658e-01,4.447849676169483013e-01 +5.589956514437892654e-01,4.162052019891809840e-01 +5.421409557258389800e-01,4.494923727723904028e-01 +5.378074995347230658e-01,4.447849676169483013e-01 +5.666714918195314699e-01,4.200915404615558346e-01 +5.421409557258389800e-01,4.494923727723904028e-01 +5.421409557258389800e-01,4.494923727723904028e-01 +5.544062237726852249e-01,4.347919566169728967e-01 +5.378074995347230658e-01,4.447849676169483013e-01 +5.589956514437894874e-01,4.162052019891809840e-01 +5.912020279132238487e-01,3.906907081507213775e-01 +5.789367598663776038e-01,4.053911243061385505e-01 +5.803658567969560700e-01,3.873595608886856168e-01 +5.912020279132238487e-01,3.906907081507213775e-01 +5.789367598663776038e-01,4.053911243061385505e-01 +5.803658567969560700e-01,3.873595608886856168e-01 +6.157325640069164496e-01,3.612898758398868093e-01 +6.034672959600699826e-01,3.759902919953039824e-01 +6.017360621501227635e-01,3.585139197881903605e-01 +6.157325640069164496e-01,3.612898758398868093e-01 +6.034672959600699826e-01,3.759902919953039824e-01 +6.017360621501227635e-01,3.585139197881903605e-01 +6.402631001006089395e-01,3.318890435290523522e-01 +6.279978320537625835e-01,3.465894596844695252e-01 +6.231062675032894571e-01,3.296682786876949933e-01 +6.402631001006089395e-01,3.318890435290523522e-01 +6.279978320537625835e-01,3.465894596844695252e-01 +6.231062675032894571e-01,3.296682786876949933e-01 +6.647936361943013184e-01,3.024882112182176730e-01 +6.525283681474550734e-01,3.171886273736350681e-01 +6.444764728564561507e-01,3.008226375871999592e-01 +6.647936361943013184e-01,3.024882112182176730e-01 +6.525283681474550734e-01,3.171886273736350681e-01 +6.444764728564561507e-01,3.008226375871999592e-01 +6.893241722879936972e-01,2.730873789073832159e-01 +6.770589042411474523e-01,2.877877950628003889e-01 +6.658466782096228442e-01,2.719769964867047030e-01 +6.893241722879936972e-01,2.730873789073832159e-01 +6.770589042411474523e-01,2.877877950628003889e-01 +6.658466782096228442e-01,2.719769964867047030e-01 +7.138547083816859651e-01,2.436865465965487587e-01 +7.015894403348399422e-01,2.583869627519659318e-01 +6.872168835627895378e-01,2.431313553862095578e-01 +7.138547083816859651e-01,2.436865465965487587e-01 +7.015894403348399422e-01,2.583869627519659318e-01 +6.872168835627893158e-01,2.431313553862095578e-01 +7.261199764285322100e-01,2.289861304411314746e-01 +7.261199764285322100e-01,2.289861304411314746e-01 +5.731566120474892445e-01,4.384911461505613950e-01 +5.495525217006481666e-01,4.603164119271720978e-01 +5.495525217006481666e-01,4.603164119271720978e-01 +5.613545668740685946e-01,4.494037790388667464e-01 +5.460685714767252730e-01,4.546861939883120041e-01 +5.699140519335104127e-01,4.292913433060584483e-01 +5.495525217006481666e-01,4.603164119271720978e-01 +5.460685714767252730e-01,4.546861939883120041e-01 +5.731566120474892445e-01,4.384911461505613950e-01 +5.495525217006481666e-01,4.603164119271720978e-01 +5.495525217006481666e-01,4.603164119271720978e-01 +5.613545668740685946e-01,4.494037790388667464e-01 +5.460685714767252730e-01,4.546861939883120041e-01 +5.699140519335104127e-01,4.292913433060584483e-01 +5.967607023943306555e-01,4.166658803739505812e-01 +5.849586572209100055e-01,4.275785132622559326e-01 +5.939813651537771966e-01,4.036782942623360348e-01 +5.967607023943306555e-01,4.166658803739505812e-01 +5.849586572209100055e-01,4.275785132622559326e-01 +5.939813651537771966e-01,4.036782942623360348e-01 +6.203647927411720664e-01,3.948406145973396564e-01 +6.085627475677514164e-01,4.057532474856448967e-01 +6.180486783740443135e-01,3.780652452186132884e-01 +6.203647927411720664e-01,3.948406145973396564e-01 +6.085627475677514164e-01,4.057532474856448967e-01 +6.180486783740443135e-01,3.780652452186132884e-01 +6.439688830880132553e-01,3.730153488207288426e-01 +6.321668379145926053e-01,3.839279817090343050e-01 +6.421159915943108754e-01,3.524521961748905419e-01 +6.439688830880132553e-01,3.730153488207288426e-01 +6.321668379145926053e-01,3.839279817090343050e-01 +6.421159915943108754e-01,3.524521961748905419e-01 +6.675729734348545552e-01,3.511900830441181398e-01 +6.557709282614339052e-01,3.621027159324236022e-01 +6.661833048145778813e-01,3.268391471311679064e-01 +6.675729734348545552e-01,3.511900830441181398e-01 +6.557709282614339052e-01,3.621027159324236022e-01 +6.661833048145778813e-01,3.268391471311679064e-01 +6.911770637816959661e-01,3.293648172675074370e-01 +6.793750186082753162e-01,3.402774501558127884e-01 +6.902506180348447762e-01,3.012260980874452709e-01 +6.911770637816959661e-01,3.293648172675074370e-01 +6.793750186082753162e-01,3.402774501558127884e-01 +6.902506180348447762e-01,3.012260980874452709e-01 +7.147811541285371550e-01,3.075395514908966232e-01 +7.029791089551166161e-01,3.184521843792019746e-01 +7.143179312551117821e-01,2.756130490437227465e-01 +7.147811541285371550e-01,3.075395514908966232e-01 +7.029791089551166161e-01,3.184521843792019746e-01 +7.143179312551114490e-01,2.756130490437227465e-01 +7.383852444753784550e-01,2.857142857142858094e-01 +7.383852444753784550e-01,2.857142857142858094e-01 +7.265831993019578050e-01,2.966269186025911608e-01 +7.383852444753784550e-01,2.500000000000001110e-01 +7.383852444753784550e-01,2.857142857142858094e-01 +7.383852444753784550e-01,2.500000000000001110e-01 +7.383852444753784550e-01,2.857142857142858094e-01 +7.383852444753784550e-01,2.857142857142858094e-01 +7.265831993019578050e-01,2.966269186025911608e-01 +7.383852444753784550e-01,2.500000000000001110e-01 +5.779754911083133662e-01,4.582251426200395494e-01 +5.550598120558755122e-01,4.726654691167798683e-01 +5.550598120558755122e-01,4.726654691167798683e-01 +5.665176515820944392e-01,4.654453058684098199e-01 +5.525592540524296714e-01,4.663288045124295289e-01 +5.755660515779014164e-01,4.483581443853005277e-01 +5.550598120558755122e-01,4.726654691167798683e-01 +5.525592540524296714e-01,4.663288045124295289e-01 +5.779754911083133662e-01,4.582251426200395494e-01 +5.550598120558755122e-01,4.726654691167798683e-01 +5.550598120558755122e-01,4.726654691167798683e-01 +5.665176515820944392e-01,4.654453058684098199e-01 +5.525592540524296714e-01,4.663288045124295289e-01 +5.755660515779014164e-01,4.483581443853005277e-01 +6.008911701607513312e-01,4.437848161232992306e-01 +5.894333306345324042e-01,4.510049793716693900e-01 +5.988259362775409933e-01,4.302253482486249059e-01 +6.008911701607513312e-01,4.437848161232992306e-01 +5.894333306345324042e-01,4.510049793716693900e-01 +5.988259362775409933e-01,4.302253482486249059e-01 +6.238068492131892961e-01,4.293444896265588007e-01 +6.123490096869703692e-01,4.365646528749291821e-01 +6.220858209771804592e-01,4.120925521119492840e-01 +6.238068492131892961e-01,4.293444896265588007e-01 +6.123490096869703692e-01,4.365646528749291821e-01 +6.220858209771804592e-01,4.120925521119492840e-01 +6.467225282656271501e-01,4.149041631298185928e-01 +6.352646887394082231e-01,4.221243263781887523e-01 +6.453457056768202582e-01,3.939597559752737732e-01 +6.467225282656271501e-01,4.149041631298185928e-01 +6.352646887394080011e-01,4.221243263781887523e-01 +6.453457056768202582e-01,3.939597559752737732e-01 +6.696382073180648931e-01,4.004638366330781629e-01 +6.581803677918460771e-01,4.076839998814484334e-01 +6.686055903764598352e-01,3.758269598385981514e-01 +6.696382073180648931e-01,4.004638366330781629e-01 +6.581803677918460771e-01,4.076839998814484334e-01 +6.686055903764598352e-01,3.758269598385981514e-01 +6.925538863705027470e-01,3.860235101363377330e-01 +6.810960468442838200e-01,3.932436733847081145e-01 +6.918654750760993011e-01,3.576941637019226405e-01 +6.925538863705027470e-01,3.860235101363377330e-01 +6.810960468442838200e-01,3.932436733847081145e-01 +6.918654750760993011e-01,3.576941637019226405e-01 +7.154695654229406010e-01,3.715831836395975252e-01 +7.040117258967216740e-01,3.788033468879676846e-01 +7.151253597757389890e-01,3.395613675652471297e-01 +7.154695654229406010e-01,3.715831836395975252e-01 +7.040117258967216740e-01,3.788033468879676846e-01 +7.151253597757389890e-01,3.395613675652471297e-01 +7.383852444753784550e-01,3.571428571428573173e-01 +7.383852444753784550e-01,3.571428571428573173e-01 +7.269274049491594170e-01,3.643630203912273657e-01 +7.383852444753784550e-01,3.214285714285716189e-01 +7.383852444753784550e-01,3.571428571428573173e-01 +7.383852444753784550e-01,3.214285714285716189e-01 +7.383852444753784550e-01,3.571428571428573173e-01 +7.383852444753784550e-01,3.571428571428573173e-01 +7.269274049491594170e-01,3.643630203912273657e-01 +7.383852444753784550e-01,3.214285714285716189e-01 +5.809429421821548090e-01,4.788782834454208270e-01 +5.584511847116943040e-01,4.860649769988483193e-01 +5.584511847116943040e-01,4.860649769988483193e-01 +5.696970634469243899e-01,4.824716302221345732e-01 +5.570301139704684212e-01,4.792653801961103133e-01 +5.794592166452340321e-01,4.685517130327302437e-01 +5.584511847116943040e-01,4.860649769988483193e-01 +5.570301139704684212e-01,4.792653801961102022e-01 +5.809429421821548090e-01,4.788782834454208270e-01 +5.584511847116943040e-01,4.860649769988483193e-01 +5.584511847116943040e-01,4.860649769988483193e-01 +5.696970634469243899e-01,4.824716302221345732e-01 +5.570301139704684212e-01,4.792653801961103133e-01 +5.794592166452340321e-01,4.685517130327302437e-01 +6.034346996526154250e-01,4.716915898919933348e-01 +5.921888209173850059e-01,4.752849366687071919e-01 +6.021629349066833781e-01,4.577382030076463382e-01 +6.034346996526154250e-01,4.716915898919933348e-01 +5.921888209173850059e-01,4.752849366687071919e-01 +6.021629349066833781e-01,4.577382030076463382e-01 +6.259264571230758190e-01,4.645048963385658425e-01 +6.146805783878456220e-01,4.680982431152798107e-01 +6.248666531681325020e-01,4.469246929825625436e-01 +6.259264571230758190e-01,4.645048963385658425e-01 +6.146805783878456220e-01,4.680982431152798107e-01 +6.248666531681325020e-01,4.469246929825625436e-01 +6.484182145935364350e-01,4.573182027851384612e-01 +6.371723358583061270e-01,4.609115495618523184e-01 +6.475703714295816260e-01,4.361111829574786380e-01 +6.484182145935364350e-01,4.573182027851384612e-01 +6.371723358583061270e-01,4.609115495618520963e-01 +6.475703714295818481e-01,4.361111829574786380e-01 +6.709099720639968290e-01,4.501315092317109690e-01 +6.596640933287666320e-01,4.537248560084249371e-01 +6.702740896910309720e-01,4.252976729323947325e-01 +6.709099720639968290e-01,4.501315092317109690e-01 +6.596640933287666320e-01,4.537248560084247151e-01 +6.702740896910309720e-01,4.252976729323947325e-01 +6.934017295344574450e-01,4.429448156782836987e-01 +6.821558507992272480e-01,4.465381624549972228e-01 +6.929778079524800960e-01,4.144841629073104938e-01 +6.934017295344574450e-01,4.429448156782836987e-01 +6.821558507992272480e-01,4.465381624549972228e-01 +6.929778079524800960e-01,4.144841629073104938e-01 +7.158934870049179500e-01,4.357581221248562064e-01 +7.046476082696876420e-01,4.393514689015697305e-01 +7.156815262139293310e-01,4.036706528822270323e-01 +7.158934870049179500e-01,4.357581221248562064e-01 +7.046476082696876420e-01,4.393514689015697305e-01 +7.156815262139293310e-01,4.036706528822270323e-01 +7.383852444753784550e-01,4.285714285714287142e-01 +7.383852444753784550e-01,4.285714285714287142e-01 +7.271393657401482580e-01,4.321647753481423493e-01 +7.383852444753784550e-01,3.928571428571430157e-01 +7.383852444753784550e-01,4.285714285714287142e-01 +7.383852444753784550e-01,3.928571428571430157e-01 +7.383852444753784550e-01,4.285714285714287142e-01 +7.383852444753784550e-01,4.285714285714287142e-01 +7.271393657401482580e-01,4.321647753481423493e-01 +7.383852444753784550e-01,3.928571428571430157e-01 +5.819449277884113370e-01,5.000000000000000000e-01 +5.595963111188445582e-01,5.000000000000000000e-01 +5.595963111188445582e-01,5.000000000000000000e-01 +5.707706194536280586e-01,5.000000000000000000e-01 +5.593093385914786886e-01,4.929987756907456831e-01 +5.814439349852829064e-01,4.894391417227104135e-01 +5.595963111188445582e-01,5.000000000000000000e-01 +5.593093385914786886e-01,4.929987756907456831e-01 +5.819449277884113370e-01,5.000000000000000000e-01 +5.595963111188445582e-01,5.000000000000000000e-01 +5.595963111188445582e-01,5.000000000000000000e-01 +5.707706194536280586e-01,5.000000000000000000e-01 +5.593093385914786886e-01,4.929987756907456831e-01 +5.814439349852829064e-01,4.894391417227104135e-01 +6.042935444579781157e-01,5.000000000000000000e-01 +5.931192361231946153e-01,5.000000000000000000e-01 +6.038641220552967148e-01,4.858457949459966674e-01 +6.042935444579781157e-01,5.000000000000000000e-01 +5.931192361231946153e-01,5.000000000000000000e-01 +6.038641220552967148e-01,4.858457949459966674e-01 +6.266421611275447834e-01,5.000000000000000000e-01 +6.154678527927613940e-01,5.000000000000000000e-01 +6.262843091253103012e-01,4.822524481692829212e-01 +6.266421611275447834e-01,5.000000000000000000e-01 +6.154678527927613940e-01,5.000000000000000000e-01 +6.262843091253103012e-01,4.822524481692829212e-01 +6.489907777971115621e-01,5.000000000000000000e-01 +6.378164694623281727e-01,5.000000000000000000e-01 +6.487044961953239985e-01,4.786591013925693971e-01 +6.489907777971115621e-01,5.000000000000000000e-01 +6.378164694623281727e-01,5.000000000000000000e-01 +6.487044961953239985e-01,4.786591013925693971e-01 +6.713393944666784519e-01,5.000000000000000000e-01 +6.601650861318950625e-01,5.000000000000000000e-01 +6.711246832653375849e-01,4.750657546158555400e-01 +6.713393944666784519e-01,5.000000000000000000e-01 +6.601650861318950625e-01,5.000000000000000000e-01 +6.711246832653375849e-01,4.750657546158555400e-01 +6.936880111362451196e-01,5.000000000000000000e-01 +6.825137028014616192e-01,5.000000000000000000e-01 +6.935448703353513933e-01,4.714724078391416828e-01 +6.936880111362451196e-01,5.000000000000000000e-01 +6.825137028014616192e-01,5.000000000000000000e-01 +6.935448703353513933e-01,4.714724078391416828e-01 +7.160366278058116762e-01,5.000000000000000000e-01 +7.048623194710282869e-01,5.000000000000000000e-01 +7.159650574053647576e-01,4.678790610624280477e-01 +7.160366278058116762e-01,5.000000000000000000e-01 +7.048623194710282869e-01,5.000000000000000000e-01 +7.159650574053647576e-01,4.678790610624280477e-01 +7.383852444753784550e-01,5.000000000000000000e-01 +7.383852444753784550e-01,5.000000000000000000e-01 +7.272109361405950656e-01,5.000000000000000000e-01 +7.383852444753784550e-01,4.642857142857143016e-01 +7.383852444753784550e-01,5.000000000000000000e-01 +7.383852444753784550e-01,4.642857142857143016e-01 +7.383852444753784550e-01,5.000000000000000000e-01 +7.383852444753784550e-01,5.000000000000000000e-01 +7.272109361405950656e-01,5.000000000000000000e-01 +7.383852444753784550e-01,4.642857142857143016e-01 +4.415488152883058071e-01,5.139350230011523468e-01 +4.190570578178454131e-01,5.211217165545796171e-01 +4.415488152883058071e-01,5.139350230011523468e-01 +4.406906614085214779e-01,5.070012243092543169e-01 +4.303029365530756101e-01,5.175283697778660930e-01 +4.185560650147170936e-01,5.105608582772898085e-01 +4.415488152883058071e-01,5.139350230011523468e-01 +4.406906614085212004e-01,5.070012243092516524e-01 +4.415488152883058071e-01,5.139350230011523468e-01 +4.190570578178454131e-01,5.211217165545796171e-01 +4.415488152883058071e-01,5.139350230011523468e-01 +4.406906614085214779e-01,5.070012243092543169e-01 +4.303029365530756101e-01,5.175283697778660930e-01 +4.185560650147170936e-01,5.105608582772898085e-01 +3.965653003473848526e-01,5.283084101080071093e-01 +4.078111790826151606e-01,5.247150633312933632e-01 +3.961358779447034517e-01,5.141542050540033326e-01 +3.965653003473848526e-01,5.283084101080071093e-01 +4.078111790826151606e-01,5.247150633312933632e-01 +3.961358779447034517e-01,5.141542050540033326e-01 +3.740735428769243476e-01,5.354951036614344906e-01 +3.853194216121546556e-01,5.319017568847206334e-01 +3.737156908746898099e-01,5.177475518307173008e-01 +3.740735428769243476e-01,5.354951036614344906e-01 +3.853194216121546556e-01,5.319017568847206334e-01 +3.737156908746898099e-01,5.177475518307173008e-01 +3.515817854064638426e-01,5.426817972148618718e-01 +3.628276641416940951e-01,5.390884504381481257e-01 +3.512955038046761680e-01,5.213408986074310469e-01 +3.515817854064638426e-01,5.426817972148618718e-01 +3.628276641416940951e-01,5.390884504381481257e-01 +3.512955038046761680e-01,5.213408986074310469e-01 +3.290900279360032821e-01,5.498684907682893641e-01 +3.403359066712335346e-01,5.462751439915753959e-01 +3.288753167346625261e-01,5.249342453841445710e-01 +3.290900279360032821e-01,5.498684907682893641e-01 +3.403359066712335346e-01,5.462751439915753959e-01 +3.288753167346625261e-01,5.249342453841445710e-01 +3.065982704655426661e-01,5.570551843217165233e-01 +3.178441492007729741e-01,5.534618375450028882e-01 +3.064551296646488843e-01,5.285275921608582061e-01 +3.065982704655426661e-01,5.570551843217165233e-01 +3.178441492007729741e-01,5.534618375450028882e-01 +3.064551296646488843e-01,5.285275921608582061e-01 +2.841065129950821055e-01,5.642418778751439046e-01 +2.953523917303123580e-01,5.606485310984303805e-01 +2.840349425946351869e-01,5.321209389375720633e-01 +2.841065129950821055e-01,5.642418778751439046e-01 +2.953523917303123580e-01,5.606485310984303805e-01 +2.840349425946351869e-01,5.321209389375720633e-01 +2.616147555246215450e-01,5.714285714285713969e-01 +2.616147555246215450e-01,5.714285714285713969e-01 +2.728606342598517975e-01,5.678352246518575397e-01 +2.616147555246215450e-01,5.357142857142855874e-01 +2.616147555246215450e-01,5.714285714285713969e-01 +2.616147555246215450e-01,5.357142857142855874e-01 +2.616147555246215450e-01,5.714285714285713969e-01 +2.616147555246215450e-01,5.714285714285713969e-01 +2.728606342598517975e-01,5.678352246518575397e-01 +2.616147555246215450e-01,5.357142857142855874e-01 +4.449401879441248209e-01,5.273345308832212419e-01 +4.220245088916869669e-01,5.417748573799615608e-01 +4.449401879441248209e-01,5.273345308832212419e-01 +4.429698860295317453e-01,5.207346198038906859e-01 +4.334823484179058939e-01,5.345546941315912903e-01 +4.205407833547661345e-01,5.314482869672706444e-01 +4.449401879441248209e-01,5.273345308832212419e-01 +4.429698860295317453e-01,5.207346198038906859e-01 +4.449401879441248209e-01,5.273345308832212419e-01 +4.220245088916869669e-01,5.417748573799615608e-01 +4.449401879441248209e-01,5.273345308832212419e-01 +4.429698860295317453e-01,5.207346198038906859e-01 +4.334823484179058939e-01,5.345546941315912903e-01 +4.205407833547661345e-01,5.314482869672706444e-01 +3.991088298392491129e-01,5.562151838767016576e-01 +4.105666693654680399e-01,5.489950206283316092e-01 +3.978370650933170105e-01,5.422617969923542169e-01 +3.991088298392491129e-01,5.562151838767016576e-01 +4.105666693654680399e-01,5.489950206283316092e-01 +3.978370650933170660e-01,5.422617969923542169e-01 +3.761931507868112035e-01,5.706555103734417544e-01 +3.876509903130301860e-01,5.634353471250717060e-01 +3.751333468318677755e-01,5.530753070174381225e-01 +3.761931507868112035e-01,5.706555103734417544e-01 +3.876509903130301860e-01,5.634353471250717060e-01 +3.751333468318677755e-01,5.530753070174381225e-01 +3.532774717343732940e-01,5.850958368701819623e-01 +3.647353112605922210e-01,5.778756736218118029e-01 +3.524296285704185405e-01,5.638888170425220281e-01 +3.532774717343732940e-01,5.850958368701819623e-01 +3.647353112605922210e-01,5.778756736218118029e-01 +3.524296285704185405e-01,5.638888170425220281e-01 +3.303617926819353845e-01,5.995361633669220591e-01 +3.418196322081543670e-01,5.923160001185518997e-01 +3.297259103089693055e-01,5.747023270676057116e-01 +3.303617926819353845e-01,5.995361633669220591e-01 +3.418196322081543670e-01,5.923160001185518997e-01 +3.297259103089693055e-01,5.747023270676057116e-01 +3.074461136294974195e-01,6.139764898636623780e-01 +3.189039531557164020e-01,6.067563266152922186e-01 +3.070221920475200705e-01,5.855158370926893951e-01 +3.074461136294974195e-01,6.139764898636623780e-01 +3.189039531557164020e-01,6.067563266152922186e-01 +3.070221920475200705e-01,5.855158370926896172e-01 +2.845304345770595100e-01,6.284168163604024748e-01 +2.959882741032784370e-01,6.211966531120323154e-01 +2.843184737860707800e-01,5.963293471177733007e-01 +2.845304345770595100e-01,6.284168163604024748e-01 +2.959882741032784370e-01,6.211966531120323154e-01 +2.843184737860707800e-01,5.963293471177733007e-01 +2.616147555246215450e-01,6.428571428571427937e-01 +2.616147555246215450e-01,6.428571428571427937e-01 +2.730725950508405275e-01,6.356369796087726343e-01 +2.616147555246215450e-01,6.071428571428570953e-01 +2.616147555246215450e-01,6.428571428571427937e-01 +2.616147555246215450e-01,6.071428571428570953e-01 +2.616147555246215450e-01,6.428571428571427937e-01 +2.616147555246215450e-01,6.428571428571427937e-01 +2.730725950508405275e-01,6.356369796087726343e-01 +2.616147555246215450e-01,6.071428571428570953e-01 +4.504474782993528881e-01,5.396835880728294566e-01 +4.268433879525115326e-01,5.615088538494401593e-01 +4.504474782993528881e-01,5.396835880728294566e-01 +4.474407459475709392e-01,5.336711954875721364e-01 +4.386454331259321826e-01,5.505962209611348079e-01 +4.244339484220992498e-01,5.516418556147006935e-01 +4.504474782993528881e-01,5.396835880728294566e-01 +4.474407459475709392e-01,5.336711954875721364e-01 +4.504474782993528881e-01,5.396835880728294566e-01 +4.268433879525115326e-01,5.615088538494401593e-01 +4.504474782993528881e-01,5.396835880728294566e-01 +4.474407459475709392e-01,5.336711954875721364e-01 +4.386454331259321826e-01,5.505962209611348079e-01 +4.244339484220992498e-01,5.516418556147006935e-01 +4.032392976056701772e-01,5.833341196260506401e-01 +4.150413427790907717e-01,5.724214867377452887e-01 +4.011740637224596173e-01,5.697746517513762043e-01 +4.032392976056701772e-01,5.833341196260506401e-01 +4.150413427790908272e-01,5.724214867377452887e-01 +4.011740637224596728e-01,5.697746517513762043e-01 +3.796352072588287108e-01,6.051593854026612318e-01 +3.914372524322494162e-01,5.942467525143558804e-01 +3.779141790228199849e-01,5.879074478880514931e-01 +3.796352072588287108e-01,6.051593854026612318e-01 +3.914372524322494162e-01,5.942467525143558804e-01 +3.779141790228199849e-01,5.879074478880514931e-01 +3.560311169119872998e-01,6.269846511792717125e-01 +3.678331620854080053e-01,6.160720182909666942e-01 +3.546542943231803524e-01,6.060402440247267819e-01 +3.560311169119872998e-01,6.269846511792717125e-01 +3.678331620854080053e-01,6.160720182909663611e-01 +3.546542943231803524e-01,6.060402440247267819e-01 +3.324270265651458334e-01,6.488099169558823043e-01 +3.442290717385665944e-01,6.378972840675770639e-01 +3.313944096235406089e-01,6.241730401614022927e-01 +3.324270265651458334e-01,6.488099169558823043e-01 +3.442290717385665944e-01,6.378972840675770639e-01 +3.313944096235406089e-01,6.241730401614022927e-01 +3.088229362183044224e-01,6.706351827324930071e-01 +3.206249813917251834e-01,6.597225498441876557e-01 +3.081345249239009210e-01,6.423058362980775815e-01 +3.088229362183044224e-01,6.706351827324930071e-01 +3.206249813917251834e-01,6.597225498441876557e-01 +3.081345249239009210e-01,6.423058362980775815e-01 +2.852188458714630115e-01,6.924604485091034878e-01 +2.970208910448837170e-01,6.815478156207983584e-01 +2.848746402242612330e-01,6.604386324347530923e-01 +2.852188458714630115e-01,6.924604485091034878e-01 +2.970208910448837170e-01,6.815478156207983584e-01 +2.848746402242612330e-01,6.604386324347530923e-01 +2.616147555246215450e-01,7.142857142857141906e-01 +2.616147555246215450e-01,7.142857142857141906e-01 +2.734168006980423060e-01,7.033730813974088392e-01 +2.616147555246215450e-01,6.785714285714282701e-01 +2.616147555246215450e-01,7.142857142857141906e-01 +2.616147555246215450e-01,6.785714285714282701e-01 +2.616147555246215450e-01,7.142857142857141906e-01 +2.616147555246215450e-01,7.142857142857141906e-01 +2.734168006980423060e-01,7.033730813974088392e-01 +2.616147555246215450e-01,6.785714285714282701e-01 +4.578590442741624633e-01,5.505076272276113736e-01 +4.333285081804698624e-01,5.799084595384456087e-01 +4.578590442741624633e-01,5.505076272276113736e-01 +4.539314285232758373e-01,5.453138060116897723e-01 +4.455937762273162184e-01,5.652080433830284356e-01 +4.300859480664906420e-01,5.707086566939427730e-01 +4.578590442741624633e-01,5.505076272276113736e-01 +4.539314285232758373e-01,5.453138060116897723e-01 +4.578590442741624633e-01,5.505076272276113736e-01 +4.333285081804698624e-01,5.799084595384456087e-01 +4.578590442741624633e-01,5.505076272276113736e-01 +4.539314285232758373e-01,5.453138060116897723e-01 +4.455937762273162184e-01,5.652080433830284356e-01 +4.300859480664906420e-01,5.707086566939427730e-01 +4.087979720867773725e-01,6.093092918492799548e-01 +4.210632401336236175e-01,5.946088756938627817e-01 +4.060186348462237471e-01,5.963217057376650754e-01 +4.087979720867773725e-01,6.093092918492799548e-01 +4.210632401336236175e-01,5.946088756938627817e-01 +4.060186348462237471e-01,5.963217057376652974e-01 +3.842674359930847161e-01,6.387101241601141899e-01 +3.965327040399310166e-01,6.240097080046971278e-01 +3.819513216259566857e-01,6.219347547813875998e-01 +3.842674359930847161e-01,6.387101241601141899e-01 +3.965327040399310166e-01,6.240097080046971278e-01 +3.819513216259567412e-01,6.219347547813878219e-01 +3.597368998993921152e-01,6.681109564709484250e-01 +3.720021679462384157e-01,6.534105403155313629e-01 +3.578840084056897353e-01,6.475478038251101243e-01 +3.597368998993921152e-01,6.681109564709484250e-01 +3.720021679462384157e-01,6.534105403155313629e-01 +3.578840084056897353e-01,6.475478038251101243e-01 +3.352063638056995143e-01,6.975117887817827711e-01 +3.474716318525458147e-01,6.828113726263655980e-01 +3.338166951854226738e-01,6.731608528688324267e-01 +3.352063638056995143e-01,6.975117887817827711e-01 +3.474716318525458147e-01,6.828113726263655980e-01 +3.338166951854226738e-01,6.731608528688324267e-01 +3.106758277120068579e-01,7.269126210926171172e-01 +3.229410957588531583e-01,7.122122049371999442e-01 +3.097493819651556124e-01,6.987739019125551732e-01 +3.106758277120068579e-01,7.269126210926171172e-01 +3.229410957588531583e-01,7.122122049371999442e-01 +3.097493819651556124e-01,6.987739019125548401e-01 +2.861452916183141459e-01,7.563134534034513523e-01 +2.984105596651605019e-01,7.416130372480342903e-01 +2.856820687448886065e-01,7.243869509562774756e-01 +2.861452916183141459e-01,7.563134534034513523e-01 +2.984105596651605019e-01,7.416130372480342903e-01 +2.856820687448886065e-01,7.243869509562774756e-01 +2.616147555246215450e-01,7.857142857142855874e-01 +2.616147555246215450e-01,7.857142857142855874e-01 +2.738800235714678455e-01,7.710138695588685254e-01 +2.616147555246215450e-01,7.500000000000000000e-01 +2.616147555246215450e-01,7.857142857142855874e-01 +2.616147555246215450e-01,7.500000000000000000e-01 +2.616147555246215450e-01,7.857142857142855874e-01 +2.616147555246215450e-01,7.857142857142855874e-01 +2.738800235714678455e-01,7.710138695588685254e-01 +2.616147555246215450e-01,7.500000000000000000e-01 +4.668900635445958902e-01,5.593906865930398098e-01 +4.486801889319547154e-01,5.876811364831953099e-01 +4.668900635445958902e-01,5.593906865930398098e-01 +4.621925004652787661e-01,5.552150323830533640e-01 +4.577851262382753306e-01,5.735359115381175599e-01 +4.410043485562122889e-01,5.837947980108205703e-01 +4.668900635445958902e-01,5.593906865930398098e-01 +4.621925004652787661e-01,5.552150323830535861e-01 +4.668900635445958902e-01,5.593906865930398098e-01 +4.486801889319547154e-01,5.876811364831953099e-01 +4.668900635445958902e-01,5.593906865930398098e-01 +4.621925004652787661e-01,5.552150323830533640e-01 +4.577851262382753306e-01,5.735359115381175599e-01 +4.410043485562122889e-01,5.837947980108205703e-01 +4.304703143193135961e-01,6.159715863733512542e-01 +4.395752516256341558e-01,6.018263614282733931e-01 +4.196341432030454843e-01,6.126404391113156045e-01 +4.304703143193135961e-01,6.159715863733512542e-01 +4.395752516256341558e-01,6.018263614282733931e-01 +4.196341432030454843e-01,6.126404391113156045e-01 +4.122604397066723103e-01,6.442620362635069764e-01 +4.213653770129929255e-01,6.301168113184290043e-01 +3.982639378498785132e-01,6.414860802118105276e-01 +4.122604397066723103e-01,6.442620362635069764e-01 +4.213653770129929255e-01,6.301168113184290043e-01 +3.982639378498785132e-01,6.414860802118105276e-01 +3.940505650940310800e-01,6.725524861536625876e-01 +4.031555024003516952e-01,6.584072612085849485e-01 +3.768937324967115976e-01,6.703317213123055618e-01 +3.940505650940310800e-01,6.725524861536625876e-01 +4.031555024003516952e-01,6.584072612085849485e-01 +3.768937324967115976e-01,6.703317213123055618e-01 +3.758406904813897942e-01,7.008429360438184208e-01 +3.849456277877104649e-01,6.866977110987404487e-01 +3.555235271435446820e-01,6.991773624128005959e-01 +3.758406904813897942e-01,7.008429360438184208e-01 +3.849456277877104649e-01,6.866977110987404487e-01 +3.555235271435446820e-01,6.991773624128005959e-01 +3.576308158687486194e-01,7.291333859339741430e-01 +3.667357531750692345e-01,7.149881609888961709e-01 +3.341533217903777109e-01,7.280230035132957411e-01 +3.576308158687486194e-01,7.291333859339741430e-01 +3.667357531750692345e-01,7.149881609888963929e-01 +3.341533217903777109e-01,7.280230035132957411e-01 +3.394209412561072781e-01,7.574238358241299762e-01 +3.485258785624280042e-01,7.432786108790520041e-01 +3.127831164372107953e-01,7.568686446137905532e-01 +3.394209412561072781e-01,7.574238358241299762e-01 +3.485258785624280042e-01,7.432786108790520041e-01 +3.127831164372107953e-01,7.568686446137905532e-01 +3.212110666434661033e-01,7.857142857142855874e-01 +3.303160039497867184e-01,7.715690607692077263e-01 +2.914129110840438242e-01,7.857142857142855874e-01 +3.212110666434661033e-01,7.857142857142855874e-01 +3.303160039497867184e-01,7.715690607692077263e-01 +2.914129110840438242e-01,7.857142857142855874e-01 +4.771934791047441893e-01,5.659913951793782427e-01 +4.651452164369400122e-01,5.934567564962418551e-01 +4.771934791047441893e-01,5.659913951793782427e-01 +4.719064934117109256e-01,5.629943760248834472e-01 +4.711693477708420730e-01,5.797240758378099379e-01 +4.569127026844475026e-01,5.905689464897185825e-01 +4.771934791047441893e-01,5.659913951793782427e-01 +4.719064934117109256e-01,5.629943760248834472e-01 +4.771934791047441893e-01,5.659913951793782427e-01 +4.651452164369400122e-01,5.934567564962418551e-01 +4.771934791047441893e-01,5.659913951793782427e-01 +4.719064934117109256e-01,5.629943760248834472e-01 +4.711693477708420730e-01,5.797240758378099379e-01 +4.569127026844475026e-01,5.905689464897185825e-01 +4.530969537691358906e-01,6.209221178131051344e-01 +4.591210851030380624e-01,6.071894371546733282e-01 +4.417836340442247156e-01,6.184468520932280278e-01 +4.530969537691358906e-01,6.209221178131051344e-01 +4.591210851030380624e-01,6.071894371546733282e-01 +4.417836340442247156e-01,6.184468520932280278e-01 +4.410486911013317135e-01,6.483874791299686358e-01 +4.470728224352337743e-01,6.346547984715369406e-01 +4.266545654040019842e-01,6.463247576967376951e-01 +4.410486911013317135e-01,6.483874791299686358e-01 +4.470728224352337743e-01,6.346547984715369406e-01 +4.266545654040019842e-01,6.463247576967376951e-01 +4.290004284335275364e-01,6.758528404468320261e-01 +4.350245597674295417e-01,6.621201597884001089e-01 +4.115254967637793082e-01,6.742026633002473623e-01 +4.290004284335275364e-01,6.758528404468320261e-01 +4.350245597674295417e-01,6.621201597884001089e-01 +4.115254967637793082e-01,6.742026633002473623e-01 +4.169521657657233038e-01,7.033182017636951944e-01 +4.229762970996254756e-01,6.895855211052637213e-01 +3.963964281235565768e-01,7.020805689037570296e-01 +4.169521657657233038e-01,7.033182017636951944e-01 +4.229762970996254756e-01,6.895855211052637213e-01 +3.963964281235565768e-01,7.020805689037570296e-01 +4.049039030979191267e-01,7.307835630805588067e-01 +4.109280344318212430e-01,7.170508824221270006e-01 +3.812673594833339008e-01,7.299584745072664749e-01 +4.049039030979191267e-01,7.307835630805588067e-01 +4.109280344318212430e-01,7.170508824221270006e-01 +3.812673594833339008e-01,7.299584745072664749e-01 +3.928556404301148941e-01,7.582489243974224191e-01 +3.988797717640169549e-01,7.445162437389905019e-01 +3.661382908431111138e-01,7.578363801107761422e-01 +3.928556404301148941e-01,7.582489243974224191e-01 +3.988797717640169549e-01,7.445162437389905019e-01 +3.661382908431111138e-01,7.578363801107761422e-01 +3.808073777623107170e-01,7.857142857142855874e-01 +3.868315090962127778e-01,7.719816050558541143e-01 +3.510092222028883269e-01,7.857142857142855874e-01 +3.808073777623107170e-01,7.857142857142855874e-01 +3.868315090962127778e-01,7.719816050558541143e-01 +3.510092222028883269e-01,7.857142857142855874e-01 +4.883733364728529702e-01,5.700560914573741256e-01 +4.823771305238907514e-01,5.970133657394880444e-01 +4.883733364728529702e-01,5.700560914573741256e-01 +4.827001040613112526e-01,5.683528811237297251e-01 +4.853752334983719163e-01,5.835347285984310295e-01 +4.737611734804153540e-01,5.952350611178647277e-01 +4.883733364728529702e-01,5.700560914573741256e-01 +4.827001040613112526e-01,5.683528811237297251e-01 +4.883733364728529702e-01,5.700560914573741256e-01 +4.823771305238907514e-01,5.970133657394880444e-01 +4.883733364728529702e-01,5.700560914573741256e-01 +4.827001040613112526e-01,5.683528811237297251e-01 +4.853752334983719163e-01,5.835347285984310295e-01 +4.737611734804153540e-01,5.952350611178647277e-01 +4.763809245749286436e-01,6.239706400216018523e-01 +4.793790275494096975e-01,6.104920028805449483e-01 +4.647389391720324059e-01,6.224463789173535488e-01 +4.763809245749286436e-01,6.239706400216018523e-01 +4.793790275494096975e-01,6.104920028805449483e-01 +4.647389391720324059e-01,6.224463789173535488e-01 +4.703847186259664248e-01,6.509279143037158821e-01 +4.733828216004474787e-01,6.374492771626588672e-01 +4.557167048636491247e-01,6.496576967168422589e-01 +4.703847186259664248e-01,6.509279143037158821e-01 +4.733828216004474787e-01,6.374492771626588672e-01 +4.557167048636489581e-01,6.496576967168422589e-01 +4.643885126770042060e-01,6.778851885858296900e-01 +4.673866156514853709e-01,6.644065514447727860e-01 +4.466944705552658434e-01,6.768690145163307470e-01 +4.643885126770042060e-01,6.778851885858296900e-01 +4.673866156514853709e-01,6.644065514447727860e-01 +4.466944705552658434e-01,6.768690145163307470e-01 +4.583923067280419317e-01,7.048424628679437198e-01 +4.613904097025231521e-01,6.913638257268868159e-01 +4.376722362468826177e-01,7.040803323158195681e-01 +4.583923067280419317e-01,7.048424628679437198e-01 +4.613904097025229856e-01,6.913638257268868159e-01 +4.376722362468826177e-01,7.040803323158195681e-01 +4.523961007790797129e-01,7.317997371500577497e-01 +4.553942037535607668e-01,7.183211000090006237e-01 +4.286500019384994475e-01,7.312916501153082782e-01 +4.523961007790797129e-01,7.317997371500577497e-01 +4.553942037535607668e-01,7.183211000090006237e-01 +4.286500019384994475e-01,7.312916501153082782e-01 +4.463998948301175496e-01,7.587570114321716686e-01 +4.493979978045986590e-01,7.452783742911146536e-01 +4.196277676301162218e-01,7.585029679147969883e-01 +4.463998948301175496e-01,7.587570114321716686e-01 +4.493979978045986590e-01,7.452783742911146536e-01 +4.196277676301162218e-01,7.585029679147969883e-01 +4.404036888811552197e-01,7.857142857142855874e-01 +4.434017918556363846e-01,7.722356485732286835e-01 +4.106055333217329961e-01,7.857142857142855874e-01 +4.404036888811552197e-01,7.857142857142855874e-01 +4.434017918556363846e-01,7.722356485732286835e-01 +4.106055333217329961e-01,7.857142857142855874e-01 +5.000000000000021094e-01,5.714285714285713969e-01 +5.000000000000000000e-01,5.982142857142856984e-01 +5.000000000000021094e-01,5.714285714285713969e-01 +4.941585400099420267e-01,5.710846233337285582e-01 +5.000000000000000000e-01,5.848214285714284921e-01 +4.911885652619454867e-01,5.976138257268868159e-01 +5.000000000000021094e-01,5.714285714285713969e-01 +4.941585400099420267e-01,5.710846233337285582e-01 +5.000000000000021094e-01,5.714285714285713969e-01 +5.000000000000000000e-01,5.982142857142856984e-01 +5.000000000000021094e-01,5.714285714285713969e-01 +4.941585400099420267e-01,5.710846233337285582e-01 +5.000000000000000000e-01,5.848214285714284921e-01 +4.911885652619454867e-01,5.976138257268868159e-01 +5.000000000000000000e-01,6.250000000000000000e-01 +5.000000000000000000e-01,6.116071428571427937e-01 +4.881904622874644328e-01,6.244853200108008151e-01 +5.000000000000000000e-01,6.250000000000000000e-01 +5.000000000000000000e-01,6.116071428571427937e-01 +4.881904622874644328e-01,6.244853200108008151e-01 +5.000000000000000000e-01,6.517857142857141906e-01 +5.000000000000000000e-01,6.383928571428570953e-01 +4.851923593129831014e-01,6.513568142947149253e-01 +5.000000000000000000e-01,6.517857142857141906e-01 +5.000000000000000000e-01,6.383928571428570953e-01 +4.851923593129831014e-01,6.513568142947149253e-01 +5.000000000000000000e-01,6.785714285714286031e-01 +5.000000000000000000e-01,6.651785714285713969e-01 +4.821942563385020475e-01,6.782283085786291466e-01 +5.000000000000000000e-01,6.785714285714286031e-01 +5.000000000000000000e-01,6.651785714285713969e-01 +4.821942563385020475e-01,6.782283085786291466e-01 +5.000000000000000000e-01,7.053571428571427937e-01 +5.000000000000000000e-01,6.919642857142855874e-01 +4.791961533640209936e-01,7.050998028625432568e-01 +5.000000000000000000e-01,7.053571428571427937e-01 +5.000000000000000000e-01,6.919642857142855874e-01 +4.791961533640209936e-01,7.050998028625432568e-01 +5.000000000000000000e-01,7.321428571428570953e-01 +5.000000000000000000e-01,7.187499999999998890e-01 +4.761980503895398842e-01,7.319712971464575890e-01 +5.000000000000000000e-01,7.321428571428570953e-01 +5.000000000000000000e-01,7.187499999999998890e-01 +4.761980503895398842e-01,7.319712971464575890e-01 +5.000000000000000000e-01,7.589285714285713969e-01 +5.000000000000000000e-01,7.455357142857141906e-01 +4.731999474150587748e-01,7.588427914303715882e-01 +5.000000000000000000e-01,7.589285714285713969e-01 +5.000000000000000000e-01,7.455357142857141906e-01 +4.731999474150587748e-01,7.588427914303715882e-01 +5.000000000000000000e-01,7.857142857142855874e-01 +5.000000000000000000e-01,7.723214285714284921e-01 +4.702018444405777209e-01,7.857142857142855874e-01 +5.000000000000000000e-01,7.857142857142855874e-01 +5.000000000000000000e-01,7.723214285714284921e-01 +4.702018444405777209e-01,7.857142857142855874e-01 +5.809429421821548090e-01,5.211217165545791730e-01 +5.584511847116943040e-01,5.139350230011516807e-01 +5.584511847116943040e-01,5.139350230011516807e-01 +5.696970634469243899e-01,5.175283697778655378e-01 +5.593093385914786886e-01,5.070012243092540949e-01 +5.814439349852829064e-01,5.105608582772895865e-01 +5.584511847116943040e-01,5.139350230011516807e-01 +5.593093385914786886e-01,5.070012243092540949e-01 +5.809429421821548090e-01,5.211217165545791730e-01 +5.584511847116943040e-01,5.139350230011516807e-01 +5.584511847116943040e-01,5.139350230011516807e-01 +5.696970634469243899e-01,5.175283697778655378e-01 +5.593093385914786886e-01,5.070012243092540949e-01 +5.814439349852829064e-01,5.105608582772895865e-01 +6.034346996526152029e-01,5.283084101080065542e-01 +5.921888209173850059e-01,5.247150633312929191e-01 +6.038641220552967148e-01,5.141542050540033326e-01 +6.034346996526152029e-01,5.283084101080065542e-01 +5.921888209173850059e-01,5.247150633312929191e-01 +6.038641220552967148e-01,5.141542050540033326e-01 +6.259264571230758190e-01,5.354951036614342685e-01 +6.146805783878456220e-01,5.319017568847204114e-01 +6.262843091253103012e-01,5.177475518307170788e-01 +6.259264571230758190e-01,5.354951036614342685e-01 +6.146805783878456220e-01,5.319017568847204114e-01 +6.262843091253103012e-01,5.177475518307170788e-01 +6.484182145935363240e-01,5.426817972148616498e-01 +6.371723358583061270e-01,5.390884504381479037e-01 +6.487044961953239985e-01,5.213408986074308249e-01 +6.484182145935363240e-01,5.426817972148616498e-01 +6.371723358583061270e-01,5.390884504381479037e-01 +6.487044961953239985e-01,5.213408986074308249e-01 +6.709099720639968290e-01,5.498684907682891421e-01 +6.596640933287666320e-01,5.462751439915753959e-01 +6.711246832653375849e-01,5.249342453841445710e-01 +6.709099720639968290e-01,5.498684907682891421e-01 +6.596640933287666320e-01,5.462751439915753959e-01 +6.711246832653375849e-01,5.249342453841445710e-01 +6.934017295344574450e-01,5.570551843217165233e-01 +6.821558507992272480e-01,5.534618375450028882e-01 +6.935448703353513933e-01,5.285275921608582061e-01 +6.934017295344574450e-01,5.570551843217165233e-01 +6.821558507992272480e-01,5.534618375450028882e-01 +6.935448703353513933e-01,5.285275921608582061e-01 +7.158934870049179500e-01,5.642418778751441266e-01 +7.046476082696876420e-01,5.606485310984303805e-01 +7.159650574053647576e-01,5.321209389375720633e-01 +7.158934870049179500e-01,5.642418778751441266e-01 +7.046476082696876420e-01,5.606485310984303805e-01 +7.159650574053647576e-01,5.321209389375720633e-01 +7.383852444753784550e-01,5.714285714285716189e-01 +7.383852444753784550e-01,5.714285714285716189e-01 +7.271393657401482580e-01,5.678352246518578728e-01 +7.383852444753784550e-01,5.357142857142855874e-01 +7.383852444753784550e-01,5.714285714285716189e-01 +7.383852444753784550e-01,5.357142857142855874e-01 +7.383852444753784550e-01,5.714285714285716189e-01 +7.383852444753784550e-01,5.714285714285716189e-01 +7.271393657401482580e-01,5.678352246518578728e-01 +7.383852444753784550e-01,5.357142857142855874e-01 +5.779754911083133662e-01,5.417748573799603395e-01 +5.550598120558755122e-01,5.273345308832200207e-01 +5.550598120558755122e-01,5.273345308832200207e-01 +5.665176515820944392e-01,5.345546941315904022e-01 +5.570301139704684212e-01,5.207346198038897978e-01 +5.794592166452340321e-01,5.314482869672698673e-01 +5.550598120558755122e-01,5.273345308832200207e-01 +5.570301139704684212e-01,5.207346198038897978e-01 +5.779754911083133662e-01,5.417748573799603395e-01 +5.550598120558755122e-01,5.273345308832200207e-01 +5.550598120558755122e-01,5.273345308832200207e-01 +5.665176515820944392e-01,5.345546941315904022e-01 +5.570301139704684212e-01,5.207346198038897978e-01 +5.794592166452340321e-01,5.314482869672698673e-01 +6.008911701607513312e-01,5.562151838767007694e-01 +5.894333306345324042e-01,5.489950206283307210e-01 +6.021629349066831560e-01,5.422617969923535508e-01 +6.008911701607513312e-01,5.562151838767007694e-01 +5.894333306345324042e-01,5.489950206283307210e-01 +6.021629349066833781e-01,5.422617969923537729e-01 +6.238068492131892961e-01,5.706555103734409773e-01 +6.123490096869703692e-01,5.634353471250710399e-01 +6.248666531681325020e-01,5.530753070174376784e-01 +6.238068492131892961e-01,5.706555103734409773e-01 +6.123490096869703692e-01,5.634353471250710399e-01 +6.248666531681325020e-01,5.530753070174376784e-01 +6.467225282656271501e-01,5.850958368701815182e-01 +6.352646887394080011e-01,5.778756736218113588e-01 +6.475703714295816260e-01,5.638888170425215840e-01 +6.467225282656271501e-01,5.850958368701815182e-01 +6.352646887394080011e-01,5.778756736218113588e-01 +6.475703714295816260e-01,5.638888170425215840e-01 +6.696382073180648931e-01,5.995361633669218371e-01 +6.581803677918459661e-01,5.923160001185516776e-01 +6.702740896910309720e-01,5.747023270676054896e-01 +6.696382073180648931e-01,5.995361633669218371e-01 +6.581803677918460771e-01,5.923160001185516776e-01 +6.702740896910309720e-01,5.747023270676054896e-01 +6.925538863705027470e-01,6.139764898636623780e-01 +6.810960468442838200e-01,6.067563266152921075e-01 +6.929778079524800960e-01,5.855158370926893951e-01 +6.925538863705027470e-01,6.139764898636623780e-01 +6.810960468442838200e-01,6.067563266152921075e-01 +6.929778079524800960e-01,5.855158370926893951e-01 +7.154695654229406010e-01,6.284168163604026969e-01 +7.040117258967216740e-01,6.211966531120323154e-01 +7.156815262139293310e-01,5.963293471177733007e-01 +7.154695654229406010e-01,6.284168163604026969e-01 +7.040117258967216740e-01,6.211966531120323154e-01 +7.156815262139293310e-01,5.963293471177733007e-01 +7.383852444753784550e-01,6.428571428571430157e-01 +7.383852444753784550e-01,6.428571428571430157e-01 +7.269274049491594170e-01,6.356369796087726343e-01 +7.383852444753784550e-01,6.071428571428573173e-01 +7.383852444753784550e-01,6.428571428571430157e-01 +7.383852444753784550e-01,6.071428571428573173e-01 +7.383852444753784550e-01,6.428571428571430157e-01 +7.383852444753784550e-01,6.428571428571430157e-01 +7.269274049491594170e-01,6.356369796087726343e-01 +7.383852444753784550e-01,6.071428571428573173e-01 +5.731566120474892445e-01,5.615088538494388271e-01 +5.495525217006481666e-01,5.396835880728279022e-01 +5.495525217006481666e-01,5.396835880728279022e-01 +5.613545668740685946e-01,5.505962209611332536e-01 +5.525592540524296714e-01,5.336711954875706931e-01 +5.755660515779014164e-01,5.516418556146995833e-01 +5.495525217006481666e-01,5.396835880728279022e-01 +5.525592540524296714e-01,5.336711954875706931e-01 +5.731566120474892445e-01,5.615088538494388271e-01 +5.495525217006481666e-01,5.396835880728279022e-01 +5.495525217006481666e-01,5.396835880728279022e-01 +5.613545668740685946e-01,5.505962209611332536e-01 +5.525592540524296714e-01,5.336711954875706931e-01 +5.755660515779014164e-01,5.516418556146995833e-01 +5.967607023943306555e-01,5.833341196260495298e-01 +5.849586572209100055e-01,5.724214867377441784e-01 +5.988259362775409933e-01,5.697746517513750941e-01 +5.967607023943306555e-01,5.833341196260495298e-01 +5.849586572209100055e-01,5.724214867377441784e-01 +5.988259362775409933e-01,5.697746517513750941e-01 +6.203647927411720664e-01,6.051593854026603436e-01 +6.085627475677514164e-01,5.942467525143548812e-01 +6.220858209771804592e-01,5.879074478880507160e-01 +6.203647927411720664e-01,6.051593854026603436e-01 +6.085627475677514164e-01,5.942467525143548812e-01 +6.220858209771804592e-01,5.879074478880507160e-01 +6.439688830880132553e-01,6.269846511792709354e-01 +6.321668379145926053e-01,6.160720182909655840e-01 +6.453457056768202582e-01,6.060402440247263378e-01 +6.439688830880132553e-01,6.269846511792709354e-01 +6.321668379145926053e-01,6.160720182909655840e-01 +6.453457056768202582e-01,6.060402440247263378e-01 +6.675729734348545552e-01,6.488099169558819712e-01 +6.557709282614339052e-01,6.378972840675763978e-01 +6.686055903764598352e-01,6.241730401614020707e-01 +6.675729734348545552e-01,6.488099169558819712e-01 +6.557709282614339052e-01,6.378972840675763978e-01 +6.686055903764598352e-01,6.241730401614020707e-01 +6.911770637816957441e-01,6.706351827324927850e-01 +6.793750186082753162e-01,6.597225498441874336e-01 +6.918654750760993011e-01,6.423058362980774705e-01 +6.911770637816957441e-01,6.706351827324927850e-01 +6.793750186082753162e-01,6.597225498441874336e-01 +6.918654750760993011e-01,6.423058362980774705e-01 +7.147811541285371550e-01,6.924604485091034878e-01 +7.029791089551166161e-01,6.815478156207981364e-01 +7.151253597757389890e-01,6.604386324347530923e-01 +7.147811541285371550e-01,6.924604485091034878e-01 +7.029791089551166161e-01,6.815478156207981364e-01 +7.151253597757389890e-01,6.604386324347530923e-01 +7.383852444753784550e-01,7.142857142857144126e-01 +7.383852444753784550e-01,7.142857142857144126e-01 +7.265831993019578050e-01,7.033730813974090612e-01 +7.383852444753784550e-01,6.785714285714287142e-01 +7.383852444753784550e-01,7.142857142857144126e-01 +7.383852444753784550e-01,6.785714285714287142e-01 +7.383852444753784550e-01,7.142857142857144126e-01 +7.383852444753784550e-01,7.142857142857144126e-01 +7.265831993019578050e-01,7.033730813974090612e-01 +7.383852444753784550e-01,6.785714285714287142e-01 +5.666714918195314699e-01,5.799084595384440544e-01 +5.421409557258389800e-01,5.505076272276095972e-01 +5.421409557258389800e-01,5.505076272276095972e-01 +5.544062237726852249e-01,5.652080433830268813e-01 +5.460685714767252730e-01,5.453138060116882180e-01 +5.699140519335104127e-01,5.707086566939414407e-01 +5.421409557258389800e-01,5.505076272276095972e-01 +5.460685714767252730e-01,5.453138060116882180e-01 +5.666714918195314699e-01,5.799084595384440544e-01 +5.421409557258389800e-01,5.505076272276095972e-01 +5.421409557258389800e-01,5.505076272276095972e-01 +5.544062237726852249e-01,5.652080433830268813e-01 +5.460685714767252730e-01,5.453138060116882180e-01 +5.699140519335104127e-01,5.707086566939414407e-01 +5.912020279132238487e-01,6.093092918492786225e-01 +5.789367598663776038e-01,5.946088756938614495e-01 +5.939813651537771966e-01,5.963217057376639652e-01 +5.912020279132238487e-01,6.093092918492786225e-01 +5.789367598663776038e-01,5.946088756938614495e-01 +5.939813651537771966e-01,5.963217057376639652e-01 +6.157325640069163386e-01,6.387101241601130797e-01 +6.034672959600699826e-01,6.240097080046957956e-01 +6.180486783740443135e-01,6.219347547813867116e-01 +6.157325640069163386e-01,6.387101241601130797e-01 +6.034672959600699826e-01,6.240097080046957956e-01 +6.180486783740443135e-01,6.219347547813867116e-01 +6.402631001006086064e-01,6.681109564709476478e-01 +6.279978320537624725e-01,6.534105403155304748e-01 +6.421159915943108754e-01,6.475478038251094581e-01 +6.402631001006086064e-01,6.681109564709476478e-01 +6.279978320537624725e-01,6.534105403155304748e-01 +6.421159915943108754e-01,6.475478038251094581e-01 +6.647936361943010963e-01,6.975117887817821050e-01 +6.525283681474548514e-01,6.828113726263647099e-01 +6.661833048145778813e-01,6.731608528688319826e-01 +6.647936361943010963e-01,6.975117887817821050e-01 +6.525283681474548514e-01,6.828113726263647099e-01 +6.661833048145778813e-01,6.731608528688319826e-01 +6.893241722879936972e-01,7.269126210926167841e-01 +6.770589042411474523e-01,7.122122049371995001e-01 +6.902506180348447762e-01,6.987739019125546180e-01 +6.893241722879936972e-01,7.269126210926167841e-01 +6.770589042411474523e-01,7.122122049371995001e-01 +6.902506180348447762e-01,6.987739019125548401e-01 +7.138547083816859651e-01,7.563134534034510192e-01 +7.015894403348399422e-01,7.416130372480340682e-01 +7.143179312551117821e-01,7.243869509562774756e-01 +7.138547083816859651e-01,7.563134534034510192e-01 +7.015894403348398312e-01,7.416130372480340682e-01 +7.143179312551114490e-01,7.243869509562774756e-01 +7.383852444753784550e-01,7.857142857142855874e-01 +7.383852444753784550e-01,7.857142857142855874e-01 +7.261199764285322100e-01,7.710138695588685254e-01 +7.383852444753784550e-01,7.500000000000000000e-01 +7.383852444753784550e-01,7.857142857142855874e-01 +7.383852444753784550e-01,7.500000000000000000e-01 +7.383852444753784550e-01,7.857142857142855874e-01 +7.383852444753784550e-01,7.857142857142855874e-01 +7.261199764285322100e-01,7.710138695588685254e-01 +7.383852444753784550e-01,7.500000000000000000e-01 +5.513198110680472830e-01,5.876811364831939777e-01 +5.331099364554062747e-01,5.593906865930380334e-01 +5.331099364554062747e-01,5.593906865930380334e-01 +5.422148737617268344e-01,5.735359115381160056e-01 +5.378074995347230658e-01,5.552150323830518097e-01 +5.589956514437892654e-01,5.837947980108191270e-01 +5.331099364554062747e-01,5.593906865930380334e-01 +5.378074995347230658e-01,5.552150323830518097e-01 +5.513198110680472830e-01,5.876811364831939777e-01 +5.331099364554062747e-01,5.593906865930380334e-01 +5.331099364554062747e-01,5.593906865930380334e-01 +5.422148737617268344e-01,5.735359115381160056e-01 +5.378074995347230658e-01,5.552150323830518097e-01 +5.589956514437892654e-01,5.837947980108191270e-01 +5.695296856806880692e-01,6.159715863733499219e-01 +5.604247483743677316e-01,6.018263614282719498e-01 +5.803658567969560700e-01,6.126404391113142722e-01 +5.695296856806880692e-01,6.159715863733499219e-01 +5.604247483743677316e-01,6.018263614282719498e-01 +5.803658567969560700e-01,6.126404391113142722e-01 +5.877395602933291885e-01,6.442620362635059772e-01 +5.786346229870086288e-01,6.301168113184278941e-01 +6.017360621501227635e-01,6.414860802118094174e-01 +5.877395602933291885e-01,6.442620362635059772e-01 +5.786346229870086288e-01,6.301168113184278941e-01 +6.017360621501227635e-01,6.414860802118094174e-01 +6.059494349059700857e-01,6.725524861536618104e-01 +5.968444975996495261e-01,6.584072612085837273e-01 +6.231062675032894571e-01,6.703317213123045626e-01 +6.059494349059700857e-01,6.725524861536618104e-01 +5.968444975996495261e-01,6.584072612085840603e-01 +6.231062675032894571e-01,6.703317213123045626e-01 +6.241593095186109830e-01,7.008429360438177547e-01 +6.150543722122904233e-01,6.866977110987397825e-01 +6.444764728564560397e-01,6.991773624127999298e-01 +6.241593095186109830e-01,7.008429360438177547e-01 +6.150543722122904233e-01,6.866977110987397825e-01 +6.444764728564560397e-01,6.991773624127999298e-01 +6.423691841312519912e-01,7.291333859339739210e-01 +6.332642468249314316e-01,7.149881609888957268e-01 +6.658466782096228442e-01,7.280230035132952970e-01 +6.423691841312519912e-01,7.291333859339739210e-01 +6.332642468249314316e-01,7.149881609888957268e-01 +6.658466782096228442e-01,7.280230035132952970e-01 +6.605790587438928885e-01,7.574238358241297542e-01 +6.514741214375723288e-01,7.432786108790517821e-01 +6.872168835627895378e-01,7.568686446137905532e-01 +6.605790587438928885e-01,7.574238358241297542e-01 +6.514741214375723288e-01,7.432786108790517821e-01 +6.872168835627893158e-01,7.568686446137905532e-01 +6.787889333565337857e-01,7.857142857142855874e-01 +6.696839960502132261e-01,7.715690607692077263e-01 +7.085870889159561203e-01,7.857142857142855874e-01 +6.787889333565337857e-01,7.857142857142855874e-01 +6.696839960502132261e-01,7.715690607692077263e-01 +7.085870889159561203e-01,7.857142857142855874e-01 +5.348547835630624858e-01,5.934567564962405228e-01 +5.228065208952586973e-01,5.659913951793767994e-01 +5.228065208952586973e-01,5.659913951793767994e-01 +5.288306522291604805e-01,5.797240758378086056e-01 +5.280935065882915724e-01,5.629943760248817819e-01 +5.430872973155548289e-01,5.905689464897172503e-01 +5.228065208952586973e-01,5.659913951793767994e-01 +5.280935065882915724e-01,5.629943760248817819e-01 +5.348547835630624858e-01,5.934567564962405228e-01 +5.228065208952586973e-01,5.659913951793767994e-01 +5.228065208952586973e-01,5.659913951793767994e-01 +5.288306522291604805e-01,5.797240758378086056e-01 +5.280935065882915724e-01,5.629943760248817819e-01 +5.430872973155548289e-01,5.905689464897172503e-01 +5.469030462308663854e-01,6.209221178131039132e-01 +5.408789148969644911e-01,6.071894371546722180e-01 +5.582163659557773938e-01,6.184468520932269175e-01 +5.469030462308663854e-01,6.209221178131039132e-01 +5.408789148969644911e-01,6.071894371546722180e-01 +5.582163659557770607e-01,6.184468520932269175e-01 +5.589513088986700629e-01,6.483874791299677476e-01 +5.529271775647680576e-01,6.346547984715357194e-01 +5.733454345959996257e-01,6.463247576967365848e-01 +5.589513088986700629e-01,6.483874791299677476e-01 +5.529271775647680576e-01,6.346547984715357194e-01 +5.733454345959996257e-01,6.463247576967368069e-01 +5.709995715664739624e-01,6.758528404468311379e-01 +5.649754402325719571e-01,6.621201597883994427e-01 +5.884745032362218575e-01,6.742026633002466962e-01 +5.709995715664739624e-01,6.758528404468311379e-01 +5.649754402325719571e-01,6.621201597883994427e-01 +5.884745032362220796e-01,6.742026633002466962e-01 +5.830478342342777509e-01,7.033182017636947503e-01 +5.770237029003758567e-01,6.895855211052630551e-01 +6.036035718764444225e-01,7.020805689037562525e-01 +5.830478342342777509e-01,7.033182017636947503e-01 +5.770237029003758567e-01,6.895855211052630551e-01 +6.036035718764444225e-01,7.020805689037562525e-01 +5.950960969020815394e-01,7.307835630805585847e-01 +5.890719655681795341e-01,7.170508824221266675e-01 +6.187326405166667653e-01,7.299584745072660308e-01 +5.950960969020815394e-01,7.307835630805585847e-01 +5.890719655681797562e-01,7.170508824221266675e-01 +6.187326405166667653e-01,7.299584745072660308e-01 +6.071443595698852169e-01,7.582489243974221971e-01 +6.011202282359834337e-01,7.445162437389902799e-01 +6.338617091568889972e-01,7.578363801107759201e-01 +6.071443595698852169e-01,7.582489243974221971e-01 +6.011202282359834337e-01,7.445162437389902799e-01 +6.338617091568892192e-01,7.578363801107759201e-01 +6.191926222376892275e-01,7.857142857142855874e-01 +6.131684909037872222e-01,7.719816050558538922e-01 +6.489907777971115621e-01,7.857142857142855874e-01 +6.191926222376892275e-01,7.857142857142855874e-01 +6.131684909037872222e-01,7.719816050558538922e-01 +6.489907777971115621e-01,7.857142857142855874e-01 +5.176228694761122462e-01,5.970133657394872673e-01 +5.116266635271506935e-01,5.700560914573731264e-01 +5.116266635271506935e-01,5.700560914573731264e-01 +5.146247665016314699e-01,5.835347285984300303e-01 +5.172998959386919671e-01,5.683528811237286149e-01 +5.262388265195874215e-01,5.952350611178636175e-01 +5.116266635271506935e-01,5.700560914573731264e-01 +5.172998959386919671e-01,5.683528811237286149e-01 +5.176228694761122462e-01,5.970133657394872673e-01 +5.116266635271506935e-01,5.700560914573731264e-01 +5.116266635271506935e-01,5.700560914573731264e-01 +5.146247665016313588e-01,5.835347285984300303e-01 +5.172998959386919671e-01,5.683528811237286149e-01 +5.262388265195874215e-01,5.952350611178636175e-01 +5.236190754250740209e-01,6.239706400216010751e-01 +5.206209724505931336e-01,6.104920028805442822e-01 +5.352610608279700921e-01,6.224463789173526607e-01 +5.236190754250740209e-01,6.239706400216010751e-01 +5.206209724505931336e-01,6.104920028805442822e-01 +5.352610608279700921e-01,6.224463789173526607e-01 +5.296152813740359067e-01,6.509279143037152160e-01 +5.266171783995549083e-01,6.374492771626583121e-01 +5.442832951363528737e-01,6.496576967168414818e-01 +5.296152813740359067e-01,6.509279143037152160e-01 +5.266171783995549083e-01,6.374492771626583121e-01 +5.442832951363528737e-01,6.496576967168414818e-01 +5.356114873229975704e-01,6.778851885858293569e-01 +5.326133843485167940e-01,6.644065514447723420e-01 +5.533055294447357664e-01,6.768690145163303029e-01 +5.356114873229975704e-01,6.778851885858293569e-01 +5.326133843485167940e-01,6.644065514447723420e-01 +5.533055294447357664e-01,6.768690145163303029e-01 +5.416076932719592341e-01,7.048424628679434978e-01 +5.386095902974784577e-01,6.913638257268863718e-01 +5.623277637531185480e-01,7.040803323158191240e-01 +5.416076932719592341e-01,7.048424628679434978e-01 +5.386095902974784577e-01,6.913638257268863718e-01 +5.623277637531185480e-01,7.040803323158191240e-01 +5.476038992209210088e-01,7.317997371500575277e-01 +5.446057962464401214e-01,7.183211000090004017e-01 +5.713499980615012186e-01,7.312916501153080562e-01 +5.476038992209210088e-01,7.317997371500575277e-01 +5.446057962464401214e-01,7.183211000090004017e-01 +5.713499980615012186e-01,7.312916501153080562e-01 +5.536001051698828945e-01,7.587570114321716686e-01 +5.506020021954018961e-01,7.452783742911146536e-01 +5.803722323698840002e-01,7.585029679147967663e-01 +5.536001051698828945e-01,7.587570114321716686e-01 +5.506020021954018961e-01,7.452783742911146536e-01 +5.803722323698840002e-01,7.585029679147967663e-01 +5.595963111188445582e-01,7.857142857142855874e-01 +5.565982081443636709e-01,7.722356485732286835e-01 +5.893944666782666708e-01,7.857142857142855874e-01 +5.595963111188445582e-01,7.857142857142855874e-01 +5.565982081443636709e-01,7.722356485732286835e-01 +5.893944666782666708e-01,7.857142857142855874e-01 +5.058414599900619146e-01,5.710846233337281141e-01 +5.088114347380562341e-01,5.976138257268863718e-01 +5.058414599900619146e-01,5.710846233337281141e-01 +5.058414599900619146e-01,5.710846233337281141e-01 +5.088114347380562341e-01,5.976138257268863718e-01 +5.118095377125368994e-01,6.244853200108004820e-01 +5.118095377125368994e-01,6.244853200108004820e-01 +5.148076406870178978e-01,6.513568142947145923e-01 +5.148076406870178978e-01,6.513568142947145923e-01 +5.178057436614986742e-01,6.782283085786289245e-01 +5.178057436614986742e-01,6.782283085786289245e-01 +5.208038466359795615e-01,7.050998028625430347e-01 +5.208038466359795615e-01,7.050998028625430347e-01 +5.238019496104604489e-01,7.319712971464573670e-01 +5.238019496104604489e-01,7.319712971464573670e-01 +5.268000525849414473e-01,7.588427914303715882e-01 +5.268000525849414473e-01,7.588427914303715882e-01 +5.297981555594223346e-01,7.857142857142855874e-01 +5.297981555594223346e-01,7.857142857142855874e-01 +3.212110666434661033e-01,8.085714285714284966e-01 +2.616147555246215450e-01,8.085714285714284966e-01 +2.616147555246215450e-01,8.085714285714284966e-01 +3.212110666434661033e-01,7.971428571428570420e-01 +2.914129110840438242e-01,8.085714285714284966e-01 +2.616147555246215450e-01,7.971428571428570420e-01 +2.616147555246215450e-01,8.085714285714284966e-01 +2.616147555246215450e-01,7.971428571428570420e-01 +3.212110666434661033e-01,8.085714285714284966e-01 +2.616147555246215450e-01,8.085714285714284966e-01 +2.616147555246215450e-01,8.085714285714284966e-01 +3.212110666434661033e-01,7.971428571428570420e-01 +2.914129110840438242e-01,8.085714285714284966e-01 +2.616147555246215450e-01,7.971428571428570420e-01 +3.212110666434661033e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.314285714285714057e-01 +3.212110666434661033e-01,8.199999999999998401e-01 +2.914129110840438242e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.199999999999998401e-01 +2.616147555246215450e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.199999999999998401e-01 +3.212110666434661033e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.314285714285714057e-01 +3.212110666434661033e-01,8.199999999999998401e-01 +2.914129110840438242e-01,8.314285714285714057e-01 +2.616147555246215450e-01,8.199999999999998401e-01 +3.212110666434661033e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.542857142857142039e-01 +3.212110666434661033e-01,8.428571428571427493e-01 +2.914129110840438242e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.428571428571427493e-01 +2.616147555246215450e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.428571428571427493e-01 +3.212110666434661033e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.542857142857142039e-01 +3.212110666434661033e-01,8.428571428571427493e-01 +2.914129110840438242e-01,8.542857142857142039e-01 +2.616147555246215450e-01,8.428571428571427493e-01 +3.212110666434661033e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.771428571428571130e-01 +3.212110666434661033e-01,8.657142857142856585e-01 +2.914129110840438242e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.657142857142856585e-01 +2.616147555246215450e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.657142857142856585e-01 +3.212110666434661033e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.771428571428571130e-01 +3.212110666434661033e-01,8.657142857142856585e-01 +2.914129110840438242e-01,8.771428571428571130e-01 +2.616147555246215450e-01,8.657142857142856585e-01 +3.212110666434661033e-01,9.000000000000000222e-01 +2.616147555246215450e-01,9.000000000000000222e-01 +3.212110666434661033e-01,9.000000000000000222e-01 +2.616147555246215450e-01,9.000000000000000222e-01 +3.212110666434661033e-01,8.885714285714285676e-01 +2.914129110840438242e-01,9.000000000000000222e-01 +2.616147555246215450e-01,8.885714285714285676e-01 +3.212110666434661033e-01,9.000000000000000222e-01 +2.616147555246215450e-01,9.000000000000000222e-01 +2.914129110840438242e-01,9.000000000000000222e-01 +2.616147555246215450e-01,8.885714285714285676e-01 +3.212110666434661033e-01,9.000000000000000222e-01 +2.616147555246215450e-01,9.000000000000000222e-01 +3.212110666434661033e-01,9.000000000000000222e-01 +2.616147555246215450e-01,9.000000000000000222e-01 +3.212110666434661033e-01,8.885714285714285676e-01 +2.914129110840438242e-01,9.000000000000000222e-01 +2.616147555246215450e-01,8.885714285714285676e-01 +3.808073777623107170e-01,8.085714285714284966e-01 +3.808073777623107170e-01,7.971428571428570420e-01 +3.510092222028883269e-01,8.085714285714284966e-01 +3.808073777623107170e-01,8.085714285714284966e-01 +3.808073777623107170e-01,7.971428571428570420e-01 +3.510092222028883269e-01,8.085714285714284966e-01 +3.808073777623107170e-01,8.314285714285714057e-01 +3.808073777623107170e-01,8.199999999999998401e-01 +3.510092222028884379e-01,8.314285714285714057e-01 +3.808073777623107170e-01,8.314285714285714057e-01 +3.808073777623107170e-01,8.199999999999998401e-01 +3.510092222028883269e-01,8.314285714285714057e-01 +3.808073777623107170e-01,8.542857142857142039e-01 +3.808073777623107170e-01,8.428571428571427493e-01 +3.510092222028884379e-01,8.542857142857142039e-01 +3.808073777623107170e-01,8.542857142857142039e-01 +3.808073777623107170e-01,8.428571428571427493e-01 +3.510092222028883269e-01,8.542857142857142039e-01 +3.808073777623107170e-01,8.771428571428571130e-01 +3.808073777623107170e-01,8.657142857142856585e-01 +3.510092222028883269e-01,8.771428571428571130e-01 +3.808073777623107170e-01,8.771428571428571130e-01 +3.808073777623107170e-01,8.657142857142856585e-01 +3.510092222028883269e-01,8.771428571428571130e-01 +3.808073777623107170e-01,9.000000000000000222e-01 +3.808073777623107170e-01,9.000000000000000222e-01 +3.808073777623107170e-01,8.885714285714285676e-01 +3.510092222028883269e-01,9.000000000000000222e-01 +3.808073777623107170e-01,9.000000000000000222e-01 +3.510092222028883269e-01,9.000000000000000222e-01 +3.808073777623107170e-01,9.000000000000000222e-01 +3.808073777623107170e-01,9.000000000000000222e-01 +3.808073777623107170e-01,8.885714285714285676e-01 +3.510092222028883269e-01,9.000000000000000222e-01 +4.404036888811552197e-01,8.085714285714284966e-01 +4.404036888811552197e-01,7.971428571428570420e-01 +4.106055333217329961e-01,8.085714285714284966e-01 +4.404036888811552197e-01,8.085714285714284966e-01 +4.404036888811552197e-01,7.971428571428570420e-01 +4.106055333217329961e-01,8.085714285714284966e-01 +4.404036888811552197e-01,8.314285714285714057e-01 +4.404036888811552197e-01,8.199999999999998401e-01 +4.106055333217329961e-01,8.314285714285714057e-01 +4.404036888811552197e-01,8.314285714285714057e-01 +4.404036888811552197e-01,8.199999999999998401e-01 +4.106055333217329961e-01,8.314285714285714057e-01 +4.404036888811552197e-01,8.542857142857142039e-01 +4.404036888811552197e-01,8.428571428571427493e-01 +4.106055333217329961e-01,8.542857142857142039e-01 +4.404036888811552197e-01,8.542857142857142039e-01 +4.404036888811552197e-01,8.428571428571427493e-01 +4.106055333217329961e-01,8.542857142857142039e-01 +4.404036888811552197e-01,8.771428571428571130e-01 +4.404036888811552197e-01,8.657142857142856585e-01 +4.106055333217329961e-01,8.771428571428571130e-01 +4.404036888811552197e-01,8.771428571428571130e-01 +4.404036888811552197e-01,8.657142857142856585e-01 +4.106055333217329961e-01,8.771428571428571130e-01 +4.404036888811552197e-01,9.000000000000000222e-01 +4.404036888811552197e-01,9.000000000000000222e-01 +4.404036888811552197e-01,8.885714285714285676e-01 +4.106055333217329961e-01,9.000000000000000222e-01 +4.404036888811552197e-01,9.000000000000000222e-01 +4.106055333217329961e-01,9.000000000000000222e-01 +4.404036888811552197e-01,9.000000000000000222e-01 +4.404036888811552197e-01,9.000000000000000222e-01 +4.404036888811552197e-01,8.885714285714285676e-01 +4.106055333217329961e-01,9.000000000000000222e-01 +5.000000000000000000e-01,8.085714285714284966e-01 +5.000000000000000000e-01,7.971428571428570420e-01 +4.702018444405777209e-01,8.085714285714284966e-01 +5.000000000000000000e-01,8.085714285714284966e-01 +5.000000000000000000e-01,7.971428571428570420e-01 +4.702018444405777209e-01,8.085714285714284966e-01 +5.000000000000000000e-01,8.314285714285714057e-01 +5.000000000000000000e-01,8.199999999999998401e-01 +4.702018444405777209e-01,8.314285714285714057e-01 +5.000000000000000000e-01,8.314285714285714057e-01 +5.000000000000000000e-01,8.199999999999998401e-01 +4.702018444405777209e-01,8.314285714285714057e-01 +5.000000000000000000e-01,8.542857142857142039e-01 +5.000000000000000000e-01,8.428571428571427493e-01 +4.702018444405777209e-01,8.542857142857142039e-01 +5.000000000000000000e-01,8.542857142857142039e-01 +5.000000000000000000e-01,8.428571428571427493e-01 +4.702018444405777209e-01,8.542857142857142039e-01 +5.000000000000000000e-01,8.771428571428571130e-01 +5.000000000000000000e-01,8.657142857142856585e-01 +4.702018444405777209e-01,8.771428571428571130e-01 +5.000000000000000000e-01,8.771428571428571130e-01 +5.000000000000000000e-01,8.657142857142856585e-01 +4.702018444405777209e-01,8.771428571428571130e-01 +5.000000000000000000e-01,9.000000000000000222e-01 +5.000000000000000000e-01,9.000000000000000222e-01 +5.000000000000000000e-01,8.885714285714285676e-01 +4.702018444405777209e-01,9.000000000000000222e-01 +5.000000000000000000e-01,9.000000000000000222e-01 +4.702018444405777209e-01,9.000000000000000222e-01 +5.000000000000000000e-01,9.000000000000000222e-01 +5.000000000000000000e-01,9.000000000000000222e-01 +5.000000000000000000e-01,8.885714285714285676e-01 +4.702018444405777209e-01,9.000000000000000222e-01 +5.595963111188445582e-01,8.085714285714284966e-01 +5.595963111188445582e-01,7.971428571428570420e-01 +5.297981555594223346e-01,8.085714285714284966e-01 +5.595963111188445582e-01,8.085714285714284966e-01 +5.595963111188445582e-01,7.971428571428570420e-01 +5.297981555594223346e-01,8.085714285714284966e-01 +5.595963111188445582e-01,8.314285714285714057e-01 +5.595963111188445582e-01,8.199999999999998401e-01 +5.297981555594223346e-01,8.314285714285714057e-01 +5.595963111188445582e-01,8.314285714285714057e-01 +5.595963111188445582e-01,8.199999999999998401e-01 +5.297981555594223346e-01,8.314285714285714057e-01 +5.595963111188445582e-01,8.542857142857142039e-01 +5.595963111188445582e-01,8.428571428571427493e-01 +5.297981555594223346e-01,8.542857142857142039e-01 +5.595963111188445582e-01,8.542857142857142039e-01 +5.595963111188445582e-01,8.428571428571427493e-01 +5.297981555594223346e-01,8.542857142857142039e-01 +5.595963111188445582e-01,8.771428571428571130e-01 +5.595963111188445582e-01,8.657142857142856585e-01 +5.297981555594223346e-01,8.771428571428571130e-01 +5.595963111188445582e-01,8.771428571428571130e-01 +5.595963111188445582e-01,8.657142857142856585e-01 +5.297981555594223346e-01,8.771428571428571130e-01 +5.595963111188445582e-01,9.000000000000000222e-01 +5.595963111188445582e-01,9.000000000000000222e-01 +5.595963111188445582e-01,8.885714285714285676e-01 +5.297981555594223346e-01,9.000000000000000222e-01 +5.595963111188445582e-01,9.000000000000000222e-01 +5.297981555594223346e-01,9.000000000000000222e-01 +5.595963111188445582e-01,9.000000000000000222e-01 +5.595963111188445582e-01,9.000000000000000222e-01 +5.595963111188445582e-01,8.885714285714285676e-01 +5.297981555594223346e-01,9.000000000000000222e-01 +6.191926222376892275e-01,8.085714285714284966e-01 +6.191926222376892275e-01,7.971428571428570420e-01 +5.893944666782670039e-01,8.085714285714284966e-01 +6.191926222376892275e-01,8.085714285714284966e-01 +6.191926222376892275e-01,7.971428571428570420e-01 +5.893944666782666708e-01,8.085714285714284966e-01 +6.191926222376892275e-01,8.314285714285714057e-01 +6.191926222376892275e-01,8.199999999999998401e-01 +5.893944666782670039e-01,8.314285714285714057e-01 +6.191926222376892275e-01,8.314285714285714057e-01 +6.191926222376892275e-01,8.199999999999998401e-01 +5.893944666782666708e-01,8.314285714285714057e-01 +6.191926222376892275e-01,8.542857142857142039e-01 +6.191926222376892275e-01,8.428571428571427493e-01 +5.893944666782670039e-01,8.542857142857142039e-01 +6.191926222376892275e-01,8.542857142857142039e-01 +6.191926222376892275e-01,8.428571428571427493e-01 +5.893944666782666708e-01,8.542857142857142039e-01 +6.191926222376892275e-01,8.771428571428571130e-01 +6.191926222376892275e-01,8.657142857142856585e-01 +5.893944666782666708e-01,8.771428571428571130e-01 +6.191926222376892275e-01,8.771428571428571130e-01 +6.191926222376892275e-01,8.657142857142856585e-01 +5.893944666782666708e-01,8.771428571428571130e-01 +6.191926222376892275e-01,9.000000000000000222e-01 +6.191926222376892275e-01,9.000000000000000222e-01 +6.191926222376892275e-01,8.885714285714285676e-01 +5.893944666782666708e-01,9.000000000000000222e-01 +6.191926222376892275e-01,9.000000000000000222e-01 +5.893944666782666708e-01,9.000000000000000222e-01 +6.191926222376892275e-01,9.000000000000000222e-01 +6.191926222376892275e-01,9.000000000000000222e-01 +6.191926222376892275e-01,8.885714285714285676e-01 +5.893944666782666708e-01,9.000000000000000222e-01 +6.787889333565337857e-01,8.085714285714284966e-01 +6.787889333565337857e-01,7.971428571428570420e-01 +6.489907777971115621e-01,8.085714285714284966e-01 +6.787889333565337857e-01,8.085714285714284966e-01 +6.787889333565337857e-01,7.971428571428570420e-01 +6.489907777971115621e-01,8.085714285714284966e-01 +6.787889333565337857e-01,8.314285714285714057e-01 +6.787889333565337857e-01,8.199999999999998401e-01 +6.489907777971115621e-01,8.314285714285714057e-01 +6.787889333565337857e-01,8.314285714285714057e-01 +6.787889333565337857e-01,8.199999999999998401e-01 +6.489907777971115621e-01,8.314285714285714057e-01 +6.787889333565337857e-01,8.542857142857142039e-01 +6.787889333565337857e-01,8.428571428571427493e-01 +6.489907777971115621e-01,8.542857142857142039e-01 +6.787889333565337857e-01,8.542857142857142039e-01 +6.787889333565337857e-01,8.428571428571427493e-01 +6.489907777971115621e-01,8.542857142857142039e-01 +6.787889333565337857e-01,8.771428571428571130e-01 +6.787889333565337857e-01,8.657142857142856585e-01 +6.489907777971115621e-01,8.771428571428571130e-01 +6.787889333565337857e-01,8.771428571428571130e-01 +6.787889333565337857e-01,8.657142857142856585e-01 +6.489907777971115621e-01,8.771428571428571130e-01 +6.787889333565337857e-01,9.000000000000000222e-01 +6.787889333565337857e-01,9.000000000000000222e-01 +6.787889333565337857e-01,8.885714285714285676e-01 +6.489907777971115621e-01,9.000000000000000222e-01 +6.787889333565337857e-01,9.000000000000000222e-01 +6.489907777971115621e-01,9.000000000000000222e-01 +6.787889333565337857e-01,9.000000000000000222e-01 +6.787889333565337857e-01,9.000000000000000222e-01 +6.787889333565337857e-01,8.885714285714285676e-01 +6.489907777971115621e-01,9.000000000000000222e-01 +7.383852444753784550e-01,8.085714285714284966e-01 +7.383852444753784550e-01,8.085714285714284966e-01 +7.383852444753784550e-01,7.971428571428570420e-01 +7.085870889159561203e-01,8.085714285714284966e-01 +7.383852444753784550e-01,8.085714285714284966e-01 +7.383852444753784550e-01,7.971428571428570420e-01 +7.383852444753784550e-01,8.085714285714284966e-01 +7.383852444753784550e-01,8.085714285714284966e-01 +7.383852444753784550e-01,7.971428571428570420e-01 +7.085870889159561203e-01,8.085714285714284966e-01 +7.383852444753784550e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.199999999999998401e-01 +7.085870889159561203e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.199999999999998401e-01 +7.383852444753784550e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.199999999999998401e-01 +7.085870889159561203e-01,8.314285714285714057e-01 +7.383852444753784550e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.428571428571427493e-01 +7.085870889159561203e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.428571428571427493e-01 +7.383852444753784550e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.428571428571427493e-01 +7.085870889159561203e-01,8.542857142857142039e-01 +7.383852444753784550e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.657142857142856585e-01 +7.085870889159561203e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.657142857142856585e-01 +7.383852444753784550e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.771428571428571130e-01 +7.383852444753784550e-01,8.657142857142856585e-01 +7.085870889159561203e-01,8.771428571428571130e-01 +7.383852444753784550e-01,9.000000000000000222e-01 +7.383852444753784550e-01,9.000000000000000222e-01 +7.383852444753784550e-01,8.885714285714285676e-01 +7.085870889159561203e-01,9.000000000000000222e-01 +7.383852444753784550e-01,9.000000000000000222e-01 +7.383852444753784550e-01,8.885714285714285676e-01 +7.085870889159561203e-01,9.000000000000000222e-01 +7.383852444753784550e-01,9.000000000000000222e-01 +7.383852444753784550e-01,9.000000000000000222e-01 +7.383852444753784550e-01,8.885714285714285676e-01 +7.085870889159561203e-01,9.000000000000000222e-01 diff --git a/src/pyvale/data/render/riley/min/tri6_sphere200/connect.csv b/src/pyvale/data/render/riley/min/tri6_sphere200/connect.csv new file mode 100644 index 000000000..6a7e02ef3 --- /dev/null +++ b/src/pyvale/data/render/riley/min/tri6_sphere200/connect.csv @@ -0,0 +1,675 @@ +0,62,64,31,63,32 +0,62,64,31,63,32 +0,64,2,32,33,1 +2,64,66,33,65,34 +2,64,66,33,65,34 +2,66,4,34,35,3 +4,66,68,35,67,36 +4,66,68,35,67,36 +4,68,6,36,37,5 +6,68,70,37,69,38 +6,68,70,37,69,38 +6,70,8,38,39,7 +8,70,72,39,71,40 +8,70,72,39,71,40 +8,72,10,40,41,9 +10,72,74,41,73,42 +10,72,74,41,73,42 +10,74,12,42,43,11 +12,74,76,43,75,44 +12,74,76,43,75,44 +12,76,14,44,45,13 +14,76,78,45,77,46 +14,76,78,45,77,46 +14,78,16,46,47,15 +16,78,80,47,79,48 +16,78,80,47,79,48 +16,80,18,48,49,17 +18,80,82,49,81,50 +18,80,82,49,81,50 +18,82,20,50,51,19 +20,82,84,51,83,52 +20,82,84,51,83,52 +20,84,22,52,53,21 +22,84,86,53,85,54 +22,84,86,53,85,54 +22,86,24,54,55,23 +24,86,88,55,87,56 +24,86,88,55,87,56 +24,88,26,56,57,25 +26,88,90,57,89,58 +26,88,90,57,89,58 +26,90,28,58,59,27 +28,90,92,59,91,60 +28,90,92,59,91,60 +28,92,30,60,61,29 +62,124,126,93,125,94 +62,124,126,93,125,94 +62,126,64,94,95,63 +64,126,128,95,127,96 +64,126,128,95,127,96 +64,128,66,96,97,65 +66,128,130,97,129,98 +66,128,130,97,129,98 +66,130,68,98,99,67 +68,130,132,99,131,100 +68,130,132,99,131,100 +68,132,70,100,101,69 +70,132,134,101,133,102 +70,132,134,101,133,102 +70,134,72,102,103,71 +72,134,136,103,135,104 +72,134,136,103,135,104 +72,136,74,104,105,73 +74,136,138,105,137,106 +74,136,138,105,137,106 +74,138,76,106,107,75 +76,138,140,107,139,108 +76,138,140,107,139,108 +76,140,78,108,109,77 +78,140,142,109,141,110 +78,140,142,109,141,110 +78,142,80,110,111,79 +80,142,144,111,143,112 +80,142,144,111,143,112 +80,144,82,112,113,81 +82,144,146,113,145,114 +82,144,146,113,145,114 +82,146,84,114,115,83 +84,146,148,115,147,116 +84,146,148,115,147,116 +84,148,86,116,117,85 +86,148,150,117,149,118 +86,148,150,117,149,118 +86,150,88,118,119,87 +88,150,152,119,151,120 +88,150,152,119,151,120 +88,152,90,120,121,89 +90,152,154,121,153,122 +90,152,154,121,153,122 +90,154,92,122,123,91 +124,186,188,155,187,156 +124,186,188,155,187,156 +124,188,126,156,157,125 +126,188,190,157,189,158 +126,188,190,157,189,158 +126,190,128,158,159,127 +128,190,192,159,191,160 +128,190,192,159,191,160 +128,192,130,160,161,129 +130,192,194,161,193,162 +130,192,194,161,193,162 +130,194,132,162,163,131 +132,194,196,163,195,164 +132,194,196,163,195,164 +132,196,134,164,165,133 +134,196,198,165,197,166 +134,196,198,165,197,166 +134,198,136,166,167,135 +136,198,200,167,199,168 +136,198,200,167,199,168 +136,200,138,168,169,137 +138,200,202,169,201,170 +138,200,202,169,201,170 +138,202,140,170,171,139 +140,202,204,171,203,172 +140,202,204,171,203,172 +140,204,142,172,173,141 +142,204,206,173,205,174 +142,204,206,173,205,174 +142,206,144,174,175,143 +144,206,208,175,207,176 +144,206,208,175,207,176 +144,208,146,176,177,145 +146,208,210,177,209,178 +146,208,210,177,209,178 +146,210,148,178,179,147 +148,210,212,179,211,180 +148,210,212,179,211,180 +148,212,150,180,181,149 +150,212,214,181,213,182 +150,212,214,181,213,182 +150,214,152,182,183,151 +152,214,216,183,215,184 +152,214,216,183,215,184 +152,216,154,184,185,153 +186,248,250,217,249,218 +186,248,250,217,249,218 +186,250,188,218,219,187 +188,250,252,219,251,220 +188,250,252,219,251,220 +188,252,190,220,221,189 +190,252,254,221,253,222 +190,252,254,221,253,222 +190,254,192,222,223,191 +192,254,256,223,255,224 +192,254,256,223,255,224 +192,256,194,224,225,193 +194,256,258,225,257,226 +194,256,258,225,257,226 +194,258,196,226,227,195 +196,258,260,227,259,228 +196,258,260,227,259,228 +196,260,198,228,229,197 +198,260,262,229,261,230 +198,260,262,229,261,230 +198,262,200,230,231,199 +200,262,264,231,263,232 +200,262,264,231,263,232 +200,264,202,232,233,201 +202,264,266,233,265,234 +202,264,266,233,265,234 +202,266,204,234,235,203 +204,266,268,235,267,236 +204,266,268,235,267,236 +204,268,206,236,237,205 +206,268,270,237,269,238 +206,268,270,237,269,238 +206,270,208,238,239,207 +208,270,272,239,271,240 +208,270,272,239,271,240 +208,272,210,240,241,209 +210,272,274,241,273,242 +210,272,274,241,273,242 +210,274,212,242,243,211 +212,274,276,243,275,244 +212,274,276,243,275,244 +212,276,214,244,245,213 +214,276,278,245,277,246 +214,276,278,245,277,246 +214,278,216,246,247,215 +248,310,312,279,311,280 +248,310,312,279,311,280 +248,312,250,280,281,249 +250,312,314,281,313,282 +250,312,314,281,313,282 +250,314,252,282,283,251 +252,314,316,283,315,284 +252,314,316,283,315,284 +252,316,254,284,285,253 +254,316,318,285,317,286 +254,316,318,285,317,286 +254,318,256,286,287,255 +256,318,320,287,319,288 +256,318,320,287,319,288 +256,320,258,288,289,257 +258,320,322,289,321,290 +258,320,322,289,321,290 +258,322,260,290,291,259 +260,322,324,291,323,292 +260,322,324,291,323,292 +260,324,262,292,293,261 +262,324,326,293,325,294 +262,324,326,293,325,294 +262,326,264,294,295,263 +264,326,328,295,327,296 +264,326,328,295,327,296 +264,328,266,296,297,265 +266,328,330,297,329,298 +266,328,330,297,329,298 +266,330,268,298,299,267 +268,330,332,299,331,300 +268,330,332,299,331,300 +268,332,270,300,301,269 +270,332,334,301,333,302 +270,332,334,301,333,302 +270,334,272,302,303,271 +272,334,336,303,335,304 +272,334,336,303,335,304 +272,336,274,304,305,273 +274,336,338,305,337,306 +274,336,338,305,337,306 +274,338,276,306,307,275 +276,338,340,307,339,308 +276,338,340,307,339,308 +276,340,278,308,309,277 +310,372,374,341,373,342 +310,372,374,341,373,342 +310,374,312,342,343,311 +312,374,376,343,375,344 +312,374,376,343,375,344 +312,376,314,344,345,313 +314,376,378,345,377,346 +314,376,378,345,377,346 +314,378,316,346,347,315 +316,378,380,347,379,348 +316,378,380,347,379,348 +316,380,318,348,349,317 +318,380,382,349,381,350 +318,380,382,349,381,350 +318,382,320,350,351,319 +320,382,384,351,383,352 +320,382,384,351,383,352 +320,384,322,352,353,321 +322,384,386,353,385,354 +322,384,386,353,385,354 +322,386,324,354,355,323 +324,386,388,355,387,356 +324,386,388,355,387,356 +324,388,326,356,357,325 +326,388,390,357,389,358 +326,388,390,357,389,358 +326,390,328,358,359,327 +328,390,392,359,391,360 +328,390,392,359,391,360 +328,392,330,360,361,329 +330,392,394,361,393,362 +330,392,394,361,393,362 +330,394,332,362,363,331 +332,394,396,363,395,364 +332,394,396,363,395,364 +332,396,334,364,365,333 +334,396,398,365,397,366 +334,396,398,365,397,366 +334,398,336,366,367,335 +336,398,400,367,399,368 +336,398,400,367,399,368 +336,400,338,368,369,337 +338,400,402,369,401,370 +338,400,402,369,401,370 +338,402,340,370,371,339 +372,434,436,403,435,404 +372,434,436,403,435,404 +372,436,374,404,405,373 +374,436,438,405,437,406 +374,436,438,405,437,406 +374,438,376,406,407,375 +376,438,440,407,439,408 +376,438,440,407,439,408 +376,440,378,408,409,377 +378,440,442,409,441,410 +378,440,442,409,441,410 +378,442,380,410,411,379 +380,442,444,411,443,412 +380,442,444,411,443,412 +380,444,382,412,413,381 +382,444,446,413,445,414 +382,444,446,413,445,414 +382,446,384,414,415,383 +384,446,448,415,447,416 +384,446,448,415,447,416 +384,448,386,416,417,385 +386,448,450,417,449,418 +386,448,450,417,449,418 +386,450,388,418,419,387 +388,450,452,419,451,420 +388,450,452,419,451,420 +388,452,390,420,421,389 +390,452,454,421,453,422 +390,452,454,421,453,422 +390,454,392,422,423,391 +392,454,456,423,455,424 +392,454,456,423,455,424 +392,456,394,424,425,393 +394,456,458,425,457,426 +394,456,458,425,457,426 +394,458,396,426,427,395 +396,458,460,427,459,428 +396,458,460,427,459,428 +396,460,398,428,429,397 +398,460,462,429,461,430 +398,460,462,429,461,430 +398,462,400,430,431,399 +400,462,464,431,463,432 +400,462,464,431,463,432 +400,464,402,432,433,401 +434,496,498,465,497,466 +434,496,498,465,497,466 +434,498,436,466,467,435 +436,498,500,467,499,468 +436,498,500,467,499,468 +436,500,438,468,469,437 +438,500,502,469,501,470 +438,500,502,469,501,470 +438,502,440,470,471,439 +440,502,504,471,503,472 +440,502,504,471,503,472 +440,504,442,472,473,441 +442,504,506,473,505,474 +442,504,506,473,505,474 +442,506,444,474,475,443 +444,506,508,475,507,476 +444,506,508,475,507,476 +444,508,446,476,477,445 +446,508,510,477,509,478 +446,508,510,477,509,478 +446,510,448,478,479,447 +448,510,512,479,511,480 +448,510,512,479,511,480 +448,512,450,480,481,449 +450,512,514,481,513,482 +450,512,514,481,513,482 +450,514,452,482,483,451 +452,514,516,483,515,484 +452,514,516,483,515,484 +452,516,454,484,485,453 +454,516,518,485,517,486 +454,516,518,485,517,486 +454,518,456,486,487,455 +456,518,520,487,519,488 +456,518,520,487,519,488 +456,520,458,488,489,457 +458,520,522,489,521,490 +458,520,522,489,521,490 +458,522,460,490,491,459 +460,522,524,491,523,492 +460,522,524,491,523,492 +460,524,462,492,493,461 +462,524,526,493,525,494 +462,524,526,493,525,494 +462,526,464,494,495,463 +496,558,560,527,559,528 +496,558,560,527,559,528 +496,560,498,528,529,497 +498,560,562,529,561,530 +498,560,562,529,561,530 +498,562,500,530,531,499 +500,562,564,531,563,532 +500,562,564,531,563,532 +500,564,502,532,533,501 +502,564,566,533,565,534 +502,564,566,533,565,534 +502,566,504,534,535,503 +504,566,568,535,567,536 +504,566,568,535,567,536 +504,568,506,536,537,505 +506,568,570,537,569,538 +506,568,570,537,569,538 +506,570,508,538,539,507 +508,570,572,539,571,540 +508,570,572,539,571,540 +508,572,510,540,541,509 +510,572,574,541,573,542 +510,572,574,541,573,542 +510,574,512,542,543,511 +512,574,576,543,575,544 +512,574,576,543,575,544 +512,576,514,544,545,513 +514,576,578,545,577,546 +514,576,578,545,577,546 +514,578,516,546,547,515 +516,578,580,547,579,548 +516,578,580,547,579,548 +516,580,518,548,549,517 +518,580,582,549,581,550 +518,580,582,549,581,550 +518,582,520,550,551,519 +520,582,584,551,583,552 +520,582,584,551,583,552 +520,584,522,552,553,521 +522,584,586,553,585,554 +522,584,586,553,585,554 +522,586,524,554,555,523 +524,586,588,555,587,556 +524,586,588,555,587,556 +524,588,526,556,557,525 +558,620,622,589,621,590 +558,620,622,589,621,590 +558,622,560,590,591,559 +560,622,624,591,623,592 +560,622,624,591,623,592 +560,624,562,592,593,561 +562,624,626,593,625,594 +562,624,626,593,625,594 +562,626,564,594,595,563 +564,626,628,595,627,596 +564,626,628,595,627,596 +564,628,566,596,597,565 +566,628,630,597,629,598 +566,628,630,597,629,598 +566,630,568,598,599,567 +568,630,632,599,631,600 +568,630,632,599,631,600 +568,632,570,600,601,569 +570,632,634,601,633,602 +570,632,634,601,633,602 +570,634,572,602,603,571 +572,634,636,603,635,604 +572,634,636,603,635,604 +572,636,574,604,605,573 +574,636,638,605,637,606 +574,636,638,605,637,606 +574,638,576,606,607,575 +576,638,640,607,639,608 +576,638,640,607,639,608 +576,640,578,608,609,577 +578,640,642,609,641,610 +578,640,642,609,641,610 +578,642,580,610,611,579 +580,642,644,611,643,612 +580,642,644,611,643,612 +580,644,582,612,613,581 +582,644,646,613,645,614 +582,644,646,613,645,614 +582,646,584,614,615,583 +584,646,648,615,647,616 +584,646,648,615,647,616 +584,648,586,616,617,585 +586,648,650,617,649,618 +586,648,650,617,649,618 +586,650,588,618,619,587 +620,682,684,651,683,652 +620,682,684,651,683,652 +620,684,622,652,653,621 +622,684,686,653,685,654 +622,684,686,653,685,654 +622,686,624,654,655,623 +624,686,688,655,687,656 +624,686,688,655,687,656 +624,688,626,656,657,625 +626,688,690,657,689,658 +626,688,690,657,689,658 +626,690,628,658,659,627 +628,690,692,659,691,660 +628,690,692,659,691,660 +628,692,630,660,661,629 +630,692,694,661,693,662 +630,692,694,661,693,662 +630,694,632,662,663,631 +632,694,696,663,695,664 +632,694,696,663,695,664 +632,696,634,664,665,633 +634,696,698,665,697,666 +634,696,698,665,697,666 +634,698,636,666,667,635 +636,698,700,667,699,668 +636,698,700,667,699,668 +636,700,638,668,669,637 +638,700,702,669,701,670 +638,700,702,669,701,670 +638,702,640,670,671,639 +640,702,704,671,703,672 +640,702,704,671,703,672 +640,704,642,672,673,641 +642,704,706,673,705,674 +642,704,706,673,705,674 +642,706,644,674,675,643 +644,706,708,675,707,676 +644,706,708,675,707,676 +644,708,646,676,677,645 +646,708,710,677,709,678 +646,708,710,677,709,678 +646,710,648,678,679,647 +648,710,712,679,711,680 +648,710,712,679,711,680 +648,712,650,680,681,649 +682,744,746,713,745,714 +682,744,746,713,745,714 +682,746,684,714,715,683 +684,746,748,715,747,716 +684,746,748,715,747,716 +684,748,686,716,717,685 +686,748,750,717,749,718 +686,748,750,717,749,718 +686,750,688,718,719,687 +688,750,752,719,751,720 +688,750,752,719,751,720 +688,752,690,720,721,689 +690,752,754,721,753,722 +690,752,754,721,753,722 +690,754,692,722,723,691 +692,754,756,723,755,724 +692,754,756,723,755,724 +692,756,694,724,725,693 +694,756,758,725,757,726 +694,756,758,725,757,726 +694,758,696,726,727,695 +696,758,760,727,759,728 +696,758,760,727,759,728 +696,760,698,728,729,697 +698,760,762,729,761,730 +698,760,762,729,761,730 +698,762,700,730,731,699 +700,762,764,731,763,732 +700,762,764,731,763,732 +700,764,702,732,733,701 +702,764,766,733,765,734 +702,764,766,733,765,734 +702,766,704,734,735,703 +704,766,768,735,767,736 +704,766,768,735,767,736 +704,768,706,736,737,705 +706,768,770,737,769,738 +706,768,770,737,769,738 +706,770,708,738,739,707 +708,770,772,739,771,740 +708,770,772,739,771,740 +708,772,710,740,741,709 +710,772,774,741,773,742 +710,772,774,741,773,742 +710,774,712,742,743,711 +744,806,808,775,807,776 +744,806,808,775,807,776 +744,808,746,776,777,745 +746,808,810,777,809,778 +746,808,810,777,809,778 +746,810,748,778,779,747 +748,810,812,779,811,780 +748,810,812,779,811,780 +748,812,750,780,781,749 +750,812,814,781,813,782 +750,812,814,781,813,782 +750,814,752,782,783,751 +752,814,816,783,815,784 +752,814,816,783,815,784 +752,816,754,784,785,753 +754,816,818,785,817,786 +754,816,818,785,817,786 +754,818,756,786,787,755 +756,818,820,787,819,788 +756,818,820,787,819,788 +756,820,758,788,789,757 +758,820,822,789,821,790 +758,820,822,789,821,790 +758,822,760,790,791,759 +760,822,824,791,823,792 +760,822,824,791,823,792 +760,824,762,792,793,761 +762,824,826,793,825,794 +762,824,826,793,825,794 +762,826,764,794,795,763 +764,826,828,795,827,796 +764,826,828,795,827,796 +764,828,766,796,797,765 +766,828,830,797,829,798 +766,828,830,797,829,798 +766,830,768,798,799,767 +768,830,832,799,831,800 +768,830,832,799,831,800 +768,832,770,800,801,769 +770,832,834,801,833,802 +770,832,834,801,833,802 +770,834,772,802,803,771 +772,834,836,803,835,804 +772,834,836,803,835,804 +772,836,774,804,805,773 +806,868,870,837,869,838 +806,868,870,837,869,838 +806,870,808,838,839,807 +808,870,872,839,871,840 +808,870,872,839,871,840 +808,872,810,840,841,809 +810,872,874,841,873,842 +810,872,874,841,873,842 +810,874,812,842,843,811 +812,874,876,843,875,844 +812,874,876,843,875,844 +812,876,814,844,845,813 +814,876,878,845,877,846 +814,876,878,845,877,846 +814,878,816,846,847,815 +816,878,880,847,879,848 +816,878,880,847,879,848 +816,880,818,848,849,817 +818,880,882,849,881,850 +818,880,882,849,881,850 +818,882,820,850,851,819 +820,882,884,851,883,852 +820,882,884,851,883,852 +820,884,822,852,853,821 +822,884,886,853,885,854 +822,884,886,853,885,854 +822,886,824,854,855,823 +824,886,888,855,887,856 +824,886,888,855,887,856 +824,888,826,856,857,825 +826,888,890,857,889,858 +826,888,890,857,889,858 +826,890,828,858,859,827 +828,890,892,859,891,860 +828,890,892,859,891,860 +828,892,830,860,861,829 +830,892,894,861,893,862 +830,892,894,861,893,862 +830,894,832,862,863,831 +832,894,896,863,895,864 +832,894,896,863,895,864 +832,896,834,864,865,833 +834,896,898,865,897,866 +834,896,898,865,897,866 +834,898,836,866,867,835 +868,930,932,899,931,900 +868,930,932,899,931,900 +868,932,870,900,901,869 +870,932,934,901,933,902 +870,932,934,901,933,902 +870,934,872,902,903,871 +872,934,936,903,935,904 +872,934,936,903,935,904 +872,936,874,904,905,873 +874,936,938,905,937,906 +874,936,938,905,937,906 +874,938,876,906,907,875 +876,938,940,907,939,908 +876,938,940,907,939,908 +876,940,878,908,909,877 +878,940,942,909,941,910 +878,940,942,909,941,910 +878,942,880,910,911,879 +880,942,944,911,943,912 +880,942,944,911,943,912 +880,944,882,912,913,881 +882,944,946,913,945,914 +882,944,946,913,945,914 +882,946,884,914,915,883 +884,946,948,915,947,916 +884,946,948,915,947,916 +884,948,886,916,917,885 +886,948,950,917,949,918 +886,948,950,917,949,918 +886,950,888,918,919,887 +888,950,952,919,951,920 +888,950,952,919,951,920 +888,952,890,920,921,889 +890,952,954,921,953,922 +890,952,954,921,953,922 +890,954,892,922,923,891 +892,954,956,923,955,924 +892,954,956,923,955,924 +892,956,894,924,925,893 +894,956,958,925,957,926 +894,956,958,925,957,926 +894,958,896,926,927,895 +896,958,960,927,959,928 +896,958,960,927,959,928 +896,960,898,928,929,897 diff --git a/src/pyvale/data/render/riley/min/tri6_sphere200/coords.csv b/src/pyvale/data/render/riley/min/tri6_sphere200/coords.csv new file mode 100644 index 000000000..1ffa2c2fc --- /dev/null +++ b/src/pyvale/data/render/riley/min/tri6_sphere200/coords.csv @@ -0,0 +1,961 @@ +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +-0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,-0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.0000000000,0.0000000000,6.0000000000 +-0.1045284633,-0.0000000000,5.9945218954 +-0.1022442656,-0.0217326895,5.9945218954 +-0.0954915028,-0.0425155563,5.9945218954 +-0.0845653032,-0.0614402892,5.9945218954 +-0.0699431940,-0.0776797866,5.9945218954 +-0.0522642316,-0.0905243046,5.9945218954 +-0.0323010715,-0.0994124761,5.9945218954 +-0.0109261996,-0.1039558454,5.9945218954 +0.0109261996,-0.1039558454,5.9945218954 +0.0323010715,-0.0994124761,5.9945218954 +0.0522642316,-0.0905243046,5.9945218954 +0.0699431940,-0.0776797866,5.9945218954 +0.0845653032,-0.0614402892,5.9945218954 +0.0954915028,-0.0425155563,5.9945218954 +0.1022442656,-0.0217326895,5.9945218954 +0.1045284633,0.0000000000,5.9945218954 +0.1022442656,0.0217326895,5.9945218954 +0.0954915028,0.0425155563,5.9945218954 +0.0845653032,0.0614402892,5.9945218954 +0.0699431940,0.0776797866,5.9945218954 +0.0522642316,0.0905243046,5.9945218954 +0.0323010715,0.0994124761,5.9945218954 +0.0109261996,0.1039558454,5.9945218954 +-0.0109261996,0.1039558454,5.9945218954 +-0.0323010715,0.0994124761,5.9945218954 +-0.0522642316,0.0905243046,5.9945218954 +-0.0699431940,0.0776797866,5.9945218954 +-0.0845653032,0.0614402892,5.9945218954 +-0.0954915028,0.0425155563,5.9945218954 +-0.1022442656,0.0217326895,5.9945218954 +-0.1045284633,0.0000000000,5.9945218954 +-0.2079116908,-0.0000000000,5.9781476007 +-0.2033683215,-0.0432272712,5.9781476007 +-0.1899367807,-0.0845653032,5.9781476007 +-0.1682040912,-0.1222074256,5.9781476007 +-0.1391200757,-0.1545084972,5.9781476007 +-0.1039558454,-0.1800568060,5.9781476007 +-0.0642482458,-0.1977357684,5.9781476007 +-0.0217326895,-0.2067727288,5.9781476007 +0.0217326895,-0.2067727288,5.9781476007 +0.0642482458,-0.1977357684,5.9781476007 +0.1039558454,-0.1800568060,5.9781476007 +0.1391200757,-0.1545084972,5.9781476007 +0.1682040912,-0.1222074256,5.9781476007 +0.1899367807,-0.0845653032,5.9781476007 +0.2033683215,-0.0432272712,5.9781476007 +0.2079116908,0.0000000000,5.9781476007 +0.2033683215,0.0432272712,5.9781476007 +0.1899367807,0.0845653032,5.9781476007 +0.1682040912,0.1222074256,5.9781476007 +0.1391200757,0.1545084972,5.9781476007 +0.1039558454,0.1800568060,5.9781476007 +0.0642482458,0.1977357684,5.9781476007 +0.0217326895,0.2067727288,5.9781476007 +-0.0217326895,0.2067727288,5.9781476007 +-0.0642482458,0.1977357684,5.9781476007 +-0.1039558454,0.1800568060,5.9781476007 +-0.1391200757,0.1545084972,5.9781476007 +-0.1682040912,0.1222074256,5.9781476007 +-0.1899367807,0.0845653032,5.9781476007 +-0.2033683215,0.0432272712,5.9781476007 +-0.2079116908,0.0000000000,5.9781476007 +-0.3090169944,-0.0000000000,5.9510565163 +-0.3022642316,-0.0642482458,5.9510565163 +-0.2823010715,-0.1256885349,5.9510565163 +-0.2500000000,-0.1816356320,5.9510565163 +-0.2067727288,-0.2296443804,5.9510565163 +-0.1545084972,-0.2676165673,5.9510565163 +-0.0954915028,-0.2938926261,5.9510565163 +-0.0323010715,-0.3073241669,5.9510565163 +0.0323010715,-0.3073241669,5.9510565163 +0.0954915028,-0.2938926261,5.9510565163 +0.1545084972,-0.2676165673,5.9510565163 +0.2067727288,-0.2296443804,5.9510565163 +0.2500000000,-0.1816356320,5.9510565163 +0.2823010715,-0.1256885349,5.9510565163 +0.3022642316,-0.0642482458,5.9510565163 +0.3090169944,0.0000000000,5.9510565163 +0.3022642316,0.0642482458,5.9510565163 +0.2823010715,0.1256885349,5.9510565163 +0.2500000000,0.1816356320,5.9510565163 +0.2067727288,0.2296443804,5.9510565163 +0.1545084972,0.2676165673,5.9510565163 +0.0954915028,0.2938926261,5.9510565163 +0.0323010715,0.3073241669,5.9510565163 +-0.0323010715,0.3073241669,5.9510565163 +-0.0954915028,0.2938926261,5.9510565163 +-0.1545084972,0.2676165673,5.9510565163 +-0.2067727288,0.2296443804,5.9510565163 +-0.2500000000,0.1816356320,5.9510565163 +-0.2823010715,0.1256885349,5.9510565163 +-0.3022642316,0.0642482458,5.9510565163 +-0.3090169944,0.0000000000,5.9510565163 +-0.4067366431,-0.0000000000,5.9135454576 +-0.3978484716,-0.0845653032,5.9135454576 +-0.3715724127,-0.1654346968,5.9135454576 +-0.3290568565,-0.2390738004,5.9135454576 +-0.2721599366,-0.3022642316,5.9135454576 +-0.2033683215,-0.3522442656,5.9135454576 +-0.1256885349,-0.3868295348,5.9135454576 +-0.0425155563,-0.4045084972,5.9135454576 +0.0425155563,-0.4045084972,5.9135454576 +0.1256885349,-0.3868295348,5.9135454576 +0.2033683215,-0.3522442656,5.9135454576 +0.2721599366,-0.3022642316,5.9135454576 +0.3290568565,-0.2390738004,5.9135454576 +0.3715724127,-0.1654346968,5.9135454576 +0.3978484716,-0.0845653032,5.9135454576 +0.4067366431,0.0000000000,5.9135454576 +0.3978484716,0.0845653032,5.9135454576 +0.3715724127,0.1654346968,5.9135454576 +0.3290568565,0.2390738004,5.9135454576 +0.2721599366,0.3022642316,5.9135454576 +0.2033683215,0.3522442656,5.9135454576 +0.1256885349,0.3868295348,5.9135454576 +0.0425155563,0.4045084972,5.9135454576 +-0.0425155563,0.4045084972,5.9135454576 +-0.1256885349,0.3868295348,5.9135454576 +-0.2033683215,0.3522442656,5.9135454576 +-0.2721599366,0.3022642316,5.9135454576 +-0.3290568565,0.2390738004,5.9135454576 +-0.3715724127,0.1654346968,5.9135454576 +-0.3978484716,0.0845653032,5.9135454576 +-0.4067366431,0.0000000000,5.9135454576 +-0.5000000000,-0.0000000000,5.8660254038 +-0.4890738004,-0.1039558454,5.8660254038 +-0.4567727288,-0.2033683215,5.8660254038 +-0.4045084972,-0.2938926261,5.8660254038 +-0.3345653032,-0.3715724127,5.8660254038 +-0.2500000000,-0.4330127019,5.8660254038 +-0.1545084972,-0.4755282581,5.8660254038 +-0.0522642316,-0.4972609477,5.8660254038 +0.0522642316,-0.4972609477,5.8660254038 +0.1545084972,-0.4755282581,5.8660254038 +0.2500000000,-0.4330127019,5.8660254038 +0.3345653032,-0.3715724127,5.8660254038 +0.4045084972,-0.2938926261,5.8660254038 +0.4567727288,-0.2033683215,5.8660254038 +0.4890738004,-0.1039558454,5.8660254038 +0.5000000000,0.0000000000,5.8660254038 +0.4890738004,0.1039558454,5.8660254038 +0.4567727288,0.2033683215,5.8660254038 +0.4045084972,0.2938926261,5.8660254038 +0.3345653032,0.3715724127,5.8660254038 +0.2500000000,0.4330127019,5.8660254038 +0.1545084972,0.4755282581,5.8660254038 +0.0522642316,0.4972609477,5.8660254038 +-0.0522642316,0.4972609477,5.8660254038 +-0.1545084972,0.4755282581,5.8660254038 +-0.2500000000,0.4330127019,5.8660254038 +-0.3345653032,0.3715724127,5.8660254038 +-0.4045084972,0.2938926261,5.8660254038 +-0.4567727288,0.2033683215,5.8660254038 +-0.4890738004,0.1039558454,5.8660254038 +-0.5000000000,0.0000000000,5.8660254038 +-0.5877852523,-0.0000000000,5.8090169944 +-0.5749407343,-0.1222074256,5.8090169944 +-0.5369685473,-0.2390738004,5.8090169944 +-0.4755282581,-0.3454915028,5.8090169944 +-0.3933051023,-0.4368095687,5.8090169944 +-0.2938926261,-0.5090369605,5.8090169944 +-0.1816356320,-0.5590169944,5.8090169944 +-0.0614402892,-0.5845653032,5.8090169944 +0.0614402892,-0.5845653032,5.8090169944 +0.1816356320,-0.5590169944,5.8090169944 +0.2938926261,-0.5090369605,5.8090169944 +0.3933051023,-0.4368095687,5.8090169944 +0.4755282581,-0.3454915028,5.8090169944 +0.5369685473,-0.2390738004,5.8090169944 +0.5749407343,-0.1222074256,5.8090169944 +0.5877852523,0.0000000000,5.8090169944 +0.5749407343,0.1222074256,5.8090169944 +0.5369685473,0.2390738004,5.8090169944 +0.4755282581,0.3454915028,5.8090169944 +0.3933051023,0.4368095687,5.8090169944 +0.2938926261,0.5090369605,5.8090169944 +0.1816356320,0.5590169944,5.8090169944 +0.0614402892,0.5845653032,5.8090169944 +-0.0614402892,0.5845653032,5.8090169944 +-0.1816356320,0.5590169944,5.8090169944 +-0.2938926261,0.5090369605,5.8090169944 +-0.3933051023,0.4368095687,5.8090169944 +-0.4755282581,0.3454915028,5.8090169944 +-0.5369685473,0.2390738004,5.8090169944 +-0.5749407343,0.1222074256,5.8090169944 +-0.5877852523,0.0000000000,5.8090169944 +-0.6691306064,-0.0000000000,5.7431448255 +-0.6545084972,-0.1391200757,5.7431448255 +-0.6112812260,-0.2721599366,5.7431448255 +-0.5413380320,-0.3933051023,5.7431448255 +-0.4477357684,-0.4972609477,5.7431448255 +-0.3345653032,-0.5794841036,5.7431448255 +-0.2067727288,-0.6363810234,5.7431448255 +-0.0699431940,-0.6654650389,5.7431448255 +0.0699431940,-0.6654650389,5.7431448255 +0.2067727288,-0.6363810234,5.7431448255 +0.3345653032,-0.5794841036,5.7431448255 +0.4477357684,-0.4972609477,5.7431448255 +0.5413380320,-0.3933051023,5.7431448255 +0.6112812260,-0.2721599366,5.7431448255 +0.6545084972,-0.1391200757,5.7431448255 +0.6691306064,0.0000000000,5.7431448255 +0.6545084972,0.1391200757,5.7431448255 +0.6112812260,0.2721599366,5.7431448255 +0.5413380320,0.3933051023,5.7431448255 +0.4477357684,0.4972609477,5.7431448255 +0.3345653032,0.5794841036,5.7431448255 +0.2067727288,0.6363810234,5.7431448255 +0.0699431940,0.6654650389,5.7431448255 +-0.0699431940,0.6654650389,5.7431448255 +-0.2067727288,0.6363810234,5.7431448255 +-0.3345653032,0.5794841036,5.7431448255 +-0.4477357684,0.4972609477,5.7431448255 +-0.5413380320,0.3933051023,5.7431448255 +-0.6112812260,0.2721599366,5.7431448255 +-0.6545084972,0.1391200757,5.7431448255 +-0.6691306064,0.0000000000,5.7431448255 +-0.7431448255,-0.0000000000,5.6691306064 +-0.7269053280,-0.1545084972,5.6691306064 +-0.6788965797,-0.3022642316,5.6691306064 +-0.6012167931,-0.4368095687,5.6691306064 +-0.4972609477,-0.5522642316,5.6691306064 +-0.3715724127,-0.6435822976,5.6691306064 +-0.2296443804,-0.7067727288,5.6691306064 +-0.0776797866,-0.7390738004,5.6691306064 +0.0776797866,-0.7390738004,5.6691306064 +0.2296443804,-0.7067727288,5.6691306064 +0.3715724127,-0.6435822976,5.6691306064 +0.4972609477,-0.5522642316,5.6691306064 +0.6012167931,-0.4368095687,5.6691306064 +0.6788965797,-0.3022642316,5.6691306064 +0.7269053280,-0.1545084972,5.6691306064 +0.7431448255,0.0000000000,5.6691306064 +0.7269053280,0.1545084972,5.6691306064 +0.6788965797,0.3022642316,5.6691306064 +0.6012167931,0.4368095687,5.6691306064 +0.4972609477,0.5522642316,5.6691306064 +0.3715724127,0.6435822976,5.6691306064 +0.2296443804,0.7067727288,5.6691306064 +0.0776797866,0.7390738004,5.6691306064 +-0.0776797866,0.7390738004,5.6691306064 +-0.2296443804,0.7067727288,5.6691306064 +-0.3715724127,0.6435822976,5.6691306064 +-0.4972609477,0.5522642316,5.6691306064 +-0.6012167931,0.4368095687,5.6691306064 +-0.6788965797,0.3022642316,5.6691306064 +-0.7269053280,0.1545084972,5.6691306064 +-0.7431448255,0.0000000000,5.6691306064 +-0.8090169944,-0.0000000000,5.5877852523 +-0.7913380320,-0.1682040912,5.5877852523 +-0.7390738004,-0.3290568565,5.5877852523 +-0.6545084972,-0.4755282581,5.5877852523 +-0.5413380320,-0.6012167931,5.5877852523 +-0.4045084972,-0.7006292692,5.5877852523 +-0.2500000000,-0.7694208843,5.5877852523 +-0.0845653032,-0.8045851146,5.5877852523 +0.0845653032,-0.8045851146,5.5877852523 +0.2500000000,-0.7694208843,5.5877852523 +0.4045084972,-0.7006292692,5.5877852523 +0.5413380320,-0.6012167931,5.5877852523 +0.6545084972,-0.4755282581,5.5877852523 +0.7390738004,-0.3290568565,5.5877852523 +0.7913380320,-0.1682040912,5.5877852523 +0.8090169944,0.0000000000,5.5877852523 +0.7913380320,0.1682040912,5.5877852523 +0.7390738004,0.3290568565,5.5877852523 +0.6545084972,0.4755282581,5.5877852523 +0.5413380320,0.6012167931,5.5877852523 +0.4045084972,0.7006292692,5.5877852523 +0.2500000000,0.7694208843,5.5877852523 +0.0845653032,0.8045851146,5.5877852523 +-0.0845653032,0.8045851146,5.5877852523 +-0.2500000000,0.7694208843,5.5877852523 +-0.4045084972,0.7006292692,5.5877852523 +-0.5413380320,0.6012167931,5.5877852523 +-0.6545084972,0.4755282581,5.5877852523 +-0.7390738004,0.3290568565,5.5877852523 +-0.7913380320,0.1682040912,5.5877852523 +-0.8090169944,0.0000000000,5.5877852523 +-0.8660254038,-0.0000000000,5.5000000000 +-0.8471006709,-0.1800568060,5.5000000000 +-0.7911535738,-0.3522442656,5.5000000000 +-0.7006292692,-0.5090369605,5.5000000000 +-0.5794841036,-0.6435822976,5.5000000000 +-0.4330127019,-0.7500000000,5.5000000000 +-0.2676165673,-0.8236391035,5.5000000000 +-0.0905243046,-0.8612812260,5.5000000000 +0.0905243046,-0.8612812260,5.5000000000 +0.2676165673,-0.8236391035,5.5000000000 +0.4330127019,-0.7500000000,5.5000000000 +0.5794841036,-0.6435822976,5.5000000000 +0.7006292692,-0.5090369605,5.5000000000 +0.7911535738,-0.3522442656,5.5000000000 +0.8471006709,-0.1800568060,5.5000000000 +0.8660254038,0.0000000000,5.5000000000 +0.8471006709,0.1800568060,5.5000000000 +0.7911535738,0.3522442656,5.5000000000 +0.7006292692,0.5090369605,5.5000000000 +0.5794841036,0.6435822976,5.5000000000 +0.4330127019,0.7500000000,5.5000000000 +0.2676165673,0.8236391035,5.5000000000 +0.0905243046,0.8612812260,5.5000000000 +-0.0905243046,0.8612812260,5.5000000000 +-0.2676165673,0.8236391035,5.5000000000 +-0.4330127019,0.7500000000,5.5000000000 +-0.5794841036,0.6435822976,5.5000000000 +-0.7006292692,0.5090369605,5.5000000000 +-0.7911535738,0.3522442656,5.5000000000 +-0.8471006709,0.1800568060,5.5000000000 +-0.8660254038,0.0000000000,5.5000000000 +-0.9135454576,-0.0000000000,5.4067366431 +-0.8935822976,-0.1899367807,5.4067366431 +-0.8345653032,-0.3715724127,5.4067366431 +-0.7390738004,-0.5369685473,5.4067366431 +-0.6112812260,-0.6788965797,5.4067366431 +-0.4567727288,-0.7911535738,5.4067366431 +-0.2823010715,-0.8688333604,5.4067366431 +-0.0954915028,-0.9085409600,5.4067366431 +0.0954915028,-0.9085409600,5.4067366431 +0.2823010715,-0.8688333604,5.4067366431 +0.4567727288,-0.7911535738,5.4067366431 +0.6112812260,-0.6788965797,5.4067366431 +0.7390738004,-0.5369685473,5.4067366431 +0.8345653032,-0.3715724127,5.4067366431 +0.8935822976,-0.1899367807,5.4067366431 +0.9135454576,0.0000000000,5.4067366431 +0.8935822976,0.1899367807,5.4067366431 +0.8345653032,0.3715724127,5.4067366431 +0.7390738004,0.5369685473,5.4067366431 +0.6112812260,0.6788965797,5.4067366431 +0.4567727288,0.7911535738,5.4067366431 +0.2823010715,0.8688333604,5.4067366431 +0.0954915028,0.9085409600,5.4067366431 +-0.0954915028,0.9085409600,5.4067366431 +-0.2823010715,0.8688333604,5.4067366431 +-0.4567727288,0.7911535738,5.4067366431 +-0.6112812260,0.6788965797,5.4067366431 +-0.7390738004,0.5369685473,5.4067366431 +-0.8345653032,0.3715724127,5.4067366431 +-0.8935822976,0.1899367807,5.4067366431 +-0.9135454576,0.0000000000,5.4067366431 +-0.9510565163,-0.0000000000,5.3090169944 +-0.9302736496,-0.1977357684,5.3090169944 +-0.8688333604,-0.3868295348,5.3090169944 +-0.7694208843,-0.5590169944,5.3090169944 +-0.6363810234,-0.7067727288,5.3090169944 +-0.4755282581,-0.8236391035,5.3090169944 +-0.2938926261,-0.9045084972,5.3090169944 +-0.0994124761,-0.9458465292,5.3090169944 +0.0994124761,-0.9458465292,5.3090169944 +0.2938926261,-0.9045084972,5.3090169944 +0.4755282581,-0.8236391035,5.3090169944 +0.6363810234,-0.7067727288,5.3090169944 +0.7694208843,-0.5590169944,5.3090169944 +0.8688333604,-0.3868295348,5.3090169944 +0.9302736496,-0.1977357684,5.3090169944 +0.9510565163,0.0000000000,5.3090169944 +0.9302736496,0.1977357684,5.3090169944 +0.8688333604,0.3868295348,5.3090169944 +0.7694208843,0.5590169944,5.3090169944 +0.6363810234,0.7067727288,5.3090169944 +0.4755282581,0.8236391035,5.3090169944 +0.2938926261,0.9045084972,5.3090169944 +0.0994124761,0.9458465292,5.3090169944 +-0.0994124761,0.9458465292,5.3090169944 +-0.2938926261,0.9045084972,5.3090169944 +-0.4755282581,0.8236391035,5.3090169944 +-0.6363810234,0.7067727288,5.3090169944 +-0.7694208843,0.5590169944,5.3090169944 +-0.8688333604,0.3868295348,5.3090169944 +-0.9302736496,0.1977357684,5.3090169944 +-0.9510565163,0.0000000000,5.3090169944 +-0.9781476007,-0.0000000000,5.2079116908 +-0.9567727288,-0.2033683215,5.2079116908 +-0.8935822976,-0.3978484716,5.2079116908 +-0.7913380320,-0.5749407343,5.2079116908 +-0.6545084972,-0.7269053280,5.2079116908 +-0.4890738004,-0.8471006709,5.2079116908 +-0.3022642316,-0.9302736496,5.2079116908 +-0.1022442656,-0.9727892058,5.2079116908 +0.1022442656,-0.9727892058,5.2079116908 +0.3022642316,-0.9302736496,5.2079116908 +0.4890738004,-0.8471006709,5.2079116908 +0.6545084972,-0.7269053280,5.2079116908 +0.7913380320,-0.5749407343,5.2079116908 +0.8935822976,-0.3978484716,5.2079116908 +0.9567727288,-0.2033683215,5.2079116908 +0.9781476007,0.0000000000,5.2079116908 +0.9567727288,0.2033683215,5.2079116908 +0.8935822976,0.3978484716,5.2079116908 +0.7913380320,0.5749407343,5.2079116908 +0.6545084972,0.7269053280,5.2079116908 +0.4890738004,0.8471006709,5.2079116908 +0.3022642316,0.9302736496,5.2079116908 +0.1022442656,0.9727892058,5.2079116908 +-0.1022442656,0.9727892058,5.2079116908 +-0.3022642316,0.9302736496,5.2079116908 +-0.4890738004,0.8471006709,5.2079116908 +-0.6545084972,0.7269053280,5.2079116908 +-0.7913380320,0.5749407343,5.2079116908 +-0.8935822976,0.3978484716,5.2079116908 +-0.9567727288,0.2033683215,5.2079116908 +-0.9781476007,0.0000000000,5.2079116908 +-0.9945218954,-0.0000000000,5.1045284633 +-0.9727892058,-0.2067727288,5.1045284633 +-0.9085409600,-0.4045084972,5.1045284633 +-0.8045851146,-0.5845653032,5.1045284633 +-0.6654650389,-0.7390738004,5.1045284633 +-0.4972609477,-0.8612812260,5.1045284633 +-0.3073241669,-0.9458465292,5.1045284633 +-0.1039558454,-0.9890738004,5.1045284633 +0.1039558454,-0.9890738004,5.1045284633 +0.3073241669,-0.9458465292,5.1045284633 +0.4972609477,-0.8612812260,5.1045284633 +0.6654650389,-0.7390738004,5.1045284633 +0.8045851146,-0.5845653032,5.1045284633 +0.9085409600,-0.4045084972,5.1045284633 +0.9727892058,-0.2067727288,5.1045284633 +0.9945218954,0.0000000000,5.1045284633 +0.9727892058,0.2067727288,5.1045284633 +0.9085409600,0.4045084972,5.1045284633 +0.8045851146,0.5845653032,5.1045284633 +0.6654650389,0.7390738004,5.1045284633 +0.4972609477,0.8612812260,5.1045284633 +0.3073241669,0.9458465292,5.1045284633 +0.1039558454,0.9890738004,5.1045284633 +-0.1039558454,0.9890738004,5.1045284633 +-0.3073241669,0.9458465292,5.1045284633 +-0.4972609477,0.8612812260,5.1045284633 +-0.6654650389,0.7390738004,5.1045284633 +-0.8045851146,0.5845653032,5.1045284633 +-0.9085409600,0.4045084972,5.1045284633 +-0.9727892058,0.2067727288,5.1045284633 +-0.9945218954,0.0000000000,5.1045284633 +-1.0000000000,-0.0000000000,5.0000000000 +-0.9781476007,-0.2079116908,5.0000000000 +-0.9135454576,-0.4067366431,5.0000000000 +-0.8090169944,-0.5877852523,5.0000000000 +-0.6691306064,-0.7431448255,5.0000000000 +-0.5000000000,-0.8660254038,5.0000000000 +-0.3090169944,-0.9510565163,5.0000000000 +-0.1045284633,-0.9945218954,5.0000000000 +0.1045284633,-0.9945218954,5.0000000000 +0.3090169944,-0.9510565163,5.0000000000 +0.5000000000,-0.8660254038,5.0000000000 +0.6691306064,-0.7431448255,5.0000000000 +0.8090169944,-0.5877852523,5.0000000000 +0.9135454576,-0.4067366431,5.0000000000 +0.9781476007,-0.2079116908,5.0000000000 +1.0000000000,0.0000000000,5.0000000000 +0.9781476007,0.2079116908,5.0000000000 +0.9135454576,0.4067366431,5.0000000000 +0.8090169944,0.5877852523,5.0000000000 +0.6691306064,0.7431448255,5.0000000000 +0.5000000000,0.8660254038,5.0000000000 +0.3090169944,0.9510565163,5.0000000000 +0.1045284633,0.9945218954,5.0000000000 +-0.1045284633,0.9945218954,5.0000000000 +-0.3090169944,0.9510565163,5.0000000000 +-0.5000000000,0.8660254038,5.0000000000 +-0.6691306064,0.7431448255,5.0000000000 +-0.8090169944,0.5877852523,5.0000000000 +-0.9135454576,0.4067366431,5.0000000000 +-0.9781476007,0.2079116908,5.0000000000 +-1.0000000000,0.0000000000,5.0000000000 +-0.9945218954,-0.0000000000,4.8954715367 +-0.9727892058,-0.2067727288,4.8954715367 +-0.9085409600,-0.4045084972,4.8954715367 +-0.8045851146,-0.5845653032,4.8954715367 +-0.6654650389,-0.7390738004,4.8954715367 +-0.4972609477,-0.8612812260,4.8954715367 +-0.3073241669,-0.9458465292,4.8954715367 +-0.1039558454,-0.9890738004,4.8954715367 +0.1039558454,-0.9890738004,4.8954715367 +0.3073241669,-0.9458465292,4.8954715367 +0.4972609477,-0.8612812260,4.8954715367 +0.6654650389,-0.7390738004,4.8954715367 +0.8045851146,-0.5845653032,4.8954715367 +0.9085409600,-0.4045084972,4.8954715367 +0.9727892058,-0.2067727288,4.8954715367 +0.9945218954,0.0000000000,4.8954715367 +0.9727892058,0.2067727288,4.8954715367 +0.9085409600,0.4045084972,4.8954715367 +0.8045851146,0.5845653032,4.8954715367 +0.6654650389,0.7390738004,4.8954715367 +0.4972609477,0.8612812260,4.8954715367 +0.3073241669,0.9458465292,4.8954715367 +0.1039558454,0.9890738004,4.8954715367 +-0.1039558454,0.9890738004,4.8954715367 +-0.3073241669,0.9458465292,4.8954715367 +-0.4972609477,0.8612812260,4.8954715367 +-0.6654650389,0.7390738004,4.8954715367 +-0.8045851146,0.5845653032,4.8954715367 +-0.9085409600,0.4045084972,4.8954715367 +-0.9727892058,0.2067727288,4.8954715367 +-0.9945218954,0.0000000000,4.8954715367 +-0.9781476007,-0.0000000000,4.7920883092 +-0.9567727288,-0.2033683215,4.7920883092 +-0.8935822976,-0.3978484716,4.7920883092 +-0.7913380320,-0.5749407343,4.7920883092 +-0.6545084972,-0.7269053280,4.7920883092 +-0.4890738004,-0.8471006709,4.7920883092 +-0.3022642316,-0.9302736496,4.7920883092 +-0.1022442656,-0.9727892058,4.7920883092 +0.1022442656,-0.9727892058,4.7920883092 +0.3022642316,-0.9302736496,4.7920883092 +0.4890738004,-0.8471006709,4.7920883092 +0.6545084972,-0.7269053280,4.7920883092 +0.7913380320,-0.5749407343,4.7920883092 +0.8935822976,-0.3978484716,4.7920883092 +0.9567727288,-0.2033683215,4.7920883092 +0.9781476007,0.0000000000,4.7920883092 +0.9567727288,0.2033683215,4.7920883092 +0.8935822976,0.3978484716,4.7920883092 +0.7913380320,0.5749407343,4.7920883092 +0.6545084972,0.7269053280,4.7920883092 +0.4890738004,0.8471006709,4.7920883092 +0.3022642316,0.9302736496,4.7920883092 +0.1022442656,0.9727892058,4.7920883092 +-0.1022442656,0.9727892058,4.7920883092 +-0.3022642316,0.9302736496,4.7920883092 +-0.4890738004,0.8471006709,4.7920883092 +-0.6545084972,0.7269053280,4.7920883092 +-0.7913380320,0.5749407343,4.7920883092 +-0.8935822976,0.3978484716,4.7920883092 +-0.9567727288,0.2033683215,4.7920883092 +-0.9781476007,0.0000000000,4.7920883092 +-0.9510565163,-0.0000000000,4.6909830056 +-0.9302736496,-0.1977357684,4.6909830056 +-0.8688333604,-0.3868295348,4.6909830056 +-0.7694208843,-0.5590169944,4.6909830056 +-0.6363810234,-0.7067727288,4.6909830056 +-0.4755282581,-0.8236391035,4.6909830056 +-0.2938926261,-0.9045084972,4.6909830056 +-0.0994124761,-0.9458465292,4.6909830056 +0.0994124761,-0.9458465292,4.6909830056 +0.2938926261,-0.9045084972,4.6909830056 +0.4755282581,-0.8236391035,4.6909830056 +0.6363810234,-0.7067727288,4.6909830056 +0.7694208843,-0.5590169944,4.6909830056 +0.8688333604,-0.3868295348,4.6909830056 +0.9302736496,-0.1977357684,4.6909830056 +0.9510565163,0.0000000000,4.6909830056 +0.9302736496,0.1977357684,4.6909830056 +0.8688333604,0.3868295348,4.6909830056 +0.7694208843,0.5590169944,4.6909830056 +0.6363810234,0.7067727288,4.6909830056 +0.4755282581,0.8236391035,4.6909830056 +0.2938926261,0.9045084972,4.6909830056 +0.0994124761,0.9458465292,4.6909830056 +-0.0994124761,0.9458465292,4.6909830056 +-0.2938926261,0.9045084972,4.6909830056 +-0.4755282581,0.8236391035,4.6909830056 +-0.6363810234,0.7067727288,4.6909830056 +-0.7694208843,0.5590169944,4.6909830056 +-0.8688333604,0.3868295348,4.6909830056 +-0.9302736496,0.1977357684,4.6909830056 +-0.9510565163,0.0000000000,4.6909830056 +-0.9135454576,-0.0000000000,4.5932633569 +-0.8935822976,-0.1899367807,4.5932633569 +-0.8345653032,-0.3715724127,4.5932633569 +-0.7390738004,-0.5369685473,4.5932633569 +-0.6112812260,-0.6788965797,4.5932633569 +-0.4567727288,-0.7911535738,4.5932633569 +-0.2823010715,-0.8688333604,4.5932633569 +-0.0954915028,-0.9085409600,4.5932633569 +0.0954915028,-0.9085409600,4.5932633569 +0.2823010715,-0.8688333604,4.5932633569 +0.4567727288,-0.7911535738,4.5932633569 +0.6112812260,-0.6788965797,4.5932633569 +0.7390738004,-0.5369685473,4.5932633569 +0.8345653032,-0.3715724127,4.5932633569 +0.8935822976,-0.1899367807,4.5932633569 +0.9135454576,0.0000000000,4.5932633569 +0.8935822976,0.1899367807,4.5932633569 +0.8345653032,0.3715724127,4.5932633569 +0.7390738004,0.5369685473,4.5932633569 +0.6112812260,0.6788965797,4.5932633569 +0.4567727288,0.7911535738,4.5932633569 +0.2823010715,0.8688333604,4.5932633569 +0.0954915028,0.9085409600,4.5932633569 +-0.0954915028,0.9085409600,4.5932633569 +-0.2823010715,0.8688333604,4.5932633569 +-0.4567727288,0.7911535738,4.5932633569 +-0.6112812260,0.6788965797,4.5932633569 +-0.7390738004,0.5369685473,4.5932633569 +-0.8345653032,0.3715724127,4.5932633569 +-0.8935822976,0.1899367807,4.5932633569 +-0.9135454576,0.0000000000,4.5932633569 +-0.8660254038,-0.0000000000,4.5000000000 +-0.8471006709,-0.1800568060,4.5000000000 +-0.7911535738,-0.3522442656,4.5000000000 +-0.7006292692,-0.5090369605,4.5000000000 +-0.5794841036,-0.6435822976,4.5000000000 +-0.4330127019,-0.7500000000,4.5000000000 +-0.2676165673,-0.8236391035,4.5000000000 +-0.0905243046,-0.8612812260,4.5000000000 +0.0905243046,-0.8612812260,4.5000000000 +0.2676165673,-0.8236391035,4.5000000000 +0.4330127019,-0.7500000000,4.5000000000 +0.5794841036,-0.6435822976,4.5000000000 +0.7006292692,-0.5090369605,4.5000000000 +0.7911535738,-0.3522442656,4.5000000000 +0.8471006709,-0.1800568060,4.5000000000 +0.8660254038,0.0000000000,4.5000000000 +0.8471006709,0.1800568060,4.5000000000 +0.7911535738,0.3522442656,4.5000000000 +0.7006292692,0.5090369605,4.5000000000 +0.5794841036,0.6435822976,4.5000000000 +0.4330127019,0.7500000000,4.5000000000 +0.2676165673,0.8236391035,4.5000000000 +0.0905243046,0.8612812260,4.5000000000 +-0.0905243046,0.8612812260,4.5000000000 +-0.2676165673,0.8236391035,4.5000000000 +-0.4330127019,0.7500000000,4.5000000000 +-0.5794841036,0.6435822976,4.5000000000 +-0.7006292692,0.5090369605,4.5000000000 +-0.7911535738,0.3522442656,4.5000000000 +-0.8471006709,0.1800568060,4.5000000000 +-0.8660254038,0.0000000000,4.5000000000 +-0.8090169944,-0.0000000000,4.4122147477 +-0.7913380320,-0.1682040912,4.4122147477 +-0.7390738004,-0.3290568565,4.4122147477 +-0.6545084972,-0.4755282581,4.4122147477 +-0.5413380320,-0.6012167931,4.4122147477 +-0.4045084972,-0.7006292692,4.4122147477 +-0.2500000000,-0.7694208843,4.4122147477 +-0.0845653032,-0.8045851146,4.4122147477 +0.0845653032,-0.8045851146,4.4122147477 +0.2500000000,-0.7694208843,4.4122147477 +0.4045084972,-0.7006292692,4.4122147477 +0.5413380320,-0.6012167931,4.4122147477 +0.6545084972,-0.4755282581,4.4122147477 +0.7390738004,-0.3290568565,4.4122147477 +0.7913380320,-0.1682040912,4.4122147477 +0.8090169944,0.0000000000,4.4122147477 +0.7913380320,0.1682040912,4.4122147477 +0.7390738004,0.3290568565,4.4122147477 +0.6545084972,0.4755282581,4.4122147477 +0.5413380320,0.6012167931,4.4122147477 +0.4045084972,0.7006292692,4.4122147477 +0.2500000000,0.7694208843,4.4122147477 +0.0845653032,0.8045851146,4.4122147477 +-0.0845653032,0.8045851146,4.4122147477 +-0.2500000000,0.7694208843,4.4122147477 +-0.4045084972,0.7006292692,4.4122147477 +-0.5413380320,0.6012167931,4.4122147477 +-0.6545084972,0.4755282581,4.4122147477 +-0.7390738004,0.3290568565,4.4122147477 +-0.7913380320,0.1682040912,4.4122147477 +-0.8090169944,0.0000000000,4.4122147477 +-0.7431448255,-0.0000000000,4.3308693936 +-0.7269053280,-0.1545084972,4.3308693936 +-0.6788965797,-0.3022642316,4.3308693936 +-0.6012167931,-0.4368095687,4.3308693936 +-0.4972609477,-0.5522642316,4.3308693936 +-0.3715724127,-0.6435822976,4.3308693936 +-0.2296443804,-0.7067727288,4.3308693936 +-0.0776797866,-0.7390738004,4.3308693936 +0.0776797866,-0.7390738004,4.3308693936 +0.2296443804,-0.7067727288,4.3308693936 +0.3715724127,-0.6435822976,4.3308693936 +0.4972609477,-0.5522642316,4.3308693936 +0.6012167931,-0.4368095687,4.3308693936 +0.6788965797,-0.3022642316,4.3308693936 +0.7269053280,-0.1545084972,4.3308693936 +0.7431448255,0.0000000000,4.3308693936 +0.7269053280,0.1545084972,4.3308693936 +0.6788965797,0.3022642316,4.3308693936 +0.6012167931,0.4368095687,4.3308693936 +0.4972609477,0.5522642316,4.3308693936 +0.3715724127,0.6435822976,4.3308693936 +0.2296443804,0.7067727288,4.3308693936 +0.0776797866,0.7390738004,4.3308693936 +-0.0776797866,0.7390738004,4.3308693936 +-0.2296443804,0.7067727288,4.3308693936 +-0.3715724127,0.6435822976,4.3308693936 +-0.4972609477,0.5522642316,4.3308693936 +-0.6012167931,0.4368095687,4.3308693936 +-0.6788965797,0.3022642316,4.3308693936 +-0.7269053280,0.1545084972,4.3308693936 +-0.7431448255,0.0000000000,4.3308693936 +-0.6691306064,-0.0000000000,4.2568551745 +-0.6545084972,-0.1391200757,4.2568551745 +-0.6112812260,-0.2721599366,4.2568551745 +-0.5413380320,-0.3933051023,4.2568551745 +-0.4477357684,-0.4972609477,4.2568551745 +-0.3345653032,-0.5794841036,4.2568551745 +-0.2067727288,-0.6363810234,4.2568551745 +-0.0699431940,-0.6654650389,4.2568551745 +0.0699431940,-0.6654650389,4.2568551745 +0.2067727288,-0.6363810234,4.2568551745 +0.3345653032,-0.5794841036,4.2568551745 +0.4477357684,-0.4972609477,4.2568551745 +0.5413380320,-0.3933051023,4.2568551745 +0.6112812260,-0.2721599366,4.2568551745 +0.6545084972,-0.1391200757,4.2568551745 +0.6691306064,0.0000000000,4.2568551745 +0.6545084972,0.1391200757,4.2568551745 +0.6112812260,0.2721599366,4.2568551745 +0.5413380320,0.3933051023,4.2568551745 +0.4477357684,0.4972609477,4.2568551745 +0.3345653032,0.5794841036,4.2568551745 +0.2067727288,0.6363810234,4.2568551745 +0.0699431940,0.6654650389,4.2568551745 +-0.0699431940,0.6654650389,4.2568551745 +-0.2067727288,0.6363810234,4.2568551745 +-0.3345653032,0.5794841036,4.2568551745 +-0.4477357684,0.4972609477,4.2568551745 +-0.5413380320,0.3933051023,4.2568551745 +-0.6112812260,0.2721599366,4.2568551745 +-0.6545084972,0.1391200757,4.2568551745 +-0.6691306064,0.0000000000,4.2568551745 +-0.5877852523,-0.0000000000,4.1909830056 +-0.5749407343,-0.1222074256,4.1909830056 +-0.5369685473,-0.2390738004,4.1909830056 +-0.4755282581,-0.3454915028,4.1909830056 +-0.3933051023,-0.4368095687,4.1909830056 +-0.2938926261,-0.5090369605,4.1909830056 +-0.1816356320,-0.5590169944,4.1909830056 +-0.0614402892,-0.5845653032,4.1909830056 +0.0614402892,-0.5845653032,4.1909830056 +0.1816356320,-0.5590169944,4.1909830056 +0.2938926261,-0.5090369605,4.1909830056 +0.3933051023,-0.4368095687,4.1909830056 +0.4755282581,-0.3454915028,4.1909830056 +0.5369685473,-0.2390738004,4.1909830056 +0.5749407343,-0.1222074256,4.1909830056 +0.5877852523,0.0000000000,4.1909830056 +0.5749407343,0.1222074256,4.1909830056 +0.5369685473,0.2390738004,4.1909830056 +0.4755282581,0.3454915028,4.1909830056 +0.3933051023,0.4368095687,4.1909830056 +0.2938926261,0.5090369605,4.1909830056 +0.1816356320,0.5590169944,4.1909830056 +0.0614402892,0.5845653032,4.1909830056 +-0.0614402892,0.5845653032,4.1909830056 +-0.1816356320,0.5590169944,4.1909830056 +-0.2938926261,0.5090369605,4.1909830056 +-0.3933051023,0.4368095687,4.1909830056 +-0.4755282581,0.3454915028,4.1909830056 +-0.5369685473,0.2390738004,4.1909830056 +-0.5749407343,0.1222074256,4.1909830056 +-0.5877852523,0.0000000000,4.1909830056 +-0.5000000000,-0.0000000000,4.1339745962 +-0.4890738004,-0.1039558454,4.1339745962 +-0.4567727288,-0.2033683215,4.1339745962 +-0.4045084972,-0.2938926261,4.1339745962 +-0.3345653032,-0.3715724127,4.1339745962 +-0.2500000000,-0.4330127019,4.1339745962 +-0.1545084972,-0.4755282581,4.1339745962 +-0.0522642316,-0.4972609477,4.1339745962 +0.0522642316,-0.4972609477,4.1339745962 +0.1545084972,-0.4755282581,4.1339745962 +0.2500000000,-0.4330127019,4.1339745962 +0.3345653032,-0.3715724127,4.1339745962 +0.4045084972,-0.2938926261,4.1339745962 +0.4567727288,-0.2033683215,4.1339745962 +0.4890738004,-0.1039558454,4.1339745962 +0.5000000000,0.0000000000,4.1339745962 +0.4890738004,0.1039558454,4.1339745962 +0.4567727288,0.2033683215,4.1339745962 +0.4045084972,0.2938926261,4.1339745962 +0.3345653032,0.3715724127,4.1339745962 +0.2500000000,0.4330127019,4.1339745962 +0.1545084972,0.4755282581,4.1339745962 +0.0522642316,0.4972609477,4.1339745962 +-0.0522642316,0.4972609477,4.1339745962 +-0.1545084972,0.4755282581,4.1339745962 +-0.2500000000,0.4330127019,4.1339745962 +-0.3345653032,0.3715724127,4.1339745962 +-0.4045084972,0.2938926261,4.1339745962 +-0.4567727288,0.2033683215,4.1339745962 +-0.4890738004,0.1039558454,4.1339745962 +-0.5000000000,0.0000000000,4.1339745962 +-0.4067366431,-0.0000000000,4.0864545424 +-0.3978484716,-0.0845653032,4.0864545424 +-0.3715724127,-0.1654346968,4.0864545424 +-0.3290568565,-0.2390738004,4.0864545424 +-0.2721599366,-0.3022642316,4.0864545424 +-0.2033683215,-0.3522442656,4.0864545424 +-0.1256885349,-0.3868295348,4.0864545424 +-0.0425155563,-0.4045084972,4.0864545424 +0.0425155563,-0.4045084972,4.0864545424 +0.1256885349,-0.3868295348,4.0864545424 +0.2033683215,-0.3522442656,4.0864545424 +0.2721599366,-0.3022642316,4.0864545424 +0.3290568565,-0.2390738004,4.0864545424 +0.3715724127,-0.1654346968,4.0864545424 +0.3978484716,-0.0845653032,4.0864545424 +0.4067366431,0.0000000000,4.0864545424 +0.3978484716,0.0845653032,4.0864545424 +0.3715724127,0.1654346968,4.0864545424 +0.3290568565,0.2390738004,4.0864545424 +0.2721599366,0.3022642316,4.0864545424 +0.2033683215,0.3522442656,4.0864545424 +0.1256885349,0.3868295348,4.0864545424 +0.0425155563,0.4045084972,4.0864545424 +-0.0425155563,0.4045084972,4.0864545424 +-0.1256885349,0.3868295348,4.0864545424 +-0.2033683215,0.3522442656,4.0864545424 +-0.2721599366,0.3022642316,4.0864545424 +-0.3290568565,0.2390738004,4.0864545424 +-0.3715724127,0.1654346968,4.0864545424 +-0.3978484716,0.0845653032,4.0864545424 +-0.4067366431,0.0000000000,4.0864545424 +-0.3090169944,-0.0000000000,4.0489434837 +-0.3022642316,-0.0642482458,4.0489434837 +-0.2823010715,-0.1256885349,4.0489434837 +-0.2500000000,-0.1816356320,4.0489434837 +-0.2067727288,-0.2296443804,4.0489434837 +-0.1545084972,-0.2676165673,4.0489434837 +-0.0954915028,-0.2938926261,4.0489434837 +-0.0323010715,-0.3073241669,4.0489434837 +0.0323010715,-0.3073241669,4.0489434837 +0.0954915028,-0.2938926261,4.0489434837 +0.1545084972,-0.2676165673,4.0489434837 +0.2067727288,-0.2296443804,4.0489434837 +0.2500000000,-0.1816356320,4.0489434837 +0.2823010715,-0.1256885349,4.0489434837 +0.3022642316,-0.0642482458,4.0489434837 +0.3090169944,0.0000000000,4.0489434837 +0.3022642316,0.0642482458,4.0489434837 +0.2823010715,0.1256885349,4.0489434837 +0.2500000000,0.1816356320,4.0489434837 +0.2067727288,0.2296443804,4.0489434837 +0.1545084972,0.2676165673,4.0489434837 +0.0954915028,0.2938926261,4.0489434837 +0.0323010715,0.3073241669,4.0489434837 +-0.0323010715,0.3073241669,4.0489434837 +-0.0954915028,0.2938926261,4.0489434837 +-0.1545084972,0.2676165673,4.0489434837 +-0.2067727288,0.2296443804,4.0489434837 +-0.2500000000,0.1816356320,4.0489434837 +-0.2823010715,0.1256885349,4.0489434837 +-0.3022642316,0.0642482458,4.0489434837 +-0.3090169944,0.0000000000,4.0489434837 +-0.2079116908,-0.0000000000,4.0218523993 +-0.2033683215,-0.0432272712,4.0218523993 +-0.1899367807,-0.0845653032,4.0218523993 +-0.1682040912,-0.1222074256,4.0218523993 +-0.1391200757,-0.1545084972,4.0218523993 +-0.1039558454,-0.1800568060,4.0218523993 +-0.0642482458,-0.1977357684,4.0218523993 +-0.0217326895,-0.2067727288,4.0218523993 +0.0217326895,-0.2067727288,4.0218523993 +0.0642482458,-0.1977357684,4.0218523993 +0.1039558454,-0.1800568060,4.0218523993 +0.1391200757,-0.1545084972,4.0218523993 +0.1682040912,-0.1222074256,4.0218523993 +0.1899367807,-0.0845653032,4.0218523993 +0.2033683215,-0.0432272712,4.0218523993 +0.2079116908,0.0000000000,4.0218523993 +0.2033683215,0.0432272712,4.0218523993 +0.1899367807,0.0845653032,4.0218523993 +0.1682040912,0.1222074256,4.0218523993 +0.1391200757,0.1545084972,4.0218523993 +0.1039558454,0.1800568060,4.0218523993 +0.0642482458,0.1977357684,4.0218523993 +0.0217326895,0.2067727288,4.0218523993 +-0.0217326895,0.2067727288,4.0218523993 +-0.0642482458,0.1977357684,4.0218523993 +-0.1039558454,0.1800568060,4.0218523993 +-0.1391200757,0.1545084972,4.0218523993 +-0.1682040912,0.1222074256,4.0218523993 +-0.1899367807,0.0845653032,4.0218523993 +-0.2033683215,0.0432272712,4.0218523993 +-0.2079116908,0.0000000000,4.0218523993 +-0.1045284633,-0.0000000000,4.0054781046 +-0.1022442656,-0.0217326895,4.0054781046 +-0.0954915028,-0.0425155563,4.0054781046 +-0.0845653032,-0.0614402892,4.0054781046 +-0.0699431940,-0.0776797866,4.0054781046 +-0.0522642316,-0.0905243046,4.0054781046 +-0.0323010715,-0.0994124761,4.0054781046 +-0.0109261996,-0.1039558454,4.0054781046 +0.0109261996,-0.1039558454,4.0054781046 +0.0323010715,-0.0994124761,4.0054781046 +0.0522642316,-0.0905243046,4.0054781046 +0.0699431940,-0.0776797866,4.0054781046 +0.0845653032,-0.0614402892,4.0054781046 +0.0954915028,-0.0425155563,4.0054781046 +0.1022442656,-0.0217326895,4.0054781046 +0.1045284633,0.0000000000,4.0054781046 +0.1022442656,0.0217326895,4.0054781046 +0.0954915028,0.0425155563,4.0054781046 +0.0845653032,0.0614402892,4.0054781046 +0.0699431940,0.0776797866,4.0054781046 +0.0522642316,0.0905243046,4.0054781046 +0.0323010715,0.0994124761,4.0054781046 +0.0109261996,0.1039558454,4.0054781046 +-0.0109261996,0.1039558454,4.0054781046 +-0.0323010715,0.0994124761,4.0054781046 +-0.0522642316,0.0905243046,4.0054781046 +-0.0699431940,0.0776797866,4.0054781046 +-0.0845653032,0.0614402892,4.0054781046 +-0.0954915028,0.0425155563,4.0054781046 +-0.1022442656,0.0217326895,4.0054781046 +-0.1045284633,0.0000000000,4.0054781046 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +-0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,-0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 +-0.0000000000,0.0000000000,4.0000000000 diff --git a/src/pyvale/data/render/riley/min/tri6_sphere200/field.csv b/src/pyvale/data/render/riley/min/tri6_sphere200/field.csv new file mode 100644 index 000000000..e80f48dea --- /dev/null +++ b/src/pyvale/data/render/riley/min/tri6_sphere200/field.csv @@ -0,0 +1,961 @@ +0.4000000000,0.4000000000,0.6000000000 +0.4066666667,0.4000000000,0.5966666667 +0.4133333333,0.4000000000,0.5933333333 +0.4200000000,0.4000000000,0.5900000000 +0.4266666667,0.4000000000,0.5866666667 +0.4333333333,0.4000000000,0.5833333333 +0.4400000000,0.4000000000,0.5800000000 +0.4466666667,0.4000000000,0.5766666667 +0.4533333333,0.4000000000,0.5733333333 +0.4600000000,0.4000000000,0.5700000000 +0.4666666667,0.4000000000,0.5666666667 +0.4733333333,0.4000000000,0.5633333333 +0.4800000000,0.4000000000,0.5600000000 +0.4866666667,0.4000000000,0.5566666667 +0.4933333333,0.4000000000,0.5533333333 +0.5000000000,0.4000000000,0.5500000000 +0.5066666667,0.4000000000,0.5466666667 +0.5133333333,0.4000000000,0.5433333333 +0.5200000000,0.4000000000,0.5400000000 +0.5266666667,0.4000000000,0.5366666667 +0.5333333333,0.4000000000,0.5333333333 +0.5400000000,0.4000000000,0.5300000000 +0.5466666667,0.4000000000,0.5266666667 +0.5533333333,0.4000000000,0.5233333333 +0.5600000000,0.4000000000,0.5200000000 +0.5666666667,0.4000000000,0.5166666667 +0.5733333333,0.4000000000,0.5133333333 +0.5800000000,0.4000000000,0.5100000000 +0.5866666667,0.4000000000,0.5066666667 +0.5933333333,0.4000000000,0.5033333333 +0.6000000000,0.4000000000,0.5000000000 +0.4000000000,0.4066666667,0.5966666667 +0.4066666667,0.4066666667,0.5933333333 +0.4133333333,0.4066666667,0.5900000000 +0.4200000000,0.4066666667,0.5866666667 +0.4266666667,0.4066666667,0.5833333333 +0.4333333333,0.4066666667,0.5800000000 +0.4400000000,0.4066666667,0.5766666667 +0.4466666667,0.4066666667,0.5733333333 +0.4533333333,0.4066666667,0.5700000000 +0.4600000000,0.4066666667,0.5666666667 +0.4666666667,0.4066666667,0.5633333333 +0.4733333333,0.4066666667,0.5600000000 +0.4800000000,0.4066666667,0.5566666667 +0.4866666667,0.4066666667,0.5533333333 +0.4933333333,0.4066666667,0.5500000000 +0.5000000000,0.4066666667,0.5466666667 +0.5066666667,0.4066666667,0.5433333333 +0.5133333333,0.4066666667,0.5400000000 +0.5200000000,0.4066666667,0.5366666667 +0.5266666667,0.4066666667,0.5333333333 +0.5333333333,0.4066666667,0.5300000000 +0.5400000000,0.4066666667,0.5266666667 +0.5466666667,0.4066666667,0.5233333333 +0.5533333333,0.4066666667,0.5200000000 +0.5600000000,0.4066666667,0.5166666667 +0.5666666667,0.4066666667,0.5133333333 +0.5733333333,0.4066666667,0.5100000000 +0.5800000000,0.4066666667,0.5066666667 +0.5866666667,0.4066666667,0.5033333333 +0.5933333333,0.4066666667,0.5000000000 +0.6000000000,0.4066666667,0.4966666667 +0.4000000000,0.4133333333,0.5933333333 +0.4066666667,0.4133333333,0.5900000000 +0.4133333333,0.4133333333,0.5866666667 +0.4200000000,0.4133333333,0.5833333333 +0.4266666667,0.4133333333,0.5800000000 +0.4333333333,0.4133333333,0.5766666667 +0.4400000000,0.4133333333,0.5733333333 +0.4466666667,0.4133333333,0.5700000000 +0.4533333333,0.4133333333,0.5666666667 +0.4600000000,0.4133333333,0.5633333333 +0.4666666667,0.4133333333,0.5600000000 +0.4733333333,0.4133333333,0.5566666667 +0.4800000000,0.4133333333,0.5533333333 +0.4866666667,0.4133333333,0.5500000000 +0.4933333333,0.4133333333,0.5466666667 +0.5000000000,0.4133333333,0.5433333333 +0.5066666667,0.4133333333,0.5400000000 +0.5133333333,0.4133333333,0.5366666667 +0.5200000000,0.4133333333,0.5333333333 +0.5266666667,0.4133333333,0.5300000000 +0.5333333333,0.4133333333,0.5266666667 +0.5400000000,0.4133333333,0.5233333333 +0.5466666667,0.4133333333,0.5200000000 +0.5533333333,0.4133333333,0.5166666667 +0.5600000000,0.4133333333,0.5133333333 +0.5666666667,0.4133333333,0.5100000000 +0.5733333333,0.4133333333,0.5066666667 +0.5800000000,0.4133333333,0.5033333333 +0.5866666667,0.4133333333,0.5000000000 +0.5933333333,0.4133333333,0.4966666667 +0.6000000000,0.4133333333,0.4933333333 +0.4000000000,0.4200000000,0.5900000000 +0.4066666667,0.4200000000,0.5866666667 +0.4133333333,0.4200000000,0.5833333333 +0.4200000000,0.4200000000,0.5800000000 +0.4266666667,0.4200000000,0.5766666667 +0.4333333333,0.4200000000,0.5733333333 +0.4400000000,0.4200000000,0.5700000000 +0.4466666667,0.4200000000,0.5666666667 +0.4533333333,0.4200000000,0.5633333333 +0.4600000000,0.4200000000,0.5600000000 +0.4666666667,0.4200000000,0.5566666667 +0.4733333333,0.4200000000,0.5533333333 +0.4800000000,0.4200000000,0.5500000000 +0.4866666667,0.4200000000,0.5466666667 +0.4933333333,0.4200000000,0.5433333333 +0.5000000000,0.4200000000,0.5400000000 +0.5066666667,0.4200000000,0.5366666667 +0.5133333333,0.4200000000,0.5333333333 +0.5200000000,0.4200000000,0.5300000000 +0.5266666667,0.4200000000,0.5266666667 +0.5333333333,0.4200000000,0.5233333333 +0.5400000000,0.4200000000,0.5200000000 +0.5466666667,0.4200000000,0.5166666667 +0.5533333333,0.4200000000,0.5133333333 +0.5600000000,0.4200000000,0.5100000000 +0.5666666667,0.4200000000,0.5066666667 +0.5733333333,0.4200000000,0.5033333333 +0.5800000000,0.4200000000,0.5000000000 +0.5866666667,0.4200000000,0.4966666667 +0.5933333333,0.4200000000,0.4933333333 +0.6000000000,0.4200000000,0.4900000000 +0.4000000000,0.4266666667,0.5866666667 +0.4066666667,0.4266666667,0.5833333333 +0.4133333333,0.4266666667,0.5800000000 +0.4200000000,0.4266666667,0.5766666667 +0.4266666667,0.4266666667,0.5733333333 +0.4333333333,0.4266666667,0.5700000000 +0.4400000000,0.4266666667,0.5666666667 +0.4466666667,0.4266666667,0.5633333333 +0.4533333333,0.4266666667,0.5600000000 +0.4600000000,0.4266666667,0.5566666667 +0.4666666667,0.4266666667,0.5533333333 +0.4733333333,0.4266666667,0.5500000000 +0.4800000000,0.4266666667,0.5466666667 +0.4866666667,0.4266666667,0.5433333333 +0.4933333333,0.4266666667,0.5400000000 +0.5000000000,0.4266666667,0.5366666667 +0.5066666667,0.4266666667,0.5333333333 +0.5133333333,0.4266666667,0.5300000000 +0.5200000000,0.4266666667,0.5266666667 +0.5266666667,0.4266666667,0.5233333333 +0.5333333333,0.4266666667,0.5200000000 +0.5400000000,0.4266666667,0.5166666667 +0.5466666667,0.4266666667,0.5133333333 +0.5533333333,0.4266666667,0.5100000000 +0.5600000000,0.4266666667,0.5066666667 +0.5666666667,0.4266666667,0.5033333333 +0.5733333333,0.4266666667,0.5000000000 +0.5800000000,0.4266666667,0.4966666667 +0.5866666667,0.4266666667,0.4933333333 +0.5933333333,0.4266666667,0.4900000000 +0.6000000000,0.4266666667,0.4866666667 +0.4000000000,0.4333333333,0.5833333333 +0.4066666667,0.4333333333,0.5800000000 +0.4133333333,0.4333333333,0.5766666667 +0.4200000000,0.4333333333,0.5733333333 +0.4266666667,0.4333333333,0.5700000000 +0.4333333333,0.4333333333,0.5666666667 +0.4400000000,0.4333333333,0.5633333333 +0.4466666667,0.4333333333,0.5600000000 +0.4533333333,0.4333333333,0.5566666667 +0.4600000000,0.4333333333,0.5533333333 +0.4666666667,0.4333333333,0.5500000000 +0.4733333333,0.4333333333,0.5466666667 +0.4800000000,0.4333333333,0.5433333333 +0.4866666667,0.4333333333,0.5400000000 +0.4933333333,0.4333333333,0.5366666667 +0.5000000000,0.4333333333,0.5333333333 +0.5066666667,0.4333333333,0.5300000000 +0.5133333333,0.4333333333,0.5266666667 +0.5200000000,0.4333333333,0.5233333333 +0.5266666667,0.4333333333,0.5200000000 +0.5333333333,0.4333333333,0.5166666667 +0.5400000000,0.4333333333,0.5133333333 +0.5466666667,0.4333333333,0.5100000000 +0.5533333333,0.4333333333,0.5066666667 +0.5600000000,0.4333333333,0.5033333333 +0.5666666667,0.4333333333,0.5000000000 +0.5733333333,0.4333333333,0.4966666667 +0.5800000000,0.4333333333,0.4933333333 +0.5866666667,0.4333333333,0.4900000000 +0.5933333333,0.4333333333,0.4866666667 +0.6000000000,0.4333333333,0.4833333333 +0.4000000000,0.4400000000,0.5800000000 +0.4066666667,0.4400000000,0.5766666667 +0.4133333333,0.4400000000,0.5733333333 +0.4200000000,0.4400000000,0.5700000000 +0.4266666667,0.4400000000,0.5666666667 +0.4333333333,0.4400000000,0.5633333333 +0.4400000000,0.4400000000,0.5600000000 +0.4466666667,0.4400000000,0.5566666667 +0.4533333333,0.4400000000,0.5533333333 +0.4600000000,0.4400000000,0.5500000000 +0.4666666667,0.4400000000,0.5466666667 +0.4733333333,0.4400000000,0.5433333333 +0.4800000000,0.4400000000,0.5400000000 +0.4866666667,0.4400000000,0.5366666667 +0.4933333333,0.4400000000,0.5333333333 +0.5000000000,0.4400000000,0.5300000000 +0.5066666667,0.4400000000,0.5266666667 +0.5133333333,0.4400000000,0.5233333333 +0.5200000000,0.4400000000,0.5200000000 +0.5266666667,0.4400000000,0.5166666667 +0.5333333333,0.4400000000,0.5133333333 +0.5400000000,0.4400000000,0.5100000000 +0.5466666667,0.4400000000,0.5066666667 +0.5533333333,0.4400000000,0.5033333333 +0.5600000000,0.4400000000,0.5000000000 +0.5666666667,0.4400000000,0.4966666667 +0.5733333333,0.4400000000,0.4933333333 +0.5800000000,0.4400000000,0.4900000000 +0.5866666667,0.4400000000,0.4866666667 +0.5933333333,0.4400000000,0.4833333333 +0.6000000000,0.4400000000,0.4800000000 +0.4000000000,0.4466666667,0.5766666667 +0.4066666667,0.4466666667,0.5733333333 +0.4133333333,0.4466666667,0.5700000000 +0.4200000000,0.4466666667,0.5666666667 +0.4266666667,0.4466666667,0.5633333333 +0.4333333333,0.4466666667,0.5600000000 +0.4400000000,0.4466666667,0.5566666667 +0.4466666667,0.4466666667,0.5533333333 +0.4533333333,0.4466666667,0.5500000000 +0.4600000000,0.4466666667,0.5466666667 +0.4666666667,0.4466666667,0.5433333333 +0.4733333333,0.4466666667,0.5400000000 +0.4800000000,0.4466666667,0.5366666667 +0.4866666667,0.4466666667,0.5333333333 +0.4933333333,0.4466666667,0.5300000000 +0.5000000000,0.4466666667,0.5266666667 +0.5066666667,0.4466666667,0.5233333333 +0.5133333333,0.4466666667,0.5200000000 +0.5200000000,0.4466666667,0.5166666667 +0.5266666667,0.4466666667,0.5133333333 +0.5333333333,0.4466666667,0.5100000000 +0.5400000000,0.4466666667,0.5066666667 +0.5466666667,0.4466666667,0.5033333333 +0.5533333333,0.4466666667,0.5000000000 +0.5600000000,0.4466666667,0.4966666667 +0.5666666667,0.4466666667,0.4933333333 +0.5733333333,0.4466666667,0.4900000000 +0.5800000000,0.4466666667,0.4866666667 +0.5866666667,0.4466666667,0.4833333333 +0.5933333333,0.4466666667,0.4800000000 +0.6000000000,0.4466666667,0.4766666667 +0.4000000000,0.4533333333,0.5733333333 +0.4066666667,0.4533333333,0.5700000000 +0.4133333333,0.4533333333,0.5666666667 +0.4200000000,0.4533333333,0.5633333333 +0.4266666667,0.4533333333,0.5600000000 +0.4333333333,0.4533333333,0.5566666667 +0.4400000000,0.4533333333,0.5533333333 +0.4466666667,0.4533333333,0.5500000000 +0.4533333333,0.4533333333,0.5466666667 +0.4600000000,0.4533333333,0.5433333333 +0.4666666667,0.4533333333,0.5400000000 +0.4733333333,0.4533333333,0.5366666667 +0.4800000000,0.4533333333,0.5333333333 +0.4866666667,0.4533333333,0.5300000000 +0.4933333333,0.4533333333,0.5266666667 +0.5000000000,0.4533333333,0.5233333333 +0.5066666667,0.4533333333,0.5200000000 +0.5133333333,0.4533333333,0.5166666667 +0.5200000000,0.4533333333,0.5133333333 +0.5266666667,0.4533333333,0.5100000000 +0.5333333333,0.4533333333,0.5066666667 +0.5400000000,0.4533333333,0.5033333333 +0.5466666667,0.4533333333,0.5000000000 +0.5533333333,0.4533333333,0.4966666667 +0.5600000000,0.4533333333,0.4933333333 +0.5666666667,0.4533333333,0.4900000000 +0.5733333333,0.4533333333,0.4866666667 +0.5800000000,0.4533333333,0.4833333333 +0.5866666667,0.4533333333,0.4800000000 +0.5933333333,0.4533333333,0.4766666667 +0.6000000000,0.4533333333,0.4733333333 +0.4000000000,0.4600000000,0.5700000000 +0.4066666667,0.4600000000,0.5666666667 +0.4133333333,0.4600000000,0.5633333333 +0.4200000000,0.4600000000,0.5600000000 +0.4266666667,0.4600000000,0.5566666667 +0.4333333333,0.4600000000,0.5533333333 +0.4400000000,0.4600000000,0.5500000000 +0.4466666667,0.4600000000,0.5466666667 +0.4533333333,0.4600000000,0.5433333333 +0.4600000000,0.4600000000,0.5400000000 +0.4666666667,0.4600000000,0.5366666667 +0.4733333333,0.4600000000,0.5333333333 +0.4800000000,0.4600000000,0.5300000000 +0.4866666667,0.4600000000,0.5266666667 +0.4933333333,0.4600000000,0.5233333333 +0.5000000000,0.4600000000,0.5200000000 +0.5066666667,0.4600000000,0.5166666667 +0.5133333333,0.4600000000,0.5133333333 +0.5200000000,0.4600000000,0.5100000000 +0.5266666667,0.4600000000,0.5066666667 +0.5333333333,0.4600000000,0.5033333333 +0.5400000000,0.4600000000,0.5000000000 +0.5466666667,0.4600000000,0.4966666667 +0.5533333333,0.4600000000,0.4933333333 +0.5600000000,0.4600000000,0.4900000000 +0.5666666667,0.4600000000,0.4866666667 +0.5733333333,0.4600000000,0.4833333333 +0.5800000000,0.4600000000,0.4800000000 +0.5866666667,0.4600000000,0.4766666667 +0.5933333333,0.4600000000,0.4733333333 +0.6000000000,0.4600000000,0.4700000000 +0.4000000000,0.4666666667,0.5666666667 +0.4066666667,0.4666666667,0.5633333333 +0.4133333333,0.4666666667,0.5600000000 +0.4200000000,0.4666666667,0.5566666667 +0.4266666667,0.4666666667,0.5533333333 +0.4333333333,0.4666666667,0.5500000000 +0.4400000000,0.4666666667,0.5466666667 +0.4466666667,0.4666666667,0.5433333333 +0.4533333333,0.4666666667,0.5400000000 +0.4600000000,0.4666666667,0.5366666667 +0.4666666667,0.4666666667,0.5333333333 +0.4733333333,0.4666666667,0.5300000000 +0.4800000000,0.4666666667,0.5266666667 +0.4866666667,0.4666666667,0.5233333333 +0.4933333333,0.4666666667,0.5200000000 +0.5000000000,0.4666666667,0.5166666667 +0.5066666667,0.4666666667,0.5133333333 +0.5133333333,0.4666666667,0.5100000000 +0.5200000000,0.4666666667,0.5066666667 +0.5266666667,0.4666666667,0.5033333333 +0.5333333333,0.4666666667,0.5000000000 +0.5400000000,0.4666666667,0.4966666667 +0.5466666667,0.4666666667,0.4933333333 +0.5533333333,0.4666666667,0.4900000000 +0.5600000000,0.4666666667,0.4866666667 +0.5666666667,0.4666666667,0.4833333333 +0.5733333333,0.4666666667,0.4800000000 +0.5800000000,0.4666666667,0.4766666667 +0.5866666667,0.4666666667,0.4733333333 +0.5933333333,0.4666666667,0.4700000000 +0.6000000000,0.4666666667,0.4666666667 +0.4000000000,0.4733333333,0.5633333333 +0.4066666667,0.4733333333,0.5600000000 +0.4133333333,0.4733333333,0.5566666667 +0.4200000000,0.4733333333,0.5533333333 +0.4266666667,0.4733333333,0.5500000000 +0.4333333333,0.4733333333,0.5466666667 +0.4400000000,0.4733333333,0.5433333333 +0.4466666667,0.4733333333,0.5400000000 +0.4533333333,0.4733333333,0.5366666667 +0.4600000000,0.4733333333,0.5333333333 +0.4666666667,0.4733333333,0.5300000000 +0.4733333333,0.4733333333,0.5266666667 +0.4800000000,0.4733333333,0.5233333333 +0.4866666667,0.4733333333,0.5200000000 +0.4933333333,0.4733333333,0.5166666667 +0.5000000000,0.4733333333,0.5133333333 +0.5066666667,0.4733333333,0.5100000000 +0.5133333333,0.4733333333,0.5066666667 +0.5200000000,0.4733333333,0.5033333333 +0.5266666667,0.4733333333,0.5000000000 +0.5333333333,0.4733333333,0.4966666667 +0.5400000000,0.4733333333,0.4933333333 +0.5466666667,0.4733333333,0.4900000000 +0.5533333333,0.4733333333,0.4866666667 +0.5600000000,0.4733333333,0.4833333333 +0.5666666667,0.4733333333,0.4800000000 +0.5733333333,0.4733333333,0.4766666667 +0.5800000000,0.4733333333,0.4733333333 +0.5866666667,0.4733333333,0.4700000000 +0.5933333333,0.4733333333,0.4666666667 +0.6000000000,0.4733333333,0.4633333333 +0.4000000000,0.4800000000,0.5600000000 +0.4066666667,0.4800000000,0.5566666667 +0.4133333333,0.4800000000,0.5533333333 +0.4200000000,0.4800000000,0.5500000000 +0.4266666667,0.4800000000,0.5466666667 +0.4333333333,0.4800000000,0.5433333333 +0.4400000000,0.4800000000,0.5400000000 +0.4466666667,0.4800000000,0.5366666667 +0.4533333333,0.4800000000,0.5333333333 +0.4600000000,0.4800000000,0.5300000000 +0.4666666667,0.4800000000,0.5266666667 +0.4733333333,0.4800000000,0.5233333333 +0.4800000000,0.4800000000,0.5200000000 +0.4866666667,0.4800000000,0.5166666667 +0.4933333333,0.4800000000,0.5133333333 +0.5000000000,0.4800000000,0.5100000000 +0.5066666667,0.4800000000,0.5066666667 +0.5133333333,0.4800000000,0.5033333333 +0.5200000000,0.4800000000,0.5000000000 +0.5266666667,0.4800000000,0.4966666667 +0.5333333333,0.4800000000,0.4933333333 +0.5400000000,0.4800000000,0.4900000000 +0.5466666667,0.4800000000,0.4866666667 +0.5533333333,0.4800000000,0.4833333333 +0.5600000000,0.4800000000,0.4800000000 +0.5666666667,0.4800000000,0.4766666667 +0.5733333333,0.4800000000,0.4733333333 +0.5800000000,0.4800000000,0.4700000000 +0.5866666667,0.4800000000,0.4666666667 +0.5933333333,0.4800000000,0.4633333333 +0.6000000000,0.4800000000,0.4600000000 +0.4000000000,0.4866666667,0.5566666667 +0.4066666667,0.4866666667,0.5533333333 +0.4133333333,0.4866666667,0.5500000000 +0.4200000000,0.4866666667,0.5466666667 +0.4266666667,0.4866666667,0.5433333333 +0.4333333333,0.4866666667,0.5400000000 +0.4400000000,0.4866666667,0.5366666667 +0.4466666667,0.4866666667,0.5333333333 +0.4533333333,0.4866666667,0.5300000000 +0.4600000000,0.4866666667,0.5266666667 +0.4666666667,0.4866666667,0.5233333333 +0.4733333333,0.4866666667,0.5200000000 +0.4800000000,0.4866666667,0.5166666667 +0.4866666667,0.4866666667,0.5133333333 +0.4933333333,0.4866666667,0.5100000000 +0.5000000000,0.4866666667,0.5066666667 +0.5066666667,0.4866666667,0.5033333333 +0.5133333333,0.4866666667,0.5000000000 +0.5200000000,0.4866666667,0.4966666667 +0.5266666667,0.4866666667,0.4933333333 +0.5333333333,0.4866666667,0.4900000000 +0.5400000000,0.4866666667,0.4866666667 +0.5466666667,0.4866666667,0.4833333333 +0.5533333333,0.4866666667,0.4800000000 +0.5600000000,0.4866666667,0.4766666667 +0.5666666667,0.4866666667,0.4733333333 +0.5733333333,0.4866666667,0.4700000000 +0.5800000000,0.4866666667,0.4666666667 +0.5866666667,0.4866666667,0.4633333333 +0.5933333333,0.4866666667,0.4600000000 +0.6000000000,0.4866666667,0.4566666667 +0.4000000000,0.4933333333,0.5533333333 +0.4066666667,0.4933333333,0.5500000000 +0.4133333333,0.4933333333,0.5466666667 +0.4200000000,0.4933333333,0.5433333333 +0.4266666667,0.4933333333,0.5400000000 +0.4333333333,0.4933333333,0.5366666667 +0.4400000000,0.4933333333,0.5333333333 +0.4466666667,0.4933333333,0.5300000000 +0.4533333333,0.4933333333,0.5266666667 +0.4600000000,0.4933333333,0.5233333333 +0.4666666667,0.4933333333,0.5200000000 +0.4733333333,0.4933333333,0.5166666667 +0.4800000000,0.4933333333,0.5133333333 +0.4866666667,0.4933333333,0.5100000000 +0.4933333333,0.4933333333,0.5066666667 +0.5000000000,0.4933333333,0.5033333333 +0.5066666667,0.4933333333,0.5000000000 +0.5133333333,0.4933333333,0.4966666667 +0.5200000000,0.4933333333,0.4933333333 +0.5266666667,0.4933333333,0.4900000000 +0.5333333333,0.4933333333,0.4866666667 +0.5400000000,0.4933333333,0.4833333333 +0.5466666667,0.4933333333,0.4800000000 +0.5533333333,0.4933333333,0.4766666667 +0.5600000000,0.4933333333,0.4733333333 +0.5666666667,0.4933333333,0.4700000000 +0.5733333333,0.4933333333,0.4666666667 +0.5800000000,0.4933333333,0.4633333333 +0.5866666667,0.4933333333,0.4600000000 +0.5933333333,0.4933333333,0.4566666667 +0.6000000000,0.4933333333,0.4533333333 +0.4000000000,0.5000000000,0.5500000000 +0.4066666667,0.5000000000,0.5466666667 +0.4133333333,0.5000000000,0.5433333333 +0.4200000000,0.5000000000,0.5400000000 +0.4266666667,0.5000000000,0.5366666667 +0.4333333333,0.5000000000,0.5333333333 +0.4400000000,0.5000000000,0.5300000000 +0.4466666667,0.5000000000,0.5266666667 +0.4533333333,0.5000000000,0.5233333333 +0.4600000000,0.5000000000,0.5200000000 +0.4666666667,0.5000000000,0.5166666667 +0.4733333333,0.5000000000,0.5133333333 +0.4800000000,0.5000000000,0.5100000000 +0.4866666667,0.5000000000,0.5066666667 +0.4933333333,0.5000000000,0.5033333333 +0.5000000000,0.5000000000,0.5000000000 +0.5066666667,0.5000000000,0.4966666667 +0.5133333333,0.5000000000,0.4933333333 +0.5200000000,0.5000000000,0.4900000000 +0.5266666667,0.5000000000,0.4866666667 +0.5333333333,0.5000000000,0.4833333333 +0.5400000000,0.5000000000,0.4800000000 +0.5466666667,0.5000000000,0.4766666667 +0.5533333333,0.5000000000,0.4733333333 +0.5600000000,0.5000000000,0.4700000000 +0.5666666667,0.5000000000,0.4666666667 +0.5733333333,0.5000000000,0.4633333333 +0.5800000000,0.5000000000,0.4600000000 +0.5866666667,0.5000000000,0.4566666667 +0.5933333333,0.5000000000,0.4533333333 +0.6000000000,0.5000000000,0.4500000000 +0.4000000000,0.5066666667,0.5466666667 +0.4066666667,0.5066666667,0.5433333333 +0.4133333333,0.5066666667,0.5400000000 +0.4200000000,0.5066666667,0.5366666667 +0.4266666667,0.5066666667,0.5333333333 +0.4333333333,0.5066666667,0.5300000000 +0.4400000000,0.5066666667,0.5266666667 +0.4466666667,0.5066666667,0.5233333333 +0.4533333333,0.5066666667,0.5200000000 +0.4600000000,0.5066666667,0.5166666667 +0.4666666667,0.5066666667,0.5133333333 +0.4733333333,0.5066666667,0.5100000000 +0.4800000000,0.5066666667,0.5066666667 +0.4866666667,0.5066666667,0.5033333333 +0.4933333333,0.5066666667,0.5000000000 +0.5000000000,0.5066666667,0.4966666667 +0.5066666667,0.5066666667,0.4933333333 +0.5133333333,0.5066666667,0.4900000000 +0.5200000000,0.5066666667,0.4866666667 +0.5266666667,0.5066666667,0.4833333333 +0.5333333333,0.5066666667,0.4800000000 +0.5400000000,0.5066666667,0.4766666667 +0.5466666667,0.5066666667,0.4733333333 +0.5533333333,0.5066666667,0.4700000000 +0.5600000000,0.5066666667,0.4666666667 +0.5666666667,0.5066666667,0.4633333333 +0.5733333333,0.5066666667,0.4600000000 +0.5800000000,0.5066666667,0.4566666667 +0.5866666667,0.5066666667,0.4533333333 +0.5933333333,0.5066666667,0.4500000000 +0.6000000000,0.5066666667,0.4466666667 +0.4000000000,0.5133333333,0.5433333333 +0.4066666667,0.5133333333,0.5400000000 +0.4133333333,0.5133333333,0.5366666667 +0.4200000000,0.5133333333,0.5333333333 +0.4266666667,0.5133333333,0.5300000000 +0.4333333333,0.5133333333,0.5266666667 +0.4400000000,0.5133333333,0.5233333333 +0.4466666667,0.5133333333,0.5200000000 +0.4533333333,0.5133333333,0.5166666667 +0.4600000000,0.5133333333,0.5133333333 +0.4666666667,0.5133333333,0.5100000000 +0.4733333333,0.5133333333,0.5066666667 +0.4800000000,0.5133333333,0.5033333333 +0.4866666667,0.5133333333,0.5000000000 +0.4933333333,0.5133333333,0.4966666667 +0.5000000000,0.5133333333,0.4933333333 +0.5066666667,0.5133333333,0.4900000000 +0.5133333333,0.5133333333,0.4866666667 +0.5200000000,0.5133333333,0.4833333333 +0.5266666667,0.5133333333,0.4800000000 +0.5333333333,0.5133333333,0.4766666667 +0.5400000000,0.5133333333,0.4733333333 +0.5466666667,0.5133333333,0.4700000000 +0.5533333333,0.5133333333,0.4666666667 +0.5600000000,0.5133333333,0.4633333333 +0.5666666667,0.5133333333,0.4600000000 +0.5733333333,0.5133333333,0.4566666667 +0.5800000000,0.5133333333,0.4533333333 +0.5866666667,0.5133333333,0.4500000000 +0.5933333333,0.5133333333,0.4466666667 +0.6000000000,0.5133333333,0.4433333333 +0.4000000000,0.5200000000,0.5400000000 +0.4066666667,0.5200000000,0.5366666667 +0.4133333333,0.5200000000,0.5333333333 +0.4200000000,0.5200000000,0.5300000000 +0.4266666667,0.5200000000,0.5266666667 +0.4333333333,0.5200000000,0.5233333333 +0.4400000000,0.5200000000,0.5200000000 +0.4466666667,0.5200000000,0.5166666667 +0.4533333333,0.5200000000,0.5133333333 +0.4600000000,0.5200000000,0.5100000000 +0.4666666667,0.5200000000,0.5066666667 +0.4733333333,0.5200000000,0.5033333333 +0.4800000000,0.5200000000,0.5000000000 +0.4866666667,0.5200000000,0.4966666667 +0.4933333333,0.5200000000,0.4933333333 +0.5000000000,0.5200000000,0.4900000000 +0.5066666667,0.5200000000,0.4866666667 +0.5133333333,0.5200000000,0.4833333333 +0.5200000000,0.5200000000,0.4800000000 +0.5266666667,0.5200000000,0.4766666667 +0.5333333333,0.5200000000,0.4733333333 +0.5400000000,0.5200000000,0.4700000000 +0.5466666667,0.5200000000,0.4666666667 +0.5533333333,0.5200000000,0.4633333333 +0.5600000000,0.5200000000,0.4600000000 +0.5666666667,0.5200000000,0.4566666667 +0.5733333333,0.5200000000,0.4533333333 +0.5800000000,0.5200000000,0.4500000000 +0.5866666667,0.5200000000,0.4466666667 +0.5933333333,0.5200000000,0.4433333333 +0.6000000000,0.5200000000,0.4400000000 +0.4000000000,0.5266666667,0.5366666667 +0.4066666667,0.5266666667,0.5333333333 +0.4133333333,0.5266666667,0.5300000000 +0.4200000000,0.5266666667,0.5266666667 +0.4266666667,0.5266666667,0.5233333333 +0.4333333333,0.5266666667,0.5200000000 +0.4400000000,0.5266666667,0.5166666667 +0.4466666667,0.5266666667,0.5133333333 +0.4533333333,0.5266666667,0.5100000000 +0.4600000000,0.5266666667,0.5066666667 +0.4666666667,0.5266666667,0.5033333333 +0.4733333333,0.5266666667,0.5000000000 +0.4800000000,0.5266666667,0.4966666667 +0.4866666667,0.5266666667,0.4933333333 +0.4933333333,0.5266666667,0.4900000000 +0.5000000000,0.5266666667,0.4866666667 +0.5066666667,0.5266666667,0.4833333333 +0.5133333333,0.5266666667,0.4800000000 +0.5200000000,0.5266666667,0.4766666667 +0.5266666667,0.5266666667,0.4733333333 +0.5333333333,0.5266666667,0.4700000000 +0.5400000000,0.5266666667,0.4666666667 +0.5466666667,0.5266666667,0.4633333333 +0.5533333333,0.5266666667,0.4600000000 +0.5600000000,0.5266666667,0.4566666667 +0.5666666667,0.5266666667,0.4533333333 +0.5733333333,0.5266666667,0.4500000000 +0.5800000000,0.5266666667,0.4466666667 +0.5866666667,0.5266666667,0.4433333333 +0.5933333333,0.5266666667,0.4400000000 +0.6000000000,0.5266666667,0.4366666667 +0.4000000000,0.5333333333,0.5333333333 +0.4066666667,0.5333333333,0.5300000000 +0.4133333333,0.5333333333,0.5266666667 +0.4200000000,0.5333333333,0.5233333333 +0.4266666667,0.5333333333,0.5200000000 +0.4333333333,0.5333333333,0.5166666667 +0.4400000000,0.5333333333,0.5133333333 +0.4466666667,0.5333333333,0.5100000000 +0.4533333333,0.5333333333,0.5066666667 +0.4600000000,0.5333333333,0.5033333333 +0.4666666667,0.5333333333,0.5000000000 +0.4733333333,0.5333333333,0.4966666667 +0.4800000000,0.5333333333,0.4933333333 +0.4866666667,0.5333333333,0.4900000000 +0.4933333333,0.5333333333,0.4866666667 +0.5000000000,0.5333333333,0.4833333333 +0.5066666667,0.5333333333,0.4800000000 +0.5133333333,0.5333333333,0.4766666667 +0.5200000000,0.5333333333,0.4733333333 +0.5266666667,0.5333333333,0.4700000000 +0.5333333333,0.5333333333,0.4666666667 +0.5400000000,0.5333333333,0.4633333333 +0.5466666667,0.5333333333,0.4600000000 +0.5533333333,0.5333333333,0.4566666667 +0.5600000000,0.5333333333,0.4533333333 +0.5666666667,0.5333333333,0.4500000000 +0.5733333333,0.5333333333,0.4466666667 +0.5800000000,0.5333333333,0.4433333333 +0.5866666667,0.5333333333,0.4400000000 +0.5933333333,0.5333333333,0.4366666667 +0.6000000000,0.5333333333,0.4333333333 +0.4000000000,0.5400000000,0.5300000000 +0.4066666667,0.5400000000,0.5266666667 +0.4133333333,0.5400000000,0.5233333333 +0.4200000000,0.5400000000,0.5200000000 +0.4266666667,0.5400000000,0.5166666667 +0.4333333333,0.5400000000,0.5133333333 +0.4400000000,0.5400000000,0.5100000000 +0.4466666667,0.5400000000,0.5066666667 +0.4533333333,0.5400000000,0.5033333333 +0.4600000000,0.5400000000,0.5000000000 +0.4666666667,0.5400000000,0.4966666667 +0.4733333333,0.5400000000,0.4933333333 +0.4800000000,0.5400000000,0.4900000000 +0.4866666667,0.5400000000,0.4866666667 +0.4933333333,0.5400000000,0.4833333333 +0.5000000000,0.5400000000,0.4800000000 +0.5066666667,0.5400000000,0.4766666667 +0.5133333333,0.5400000000,0.4733333333 +0.5200000000,0.5400000000,0.4700000000 +0.5266666667,0.5400000000,0.4666666667 +0.5333333333,0.5400000000,0.4633333333 +0.5400000000,0.5400000000,0.4600000000 +0.5466666667,0.5400000000,0.4566666667 +0.5533333333,0.5400000000,0.4533333333 +0.5600000000,0.5400000000,0.4500000000 +0.5666666667,0.5400000000,0.4466666667 +0.5733333333,0.5400000000,0.4433333333 +0.5800000000,0.5400000000,0.4400000000 +0.5866666667,0.5400000000,0.4366666667 +0.5933333333,0.5400000000,0.4333333333 +0.6000000000,0.5400000000,0.4300000000 +0.4000000000,0.5466666667,0.5266666667 +0.4066666667,0.5466666667,0.5233333333 +0.4133333333,0.5466666667,0.5200000000 +0.4200000000,0.5466666667,0.5166666667 +0.4266666667,0.5466666667,0.5133333333 +0.4333333333,0.5466666667,0.5100000000 +0.4400000000,0.5466666667,0.5066666667 +0.4466666667,0.5466666667,0.5033333333 +0.4533333333,0.5466666667,0.5000000000 +0.4600000000,0.5466666667,0.4966666667 +0.4666666667,0.5466666667,0.4933333333 +0.4733333333,0.5466666667,0.4900000000 +0.4800000000,0.5466666667,0.4866666667 +0.4866666667,0.5466666667,0.4833333333 +0.4933333333,0.5466666667,0.4800000000 +0.5000000000,0.5466666667,0.4766666667 +0.5066666667,0.5466666667,0.4733333333 +0.5133333333,0.5466666667,0.4700000000 +0.5200000000,0.5466666667,0.4666666667 +0.5266666667,0.5466666667,0.4633333333 +0.5333333333,0.5466666667,0.4600000000 +0.5400000000,0.5466666667,0.4566666667 +0.5466666667,0.5466666667,0.4533333333 +0.5533333333,0.5466666667,0.4500000000 +0.5600000000,0.5466666667,0.4466666667 +0.5666666667,0.5466666667,0.4433333333 +0.5733333333,0.5466666667,0.4400000000 +0.5800000000,0.5466666667,0.4366666667 +0.5866666667,0.5466666667,0.4333333333 +0.5933333333,0.5466666667,0.4300000000 +0.6000000000,0.5466666667,0.4266666667 +0.4000000000,0.5533333333,0.5233333333 +0.4066666667,0.5533333333,0.5200000000 +0.4133333333,0.5533333333,0.5166666667 +0.4200000000,0.5533333333,0.5133333333 +0.4266666667,0.5533333333,0.5100000000 +0.4333333333,0.5533333333,0.5066666667 +0.4400000000,0.5533333333,0.5033333333 +0.4466666667,0.5533333333,0.5000000000 +0.4533333333,0.5533333333,0.4966666667 +0.4600000000,0.5533333333,0.4933333333 +0.4666666667,0.5533333333,0.4900000000 +0.4733333333,0.5533333333,0.4866666667 +0.4800000000,0.5533333333,0.4833333333 +0.4866666667,0.5533333333,0.4800000000 +0.4933333333,0.5533333333,0.4766666667 +0.5000000000,0.5533333333,0.4733333333 +0.5066666667,0.5533333333,0.4700000000 +0.5133333333,0.5533333333,0.4666666667 +0.5200000000,0.5533333333,0.4633333333 +0.5266666667,0.5533333333,0.4600000000 +0.5333333333,0.5533333333,0.4566666667 +0.5400000000,0.5533333333,0.4533333333 +0.5466666667,0.5533333333,0.4500000000 +0.5533333333,0.5533333333,0.4466666667 +0.5600000000,0.5533333333,0.4433333333 +0.5666666667,0.5533333333,0.4400000000 +0.5733333333,0.5533333333,0.4366666667 +0.5800000000,0.5533333333,0.4333333333 +0.5866666667,0.5533333333,0.4300000000 +0.5933333333,0.5533333333,0.4266666667 +0.6000000000,0.5533333333,0.4233333333 +0.4000000000,0.5600000000,0.5200000000 +0.4066666667,0.5600000000,0.5166666667 +0.4133333333,0.5600000000,0.5133333333 +0.4200000000,0.5600000000,0.5100000000 +0.4266666667,0.5600000000,0.5066666667 +0.4333333333,0.5600000000,0.5033333333 +0.4400000000,0.5600000000,0.5000000000 +0.4466666667,0.5600000000,0.4966666667 +0.4533333333,0.5600000000,0.4933333333 +0.4600000000,0.5600000000,0.4900000000 +0.4666666667,0.5600000000,0.4866666667 +0.4733333333,0.5600000000,0.4833333333 +0.4800000000,0.5600000000,0.4800000000 +0.4866666667,0.5600000000,0.4766666667 +0.4933333333,0.5600000000,0.4733333333 +0.5000000000,0.5600000000,0.4700000000 +0.5066666667,0.5600000000,0.4666666667 +0.5133333333,0.5600000000,0.4633333333 +0.5200000000,0.5600000000,0.4600000000 +0.5266666667,0.5600000000,0.4566666667 +0.5333333333,0.5600000000,0.4533333333 +0.5400000000,0.5600000000,0.4500000000 +0.5466666667,0.5600000000,0.4466666667 +0.5533333333,0.5600000000,0.4433333333 +0.5600000000,0.5600000000,0.4400000000 +0.5666666667,0.5600000000,0.4366666667 +0.5733333333,0.5600000000,0.4333333333 +0.5800000000,0.5600000000,0.4300000000 +0.5866666667,0.5600000000,0.4266666667 +0.5933333333,0.5600000000,0.4233333333 +0.6000000000,0.5600000000,0.4200000000 +0.4000000000,0.5666666667,0.5166666667 +0.4066666667,0.5666666667,0.5133333333 +0.4133333333,0.5666666667,0.5100000000 +0.4200000000,0.5666666667,0.5066666667 +0.4266666667,0.5666666667,0.5033333333 +0.4333333333,0.5666666667,0.5000000000 +0.4400000000,0.5666666667,0.4966666667 +0.4466666667,0.5666666667,0.4933333333 +0.4533333333,0.5666666667,0.4900000000 +0.4600000000,0.5666666667,0.4866666667 +0.4666666667,0.5666666667,0.4833333333 +0.4733333333,0.5666666667,0.4800000000 +0.4800000000,0.5666666667,0.4766666667 +0.4866666667,0.5666666667,0.4733333333 +0.4933333333,0.5666666667,0.4700000000 +0.5000000000,0.5666666667,0.4666666667 +0.5066666667,0.5666666667,0.4633333333 +0.5133333333,0.5666666667,0.4600000000 +0.5200000000,0.5666666667,0.4566666667 +0.5266666667,0.5666666667,0.4533333333 +0.5333333333,0.5666666667,0.4500000000 +0.5400000000,0.5666666667,0.4466666667 +0.5466666667,0.5666666667,0.4433333333 +0.5533333333,0.5666666667,0.4400000000 +0.5600000000,0.5666666667,0.4366666667 +0.5666666667,0.5666666667,0.4333333333 +0.5733333333,0.5666666667,0.4300000000 +0.5800000000,0.5666666667,0.4266666667 +0.5866666667,0.5666666667,0.4233333333 +0.5933333333,0.5666666667,0.4200000000 +0.6000000000,0.5666666667,0.4166666667 +0.4000000000,0.5733333333,0.5133333333 +0.4066666667,0.5733333333,0.5100000000 +0.4133333333,0.5733333333,0.5066666667 +0.4200000000,0.5733333333,0.5033333333 +0.4266666667,0.5733333333,0.5000000000 +0.4333333333,0.5733333333,0.4966666667 +0.4400000000,0.5733333333,0.4933333333 +0.4466666667,0.5733333333,0.4900000000 +0.4533333333,0.5733333333,0.4866666667 +0.4600000000,0.5733333333,0.4833333333 +0.4666666667,0.5733333333,0.4800000000 +0.4733333333,0.5733333333,0.4766666667 +0.4800000000,0.5733333333,0.4733333333 +0.4866666667,0.5733333333,0.4700000000 +0.4933333333,0.5733333333,0.4666666667 +0.5000000000,0.5733333333,0.4633333333 +0.5066666667,0.5733333333,0.4600000000 +0.5133333333,0.5733333333,0.4566666667 +0.5200000000,0.5733333333,0.4533333333 +0.5266666667,0.5733333333,0.4500000000 +0.5333333333,0.5733333333,0.4466666667 +0.5400000000,0.5733333333,0.4433333333 +0.5466666667,0.5733333333,0.4400000000 +0.5533333333,0.5733333333,0.4366666667 +0.5600000000,0.5733333333,0.4333333333 +0.5666666667,0.5733333333,0.4300000000 +0.5733333333,0.5733333333,0.4266666667 +0.5800000000,0.5733333333,0.4233333333 +0.5866666667,0.5733333333,0.4200000000 +0.5933333333,0.5733333333,0.4166666667 +0.6000000000,0.5733333333,0.4133333333 +0.4000000000,0.5800000000,0.5100000000 +0.4066666667,0.5800000000,0.5066666667 +0.4133333333,0.5800000000,0.5033333333 +0.4200000000,0.5800000000,0.5000000000 +0.4266666667,0.5800000000,0.4966666667 +0.4333333333,0.5800000000,0.4933333333 +0.4400000000,0.5800000000,0.4900000000 +0.4466666667,0.5800000000,0.4866666667 +0.4533333333,0.5800000000,0.4833333333 +0.4600000000,0.5800000000,0.4800000000 +0.4666666667,0.5800000000,0.4766666667 +0.4733333333,0.5800000000,0.4733333333 +0.4800000000,0.5800000000,0.4700000000 +0.4866666667,0.5800000000,0.4666666667 +0.4933333333,0.5800000000,0.4633333333 +0.5000000000,0.5800000000,0.4600000000 +0.5066666667,0.5800000000,0.4566666667 +0.5133333333,0.5800000000,0.4533333333 +0.5200000000,0.5800000000,0.4500000000 +0.5266666667,0.5800000000,0.4466666667 +0.5333333333,0.5800000000,0.4433333333 +0.5400000000,0.5800000000,0.4400000000 +0.5466666667,0.5800000000,0.4366666667 +0.5533333333,0.5800000000,0.4333333333 +0.5600000000,0.5800000000,0.4300000000 +0.5666666667,0.5800000000,0.4266666667 +0.5733333333,0.5800000000,0.4233333333 +0.5800000000,0.5800000000,0.4200000000 +0.5866666667,0.5800000000,0.4166666667 +0.5933333333,0.5800000000,0.4133333333 +0.6000000000,0.5800000000,0.4100000000 +0.4000000000,0.5866666667,0.5066666667 +0.4066666667,0.5866666667,0.5033333333 +0.4133333333,0.5866666667,0.5000000000 +0.4200000000,0.5866666667,0.4966666667 +0.4266666667,0.5866666667,0.4933333333 +0.4333333333,0.5866666667,0.4900000000 +0.4400000000,0.5866666667,0.4866666667 +0.4466666667,0.5866666667,0.4833333333 +0.4533333333,0.5866666667,0.4800000000 +0.4600000000,0.5866666667,0.4766666667 +0.4666666667,0.5866666667,0.4733333333 +0.4733333333,0.5866666667,0.4700000000 +0.4800000000,0.5866666667,0.4666666667 +0.4866666667,0.5866666667,0.4633333333 +0.4933333333,0.5866666667,0.4600000000 +0.5000000000,0.5866666667,0.4566666667 +0.5066666667,0.5866666667,0.4533333333 +0.5133333333,0.5866666667,0.4500000000 +0.5200000000,0.5866666667,0.4466666667 +0.5266666667,0.5866666667,0.4433333333 +0.5333333333,0.5866666667,0.4400000000 +0.5400000000,0.5866666667,0.4366666667 +0.5466666667,0.5866666667,0.4333333333 +0.5533333333,0.5866666667,0.4300000000 +0.5600000000,0.5866666667,0.4266666667 +0.5666666667,0.5866666667,0.4233333333 +0.5733333333,0.5866666667,0.4200000000 +0.5800000000,0.5866666667,0.4166666667 +0.5866666667,0.5866666667,0.4133333333 +0.5933333333,0.5866666667,0.4100000000 +0.6000000000,0.5866666667,0.4066666667 +0.4000000000,0.5933333333,0.5033333333 +0.4066666667,0.5933333333,0.5000000000 +0.4133333333,0.5933333333,0.4966666667 +0.4200000000,0.5933333333,0.4933333333 +0.4266666667,0.5933333333,0.4900000000 +0.4333333333,0.5933333333,0.4866666667 +0.4400000000,0.5933333333,0.4833333333 +0.4466666667,0.5933333333,0.4800000000 +0.4533333333,0.5933333333,0.4766666667 +0.4600000000,0.5933333333,0.4733333333 +0.4666666667,0.5933333333,0.4700000000 +0.4733333333,0.5933333333,0.4666666667 +0.4800000000,0.5933333333,0.4633333333 +0.4866666667,0.5933333333,0.4600000000 +0.4933333333,0.5933333333,0.4566666667 +0.5000000000,0.5933333333,0.4533333333 +0.5066666667,0.5933333333,0.4500000000 +0.5133333333,0.5933333333,0.4466666667 +0.5200000000,0.5933333333,0.4433333333 +0.5266666667,0.5933333333,0.4400000000 +0.5333333333,0.5933333333,0.4366666667 +0.5400000000,0.5933333333,0.4333333333 +0.5466666667,0.5933333333,0.4300000000 +0.5533333333,0.5933333333,0.4266666667 +0.5600000000,0.5933333333,0.4233333333 +0.5666666667,0.5933333333,0.4200000000 +0.5733333333,0.5933333333,0.4166666667 +0.5800000000,0.5933333333,0.4133333333 +0.5866666667,0.5933333333,0.4100000000 +0.5933333333,0.5933333333,0.4066666667 +0.6000000000,0.5933333333,0.4033333333 +0.4000000000,0.6000000000,0.5000000000 +0.4066666667,0.6000000000,0.4966666667 +0.4133333333,0.6000000000,0.4933333333 +0.4200000000,0.6000000000,0.4900000000 +0.4266666667,0.6000000000,0.4866666667 +0.4333333333,0.6000000000,0.4833333333 +0.4400000000,0.6000000000,0.4800000000 +0.4466666667,0.6000000000,0.4766666667 +0.4533333333,0.6000000000,0.4733333333 +0.4600000000,0.6000000000,0.4700000000 +0.4666666667,0.6000000000,0.4666666667 +0.4733333333,0.6000000000,0.4633333333 +0.4800000000,0.6000000000,0.4600000000 +0.4866666667,0.6000000000,0.4566666667 +0.4933333333,0.6000000000,0.4533333333 +0.5000000000,0.6000000000,0.4500000000 +0.5066666667,0.6000000000,0.4466666667 +0.5133333333,0.6000000000,0.4433333333 +0.5200000000,0.6000000000,0.4400000000 +0.5266666667,0.6000000000,0.4366666667 +0.5333333333,0.6000000000,0.4333333333 +0.5400000000,0.6000000000,0.4300000000 +0.5466666667,0.6000000000,0.4266666667 +0.5533333333,0.6000000000,0.4233333333 +0.5600000000,0.6000000000,0.4200000000 +0.5666666667,0.6000000000,0.4166666667 +0.5733333333,0.6000000000,0.4133333333 +0.5800000000,0.6000000000,0.4100000000 +0.5866666667,0.6000000000,0.4066666667 +0.5933333333,0.6000000000,0.4033333333 +0.6000000000,0.6000000000,0.4000000000 diff --git a/src/pyvale/data/render/riley/min/tri6_sphere200/uvs.csv b/src/pyvale/data/render/riley/min/tri6_sphere200/uvs.csv new file mode 100644 index 000000000..f2d6bcfde --- /dev/null +++ b/src/pyvale/data/render/riley/min/tri6_sphere200/uvs.csv @@ -0,0 +1,961 @@ +0.4000000000,0.4000000000 +0.4066666667,0.4000000000 +0.4133333333,0.4000000000 +0.4200000000,0.4000000000 +0.4266666667,0.4000000000 +0.4333333333,0.4000000000 +0.4400000000,0.4000000000 +0.4466666667,0.4000000000 +0.4533333333,0.4000000000 +0.4600000000,0.4000000000 +0.4666666667,0.4000000000 +0.4733333333,0.4000000000 +0.4800000000,0.4000000000 +0.4866666667,0.4000000000 +0.4933333333,0.4000000000 +0.5000000000,0.4000000000 +0.5066666667,0.4000000000 +0.5133333333,0.4000000000 +0.5200000000,0.4000000000 +0.5266666667,0.4000000000 +0.5333333333,0.4000000000 +0.5400000000,0.4000000000 +0.5466666667,0.4000000000 +0.5533333333,0.4000000000 +0.5600000000,0.4000000000 +0.5666666667,0.4000000000 +0.5733333333,0.4000000000 +0.5800000000,0.4000000000 +0.5866666667,0.4000000000 +0.5933333333,0.4000000000 +0.6000000000,0.4000000000 +0.4000000000,0.4066666667 +0.4066666667,0.4066666667 +0.4133333333,0.4066666667 +0.4200000000,0.4066666667 +0.4266666667,0.4066666667 +0.4333333333,0.4066666667 +0.4400000000,0.4066666667 +0.4466666667,0.4066666667 +0.4533333333,0.4066666667 +0.4600000000,0.4066666667 +0.4666666667,0.4066666667 +0.4733333333,0.4066666667 +0.4800000000,0.4066666667 +0.4866666667,0.4066666667 +0.4933333333,0.4066666667 +0.5000000000,0.4066666667 +0.5066666667,0.4066666667 +0.5133333333,0.4066666667 +0.5200000000,0.4066666667 +0.5266666667,0.4066666667 +0.5333333333,0.4066666667 +0.5400000000,0.4066666667 +0.5466666667,0.4066666667 +0.5533333333,0.4066666667 +0.5600000000,0.4066666667 +0.5666666667,0.4066666667 +0.5733333333,0.4066666667 +0.5800000000,0.4066666667 +0.5866666667,0.4066666667 +0.5933333333,0.4066666667 +0.6000000000,0.4066666667 +0.4000000000,0.4133333333 +0.4066666667,0.4133333333 +0.4133333333,0.4133333333 +0.4200000000,0.4133333333 +0.4266666667,0.4133333333 +0.4333333333,0.4133333333 +0.4400000000,0.4133333333 +0.4466666667,0.4133333333 +0.4533333333,0.4133333333 +0.4600000000,0.4133333333 +0.4666666667,0.4133333333 +0.4733333333,0.4133333333 +0.4800000000,0.4133333333 +0.4866666667,0.4133333333 +0.4933333333,0.4133333333 +0.5000000000,0.4133333333 +0.5066666667,0.4133333333 +0.5133333333,0.4133333333 +0.5200000000,0.4133333333 +0.5266666667,0.4133333333 +0.5333333333,0.4133333333 +0.5400000000,0.4133333333 +0.5466666667,0.4133333333 +0.5533333333,0.4133333333 +0.5600000000,0.4133333333 +0.5666666667,0.4133333333 +0.5733333333,0.4133333333 +0.5800000000,0.4133333333 +0.5866666667,0.4133333333 +0.5933333333,0.4133333333 +0.6000000000,0.4133333333 +0.4000000000,0.4200000000 +0.4066666667,0.4200000000 +0.4133333333,0.4200000000 +0.4200000000,0.4200000000 +0.4266666667,0.4200000000 +0.4333333333,0.4200000000 +0.4400000000,0.4200000000 +0.4466666667,0.4200000000 +0.4533333333,0.4200000000 +0.4600000000,0.4200000000 +0.4666666667,0.4200000000 +0.4733333333,0.4200000000 +0.4800000000,0.4200000000 +0.4866666667,0.4200000000 +0.4933333333,0.4200000000 +0.5000000000,0.4200000000 +0.5066666667,0.4200000000 +0.5133333333,0.4200000000 +0.5200000000,0.4200000000 +0.5266666667,0.4200000000 +0.5333333333,0.4200000000 +0.5400000000,0.4200000000 +0.5466666667,0.4200000000 +0.5533333333,0.4200000000 +0.5600000000,0.4200000000 +0.5666666667,0.4200000000 +0.5733333333,0.4200000000 +0.5800000000,0.4200000000 +0.5866666667,0.4200000000 +0.5933333333,0.4200000000 +0.6000000000,0.4200000000 +0.4000000000,0.4266666667 +0.4066666667,0.4266666667 +0.4133333333,0.4266666667 +0.4200000000,0.4266666667 +0.4266666667,0.4266666667 +0.4333333333,0.4266666667 +0.4400000000,0.4266666667 +0.4466666667,0.4266666667 +0.4533333333,0.4266666667 +0.4600000000,0.4266666667 +0.4666666667,0.4266666667 +0.4733333333,0.4266666667 +0.4800000000,0.4266666667 +0.4866666667,0.4266666667 +0.4933333333,0.4266666667 +0.5000000000,0.4266666667 +0.5066666667,0.4266666667 +0.5133333333,0.4266666667 +0.5200000000,0.4266666667 +0.5266666667,0.4266666667 +0.5333333333,0.4266666667 +0.5400000000,0.4266666667 +0.5466666667,0.4266666667 +0.5533333333,0.4266666667 +0.5600000000,0.4266666667 +0.5666666667,0.4266666667 +0.5733333333,0.4266666667 +0.5800000000,0.4266666667 +0.5866666667,0.4266666667 +0.5933333333,0.4266666667 +0.6000000000,0.4266666667 +0.4000000000,0.4333333333 +0.4066666667,0.4333333333 +0.4133333333,0.4333333333 +0.4200000000,0.4333333333 +0.4266666667,0.4333333333 +0.4333333333,0.4333333333 +0.4400000000,0.4333333333 +0.4466666667,0.4333333333 +0.4533333333,0.4333333333 +0.4600000000,0.4333333333 +0.4666666667,0.4333333333 +0.4733333333,0.4333333333 +0.4800000000,0.4333333333 +0.4866666667,0.4333333333 +0.4933333333,0.4333333333 +0.5000000000,0.4333333333 +0.5066666667,0.4333333333 +0.5133333333,0.4333333333 +0.5200000000,0.4333333333 +0.5266666667,0.4333333333 +0.5333333333,0.4333333333 +0.5400000000,0.4333333333 +0.5466666667,0.4333333333 +0.5533333333,0.4333333333 +0.5600000000,0.4333333333 +0.5666666667,0.4333333333 +0.5733333333,0.4333333333 +0.5800000000,0.4333333333 +0.5866666667,0.4333333333 +0.5933333333,0.4333333333 +0.6000000000,0.4333333333 +0.4000000000,0.4400000000 +0.4066666667,0.4400000000 +0.4133333333,0.4400000000 +0.4200000000,0.4400000000 +0.4266666667,0.4400000000 +0.4333333333,0.4400000000 +0.4400000000,0.4400000000 +0.4466666667,0.4400000000 +0.4533333333,0.4400000000 +0.4600000000,0.4400000000 +0.4666666667,0.4400000000 +0.4733333333,0.4400000000 +0.4800000000,0.4400000000 +0.4866666667,0.4400000000 +0.4933333333,0.4400000000 +0.5000000000,0.4400000000 +0.5066666667,0.4400000000 +0.5133333333,0.4400000000 +0.5200000000,0.4400000000 +0.5266666667,0.4400000000 +0.5333333333,0.4400000000 +0.5400000000,0.4400000000 +0.5466666667,0.4400000000 +0.5533333333,0.4400000000 +0.5600000000,0.4400000000 +0.5666666667,0.4400000000 +0.5733333333,0.4400000000 +0.5800000000,0.4400000000 +0.5866666667,0.4400000000 +0.5933333333,0.4400000000 +0.6000000000,0.4400000000 +0.4000000000,0.4466666667 +0.4066666667,0.4466666667 +0.4133333333,0.4466666667 +0.4200000000,0.4466666667 +0.4266666667,0.4466666667 +0.4333333333,0.4466666667 +0.4400000000,0.4466666667 +0.4466666667,0.4466666667 +0.4533333333,0.4466666667 +0.4600000000,0.4466666667 +0.4666666667,0.4466666667 +0.4733333333,0.4466666667 +0.4800000000,0.4466666667 +0.4866666667,0.4466666667 +0.4933333333,0.4466666667 +0.5000000000,0.4466666667 +0.5066666667,0.4466666667 +0.5133333333,0.4466666667 +0.5200000000,0.4466666667 +0.5266666667,0.4466666667 +0.5333333333,0.4466666667 +0.5400000000,0.4466666667 +0.5466666667,0.4466666667 +0.5533333333,0.4466666667 +0.5600000000,0.4466666667 +0.5666666667,0.4466666667 +0.5733333333,0.4466666667 +0.5800000000,0.4466666667 +0.5866666667,0.4466666667 +0.5933333333,0.4466666667 +0.6000000000,0.4466666667 +0.4000000000,0.4533333333 +0.4066666667,0.4533333333 +0.4133333333,0.4533333333 +0.4200000000,0.4533333333 +0.4266666667,0.4533333333 +0.4333333333,0.4533333333 +0.4400000000,0.4533333333 +0.4466666667,0.4533333333 +0.4533333333,0.4533333333 +0.4600000000,0.4533333333 +0.4666666667,0.4533333333 +0.4733333333,0.4533333333 +0.4800000000,0.4533333333 +0.4866666667,0.4533333333 +0.4933333333,0.4533333333 +0.5000000000,0.4533333333 +0.5066666667,0.4533333333 +0.5133333333,0.4533333333 +0.5200000000,0.4533333333 +0.5266666667,0.4533333333 +0.5333333333,0.4533333333 +0.5400000000,0.4533333333 +0.5466666667,0.4533333333 +0.5533333333,0.4533333333 +0.5600000000,0.4533333333 +0.5666666667,0.4533333333 +0.5733333333,0.4533333333 +0.5800000000,0.4533333333 +0.5866666667,0.4533333333 +0.5933333333,0.4533333333 +0.6000000000,0.4533333333 +0.4000000000,0.4600000000 +0.4066666667,0.4600000000 +0.4133333333,0.4600000000 +0.4200000000,0.4600000000 +0.4266666667,0.4600000000 +0.4333333333,0.4600000000 +0.4400000000,0.4600000000 +0.4466666667,0.4600000000 +0.4533333333,0.4600000000 +0.4600000000,0.4600000000 +0.4666666667,0.4600000000 +0.4733333333,0.4600000000 +0.4800000000,0.4600000000 +0.4866666667,0.4600000000 +0.4933333333,0.4600000000 +0.5000000000,0.4600000000 +0.5066666667,0.4600000000 +0.5133333333,0.4600000000 +0.5200000000,0.4600000000 +0.5266666667,0.4600000000 +0.5333333333,0.4600000000 +0.5400000000,0.4600000000 +0.5466666667,0.4600000000 +0.5533333333,0.4600000000 +0.5600000000,0.4600000000 +0.5666666667,0.4600000000 +0.5733333333,0.4600000000 +0.5800000000,0.4600000000 +0.5866666667,0.4600000000 +0.5933333333,0.4600000000 +0.6000000000,0.4600000000 +0.4000000000,0.4666666667 +0.4066666667,0.4666666667 +0.4133333333,0.4666666667 +0.4200000000,0.4666666667 +0.4266666667,0.4666666667 +0.4333333333,0.4666666667 +0.4400000000,0.4666666667 +0.4466666667,0.4666666667 +0.4533333333,0.4666666667 +0.4600000000,0.4666666667 +0.4666666667,0.4666666667 +0.4733333333,0.4666666667 +0.4800000000,0.4666666667 +0.4866666667,0.4666666667 +0.4933333333,0.4666666667 +0.5000000000,0.4666666667 +0.5066666667,0.4666666667 +0.5133333333,0.4666666667 +0.5200000000,0.4666666667 +0.5266666667,0.4666666667 +0.5333333333,0.4666666667 +0.5400000000,0.4666666667 +0.5466666667,0.4666666667 +0.5533333333,0.4666666667 +0.5600000000,0.4666666667 +0.5666666667,0.4666666667 +0.5733333333,0.4666666667 +0.5800000000,0.4666666667 +0.5866666667,0.4666666667 +0.5933333333,0.4666666667 +0.6000000000,0.4666666667 +0.4000000000,0.4733333333 +0.4066666667,0.4733333333 +0.4133333333,0.4733333333 +0.4200000000,0.4733333333 +0.4266666667,0.4733333333 +0.4333333333,0.4733333333 +0.4400000000,0.4733333333 +0.4466666667,0.4733333333 +0.4533333333,0.4733333333 +0.4600000000,0.4733333333 +0.4666666667,0.4733333333 +0.4733333333,0.4733333333 +0.4800000000,0.4733333333 +0.4866666667,0.4733333333 +0.4933333333,0.4733333333 +0.5000000000,0.4733333333 +0.5066666667,0.4733333333 +0.5133333333,0.4733333333 +0.5200000000,0.4733333333 +0.5266666667,0.4733333333 +0.5333333333,0.4733333333 +0.5400000000,0.4733333333 +0.5466666667,0.4733333333 +0.5533333333,0.4733333333 +0.5600000000,0.4733333333 +0.5666666667,0.4733333333 +0.5733333333,0.4733333333 +0.5800000000,0.4733333333 +0.5866666667,0.4733333333 +0.5933333333,0.4733333333 +0.6000000000,0.4733333333 +0.4000000000,0.4800000000 +0.4066666667,0.4800000000 +0.4133333333,0.4800000000 +0.4200000000,0.4800000000 +0.4266666667,0.4800000000 +0.4333333333,0.4800000000 +0.4400000000,0.4800000000 +0.4466666667,0.4800000000 +0.4533333333,0.4800000000 +0.4600000000,0.4800000000 +0.4666666667,0.4800000000 +0.4733333333,0.4800000000 +0.4800000000,0.4800000000 +0.4866666667,0.4800000000 +0.4933333333,0.4800000000 +0.5000000000,0.4800000000 +0.5066666667,0.4800000000 +0.5133333333,0.4800000000 +0.5200000000,0.4800000000 +0.5266666667,0.4800000000 +0.5333333333,0.4800000000 +0.5400000000,0.4800000000 +0.5466666667,0.4800000000 +0.5533333333,0.4800000000 +0.5600000000,0.4800000000 +0.5666666667,0.4800000000 +0.5733333333,0.4800000000 +0.5800000000,0.4800000000 +0.5866666667,0.4800000000 +0.5933333333,0.4800000000 +0.6000000000,0.4800000000 +0.4000000000,0.4866666667 +0.4066666667,0.4866666667 +0.4133333333,0.4866666667 +0.4200000000,0.4866666667 +0.4266666667,0.4866666667 +0.4333333333,0.4866666667 +0.4400000000,0.4866666667 +0.4466666667,0.4866666667 +0.4533333333,0.4866666667 +0.4600000000,0.4866666667 +0.4666666667,0.4866666667 +0.4733333333,0.4866666667 +0.4800000000,0.4866666667 +0.4866666667,0.4866666667 +0.4933333333,0.4866666667 +0.5000000000,0.4866666667 +0.5066666667,0.4866666667 +0.5133333333,0.4866666667 +0.5200000000,0.4866666667 +0.5266666667,0.4866666667 +0.5333333333,0.4866666667 +0.5400000000,0.4866666667 +0.5466666667,0.4866666667 +0.5533333333,0.4866666667 +0.5600000000,0.4866666667 +0.5666666667,0.4866666667 +0.5733333333,0.4866666667 +0.5800000000,0.4866666667 +0.5866666667,0.4866666667 +0.5933333333,0.4866666667 +0.6000000000,0.4866666667 +0.4000000000,0.4933333333 +0.4066666667,0.4933333333 +0.4133333333,0.4933333333 +0.4200000000,0.4933333333 +0.4266666667,0.4933333333 +0.4333333333,0.4933333333 +0.4400000000,0.4933333333 +0.4466666667,0.4933333333 +0.4533333333,0.4933333333 +0.4600000000,0.4933333333 +0.4666666667,0.4933333333 +0.4733333333,0.4933333333 +0.4800000000,0.4933333333 +0.4866666667,0.4933333333 +0.4933333333,0.4933333333 +0.5000000000,0.4933333333 +0.5066666667,0.4933333333 +0.5133333333,0.4933333333 +0.5200000000,0.4933333333 +0.5266666667,0.4933333333 +0.5333333333,0.4933333333 +0.5400000000,0.4933333333 +0.5466666667,0.4933333333 +0.5533333333,0.4933333333 +0.5600000000,0.4933333333 +0.5666666667,0.4933333333 +0.5733333333,0.4933333333 +0.5800000000,0.4933333333 +0.5866666667,0.4933333333 +0.5933333333,0.4933333333 +0.6000000000,0.4933333333 +0.4000000000,0.5000000000 +0.4066666667,0.5000000000 +0.4133333333,0.5000000000 +0.4200000000,0.5000000000 +0.4266666667,0.5000000000 +0.4333333333,0.5000000000 +0.4400000000,0.5000000000 +0.4466666667,0.5000000000 +0.4533333333,0.5000000000 +0.4600000000,0.5000000000 +0.4666666667,0.5000000000 +0.4733333333,0.5000000000 +0.4800000000,0.5000000000 +0.4866666667,0.5000000000 +0.4933333333,0.5000000000 +0.5000000000,0.5000000000 +0.5066666667,0.5000000000 +0.5133333333,0.5000000000 +0.5200000000,0.5000000000 +0.5266666667,0.5000000000 +0.5333333333,0.5000000000 +0.5400000000,0.5000000000 +0.5466666667,0.5000000000 +0.5533333333,0.5000000000 +0.5600000000,0.5000000000 +0.5666666667,0.5000000000 +0.5733333333,0.5000000000 +0.5800000000,0.5000000000 +0.5866666667,0.5000000000 +0.5933333333,0.5000000000 +0.6000000000,0.5000000000 +0.4000000000,0.5066666667 +0.4066666667,0.5066666667 +0.4133333333,0.5066666667 +0.4200000000,0.5066666667 +0.4266666667,0.5066666667 +0.4333333333,0.5066666667 +0.4400000000,0.5066666667 +0.4466666667,0.5066666667 +0.4533333333,0.5066666667 +0.4600000000,0.5066666667 +0.4666666667,0.5066666667 +0.4733333333,0.5066666667 +0.4800000000,0.5066666667 +0.4866666667,0.5066666667 +0.4933333333,0.5066666667 +0.5000000000,0.5066666667 +0.5066666667,0.5066666667 +0.5133333333,0.5066666667 +0.5200000000,0.5066666667 +0.5266666667,0.5066666667 +0.5333333333,0.5066666667 +0.5400000000,0.5066666667 +0.5466666667,0.5066666667 +0.5533333333,0.5066666667 +0.5600000000,0.5066666667 +0.5666666667,0.5066666667 +0.5733333333,0.5066666667 +0.5800000000,0.5066666667 +0.5866666667,0.5066666667 +0.5933333333,0.5066666667 +0.6000000000,0.5066666667 +0.4000000000,0.5133333333 +0.4066666667,0.5133333333 +0.4133333333,0.5133333333 +0.4200000000,0.5133333333 +0.4266666667,0.5133333333 +0.4333333333,0.5133333333 +0.4400000000,0.5133333333 +0.4466666667,0.5133333333 +0.4533333333,0.5133333333 +0.4600000000,0.5133333333 +0.4666666667,0.5133333333 +0.4733333333,0.5133333333 +0.4800000000,0.5133333333 +0.4866666667,0.5133333333 +0.4933333333,0.5133333333 +0.5000000000,0.5133333333 +0.5066666667,0.5133333333 +0.5133333333,0.5133333333 +0.5200000000,0.5133333333 +0.5266666667,0.5133333333 +0.5333333333,0.5133333333 +0.5400000000,0.5133333333 +0.5466666667,0.5133333333 +0.5533333333,0.5133333333 +0.5600000000,0.5133333333 +0.5666666667,0.5133333333 +0.5733333333,0.5133333333 +0.5800000000,0.5133333333 +0.5866666667,0.5133333333 +0.5933333333,0.5133333333 +0.6000000000,0.5133333333 +0.4000000000,0.5200000000 +0.4066666667,0.5200000000 +0.4133333333,0.5200000000 +0.4200000000,0.5200000000 +0.4266666667,0.5200000000 +0.4333333333,0.5200000000 +0.4400000000,0.5200000000 +0.4466666667,0.5200000000 +0.4533333333,0.5200000000 +0.4600000000,0.5200000000 +0.4666666667,0.5200000000 +0.4733333333,0.5200000000 +0.4800000000,0.5200000000 +0.4866666667,0.5200000000 +0.4933333333,0.5200000000 +0.5000000000,0.5200000000 +0.5066666667,0.5200000000 +0.5133333333,0.5200000000 +0.5200000000,0.5200000000 +0.5266666667,0.5200000000 +0.5333333333,0.5200000000 +0.5400000000,0.5200000000 +0.5466666667,0.5200000000 +0.5533333333,0.5200000000 +0.5600000000,0.5200000000 +0.5666666667,0.5200000000 +0.5733333333,0.5200000000 +0.5800000000,0.5200000000 +0.5866666667,0.5200000000 +0.5933333333,0.5200000000 +0.6000000000,0.5200000000 +0.4000000000,0.5266666667 +0.4066666667,0.5266666667 +0.4133333333,0.5266666667 +0.4200000000,0.5266666667 +0.4266666667,0.5266666667 +0.4333333333,0.5266666667 +0.4400000000,0.5266666667 +0.4466666667,0.5266666667 +0.4533333333,0.5266666667 +0.4600000000,0.5266666667 +0.4666666667,0.5266666667 +0.4733333333,0.5266666667 +0.4800000000,0.5266666667 +0.4866666667,0.5266666667 +0.4933333333,0.5266666667 +0.5000000000,0.5266666667 +0.5066666667,0.5266666667 +0.5133333333,0.5266666667 +0.5200000000,0.5266666667 +0.5266666667,0.5266666667 +0.5333333333,0.5266666667 +0.5400000000,0.5266666667 +0.5466666667,0.5266666667 +0.5533333333,0.5266666667 +0.5600000000,0.5266666667 +0.5666666667,0.5266666667 +0.5733333333,0.5266666667 +0.5800000000,0.5266666667 +0.5866666667,0.5266666667 +0.5933333333,0.5266666667 +0.6000000000,0.5266666667 +0.4000000000,0.5333333333 +0.4066666667,0.5333333333 +0.4133333333,0.5333333333 +0.4200000000,0.5333333333 +0.4266666667,0.5333333333 +0.4333333333,0.5333333333 +0.4400000000,0.5333333333 +0.4466666667,0.5333333333 +0.4533333333,0.5333333333 +0.4600000000,0.5333333333 +0.4666666667,0.5333333333 +0.4733333333,0.5333333333 +0.4800000000,0.5333333333 +0.4866666667,0.5333333333 +0.4933333333,0.5333333333 +0.5000000000,0.5333333333 +0.5066666667,0.5333333333 +0.5133333333,0.5333333333 +0.5200000000,0.5333333333 +0.5266666667,0.5333333333 +0.5333333333,0.5333333333 +0.5400000000,0.5333333333 +0.5466666667,0.5333333333 +0.5533333333,0.5333333333 +0.5600000000,0.5333333333 +0.5666666667,0.5333333333 +0.5733333333,0.5333333333 +0.5800000000,0.5333333333 +0.5866666667,0.5333333333 +0.5933333333,0.5333333333 +0.6000000000,0.5333333333 +0.4000000000,0.5400000000 +0.4066666667,0.5400000000 +0.4133333333,0.5400000000 +0.4200000000,0.5400000000 +0.4266666667,0.5400000000 +0.4333333333,0.5400000000 +0.4400000000,0.5400000000 +0.4466666667,0.5400000000 +0.4533333333,0.5400000000 +0.4600000000,0.5400000000 +0.4666666667,0.5400000000 +0.4733333333,0.5400000000 +0.4800000000,0.5400000000 +0.4866666667,0.5400000000 +0.4933333333,0.5400000000 +0.5000000000,0.5400000000 +0.5066666667,0.5400000000 +0.5133333333,0.5400000000 +0.5200000000,0.5400000000 +0.5266666667,0.5400000000 +0.5333333333,0.5400000000 +0.5400000000,0.5400000000 +0.5466666667,0.5400000000 +0.5533333333,0.5400000000 +0.5600000000,0.5400000000 +0.5666666667,0.5400000000 +0.5733333333,0.5400000000 +0.5800000000,0.5400000000 +0.5866666667,0.5400000000 +0.5933333333,0.5400000000 +0.6000000000,0.5400000000 +0.4000000000,0.5466666667 +0.4066666667,0.5466666667 +0.4133333333,0.5466666667 +0.4200000000,0.5466666667 +0.4266666667,0.5466666667 +0.4333333333,0.5466666667 +0.4400000000,0.5466666667 +0.4466666667,0.5466666667 +0.4533333333,0.5466666667 +0.4600000000,0.5466666667 +0.4666666667,0.5466666667 +0.4733333333,0.5466666667 +0.4800000000,0.5466666667 +0.4866666667,0.5466666667 +0.4933333333,0.5466666667 +0.5000000000,0.5466666667 +0.5066666667,0.5466666667 +0.5133333333,0.5466666667 +0.5200000000,0.5466666667 +0.5266666667,0.5466666667 +0.5333333333,0.5466666667 +0.5400000000,0.5466666667 +0.5466666667,0.5466666667 +0.5533333333,0.5466666667 +0.5600000000,0.5466666667 +0.5666666667,0.5466666667 +0.5733333333,0.5466666667 +0.5800000000,0.5466666667 +0.5866666667,0.5466666667 +0.5933333333,0.5466666667 +0.6000000000,0.5466666667 +0.4000000000,0.5533333333 +0.4066666667,0.5533333333 +0.4133333333,0.5533333333 +0.4200000000,0.5533333333 +0.4266666667,0.5533333333 +0.4333333333,0.5533333333 +0.4400000000,0.5533333333 +0.4466666667,0.5533333333 +0.4533333333,0.5533333333 +0.4600000000,0.5533333333 +0.4666666667,0.5533333333 +0.4733333333,0.5533333333 +0.4800000000,0.5533333333 +0.4866666667,0.5533333333 +0.4933333333,0.5533333333 +0.5000000000,0.5533333333 +0.5066666667,0.5533333333 +0.5133333333,0.5533333333 +0.5200000000,0.5533333333 +0.5266666667,0.5533333333 +0.5333333333,0.5533333333 +0.5400000000,0.5533333333 +0.5466666667,0.5533333333 +0.5533333333,0.5533333333 +0.5600000000,0.5533333333 +0.5666666667,0.5533333333 +0.5733333333,0.5533333333 +0.5800000000,0.5533333333 +0.5866666667,0.5533333333 +0.5933333333,0.5533333333 +0.6000000000,0.5533333333 +0.4000000000,0.5600000000 +0.4066666667,0.5600000000 +0.4133333333,0.5600000000 +0.4200000000,0.5600000000 +0.4266666667,0.5600000000 +0.4333333333,0.5600000000 +0.4400000000,0.5600000000 +0.4466666667,0.5600000000 +0.4533333333,0.5600000000 +0.4600000000,0.5600000000 +0.4666666667,0.5600000000 +0.4733333333,0.5600000000 +0.4800000000,0.5600000000 +0.4866666667,0.5600000000 +0.4933333333,0.5600000000 +0.5000000000,0.5600000000 +0.5066666667,0.5600000000 +0.5133333333,0.5600000000 +0.5200000000,0.5600000000 +0.5266666667,0.5600000000 +0.5333333333,0.5600000000 +0.5400000000,0.5600000000 +0.5466666667,0.5600000000 +0.5533333333,0.5600000000 +0.5600000000,0.5600000000 +0.5666666667,0.5600000000 +0.5733333333,0.5600000000 +0.5800000000,0.5600000000 +0.5866666667,0.5600000000 +0.5933333333,0.5600000000 +0.6000000000,0.5600000000 +0.4000000000,0.5666666667 +0.4066666667,0.5666666667 +0.4133333333,0.5666666667 +0.4200000000,0.5666666667 +0.4266666667,0.5666666667 +0.4333333333,0.5666666667 +0.4400000000,0.5666666667 +0.4466666667,0.5666666667 +0.4533333333,0.5666666667 +0.4600000000,0.5666666667 +0.4666666667,0.5666666667 +0.4733333333,0.5666666667 +0.4800000000,0.5666666667 +0.4866666667,0.5666666667 +0.4933333333,0.5666666667 +0.5000000000,0.5666666667 +0.5066666667,0.5666666667 +0.5133333333,0.5666666667 +0.5200000000,0.5666666667 +0.5266666667,0.5666666667 +0.5333333333,0.5666666667 +0.5400000000,0.5666666667 +0.5466666667,0.5666666667 +0.5533333333,0.5666666667 +0.5600000000,0.5666666667 +0.5666666667,0.5666666667 +0.5733333333,0.5666666667 +0.5800000000,0.5666666667 +0.5866666667,0.5666666667 +0.5933333333,0.5666666667 +0.6000000000,0.5666666667 +0.4000000000,0.5733333333 +0.4066666667,0.5733333333 +0.4133333333,0.5733333333 +0.4200000000,0.5733333333 +0.4266666667,0.5733333333 +0.4333333333,0.5733333333 +0.4400000000,0.5733333333 +0.4466666667,0.5733333333 +0.4533333333,0.5733333333 +0.4600000000,0.5733333333 +0.4666666667,0.5733333333 +0.4733333333,0.5733333333 +0.4800000000,0.5733333333 +0.4866666667,0.5733333333 +0.4933333333,0.5733333333 +0.5000000000,0.5733333333 +0.5066666667,0.5733333333 +0.5133333333,0.5733333333 +0.5200000000,0.5733333333 +0.5266666667,0.5733333333 +0.5333333333,0.5733333333 +0.5400000000,0.5733333333 +0.5466666667,0.5733333333 +0.5533333333,0.5733333333 +0.5600000000,0.5733333333 +0.5666666667,0.5733333333 +0.5733333333,0.5733333333 +0.5800000000,0.5733333333 +0.5866666667,0.5733333333 +0.5933333333,0.5733333333 +0.6000000000,0.5733333333 +0.4000000000,0.5800000000 +0.4066666667,0.5800000000 +0.4133333333,0.5800000000 +0.4200000000,0.5800000000 +0.4266666667,0.5800000000 +0.4333333333,0.5800000000 +0.4400000000,0.5800000000 +0.4466666667,0.5800000000 +0.4533333333,0.5800000000 +0.4600000000,0.5800000000 +0.4666666667,0.5800000000 +0.4733333333,0.5800000000 +0.4800000000,0.5800000000 +0.4866666667,0.5800000000 +0.4933333333,0.5800000000 +0.5000000000,0.5800000000 +0.5066666667,0.5800000000 +0.5133333333,0.5800000000 +0.5200000000,0.5800000000 +0.5266666667,0.5800000000 +0.5333333333,0.5800000000 +0.5400000000,0.5800000000 +0.5466666667,0.5800000000 +0.5533333333,0.5800000000 +0.5600000000,0.5800000000 +0.5666666667,0.5800000000 +0.5733333333,0.5800000000 +0.5800000000,0.5800000000 +0.5866666667,0.5800000000 +0.5933333333,0.5800000000 +0.6000000000,0.5800000000 +0.4000000000,0.5866666667 +0.4066666667,0.5866666667 +0.4133333333,0.5866666667 +0.4200000000,0.5866666667 +0.4266666667,0.5866666667 +0.4333333333,0.5866666667 +0.4400000000,0.5866666667 +0.4466666667,0.5866666667 +0.4533333333,0.5866666667 +0.4600000000,0.5866666667 +0.4666666667,0.5866666667 +0.4733333333,0.5866666667 +0.4800000000,0.5866666667 +0.4866666667,0.5866666667 +0.4933333333,0.5866666667 +0.5000000000,0.5866666667 +0.5066666667,0.5866666667 +0.5133333333,0.5866666667 +0.5200000000,0.5866666667 +0.5266666667,0.5866666667 +0.5333333333,0.5866666667 +0.5400000000,0.5866666667 +0.5466666667,0.5866666667 +0.5533333333,0.5866666667 +0.5600000000,0.5866666667 +0.5666666667,0.5866666667 +0.5733333333,0.5866666667 +0.5800000000,0.5866666667 +0.5866666667,0.5866666667 +0.5933333333,0.5866666667 +0.6000000000,0.5866666667 +0.4000000000,0.5933333333 +0.4066666667,0.5933333333 +0.4133333333,0.5933333333 +0.4200000000,0.5933333333 +0.4266666667,0.5933333333 +0.4333333333,0.5933333333 +0.4400000000,0.5933333333 +0.4466666667,0.5933333333 +0.4533333333,0.5933333333 +0.4600000000,0.5933333333 +0.4666666667,0.5933333333 +0.4733333333,0.5933333333 +0.4800000000,0.5933333333 +0.4866666667,0.5933333333 +0.4933333333,0.5933333333 +0.5000000000,0.5933333333 +0.5066666667,0.5933333333 +0.5133333333,0.5933333333 +0.5200000000,0.5933333333 +0.5266666667,0.5933333333 +0.5333333333,0.5933333333 +0.5400000000,0.5933333333 +0.5466666667,0.5933333333 +0.5533333333,0.5933333333 +0.5600000000,0.5933333333 +0.5666666667,0.5933333333 +0.5733333333,0.5933333333 +0.5800000000,0.5933333333 +0.5866666667,0.5933333333 +0.5933333333,0.5933333333 +0.6000000000,0.5933333333 +0.4000000000,0.6000000000 +0.4066666667,0.6000000000 +0.4133333333,0.6000000000 +0.4200000000,0.6000000000 +0.4266666667,0.6000000000 +0.4333333333,0.6000000000 +0.4400000000,0.6000000000 +0.4466666667,0.6000000000 +0.4533333333,0.6000000000 +0.4600000000,0.6000000000 +0.4666666667,0.6000000000 +0.4733333333,0.6000000000 +0.4800000000,0.6000000000 +0.4866666667,0.6000000000 +0.4933333333,0.6000000000 +0.5000000000,0.6000000000 +0.5066666667,0.6000000000 +0.5133333333,0.6000000000 +0.5200000000,0.6000000000 +0.5266666667,0.6000000000 +0.5333333333,0.6000000000 +0.5400000000,0.6000000000 +0.5466666667,0.6000000000 +0.5533333333,0.6000000000 +0.5600000000,0.6000000000 +0.5666666667,0.6000000000 +0.5733333333,0.6000000000 +0.5800000000,0.6000000000 +0.5866666667,0.6000000000 +0.5933333333,0.6000000000 +0.6000000000,0.6000000000 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad4/connectivity.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad4/connectivity.csv new file mode 100644 index 000000000..8cbba4f22 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad4/connectivity.csv @@ -0,0 +1,208 @@ +197,223,216,232 +141,205,214,181 +145,195,233,196 +229,194,137,217 +232,209,210,219 +163,98,107,108 +115,38,37,36 +195,212,236,233 +156,174,172,126 +234,148,105,181 +46,45,171,124 +194,229,237,222 +172,69,68,67 +217,137,208,221 +231,220,191,244 +73,72,71,112 +187,193,219,210 +45,178,190,171 +224,149,144,180 +231,190,192,220 +71,70,174,112 +51,93,129,52 +233,236,238,246 +238,236,249,242 +191,220,151,89 +94,102,4,3 +100,163,108,111 +117,99,97,150 +235,186,140,154 +247,133,162,189 +114,194,222,153 +164,100,111,158 +162,133,1,0 +196,144,130,152 +155,7,6,109 +225,201,207,147 +33,32,107,169 +190,178,150,192 +175,102,147,207 +42,41,98,163 +215,180,144,196 +152,130,77,101 +149,203,104,125 +235,110,124,171 +186,244,237,230 +44,43,100,164 +66,65,116,126 +247,2,1,133 +227,224,246,238 +0,83,104,162 +40,39,38,115 +154,140,93,134 +97,27,26,120 +246,215,196,233 +77,156,173,101 +194,114,85,137 +244,191,222,237 +218,182,228,243 +64,84,195,145 +124,110,49,48 +155,207,201,96 +108,107,32,31 +220,192,120,151 +157,96,201,202 +89,151,25,24 +99,28,27,97 +206,230,237,229 +239,250,226,213 +214,243,241,245 +96,157,9,8 +213,226,200,136 +136,202,240,213 +106,156,77,76 +46,124,48,47 +155,96,8,7 +76,75,112,106 +250,245,241,226 +211,221,193,187 +226,241,198,200 +228,182,160,86 +150,178,45,117 +157,87,10,9 +122,11,10,87 +225,240,202,201 +84,184,212,195 +161,219,193,138 +120,26,25,151 +87,157,202,136 +82,81,80,125 +165,86,13,12 +182,199,91,160 +165,198,228,86 +88,18,17,118 +161,88,118,197 +83,82,125,104 +67,66,126,172 +235,154,134,110 +122,165,12,11 +121,166,20,19 +102,94,183,147 +86,160,14,13 +110,134,50,49 +160,91,15,14 +199,223,159,91 +158,29,28,99 +158,111,30,29 +111,108,31,30 +169,167,36,119 +138,121,88,161 +91,159,16,15 +223,197,118,159 +159,118,17,16 +232,219,161,197 +114,22,21,85 +134,93,51,50 +21,20,166,85 +89,153,222,191 +153,23,22,114 +221,208,138,193 +24,23,153,89 +136,200,122,87 +163,100,43,42 +115,98,41,40 +19,18,88,121 +166,208,137,85 +218,248,199,182 +95,78,77,130 +150,97,120,192 +247,94,3,2 +218,205,204,248 +75,74,73,112 +204,205,141,176 +148,84,64,63 +149,95,130,144 +147,183,242,225 +239,212,184,234 +148,63,62,105 +235,231,244,186 +183,227,238,242 +221,211,188,217 +240,225,242,249 +205,218,243,214 +179,92,123,143 +216,223,199,248 +188,211,143,177 +105,62,61,128 +141,128,90,176 +246,224,180,215 +56,92,135,57 +211,187,179,143 +198,165,122,200 +125,80,79,131 +84,148,234,184 +214,245,234,181 +143,123,132,177 +208,166,121,138 +247,227,183,94 +142,135,92,179 +92,56,55,123 +156,126,116,173 +152,101,173,116 +149,224,189,203 +131,79,78,95 +189,162,104,203 +206,188,177,146 +128,61,60,90 +245,250,239,234 +6,5,4,109 +177,132,103,146 +217,188,206,229 +123,55,54,132 +187,210,142,179 +109,175,207,155 +57,135,113,58 +103,53,52,129 +145,116,65,64 +34,33,169,119 +146,103,129,168 +36,35,34,119 +164,117,45,44 +176,90,127,139 +113,170,139,127 +248,204,185,216 +170,113,135,142 +176,139,185,204 +90,60,59,127 +127,59,58,113 +170,142,210,209 +209,232,216,185 +139,170,209,185 +132,54,53,103 +230,206,146,168 +181,105,128,141 +241,243,228,198 +69,172,174,70 +102,175,109,4 +168,140,186,230 +95,149,125,131 +171,190,231,235 +156,106,112,174 +169,107,98,167 +36,167,98,115 +158,99,117,164 +196,152,116,145 +93,140,168,129 +247,189,224,227 +240,249,239,213 +212,239,249,236 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad4/coords.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad4/coords.csv new file mode 100644 index 000000000..12cc74075 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad4/coords.csv @@ -0,0 +1,251 @@ +8.499999999999999778e-01,-1.668527987443783889e-01,0.000000000000000000e+00 +8.416260696503050642e-01,-1.944629642366926259e-01,0.000000000000000000e+00 +8.236462150357052314e-01,-2.174355594138186465e-01,0.000000000000000000e+00 +8.247665497673086765e-01,-2.427573012914442385e-01,0.000000000000000000e+00 +8.292146696939386441e-01,-2.715036850408340530e-01,0.000000000000000000e+00 +8.377221687782822057e-01,-2.952555071785863960e-01,0.000000000000000000e+00 +8.240356525759424677e-01,-3.165461782224039955e-01,0.000000000000000000e+00 +7.948575851459234176e-01,-3.194840895445634210e-01,0.000000000000000000e+00 +7.667971295466150528e-01,-3.281530464365033373e-01,0.000000000000000000e+00 +7.383880899717630841e-01,-3.357218201388419421e-01,0.000000000000000000e+00 +7.101895933659349014e-01,-3.440432940190208955e-01,0.000000000000000000e+00 +6.813377951207933991e-01,-3.496735407268184992e-01,0.000000000000000000e+00 +6.521740127649189311e-01,-3.534089958349609928e-01,0.000000000000000000e+00 +6.228763018649209338e-01,-3.559029106239530171e-01,0.000000000000000000e+00 +5.935158344643151063e-01,-3.575148599839325647e-01,0.000000000000000000e+00 +5.641284655377833968e-01,-3.585340604733041614e-01,0.000000000000000000e+00 +5.347296815010800231e-01,-3.591503035728551008e-01,0.000000000000000000e+00 +5.053259126007306756e-01,-3.594290565132558513e-01,0.000000000000000000e+00 +4.759236683506145593e-01,-3.590829996503789312e-01,0.000000000000000000e+00 +4.465708887805746041e-01,-3.574091703729705971e-01,0.000000000000000000e+00 +4.173592172451555116e-01,-3.540620010656433392e-01,0.000000000000000000e+00 +3.882483886992379452e-01,-3.499173433795512711e-01,0.000000000000000000e+00 +3.594483680934044689e-01,-3.440306866654019302e-01,0.000000000000000000e+00 +3.307658286376534695e-01,-3.376289928656056594e-01,0.000000000000000000e+00 +3.014370009593641542e-01,-3.372063343039778949e-01,0.000000000000000000e+00 +2.722256377020462748e-01,-3.405631921699279197e-01,0.000000000000000000e+00 +2.429112831845596510e-01,-3.427846543020944825e-01,0.000000000000000000e+00 +2.135167506894664058e-01,-3.427721707569108545e-01,0.000000000000000000e+00 +1.845568101499214519e-01,-3.380258577572242129e-01,0.000000000000000000e+00 +1.554079928587640547e-01,-3.387073467945612149e-01,0.000000000000000000e+00 +1.275694742405054927e-01,-3.481356246902564955e-01,0.000000000000000000e+00 +9.986684256297989615e-02,-3.579965126140780551e-01,0.000000000000000000e+00 +7.190625002752873418e-02,-3.670298819488352349e-01,0.000000000000000000e+00 +4.297666233942303016e-02,-3.722026505986222311e-01,0.000000000000000000e+00 +1.729976819011945846e-02,-3.689861443324424783e-01,0.000000000000000000e+00 +4.315697980447884621e-03,-3.532748951540886639e-01,0.000000000000000000e+00 +2.408778112370544081e-02,-3.318382546157220281e-01,0.000000000000000000e+00 +7.993999956527242726e-03,-3.296387925169179667e-01,0.000000000000000000e+00 +6.873504248247282872e-03,-3.049208691991054376e-01,0.000000000000000000e+00 +2.676479578963370312e-02,-2.847847636759342493e-01,0.000000000000000000e+00 +5.366765150537460005e-02,-2.729164579907342736e-01,0.000000000000000000e+00 +8.186368068868647707e-02,-2.648896234285154083e-01,0.000000000000000000e+00 +1.107644769548538216e-01,-2.595090697480262887e-01,0.000000000000000000e+00 +1.391072692501419961e-01,-2.517050535746816475e-01,0.000000000000000000e+00 +1.678181833588051619e-01,-2.457744302090351940e-01,0.000000000000000000e+00 +1.970903296048803766e-01,-2.473955882414166640e-01,0.000000000000000000e+00 +1.767136547613014919e-01,-2.340421160686700919e-01,0.000000000000000000e+00 +1.775209668546756936e-01,-2.075463246591421895e-01,0.000000000000000000e+00 +2.010630950388530291e-01,-1.904540184284689852e-01,0.000000000000000000e+00 +2.273001820442875909e-01,-1.776159326507070757e-01,0.000000000000000000e+00 +2.504603495115140799e-01,-1.595789766320935554e-01,0.000000000000000000e+00 +2.770308790927559217e-01,-1.471262262271763321e-01,0.000000000000000000e+00 +3.056813712325323062e-01,-1.407345105531869200e-01,0.000000000000000000e+00 +3.350021187676797130e-01,-1.388293559584034276e-01,0.000000000000000000e+00 +3.643731743095336983e-01,-1.400655973863164372e-01,0.000000000000000000e+00 +3.936126359217542725e-01,-1.431585567992639252e-01,0.000000000000000000e+00 +4.226950327968411747e-01,-1.474915136200202759e-01,0.000000000000000000e+00 +4.515819568859816280e-01,-1.529793547356242400e-01,0.000000000000000000e+00 +4.805202232507895799e-01,-1.581540820048955576e-01,0.000000000000000000e+00 +5.098597491417027339e-01,-1.597164744575509110e-01,0.000000000000000000e+00 +5.392438643366413986e-01,-1.586809135860747233e-01,0.000000000000000000e+00 +5.684316565971959667e-01,-1.552315138889323598e-01,0.000000000000000000e+00 +5.976990319133047569e-01,-1.526583353351299577e-01,0.000000000000000000e+00 +6.269344804481211675e-01,-1.554102530231442902e-01,0.000000000000000000e+00 +6.406764277026859578e-01,-1.347969554955098515e-01,0.000000000000000000e+00 +6.212178235961559603e-01,-1.189595098401894507e-01,0.000000000000000000e+00 +5.933945765051568122e-01,-1.100559940354598476e-01,0.000000000000000000e+00 +5.647489836335102265e-01,-1.049007484678110280e-01,0.000000000000000000e+00 +5.452859786978425660e-01,-8.984397295604051870e-02,0.000000000000000000e+00 +5.663548492264733891e-01,-7.339423847154415148e-02,0.000000000000000000e+00 +5.921363846220311089e-01,-6.686203187706768469e-02,0.000000000000000000e+00 +5.779198433802932300e-01,-4.115298259440142853e-02,0.000000000000000000e+00 +5.751657592098867733e-01,-1.289142144407425493e-02,0.000000000000000000e+00 +5.994043208099413267e-01,2.287039570664296567e-05,0.000000000000000000e+00 +6.273400219938138900e-01,-8.643474345869322714e-03,0.000000000000000000e+00 +6.505536054651219757e-01,-2.658023255101419832e-02,0.000000000000000000e+00 +6.703260298117242888e-01,-4.830302577904701383e-02,0.000000000000000000e+00 +6.919274968560821248e-01,-6.752172334060317638e-02,0.000000000000000000e+00 +7.209905089708629200e-01,-7.158722494351958676e-02,0.000000000000000000e+00 +7.503148391841983900e-01,-7.376005215186012820e-02,0.000000000000000000e+00 +7.795038973719589093e-01,-7.672516048979871606e-02,0.000000000000000000e+00 +8.039101340266006090e-01,-9.251970684468974193e-02,0.000000000000000000e+00 +8.211516440525589156e-01,-1.162499126610356953e-01,0.000000000000000000e+00 +8.348659618315968922e-01,-1.422185989422807550e-01,0.000000000000000000e+00 +6.536428243304245322e-01,-1.700557475944398655e-01,-1.348996730881055660e-17 +3.888571607399345931e-01,-3.186385263326682038e-01,1.610493534079134803e-17 +6.206648216934831375e-01,-3.258359407850914824e-01,5.684424014840184044e-18 +7.046025223619822864e-01,-3.145345453690430171e-01,3.419831022836568310e-19 +4.761864778834011824e-01,-3.274261589991800392e-01,1.286475684418790614e-17 +3.007954437762617173e-01,-3.105488642033602531e-01,1.945935408759143020e-17 +5.477017691551384626e-01,-1.835124752203285969e-01,-6.838139192115956293e-18 +5.634523298701357152e-01,-3.278687879815045392e-01,8.686102183000435945e-18 +4.306852595147721008e-01,-1.762174684872072350e-01,-1.991013712771802936e-18 +2.869990057740139378e-01,-1.760056034258752899e-01,4.947611471737908228e-18 +7.984941935149520997e-01,-2.319757090619180007e-01,-1.352263852619370541e-17 +7.357091265309235739e-01,-9.850780561387892376e-02,-2.553923421354831017e-17 +7.597478681110966248e-01,-3.024748237024899034e-01,-3.690842310350420176e-18 +2.143864044474549369e-01,-3.124765320150255654e-01,2.386392686719929922e-17 +6.723728989856726790e-02,-3.069264259542385798e-01,3.036804614136348248e-17 +1.863771088946812871e-01,-3.114405288228931368e-01,2.510426828946716277e-17 +1.332723953927799909e-01,-2.864554168260043943e-01,2.485851120560419186e-17 +6.746272929219865322e-01,-9.155966002837925832e-02,-2.336337032339217768e-17 +7.991659320700414959e-01,-2.570270052677513517e-01,-1.072869679818650857e-17 +3.428076498788740767e-01,-1.689911585897991286e-01,1.451894290777885416e-18 +8.027185263456991793e-01,-1.427892228303721811e-01,-2.379008249875877467e-17 +6.054990676078435552e-01,-1.809028434345230640e-01,-9.933232576278941403e-18 +6.460954699076150165e-01,-5.348043858569775932e-02,-2.627722744618803395e-17 +7.139800345468971798e-02,-3.378018647434474775e-01,3.365005176260693657e-17 +1.003656756738018629e-01,-3.271464491459360469e-01,3.104414944218182280e-17 +8.133703877794979942e-01,-2.891829636050748942e-01,-7.788896856920073033e-18 +2.396654863010582726e-01,-1.997618971043003122e-01,9.921606081222742552e-18 +1.296325322810620018e-01,-3.184652447487117399e-01,2.864649632995823566e-17 +6.182015816502821615e-01,-3.892459209707158085e-02,-2.656789738094504042e-17 +4.891366478887153590e-01,-1.825892186424566133e-01,-4.104449135461366027e-18 +3.596196327747759880e-01,-3.144744685124003514e-01,1.705185991028708209e-17 +3.864660810907795396e-02,-3.036781218852271369e-01,3.138694964098522122e-17 +6.497952895719272259e-01,-1.106199124336599005e-01,-2.000956561893252435e-17 +1.898151349231230745e-01,-2.821522498034345072e-01,2.163313085084830100e-17 +5.053114725462006795e-01,-3.280558347247889972e-01,1.152450739166244625e-17 +2.938357271590126552e-02,-3.504226165406349458e-01,3.710989930571643609e-17 +2.426730132992921674e-01,-3.128924655700024982e-01,2.254018649959957076e-17 +4.469728849484260191e-01,-3.255667082899634801e-01,1.407054620056551997e-17 +6.767989832876094569e-01,-3.196876947600972296e-01,2.270665026817763972e-18 +4.012871541394049668e-01,-1.725846490074809669e-01,-9.763694800573146711e-19 +2.124798916894179157e-01,-2.150064303501751373e-01,1.295893692916385146e-17 +7.822636669149881650e-01,-1.116663949507556985e-01,-2.631044368606494952e-17 +6.173897757625891325e-01,-9.491336191449326054e-02,-2.021144990320476745e-17 +5.182299514781451011e-01,-1.837976419996685540e-01,-5.377863916291298034e-18 +5.765124904245763071e-01,-1.824145687427401463e-01,-8.358079995353257188e-18 +3.139461873207569642e-01,-1.709477939769524502e-01,3.071182646171694421e-18 +7.099173247641531459e-01,-1.036669468869495514e-01,-2.370735793686763392e-17 +7.547327107991403938e-01,-9.406537557287780738e-02,-2.696228130627896758e-17 +3.718511485107684478e-01,-1.699315228296640612e-01,1.506482640484183861e-19 +8.186835689398110905e-01,-1.864691462640337971e-01,-1.963536654499610651e-17 +2.630519754092058848e-01,-1.856873986203126936e-01,7.200379375141210421e-18 +4.596788524667095310e-01,-1.798399171247961337e-01,-2.987226821978544618e-18 +6.990131318417871498e-01,-2.863365748591974458e-01,-2.568700031728998314e-18 +3.880565468312517363e-01,-2.880394906320085102e-01,1.269129718464803378e-17 +4.463801714513516150e-01,-2.943811364469135494e-01,1.058065612573736491e-17 +5.248423563376625189e-01,-2.098647237310999059e-01,-2.757176725435877555e-18 +2.926763701356160374e-01,-2.012811750787498744e-01,7.524302799526577257e-18 +5.826719138412150834e-01,-2.100298436737367824e-01,-5.540763120407057974e-18 +4.661440296986149034e-01,-2.073887868211281016e-01,-1.922180803486500039e-19 +4.073725613090595776e-01,-2.016201613102244217e-01,2.004776739589594169e-18 +7.238012313313858526e-01,-1.308309558133588513e-01,-2.131525781141750798e-17 +6.663942759510437241e-01,-1.398504071609827926e-01,-1.751587089034542337e-17 +3.487672161481628619e-01,-1.978580861657264489e-01,4.420117211442670406e-18 +7.739459185809312025e-01,-2.516340396676098878e-01,-1.011510223438187784e-17 +6.313891048480174684e-01,-1.764527758454386697e-01,-1.168986551438643976e-17 +7.557732313970311200e-01,-1.307954132368797928e-01,-2.286851847454488137e-17 +2.158342028486806563e-01,-2.850724969584311208e-01,2.070182463714132968e-17 +2.714310371128964006e-01,-3.117775956461343312e-01,2.102088527483947679e-17 +6.839362162907944853e-01,-1.101032172359458494e-01,-2.172221239265984215e-17 +3.302086174289416420e-01,-3.114170380093216894e-01,1.813204979775234854e-17 +2.726173102948097338e-01,-2.028463376772178250e-01,8.672888580522808692e-18 +7.864013809435047575e-01,-2.970238817582475099e-01,-5.597397403369601642e-18 +6.432815594762107958e-01,-7.456881127903788875e-02,-2.376151284373739604e-17 +7.322948528176906891e-01,-3.085366053639745920e-01,-1.676626220253796586e-18 +1.582998466704156337e-01,-3.129127560867251967e-01,2.663090217983213504e-17 +5.344082322570319343e-01,-3.281027261686814134e-01,1.011987162363060195e-17 +5.921697810005870366e-01,-3.271568304616980782e-01,7.214226835175652465e-18 +4.754569588192437135e-01,-2.961491192777955250e-01,9.371175732084792196e-18 +8.141715786564454049e-01,-1.680796968665358992e-01,-2.149157924788552481e-17 +1.036156035985038720e-01,-2.944100955356799831e-01,2.719308664191901525e-17 +1.623844988904918352e-01,-2.819203667203690755e-01,2.293615986915900717e-17 +6.488264037539943629e-01,-3.233991232646333813e-01,4.044871332570536755e-18 +4.177014746422195168e-01,-3.224920660226281433e-01,1.514202934795657178e-17 +4.374204041284393552e-02,-3.315062174411261275e-01,3.427983593677389480e-17 +3.199360708980724111e-01,-1.989636665036682017e-01,5.941913516403006187e-18 +4.534824936526735129e-02,-3.475714086866044661e-01,3.601461077847407297e-17 +4.953076592304371806e-01,-2.091227432507361539e-01,-1.409745675705943634e-18 +2.262440086527035543e-01,-2.373757681640770167e-01,1.481586768765058784e-17 +5.906769636588542483e-01,-8.487809604621526782e-02,-2.004930180500212522e-17 +6.587471964756120846e-01,-9.168065600017505368e-02,-2.258022505469191565e-17 +6.080713114097051619e-01,-6.603590494154942814e-02,-2.301810047146874358e-17 +7.971127473887207326e-01,-2.733292015796434105e-01,-8.789859789044681800e-18 +5.536394019115629117e-01,-2.101989625674594298e-01,-4.114868523184432808e-18 +3.778248783953107037e-01,-1.991009198127196289e-01,3.152311934359500461e-18 +2.176064025076840380e-01,-2.654852775094216910e-01,1.840596003562389846e-17 +4.365898296757240171e-01,-2.047709798620399313e-01,9.445119502861330648e-19 +7.312891331320781063e-01,-1.487614267376425881e-01,-1.965503299351018295e-17 +6.114319174708547910e-01,-2.094400658059064613e-01,-7.000915106318093567e-18 +5.906596850682234168e-01,-2.971786756153025344e-01,3.905020526010306003e-18 +7.703800706518808550e-01,-2.261961636941731413e-01,-1.281242270672644240e-17 +6.611335618649176737e-01,-1.910183374056407812e-01,-1.148777148692474209e-17 +5.291507845867091664e-01,-2.377564989902113401e-01,1.810298777150467039e-19 +2.945984031554994553e-01,-2.269113352494222524e-01,1.032297182321011382e-17 +4.412333603895639556e-01,-2.338437732703786687e-01,3.999732780836859540e-18 +3.824882565531114720e-01,-2.282192384003004504e-01,6.211707550203660405e-18 +7.850907982666683882e-01,-1.706710330141648080e-01,-1.979005140033093958e-17 +2.372541971357552681e-01,-2.606271083891261720e-01,1.690575883053817434e-17 +2.992066496998956326e-01,-2.827747886715786252e-01,1.640264344034553294e-17 +2.417414655599111062e-01,-2.857196650410819827e-01,1.951946876682714677e-17 +4.443802049483410732e-01,-2.636931860553030083e-01,7.215102288478465873e-18 +3.585872906674742455e-01,-2.850098715104282809e-01,1.377744712409364338e-17 +6.767436581052830302e-01,-1.680536433050616729e-01,-1.483524606567984263e-17 +6.990630784314998403e-01,-1.406044405431816635e-01,-1.901380973560754627e-17 +5.045623261931451164e-01,-2.969796946050026754e-01,8.054544482450473766e-18 +6.455373578656407041e-01,-2.944832191168395563e-01,9.417184679065603119e-19 +5.623195903388011896e-01,-2.973638775424660152e-01,5.299177644837542027e-18 +6.721957338321349340e-01,-2.910580372582963204e-01,-7.365094798667130410e-19 +7.532533724959776800e-01,-2.772687976407066657e-01,-6.220091635513751888e-18 +7.261866434200517917e-01,-2.814504191511958409e-01,-4.436728636269199026e-18 +7.818471563596373075e-01,-1.478680916834856640e-01,-2.220568999736210527e-17 +5.578431386546606197e-01,-2.382875554448721234e-01,-1.149382367625379819e-18 +5.862414443276213749e-01,-2.386048456164062692e-01,-2.489664921636027617e-18 +3.531386325146679273e-01,-2.267093366104302454e-01,7.463527458064847668e-18 +7.785872043933406150e-01,-2.747112511960805303e-01,-7.736243132496599529e-18 +4.169893811575449694e-01,-2.914332555730044239e-01,1.167222626221566065e-17 +4.998243954434958281e-01,-2.372475348717183186e-01,1.544657866349516855e-18 +4.703771942009750129e-01,-2.360111161516781630e-01,2.832062614924929369e-18 +4.116900050170282932e-01,-2.310751999790208733e-01,5.118926629138661742e-18 +6.808969911301849809e-01,-1.952335261527780030e-01,-1.196984560978956336e-17 +6.922407010093932778e-01,-2.586959032235747746e-01,-5.359178191049384611e-18 +6.145527062483208125e-01,-2.387323243207324919e-01,-3.847145721903876586e-18 +7.222230062098329295e-01,-1.543003667440238647e-01,-1.859077198682361884e-17 +5.318090431541965257e-01,-2.671372677826163167e-01,3.367198298535825611e-18 +3.856895653489705866e-01,-2.580443095914189966e-01,9.421691495447825776e-18 +5.886530607253388503e-01,-2.676607684237677365e-01,6.718031328247241991e-19 +4.734244418244090147e-01,-2.656064926720754782e-01,6.023595793221551307e-18 +2.696249537494419535e-01,-2.841069916105627424e-01,1.798637819992526552e-17 +4.148271965257818161e-01,-2.610284701864333812e-01,8.346481932092105136e-18 +3.288847553902167764e-01,-2.832355774088352041e-01,1.501653696730643230e-17 +5.334119141822295518e-01,-2.973666652110308339e-01,6.700256293283503517e-18 +7.532627215091294293e-01,-1.629482618055294318e-01,-1.911912107056490756e-17 +7.474661498300840812e-01,-2.517377804719682644e-01,-8.820281066111462688e-18 +6.671463283260284927e-01,-2.641422631282311362e-01,-3.528690518637411624e-18 +7.645440822049718310e-01,-1.975536567501595953e-01,-1.576131280484551957e-17 +6.183224743965863857e-01,-2.963410768703123033e-01,2.470074503635689451e-18 +3.562642478894707532e-01,-2.558691639461105893e-01,1.060212099549236458e-17 +3.238328549233420173e-01,-2.266925026513504915e-01,8.881682826934077165e-18 +2.658861148473744551e-01,-2.565024504759074730e-01,1.505297940367998018e-17 +5.025178522723836583e-01,-2.667003655153057928e-01,4.737251309975743131e-18 +7.028072183255517080e-01,-1.703020557350198860e-01,-1.584451009920646687e-17 +6.447269106899968794e-01,-2.078831074143545898e-01,-8.789941912075186710e-18 +2.600627350107158064e-01,-2.242482293924170089e-01,1.169597525362085322e-17 +7.081154775833582438e-01,-1.974533691666979229e-01,-1.303829673362353634e-17 +3.266082693865220432e-01,-2.549121777816089063e-01,1.193117021722524489e-17 +7.357784859348240891e-01,-1.973238853939827120e-01,-1.439335805532063792e-17 +6.791948101897636869e-01,-2.272982241005050419e-01,-8.269562851099763778e-18 +7.195317878639286846e-01,-2.541302838597318536e-01,-7.196738551257830526e-18 +6.425657322595300647e-01,-2.669585021667391089e-01,-2.019850364774287761e-18 +7.419072774778523449e-01,-2.251093522283114101e-01,-1.155535442736930300e-17 +6.161793453108043161e-01,-2.675235957993967739e-01,-6.775005559951620517e-19 +2.963887075637416935e-01,-2.548736575891426548e-01,1.339115753198940209e-17 +6.419417251633378063e-01,-2.403046091281842156e-01,-4.996923052841589955e-18 +7.277306164489231177e-01,-1.712505241692621749e-01,-1.694519619242207066e-17 +7.990407486945310112e-01,-2.000784712503780871e-01,-1.714802951266372144e-17 +5.602740342229318715e-01,-2.675515634644117235e-01,2.034629359065686149e-18 +7.130093512640987008e-01,-2.258638380449863314e-01,-1.006993550322420342e-17 +6.618857208257517000e-01,-2.440933707899458072e-01,-5.535859773079228908e-18 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad4/uvs.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad4/uvs.csv new file mode 100644 index 000000000..70bad947f --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad4/uvs.csv @@ -0,0 +1,251 @@ +7.500000000000000000e-01,1.214104668632575434e-01 +7.450490210533071700e-01,1.050863105401596276e-01 +7.344186625544779634e-01,9.150405820186631456e-02 +7.350810460993351114e-01,7.653290299823091447e-02 +7.377109399710835014e-01,5.953697219950290082e-02 +7.427408897194867077e-01,4.549401191217619655e-02 +7.346489125066807402e-01,3.290617565166265718e-02 +7.173977542669334184e-01,3.116917325304683489e-02 +7.008073696918042383e-01,2.604376364615342693e-02 +6.840108893107628152e-01,2.156882324329632492e-02 +6.673388897605239123e-01,1.664885851159520272e-02 +6.502806339928329793e-01,1.332004733799756722e-02 +6.330379216200070491e-01,1.111150740221894875e-02 +6.157160257127323177e-01,9.637012260807204314e-03 +5.983570258291521782e-01,8.683967870524623642e-03 +5.809821207633062423e-01,8.081378649619330723e-03 +5.636004666599386814e-01,7.717032818628198620e-03 +5.462158653198576630e-01,7.552223716854008714e-03 +5.288321654096773683e-01,7.756825399805029539e-03 +5.114777108573441700e-01,8.746455497828082778e-03 +4.942066846211590758e-01,1.072542643256932729e-02 +4.769952805094835324e-01,1.317590214566601199e-02 +4.599676376071279993e-01,1.665631244776787090e-02 +4.430094539283869204e-01,2.044123182282815351e-02 +4.256691606249342619e-01,2.069112327796006692e-02 +4.083983166542237142e-01,1.870642410716216036e-02 +3.910665804215173180e-01,1.739301310564447811e-02 +3.736874399876124464e-01,1.740039384166725683e-02 +3.565652464749821116e-01,2.020659054435650082e-02 +3.393313820047844098e-01,1.980366888924858446e-02 +3.228722148239710488e-01,1.422932047508273894e-02 +3.064933890544907502e-01,8.399196928817848420e-03 +2.899620472353985901e-01,3.058333137693386092e-03 +2.728577994569901244e-01,0.000000000000000000e+00 +2.576766650265736036e-01,1.901718087055958737e-03 +2.500000000000000000e-01,1.119079271031328711e-02 +2.616899906360095063e-01,2.386493156282270753e-02 +2.521747488792775993e-01,2.516533532670457013e-02 +2.515122701590245535e-01,3.977949054915840693e-02 +2.632727412319088023e-01,5.168470474970864731e-02 +2.791787097189050715e-01,5.870168830779152330e-02 +2.958492504372191023e-01,6.344745132068548010e-02 +3.129364756565771177e-01,6.662863469351147649e-02 +3.296937881830149797e-01,7.124265919101492595e-02 +3.466687480114636899e-01,7.474906421206339857e-02 +3.639755291449027763e-01,7.379057531229900324e-02 +3.519280814182996209e-01,8.168564451297918860e-02 +3.524053943419558355e-01,9.735094144840422681e-02 +3.663243757679779944e-01,1.074565483455971887e-01 +3.818367170416533951e-01,1.150469019486519556e-01 +3.955298690913712223e-01,1.257110209204361229e-01 +4.112393540125112157e-01,1.330735499251599896e-01 +4.281785901266007555e-01,1.368525698612789165e-01 +4.455141061490263121e-01,1.379789680870907587e-01 +4.628793661353556299e-01,1.372480561942243660e-01 +4.801668228981184616e-01,1.354193835999942808e-01 +4.973614171489731950e-01,1.328575784379444902e-01 +5.144404406215363768e-01,1.296129627447723254e-01 +5.315498195562650130e-01,1.265534715984227287e-01 +5.488964380407564958e-01,1.256297270941648947e-01 +5.662694193795181352e-01,1.262419891812127382e-01 +5.835263273006253693e-01,1.282814025231093502e-01 +6.008302876828959249e-01,1.298027613491260224e-01 +6.181153717651001189e-01,1.281757253018430409e-01 +6.262401218767836841e-01,1.403630731563606515e-01 +6.147354717017352588e-01,1.497267598285026702e-01 +5.982853336155987689e-01,1.549908493850117586e-01 +5.813489941309712972e-01,1.580388222250761199e-01 +5.698417420221237872e-01,1.669409476847860396e-01 +5.822984415720130480e-01,1.766666422762626087e-01 +5.975414437975419268e-01,1.805287256677108598e-01 +5.891360960763013521e-01,1.957288714084271797e-01 +5.875077791240832514e-01,2.124381570619722492e-01 +6.018385178774047217e-01,2.200735665220631410e-01 +6.183551430040390429e-01,2.149497013155787783e-01 +6.320798765812571940e-01,2.043448230162472901e-01 +6.437700689493692785e-01,1.915015000550918944e-01 +6.565416593601005601e-01,1.801386915486193063e-01 +6.737247926199803061e-01,1.777350158547417458e-01 +6.910624268549465654e-01,1.764503596283274467e-01 +7.083200832392824164e-01,1.746972773428589198e-01 +7.227499577186583535e-01,1.653589543320305444e-01 +7.329437794466864275e-01,1.513287744175656757e-01 +7.410521939852365847e-01,1.359751216305681576e-01 +6.339063376246543147e-01,1.195167644246450389e-01 +4.773552091727227831e-01,3.166910166006346727e-02 +6.144085164175043801e-01,2.741372265206050429e-02 +6.640356056682152897e-01,3.409552778256839944e-02 +5.289875481761299181e-01,2.647352652314395594e-02 +4.252898481666266273e-01,3.645201066640855331e-02 +5.712700471541491964e-01,1.115606467612609981e-01 +5.805823642193850276e-01,2.621182781284066982e-02 +5.020855362433265245e-01,1.158737259538748232e-01 +4.171328810990690972e-01,1.159989884548021793e-01 +7.195478523356478862e-01,8.290738115974996547e-02 +6.824269865266849866e-01,1.618185677156009639e-01 +6.966395842553922968e-01,4.122568358524422022e-02 +3.742016116211119292e-01,3.531230178978526230e-02 +2.872015844256883277e-01,3.859373083342066552e-02 +3.576414747675097372e-01,3.592482539324957230e-02 +3.262439938310162657e-01,5.069695249624922573e-02 +6.463131356114737436e-01,1.659265697022211938e-01 +7.199450091431499610e-01,6.809612349184177016e-02 +4.501290263341084508e-01,1.201461890232206758e-01 +7.220454349564078278e-01,1.356377475734118765e-01 +6.054419587733439467e-01,1.131035580932873569e-01 +6.294440610961755667e-01,1.884404211192013401e-01 +2.896615529660682142e-01,2.033902354165929155e-02 +3.067883177351051760e-01,2.663890138736694363e-02 +7.283432114483927577e-01,4.908432543638957535e-02 +3.891475446325413090e-01,1.019533844263879330e-01 +3.240919714374199123e-01,3.177155217471926835e-02 +6.129521573262224354e-01,1.970463787170104730e-01 +5.366441701415538557e-01,1.121065103747082292e-01 +4.600688956539916719e-01,3.413104745373836402e-02 +2.702977104143032272e-01,4.051424896368172740e-02 +6.316315320327159366e-01,1.546574398627743319e-01 +3.596741635736230291e-01,5.324114482209329341e-02 +5.462073278227705941e-01,2.610123882423240338e-02 +2.648210595109721233e-01,1.287716586791020495e-02 +3.909257064070070786e-01,3.506638640860598732e-02 +5.117153859370939806e-01,2.757290291264063997e-02 +6.475971196942083008e-01,3.104879428003788286e-02 +4.847042833897720060e-01,1.180215838903712483e-01 +3.730744103986911031e-01,9.294024961386401773e-02 +7.099517615951644878e-01,1.540387204927938791e-01 +6.124721875042957731e-01,1.639437364640345673e-01 +5.538452128474152802e-01,1.113920455594537978e-01 +5.883040166866544407e-01,1.122097698885122508e-01 +4.330650566652888278e-01,1.189893534390193686e-01 +6.671779144408145346e-01,1.587682915896576341e-01 +6.936744368002605299e-01,1.644450975154283512e-01 +4.673006224974383116e-01,1.195902107239786988e-01 +7.314845616825313979e-01,1.098125529178229226e-01 +4.029745064505028673e-01,1.102747511884153014e-01 +5.192276263132844516e-01,1.137319996448146742e-01 +6.607309501916697192e-01,5.076721628530333347e-02 +4.768818564648795721e-01,4.976038916982750832e-02 +5.113649516818647989e-01,4.601097239588435722e-02 +5.577547124347473906e-01,9.598021772418396935e-02 +4.204895499813245952e-01,1.010551308045449931e-01 +5.919456968041223455e-01,9.588259267530782615e-02 +5.230500794535792863e-01,9.744408367514172109e-02 +4.883022023502648912e-01,1.008547095417492850e-01 +6.753865961758762637e-01,1.427079196154233953e-01 +6.414454698931426613e-01,1.373752846557316498e-01 +4.536525434758225117e-01,1.030789882326945128e-01 +7.050339995448382524e-01,7.128464525301357602e-02 +6.207491113232652680e-01,1.157346034954884612e-01 +6.942896312619561972e-01,1.427289337080311082e-01 +3.750576038618146368e-01,5.151458613581825358e-02 +4.079285192444501718e-01,3.572553895596070755e-02 +6.518169171920101812e-01,1.549629292732317143e-01 +4.426800099459331506e-01,3.593871403556878757e-02 +4.086298880525742194e-01,1.001297484870949522e-01 +7.123981319597529893e-01,4.444848311647896233e-02 +6.277803726342493507e-01,1.759721911644890890e-01 +6.804083409723810094e-01,3.764173290352484935e-02 +3.410411534908730502e-01,3.505438990076361477e-02 +5.634104139160953650e-01,2.607351485928447246e-02 +5.975611889781466957e-01,2.663276356753438781e-02 +5.285562293835170955e-01,4.496567521662968997e-02 +7.288169052813243676e-01,1.206850790801169554e-01 +3.087097959492218213e-01,4.599385070597165198e-02 +3.434561517415924414e-01,5.337824272169464784e-02 +6.310586907161518377e-01,2.885445976556658132e-02 +4.944090399186659157e-01,2.939074572939440883e-02 +2.733103194290370519e-01,2.406124428484141681e-02 +4.366064985266377985e-01,1.024253280339054717e-01 +2.742599698769569994e-01,1.456290595272767205e-02 +5.402927014711440545e-01,9.641890416934550956e-02 +3.812122680663905250e-01,7.971466545646488377e-02 +5.966785798661128348e-01,1.698769587340430709e-01 +6.369242322059998074e-01,1.658550323853365815e-01 +6.069627649392612678e-01,1.810171626255362709e-01 +7.187310900267506186e-01,5.845765895314731370e-02 +5.747805963876191360e-01,9.578260329787775806e-02 +4.708325136950616274e-01,1.023441787748240045e-01 +3.761053941866269179e-01,6.309527848297061259e-02 +5.055765376411598400e-01,9.899182847354738579e-02 +6.798137221038440536e-01,1.321067585902840347e-01 +6.089496801824108019e-01,9.623129127738776212e-02 +5.966683641209526989e-01,4.435696323329953172e-02 +7.029257376789534995e-01,8.632446325169781942e-02 +6.383351401438714934e-01,1.071229019861790477e-01 +5.603020153932851688e-01,7.948956323733588625e-02 +4.216259273595575063e-01,8.590162723975977577e-02 +5.083219656352415683e-01,8.180291214926957433e-02 +4.735896762358965395e-01,8.512834627205419225e-02 +7.116232667566821934e-01,1.191529848095714272e-01 +3.877219008316899473e-01,6.596760868272356915e-02 +4.243504940408778792e-01,5.287307669864731857e-02 +3.903749407506289515e-01,5.113195630509691919e-02 +5.101824971310150447e-01,6.415482957658737162e-02 +4.594585366199901433e-01,5.155161262895126273e-02 +6.475644093895506215e-01,1.207004829142735158e-01 +6.607604804724100944e-01,1.369294720869053406e-01 +5.457644046472625021e-01,4.447460820425658268e-02 +6.291140845076061971e-01,4.595061732621933542e-02 +5.799126464957442550e-01,4.424746496856811484e-02 +6.448755074776388874e-01,4.797571218157118539e-02 +6.927997969969499348e-01,5.612842329649906509e-02 +6.767969404869681460e-01,5.365609319618670769e-02 +7.097055050699125900e-01,1.326349314864957440e-01 +5.772660018356443601e-01,7.917558291785224689e-02 +5.940561359348250914e-01,7.898798917230415162e-02 +4.562370873511586433e-01,8.602105634498830034e-02 +7.077781002697338675e-01,5.764053983840396883e-02 +4.939880237764873172e-01,4.775386916414018496e-02 +5.429631638424285978e-01,7.979048174633361634e-02 +5.255528836869386433e-01,8.052149846089690088e-02 +4.908548355832919041e-01,8.343979560846720434e-02 +6.500200142854812846e-01,1.046307256876057717e-01 +6.567268372997662196e-01,6.710940897447520426e-02 +6.107948065315775832e-01,7.891261902293411623e-02 +6.744534908091430747e-01,1.288319313331421356e-01 +5.618736766864764753e-01,6.211856041616391211e-02 +4.754824090134910364e-01,6.749465535459585330e-02 +5.954819732076457317e-01,6.180904737453522119e-02 +5.273545297717465719e-01,6.302361157230175481e-02 +4.068606956138463016e-01,5.208542879280188276e-02 +4.927096598370126479e-01,6.573030866642391723e-02 +4.418972934904169536e-01,5.260064126608922364e-02 +5.628213536294002228e-01,4.424581679527332667e-02 +6.928053244811005484e-01,1.237189742634331457e-01 +6.893781758009117633e-01,7.122330983262642468e-02 +6.418901112168545753e-01,6.388931851539367268e-02 +6.994752843401765841e-01,1.032589782211806723e-01 +6.130236336123587870e-01,4.485218275138091321e-02 +4.580850673641130300e-01,6.878068232713986652e-02 +4.389104221160693431e-01,8.603100920744509439e-02 +4.046501550532973779e-01,6.840625978655080763e-02 +5.445556356563523437e-01,6.237687327964450829e-02 +6.629741551764991581e-01,1.193711378947497764e-01 +6.286349180067568598e-01,9.715182296269500584e-02 +4.012071563936603913e-01,8.747615443072545571e-02 +6.661125953988906723e-01,1.033182719689906964e-01 +4.405513503303877254e-01,6.934648812619297054e-02 +6.824679943848981356e-01,1.033948275893362551e-01 +6.490136216302337946e-01,8.567288416733967460e-02 +6.728623424695809874e-01,6.980877288186942975e-02 +6.273571489708968940e-01,6.222425329437526048e-02 +6.860915637998631356e-01,8.696702659552857373e-02 +6.117565360201107083e-01,6.189014892983391719e-02 +4.226844218852138235e-01,6.936926269607339435e-02 +6.269882127764434543e-01,7.798302579074510577e-02 +6.777097947430918978e-01,1.188103680944961327e-01 +7.198709960775109273e-01,1.017662140217098776e-01 +5.787032376708527437e-01,6.187361340650200658e-02 +6.690060354621942817e-01,8.652094653061950802e-02 +6.387798444851000568e-01,7.574296903864874420e-02 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad8/connectivity.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad8/connectivity.csv new file mode 100644 index 000000000..66841b7bc --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad8/connectivity.csv @@ -0,0 +1,208 @@ +281,307,300,316,338,337,336,335 +225,289,298,265,342,341,340,339 +229,279,317,280,346,345,344,343 +313,278,221,301,350,349,348,347 +316,293,294,303,354,353,352,351 +247,182,191,192,358,357,356,355 +199,38,37,36,360,121,120,359 +279,296,320,317,363,362,361,345 +240,258,256,210,367,366,365,364 +318,232,189,265,371,370,369,368 +46,45,255,208,129,374,373,372 +278,313,321,306,350,377,376,375 +256,69,68,67,379,152,151,378 +301,221,292,305,348,382,381,380 +315,304,275,328,386,385,384,383 +73,72,71,196,156,155,388,387 +271,277,303,294,391,390,352,389 +45,262,274,255,394,393,392,374 +308,233,228,264,398,397,396,395 +315,274,276,304,401,400,399,386 +71,70,258,196,154,403,402,388 +51,177,213,52,406,405,404,135 +317,320,322,330,361,409,408,407 +322,320,333,326,409,412,411,410 +275,304,235,173,385,415,414,413 +178,186,4,3,418,417,87,416 +184,247,192,195,421,355,420,419 +201,183,181,234,425,424,423,422 +319,270,224,238,429,428,427,426 +331,217,246,273,433,432,431,430 +198,278,306,237,436,375,435,434 +248,184,195,242,439,419,438,437 +246,217,1,0,432,441,84,440 +280,228,214,236,445,444,443,442 +239,7,6,193,448,90,447,446 +309,285,291,231,452,451,450,449 +33,32,191,253,116,455,454,453 +274,262,234,276,393,457,456,400 +259,186,231,291,460,459,450,458 +42,41,182,247,125,462,358,461 +299,264,228,280,464,396,445,463 +236,214,77,185,443,467,466,465 +233,287,188,209,471,470,469,468 +319,194,208,255,474,473,373,472 +270,328,321,314,478,477,476,475 +44,43,184,248,127,480,439,479 +66,65,200,210,149,483,482,481 +331,2,1,217,484,85,441,433 +311,308,330,322,487,486,408,485 +0,83,188,246,167,489,488,440 +40,39,38,199,123,122,360,490 +238,224,177,218,427,493,492,491 +181,27,26,204,496,110,495,494 +330,299,280,317,497,463,344,407 +77,240,257,185,500,499,498,466 +278,198,169,221,436,502,501,349 +328,275,306,321,384,503,376,477 +302,266,312,327,507,506,505,504 +64,168,279,229,510,509,346,508 +208,194,49,48,473,512,132,511 +239,291,285,180,515,451,514,513 +192,191,32,31,356,455,115,516 +304,276,204,235,399,518,517,415 +241,180,285,286,521,514,520,519 +173,235,25,24,414,523,108,522 +183,28,27,181,524,111,496,424 +290,314,321,313,526,476,377,525 +323,334,310,297,530,529,528,527 +298,327,325,329,534,533,532,531 +180,241,9,8,521,536,92,535 +297,310,284,220,528,539,538,537 +220,286,324,297,542,541,540,537 +190,240,77,76,544,500,160,543 +46,208,48,47,372,511,131,130 +239,180,8,7,513,535,91,448 +76,75,196,190,159,546,545,543 +334,329,325,310,548,532,547,529 +295,305,277,271,551,550,391,549 +310,325,282,284,547,553,552,539 +312,266,244,170,506,556,555,554 +234,262,45,201,457,394,557,422 +241,171,10,9,559,558,93,536 +206,11,10,171,561,94,558,560 +309,324,286,285,562,541,520,452 +168,268,296,279,564,563,363,509 +245,303,277,222,567,390,566,565 +204,26,25,235,495,109,523,517 +171,241,286,220,559,519,542,568 +82,81,80,209,165,164,570,569 +249,170,13,12,573,572,96,571 +266,283,175,244,576,575,574,556 +249,282,312,170,578,577,554,573 +172,18,17,202,581,101,580,579 +245,172,202,281,584,579,583,582 +83,82,209,188,166,569,469,489 +67,66,210,256,150,481,365,378 +319,238,218,194,426,491,585,474 +206,249,12,11,586,571,95,561 +205,250,20,19,589,588,103,587 +186,178,267,231,418,591,590,459 +170,244,14,13,555,592,97,572 +194,218,50,49,585,593,133,512 +244,175,15,14,574,594,98,592 +283,307,243,175,597,596,595,575 +242,29,28,183,599,112,524,598 +242,195,30,29,438,600,113,599 +195,192,31,30,420,516,114,600 +253,251,36,203,604,603,602,601 +222,205,172,245,606,605,584,565 +175,243,16,15,595,607,99,594 +307,281,202,243,338,583,608,596 +243,202,17,16,608,580,100,607 +316,303,245,281,351,567,582,335 +198,22,21,169,610,105,609,502 +218,177,51,50,492,406,134,593 +21,20,250,169,104,588,611,609 +173,237,306,275,612,435,503,413 +237,23,22,198,613,106,610,434 +305,292,222,277,381,614,566,550 +24,23,237,173,107,613,612,522 +220,284,206,171,538,615,560,568 +247,184,43,42,421,480,126,461 +199,182,41,40,616,462,124,490 +19,18,172,205,102,581,605,587 +250,292,221,169,617,382,501,611 +302,332,283,266,619,618,576,507 +179,78,77,214,621,161,467,620 +234,181,204,276,423,494,518,456 +331,178,3,2,622,416,86,484 +302,289,288,332,625,624,623,619 +75,74,73,196,158,157,387,546 +288,289,225,260,624,342,627,626 +232,168,64,63,629,510,147,628 +233,179,214,228,630,620,444,397 +231,267,326,309,590,632,631,449 +323,296,268,318,635,563,634,633 +232,63,62,189,628,146,636,370 +319,315,328,270,637,383,478,429 +267,311,322,326,638,485,410,632 +305,295,272,301,551,640,639,380 +324,309,326,333,562,631,411,641 +289,302,327,298,625,504,534,341 +263,176,207,227,645,644,643,642 +300,307,283,332,337,597,618,646 +272,295,227,261,640,649,648,647 +189,62,61,212,636,145,651,650 +225,212,174,260,654,653,652,627 +330,308,264,299,486,395,464,497 +56,176,219,57,657,656,655,140 +295,271,263,227,549,658,642,649 +282,249,206,284,578,586,615,552 +209,80,79,215,570,163,660,659 +168,232,318,268,629,371,634,564 +298,329,318,265,531,661,368,340 +227,207,216,261,643,663,662,648 +292,250,205,222,617,589,606,614 +331,311,267,178,664,638,591,622 +226,219,176,263,666,656,645,665 +176,56,55,207,657,139,667,644 +240,210,200,257,364,482,668,499 +236,185,257,200,465,498,668,669 +233,308,273,287,398,671,670,471 +215,79,78,179,660,162,621,672 +273,246,188,287,431,488,470,670 +290,272,261,230,675,647,674,673 +212,61,60,174,651,144,676,653 +329,334,323,318,548,530,633,661 +6,5,4,193,89,88,677,447 +261,216,187,230,662,679,678,674 +301,272,290,313,639,675,525,347 +207,55,54,216,667,138,680,663 +271,294,226,263,389,681,665,658 +193,259,291,239,682,458,515,446 +57,219,197,58,655,684,683,141 +187,53,52,213,686,136,404,685 +229,200,65,64,687,483,148,508 +34,33,253,203,117,453,601,688 +230,187,213,252,678,685,690,689 +36,35,34,203,119,118,688,602 +248,201,45,44,691,557,128,479 +260,174,211,223,652,694,693,692 +197,254,223,211,697,696,693,695 +332,288,269,300,623,699,698,646 +254,197,219,226,697,684,666,700 +260,223,269,288,692,701,699,626 +174,60,59,211,676,143,702,694 +211,59,58,197,702,142,683,695 +254,226,294,293,700,681,353,703 +293,316,300,269,354,336,698,704 +223,254,293,269,696,703,704,701 +216,54,53,187,680,137,686,679 +314,290,230,252,526,673,689,705 +265,189,212,225,369,650,654,339 +325,327,312,282,533,505,577,553 +69,256,258,70,379,366,403,153 +186,259,193,4,460,682,677,417 +252,224,270,314,706,428,475,705 +179,233,209,215,630,468,659,672 +255,274,315,319,392,401,637,472 +240,190,196,258,544,545,402,367 +253,191,182,251,454,357,707,604 +36,251,182,199,603,707,616,359 +242,183,201,248,598,425,691,437 +280,236,200,229,442,669,687,343 +177,224,252,213,493,706,690,405 +331,273,308,311,430,671,487,664 +324,333,323,297,641,708,527,540 +296,323,333,320,635,708,412,362 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad8/coords.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad8/coords.csv new file mode 100644 index 000000000..eddb1dd0f --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad8/coords.csv @@ -0,0 +1,709 @@ +8.499999999999999778e-01,-1.668527987443783889e-01,0.000000000000000000e+00 +8.416260696503050642e-01,-1.944629642366926259e-01,0.000000000000000000e+00 +8.236462150357052314e-01,-2.174355594138186465e-01,0.000000000000000000e+00 +8.247825593866108251e-01,-2.427987105306429472e-01,0.000000000000000000e+00 +8.292431286537684798e-01,-2.716030797478402592e-01,0.000000000000000000e+00 +8.392169417928856401e-01,-2.943342765738031219e-01,0.000000000000000000e+00 +8.244170035424377430e-01,-3.164306607435889984e-01,0.000000000000000000e+00 +7.948400818851051319e-01,-3.194876633288679657e-01,0.000000000000000000e+00 +7.667971295466150528e-01,-3.281530464365033373e-01,0.000000000000000000e+00 +7.383880899717630841e-01,-3.357218201388419421e-01,0.000000000000000000e+00 +7.101895933659349014e-01,-3.440432940190208955e-01,0.000000000000000000e+00 +6.813377951207933991e-01,-3.496735407268184992e-01,0.000000000000000000e+00 +6.521740127649189311e-01,-3.534089958349609928e-01,0.000000000000000000e+00 +6.228763018649209338e-01,-3.559029106239530171e-01,0.000000000000000000e+00 +5.935158344643151063e-01,-3.575148599839325647e-01,0.000000000000000000e+00 +5.641284655377833968e-01,-3.585340604733041614e-01,0.000000000000000000e+00 +5.347296815010800231e-01,-3.591503035728551008e-01,0.000000000000000000e+00 +5.053259126007306756e-01,-3.594290565132558513e-01,0.000000000000000000e+00 +4.759236683506145593e-01,-3.590829996503789312e-01,0.000000000000000000e+00 +4.465708887805746041e-01,-3.574091703729705971e-01,0.000000000000000000e+00 +4.173592172451555116e-01,-3.540620010656433392e-01,0.000000000000000000e+00 +3.882483886992379452e-01,-3.499173433795512711e-01,0.000000000000000000e+00 +3.594483680934044689e-01,-3.440306866654019302e-01,0.000000000000000000e+00 +3.307658286376534695e-01,-3.376289928656056594e-01,0.000000000000000000e+00 +3.014370009593641542e-01,-3.372063343039778949e-01,0.000000000000000000e+00 +2.722256377020462748e-01,-3.405631921699279197e-01,0.000000000000000000e+00 +2.429112831845596510e-01,-3.427846543020944825e-01,0.000000000000000000e+00 +2.135167506894664058e-01,-3.427721707569108545e-01,0.000000000000000000e+00 +1.845568101499214519e-01,-3.380258577572242129e-01,0.000000000000000000e+00 +1.554079928587640547e-01,-3.387073467945612149e-01,0.000000000000000000e+00 +1.275694742405054927e-01,-3.481356246902564955e-01,0.000000000000000000e+00 +9.987772464957429819e-02,-3.579926435015609587e-01,0.000000000000000000e+00 +7.179710724688567747e-02,-3.670566858154306611e-01,0.000000000000000000e+00 +4.244488992183526044e-02,-3.722601050582509674e-01,0.000000000000000000e+00 +1.579372476049754545e-02,-3.684281723538509468e-01,0.000000000000000000e+00 +4.183568032788063419e-03,-3.534847327144720053e-01,0.000000000000000000e+00 +2.480619670756562672e-02,-3.312609451588794385e-01,0.000000000000000000e+00 +8.142997171107498738e-03,-3.296543420202823205e-01,0.000000000000000000e+00 +7.451621698086750151e-03,-3.034755395863542038e-01,0.000000000000000000e+00 +2.731646084338695130e-02,-2.845328769641719546e-01,0.000000000000000000e+00 +5.360685267983045926e-02,-2.729434235558315658e-01,0.000000000000000000e+00 +8.171877076499006742e-02,-2.649133981209215727e-01,0.000000000000000000e+00 +1.108665527332090284e-01,-2.594853409816288980e-01,0.000000000000000000e+00 +1.390805744163356450e-01,-2.517133002473298520e-01,0.000000000000000000e+00 +1.677852492669335005e-01,-2.457773580001592351e-01,0.000000000000000000e+00 +1.976194272781305883e-01,-2.474979159932871875e-01,0.000000000000000000e+00 +1.759707451490276076e-01,-2.333080798018226099e-01,0.000000000000000000e+00 +1.779831401360155163e-01,-2.068785748052716367e-01,0.000000000000000000e+00 +2.005736043717984141e-01,-1.906683952622901523e-01,0.000000000000000000e+00 +2.273035714016976849e-01,-1.776131805657174545e-01,0.000000000000000000e+00 +2.504603495115140799e-01,-1.595789766320935554e-01,0.000000000000000000e+00 +2.770308790927559217e-01,-1.471262262271763321e-01,0.000000000000000000e+00 +3.056813712325323062e-01,-1.407345105531869200e-01,0.000000000000000000e+00 +3.350021187676797130e-01,-1.388293559584034276e-01,0.000000000000000000e+00 +3.643731743095336983e-01,-1.400655973863164372e-01,0.000000000000000000e+00 +3.936126359217542725e-01,-1.431585567992639252e-01,0.000000000000000000e+00 +4.226950327968411747e-01,-1.474915136200202759e-01,0.000000000000000000e+00 +4.515819568859816280e-01,-1.529793547356242400e-01,0.000000000000000000e+00 +4.805202232507895799e-01,-1.581540820048955576e-01,0.000000000000000000e+00 +5.098597491417027339e-01,-1.597164744575509110e-01,0.000000000000000000e+00 +5.392438643366413986e-01,-1.586809135860747233e-01,0.000000000000000000e+00 +5.684316565971959667e-01,-1.552315138889323598e-01,0.000000000000000000e+00 +5.976990319133047569e-01,-1.526583353351299577e-01,0.000000000000000000e+00 +6.269344804481211675e-01,-1.554102530231442902e-01,0.000000000000000000e+00 +6.406764277026859578e-01,-1.347969554955098515e-01,0.000000000000000000e+00 +6.212178235961559603e-01,-1.189595098401894507e-01,0.000000000000000000e+00 +5.933945765051568122e-01,-1.100559940354598476e-01,0.000000000000000000e+00 +5.647489836335102265e-01,-1.049007484678110280e-01,0.000000000000000000e+00 +5.452859786978425660e-01,-8.984397295604051870e-02,0.000000000000000000e+00 +5.663548492264733891e-01,-7.339423847154415148e-02,0.000000000000000000e+00 +5.921363846220311089e-01,-6.686203187706768469e-02,0.000000000000000000e+00 +5.779198433802932300e-01,-4.115298259440142853e-02,0.000000000000000000e+00 +5.751626143740917740e-01,-1.289751283068794885e-02,0.000000000000000000e+00 +5.995856856303881655e-01,2.196165421234635312e-05,0.000000000000000000e+00 +6.273713641374075722e-01,-8.660278523315249194e-03,0.000000000000000000e+00 +6.505536054651219757e-01,-2.658023255101419832e-02,0.000000000000000000e+00 +6.703260298117242888e-01,-4.830302577904701383e-02,0.000000000000000000e+00 +6.919274968560821248e-01,-6.752172334060317638e-02,0.000000000000000000e+00 +7.209905089708629200e-01,-7.158722494351958676e-02,0.000000000000000000e+00 +7.503148391841983900e-01,-7.376005215186012820e-02,0.000000000000000000e+00 +7.801277493530475171e-01,-7.690605577296581730e-02,0.000000000000000000e+00 +8.040303637623555932e-01,-9.264300387394407144e-02,0.000000000000000000e+00 +8.209789707307111328e-01,-1.159569437647457318e-01,0.000000000000000000e+00 +8.348659618315968922e-01,-1.422185989422807550e-01,0.000000000000000000e+00 +8.463711382362213431e-01,-1.807529183541982665e-01,0.000000000000000000e+00 +8.338913408448297426e-01,-2.069344844993798449e-01,0.000000000000000000e+00 +8.181649564493965743e-01,-2.295389566290237382e-01,0.000000000000000000e+00 +8.283945984553182651e-01,-2.570006711564846724e-01,0.000000000000000000e+00 +8.365743506322956824e-01,-2.826598121655166107e-01,0.000000000000000000e+00 +8.350291905409190640e-01,-3.075267647522295644e-01,0.000000000000000000e+00 +8.094571255986369174e-01,-3.174873154156353516e-01,0.000000000000000000e+00 +7.808062410305698364e-01,-3.238518088703639108e-01,0.000000000000000000e+00 +7.525559256435317979e-01,-3.317129727369030334e-01,0.000000000000000000e+00 +7.243582090691690345e-01,-3.400840421372935407e-01,0.000000000000000000e+00 +6.958253323902243714e-01,-3.471791776422672449e-01,0.000000000000000000e+00 +6.668088211386629105e-01,-3.517219316544485941e-01,0.000000000000000000e+00 +6.375434073407609814e-01,-3.547919192988677750e-01,0.000000000000000000e+00 +6.081992064027239575e-01,-3.567973242084886976e-01,0.000000000000000000e+00 +5.788231441742079930e-01,-3.580863969041976902e-01,0.000000000000000000e+00 +5.494370494184774856e-01,-3.588800712283096161e-01,0.000000000000000000e+00 +5.200487254436115814e-01,-3.593450940146927786e-01,0.000000000000000000e+00 +4.906462336980075833e-01,-3.593674493055254437e-01,0.000000000000000000e+00 +4.612508706046357099e-01,-3.584755186446288988e-01,0.000000000000000000e+00 +4.319473068086594481e-01,-3.559014274971631919e-01,0.000000000000000000e+00 +4.028149593774959514e-01,-3.520952945044176774e-01,0.000000000000000000e+00 +3.737841700703968262e-01,-3.472968465606636190e-01,0.000000000000000000e+00 +3.451903477153441813e-01,-3.404417603028885853e-01,0.000000000000000000e+00 +3.161443726338907245e-01,-3.365925824415960110e-01,0.000000000000000000e+00 +2.868287310230888121e-01,-3.387801897623554659e-01,0.000000000000000000e+00 +2.575705995743380328e-01,-3.419544602726320992e-01,0.000000000000000000e+00 +2.281911244771283875e-01,-3.431042031529163983e-01,0.000000000000000000e+00 +1.989097733773933230e-01,-3.411512676896801266e-01,0.000000000000000000e+00 +1.699365378327930554e-01,-3.367522202199040859e-01,0.000000000000000000e+00 +1.414000313024591504e-01,-3.431265905133233929e-01,0.000000000000000000e+00 +1.136770628913646580e-01,-3.531024695675331615e-01,0.000000000000000000e+00 +8.601660069833577671e-02,-3.629551971403955357e-01,0.000000000000000000e+00 +5.766922107225048305e-02,-3.699834657906644897e-01,0.000000000000000000e+00 +2.883330618384480001e-02,-3.733869550529245185e-01,0.000000000000000000e+00 +6.261238037684539216e-03,-3.669413676412766057e-01,0.000000000000000000e+00 +1.364421233104922207e-02,-3.407725407112735527e-01,0.000000000000000000e+00 +1.862237933838717385e-02,-3.279206368358352219e-01,0.000000000000000000e+00 +1.268472968376192691e-03,-3.180859515804196902e-01,0.000000000000000000e+00 +1.123561125410727814e-02,-2.961983512330578217e-01,0.000000000000000000e+00 +3.993886506344272030e-02,-2.790570260675405145e-01,0.000000000000000000e+00 +6.784723243285580019e-02,-2.678454905177491407e-01,0.000000000000000000e+00 +9.622560486703199412e-02,-2.625115958649151260e-01,0.000000000000000000e+00 +1.250033644126729848e-01,-2.558665742817758382e-01,0.000000000000000000e+00 +1.533635093216803302e-01,-2.476930653483369882e-01,0.000000000000000000e+00 +1.825175780140983195e-01,-2.456006762873277904e-01,0.000000000000000000e+00 +1.884943658289102986e-01,-2.413565840940009311e-01,0.000000000000000000e+00 +1.714277198596610430e-01,-2.234061648431427960e-01,0.000000000000000000e+00 +1.894100694475440161e-01,-1.967506520343915710e-01,0.000000000000000000e+00 +2.147259670380688712e-01,-1.852509231143592006e-01,0.000000000000000000e+00 +2.385207859402328767e-01,-1.679179997404051938e-01,0.000000000000000000e+00 +2.634350719884758218e-01,-1.526065277288883304e-01,0.000000000000000000e+00 +2.912083275179183084e-01,-1.432122263461579892e-01,0.000000000000000000e+00 +3.203209968112489259e-01,-1.392909773885924185e-01,0.000000000000000000e+00 +3.497005606631966579e-01,-1.391471264277344966e-01,0.000000000000000000e+00 +3.790111172659207384e-01,-1.414380827883645608e-01,0.000000000000000000e+00 +4.081890911297108571e-01,-1.451821536487474806e-01,0.000000000000000000e+00 +4.371637158274700452e-01,-1.500910922425598981e-01,0.000000000000000000e+00 +4.660097981561672764e-01,-1.558429818913688036e-01,0.000000000000000000e+00 +4.951463485348857052e-01,-1.594423532474752991e-01,0.000000000000000000e+00 +5.245767807811296812e-01,-1.593726113060879024e-01,0.000000000000000000e+00 +5.538914581092010403e-01,-1.573595880576951489e-01,0.000000000000000000e+00 +5.829991017121903818e-01,-1.534365113256213609e-01,0.000000000000000000e+00 +6.123815196736714928e-01,-1.533630235218037818e-01,0.000000000000000000e+00 +6.394724825231120624e-01,-1.491953474933702395e-01,0.000000000000000000e+00 +6.354335795249711483e-01,-1.216542479060612192e-01,0.000000000000000000e+00 +6.069949218394671275e-01,-1.156410854519039078e-01,0.000000000000000000e+00 +5.793702137171996558e-01,-1.056574239728693826e-01,0.000000000000000000e+00 +5.506637766975922554e-01,-1.028608405060483649e-01,0.000000000000000000e+00 +5.525324641194292452e-01,-7.805094957964818503e-02,0.000000000000000000e+00 +5.809352620265655354e-01,-7.157000321272019572e-02,0.000000000000000000e+00 +5.847084220809799504e-01,-5.419237445384563617e-02,0.000000000000000000e+00 +5.734455062714283180e-01,-2.727186109681399920e-02,0.000000000000000000e+00 +5.850889954049414143e-01,-2.504886419535298434e-03,0.000000000000000000e+00 +6.133135851806005290e-01,-3.005210033563509957e-03,0.000000000000000000e+00 +6.396912974111708117e-01,-1.716326521825837711e-02,0.000000000000000000e+00 +6.608472577909135781e-01,-3.705225231039770140e-02,0.000000000000000000e+00 +6.798252765070978976e-01,-5.952019320613046588e-02,0.000000000000000000e+00 +7.063447517400888165e-01,-7.016026073618848724e-02,0.000000000000000000e+00 +7.356531901942922058e-01,-7.275458527318201529e-02,0.000000000000000000e+00 +7.651578340405209566e-01,-7.467003871445282437e-02,0.000000000000000000e+00 +7.911138290636737791e-01,-8.207559654672669236e-02,0.000000000000000000e+00 +8.137041476169334375e-01,-1.046239432357781995e-01,0.000000000000000000e+00 +8.278848586536664556e-01,-1.292537431028196460e-01,0.000000000000000000e+00 +8.442553388962448224e-01,-1.535066352161641445e-01,0.000000000000000000e+00 +6.536428243304245322e-01,-1.700557475944398655e-01,-1.348996730881055660e-17 +3.888571607399345931e-01,-3.186385263326682038e-01,1.610493534079134803e-17 +6.206648216934831375e-01,-3.258359407850914824e-01,5.684424014840184044e-18 +7.046025223619822864e-01,-3.145345453690430171e-01,3.419831022836568310e-19 +4.761864778834011824e-01,-3.274261589991800392e-01,1.286475684418790614e-17 +3.007954437762617173e-01,-3.105488642033602531e-01,1.945935408759143020e-17 +5.477017691551384626e-01,-1.835124752203285969e-01,-6.838139192115956293e-18 +5.634523298701357152e-01,-3.278687879815045392e-01,8.686102183000435945e-18 +4.306852595147721008e-01,-1.762174684872072350e-01,-1.991013712771802936e-18 +2.869990057740139378e-01,-1.760056034258752899e-01,4.947611471737908228e-18 +7.984941935149520997e-01,-2.319757090619180007e-01,-1.352263852619370541e-17 +7.357091265309235739e-01,-9.850780561387892376e-02,-2.553923421354831017e-17 +7.597478681110966248e-01,-3.024748237024899034e-01,-3.690842310350420176e-18 +2.143864044474549369e-01,-3.124765320150255654e-01,2.386392686719929922e-17 +6.695312810327501418e-02,-3.070684615722162336e-01,3.039784123893494894e-17 +1.863771088946812871e-01,-3.114405288228931368e-01,2.510426828946716277e-17 +1.332723953927799909e-01,-2.864554168260043943e-01,2.485851120560419186e-17 +6.746272929219865322e-01,-9.155966002837925832e-02,-2.336337032339217768e-17 +7.991518169756191003e-01,-2.570452708732947622e-01,-1.072595195567234044e-17 +3.428076498788740767e-01,-1.689911585897991286e-01,1.451894290777885416e-18 +8.027185263456991793e-01,-1.427892228303721811e-01,-2.379008249875877467e-17 +6.054990676078435552e-01,-1.809028434345230640e-01,-9.933232576278941403e-18 +6.460954699076150165e-01,-5.348043858569775932e-02,-2.627722744618803395e-17 +7.095759406476359610e-02,-3.377678062051958086e-01,3.366754968730284416e-17 +1.004971099393673212e-01,-3.272989563305944705e-01,3.105498770679810745e-17 +8.133857562534220209e-01,-2.891558639610370407e-01,-7.792699162151479820e-18 +2.399731286513520356e-01,-1.998014928074355601e-01,9.911166327579049683e-18 +1.296325322810620018e-01,-3.184652447487117399e-01,2.864649632995823566e-17 +6.182015816502821615e-01,-3.892459209707158085e-02,-2.656789738094504042e-17 +4.891366478887153590e-01,-1.825892186424566133e-01,-4.104449135461366027e-18 +3.596196327747759880e-01,-3.144744685124003514e-01,1.705185991028708209e-17 +3.744132059116327127e-02,-3.034651086584925217e-01,3.142131973513512892e-17 +6.497952895719272259e-01,-1.106199124336599005e-01,-2.000956561893252435e-17 +1.898151349231230745e-01,-2.821522498034345072e-01,2.163313085084830100e-17 +5.053114725462006795e-01,-3.280558347247889972e-01,1.152450739166244625e-17 +2.935926991471980718e-02,-3.497753841064747959e-01,3.703805088518534529e-17 +2.426730132992921674e-01,-3.128924655700024982e-01,2.254018649959957076e-17 +4.469728849484260191e-01,-3.255667082899634801e-01,1.407054620056551997e-17 +6.767989832876094569e-01,-3.196876947600972296e-01,2.270665026817763972e-18 +4.012871541394049668e-01,-1.725846490074809669e-01,-9.763694800573146711e-19 +2.121041623645648078e-01,-2.149879569902604926e-01,1.297505913291897763e-17 +7.823282194692914304e-01,-1.115829799806117573e-01,-2.632298323348764997e-17 +6.173897757625891325e-01,-9.491336191449326054e-02,-2.021144990320476745e-17 +5.182299514781451011e-01,-1.837976419996685540e-01,-5.377863916291298034e-18 +5.765124904245763071e-01,-1.824145687427401463e-01,-8.358079995353257188e-18 +3.139461873207569642e-01,-1.709477939769524502e-01,3.071182646171694421e-18 +7.099173247641531459e-01,-1.036669468869495514e-01,-2.370735793686763392e-17 +7.547327107991403938e-01,-9.406537557287780738e-02,-2.696228130627896758e-17 +3.718511485107684478e-01,-1.699315228296640612e-01,1.506482640484183861e-19 +8.186835689398110905e-01,-1.864691462640337971e-01,-1.963536654499610651e-17 +2.630519754092058848e-01,-1.856873986203126936e-01,7.200379375141210421e-18 +4.596788524667095310e-01,-1.798399171247961337e-01,-2.987226821978544618e-18 +6.990131318417871498e-01,-2.863365748591974458e-01,-2.568700031728998314e-18 +3.880565468312517363e-01,-2.880394906320085102e-01,1.269129718464803378e-17 +4.463801714513516150e-01,-2.943811364469135494e-01,1.058065612573736491e-17 +5.248423563376625189e-01,-2.098647237310999059e-01,-2.757176725435877555e-18 +2.926763701356160374e-01,-2.012811750787498744e-01,7.524302799526577257e-18 +5.826719138412150834e-01,-2.100298436737367824e-01,-5.540763120407057974e-18 +4.661440296986149034e-01,-2.073887868211281016e-01,-1.922180803486500039e-19 +4.073725613090595776e-01,-2.016201613102244217e-01,2.004776739589594169e-18 +7.238012313313858526e-01,-1.308309558133588513e-01,-2.131525781141750798e-17 +6.663942759510437241e-01,-1.398504071609827926e-01,-1.751587089034542337e-17 +3.487672161481628619e-01,-1.978580861657264489e-01,4.420117211442670406e-18 +7.739459185809312025e-01,-2.516340396676098878e-01,-1.011510223438187784e-17 +6.313891048480174684e-01,-1.764527758454386697e-01,-1.168986551438643976e-17 +7.557732313970311200e-01,-1.307954132368797928e-01,-2.286851847454488137e-17 +2.158342028486806563e-01,-2.850724969584311208e-01,2.070182463714132968e-17 +2.714310371128964006e-01,-3.117775956461343312e-01,2.102088527483947679e-17 +6.839362162907944853e-01,-1.101032172359458494e-01,-2.172221239265984215e-17 +3.302086174289416420e-01,-3.114170380093216894e-01,1.813204979775234854e-17 +2.726173102948097338e-01,-2.028463376772178250e-01,8.672888580522808692e-18 +7.864412720723545913e-01,-2.968387288364500165e-01,-5.620220851533240015e-18 +6.432815594762107958e-01,-7.456881127903788875e-02,-2.376151284373739604e-17 +7.322948528176906891e-01,-3.085366053639745920e-01,-1.676626220253796586e-18 +1.582998466704156337e-01,-3.129127560867251967e-01,2.663090217983213504e-17 +5.344082322570319343e-01,-3.281027261686814134e-01,1.011987162363060195e-17 +5.921697810005870366e-01,-3.271568304616980782e-01,7.214226835175652465e-18 +4.754569588192437135e-01,-2.961491192777955250e-01,9.371175732084792196e-18 +8.141715786564454049e-01,-1.680796968665358992e-01,-2.149157924788552481e-17 +1.036491070215908583e-01,-2.944561425095082452e-01,2.719665857971157696e-17 +1.623844988904918352e-01,-2.819203667203690755e-01,2.293615986915900717e-17 +6.488264037539943629e-01,-3.233991232646333813e-01,4.044871332570536755e-18 +4.177014746422195168e-01,-3.224920660226281433e-01,1.514202934795657178e-17 +4.347722555204817929e-02,-3.317796479802692655e-01,3.432351859807514302e-17 +3.199360708980724111e-01,-1.989636665036682017e-01,5.941913516403006187e-18 +4.521784951483971693e-02,-3.475623438037753199e-01,3.601990672161310518e-17 +4.953076592304371806e-01,-2.091227432507361539e-01,-1.409745675705943634e-18 +2.261758573356222601e-01,-2.379199480844091941e-01,1.488056888280514346e-17 +5.906769636588542483e-01,-8.487809604621526782e-02,-2.004930180500212522e-17 +6.587471964756120846e-01,-9.168065600017505368e-02,-2.258022505469191565e-17 +6.080713114097051619e-01,-6.603590494154942814e-02,-2.301810047146874358e-17 +7.970694020140257630e-01,-2.733267361916778548e-01,-8.788037590131617759e-18 +5.536394019115629117e-01,-2.101989625674594298e-01,-4.114868523184432808e-18 +3.778248783953107037e-01,-1.991009198127196289e-01,3.152311934359500461e-18 +2.177425164887360765e-01,-2.654521062838390288e-01,1.839562178319178245e-17 +4.365898296757240171e-01,-2.047709798620399313e-01,9.445119502861330648e-19 +7.312891331320781063e-01,-1.487614267376425881e-01,-1.965503299351018295e-17 +6.114319174708547910e-01,-2.094400658059064613e-01,-7.000915106318093567e-18 +5.906596850682234168e-01,-2.971786756153025344e-01,3.905020526010306003e-18 +7.703800706518808550e-01,-2.261961636941731413e-01,-1.281242270672644240e-17 +6.611335618649176737e-01,-1.910183374056407812e-01,-1.148777148692474209e-17 +5.291507845867091664e-01,-2.377564989902113401e-01,1.810298777150467039e-19 +2.945984031554994553e-01,-2.269113352494222524e-01,1.032297182321011382e-17 +4.412333603895639556e-01,-2.338437732703786687e-01,3.999732780836859540e-18 +3.824882565531114720e-01,-2.282192384003004504e-01,6.211707550203660405e-18 +7.850907982666683882e-01,-1.706710330141648080e-01,-1.979005140033093958e-17 +2.371758592457383075e-01,-2.609074620244125065e-01,1.694118659519007520e-17 +2.992066496998956326e-01,-2.827747886715786252e-01,1.640264344034553294e-17 +2.417414655599111062e-01,-2.857196650410819827e-01,1.951946876682714677e-17 +4.443802049483410732e-01,-2.636931860553030083e-01,7.215102288478465873e-18 +3.585872906674742455e-01,-2.850098715104282809e-01,1.377744712409364338e-17 +6.767436581052830302e-01,-1.680536433050616729e-01,-1.483524606567984263e-17 +6.990630784314998403e-01,-1.406044405431816635e-01,-1.901380973560754627e-17 +5.045623261931451164e-01,-2.969796946050026754e-01,8.054544482450473766e-18 +6.455373578656407041e-01,-2.944832191168395563e-01,9.417184679065603119e-19 +5.623195903388011896e-01,-2.973638775424660152e-01,5.299177644837542027e-18 +6.721957338321349340e-01,-2.910580372582963204e-01,-7.365094798667130410e-19 +7.532533724959776800e-01,-2.772687976407066657e-01,-6.220091635513751888e-18 +7.261866434200517917e-01,-2.814504191511958409e-01,-4.436728636269199026e-18 +7.818471563596373075e-01,-1.478680916834856640e-01,-2.220568999736210527e-17 +5.578431386546606197e-01,-2.382875554448721234e-01,-1.149382367625379819e-18 +5.862414443276213749e-01,-2.386048456164062692e-01,-2.489664921636027617e-18 +3.531386325146679273e-01,-2.267093366104302454e-01,7.463527458064847668e-18 +7.786275881132650456e-01,-2.746505790104480371e-01,-7.745045516701869528e-18 +4.169893811575449694e-01,-2.914332555730044239e-01,1.167222626221566065e-17 +4.998243954434958281e-01,-2.372475348717183186e-01,1.544657866349516855e-18 +4.703771942009750129e-01,-2.360111161516781630e-01,2.832062614924929369e-18 +4.116900050170282932e-01,-2.310751999790208733e-01,5.118926629138661742e-18 +6.808969911301849809e-01,-1.952335261527780030e-01,-1.196984560978956336e-17 +6.922407010093932778e-01,-2.586959032235747746e-01,-5.359178191049384611e-18 +6.145527062483208125e-01,-2.387323243207324919e-01,-3.847145721903876586e-18 +7.222230062098329295e-01,-1.543003667440238647e-01,-1.859077198682361884e-17 +5.318090431541965257e-01,-2.671372677826163167e-01,3.367198298535825611e-18 +3.856895653489705866e-01,-2.580443095914189966e-01,9.421691495447825776e-18 +5.886530607253388503e-01,-2.676607684237677365e-01,6.718031328247241991e-19 +4.734244418244090147e-01,-2.656064926720754782e-01,6.023595793221551307e-18 +2.696249537494419535e-01,-2.841069916105627424e-01,1.798637819992526552e-17 +4.148271965257818161e-01,-2.610284701864333812e-01,8.346481932092105136e-18 +3.288847553902167764e-01,-2.832355774088352041e-01,1.501653696730643230e-17 +5.334119141822295518e-01,-2.973666652110308339e-01,6.700256293283503517e-18 +7.532627215091294293e-01,-1.629482618055294318e-01,-1.911912107056490756e-17 +7.474661498300840812e-01,-2.517377804719682644e-01,-8.820281066111462688e-18 +6.671463283260284927e-01,-2.641422631282311362e-01,-3.528690518637411624e-18 +7.645440822049718310e-01,-1.975536567501595953e-01,-1.576131280484551957e-17 +6.183224743965863857e-01,-2.963410768703123033e-01,2.470074503635689451e-18 +3.562642478894707532e-01,-2.558691639461105893e-01,1.060212099549236458e-17 +3.238328549233420173e-01,-2.266925026513504915e-01,8.881682826934077165e-18 +2.658861148473744551e-01,-2.565024504759074730e-01,1.505297940367998018e-17 +5.025178522723836583e-01,-2.667003655153057928e-01,4.737251309975743131e-18 +7.028072183255517080e-01,-1.703020557350198860e-01,-1.584451009920646687e-17 +6.447269106899968794e-01,-2.078831074143545898e-01,-8.789941912075186710e-18 +2.600627350107158064e-01,-2.242482293924170089e-01,1.169597525362085322e-17 +7.081154775833582438e-01,-1.974533691666979229e-01,-1.303829673362353634e-17 +3.266082693865220432e-01,-2.549121777816089063e-01,1.193117021722524489e-17 +7.357784859348240891e-01,-1.973238853939827120e-01,-1.439335805532063792e-17 +6.791948101897636869e-01,-2.272982241005050419e-01,-8.269562851099763778e-18 +7.195317878639286846e-01,-2.541302838597318536e-01,-7.196738551257830526e-18 +6.425657322595300647e-01,-2.669585021667391089e-01,-2.019850364774287761e-18 +7.419072774778523449e-01,-2.251093522283114101e-01,-1.155535442736930300e-17 +6.161793453108043161e-01,-2.675235957993967739e-01,-6.775005559951620517e-19 +2.963887075637416935e-01,-2.548736575891426548e-01,1.339115753198940209e-17 +6.419417251633378063e-01,-2.403046091281842156e-01,-4.996923052841589955e-18 +7.277306164489231177e-01,-1.712505241692621749e-01,-1.694519619242207066e-17 +7.990407486945310112e-01,-2.000784712503780871e-01,-1.714802951266372144e-17 +5.602740342229318715e-01,-2.675515634644117235e-01,2.034629359065686149e-18 +7.130093512640987008e-01,-2.258638380449863314e-01,-1.006993550322420342e-17 +6.618857208257517000e-01,-2.440933707899458072e-01,-5.535859773079228908e-18 +5.035400892327643874e-01,-2.818400300601542341e-01,6.395897896213109219e-18 +5.171634477132900365e-01,-2.669188166489610547e-01,4.052224804255785141e-18 +5.326104786682130943e-01,-2.822519664968235475e-01,5.033727295909664564e-18 +5.189871201876874451e-01,-2.971731799080167269e-01,7.377400387866990182e-18 +5.970519156560349927e-01,-2.097349547398216218e-01,-6.270839113362576156e-18 +6.129923118595879128e-01,-2.240861950633195043e-01,-5.424030414110985077e-18 +6.003970752879711492e-01,-2.386685849685694083e-01,-3.168405321769952102e-18 +5.844566790844182291e-01,-2.243173446450715258e-01,-4.015214021021543181e-18 +6.827286771912719487e-01,-1.402274238520822836e-01,-1.826484031297648482e-17 +7.009351483785257741e-01,-1.554532481391007748e-01,-1.742915991740700657e-17 +6.897754382154174246e-01,-1.691778495200408072e-01,-1.533987808244315475e-17 +6.715689670281633772e-01,-1.539520252330222605e-01,-1.617555847801263300e-17 +3.709769066192206699e-01,-2.569567367687647930e-01,1.001190624547009595e-17 +3.868730560901111337e-01,-2.730419001117137534e-01,1.105649434004792978e-17 +3.733219187493629909e-01,-2.865246810712184233e-01,1.323437215437083704e-17 +3.574257692784725271e-01,-2.704395177282694074e-01,1.218978405979300321e-17 +4.879711470483962810e-01,-2.661534290936906078e-01,5.380423551598647989e-18 +4.719008180126920138e-01,-2.508088044118768623e-01,4.427829204073240338e-18 +4.851007948222353927e-01,-2.366293255116982408e-01,2.188360240637223305e-18 +5.011711238579397154e-01,-2.519739501935120418e-01,3.140954588162629801e-18 +1.019258722069666251e-01,-3.105892781939442182e-01,2.910043258043051063e-17 +8.588596808197215826e-02,-3.324866438242576328e-01,3.234830942069624140e-17 +6.918995212752288015e-02,-3.222195171941178993e-01,3.199891845038603036e-17 +8.527666117479716645e-02,-3.006466660636921140e-01,2.878538798443966688e-17 +3.346161540073198937e-02,-3.164765924009329545e-01,3.308222407479301033e-17 +2.342166272516357783e-02,-3.045608885045782421e-01,3.222429778304952903e-17 +7.054613479544550314e-01,-1.838777124508589322e-01,-1.444140341641500238e-17 +6.945062343567715013e-01,-1.963434476597379907e-01,-1.250407117170654908e-17 +6.788203246177340056e-01,-1.816435847289198380e-01,-1.340254583773470453e-17 +6.303356676193998531e-01,-8.474108659676557465e-02,-2.198648137347108175e-17 +6.040333697107217459e-01,-8.989572898035425030e-02,-2.013037585410344326e-17 +5.993741375342797051e-01,-7.545700049388234798e-02,-2.153370113823543286e-17 +6.256764354429579233e-01,-7.030235811029367232e-02,-2.338980665760306827e-17 +6.280794140804258907e-01,-2.086615866101305672e-01,-7.895428509196640138e-18 +6.084654925393492286e-01,-1.951714546202147904e-01,-8.467073841298518255e-18 +6.184440862279304563e-01,-1.786778096399808113e-01,-1.081154904533269212e-17 +6.380580077690071183e-01,-1.921679416298965881e-01,-1.023990371323081400e-17 +1.944983895935377405e-01,-2.243272035413779175e-01,1.488190290356612795e-17 +2.192199494226436396e-01,-2.258365810996842971e-01,1.385428353070841051e-17 +2.119663199762603645e-01,-2.421659919197251543e-01,1.604818633074827683e-17 +3.437360230288454832e-01,-2.841227244596317147e-01,1.439699204570003938e-17 +3.277465123883694376e-01,-2.690738775952220552e-01,1.347385359226584091e-17 +3.414362586379964259e-01,-2.553906708638597478e-01,1.126664560635880474e-17 +5.777129736461823484e-01,-9.488942225701313404e-02,-1.829155295446048245e-17 +5.785159064426639297e-01,-7.913616725887975822e-02,-2.010787112116268507e-17 +4.002583809373762569e-01,-2.595363898889261889e-01,8.884086713769966997e-18 +4.159082888416633650e-01,-2.762308628797189303e-01,1.000935409715388366e-17 +4.025229639943983528e-01,-2.897363731025064948e-01,1.218176172343184798e-17 +2.811374112055580743e-01,-2.556880540325250362e-01,1.422206846783469114e-17 +2.977976786318186631e-01,-2.688242231303606400e-01,1.489690048616746597e-17 +2.844158017246687931e-01,-2.834408901410707116e-01,1.719451082013539769e-17 +2.677555342984082598e-01,-2.703047210432351077e-01,1.651967880180261977e-17 +6.088024203578801252e-01,-1.946268914141793815e-02,-2.830829796655720953e-17 +5.980607125152876957e-01,-4.003878734573648734e-02,-2.546622922891881946e-17 +4.558052772952694842e-01,-2.349274447110284436e-01,3.415897697880894840e-18 +4.589023233863750995e-01,-2.646498393636892432e-01,6.619349040850008590e-18 +4.428067826689525699e-01,-2.487684796628408523e-01,5.607417534657662322e-18 +2.315831396890917493e-01,-2.484065183036344715e-01,1.580173152161702335e-17 +2.277769286944086868e-01,-2.629606216750710601e-01,1.762827988776286814e-17 +2.066273054902975637e-01,-2.559198212775763981e-01,1.785871550335498201e-17 +7.422759273206037678e-01,-1.558548442715860238e-01,-1.938707703203754680e-17 +7.275451822317320349e-01,-1.397961912755007197e-01,-2.048514540246384855e-17 +7.397872313642083197e-01,-1.308131845251193359e-01,-2.209188814298119467e-17 +7.545179764530802746e-01,-1.468718375212046123e-01,-2.099381977255489600e-17 +2.556832096546765576e-01,-2.849133283258223903e-01,1.875292348337620306e-17 +2.395068638495801983e-01,-2.734380251001709006e-01,1.824203477916447739e-17 +2.518235344780593299e-01,-2.584867126957441363e-01,1.595828316176576768e-17 +6.131364465299937727e-01,-5.248024851931051837e-02,-2.479299892620689046e-17 +6.001038480158681354e-01,-6.644896840930852866e-02,-2.258542007777901002e-17 +3.098137792766446630e-01,-1.558411522650696712e-01,1.566969896634391778e-18 +3.004725965473854510e-01,-1.734766987014138562e-01,4.009397058954801324e-18 +2.820149424333849297e-01,-1.615659148265258249e-01,3.559918033398478982e-18 +7.152689173872374129e-01,-1.707762899521410305e-01,-1.639485314581426877e-17 +7.317545511918736034e-01,-1.842872047816224712e-01,-1.566927712387135275e-17 +7.219469817590912220e-01,-1.973886272803403175e-01,-1.371582739447208636e-17 +7.388428817063381615e-01,-2.112166188111470611e-01,-1.297435624134496892e-17 +7.274583143709755229e-01,-2.254865951366489263e-01,-1.081264496529675321e-17 +7.105624144237284723e-01,-2.116586036058421549e-01,-1.155411611842387065e-17 +3.000010467380786472e-01,-2.966618264374694669e-01,1.793099876396848157e-17 +2.861132404445790312e-01,-3.111632299247473199e-01,2.024011968121545657e-17 +2.705279954311691215e-01,-2.979422936283485646e-01,1.950363173738236961e-17 +8.114502411007227245e-01,-2.374745080532684460e-01,-1.353002353095925734e-17 +8.143693058916503524e-01,-2.643329140965903212e-01,-1.064108642410633698e-17 +7.988355555277819597e-01,-2.445278143496836809e-01,-1.212294870513782325e-17 +1.314524638369209963e-01,-3.024603307873580116e-01,2.675250376778120760e-17 +1.149290123993375323e-01,-3.228034608706730202e-01,2.984845006030104765e-17 +1.184269521950258863e-01,-2.904413107178337450e-01,2.602759016859899532e-17 +2.028246688859018654e-01,-2.836123733809328140e-01,2.116747774399481226e-17 +2.151103036480678243e-01,-2.987745144867283154e-01,2.228287575217031445e-17 +2.003817566710681120e-01,-3.119585304189593233e-01,2.448409757833323253e-17 +1.880961219089022363e-01,-2.967963893131638775e-01,2.336869957015773343e-17 +2.663400226527627979e-01,-2.135472835348173892e-01,1.018443191707183018e-17 +2.826468402152129133e-01,-2.020637563779838497e-01,8.098595690024693745e-18 +2.936373866455577741e-01,-2.140962551640860634e-01,8.923637311368344768e-18 +2.773305690831076586e-01,-2.255797823209196862e-01,1.100947353841548275e-17 +7.920657734805996997e-01,-1.853747521322714198e-01,-1.846904045649732743e-17 +7.996311884615570076e-01,-1.693753649403503814e-01,-2.064081532410823220e-17 +8.164275737981281367e-01,-1.772744215652848621e-01,-2.056347289644081412e-17 +8.088621588171710508e-01,-1.932738087572059282e-01,-1.839169802882991552e-17 +3.449141251018588150e-01,-3.129457532608610482e-01,1.759195485401971686e-17 +3.295466864095792370e-01,-2.973263077090784190e-01,1.657429338252938734e-17 +3.591034617211251168e-01,-2.997421700114142884e-01,1.541465351719035965e-17 +1.603421727804537067e-01,-2.974165614035471639e-01,2.478353102449557264e-17 +1.439661894757388316e-01,-3.156890004177185238e-01,2.763869925489518227e-17 +1.478284471416358992e-01,-2.841878917731867071e-01,2.389733553738160106e-17 +8.320857893282227469e-01,-1.674662478054571857e-01,-2.242885310307601940e-17 +8.301548192950580773e-01,-1.904660552503632254e-01,-1.974025900320644804e-17 +6.914996473611471073e-01,-1.253538288895637010e-01,-2.036801106413369575e-17 +6.969267705274738711e-01,-1.068850820614477004e-01,-2.271478516476373650e-17 +7.168592780477694992e-01,-1.172489513501542013e-01,-2.251130787414257095e-17 +7.114321548814427354e-01,-1.357176981782702851e-01,-2.016453377351252713e-17 +7.998603006181594921e-01,-2.930967572770108998e-01,-6.692659477478684791e-18 +8.188770394863048585e-01,-3.028535015108278494e-01,-6.513308071568280677e-18 +7.906340414167755126e-01,-3.082826913782902856e-01,-4.532186371961967955e-18 +7.607060342055076418e-01,-2.516859100697891316e-01,-9.467691650246669492e-18 +7.762866823473042466e-01,-2.630404409915855779e-01,-8.941564053975719063e-18 +7.658604275392361105e-01,-2.760057398459316302e-01,-6.973493592597990660e-18 +7.503597611630308251e-01,-2.645032890563374650e-01,-7.520186350812607673e-18 +4.409686719785596565e-02,-3.607733256974607894e-01,3.756479643502794135e-17 +5.911889627251205870e-02,-3.426472248789805830e-01,3.479174712577895607e-17 +7.166379859910861072e-02,-3.524861796978562833e-01,3.529397659441673437e-17 +2.287878342042958812e-01,-2.853960809997565518e-01,2.011064670198423669e-17 +2.166273464545562799e-01,-2.756348194454739664e-01,1.959855584613068031e-17 +7.876817281427503925e-01,-2.740831736747977310e-01,-8.247796540813972570e-18 +7.864341838640356297e-01,-2.543456988435184862e-01,-1.041428803140305639e-17 +7.982449255143957423e-01,-2.649432173697934823e-01,-9.790896371414292143e-18 +1.072312988989027466e-01,-2.771236081322159261e-01,2.506748011534506663e-17 +7.455236292712216772e-02,-2.861102115265277690e-01,2.766492817879195613e-17 +7.106430423206663294e-01,-1.474524036436027641e-01,-1.880229086121558410e-17 +7.267560696709556289e-01,-1.515308967408332264e-01,-1.912290249016689935e-17 +6.792817546063905088e-01,-1.008314386321625400e-01,-2.254279135802600991e-17 +6.832773948890341620e-01,-7.954069168449121041e-02,-2.513860194085473630e-17 +7.009224108101176354e-01,-8.559433511377639858e-02,-2.531059574759246597e-17 +7.690176252360643172e-01,-1.212266803574815754e-01,-2.458991771247294748e-17 +7.924407756925262447e-01,-1.270992311721384771e-01,-2.506233190526883324e-17 +7.922828413526682434e-01,-1.453286572569288948e-01,-2.299788624806043997e-17 +7.688101938783341582e-01,-1.393317524601827007e-01,-2.253710423595349332e-17 +2.434491715923828847e-01,-2.306874101059047111e-01,1.322753094515352747e-17 +2.261727481417036834e-01,-2.074075563255828591e-01,1.143806233552007135e-17 +2.498281610228122729e-01,-2.119542888154922755e-01,1.080480387381126512e-17 +3.092156290394207918e-01,-2.268019189503863720e-01,9.602327325072093952e-18 +3.252205621549320580e-01,-2.408023402164797266e-01,1.040642652207965949e-17 +3.114984884751318961e-01,-2.548929176853757528e-01,1.266116387460732272e-17 +2.954935553596206299e-01,-2.408924964192824536e-01,1.185706467759975719e-17 +1.651017455808398426e-01,-2.637959250549141710e-01,2.075954415352933394e-17 +1.362425283659398079e-01,-2.691653314981493628e-01,2.276378040734756874e-17 +6.053921761338729723e-01,-1.024846779749765124e-01,-1.877583079599437936e-17 +6.335925326672581237e-01,-1.027666371740765805e-01,-2.011050776106864436e-17 +6.355065565840416486e-01,-1.147897111369247103e-01,-1.884671322833214808e-17 +8.113434818651181768e-01,-2.087570153320983668e-01,-1.676499239557480072e-17 +7.501612840698980156e-01,-1.974387710720711397e-01,-1.507733543008307875e-17 +7.404966689790262180e-01,-1.670993929873957895e-01,-1.803215863149348757e-17 +7.589034018570506301e-01,-1.802509592778445136e-01,-1.744021693770521357e-17 +8.084450525010722366e-01,-1.554344598484539985e-01,-2.264083087332215128e-17 +8.187922440886480357e-01,-1.425039108863264958e-01,-2.460114944302597607e-17 +4.608317712503212649e-02,-2.891358443137596601e-01,2.938582120120427732e-17 +2.678346428520078648e-01,-1.942668681487652593e-01,7.936633977832010327e-18 +2.750254905916099668e-01,-1.808465010230939918e-01,6.073995423439559324e-18 +2.898376879548150153e-01,-1.886433892523125821e-01,6.235957135632242742e-18 +2.285297088733735382e-01,-3.126844987925139763e-01,2.320205668339943191e-17 +2.427921482419259092e-01,-3.278385599360484903e-01,2.422075405894108059e-17 +2.139515775684607268e-01,-3.276243513859682377e-01,2.559409772672641311e-17 +7.249768113293779681e-01,-1.627754454566429643e-01,-1.776798408962284321e-17 +6.666872446987992529e-01,-9.162015801427716988e-02,-2.297179768904204820e-17 +6.510143779759114402e-01,-8.312473363960642958e-02,-2.317086894921465893e-17 +6.676045281661464603e-01,-7.104526730982055338e-02,-2.533767320102734702e-17 +3.884568537855931369e-01,-3.033390084823383570e-01,1.439811626271969245e-17 +3.742383967573552628e-01,-3.165564974225342221e-01,1.657839762553921198e-17 +3.140457025450562600e-01,-2.830051830402069424e-01,1.570959020382598262e-17 +6.024162030180716387e-01,-2.675921821115823107e-01,-2.848711585218926313e-21 +6.172509098536953509e-01,-2.819323363348545386e-01,8.962869738202632180e-19 +6.044910797324049012e-01,-2.967598762428074188e-01,3.187547514822997727e-18 +5.896563728967810780e-01,-2.824197220195351354e-01,2.288411829417515197e-18 +6.535353518268648410e-01,-1.373236813282463498e-01,-1.717785858204785229e-17 +6.651932412178538367e-01,-1.690546954497507970e-01,-1.416260668724520116e-17 +6.471596260165554115e-01,-1.524263515449749140e-01,-1.516490679128041736e-17 +2.067985689224092760e-01,-2.033612532866847511e-01,1.192032983756101070e-17 +2.335344067943225521e-01,-1.886692986077577183e-01,8.967139042740608706e-18 +7.730123843239559145e-01,-2.997690877630552753e-01,-4.638877248382105560e-18 +7.565006203035371524e-01,-2.898718106715982290e-01,-4.955466972932085647e-18 +7.825370462260318183e-01,-2.860740178707256165e-01,-6.645598422538184229e-18 +1.000787873905311098e-01,-3.424899391600494392e-01,3.278922887851402245e-17 +2.570520252060942701e-01,-3.123350306080683869e-01,2.178053588721952377e-17 +2.422072394296016506e-01,-2.993060653055422127e-01,2.102982763321335722e-17 +7.292407481188711849e-01,-2.949935122575851887e-01,-3.056677428261497613e-18 +7.397200079580147358e-01,-2.793596083959512533e-01,-5.328410135891475842e-18 +7.460213604643936014e-01,-3.055057145332322199e-01,-2.683734265302108574e-18 +3.011162223678129357e-01,-3.238775992536691017e-01,2.094766702061740109e-17 +2.718283374074713099e-01,-3.261703939080311532e-01,2.262554653664751936e-17 +1.854669595223014111e-01,-3.247331932900586748e-01,2.664815787629968766e-17 +3.547014402020693402e-01,-2.412892502782704174e-01,9.032824226778606124e-18 +3.384857437190050278e-01,-2.267009196308903962e-01,8.172605142499462417e-18 +6.857177555995784823e-01,-2.429970636620399083e-01,-6.814370521074574195e-18 +6.796935146677109962e-01,-2.614190831759028999e-01,-4.443934354843397347e-18 +6.645160245758900963e-01,-2.541178169590884162e-01,-4.532275145858319881e-18 +6.705402655077576934e-01,-2.356957974452254245e-01,-6.902711312089495958e-18 +6.282472157058293094e-01,-2.395184667244583399e-01,-4.422034387372733271e-18 +6.422537287114339355e-01,-2.536315556474616484e-01,-3.508386708807938858e-18 +6.293725387851671904e-01,-2.672410489830679414e-01,-1.348675460384725003e-18 +6.153660257795625643e-01,-2.531279600600646607e-01,-2.262323138949519030e-18 +7.632724988288559498e-01,-3.153139350694966203e-01,-2.413020103846161521e-18 +7.353414713947268311e-01,-3.221292127514082670e-01,-2.906256556344008191e-19 +6.956269164255902693e-01,-2.725162390413861102e-01,-3.963939111389190885e-18 +6.856044328369610419e-01,-2.886973060587468831e-01,-1.652604755797855678e-18 +6.696710310790817688e-01,-2.776001501932637838e-01,-2.132599999252062525e-18 +7.058862444366610367e-01,-2.564130935416533141e-01,-6.277958371153606798e-18 +7.228592156419901826e-01,-2.677903515054638195e-01,-5.816733593763514006e-18 +7.125998876309195262e-01,-2.838934970051966156e-01,-3.502714333999098863e-18 +6.582107498596697637e-01,-5.089173218237239005e-02,-2.715637021678232692e-17 +6.446885146919127951e-01,-6.402462493236779628e-02,-2.501937014496271345e-17 +6.321485257789485335e-01,-4.620251534138467009e-02,-2.642256241356653565e-17 +6.343775935577021796e-01,-3.275241232404288438e-02,-2.804812564163454914e-17 +6.548560302927792787e-01,-2.655503826474850948e-01,-2.774270441705849693e-18 +6.519137229945447531e-01,-2.421989899590650253e-01,-5.266391412960409046e-18 +4.264616827032960966e-01,-2.324594866246997571e-01,4.559329704987759871e-18 +4.296037007370615002e-01,-2.623608281208681947e-01,7.780792110285284734e-18 +4.132586007714050269e-01,-2.460518350827271272e-01,6.732704280615383054e-18 +6.588665458488878190e-01,-2.927706281875678829e-01,1.026044940199234429e-19 +6.440515450625854399e-01,-2.807208606417893604e-01,-5.390659484338637244e-19 +6.194936480450347061e-01,-3.110885088277018928e-01,4.077249259237936747e-18 +6.064173013470350870e-01,-3.264963856233947248e-01,6.449325425007918640e-18 +5.914147330344051712e-01,-3.121677530385003063e-01,5.559623680592978848e-18 +1.934564936791523804e-01,-2.648431759985594991e-01,1.950373238139630287e-17 +7.073960578639586494e-01,-3.292889196940319008e-01,1.871327213990711026e-18 +7.184486875898364877e-01,-3.115355753665087768e-01,-6.673215589850698774e-19 +6.907007528247959272e-01,-3.171111200645701511e-01,1.306324064550710594e-18 +6.790683892042015390e-01,-3.346806177434578644e-01,3.852321618959251725e-18 +7.334989688470063829e-01,-2.529340321658500867e-01,-8.008509808684645837e-18 +6.710152764975512163e-01,-1.931259317792093644e-01,-1.172880854835715195e-17 +6.573881930976711585e-01,-1.805370425000403234e-01,-1.248886939786764858e-17 +4.609185651352976643e-01,-2.952651278623545372e-01,9.975915928911077784e-18 +4.453801881998463719e-01,-2.790371612511083343e-01,8.897879207107913853e-18 +4.744407003218263918e-01,-2.808778059749355016e-01,7.697385762653170981e-18 +7.018078271018848291e-01,-3.004355601141202592e-01,-1.113358464722670742e-18 +8.015250994983328381e-01,-1.139878443864163760e-01,-2.698185995240687601e-17 +7.808510290141136290e-01,-9.433039820627192595e-02,-2.819798095283463100e-17 +6.505002082594566470e-01,-3.384040595497971871e-01,5.656744109111565933e-18 +6.217705617792020911e-01,-3.408694257045222775e-01,7.327044281452799454e-18 +6.347456127237387502e-01,-3.246175320248624319e-01,4.864647673705361170e-18 +5.778110554353613759e-01,-3.275128092216013087e-01,7.950164509088043434e-18 +5.628859601044684524e-01,-3.126163327619853050e-01,6.992639913918989371e-18 +5.764896377035122477e-01,-2.972712765788843026e-01,4.602099085423924015e-18 +6.319299161311136004e-01,-2.954121479935759575e-01,1.705896485771124881e-18 +6.471818808098175335e-01,-3.089411711907364411e-01,2.493294900238548919e-18 +4.907489752148008200e-01,-3.277409968619844904e-01,1.219463211792517542e-17 +5.053186925734656221e-01,-3.437424456190224520e-01,1.329404907533418831e-17 +4.760550731170079541e-01,-3.432545793247794852e-01,1.465701589495845250e-17 +4.900096425061944982e-01,-2.965644069413991279e-01,8.712860107267632981e-18 +5.049368993696728980e-01,-3.125177646648957808e-01,9.789525937056458465e-18 +4.758217183513225312e-01,-3.117876391384877821e-01,1.111796628813634994e-17 +2.510334030870121080e-01,-1.929284391903887119e-01,8.599750367257059459e-18 +6.628126935208019654e-01,-3.215434090123653332e-01,3.157768179694149978e-18 +4.467718868645003116e-01,-3.414879393314670386e-01,1.587664916114608048e-17 +4.175303459436875420e-01,-3.382770335441357412e-01,1.693131058029732308e-17 +4.323371797953227680e-01,-3.240293871562958117e-01,1.460628777426104741e-17 +7.721629946164060287e-01,-2.389151016808915284e-01,-1.146376247055416089e-17 +7.844371320834164774e-01,-2.290859363780455571e-01,-1.316753061646007468e-17 +5.928428077324510159e-01,-3.423358452228153492e-01,8.894234731271036570e-18 +2.567561624603599824e-01,-1.726331876262031384e-01,6.032569597918515449e-18 +5.637903977039595560e-01,-3.432014242274044058e-01,1.039967383737144852e-17 +5.489302810635837693e-01,-3.279857570750929763e-01,9.402986903315518947e-18 +5.339100732196306875e-01,-3.127346956898560681e-01,8.410063958457051963e-18 +5.478657522605153707e-01,-2.973652713767484523e-01,5.999716969060522387e-18 +1.723384777825484604e-01,-3.121766424548091945e-01,2.586758523464965199e-17 +1.568539197645898997e-01,-3.258100514406432335e-01,2.815614488593709982e-17 +1.286010032607837195e-01,-3.333004347194841177e-01,3.037030787066251216e-17 +3.754282615716991733e-02,-3.494637421622499573e-01,3.660634259803691921e-17 +2.598070058678408900e-02,-3.410461593854419715e-01,3.621686203189167455e-17 +3.358417014334948159e-02,-3.316273232619464384e-01,3.478571468313845139e-17 +4.461961406877243408e-02,-3.393073423314045822e-01,3.511749842532384415e-17 +4.615796814159136008e-01,-3.264964336445717596e-01,1.346765152237671382e-17 +4.466765281998887893e-01,-3.099739223684385703e-01,1.232560116315144321e-17 +5.345689568790560342e-01,-3.436265148707682848e-01,1.186360408621082288e-17 +5.198598524016162514e-01,-3.280792804467351775e-01,1.082218950764652487e-17 +3.885527747195862691e-01,-3.342779348561096819e-01,1.788425059854908332e-17 +3.595340004340902285e-01,-3.292525775889011408e-01,1.872339629844955416e-17 +4.032793176910770550e-01,-3.205652961776481180e-01,1.562348234437395836e-17 +3.155020306026017352e-01,-3.109829511063409990e-01,1.879570194267188937e-17 +3.304872230332975835e-01,-3.245230154374636466e-01,1.959727295111616536e-17 +4.316847763044482922e-01,-2.929071960099590144e-01,1.112644119397651278e-17 +6.744973585598722510e-01,-3.053728660091967750e-01,7.670777734755256579e-19 +5.312102358538217661e-02,-3.053325289404016929e-01,3.087223418647947656e-17 +4.173454278998821598e-01,-3.069626607978162558e-01,1.340712780508611698e-17 +5.612968122808665861e-01,-2.824577205034388694e-01,3.666903501951614088e-18 +5.744635474741351944e-01,-2.676061659440897023e-01,1.353216245945205270e-18 +7.228132256475383599e-01,-1.010873762504142515e-01,-2.462329607520797051e-17 +7.283498177508932470e-01,-8.504751527869922056e-02,-2.670132791774242275e-17 +7.987674711047415554e-01,-2.160270901561480716e-01,-1.533533401942871420e-17 +5.590585864387962456e-01,-2.529195594546418957e-01,4.426234957201531649e-19 +5.720422914911409418e-01,-2.384462005306391685e-01,-1.819523644630703910e-18 +5.874472525264801126e-01,-2.531328070200870028e-01,-9.089308944056516125e-19 +5.557412702831117102e-01,-2.242432590061657627e-01,-2.632125445404906506e-18 +5.681556578763889975e-01,-2.101144031205981200e-01,-4.827815821795745006e-18 +6.291617926480692624e-01,-1.659315144342914661e-01,-1.276903244474215243e-17 +6.425159645892211113e-01,-1.732542617199392676e-01,-1.258991641159849818e-17 +7.457411789639774025e-01,-1.146516094253793583e-01,-2.420387634404659731e-17 +7.446867136539682130e-01,-2.384235663501398372e-01,-1.018781774674038285e-17 +7.561436740648665999e-01,-2.256527579612422896e-01,-1.218388856704787424e-17 +6.619608604398803386e-01,-2.175906657574298020e-01,-8.529752381587476014e-18 +6.529302362774572766e-01,-1.994507224099977549e-01,-1.013885669949996286e-17 +6.800459006599742784e-01,-2.112658751266415502e-01,-1.011970423044466357e-17 +6.015990497605742116e-01,-1.667805893848264831e-01,-1.133763948111939272e-17 +2.629744249290451030e-01,-2.403753399341622410e-01,1.337447732865041670e-17 +7.674620764284264540e-01,-2.118749102221663683e-01,-1.428686775578598253e-17 +3.840889109510409738e-01,-2.431317739958597235e-01,7.816699522825743091e-18 +3.970891307850698548e-01,-2.296472191896606341e-01,5.665317089671160688e-18 +7.162705695640135817e-01,-2.399970609523590648e-01,-8.633337027241016201e-18 +4.219811954923918251e-01,-2.031955705861321904e-01,1.474644344937863617e-18 +4.043298577242323555e-01,-1.871024051588527082e-01,5.142036297661397487e-19 +4.159862068270885338e-01,-1.744010587473440732e-01,-1.483691596414558996e-18 +4.336375445952480590e-01,-1.904942241746235831e-01,-5.232508812428350321e-19 +5.460415386885641986e-01,-2.673444156235139646e-01,2.700913828800756265e-18 +3.801565674742111156e-01,-2.136600791065100535e-01,4.682009742281579662e-18 +3.925987198521850852e-01,-2.003605405614720114e-01,2.578544336974547315e-18 +4.095312831630439909e-01,-2.163476806446226197e-01,3.561851684364128341e-18 +5.910057790162099867e-01,-1.816587060886315774e-01,-9.145656285816099295e-18 +5.724720735108862479e-01,-1.688230413158362808e-01,-9.695802744585135739e-18 +5.506705855333506872e-01,-1.968557188938940272e-01,-5.476503857650194166e-18 +5.621071297898574404e-01,-1.829635219815343439e-01,-7.598109593734607126e-18 +5.795922021328956397e-01,-1.962222062082384366e-01,-6.949421557880156425e-18 +4.556304046763455795e-01,-1.664096359302101868e-01,-4.306367306530612812e-18 +4.451820559907408437e-01,-1.780286928060016982e-01,-2.489120267375173970e-18 +4.266901461558066933e-01,-1.618544910536137693e-01,-3.417973002176895103e-18 +4.389115950326439863e-01,-2.193073765662093000e-01,2.472122365561496303e-18 +7.687055228838557408e-01,-1.029677825799561464e-01,-2.663491228495698329e-17 +7.525237749916694474e-01,-8.391271386236900942e-02,-2.800075026358196432e-17 +6.433343179266673983e-01,-2.240938582712694027e-01,-6.893432482458388332e-18 +3.748380134530395758e-01,-1.845162213211918589e-01,1.651480099203959423e-18 +3.865691513250866795e-01,-1.712580859185725002e-01,-4.128606080044481425e-19 +7.817924154497515321e-01,-1.988160640002687995e-01,-1.645467115875462051e-17 +4.513669296871694603e-01,-2.060798833415840026e-01,3.761469349687415786e-19 +4.629114410826621340e-01,-1.936143519729621176e-01,-1.589722451163597263e-18 +3.974498950305797029e-01,-1.578716029033724599e-01,-2.450475436303948713e-18 +6.542712430237695997e-01,-1.011502842169174632e-01,-2.129489533681222154e-17 +6.668657529313608556e-01,-1.103615648348028333e-01,-2.086588900579618325e-17 +7.834689773131529034e-01,-1.592695623488251944e-01,-2.099787069884652397e-17 +7.691767598878989087e-01,-1.668096474098471060e-01,-1.945458623544792665e-17 +7.452209186650320394e-01,-9.628659059337837944e-02,-2.625075775991363887e-17 +3.509529243314153946e-01,-2.122837113880783333e-01,5.941822334753758652e-18 +3.632960472717368106e-01,-1.984795029892230389e-01,3.786214572901085048e-18 +3.678134445338897551e-01,-2.274642875053653479e-01,6.837617504134254807e-18 +5.434728167458899861e-01,-1.710966944032016324e-01,-8.034068841727805158e-18 +8.214107027997216148e-01,-2.803051810612671724e-01,-9.180166114274123717e-18 +3.457874330135184970e-01,-1.834246223777628026e-01,2.936005751110278103e-18 +3.573293991948212622e-01,-1.694613407097315949e-01,8.012712774131520935e-19 +3.681121614101511286e-01,-1.549985601079902631e-01,-1.353032396094528517e-18 +4.682606119497949582e-01,-2.216999514864031462e-01,1.319922267288139538e-18 +8.053986265637346209e-01,-2.814717401680195130e-01,-8.272656598902198340e-18 +4.848284355697524139e-01,-1.703716503236760715e-01,-5.274174176444552187e-18 +4.744077501777124173e-01,-1.812145678836263596e-01,-3.545837978719954745e-18 +3.283769185998154372e-01,-1.699694762833757755e-01,2.261538468474789726e-18 +3.389048843232768671e-01,-1.539102572741012920e-01,-6.054188283433630450e-20 +6.580947827614853640e-01,-1.252351597973213604e-01,-1.876271825463897232e-17 +2.252718241229428875e-02,-3.602606232344774950e-01,3.855214007321714084e-17 +3.343516435231175810e-01,-1.984108763346973114e-01,5.181015363922838681e-18 +3.169411291094146876e-01,-1.849557302403103121e-01,4.506548081287350304e-18 +1.760998169068074271e-01,-2.820363082619017914e-01,2.228464536000365408e-17 +5.392408791246128263e-01,-2.100318431492796678e-01,-3.436022624310155374e-18 +5.215361539079037545e-01,-1.968311828653842299e-01,-4.067520320863588372e-18 +5.329658603166417263e-01,-1.836550586099985616e-01,-6.108001554203627549e-18 +5.036832996834302856e-01,-1.831934303210625836e-01,-4.741156525876332031e-18 +5.100750077840499053e-01,-2.094937334909180715e-01,-2.083461200570910691e-18 +4.922221535595763253e-01,-1.958559809465964252e-01,-2.757097405583654734e-18 +5.304799138704527905e-01,-2.524468833864138007e-01,1.774114088125436061e-18 +5.434969616206849485e-01,-2.380220272175417318e-01,-4.841762449551666537e-19 +4.807258444645260975e-01,-2.082557650359321555e-01,-8.009818780272967709e-19 +5.269965704621858427e-01,-2.238106113606556369e-01,-1.288073423860415329e-18 +5.140448503099239730e-01,-1.717570582286097602e-01,-6.533585647855742435e-18 +4.975660273369665321e-01,-2.231851390612272501e-01,6.745609532178651418e-20 +5.144875900151024695e-01,-2.375020169309648432e-01,8.628438720322818758e-19 +3.218844629107072142e-01,-2.128280845775093466e-01,7.411798171668540905e-18 +3.063062205168442520e-01,-2.001224207912090380e-01,6.733108157964791722e-18 +5.613601103389577462e-02,-3.187520700870677404e-01,3.224024073755127282e-17 +6.961020807269311383e-01,-2.265810310727456867e-01,-9.169749177161983598e-18 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad8/uvs.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad8/uvs.csv new file mode 100644 index 000000000..bc73a2142 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad8/uvs.csv @@ -0,0 +1,709 @@ +7.500000000000000000e-01,1.216722542585899763e-01 +7.450667966942490228e-01,1.054067070195951195e-01 +7.344746046747755441e-01,9.187321942931378493e-02 +7.351440415430393616e-01,7.693142081042067537e-02 +7.377718273180995379e-01,5.996235091034374937e-02 +7.436475446806911638e-01,4.657107457502040332e-02 +7.349286873158601407e-01,3.355377554344892571e-02 +7.175044956160562259e-01,3.175285117106782518e-02 +7.009839873956486000e-01,2.664794883643798254e-02 +6.842478118972490364e-01,2.218907493975958573e-02 +6.676356703025738693e-01,1.728677449777960007e-02 +6.506386592771625788e-01,1.396991484989484542e-02 +6.334578539064272817e-01,1.176930429804756532e-02 +6.161981492961458029e-01,1.030010307860287910e-02 +5.989014739250235753e-01,9.350480430780886212e-03 +5.815889504764649720e-01,8.750054703144624288e-03 +5.642697022216467406e-01,8.387016993383679744e-03 +5.469475173116629119e-01,8.222799610428866562e-03 +5.296262305951506821e-01,8.426666706121204234e-03 +5.123340842360427638e-01,9.412743706973541666e-03 +4.951250666580197524e-01,1.138460948591646371e-02 +4.779754571414918107e-01,1.382628718615914500e-02 +4.610089490711722360e-01,1.729420167187260132e-02 +4.441116508430351661e-01,2.106553194293353526e-02 +4.268336148892720727e-01,2.131452620564578890e-02 +4.096247789223306235e-01,1.933695275689551601e-02 +3.923552693166185712e-01,1.802825733236241082e-02 +3.750385257063638123e-01,1.803561156911810681e-02 +3.579778064935226212e-01,2.083173310373725995e-02 +3.408058172585384793e-01,2.043025806974125766e-02 +3.244057438951618577e-01,1.487592339769838387e-02 +3.080921342854298639e-01,9.069011260371129257e-03 +2.915494370317420758e-01,3.729253029891271397e-03 +2.742576218992774928e-01,6.638436058895009042e-04 +2.585570356051944962e-01,2.921290503026646376e-03 +2.517173246024023703e-01,1.172468660853160163e-02 +2.638664129878095510e-01,2.481704081464824671e-02 +2.540498814900716829e-01,2.576351392624343789e-02 +2.536425822140339625e-01,4.118582451572192632e-02 +2.653452458435894834e-01,5.234522063738646092e-02 +2.808332953616698435e-01,5.917273501573980243e-02 +2.973944322994474532e-01,6.390333896949795811e-02 +3.145658116107363789e-01,6.710108582254399601e-02 +3.311870992526618762e-01,7.167970726334353671e-02 +3.480974377615837501e-01,7.517665656834410237e-02 +3.656731828947590857e-01,7.416305100620275426e-02 +3.529196316010905221e-01,8.252248843696044500e-02 +3.541051625510400758e-01,9.809249152673973904e-02 +3.674135312850208557e-01,1.076421424037817404e-01 +3.831605408979342764e-01,1.153331579256348938e-01 +3.968025333138431865e-01,1.259573679138612234e-01 +4.124556160231483970e-01,1.332934630206789040e-01 +4.293340347146157310e-01,1.370589150337224171e-01 +4.466073105393600917e-01,1.381812691198529286e-01 +4.639102235374061856e-01,1.374529814408051998e-01 +4.811356126510187847e-01,1.356308743819541474e-01 +4.982684726596485758e-01,1.330782669420546571e-01 +5.152861768270491361e-01,1.298453004851602977e-01 +5.323341274705331028e-01,1.267967939171472380e-01 +5.496184658958570557e-01,1.258763659591334017e-01 +5.669290725241435958e-01,1.264864298241449858e-01 +5.841240224764780997e-01,1.285185210021446978e-01 +6.013658559561824157e-01,1.300344176501706528e-01 +6.185888809079391759e-01,1.284132231968204141e-01 +6.266844604975334576e-01,1.405568144686846210e-01 +6.152211157961853250e-01,1.498868824294629365e-01 +5.988300391100694897e-01,1.551320721750760190e-01 +5.819545066482127993e-01,1.581691017913074704e-01 +5.704885693548628067e-01,1.670392656960409949e-01 +5.829005452610234173e-01,1.767300418487945668e-01 +5.980888201008462968e-01,1.805782590920742836e-01 +5.897136503392967910e-01,1.957238313159445353e-01 +5.880893269116962419e-01,2.123695366207391244e-01 +6.024773109080692191e-01,2.199805856235287627e-01 +6.188462553987951198e-01,2.148657525455747175e-01 +6.325032485641088886e-01,2.043088488269319825e-01 +6.441514693010921278e-01,1.915116376145674093e-01 +6.568772055064545645e-01,1.801896253236064671e-01 +6.739986456728324082e-01,1.777945796151389202e-01 +6.912740321050385717e-01,1.765145357266198756e-01 +7.088372480451353708e-01,1.746611795586755500e-01 +7.229186233964821628e-01,1.653903161585512094e-01 +7.329032925342200411e-01,1.516557374677251213e-01 +7.410843195484129176e-01,1.361846171304240960e-01 +7.478621851267441833e-01,1.134834930501814054e-01 +7.405101562495803869e-01,9.805955431848983883e-02 +7.312455160809543386e-01,8.474293333193276545e-02 +7.372719459236745099e-01,6.856484070026969135e-02 +7.420907560635461309e-01,5.344867016117536840e-02 +7.411804799384322795e-01,3.879918926249631417e-02 +7.261156071678174229e-01,3.293128501588367396e-02 +7.092369572911765285e-01,2.918187000535148179e-02 +6.925942885041211916e-01,2.455074484022832029e-02 +6.759826064372476129e-01,1.961922696103058153e-02 +6.591734767123649252e-01,1.543938016672778170e-02 +6.420794308760776614e-01,1.276317817145767620e-02 +6.248387529550774033e-01,1.095460411320616119e-02 +6.075516603919755010e-01,9.773191118784545217e-03 +5.902457978825099705e-01,9.013779776886223297e-03 +5.729340250663721434e-01,8.546214770265259456e-03 +5.556209389850470526e-01,8.272263130923225571e-03 +5.382995064653685047e-01,8.259093306237407298e-03 +5.209822735376723468e-01,8.784542539881411496e-03 +5.037191209018421212e-01,1.030097681001415980e-02 +4.865568342992389606e-01,1.254322472441483406e-02 +4.694543770542299321e-01,1.537005970751972525e-02 +4.526093433513713737e-01,1.940849002349384275e-02 +4.354979399473764556e-01,2.167609629161186199e-02 +4.182276720964041017e-01,2.038734522541166272e-02 +4.009912843124607829e-01,1.851733662482485041e-02 +3.836834112327590085e-01,1.784000648940179193e-02 +3.664333444170814746e-01,1.899050897519168404e-02 +3.493647929247550299e-01,2.158205137091332576e-02 +3.325535248019964585e-01,1.782681777206658602e-02 +3.162215237344424001e-01,1.194988334905789165e-02 +2.999263459826689293e-01,6.145499242271163648e-03 +2.832264952505839650e-01,2.005044677769590115e-03 +2.662388413400139653e-01,0.000000000000000000e+00 +2.529413100081071564e-01,3.797188631716605194e-03 +2.572907267896341055e-01,1.921362250776608230e-02 +2.602234368686084931e-01,2.678486468866333320e-02 +2.500000000000000000e-01,3.257861980567401672e-02 +2.558717851100632545e-01,4.547292127218849345e-02 +2.727812864630546619e-01,5.557112348312075178e-02 +2.892225087344957868e-01,6.217600099309313066e-02 +3.059406177774268709e-01,6.531827536546676305e-02 +3.228940115356916940e-01,6.923295354784779476e-02 +3.396013824803029157e-01,7.404808570278559321e-02 +3.567764653916106754e-01,7.528074231701975538e-02 +3.602974774104026334e-01,7.778099832151287585e-02 +3.502432697925128013e-01,8.835584954309905203e-02 +3.608369316367798785e-01,1.040589970990623142e-01 +3.757508925208921102e-01,1.108336534855475924e-01 +3.897687639821918459e-01,1.210447289681413768e-01 +4.044461297066506145e-01,1.300649382592158065e-01 +4.208077556418726717e-01,1.355992568767804274e-01 +4.379584495692857571e-01,1.379093212685674474e-01 +4.552663749356855583e-01,1.379940659471120545e-01 +4.725336471349613765e-01,1.366444304689517775e-01 +4.897228129279641573e-01,1.344387442530305121e-01 +5.067921827904787735e-01,1.315468176322644178e-01 +5.237858264869632574e-01,1.281582963710561074e-01 +5.409505891066702654e-01,1.260378547228619972e-01 +5.582884817787939769e-01,1.260789407077501090e-01 +5.755581815568835413e-01,1.272648417755666561e-01 +5.927059147775353143e-01,1.295759829357132908e-01 +6.100155215410805187e-01,1.296192756622570053e-01 +6.259751990048063597e-01,1.320745138004051633e-01 +6.235958229185505353e-01,1.482993733173079698e-01 +6.068421989634193991e-01,1.518418141614627515e-01 +5.905680844510936556e-01,1.577233333233298840e-01 +5.736567078229588557e-01,1.593708410320406887e-01 +5.747575785708458618e-01,1.739867060825419642e-01 +5.914900770126516605e-01,1.778047251854699695e-01 +5.937129000928845768e-01,1.880421372559580306e-01 +5.870777537298510484e-01,2.039014004620652298e-01 +5.939371013342904515e-01,2.184919829304103056e-01 +6.105646147921517386e-01,2.181972350636861291e-01 +6.261041060154979299e-01,2.098565202829994480e-01 +6.385673878107048784e-01,1.981396307492150899e-01 +6.497476127179606653e-01,1.849034422843464087e-01 +6.653706185733816447e-01,1.786352248379703411e-01 +6.826366429407734193e-01,1.771068707858550750e-01 +7.000182547382161058e-01,1.759784495005223826e-01 +7.153093062642104094e-01,1.716157284300713626e-01 +7.286175891745128030e-01,1.583321717511338711e-01 +7.369716508448321823e-01,1.438224009445854268e-01 +7.466157371790778097e-01,1.295346719390615964e-01 +6.343231520123211453e-01,1.197853508338618117e-01 +4.783340935425842710e-01,3.225309003881057790e-02 +6.148953343888380330e-01,2.801298923944725919e-02 +6.643442460853701270e-01,3.467080449439263745e-02 +5.297810554864244015e-01,2.707616872351200840e-02 +4.264556642873036374e-01,3.701882683051486989e-02 +5.719117464022296371e-01,1.118577982466775894e-01 +5.811906291898666366e-01,2.681540959755343914e-02 +5.029756306144592681e-01,1.161553920680330337e-01 +4.183279834112910711e-01,1.162802048354301260e-01 +7.196571855500728532e-01,8.330740728200704270e-02 +6.826695958445184731e-01,1.619352767537781956e-01 +6.968311656781775998e-01,4.177536069529818458e-02 +3.755508512947804967e-01,3.588320988318219329e-02 +2.886957789612376590e-01,3.906918228468096721e-02 +3.590501707729115144e-01,3.649353432568037958e-02 +3.277654171078561163e-01,5.121262463935845333e-02 +6.466854055184172445e-01,1.660285296636826724e-01 +7.200446010281845721e-01,6.853856636298538696e-02 +4.512056616448584800e-01,1.204125155913464695e-01 +7.221458010287044038e-01,1.358484543569690173e-01 +6.059609696323638994e-01,1.133951700201361046e-01 +6.298768965225516325e-01,1.884615489576994540e-01 +2.910548676918601196e-01,2.098375499983137771e-02 +3.084570231048421318e-01,2.715110565264344453e-02 +7.284300202240432398e-01,4.962175223211015562e-02 +3.906243600481225098e-01,1.022617027392580535e-01 +3.256211211816472106e-01,3.235517272246114795e-02 +6.134442041051451078e-01,1.970366083404551383e-01 +5.374101876635961617e-01,1.124017020304223791e-01 +4.611098435683818053e-01,3.470619663827397700e-02 +2.713099469447652901e-01,4.119196952596925615e-02 +6.320565137197895478e-01,1.547998597025569967e-01 +3.610755615584205769e-01,5.374768247892044992e-02 +5.469390104669953345e-01,2.670521765974558787e-02 +2.665486941698684831e-01,1.390991744411183666e-02 +3.922149010861011309e-01,3.563817741901084690e-02 +5.125709059841739856e-01,2.817159799059712130e-02 +6.479647796764729240e-01,3.163500976606613974e-02 +4.856567821688353992e-01,1.182955384889111394e-01 +3.742063495234888570e-01,9.331513736543574355e-02 +7.101335767699206158e-01,1.542325027019751382e-01 +6.129659575325615561e-01,1.640528154482326084e-01 +5.545494729751607732e-01,1.116898023785746902e-01 +5.888845583880180090e-01,1.125045908086484553e-01 +4.342029572331006504e-01,1.192598334269425464e-01 +6.674752729371467019e-01,1.588959521212207626e-01 +6.938766640765366978e-01,1.645523764487419327e-01 +4.683156061366531286e-01,1.198585334368518773e-01 +7.315510381888865599e-01,1.101159806344310238e-01 +4.042204419791016190e-01,1.105765194613880092e-01 +5.200561749494507779e-01,1.140213552600343183e-01 +6.610514554076492022e-01,5.128263615832640704e-02 +4.778624403264707388e-01,5.027942388296361559e-02 +5.122217299030478177e-01,4.654346874701828507e-02 +5.584449361746037788e-01,9.633330806841335081e-02 +4.216726007495076312e-01,1.013900005435770524e-01 +5.925131636774791932e-01,9.623603352553500301e-02 +5.238649042271982248e-01,9.779191825968974738e-02 +4.892417834182516412e-01,1.011902988589582914e-01 +6.756544828080175424e-01,1.428932421586172619e-01 +6.418352163191676230e-01,1.375797531103378768e-01 +4.547165282024682176e-01,1.034065916586705547e-01 +7.051954422589541416e-01,7.172640081554206015e-02 +6.212131644758396298e-01,1.160167691049775601e-01 +6.944896497880077568e-01,1.429141808037288353e-01 +3.764037702421237919e-01,5.202732270554785016e-02 +4.091566682395986199e-01,3.629496339217207906e-02 +6.521694267149463764e-01,1.551042523056697375e-01 +4.437833896727092498e-01,3.650737310321089391e-02 +4.098555189032839219e-01,1.004679406526584329e-01 +7.125566354593086960e-01,4.509566557766288286e-02 +6.282191812487679661e-01,1.760380840446572892e-01 +6.806581978909311825e-01,3.820427757394571217e-02 +3.425094501032883154e-01,3.562622398257278555e-02 +5.640803318295910529e-01,2.667759323293985088e-02 +5.981084943897658768e-01,2.723483405459963674e-02 +5.293512852699763238e-01,4.550192452804401738e-02 +7.288929595505531100e-01,1.209494708558993270e-01 +3.103139101072888151e-01,4.649928159230221764e-02 +3.449157777168989636e-01,5.388428815202206401e-02 +6.314857290917450516e-01,2.944855363339683382e-02 +4.953266954335295846e-01,2.998291415443085639e-02 +2.748657857280817907e-01,2.451146549143387934e-02 +4.377316841547130855e-01,1.027552783147392679e-01 +2.758912124427457258e-01,1.521365144727737477e-02 +5.410456195670771962e-01,9.677041948511704017e-02 +3.824961882551029535e-01,7.980557022684266200e-02 +5.972290541344039694e-01,1.699647355010764083e-01 +6.373302113606640340e-01,1.659572491892675195e-01 +6.074763156045217549e-01,1.810649424007570452e-01 +7.188178202999627731e-01,5.894692000614135813e-02 +5.754096916106460347e-01,9.613640314281897414e-02 +4.718348166845603986e-01,1.026744204081575101e-01 +3.775279853674470831e-01,6.358597821067145384e-02 +5.064540981703909983e-01,9.933410614579535336e-02 +6.800657138994798956e-01,1.323301427843108502e-01 +6.094560971691957985e-01,9.658348018507705024e-02 +5.972188750671250101e-01,4.489539802071147723e-02 +7.030947497457860074e-01,8.671222092664589154e-02 +6.387360536755193330e-01,1.074359864332509185e-01 +5.609830934786661505e-01,7.990186044877509164e-02 +4.228048981596236877e-01,8.629090303490315195e-02 +5.091896691760307014e-01,8.220690367812061305e-02 +4.745820801060751659e-01,8.552039839991422421e-02 +7.117610518367647465e-01,1.194228773071172311e-01 +3.889764482429625692e-01,6.626329377789275110e-02 +4.255196827514681202e-01,5.338093584095743999e-02 +3.916661128593700303e-01,5.164606664162249561e-02 +5.110435207525020340e-01,6.462218351972114083e-02 +4.605016759238309554e-01,5.206421626140635833e-02 +6.479321868125552664e-01,1.209648193852306958e-01 +6.610808796649801922e-01,1.371355411550944647e-01 +5.464976775311989332e-01,4.501262060757341144e-02 +6.295481046583408791e-01,4.648333037188154271e-02 +5.805233159728730996e-01,4.478629289072343089e-02 +6.452529389418804051e-01,4.850115447140719571e-02 +6.930051645174614139e-01,5.662459467505823185e-02 +6.770597635196984321e-01,5.416114105202970291e-02 +7.098501755444844852e-01,1.328564193663068771e-01 +5.778861736365935586e-01,7.958900742178898202e-02 +5.946160256383694609e-01,7.940208719941674320e-02 +4.572917927162030716e-01,8.640990335040839299e-02 +7.079534813933714421e-01,5.816702508259573301e-02 +4.949071908776160322e-01,4.828010794328987942e-02 +5.437064941011336971e-01,8.020169856146608378e-02 +5.263587225711245932e-01,8.093009068586638766e-02 +4.917852518593667233e-01,8.383791018794162220e-02 +6.503789752801805157e-01,1.049527578663332211e-01 +6.570617185964811036e-01,6.756615500691559584e-02 +6.112945989085978304e-01,7.932698765364397386e-02 +6.747247275960999158e-01,1.290670732328866865e-01 +5.625491119914839411e-01,6.259322523455013165e-02 +4.764680173511869898e-01,6.795001822596831442e-02 +5.960367436869566937e-01,6.228482344642383844e-02 +5.281539001546011747e-01,6.349502695970496435e-02 +4.080926784466360480e-01,5.259611584985648958e-02 +4.936334166846593208e-01,6.619200612203995915e-02 +4.430034834264107713e-01,5.310947854110423944e-02 +5.634933864628464129e-01,4.478465063491223613e-02 +6.930106721561279937e-01,1.239724733587951877e-01 +6.895958280656071526e-01,7.166528560946434923e-02 +6.422782612344513087e-01,6.435762573046430179e-02 +6.996566846680575269e-01,1.035859354239667407e-01 +6.135154237679323330e-01,4.538883953803066196e-02 +4.591331378738022218e-01,6.923142793918812821e-02 +4.400273359015607344e-01,8.641982047881920093e-02 +4.058900744529185811e-01,6.885834969852717979e-02 +5.452932484180776918e-01,6.285061066998844093e-02 +6.632866065496327845e-01,1.196402471510509130e-01 +6.290706585226480962e-01,9.750070685921582991e-02 +4.024594372895829442e-01,8.785977715598079774e-02 +6.664137787405680635e-01,1.036450162877426001e-01 +4.416623726445027542e-01,6.979520230954094906e-02 +6.827104564710484436e-01,1.037212970482606356e-01 +6.493761959051911337e-01,8.606298122526100103e-02 +6.731392920018098858e-01,7.025582731107216095e-02 +6.277974770974067420e-01,6.269853864060588589e-02 +6.863210160813785210e-01,8.735247725697378729e-02 +6.122528754723144395e-01,6.236563382049507831e-02 +4.238595923421902834e-01,6.981789511123347169e-02 +6.274298655050962736e-01,7.840073196655368559e-02 +6.779693403291467968e-01,1.190814906986074062e-01 +7.199791690997415783e-01,1.020985307383832780e-01 +5.793182493229847019e-01,6.234915766512427737e-02 +6.692968304034752069e-01,8.690799876604646257e-02 +6.391791613820660967e-01,7.616871775411332424e-02 +5.458954629746384235e-01,5.393161563878093312e-02 +5.539211802047807609e-01,6.272191795226929323e-02 +5.630212492271652325e-01,5.368893793473120124e-02 +5.549955319970227841e-01,4.489863562124284113e-02 +6.009846304233374958e-01,9.640975685530603356e-02 +6.103753480388969255e-01,8.795523391936049817e-02 +6.029553122734837567e-01,7.936453742653033772e-02 +5.935645946579244381e-01,8.781906036247587310e-02 +6.514580479920739631e-01,1.373576471327161430e-01 +6.621837431073065439e-01,1.283878941530726958e-01 +6.556093966810940810e-01,1.203025332681407905e-01 +6.448837015658615002e-01,1.292722862477842793e-01 +4.678005776124946058e-01,6.859072308257822825e-02 +4.771652288388288365e-01,5.911472105446596848e-02 +4.691820581251508471e-01,5.117182007218497308e-02 +4.598174068988166163e-01,6.064782210029726062e-02 +5.367235742863394332e-01,6.317281881484672346e-02 +5.272563113628627729e-01,7.221255882278565519e-02 +5.350326083361290896e-01,8.056589462366624266e-02 +5.444998712596056389e-01,7.152615461572728317e-02 +3.092987275909452327e-01,3.699501836500086738e-02 +2.998493884217660055e-01,2.409496402926890324e-02 +2.900135242982531114e-01,3.014347660547085986e-02 +2.994904369231065622e-01,4.285235476266342075e-02 +2.689654451419690728e-01,3.352671654076017083e-02 +2.630507640232633837e-01,4.054642979332957753e-02 +6.648501926451004795e-01,1.116426317193967427e-01 +6.583963770103742341e-01,1.042988870770378967e-01 +6.491555810463678355e-01,1.129587886257819584e-01 +6.205925693906646501e-01,1.700454497464449488e-01 +6.050975058334827628e-01,1.670087754746545083e-01 +6.023526848694629177e-01,1.755148389509167128e-01 +6.178477484266449160e-01,1.785515132227071811e-01 +6.192633778459220029e-01,9.704209352214641926e-02 +6.077085334007799045e-01,1.049893251026065705e-01 +6.135870670541017091e-01,1.147059695625568670e-01 +6.251419114992438075e-01,1.067587379820967158e-01 +3.638345345205739045e-01,8.781325234427907189e-02 +3.783983624459766881e-01,8.692405622617013772e-02 +3.741251445818116750e-01,7.730416448186804013e-02 +4.517525796751208356e-01,5.258684740125531276e-02 +4.423329280354567627e-01,6.145234042532259772e-02 +4.503977552591524880e-01,6.951331512436453863e-02 +5.895917803913084398e-01,1.640669186461919671e-01 +5.900647996977137488e-01,1.733473886749354598e-01 +4.850507170179232386e-01,6.707101217400414372e-02 +4.942703037811376765e-01,5.723605703266490541e-02 +4.863848156020433855e-01,4.927976591312673016e-02 +4.148748333975544322e-01,6.933812240488033962e-02 +4.246896375468292018e-01,6.159941547609545931e-02 +4.168061805990521118e-01,5.298852584540694743e-02 +4.069913764497773423e-01,6.072723277419183469e-02 +6.079070224446059267e-01,2.085018964414640796e-01 +6.015789272222209494e-01,1.963802198281998090e-01 +5.177741958735775363e-01,8.156849718199349342e-02 +5.195987104535515488e-01,6.405860523971305953e-02 +5.101165949642663122e-01,7.341454359892087000e-02 +3.856816963817900068e-01,7.362778026309446666e-02 +3.834394025153213814e-01,6.505374777584936596e-02 +3.709798540418009494e-01,6.920158497362575989e-02 +6.865381930278039446e-01,1.281513080715530051e-01 +6.778600983537488300e-01,1.376116924714640699e-01 +6.850720662980125386e-01,1.429037114811730347e-01 +6.937501609720678752e-01,1.334433270812620254e-01 +3.998793956530030114e-01,5.212109124573947871e-02 +3.903496767195777650e-01,5.888135810290779509e-02 +3.976056052648244687e-01,6.768939216800130831e-02 +6.104602598548335424e-01,1.890507753706060778e-01 +6.027825678526841369e-01,1.808216007464156783e-01 +4.317684959738582462e-01,1.281593742303324956e-01 +4.262654703221958608e-01,1.177700191311863431e-01 +4.153917997172197341e-01,1.247868339280545080e-01 +6.706279734393898462e-01,1.193608689248291527e-01 +6.803398984000976757e-01,1.114013938734340070e-01 +6.745621176058083091e-01,1.036831566680016109e-01 +6.845157362762135378e-01,9.553688715261721143e-02 +6.778089232424269195e-01,8.713023801151009717e-02 +6.678553045720215797e-01,9.527650752689451052e-02 +4.259876735193858788e-01,4.519988133573613759e-02 +4.178061662634511286e-01,3.665689511134345713e-02 +4.086246733431173062e-01,4.444553962101426697e-02 +7.272897802947757562e-01,8.006798538225619322e-02 +7.290094435203995360e-01,6.424531049161252838e-02 +7.198582868417990888e-01,7.591278077881484510e-02 +3.266932691447516635e-01,4.178389868090983533e-02 +3.169590652703103695e-01,2.979946695226672743e-02 +3.190197521213821719e-01,4.886447698319106719e-02 +3.687396659002721844e-01,5.288750259223414657e-02 +3.759773107684521443e-01,4.395526629436503907e-02 +3.673005110338459778e-01,3.618837210443130031e-02 +3.600628661656660734e-01,4.512060840230038700e-02 +4.061574780964334330e-01,9.416385890431962225e-02 +4.157640598263958598e-01,1.009289705981177426e-01 +4.222387494545656872e-01,9.384045178924010910e-02 +4.126321677246033159e-01,8.707534009544193321e-02 +7.158701104682532179e-01,1.107607040227502615e-01 +7.203270056936590393e-01,1.201861740815082513e-01 +7.302219988697198350e-01,1.155327257451651685e-01 +7.257651036443140136e-01,1.061072556864071648e-01 +4.524466166205455275e-01,3.560678487074242504e-02 +4.433934365495600383e-01,4.480842582215758402e-02 +4.608057597461063803e-01,4.338520644984018848e-02 +3.437126139100936117e-01,4.475525606729741090e-02 +3.340652856424677908e-01,3.399069835251693206e-02 +3.363405974123775399e-01,5.254845639569027255e-02 +7.394464797752766660e-01,1.213108625572446309e-01 +7.383089174415677913e-01,1.077613438270130647e-01 +6.566251531899631733e-01,1.461198967303821428e-01 +6.598223498260465947e-01,1.570001022134452640e-01 +6.715648778725822332e-01,1.508945971399189845e-01 +6.683676812364988118e-01,1.400143916568558633e-01 +7.204619789739634683e-01,4.730011506507993818e-02 +7.316650144819378809e-01,4.155227612952133720e-02 +7.150266564323040086e-01,3.835386196995156649e-02 +6.973956351622807581e-01,7.169584321250316306e-02 +7.065744199991588204e-01,6.500672506373586512e-02 +7.004321627152017005e-01,5.736868026310778385e-02 +6.913004962915343388e-01,6.414494014226128360e-02 +2.752308255705245843e-01,7.430871220006973928e-03 +2.840805198473441151e-01,1.810921899028181820e-02 +2.914709029820860553e-01,1.231294861177548161e-02 +3.840349415507469111e-01,5.183669467358516941e-02 +3.768710225949670756e-01,5.758719482786946176e-02 +7.132874060451110942e-01,5.850129176032524414e-02 +7.125524596934196264e-01,7.012892323308884956e-02 +7.195103381710032941e-01,6.388577201933634542e-02 +3.124242310764180908e-01,5.671012791134470016e-02 +2.931725979445178876e-01,5.141599006675335454e-02 +6.679028036305401095e-01,1.331013071939905756e-01 +6.773952207477900167e-01,1.306986080085987545e-01 +6.494274161166817549e-01,1.605663909846762050e-01 +6.517813055124357380e-01,1.731090774936445975e-01 +6.621762392218006887e-01,1.695427887224136010e-01 +7.022921134748195682e-01,1.485512595351294318e-01 +7.160910296871008107e-01,1.450916550385251136e-01 +7.159979882865944445e-01,1.343524368616379749e-01 +7.021699126662460655e-01,1.378853000850178701e-01 +3.926721471458800572e-01,8.406636280267623662e-02 +3.824943565840623894e-01,9.778086087354526112e-02 +3.964301019450492958e-01,9.510231509958816387e-02 +4.314161170305922388e-01,8.635536175686117644e-02 +4.408448542730317721e-01,7.810751139418005418e-02 +4.327609824933464910e-01,6.980654871038723119e-02 +4.233322452509070133e-01,7.805439907306831182e-02 +3.465165469848036084e-01,6.456165849128812917e-02 +3.295151653371622968e-01,6.139846361032600536e-02 +6.058979983213155229e-01,1.595924438116543276e-01 +6.225112356261754964e-01,1.594263375753947887e-01 +6.236388147579874364e-01,1.523433710660099250e-01 +7.272268868872586722e-01,9.698587508384852451e-02 +6.911835705695530407e-01,1.036536162361136881e-01 +6.854900062426374507e-01,1.215269820287013108e-01 +6.963336784120928158e-01,1.137792043913809642e-01 +7.255193802896287014e-01,1.283989626064341860e-01 +7.316150602885587162e-01,1.360165357436965428e-01 +2.764009894350172858e-01,4.963354609544606832e-02 +4.070379804411927704e-01,1.055222300570232280e-01 +4.112742126951963728e-01,1.134283621484090676e-01 +4.200002920803993511e-01,1.088351026895035961e-01 +3.838828761904408138e-01,3.576069365109655479e-02 +3.922850852013598510e-01,2.683321737568663060e-02 +3.752946885005721822e-01,2.695941072615013270e-02 +6.763470339626234118e-01,1.240742819657470741e-01 +6.420078084395406393e-01,1.659928894264750820e-01 +6.327746963047159445e-01,1.709976666169624182e-01 +6.425481933776112653e-01,1.781138546841318782e-01 +4.780982669345275049e-01,4.126625696088709327e-02 +4.697219685554830382e-01,3.347964333854231561e-02 +4.342615830889394735e-01,5.324520719103082583e-02 +6.041448095796355666e-01,6.232522863345942715e-02 +6.128841496201233863e-01,5.387723667926287013e-02 +6.053671494175287826e-01,4.514211877937106959e-02 +5.966278093770407409e-01,5.359011073356766131e-02 +6.342598384083504293e-01,1.390682837895112212e-01 +6.411276694124381503e-01,1.203750851095462399e-01 +6.305038062549273015e-01,1.301710826512731956e-01 +3.710807478030535012e-01,1.001645964306829562e-01 +3.868312160137843403e-01,1.088198391140265814e-01 +7.046454837460187637e-01,4.336934881360088312e-02 +6.949181650978195623e-01,4.919997768517823944e-02 +7.102565996282035332e-01,5.143731227209709378e-02 +3.082105832498863163e-01,1.820187827883283996e-02 +4.006857846628498754e-01,3.596657040559148033e-02 +3.919405069727355806e-01,4.364212203031668513e-02 +6.788589807053148073e-01,4.618270931298772142e-02 +6.850324640185798675e-01,5.539286786354397085e-02 +6.887446817845543912e-01,3.998981913462196225e-02 +4.266446395882878551e-01,2.916667651808031378e-02 +4.093907235809646217e-01,2.781595807453378019e-02 +3.585139886332170955e-01,2.866263371470881977e-02 +4.582124652950026467e-01,7.782066564479825366e-02 +4.486595643088819307e-01,8.641486191461378308e-02 +6.532189572508360076e-01,7.681456811608830537e-02 +6.496699899154663171e-01,6.596189036868999045e-02 +6.407287113082587027e-01,7.026317174228884077e-02 +6.442776786436286152e-01,8.111584948968715569e-02 +6.193622322068470520e-01,7.886385981009882973e-02 +6.276136713012515633e-01,7.054963530357979962e-02 +6.200251762848605352e-01,6.253208623055048210e-02 +6.117737371904561350e-01,7.084631073706951221e-02 +6.989075765369132665e-01,3.421165476586808529e-02 +6.824530048940899984e-01,3.019667625685264895e-02 +6.590565870020651529e-01,5.942439558262100491e-02 +6.531521971747648037e-01,4.989189531486680484e-02 +6.437656000881659679e-01,5.642939010093571406e-02 +6.651005052991455502e-01,6.891099115899387839e-02 +6.750995277607541034e-01,6.220848418155094928e-02 +6.690556094636738171e-01,5.272188860517806885e-02 +6.370141829118218801e-01,1.899865932861334039e-01 +6.290480388856597438e-01,1.822498165011783577e-01 +6.216605503138483702e-01,1.927490786490773100e-01 +6.229737263346271092e-01,2.006727285836935326e-01 +6.350378691659290809e-01,6.352808218553511466e-02 +6.333045134435812962e-01,7.728472486033349798e-02 +5.004874605176986568e-01,8.302240693303113150e-02 +5.023384687185807884e-01,6.540709482088055693e-02 +4.927093342720130220e-01,7.501495815499079067e-02 +6.374005218001106421e-01,4.749224242164440390e-02 +6.286727908778738660e-01,5.459093450624370042e-02 +6.142053790783852385e-01,3.670091438873895884e-02 +6.065019143893020104e-01,2.762391164702348093e-02 +5.976636847284453324e-01,3.606511603765555352e-02 +3.632207385902934682e-01,6.394470783593306229e-02 +6.659899581939721092e-01,2.597878949608615345e-02 +6.725012219881506548e-01,3.643754103416919216e-02 +6.561545128809216365e-01,3.315290713022937125e-02 +6.493017194768178069e-01,2.280246230798049084e-02 +6.813675600337085747e-01,7.096055646026823427e-02 +6.445575144778499244e-01,1.061943721497920767e-01 +6.365296028439202392e-01,1.136106686335563581e-01 +5.207865075865120152e-01,4.602269663753114776e-02 +5.116326253277749814e-01,5.558282613336967826e-02 +5.287525927122886937e-01,5.449847574387449434e-02 +6.626978507465096646e-01,4.297672032635950490e-02 +7.214427360373871778e-01,1.528157623493364703e-01 +7.092633425391126067e-01,1.643962477879385431e-01 +6.324717914990861667e-01,2.060892896572219871e-02 +6.155467418424919179e-01,1.915654615902505353e-02 +6.231905317402914868e-01,2.873077143642204651e-02 +5.896495617898163122e-01,2.702512182607653621e-02 +5.808569725813699236e-01,3.580085124413841940e-02 +5.888710955199990549e-01,4.484084545571743324e-02 +6.215317642131367171e-01,4.593608495495608846e-02 +6.305169168750429654e-01,3.796594200263920388e-02 +5.383600329767097570e-01,2.689069319162881375e-02 +5.469432638893291232e-01,1.746400863508721160e-02 +5.297036430407875418e-01,1.775141771481660719e-02 +5.379244814005876840e-01,4.525727256780869706e-02 +5.467183439990971339e-01,3.585891913365953088e-02 +5.295661703782004182e-01,3.628904662577801116e-02 +3.971401274512391666e-01,1.063107178860647622e-01 +6.397252543841089878e-01,3.054178169973146770e-02 +5.124524951101083747e-01,1.879217084878533062e-02 +4.952258810457746963e-01,2.068376182017366005e-02 +5.039488007088517296e-01,2.907725607251398711e-02 +7.041450960023700745e-01,7.921931087109396197e-02 +7.113759676479294303e-01,8.500981410432648100e-02 +5.985049841573946150e-01,1.829265724269024673e-02 +4.005114876464723750e-01,1.182669436876245955e-01 +5.813897898331658043e-01,1.778273215034899962e-02 +5.726354805097287892e-01,2.674650141524664501e-02 +5.637868591462187329e-01,3.573112193392607300e-02 +5.720083512178597562e-01,4.478547176281781617e-02 +3.507798104380999149e-01,3.605987915412656869e-02 +3.416576336809133974e-01,2.802824102615700599e-02 +3.250134325384045342e-01,2.361554806007976418e-02 +2.713697453396485826e-01,1.409351021420415621e-02 +2.645583301853043356e-01,1.905242979519808019e-02 +2.690376439107871054e-01,2.460120218287950578e-02 +2.755387833017194921e-01,2.007679203381950578e-02 +5.211759807352992491e-01,2.762388335705456485e-02 +5.123963179436108462e-01,3.735753336880767023e-02 +5.641750170256188968e-01,1.753230511316174883e-02 +5.555096711482931937e-01,2.669140544634273499e-02 +4.781547753420380964e-01,2.303968861248489527e-02 +4.610593963197769929e-01,2.600019915507328916e-02 +4.868303944880569833e-01,3.111800209662074837e-02 +4.351195269800064436e-01,3.676309996686286802e-02 +4.439475202578722079e-01,2.878645252307223193e-02 +5.035644603903318695e-01,4.741178834515406143e-02 +6.466088593091767756e-01,4.006808211873666425e-02 +2.805470864257608721e-01,4.009184526851393426e-02 +4.951169431555727529e-01,3.913151104886038179e-02 +5.799207826479289007e-01,5.356772527792385413e-02 +5.876774965049705868e-01,6.231699055577407526e-02 +6.750724343908326430e-01,1.604156144374994930e-01 +6.783341207586754962e-01,1.698649281844585579e-01 +7.198181773249071602e-01,9.270296901019514646e-02 +5.786022114797891858e-01,7.096908254345664357e-02 +5.862510996374814543e-01,7.949554731060287649e-02 +5.953263846626630773e-01,7.084345532292028735e-02 +5.766479326236197966e-01,8.786270528230398502e-02 +5.839614276440625584e-01,9.618621833417698164e-02 +6.199010226918892918e-01,1.222149961508989940e-01 +6.277681582440803876e-01,1.179010599694196859e-01 +6.885796228162631705e-01,1.524247287787535432e-01 +6.879584220734928923e-01,7.950888143321906132e-02 +6.947078829135822087e-01,8.703234909180983248e-02 +6.392234272139196705e-01,9.178184404223842241e-02 +6.339033560990836591e-01,1.024683466462333326e-01 +6.498775855926857137e-01,9.550786954579709720e-02 +6.036634127942732686e-01,1.217147938351534064e-01 +4.041747558712507349e-01,7.835906342725398877e-02 +7.013757172069218226e-01,9.514907817530630918e-02 +4.755250487286310501e-01,7.673520831294126932e-02 +4.831836659827208891e-01,8.467915429392794402e-02 +6.712180612026423798e-01,7.858191303855932563e-02 +4.978479407943213197e-01,1.002622025023768154e-01 +4.874492827935435479e-01,1.097429186739347085e-01 +4.943162063916473059e-01,1.172254652784721074e-01 +5.047148643924250777e-01,1.077447491069141866e-01 +5.709336806572342660e-01,6.247119144983723227e-02 +4.732084483953177823e-01,9.409740940403585330e-02 +4.805383000514059644e-01,1.019323596335579146e-01 +4.905135176388091822e-01,9.251410452344997759e-02 +5.974227640101910097e-01,1.129498804143923008e-01 +5.865042904322481654e-01,1.205115559053965557e-01 +5.736607190064377804e-01,1.039971006947482679e-01 +5.803981523951238231e-01,1.121811945276630362e-01 +5.906988610327486011e-01,1.043703121670917500e-01 +5.176711758882499570e-01,1.219333278725973080e-01 +5.115159027819549120e-01,1.150883736640336691e-01 +5.006220516370538665e-01,1.246168295050438385e-01 +5.078218836732109054e-01,9.077050491195798321e-02 +7.021082494717347799e-01,1.593078399118385280e-01 +6.925753480907876902e-01,1.705334560876808903e-01 +6.282502620138722405e-01,8.795071941288475081e-02 +4.700752114106067081e-01,1.112664769225046868e-01 +4.769861941527442362e-01,1.190770359628815084e-01 +7.098179268838995526e-01,1.028422330811750302e-01 +5.151595011987946116e-01,9.856301220274255037e-02 +5.219605395883244459e-01,1.059066367598620328e-01 +4.833961974099271197e-01,1.269632064354326295e-01 +6.346933625402266799e-01,1.603785544459122581e-01 +6.421129702173680176e-01,1.549520560041133532e-01 +7.108056136906246714e-01,1.261396483367120680e-01 +7.023858619964463701e-01,1.216976753329562233e-01 +6.882731299605275854e-01,1.632438266012600503e-01 +4.560041604593356723e-01,9.490824750453948078e-02 +4.632756724435143081e-01,1.030405060334140394e-01 +4.659369364111392020e-01,8.596515087516130860e-02 +5.694204094631866164e-01,1.191721140354113084e-01 +7.331576321311714661e-01,5.483581735039583932e-02 +4.529610949236633766e-01,1.119095536250084982e-01 +4.597606338907558321e-01,1.201355245140991734e-01 +4.661129148370296571e-01,1.286557574388285385e-01 +5.251118133991614645e-01,8.936100447277806058e-02 +7.237246867732983757e-01,5.414858053309962171e-02 +5.348721575670646322e-01,1.195992479737848085e-01 +5.287331813065234698e-01,1.132115286452283487e-01 +4.427043094389795375e-01,1.198361745091445080e-01 +4.489064860921092581e-01,1.292968923555996852e-01 +6.369458650194785854e-01,1.461898064064474090e-01 +2.625238127528199961e-01,7.732911645426560586e-03 +4.462241061785906515e-01,1.030809349867049252e-01 +4.359673206939068679e-01,1.110075558708409071e-01 +3.529956696376597702e-01,5.381598531547125697e-02 +5.669273138926249622e-01,9.623485560561616248e-02 +5.564972045748821650e-01,1.040115552234940205e-01 +5.632306096886952052e-01,1.117738003126261398e-01 +5.459798303193785785e-01,1.120457522044985277e-01 +5.497452778708404875e-01,9.655186377676516774e-02 +5.392279036153366789e-01,1.045860607577696749e-01 +5.617661027350749903e-01,7.124754284166262552e-02 +5.694346335576299101e-01,7.974543393528203683e-02 +5.324552618971377660e-01,9.728116887240337296e-02 +5.597140148266348536e-01,8.811758425859421429e-02 +5.520839694355089700e-01,1.187830841688540251e-01 +5.423760568341055022e-01,8.848605902329155504e-02 +5.523447937898998683e-01,8.005177950512058771e-02 +4.388795100281368544e-01,9.458754939677922746e-02 +4.297021424521103583e-01,1.020726394291581601e-01 +2.823232590742886239e-01,3.218619977328889686e-02 +6.593365131543330593e-01,8.648548999565373874e-02 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad9/connectivity.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad9/connectivity.csv new file mode 100644 index 000000000..33e0b1ea1 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad9/connectivity.csv @@ -0,0 +1,208 @@ +281,307,300,316,338,337,336,335,339 +225,289,298,265,343,342,341,340,344 +229,279,317,280,348,347,346,345,349 +313,278,221,301,353,352,351,350,354 +316,293,294,303,358,357,356,355,359 +247,182,191,192,363,362,361,360,364 +199,38,37,36,366,121,120,365,367 +279,296,320,317,370,369,368,347,371 +240,258,256,210,375,374,373,372,376 +318,232,189,265,380,379,378,377,381 +46,45,255,208,129,384,383,382,385 +278,313,321,306,353,388,387,386,389 +256,69,68,67,391,152,151,390,392 +301,221,292,305,351,395,394,393,396 +315,304,275,328,400,399,398,397,401 +73,72,71,196,156,155,403,402,404 +271,277,303,294,407,406,356,405,408 +45,262,274,255,411,410,409,384,412 +308,233,228,264,416,415,414,413,417 +315,274,276,304,420,419,418,400,421 +71,70,258,196,154,423,422,403,424 +51,177,213,52,427,426,425,135,428 +317,320,322,330,368,431,430,429,432 +322,320,333,326,431,435,434,433,436 +275,304,235,173,399,439,438,437,440 +178,186,4,3,443,442,87,441,444 +184,247,192,195,447,360,446,445,448 +201,183,181,234,452,451,450,449,453 +319,270,224,238,457,456,455,454,458 +331,217,246,273,462,461,460,459,463 +198,278,306,237,466,386,465,464,467 +248,184,195,242,470,445,469,468,471 +246,217,1,0,461,473,84,472,474 +280,228,214,236,478,477,476,475,479 +239,7,6,193,482,90,481,480,483 +309,285,291,231,487,486,485,484,488 +33,32,191,253,116,491,490,489,492 +274,262,234,276,410,494,493,419,495 +259,186,231,291,498,497,485,496,499 +42,41,182,247,125,501,363,500,502 +299,264,228,280,504,414,478,503,505 +236,214,77,185,476,508,507,506,509 +233,287,188,209,513,512,511,510,514 +319,194,208,255,517,516,383,515,518 +270,328,321,314,522,521,520,519,523 +44,43,184,248,127,525,470,524,526 +66,65,200,210,149,529,528,527,530 +331,2,1,217,531,85,473,462,532 +311,308,330,322,535,534,430,533,536 +0,83,188,246,167,538,537,472,539 +40,39,38,199,123,122,366,540,541 +238,224,177,218,455,544,543,542,545 +181,27,26,204,548,110,547,546,549 +330,299,280,317,550,503,346,429,551 +77,240,257,185,554,553,552,507,555 +278,198,169,221,466,557,556,352,558 +328,275,306,321,398,559,387,521,560 +302,266,312,327,564,563,562,561,565 +64,168,279,229,568,567,348,566,569 +208,194,49,48,516,571,132,570,572 +239,291,285,180,575,486,574,573,576 +192,191,32,31,361,491,115,577,578 +304,276,204,235,418,580,579,439,581 +241,180,285,286,584,574,583,582,585 +173,235,25,24,438,587,108,586,588 +183,28,27,181,589,111,548,451,590 +290,314,321,313,592,520,388,591,593 +323,334,310,297,597,596,595,594,598 +298,327,325,329,602,601,600,599,603 +180,241,9,8,584,605,92,604,606 +297,310,284,220,595,609,608,607,610 +220,286,324,297,613,612,611,607,614 +190,240,77,76,616,554,160,615,617 +46,208,48,47,382,570,131,130,618 +239,180,8,7,573,604,91,482,619 +76,75,196,190,159,621,620,615,622 +334,329,325,310,624,600,623,596,625 +295,305,277,271,628,627,407,626,629 +310,325,282,284,623,631,630,609,632 +312,266,244,170,563,635,634,633,636 +234,262,45,201,494,411,637,449,638 +241,171,10,9,640,639,93,605,641 +206,11,10,171,643,94,639,642,644 +309,324,286,285,645,612,583,487,646 +168,268,296,279,648,647,370,567,649 +245,303,277,222,652,406,651,650,653 +204,26,25,235,547,109,587,579,654 +171,241,286,220,640,582,613,655,656 +82,81,80,209,165,164,658,657,659 +249,170,13,12,662,661,96,660,663 +266,283,175,244,666,665,664,635,667 +249,282,312,170,669,668,633,662,670 +172,18,17,202,673,101,672,671,674 +245,172,202,281,677,671,676,675,678 +83,82,209,188,166,657,511,538,679 +67,66,210,256,150,527,373,390,680 +319,238,218,194,454,542,681,517,682 +206,249,12,11,683,660,95,643,684 +205,250,20,19,687,686,103,685,688 +186,178,267,231,443,690,689,497,691 +170,244,14,13,634,692,97,661,693 +194,218,50,49,681,694,133,571,695 +244,175,15,14,664,696,98,692,697 +283,307,243,175,700,699,698,665,701 +242,29,28,183,703,112,589,702,704 +242,195,30,29,469,705,113,703,706 +195,192,31,30,446,577,114,705,707 +253,251,36,203,711,710,709,708,712 +222,205,172,245,714,713,677,650,715 +175,243,16,15,698,716,99,696,717 +307,281,202,243,338,676,718,699,719 +243,202,17,16,718,672,100,716,720 +316,303,245,281,355,652,675,335,721 +198,22,21,169,723,105,722,557,724 +218,177,51,50,543,427,134,694,725 +21,20,250,169,104,686,726,722,727 +173,237,306,275,728,465,559,437,729 +237,23,22,198,730,106,723,464,731 +305,292,222,277,394,732,651,627,733 +24,23,237,173,107,730,728,586,734 +220,284,206,171,608,735,642,655,736 +247,184,43,42,447,525,126,500,737 +199,182,41,40,738,501,124,540,739 +19,18,172,205,102,673,713,685,740 +250,292,221,169,741,395,556,726,742 +302,332,283,266,744,743,666,564,745 +179,78,77,214,747,161,508,746,748 +234,181,204,276,450,546,580,493,749 +331,178,3,2,750,441,86,531,751 +302,289,288,332,754,753,752,744,755 +75,74,73,196,158,157,402,621,756 +288,289,225,260,753,343,758,757,759 +232,168,64,63,761,568,147,760,762 +233,179,214,228,763,746,477,415,764 +231,267,326,309,689,766,765,484,767 +323,296,268,318,770,647,769,768,771 +232,63,62,189,760,146,772,379,773 +319,315,328,270,774,397,522,457,775 +267,311,322,326,776,533,433,766,777 +305,295,272,301,628,779,778,393,780 +324,309,326,333,645,765,434,781,782 +289,302,327,298,754,561,602,342,783 +263,176,207,227,787,786,785,784,788 +300,307,283,332,337,700,743,789,790 +272,295,227,261,779,793,792,791,794 +189,62,61,212,772,145,796,795,797 +225,212,174,260,800,799,798,758,801 +330,308,264,299,534,413,504,550,802 +56,176,219,57,805,804,803,140,806 +295,271,263,227,626,807,784,793,808 +282,249,206,284,669,683,735,630,809 +209,80,79,215,658,163,811,810,812 +168,232,318,268,761,380,769,648,813 +298,329,318,265,599,814,377,341,815 +227,207,216,261,785,817,816,792,818 +292,250,205,222,741,687,714,732,819 +331,311,267,178,820,776,690,750,821 +226,219,176,263,823,804,787,822,824 +176,56,55,207,805,139,825,786,826 +240,210,200,257,372,528,827,553,828 +236,185,257,200,506,552,827,829,830 +233,308,273,287,416,832,831,513,833 +215,79,78,179,811,162,747,834,835 +273,246,188,287,460,537,512,831,836 +290,272,261,230,839,791,838,837,840 +212,61,60,174,796,144,841,799,842 +329,334,323,318,624,597,768,814,843 +6,5,4,193,89,88,844,481,845 +261,216,187,230,816,847,846,838,848 +301,272,290,313,778,839,591,350,849 +207,55,54,216,825,138,850,817,851 +271,294,226,263,405,852,822,807,853 +193,259,291,239,854,496,575,480,855 +57,219,197,58,803,857,856,141,858 +187,53,52,213,860,136,425,859,861 +229,200,65,64,862,529,148,566,863 +34,33,253,203,117,489,708,864,865 +230,187,213,252,846,859,867,866,868 +36,35,34,203,119,118,864,709,869 +248,201,45,44,870,637,128,524,871 +260,174,211,223,798,874,873,872,875 +197,254,223,211,878,877,873,876,879 +332,288,269,300,752,881,880,789,882 +254,197,219,226,878,857,823,883,884 +260,223,269,288,872,885,881,757,886 +174,60,59,211,841,143,887,874,888 +211,59,58,197,887,142,856,876,889 +254,226,294,293,883,852,357,890,891 +293,316,300,269,358,336,880,892,893 +223,254,293,269,877,890,892,885,894 +216,54,53,187,850,137,860,847,895 +314,290,230,252,592,837,866,896,897 +265,189,212,225,378,795,800,340,898 +325,327,312,282,601,562,668,631,899 +69,256,258,70,391,374,423,153,900 +186,259,193,4,498,854,844,442,901 +252,224,270,314,902,456,519,896,903 +179,233,209,215,763,510,810,834,904 +255,274,315,319,409,420,774,515,905 +240,190,196,258,616,620,422,375,906 +253,191,182,251,490,362,907,711,908 +36,251,182,199,710,907,738,365,909 +242,183,201,248,702,452,870,468,910 +280,236,200,229,475,829,862,345,911 +177,224,252,213,544,902,867,426,912 +331,273,308,311,459,832,535,820,913 +324,333,323,297,781,914,594,611,915 +296,323,333,320,770,914,435,369,916 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad9/coords.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad9/coords.csv new file mode 100644 index 000000000..4803d5926 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad9/coords.csv @@ -0,0 +1,917 @@ +8.499999999999999778e-01,-1.668527987443783889e-01,0.000000000000000000e+00 +8.416260696503050642e-01,-1.944629642366926259e-01,0.000000000000000000e+00 +8.236462150357052314e-01,-2.174355594138186465e-01,0.000000000000000000e+00 +8.248179203966388151e-01,-2.428904781795287737e-01,0.000000000000000000e+00 +8.292645790044889109e-01,-2.716772343019178693e-01,0.000000000000000000e+00 +8.398463009180912042e-01,-2.938906139381732840e-01,0.000000000000000000e+00 +8.244703178121951526e-01,-3.164132756089347853e-01,0.000000000000000000e+00 +7.948358368198154000e-01,-3.194885303921755626e-01,0.000000000000000000e+00 +7.667971295466150528e-01,-3.281530464365033373e-01,0.000000000000000000e+00 +7.383880899717630841e-01,-3.357218201388419421e-01,0.000000000000000000e+00 +7.101895933659349014e-01,-3.440432940190208955e-01,0.000000000000000000e+00 +6.813377951207933991e-01,-3.496735407268184992e-01,0.000000000000000000e+00 +6.521740127649189311e-01,-3.534089958349609928e-01,0.000000000000000000e+00 +6.228763018649209338e-01,-3.559029106239530171e-01,0.000000000000000000e+00 +5.935158344643151063e-01,-3.575148599839325647e-01,0.000000000000000000e+00 +5.641284655377833968e-01,-3.585340604733041614e-01,0.000000000000000000e+00 +5.347296815010800231e-01,-3.591503035728551008e-01,0.000000000000000000e+00 +5.053259126007306756e-01,-3.594290565132558513e-01,0.000000000000000000e+00 +4.759236683506145593e-01,-3.590829996503789312e-01,0.000000000000000000e+00 +4.465708887805746041e-01,-3.574091703729705971e-01,0.000000000000000000e+00 +4.173592172451555116e-01,-3.540620010656433392e-01,0.000000000000000000e+00 +3.882483886992379452e-01,-3.499173433795512711e-01,0.000000000000000000e+00 +3.594483680934044689e-01,-3.440306866654019302e-01,0.000000000000000000e+00 +3.307658286376534695e-01,-3.376289928656056594e-01,0.000000000000000000e+00 +3.014370009593641542e-01,-3.372063343039778949e-01,0.000000000000000000e+00 +2.722256377020462748e-01,-3.405631921699279197e-01,0.000000000000000000e+00 +2.429112831845596510e-01,-3.427846543020944825e-01,0.000000000000000000e+00 +2.135167506894664058e-01,-3.427721707569108545e-01,0.000000000000000000e+00 +1.845568101499214519e-01,-3.380258577572242129e-01,0.000000000000000000e+00 +1.554079928587640547e-01,-3.387073467945612149e-01,0.000000000000000000e+00 +1.275694742405054927e-01,-3.481356246902564955e-01,0.000000000000000000e+00 +9.986853106902919552e-02,-3.579959122639382318e-01,0.000000000000000000e+00 +7.185949347601165715e-02,-3.670413677624739246e-01,0.000000000000000000e+00 +4.266954529617900116e-02,-3.722359028186946195e-01,0.000000000000000000e+00 +1.642367446844105600e-02,-3.685919195172047691e-01,0.000000000000000000e+00 +4.148623183763027952e-03,-3.535395700442680034e-01,0.000000000000000000e+00 +2.486068874289655908e-02,-3.312163145830256394e-01,0.000000000000000000e+00 +8.264644026996503801e-03,-3.296649268085327655e-01,0.000000000000000000e+00 +7.488137846390474812e-03,-3.033856662597310683e-01,0.000000000000000000e+00 +2.731842704505125022e-02,-2.845319866804958964e-01,0.000000000000000000e+00 +5.370612337168515632e-02,-2.728994118048205242e-01,0.000000000000000000e+00 +8.179977435683941089e-02,-2.649001022983034637e-01,0.000000000000000000e+00 +1.108131172851612584e-01,-2.594977652606366703e-01,0.000000000000000000e+00 +1.391024069303650190e-01,-2.517065555638893226e-01,0.000000000000000000e+00 +1.678128926143846178e-01,-2.457748997541982783e-01,0.000000000000000000e+00 +1.972458153472803066e-01,-2.474261570266682586e-01,0.000000000000000000e+00 +1.760112949021853113e-01,-2.333505544562672063e-01,0.000000000000000000e+00 +1.779039837846384808e-01,-2.069892559408827437e-01,0.000000000000000000e+00 +2.005840292092198329e-01,-1.906637822341788746e-01,0.000000000000000000e+00 +2.273163795337277138e-01,-1.776027757214366509e-01,0.000000000000000000e+00 +2.504603495115140799e-01,-1.595789766320935554e-01,0.000000000000000000e+00 +2.770308790927559217e-01,-1.471262262271763321e-01,0.000000000000000000e+00 +3.056813712325323062e-01,-1.407345105531869200e-01,0.000000000000000000e+00 +3.350021187676797130e-01,-1.388293559584034276e-01,0.000000000000000000e+00 +3.643731743095336983e-01,-1.400655973863164372e-01,0.000000000000000000e+00 +3.936126359217542725e-01,-1.431585567992639252e-01,0.000000000000000000e+00 +4.226950327968411747e-01,-1.474915136200202759e-01,0.000000000000000000e+00 +4.515819568859816280e-01,-1.529793547356242400e-01,0.000000000000000000e+00 +4.805202232507895799e-01,-1.581540820048955576e-01,0.000000000000000000e+00 +5.098597491417027339e-01,-1.597164744575509110e-01,0.000000000000000000e+00 +5.392438643366413986e-01,-1.586809135860747233e-01,0.000000000000000000e+00 +5.684316565971959667e-01,-1.552315138889323598e-01,0.000000000000000000e+00 +5.976990319133047569e-01,-1.526583353351299577e-01,0.000000000000000000e+00 +6.269344804481211675e-01,-1.554102530231442902e-01,0.000000000000000000e+00 +6.406764277026859578e-01,-1.347969554955098515e-01,0.000000000000000000e+00 +6.212178235961559603e-01,-1.189595098401894507e-01,0.000000000000000000e+00 +5.933945765051568122e-01,-1.100559940354598476e-01,0.000000000000000000e+00 +5.647489836335102265e-01,-1.049007484678110280e-01,0.000000000000000000e+00 +5.452859786978425660e-01,-8.984397295604051870e-02,0.000000000000000000e+00 +5.663548492264733891e-01,-7.339423847154415148e-02,0.000000000000000000e+00 +5.921363846220311089e-01,-6.686203187706768469e-02,0.000000000000000000e+00 +5.779198433802932300e-01,-4.115298259440142853e-02,0.000000000000000000e+00 +5.751627271894590443e-01,-1.289729430447142389e-02,0.000000000000000000e+00 +5.995837734198278257e-01,2.198003408734899465e-05,0.000000000000000000e+00 +6.273710855812755227e-01,-8.660129010281928871e-03,0.000000000000000000e+00 +6.505536054651219757e-01,-2.658023255101419832e-02,0.000000000000000000e+00 +6.703260298117242888e-01,-4.830302577904701383e-02,0.000000000000000000e+00 +6.919274968560821248e-01,-6.752172334060317638e-02,0.000000000000000000e+00 +7.209905089708629200e-01,-7.158722494351958676e-02,0.000000000000000000e+00 +7.503148391841983900e-01,-7.376005215186012820e-02,0.000000000000000000e+00 +7.800739338634459230e-01,-7.689005750099495162e-02,0.000000000000000000e+00 +8.040291978457853039e-01,-9.264180726265081045e-02,0.000000000000000000e+00 +8.210070570184893057e-01,-1.160045578844908221e-01,0.000000000000000000e+00 +8.348659618315968922e-01,-1.422185989422807550e-01,0.000000000000000000e+00 +8.463711382362213431e-01,-1.807529183541982665e-01,0.000000000000000000e+00 +8.338913408448297426e-01,-2.069344844993798449e-01,0.000000000000000000e+00 +8.181439553818674604e-01,-2.294613982165466803e-01,0.000000000000000000e+00 +8.283952626022528243e-01,-2.570259601221039913e-01,0.000000000000000000e+00 +8.362919997168629660e-01,-2.823227779660650305e-01,0.000000000000000000e+00 +8.350294458089136951e-01,-3.075248404025171522e-01,0.000000000000000000e+00 +8.094469602385896412e-01,-3.174876514723366516e-01,0.000000000000000000e+00 +7.808131613213591393e-01,-3.238492417690574943e-01,0.000000000000000000e+00 +7.525559256435317979e-01,-3.317129727369030334e-01,0.000000000000000000e+00 +7.243582090691690345e-01,-3.400840421372935407e-01,0.000000000000000000e+00 +6.958253323902243714e-01,-3.471791776422672449e-01,0.000000000000000000e+00 +6.668088211386629105e-01,-3.517219316544485941e-01,0.000000000000000000e+00 +6.375434073407609814e-01,-3.547919192988677750e-01,0.000000000000000000e+00 +6.081992064027239575e-01,-3.567973242084886976e-01,0.000000000000000000e+00 +5.788231441742079930e-01,-3.580863969041976902e-01,0.000000000000000000e+00 +5.494370494184774856e-01,-3.588800712283096161e-01,0.000000000000000000e+00 +5.200487254436115814e-01,-3.593450940146927786e-01,0.000000000000000000e+00 +4.906462336980075833e-01,-3.593674493055254437e-01,0.000000000000000000e+00 +4.612508706046357099e-01,-3.584755186446288988e-01,0.000000000000000000e+00 +4.319473068086594481e-01,-3.559014274971631919e-01,0.000000000000000000e+00 +4.028149593774959514e-01,-3.520952945044176774e-01,0.000000000000000000e+00 +3.737841700703968262e-01,-3.472968465606636190e-01,0.000000000000000000e+00 +3.451903477153441813e-01,-3.404417603028885853e-01,0.000000000000000000e+00 +3.161443726338907245e-01,-3.365925824415960110e-01,0.000000000000000000e+00 +2.868287310230888121e-01,-3.387801897623554659e-01,0.000000000000000000e+00 +2.575705995743380328e-01,-3.419544602726320992e-01,0.000000000000000000e+00 +2.281911244771283875e-01,-3.431042031529163983e-01,0.000000000000000000e+00 +1.989097733773933230e-01,-3.411512676896801266e-01,0.000000000000000000e+00 +1.699365378327930554e-01,-3.367522202199040859e-01,0.000000000000000000e+00 +1.414000313024591504e-01,-3.431265905133233929e-01,0.000000000000000000e+00 +1.137094401256756732e-01,-3.530909937627846329e-01,0.000000000000000000e+00 +8.600488132043371259e-02,-3.629592014141338474e-01,0.000000000000000000e+00 +5.755200803817443755e-02,-3.700044805778036072e-01,0.000000000000000000e+00 +2.857563314775529023e-02,-3.734050861441768898e-01,0.000000000000000000e+00 +5.629586642118543025e-03,-3.666672730824411253e-01,0.000000000000000000e+00 +1.362969419915029123e-02,-3.407871892926244151e-01,0.000000000000000000e+00 +1.892648577766333981e-02,-3.278076007489755250e-01,0.000000000000000000e+00 +1.152338678032664016e-03,-3.184410474865224661e-01,0.000000000000000000e+00 +1.151124711138514639e-02,-2.957830855369088519e-01,0.000000000000000000e+00 +3.994650142439445939e-02,-2.790536849974230016e-01,0.000000000000000000e+00 +6.763821832324991290e-02,-2.679014365486860894e-01,0.000000000000000000e+00 +9.631599600339593725e-02,-2.624947909258850687e-01,0.000000000000000000e+00 +1.250120592945616338e-01,-2.558641720906519867e-01,0.000000000000000000e+00 +1.533048704352050762e-01,-2.477072549872533502e-01,0.000000000000000000e+00 +1.825227601313690051e-01,-2.456010246611000369e-01,0.000000000000000000e+00 +1.888489656987480669e-01,-2.415053545469743601e-01,0.000000000000000000e+00 +1.714069218502538294e-01,-2.231961237492696148e-01,0.000000000000000000e+00 +1.894779242941838915e-01,-1.967066706587997371e-01,0.000000000000000000e+00 +2.147766977252131282e-01,-1.852319366025119707e-01,0.000000000000000000e+00 +2.384415110547492000e-01,-1.679829478881803284e-01,0.000000000000000000e+00 +2.634350719884758218e-01,-1.526065277288883304e-01,0.000000000000000000e+00 +2.912083275179183084e-01,-1.432122263461579892e-01,0.000000000000000000e+00 +3.203209968112489259e-01,-1.392909773885924185e-01,0.000000000000000000e+00 +3.497005606631966579e-01,-1.391471264277344966e-01,0.000000000000000000e+00 +3.790111172659207384e-01,-1.414380827883645608e-01,0.000000000000000000e+00 +4.081890911297108571e-01,-1.451821536487474806e-01,0.000000000000000000e+00 +4.371637158274700452e-01,-1.500910922425598981e-01,0.000000000000000000e+00 +4.660097981561672764e-01,-1.558429818913688036e-01,0.000000000000000000e+00 +4.951463485348857052e-01,-1.594423532474752991e-01,0.000000000000000000e+00 +5.245767807811296812e-01,-1.593726113060879024e-01,0.000000000000000000e+00 +5.538914581092010403e-01,-1.573595880576951489e-01,0.000000000000000000e+00 +5.829991017121903818e-01,-1.534365113256213609e-01,0.000000000000000000e+00 +6.123815196736714928e-01,-1.533630235218037818e-01,0.000000000000000000e+00 +6.394724825231120624e-01,-1.491953474933702395e-01,0.000000000000000000e+00 +6.354335795249711483e-01,-1.216542479060612192e-01,0.000000000000000000e+00 +6.069949218394671275e-01,-1.156410854519039078e-01,0.000000000000000000e+00 +5.793702137171996558e-01,-1.056574239728693826e-01,0.000000000000000000e+00 +5.506637766975922554e-01,-1.028608405060483649e-01,0.000000000000000000e+00 +5.525324641194292452e-01,-7.805094957964818503e-02,0.000000000000000000e+00 +5.809352620265655354e-01,-7.157000321272019572e-02,0.000000000000000000e+00 +5.847084220809799504e-01,-5.419237445384563617e-02,0.000000000000000000e+00 +5.734452981953295225e-01,-2.726979871752294171e-02,0.000000000000000000e+00 +5.850860639013554243e-01,-2.506186870528929848e-03,0.000000000000000000e+00 +6.133181115297073882e-01,-3.006499496090476575e-03,0.000000000000000000e+00 +6.396891142264369279e-01,-1.716146876652781608e-02,0.000000000000000000e+00 +6.608472577909135781e-01,-3.705225231039770140e-02,0.000000000000000000e+00 +6.798252765070978976e-01,-5.952019320613046588e-02,0.000000000000000000e+00 +7.063447517400888165e-01,-7.016026073618848724e-02,0.000000000000000000e+00 +7.356531901942922058e-01,-7.275458527318201529e-02,0.000000000000000000e+00 +7.650465361309092271e-01,-7.466545990879952521e-02,0.000000000000000000e+00 +7.913602750565060795e-01,-8.221586060188944278e-02,0.000000000000000000e+00 +8.136284179668932248e-01,-1.045168390941359216e-01,0.000000000000000000e+00 +8.278931449221375027e-01,-1.292708446167770697e-01,0.000000000000000000e+00 +8.442553388962448224e-01,-1.535066352161641445e-01,0.000000000000000000e+00 +6.536428243304245322e-01,-1.700557475944398655e-01,-1.348996730881055660e-17 +3.888571607399345931e-01,-3.186385263326682038e-01,1.610493534079134803e-17 +6.206648216934831375e-01,-3.258359407850914824e-01,5.684424014840184044e-18 +7.046025223619822864e-01,-3.145345453690430171e-01,3.419831022836568310e-19 +4.761864778834011824e-01,-3.274261589991800392e-01,1.286475684418790614e-17 +3.007954437762617173e-01,-3.105488642033602531e-01,1.945935408759143020e-17 +5.477017691551384626e-01,-1.835124752203285969e-01,-6.838139192115956293e-18 +5.634523298701357152e-01,-3.278687879815045392e-01,8.686102183000435945e-18 +4.306852595147721008e-01,-1.762174684872072350e-01,-1.991013712771802936e-18 +2.869990057740139378e-01,-1.760056034258752899e-01,4.947611471737908228e-18 +7.984941935149520997e-01,-2.319757090619180007e-01,-1.352263852619370541e-17 +7.357091265309235739e-01,-9.850780561387892376e-02,-2.553923421354831017e-17 +7.597478681110966248e-01,-3.024748237024899034e-01,-3.690842310350420176e-18 +2.143864044474549369e-01,-3.124765320150255654e-01,2.386392686719929922e-17 +6.718712047973571244e-02,-3.069564868667019608e-01,3.037386889223862934e-17 +1.863771088946812871e-01,-3.114405288228931368e-01,2.510426828946716277e-17 +1.332723953927799909e-01,-2.864554168260043943e-01,2.485851120560419186e-17 +6.746272929219865322e-01,-9.155966002837925832e-02,-2.336337032339217768e-17 +7.992145934739723900e-01,-2.569669512537313127e-01,-1.073783054262019153e-17 +3.428076498788740767e-01,-1.689911585897991286e-01,1.451894290777885416e-18 +8.027185263456991793e-01,-1.427892228303721811e-01,-2.379008249875877467e-17 +6.054990676078435552e-01,-1.809028434345230640e-01,-9.933232576278941403e-18 +6.460954699076150165e-01,-5.348043858569775932e-02,-2.627722744618803395e-17 +7.121353139762880147e-02,-3.377290419316876791e-01,3.365077416413777401e-17 +1.004301913660629597e-01,-3.272020091074971937e-01,3.104729196765283609e-17 +8.133243602673724260e-01,-2.892267773708157019e-01,-7.781723099033525923e-18 +2.398272771867229480e-01,-1.998347642265102531e-01,9.921987728800076021e-18 +1.296325322810620018e-01,-3.184652447487117399e-01,2.864649632995823566e-17 +6.182015816502821615e-01,-3.892459209707158085e-02,-2.656789738094504042e-17 +4.891366478887153590e-01,-1.825892186424566133e-01,-4.104449135461366027e-18 +3.596196327747759880e-01,-3.144744685124003514e-01,1.705185991028708209e-17 +3.815381396117022150e-02,-3.037222713127263329e-01,3.141581000781433611e-17 +6.497952895719272259e-01,-1.106199124336599005e-01,-2.000956561893252435e-17 +1.898151349231230745e-01,-2.821522498034345072e-01,2.163313085084830100e-17 +5.053114725462006795e-01,-3.280558347247889972e-01,1.152450739166244625e-17 +2.940857025909550393e-02,-3.500708816486474140e-01,3.706900241001633604e-17 +2.426730132992921674e-01,-3.128924655700024982e-01,2.254018649959957076e-17 +4.469728849484260191e-01,-3.255667082899634801e-01,1.407054620056551997e-17 +6.767989832876094569e-01,-3.196876947600972296e-01,2.270665026817763972e-18 +4.012871541394049668e-01,-1.725846490074809669e-01,-9.763694800573146711e-19 +2.123172840214836987e-01,-2.150127666303373042e-01,1.296753123462183333e-17 +7.822758594926370046e-01,-1.116585761170533209e-01,-2.631191668008156940e-17 +6.173897757625891325e-01,-9.491336191449326054e-02,-2.021144990320476745e-17 +5.182299514781451011e-01,-1.837976419996685540e-01,-5.377863916291298034e-18 +5.765124904245763071e-01,-1.824145687427401463e-01,-8.358079995353257188e-18 +3.139461873207569642e-01,-1.709477939769524502e-01,3.071182646171694421e-18 +7.099173247641531459e-01,-1.036669468869495514e-01,-2.370735793686763392e-17 +7.547327107991403938e-01,-9.406537557287780738e-02,-2.696228130627896758e-17 +3.718511485107684478e-01,-1.699315228296640612e-01,1.506482640484183861e-19 +8.186835689398110905e-01,-1.864691462640337971e-01,-1.963536654499610651e-17 +2.630519754092058848e-01,-1.856873986203126936e-01,7.200379375141210421e-18 +4.596788524667095310e-01,-1.798399171247961337e-01,-2.987226821978544618e-18 +6.990131318417871498e-01,-2.863365748591974458e-01,-2.568700031728998314e-18 +3.880565468312517363e-01,-2.880394906320085102e-01,1.269129718464803378e-17 +4.463801714513516150e-01,-2.943811364469135494e-01,1.058065612573736491e-17 +5.248423563376625189e-01,-2.098647237310999059e-01,-2.757176725435877555e-18 +2.926763701356160374e-01,-2.012811750787498744e-01,7.524302799526577257e-18 +5.826719138412150834e-01,-2.100298436737367824e-01,-5.540763120407057974e-18 +4.661440296986149034e-01,-2.073887868211281016e-01,-1.922180803486500039e-19 +4.073725613090595776e-01,-2.016201613102244217e-01,2.004776739589594169e-18 +7.238012313313858526e-01,-1.308309558133588513e-01,-2.131525781141750798e-17 +6.663942759510437241e-01,-1.398504071609827926e-01,-1.751587089034542337e-17 +3.487672161481628619e-01,-1.978580861657264489e-01,4.420117211442670406e-18 +7.739459185809312025e-01,-2.516340396676098878e-01,-1.011510223438187784e-17 +6.313891048480174684e-01,-1.764527758454386697e-01,-1.168986551438643976e-17 +7.557732313970311200e-01,-1.307954132368797928e-01,-2.286851847454488137e-17 +2.158342028486806563e-01,-2.850724969584311208e-01,2.070182463714132968e-17 +2.714310371128964006e-01,-3.117775956461343312e-01,2.102088527483947679e-17 +6.839362162907944853e-01,-1.101032172359458494e-01,-2.172221239265984215e-17 +3.302086174289416420e-01,-3.114170380093216894e-01,1.813204979775234854e-17 +2.726173102948097338e-01,-2.028463376772178250e-01,8.672888580522808692e-18 +7.864766408886818549e-01,-2.967766094234265961e-01,-5.628943519194406100e-18 +6.432815594762107958e-01,-7.456881127903788875e-02,-2.376151284373739604e-17 +7.322948528176906891e-01,-3.085366053639745920e-01,-1.676626220253796586e-18 +1.582998466704156337e-01,-3.129127560867251967e-01,2.663090217983213504e-17 +5.344082322570319343e-01,-3.281027261686814134e-01,1.011987162363060195e-17 +5.921697810005870366e-01,-3.271568304616980782e-01,7.214226835175652465e-18 +4.754569588192437135e-01,-2.961491192777955250e-01,9.371175732084792196e-18 +8.141715786564454049e-01,-1.680796968665358992e-01,-2.149157924788552481e-17 +1.035893562309161131e-01,-2.944325822616222776e-01,2.719689563291258121e-17 +1.623844988904918352e-01,-2.819203667203690755e-01,2.293615986915900717e-17 +6.488264037539943629e-01,-3.233991232646333813e-01,4.044871332570536755e-18 +4.177014746422195168e-01,-3.224920660226281433e-01,1.514202934795657178e-17 +4.361336831628233324e-02,-3.315387303398414365e-01,3.428973930389432985e-17 +3.199360708980724111e-01,-1.989636665036682017e-01,5.941913516403006187e-18 +4.544233433529658306e-02,-3.476996747013699762e-01,3.602452377159455265e-17 +4.953076592304371806e-01,-2.091227432507361539e-01,-1.409745675705943634e-18 +2.261944525728827871e-01,-2.374800326829513419e-01,1.483003297511374929e-17 +5.906769636588542483e-01,-8.487809604621526782e-02,-2.004930180500212522e-17 +6.587471964756120846e-01,-9.168065600017505368e-02,-2.258022505469191565e-17 +6.080713114097051619e-01,-6.603590494154942814e-02,-2.301810047146874358e-17 +7.970676044645701452e-01,-2.733502515665860444e-01,-8.785297290591359383e-18 +5.536394019115629117e-01,-2.101989625674594298e-01,-4.114868523184432808e-18 +3.778248783953107037e-01,-1.991009198127196289e-01,3.152311934359500461e-18 +2.176223674938723984e-01,-2.654155033505427586e-01,1.839731393825810262e-17 +4.365898296757240171e-01,-2.047709798620399313e-01,9.445119502861330648e-19 +7.312891331320781063e-01,-1.487614267376425881e-01,-1.965503299351018295e-17 +6.114319174708547910e-01,-2.094400658059064613e-01,-7.000915106318093567e-18 +5.906596850682234168e-01,-2.971786756153025344e-01,3.905020526010306003e-18 +7.703800706518808550e-01,-2.261961636941731413e-01,-1.281242270672644240e-17 +6.611335618649176737e-01,-1.910183374056407812e-01,-1.148777148692474209e-17 +5.291507845867091664e-01,-2.377564989902113401e-01,1.810298777150467039e-19 +2.945984031554994553e-01,-2.269113352494222524e-01,1.032297182321011382e-17 +4.412333603895639556e-01,-2.338437732703786687e-01,3.999732780836859540e-18 +3.824882565531114720e-01,-2.282192384003004504e-01,6.211707550203660405e-18 +7.850907982666683882e-01,-1.706710330141648080e-01,-1.979005140033093958e-17 +2.373044204615900321e-01,-2.607406649727369574e-01,1.691613756623279999e-17 +2.992066496998956326e-01,-2.827747886715786252e-01,1.640264344034553294e-17 +2.417414655599111062e-01,-2.857196650410819827e-01,1.951946876682714677e-17 +4.443802049483410732e-01,-2.636931860553030083e-01,7.215102288478465873e-18 +3.585872906674742455e-01,-2.850098715104282809e-01,1.377744712409364338e-17 +6.767436581052830302e-01,-1.680536433050616729e-01,-1.483524606567984263e-17 +6.990630784314998403e-01,-1.406044405431816635e-01,-1.901380973560754627e-17 +5.045623261931451164e-01,-2.969796946050026754e-01,8.054544482450473766e-18 +6.455373578656407041e-01,-2.944832191168395563e-01,9.417184679065603119e-19 +5.623195903388011896e-01,-2.973638775424660152e-01,5.299177644837542027e-18 +6.721957338321349340e-01,-2.910580372582963204e-01,-7.365094798667130410e-19 +7.532533724959776800e-01,-2.772687976407066657e-01,-6.220091635513751888e-18 +7.261866434200517917e-01,-2.814504191511958409e-01,-4.436728636269199026e-18 +7.818471563596373075e-01,-1.478680916834856640e-01,-2.220568999736210527e-17 +5.578431386546606197e-01,-2.382875554448721234e-01,-1.149382367625379819e-18 +5.862414443276213749e-01,-2.386048456164062692e-01,-2.489664921636027617e-18 +3.531386325146679273e-01,-2.267093366104302454e-01,7.463527458064847668e-18 +7.785365485221737991e-01,-2.746676423168780135e-01,-7.738708837351867123e-18 +4.169893811575449694e-01,-2.914332555730044239e-01,1.167222626221566065e-17 +4.998243954434958281e-01,-2.372475348717183186e-01,1.544657866349516855e-18 +4.703771942009750129e-01,-2.360111161516781630e-01,2.832062614924929369e-18 +4.116900050170282932e-01,-2.310751999790208733e-01,5.118926629138661742e-18 +6.808969911301849809e-01,-1.952335261527780030e-01,-1.196984560978956336e-17 +6.922407010093932778e-01,-2.586959032235747746e-01,-5.359178191049384611e-18 +6.145527062483208125e-01,-2.387323243207324919e-01,-3.847145721903876586e-18 +7.222230062098329295e-01,-1.543003667440238647e-01,-1.859077198682361884e-17 +5.318090431541965257e-01,-2.671372677826163167e-01,3.367198298535825611e-18 +3.856895653489705866e-01,-2.580443095914189966e-01,9.421691495447825776e-18 +5.886530607253388503e-01,-2.676607684237677365e-01,6.718031328247241991e-19 +4.734244418244090147e-01,-2.656064926720754782e-01,6.023595793221551307e-18 +2.696249537494419535e-01,-2.841069916105627424e-01,1.798637819992526552e-17 +4.148271965257818161e-01,-2.610284701864333812e-01,8.346481932092105136e-18 +3.288847553902167764e-01,-2.832355774088352041e-01,1.501653696730643230e-17 +5.334119141822295518e-01,-2.973666652110308339e-01,6.700256293283503517e-18 +7.532627215091294293e-01,-1.629482618055294318e-01,-1.911912107056490756e-17 +7.474661498300840812e-01,-2.517377804719682644e-01,-8.820281066111462688e-18 +6.671463283260284927e-01,-2.641422631282311362e-01,-3.528690518637411624e-18 +7.645440822049718310e-01,-1.975536567501595953e-01,-1.576131280484551957e-17 +6.183224743965863857e-01,-2.963410768703123033e-01,2.470074503635689451e-18 +3.562642478894707532e-01,-2.558691639461105893e-01,1.060212099549236458e-17 +3.238328549233420173e-01,-2.266925026513504915e-01,8.881682826934077165e-18 +2.658861148473744551e-01,-2.565024504759074730e-01,1.505297940367998018e-17 +5.025178522723836583e-01,-2.667003655153057928e-01,4.737251309975743131e-18 +7.028072183255517080e-01,-1.703020557350198860e-01,-1.584451009920646687e-17 +6.447269106899968794e-01,-2.078831074143545898e-01,-8.789941912075186710e-18 +2.600627350107158064e-01,-2.242482293924170089e-01,1.169597525362085322e-17 +7.081154775833582438e-01,-1.974533691666979229e-01,-1.303829673362353634e-17 +3.266082693865220432e-01,-2.549121777816089063e-01,1.193117021722524489e-17 +7.357784859348240891e-01,-1.973238853939827120e-01,-1.439335805532063792e-17 +6.791948101897636869e-01,-2.272982241005050419e-01,-8.269562851099763778e-18 +7.195317878639286846e-01,-2.541302838597318536e-01,-7.196738551257830526e-18 +6.425657322595300647e-01,-2.669585021667391089e-01,-2.019850364774287761e-18 +7.419072774778523449e-01,-2.251093522283114101e-01,-1.155535442736930300e-17 +6.161793453108043161e-01,-2.675235957993967739e-01,-6.775005559951620517e-19 +2.963887075637416935e-01,-2.548736575891426548e-01,1.339115753198940209e-17 +6.419417251633378063e-01,-2.403046091281842156e-01,-4.996923052841589955e-18 +7.277306164489231177e-01,-1.712505241692621749e-01,-1.694519619242207066e-17 +7.990407486945310112e-01,-2.000784712503780871e-01,-1.714802951266372144e-17 +5.602740342229318715e-01,-2.675515634644117235e-01,2.034629359065686149e-18 +7.130093512640987008e-01,-2.258638380449863314e-01,-1.006993550322420342e-17 +6.618857208257517000e-01,-2.440933707899458072e-01,-5.535859773079228908e-18 +5.035400892327643874e-01,-2.818400300601542341e-01,6.395897896213109219e-18 +5.171634477132900365e-01,-2.669188166489610547e-01,4.052224804255785141e-18 +5.326104786682130943e-01,-2.822519664968235475e-01,5.033727295909664564e-18 +5.189871201876874451e-01,-2.971731799080167269e-01,7.377400387866990182e-18 +5.180752839504886298e-01,-2.820459982784888631e-01,5.714812596061387277e-18 +5.970519156560349927e-01,-2.097349547398216218e-01,-6.270839113362576156e-18 +6.129923118595879128e-01,-2.240861950633195043e-01,-5.424030414110985077e-18 +6.003970752879711492e-01,-2.386685849685694083e-01,-3.168405321769952102e-18 +5.844566790844182291e-01,-2.243173446450715258e-01,-4.015214021021543181e-18 +5.987244954720030155e-01,-2.242017698541954873e-01,-4.719622217566264514e-18 +6.827286771912719487e-01,-1.402274238520822836e-01,-1.826484031297648482e-17 +7.009351483785257741e-01,-1.554532481391007748e-01,-1.742915991740700657e-17 +6.897754382154174246e-01,-1.691778495200408072e-01,-1.533987808244315475e-17 +6.715689670281633772e-01,-1.539520252330222605e-01,-1.617555847801263300e-17 +6.862520577033446312e-01,-1.547026366860615454e-01,-1.680235919770981671e-17 +3.709769066192206699e-01,-2.569567367687647930e-01,1.001190624547009595e-17 +3.868730560901111337e-01,-2.730419001117137534e-01,1.105649434004792978e-17 +3.733219187493629909e-01,-2.865246810712184233e-01,1.323437215437083704e-17 +3.574257692784725271e-01,-2.704395177282694074e-01,1.218978405979300321e-17 +3.721494126842918582e-01,-2.717407089199915804e-01,1.162313919992046649e-17 +4.879711470483962810e-01,-2.661534290936906078e-01,5.380423551598647989e-18 +4.719008180126920138e-01,-2.508088044118768623e-01,4.427829204073240338e-18 +4.851007948222353927e-01,-2.366293255116982408e-01,2.188360240637223305e-18 +5.011711238579397154e-01,-2.519739501935120418e-01,3.140954588162629801e-18 +4.865359709353157536e-01,-2.513913773026944520e-01,3.784391896117935454e-18 +1.019948988554741365e-01,-3.107238958930014228e-01,2.911227646040154475e-17 +8.592921058172357796e-02,-3.325939547066503188e-01,3.235832173160870756e-17 +6.893149315752514217e-02,-3.223755781098369133e-01,3.202905052824027937e-17 +8.540636330579050306e-02,-3.006950081584104928e-01,2.878455742611583157e-17 +8.556148742085376013e-02,-3.163793044983852498e-01,3.054667105196867855e-17 +3.271338930369416254e-02,-3.172543453780677924e-01,3.320623291698648968e-17 +2.246205828515487890e-02,-3.038982172748939115e-01,3.219602885310835867e-17 +2.001202932492279762e-02,-3.156717931459038784e-01,3.364313959793300852e-17 +7.054613479544550314e-01,-1.838777124508589322e-01,-1.444140341641500238e-17 +6.945062343567715013e-01,-1.963434476597379907e-01,-1.250407117170654908e-17 +6.788203246177340056e-01,-1.816435847289198380e-01,-1.340254583773470453e-17 +6.921408362860944630e-01,-1.827606485898893851e-01,-1.392197462707485268e-17 +6.303356676193998531e-01,-8.474108659676557465e-02,-2.198648137347108175e-17 +6.040333697107217459e-01,-8.989572898035425030e-02,-2.013037585410344326e-17 +5.993741375342797051e-01,-7.545700049388234798e-02,-2.153370113823543286e-17 +6.256764354429579233e-01,-7.030235811029367232e-02,-2.338980665760306827e-17 +6.148549025768398346e-01,-8.009904354532398907e-02,-2.176009125585325576e-17 +6.280794140804258907e-01,-2.086615866101305672e-01,-7.895428509196640138e-18 +6.084654925393492286e-01,-1.951714546202147904e-01,-8.467073841298518255e-18 +6.184440862279304563e-01,-1.786778096399808113e-01,-1.081154904533269212e-17 +6.380580077690071183e-01,-1.921679416298965881e-01,-1.023990371323081400e-17 +6.232617501541780625e-01,-1.936696981250556615e-01,-9.353488777264666900e-18 +1.942813485803644991e-01,-2.243383439779509936e-01,1.489367690127860908e-17 +2.192652534813627763e-01,-2.262585368331430369e-01,1.389969674728114595e-17 +2.120490599844244706e-01,-2.428166705330818131e-01,1.611759191623062830e-17 +2.040795682596207583e-01,-2.331702391128082086e-01,1.541537623479353208e-17 +3.437360230288454832e-01,-2.841227244596317147e-01,1.439699204570003938e-17 +3.277465123883694376e-01,-2.690738775952220552e-01,1.347385359226584091e-17 +3.414362586379964259e-01,-2.553906708638597478e-01,1.126664560635880474e-17 +3.425861408334210934e-01,-2.697566976617457590e-01,1.283181882602941975e-17 +5.777129736461823484e-01,-9.488942225701313404e-02,-1.829155295446048245e-17 +5.785159064426639297e-01,-7.913616725887975822e-02,-2.010787112116268507e-17 +5.629458666487637819e-01,-8.921442581539199002e-02,-1.821629042766487536e-17 +4.002583809373762569e-01,-2.595363898889261889e-01,8.884086713769966997e-18 +4.159082888416633650e-01,-2.762308628797189303e-01,1.000935409715388366e-17 +4.025229639943983528e-01,-2.897363731025064948e-01,1.218176172343184798e-17 +4.013906724658872216e-01,-2.746363814957163418e-01,1.053292421860090749e-17 +2.811374112055580743e-01,-2.556880540325250362e-01,1.422206846783469114e-17 +2.977976786318186631e-01,-2.688242231303606400e-01,1.489690048616746597e-17 +2.844158017246687931e-01,-2.834408901410707116e-01,1.719451082013539769e-17 +2.677555342984082598e-01,-2.703047210432351077e-01,1.651967880180261977e-17 +2.827766064651134892e-01,-2.695644720867979016e-01,1.570828964398504287e-17 +6.088059534008366525e-01,-1.944784400263099844e-02,-2.831014411515504470e-17 +5.980607125152876957e-01,-4.003878734573648734e-02,-2.546622922891881946e-17 +5.900094630261268902e-01,-2.139040776748693529e-02,-2.718015651989302291e-17 +4.558052772952694842e-01,-2.349274447110284436e-01,3.415897697880894840e-18 +4.589023233863750995e-01,-2.646498393636892432e-01,6.619349040850008590e-18 +4.428067826689525699e-01,-2.487684796628408523e-01,5.607417534657662322e-18 +4.573538003408224029e-01,-2.497886420373588712e-01,5.017623369365451715e-18 +2.315710970540074132e-01,-2.488671952534858567e-01,1.585429240072945583e-17 +2.275841206296527197e-01,-2.630765872911600134e-01,1.765070687496185417e-17 +2.071192065650271363e-01,-2.562570250621357126e-01,1.787292579528785206e-17 +2.194811687872881001e-01,-2.522194413050545259e-01,1.681835549630314739e-17 +7.422759273206037678e-01,-1.558548442715860238e-01,-1.938707703203754680e-17 +7.275451822317320349e-01,-1.397961912755007197e-01,-2.048514540246384855e-17 +7.397872313642083197e-01,-1.308131845251193359e-01,-2.209188814298119467e-17 +7.545179764530802746e-01,-1.468718375212046123e-01,-2.099381977255489600e-17 +7.410315793424060438e-01,-1.433340143983526938e-01,-2.073948258750936919e-17 +2.556832096546765576e-01,-2.849133283258223903e-01,1.875292348337620306e-17 +2.393011314477846430e-01,-2.732670991184021347e-01,1.823271858131499737e-17 +2.516760044859506773e-01,-2.586588738758500705e-01,1.598485657555173188e-17 +2.537052996311135455e-01,-2.716897071343809533e-01,1.735676910403791715e-17 +6.131364465299937727e-01,-5.248024851931051837e-02,-2.479299892620689046e-17 +6.001038480158681354e-01,-6.644896840930852866e-02,-2.258542007777901002e-17 +5.989224343054869726e-01,-5.333631148657810850e-02,-2.400764996678933058e-17 +3.098137792766446630e-01,-1.558411522650696712e-01,1.566969896634391778e-18 +3.004725965473854510e-01,-1.734766987014138562e-01,4.009397058954801324e-18 +2.820149424333849297e-01,-1.615659148265258249e-01,3.559918033398478982e-18 +2.958404620326519630e-01,-1.583444625237859504e-01,2.526511516600111125e-18 +7.152689173872374129e-01,-1.707762899521410305e-01,-1.639485314581426877e-17 +7.317545511918736034e-01,-1.842872047816224712e-01,-1.566927712387135275e-17 +7.219469817590912220e-01,-1.973886272803403175e-01,-1.371582739447208636e-17 +7.186079495731642064e-01,-1.840824586162406462e-01,-1.505534027014317910e-17 +7.388428817063381615e-01,-2.112166188111470611e-01,-1.297435624134496892e-17 +7.274583143709755229e-01,-2.254865951366489263e-01,-1.081264496529675321e-17 +7.105624144237284723e-01,-2.116586036058421549e-01,-1.155411611842387065e-17 +7.247026480650332614e-01,-2.114376112084946080e-01,-1.226423617988441978e-17 +3.000010467380786472e-01,-2.966618264374694669e-01,1.793099876396848157e-17 +2.861132404445790312e-01,-3.111632299247473199e-01,2.024011968121545657e-17 +2.705279954311691215e-01,-2.979422936283485646e-01,1.950363173738236961e-17 +2.852645210846238566e-01,-2.973020600329089880e-01,1.871731525067542559e-17 +8.112313616754392998e-01,-2.375518821771033795e-01,-1.351068742480116631e-17 +8.142974785067250698e-01,-2.644195367373746164e-01,-1.062783244843087929e-17 +7.988454679641420197e-01,-2.444825433461655373e-01,-1.212853687118213136e-17 +8.135796926617774316e-01,-2.509800990963889089e-01,-1.210939817923918696e-17 +1.314524638369209963e-01,-3.024603307873580116e-01,2.675250376778120760e-17 +1.149890038569225531e-01,-3.228383437286186930e-01,2.984947885455904070e-17 +1.184414335478389951e-01,-2.904290533167966926e-01,2.602550547319031901e-17 +1.166916538588766150e-01,-3.066022179102548262e-01,2.793508213337923798e-17 +2.028246688859018654e-01,-2.836123733809328140e-01,2.116747774399481226e-17 +2.151103036480678243e-01,-2.987745144867283154e-01,2.228287575217031445e-17 +2.003817566710681120e-01,-3.119585304189593233e-01,2.448409757833323253e-17 +1.880961219089022363e-01,-2.967963893131638775e-01,2.336869957015773343e-17 +2.016032127784850025e-01,-2.977854518999460964e-01,2.282578766116402394e-17 +2.663400226527627979e-01,-2.135472835348173892e-01,1.018443191707183018e-17 +2.826468402152129133e-01,-2.020637563779838497e-01,8.098595690024693745e-18 +2.936373866455577741e-01,-2.140962551640860634e-01,8.923637311368344768e-18 +2.773305690831076586e-01,-2.255797823209196862e-01,1.100947353841548275e-17 +2.799887046491602582e-01,-2.138217693494517402e-01,9.554034614220089788e-18 +7.920657734805996997e-01,-1.853747521322714198e-01,-1.846904045649732743e-17 +7.996311884615570076e-01,-1.693753649403503814e-01,-2.064081532410823220e-17 +8.164275737981281367e-01,-1.772744215652848621e-01,-2.056347289644081412e-17 +8.088621588171710508e-01,-1.932738087572059282e-01,-1.839169802882991552e-17 +8.042466736393639737e-01,-1.813245868487781409e-01,-1.951625667646907386e-17 +3.449141251018588150e-01,-3.129457532608610482e-01,1.759195485401971686e-17 +3.295466864095792370e-01,-2.973263077090784190e-01,1.657429338252938734e-17 +3.591034617211251168e-01,-2.997421700114142884e-01,1.541465351719035965e-17 +3.443250740653521769e-01,-2.985342388602463259e-01,1.599447344985987350e-17 +1.603421727804537067e-01,-2.974165614035471639e-01,2.478353102449557264e-17 +1.439661894757388316e-01,-3.156890004177185238e-01,2.763869925489518227e-17 +1.478284471416358992e-01,-2.841878917731867071e-01,2.389733553738160106e-17 +1.458973183086873515e-01,-2.999384460954526155e-01,2.576801739613839166e-17 +8.320857893282227469e-01,-1.674662478054571857e-01,-2.242885310307601940e-17 +8.301548192950580773e-01,-1.904660552503632254e-01,-1.974025900320644804e-17 +8.313993560171747399e-01,-1.790136699597415504e-01,-2.109271649793844519e-17 +6.914996473611471073e-01,-1.253538288895637010e-01,-2.036801106413369575e-17 +6.969267705274738711e-01,-1.068850820614477004e-01,-2.271478516476373650e-17 +7.168592780477694992e-01,-1.172489513501542013e-01,-2.251130787414257095e-17 +7.114321548814427354e-01,-1.357176981782702851e-01,-2.016453377351252713e-17 +7.041794627044584143e-01,-1.213013901198589928e-01,-2.143965946913813335e-17 +7.997797094649307104e-01,-2.927667533362466323e-01,-6.725988053650547990e-18 +8.196983451562969147e-01,-3.027976857685799605e-01,-6.559403238039177213e-18 +7.905954770857483993e-01,-3.082981300896416865e-01,-4.528575758884460255e-18 +8.048240663527322925e-01,-3.052392197018406472e-01,-5.563174305243159246e-18 +7.607060342055076418e-01,-2.516859100697891316e-01,-9.467691650246669492e-18 +7.765322817649638054e-01,-2.630249800686951800e-01,-8.955209363882935873e-18 +7.658604252058772710e-01,-2.759759613125503663e-01,-6.976853336844529484e-18 +7.503597611630308251e-01,-2.645032890563374650e-01,-7.520186350812607673e-18 +7.632131213753159393e-01,-2.638305790455195976e-01,-8.218915530579822811e-18 +4.380533984259932234e-02,-3.601803464321685633e-01,3.751201806028712551e-17 +5.860238759563290989e-02,-3.426391743845397242e-01,3.481586699364900304e-17 +7.155159347031526951e-02,-3.524347339568578708e-01,3.529360913095211682e-17 +5.815126616423792194e-02,-3.564704483439372074e-01,3.639828402529100698e-17 +2.287878342042958812e-01,-2.853960809997565518e-01,2.011064670198423669e-17 +2.168048003068938634e-01,-2.754387797166456542e-01,1.956783825466116357e-17 +2.284498672126442087e-01,-2.745213428212138762e-01,1.890004662510716349e-17 +7.876482744718432683e-01,-2.740029962087821569e-01,-8.255221770266115882e-18 +7.864140643251229523e-01,-2.545956227502867986e-01,-1.038511465336029941e-17 +7.982231716548068290e-01,-2.648910258849540567e-01,-9.795730925560001650e-18 +7.868595461050686968e-01,-2.638178761243218373e-01,-9.366171194390802852e-18 +1.072791756000161661e-01,-2.770251996146320117e-01,2.505405692654297120e-17 +7.440457313071714707e-02,-2.858779911982735622e-01,2.764588855775388314e-17 +9.078096294371815200e-02,-2.816785683372736715e-01,2.637853323455689976e-17 +7.106430423206663294e-01,-1.474524036436027641e-01,-1.880229086121558410e-17 +7.267560696709556289e-01,-1.515308967408332264e-01,-1.912290249016689935e-17 +7.190941122761990156e-01,-1.436242974595517141e-01,-1.964371813183971016e-17 +6.792817546063905088e-01,-1.008314386321625400e-01,-2.254279135802600991e-17 +6.832773948890341620e-01,-7.954069168449121041e-02,-2.513860194085473630e-17 +7.009224108101176354e-01,-8.559433511377639858e-02,-2.531059574759246597e-17 +6.901020827082541276e-01,-9.321288687296946929e-02,-2.392669355280923640e-17 +7.690136217149059483e-01,-1.212212127213033175e-01,-2.459034061930864555e-17 +7.924640676068859246e-01,-1.272173356319114268e-01,-2.505013503974836095e-17 +7.922828413526682434e-01,-1.453286572569288948e-01,-2.299788624806043997e-17 +7.688101938783341582e-01,-1.393317524601827007e-01,-2.253710423595349332e-17 +7.806596981965694404e-01,-1.331105740997354792e-01,-2.381321360549671473e-17 +2.432447279724070655e-01,-2.308290743553220170e-01,1.325342128002852030e-17 +2.260828980672739685e-01,-2.073520772508387899e-01,1.143615655124621604e-17 +2.500327813595556448e-01,-2.118595768664948142e-01,1.078420251781866794e-17 +2.347806640757864882e-01,-2.191240080613686692e-01,1.234289882562293296e-17 +3.092156290394207918e-01,-2.268019189503863720e-01,9.602327325072093952e-18 +3.252205621549320580e-01,-2.408023402164797266e-01,1.040642652207965949e-17 +3.114984884751318961e-01,-2.548929176853757528e-01,1.266116387460732272e-17 +2.954935553596206299e-01,-2.408924964192824536e-01,1.185706467759975719e-17 +3.103570587572763717e-01,-2.408474183178810901e-01,1.113174559983970834e-17 +1.650610144117505285e-01,-2.638201557140550380e-01,2.076425174328999208e-17 +1.361872305569337971e-01,-2.691176502706826290e-01,2.276108015885591445e-17 +1.506416034314091712e-01,-2.659829913394224365e-01,2.170699436525123650e-17 +6.053921761338729723e-01,-1.024846779749765124e-01,-1.877583079599437936e-17 +6.335925326672581237e-01,-1.027666371740765805e-01,-2.011050776106864436e-17 +6.355065565840416486e-01,-1.147897111369247103e-01,-1.884671322833214808e-17 +6.202937272533626256e-01,-1.092038613129902025e-01,-1.873979431852028986e-17 +8.113434818651181768e-01,-2.087570153320983668e-01,-1.676499239557480072e-17 +8.213767498310003967e-01,-2.001041466282929004e-01,-1.822745651373957800e-17 +7.501612840698980156e-01,-1.974387710720711397e-01,-1.507733543008307875e-17 +7.404966689790262180e-01,-1.670993929873957895e-01,-1.803215863149348757e-17 +7.589034018570506301e-01,-1.802509592778445136e-01,-1.744021693770521357e-17 +7.453289765244620613e-01,-1.822690820297335201e-01,-1.655474703078828008e-17 +8.084450525010722366e-01,-1.554344598484539985e-01,-2.264083087332215128e-17 +8.187922440886480357e-01,-1.425039108863264958e-01,-2.460114944302597607e-17 +8.263501956986586405e-01,-1.544705475323090715e-01,-2.361720747704759544e-17 +4.558154643150091889e-02,-2.880321231243097024e-01,2.928559761917538138e-17 +3.104957698875773775e-02,-2.924046745264742841e-01,3.048311260645969891e-17 +2.678346428520078648e-01,-1.942668681487652593e-01,7.936633977832010327e-18 +2.750254905916099668e-01,-1.808465010230939918e-01,6.073995423439559324e-18 +2.898376879548150153e-01,-1.886433892523125821e-01,6.235957135632242742e-18 +2.788361654034114401e-01,-1.914551287005389346e-01,7.086295556732128075e-18 +2.285297088733735382e-01,-3.126844987925139763e-01,2.320205668339943191e-17 +2.427921482419259092e-01,-3.278385599360484903e-01,2.422075405894108059e-17 +2.139515775684607268e-01,-3.276243513859682377e-01,2.559409772672641311e-17 +2.283604166752510045e-01,-3.278943509727151873e-01,2.492635971610117022e-17 +7.249768113293779681e-01,-1.627754454566429643e-01,-1.776798408962284321e-17 +7.129559798539518711e-01,-1.591143467978718418e-01,-1.759857200351492643e-17 +6.666872446987992529e-01,-9.162015801427716988e-02,-2.297179768904204820e-17 +6.510143779759114402e-01,-8.312473363960642958e-02,-2.317086894921465893e-17 +6.676045281661464603e-01,-7.104526730982055338e-02,-2.533767320102734702e-17 +6.671458864324729676e-01,-8.133271266204883387e-02,-2.415473544503470224e-17 +3.884568537855931369e-01,-3.033390084823383570e-01,1.439811626271969245e-17 +3.742383967573552628e-01,-3.165564974225342221e-01,1.657839762553921198e-17 +3.737801577533591546e-01,-3.015405892468763227e-01,1.490638488995502759e-17 +3.140457025450562600e-01,-2.830051830402069424e-01,1.570959020382598262e-17 +3.127720955100940503e-01,-2.689490503627913753e-01,1.418537703921665344e-17 +6.024162030180716387e-01,-2.675921821115823107e-01,-2.848711585218926313e-21 +6.172509098536953509e-01,-2.819323363348545386e-01,8.962869738202632180e-19 +6.044910797324049012e-01,-2.967598762428074188e-01,3.187547514822997727e-18 +5.896563728967810780e-01,-2.824197220195351354e-01,2.288411829417515197e-18 +6.034536413752382700e-01,-2.821760291771948093e-01,1.592349401618889400e-18 +6.535353518268648410e-01,-1.373236813282463498e-01,-1.717785858204785229e-17 +6.651932412178538367e-01,-1.690546954497507970e-01,-1.416260668724520116e-17 +6.471596260165554115e-01,-1.524263515449749140e-01,-1.516490679128041736e-17 +6.593642965223593944e-01,-1.531891883889985873e-01,-1.567023263464652518e-17 +2.064887467742763383e-01,-2.028257041995630283e-01,1.187491770570158374e-17 +2.334992667766661034e-01,-1.886940066931966919e-01,8.971629572138774780e-18 +2.204092470943502524e-01,-1.963881971871212495e-01,1.047404720264332586e-17 +7.730033424619917604e-01,-2.996825189374813236e-01,-4.648206513451003216e-18 +7.565006203035371524e-01,-2.898718106715982290e-01,-4.955466972932085647e-18 +7.826957686282941529e-01,-2.859813343310915190e-01,-6.663746864653460087e-18 +7.694058821194574849e-01,-2.879876279979062259e-01,-5.793399360446613732e-18 +1.001140359696330029e-01,-3.425452257070436546e-01,3.279375873629230923e-17 +8.595444143839309215e-02,-3.476859213480316679e-01,3.405989805337670420e-17 +2.570520252060942701e-01,-3.123350306080683869e-01,2.178053588721952377e-17 +2.422072394296016506e-01,-2.993060653055422127e-01,2.102982763321335722e-17 +2.563676174303854971e-01,-2.986241794669454164e-01,2.026672968529786188e-17 +7.292407481188711849e-01,-2.949935122575851887e-01,-3.056677428261497613e-18 +7.397200079580147358e-01,-2.793596083959512533e-01,-5.328410135891475842e-18 +7.460213604643936014e-01,-3.055057145332322199e-01,-2.683734265302108574e-18 +7.428706842112040576e-01,-2.924326614645916811e-01,-4.006072200596791437e-18 +3.011162223678129357e-01,-3.238775992536691017e-01,2.094766702061740109e-17 +2.718283374074713099e-01,-3.261703939080311532e-01,2.262554653664751936e-17 +2.864709857338338939e-01,-3.249717098435513929e-01,2.178077007208076900e-17 +1.854669595223014111e-01,-3.247331932900586748e-01,2.664815787629968766e-17 +1.996457650242307036e-01,-3.265548990543197250e-01,2.616664264602416162e-17 +3.547014402020693402e-01,-2.412892502782704174e-01,9.032824226778606124e-18 +3.384857437190050278e-01,-2.267009196308903962e-01,8.172605142499462417e-18 +3.399610011785007546e-01,-2.410457952473750720e-01,9.719625374429132806e-18 +6.857177555995784823e-01,-2.429970636620399083e-01,-6.814370521074574195e-18 +6.796935146677109962e-01,-2.614190831759028999e-01,-4.443934354843397347e-18 +6.645160245758900963e-01,-2.541178169590884162e-01,-4.532275145858319881e-18 +6.705402655077576934e-01,-2.356957974452254245e-01,-6.902711312089495958e-18 +6.751168900877343448e-01,-2.485574403105642316e-01,-5.673322833466446267e-18 +6.282472157058293094e-01,-2.395184667244583399e-01,-4.422034387372733271e-18 +6.422537287114339355e-01,-2.536315556474616484e-01,-3.508386708807938858e-18 +6.293725387851671904e-01,-2.672410489830679414e-01,-1.348675460384725003e-18 +6.153660257795625643e-01,-2.531279600600646607e-01,-2.262323138949519030e-18 +6.288098772454983054e-01,-2.533797578537631545e-01,-2.885354923878729137e-18 +7.632724988288559498e-01,-3.153139350694966203e-01,-2.413020103846161521e-18 +7.353414713947268311e-01,-3.221292127514082670e-01,-2.906256556344008191e-19 +7.492886430539628106e-01,-3.186093436350676544e-01,-1.363596824413499422e-18 +6.956269164255902693e-01,-2.725162390413861102e-01,-3.963939111389190885e-18 +6.856044328369610419e-01,-2.886973060587468831e-01,-1.652604755797855678e-18 +6.696710310790817688e-01,-2.776001501932637838e-01,-2.132599999252062525e-18 +6.826489737523360191e-01,-2.750581946173249470e-01,-3.048269555320626705e-18 +7.058862444366610367e-01,-2.564130935416533141e-01,-6.277958371153606798e-18 +7.228592156419901826e-01,-2.677903515054638195e-01,-5.816733593763514006e-18 +7.125998876309195262e-01,-2.838934970051966156e-01,-3.502714333999098863e-18 +7.092430660337902815e-01,-2.701532952734250204e-01,-4.890336352576352060e-18 +6.582107498596697637e-01,-5.089173218237239005e-02,-2.715637021678232692e-17 +6.446885146919127951e-01,-6.402462493236779628e-02,-2.501937014496271345e-17 +6.622568955995054019e-01,-6.177240906924916231e-02,-2.612478536149313191e-17 +1.892843137251467578e-01,-2.118852700835499314e-01,1.373075811088920664e-17 +7.768755807527719659e-01,-3.119110657424329913e-01,-3.456117024896786271e-18 +6.321485257789485335e-01,-4.620251534138467009e-02,-2.642256241356653565e-17 +6.343775935577021796e-01,-3.275241232404288438e-02,-2.804812564163454914e-17 +6.464978917849311113e-01,-4.162738382589123431e-02,-2.763408582445936557e-17 +6.548560302927792787e-01,-2.655503826474850948e-01,-2.774270441705849693e-18 +6.519137229945447531e-01,-2.421989899590650253e-01,-5.266391412960409046e-18 +6.533848766436620714e-01,-2.538746863032750323e-01,-4.020330927333128984e-18 +4.264616827032960966e-01,-2.324594866246997571e-01,4.559329704987759871e-18 +4.296037007370615002e-01,-2.623608281208681947e-01,7.780792110285284734e-18 +4.132586007714050269e-01,-2.460518350827271272e-01,6.732704280615383054e-18 +4.280326917201788262e-01,-2.474101573727839898e-01,6.170060907636521147e-18 +6.588665458488878190e-01,-2.927706281875678829e-01,1.026044940199234429e-19 +6.440515450625854399e-01,-2.807208606417893604e-01,-5.390659484338637244e-19 +6.568612880708335489e-01,-2.791605054175265166e-01,-1.335832973842963125e-18 +6.194936480450347061e-01,-3.110885088277018928e-01,4.077249259237936747e-18 +6.064173013470350870e-01,-3.264963856233947248e-01,6.449325425007918640e-18 +5.914147330344051712e-01,-3.121677530385003063e-01,5.559623680592978848e-18 +6.054541905397198276e-01,-3.116281309331009886e-01,4.818436469915457028e-18 +1.938032455067982829e-01,-2.648509955502245106e-01,1.948781227539653658e-17 +2.044030510056856487e-01,-2.700297647705939275e-01,1.955849408699089620e-17 +7.073960578639586494e-01,-3.292889196940319008e-01,1.871327213990711026e-18 +7.184486875898364877e-01,-3.115355753665087768e-01,-6.673215589850698774e-19 +7.214034483295028721e-01,-3.258098087519011865e-01,8.000367241114156374e-19 +6.907007528247959272e-01,-3.171111200645701511e-01,1.306324064550710594e-18 +6.790683892042015390e-01,-3.346806177434578644e-01,3.852321618959251725e-18 +6.932630426075101493e-01,-3.321451488534187257e-01,2.878426429264316539e-18 +7.334989688470063829e-01,-2.529340321658500867e-01,-8.008509808684645837e-18 +7.366094884025105038e-01,-2.661468202809006423e-01,-6.668459972288061225e-18 +6.710152764975512163e-01,-1.931259317792093644e-01,-1.172880854835715195e-17 +6.573881930976711585e-01,-1.805370425000403234e-01,-1.248886939786764858e-17 +6.681042588577024155e-01,-1.810903136144800252e-01,-1.294570761780117733e-17 +4.609185651352976643e-01,-2.952651278623545372e-01,9.975915928911077784e-18 +4.453801881998463719e-01,-2.790371612511083343e-01,8.897879207107913853e-18 +4.744407003218263918e-01,-2.808778059749355016e-01,7.697385762653170981e-18 +4.599104442608364374e-01,-2.799574836130219180e-01,8.297632484880542417e-18 +2.573113123902162069e-01,-3.271447454403502708e-01,2.343892471011181146e-17 +7.018078271018848291e-01,-3.004355601141202592e-01,-1.113358464722670742e-18 +7.155242876103780070e-01,-2.977145361858527517e-01,-2.085017946492084563e-18 +8.017254140486540503e-01,-1.138403873435109015e-01,-2.700820379738284725e-17 +7.809374421621714246e-01,-9.418017271996101392e-02,-2.821911789561829635e-17 +7.972317152825756370e-01,-9.857089345519390311e-02,-2.851328398408471813e-17 +6.505002082594566470e-01,-3.384040595497971871e-01,5.656744109111565933e-18 +6.217705617792020911e-01,-3.408694257045222775e-01,7.327044281452799454e-18 +6.347456127237387502e-01,-3.246175320248624319e-01,4.864647673705361170e-18 +6.361445100322500323e-01,-3.397047256618652145e-01,6.499122430448070842e-18 +5.778110554353613759e-01,-3.275128092216013087e-01,7.950164509088043434e-18 +5.628859601044684524e-01,-3.126163327619853050e-01,6.992639913918989371e-18 +5.764896377035122477e-01,-2.972712765788843026e-01,4.602099085423924015e-18 +5.771503465694368673e-01,-3.123920429002428056e-01,6.276131797255983339e-18 +6.319299161311136004e-01,-2.954121479935759575e-01,1.705896485771124881e-18 +6.471818808098175335e-01,-3.089411711907364411e-01,2.493294900238548919e-18 +6.333377644274261753e-01,-3.100148400092191947e-01,3.285272079738242448e-18 +4.907489752148008200e-01,-3.277409968619844904e-01,1.219463211792517542e-17 +5.053186925734656221e-01,-3.437424456190224520e-01,1.329404907533418831e-17 +4.760550731170079541e-01,-3.432545793247794852e-01,1.465701589495845250e-17 +4.906976044564042017e-01,-3.435542230837549393e-01,1.398129867982240841e-17 +4.900096425061944982e-01,-2.965644069413991279e-01,8.712860107267632981e-18 +5.049368993696728980e-01,-3.125177646648957808e-01,9.789525937056458465e-18 +4.758217183513225312e-01,-3.117876391384877821e-01,1.111796628813634994e-17 +4.903793088604975203e-01,-3.121527019016917537e-01,1.045374611259640420e-17 +8.101624061717513925e-01,-1.282454946422490472e-01,-2.579172886505213274e-17 +5.917017917139607563e-01,-9.777657647661183726e-02,-1.864364946778641930e-17 +2.513277773704526430e-01,-1.928590606399844254e-01,8.577658172191186265e-18 +2.582742458537973240e-01,-2.033141810813409167e-01,9.420688854210442241e-18 +6.628126935208019654e-01,-3.215434090123653332e-01,3.157768179694149978e-18 +6.648107573297323825e-01,-3.366326703334069914e-01,4.763442732183645733e-18 +4.467718868645003116e-01,-3.414879393314670386e-01,1.587664916114608048e-17 +4.175303459436875420e-01,-3.382770335441357412e-01,1.693131058029732308e-17 +4.323371797953227680e-01,-3.240293871562958117e-01,1.460628777426104741e-17 +4.321422433019910803e-01,-3.399654073267295296e-01,1.641376564181797647e-17 +7.721629946164060287e-01,-2.389151016808915284e-01,-1.146376247055416089e-17 +7.844371320834164774e-01,-2.290859363780455571e-01,-1.316753061646007468e-17 +7.855257305095508791e-01,-2.415983896190713187e-01,-1.180852310658038489e-17 +5.928428077324510159e-01,-3.423358452228153492e-01,8.894234731271036570e-18 +6.073082538748795223e-01,-3.416468549159417667e-01,8.115552672091287853e-18 +2.567561624603599824e-01,-1.726331876262031384e-01,6.032569597918515449e-18 +2.449765659962051256e-01,-1.802525454032209429e-01,7.463045498756232530e-18 +5.637903977039595560e-01,-3.432014242274044058e-01,1.039967383737144852e-17 +5.783170998047847400e-01,-3.427996030628995272e-01,9.650424298019653494e-18 +5.489302810635837693e-01,-3.279857570750929763e-01,9.402986903315518947e-18 +5.339100732196306875e-01,-3.127346956898560681e-01,8.410063958457051963e-18 +5.478657522605153707e-01,-2.973652713767484523e-01,5.999716969060522387e-18 +5.483980166620495700e-01,-3.126755142259207143e-01,7.701351936188019897e-18 +1.723384777825484604e-01,-3.121766424548091945e-01,2.586758523464965199e-17 +1.568539197645898997e-01,-3.258100514406432335e-01,2.815614488593709982e-17 +1.711375078076708411e-01,-3.244644313373566402e-01,2.731218869362795414e-17 +1.286010032607837195e-01,-3.333004347194841177e-01,3.037030787066251216e-17 +1.426831103890989771e-01,-3.294077954655210139e-01,2.924873923350697414e-17 +1.142895695236492287e-01,-3.378921809454240033e-01,3.158186782478495195e-17 +3.744404311636410909e-02,-3.490801971434095430e-01,3.656785459497743783e-17 +2.613767146482438852e-02,-3.409128839982000780e-01,3.619421855874074215e-17 +3.381543751797895514e-02,-3.319348817713355104e-01,3.480920954371693534e-17 +4.444821986290908855e-02,-3.394827794598812010e-01,3.514559783406217474e-17 +3.533242908203296229e-02,-3.401812715423381817e-01,3.566612651359262366e-17 +4.615796814159136008e-01,-3.264964336445717596e-01,1.346765152237671382e-17 +4.466765281998887893e-01,-3.099739223684385703e-01,1.232560116315144321e-17 +4.612491232756057435e-01,-3.108807807534631484e-01,1.172178372564389503e-17 +5.345689568790560342e-01,-3.436265148707682848e-01,1.186360408621082288e-17 +5.491836652410307940e-01,-3.434329141517013517e-01,1.113358320458212678e-17 +5.198598524016162514e-01,-3.280792804467351775e-01,1.082218950764652487e-17 +5.194234862946517373e-01,-3.126262301773759522e-01,9.099794947756756755e-18 +5.199542889226138609e-01,-3.437121872307140058e-01,1.258144565109149837e-17 +4.889903947772953341e-01,-2.813589180175448679e-01,7.046641829433140870e-18 +3.885527747195862691e-01,-3.342779348561096819e-01,1.788425059854908332e-17 +3.595340004340902285e-01,-3.292525775889011408e-01,1.872339629844955416e-17 +3.740112834138760167e-01,-3.319266719915989206e-01,1.832359134832606543e-17 +2.692302812900428943e-01,-1.667265143759911472e-01,4.761678645025254583e-18 +4.032793176910770550e-01,-3.205652961776481180e-01,1.562348234437395836e-17 +4.030471385342864754e-01,-3.363302953410328699e-01,1.741346887356210629e-17 +3.155020306026017352e-01,-3.109829511063409990e-01,1.879570194267188937e-17 +3.147738665738289976e-01,-2.969940670732739152e-01,1.725264607324893599e-17 +3.304872230332975835e-01,-3.245230154374636466e-01,1.959727295111616536e-17 +3.450522364086014426e-01,-3.266937567818748445e-01,1.913642449266577575e-17 +4.316847763044482922e-01,-2.929071960099590144e-01,1.112644119397651278e-17 +4.306442385207548407e-01,-2.776340120654136046e-01,9.453616652130898758e-18 +3.158232016182461743e-01,-3.237877667739684773e-01,2.022488299703587206e-17 +6.744973585598722510e-01,-3.053728660091967750e-01,7.670777734755256579e-19 +6.881525928308784845e-01,-3.029042130616585449e-01,-1.731403456235725418e-19 +1.217332997801290478e-01,-2.731850634314898496e-01,2.392038547918030402e-17 +5.294445391602023432e-02,-3.054559981747123620e-01,3.089472093774261966e-17 +6.060931211705473942e-02,-2.869169460036337105e-01,2.843158165980150525e-17 +4.614152760102746553e-01,-3.424859761446003015e-01,1.527968878730809429e-17 +4.173454278998821598e-01,-3.069626607978162558e-01,1.340712780508611698e-17 +4.029011408427376484e-01,-3.051508346400773064e-01,1.390262203390290317e-17 +5.612968122808665861e-01,-2.824577205034388694e-01,3.666903501951614088e-18 +5.744635474741351944e-01,-2.676061659440897023e-01,1.353216245945205270e-18 +5.754765925888236655e-01,-2.824387212614870024e-01,2.977657665684565220e-18 +7.228132256475383599e-01,-1.010873762504142515e-01,-2.462329607520797051e-17 +7.283498177508932470e-01,-8.504751527869922056e-02,-2.670132791774242275e-17 +7.145789886938135327e-01,-8.562381849330139016e-02,-2.596901883278158809e-17 +2.286587715388347375e-01,-2.990402898961352918e-01,2.165635169269183584e-17 +7.987674711047415554e-01,-2.160270901561480716e-01,-1.533533401942871420e-17 +8.083890033128142694e-01,-2.227222129204824985e-01,-1.504616114178303195e-17 +5.590585864387962456e-01,-2.529195594546418957e-01,4.426234957201531649e-19 +5.720422914911409418e-01,-2.384462005306391685e-01,-1.819523644630703910e-18 +5.874472525264801126e-01,-2.531328070200870028e-01,-9.089308944056516125e-19 +5.732529194826381236e-01,-2.530261832373644215e-01,-2.331536993427492238e-19 +6.242790455763622681e-01,-1.763296836142150270e-02,-2.926468472792925779e-17 +5.557412702831117102e-01,-2.242432590061657627e-01,-2.632125445404906506e-18 +5.681556578763889975e-01,-2.101144031205981200e-01,-4.827815821795745006e-18 +5.700989746837650252e-01,-2.242803018256186443e-01,-3.323669733213224843e-18 +6.291617926480692624e-01,-1.659315144342914661e-01,-1.276903244474215243e-17 +6.425159645892211113e-01,-1.732542617199392676e-01,-1.258991641159849818e-17 +6.409942235561665314e-01,-1.612248046066547258e-01,-1.387343978970188478e-17 +7.457411789639774025e-01,-1.146516094253793583e-01,-2.420387634404659731e-17 +7.313002285058735064e-01,-1.159502803877668076e-01,-2.335759210909458259e-17 +7.446867136539682130e-01,-2.384235663501398372e-01,-1.018781774674038285e-17 +7.561436740648665999e-01,-2.256527579612422896e-01,-1.218388856704787424e-17 +7.584248541351871209e-01,-2.386693340155157106e-01,-1.082579010864727187e-17 +6.619608604398803386e-01,-2.175906657574298020e-01,-8.529752381587476014e-18 +6.529302362774572766e-01,-1.994507224099977549e-01,-1.013885669949996286e-17 +6.800459006599742784e-01,-2.112658751266415502e-01,-1.011970423044466357e-17 +6.664880684687158885e-01,-2.053582987683196248e-01,-1.012928046497231398e-17 +6.015990497605742116e-01,-1.667805893848264831e-01,-1.133763948111939272e-17 +6.154128029508010300e-01,-1.660204165808923382e-01,-1.209277418689565732e-17 +2.629744249290451030e-01,-2.403753399341622410e-01,1.337447732865041670e-17 +2.792339901443328110e-01,-2.406339181767223057e-01,1.261577100312508540e-17 +7.674620764284264540e-01,-2.118749102221663683e-01,-1.428686775578598253e-17 +7.531524790673821412e-01,-2.115457645166566869e-01,-1.363061199856547572e-17 +3.840889109510409738e-01,-2.431317739958597235e-01,7.816699522825743091e-18 +3.970891307850698548e-01,-2.296472191896606341e-01,5.665317089671160688e-18 +3.986737558612230004e-01,-2.445918045392934115e-01,7.274701901720563072e-18 +7.162705695640135817e-01,-2.399970609523590648e-01,-8.633337027241016201e-18 +7.304786416089910084e-01,-2.392103136512495065e-01,-9.410577386990699524e-18 +6.014066391530213940e-01,-2.531303835400758317e-01,-1.585627016677585514e-18 +4.219811954923918251e-01,-2.031955705861321904e-01,1.474644344937863617e-18 +4.043298577242323555e-01,-1.871024051588527082e-01,5.142036297661397487e-19 +4.159862068270885338e-01,-1.744010587473440732e-01,-1.483691596414558996e-18 +4.336375445952480590e-01,-1.904942241746235831e-01,-5.232508812428350321e-19 +4.189837011597401517e-01,-1.887983146667381040e-01,-4.523625738347689822e-21 +5.460415386885641986e-01,-2.673444156235139646e-01,2.700913828800756265e-18 +5.469536454745398402e-01,-2.823548435001312362e-01,4.350315398930639326e-18 +3.801565674742111156e-01,-2.136600791065100535e-01,4.682009742281579662e-18 +3.925987198521850852e-01,-2.003605405614720114e-01,2.578544336974547315e-18 +4.095312831630439909e-01,-2.163476806446226197e-01,3.561851684364128341e-18 +3.948439253186274422e-01,-2.150038798755663227e-01,4.121930713322854002e-18 +5.910057790162099867e-01,-1.816587060886315774e-01,-9.145656285816099295e-18 +5.724720735108862479e-01,-1.688230413158362808e-01,-9.695802744585135739e-18 +5.870024403642001287e-01,-1.675476087071264830e-01,-1.054379784213071386e-17 +5.506705855333506872e-01,-1.968557188938940272e-01,-5.476503857650194166e-18 +5.621071297898574404e-01,-1.829635219815343439e-01,-7.598109593734607126e-18 +5.795922021328956397e-01,-1.962222062082384366e-01,-6.949421557880156425e-18 +5.651313938331232745e-01,-1.965389625510662319e-01,-6.212962707765175296e-18 +7.336263693249907014e-01,-1.593151448641144940e-01,-1.857753056083018884e-17 +4.556304046763455795e-01,-1.664096359302101868e-01,-4.306367306530612812e-18 +4.451820559907408437e-01,-1.780286928060016982e-01,-2.489120267375173970e-18 +4.266901461558066933e-01,-1.618544910536137693e-01,-3.417973002176895103e-18 +4.411728859091054167e-01,-1.640598925242807982e-01,-3.870924132337916267e-18 +4.389115950326439863e-01,-2.193073765662093000e-01,2.472122365561496303e-18 +4.242214390978439886e-01,-2.178275286054159599e-01,3.016987024962811936e-18 +6.608396196848448367e-01,-3.071570185999665803e-01,1.630186336857036711e-18 +7.685806311929246348e-01,-1.028818630074368745e-01,-2.663855462151728710e-17 +7.525237749916694474e-01,-8.391271386236900942e-02,-2.800075026358196432e-17 +7.669089143795945196e-01,-8.870982610443314820e-02,-2.815655405036210758e-17 +6.477231004333392494e-01,-1.863524920649684558e-01,-1.136438655554923283e-17 +6.433343179266673983e-01,-2.240938582712694027e-01,-6.893432482458388332e-18 +6.281633148931277111e-01,-2.240900266672944396e-01,-6.158731448284686704e-18 +3.748380134530395758e-01,-1.845162213211918589e-01,1.651480099203959423e-18 +3.865691513250866795e-01,-1.712580859185725002e-01,-4.128606080044481425e-19 +3.895839355886359656e-01,-1.858093132400222836e-01,1.082841864485049490e-18 +4.320109780498854746e-01,-3.084682915831273853e-01,1.286636448411877933e-17 +7.817924154497515321e-01,-1.988160640002687995e-01,-1.645467115875462051e-17 +7.831147737665840047e-01,-2.139510001891572200e-01,-1.481110088760734528e-17 +4.513669296871694603e-01,-2.060798833415840026e-01,3.761469349687415786e-19 +4.629114410826621340e-01,-1.936143519729621176e-01,-1.589722451163597263e-18 +4.482744928389550965e-01,-1.920542880737928504e-01,-1.056486666203216099e-18 +3.974498950305797029e-01,-1.578716029033724599e-01,-2.450475436303948713e-18 +4.120876489783997232e-01,-1.597916061980458047e-01,-2.943138960916387568e-18 +6.542712430237695997e-01,-1.011502842169174632e-01,-2.129489533681222154e-17 +6.423034553215847264e-01,-9.294568540684153279e-02,-2.164068835514164702e-17 +6.668657529313608556e-01,-1.103615648348028333e-01,-2.086588900579618325e-17 +6.667764988150801653e-01,-1.009908614245400571e-01,-2.191884334741911264e-17 +7.834689773131529034e-01,-1.592695623488251944e-01,-2.099787069884652397e-17 +7.691767598878989087e-01,-1.668096474098471060e-01,-1.945458623544792665e-17 +7.689934768831164780e-01,-1.530706999350148478e-01,-2.099584523570070999e-17 +7.452209186650320394e-01,-9.628659059337837944e-02,-2.625075775991363887e-17 +7.404370544296621226e-01,-8.452058793328015573e-02,-2.734648505996425835e-17 +7.959570149071126810e-01,-1.573520110986397214e-01,-2.181935078608433608e-17 +3.509529243314153946e-01,-2.122837113880783333e-01,5.941822334753758652e-18 +3.632960472717368106e-01,-1.984795029892230389e-01,3.786214572901085048e-18 +3.678134445338897551e-01,-2.274642875053653479e-01,6.837617504134254807e-18 +3.655547459028132273e-01,-2.129718952472942073e-01,5.311916038517669928e-18 +5.434728167458899861e-01,-1.710966944032016324e-01,-8.034068841727805158e-18 +5.579992939495292958e-01,-1.701615550196147741e-01,-8.843480800003039837e-18 +6.569372917172124904e-01,-2.298948278582474136e-01,-6.898071897273942145e-18 +8.218711060511895150e-01,-2.803694761205283159e-01,-9.195221339828339525e-18 +8.286284546149740304e-01,-2.940740593839579753e-01,-7.976395641653474050e-18 +3.457874330135184970e-01,-1.834246223777628026e-01,2.936005751110278103e-18 +3.573293991948212622e-01,-1.694613407097315949e-01,8.012712774131520935e-19 +3.603127232332790642e-01,-1.839704218494773169e-01,2.293742925157118763e-18 +3.693951755765551570e-01,-2.422105121370650704e-01,8.424761874802175378e-18 +3.681121614101511286e-01,-1.549985601079902631e-01,-1.353032396094528517e-18 +3.827901342955037367e-01,-1.563480843534685305e-01,-1.912010893659133645e-18 +4.682606119497949582e-01,-2.216999514864031462e-01,1.319922267288139538e-18 +4.535861034912194167e-01,-2.205036640263061953e-01,1.896022316424817728e-18 +8.053357492026019804e-01,-2.815700285813291237e-01,-8.258520082120299157e-18 +7.937664436797191581e-01,-2.842737672722919218e-01,-7.392854426379107695e-18 +4.848284355697524139e-01,-1.703716503236760715e-01,-5.274174176444552187e-18 +4.744077501777124173e-01,-1.812145678836263596e-01,-3.545837978719954745e-18 +4.702087741669398469e-01,-1.685287748874975677e-01,-4.773685157972942172e-18 +3.283769185998154372e-01,-1.699694762833757755e-01,2.261538468474789726e-18 +3.389048843232768671e-01,-1.539102572741012920e-01,-6.054188283433630450e-20 +3.243489577055322926e-01,-1.546302268359841525e-01,7.260198738740140640e-19 +6.580947827614853640e-01,-1.252351597973213604e-01,-1.876271825463897232e-17 +6.467641811432284227e-01,-1.234447038516912898e-01,-1.841569108826050323e-17 +2.239145730895431008e-02,-3.596438216633458529e-01,3.848912424328652762e-17 +3.328713817398729069e-02,-3.620815469779648521e-01,3.823620201995054088e-17 +3.343516435231175810e-01,-1.984108763346973114e-01,5.181015363922838681e-18 +3.169411291094146876e-01,-1.849557302403103121e-01,4.506548081287350304e-18 +3.313642810614665368e-01,-1.841901763090365574e-01,3.721276916198815359e-18 +1.474316254334515075e-02,-3.533798060720727552e-01,3.815297626428821381e-17 +1.760998169068074271e-01,-2.820363082619017914e-01,2.228464536000365408e-17 +1.793015384405420853e-01,-2.637579523247991498e-01,2.006718783565002583e-17 +5.392408791246128263e-01,-2.100318431492796678e-01,-3.436022624310155374e-18 +5.215361539079037545e-01,-1.968311828653842299e-01,-4.067520320863588372e-18 +5.329658603166417263e-01,-1.836550586099985616e-01,-6.108001554203627549e-18 +5.361033697206272208e-01,-1.968434508796391147e-01,-4.772012089256891269e-18 +5.036832996834302856e-01,-1.831934303210625836e-01,-4.741156525876332031e-18 +5.100750077840499053e-01,-2.094937334909180715e-01,-2.083461200570910691e-18 +4.922221535595763253e-01,-1.958559809465964252e-01,-2.757097405583654734e-18 +5.068791537337400399e-01,-1.963435819059902998e-01,-3.412308863223621361e-18 +5.304799138704527905e-01,-2.524468833864138007e-01,1.774114088125436061e-18 +5.434969616206849485e-01,-2.380220272175417318e-01,-4.841762449551666537e-19 +5.447692501546245181e-01,-2.526832214205278482e-01,1.108368791922794517e-18 +4.807258444645260975e-01,-2.082557650359321555e-01,-8.009818780272967709e-19 +4.775667973211192296e-01,-1.947351664597792575e-01,-2.173409928373626191e-18 +5.269965704621858427e-01,-2.238106113606556369e-01,-1.288073423860415329e-18 +5.413689203726488319e-01,-2.240269351834107137e-01,-1.960099434632660725e-18 +5.140448503099239730e-01,-1.717570582286097602e-01,-6.533585647855742435e-18 +5.287713205488857593e-01,-1.715138349580432320e-01,-7.274620937700566992e-18 +4.994148241091578844e-01,-1.713178917842689275e-01,-5.874216476401848042e-18 +4.975660273369665321e-01,-2.231851390612272501e-01,6.745609532178651418e-20 +4.829133196433807451e-01,-2.224425452738151843e-01,6.936891813049634113e-19 +5.144875900151024695e-01,-2.375020169309648432e-01,8.628438720322818758e-19 +5.158255188641961420e-01,-2.522104167899628657e-01,2.457534338144033509e-18 +5.122812988995761874e-01,-2.234978752109414712e-01,-6.103086642693144076e-19 +3.535149799290089323e-01,-1.543042335687330457e-01,-7.240440096058444121e-19 +3.218844629107072142e-01,-2.128280845775093466e-01,7.411798171668540905e-18 +3.364186936210613044e-01,-2.125558979827938677e-01,6.676810253211150549e-18 +5.940288473361223787e-01,-1.956968304142265858e-01,-7.708247699589338111e-18 +6.306512274581403954e-01,-2.813265984883219217e-01,1.786105126931997468e-19 +5.901546997804226757e-01,-7.351350185330132736e-02,-2.130624105996906574e-17 +8.104413716911879062e-01,-2.725025058627956742e-01,-9.528992516702997710e-18 +3.063062205168442520e-01,-2.001224207912090380e-01,6.733108157964791722e-18 +3.077609247781324942e-01,-2.134621698707976911e-01,8.167717741518440526e-18 +7.571190769371516360e-01,-1.089405819866437197e-01,-2.539957393899612781e-17 +2.475097238065206151e-01,-2.444111330702678497e-01,1.457919338874752230e-17 +6.289124806109532839e-01,-5.825243672583915733e-02,-2.490618453558480350e-17 +5.570007689153588792e-02,-3.190830393416075328e-01,3.229870722398492860e-17 +5.757942997522613737e-02,-3.308742475850579567e-01,3.353802079919984958e-17 +4.341499159834007193e-02,-3.180041734158511879e-01,3.277227270282935027e-17 +1.742191473446779437e-01,-2.971064753583554929e-01,2.407611529732665303e-17 +6.747972150613161801e-01,-1.252944943434425029e-01,-1.956536465938633403e-17 +3.033894085321148237e-01,-1.867995597463114610e-01,5.371252608459796523e-18 +7.754845876688252204e-01,-1.828128557050579805e-01,-1.795462869710127050e-17 +6.961020807269311383e-01,-2.265810310727456867e-01,-9.169749177161983598e-18 +7.009941625817961430e-01,-2.414970623071995282e-01,-7.723853774157794428e-18 +6.953041575418513753e-01,-2.114622393662418665e-01,-1.083691017443426634e-17 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_quad9/uvs.csv b/src/pyvale/data/render/riley/rabbits/feebs_quad9/uvs.csv new file mode 100644 index 000000000..8a385127b --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_quad9/uvs.csv @@ -0,0 +1,917 @@ +7.500000000000000000e-01,1.216662876105005647e-01 +7.450674716257958963e-01,1.054029657269749121e-01 +7.344767287670603828e-01,9.187132970800464260e-02 +7.351669028785781101e-01,7.687752108628595482e-02 +7.377861352865021649e-01,5.992114750238660553e-02 +7.440191276099554774e-01,4.683671513105802653e-02 +7.349621531924552809e-01,3.357010517439898423e-02 +7.175064409706485291e-01,3.175867603147628643e-02 +7.009906934750768093e-01,2.665498284886567287e-02 +6.842568077207067390e-01,2.219671898880434813e-02 +6.676469389004801025e-01,1.729508925042504489e-02 +6.506522533050643764e-01,1.397868339555749344e-02 +6.334737985099745394e-01,1.177837391816256331e-02 +6.162164552698630171e-01,1.030937370609383633e-02 +5.989221463270306689e-01,9.359880979996701086e-03 +5.816119914750017550e-01,8.759537399038765104e-03 +5.642951127367610287e-01,8.396549357938891747e-03 +5.469752977451305398e-01,8.232354442230088373e-03 +5.296563808240861704e-01,8.436193646038449984e-03 +5.123666002736355640e-01,9.422135737698081326e-03 +4.951599371310843045e-01,1.139373173768852034e-02 +4.780126739221703946e-01,1.383507538210483091e-02 +4.610484871086134584e-01,1.730251540837624349e-02 +4.441535006683600129e-01,2.107332970845129244e-02 +4.268778285927524729e-01,2.132228990524887360e-02 +4.096713470364358178e-01,1.934498701634053408e-02 +3.924042001423551085e-01,1.803647063973478834e-02 +3.750898257060073515e-01,1.804382387032753624e-02 +3.580314406393372839e-01,2.083956285622218588e-02 +3.408618007738271616e-01,2.043814274965343250e-02 +3.244639711709843000e-01,1.488456798865804044e-02 +3.081471781622506789e-01,9.076524906860743494e-03 +2.916489071124152010e-01,3.748445493619149884e-03 +2.744550397614860526e-01,6.886885472838688484e-04 +2.589953336071076362e-01,2.835118034887587363e-03 +2.517649129768844696e-01,1.170146128986854217e-02 +2.639650205479398548e-01,2.485061424063291294e-02 +2.541893885517027551e-01,2.576443414329765771e-02 +2.537320001320912399e-01,4.124380797338823151e-02 +2.654127115849435059e-01,5.234926330908008102e-02 +2.809559577579603395e-01,5.920124359112455270e-02 +2.975040689593284049e-01,6.391310761043468569e-02 +3.145939098402807388e-01,6.709526695646703121e-02 +3.312572588334009582e-01,7.168455314511811005e-02 +3.481687065478865084e-01,7.517849916156425782e-02 +3.655056941335375620e-01,7.420585274471581949e-02 +3.529978429532533157e-01,8.249685901813841316e-02 +3.541127007591318709e-01,9.802455598695036798e-02 +3.674720150731162205e-01,1.076408125018585432e-01 +3.832182741149776084e-01,1.153341873604294271e-01 +3.968508556913600827e-01,1.259508150019978956e-01 +4.125017968389517176e-01,1.332859064278985872e-01 +4.293779063255214745e-01,1.370508432741844862e-01 +4.466488189233627781e-01,1.381730438065017219e-01 +4.639493646397240267e-01,1.374448557674443350e-01 +4.811723970780086290e-01,1.356229979984480416e-01 +4.983029130705926013e-01,1.330707397911224110e-01 +5.153182889768846975e-01,1.298382156494776174e-01 +5.323639072211173717e-01,1.267901261600088147e-01 +5.496458809060190687e-01,1.258698241294759490e-01 +5.669541192000239205e-01,1.264798045291765372e-01 +5.841467166415357237e-01,1.285116176885427453e-01 +6.013861911960916018e-01,1.300273069406018278e-01 +6.186068597959709647e-01,1.284063342894381232e-01 +6.267013317964966745e-01,1.405482641473421723e-01 +6.152395554418172985e-01,1.498770556236924401e-01 +5.988507212853633188e-01,1.551215277536288906e-01 +5.819774976335274630e-01,1.581581418615243817e-01 +5.705131290415491607e-01,1.670270922031684979e-01 +5.829234068149595771e-01,1.767165425215437291e-01 +5.981096036853181808e-01,1.805642332746191236e-01 +5.897355797647023667e-01,1.957077333713431178e-01 +5.881115450194452920e-01,2.123512900290392413e-01 +6.024963677285850583e-01,2.199611798403857676e-01 +6.188640349953904440e-01,2.148471237853522842e-01 +6.325193237710835525e-01,2.042915763312754540e-01 +6.441659508677579637e-01,1.914961159572653449e-01 +6.568899460135515511e-01,1.801756526767129551e-01 +6.740090437262783452e-01,1.777809346441598937e-01 +6.912820666428206584e-01,1.765010658836354274e-01 +7.088111805434831325e-01,1.746573868044822009e-01 +7.229216417451034271e-01,1.653790731096994593e-01 +7.329221753781132165e-01,1.516176223297941161e-01 +7.410855393388056100e-01,1.361766649871273271e-01 +7.478624776098651283e-01,1.134786467397156384e-01 +7.405114545935821413e-01,9.805681821962095035e-02 +7.312357116184304839e-01,8.478770366372752332e-02 +7.372740785053818469e-01,6.855124383616012507e-02 +7.419255239145097214e-01,5.365056200794809244e-02 +7.411818369342200175e-01,3.880569432155825393e-02 +7.261128871473507829e-01,3.293726143084159397e-02 +7.092466105338079974e-01,2.919006945129751576e-02 +6.926021424122721371e-01,2.455806577963820861e-02 +6.759927330569771575e-01,1.962722260139720259e-02 +6.591859030572876366e-01,1.544794766888223612e-02 +6.420941959267219001e-01,1.277211181565822244e-02 +6.248558767727732111e-01,1.096378519575678771e-02 +6.075711493268983743e-01,9.782533835237181008e-03 +5.902676545026523947e-01,9.023226391483708808e-03 +5.729582501803469619e-01,8.555725354327121598e-03 +5.556475327725276525e-01,8.281811195419649246e-03 +5.383284700682648971e-01,8.268643172550946621e-03 +5.210136063814211349e-01,8.794020517354771485e-03 +5.037528155874995139e-01,1.031024731796638221e-02 +4.865928770269138948e-01,1.255218846133830841e-02 +4.694927596384254054e-01,1.537863669368727537e-02 +4.526500305729287410e-01,1.941651449563535844e-02 +4.355409682494146839e-01,2.168381052334543771e-02 +4.182730632138121907e-01,2.039523577640406718e-02 +4.010390336099695641e-01,1.852548301927616978e-02 +3.837335284905615262e-01,1.784824555213529104e-02 +3.664858217264684304e-01,1.899859063301519504e-02 +3.494196054518790007e-01,2.158977846931382436e-02 +3.326106373468764588e-01,1.783505863920197693e-02 +3.162999420133586481e-01,1.196568790079232877e-02 +2.999810192739734149e-01,6.152979625210350766e-03 +2.832213139824799608e-01,2.003071765007452282e-03 +2.661532485269585968e-01,0.000000000000000000e+00 +2.526372505739800101e-01,3.968799920613857134e-03 +2.573495846720516567e-01,1.921304513035615794e-02 +2.604695741706761769e-01,2.685846204970945492e-02 +2.500000000000000000e-01,3.237567891278350651e-02 +2.561017476429279793e-01,4.572198531264261290e-02 +2.728510747652558854e-01,5.557616840212184495e-02 +2.891624331871718301e-01,6.214522016305193408e-02 +3.060546147804416028e-01,6.532991741154342558e-02 +3.229575672174404000e-01,6.923557630498183846e-02 +3.396229904905522790e-01,7.404027653275611909e-02 +3.568333163402229724e-01,7.528091747583955107e-02 +3.605596655166622422e-01,7.769340578248530582e-02 +3.502857114002483896e-01,8.847816236012054358e-02 +3.609301434151678256e-01,1.040813467107825213e-01 +3.758319771503457751e-01,1.108403534084138609e-01 +3.897713530877673360e-01,1.210005915172570057e-01 +4.044934063327527696e-01,1.300578233739986822e-01 +4.208527937675896058e-01,1.355913848189934101e-01 +4.380011412390260594e-01,1.379011331615044300e-01 +4.553066986379785130e-01,1.379858662457859597e-01 +4.725716084317316268e-01,1.366364154167277745e-01 +4.897584225052659113e-01,1.344310309696810368e-01 +5.068254570380789081e-01,1.315395000051217400e-01 +5.238167757652656409e-01,1.281514423412465076e-01 +5.409791900042011381e-01,1.260312907992719722e-01 +5.583147106089290101e-01,1.260723711630199195e-01 +5.755820476493689331e-01,1.272581099829029616e-01 +5.927274348191103881e-01,1.295689349464565487e-01 +6.100346733851693681e-01,1.296122217499467710e-01 +6.259921673407102816e-01,1.320671239770100924e-01 +6.236131167865444080e-01,1.482897637050959450e-01 +6.068617849626369853e-01,1.518317198935553725e-01 +5.905898969779038721e-01,1.577124343809383489e-01 +5.736808340637757908e-01,1.593597166874394511e-01 +5.747815541970719977e-01,1.739735820821806389e-01 +5.915117633979212197e-01,1.777910788264343289e-01 +5.937342823647155932e-01,1.880270902750676987e-01 +5.870999212190952665e-01,2.038853985222709442e-01 +5.939567261774177931e-01,2.184720039730228269e-01 +6.105863576853753916e-01,2.181773029045281642e-01 +6.261197707454174699e-01,2.098395469587835405e-01 +6.385826333582010905e-01,1.981232022892979172e-01 +6.497613286535550703e-01,1.848888247210415114e-01 +6.653821970621989212e-01,1.786214648549098449e-01 +6.826458591947889287e-01,1.770933199031094196e-01 +6.999595347080376229e-01,1.759677500731580968e-01 +7.154592174689093920e-01,1.715203085373404601e-01 +7.285759072620505705e-01,1.583842774752323157e-01 +7.369783141986667729e-01,1.438033304746302865e-01 +7.466162001937964865e-01,1.295276296017298101e-01 +6.343389782309258873e-01,1.197796423406807115e-01 +4.783712612567626588e-01,3.225935718914337003e-02 +6.149138186059452948e-01,2.801983649516262553e-02 +6.643559649963690639e-01,3.467674086740772654e-02 +5.298111845331388015e-01,2.708314414944065773e-02 +4.264999296997383782e-01,3.702444196107369107e-02 +5.719361113782935879e-01,1.118531743541095469e-01 +5.812137246843536165e-01,2.682242069899540282e-02 +5.030094270200373696e-01,1.161501802042289727e-01 +4.183733608047014441e-01,1.162749758954852719e-01 +7.196613368735478300e-01,8.330668948418933073e-02 +6.826788075901136787e-01,1.619238015583279178e-01 +6.968384399219833547e-01,4.178032506517279088e-02 +3.756020812010829601e-01,3.588898038210013020e-02 +2.888967212908749027e-01,3.914047378889521506e-02 +3.591036582042210767e-01,3.649922132363667832e-02 +3.278231847331639637e-01,5.121629785888786451e-02 +6.466995404069949549e-01,1.660164944537049769e-01 +7.200856768298471433e-01,6.858600205666388894e-02 +4.512465409098015967e-01,1.204067212932119352e-01 +7.221496118746053572e-01,1.358405482054643176e-01 +6.059806761961393784e-01,1.133903357935022171e-01 +6.298933310513981088e-01,1.884464445953936418e-01 +2.912684135870063917e-01,2.101439742257669649e-02 +3.084780150854266600e-01,2.721517602152814450e-02 +7.283968069868331785e-01,4.958387270706775957e-02 +3.905876162378687511e-01,1.022387937355885151e-01 +3.256791821767751061e-01,3.236142590644807554e-02 +6.134628868572703508e-01,1.970203307895061207e-01 +5.374392729378036915e-01,1.123970037241723424e-01 +4.611493678020377462e-01,3.471212816914635846e-02 +2.717951211796429400e-01,4.104553620547699011e-02 +6.320726500463695885e-01,1.547893607324452581e-01 +3.611287718878044561e-01,5.375100886690800661e-02 +5.469667920643188630e-01,2.671224383699335667e-02 +2.666438766745599098e-01,1.374463614542423100e-02 +3.922638511161844477e-01,3.564398144181373657e-02 +5.126033896212232044e-01,2.817842354640613667e-02 +6.479787395286846774e-01,3.164136147846715458e-02 +4.856929480362917051e-01,1.182900338229976450e-01 +3.743832992451140984e-01,9.329843665185141854e-02 +7.101081892586641464e-01,1.541775526715171707e-01 +6.129847057155395351e-01,1.640410505437275845e-01 +5.545762133542506689e-01,1.116852014702025414e-01 +5.889066012448551657e-01,1.124998784257674744e-01 +4.342461627069746921e-01,1.192541968319286716e-01 +6.674865634796668390e-01,1.588848927480969175e-01 +6.938843425376860496e-01,1.645405431972709054e-01 +4.683541445207151099e-01,1.198528149312621249e-01 +7.315535622661564208e-01,1.101115950469930271e-01 +4.042677494824568063e-01,1.105720708657657592e-01 +5.200876344965024156e-01,1.140164353624587706e-01 +6.610636248186918529e-01,5.128629979929603261e-02 +4.778996725694379943e-01,5.028322477747233094e-02 +5.122542613122924582e-01,4.654778077269721565e-02 +5.584711435995783901e-01,9.633080814429330341e-02 +4.217175205522587511e-01,1.013868087928562617e-01 +5.925347100901138253e-01,9.623354690993958516e-02 +5.238958426865543139e-01,9.778921877719523592e-02 +4.892774588071509556e-01,1.011871344302346931e-01 +6.756646543196712651e-01,1.428843721811291212e-01 +6.418500147817955970e-01,1.375716100928308927e-01 +4.547569271315222150e-01,1.034031240099426846e-01 +7.052015721521665004e-01,7.172726746217618354e-02 +6.212307843249958994e-01,1.160115762067431555e-01 +6.944972443840964349e-01,1.429053079615397737e-01 +3.764548834571267433e-01,5.203088446293149122e-02 +4.092033003978243766e-01,3.630067755742293067e-02 +6.521828113123482318e-01,1.550937116903717550e-01 +4.438252844087757776e-01,3.651305820782792949e-02 +4.099020554489167800e-01,1.004648750526899587e-01 +7.125825916676327143e-01,4.513676611973675007e-02 +6.282358425763624465e-01,1.760246793869592596e-01 +6.806676848240359456e-01,3.820973051818171012e-02 +3.425652005376598752e-01,3.563202964077378382e-02 +5.641057682532364392e-01,2.668462318959745685e-02 +5.981292752825184689e-01,2.724178777288100567e-02 +5.293814731152964859e-01,4.550637905161066671e-02 +7.288958472903390717e-01,1.209436030947378810e-01 +3.103388701061809973e-01,4.651747744675731322e-02 +3.449711989318328120e-01,5.388759585043359501e-02 +6.315019435096843603e-01,2.945520448372672406e-02 +4.953615383209438172e-01,2.998949189673120672e-02 +2.750109834620515503e-01,2.466070044837855371e-02 +4.377744068491491447e-01,1.027518997748308460e-01 +2.760883063447969743e-01,1.514135728593170305e-02 +5.410742074631055276e-01,9.676785975801172057e-02 +3.825574211657584156e-01,8.006445658903056650e-02 +5.972499553469436950e-01,1.699521617628180770e-01 +6.373456261712866500e-01,1.659452237314605616e-01 +6.074958148476705677e-01,1.810508499981851038e-01 +7.188210276429373158e-01,5.893568371371180753e-02 +5.754335780186430327e-01,9.613393015806018238e-02 +4.718728735911580929e-01,1.026710529307471448e-01 +3.775081729498532823e-01,6.360951894799045381e-02 +5.064874186727188476e-01,9.933119567032308583e-02 +6.800752818927218168e-01,1.323227179872780157e-01 +6.094753255504014033e-01,9.658094603389535959e-02 +5.972397776723042950e-01,4.489993552562886181e-02 +7.031011670432585348e-01,8.671103730246805530e-02 +6.387512761471546563e-01,1.074319675066860713e-01 +5.610089536480487027e-01,7.990160857762799995e-02 +4.228496630481749508e-01,8.628977705293439104e-02 +5.092226154137973193e-01,8.220633644466313061e-02 +4.746197611484249679e-01,8.551937783380871017e-02 +7.117662834623093016e-01,1.194172184054090174e-01 +3.891015682459335046e-01,6.636315696268756115e-02 +4.255640762193318993e-01,5.338431240503957453e-02 +3.917151379713957882e-01,5.164968056019411669e-02 +5.110762133573178989e-01,6.462402212312877425e-02 +4.605412833633683034e-01,5.206777297123303672e-02 +6.479461511239288374e-01,1.209589495241747276e-01 +6.610930450503710309e-01,1.371274589120262122e-01 +5.465255195090709117e-01,4.501714207479338981e-02 +6.295645841705355128e-01,4.648765062533542769e-02 +5.805465027651870447e-01,4.479084532275603298e-02 +6.452672698120187622e-01,4.850519865816440429e-02 +6.930129622119991506e-01,5.662752746102329982e-02 +6.770697427691999559e-01,5.416441087307343610e-02 +7.098556686047625686e-01,1.328489225672409568e-01 +5.779097212270433159e-01,7.958879835333303177e-02 +5.946372843499327931e-01,7.940190370427431532e-02 +4.573318393128770754e-01,8.640876108752396090e-02 +7.079056085478686589e-01,5.815969597744337360e-02 +4.949420911591494443e-01,4.828418237231887206e-02 +5.437347179521280216e-01,8.020140566825105510e-02 +5.263893198410813934e-01,8.092969813837143367e-02 +4.918205792660357289e-01,8.383711980987032519e-02 +6.503926048365029633e-01,1.049490786803372877e-01 +6.570744338595940759e-01,6.756759083364724527e-02 +6.113135757569259088e-01,7.932681443317490810e-02 +6.747350263113340851e-01,1.290600948696298267e-01 +5.625747579075240923e-01,6.259534142796752132e-02 +4.765054403708153807e-01,6.795140153481651901e-02 +5.960578080243232879e-01,6.228698183354033219e-02 +5.281842518190339453e-01,6.349701977397183283e-02 +4.081394561736194637e-01,5.259959978834378991e-02 +4.936684912364048827e-01,6.619362995165226082e-02 +4.430454848646130928e-01,5.311289224436023526e-02 +5.635189031888674371e-01,4.478920329162851960e-02 +6.930184690971433747e-01,1.239661920084040442e-01 +6.896040922052886213e-01,7.166616061751762690e-02 +6.422929990823080804e-01,6.435950052909578112e-02 +6.996635723411537278e-01,1.035824432384911536e-01 +6.135340967762068498e-01,4.539330953321332046e-02 +4.591729325485791602e-01,6.923263593317777187e-02 +4.400697445185731693e-01,8.641867685913222352e-02 +4.059371535270852593e-01,6.885960873486363099e-02 +5.453212551787802731e-01,6.285269164946080678e-02 +6.632984701605850741e-01,1.196345585100929976e-01 +6.290872033561842880e-01,9.749804721853379263e-02 +4.025069857231300396e-01,8.785843652998225062e-02 +6.664252145104132552e-01,1.036415160191744983e-01 +4.417045575655089151e-01,6.979633317127306724e-02 +6.827196626263356549e-01,1.037177863434123881e-01 +6.493899626558257143e-01,8.606188642619916340e-02 +6.731498076269160080e-01,7.025689515283013720e-02 +6.278141961200560672e-01,6.270064042566918239e-02 +6.863297282613658457e-01,8.735120603673136863e-02 +6.122717212149403343e-01,6.236778115161663999e-02 +4.239042129337540210e-01,6.981902286827137982e-02 +6.274466348221781065e-01,7.840068547088083206e-02 +6.779791951357569957e-01,1.190758785033853295e-01 +7.199832763713416295e-01,1.020952420507736658e-01 +5.793416009853531445e-01,6.235130725041545391e-02 +6.693078717313325487e-01,8.690678835670860580e-02 +6.391943232303395339e-01,7.616897662935495639e-02 +5.459233873439255369e-01,5.393491686212709829e-02 +5.539480065431521272e-01,6.272401653871416405e-02 +5.630468305481958202e-01,5.369227235979803781e-02 +5.550222113489693410e-01,4.490317268321097205e-02 +5.544851089460606230e-01,5.381359461096258540e-02 +6.010050178202577253e-01,9.640724647191747931e-02 +6.103944506536638226e-01,8.795388023353511997e-02 +6.029754300534294620e-01,7.936435906872459090e-02 +5.935859972200233647e-01,8.781772530710695024e-02 +6.019902239368435382e-01,8.788580277032105592e-02 +6.514715299160833695e-01,1.373495345024285108e-01 +6.621957576054779970e-01,1.283810087110595910e-01 +6.556223106422569558e-01,1.202967540171338418e-01 +6.448980829528622172e-01,1.292652798085027754e-01 +6.535469202791701626e-01,1.288231442597811693e-01 +4.678391864596972427e-01,6.859201873399714544e-02 +4.772025564701266598e-01,5.911731315614442844e-02 +4.692204779664030934e-01,5.117549887435266648e-02 +4.598571079559737318e-01,6.065020445220541817e-02 +4.685298322130502235e-01,5.988375880417492331e-02 +5.367527534989070537e-01,6.317485571171634062e-02 +5.272867858300576138e-01,7.221335895617160550e-02 +5.350620188966046520e-01,8.056555190331124439e-02 +5.445279865654540918e-01,7.152704865885593788e-02 +5.359073861977557973e-01,7.187020380751377169e-02 +3.093996807509563074e-01,3.692134237229201255e-02 +2.999364466479546021e-01,2.403913758445694673e-02 +2.899242158327534624e-01,3.005810721965606128e-02 +2.996284719077528247e-01,4.282869665478616222e-02 +2.997198452613776820e-01,3.359011530819415448e-02 +2.685905269365467807e-01,3.307468661612484456e-02 +2.625521460316773137e-01,4.094189807923560853e-02 +2.611089960579726643e-01,3.400686343905400671e-02 +6.648618423354991647e-01,1.116380372646337271e-01 +6.584089096734579982e-01,1.042952973497558722e-01 +6.491693779802159003e-01,1.129540141022560007e-01 +6.570156101578574770e-01,1.122960256834448639e-01 +6.206102741459509353e-01,1.700328649653434221e-01 +6.051173305312416151e-01,1.669966061532728585e-01 +6.023728850973071314e-01,1.755015058805015626e-01 +6.178658287120164516e-01,1.785377646925721817e-01 +6.114915796216291444e-01,1.727671854229224924e-01 +6.192812644532929012e-01,9.703949662621455530e-02 +6.077280008732703909e-01,1.049856409136987745e-01 +6.136057302605675279e-01,1.147009560001227141e-01 +6.251589938405901492e-01,1.067548117126384949e-01 +6.164434973569301590e-01,1.058702263131686555e-01 +3.637595228816199455e-01,8.780535598936226038e-02 +3.784758883965400056e-01,8.667429741272578148e-02 +3.742253062098022665e-01,7.692099628790929899e-02 +3.695310058730419955e-01,8.260307085783305525e-02 +4.517933841139906703e-01,5.259033260779664987e-02 +4.423750212150610039e-01,6.145461270781665125e-02 +4.504387450570440654e-01,6.951448455222541956e-02 +4.511160645855174511e-01,6.105240858001102083e-02 +5.896137264902356900e-01,1.640551518121712571e-01 +5.900866810809517471e-01,1.733343521421808753e-01 +5.809154007067725001e-01,1.673979167747224328e-01 +4.850869658036101595e-01,6.707251574323438992e-02 +4.943052911977771635e-01,5.723890616198554909e-02 +4.864208818642937193e-01,4.928370357489558762e-02 +4.857539238339518839e-01,5.817810965906498877e-02 +4.149206832304196402e-01,6.933931580156751928e-02 +4.247341445765429602e-01,6.160166763665547718e-02 +4.168517661964756815e-01,5.299195609669166834e-02 +4.070383048503524170e-01,6.072960426160371045e-02 +4.158862247134477164e-01,6.116563594912957647e-02 +6.079285438428754240e-01,2.084927945671102845e-01 +6.015992333109863033e-01,1.963640320804246053e-01 +5.968567748840984954e-01,2.073485587675849562e-01 +5.178059676274393563e-01,8.156801729151726132e-02 +5.196302325881758666e-01,6.406052094855030354e-02 +5.101494143855576091e-01,7.341517928389594549e-02 +5.187181001078077225e-01,7.281426912003377550e-02 +3.857244467264763221e-01,7.335703246018245027e-02 +3.833759826816172667e-01,6.498721966271009398e-02 +3.713214557051547349e-01,6.900417260948722709e-02 +3.786030698189338795e-01,7.138244608602198338e-02 +6.865468754949325403e-01,1.281444549978410230e-01 +6.778699681061965965e-01,1.376035450842035546e-01 +6.850809493518836835e-01,1.428948400713344336e-01 +6.937578567406199603e-01,1.334357499849719020e-01 +6.858139124234081674e-01,1.355196475345877283e-01 +3.999272970725076259e-01,5.212464017426893942e-02 +3.902776985913272711e-01,5.898466331981357114e-02 +3.975669176126142013e-01,6.758940237263824646e-02 +3.987622411303832770e-01,5.991380058194880481e-02 +6.104793508524706258e-01,1.890355903938455706e-01 +6.028027092664943742e-01,1.808075416364021415e-01 +6.021068166085932205e-01,1.885313403344565930e-01 +4.318120345162481111e-01,1.281525200530566067e-01 +4.263097617558381236e-01,1.177645863637069856e-01 +4.154375788218266363e-01,1.247804411616919157e-01 +4.235812777617138924e-01,1.266779855913501840e-01 +6.706388326481710349e-01,1.193552185067391636e-01 +6.803494288810463253e-01,1.113968324233988449e-01 +6.745724385683744551e-01,1.036796511812934501e-01 +6.726056356082726895e-01,1.115174348440163138e-01 +6.845246954438506393e-01,9.553449619007188531e-02 +6.778187999963491972e-01,8.712899719671995946e-02 +6.678665431208727910e-01,9.527415218794153817e-02 +6.761956192823617151e-01,9.540432418900671174e-02 +4.260320029595350833e-01,4.520437718305661545e-02 +4.178516150487813219e-01,3.666255975924829352e-02 +4.086713782857219202e-01,4.445013867288334641e-02 +4.173516906226284462e-01,4.482725792796999481e-02 +7.271639599830058698e-01,8.002213480537850865e-02 +7.289700065629720616e-01,6.419617698956239793e-02 +7.198682494122728981e-01,7.593974082300683492e-02 +7.285472064083308164e-01,7.211246058988214636e-02 +3.267511834549695626e-01,4.178886188266800472e-02 +3.170536483552328089e-01,2.978552260885494046e-02 +3.190872462834757339e-01,4.887569148635931976e-02 +3.180565668290272763e-01,3.934915019373763645e-02 +3.687918276724656552e-01,5.289094666491975238e-02 +3.760284823291049072e-01,4.395993242251582805e-02 +3.673528697026520184e-01,3.619410085286842160e-02 +3.601162150460127664e-01,4.512511509527231124e-02 +3.680723486875588368e-01,4.454252375889407312e-02 +4.062045205860234098e-01,9.416165579133613239e-02 +4.158097880005877656e-01,1.009258419227731102e-01 +4.222835918002169064e-01,9.383829292289531943e-02 +4.126783243856525507e-01,8.707410679145828614e-02 +4.142440561931201026e-01,9.399997435711571203e-02 +7.158747799168254655e-01,1.107562302280913624e-01 +7.203310653763242977e-01,1.201804107500734353e-01 +7.302247047782477463e-01,1.155275990708654471e-01 +7.257684193187490251e-01,1.061034185488833465e-01 +7.230497423475366059e-01,1.131419146494783978e-01 +4.524873261054067619e-01,3.561259318848712663e-02 +4.434353846366944074e-01,4.481297522609409972e-02 +4.608453255827030248e-01,4.338995057018971147e-02 +4.521403551096987439e-01,4.410146289814192294e-02 +3.437681997347463159e-01,4.475981274560367207e-02 +3.341221913572174906e-01,3.399672777361089498e-02 +3.363971918324983879e-01,5.255194685466074711e-02 +3.352596915948579115e-01,4.327433731413582452e-02 +7.394479236451696469e-01,1.213049453526191951e-01 +7.383105169459760475e-01,1.077572803869839557e-01 +7.390435911940564928e-01,1.145031229052905497e-01 +6.566379281813596869e-01,1.461105853011989975e-01 +6.598346873960075909e-01,1.569893022192343224e-01 +6.715756088996690520e-01,1.508846324646130055e-01 +6.683788496850211480e-01,1.400059155465776528e-01 +6.641067685405144250e-01,1.484976088829060015e-01 +7.204185492736954188e-01,4.749870706031444206e-02 +7.321512998006542983e-01,4.159014838165148165e-02 +7.150087255811384823e-01,3.835020052546282698e-02 +7.233898461963644833e-01,4.015200226632949232e-02 +6.974028321787275608e-01,7.169671403984687053e-02 +7.067250275976375562e-01,6.501761806328085203e-02 +7.004389429175745807e-01,5.738905181166054081e-02 +6.913085272086438859e-01,6.414684403927047029e-02 +6.988795913688887751e-01,6.454309300211157063e-02 +2.751240611879287590e-01,7.789819254147766110e-03 +2.838400230897317189e-01,1.812216323463938794e-02 +2.914675435888255395e-01,1.235224713622965279e-02 +2.835742972993746669e-01,9.975074781890920506e-03 +3.840850107142612657e-01,5.184028251156280742e-02 +3.770265982078640499e-01,5.770546995144084507e-02 +3.838859367183894422e-01,5.824587133159131458e-02 +7.132727234996134591e-01,5.855119502867522918e-02 +7.125457319539230117e-01,6.998279479786759238e-02 +7.195016958257518525e-01,6.391845392506979862e-02 +7.128081357987141597e-01,6.455057545260096952e-02 +3.125122985888333926e-01,5.677101494244916891e-02 +2.931480451619574712e-01,5.155642109538920159e-02 +3.027942929866242472e-01,5.403002328123951425e-02 +6.679140356808525025e-01,1.330937768908280194e-01 +6.774051541020279510e-01,1.306914064284539212e-01 +6.728920018935244940e-01,1.353486609875158009e-01 +6.494411758596716489e-01,1.605551030720383521e-01 +6.517947432102730865e-01,1.730960735652089799e-01 +6.621882547466091395e-01,1.695302727124049225e-01 +6.558147153031403942e-01,1.650426878922216511e-01 +7.022962823747617156e-01,1.485448360840923576e-01 +7.161093886366433070e-01,1.450129167634512939e-01 +7.160026402396839629e-01,1.343447353863526650e-01 +7.021764564944295017e-01,1.378771152643903652e-01 +7.091562155596669026e-01,1.415415998615197068e-01 +3.926006104071416702e-01,8.398209613183812983e-02 +3.824917117866248883e-01,9.781084195645460555e-02 +3.965990035797029023e-01,9.515577213589564154e-02 +3.876149903234160643e-01,9.087677631256942112e-02 +4.314597037833741155e-01,8.635422695603330034e-02 +4.408871510420410700e-01,7.810750501520262457e-02 +4.328043852496314958e-01,6.980767801977223741e-02 +4.233769379909645414e-01,7.805439996060288543e-02 +4.321320445165027779e-01,7.808095248790275500e-02 +3.465477571549481217e-01,6.454923269710015343e-02 +3.295401212913764977e-01,6.142882912057533173e-02 +3.380542360925909984e-01,6.327524931709113676e-02 +6.059177135004514270e-01,1.595812891486782792e-01 +6.225286778809544508e-01,1.594152056380864213e-01 +6.236561027440934435e-01,1.523332081780688074e-01 +6.146952314217957181e-01,1.556234627658209246e-01 +7.272300025692011172e-01,9.698328587938916112e-02 +7.331399369561655277e-01,1.020801183842521415e-01 +6.911916174837446913e-01,1.036501147909517778e-01 +6.854988321164501297e-01,1.215210352558946938e-01 +6.963410207191484957e-01,1.137743176234475989e-01 +6.883452248000974105e-01,1.125855750234232011e-01 +7.255227295824722145e-01,1.283920756501011340e-01 +7.316175756067053726e-01,1.360086065962958224e-01 +7.360694648881344060e-01,1.289598526259154720e-01 +2.761703069808048028e-01,5.028756448884488806e-02 +2.676104851747863056e-01,4.771198373307363599e-02 +4.070849024656868487e-01,1.055184729592278520e-01 +4.113205551435791807e-01,1.134235233806255155e-01 +4.200454406784801531e-01,1.088308923441707737e-01 +4.135651715720835009e-01,1.071746826516992990e-01 +3.839329661586337039e-01,3.576648091195696461e-02 +3.923340256292697781e-01,2.684022604077426419e-02 +3.753459534535452113e-01,2.696640212621381760e-02 +3.838332473245976706e-01,2.680736323204612956e-02 +6.763571107235455404e-01,1.240679866865076059e-01 +6.692764341645117687e-01,1.262244976987836331e-01 +6.420225832891408579e-01,1.659808590925827554e-01 +6.327907343738246038e-01,1.709849515592099523e-01 +6.425628942949570543e-01,1.781001660318361213e-01 +6.422927387920489561e-01,1.720405125622094522e-01 +4.781354669131002710e-01,4.127129098330785395e-02 +4.697603145294001470e-01,3.348574267914489894e-02 +4.694903962479016757e-01,4.233062077674878271e-02 +4.343047805419725238e-01,5.324860232469989102e-02 +4.335545828958019543e-01,6.152814017223604687e-02 +6.041647646196317556e-01,6.232738149257845139e-02 +6.129029089955735365e-01,5.388054534241498023e-02 +6.053869372242555169e-01,4.514662252942109461e-02 +5.966487928483137360e-01,5.359345867958460047e-02 +6.047758509219436363e-01,5.373700201099980422e-02 +6.342756732891461358e-01,1.390599371200865186e-01 +6.411425646774273623e-01,1.203692959324277056e-01 +6.305201550137113919e-01,1.301639532440114211e-01 +6.377091189832868601e-01,1.297146165262570983e-01 +3.709500935518038611e-01,1.004770288693257185e-01 +3.868602039480111277e-01,1.088010769584481507e-01 +3.791497393506710889e-01,1.042689383636725697e-01 +7.046463629185852895e-01,4.342508707150260355e-02 +6.949257010669912527e-01,4.920392626309808004e-02 +7.103555299505164289e-01,5.149554849272630630e-02 +7.025273370282790752e-01,5.031377362414142518e-02 +3.082917888573084020e-01,1.817750218518191310e-02 +2.999513084764187654e-01,1.514945847650156843e-02 +4.007335757570044121e-01,3.597232949961835097e-02 +3.919894945437901734e-01,4.364683100100394397e-02 +4.003304364147560745e-01,4.404848483694362438e-02 +6.788687137966178398e-01,4.618707069562759393e-02 +6.850413524905996088e-01,5.539596916704837143e-02 +6.887530623730095947e-01,3.999502779167726785e-02 +6.868972074318044907e-01,4.769549847936285086e-02 +4.266888791462454256e-01,2.917336593316126672e-02 +4.094373237171300972e-01,2.782283228688171503e-02 +4.180623391312967563e-01,2.852889776782618209e-02 +3.585675494217792081e-01,2.866939208992943383e-02 +3.669193457145601966e-01,2.759634574294180659e-02 +4.582523859307281455e-01,7.782069851035086638e-02 +4.487007919157252056e-01,8.641371897332807139e-02 +4.495697684863846355e-01,7.796410176277673854e-02 +6.532321982577098396e-01,7.681473862992320434e-02 +6.496837164709512447e-01,6.596354568137154095e-02 +6.407436611563237516e-01,7.026423857922541039e-02 +6.442921429430825686e-01,8.111543152777705989e-02 +6.469879297070169066e-01,7.353948860457426573e-02 +6.193801052895520076e-01,7.886374995202787008e-02 +6.276304154711171979e-01,7.055066294827501416e-02 +6.200429586674982563e-01,6.253421078864290772e-02 +6.117926484859330660e-01,7.084729779239574976e-02 +6.197115319785251319e-01,7.069898037033538196e-02 +6.989145666985301375e-01,3.421765395701922841e-02 +6.824622462723712868e-01,3.020322475349302913e-02 +6.906776023926409769e-01,3.227654678565772262e-02 +6.590690293391430199e-01,5.942694531647164241e-02 +6.531654473153553075e-01,4.989574922873021845e-02 +6.437801344471634213e-01,5.643234959363006148e-02 +6.514245818931532206e-01,5.792964745505085195e-02 +6.651121207432550975e-01,6.891224299323868430e-02 +6.751097751980579265e-01,6.221065301295179706e-02 +6.690666837939459599e-01,5.272535533618475517e-02 +6.670894022686004732e-01,6.081879916471168851e-02 +6.370296409595781473e-01,1.899712802763294517e-01 +6.290645868138802221e-01,1.822355619911764646e-01 +6.394129577337177572e-01,1.835621933561089603e-01 +3.608161002376584214e-01,9.514063796151675523e-02 +7.069272423196958366e-01,3.622205915368556517e-02 +6.216781089543341743e-01,1.927333876924498812e-01 +6.229911053141770072e-01,2.006559535603907596e-01 +6.301303711562676879e-01,1.954282949908738576e-01 +6.350535976011820738e-01,6.353007047738250257e-02 +6.333204790262587647e-01,7.728483105011789422e-02 +6.341870383137204747e-01,7.040745076375021227e-02 +5.005215973399165241e-01,8.302172812726674178e-02 +5.023723522968613908e-01,6.540882603739052448e-02 +4.927445352512203058e-01,7.501537488076129301e-02 +5.014469748183889575e-01,7.421527708232862619e-02 +6.374159269912771375e-01,4.749642464174994722e-02 +6.286893901452957900e-01,5.459414552550229116e-02 +6.362347622962296612e-01,5.551324755956620755e-02 +6.142239576910759613e-01,3.670657301418797647e-02 +6.065215469442318819e-01,2.763081213402184683e-02 +5.976845264774113264e-01,3.607086164925493721e-02 +6.059542420842436439e-01,3.638871733172151929e-02 +3.634779039908865861e-01,6.394203314696880747e-02 +3.697215481580741203e-01,6.089156281151181238e-02 +6.660014519484245277e-01,2.598591505891641867e-02 +6.725118249102024492e-01,3.644323569279473568e-02 +6.742522789835898589e-01,2.803522914709595179e-02 +6.561673522625268706e-01,3.315905117293742321e-02 +6.493154964168745824e-01,2.281002243701232488e-02 +6.576766276599073091e-01,2.430349942090981319e-02 +6.813769499161023147e-01,7.096152788517386123e-02 +6.832091512033509062e-01,6.317874852611113368e-02 +6.445719404918287543e-01,1.061905230935116934e-01 +6.365451271890403273e-01,1.136058049236833845e-01 +6.428572525846280028e-01,1.132799095129697342e-01 +5.208178672137944165e-01,4.602707991215394118e-02 +5.116652373348051785e-01,5.558590144791296372e-02 +5.287828624671652156e-01,5.450169941279125324e-02 +5.202240499009851415e-01,5.504380043035211195e-02 +4.008863046834870714e-01,2.724890625944724476e-02 +6.627097949075305694e-01,4.298152033335186223e-02 +6.707892543520742601e-01,4.458429551448971073e-02 +7.215646351218281129e-01,1.528923920202763520e-01 +7.093198161550726688e-01,1.644729237925685039e-01 +7.189176944687314386e-01,1.618866406847168093e-01 +6.324878710098293944e-01,2.061678920094464282e-02 +6.155651369379042670e-01,1.916460510062821532e-02 +6.232078810578147721e-01,2.873752048944467480e-02 +6.240318789152941026e-01,1.985065284260066620e-02 +5.896714999834360427e-01,2.703210423593820425e-02 +5.808801137247703306e-01,3.580663301087570055e-02 +5.888931402187456143e-01,4.484539042419243005e-02 +5.892823201010908285e-01,3.593874733006531541e-02 +6.215493404733711813e-01,4.594048007927435673e-02 +6.305332638401098810e-01,3.797142755453108975e-02 +6.223786107655929767e-01,3.733900028435951229e-02 +5.383889882987287212e-01,2.689769399321702628e-02 +5.469710449047247014e-01,1.747229913961170777e-02 +5.297337826786124859e-01,1.775966889773955559e-02 +5.383587291834968092e-01,1.758316858288400120e-02 +5.379534963121836988e-01,4.526176056320201785e-02 +5.467461557866948318e-01,3.586469295589340966e-02 +5.295963288242176992e-01,3.629476160052566569e-02 +5.381712423054560990e-01,3.607972727820955156e-02 +7.265343090147607930e-01,1.444072963104618690e-01 +5.978536137545727991e-01,1.623545202671055621e-01 +3.973618000565643515e-01,1.063477192262131249e-01 +4.014535050820140505e-01,1.001892994544757443e-01 +6.397403415191845744e-01,3.054828298109692197e-02 +6.409172687229531817e-01,2.166019739837755573e-02 +5.124849949474293842e-01,1.880027964205210900e-02 +4.952607377260140886e-01,2.069161181720986439e-02 +5.039824639710834830e-01,2.908395772156866996e-02 +5.038676397792914985e-01,1.969710251976751134e-02 +7.041513695977125176e-01,7.921915238232210554e-02 +7.113812519584031824e-01,8.500886339332870689e-02 +7.120224732727431505e-01,7.763860497644192726e-02 +5.985257108047745689e-01,1.830083437643883690e-02 +6.070463481355651281e-01,1.870667298462948269e-02 +4.005593025869084167e-01,1.182614429338818135e-01 +3.936207216136100584e-01,1.137733833419217744e-01 +5.814128580796776857e-01,1.779097904901705274e-02 +5.899695772430442187e-01,1.802766531371094091e-02 +5.726597464687950279e-01,2.675352194429643157e-02 +5.638123357210519382e-01,3.573691324061301772e-02 +5.720327029770273519e-01,4.479002430719226241e-02 +5.723462247229111899e-01,3.577177312574434526e-02 +3.508344293709404482e-01,3.606562548220521719e-02 +3.417135006557435739e-01,2.803508619521359255e-02 +3.501270174114097800e-01,2.882770197575951904e-02 +3.250715766738797030e-01,2.362299694755305712e-02 +3.333664143520469469e-01,2.591589320640640473e-02 +3.166416578620364075e-01,2.091830302238581810e-02 +2.713770421313360104e-01,1.432818284666330377e-02 +2.647172065879762060e-01,1.913900669489654316e-02 +2.692396706312872867e-01,2.442735384830833564e-02 +2.755027392768266692e-01,1.998138666687624895e-02 +2.701332300019353982e-01,1.956995119129917651e-02 +5.212072870771808919e-01,2.763078384792339720e-02 +5.124288254667577203e-01,3.736310215955164493e-02 +5.210125771454877652e-01,3.682893188003866919e-02 +5.642004404949987340e-01,1.754058627376815782e-02 +5.728089983245711059e-01,1.765462364931174449e-02 +5.555362801587776511e-01,2.669843351329542411e-02 +5.552792457538733295e-01,3.580080309825319634e-02 +5.555919064656525963e-01,1.749012235435751933e-02 +5.373531249055454317e-01,5.421830813745917577e-02 +4.781919675894664712e-01,2.304721628562413430e-02 +4.610989274553256023e-01,2.600732178876130271e-02 +4.696265370839127762e-01,2.443218968641608715e-02 +4.079069807381660029e-01,1.217406733773121058e-01 +4.868663997888532657e-01,3.112442454293732133e-02 +4.867296384078835247e-01,2.183830650213782962e-02 +4.351626070542570779e-01,3.676875008445079640e-02 +4.347336937981147731e-01,4.500867620457537494e-02 +4.439893925385678952e-01,2.879319395813962831e-02 +4.525686783391676959e-01,2.751455384206122692e-02 +5.035981762357208957e-01,4.741598157250802997e-02 +5.029852642662910878e-01,5.641240380494927376e-02 +4.353517876518358531e-01,2.922628030389813267e-02 +6.466230046703517198e-01,4.007328006831577943e-02 +6.546663997889410336e-01,4.152740020083380695e-02 +3.210262669006518355e-01,5.903298511573188551e-02 +2.805073086714571784e-01,4.002431240939208212e-02 +2.850221695530301136e-01,5.094444155377032130e-02 +5.211104467293010689e-01,1.821240218263910082e-02 +4.951518147400466030e-01,3.913683713452505153e-02 +4.866436408265734093e-01,4.020406405891645274e-02 +5.799440518752702056e-01,5.357107628658574344e-02 +5.876997045048381052e-01,6.231914454197791386e-02 +5.882964223617919153e-01,5.358226748308517196e-02 +6.750826855348902589e-01,1.604043471532124177e-01 +6.783439256581960120e-01,1.698523681012439057e-01 +6.702324412985445345e-01,1.695129060040611313e-01 +3.840089884364474848e-01,4.380338171175986867e-02 +7.198223066224447297e-01,9.270096576748147743e-02 +7.254897147137202573e-01,8.875731187680123424e-02 +5.786256611061982857e-01,7.097005280187425325e-02 +5.862735027884879990e-01,7.949535102880368742e-02 +5.953475461871280405e-01,7.084444276890733416e-02 +5.869866036466631076e-01,7.090724778539081452e-02 +6.170427187888416487e-01,2.095618177404692806e-01 +5.766716496228431188e-01,8.786136425569661401e-02 +5.839841440543784845e-01,9.618373853399987683e-02 +5.851288234214333528e-01,8.783954478140178213e-02 +6.199188220604834321e-01,1.222089552480906532e-01 +6.277848812779609489e-01,1.178956092737119266e-01 +6.268885243093356152e-01,1.249813666253610234e-01 +6.885880259871051123e-01,1.524145547599338735e-01 +6.800818174433871377e-01,1.516495936122734256e-01 +6.879669102333272335e-01,7.950868332712450470e-02 +6.947154476523121902e-01,8.703112166959969809e-02 +6.960591399155198200e-01,7.936391785472328431e-02 +6.392385830060050012e-01,9.177996682236648496e-02 +6.339192397516695276e-01,1.024650073626098834e-01 +6.498912837461643388e-01,9.550548255326821168e-02 +6.419052617489169332e-01,9.898524495793906142e-02 +6.036834336961155456e-01,1.217088213670520364e-01 +6.118202018228685590e-01,1.221565888750347217e-01 +4.042220696251076495e-01,7.835902263242294774e-02 +4.137995038080360399e-01,7.820671129651293740e-02 +7.013823696922061313e-01,9.514674027047960447e-02 +6.929535325680282742e-01,9.534061823027575877e-02 +4.755626007596200910e-01,7.673538968431262153e-02 +4.832201702072302929e-01,8.467824882183953850e-02 +4.841535680054201984e-01,7.587538228253697115e-02 +6.712288396791241674e-01,7.858184175476938538e-02 +6.795978749562257004e-01,7.904526254094690341e-02 +6.035700973365305533e-01,7.084587028065153502e-02 +4.978824387399348739e-01,1.002591650502788756e-01 +4.874852034217213581e-01,1.097385841266161621e-01 +4.943511875281645374e-01,1.172201070136133227e-01 +5.047484228463781086e-01,1.077406879372760362e-01 +4.961168131340497056e-01,1.087396360319461130e-01 +5.709581794464386739e-01,6.247332433919151884e-02 +5.714954412117330129e-01,5.363167432319187328e-02 +4.732463173697915026e-01,9.409521538227792747e-02 +4.805751661991545243e-01,1.019290936804909259e-01 +4.905490190365933145e-01,9.251212712005252303e-02 +4.818976682031923531e-01,9.330367125116523219e-02 +5.974436387204973276e-01,1.129451071096348597e-01 +5.865266589431954447e-01,1.205057480571550960e-01 +5.950855367698038023e-01,1.212570210280456973e-01 +5.736848446984683658e-01,1.039935522560848646e-01 +5.804213563115743213e-01,1.121765263899385384e-01 +5.907206556674844400e-01,1.043667126678535506e-01 +5.822027501829765139e-01,1.041801324619692076e-01 +6.814519931092388738e-01,1.261062208421743214e-01 +5.177029617366936121e-01,1.219273255059681871e-01 +5.115485307582698926e-01,1.150833077833438578e-01 +5.006561700453150410e-01,1.246104599976756849e-01 +5.091869938981744559e-01,1.233114038942327989e-01 +5.078550170432580835e-01,9.076876605749310822e-02 +4.992020180399256990e-01,9.164044658877282257e-02 +6.385781342552308004e-01,3.902235381142345194e-02 +7.020412363036522274e-01,1.593473337226588571e-01 +6.925832045902533540e-01,1.705208045404531525e-01 +7.010565385248266335e-01,1.676951430816035760e-01 +6.308520605148152383e-01,1.101803083181609466e-01 +6.282669190891813082e-01,8.794936634470731929e-02 +6.193306848714226209e-01,8.795162328912121963e-02 +4.701135090559366292e-01,1.112619339310046279e-01 +4.770235462785034075e-01,1.190714243771298919e-01 +4.787993562388289659e-01,1.105002590288103881e-01 +5.037903201034021894e-01,3.824996964703836211e-02 +7.098234243562477896e-01,1.028388426446324444e-01 +7.106023381573254305e-01,9.392385301898054095e-02 +5.151916306796365808e-01,9.856020722375917475e-02 +5.219917385915283647e-01,1.059028270698270102e-01 +5.133700807189531812e-01,1.068217575035515232e-01 +4.834326725571501671e-01,1.269565159107228502e-01 +4.920548050167152243e-01,1.258255689916471520e-01 +6.347091381088281192e-01,1.603672922319528960e-01 +6.276597061273895273e-01,1.652000785986481590e-01 +6.421277306793589101e-01,1.549415362114084926e-01 +6.420751569842499951e-01,1.604611976519955963e-01 +7.108109760335359351e-01,1.261330704863250218e-01 +7.023923762797263937e-01,1.216917052069065447e-01 +7.022844163870778367e-01,1.297844102356484897e-01 +6.882815750638998642e-01,1.632321723777993838e-01 +6.854637171293443965e-01,1.701627461404544295e-01 +7.181668528080040748e-01,1.272625730682130085e-01 +4.560443832221996452e-01,9.490594254873332969e-02 +4.633149003613401540e-01,1.030370884703449147e-01 +4.659758002306510494e-01,8.596406946066632859e-02 +4.646453502959955739e-01,9.450057896550562164e-02 +5.694451152891588652e-01,1.191664894416430698e-01 +5.780017019804717382e-01,1.197173181864207292e-01 +6.362795310161319939e-01,8.453239893624218959e-02 +7.334311295003137499e-01,5.480112290040240614e-02 +7.374114364927726317e-01,4.672865955516175562e-02 +4.530017340206619059e-01,1.119049226515773099e-01 +4.598003427152583811e-01,1.201297681122370231e-01 +4.615576215382992675e-01,1.115834282912909758e-01 +4.669074933451741183e-01,7.727804409733174396e-02 +4.661517545802196238e-01,1.286488353493532022e-01 +4.747975773551175172e-01,1.278539198969288193e-01 +5.251425812638178536e-01,8.935945845778332786e-02 +5.164987991535379130e-01,9.006411225763823192e-02 +7.236912447117782587e-01,5.409395687079286003e-02 +7.168765322197481193e-01,5.250136327941034436e-02 +5.349015900794604761e-01,1.195935649420905855e-01 +5.287634537171530535e-01,1.132067195433155565e-01 +5.262901147412093472e-01,1.206790809422810390e-01 +4.427463518083881167e-01,1.198304590625703103e-01 +4.489476799165821319e-01,1.292898825498568216e-01 +4.403737465237071436e-01,1.288657961120373563e-01 +6.369613324140825927e-01,1.461804854126380337e-01 +6.302872246003135004e-01,1.472351245588670032e-01 +2.625105596673521502e-01,8.105850500547823190e-03 +2.689284844384851048e-01,6.669947790500554627e-03 +4.462656669903356521e-01,1.030775118923867723e-01 +4.360102847780619184e-01,1.110030483033797727e-01 +4.445060093993619121e-01,1.114539854774785343e-01 +2.580054552097997278e-01,1.179556767637047164e-02 +3.530499854098185786e-01,5.381930235867080081e-02 +3.549359077487860281e-01,6.458587259851603091e-02 +5.669523608091108224e-01,9.623236915117673596e-02 +5.565236784769145295e-01,1.040080048072479224e-01 +5.632561623662720729e-01,1.117691879121560511e-01 +5.651042615876913366e-01,1.040007785316663935e-01 +5.460077431460272912e-01,1.120411025971874419e-01 +5.497726755313420144e-01,9.654933395115249117e-02 +5.392567402004546651e-01,1.045824317410920107e-01 +5.478902093386845973e-01,1.042952182741699735e-01 +5.617918557777863420e-01,7.124847500279778145e-02 +5.694593374375460648e-01,7.974520346548051586e-02 +5.702087584419923694e-01,7.110926390233601735e-02 +5.324850250748299763e-01,9.727853926760346437e-02 +5.306242393959914594e-01,1.052426294054595174e-01 +5.597400486238135464e-01,8.811620836096065168e-02 +5.682058491233283881e-01,8.798878630832862591e-02 +5.521110471301349243e-01,1.187775127998392244e-01 +5.607854364876005970e-01,1.189207795375879922e-01 +5.434934665751141036e-01,1.190361966982297209e-01 +5.424044627076167746e-01,8.848463271313138090e-02 +5.337735219857173696e-01,8.892204558545736826e-02 +5.523718358000884177e-01,8.005150712293952753e-02 +5.531599211716201614e-01,7.138776183082688742e-02 +5.510722556657152715e-01,8.830042053704599547e-02 +4.575535206766184193e-01,1.290578171790114914e-01 +4.389220756838612125e-01,9.458528831698152783e-02 +4.474832294530304289e-01,9.474561543285742182e-02 +5.992243282703774154e-01,1.046761767907761764e-01 +6.207961495704346078e-01,5.423734543395865304e-02 +5.969423242476141755e-01,1.766462923534679597e-01 +7.266986291467159020e-01,5.943503462343223409e-02 +4.297459637007039479e-01,1.020693542838435469e-01 +4.306028337420390040e-01,9.421179061993843751e-02 +6.952899929545670599e-01,1.557785431991795255e-01 +3.951128372933366828e-01,7.598180389224264142e-02 +6.197719688331753130e-01,1.856355761925110592e-01 +2.821304638623568506e-01,3.199752398326102115e-02 +2.832374664314417645e-01,2.505210327898106659e-02 +2.748941328615366331e-01,3.263301252550201287e-02 +3.519422073903795134e-01,4.494246392043800553e-02 +6.467996302977210288e-01,1.461455353569185434e-01 +4.280278627282709802e-01,1.099169703237752593e-01 +7.061079003179870917e-01,1.122652739257694737e-01 +6.593489171935791315e-01,8.648433739145389154e-02 +6.622305189684171145e-01,7.769829019234626710e-02 +6.588789134335185649e-01,9.538981737060486799e-02 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri3/connectivity.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri3/connectivity.csv new file mode 100644 index 000000000..79e8a0c93 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri3/connectivity.csv @@ -0,0 +1,335 @@ +69,70,71 +70,72,71 +73,74,75 +56,55,57 +73,76,74 +55,54,57 +77,78,79 +80,69,71 +81,82,83 +81,21,82 +80,43,69 +84,85,86 +87,83,82 +85,88,86 +89,90,91 +90,92,91 +6,93,94 +94,95,6 +96,86,97 +86,98,97 +49,99,100 +101,102,103 +104,41,40 +101,19,102 +105,104,70 +104,106,70 +69,105,70 +69,42,105 +74,88,85 +49,48,99 +107,108,103 +107,72,108 +6,95,7 +109,110,73 +111,112,113 +112,110,113 +107,103,114 +115,106,116 +75,74,117 +74,76,88 +118,119,120 +119,2,120 +115,79,87 +121,98,91 +122,107,114 +123,44,124 +74,85,117 +76,125,88 +122,126,107 +114,103,102 +122,127,128 +122,129,127 +116,79,115 +108,82,101 +73,75,130 +75,13,130 +131,121,132 +131,133,121 +101,82,20 +134,135,109 +136,97,137 +97,133,137 +80,71,124 +71,126,124 +103,108,101 +136,96,97 +113,138,139 +113,135,138 +136,16,96 +140,123,128 +140,45,123 +17,16,136 +66,141,67 +142,67,141 +140,128,131 +128,127,131 +71,72,126 +136,137,143 +144,112,111 +132,121,145 +146,114,102 +146,129,114 +147,139,138 +147,51,139 +67,142,68 +84,117,85 +139,111,113 +139,50,111 +148,149,150 +148,151,149 +131,132,140 +132,46,140 +137,146,143 +146,18,143 +152,153,154 +152,155,153 +84,14,117 +156,157,158 +156,155,157 +95,159,7 +159,8,7 +160,161,162 +133,127,137 +160,61,161 +27,163,164 +164,163,30 +163,27,26 +165,160,162 +129,122,114 +162,166,165 +57,166,162 +84,15,14 +109,73,130 +149,152,150 +152,9,150 +0,167,1 +151,157,149 +167,120,1 +155,156,153 +95,168,148 +168,151,148 +147,138,158 +138,156,158 +169,147,158 +2,1,120 +169,158,157 +83,170,81 +171,172,169 +170,83,173 +174,175,176 +174,177,175 +141,178,176 +141,65,178 +168,119,179 +168,94,119 +118,180,179 +118,177,180 +179,119,118 +78,173,83 +78,83,79 +98,89,91 +98,88,89 +86,88,98 +0,68,167 +165,166,181 +166,53,181 +182,77,183 +182,37,77 +116,184,183 +185,24,186 +187,188,185 +188,25,185 +183,77,116 +116,77,79 +112,144,100 +125,112,100 +125,76,112 +189,34,190 +191,185,186 +163,26,188 +191,186,192 +191,192,36 +92,145,91 +186,23,173 +189,188,187 +163,190,193 +190,33,193 +145,121,91 +92,47,145 +163,188,189 +194,63,181 +163,189,190 +138,135,156 +178,195,196 +178,64,195 +31,193,32 +31,30,193 +29,164,30 +29,28,164 +135,134,156 +144,49,100 +184,116,106 +172,197,169 +198,109,130 +167,68,142 +12,198,130 +96,84,86 +96,15,84 +16,15,96 +191,187,185 +25,24,185 +198,134,109 +134,198,199 +11,199,198 +66,65,141 +97,98,133 +133,98,121 +192,186,173 +173,78,192 +24,23,186 +192,78,37 +26,25,188 +2,119,200 +34,33,190 +173,23,170 +200,94,93 +170,23,22 +200,3,2 +82,108,87 +115,87,108 +64,63,195 +194,196,195 +153,199,154 +199,153,134 +195,63,194 +199,10,154 +110,76,73 +112,76,110 +172,201,197 +197,201,52 +189,35,34 +142,175,202 +94,200,119 +196,194,201 +201,172,196 +197,147,169 +180,171,151 +177,171,180 +151,179,180 +81,22,21 +81,170,22 +5,4,93 +93,3,200 +37,36,192 +78,77,37 +93,4,3 +191,36,35 +196,176,178 +65,64,178 +123,124,128 +177,118,175 +142,176,175 +126,128,124 +128,126,122 +187,191,35 +35,189,187 +194,181,201 +53,201,181 +201,53,52 +184,104,40 +120,167,202 +141,176,142 +104,184,106 +40,39,183 +40,183,184 +72,115,108 +83,87,79 +165,63,62 +72,106,115 +52,147,197 +160,165,62 +62,61,160 +174,172,177 +70,106,72 +63,165,181 +174,176,196 +196,172,174 +162,58,57 +109,135,110 +113,110,135 +118,202,175 +60,59,161 +161,58,162 +161,59,58 +51,50,139 +82,21,20 +127,133,131 +6,5,93 +202,167,142 +127,129,137 +150,9,8 +48,47,92 +101,20,19 +104,105,41 +80,44,43 +61,60,161 +12,11,198 +166,54,53 +136,143,17 +57,54,166 +42,41,105 +11,10,199 +148,150,159 +10,9,154 +132,145,46 +182,38,37 +182,183,39 +39,38,182 +118,120,202 +140,46,45 +157,155,149 +33,32,193 +30,163,193 +159,95,148 +159,150,8 +143,18,17 +146,102,18 +146,137,129 +50,49,144 +145,47,46 +125,100,90 +164,28,27 +45,44,123 +90,89,125 +88,125,89 +48,92,99 +117,14,13 +19,18,102 +130,13,12 +90,100,99 +43,42,69 +172,171,177 +50,144,111 +75,117,13 +99,92,90 +171,157,151 +156,134,153 +44,80,124 +157,171,169 +126,72,107 +52,51,147 +168,95,94 +168,179,151 +152,149,155 +152,154,9 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri3/coords.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri3/coords.csv new file mode 100644 index 000000000..1e05a85d5 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri3/coords.csv @@ -0,0 +1,203 @@ +8.499999999999999778e-01,-1.668527987443783889e-01,0.000000000000000000e+00 +8.388696848457714017e-01,-1.996559017175401074e-01,0.000000000000000000e+00 +8.178591367875276408e-01,-2.267233422332198545e-01,0.000000000000000000e+00 +8.283620773893421996e-01,-2.598427872498533242e-01,0.000000000000000000e+00 +8.414857182944069924e-01,-2.910881695867054697e-01,0.000000000000000000e+00 +8.240356550485623544e-01,-3.165461775218003093e-01,0.000000000000000000e+00 +7.891414308990237769e-01,-3.208581369380377191e-01,0.000000000000000000e+00 +7.553829532049380902e-01,-3.309927171895079567e-01,0.000000000000000000e+00 +7.215329640873096029e-01,-3.409356259794719124e-01,0.000000000000000000e+00 +6.871434462271587273e-01,-3.487347018892242856e-01,0.000000000000000000e+00 +6.521740185730968697e-01,-3.534089952337923224e-01,0.000000000000000000e+00 +6.170074146773930623e-01,-3.562812295217408498e-01,0.000000000000000000e+00 +5.817630353304802382e-01,-3.579829201861076116e-01,0.000000000000000000e+00 +5.464899499409900940e-01,-3.589402166648937853e-01,0.000000000000000000e+00 +5.112069595040189540e-01,-3.594107726331145503e-01,0.000000000000000000e+00 +4.759236699512025548e-01,-3.590829996973644578e-01,0.000000000000000000e+00 +4.407157181601661922e-01,-3.568579114976468403e-01,0.000000000000000000e+00 +4.057017678668682348e-01,-3.524962194882691469e-01,0.000000000000000000e+00 +3.709036443441407482e-01,-3.466949452100465123e-01,0.000000000000000000e+00 +3.365699973233844955e-01,-3.385756007501413145e-01,0.000000000000000000e+00 +3.014370034489853301e-01,-3.372063340924692509e-01,0.000000000000000000e+00 +2.663771117207739403e-01,-3.411807188961095139e-01,0.000000000000000000e+00 +2.311533208180924504e-01,-3.430812909490787432e-01,0.000000000000000000e+00 +1.960476725969332035e-01,-3.405181526542002124e-01,0.000000000000000000e+00 +1.611655622594119486e-01,-3.375127817594079649e-01,0.000000000000000000e+00 +1.275694751456353526e-01,-3.481356243621548385e-01,0.000000000000000000e+00 +9.433093075569078112e-02,-3.599816093773605674e-01,0.000000000000000000e+00 +6.040388711986006964e-02,-3.694798008976930004e-01,0.000000000000000000e+00 +2.540230895129227257e-02,-3.737067692381675355e-01,0.000000000000000000e+00 +1.106898013811787908e-03,-3.582019655387180257e-01,0.000000000000000000e+00 +2.408777893252487742e-02,-3.318382563517169870e-01,0.000000000000000000e+00 +3.193760007282173477e-03,-3.265099275691479841e-01,0.000000000000000000e+00 +1.236603939789768757e-02,-2.945657689879196406e-01,0.000000000000000000e+00 +4.293986422939086167e-02,-2.777391760285153333e-01,0.000000000000000000e+00 +7.607462252725959162e-02,-2.659239280587611942e-01,0.000000000000000000e+00 +1.107644732622781181e-01,-2.595090706060392827e-01,0.000000000000000000e+00 +1.447423630820221796e-01,-2.500224306639559635e-01,0.000000000000000000e+00 +1.795719918296569961e-01,-2.454824942772903806e-01,0.000000000000000000e+00 +1.743612472012981696e-01,-2.124893243722602298e-01,0.000000000000000000e+00 +2.010630934889912069e-01,-1.904540191003235572e-01,0.000000000000000000e+00 +2.317171610125914882e-01,-1.737342189265779491e-01,0.000000000000000000e+00 +2.607536185829003594e-01,-1.538949155656577361e-01,0.000000000000000000e+00 +2.940763151705499956e-01,-1.426348129735220682e-01,0.000000000000000000e+00 +3.291214641164118548e-01,-1.388899297243487152e-01,0.000000000000000000e+00 +3.643731712317016536e-01,-1.400655971282975254e-01,0.000000000000000000e+00 +3.994425450231295915e-01,-1.439325040043609449e-01,0.000000000000000000e+00 +4.342752577201836606e-01,-1.495513139093492261e-01,0.000000000000000000e+00 +4.688957426630356862e-01,-1.563703819147777008e-01,0.000000000000000000e+00 +5.039787986616739435e-01,-1.596872803620297820e-01,0.000000000000000000e+00 +5.392438608532230671e-01,-1.586809138236638939e-01,0.000000000000000000e+00 +5.742533623239579610e-01,-1.543981216613158070e-01,0.000000000000000000e+00 +6.094514384703288989e-01,-1.531171884008434014e-01,0.000000000000000000e+00 +6.403943793200004286e-01,-1.464064401772994795e-01,0.000000000000000000e+00 +6.270747323726311162e-01,-1.194754845764691847e-01,0.000000000000000000e+00 +5.933945819971490065e-01,-1.100559960590702935e-01,0.000000000000000000e+00 +5.589207661760556833e-01,-1.056637101644807841e-01,0.000000000000000000e+00 +5.500060852009147627e-01,-7.958533114376097062e-02,0.000000000000000000e+00 +5.838605453139483759e-01,-7.152219900392151053e-02,0.000000000000000000e+00 +5.806154020853639963e-01,-4.637798526425535722e-02,0.000000000000000000e+00 +5.751657569083507004e-01,-1.289142590184938833e-02,0.000000000000000000e+00 +6.052024470730229533e-01,-8.773735002594817110e-04,0.000000000000000000e+00 +6.371433407512544500e-01,-1.512188267451856395e-02,0.000000000000000000e+00 +6.627818137016644462e-01,-3.927944775331330962e-02,0.000000000000000000e+00 +6.865551557130938898e-01,-6.514469188841776059e-02,0.000000000000000000e+00 +7.209905041373574353e-01,-7.158722452925093960e-02,0.000000000000000000e+00 +7.561836479215844342e-01,-7.413953900746693415e-02,0.000000000000000000e+00 +7.901878751462189099e-01,-8.155812403504748842e-02,0.000000000000000000e+00 +8.148770374823697260e-01,-1.063060762177017587e-01,0.000000000000000000e+00 +8.317290239785759542e-01,-1.372480050916743410e-01,0.000000000000000000e+00 +3.139133670167065238e-01,-1.705584179954202084e-01,3.028840424502716377e-18 +2.982078703673373132e-01,-2.002838240395143354e-01,7.143736501551046785e-18 +3.290467177990498149e-01,-1.982090114537446712e-01,5.415297326539919758e-18 +3.114586771944021781e-01,-2.358516411256936229e-01,1.051470067305824747e-17 +5.599635144025792988e-01,-2.941872131120613632e-01,5.054927560057379347e-18 +5.275023315683753378e-01,-2.902900128331921681e-01,6.188168131933674720e-18 +5.449416241488075352e-01,-3.189746312721895571e-01,8.579554362526186920e-18 +5.433909520016346750e-01,-2.631733205091065231e-01,2.358734906727521588e-18 +2.097816472062399851e-01,-2.448622724981209531e-01,1.645826426793869603e-17 +2.070923752243798432e-01,-2.714973966626410551e-01,1.959376912706941513e-17 +2.410880859816907362e-01,-2.631131632430676048e-01,1.700047909721221145e-17 +3.388012147049490053e-01,-1.665519195343119485e-01,1.370817151822680535e-18 +2.501457796522823518e-01,-3.226399753855370700e-01,2.327787623215830482e-17 +2.774669805909508180e-01,-3.084234929838491901e-01,2.034996747095037284e-17 +2.382924675446038143e-01,-2.952835813586667246e-01,2.076567419657555945e-17 +4.889948771548041084e-01,-3.291084012380384172e-01,1.243391125695001484e-17 +5.019502579218402261e-01,-3.028560674088048854e-01,8.844136473636450827e-18 +4.721275094517289883e-01,-2.954168274273475947e-01,9.449885969439394464e-18 +2.665504806548387173e-01,-2.789973915075015798e-01,1.755884952264666724e-17 +5.023237166332007453e-01,-2.720546388922477909e-01,5.350771285288576943e-18 +4.894626492661928729e-01,-2.422691517520201010e-01,2.613331396961546794e-18 +4.975845766877365350e-01,-2.122831199174526617e-01,-1.163497568486023446e-18 +4.701251206363021296e-01,-2.218522155333320645e-01,1.246754419734908248e-18 +4.826650631499715405e-01,-1.872927109206926066e-01,-3.260172535375497141e-18 +8.108639718311535516e-01,-2.878457505167597019e-01,-7.818320072782480038e-18 +7.808909217484235610e-01,-2.786669412607847285e-01,-7.401559901652997759e-18 +7.544492871982009241e-01,-2.992557903566868682e-01,-3.797289379865180414e-18 +4.548225240137818148e-01,-3.249144503087804114e-01,1.361658728033193531e-17 +4.360761496920868008e-01,-2.907436663432716450e-01,1.066954362928424715e-17 +4.610725264208159757e-01,-2.581897142129507827e-01,5.785304575178889988e-18 +5.105715825486561998e-01,-1.837645077651104963e-01,-5.010504819654106069e-18 +5.293856144271293918e-01,-2.008785140964745031e-01,-3.991224556768153651e-18 +3.165480573426537880e-01,-3.100958550916619871e-01,1.864492575630523215e-17 +3.482241403384719880e-01,-3.102208145331121214e-01,1.712411333997217442e-17 +3.333350919452822692e-01,-2.850291125052830665e-01,1.500325061597044902e-17 +2.664365911428954736e-01,-1.881000137662900418e-01,7.308583766099946568e-18 +2.877303388970454678e-01,-1.747775456698926755e-01,4.773614141118085369e-18 +2.731698007172213005e-01,-2.200078559171869119e-01,1.058241947338643897e-17 +3.367470126598861579e-01,-2.578217580244318019e-01,1.176816504851632661e-17 +3.034014102917957367e-01,-2.756009138818077409e-01,1.538996498674684627e-17 +5.891202342525893032e-01,-2.932059922124620743e-01,3.531386304628483366e-18 +5.750522280725616220e-01,-2.619477096551071083e-01,6.862576120670303302e-19 +5.751427559027959546e-01,-1.971546426176665756e-01,-6.628611982492025531e-18 +5.554151301117628003e-01,-2.273821729852692208e-01,-2.262163933908629426e-18 +5.900764589896799750e-01,-2.268260617595745932e-01,-4.004474800611690342e-18 +3.564649262732022539e-01,-2.785951912863879887e-01,1.315653281749681092e-17 +2.729950203634922690e-01,-2.514454212472406747e-01,1.413793155873695764e-17 +2.423016673410048338e-01,-2.351015618081868930e-01,1.378117559937136370e-17 +5.201810000363999986e-01,-3.265966836775583970e-01,1.063934915028515847e-17 +7.609313737771352670e-01,-2.029685024300308949e-01,-1.497530657679098522e-17 +7.795061367157112286e-01,-2.388287449581639188e-01,-1.182932873139073748e-17 +7.997404271333173886e-01,-2.029171373678904100e-01,-1.686165197183017664e-17 +4.416240515570649117e-01,-2.272745360435618756e-01,3.239606274094839332e-18 +3.661188208605942185e-01,-2.455389437973939937e-01,8.959063319517395246e-18 +3.819555834696700125e-01,-1.724485238498071893e-01,-5.498843841289816790e-20 +3.575513539508776706e-01,-1.850366420611682661e-01,2.547848821223661256e-18 +5.188103916693047601e-01,-2.354614970595013124e-01,4.231480215245402572e-19 +3.494652658679935353e-01,-2.220111175488180821e-01,7.111434420429951541e-18 +3.944812067645662723e-01,-2.488222033461215954e-01,7.955166196707015269e-18 +3.816661709222488597e-01,-2.109336831643645327e-01,4.301245424341630952e-18 +3.788413670347141604e-01,-2.706263369014609288e-01,1.117313812209331137e-17 +5.705713247956926137e-01,-3.248590300732420166e-01,8.001555309580220297e-18 +4.130650677964428641e-01,-2.225615268952704784e-01,4.091713810848627408e-18 +4.300634329487478258e-01,-1.942176060967486240e-01,7.004032885271647483e-20 +4.236977185216557196e-01,-2.563467425548977552e-01,7.388416951138970199e-18 +6.206206736179391559e-01,-2.927224082954685835e-01,1.950424128516997302e-18 +6.092139339150942634e-01,-2.579166472462081083e-01,-1.423915652486659223e-18 +4.226701384267919082e-01,-3.221466758388156215e-01,1.486229566860941633e-17 +4.034980954517423668e-01,-2.869259867633421335e-01,1.181741955230215181e-17 +6.218708561061112583e-01,-2.217362390661770377e-01,-6.119394607606119021e-18 +6.012806833823423069e-01,-1.894679836502928816e-01,-8.762435477958618562e-18 +4.067446762687835227e-01,-1.822741929429006202e-01,-1.475682977475289217e-19 +7.708452798040285048e-01,-1.067838738215904082e-01,-2.630803478841339702e-17 +7.867656608718001099e-01,-1.447873220489772628e-01,-2.279162098234502358e-17 +3.952065753761063172e-01,-3.209418206315836630e-01,1.605714155367350552e-17 +5.546881447062366188e-01,-1.876988730318800980e-01,-6.704330744576548764e-18 +4.546081114012640589e-01,-1.894264606926608085e-01,-1.659884447606739271e-18 +3.755231248030629354e-01,-3.023341825543222061e-01,1.491146652621034244e-17 +6.368892297445641892e-01,-1.835756487511441826e-01,-1.115272149751480338e-17 +7.222009023651211335e-01,-2.857120847527848673e-01,-3.762757755114003382e-18 +6.949472802666847304e-01,-2.759289701432785513e-01,-3.545954146161891453e-18 +7.056343159578271074e-01,-3.115775486290567886e-01,-4.164649907765622242e-20 +7.171272946592329722e-01,-2.460670290174443164e-01,-7.989987540859630471e-18 +6.779378543339303897e-01,-3.045500426055536836e-01,5.075258162529027286e-19 +6.503078082481190680e-01,-2.960319553736950882e-01,8.853003243658956695e-19 +6.606840793099773013e-01,-3.251879886745606130e-01,3.672124563260362478e-18 +6.689101959938161812e-01,-2.698390909235071633e-01,-2.971398697079590953e-18 +6.427706588702780666e-01,-2.561038522426405395e-01,-3.254490631650163731e-18 +6.778731178789746403e-01,-2.378280251750329310e-01,-7.017460153670630599e-18 +6.505980263318914547e-01,-2.166525996183945868e-01,-8.084989763591028504e-18 +7.300434472336070346e-01,-3.136038671350033225e-01,-9.958011860404109069e-19 +6.326982441151283165e-01,-3.841988763246853567e-02,-2.732729943947221310e-17 +6.069426402587914104e-01,-2.809419387800177192e-02,-2.724430272570849881e-17 +6.108306506196273800e-01,-5.487660829465901280e-02,-2.441089130265881514e-17 +6.414040419402514126e-02,-3.303699970396012375e-01,3.316320544395292922e-17 +3.502825544230286914e-02,-3.527193578131793683e-01,3.709551497764474962e-17 +6.443697603892978298e-01,-6.260889150338047604e-02,-2.516365904128296894e-17 +6.193800138225392660e-01,-8.527411104565696398e-02,-2.139546882520105251e-17 +8.163449369604168782e-01,-1.708774482458092769e-01,-2.128122737521194395e-17 +7.490360683635863825e-01,-2.657009945398191020e-01,-7.320909948892127672e-18 +6.705469208000607306e-01,-1.958726164752164212e-01,-1.139621028434013159e-17 +2.235624598952196118e-01,-3.206332075293419903e-01,2.433959029542022588e-17 +7.023917900355525212e-01,-2.078394211047618345e-01,-1.158910781033274291e-17 +6.936938586599877832e-01,-1.658159809617358316e-01,-1.590906439371992949e-17 +2.021730588641862392e-01,-3.016430372992272013e-01,2.323341921436720703e-17 +7.238017860934012893e-01,-1.537198193095964949e-01,-1.873277619904107450e-17 +7.546134044685702813e-01,-1.666781297413049978e-01,-1.876373624792582062e-17 +7.459851711522440532e-01,-1.329801690865480557e-01,-2.214772157044232901e-17 +7.255147070948074761e-01,-1.859312069464618411e-01,-1.518142651760294898e-17 +7.341754883053054348e-01,-1.007321349050008252e-01,-2.521395251451554382e-17 +7.473067876103435259e-01,-2.340102711636561639e-01,-1.081272130067547265e-17 +7.295948411202526351e-01,-2.155216680526801931e-01,-1.204049797180319712e-17 +6.539726843637331255e-01,-9.265860240576706541e-02,-2.223852912273855129e-17 +1.971502434684582750e-01,-2.224220250387564657e-01,1.453844561276694354e-17 +2.215090949662605335e-01,-2.120793033084794332e-01,1.219115117942749096e-17 +2.470407572802774121e-01,-2.059017224789106981e-01,1.025697167641772306e-17 +1.366699772895475506e-01,-3.204375732063994842e-01,2.852802074656424552e-17 +1.718045754391210878e-01,-3.095354736211162194e-01,2.559545802475975342e-17 +1.162337576696828439e-01,-2.973698771149103082e-01,2.691560208768787780e-17 +1.028273409342717465e-01,-3.246195766418650264e-01,3.063976342733956680e-17 +8.860572456929496910e-02,-2.956301168528416290e-01,2.805806525537982395e-17 +6.159374882825280340e-02,-2.959882516558725030e-01,2.940737810734705294e-17 +1.419770244437587869e-01,-2.859123760853157226e-01,2.437544526446368803e-17 +1.716469999199011220e-01,-2.785998312994731330e-01,2.211268178644966814e-17 +3.472026593156224417e-02,-3.095018962721289846e-01,3.223429213147027850e-17 +6.836900203592348735e-01,-1.012166832512201853e-01,-2.271293393854705204e-17 +7.055884853375676835e-01,-9.248939428869329404e-02,-2.475874039435828990e-17 +7.057094073703586989e-01,-1.251797346928184285e-01,-2.107620869041312994e-17 +6.618355007162933790e-01,-1.635240249493758735e-01,-1.462391782492875732e-17 +6.011495913322628670e-01,-3.258632065231108488e-01,6.633139653080405144e-18 +6.311618164705177225e-01,-3.272127948409033760e-01,5.331124555745420998e-18 +8.023486354828659461e-01,-2.595122302552411719e-01,-1.060251601239826521e-17 +6.666243690114216358e-01,-1.306109929804046554e-01,-1.856948654780089801e-17 +7.849312937133420265e-01,-1.784488846225782410e-01,-1.890476163795789412e-17 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri3/uvs.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri3/uvs.csv new file mode 100644 index 000000000..072809bd0 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri3/uvs.csv @@ -0,0 +1,203 @@ +7.500000000000000000e-01,1.218374669377126907e-01 +7.434442186370777694e-01,1.025163634345678254e-01 +7.310689572472250930e-01,8.657357838168601438e-02 +7.372552135480717750e-01,6.706614868344566716e-02 +7.449850683874850166e-01,4.866254623706808141e-02 +7.347069407851896106e-01,3.366772069570736492e-02 +7.141541620737740237e-01,3.112796662882394774e-02 +6.942703406508530239e-01,2.515867542610480262e-02 +6.743326187878597722e-01,1.930227915742259437e-02 +6.540771132479463734e-01,1.470860541245719473e-02 +6.334800394984704264e-01,1.195543582394751649e-02 +6.127668284867286985e-01,1.026368318676136766e-02 +5.920078075543815377e-01,9.261383450560631975e-03 +5.712318786965782103e-01,8.697533610959892400e-03 +5.504501157429046998e-01,8.420375057592108942e-03 +5.296681766093065402e-01,8.613434074671638338e-03 +5.089306115916035766e-01,9.924016169467491169e-03 +4.883073139046660294e-01,1.249306284870924273e-02 +4.678111386846595110e-01,1.591002681310544828e-02 +4.475885411983420714e-01,2.069233947468088891e-02 +4.268951265668666228e-01,2.149884070226086227e-02 +4.062447692685328127e-01,1.915791886278470080e-02 +3.854978749774453650e-01,1.803847752881556493e-02 +3.648205669989607047e-01,1.954817191134821872e-02 +3.442749233508345386e-01,2.131834231782252231e-02 +3.244867503552179566e-01,1.506146346117249318e-02 +3.049091708506990184e-01,8.084150895262123132e-03 +2.849260636983083073e-01,2.489694126730758461e-03 +2.643100532214454068e-01,0.000000000000000000e+00 +2.500000000000000000e-01,9.132365231365596747e-03 +2.635357920007500576e-01,2.466065090438900043e-02 +2.512291665396901297e-01,2.779904887823405821e-02 +2.566316603101983507e-01,4.661423214835803269e-02 +2.746397138330496923e-01,5.652513431026420787e-02 +2.941561630893471113e-01,6.348434268532907043e-02 +3.145885653870294507e-01,6.726270855831874285e-02 +3.346016210593188434e-01,7.285036142055019426e-02 +3.551163529296465504e-01,7.552439445017625208e-02 +3.520472122945259574e-01,9.495744781569115389e-02 +3.677746615017450926e-01,1.079362935739967694e-01 +3.858299781557960051e-01,1.177842945382086698e-01 +4.029325188068927921e-01,1.294696900930208117e-01 +4.225596641504485440e-01,1.361019165569831157e-01 +4.432013379158881161e-01,1.383076614501924650e-01 +4.639646749207536613e-01,1.376151906307229167e-01 +4.846206171762477144e-01,1.353375735391151302e-01 +5.051371654999146088e-01,1.320280815124737495e-01 +5.255287111856135063e-01,1.280116346892673784e-01 +5.461927122927923151e-01,1.260579738340363576e-01 +5.669639154684560367e-01,1.266507260521962663e-01 +5.875845927886167441e-01,1.291733005390942324e-01 +6.083163410287759643e-01,1.299277731914667000e-01 +6.265418047398564338e-01,1.338804194126708424e-01 +6.186965018882931711e-01,1.497428145351066830e-01 +5.988588154371490280e-01,1.552909150529220295e-01 +5.785536582033150577e-01,1.578779816012970127e-01 +5.733028904951766869e-01,1.732382071466002094e-01 +5.932432457848021423e-01,1.779874106216748908e-01 +5.913318489192889160e-01,1.927974106563289936e-01 +5.881219953085913277e-01,2.125210715531228034e-01 +6.058136752706467787e-01,2.195973761982425443e-01 +6.246269355053559735e-01,2.112073273564445131e-01 +6.397280553580340090e-01,1.969784656645116039e-01 +6.537306087748340211e-01,1.817437770596763702e-01 +6.740131086229856905e-01,1.779491104368946808e-01 +6.947419516904367320e-01,1.764457913074046203e-01 +7.147705201551076692e-01,1.720762275718629997e-01 +7.293124938608572805e-01,1.574996265105806370e-01 +7.392383528746583332e-01,1.392747588555269533e-01 +4.342437335578586133e-01,1.196548486301945713e-01 +4.249931597149197993e-01,1.021465157349546182e-01 +4.431573121621229516e-01,1.033685851456466881e-01 +4.327979155764419827e-01,8.119698922628121318e-02 +5.791678393199266583e-01,4.683720243458874832e-02 +5.600481275692638095e-01,4.913266241049782379e-02 +5.703199112247256952e-01,3.223735582131546928e-02 +5.694065617443584415e-01,6.510445689241767253e-02 +3.729099098014719282e-01,7.588970651227115727e-02 +3.713259223856430480e-01,6.020155678988511200e-02 +3.913494746313673778e-01,6.513988966121869728e-02 +4.489027333954185295e-01,1.220146854881770937e-01 +3.966844771478202913e-01,3.007845966302912649e-02 +4.127767276766229898e-01,3.845200067097525459e-02 +3.897028489075006763e-01,4.619143900216118870e-02 +5.373671478773133225e-01,2.626854187870097251e-02 +5.449978971063528244e-01,4.173122720846152850e-02 +5.274322292970998749e-01,4.611295675959783263e-02 +4.063468839715850267e-01,5.578404248371835600e-02 +5.452178651509079765e-01,5.987333982811281208e-02 +5.376426667325697739e-01,7.741706062790340570e-02 +5.424265007645230341e-01,9.507890271638777535e-02 +5.262528176546081848e-01,8.944268327162481491e-02 +5.336388727917799057e-01,1.097983114018212109e-01 +7.269487889127156377e-01,5.057233856684396900e-02 +7.092945931060817832e-01,5.597867844314816099e-02 +6.937204092139308553e-01,4.385179871722647699e-02 +5.172395528591255953e-01,2.873878867387768751e-02 +5.061978950356413876e-01,4.886545944405950442e-02 +5.209208187290040870e-01,6.803981252464945395e-02 +5.500758772469879210e-01,1.118764312188671034e-01 +5.611573855278617629e-01,1.017962419162790066e-01 +4.357955722521434372e-01,3.746697552240241952e-02 +4.544528583825787615e-01,3.739337412243948222e-02 +4.456831744504362591e-01,5.223134486863063863e-02 +4.062798027856990846e-01,1.093228081590050388e-01 +4.188218694512946816e-01,1.171697726738693129e-01 +4.102456787944520622e-01,9.052901535032226166e-02 +4.476928036408613365e-01,6.825653957052724152e-02 +4.280521667396599561e-01,5.778457565906573723e-02 +5.963412147318548628e-01,4.741514381336982276e-02 +5.880551265617941503e-01,6.582634451945328091e-02 +5.881084476631334157e-01,1.039896108281567477e-01 +5.764888304552213683e-01,8.618552554528771670e-02 +5.969044333131187097e-01,8.651307634314052419e-02 +4.593067003536401849e-01,5.602093934397823355e-02 +4.101427327619538987e-01,7.201221667655635650e-02 +3.920642768582170978e-01,8.163878767873165854e-02 +5.557358463675169391e-01,2.774794932977063880e-02 +6.975383731977162771e-01,1.005652339550490437e-01 +7.084789515197192911e-01,7.944346818487761641e-02 +7.203969953642641588e-01,1.005954880954233188e-01 +5.094656220627532539e-01,8.624892395284664004e-02 +4.649928665887081980e-01,7.549114555230469759e-02 +4.743207563854457964e-01,1.185415719113917937e-01 +4.599466087679820459e-01,1.111271411768810780e-01 +5.549285548699842696e-01,8.142678498341451854e-02 +4.551838841893720566e-01,8.934908961706794495e-02 +4.816983774696491638e-01,7.355729808608921227e-02 +4.741502917257942595e-01,9.587372408431432680e-02 +4.724864757041271623e-01,6.071461300340721262e-02 +5.854158641703429700e-01,2.877143132076027260e-02 +4.926443145896441944e-01,8.902489723927350940e-02 +5.026563909703647415e-01,1.057195321304067320e-01 +4.989069704531063909e-01,6.912532709282120935e-02 +6.148950463577963488e-01,4.769997585868980539e-02 +6.081764502965514296e-01,6.820064959948476946e-02 +4.983017234011162255e-01,3.036901423672471942e-02 +4.870093457565153328e-01,5.111408154441415136e-02 +6.156314067341777108e-01,8.951099367895624936e-02 +6.035037473883817505e-01,1.085170707341148177e-01 +4.889215893649537792e-01,1.127542300952644599e-01 +7.033776867718856129e-01,1.572182026170593494e-01 +7.127548280341493570e-01,1.348340837342054954e-01 +4.821256212591457091e-01,3.107867673982016993e-02 +5.760606343703283949e-01,1.095590809791465725e-01 +5.171132633345576490e-01,1.085415278521753429e-01 +4.705320233567777399e-01,4.203861859452746180e-02 +6.244772635348241341e-01,1.119876696147996675e-01 +6.747260359779916339e-01,5.182907263558750310e-02 +6.586735895423508902e-01,5.759134976248155707e-02 +6.649682782765020672e-01,3.659425460269649655e-02 +6.717376693073134897e-01,7.518010213658207763e-02 +6.486549983363694150e-01,4.073347190052856864e-02 +6.323808373017443252e-01,4.575064497681372716e-02 +6.384924849506534716e-01,2.857767394391923232e-02 +6.433376866990196952e-01,6.117830270480295596e-02 +6.279414388897380794e-01,6.926839004838587777e-02 +6.486168684147077812e-01,8.003289445114693257e-02 +6.325517764241692653e-01,9.250526906880690570e-02 +6.793453130401660989e-01,3.540074831715508269e-02 +6.220087633080995104e-01,1.974847485632850730e-01 +6.068386530809840584e-01,2.035666060611887318e-01 +6.091287001739214002e-01,1.877917020397086578e-01 +2.871268808950923068e-01,2.552545903434105465e-02 +2.699797579631192379e-01,1.236163385936527546e-02 +6.288833133821083443e-01,1.832373693500979339e-01 +6.141642948694776560e-01,1.698875026299857260e-01 +7.301770900477109194e-01,1.194669390750087434e-01 +6.905320108031363091e-01,6.361565104348422539e-02 +6.443017213945632093e-01,1.047447271905412175e-01 +3.810268403412160332e-01,3.126045057065917482e-02 +6.630584230104574761e-01,9.769625159240864776e-02 +6.579353213176684090e-01,1.224481550091651993e-01 +3.684284336743531840e-01,4.244570474794177178e-02 +6.756689601957373004e-01,1.295728221927230916e-01 +6.938170746656735499e-01,1.219403473844171831e-01 +6.887350252909416604e-01,1.417885241312375477e-01 +6.766778746264225930e-01,1.106002403909042975e-01 +6.817790947860835615e-01,1.607826908326132898e-01 +6.895134604407897605e-01,8.228156039179612691e-02 +6.790810830020701516e-01,9.317139037611185670e-02 +6.345394578082834691e-01,1.655380201434203946e-01 +3.654699837918085614e-01,8.910706415533609093e-02 +3.798174036499797346e-01,9.519895117036647481e-02 +3.948556117908395002e-01,9.883756056365451681e-02 +3.298469671614444598e-01,3.137567963924553505e-02 +3.505413267147072798e-01,3.779704150434680388e-02 +3.178099865498401622e-01,4.496260597750696697e-02 +3.099135760924789373e-01,2.891246994553925420e-02 +3.015370111682841858e-01,4.598732879478401037e-02 +2.856268949959173686e-01,4.577638656766912229e-02 +3.329728302069764334e-01,5.171110057758501050e-02 +3.504485143695184046e-01,5.601820636554179222e-02 +2.697983514291162899e-01,3.781681864054255854e-02 +6.520430374262418116e-01,1.604972907362491874e-01 +6.649412839351933613e-01,1.656376841156436686e-01 +6.650125072921202474e-01,1.463829980264068353e-01 +6.391706748214522893e-01,1.237981224002285552e-01 +6.034265338677554658e-01,2.817996906978937829e-02 +6.211038038726796051e-01,2.738505842990147932e-02 +7.219332361132148046e-01,6.726084751763264369e-02 +6.419913293207782923e-01,1.431839743360985295e-01 +7.116743815361356029e-01,1.150073455413507528e-01 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri6/connectivity.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri6/connectivity.csv new file mode 100644 index 000000000..a523c94ed --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri6/connectivity.csv @@ -0,0 +1,335 @@ +138,139,140,274,273,272 +139,141,140,276,275,273 +142,143,144,279,278,277 +56,55,57,124,280,125 +142,145,143,282,281,279 +55,54,57,123,283,280 +146,147,148,286,285,284 +149,138,140,288,272,287 +150,151,152,291,290,289 +150,21,151,293,292,291 +149,43,138,295,294,288 +153,154,155,298,297,296 +156,152,151,300,290,299 +154,157,155,302,301,297 +158,159,160,305,304,303 +159,161,160,307,306,304 +6,162,163,310,309,308 +163,164,6,312,311,308 +165,155,166,315,314,313 +155,167,166,317,316,314 +49,168,169,320,319,318 +170,171,172,323,322,321 +173,41,40,325,109,324 +170,19,171,327,326,323 +174,173,139,330,329,328 +173,175,139,332,331,329 +138,174,139,333,328,274 +138,42,174,335,334,333 +143,157,154,337,302,336 +49,48,168,117,338,320 +176,177,172,341,340,339 +176,141,177,343,342,341 +6,164,7,311,344,75 +178,179,142,347,346,345 +180,181,182,350,349,348 +181,179,182,352,351,349 +176,172,183,339,354,353 +184,175,185,357,356,355 +144,143,186,278,359,358 +143,145,157,281,360,337 +187,188,189,363,362,361 +188,2,189,365,364,362 +184,148,156,368,367,366 +190,167,160,371,370,369 +191,176,183,373,353,372 +192,44,193,376,375,374 +143,154,186,336,377,359 +145,194,157,379,378,360 +191,195,176,381,380,373 +183,172,171,354,322,382 +191,196,197,385,384,383 +191,198,196,387,386,385 +185,148,184,388,368,355 +177,151,170,391,390,389 +142,144,199,277,393,392 +144,13,199,395,394,393 +200,190,201,398,397,396 +200,202,190,400,399,398 +170,151,20,390,402,401 +203,204,178,405,404,403 +205,166,206,408,407,406 +166,202,206,410,409,407 +149,140,193,287,412,411 +140,195,193,414,413,412 +172,177,170,340,389,321 +205,165,166,415,313,408 +182,207,208,418,417,416 +182,204,207,420,419,418 +205,16,165,422,421,415 +209,192,197,425,424,423 +209,45,192,427,426,425 +17,16,205,85,422,428 +66,210,67,430,429,135 +211,67,210,432,429,431 +209,197,200,423,434,433 +197,196,200,384,435,434 +140,141,195,275,436,414 +205,206,212,406,438,437 +213,181,180,440,350,439 +201,190,214,397,442,441 +215,183,171,444,382,443 +215,198,183,446,445,444 +216,208,207,448,417,447 +216,51,208,450,449,448 +67,211,68,432,451,136 +153,186,154,452,377,298 +208,180,182,453,348,416 +208,50,180,455,454,453 +217,218,219,458,457,456 +217,220,218,460,459,458 +200,201,209,396,461,433 +201,46,209,463,462,461 +206,215,212,465,464,438 +215,18,212,467,466,464 +221,222,223,470,469,468 +221,224,222,472,471,470 +153,14,186,474,473,452 +225,226,227,477,476,475 +225,224,226,479,478,477 +164,228,7,481,480,344 +228,8,7,482,76,480 +229,230,231,485,484,483 +202,196,206,487,486,409 +229,61,230,489,488,485 +27,232,233,492,491,490 +233,232,30,491,494,493 +232,27,26,492,95,495 +234,229,231,497,483,496 +198,191,183,387,372,445 +231,235,234,499,498,496 +57,235,231,501,499,500 +153,15,14,502,83,474 +178,142,199,345,392,503 +218,221,219,505,504,457 +221,9,219,507,506,504 +0,236,1,509,508,69 +220,226,218,511,510,459 +236,189,1,513,512,508 +224,225,222,479,514,471 +164,237,217,517,516,515 +237,220,217,518,460,516 +216,207,227,447,520,519 +207,225,227,521,475,520 +238,216,227,523,519,522 +2,1,189,70,512,364 +238,227,226,522,476,524 +152,239,150,526,525,289 +240,241,238,529,528,527 +239,152,242,526,531,530 +243,244,245,534,533,532 +243,246,244,536,535,534 +210,247,245,539,538,537 +210,65,247,541,540,539 +237,188,248,544,543,542 +237,163,188,546,545,544 +187,249,248,549,548,547 +187,246,249,551,550,549 +248,188,187,543,363,547 +147,242,152,553,531,552 +147,152,148,552,554,285 +167,158,160,555,303,370 +167,157,158,557,556,555 +155,157,167,301,557,317 +0,68,236,137,558,509 +234,235,250,498,560,559 +235,53,250,562,561,560 +251,146,252,565,564,563 +251,37,146,567,566,565 +185,253,252,570,569,568 +254,24,255,573,572,571 +256,257,254,576,575,574 +257,25,254,578,577,575 +252,146,185,564,579,568 +185,146,148,579,284,388 +181,213,169,440,581,580 +194,181,169,583,580,582 +194,145,181,379,584,583 +258,34,259,587,586,585 +260,254,255,589,571,588 +232,26,257,495,591,590 +260,255,261,588,593,592 +260,261,36,592,595,594 +161,214,160,597,596,306 +255,23,242,600,599,598 +258,257,256,602,576,601 +232,259,262,605,604,603 +259,33,262,607,606,604 +214,190,160,442,369,596 +161,47,214,609,608,597 +232,257,258,590,602,610 +263,63,250,613,612,611 +232,258,259,610,585,605 +207,204,225,419,614,521 +247,264,265,617,616,615 +247,64,264,619,618,617 +31,262,32,621,620,100 +31,30,262,99,622,621 +29,233,30,623,493,98 +29,28,233,97,624,623 +204,203,225,405,625,614 +213,49,169,626,318,581 +253,185,175,570,356,627 +241,266,238,629,628,528 +267,178,199,631,503,630 +236,68,211,558,451,632 +12,267,199,634,630,633 +165,153,155,635,296,315 +165,15,153,636,502,635 +16,15,165,84,636,421 +260,256,254,637,574,589 +25,24,254,93,573,577 +267,203,178,638,403,631 +203,267,268,638,640,639 +11,268,267,642,640,641 +66,65,210,134,541,430 +166,167,202,316,643,410 +202,167,190,643,371,399 +261,255,242,593,598,644 +242,147,261,553,645,644 +24,23,255,92,600,572 +261,147,37,645,647,646 +26,25,257,94,578,591 +2,188,269,365,649,648 +34,33,259,102,607,586 +242,23,239,599,650,530 +269,163,162,652,309,651 +239,23,22,650,91,653 +269,3,2,654,71,648 +151,177,156,391,655,299 +184,156,177,366,655,656 +64,63,264,132,657,618 +263,265,264,659,616,658 +222,268,223,661,660,469 +268,222,203,661,662,639 +264,63,263,657,613,658 +268,10,223,664,663,660 +179,145,142,665,282,346 +181,145,179,584,665,352 +241,270,266,667,666,629 +266,270,52,666,669,668 +258,35,34,670,103,587 +211,244,271,673,672,671 +163,269,188,652,649,545 +265,263,270,659,675,674 +270,241,265,667,676,674 +266,216,238,677,523,628 +249,240,220,680,679,678 +246,240,249,681,680,550 +220,248,249,682,548,678 +150,22,21,683,90,293 +150,239,22,525,653,683 +5,4,162,73,685,684 +162,3,269,686,654,651 +37,36,261,105,595,646 +147,146,37,286,566,647 +162,4,3,685,72,686 +260,36,35,594,104,687 +265,245,247,688,538,615 +65,64,247,133,619,540 +192,193,197,374,689,424 +246,187,244,551,690,535 +211,245,244,691,533,673 +195,197,193,692,689,413 +197,195,191,692,381,383 +256,260,35,637,687,693 +35,258,256,670,601,693 +263,250,270,611,694,675 +53,270,250,695,694,561 +270,53,52,695,121,669 +253,173,40,697,324,696 +189,236,271,513,699,698 +210,245,211,537,691,431 +173,253,175,697,627,332 +40,39,252,108,701,700 +40,252,253,700,569,696 +141,184,177,702,656,342 +152,156,148,300,367,554 +234,63,62,704,131,703 +141,175,184,705,357,702 +52,216,266,706,677,668 +229,234,62,497,703,707 +62,61,229,130,489,707 +243,241,246,709,708,536 +139,175,141,331,705,276 +63,234,250,704,559,612 +243,245,265,532,688,710 +265,241,243,676,709,710 +231,58,57,711,126,500 +178,204,179,404,712,347 +182,179,204,351,712,420 +187,271,244,713,672,690 +60,59,230,128,715,714 +230,58,231,716,711,484 +230,59,58,715,127,716 +51,50,208,119,455,449 +151,21,20,292,89,402 +196,202,200,487,400,435 +6,5,162,74,684,310 +271,236,211,699,632,671 +196,198,206,386,717,486 +219,9,8,506,77,718 +48,47,161,116,609,719 +170,20,19,401,88,327 +173,174,41,330,720,325 +149,44,43,721,112,295 +61,60,230,129,714,488 +12,11,267,80,641,634 +235,54,53,722,122,562 +205,212,17,437,723,428 +57,54,235,283,722,501 +42,41,174,110,720,334 +11,10,268,79,664,642 +217,219,228,456,725,724 +10,9,223,78,726,663 +201,214,46,441,727,463 +251,38,37,728,106,567 +251,252,39,563,701,729 +39,38,251,107,728,729 +187,189,271,361,698,713 +209,46,45,462,114,427 +226,224,218,478,730,510 +33,32,262,101,620,606 +30,232,262,494,603,622 +228,164,217,481,515,724 +228,219,8,725,718,482 +212,18,17,466,86,723 +215,171,18,443,731,467 +215,206,198,465,717,446 +50,49,213,118,626,732 +214,47,46,608,115,727 +194,169,159,582,734,733 +233,28,27,624,96,490 +45,44,192,113,376,426 +159,158,194,305,735,733 +157,194,158,378,735,556 +48,161,168,719,736,338 +186,14,13,473,82,737 +19,18,171,87,731,326 +199,13,12,394,81,633 +159,169,168,734,319,738 +43,42,138,111,335,294 +241,240,246,529,681,708 +50,213,180,732,439,454 +144,186,13,358,737,395 +168,161,159,736,307,738 +240,226,220,739,511,679 +225,203,222,625,662,514 +44,149,193,721,411,375 +226,240,238,739,527,524 +195,141,176,436,343,380 +52,51,216,120,450,706 +237,164,163,517,312,546 +237,248,220,542,682,518 +221,218,224,505,730,472 +221,223,9,468,726,507 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri6/coords.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri6/coords.csv new file mode 100644 index 000000000..927e7a1a4 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri6/coords.csv @@ -0,0 +1,740 @@ +8.499999999999999778e-01,-1.668527987443783889e-01,0.000000000000000000e+00 +8.388696848457714017e-01,-1.996559017175401074e-01,0.000000000000000000e+00 +8.178591367875276408e-01,-2.267233422332198545e-01,0.000000000000000000e+00 +8.283620773893421996e-01,-2.598427872498533242e-01,0.000000000000000000e+00 +8.414857182944069924e-01,-2.910881695867054697e-01,0.000000000000000000e+00 +8.240356550485623544e-01,-3.165461775218003093e-01,0.000000000000000000e+00 +7.891414308990237769e-01,-3.208581369380377191e-01,0.000000000000000000e+00 +7.553829532049380902e-01,-3.309927171895079567e-01,0.000000000000000000e+00 +7.215329640873096029e-01,-3.409356259794719124e-01,0.000000000000000000e+00 +6.871434462271587273e-01,-3.487347018892242856e-01,0.000000000000000000e+00 +6.521740185730968697e-01,-3.534089952337923224e-01,0.000000000000000000e+00 +6.170074146773930623e-01,-3.562812295217408498e-01,0.000000000000000000e+00 +5.817630353304802382e-01,-3.579829201861076116e-01,0.000000000000000000e+00 +5.464899499409900940e-01,-3.589402166648937853e-01,0.000000000000000000e+00 +5.112069595040189540e-01,-3.594107726331145503e-01,0.000000000000000000e+00 +4.759236699512025548e-01,-3.590829996973644578e-01,0.000000000000000000e+00 +4.407157181601661922e-01,-3.568579114976468403e-01,0.000000000000000000e+00 +4.057017678668682348e-01,-3.524962194882691469e-01,0.000000000000000000e+00 +3.709036443441407482e-01,-3.466949452100465123e-01,0.000000000000000000e+00 +3.365699973233844955e-01,-3.385756007501413145e-01,0.000000000000000000e+00 +3.014370034489853301e-01,-3.372063340924692509e-01,0.000000000000000000e+00 +2.663771117207739403e-01,-3.411807188961095139e-01,0.000000000000000000e+00 +2.311533208180924504e-01,-3.430812909490787432e-01,0.000000000000000000e+00 +1.960476725969332035e-01,-3.405181526542002124e-01,0.000000000000000000e+00 +1.611655622594119486e-01,-3.375127817594079649e-01,0.000000000000000000e+00 +1.275694751456353526e-01,-3.481356243621548385e-01,0.000000000000000000e+00 +9.433093075569078112e-02,-3.599816093773605674e-01,0.000000000000000000e+00 +6.040388711986006964e-02,-3.694798008976930004e-01,0.000000000000000000e+00 +2.540230895129227257e-02,-3.737067692381675355e-01,0.000000000000000000e+00 +1.106898013811787908e-03,-3.582019655387180257e-01,0.000000000000000000e+00 +2.408777893252487742e-02,-3.318382563517169870e-01,0.000000000000000000e+00 +3.193760007282173477e-03,-3.265099275691479841e-01,0.000000000000000000e+00 +1.236603939789768757e-02,-2.945657689879196406e-01,0.000000000000000000e+00 +4.293986422939086167e-02,-2.777391760285153333e-01,0.000000000000000000e+00 +7.607462252725959162e-02,-2.659239280587611942e-01,0.000000000000000000e+00 +1.107644732622781181e-01,-2.595090706060392827e-01,0.000000000000000000e+00 +1.447423630820221796e-01,-2.500224306639559635e-01,0.000000000000000000e+00 +1.795719918296569961e-01,-2.454824942772903806e-01,0.000000000000000000e+00 +1.743612472012981696e-01,-2.124893243722602298e-01,0.000000000000000000e+00 +2.010630934889912069e-01,-1.904540191003235572e-01,0.000000000000000000e+00 +2.317171610125914882e-01,-1.737342189265779491e-01,0.000000000000000000e+00 +2.607536185829003594e-01,-1.538949155656577361e-01,0.000000000000000000e+00 +2.940763151705499956e-01,-1.426348129735220682e-01,0.000000000000000000e+00 +3.291214641164118548e-01,-1.388899297243487152e-01,0.000000000000000000e+00 +3.643731712317016536e-01,-1.400655971282975254e-01,0.000000000000000000e+00 +3.994425450231295915e-01,-1.439325040043609449e-01,0.000000000000000000e+00 +4.342752577201836606e-01,-1.495513139093492261e-01,0.000000000000000000e+00 +4.688957426630356862e-01,-1.563703819147777008e-01,0.000000000000000000e+00 +5.039787986616739435e-01,-1.596872803620297820e-01,0.000000000000000000e+00 +5.392438608532230671e-01,-1.586809138236638939e-01,0.000000000000000000e+00 +5.742533623239579610e-01,-1.543981216613158070e-01,0.000000000000000000e+00 +6.094514384703288989e-01,-1.531171884008434014e-01,0.000000000000000000e+00 +6.403943793200004286e-01,-1.464064401772994795e-01,0.000000000000000000e+00 +6.270747323726311162e-01,-1.194754845764691847e-01,0.000000000000000000e+00 +5.933945819971490065e-01,-1.100559960590702935e-01,0.000000000000000000e+00 +5.589207661760556833e-01,-1.056637101644807841e-01,0.000000000000000000e+00 +5.500060852009147627e-01,-7.958533114376097062e-02,0.000000000000000000e+00 +5.838605453139483759e-01,-7.152219900392151053e-02,0.000000000000000000e+00 +5.806154020853639963e-01,-4.637798526425535722e-02,0.000000000000000000e+00 +5.751657569083507004e-01,-1.289142590184938833e-02,0.000000000000000000e+00 +6.052024470730229533e-01,-8.773735002594817110e-04,0.000000000000000000e+00 +6.371433407512544500e-01,-1.512188267451856395e-02,0.000000000000000000e+00 +6.627818137016644462e-01,-3.927944775331330962e-02,0.000000000000000000e+00 +6.865551557130938898e-01,-6.514469188841776059e-02,0.000000000000000000e+00 +7.209905041373574353e-01,-7.158722452925093960e-02,0.000000000000000000e+00 +7.561836479215844342e-01,-7.413953900746693415e-02,0.000000000000000000e+00 +7.901878751462189099e-01,-8.155812403504748842e-02,0.000000000000000000e+00 +8.148770374823697260e-01,-1.063060762177017587e-01,0.000000000000000000e+00 +8.317290239785759542e-01,-1.372480050916743410e-01,0.000000000000000000e+00 +8.449434317642082748e-01,-1.833400051544099851e-01,0.000000000000000000e+00 +8.280175098681838985e-01,-2.134783944335917338e-01,0.000000000000000000e+00 +8.247662028685498470e-01,-2.427564050103154236e-01,0.000000000000000000e+00 +8.313842228133111467e-01,-2.769587691561298248e-01,0.000000000000000000e+00 +8.346760469551194328e-01,-3.046839066302101107e-01,0.000000000000000000e+00 +8.064510585064386117e-01,-3.176010056066796428e-01,0.000000000000000000e+00 +7.725033274084786017e-01,-3.266471638260032284e-01,0.000000000000000000e+00 +7.383737271449370976e-01,-3.357262536924206509e-01,0.000000000000000000e+00 +7.044754204001646425e-01,-3.453715055476006546e-01,0.000000000000000000e+00 +6.696685206834006587e-01,-3.513505869122774405e-01,0.000000000000000000e+00 +6.346039369353353443e-01,-3.550351020527067192e-01,0.000000000000000000e+00 +5.994456330337886163e-01,-3.572415597257618813e-01,0.000000000000000000e+00 +5.641254218014890576e-01,-3.585341398013573433e-01,0.000000000000000000e+00 +5.288818640371319990e-01,-3.592416378636574814e-01,0.000000000000000000e+00 +4.935706824141279370e-01,-3.593927139743889332e-01,0.000000000000000000e+00 +4.583070810598971478e-01,-3.583011555865115438e-01,0.000000000000000000e+00 +4.231964418716221421e-01,-3.548219726110337646e-01,0.000000000000000000e+00 +3.882755802334480477e-01,-3.499217445105551327e-01,0.000000000000000000e+00 +3.537192895307637031e-01,-3.425659358851329550e-01,0.000000000000000000e+00 +3.190235738178256453e-01,-3.366447333346099802e-01,0.000000000000000000e+00 +2.838656531296191998e-01,-3.391497291032737338e-01,0.000000000000000000e+00 +2.487994068887882937e-01,-3.425192242547492882e-01,0.000000000000000000e+00 +2.134579960610908100e-01,-3.427689820128505538e-01,0.000000000000000000e+00 +1.787332913388103572e-01,-3.371155952489384711e-01,0.000000000000000000e+00 +1.441534302529496048e-01,-3.421580295121011139e-01,0.000000000000000000e+00 +1.109330475436759722e-01,-3.540745826336829105e-01,0.000000000000000000e+00 +7.763789478697202817e-02,-3.655668155997633395e-01,0.000000000000000000e+00 +4.294862952592044814e-02,-3.722056941059278534e-01,0.000000000000000000e+00 +1.154828133519909990e-02,-3.679353534731076847e-01,0.000000000000000000e+00 +1.099223146725172157e-02,-3.436178224281732363e-01,0.000000000000000000e+00 +1.936634759429573319e-02,-3.276505545414035159e-01,0.000000000000000000e+00 +4.473031870898896978e-03,-3.102730738479947403e-01,0.000000000000000000e+00 +2.675259513542259035e-02,-2.847903842396999341e-01,0.000000000000000000e+00 +5.911115224633094883e-02,-2.706842229757384644e-01,0.000000000000000000e+00 +9.344426160641705614e-02,-2.630172255282156035e-01,0.000000000000000000e+00 +1.278323483360918333e-01,-2.550809872434984804e-01,0.000000000000000000e+00 +1.619847500175155552e-01,-2.463670700582867579e-01,0.000000000000000000e+00 +1.862485702400961673e-01,-2.403524202014693800e-01,0.000000000000000000e+00 +1.858613321586645994e-01,-1.992961107929520637e-01,0.000000000000000000e+00 +2.175067749209966816e-01,-1.841076172416708234e-01,0.000000000000000000e+00 +2.455820880681594265e-01,-1.627853492449230222e-01,0.000000000000000000e+00 +2.770160157229956122e-01,-1.471311913300333007e-01,0.000000000000000000e+00 +3.114860250271507258e-01,-1.400146663733807251e-01,0.000000000000000000e+00 +3.467590485167331704e-01,-1.390281556714563493e-01,0.000000000000000000e+00 +3.819221769115888065e-01,-1.417547342862853499e-01,0.000000000000000000e+00 +4.169104720033235956e-01,-1.465349542156443585e-01,0.000000000000000000e+00 +4.516015254987663097e-01,-1.529833661291095381e-01,0.000000000000000000e+00 +4.863402224109120708e-01,-1.588361538503893500e-01,0.000000000000000000e+00 +5.216227695059885150e-01,-1.594763853744915194e-01,0.000000000000000000e+00 +5.568001488048619496e-01,-1.569868391078324266e-01,0.000000000000000000e+00 +5.917994395553876075e-01,-1.528262286682545157e-01,0.000000000000000000e+00 +6.269217425528148535e-01,-1.554105315243215490e-01,0.000000000000000000e+00 +6.401816480686742805e-01,-1.289494080049383984e-01,0.000000000000000000e+00 +6.097428160460971469e-01,-1.166974220954752478e-01,0.000000000000000000e+00 +5.764980707494433698e-01,-1.050619451479928579e-01,0.000000000000000000e+00 +5.459534007897528518e-01,-9.564363722383369126e-02,0.000000000000000000e+00 +5.663724685764621736e-01,-7.339043598663703982e-02,0.000000000000000000e+00 +5.889529036641325543e-01,-6.191821036813885404e-02,0.000000000000000000e+00 +5.738228824011417650e-01,-3.021012242195973696e-02,0.000000000000000000e+00 +5.877722469067685473e-01,-1.462737018328729354e-03,0.000000000000000000e+00 +6.220060368007688245e-01,-6.201080289672873669e-03,0.000000000000000000e+00 +6.505507007755285676e-01,-2.657755553277622862e-02,0.000000000000000000e+00 +6.740563564375966488e-01,-5.285392585873672361e-02,0.000000000000000000e+00 +7.034935050621435870e-01,-6.981473978101619682e-02,0.000000000000000000e+00 +7.385839342877904556e-01,-7.296304853395581269e-02,0.000000000000000000e+00 +7.737483476788969972e-01,-7.543262998818504872e-02,0.000000000000000000e+00 +8.039365148593423660e-01,-9.254674382596669857e-02,0.000000000000000000e+00 +8.240750878803891899e-01,-1.213907859204662321e-01,0.000000000000000000e+00 +8.423595568008100942e-01,-1.512816693917364841e-01,0.000000000000000000e+00 +3.139133670167065238e-01,-1.705584179954202084e-01,3.028840424502716377e-18 +2.982078703673373132e-01,-2.002838240395143354e-01,7.143736501551046785e-18 +3.290467177990498149e-01,-1.982090114537446712e-01,5.415297326539919758e-18 +3.114586771944021781e-01,-2.358516411256936229e-01,1.051470067305824747e-17 +5.599635144025792988e-01,-2.941872131120613632e-01,5.054927560057379347e-18 +5.275023315683753378e-01,-2.902900128331921681e-01,6.188168131933674720e-18 +5.449416241488075352e-01,-3.189746312721895571e-01,8.579554362526186920e-18 +5.433909520016346750e-01,-2.631733205091065231e-01,2.358734906727521588e-18 +2.097816472062399851e-01,-2.448622724981209531e-01,1.645826426793869603e-17 +2.070923752243798432e-01,-2.714973966626410551e-01,1.959376912706941513e-17 +2.410880859816907362e-01,-2.631131632430676048e-01,1.700047909721221145e-17 +3.388012147049490053e-01,-1.665519195343119485e-01,1.370817151822680535e-18 +2.501457796522823518e-01,-3.226399753855370700e-01,2.327787623215830482e-17 +2.774669805909508180e-01,-3.084234929838491901e-01,2.034996747095037284e-17 +2.382924675446038143e-01,-2.952835813586667246e-01,2.076567419657555945e-17 +4.889948771548041084e-01,-3.291084012380384172e-01,1.243391125695001484e-17 +5.019502579218402261e-01,-3.028560674088048854e-01,8.844136473636450827e-18 +4.721275094517289883e-01,-2.954168274273475947e-01,9.449885969439394464e-18 +2.665504806548387173e-01,-2.789973915075015798e-01,1.755884952264666724e-17 +5.023237166332007453e-01,-2.720546388922477909e-01,5.350771285288576943e-18 +4.894626492661928729e-01,-2.422691517520201010e-01,2.613331396961546794e-18 +4.975845766877365350e-01,-2.122831199174526617e-01,-1.163497568486023446e-18 +4.701251206363021296e-01,-2.218522155333320645e-01,1.246754419734908248e-18 +4.826650631499715405e-01,-1.872927109206926066e-01,-3.260172535375497141e-18 +8.108639718311535516e-01,-2.878457505167597019e-01,-7.818320072782480038e-18 +7.808909217484235610e-01,-2.786669412607847285e-01,-7.401559901652997759e-18 +7.544492871982009241e-01,-2.992557903566868682e-01,-3.797289379865180414e-18 +4.548225240137818148e-01,-3.249144503087804114e-01,1.361658728033193531e-17 +4.360761496920868008e-01,-2.907436663432716450e-01,1.066954362928424715e-17 +4.610725264208159757e-01,-2.581897142129507827e-01,5.785304575178889988e-18 +5.105715825486561998e-01,-1.837645077651104963e-01,-5.010504819654106069e-18 +5.293856144271293918e-01,-2.008785140964745031e-01,-3.991224556768153651e-18 +3.165480573426537880e-01,-3.100958550916619871e-01,1.864492575630523215e-17 +3.482241403384719880e-01,-3.102208145331121214e-01,1.712411333997217442e-17 +3.333350919452822692e-01,-2.850291125052830665e-01,1.500325061597044902e-17 +2.664365911428954736e-01,-1.881000137662900418e-01,7.308583766099946568e-18 +2.877303388970454678e-01,-1.747775456698926755e-01,4.773614141118085369e-18 +2.731698007172213005e-01,-2.200078559171869119e-01,1.058241947338643897e-17 +3.367470126598861579e-01,-2.578217580244318019e-01,1.176816504851632661e-17 +3.034014102917957367e-01,-2.756009138818077409e-01,1.538996498674684627e-17 +5.891202342525893032e-01,-2.932059922124620743e-01,3.531386304628483366e-18 +5.750522280725616220e-01,-2.619477096551071083e-01,6.862576120670303302e-19 +5.751427559027959546e-01,-1.971546426176665756e-01,-6.628611982492025531e-18 +5.554151301117628003e-01,-2.273821729852692208e-01,-2.262163933908629426e-18 +5.900764589896799750e-01,-2.268260617595745932e-01,-4.004474800611690342e-18 +3.564649262732022539e-01,-2.785951912863879887e-01,1.315653281749681092e-17 +2.729950203634922690e-01,-2.514454212472406747e-01,1.413793155873695764e-17 +2.423016673410048338e-01,-2.351015618081868930e-01,1.378117559937136370e-17 +5.201810000363999986e-01,-3.265966836775583970e-01,1.063934915028515847e-17 +7.609313737771352670e-01,-2.029685024300308949e-01,-1.497530657679098522e-17 +7.795061367157112286e-01,-2.388287449581639188e-01,-1.182932873139073748e-17 +7.997404271333173886e-01,-2.029171373678904100e-01,-1.686165197183017664e-17 +4.416240515570649117e-01,-2.272745360435618756e-01,3.239606274094839332e-18 +3.661188208605942185e-01,-2.455389437973939937e-01,8.959063319517395246e-18 +3.819555834696700125e-01,-1.724485238498071893e-01,-5.498843841289816790e-20 +3.575513539508776706e-01,-1.850366420611682661e-01,2.547848821223661256e-18 +5.188103916693047601e-01,-2.354614970595013124e-01,4.231480215245402572e-19 +3.494652658679935353e-01,-2.220111175488180821e-01,7.111434420429951541e-18 +3.944812067645662723e-01,-2.488222033461215954e-01,7.955166196707015269e-18 +3.816661709222488597e-01,-2.109336831643645327e-01,4.301245424341630952e-18 +3.788413670347141604e-01,-2.706263369014609288e-01,1.117313812209331137e-17 +5.705713247956926137e-01,-3.248590300732420166e-01,8.001555309580220297e-18 +4.130650677964428641e-01,-2.225615268952704784e-01,4.091713810848627408e-18 +4.300634329487478258e-01,-1.942176060967486240e-01,7.004032885271647483e-20 +4.236977185216557196e-01,-2.563467425548977552e-01,7.388416951138970199e-18 +6.206206736179391559e-01,-2.927224082954685835e-01,1.950424128516997302e-18 +6.092139339150942634e-01,-2.579166472462081083e-01,-1.423915652486659223e-18 +4.226701384267919082e-01,-3.221466758388156215e-01,1.486229566860941633e-17 +4.034980954517423668e-01,-2.869259867633421335e-01,1.181741955230215181e-17 +6.218708561061112583e-01,-2.217362390661770377e-01,-6.119394607606119021e-18 +6.012806833823423069e-01,-1.894679836502928816e-01,-8.762435477958618562e-18 +4.067446762687835227e-01,-1.822741929429006202e-01,-1.475682977475289217e-19 +7.708452798040285048e-01,-1.067838738215904082e-01,-2.630803478841339702e-17 +7.867656608718001099e-01,-1.447873220489772628e-01,-2.279162098234502358e-17 +3.952065753761063172e-01,-3.209418206315836630e-01,1.605714155367350552e-17 +5.546881447062366188e-01,-1.876988730318800980e-01,-6.704330744576548764e-18 +4.546081114012640589e-01,-1.894264606926608085e-01,-1.659884447606739271e-18 +3.755231248030629354e-01,-3.023341825543222061e-01,1.491146652621034244e-17 +6.368892297445641892e-01,-1.835756487511441826e-01,-1.115272149751480338e-17 +7.222009023651211335e-01,-2.857120847527848673e-01,-3.762757755114003382e-18 +6.949472802666847304e-01,-2.759289701432785513e-01,-3.545954146161891453e-18 +7.056343159578271074e-01,-3.115775486290567886e-01,-4.164649907765622242e-20 +7.171272946592329722e-01,-2.460670290174443164e-01,-7.989987540859630471e-18 +6.779378543339303897e-01,-3.045500426055536836e-01,5.075258162529027286e-19 +6.503078082481190680e-01,-2.960319553736950882e-01,8.853003243658956695e-19 +6.606840793099773013e-01,-3.251879886745606130e-01,3.672124563260362478e-18 +6.689101959938161812e-01,-2.698390909235071633e-01,-2.971398697079590953e-18 +6.427706588702780666e-01,-2.561038522426405395e-01,-3.254490631650163731e-18 +6.778731178789746403e-01,-2.378280251750329310e-01,-7.017460153670630599e-18 +6.505980263318914547e-01,-2.166525996183945868e-01,-8.084989763591028504e-18 +7.300434472336070346e-01,-3.136038671350033225e-01,-9.958011860404109069e-19 +6.326982441151283165e-01,-3.841988763246853567e-02,-2.732729943947221310e-17 +6.069426402587914104e-01,-2.809419387800177192e-02,-2.724430272570849881e-17 +6.108306506196273800e-01,-5.487660829465901280e-02,-2.441089130265881514e-17 +6.414040419402514126e-02,-3.303699970396012375e-01,3.316320544395292922e-17 +3.502825544230286914e-02,-3.527193578131793683e-01,3.709551497764474962e-17 +6.443697603892978298e-01,-6.260889150338047604e-02,-2.516365904128296894e-17 +6.193800138225392660e-01,-8.527411104565696398e-02,-2.139546882520105251e-17 +8.163449369604168782e-01,-1.708774482458092769e-01,-2.128122737521194395e-17 +7.490360683635863825e-01,-2.657009945398191020e-01,-7.320909948892127672e-18 +6.705469208000607306e-01,-1.958726164752164212e-01,-1.139621028434013159e-17 +2.235624598952196118e-01,-3.206332075293419903e-01,2.433959029542022588e-17 +7.023917900355525212e-01,-2.078394211047618345e-01,-1.158910781033274291e-17 +6.936938586599877832e-01,-1.658159809617358316e-01,-1.590906439371992949e-17 +2.021730588641862392e-01,-3.016430372992272013e-01,2.323341921436720703e-17 +7.238017860934012893e-01,-1.537198193095964949e-01,-1.873277619904107450e-17 +7.546134044685702813e-01,-1.666781297413049978e-01,-1.876373624792582062e-17 +7.459851711522440532e-01,-1.329801690865480557e-01,-2.214772157044232901e-17 +7.255147070948074761e-01,-1.859312069464618411e-01,-1.518142651760294898e-17 +7.341754883053054348e-01,-1.007321349050008252e-01,-2.521395251451554382e-17 +7.473067876103435259e-01,-2.340102711636561639e-01,-1.081272130067547265e-17 +7.295948411202526351e-01,-2.155216680526801931e-01,-1.204049797180319712e-17 +6.539726843637331255e-01,-9.265860240576706541e-02,-2.223852912273855129e-17 +1.971502434684582750e-01,-2.224220250387564657e-01,1.453844561276694354e-17 +2.215090949662605335e-01,-2.120793033084794332e-01,1.219115117942749096e-17 +2.470407572802774121e-01,-2.059017224789106981e-01,1.025697167641772306e-17 +1.366699772895475506e-01,-3.204375732063994842e-01,2.852802074656424552e-17 +1.718045754391210878e-01,-3.095354736211162194e-01,2.559545802475975342e-17 +1.162337576696828439e-01,-2.973698771149103082e-01,2.691560208768787780e-17 +1.028273409342717465e-01,-3.246195766418650264e-01,3.063976342733956680e-17 +8.860572456929496910e-02,-2.956301168528416290e-01,2.805806525537982395e-17 +6.159374882825280340e-02,-2.959882516558725030e-01,2.940737810734705294e-17 +1.419770244437587869e-01,-2.859123760853157226e-01,2.437544526446368803e-17 +1.716469999199011220e-01,-2.785998312994731330e-01,2.211268178644966814e-17 +3.472026593156224417e-02,-3.095018962721289846e-01,3.223429213147027850e-17 +6.836900203592348735e-01,-1.012166832512201853e-01,-2.271293393854705204e-17 +7.055884853375676835e-01,-9.248939428869329404e-02,-2.475874039435828990e-17 +7.057094073703586989e-01,-1.251797346928184285e-01,-2.107620869041312994e-17 +6.618355007162933790e-01,-1.635240249493758735e-01,-1.462391782492875732e-17 +6.011495913322628670e-01,-3.258632065231108488e-01,6.633139653080405144e-18 +6.311618164705177225e-01,-3.272127948409033760e-01,5.331124555745420998e-18 +8.023486354828659461e-01,-2.595122302552411719e-01,-1.060251601239826521e-17 +6.666243690114216358e-01,-1.306109929804046554e-01,-1.856948654780089801e-17 +7.849312937133420265e-01,-1.784488846225782410e-01,-1.890476163795789412e-17 +3.214800424078781416e-01,-1.843837147245824537e-01,4.222068875521318068e-18 +3.136272940831935641e-01,-1.992464177466294895e-01,6.279516914045483657e-18 +3.060606186920218352e-01,-1.854211210174672719e-01,5.086288463026881966e-18 +3.202526974967260243e-01,-2.170303262897191887e-01,7.964998999799084768e-18 +3.048332737808696624e-01,-2.180677325826039792e-01,8.829218587304647896e-18 +5.524525692756933060e-01,-3.065809221921254046e-01,6.817240961291782748e-18 +5.362219778585913810e-01,-3.046323220526908626e-01,7.383861247229930820e-18 +5.437329229854772628e-01,-2.922386129726267656e-01,5.621547845995527418e-18 +5.713906557450020296e-01,-8.859295458420116121e-02,-1.869561460864539436e-17 +5.354466417850050064e-01,-2.767316666711493456e-01,4.273451519330598347e-18 +5.516772332021069314e-01,-2.786802668105839431e-01,3.706831233392450275e-18 +5.886275636555486912e-01,-9.078909753149591588e-02,-1.928306764470968749e-17 +2.254348665939653329e-01,-2.539877178705942651e-01,1.672937168257545374e-17 +2.240902306030352897e-01,-2.673052799528543022e-01,1.829712411214081329e-17 +2.084370112153099697e-01,-2.581798345803809624e-01,1.802601669750405558e-17 +3.339239662519994378e-01,-1.823804654940283099e-01,3.393057239181300147e-18 +3.263572908608277645e-01,-1.685551687648660646e-01,2.199828788162698456e-18 +2.442191235984431108e-01,-3.089617783721019251e-01,2.202177521436693214e-17 +2.578797240677773717e-01,-3.018535371712579574e-01,2.055782083376296306e-17 +2.638063801216166127e-01,-3.155317341846931578e-01,2.181392185155433883e-17 +2.719220461558623514e-01,-3.248021059399793797e-01,2.246662431867456616e-17 +2.582614456865282015e-01,-3.319103471408233474e-01,2.393057869927853215e-17 +3.215174155665592171e-01,-1.547241738598844618e-01,8.738262984901880495e-19 +3.339613394106805133e-01,-1.527209246293303457e-01,4.481466215017051333e-20 +4.805611933032665761e-01,-3.122626143326929782e-01,1.094189861319470388e-17 +4.870388836867846627e-01,-2.991364474180762123e-01,9.147011221537923416e-18 +4.954725675383221395e-01,-3.159822343234216513e-01,1.063902386529323283e-17 +2.720087306228947677e-01,-2.937104422456754405e-01,1.895440849679852004e-17 +2.524214740997212103e-01,-2.871404864330842077e-01,1.916226185961111335e-17 +4.872256130424648668e-01,-2.837357331597976651e-01,7.400328627363985703e-18 +5.021369872775204302e-01,-2.874553531505263382e-01,7.097453879462514655e-18 +4.797938849512474735e-01,-2.320606836426760688e-01,1.930042908348227521e-18 +4.838548486620192768e-01,-2.170676677253923492e-01,4.162842562444240122e-20 +4.935236129769647317e-01,-2.272761358347363814e-01,7.249169142377616742e-19 +4.763950918931367795e-01,-2.045724632270123355e-01,-1.006709057820294254e-18 +4.901248199188540378e-01,-1.997879154190726481e-01,-2.211835051930760293e-18 +7.850161763237236690e-01,-2.997625390994112515e-01,-5.221277583121091358e-18 +7.958774467897885563e-01,-2.832563458887722430e-01,-7.609939987217738898e-18 +8.000027013650887753e-01,-3.043519437273987660e-01,-5.429657668685833268e-18 +7.717953590486124060e-01,-3.100569636473622381e-01,-3.419142322227183456e-18 +7.676701044733121870e-01,-2.889613658087357151e-01,-5.599424640759089086e-18 +4.454493368529343078e-01,-3.078290583260260282e-01,1.214306545480809123e-17 +4.541018295719079223e-01,-2.930802468853096476e-01,1.005971479936182235e-17 +4.634750167327554293e-01,-3.101656388680639753e-01,1.153323662488566489e-17 +4.485743380564514160e-01,-2.744666902781112694e-01,8.227424102231569726e-18 +4.666000179362725375e-01,-2.768032708201492165e-01,7.617595272309141841e-18 +5.343147376401762294e-01,-1.797797139600691985e-01,-6.610611426253439065e-18 +5.199785984878928513e-01,-1.923215109307925275e-01,-4.500864688211129475e-18 +5.249077217009396890e-01,-1.712227107943871673e-01,-7.120251557696414889e-18 +3.249415746439680008e-01,-2.975624837984725546e-01,1.682408818613784058e-17 +3.407796161418771286e-01,-2.976249635191976495e-01,1.606368197797131326e-17 +3.323860988405628603e-01,-3.101583348123870820e-01,1.788451954813870175e-17 +2.490768760777435642e-01,-1.809171163464340093e-01,7.339341241804159867e-18 +2.635951048628979443e-01,-1.709974646659739028e-01,5.516622926358977768e-18 +3.423970688309282417e-01,-3.243982076416267457e-01,1.900608195726345627e-17 +3.265590273330191140e-01,-3.243357279209017063e-01,1.976648816542998667e-17 +2.929691046321913905e-01,-1.875306848547035055e-01,5.958675321334566077e-18 +2.823222307551163657e-01,-1.941919189029021608e-01,7.226160133825496676e-18 +2.770834650199705540e-01,-1.814387797180913586e-01,6.041098953609015968e-18 +2.856888355422793069e-01,-2.101458399783506514e-01,8.863077987468742878e-18 +2.698031959300584703e-01,-2.040539348417385046e-01,8.945501619743192769e-18 +3.008218529568759680e-01,-1.726679818326564420e-01,3.901227282810400488e-18 +2.909033270337977317e-01,-1.587061793217073857e-01,2.806559524023142520e-18 +3.039948410936282874e-01,-1.565966154844711522e-01,1.934172665715457639e-18 +5.147262947451078929e-01,-2.965730401209984990e-01,7.516152302785064314e-18 +5.149130241007880970e-01,-2.811723258627199518e-01,5.769469708611125831e-18 +5.072751906051650161e-01,-1.717258940635701392e-01,-6.209067989260890386e-18 +3.350410523025841303e-01,-2.714254352648574620e-01,1.338570783224338858e-17 +3.183682511185390029e-01,-2.803150131935454592e-01,1.519660780135864610e-17 +3.200742114758409751e-01,-2.667113359531197436e-01,1.357906501763158567e-17 +3.074300437430989019e-01,-2.557262775037507097e-01,1.295233282990254764e-17 +3.241028449271441403e-01,-2.468366995750627124e-01,1.114143286078728704e-17 +7.549161202015695071e-01,-3.151242537730973847e-01,-2.029500834826887103e-18 +5.745418743275843010e-01,-2.936966026622617187e-01,4.293156932342932127e-18 +5.675078712375705159e-01,-2.780674613835842357e-01,2.870592586062204646e-18 +5.820862311625754071e-01,-2.775768509337845358e-01,2.108821958347757041e-18 +5.826096074462380203e-01,-2.119903521886205844e-01,-5.316543391551858321e-18 +5.727457945507213877e-01,-2.271041173724219209e-01,-3.133319367260160269e-18 +5.652789430072794330e-01,-2.122684078014679121e-01,-4.445387958200327478e-18 +5.825643435311207430e-01,-2.443868857073408229e-01,-1.659108594272330198e-18 +5.652336790921621557e-01,-2.446649413201881507e-01,-7.879531609207996442e-19 +3.466059694665442059e-01,-2.682084746554098675e-01,1.246234893300656799e-17 +3.449000091092422338e-01,-2.818121518958355276e-01,1.407989171673363151e-17 +2.576483438522484959e-01,-2.432734915277137699e-01,1.395955357905415913e-17 +2.577357340291130394e-01,-2.275547088626869163e-01,1.218179753637890134e-17 +2.730824105403567570e-01,-2.357266385822137933e-01,1.236017551606169676e-17 +5.325613120926037114e-01,-3.227856574748739771e-01,9.609451756405671924e-18 +5.238416658023876682e-01,-3.084433482553752826e-01,8.413758641109415824e-18 +5.228573343174176546e-01,-2.676139797006771293e-01,3.854753096008049458e-18 +7.803359004552263833e-01,-2.029428198989606524e-01,-1.591847927431058093e-17 +7.896232819245143641e-01,-2.208729411630271922e-01,-1.434549035161045398e-17 +7.702187552464232478e-01,-2.208986236940974068e-01,-1.340231765409086135e-17 +8.087997819604226812e-01,-2.148202398005551739e-01,-1.595763116384609032e-17 +7.986826367516195457e-01,-2.327760435956919283e-01,-1.344146954362637228e-17 +2.697727505091654931e-01,-2.652214063773711827e-01,1.584839054069181090e-17 +2.538192833182647545e-01,-2.710552773752846756e-01,1.727966430992944243e-17 +2.570415531725914748e-01,-2.572792922451541120e-01,1.556920532797458609e-17 +4.558745860966835761e-01,-2.245633757884469839e-01,2.243180346914873405e-18 +4.655988235285591359e-01,-2.400209648731414513e-01,3.516029497456898733e-18 +4.513482889889404159e-01,-2.427321251282563430e-01,4.512455424636864275e-18 +3.612918735668982917e-01,-2.620670675418910189e-01,1.105779806850710385e-17 +3.514329167602401882e-01,-2.516803509109128978e-01,1.036361418401686093e-17 +3.697534687102738693e-01,-1.787425829554876999e-01,1.246430191405381833e-18 +3.609622625912896621e-01,-1.625511195947329235e-01,-1.544320574923585136e-19 +3.731643773506858608e-01,-1.562570604890523851e-01,-1.455850687310638322e-18 +5.110656289791201123e-01,-3.147263755431816135e-01,9.741742811960805419e-18 +5.105670541512526972e-01,-2.537580679758745239e-01,2.886959653406558407e-18 +5.311006718354697176e-01,-2.493174087843039177e-01,1.390941464126030537e-18 +3.431061392639397911e-01,-2.399164377866249420e-01,9.439799734473138303e-18 +3.577920433642938214e-01,-2.337750306731060379e-01,8.035248869973674164e-18 +3.523445333058371487e-01,-2.944080029097500550e-01,1.514032307873449267e-17 +3.738924958914215391e-01,-2.282363134808792493e-01,6.630154371929512328e-18 +3.880736888434075937e-01,-2.298779432552430502e-01,6.128205810524323110e-18 +3.803000138125802176e-01,-2.471805735717577945e-01,8.457114758112206028e-18 +3.866612868996402441e-01,-2.597242701237912899e-01,9.564152159400162552e-18 +3.724800939476541894e-01,-2.580826403494274612e-01,1.006610072080535177e-17 +2.416948766613477850e-01,-2.491073625256272073e-01,1.539082734829178758e-17 +3.099747338172247346e-01,-2.928483844867348362e-01,1.701744537152603767e-17 +2.970075189668022198e-01,-3.092596740377556164e-01,1.949744661362780403e-17 +2.904341954413732774e-01,-2.920122034328285210e-01,1.786996622884860955e-17 +5.652674195991359563e-01,-3.095231215926517176e-01,6.528241434818798666e-18 +5.577564744722500745e-01,-3.219168306727158146e-01,8.290554836053204379e-18 +5.585306373683414094e-01,-3.418996233690678732e-01,1.050766348517736219e-17 +5.457157870448988701e-01,-3.389574239685416712e-01,1.079666301165034473e-17 +4.215642503725953727e-01,-2.083895664960095651e-01,2.080877069850671749e-18 +4.358437422529062855e-01,-2.107460710701552220e-01,1.654823301473777326e-18 +4.273445596767538879e-01,-2.249180314694161908e-01,3.665660042471732600e-18 +4.326608850393602879e-01,-2.418106392992298015e-01,5.314011612616904765e-18 +4.183813931590493196e-01,-2.394541347250841445e-01,5.740065380993798803e-18 +3.089925303958195868e-01,-3.236510945920656468e-01,2.054045278272310030e-17 +2.894519920199680740e-01,-3.228149135381592760e-01,2.139297364004567218e-17 +6.048704539352641740e-01,-2.929642002539653012e-01,2.740905216572740141e-18 +5.991670840838417833e-01,-2.755613197293350636e-01,1.053735326070912264e-18 +6.149173037665166541e-01,-2.753195277708383459e-01,2.632542380151690395e-19 +4.130841169392671652e-01,-3.045363313010788775e-01,1.333985761045578561e-17 +4.197871225719145838e-01,-2.888348265533068893e-01,1.124348159079320102e-17 +4.293731440594393822e-01,-3.064451710910436333e-01,1.276591964894683174e-17 +4.135979069866990709e-01,-2.716363646591199443e-01,9.602918251720561776e-18 +4.298869341068713434e-01,-2.735452044490847556e-01,9.028980290211609446e-18 +3.481762843279133657e-01,-1.757942807977401212e-01,1.959332986523170896e-18 +3.432990358749637982e-01,-1.916228267574564548e-01,3.981573073881790893e-18 +3.535083099094356029e-01,-2.035238798049931741e-01,4.829641620826806399e-18 +3.392559918335216196e-01,-2.101100645012813906e-01,6.263365873484936035e-18 +4.387463312202869448e-01,-3.235305630737980165e-01,1.423944147447067890e-17 +5.956785711860110855e-01,-2.081470227049337374e-01,-6.383455139285154452e-18 +6.115757697442267826e-01,-2.056021113582349735e-01,-7.440915042782368021e-18 +6.059736575478955611e-01,-2.242811504128758293e-01,-5.061934704108904681e-18 +6.155423950106027053e-01,-2.398264431561925869e-01,-3.771655130046388929e-18 +5.996451964523870082e-01,-2.423713545028913230e-01,-2.714195226549174975e-18 +4.477691210869740868e-01,-3.408861809032136536e-01,1.576043140486308263e-17 +4.316929282934791057e-01,-3.395022936682312586e-01,1.638328559900182006e-17 +3.942054235955161912e-01,-1.966039380536325765e-01,2.076838563297051256e-18 +3.818108771959594638e-01,-1.916911035070858749e-01,2.123128492964366681e-18 +3.943501298692267953e-01,-1.773613583963539186e-01,-1.012783680802135929e-19 +3.906990642463997743e-01,-1.581905139270840810e-01,-2.087371819279139506e-18 +4.030936106459566126e-01,-1.631033484736307826e-01,-2.133661748946454931e-18 +4.141859531468301547e-01,-3.373214476635424397e-01,1.698555106763992692e-17 +7.928611586431991709e-01,-1.065449750196461043e-01,-2.740180121054924006e-17 +7.805165774751238184e-01,-9.417099892831895525e-02,-2.819975933802595491e-17 +7.788054703379143628e-01,-1.257855979352838494e-01,-2.454982788537921030e-17 +8.008213491770849179e-01,-1.255466991333394899e-01,-2.564359430751505334e-17 +4.099048720326132211e-01,-2.024178599190855632e-01,1.972072756550549484e-18 +3.973656193593458896e-01,-2.167476050298175194e-01,4.196479617595129180e-18 +4.037731372805046237e-01,-2.356918651206960369e-01,6.023440003777821339e-18 +3.304619715311978845e-01,-2.289313793372558803e-01,8.813067546744100274e-18 +4.089383569014491404e-01,-3.215442482351996700e-01,1.545971861114145938e-17 +3.993523354139242865e-01,-3.039339036974628705e-01,1.393728055298782867e-17 +5.649154503045163978e-01,-1.924267578247733090e-01,-6.666471363534287147e-18 +5.550516374089997651e-01,-2.075405230085746178e-01,-4.483247339242589095e-18 +4.423357721750059146e-01,-1.918220333947046885e-01,-7.949220593770113982e-19 +4.481160814791644853e-01,-2.083504983681113421e-01,7.898609132440502232e-19 +3.618736325707674895e-01,-3.062774985437172193e-01,1.601778993309125843e-17 +3.659940255381325946e-01,-2.904646869203550974e-01,1.403399967185357668e-17 +3.676531466539582627e-01,-2.746107640939244865e-01,1.216483546979506192e-17 +3.771822459188886034e-01,-2.864802597278915397e-01,1.304230232415182614e-17 +6.293800429253378903e-01,-2.026559439086606518e-01,-8.636058052560460431e-18 +6.190849565634531926e-01,-1.865218162007185598e-01,-9.957578487736709431e-18 +6.053660609263356029e-01,-1.712925860255681276e-01,-1.101109526114054591e-17 +6.231703341074465996e-01,-1.683464185759937504e-01,-1.220623827091863678e-17 +8.092473424251880321e-01,-1.410176635703258019e-01,-2.430632770214352032e-17 +5.045879385956021368e-01,-3.278525424577984348e-01,1.153663020361758743e-17 +5.882117196425691308e-01,-1.933113131339797286e-01,-7.695523730225320891e-18 +5.746980591133769023e-01,-1.757763821394911774e-01,-9.019133468948342290e-18 +5.877670228531500785e-01,-1.719330526558043304e-01,-1.008604521668163842e-17 +7.139176091614740649e-01,-2.986448166909208002e-01,-1.902202127095829802e-18 +7.002907981122560299e-01,-2.937532593861676977e-01,-1.793800322619773453e-18 +7.085740913159028764e-01,-2.808205274480317648e-01,-3.654355950637946647e-18 +7.060372874629587958e-01,-2.609979995803614061e-01,-5.767970843510760962e-18 +7.196640985121770528e-01,-2.658895568851146196e-01,-5.876372647986816926e-18 +4.184040546087657297e-01,-1.882458995198246221e-01,-3.876398444740636787e-20 +4.205099669944835639e-01,-1.659127534261249370e-01,-2.660616996536572933e-18 +4.321693453344657709e-01,-1.718844600030489111e-01,-2.551812683236450668e-18 +3.853648500895845985e-01,-3.116380015929529068e-01,1.548430403994192398e-17 +3.895106101274026233e-01,-2.946300846588321143e-01,1.336444303925624713e-17 +3.830551098601235327e-01,-3.338183829208151154e-01,1.809879766269881616e-17 +3.732133845736019251e-01,-3.245145638821843592e-01,1.752596014896723463e-17 +6.693109668219539010e-01,-3.148690156400572038e-01,2.089825189756632699e-18 +6.554959437790481847e-01,-3.106099720241278228e-01,2.278712443813129074e-18 +6.641228312910247844e-01,-3.002909989896243581e-01,6.964130703093991028e-19 +6.596090021209676246e-01,-2.829355231486010980e-01,-1.043049186356847834e-18 +6.734240251638732300e-01,-2.871945667645304234e-01,-1.231936440413344016e-18 +5.156939797702093653e-01,-3.430037281553364736e-01,1.270795108173967442e-17 +5.001009183294116145e-01,-3.442595869355765670e-01,1.360523213507210338e-17 +6.466843426010848717e-01,-2.363782259305175493e-01,-5.669740197620596502e-18 +6.642355721054331585e-01,-2.272403123967137728e-01,-7.551224958630829552e-18 +6.603218883746264645e-01,-2.469659387088367908e-01,-5.135975392660396780e-18 +6.733916569363953553e-01,-2.538335580492700472e-01,-4.994429425375110006e-18 +6.558404274320470684e-01,-2.629714715830738236e-01,-3.112944664364877342e-18 +7.427132002192725624e-01,-3.222982921622556951e-01,-6.287567379145024464e-19 +7.422463672159039794e-01,-3.064298287458450676e-01,-2.396545282952795564e-18 +7.257882056604583187e-01,-3.272697465572376729e-01,7.522889402877968288e-19 +6.217644473673777927e-01,-4.664824796356376035e-02,-2.586909537106551566e-17 +6.088866454392093397e-01,-4.148540108633039236e-02,-2.582759701418365697e-17 +6.198204421869598635e-01,-3.325704075523516767e-02,-2.728580108259035749e-17 +3.989896511081542640e-01,-2.678740950547318089e-01,9.886292874504585082e-18 +4.090894626431110237e-01,-2.525844729505096753e-01,7.671791573922991963e-18 +6.220429905050228747e-01,-2.160803827626017748e-02,-2.870783352971985899e-17 +6.349207924331914388e-01,-2.677088515349357323e-02,-2.874933188660171152e-17 +4.771607128108147633e-02,-3.610995793554362399e-01,3.742623316054024130e-17 +4.958432981816401908e-02,-3.415446774263902752e-01,3.512936021079883942e-17 +6.227214565694259851e-02,-3.499248989686472022e-01,3.546007839369434342e-17 +2.955801718741385420e-02,-3.422788070824482332e-01,3.618259525446524544e-17 +4.411409156327499026e-02,-3.311041266956591400e-01,3.421644048761933524e-17 +7.923566747485796813e-02,-3.451758032084809580e-01,3.410225413727956698e-17 +6.276002055044626049e-01,-5.874274989901973054e-02,-2.478727517197089358e-17 +6.385340022522130177e-01,-5.051438956792447810e-02,-2.624547924037759102e-17 +6.318748871059186589e-01,-7.394150127451870613e-02,-2.327956393324201380e-17 +6.151053322210833230e-01,-7.007535967015801615e-02,-2.290318006392993536e-17 +5.973455979667879889e-01,-6.319940364929027554e-02,-2.281840743274593204e-17 +6.016202795682438209e-01,-7.839815502478927889e-02,-2.131069619401705227e-17 +4.824592735530033316e-01,-3.440957004677014375e-01,1.444159306521072510e-17 +5.798457795241408474e-01,-3.090325111428520177e-01,5.766470807104351446e-18 +6.917860851458788041e-01,-3.080637956173052361e-01,2.329396585876233494e-19 +6.864425673003075046e-01,-2.902395063744160897e-01,-1.519214164954494266e-18 +6.963888810924928618e-01,-3.301561252591405093e-01,2.502541426566325130e-18 +6.825406502805446696e-01,-3.266423722473890123e-01,2.777127584231604702e-18 +8.276073109030941399e-01,-1.852666749816746783e-01,-2.020345226448972566e-17 +8.331724684802083170e-01,-1.688651234950938329e-01,-2.232367716673922589e-17 +6.864101990728298519e-01,-2.568784976591558245e-01,-5.281707149916260256e-18 +6.975002062691038063e-01,-2.419475270962385960e-01,-7.503723847265128994e-18 +8.193050559895443952e-01,-2.012865195427152865e-01,-1.799366456279884047e-17 +8.080426820468671334e-01,-1.868972928068498573e-01,-1.907143967352105875e-17 +6.465392335591985118e-01,-2.760679038081678138e-01,-1.184595153642134223e-18 +7.383250947816609733e-01,-2.924839375547358400e-01,-3.780023567489591128e-18 +7.356184853643537025e-01,-2.757065396463019846e-01,-5.541833852003064757e-18 +7.517426777808937643e-01,-2.824783924482530129e-01,-5.559099664378654043e-18 +7.330816815114096219e-01,-2.558840117786317370e-01,-7.655448744875879071e-18 +6.437436280382278220e-01,-2.001141241847693708e-01,-9.618855630552917484e-18 +6.362344412190014120e-01,-2.191944193422858400e-01,-7.102192185598574533e-18 +6.323207574881947179e-01,-2.389200456544088025e-01,-4.686942619628140991e-18 +6.605724735659760372e-01,-2.062626080468055179e-01,-9.740600023965580819e-18 +6.537180752723125154e-01,-1.897241326131803296e-01,-1.127446589092746672e-17 +6.742100193395178520e-01,-2.168503208251247316e-01,-9.206835219005380326e-18 +2.368541197737509818e-01,-3.216365914574395024e-01,2.380873326378926535e-17 +2.309274637199117408e-01,-3.079583944440043575e-01,2.255263224599789267e-17 +6.864693554178066259e-01,-2.018560187899891001e-01,-1.149265904733643725e-17 +6.821203897300243124e-01,-1.808442987184761264e-01,-1.365263733903003131e-17 +6.980428243477702077e-01,-1.868277010332488608e-01,-1.374908610202633697e-17 +2.128677593797029255e-01,-3.111381224142846236e-01,2.378650475489371337e-17 +2.202327632043949990e-01,-2.984633093289469352e-01,2.199954670547138016e-17 +7.348934786228225047e-01,-1.433499941980722614e-01,-2.044024888474170175e-17 +7.502992878104072227e-01,-1.498291494139265267e-01,-2.045572890918407482e-17 +7.392075952809857853e-01,-1.601989745254507325e-01,-1.874825622348344756e-17 +7.400640557816888787e-01,-1.763046683438833917e-01,-1.697258138276438634e-17 +7.246582465941044937e-01,-1.698255131280291819e-01,-1.695710135832201328e-17 +7.584152254781362235e-01,-1.198820214540692319e-01,-2.422787817942785993e-17 +7.400803297287746885e-01,-1.168561519957744266e-01,-2.368083704247893642e-17 +7.525103840546669698e-01,-1.037580043632955473e-01,-2.576099365146447042e-17 +7.451795681134448790e-01,-8.743583695623385887e-02,-2.724736836007195076e-17 +7.635144638628066360e-01,-9.046170641452869199e-02,-2.779440949702088044e-17 +7.481714279869648987e-01,-2.498556328517376468e-01,-9.066815624783798619e-18 +7.634064621630273217e-01,-2.364195080609101107e-01,-1.132102501603310660e-17 +7.642711025396488056e-01,-2.522648697489915937e-01,-9.575119340141432574e-18 +7.801985292320673393e-01,-2.587478431094743514e-01,-9.615444316521867618e-18 +7.649634950560049163e-01,-2.721839679003019152e-01,-7.361234925272562716e-18 +7.541190806937393409e-01,-2.184893867968435988e-01,-1.289401393873322739e-17 +7.384508143652980250e-01,-2.247659696081681924e-01,-1.142660963623933489e-17 +7.452631074486939511e-01,-2.092450852413555440e-01,-1.350790227429708963e-17 +7.275547741075301111e-01,-2.007264374995710310e-01,-1.361096224470307305e-17 +7.432230404359714271e-01,-1.944498546882463819e-01,-1.507836654719696556e-17 +2.226924213844918010e-01,-2.833904890106538899e-01,2.017972166182248729e-17 +2.046327170442830412e-01,-2.865702169809341004e-01,2.141359417071831416e-17 +2.396902767631473030e-01,-2.791983723008671925e-01,1.888307664689388545e-17 +4.752675878435043688e-01,-2.502294329824854557e-01,4.199317986070218006e-18 +4.958931829496966981e-01,-2.571618953221339043e-01,3.982051341125061868e-18 +4.816981215270083605e-01,-2.651221765525992868e-01,5.568037930233733080e-18 +8.240369804694964717e-01,-1.540627266687418506e-01,-2.355113089857698204e-17 +6.491712223765155887e-01,-7.763374695457378460e-02,-2.370109408201076011e-17 +6.366763490931363068e-01,-8.896635672571204245e-02,-2.181699897396980190e-17 +6.405237083681820653e-01,-1.060670434911181459e-01,-2.007398931887972802e-17 +6.232273730975851356e-01,-1.023747978110630674e-01,-1.965245917011098171e-17 +2.093296692173594042e-01,-2.172506641736179633e-01,1.336479839609721648e-17 +2.156453710862502871e-01,-2.284707879033001932e-01,1.432470772368309426e-17 +2.034659453373491300e-01,-2.336421487684386955e-01,1.549835494035281824e-17 +1.946768195179485184e-01,-2.451723833877056946e-01,1.722518023390592081e-17 +1.883611176490576355e-01,-2.339522596580234370e-01,1.626527090632004611e-17 +2.319053811536326837e-01,-2.235904325583331631e-01,1.298616338939942810e-17 +2.342749261232689728e-01,-2.089905128936950518e-01,1.122406142792260624e-17 +2.446712123106411230e-01,-2.205016421435487817e-01,1.201907363789454492e-17 +1.542372763643343192e-01,-3.149865234137578796e-01,2.706173938566200409e-17 +1.664850688492665598e-01,-3.235241276902620644e-01,2.743153675501224746e-17 +1.489177697744797357e-01,-3.289751774829037245e-01,2.889781811591450122e-17 +1.264518674796151765e-01,-3.089037251606548962e-01,2.772181141712606320e-17 +1.197486591119096416e-01,-3.225285749241322830e-01,2.958389208695190616e-17 +1.095305493019772952e-01,-3.109947268783876950e-01,2.877768275751371459e-17 +1.321197262175914378e-01,-3.342865987842771891e-01,3.031107003852626376e-17 +1.151984080399535565e-01,-3.363776005020099324e-01,3.136694137891392440e-17 +2.260416572736224372e-01,-2.399819171531539230e-01,1.511971993365503295e-17 +5.424003722694462626e-01,-2.141303435408718758e-01,-3.126694245338391538e-18 +5.420368795666830053e-01,-1.942886935641773005e-01,-5.347777650672351592e-18 +5.240980030482171870e-01,-2.181700055779879355e-01,-1.784038267621806889e-18 +5.371127608905337247e-01,-2.314218350223852527e-01,-9.195079561920447770e-19 +5.494030410566987932e-01,-2.452777467471878858e-01,4.828548640944627358e-20 +7.509973669877390012e-02,-2.958091842543570382e-01,2.873272168136343228e-17 +6.883418567775619057e-02,-2.809560898573168486e-01,2.736048080223449407e-17 +8.234017354827728730e-02,-2.807770224558013838e-01,2.668582437625088266e-17 +1.568907999414399512e-01,-2.977239248532159710e-01,2.498545164461172072e-17 +1.393235008666531272e-01,-3.031749746458576311e-01,2.645173300551396832e-17 +8.348387256414843693e-02,-3.274947868407331319e-01,3.190148443564624801e-17 +9.857913584498126380e-02,-3.423005930096127969e-01,3.284053312897288577e-17 +1.568120121818299684e-01,-2.822561036923944000e-01,2.324406352545667962e-17 +1.717257876795110771e-01,-2.940676524602946484e-01,2.385406990560471232e-17 +1.433596937628905110e-01,-2.679674033746358708e-01,2.228374761847735404e-17 +1.581946815009616647e-01,-2.643111309817145482e-01,2.115236587947034255e-17 +4.623666160187830387e-01,-2.056393381129964226e-01,-2.065650139359154152e-19 +4.686365872756177997e-01,-1.883595858066766937e-01,-2.460028491491118206e-18 +1.869888171516536635e-01,-3.055892554601716826e-01,2.441443861956348022e-17 +1.991103657305597352e-01,-3.210805949767137624e-01,2.557493051896190111e-17 +1.839261240180272150e-01,-3.250268131376582437e-01,2.675594992415817431e-17 +1.024197411194889135e-01,-2.964999969838759686e-01,2.748683367153385241e-17 +9.571653275178337861e-02,-3.101248467473532999e-01,2.934891434135968921e-17 +4.943033506279372047e-02,-3.199359466558651666e-01,3.269874878771160386e-17 +4.815700737990753766e-02,-3.027450739640007438e-01,3.082083511940866572e-17 +6.286707651113895845e-02,-3.131791243477368702e-01,3.128529177564999108e-17 +3.883006508047655292e-02,-2.936205361503221867e-01,3.024328100797014055e-17 +5.226680652882183253e-02,-2.868637138421939459e-01,2.882982399590852777e-17 +4.617519270321499003e-01,-1.728984213037192408e-01,-3.870876954292134592e-18 +4.757804029065035856e-01,-1.718315464177351537e-01,-4.671020998176513142e-18 +7.637306438166005518e-02,-3.130000569462214610e-01,3.061063534966637042e-17 +6.688313523614839440e-01,-9.693764282849362535e-02,-2.247573153064280321e-17 +6.702639200384136187e-01,-7.890164714709244076e-02,-2.458011703008146348e-17 +6.851225880361644371e-01,-8.318068756981897294e-02,-2.481731943798571540e-17 +6.259922963926861650e-01,-2.570102497444243794e-01,-2.339203142068411669e-18 +7.199424478378321224e-01,-1.129559347989096130e-01,-2.314508060246433842e-17 +7.056489463539631357e-01,-1.088345644907558751e-01,-2.291747454238570838e-17 +7.198819868214365592e-01,-9.661076459684711515e-02,-2.498634645443691686e-17 +7.132894947374625039e-01,-8.203830940897210988e-02,-2.631108091441067813e-17 +7.275829962213314905e-01,-8.615967971712584772e-02,-2.653868697448930509e-17 +2.354315266472994939e-02,-3.020338326300243681e-01,3.193328772853126177e-17 +1.895701296942221836e-02,-3.180059119206384288e-01,3.395761631382197689e-17 +2.940402243204356947e-02,-3.206700763119230135e-01,3.375198383137800988e-17 +1.806757672805733850e-02,-3.554606616759486970e-01,3.822666598942308681e-17 +3.021528219679756044e-02,-3.632130635256735074e-01,3.851272027299634746e-17 +6.316956662441086667e-01,-2.744131302690545615e-01,-6.520332515665834071e-19 +5.469660027797298429e-01,-1.731898934277719682e-01,-7.967164520157636236e-18 +2.601052789987493008e-01,-2.129547891980488050e-01,1.041969557490208102e-17 +6.661912107581769993e-01,-1.796983207122961890e-01,-1.301006405463444369e-17 +6.777646796881404700e-01,-1.646700029555558664e-01,-1.526649110932434186e-17 +5.858604580639777959e-01,-3.253611182981764327e-01,7.317347481330313491e-18 +5.951349127924261406e-01,-3.095345993677864338e-01,5.082262978854444640e-18 +8.015552989161084385e-01,-1.578323851473932282e-01,-2.203642417877848222e-17 +5.761671800630864260e-01,-3.414209751296748419e-01,9.599053771210228603e-18 +5.914563133313714971e-01,-3.419230633546092579e-01,8.914845942960321797e-18 +4.719087005842929616e-01,-3.270114257734094143e-01,1.302524926864097585e-17 +4.653730969824921293e-01,-3.419987250030724346e-01,1.503293107690168764e-17 +1.291053910567208640e-01,-2.916411266001129876e-01,2.564552367607577983e-17 +6.108851324751010115e-01,-3.092928074092897162e-01,4.291781890798701415e-18 +6.258912450442284392e-01,-3.099676015681859798e-01,3.640774342131208957e-18 +6.161557039013902948e-01,-3.265380006820071124e-01,5.982132104412912686e-18 +6.090785030048279092e-01,-3.410722180224258215e-01,7.964937410390808478e-18 +6.240846155739553369e-01,-3.417470121813221406e-01,7.313929861723317561e-18 +4.423851224712357921e-01,-2.572682283839242690e-01,6.586860763158930479e-18 +1.869100293920437084e-01,-2.901214342993502227e-01,2.267305050040843912e-17 +1.893696875721405104e-01,-2.750486139810570663e-01,2.085322545675954317e-17 +1.756094958747790313e-01,-2.620411627883817429e-01,2.005238899316140841e-17 +1.933321835270183642e-01,-2.584899454699657317e-01,1.879293266347128036e-17 +8.101038861351969045e-01,-2.431177862442304993e-01,-1.282806318413013461e-17 +7.909273860992885874e-01,-2.491704876067026009e-01,-1.121592237189450134e-17 +2.098050662460764215e-01,-3.305756800917710736e-01,2.612801605948840746e-17 +8.066063036570096934e-01,-2.736789903860004092e-01,-9.210418042590372625e-18 +7.916197786156446980e-01,-2.690895857580129502e-01,-9.002037957025631485e-18 +2.273578903566560172e-01,-3.318572492392103390e-01,2.542206515293184440e-17 +8.153553564361040173e-01,-2.596775087525472481e-01,-1.121412780660521599e-17 +2.849759454733172270e-01,-2.772991526946546603e-01,1.647440725469675675e-17 +2.881982153276440028e-01,-2.635231675645242078e-01,1.476394827274190041e-17 +6.960718205253307866e-01,-7.881704308855552732e-02,-2.584022266589133587e-17 +6.946392528484013340e-01,-9.685303876995673966e-02,-2.373583716645267251e-17 +6.946997138647967862e-01,-1.131982089720192930e-01,-2.189457131448009407e-17 +6.459229478902475119e-01,-3.262003917577319667e-01,4.501624559502891738e-18 +6.407348123593185063e-01,-3.116223751072992321e-01,3.108212440055657949e-18 +6.354642409330291120e-01,-2.943771818345818359e-01,1.417862226441446293e-18 +6.564290489415369745e-01,-3.392984919541764954e-01,5.470370549820181851e-18 +6.416679175218072961e-01,-3.403108950373478492e-01,6.299870546062711112e-18 +5.592215900370981485e-01,-2.625605150821067602e-01,1.522496259397275959e-18 +6.642299348638575074e-01,-1.470675089648902922e-01,-1.659670218636482612e-17 +6.801591138357047095e-01,-1.482134869710702851e-01,-1.723927547076041067e-17 +6.511149400181469593e-01,-1.549652325633377181e-01,-1.507011008051039457e-17 +6.535093741657109767e-01,-1.385087165788521091e-01,-1.704289444194646337e-17 +9.968509891578652971e-02,-2.775695937294404558e-01,2.548346211210469207e-17 +7.858484772925710127e-01,-1.616181033357778074e-01,-2.084819131015145885e-17 +7.697723490909561539e-01,-1.725635071819416055e-01,-1.883424894294185737e-17 +7.706895326701851401e-01,-1.557327258951411164e-01,-2.077767861513542210e-17 +6.861668881908901119e-01,-1.278953638366115142e-01,-1.982284761910701397e-17 +6.751571946853283102e-01,-1.159138381158124342e-01,-2.064121024317397811e-17 +6.997016330151732966e-01,-1.454978578272771439e-01,-1.849263654206652663e-17 +6.493623652304287841e-01,-1.735498368502600974e-01,-1.288831966122178035e-17 +7.233610678897427482e-01,-2.307943485350622548e-01,-1.001524275633141226e-17 +7.097595423473926912e-01,-2.269532250611030755e-01,-9.789547675596187461e-18 +7.159933155779025782e-01,-2.116805445787210416e-01,-1.181480289106796925e-17 +7.139532485651800542e-01,-1.968853140256118517e-01,-1.338526716396784517e-17 +7.322170411347881380e-01,-2.400386500905502540e-01,-9.401354420767551559e-18 +2.406495502351874149e-01,-3.328606331673079066e-01,2.489120812130088695e-17 +8.174498134398580085e-01,-3.021959640192800611e-01,-6.518338476019244678e-18 +8.261748450627802720e-01,-2.894669600517326136e-01,-8.377312937905222827e-18 +8.196130246102478756e-01,-2.738442688833065408e-01,-9.822029836797321860e-18 +1.263707488530184664e-01,-2.727107233456775304e-01,2.364215211664662257e-17 +7.258472892613013761e-01,-1.290799518896832421e-01,-2.161196513042773101e-17 +3.696087624365633206e-01,-1.979851626127663855e-01,3.424547122782646104e-18 +7.577723891228527187e-01,-1.848233160856679325e-01,-1.686952141235840292e-17 +7.663754160120220815e-01,-1.388837455677626453e-01,-2.246967127639367629e-17 +3.655657183951211975e-01,-2.164724003565913213e-01,5.706339922385792017e-18 +1.134991154659804741e-01,-2.784394738604748509e-01,2.491223052825871745e-17 +6.602985266875772696e-01,-1.116347976930858188e-01,-2.040400783526972619e-17 +6.468495506920264315e-01,-1.250432387784369548e-01,-1.823946803141090293e-17 +2.393789591464344224e-01,-1.898179707027443097e-01,8.813535196963046575e-18 +2.567386742115864151e-01,-1.970008681226003699e-01,8.782777721258834816e-18 +7.923358604233297076e-01,-1.906830109952343533e-01,-1.788320680489403846e-17 +8.006381153368793413e-01,-1.746631664341937729e-01,-2.009299450658491749e-17 +2.266131279894260109e-01,-1.929067611175286912e-01,9.780624948467932831e-18 +2.112860942276258980e-01,-2.012666612044015091e-01,1.146655119099466782e-17 +2.922268487789471680e-01,-2.436485311864671766e-01,1.232631611589760332e-17 +6.535757870454812490e-01,-5.094416962834688589e-02,-2.692585983074288590e-17 +6.654624580511958598e-01,-6.387679169589910444e-02,-2.604268198935367538e-17 +2.923142389558117671e-01,-2.279297485214402952e-01,1.054856007322234245e-17 +6.386418045322823644e-01,-1.649910444642218588e-01,-1.333451191680341760e-17 +6.477400289083965479e-01,-3.884966769289094346e-02,-2.800768002983750797e-17 +7.096042828773977407e-01,-1.758735939540988780e-01,-1.554524545566143923e-17 +7.087478223766945362e-01,-1.597679001356661632e-01,-1.732092029638050045e-17 +7.147555967318800496e-01,-1.394497770012074478e-01,-1.990449244472710376e-17 +5.957230263524956326e-01,-5.062729677945718154e-02,-2.415827109310055268e-17 +5.921330809938278872e-01,-2.599321784506576360e-01,-3.688290202098145425e-19 +7.729313337452387023e-01,-1.907086935263045957e-01,-1.694003410737443967e-17 +6.060725436659071264e-01,-1.448578368913061576e-02,-2.873755287710085754e-17 +5.910541985835709999e-01,-2.049280988992557839e-02,-2.733205504603088582e-17 +5.937790211720777034e-01,-3.723608957112856110e-02,-2.557497680462539760e-17 +3.911697312432282914e-01,-2.787761618324015034e-01,1.149527883719773082e-17 +7.135836400225684661e-01,-3.262565873042643783e-01,1.229366283769174075e-18 +4.933219309058227697e-01,-1.734899956413612221e-01,-5.333901847121584959e-18 +2.742419787399729136e-01,-1.643362306177751919e-01,4.249138113868047168e-18 +3.515871929683253017e-01,-1.533087583313047508e-01,-7.429478921928488744e-19 +6.063872979098441363e-01,-9.766505355236365649e-02,-1.936784027589368772e-17 +4.004541716214873315e-01,-3.367190200599264882e-01,1.758297401017197305e-17 +7.261221747993640285e-01,-2.996579759438940949e-01,-2.379279470577207048e-18 +7.178388815957169600e-01,-3.125907078820300833e-01,-5.187238425590335647e-19 +6.739137627685680698e-01,-3.369613452818924770e-01,4.359426957735334866e-18 +4.444416845607238598e-01,-1.694888873010050312e-01,-3.416775071466178926e-18 +1.857557453348782084e-01,-2.174556747055083616e-01,1.453023863938642834e-17 +1.991066684787247409e-01,-2.064380220695400392e-01,1.264019840766439334e-17 +6.819287381302504558e-01,-2.728840305333928851e-01,-3.258676421620740818e-18 +3.595638923413064236e-01,-3.284578798715793724e-01,1.863228355584815062e-17 +5.644707535150973454e-01,-1.710484973465979663e-01,-9.056992849990603906e-18 +5.081974841785206198e-01,-2.238723084884770009e-01,-3.701747734807415943e-19 +5.134850955574330467e-01,-2.065808170069635685e-01,-2.577361062627088356e-18 +5.041365204677488165e-01,-2.388653244057607206e-01,1.518239709243043718e-18 +4.966183228493138424e-01,-1.855286093429015515e-01,-4.135338677514801412e-18 +5.333354749886950463e-01,-3.427684501712260912e-01,1.182656040552983127e-17 +5.040780796181963952e-01,-1.980238138412815929e-01,-3.087001194070064950e-18 +6.901324539572635253e-01,-2.228337231398974383e-01,-9.303283982001685985e-18 diff --git a/src/pyvale/data/render/riley/rabbits/feebs_tri6/uvs.csv b/src/pyvale/data/render/riley/rabbits/feebs_tri6/uvs.csv new file mode 100644 index 000000000..e6153a905 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/feebs_tri6/uvs.csv @@ -0,0 +1,740 @@ +7.500000000000000000e-01,1.218374669377126907e-01 +7.434442186370777694e-01,1.025163634345678254e-01 +7.310689572472250930e-01,8.657357838168601438e-02 +7.372552135480717750e-01,6.706614868344566716e-02 +7.449850683874850166e-01,4.866254623706808141e-02 +7.347069407851896106e-01,3.366772069570736492e-02 +7.141541620737740237e-01,3.112796662882394774e-02 +6.942703406508530239e-01,2.515867542610480262e-02 +6.743326187878597722e-01,1.930227915742259437e-02 +6.540771132479463734e-01,1.470860541245719473e-02 +6.334800394984704264e-01,1.195543582394751649e-02 +6.127668284867286985e-01,1.026368318676136766e-02 +5.920078075543815377e-01,9.261383450560631975e-03 +5.712318786965782103e-01,8.697533610959892400e-03 +5.504501157429046998e-01,8.420375057592108942e-03 +5.296681766093065402e-01,8.613434074671638338e-03 +5.089306115916035766e-01,9.924016169467491169e-03 +4.883073139046660294e-01,1.249306284870924273e-02 +4.678111386846595110e-01,1.591002681310544828e-02 +4.475885411983420714e-01,2.069233947468088891e-02 +4.268951265668666228e-01,2.149884070226086227e-02 +4.062447692685328127e-01,1.915791886278470080e-02 +3.854978749774453650e-01,1.803847752881556493e-02 +3.648205669989607047e-01,1.954817191134821872e-02 +3.442749233508345386e-01,2.131834231782252231e-02 +3.244867503552179566e-01,1.506146346117249318e-02 +3.049091708506990184e-01,8.084150895262123132e-03 +2.849260636983083073e-01,2.489694126730758461e-03 +2.643100532214454068e-01,0.000000000000000000e+00 +2.500000000000000000e-01,9.132365231365596747e-03 +2.635357920007500576e-01,2.466065090438900043e-02 +2.512291665396901297e-01,2.779904887823405821e-02 +2.566316603101983507e-01,4.661423214835803269e-02 +2.746397138330496923e-01,5.652513431026420787e-02 +2.941561630893471113e-01,6.348434268532907043e-02 +3.145885653870294507e-01,6.726270855831874285e-02 +3.346016210593188434e-01,7.285036142055019426e-02 +3.551163529296465504e-01,7.552439445017625208e-02 +3.520472122945259574e-01,9.495744781569115389e-02 +3.677746615017450926e-01,1.079362935739967694e-01 +3.858299781557960051e-01,1.177842945382086698e-01 +4.029325188068927921e-01,1.294696900930208117e-01 +4.225596641504485440e-01,1.361019165569831157e-01 +4.432013379158881161e-01,1.383076614501924650e-01 +4.639646749207536613e-01,1.376151906307229167e-01 +4.846206171762477144e-01,1.353375735391151302e-01 +5.051371654999146088e-01,1.320280815124737495e-01 +5.255287111856135063e-01,1.280116346892673784e-01 +5.461927122927923151e-01,1.260579738340363576e-01 +5.669639154684560367e-01,1.266507260521962663e-01 +5.875845927886167441e-01,1.291733005390942324e-01 +6.083163410287759643e-01,1.299277731914667000e-01 +6.265418047398564338e-01,1.338804194126708424e-01 +6.186965018882931711e-01,1.497428145351066830e-01 +5.988588154371490280e-01,1.552909150529220295e-01 +5.785536582033150577e-01,1.578779816012970127e-01 +5.733028904951766869e-01,1.732382071466002094e-01 +5.932432457848021423e-01,1.779874106216748908e-01 +5.913318489192889160e-01,1.927974106563289936e-01 +5.881219953085913277e-01,2.125210715531228034e-01 +6.058136752706467787e-01,2.195973761982425443e-01 +6.246269355053559735e-01,2.112073273564445131e-01 +6.397280553580340090e-01,1.969784656645116039e-01 +6.537306087748340211e-01,1.817437770596763702e-01 +6.740131086229856905e-01,1.779491104368946808e-01 +6.947419516904367320e-01,1.764457913074046203e-01 +7.147705201551076692e-01,1.720762275718629997e-01 +7.293124938608572805e-01,1.574996265105806370e-01 +7.392383528746583332e-01,1.392747588555269533e-01 +7.470216696166097625e-01,1.121264642381644000e-01 +7.370522624813520274e-01,9.437488326249986181e-02 +7.351372351404378280e-01,7.713006733207188048e-02 +7.390352641910196141e-01,5.698479576266590740e-02 +7.409741562223638445e-01,4.065462568046668973e-02 +7.243495727602990986e-01,3.304642451459145064e-02 +7.043542806448777061e-01,2.771821640560932776e-02 +6.842518671703854416e-01,2.237061148033974919e-02 +6.642856861132775403e-01,1.668953583452955497e-02 +6.437843416946900099e-01,1.316784308506127946e-02 +6.231312207858126229e-01,1.099765514749383166e-02 +6.024228984898218897e-01,9.698046475982290138e-03 +5.816192124016327236e-01,8.936713822570946028e-03 +5.608606753833107472e-01,8.519995827899546487e-03 +5.400623077558761587e-01,8.431011649339270261e-03 +5.192919650167708845e-01,9.073942063854022536e-03 +4.986117173471141806e-01,1.112318888146709983e-02 +4.780432490932973177e-01,1.400943456364626798e-02 +4.576895139634961085e-01,1.834202285315616326e-02 +4.372536571802573269e-01,2.182962484725230537e-02 +4.165455605978101161e-01,2.035417654710549099e-02 +3.958914604768496437e-01,1.836953611146535312e-02 +3.750752877779504058e-01,1.822242821441865876e-02 +3.546223564011765639e-01,2.155228609091961942e-02 +3.342547382611816831e-01,1.858228065009046026e-02 +3.146878560285739646e-01,1.156340330634707432e-02 +2.950769340651359096e-01,4.794451515366793433e-03 +2.746448766129739871e-01,8.841367238864105511e-04 +2.561499989203335770e-01,3.399377231100267696e-03 +2.558224842623357809e-01,1.772245924698529276e-02 +2.607548580249748893e-01,2.712721695405729064e-02 +2.519826606254728651e-01,3.736259326513226980e-02 +2.651053749062199927e-01,5.237195636908020813e-02 +2.841646398685561126e-01,6.068051797180541024e-02 +3.043869206714955866e-01,6.519639719710720871e-02 +3.246415832722492345e-01,6.987085989809299624e-02 +3.447574268345988679e-01,7.500337726972873542e-02 +3.590488730519197369e-01,7.854601994331429637e-02 +3.588207889265301320e-01,1.027282811211094049e-01 +3.774600278885914539e-01,1.116743389437870326e-01 +3.939964522519617263e-01,1.242332040982212504e-01 +4.125111083266129186e-01,1.334535393078389587e-01 +4.328140235131683888e-01,1.376451889631381820e-01 +4.535899159117829926e-01,1.382262460477205746e-01 +4.743010798454886379e-01,1.366202849388073737e-01 +4.949092665593818330e-01,1.338047243469174530e-01 +5.153423772857352869e-01,1.300065948189606524e-01 +5.358035500946944918e-01,1.265592893174871114e-01 +5.565850519189668999e-01,1.261821914693574964e-01 +5.773046096680919392e-01,1.276485399770990459e-01 +5.979192728504387766e-01,1.300991491467596017e-01 +6.186063905306566912e-01,1.285769887887472374e-01 +6.264165055409182115e-01,1.441626517287988574e-01 +6.084879630946677942e-01,1.513790997602392774e-01 +5.889067312417585187e-01,1.582324225874941759e-01 +5.709158500058149066e-01,1.637798277331614094e-01 +5.829427281480297207e-01,1.768870147188549014e-01 +5.962426566283285378e-01,1.836441821358454074e-01 +5.873310391186616908e-01,2.023203192560496244e-01 +5.955472470681603125e-01,2.192525957325398289e-01 +6.157110284759148566e-01,2.164617005890537571e-01 +6.325239015620387484e-01,2.044599095535112598e-01 +6.463687871000829421e-01,1.889830666715979768e-01 +6.637073357086602510e-01,1.789931080521937057e-01 +6.843756796635966921e-01,1.771387469167495787e-01 +7.050876004630652893e-01,1.756841577296946455e-01 +7.228685007376776106e-01,1.656039051055779865e-01 +7.347301668143177977e-01,1.486146976146630327e-01 +7.454997612883688118e-01,1.310088981321761159e-01 +4.342437335578586133e-01,1.196548486301945713e-01 +4.249931597149197993e-01,1.021465157349546182e-01 +4.431573121621229516e-01,1.033685851456466881e-01 +4.327979155764419827e-01,8.119698922628121318e-02 +5.791678393199266583e-01,4.683720243458874832e-02 +5.600481275692638095e-01,4.913266241049782379e-02 +5.703199112247256952e-01,3.223735582131546928e-02 +5.694065617443584415e-01,6.510445689241767253e-02 +3.729099098014719282e-01,7.588970651227115727e-02 +3.713259223856430480e-01,6.020155678988511200e-02 +3.913494746313673778e-01,6.513988966121869728e-02 +4.489027333954185295e-01,1.220146854881770937e-01 +3.966844771478202913e-01,3.007845966302912649e-02 +4.127767276766229898e-01,3.845200067097525459e-02 +3.897028489075006763e-01,4.619143900216118870e-02 +5.373671478773133225e-01,2.626854187870097251e-02 +5.449978971063528244e-01,4.173122720846152850e-02 +5.274322292970998749e-01,4.611295675959783263e-02 +4.063468839715850267e-01,5.578404248371835600e-02 +5.452178651509079765e-01,5.987333982811281208e-02 +5.376426667325697739e-01,7.741706062790340570e-02 +5.424265007645230341e-01,9.507890271638777535e-02 +5.262528176546081848e-01,8.944268327162481491e-02 +5.336388727917799057e-01,1.097983114018212109e-01 +7.269487889127156377e-01,5.057233856684396900e-02 +7.092945931060817832e-01,5.597867844314816099e-02 +6.937204092139308553e-01,4.385179871722647699e-02 +5.172395528591255953e-01,2.873878867387768751e-02 +5.061978950356413876e-01,4.886545944405950442e-02 +5.209208187290040870e-01,6.803981252464945395e-02 +5.500758772469879210e-01,1.118764312188671034e-01 +5.611573855278617629e-01,1.017962419162790066e-01 +4.357955722521434372e-01,3.746697552240241952e-02 +4.544528583825787615e-01,3.739337412243948222e-02 +4.456831744504362591e-01,5.223134486863063863e-02 +4.062798027856990846e-01,1.093228081590050388e-01 +4.188218694512946816e-01,1.171697726738693129e-01 +4.102456787944520622e-01,9.052901535032226166e-02 +4.476928036408613365e-01,6.825653957052724152e-02 +4.280521667396599561e-01,5.778457565906573723e-02 +5.963412147318548628e-01,4.741514381336982276e-02 +5.880551265617941503e-01,6.582634451945328091e-02 +5.881084476631334157e-01,1.039896108281567477e-01 +5.764888304552213683e-01,8.618552554528771670e-02 +5.969044333131187097e-01,8.651307634314052419e-02 +4.593067003536401849e-01,5.602093934397823355e-02 +4.101427327619538987e-01,7.201221667655635650e-02 +3.920642768582170978e-01,8.163878767873165854e-02 +5.557358463675169391e-01,2.774794932977063880e-02 +6.975383731977162771e-01,1.005652339550490437e-01 +7.084789515197192911e-01,7.944346818487761641e-02 +7.203969953642641588e-01,1.005954880954233188e-01 +5.094656220627532539e-01,8.624892395284664004e-02 +4.649928665887081980e-01,7.549114555230469759e-02 +4.743207563854457964e-01,1.185415719113917937e-01 +4.599466087679820459e-01,1.111271411768810780e-01 +5.549285548699842696e-01,8.142678498341451854e-02 +4.551838841893720566e-01,8.934908961706794495e-02 +4.816983774696491638e-01,7.355729808608921227e-02 +4.741502917257942595e-01,9.587372408431432680e-02 +4.724864757041271623e-01,6.071461300340721262e-02 +5.854158641703429700e-01,2.877143132076027260e-02 +4.926443145896441944e-01,8.902489723927350940e-02 +5.026563909703647415e-01,1.057195321304067320e-01 +4.989069704531063909e-01,6.912532709282120935e-02 +6.148950463577963488e-01,4.769997585868980539e-02 +6.081764502965514296e-01,6.820064959948476946e-02 +4.983017234011162255e-01,3.036901423672471942e-02 +4.870093457565153328e-01,5.111408154441415136e-02 +6.156314067341777108e-01,8.951099367895624936e-02 +6.035037473883817505e-01,1.085170707341148177e-01 +4.889215893649537792e-01,1.127542300952644599e-01 +7.033776867718856129e-01,1.572182026170593494e-01 +7.127548280341493570e-01,1.348340837342054954e-01 +4.821256212591457091e-01,3.107867673982016993e-02 +5.760606343703283949e-01,1.095590809791465725e-01 +5.171132633345576490e-01,1.085415278521753429e-01 +4.705320233567777399e-01,4.203861859452746180e-02 +6.244772635348241341e-01,1.119876696147996675e-01 +6.747260359779916339e-01,5.182907263558750310e-02 +6.586735895423508902e-01,5.759134976248155707e-02 +6.649682782765020672e-01,3.659425460269649655e-02 +6.717376693073134897e-01,7.518010213658207763e-02 +6.486549983363694150e-01,4.073347190052856864e-02 +6.323808373017443252e-01,4.575064497681372716e-02 +6.384924849506534716e-01,2.857767394391923232e-02 +6.433376866990196952e-01,6.117830270480295596e-02 +6.279414388897380794e-01,6.926839004838587777e-02 +6.486168684147077812e-01,8.003289445114693257e-02 +6.325517764241692653e-01,9.250526906880690570e-02 +6.793453130401660989e-01,3.540074831715508269e-02 +6.220087633080995104e-01,1.974847485632850730e-01 +6.068386530809840584e-01,2.035666060611887318e-01 +6.091287001739214002e-01,1.877917020397086578e-01 +2.871268808950923068e-01,2.552545903434105465e-02 +2.699797579631192379e-01,1.236163385936527546e-02 +6.288833133821083443e-01,1.832373693500979339e-01 +6.141642948694776560e-01,1.698875026299857260e-01 +7.301770900477109194e-01,1.194669390750087434e-01 +6.905320108031363091e-01,6.361565104348422539e-02 +6.443017213945632093e-01,1.047447271905412175e-01 +3.810268403412160332e-01,3.126045057065917482e-02 +6.630584230104574761e-01,9.769625159240864776e-02 +6.579353213176684090e-01,1.224481550091651993e-01 +3.684284336743531840e-01,4.244570474794177178e-02 +6.756689601957373004e-01,1.295728221927230916e-01 +6.938170746656735499e-01,1.219403473844171831e-01 +6.887350252909416604e-01,1.417885241312375477e-01 +6.766778746264225930e-01,1.106002403909042975e-01 +6.817790947860835615e-01,1.607826908326132898e-01 +6.895134604407897605e-01,8.228156039179612691e-02 +6.790810830020701516e-01,9.317139037611185670e-02 +6.345394578082834691e-01,1.655380201434203946e-01 +3.654699837918085614e-01,8.910706415533609093e-02 +3.798174036499797346e-01,9.519895117036647481e-02 +3.948556117908395002e-01,9.883756056365451681e-02 +3.298469671614444598e-01,3.137567963924553505e-02 +3.505413267147072798e-01,3.779704150434680388e-02 +3.178099865498401622e-01,4.496260597750696697e-02 +3.099135760924789373e-01,2.891246994553925420e-02 +3.015370111682841858e-01,4.598732879478401037e-02 +2.856268949959173686e-01,4.577638656766912229e-02 +3.329728302069764334e-01,5.171110057758501050e-02 +3.504485143695184046e-01,5.601820636554179222e-02 +2.697983514291162899e-01,3.781681864054255854e-02 +6.520430374262418116e-01,1.604972907362491874e-01 +6.649412839351933613e-01,1.656376841156436686e-01 +6.650125072921202474e-01,1.463829980264068353e-01 +6.391706748214522893e-01,1.237981224002285552e-01 +6.034265338677554658e-01,2.817996906978937829e-02 +6.211038038726796051e-01,2.738505842990147932e-02 +7.219332361132148046e-01,6.726084751763264369e-02 +6.419913293207782923e-01,1.431839743360985295e-01 +7.116743815361356029e-01,1.150073455413507528e-01 +4.387005228599907269e-01,1.115117168879206228e-01 +4.340752359385213754e-01,1.027575504403006601e-01 +4.296184466363891508e-01,1.109006821825745948e-01 +4.379776138692824672e-01,9.228278718596392982e-02 +4.288955376456808910e-01,9.167175248061791570e-02 +5.747438752723261768e-01,3.953727912795214350e-02 +5.651840193969948078e-01,4.068500911590664654e-02 +5.696079834445952894e-01,4.798493242254328606e-02 +5.858984519940586555e-01,1.679326961114859240e-01 +5.647273446568111810e-01,5.711855965145774816e-02 +5.742872005321425499e-01,5.597082966350321043e-02 +5.960510306109756407e-01,1.666391628372984324e-01 +3.821296922164196808e-01,7.051479808674493421e-02 +3.813376985085051851e-01,6.267072322555192199e-02 +3.721179160935574881e-01,6.804563165107815892e-02 +4.460300227787707406e-01,1.126916353169118978e-01 +4.415732334766385714e-01,1.208347670591858325e-01 +3.931936630276605116e-01,3.813494933259514025e-02 +4.012397882920618608e-01,4.232171983656821818e-02 +4.047306024122216406e-01,3.426523016700217666e-02 +4.095107484725779012e-01,2.880495976687996035e-02 +4.014646232081765520e-01,2.461818926290688242e-02 +4.387225357368733647e-01,1.289812550401935043e-01 +4.460520356556533783e-01,1.301611734691847655e-01 +5.323996885872066542e-01,3.619074931914942339e-02 +5.362150632017264051e-01,4.392209198402970138e-02 +5.411825224918330735e-01,3.399988454358125051e-02 +4.095618058241040083e-01,4.711802157734677060e-02 +3.980248664395428237e-01,5.098774074293973418e-02 +5.363250472240039812e-01,5.299314829385533970e-02 +5.451078811286302894e-01,5.080228351828717376e-02 +5.319477421935889794e-01,8.342987194976411724e-02 +5.343396592095654984e-01,9.226079299400631595e-02 +5.400345837485465150e-01,8.624798167214559053e-02 +5.299458452231939898e-01,9.962049733672301288e-02 +5.380326867781515254e-01,1.024386070591044862e-01 +7.117243775899279035e-01,4.355332253598603875e-02 +7.181216910093987105e-01,5.327550850499605112e-02 +7.205514754932449417e-01,4.085015259783392888e-02 +7.039372856438524950e-01,3.748988267302524879e-02 +7.015075011600062638e-01,4.991523858018737103e-02 +5.117187239473834914e-01,3.880212405896859423e-02 +5.168150621663707422e-01,4.748920810182865465e-02 +5.223358910781128461e-01,3.742587271673777916e-02 +5.135593568823227928e-01,5.845263598435444796e-02 +5.241765240130520365e-01,5.707638464212363288e-02 +5.640606504981588998e-01,1.142234839842376365e-01 +5.556166313874248974e-01,1.068363365675730342e-01 +5.585198963577220344e-01,1.192635786355317057e-01 +4.407393733512898204e-01,4.484916019551651173e-02 +4.500680164165075103e-01,4.481235949553502573e-02 +4.451242153173610716e-01,3.743017482242093352e-02 +3.960548904707476003e-01,1.135535513486068404e-01 +4.046061607962959661e-01,1.193962491260129183e-01 +4.510206997904603887e-01,2.904285679856016822e-02 +4.416920567252426988e-01,2.907965749854162299e-02 +4.219075145831072682e-01,1.096581442044119586e-01 +4.156364812503094419e-01,1.057346619469798354e-01 +4.125508361184969663e-01,1.132462904164371759e-01 +4.176194192546859307e-01,9.633776554263842606e-02 +4.082627407900756289e-01,9.992591175466362940e-02 +4.265328015045766197e-01,1.184123106520319352e-01 +4.206907668008715850e-01,1.266358446154262074e-01 +4.284016988541535786e-01,1.278783825935888296e-01 +5.525230123378084279e-01,4.543194480947969349e-02 +5.526329963600860040e-01,5.450300111930533181e-02 +5.481342947698901735e-01,1.189672025264517374e-01 +4.466879890456487701e-01,6.024394221957891926e-02 +4.368676705950481076e-01,5.500796026384815324e-02 +4.378724851902606741e-01,6.302055761479651019e-02 +4.304250411580509139e-01,6.949078244267345439e-02 +4.402453596086516319e-01,7.472676439840422735e-02 +6.939953749323919396e-01,3.450523707166565368e-02 +5.877545270258908161e-01,4.712617312397928554e-02 +5.836114829408605154e-01,5.633177347702101462e-02 +5.921981706468244511e-01,5.662074416641158653e-02 +5.925064404881260627e-01,9.525134358564862902e-02 +5.866966318841699835e-01,8.634930094421411351e-02 +5.822986390591773365e-01,9.508756818672221833e-02 +5.924797799374563745e-01,7.616971043129691643e-02 +5.822719785085077593e-01,7.600593503237050574e-02 +4.534997519972507884e-01,6.213873945725274794e-02 +4.524949374020382220e-01,5.412614210630443262e-02 +4.011035048100854428e-01,7.682550217764401446e-02 +4.011549778263345245e-01,8.608390151452695316e-02 +4.101942057782029805e-01,8.127061601343930908e-02 +5.630278787961213727e-01,2.999265257554305578e-02 +5.578919869683903743e-01,3.844030587013422956e-02 +5.573122134476331535e-01,6.248889836026525618e-02 +7.089676842809902180e-01,1.005803610252361813e-01 +7.144379734419917805e-01,9.001947814015044680e-02 +7.030086623587177286e-01,9.000435106996332313e-02 +7.257329763057447369e-01,9.358453323855464578e-02 +7.197739543834722475e-01,8.300852328328178764e-02 +4.082448083667694627e-01,6.389812958013732502e-02 +3.988481793014762022e-01,6.046196607246847460e-02 +4.007461036966606382e-01,6.857605316888754077e-02 +5.178592198586807749e-01,8.784580361223572054e-02 +5.235868181918061914e-01,7.874124789813712055e-02 +5.151932203958786705e-01,7.714436823874804006e-02 +4.621497834711741914e-01,6.575604244814145516e-02 +4.563428351147847950e-01,7.187384256141597649e-02 +4.671336825767139489e-01,1.148343565441364428e-01 +4.619556418443678814e-01,1.243711659038019834e-01 +4.691427156530997289e-01,1.280783812710573344e-01 +5.503668717369348817e-01,3.473958826911609926e-02 +5.500732100104460676e-01,7.065006240576368612e-02 +5.621675583071713556e-01,7.326562093791609553e-02 +4.514383439151166688e-01,7.880281459379759323e-02 +4.600883753890401273e-01,8.242011758468632820e-02 +4.568797793681094732e-01,4.670715673320885442e-02 +4.695715791572512288e-01,8.568243481830951913e-02 +4.779243345977217672e-01,8.471551108520176954e-02 +4.733456220291786809e-01,7.452422181919696187e-02 +4.770924265868882186e-01,6.713595554474818816e-02 +4.687396711464176802e-01,6.810287927785595163e-02 +3.917068757447922378e-01,7.338933866997519873e-02 +4.319238694959016689e-01,4.762577559073409572e-02 +4.242861499643831857e-01,3.795948809668882318e-02 +4.204144472081414730e-01,4.811828816502046469e-02 +5.822918517451348697e-01,3.780431687767449311e-02 +5.778678876975343881e-01,3.050439357103785359e-02 +5.783238714334606456e-01,1.873448246586010071e-02 +5.707758949606520638e-01,2.046744471613768171e-02 +4.976503527800044679e-01,9.737221468484011377e-02 +5.060610065165589422e-01,9.598422804162670685e-02 +5.010549683261986686e-01,8.763691059606006084e-02 +5.041862962579297669e-01,7.768712552283393857e-02 +4.957756425213752927e-01,7.907511216604734550e-02 +4.313453494095050300e-01,2.948290811233162528e-02 +4.198359271217447786e-01,2.997542068661802547e-02 +6.056181305448256058e-01,4.755755983602982795e-02 +6.022588325142030907e-01,5.780789670642731692e-02 +6.115357483271738337e-01,5.795031272908728742e-02 +4.926555345788157791e-01,4.074154789056943365e-02 +4.966036203960783602e-01,4.998977049423682789e-02 +5.022498092183789176e-01,3.961723684039211019e-02 +4.929581581048108618e-01,6.011970431861767689e-02 +5.025524327443740003e-01,5.899539326844032566e-02 +4.544246710817002599e-01,1.165709133325290719e-01 +4.515519604650525265e-01,1.072478631612638900e-01 +4.575652464786770790e-01,1.002381153969745115e-01 +4.491705981757474486e-01,9.635883738135730958e-02 +5.077706381301210214e-01,2.955390145530120347e-02 +6.002040903507501746e-01,9.751507353862767791e-02 +6.095675770612797306e-01,9.901403220653552661e-02 +6.062679200236481547e-01,8.801203501104837290e-02 +6.119039285153644592e-01,7.885582163922050247e-02 +6.025404418048350141e-01,7.735686297131266764e-02 +5.130850822253645305e-01,1.933140242167257286e-02 +5.036161674963599566e-01,2.014651520309608881e-02 +4.815359405453740194e-01,1.043139770897893864e-01 +4.742355240556200835e-01,1.072076479978530533e-01 +4.816211728751997878e-01,1.156479010033281130e-01 +4.794706867808467554e-01,1.269395727252534412e-01 +4.867711032706008023e-01,1.240459018171897881e-01 +4.933045186528911552e-01,2.143103854271694725e-02 +7.163450903163715022e-01,1.573589145638199793e-01 +7.090741034634966411e-01,1.646472150944611468e-01 +7.080662574030175405e-01,1.460261431756324224e-01 +7.210336609475034297e-01,1.461668551223930801e-01 +4.907829519772989868e-01,1.008895636672689777e-01 +4.833973031577192270e-01,9.244931066179390422e-02 +4.871713460296467346e-01,8.129109766268136084e-02 +4.439908998829070752e-01,8.527303942167456519e-02 +4.902136723301310228e-01,3.072384548827242559e-02 +4.845674835078304654e-01,4.109637914211717452e-02 +5.820845410167310163e-01,1.067743459036516740e-01 +5.762747324127748261e-01,9.787230326221717236e-02 +5.098848271524610842e-01,1.071305299912910514e-01 +5.132894426986553960e-01,9.739522590251098455e-02 +4.624924408696782230e-01,3.971599635848343385e-02 +4.649193618552089902e-01,4.902977896925284768e-02 +4.658965880288836736e-01,5.836777617369270227e-02 +4.715092495304524789e-01,5.137661579896735109e-02 +6.200543351345010334e-01,1.007493316468779238e-01 +6.139905054616029423e-01,1.102523701744572288e-01 +6.059100442085789684e-01,1.192224219627907728e-01 +6.163968022818001602e-01,1.209577214031332115e-01 +7.259965904544039006e-01,1.370544212948662244e-01 +5.465514971224152418e-01,2.700824560423579004e-02 +5.958060975257575276e-01,1.062533407811357827e-01 +5.878465202258751354e-01,1.165814556836255039e-01 +5.955441700884992473e-01,1.188451856366045389e-01 +6.698471571272468505e-01,4.421166361914201370e-02 +6.618209339094265342e-01,4.709280218258900946e-02 +6.666998127601712065e-01,5.471021119903449886e-02 +6.652056294248320789e-01,6.638572594953183470e-02 +6.732318526426526173e-01,6.350458738608477649e-02 +4.957889901676592048e-01,1.092368811128355960e-01 +4.970293774324341385e-01,1.223911558038690978e-01 +5.038967782351395641e-01,1.188738068214402477e-01 +4.763288223079616968e-01,3.655864766717382974e-02 +4.787706845566465086e-01,4.657635006947084128e-02 +4.749683799719026100e-01,2.349435177646279349e-02 +4.691715810207187087e-01,2.897432270381645331e-02 +6.435737416435114433e-01,3.465557292222386926e-02 +6.354366611261988984e-01,3.716415946036649709e-02 +6.405179178190568701e-01,4.324205843867116178e-02 +6.378592620003820102e-01,5.346447384080835891e-02 +6.459963425176944440e-01,5.095588730266575883e-02 +5.530929810552107639e-01,1.808416219368137387e-02 +5.439086318101089557e-01,1.734445846814649042e-02 +6.302466076569537279e-01,8.088682955859639867e-02 +6.405843224194385233e-01,8.626908175997691219e-02 +6.382791536522229858e-01,7.465064224976637741e-02 +6.459772775568636272e-01,7.060559857797493732e-02 +6.356395627943788318e-01,6.522334637659443768e-02 +6.868078268455095614e-01,3.027971187162990796e-02 +6.865328611270484771e-01,3.962627351719079372e-02 +6.768389659140129355e-01,2.735151373728880383e-02 +6.155687317410103443e-01,1.926382253014968793e-01 +6.079836766274526738e-01,1.956791540504486671e-01 +6.144237081945418399e-01,2.005256773122369163e-01 +4.843538616130822483e-01,6.233568981525171304e-02 +4.903026739613778329e-01,7.134131258945521081e-02 +6.157327942931700715e-01,2.073869667088166224e-01 +6.233178494067277420e-01,2.043460379598647791e-01 +2.774529108307137726e-01,7.425663993047984003e-03 +2.785533194291057724e-01,1.894354644685318154e-02 +2.860264722967003070e-01,1.400757658053585798e-02 +2.667577749819346478e-01,1.851114238187710412e-02 +2.753313364479211822e-01,2.509305496936501192e-02 +2.960180258728957181e-01,1.680480496480155767e-02 +6.190060067780148723e-01,1.855145356949033097e-01 +6.254460383451039274e-01,1.903610589566915312e-01 +6.215238041257931112e-01,1.765624359900418439e-01 +6.116464975216995281e-01,1.788396023348471642e-01 +6.011859729793618268e-01,1.828895563306917604e-01 +6.037037703271398437e-01,1.739374566258302945e-01 +5.335176622433099869e-01,1.744098797668630629e-02 +5.908785394510989164e-01,3.809328756706506502e-02 +6.568116383064357411e-01,3.866386325161252913e-02 +6.536642939393600971e-01,4.916241083150507674e-02 +6.595226957622242203e-01,2.565143000757686212e-02 +6.513660557921578942e-01,2.772103865649286347e-02 +7.368106543423943444e-01,1.109916512547882983e-01 +7.400885450238554597e-01,1.206522030063607170e-01 +6.536452289785293912e-01,6.881212210681419972e-02 +6.601772688610105799e-01,7.760649829386451204e-02 +7.319206070006709641e-01,1.015559257649955582e-01 +7.252870427059875391e-01,1.100312135852160172e-01 +6.301611380957411468e-01,5.750951751259980593e-02 +6.842232225959612446e-01,4.784043567640700739e-02 +6.826290233905638605e-01,5.772236183953586425e-02 +6.921262100085336932e-01,5.373372488035534078e-02 +6.811348400552248439e-01,6.939787659003313069e-02 +6.285145199794968107e-01,1.022464693418032866e-01 +6.240915915791735991e-01,9.100813137388155671e-02 +6.217864228119578396e-01,7.938969186367104969e-02 +6.384267489093662373e-01,9.862499812967404078e-02 +6.343894924646937827e-01,1.083661984026704217e-01 +6.464592949046354953e-01,9.238881082084403340e-02 +3.888556587445181623e-01,3.066945511684416800e-02 +3.853648446243583825e-01,3.872594478641017829e-02 +6.536800722025103427e-01,1.012204893914749465e-01 +6.511185213561159202e-01,1.135964410998532015e-01 +6.604968721640629425e-01,1.100722033007869027e-01 +3.747276370077846086e-01,3.685307765930045942e-02 +3.790656412909269024e-01,4.431857187505149759e-02 +6.822019927433393693e-01,1.356806731619803474e-01 +6.912760499783074941e-01,1.318644357578273585e-01 +6.847430174307054251e-01,1.257565847885701582e-01 +6.852474746460480715e-01,1.162702938876607611e-01 +6.761734174110800577e-01,1.200865312918136946e-01 +6.960563560314135811e-01,1.495033633741484624e-01 +6.852570600385124999e-01,1.512856074819254326e-01 +6.925783907789845317e-01,1.590004467248363473e-01 +6.882605232382601468e-01,1.686142410700089689e-01 +6.990598192311612280e-01,1.668319969622319709e-01 +6.900227356219630348e-01,7.294860571764016921e-02 +6.989962059802545813e-01,8.086251428833682309e-02 +6.995054811614278556e-01,7.152955961418087927e-02 +7.088867723129005372e-01,6.771107331401286789e-02 +6.999133019546089907e-01,5.979716474331619319e-02 +6.935259168192530188e-01,9.142339717342254368e-02 +6.842972717214299561e-01,8.772647538395397793e-02 +6.883097280998932144e-01,9.686831216558045021e-02 +6.778794788142463723e-01,1.018858153835080632e-01 +6.871081239120695461e-01,1.055827371729766567e-01 +3.805143856465718621e-01,5.319649789602314688e-02 +3.698771780299980882e-01,5.132363076891345577e-02 +3.905261617694340548e-01,5.566566433168992217e-02 +5.292817427307869860e-01,7.272843657627642289e-02 +5.414302659417388197e-01,6.864520022800812971e-02 +5.330693419399560318e-01,6.395657617638113301e-02 +7.347077214611846818e-01,1.293708489652678206e-01 +6.317113855951959067e-01,1.743876947467591643e-01 +6.243518763388805626e-01,1.677127613867030465e-01 +6.266179798482882646e-01,1.576404173392635388e-01 +6.164303983788852470e-01,1.598151585825462184e-01 +3.726436937208941202e-01,9.215300766285126899e-02 +3.763636567257258037e-01,8.554432884131880910e-02 +3.691899467966402448e-01,8.249838533380363104e-02 +3.640131313655592393e-01,7.570705048122369774e-02 +3.602931683607275559e-01,8.231572930275617150e-02 +3.859408402540983607e-01,8.841886942454907361e-02 +3.873365077204096174e-01,9.701825586701050275e-02 +3.934599443245282990e-01,9.023817412119310155e-02 +3.401941469380758698e-01,3.458636057179614864e-02 +3.474081250327709647e-01,2.955769191108468044e-02 +3.370609452561394992e-01,2.634701097853402868e-02 +3.238284768556423110e-01,3.816914280837625101e-02 +3.198802716269616986e-01,3.014407479239237728e-02 +3.138617813211595498e-01,3.693753796152308977e-02 +3.271668587583311805e-01,2.321857155020899677e-02 +3.172001632238484747e-01,2.198696670335587369e-02 +3.824870933298445408e-01,7.876424709550140790e-02 +5.688231079915415656e-01,9.399088373078336167e-02 +5.686090099490950234e-01,1.056776614477127896e-01 +5.580429701989230162e-01,9.161151344984674871e-02 +5.657086926626027079e-01,8.380615526435113150e-02 +5.729476960997899049e-01,7.564499121885269461e-02 +2.935819530821007772e-01,4.588185768122658020e-02 +2.898915290426322677e-01,5.463036462649909636e-02 +2.978465871288156763e-01,5.473583574005656122e-02 +3.417570784608418566e-01,4.475407104096590372e-02 +3.314098986842103911e-01,4.154339010841525542e-02 +2.985202284937856221e-01,2.721896448994015269e-02 +3.074113734715889779e-01,1.849831042040069040e-02 +3.417106722882474190e-01,5.386465347156341871e-02 +3.504949205421128422e-01,4.690762393494431193e-02 +3.337872256331476661e-01,6.228073099906758503e-02 +3.425250677144186517e-01,6.443428389304599324e-02 +5.216830404945829169e-01,9.899210556190009280e-02 +5.253760680631687219e-01,1.091699196269982908e-01 +3.594848801945302319e-01,4.012137312614430518e-02 +3.666245003366569444e-01,3.099693832964496229e-02 +3.576809468568340478e-01,2.867260670784749568e-02 +3.096734988590622017e-01,4.547496738614548867e-02 +3.057252936303815893e-01,3.744989937016165310e-02 +2.784626161621043261e-01,3.167113883744177016e-02 +2.777126232125168293e-01,4.179660260410583694e-02 +2.863768879455048655e-01,3.565092280100509020e-02 +2.722190326310829911e-01,4.717097647540336586e-02 +2.801333044144835305e-01,5.115076043896665120e-02 +5.213209872600854666e-01,1.182765812707213676e-01 +5.295837919886966505e-01,1.189049730455443016e-01 +2.943319460316882741e-01,3.575639391456252036e-02 +6.432912476172625293e-01,1.630176554398347633e-01 +6.441350332915587451e-01,1.736408986015483824e-01 +6.528868231005380274e-01,1.711205338979627788e-01 +6.180589445931446990e-01,6.873451982393530280e-02 +6.733958010391019045e-01,1.535828444295100903e-01 +6.649768956136568043e-01,1.560103410710252658e-01 +6.733601893606384614e-01,1.632101874741284653e-01 +6.694771962790895259e-01,1.717933972762691885e-01 +6.778961017045346260e-01,1.693659006347540130e-01 +2.632150058696572925e-01,4.221552539445026092e-02 +2.605137589844032098e-01,3.280793375938834133e-02 +2.666670717149332015e-01,3.123873477246576214e-02 +2.599898789815596190e-01,1.074699954536543697e-02 +2.671449055922823224e-01,6.180816929682604773e-03 +6.214182426237673251e-01,5.848418295353784158e-02 +5.715122749193922713e-01,1.181049035156714333e-01 +4.025506452926457257e-01,9.468328795698838229e-02 +6.417361981080076383e-01,1.142714247953848655e-01 +6.485529980695603491e-01,1.231231387046968773e-01 +5.944211990190493289e-01,2.847570019527482718e-02 +5.998838742998051643e-01,3.779755644157961614e-02 +7.214659590409301382e-01,1.271505114046071472e-01 +5.887118358623621983e-01,1.901640738566043667e-02 +5.977171707110684462e-01,1.872067626017498779e-02 +5.273033503682194034e-01,2.750366527628933175e-02 +5.234538647342159567e-01,1.867611137427466206e-02 +3.253914083784082978e-01,4.833685327754600608e-02 +6.091607901127759073e-01,3.793997246423959357e-02 +6.179994251152379769e-01,3.754251714429564235e-02 +6.122651688702175354e-01,2.778251374984543054e-02 +6.080966811772421377e-01,1.922182612827539119e-02 +6.169353161797040963e-01,1.882437080833140874e-02 +5.099138945910551834e-01,6.858256980873533859e-02 +3.594384740219357943e-01,4.923195555674175078e-02 +3.608872183775807541e-01,5.810988157771346946e-02 +3.527824336495824498e-01,6.577130040785902909e-02 +3.632211376576447437e-01,6.786297562003067163e-02 +7.265010966802201153e-01,7.691721294965933597e-02 +7.152060938164670478e-01,7.335215785125509536e-02 +3.729237036700884245e-01,2.540431124100371238e-02 +7.244410125129652211e-01,5.891659304223832716e-02 +7.156139146096482939e-01,6.161976298039040234e-02 +3.832623576593306991e-01,2.464946404973738722e-02 +7.295942248306432898e-01,6.716349810053916236e-02 +4.171995253556224914e-01,5.678430907139204314e-02 +4.190974497508069829e-01,6.489839616781103993e-02 +6.593359463550136912e-01,1.736907305876600194e-01 +6.584921606807175865e-01,1.630674874259464557e-01 +6.585277723591809185e-01,1.534401443813279975e-01 +6.297981444116664829e-01,2.798136618691037317e-02 +6.267423205872120207e-01,3.656785170335760671e-02 +6.236379418297703925e-01,4.672531041775176280e-02 +6.359862622245618935e-01,2.026655488393335966e-02 +6.272919216855750157e-01,1.967024712692449703e-02 +5.787308441530762959e-01,6.546540070593551142e-02 +6.405810020711153463e-01,1.334910483681635285e-01 +6.499633253192234061e-01,1.328160646726318506e-01 +6.328562397806544171e-01,1.288392709064496711e-01 +6.342665670303173631e-01,1.385321968743846444e-01 +3.080627882776568183e-01,5.662501867655137661e-02 +7.122146047851425354e-01,1.249207146377780825e-01 +7.027457281009045209e-01,1.184738464628839749e-01 +7.032859513499114534e-01,1.283872155593113462e-01 +6.535019183064492143e-01,1.447834861812526963e-01 +6.470171833735101075e-01,1.518406325361738585e-01 +6.614739143048944392e-01,1.344155765177860173e-01 +6.318239691781382117e-01,1.178928960075140697e-01 +6.754093761546917651e-01,8.417574625634696717e-02 +6.673980461588855384e-01,8.643817686449535576e-02 +6.710697530062638139e-01,9.543382098426023141e-02 +6.698681488184401456e-01,1.041482459916564657e-01 +6.806255648740515696e-01,7.873083126418908839e-02 +3.910911760626328837e-01,2.405846859592234571e-02 +7.308278648489526796e-01,4.212002963127563920e-02 +7.359669286501002716e-01,4.961744240195600786e-02 +7.321020012303937063e-01,5.881924362514480420e-02 +3.237806977970029143e-01,5.948690456795185932e-02 +6.768737662915309539e-01,1.440857610788221776e-01 +4.670484502468882360e-01,1.035004326305977024e-01 +6.956777239316949135e-01,1.112527906697331204e-01 +7.007449266625455087e-01,1.383113039327215354e-01 +4.646670879575831581e-01,9.261140685069112199e-02 +3.161992759684347787e-01,5.611265726791282021e-02 +6.382653935645308252e-01,1.543609972397594898e-01 +6.303439156045357317e-01,1.464633944356025785e-01 +3.903427949733177527e-01,1.083109275509315933e-01 +4.005677072882692924e-01,1.040801843613297778e-01 +7.160356884501999364e-01,1.078014168183870219e-01 +7.209257357919232057e-01,1.172371423081797481e-01 +3.828236909028878698e-01,1.064916228542875654e-01 +3.737960325758624136e-01,1.015676223721816152e-01 +4.214703241691979407e-01,7.660460295141875708e-02 +6.343056843700711767e-01,1.901079175073047967e-01 +6.413069610784711827e-01,1.824905732048871521e-01 +4.215217971854470225e-01,8.586300228830172354e-02 +6.255095341373403395e-01,1.229340445137352272e-01 +6.308684093330667597e-01,1.972316071138983384e-01 +6.673065979720456120e-01,1.165241977000347207e-01 +6.668021407567028547e-01,1.260104886009441594e-01 +6.703407337439288849e-01,1.379779101095649774e-01 +6.002302745466050471e-01,1.902945563480188396e-01 +5.981157884291727900e-01,6.701349705946901825e-02 +7.046063773669259955e-01,1.077862897481998844e-01 +6.063261641758153075e-01,2.115819911297156519e-01 +5.974803241947876931e-01,2.080438388071557676e-01 +5.990852510001365427e-01,1.981820083587588766e-01 +4.797479107303212476e-01,5.591434727391069587e-02 +6.696504485321810307e-01,2.794826688005952811e-02 +5.399157925422861659e-01,1.179281426179287773e-01 +4.108771941290937368e-01,1.233197313834450831e-01 +4.564337041580860399e-01,1.298149380594499913e-01 +6.065115551533133420e-01,1.625892088414538639e-01 +4.852164675819058970e-01,2.178586979426465689e-02 +6.770356745090788664e-01,4.361491047637128943e-02 +6.721567956583340830e-01,3.599750145992577227e-02 +6.462847990992999225e-01,2.164313967818819878e-02 +5.111252144172360179e-01,1.202848046823245393e-01 +3.587585980431672317e-01,9.203225598551362241e-02 +3.666223226467768548e-01,9.852167886466642321e-02 +6.510056381206852372e-01,5.938482623364223917e-02 +4.611319985336191918e-01,2.665170046777243229e-02 +5.818226135794726250e-01,1.193661907591204024e-01 +5.486775278172535408e-01,8.825284384990113307e-02 +5.517919431461923985e-01,9.843757231633340488e-02 +5.462856108012770218e-01,7.942192280565894824e-02 +5.418573750193839134e-01,1.108373713103441571e-01 +5.634838625320475192e-01,1.822274147036526473e-02 +5.462511890057555330e-01,1.034776669676274324e-01 +6.558376457125825176e-01,8.886457302177774853e-02 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad4/connectivity.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/connectivity.csv new file mode 100644 index 000000000..7768ede79 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/connectivity.csv @@ -0,0 +1,268 @@ +108,146,150,149 +146,110,147,150 +150,147,111,148 +149,150,148,109 +116,151,155,154 +151,10,152,155 +155,152,24,153 +154,155,153,119 +96,156,160,159 +156,117,157,160 +160,157,122,158 +159,160,158,114 +115,161,163,162 +161,94,95,163 +163,95,96,159 +162,163,159,114 +4,164,166,3 +164,123,165,166 +166,165,0,1 +3,166,1,2 +108,167,170,169 +167,88,89,170 +170,89,90,168 +169,170,168,125 +32,33,172,31 +33,34,171,172 +172,171,28,29 +31,172,29,30 +122,173,177,176 +173,133,174,177 +177,174,121,175 +176,177,175,132 +134,178,182,181 +178,127,179,182 +182,179,115,180 +181,182,180,132 +66,67,184,183 +67,68,69,184 +184,69,70,71 +183,184,71,72 +122,176,185,158 +176,132,180,185 +185,180,115,162 +158,185,162,114 +10,11,187,152 +11,12,186,187 +187,186,22,23 +152,187,23,24 +18,19,189,17 +19,20,188,189 +189,188,14,15 +17,189,15,16 +12,13,190,186 +13,14,188,190 +190,188,20,21 +186,190,21,22 +131,191,194,193 +191,124,192,194 +194,192,6,7 +193,194,7,8 +10,151,196,9 +151,116,195,196 +196,195,131,193 +9,196,193,8 +133,197,199,174 +197,44,45,199 +199,45,46,198 +174,199,198,121 +113,200,204,203 +200,112,201,204 +204,201,129,202 +203,204,202,111 +118,205,207,206 +205,117,156,207 +207,156,96,97 +206,207,97,98 +109,208,209,149 +208,86,87,209 +209,87,88,167 +149,209,167,108 +120,210,212,211 +210,134,181,212 +212,181,132,175 +211,212,175,121 +107,213,216,215 +213,82,83,216 +216,83,84,214 +215,216,214,106 +140,217,221,220 +217,141,218,221 +221,218,136,219 +220,221,219,118 +138,222,226,225 +222,137,223,226 +226,223,110,224 +225,226,224,126 +106,227,229,228 +227,109,148,229 +229,148,111,202 +228,229,202,129 +110,146,231,224 +146,108,169,231 +231,169,125,230 +224,231,230,126 +139,232,234,233 +232,80,81,234 +234,81,82,213 +233,234,213,107 +129,235,237,228 +235,128,236,237 +237,236,107,215 +228,237,215,106 +143,238,240,239 +238,139,233,240 +240,233,107,236 +239,240,236,128 +143,239,244,243 +239,128,241,244 +244,241,130,242 +243,244,242,58 +125,245,247,230 +245,127,178,247 +247,178,134,246 +230,247,246,126 +137,248,249,223 +248,113,203,249 +249,203,111,147 +223,249,147,110 +102,103,252,101 +103,0,250,252 +252,250,140,251 +101,252,251,100 +120,253,254,210 +253,138,225,254 +254,225,126,246 +210,254,246,134 +128,235,256,241 +235,129,201,256 +256,201,112,255 +241,256,255,130 +144,257,261,260 +257,145,258,261 +261,258,139,259 +260,261,259,64 +58,242,263,57 +242,130,255,263 +263,255,112,262 +57,263,262,56 +135,264,266,265 +264,133,173,266 +266,173,122,157 +265,266,157,117 +133,264,268,197 +264,135,267,268 +268,267,42,43 +197,268,43,44 +127,269,270,179 +269,92,93,270 +270,93,94,161 +179,270,161,115 +120,271,273,253 +271,48,49,273 +273,49,50,272 +253,273,272,138 +106,214,274,227 +214,84,85,274 +274,85,86,208 +227,274,208,109 +125,168,275,245 +168,90,91,275 +275,91,92,269 +245,275,269,127 +138,272,277,222 +272,50,51,277 +277,51,52,276 +222,277,276,137 +135,265,279,278 +265,117,205,279 +279,205,118,219 +278,279,219,136 +100,251,280,99 +251,140,220,280 +280,220,118,206 +99,280,206,98 +121,198,281,211 +198,46,47,281 +281,47,48,271 +211,281,271,120 +137,276,283,248 +276,52,53,283 +283,53,54,282 +248,283,282,113 +34,35,286,171 +35,36,284,286 +286,284,104,285 +171,286,285,28 +105,287,289,288 +287,104,284,289 +289,284,36,37 +288,289,37,38 +105,290,291,287 +290,26,27,291 +291,27,28,285 +287,291,285,104 +140,250,293,217 +250,0,165,293 +293,165,123,292 +217,293,292,141 +136,218,296,295 +218,141,292,296 +296,292,123,294 +295,296,294,124 +76,297,300,75 +297,142,298,300 +300,298,145,299 +75,300,299,74 +116,301,303,195 +301,42,267,303 +303,267,135,302 +195,303,302,131 +76,77,305,297 +77,78,79,305 +305,79,80,304 +297,305,304,142 +136,295,306,278 +295,124,191,306 +306,191,131,302 +278,306,302,135 +145,257,308,299 +257,144,307,308 +308,307,72,73 +299,308,73,74 +64,65,309,260 +65,66,183,309 +309,183,72,307 +260,309,307,144 +26,290,311,25 +290,105,310,311 +311,310,119,153 +25,311,153,24 +123,164,312,294 +164,4,5,312 +312,5,6,192 +294,312,192,124 +38,39,314,288 +39,40,313,314 +314,313,119,310 +288,314,310,105 +143,315,316,238 +315,62,63,316 +316,63,64,259 +238,316,259,139 +40,41,317,313 +41,42,301,317 +317,301,116,154 +313,317,154,119 +62,315,318,61 +315,143,243,318 +318,243,58,59 +61,318,59,60 +113,282,319,200 +282,54,55,319 +319,55,56,262 +200,319,262,112 +142,304,320,298 +304,80,232,320 +320,232,139,258 +298,320,258,145 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad4/coords.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/coords.csv new file mode 100644 index 000000000..e77761526 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/coords.csv @@ -0,0 +1,321 @@ +6.004848057265232963e-02,-4.843165897626279248e-01,0.000000000000000000e+00 +2.919332359799522297e-02,-4.701812391146036885e-01,0.000000000000000000e+00 +5.702108874354874096e-03,-4.472499915184301456e-01,0.000000000000000000e+00 +2.385056906748106702e-03,-4.150642388020465701e-01,0.000000000000000000e+00 +1.645017650033056902e-02,-3.841902982287730972e-01,0.000000000000000000e+00 +3.584009087991152365e-02,-3.561964218329775611e-01,0.000000000000000000e+00 +5.801395929437848376e-02,-3.303392552321408604e-01,0.000000000000000000e+00 +8.293073671007884784e-02,-3.076136294521122361e-01,0.000000000000000000e+00 +1.139952744725080680e-01,-2.937112322862951985e-01,0.000000000000000000e+00 +1.223662153155886806e-01,-2.742581642175385692e-01,0.000000000000000000e+00 +1.049977714551861979e-01,-2.452632505621556991e-01,0.000000000000000000e+00 +9.018002144510810225e-02,-2.145895105217175136e-01,0.000000000000000000e+00 +8.018218636456606041e-02,-1.820000072988329498e-01,0.000000000000000000e+00 +7.009580857725229708e-02,-1.494373557724055501e-01,0.000000000000000000e+00 +6.000943078761316468e-02,-1.168747042384712248e-01,0.000000000000000000e+00 +5.159311260193652493e-02,-8.390723200034304330e-02,0.000000000000000000e+00 +4.551221033791560955e-02,-5.036554966506464476e-02,0.000000000000000000e+00 +3.945391014193982970e-02,-1.705587469368324491e-02,0.000000000000000000e+00 +5.378040055042167950e-02,-1.829469177060037699e-02,0.000000000000000000e+00 +7.783299078513267188e-02,-4.238729981227122579e-02,0.000000000000000000e+00 +9.914043217408542719e-02,-6.898179277590112124e-02,0.000000000000000000e+00 +1.203002326042813541e-01,-9.570791807824664821e-02,0.000000000000000000e+00 +1.400404682056067829e-01,-1.234921134741018556e-01,0.000000000000000000e+00 +1.566149613706762644e-01,-1.532744504951372710e-01,0.000000000000000000e+00 +1.723219080626108846e-01,-1.835294940343784043e-01,0.000000000000000000e+00 +1.888516399720213401e-01,-1.804413418506362055e-01,0.000000000000000000e+00 +2.043082629230232594e-01,-1.502812316029054351e-01,0.000000000000000000e+00 +2.212522080849962658e-01,-1.207007071479050120e-01,0.000000000000000000e+00 +2.383489942146148621e-01,-9.121310084478087554e-02,0.000000000000000000e+00 +2.607724535093945417e-01,-6.555252185056814618e-02,0.000000000000000000e+00 +2.833132674505545179e-01,-3.998014228663895886e-02,0.000000000000000000e+00 +3.077003594001336828e-01,-1.639050410806901573e-02,0.000000000000000000e+00 +3.345127617005000387e-01,1.855931034488686763e-04,0.000000000000000000e+00 +3.281315322672765933e-01,-3.324266029778581016e-02,0.000000000000000000e+00 +3.211054836905261611e-01,-6.661238776510097770e-02,0.000000000000000000e+00 +3.116376623284484726e-01,-9.936020588996495595e-02,0.000000000000000000e+00 +3.021773192426413512e-01,-1.321102232909067697e-01,0.000000000000000000e+00 +2.927382818065917269e-01,-1.648660598444010583e-01,0.000000000000000000e+00 +2.807516240895960302e-01,-1.967513224319663856e-01,0.000000000000000000e+00 +2.679525727339239216e-01,-2.283464159888529410e-01,0.000000000000000000e+00 +2.529823465419616113e-01,-2.589193393631942786e-01,0.000000000000000000e+00 +2.358505800115569817e-01,-2.883742698221542500e-01,0.000000000000000000e+00 +2.217107779147192148e-01,-3.157547986796828132e-01,0.000000000000000000e+00 +2.453007938744269367e-01,-3.392614865715841699e-01,0.000000000000000000e+00 +2.755830522912312563e-01,-3.428660165190158815e-01,0.000000000000000000e+00 +3.092360174068158885e-01,-3.374583494713879750e-01,0.000000000000000000e+00 +3.430428620336029577e-01,-3.330814030258116287e-01,0.000000000000000000e+00 +3.768495674304221943e-01,-3.287034063148845386e-01,0.000000000000000000e+00 +4.106529951962060165e-01,-3.243004354847279225e-01,0.000000000000000000e+00 +4.446436873731409167e-01,-3.218444326403373523e-01,0.000000000000000000e+00 +4.786789587073724261e-01,-3.199293721198604445e-01,0.000000000000000000e+00 +5.127138350790136911e-01,-3.180143338227191530e-01,0.000000000000000000e+00 +5.467602551404103783e-01,-3.167434271631632825e-01,0.000000000000000000e+00 +5.808407326728340925e-01,-3.175100528834015612e-01,0.000000000000000000e+00 +6.148937368462310538e-01,-3.186545096889494832e-01,0.000000000000000000e+00 +6.486433732891212500e-01,-3.234468951563104211e-01,0.000000000000000000e+00 +6.815612916086731810e-01,-3.320326279690322124e-01,0.000000000000000000e+00 +7.121878598228823520e-01,-3.463185805043799137e-01,0.000000000000000000e+00 +7.351847988719928395e-01,-3.709741443869505328e-01,0.000000000000000000e+00 +7.680700906913938697e-01,-3.769096788358619610e-01,0.000000000000000000e+00 +8.013241345174824115e-01,-3.843375741810614032e-01,0.000000000000000000e+00 +8.279192781122955980e-01,-4.043338241692824853e-01,0.000000000000000000e+00 +8.339039529016689656e-01,-4.367859906494959144e-01,0.000000000000000000e+00 +8.419568586375787422e-01,-4.587856878778465708e-01,0.000000000000000000e+00 +8.722139823119900992e-01,-4.742481074535368490e-01,0.000000000000000000e+00 +9.020651429807413635e-01,-4.906922583738178023e-01,0.000000000000000000e+00 +9.315276780746999385e-01,-5.078389089620602981e-01,0.000000000000000000e+00 +9.592226529057457096e-01,-5.277020203255115005e-01,0.000000000000000000e+00 +9.830549006722962835e-01,-5.520138124532392165e-01,0.000000000000000000e+00 +9.996199718866292105e-01,-5.803810364764097063e-01,0.000000000000000000e+00 +9.688217987179663648e-01,-5.882903266603426440e-01,0.000000000000000000e+00 +9.352529492594242599e-01,-5.823706661889094249e-01,0.000000000000000000e+00 +9.026289618060880926e-01,-5.724910219551621049e-01,0.000000000000000000e+00 +8.709057087683703680e-01,-5.601798826278462373e-01,0.000000000000000000e+00 +8.520935037966993475e-01,-5.667227816026259024e-01,0.000000000000000000e+00 +8.602842693341554714e-01,-5.992060314118218267e-01,0.000000000000000000e+00 +8.514604135374446159e-01,-6.316779049430440995e-01,0.000000000000000000e+00 +8.191227677294958820e-01,-6.300992395612994290e-01,0.000000000000000000e+00 +7.895612008604531162e-01,-6.133034226712270609e-01,0.000000000000000000e+00 +7.682614275983702390e-01,-5.868781861521152887e-01,0.000000000000000000e+00 +7.524882326216592032e-01,-5.566623871399876133e-01,0.000000000000000000e+00 +7.324033004071114350e-01,-5.376617237692883355e-01,0.000000000000000000e+00 +7.007764967732799111e-01,-5.505310516040722302e-01,0.000000000000000000e+00 +6.685724799074117541e-01,-5.613685329798889789e-01,0.000000000000000000e+00 +6.349842450482957590e-01,-5.671823499267011348e-01,0.000000000000000000e+00 +6.014056746087743655e-01,-5.730595918181954351e-01,0.000000000000000000e+00 +5.674653072159082656e-01,-5.758245105458666968e-01,0.000000000000000000e+00 +5.334259251520678813e-01,-5.776611435647095449e-01,0.000000000000000000e+00 +4.993418835641874609e-01,-5.781759563420419967e-01,0.000000000000000000e+00 +4.652548567318075534e-01,-5.785458917464381123e-01,0.000000000000000000e+00 +4.311681879962143693e-01,-5.782033108421773537e-01,0.000000000000000000e+00 +3.970816380792898115e-01,-5.777934089878838941e-01,0.000000000000000000e+00 +3.629950929640429202e-01,-5.773825605690460216e-01,0.000000000000000000e+00 +3.289257807262868649e-01,-5.762699732376199702e-01,0.000000000000000000e+00 +2.948611349426097927e-01,-5.749806691571364148e-01,0.000000000000000000e+00 +2.608044640426027128e-01,-5.735462432803494215e-01,0.000000000000000000e+00 +2.268087057651513583e-01,-5.710271784661334893e-01,0.000000000000000000e+00 +1.928535716231018771e-01,-5.680908650559598483e-01,0.000000000000000000e+00 +1.591530771192863347e-01,-5.629607564498371186e-01,0.000000000000000000e+00 +1.256504247208752589e-01,-5.567243902870158134e-01,0.000000000000000000e+00 +9.237838384760233001e-02,-5.493476585285678171e-01,0.000000000000000000e+00 +5.907582917876276485e-02,-5.429784600638217773e-01,0.000000000000000000e+00 +2.631061198055023587e-02,-5.334645456640688677e-01,0.000000000000000000e+00 +3.344264749943672704e-02,-5.054394720138088992e-01,0.000000000000000000e+00 +2.628064627796974362e-01,-1.343097153458485682e-01,1.112172293353178754e-17 +2.396706539426173843e-01,-1.733998921419201977e-01,7.024523371775326723e-18 +6.394911122957659400e-01,-5.042620175849209518e-01,-1.129120872880866197e-18 +7.044999726864072942e-01,-5.007816473829618253e-01,2.038930625934702975e-18 +5.106403352986201849e-01,-5.111637931815286029e-01,-7.408631014548044442e-18 +5.751975933576549682e-01,-5.087092029754723965e-01,-4.341170317552985753e-18 +5.211877958304390601e-01,-4.465080742557933080e-01,-1.866215471797085067e-18 +5.837751840294166383e-01,-4.458699235480461098e-01,9.710095367247427270e-19 +6.552897558075261308e-01,-3.916613363528233527e-01,8.408774136384371433e-18 +5.969468997384086428e-01,-3.844569799870810600e-01,6.375869664985723501e-18 +2.742335300504686879e-01,-5.131112600570336690e-01,-1.808915174782895702e-17 +3.174927254404426025e-01,-5.154184307129001663e-01,-1.634373668929591199e-17 +1.771497639668720425e-01,-2.815336547877614892e-01,-4.243556164928986986e-18 +2.145173483749572008e-01,-4.788582883686988145e-01,-1.806105208310021521e-17 +1.577069097575213297e-01,-4.910045808891139729e-01,-2.154391428372731600e-17 +2.079428919007508259e-01,-2.253022135283331284e-01,1.539498457746989182e-18 +4.020557704126931919e-01,-3.890546679266019825e-01,-2.663793670294162050e-18 +3.370095148562104459e-01,-3.948668237763194311e-01,-6.016456074221967581e-18 +2.691925828431865897e-01,-4.661338646109639550e-01,-1.462791671658525692e-17 +7.658920011842870745e-02,-4.249716027482547398e-01,-1.997549927387392978e-17 +1.104715905434620893e-01,-3.807342346573793224e-01,-1.499589546944756231e-17 +4.447608085481308260e-01,-5.131018226539851845e-01,-1.049444735362532379e-17 +4.566858223184624421e-01,-4.489082111379067430e-01,-4.926941962379154731e-18 +3.791641746963337889e-01,-5.144599360957387013e-01,-1.352216718649214401e-17 +7.028511783900115439e-01,-4.450611266058359106e-01,6.337187906926864084e-18 +6.444126023509224588e-01,-4.470227837503795709e-01,3.580880106301130594e-18 +6.973019177743493557e-01,-4.033549609995192853e-01,9.362220117691365253e-18 +1.577973345216641399e-01,-3.381463263622900284e-01,-9.547041007063235732e-18 +3.300923890543120409e-01,-4.559873909751034349e-01,-1.111984615947302431e-17 +2.731959222579165569e-01,-3.979991441901399307e-01,-9.103972557105698510e-18 +3.920352901756293806e-01,-4.520135689291293613e-01,-8.049613834396402326e-18 +2.014236971862120584e-01,-3.923227674993989833e-01,-1.185479825562371156e-17 +1.437135539353064650e-01,-4.302944742328986827e-01,-1.740391869017124202e-17 +5.332170705721842596e-01,-3.829283219303606378e-01,3.657771158649929204e-18 +4.676978719463213974e-01,-3.849730103262424818e-01,5.796328713710914573e-19 +7.849249447298678461e-01,-5.046986257840807566e-01,5.313120289833899261e-18 +1.044543240010477325e-01,-4.918454825099134453e-01,-2.398134679526000883e-17 +1.092274186465177765e-01,-4.500873127326807666e-01,-2.049255673831296771e-17 +8.114968509256074158e-01,-5.732018759598397351e-01,1.121846861851414834e-18 +7.657549315704933468e-01,-4.396033237980205288e-01,9.566638268213730383e-18 +8.651899320205616029e-01,-5.298513263820873176e-01,6.914087972107056042e-18 +8.338979872392811021e-01,-5.486031357525801289e-01,4.049370763024199307e-18 +5.159140655645295670e-01,-4.788359337186609554e-01,-4.637423243172563984e-18 +5.524814899299277382e-01,-4.461889989019197089e-01,-4.476029675361711698e-19 +5.794863886935358588e-01,-4.772895632617593087e-01,-1.685080390414120743e-18 +5.429189643281376876e-01,-5.099364980785004997e-01,-5.874900666050515097e-18 +5.477002271290327684e-01,-4.780627484902101321e-01,-3.161251816793346215e-18 +1.410737677110291410e-01,-2.633984526749585942e-01,-4.427262513283066546e-18 +1.386598397588985621e-01,-2.143963722982670794e-01,-6.901890751741397860e-19 +1.901323999816808274e-01,-2.044158537813557663e-01,2.385044584517930169e-18 +1.925463279338113787e-01,-2.534179341580472533e-01,-1.352028853590998131e-18 +1.656030838463549149e-01,-2.339071532281571386e-01,-1.021108964382569729e-18 +2.206630270700543350e-01,-5.249427334174162629e-01,-2.140303245161883364e-17 +2.418549656090719091e-01,-4.724960764898313847e-01,-1.634448439984273761e-17 +2.717130564468276388e-01,-4.896225623339988120e-01,-1.635853423220711159e-17 +2.505211179078100092e-01,-5.420692192615835792e-01,-2.141708228398320762e-17 +2.461880417584410008e-01,-5.072826478757075375e-01,-1.888078334191297416e-17 +3.061769301915262531e-01,-5.451995499350184016e-01,-1.918420085712153543e-17 +2.958631277454557007e-01,-5.142648453849668622e-01,-1.721644421856243451e-17 +2.783337958940290680e-01,-5.439055443326581418e-01,-2.032259417619480091e-17 +4.651968830937960875e-02,-4.045809504885139463e-01,-1.971476679882321436e-17 +6.831884034554053242e-02,-4.546440962554413323e-01,-2.267182085698789062e-17 +3.351096306339013120e-02,-4.370531417657813611e-01,-2.284175521090148853e-17 +5.049911094314037951e-01,-5.446698747617852998e-01,-1.028900058133424509e-17 +4.379644982721725421e-01,-5.456525667480812691e-01,-1.335094597082490487e-17 +4.777005719233753944e-01,-5.121328079177568382e-01,-8.951539184086684114e-18 +4.714777143275915572e-01,-5.453393498320975308e-01,-1.183395278985168284e-17 +2.797272389525705671e-01,-7.891274430494094050e-02,1.622154019054502991e-17 +2.938456653006388253e-01,-4.764420583241398000e-02,1.930351073985737453e-17 +2.711942525505516288e-01,-4.320665044005519428e-01,-1.186594463684547771e-17 +3.051027185570635569e-01,-3.964329839832296809e-01,-7.560214315663831505e-18 +3.335509519552612434e-01,-4.254271073757114330e-01,-8.568151116847495944e-18 +2.996424859487493153e-01,-4.610606277930336949e-01,-1.287388143802913599e-17 +3.023726022529064084e-01,-4.287468058881316324e-01,-1.021704787684648529e-17 +3.855997324359816125e-01,-4.832367525124340313e-01,-1.078589051044427471e-17 +3.483284500683881957e-01,-5.149391834043194338e-01,-1.493295193789402646e-17 +3.237925572473773217e-01,-4.857029108440018561e-01,-1.373179142438447123e-17 +3.610638396149707385e-01,-4.540004799521163981e-01,-9.584729996934710235e-18 +3.546961448416794394e-01,-4.844698316782178882e-01,-1.225884096741436989e-17 +9.170783199403941266e-01,-5.401649654586112570e-01,8.415614495840935768e-18 +9.590786121783340112e-01,-5.601508267170198785e-01,8.717945367363480964e-18 +2.977528068471024802e-01,-4.876627365890003896e-01,-1.504516282829579141e-17 +1.101113272850864355e-01,-1.527460603864674304e-01,2.875398564548251683e-18 +1.233974914078922180e-01,-1.839319805084274617e-01,1.020298192730393447e-18 +7.957493148084929246e-02,-9.292824850718618690e-02,6.208688269166320070e-18 +5.961685404242019620e-02,-5.451014289423250503e-02,8.334091078776767781e-18 +9.519802059076684642e-02,-1.225726369253261200e-01,4.578600853466359678e-18 +1.341344625325631146e-01,-3.594402805098346754e-01,-1.227146823825539902e-17 +8.424277491892026570e-02,-3.555367449447601191e-01,-1.418699663444149599e-17 +1.358963044970861178e-01,-3.159287793242926412e-01,-8.779214394127295405e-18 +1.085325996213209881e-01,-3.335269549809734557e-01,-1.137848723836659931e-17 +1.674735492442681051e-01,-3.098399905750257588e-01,-6.895298585996108277e-18 +1.449198822799284136e-01,-2.920490773962821640e-01,-6.503837122473188188e-18 +2.743894872745739622e-01,-3.704325803545779339e-01,-6.888022153906840325e-18 +3.400261884449067851e-01,-3.639741134010655577e-01,-3.458358049957101002e-18 +3.071693679819397227e-01,-3.669456667273088835e-01,-5.154686362516382016e-18 +6.261183277729673868e-01,-3.880591581699521786e-01,7.392321900685048622e-18 +6.498511790792244058e-01,-4.193420600516015173e-01,5.994827121342750628e-18 +6.140938931901694930e-01,-4.464463536492128126e-01,2.275944821512937046e-18 +5.903610418839125851e-01,-4.151634517675635849e-01,3.673439600855232729e-18 +6.201061104815683844e-01,-4.172527559095824956e-01,4.834133361098992064e-18 +1.861121290662392791e-01,-4.849314346289064215e-01,-1.980248318341376561e-17 +1.584299934384038322e-01,-5.269826686694756290e-01,-2.433445748813511383e-17 +1.894828503446705781e-01,-5.265111498424331904e-01,-2.291460970293608926e-17 +5.713314502867816724e-01,-5.422668567606696577e-01,-7.146181405725367474e-18 +5.381724447401028399e-01,-5.437988208216051333e-01,-8.743020409164700946e-18 +3.970455302941612863e-01,-4.205341184278656996e-01,-5.356703752345281418e-18 +3.695326426344518467e-01,-3.919607458514606790e-01,-4.340124872258064045e-18 +3.652982411247112093e-01,-4.229806129017885663e-01,-6.962427434596390222e-18 +7.026382347298436581e-01,-5.256563494935170278e-01,4.421188293762888383e-21 +6.372376786720308495e-01,-5.357221837558110433e-01,-3.697751153240595498e-18 +6.719955424910866171e-01,-5.025218324839414441e-01,4.549048765269191594e-19 +6.702840111992491856e-01,-5.319451827319152670e-01,-1.929790187015400207e-18 +1.068408713237827545e-01,-4.709663976212970504e-01,-2.223695176678648519e-17 +1.264704862909121208e-01,-4.401908934827897246e-01,-1.894823771424210333e-17 +1.507102318464139390e-01,-4.606495275610063556e-01,-1.947391648694928055e-17 +1.310806168792844895e-01,-4.914250316995137369e-01,-2.276263053949366242e-17 +1.287755515850983468e-01,-4.658079625911517585e-01,-2.085543412686788904e-17 +5.004574712592528840e-01,-3.839506661283015876e-01,2.118702015010509945e-18 +5.272024332013115488e-01,-4.147181980930769729e-01,8.957778434264216833e-19 +4.889368090744506956e-01,-4.477081426968499978e-01,-3.396578717088119128e-18 +4.621918471323918642e-01,-4.169406107320746124e-01,-2.173654545504032407e-18 +4.946971401668518453e-01,-4.158294044125758204e-01,-6.389383510388045916e-19 +6.073443528267105096e-01,-5.064856102801966742e-01,-2.735145595216925975e-18 +6.419518573233441439e-01,-4.756424006676502336e-01,1.225879616710131813e-18 +6.107191230084401123e-01,-4.764659819647047989e-01,-2.296003868519944646e-19 +4.507233154332965785e-01,-4.810050168959459360e-01,-7.710694658002239259e-18 +4.833186904989130728e-01,-4.799204753073034180e-01,-6.174058950587400081e-18 +7.687065886757634692e-01,-5.306805064620342405e-01,2.552412053688368585e-18 +7.447124587081376257e-01,-5.027401365835213465e-01,3.676025457884301118e-18 +7.385578795576245303e-01,-5.202009301764048965e-01,2.032021399028216120e-18 +6.736318903704668903e-01,-4.460419551781077407e-01,4.959034006613997724e-18 +7.036755755382093636e-01,-4.729213869943988957e-01,4.188059266430783529e-18 +6.728137164307768092e-01,-4.742818938310245369e-01,2.706969441570459212e-18 +7.753399381501806520e-01,-4.721509747910506705e-01,7.439879279023814822e-18 +7.343030549802525009e-01,-4.423322252019282197e-01,7.951913087570298004e-18 +7.395077568441950078e-01,-4.725361808927247553e-01,5.813969272727299946e-18 +7.000765480821805609e-01,-4.242080438026776257e-01,7.849704012309114669e-18 +7.162433583231712086e-01,-3.871645526932349646e-01,1.147598092336649068e-17 +7.504698652212432597e-01,-4.052887340924855586e-01,1.157818999862767247e-17 +7.252732066517117993e-01,-4.147483889475816476e-01,9.713947005468393571e-18 +4.119624916222323074e-01,-5.137808793748619429e-01,-1.200830727005873390e-17 +4.243605562470458836e-01,-4.504608900335180799e-01,-6.488277898387776988e-18 +4.181615239346390678e-01,-4.821208847041900114e-01,-9.248292584223260066e-18 +5.650819851552963957e-01,-3.836926509587208489e-01,5.016820411817826352e-18 +5.587817375426120670e-01,-4.149408249303202512e-01,2.284608722140826436e-18 +8.225140228685001720e-02,-4.880810361362707406e-01,-2.467474461768093631e-17 +9.841635392432507290e-02,-5.205965705192405757e-01,-2.650596404422140960e-17 +6.579516634422419297e-02,-5.138042002502765104e-01,-2.742574797731597654e-17 +4.348768211795072669e-01,-3.870138391264222322e-01,-1.042080399461535296e-18 +4.296186887132766308e-01,-4.187373645799701283e-01,-3.765179148924656142e-18 +6.762958367909377433e-01,-3.975081486761713467e-01,8.885497127037868343e-18 +6.749638635807022613e-01,-4.217750519271394882e-01,6.922265566825933804e-18 +8.495439596299213525e-01,-5.392272310673337232e-01,5.481729367565627674e-18 +8.094114659845745852e-01,-5.266508807683304427e-01,4.681245526429049284e-18 +8.285694635209290837e-01,-4.894733666188088583e-01,8.451241834121112644e-18 +8.687019571662758510e-01,-5.020497169178120833e-01,9.251725675257691805e-18 +8.390567115754251626e-01,-5.143502988430712630e-01,6.966485600843369003e-18 +6.684255237080997114e-01,-3.618469821609278103e-01,1.133289331344536302e-17 +6.942418483069101587e-01,-3.719133645902756302e-01,1.169277119904814944e-17 +2.373098097220642799e-01,-3.951609558447695125e-01,-1.047938540636470349e-17 +2.079705227805846157e-01,-4.355905279340489544e-01,-1.495792516936196339e-17 +2.395823876655680806e-01,-4.338285161673005041e-01,-1.341193490310372363e-17 +2.115672375504656644e-01,-3.540387830895409538e-01,-8.399425365143825382e-18 +2.413053017982456638e-01,-3.672112212081768412e-01,-8.108596329812155485e-18 +3.710796338301883823e-01,-5.459212483323924170e-01,-1.635055972883310766e-17 +3.386271153973375303e-01,-5.456045783209697575e-01,-1.777089842480686002e-17 +4.063543828044496320e-01,-3.566775517056649525e-01,6.785445732408190470e-20 +4.731884153268469118e-01,-3.524511912230514632e-01,3.375713369641170702e-18 +4.397602542763241473e-01,-3.544291358833797645e-01,1.731897829913660378e-18 +6.043750137177424930e-01,-5.397726010491961102e-01,-5.478984491804402859e-18 +4.045220648507610872e-01,-5.457871441813729740e-01,-1.485077146951180986e-17 +5.399886628562973190e-01,-3.498358745467620157e-01,6.555669607332508717e-18 +5.065856531691333986e-01,-3.509824999755103980e-01,4.978197179693531037e-18 +1.725686255607592479e-01,-4.113086208661488330e-01,-1.462935847289747525e-17 +1.793403773134992496e-01,-4.481200277475276827e-01,-1.721592082815562043e-17 +1.283655208000799020e-01,-5.240747109932648584e-01,-2.544514568128235496e-17 +3.731911050324370205e-01,-3.603320760831726366e-01,-1.695705156755246915e-18 +6.059203182923198483e-01,-3.515557448380152716e-01,9.356818402537112219e-18 +5.729613589140651886e-01,-3.506013519210612328e-01,7.963960769607575805e-18 +2.824918910111694492e-01,-1.332099693183776967e-01,1.208464251768006738e-17 +2.505777284971562047e-01,-1.127614080953147080e-01,1.226777192139011414e-17 +2.811076954128023386e-01,-1.060608069926398667e-01,1.415305123530690956e-17 +2.512385583611574380e-01,-1.538548037438843830e-01,9.073123152653556362e-18 +2.602111390161067073e-01,-1.850756072869432778e-01,7.023192330050465443e-18 +2.719884200838746380e-01,-1.593604317941427484e-01,9.565204520330385230e-18 +2.219894584328203635e-01,-1.618405618724128303e-01,7.144053777121404074e-18 +2.362453832230768935e-01,-1.372777554458947391e-01,9.706033787993344537e-18 +9.290830938247324200e-02,-4.375294577404676977e-01,-2.023402800609345183e-17 +8.757985583466171287e-02,-4.628052469383691636e-01,-2.245438631188718174e-17 +9.353039533094537061e-02,-4.028529187028170311e-01,-1.748569737166074913e-17 +1.270925722393842772e-01,-4.055143544451390580e-01,-1.619990707980940371e-17 +1.100004408109286902e-01,-4.215219060928033779e-01,-1.821696754295142777e-17 +8.314786322315258493e-01,-6.024398904514418618e-01,-2.822551664464932908e-19 +8.226974190824442035e-01,-5.609025058562099320e-01,2.585608812437807070e-18 +8.429957455179903913e-01,-5.576629586776030711e-01,3.743705162866572573e-18 +8.414908442082997819e-01,-5.800542686340158793e-01,1.919926716960743185e-18 +1.994302709407956287e-01,-2.986442267337222067e-01,-4.593804319796463095e-18 +1.796105158539381408e-01,-3.652345469308445614e-01,-1.070091963134347056e-17 +1.895203933973668708e-01,-3.319393868322833563e-01,-7.647361975569968371e-18 +7.819925417736334206e-01,-5.649321315499137297e-01,4.567753396971263711e-19 +7.991760101802217742e-01,-5.984633261788606662e-01,-1.408773204195417975e-18 +1.533515440466611812e-01,-3.853744506879918097e-01,-1.345041335557644176e-17 +8.839094469133249588e-01,-5.511711741686248223e-01,6.075012384002437084e-18 +8.602248341991459712e-01,-5.497035568475900913e-01,5.135428508732716019e-18 +8.929872949470329946e-01,-5.209317162712211458e-01,8.851775736086716977e-18 +2.238067729216841051e-01,-1.993510528351266631e-01,4.282010914761157952e-18 +2.063292064468527642e-01,-1.898961973428814343e-01,4.245497963698218580e-18 +6.468524310542847489e-02,-3.795246702678972683e-01,-1.693996553101359645e-17 +2.304626192213562186e-01,-2.421107764457637312e-01,1.223598137944916768e-18 +2.458796728278040966e-01,-2.138487344119898437e-01,4.127517881897115791e-18 +7.998294422360812117e-01,-4.381946572237582216e-01,1.119457318918301049e-17 +8.086483983938798081e-01,-4.654683313344486484e-01,9.447482253137261104e-18 +2.141984539726842218e-01,-2.708961019901007794e-01,-1.759100809405627456e-18 +7.891023836650976619e-01,-4.044381889068120461e-01,1.336531457739372661e-17 +6.373808505310443184e-01,-3.557530266631312998e-01,1.042851937945600639e-17 +7.957020038791038363e-01,-5.457915061591220862e-01,2.569010433063087057e-18 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad4/uvs.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/uvs.csv new file mode 100644 index 000000000..d1508e562 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad4/uvs.csv @@ -0,0 +1,321 @@ +2.789116550171468756e-01,7.388495577463266573e-02 +2.634412996820252317e-01,8.097222800893336125e-02 +2.516631246649008724e-01,9.246964313736183438e-02 +2.500000000000000000e-01,1.086071410492921024e-01 +2.570520593404344578e-01,1.240869142248514079e-01 +2.667738982413378479e-01,1.381226624599401764e-01 +2.778915737666248220e-01,1.510870935144617566e-01 +2.903845064956213085e-01,1.624814126656755342e-01 +3.059598425051190951e-01,1.694518851977656893e-01 +3.101569181977855139e-01,1.792053884980132072e-01 +3.014486170745978577e-01,1.937430431768848438e-01 +2.940191990972013114e-01,2.091224385328211421e-01 +2.890064207987480538e-01,2.254623714479969121e-01 +2.839492483934290545e-01,2.417888412883976990e-01 +2.788920759869441546e-01,2.581153111325624194e-01 +2.746722487129229506e-01,2.746447525625154151e-01 +2.716233671642140357e-01,2.914620951121166814e-01 +2.685858179844914373e-01,3.081631123303382735e-01 +2.757689250905893674e-01,3.075419863256685371e-01 +2.878285661407606888e-01,2.954622808922918731e-01 +2.985118269596935270e-01,2.821281644448315196e-01 +3.091210626133723549e-01,2.687280493361037803e-01 +3.190185478020671761e-01,2.547974322976822026e-01 +3.273287728634329263e-01,2.398649742711617960e-01 +3.352040219426589140e-01,2.246955076365867721e-01 +3.434918043202664917e-01,2.262438650683983588e-01 +3.512415444862100888e-01,2.413657334439853197e-01 +3.597370077453935222e-01,2.561970053993987140e-01 +3.683091033834426375e-01,2.709816894593822800e-01 +3.795519203756816395e-01,2.838475541662604518e-01 +3.908535773887710230e-01,2.966691968804273660e-01 +4.030809330415117131e-01,3.084967200769280771e-01 +4.165243062616056369e-01,3.168077493853294624e-01 +4.133248447619286559e-01,3.000472785578970347e-01 +4.098020797287307837e-01,2.833161518363719877e-01 +4.050550430877860597e-01,2.668968419862327024e-01 +4.003117559526790936e-01,2.504764294490310350e-01 +3.955791511800914595e-01,2.340530992680199263e-01 +3.895692043075246191e-01,2.180662630127888357e-01 +3.831519343326108551e-01,2.022249135562648181e-01 +3.756460668749595500e-01,1.868960663031789815e-01 +3.670564325405307748e-01,1.721277654662822787e-01 +3.599669284104417555e-01,1.583995413306076017e-01 +3.717946410212580322e-01,1.466136082777242666e-01 +3.869777528246666209e-01,1.448063460703513938e-01 +4.038508910441921396e-01,1.475176766537460715e-01 +4.208011823541735197e-01,1.497122179698534561e-01 +4.377514038561459708e-01,1.519072858746988164e-01 +4.546999819985718116e-01,1.541148754626774087e-01 +4.717424519654505044e-01,1.553462818281675928e-01 +4.888072733144493975e-01,1.563064670822686963e-01 +5.058718966345865375e-01,1.572666411938921094e-01 +5.229423078034952654e-01,1.579038564781070075e-01 +5.400297949243765272e-01,1.575194807865209767e-01 +5.571035072773400376e-01,1.569456657363474672e-01 +5.740251151833222210e-01,1.545428289546761924e-01 +5.905297109536258304e-01,1.502380594947666514e-01 +6.058854549985618343e-01,1.430752775259684917e-01 +6.174158069265097692e-01,1.307133137036989856e-01 +6.339040442141424814e-01,1.277373175969886698e-01 +6.505771687340352605e-01,1.240130720688678995e-01 +6.639116113991067047e-01,1.139872247545344885e-01 +6.669122458030345424e-01,9.771615061105239086e-02 +6.709498630258893259e-01,8.668580214556846630e-02 +6.861203726118988433e-01,7.893315563097955123e-02 +7.010873378777275899e-01,7.068828239536249780e-02 +7.158594515750067444e-01,6.209118539711488277e-02 +7.297453346377775762e-01,5.213209197535480927e-02 +7.416944989763685214e-01,3.994249062740250905e-02 +7.500000000000000000e-01,2.571955097845189664e-02 +7.345582155688541448e-01,2.175394063673391498e-02 +7.177272517937745011e-01,2.472197774740439793e-02 +7.013700289552649014e-01,2.967549676551189952e-02 +6.854644220811023647e-01,3.584813429674205826e-02 +6.760322388065873600e-01,3.256761389152156017e-02 +6.801389770557297876e-01,1.628095499036823213e-02 +6.757148159758457062e-01,0.000000000000000000e+00 +6.595011609372025685e-01,7.915213146024472832e-04 +6.446793940571093895e-01,9.212715076360787278e-03 +6.339999779325182772e-01,2.246196864849674471e-02 +6.260915128658748330e-01,3.761175861184618691e-02 +6.160212014914716594e-01,4.713843236006859394e-02 +6.001639530343869655e-01,4.068592671597794086e-02 +5.840172977267366061e-01,3.525216120445080065e-02 +5.671766143759167100e-01,3.233719259500864029e-02 +5.503407766334130757e-01,2.939042358240699301e-02 +5.333235388276393873e-01,2.800413100172301217e-02 +5.162566564148194370e-01,2.708326822844160306e-02 +4.991673823250890041e-01,2.682514811571829264e-02 +4.820766114744375885e-01,2.663966754396977082e-02 +4.649860201686363825e-01,2.681143294202929794e-02 +4.478954884368968048e-01,2.701695214725173544e-02 +4.308049591126530409e-01,2.722294594704070814e-02 +4.137230701184016479e-01,2.778078207708058536e-02 +3.966435208206494645e-01,2.842722157750138950e-02 +3.795679700209193541e-01,2.914642316944321063e-02 +3.625229599802624603e-01,3.040944794744486826e-02 +3.454983183276311709e-01,3.188167548684709557e-02 +3.286013495203890522e-01,3.445384204913910786e-02 +3.118035760493875208e-01,3.758067107865976225e-02 +2.951214280552290070e-01,4.127926388143823844e-02 +2.784239808596946086e-01,4.447269321743101828e-02 +2.619959473512240566e-01,4.924284027949254322e-02 +2.655718527932383610e-01,6.329423039293706477e-02 +3.805717449123826590e-01,2.493736340986565658e-01 +3.689717655647147265e-01,2.297743520193381295e-01 +5.694362962120471661e-01,6.388459000189224135e-02 +6.020308531284346287e-01,6.562960020444283393e-02 +5.048322720941464947e-01,6.042413374783755370e-02 +5.372004017541158749e-01,6.165483183571272841e-02 +5.101206251057492924e-01,9.284163034493558841e-02 +5.415010888554768753e-01,9.316159041560763410e-02 +5.773575208274522863e-01,1.203410374951938977e-01 +5.481052076599501888e-01,1.239532036245194202e-01 +3.863011207590966722e-01,5.944770038883088331e-02 +4.079906919625110318e-01,5.829091645497060797e-02 +3.376246431181412211e-01,1.755575566476965110e-01 +3.563602408427951618e-01,7.662167372941829091e-02 +3.278762609078457735e-01,7.053168814128824016e-02 +3.530638979373028619e-01,2.037512351956256296e-01 +4.503894506210747162e-01,1.216479855307397440e-01 +4.177761442780075773e-01,1.187338497727500053e-01 +3.837736585074446594e-01,8.300152644345587527e-02 +2.872049464459322521e-01,1.036397237450112641e-01 +3.041931153899152251e-01,1.258197374139911062e-01 +4.718011749269265254e-01,5.945243217414381692e-02 +4.777802143644758193e-01,9.163823441181091767e-02 +4.389119164049661848e-01,5.877149259744391535e-02 +6.012041701314655429e-01,9.356711018334787355e-02 +5.719038642751126389e-01,9.258356201677409025e-02 +5.984218464621352540e-01,1.144780134117802800e-01 +3.279215986526361482e-01,1.471727344136742055e-01 +4.143079916401519736e-01,8.808883008848780727e-02 +3.857808783483237525e-01,1.171633469921270071e-01 +4.453653183496600332e-01,9.008125032281856515e-02 +3.497952625252193082e-01,1.200094049296669546e-01 +3.208601829446623421e-01,1.009709085016383817e-01 +5.161519395739094795e-01,1.247196519476566345e-01 +4.833015060192516477e-01,1.236944730428831823e-01 +6.423548383977847331e-01,6.366568059920219014e-02 +3.011761399250440507e-01,7.011007152509883544e-02 +3.035693045514382127e-01,9.104704893632151186e-02 +6.556776301475479851e-01,2.931908425227174042e-02 +6.327432549727493027e-01,9.630357815384883724e-02 +6.825986094917366742e-01,5.105445920082486017e-02 +6.669092547011896688e-01,4.165255745790848868e-02 +5.074764485999478936e-01,7.663288204638657453e-02 +5.258108569806130284e-01,9.300161038027161819e-02 +5.393507453047964306e-01,7.740821112566015350e-02 +5.210163369241311848e-01,6.103948279177513758e-02 +5.234135969523721066e-01,7.702054658602336401e-02 +3.195366300963695116e-01,1.846502999122906774e-01 +3.183263195086283859e-01,2.092192754067357940e-01 +3.441339599399808602e-01,2.142233714161062008e-01 +3.453442705277219860e-01,1.896543959216610842e-01 +3.318352950181751582e-01,1.994368356641984530e-01 +3.594416004115288388e-01,5.351556083843152234e-02 +3.700669496751199383e-01,7.981160008643707615e-02 +3.850373896332706658e-01,7.122461341614337582e-02 +3.744120403696795663e-01,4.492857416813787752e-02 +3.722394950223997800e-01,6.237008712728744908e-02 +4.023171063915802481e-01,4.335906901623594323e-02 +3.971459063608038242e-01,5.886930842190077340e-02 +3.883569381908615337e-01,4.400786579567199375e-02 +2.721285028931833549e-01,1.138633189849313221e-01 +2.830583007315395916e-01,8.876233975982196489e-02 +2.656061052862704885e-01,9.758220468102504763e-02 +5.019998272096177772e-01,4.362464093177792490e-02 +4.683935975477814262e-01,4.313193255808655396e-02 +4.883167235105364545e-01,5.993828296099071307e-02 +4.851966674924870770e-01,4.328897525248021072e-02 +3.890555915560867106e-01,2.771489206478771616e-01 +3.961343781769668393e-01,2.928265398341035608e-01 +3.847772684278842337e-01,1.000824367177914342e-01 +4.017785113131656649e-01,1.179485983824384993e-01 +4.160420679590797755e-01,1.034113399306189063e-01 +3.990408250737983442e-01,8.554517826597184127e-02 +4.004096681934820046e-01,1.017468883242051980e-01 +4.421386173773130812e-01,7.442637146013124372e-02 +4.234513041837385527e-01,5.853120452620726166e-02 +4.111493418013314471e-01,7.318987327172918333e-02 +4.298366549949059756e-01,8.908504020565319315e-02 +4.266439795893222642e-01,7.380812236593023434e-02 +7.086147402651359339e-01,4.588334108131336686e-02 +7.296731145794703721e-01,3.586270253457143203e-02 +3.980933657173010842e-01,7.220724334393624488e-02 +3.040124843004076149e-01,2.401299018728395296e-01 +3.106739859803171466e-01,2.244937064019914275e-01 +2.887019514733188408e-01,2.701217377886969695e-01 +2.786952433553867015e-01,2.893840525331264346e-01 +2.965351555034007047e-01,2.552584453122507258e-01 +3.160573570212756866e-01,1.364962359138326697e-01 +2.910423445782699958e-01,1.384534154642264037e-01 +3.169407205788776216e-01,1.583123098057199474e-01 +3.032209317584484976e-01,1.494888242897541020e-01 +3.327731208853886846e-01,1.613651455306853721e-01 +3.214650195415870715e-01,1.702852670143492897e-01 +3.863793155864951867e-01,1.309848465312391796e-01 +4.192886633160906040e-01,1.342230338713017168e-01 +4.028147011786789022e-01,1.327331375180922646e-01 +5.627313642437012930e-01,1.221471205598566728e-01 +5.746306925512825181e-01,1.064622997559839662e-01 +5.567024765652948126e-01,9.287257621619088299e-02 +5.448031482577135876e-01,1.085573970200635341e-01 +5.597169204044980528e-01,1.075098483880237710e-01 +3.421182508753204954e-01,7.357668093535324472e-02 +3.282388052141174128e-01,5.249276509521362544e-02 +3.438082846014758331e-01,5.272917821110014586e-02 +5.352619702908776311e-01,4.482948141871781478e-02 +5.186364966694754219e-01,4.406137551010831654e-02 +4.478773844853674024e-01,1.058646179267791476e-01 +4.340827974495411468e-01,1.201909176517448885e-01 +4.319597262222235612e-01,1.046379789286990269e-01 +6.010974030814109081e-01,5.315776346021038740e-02 +5.683064552939819380e-01,4.811089129845044082e-02 +5.857335746702408974e-01,6.475709510316750295e-02 +5.848754361984886962e-01,5.000462815380912751e-02 +3.023727222382411317e-01,8.057856023071020835e-02 +3.122147437480502496e-01,9.600897871897995373e-02 +3.243682219262540856e-01,8.575129832146329012e-02 +3.145262004164448566e-01,7.032087983319351698e-02 +3.133704720822476086e-01,8.316492927608672148e-02 +4.997267227965805914e-01,1.242070624952698876e-01 +5.131362823398293305e-01,1.087806411462961115e-01 +4.939504197351125558e-01,9.223993237837325998e-02 +4.805408601918637057e-01,1.076663537273470500e-01 +4.968385712658466291e-01,1.082234974368215669e-01 +5.533183489830815205e-01,6.276971091880248488e-02 +5.706700802435797915e-01,7.823407600933318662e-02 +5.550104127741881666e-01,7.782114356749665618e-02 +4.747906946457011723e-01,7.554533329297738464e-02 +4.911335716228245052e-01,7.608910766968199346e-02 +6.342231756318297275e-01,5.063871960552416424e-02 +6.221928457631097364e-01,6.464764040182248428e-02 +6.191070236272906424e-01,5.589303638094551135e-02 +5.865540172032890354e-01,9.307533610006098190e-02 +6.016175116299500303e-01,7.959835519389533987e-02 +5.861437959367650219e-01,7.891621560161427018e-02 +6.375490466852671290e-01,7.998462937652550675e-02 +6.169737125521075338e-01,9.493534416859836234e-02 +6.195832791576085796e-01,7.979149228521043025e-02 +5.998130082968005095e-01,1.040225617975640698e-01 +6.079188266943225116e-01,1.225956635577395981e-01 +6.250795309496296470e-01,1.135084459287738906e-01 +6.124462696232149117e-01,1.087655038631689525e-01 +4.553565456659463551e-01,5.911196238579386614e-02 +4.615727663570678985e-01,9.085974236731472753e-02 +4.584646560115070990e-01,7.498585237655429336e-02 +5.321285736169298897e-01,1.243364277860880274e-01 +5.289697152987714590e-01,1.086690190831798297e-01 +2.900438974710954354e-01,7.199751364986572977e-02 +2.981487839901365566e-01,5.569466770326856470e-02 +2.817929649699215666e-01,5.910026961658559896e-02 +4.668454783201631542e-01,1.226712292868114562e-01 +4.642091223386155541e-01,1.067654858270631058e-01 +5.878896836447937702e-01,1.174095254534870819e-01 +5.872218504240414028e-01,1.052424307767740597e-01 +6.747539320964631715e-01,4.635350832936667442e-02 +6.546320465494872565e-01,5.265911902855534288e-02 +6.642376055048417882e-01,7.129941811509084293e-02 +6.843594910518177032e-01,6.499380741590220223e-02 +6.694957688006524243e-01,5.882646322222877255e-02 +5.839436158905391139e-01,1.352895484949802607e-01 +5.968875693216778577e-01,1.302424014897277937e-01 +3.677880704367715303e-01,1.185863759608969531e-01 +3.530777516840072350e-01,9.831553932954259500e-02 +3.689275100559457066e-01,9.919898802366698687e-02 +3.548810954678305318e-01,1.392044731301372573e-01 +3.697913557290147812e-01,1.325999921193106168e-01 +4.348584377588096128e-01,4.299721927224228746e-02 +4.185871871510701281e-01,4.315599330164389402e-02 +4.525447163098232917e-01,1.378814304967085902e-01 +4.860543896668504948e-01,1.400004700625759324e-01 +4.692939651428068570e-01,1.390087555574895384e-01 +5.518295628082472426e-01,4.608006725060471293e-02 +4.516260170514215799e-01,4.306445726652277650e-02 +5.195471236887023725e-01,1.413117542128818072e-01 +5.027993097155836200e-01,1.407368518445809846e-01 +3.353277227349408252e-01,1.104901567156526682e-01 +3.387229868051306325e-01,9.203341882550293562e-02 +3.131648882329162165e-01,5.395077545592660145e-02 +4.359171006528435588e-01,1.360491017632218524e-01 +5.526043574686451132e-01,1.404494346804334437e-01 +5.360791842706531529e-01,1.409279542863045021e-01 +3.904417504325309318e-01,2.499250317738437865e-01 +3.744404241479126760e-01,2.601776617790194090e-01 +3.897477336178494234e-01,2.635372518826260557e-01 +3.747717552385487205e-01,2.395739930589973476e-01 +3.792704849361197006e-01,2.239203075160634826e-01 +3.851754532093201178e-01,2.368135461635086370e-01 +3.601066550254624077e-01,2.355700427316617107e-01 +3.672543814919711491e-01,2.478854992291980308e-01 +2.953871254986852324e-01,9.734338634066641571e-02 +2.927155114848903894e-01,8.467044999526610050e-02 +2.956990309179237109e-01,1.147297305795011851e-01 +3.125266491672887836e-01,1.133953229578147093e-01 +3.039568873329869803e-01,1.053693546492405625e-01 +6.656962230616967346e-01,1.465954212613589797e-02 +6.612934424243688269e-01,3.548582085509011802e-02 +6.714707467538886254e-01,3.711008567471499320e-02 +6.707162097400491962e-01,2.588338792272917507e-02 +3.487957857642914883e-01,1.669785489891520425e-01 +3.388584305889277282e-01,1.335910696716705592e-01 +3.438271081766096082e-01,1.502848093304113009e-01 +6.408845715067115201e-01,3.346542143205893244e-02 +6.495001284574701828e-01,1.665333727552726489e-02 +3.256925398781082559e-01,1.234931963147426343e-01 +6.919843192235007878e-01,4.036497798316832780e-02 +6.801091770887828236e-01,4.110082131305431430e-02 +6.965358285506141334e-01,5.552663018926549260e-02 +3.610178317510087664e-01,2.167627936074818795e-01 +3.522548180356376291e-01,2.215033293379401191e-01 +2.812364645796308071e-01,1.264261965197207016e-01 +3.643549824061311782e-01,1.953236507494022778e-01 +3.720848830418098663e-01,2.094938535818733627e-01 +6.498277503878919781e-01,9.700986438245061405e-02 +6.542494548555781719e-01,8.333521576104696571e-02 +3.562003515341264359e-01,1.808910806939716676e-01 +6.444493493663032702e-01,1.139348976970067928e-01 +5.683782397135117570e-01,1.383449747572664257e-01 +6.477583090280992772e-01,4.306227023030714113e-02 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad8/connectivity.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/connectivity.csv new file mode 100644 index 000000000..24f7b319c --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/connectivity.csv @@ -0,0 +1,268 @@ +212,250,254,253,425,426,427,428 +250,214,251,254,429,430,431,426 +254,251,215,252,431,432,433,434 +253,254,252,213,427,434,435,436 +220,255,259,258,437,438,439,440 +255,10,256,259,441,442,443,438 +259,256,24,257,443,444,445,446 +258,259,257,223,439,446,447,448 +96,260,264,263,449,450,451,452 +260,221,261,264,453,454,455,450 +264,261,226,262,455,456,457,458 +263,264,262,218,451,458,459,460 +219,265,267,266,461,462,463,464 +265,94,95,267,465,198,466,462 +267,95,96,263,466,199,452,467 +266,267,263,218,463,467,460,468 +4,268,270,3,469,470,471,107 +268,227,269,270,472,473,474,470 +270,269,0,1,474,475,104,476 +3,270,1,2,471,476,105,106 +212,271,274,273,477,478,479,480 +271,88,89,274,481,192,482,478 +274,89,90,272,482,193,483,484 +273,274,272,229,479,484,485,486 +32,33,276,31,136,487,488,135 +33,34,275,276,137,489,490,487 +276,275,28,29,490,491,132,492 +31,276,29,30,488,492,133,134 +226,277,281,280,493,494,495,496 +277,237,278,281,497,498,499,494 +281,278,225,279,499,500,501,502 +280,281,279,236,495,502,503,504 +238,282,286,285,505,506,507,508 +282,231,283,286,509,510,511,506 +286,283,219,284,511,512,513,514 +285,286,284,236,507,514,515,516 +66,67,288,287,170,517,518,519 +67,68,69,288,171,172,520,517 +288,69,70,71,520,173,174,521 +287,288,71,72,518,521,175,522 +226,280,289,262,496,523,524,457 +280,236,284,289,504,515,525,523 +289,284,219,266,525,513,464,526 +262,289,266,218,524,526,468,459 +10,11,291,256,114,527,528,442 +11,12,290,291,115,529,530,527 +291,290,22,23,530,531,126,532 +256,291,23,24,528,532,127,444 +18,19,293,17,122,533,534,121 +19,20,292,293,123,535,536,533 +293,292,14,15,536,537,118,538 +17,293,15,16,534,538,119,120 +12,13,294,290,116,539,540,529 +13,14,292,294,117,537,541,539 +294,292,20,21,541,535,124,542 +290,294,21,22,540,542,125,531 +235,295,298,297,543,544,545,546 +295,228,296,298,547,548,549,544 +298,296,6,7,549,550,110,551 +297,298,7,8,545,551,111,552 +10,255,300,9,441,553,554,113 +255,220,299,300,437,555,556,553 +300,299,235,297,556,557,546,558 +9,300,297,8,554,558,552,112 +237,301,303,278,559,560,561,498 +301,44,45,303,562,148,563,560 +303,45,46,302,563,149,564,565 +278,303,302,225,561,565,566,500 +217,304,308,307,567,568,569,570 +304,216,305,308,571,572,573,568 +308,305,233,306,573,574,575,576 +307,308,306,215,569,576,577,578 +222,309,311,310,579,580,581,582 +309,221,260,311,583,453,584,580 +311,260,96,97,584,449,200,585 +310,311,97,98,581,585,201,586 +213,312,313,253,587,588,589,436 +312,86,87,313,590,190,591,588 +313,87,88,271,591,191,481,592 +253,313,271,212,589,592,477,428 +224,314,316,315,593,594,595,596 +314,238,285,316,597,508,598,594 +316,285,236,279,598,516,503,599 +315,316,279,225,595,599,501,600 +211,317,320,319,601,602,603,604 +317,82,83,320,605,186,606,602 +320,83,84,318,606,187,607,608 +319,320,318,210,603,608,609,610 +244,321,325,324,611,612,613,614 +321,245,322,325,615,616,617,612 +325,322,240,323,617,618,619,620 +324,325,323,222,613,620,621,622 +242,326,330,329,623,624,625,626 +326,241,327,330,627,628,629,624 +330,327,214,328,629,630,631,632 +329,330,328,230,625,632,633,634 +210,331,333,332,635,636,637,638 +331,213,252,333,639,435,640,636 +333,252,215,306,640,433,577,641 +332,333,306,233,637,641,575,642 +214,250,335,328,429,643,644,631 +250,212,273,335,425,480,645,643 +335,273,229,334,645,486,646,647 +328,335,334,230,644,647,648,633 +243,336,338,337,649,650,651,652 +336,80,81,338,653,184,654,650 +338,81,82,317,654,185,605,655 +337,338,317,211,651,655,601,656 +233,339,341,332,657,658,659,642 +339,232,340,341,660,661,662,658 +341,340,211,319,662,663,604,664 +332,341,319,210,659,664,610,638 +247,342,344,343,665,666,667,668 +342,243,337,344,669,652,670,666 +344,337,211,340,670,656,663,671 +343,344,340,232,667,671,661,672 +247,343,348,347,668,673,674,675 +343,232,345,348,672,676,677,673 +348,345,234,346,677,678,679,680 +347,348,346,58,674,680,681,682 +229,349,351,334,683,684,685,646 +349,231,282,351,686,509,687,684 +351,282,238,350,687,505,688,689 +334,351,350,230,685,689,690,648 +241,352,353,327,691,692,693,628 +352,217,307,353,694,570,695,692 +353,307,215,251,695,578,432,696 +327,353,251,214,693,696,430,630 +102,103,356,101,206,697,698,205 +103,0,354,356,207,699,700,697 +356,354,244,355,700,701,702,703 +101,356,355,100,698,703,704,204 +224,357,358,314,705,706,707,593 +357,242,329,358,708,626,709,706 +358,329,230,350,709,634,690,710 +314,358,350,238,707,710,688,597 +232,339,360,345,660,711,712,676 +339,233,305,360,657,574,713,711 +360,305,216,359,713,572,714,715 +345,360,359,234,712,715,716,678 +248,361,365,364,717,718,719,720 +361,249,362,365,721,722,723,718 +365,362,243,363,723,724,725,726 +364,365,363,64,719,726,727,728 +58,346,367,57,681,729,730,161 +346,234,359,367,679,716,731,729 +367,359,216,366,731,714,732,733 +57,367,366,56,730,733,734,160 +239,368,370,369,735,736,737,738 +368,237,277,370,739,497,740,736 +370,277,226,261,740,493,456,741 +369,370,261,221,737,741,454,742 +237,368,372,301,739,743,744,559 +368,239,371,372,735,745,746,743 +372,371,42,43,746,747,146,748 +301,372,43,44,744,748,147,562 +231,373,374,283,749,750,751,510 +373,92,93,374,752,196,753,750 +374,93,94,265,753,197,465,754 +283,374,265,219,751,754,461,512 +224,375,377,357,755,756,757,705 +375,48,49,377,758,152,759,756 +377,49,50,376,759,153,760,761 +357,377,376,242,757,761,762,708 +210,318,378,331,609,763,764,635 +318,84,85,378,607,188,765,763 +378,85,86,312,765,189,590,766 +331,378,312,213,764,766,587,639 +229,272,379,349,485,767,768,683 +272,90,91,379,483,194,769,767 +379,91,92,373,769,195,752,770 +349,379,373,231,768,770,749,686 +242,376,381,326,762,771,772,623 +376,50,51,381,760,154,773,771 +381,51,52,380,773,155,774,775 +326,381,380,241,772,775,776,627 +239,369,383,382,738,777,778,779 +369,221,309,383,742,583,780,777 +383,309,222,323,780,579,621,781 +382,383,323,240,778,781,619,782 +100,355,384,99,704,783,784,203 +355,244,324,384,702,614,785,783 +384,324,222,310,785,622,582,786 +99,384,310,98,784,786,586,202 +225,302,385,315,566,787,788,600 +302,46,47,385,564,150,789,787 +385,47,48,375,789,151,758,790 +315,385,375,224,788,790,755,596 +241,380,387,352,776,791,792,691 +380,52,53,387,774,156,793,791 +387,53,54,386,793,157,794,795 +352,387,386,217,792,795,796,694 +34,35,390,275,138,797,798,489 +35,36,388,390,139,799,800,797 +390,388,208,389,800,801,802,803 +275,390,389,28,798,803,804,491 +209,391,393,392,805,806,807,808 +391,208,388,393,809,801,810,806 +393,388,36,37,810,799,140,811 +392,393,37,38,807,811,141,812 +209,394,395,391,813,814,815,805 +394,26,27,395,816,130,817,814 +395,27,28,389,817,131,804,818 +391,395,389,208,815,818,802,809 +244,354,397,321,701,819,820,611 +354,0,269,397,699,475,821,819 +397,269,227,396,821,473,822,823 +321,397,396,245,820,823,824,615 +240,322,400,399,618,825,826,827 +322,245,396,400,616,824,828,825 +400,396,227,398,828,822,829,830 +399,400,398,228,826,830,831,832 +76,401,404,75,833,834,835,179 +401,246,402,404,836,837,838,834 +404,402,249,403,838,839,840,841 +75,404,403,74,835,841,842,178 +220,405,407,299,843,844,845,555 +405,42,371,407,846,747,847,844 +407,371,239,406,847,745,848,849 +299,407,406,235,845,849,850,557 +76,77,409,401,180,851,852,833 +77,78,79,409,181,182,853,851 +409,79,80,408,853,183,854,855 +401,409,408,246,852,855,856,836 +240,399,410,382,827,857,858,782 +399,228,295,410,832,547,859,857 +410,295,235,406,859,543,850,860 +382,410,406,239,858,860,848,779 +249,361,412,403,721,861,862,840 +361,248,411,412,717,863,864,861 +412,411,72,73,864,865,176,866 +403,412,73,74,862,866,177,842 +64,65,413,364,168,867,868,728 +65,66,287,413,169,519,869,867 +413,287,72,411,869,522,865,870 +364,413,411,248,868,870,863,720 +26,394,415,25,816,871,872,129 +394,209,414,415,813,873,874,871 +415,414,223,257,874,875,447,876 +25,415,257,24,872,876,445,128 +227,268,416,398,472,877,878,829 +268,4,5,416,469,108,879,877 +416,5,6,296,879,109,550,880 +398,416,296,228,878,880,548,831 +38,39,418,392,142,881,882,812 +39,40,417,418,143,883,884,881 +418,417,223,414,884,885,875,886 +392,418,414,209,882,886,873,808 +247,419,420,342,887,888,889,665 +419,62,63,420,890,166,891,888 +420,63,64,363,891,167,727,892 +342,420,363,243,889,892,725,669 +40,41,421,417,144,893,894,883 +41,42,405,421,145,846,895,893 +421,405,220,258,895,843,440,896 +417,421,258,223,894,896,448,885 +62,419,422,61,890,897,898,165 +419,247,347,422,887,675,899,897 +422,347,58,59,899,682,162,900 +61,422,59,60,898,900,163,164 +217,386,423,304,796,901,902,567 +386,54,55,423,794,158,903,901 +423,55,56,366,903,159,734,904 +304,423,366,216,902,904,732,571 +246,408,424,402,856,905,906,837 +408,80,336,424,854,653,907,905 +424,336,243,362,907,649,724,908 +402,424,362,249,906,908,722,839 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad8/coords.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/coords.csv new file mode 100644 index 000000000..0a32be64b --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/coords.csv @@ -0,0 +1,909 @@ +6.004848057265232963e-02,-4.843165897626279248e-01,0.000000000000000000e+00 +2.919332359799522297e-02,-4.701812391146036885e-01,0.000000000000000000e+00 +5.702108874354874096e-03,-4.472499915184301456e-01,0.000000000000000000e+00 +2.385056906748106702e-03,-4.150642388020465701e-01,0.000000000000000000e+00 +1.645017650033056902e-02,-3.841902982287730972e-01,0.000000000000000000e+00 +3.584009087991152365e-02,-3.561964218329775611e-01,0.000000000000000000e+00 +5.801395929437848376e-02,-3.303392552321408604e-01,0.000000000000000000e+00 +8.293073671007884784e-02,-3.076136294521122361e-01,0.000000000000000000e+00 +1.139952744725080680e-01,-2.937112322862951985e-01,0.000000000000000000e+00 +1.223662153155886806e-01,-2.742581642175385692e-01,0.000000000000000000e+00 +1.049977714551861979e-01,-2.452632505621556991e-01,0.000000000000000000e+00 +9.018002144510810225e-02,-2.145895105217175136e-01,0.000000000000000000e+00 +8.018218636456606041e-02,-1.820000072988329498e-01,0.000000000000000000e+00 +7.009580857725229708e-02,-1.494373557724055501e-01,0.000000000000000000e+00 +6.000943078761316468e-02,-1.168747042384712248e-01,0.000000000000000000e+00 +5.159311260193652493e-02,-8.390723200034304330e-02,0.000000000000000000e+00 +4.551221033791560955e-02,-5.036554966506464476e-02,0.000000000000000000e+00 +3.945391014193982970e-02,-1.705587469368324491e-02,0.000000000000000000e+00 +5.378040055042167950e-02,-1.829469177060037699e-02,0.000000000000000000e+00 +7.783299078513267188e-02,-4.238729981227122579e-02,0.000000000000000000e+00 +9.914043217408542719e-02,-6.898179277590112124e-02,0.000000000000000000e+00 +1.203002326042813541e-01,-9.570791807824664821e-02,0.000000000000000000e+00 +1.400404682056067829e-01,-1.234921134741018556e-01,0.000000000000000000e+00 +1.566149613706762644e-01,-1.532744504951372710e-01,0.000000000000000000e+00 +1.723219080626108846e-01,-1.835294940343784043e-01,0.000000000000000000e+00 +1.888516399720213401e-01,-1.804413418506362055e-01,0.000000000000000000e+00 +2.043082629230232594e-01,-1.502812316029054351e-01,0.000000000000000000e+00 +2.212522080849962658e-01,-1.207007071479050120e-01,0.000000000000000000e+00 +2.383489942146148621e-01,-9.121310084478087554e-02,0.000000000000000000e+00 +2.607724535093945417e-01,-6.555252185056814618e-02,0.000000000000000000e+00 +2.833132674505545179e-01,-3.998014228663895886e-02,0.000000000000000000e+00 +3.077003594001336828e-01,-1.639050410806901573e-02,0.000000000000000000e+00 +3.345127617005000387e-01,1.855931034488686763e-04,0.000000000000000000e+00 +3.281315322672765933e-01,-3.324266029778581016e-02,0.000000000000000000e+00 +3.211054836905261611e-01,-6.661238776510097770e-02,0.000000000000000000e+00 +3.116376623284484726e-01,-9.936020588996495595e-02,0.000000000000000000e+00 +3.021773192426413512e-01,-1.321102232909067697e-01,0.000000000000000000e+00 +2.927382818065917269e-01,-1.648660598444010583e-01,0.000000000000000000e+00 +2.807516240895960302e-01,-1.967513224319663856e-01,0.000000000000000000e+00 +2.679525727339239216e-01,-2.283464159888529410e-01,0.000000000000000000e+00 +2.529823465419616113e-01,-2.589193393631942786e-01,0.000000000000000000e+00 +2.358505800115569817e-01,-2.883742698221542500e-01,0.000000000000000000e+00 +2.217107779147192148e-01,-3.157547986796828132e-01,0.000000000000000000e+00 +2.453007938744269367e-01,-3.392614865715841699e-01,0.000000000000000000e+00 +2.755830522912312563e-01,-3.428660165190158815e-01,0.000000000000000000e+00 +3.092360174068158885e-01,-3.374583494713879750e-01,0.000000000000000000e+00 +3.430428620336029577e-01,-3.330814030258116287e-01,0.000000000000000000e+00 +3.768495674304221943e-01,-3.287034063148845386e-01,0.000000000000000000e+00 +4.106529951962060165e-01,-3.243004354847279225e-01,0.000000000000000000e+00 +4.446436873731409167e-01,-3.218444326403373523e-01,0.000000000000000000e+00 +4.786789587073724261e-01,-3.199293721198604445e-01,0.000000000000000000e+00 +5.127138350790136911e-01,-3.180143338227191530e-01,0.000000000000000000e+00 +5.467602551404103783e-01,-3.167434271631632825e-01,0.000000000000000000e+00 +5.808407326728340925e-01,-3.175100528834015612e-01,0.000000000000000000e+00 +6.148937368462310538e-01,-3.186545096889494832e-01,0.000000000000000000e+00 +6.486433732891212500e-01,-3.234468951563104211e-01,0.000000000000000000e+00 +6.815612916086731810e-01,-3.320326279690322124e-01,0.000000000000000000e+00 +7.121878598228823520e-01,-3.463185805043799137e-01,0.000000000000000000e+00 +7.351847988719928395e-01,-3.709741443869505328e-01,0.000000000000000000e+00 +7.680700906913938697e-01,-3.769096788358619610e-01,0.000000000000000000e+00 +8.013241345174824115e-01,-3.843375741810614032e-01,0.000000000000000000e+00 +8.279192781122955980e-01,-4.043338241692824853e-01,0.000000000000000000e+00 +8.339039529016689656e-01,-4.367859906494959144e-01,0.000000000000000000e+00 +8.419568586375787422e-01,-4.587856878778465708e-01,0.000000000000000000e+00 +8.722139823119900992e-01,-4.742481074535368490e-01,0.000000000000000000e+00 +9.020651429807413635e-01,-4.906922583738178023e-01,0.000000000000000000e+00 +9.315276780746999385e-01,-5.078389089620602981e-01,0.000000000000000000e+00 +9.592226529057457096e-01,-5.277020203255115005e-01,0.000000000000000000e+00 +9.830549006722962835e-01,-5.520138124532392165e-01,0.000000000000000000e+00 +9.996199718866292105e-01,-5.803810364764097063e-01,0.000000000000000000e+00 +9.688217987179663648e-01,-5.882903266603426440e-01,0.000000000000000000e+00 +9.352529492594242599e-01,-5.823706661889094249e-01,0.000000000000000000e+00 +9.026289618060880926e-01,-5.724910219551621049e-01,0.000000000000000000e+00 +8.709057087683703680e-01,-5.601798826278462373e-01,0.000000000000000000e+00 +8.520935037966993475e-01,-5.667227816026259024e-01,0.000000000000000000e+00 +8.602842693341554714e-01,-5.992060314118218267e-01,0.000000000000000000e+00 +8.514604135374446159e-01,-6.316779049430440995e-01,0.000000000000000000e+00 +8.191227677294958820e-01,-6.300992395612994290e-01,0.000000000000000000e+00 +7.895612008604531162e-01,-6.133034226712270609e-01,0.000000000000000000e+00 +7.682614275983702390e-01,-5.868781861521152887e-01,0.000000000000000000e+00 +7.524882326216592032e-01,-5.566623871399876133e-01,0.000000000000000000e+00 +7.324033004071114350e-01,-5.376617237692883355e-01,0.000000000000000000e+00 +7.007764967732799111e-01,-5.505310516040722302e-01,0.000000000000000000e+00 +6.685724799074117541e-01,-5.613685329798889789e-01,0.000000000000000000e+00 +6.349842450482957590e-01,-5.671823499267011348e-01,0.000000000000000000e+00 +6.014056746087743655e-01,-5.730595918181954351e-01,0.000000000000000000e+00 +5.674653072159082656e-01,-5.758245105458666968e-01,0.000000000000000000e+00 +5.334259251520678813e-01,-5.776611435647095449e-01,0.000000000000000000e+00 +4.993418835641874609e-01,-5.781759563420419967e-01,0.000000000000000000e+00 +4.652548567318075534e-01,-5.785458917464381123e-01,0.000000000000000000e+00 +4.311681879962143693e-01,-5.782033108421773537e-01,0.000000000000000000e+00 +3.970816380792898115e-01,-5.777934089878838941e-01,0.000000000000000000e+00 +3.629950929640429202e-01,-5.773825605690460216e-01,0.000000000000000000e+00 +3.289257807262868649e-01,-5.762699732376199702e-01,0.000000000000000000e+00 +2.948611349426097927e-01,-5.749806691571364148e-01,0.000000000000000000e+00 +2.608044640426027128e-01,-5.735462432803494215e-01,0.000000000000000000e+00 +2.268087057651513583e-01,-5.710271784661334893e-01,0.000000000000000000e+00 +1.928535716231018771e-01,-5.680908650559598483e-01,0.000000000000000000e+00 +1.591530771192863347e-01,-5.629607564498371186e-01,0.000000000000000000e+00 +1.256504247208752589e-01,-5.567243902870158134e-01,0.000000000000000000e+00 +9.237838384760233001e-02,-5.493476585285678171e-01,0.000000000000000000e+00 +5.907582917876276485e-02,-5.429784600638217773e-01,0.000000000000000000e+00 +2.631061198055023587e-02,-5.334645456640688677e-01,0.000000000000000000e+00 +3.344264749943672704e-02,-5.054394720138088992e-01,0.000000000000000000e+00 +4.471738984992355143e-02,-4.772931173699760943e-01,0.000000000000000000e+00 +1.462324576754188421e-02,-4.616919698182223586e-01,0.000000000000000000e+00 +-8.517857949942261343e-05,-4.319153524754058004e-01,0.000000000000000000e+00 +8.600288085503197608e-03,-3.993258479033550135e-01,0.000000000000000000e+00 +2.585570437384715828e-02,-3.700111686396220234e-01,0.000000000000000000e+00 +4.667255214595694007e-02,-3.430619723998418746e-01,0.000000000000000000e+00 +6.932948487575385510e-02,-3.175961166992411489e-01,0.000000000000000000e+00 +9.808692463560779451e-02,-2.998140451763020575e-01,0.000000000000000000e+00 +1.299454535168267366e-01,-2.875284024070169364e-01,0.000000000000000000e+00 +1.125933023192374621e-01,-2.604423481584716704e-01,0.000000000000000000e+00 +9.733925705830824560e-02,-2.300363972474571417e-01,0.000000000000000000e+00 +8.522546225077859416e-02,-1.982816139069976946e-01,0.000000000000000000e+00 +7.513899747136998375e-02,-1.657186815371069488e-01,0.000000000000000000e+00 +6.505261968234460346e-02,-1.331560300051537471e-01,0.000000000000000000e+00 +5.489066910914899150e-02,-1.006172612260153726e-01,0.000000000000000000e+00 +4.855273530992069986e-02,-6.713637766718565103e-02,0.000000000000000000e+00 +4.249211610991032728e-02,-3.370741289117943490e-02,0.000000000000000000e+00 +4.119063355659382392e-02,-6.589231548572825267e-03,0.000000000000000000e+00 +6.637561457508599216e-02,-2.977546183849196643e-02,0.000000000000000000e+00 +8.876248704039116366e-02,-5.546133157279835302e-02,0.000000000000000000e+00 +1.096906803897454291e-01,-8.236831060851147746e-02,0.000000000000000000e+00 +1.303008723763331711e-01,-1.095092980887552581e-01,0.000000000000000000e+00 +1.484454238560639627e-01,-1.383167744243102015e-01,0.000000000000000000e+00 +1.644619088467716705e-01,-1.684053508158442347e-01,0.000000000000000000e+00 +1.808565748405669416e-01,-1.956196217209197341e-01,0.000000000000000000e+00 +1.965598043508583748e-01,-1.653504865833013426e-01,0.000000000000000000e+00 +2.127669947245897086e-01,-1.354834211024188162e-01,0.000000000000000000e+00 +2.297369728125545907e-01,-1.059187747896558202e-01,0.000000000000000000e+00 +2.495018052649687068e-01,-7.833898535585001599e-02,0.000000000000000000e+00 +2.720428604809680406e-01,-5.276633206747639165e-02,0.000000000000000000e+00 +2.945264632915480796e-01,-2.710690354056056323e-02,0.000000000000000000e+00 +3.217246866059455535e-01,-6.729378634196279962e-03,0.000000000000000000e+00 +3.311005946922745968e-01,-1.648632426374886314e-02,0.000000000000000000e+00 +3.251663902698930242e-01,-5.004897596799178644e-02,0.000000000000000000e+00 +3.163678361081146972e-01,-8.298518944622160221e-02,0.000000000000000000e+00 +3.069074907856296219e-01,-1.157352145901424656e-01,0.000000000000000000e+00 +2.974471952000510844e-01,-1.484850675537800480e-01,0.000000000000000000e+00 +2.871664360392695015e-01,-1.809598810601583396e-01,0.000000000000000000e+00 +2.743520984107704064e-01,-2.125488692128522650e-01,0.000000000000000000e+00 +2.612098588642268737e-01,-2.439937412944063189e-01,0.000000000000000000e+00 +2.447265682545055610e-01,-2.738345982990770255e-01,0.000000000000000000e+00 +2.261133651920878285e-01,-3.023684228697683385e-01,0.000000000000000000e+00 +2.357248348020678508e-01,-3.254245715876851741e-01,0.000000000000000000e+00 +2.588204088620438270e-01,-3.459113902362027648e-01,0.000000000000000000e+00 +2.923852037685167327e-01,-3.400018834238718868e-01,0.000000000000000000e+00 +3.261395042646128561e-01,-3.352704020379194683e-01,0.000000000000000000e+00 +3.599462147268921997e-01,-3.308924046710111089e-01,0.000000000000000000e+00 +3.937529084342308860e-01,-3.265144094738816616e-01,0.000000000000000000e+00 +4.276251299431650388e-01,-3.227838966719473457e-01,0.000000000000000000e+00 +4.616613230418729619e-01,-3.208869023800078324e-01,0.000000000000000000e+00 +4.956963968897737383e-01,-3.189718529714821171e-01,0.000000000000000000e+00 +5.297309445857432131e-01,-3.170547775486495246e-01,0.000000000000000000e+00 +5.638004032282918354e-01,-3.171301686835217293e-01,0.000000000000000000e+00 +5.978811648700105286e-01,-3.178899393739709200e-01,0.000000000000000000e+00 +6.317674908132590028e-01,-3.210581767618154725e-01,0.000000000000000000e+00 +6.653239277013227593e-01,-3.268490728997080486e-01,0.000000000000000000e+00 +6.977887865074876572e-01,-3.372293775121090187e-01,0.000000000000000000e+00 +7.251290596408153100e-01,-3.572239651787743608e-01,0.000000000000000000e+00 +7.510949563984810062e-01,-3.755414840371326113e-01,0.000000000000000000e+00 +7.846986002352921430e-01,-3.806072737565684427e-01,0.000000000000000000e+00 +8.162996121027432661e-01,-3.922379128226885503e-01,0.000000000000000000e+00 +8.343037254088400134e-01,-4.200912883450751423e-01,0.000000000000000000e+00 +8.267131387906894169e-01,-4.510521836447987654e-01,0.000000000000000000e+00 +8.571433972720782224e-01,-4.664035055987748590e-01,0.000000000000000000e+00 +8.873116287066417085e-01,-4.821580737337584077e-01,0.000000000000000000e+00 +9.168112438365858541e-01,-4.992405049387054206e-01,0.000000000000000000e+00 +9.454458864507750970e-01,-5.176676987995620927e-01,0.000000000000000000e+00 +9.714787204368406925e-01,-5.395115118214162120e-01,0.000000000000000000e+00 +9.938410440108449428e-01,-5.652260266833185609e-01,0.000000000000000000e+00 +9.853952515683953584e-01,-5.882911954501085505e-01,0.000000000000000000e+00 +9.520308737409126643e-01,-5.853606859731322887e-01,0.000000000000000000e+00 +9.189423083686208971e-01,-5.774298875257997121e-01,0.000000000000000000e+00 +8.864384656194790324e-01,-5.671880167331981859e-01,0.000000000000000000e+00 +8.544680283177890079e-01,-5.556910936031101977e-01,0.000000000000000000e+00 +8.589658645625469768e-01,-5.823077008690362710e-01,0.000000000000000000e+00 +8.576431123031689197e-01,-6.159646957187532301e-01,0.000000000000000000e+00 +8.352045597151315226e-01,-6.353370443648650445e-01,0.000000000000000000e+00 +8.040478650430814556e-01,-6.221773970050540337e-01,0.000000000000000000e+00 +7.779841481356388755e-01,-6.007997793925464736e-01,0.000000000000000000e+00 +7.603977094873157760e-01,-5.717584889815040539e-01,0.000000000000000000e+00 +7.445914116081279177e-01,-5.415875002562230422e-01,0.000000000000000000e+00 +7.165944405434208075e-01,-5.441029303260359606e-01,0.000000000000000000e+00 +6.850139047268041237e-01,-5.570158907733564480e-01,0.000000000000000000e+00 +6.517749533035582798e-01,-5.642543880178496618e-01,0.000000000000000000e+00 +6.181930519714234906e-01,-5.701103963786933182e-01,0.000000000000000000e+00 +5.844858195655149302e-01,-5.749212157428079673e-01,0.000000000000000000e+00 +5.504453245829018515e-01,-5.767381511984756015e-01,0.000000000000000000e+00 +5.163854548956035018e-01,-5.779953342521995108e-01,0.000000000000000000e+00 +4.822983406218540048e-01,-5.783581551442035229e-01,0.000000000000000000e+00 +4.482114571415318771e-01,-5.784082616994190573e-01,0.000000000000000000e+00 +4.141249130296609238e-01,-5.779983599149333129e-01,0.000000000000000000e+00 +3.800383576886461889e-01,-5.775884579954136955e-01,0.000000000000000000e+00 +3.459580835304310598e-01,-5.769147407441514996e-01,0.000000000000000000e+00 +3.118934578303711458e-01,-5.756253211972237604e-01,0.000000000000000000e+00 +2.778287992264460993e-01,-5.743360166315101267e-01,0.000000000000000000e+00 +2.438070978817357681e-01,-5.722799678274512747e-01,0.000000000000000000e+00 +2.098095384751252068e-01,-5.697832580181841911e-01,0.000000000000000000e+00 +1.760049608715986424e-01,-5.655149757726337656e-01,0.000000000000000000e+00 +1.423726805026374886e-01,-5.600084659184914049e-01,0.000000000000000000e+00 +1.089133006039735840e-01,-5.534677564151782025e-01,0.000000000000000000e+00 +7.581965352792713331e-02,-5.457402917051493718e-01,0.000000000000000000e+00 +4.243826052251067904e-02,-5.390303857991042280e-01,0.000000000000000000e+00 +2.201237328786378664e-02,-5.179775849313384972e-01,0.000000000000000000e+00 +4.685336115847687360e-02,-4.948427338020844890e-01,0.000000000000000000e+00 +2.628064627796974362e-01,-1.343097153458485682e-01,1.112172293353178754e-17 +2.396706539426173843e-01,-1.733998921419201977e-01,7.024523371775326723e-18 +6.394911122957659400e-01,-5.042620175849209518e-01,-1.129120872880866197e-18 +7.044999726864072942e-01,-5.007816473829618253e-01,2.038930625934702975e-18 +5.106403352986201849e-01,-5.111637931815286029e-01,-7.408631014548044442e-18 +5.751975933576549682e-01,-5.087092029754723965e-01,-4.341170317552985753e-18 +5.211877958304390601e-01,-4.465080742557933080e-01,-1.866215471797085067e-18 +5.837751840294166383e-01,-4.458699235480461098e-01,9.710095367247427270e-19 +6.552897558075261308e-01,-3.916613363528233527e-01,8.408774136384371433e-18 +5.969468997384086428e-01,-3.844569799870810600e-01,6.375869664985723501e-18 +2.742335300504686879e-01,-5.131112600570336690e-01,-1.808915174782895702e-17 +3.174927254404426025e-01,-5.154184307129001663e-01,-1.634373668929591199e-17 +1.771497639668720425e-01,-2.815336547877614892e-01,-4.243556164928986986e-18 +2.145173483749572008e-01,-4.788582883686988145e-01,-1.806105208310021521e-17 +1.577069097575213297e-01,-4.910045808891139729e-01,-2.154391428372731600e-17 +2.079428919007508259e-01,-2.253022135283331284e-01,1.539498457746989182e-18 +4.020557704126931919e-01,-3.890546679266019825e-01,-2.663793670294162050e-18 +3.370095148562104459e-01,-3.948668237763194311e-01,-6.016456074221967581e-18 +2.691925828431865897e-01,-4.661338646109639550e-01,-1.462791671658525692e-17 +7.658920011842870745e-02,-4.249716027482547398e-01,-1.997549927387392978e-17 +1.104715905434620893e-01,-3.807342346573793224e-01,-1.499589546944756231e-17 +4.447608085481308260e-01,-5.131018226539851845e-01,-1.049444735362532379e-17 +4.566858223184624421e-01,-4.489082111379067430e-01,-4.926941962379154731e-18 +3.791641746963337889e-01,-5.144599360957387013e-01,-1.352216718649214401e-17 +7.028511783900115439e-01,-4.450611266058359106e-01,6.337187906926864084e-18 +6.444126023509224588e-01,-4.470227837503795709e-01,3.580880106301130594e-18 +6.973019177743493557e-01,-4.033549609995192853e-01,9.362220117691365253e-18 +1.577973345216641399e-01,-3.381463263622900284e-01,-9.547041007063235732e-18 +3.300923890543120409e-01,-4.559873909751034349e-01,-1.111984615947302431e-17 +2.731959222579165569e-01,-3.979991441901399307e-01,-9.103972557105698510e-18 +3.920352901756293806e-01,-4.520135689291293613e-01,-8.049613834396402326e-18 +2.014236971862120584e-01,-3.923227674993989833e-01,-1.185479825562371156e-17 +1.437135539353064650e-01,-4.302944742328986827e-01,-1.740391869017124202e-17 +5.332170705721842596e-01,-3.829283219303606378e-01,3.657771158649929204e-18 +4.676978719463213974e-01,-3.849730103262424818e-01,5.796328713710914573e-19 +7.849249447298678461e-01,-5.046986257840807566e-01,5.313120289833899261e-18 +1.044543240010477325e-01,-4.918454825099134453e-01,-2.398134679526000883e-17 +1.092274186465177765e-01,-4.500873127326807666e-01,-2.049255673831296771e-17 +8.114968509256074158e-01,-5.732018759598397351e-01,1.121846861851414834e-18 +7.657549315704933468e-01,-4.396033237980205288e-01,9.566638268213730383e-18 +8.651899320205616029e-01,-5.298513263820873176e-01,6.914087972107056042e-18 +8.338979872392811021e-01,-5.486031357525801289e-01,4.049370763024199307e-18 +5.159140655645295670e-01,-4.788359337186609554e-01,-4.637423243172563984e-18 +5.524814899299277382e-01,-4.461889989019197089e-01,-4.476029675361711698e-19 +5.794863886935358588e-01,-4.772895632617593087e-01,-1.685080390414120743e-18 +5.429189643281376876e-01,-5.099364980785004997e-01,-5.874900666050515097e-18 +5.477002271290327684e-01,-4.780627484902101321e-01,-3.161251816793346215e-18 +1.410737677110291410e-01,-2.633984526749585942e-01,-4.427262513283066546e-18 +1.386598397588985621e-01,-2.143963722982670794e-01,-6.901890751741397860e-19 +1.901323999816808274e-01,-2.044158537813557663e-01,2.385044584517930169e-18 +1.925463279338113787e-01,-2.534179341580472533e-01,-1.352028853590998131e-18 +1.656030838463549149e-01,-2.339071532281571386e-01,-1.021108964382569729e-18 +2.206630270700543350e-01,-5.249427334174162629e-01,-2.140303245161883364e-17 +2.418549656090719091e-01,-4.724960764898313847e-01,-1.634448439984273761e-17 +2.717130564468276388e-01,-4.896225623339988120e-01,-1.635853423220711159e-17 +2.505211179078100092e-01,-5.420692192615835792e-01,-2.141708228398320762e-17 +2.461880417584410008e-01,-5.072826478757075375e-01,-1.888078334191297416e-17 +3.061769301915262531e-01,-5.451995499350184016e-01,-1.918420085712153543e-17 +2.958631277454557007e-01,-5.142648453849668622e-01,-1.721644421856243451e-17 +2.783337958940290680e-01,-5.439055443326581418e-01,-2.032259417619480091e-17 +4.651968830937960875e-02,-4.045809504885139463e-01,-1.971476679882321436e-17 +6.831884034554053242e-02,-4.546440962554413323e-01,-2.267182085698789062e-17 +3.351096306339013120e-02,-4.370531417657813611e-01,-2.284175521090148853e-17 +5.049911094314037951e-01,-5.446698747617852998e-01,-1.028900058133424509e-17 +4.379644982721725421e-01,-5.456525667480812691e-01,-1.335094597082490487e-17 +4.777005719233753944e-01,-5.121328079177568382e-01,-8.951539184086684114e-18 +4.714777143275915572e-01,-5.453393498320975308e-01,-1.183395278985168284e-17 +2.797272389525705671e-01,-7.891274430494094050e-02,1.622154019054502991e-17 +2.938456653006388253e-01,-4.764420583241398000e-02,1.930351073985737453e-17 +2.711942525505516288e-01,-4.320665044005519428e-01,-1.186594463684547771e-17 +3.051027185570635569e-01,-3.964329839832296809e-01,-7.560214315663831505e-18 +3.335509519552612434e-01,-4.254271073757114330e-01,-8.568151116847495944e-18 +2.996424859487493153e-01,-4.610606277930336949e-01,-1.287388143802913599e-17 +3.023726022529064084e-01,-4.287468058881316324e-01,-1.021704787684648529e-17 +3.855997324359816125e-01,-4.832367525124340313e-01,-1.078589051044427471e-17 +3.483284500683881957e-01,-5.149391834043194338e-01,-1.493295193789402646e-17 +3.237925572473773217e-01,-4.857029108440018561e-01,-1.373179142438447123e-17 +3.610638396149707385e-01,-4.540004799521163981e-01,-9.584729996934710235e-18 +3.546961448416794394e-01,-4.844698316782178882e-01,-1.225884096741436989e-17 +9.170783199403941266e-01,-5.401649654586112570e-01,8.415614495840935768e-18 +9.590786121783340112e-01,-5.601508267170198785e-01,8.717945367363480964e-18 +2.977528068471024802e-01,-4.876627365890003896e-01,-1.504516282829579141e-17 +1.101113272850864355e-01,-1.527460603864674304e-01,2.875398564548251683e-18 +1.233974914078922180e-01,-1.839319805084274617e-01,1.020298192730393447e-18 +7.957493148084929246e-02,-9.292824850718618690e-02,6.208688269166320070e-18 +5.961685404242019620e-02,-5.451014289423250503e-02,8.334091078776767781e-18 +9.519802059076684642e-02,-1.225726369253261200e-01,4.578600853466359678e-18 +1.341344625325631146e-01,-3.594402805098346754e-01,-1.227146823825539902e-17 +8.424277491892026570e-02,-3.555367449447601191e-01,-1.418699663444149599e-17 +1.358963044970861178e-01,-3.159287793242926412e-01,-8.779214394127295405e-18 +1.085325996213209881e-01,-3.335269549809734557e-01,-1.137848723836659931e-17 +1.674735492442681051e-01,-3.098399905750257588e-01,-6.895298585996108277e-18 +1.449198822799284136e-01,-2.920490773962821640e-01,-6.503837122473188188e-18 +2.743894872745739622e-01,-3.704325803545779339e-01,-6.888022153906840325e-18 +3.400261884449067851e-01,-3.639741134010655577e-01,-3.458358049957101002e-18 +3.071693679819397227e-01,-3.669456667273088835e-01,-5.154686362516382016e-18 +6.261183277729673868e-01,-3.880591581699521786e-01,7.392321900685048622e-18 +6.498511790792244058e-01,-4.193420600516015173e-01,5.994827121342750628e-18 +6.140938931901694930e-01,-4.464463536492128126e-01,2.275944821512937046e-18 +5.903610418839125851e-01,-4.151634517675635849e-01,3.673439600855232729e-18 +6.201061104815683844e-01,-4.172527559095824956e-01,4.834133361098992064e-18 +1.861121290662392791e-01,-4.849314346289064215e-01,-1.980248318341376561e-17 +1.584299934384038322e-01,-5.269826686694756290e-01,-2.433445748813511383e-17 +1.894828503446705781e-01,-5.265111498424331904e-01,-2.291460970293608926e-17 +5.713314502867816724e-01,-5.422668567606696577e-01,-7.146181405725367474e-18 +5.381724447401028399e-01,-5.437988208216051333e-01,-8.743020409164700946e-18 +3.970455302941612863e-01,-4.205341184278656996e-01,-5.356703752345281418e-18 +3.695326426344518467e-01,-3.919607458514606790e-01,-4.340124872258064045e-18 +3.652982411247112093e-01,-4.229806129017885663e-01,-6.962427434596390222e-18 +7.026382347298436581e-01,-5.256563494935170278e-01,4.421188293762888383e-21 +6.372376786720308495e-01,-5.357221837558110433e-01,-3.697751153240595498e-18 +6.719955424910866171e-01,-5.025218324839414441e-01,4.549048765269191594e-19 +6.702840111992491856e-01,-5.319451827319152670e-01,-1.929790187015400207e-18 +1.068408713237827545e-01,-4.709663976212970504e-01,-2.223695176678648519e-17 +1.264704862909121208e-01,-4.401908934827897246e-01,-1.894823771424210333e-17 +1.507102318464139390e-01,-4.606495275610063556e-01,-1.947391648694928055e-17 +1.310806168792844895e-01,-4.914250316995137369e-01,-2.276263053949366242e-17 +1.287755515850983468e-01,-4.658079625911517585e-01,-2.085543412686788904e-17 +5.004574712592528840e-01,-3.839506661283015876e-01,2.118702015010509945e-18 +5.272024332013115488e-01,-4.147181980930769729e-01,8.957778434264216833e-19 +4.889368090744506956e-01,-4.477081426968499978e-01,-3.396578717088119128e-18 +4.621918471323918642e-01,-4.169406107320746124e-01,-2.173654545504032407e-18 +4.946971401668518453e-01,-4.158294044125758204e-01,-6.389383510388045916e-19 +6.073443528267105096e-01,-5.064856102801966742e-01,-2.735145595216925975e-18 +6.419518573233441439e-01,-4.756424006676502336e-01,1.225879616710131813e-18 +6.107191230084401123e-01,-4.764659819647047989e-01,-2.296003868519944646e-19 +4.507233154332965785e-01,-4.810050168959459360e-01,-7.710694658002239259e-18 +4.833186904989130728e-01,-4.799204753073034180e-01,-6.174058950587400081e-18 +7.687065886757634692e-01,-5.306805064620342405e-01,2.552412053688368585e-18 +7.447124587081376257e-01,-5.027401365835213465e-01,3.676025457884301118e-18 +7.385578795576245303e-01,-5.202009301764048965e-01,2.032021399028216120e-18 +6.736318903704668903e-01,-4.460419551781077407e-01,4.959034006613997724e-18 +7.036755755382093636e-01,-4.729213869943988957e-01,4.188059266430783529e-18 +6.728137164307768092e-01,-4.742818938310245369e-01,2.706969441570459212e-18 +7.753399381501806520e-01,-4.721509747910506705e-01,7.439879279023814822e-18 +7.343030549802525009e-01,-4.423322252019282197e-01,7.951913087570298004e-18 +7.395077568441950078e-01,-4.725361808927247553e-01,5.813969272727299946e-18 +7.000765480821805609e-01,-4.242080438026776257e-01,7.849704012309114669e-18 +7.162433583231712086e-01,-3.871645526932349646e-01,1.147598092336649068e-17 +7.504698652212432597e-01,-4.052887340924855586e-01,1.157818999862767247e-17 +7.252732066517117993e-01,-4.147483889475816476e-01,9.713947005468393571e-18 +4.119624916222323074e-01,-5.137808793748619429e-01,-1.200830727005873390e-17 +4.243605562470458836e-01,-4.504608900335180799e-01,-6.488277898387776988e-18 +4.181615239346390678e-01,-4.821208847041900114e-01,-9.248292584223260066e-18 +5.650819851552963957e-01,-3.836926509587208489e-01,5.016820411817826352e-18 +5.587817375426120670e-01,-4.149408249303202512e-01,2.284608722140826436e-18 +8.225140228685001720e-02,-4.880810361362707406e-01,-2.467474461768093631e-17 +9.841635392432507290e-02,-5.205965705192405757e-01,-2.650596404422140960e-17 +6.579516634422419297e-02,-5.138042002502765104e-01,-2.742574797731597654e-17 +4.348768211795072669e-01,-3.870138391264222322e-01,-1.042080399461535296e-18 +4.296186887132766308e-01,-4.187373645799701283e-01,-3.765179148924656142e-18 +6.762958367909377433e-01,-3.975081486761713467e-01,8.885497127037868343e-18 +6.749638635807022613e-01,-4.217750519271394882e-01,6.922265566825933804e-18 +8.495439596299213525e-01,-5.392272310673337232e-01,5.481729367565627674e-18 +8.094114659845745852e-01,-5.266508807683304427e-01,4.681245526429049284e-18 +8.285694635209290837e-01,-4.894733666188088583e-01,8.451241834121112644e-18 +8.687019571662758510e-01,-5.020497169178120833e-01,9.251725675257691805e-18 +8.390567115754251626e-01,-5.143502988430712630e-01,6.966485600843369003e-18 +6.684255237080997114e-01,-3.618469821609278103e-01,1.133289331344536302e-17 +6.942418483069101587e-01,-3.719133645902756302e-01,1.169277119904814944e-17 +2.373098097220642799e-01,-3.951609558447695125e-01,-1.047938540636470349e-17 +2.079705227805846157e-01,-4.355905279340489544e-01,-1.495792516936196339e-17 +2.395823876655680806e-01,-4.338285161673005041e-01,-1.341193490310372363e-17 +2.115672375504656644e-01,-3.540387830895409538e-01,-8.399425365143825382e-18 +2.413053017982456638e-01,-3.672112212081768412e-01,-8.108596329812155485e-18 +3.710796338301883823e-01,-5.459212483323924170e-01,-1.635055972883310766e-17 +3.386271153973375303e-01,-5.456045783209697575e-01,-1.777089842480686002e-17 +4.063543828044496320e-01,-3.566775517056649525e-01,6.785445732408190470e-20 +4.731884153268469118e-01,-3.524511912230514632e-01,3.375713369641170702e-18 +4.397602542763241473e-01,-3.544291358833797645e-01,1.731897829913660378e-18 +6.043750137177424930e-01,-5.397726010491961102e-01,-5.478984491804402859e-18 +4.045220648507610872e-01,-5.457871441813729740e-01,-1.485077146951180986e-17 +5.399886628562973190e-01,-3.498358745467620157e-01,6.555669607332508717e-18 +5.065856531691333986e-01,-3.509824999755103980e-01,4.978197179693531037e-18 +1.725686255607592479e-01,-4.113086208661488330e-01,-1.462935847289747525e-17 +1.793403773134992496e-01,-4.481200277475276827e-01,-1.721592082815562043e-17 +1.283655208000799020e-01,-5.240747109932648584e-01,-2.544514568128235496e-17 +3.731911050324370205e-01,-3.603320760831726366e-01,-1.695705156755246915e-18 +6.059203182923198483e-01,-3.515557448380152716e-01,9.356818402537112219e-18 +5.729613589140651886e-01,-3.506013519210612328e-01,7.963960769607575805e-18 +2.824918910111694492e-01,-1.332099693183776967e-01,1.208464251768006738e-17 +2.505777284971562047e-01,-1.127614080953147080e-01,1.226777192139011414e-17 +2.811076954128023386e-01,-1.060608069926398667e-01,1.415305123530690956e-17 +2.512385583611574380e-01,-1.538548037438843830e-01,9.073123152653556362e-18 +2.602111390161067073e-01,-1.850756072869432778e-01,7.023192330050465443e-18 +2.719884200838746380e-01,-1.593604317941427484e-01,9.565204520330385230e-18 +2.219894584328203635e-01,-1.618405618724128303e-01,7.144053777121404074e-18 +2.362453832230768935e-01,-1.372777554458947391e-01,9.706033787993344537e-18 +9.290830938247324200e-02,-4.375294577404676977e-01,-2.023402800609345183e-17 +8.757985583466171287e-02,-4.628052469383691636e-01,-2.245438631188718174e-17 +9.353039533094537061e-02,-4.028529187028170311e-01,-1.748569737166074913e-17 +1.270925722393842772e-01,-4.055143544451390580e-01,-1.619990707980940371e-17 +1.100004408109286902e-01,-4.215219060928033779e-01,-1.821696754295142777e-17 +8.314786322315258493e-01,-6.024398904514418618e-01,-2.822551664464932908e-19 +8.226974190824442035e-01,-5.609025058562099320e-01,2.585608812437807070e-18 +8.429957455179903913e-01,-5.576629586776030711e-01,3.743705162866572573e-18 +8.414908442082997819e-01,-5.800542686340158793e-01,1.919926716960743185e-18 +1.994302709407956287e-01,-2.986442267337222067e-01,-4.593804319796463095e-18 +1.796105158539381408e-01,-3.652345469308445614e-01,-1.070091963134347056e-17 +1.895203933973668708e-01,-3.319393868322833563e-01,-7.647361975569968371e-18 +7.819925417736334206e-01,-5.649321315499137297e-01,4.567753396971263711e-19 +7.991760101802217742e-01,-5.984633261788606662e-01,-1.408773204195417975e-18 +1.533515440466611812e-01,-3.853744506879918097e-01,-1.345041335557644176e-17 +8.839094469133249588e-01,-5.511711741686248223e-01,6.075012384002437084e-18 +8.602248341991459712e-01,-5.497035568475900913e-01,5.135428508732716019e-18 +8.929872949470329946e-01,-5.209317162712211458e-01,8.851775736086716977e-18 +2.238067729216841051e-01,-1.993510528351266631e-01,4.282010914761157952e-18 +2.063292064468527642e-01,-1.898961973428814343e-01,4.245497963698218580e-18 +6.468524310542847489e-02,-3.795246702678972683e-01,-1.693996553101359645e-17 +2.304626192213562186e-01,-2.421107764457637312e-01,1.223598137944916768e-18 +2.458796728278040966e-01,-2.138487344119898437e-01,4.127517881897115791e-18 +7.998294422360812117e-01,-4.381946572237582216e-01,1.119457318918301049e-17 +8.086483983938798081e-01,-4.654683313344486484e-01,9.447482253137261104e-18 +2.141984539726842218e-01,-2.708961019901007794e-01,-1.759100809405627456e-18 +7.891023836650976619e-01,-4.044381889068120461e-01,1.336531457739372661e-17 +6.373808505310443184e-01,-3.557530266631312998e-01,1.042851937945600639e-17 +7.957020038791038363e-01,-5.457915061591220862e-01,2.569010433063087057e-18 +5.132772004315749870e-01,-4.949998634500947792e-01,-6.023027128860302672e-18 +5.318071463467811677e-01,-4.784493411044355993e-01,-3.899337529982954329e-18 +5.453095957285851725e-01,-4.939996232843553159e-01,-4.518076241421931427e-18 +5.267796498133788807e-01,-5.105501456300145513e-01,-6.641765840299281310e-18 +5.185509306974843691e-01,-4.626720039872271317e-01,-3.251819357484825296e-18 +5.368346428801834547e-01,-4.463485365788565362e-01,-1.156909219666627348e-18 +5.500908585294801423e-01,-4.621258736960648372e-01,-1.804427392164757922e-18 +5.681283369796722438e-01,-4.460294612249828816e-01,2.617032845942865490e-19 +5.816307863614762486e-01,-4.615797434049027093e-01,-3.570354268446890078e-19 +5.635933079112842581e-01,-4.776761558759847204e-01,-2.423166103603731938e-18 +5.773419910255952470e-01,-4.929993831186157971e-01,-3.013125353983555559e-18 +5.590582788428962724e-01,-5.093228505269864481e-01,-5.108035491801751966e-18 +1.591117658389506195e-01,-2.724660537313600139e-01,-4.335409339106025225e-18 +1.533384257786920557e-01,-2.486528029515578941e-01,-2.724185738832820448e-18 +1.790747058900831468e-01,-2.436625436931021960e-01,-1.186568908986783930e-18 +1.848480459503417384e-01,-2.674757944729043713e-01,-2.797792509259990247e-18 +1.230357695831077042e-01,-2.543308516185571744e-01,-4.519115687460107866e-18 +1.218288056070424008e-01,-2.298298114302114170e-01,-2.650578968405646027e-18 +1.521314618026267385e-01,-2.241517627632121368e-01,-8.556490197783555279e-19 +1.554908739107547233e-01,-1.989629331663227418e-01,1.270200818057366455e-18 +1.812271540221458976e-01,-1.939726739078671269e-01,2.807817647903399892e-18 +1.778677419140178573e-01,-2.191615035047564386e-01,6.819678100676809903e-19 +1.990376459412157850e-01,-2.148590336548444335e-01,1.962271521132458905e-18 +2.002446099172811023e-01,-2.393600738431902186e-01,9.373480207799552552e-20 +2.237358664176029022e-01,-5.479849559417748761e-01,-2.307402263587813977e-17 +2.334255344142476263e-01,-5.161126906465618447e-01,-2.014190789676590390e-17 +2.483545798331255050e-01,-5.246759335686455028e-01,-2.014893281294808781e-17 +2.386649118364807254e-01,-5.565481988638585342e-01,-2.308104755206032984e-17 +2.175901877225057679e-01,-5.019005108930575387e-01,-1.973204226735952751e-17 +2.281861569920145549e-01,-4.756771824292651552e-01,-1.720276824147147795e-17 +2.440215036837564411e-01,-4.898893621827694611e-01,-1.761263387087785434e-17 +2.555237742261292078e-01,-4.693149705503976143e-01,-1.548620055821399726e-17 +2.704528196450071142e-01,-4.778782134724813835e-01,-1.549322547439618426e-17 +2.589505491026342643e-01,-4.984526051048531747e-01,-1.761965878706004133e-17 +2.729732932486481078e-01,-5.013669111955162405e-01,-1.722384299001803893e-17 +2.623773239791393763e-01,-5.275902396593086241e-01,-1.975311701590608540e-17 +3.118348278159844833e-01,-5.303089903239592839e-01,-1.776396877320872371e-17 +2.922553630427776605e-01,-5.445525471338382717e-01,-1.975339751665816817e-17 +2.870984618197424121e-01,-5.290851948588124465e-01,-1.876951919737861617e-17 +3.066779265929492349e-01,-5.148416380489335697e-01,-1.678009045392917171e-17 +3.005190325670680229e-01,-5.600901095460774082e-01,-2.060443294103434407e-17 +2.695691299683159459e-01,-5.587258938065038372e-01,-2.187566915501097949e-17 +2.644274569009195108e-01,-5.429873817971209160e-01,-2.086983823008900118e-17 +2.850483288979621110e-01,-5.136880527210002656e-01,-1.765279798319570039e-17 +3.148493240485508715e-02,-3.943856243586436050e-01,-1.958440056129785665e-17 +4.001532568638485610e-02,-4.208170461271476537e-01,-2.127826100486235453e-17 +1.794800998506906886e-02,-4.260586902839140766e-01,-2.267221356348788365e-17 +6.155444421390413035e-02,-4.147762766183843430e-01,-1.984513303634857207e-17 +7.245402023198466157e-02,-4.398078495018480361e-01,-2.132366006543091328e-17 +5.091490170446530406e-02,-4.458486190106113467e-01,-2.275678803394468957e-17 +6.418366045909643103e-02,-4.694803430090346286e-01,-2.401998164854487412e-17 +3.135214333069266668e-02,-4.536171904401925525e-01,-2.423746291105478222e-17 +5.078157223650120455e-01,-5.279168339716568958e-01,-8.848815797941143224e-18 +4.882344118794976762e-01,-5.450046122969414153e-01,-1.106147668559296550e-17 +4.745891431254835036e-01,-5.287360788749271290e-01,-1.039274598696918348e-17 +4.941704536109977619e-01,-5.116483005496427205e-01,-8.180085099317364278e-18 +5.021664964977957668e-01,-5.614229155519137038e-01,-1.172918536472734387e-17 +4.683662855296996108e-01,-5.619426207892679326e-01,-1.327515959273418836e-17 +4.345663431341934557e-01,-5.619279387951293669e-01,-1.477919527942469233e-17 +4.547211062998820497e-01,-5.454959582900894555e-01,-1.259244938033829386e-17 +4.413626534101515730e-01,-5.293771947010331713e-01,-1.192269666222511433e-17 +4.612306902357531380e-01,-5.126173152858709559e-01,-9.722993268856003951e-18 +3.109885987839577370e-01,-4.044343306509988467e-02,2.063187741006233468e-17 +3.007730123503862818e-01,-3.201735497024148225e-02,2.083804169323775586e-17 +3.004163613215483641e-01,-7.276256603502097298e-02,1.762539983119332373e-17 +2.867864521266046962e-01,-6.327847506867746719e-02,1.776252546520120376e-17 +2.590381165835927146e-01,-8.506292257486092190e-02,1.481768054989673610e-17 +2.773090594050167113e-01,-5.659836384149108390e-02,1.786457932541807096e-17 +2.701934176968691093e-01,-4.491001845057579489e-01,-1.324693067671537040e-17 +2.867834274017289631e-01,-4.304066551443418431e-01,-1.104149625684598304e-17 +3.010075441008278618e-01,-4.449037168405826637e-01,-1.154546465743780910e-17 +2.844175343959679525e-01,-4.635972462019988249e-01,-1.375089907730719646e-17 +2.721950874042340929e-01,-4.150328242953459923e-01,-1.048495859697558811e-17 +2.891493204074900847e-01,-3.972160640866848613e-01,-8.332093436384763467e-18 +3.037376604049849549e-01,-4.125898949356807122e-01,-8.888631096255158397e-18 +3.210561167066369737e-01,-3.956499038797745560e-01,-6.788335194942899543e-18 +3.352802334057358724e-01,-4.101469655760154320e-01,-7.292303595534731763e-18 +3.179617771040837981e-01,-4.270869566319215327e-01,-9.392599496846990617e-18 +3.318216705047866144e-01,-4.407072491754074894e-01,-9.843998638160260126e-18 +3.148674375015306781e-01,-4.585240093840685094e-01,-1.199686379875108169e-17 +3.888175113058054411e-01,-4.676251607207816963e-01,-9.417752172420340058e-18 +3.701479386388304427e-01,-4.838532920953260152e-01,-1.152236573892932230e-17 +3.578799922283250612e-01,-4.692351558151671709e-01,-1.092178548217454160e-17 +3.765495648953001151e-01,-4.530070244406229074e-01,-8.817171915665556280e-18 +3.823819535661576730e-01,-4.988483443040864218e-01,-1.215402884846820936e-17 +3.637463123823609923e-01,-5.146995597500291231e-01,-1.422755956219308215e-17 +3.515122974550338730e-01,-4.997045075412687165e-01,-1.359589645265419817e-17 +3.329105877544153991e-01,-5.151788070586098556e-01,-1.563834431359497077e-17 +3.206426413439099066e-01,-5.005606707784509002e-01,-1.503776405684019007e-17 +3.392443510445283250e-01,-4.850863712611098721e-01,-1.299531619589942056e-17 +3.269424731508447368e-01,-4.708451509095527010e-01,-1.242581879192874623e-17 +3.455781143346413620e-01,-4.549939354636098887e-01,-1.035228807820386727e-17 +9.591506325420399159e-01,-5.439264235212657450e-01,9.994075521045992608e-18 +9.380784660593639579e-01,-5.501578960878155122e-01,8.566779931602208366e-18 +9.243029990075470881e-01,-5.240019372103358331e-01,1.000545334581249536e-17 +9.793492920324816664e-01,-5.702659315967147924e-01,8.827040564401355118e-18 +9.471657807188792466e-01,-5.712607464529647627e-01,7.315785795386922315e-18 +9.098536408732412761e-01,-5.563279937068869030e-01,6.825775645869376947e-18 +2.986976463979258423e-01,-4.743616821910170422e-01,-1.395952213316246524e-17 +2.847329316469650040e-01,-4.886426494614996008e-01,-1.570184853025145304e-17 +3.107726820472399565e-01,-4.866828237165010673e-01,-1.438847712634012670e-17 +2.968079672962790072e-01,-5.009637909869836259e-01,-1.613080352342911450e-17 +1.067887564265001532e-01,-1.992607455150725015e-01,-9.219797679225750746e-19 +1.310286655833953762e-01,-1.991641764033472706e-01,1.650545587781252899e-19 +9.514675682482626184e-02,-1.673730338426502040e-01,1.061399627444664520e-18 +1.167544093464893129e-01,-1.683390204474474183e-01,1.947848378639322565e-18 +1.250758977453466092e-01,-1.381190869302846291e-01,4.689397501651838847e-18 +1.400062263892842274e-01,-1.686032155017823664e-01,2.962576153383361969e-18 +6.872492241377645139e-02,-4.844872135325187235e-02,9.215256675681002468e-18 +4.953538209218002336e-02,-3.578300879395787670e-02,9.354420858827224874e-18 +8.935768182746736676e-02,-8.095502064154365407e-02,7.583723357362362740e-18 +6.959589276163474780e-02,-7.371919570070933903e-02,7.271389673971543925e-18 +6.979218113423123204e-02,-1.049014763728287197e-01,4.833653180970277399e-18 +5.560498332217836404e-02,-6.920868744728778110e-02,7.002225265575067870e-18 +8.264691458400957869e-02,-1.360049963488658420e-01,2.965805122390653088e-18 +1.026546739379266271e-01,-1.376593486558967960e-01,3.726999709007305295e-18 +8.738647603580805556e-02,-1.077504427162561396e-01,5.393644561316339488e-18 +1.077491265975240864e-01,-1.091402775017863980e-01,6.191396584542064726e-18 +1.459658985271136411e-01,-3.487933034360622964e-01,-1.090925462265931584e-17 +1.213335310769420722e-01,-3.464836177454040933e-01,-1.182497773831100071e-17 +1.222144520592035044e-01,-3.247278671526330207e-01,-1.007885081624694736e-17 +1.468468195093751150e-01,-3.270375528432913348e-01,-9.163127700595265569e-18 +1.223030265380125881e-01,-3.700872575836069989e-01,-1.363368185385148529e-17 +9.735718273119120525e-02,-3.681354898010696930e-01,-1.459144605194452761e-17 +9.638768727012064774e-02,-3.445318499628667874e-01,-1.278274193640404919e-17 +7.112836710664935391e-02,-3.429380000884504898e-01,-1.378254721693846129e-17 +9.573166816569991799e-02,-3.205702922165428737e-01,-1.093199673842220100e-17 +1.249457894847971207e-01,-3.048200058052939476e-01,-8.395301087659325242e-18 +1.429968249954788051e-01,-2.777237650356203513e-01,-5.465549817878125826e-18 +1.336430487977585679e-01,-2.831536208069104221e-01,-6.308106390711726602e-18 +1.723116566055700460e-01,-2.956868226813935685e-01,-5.569427375462546091e-18 +1.561967157620982594e-01,-3.009445339856539059e-01,-6.699567854234646692e-18 +1.626354418829661364e-01,-3.239931584686578381e-01,-8.221169796529670464e-18 +1.404080933885072657e-01,-3.039889283602874026e-01,-7.641525758300241796e-18 +2.737927047662452873e-01,-3.842158622723589323e-01,-7.995997355506267877e-18 +2.907794276282568147e-01,-3.686891235409434087e-01,-6.021354258211611171e-18 +3.061360432695016121e-01,-3.816893253552692822e-01,-6.357450339090106761e-18 +2.749862697829026370e-01,-3.566492984367969354e-01,-5.780046952307406611e-18 +3.082026926943778333e-01,-3.522020080993484292e-01,-3.951922385942654191e-18 +3.415345252392548714e-01,-3.485277582134385654e-01,-2.179309037824666942e-18 +3.235977782134232816e-01,-3.654598900641872206e-01,-4.306522206236740739e-18 +3.385178516505585877e-01,-3.794204685886924944e-01,-4.737407062089533521e-18 +6.115326137556880148e-01,-3.862580690785166193e-01,6.884095782835386447e-18 +6.231122191272677746e-01,-4.026559570397673093e-01,6.113227630892019572e-18 +6.052335761827404292e-01,-4.162081038385730403e-01,4.253786480977111626e-18 +5.936539708111606695e-01,-3.998102158773223502e-01,5.024654632920477729e-18 +6.407040417902467588e-01,-3.898602472613877379e-01,7.900548018534709257e-18 +6.525704674433752128e-01,-4.055016982022123795e-01,7.201800628863561416e-18 +6.349786447803963396e-01,-4.182974079805920065e-01,5.414480241220871731e-18 +6.471318907150734878e-01,-4.331824219009905441e-01,4.787853613821940611e-18 +6.292532477705460314e-01,-4.467345686997962195e-01,2.928412463907034205e-18 +6.171000018358689942e-01,-4.318495547793976264e-01,3.555039091305963784e-18 +5.989345386097931767e-01,-4.461581385986295167e-01,1.623477179118839886e-18 +5.870681129566647227e-01,-4.305166876578048196e-01,2.322224568789989269e-18 +1.719095194118802628e-01,-4.879680077590102805e-01,-2.067319873357054697e-17 +1.877974897054549286e-01,-5.057212922356697504e-01,-2.135854644317492435e-17 +1.739564218915372051e-01,-5.267469092559543542e-01,-2.362453359553560154e-17 +1.580684515979625393e-01,-5.089936247792947732e-01,-2.293918588593121800e-17 +2.003147387205982677e-01,-4.818948614988026180e-01,-1.893176763325699041e-17 +2.050729387073624566e-01,-5.257269416299248377e-01,-2.215882107727746145e-17 +1.911682109838862831e-01,-5.473010074491966304e-01,-2.447067296269724800e-17 +1.587915352788450696e-01,-5.449717125596563738e-01,-2.572972909033900966e-17 +5.732645218222183203e-01,-5.254880298680709716e-01,-5.743675861639175073e-18 +5.547519475134421452e-01,-5.430328387911373955e-01,-7.944600907445034210e-18 +5.405457045341203193e-01,-5.268676594500528720e-01,-7.308960537607608022e-18 +5.693983787513449135e-01,-5.590456836532682328e-01,-8.548686949811556794e-18 +5.357991849460852496e-01,-5.607299821931572836e-01,-1.017708028072179387e-17 +5.215817770857533731e-01,-5.442343477916952166e-01,-9.516010495249473017e-18 +3.995506503534271836e-01,-4.047943931772337578e-01,-4.010248711319722504e-18 +3.811718857094362756e-01,-4.217573656648271330e-01,-6.159565593470837360e-18 +3.674154418795815280e-01,-4.074706793766246227e-01,-5.651276153427227133e-18 +3.857942065235724916e-01,-3.905077068890313585e-01,-3.501959271276112277e-18 +3.945404102348953890e-01,-4.362738436784975304e-01,-6.703158793370840331e-18 +3.631810403698410572e-01,-4.384905464269525099e-01,-8.273578715765550228e-18 +3.494245965399862541e-01,-4.242038601387499996e-01,-7.765289275721943083e-18 +3.532710787453311463e-01,-3.934137848138899995e-01,-5.178290473240015813e-18 +7.035691037081254207e-01,-5.132189984382393710e-01,1.021675907114232932e-18 +6.864611229645464219e-01,-5.288007661127162029e-01,-9.626844993608186591e-19 +6.711397768451679013e-01,-5.172335076079283001e-01,-7.374426552442412940e-19 +6.882477575887469001e-01,-5.016517399334515792e-01,1.246917751230810297e-18 +7.017073657515618956e-01,-5.380937005487946845e-01,-1.012833530526707155e-18 +6.694282455533305809e-01,-5.466568578559021230e-01,-3.122137718786559119e-18 +6.361109618601633597e-01,-5.514522668412561446e-01,-4.982066293420464000e-18 +6.537608449356400175e-01,-5.338336832438631552e-01,-2.813770670127999393e-18 +6.383643954838984502e-01,-5.199921006703660531e-01,-2.413436013060730077e-18 +6.557433273934263340e-01,-5.033919250344311980e-01,-3.371079981769735186e-19 +1.056475976624152435e-01,-4.814059400656052201e-01,-2.310914928102324393e-17 +1.178082114544405645e-01,-4.683871801062243767e-01,-2.154619294682718403e-17 +1.299280842321914320e-01,-4.786164971453327199e-01,-2.180903233318077573e-17 +1.177674704401661387e-01,-4.916352571047136188e-01,-2.337198866737684179e-17 +1.080341449851502933e-01,-4.605268551769888807e-01,-2.136475425254972645e-17 +1.178489524687149348e-01,-4.451391031077351901e-01,-1.972039722627753244e-17 +1.276230189380052338e-01,-4.529994280369707971e-01,-1.990183592055499618e-17 +1.350920201131093068e-01,-4.352426838578442592e-01,-1.817607820220667422e-17 +1.472118928908602020e-01,-4.454720008969524914e-01,-1.843891758856025975e-17 +1.397428917157561012e-01,-4.632287450760790293e-01,-2.016467530690858171e-17 +1.542085708019675927e-01,-4.758270542250601642e-01,-2.050891538533830136e-17 +1.443937633184029234e-01,-4.912148062943137994e-01,-2.215327241161048921e-17 +4.840776716027871962e-01,-3.844618382272720902e-01,1.349167443190799931e-18 +4.975773057130523647e-01,-3.998900352704387040e-01,7.398818319858526768e-19 +4.784444936496217715e-01,-4.163850075723252164e-01,-1.406296448271419270e-18 +4.649448595393566031e-01,-4.009568105291585471e-01,-7.970108370664704749e-19 +5.168372709157186273e-01,-3.834394940293311405e-01,2.888236586830218419e-18 +5.302097518867479042e-01,-3.988232600117188054e-01,2.276774501038175829e-18 +5.109497866840817526e-01,-4.152738012528264244e-01,1.284197461938085459e-19 +5.241951145158753045e-01,-4.306131361744351405e-01,-4.852188141853309213e-19 +5.050623024524448779e-01,-4.471081084763216529e-01,-2.631397094442601327e-18 +4.918169746206513260e-01,-4.317687735547128813e-01,-2.017758534063463401e-18 +4.728113156964566244e-01,-4.483081769173783426e-01,-4.161760339733635389e-18 +4.594388347254272364e-01,-4.329244109349906777e-01,-3.550298253941592799e-18 +6.234177325612382248e-01,-5.053738139325587575e-01,-1.932133234048895315e-18 +6.090317379175751444e-01,-4.914757961224507365e-01,-1.482372991034461760e-18 +6.263354901658920726e-01,-4.760541913161775440e-01,4.981396149290686744e-19 +6.407214848095550419e-01,-4.899522091262855650e-01,4.837937191463357877e-20 +5.912709730921826834e-01,-5.075974066278345909e-01,-3.538157956384956634e-18 +5.951027558509880411e-01,-4.768777726132320538e-01,-9.573403886330576036e-19 +6.124065080993048582e-01,-4.614561678069588613e-01,1.023172217330471291e-18 +6.431822298371332458e-01,-4.613325922090149023e-01,2.403379861505631589e-18 +4.996163780317214309e-01,-4.793782045129821867e-01,-5.405741096879982032e-18 +4.861277497866819397e-01,-4.638143090020767634e-01,-4.785318833837762686e-18 +4.805096312111442614e-01,-4.960266416125301281e-01,-7.562799067337040557e-18 +4.477420619907138133e-01,-4.970534197749655880e-01,-9.102571005813781523e-18 +4.670210029661047701e-01,-4.804627461016246492e-01,-6.942376804294821211e-18 +4.537045688758794548e-01,-4.649566140169263395e-01,-6.318818310190696995e-18 +7.768157667028156022e-01,-5.176895661230574985e-01,3.932766171761133923e-18 +7.536322341166939998e-01,-5.254407183192195685e-01,2.292216726358293123e-18 +7.416351691328810780e-01,-5.114705333799630660e-01,2.854023428456259004e-18 +7.648187017190027914e-01,-5.037193811838011070e-01,4.494572873859100575e-18 +7.605974106487113362e-01,-5.436714468010109824e-01,1.172057935615603247e-18 +7.354805899823680937e-01,-5.289313269728466160e-01,1.210019369600174777e-18 +7.205980571437341498e-01,-5.229286398349609621e-01,1.018221293660989504e-18 +7.246062156972723489e-01,-5.017608919832415859e-01,2.857478041909502431e-18 +6.590222463606946190e-01,-4.465323694642436836e-01,4.269957056457563004e-18 +6.732228034006217943e-01,-4.601619245045661666e-01,3.833001724092228468e-18 +6.573827868770604210e-01,-4.749621472493374408e-01,1.966424529140295513e-18 +6.882415343802392727e-01,-4.455515408919718534e-01,5.648110956770430904e-18 +7.032633769641104537e-01,-4.589912568001174309e-01,5.262623586678823807e-18 +6.882446459844930864e-01,-4.736016404127116886e-01,3.447514354000620600e-18 +7.040877741123081623e-01,-4.868515171886802495e-01,3.113494946182742482e-18 +6.724046294609317131e-01,-4.884018631574829628e-01,1.580937159048688415e-18 +7.705474348603370549e-01,-4.558771492945355996e-01,8.503258773618772603e-18 +7.574238474971877189e-01,-4.723435778418876851e-01,6.626924275875558155e-18 +7.369054059122237543e-01,-4.574342030473265153e-01,6.882941180148798975e-18 +7.500289932753729794e-01,-4.409677744999743743e-01,8.759275677892014964e-18 +7.801324414400242491e-01,-4.884248002875656858e-01,6.376499784428857812e-18 +7.421101077761662612e-01,-4.876381587381229954e-01,4.744997365305800917e-18 +7.215916661912021857e-01,-4.727287839435617700e-01,5.001014269579041738e-18 +7.185771166851319114e-01,-4.436966759038820651e-01,7.144550497248581044e-18 +7.297881308159821501e-01,-4.285403070747548782e-01,8.832930046519345788e-18 +7.378715359364775850e-01,-4.100185615200336309e-01,1.064606850204803379e-17 +7.581123983958684143e-01,-4.224460289452530715e-01,1.057241413342070143e-17 +7.014638632360961079e-01,-4.346345852042568514e-01,7.093445959617990147e-18 +7.126748773669462356e-01,-4.194782163751296089e-01,8.781825508888754890e-18 +6.986892329282649028e-01,-4.137815024010985110e-01,8.605962065000239190e-18 +7.067726380487603377e-01,-3.952597568463771527e-01,1.041910052052892720e-17 +7.207582824874414484e-01,-4.009564708204083061e-01,1.059496396441744290e-17 +7.257140785975820796e-01,-3.790693485400928320e-01,1.253286132620405262e-17 +7.428273320466181051e-01,-3.881314392397181567e-01,1.258396586383464352e-17 +4.283616500851815667e-01,-5.134413510144235637e-01,-1.125137731184202730e-17 +4.150620077784357709e-01,-4.979508820395260327e-01,-1.062829992714099852e-17 +4.344424196839677954e-01,-4.815629508000679460e-01,-8.479493621112749662e-18 +3.955633331592830482e-01,-5.141204077353003221e-01,-1.276523722827544050e-17 +4.018806281853103402e-01,-4.826788186083120769e-01,-1.001709154733376739e-17 +4.081979232113376876e-01,-4.512372294813237206e-01,-7.268945866392088116e-18 +4.212610400908424757e-01,-4.662908873688539901e-01,-7.868285241305518527e-18 +4.405231892827542461e-01,-4.496845505857124392e-01,-5.707609930383465859e-18 +5.491495278637403832e-01,-3.833104864445407434e-01,4.337295785233877778e-18 +5.619318613489542313e-01,-3.993167379445205500e-01,3.650714566979326009e-18 +5.429920853719618634e-01,-4.148295115116986120e-01,1.590193282783624830e-18 +5.810144424468525193e-01,-3.840748154729010100e-01,5.696345038401774926e-18 +5.745713897132622705e-01,-4.150521383489418903e-01,2.979024161498029582e-18 +5.556316137362700136e-01,-4.305649119161200078e-01,9.185028773023268625e-19 +4.961890692183049123e-02,-5.096218361320427048e-01,-2.781797624869207695e-17 +6.243549776149345809e-02,-5.283913301570491994e-01,-2.871982846701507802e-17 +7.114994142975120117e-02,-4.861988129494493327e-01,-2.502144352889139080e-17 +7.402328431553717447e-02,-5.009426181932735700e-01,-2.605024629749845026e-17 +9.335286314394883322e-02,-4.899632593230920929e-01,-2.432804570647047565e-17 +1.014353389626864443e-01,-5.062210265145770105e-01,-2.524365541974070613e-17 +8.210576013427461906e-02,-5.172003853847586541e-01,-2.696585601076869307e-17 +9.539736888596367370e-02,-5.349721145239042519e-01,-2.776827266870211614e-17 +4.184662957961002849e-01,-3.880342535265121073e-01,-1.852937034877847903e-18 +4.322477549463920043e-01,-4.028756018531962080e-01,-2.403629774193094949e-18 +4.133321095037189030e-01,-4.196357415039179140e-01,-4.560941450634969550e-18 +4.512873465629142489e-01,-3.859934247263323015e-01,-2.312237640452211491e-19 +4.459052679228343030e-01,-4.178389876560223426e-01,-2.969416847214342734e-18 +4.269896224801612017e-01,-4.345991273067440486e-01,-5.126728523656217335e-18 +6.742978769755845203e-01,-4.339085035526235590e-01,5.940649786719964994e-18 +6.875202058314413556e-01,-4.229915478649085570e-01,7.385984789567523466e-18 +6.624075213299631670e-01,-4.205585559893704750e-01,6.458546344084341831e-18 +6.657927962992320481e-01,-3.945847425144973775e-01,8.647135631711120658e-18 +6.756298501858200023e-01,-4.096416003016554175e-01,7.903881346931900303e-18 +6.867988772826435495e-01,-4.004315548378452605e-01,9.123858622364617568e-18 +8.573669458252415332e-01,-5.345392787247105204e-01,6.197908669836341473e-18 +8.443003356026732575e-01,-5.267887649552025486e-01,6.224107484204498724e-18 +8.538793343708505068e-01,-5.082000078804417287e-01,8.109105638050531174e-18 +8.669459445934186714e-01,-5.159505216499497005e-01,8.082906823682373923e-18 +8.417209734346012828e-01,-5.439151834099569260e-01,4.765550065294913876e-18 +8.216547266119278436e-01,-5.376270082604553968e-01,4.365308144726624295e-18 +8.242340887799999294e-01,-5.205005898057009084e-01,5.823865563636209144e-18 +7.971682053572212157e-01,-5.156747532762057107e-01,4.997182908131474272e-18 +8.067472041253984649e-01,-4.970859962014447797e-01,6.882181061977505952e-18 +8.338130875481771787e-01,-5.019118327309400884e-01,7.708863717482240824e-18 +8.503917229164597025e-01,-4.818607370361728814e-01,1.002030260626471934e-17 +8.704579697391330306e-01,-4.881489121856745217e-01,1.042054452683300815e-17 +7.052426033150406282e-01,-3.795389586417552974e-01,1.158437606120731929e-17 +7.032148540648963664e-01,-3.591159725473277997e-01,1.309640823505328921e-17 +6.852688425489239510e-01,-3.847107566332234607e-01,1.028913416304300812e-17 +6.618576397578128656e-01,-3.767541592568755537e-01,9.870833724914867225e-18 +6.813336860075049906e-01,-3.668801733756017480e-01,1.151283225624675623e-17 +6.749934076583864462e-01,-3.469398050649800669e-01,1.279495290197585881e-17 +2.193667534541381969e-01,-3.937418616720842479e-01,-1.116709183099420599e-17 +2.384460986938161664e-01,-4.144947360060349806e-01,-1.194566015473421356e-17 +2.237764552230762927e-01,-4.347095220506747015e-01,-1.418493003623284659e-17 +2.046971099833982677e-01,-4.139566477167239689e-01,-1.340636171249283593e-17 +2.552528659899904184e-01,-3.965800500174547216e-01,-9.791678981735201002e-18 +2.553883201080598964e-01,-4.329475102839261957e-01,-1.263893976997460067e-17 +2.407186766373200226e-01,-4.531622963285659167e-01,-1.487820965147322754e-17 +2.112439355777708805e-01,-4.572244081513738845e-01,-1.650948862623109084e-17 +2.393075557601549996e-01,-3.811860885264731769e-01,-9.293990868088429489e-18 +2.578473945364098130e-01,-3.688219007813774430e-01,-7.498309241859499446e-18 +2.064954673683388475e-01,-3.731807752944700241e-01,-1.012711181038376847e-17 +2.264362696743556502e-01,-3.606250021488589530e-01,-8.254010847477991974e-18 +2.166390077325924257e-01,-3.348967908846118835e-01,-6.671738919903879212e-18 +2.433030478363363280e-01,-3.532363538898805611e-01,-6.923201791535884562e-18 +3.751219042632610856e-01,-5.301905922140655036e-01,-1.493636345766262275e-17 +3.548533746137629841e-01,-5.457629133266810317e-01,-1.706072907681998384e-17 +3.434777827328628907e-01,-5.302718808626445401e-01,-1.635192518135044324e-17 +3.670373633971156790e-01,-5.616519044507193303e-01,-1.776475600000359257e-17 +3.337764480618121699e-01,-5.609372757792949749e-01,-1.918987166826327680e-17 +3.224020227944318640e-01,-5.454020641279939685e-01,-1.847754964096419619e-17 +4.042050766085713565e-01,-3.728661098161334952e-01,-1.297969606485040073e-18 +4.230573185403869174e-01,-3.555533437945223585e-01,8.998761436188719116e-19 +4.373185377279156794e-01,-3.707214875049009706e-01,3.449087152260625407e-19 +4.085036890003278520e-01,-3.404889935951964652e-01,1.433678521133202341e-18 +4.422019708247325598e-01,-3.381367842618585584e-01,3.118886944601255904e-18 +4.759336870171097522e-01,-3.361902816714559816e-01,4.773753618776209939e-18 +4.564743348015855573e-01,-3.534401635532156694e-01,2.553805599777415925e-18 +4.704431436365842378e-01,-3.687121007746470003e-01,1.977673120506130695e-18 +6.208063461948867268e-01,-5.377473924025035767e-01,-4.588367822522498408e-18 +6.058596832722265013e-01,-5.231291056646963922e-01,-4.107065043510666728e-18 +6.028903441632585958e-01,-5.564160964336958282e-01,-6.850903940098145154e-18 +5.878532320022620272e-01,-5.410197289049328839e-01,-6.312582948764885167e-18 +4.212432815614667869e-01,-5.457198554647271216e-01,-1.410085872016835890e-17 +4.082422782364967251e-01,-5.297840117781175140e-01,-1.342953936978527188e-17 +4.008018514650254494e-01,-5.617902765846285451e-01,-1.627200356923834784e-17 +3.878008493404747625e-01,-5.458541962568825845e-01,-1.560066559917245722e-17 +4.898870342479901829e-01,-3.517168455992809029e-01,4.176955274667351640e-18 +5.035215622141930858e-01,-3.674665830519059928e-01,3.548449597352020876e-18 +5.096497441240734894e-01,-3.344984168991147477e-01,6.407944762035041969e-18 +5.433744589983539042e-01,-3.332896508549626491e-01,8.004618831673799629e-18 +5.232871580127154143e-01,-3.504091872611362346e-01,5.766933393513020262e-18 +5.366028667142409558e-01,-3.663820982385613823e-01,5.106720382991218575e-18 +1.936554500470419327e-01,-4.418552778407882631e-01,-1.608692299875879191e-17 +1.759545014371292626e-01,-4.297143243068382024e-01,-1.592263965052654630e-17 +1.869961613734856531e-01,-4.018156941827739637e-01,-1.324207836426059649e-17 +1.827262531898692366e-01,-4.665257311882170521e-01,-1.850920200578469764e-17 +1.650253045799566221e-01,-4.543847776542669914e-01,-1.834491865755245203e-17 +1.581410897480328426e-01,-4.208015475495238134e-01,-1.601663858153435710e-17 +1.133909373622024597e-01,-5.223356407562527171e-01,-2.597555486275187920e-17 +1.270079727604776498e-01,-5.403995506401403359e-01,-2.678640325217669507e-17 +1.297230688396821541e-01,-5.077498713463892699e-01,-2.410388811038800869e-17 +1.433977571192418532e-01,-5.255286898313702437e-01,-2.488980158470873131e-17 +3.566086467386718750e-01,-3.621530947421190971e-01,-2.577031603356173958e-18 +3.713618738334444336e-01,-3.761464109673166578e-01,-3.017915014506656251e-18 +3.750203362314296074e-01,-3.445177411990286154e-01,-3.734952990038391204e-19 +3.897727439184433540e-01,-3.585048138944187945e-01,-8.139253497155840459e-19 +5.564750108851813648e-01,-3.502186132339116242e-01,7.259815188470043031e-18 +5.690216720346809032e-01,-3.671470014398910964e-01,6.490390590712700694e-18 +5.769010457934498071e-01,-3.340557024022314803e-01,9.437530948502450917e-18 +6.104070275692754510e-01,-3.351051272634824052e-01,1.084729277131280542e-17 +5.894408386031926295e-01,-3.510785483795382245e-01,8.660389586072344012e-18 +6.014336090153642456e-01,-3.680063624125481381e-01,7.866344033761417475e-18 +2.963726788706254611e-01,-1.027105064413023905e-01,1.509569089226530496e-17 +2.804174671826864529e-01,-9.248677564879038970e-02,1.518729571292596820e-17 +2.923346051269054557e-01,-1.326600963046422332e-01,1.256610230975420807e-17 +2.817997932119858939e-01,-1.196353881555087539e-01,1.311884687649348847e-17 +2.726491768954334427e-01,-1.337598423321131047e-01,1.160318272560592669e-17 +2.566920956384268204e-01,-1.235355617205816520e-01,1.169474742746095084e-17 +2.658427119549793272e-01,-1.094111075439772873e-01,1.321041157834851108e-17 +2.444633613558855612e-01,-1.019872544700478056e-01,1.284079641531927744e-17 +2.454546061518874112e-01,-1.636273479429022903e-01,8.048823262214441542e-18 +2.616134892225160380e-01,-1.566076177690135796e-01,9.319163836491970796e-18 +2.660997795499907004e-01,-1.722180195405429992e-01,8.294198425190425336e-18 +2.499408964793620458e-01,-1.792377497144317378e-01,7.023857850912896083e-18 +2.570225105704274093e-01,-1.440822595448664478e-01,1.009742304309267272e-17 +2.772401555475220714e-01,-1.462852005562602087e-01,1.082492351900522630e-17 +2.823633509452332380e-01,-1.621132458192719172e-01,9.811245204168799664e-18 +2.704813815528514520e-01,-1.909134648594548456e-01,7.022526809188033263e-18 +2.308300561877189017e-01,-1.676202270071665279e-01,7.084288574448364628e-18 +2.291174208279486424e-01,-1.495591586591537847e-01,8.425043782557373536e-18 +2.437419707921171796e-01,-1.455662795948895472e-01,9.389578470323450450e-18 +2.131488606779217976e-01,-1.560608967376591327e-01,7.203818979794441980e-18 +2.287487956540365797e-01,-1.289892312968998478e-01,1.002248910566323708e-17 +2.434115558601165075e-01,-1.250195817706047097e-01,1.098690285469172857e-17 +8.491562906075583728e-02,-4.754431415373199243e-01,-2.356456546478405903e-17 +9.721036357922219207e-02,-4.668858222798331070e-01,-2.234566903933683347e-17 +7.794934809010112264e-02,-4.587246715969052757e-01,-2.256310358443753618e-17 +8.474875475045098860e-02,-4.312505302443612742e-01,-2.010476363998369389e-17 +9.024408260856744968e-02,-4.501673523394185139e-01,-2.134420715899031679e-17 +1.010678640144955232e-01,-4.438083852365741766e-01,-2.036329237220320977e-17 +1.182354635509204055e-01,-4.308563997877965512e-01,-1.858260262859676555e-17 +1.185465065251564420e-01,-4.135181302689712179e-01,-1.720843731138041882e-17 +1.354030630873453156e-01,-4.179044143390188149e-01,-1.680191288499032441e-17 +1.014543750967009939e-01,-4.295256819166355378e-01,-1.922549777452243672e-17 +8.505979772468699740e-02,-4.139122607255358299e-01,-1.873059832276734100e-17 +1.017654180709370304e-01,-4.121874123978102045e-01,-1.785133245730608999e-17 +1.020009929372037716e-01,-3.917935766800980657e-01,-1.624079642055415418e-17 +1.187820813914232110e-01,-3.931242945512591347e-01,-1.559790127462847993e-17 +8.414695228844852881e-01,-6.170588976972430917e-01,-9.843061805954481233e-19 +8.364847382199128711e-01,-5.912470795427289261e-01,8.188357752571241766e-19 +8.508875567712277377e-01,-5.896301500229189640e-01,1.587085669222210472e-18 +8.214877415785667436e-01,-5.878208832056408539e-01,4.197958477024615418e-19 +8.170971350040258097e-01,-5.670521909080248335e-01,1.853727837144610181e-18 +8.320941316453719372e-01,-5.704783872451129056e-01,2.252767764699274357e-18 +8.282977031608624863e-01,-5.547528208043950304e-01,3.317489787731003959e-18 +8.384468663786358578e-01,-5.531330472150916000e-01,3.896537962945385170e-18 +8.422432948631450866e-01,-5.688586136558094752e-01,2.831815939913657879e-18 +8.475446246573450360e-01,-5.621928701401145423e-01,3.590872362787759207e-18 +1.882900174538338633e-01,-2.900889407607418202e-01,-4.418680242362725041e-18 +1.944753321690812498e-01,-3.152918067830027815e-01,-6.120583147683215733e-18 +1.784969713208174880e-01,-3.208896887036545853e-01,-7.271330280783039865e-18 +2.105705244277574217e-01,-3.071995127067025377e-01,-4.768928397230201150e-18 +2.005438154739162815e-01,-3.429890849609121828e-01,-8.023393670356893795e-18 +1.905171065200751412e-01,-3.787786572151218278e-01,-1.127785894348359260e-17 +1.845654546256525197e-01,-3.485869668815639311e-01,-9.174140803456717927e-18 +1.687039251878011403e-01,-3.516904366465672949e-01,-1.012398031920335469e-17 +8.091493889548588836e-01,-6.142812828700801031e-01,-2.205670402189649714e-18 +8.153273212058738117e-01,-6.004516083151512085e-01,-8.455141853209556327e-19 +7.837187188892958956e-01,-5.926707561654880330e-01,-1.642651792114787524e-18 +7.672403871976463119e-01,-5.607972593449507270e-01,1.242395786199821399e-19 +7.905842759769274863e-01,-5.816977288643871979e-01,-4.759989322491450314e-19 +7.967446963496204182e-01,-5.690670037548767324e-01,7.893111007742706023e-19 +1.402220581430226876e-01,-3.954444025665654339e-01,-1.482516021769292582e-17 +1.629600848037102145e-01,-3.983415357770703213e-01,-1.403988591423695850e-17 +1.437430032896121479e-01,-3.724073655989131870e-01,-1.286094079691591885e-17 +1.664810299502996194e-01,-3.753044988094181855e-01,-1.207566649345995770e-17 +8.548843969145336619e-01,-5.444653939574618517e-01,5.308578938149171847e-18 +8.516102898585681258e-01,-5.536832577625966367e-01,4.439566835799644682e-18 +8.745496894669433363e-01,-5.405112502753560699e-01,6.494550178054746178e-18 +8.720671405562354650e-01,-5.504373655081074013e-01,5.605220446367576551e-18 +8.932692043597065812e-01,-5.618310980618934636e-01,5.655474589950127219e-18 +8.655652714837582806e-01,-5.549417197377182198e-01,4.962278079316260192e-18 +8.975262189638872901e-01,-5.058119873225195295e-01,1.024015741212885808e-17 +8.808446260566544783e-01,-5.114907165945166145e-01,9.051750705672203620e-18 +9.050328074437135051e-01,-5.305483408649162014e-01,8.633695115963827143e-18 +8.884483709301789212e-01,-5.360514452199229840e-01,7.463394060044577415e-18 +2.141593324398365916e-01,-1.758683796076471739e-01,5.694775870409811712e-18 +1.975904232094370383e-01,-1.851687695967588476e-01,4.227241488166748893e-18 +2.317387134321507447e-01,-1.863754724885234026e-01,5.653267143268242723e-18 +2.150679896842683791e-01,-1.946236250890040487e-01,4.263754439229687496e-18 +2.158748324112174655e-01,-2.123266331817299235e-01,2.910754686254073182e-18 +1.982308032142668097e-01,-1.971560255621186419e-01,3.315271274108073989e-18 +5.560246570740404182e-02,-3.920528103782056073e-01,-1.832736616491840849e-17 +7.910781921818693663e-02,-3.911887944853571497e-01,-1.721283145133717125e-17 +5.026266699267001314e-02,-3.678605460504374425e-01,-1.666709961069002473e-17 +7.446400901217437029e-02,-3.675307076063286660e-01,-1.556348108272754468e-17 +2.569161227808640091e-01,-2.210975752004213923e-01,4.050271365465095865e-18 +2.530454059219554019e-01,-1.994621708494665469e-01,5.575355105973790617e-18 +2.417224828816589288e-01,-2.505150579044790327e-01,1.065647978043880560e-18 +2.381711460245801715e-01,-2.279797554288768013e-01,2.675558009921017050e-18 +2.192027555610534528e-01,-2.337064949870484021e-01,1.381548297845952975e-18 +2.348432228747440453e-01,-2.065998936235582395e-01,4.204764398329138027e-18 +7.827921869032873348e-01,-4.388989905108893197e-01,1.038060572869837044e-17 +8.042389203149804544e-01,-4.518314942791034072e-01,1.032102772116013503e-17 +7.919941682720301745e-01,-4.688096530627496317e-01,8.443680766080537193e-18 +8.168666975688750886e-01,-4.374903239366270680e-01,1.200854064966765055e-17 +8.253026285157293307e-01,-4.621270096061476651e-01,1.045128374019398347e-17 +8.186089309574043904e-01,-4.774708489766287256e-01,8.949362043629186103e-18 +2.250245169921205601e-01,-2.796351859061275702e-01,-1.962636787312942888e-18 +2.223305365970201786e-01,-2.565034392179322276e-01,-2.677513357303545737e-19 +2.068143624567399530e-01,-2.847701643619114931e-01,-3.176452564601045276e-18 +2.033723909532478280e-01,-2.621570180740740441e-01,-1.555564831498313564e-18 +7.944659129505894368e-01,-4.213164230652851061e-01,1.227994388328836855e-17 +8.085108308886966855e-01,-4.043860065380472935e-01,1.423371055329947977e-17 +7.697861244431705163e-01,-4.048634614996488024e-01,1.247175228801069954e-17 +7.785862371782458213e-01,-3.906739338713370313e-01,1.397691321217082397e-17 +6.216505844116820834e-01,-3.536543857505732857e-01,9.892668890996558533e-18 +6.317495891520058526e-01,-3.719060924165417670e-01,8.910420640070527504e-18 +6.430121119100827842e-01,-3.395999609097208882e-01,1.194661811884148681e-17 +6.529031871195719594e-01,-3.588000044120295828e-01,1.088070634645068547e-17 +7.888472728263685729e-01,-5.553618188545179635e-01,1.512892886380105944e-18 +8.091997114807739644e-01,-5.533470060076659536e-01,2.577309622750447064e-18 +7.822042962774338193e-01,-5.382360063105782189e-01,2.560711243375728591e-18 +8.025567349318392107e-01,-5.362211934637263200e-01,3.625127979746068170e-18 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad8/uvs.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/uvs.csv new file mode 100644 index 000000000..2968ef95a --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad8/uvs.csv @@ -0,0 +1,909 @@ +2.800756973814296780e-01,7.553249802295276816e-02 +2.646435687381639701e-01,8.260225786235811385e-02 +2.528944971680679443e-01,9.407126329134959941e-02 +2.512354820244227516e-01,1.101688860261011566e-01 +2.582701159797566870e-01,1.256104092386593762e-01 +2.679679325662472911e-01,1.396114756444606086e-01 +2.790581367150045677e-01,1.525438720559327277e-01 +2.915201998563630159e-01,1.639100362541627831e-01 +3.070570497705326640e-01,1.708632849992226810e-01 +3.112437546400522170e-01,1.805926877434649858e-01 +3.025569714158664603e-01,1.950944204002706128e-01 +2.951459112631958925e-01,2.104358138231893771e-01 +2.901455193597029525e-01,2.267353713515712355e-01 +2.851008430455863607e-01,2.430214990719518353e-01 +2.800561667303066993e-01,2.593076267960870429e-01 +2.758467664977719003e-01,2.757962245705191107e-01 +2.728054186257590774e-01,2.925720120712831940e-01 +2.697753751208561424e-01,3.092317616763794463e-01 +2.769407330275358570e-01,3.086121704517370556e-01 +2.889705751382302679e-01,2.965623135362068785e-01 +2.996274380037550755e-01,2.832611452111113426e-01 +3.102104586175479795e-01,2.698941413050676141e-01 +3.200834874761675497e-01,2.559979463205262484e-01 +3.283731782701688195e-01,2.411023858609502579e-01 +3.362289678920443170e-01,2.259704024330694283e-01 +3.444962714573521767e-01,2.275149339293322526e-01 +3.522268622939578320e-01,2.425994367118117501e-01 +3.607013335688495359e-01,2.573940611274246892e-01 +3.692522478667537578e-01,2.721422127646224709e-01 +3.804672842623971762e-01,2.849762863823526726e-01 +3.917410152873148643e-01,2.977662472783256797e-01 +4.039381575838251193e-01,3.095645450902209661e-01 +4.173483127119970160e-01,3.178550381439924077e-01 +4.141567569666614324e-01,3.011359818374163000e-01 +4.106426965592131495e-01,2.844461971285168755e-01 +4.059073896751467236e-01,2.680674588027240901e-01 +4.011758230320240370e-01,2.516876205145690548e-01 +3.964549123556868060e-01,2.353048717919975219e-01 +3.904598158457774915e-01,2.193575384344078893e-01 +3.840584027142635026e-01,2.035553323828761529e-01 +3.765710819852554625e-01,1.882643621602629325e-01 +3.680026723284598456e-01,1.735325532637967405e-01 +3.609306861082003381e-01,1.598382510764158049e-01 +3.727291728663752468e-01,1.480814406403882511e-01 +3.878747677463679766e-01,1.462786441129566295e-01 +4.047062130479618380e-01,1.489832750959552143e-01 +4.216146207974988402e-01,1.511723937793667816e-01 +4.385229589115199333e-01,1.533620377503344956e-01 +4.554296577266767621e-01,1.555641724638066048e-01 +4.724300163629637783e-01,1.567925360684381264e-01 +4.894526711519093243e-01,1.577503487392961368e-01 +5.064751284013152555e-01,1.587081502952090717e-01 +5.235033591979266765e-01,1.593437910433653237e-01 +5.405486237524470550e-01,1.589603651302944343e-01 +5.575801475760060466e-01,1.583879679564805798e-01 +5.744599427972040262e-01,1.559910684981120899e-01 +5.909237563047184949e-01,1.516969359687765362e-01 +6.062415568581761560e-01,1.445518529767129967e-01 +6.177434177010394656e-01,1.322204351226214381e-01 +6.341909131471057393e-01,1.292517925953003133e-01 +6.508228389757279020e-01,1.255367495439886072e-01 +6.641243327123624862e-01,1.155356757379281257e-01 +6.671175526565544800e-01,9.930480683369066752e-02 +6.711451930724086079e-01,8.830171396271119244e-02 +6.862782168746284217e-01,8.056822395894323863e-02 +7.012081993073651098e-01,7.234372350867868118e-02 +7.159438116427727650e-01,6.376786962803816794e-02 +7.297953831877090902e-01,5.383338476808235962e-02 +7.417150215708054883e-01,4.167390348683060880e-02 +7.500000000000000000e-01,2.748610821042144978e-02 +7.345963716630334872e-01,2.353029674928958440e-02 +7.178069965943494335e-01,2.649099994696395982e-02 +7.014901918654128377e-01,3.143227899766244671e-02 +6.856238871740114593e-01,3.758966416346638112e-02 +6.762150104852699961e-01,3.431724980622868210e-02 +6.803116011318406375e-01,1.807083465369591774e-02 +6.758983719949313018e-01,1.830109317789756435e-03 +6.597247803149890455e-01,2.619674811679926184e-03 +6.449396374879969862e-01,1.102006010640460033e-02 +6.342866098167123656e-01,2.423657524928976917e-02 +6.263976862829301329e-01,3.934893062629221672e-02 +6.163522582858937948e-01,4.885206430617768797e-02 +6.005341925196601149e-01,4.241550257155855125e-02 +5.844274350167840693e-01,3.699516369926025838e-02 +5.676283643890820407e-01,3.408739787245553682e-02 +5.508341273963723861e-01,3.114791022014428215e-02 +5.338589385734273662e-01,2.976504311858835239e-02 +5.168342278134754331e-01,2.884645576411364043e-02 +4.997871807056415427e-01,2.858897345690915304e-02 +4.827386405353292220e-01,2.840395120098518356e-02 +4.656902794662181044e-01,2.857529217292126972e-02 +4.486419778239633116e-01,2.878030354757625531e-02 +4.315936785832554246e-01,2.898578834409165986e-02 +4.145539983225952074e-01,2.954224608110906508e-02 +3.975166519771283213e-01,3.018708825276457744e-02 +3.804832942495385284e-01,3.090451272342883624e-02 +3.634804018159043526e-01,3.216441661261124768e-02 +3.464978274407411463e-01,3.363300633069189749e-02 +3.296426104359562181e-01,3.619881716188083631e-02 +3.128863436593021241e-01,3.931791990928266284e-02 +2.962454166530947286e-01,4.300737362221415672e-02 +2.795892282492880021e-01,4.619291210912516987e-02 +2.632017878210101136e-01,5.095127230928863521e-02 +2.667688573292351650e-01,6.496794194292652980e-02 +2.724078911709783002e-01,7.904526995844646242e-02 +2.573563811990881578e-01,8.684814440821769788e-02 +2.500000000000000000e-01,1.017408441852133139e-01 +2.543440141630524121e-01,1.180404023883772219e-01 +2.629742669332308935e-01,1.327020650046318861e-01 +2.733857606433531262e-01,1.461806372752732230e-01 +2.847175681864235752e-01,1.589173205306945169e-01 +2.991005288756053981e-01,1.678109785830952105e-01 +3.150344914376490557e-01,1.739556117099510524e-01 +3.063558569475203219e-01,1.875026331671856838e-01 +2.987265848297280257e-01,2.027100925349989147e-01 +2.926679010258677605e-01,2.185921670274896533e-01 +2.876231812028751111e-01,2.348784352110174500e-01 +2.825785048879024264e-01,2.511645629341617836e-01 +2.774960310362585836e-01,2.674387457589510464e-01 +2.743261294926518934e-01,2.841841249056017982e-01 +2.712949261437521686e-01,3.009035370044688129e-01 +2.706439929397421729e-01,3.144666267464604203e-01 +2.832401974340119089e-01,3.028700923687450142e-01 +2.944369350195224500e-01,2.900233696513868642e-01 +3.049041179382041555e-01,2.765659122084761501e-01 +3.152122532803987021e-01,2.629914160344848373e-01 +3.242872047654793977e-01,2.485834296786463005e-01 +3.322978091838120207e-01,2.335347043732376449e-01 +3.404975598733783193e-01,2.199235556798521951e-01 +3.483514903562660026e-01,2.350625869849850003e-01 +3.564574755890991264e-01,2.500005241692420110e-01 +3.649449671660167649e-01,2.647872071722144338e-01 +3.748302980774352311e-01,2.785811690323420353e-01 +3.861041497753529561e-01,2.913712668309029197e-01 +3.973492667981554649e-01,3.042047650453272856e-01 +4.109523893296918029e-01,3.143965325364034835e-01 +4.156417260215941045e-01,3.095166208819505882e-01 +4.126737487036745700e-01,2.927303456043880980e-01 +4.082731741154193017e-01,2.762573818195797615e-01 +4.035416063536277353e-01,2.598775396587933439e-01 +3.988100634676240430e-01,2.434977836135396589e-01 +3.936681678016929475e-01,2.272555878565024889e-01 +3.872591092795255596e-01,2.114564354074203734e-01 +3.806860514432146569e-01,1.957293622464526817e-01 +3.724419753763684726e-01,1.808045331652196053e-01 +3.631326289887165659e-01,1.665334130467591989e-01 +3.679397811802895268e-01,1.550019386379465069e-01 +3.794909740741179149e-01,1.447555081584369630e-01 +3.962783212688496537e-01,1.477111330292178448e-01 +4.131604492044502752e-01,1.500775714654639381e-01 +4.300687898519484076e-01,1.522672157645190150e-01 +4.469771221195054101e-01,1.544568589783646972e-01 +4.639182279511302465e-01,1.563226655115184383e-01 +4.809413437582449324e-01,1.572714424039126924e-01 +4.979638997749021301e-01,1.582292495171564173e-01 +5.149861926380030486e-01,1.591880699363263652e-01 +5.320259461226495290e-01,1.591503632510916921e-01 +5.490713527737145494e-01,1.587703658638145998e-01 +5.660195129024527816e-01,1.571857799554758628e-01 +5.828026798554375443e-01,1.542894779132224781e-01 +5.990398967943658670e-01,1.490977948416883359e-01 +6.127140651832052587e-01,1.390975524415453690e-01 +6.257008427073376122e-01,1.299360917599547138e-01 +6.425076200962220874e-01,1.274024498571027508e-01 +6.583127861757989141e-01,1.215854151740778794e-01 +6.673174978638912735e-01,1.076546199243987589e-01 +6.635210851843069690e-01,9.216960652555430955e-02 +6.787407019219021675e-01,8.449168171601506572e-02 +6.938292664954152089e-01,7.661207434996432364e-02 +7.085834243169435442e-01,6.806833963129149678e-02 +7.229049683246131508e-01,5.885202527487115587e-02 +7.359252243340612676e-01,4.792689749511075403e-02 +7.471096838537394369e-01,3.506584798970781292e-02 +7.428855421463012032e-01,2.352986222628772675e-02 +7.261984330462200043e-01,2.499554912187382238e-02 +7.096492708473138844e-01,2.896211788649142443e-02 +6.933925561880032173e-01,3.408456363353298824e-02 +6.774026229127854126e-01,3.983472062968698019e-02 +6.796522043231947308e-01,2.652249189228593484e-02 +6.789906331295476605e-01,9.689031129368067333e-03 +6.677680478614937964e-01,0.000000000000000000e+00 +6.521851059022957253e-01,6.581764310044373352e-03 +6.391494038779088616e-01,1.727372563611131659e-02 +6.303535911124533708e-01,3.179865350984561329e-02 +6.224481112458057908e-01,4.688859713533023721e-02 +6.084454970491833814e-01,4.563051115435871885e-02 +5.926505720145910372e-01,3.917212667904636236e-02 +5.760261946130403876e-01,3.555181060829382816e-02 +5.592302916828231218e-01,3.262294285257946042e-02 +5.423717047333649344e-01,3.021682372741964218e-02 +5.253464373499063811e-01,2.930808805929766697e-02 +5.083114797569514565e-01,2.867931113785351580e-02 +4.912628958530594336e-01,2.849784718729026986e-02 +4.742144273799158150e-01,2.847278652055659776e-02 +4.571661286410438896e-01,2.867779786029743191e-02 +4.401178242859441481e-01,2.888280926757511372e-02 +4.230726614485191828e-01,2.921976724510882278e-02 +4.060353251478225900e-01,2.986466716701405982e-02 +3.889979723903411180e-01,3.050950958135616523e-02 +3.719821045972987461e-01,3.153783718530028118e-02 +3.549783113334755713e-01,3.278656027535486323e-02 +3.380710374298828147e-01,3.492133083423427931e-02 +3.212499375519439759e-01,3.767539779666558702e-02 +3.045153134064832456e-01,4.094671709529253134e-02 +2.879636096063097894e-01,4.481158900598828515e-02 +2.712679904080632642e-01,4.816753145707826367e-02 +2.610520346209379006e-01,5.869703651061806277e-02 +2.734761918132013747e-01,7.026787373120606250e-02 +3.814845888493318959e-01,2.505875501318585719e-01 +3.699132726335994104e-01,2.310366971739413466e-01 +5.698824626326335352e-01,6.555684279451208518e-02 +6.023964795706926445e-01,6.729754113958730244e-02 +5.054380727357389302e-01,6.210493720345377361e-02 +5.377262219109901764e-01,6.333259428059882790e-02 +5.107133584171725804e-01,9.444233133190681195e-02 +5.420162821691384414e-01,9.476150079274715810e-02 +5.777841141867912089e-01,1.218737884357322665e-01 +5.486040824334716959e-01,1.254770290324137560e-01 +3.871998076143063905e-01,6.113091657617330393e-02 +4.088357846670421791e-01,5.997699101382587134e-02 +3.386436077996261007e-01,1.769538695545066487e-01 +3.573329105358688529e-01,7.826245364606028432e-02 +3.289193134913067640e-01,7.218751619337648862e-02 +3.540447127751886747e-01,2.050778825363391289e-01 +4.511297775172449231e-01,1.231775070496685665e-01 +4.185970574816654799e-01,1.202705720163702724e-01 +3.846785906310130065e-01,8.462654197340455098e-02 +2.883484963852479543e-01,1.052137430313948158e-01 +3.052946881745145502e-01,1.273389506839956997e-01 +4.724885942221132007e-01,6.113563666941483621e-02 +4.784528596681656420e-01,9.324190894686941455e-02 +4.396806038755537438e-01,6.045637966992840201e-02 +6.015718392776887580e-01,9.516601853572022318e-02 +5.723439334237272469e-01,9.418490068130634663e-02 +5.987963906301176920e-01,1.160252516740462869e-01 +3.289645392081596564e-01,1.486391851957575005e-01 +4.151374745242939479e-01,8.970127507402404776e-02 +3.866808507038271836e-01,1.187039498916568070e-01 +4.461180596960495626e-01,9.168877210958559232e-02 +3.507841540436971162e-01,1.215429753223521703e-01 +3.219205720045342223e-01,1.025515223345413174e-01 +5.167297697241146626e-01,1.262415834892992028e-01 +4.839605084097593490e-01,1.252189377647430768e-01 +6.426208257221359688e-01,6.533847430908604204e-02 +3.022851675475533573e-01,7.176694137668808426e-02 +3.046724187501926862e-01,9.265218426943615249e-02 +6.559106973324553280e-01,3.107674716692906264e-02 +6.330329921741962851e-01,9.789572479224525892e-02 +6.827651559045246898e-01,5.275841478539613355e-02 +6.671145689456148276e-01,4.337974480367728231e-02 +5.080757155764556998e-01,7.827363426768028931e-02 +5.263648202931554554e-01,9.460191606232698502e-02 +5.398712520400643644e-01,7.904704753667296524e-02 +5.215821473233646088e-01,6.271876574202629728e-02 +5.239734838082601431e-01,7.866034090217662034e-02 +3.206002896077463360e-01,1.860241449773886169e-01 +3.193929696539554164e-01,2.105324114166700067e-01 +3.451368403336164681e-01,2.155241424847043064e-01 +3.463441602874073322e-01,1.910158760454229165e-01 +3.328685649706813465e-01,2.007741437310464894e-01 +3.604066561758866305e-01,5.521343512933571396e-02 +3.710057505834409297e-01,8.144449780973242459e-02 +3.859391991226597263e-01,7.287872927478893093e-02 +3.753401047151053715e-01,4.664766659439227581e-02 +3.731729276492731784e-01,6.404608220206231550e-02 +4.031762183220852780e-01,4.508203963329517061e-02 +3.980177961406743403e-01,6.055395379499961539e-02 +3.892505451951063788e-01,4.572923325921422755e-02 +2.733093061825022652e-01,1.154120761350270891e-01 +2.842120968833388162e-01,9.037312052717379196e-02 +2.668030251855884050e-01,9.917119187924090806e-02 +5.026126267206902920e-01,4.534695533018145985e-02 +4.690894368441655971e-01,4.485546442116805643e-02 +4.889633334789260100e-01,6.162028693643432919e-02 +4.858509870071276437e-01,4.501211906870972862e-02 +3.899474722129834259e-01,2.782942049465696455e-01 +3.970087674066139494e-01,2.939330852994154197e-01 +3.856797206674200673e-01,1.016652459325306790e-01 +4.026389540927463040e-01,1.194872609540135466e-01 +4.168672660029796861e-01,1.049859235451971601e-01 +3.999080325776534495e-01,8.716390852371429243e-02 +4.012734933351999045e-01,1.033255847388639542e-01 +4.428993317858016532e-01,7.607257588975699369e-02 +4.242581942712979615e-01,6.021668534187713667e-02 +4.119866295956680080e-01,7.483913304392493526e-02 +4.306277671101716997e-01,9.069502359180482698e-02 +4.274429806907348306e-01,7.545585446684099917e-02 +7.087170017540929123e-01,4.760007431285027957e-02 +7.297233415825695735e-01,3.760419640370381983e-02 +3.989629143591638671e-01,7.385893115935690534e-02 +3.051145034179352789e-01,2.413666588360487142e-01 +3.117595447666823838e-01,2.257690998420697759e-01 +2.898418023670308874e-01,2.712843860035991650e-01 +2.798598204651054355e-01,2.904991042607976137e-01 +2.976556508315671423e-01,2.564578201885097108e-01 +3.171296136913371311e-01,1.379890679398766140e-01 +2.921764124447595590e-01,1.399414113699641860e-01 +3.180107944893461602e-01,1.597512350974900630e-01 +3.043249067738501012e-01,1.509495520970196847e-01 +3.338040735038929063e-01,1.627965273751320885e-01 +3.225239140719725617e-01,1.716946075592985232e-01 +3.872778092250975801e-01,1.324912970023066905e-01 +4.201058391395822156e-01,1.357214828978685062e-01 +4.036725835703540710e-01,1.342352680249843389e-01 +5.631940983101313414e-01,1.236754087340730252e-01 +5.750640238052592279e-01,1.080293445585192719e-01 +5.571801077964327886e-01,9.447320073702676624e-02 +5.453101823013050131e-01,1.101192649125804640e-01 +5.601871030532821205e-01,1.090743047355498957e-01 +3.431261120135877807e-01,7.522498491971836565e-02 +3.292809619636314911e-01,5.419316667762862083e-02 +3.448119697271644912e-01,5.442899562520510381e-02 +5.357925802422088823e-01,4.654881869959353463e-02 +5.192081875684200210e-01,4.578261075306991335e-02 +4.486239186066471873e-01,1.074331395796270655e-01 +4.348634174994552293e-01,1.217240395330194402e-01 +4.327455923048134645e-01,1.062095315624121128e-01 +6.014653360451763797e-01,5.485652185557293031e-02 +5.687554135108577880e-01,4.982212033348381447e-02 +5.861394711016630898e-01,6.642719196704967299e-02 +5.852834530592235796e-01,5.171117783315493099e-02 +3.034787931488730495e-01,8.220956282306214613e-02 +3.132964953773634820e-01,9.760185330198872800e-02 +3.254199427479205209e-01,8.736951926395888912e-02 +3.156022405194300329e-01,7.197722878503227950e-02 +3.144493679483967852e-01,8.478954104351049681e-02 +5.003451390669370058e-01,1.257302606270211398e-01 +5.137215640706436215e-01,1.103419574106030143e-01 +4.945831090426691112e-01,9.384212013938812713e-02 +4.812066840389624955e-01,1.092304233558062526e-01 +4.974641240548031140e-01,1.097861903832046127e-01 +5.538043422718119668e-01,6.444471853755545654e-02 +5.711131980281802800e-01,7.987087173790922978e-02 +5.554922250341223222e-01,7.945895963729107669e-02 +4.754707269451394214e-01,7.718877280814213926e-02 +4.917732212607975884e-01,7.773120353791122816e-02 +6.345092560025329398e-01,5.234370246768910162e-02 +6.225086526464143066e-01,6.631800772433664448e-02 +6.194304554661540507e-01,5.758503601525714194e-02 +5.869578863507078914e-01,9.467545960851328490e-02 +6.019841594241907012e-01,8.123177983765375587e-02 +5.865486787261855461e-01,8.055132578778149977e-02 +6.378269089481661824e-01,8.161709955066563660e-02 +6.173024157259425770e-01,9.653087166398273411e-02 +6.199055341861784418e-01,8.142443969415970317e-02 +6.001841149539033360e-01,1.055956351048832342e-01 +6.082699041655786898e-01,1.241228433983338347e-01 +6.253882049376180419e-01,1.150580799574333346e-01 +6.127861599457605779e-01,1.103268575311582567e-01 +4.560845990488334722e-01,6.079600816967161564e-02 +4.622854596821075468e-01,9.246534052822748262e-02 +4.591850293654705095e-01,7.663067434894955954e-02 +5.326669260787930682e-01,1.258593062608564794e-01 +5.295158731859742618e-01,1.102306111615917461e-01 +2.911804324644914899e-01,7.364971969982039846e-02 +2.992652921003240429e-01,5.738715749945114825e-02 +2.829498877208974084e-01,6.078434429287569996e-02 +4.675451429635021361e-01,1.241982224072058216e-01 +4.649153013228048970e-01,1.083317814677166729e-01 +5.882902524084544504e-01,1.189495200548892628e-01 +5.876240693795811154e-01,1.068124898317013016e-01 +6.749398624250697587e-01,4.806907979453670793e-02 +6.548676973338753982e-01,5.435910955638166564e-02 +6.644495212983823063e-01,7.295334913401461951e-02 +6.845216863895766668e-01,6.666331937216968262e-02 +6.696946918617260325e-01,6.051121446427567413e-02 +5.843539352457548519e-01,1.367853622022543736e-01 +5.972659046333153032e-01,1.317506865158011298e-01 +3.687325023737621499e-01,1.201234626070044609e-01 +3.540585322897830123e-01,9.990271448420619260e-02 +3.698691264786015398e-01,1.007839802083684150e-01 +3.558574200759487827e-01,1.406906131993839737e-01 +3.707308376200686983e-01,1.341024516236963560e-01 +4.356371412294046119e-01,4.472108400701000491e-02 +4.194060962969465844e-01,4.487946571149307312e-02 +4.532797176219608426e-01,1.393708397567375856e-01 +4.867065897808343644e-01,1.414846432520195929e-01 +4.699875796632330127e-01,1.404953792378219879e-01 +5.523192348340921765e-01,4.779631437884983985e-02 +4.523632884363983919e-01,4.478815585862391119e-02 +5.201165644610206140e-01,1.427926872663322355e-01 +5.034101337341261306e-01,1.422192054611150780e-01 +3.363523630241156970e-01,1.120472488284467438e-01 +3.397392375188517111e-01,9.363611687408253392e-02 +3.142442920893661062e-01,5.564757434715742607e-02 +4.366931882054875258e-01,1.375430386416769679e-01 +5.530921150047388712e-01,1.419324984944471679e-01 +5.366077749156200616e-01,1.424098356955754430e-01 +3.913302059406780220e-01,2.511375853232137856e-01 +3.753684183580429101e-01,2.613648814482405491e-01 +3.906379040165948169e-01,2.647161701254823196e-01 +3.756989307414656531e-01,2.408121236528999731e-01 +3.801865442396884509e-01,2.251971178041746180e-01 +3.860769215485763128e-01,2.380584977224487475e-01 +3.610700674637786767e-01,2.368180669428765484e-01 +3.682001321551576223e-01,2.491030923901623173e-01 +2.965104575677203202e-01,9.893296365041551188e-02 +2.938454450161059328e-01,8.629134167511798292e-02 +2.968215922798812523e-01,1.162763468576952647e-01 +3.136076300895244140e-01,1.149452365092684808e-01 +3.050590438286223116e-01,1.069391000798420033e-01 +6.659045346636931484e-01,1.645342824235943718e-02 +6.615126331390350778e-01,3.722824598530317247e-02 +6.716647897154424118e-01,3.884849730495295445e-02 +6.709121171354377466e-01,2.764954031949954510e-02 +3.497871469539132194e-01,1.683960603154611990e-01 +3.398743466259284141e-01,1.350910802590548077e-01 +3.448307467899208167e-01,1.517435702872580172e-01 +6.411541918076927304e-01,3.521283889661060845e-02 +6.497484600269654020e-01,1.844229679561589300e-02 +3.267409883577264140e-01,1.250181583841616373e-01 +6.921276738849688748e-01,4.209534689152923115e-02 +6.802818747995407200e-01,4.282937197900148901e-02 +6.966679365961668813e-01,5.721953520010403943e-02 +3.619789927043940425e-01,2.180572898551402239e-01 +3.532376320808731096e-01,2.227861118922362382e-01 +2.823947624230642717e-01,1.279439112510779575e-01 +3.653078973802220686e-01,1.966711223483010029e-01 +3.730186977093288281e-01,2.108063111190081884e-01 +6.500752724153754381e-01,9.860026581296796322e-02 +6.544860510102874507e-01,8.495940675668839370e-02 +3.571734163079336444e-01,1.822742146546098285e-01 +6.447101612293513195e-01,1.154834779786783616e-01 +5.688270205536677393e-01,1.398332386160925644e-01 +6.480109445707840088e-01,4.478597422649614052e-02 +5.067568941560973705e-01,7.018928573556702799e-02 +5.160245996923579215e-01,7.846698758492842707e-02 +5.227778155658122650e-01,7.068955332210145881e-02 +5.135101100295518251e-01,6.241185147274003198e-02 +5.093945369968142511e-01,8.635798279979355063e-02 +5.185390893551640179e-01,9.452212369711687767e-02 +5.251691520507076882e-01,8.663112848225185125e-02 +5.341905512311470039e-01,9.468170842753709238e-02 +5.409437671046013474e-01,8.690427416471006861e-02 +5.319223679241622538e-01,7.885369421942479973e-02 +5.387987369755271594e-01,7.118982090863591738e-02 +5.296541846171773926e-01,6.302568001131256259e-02 +3.296219487036862184e-01,1.814890072659476605e-01 +3.267344272892138690e-01,1.933991443542175392e-01 +3.396063626290443671e-01,1.958950098882346891e-01 +3.424938840435167720e-01,1.839848727999647826e-01 +3.115786305118063981e-01,1.905592826888296010e-01 +3.109749705349109661e-01,2.028134159084702959e-01 +3.261307673123183815e-01,2.056532775738582342e-01 +3.278109687729998667e-01,2.182514069248697175e-01 +3.406829041128304203e-01,2.207472724588868396e-01 +3.390027026521489351e-01,2.081491431078753840e-01 +3.495907765544025714e-01,2.103010125105217176e-01 +3.501944365312980034e-01,1.980468792908809950e-01 +3.619435289958955471e-01,4.368892587097348429e-02 +3.667897919125798767e-01,5.962975866569904249e-02 +3.742565161821892472e-01,5.534687439822732341e-02 +3.694102532655048621e-01,3.940604160350176521e-02 +3.588697833558777139e-01,6.673794438769800608e-02 +3.641693305596548913e-01,7.985347572789631976e-02 +3.720893391163570540e-01,7.274529000589737004e-02 +3.778421706072269681e-01,8.303551989156851554e-02 +3.853088948768363386e-01,7.875263562409673401e-02 +3.795560633859663691e-01,6.846240573842561628e-02 +3.865695033684830029e-01,6.700482292548111396e-02 +3.812699561647058810e-01,5.388929158528278640e-02 +4.060060014945637841e-01,5.252951532356052444e-02 +3.962133817585958284e-01,4.540563644625469908e-02 +3.936341706678903041e-01,5.314159352710694922e-02 +4.034267904038583152e-01,6.026547240441271908e-02 +4.003464351496067719e-01,3.763456394302987229e-02 +3.848669197223224536e-01,3.831687299132150587e-02 +3.822953249551058752e-01,4.618844992680322392e-02 +3.926088018774902544e-01,6.084243518558645619e-02 +2.657897110811294761e-01,1.205112426868431980e-01 +2.700561656840453351e-01,1.072916340071339986e-01 +2.590192536050055505e-01,1.046700389526709768e-01 +2.808289012838751098e-01,1.103129095832109524e-01 +2.862802966342933852e-01,9.779343177928430386e-02 +2.755075610344635550e-01,9.477215620320735001e-02 +2.821438971323841916e-01,8.295280927506328006e-02 +2.657232969618761875e-01,9.088672487079950402e-02 +5.040253497282145556e-01,5.372594626681764102e-02 +4.942318068639089401e-01,4.517953719944559771e-02 +4.874071602430268824e-01,5.331620300257206013e-02 +4.972007031073324423e-01,6.186261206994404793e-02 +5.011999037131660284e-01,3.696796439354527869e-02 +4.842948137712284051e-01,3.670803513484739711e-02 +4.673898581551918507e-01,3.671537829704463185e-02 +4.774702119256466482e-01,4.493379174493886130e-02 +4.707890155331393434e-01,5.299555054529147408e-02 +4.807259638505196331e-01,6.137796180292461046e-02 +4.055827621866376909e-01,2.975345335684158599e-01 +4.004734624952195343e-01,3.017488151948182207e-01 +4.002950843860982877e-01,2.813702010375432327e-01 +3.934781198097987431e-01,2.861136451229925326e-01 +3.795998600398686196e-01,2.752182088555960582e-01 +3.887380258345055628e-01,2.894546858408840739e-01 +3.851791556492165647e-01,9.314589395296761498e-02 +3.934766070013099304e-01,1.024954153356972819e-01 +4.005907629564267047e-01,9.524474663128912333e-02 +3.922933116043332280e-01,8.589522524855942864e-02 +3.861802856856236255e-01,1.101845979120937152e-01 +3.946599023982867438e-01,1.190956054228351491e-01 +4.019562237139731042e-01,1.114064228464387157e-01 +4.106180057872058642e-01,1.198789164851919026e-01 +4.177321617423226385e-01,1.126282477807837162e-01 +4.090703796690897676e-01,1.041557541420305572e-01 +4.160023702636367893e-01,9.734359930961057616e-02 +4.075227535509736709e-01,8.843259179886919785e-02 +4.445086957409255524e-01,8.388067399967129301e-02 +4.351711562382681864e-01,7.576421517829896868e-02 +4.290353739004532652e-01,8.307543902932289226e-02 +4.383729134031106867e-01,9.119189785069518883e-02 +4.412899678306776985e-01,6.826447777984266663e-02 +4.319693990734258526e-01,6.033653250590274159e-02 +4.258505874810164515e-01,6.783626990435903670e-02 +4.165469894691700703e-01,6.009683817785147625e-02 +4.104112071313550936e-01,6.740806202887546228e-02 +4.197148051432014193e-01,7.514749375538296028e-02 +4.135620520599809780e-01,8.227020405897446376e-02 +4.228826208172328238e-01,9.019814933291445125e-02 +7.297593623851392763e-01,4.571879058589306544e-02 +7.192201716683310764e-01,4.260213535827708092e-02 +7.123304066984328387e-01,5.568397197044419600e-02 +7.398616707912848423e-01,3.254515230706263307e-02 +7.237651690884595590e-01,3.204759817533383431e-02 +7.051035968097528750e-01,3.951617665525625211e-02 +3.994354734684086305e-01,8.051141984153560582e-02 +3.924510567409117412e-01,7.336883021707291119e-02 +4.054747719774159931e-01,7.434903210164094112e-02 +3.984903552499190482e-01,6.720644247717826036e-02 +3.034527280149391659e-01,2.181024568326295765e-01 +3.155762572103189001e-01,2.181507556293698913e-01 +2.976300113888191157e-01,2.340510150938099332e-01 +3.084370240923088313e-01,2.335678793390592589e-01 +3.125989954470513865e-01,2.486823025782874674e-01 +3.200663615184256017e-01,2.334357428515100308e-01 +2.844151978016678517e-01,2.935307088985022461e-01 +2.748175977929808167e-01,2.998654329685884745e-01 +2.947346201853929815e-01,2.772727656073552538e-01 +2.848508114160681615e-01,2.808917451321983894e-01 +2.849489845486687933e-01,2.652960063998430762e-01 +2.778532934814386679e-01,2.831476644156583622e-01 +2.913782469385767793e-01,2.497396596302307592e-01 +3.013850771247512106e-01,2.489122395122791986e-01 +2.937487265992990149e-01,2.638711030960544379e-01 +3.039330547245575609e-01,2.631759807467886625e-01 +3.230470764497483938e-01,1.433141265678170850e-01 +3.107272602325936162e-01,1.444693100184481216e-01 +3.111678506315981307e-01,1.553503935972548877e-01 +3.234876668487529083e-01,1.541952101466237957e-01 +3.112121509329258684e-01,1.326640093119361430e-01 +2.987355503096370546e-01,1.336401810269799706e-01 +2.982506596093048579e-01,1.454454817334919492e-01 +2.856172745798820634e-01,1.462426417129484568e-01 +2.979225533151065308e-01,1.574297941755912200e-01 +3.125339221299394121e-01,1.653072600483563581e-01 +3.215621018398594488e-01,1.788593762683435839e-01 +3.168838343560124171e-01,1.761436476513817129e-01 +3.362238406517594758e-01,1.698751984648194102e-01 +3.281639937879327062e-01,1.672455674672153336e-01 +3.313843063560262814e-01,1.557178562854448223e-01 +3.202673542806593332e-01,1.657229213283943070e-01 +3.869793299644623819e-01,1.255976234469817487e-01 +3.954751963977258256e-01,1.333632825136455147e-01 +4.031557688315502430e-01,1.268612644894989427e-01 +3.875762884857327784e-01,1.393849705576316600e-01 +4.041893983091580100e-01,1.416092715604697905e-01 +4.208602299685405557e-01,1.434469383386176577e-01 +4.118892113549681433e-01,1.349783754614264364e-01 +4.193514483106238200e-01,1.279960274571193823e-01 +5.558990903718015186e-01,1.245762188832433975e-01 +5.616906006817066199e-01,1.163748567348114743e-01 +5.527486426772935113e-01,1.095967848240651799e-01 +5.469571323673882990e-01,1.177981469724971031e-01 +5.704891062484612752e-01,1.227745985849026528e-01 +5.764240689960251629e-01,1.149515664971257900e-01 +5.676255634292706187e-01,1.085518246470345838e-01 +5.737039786144932929e-01,1.011071226199128092e-01 +5.647620206100800733e-01,9.432905070916654255e-02 +5.586836054248573991e-01,1.017737527362883448e-01 +5.495981949827857260e-01,9.461735076488693441e-02 +5.436632322352217273e-01,1.024403828526638249e-01 +3.360227127524472168e-01,7.370625055654739244e-02 +3.439690408703761637e-01,6.482699027246176249e-02 +3.370464658453979911e-01,5.431108115141689008e-02 +3.291001377274690998e-01,6.319034143550256166e-02 +3.502295112747283445e-01,7.674371928288932498e-02 +3.526093129515255331e-01,5.482121537727035337e-02 +3.456548985839528187e-01,4.403100097794844514e-02 +3.294617861997938268e-01,4.519599191975472857e-02 +5.367594010765994739e-01,5.494070649009620555e-02 +5.275003839053143961e-01,4.616571472633172052e-02 +5.203951674458924259e-01,5.425068824754807756e-02 +5.348257594078180688e-01,3.815693090909091229e-02 +5.180212076909476160e-01,3.731453325859180464e-02 +5.109104071445551565e-01,4.556478304162568660e-02 +4.498768480619460552e-01,1.153053233146478507e-01 +4.406847554557303814e-01,1.068213355710195822e-01 +4.338045049021342914e-01,1.139667855477157765e-01 +4.429965975083500762e-01,1.224507732913439895e-01 +4.473709891513484305e-01,9.956095584460632197e-02 +4.316866797074926376e-01,9.845227757710844907e-02 +4.248064291538965476e-01,1.055977275538046434e-01 +4.267302374905603823e-01,1.209973057746948771e-01 +6.019309078079344566e-01,6.107703149758014760e-02 +5.933743945521999796e-01,5.328384984436390637e-02 +5.857114620804433347e-01,5.906918490010232975e-02 +5.942679753361779227e-01,6.686236655331852241e-02 +6.009997642824183028e-01,4.863601221356571302e-02 +5.848554440380038244e-01,4.435317076620759469e-02 +5.681918889499699699e-01,4.195475910296964789e-02 +5.770194332850406838e-01,5.076664908331937620e-02 +5.693189380717456061e-01,5.768948156399791860e-02 +5.780109668671483680e-01,6.599201738078087909e-02 +3.028819803482132311e-01,7.698825209987512908e-02 +3.089640805486348896e-01,8.349955193328632841e-02 +3.150258042339134090e-01,7.838338491427139509e-02 +3.089437040334916951e-01,7.187208508086016800e-02 +3.040756059495328678e-01,8.743087354624916319e-02 +3.089844570637780841e-01,9.512701878571247494e-02 +3.138729316628801058e-01,9.119569717274958465e-02 +3.176085336909488799e-01,1.000766878182649949e-01 +3.236702573762273438e-01,9.496052079925011713e-02 +3.199346553481586253e-01,8.607953015373470684e-02 +3.271696281196135869e-01,7.977851772866768887e-02 +3.222607770053683707e-01,7.208237248920440488e-02 +4.921528237383482329e-01,1.254745991958820805e-01 +4.989046315608700599e-01,1.177582255051128762e-01 +4.893354040468826938e-01,1.095083068695054257e-01 +4.825835962243608668e-01,1.172246805602746716e-01 +5.085374543955258897e-01,1.259859220581601436e-01 +5.152256668973791420e-01,1.182917704499511086e-01 +5.055928440627233122e-01,1.100640738969037996e-01 +5.122174612439081010e-01,1.023921443712549062e-01 +5.026482337299208458e-01,9.414222573564746954e-02 +4.960236165487361126e-01,1.018141552612963768e-01 +4.865179843554173766e-01,9.354201454312878472e-02 +4.798297718535641243e-01,1.012361661513378336e-01 +5.618434024522227510e-01,6.500078066603380555e-02 +5.546482836529671445e-01,7.195183908742326662e-02 +5.633027115311513011e-01,7.966491568760014630e-02 +5.704978303304069076e-01,7.271385726621067136e-02 +5.457652820914009606e-01,6.388865640907710752e-02 +5.476817385370933433e-01,7.925300358698202097e-02 +5.563361664152776109e-01,8.696608018715890065e-02 +5.717285657259536524e-01,8.702788620960778820e-02 +4.999244684186266996e-01,7.800241890279575874e-02 +4.931781651517333498e-01,8.578666183864964989e-02 +4.903682773698617714e-01,6.967574523717277868e-02 +4.739796605836263943e-01,6.916220473877847386e-02 +4.836219741029684771e-01,7.745998817302669759e-02 +4.769617933066525040e-01,8.521534087750577691e-02 +6.385650408623344543e-01,5.884108838838757183e-02 +6.269698557343434953e-01,5.496436924147311831e-02 +6.209695540562842897e-01,6.195152186979692444e-02 +6.325647391842752487e-01,6.582824101671132244e-02 +6.304534711427315363e-01,4.584631654699063141e-02 +6.178913568760240338e-01,5.321855016071741495e-02 +6.104478957556652707e-01,5.622077893541503613e-02 +6.124525661085534756e-01,6.680777443196198040e-02 +5.796509098872175691e-01,9.443018014490979495e-02 +5.867532825384467188e-01,8.761339269814737152e-02 +5.788309383771829131e-01,8.021109876284533702e-02 +5.942648628141984357e-01,9.492073907211673323e-02 +6.017779993509397851e-01,8.819889918668696871e-02 +5.942664190751880682e-01,8.089155281271763476e-02 +6.021903194974416174e-01,7.426466048862058467e-02 +5.863440749139243735e-01,7.348925887741560026e-02 +6.354299505611813448e-01,8.975641217145544082e-02 +6.288662215671723121e-01,8.152076962241268376e-02 +6.186039749560605649e-01,8.897765567907120476e-02 +6.251677039500694866e-01,9.721329822811398957e-02 +6.402238673351510201e-01,7.347778692987586013e-02 +6.212070934162963187e-01,7.387122370924820158e-02 +6.109448468051845715e-01,8.132810976590675034e-02 +6.094371275018155565e-01,9.584844509985147865e-02 +6.150442878358515220e-01,1.034288645975705162e-01 +6.190871824416892544e-01,1.126924687442957818e-01 +6.292105985559072190e-01,1.064769023748392829e-01 +6.008779771157961580e-01,1.003808268203016801e-01 +6.064851374498319014e-01,1.079612463180207593e-01 +5.994902527920105140e-01,1.108104433894647328e-01 +6.035331473978482464e-01,1.200740475361900400e-01 +6.105280320556696338e-01,1.172248504647460388e-01 +6.130066609333091332e-01,1.281716392604775878e-01 +6.215658113193287537e-01,1.236392575400273308e-01 +4.642865966354733365e-01,6.096582241954322939e-02 +4.576348142071520186e-01,6.871334125931055636e-02 +4.673278781553049654e-01,7.690972357854586328e-02 +4.478826014621936080e-01,6.062619391980000882e-02 +4.510421805756360536e-01,7.635162511935324192e-02 +4.542017596890786102e-01,9.207705631890654441e-02 +4.607352445237890559e-01,8.454800743858854883e-02 +4.703691596751367054e-01,9.285362473754843471e-02 +5.246983479014538654e-01,1.260504448750778550e-01 +5.310913996323836095e-01,1.180449587112241128e-01 +5.216187186283089972e-01,1.102862842860973802e-01 +5.406355042561323820e-01,1.256681676466351039e-01 +5.374130277436396375e-01,1.101749380370861259e-01 +5.279403467395649141e-01,1.024162636119593517e-01 +2.748593725250663145e-01,6.287614311790111488e-02 +2.812695579850927330e-01,5.348862820100040716e-02 +2.856280649229606117e-01,7.459110886138659025e-02 +2.870651600926945046e-01,6.721703199634808390e-02 +2.967328000060224236e-01,7.270833053825424830e-02 +3.007752298239387279e-01,6.457704943806961972e-02 +2.911075899106107534e-01,5.908575089616337206e-02 +2.977553543767094135e-01,5.019726556083262820e-02 +4.593374602403735296e-01,1.236878647284371940e-01 +4.662302221431535165e-01,1.162650019374612403e-01 +4.567696099647260422e-01,1.078824605236718692e-01 +4.757528256866306871e-01,1.247085800859744770e-01 +4.730609926808836962e-01,1.087811024117614767e-01 +4.636003805024562219e-01,1.003985609979721055e-01 +5.872909778651445034e-01,1.007439747201073210e-01 +5.939040921667422257e-01,1.062040624682922679e-01 +5.813440465924201161e-01,1.074209171951102937e-01 +5.830371832976228852e-01,1.204116542453107508e-01 +5.879571608940177274e-01,1.128810049432952822e-01 +5.935433215192860157e-01,1.174873858644678026e-01 +6.788525091647972243e-01,5.041374728996642074e-02 +6.723172771433978401e-01,5.429014712940616327e-02 +6.771081891256512941e-01,6.358726691822265409e-02 +6.836434211470505673e-01,5.971086707878290462e-02 +6.710272156853422931e-01,4.572441229910699512e-02 +6.609911331397451129e-01,4.886942718002941499e-02 +6.622811945978007708e-01,5.743516201032863866e-02 +6.487442615280056835e-01,5.984879193273379833e-02 +6.535351735102591375e-01,6.914591172155033771e-02 +6.670721065800542249e-01,6.673228179914512948e-02 +6.753638690865053640e-01,7.676078654647891519e-02 +6.853999516321025443e-01,7.361577166555642593e-02 +6.027679043994469410e-01,1.279367649570674892e-01 +6.017537307457457851e-01,1.381512697462570494e-01 +5.927780785208849323e-01,1.253501032853452102e-01 +5.810690247162729749e-01,1.293295753189933339e-01 +5.908099199395351331e-01,1.342680243590277378e-01 +5.876388457752366179e-01,1.442411490855154133e-01 +3.597583282087296608e-01,1.208332189646783156e-01 +3.693008144261818448e-01,1.104537214076864449e-01 +3.619638293841922483e-01,1.003433473462873177e-01 +3.524213431667400087e-01,1.107228449032791884e-01 +3.777066765387946390e-01,1.194137062493306339e-01 +3.777744235730108313e-01,1.012246130704495539e-01 +3.704374385310212348e-01,9.111423900905042672e-02 +3.556957214128259048e-01,8.908258406513323846e-02 +3.697316699969154241e-01,1.271129571153503945e-01 +3.790043234225831670e-01,1.332968743130014955e-01 +3.533207870598229494e-01,1.311167942608680304e-01 +3.632941288480087128e-01,1.373965324115401232e-01 +3.583940530920745604e-01,1.502644321378998893e-01 +3.717300052432219726e-01,1.410919461320422896e-01 +4.376588725524791501e-01,5.258873183846923122e-02 +4.275216187631756259e-01,4.480027485925156677e-02 +4.218321452841222730e-01,5.254807552668513265e-02 +4.336154099063300182e-01,3.685343617555077861e-02 +4.169800473097708959e-01,3.721085589630101359e-02 +4.112911573095159312e-01,4.498075267239417391e-02 +4.522047475696028274e-01,1.312741734032030483e-01 +4.616336486425969277e-01,1.399331094972798006e-01 +4.687663613133675189e-01,1.323468008225139325e-01 +4.543546876743188578e-01,1.474675061102720675e-01 +4.712087980130983955e-01,1.486439576531300710e-01 +4.880796304663718721e-01,1.496174959956578510e-01 +4.783470847220336886e-01,1.409900112449207765e-01 +4.853335490952968567e-01,1.333517905083813349e-01 +5.605373241724749267e-01,4.880921735616682716e-02 +5.530617885529520716e-01,5.612051645820264473e-02 +5.515766811152322813e-01,3.947211229949703498e-02 +5.440559075381504739e-01,4.717256653922168724e-02 +4.607263626402819945e-01,4.482181013989598034e-02 +4.542239437426159876e-01,5.279208201414773566e-02 +4.505026331301808518e-01,3.678422970310002427e-02 +4.440002148329015297e-01,4.475461993281701356e-02 +4.950583617574803030e-01,1.418519243565673493e-01 +5.018776364005315127e-01,1.339747330440681228e-01 +5.049426310677207486e-01,1.504636778781620887e-01 +5.218099618294737008e-01,1.510682391548487657e-01 +5.117633490975734833e-01,1.425059463637236568e-01 +5.184231670925676383e-01,1.345171353778157053e-01 +3.468988849043173617e-01,9.676941567914439102e-02 +3.380458002714837318e-01,1.028416828512646597e-01 +3.435682585339063788e-01,1.167951120753994293e-01 +3.414326747662197459e-01,8.443055089690044979e-02 +3.325795901333861160e-01,9.050281806902071846e-02 +3.291364675143249596e-01,1.072993855814940029e-01 +3.067547920948450746e-01,5.651736592330428716e-02 +3.135653178743341707e-01,4.748274712822004445e-02 +3.149232663043980418e-01,6.381240156609487013e-02 +3.217626270264987709e-01,5.492037051239301998e-02 +4.283995136725348707e-01,1.366322607697727232e-01 +4.357783028524713775e-01,1.296335390873482041e-01 +4.376080735585037296e-01,1.454525381960057040e-01 +4.449864529137242397e-01,1.384569391992072629e-01 +5.283621696883203933e-01,1.426012614809538392e-01 +5.346373504972066204e-01,1.341345709782159334e-01 +5.385781993340337248e-01,1.506851004129348970e-01 +5.553361312903725144e-01,1.501602332254638739e-01 +5.448499449601795774e-01,1.421711670950113193e-01 +5.508480987191052280e-01,1.337047637634304897e-01 +3.982726468458708258e-01,2.663918144641032049e-01 +3.902926881147891214e-01,2.715051875360259825e-01 +3.962530144863510295e-01,2.514126029188913924e-01 +3.909840549786364194e-01,2.579268777243480804e-01 +3.864073973950049590e-01,2.508625677275361787e-01 +3.784265036036874030e-01,2.559762157900495327e-01 +3.830031611873188635e-01,2.630405257868613789e-01 +3.723103331123983617e-01,2.667535471064314545e-01 +3.728061016875325318e-01,2.359244104134206599e-01 +3.808879261450209830e-01,2.394353106876743464e-01 +3.831317328941323819e-01,2.316278077633116828e-01 +3.750499084366439861e-01,2.281169074890579684e-01 +3.785917597953987745e-01,2.456998368923793141e-01 +3.887035637446271119e-01,2.445980415228312665e-01 +3.912659169521315872e-01,2.366816847572231486e-01 +3.853231800427330267e-01,2.222773281192912675e-01 +3.654916700486890435e-01,2.339273820584089336e-01 +3.646350998094681772e-01,2.429605796665194051e-01 +3.719495314483116655e-01,2.449576080215311313e-01 +3.566484648788682543e-01,2.397087518273441631e-01 +3.644507328620035791e-01,2.532485767587935310e-01 +3.717842752566002384e-01,2.552339869192014610e-01 +2.925129387402987113e-01,7.997053068746920457e-02 +2.986621190824894634e-01,8.425045224909007147e-02 +2.890287709497223467e-01,8.833223110114588050e-02 +2.924294769764841373e-01,1.020733533409051430e-01 +2.951779512919130988e-01,9.261215266276670577e-02 +3.005914381589565032e-01,9.579257395992585300e-02 +3.091777696029929245e-01,1.022704766909153656e-01 +3.093333369590733350e-01,1.109421682945552490e-01 +3.177641010470292904e-01,1.087483794219049338e-01 +3.007847506981713437e-01,1.029360318651287576e-01 +2.925850443325645478e-01,1.107450449445450680e-01 +3.009403180542518097e-01,1.116077234687686270e-01 +3.010581402271979012e-01,1.218076487708455447e-01 +3.094511591320194821e-01,1.211420935966321250e-01 +6.709014533293122806e-01,9.141768780074541190e-03 +6.684083258995655585e-01,2.205148428092946339e-02 +6.756118591336393031e-01,2.286018748659767591e-02 +6.609076159980742382e-01,2.376508770464422216e-02 +6.587116652357452029e-01,3.415249657611611755e-02 +6.662123751372364122e-01,3.243889315240135879e-02 +6.643136010423248417e-01,4.030399539449022739e-02 +6.693896793305287307e-01,4.111412105431511838e-02 +6.712884534254401903e-01,3.324901881222624977e-02 +6.739399001003563150e-01,3.658287355559079052e-02 +3.442153773767696601e-01,1.726749649349839377e-01 +3.473089468719170458e-01,1.600698153013596081e-01 +3.393174101469068615e-01,1.572700488311950251e-01 +3.553589165310567788e-01,1.641171556959384881e-01 +3.503440834329347719e-01,1.462170917433209816e-01 +3.453292503348128206e-01,1.283170277907034473e-01 +3.423525467079246432e-01,1.434173252731564263e-01 +3.344194429170440630e-01,1.418651327274061402e-01 +6.547366201709772238e-01,1.053098580364788227e-02 +6.578264973453292752e-01,1.744786251898769458e-02 +6.420175349218387728e-01,2.133943602245280333e-02 +6.337759390453114872e-01,3.728088476145138830e-02 +6.454513259173290107e-01,2.682756784611325246e-02 +6.485324445700739737e-01,3.314479303176983555e-02 +3.201743092236253863e-01,1.199816974467150660e-01 +3.315466756909210555e-01,1.185327036063041906e-01 +3.219353010245317726e-01,1.315036131620191395e-01 +3.333076674918273863e-01,1.300546193216082225e-01 +6.776108686123052394e-01,4.544922588676912623e-02 +6.759733322574914549e-01,4.083893464197719397e-02 +6.874464148947467823e-01,4.742688083846267888e-02 +6.862047743422547974e-01,4.246235943526539131e-02 +6.968089328751907452e-01,3.676381294459583893e-02 +6.829528809867760897e-01,4.020951807123390731e-02 +6.989380679517660511e-01,6.478162935439132908e-02 +6.905948114928717185e-01,6.194142728613685756e-02 +7.026924691751298413e-01,5.240980475647715603e-02 +6.943978052405678225e-01,4.965744104581663182e-02 +3.571538497723258931e-01,2.298020894175563655e-01 +3.488669517691126432e-01,2.251505229107842176e-01 +3.659461326689967264e-01,2.245469935145408269e-01 +3.576083123926335761e-01,2.204217008736882311e-01 +3.580118527397913586e-01,2.115675861957396486e-01 +3.491872362072447888e-01,2.191551271884702445e-01 +2.778520343027832684e-01,1.216779936930525163e-01 +2.896081773514727620e-01,1.221101290543866041e-01 +2.751813474946557814e-01,1.337776934477692692e-01 +2.872855874339119153e-01,1.339426613105210995e-01 +3.785385502117961654e-01,2.071808217509421846e-01 +3.766026209745086395e-01,2.180017144615914171e-01 +3.709394896827387655e-01,1.924677422542819538e-01 +3.691632975447754483e-01,2.037387167336545679e-01 +3.596763050777053161e-01,2.008745024423200798e-01 +3.674988452068613798e-01,2.144318004870742200e-01 +6.415541322947859726e-01,9.824799530260663882e-02 +6.522806617128313889e-01,9.177983628482819234e-02 +6.461564799792267610e-01,8.328825315367703597e-02 +6.585964125359650145e-01,9.895253632332931537e-02 +6.628156220413481403e-01,8.663056035969976532e-02 +6.594677861543348785e-01,7.895637794535151355e-02 +3.625880443181966895e-01,1.779033839592032429e-01 +3.612406568440778010e-01,1.894726685014554157e-01 +3.534802816309234319e-01,1.753351374850355138e-01 +3.517587882976704883e-01,1.866450453500163587e-01 +6.473927168223634343e-01,1.070418718958231763e-01 +6.544172469708569029e-01,1.155095768583032229e-01 +6.350491830834846807e-01,1.152707789680558481e-01 +6.394505371882285294e-01,1.223676352869893236e-01 +5.609595677792033053e-01,1.408828685552698523e-01 +5.660105594318995959e-01,1.317543236750827740e-01 +5.716434816754358827e-01,1.479121535571022994e-01 +5.765904778997112956e-01,1.383093004091734413e-01 +6.445825681892383141e-01,3.999940656155334673e-02 +6.547617888549095433e-01,4.100711010589968425e-02 +6.412601002866585853e-01,4.856483834709258984e-02 +6.514393209523297035e-01,4.957254189143887185e-02 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad9/connectivity.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/connectivity.csv new file mode 100644 index 000000000..b4a8b84d1 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/connectivity.csv @@ -0,0 +1,268 @@ +212,250,254,253,425,426,427,428,429 +250,214,251,254,430,431,432,426,433 +254,251,215,252,432,434,435,436,437 +253,254,252,213,427,436,438,439,440 +220,255,259,258,441,442,443,444,445 +255,10,256,259,446,447,448,442,449 +259,256,24,257,448,450,451,452,453 +258,259,257,223,443,452,454,455,456 +96,260,264,263,457,458,459,460,461 +260,221,261,264,462,463,464,458,465 +264,261,226,262,464,466,467,468,469 +263,264,262,218,459,468,470,471,472 +219,265,267,266,473,474,475,476,477 +265,94,95,267,478,198,479,474,480 +267,95,96,263,479,199,460,481,482 +266,267,263,218,475,481,471,483,484 +4,268,270,3,485,486,487,107,488 +268,227,269,270,489,490,491,486,492 +270,269,0,1,491,493,104,494,495 +3,270,1,2,487,494,105,106,496 +212,271,274,273,497,498,499,500,501 +271,88,89,274,502,192,503,498,504 +274,89,90,272,503,193,505,506,507 +273,274,272,229,499,506,508,509,510 +32,33,276,31,136,511,512,135,513 +33,34,275,276,137,514,515,511,516 +276,275,28,29,515,517,132,518,519 +31,276,29,30,512,518,133,134,520 +226,277,281,280,521,522,523,524,525 +277,237,278,281,526,527,528,522,529 +281,278,225,279,528,530,531,532,533 +280,281,279,236,523,532,534,535,536 +238,282,286,285,537,538,539,540,541 +282,231,283,286,542,543,544,538,545 +286,283,219,284,544,546,547,548,549 +285,286,284,236,539,548,550,551,552 +66,67,288,287,170,553,554,555,556 +67,68,69,288,171,172,557,553,558 +288,69,70,71,557,173,174,559,560 +287,288,71,72,554,559,175,561,562 +226,280,289,262,524,563,564,467,565 +280,236,284,289,535,550,566,563,567 +289,284,219,266,566,547,476,568,569 +262,289,266,218,564,568,483,470,570 +10,11,291,256,114,571,572,447,573 +11,12,290,291,115,574,575,571,576 +291,290,22,23,575,577,126,578,579 +256,291,23,24,572,578,127,450,580 +18,19,293,17,122,581,582,121,583 +19,20,292,293,123,584,585,581,586 +293,292,14,15,585,587,118,588,589 +17,293,15,16,582,588,119,120,590 +12,13,294,290,116,591,592,574,593 +13,14,292,294,117,587,594,591,595 +294,292,20,21,594,584,124,596,597 +290,294,21,22,592,596,125,577,598 +235,295,298,297,599,600,601,602,603 +295,228,296,298,604,605,606,600,607 +298,296,6,7,606,608,110,609,610 +297,298,7,8,601,609,111,611,612 +10,255,300,9,446,613,614,113,615 +255,220,299,300,441,616,617,613,618 +300,299,235,297,617,619,602,620,621 +9,300,297,8,614,620,611,112,622 +237,301,303,278,623,624,625,527,626 +301,44,45,303,627,148,628,624,629 +303,45,46,302,628,149,630,631,632 +278,303,302,225,625,631,633,530,634 +217,304,308,307,635,636,637,638,639 +304,216,305,308,640,641,642,636,643 +308,305,233,306,642,644,645,646,647 +307,308,306,215,637,646,648,649,650 +222,309,311,310,651,652,653,654,655 +309,221,260,311,656,462,657,652,658 +311,260,96,97,657,457,200,659,660 +310,311,97,98,653,659,201,661,662 +213,312,313,253,663,664,665,439,666 +312,86,87,313,667,190,668,664,669 +313,87,88,271,668,191,502,670,671 +253,313,271,212,665,670,497,428,672 +224,314,316,315,673,674,675,676,677 +314,238,285,316,678,540,679,674,680 +316,285,236,279,679,551,534,681,682 +315,316,279,225,675,681,531,683,684 +211,317,320,319,685,686,687,688,689 +317,82,83,320,690,186,691,686,692 +320,83,84,318,691,187,693,694,695 +319,320,318,210,687,694,696,697,698 +244,321,325,324,699,700,701,702,703 +321,245,322,325,704,705,706,700,707 +325,322,240,323,706,708,709,710,711 +324,325,323,222,701,710,712,713,714 +242,326,330,329,715,716,717,718,719 +326,241,327,330,720,721,722,716,723 +330,327,214,328,722,724,725,726,727 +329,330,328,230,717,726,728,729,730 +210,331,333,332,731,732,733,734,735 +331,213,252,333,736,438,737,732,738 +333,252,215,306,737,435,648,739,740 +332,333,306,233,733,739,645,741,742 +214,250,335,328,430,743,744,725,745 +250,212,273,335,425,500,746,743,747 +335,273,229,334,746,509,748,749,750 +328,335,334,230,744,749,751,728,752 +243,336,338,337,753,754,755,756,757 +336,80,81,338,758,184,759,754,760 +338,81,82,317,759,185,690,761,762 +337,338,317,211,755,761,685,763,764 +233,339,341,332,765,766,767,741,768 +339,232,340,341,769,770,771,766,772 +341,340,211,319,771,773,688,774,775 +332,341,319,210,767,774,697,734,776 +247,342,344,343,777,778,779,780,781 +342,243,337,344,782,756,783,778,784 +344,337,211,340,783,763,773,785,786 +343,344,340,232,779,785,770,787,788 +247,343,348,347,780,789,790,791,792 +343,232,345,348,787,793,794,789,795 +348,345,234,346,794,796,797,798,799 +347,348,346,58,790,798,800,801,802 +229,349,351,334,803,804,805,748,806 +349,231,282,351,807,542,808,804,809 +351,282,238,350,808,537,810,811,812 +334,351,350,230,805,811,813,751,814 +241,352,353,327,815,816,817,721,818 +352,217,307,353,819,638,820,816,821 +353,307,215,251,820,649,434,822,823 +327,353,251,214,817,822,431,724,824 +102,103,356,101,206,825,826,205,827 +103,0,354,356,207,828,829,825,830 +356,354,244,355,829,831,832,833,834 +101,356,355,100,826,833,835,204,836 +224,357,358,314,837,838,839,673,840 +357,242,329,358,841,718,842,838,843 +358,329,230,350,842,729,813,844,845 +314,358,350,238,839,844,810,678,846 +232,339,360,345,769,847,848,793,849 +339,233,305,360,765,644,850,847,851 +360,305,216,359,850,641,852,853,854 +345,360,359,234,848,853,855,796,856 +248,361,365,364,857,858,859,860,861 +361,249,362,365,862,863,864,858,865 +365,362,243,363,864,866,867,868,869 +364,365,363,64,859,868,870,871,872 +58,346,367,57,800,873,874,161,875 +346,234,359,367,797,855,876,873,877 +367,359,216,366,876,852,878,879,880 +57,367,366,56,874,879,881,160,882 +239,368,370,369,883,884,885,886,887 +368,237,277,370,888,526,889,884,890 +370,277,226,261,889,521,466,891,892 +369,370,261,221,885,891,463,893,894 +237,368,372,301,888,895,896,623,897 +368,239,371,372,883,898,899,895,900 +372,371,42,43,899,901,146,902,903 +301,372,43,44,896,902,147,627,904 +231,373,374,283,905,906,907,543,908 +373,92,93,374,909,196,910,906,911 +374,93,94,265,910,197,478,912,913 +283,374,265,219,907,912,473,546,914 +224,375,377,357,915,916,917,837,918 +375,48,49,377,919,152,920,916,921 +377,49,50,376,920,153,922,923,924 +357,377,376,242,917,923,925,841,926 +210,318,378,331,696,927,928,731,929 +318,84,85,378,693,188,930,927,931 +378,85,86,312,930,189,667,932,933 +331,378,312,213,928,932,663,736,934 +229,272,379,349,508,935,936,803,937 +272,90,91,379,505,194,938,935,939 +379,91,92,373,938,195,909,940,941 +349,379,373,231,936,940,905,807,942 +242,376,381,326,925,943,944,715,945 +376,50,51,381,922,154,946,943,947 +381,51,52,380,946,155,948,949,950 +326,381,380,241,944,949,951,720,952 +239,369,383,382,886,953,954,955,956 +369,221,309,383,893,656,957,953,958 +383,309,222,323,957,651,712,959,960 +382,383,323,240,954,959,709,961,962 +100,355,384,99,835,963,964,203,965 +355,244,324,384,832,702,966,963,967 +384,324,222,310,966,713,654,968,969 +99,384,310,98,964,968,661,202,970 +225,302,385,315,633,971,972,683,973 +302,46,47,385,630,150,974,971,975 +385,47,48,375,974,151,919,976,977 +315,385,375,224,972,976,915,676,978 +241,380,387,352,951,979,980,815,981 +380,52,53,387,948,156,982,979,983 +387,53,54,386,982,157,984,985,986 +352,387,386,217,980,985,987,819,988 +34,35,390,275,138,989,990,514,991 +35,36,388,390,139,992,993,989,994 +390,388,208,389,993,995,996,997,998 +275,390,389,28,990,997,999,517,1000 +209,391,393,392,1001,1002,1003,1004,1005 +391,208,388,393,1006,995,1007,1002,1008 +393,388,36,37,1007,992,140,1009,1010 +392,393,37,38,1003,1009,141,1011,1012 +209,394,395,391,1013,1014,1015,1001,1016 +394,26,27,395,1017,130,1018,1014,1019 +395,27,28,389,1018,131,999,1020,1021 +391,395,389,208,1015,1020,996,1006,1022 +244,354,397,321,831,1023,1024,699,1025 +354,0,269,397,828,493,1026,1023,1027 +397,269,227,396,1026,490,1028,1029,1030 +321,397,396,245,1024,1029,1031,704,1032 +240,322,400,399,708,1033,1034,1035,1036 +322,245,396,400,705,1031,1037,1033,1038 +400,396,227,398,1037,1028,1039,1040,1041 +399,400,398,228,1034,1040,1042,1043,1044 +76,401,404,75,1045,1046,1047,179,1048 +401,246,402,404,1049,1050,1051,1046,1052 +404,402,249,403,1051,1053,1054,1055,1056 +75,404,403,74,1047,1055,1057,178,1058 +220,405,407,299,1059,1060,1061,616,1062 +405,42,371,407,1063,901,1064,1060,1065 +407,371,239,406,1064,898,1066,1067,1068 +299,407,406,235,1061,1067,1069,619,1070 +76,77,409,401,180,1071,1072,1045,1073 +77,78,79,409,181,182,1074,1071,1075 +409,79,80,408,1074,183,1076,1077,1078 +401,409,408,246,1072,1077,1079,1049,1080 +240,399,410,382,1035,1081,1082,961,1083 +399,228,295,410,1043,604,1084,1081,1085 +410,295,235,406,1084,599,1069,1086,1087 +382,410,406,239,1082,1086,1066,955,1088 +249,361,412,403,862,1089,1090,1054,1091 +361,248,411,412,857,1092,1093,1089,1094 +412,411,72,73,1093,1095,176,1096,1097 +403,412,73,74,1090,1096,177,1057,1098 +64,65,413,364,168,1099,1100,871,1101 +65,66,287,413,169,555,1102,1099,1103 +413,287,72,411,1102,561,1095,1104,1105 +364,413,411,248,1100,1104,1092,860,1106 +26,394,415,25,1017,1107,1108,129,1109 +394,209,414,415,1013,1110,1111,1107,1112 +415,414,223,257,1111,1113,454,1114,1115 +25,415,257,24,1108,1114,451,128,1116 +227,268,416,398,489,1117,1118,1039,1119 +268,4,5,416,485,108,1120,1117,1121 +416,5,6,296,1120,109,608,1122,1123 +398,416,296,228,1118,1122,605,1042,1124 +38,39,418,392,142,1125,1126,1011,1127 +39,40,417,418,143,1128,1129,1125,1130 +418,417,223,414,1129,1131,1113,1132,1133 +392,418,414,209,1126,1132,1110,1004,1134 +247,419,420,342,1135,1136,1137,777,1138 +419,62,63,420,1139,166,1140,1136,1141 +420,63,64,363,1140,167,870,1142,1143 +342,420,363,243,1137,1142,867,782,1144 +40,41,421,417,144,1145,1146,1128,1147 +41,42,405,421,145,1063,1148,1145,1149 +421,405,220,258,1148,1059,444,1150,1151 +417,421,258,223,1146,1150,455,1131,1152 +62,419,422,61,1139,1153,1154,165,1155 +419,247,347,422,1135,791,1156,1153,1157 +422,347,58,59,1156,801,162,1158,1159 +61,422,59,60,1154,1158,163,164,1160 +217,386,423,304,987,1161,1162,635,1163 +386,54,55,423,984,158,1164,1161,1165 +423,55,56,366,1164,159,881,1166,1167 +304,423,366,216,1162,1166,878,640,1168 +246,408,424,402,1079,1169,1170,1050,1171 +408,80,336,424,1076,758,1172,1169,1173 +424,336,243,362,1172,753,866,1174,1175 +402,424,362,249,1170,1174,863,1053,1176 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad9/coords.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/coords.csv new file mode 100644 index 000000000..cdf89ae46 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/coords.csv @@ -0,0 +1,1177 @@ +6.004848057265232963e-02,-4.843165897626279248e-01,0.000000000000000000e+00 +2.919332359799522297e-02,-4.701812391146036885e-01,0.000000000000000000e+00 +5.702108874354874096e-03,-4.472499915184301456e-01,0.000000000000000000e+00 +2.385056906748106702e-03,-4.150642388020465701e-01,0.000000000000000000e+00 +1.645017650033056902e-02,-3.841902982287730972e-01,0.000000000000000000e+00 +3.584009087991152365e-02,-3.561964218329775611e-01,0.000000000000000000e+00 +5.801395929437848376e-02,-3.303392552321408604e-01,0.000000000000000000e+00 +8.293073671007884784e-02,-3.076136294521122361e-01,0.000000000000000000e+00 +1.139952744725080680e-01,-2.937112322862951985e-01,0.000000000000000000e+00 +1.223662153155886806e-01,-2.742581642175385692e-01,0.000000000000000000e+00 +1.049977714551861979e-01,-2.452632505621556991e-01,0.000000000000000000e+00 +9.018002144510810225e-02,-2.145895105217175136e-01,0.000000000000000000e+00 +8.018218636456606041e-02,-1.820000072988329498e-01,0.000000000000000000e+00 +7.009580857725229708e-02,-1.494373557724055501e-01,0.000000000000000000e+00 +6.000943078761316468e-02,-1.168747042384712248e-01,0.000000000000000000e+00 +5.159311260193652493e-02,-8.390723200034304330e-02,0.000000000000000000e+00 +4.551221033791560955e-02,-5.036554966506464476e-02,0.000000000000000000e+00 +3.945391014193982970e-02,-1.705587469368324491e-02,0.000000000000000000e+00 +5.378040055042167950e-02,-1.829469177060037699e-02,0.000000000000000000e+00 +7.783299078513267188e-02,-4.238729981227122579e-02,0.000000000000000000e+00 +9.914043217408542719e-02,-6.898179277590112124e-02,0.000000000000000000e+00 +1.203002326042813541e-01,-9.570791807824664821e-02,0.000000000000000000e+00 +1.400404682056067829e-01,-1.234921134741018556e-01,0.000000000000000000e+00 +1.566149613706762644e-01,-1.532744504951372710e-01,0.000000000000000000e+00 +1.723219080626108846e-01,-1.835294940343784043e-01,0.000000000000000000e+00 +1.888516399720213401e-01,-1.804413418506362055e-01,0.000000000000000000e+00 +2.043082629230232594e-01,-1.502812316029054351e-01,0.000000000000000000e+00 +2.212522080849962658e-01,-1.207007071479050120e-01,0.000000000000000000e+00 +2.383489942146148621e-01,-9.121310084478087554e-02,0.000000000000000000e+00 +2.607724535093945417e-01,-6.555252185056814618e-02,0.000000000000000000e+00 +2.833132674505545179e-01,-3.998014228663895886e-02,0.000000000000000000e+00 +3.077003594001336828e-01,-1.639050410806901573e-02,0.000000000000000000e+00 +3.345127617005000387e-01,1.855931034488686763e-04,0.000000000000000000e+00 +3.281315322672765933e-01,-3.324266029778581016e-02,0.000000000000000000e+00 +3.211054836905261611e-01,-6.661238776510097770e-02,0.000000000000000000e+00 +3.116376623284484726e-01,-9.936020588996495595e-02,0.000000000000000000e+00 +3.021773192426413512e-01,-1.321102232909067697e-01,0.000000000000000000e+00 +2.927382818065917269e-01,-1.648660598444010583e-01,0.000000000000000000e+00 +2.807516240895960302e-01,-1.967513224319663856e-01,0.000000000000000000e+00 +2.679525727339239216e-01,-2.283464159888529410e-01,0.000000000000000000e+00 +2.529823465419616113e-01,-2.589193393631942786e-01,0.000000000000000000e+00 +2.358505800115569817e-01,-2.883742698221542500e-01,0.000000000000000000e+00 +2.217107779147192148e-01,-3.157547986796828132e-01,0.000000000000000000e+00 +2.453007938744269367e-01,-3.392614865715841699e-01,0.000000000000000000e+00 +2.755830522912312563e-01,-3.428660165190158815e-01,0.000000000000000000e+00 +3.092360174068158885e-01,-3.374583494713879750e-01,0.000000000000000000e+00 +3.430428620336029577e-01,-3.330814030258116287e-01,0.000000000000000000e+00 +3.768495674304221943e-01,-3.287034063148845386e-01,0.000000000000000000e+00 +4.106529951962060165e-01,-3.243004354847279225e-01,0.000000000000000000e+00 +4.446436873731409167e-01,-3.218444326403373523e-01,0.000000000000000000e+00 +4.786789587073724261e-01,-3.199293721198604445e-01,0.000000000000000000e+00 +5.127138350790136911e-01,-3.180143338227191530e-01,0.000000000000000000e+00 +5.467602551404103783e-01,-3.167434271631632825e-01,0.000000000000000000e+00 +5.808407326728340925e-01,-3.175100528834015612e-01,0.000000000000000000e+00 +6.148937368462310538e-01,-3.186545096889494832e-01,0.000000000000000000e+00 +6.486433732891212500e-01,-3.234468951563104211e-01,0.000000000000000000e+00 +6.815612916086731810e-01,-3.320326279690322124e-01,0.000000000000000000e+00 +7.121878598228823520e-01,-3.463185805043799137e-01,0.000000000000000000e+00 +7.351847988719928395e-01,-3.709741443869505328e-01,0.000000000000000000e+00 +7.680700906913938697e-01,-3.769096788358619610e-01,0.000000000000000000e+00 +8.013241345174824115e-01,-3.843375741810614032e-01,0.000000000000000000e+00 +8.279192781122955980e-01,-4.043338241692824853e-01,0.000000000000000000e+00 +8.339039529016689656e-01,-4.367859906494959144e-01,0.000000000000000000e+00 +8.419568586375787422e-01,-4.587856878778465708e-01,0.000000000000000000e+00 +8.722139823119900992e-01,-4.742481074535368490e-01,0.000000000000000000e+00 +9.020651429807413635e-01,-4.906922583738178023e-01,0.000000000000000000e+00 +9.315276780746999385e-01,-5.078389089620602981e-01,0.000000000000000000e+00 +9.592226529057457096e-01,-5.277020203255115005e-01,0.000000000000000000e+00 +9.830549006722962835e-01,-5.520138124532392165e-01,0.000000000000000000e+00 +9.996199718866292105e-01,-5.803810364764097063e-01,0.000000000000000000e+00 +9.688217987179663648e-01,-5.882903266603426440e-01,0.000000000000000000e+00 +9.352529492594242599e-01,-5.823706661889094249e-01,0.000000000000000000e+00 +9.026289618060880926e-01,-5.724910219551621049e-01,0.000000000000000000e+00 +8.709057087683703680e-01,-5.601798826278462373e-01,0.000000000000000000e+00 +8.520935037966993475e-01,-5.667227816026259024e-01,0.000000000000000000e+00 +8.602842693341554714e-01,-5.992060314118218267e-01,0.000000000000000000e+00 +8.514604135374446159e-01,-6.316779049430440995e-01,0.000000000000000000e+00 +8.191227677294958820e-01,-6.300992395612994290e-01,0.000000000000000000e+00 +7.895612008604531162e-01,-6.133034226712270609e-01,0.000000000000000000e+00 +7.682614275983702390e-01,-5.868781861521152887e-01,0.000000000000000000e+00 +7.524882326216592032e-01,-5.566623871399876133e-01,0.000000000000000000e+00 +7.324033004071114350e-01,-5.376617237692883355e-01,0.000000000000000000e+00 +7.007764967732799111e-01,-5.505310516040722302e-01,0.000000000000000000e+00 +6.685724799074117541e-01,-5.613685329798889789e-01,0.000000000000000000e+00 +6.349842450482957590e-01,-5.671823499267011348e-01,0.000000000000000000e+00 +6.014056746087743655e-01,-5.730595918181954351e-01,0.000000000000000000e+00 +5.674653072159082656e-01,-5.758245105458666968e-01,0.000000000000000000e+00 +5.334259251520678813e-01,-5.776611435647095449e-01,0.000000000000000000e+00 +4.993418835641874609e-01,-5.781759563420419967e-01,0.000000000000000000e+00 +4.652548567318075534e-01,-5.785458917464381123e-01,0.000000000000000000e+00 +4.311681879962143693e-01,-5.782033108421773537e-01,0.000000000000000000e+00 +3.970816380792898115e-01,-5.777934089878838941e-01,0.000000000000000000e+00 +3.629950929640429202e-01,-5.773825605690460216e-01,0.000000000000000000e+00 +3.289257807262868649e-01,-5.762699732376199702e-01,0.000000000000000000e+00 +2.948611349426097927e-01,-5.749806691571364148e-01,0.000000000000000000e+00 +2.608044640426027128e-01,-5.735462432803494215e-01,0.000000000000000000e+00 +2.268087057651513583e-01,-5.710271784661334893e-01,0.000000000000000000e+00 +1.928535716231018771e-01,-5.680908650559598483e-01,0.000000000000000000e+00 +1.591530771192863347e-01,-5.629607564498371186e-01,0.000000000000000000e+00 +1.256504247208752589e-01,-5.567243902870158134e-01,0.000000000000000000e+00 +9.237838384760233001e-02,-5.493476585285678171e-01,0.000000000000000000e+00 +5.907582917876276485e-02,-5.429784600638217773e-01,0.000000000000000000e+00 +2.631061198055023587e-02,-5.334645456640688677e-01,0.000000000000000000e+00 +3.344264749943672704e-02,-5.054394720138088992e-01,0.000000000000000000e+00 +4.471738984992355143e-02,-4.772931173699760943e-01,0.000000000000000000e+00 +1.462324576754188421e-02,-4.616919698182223586e-01,0.000000000000000000e+00 +-8.517857949942261343e-05,-4.319153524754058004e-01,0.000000000000000000e+00 +8.600288085503197608e-03,-3.993258479033550135e-01,0.000000000000000000e+00 +2.585570437384715828e-02,-3.700111686396220234e-01,0.000000000000000000e+00 +4.667255214595694007e-02,-3.430619723998418746e-01,0.000000000000000000e+00 +6.932948487575385510e-02,-3.175961166992411489e-01,0.000000000000000000e+00 +9.808692463560779451e-02,-2.998140451763020575e-01,0.000000000000000000e+00 +1.299454535168267366e-01,-2.875284024070169364e-01,0.000000000000000000e+00 +1.125933023192374621e-01,-2.604423481584716704e-01,0.000000000000000000e+00 +9.733925705830824560e-02,-2.300363972474571417e-01,0.000000000000000000e+00 +8.522546225077859416e-02,-1.982816139069976946e-01,0.000000000000000000e+00 +7.513899747136998375e-02,-1.657186815371069488e-01,0.000000000000000000e+00 +6.505261968234460346e-02,-1.331560300051537471e-01,0.000000000000000000e+00 +5.489066910914899150e-02,-1.006172612260153726e-01,0.000000000000000000e+00 +4.855273530992069986e-02,-6.713637766718565103e-02,0.000000000000000000e+00 +4.249211610991032728e-02,-3.370741289117943490e-02,0.000000000000000000e+00 +4.119063355659382392e-02,-6.589231548572825267e-03,0.000000000000000000e+00 +6.637561457508599216e-02,-2.977546183849196643e-02,0.000000000000000000e+00 +8.876248704039116366e-02,-5.546133157279835302e-02,0.000000000000000000e+00 +1.096906803897454291e-01,-8.236831060851147746e-02,0.000000000000000000e+00 +1.303008723763331711e-01,-1.095092980887552581e-01,0.000000000000000000e+00 +1.484454238560639627e-01,-1.383167744243102015e-01,0.000000000000000000e+00 +1.644619088467716705e-01,-1.684053508158442347e-01,0.000000000000000000e+00 +1.808565748405669416e-01,-1.956196217209197341e-01,0.000000000000000000e+00 +1.965598043508583748e-01,-1.653504865833013426e-01,0.000000000000000000e+00 +2.127669947245897086e-01,-1.354834211024188162e-01,0.000000000000000000e+00 +2.297369728125545907e-01,-1.059187747896558202e-01,0.000000000000000000e+00 +2.495018052649687068e-01,-7.833898535585001599e-02,0.000000000000000000e+00 +2.720428604809680406e-01,-5.276633206747639165e-02,0.000000000000000000e+00 +2.945264632915480796e-01,-2.710690354056056323e-02,0.000000000000000000e+00 +3.217246866059455535e-01,-6.729378634196279962e-03,0.000000000000000000e+00 +3.311005946922745968e-01,-1.648632426374886314e-02,0.000000000000000000e+00 +3.251663902698930242e-01,-5.004897596799178644e-02,0.000000000000000000e+00 +3.163678361081146972e-01,-8.298518944622160221e-02,0.000000000000000000e+00 +3.069074907856296219e-01,-1.157352145901424656e-01,0.000000000000000000e+00 +2.974471952000510844e-01,-1.484850675537800480e-01,0.000000000000000000e+00 +2.871664360392695015e-01,-1.809598810601583396e-01,0.000000000000000000e+00 +2.743520984107704064e-01,-2.125488692128522650e-01,0.000000000000000000e+00 +2.612098588642268737e-01,-2.439937412944063189e-01,0.000000000000000000e+00 +2.447265682545055610e-01,-2.738345982990770255e-01,0.000000000000000000e+00 +2.261133651920878285e-01,-3.023684228697683385e-01,0.000000000000000000e+00 +2.357248348020678508e-01,-3.254245715876851741e-01,0.000000000000000000e+00 +2.588204088620438270e-01,-3.459113902362027648e-01,0.000000000000000000e+00 +2.923852037685167327e-01,-3.400018834238718868e-01,0.000000000000000000e+00 +3.261395042646128561e-01,-3.352704020379194683e-01,0.000000000000000000e+00 +3.599462147268921997e-01,-3.308924046710111089e-01,0.000000000000000000e+00 +3.937529084342308860e-01,-3.265144094738816616e-01,0.000000000000000000e+00 +4.276251299431650388e-01,-3.227838966719473457e-01,0.000000000000000000e+00 +4.616613230418729619e-01,-3.208869023800078324e-01,0.000000000000000000e+00 +4.956963968897737383e-01,-3.189718529714821171e-01,0.000000000000000000e+00 +5.297309445857432131e-01,-3.170547775486495246e-01,0.000000000000000000e+00 +5.638004032282918354e-01,-3.171301686835217293e-01,0.000000000000000000e+00 +5.978811648700105286e-01,-3.178899393739709200e-01,0.000000000000000000e+00 +6.317674908132590028e-01,-3.210581767618154725e-01,0.000000000000000000e+00 +6.653239277013227593e-01,-3.268490728997080486e-01,0.000000000000000000e+00 +6.977887865074876572e-01,-3.372293775121090187e-01,0.000000000000000000e+00 +7.251290596408153100e-01,-3.572239651787743608e-01,0.000000000000000000e+00 +7.510949563984810062e-01,-3.755414840371326113e-01,0.000000000000000000e+00 +7.846986002352921430e-01,-3.806072737565684427e-01,0.000000000000000000e+00 +8.162996121027432661e-01,-3.922379128226885503e-01,0.000000000000000000e+00 +8.343037254088400134e-01,-4.200912883450751423e-01,0.000000000000000000e+00 +8.267131387906894169e-01,-4.510521836447987654e-01,0.000000000000000000e+00 +8.571433972720782224e-01,-4.664035055987748590e-01,0.000000000000000000e+00 +8.873116287066417085e-01,-4.821580737337584077e-01,0.000000000000000000e+00 +9.168112438365858541e-01,-4.992405049387054206e-01,0.000000000000000000e+00 +9.454458864507750970e-01,-5.176676987995620927e-01,0.000000000000000000e+00 +9.714787204368406925e-01,-5.395115118214162120e-01,0.000000000000000000e+00 +9.938410440108449428e-01,-5.652260266833185609e-01,0.000000000000000000e+00 +9.853952515683953584e-01,-5.882911954501085505e-01,0.000000000000000000e+00 +9.520308737409126643e-01,-5.853606859731322887e-01,0.000000000000000000e+00 +9.189423083686208971e-01,-5.774298875257997121e-01,0.000000000000000000e+00 +8.864384656194790324e-01,-5.671880167331981859e-01,0.000000000000000000e+00 +8.544680283177890079e-01,-5.556910936031101977e-01,0.000000000000000000e+00 +8.589658645625469768e-01,-5.823077008690362710e-01,0.000000000000000000e+00 +8.576431123031689197e-01,-6.159646957187532301e-01,0.000000000000000000e+00 +8.352045597151315226e-01,-6.353370443648650445e-01,0.000000000000000000e+00 +8.040478650430814556e-01,-6.221773970050540337e-01,0.000000000000000000e+00 +7.779841481356388755e-01,-6.007997793925464736e-01,0.000000000000000000e+00 +7.603977094873157760e-01,-5.717584889815040539e-01,0.000000000000000000e+00 +7.445914116081279177e-01,-5.415875002562230422e-01,0.000000000000000000e+00 +7.165944405434208075e-01,-5.441029303260359606e-01,0.000000000000000000e+00 +6.850139047268041237e-01,-5.570158907733564480e-01,0.000000000000000000e+00 +6.517749533035582798e-01,-5.642543880178496618e-01,0.000000000000000000e+00 +6.181930519714234906e-01,-5.701103963786933182e-01,0.000000000000000000e+00 +5.844858195655149302e-01,-5.749212157428079673e-01,0.000000000000000000e+00 +5.504453245829018515e-01,-5.767381511984756015e-01,0.000000000000000000e+00 +5.163854548956035018e-01,-5.779953342521995108e-01,0.000000000000000000e+00 +4.822983406218540048e-01,-5.783581551442035229e-01,0.000000000000000000e+00 +4.482114571415318771e-01,-5.784082616994190573e-01,0.000000000000000000e+00 +4.141249130296609238e-01,-5.779983599149333129e-01,0.000000000000000000e+00 +3.800383576886461889e-01,-5.775884579954136955e-01,0.000000000000000000e+00 +3.459580835304310598e-01,-5.769147407441514996e-01,0.000000000000000000e+00 +3.118934578303711458e-01,-5.756253211972237604e-01,0.000000000000000000e+00 +2.778287992264460993e-01,-5.743360166315101267e-01,0.000000000000000000e+00 +2.438070978817357681e-01,-5.722799678274512747e-01,0.000000000000000000e+00 +2.098095384751252068e-01,-5.697832580181841911e-01,0.000000000000000000e+00 +1.760049608715986424e-01,-5.655149757726337656e-01,0.000000000000000000e+00 +1.423726805026374886e-01,-5.600084659184914049e-01,0.000000000000000000e+00 +1.089133006039735840e-01,-5.534677564151782025e-01,0.000000000000000000e+00 +7.581965352792713331e-02,-5.457402917051493718e-01,0.000000000000000000e+00 +4.243826052251067904e-02,-5.390303857991042280e-01,0.000000000000000000e+00 +2.201237328786378664e-02,-5.179775849313384972e-01,0.000000000000000000e+00 +4.685336115847687360e-02,-4.948427338020844890e-01,0.000000000000000000e+00 +2.628064627796974362e-01,-1.343097153458485682e-01,1.112172293353178754e-17 +2.396706539426173843e-01,-1.733998921419201977e-01,7.024523371775326723e-18 +6.394911122957659400e-01,-5.042620175849209518e-01,-1.129120872880866197e-18 +7.044999726864072942e-01,-5.007816473829618253e-01,2.038930625934702975e-18 +5.106403352986201849e-01,-5.111637931815286029e-01,-7.408631014548044442e-18 +5.751975933576549682e-01,-5.087092029754723965e-01,-4.341170317552985753e-18 +5.211877958304390601e-01,-4.465080742557933080e-01,-1.866215471797085067e-18 +5.837751840294166383e-01,-4.458699235480461098e-01,9.710095367247427270e-19 +6.552897558075261308e-01,-3.916613363528233527e-01,8.408774136384371433e-18 +5.969468997384086428e-01,-3.844569799870810600e-01,6.375869664985723501e-18 +2.742335300504686879e-01,-5.131112600570336690e-01,-1.808915174782895702e-17 +3.174927254404426025e-01,-5.154184307129001663e-01,-1.634373668929591199e-17 +1.771497639668720425e-01,-2.815336547877614892e-01,-4.243556164928986986e-18 +2.145173483749572008e-01,-4.788582883686988145e-01,-1.806105208310021521e-17 +1.577069097575213297e-01,-4.910045808891139729e-01,-2.154391428372731600e-17 +2.079428919007508259e-01,-2.253022135283331284e-01,1.539498457746989182e-18 +4.020557704126931919e-01,-3.890546679266019825e-01,-2.663793670294162050e-18 +3.370095148562104459e-01,-3.948668237763194311e-01,-6.016456074221967581e-18 +2.691925828431865897e-01,-4.661338646109639550e-01,-1.462791671658525692e-17 +7.658920011842870745e-02,-4.249716027482547398e-01,-1.997549927387392978e-17 +1.104715905434620893e-01,-3.807342346573793224e-01,-1.499589546944756231e-17 +4.447608085481308260e-01,-5.131018226539851845e-01,-1.049444735362532379e-17 +4.566858223184624421e-01,-4.489082111379067430e-01,-4.926941962379154731e-18 +3.791641746963337889e-01,-5.144599360957387013e-01,-1.352216718649214401e-17 +7.028511783900115439e-01,-4.450611266058359106e-01,6.337187906926864084e-18 +6.444126023509224588e-01,-4.470227837503795709e-01,3.580880106301130594e-18 +6.973019177743493557e-01,-4.033549609995192853e-01,9.362220117691365253e-18 +1.577973345216641399e-01,-3.381463263622900284e-01,-9.547041007063235732e-18 +3.300923890543120409e-01,-4.559873909751034349e-01,-1.111984615947302431e-17 +2.731959222579165569e-01,-3.979991441901399307e-01,-9.103972557105698510e-18 +3.920352901756293806e-01,-4.520135689291293613e-01,-8.049613834396402326e-18 +2.014236971862120584e-01,-3.923227674993989833e-01,-1.185479825562371156e-17 +1.437135539353064650e-01,-4.302944742328986827e-01,-1.740391869017124202e-17 +5.332170705721842596e-01,-3.829283219303606378e-01,3.657771158649929204e-18 +4.676978719463213974e-01,-3.849730103262424818e-01,5.796328713710914573e-19 +7.849249447298678461e-01,-5.046986257840807566e-01,5.313120289833899261e-18 +1.044543240010477325e-01,-4.918454825099134453e-01,-2.398134679526000883e-17 +1.092274186465177765e-01,-4.500873127326807666e-01,-2.049255673831296771e-17 +8.114968509256074158e-01,-5.732018759598397351e-01,1.121846861851414834e-18 +7.657549315704933468e-01,-4.396033237980205288e-01,9.566638268213730383e-18 +8.651899320205616029e-01,-5.298513263820873176e-01,6.914087972107056042e-18 +8.338979872392811021e-01,-5.486031357525801289e-01,4.049370763024199307e-18 +5.159140655645295670e-01,-4.788359337186609554e-01,-4.637423243172563984e-18 +5.524814899299277382e-01,-4.461889989019197089e-01,-4.476029675361711698e-19 +5.794863886935358588e-01,-4.772895632617593087e-01,-1.685080390414120743e-18 +5.429189643281376876e-01,-5.099364980785004997e-01,-5.874900666050515097e-18 +5.477002271290327684e-01,-4.780627484902101321e-01,-3.161251816793346215e-18 +1.410737677110291410e-01,-2.633984526749585942e-01,-4.427262513283066546e-18 +1.386598397588985621e-01,-2.143963722982670794e-01,-6.901890751741397860e-19 +1.901323999816808274e-01,-2.044158537813557663e-01,2.385044584517930169e-18 +1.925463279338113787e-01,-2.534179341580472533e-01,-1.352028853590998131e-18 +1.656030838463549149e-01,-2.339071532281571386e-01,-1.021108964382569729e-18 +2.206630270700543350e-01,-5.249427334174162629e-01,-2.140303245161883364e-17 +2.418549656090719091e-01,-4.724960764898313847e-01,-1.634448439984273761e-17 +2.717130564468276388e-01,-4.896225623339988120e-01,-1.635853423220711159e-17 +2.505211179078100092e-01,-5.420692192615835792e-01,-2.141708228398320762e-17 +2.461880417584410008e-01,-5.072826478757075375e-01,-1.888078334191297416e-17 +3.061769301915262531e-01,-5.451995499350184016e-01,-1.918420085712153543e-17 +2.958631277454557007e-01,-5.142648453849668622e-01,-1.721644421856243451e-17 +2.783337958940290680e-01,-5.439055443326581418e-01,-2.032259417619480091e-17 +4.651968830937960875e-02,-4.045809504885139463e-01,-1.971476679882321436e-17 +6.831884034554053242e-02,-4.546440962554413323e-01,-2.267182085698789062e-17 +3.351096306339013120e-02,-4.370531417657813611e-01,-2.284175521090148853e-17 +5.049911094314037951e-01,-5.446698747617852998e-01,-1.028900058133424509e-17 +4.379644982721725421e-01,-5.456525667480812691e-01,-1.335094597082490487e-17 +4.777005719233753944e-01,-5.121328079177568382e-01,-8.951539184086684114e-18 +4.714777143275915572e-01,-5.453393498320975308e-01,-1.183395278985168284e-17 +2.797272389525705671e-01,-7.891274430494094050e-02,1.622154019054502991e-17 +2.938456653006388253e-01,-4.764420583241398000e-02,1.930351073985737453e-17 +2.711942525505516288e-01,-4.320665044005519428e-01,-1.186594463684547771e-17 +3.051027185570635569e-01,-3.964329839832296809e-01,-7.560214315663831505e-18 +3.335509519552612434e-01,-4.254271073757114330e-01,-8.568151116847495944e-18 +2.996424859487493153e-01,-4.610606277930336949e-01,-1.287388143802913599e-17 +3.023726022529064084e-01,-4.287468058881316324e-01,-1.021704787684648529e-17 +3.855997324359816125e-01,-4.832367525124340313e-01,-1.078589051044427471e-17 +3.483284500683881957e-01,-5.149391834043194338e-01,-1.493295193789402646e-17 +3.237925572473773217e-01,-4.857029108440018561e-01,-1.373179142438447123e-17 +3.610638396149707385e-01,-4.540004799521163981e-01,-9.584729996934710235e-18 +3.546961448416794394e-01,-4.844698316782178882e-01,-1.225884096741436989e-17 +9.170783199403941266e-01,-5.401649654586112570e-01,8.415614495840935768e-18 +9.590786121783340112e-01,-5.601508267170198785e-01,8.717945367363480964e-18 +2.977528068471024802e-01,-4.876627365890003896e-01,-1.504516282829579141e-17 +1.101113272850864355e-01,-1.527460603864674304e-01,2.875398564548251683e-18 +1.233974914078922180e-01,-1.839319805084274617e-01,1.020298192730393447e-18 +7.957493148084929246e-02,-9.292824850718618690e-02,6.208688269166320070e-18 +5.961685404242019620e-02,-5.451014289423250503e-02,8.334091078776767781e-18 +9.519802059076684642e-02,-1.225726369253261200e-01,4.578600853466359678e-18 +1.341344625325631146e-01,-3.594402805098346754e-01,-1.227146823825539902e-17 +8.424277491892026570e-02,-3.555367449447601191e-01,-1.418699663444149599e-17 +1.358963044970861178e-01,-3.159287793242926412e-01,-8.779214394127295405e-18 +1.085325996213209881e-01,-3.335269549809734557e-01,-1.137848723836659931e-17 +1.674735492442681051e-01,-3.098399905750257588e-01,-6.895298585996108277e-18 +1.449198822799284136e-01,-2.920490773962821640e-01,-6.503837122473188188e-18 +2.743894872745739622e-01,-3.704325803545779339e-01,-6.888022153906840325e-18 +3.400261884449067851e-01,-3.639741134010655577e-01,-3.458358049957101002e-18 +3.071693679819397227e-01,-3.669456667273088835e-01,-5.154686362516382016e-18 +6.261183277729673868e-01,-3.880591581699521786e-01,7.392321900685048622e-18 +6.498511790792244058e-01,-4.193420600516015173e-01,5.994827121342750628e-18 +6.140938931901694930e-01,-4.464463536492128126e-01,2.275944821512937046e-18 +5.903610418839125851e-01,-4.151634517675635849e-01,3.673439600855232729e-18 +6.201061104815683844e-01,-4.172527559095824956e-01,4.834133361098992064e-18 +1.861121290662392791e-01,-4.849314346289064215e-01,-1.980248318341376561e-17 +1.584299934384038322e-01,-5.269826686694756290e-01,-2.433445748813511383e-17 +1.894828503446705781e-01,-5.265111498424331904e-01,-2.291460970293608926e-17 +5.713314502867816724e-01,-5.422668567606696577e-01,-7.146181405725367474e-18 +5.381724447401028399e-01,-5.437988208216051333e-01,-8.743020409164700946e-18 +3.970455302941612863e-01,-4.205341184278656996e-01,-5.356703752345281418e-18 +3.695326426344518467e-01,-3.919607458514606790e-01,-4.340124872258064045e-18 +3.652982411247112093e-01,-4.229806129017885663e-01,-6.962427434596390222e-18 +7.026382347298436581e-01,-5.256563494935170278e-01,4.421188293762888383e-21 +6.372376786720308495e-01,-5.357221837558110433e-01,-3.697751153240595498e-18 +6.719955424910866171e-01,-5.025218324839414441e-01,4.549048765269191594e-19 +6.702840111992491856e-01,-5.319451827319152670e-01,-1.929790187015400207e-18 +1.068408713237827545e-01,-4.709663976212970504e-01,-2.223695176678648519e-17 +1.264704862909121208e-01,-4.401908934827897246e-01,-1.894823771424210333e-17 +1.507102318464139390e-01,-4.606495275610063556e-01,-1.947391648694928055e-17 +1.310806168792844895e-01,-4.914250316995137369e-01,-2.276263053949366242e-17 +1.287755515850983468e-01,-4.658079625911517585e-01,-2.085543412686788904e-17 +5.004574712592528840e-01,-3.839506661283015876e-01,2.118702015010509945e-18 +5.272024332013115488e-01,-4.147181980930769729e-01,8.957778434264216833e-19 +4.889368090744506956e-01,-4.477081426968499978e-01,-3.396578717088119128e-18 +4.621918471323918642e-01,-4.169406107320746124e-01,-2.173654545504032407e-18 +4.946971401668518453e-01,-4.158294044125758204e-01,-6.389383510388045916e-19 +6.073443528267105096e-01,-5.064856102801966742e-01,-2.735145595216925975e-18 +6.419518573233441439e-01,-4.756424006676502336e-01,1.225879616710131813e-18 +6.107191230084401123e-01,-4.764659819647047989e-01,-2.296003868519944646e-19 +4.507233154332965785e-01,-4.810050168959459360e-01,-7.710694658002239259e-18 +4.833186904989130728e-01,-4.799204753073034180e-01,-6.174058950587400081e-18 +7.687065886757634692e-01,-5.306805064620342405e-01,2.552412053688368585e-18 +7.447124587081376257e-01,-5.027401365835213465e-01,3.676025457884301118e-18 +7.385578795576245303e-01,-5.202009301764048965e-01,2.032021399028216120e-18 +6.736318903704668903e-01,-4.460419551781077407e-01,4.959034006613997724e-18 +7.036755755382093636e-01,-4.729213869943988957e-01,4.188059266430783529e-18 +6.728137164307768092e-01,-4.742818938310245369e-01,2.706969441570459212e-18 +7.753399381501806520e-01,-4.721509747910506705e-01,7.439879279023814822e-18 +7.343030549802525009e-01,-4.423322252019282197e-01,7.951913087570298004e-18 +7.395077568441950078e-01,-4.725361808927247553e-01,5.813969272727299946e-18 +7.000765480821805609e-01,-4.242080438026776257e-01,7.849704012309114669e-18 +7.162433583231712086e-01,-3.871645526932349646e-01,1.147598092336649068e-17 +7.504698652212432597e-01,-4.052887340924855586e-01,1.157818999862767247e-17 +7.252732066517117993e-01,-4.147483889475816476e-01,9.713947005468393571e-18 +4.119624916222323074e-01,-5.137808793748619429e-01,-1.200830727005873390e-17 +4.243605562470458836e-01,-4.504608900335180799e-01,-6.488277898387776988e-18 +4.181615239346390678e-01,-4.821208847041900114e-01,-9.248292584223260066e-18 +5.650819851552963957e-01,-3.836926509587208489e-01,5.016820411817826352e-18 +5.587817375426120670e-01,-4.149408249303202512e-01,2.284608722140826436e-18 +8.225140228685001720e-02,-4.880810361362707406e-01,-2.467474461768093631e-17 +9.841635392432507290e-02,-5.205965705192405757e-01,-2.650596404422140960e-17 +6.579516634422419297e-02,-5.138042002502765104e-01,-2.742574797731597654e-17 +4.348768211795072669e-01,-3.870138391264222322e-01,-1.042080399461535296e-18 +4.296186887132766308e-01,-4.187373645799701283e-01,-3.765179148924656142e-18 +6.762958367909377433e-01,-3.975081486761713467e-01,8.885497127037868343e-18 +6.749638635807022613e-01,-4.217750519271394882e-01,6.922265566825933804e-18 +8.495439596299213525e-01,-5.392272310673337232e-01,5.481729367565627674e-18 +8.094114659845745852e-01,-5.266508807683304427e-01,4.681245526429049284e-18 +8.285694635209290837e-01,-4.894733666188088583e-01,8.451241834121112644e-18 +8.687019571662758510e-01,-5.020497169178120833e-01,9.251725675257691805e-18 +8.390567115754251626e-01,-5.143502988430712630e-01,6.966485600843369003e-18 +6.684255237080997114e-01,-3.618469821609278103e-01,1.133289331344536302e-17 +6.942418483069101587e-01,-3.719133645902756302e-01,1.169277119904814944e-17 +2.373098097220642799e-01,-3.951609558447695125e-01,-1.047938540636470349e-17 +2.079705227805846157e-01,-4.355905279340489544e-01,-1.495792516936196339e-17 +2.395823876655680806e-01,-4.338285161673005041e-01,-1.341193490310372363e-17 +2.115672375504656644e-01,-3.540387830895409538e-01,-8.399425365143825382e-18 +2.413053017982456638e-01,-3.672112212081768412e-01,-8.108596329812155485e-18 +3.710796338301883823e-01,-5.459212483323924170e-01,-1.635055972883310766e-17 +3.386271153973375303e-01,-5.456045783209697575e-01,-1.777089842480686002e-17 +4.063543828044496320e-01,-3.566775517056649525e-01,6.785445732408190470e-20 +4.731884153268469118e-01,-3.524511912230514632e-01,3.375713369641170702e-18 +4.397602542763241473e-01,-3.544291358833797645e-01,1.731897829913660378e-18 +6.043750137177424930e-01,-5.397726010491961102e-01,-5.478984491804402859e-18 +4.045220648507610872e-01,-5.457871441813729740e-01,-1.485077146951180986e-17 +5.399886628562973190e-01,-3.498358745467620157e-01,6.555669607332508717e-18 +5.065856531691333986e-01,-3.509824999755103980e-01,4.978197179693531037e-18 +1.725686255607592479e-01,-4.113086208661488330e-01,-1.462935847289747525e-17 +1.793403773134992496e-01,-4.481200277475276827e-01,-1.721592082815562043e-17 +1.283655208000799020e-01,-5.240747109932648584e-01,-2.544514568128235496e-17 +3.731911050324370205e-01,-3.603320760831726366e-01,-1.695705156755246915e-18 +6.059203182923198483e-01,-3.515557448380152716e-01,9.356818402537112219e-18 +5.729613589140651886e-01,-3.506013519210612328e-01,7.963960769607575805e-18 +2.824918910111694492e-01,-1.332099693183776967e-01,1.208464251768006738e-17 +2.505777284971562047e-01,-1.127614080953147080e-01,1.226777192139011414e-17 +2.811076954128023386e-01,-1.060608069926398667e-01,1.415305123530690956e-17 +2.512385583611574380e-01,-1.538548037438843830e-01,9.073123152653556362e-18 +2.602111390161067073e-01,-1.850756072869432778e-01,7.023192330050465443e-18 +2.719884200838746380e-01,-1.593604317941427484e-01,9.565204520330385230e-18 +2.219894584328203635e-01,-1.618405618724128303e-01,7.144053777121404074e-18 +2.362453832230768935e-01,-1.372777554458947391e-01,9.706033787993344537e-18 +9.290830938247324200e-02,-4.375294577404676977e-01,-2.023402800609345183e-17 +8.757985583466171287e-02,-4.628052469383691636e-01,-2.245438631188718174e-17 +9.353039533094537061e-02,-4.028529187028170311e-01,-1.748569737166074913e-17 +1.270925722393842772e-01,-4.055143544451390580e-01,-1.619990707980940371e-17 +1.100004408109286902e-01,-4.215219060928033779e-01,-1.821696754295142777e-17 +8.314786322315258493e-01,-6.024398904514418618e-01,-2.822551664464932908e-19 +8.226974190824442035e-01,-5.609025058562099320e-01,2.585608812437807070e-18 +8.429957455179903913e-01,-5.576629586776030711e-01,3.743705162866572573e-18 +8.414908442082997819e-01,-5.800542686340158793e-01,1.919926716960743185e-18 +1.994302709407956287e-01,-2.986442267337222067e-01,-4.593804319796463095e-18 +1.796105158539381408e-01,-3.652345469308445614e-01,-1.070091963134347056e-17 +1.895203933973668708e-01,-3.319393868322833563e-01,-7.647361975569968371e-18 +7.819925417736334206e-01,-5.649321315499137297e-01,4.567753396971263711e-19 +7.991760101802217742e-01,-5.984633261788606662e-01,-1.408773204195417975e-18 +1.533515440466611812e-01,-3.853744506879918097e-01,-1.345041335557644176e-17 +8.839094469133249588e-01,-5.511711741686248223e-01,6.075012384002437084e-18 +8.602248341991459712e-01,-5.497035568475900913e-01,5.135428508732716019e-18 +8.929872949470329946e-01,-5.209317162712211458e-01,8.851775736086716977e-18 +2.238067729216841051e-01,-1.993510528351266631e-01,4.282010914761157952e-18 +2.063292064468527642e-01,-1.898961973428814343e-01,4.245497963698218580e-18 +6.468524310542847489e-02,-3.795246702678972683e-01,-1.693996553101359645e-17 +2.304626192213562186e-01,-2.421107764457637312e-01,1.223598137944916768e-18 +2.458796728278040966e-01,-2.138487344119898437e-01,4.127517881897115791e-18 +7.998294422360812117e-01,-4.381946572237582216e-01,1.119457318918301049e-17 +8.086483983938798081e-01,-4.654683313344486484e-01,9.447482253137261104e-18 +2.141984539726842218e-01,-2.708961019901007794e-01,-1.759100809405627456e-18 +7.891023836650976619e-01,-4.044381889068120461e-01,1.336531457739372661e-17 +6.373808505310443184e-01,-3.557530266631312998e-01,1.042851937945600639e-17 +7.957020038791038363e-01,-5.457915061591220862e-01,2.569010433063087057e-18 +5.132772004315749870e-01,-4.949998634500947792e-01,-6.023027128860302672e-18 +5.318071463467811677e-01,-4.784493411044355993e-01,-3.899337529982954329e-18 +5.453095957285851725e-01,-4.939996232843553159e-01,-4.518076241421931427e-18 +5.267796498133788807e-01,-5.105501456300145513e-01,-6.641765840299281310e-18 +5.292933980800800242e-01,-4.944997433672250198e-01,-5.270551685141117049e-18 +5.185509306974843691e-01,-4.626720039872271317e-01,-3.251819357484825296e-18 +5.368346428801834547e-01,-4.463485365788565362e-01,-1.156909219666627348e-18 +5.500908585294801423e-01,-4.621258736960648372e-01,-1.804427392164757922e-18 +5.343208946134822002e-01,-4.623989388416459567e-01,-2.528123374824791609e-18 +5.681283369796722438e-01,-4.460294612249828816e-01,2.617032845942865490e-19 +5.816307863614762486e-01,-4.615797434049027093e-01,-3.570354268446890078e-19 +5.635933079112842581e-01,-4.776761558759847204e-01,-2.423166103603731938e-18 +5.658608224454781954e-01,-4.618528085504837732e-01,-1.080731409504724235e-18 +5.773419910255952470e-01,-4.929993831186157971e-01,-3.013125353983555559e-18 +5.590582788428962724e-01,-5.093228505269864481e-01,-5.108035491801751966e-18 +5.613257933770903207e-01,-4.934995032014856120e-01,-3.765600797702744263e-18 +1.591117658389506195e-01,-2.724660537313600139e-01,-4.335409339106025225e-18 +1.533384257786920557e-01,-2.486528029515578941e-01,-2.724185738832820448e-18 +1.790747058900831468e-01,-2.436625436931021960e-01,-1.186568908986783930e-18 +1.848480459503417384e-01,-2.674757944729043713e-01,-2.797792509259990247e-18 +1.690932358645168554e-01,-2.580642987122311327e-01,-2.760989124046405348e-18 +1.230357695831077042e-01,-2.543308516185571744e-01,-4.519115687460107866e-18 +1.218288056070424008e-01,-2.298298114302114170e-01,-2.650578968405646027e-18 +1.521314618026267385e-01,-2.241517627632121368e-01,-8.556490197783555279e-19 +1.375836156928672005e-01,-2.392413071908846556e-01,-2.687382353619232467e-18 +1.554908739107547233e-01,-1.989629331663227418e-01,1.270200818057366455e-18 +1.812271540221458976e-01,-1.939726739078671269e-01,2.807817647903399892e-18 +1.778677419140178573e-01,-2.191615035047564386e-01,6.819678100676809903e-19 +1.666793079123862764e-01,-2.090622183355396180e-01,9.760843140625229524e-19 +1.990376459412157850e-01,-2.148590336548444335e-01,1.962271521132458905e-18 +2.002446099172811023e-01,-2.393600738431902186e-01,9.373480207799552552e-20 +1.890561759156494381e-01,-2.292607886739733425e-01,3.878513060728359468e-19 +2.237358664176029022e-01,-5.479849559417748761e-01,-2.307402263587813977e-17 +2.334255344142476263e-01,-5.161126906465618447e-01,-2.014190789676590390e-17 +2.483545798331255050e-01,-5.246759335686455028e-01,-2.014893281294808781e-17 +2.386649118364807254e-01,-5.565481988638585342e-01,-2.308104755206032984e-17 +2.360452231253641064e-01,-5.363304447552101895e-01,-2.161147772441311995e-17 +2.175901877225057679e-01,-5.019005108930575387e-01,-1.973204226735952751e-17 +2.281861569920145549e-01,-4.756771824292651552e-01,-1.720276824147147795e-17 +2.440215036837564411e-01,-4.898893621827694611e-01,-1.761263387087785434e-17 +2.308058457031311184e-01,-4.958949365379134444e-01,-1.867233806911868784e-17 +2.555237742261292078e-01,-4.693149705503976143e-01,-1.548620055821399726e-17 +2.704528196450071142e-01,-4.778782134724813835e-01,-1.549322547439618426e-17 +2.589505491026342643e-01,-4.984526051048531747e-01,-1.761965878706004133e-17 +2.572371616643818193e-01,-4.838837878276254223e-01,-1.655292967263702084e-17 +2.729732932486481078e-01,-5.013669111955162405e-01,-1.722384299001803893e-17 +2.623773239791393763e-01,-5.275902396593086241e-01,-1.975311701590608540e-17 +2.606639365408867648e-01,-5.130214223820809272e-01,-1.868638790148306799e-17 +3.118348278159844833e-01,-5.303089903239592839e-01,-1.776396877320872371e-17 +2.922553630427776605e-01,-5.445525471338382717e-01,-1.975339751665816817e-17 +2.870984618197424121e-01,-5.290851948588124465e-01,-1.876951919737861617e-17 +3.066779265929492349e-01,-5.148416380489335697e-01,-1.678009045392917171e-17 +2.994666448178634477e-01,-5.296970925913858652e-01,-1.826674398529366840e-17 +3.005190325670680229e-01,-5.600901095460774082e-01,-2.060443294103434407e-17 +2.695691299683159459e-01,-5.587258938065038372e-01,-2.187566915501097949e-17 +2.850420811346118244e-01,-5.594442818826741437e-01,-2.124298656561659477e-17 +2.644274569009195108e-01,-5.429873817971209160e-01,-2.086983823008900118e-17 +2.541172773913276117e-01,-5.576336748122862064e-01,-2.247808241091086331e-17 +2.850483288979621110e-01,-5.136880527210002656e-01,-1.765279798319570039e-17 +2.747378928994408387e-01,-5.283377172590606463e-01,-1.926131810664235387e-17 +3.148493240485508715e-02,-3.943856243586436050e-01,-1.958440056129785665e-17 +4.001532568638485610e-02,-4.208170461271476537e-01,-2.127826100486235453e-17 +1.794800998506906886e-02,-4.260586902839140766e-01,-2.267221356348788365e-17 +2.430780688594405547e-02,-4.100714470152513336e-01,-2.113468148070668814e-17 +6.155444421390413035e-02,-4.147762766183843430e-01,-1.984513303634857207e-17 +7.245402023198466157e-02,-4.398078495018480361e-01,-2.132366006543091328e-17 +5.091490170446530406e-02,-4.458486190106113467e-01,-2.275678803394468957e-17 +5.623467295918477271e-02,-4.303124478144978449e-01,-2.130096053514662774e-17 +6.418366045909643103e-02,-4.694803430090346286e-01,-2.401998164854487412e-17 +3.135214333069266668e-02,-4.536171904401925525e-01,-2.423746291105478222e-17 +4.781614577719442427e-02,-4.615708681902936927e-01,-2.412830789241221660e-17 +1.422124714128009115e-02,-4.442544487086519389e-01,-2.426576485042934010e-17 +5.078157223650120455e-01,-5.279168339716568958e-01,-8.848815797941143224e-18 +4.882344118794976762e-01,-5.450046122969414153e-01,-1.106147668559296550e-17 +4.745891431254835036e-01,-5.287360788749271290e-01,-1.039274598696918348e-17 +4.941704536109977619e-01,-5.116483005496427205e-01,-8.180085099317364278e-18 +4.912024327452476080e-01,-5.283264564232920124e-01,-9.620780892455167973e-18 +5.021664964977957668e-01,-5.614229155519137038e-01,-1.172918536472734387e-17 +4.683662855296996108e-01,-5.619426207892679326e-01,-1.327515959273418836e-17 +4.852663762506760903e-01,-5.616813837205725246e-01,-1.250206451594843510e-17 +4.345663431341934557e-01,-5.619279387951293669e-01,-1.477919527942469233e-17 +4.547211062998820497e-01,-5.454959582900894555e-01,-1.259244938033829386e-17 +4.514662817207069079e-01,-5.619521099947542009e-01,-1.402849934064022558e-17 +4.413626534101515730e-01,-5.293771947010331713e-01,-1.192269666222511433e-17 +4.612306902357531380e-01,-5.126173152858709559e-01,-9.722993268856003951e-18 +4.579758982678175383e-01,-5.290566367879802057e-01,-1.115772132459714890e-17 +3.109885987839577370e-01,-4.044343306509988467e-02,2.063187741006233468e-17 +3.007730123503862818e-01,-3.201735497024148225e-02,2.083804169323775586e-17 +3.162458665491447718e-01,-2.356530118293828635e-02,2.219020810437719076e-17 +3.004163613215483641e-01,-7.276256603502097298e-02,1.762539983119332373e-17 +2.867864521266046962e-01,-6.327847506867746719e-02,1.776252546520120376e-17 +3.059764211982489157e-01,-5.666372551833462334e-02,1.913607344138961695e-17 +2.590381165835927146e-01,-8.506292257486092190e-02,1.481768054989673610e-17 +2.773090594050167113e-01,-5.659836384149108390e-02,1.786457932541807096e-17 +2.681441286957867431e-01,-7.080873021226377628e-02,1.634153728328317825e-17 +2.859177613487792202e-01,-4.185263369046227089e-02,1.940485444583153064e-17 +2.701934176968691093e-01,-4.491001845057579489e-01,-1.324693067671537040e-17 +2.867834274017289631e-01,-4.304066551443418431e-01,-1.104149625684598304e-17 +3.010075441008278618e-01,-4.449037168405826637e-01,-1.154546465743780910e-17 +2.844175343959679525e-01,-4.635972462019988249e-01,-1.375089907730719646e-17 +2.856004808988484855e-01,-4.470019506731703340e-01,-1.239619766707658821e-17 +2.721950874042340929e-01,-4.150328242953459923e-01,-1.048495859697558811e-17 +2.891493204074900847e-01,-3.972160640866848613e-01,-8.332093436384763467e-18 +3.037376604049849549e-01,-4.125898949356807122e-01,-8.888631096255158397e-18 +2.879663739046095516e-01,-4.138113596155134077e-01,-9.686794846615374795e-18 +3.210561167066369737e-01,-3.956499038797745560e-01,-6.788335194942899543e-18 +3.352802334057358724e-01,-4.101469655760154320e-01,-7.292303595534731763e-18 +3.179617771040837981e-01,-4.270869566319215327e-01,-9.392599496846990617e-18 +3.195089469053603581e-01,-4.113684302558480166e-01,-8.090467345894948161e-18 +3.318216705047866144e-01,-4.407072491754074894e-01,-9.843998638160260126e-18 +3.148674375015306781e-01,-4.585240093840685094e-01,-1.199686379875108169e-17 +3.164146073028072381e-01,-4.428054830079950488e-01,-1.069473164779903615e-17 +3.888175113058054411e-01,-4.676251607207816963e-01,-9.417752172420340058e-18 +3.701479386388304427e-01,-4.838532920953260152e-01,-1.152236573892932230e-17 +3.578799922283250612e-01,-4.692351558151671709e-01,-1.092178548217454160e-17 +3.765495648953001151e-01,-4.530070244406229074e-01,-8.817171915665556280e-18 +3.733487517670652789e-01,-4.684301582679744058e-01,-1.016976882729744083e-17 +3.823819535661576730e-01,-4.988483443040864218e-01,-1.215402884846820936e-17 +3.637463123823609923e-01,-5.146995597500291231e-01,-1.422755956219308215e-17 +3.515122974550338730e-01,-4.997045075412687165e-01,-1.359589645265419817e-17 +3.669471255105958285e-01,-4.992764259226775692e-01,-1.287496265056120377e-17 +3.329105877544153991e-01,-5.151788070586098556e-01,-1.563834431359497077e-17 +3.206426413439099066e-01,-5.005606707784509002e-01,-1.503776405684019007e-17 +3.392443510445283250e-01,-4.850863712611098721e-01,-1.299531619589942056e-17 +3.360774693994718065e-01,-5.001325891598599194e-01,-1.431683025474720183e-17 +3.269424731508447368e-01,-4.708451509095527010e-01,-1.242581879192874623e-17 +3.455781143346413620e-01,-4.549939354636098887e-01,-1.035228807820386727e-17 +3.424112326895848435e-01,-4.700401533623599359e-01,-1.167380213705164546e-17 +9.591506325420399159e-01,-5.439264235212657450e-01,9.994075521045992608e-18 +9.380784660593639579e-01,-5.501578960878155122e-01,8.566779931602208366e-18 +9.243029990075470881e-01,-5.240019372103358331e-01,1.000545334581249536e-17 +9.417621762550695275e-01,-5.339127974436888024e-01,1.000537048080537221e-17 +9.793492920324816664e-01,-5.702659315967147924e-01,8.827040564401355118e-18 +9.766658101003523607e-01,-5.544030228183125519e-01,9.952100114677948157e-18 +9.471657807188792466e-01,-5.712607464529647627e-01,7.315785795386922315e-18 +9.662772660197459507e-01,-5.797910657257896450e-01,7.497597452191207850e-18 +9.098536408732412761e-01,-5.563279937068869030e-01,6.825775645869376947e-18 +9.285103872139924830e-01,-5.637938918068076122e-01,7.070848367061999546e-18 +2.986976463979258423e-01,-4.743616821910170422e-01,-1.395952213316246524e-17 +2.847329316469650040e-01,-4.886426494614996008e-01,-1.570184853025145304e-17 +2.845752330214664783e-01,-4.761199478317492684e-01,-1.472637380377932937e-17 +3.107726820472399565e-01,-4.866828237165010673e-01,-1.438847712634012670e-17 +3.128200597743852618e-01,-4.726034165502848161e-01,-1.319267046254560728e-17 +2.968079672962790072e-01,-5.009637909869836259e-01,-1.613080352342911450e-17 +3.087253043200945957e-01,-5.007622308827173185e-01,-1.558428379013465229e-17 +2.848906302724635853e-01,-5.011653510912499332e-01,-1.667732325672357672e-17 +1.067887564265001532e-01,-1.992607455150725015e-01,-9.219797679225750746e-19 +1.310286655833953762e-01,-1.991641764033472706e-01,1.650545587781252899e-19 +1.141839613208518039e-01,-2.146002868254022200e-01,-1.796153677503957419e-18 +9.514675682482626184e-02,-1.673730338426502040e-01,1.061399627444664520e-18 +1.167544093464893129e-01,-1.683390204474474183e-01,1.947848378639322565e-18 +1.009899357986339674e-01,-1.833103171772225704e-01,7.121327906522427321e-20 +1.250758977453466092e-01,-1.381190869302846291e-01,4.689397501651838847e-18 +1.400062263892842274e-01,-1.686032155017823664e-01,2.962576153383361969e-18 +1.325999166012766239e-01,-1.533278974358788238e-01,3.831216754451952683e-18 +1.477452872150835372e-01,-1.837847636095957526e-01,2.116110643871406623e-18 +6.872492241377645139e-02,-4.844872135325187235e-02,9.215256675681002468e-18 +4.953538209218002336e-02,-3.578300879395787670e-02,9.354420858827224874e-18 +5.524223743883954069e-02,-2.723620947444042525e-02,1.027911881430523156e-17 +8.935768182746736676e-02,-8.095502064154365407e-02,7.583723357362362740e-18 +6.959589276163474780e-02,-7.371919570070933903e-02,7.271389673971543925e-18 +7.917918990101298349e-02,-6.459026363675386684e-02,8.414386882645118866e-18 +6.979218113423123204e-02,-1.049014763728287197e-01,4.833653180970277399e-18 +5.560498332217836404e-02,-6.920868744728778110e-02,7.002225265575067870e-18 +6.224328093539188700e-02,-8.716822846336236275e-02,5.888786457306905834e-18 +4.904858663604167585e-02,-5.145804358647451671e-02,8.102921799176179065e-18 +8.264691458400957869e-02,-1.360049963488658420e-01,2.965805122390653088e-18 +1.026546739379266271e-01,-1.376593486558967960e-01,3.726999709007305295e-18 +8.889683570464829154e-02,-1.516890150965018447e-01,2.013602374869559089e-18 +8.738647603580805556e-02,-1.077504427162561396e-01,5.393644561316339488e-18 +7.621954785907633645e-02,-1.204532363607049572e-01,3.899729151689668108e-18 +1.077491265975240864e-01,-1.091402775017863980e-01,6.191396584542064726e-18 +9.853857821277677009e-02,-9.505937666238382933e-02,6.885979620633666753e-18 +1.164777731571298713e-01,-1.235843233723259993e-01,5.446861994407097075e-18 +1.459658985271136411e-01,-3.487933034360622964e-01,-1.090925462265931584e-17 +1.213335310769420722e-01,-3.464836177454040933e-01,-1.182497773831100071e-17 +1.222144520592035044e-01,-3.247278671526330207e-01,-1.007885081624694736e-17 +1.468468195093751150e-01,-3.270375528432913348e-01,-9.163127700595265569e-18 +1.340901752931585866e-01,-3.367605852943477140e-01,-1.049405271945313468e-17 +1.223030265380125881e-01,-3.700872575836069989e-01,-1.363368185385148529e-17 +9.735718273119120525e-02,-3.681354898010696930e-01,-1.459144605194452761e-17 +9.638768727012064774e-02,-3.445318499628667874e-01,-1.278274193640404919e-17 +1.093453569040666318e-01,-3.573095537732369209e-01,-1.320821189512776570e-17 +7.112836710664935391e-02,-3.429380000884504898e-01,-1.378254721693846129e-17 +9.573166816569991799e-02,-3.205702922165428737e-01,-1.093199673842220100e-17 +8.285858607293726530e-02,-3.310639833310539681e-01,-1.232857079889692311e-17 +1.249457894847971207e-01,-3.048200058052939476e-01,-8.395301087659325242e-18 +1.101506883474056842e-01,-3.122709561644675391e-01,-9.638741752361618652e-18 +1.429968249954788051e-01,-2.777237650356203513e-01,-5.465549817878125826e-18 +1.336430487977585679e-01,-2.831536208069104221e-01,-6.308106390711726602e-18 +1.277950636573581544e-01,-2.690830565970460109e-01,-5.464591820558070510e-18 +1.723116566055700460e-01,-2.956868226813935685e-01,-5.569427375462546091e-18 +1.561967157620982594e-01,-3.009445339856539059e-01,-6.699567854234646692e-18 +1.576542408005244256e-01,-2.867052938585069599e-01,-5.517488596670335958e-18 +1.626354418829661364e-01,-3.239931584686578381e-01,-8.221169796529670464e-18 +1.404080933885072657e-01,-3.039889283602874026e-01,-7.641525758300241796e-18 +1.515217676357366872e-01,-3.139910434144725926e-01,-7.931347777414956130e-18 +1.351767734526670151e-01,-2.957586653836522528e-01,-7.228763983069570731e-18 +2.737927047662452873e-01,-3.842158622723589323e-01,-7.995997355506267877e-18 +2.907794276282568147e-01,-3.686891235409434087e-01,-6.021354258211611171e-18 +3.061360432695016121e-01,-3.816893253552692822e-01,-6.357450339090106761e-18 +2.899643740178734497e-01,-3.829525938138140795e-01,-7.176723847298185778e-18 +2.749862697829026370e-01,-3.566492984367969354e-01,-5.780046952307406611e-18 +3.082026926943778333e-01,-3.522020080993484292e-01,-3.951922385942654191e-18 +2.915823156983868292e-01,-3.543455034824077310e-01,-4.860238091990877149e-18 +3.415345252392548714e-01,-3.485277582134385654e-01,-2.179309037824666942e-18 +3.235977782134232816e-01,-3.654598900641872206e-01,-4.306522206236740739e-18 +3.248686412390180411e-01,-3.503651460510533444e-01,-3.065634900735898902e-18 +3.385178516505585877e-01,-3.794204685886924944e-01,-4.737407062089533521e-18 +3.223269474600300999e-01,-3.805548969719808605e-01,-5.547428700589823222e-18 +6.115326137556880148e-01,-3.862580690785166193e-01,6.884095782835386447e-18 +6.231122191272677746e-01,-4.026559570397673093e-01,6.113227630892019572e-18 +6.052335761827404292e-01,-4.162081038385730403e-01,4.253786480977111626e-18 +5.936539708111606695e-01,-3.998102158773223502e-01,5.024654632920477729e-18 +6.083830949692142775e-01,-4.012330864585448298e-01,5.568941131906249036e-18 +6.407040417902467588e-01,-3.898602472613877379e-01,7.900548018534709257e-18 +6.525704674433752128e-01,-4.055016982022123795e-01,7.201800628863561416e-18 +6.349786447803963396e-01,-4.182974079805920065e-01,5.414480241220871731e-18 +6.378413432853214937e-01,-4.040788276209898444e-01,6.657514129877790879e-18 +6.471318907150734878e-01,-4.331824219009905441e-01,4.787853613821940611e-18 +6.292532477705460314e-01,-4.467345686997962195e-01,2.928412463907034205e-18 +6.171000018358689942e-01,-4.318495547793976264e-01,3.555039091305963784e-18 +6.321159462754711855e-01,-4.325159883401940575e-01,4.171446352563951812e-18 +5.989345386097931767e-01,-4.461581385986295167e-01,1.623477179118839886e-18 +5.870681129566647227e-01,-4.305166876578048196e-01,2.322224568789989269e-18 +6.020840573962669140e-01,-4.311831212186012507e-01,2.938631830047976526e-18 +1.719095194118802628e-01,-4.879680077590102805e-01,-2.067319873357054697e-17 +1.877974897054549286e-01,-5.057212922356697504e-01,-2.135854644317492435e-17 +1.739564218915372051e-01,-5.267469092559543542e-01,-2.362453359553560154e-17 +1.580684515979625393e-01,-5.089936247792947732e-01,-2.293918588593121800e-17 +1.729329706517087339e-01,-5.073574585074822618e-01,-2.214886616455307426e-17 +2.003147387205982677e-01,-4.818948614988026180e-01,-1.893176763325699041e-17 +2.050729387073624566e-01,-5.257269416299248377e-01,-2.215882107727746145e-17 +2.026938387139803066e-01,-5.038109015643637001e-01,-2.054529435526722593e-17 +1.911682109838862831e-01,-5.473010074491966304e-01,-2.447067296269724800e-17 +2.074412385912439150e-01,-5.477550998240545699e-01,-2.378162523853350639e-17 +1.587915352788450696e-01,-5.449717125596563738e-01,-2.572972909033900966e-17 +1.749806913815679099e-01,-5.461309425142941709e-01,-2.509973954632567848e-17 +5.732645218222183203e-01,-5.254880298680709716e-01,-5.743675861639175073e-18 +5.547519475134421452e-01,-5.430328387911373955e-01,-7.944600907445034210e-18 +5.405457045341203193e-01,-5.268676594500528720e-01,-7.308960537607608022e-18 +5.569051131781692643e-01,-5.261778446590619218e-01,-6.526318199623393088e-18 +5.693983787513449135e-01,-5.590456836532682328e-01,-8.548686949811556794e-18 +5.357991849460852496e-01,-5.607299821931572836e-01,-1.017708028072179387e-17 +5.525986360481721649e-01,-5.598854949948065540e-01,-9.362706680535006843e-18 +5.215817770857533731e-01,-5.442343477916952166e-01,-9.516010495249473017e-18 +5.189836159906785484e-01,-5.611148410219475302e-01,-1.095611044277673413e-17 +5.241807134495661824e-01,-5.273922467108549395e-01,-8.078888167774377164e-18 +3.995506503534271836e-01,-4.047943931772337578e-01,-4.010248711319722504e-18 +3.811718857094362756e-01,-4.217573656648271330e-01,-6.159565593470837360e-18 +3.674154418795815280e-01,-4.074706793766246227e-01,-5.651276153427227133e-18 +3.857942065235724916e-01,-3.905077068890313585e-01,-3.501959271276112277e-18 +3.834830461165044113e-01,-4.061325362769292457e-01,-4.830762432373473278e-18 +3.945404102348953890e-01,-4.362738436784975304e-01,-6.703158793370840331e-18 +3.631810403698410572e-01,-4.384905464269525099e-01,-8.273578715765550228e-18 +3.788607253023681953e-01,-4.373821950527250757e-01,-7.488368754568198361e-18 +3.494245965399862541e-01,-4.242038601387499996e-01,-7.765289275721943083e-18 +3.475013554373138080e-01,-4.395988978011799997e-01,-9.058788676962908259e-18 +3.532710787453311463e-01,-3.934137848138899995e-01,-5.178290473240015813e-18 +3.513478376426586447e-01,-4.088088224763199996e-01,-6.471789874480980989e-18 +7.035691037081254207e-01,-5.132189984382393710e-01,1.021675907114232932e-18 +6.864611229645464219e-01,-5.288007661127162029e-01,-9.626844993608186591e-19 +6.711397768451679013e-01,-5.172335076079283001e-01,-7.374426552442412940e-19 +6.882477575887469001e-01,-5.016517399334515792e-01,1.246917751230810297e-18 +6.873544402766467165e-01,-5.152262530230838911e-01,1.421166259349958188e-19 +7.017073657515618956e-01,-5.380937005487946845e-01,-1.012833530526707155e-18 +6.694282455533305809e-01,-5.466568578559021230e-01,-3.122137718786559119e-18 +6.857375138456753838e-01,-5.429083284430362699e-01,-2.101749742431446736e-18 +6.361109618601633597e-01,-5.514522668412561446e-01,-4.982066293420464000e-18 +6.537608449356400175e-01,-5.338336832438631552e-01,-2.813770670127999393e-18 +6.527678991195992042e-01,-5.490440356308564640e-01,-4.051352017323590594e-18 +6.383643954838984502e-01,-5.199921006703660531e-01,-2.413436013060730077e-18 +6.557433273934263340e-01,-5.033919250344311980e-01,-3.371079981769735186e-19 +6.547520861645331758e-01,-5.186128041391471211e-01,-1.575439334152484145e-18 +1.056475976624152435e-01,-4.814059400656052201e-01,-2.310914928102324393e-17 +1.178082114544405645e-01,-4.683871801062243767e-01,-2.154619294682718403e-17 +1.299280842321914320e-01,-4.786164971453327199e-01,-2.180903233318077573e-17 +1.177674704401661387e-01,-4.916352571047136188e-01,-2.337198866737684179e-17 +1.177878409473033239e-01,-4.800112186054690255e-01,-2.245909080710201291e-17 +1.080341449851502933e-01,-4.605268551769888807e-01,-2.136475425254972645e-17 +1.178489524687149348e-01,-4.451391031077351901e-01,-1.972039722627753244e-17 +1.276230189380052338e-01,-4.529994280369707971e-01,-1.990183592055499618e-17 +1.178285819615777219e-01,-4.567631416069797279e-01,-2.063329508655236132e-17 +1.350920201131093068e-01,-4.352426838578442592e-01,-1.817607820220667422e-17 +1.472118928908602020e-01,-4.454720008969524914e-01,-1.843891758856025975e-17 +1.397428917157561012e-01,-4.632287450760790293e-01,-2.016467530690858171e-17 +1.374174559144327734e-01,-4.492357144669616442e-01,-1.917037675455763105e-17 +1.542085708019675927e-01,-4.758270542250601642e-01,-2.050891538533830136e-17 +1.443937633184029234e-01,-4.912148062943137994e-01,-2.215327241161048921e-17 +1.420683275170795123e-01,-4.772217756851964698e-01,-2.115897385925953854e-17 +4.840776716027871962e-01,-3.844618382272720902e-01,1.349167443190799931e-18 +4.975773057130523647e-01,-3.998900352704387040e-01,7.398818319858526768e-19 +4.784444936496217715e-01,-4.163850075723252164e-01,-1.406296448271419270e-18 +4.649448595393566031e-01,-4.009568105291585471e-01,-7.970108370664704749e-19 +4.812610826262044283e-01,-4.004234228997985978e-01,-2.856450254031198053e-20 +5.168372709157186273e-01,-3.834394940293311405e-01,2.888236586830218419e-18 +5.302097518867479042e-01,-3.988232600117188054e-01,2.276774501038175829e-18 +5.109497866840817526e-01,-4.152738012528264244e-01,1.284197461938085459e-19 +5.138935287999000234e-01,-3.993566476410786992e-01,1.508328166512014253e-18 +5.241951145158753045e-01,-4.306131361744351405e-01,-4.852188141853309213e-19 +5.050623024524448779e-01,-4.471081084763216529e-01,-2.631397094442601327e-18 +4.918169746206513260e-01,-4.317687735547128813e-01,-2.017758534063463401e-18 +5.080060445682633707e-01,-4.311909548645740387e-01,-1.251488674124397161e-18 +4.728113156964566244e-01,-4.483081769173783426e-01,-4.161760339733635389e-18 +4.594388347254272364e-01,-4.329244109349906777e-01,-3.550298253941592799e-18 +4.756279046730391702e-01,-4.323465922448518350e-01,-2.784028394002528100e-18 +6.234177325612382248e-01,-5.053738139325587575e-01,-1.932133234048895315e-18 +6.090317379175751444e-01,-4.914757961224507365e-01,-1.482372991034461760e-18 +6.263354901658920726e-01,-4.760541913161775440e-01,4.981396149290686744e-19 +6.407214848095550419e-01,-4.899522091262855650e-01,4.837937191463357877e-20 +6.248766113635650932e-01,-4.907140026243681508e-01,-7.169968095599133205e-19 +5.912709730921826834e-01,-5.075974066278345909e-01,-3.538157956384956634e-18 +5.951027558509880411e-01,-4.768777726132320538e-01,-9.573403886330576036e-19 +5.931868644715851957e-01,-4.922375896205333223e-01,-2.247749172509008660e-18 +6.124065080993048582e-01,-4.614561678069588613e-01,1.023172217330471291e-18 +5.970186472303906644e-01,-4.615179556059308408e-01,3.330683952428903710e-19 +6.431822298371332458e-01,-4.613325922090149023e-01,2.403379861505631589e-18 +6.277943689682190520e-01,-4.613943800079868263e-01,1.713276039418050669e-18 +4.996163780317214309e-01,-4.793782045129821867e-01,-5.405741096879982032e-18 +4.861277497866819397e-01,-4.638143090020767634e-01,-4.785318833837762686e-18 +5.023393402420831544e-01,-4.632431564946519753e-01,-4.018569095661290909e-18 +4.805096312111442614e-01,-4.960266416125301281e-01,-7.562799067337040557e-18 +4.968934158213597074e-01,-4.955132525313125091e-01,-6.792913098098670074e-18 +4.477420619907138133e-01,-4.970534197749655880e-01,-9.102571005813781523e-18 +4.670210029661047701e-01,-4.804627461016246492e-01,-6.942376804294821211e-18 +4.641258466009290373e-01,-4.965400306937478581e-01,-8.332685036575407958e-18 +4.537045688758794548e-01,-4.649566140169263395e-01,-6.318818310190696995e-18 +4.699161593312806140e-01,-4.643854615095015514e-01,-5.552068572014231381e-18 +7.768157667028156022e-01,-5.176895661230574985e-01,3.932766171761133923e-18 +7.536322341166939998e-01,-5.254407183192195685e-01,2.292216726358293123e-18 +7.416351691328810780e-01,-5.114705333799630660e-01,2.854023428456259004e-18 +7.648187017190027914e-01,-5.037193811838011070e-01,4.494572873859100575e-18 +7.592254679178483956e-01,-5.145800497515102823e-01,3.393394800108695693e-18 +7.605974106487113362e-01,-5.436714468010109824e-01,1.172057935615603247e-18 +7.354805899823680937e-01,-5.289313269728466160e-01,1.210019369600174777e-18 +7.491118228624108477e-01,-5.335141092877212499e-01,1.457496142375949414e-18 +7.205980571437341498e-01,-5.229286398349609621e-01,1.018221293660989504e-18 +7.185962488435775342e-01,-5.335157850804984614e-01,9.843739232188579979e-20 +7.246062156972723489e-01,-5.017608919832415859e-01,2.857478041909502431e-18 +7.226021364205031938e-01,-5.123447659091011630e-01,1.937849667785246738e-18 +6.590222463606946190e-01,-4.465323694642436836e-01,4.269957056457563004e-18 +6.732228034006217943e-01,-4.601619245045661666e-01,3.833001724092228468e-18 +6.573827868770604210e-01,-4.749621472493374408e-01,1.966424529140295513e-18 +6.582025166188776311e-01,-4.607472583567905344e-01,3.118190792798928488e-18 +6.882415343802392727e-01,-4.455515408919718534e-01,5.648110956770430904e-18 +7.032633769641104537e-01,-4.589912568001174309e-01,5.262623586678823807e-18 +6.882446459844930864e-01,-4.736016404127116886e-01,3.447514354000620600e-18 +6.882430901823661795e-01,-4.595765906523417987e-01,4.547812655385526138e-18 +7.040877741123081623e-01,-4.868515171886802495e-01,3.113494946182742482e-18 +6.724046294609317131e-01,-4.884018631574829628e-01,1.580937159048688415e-18 +6.882462017866199933e-01,-4.876266901730815784e-01,2.347216052615715063e-18 +6.565630571352434330e-01,-4.891770361418842361e-01,8.146582654816617675e-19 +7.705474348603370549e-01,-4.558771492945355996e-01,8.503258773618772603e-18 +7.574238474971877189e-01,-4.723435778418876851e-01,6.626924275875558155e-18 +7.369054059122237543e-01,-4.574342030473265153e-01,6.882941180148798975e-18 +7.500289932753729794e-01,-4.409677744999743743e-01,8.759275677892014964e-18 +7.537264203862803491e-01,-4.566556761709310575e-01,7.693099976883785019e-18 +7.801324414400242491e-01,-4.884248002875656858e-01,6.376499784428857812e-18 +7.421101077761662612e-01,-4.876381587381229954e-01,4.744997365305800917e-18 +7.611212746080951996e-01,-4.880314795128443683e-01,5.560748574867328979e-18 +7.215916661912021857e-01,-4.727287839435617700e-01,5.001014269579041738e-18 +7.230989409442373228e-01,-4.872448379634016780e-01,3.929246155744272085e-18 +7.185771166851319114e-01,-4.436966759038820651e-01,7.144550497248581044e-18 +7.200843914381671595e-01,-4.582127299237219731e-01,6.072782383413811391e-18 +7.297881308159821501e-01,-4.285403070747548782e-01,8.832930046519345788e-18 +7.378715359364775850e-01,-4.100185615200336309e-01,1.064606850204803379e-17 +7.581123983958684143e-01,-4.224460289452530715e-01,1.057241413342070143e-17 +7.439502646059251711e-01,-4.254931680100039748e-01,9.702672089970023608e-18 +7.014638632360961079e-01,-4.346345852042568514e-01,7.093445959617990147e-18 +7.126748773669462356e-01,-4.194782163751296089e-01,8.781825508888754890e-18 +7.156259970260390180e-01,-4.315874461395058370e-01,7.963188003068667967e-18 +6.986892329282649028e-01,-4.137815024010985110e-01,8.605962065000239190e-18 +7.067726380487603377e-01,-3.952597568463771527e-01,1.041910052052892720e-17 +7.207582824874414484e-01,-4.009564708204083061e-01,1.059496396441744290e-17 +7.097237577078532311e-01,-4.073689866107533808e-01,9.600463014708841813e-18 +7.257140785975820796e-01,-3.790693485400928320e-01,1.253286132620405262e-17 +7.428273320466181051e-01,-3.881314392397181567e-01,1.258396586383464352e-17 +7.317928072670298878e-01,-3.945439550300632314e-01,1.158946491412604244e-17 +4.283616500851815667e-01,-5.134413510144235637e-01,-1.125137731184202730e-17 +4.150620077784357709e-01,-4.979508820395260327e-01,-1.062829992714099852e-17 +4.344424196839677954e-01,-4.815629508000679460e-01,-8.479493621112749662e-18 +4.314020348845748476e-01,-4.975021509072458659e-01,-9.865435466477393105e-18 +3.955633331592830482e-01,-5.141204077353003221e-01,-1.276523722827544050e-17 +4.018806281853103402e-01,-4.826788186083120769e-01,-1.001709154733376739e-17 +3.987219806722966386e-01,-4.983996131718061995e-01,-1.139116438780460394e-17 +4.081979232113376876e-01,-4.512372294813237206e-01,-7.268945866392088116e-18 +4.212610400908424757e-01,-4.662908873688539901e-01,-7.868285241305518527e-18 +4.050392756983240972e-01,-4.669580240448178987e-01,-8.643018706862924670e-18 +4.405231892827542461e-01,-4.496845505857124392e-01,-5.707609930383465859e-18 +4.374828044833609098e-01,-4.656237506928901926e-01,-7.093551775748109302e-18 +5.491495278637403832e-01,-3.833104864445407434e-01,4.337295785233877778e-18 +5.619318613489542313e-01,-3.993167379445205500e-01,3.650714566979326009e-18 +5.429920853719618634e-01,-4.148295115116986120e-01,1.590193282783624830e-18 +5.460708066178510123e-01,-3.990699989781196777e-01,2.963744534008750148e-18 +5.810144424468525193e-01,-3.840748154729010100e-01,5.696345038401774926e-18 +5.745713897132622705e-01,-4.150521383489418903e-01,2.979024161498029582e-18 +5.777929160800573394e-01,-3.995634769109214779e-01,4.337684599949901869e-18 +5.556316137362700136e-01,-4.305649119161200078e-01,9.185028773023268625e-19 +5.713498633464672016e-01,-4.305407997869623582e-01,1.620363723046158836e-18 +5.399133641260727146e-01,-4.305890240452775464e-01,2.166420315584979706e-19 +4.961890692183049123e-02,-5.096218361320427048e-01,-2.781797624869207695e-17 +6.243549776149345809e-02,-5.283913301570491994e-01,-2.871982846701507802e-17 +4.209645549610571691e-02,-5.235888990117734121e-01,-2.924878605150632956e-17 +7.114994142975120117e-02,-4.861988129494493327e-01,-2.502144352889139080e-17 +7.402328431553717447e-02,-5.009426181932735700e-01,-2.605024629749845026e-17 +6.043832273700702751e-02,-4.978926759976790573e-01,-2.641592500731241077e-17 +9.335286314394883322e-02,-4.899632593230920929e-01,-2.432804570647047565e-17 +1.014353389626864443e-01,-5.062210265145770105e-01,-2.524365541974070613e-17 +8.210576013427461906e-02,-5.172003853847586541e-01,-2.696585601076869307e-17 +8.772931163911176777e-02,-5.035818223539253458e-01,-2.564695085861958436e-17 +9.539736888596367370e-02,-5.349721145239042519e-01,-2.776827266870211614e-17 +7.896270683110084843e-02,-5.314703385449540685e-01,-2.822540530172025873e-17 +4.184662957961002849e-01,-3.880342535265121073e-01,-1.852937034877847903e-18 +4.322477549463920043e-01,-4.028756018531962080e-01,-2.403629774193094949e-18 +4.133321095037189030e-01,-4.196357415039179140e-01,-4.560941450634969550e-18 +4.158992026499095385e-01,-4.038349975152150106e-01,-3.206939242756407186e-18 +4.512873465629142489e-01,-3.859934247263323015e-01,-2.312237640452211491e-19 +4.459052679228343030e-01,-4.178389876560223426e-01,-2.969416847214342734e-18 +4.485963072428742482e-01,-4.019162061911774053e-01,-1.600320305629785793e-18 +4.269896224801612017e-01,-4.345991273067440486e-01,-5.126728523656217335e-18 +4.432142286027941358e-01,-4.337617691208673909e-01,-4.338513388798904297e-18 +4.107650163575283231e-01,-4.354364854926208173e-01,-5.914943658513527292e-18 +6.742978769755845203e-01,-4.339085035526235590e-01,5.940649786719964994e-18 +6.875202058314413556e-01,-4.229915478649085570e-01,7.385984789567523466e-18 +6.878808701058403141e-01,-4.342715443784401774e-01,6.517047873168977185e-18 +6.624075213299631670e-01,-4.205585559893704750e-01,6.458546344084341831e-18 +6.607148838453289486e-01,-4.335454627268070515e-01,5.364251700270952802e-18 +6.657927962992320481e-01,-3.945847425144973775e-01,8.647135631711120658e-18 +6.756298501858200023e-01,-4.096416003016554175e-01,7.903881346931900303e-18 +6.641001588145976076e-01,-4.075716492519338985e-01,7.552840987897730859e-18 +6.867988772826435495e-01,-4.004315548378452605e-01,9.123858622364617568e-18 +6.871595415570426191e-01,-4.117115513513769920e-01,8.254921705966069747e-18 +8.573669458252415332e-01,-5.345392787247105204e-01,6.197908669836341473e-18 +8.443003356026732575e-01,-5.267887649552025486e-01,6.224107484204498724e-18 +8.538793343708505068e-01,-5.082000078804417287e-01,8.109105638050531174e-18 +8.669459445934186714e-01,-5.159505216499497005e-01,8.082906823682373923e-18 +8.556231400980461865e-01,-5.213696433025761801e-01,7.153507153943436324e-18 +8.417209734346012828e-01,-5.439151834099569260e-01,4.765550065294913876e-18 +8.216547266119278436e-01,-5.376270082604553968e-01,4.365308144726624295e-18 +8.242340887799999294e-01,-5.205005898057009084e-01,5.823865563636209144e-18 +8.329775311073004396e-01,-5.322078866078289172e-01,5.294707814465561124e-18 +7.971682053572212157e-01,-5.156747532762057107e-01,4.997182908131474272e-18 +8.067472041253984649e-01,-4.970859962014447797e-01,6.882181061977505952e-18 +8.338130875481771787e-01,-5.019118327309400884e-01,7.708863717482240824e-18 +8.154906464526990861e-01,-5.087932930035727885e-01,6.353023312806857933e-18 +8.503917229164597025e-01,-4.818607370361728814e-01,1.002030260626471934e-17 +8.704579697391330306e-01,-4.881489121856745217e-01,1.042054452683300815e-17 +8.521355286436551602e-01,-4.950303724583072773e-01,9.064704122157624484e-18 +7.052426033150406282e-01,-3.795389586417552974e-01,1.158437606120731929e-17 +7.032148540648963664e-01,-3.591159725473277997e-01,1.309640823505328921e-17 +7.151858314779280246e-01,-3.683814619102648291e-01,1.290255752305221601e-17 +6.852688425489239510e-01,-3.847107566332234607e-01,1.028913416304300812e-17 +6.960207402988419778e-01,-3.899852567398002234e-01,1.035411734178596843e-17 +6.618576397578128656e-01,-3.767541592568755537e-01,9.870833724914867225e-18 +6.813336860075049906e-01,-3.668801733756017480e-01,1.151283225624675623e-17 +6.735632411533685193e-01,-3.807324579450495627e-01,1.007998394397893844e-17 +6.749934076583864462e-01,-3.469398050649800669e-01,1.279495290197585881e-17 +6.895612362574962129e-01,-3.520547754438553278e-01,1.304238435213245747e-17 +2.193667534541381969e-01,-3.937418616720842479e-01,-1.116709183099420599e-17 +2.384460986938161664e-01,-4.144947360060349806e-01,-1.194566015473421356e-17 +2.237764552230762927e-01,-4.347095220506747015e-01,-1.418493003623284659e-17 +2.046971099833982677e-01,-4.139566477167239689e-01,-1.340636171249283593e-17 +2.215716043386072587e-01,-4.142256918613794747e-01,-1.267601093361352629e-17 +2.552528659899904184e-01,-3.965800500174547216e-01,-9.791678981735201002e-18 +2.553883201080598964e-01,-4.329475102839261957e-01,-1.263893976997460067e-17 +2.553205930490251574e-01,-4.147637801506904864e-01,-1.121530937585490084e-17 +2.407186766373200226e-01,-4.531622963285659167e-01,-1.487820965147322754e-17 +2.554560471670945243e-01,-4.511312404171619050e-01,-1.406257016409429743e-17 +2.112439355777708805e-01,-4.572244081513738845e-01,-1.650948862623109084e-17 +2.259813061075455209e-01,-4.551933522399699283e-01,-1.569384913885215765e-17 +2.393075557601549996e-01,-3.811860885264731769e-01,-9.293990868088429489e-18 +2.578473945364098130e-01,-3.688219007813774430e-01,-7.498309241859499446e-18 +2.565501302632001157e-01,-3.827009753994160546e-01,-8.644994111797348683e-18 +2.064954673683388475e-01,-3.731807752944700241e-01,-1.012711181038376847e-17 +2.264362696743556502e-01,-3.606250021488589530e-01,-8.254010847477991974e-18 +2.229015115642468958e-01,-3.771834319104716005e-01,-9.710551339236097440e-18 +2.166390077325924257e-01,-3.348967908846118835e-01,-6.671738919903879212e-18 +2.433030478363363280e-01,-3.532363538898805611e-01,-6.923201791535884562e-18 +2.310805522382117505e-01,-3.430247868682720913e-01,-6.666325049122758224e-18 +2.583339016992268200e-01,-3.573666455087900484e-01,-6.577895542789267795e-18 +3.751219042632610856e-01,-5.301905922140655036e-01,-1.493636345766262275e-17 +3.548533746137629841e-01,-5.457629133266810317e-01,-1.706072907681998384e-17 +3.434777827328628907e-01,-5.302718808626445401e-01,-1.635192518135044324e-17 +3.592998434980619882e-01,-5.302312365383550219e-01,-1.564414431950653454e-17 +3.670373633971156790e-01,-5.616519044507193303e-01,-1.776475600000359257e-17 +3.337764480618121699e-01,-5.609372757792949749e-01,-1.918987166826327680e-17 +3.504057290720970497e-01,-5.613388270354163767e-01,-1.848083694282498549e-17 +3.224020227944318640e-01,-5.454020641279939685e-01,-1.847754964096419619e-17 +3.171477403124015049e-01,-5.605136926626088645e-01,-1.989715230473353595e-17 +3.276563052744235760e-01,-5.302904355933019120e-01,-1.705794697727958194e-17 +4.042050766085713565e-01,-3.728661098161334952e-01,-1.297969606485040073e-18 +4.230573185403869174e-01,-3.555533437945223585e-01,8.998761436188719116e-19 +4.373185377279156794e-01,-3.707214875049009706e-01,3.449087152260625407e-19 +4.207618071682435734e-01,-3.717937986605172607e-01,-4.765304456294879956e-19 +4.085036890003278520e-01,-3.404889935951964652e-01,1.433678521133202341e-18 +4.422019708247325598e-01,-3.381367842618585584e-01,3.118886944601255904e-18 +4.253412242417759503e-01,-3.391686202332348521e-01,2.287084839000402900e-18 +4.759336870171097522e-01,-3.361902816714559816e-01,4.773753618776209939e-18 +4.564743348015855573e-01,-3.534401635532156694e-01,2.553805599777415925e-18 +4.590678289217293706e-01,-3.371635329666118341e-01,3.946320281728293834e-18 +4.704431436365842378e-01,-3.687121007746470003e-01,1.977673120506130695e-18 +4.538808406822499864e-01,-3.697167941397739854e-01,1.161290917866096618e-18 +6.208063461948867268e-01,-5.377473924025035767e-01,-4.588367822522498408e-18 +6.058596832722265013e-01,-5.231291056646963922e-01,-4.107065043510666728e-18 +6.221120393780623647e-01,-5.215606031675311671e-01,-3.260250528285696862e-18 +6.028903441632585958e-01,-5.564160964336958282e-01,-6.850903940098145154e-18 +6.194996990831552752e-01,-5.539288943905984475e-01,-5.916112774214768025e-18 +5.878532320022620272e-01,-5.410197289049328839e-01,-6.312582948764885167e-18 +5.861695257838884787e-01,-5.579704723238705366e-01,-7.717471800459517343e-18 +5.895621025472224108e-01,-5.243085677663836819e-01,-4.925370452574920900e-18 +4.212432815614667869e-01,-5.457198554647271216e-01,-1.410085872016835890e-17 +4.082422782364967251e-01,-5.297840117781175140e-01,-1.342953936978527188e-17 +4.248024658233242046e-01,-5.295806032395753427e-01,-1.267611801600519927e-17 +4.008018514650254494e-01,-5.617902765846285451e-01,-1.627200356923834784e-17 +4.176840972955639386e-01,-5.618591076898302727e-01,-1.552559942450786285e-17 +3.878008493404747625e-01,-5.458541962568825845e-01,-1.560066559917245722e-17 +3.839196035145604480e-01,-5.617213271261481955e-01,-1.701839852269485673e-17 +3.916820912498789053e-01,-5.299873019960914533e-01,-1.418295141372394732e-17 +4.898870342479901829e-01,-3.517168455992809029e-01,4.176955274667351640e-18 +5.035215622141930858e-01,-3.674665830519059928e-01,3.548449597352020876e-18 +4.869823529253887173e-01,-3.680893419132764688e-01,2.763061358929075015e-18 +5.096497441240734894e-01,-3.344984168991147477e-01,6.407944762035041969e-18 +4.927917155688819051e-01,-3.353443492853815378e-01,5.590849190321945068e-18 +5.433744589983539042e-01,-3.332896508549626491e-01,8.004618831673799629e-18 +5.232871580127154143e-01,-3.504091872611362346e-01,5.766933393513020262e-18 +5.265090512992293137e-01,-3.337319824048928796e-01,7.218860083337545216e-18 +5.366028667142409558e-01,-3.663820982385613823e-01,5.106720382991218575e-18 +5.200622144642170763e-01,-3.669243406452337153e-01,4.327584990171620111e-18 +1.936554500470419327e-01,-4.418552778407882631e-01,-1.608692299875879191e-17 +1.759545014371292626e-01,-4.297143243068382024e-01,-1.592263965052654630e-17 +1.869961613734856531e-01,-4.018156941827739637e-01,-1.324207836426059649e-17 +1.903258057102638068e-01,-4.218354860117811134e-01,-1.466450068150969420e-17 +1.827262531898692366e-01,-4.665257311882170521e-01,-1.850920200578469764e-17 +1.969850943838200863e-01,-4.618750696697954128e-01,-1.750934531600789270e-17 +1.650253045799566221e-01,-4.543847776542669914e-01,-1.834491865755245203e-17 +1.684674119959184424e-01,-4.711763927066386359e-01,-1.950905869556149950e-17 +1.581410897480328426e-01,-4.208015475495238134e-01,-1.601663858153435710e-17 +1.615831971639947184e-01,-4.375931626018953469e-01,-1.718077861954340456e-17 +1.133909373622024597e-01,-5.223356407562527171e-01,-2.597555486275187920e-17 +1.270079727604776498e-01,-5.403995506401403359e-01,-2.678640325217669507e-17 +1.111521189830879941e-01,-5.379016985857154598e-01,-2.729652541234244047e-17 +1.297230688396821541e-01,-5.077498713463892699e-01,-2.410388811038800869e-17 +1.155792039011842576e-01,-5.069854489304831402e-01,-2.467377176506436049e-17 +1.433977571192418532e-01,-5.255286898313702437e-01,-2.488980158470873131e-17 +1.438957602188224161e-01,-5.083717480628420216e-01,-2.352153699815961643e-17 +1.428852188109397403e-01,-5.427685778749308243e-01,-2.626522119792358799e-17 +3.566086467386718750e-01,-3.621530947421190971e-01,-2.577031603356173958e-18 +3.713618738334444336e-01,-3.761464109673166578e-01,-3.017915014506656251e-18 +3.549398627420015107e-01,-3.777834397780046038e-01,-3.877661038298096426e-18 +3.750203362314296074e-01,-3.445177411990286154e-01,-3.734952990038391204e-19 +3.582774307327820651e-01,-3.465227497065651030e-01,-1.276402168554272760e-18 +3.897727439184433540e-01,-3.585048138944187945e-01,-8.139253497155840459e-19 +3.917628261763371755e-01,-3.425096116841502836e-01,5.296379308222286164e-19 +3.877834752210079228e-01,-3.745062603917250765e-01,-2.157942310495847391e-18 +5.564750108851813648e-01,-3.502186132339116242e-01,7.259815188470043031e-18 +5.690216720346809032e-01,-3.671470014398910964e-01,6.490390590712700694e-18 +5.528122693744609295e-01,-3.667645498392262393e-01,5.798555486851960019e-18 +5.769010457934498071e-01,-3.340557024022314803e-01,9.437530948502450917e-18 +5.601377070567367111e-01,-3.336743909587167600e-01,8.720938369314547619e-18 +6.104070275692754510e-01,-3.351051272634824052e-01,1.084729277131280542e-17 +5.894408386031926295e-01,-3.510785483795382245e-01,8.660389586072344012e-18 +5.936610017366015235e-01,-3.344842438767546278e-01,1.015026734339647816e-17 +6.014336090153642456e-01,-3.680063624125481381e-01,7.866344033761417475e-18 +5.852276405250224078e-01,-3.675766819262195617e-01,7.178367312237059084e-18 +2.963726788706254611e-01,-1.027105064413023905e-01,1.509569089226530496e-17 +2.804174671826864529e-01,-9.248677564879038970e-02,1.518729571292596820e-17 +2.983926516454006306e-01,-8.773598254750603065e-02,1.636050559648584977e-17 +2.923346051269054557e-01,-1.326600963046422332e-01,1.256610230975420807e-17 +2.817997932119858939e-01,-1.196353881555087539e-01,1.311884687649348847e-17 +2.943536419988077579e-01,-1.176853013728255959e-01,1.383089660102315174e-17 +2.726491768954334427e-01,-1.337598423321131047e-01,1.160318272560592669e-17 +2.566920956384268204e-01,-1.235355617205816520e-01,1.169474742746095084e-17 +2.658427119549793272e-01,-1.094111075439772873e-01,1.321041157834851108e-17 +2.692459444252063849e-01,-1.215854749380452238e-01,1.240679715197721888e-17 +2.444633613558855612e-01,-1.019872544700478056e-01,1.284079641531927744e-17 +2.624404142692859931e-01,-9.723701505941907686e-02,1.401404606412262513e-17 +2.454546061518874112e-01,-1.636273479429022903e-01,8.048823262214441542e-18 +2.616134892225160380e-01,-1.566076177690135796e-01,9.319163836491970796e-18 +2.660997795499907004e-01,-1.722180195405429992e-01,8.294198425190425336e-18 +2.499408964793620458e-01,-1.792377497144317378e-01,7.023857850912896083e-18 +2.557771928509390835e-01,-1.679226837417226725e-01,8.171510843702433439e-18 +2.570225105704274093e-01,-1.440822595448664478e-01,1.009742304309267272e-17 +2.772401555475220714e-01,-1.462852005562602087e-01,1.082492351900522630e-17 +2.671313330589747403e-01,-1.451837300505633144e-01,1.046117328104894951e-17 +2.823633509452332380e-01,-1.621132458192719172e-01,9.811245204168799664e-18 +2.873436753737865779e-01,-1.473851340550201561e-01,1.118855820688118637e-17 +2.704813815528514520e-01,-1.909134648594548456e-01,7.022526809188033263e-18 +2.766331077946301842e-01,-1.765889503003507111e-01,8.420339825775410166e-18 +2.308300561877189017e-01,-1.676202270071665279e-01,7.084288574448364628e-18 +2.291174208279486424e-01,-1.495591586591537847e-01,8.425043782557373536e-18 +2.437419707921171796e-01,-1.455662795948895472e-01,9.389578470323450450e-18 +2.372860134899180684e-01,-1.565932533010280514e-01,8.236933522385909080e-18 +2.131488606779217976e-01,-1.560608967376591327e-01,7.203818979794441980e-18 +2.287487956540365797e-01,-1.289892312968998478e-01,1.002248910566323708e-17 +2.209422077762692171e-01,-1.425212898807863282e-01,8.613155330429370947e-18 +2.434115558601165075e-01,-1.250195817706047097e-01,1.098690285469172857e-17 +2.365742643363355768e-01,-1.154691782801302857e-01,1.143172176124484433e-17 +2.502170332152720555e-01,-1.345509206577356065e-01,1.054216294889220142e-17 +8.491562906075583728e-02,-4.754431415373199243e-01,-2.356456546478405903e-17 +9.721036357922219207e-02,-4.668858222798331070e-01,-2.234566903933683347e-17 +9.528161336158558203e-02,-4.784245408014625167e-01,-2.333685737290364532e-17 +7.794934809010112264e-02,-4.587246715969052757e-01,-2.256310358443753618e-17 +7.454964475992609252e-02,-4.724617422731772765e-01,-2.379227355666446657e-17 +8.474875475045098860e-02,-4.312505302443612742e-01,-2.010476363998369389e-17 +9.024408260856744968e-02,-4.501673523394185139e-01,-2.134420715899031679e-17 +8.134905142027609726e-02,-4.449876009206332750e-01,-2.133393361221061812e-17 +1.010678640144955232e-01,-4.438083852365741766e-01,-2.036329237220320977e-17 +9.913911379685888536e-02,-4.553471037582036973e-01,-2.135448070577002162e-17 +1.182354635509204055e-01,-4.308563997877965512e-01,-1.858260262859676555e-17 +1.185465065251564420e-01,-4.135181302689712179e-01,-1.720843731138041882e-17 +1.354030630873453156e-01,-4.179044143390188149e-01,-1.680191288499032441e-17 +1.268192633191328744e-01,-4.243804070634077386e-01,-1.769225775679354652e-17 +1.014543750967009939e-01,-4.295256819166355378e-01,-1.922549777452243672e-17 +1.096516637827079366e-01,-4.373323925121853639e-01,-1.947294750039998458e-17 +8.505979772468699740e-02,-4.139122607255358299e-01,-1.873059832276734100e-17 +1.017654180709370304e-01,-4.121874123978102045e-01,-1.785133245730608999e-17 +9.325708641069399563e-02,-4.217189713210857116e-01,-1.897804804864489502e-17 +1.020009929372037716e-01,-3.917935766800980657e-01,-1.624079642055415418e-17 +1.187820813914232110e-01,-3.931242945512591347e-01,-1.559790127462847993e-17 +1.102737497311801484e-01,-4.026558534745346973e-01,-1.672461686596728496e-17 +8.414695228844852881e-01,-6.170588976972430917e-01,-9.843061805954481233e-19 +8.364847382199128711e-01,-5.912470795427289261e-01,8.188357752571241766e-19 +8.508875567712277377e-01,-5.896301500229189640e-01,1.587085669222210472e-18 +8.470639252615409509e-01,-6.036058876307410781e-01,3.203120560544314438e-19 +8.214877415785667436e-01,-5.878208832056408539e-01,4.197958477024615418e-19 +8.170971350040258097e-01,-5.670521909080248335e-01,1.853727837144610181e-18 +8.320941316453719372e-01,-5.704783872451129056e-01,2.252767764699274357e-18 +8.267909366119692294e-01,-5.791496352253768798e-01,1.336281806200867179e-18 +8.282977031608624863e-01,-5.547528208043950304e-01,3.317489787731003959e-18 +8.384468663786358578e-01,-5.531330472150916000e-01,3.896537962945385170e-18 +8.422432948631450866e-01,-5.688586136558094752e-01,2.831815939913657879e-18 +8.352704990120038975e-01,-5.618057172301021973e-01,3.074652863822330919e-18 +8.475446246573450360e-01,-5.621928701401145423e-01,3.590872362787759207e-18 +8.506045797128458652e-01,-5.755831572624228176e-01,2.676573236558124136e-18 +1.882900174538338633e-01,-2.900889407607418202e-01,-4.418680242362725041e-18 +1.944753321690812498e-01,-3.152918067830027815e-01,-6.120583147683215733e-18 +1.784969713208174880e-01,-3.208896887036545853e-01,-7.271330280783039865e-18 +1.833934943873256063e-01,-3.054893147321981473e-01,-5.845005261572882453e-18 +2.105705244277574217e-01,-3.071995127067025377e-01,-4.768928397230201150e-18 +2.005438154739162815e-01,-3.429890849609121828e-01,-8.023393670356893795e-18 +2.055571699508368932e-01,-3.250942988338073603e-01,-6.396161033793545932e-18 +1.905171065200751412e-01,-3.787786572151218278e-01,-1.127785894348359260e-17 +1.845654546256525197e-01,-3.485869668815639311e-01,-9.174140803456717927e-18 +1.955304609969956142e-01,-3.608838710880168943e-01,-9.650626306920241658e-18 +1.687039251878011403e-01,-3.516904366465672949e-01,-1.012398031920335469e-17 +1.736004482543093697e-01,-3.362900626751109123e-01,-8.697655299993194195e-18 +8.091493889548588836e-01,-6.142812828700801031e-01,-2.205670402189649714e-18 +8.153273212058738117e-01,-6.004516083151512085e-01,-8.455141853209556327e-19 +8.252659404605027227e-01,-6.178943263400080710e-01,-1.771433696029709617e-18 +7.837187188892958956e-01,-5.926707561654880330e-01,-1.642651792114787524e-18 +7.934197089193023578e-01,-6.077785640757086272e-01,-2.395962716285836241e-18 +7.672403871976463119e-01,-5.607972593449507270e-01,1.242395786199821399e-19 +7.905842759769274863e-01,-5.816977288643871979e-01,-4.759989322491450314e-19 +7.754909927321217422e-01,-5.767281089229455704e-01,-7.582338651610993040e-19 +7.967446963496204182e-01,-5.690670037548767324e-01,7.893111007742706023e-19 +8.060360087777471705e-01,-5.847593060350140259e-01,-2.810154227334174482e-20 +1.402220581430226876e-01,-3.954444025665654339e-01,-1.482516021769292582e-17 +1.629600848037102145e-01,-3.983415357770703213e-01,-1.403988591423695850e-17 +1.491815739455278067e-01,-4.081229750580446236e-01,-1.542089939961364146e-17 +1.437430032896121479e-01,-3.724073655989131870e-01,-1.286094079691591885e-17 +1.312625423405176794e-01,-3.827658300750862441e-01,-1.422942103577220401e-17 +1.664810299502996194e-01,-3.753044988094181855e-01,-1.207566649345995770e-17 +1.562234642387066441e-01,-3.620489011227402409e-01,-1.149246055805963677e-17 +1.767385956618927056e-01,-3.885600964960961301e-01,-1.265887242886027555e-17 +8.548843969145336619e-01,-5.444653939574618517e-01,5.308578938149171847e-18 +8.516102898585681258e-01,-5.536832577625966367e-01,4.439566835799644682e-18 +8.466656316465847043e-01,-5.487992205862767259e-01,4.602558450547278893e-18 +8.745496894669433363e-01,-5.405112502753560699e-01,6.494550178054746178e-18 +8.720671405562354650e-01,-5.504373655081074013e-01,5.605220446367576551e-18 +8.647170431907386101e-01,-5.424883221164089608e-01,5.901564558101959783e-18 +8.932692043597065812e-01,-5.618310980618934636e-01,5.655474589950127219e-18 +8.655652714837582806e-01,-5.549417197377182198e-01,4.962278079316260192e-18 +8.792528030878574707e-01,-5.588126911206530156e-01,5.268108727408832198e-18 +8.530391590881786223e-01,-5.546871756828534172e-01,4.424432909373730388e-18 +8.975262189638872901e-01,-5.058119873225195295e-01,1.024015741212885808e-17 +8.808446260566544783e-01,-5.114907165945166145e-01,9.051750705672203620e-18 +8.840781273816483710e-01,-4.968243951641376221e-01,1.034642583648848792e-17 +9.050328074437135051e-01,-5.305483408649162014e-01,8.633695115963827143e-18 +9.109220256401497906e-01,-5.148944229018109775e-01,1.012411946403916746e-17 +8.884483709301789212e-01,-5.360514452199229840e-01,7.463394060044577415e-18 +8.991510059017103762e-01,-5.461897194634051100e-01,7.144584852956976796e-18 +8.776971577617989073e-01,-5.260009834349362867e-01,7.773150441863476440e-18 +2.141593324398365916e-01,-1.758683796076471739e-01,5.694775870409811712e-18 +1.975904232094370383e-01,-1.851687695967588476e-01,4.227241488166748893e-18 +2.053595683953475248e-01,-1.706094330954742722e-01,5.715505311241295335e-18 +2.317387134321507447e-01,-1.863754724885234026e-01,5.653267143268242723e-18 +2.150679896842683791e-01,-1.946236250890040487e-01,4.263754439229687496e-18 +2.229490229359936682e-01,-1.811219260480853022e-01,5.674021506839026062e-18 +2.158748324112174655e-01,-2.123266331817299235e-01,2.910754686254073182e-18 +1.982308032142668097e-01,-1.971560255621186419e-01,3.315271274108073989e-18 +2.070528178127421515e-01,-2.047413293719242966e-01,3.113012980181071660e-18 +1.895436890274169173e-01,-1.963878236415191880e-01,2.988685555858168615e-18 +5.560246570740404182e-02,-3.920528103782056073e-01,-1.832736616491840849e-17 +7.910781921818693663e-02,-3.911887944853571497e-01,-1.721283145133717125e-17 +7.033113171604554736e-02,-4.029825355518706909e-01,-1.852898224384287166e-17 +5.026266699267001314e-02,-3.678605460504374425e-01,-1.666709961069002473e-17 +4.072908504062561219e-02,-3.810319895089138709e-01,-1.812504743317312075e-17 +7.446400901217437029e-02,-3.675307076063286660e-01,-1.556348108272754468e-17 +6.056828057906565865e-02,-3.552963400030852981e-01,-1.522241368973108906e-17 +8.823250097468907094e-02,-3.796621421432133658e-01,-1.590213875164084635e-17 +2.569161227808640091e-01,-2.210975752004213923e-01,4.050271365465095865e-18 +2.530454059219554019e-01,-1.994621708494665469e-01,5.575355105973790617e-18 +2.636987521663629597e-01,-2.060055200311594614e-01,5.536399087208709977e-18 +2.417224828816589288e-01,-2.505150579044790327e-01,1.065647978043880560e-18 +2.381711460245801715e-01,-2.279797554288768013e-01,2.675558009921017050e-18 +2.496905024444036059e-01,-2.359867483616416295e-01,2.560333833749347374e-18 +2.192027555610534528e-01,-2.337064949870484021e-01,1.381548297845952975e-18 +2.348432228747440453e-01,-2.065998936235582395e-01,4.204764398329138027e-18 +2.270229892178987630e-01,-2.201531943053033347e-01,2.793156348087544346e-18 +2.423920596770531011e-01,-1.929188216689950164e-01,5.614311124621016670e-18 +7.827921869032873348e-01,-4.388989905108893197e-01,1.038060572869837044e-17 +8.042389203149804544e-01,-4.518314942791034072e-01,1.032102772116013503e-17 +7.919941682720301745e-01,-4.688096530627496317e-01,8.443680766080537193e-18 +7.873931775876588102e-01,-4.538543217868195589e-01,9.412143247389454586e-18 +8.168666975688750886e-01,-4.374903239366270680e-01,1.200854064966765055e-17 +8.253026285157293307e-01,-4.621270096061476651e-01,1.045128374019398347e-17 +8.154760295528350467e-01,-4.514418389619511141e-01,1.085201282157924795e-17 +8.186089309574043904e-01,-4.774708489766287256e-01,8.949362043629186103e-18 +8.378761641147414174e-01,-4.719371772877018478e-01,1.024153230984140806e-17 +7.993706861987142087e-01,-4.829478246320971779e-01,7.662930914029021572e-18 +2.250245169921205601e-01,-2.796351859061275702e-01,-1.962636787312942888e-18 +2.223305365970201786e-01,-2.565034392179322276e-01,-2.677513357303545737e-19 +2.335285524257629253e-01,-2.651690187585046821e-01,-4.489564618282196222e-19 +2.068143624567399530e-01,-2.847701643619114931e-01,-3.176452564601045276e-18 +2.164638638244137936e-01,-2.935692936158398880e-01,-3.437094479306101899e-18 +2.033723909532478280e-01,-2.621570180740740441e-01,-1.555564831498313564e-18 +1.958312042035408596e-01,-2.761229794174079322e-01,-2.987122536930516221e-18 +2.112875732571506682e-01,-2.479317565305612647e-01,-8.700826682618183519e-20 +7.944659129505894368e-01,-4.213164230652851061e-01,1.227994388328836855e-17 +8.085108308886966855e-01,-4.043860065380472935e-01,1.423371055329947977e-17 +8.143848191797147251e-01,-4.207038557051801519e-01,1.321503804423541466e-17 +7.697861244431705163e-01,-4.048634614996488024e-01,1.247175228801069954e-17 +7.762891556732288700e-01,-4.218812260052690610e-01,1.142617900835453576e-17 +7.785862371782458213e-01,-3.906739338713370313e-01,1.397691321217082397e-17 +7.604405404208257613e-01,-3.902024727683907068e-01,1.320583401463504287e-17 +7.974436684559215172e-01,-3.914477469710661572e-01,1.475596582929043727e-17 +6.216505844116820834e-01,-3.536543857505732857e-01,9.892668890996558533e-18 +6.317495891520058526e-01,-3.719060924165417670e-01,8.910420640070527504e-18 +6.165915990836851046e-01,-3.699562274145449803e-01,8.388382336915972490e-18 +6.430121119100827842e-01,-3.395999609097208882e-01,1.194661811884148681e-17 +6.267090376124705431e-01,-3.373562812561943791e-01,1.139663854000477313e-17 +6.529031871195719594e-01,-3.588000044120295828e-01,1.088070634645068547e-17 +6.591135574104475259e-01,-3.428245386558688157e-01,1.241066009371318963e-17 +6.468036144549093036e-01,-3.743301258367086604e-01,9.390627182492697364e-18 +7.888472728263685729e-01,-5.553618188545179635e-01,1.512892886380105944e-18 +8.091997114807739644e-01,-5.533470060076659536e-01,2.577309622750447064e-18 +8.029722039151973023e-01,-5.612070048812713985e-01,1.683310361762359603e-18 +7.822042962774338193e-01,-5.382360063105782189e-01,2.560711243375728591e-18 +7.747223417375400656e-01,-5.495166328277644174e-01,1.342475410997855366e-18 +8.025567349318392107e-01,-5.362211934637263200e-01,3.625127979746068170e-18 +7.896862508173274620e-01,-5.269553797933919093e-01,3.778947075753600276e-18 +8.154272190463508485e-01,-5.454870071340606197e-01,3.471308883738537605e-18 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_quad9/uvs.csv b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/uvs.csv new file mode 100644 index 000000000..5c4b9d417 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_quad9/uvs.csv @@ -0,0 +1,1177 @@ +2.800756973814296780e-01,7.553249802295276816e-02 +2.646435687381639701e-01,8.260225786235811385e-02 +2.528944971680679443e-01,9.407126329134959941e-02 +2.512354820244227516e-01,1.101688860261011566e-01 +2.582701159797566870e-01,1.256104092386593762e-01 +2.679679325662472911e-01,1.396114756444606086e-01 +2.790581367150045677e-01,1.525438720559327277e-01 +2.915201998563630159e-01,1.639100362541627831e-01 +3.070570497705326640e-01,1.708632849992226810e-01 +3.112437546400522170e-01,1.805926877434649858e-01 +3.025569714158664603e-01,1.950944204002706128e-01 +2.951459112631958925e-01,2.104358138231893771e-01 +2.901455193597029525e-01,2.267353713515712355e-01 +2.851008430455863607e-01,2.430214990719518353e-01 +2.800561667303066993e-01,2.593076267960870429e-01 +2.758467664977719003e-01,2.757962245705191107e-01 +2.728054186257590774e-01,2.925720120712831940e-01 +2.697753751208561424e-01,3.092317616763794463e-01 +2.769407330275358570e-01,3.086121704517370556e-01 +2.889705751382302679e-01,2.965623135362068785e-01 +2.996274380037550755e-01,2.832611452111113426e-01 +3.102104586175479795e-01,2.698941413050676141e-01 +3.200834874761675497e-01,2.559979463205262484e-01 +3.283731782701688195e-01,2.411023858609502579e-01 +3.362289678920443170e-01,2.259704024330694283e-01 +3.444962714573521767e-01,2.275149339293322526e-01 +3.522268622939578320e-01,2.425994367118117501e-01 +3.607013335688495359e-01,2.573940611274246892e-01 +3.692522478667537578e-01,2.721422127646224709e-01 +3.804672842623971762e-01,2.849762863823526726e-01 +3.917410152873148643e-01,2.977662472783256797e-01 +4.039381575838251193e-01,3.095645450902209661e-01 +4.173483127119970160e-01,3.178550381439924077e-01 +4.141567569666614324e-01,3.011359818374163000e-01 +4.106426965592131495e-01,2.844461971285168755e-01 +4.059073896751467236e-01,2.680674588027240901e-01 +4.011758230320240370e-01,2.516876205145690548e-01 +3.964549123556868060e-01,2.353048717919975219e-01 +3.904598158457774915e-01,2.193575384344078893e-01 +3.840584027142635026e-01,2.035553323828761529e-01 +3.765710819852554625e-01,1.882643621602629325e-01 +3.680026723284598456e-01,1.735325532637967405e-01 +3.609306861082003381e-01,1.598382510764158049e-01 +3.727291728663752468e-01,1.480814406403882511e-01 +3.878747677463679766e-01,1.462786441129566295e-01 +4.047062130479618380e-01,1.489832750959552143e-01 +4.216146207974988402e-01,1.511723937793667816e-01 +4.385229589115199333e-01,1.533620377503344956e-01 +4.554296577266767621e-01,1.555641724638066048e-01 +4.724300163629637783e-01,1.567925360684381264e-01 +4.894526711519093243e-01,1.577503487392961368e-01 +5.064751284013152555e-01,1.587081502952090717e-01 +5.235033591979266765e-01,1.593437910433653237e-01 +5.405486237524470550e-01,1.589603651302944343e-01 +5.575801475760060466e-01,1.583879679564805798e-01 +5.744599427972040262e-01,1.559910684981120899e-01 +5.909237563047184949e-01,1.516969359687765362e-01 +6.062415568581761560e-01,1.445518529767129967e-01 +6.177434177010394656e-01,1.322204351226214381e-01 +6.341909131471057393e-01,1.292517925953003133e-01 +6.508228389757279020e-01,1.255367495439886072e-01 +6.641243327123624862e-01,1.155356757379281257e-01 +6.671175526565544800e-01,9.930480683369066752e-02 +6.711451930724086079e-01,8.830171396271119244e-02 +6.862782168746284217e-01,8.056822395894323863e-02 +7.012081993073651098e-01,7.234372350867868118e-02 +7.159438116427727650e-01,6.376786962803816794e-02 +7.297953831877090902e-01,5.383338476808235962e-02 +7.417150215708054883e-01,4.167390348683060880e-02 +7.500000000000000000e-01,2.748610821042144978e-02 +7.345963716630334872e-01,2.353029674928958440e-02 +7.178069965943494335e-01,2.649099994696395982e-02 +7.014901918654128377e-01,3.143227899766244671e-02 +6.856238871740114593e-01,3.758966416346638112e-02 +6.762150104852699961e-01,3.431724980622868210e-02 +6.803116011318406375e-01,1.807083465369591774e-02 +6.758983719949313018e-01,1.830109317789756435e-03 +6.597247803149890455e-01,2.619674811679926184e-03 +6.449396374879969862e-01,1.102006010640460033e-02 +6.342866098167123656e-01,2.423657524928976917e-02 +6.263976862829301329e-01,3.934893062629221672e-02 +6.163522582858937948e-01,4.885206430617768797e-02 +6.005341925196601149e-01,4.241550257155855125e-02 +5.844274350167840693e-01,3.699516369926025838e-02 +5.676283643890820407e-01,3.408739787245553682e-02 +5.508341273963723861e-01,3.114791022014428215e-02 +5.338589385734273662e-01,2.976504311858835239e-02 +5.168342278134754331e-01,2.884645576411364043e-02 +4.997871807056415427e-01,2.858897345690915304e-02 +4.827386405353292220e-01,2.840395120098518356e-02 +4.656902794662181044e-01,2.857529217292126972e-02 +4.486419778239633116e-01,2.878030354757625531e-02 +4.315936785832554246e-01,2.898578834409165986e-02 +4.145539983225952074e-01,2.954224608110906508e-02 +3.975166519771283213e-01,3.018708825276457744e-02 +3.804832942495385284e-01,3.090451272342883624e-02 +3.634804018159043526e-01,3.216441661261124768e-02 +3.464978274407411463e-01,3.363300633069189749e-02 +3.296426104359562181e-01,3.619881716188083631e-02 +3.128863436593021241e-01,3.931791990928266284e-02 +2.962454166530947286e-01,4.300737362221415672e-02 +2.795892282492880021e-01,4.619291210912516987e-02 +2.632017878210101136e-01,5.095127230928863521e-02 +2.667688573292351650e-01,6.496794194292652980e-02 +2.724078911709783002e-01,7.904526995844646242e-02 +2.573563811990881578e-01,8.684814440821769788e-02 +2.500000000000000000e-01,1.017408441852133139e-01 +2.543440141630524121e-01,1.180404023883772219e-01 +2.629742669332308935e-01,1.327020650046318861e-01 +2.733857606433531262e-01,1.461806372752732230e-01 +2.847175681864235752e-01,1.589173205306945169e-01 +2.991005288756053981e-01,1.678109785830952105e-01 +3.150344914376490557e-01,1.739556117099510524e-01 +3.063558569475203219e-01,1.875026331671856838e-01 +2.987265848297280257e-01,2.027100925349989147e-01 +2.926679010258677605e-01,2.185921670274896533e-01 +2.876231812028751111e-01,2.348784352110174500e-01 +2.825785048879024264e-01,2.511645629341617836e-01 +2.774960310362585836e-01,2.674387457589510464e-01 +2.743261294926518934e-01,2.841841249056017982e-01 +2.712949261437521686e-01,3.009035370044688129e-01 +2.706439929397421729e-01,3.144666267464604203e-01 +2.832401974340119089e-01,3.028700923687450142e-01 +2.944369350195224500e-01,2.900233696513868642e-01 +3.049041179382041555e-01,2.765659122084761501e-01 +3.152122532803987021e-01,2.629914160344848373e-01 +3.242872047654793977e-01,2.485834296786463005e-01 +3.322978091838120207e-01,2.335347043732376449e-01 +3.404975598733783193e-01,2.199235556798521951e-01 +3.483514903562660026e-01,2.350625869849850003e-01 +3.564574755890991264e-01,2.500005241692420110e-01 +3.649449671660167649e-01,2.647872071722144338e-01 +3.748302980774352311e-01,2.785811690323420353e-01 +3.861041497753529561e-01,2.913712668309029197e-01 +3.973492667981554649e-01,3.042047650453272856e-01 +4.109523893296918029e-01,3.143965325364034835e-01 +4.156417260215941045e-01,3.095166208819505882e-01 +4.126737487036745700e-01,2.927303456043880980e-01 +4.082731741154193017e-01,2.762573818195797615e-01 +4.035416063536277353e-01,2.598775396587933439e-01 +3.988100634676240430e-01,2.434977836135396589e-01 +3.936681678016929475e-01,2.272555878565024889e-01 +3.872591092795255596e-01,2.114564354074203734e-01 +3.806860514432146569e-01,1.957293622464526817e-01 +3.724419753763684726e-01,1.808045331652196053e-01 +3.631326289887165659e-01,1.665334130467591989e-01 +3.679397811802895268e-01,1.550019386379465069e-01 +3.794909740741179149e-01,1.447555081584369630e-01 +3.962783212688496537e-01,1.477111330292178448e-01 +4.131604492044502752e-01,1.500775714654639381e-01 +4.300687898519484076e-01,1.522672157645190150e-01 +4.469771221195054101e-01,1.544568589783646972e-01 +4.639182279511302465e-01,1.563226655115184383e-01 +4.809413437582449324e-01,1.572714424039126924e-01 +4.979638997749021301e-01,1.582292495171564173e-01 +5.149861926380030486e-01,1.591880699363263652e-01 +5.320259461226495290e-01,1.591503632510916921e-01 +5.490713527737145494e-01,1.587703658638145998e-01 +5.660195129024527816e-01,1.571857799554758628e-01 +5.828026798554375443e-01,1.542894779132224781e-01 +5.990398967943658670e-01,1.490977948416883359e-01 +6.127140651832052587e-01,1.390975524415453690e-01 +6.257008427073376122e-01,1.299360917599547138e-01 +6.425076200962220874e-01,1.274024498571027508e-01 +6.583127861757989141e-01,1.215854151740778794e-01 +6.673174978638912735e-01,1.076546199243987589e-01 +6.635210851843069690e-01,9.216960652555430955e-02 +6.787407019219021675e-01,8.449168171601506572e-02 +6.938292664954152089e-01,7.661207434996432364e-02 +7.085834243169435442e-01,6.806833963129149678e-02 +7.229049683246131508e-01,5.885202527487115587e-02 +7.359252243340612676e-01,4.792689749511075403e-02 +7.471096838537394369e-01,3.506584798970781292e-02 +7.428855421463012032e-01,2.352986222628772675e-02 +7.261984330462200043e-01,2.499554912187382238e-02 +7.096492708473138844e-01,2.896211788649142443e-02 +6.933925561880032173e-01,3.408456363353298824e-02 +6.774026229127854126e-01,3.983472062968698019e-02 +6.796522043231947308e-01,2.652249189228593484e-02 +6.789906331295476605e-01,9.689031129368067333e-03 +6.677680478614937964e-01,0.000000000000000000e+00 +6.521851059022957253e-01,6.581764310044373352e-03 +6.391494038779088616e-01,1.727372563611131659e-02 +6.303535911124533708e-01,3.179865350984561329e-02 +6.224481112458057908e-01,4.688859713533023721e-02 +6.084454970491833814e-01,4.563051115435871885e-02 +5.926505720145910372e-01,3.917212667904636236e-02 +5.760261946130403876e-01,3.555181060829382816e-02 +5.592302916828231218e-01,3.262294285257946042e-02 +5.423717047333649344e-01,3.021682372741964218e-02 +5.253464373499063811e-01,2.930808805929766697e-02 +5.083114797569514565e-01,2.867931113785351580e-02 +4.912628958530594336e-01,2.849784718729026986e-02 +4.742144273799158150e-01,2.847278652055659776e-02 +4.571661286410438896e-01,2.867779786029743191e-02 +4.401178242859441481e-01,2.888280926757511372e-02 +4.230726614485191828e-01,2.921976724510882278e-02 +4.060353251478225900e-01,2.986466716701405982e-02 +3.889979723903411180e-01,3.050950958135616523e-02 +3.719821045972987461e-01,3.153783718530028118e-02 +3.549783113334755713e-01,3.278656027535486323e-02 +3.380710374298828147e-01,3.492133083423427931e-02 +3.212499375519439759e-01,3.767539779666558702e-02 +3.045153134064832456e-01,4.094671709529253134e-02 +2.879636096063097894e-01,4.481158900598828515e-02 +2.712679904080632642e-01,4.816753145707826367e-02 +2.610520346209379006e-01,5.869703651061806277e-02 +2.734761918132013747e-01,7.026787373120606250e-02 +3.814845888493318959e-01,2.505875501318585719e-01 +3.699132726335994104e-01,2.310366971739413466e-01 +5.698824626326335352e-01,6.555684279451208518e-02 +6.023964795706926445e-01,6.729754113958730244e-02 +5.054380727357389302e-01,6.210493720345377361e-02 +5.377262219109901764e-01,6.333259428059882790e-02 +5.107133584171725804e-01,9.444233133190681195e-02 +5.420162821691384414e-01,9.476150079274715810e-02 +5.777841141867912089e-01,1.218737884357322665e-01 +5.486040824334716959e-01,1.254770290324137560e-01 +3.871998076143063905e-01,6.113091657617330393e-02 +4.088357846670421791e-01,5.997699101382587134e-02 +3.386436077996261007e-01,1.769538695545066487e-01 +3.573329105358688529e-01,7.826245364606028432e-02 +3.289193134913067640e-01,7.218751619337648862e-02 +3.540447127751886747e-01,2.050778825363391289e-01 +4.511297775172449231e-01,1.231775070496685665e-01 +4.185970574816654799e-01,1.202705720163702724e-01 +3.846785906310130065e-01,8.462654197340455098e-02 +2.883484963852479543e-01,1.052137430313948158e-01 +3.052946881745145502e-01,1.273389506839956997e-01 +4.724885942221132007e-01,6.113563666941483621e-02 +4.784528596681656420e-01,9.324190894686941455e-02 +4.396806038755537438e-01,6.045637966992840201e-02 +6.015718392776887580e-01,9.516601853572022318e-02 +5.723439334237272469e-01,9.418490068130634663e-02 +5.987963906301176920e-01,1.160252516740462869e-01 +3.289645392081596564e-01,1.486391851957575005e-01 +4.151374745242939479e-01,8.970127507402404776e-02 +3.866808507038271836e-01,1.187039498916568070e-01 +4.461180596960495626e-01,9.168877210958559232e-02 +3.507841540436971162e-01,1.215429753223521703e-01 +3.219205720045342223e-01,1.025515223345413174e-01 +5.167297697241146626e-01,1.262415834892992028e-01 +4.839605084097593490e-01,1.252189377647430768e-01 +6.426208257221359688e-01,6.533847430908604204e-02 +3.022851675475533573e-01,7.176694137668808426e-02 +3.046724187501926862e-01,9.265218426943615249e-02 +6.559106973324553280e-01,3.107674716692906264e-02 +6.330329921741962851e-01,9.789572479224525892e-02 +6.827651559045246898e-01,5.275841478539613355e-02 +6.671145689456148276e-01,4.337974480367728231e-02 +5.080757155764556998e-01,7.827363426768028931e-02 +5.263648202931554554e-01,9.460191606232698502e-02 +5.398712520400643644e-01,7.904704753667296524e-02 +5.215821473233646088e-01,6.271876574202629728e-02 +5.239734838082601431e-01,7.866034090217662034e-02 +3.206002896077463360e-01,1.860241449773886169e-01 +3.193929696539554164e-01,2.105324114166700067e-01 +3.451368403336164681e-01,2.155241424847043064e-01 +3.463441602874073322e-01,1.910158760454229165e-01 +3.328685649706813465e-01,2.007741437310464894e-01 +3.604066561758866305e-01,5.521343512933571396e-02 +3.710057505834409297e-01,8.144449780973242459e-02 +3.859391991226597263e-01,7.287872927478893093e-02 +3.753401047151053715e-01,4.664766659439227581e-02 +3.731729276492731784e-01,6.404608220206231550e-02 +4.031762183220852780e-01,4.508203963329517061e-02 +3.980177961406743403e-01,6.055395379499961539e-02 +3.892505451951063788e-01,4.572923325921422755e-02 +2.733093061825022652e-01,1.154120761350270891e-01 +2.842120968833388162e-01,9.037312052717379196e-02 +2.668030251855884050e-01,9.917119187924090806e-02 +5.026126267206902920e-01,4.534695533018145985e-02 +4.690894368441655971e-01,4.485546442116805643e-02 +4.889633334789260100e-01,6.162028693643432919e-02 +4.858509870071276437e-01,4.501211906870972862e-02 +3.899474722129834259e-01,2.782942049465696455e-01 +3.970087674066139494e-01,2.939330852994154197e-01 +3.856797206674200673e-01,1.016652459325306790e-01 +4.026389540927463040e-01,1.194872609540135466e-01 +4.168672660029796861e-01,1.049859235451971601e-01 +3.999080325776534495e-01,8.716390852371429243e-02 +4.012734933351999045e-01,1.033255847388639542e-01 +4.428993317858016532e-01,7.607257588975699369e-02 +4.242581942712979615e-01,6.021668534187713667e-02 +4.119866295956680080e-01,7.483913304392493526e-02 +4.306277671101716997e-01,9.069502359180482698e-02 +4.274429806907348306e-01,7.545585446684099917e-02 +7.087170017540929123e-01,4.760007431285027957e-02 +7.297233415825695735e-01,3.760419640370381983e-02 +3.989629143591638671e-01,7.385893115935690534e-02 +3.051145034179352789e-01,2.413666588360487142e-01 +3.117595447666823838e-01,2.257690998420697759e-01 +2.898418023670308874e-01,2.712843860035991650e-01 +2.798598204651054355e-01,2.904991042607976137e-01 +2.976556508315671423e-01,2.564578201885097108e-01 +3.171296136913371311e-01,1.379890679398766140e-01 +2.921764124447595590e-01,1.399414113699641860e-01 +3.180107944893461602e-01,1.597512350974900630e-01 +3.043249067738501012e-01,1.509495520970196847e-01 +3.338040735038929063e-01,1.627965273751320885e-01 +3.225239140719725617e-01,1.716946075592985232e-01 +3.872778092250975801e-01,1.324912970023066905e-01 +4.201058391395822156e-01,1.357214828978685062e-01 +4.036725835703540710e-01,1.342352680249843389e-01 +5.631940983101313414e-01,1.236754087340730252e-01 +5.750640238052592279e-01,1.080293445585192719e-01 +5.571801077964327886e-01,9.447320073702676624e-02 +5.453101823013050131e-01,1.101192649125804640e-01 +5.601871030532821205e-01,1.090743047355498957e-01 +3.431261120135877807e-01,7.522498491971836565e-02 +3.292809619636314911e-01,5.419316667762862083e-02 +3.448119697271644912e-01,5.442899562520510381e-02 +5.357925802422088823e-01,4.654881869959353463e-02 +5.192081875684200210e-01,4.578261075306991335e-02 +4.486239186066471873e-01,1.074331395796270655e-01 +4.348634174994552293e-01,1.217240395330194402e-01 +4.327455923048134645e-01,1.062095315624121128e-01 +6.014653360451763797e-01,5.485652185557293031e-02 +5.687554135108577880e-01,4.982212033348381447e-02 +5.861394711016630898e-01,6.642719196704967299e-02 +5.852834530592235796e-01,5.171117783315493099e-02 +3.034787931488730495e-01,8.220956282306214613e-02 +3.132964953773634820e-01,9.760185330198872800e-02 +3.254199427479205209e-01,8.736951926395888912e-02 +3.156022405194300329e-01,7.197722878503227950e-02 +3.144493679483967852e-01,8.478954104351049681e-02 +5.003451390669370058e-01,1.257302606270211398e-01 +5.137215640706436215e-01,1.103419574106030143e-01 +4.945831090426691112e-01,9.384212013938812713e-02 +4.812066840389624955e-01,1.092304233558062526e-01 +4.974641240548031140e-01,1.097861903832046127e-01 +5.538043422718119668e-01,6.444471853755545654e-02 +5.711131980281802800e-01,7.987087173790922978e-02 +5.554922250341223222e-01,7.945895963729107669e-02 +4.754707269451394214e-01,7.718877280814213926e-02 +4.917732212607975884e-01,7.773120353791122816e-02 +6.345092560025329398e-01,5.234370246768910162e-02 +6.225086526464143066e-01,6.631800772433664448e-02 +6.194304554661540507e-01,5.758503601525714194e-02 +5.869578863507078914e-01,9.467545960851328490e-02 +6.019841594241907012e-01,8.123177983765375587e-02 +5.865486787261855461e-01,8.055132578778149977e-02 +6.378269089481661824e-01,8.161709955066563660e-02 +6.173024157259425770e-01,9.653087166398273411e-02 +6.199055341861784418e-01,8.142443969415970317e-02 +6.001841149539033360e-01,1.055956351048832342e-01 +6.082699041655786898e-01,1.241228433983338347e-01 +6.253882049376180419e-01,1.150580799574333346e-01 +6.127861599457605779e-01,1.103268575311582567e-01 +4.560845990488334722e-01,6.079600816967161564e-02 +4.622854596821075468e-01,9.246534052822748262e-02 +4.591850293654705095e-01,7.663067434894955954e-02 +5.326669260787930682e-01,1.258593062608564794e-01 +5.295158731859742618e-01,1.102306111615917461e-01 +2.911804324644914899e-01,7.364971969982039846e-02 +2.992652921003240429e-01,5.738715749945114825e-02 +2.829498877208974084e-01,6.078434429287569996e-02 +4.675451429635021361e-01,1.241982224072058216e-01 +4.649153013228048970e-01,1.083317814677166729e-01 +5.882902524084544504e-01,1.189495200548892628e-01 +5.876240693795811154e-01,1.068124898317013016e-01 +6.749398624250697587e-01,4.806907979453670793e-02 +6.548676973338753982e-01,5.435910955638166564e-02 +6.644495212983823063e-01,7.295334913401461951e-02 +6.845216863895766668e-01,6.666331937216968262e-02 +6.696946918617260325e-01,6.051121446427567413e-02 +5.843539352457548519e-01,1.367853622022543736e-01 +5.972659046333153032e-01,1.317506865158011298e-01 +3.687325023737621499e-01,1.201234626070044609e-01 +3.540585322897830123e-01,9.990271448420619260e-02 +3.698691264786015398e-01,1.007839802083684150e-01 +3.558574200759487827e-01,1.406906131993839737e-01 +3.707308376200686983e-01,1.341024516236963560e-01 +4.356371412294046119e-01,4.472108400701000491e-02 +4.194060962969465844e-01,4.487946571149307312e-02 +4.532797176219608426e-01,1.393708397567375856e-01 +4.867065897808343644e-01,1.414846432520195929e-01 +4.699875796632330127e-01,1.404953792378219879e-01 +5.523192348340921765e-01,4.779631437884983985e-02 +4.523632884363983919e-01,4.478815585862391119e-02 +5.201165644610206140e-01,1.427926872663322355e-01 +5.034101337341261306e-01,1.422192054611150780e-01 +3.363523630241156970e-01,1.120472488284467438e-01 +3.397392375188517111e-01,9.363611687408253392e-02 +3.142442920893661062e-01,5.564757434715742607e-02 +4.366931882054875258e-01,1.375430386416769679e-01 +5.530921150047388712e-01,1.419324984944471679e-01 +5.366077749156200616e-01,1.424098356955754430e-01 +3.913302059406780220e-01,2.511375853232137856e-01 +3.753684183580429101e-01,2.613648814482405491e-01 +3.906379040165948169e-01,2.647161701254823196e-01 +3.756989307414656531e-01,2.408121236528999731e-01 +3.801865442396884509e-01,2.251971178041746180e-01 +3.860769215485763128e-01,2.380584977224487475e-01 +3.610700674637786767e-01,2.368180669428765484e-01 +3.682001321551576223e-01,2.491030923901623173e-01 +2.965104575677203202e-01,9.893296365041551188e-02 +2.938454450161059328e-01,8.629134167511798292e-02 +2.968215922798812523e-01,1.162763468576952647e-01 +3.136076300895244140e-01,1.149452365092684808e-01 +3.050590438286223116e-01,1.069391000798420033e-01 +6.659045346636931484e-01,1.645342824235943718e-02 +6.615126331390350778e-01,3.722824598530317247e-02 +6.716647897154424118e-01,3.884849730495295445e-02 +6.709121171354377466e-01,2.764954031949954510e-02 +3.497871469539132194e-01,1.683960603154611990e-01 +3.398743466259284141e-01,1.350910802590548077e-01 +3.448307467899208167e-01,1.517435702872580172e-01 +6.411541918076927304e-01,3.521283889661060845e-02 +6.497484600269654020e-01,1.844229679561589300e-02 +3.267409883577264140e-01,1.250181583841616373e-01 +6.921276738849688748e-01,4.209534689152923115e-02 +6.802818747995407200e-01,4.282937197900148901e-02 +6.966679365961668813e-01,5.721953520010403943e-02 +3.619789927043940425e-01,2.180572898551402239e-01 +3.532376320808731096e-01,2.227861118922362382e-01 +2.823947624230642717e-01,1.279439112510779575e-01 +3.653078973802220686e-01,1.966711223483010029e-01 +3.730186977093288281e-01,2.108063111190081884e-01 +6.500752724153754381e-01,9.860026581296796322e-02 +6.544860510102874507e-01,8.495940675668839370e-02 +3.571734163079336444e-01,1.822742146546098285e-01 +6.447101612293513195e-01,1.154834779786783616e-01 +5.688270205536677393e-01,1.398332386160925644e-01 +6.480109445707840088e-01,4.478597422649614052e-02 +5.067568941560973705e-01,7.018928573556702799e-02 +5.160245996923579215e-01,7.846698758492842707e-02 +5.227778155658122650e-01,7.068955332210145881e-02 +5.135101100295518251e-01,6.241185147274003198e-02 +5.147673548609548178e-01,7.043941952883425728e-02 +5.093945369968142511e-01,8.635798279979355063e-02 +5.185390893551640179e-01,9.452212369711687767e-02 +5.251691520507076882e-01,8.663112848225185125e-02 +5.172818445237609142e-01,8.649455564102270788e-02 +5.341905512311470039e-01,9.468170842753709238e-02 +5.409437671046013474e-01,8.690427416471006861e-02 +5.319223679241622538e-01,7.885369421942479973e-02 +5.330564595776545733e-01,8.676770132348095299e-02 +5.387987369755271594e-01,7.118982090863591738e-02 +5.296541846171773926e-01,6.302568001131256259e-02 +5.307882762706698232e-01,7.093968711536866034e-02 +3.296219487036862184e-01,1.814890072659476605e-01 +3.267344272892138690e-01,1.933991443542175392e-01 +3.396063626290443671e-01,1.958950098882346891e-01 +3.424938840435167720e-01,1.839848727999647826e-01 +3.346141556663652650e-01,1.886920085770911748e-01 +3.115786305118063981e-01,1.905592826888296010e-01 +3.109749705349109661e-01,2.028134159084702959e-01 +3.261307673123183815e-01,2.056532775738582342e-01 +3.188546989120623620e-01,1.981062801313439037e-01 +3.278109687729998667e-01,2.182514069248697175e-01 +3.406829041128304203e-01,2.207472724588868396e-01 +3.390027026521489351e-01,2.081491431078753840e-01 +3.334068357125744009e-01,2.132002750163725369e-01 +3.495907765544025714e-01,2.103010125105217176e-01 +3.501944365312980034e-01,1.980468792908809950e-01 +3.445985695917234137e-01,2.030980111993781756e-01 +3.619435289958955471e-01,4.368892587097348429e-02 +3.667897919125798767e-01,5.962975866569904249e-02 +3.742565161821892472e-01,5.534687439822732341e-02 +3.694102532655048621e-01,3.940604160350176521e-02 +3.681000225890423416e-01,4.951790013460040385e-02 +3.588697833558777139e-01,6.673794438769800608e-02 +3.641693305596548913e-01,7.985347572789631976e-02 +3.720893391163570540e-01,7.274529000589737004e-02 +3.654795612361174117e-01,6.974161719679770888e-02 +3.778421706072269681e-01,8.303551989156851554e-02 +3.853088948768363386e-01,7.875263562409673401e-02 +3.795560633859663691e-01,6.846240573842561628e-02 +3.786991169965967519e-01,7.574896281499705897e-02 +3.865695033684830029e-01,6.700482292548111396e-02 +3.812699561647058810e-01,5.388929158528278640e-02 +3.804130097753360973e-01,6.117584866185419440e-02 +4.060060014945637841e-01,5.252951532356052444e-02 +3.962133817585958284e-01,4.540563644625469908e-02 +3.936341706678903041e-01,5.314159352710694922e-02 +4.034267904038583152e-01,6.026547240441271908e-02 +3.998200860812270441e-01,5.283555442533373336e-02 +4.003464351496067719e-01,3.763456394302987229e-02 +3.848669197223224536e-01,3.831687299132150587e-02 +3.926056770744684732e-01,3.795757301380545817e-02 +3.822953249551058752e-01,4.618844992680322392e-02 +3.771387147762023107e-01,3.886314355605170051e-02 +3.926088018774902544e-01,6.084243518558645619e-02 +3.874520634162981203e-01,5.351544255619481577e-02 +2.657897110811294761e-01,1.205112426868431980e-01 +2.700561656840453351e-01,1.072916340071339986e-01 +2.590192536050055505e-01,1.046700389526709768e-01 +2.622000899235488736e-01,1.126660181977556102e-01 +2.808289012838751098e-01,1.103129095832109524e-01 +2.862802966342933852e-01,9.779343177928430386e-02 +2.755075610344635550e-01,9.477215620320735001e-02 +2.781682311591693324e-01,1.025425328932091512e-01 +2.821438971323841916e-01,8.295280927506328006e-02 +2.657232969618761875e-01,9.088672487079950402e-02 +2.739577261027209554e-01,8.690871308082691316e-02 +2.571553226039242079e-01,9.556947644368830874e-02 +5.040253497282145556e-01,5.372594626681764102e-02 +4.942318068639089401e-01,4.517953719944559771e-02 +4.874071602430268824e-01,5.331620300257206013e-02 +4.972007031073324423e-01,6.186261206994404793e-02 +4.957162549856206635e-01,5.352107463469485404e-02 +5.011999037131660284e-01,3.696796439354527869e-02 +4.842948137712284051e-01,3.670803513484739711e-02 +4.927473513584842979e-01,3.683869219336790429e-02 +4.673898581551918507e-01,3.671537829704463185e-02 +4.774702119256466482e-01,4.493379174493886130e-02 +4.758423196527812316e-01,3.670328913274775728e-02 +4.707890155331393434e-01,5.299555054529147408e-02 +4.807259638505196331e-01,6.137796180292461046e-02 +4.790980878880831129e-01,5.315587677393173588e-02 +4.055827621866376909e-01,2.975345335684158599e-01 +4.004734624952195343e-01,3.017488151948182207e-01 +4.082121713492972148e-01,3.059760884980328166e-01 +4.002950843860982877e-01,2.813702010375432327e-01 +3.934781198097987431e-01,2.861136451229925326e-01 +4.030759342567367121e-01,2.894219953636902876e-01 +3.795998600398686196e-01,2.752182088555960582e-01 +3.887380258345055628e-01,2.894546858408840739e-01 +3.841542089436169594e-01,2.823474070776673117e-01 +3.930436463165790095e-01,2.968297254433875931e-01 +3.851791556492165647e-01,9.314589395296761498e-02 +3.934766070013099304e-01,1.024954153356972819e-01 +4.005907629564267047e-01,9.524474663128912333e-02 +3.922933116043332280e-01,8.589522524855942864e-02 +3.928849593028216347e-01,9.419532029212834834e-02 +3.861802856856236255e-01,1.101845979120937152e-01 +3.946599023982867438e-01,1.190956054228351491e-01 +4.019562237139731042e-01,1.114064228464387157e-01 +3.940682546997983926e-01,1.107955103792661877e-01 +4.106180057872058642e-01,1.198789164851919026e-01 +4.177321617423226385e-01,1.126282477807837162e-01 +4.090703796690897676e-01,1.041557541420305572e-01 +4.098441927281478159e-01,1.120173353136112437e-01 +4.160023702636367893e-01,9.734359930961057616e-02 +4.075227535509736709e-01,8.843259179886919785e-02 +4.082965666100317192e-01,9.629417297044987056e-02 +4.445086957409255524e-01,8.388067399967129301e-02 +4.351711562382681864e-01,7.576421517829896868e-02 +4.290353739004532652e-01,8.307543902932289226e-02 +4.383729134031106867e-01,9.119189785069518883e-02 +4.367720348206894365e-01,8.347805651449710651e-02 +4.412899678306776985e-01,6.826447777984266663e-02 +4.319693990734258526e-01,6.033653250590274159e-02 +4.258505874810164515e-01,6.783626990435903670e-02 +4.335702776558471028e-01,6.805037384210085860e-02 +4.165469894691700703e-01,6.009683817785147625e-02 +4.104112071313550936e-01,6.740806202887546228e-02 +4.197148051432014193e-01,7.514749375538296028e-02 +4.181308973061856893e-01,6.762216596661718704e-02 +4.135620520599809780e-01,8.227020405897446376e-02 +4.228826208172328238e-01,9.019814933291445125e-02 +4.212987129802171493e-01,8.267282154414867801e-02 +7.297593623851392763e-01,4.571879058589306544e-02 +7.192201716683310764e-01,4.260213535827708092e-02 +7.123304066984328387e-01,5.568397197044419600e-02 +7.210625699964721136e-01,5.072708031657412187e-02 +7.398616707912848423e-01,3.254515230706263307e-02 +7.385195340968413458e-01,4.047894597162758623e-02 +7.237651690884595590e-01,3.204759817533383431e-02 +7.333237300761445976e-01,2.778118058768437593e-02 +7.051035968097528750e-01,3.951617665525625211e-02 +7.144347212578224804e-01,3.578212662238425268e-02 +3.994354734684086305e-01,8.051141984153560582e-02 +3.924510567409117412e-01,7.336883021707291119e-02 +3.923721841726224846e-01,7.963202773281613522e-02 +4.054747719774159931e-01,7.434903210164094112e-02 +4.064987627641948320e-01,8.139081195025506255e-02 +3.984903552499190482e-01,6.720644247717826036e-02 +4.044507811906371542e-01,6.730725225302683357e-02 +3.925299293092010533e-01,6.710563270132968716e-02 +3.034527280149391659e-01,2.181024568326295765e-01 +3.155762572103189001e-01,2.181507556293698913e-01 +3.071514210200234629e-01,2.104304240821844030e-01 +2.976300113888191157e-01,2.340510150938099332e-01 +3.084370240923088313e-01,2.335678793390592589e-01 +3.005524625590882959e-01,2.260800231832744422e-01 +3.125989954470513865e-01,2.486823025782874674e-01 +3.200663615184256017e-01,2.334357428515100308e-01 +3.163621144288941145e-01,2.410756545088527936e-01 +3.239370331970654604e-01,2.258427300013037820e-01 +2.844151978016678517e-01,2.935307088985022461e-01 +2.748175977929808167e-01,2.998654329685884745e-01 +2.776718670462694494e-01,3.041400930098678845e-01 +2.947346201853929815e-01,2.772727656073552538e-01 +2.848508114160681615e-01,2.808917451321983894e-01 +2.896438732177953335e-01,2.854575573917926268e-01 +2.849489845486687933e-01,2.652960063998430762e-01 +2.778532934814386679e-01,2.831476644156583622e-01 +2.811734212261633448e-01,2.741652454455746901e-01 +2.745741282780386205e-01,2.920256040024138966e-01 +2.913782469385767793e-01,2.497396596302307592e-01 +3.013850771247512106e-01,2.489122395122791986e-01 +2.945041291638131886e-01,2.418953373616483382e-01 +2.937487265992990149e-01,2.638711030960544379e-01 +2.881636157436007206e-01,2.575178330151081108e-01 +3.039330547245575609e-01,2.631759807467886625e-01 +2.993264222687516130e-01,2.702185076522652940e-01 +3.082986652025749286e-01,2.559518277733819902e-01 +3.230470764497483938e-01,1.433141265678170850e-01 +3.107272602325936162e-01,1.444693100184481216e-01 +3.111678506315981307e-01,1.553503935972548877e-01 +3.234876668487529083e-01,1.541952101466237957e-01 +3.171074635406732622e-01,1.493322600825359725e-01 +3.112121509329258684e-01,1.326640093119361430e-01 +2.987355503096370546e-01,1.336401810269799706e-01 +2.982506596093048579e-01,1.454454817334919492e-01 +3.047314052711153631e-01,1.390547455227140461e-01 +2.856172745798820634e-01,1.462426417129484568e-01 +2.979225533151065308e-01,1.574297941755912200e-01 +2.914841138978642165e-01,1.521814011320932192e-01 +3.125339221299394121e-01,1.653072600483563581e-01 +3.051341897536017922e-01,1.615806860901750630e-01 +3.215621018398594488e-01,1.788593762683435839e-01 +3.168838343560124171e-01,1.761436476513817129e-01 +3.139589793936898854e-01,1.831810047177646339e-01 +3.362238406517594758e-01,1.698751984648194102e-01 +3.281639937879327062e-01,1.672455674672153336e-01 +3.288929712458094623e-01,1.743672873665814971e-01 +3.313843063560262814e-01,1.557178562854448223e-01 +3.202673542806593332e-01,1.657229213283943070e-01 +3.258258303183428350e-01,1.607203888069195785e-01 +3.176509228591541945e-01,1.698392665191726381e-01 +3.869793299644623819e-01,1.255976234469817487e-01 +3.954751963977258256e-01,1.333632825136455147e-01 +4.031557688315502430e-01,1.268612644894989427e-01 +3.950675493980062569e-01,1.262294439682403735e-01 +3.875762884857327784e-01,1.393849705576316600e-01 +4.041893983091580100e-01,1.416092715604697905e-01 +3.958767588332877674e-01,1.405372077714316381e-01 +4.208602299685405557e-01,1.434469383386176577e-01 +4.118892113549681433e-01,1.349783754614264364e-01 +4.125248302797092093e-01,1.425279734634451734e-01 +4.193514483106238200e-01,1.279960274571193823e-01 +4.112536085710870593e-01,1.274286459733091903e-01 +5.558990903718015186e-01,1.245762188832433975e-01 +5.616906006817066199e-01,1.163748567348114743e-01 +5.527486426772935113e-01,1.095967848240651799e-01 +5.469571323673882990e-01,1.177981469724971031e-01 +5.543238665245475705e-01,1.170865018536542818e-01 +5.704891062484612752e-01,1.227745985849026528e-01 +5.764240689960251629e-01,1.149515664971257900e-01 +5.676255634292706187e-01,1.085518246470345838e-01 +5.690573348388658914e-01,1.156632116159686391e-01 +5.737039786144932929e-01,1.011071226199128092e-01 +5.647620206100800733e-01,9.432905070916654255e-02 +5.586836054248573991e-01,1.017737527362883448e-01 +5.661937920196753460e-01,1.014404376781005840e-01 +5.495981949827857260e-01,9.461735076488693441e-02 +5.436632322352217273e-01,1.024403828526638249e-01 +5.511734188300396742e-01,1.021070677944760779e-01 +3.360227127524472168e-01,7.370625055654739244e-02 +3.439690408703761637e-01,6.482699027246176249e-02 +3.370464658453979911e-01,5.431108115141689008e-02 +3.291001377274690998e-01,6.319034143550256166e-02 +3.365345892989226040e-01,6.400866585398216901e-02 +3.502295112747283445e-01,7.674371928288932498e-02 +3.526093129515255331e-01,5.482121537727035337e-02 +3.514194121131269388e-01,6.578246733007984959e-02 +3.456548985839528187e-01,4.403100097794844514e-02 +3.537938121425006077e-01,4.380388782631258054e-02 +3.294617861997938268e-01,4.519599191975472857e-02 +3.375587516376403752e-01,4.461620599282552918e-02 +5.367594010765994739e-01,5.494070649009620555e-02 +5.275003839053143961e-01,4.616571472633172052e-02 +5.203951674458924259e-01,5.425068824754807756e-02 +5.285772842612459499e-01,5.459569736882213808e-02 +5.348257594078180688e-01,3.815693090909091229e-02 +5.180212076909476160e-01,3.731453325859180464e-02 +5.264234106276104441e-01,3.773690139281466599e-02 +5.109104071445551565e-01,4.556478304162568660e-02 +5.096109434507534175e-01,3.712204708973951967e-02 +5.122102585870534908e-01,5.398831725718283153e-02 +4.498768480619460552e-01,1.153053233146478507e-01 +4.406847554557303814e-01,1.068213355710195822e-01 +4.338045049021342914e-01,1.139667855477157765e-01 +4.429965975083500762e-01,1.224507732913439895e-01 +4.418406764820401733e-01,1.146360544311817858e-01 +4.473709891513484305e-01,9.956095584460632197e-02 +4.316866797074926376e-01,9.845227757710844907e-02 +4.395288344294204785e-01,9.900661671085736470e-02 +4.248064291538965476e-01,1.055977275538046434e-01 +4.238445249855646857e-01,9.789793844335951956e-02 +4.267302374905603823e-01,1.209973057746948771e-01 +4.257683333222284094e-01,1.132975166642497672e-01 +6.019309078079344566e-01,6.107703149758014760e-02 +5.933743945521999796e-01,5.328384984436390637e-02 +5.857114620804433347e-01,5.906918490010232975e-02 +5.942679753361779227e-01,6.686236655331852241e-02 +5.938211849441890067e-01,6.007310819884120745e-02 +6.009997642824183028e-01,4.863601221356571302e-02 +5.848554440380038244e-01,4.435317076620759469e-02 +5.930124832833956194e-01,4.622798826170516212e-02 +5.681918889499699699e-01,4.195475910296964789e-02 +5.770194332850406838e-01,5.076664908331937620e-02 +5.765228139490405912e-01,4.315922984580657096e-02 +5.693189380717456061e-01,5.768948156399791860e-02 +5.780109668671483680e-01,6.599201738078087909e-02 +5.775152000760945814e-01,5.837933323205015540e-02 +3.028819803482132311e-01,7.698825209987512908e-02 +3.089640805486348896e-01,8.349955193328632841e-02 +3.150258042339134090e-01,7.838338491427139509e-02 +3.089437040334916951e-01,7.187208508086016800e-02 +3.089538922910632923e-01,7.768581850707323433e-02 +3.040756059495328678e-01,8.743087354624916319e-02 +3.089844570637780841e-01,9.512701878571247494e-02 +3.138729316628801058e-01,9.119569717274958465e-02 +3.089742688062064868e-01,8.931328535949942249e-02 +3.176085336909488799e-01,1.000766878182649949e-01 +3.236702573762273438e-01,9.496052079925011713e-02 +3.199346553481586253e-01,8.607953015373470684e-02 +3.187715945195537803e-01,9.307810898599985783e-02 +3.271696281196135869e-01,7.977851772866768887e-02 +3.222607770053683707e-01,7.208237248920440488e-02 +3.210977161767635257e-01,7.908095132146952810e-02 +4.921528237383482329e-01,1.254745991958820805e-01 +4.989046315608700599e-01,1.177582255051128762e-01 +4.893354040468826938e-01,1.095083068695054257e-01 +4.825835962243608668e-01,1.172246805602746716e-01 +4.907441138926154078e-01,1.174914530326937878e-01 +5.085374543955258897e-01,1.259859220581601436e-01 +5.152256668973791420e-01,1.182917704499511086e-01 +5.055928440627233122e-01,1.100640738969037996e-01 +5.070651492291244899e-01,1.180249979775320202e-01 +5.122174612439081010e-01,1.023921443712549062e-01 +5.026482337299208458e-01,9.414222573564746954e-02 +4.960236165487361126e-01,1.018141552612963768e-01 +5.041205388963221345e-01,1.021031498162756346e-01 +4.865179843554173766e-01,9.354201454312878472e-02 +4.798297718535641243e-01,1.012361661513378336e-01 +4.879266942011500907e-01,1.015251607063170775e-01 +5.618434024522227510e-01,6.500078066603380555e-02 +5.546482836529671445e-01,7.195183908742326662e-02 +5.633027115311513011e-01,7.966491568760014630e-02 +5.704978303304069076e-01,7.271385726621067136e-02 +5.625730569916870261e-01,7.233284817681696899e-02 +5.457652820914009606e-01,6.388865640907710752e-02 +5.476817385370933433e-01,7.925300358698202097e-02 +5.467235103142471520e-01,7.157082999802956425e-02 +5.563361664152776109e-01,8.696608018715890065e-02 +5.486399667599395347e-01,8.693517717593444993e-02 +5.717285657259536524e-01,8.702788620960778820e-02 +5.640323660706156872e-01,8.699698319838336524e-02 +4.999244684186266996e-01,7.800241890279575874e-02 +4.931781651517333498e-01,8.578666183864964989e-02 +5.012863510742737727e-01,8.607232231922158638e-02 +4.903682773698617714e-01,6.967574523717277868e-02 +4.985625857629796265e-01,6.993251548636987558e-02 +4.739796605836263943e-01,6.916220473877847386e-02 +4.836219741029684771e-01,7.745998817302669759e-02 +4.821739689767440828e-01,6.941897498797562627e-02 +4.769617933066525040e-01,8.521534087750577691e-02 +4.850699792291929269e-01,8.550100135807771340e-02 +6.385650408623344543e-01,5.884108838838757183e-02 +6.269698557343434953e-01,5.496436924147311831e-02 +6.209695540562842897e-01,6.195152186979692444e-02 +6.325647391842752487e-01,6.582824101671132244e-02 +6.297672974593093720e-01,6.039630512909224813e-02 +6.304534711427315363e-01,4.584631654699063141e-02 +6.178913568760240338e-01,5.321855016071741495e-02 +6.247089834900745320e-01,5.092648318840170552e-02 +6.104478957556652707e-01,5.622077893541503613e-02 +6.094466964024243261e-01,5.092564504488687749e-02 +6.124525661085534756e-01,6.680777443196198040e-02 +6.114502309321092621e-01,6.151427668368856377e-02 +5.796509098872175691e-01,9.443018014490979495e-02 +5.867532825384467188e-01,8.761339269814737152e-02 +5.788309383771829131e-01,8.021109876284533702e-02 +5.792409241322002966e-01,8.732063945387757986e-02 +5.942648628141984357e-01,9.492073907211673323e-02 +6.017779993509397851e-01,8.819889918668696871e-02 +5.942664190751880682e-01,8.089155281271763476e-02 +5.942656409446932519e-01,8.790614594241717705e-02 +6.021903194974416174e-01,7.426466048862058467e-02 +5.863440749139243735e-01,7.348925887741560026e-02 +5.942671972056829954e-01,7.387695968301810634e-02 +5.784209526221656406e-01,7.310155807181314969e-02 +6.354299505611813448e-01,8.975641217145544082e-02 +6.288662215671723121e-01,8.152076962241268376e-02 +6.186039749560605649e-01,8.897765567907120476e-02 +6.251677039500694866e-01,9.721329822811398957e-02 +6.270169627586208438e-01,8.936703392526332279e-02 +6.402238673351510201e-01,7.347778692987586013e-02 +6.212070934162963187e-01,7.387122370924820158e-02 +6.307154803757237804e-01,7.367450531956201698e-02 +6.109448468051845715e-01,8.132810976590675034e-02 +6.116987064568690791e-01,7.406794209893437231e-02 +6.094371275018155565e-01,9.584844509985147865e-02 +6.101909871535001750e-01,8.858827743287908674e-02 +6.150442878358515220e-01,1.034288645975705162e-01 +6.190871824416892544e-01,1.126924687442957818e-01 +6.292105985559072190e-01,1.064769023748392829e-01 +6.221274431958794260e-01,1.049528834862048926e-01 +6.008779771157961580e-01,1.003808268203016801e-01 +6.064851374498319014e-01,1.079612463180207593e-01 +6.079611324758238400e-01,1.019048457089361120e-01 +5.994902527920105140e-01,1.108104433894647328e-01 +6.035331473978482464e-01,1.200740475361900400e-01 +6.105280320556696338e-01,1.172248504647460388e-01 +6.050091424238400739e-01,1.140176469271054066e-01 +6.130066609333091332e-01,1.281716392604775878e-01 +6.215658113193287537e-01,1.236392575400273308e-01 +6.160469216874993048e-01,1.204320540023866848e-01 +4.642865966354733365e-01,6.096582241954322939e-02 +4.576348142071520186e-01,6.871334125931055636e-02 +4.673278781553049654e-01,7.690972357854586328e-02 +4.658072373953892065e-01,6.893777299904449429e-02 +4.478826014621936080e-01,6.062619391980000882e-02 +4.510421805756360536e-01,7.635162511935324192e-02 +4.494623910189148308e-01,6.848890951957663231e-02 +4.542017596890786102e-01,9.207705631890654441e-02 +4.607352445237890559e-01,8.454800743858854883e-02 +4.526219701323573874e-01,8.421434071912989316e-02 +4.703691596751367054e-01,9.285362473754843471e-02 +4.688485189152207244e-01,8.488167415804714899e-02 +5.246983479014538654e-01,1.260504448750778550e-01 +5.310913996323836095e-01,1.180449587112241128e-01 +5.216187186283089972e-01,1.102862842860973802e-01 +5.231585332648813758e-01,1.181683645805876176e-01 +5.406355042561323820e-01,1.256681676466351039e-01 +5.374130277436396375e-01,1.101749380370861259e-01 +5.390242659998859542e-01,1.179215528418605941e-01 +5.279403467395649141e-01,1.024162636119593517e-01 +5.358017894873932097e-01,1.024283232323116161e-01 +5.200789039917365075e-01,1.024042039916071428e-01 +2.748593725250663145e-01,6.287614311790111488e-02 +2.812695579850927330e-01,5.348862820100040716e-02 +2.710970374894723922e-01,5.589055197974485828e-02 +2.856280649229606117e-01,7.459110886138659025e-02 +2.870651600926945046e-01,6.721703199634808390e-02 +2.802706759529479119e-01,6.874245286377705932e-02 +2.967328000060224236e-01,7.270833053825424830e-02 +3.007752298239387279e-01,6.457704943806961972e-02 +2.911075899106107534e-01,5.908575089616337206e-02 +2.939201949583166162e-01,6.589704071720882406e-02 +2.977553543767094135e-01,5.019726556083262820e-02 +2.895355997584602159e-01,5.194866995107579738e-02 +4.593374602403735296e-01,1.236878647284371940e-01 +4.662302221431535165e-01,1.162650019374612403e-01 +4.567696099647260422e-01,1.078824605236718692e-01 +4.580535351025497581e-01,1.157851626260545247e-01 +4.757528256866306871e-01,1.247085800859744770e-01 +4.730609926808836962e-01,1.087811024117614767e-01 +4.744069091837571639e-01,1.167448412488679421e-01 +4.636003805024562219e-01,1.003985609979721055e-01 +4.717150761780101176e-01,1.008173635746549557e-01 +4.554856848269023262e-01,9.997975842128919988e-02 +5.872909778651445034e-01,1.007439747201073210e-01 +5.939040921667422257e-01,1.062040624682922679e-01 +5.940844774904703307e-01,1.005624007702045214e-01 +5.813440465924201161e-01,1.074209171951102937e-01 +5.804974782398188982e-01,1.009255486700100651e-01 +5.830371832976228852e-01,1.204116542453107508e-01 +5.879571608940177274e-01,1.128810049432952822e-01 +5.821906149450215562e-01,1.139162857202105361e-01 +5.935433215192860157e-01,1.174873858644678026e-01 +5.937237068430142317e-01,1.118457241663799867e-01 +6.788525091647972243e-01,5.041374728996642074e-02 +6.723172771433978401e-01,5.429014712940616327e-02 +6.771081891256512941e-01,6.358726691822265409e-02 +6.836434211470505673e-01,5.971086707878290462e-02 +6.779803491452243147e-01,5.700050710409450966e-02 +6.710272156853422931e-01,4.572441229910699512e-02 +6.609911331397451129e-01,4.886942718002941499e-02 +6.622811945978007708e-01,5.743516201032863866e-02 +6.666542051415714765e-01,5.157978715471781689e-02 +6.487442615280056835e-01,5.984879193273379833e-02 +6.535351735102591375e-01,6.914591172155033771e-02 +6.670721065800542249e-01,6.673228179914512948e-02 +6.579081840540299542e-01,6.329053686593952288e-02 +6.753638690865053640e-01,7.676078654647891519e-02 +6.853999516321025443e-01,7.361577166555642593e-02 +6.762360291060783846e-01,7.017402673235079158e-02 +6.027679043994469410e-01,1.279367649570674892e-01 +6.017537307457457851e-01,1.381512697462570494e-01 +6.077409847913262109e-01,1.335171586993064152e-01 +5.927780785208849323e-01,1.253501032853452102e-01 +5.981556129593664783e-01,1.227120754107676598e-01 +5.810690247162729749e-01,1.293295753189933339e-01 +5.908099199395351331e-01,1.342680243590277378e-01 +5.869235516185790091e-01,1.273398393021692443e-01 +5.876388457752366179e-01,1.442411490855154133e-01 +5.949249083669504445e-01,1.416829096003580646e-01 +3.597583282087296608e-01,1.208332189646783156e-01 +3.693008144261818448e-01,1.104537214076864449e-01 +3.619638293841922483e-01,1.003433473462873177e-01 +3.524213431667400087e-01,1.107228449032791884e-01 +3.608610787964609545e-01,1.105882831554828166e-01 +3.777066765387946390e-01,1.194137062493306339e-01 +3.777744235730108313e-01,1.012246130704495539e-01 +3.777405500559027351e-01,1.103191596598900731e-01 +3.704374385310212348e-01,9.111423900905042672e-02 +3.778082970901188720e-01,9.213006648100903473e-02 +3.556957214128259048e-01,8.908258406513323846e-02 +3.630665799719235975e-01,9.009841153709181871e-02 +3.697316699969154241e-01,1.271129571153503945e-01 +3.790043234225831670e-01,1.332968743130014955e-01 +3.783554999806889030e-01,1.263552902811660716e-01 +3.533207870598229494e-01,1.311167942608680304e-01 +3.632941288480087128e-01,1.373965324115401232e-01 +3.615262285283691868e-01,1.291148756881092263e-01 +3.583940530920745604e-01,1.502644321378998893e-01 +3.717300052432219726e-01,1.410919461320422896e-01 +3.656169550141491476e-01,1.461992355247432873e-01 +3.792476487483505410e-01,1.390261912357192708e-01 +4.376588725524791501e-01,5.258873183846923122e-02 +4.275216187631756259e-01,4.480027485925156677e-02 +4.218321452841222730e-01,5.254807552668513265e-02 +4.297455089183007670e-01,5.256840368257718193e-02 +4.336154099063300182e-01,3.685343617555077861e-02 +4.169800473097708959e-01,3.721085589630101359e-02 +4.252971401058474044e-01,3.701002105218013927e-02 +4.112911573095159312e-01,4.498075267239417391e-02 +4.086632412286692606e-01,3.742270991970411687e-02 +4.139190733893429730e-01,5.253879542512282508e-02 +4.522047475696028274e-01,1.312741734032030483e-01 +4.616336486425969277e-01,1.399331094972798006e-01 +4.687663613133675189e-01,1.323468008225139325e-01 +4.604855544414852009e-01,1.318104871128584765e-01 +4.543546876743188578e-01,1.474675061102720675e-01 +4.712087980130983955e-01,1.486439576531300710e-01 +4.627759382968635871e-01,1.481278875043991194e-01 +4.880796304663718721e-01,1.496174959956578510e-01 +4.783470847220336886e-01,1.409900112449207765e-01 +4.796442142401393660e-01,1.491307268244166928e-01 +4.853335490952968567e-01,1.333517905083813349e-01 +4.770499552043322433e-01,1.328492956654476198e-01 +5.605373241724749267e-01,4.880921735616682716e-02 +5.530617885529520716e-01,5.612051645820264473e-02 +5.611903633123487278e-01,5.690499901110031289e-02 +5.515766811152322813e-01,3.947211229949703498e-02 +5.598838079276491353e-01,4.071608010437314379e-02 +5.440559075381504739e-01,4.717256653922168724e-02 +5.432138061357576486e-01,3.869469513332060573e-02 +5.449105948147757728e-01,5.553061147414942861e-02 +4.607263626402819945e-01,4.482181013989598034e-02 +4.542239437426159876e-01,5.279208201414773566e-02 +4.625064796378777210e-01,5.289381627971960487e-02 +4.505026331301808518e-01,3.678422970310002427e-02 +4.589462456406629975e-01,3.674980400009667664e-02 +4.440002148329015297e-01,4.475461993281701356e-02 +4.420590195594228389e-01,3.681871460019603415e-02 +4.459414081475475689e-01,5.269040692630851119e-02 +4.950583617574803030e-01,1.418519243565673493e-01 +5.018776364005315127e-01,1.339747330440681228e-01 +4.936055927479142680e-01,1.336632617762247288e-01 +5.049426310677207486e-01,1.504636778781620887e-01 +4.965111307661911888e-01,1.500405869368618694e-01 +5.218099618294737008e-01,1.510682391548487657e-01 +5.117633490975734833e-01,1.425059463637236568e-01 +5.133747708677882660e-01,1.508470081500249971e-01 +5.184231670925676383e-01,1.345171353778157053e-01 +5.101504017465496865e-01,1.342459342109418863e-01 +3.468988849043173617e-01,9.676941567914439102e-02 +3.380458002714837318e-01,1.028416828512646597e-01 +3.435682585339063788e-01,1.167951120753994293e-01 +3.452335717191118980e-01,1.067822638772719102e-01 +3.414326747662197459e-01,8.443055089690044979e-02 +3.485641980895228809e-01,8.675656748101687188e-02 +3.325795901333861160e-01,9.050281806902071846e-02 +3.343011514429167219e-01,8.210453431278405545e-02 +3.291364675143249596e-01,1.072993855814940029e-01 +3.308580288238555100e-01,9.890110182525739535e-02 +3.067547920948450746e-01,5.651736592330428716e-02 +3.135653178743341707e-01,4.748274712822004445e-02 +3.056350527506641601e-01,4.873204150929841272e-02 +3.149232663043980418e-01,6.381240156609487013e-02 +3.078492480641683571e-01,6.419472550208224493e-02 +3.217626270264987709e-01,5.492037051239301998e-02 +3.220117020159335985e-01,6.350137150079870896e-02 +3.215062822892214012e-01,4.629788415452930350e-02 +4.283995136725348707e-01,1.366322607697727232e-01 +4.357783028524713775e-01,1.296335390873482041e-01 +4.275648755815475988e-01,1.288147832722337793e-01 +4.376080735585037296e-01,1.454525381960057040e-01 +4.292341517622416669e-01,1.444497382671458829e-01 +4.449864529137242397e-01,1.384569391992072629e-01 +4.459817875166148804e-01,1.464568990887859523e-01 +4.439915252110371302e-01,1.304538562452756401e-01 +5.283621696883203933e-01,1.426012614809538392e-01 +5.346373504972066204e-01,1.341345709782159334e-01 +5.265302587948872404e-01,1.343258531780158194e-01 +5.385781993340337248e-01,1.506851004129348970e-01 +5.301940579054850167e-01,1.508758123660227379e-01 +5.553361312903725144e-01,1.501602332254638739e-01 +5.448499449601795774e-01,1.421711670950113193e-01 +5.469606488669469524e-01,1.504707664794129318e-01 +5.508480987191052280e-01,1.337047637634304897e-01 +5.427427246081558687e-01,1.339196673708232255e-01 +3.982726468458708258e-01,2.663918144641032049e-01 +3.902926881147891214e-01,2.715051875360259825e-01 +3.992829311151042671e-01,2.738812846778028720e-01 +3.962530144863510295e-01,2.514126029188913924e-01 +3.909840549786364194e-01,2.579268777243480804e-01 +3.972628306661321052e-01,2.589022086915707122e-01 +3.864073973950049590e-01,2.508625677275361787e-01 +3.784265036036874030e-01,2.559762157900495327e-01 +3.830031611873188635e-01,2.630405257868613789e-01 +3.847052792911619390e-01,2.569515467571987788e-01 +3.723103331123983617e-01,2.667535471064314545e-01 +3.813015106135937415e-01,2.691293673212287740e-01 +3.728061016875325318e-01,2.359244104134206599e-01 +3.808879261450209830e-01,2.394353106876743464e-01 +3.831317328941323819e-01,2.316278077633116828e-01 +3.750499084366439861e-01,2.281169074890579684e-01 +3.779689172908324846e-01,2.337761090883661297e-01 +3.785917597953987745e-01,2.456998368923793141e-01 +3.887035637446271119e-01,2.445980415228312665e-01 +3.836476617700129710e-01,2.451489392076053042e-01 +3.912659169521315872e-01,2.366816847572231486e-01 +3.937568136061255775e-01,2.440479125681854489e-01 +3.853231800427330267e-01,2.222773281192912675e-01 +3.883999503479126925e-01,2.294416978099070858e-01 +3.654916700486890435e-01,2.339273820584089336e-01 +3.646350998094681772e-01,2.429605796665194051e-01 +3.719495314483116655e-01,2.449576080215311313e-01 +3.687206007485003822e-01,2.394424950399700325e-01 +3.566484648788682543e-01,2.397087518273441631e-01 +3.644507328620035791e-01,2.532485767587935310e-01 +3.605462876992836518e-01,2.464805519178807081e-01 +3.717842752566002384e-01,2.552339869192014610e-01 +3.683646212113085294e-01,2.600105970457079474e-01 +3.751880175259995620e-01,2.504669119057902904e-01 +2.925129387402987113e-01,7.997053068746920457e-02 +2.986621190824894634e-01,8.425045224909007147e-02 +2.976974595442559712e-01,7.847939139367220152e-02 +2.890287709497223467e-01,8.833223110114588050e-02 +2.873284179363414514e-01,8.146166998126624925e-02 +2.924294769764841373e-01,1.020733533409051430e-01 +2.951779512919130988e-01,9.261215266276670577e-02 +2.907291239631032420e-01,9.520279222102551175e-02 +3.005914381589565032e-01,9.579257395992585300e-02 +2.996267786207230110e-01,9.002151310450792754e-02 +3.091777696029929245e-01,1.022704766909153656e-01 +3.093333369590733350e-01,1.109421682945552490e-01 +3.177641010470292904e-01,1.087483794219049338e-01 +3.134709353250111352e-01,1.055094280564101150e-01 +3.007847506981713437e-01,1.029360318651287576e-01 +3.048846038809747139e-01,9.903152532542061626e-02 +2.925850443325645478e-01,1.107450449445450680e-01 +3.009403180542518097e-01,1.116077234687686270e-01 +2.966848975153679735e-01,1.068405384048368989e-01 +3.010581402271979012e-01,1.218076487708455447e-01 +3.094511591320194821e-01,1.211420935966321250e-01 +3.051957385931356459e-01,1.163749085327003691e-01 +6.709014533293122806e-01,9.141768780074541190e-03 +6.684083258995655585e-01,2.205148428092946339e-02 +6.756118591336393031e-01,2.286018748659767591e-02 +6.736994795145565540e-01,1.587025770514876449e-02 +6.609076159980742382e-01,2.376508770464422216e-02 +6.587116652357452029e-01,3.415249657611611755e-02 +6.662123751372364122e-01,3.243889315240135879e-02 +6.635599955676552142e-01,2.810199042852279047e-02 +6.643136010423248417e-01,4.030399539449022739e-02 +6.693896793305287307e-01,4.111412105431511838e-02 +6.712884534254401903e-01,3.324901881222624977e-02 +6.678010272338825715e-01,3.677650710335826634e-02 +6.739399001003563150e-01,3.658287355559079052e-02 +6.754703288743173495e-01,2.988575535225612007e-02 +3.442153773767696601e-01,1.726749649349839377e-01 +3.473089468719170458e-01,1.600698153013596081e-01 +3.393174101469068615e-01,1.572700488311950251e-01 +3.417663937618382608e-01,1.649725068830895092e-01 +3.553589165310567788e-01,1.641171556959384881e-01 +3.503440834329347719e-01,1.462170917433209816e-01 +3.528514999819958309e-01,1.551671237196297348e-01 +3.453292503348128206e-01,1.283170277907034473e-01 +3.423525467079246432e-01,1.434173252731564263e-01 +3.478366668838737685e-01,1.372670597670122838e-01 +3.344194429170440630e-01,1.418651327274061402e-01 +3.368684265319754623e-01,1.495675907793005965e-01 +6.547366201709772238e-01,1.053098580364788227e-02 +6.578264973453292752e-01,1.744786251898769458e-02 +6.627972726034114803e-01,8.723931259493875046e-03 +6.420175349218387728e-01,2.133943602245280333e-02 +6.468694605248443974e-01,1.378330414538068115e-02 +6.337759390453114872e-01,3.728088476145138830e-02 +6.454513259173290107e-01,2.682756784611325246e-02 +6.379024585148912463e-01,2.931311067797946063e-02 +6.485324445700739737e-01,3.314479303176983555e-02 +6.531794709577016800e-01,2.529632777537873731e-02 +3.201743092236253863e-01,1.199816974467150660e-01 +3.315466756909210555e-01,1.185327036063041906e-01 +3.246553883689751729e-01,1.136405415141045344e-01 +3.219353010245317726e-01,1.315036131620191395e-01 +3.156932300782756551e-01,1.263228533793255837e-01 +3.333076674918273863e-01,1.300546193216082225e-01 +3.281773719707878900e-01,1.366843729447126399e-01 +3.384379630128669381e-01,1.234248656985038051e-01 +6.776108686123052394e-01,4.544922588676912623e-02 +6.759733322574914549e-01,4.083893464197719397e-02 +6.735002739714168740e-01,4.328167347054211883e-02 +6.874464148947467823e-01,4.742688083846267888e-02 +6.862047743422547974e-01,4.246235943526539131e-02 +6.825286417535261219e-01,4.643805336261590255e-02 +6.968089328751907452e-01,3.676381294459583893e-02 +6.829528809867760897e-01,4.020951807123390731e-02 +6.897986652651291184e-01,3.827346153439907528e-02 +6.766879775851384338e-01,4.033682763583208708e-02 +6.989380679517660511e-01,6.478162935439132908e-02 +6.905948114928717185e-01,6.194142728613685756e-02 +6.922120389941436303e-01,6.927675081805054202e-02 +7.026924691751298413e-01,5.240980475647715603e-02 +7.056379467460367483e-01,6.023907219388424661e-02 +6.943978052405678225e-01,4.965744104581663182e-02 +6.997507010251604598e-01,4.458680885053636217e-02 +6.890206131938092504e-01,5.468415406229979597e-02 +3.571538497723258931e-01,2.298020894175563655e-01 +3.488669517691126432e-01,2.251505229107842176e-01 +3.527526700642959478e-01,2.324323382012706551e-01 +3.659461326689967264e-01,2.245469935145408269e-01 +3.576083123926335761e-01,2.204217008736882311e-01 +3.615499912206613375e-01,2.271745414660485685e-01 +3.580118527397913586e-01,2.115675861957396486e-01 +3.491872362072447888e-01,2.191551271884702445e-01 +3.535995444735181015e-01,2.153613566921049605e-01 +3.448423980403115818e-01,2.195393414341612337e-01 +2.778520343027832684e-01,1.216779936930525163e-01 +2.896081773514727620e-01,1.221101290543866041e-01 +2.852185393176739359e-01,1.162115193187988060e-01 +2.751813474946557814e-01,1.337776934477692692e-01 +2.704131506180070810e-01,1.271900293488421874e-01 +2.872855874339119153e-01,1.339426613105210995e-01 +2.803356740386325208e-01,1.400616492928971335e-01 +2.941718638305549360e-01,1.278751550406833082e-01 +3.785385502117961654e-01,2.071808217509421846e-01 +3.766026209745086395e-01,2.180017144615914171e-01 +3.819308651270171273e-01,2.147290749345058536e-01 +3.709394896827387655e-01,1.924677422542819538e-01 +3.691632975447754483e-01,2.037387167336545679e-01 +3.749246744939950804e-01,1.997340394900536109e-01 +3.596763050777053161e-01,2.008745024423200798e-01 +3.674988452068613798e-01,2.144318004870742200e-01 +3.635875751422833480e-01,2.076531514646971499e-01 +3.712743768217526830e-01,2.212743539880661081e-01 +6.415541322947859726e-01,9.824799530260663882e-02 +6.522806617128313889e-01,9.177983628482819234e-02 +6.461564799792267610e-01,8.328825315367703597e-02 +6.438553061370063668e-01,9.076812422814178882e-02 +6.585964125359650145e-01,9.895253632332931537e-02 +6.628156220413481403e-01,8.663056035969976532e-02 +6.579008734485692900e-01,9.197472140519123707e-02 +6.594677861543348785e-01,7.895637794535151355e-02 +6.691042440381185230e-01,8.172402983068326188e-02 +6.498458267447428938e-01,7.621708243761370072e-02 +3.625880443181966895e-01,1.779033839592032429e-01 +3.612406568440778010e-01,1.894726685014554157e-01 +3.668413161102231923e-01,1.851386008333374966e-01 +3.534802816309234319e-01,1.753351374850355138e-01 +3.583064553098199712e-01,1.709342752658973563e-01 +3.517587882976704883e-01,1.866450453500163587e-01 +3.479870828372201297e-01,1.796600051425001621e-01 +3.557175466876879577e-01,1.937597738961681915e-01 +6.473927168223634343e-01,1.070418718958231763e-01 +6.544172469708569029e-01,1.155095768583032229e-01 +6.573551073431272984e-01,1.073482459101109537e-01 +6.350491830834846807e-01,1.152707789680558481e-01 +6.383016576891352711e-01,1.067593871353312435e-01 +6.394505371882285294e-01,1.223676352869893236e-01 +6.303750128954110910e-01,1.226034353640052810e-01 +6.488820336994163274e-01,1.219806146242627537e-01 +5.609595677792033053e-01,1.408828685552698523e-01 +5.660105594318995959e-01,1.317543236750827740e-01 +5.584293290755024675e-01,1.327295437192566041e-01 +5.716434816754358827e-01,1.479121535571022994e-01 +5.634895403408279879e-01,1.490343242553728575e-01 +5.765904778997112956e-01,1.383093004091734413e-01 +5.796965788775745310e-01,1.462993891611979735e-01 +5.735397920740862299e-01,1.305419494970380678e-01 +6.445825681892383141e-01,3.999940656155334673e-02 +6.547617888549095433e-01,4.100711010589968425e-02 +6.516471167124917585e-01,3.707595156883473214e-02 +6.412601002866585853e-01,4.856483834709258984e-02 +6.375180196659850917e-01,4.292286155427201683e-02 +6.514393209523297035e-01,4.957254189143887185e-02 +6.450021809073320789e-01,5.420681513991322531e-02 +6.578764609973273281e-01,4.493826864296457391e-02 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri3/connectivity.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/connectivity.csv new file mode 100644 index 000000000..df08f8c75 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/connectivity.csv @@ -0,0 +1,371 @@ +85,87,86 +85,86,88 +87,85,89 +57,58,55 +56,57,55 +87,89,77 +90,89,85 +90,85,91 +92,94,93 +93,94,88 +95,92,96 +95,96,36 +97,99,98 +100,102,101 +98,99,33 +91,94,103 +33,99,32 +90,104,89 +105,107,106 +105,106,60 +89,104,76 +108,109,81 +109,80,81 +110,111,103 +104,113,112 +104,112,75 +113,104,90 +113,90,103 +114,115,68 +92,110,94 +116,118,117 +110,103,94 +86,119,88 +120,121,45 +122,112,113 +122,113,123 +124,123,103 +124,103,125 +116,121,118 +126,128,127 +129,119,86 +79,131,130 +132,114,133 +127,128,134 +129,135,119 +136,137,122 +93,138,96 +139,141,140 +136,122,134 +142,137,143 +142,143,73 +140,126,127 +122,142,112 +112,142,74 +144,145,133 +133,145,117 +146,144,147 +146,147,69 +140,141,39 +118,121,120 +28,25,27 +27,25,26 +148,150,149 +148,149,0 +151,111,110 +141,111,151 +80,109,131 +152,145,153 +154,135,129 +80,131,79 +147,133,114 +118,155,117 +153,145,156 +141,151,38 +157,158,128 +128,158,159 +160,161,136 +154,162,135 +135,162,163 +16,13,15 +15,13,14 +160,136,159 +144,133,147 +141,139,111 +95,110,92 +111,139,125 +154,109,164 +154,164,162 +163,138,93 +165,166,158 +116,167,121 +121,167,44 +151,110,95 +151,95,37 +158,166,168 +169,160,170 +170,160,168 +171,157,128 +172,174,173 +173,174,175 +172,177,176 +176,177,6 +178,169,170 +166,179,167 +140,127,139 +137,136,161 +167,179,43 +127,134,124 +124,122,123 +137,142,122 +180,165,158 +152,116,145 +137,161,143 +146,181,144 +144,181,156 +169,182,160 +171,128,126 +171,126,40 +165,179,166 +111,125,103 +79,130,78 +183,101,184 +178,170,181 +178,181,70 +180,158,157 +180,157,41 +183,185,101 +170,168,153 +153,166,152 +183,184,66 +102,187,186 +134,122,124 +102,186,188 +188,186,189 +160,182,161 +161,182,72 +190,191,184 +184,192,190 +191,66,184 +144,156,145 +193,194,3 +195,3,194 +193,3,4 +168,166,153 +196,198,197 +199,197,138 +199,138,163 +197,199,196 +200,150,201 +201,150,175 +164,200,201 +164,201,162 +150,200,149 +107,192,202 +202,192,189 +203,205,204 +203,204,64 +51,202,189 +206,98,34 +28,29,207 +208,209,7 +205,203,105 +205,105,60 +210,197,35 +99,97,20 +25,28,24 +24,28,207 +211,212,97 +97,212,20 +185,132,100 +132,155,100 +189,186,51 +1,213,0 +202,106,107 +51,186,50 +36,210,35 +190,203,191 +191,203,65 +186,49,50 +132,115,114 +214,176,209 +209,176,7 +13,16,215 +13,215,12 +115,132,185 +117,155,132 +83,84,216 +216,84,0 +133,117,132 +34,98,33 +93,88,119 +163,93,119 +135,163,119 +97,98,208 +66,191,65 +190,105,203 +105,190,107 +206,208,98 +206,209,208 +158,168,159 +168,160,159 +131,154,129 +97,208,211 +217,18,218 +10,217,218 +217,10,11 +198,206,34 +197,198,35 +35,198,34 +209,206,214 +188,184,101 +101,102,188 +63,204,62 +204,205,61 +204,61,62 +219,193,177 +193,5,177 +154,131,109 +210,36,96 +210,138,197 +138,210,96 +149,108,220 +108,149,200 +0,149,220 +12,215,217 +215,17,217 +217,11,12 +194,213,195 +213,194,148 +0,213,148 +107,190,192 +162,201,199 +201,175,199 +221,60,106 +53,221,106 +202,51,52 +113,103,123 +188,189,192 +5,193,4 +194,193,219 +30,223,222 +223,22,222 +85,88,91 +211,7,8 +94,91,88 +223,31,224 +208,7,211 +186,48,49 +173,175,150 +173,219,172 +219,173,150 +176,214,172 +176,6,7 +162,199,163 +21,223,224 +21,224,20 +32,224,31 +184,188,192 +100,225,187 +100,187,102 +92,93,96 +65,203,64 +198,214,206 +214,198,196 +226,59,221 +54,226,221 +115,185,183 +67,115,183 +81,220,108 +220,81,82 +103,90,91 +22,223,21 +31,223,30 +89,76,77 +219,148,194 +148,219,150 +32,99,224 +164,108,200 +99,20,224 +219,177,172 +6,177,5 +20,227,19 +9,227,8 +8,212,211 +20,212,227 +67,183,66 +212,8,227 +205,60,61 +174,214,196 +214,174,172 +175,174,196 +195,213,2 +195,2,3 +1,2,213 +187,225,47 +228,9,10 +228,19,227 +187,47,48 +9,228,227 +106,52,53 +68,115,67 +187,48,186 +52,106,202 +23,222,22 +30,222,29 +185,100,101 +118,120,225 +118,225,155 +218,19,228 +19,218,18 +10,218,228 +86,87,130 +47,225,46 +221,59,60 +221,53,54 +46,225,120 +225,100,155 +128,159,134 +159,136,134 +161,72,143 +141,38,39 +64,204,63 +41,157,171 +42,165,180 +165,42,179 +71,169,178 +169,71,182 +70,181,146 +156,181,170 +41,171,40 +167,43,44 +170,153,156 +40,140,39 +18,217,17 +40,126,140 +71,178,70 +127,124,125 +38,151,37 +130,87,78 +114,68,147 +58,226,55 +226,58,59 +226,54,55 +125,139,127 +142,73,74 +112,74,75 +145,116,117 +207,23,24 +207,29,222 +116,152,167 +23,207,222 +42,180,41 +167,152,166 +108,164,109 +121,44,45 +78,87,77 +143,72,73 +95,36,37 +69,147,68 +146,69,70 +104,75,76 +182,71,72 +179,42,43 +17,215,16 +82,216,220 +216,82,83 +216,0,220 +120,45,46 +175,196,199 +130,129,86 +129,130,131 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri3/coords.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/coords.csv new file mode 100644 index 000000000..f09184164 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/coords.csv @@ -0,0 +1,229 @@ +6.004848057265232963e-02,-4.843165897626279248e-01,0.000000000000000000e+00 +2.222958961149638230e-02,-4.671951015930111417e-01,0.000000000000000000e+00 +-3.599013571927644974e-04,-4.336966670623251252e-01,0.000000000000000000e+00 +1.129191792049797846e-02,-3.941646710783676677e-01,0.000000000000000000e+00 +3.371775885570552078e-02,-3.591174487749487221e-01,0.000000000000000000e+00 +6.068258896419848059e-02,-3.273456037328045798e-01,0.000000000000000000e+00 +9.326643040747466251e-02,-3.022753302584796353e-01,0.000000000000000000e+00 +1.313536352330894885e-01,-2.860101948301447816e-01,0.000000000000000000e+00 +1.082324586709848407e-01,-2.517169027006946336e-01,0.000000000000000000e+00 +9.006003542919266414e-02,-2.142065630546204635e-01,0.000000000000000000e+00 +7.780894812865567223e-02,-1.743382945120739436e-01,0.000000000000000000e+00 +6.546797066465057102e-02,-1.344969404472551588e-01,0.000000000000000000e+00 +5.344975889837186994e-02,-9.457550132748274163e-02,0.000000000000000000e+00 +4.608457487073682607e-02,-5.352257919872736858e-02,0.000000000000000000e+00 +3.857304214396518188e-02,-1.249611288652438881e-02,0.000000000000000000e+00 +6.274447045565643977e-02,-2.631932839539855018e-02,0.000000000000000000e+00 +9.035631321699863494e-02,-5.752362159082183984e-02,0.000000000000000000e+00 +1.160470691253537995e-01,-9.037966187275070507e-02,0.000000000000000000e+00 +1.404661618188973449e-01,-1.241717300554980447e-01,0.000000000000000000e+00 +1.604857760409248435e-01,-1.607542662006091749e-01,0.000000000000000000e+00 +1.801518474681697290e-01,-1.964365711270123771e-01,0.000000000000000000e+00 +1.995246799054946618e-01,-1.595457939896835486e-01,0.000000000000000000e+00 +2.198541938423331232e-01,-1.231362905299398791e-01,0.000000000000000000e+00 +2.413320477870610214e-01,-8.744213761312208399e-02,0.000000000000000000e+00 +2.689929143508745790e-01,-5.622647242850693783e-02,0.000000000000000000e+00 +2.964665201939071792e-01,-2.484705153215788567e-02,0.000000000000000000e+00 +3.303079852412492690e-01,-5.466469056304048939e-04,0.000000000000000000e+00 +3.279141515646453175e-01,-3.446947993954788819e-02,0.000000000000000000e+00 +3.186495128096864526e-01,-7.508643239248409540e-02,0.000000000000000000e+00 +3.070745092631869677e-01,-1.151570264634891733e-01,0.000000000000000000e+00 +2.954995057139817027e-01,-1.552276205438611612e-01,0.000000000000000000e+00 +2.816551886914611114e-01,-1.945208283635161128e-01,0.000000000000000000e+00 +2.660243645808258450e-01,-2.331899642928423055e-01,0.000000000000000000e+00 +2.467620699260876516e-01,-2.701442942886334575e-01,0.000000000000000000e+00 +2.241841591831262581e-01,-3.051657918470397912e-01,0.000000000000000000e+00 +2.425712456640254089e-01,-3.339031779689720647e-01,0.000000000000000000e+00 +2.771641477181115421e-01,-3.425967184432428536e-01,0.000000000000000000e+00 +3.183835124524804772e-01,-3.362748094844578706e-01,0.000000000000000000e+00 +3.597470223905689934e-01,-3.309182002456768079e-01,0.000000000000000000e+00 +4.011105323155444990e-01,-3.255615910085939424e-01,0.000000000000000000e+00 +4.426413474374059631e-01,-3.219570981784447006e-01,0.000000000000000000e+00 +4.842843897907083694e-01,-3.196139716735840741e-01,0.000000000000000000e+00 +5.259272050714104418e-01,-3.172668466360579753e-01,0.000000000000000000e+00 +5.676100050178192191e-01,-3.172150970607802156e-01,0.000000000000000000e+00 +6.093089478250570679e-01,-3.180983071822549024e-01,0.000000000000000000e+00 +6.506324448793682214e-01,-3.237087012969154798e-01,0.000000000000000000e+00 +6.907510522837059241e-01,-3.348946040705889082e-01,0.000000000000000000e+00 +7.252600442088925625e-01,-3.573795335288036945e-01,0.000000000000000000e+00 +7.589021018763575377e-01,-3.758424185488901670e-01,0.000000000000000000e+00 +7.997552957392117801e-01,-3.840043047139867216e-01,0.000000000000000000e+00 +8.304427039914931141e-01,-4.098013673791538469e-01,0.000000000000000000e+00 +8.261393757387265335e-01,-4.479788725331246280e-01,0.000000000000000000e+00 +8.608394355092178207e-01,-4.683057964788007732e-01,0.000000000000000000e+00 +8.975549927473537304e-01,-4.880777451125443700e-01,0.000000000000000000e+00 +9.335646644651234283e-01,-5.091202163551957760e-01,0.000000000000000000e+00 +9.666058611040282411e-01,-5.344618233120926876e-01,0.000000000000000000e+00 +9.942408345475226561e-01,-5.656578949225563591e-01,0.000000000000000000e+00 +9.774597312587106623e-01,-5.900559588542687584e-01,0.000000000000000000e+00 +9.364259107566920148e-01,-5.826374001342659037e-01,0.000000000000000000e+00 +8.964758914663891742e-01,-5.706698879401411739e-01,0.000000000000000000e+00 +8.574042597769797602e-01,-5.564575100954138875e-01,0.000000000000000000e+00 +8.599800873013554448e-01,-5.868060969177758546e-01,0.000000000000000000e+00 +8.540309078108746510e-01,-6.276286905262946636e-01,0.000000000000000000e+00 +8.165068157654630232e-01,-6.290399565060077469e-01,0.000000000000000000e+00 +7.823968674493316788e-01,-6.057326011315878889e-01,0.000000000000000000e+00 +7.599331800962800809e-01,-5.708718838223307834e-01,0.000000000000000000e+00 +7.400132008379731730e-01,-5.345142274082567146e-01,0.000000000000000000e+00 +7.015194406295303109e-01,-5.502291328919977076e-01,0.000000000000000000e+00 +6.618499110439326483e-01,-5.624975179651608981e-01,0.000000000000000000e+00 +6.207610447201008519e-01,-5.696625900779686003e-01,0.000000000000000000e+00 +5.794795473999154733e-01,-5.751841809132378636e-01,0.000000000000000000e+00 +5.378310822895213672e-01,-5.774282795021247194e-01,0.000000000000000000e+00 +4.961335829070667724e-01,-5.782102537025544109e-01,0.000000000000000000e+00 +4.544271066360761613e-01,-5.784864577445609779e-01,0.000000000000000000e+00 +4.127212571027193966e-01,-5.779814804956712182e-01,0.000000000000000000e+00 +3.710153574432312196e-01,-5.774803577000483523e-01,0.000000000000000000e+00 +3.293264519980357852e-01,-5.762851381422802177e-01,0.000000000000000000e+00 +2.876473842094138256e-01,-5.747076377475347497e-01,0.000000000000000000e+00 +2.460068502106081412e-01,-5.724420905915483804e-01,0.000000000000000000e+00 +2.044097500999980388e-01,-5.693913110338759687e-01,0.000000000000000000e+00 +1.631177032954650163e-01,-5.635651551283991090e-01,0.000000000000000000e+00 +1.221030456538223230e-01,-5.560278896787393954e-01,0.000000000000000000e+00 +8.148418135775653548e-02,-5.466467805603641983e-01,0.000000000000000000e+00 +4.067337264083848575e-02,-5.384378566447032277e-01,0.000000000000000000e+00 +2.828973861332730391e-02,-5.109351455050527013e-01,0.000000000000000000e+00 +2.930681671732353610e-01,-5.134229555289524516e-01,-1.727485770284116541e-17 +2.600097362734380413e-01,-5.140297866988233766e-01,-1.879463445867657789e-17 +2.774197196483950134e-01,-5.453898566196215825e-01,-2.047975519059558615e-17 +2.790186880511847378e-01,-4.817737621635848622e-01,-1.541740229848714773e-17 +3.101169635743263875e-01,-5.429291318652529341e-01,-1.883061141307220473e-17 +3.327745549499603883e-01,-5.072767364207944052e-01,-1.502442700709379690e-17 +3.133570504250967059e-01,-4.814446811188140551e-01,-1.386241883588134309e-17 +2.980687111649198973e-01,-4.137053630844180763e-01,-9.228598802790667865e-18 +2.640153677521559494e-01,-4.380487505686842531e-01,-1.265498745595975535e-17 +3.064847224977761408e-01,-4.473240311789103973e-01,-1.149144489813658682e-17 +3.060567569896374129e-01,-3.773516405686173081e-01,-6.020658084270805326e-18 +2.729853021973169258e-01,-3.908948278953007227e-01,-8.555966443742832848e-18 +1.866977516927566527e-01,-2.428463245134540038e-01,-7.830591465188923398e-19 +2.068060119115038842e-01,-2.745332971968315605e-01,-2.373667439788383739e-18 +2.198130030994707995e-01,-2.352224966413097029e-01,1.289782594005465593e-18 +7.063424768711521473e-01,-4.411246896068308221e-01,6.801505527331975002e-18 +7.310816964947522978e-01,-4.725754352217414467e-01,5.435658030102640157e-18 +7.430576051730826137e-01,-4.394588954734318098e-01,8.567206636686413663e-18 +3.554391194478411786e-01,-4.574259202984120587e-01,-1.010396227282430349e-17 +3.516724355891424070e-01,-5.428182220516288847e-01,-1.697135092231039550e-17 +8.262488032214815314e-01,-5.407282766442348398e-01,4.326575573369664190e-18 +8.555342985772320663e-01,-5.117689005030723326e-01,7.902799231869848653e-18 +8.193935908187569561e-01,-5.103192685436235276e-01,6.407106293958702339e-18 +1.306720250059210664e-01,-5.045860005946236626e-01,-2.381340018641560953e-17 +1.632305621163871734e-01,-5.262252297647344035e-01,-2.406125073378832192e-17 +3.290093981454583760e-01,-4.115457098395491897e-01,-7.681299722876306447e-18 +3.651272407767559014e-01,-4.036836444541481717e-01,-5.456054356508048367e-18 +3.935398716096445426e-01,-5.399923694311665745e-01,-1.488519087981771104e-17 +3.729935932754732120e-01,-5.056195075614049461e-01,-1.310336089732272094e-17 +6.569733820633893995e-01,-5.120200001777734933e-01,-9.592664016313833467e-19 +6.847141673378932536e-01,-5.145301883740759363e-01,7.915067801776830353e-20 +6.164265826646904145e-01,-4.033586494974634729e-01,5.760369819077551492e-18 +6.411091127472650086e-01,-4.395858466090564742e-01,4.017250304423437792e-18 +6.526637828351006254e-01,-3.974656006726277058e-01,7.836446715847645356e-18 +2.459262898424920130e-01,-4.802338343156333789e-01,-1.677026277146026155e-17 +6.651446457232087495e-01,-3.660263078225355349e-01,1.085888980237617333e-17 +6.279306461346875201e-01,-3.565721741284515467e-01,9.943412382273224089e-18 +4.191556928578594743e-01,-4.998230317007048562e-01,-1.059288272028964367e-17 +3.872253451216757236e-01,-4.810738390767071437e-01,-1.054380195882012634e-17 +4.017667336937554845e-01,-4.552424031177198516e-01,-7.869576350330144614e-18 +3.878102615504226969e-01,-4.243802211001586056e-01,-6.069725923763681479e-18 +4.407837498559653566e-01,-3.734351093857147252e-01,2.863189641440236596e-19 +4.205988374316725897e-01,-4.113674645566299803e-01,-3.588630968519288195e-18 +4.638807134970191481e-01,-4.097343019173615986e-01,-1.533057963428713930e-18 +2.279610451761657497e-01,-5.171742627807383030e-01,-2.046854200273449354e-17 +2.369839476933869871e-01,-5.448081766861434527e-01,-2.223481419072612798e-17 +1.988317346937762964e-01,-5.377701693183329912e-01,-2.338163512442433305e-17 +6.710815505042109219e-01,-4.716465444667687912e-01,2.836594594499245182e-18 +6.362133875561243324e-01,-4.838337253747050926e-01,3.276633793816271381e-19 +4.403711457439308252e-01,-4.573839421557857055e-01,-6.318454272455870451e-18 +2.175450349967481267e-01,-4.841198642983345346e-01,-1.833903143480349045e-17 +4.655281893195993836e-01,-4.892487437148987928e-01,-7.698180840469857472e-18 +4.538105942362591350e-01,-5.140304072954371417e-01,-1.016429425201083959e-17 +2.417442759263628560e-01,-4.046480212263526832e-01,-1.102623820145781641e-17 +3.961193753489061220e-01,-3.941816725372100927e-01,-3.330405675431293114e-18 +4.134598826626091905e-01,-3.652146029323521947e-01,-2.855156416968288731e-19 +3.795054521820392934e-01,-3.647846834867956023e-01,-1.763852620199532298e-18 +4.329958626408048072e-01,-5.430565190854057533e-01,-1.336853161212201476e-17 +4.643206534022696896e-01,-5.480253678448934185e-01,-1.236341057014352288e-17 +6.066116354713380066e-01,-4.992734240170723647e-01,-2.201926463999909631e-18 +6.051205554935691344e-01,-4.510679881756856635e-01,1.513740891825482284e-18 +6.036380578096524063e-01,-5.382650872311276480e-01,-5.393527329917409851e-18 +6.310078994230482463e-01,-5.275920443918500347e-01,-3.337308449715535744e-18 +7.970967531702105591e-02,-4.418279564607770493e-01,-2.115904153996055978e-17 +1.038008520977942162e-01,-4.754164822785219569e-01,-2.272147231527141795e-17 +1.186555539967287520e-01,-4.317854004356992959e-01,-1.863678194017923428e-17 +3.428798368740662017e-01,-3.697836586996462449e-01,-3.787079913592063158e-18 +5.845598008792478595e-01,-4.106291978554042488e-01,3.770842602011601932e-18 +5.675642043587046937e-01,-4.455286493231654377e-01,2.758735391667036325e-19 +1.961850383120391783e-01,-5.046327454600280094e-01,-2.089962555936000661e-17 +6.724451779619052827e-01,-4.284134662048774134e-01,6.289270737536108003e-18 +5.833593345168244237e-01,-4.752670266436146984e-01,-1.353926616824462512e-18 +4.850996444015142073e-01,-3.697699289021140756e-01,2.547365782715091133e-18 +5.076783832915993111e-01,-4.050806675688236602e-01,7.824625640789148813e-19 +4.830207286832349234e-01,-4.489767229960112127e-01,-3.759564497091156308e-18 +5.125748483774577036e-01,-4.889351374995903887e-01,-5.578482404284583662e-18 +4.842361632348507472e-01,-5.263433526138480145e-01,-9.775415593540884881e-18 +1.950334663760327769e-01,-4.629173190189883047e-01,-1.767802778224849607e-17 +2.270078668052600002e-01,-4.462565793836348327e-01,-1.494697897810010128e-17 +1.651170901599118834e-01,-4.858677616177652370e-01,-2.081090126476243532e-17 +5.285942400370169381e-01,-3.658618000318354935e-01,4.790899385480041566e-18 +5.509895420753776474e-01,-3.986732917454864911e-01,3.213911487056408080e-18 +5.871755978982712287e-01,-3.648310895435545320e-01,7.480526018083942151e-18 +5.292952888037401049e-01,-4.460121503827610412e-01,-1.466261691275629822e-18 +5.344701194539245304e-01,-5.271348574859566760e-01,-7.600483668739033284e-18 +5.520611933418222428e-01,-4.915239753450584836e-01,-4.023179724739084309e-18 +4.633379682511196695e-01,-3.589020793437849299e-01,2.430931478601666400e-18 +1.255899159169002188e-01,-3.599287747940795867e-01,-1.269030209678330449e-17 +1.275707063567864119e-01,-3.922361007441543812e-01,-1.513683871045773409e-17 +1.506046829290701161e-01,-3.730823000136674894e-01,-1.260832827531038475e-17 +1.571925174312643336e-01,-4.043978713704779460e-01,-1.477189244476914763e-17 +1.274721889996559554e-01,-3.182305620606070695e-01,-9.334950905894233512e-18 +9.255213204917475678e-02,-3.451488323261065472e-01,-1.300195462554573443e-17 +5.568343620943689842e-01,-5.381766894572952431e-01,-7.470865912029307647e-18 +5.520593025695716971e-01,-3.527695702017930590e-01,6.863032542368104443e-18 +5.063167671771252598e-01,-3.555186240070161707e-01,4.610331021023201981e-18 +5.803306631273338345e-01,-5.196149741501837616e-01,-4.968220552613069872e-18 +5.130491111664513548e-01,-5.396102056257139346e-01,-9.533191610262461180e-18 +7.170875414457016372e-01,-5.087699357053233618e-01,1.972743865539053522e-18 +7.586842815691374753e-01,-5.051439159132541379e-01,4.109628168358268647e-18 +6.997731783405947148e-01,-4.820179990374312551e-01,3.300581074637452875e-18 +7.827410035435024005e-01,-4.211005375323094713e-01,1.177474504439369191e-17 +7.345124661443750425e-01,-4.038774014924569333e-01,1.097830041094082715e-17 +7.679913991031895870e-01,-4.646110044553951046e-01,7.704198017307033959e-18 +7.984093830221202781e-01,-4.600205925758923953e-01,9.418930719858002314e-18 +7.942155359687931293e-01,-5.257783024074814682e-01,4.072996667031445152e-18 +7.700798167462793442e-01,-5.409216299308831077e-01,1.810074062441765417e-18 +7.939744248165423457e-01,-4.893666500157416444e-01,6.919019504443180896e-18 +5.709257332012854236e-02,-3.716595886393369019e-01,-1.666101112924960249e-17 +5.112584146901036353e-02,-4.108350216831469504e-01,-2.000032198099925111e-17 +2.572862723993421530e-02,-4.208857730973627476e-01,-2.191987201168963495e-17 +1.819783934610907927e-01,-3.726564621742163297e-01,-1.117777616228104046e-17 +2.191941743338787218e-01,-3.718472338623092233e-01,-9.456983710394734104e-18 +1.960829200078681167e-01,-3.386707377207397451e-01,-7.883241517440262009e-18 +2.019256573112107322e-01,-4.121865306030855214e-01,-1.339090212940340623e-17 +1.365963778979940868e-01,-4.694877227164150901e-01,-2.079585916518953392e-17 +1.624201105326995020e-01,-4.444404342520450468e-01,-1.768072745098310757e-17 +8.257150847470993149e-01,-4.812933467750425409e-01,8.965912214542004222e-18 +7.969122986405612341e-01,-5.681900733971515516e-01,8.655763996170871143e-19 +8.237198220327625053e-01,-5.994881581084756661e-01,-3.961875074472569717e-19 +8.330271007031416763e-01,-5.707423342154352985e-01,2.273606411561390058e-18 +1.865362631674855054e-01,-3.061155847615989467e-01,-5.754186143914049352e-18 +2.800786377355252155e-01,-9.118772326656184035e-02,1.527412702109092832e-17 +1.694502208704222190e-01,-2.785590607283680020e-01,-4.353055539694218621e-18 +1.556625605058688522e-01,-3.048563219223554555e-01,-7.030263324536269983e-18 +2.508625536327142580e-01,-3.690184734804894395e-01,-7.824782510160641152e-18 +1.495092540501617440e-01,-2.580253078495671204e-01,-3.630048844927545085e-18 +1.518122034093329631e-01,-2.309940570415875416e-01,-1.406694273816726570e-18 +3.974705214215357163e-02,-4.431261849432084898e-01,-2.304052270378379585e-17 +1.621545845045298528e-01,-3.375288993792957548e-01,-9.304561190970262433e-18 +7.977526476987611970e-02,-8.360414558363807314e-02,6.949153534282755120e-18 +6.099674602675453361e-02,-5.199517593572614560e-01,-2.812175335659406193e-17 +9.293860773791949581e-02,-1.220193639284076481e-01,4.521392415391273150e-18 +1.175550807119275787e-01,-1.525692737742509186e-01,3.220755878550328983e-18 +9.318519977510716923e-02,-3.933459535833286336e-01,-1.675517886045362844e-17 +9.318422178578347759e-02,-5.144909170386896546e-01,-2.625992957012520491e-17 +8.961456747825403690e-01,-5.310146958972702391e-01,8.201342114882882077e-18 +2.643442044668168900e-01,-1.220265474352069945e-01,1.215390626778098039e-17 +2.492247992612938168e-01,-1.583316703405705239e-01,8.632203041308343337e-18 +2.324359730174812011e-01,-1.941845284290843188e-01,5.071640212259583154e-18 +6.924456634791434917e-01,-3.898830853511076056e-01,1.020292720692116187e-17 +9.325501996315739284e-01,-5.486946519748313600e-01,8.435395958091142944e-18 +1.344697051645919184e-01,-2.059451790172096841e-01,-2.137273746473169572e-19 +1.160759090950585493e-01,-1.815627153117528869e-01,8.801377930583671554e-19 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri3/uvs.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/uvs.csv new file mode 100644 index 000000000..2b6d22321 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri3/uvs.csv @@ -0,0 +1,229 @@ +2.803681566628321575e-01,7.275450415373742319e-02 +2.613560598505595967e-01,8.136172087474789760e-02 +2.500000000000000000e-01,9.820186251219346907e-02 +2.558575360227799966e-01,1.180751616949042571e-01 +2.671313266634074424e-01,1.356939010735450091e-01 +2.806869320108965060e-01,1.516660615069693741e-01 +2.970672946363258071e-01,1.642692461665505865e-01 +3.162142766617159761e-01,1.724459621296348111e-01 +3.045909308670474158e-01,1.896856900382694611e-01 +2.954553940703336656e-01,2.085426736961157046e-01 +2.892965974506061522e-01,2.285850218984228910e-01 +2.830926117614243065e-01,2.486138398082437806e-01 +2.770508849999079870e-01,2.686829176193811231e-01 +2.733483017613507204e-01,2.893208081048594948e-01 +2.695721469408242088e-01,3.099453988733773535e-01 +2.817234692951678943e-01,3.029962709420069289e-01 +2.956043371472441006e-01,2.873094269306564752e-01 +3.085194471913695335e-01,2.707922260600768571e-01 +3.207952739689011734e-01,2.538044705905370124e-01 +3.308594200625681880e-01,2.354139070083400842e-01 +3.407458351421609466e-01,2.174759025215720065e-01 +3.504848347919565232e-01,2.360214232544578516e-01 +3.607047718998585006e-01,2.543250008335678491e-01 +3.715019959362911295e-01,2.722689614743918907e-01 +3.854075087542826461e-01,2.879615223471830299e-01 +3.992188829325059585e-01,3.037364055558735010e-01 +4.162314709116204936e-01,3.159525661463958857e-01 +4.150280565212086104e-01,2.988990733179091586e-01 +4.103705902533340000e-01,2.784803510172514929e-01 +4.045516705961056392e-01,2.583362908811227543e-01 +3.987327509375170886e-01,2.381922307402850325e-01 +3.917730149737549405e-01,2.184389737793836495e-01 +3.839151763726116329e-01,1.989994466739910817e-01 +3.742317456453979618e-01,1.804219770111637755e-01 +3.628815073397606561e-01,1.628161698293754678e-01 +3.721249584137103494e-01,1.483694752490663515e-01 +3.895153045120467450e-01,1.439991082462896421e-01 +4.102368680733660122e-01,1.471772222022552923e-01 +4.310308954880265886e-01,1.498700661975437831e-01 +4.518249228960951047e-01,1.525629101919785680e-01 +4.727030570169611368e-01,1.543749402358084166e-01 +4.936376093704856194e-01,1.555528634065213855e-01 +5.145720475713696507e-01,1.567327966967330954e-01 +5.355265866349734338e-01,1.567588119475818165e-01 +5.564892409453521260e-01,1.563148096009158994e-01 +5.772631533116657776e-01,1.534943843226472260e-01 +5.974313504364370253e-01,1.478710711830794888e-01 +6.147795137141347510e-01,1.365675758977266674e-01 +6.316918567544117513e-01,1.272860198151785638e-01 +6.522293409870636438e-01,1.231829230294757688e-01 +6.676563395526575739e-01,1.102143710598749021e-01 +6.654929949574758252e-01,9.102199376928125918e-02 +6.829372107708329143e-01,8.080335868694028811e-02 +7.013946459569925240e-01,7.086371762295168297e-02 +7.194972224069356992e-01,6.028536669125313108e-02 +7.361075040235331990e-01,4.754577881338699352e-02 +7.500000000000000000e-01,3.186306791025916851e-02 +7.415638996217173151e-01,1.959781259174220303e-02 +7.209356117969083488e-01,2.332722805072772951e-02 +7.008521663257146761e-01,2.934346741296727304e-02 +6.812102988511904433e-01,3.648823281061164964e-02 +6.825052041490597965e-01,2.123156461864812716e-02 +6.795144666220716001e-01,7.094635710425842247e-04 +6.606505694365950587e-01,0.000000000000000000e+00 +6.435030110823857230e-01,1.171694054359353858e-02 +6.322101945067886142e-01,2.924192119703477102e-02 +6.221961363328887273e-01,4.751943452553747393e-02 +6.028447731080124328e-01,3.961932701684641595e-02 +5.829023338187868664e-01,3.345183455968291780e-02 +5.622463736729017558e-01,2.984985043974852301e-02 +5.414935751729917923e-01,2.707406783878016712e-02 +5.205562967220013215e-01,2.594592741625897925e-02 +4.995943680418835631e-01,2.555281781348034062e-02 +4.786279265516441006e-01,2.541396609538095278e-02 +4.576618001313675355e-01,2.566782537310932644e-02 +4.366956485119685150e-01,2.591974696211108570e-02 +4.157380401268942482e-01,2.652060091014327159e-02 +3.947853772723320387e-01,2.731363289664714977e-02 +3.738520859044504596e-01,2.845255582028925062e-02 +3.529406293727134769e-01,2.998622629103213713e-02 +3.321825274962993957e-01,3.291511810417625111e-02 +3.115638731151850194e-01,3.670420913214719749e-02 +2.911441897036712856e-01,4.142022671574665388e-02 +2.706280130894465064e-01,4.554697005069598126e-02 +2.644025833363473077e-01,5.937297587736236476e-02 +3.975104823160612866e-01,5.812231823450592083e-02 +3.808915367902838134e-01,5.781725553549286328e-02 +3.896437841728077611e-01,4.205210033868303499e-02 +3.904476084336732655e-01,7.403281991766556824e-02 +4.060811558464719750e-01,4.328914182957350337e-02 +4.174714507445669298e-01,6.121211039244519453e-02 +4.077099937981265021e-01,7.419825366051890914e-02 +4.000243272244585757e-01,1.082517766416669497e-01 +3.829052249638976724e-01,9.601400795445459713e-02 +4.042551763627315609e-01,9.135119187389484363e-02 +4.040400319873609369e-01,1.265273123433032776e-01 +3.874145391647371151e-01,1.197189585799390416e-01 +3.440365547185106343e-01,1.941450564287295066e-01 +3.541452644212317868e-01,1.782155625426455337e-01 +3.606840647249212051e-01,1.979776636232181974e-01 +6.052693823343643365e-01,9.446768945341879609e-02 +6.177061414933532335e-01,7.865695028967678581e-02 +6.237266018881651997e-01,9.530510796381420902e-02 +4.288652511308417847e-01,8.627282788580030448e-02 +4.269716853397042544e-01,4.334489777747312089e-02 +6.655480057164692154e-01,4.439554319324037074e-02 +6.802702426395655921e-01,5.895383532783259051e-02 +6.621017924998215953e-01,5.968258602503079269e-02 +3.158716214622160345e-01,6.256478173534500697e-02 +3.322392632380136157e-01,5.168643206751215302e-02 +4.155786526253914537e-01,1.093374651832626915e-01 +4.337356081390246754e-01,1.132898377794127887e-01 +4.480190435956874495e-01,4.476549426330411058e-02 +4.376901359282896475e-01,6.204522301722221328e-02 +5.804508330283177919e-01,5.882760393384877523e-02 +5.943965221239879693e-01,5.756569646400404999e-02 +5.600673776703160023e-01,1.134532173874064770e-01 +5.724756381870964583e-01,9.524128781415928946e-02 +5.782843359241462977e-01,1.164157372268248974e-01 +3.738115870564163168e-01,7.480696364808957222e-02 +5.845586440145957852e-01,1.322207189220647172e-01 +5.658506347375513723e-01,1.369734470031897799e-01 +4.608964829155538512e-01,6.495919424781226859e-02 +4.448446409132759127e-01,7.438468125338086601e-02 +4.521548047042027729e-01,8.737051316888329311e-02 +4.451386867588256191e-01,1.028853730033113117e-01 +4.717692161729007960e-01,1.284962085252169262e-01 +4.616219723113064166e-01,1.094270716336123855e-01 +4.833803897862222199e-01,1.102480858256956048e-01 +3.647802018895912601e-01,5.623648248335218203e-02 +3.693161438970208876e-01,4.234451915182066428e-02 +3.501364813337781157e-01,4.588262600904538524e-02 +5.875432108697580258e-01,7.912391694345052851e-02 +5.700144871872998564e-01,7.299724698032682146e-02 +4.715617941908231137e-01,8.629393089784874460e-02 +3.595439247567662200e-01,7.285340085529397325e-02 +4.842085994200516774e-01,7.027503989525561712e-02 +4.783179969600194759e-01,5.781694355270853430e-02 +3.717092289115044856e-01,1.128050317977807304e-01 +4.493157969793027950e-01,1.180666148186409053e-01 +4.580331177532160347e-01,1.326287745673508656e-01 +4.409637404368580427e-01,1.328449012149777175e-01 +4.678541340027290163e-01,4.322510245399585616e-02 +4.836015538621015741e-01,4.072719119166008650e-02 +5.551332634880936645e-01,6.523548988272981353e-02 +5.543836762799098095e-01,8.946905120094950092e-02 +5.536384035134622739e-01,4.563382370329177595e-02 +5.673976139309468980e-01,5.099931482650572195e-02 +2.902521201642689341e-01,9.411414715822508104e-02 +3.023630989274502801e-01,7.722871534362267532e-02 +3.098307698041575797e-01,9.916268355204886642e-02 +4.225515203440096679e-01,1.303318449541136792e-01 +5.440474911796551183e-01,1.097982088520833566e-01 +5.355035619892732912e-01,9.225375598375941399e-02 +3.488059492487954882e-01,6.254128242365294965e-02 +5.882287258751606185e-01,1.008578030653853874e-01 +5.434439995879605245e-01,7.730384882659326051e-02 +4.940474495110442343e-01,1.303387471194935032e-01 +5.053981041380725125e-01,1.125875343001152828e-01 +4.930023488775783780e-01,9.052036008509796450e-02 +5.078596270935147317e-01,7.043269422024621418e-02 +4.936133651918334642e-01,5.162705002361784451e-02 +3.482270375838252829e-01,8.351222329224894381e-02 +3.643010255042858914e-01,9.188781514227831182e-02 +3.331876478386989748e-01,7.197470790025570220e-02 +5.159128041530447462e-01,1.323034193388055169e-01 +5.271712424539121145e-01,1.158086136699735952e-01 +5.453624897135361804e-01,1.328215722272323429e-01 +5.162652313841011864e-01,9.201069309322384981e-02 +5.188666926857949946e-01,5.122914921601956495e-02 +5.277099768564508242e-01,6.913124844808256342e-02 +4.831075439967981167e-01,1.358021703636174138e-01 +3.133167726140508313e-01,1.352860358921499362e-01 +3.143125442681329318e-01,1.190446815557854171e-01 +3.258920533820747201e-01,1.286735708372034881e-01 +3.292038519080439096e-01,1.129307857042702451e-01 +3.142630181851661653e-01,1.562483231840162134e-01 +2.967082066462841672e-01,1.427161241348098575e-01 +5.301095169835778886e-01,4.567826252715409541e-02 +5.277090263382266944e-01,1.388850703256878927e-01 +5.047136002636432028e-01,1.375030817015177875e-01 +5.419214432092265277e-01,5.500950200699786241e-02 +5.080980457734296518e-01,4.495761346835628475e-02 +6.106710798128884843e-01,6.046145777847407310e-02 +6.315823553739297047e-01,6.228430973362112516e-02 +6.019669021061641034e-01,7.391003855172165182e-02 +6.436760132136669643e-01,1.045341167903676566e-01 +6.194308384123143885e-01,1.131924333480091999e-01 +6.362611763309573565e-01,8.266078342534287360e-02 +6.515527314348561472e-01,8.496844906130640585e-02 +6.494444246028125978e-01,5.191110883534422182e-02 +6.373110537177812951e-01,4.429834173356500537e-02 +6.493232145817725565e-01,7.021576671327088570e-02 +2.788821798553471898e-01,1.293887881716429544e-01 +2.758826185058923519e-01,1.096947382732306880e-01 +2.631150760578294667e-01,1.046420819401980423e-01 +3.416640659090321996e-01,1.288876456031264328e-01 +3.603729706631270679e-01,1.292944562371297346e-01 +3.487546129183039523e-01,1.459727548467679437e-01 +3.516918404370569795e-01,1.090153154298978827e-01 +3.188498783034821038e-01,8.020918748087375871e-02 +3.318318376478091025e-01,9.280081724755916139e-02 +6.652796978140540496e-01,7.427433159727704626e-02 +6.508001257271008866e-01,3.059010561333715128e-02 +6.642766507408374155e-01,1.485611126692510178e-02 +6.689555527033987925e-01,2.930704763532241547e-02 +3.439553721296377820e-01,1.623386953613442374e-01 +3.909804602837054777e-01,2.703860020524723740e-01 +3.353659745551822446e-01,1.761917536984491384e-01 +3.284347207028453508e-01,1.629717447819733489e-01 +3.762931173891543302e-01,1.307165144961389136e-01 +3.253413656340348181e-01,1.865143646404784639e-01 +3.264990911795907502e-01,2.001033606225653128e-01 +2.701623385402304178e-01,9.346150915205543586e-02 +3.316983539198244957e-01,1.465467732946857948e-01 +2.902850929193088736e-01,2.741983749017773975e-01 +2.808448632546685642e-01,5.484019527168193520e-02 +2.969024934966720264e-01,2.548864957939130371e-01 +3.092775461612049526e-01,2.395286196417029390e-01 +2.970264588368762837e-01,1.184867426768418525e-01 +2.970259671876705476e-01,5.758543872538020303e-02 +7.006861616808717219e-01,4.927869901462073043e-02 +3.830705358785139736e-01,2.548828845424127576e-01 +3.754697948677152564e-01,2.366317805592956791e-01 +3.670298120496143790e-01,2.186080365612073084e-01 +5.982832556956343417e-01,1.202275760118740738e-01 +7.189872364412472905e-01,4.039073249734334570e-02 +3.177807695361999363e-01,2.126957894837770147e-01 +3.085339454561825678e-01,2.249532023456717045e-01 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri6/connectivity.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/connectivity.csv new file mode 100644 index 000000000..0eb91197c --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/connectivity.csv @@ -0,0 +1,371 @@ +170,172,171,314,315,316 +170,171,173,316,317,318 +172,170,174,314,319,320 +57,58,55,142,321,322 +56,57,55,141,322,140 +172,174,77,320,323,324 +175,174,170,325,319,326 +175,170,176,326,327,328 +177,179,178,329,330,331 +178,179,173,330,332,333 +180,177,181,334,335,336 +180,181,36,336,337,338 +182,184,183,339,340,341 +185,187,186,342,343,344 +183,184,33,340,345,346 +176,179,188,347,348,349 +33,184,32,345,350,117 +175,189,174,351,352,325 +190,192,191,353,354,355 +190,191,60,355,356,357 +174,189,76,352,358,359 +193,194,81,360,361,362 +194,80,81,363,165,361 +195,196,188,364,365,366 +189,198,197,367,368,369 +189,197,75,369,370,371 +198,189,175,367,351,372 +198,175,188,372,373,374 +199,200,68,375,376,377 +177,195,179,378,379,329 +201,203,202,380,381,382 +195,188,179,366,348,379 +171,204,173,383,384,317 +205,206,45,385,386,387 +207,197,198,388,368,389 +207,198,208,389,390,391 +209,208,188,392,393,394 +209,188,210,394,395,396 +201,206,203,397,398,380 +211,213,212,399,400,401 +214,204,171,402,383,403 +79,216,215,404,405,406 +217,199,218,407,408,409 +212,213,219,400,410,411 +214,220,204,412,413,402 +221,222,207,414,415,416 +178,223,181,417,418,419 +224,226,225,420,421,422 +221,207,219,416,423,424 +227,222,228,425,426,427 +227,228,73,427,428,429 +225,211,212,430,401,431 +207,227,197,432,433,388 +197,227,74,433,434,435 +229,230,218,436,437,438 +218,230,202,437,439,440 +231,229,232,441,442,443 +231,232,69,443,444,445 +225,226,39,421,446,447 +203,206,205,398,385,448 +28,25,27,449,450,112 +27,25,26,450,110,111 +233,235,234,451,452,453 +233,234,0,453,454,455 +236,196,195,456,364,457 +226,196,236,458,456,459 +80,194,216,363,460,461 +237,230,238,462,463,464 +239,220,214,465,412,466 +80,216,79,461,404,164 +232,218,199,467,408,468 +203,240,202,469,470,381 +238,230,241,463,471,472 +226,236,38,459,473,474 +242,243,213,475,476,477 +213,243,244,476,478,479 +245,246,221,480,481,482 +239,247,220,483,484,465 +220,247,248,484,485,486 +16,13,15,487,488,100 +15,13,14,488,98,99 +245,221,244,482,489,490 +229,218,232,438,467,442 +226,224,196,420,491,458 +180,195,177,492,378,334 +196,224,210,491,493,494 +239,194,249,495,496,497 +239,249,247,497,498,483 +248,223,178,499,417,500 +250,251,243,501,502,503 +201,252,206,504,505,397 +206,252,44,505,506,507 +236,195,180,457,492,508 +236,180,37,508,509,510 +243,251,253,502,511,512 +254,245,255,513,514,515 +255,245,253,514,516,517 +256,242,213,518,477,519 +257,259,258,520,521,522 +258,259,260,521,523,524 +257,262,261,525,526,527 +261,262,6,526,528,529 +263,254,255,530,515,531 +251,264,252,532,533,534 +225,212,224,431,535,422 +222,221,246,414,481,536 +252,264,43,533,537,538 +212,219,209,411,539,540 +209,207,208,541,391,392 +222,227,207,425,432,415 +265,250,243,542,503,543 +237,201,230,544,545,462 +222,246,228,536,546,426 +231,266,229,547,548,441 +229,266,241,548,549,550 +254,267,245,551,552,513 +256,213,211,519,399,553 +256,211,40,553,554,555 +250,264,251,556,532,501 +196,210,188,494,395,365 +79,215,78,406,557,163 +268,186,269,558,559,560 +263,255,266,531,561,562 +263,266,70,562,563,564 +265,243,242,543,475,565 +265,242,41,565,566,567 +268,270,186,568,569,558 +255,253,238,517,570,571 +238,251,237,572,573,464 +268,269,66,560,574,575 +187,272,271,576,577,578 +219,207,209,423,541,539 +187,271,273,578,579,580 +273,271,274,579,581,582 +245,267,246,552,583,480 +246,267,72,583,584,585 +275,276,269,586,587,588 +269,277,275,589,590,588 +276,66,269,591,574,587 +229,241,230,550,471,436 +278,279,3,592,593,594 +280,3,279,595,593,596 +278,3,4,594,88,597 +253,251,238,511,572,570 +281,283,282,598,599,600 +284,282,223,601,602,603 +284,223,248,603,499,604 +282,284,281,601,605,600 +285,235,286,606,607,608 +286,235,260,607,609,610 +249,285,286,611,608,612 +249,286,247,612,613,498 +235,285,234,606,614,452 +192,277,287,615,616,617 +287,277,274,616,618,619 +288,290,289,620,621,622 +288,289,64,622,623,624 +51,287,274,625,619,626 +291,183,34,627,628,629 +28,29,292,113,630,631 +293,294,7,632,633,634 +290,288,190,620,635,636 +290,190,60,636,357,637 +295,282,35,638,639,640 +184,182,20,339,641,642 +25,28,24,449,643,109 +24,28,292,643,631,644 +296,297,182,645,646,647 +182,297,20,646,648,641 +270,217,185,649,650,651 +217,240,185,652,653,650 +274,271,51,581,654,626 +1,298,0,655,656,85 +287,191,192,657,354,617 +51,271,50,654,658,135 +36,295,35,659,640,120 +275,288,276,660,661,586 +276,288,65,661,662,663 +271,49,50,664,134,658 +217,200,199,665,375,407 +299,261,294,666,667,668 +294,261,7,667,669,633 +13,16,300,487,670,671 +13,300,12,671,672,97 +200,217,270,665,649,673 +202,240,217,470,652,674 +83,84,301,168,675,676 +301,84,0,675,169,677 +218,202,217,440,674,409 +34,183,33,628,346,118 +178,173,204,333,384,678 +248,178,204,500,678,679 +220,248,204,486,679,413 +182,183,293,341,680,681 +66,276,65,591,663,150 +275,190,288,682,635,660 +190,275,192,682,683,353 +291,293,183,684,680,627 +291,294,293,685,632,684 +243,253,244,512,686,478 +253,245,244,516,490,686 +216,239,214,687,466,688 +182,293,296,681,689,647 +302,18,303,690,691,692 +10,302,303,693,692,694 +302,10,11,693,95,695 +283,291,34,696,629,697 +282,283,35,599,698,639 +35,283,34,698,697,119 +294,291,299,685,699,668 +273,269,186,700,559,701 +186,187,273,343,580,701 +63,289,62,702,703,147 +289,290,61,621,704,705 +289,61,62,705,146,703 +304,278,262,706,707,708 +278,5,262,709,710,707 +239,216,194,687,460,495 +295,36,181,659,337,711 +295,223,282,712,602,638 +223,295,181,712,711,418 +234,193,305,713,714,715 +193,234,285,713,614,716 +0,234,305,454,715,717 +12,300,302,672,718,719 +300,17,302,720,721,718 +302,11,12,695,96,719 +279,298,280,722,723,596 +298,279,233,722,724,725 +0,298,233,656,725,455 +192,275,277,683,590,615 +247,286,284,613,726,727 +286,260,284,610,728,726 +306,60,191,729,356,730 +53,306,191,731,730,732 +287,51,52,625,136,733 +198,188,208,374,393,390 +273,274,277,582,618,734 +5,278,4,709,597,89 +279,278,304,592,706,735 +30,308,307,736,737,738 +308,22,307,739,740,737 +170,173,176,318,741,327 +296,7,8,742,92,743 +179,176,173,347,741,332 +308,31,309,744,745,746 +293,7,296,634,742,689 +271,48,49,747,133,664 +258,260,235,524,609,748 +258,304,257,749,750,522 +304,258,235,749,748,751 +261,299,257,666,752,527 +261,6,7,529,91,669 +247,284,248,727,604,485 +21,308,309,753,746,754 +21,309,20,754,755,105 +32,309,31,756,745,116 +269,273,277,700,734,589 +185,310,272,757,758,759 +185,272,187,759,576,342 +177,178,181,331,419,335 +65,288,64,662,624,149 +283,299,291,760,699,696 +299,283,281,760,598,761 +311,59,306,762,763,764 +54,311,306,765,764,766 +200,270,268,673,568,767 +67,200,268,768,767,769 +81,305,193,770,714,362 +305,81,82,770,166,771 +188,175,176,373,328,349 +22,308,21,739,753,106 +31,308,30,744,736,115 +174,76,77,359,161,323 +304,233,279,772,724,735 +233,304,235,772,751,451 +32,184,309,350,773,756 +249,193,285,774,716,611 +184,20,309,642,755,773 +304,262,257,708,525,750 +6,262,5,528,710,90 +20,312,19,775,776,104 +9,312,8,777,778,93 +8,297,296,779,645,743 +20,297,312,648,780,775 +67,268,66,769,575,151 +297,8,312,779,778,780 +290,60,61,637,145,704 +259,299,281,781,761,782 +299,259,257,781,520,752 +260,259,281,523,782,783 +280,298,2,723,784,785 +280,2,3,785,87,595 +1,2,298,86,784,655 +272,310,47,758,786,787 +313,9,10,788,94,789 +313,19,312,790,776,791 +272,47,48,787,132,792 +9,313,312,788,791,777 +191,52,53,793,137,732 +68,200,67,376,768,152 +272,48,271,792,747,577 +52,191,287,793,657,733 +23,307,22,794,740,107 +30,307,29,738,795,114 +270,185,186,651,344,569 +203,205,310,448,796,797 +203,310,240,797,798,469 +303,19,313,799,790,800 +19,303,18,799,691,103 +10,303,313,694,800,789 +171,172,215,315,801,802 +47,310,46,786,803,131 +306,59,60,763,144,729 +306,53,54,731,138,766 +46,310,205,803,796,804 +310,185,240,757,653,798 +213,244,219,479,805,410 +244,221,219,489,424,805 +246,72,228,585,806,546 +226,38,39,474,123,446 +64,289,63,623,702,148 +41,242,256,566,518,807 +42,250,265,808,542,809 +250,42,264,808,810,556 +71,254,263,811,530,812 +254,71,267,811,813,551 +70,266,231,563,547,814 +241,266,255,549,561,815 +41,256,40,807,555,125 +252,43,44,538,128,506 +255,238,241,571,472,815 +40,225,39,816,447,124 +18,302,17,690,721,102 +40,211,225,554,430,816 +71,263,70,812,564,155 +212,209,210,540,396,817 +38,236,37,473,510,122 +215,172,78,801,818,557 +199,68,232,377,819,468 +58,311,55,820,821,321 +311,58,59,820,143,762 +311,54,55,765,139,821 +210,224,212,493,535,817 +227,73,74,429,158,434 +197,74,75,435,159,370 +230,201,202,545,382,439 +292,23,24,822,108,644 +292,29,307,630,795,823 +201,237,252,544,824,504 +23,292,307,822,823,794 +42,265,41,809,567,126 +252,237,251,824,573,534 +193,249,194,774,496,360 +206,44,45,507,129,386 +78,172,77,818,324,162 +228,72,73,806,157,428 +180,36,37,338,121,509 +69,232,68,444,819,153 +231,69,70,445,154,814 +189,75,76,371,160,358 +267,71,72,813,156,584 +264,42,43,810,127,537 +17,300,16,720,670,101 +82,301,305,825,826,771 +301,82,83,825,167,676 +301,0,305,677,717,826 +205,45,46,387,130,804 +260,281,284,783,605,728 +215,214,171,827,403,802 +214,215,216,827,405,688 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri6/coords.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/coords.csv new file mode 100644 index 000000000..98379f5f4 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/coords.csv @@ -0,0 +1,828 @@ +6.004848057265232963e-02,-4.843165897626279248e-01,0.000000000000000000e+00 +2.222958961149638230e-02,-4.671951015930111417e-01,0.000000000000000000e+00 +-3.599013571927644974e-04,-4.336966670623251252e-01,0.000000000000000000e+00 +1.129191792049797846e-02,-3.941646710783676677e-01,0.000000000000000000e+00 +3.371775885570552078e-02,-3.591174487749487221e-01,0.000000000000000000e+00 +6.068258896419848059e-02,-3.273456037328045798e-01,0.000000000000000000e+00 +9.326643040747466251e-02,-3.022753302584796353e-01,0.000000000000000000e+00 +1.313536352330894885e-01,-2.860101948301447816e-01,0.000000000000000000e+00 +1.082324586709848407e-01,-2.517169027006946336e-01,0.000000000000000000e+00 +9.006003542919266414e-02,-2.142065630546204635e-01,0.000000000000000000e+00 +7.780894812865567223e-02,-1.743382945120739436e-01,0.000000000000000000e+00 +6.546797066465057102e-02,-1.344969404472551588e-01,0.000000000000000000e+00 +5.344975889837186994e-02,-9.457550132748274163e-02,0.000000000000000000e+00 +4.608457487073682607e-02,-5.352257919872736858e-02,0.000000000000000000e+00 +3.857304214396518188e-02,-1.249611288652438881e-02,0.000000000000000000e+00 +6.274447045565643977e-02,-2.631932839539855018e-02,0.000000000000000000e+00 +9.035631321699863494e-02,-5.752362159082183984e-02,0.000000000000000000e+00 +1.160470691253537995e-01,-9.037966187275070507e-02,0.000000000000000000e+00 +1.404661618188973449e-01,-1.241717300554980447e-01,0.000000000000000000e+00 +1.604857760409248435e-01,-1.607542662006091749e-01,0.000000000000000000e+00 +1.801518474681697290e-01,-1.964365711270123771e-01,0.000000000000000000e+00 +1.995246799054946618e-01,-1.595457939896835486e-01,0.000000000000000000e+00 +2.198541938423331232e-01,-1.231362905299398791e-01,0.000000000000000000e+00 +2.413320477870610214e-01,-8.744213761312208399e-02,0.000000000000000000e+00 +2.689929143508745790e-01,-5.622647242850693783e-02,0.000000000000000000e+00 +2.964665201939071792e-01,-2.484705153215788567e-02,0.000000000000000000e+00 +3.303079852412492690e-01,-5.466469056304048939e-04,0.000000000000000000e+00 +3.279141515646453175e-01,-3.446947993954788819e-02,0.000000000000000000e+00 +3.186495128096864526e-01,-7.508643239248409540e-02,0.000000000000000000e+00 +3.070745092631869677e-01,-1.151570264634891733e-01,0.000000000000000000e+00 +2.954995057139817027e-01,-1.552276205438611612e-01,0.000000000000000000e+00 +2.816551886914611114e-01,-1.945208283635161128e-01,0.000000000000000000e+00 +2.660243645808258450e-01,-2.331899642928423055e-01,0.000000000000000000e+00 +2.467620699260876516e-01,-2.701442942886334575e-01,0.000000000000000000e+00 +2.241841591831262581e-01,-3.051657918470397912e-01,0.000000000000000000e+00 +2.425712456640254089e-01,-3.339031779689720647e-01,0.000000000000000000e+00 +2.771641477181115421e-01,-3.425967184432428536e-01,0.000000000000000000e+00 +3.183835124524804772e-01,-3.362748094844578706e-01,0.000000000000000000e+00 +3.597470223905689934e-01,-3.309182002456768079e-01,0.000000000000000000e+00 +4.011105323155444990e-01,-3.255615910085939424e-01,0.000000000000000000e+00 +4.426413474374059631e-01,-3.219570981784447006e-01,0.000000000000000000e+00 +4.842843897907083694e-01,-3.196139716735840741e-01,0.000000000000000000e+00 +5.259272050714104418e-01,-3.172668466360579753e-01,0.000000000000000000e+00 +5.676100050178192191e-01,-3.172150970607802156e-01,0.000000000000000000e+00 +6.093089478250570679e-01,-3.180983071822549024e-01,0.000000000000000000e+00 +6.506324448793682214e-01,-3.237087012969154798e-01,0.000000000000000000e+00 +6.907510522837059241e-01,-3.348946040705889082e-01,0.000000000000000000e+00 +7.252600442088925625e-01,-3.573795335288036945e-01,0.000000000000000000e+00 +7.589021018763575377e-01,-3.758424185488901670e-01,0.000000000000000000e+00 +7.997552957392117801e-01,-3.840043047139867216e-01,0.000000000000000000e+00 +8.304427039914931141e-01,-4.098013673791538469e-01,0.000000000000000000e+00 +8.261393757387265335e-01,-4.479788725331246280e-01,0.000000000000000000e+00 +8.608394355092178207e-01,-4.683057964788007732e-01,0.000000000000000000e+00 +8.975549927473537304e-01,-4.880777451125443700e-01,0.000000000000000000e+00 +9.335646644651234283e-01,-5.091202163551957760e-01,0.000000000000000000e+00 +9.666058611040282411e-01,-5.344618233120926876e-01,0.000000000000000000e+00 +9.942408345475226561e-01,-5.656578949225563591e-01,0.000000000000000000e+00 +9.774597312587106623e-01,-5.900559588542687584e-01,0.000000000000000000e+00 +9.364259107566920148e-01,-5.826374001342659037e-01,0.000000000000000000e+00 +8.964758914663891742e-01,-5.706698879401411739e-01,0.000000000000000000e+00 +8.574042597769797602e-01,-5.564575100954138875e-01,0.000000000000000000e+00 +8.599800873013554448e-01,-5.868060969177758546e-01,0.000000000000000000e+00 +8.540309078108746510e-01,-6.276286905262946636e-01,0.000000000000000000e+00 +8.165068157654630232e-01,-6.290399565060077469e-01,0.000000000000000000e+00 +7.823968674493316788e-01,-6.057326011315878889e-01,0.000000000000000000e+00 +7.599331800962800809e-01,-5.708718838223307834e-01,0.000000000000000000e+00 +7.400132008379731730e-01,-5.345142274082567146e-01,0.000000000000000000e+00 +7.015194406295303109e-01,-5.502291328919977076e-01,0.000000000000000000e+00 +6.618499110439326483e-01,-5.624975179651608981e-01,0.000000000000000000e+00 +6.207610447201008519e-01,-5.696625900779686003e-01,0.000000000000000000e+00 +5.794795473999154733e-01,-5.751841809132378636e-01,0.000000000000000000e+00 +5.378310822895213672e-01,-5.774282795021247194e-01,0.000000000000000000e+00 +4.961335829070667724e-01,-5.782102537025544109e-01,0.000000000000000000e+00 +4.544271066360761613e-01,-5.784864577445609779e-01,0.000000000000000000e+00 +4.127212571027193966e-01,-5.779814804956712182e-01,0.000000000000000000e+00 +3.710153574432312196e-01,-5.774803577000483523e-01,0.000000000000000000e+00 +3.293264519980357852e-01,-5.762851381422802177e-01,0.000000000000000000e+00 +2.876473842094138256e-01,-5.747076377475347497e-01,0.000000000000000000e+00 +2.460068502106081412e-01,-5.724420905915483804e-01,0.000000000000000000e+00 +2.044097500999980388e-01,-5.693913110338759687e-01,0.000000000000000000e+00 +1.631177032954650163e-01,-5.635651551283991090e-01,0.000000000000000000e+00 +1.221030456538223230e-01,-5.560278896787393954e-01,0.000000000000000000e+00 +8.148418135775653548e-02,-5.466467805603641983e-01,0.000000000000000000e+00 +4.067337264083848575e-02,-5.384378566447032277e-01,0.000000000000000000e+00 +2.828973861332730391e-02,-5.109351455050527013e-01,0.000000000000000000e+00 +4.121916501128677218e-02,-4.756905121788771451e-01,0.000000000000000000e+00 +8.539442639105174551e-03,-4.520966421540952851e-01,0.000000000000000000e+00 +2.664447111534845938e-03,-4.130668695581291572e-01,0.000000000000000000e+00 +2.144667918720010585e-02,-3.759787751665187860e-01,0.000000000000000000e+00 +4.680552796287843625e-02,-3.429128009886849293e-01,0.000000000000000000e+00 +7.493615591593086322e-02,-3.121473805812948199e-01,0.000000000000000000e+00 +1.124966728917108361e-01,-2.942693015710804438e-01,0.000000000000000000e+00 +1.187069693841489443e-01,-2.696411014225086888e-01,0.000000000000000000e+00 +9.887727799423901009e-02,-2.330789974745818838e-01,0.000000000000000000e+00 +8.397931327885782560e-02,-1.942585725755783255e-01,0.000000000000000000e+00 +7.163845939720536737e-02,-1.544176174814475555e-01,0.000000000000000000e+00 +5.929752688880929323e-02,-1.145764085503787055e-01,0.000000000000000000e+00 +4.980479346816213404e-02,-7.404243902627791196e-02,0.000000000000000000e+00 +4.236402101899194861e-02,-3.300087018638745567e-02,0.000000000000000000e+00 +4.720786937644348702e-02,-1.237160635622546953e-02,0.000000000000000000e+00 +7.703718838565377924e-02,-4.148412521461741082e-02,0.000000000000000000e+00 +1.030927563833102245e-01,-7.403668630043315491e-02,0.000000000000000000e+00 +1.285463763970601525e-01,-1.070661513511979440e-01,0.000000000000000000e+00 +1.506880017655026494e-01,-1.423467400255984117e-01,0.000000000000000000e+00 +1.701184682036080142e-01,-1.792901567132624274e-01,0.000000000000000000e+00 +1.900393914829379971e-01,-1.781159910584276529e-01,0.000000000000000000e+00 +2.094682303572614201e-01,-1.412205199737391614e-01,0.000000000000000000e+00 +2.302355369570361354e-01,-1.050496956450333585e-01,0.000000000000000000e+00 +2.552031973797571074e-01,-7.187079997520008645e-02,0.000000000000000000e+00 +2.827829395551497704e-01,-4.058179519367380306e-02,0.000000000000000000e+00 +3.132487768223474744e-01,-1.257954994648704562e-02,0.000000000000000000e+00 +3.315524864956283513e-01,-1.393600708474011449e-02,0.000000000000000000e+00 +3.241797673663050494e-01,-5.498572019885396289e-02,0.000000000000000000e+00 +3.128620110367270613e-01,-9.512172942698168820e-02,0.000000000000000000e+00 +3.012870074890026117e-01,-1.351923235022272629e-01,0.000000000000000000e+00 +2.894288120049229307e-01,-1.751698410939925843e-01,0.000000000000000000e+00 +2.738251840445975471e-01,-2.138495834793297523e-01,0.000000000000000000e+00 +2.568751533194804648e-01,-2.519060219583939553e-01,0.000000000000000000e+00 +2.360868466415944056e-01,-2.880418415121317466e-01,0.000000000000000000e+00 +2.278515704912767448e-01,-3.195035815788980771e-01,0.000000000000000000e+00 +2.566387725675193798e-01,-3.461652524335791514e-01,0.000000000000000000e+00 +2.977188394941270855e-01,-3.390737699394030802e-01,0.000000000000000000e+00 +3.390652674194845062e-01,-3.335965048653316001e-01,0.000000000000000000e+00 +3.804287773520967364e-01,-3.282398956272596924e-01,0.000000000000000000e+00 +4.218219765668500543e-01,-3.231599927335786493e-01,0.000000000000000000e+00 +4.634628686195100822e-01,-3.207855349257074939e-01,0.000000000000000000e+00 +5.051059153574797289e-01,-3.184424081741351609e-01,0.000000000000000000e+00 +5.467608226741658140e-01,-3.167434447409214204e-01,0.000000000000000000e+00 +5.884593847981249848e-01,-3.176798973442260254e-01,0.000000000000000000e+00 +6.299815906295750390e-01,-3.208028020366754940e-01,0.000000000000000000e+00 +6.708549550963366359e-01,-3.286473316329857619e-01,0.000000000000000000e+00 +7.092253587068808596e-01,-3.442414431356597415e-01,0.000000000000000000e+00 +7.383683236988136667e-01,-3.733636432606440847e-01,0.000000000000000000e+00 +7.794164956917595255e-01,-3.793942014625230619e-01,0.000000000000000000e+00 +8.181999655826950324e-01,-3.933676388113424016e-01,0.000000000000000000e+00 +8.354155698038491229e-01,-4.298604017852246661e-01,0.000000000000000000e+00 +8.421956489399682333e-01,-4.589053592372267509e-01,0.000000000000000000e+00 +8.793197376634708240e-01,-4.779694450031744535e-01,0.000000000000000000e+00 +9.155970972617751835e-01,-4.985366697765254984e-01,0.000000000000000000e+00 +9.504914263137169694e-01,-5.212991526179758806e-01,0.000000000000000000e+00 +9.809896520801332231e-01,-5.495600074222753983e-01,0.000000000000000000e+00 +9.971269925653276633e-01,-5.839767922824036228e-01,0.000000000000000000e+00 +9.569714998970428876e-01,-5.862225567325501929e-01,0.000000000000000000e+00 +9.164471598863178636e-01,-5.766744813382566059e-01,0.000000000000000000e+00 +8.770679543738074679e-01,-5.630804139573518663e-01,0.000000000000000000e+00 +8.524170338811015712e-01,-5.674625307046486933e-01,0.000000000000000000e+00 +8.597241711646160800e-01,-6.076232420304562565e-01,0.000000000000000000e+00 +8.362052258587133746e-01,-6.353034809031801178e-01,0.000000000000000000e+00 +7.982382466441261260e-01,-6.189948844867185773e-01,0.000000000000000000e+00 +7.696293975068767557e-01,-5.893330664337714797e-01,0.000000000000000000e+00 +7.502722882205427046e-01,-5.524330148410884211e-01,0.000000000000000000e+00 +7.208078957513036622e-01,-5.423906596624512577e-01,0.000000000000000000e+00 +6.821976401830569525e-01,-5.580702132392223458e-01,0.000000000000000000e+00 +6.413054778805269418e-01,-5.660800540218244858e-01,0.000000000000000000e+00 +6.002238556990122653e-01,-5.732854996055648522e-01,0.000000000000000000e+00 +5.586548443894325811e-01,-5.762974603237918103e-01,0.000000000000000000e+00 +5.169868760210587499e-01,-5.779901186088048926e-01,0.000000000000000000e+00 +4.752803245478660621e-01,-5.784339763947236035e-01,0.000000000000000000e+00 +4.335742060463278480e-01,-5.782322439921325774e-01,0.000000000000000000e+00 +3.918683101760431220e-01,-5.777307170234644573e-01,0.000000000000000000e+00 +3.501655187789404211e-01,-5.770857895419917449e-01,0.000000000000000000e+00 +3.084869181085577172e-01,-5.754963879450902819e-01,0.000000000000000000e+00 +2.668073100186455493e-01,-5.739349694379441980e-01,0.000000000000000000e+00 +2.252087873314404520e-01,-5.709092637375530188e-01,0.000000000000000000e+00 +1.837372259984083878e-01,-5.666867850607414381e-01,0.000000000000000000e+00 +1.425665344891415831e-01,-5.600470761523429486e-01,0.000000000000000000e+00 +1.017027711086108122e-01,-5.518071268984423572e-01,0.000000000000000000e+00 +6.093057884089172344e-02,-5.432764932637950128e-01,0.000000000000000000e+00 +2.367425024598771022e-02,-5.286662174053837759e-01,0.000000000000000000e+00 +4.385621715976958240e-02,-4.972325419144791869e-01,0.000000000000000000e+00 +2.930681671732353610e-01,-5.134229555289524516e-01,-1.727485770284116541e-17 +2.600097362734380413e-01,-5.140297866988233766e-01,-1.879463445867657789e-17 +2.774197196483950134e-01,-5.453898566196215825e-01,-2.047975519059558615e-17 +2.790186880511847378e-01,-4.817737621635848622e-01,-1.541740229848714773e-17 +3.101169635743263875e-01,-5.429291318652529341e-01,-1.883061141307220473e-17 +3.327745549499603883e-01,-5.072767364207944052e-01,-1.502442700709379690e-17 +3.133570504250967059e-01,-4.814446811188140551e-01,-1.386241883588134309e-17 +2.980687111649198973e-01,-4.137053630844180763e-01,-9.228598802790667865e-18 +2.640153677521559494e-01,-4.380487505686842531e-01,-1.265498745595975535e-17 +3.064847224977761408e-01,-4.473240311789103973e-01,-1.149144489813658682e-17 +3.060567569896374129e-01,-3.773516405686173081e-01,-6.020658084270805326e-18 +2.729853021973169258e-01,-3.908948278953007227e-01,-8.555966443742832848e-18 +1.866977516927566527e-01,-2.428463245134540038e-01,-7.830591465188923398e-19 +2.068060119115038842e-01,-2.745332971968315605e-01,-2.373667439788383739e-18 +2.198130030994707995e-01,-2.352224966413097029e-01,1.289782594005465593e-18 +7.063424768711521473e-01,-4.411246896068308221e-01,6.801505527331975002e-18 +7.310816964947522978e-01,-4.725754352217414467e-01,5.435658030102640157e-18 +7.430576051730826137e-01,-4.394588954734318098e-01,8.567206636686413663e-18 +3.554391194478411786e-01,-4.574259202984120587e-01,-1.010396227282430349e-17 +3.516724355891424070e-01,-5.428182220516288847e-01,-1.697135092231039550e-17 +8.262488032214815314e-01,-5.407282766442348398e-01,4.326575573369664190e-18 +8.555342985772320663e-01,-5.117689005030723326e-01,7.902799231869848653e-18 +8.193935908187569561e-01,-5.103192685436235276e-01,6.407106293958702339e-18 +1.306720250059210664e-01,-5.045860005946236626e-01,-2.381340018641560953e-17 +1.632305621163871734e-01,-5.262252297647344035e-01,-2.406125073378832192e-17 +3.290093981454583760e-01,-4.115457098395491897e-01,-7.681299722876306447e-18 +3.651272407767559014e-01,-4.036836444541481717e-01,-5.456054356508048367e-18 +3.935398716096445426e-01,-5.399923694311665745e-01,-1.488519087981771104e-17 +3.729935932754732120e-01,-5.056195075614049461e-01,-1.310336089732272094e-17 +6.569733820633893995e-01,-5.120200001777734933e-01,-9.592664016313833467e-19 +6.847141673378932536e-01,-5.145301883740759363e-01,7.915067801776830353e-20 +6.164265826646904145e-01,-4.033586494974634729e-01,5.760369819077551492e-18 +6.411091127472650086e-01,-4.395858466090564742e-01,4.017250304423437792e-18 +6.526637828351006254e-01,-3.974656006726277058e-01,7.836446715847645356e-18 +2.459262898424920130e-01,-4.802338343156333789e-01,-1.677026277146026155e-17 +6.651446457232087495e-01,-3.660263078225355349e-01,1.085888980237617333e-17 +6.279306461346875201e-01,-3.565721741284515467e-01,9.943412382273224089e-18 +4.191556928578594743e-01,-4.998230317007048562e-01,-1.059288272028964367e-17 +3.872253451216757236e-01,-4.810738390767071437e-01,-1.054380195882012634e-17 +4.017667336937554845e-01,-4.552424031177198516e-01,-7.869576350330144614e-18 +3.878102615504226969e-01,-4.243802211001586056e-01,-6.069725923763681479e-18 +4.407837498559653566e-01,-3.734351093857147252e-01,2.863189641440236596e-19 +4.205988374316725897e-01,-4.113674645566299803e-01,-3.588630968519288195e-18 +4.638807134970191481e-01,-4.097343019173615986e-01,-1.533057963428713930e-18 +2.279610451761657497e-01,-5.171742627807383030e-01,-2.046854200273449354e-17 +2.369839476933869871e-01,-5.448081766861434527e-01,-2.223481419072612798e-17 +1.988317346937762964e-01,-5.377701693183329912e-01,-2.338163512442433305e-17 +6.710815505042109219e-01,-4.716465444667687912e-01,2.836594594499245182e-18 +6.362133875561243324e-01,-4.838337253747050926e-01,3.276633793816271381e-19 +4.403711457439308252e-01,-4.573839421557857055e-01,-6.318454272455870451e-18 +2.175450349967481267e-01,-4.841198642983345346e-01,-1.833903143480349045e-17 +4.655281893195993836e-01,-4.892487437148987928e-01,-7.698180840469857472e-18 +4.538105942362591350e-01,-5.140304072954371417e-01,-1.016429425201083959e-17 +2.417442759263628560e-01,-4.046480212263526832e-01,-1.102623820145781641e-17 +3.961193753489061220e-01,-3.941816725372100927e-01,-3.330405675431293114e-18 +4.134598826626091905e-01,-3.652146029323521947e-01,-2.855156416968288731e-19 +3.795054521820392934e-01,-3.647846834867956023e-01,-1.763852620199532298e-18 +4.329958626408048072e-01,-5.430565190854057533e-01,-1.336853161212201476e-17 +4.643206534022696896e-01,-5.480253678448934185e-01,-1.236341057014352288e-17 +6.066116354713380066e-01,-4.992734240170723647e-01,-2.201926463999909631e-18 +6.051205554935691344e-01,-4.510679881756856635e-01,1.513740891825482284e-18 +6.036380578096524063e-01,-5.382650872311276480e-01,-5.393527329917409851e-18 +6.310078994230482463e-01,-5.275920443918500347e-01,-3.337308449715535744e-18 +7.970967531702105591e-02,-4.418279564607770493e-01,-2.115904153996055978e-17 +1.038008520977942162e-01,-4.754164822785219569e-01,-2.272147231527141795e-17 +1.186555539967287520e-01,-4.317854004356992959e-01,-1.863678194017923428e-17 +3.428798368740662017e-01,-3.697836586996462449e-01,-3.787079913592063158e-18 +5.845598008792478595e-01,-4.106291978554042488e-01,3.770842602011601932e-18 +5.675642043587046937e-01,-4.455286493231654377e-01,2.758735391667036325e-19 +1.961850383120391783e-01,-5.046327454600280094e-01,-2.089962555936000661e-17 +6.724451779619052827e-01,-4.284134662048774134e-01,6.289270737536108003e-18 +5.833593345168244237e-01,-4.752670266436146984e-01,-1.353926616824462512e-18 +4.850996444015142073e-01,-3.697699289021140756e-01,2.547365782715091133e-18 +5.076783832915993111e-01,-4.050806675688236602e-01,7.824625640789148813e-19 +4.830207286832349234e-01,-4.489767229960112127e-01,-3.759564497091156308e-18 +5.125748483774577036e-01,-4.889351374995903887e-01,-5.578482404284583662e-18 +4.842361632348507472e-01,-5.263433526138480145e-01,-9.775415593540884881e-18 +1.950334663760327769e-01,-4.629173190189883047e-01,-1.767802778224849607e-17 +2.270078668052600002e-01,-4.462565793836348327e-01,-1.494697897810010128e-17 +1.651170901599118834e-01,-4.858677616177652370e-01,-2.081090126476243532e-17 +5.285942400370169381e-01,-3.658618000318354935e-01,4.790899385480041566e-18 +5.509895420753776474e-01,-3.986732917454864911e-01,3.213911487056408080e-18 +5.871755978982712287e-01,-3.648310895435545320e-01,7.480526018083942151e-18 +5.292952888037401049e-01,-4.460121503827610412e-01,-1.466261691275629822e-18 +5.344701194539245304e-01,-5.271348574859566760e-01,-7.600483668739033284e-18 +5.520611933418222428e-01,-4.915239753450584836e-01,-4.023179724739084309e-18 +4.633379682511196695e-01,-3.589020793437849299e-01,2.430931478601666400e-18 +1.255899159169002188e-01,-3.599287747940795867e-01,-1.269030209678330449e-17 +1.275707063567864119e-01,-3.922361007441543812e-01,-1.513683871045773409e-17 +1.506046829290701161e-01,-3.730823000136674894e-01,-1.260832827531038475e-17 +1.571925174312643336e-01,-4.043978713704779460e-01,-1.477189244476914763e-17 +1.274721889996559554e-01,-3.182305620606070695e-01,-9.334950905894233512e-18 +9.255213204917475678e-02,-3.451488323261065472e-01,-1.300195462554573443e-17 +5.568343620943689842e-01,-5.381766894572952431e-01,-7.470865912029307647e-18 +5.520593025695716971e-01,-3.527695702017930590e-01,6.863032542368104443e-18 +5.063167671771252598e-01,-3.555186240070161707e-01,4.610331021023201981e-18 +5.803306631273338345e-01,-5.196149741501837616e-01,-4.968220552613069872e-18 +5.130491111664513548e-01,-5.396102056257139346e-01,-9.533191610262461180e-18 +7.170875414457016372e-01,-5.087699357053233618e-01,1.972743865539053522e-18 +7.586842815691374753e-01,-5.051439159132541379e-01,4.109628168358268647e-18 +6.997731783405947148e-01,-4.820179990374312551e-01,3.300581074637452875e-18 +7.827410035435024005e-01,-4.211005375323094713e-01,1.177474504439369191e-17 +7.345124661443750425e-01,-4.038774014924569333e-01,1.097830041094082715e-17 +7.679913991031895870e-01,-4.646110044553951046e-01,7.704198017307033959e-18 +7.984093830221202781e-01,-4.600205925758923953e-01,9.418930719858002314e-18 +7.942155359687931293e-01,-5.257783024074814682e-01,4.072996667031445152e-18 +7.700798167462793442e-01,-5.409216299308831077e-01,1.810074062441765417e-18 +7.939744248165423457e-01,-4.893666500157416444e-01,6.919019504443180896e-18 +5.709257332012854236e-02,-3.716595886393369019e-01,-1.666101112924960249e-17 +5.112584146901036353e-02,-4.108350216831469504e-01,-2.000032198099925111e-17 +2.572862723993421530e-02,-4.208857730973627476e-01,-2.191987201168963495e-17 +1.819783934610907927e-01,-3.726564621742163297e-01,-1.117777616228104046e-17 +2.191941743338787218e-01,-3.718472338623092233e-01,-9.456983710394734104e-18 +1.960829200078681167e-01,-3.386707377207397451e-01,-7.883241517440262009e-18 +2.019256573112107322e-01,-4.121865306030855214e-01,-1.339090212940340623e-17 +1.365963778979940868e-01,-4.694877227164150901e-01,-2.079585916518953392e-17 +1.624201105326995020e-01,-4.444404342520450468e-01,-1.768072745098310757e-17 +8.257150847470993149e-01,-4.812933467750425409e-01,8.965912214542004222e-18 +7.969122986405612341e-01,-5.681900733971515516e-01,8.655763996170871143e-19 +8.237198220327625053e-01,-5.994881581084756661e-01,-3.961875074472569717e-19 +8.330271007031416763e-01,-5.707423342154352985e-01,2.273606411561390058e-18 +1.865362631674855054e-01,-3.061155847615989467e-01,-5.754186143914049352e-18 +2.800786377355252155e-01,-9.118772326656184035e-02,1.527412702109092832e-17 +1.694502208704222190e-01,-2.785590607283680020e-01,-4.353055539694218621e-18 +1.556625605058688522e-01,-3.048563219223554555e-01,-7.030263324536269983e-18 +2.508625536327142580e-01,-3.690184734804894395e-01,-7.824782510160641152e-18 +1.495092540501617440e-01,-2.580253078495671204e-01,-3.630048844927545085e-18 +1.518122034093329631e-01,-2.309940570415875416e-01,-1.406694273816726570e-18 +3.974705214215357163e-02,-4.431261849432084898e-01,-2.304052270378379585e-17 +1.621545845045298528e-01,-3.375288993792957548e-01,-9.304561190970262433e-18 +7.977526476987611970e-02,-8.360414558363807314e-02,6.949153534282755120e-18 +6.099674602675453361e-02,-5.199517593572614560e-01,-2.812175335659406193e-17 +9.293860773791949581e-02,-1.220193639284076481e-01,4.521392415391273150e-18 +1.175550807119275787e-01,-1.525692737742509186e-01,3.220755878550328983e-18 +9.318519977510716923e-02,-3.933459535833286336e-01,-1.675517886045362844e-17 +9.318422178578347759e-02,-5.144909170386896546e-01,-2.625992957012520491e-17 +8.961456747825403690e-01,-5.310146958972702391e-01,8.201342114882882077e-18 +2.643442044668168900e-01,-1.220265474352069945e-01,1.215390626778098039e-17 +2.492247992612938168e-01,-1.583316703405705239e-01,8.632203041308343337e-18 +2.324359730174812011e-01,-1.941845284290843188e-01,5.071640212259583154e-18 +6.924456634791434917e-01,-3.898830853511076056e-01,1.020292720692116187e-17 +9.325501996315739284e-01,-5.486946519748313600e-01,8.435395958091142944e-18 +1.344697051645919184e-01,-2.059451790172096841e-01,-2.137273746473169572e-19 +1.160759090950585493e-01,-1.815627153117528869e-01,8.801377930583671554e-19 +2.852439434108151595e-01,-5.294064060742871280e-01,-1.887730644671837886e-17 +2.687147279609165551e-01,-5.297098216592224240e-01,-1.963719482463607894e-17 +2.765389517233367012e-01,-5.137263711138879696e-01,-1.803474608075887165e-17 +2.695142121623113618e-01,-4.979017744312040916e-01,-1.710601837858186281e-17 +2.860434276122100772e-01,-4.975983588462686846e-01,-1.634613000066415965e-17 +3.015925653737808743e-01,-5.281760436971025818e-01,-1.805273455795668507e-17 +2.937683416113606727e-01,-5.441594942424372583e-01,-1.965518330183389236e-17 +9.515158859303602945e-01,-5.585496117231794067e-01,8.506787137071377210e-18 +9.720327961813696183e-01,-5.622588910831808340e-01,9.129431325071953329e-18 +2.988821738918701620e-01,-5.588183848063938974e-01,-2.057754985238945092e-17 +2.825335519289043917e-01,-5.600487471835782216e-01,-2.140212174115113238e-17 +3.214457592621433601e-01,-5.251029341430235586e-01,-1.692751921008299927e-17 +3.129213610615978469e-01,-5.103498459748734284e-01,-1.614964235496748269e-17 +3.032126087991660057e-01,-4.974338183238832256e-01,-1.556863826936125425e-17 +3.230658026875286026e-01,-4.943607087698043134e-01,-1.444342292148757154e-17 +3.022767168313480468e-01,-4.305146971316641813e-01,-1.036002185046362734e-17 +2.852500451249660451e-01,-4.426863908737973530e-01,-1.207321617704817262e-17 +2.810420394585379511e-01,-4.258770568265511924e-01,-1.094179312937521315e-17 +2.927517052744803561e-01,-4.645488966712476575e-01,-1.345442359831186881e-17 +2.715170279016703159e-01,-4.599112563661345576e-01,-1.403619487722345154e-17 +3.020627340772786829e-01,-3.955285018265176644e-01,-7.624628443530736595e-18 +2.855270066811184115e-01,-4.023000954898593995e-01,-8.892282623266751897e-18 +2.895210295934771416e-01,-3.841232342319590432e-01,-7.288312264006817546e-18 +2.750747249577142339e-01,-3.667457731692718159e-01,-6.568250025780062673e-18 +2.916104523538745052e-01,-3.599741795059301364e-01,-5.300595846044053534e-18 +2.032553773961137400e-01,-2.390344105773818395e-01,2.533617237432873970e-19 +2.133095075054873557e-01,-2.548778969190705901e-01,-5.419424228914583025e-19 +1.967518818021302685e-01,-2.586898108551427544e-01,-1.578363293153636499e-18 +7.247000410221173805e-01,-4.402917925401313437e-01,7.684356082009194333e-18 +7.370696508339175113e-01,-4.560171653475866282e-01,7.001432333394526525e-18 +7.187120866829522781e-01,-4.568500624142861066e-01,6.118581778717307195e-18 +2.332875365127792533e-01,-2.526833954649715941e-01,5.198988918176433950e-19 +2.267840409187957817e-01,-2.723387957427325645e-01,-1.311826125079280501e-18 +3.099208864614363956e-01,-4.643843561488621985e-01,-1.267693186700896341e-17 +3.309619209728085765e-01,-4.523749757386612003e-01,-1.079770358548044670e-17 +3.343980849364689423e-01,-4.694353007086130569e-01,-1.198319055435282329e-17 +2.429186838401483639e-01,-2.342062304670760042e-01,2.398464125075246828e-18 +3.422234952695514254e-01,-5.250474792362116450e-01,-1.599788896470209311e-17 +3.308946995817344527e-01,-5.428736769584410204e-01,-1.790098116769130474e-17 +8.228211970201192438e-01,-5.255237725939291282e-01,5.366840933664183264e-18 +8.374639446979945667e-01,-5.110440845233479301e-01,7.154952762914275881e-18 +8.408915508993568544e-01,-5.262485885736535307e-01,6.114687402619756037e-18 +8.564692791771061353e-01,-5.341132052992431101e-01,6.191362123308610041e-18 +8.418265314992307013e-01,-5.485928933698243082e-01,4.403250294058516653e-18 +3.404994437935890406e-01,-5.595516800969546622e-01,-1.878177141849607200e-17 +3.197217077861810863e-01,-5.596071350037665759e-01,-1.971140166387697200e-17 +1.469512935611541060e-01,-5.154056151796790886e-01,-2.393732546010196881e-17 +1.426668038851047760e-01,-5.411265597217369550e-01,-2.614611939023273406e-17 +1.263875353298716808e-01,-5.303069451366815290e-01,-2.602219411654637479e-17 +1.631741327059261226e-01,-5.448951924465668117e-01,-2.552855858986260095e-17 +3.470683194611071110e-01,-4.076146771468486807e-01,-6.568677039692175866e-18 +3.602831801122984845e-01,-4.305547823762800874e-01,-7.780008314666177471e-18 +3.422242587966498051e-01,-4.344858150689806520e-01,-8.892630997850301889e-18 +3.623330144323078095e-01,-5.242188648065169154e-01,-1.503735590981656130e-17 +3.832667324425588773e-01,-5.228059384962857603e-01,-1.399427588857021291e-17 +3.726061535993934193e-01,-5.414052957413977296e-01,-1.592827090106405327e-17 +3.822776145264379366e-01,-5.587363635656076299e-01,-1.685732780041771243e-17 +3.613438965161867023e-01,-5.601492898758386740e-01,-1.790040782166405774e-17 +3.528840741127167169e-01,-5.064481219910996757e-01,-1.406389395220825892e-17 +3.441068371989007835e-01,-4.823513283596032597e-01,-1.256419463995904865e-17 +3.642163563616571675e-01,-4.815227139299084747e-01,-1.160366158507351068e-17 +6.708437747006412710e-01,-5.132750942759247703e-01,-4.400578618068075216e-19 +6.732820391909130064e-01,-5.385138531696185282e-01,-2.311641414787543780e-18 +6.594116465536611349e-01,-5.372587590714672512e-01,-2.830849954612121145e-18 +3.135390546551891089e-01,-4.126255364619836330e-01,-8.454949262833488697e-18 +3.177470603216172029e-01,-4.294348705092297935e-01,-9.586372310506445090e-18 +6.345451827498954644e-01,-4.004121250850455893e-01,6.798408267462598039e-18 +6.468864477911828725e-01,-4.185257236408420622e-01,5.926848510135540803e-18 +6.287678477059777116e-01,-4.214722480532599458e-01,4.888810061750494257e-18 +2.529680130579650132e-01,-4.971318105072283777e-01,-1.778244861506841972e-17 +2.624724889468383893e-01,-4.810037982396091483e-01,-1.609383253497370464e-17 +6.465376459289481348e-01,-3.612992409754935963e-01,1.040115109232469871e-17 +6.392815455070279818e-01,-3.401404377126835410e-01,1.173808323828925823e-17 +6.578885453012884854e-01,-3.448675045597255351e-01,1.219582194834073285e-17 +4.063477822337519529e-01,-5.199077005659358264e-01,-1.273903680005368044e-17 +3.960746430666663986e-01,-5.027212696310549012e-01,-1.184812180880618230e-17 +3.801094691985744678e-01,-4.933466733190560727e-01,-1.182358142807142364e-17 +4.031905189897675434e-01,-4.904484353887060277e-01,-1.056834233955488809e-17 +3.944960394077155486e-01,-4.681581210972134977e-01,-9.206689154575133938e-18 +3.713322322847584234e-01,-4.692498796875596012e-01,-1.032388211582221338e-17 +3.786029265707983593e-01,-4.563341617080659551e-01,-8.986769311577224054e-18 +3.716246904991319377e-01,-4.409030706992853044e-01,-8.086844098293990946e-18 +3.947884976220890629e-01,-4.398113121089392008e-01,-6.969651137046914587e-18 +6.221786143996889118e-01,-3.799654118129575098e-01,7.851891100675387405e-18 +6.402972144848939617e-01,-3.770188874005395707e-01,8.889929549060434722e-18 +4.523322316764922801e-01,-3.915847056515381897e-01,-6.233694996423451351e-19 +4.422397754643458967e-01,-4.105508832369958450e-01,-2.560844465974002603e-18 +4.306912936438189732e-01,-3.924012869711723805e-01,-1.651156002187632268e-18 +2.369436675093289091e-01,-4.987040485481858409e-01,-1.861940238709738371e-17 +2.439853907248018816e-01,-5.156020247397807843e-01,-1.963158823070553572e-17 +2.016207423968871815e-01,-5.535807401761044799e-01,-2.449788908221750292e-17 +2.179078411935816140e-01,-5.412891730022382220e-01,-2.280822465757523051e-17 +2.206968488966925268e-01,-5.570997438600098217e-01,-2.392447861536840039e-17 +6.640274662838002717e-01,-4.918332723222711977e-01,9.386640964339301471e-19 +6.465933848097568104e-01,-4.979268627762393207e-01,-3.158015111248781043e-19 +6.536474690301676826e-01,-4.777401349207369141e-01,1.582128986940436930e-18 +4.521259296204750977e-01,-4.335591220365737075e-01,-3.925756117942292961e-18 +4.304849915878017352e-01,-4.343757033562077874e-01,-4.953542620487578553e-18 +2.227530400864569660e-01,-5.006470635395364743e-01,-1.940378671876899816e-17 +2.317356624196200698e-01,-4.821768493069839012e-01,-1.755464710313187600e-17 +4.596693917779292038e-01,-5.016395755051680228e-01,-8.931237546240348533e-18 +4.364831435470593046e-01,-5.069267194980708879e-01,-1.037858848615024163e-17 +4.423419410887294845e-01,-4.945358877078018245e-01,-9.145531780379750569e-18 +2.528798218392593888e-01,-4.213483858975184404e-01,-1.184061282870878588e-17 +2.573647890618399048e-01,-3.977714245608267030e-01,-9.791102322600324630e-18 +2.685003349747364099e-01,-4.144717892319925157e-01,-1.060547694985129410e-17 +3.878124137654726522e-01,-3.794831780120028197e-01,-2.547129147815410395e-18 +3.964826674223241865e-01,-3.649996432095738430e-01,-1.024684130948179045e-18 +4.047896290057576563e-01,-3.796981377347811715e-01,-1.807960658564061764e-18 +4.297634193008951220e-01,-4.786034869282452808e-01,-8.455668496372760140e-18 +4.529496675317651322e-01,-4.733163429353423046e-01,-7.008317556462863962e-18 +4.434032284385319156e-01,-5.285434631904214475e-01,-1.176641293206642718e-17 +4.590656238192643568e-01,-5.310278875701652801e-01,-1.126385241107717970e-17 +4.486582580215372484e-01,-5.455409434651495859e-01,-1.286597109113277036e-17 +4.593738800191730087e-01,-5.632559127947271982e-01,-1.377864902209878344e-17 +4.437114846384405675e-01,-5.607714884149834766e-01,-1.428120954308803092e-17 +4.271218162592871903e-01,-3.693248561590334322e-01,4.016612235973932599e-22 +4.170293600471408624e-01,-3.882910337444910320e-01,-1.937073305108058534e-18 +4.260757777493320853e-01,-5.214397753930553048e-01,-1.198070716620582921e-17 +4.132678671252246749e-01,-5.415244442582862749e-01,-1.412686124596986290e-17 +4.228585598717621297e-01,-5.605189997905385413e-01,-1.519002769426916490e-17 +4.031305643561819974e-01,-5.589869249634189519e-01,-1.594835732811700996e-17 +6.058660954824536260e-01,-4.751707060963790141e-01,-3.440927860872136736e-19 +6.206669715248467334e-01,-4.674508567751953780e-01,9.207021356035554815e-19 +6.214125115137312250e-01,-4.915535746958886731e-01,-9.371315423091420170e-19 +6.231148341204171270e-01,-4.453269173923710689e-01,2.765495598124460038e-18 +6.386612501516946150e-01,-4.617097859918807834e-01,2.172456841902533235e-18 +6.051248466404951509e-01,-5.187692556241000341e-01,-3.797726896958660512e-18 +6.188097674471931819e-01,-5.134327342044612275e-01,-2.769617456857724999e-18 +6.173229786163503263e-01,-5.329285658114888413e-01,-4.365417889816475879e-18 +6.258844720715746046e-01,-5.486273172349094285e-01,-5.215836998621673620e-18 +6.121995512648766846e-01,-5.539638386545482351e-01,-6.243946438722613755e-18 +3.903079922487919240e-01,-3.451731372476947723e-01,2.558778644985135109e-19 +4.072852074890769281e-01,-3.453880969704731241e-01,9.950463537498652236e-19 +6.589042142791546874e-01,-3.817459542475816203e-01,9.347668259111909343e-18 +3.075580165017968159e-01,-4.996674196232096798e-02,1.973193271503137181e-17 +3.121903358792762484e-01,-2.965826573585285397e-02,2.153156861655640919e-17 +9.918261465687494560e-02,-4.368066784482381726e-01,-1.989791174006989395e-17 +1.112282030472614980e-01,-4.536009413571105986e-01,-2.067912712772531995e-17 +9.175526370740766380e-02,-4.586222193696495308e-01,-2.194025692761598578e-17 +8.192466633522327291e-02,-4.798665360205750519e-01,-2.404480737768663471e-17 +6.987907794483666502e-02,-4.630722731117025148e-01,-2.326359199003120870e-17 +3.540035388254110238e-01,-3.867336515768972083e-01,-4.621567135050055763e-18 +3.359446175097622889e-01,-3.906646842695976618e-01,-5.734189818234183262e-18 +3.723163464793975419e-01,-3.842341639704718870e-01,-3.609953488353791103e-18 +3.611926445280527753e-01,-3.672841710932208681e-01,-2.775466266895796958e-18 +1.810311484050816933e-01,-5.319976995415337528e-01,-2.372144292910632748e-17 +1.809747189946206702e-01,-5.506676622233660501e-01,-2.518875078518060651e-17 +5.948401781864085525e-01,-4.308485930155449561e-01,2.642291746918540568e-18 +5.863423799261370251e-01,-4.482983187494256061e-01,8.948072154960921880e-19 +5.760620026189763321e-01,-4.280789235892847877e-01,2.023358070589153553e-18 +2.068650366543936525e-01,-4.943763048791812165e-01,-1.961932849708174545e-17 +2.120730417441024640e-01,-5.109035041203831007e-01,-2.068408378104725316e-17 +6.336106434895861783e-01,-5.057128848832774803e-01,-1.504822535166952762e-18 +6.439906407432187674e-01,-5.198060222848117640e-01,-2.148287425673459545e-18 +6.625544803985030651e-01,-4.129395334387525596e-01,7.062858726691875909e-18 +6.567771453545852012e-01,-4.339996564069669160e-01,5.153260520979772897e-18 +5.942399450051967236e-01,-4.631675074096501810e-01,7.990713750050988613e-20 +5.754617694377646142e-01,-4.603978379833900680e-01,-5.390265388288802101e-19 +3.513134296323176531e-01,-3.503509294726615542e-01,-1.886873491075160696e-18 +3.696262372863041712e-01,-3.478514418662362329e-01,-8.752598443788960367e-19 +4.963890138465567592e-01,-3.874252982354688402e-01,1.664914173397003007e-18 +4.857795483943093129e-01,-4.074074847430926849e-01,-3.752976996748995243e-19 +4.744901789492667055e-01,-3.897521154097378648e-01,5.071539096431886016e-19 +4.953495559874169785e-01,-4.270286952824174365e-01,-1.488550966506122254e-18 +4.734507210901270358e-01,-4.293555124566864056e-01,-2.646311230259935119e-18 +4.984055058061542254e-01,-5.076392450567192016e-01,-7.676948998912735812e-18 +4.748821762772249544e-01,-5.077960481643734036e-01,-8.736798217005372717e-18 +4.890515188485285436e-01,-4.890919406072445352e-01,-6.638331622377220567e-18 +1.956092523440359221e-01,-4.837750322395081293e-01,-1.928882667080425442e-17 +2.062892506863904796e-01,-4.735185916586614474e-01,-1.800852960852599942e-17 +2.110206665906463885e-01,-4.545869492013115964e-01,-1.631250338017429713e-17 +2.222764509010041190e-01,-4.651882218409846836e-01,-1.664300520645179432e-17 +6.822044404386774785e-02,-5.552310039477461462e-02,8.637754414042166133e-18 +5.441452266319663639e-02,-3.992095379706296632e-02,9.247047975921683186e-18 +4.742744590014170702e-01,-4.691127333554550027e-01,-5.728872668780509201e-18 +4.977977885303463967e-01,-4.689559302478008007e-01,-4.669023450687869214e-18 +3.806233080628310117e-01,-3.989326584956791599e-01,-4.393230015969669200e-18 +3.175330775675478945e-01,-3.944486752040832211e-01,-6.850978903573557427e-18 +3.919648184496643539e-01,-4.092809468186843214e-01,-4.700065799597485756e-18 +3.764687511635892436e-01,-4.140319327771533331e-01,-5.762890140135864923e-18 +1.797078002142131481e-01,-5.154289876123812064e-01,-2.248043814657416427e-17 +1.641738261381494868e-01,-5.060464956912498202e-01,-2.243607599927537862e-17 +1.806510642359755447e-01,-4.952502535388966232e-01,-2.085526341206122097e-17 +1.800752782679723440e-01,-4.743925403183767431e-01,-1.924446452350546261e-17 +2.343760713658114281e-01,-4.254523003049937580e-01,-1.298660858977895730e-17 +2.455116172787079054e-01,-4.421526649761595706e-01,-1.380098321702992985e-17 +5.397918910561972927e-01,-3.822675458886609645e-01,4.002405436268224052e-18 +5.293339626834885348e-01,-4.018769796571550756e-01,1.998187025567662251e-18 +5.181363116643081801e-01,-3.854712338003296046e-01,2.786680974779478224e-18 +6.018010902814807661e-01,-3.840948695205089747e-01,6.620447918580746436e-18 +6.075531220164793744e-01,-3.607016318360030116e-01,8.711969200178583120e-18 +5.982422728616642038e-01,-3.414646983629047172e-01,9.806614033840719180e-18 +6.186197969798724605e-01,-3.373352406553533078e-01,1.103805721593536015e-17 +3.244682969318518073e-01,-3.735676496341318042e-01,-4.903868998931434242e-18 +3.122201347210589728e-01,-3.568132250265375616e-01,-4.134800285650534076e-18 +3.306316746632733672e-01,-3.530292340920521132e-01,-3.018011200311166074e-18 +5.401424154395588761e-01,-4.223427210641237384e-01,8.738248978903891288e-19 +5.184868360476697635e-01,-4.255464089757923229e-01,-3.418995635983567000e-19 +5.235224839156911170e-01,-5.080349974927735879e-01,-6.589483036511811555e-18 +5.323180208596399732e-01,-4.902295564223244639e-01,-4.800831064511835526e-18 +5.432656563978733866e-01,-5.093294164155075521e-01,-5.811831696739060337e-18 +5.209350685905989042e-01,-4.674736439411756317e-01,-3.522372047780106742e-18 +5.406782410727812849e-01,-4.687680628639098179e-01,-2.744720708007358606e-18 +4.742188063263169662e-01,-3.643360041229494750e-01,2.489148630658378767e-18 +4.636093408740693533e-01,-3.843181906305732642e-01,4.489367575864762351e-19 +1.380972994229851536e-01,-3.665055374038734826e-01,-1.264931518604684154e-17 +1.390876946429283056e-01,-3.826592003789108798e-01,-1.387258349288405788e-17 +1.265803111368432876e-01,-3.760824377691169285e-01,-1.391357040362051775e-17 +1.538986001801671832e-01,-3.887400856920726899e-01,-1.369011036003976465e-17 +1.423816118940254005e-01,-3.983169860573161358e-01,-1.495436557761344086e-17 +1.090710239830374600e-01,-3.525388035600930947e-01,-1.284612836116452100e-17 +1.100121605244153422e-01,-3.316896971933568361e-01,-1.116845276571998705e-17 +1.265310524582781149e-01,-3.390796684273433281e-01,-1.101262650133876746e-17 +9.290928122832467495e-02,-3.237120812922931190e-01,-1.130418028728364438e-17 +1.103693097035653159e-01,-3.102529461595434079e-01,-9.470678427457893918e-18 +5.456522407741467573e-01,-5.326557734716259596e-01,-7.535674790384170466e-18 +5.544477777180957245e-01,-5.148503324011769466e-01,-5.747022818384197519e-18 +5.515244223224746722e-01,-3.757214309736398028e-01,5.038472014712256262e-18 +5.696174502339215184e-01,-3.588003298726738510e-01,7.171779280226024067e-18 +5.690825699868244936e-01,-3.817521906445204838e-01,5.347218752570175115e-18 +4.083591063902893281e-01,-4.027745685469200643e-01,-3.459518321975291425e-18 +4.690233787355549966e-01,-5.201868799546425226e-01,-9.969854922775860697e-18 +5.598346537936954581e-01,-3.349923336312866096e-01,8.604040496467170488e-18 +5.773928014580452794e-01,-3.410230933021674016e-01,8.912787234325090112e-18 +4.210689397188431271e-01,-4.563131726367527508e-01,-7.094015311393005992e-18 +4.111827855627140371e-01,-4.333049338371749437e-01,-5.729103659424717175e-18 +4.104612132758074794e-01,-4.775327174092123261e-01,-9.231229535309895681e-18 +5.174555036070710434e-01,-3.606902120194258043e-01,4.700615203251621388e-18 +5.069975752343623965e-01,-3.802996457879199710e-01,2.696396792551057276e-18 +6.004931917719691370e-01,-4.069939236764338886e-01,4.765606210544576327e-18 +6.107735690791298300e-01,-4.272133188365745404e-01,3.637055355451516503e-18 +4.742784083185602184e-01,-5.371843602293706610e-01,-1.106941308184220388e-17 +5.919843604684930094e-01,-5.289400306906557603e-01,-5.180873941265241402e-18 +5.934711492993358650e-01,-5.094441990836280354e-01,-3.585073508306488981e-18 +5.818449988220790736e-01,-4.974410003968992577e-01,-3.161073584718765421e-18 +5.949854849940812151e-01,-4.872702253303435316e-01,-1.777926540412186072e-18 +5.237596153101879981e-01,-5.333725315558353053e-01,-8.566837639500747232e-18 +5.128119797719545847e-01,-5.142726715626522171e-01,-7.555837007273522421e-18 +4.520608590535425408e-01,-3.661685943647498553e-01,1.358625221372843489e-18 +4.417125486466857431e-01,-3.476961037820797684e-01,2.347093439953656360e-18 +4.529896578442628163e-01,-3.404295887611148430e-01,3.419399697182476189e-18 +5.403267713032943176e-01,-3.593156851168142762e-01,5.826965963924073005e-18 +2.414953989519975641e-01,-5.586251336388459166e-01,-2.311795028472194828e-17 +7.240846189702270230e-01,-4.906726854635323765e-01,3.704200947820847225e-18 +7.448829890319449420e-01,-4.888596755674978200e-01,4.772643099230454402e-18 +7.378859115074195563e-01,-5.069569258092888608e-01,3.041186016948660699e-18 +5.661959282345779831e-01,-5.055694747476211504e-01,-4.495700138676077090e-18 +5.685825126108513539e-01,-5.288958318037395578e-01,-6.219543232321187219e-18 +5.799051052636247094e-01,-5.473995775317108681e-01,-7.167076661557763612e-18 +5.681569547471423398e-01,-5.566804351852666644e-01,-8.418399341265884040e-18 +4.957082057893197335e-01,-3.626442764545650954e-01,3.578848401869147713e-18 +4.846920170961113161e-01,-3.446919502878491026e-01,4.496763798007743740e-18 +4.953005784839168424e-01,-3.375662978403001224e-01,5.528246417161798779e-18 +7.084303598931480650e-01,-4.953939673713773084e-01,2.636662470088252428e-18 +7.154274374176734508e-01,-4.772967171295863231e-01,4.368119552370046131e-18 +5.484297465812224548e-01,-4.457703998529631839e-01,-5.951940760544630948e-19 +5.598126988502635237e-01,-4.685263123341120162e-01,-1.873653092786191879e-18 +5.592768732170412260e-01,-4.221009705343259366e-01,1.744892513111555856e-18 +5.677746714773127534e-01,-4.046512448004453422e-01,3.492377044534004236e-18 +7.493487412035553241e-01,-5.198290716607554263e-01,2.541737799592528691e-18 +7.285503711418374051e-01,-5.216420815567901492e-01,1.473295648182921513e-18 +7.387850356587288836e-01,-4.216681484829443716e-01,9.772753523813619635e-18 +7.586267348439387215e-01,-4.124889695123831745e-01,1.137652272766726030e-17 +7.628993043582924516e-01,-4.302797165028706128e-01,1.017097584054005279e-17 +7.753662013233458827e-01,-4.428557709938522602e-01,9.739471530850362935e-18 +7.555245021381361559e-01,-4.520349499644134572e-01,8.135702326996723811e-18 +7.905751932828113393e-01,-4.405605650541009055e-01,1.059683788212584788e-17 +7.832003910626549326e-01,-4.623157985156437499e-01,8.561564368582518907e-18 +4.986426372006509955e-01,-5.329767791197810300e-01,-9.654303601901674571e-18 +5.045913470367591191e-01,-5.589102296641342837e-01,-1.142406274716825438e-17 +4.901848730709587598e-01,-5.522768031582012682e-01,-1.154517473880746777e-17 +7.821476763575361257e-01,-5.333499661691822880e-01,2.941535364736605670e-18 +7.643820491577084653e-01,-5.230327729220686228e-01,2.959851115400016647e-18 +7.764499087689652468e-01,-5.154611091603678030e-01,4.091312417694856900e-18 +7.763293531928399105e-01,-4.972552829644978911e-01,5.514323836400724386e-18 +7.940949803926677930e-01,-5.075724762116116118e-01,5.496008085737313409e-18 +7.550465087921263141e-01,-5.377179286695699112e-01,1.391960746634277461e-18 +5.410920739456942519e-02,-3.912473051612418984e-01,-1.833066655512442834e-17 +3.120887969475416579e-02,-4.024998463807573645e-01,-2.023331378984778238e-17 +3.419224562031325521e-02,-3.829121298588523126e-01,-1.856365836397295962e-17 +1.851027258021611943e-02,-4.075252220878652354e-01,-2.119308880519296814e-17 +3.842723435447231717e-02,-4.158603973902548767e-01,-2.096009699634444303e-17 +4.540516608791703157e-02,-3.653885187071428398e-01,-1.668946647202078218e-17 +1.890306567344794408e-01,-3.556635999474779819e-01,-9.530508839860651234e-18 +2.076385471708734332e-01,-3.552589857915244842e-01,-8.670112613917498057e-18 +2.005862838974847295e-01,-3.722518480182627765e-01,-1.031737993633788728e-17 +2.105599158225447409e-01,-3.920168822326973723e-01,-1.142394291989906863e-17 +2.304692251301208028e-01,-3.882476275443309532e-01,-1.024161095592627526e-17 +2.218349666187868219e-01,-4.084172759147191578e-01,-1.220857016543061286e-17 +2.144667620582353940e-01,-4.292215549933602325e-01,-1.416894055375175375e-17 +1.919520253861507486e-01,-3.924214963886509255e-01,-1.228433914584222180e-17 +1.276259659473614472e-01,-4.506365615760571375e-01,-1.971632055268438410e-17 +1.405378322647141409e-01,-4.381129173438721436e-01,-1.815875469558116630e-17 +1.495082442153468361e-01,-4.569640784842300962e-01,-1.923829330808632229e-17 +1.379240357139965845e-01,-4.180916359030886209e-01,-1.670433719247419096e-17 +1.598063139819818901e-01,-4.244191528112614686e-01,-1.622630994787612606e-17 +1.508567340289529990e-01,-4.776777421670901913e-01,-2.080338021497598462e-17 +1.637686003463056650e-01,-4.651540979349051419e-01,-1.924581435787277299e-17 +1.787267884543661811e-01,-4.536788766355167035e-01,-1.767937761661580028e-17 +1.201986149978941376e-01,-4.724521024974685512e-01,-2.175866574023047594e-17 +8.066840078176495954e-01,-4.998429592796825860e-01,6.663062899200941232e-18 +8.098447547818208303e-01,-4.853299983953920926e-01,7.942465859492593330e-18 +8.225543377829280800e-01,-4.958063076593330343e-01,7.686509254250353666e-18 +7.961919039193313674e-01,-4.746936212958170476e-01,8.168975112150590835e-18 +8.120622338846098520e-01,-4.706569696754674959e-01,9.192421467200003268e-18 +8.149696996718513997e-01,-5.694662038062934251e-01,1.569591405589237816e-18 +8.283734613679520908e-01,-5.851152461619554268e-01,9.387094520570680841e-19 +8.103160603366619252e-01,-5.838391157528136644e-01,2.346944460849158417e-19 +8.030583447410470921e-01,-6.026103796200318330e-01,-1.561250728329228355e-18 +7.896545830449464010e-01,-5.869613372643698312e-01,-9.303687747970570820e-19 +8.259272302429128132e-01,-4.646361096540835844e-01,1.028224143870889541e-17 +8.122743793804234613e-01,-4.539997325545085394e-01,1.050875069136689445e-17 +1.966711375394947225e-01,-2.903244409792152814e-01,-4.063926791851216545e-18 +2.154950855473150573e-01,-2.898495445219357314e-01,-3.188394875568083771e-18 +2.053602111753058679e-01,-3.056406883043193967e-01,-4.878654227630916578e-18 +2.935765734993561193e-01,-1.031723748650255207e-01,1.493493706854431300e-17 +2.993640752726058341e-01,-8.313707782952296788e-02,1.676458294245006549e-17 +1.625563906881455356e-01,-2.917076913253616732e-01,-5.691659432115242761e-18 +1.435080978694791565e-01,-2.954332583762501185e-01,-6.832220777476430560e-18 +1.504019280517558677e-01,-2.822846277792564473e-01,-5.493616885055406420e-18 +8.115805509310214383e-01,-5.544591750206931957e-01,2.596075986493375267e-18 +8.296379519623116039e-01,-5.557353054298350692e-01,3.300090992465526739e-18 +8.452156802400607738e-01,-5.635999221554245375e-01,3.376765713154380743e-18 +2.350283639832964899e-01,-3.704328536713993869e-01,-8.640883110277687628e-18 +2.308827099989520515e-01,-3.528752059156406995e-01,-7.447972726010003184e-18 +2.467168996483699028e-01,-3.514608257247308076e-01,-6.631872125892956708e-18 +1.834247995804632603e-01,-2.196414478202332043e-01,8.917809728933774489e-19 +1.999824252838203198e-01,-2.158295338841610955e-01,1.928201843155554104e-18 +2.938212135802805713e-01,-6.565645241049551661e-02,1.788922955430572606e-17 +2.745357760431998972e-01,-7.370709784753440297e-02,1.639877363294659197e-17 +1.506607287297473952e-01,-2.445096824455773310e-01,-2.518371559372135057e-18 +1.692549775510447940e-01,-2.369201907775207450e-01,-1.094876710167809455e-18 +1.681035028714592261e-01,-2.504358161815105621e-01,-2.206553995723219483e-18 +1.659820254387513738e-01,-2.137153140842999732e-01,5.799634092444603338e-19 +6.854273644224028184e-01,-4.768322717520999676e-01,3.068587834568349028e-18 +6.887120136876815346e-01,-4.563856170367998066e-01,4.819050060915610092e-18 +7.030578276058734311e-01,-4.615713443221309831e-01,5.051043300984713939e-18 +6.717633642330581578e-01,-4.500300053358231023e-01,4.562932666017677363e-18 +6.893938274165287705e-01,-4.347690779058541177e-01,6.545388132434041503e-18 +8.044401896411144115e-01,-4.345397050327170496e-01,1.168665785363473848e-17 +3.098832087682495962e-02,-4.551606432681098435e-01,-2.437475989158708479e-17 +4.989776635740297839e-02,-4.637213873529182351e-01,-2.420433257194282365e-17 +8.406246916621656906e-01,-4.965311236390574368e-01,8.434355723205926438e-18 +8.065918537674977573e-01,-4.154509524557316591e-01,1.328012835868633080e-17 +2.640133506754129278e-01,-3.558075959618661743e-01,-6.202658058988969906e-18 +7.955639173046772372e-01,-5.469841879023165099e-01,2.469286533324266519e-18 +7.834960576934204557e-01,-5.545558516640173297e-01,1.337825231029426266e-18 +7.784227393684207685e-01,-5.695309786097412230e-01,-6.300914448122044733e-20 +7.650064984212798791e-01,-5.558967568766070011e-01,4.092396869311187039e-19 +7.912481496413570348e-01,-4.025524211231480409e-01,1.360882262658938474e-17 +6.778978589210522543e-01,-4.930883664204223638e-01,1.457872636258507513e-18 +1.448133867520928764e-01,-3.278797307199514677e-01,-9.319756048432249513e-18 +1.415673747527624038e-01,-3.115434419914812625e-01,-8.182607115215251747e-18 +1.589085725051993525e-01,-3.211926106508256051e-01,-8.167412257753264667e-18 +1.294129121163727913e-01,-3.021203784453759811e-01,-7.984564568155412324e-18 +8.506578899343739120e-02,-7.056388358722996690e-02,8.207856291450064022e-18 +6.292991982030649023e-02,-6.856336239118272780e-02,7.379051656874857231e-18 +6.661251183412401911e-02,-8.908982345556042126e-02,5.932594993040801268e-18 +6.922436728392439287e-01,-4.982740937057535957e-01,1.689865876327610589e-18 +6.560953316257379653e-01,-4.556161955379126605e-01,3.426922449461341487e-18 +4.464324232004096560e-02,-5.154434524311570787e-01,-2.849630212155587009e-17 +5.083505933379645070e-02,-5.291948080009823974e-01,-2.929946083450082408e-17 +6.052261329970343162e-02,-5.021341745599448014e-01,-2.674494789834795824e-17 +2.549708287973239673e-01,-4.591412924421587882e-01,-1.471262511371000845e-17 +2.364670783238760343e-01,-4.632452068496341058e-01,-1.585862087478017988e-17 +1.881281163909630516e-01,-2.765461789625998090e-01,-3.363361489741302721e-18 +1.780739862815894359e-01,-2.607026926209109474e-01,-2.568057343106555481e-18 +8.102321695951373304e-01,-5.332532895258581540e-01,4.199786120200554671e-18 +8.068045633937750427e-01,-5.180487854755524424e-01,5.240051480495074516e-18 +1.779932420189538900e-01,-2.923373227449834744e-01,-5.053620841804132446e-18 +1.710994118366771510e-01,-3.054859533419772566e-01,-6.392224734225159667e-18 +5.061580087434874864e-01,-4.474944366893860437e-01,-2.612913094183393835e-18 +1.975083865029077512e-01,-5.212014573891804448e-01,-2.214063034189216367e-17 +2.133963899349710092e-01,-5.274722160495357581e-01,-2.192508856357941638e-17 +1.594797374602919537e-01,-2.682921842889675057e-01,-3.991552192310882624e-18 +1.167023847784084412e-01,-1.230955469919528533e-01,5.495212532807973075e-18 +1.290106212654124618e-01,-1.383705019148744886e-01,4.844894264387500606e-18 +1.052468442249235303e-01,-1.372943188513292834e-01,3.871074146970800681e-18 +8.537377793328759790e-02,-1.481788292202408097e-01,2.132112392208521022e-18 +9.768201442029161852e-02,-1.634537841431624450e-01,1.481794123788047783e-18 +7.920328920128505423e-02,-1.282581521878314312e-01,3.420249227585376286e-18 +1.913095915876767972e-01,-3.223931612411693459e-01,-6.818713830677155681e-18 +2.101335395954971874e-01,-3.219182647838897959e-01,-5.943181914394022906e-18 +2.193270828359467628e-01,-3.362869578448558494e-01,-6.661101629532767137e-18 +1.743454238360077069e-01,-3.218222420704473508e-01,-7.529373667442154352e-18 +7.633378403361633646e-01,-4.848774601843245935e-01,5.906913092832650917e-18 +7.495365477989708314e-01,-4.685932198385682201e-01,6.569928023704836673e-18 +8.201133188991129863e-01,-6.142640573072418730e-01,-1.716070425513039517e-18 +8.388753649218186892e-01,-6.135584243173851648e-01,-8.251921779606986455e-19 +8.465035940022486161e-01,-5.787742155666055766e-01,2.243585272450348911e-18 +8.418499546670589195e-01,-5.931471275131257048e-01,9.086883129460253955e-19 +7.513888654761782804e-02,-3.825027711113327400e-01,-1.670809499485161239e-17 +7.482235268465162181e-02,-3.584042104827217523e-01,-1.483148287739767001e-17 +9.286866591214096300e-02,-3.692473929547175904e-01,-1.487856674299968298e-17 +5.888758114216352535e-02,-3.495025961860707131e-01,-1.484269750609622700e-17 +7.661736050668663256e-02,-3.362472180294555635e-01,-1.301316925424429451e-17 +2.619239279150155641e-01,-3.799566506878950811e-01,-8.190374476951737000e-18 +2.463034147795385431e-01,-3.868332473534210614e-01,-9.425510355809228781e-18 +1.172364385518576413e-01,-4.900012414365728652e-01,-2.326743625084351066e-17 +1.119281233958522859e-01,-5.095384588166567141e-01,-2.503666487827040722e-17 +9.849253694178886076e-02,-4.949536996586058057e-01,-2.449070094269830835e-17 +1.336342014519575905e-01,-4.870368616555194041e-01,-2.230462967580256865e-17 +7.661635117921788973e-02,-4.994037534006588452e-01,-2.581403600511353127e-17 +8.635693625389781469e-02,-1.028117547560228606e-01,5.735272974837014135e-18 +7.319418331814570022e-02,-1.082974326279451949e-01,4.718714433595060283e-18 +9.791116694761498040e-02,-8.699190372819440298e-02,7.490991755211042797e-18 +1.044928384316366754e-01,-1.061995129005791905e-01,6.277111195765301042e-18 +4.543644680558198146e-02,-4.269806033131776646e-01,-2.152042234239151731e-17 +3.273783969104387959e-02,-4.320059790202856465e-01,-2.248019735773671540e-17 +6.541775839301569584e-02,-4.263314890719620553e-01,-2.057968176047990853e-17 +5.972836372958731377e-02,-4.424770707019927696e-01,-2.209978212187218089e-17 +1.821728839219551310e-01,-4.283134824275652841e-01,-1.553581479019325382e-17 +1.984795618436217268e-01,-4.375519248110369408e-01,-1.553446495582595269e-17 +1.795590873712374913e-01,-4.082922009867817614e-01,-1.408139728708627539e-17 +8.767749672797601201e-01,-5.437361029963421188e-01,6.340633564815125982e-18 +8.758399866798863842e-01,-5.213917982001713414e-01,8.052070673376366136e-18 +8.968503337649471607e-01,-5.095462205049073878e-01,9.917080855353676537e-18 +8.765446456622928428e-01,-4.999233228078083235e-01,9.767809413847160596e-18 +8.432772601281587344e-01,-4.747995716269217126e-01,1.025747954439425169e-17 +7.809829119598659108e-01,-4.769888272355684022e-01,7.311608760875107427e-18 +7.215552062205876638e-02,-4.020904876332377365e-01,-1.837775042072643823e-17 +2.723621524876377875e-01,-1.567796454422158703e-01,9.784329204319569822e-18 +2.567845018640553256e-01,-1.401791088878887592e-01,1.039305465454466187e-17 +2.799218550903993519e-01,-1.386270839895340778e-01,1.154518081755588989e-17 +2.345394965518134978e-01,-1.407339804352552015e-01,9.358900717909065538e-18 +2.420991991545750344e-01,-1.225814189825734507e-01,1.111975233114538407e-17 +2.961878692381406664e-01,-4.816092216411994587e-01,-1.463991056718424849e-17 +1.404314446416256024e-01,-2.720177513398559510e-01,-5.132113537672070422e-18 +1.288708563605732715e-01,-2.548711052751309047e-01,-4.301652970111538477e-18 +2.654399939763774641e-01,-1.764262493520433184e-01,7.934650323650289601e-18 +2.570455808544711562e-01,-1.943526783963002158e-01,6.154368909125909124e-18 +2.408303861393874812e-01,-1.762580993848273936e-01,6.851921626783962861e-18 +7.708215527099301356e-01,-3.984714780405998469e-01,1.301936002766915731e-17 +1.231131301767575958e-01,-4.120107505899268108e-01,-1.688681032531848418e-17 +1.103779530659467767e-01,-3.927910271637414796e-01,-1.594600878545568281e-17 +1.093875578460036802e-01,-3.766373641887040824e-01,-1.472274047861846339e-17 +1.059203768859179329e-01,-4.125656770095139647e-01,-1.769598040031642982e-17 +1.438722502107149803e-01,-3.487288370866876708e-01,-1.099743164387678346e-17 +2.243747395833942393e-01,-1.589387321651270502e-01,7.477945455381097582e-18 +2.159803264614879592e-01,-1.768651612093839476e-01,5.697664040856717875e-18 +2.062939102428255067e-01,-1.953105497780484034e-01,3.819130652282613270e-18 +2.492301687991535508e-01,-2.136872463609633122e-01,4.289392934202305994e-18 +6.993940701751478750e-01,-4.155038874789692138e-01,8.502216367126569207e-18 +7.134790648117593781e-01,-3.968802434217822972e-01,1.059061380893099451e-17 +7.204274715077636504e-01,-4.225010455496439055e-01,8.889902969136401846e-18 +1.791187522561990264e-01,-3.380998185500177500e-01,-8.593901354205260681e-18 +1.720664889828102950e-01,-3.550926807767560422e-01,-1.024116867662564990e-17 +9.145130455489816068e-01,-5.596822699574862670e-01,6.770101965524704293e-18 +8.963107831244648827e-01,-5.508422919187057065e-01,6.653075043920573859e-18 +9.143479372070572042e-01,-5.398546739360507996e-01,8.318369036487012510e-18 +9.330574320483486783e-01,-5.289074341650135125e-01,1.001043591242419797e-17 +9.148551696238319542e-01,-5.200674561262330631e-01,9.893408990820067540e-18 +7.009008543917975009e-01,-5.116500620396997601e-01,1.025947271778410142e-18 +6.931168039837116712e-01,-5.323796606330367664e-01,-9.470824396635686628e-19 +7.093034910376159186e-01,-5.294995342986605902e-01,-2.858459029268240875e-22 +1.076436337198029281e-01,-5.352594033587145805e-01,-2.724545880840117864e-17 +8.733420157177002041e-02,-5.305688487995270375e-01,-2.778187532290820601e-17 +8.644743754606412645e-02,-4.175869550220527859e-01,-1.895711020020709565e-17 +2.261244880584760142e-01,-2.147035125351970108e-01,3.180711403132523989e-18 +1.478945575829164749e-01,-4.952268811061944498e-01,-2.231215072558901934e-17 +1.573107763163808515e-01,-2.011908750721110306e-01,1.176446858829165140e-18 +1.474777406027583671e-01,-1.833497226089094156e-01,2.138328334159275245e-18 +1.122648702968922912e-01,-2.100758710359150738e-01,-1.526641662625058997e-18 +1.213510819177884004e-01,-2.288310408589521727e-01,-2.593492234971425183e-18 +1.300223310401589227e-01,-2.413554798711410876e-01,-3.189975684556129990e-18 +1.431409542869624407e-01,-2.184696180293986267e-01,-8.102108242320217636e-19 +1.563796337167999984e-01,-3.553055996964815666e-01,-1.095644473314032359e-17 +1.662915381950804128e-01,-3.728693810939418540e-01,-1.189305221879571106e-17 +1.695854554461775632e-01,-3.885271667723471101e-01,-1.297483430352509713e-17 +1.969357539248040023e-02,-4.384114260027668353e-01,-2.356364193717244687e-17 +1.268436294137073594e-02,-4.272912200798439919e-01,-2.300331659112536026e-17 +7.088528538440180826e-01,-3.736313094399556500e-01,1.220864687826961806e-17 +7.298862551766339690e-01,-3.806284675106303417e-01,1.259633348027945224e-17 +1.030679722621256206e-01,-1.978846391831866891e-01,-9.797090787722184810e-19 +9.694242861185708993e-02,-1.779505049119134430e-01,3.114850810420657140e-19 +1.382808425679916964e-01,-1.711584907561810309e-01,2.685260918012117302e-18 +1.252728071298252477e-01,-1.937539471644812994e-01,3.332052092055250991e-19 +7.467072840103664566e-01,-3.898599100206736057e-01,1.262113771094272570e-17 +8.581868670432249990e-01,-4.900373484909366084e-01,9.725923053058173901e-18 +2.528381261269389557e-01,-1.047343425241645393e-01,1.299821444042275054e-17 +2.857093568650019844e-01,-1.185917869493481047e-01,1.337482669188934058e-17 +6.787951546011761206e-01,-3.779546965868216257e-01,1.053090850464866760e-17 +6.725547231571220586e-01,-3.936743430118676557e-01,9.019686961384403613e-18 +6.824454207205244982e-01,-4.091482757779925095e-01,8.246098972228635708e-18 +1.390204283764262527e-01,-1.566617699874300607e-01,3.855569960758098600e-18 +1.168154949034930362e-01,-1.670659945430018889e-01,2.050446835804347684e-18 +2.572018336708910002e-01,-5.450990166528824066e-01,-2.135728469066085706e-17 +2.484968419834125419e-01,-5.294189816924833591e-01,-2.051472432470134985e-17 +6.915983578814248744e-01,-3.623888447108482569e-01,1.232231876008406364e-17 +6.779478490034573923e-01,-3.504604559465622216e-01,1.265030005781156937e-17 +4.616959372135828743e-01,-4.531803325758984036e-01,-5.039009384773512609e-18 +4.802271181546682310e-01,-5.631178107737239147e-01,-1.283917222710878369e-17 +4.738111790209140195e-01,-3.392580255086845020e-01,4.438546645951030603e-18 +5.272607225542137455e-01,-3.415643233339467622e-01,6.637829349176808849e-18 +5.161219861242678508e-01,-3.363927353215370730e-01,6.547545166948389442e-18 +5.389932538204911250e-01,-3.350182084189254894e-01,7.673895927620840287e-18 +5.361506008717230598e-01,-5.522815684940407532e-01,-9.498591180559392239e-18 +5.473327221919452867e-01,-5.578024844797100368e-01,-9.433782302204526339e-18 +5.254400967279864165e-01,-5.585192425639193825e-01,-1.046494515132110311e-17 +5.915588026047838843e-01,-5.567246340721827558e-01,-7.379730050209935142e-18 +5.677102639293232222e-01,-4.833955009943365910e-01,-2.688553170781775722e-18 +4.280506150500076323e-01,-3.435858505553984754e-01,2.061176137033230093e-18 +4.042045494910476711e-01,-4.178738428283942929e-01,-4.829178446141487148e-18 +2.617132849295016328e-01,-5.589159736055850924e-01,-2.224042078465667120e-17 +6.464289052334905028e-01,-5.450447811785055219e-01,-4.019870978654198885e-18 +9.344880551941330271e-01,-5.656660260545487429e-01,7.190164786962030286e-18 +9.495780303678011958e-01,-5.415782376434620238e-01,9.752018308200489868e-18 +2.607053427612930907e-01,-8.931493043984195523e-02,1.455832481707772450e-17 +2.722114211011710250e-01,-1.066071353508844105e-01,1.371401664443595590e-17 +5.858676993887595996e-01,-3.877301436994793349e-01,5.625684310047772042e-18 +7.124046369225550679e-02,-5.332992699588128271e-01,-2.871278721614263298e-17 +7.709048390626901948e-02,-5.172213381979755553e-01,-2.719084146335963188e-17 +2.324724964347764100e-01,-5.309912197334408779e-01,-2.135167809673031384e-17 diff --git a/src/pyvale/data/render/riley/rabbits/rabbit_tri6/uvs.csv b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/uvs.csv new file mode 100644 index 000000000..930ed3f79 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/rabbit_tri6/uvs.csv @@ -0,0 +1,828 @@ +2.802802885420854762e-01,7.568364660251870879e-02 +2.613232018918354993e-01,8.426595894864297165e-02 +2.500000000000000000e-01,1.010573748232699853e-01 +2.558405876551776426e-01,1.208731720156028672e-01 +2.670817583772410186e-01,1.384409328137418405e-01 +2.805981415361497033e-01,1.543668789267802210e-01 +2.969311087369233548e-01,1.669335971599083257e-01 +3.160226903194344183e-01,1.750866543717047585e-01 +3.044329758565291755e-01,1.922765003428107689e-01 +2.953238720916010474e-01,2.110789226476133817e-01 +2.891828955157781933e-01,2.310632797281201856e-01 +2.829968606218882798e-01,2.510341456650883041e-01 +2.769726151708938322e-01,2.710451550141862453e-01 +2.732807450959536810e-01,2.916233312182457960e-01 +2.695155163132308962e-01,3.121882461871384185e-01 +2.816316796728513538e-01,3.052592250676149366e-01 +2.954723842122168875e-01,2.896177698336943052e-01 +3.083501252957757677e-01,2.731483603195874466e-01 +3.205904328338116116e-01,2.562097577230844636e-01 +3.306254590301470619e-01,2.378724059403187763e-01 +3.404832684645697771e-01,2.199863038051388109e-01 +3.501940890053505950e-01,2.384781643810003349e-01 +3.603844554456025473e-01,2.567287818485476381e-01 +3.711504384753486208e-01,2.746208229040716930e-01 +3.850157166721577262e-01,2.902679784580973199e-01 +3.987871286127173676e-01,3.059972181541461000e-01 +4.157504918676788730e-01,3.181780321450791149e-01 +4.145505594719807174e-01,3.011738823960437572e-01 +4.099065692544618944e-01,2.808142402291105566e-01 +4.041044862311041208e-01,2.607284655110933547e-01 +3.983024032063900433e-01,2.406426907883807698e-01 +3.913628047480688377e-01,2.209465884841498862e-01 +3.835277022490432564e-01,2.015633082802047726e-01 +3.738722898460837274e-01,1.830395912163785832e-01 +3.625548926549406747e-01,1.654847251966919952e-01 +3.717715984547501074e-01,1.510798311088482615e-01 +3.891116268124426014e-01,1.467221094549404636e-01 +4.097732339901959397e-01,1.498910277621899323e-01 +4.305070953522387445e-01,1.525760802031883023e-01 +4.512409567077085848e-01,1.552611326433354089e-01 +4.720586814191308767e-01,1.570679197059578203e-01 +4.929326611210321230e-01,1.582424346390044756e-01 +5.138065270005856000e-01,1.594189538754108015e-01 +5.347004355824293009e-01,1.594448938529649251e-01 +5.556024359301535709e-01,1.590021761957927382e-01 +5.763162404453239240e-01,1.561899116192636827e-01 +5.964260823133082923e-01,1.505828691398953811e-01 +6.137240499033802532e-01,1.393120797214023876e-01 +6.305874582711689103e-01,1.300573791671510160e-01 +6.510655187408173061e-01,1.259661544027830538e-01 +6.664478803734630308e-01,1.130351260241932027e-01 +6.642907952633798629e-01,9.389828052447869722e-02 +6.816845374678697222e-01,8.370921234246855858e-02 +7.000885673663256314e-01,7.379833092928410332e-02 +7.181387652873054694e-01,6.325058771037125882e-02 +7.347009862248525813e-01,5.054786093205565489e-02 +7.485532852434504392e-01,3.491052684750034496e-02 +7.401415941269777754e-01,2.268076018070767225e-02 +7.195729927989658048e-01,2.639938483893756321e-02 +6.995476573616231653e-01,3.239821663664853302e-02 +6.799626222461421232e-01,3.952230915922719245e-02 +6.812537808268059880e-01,2.430978506128186195e-02 +6.782716967880442205e-01,3.847063266518262713e-03 +6.594623809594162278e-01,3.139652478310601784e-03 +6.423644378566265578e-01,1.482269088033207755e-02 +6.311042962497953601e-01,3.229696423753415646e-02 +6.211192130473617290e-01,5.052159286954610584e-02 +6.018238416279589886e-01,4.264434376507734992e-02 +5.819391043811360520e-01,3.649469651261122438e-02 +5.613429107999583501e-01,3.290313447983515827e-02 +5.406501590597074802e-01,3.013538341016639213e-02 +5.197734611481110711e-01,2.901050718243864887e-02 +4.988721843310878201e-01,2.861853501458657204e-02 +4.779664077614409479e-01,2.848008505414627994e-02 +4.570609453501241481e-01,2.873320980794830115e-02 +4.361554578125967918e-01,2.898440247958945434e-02 +4.152584887901479282e-01,2.958351789907534210e-02 +3.943664509886670722e-01,3.037425530342463542e-02 +3.734937286238356191e-01,3.150988283386632616e-02 +3.526427779175894672e-01,3.303911573720579725e-02 +3.319447381457805157e-01,3.595953300833708288e-02 +3.113857423877728348e-01,3.973766056849988015e-02 +2.910251418908901266e-01,4.444003268763865172e-02 +2.705683273875769124e-01,4.855483558162965868e-02 +2.643609104766570517e-01,6.234083683498888029e-02 +2.708419111177360339e-01,8.000755182689191225e-02 +2.544608826694966242e-01,9.183420848199905229e-02 +2.515159840631261967e-01,1.113982613200696081e-01 +2.609307604326712715e-01,1.299890290873357279e-01 +2.736421298402216262e-01,1.465636700070800935e-01 +2.877428804989252686e-01,1.619851359906621380e-01 +3.065704546779086659e-01,1.709466968488256855e-01 +3.096834261516573927e-01,1.832918215309775056e-01 +2.997436006207516157e-01,2.016189314763272011e-01 +2.922758510161446166e-01,2.210780467466772758e-01 +2.860898780691100152e-01,2.410487126957104875e-01 +2.799038657096560856e-01,2.610195058829759551e-01 +2.751455408241441081e-01,2.813375520503320071e-01 +2.714157813182773160e-01,3.019100373080071953e-01 +2.738438073840652742e-01,3.122506562955105758e-01 +2.887960434439845181e-01,2.976577232776591586e-01 +3.018566501328581175e-01,2.813404356600715528e-01 +3.146155245445589332e-01,2.647840952950971660e-01 +3.257142294515340541e-01,2.470993573354518524e-01 +3.354539395953420322e-01,2.285811106733891818e-01 +3.454394959974882440e-01,2.291696726194100697e-01 +3.551783903091325079e-01,2.476638860820053467e-01 +3.655882045765206367e-01,2.657948633154342821e-01 +3.781034870202518716e-01,2.824261072305099263e-01 +3.919281008289295931e-01,2.981100249702635097e-01 +4.071993978518878565e-01,3.121464225499202549e-01 +4.163743102165522458e-01,3.114664852261730954e-01 +4.126786630986584159e-01,2.908899175718905328e-01 +4.070055277429285301e-01,2.707713528706056638e-01 +4.012034447189567476e-01,2.506855781504628844e-01 +3.952594089845881120e-01,2.306464589222604333e-01 +3.874379388202204844e-01,2.112578621291573144e-01 +3.789415711845202095e-01,1.921817024768680549e-01 +3.685212304238821845e-01,1.740682717270979063e-01 +3.643932182161562228e-01,1.582977687468301309e-01 +3.788230830352515843e-01,1.449333471102527138e-01 +3.994148658330507473e-01,1.484880216314835299e-01 +4.201401646701946602e-01,1.512335539825566677e-01 +4.408740260294924385e-01,1.539186064231995443e-01 +4.616227694300090167e-01,1.564649571194502153e-01 +4.824956712728148411e-01,1.576551771726349693e-01 +5.033696531725730949e-01,1.588296922293482571e-01 +5.242495803026842038e-01,1.596813141622103194e-01 +5.451513898292152938e-01,1.592119081935654268e-01 +5.659647990501464054e-01,1.576465218654458655e-01 +5.864529702310383730e-01,1.537143751655216106e-01 +6.056865079568607424e-01,1.458976752180407843e-01 +6.202947023950506900e-01,1.312998893712192250e-01 +6.408704975473699106e-01,1.282770134624619807e-01 +6.603110887607658297e-01,1.212726921856830120e-01 +6.689405776924226554e-01,1.029803400774873673e-01 +6.723391582539460787e-01,8.842127287120779555e-02 +6.909479685298964835e-01,7.886521460011611251e-02 +7.091323476026115680e-01,6.855569329278723978e-02 +7.266234691725017569e-01,5.714577754344885713e-02 +7.419110012454720460e-01,4.297974940990293563e-02 +7.500000000000000000e-01,2.572800150733774160e-02 +7.298716690349799086e-01,2.460229025046331910e-02 +7.095584497547910985e-01,2.938835583812568139e-02 +6.898192402712182147e-01,3.620251423144921904e-02 +6.774627267957535892e-01,3.400593562274962373e-02 +6.811255003760559035e-01,1.387498875492689833e-02 +6.693364004644687393e-01,0.000000000000000000e+00 +6.503050831379393326e-01,8.174842454485575782e-03 +6.359646194628990612e-01,2.304311703216191734e-02 +6.262616803043632441e-01,4.153962651890674707e-02 +6.114923672192693616e-01,4.657345465230034592e-02 +5.921386013685645544e-01,3.871392603477998712e-02 +5.716410075898004095e-01,3.469891549609299686e-02 +5.510484452053638904e-01,3.108711586862839341e-02 +5.302115742836249757e-01,2.957734128583527217e-02 +5.093251001744170114e-01,2.872887986978755678e-02 +4.884192859089354632e-01,2.850639184081041333e-02 +4.675136886747036646e-01,2.860751216821528359e-02 +4.466082030365514655e-01,2.885890743552346413e-02 +4.257042735457535754e-01,2.918218360356242269e-02 +4.048124698918300624e-01,2.997888660115835893e-02 +3.839201612590763535e-01,3.076156280305107626e-02 +3.630684974724862069e-01,3.227822719173937399e-02 +3.422804742985930959e-01,3.439478566611044869e-02 +3.216432650479696953e-01,3.772300428675241096e-02 +3.011599065048624624e-01,4.185335893306650623e-02 +2.807224488720175826e-01,4.612942195034658993e-02 +2.620473520753082153e-01,5.345296471939377930e-02 +2.721637591362663366e-01,6.920940005825558516e-02 +3.970836711330364976e-01,6.109379788186706378e-02 +3.805128113547199264e-01,6.078961786027067826e-02 +3.892397347263613638e-01,4.507007802878588987e-02 +3.900412331783871256e-01,7.695826364988843371e-02 +4.056295460237071548e-01,4.630354022731768271e-02 +4.169868839063810562e-01,6.417464994398720812e-02 +4.072536710475603283e-01,7.712321872186773952e-02 +3.995902424083844773e-01,1.110782102345971439e-01 +3.825206730635420382e-01,9.887585066847884296e-02 +4.038088498828953377e-01,9.422652611758074170e-02 +4.035943280126099708e-01,1.293008669618666562e-01 +3.870169398815889172e-01,1.225122126902169484e-01 +3.437644665757779161e-01,1.967229638709469264e-01 +3.538439274395058787e-01,1.808395608526016940e-01 +3.603638081854163566e-01,2.005444816866669699e-01 +6.042414354184175718e-01,9.733400633103059252e-02 +6.166422096914085937e-01,8.156901442660886847e-02 +6.226452503084316525e-01,9.816900182999321878e-02 +4.283477171343519352e-01,8.916285601772760971e-02 +4.264596302423594443e-01,4.635913484931211692e-02 +6.643456468526196534e-01,4.740674029662558103e-02 +6.790252860209039509e-01,6.192290903909525995e-02 +6.609094050110015939e-01,6.264955114751849519e-02 +3.156810265686015859e-01,6.552340742770194904e-02 +3.320013097266252267e-01,5.467653349785182165e-02 +4.150995624651459548e-01,1.121607574129245971e-01 +4.332039821078279562e-01,1.161016940975582168e-01 +4.474460894507920061e-01,4.777562093934480114e-02 +4.371470677496771540e-01,6.500535201610796454e-02 +5.794946968354054428e-01,6.179704288675227225e-02 +5.934000350626656983e-01,6.053878665722359914e-02 +5.591702195687153765e-01,1.162646009781723028e-01 +5.715425776583105133e-01,9.810536633944283436e-02 +5.773344683378951459e-01,1.192185489752542182e-01 +3.734533469563636188e-01,7.773016744999546035e-02 +5.835906221601416810e-01,1.349778000700030400e-01 +5.649367431892706737e-01,1.397167764674304424e-01 +4.602862688076772013e-01,6.791089187633911339e-02 +4.442808716787882695e-01,7.730910689963046978e-02 +4.515698840260568558e-01,9.025736522581642718e-02 +4.445740667234102661e-01,1.057273339069079165e-01 +4.711275425777292636e-01,1.312640662814593129e-01 +4.610096590510006642e-01,1.122501045933262803e-01 +4.827051200786361962e-01,1.130687432387154495e-01 +3.644480934659244387e-01,5.921341866353257294e-02 +3.689709110448800566e-01,4.536165074869939751e-02 +3.498467434833490985e-01,4.888952034312292472e-02 +5.865665533814812260e-01,8.203462994528494534e-02 +5.690885478254528174e-01,7.592568706984956228e-02 +4.709207207565362374e-01,8.918389796969816707e-02 +3.592269671318942814e-01,7.578225715344022451e-02 +4.835309333462680659e-01,7.321135649909907284e-02 +4.776573749292436499e-01,6.078930678018654166e-02 +3.713570718365554191e-01,1.156182908678615451e-01 +4.487390907698960429e-01,1.208646498691235416e-01 +4.574311885906068298e-01,1.353846750350421180e-01 +4.404112003143462184e-01,1.356001763354481859e-01 +4.672237884218548576e-01,4.623968614515933107e-02 +4.829256442318511366e-01,4.374900241299110870e-02 +5.542503818980889507e-01,6.818638806931225094e-02 +5.535029635676558257e-01,9.234983128600629532e-02 +5.527598471954262571e-01,4.864143792930371302e-02 +5.664792463074117546e-01,5.399140438214947851e-02 +2.901356534918207997e-01,9.698148698554792668e-02 +3.022115899916162918e-01,8.014491197769929576e-02 +3.096576536890147668e-01,1.020154157951718571e-01 +4.220522546825161703e-01,1.330943914257373961e-01 +5.431966854904231035e-01,1.126201679524159172e-01 +5.346774775569185234e-01,9.512647872181236031e-02 +3.485200611991692843e-01,6.549997610961189043e-02 +5.872500848975354959e-01,1.037056305996802569e-01 +5.425949400591109084e-01,8.021982806723283732e-02 +4.933413154180323890e-01,1.331012736201881985e-01 +5.046591277259697694e-01,1.154014226838748630e-01 +4.922992387095835864e-01,9.339809828200199004e-02 +5.071135284382455310e-01,7.336855466241286317e-02 +4.929084870912020522e-01,5.461732327171586743e-02 +3.479428245742959280e-01,8.641023903898123470e-02 +3.639703035437142908e-01,9.476159670436204441e-02 +3.329469502433172190e-01,7.490610663453101115e-02 +5.151434041975975209e-01,1.350602611989172863e-01 +5.263692670008135455e-01,1.186131820876204085e-01 +5.445078791687365527e-01,1.355769148484844422e-01 +5.154948117053023138e-01,9.488411911661780163e-02 +5.180887458620885289e-01,5.422057376205757784e-02 +5.269064426133323042e-01,7.207087453185609394e-02 +4.824330637492717511e-01,1.385488888342550073e-01 +3.131335699954951313e-01,1.380342477615000008e-01 +3.141264604544850014e-01,1.218398866391050273e-01 +3.256724650750092986e-01,1.314409154080978803e-01 +3.289746811453820308e-01,1.157436809142866341e-01 +3.140770776717483614e-01,1.589358821526539456e-01 +2.965730597426698978e-01,1.454428375675536900e-01 +5.292990398402375174e-01,4.868574817256154236e-02 +5.269054948453655296e-01,1.416228686425893002e-01 +5.039766044152526048e-01,1.402448787050911139e-01 +5.410767890899383925e-01,5.798998836870052770e-02 +5.073512572705156654e-01,4.796718426101904270e-02 +6.096275034660365577e-01,6.342616929044343765e-02 +6.304782737252128122e-01,6.524374695194545826e-02 +6.009485106839760338e-01,7.683583754317241388e-02 +6.425369394184352601e-01,1.073713071700312521e-01 +6.183619163214032488e-01,1.160045714990111665e-01 +6.351435568435969126e-01,8.556126275331468745e-02 +6.503908669106570617e-01,8.786225132142076732e-02 +6.482886603158237726e-01,5.490056017929293569e-02 +6.361903964842048342e-01,4.730982008252235943e-02 +6.481678010074360952e-01,7.315225481988843481e-02 +2.787986113037510538e-01,1.321540633115936003e-01 +2.758077289736311499e-01,1.125169967583898450e-01 +2.630771285096971668e-01,1.074789599303107301e-01 +3.413988423954403828e-01,1.316543707637750915e-01 +3.600536142523619310e-01,1.320600043198837115e-01 +3.484688734067314941e-01,1.486900454480964973e-01 +3.513976022646950192e-01,1.118395397771638072e-01 +3.186506660336255736e-01,8.311676032890549792e-02 +3.315950629936478267e-01,9.567195710240596063e-02 +6.640781152802079923e-01,7.719907653247837231e-02 +6.496404388144683129e-01,3.364124777725730625e-02 +6.630779704529959906e-01,1.795277863444609892e-02 +6.677433343425300816e-01,3.236190223706317259e-02 +3.436835188830036913e-01,1.650086322673783301e-01 +3.905725432591503621e-01,2.727433116925154777e-01 +3.351189741249898102e-01,1.788216077566439355e-01 +3.282077753671120424e-01,1.656398500041305066e-01 +3.759276971559992742e-01,1.334779479535569136e-01 +3.251233707031521147e-01,1.891143509515213761e-01 +3.262777464514464709e-01,2.026640281315802428e-01 +2.701040002348449875e-01,9.633073734144668998e-02 +3.314619654914212621e-01,1.492624030140961011e-01 +2.901685308425182019e-01,2.765446537097033808e-01 +2.807556158169999816e-01,5.782117151048932896e-02 +2.967667844377508413e-01,2.572886521628031109e-01 +3.091060307596780188e-01,2.419752129427103493e-01 +2.968903910929811540e-01,1.212835621169802980e-01 +2.968899008663277161e-01,6.055847179575802458e-02 +6.993821330395189051e-01,5.227576705083530201e-02 +3.826855056626791707e-01,2.572850513602045197e-01 +3.751067568602425295e-01,2.390867556599988175e-01 +3.666911945375175841e-01,2.211151620947310603e-01 +5.972755226446864185e-01,1.230193584734635553e-01 +7.176302549300613842e-01,4.341351723819043829e-02 +3.175846506572033157e-01,2.152200216874833316e-01 +3.083645816108815385e-01,2.274419685892491716e-01 +3.931617029296988752e-01,5.308193795532641784e-02 +3.848762730405406174e-01,5.292984794452831182e-02 +3.887982412438781843e-01,6.094170787106883980e-02 +3.852770222665534705e-01,6.887394075507957680e-02 +3.935624521557118394e-01,6.902603076587773834e-02 +4.013566085783718540e-01,5.369866905459242529e-02 +3.974346403750342316e-01,4.568680912805178629e-02 +7.271369895119091931e-01,3.847362288549655701e-02 +7.374212901759151784e-01,3.661431055638161153e-02 +3.999979985061871135e-01,3.833889776537113131e-02 +3.918030928575141902e-01,3.772216666610523489e-02 +4.113082149650441055e-01,5.523909508565250787e-02 +4.070352775197088047e-01,6.263422391292713942e-02 +4.021686710902984130e-01,6.910850830186741900e-02 +4.121202774769707755e-01,7.064893433292743219e-02 +4.016995461456399075e-01,1.026523681760889706e-01 +3.931647614732186602e-01,9.655118839302978540e-02 +3.910554577359632855e-01,1.049770304515379865e-01 +3.969250415306411206e-01,8.559239488373457383e-02 +3.862809531209645542e-01,8.791705715918364528e-02 +4.015922852104972796e-01,1.201895385982319070e-01 +3.933035911449866973e-01,1.167952114624070392e-01 +3.953056339470994440e-01,1.259065398260417745e-01 +3.880642833470157593e-01,1.346171610725787060e-01 +3.963529774125262861e-01,1.380114882084035322e-01 +3.520641373805971641e-01,1.986337227788069482e-01 +3.571038678124611176e-01,1.906920212696343320e-01 +3.488041970076419251e-01,1.887812623617743102e-01 +6.134433428634246122e-01,9.775150408051189177e-02 +6.196437299999202342e-01,8.986900812830103669e-02 +6.104418225549130828e-01,8.945151037881973743e-02 +3.671180490157500698e-01,1.917920364515227627e-01 +3.638581086427948308e-01,1.819395760344900970e-01 +4.055312604652278052e-01,8.567487241972425449e-02 +4.160782835086235809e-01,9.169469106765419653e-02 +4.178006940909561040e-01,8.314303736979768156e-02 +3.719457552172298342e-01,2.010538949834358713e-01 +4.217232570743703057e-01,5.526689239664966252e-02 +4.160445881330333551e-01,4.633133753831484430e-02 +6.626275259318106237e-01,5.502814572207206240e-02 +6.699673455159527169e-01,6.228623009330687410e-02 +6.716854664367618577e-01,5.466482466786044825e-02 +6.794939541335232036e-01,5.072260909916122967e-02 +6.721541345493808883e-01,4.346452472792641797e-02 +4.208590595162536863e-01,3.797132637419367573e-02 +4.104440174069274860e-01,3.794352906319651414e-02 +3.238411681476133785e-01,6.009997046277686106e-02 +3.216935260571990307e-01,4.720709703317581968e-02 +3.135333844781872381e-01,5.263053399810091459e-02 +3.319730239362028712e-01,4.531803325309442798e-02 +4.241517722864869278e-01,1.141312257552414139e-01 +4.307758496210899457e-01,1.026322750576429271e-01 +4.217236397997489172e-01,1.006618067153260965e-01 +4.318033489960183546e-01,5.568224343271004073e-02 +4.422965786002346356e-01,5.639048647772638284e-02 +4.369528598465757252e-01,4.706737789432845903e-02 +4.418007736316944545e-01,3.838001170946703927e-02 +4.313075440274780625e-01,3.767176866445075961e-02 +4.270669758280291051e-01,6.459000098004759327e-02 +4.226673005203664957e-01,7.666875298085740198e-02 +4.327473924420145446e-01,7.708410401691780101e-02 +5.864473659490354596e-01,6.116791477198790794e-02 +5.876695697219009862e-01,4.851674158491735278e-02 +5.807169006082708584e-01,4.914586969968172403e-02 +4.073449024367652438e-01,1.116194838237608705e-01 +4.094542061740206185e-01,1.031936417652526694e-01 +5.682523439533052612e-01,1.177415749767132536e-01 +5.744385229981028296e-01,1.086619576573485402e-01 +5.653563986135129449e-01,1.071849836588075894e-01 +3.769830791555417449e-01,6.925989265513306237e-02 +3.817472900673753999e-01,7.734421554994193315e-02 +5.742636826747061773e-01,1.373472882687166996e-01 +5.706264918172974099e-01,1.479533440433470626e-01 +5.799534313027328025e-01,1.455838558446333475e-01 +4.538661791292345482e-01,5.784325640784190176e-02 +4.487166682786772332e-01,6.645812194622353897e-02 +4.407139697142327117e-01,7.115722945786920328e-02 +4.522835702432326799e-01,7.260999938798477771e-02 +4.479253778524225349e-01,8.378323606272344848e-02 +4.363142944065701023e-01,8.323598145867903975e-02 +4.399588005802044233e-01,8.971011062177201845e-02 +4.364608919288810451e-01,9.744509496231777701e-02 +4.480719753747335332e-01,9.799234956636218574e-02 +5.620534813789930251e-01,1.279906887228013657e-01 +5.711356057635829098e-01,1.294676627213423581e-01 +4.769163313281827854e-01,1.221664047600873743e-01 +4.718573895648184302e-01,1.126594239160208372e-01 +4.660686008143649639e-01,1.217570854373927758e-01 +3.689507202111440565e-01,6.847179305676401317e-02 +3.724804524103221270e-01,6.000151826190164989e-02 +3.512447607004692829e-01,4.096431804016436445e-02 +3.594088272641145498e-01,4.712558554591116111e-02 +3.608068444812347897e-01,3.920038324295253840e-02 +5.830306251084433899e-01,7.191583641601857757e-02 +5.742916223304290746e-01,6.886136497830090686e-02 +5.778275506034670217e-01,7.898015850756727463e-02 +4.768129204175862723e-01,1.011263206042067875e-01 +4.659651899037684508e-01,1.007170012815122445e-01 +3.618375302989093600e-01,6.749783790848637444e-02 +3.663401570441289223e-01,7.675621230171786324e-02 +4.805941541377558579e-01,6.700033163964277949e-02 +4.689718218684604256e-01,6.435009932826288304e-02 +4.719086010769726336e-01,7.056112418771909311e-02 +3.769388724500487009e-01,1.072470707681702079e-01 +3.791870058590721682e-01,1.190652517790392467e-01 +3.847688064725654500e-01,1.106940316793478818e-01 +4.445751455421210752e-01,1.282324131022858638e-01 +4.489211944524764686e-01,1.354924256852451658e-01 +4.530851396802514364e-01,1.281246624520828159e-01 +4.656034947821067194e-01,7.854739492301864023e-02 +4.772258270514021516e-01,8.119762723439859220e-02 +4.724405816755492538e-01,5.351449646267293636e-02 +4.802915095805473933e-01,5.226915459658882518e-02 +4.750747163268530526e-01,4.499434427907521988e-02 +4.804460259966460978e-01,3.611454373356869085e-02 +4.725950980916479582e-01,3.735988559965274652e-02 +4.642793655841680467e-01,1.333243706582507293e-01 +4.592204238208037470e-01,1.238173898141842200e-01 +4.637550286147660294e-01,5.707528901074922223e-02 +4.573349389363234874e-01,4.700765354225201059e-02 +4.621423668859895306e-01,3.748644797655378835e-02 +4.522535174004581049e-01,3.825441537364652339e-02 +5.538766727328724437e-01,8.026810967765928007e-02 +5.612957556965543215e-01,8.413775917792792880e-02 +5.616694648617709396e-01,7.205603756958092743e-02 +5.625227706129831695e-01,9.522759881272456484e-02 +5.703155627418816653e-01,8.701552670464619832e-02 +5.535051145467575484e-01,5.841391299930796810e-02 +5.603648141027504082e-01,6.108889622573084738e-02 +5.596195467514190058e-01,5.131642115572659230e-02 +5.639110785536851633e-01,4.344726943099226635e-02 +5.570513789976923036e-01,4.077228620456938013e-02 +4.458260785110274016e-01,1.454306544893917974e-01 +4.543360726491577628e-01,1.453229038391887495e-01 +5.804625452490184134e-01,1.270981745226286153e-01 +4.043468489335896310e-01,2.934057291916283838e-01 +4.066688440423490425e-01,3.035855502750949841e-01 +2.998966535904178388e-01,9.949845139035988495e-02 +3.059346218403155571e-01,9.108016388643559724e-02 +2.961736217417185735e-01,8.856319948162359734e-02 +2.912459392668508840e-01,7.791427929010893982e-02 +2.852079710169531657e-01,8.633256679403329692e-02 +4.276281183951720632e-01,1.245980427616478065e-01 +4.185759085738310903e-01,1.226275744193310313e-01 +4.368075912110870318e-01,1.258509352165032014e-01 +4.312317274984311943e-01,1.343472838805928049e-01 +3.409240266049871071e-01,5.178302692048734890e-02 +3.408957408145648071e-01,4.242452667573000380e-02 +5.483498245290395756e-01,1.024849996192111062e-01 +5.440902205622872856e-01,9.373815500390930699e-02 +5.389370815236709245e-01,1.038733233371141734e-01 +3.538735141655317551e-01,7.064111663152608522e-02 +3.564840773325468337e-01,6.235669738657225597e-02 +5.677838970664322860e-01,6.495854572599955856e-02 +5.729869715714086542e-01,5.789422363445087538e-02 +5.822922766177154319e-01,1.114620897874672306e-01 +5.793963312779230046e-01,1.009054984695615664e-01 +5.480489518133833116e-01,8.628482967661957326e-02 +5.386362088080147714e-01,8.767315339452259881e-02 +4.262796750173775129e-01,1.428352358144628353e-01 +4.354591478332925369e-01,1.440881282693182164e-01 +4.990002215720010792e-01,1.242513481520315377e-01 +4.936821239023030383e-01,1.142350829612951285e-01 +4.880232177483343481e-01,1.230850084294518032e-01 +4.984791832177766224e-01,1.043997604829384196e-01 +4.875021793941098913e-01,1.032334207603587128e-01 +5.000110077647237361e-01,6.399293896706437224e-02 +4.882197102187350035e-01,6.391433988540747013e-02 +4.953222308922567985e-01,7.328995558075600270e-02 +3.482314428867325784e-01,7.595510757429657644e-02 +3.535848958530951602e-01,8.109624809621071573e-02 +3.559565640590051094e-01,9.058591787167162568e-02 +3.615986353378042861e-01,8.527192692890113446e-02 +2.843765646540853398e-01,2.906205505259700228e-01 +2.774562123844024897e-01,2.984412781429303663e-01 +4.879150860279257707e-01,8.330472739055053144e-02 +4.997063835739146143e-01,8.338332647220741967e-02 +4.409715364388619996e-01,1.184831719833408653e-01 +4.093469452388779350e-01,1.207308121873956336e-01 +4.466565787466530990e-01,1.132959918880157429e-01 +4.388890244156190557e-01,1.109145140022330944e-01 +3.402606854628972277e-01,6.008825480373185257e-02 +3.324741299849711673e-01,6.479132006619141293e-02 +3.407335057212432239e-01,7.020304137207145079e-02 +3.404448874088065735e-01,8.065817283675613680e-02 +3.676636876901348550e-01,1.051899437861117947e-01 +3.732454883036281368e-01,9.681872368642042981e-02 +5.207563355992055332e-01,1.268367216432688682e-01 +5.155141973633916574e-01,1.170073023857476358e-01 +5.099012659617836452e-01,1.252308419413960539e-01 +5.518390493687259646e-01,1.259207579133283794e-01 +5.547223111790036132e-01,1.376468456579574562e-01 +5.500551575494450063e-01,1.472895455221385763e-01 +5.602695895597122888e-01,1.493594763316115348e-01 +4.128232913475630705e-01,1.311976291938020123e-01 +4.066837810014030108e-01,1.395959473620283220e-01 +4.159127443363560550e-01,1.414927095939636503e-01 +5.209320393530578741e-01,1.067486506021191189e-01 +5.100769697156360971e-01,1.051427709002463462e-01 +5.126011371501670855e-01,6.379456421223519968e-02 +5.170099855257890287e-01,7.271971459713447161e-02 +5.224975942377103610e-01,6.314572414695684976e-02 +5.113041700717739779e-01,8.412633688951537403e-02 +5.212006271593173645e-01,8.347749682423692696e-02 +4.878871895836520700e-01,1.358250812272216168e-01 +4.825690919139539181e-01,1.258088160364852215e-01 +3.194030175352522427e-01,1.347375815847989822e-01 +3.198994627647471778e-01,1.266404010236014677e-01 +3.136300152249900663e-01,1.299370672003025418e-01 +3.273235731101956647e-01,1.235922981611922711e-01 +3.215505707999335439e-01,1.187917837766958445e-01 +3.048533148690825145e-01,1.417385426645268176e-01 +3.053250687072091019e-01,1.521893598601037900e-01 +3.136053238336217741e-01,1.484850649570769732e-01 +2.967520842397965986e-01,1.561882173637309801e-01 +3.055040932043358581e-01,1.629347396562811079e-01 +5.236938928511630786e-01,5.145316096730955663e-02 +5.281027412267850218e-01,6.037831135220877304e-02 +5.266373809230895375e-01,1.301180253651048335e-01 +5.357066870070510411e-01,1.385998917455368573e-01 +5.354385730847750491e-01,1.270950484680524462e-01 +4.548743749104483536e-01,1.165573772312248901e-01 +4.852829310102229066e-01,5.770331502595123230e-02 +5.308029652138974708e-01,1.505338812477771404e-01 +5.396041573755829823e-01,1.475109043507246698e-01 +4.612453023912965189e-01,8.972063159775731100e-02 +4.562897715385287878e-01,1.012537349095713329e-01 +4.559280764168670563e-01,7.908412855107778416e-02 +5.095600043064250073e-01,1.376525699520042278e-01 +5.043178660706113536e-01,1.278231506944829676e-01 +5.511834525295693510e-01,1.144423844652941030e-01 +5.563365915681857121e-01,1.043072161320893199e-01 +4.879170656615265944e-01,4.918316284235351582e-02 +5.469183181426822138e-01,5.331571314900209607e-02 +5.476635854940137271e-01,6.308818821900639973e-02 +5.418358645745247060e-01,6.910490821796666516e-02 +5.484226609785999296e-01,7.420310806827254413e-02 +5.127200015663020416e-01,5.109387901153830680e-02 +5.072323928543807092e-01,6.066786946171592865e-02 +4.767803031635005073e-01,1.349064775578571462e-01 +4.715931119984301256e-01,1.441659929937085527e-01 +4.772458725842012583e-01,1.478084042701063860e-01 +5.210244495214815252e-01,1.383415649207533071e-01 +3.712323198343578379e-01,3.843576679128286183e-02 +6.131348565787225757e-01,7.249759185852616694e-02 +6.235602417083108140e-01,7.340638068927715643e-02 +6.200528885956246850e-01,6.433495812119439938e-02 +5.339916158516353484e-01,6.503043145027830041e-02 +5.351879144650879550e-01,5.333786827063100727e-02 +5.408634740748230474e-01,4.406268588943343389e-02 +5.349745994499726098e-01,3.941056579136391347e-02 +4.986589599166425524e-01,1.366730761626396562e-01 +4.931369882695322837e-01,1.456718541295963232e-01 +4.984546327681423916e-01,1.492436566720477809e-01 +6.052880070750061847e-01,7.013100341680791883e-02 +6.087953601876923138e-01,7.920242598489064811e-02 +5.250861446311104741e-01,9.500529891921510872e-02 +5.307919600851254138e-01,8.359867662683419243e-02 +5.305233722788660344e-01,1.068698304047163983e-01 +5.347829762456183245e-01,1.156166750200181698e-01 +6.257987433862872706e-01,5.788266991074578205e-02 +6.153733582566991434e-01,5.697388107999471624e-02 +6.205035833149175062e-01,1.070867866645021926e-01 +6.304494278699193099e-01,1.116879393345212301e-01 +6.325910948634334563e-01,1.027701545000122424e-01 +6.388402481310160308e-01,9.646628496167299061e-02 +6.288944035760143381e-01,9.186513229165395311e-02 +6.464639031645461609e-01,9.761677924572602361e-02 +6.427672118771270426e-01,8.671175703736772045e-02 +5.001298721808588033e-01,5.129225376636742384e-02 +5.031117208008017982e-01,3.829285963780275359e-02 +4.958903357111449361e-01,4.161792914315119024e-02 +6.422395284000141924e-01,5.110519013090764756e-02 +6.333343351047088232e-01,5.627678351723391231e-02 +6.393834670205182924e-01,6.007215356561920044e-02 +6.393230373663244537e-01,6.919800088591694653e-02 +6.482282306616299339e-01,6.402640749959065403e-02 +6.286548047657832816e-01,4.891570647603422917e-02 +2.773031701386911019e-01,1.223355300349917296e-01 +2.658241583144043685e-01,1.166950843869963284e-01 +2.673195994794643759e-01,1.265136176635982268e-01 +2.594588580824374047e-01,1.141760659729567917e-01 +2.694424287416641861e-01,1.099979783443502668e-01 +2.729401848404960362e-01,1.352974980626677204e-01 +3.449338579010858830e-01,1.401722081059358360e-01 +3.542612438295467125e-01,1.403750248839901182e-01 +3.507262283239011569e-01,1.318571875418294015e-01 +3.557256082585285029e-01,1.219497720485237663e-01 +3.657053430444586750e-01,1.238391475938726283e-01 +3.613773370506252469e-01,1.137289153225126415e-01 +3.576839529042046828e-01,1.033005682407628911e-01 +3.463982223300676733e-01,1.217469552704694424e-01 +3.141541598613201702e-01,9.256608806203871220e-02 +3.206263583413312968e-01,9.884368644878892274e-02 +3.251228645136367001e-01,8.939435871565570846e-02 +3.193161674171984266e-01,1.088795483547292525e-01 +3.302848720695149010e-01,1.057078190083463043e-01 +3.257988081384713963e-01,7.901143348171824066e-02 +3.322710066184824673e-01,8.528903186846847895e-02 +3.397689437839718773e-01,9.104109807069357685e-02 +3.104311280126209049e-01,8.163083615330238296e-02 +6.545386030092187335e-01,6.790090298370346500e-02 +6.561229581438220437e-01,7.517566567618340356e-02 +6.624937601456046821e-01,6.992431383999843375e-02 +6.492793339590465784e-01,8.050725307065458025e-02 +6.572344910954325270e-01,8.253066392694954900e-02 +6.586918865784990862e-01,3.300157500716023595e-02 +6.654106523977629806e-01,2.515734043575466178e-02 +6.563592046337320962e-01,2.579701320585167310e-02 +6.527212041548112742e-01,1.638773475738905874e-02 +6.460024383355473798e-01,2.423196932879463639e-02 +6.641844552717939276e-01,8.554867852847852783e-02 +6.573408310870184623e-01,9.088026592294971839e-02 +3.487637231612548128e-01,1.729240965599899982e-01 +3.581994100472232767e-01,1.731621430246468307e-01 +3.531192057689721553e-01,1.652466787320351627e-01 +3.973385147451272692e-01,2.667358886018044162e-01 +4.002395562568061282e-01,2.767787759608130727e-01 +3.316633747460509540e-01,1.722307288803872627e-01 +3.221152328432732581e-01,1.703632521879176465e-01 +3.255708322222121698e-01,1.769541310641743193e-01 +6.569930428335439831e-01,4.052399403694144364e-02 +6.660444905975748675e-01,3.988432126684438028e-02 +6.738529782943361024e-01,3.594210569814521028e-02 +3.679906557041806026e-01,1.327689761367202848e-01 +3.659126063535560469e-01,1.415699177143659726e-01 +3.738496478053747185e-01,1.422788895312025736e-01 +3.421238675201738744e-01,2.083546338380428686e-01 +3.504235383249930669e-01,2.102653927459028627e-01 +3.974611429633098103e-01,2.855411093436039383e-01 +3.877941299656539886e-01,2.815056450753064543e-01 +3.257005585772992928e-01,1.958891895415507955e-01 +3.350211065136121658e-01,1.996934960012635984e-01 +3.344439186394650432e-01,1.929186574112341512e-01 +3.333805074580081240e-01,2.113251659683595129e-01 +5.937575320327286299e-01,7.943523374422870043e-02 +5.954039943999493989e-01,8.968431813815777587e-02 +6.025949730511968028e-01,8.708492193710153095e-02 +5.869083191395083610e-01,9.287013027248260111e-02 +5.957457601579765338e-01,1.005198184653554316e-01 +6.534138673409075615e-01,1.006347938472549747e-01 +2.657136010633402434e-01,9.029834814504481000e-02 +2.751921443884652874e-01,8.600719197198268551e-02 +6.715517006505560271e-01,6.956099278578681266e-02 +6.544924098959491454e-01,1.102032165971122274e-01 +3.825196619842209378e-01,1.401000287042486747e-01 +6.489645495651460427e-01,4.427090397827512097e-02 +6.429154176493365735e-01,4.047553392988983284e-02 +6.403723675321317810e-01,3.296910600739570013e-02 +6.336473463670001527e-01,3.980339216002822672e-02 +6.468012290796263386e-01,1.166687307864071876e-01 +5.899832942220735177e-01,7.128670830125427571e-02 +3.227695215815847840e-01,1.540991425833749817e-01 +3.211424265194302019e-01,1.622878660783922122e-01 +3.298348704292666245e-01,1.574511265091133039e-01 +3.150498839955914177e-01,1.670112682621793243e-01 +2.928204575273675725e-01,2.830812117716988152e-01 +2.817246379692359692e-01,2.840839924639745329e-01 +2.835705730067060171e-01,2.737949043619448131e-01 +5.971742728733209216e-01,6.868731210019800304e-02 +5.790545655198957586e-01,9.006999814236388291e-02 +2.725582631468285166e-01,6.008100417273910809e-02 +2.756619716022884470e-01,5.318800354605946606e-02 +2.805179521795427289e-01,6.675240905650396683e-02 +3.779870100099528285e-01,8.830300905923717247e-02 +3.687118252500389826e-01,8.624588207717874544e-02 +3.444814507822478444e-01,1.798305843046228147e-01 +3.394417203503838909e-01,1.877722858137954587e-01 +6.563171535842218240e-01,5.115365023795925836e-02 +6.545990326634126832e-01,5.877505566340573973e-02 +3.394012465039967785e-01,1.719151200120111467e-01 +3.359456471250578669e-01,1.653242411357543906e-01 +5.038970252074429501e-01,9.414110869930993053e-02 +3.491834023412591637e-01,5.719474822636743533e-02 +3.571474184746367131e-01,5.405146950332769679e-02 +3.301211724140709625e-01,1.839679793540826835e-01 +3.086786086357812264e-01,2.567492049429438428e-01 +3.148482317967448152e-01,2.490924853328974065e-01 +3.029364075987144300e-01,2.496319325527567301e-01 +2.929748399767644895e-01,2.441759659454616205e-01 +2.991444631377280783e-01,2.365192463354152397e-01 +2.898818225298195328e-01,2.541613989139456797e-01 +3.460761961448675650e-01,1.568493388577374137e-01 +3.555118830308360844e-01,1.570873853223942462e-01 +3.601202359307408285e-01,1.498849382784724071e-01 +3.375727421872124490e-01,1.571355176407372156e-01 +6.328109152844048069e-01,7.540250485263008673e-02 +6.258928832675026976e-01,8.356513858996179878e-02 +6.612701757062062757e-01,1.054621555637826578e-02 +6.706748336205201610e-01,1.089992095048217952e-02 +6.744985575846680348e-01,2.833584364917251727e-02 +6.721658756399009338e-01,2.113128184786400646e-02 +2.878445011983660762e-01,1.267188127142869492e-01 +2.876858355232104758e-01,1.387984504395736174e-01 +2.967317254178254982e-01,1.333631998422669940e-01 +2.796983764199503786e-01,1.432604711191869107e-01 +2.885856006394098006e-01,1.499048582471669555e-01 +3.814723185187940402e-01,1.279950803218869448e-01 +3.736423844962772911e-01,1.245481194107092293e-01 +3.089463082801089389e-01,7.283415970270060158e-02 +3.062854637174646233e-01,6.304093961172996252e-02 +2.995507454289720317e-01,7.035169188672867058e-02 +3.171658463011135520e-01,7.432008387830371654e-02 +2.885850947042065684e-01,6.812105919913834240e-02 +2.934676576401344938e-01,2.669166529362532181e-01 +2.868696998043223090e-01,2.641669035884946504e-01 +2.992593280691470126e-01,2.748465070146453582e-01 +3.025584548667633045e-01,2.652185062411952510e-01 +2.729558646042380965e-01,1.044238670499182953e-01 +2.665905643722710772e-01,1.019048486358787031e-01 +2.829716912327259748e-01,1.047492418719688512e-01 +2.801198268633329214e-01,9.665611216349730139e-02 +3.414963326291713952e-01,1.037557484397848839e-01 +3.496702134194954459e-01,9.912488940807250015e-02 +3.401861417050384695e-01,1.137916103457252137e-01 +6.896723776428305142e-01,4.589903810503122294e-02 +6.892037095302114835e-01,5.709933804496525322e-02 +6.997353502029223238e-01,6.303704899005965756e-02 +6.895569266936147912e-01,6.786061998418969898e-02 +6.728813263740389683e-01,8.045414443747343769e-02 +6.416556789255164484e-01,7.935675878660154725e-02 +2.863490600333061242e-01,1.169002794376850923e-01 +3.867045800333163141e-01,2.398647232241897798e-01 +3.788961312614608223e-01,2.481859035101016686e-01 +3.904939544345346070e-01,2.489638710742926864e-01 +3.677456061529225662e-01,2.479077687542732278e-01 +3.715349805541408590e-01,2.570069166043760789e-01 +3.986474521129736992e-01,7.704074118587808662e-02 +3.205730305112932665e-01,1.821005026616130673e-01 +3.147781732798405896e-01,1.906954256471660447e-01 +3.832347808041557391e-01,2.300166720720743518e-01 +3.790269996427931831e-01,2.210308752894404594e-01 +3.708989756988800290e-01,2.301009588773649528e-01 +6.365621988448022517e-01,1.187143431685911132e-01 +3.118920570717499396e-01,1.119276512171384630e-01 +3.055084257737330500e-01,1.215617243780426765e-01 +3.050119805442381149e-01,1.296589049392401771e-01 +3.032740223909979327e-01,1.116494889560760845e-01 +3.222977677434581967e-01,1.436483253877980648e-01 +3.626504229327965900e-01,2.387824600204995762e-01 +3.584426417714340896e-01,2.297966632378656837e-01 +3.535872315010437084e-01,2.205507329499349078e-01 +3.751094483932804202e-01,2.113392351874679165e-01 +6.007584790315519951e-01,1.101766824022470809e-01 +6.078187194830448892e-01,1.195119649862373540e-01 +6.113016758699103548e-01,1.066692889150208656e-01 +3.399654194490763781e-01,1.489762242310962992e-01 +3.364304039434307669e-01,1.404583868889356102e-01 +7.085889561458422747e-01,3.790586693741948565e-02 +6.994648952005710907e-01,4.233699184374191404e-02 +7.085061939847902002e-01,4.784464214451286668e-02 +7.178845101086834823e-01,5.333205247428087631e-02 +7.087604491634121873e-01,5.776317738060324919e-02 +6.015137692643510725e-01,6.198247797383346636e-02 +5.976119383453122325e-01,5.159156521115049882e-02 +6.057256725469977177e-01,5.303525652776036603e-02 +3.041378216270502755e-01,5.014806618212892114e-02 +2.939575213786089214e-01,5.249925224169828264e-02 +2.935130222924010046e-01,1.091325245512641401e-01 +3.635275013614669426e-01,2.108298218906989874e-01 +3.243139884059593747e-01,7.021475703111648703e-02 +3.290339595608865464e-01,2.176031627463110851e-01 +3.241050548436751333e-01,2.265462138139010539e-01 +3.064542613744021815e-01,2.131494721675483428e-01 +3.110088132568662456e-01,2.037482610151470364e-01 +3.153553611539878232e-01,1.974702642371955197e-01 +3.219311985543248378e-01,2.089420249095317872e-01 +3.285672152832153081e-01,1.403516592110970185e-01 +3.335356537352248130e-01,1.315476430859364998e-01 +3.351867617704111790e-01,1.236990258390308767e-01 +2.600520001174225215e-01,9.869405608235833072e-02 +2.565385642548486111e-01,1.042681673767903300e-01 +6.054997862740334469e-01,1.311657190974329645e-01 +6.160429831123919175e-01,1.276583256102067632e-01 +3.018442268512412929e-01,2.192604456184312767e-01 +2.987737385633298381e-01,2.292526241586846647e-01 +3.194950203205143002e-01,2.326571872647839601e-01 +3.129746161340424271e-01,2.213309951383662377e-01 +6.244746872962861906e-01,1.230309753330810635e-01 +6.803549117443868921e-01,7.281606069078187804e-02 +3.769179720690138957e-01,2.659529371321380786e-01 +3.933949959468916457e-01,2.590067584356489094e-01 +5.904330724024140498e-01,1.289985792717332769e-01 +5.873049954912907822e-01,1.211189537243588799e-01 +5.922628037711110682e-01,1.133624945365719061e-01 +3.198657448949125404e-01,2.399238094415145350e-01 +3.087353061852797786e-01,2.347085907659797743e-01 +3.791053228856207102e-01,4.521586438874269920e-02 +3.747418611998000193e-01,5.307563430448506564e-02 +5.968508024789974664e-01,1.368011138066794752e-01 +5.900083522367249866e-01,1.427803346049492106e-01 +4.816099797330598564e-01,9.129099812585010632e-02 +4.908989142814694784e-01,3.618376871378883863e-02 +4.876828624351519093e-01,1.483956617366297415e-01 +5.144749655990915604e-01,1.472396075371640300e-01 +5.088915657079191579e-01,1.498319162902509716e-01 +5.203560109229756758e-01,1.505209112590000786e-01 +5.189311035050998555e-01,4.161554047224808733e-02 +5.245362504941744053e-01,3.884812767750006612e-02 +5.135623592093133682e-01,3.848884572172881630e-02 +5.467050031275668687e-01,3.938841066973505084e-02 +5.347506913362215508e-01,7.614535129954445869e-02 +4.647449350048689087e-01,1.462262973704999691e-01 +4.527918628872054652e-01,1.089887192501170915e-01 +3.813667316750984915e-01,3.828998043132605250e-02 +5.742091753442739588e-01,4.524305044738032716e-02 +7.186016238645136500e-01,3.490645103856394871e-02 +7.261656205774570383e-01,4.698068908512304659e-02 +3.808614908672494637e-01,2.736820672982935854e-01 +3.866290244609147386e-01,2.650141815263600265e-01 +5.438522823295799391e-01,1.240985414004502074e-01 +2.858903788539450264e-01,5.113060209906399034e-02 +2.888227583416638211e-01,5.918982165312367677e-02 +3.667095022554022754e-01,5.228753470611598175e-02 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad4/connectivity.csv b/src/pyvale/data/render/riley/rabbits/riley_quad4/connectivity.csv new file mode 100644 index 000000000..b21b04665 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad4/connectivity.csv @@ -0,0 +1,196 @@ +139,105,36,35 +194,232,233,224 +178,219,229,234 +92,135,188,101 +160,93,208,179 +108,137,178,154 +100,68,113,121 +102,108,4,3 +237,210,236,225 +163,106,38,37 +107,74,73,124 +105,44,43,163 +177,91,109,134 +94,174,215,141 +192,175,204,213 +192,162,103,175 +171,133,173,214 +170,226,237,205 +91,177,218,143 +134,109,152,167 +100,122,107,70 +34,33,32,117 +226,170,201,207 +135,92,140,180 +224,233,199,227 +168,95,156,217 +181,129,110,146 +119,117,32,31 +151,47,136,186 +47,151,49,48 +101,81,80,92 +91,27,26,109 +201,181,130,197 +154,178,234,220 +93,143,218,208 +182,128,200,202 +197,228,207,201 +183,196,214,173 +144,83,110,129 +88,22,21,150 +210,145,111,182 +169,206,147,115 +213,204,134,167 +206,169,228,230 +70,69,68,100 +188,135,229,219 +140,97,142,189 +142,67,66,95 +208,218,186,136 +172,211,85,149 +117,119,160,99 +133,88,150,173 +203,230,228,197 +41,40,39,120 +177,174,186,218 +131,172,149,98 +49,151,94,50 +8,7,6,126 +121,113,142,97 +196,183,144,205 +164,184,114,148 +84,146,17,16 +83,19,18,110 +97,78,77,121 +224,227,164,211 +182,111,82,128 +126,104,9,8 +66,65,89,161 +46,96,136,47 +107,122,75,74 +184,164,227,203 +229,235,223,234 +140,92,80,79 +185,116,145,210 +153,82,58,57 +157,118,56,55 +141,51,50,94 +173,150,112,183 +29,93,160,119 +220,212,131,191 +181,201,170,129 +232,217,156,221 +154,5,4,108 +123,98,11,10 +158,0,81,101 +115,63,62,87 +212,223,232,194 +122,159,76,75 +117,99,35,34 +212,194,172,131 +115,87,132,169 +140,79,78,97 +121,77,76,159 +227,231,230,203 +98,149,12,11 +211,164,148,85 +85,148,14,13 +228,169,132,207 +66,161,156,95 +149,85,13,12 +139,45,44,105 +152,109,26,25 +43,42,106,163 +174,94,151,186 +230,231,166,206 +84,114,184,130 +203,197,130,184 +148,114,15,14 +89,147,206,166 +65,64,147,89 +198,200,128,176 +147,64,63,115 +118,153,57,56 +153,176,128,82 +83,144,183,112 +226,207,132,185 +111,59,58,82 +116,87,62,61 +87,116,185,132 +146,110,18,17 +129,170,205,144 +237,226,185,210 +145,60,59,111 +112,20,19,83 +114,84,16,15 +145,116,61,60 +86,157,55,54 +210,182,202,236 +150,21,20,112 +138,191,123,104 +0,158,102,1 +215,175,103,141 +195,180,140,189 +54,53,162,86 +152,25,24,90 +146,84,130,181 +104,123,10,9 +213,167,187,209 +155,216,209,187 +236,214,196,225 +106,120,39,38 +208,136,96,179 +211,172,194,224 +191,131,98,123 +158,137,108,102 +227,199,166,231 +177,134,204,222 +205,237,225,196 +127,23,22,88 +1,102,3,2 +167,152,90,187 +155,127,88,133 +90,24,23,127 +141,103,52,51 +189,168,217,195 +45,139,96,46 +139,190,179,96 +216,155,133,171 +187,90,127,155 +31,30,29,119 +188,219,178,137 +191,138,154,220 +95,168,189,142 +124,71,70,107 +229,195,217,235 +53,52,103,162 +29,28,143,93 +166,193,161,89 +143,28,27,91 +162,192,157,86 +118,157,192,165 +42,41,120,106 +135,180,195,229 +121,159,122,100 +5,154,138,125 +105,163,37,36 +6,5,125,126 +137,158,101,188 +232,221,199,233 +223,212,220,234 +221,193,166,199 +142,113,68,67 +221,156,161,193 +73,72,71,124 +175,215,222,204 +217,232,223,235 +99,160,179,190 +138,104,126,125 +99,190,139,35 +153,118,165,176 +192,198,176,165 +236,202,171,214 +215,174,177,222 +209,198,192,213 +200,198,209,216 +202,200,216,171 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad4/coords.csv b/src/pyvale/data/render/riley/rabbits/riley_quad4/coords.csv new file mode 100644 index 000000000..688976eba --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad4/coords.csv @@ -0,0 +1,238 @@ +9.666871145982780522e-01,-1.724081868521550875e-01,0.000000000000000000e+00 +9.841929009245519167e-01,-2.017929291030048922e-01,0.000000000000000000e+00 +9.976439270529439129e-01,-2.332386390984700075e-01,0.000000000000000000e+00 +9.924119317133468510e-01,-2.655311829860224626e-01,0.000000000000000000e+00 +9.755018849787532309e-01,-2.945945167536855314e-01,0.000000000000000000e+00 +9.451398010667991789e-01,-3.098290933922658308e-01,0.000000000000000000e+00 +9.650757929404047974e-01,-3.311369431615200365e-01,0.000000000000000000e+00 +9.720362803971046572e-01,-3.588030751793025996e-01,0.000000000000000000e+00 +9.418457030768171423e-01,-3.731308529454813172e-01,0.000000000000000000e+00 +9.078825260786310691e-01,-3.766487297660107147e-01,0.000000000000000000e+00 +8.756485663530294561e-01,-3.880408943419599854e-01,0.000000000000000000e+00 +8.421470509781859848e-01,-3.950266037283122200e-01,0.000000000000000000e+00 +8.082908576719989302e-01,-4.000546493617718746e-01,0.000000000000000000e+00 +7.742963104336768598e-01,-4.040587046835342200e-01,0.000000000000000000e+00 +7.402339592123093892e-01,-4.074385666868749478e-01,0.000000000000000000e+00 +7.061149569609301846e-01,-4.101879452887756683e-01,0.000000000000000000e+00 +6.719439668430100543e-01,-4.121810490722303544e-01,0.000000000000000000e+00 +6.377307008877605154e-01,-4.132166219258782136e-01,0.000000000000000000e+00 +6.035016674329242159e-01,-4.133194976002663168e-01,0.000000000000000000e+00 +5.692800895571833442e-01,-4.125937005906505362e-01,0.000000000000000000e+00 +5.350908013195839752e-01,-4.109506357290486078e-01,0.000000000000000000e+00 +5.009969751064089483e-01,-4.079414253273769830e-01,0.000000000000000000e+00 +4.671590077713342337e-01,-4.028254701242599545e-01,0.000000000000000000e+00 +4.338383580034822495e-01,-3.950294971237843233e-01,0.000000000000000000e+00 +4.008770188255625366e-01,-3.858009600049835952e-01,0.000000000000000000e+00 +3.670027693026113313e-01,-3.821404024868028659e-01,0.000000000000000000e+00 +3.329071354166024399e-01,-3.850278610388791489e-01,0.000000000000000000e+00 +2.988804420953067864e-01,-3.819647576888076101e-01,0.000000000000000000e+00 +2.657273795052250698e-01,-3.735074230746696089e-01,0.000000000000000000e+00 +2.440624467365182237e-01,-3.931566912763511668e-01,0.000000000000000000e+00 +2.314440537382412011e-01,-4.248030774742593274e-01,0.000000000000000000e+00 +2.067909793111900874e-01,-4.483152971263507092e-01,0.000000000000000000e+00 +1.760580777264036667e-01,-4.630374905003358244e-01,0.000000000000000000e+00 +1.494316802940139910e-01,-4.458895702451547427e-01,0.000000000000000000e+00 +1.415977500480029294e-01,-4.128704143333539744e-01,0.000000000000000000e+00 +1.470382445175587305e-01,-3.797826885046473588e-01,0.000000000000000000e+00 +1.168685665300252252e-01,-3.954077737578413076e-01,0.000000000000000000e+00 +8.504746190830582420e-02,-4.080216194876947755e-01,0.000000000000000000e+00 +5.282142416568979398e-02,-4.195192902151561598e-01,0.000000000000000000e+00 +1.913535670665873767e-02,-4.252843015787345915e-01,0.000000000000000000e+00 +2.506042959709459274e-05,-4.044226402425718514e-01,0.000000000000000000e+00 +1.179626576917209776e-02,-3.726786997953585034e-01,0.000000000000000000e+00 +3.413049144916877053e-02,-3.474526011830018635e-01,0.000000000000000000e+00 +6.498120496451798012e-02,-3.326274733359121938e-01,0.000000000000000000e+00 +9.645576784082121602e-02,-3.191861591307825763e-01,0.000000000000000000e+00 +1.285127136982477936e-01,-3.071853021572662490e-01,0.000000000000000000e+00 +1.599900736759930497e-01,-2.937760065296424750e-01,0.000000000000000000e+00 +1.877122627188177739e-01,-2.768672019521384864e-01,0.000000000000000000e+00 +1.747709810914362394e-01,-2.506414530437688915e-01,0.000000000000000000e+00 +1.995174612912174739e-01,-2.277132555020902616e-01,0.000000000000000000e+00 +2.319459973806286546e-01,-2.168822162795010777e-01,0.000000000000000000e+00 +2.649948570954468452e-01,-2.079831179720713075e-01,0.000000000000000000e+00 +2.915479825880856191e-01,-1.883668647311448896e-01,0.000000000000000000e+00 +3.164562529713312866e-01,-1.654547057564766388e-01,0.000000000000000000e+00 +3.484315182648293763e-01,-1.534648252196653406e-01,0.000000000000000000e+00 +3.822908421721623595e-01,-1.489262502468556015e-01,0.000000000000000000e+00 +4.165114280247016465e-01,-1.488381954346469638e-01,0.000000000000000000e+00 +4.506414439572319353e-01,-1.513350941564599317e-01,0.000000000000000000e+00 +4.845191923719441296e-01,-1.562056583788258290e-01,0.000000000000000000e+00 +5.182591678416457182e-01,-1.619770975469639607e-01,0.000000000000000000e+00 +5.521332745184985846e-01,-1.668726418074336915e-01,0.000000000000000000e+00 +5.862616801231644859e-01,-1.694333480776104572e-01,0.000000000000000000e+00 +6.204456023473934323e-01,-1.712047341676575241e-01,0.000000000000000000e+00 +6.546085805170877014e-01,-1.733467309423580294e-01,0.000000000000000000e+00 +6.888083428785003459e-01,-1.747242600439668780e-01,0.000000000000000000e+00 +7.230348454918557044e-01,-1.751962580892794663e-01,0.000000000000000000e+00 +7.572135698080090238e-01,-1.752372802916613292e-01,0.000000000000000000e+00 +7.769898754576310962e-01,-1.495257822250636026e-01,0.000000000000000000e+00 +7.694865122515972544e-01,-1.244323629539337978e-01,0.000000000000000000e+00 +7.407542367833780395e-01,-1.068169283151505222e-01,0.000000000000000000e+00 +7.202025488022103517e-01,-7.952459114251983485e-02,0.000000000000000000e+00 +7.037216585636167920e-01,-4.957421463282798979e-02,0.000000000000000000e+00 +6.947149790961135718e-01,-1.693398101928518529e-02,0.000000000000000000e+00 +7.204140608845941429e-01,-5.914050911204128983e-04,0.000000000000000000e+00 +7.526874550247746321e-01,-1.163924454379312162e-02,0.000000000000000000e+00 +7.807260994369457086e-01,-3.109503364530756542e-02,0.000000000000000000e+00 +8.055738124800466693e-01,-5.463466159575187941e-02,0.000000000000000000e+00 +8.300121233170604240e-01,-7.857404521334285241e-02,0.000000000000000000e+00 +8.513308397448553499e-01,-1.053287838379653313e-01,0.000000000000000000e+00 +8.779901204252534841e-01,-1.264625225106025819e-01,0.000000000000000000e+00 +9.107886310419364140e-01,-1.360718997625822435e-01,0.000000000000000000e+00 +9.426037201770547380e-01,-1.484973130652706697e-01,0.000000000000000000e+00 +4.758643357732930679e-01,-1.903475291881132347e-01,0.000000000000000000e+00 +5.671825408068029706e-01,-3.773720392608747032e-01,0.000000000000000000e+00 +6.711220943331064337e-01,-3.770776914040966932e-01,0.000000000000000000e+00 +7.760017924503996856e-01,-3.695748019965913733e-01,0.000000000000000000e+00 +3.551473973405900875e-01,-1.777882657966591839e-01,0.000000000000000000e+00 +6.191170363064392168e-01,-2.058279870653624277e-01,0.000000000000000000e+00 +4.652633068382137083e-01,-3.667638034219364296e-01,0.000000000000000000e+00 +7.223719349424269076e-01,-2.088189996824475203e-01,0.000000000000000000e+00 +3.979140800997539862e-01,-3.543826845953919058e-01,0.000000000000000000e+00 +2.934207107828524785e-01,-3.482112213507245757e-01,0.000000000000000000e+00 +8.962669385620580798e-01,-1.707114563835755161e-01,0.000000000000000000e+00 +2.295694161634496411e-01,-3.630456531788731067e-01,0.000000000000000000e+00 +2.477565263145260210e-01,-2.467494892625835545e-01,0.000000000000000000e+00 +7.923665816218425917e-01,-1.879657015187162217e-01,0.000000000000000000e+00 +1.757970241079424567e-01,-3.213180202551493281e-01,0.000000000000000000e+00 +8.321207777748037548e-01,-1.296446394989003437e-01,0.000000000000000000e+00 +8.437198540015915516e-01,-3.613715178891810931e-01,0.000000000000000000e+00 +1.728416227574763597e-01,-3.803124940409357557e-01,0.000000000000000000e+00 +7.633529241653845832e-01,-8.887960689174687068e-02,0.000000000000000000e+00 +9.229620311976243219e-01,-1.860876070519127123e-01,0.000000000000000000e+00 +9.674789127723860682e-01,-2.346273340069784108e-01,0.000000000000000000e+00 +3.085674321158130562e-01,-2.154332028990514070e-01,0.000000000000000000e+00 +9.068062851853768702e-01,-3.506096437984659864e-01,0.000000000000000000e+00 +1.082030331844272414e-01,-3.571629539403273212e-01,0.000000000000000000e+00 +4.676896681170571168e-02,-3.830809147379827806e-01,0.000000000000000000e+00 +7.394435318744077001e-01,-4.435697035273625244e-02,0.000000000000000000e+00 +9.466744048896639230e-01,-2.625010391609032823e-01,0.000000000000000000e+00 +3.288833767430258681e-01,-3.487658860848344977e-01,0.000000000000000000e+00 +6.015114092848007354e-01,-3.782129438858518600e-01,0.000000000000000000e+00 +5.093240929167620612e-01,-1.964601968007389787e-01,0.000000000000000000e+00 +5.330980607454434139e-01,-3.752890035873041596e-01,0.000000000000000000e+00 +7.930296589072485247e-01,-1.256502197692239142e-01,0.000000000000000000e+00 +7.060759434115161381e-01,-3.751166895984072713e-01,0.000000000000000000e+00 +6.540258508002417814e-01,-2.072068840346183716e-01,0.000000000000000000e+00 +5.831597800220046368e-01,-2.046077839877559756e-01,0.000000000000000000e+00 +1.746585226150666470e-01,-4.146254109055365622e-01,0.000000000000000000e+00 +4.115203829661017720e-01,-1.826282952764902434e-01,0.000000000000000000e+00 +2.052089925271153859e-01,-4.076179930217074809e-01,0.000000000000000000e+00 +2.694741887111180151e-02,-3.925873812886974124e-01,0.000000000000000000e+00 +8.008239595862698401e-01,-9.889145687008416008e-02,0.000000000000000000e+00 +7.581340955011369731e-01,-5.669618617381082942e-02,0.000000000000000000e+00 +8.760154569655050905e-01,-3.560240314584461330e-01,0.000000000000000000e+00 +7.216343867576107129e-01,-3.302954689163566104e-02,0.000000000000000000e+00 +9.295387254263338672e-01,-3.247837469439823765e-01,0.000000000000000000e+00 +9.350323375556346406e-01,-3.439041159511139756e-01,0.000000000000000000e+00 +4.317565277429379900e-01,-3.604071344765167328e-01,0.000000000000000000e+00 +4.641128006102408499e-01,-2.236968405307501739e-01,0.000000000000000000e+00 +5.983838976391873121e-01,-3.437804590397174342e-01,0.000000000000000000e+00 +6.681266112539991919e-01,-3.424213266016949420e-01,0.000000000000000000e+00 +8.436560470091886144e-01,-3.290149535419582549e-01,0.000000000000000000e+00 +6.198873994817153399e-01,-2.405542920193709244e-01,0.000000000000000000e+00 +4.656980743580376170e-01,-3.317721297520744850e-01,0.000000000000000000e+00 +3.279003375265204800e-01,-3.137782109038944056e-01,0.000000000000000000e+00 +8.827712234824605098e-01,-1.998372212589161478e-01,0.000000000000000000e+00 +2.039343723539704945e-01,-3.057124403350255926e-01,0.000000000000000000e+00 +9.254499782470604341e-01,-2.356680606675141398e-01,0.000000000000000000e+00 +9.077342887658437220e-01,-3.233813565463941053e-01,0.000000000000000000e+00 +1.467040807912486644e-01,-3.453392628622513616e-01,0.000000000000000000e+00 +8.607714241952607592e-01,-1.599006535446632349e-01,0.000000000000000000e+00 +2.781004831365359586e-01,-2.324976146933141752e-01,0.000000000000000000e+00 +8.117275253502140853e-01,-1.574481651753938671e-01,0.000000000000000000e+00 +2.601447198689392781e-01,-3.525378442468009021e-01,0.000000000000000000e+00 +5.645516606181359975e-01,-3.430862481734711644e-01,0.000000000000000000e+00 +5.457692968961150859e-01,-2.019967820454419971e-01,0.000000000000000000e+00 +6.359521455294343539e-01,-3.780443307041958523e-01,0.000000000000000000e+00 +6.888234646787974036e-01,-2.084978924130858058e-01,0.000000000000000000e+00 +7.410215789622998095e-01,-3.725194685262837591e-01,0.000000000000000000e+00 +8.099420680125494210e-01,-3.659471274110429051e-01,0.000000000000000000e+00 +4.993771430599935335e-01,-3.717626345754508344e-01,0.000000000000000000e+00 +2.176387779039584136e-01,-2.611369641272491826e-01,0.000000000000000000e+00 +3.640036540461653036e-01,-3.505996112097617412e-01,0.000000000000000000e+00 +4.442018667056373826e-01,-1.852510149041703691e-01,0.000000000000000000e+00 +9.155813556222368588e-01,-2.887418191565107595e-01,0.000000000000000000e+00 +4.324569577738464066e-01,-3.256323961532492373e-01,0.000000000000000000e+00 +7.825926496328491355e-01,-2.167287109241144427e-01,0.000000000000000000e+00 +3.790345614922238093e-01,-1.813112421452115486e-01,0.000000000000000000e+00 +9.456773315296251869e-01,-2.073331584709635356e-01,0.000000000000000000e+00 +7.892423615858557007e-01,-6.882210651218724495e-02,0.000000000000000000e+00 +2.004710511897020431e-01,-3.744916102261892643e-01,0.000000000000000000e+00 +7.533578745013604916e-01,-2.100974631750350263e-01,0.000000000000000000e+00 +3.369519479300930875e-01,-1.949183226440833749e-01,0.000000000000000000e+00 +7.588084670137230925e-02,-3.702261929290536213e-01,0.000000000000000000e+00 +7.401581205553239284e-01,-3.371035251877894101e-01,0.000000000000000000e+00 +4.091498717411049535e-01,-2.076897346199615413e-01,0.000000000000000000e+00 +7.277140984455687800e-01,-2.455241774991213100e-01,0.000000000000000000e+00 +3.633674399753273887e-01,-3.159066252379092443e-01,0.000000000000000000e+00 +8.137337779860009945e-01,-1.959146101398448192e-01,0.000000000000000000e+00 +6.551174625480457037e-01,-2.410907846156699619e-01,0.000000000000000000e+00 +5.937656550879697459e-01,-3.099504803452091117e-01,0.000000000000000000e+00 +4.709477294588926277e-01,-2.975964490348347868e-01,0.000000000000000000e+00 +8.102301179943416365e-01,-3.327597020161534025e-01,0.000000000000000000e+00 +4.992314228850241453e-01,-3.370328086573093351e-01,0.000000000000000000e+00 +2.640290203934514413e-01,-2.759265113268629666e-01,0.000000000000000000e+00 +3.235075958783928396e-01,-2.459929335834832864e-01,0.000000000000000000e+00 +4.334070588731500639e-01,-2.162354356505730713e-01,0.000000000000000000e+00 +2.876803676942238375e-01,-3.078191707397314181e-01,0.000000000000000000e+00 +9.005159358472522024e-01,-2.537688625083081573e-01,0.000000000000000000e+00 +1.904801774034833306e-01,-3.472920895344513426e-01,0.000000000000000000e+00 +8.639705296635946663e-01,-1.899385253102453819e-01,0.000000000000000000e+00 +6.327651343241001980e-01,-3.434673777038448894e-01,0.000000000000000000e+00 +4.969368652648180618e-01,-2.312259357116186187e-01,0.000000000000000000e+00 +5.317987480425681035e-01,-3.409229943786196704e-01,0.000000000000000000e+00 +7.035421939117628698e-01,-3.398430085158586356e-01,0.000000000000000000e+00 +5.831468198103439970e-01,-2.408273344250011494e-01,0.000000000000000000e+00 +2.340748110565891993e-01,-2.911884594427929240e-01,0.000000000000000000e+00 +3.985650422362517209e-01,-3.198237927087647092e-01,0.000000000000000000e+00 +9.050269425175504479e-01,-2.145949116599452089e-01,0.000000000000000000e+00 +8.310768494956657371e-01,-1.805311120607404618e-01,0.000000000000000000e+00 +1.715688973733653921e-01,-3.578368212178256735e-01,0.000000000000000000e+00 +8.763484254971813936e-01,-3.250757251002138748e-01,0.000000000000000000e+00 +3.718093401425505151e-01,-2.259035495937066207e-01,0.000000000000000000e+00 +7.517804615426746384e-01,-2.325555040849225652e-01,0.000000000000000000e+00 +8.083824412264911663e-01,-3.002254016301318940e-01,0.000000000000000000e+00 +8.462331903991335835e-01,-2.038224165473271343e-01,0.000000000000000000e+00 +5.313831912811556313e-01,-3.092424345596003210e-01,0.000000000000000000e+00 +6.631139276498668744e-01,-3.082258879592723599e-01,0.000000000000000000e+00 +4.153189432870566522e-01,-2.470658966921946142e-01,0.000000000000000000e+00 +7.563546959000380099e-01,-2.669663498354982178e-01,0.000000000000000000e+00 +4.494414874443880548e-01,-2.565423268198447349e-01,0.000000000000000000e+00 +6.281052776643845093e-01,-3.092160227754364166e-01,0.000000000000000000e+00 +4.825789161961286933e-01,-2.646736203910355356e-01,0.000000000000000000e+00 +6.981317788803473867e-01,-3.055287853290714617e-01,0.000000000000000000e+00 +3.292674680733390091e-01,-2.792520780901429633e-01,0.000000000000000000e+00 +5.612977848997102726e-01,-3.106442737990984804e-01,0.000000000000000000e+00 +6.897146529399529324e-01,-2.418617179641145420e-01,0.000000000000000000e+00 +6.233654127794022726e-01,-2.750703795457774548e-01,0.000000000000000000e+00 +2.179717040970744202e-01,-3.344957423870991153e-01,0.000000000000000000e+00 +4.035459709719586008e-01,-2.829741238390200420e-01,0.000000000000000000e+00 +5.382752331757686415e-01,-2.450040750003640300e-01,0.000000000000000000e+00 +7.756656322162326367e-01,-3.350725199775784202e-01,0.000000000000000000e+00 +8.411427234346373627e-01,-2.968167345515643207e-01,0.000000000000000000e+00 +3.663930218449581999e-01,-2.779438394081222841e-01,0.000000000000000000e+00 +5.026110375549056597e-01,-3.045116874870671952e-01,0.000000000000000000e+00 +2.924611505996065342e-01,-2.602494197046547608e-01,0.000000000000000000e+00 +4.389477782121096183e-01,-2.907361423365004138e-01,0.000000000000000000e+00 +8.178001332875108886e-01,-2.234651881133084272e-01,0.000000000000000000e+00 +2.491181498581919729e-01,-3.220434664254004375e-01,0.000000000000000000e+00 +8.916457693479485913e-01,-2.328956924082251634e-01,0.000000000000000000e+00 +8.750354293149434914e-01,-2.932504906952229096e-01,0.000000000000000000e+00 +7.716779566095577358e-01,-2.433107932146324759e-01,0.000000000000000000e+00 +3.036217032007398342e-01,-2.812920086854000523e-01,0.000000000000000000e+00 +8.394858339922408597e-01,-2.647917988942800616e-01,0.000000000000000000e+00 +7.757734680203751676e-01,-3.020582189462165945e-01,0.000000000000000000e+00 +5.324998116329323627e-01,-2.866891010875259327e-01,0.000000000000000000e+00 +5.879106965496425641e-01,-2.761840382377800940e-01,0.000000000000000000e+00 +7.369605980068132389e-01,-2.962720269264106920e-01,0.000000000000000000e+00 +6.584307667128174169e-01,-2.745540152091699437e-01,0.000000000000000000e+00 +8.660675722248062369e-01,-2.286974812161711168e-01,0.000000000000000000e+00 +6.924252993167899772e-01,-2.734514274306238391e-01,0.000000000000000000e+00 +7.175758193902993520e-01,-2.718212401854461779e-01,0.000000000000000000e+00 +8.016517622698151602e-01,-2.631866533391820639e-01,0.000000000000000000e+00 +7.762493443856517406e-01,-2.784232080218305150e-01,0.000000000000000000e+00 +8.709237179968939424e-01,-2.619230280452982673e-01,0.000000000000000000e+00 +8.405000773780889611e-01,-2.405250976364652349e-01,0.000000000000000000e+00 +5.131852132949249468e-01,-2.758861038334453064e-01,0.000000000000000000e+00 +5.539276823173245878e-01,-2.790767273973124851e-01,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad4/uvs.csv b/src/pyvale/data/render/riley/rabbits/riley_quad4/uvs.csv new file mode 100644 index 000000000..bce6bee25 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad4/uvs.csv @@ -0,0 +1,238 @@ +7.344846496541079794e-01,1.456614912626288949e-01 +7.432584343688688477e-01,1.309340521403573043e-01 +7.500000000000000000e-01,1.151736695696568419e-01 +7.473777584232614846e-01,9.898885943427244982e-02 +7.389025544649455712e-01,8.442250812516274849e-02 +7.236852781444199634e-01,7.678703873486093789e-02 +7.336770658604458983e-01,6.610768488433926837e-02 +7.371656162926660816e-01,5.224160188240863784e-02 +7.220342979453728827e-01,4.506061410965624126e-02 +7.050121775071629404e-01,4.329747743580984742e-02 +6.888567293675822434e-01,3.758779964347394587e-02 +6.720659906918811100e-01,3.408660814636601394e-02 +6.550974897749023418e-01,3.156658481797901955e-02 +6.380596467791179727e-01,2.955977868403182954e-02 +6.209878208739709748e-01,2.786581412681541151e-02 +6.038876018460057615e-01,2.648784369447656703e-02 +5.867613268420159844e-01,2.548891321604607879e-02 +5.696138634670241396e-01,2.496989092792868334e-02 +5.524584975251731755e-01,2.491833031804551943e-02 +5.353068682704202885e-01,2.528209499506711352e-02 +5.181714223694620092e-01,2.610558827319808470e-02 +5.010838214058931372e-01,2.761378469086254658e-02 +4.841244552254967415e-01,3.017786771609294594e-02 +4.674243651998174487e-01,3.408515799562763376e-02 +4.509043592733636419e-01,3.871043996830958456e-02 +4.339268086995629048e-01,4.054508726731800156e-02 +4.168383017422853110e-01,3.909791207412548902e-02 +3.997843473416101689e-01,4.063311928228468400e-02 +3.831682509047538154e-01,4.487187964312451538e-02 +3.723099294086716360e-01,3.502379594148569142e-02 +3.659856740139302289e-01,1.916283578090749104e-02 +3.536297156154615262e-01,7.378666275536422542e-03 +3.382265879216116433e-01,0.000000000000000000e+00 +3.248816130403163749e-01,8.594424598856006264e-03 +3.209552988395201201e-01,2.514340789122352163e-02 +3.236820388058412323e-01,4.172675797395554442e-02 +3.085611950663632586e-01,3.389556824010439562e-02 +2.926126671834530790e-01,2.757359190632288279e-02 +2.764611894895258049e-01,2.181103512630843885e-02 +2.595779545257321241e-01,1.892164943180401487e-02 +2.500000000000000000e-01,2.937737658077698225e-02 +2.558996505245621500e-01,4.528723028806374423e-02 +2.670934172160400188e-01,5.793038463103428876e-02 +2.825555914729132589e-01,6.536064098598298733e-02 +2.983304349173018233e-01,7.209733906519262547e-02 +3.143971648729662061e-01,7.811208947490359822e-02 +3.301734102061599785e-01,8.483274005412248797e-02 +3.440675886195335709e-01,9.330732145149292500e-02 +3.375815035722529167e-01,1.064514939334830768e-01 +3.499842763283160796e-01,1.179429554067829844e-01 +3.662372448588593898e-01,1.233714008707551824e-01 +3.828011155015022537e-01,1.278315702827224343e-01 +3.961093669695772146e-01,1.376631071036537590e-01 +4.085932278991288857e-01,1.491465301528886456e-01 +4.246190200945617610e-01,1.551557792448758633e-01 +4.415890900481990178e-01,1.574304831045630348e-01 +4.587402221074623476e-01,1.574746155960157490e-01 +4.758459611198221362e-01,1.562231864153185434e-01 +4.928252653151099505e-01,1.537820917321098546e-01 +5.097355186185091869e-01,1.508894844643299260e-01 +5.267129975987869805e-01,1.484358699506831969e-01 +5.438179295254358392e-01,1.471524608473429307e-01 +5.609506860158637309e-01,1.462646538153635212e-01 +5.780729454842146176e-01,1.451910991511707050e-01 +5.952136409469864775e-01,1.445006906456302032e-01 +6.123677384477697050e-01,1.442641283365641292e-01 +6.294978897809327956e-01,1.442435682791342599e-01 +6.394096438140933758e-01,1.571300016289884360e-01 +6.356490076347522944e-01,1.697066579607115211e-01 +6.212485805631043911e-01,1.785353976869390458e-01 +6.109482100164199680e-01,1.922141371764032880e-01 +6.026880964650510597e-01,2.072250684607450377e-01 +5.981740080847920416e-01,2.235841383949477568e-01 +6.110542184778977592e-01,2.317749297256488650e-01 +6.272294308861275924e-01,2.262378254154294721e-01 +6.412822146446555127e-01,2.164867121634484193e-01 +6.537357246344992490e-01,2.046888057996086863e-01 +6.659840449372870230e-01,1.926905445304433750e-01 +6.766688450854401182e-01,1.792812458895808869e-01 +6.900303008338825039e-01,1.686891553730047177e-01 +7.064686981587529058e-01,1.638729988359372558e-01 +7.224142111194306048e-01,1.576454635925707837e-01 +4.884875082376274325e-01,1.366704111336625449e-01 +5.342555906630309659e-01,4.293495948478503327e-02 +5.863494097575459030e-01,4.308248469036494305e-02 +6.389144231239636262e-01,4.684288340500655790e-02 +4.279849744186274285e-01,1.429650311592258194e-01 +5.602848174735761688e-01,1.289117076873022849e-01 +4.831743424136084597e-01,4.825173736151269765e-02 +6.120354920500683527e-01,1.274126318793191992e-01 +4.494193539146351668e-01,5.445707250540941097e-02 +3.970479659964307739e-01,5.755016920352817866e-02 +6.991905216097116238e-01,1.465118813892322958e-01 +3.650461180183942611e-01,5.011524975460134729e-02 +3.741613777430997656e-01,1.084021205261609527e-01 +6.471163475857738545e-01,1.378641674613966250e-01 +3.380957495688122760e-01,7.102886432213645351e-02 +6.670408886520017289e-01,1.670942993138624377e-01 +6.728542691998493641e-01,5.095431532648576900e-02 +3.366145218929217364e-01,4.146122293145898530e-02 +6.325748937163914176e-01,1.875254649478541868e-01 +7.125699260740244734e-01,1.388054560284223693e-01 +7.348814936797167796e-01,1.144776648352993503e-01 +4.046394028866671100e-01,1.240976368256515444e-01 +7.044727726656642153e-01,5.634809568227482773e-02 +3.042180868736882871e-01,5.306361983628245932e-02 +2.734277377593726244e-01,4.007370872655158928e-02 +6.205916639024328108e-01,2.098399169036933021e-01 +7.244544114648727717e-01,1.005075475457830880e-01 +4.148216204182864075e-01,5.727217489494653563e-02 +5.514609932604132014e-01,4.251350362969311125e-02 +5.052573179630192035e-01,1.336067824187629483e-01 +5.171726739291455655e-01,4.397896323374229921e-02 +6.474486775504477709e-01,1.690962761525705849e-01 +6.038680485122029928e-01,4.406532586914439081e-02 +5.777808851912802357e-01,1.282206136155135678e-01 +5.422632776413656153e-01,1.295232654266504357e-01 +3.375251401251830874e-01,2.426381517756387093e-02 +4.562387432233003248e-01,1.405392402877012892e-01 +3.528368342671820423e-01,2.777588683051244664e-02 +2.634933085881981940e-01,3.530913035460715721e-02 +6.513551296734929608e-01,1.825075917332945608e-01 +6.299592511905478531e-01,2.036555832699282753e-01 +6.890406125241415047e-01,5.363444027682610221e-02 +6.116658377614959674e-01,2.155171468760176123e-01 +7.158661218702055962e-01,6.929186495054100170e-02 +7.186194840574580134e-01,5.970886203889370913e-02 +4.663809655959233469e-01,5.143765793603791159e-02 +4.825977162758796624e-01,1.199559561156280790e-01 +5.498935050390851842e-01,5.977083806778292485e-02 +5.848480933834651063e-01,6.045202628679825080e-02 +6.728222895558501060e-01,6.717121209425666595e-02 +5.606709184190622475e-01,1.115071125479044772e-01 +4.833922450287101436e-01,6.578933355207929046e-02 +4.143289276428216428e-01,7.480776706922212527e-02 +6.924265581708100026e-01,1.319142400204784404e-01 +3.521980030382483862e-01,7.885027811162509392e-02 +7.138168687355326281e-01,1.139560594931418314e-01 +7.049378819431220133e-01,6.999473377374948457e-02 +3.235145581489040634e-01,5.898957586701378958e-02 +6.814004037829811677e-01,1.519301845110967442e-01 +3.893695688856327886e-01,1.155450661169494797e-01 +6.568199249619228741e-01,1.531593555158364262e-01 +3.803702586939702313e-01,5.538169432758648092e-02 +5.329370108543051154e-01,6.011877197795242878e-02 +5.235234139635437378e-01,1.308318823893344918e-01 +5.687224632450404993e-01,4.259801144490048957e-02 +5.952212198936177590e-01,1.275735687260974860e-01 +6.213825707009545951e-01,4.536703595052765658e-02 +6.559250655133902486e-01,4.866104999493237743e-02 +5.002719722615911468e-01,4.574635613790271893e-02 +3.590665607652956393e-01,1.011912129611491212e-01 +4.324236719021419262e-01,5.635312394960211024e-02 +4.726184874487443510e-01,1.392247504983505357e-01 +7.088707801264498842e-01,8.735584158194893700e-02 +4.667320165104269503e-01,6.886652756085263893e-02 +6.422177172992018512e-01,1.234483367430218165e-01 +4.399570636356672781e-01,1.411993386355485935e-01 +7.239546848691771341e-01,1.281573257003738864e-01 +6.455505090974935634e-01,1.975781519261230190e-01 +3.504622092997083382e-01,4.437861153019735660e-02 +6.275654407086237452e-01,1.267718744040146894e-01 +4.188655351120696979e-01,1.343795595825882649e-01 +2.880184200648315818e-01,4.651641056339570618e-02 +6.209498110389914949e-01,6.311727330237683342e-02 +4.550506586229056127e-01,1.279786120849202846e-01 +6.147129491841859528e-01,1.090162387051853560e-01 +4.321048056035366458e-01,7.374101983477029942e-02 +6.578254455584696681e-01,1.338802268568883569e-01 +5.783279938037599877e-01,1.112382259950093349e-01 +5.475788723142405168e-01,7.672620039418573401e-02 +4.860233375613842721e-01,8.291795945352928299e-02 +6.560694342655406519e-01,6.529436884305089839e-02 +5.001989382704323805e-01,6.315271596131502574e-02 +3.823170445129169814e-01,9.377878939218027565e-02 +4.121273144841832714e-01,1.087813012455778744e-01 +4.672082009186666607e-01,1.236955630586241695e-01 +3.941709438787265873e-01,7.779439871961012221e-02 +7.013200910411598876e-01,1.048840569246358712e-01 +3.454548492143708627e-01,5.801083201125165068e-02 +6.830037743563355246e-01,1.368754011812406690e-01 +5.671251542365804976e-01,5.992775236960052460e-02 +4.990489211160994421e-01,1.161824232401160867e-01 +5.165214669670754599e-01,6.120298052052615401e-02 +6.025981499645095552e-01,6.174426231605618237e-02 +5.422567820687105300e-01,1.113702654940018216e-01 +3.673041922408620819e-01,8.612960159785393310e-02 +4.497456118465351094e-01,7.177776131896358713e-02 +7.035809778493486988e-01,1.245177828689714578e-01 +6.665176786797046837e-01,1.415903346915431960e-01 +3.359766403197620432e-01,5.272588199869564229e-02 +6.892074941574065639e-01,6.914552742325477674e-02 +4.363358303213211720e-01,1.188499680791219593e-01 +6.267748517314801759e-01,1.155160523354618052e-01 +6.551433908487274138e-01,8.160034574189442558e-02 +6.741139368352704331e-01,1.299168864109282728e-01 +5.163131926574590080e-01,7.708106827474482670e-02 +5.823357694029158704e-01,7.759055473011262916e-02 +4.581425566173933372e-01,1.082435392080860342e-01 +6.290674278396515273e-01,9.826956326942876130e-02 +4.752445508252747808e-01,1.034940148933920362e-01 +5.647896647948622562e-01,7.709430568687061780e-02 +4.918528116854072874e-01,9.941866415412980995e-02 +5.998864856143113489e-01,7.894232479002029346e-02 +4.150141244612448044e-01,9.211203725138722431e-02 +5.313061897926310007e-01,7.637847568833806833e-02 +5.956678775757102695e-01,1.108518392824895671e-01 +5.624140757580262662e-01,9.420787699754167022e-02 +3.592334211787533982e-01,6.442427685249857428e-02 +4.522420204963463752e-01,9.024657245646251769e-02 +5.197674386251303069e-01,1.092769106492303272e-01 +6.387459418304487491e-01,6.413519972606475383e-02 +6.715626283472273528e-01,8.330874721294163898e-02 +4.336212072930273331e-01,9.276771785536812309e-02 +5.018927788657494560e-01,7.945208752408267072e-02 +3.965670407576700751e-01,1.016360443753737269e-01 +4.699851729288860303e-01,8.635629995001295467e-02 +6.598634760316068881e-01,1.200720587802788786e-01 +3.748438144878430967e-01,7.066527548349182952e-02 +6.968744220607171469e-01,1.153455521902239655e-01 +6.885494291256766264e-01,8.509612512631858916e-02 +6.367473451017340302e-01,1.101255723187228169e-01 +4.021606361549326381e-01,9.108963748354718948e-02 +6.707322062803289242e-01,9.935943386729464977e-02 +6.387999884246693405e-01,8.068174978435792288e-02 +5.168728354174021433e-01,8.838465034733079817e-02 +5.446444056886521334e-01,9.364971860195515918e-02 +6.193472338146186473e-01,8.358175108414814258e-02 +5.799886000110114903e-01,9.446667539935781066e-02 +6.840547982650500014e-01,1.174496679665543442e-01 +5.970264356721564081e-01,9.501928512609546240e-02 +6.096317105496438238e-01,9.583632422775929804e-02 +6.517700189219025608e-01,1.001639222389565514e-01 +6.390384945221369017e-01,9.252746146600634991e-02 +6.864886665160205848e-01,1.007972429068789560e-01 +6.712405383797813707e-01,1.115217445801777452e-01 +5.071924860454111172e-01,9.379904136152926453e-02 +5.276123429594554715e-01,9.219992186278395951e-02 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad8/connectivity.csv b/src/pyvale/data/render/riley/rabbits/riley_quad8/connectivity.csv new file mode 100644 index 000000000..190b60383 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad8/connectivity.csv @@ -0,0 +1,196 @@ +221,187,36,35,322,321,117,320 +276,314,315,306,326,325,324,323 +260,301,311,316,330,329,328,327 +174,217,270,183,334,333,332,331 +242,175,290,261,338,337,336,335 +190,219,260,236,342,341,340,339 +182,68,195,203,346,345,344,343 +184,190,4,3,349,348,85,347 +319,292,318,307,353,352,351,350 +245,188,38,37,356,355,119,354 +189,74,73,206,359,155,358,357 +187,44,43,245,362,125,361,360 +259,173,191,216,366,365,364,363 +176,256,297,223,370,369,368,367 +274,257,286,295,374,373,372,371 +274,244,185,257,377,376,375,374 +253,215,255,296,381,380,379,378 +252,308,319,287,385,384,383,382 +173,259,300,225,366,388,387,386 +216,191,234,249,364,391,390,389 +182,204,189,70,395,394,393,392 +34,33,32,199,115,114,397,396 +308,252,283,289,385,400,399,398 +217,174,222,262,334,403,402,401 +306,315,281,309,324,406,405,404 +250,177,238,299,410,409,408,407 +263,211,192,228,414,413,412,411 +201,199,32,31,416,397,113,415 +233,47,218,268,420,419,418,417 +47,233,49,48,420,421,130,129 +183,81,80,174,423,162,422,331 +173,27,26,191,425,108,424,365 +283,263,212,279,429,428,427,426 +236,260,316,302,340,327,431,430 +175,225,300,290,433,387,432,337 +264,210,282,284,437,436,435,434 +279,310,289,283,439,438,399,426 +265,278,296,255,442,441,379,440 +226,165,192,211,445,444,413,443 +170,22,21,232,448,103,447,446 +292,227,193,264,452,451,450,449 +251,288,229,197,456,455,454,453 +295,286,216,249,372,458,389,457 +288,251,310,312,456,461,460,459 +70,69,68,182,151,150,346,392 +270,217,311,301,333,463,329,462 +222,179,224,271,467,466,465,464 +224,67,66,177,470,148,469,468 +290,300,268,218,432,472,418,471 +254,293,167,231,476,475,474,473 +199,201,242,181,416,479,478,477 +215,170,232,255,481,446,480,380 +285,312,310,279,483,460,439,482 +41,40,39,202,122,121,485,484 +259,256,268,300,487,486,472,388 +213,254,231,180,490,473,489,488 +49,233,176,50,421,492,491,131 +8,7,6,208,89,88,494,493 +203,195,224,179,344,496,466,495 +278,265,226,287,442,499,498,497 +246,266,196,230,503,502,501,500 +166,228,17,16,506,505,98,504 +165,19,18,192,508,100,507,444 +179,78,77,203,510,159,509,495 +306,309,246,293,404,513,512,511 +264,193,164,210,450,515,514,437 +208,186,9,8,517,516,90,493 +66,65,171,243,147,520,519,518 +46,178,218,47,522,521,419,128 +189,204,75,74,394,523,156,359 +266,246,309,285,503,513,525,524 +311,317,305,316,528,527,526,328 +222,174,80,79,403,422,161,529 +267,198,227,292,532,531,452,530 +235,164,58,57,535,534,139,533 +239,200,56,55,538,537,137,536 +223,51,50,176,539,132,491,367 +255,232,194,265,480,541,540,440 +29,175,242,201,543,338,479,542 +302,294,213,273,547,546,545,544 +263,283,252,211,429,400,548,414 +314,299,238,303,551,408,550,549 +236,5,4,190,552,86,348,339 +205,180,11,10,555,554,92,553 +240,0,81,183,557,163,423,556 +197,63,62,169,560,144,559,558 +294,305,314,276,563,562,326,561 +204,241,76,75,565,564,157,523 +199,181,35,34,477,566,116,396 +294,276,254,213,561,567,490,546 +197,169,214,251,558,569,568,453 +222,79,78,179,529,160,510,467 +203,77,76,241,509,158,564,570 +309,313,312,285,572,571,483,525 +180,231,12,11,489,573,93,554 +293,246,230,167,512,500,574,475 +167,230,14,13,574,576,95,575 +310,251,214,289,461,568,577,438 +66,243,238,177,518,578,409,469 +231,167,13,12,474,575,94,573 +221,45,44,187,579,126,362,322 +234,191,26,25,391,424,107,580 +43,42,188,245,124,581,356,361 +256,176,233,268,370,492,417,486 +312,313,248,288,571,583,582,459 +166,196,266,212,586,502,585,584 +285,279,212,266,482,427,585,524 +230,196,15,14,501,587,96,576 +171,229,288,248,589,455,582,588 +65,64,229,171,146,590,589,520 +280,282,210,258,593,436,592,591 +229,64,63,197,590,145,560,454 +200,235,57,56,594,533,138,537 +235,258,210,164,595,592,514,535 +165,226,265,194,445,499,540,596 +308,289,214,267,398,577,598,597 +193,59,58,164,599,140,534,515 +198,169,62,61,601,559,143,600 +169,198,267,214,601,532,598,569 +228,192,18,17,412,507,99,505 +211,252,287,226,548,382,498,443 +319,308,267,292,384,597,530,353 +227,60,59,193,602,141,599,451 +194,20,19,165,603,101,508,596 +196,166,16,15,586,504,97,587 +227,198,61,60,531,600,142,602 +168,239,55,54,605,536,136,604 +292,264,284,318,449,434,606,352 +232,21,20,194,447,102,603,541 +220,273,205,186,610,609,608,607 +0,240,184,1,557,612,611,82 +297,257,185,223,614,375,613,368 +277,262,222,271,616,402,464,615 +54,53,244,168,135,618,617,604 +234,25,24,172,580,106,620,619 +228,166,212,263,506,584,428,411 +186,205,10,9,608,553,91,516 +295,249,269,291,457,623,622,621 +237,298,291,269,626,625,622,624 +318,296,278,307,628,441,627,351 +188,202,39,38,629,485,120,355 +290,218,178,261,471,521,630,336 +293,254,276,306,476,567,323,511 +273,213,180,205,545,488,555,609 +240,219,190,184,631,342,349,612 +309,281,248,313,405,632,583,572 +259,216,286,304,363,458,634,633 +287,319,307,278,383,350,627,497 +209,23,22,170,636,104,448,635 +1,184,3,2,611,347,84,83 +249,234,172,269,390,619,637,623 +237,209,170,215,639,635,481,638 +172,24,23,209,620,105,636,640 +223,185,52,51,613,641,133,539 +271,250,299,277,643,407,642,615 +45,221,178,46,579,644,522,127 +221,272,261,178,646,645,630,644 +298,237,215,253,626,638,381,647 +269,172,209,237,637,640,639,624 +31,30,29,201,112,111,542,415 +270,301,260,219,462,330,341,648 +273,220,236,302,610,649,430,544 +177,250,271,224,410,643,465,468 +206,71,70,189,650,152,393,357 +311,277,299,317,652,642,651,528 +53,52,185,244,134,641,376,618 +29,28,225,175,110,653,433,543 +248,275,243,171,655,654,519,588 +225,28,27,173,653,109,425,386 +244,274,239,168,377,656,605,617 +200,239,274,247,538,656,658,657 +42,41,202,188,123,484,629,581 +217,262,277,311,401,616,652,463 +203,241,204,182,570,565,395,343 +5,236,220,207,552,649,660,659 +187,245,37,36,360,354,118,321 +6,5,207,208,87,659,661,494 +219,240,183,270,631,556,332,648 +314,303,281,315,549,662,406,325 +305,294,302,316,563,547,431,526 +303,275,248,281,663,655,632,662 +224,195,68,67,496,345,149,470 +303,238,243,275,550,578,654,663 +73,72,71,206,154,153,650,358 +257,297,304,286,614,664,634,373 +299,314,305,317,551,562,527,651 +181,242,261,272,478,335,645,665 +220,186,208,207,607,517,661,660 +181,272,221,35,665,646,320,566 +235,200,247,258,594,657,666,595 +274,280,258,247,667,591,666,658 +318,284,253,296,606,668,378,628 +297,256,259,304,369,487,633,664 +291,280,274,295,669,667,371,621 +282,280,291,298,593,669,625,670 +284,282,298,253,435,670,647,668 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad8/coords.csv b/src/pyvale/data/render/riley/rabbits/riley_quad8/coords.csv new file mode 100644 index 000000000..bfcbf5611 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad8/coords.csv @@ -0,0 +1,671 @@ +9.666871145982780522e-01,-1.724081868521550875e-01,0.000000000000000000e+00 +9.841929009245519167e-01,-2.017929291030048922e-01,0.000000000000000000e+00 +9.976439270529439129e-01,-2.332386390984700075e-01,0.000000000000000000e+00 +9.924119317133468510e-01,-2.655311829860224626e-01,0.000000000000000000e+00 +9.755018849787532309e-01,-2.945945167536855314e-01,0.000000000000000000e+00 +9.451398010667991789e-01,-3.098290933922658308e-01,0.000000000000000000e+00 +9.650757929404047974e-01,-3.311369431615200365e-01,0.000000000000000000e+00 +9.720362803971046572e-01,-3.588030751793025996e-01,0.000000000000000000e+00 +9.418457030768171423e-01,-3.731308529454813172e-01,0.000000000000000000e+00 +9.078825260786310691e-01,-3.766487297660107147e-01,0.000000000000000000e+00 +8.756485663530294561e-01,-3.880408943419599854e-01,0.000000000000000000e+00 +8.421470509781859848e-01,-3.950266037283122200e-01,0.000000000000000000e+00 +8.082908576719989302e-01,-4.000546493617718746e-01,0.000000000000000000e+00 +7.742963104336768598e-01,-4.040587046835342200e-01,0.000000000000000000e+00 +7.402339592123093892e-01,-4.074385666868749478e-01,0.000000000000000000e+00 +7.061149569609301846e-01,-4.101879452887756683e-01,0.000000000000000000e+00 +6.719439668430100543e-01,-4.121810490722303544e-01,0.000000000000000000e+00 +6.377307008877605154e-01,-4.132166219258782136e-01,0.000000000000000000e+00 +6.035016674329242159e-01,-4.133194976002663168e-01,0.000000000000000000e+00 +5.692800895571833442e-01,-4.125937005906505362e-01,0.000000000000000000e+00 +5.350908013195839752e-01,-4.109506357290486078e-01,0.000000000000000000e+00 +5.009969751064089483e-01,-4.079414253273769830e-01,0.000000000000000000e+00 +4.671590077713342337e-01,-4.028254701242599545e-01,0.000000000000000000e+00 +4.338383580034822495e-01,-3.950294971237843233e-01,0.000000000000000000e+00 +4.008770188255625366e-01,-3.858009600049835952e-01,0.000000000000000000e+00 +3.670027693026113313e-01,-3.821404024868028659e-01,0.000000000000000000e+00 +3.329071354166024399e-01,-3.850278610388791489e-01,0.000000000000000000e+00 +2.988804420953067864e-01,-3.819647576888076101e-01,0.000000000000000000e+00 +2.657273795052250698e-01,-3.735074230746696089e-01,0.000000000000000000e+00 +2.440624467365182237e-01,-3.931566912763511668e-01,0.000000000000000000e+00 +2.314361328291892339e-01,-4.248148663269066261e-01,0.000000000000000000e+00 +2.070761375756171030e-01,-4.481105423326734449e-01,0.000000000000000000e+00 +1.747335895911935333e-01,-4.633217478671338707e-01,0.000000000000000000e+00 +1.492950029863286676e-01,-4.456272760380871056e-01,0.000000000000000000e+00 +1.415896559185126913e-01,-4.134227797053346976e-01,0.000000000000000000e+00 +1.472656160730105301e-01,-3.799419818515565317e-01,0.000000000000000000e+00 +1.169233970498935599e-01,-3.953855042093336047e-01,0.000000000000000000e+00 +8.500749258360672245e-02,-4.080373989334921681e-01,0.000000000000000000e+00 +5.264211267258635946e-02,-4.195698465043211645e-01,0.000000000000000000e+00 +1.820560486193930488e-02,-4.253275761209334149e-01,0.000000000000000000e+00 +3.790078583497949937e-05,-4.041359700283042033e-01,0.000000000000000000e+00 +1.157243725116708331e-02,-3.730713197353347499e-01,0.000000000000000000e+00 +3.385601420932892597e-02,-3.476021803457293169e-01,0.000000000000000000e+00 +6.495013155889503564e-02,-3.326417844067733331e-01,0.000000000000000000e+00 +9.640936725238183347e-02,-3.192042669354782647e-01,0.000000000000000000e+00 +1.285127136982477936e-01,-3.071853021572662490e-01,0.000000000000000000e+00 +1.599900736759930497e-01,-2.937760065296424750e-01,0.000000000000000000e+00 +1.877122627188177739e-01,-2.768672019521384864e-01,0.000000000000000000e+00 +1.747709810914362394e-01,-2.506414530437688915e-01,0.000000000000000000e+00 +1.995174612912174739e-01,-2.277132555020902616e-01,0.000000000000000000e+00 +2.319459973806286546e-01,-2.168822162795010777e-01,0.000000000000000000e+00 +2.649948570954468452e-01,-2.079831179720713075e-01,0.000000000000000000e+00 +2.915479825880856191e-01,-1.883668647311448896e-01,0.000000000000000000e+00 +3.164562529713312866e-01,-1.654547057564766388e-01,0.000000000000000000e+00 +3.484315182648293763e-01,-1.534648252196653406e-01,0.000000000000000000e+00 +3.822908421721623595e-01,-1.489262502468556015e-01,0.000000000000000000e+00 +4.165114280247016465e-01,-1.488381954346469638e-01,0.000000000000000000e+00 +4.506414439572319353e-01,-1.513350941564599317e-01,0.000000000000000000e+00 +4.845191923719441296e-01,-1.562056583788258290e-01,0.000000000000000000e+00 +5.182591678416457182e-01,-1.619770975469639607e-01,0.000000000000000000e+00 +5.521332745184985846e-01,-1.668726418074336915e-01,0.000000000000000000e+00 +5.862616801231644859e-01,-1.694333480776104572e-01,0.000000000000000000e+00 +6.204456023473934323e-01,-1.712047341676575241e-01,0.000000000000000000e+00 +6.546085805170877014e-01,-1.733467309423580294e-01,0.000000000000000000e+00 +6.888138687420916062e-01,-1.747243632601735430e-01,0.000000000000000000e+00 +7.230349961616805432e-01,-1.751962621294259892e-01,0.000000000000000000e+00 +7.571503380580734133e-01,-1.752467949607496023e-01,0.000000000000000000e+00 +7.770344813569508569e-01,-1.494432500688904764e-01,0.000000000000000000e+00 +7.670958508487553118e-01,-1.237540010009043484e-01,0.000000000000000000e+00 +7.399209988138543137e-01,-1.059785012364030526e-01,0.000000000000000000e+00 +7.204837694982179075e-01,-7.994136217085920371e-02,0.000000000000000000e+00 +7.037216585636167920e-01,-4.957421463282798979e-02,0.000000000000000000e+00 +6.947149790961135718e-01,-1.693398101928518529e-02,0.000000000000000000e+00 +7.204140608845941429e-01,-5.914050911204128983e-04,0.000000000000000000e+00 +7.526407942736712542e-01,-1.161671807122336905e-02,0.000000000000000000e+00 +7.807835169347491222e-01,-3.114584213719550840e-02,0.000000000000000000e+00 +8.055693308475562198e-01,-5.463040253133340934e-02,0.000000000000000000e+00 +8.299363445128263850e-01,-7.848779680084545796e-02,0.000000000000000000e+00 +8.513287363317139089e-01,-1.053265268951530803e-01,0.000000000000000000e+00 +8.779705562184223488e-01,-1.264534205083990004e-01,0.000000000000000000e+00 +9.107838922014340755e-01,-1.360705846541485076e-01,0.000000000000000000e+00 +9.426037201770547380e-01,-1.484973130652706697e-01,0.000000000000000000e+00 +9.759303908112429982e-01,-1.868084400293397729e-01,0.000000000000000000e+00 +9.914479849146261570e-01,-2.172884032708378710e-01,0.000000000000000000e+00 +9.983780336208001316e-01,-2.497903186855467972e-01,0.000000000000000000e+00 +9.862697115140190984e-01,-2.814189344071686416e-01,0.000000000000000000e+00 +9.611313682359298172e-01,-3.038005660040052902e-01,0.000000000000000000e+00 +9.512759034546959258e-01,-3.211188871025933422e-01,0.000000000000000000e+00 +9.762470840694433827e-01,-3.436508102167301071e-01,0.000000000000000000e+00 +9.583833584822459839e-01,-3.688831617255557416e-01,0.000000000000000000e+00 +9.247903207480699939e-01,-3.744242939508435342e-01,0.000000000000000000e+00 +8.920073131179411252e-01,-3.830546533053230673e-01,0.000000000000000000e+00 +8.589559162933526615e-01,-3.918486941647253419e-01,0.000000000000000000e+00 +8.252529737945747401e-01,-3.977172513233777074e-01,0.000000000000000000e+00 +7.913039775207594273e-01,-4.021419727549646050e-01,0.000000000000000000e+00 +7.572728345806460926e-01,-4.058263063471898580e-01,0.000000000000000000e+00 +7.231788425029497258e-01,-4.088934737444642198e-01,0.000000000000000000e+00 +6.890173343357033353e-01,-4.112995895202221086e-01,0.000000000000000000e+00 +6.548410707772972517e-01,-4.128209373912495872e-01,0.000000000000000000e+00 +6.206150822987386295e-01,-4.133764447681529397e-01,0.000000000000000000e+00 +5.863886776816233937e-01,-4.130595424919457082e-01,0.000000000000000000e+00 +5.521792219117106493e-01,-4.119035142789551074e-01,0.000000000000000000e+00 +5.180287720089779002e-01,-4.096643755407736176e-01,0.000000000000000000e+00 +4.840312349517308932e-01,-4.056917069293387579e-01,0.000000000000000000e+00 +4.504096361348825517e-01,-3.992706841737689860e-01,0.000000000000000000e+00 +4.173523117650859704e-01,-3.903469262960459485e-01,0.000000000000000000e+00 +3.841076527251739980e-01,-3.825367671070094566e-01,0.000000000000000000e+00 +3.499614925937803989e-01,-3.838774468248402627e-01,0.000000000000000000e+00 +3.158118618805215161e-01,-3.844156686471849604e-01,0.000000000000000000e+00 +2.821922265294392607e-01,-3.781555223092172291e-01,0.000000000000000000e+00 +2.508036048142705532e-01,-3.775333950093502922e-01,0.000000000000000000e+00 +2.393002241231826921e-01,-4.088019931071377178e-01,0.000000000000000000e+00 +2.195365142340177933e-01,-4.380220860418350681e-01,0.000000000000000000e+00 +1.918369360840501137e-01,-4.569964305748892563e-01,0.000000000000000000e+00 +1.621712173183302297e-01,-4.605471482509040371e-01,0.000000000000000000e+00 +1.433902165267273709e-01,-4.285369270439984279e-01,0.000000000000000000e+00 +1.446281521036189011e-01,-3.962931638467844797e-01,0.000000000000000000e+00 +1.323949964566594750e-01,-3.885981838917180742e-01,0.000000000000000000e+00 +1.009628302532269567e-01,-4.017198527339658765e-01,0.000000000000000000e+00 +6.910057619522687322e-02,-4.141394691014134155e-01,0.000000000000000000e+00 +3.625746717581111028e-02,-4.231647374226744640e-01,0.000000000000000000e+00 +7.244524143803427081e-03,-4.232965416918211266e-01,0.000000000000000000e+00 +4.350308234172031371e-03,-3.868323643713255100e-01,0.000000000000000000e+00 +2.124029612022966876e-02,-3.579558299843016433e-01,0.000000000000000000e+00 +4.951954743398257613e-02,-3.398964841578629992e-01,0.000000000000000000e+00 +8.062643266492319771e-02,-3.256509861298206854e-01,0.000000000000000000e+00 +1.124976649765075526e-01,-3.131210001096126350e-01,0.000000000000000000e+00 +1.444322195262622288e-01,-3.009068994334663794e-01,0.000000000000000000e+00 +1.755670796318390681e-01,-2.867243311264983108e-01,0.000000000000000000e+00 +1.740515716484076492e-01,-2.667879548943814516e-01,0.000000000000000000e+00 +1.854607033134503813e-01,-2.373643224950482133e-01,0.000000000000000000e+00 +2.155183094194720594e-01,-2.216836703679199994e-01,0.000000000000000000e+00 +2.484102700339449743e-01,-2.122068068896430515e-01,0.000000000000000000e+00 +2.807266097376955316e-01,-2.014656919265665203e-01,0.000000000000000000e+00 +3.024955143912670952e-01,-1.752830923257850393e-01,0.000000000000000000e+00 +3.320924494582984110e-01,-1.585226532062637694e-01,0.000000000000000000e+00 +3.652451820203536648e-01,-1.502873578034631119e-01,0.000000000000000000e+00 +3.994154755548741664e-01,-1.485406674529208826e-01,0.000000000000000000e+00 +4.336013969461794959e-01,-1.497487143679470112e-01,0.000000000000000000e+00 +4.676123137626350679e-01,-1.535467208810512851e-01,0.000000000000000000e+00 +5.013884998273536731e-01,-1.590925545282008136e-01,0.000000000000000000e+00 +5.351641189501842311e-01,-1.646483146473916304e-01,0.000000000000000000e+00 +5.691770893757484018e-01,-1.684218065432686595e-01,0.000000000000000000e+00 +6.033577704019764676e-01,-1.702602841924786836e-01,0.000000000000000000e+00 +6.375264280087835633e-01,-1.722863455825408008e-01,0.000000000000000000e+00 +6.717005644250491070e-01,-1.742211453985528791e-01,0.000000000000000000e+00 +7.059236264669539462e-01,-1.749350788990378380e-01,0.000000000000000000e+00 +7.401306547565001948e-01,-1.758257271086023643e-01,0.000000000000000000e+00 +7.699063761349633772e-01,-1.649616048582235872e-01,0.000000000000000000e+00 +7.831215146350869460e-01,-1.356566209895714026e-01,0.000000000000000000e+00 +7.573342553592965487e-01,-1.200499387853982830e-01,0.000000000000000000e+00 +7.285716491066425160e-01,-9.176864923132946328e-02,0.000000000000000000e+00 +7.113971446379543373e-01,-6.510063318384763653e-02,0.000000000000000000e+00 +6.975224310249921178e-01,-3.362385905600494274e-02,0.000000000000000000e+00 +7.039358321312461086e-01,-3.237918658429719387e-03,0.000000000000000000e+00 +7.369265606458281770e-01,-5.239892262707729169e-03,0.000000000000000000e+00 +7.673006110708086025e-01,-2.043626872520416110e-02,0.000000000000000000e+00 +7.931135909200228706e-01,-4.262132566277904155e-02,0.000000000000000000e+00 +8.182341026052746269e-01,-6.641178903888381169e-02,0.000000000000000000e+00 +8.406595257329833037e-01,-9.190246909923542595e-02,0.000000000000000000e+00 +8.637415555356203756e-01,-1.172032058296569312e-01,0.000000000000000000e+00 +8.941874256233006690e-01,-1.318931472838782148e-01,0.000000000000000000e+00 +9.270914529902796186e-01,-1.414287243222177859e-01,0.000000000000000000e+00 +9.559763124113139776e-01,-1.590819916373930609e-01,0.000000000000000000e+00 +4.758643357732930679e-01,-1.903475291881132347e-01,0.000000000000000000e+00 +5.671825408068029706e-01,-3.773720392608747032e-01,0.000000000000000000e+00 +6.711220943331064337e-01,-3.770776914040966932e-01,0.000000000000000000e+00 +7.760017924503996856e-01,-3.695748019965913733e-01,0.000000000000000000e+00 +3.551473973405900875e-01,-1.777882657966591839e-01,0.000000000000000000e+00 +6.191170363064392168e-01,-2.058279870653624277e-01,0.000000000000000000e+00 +4.652633068382137083e-01,-3.667638034219364296e-01,0.000000000000000000e+00 +7.225063510942596468e-01,-2.089153783369948336e-01,0.000000000000000000e+00 +3.979140800997539862e-01,-3.543826845953919058e-01,0.000000000000000000e+00 +2.934207107828524785e-01,-3.482112213507245757e-01,0.000000000000000000e+00 +8.960683382800069818e-01,-1.708375434737120779e-01,0.000000000000000000e+00 +2.295694161634496411e-01,-3.630456531788731067e-01,0.000000000000000000e+00 +2.477565263145260210e-01,-2.467494892625835545e-01,0.000000000000000000e+00 +7.923853090227679363e-01,-1.879308784606046889e-01,0.000000000000000000e+00 +1.757970241079424567e-01,-3.213180202551493281e-01,0.000000000000000000e+00 +8.319660394251449098e-01,-1.296693637792057097e-01,0.000000000000000000e+00 +8.437198540015915516e-01,-3.613715178891810931e-01,0.000000000000000000e+00 +1.729532827068631651e-01,-3.802109217913001160e-01,0.000000000000000000e+00 +7.632585895979133728e-01,-8.908177094995747836e-02,0.000000000000000000e+00 +9.229620311976243219e-01,-1.860876070519127123e-01,0.000000000000000000e+00 +9.674789127723860682e-01,-2.346273340069784108e-01,0.000000000000000000e+00 +3.085674321158130562e-01,-2.154332028990514070e-01,0.000000000000000000e+00 +9.068062851853768702e-01,-3.506096437984659864e-01,0.000000000000000000e+00 +1.083234045354826286e-01,-3.572019722790444884e-01,0.000000000000000000e+00 +4.665673089254132599e-02,-3.830486259198411236e-01,0.000000000000000000e+00 +7.393468345518895424e-01,-4.431184387893784271e-02,0.000000000000000000e+00 +9.466744048896639230e-01,-2.625010391609032823e-01,0.000000000000000000e+00 +3.288833767430258681e-01,-3.487658860848344977e-01,0.000000000000000000e+00 +6.015114092848007354e-01,-3.782129438858518600e-01,0.000000000000000000e+00 +5.093240929167620612e-01,-1.964601968007389787e-01,0.000000000000000000e+00 +5.330980607454434139e-01,-3.752890035873041596e-01,0.000000000000000000e+00 +7.926522017263936126e-01,-1.264363058636222836e-01,0.000000000000000000e+00 +7.060759434115161381e-01,-3.751166895984072713e-01,0.000000000000000000e+00 +6.540258508002417814e-01,-2.072068840346183716e-01,0.000000000000000000e+00 +5.831597800220046368e-01,-2.046077839877559756e-01,0.000000000000000000e+00 +1.743407440643665873e-01,-4.146660163934756116e-01,0.000000000000000000e+00 +4.115203829661017720e-01,-1.826282952764902434e-01,0.000000000000000000e+00 +2.057592798911213050e-01,-4.077914462559534270e-01,0.000000000000000000e+00 +2.656363147905086916e-02,-3.925148478062666091e-01,0.000000000000000000e+00 +8.008111271212755566e-01,-9.883009038129900170e-02,0.000000000000000000e+00 +7.585258701429504757e-01,-5.662006622269993156e-02,0.000000000000000000e+00 +8.760154569655050905e-01,-3.560240314584461330e-01,0.000000000000000000e+00 +7.216343867576107129e-01,-3.302954689163566104e-02,0.000000000000000000e+00 +9.295387254263338672e-01,-3.247837469439823765e-01,0.000000000000000000e+00 +9.350323375556346406e-01,-3.439041159511139756e-01,0.000000000000000000e+00 +4.317565277429379900e-01,-3.604071344765167328e-01,0.000000000000000000e+00 +4.641128006102408499e-01,-2.236968405307501739e-01,0.000000000000000000e+00 +5.983838976391873121e-01,-3.437804590397174342e-01,0.000000000000000000e+00 +6.681266112539991919e-01,-3.424213266016949420e-01,0.000000000000000000e+00 +8.436560470091886144e-01,-3.290149535419582549e-01,0.000000000000000000e+00 +6.198873994817153399e-01,-2.405542920193709244e-01,0.000000000000000000e+00 +4.656980743580376170e-01,-3.317721297520744850e-01,0.000000000000000000e+00 +3.279003375265204800e-01,-3.137782109038944056e-01,0.000000000000000000e+00 +8.827770113077915148e-01,-2.000226176857840543e-01,0.000000000000000000e+00 +2.039343723539704945e-01,-3.057124403350255926e-01,0.000000000000000000e+00 +9.254499782470604341e-01,-2.356680606675141398e-01,0.000000000000000000e+00 +9.077342887658437220e-01,-3.233813565463941053e-01,0.000000000000000000e+00 +1.467040807912486644e-01,-3.453392628622513616e-01,0.000000000000000000e+00 +8.607161043726522243e-01,-1.600494769153949504e-01,0.000000000000000000e+00 +2.781004831365359586e-01,-2.324976146933141752e-01,0.000000000000000000e+00 +8.113468306363643689e-01,-1.582808137192439901e-01,0.000000000000000000e+00 +2.601447198689392781e-01,-3.525378442468009021e-01,0.000000000000000000e+00 +5.645516606181359975e-01,-3.430862481734711644e-01,0.000000000000000000e+00 +5.457692968961150859e-01,-2.019967820454419971e-01,0.000000000000000000e+00 +6.359521455294343539e-01,-3.780443307041958523e-01,0.000000000000000000e+00 +6.888234646787974036e-01,-2.084978924130858058e-01,0.000000000000000000e+00 +7.410215789622998095e-01,-3.725194685262837591e-01,0.000000000000000000e+00 +8.099420680125494210e-01,-3.659471274110429051e-01,0.000000000000000000e+00 +4.993771430599935335e-01,-3.717626345754508344e-01,0.000000000000000000e+00 +2.176387779039584136e-01,-2.611369641272491826e-01,0.000000000000000000e+00 +3.640036540461653036e-01,-3.505996112097617412e-01,0.000000000000000000e+00 +4.442018667056373826e-01,-1.852510149041703691e-01,0.000000000000000000e+00 +9.155813556222368588e-01,-2.887418191565107595e-01,0.000000000000000000e+00 +4.324569577738464066e-01,-3.256323961532492373e-01,0.000000000000000000e+00 +7.825462338788119476e-01,-2.166948841858531705e-01,0.000000000000000000e+00 +3.790345614922238093e-01,-1.813112421452115486e-01,0.000000000000000000e+00 +9.456773315296251869e-01,-2.073331584709635356e-01,0.000000000000000000e+00 +7.892002162136163568e-01,-6.886183026082352832e-02,0.000000000000000000e+00 +2.004710511897020431e-01,-3.744916102261892643e-01,0.000000000000000000e+00 +7.534115590794748796e-01,-2.101592503652945643e-01,0.000000000000000000e+00 +3.369519479300930875e-01,-1.949183226440833749e-01,0.000000000000000000e+00 +7.587594822924402516e-02,-3.702278430743505822e-01,0.000000000000000000e+00 +7.401581205553239284e-01,-3.371035251877894101e-01,0.000000000000000000e+00 +4.091498717411049535e-01,-2.076897346199615413e-01,0.000000000000000000e+00 +7.277140984455687800e-01,-2.455241774991213100e-01,0.000000000000000000e+00 +3.633674399753273887e-01,-3.159066252379092443e-01,0.000000000000000000e+00 +8.137653107357641913e-01,-1.959470678542961364e-01,0.000000000000000000e+00 +6.551174625480457037e-01,-2.410907846156699619e-01,0.000000000000000000e+00 +5.937656550879697459e-01,-3.099504803452091117e-01,0.000000000000000000e+00 +4.709477294588926277e-01,-2.975964490348347868e-01,0.000000000000000000e+00 +8.102301179943416365e-01,-3.327597020161534025e-01,0.000000000000000000e+00 +4.992314228850241453e-01,-3.370328086573093351e-01,0.000000000000000000e+00 +2.640290203934514413e-01,-2.759265113268629666e-01,0.000000000000000000e+00 +3.235075958783928396e-01,-2.459929335834832864e-01,0.000000000000000000e+00 +4.334070588731500639e-01,-2.162354356505730713e-01,0.000000000000000000e+00 +2.876803676942238375e-01,-3.078191707397314181e-01,0.000000000000000000e+00 +9.005159358472522024e-01,-2.537688625083081573e-01,0.000000000000000000e+00 +1.904801774034833306e-01,-3.472920895344513426e-01,0.000000000000000000e+00 +8.638996816213434515e-01,-1.899146219765980026e-01,0.000000000000000000e+00 +6.327651343241001980e-01,-3.434673777038448894e-01,0.000000000000000000e+00 +4.969368652648180618e-01,-2.312259357116186187e-01,0.000000000000000000e+00 +5.317987480425681035e-01,-3.409229943786196704e-01,0.000000000000000000e+00 +7.035421939117628698e-01,-3.398430085158586356e-01,0.000000000000000000e+00 +5.831468198103439970e-01,-2.408273344250011494e-01,0.000000000000000000e+00 +2.340748110565891993e-01,-2.911884594427929240e-01,0.000000000000000000e+00 +3.985650422362517209e-01,-3.198237927087647092e-01,0.000000000000000000e+00 +9.050269425175504479e-01,-2.145949116599452089e-01,0.000000000000000000e+00 +8.311890324300471589e-01,-1.806408897137210257e-01,0.000000000000000000e+00 +1.715688973733653921e-01,-3.578368212178256735e-01,0.000000000000000000e+00 +8.763484254971813936e-01,-3.250757251002138748e-01,0.000000000000000000e+00 +3.718093401425505151e-01,-2.259035495937066207e-01,0.000000000000000000e+00 +7.518307260217335086e-01,-2.325564299919126443e-01,0.000000000000000000e+00 +8.083824412264911663e-01,-3.002254016301318940e-01,0.000000000000000000e+00 +8.461042211687203052e-01,-2.039054491891870990e-01,0.000000000000000000e+00 +5.313831912811556313e-01,-3.092424345596003210e-01,0.000000000000000000e+00 +6.631139276498668744e-01,-3.082258879592723599e-01,0.000000000000000000e+00 +4.153189432870566522e-01,-2.470658966921946142e-01,0.000000000000000000e+00 +7.563546959000380099e-01,-2.669663498354982178e-01,0.000000000000000000e+00 +4.494414874443880548e-01,-2.565423268198447349e-01,0.000000000000000000e+00 +6.281052776643845093e-01,-3.092160227754364166e-01,0.000000000000000000e+00 +4.825789161961286933e-01,-2.646736203910355356e-01,0.000000000000000000e+00 +6.981317788803473867e-01,-3.055287853290714617e-01,0.000000000000000000e+00 +3.292674680733390091e-01,-2.792520780901429633e-01,0.000000000000000000e+00 +5.612977848997102726e-01,-3.106442737990984804e-01,0.000000000000000000e+00 +6.897146529399529324e-01,-2.418617179641145420e-01,0.000000000000000000e+00 +6.233654127794022726e-01,-2.750703795457774548e-01,0.000000000000000000e+00 +2.179717040970744202e-01,-3.344957423870991153e-01,0.000000000000000000e+00 +4.035459709719586008e-01,-2.829741238390200420e-01,0.000000000000000000e+00 +5.382752331757686415e-01,-2.450040750003640300e-01,0.000000000000000000e+00 +7.756656322162326367e-01,-3.350725199775784202e-01,0.000000000000000000e+00 +8.411427234346373627e-01,-2.968167345515643207e-01,0.000000000000000000e+00 +3.663930218449581999e-01,-2.779438394081222841e-01,0.000000000000000000e+00 +5.026110375549056597e-01,-3.045116874870671952e-01,0.000000000000000000e+00 +2.924611505996065342e-01,-2.602494197046547608e-01,0.000000000000000000e+00 +4.389477782121096183e-01,-2.907361423365004138e-01,0.000000000000000000e+00 +8.177971330044153664e-01,-2.233506155986926534e-01,0.000000000000000000e+00 +2.491181498581919729e-01,-3.220434664254004375e-01,0.000000000000000000e+00 +8.916457693479485913e-01,-2.328956924082251634e-01,0.000000000000000000e+00 +8.750354293149434914e-01,-2.932504906952229096e-01,0.000000000000000000e+00 +7.716005242875368930e-01,-2.434186492223284481e-01,0.000000000000000000e+00 +3.036217032007398342e-01,-2.812920086854000523e-01,0.000000000000000000e+00 +8.394858339922408597e-01,-2.647917988942800616e-01,0.000000000000000000e+00 +7.757734680203751676e-01,-3.020582189462165945e-01,0.000000000000000000e+00 +5.324998116329323627e-01,-2.866891010875259327e-01,0.000000000000000000e+00 +5.879106965496425641e-01,-2.761840382377800940e-01,0.000000000000000000e+00 +7.369605980068132389e-01,-2.962720269264106920e-01,0.000000000000000000e+00 +6.584307667128174169e-01,-2.745540152091699437e-01,0.000000000000000000e+00 +8.661516740418836457e-01,-2.285633038738494327e-01,0.000000000000000000e+00 +6.924252993167899772e-01,-2.734514274306238391e-01,0.000000000000000000e+00 +7.175758193902993520e-01,-2.718212401854461779e-01,0.000000000000000000e+00 +8.016517622698151602e-01,-2.631866533391820639e-01,0.000000000000000000e+00 +7.762493443856517406e-01,-2.784232080218305150e-01,0.000000000000000000e+00 +8.709237179968939424e-01,-2.619230280452982673e-01,0.000000000000000000e+00 +8.406051037809521009e-01,-2.404472333486424585e-01,0.000000000000000000e+00 +5.131852132949249468e-01,-2.758861038334453064e-01,0.000000000000000000e+00 +5.539276823173245878e-01,-2.790767273973124851e-01,0.000000000000000000e+00 +1.468023559165945180e-01,-3.624427196111534299e-01,0.000000000000000000e+00 +1.125023961478529982e-01,-3.761474762090578072e-01,0.000000000000000000e+00 +1.273557477858053566e-01,-3.512881694153303092e-01,0.000000000000000000e+00 +7.920779546234331114e-01,-3.011418102881742165e-01,0.000000000000000000e+00 +7.760114062030134541e-01,-2.902407134840235825e-01,0.000000000000000000e+00 +7.889505533277334504e-01,-2.708049306805062617e-01,0.000000000000000000e+00 +8.050171017481531077e-01,-2.817060274846570067e-01,0.000000000000000000e+00 +8.857198269220730724e-01,-2.578459452768032123e-01,0.000000000000000000e+00 +8.685302801374925608e-01,-2.455138840986215987e-01,0.000000000000000000e+00 +8.784610942737527406e-01,-2.307458788923671400e-01,0.000000000000000000e+00 +8.960808525976003969e-01,-2.433322774582666603e-01,0.000000000000000000e+00 +9.096879783816682608e-01,-1.784234849062863726e-01,0.000000000000000000e+00 +9.139944868575873294e-01,-2.003412593559289467e-01,0.000000000000000000e+00 +8.937465840937783845e-01,-2.071122564462192506e-01,0.000000000000000000e+00 +8.896483904102742146e-01,-1.849806380369716508e-01,0.000000000000000000e+00 +1.954756142965926868e-01,-3.608918498803203034e-01,0.000000000000000000e+00 +2.042259407502788893e-01,-3.408939159607752289e-01,0.000000000000000000e+00 +2.237705601302620306e-01,-3.487706977829860833e-01,0.000000000000000000e+00 +2.150202336765758560e-01,-3.687686317025311578e-01,0.000000000000000000e+00 +9.311278802559503909e-01,-2.756214291587070209e-01,0.000000000000000000e+00 +9.080486457347445306e-01,-2.712553408324094306e-01,0.000000000000000000e+00 +9.129829570471563738e-01,-2.447184615879111624e-01,0.000000000000000000e+00 +9.360621915683622341e-01,-2.490845499142086972e-01,0.000000000000000000e+00 +7.819345545127168728e-01,-9.391119476686214662e-02,0.000000000000000000e+00 +7.970876313363286503e-01,-1.119816009423276193e-01,0.000000000000000000e+00 +7.824443439414319190e-01,-1.239028584202923194e-01,0.000000000000000000e+00 +7.665195650474203592e-01,-1.061859055982437156e-01,0.000000000000000000e+00 +9.799454222428665151e-01,-2.500792584965004228e-01,0.000000000000000000e+00 +9.610881449342085769e-01,-2.785477779572944068e-01,0.000000000000000000e+00 +9.570766588310249956e-01,-2.485641865839408604e-01,0.000000000000000000e+00 +5.432137469751284753e-01,-2.828829142424191812e-01,0.000000000000000000e+00 +5.228425124639286548e-01,-2.812876024604856195e-01,0.000000000000000000e+00 +5.257302232353467941e-01,-2.604450894169046959e-01,0.000000000000000000e+00 +5.461014577465466147e-01,-2.620404011988382575e-01,0.000000000000000000e+00 +8.047328738654399571e-02,-3.891650109623137621e-01,0.000000000000000000e+00 +4.991604371313038829e-02,-4.017215442488357158e-01,0.000000000000000000e+00 +6.138837657154833788e-02,-3.766459543947687227e-01,0.000000000000000000e+00 +7.308368628128002475e-01,-3.883582465766893810e-02,0.000000000000000000e+00 +7.210242238211024279e-01,-1.681047599137803703e-02,0.000000000000000000e+00 +7.462475740307932259e-01,-2.766621425314843771e-02,0.000000000000000000e+00 +9.205623813584537518e-02,-3.636835381832962955e-01,0.000000000000000000e+00 +7.041925320949539435e-02,-3.513992252526310089e-01,0.000000000000000000e+00 +1.023618785908189943e-01,-3.382774451443841812e-01,0.000000000000000000e+00 +3.077903526103721310e-01,-3.107986908218128841e-01,0.000000000000000000e+00 +3.283918571347731463e-01,-3.312720484943644239e-01,0.000000000000000000e+00 +3.111520437629391456e-01,-3.484885537177795367e-01,0.000000000000000000e+00 +2.905505392385381302e-01,-3.280151960452279969e-01,0.000000000000000000e+00 +2.629285047255309760e-01,-2.396235519779488787e-01,0.000000000000000000e+00 +2.852808168680712742e-01,-2.463735171989844819e-01,0.000000000000000000e+00 +2.782450854965289877e-01,-2.680879655157588637e-01,0.000000000000000000e+00 +2.558927733539887450e-01,-2.613380002947232605e-01,0.000000000000000000e+00 +3.691011809937543298e-01,-2.519236945009144524e-01,0.000000000000000000e+00 +3.478302449591486045e-01,-2.785979587491326237e-01,0.000000000000000000e+00 +3.263875319758658966e-01,-2.626225058368131249e-01,0.000000000000000000e+00 +3.476584680104716774e-01,-2.359482415885949536e-01,0.000000000000000000e+00 +3.160375139971029479e-01,-2.307130682412673606e-01,0.000000000000000000e+00 +3.227596900229530719e-01,-2.051757627715674048e-01,0.000000000000000000e+00 +3.543806440363218013e-01,-2.104109361188949978e-01,0.000000000000000000e+00 +4.867793835068991437e-01,-3.010540682609509910e-01,0.000000000000000000e+00 +5.009212302199649303e-01,-3.207722480721882929e-01,0.000000000000000000e+00 +4.824647486215308811e-01,-3.344024692046919101e-01,0.000000000000000000e+00 +4.683229019084651501e-01,-3.146842893934546082e-01,0.000000000000000000e+00 +5.775317199938400092e-01,-3.102973770721537683e-01,0.000000000000000000e+00 +5.576127336085174857e-01,-2.948605005982054550e-01,0.000000000000000000e+00 +5.709191894334835204e-01,-2.776303828175462618e-01,0.000000000000000000e+00 +5.908381758188061550e-01,-2.930672592914945751e-01,0.000000000000000000e+00 +2.767827153258958783e-01,-3.503745327987627389e-01,0.000000000000000000e+00 +2.546314348635656533e-01,-3.372906553361006976e-01,0.000000000000000000e+00 +2.683992587762079052e-01,-3.149313185825659556e-01,0.000000000000000000e+00 +3.456338887509239344e-01,-3.148424180709018527e-01,0.000000000000000000e+00 +3.636855470107463462e-01,-3.332531182238355205e-01,0.000000000000000000e+00 +3.464435153945956136e-01,-3.496827486472980917e-01,0.000000000000000000e+00 +7.419108544963660679e-01,-8.412293880589664929e-02,0.000000000000000000e+00 +7.295637376022526821e-01,-6.231188439688369052e-02,0.000000000000000000e+00 +7.486030622379227228e-01,-5.052098708007202871e-02,0.000000000000000000e+00 +7.605855662575571330e-01,-7.317689126032653202e-02,0.000000000000000000e+00 +1.586268014206525245e-01,-4.138662569934967173e-01,0.000000000000000000e+00 +1.752498490279801036e-01,-4.387956766808360221e-01,0.000000000000000000e+00 +6.056380546645223628e-01,-2.756272088917787744e-01,0.000000000000000000e+00 +6.257353452218934464e-01,-2.921432011606069357e-01,0.000000000000000000e+00 +6.109354663761771276e-01,-3.095832515603227364e-01,0.000000000000000000e+00 +8.736311171023899425e-01,-1.950166580102943858e-01,0.000000000000000000e+00 +8.623332814236427390e-01,-1.744738234572018598e-01,0.000000000000000000e+00 +8.785905567759036972e-01,-1.653554367762319066e-01,0.000000000000000000e+00 +7.563670330135942033e-01,-2.991651229363136433e-01,0.000000000000000000e+00 +7.466576469534256244e-01,-2.816191883809544549e-01,0.000000000000000000e+00 +7.663020201428448752e-01,-2.726947789286643387e-01,0.000000000000000000e+00 +8.158426083489235259e-01,-2.100883292738182639e-01,0.000000000000000000e+00 +8.002622722213382778e-01,-2.201259454715848718e-01,0.000000000000000000e+00 +7.874449027577800075e-01,-2.024793599041152525e-01,0.000000000000000000e+00 +8.027722743323427723e-01,-1.917910721632492266e-01,0.000000000000000000e+00 +6.343586399267673315e-01,-3.607558542040203431e-01,0.000000000000000000e+00 +6.187317774071174892e-01,-3.781286372950238839e-01,0.000000000000000000e+00 +5.999476534619940793e-01,-3.609967014627846194e-01,0.000000000000000000e+00 +6.155745159816436995e-01,-3.436239183717811896e-01,0.000000000000000000e+00 +2.058309083765419989e-01,-4.275370192470803743e-01,0.000000000000000000e+00 +1.897687506980186289e-01,-4.111550765131272711e-01,0.000000000000000000e+00 +2.258567944802737926e-01,-2.761627117850210533e-01,0.000000000000000000e+00 +2.190045917052798607e-01,-2.984504498889092305e-01,0.000000000000000000e+00 +1.958233175363941481e-01,-2.912898211435820395e-01,0.000000000000000000e+00 +2.026755203113880799e-01,-2.690020830396938623e-01,0.000000000000000000e+00 +2.085781195975879299e-01,-2.444251098146697221e-01,0.000000000000000000e+00 +9.035467464629255430e-01,-1.533970927163005871e-01,0.000000000000000000e+00 +9.327828756873395299e-01,-1.672924600585916910e-01,0.000000000000000000e+00 +3.308952560798141818e-01,-3.668968735618568511e-01,0.000000000000000000e+00 +2.961505764390796047e-01,-3.650879895197660652e-01,0.000000000000000000e+00 +6.456096026571256363e-01,-3.087209553673543883e-01,0.000000000000000000e+00 +6.656202694519330887e-01,-3.253236072804836509e-01,0.000000000000000000e+00 +6.504458727890496395e-01,-3.429443521527699157e-01,0.000000000000000000e+00 +6.304352059942424091e-01,-3.263417002396406530e-01,0.000000000000000000e+00 +8.953083924685901751e-01,-2.909961549258668345e-01,0.000000000000000000e+00 +8.729795736559187169e-01,-2.775867593702605607e-01,0.000000000000000000e+00 +2.335449269776331827e-01,-3.282696044062497487e-01,0.000000000000000000e+00 +2.448570680161944457e-01,-3.577917487128370322e-01,0.000000000000000000e+00 +4.897578907304733775e-01,-2.479497780513270633e-01,0.000000000000000000e+00 +4.660102018202583740e-01,-2.606079736054401352e-01,0.000000000000000000e+00 +4.567771440273144523e-01,-2.401195836752974544e-01,0.000000000000000000e+00 +4.805248329375294558e-01,-2.274613881211843824e-01,0.000000000000000000e+00 +6.408980897461098447e-01,-2.748121973774736992e-01,0.000000000000000000e+00 +6.607723471813421456e-01,-2.913899515842211518e-01,0.000000000000000000e+00 +5.155150854637960967e-01,-3.389779015179644750e-01,0.000000000000000000e+00 +5.169971144180306455e-01,-3.068770610233337859e-01,0.000000000000000000e+00 +5.315909696618619229e-01,-3.250827144691099679e-01,0.000000000000000000e+00 +5.814677791286616548e-01,-3.434333536065943271e-01,0.000000000000000000e+00 +5.843469750458019085e-01,-3.777924915733632538e-01,0.000000000000000000e+00 +5.658671007124694841e-01,-3.602291437171729616e-01,0.000000000000000000e+00 +4.823202249491036486e-01,-3.692632189986936320e-01,0.000000000000000000e+00 +5.001870590832012686e-01,-3.898520299514138809e-01,0.000000000000000000e+00 +4.662111573047739710e-01,-3.847946367730982198e-01,0.000000000000000000e+00 +5.176060492202934071e-01,-2.381150053559913382e-01,0.000000000000000000e+00 +5.031304790907900060e-01,-2.138430662561787987e-01,0.000000000000000000e+00 +5.275466949064385735e-01,-1.992284894230904879e-01,0.000000000000000000e+00 +5.420222650359418637e-01,-2.235004285229030274e-01,0.000000000000000000e+00 +6.545716566741437425e-01,-2.241488343251441528e-01,0.000000000000000000e+00 +6.714246577395195370e-01,-2.078523882238521026e-01,0.000000000000000000e+00 +6.892690588093751680e-01,-2.251798051886001739e-01,0.000000000000000000e+00 +6.724160577439992625e-01,-2.414762512898922520e-01,0.000000000000000000e+00 +3.648802309101427666e-01,-2.969252323230157642e-01,0.000000000000000000e+00 +3.285839027999297723e-01,-2.965151444970186567e-01,0.000000000000000000e+00 +6.910699761283713993e-01,-2.576565726973691905e-01,0.000000000000000000e+00 +6.754280330148036970e-01,-2.740027213198968914e-01,0.000000000000000000e+00 +6.567741146304315603e-01,-2.578223999124199528e-01,0.000000000000000000e+00 +8.983363559327495196e-01,-2.237453020340851861e-01,0.000000000000000000e+00 +8.743181761617478953e-01,-2.143613502645675684e-01,0.000000000000000000e+00 +8.460013488519606550e-01,-1.701611095348210256e-01,0.000000000000000000e+00 +8.212421262010590750e-01,-1.688566717902652281e-01,0.000000000000000000e+00 +8.221168813807825382e-01,-1.433740934110402931e-01,0.000000000000000000e+00 +8.464852097732979974e-01,-1.448463212967529834e-01,0.000000000000000000e+00 +8.022014661181811057e-01,-1.726512283069737419e-01,0.000000000000000000e+00 +7.748076304665921787e-01,-1.817065845303820204e-01,0.000000000000000000e+00 +7.942783969764074525e-01,-1.527309263744909551e-01,0.000000000000000000e+00 +2.109530382255224712e-01,-3.201040913610623262e-01,0.000000000000000000e+00 +2.415964804573905722e-01,-3.066159629340966530e-01,0.000000000000000000e+00 +8.100860930034454732e-01,-3.493534147135981538e-01,0.000000000000000000e+00 +7.929719302314746088e-01,-3.677609647038171392e-01,0.000000000000000000e+00 +7.758337123333161056e-01,-3.523236609870848968e-01,0.000000000000000000e+00 +7.929478751052871921e-01,-3.339161109968659114e-01,0.000000000000000000e+00 +1.737749091562922066e-01,-3.977249717386280858e-01,0.000000000000000000e+00 +1.869279778972426087e-01,-3.773252421553953684e-01,0.000000000000000000e+00 +2.029303480353834566e-01,-3.913253354545212503e-01,0.000000000000000000e+00 +4.993042829725088394e-01,-3.543977216163800570e-01,0.000000000000000000e+00 +4.654806905981256904e-01,-3.492679665870054295e-01,0.000000000000000000e+00 +6.806228532651070751e-01,-3.068773366441719386e-01,0.000000000000000000e+00 +6.952785390985687375e-01,-2.894901063798476226e-01,0.000000000000000000e+00 +1.905782539402332831e-02,-3.827133898269424739e-01,0.000000000000000000e+00 +2.259638816690892615e-02,-4.095436405188233597e-01,0.000000000000000000e+00 +2.490519157250203341e-01,-2.835574853848279453e-01,0.000000000000000000e+00 +2.758546940438376671e-01,-2.918728410332971923e-01,0.000000000000000000e+00 +8.436879505053900274e-01,-3.451932357155697018e-01,0.000000000000000000e+00 +8.268309610070705418e-01,-3.636593226501120268e-01,0.000000000000000000e+00 +8.269430825017651809e-01,-3.308873277790558287e-01,0.000000000000000000e+00 +2.398512618475773239e-01,-2.318158527710423300e-01,0.000000000000000000e+00 +2.326976521092422034e-01,-2.539432266949163686e-01,0.000000000000000000e+00 +9.384390203162258359e-01,-3.585174844482976741e-01,0.000000000000000000e+00 +9.500540652480197190e-01,-3.375205295563170060e-01,0.000000000000000000e+00 +8.165614726731474926e-01,-1.142934481643683026e-01,0.000000000000000000e+00 +8.032910270391265817e-01,-1.403434776334698819e-01,0.000000000000000000e+00 +5.463404880904330074e-01,-3.099433541793493729e-01,0.000000000000000000e+00 +5.629247227589231350e-01,-3.268652609862848224e-01,0.000000000000000000e+00 +5.481752043303520505e-01,-3.420046212760454174e-01,0.000000000000000000e+00 +7.405898497588119245e-01,-3.548114968570366123e-01,0.000000000000000000e+00 +7.235487611869080293e-01,-3.738180790623455430e-01,0.000000000000000000e+00 +7.048090686616395040e-01,-3.574798490571329257e-01,0.000000000000000000e+00 +7.218501572335433991e-01,-3.384732668518239951e-01,0.000000000000000000e+00 +6.715330305880582440e-01,-3.946293702381635238e-01,0.000000000000000000e+00 +6.368414232085974902e-01,-3.956304763150370052e-01,0.000000000000000000e+00 +6.535371199312703938e-01,-3.775610110541463005e-01,0.000000000000000000e+00 +6.025065383588624757e-01,-3.957662207430591161e-01,0.000000000000000000e+00 +5.682313151819931019e-01,-3.949828699257625919e-01,0.000000000000000000e+00 +8.153691960720953480e-01,-8.875651982602629497e-02,0.000000000000000000e+00 +8.415900415099873966e-01,-1.175998134031613213e-01,0.000000000000000000e+00 +7.757195501183038466e-01,-3.185653694618975074e-01,0.000000000000000000e+00 +7.579118763857782826e-01,-3.360880225826838874e-01,0.000000000000000000e+00 +7.385593592810686392e-01,-3.166877760571000788e-01,0.000000000000000000e+00 +4.699885681917669311e-01,-2.070221848594316905e-01,0.000000000000000000e+00 +4.925942143450275923e-01,-1.934038629944261067e-01,0.000000000000000000e+00 +9.073444056320039142e-01,-3.636291867822383228e-01,0.000000000000000000e+00 +9.209193113705057554e-01,-3.472568798747899810e-01,0.000000000000000000e+00 +7.553171020199237473e-01,-1.925510086363554363e-01,0.000000000000000000e+00 +7.376303151713113904e-01,-2.094828421247497130e-01,0.000000000000000000e+00 +7.226985714227296409e-01,-1.919623547558616805e-01,0.000000000000000000e+00 +1.898656982309564756e-01,-3.135152302950874326e-01,0.000000000000000000e+00 +1.678935488919677532e-01,-3.075470133923958738e-01,0.000000000000000000e+00 +7.695565362457834624e-01,-4.372341048322056500e-02,0.000000000000000000e+00 +7.008369863960550727e-01,-3.226858969224650764e-01,0.000000000000000000e+00 +7.175461884435803128e-01,-3.009004061277410491e-01,0.000000000000000000e+00 +8.552047759945673455e-01,-2.633574134697891367e-01,0.000000000000000000e+00 +8.399381298790503658e-01,-2.528896774556763094e-01,0.000000000000000000e+00 +8.535082464967020943e-01,-2.345383239374808637e-01,0.000000000000000000e+00 +8.693333323582407290e-01,-1.432577108264249943e-01,0.000000000000000000e+00 +5.607110264930563748e-01,-2.429157047126825897e-01,0.000000000000000000e+00 +5.644645384590598614e-01,-2.033022830165989725e-01,0.000000000000000000e+00 +5.831532999161743724e-01,-2.227175592063785625e-01,0.000000000000000000e+00 +4.474216553314346312e-01,-1.682930545303151504e-01,0.000000000000000000e+00 +4.801917640726185987e-01,-1.732765937834695458e-01,0.000000000000000000e+00 +4.600331012394652253e-01,-1.877992720461418019e-01,0.000000000000000000e+00 +3.806627018321930844e-01,-1.651187461960335612e-01,0.000000000000000000e+00 +4.140159054954016815e-01,-1.657332453555686036e-01,0.000000000000000000e+00 +3.952774722291627629e-01,-1.819697687108509099e-01,0.000000000000000000e+00 +2.715476701159914019e-01,-2.202403663326927274e-01,0.000000000000000000e+00 +5.324484043940057587e-01,-3.581059989829619150e-01,0.000000000000000000e+00 +5.162376019027185015e-01,-3.735258190813774970e-01,0.000000000000000000e+00 +2.242275169848083338e-01,-4.004096418146327885e-01,0.000000000000000000e+00 +2.368159314499839185e-01,-3.781011722276121367e-01,0.000000000000000000e+00 +8.756919274060623870e-01,-3.091631078977183922e-01,0.000000000000000000e+00 +8.600022362531849485e-01,-3.270453393210860371e-01,0.000000000000000000e+00 +8.423993852219129330e-01,-3.129158440467613156e-01,0.000000000000000000e+00 +8.580890763747903716e-01,-2.950336126233936151e-01,0.000000000000000000e+00 +5.960747763635785290e-01,-3.268654696924632730e-01,0.000000000000000000e+00 +7.867708379538885799e-01,-2.533002284964795958e-01,0.000000000000000000e+00 +7.771972569043736900e-01,-2.298723991644293363e-01,0.000000000000000000e+00 +8.096948270358814703e-01,-2.434615257509087083e-01,0.000000000000000000e+00 +9.303605783445180188e-01,-2.992854562743882951e-01,0.000000000000000000e+00 +8.758320116592672733e-01,-3.720324629002030870e-01,0.000000000000000000e+00 +8.429334524898888237e-01,-3.781990608087466565e-01,0.000000000000000000e+00 +8.598676554835482655e-01,-3.586977746738135853e-01,0.000000000000000000e+00 +9.343196813636247544e-01,-1.967103827614381240e-01,0.000000000000000000e+00 +9.561822230639516196e-01,-1.898706726615593254e-01,0.000000000000000000e+00 +6.365714435533404991e-01,-2.065174355499904135e-01,0.000000000000000000e+00 +6.197813193269163801e-01,-1.885163606165099759e-01,0.000000000000000000e+00 +6.543172156586647414e-01,-1.902768074884881866e-01,0.000000000000000000e+00 +8.247625823305642090e-01,-2.985210680908481073e-01,0.000000000000000000e+00 +8.205687981310280099e-01,-2.639892261167310350e-01,0.000000000000000000e+00 +8.403142787134391112e-01,-2.808042667229221911e-01,0.000000000000000000e+00 +7.974782791199278575e-01,-6.166075461342850755e-02,0.000000000000000000e+00 +7.734839850389048088e-01,-6.263901078285545598e-02,0.000000000000000000e+00 +1.595612007492772377e-01,-3.800688382376276042e-01,0.000000000000000000e+00 +8.093062796104164569e-01,-3.164925518231426205e-01,0.000000000000000000e+00 +6.375024310148804663e-01,-2.408225383175204293e-01,0.000000000000000000e+00 +6.195022178940772228e-01,-2.231911395423666900e-01,0.000000000000000000e+00 +7.951322803074672985e-01,-8.412127450341660984e-02,0.000000000000000000e+00 +7.050005593535446646e-01,-2.726363338080349807e-01,0.000000000000000000e+00 +7.272682086985562400e-01,-2.840466335559284072e-01,0.000000000000000000e+00 +8.091164628422742311e-01,-3.830008883864073899e-01,0.000000000000000000e+00 +7.585116857063497475e-01,-3.710471352614375662e-01,0.000000000000000000e+00 +7.751490514420382727e-01,-3.868167533400628244e-01,0.000000000000000000e+00 +7.406277690873046549e-01,-3.899790176065793812e-01,0.000000000000000000e+00 +6.216264061305587507e-01,-2.578123357825741757e-01,0.000000000000000000e+00 +7.680607474795153600e-01,-2.134400231816968030e-01,0.000000000000000000e+00 +1.376083972447482151e-01,-3.262622825097588053e-01,0.000000000000000000e+00 +3.655032116743883175e-01,-3.663700068482823036e-01,0.000000000000000000e+00 +4.012877865576940789e-02,-3.649596938250130318e-01,0.000000000000000000e+00 +7.087143756927608562e-01,-2.436929477316179260e-01,0.000000000000000000e+00 +7.226449589179340105e-01,-2.586727088422837717e-01,0.000000000000000000e+00 +6.696243527935528128e-01,-3.597495090028958176e-01,0.000000000000000000e+00 +6.858344025828810864e-01,-3.411321675587767888e-01,0.000000000000000000e+00 +6.885990188723112304e-01,-3.760971905012520100e-01,0.000000000000000000e+00 +7.060954501862231059e-01,-3.926523174435914698e-01,0.000000000000000000e+00 +7.250417467566404595e-01,-2.271167239478096289e-01,0.000000000000000000e+00 +7.056293486787567071e-01,-2.086560995605006019e-01,0.000000000000000000e+00 +6.888176507114487368e-01,-1.916097746018471659e-01,0.000000000000000000e+00 +4.243630010801033858e-01,-2.316506661713838566e-01,0.000000000000000000e+00 +4.487599297416954292e-01,-2.199661380906616226e-01,0.000000000000000000e+00 +4.323802153657223535e-01,-2.518041117560196884e-01,0.000000000000000000e+00 +4.278611248358695773e-01,-1.839396550903303063e-01,0.000000000000000000e+00 +4.388044627893937233e-01,-2.007432252773717063e-01,0.000000000000000000e+00 +5.501403007761231923e-01,-3.763305214240894037e-01,0.000000000000000000e+00 +5.855287581799932806e-01,-2.585056863313905939e-01,0.000000000000000000e+00 +6.015171096460296685e-01,-2.406908132221860508e-01,0.000000000000000000e+00 +5.137916303792038342e-01,-1.792186471738514697e-01,0.000000000000000000e+00 +5.847107300725845613e-01,-1.870205660326832164e-01,0.000000000000000000e+00 +6.011384081642219268e-01,-2.052178855265592017e-01,0.000000000000000000e+00 +5.489512857073068908e-01,-1.844347119264378443e-01,0.000000000000000000e+00 +5.340944310325137501e-01,-3.931198196581763837e-01,0.000000000000000000e+00 +3.517894578027097596e-01,-1.656265455081622484e-01,0.000000000000000000e+00 +3.670909794164069484e-01,-1.795497539709353663e-01,0.000000000000000000e+00 +4.978820647455268200e-01,-2.702798621122404210e-01,0.000000000000000000e+00 +9.072702869756102961e-01,-3.369955001724300736e-01,0.000000000000000000e+00 +8.914108710754409248e-01,-3.533168376284560597e-01,0.000000000000000000e+00 +8.761819412313431865e-01,-3.405498782793300316e-01,0.000000000000000000e+00 +8.920413571315125578e-01,-3.242285408233039901e-01,0.000000000000000000e+00 +9.758359068484689924e-01,-2.182101315549916376e-01,0.000000000000000000e+00 +9.565781221510056831e-01,-2.209802462389709732e-01,0.000000000000000000e+00 +2.933339576261745352e-01,-2.239654087961827911e-01,0.000000000000000000e+00 +3.079843732389996869e-01,-2.531211766440690236e-01,0.000000000000000000e+00 +8.386474302852434670e-01,-1.921591294272714523e-01,0.000000000000000000e+00 +8.549349346706934805e-01,-1.970370157310165626e-01,0.000000000000000000e+00 +3.460496726353415875e-01,-1.863532942203712794e-01,0.000000000000000000e+00 +3.267041004507121871e-01,-1.801865142002800069e-01,0.000000000000000000e+00 +3.809588670729596727e-01,-3.524911479025768513e-01,0.000000000000000000e+00 +3.993955494626582614e-01,-3.700918223001877783e-01,0.000000000000000000e+00 +3.849694964084584003e-01,-2.804589816235711908e-01,0.000000000000000000e+00 +4.010555066041051608e-01,-3.013989582738924033e-01,0.000000000000000000e+00 +3.809662411057895826e-01,-3.178652089733369768e-01,0.000000000000000000e+00 +4.155110000050490360e-01,-3.227280944310069732e-01,0.000000000000000000e+00 +4.212468745920341373e-01,-2.868551330877602279e-01,0.000000000000000000e+00 +4.357023679929780124e-01,-3.081842692448748533e-01,0.000000000000000000e+00 +5.319415014570439970e-01,-2.979657678235630991e-01,0.000000000000000000e+00 +5.078981254249153032e-01,-2.901988956602562508e-01,0.000000000000000000e+00 +3.732789525903735389e-02,-3.876393774512137402e-01,0.000000000000000000e+00 +1.831386007557128937e-01,-3.343050548948003353e-01,0.000000000000000000e+00 +9.355636548883428105e-01,-2.215006095692388377e-01,0.000000000000000000e+00 +7.420343971728033949e-01,-2.562452636673097639e-01,0.000000000000000000e+00 +2.956510354474818358e-01,-2.945555897125657352e-01,0.000000000000000000e+00 +3.164445856370394217e-01,-2.802720433877715078e-01,0.000000000000000000e+00 +4.485099172905758769e-01,-3.635854689492266090e-01,0.000000000000000000e+00 +4.327974428732100920e-01,-3.777183158001505281e-01,0.000000000000000000e+00 +3.982395611680028535e-01,-3.371032386520783075e-01,0.000000000000000000e+00 +4.490775160659420395e-01,-3.287022629526618611e-01,0.000000000000000000e+00 +4.321067427583922260e-01,-3.430197653148829851e-01,0.000000000000000000e+00 +4.148353039213459881e-01,-3.573949095359543193e-01,0.000000000000000000e+00 +3.000577073519493654e-01,-2.019000338150981344e-01,0.000000000000000000e+00 +8.321238603437306480e-01,-2.135547662882752995e-01,0.000000000000000000e+00 +8.225532843953623496e-01,-1.880746122374906404e-01,0.000000000000000000e+00 +1.612505524495955744e-01,-3.333286415587003448e-01,0.000000000000000000e+00 +1.810245373884243614e-01,-3.525644553761385080e-01,0.000000000000000000e+00 +1.591364890823070422e-01,-3.515880420400385176e-01,0.000000000000000000e+00 +4.549477538355011230e-01,-2.941662956856676003e-01,0.000000000000000000e+00 +9.152384603823053855e-01,-2.251314861637296882e-01,0.000000000000000000e+00 +9.116578221940403459e-01,-3.060615878514524324e-01,0.000000000000000000e+00 +7.126780226606137525e-01,-4.130188076223182542e-02,0.000000000000000000e+00 +8.288304436059000802e-01,-2.318402082737144598e-01,0.000000000000000000e+00 +8.562503884178014335e-01,-2.162783537067448358e-01,0.000000000000000000e+00 +2.629360496870821740e-01,-3.630226336607352833e-01,0.000000000000000000e+00 +7.525768800652287149e-01,-2.210607487065353594e-01,0.000000000000000000e+00 +7.393485379144667524e-01,-2.392620997082120782e-01,0.000000000000000000e+00 +3.754219508173871622e-01,-2.036073958694590846e-01,0.000000000000000000e+00 +4.103351273536033350e-01,-1.951590149482259062e-01,0.000000000000000000e+00 +3.904796059418277343e-01,-2.167966421068340810e-01,0.000000000000000000e+00 +9.373392632465664676e-01,-3.173064201681241037e-01,0.000000000000000000e+00 +9.186365070960887946e-01,-3.240825517451882409e-01,0.000000000000000000e+00 +9.322855314909842539e-01,-3.343439314475481483e-01,0.000000000000000000e+00 +7.639980923953825220e-01,-2.551560734427101851e-01,0.000000000000000000e+00 +7.619176546535668670e-01,-2.380437824324098672e-01,0.000000000000000000e+00 +2.980414269001732119e-01,-2.707707141950274066e-01,0.000000000000000000e+00 +1.722697427363464318e-01,-3.693992622072972964e-01,0.000000000000000000e+00 +4.212784653071275365e-01,-2.119625851352673063e-01,0.000000000000000000e+00 +3.935641417148035837e-01,-2.364847231429506036e-01,0.000000000000000000e+00 +4.767633228275106605e-01,-2.811350347129351612e-01,0.000000000000000000e+00 +4.094324571295075987e-01,-2.650200102656073420e-01,0.000000000000000000e+00 +4.441946328282488365e-01,-2.736392345781725743e-01,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad8/uvs.csv b/src/pyvale/data/render/riley/rabbits/riley_quad8/uvs.csv new file mode 100644 index 000000000..9ace6a34f --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad8/uvs.csv @@ -0,0 +1,671 @@ +7.341281954014360345e-01,1.456986208642528369e-01 +7.428956413602411102e-01,1.309818218072988649e-01 +7.496323364434065439e-01,1.152328255678261582e-01 +7.470119893454991722e-01,9.905970839790331772e-02 +7.385429084288708257e-01,8.450388077373852114e-02 +7.233366260640943235e-01,7.687392774594678513e-02 +7.333211950591289607e-01,6.620228935916433466e-02 +7.368072251343370516e-01,5.234622412255020979e-02 +7.216868386411305902e-01,4.517042436506053110e-02 +7.046770160961119966e-01,4.340856149647096679e-02 +6.885332397089665157e-01,3.770300874883215220e-02 +6.717546317611371443e-01,3.420434674146845266e-02 +6.547983899991004497e-01,3.168614404276414581e-02 +6.377728562555111669e-01,2.968078775682975526e-02 +6.207133641540361069e-01,2.798804703040868799e-02 +6.036254994427917575e-01,2.661107213404077104e-02 +5.865115975800641035e-01,2.561286334832616959e-02 +5.693765226541994684e-01,2.509421603585804128e-02 +5.522335508708069440e-01,2.504269267673194313e-02 +5.350943130748853083e-01,2.540619454635765356e-02 +5.179712469408450648e-01,2.622909287908126857e-02 +5.008959911778820828e-01,2.773619967700515637e-02 +4.839488775528963949e-01,3.029843024094600393e-02 +4.672608527645750187e-01,3.420289763841382474e-02 +4.507527819709467587e-01,3.882483800486721121e-02 +4.337874970901520744e-01,4.065815983466580102e-02 +4.167113359880293411e-01,3.921203017549001330e-02 +3.996697024794821362e-01,4.074612824954685492e-02 +3.830656105975212000e-01,4.498182625265221418e-02 +3.722151338631113360e-01,3.514085745082514561e-02 +3.658914804848412139e-01,1.928545205874879209e-02 +3.536912320662999321e-01,7.618248047018549851e-03 +3.374930712788631326e-01,0.000000000000000000e+00 +3.247526305371755129e-01,8.861945566988353382e-03 +3.208935514445944159e-01,2.499096576439441622e-02 +3.237362500238751828e-01,4.175919772893713078e-02 +3.085399166174664920e-01,3.402459814215980788e-02 +2.925554322635940951e-01,2.768813308979772153e-02 +2.763458365323711585e-01,2.191232222557825543e-02 +2.590989550948502584e-01,1.902867093918643795e-02 +2.500000000000000000e-01,2.964209085272425173e-02 +2.557768570479971304e-01,4.520024046089227837e-02 +2.669371701643714068e-01,5.795598299389115304e-02 +2.825100777971983335e-01,6.544861774176674585e-02 +2.982658481297766340e-01,7.217854726645531183e-02 +3.143442092964777723e-01,7.819802118266561131e-02 +3.301090568381465640e-01,8.491381632432024040e-02 +3.439931971882407846e-01,9.338227512978186651e-02 +3.375117981130416056e-01,1.065169514018340091e-01 +3.499056102948223668e-01,1.180001106917294845e-01 +3.661468366178214362e-01,1.234246342916335143e-01 +3.826987404368986101e-01,1.278815813854857764e-01 +3.959973771536438591e-01,1.377060152611542798e-01 +4.084722189255128311e-01,1.491811419344680478e-01 +4.244864330404450881e-01,1.551860495518568861e-01 +4.414442427055655926e-01,1.574591100166914670e-01 +4.585829836652042246e-01,1.575032106239457330e-01 +4.756763643728454394e-01,1.562526855575424312e-01 +4.926434016081964185e-01,1.538133544808005793e-01 +5.095414378385394460e-01,1.509228370217111925e-01 +5.265066511775351454e-01,1.484709951596757116e-01 +5.435992253825570053e-01,1.471885132750171965e-01 +5.607196040490729505e-01,1.463013476529075874e-01 +5.778294932772471970e-01,1.452285685948234706e-01 +5.949605727059945615e-01,1.445386071916374415e-01 +6.120995848993699973e-01,1.443022654611330335e-01 +6.291856163902188603e-01,1.442769570368487575e-01 +6.391442179954718306e-01,1.572001803167670519e-01 +6.341666406241339704e-01,1.700661606690929417e-01 +6.205566237866192436e-01,1.789686875634212970e-01 +6.108218506985931828e-01,1.920089021201609736e-01 +6.024268606629816780e-01,2.072177205074366146e-01 +5.979160335554271066e-01,2.235649715795011150e-01 +6.107869384420729908e-01,2.317498453467997654e-01 +6.269270956536054928e-01,2.262280233657507911e-01 +6.410218524080804059e-01,2.164472265092146908e-01 +6.534353641450187933e-01,2.046854232811659013e-01 +6.656391276039090865e-01,1.927368931736139213e-01 +6.763531072964514834e-01,1.792952167290867982e-01 +6.896961649430743968e-01,1.687142068515952720e-01 +7.061301111022018073e-01,1.638976299007920412e-01 +7.220664773410619963e-01,1.576739351887332108e-01 +7.387575175677787431e-01,1.384865231514760264e-01 +7.465292146041976329e-01,1.232212031272550273e-01 +7.500000000000000000e-01,1.069432261403868573e-01 +7.439357731355558112e-01,9.110262498584510704e-02 +7.313457036535726541e-01,7.989320303599320439e-02 +7.264097782825031935e-01,7.121964553339657500e-02 +7.389161274682447544e-01,5.993495288553449263e-02 +7.299694143192549944e-01,4.729780113787617618e-02 +7.131449691079909670e-01,4.452262860747175505e-02 +6.967262123376727345e-01,4.020027439640137812e-02 +6.801730378545769451e-01,3.579594336223268503e-02 +6.632935488957025782e-01,3.285678617239420896e-02 +6.462908285014963283e-01,3.064074712615146717e-02 +6.292469664845122823e-01,2.879551749396041735e-02 +6.121716276514030941e-01,2.725938401780505713e-02 +5.950624746464855397e-01,2.605432589351364125e-02 +5.779459316796329293e-01,2.529238724104890604e-02 +5.608044849157090006e-01,2.501417175184188907e-02 +5.436628297365651008e-01,2.517288633507082027e-02 +5.265296630708272696e-01,2.575186146337095708e-02 +5.094260483910504345e-01,2.687329225861658996e-02 +4.923990172525221087e-01,2.886292909719271466e-02 +4.755602677567096204e-01,3.207877835757260571e-02 +4.590041245733617048e-01,3.654807573640402735e-02 +4.423541583211246797e-01,4.045964802132166749e-02 +4.252526920931620769e-01,3.978819363732144510e-02 +4.081494876891255119e-01,3.951863529510778877e-02 +3.913117215584515640e-01,4.265391260795653450e-02 +3.755913169173824562e-01,4.296549344068349707e-02 +3.698300636567216637e-01,2.730520038555275114e-02 +3.599317788742386059e-01,1.267086286186647377e-02 +3.460589627673123503e-01,3.167916967478181123e-03 +3.312014418733666976e-01,1.389606370100970748e-03 +3.217953285789573181e-01,1.742132750105804609e-02 +3.224153254799013713e-01,3.357001377376753887e-02 +3.162885780695667837e-01,3.742390069165350136e-02 +3.005463649852468944e-01,3.085215805070282494e-02 +2.845887504358239894e-01,2.463202527281888737e-02 +2.681398930077689147e-01,2.011188828522119179e-02 +2.536093026419282137e-01,2.004587657998583086e-02 +2.521597886864926363e-01,3.830827840137163154e-02 +2.606188235036623890e-01,5.277055104637879551e-02 +2.747819580825803243e-01,6.181523693672555386e-02 +2.903612602702060341e-01,6.894982842489386088e-02 +3.063233714101640803e-01,7.522523778093513636e-02 +3.223171963098356851e-01,8.134244186520955822e-02 +3.379105091906691172e-01,8.844551617851706404e-02 +3.371514953367795719e-01,9.843027767232977177e-02 +3.428655457339345181e-01,1.131665541334290481e-01 +3.579193360792488621e-01,1.210199157340491743e-01 +3.743926599158206026e-01,1.257662257172838804e-01 +3.905776947756246509e-01,1.311457124321849799e-01 +4.014802438856933664e-01,1.442587781798431723e-01 +4.163033157494807068e-01,1.526529309181123562e-01 +4.329072423430716521e-01,1.567774247313656888e-01 +4.500207953350203738e-01,1.576522219538224190e-01 +4.671421752470090172e-01,1.570471942306577440e-01 +4.841759073879154940e-01,1.551450336401989094e-01 +5.010920790181219164e-01,1.523675064905083698e-01 +5.180079667060777382e-01,1.495850078527874438e-01 +5.350427273587314847e-01,1.476951249502732877e-01 +5.521614827317955498e-01,1.467743577744665129e-01 +5.692742163999187088e-01,1.457596427873464606e-01 +5.863896940273791714e-01,1.447906344542256307e-01 +6.035296751401901805e-01,1.444330742014600655e-01 +6.206616260477476610e-01,1.439870096888398177e-01 +6.355742396947167139e-01,1.494281023050046953e-01 +6.421927948671892761e-01,1.641049558666437536e-01 +6.292777279337570251e-01,1.719212710135943345e-01 +6.148725140659254684e-01,1.860854264070868624e-01 +6.062709844349779553e-01,1.994416039113174055e-01 +5.993220933924219285e-01,2.152061580410100372e-01 +6.025341254921643408e-01,2.304243884808146181e-01 +6.190569153858747065e-01,2.294217374110869845e-01 +6.342691909550877138e-01,2.218109162276574453e-01 +6.471971395570905727e-01,2.106999450225950643e-01 +6.597782784190120431e-01,1.987849360022988232e-01 +6.710096325387886473e-01,1.860184052268774590e-01 +6.825698358419913792e-01,1.733470040188665462e-01 +6.978180809472060986e-01,1.659898213458097238e-01 +7.142974481912844897e-01,1.612141057731714122e-01 +7.287638902740096736e-01,1.523727967169854480e-01 +4.883087784101516338e-01,1.367140364796622654e-01 +5.340437949792018468e-01,4.304630545212562859e-02 +5.860999780914386559e-01,4.319372407584766427e-02 +6.386270150540160895e-01,4.695140603249681188e-02 +4.278499555789459508e-01,1.430041088599991184e-01 +5.600542165737735223e-01,1.289609384281547033e-01 +4.829994511646487076e-01,4.835924214075412730e-02 +6.118348228959034074e-01,1.274146762024415125e-01 +4.492688494772210106e-01,5.456009414466291702e-02 +3.969352980751683635e-01,5.765095618741299804e-02 +6.987601009035535604e-01,1.464852482504437892e-01 +3.649565703252952709e-01,5.022140821060096932e-02 +3.740652445901627710e-01,1.084661687342743097e-01 +6.468323931779247360e-01,1.379243708376761413e-01 +3.380256725846570998e-01,7.111991341505002895e-02 +6.666556623727533104e-01,1.671035617592886990e-01 +6.725423407651514029e-01,5.105986758663447200e-02 +3.366014378436355536e-01,4.162450418567553712e-02 +6.322448200318147027e-01,1.874310991858331443e-01 +7.122293044510699112e-01,1.388475388783406150e-01 +7.345247527209637362e-01,1.145373236728132044e-01 +4.045212504148527621e-01,1.241503455661742555e-01 +7.041380009559523590e-01,5.644975112269689371e-02 +3.042327710707931065e-01,5.314810659105895924e-02 +2.733481699139569954e-01,4.020329309978898369e-02 +6.202690643451620467e-01,2.098532805639810317e-01 +7.241052037123287821e-01,1.005772993097874962e-01 +4.146961116465264219e-01,5.737316272010298951e-02 +5.512367672683728959e-01,4.262515408431010594e-02 +5.050664725281142076e-01,1.336526211305328338e-01 +5.169732200617283002e-01,4.408955494448821288e-02 +6.469660614012324729e-01,1.687227784016180898e-01 +6.036059602355963172e-01,4.417585518587366367e-02 +5.775376439877715207e-01,1.282703436479266657e-01 +5.420456966806947996e-01,1.295720543381910228e-01 +3.372963219376784449e-01,2.436831390094056429e-02 +4.560833120130054485e-01,1.405800705384668836e-01 +3.530317085025439505e-01,2.781131389233659074e-02 +2.632849165433684968e-01,3.546231275897845925e-02 +6.510523067231115402e-01,1.825488355610806468e-01 +6.298745259309836975e-01,2.036889374012902099e-01 +6.887169900163060410e-01,5.373805623940845766e-02 +6.113981158518959624e-01,2.155038081828918595e-01 +7.155231188598094594e-01,6.938416896541467482e-02 +7.182744918381253063e-01,5.980808944187798737e-02 +4.662182069808016305e-01,5.154286099787089293e-02 +4.824232416193579009e-01,1.200116570771957020e-01 +5.496704115030626170e-01,5.987002069523018888e-02 +5.845997463665049132e-01,6.055071677932078594e-02 +6.725103842253387088e-01,6.726504820746186109e-02 +5.604400385746823865e-01,1.115689175066893052e-01 +4.832171963526485925e-01,6.588416802472958633e-02 +4.142037748245487871e-01,7.489608603561988265e-02 +6.921033881585332281e-01,1.318684491996053865e-01 +3.521177376637835144e-01,7.893567650363232657e-02 +7.134753462396390411e-01,1.140160951724721455e-01 +7.046027742080460676e-01,7.008652999021186547e-02 +3.234550155711605202e-01,5.908932292937586761e-02 +6.810545951622558603e-01,1.518882497944578913e-01 +3.892624483406735281e-01,1.156039537939606565e-01 +6.563289169527186662e-01,1.527740517060411363e-01 +3.802696398393223820e-01,5.548404795955777513e-02 +5.327261677987757960e-01,6.021770323518525064e-02 +5.233193719061349780e-01,1.308797258703869315e-01 +5.684857664380411624e-01,4.270960084554427383e-02 +5.949653786515787246e-01,1.276237662260607530e-01 +6.211078287879248094e-01,4.547662482675159101e-02 +6.556253678427446108e-01,4.876825905995501448e-02 +5.000847285665035447e-01,4.585567096841262902e-02 +3.589813330954685910e-01,1.012604708005401255e-01 +4.322854462570709932e-01,5.645477575727497060e-02 +4.724512224398509375e-01,1.392665304225184086e-01 +7.085328310084824111e-01,8.743509499857138323e-02 +4.665690042731630571e-01,6.895913886727718378e-02 +6.419046762504201364e-01,1.235184560701469841e-01 +4.398133953756622194e-01,1.412396919880918311e-01 +7.236058381518121196e-01,1.282071014561164402e-01 +6.452371989628494786e-01,1.975578786391021524e-01 +3.503831979761753423e-01,4.448891450887362820e-02 +6.273131188036590311e-01,1.267917061407413948e-01 +4.187371047518296807e-01,1.344248399895890400e-01 +2.879820689107495668e-01,4.662434261178428213e-02 +6.206753817798476014e-01,6.321403824612623068e-02 +4.548960857626365151e-01,1.280285169550679780e-01 +6.144430258419879554e-01,1.090798432341578139e-01 +4.319668103283363370e-01,7.383010948914427163e-02 +6.575401675174596949e-01,1.339096121747502810e-01 +5.780843573332042906e-01,1.113002252150273597e-01 +5.473574510202944277e-01,7.681313335886820470e-02 +4.858463880119819889e-01,8.300041908647531885e-02 +6.557696322934655209e-01,6.538956091058176212e-02 +5.000117473398770773e-01,6.324945529896937313e-02 +3.822150191728577173e-01,9.385340245119098979e-02 +4.120037522552598697e-01,1.088450755087379818e-01 +4.670448446546398569e-01,1.237485622835351046e-01 +3.940603545064229052e-01,7.788055994795335668e-02 +7.009875970348646845e-01,1.049506468120052771e-01 +3.453794555352860951e-01,5.811128618219302960e-02 +6.826490303371950397e-01,1.369308499670084667e-01 +5.668896114300860933e-01,6.002682163189267117e-02 +4.988625610331569593e-01,1.162408504486530658e-01 +5.163224835741617724e-01,6.130112847459166098e-02 +6.023369791456754108e-01,6.184201921274831010e-02 +5.420392058008662861e-01,1.114321693200493180e-01 +3.672130131672481923e-01,8.620974093044708741e-02 +4.495948716990509908e-01,7.186826935970262731e-02 +7.032468504305429136e-01,1.245701880685114726e-01 +6.662665129388367635e-01,1.415754254768312459e-01 +3.359080943187355839e-01,5.283015436320530334e-02 +6.888837510833638600e-01,6.923793716192983005e-02 +4.361947782771209425e-01,1.189064680787878664e-01 +6.265213881070014201e-01,1.155744972507124768e-01 +6.548442579109874373e-01,8.168375730516851119e-02 +6.737365065052172142e-01,1.299238055978416406e-01 +5.161143597355295487e-01,7.716774485965910424e-02 +5.820892374531259073e-01,7.767686322868695703e-02 +4.579857499677775223e-01,1.083077019857160983e-01 +6.287871338831718671e-01,9.834093189965699422e-02 +4.750753885764320006e-01,1.035616090380449966e-01 +5.645558092987006393e-01,7.718097270821254463e-02 +4.916716505426023121e-01,9.948920259871828209e-02 +5.996272738791688095e-01,7.902765668148645228e-02 +4.148884766119728118e-01,9.218785448116374737e-02 +5.310965249489056905e-01,7.646565987209209825e-02 +5.954117136389467380e-01,1.109141176535415885e-01 +5.621819365427680459e-01,9.428218005560040638e-02 +3.591480729580496245e-01,6.452009753139457959e-02 +4.520894767799679137e-01,9.032373742002364203e-02 +5.195661101299777762e-01,1.093403268517403049e-01 +6.384586554824076554e-01,6.423122925318491827e-02 +6.712516330783653284e-01,8.339092451524954264e-02 +4.334821164700613516e-01,9.284306137858942820e-02 +5.017043641939569198e-01,7.953705112960707257e-02 +3.964547202882566235e-01,1.017049808394554639e-01 +4.698198103986421792e-01,8.643627550088855971e-02 +6.595594303598748542e-01,1.201850573646680576e-01 +3.747471882979647173e-01,7.075658725676414740e-02 +6.965451398964768170e-01,1.154045840091456471e-01 +6.882261614808555805e-01,8.517701110991263147e-02 +6.364227221391531852e-01,1.101343577265351953e-01 +4.020442745063370626e-01,9.116619336178936883e-02 +6.704218109626843836e-01,9.943001510371649032e-02 +6.385126630298335604e-01,8.076582500143547616e-02 +5.166735981729375649e-01,8.846316048520858066e-02 +5.444251044453345401e-01,9.372442491014701393e-02 +6.190739623620833409e-01,8.366373115060278531e-02 +5.797437638099143253e-01,9.454079148452353143e-02 +6.837768986590591069e-01,1.175743798492032421e-01 +5.967692902241630293e-01,9.509300196984936393e-02 +6.093654582265901620e-01,9.590945078902507470e-02 +6.514733231286888859e-01,1.002339222603585295e-01 +6.387509968148959993e-01,9.260297856615806733e-02 +6.861668877008996192e-01,1.008667853760060462e-01 +6.709823763210722714e-01,1.116225358413667212e-01 +5.070002425185073935e-01,9.387363978919267826e-02 +5.274053467922904526e-01,9.227567559896883431e-02 +3.235042348312672233e-01,5.052337622124657146e-02 +3.063257409289231736e-01,4.365960497377238680e-02 +3.137647645389295414e-01,5.610992424679162038e-02 +6.466784604704105544e-01,8.122479115330200061e-02 +6.386318299223647799e-01,8.668440178379675787e-02 +6.451121599717923871e-01,9.641845041325831922e-02 +6.531587905198381616e-01,9.095883978276350645e-02 +6.935772423678822074e-01,1.029087160940056617e-01 +6.849681790741088960e-01,1.090849984914499665e-01 +6.899418417616238752e-01,1.164812779359705869e-01 +6.987663684656708618e-01,1.101776154105754552e-01 +7.055812431444178356e-01,1.426859712389944856e-01 +7.077380774408064124e-01,1.317088634734260577e-01 +6.975972937049510492e-01,1.283177361073134515e-01 +6.955447899796591837e-01,1.394019436240447052e-01 +3.478813267557307465e-01,5.130010034553332543e-02 +3.522637642466678320e-01,6.131569185679380807e-02 +3.620523216416724477e-01,5.737075287099779181e-02 +3.576698841507353621e-01,4.735516135973730917e-02 +7.163190173604054856e-01,9.400619715417944666e-02 +7.047602140216735478e-01,9.619287090528834405e-02 +7.072314716372518628e-01,1.094833709922387044e-01 +7.187902749759839116e-01,1.072966972411298209e-01 +6.415983280700869873e-01,1.850123725123943852e-01 +6.491874634385019771e-01,1.759621472529172836e-01 +6.418536465792545886e-01,1.699916082122237271e-01 +6.338780186493273572e-01,1.788648129644649087e-01 +7.407683710332314542e-01,1.067985160353582680e-01 +7.313240560705998039e-01,9.254059004176300174e-02 +7.293149782166461481e-01,1.075573114913003364e-01 +5.220394724826140642e-01,9.036941804208871443e-02 +5.118369203457224792e-01,9.116840013720062252e-02 +5.132831763242425849e-01,1.016069833204664707e-01 +5.234857284611340589e-01,1.008080012253545626e-01 +2.902845603192863444e-01,3.714001594538667017e-02 +2.749805358348449413e-01,3.085131088708883973e-02 +2.807262393686897894e-01,4.340995148929541192e-02 +6.160070040216308884e-01,2.125958424630598198e-01 +6.110925271469844766e-01,2.236268267648458263e-01 +6.237251707621742636e-01,2.181899331127076513e-01 +2.960856647567136624e-01,4.990193542600410148e-02 +2.852491851768995668e-01,5.605430400592975593e-02 +3.012470522017465235e-01,6.262610237237686839e-02 +4.041320646654858462e-01,7.638832299178663354e-02 +4.144499432355376323e-01,6.613462437786145343e-02 +4.058157048608473927e-01,5.751205945375799378e-02 +3.954978262907956066e-01,6.776575806768317389e-02 +3.816638464654181218e-01,1.120350612641174692e-01 +3.928585843144650758e-01,1.086544673167080532e-01 +3.893348697305571982e-01,9.777919164532322682e-02 +3.781401318815102441e-01,1.011597855927326428e-01 +4.348384473735911193e-01,1.058747647286886473e-01 +4.241852965410171095e-01,9.251545792987658778e-02 +4.134461144336163407e-01,1.005164649949508715e-01 +4.240992652661903506e-01,1.138757717937629310e-01 +4.082625013350563159e-01,1.164977105374561117e-01 +4.116291775833412214e-01,1.292875927778816270e-01 +4.274659415144752561e-01,1.266656540341884463e-01 +4.937753761029693989e-01,8.126873510804119571e-02 +5.008580557669168876e-01,7.139325321428820204e-02 +4.916144718462628349e-01,6.456681166184947973e-02 +4.845317921823152907e-01,7.444229355560245953e-02 +5.392269879846001146e-01,7.663939661548016535e-02 +5.292509358705981271e-01,8.437066773553048016e-02 +5.359152256188124408e-01,9.300005025455793106e-02 +5.458912777328144283e-01,8.526877913450763014e-02 +3.886024689572453727e-01,5.656750207348538312e-02 +3.775084140686435497e-01,6.312031760816094739e-02 +3.844037714021938390e-01,7.431857360235874510e-02 +4.230852925764425621e-01,7.436309776238206326e-02 +4.321261282927036929e-01,6.514244262320960377e-02 +4.234907789517987631e-01,5.691396923868899393e-02 +6.215532058216723943e-01,1.899146376017332161e-01 +6.153693830502429130e-01,2.008382966291814009e-01 +6.249048730147725994e-01,2.067435472191428147e-01 +6.309060862413751192e-01,1.953967609710937359e-01 +3.294262874039111111e-01,2.476885845167791159e-02 +3.377516301706711133e-01,1.228342444606112839e-02 +5.533035204940512930e-01,9.400330248287371016e-02 +5.633688729207343426e-01,8.573157638190646856e-02 +5.559566301594975890e-01,7.699705303354038854e-02 +6.875228379509450427e-01,1.343755905589707478e-01 +6.818645280687885002e-01,1.446640853702318430e-01 +6.900066806366190741e-01,1.492308589482291004e-01 +6.287933126959583952e-01,8.221477807601912380e-02 +6.239305481226276040e-01,9.100233152512988977e-02 +6.337690653490339887e-01,9.547195523290755159e-02 +6.585805432094897771e-01,1.268272256441369816e-01 +6.507774230026810436e-01,1.218000731398782288e-01 +6.443580830192422448e-01,1.306380357675845649e-01 +6.520345106567038140e-01,1.359910649553999207e-01 +5.676876889340636279e-01,5.136821123871848638e-02 +5.598612668532070291e-01,4.266737746492717254e-02 +5.504535893857177564e-01,5.124758738977015782e-02 +5.582800114665742441e-01,5.994842116356141615e-02 +3.530675822909778439e-01,1.792211263631983062e-02 +3.450231507639630602e-01,2.612670253266790796e-02 +3.630971731313584194e-01,9.373510586549360646e-02 +3.596653754155158533e-01,8.257270871703972781e-02 +3.480554674260121772e-01,8.615897581670710348e-02 +3.514872651418546878e-01,9.732137296516098213e-02 +3.544434716951455067e-01,1.096302907461348120e-01 +7.025055218963379700e-01,1.552199721104804420e-01 +7.171478908960660092e-01,1.482607370335369268e-01 +4.157037238172779370e-01,4.829259644779648752e-02 +3.983025002773252221e-01,4.919854221847994036e-02 +5.733225233759131623e-01,7.742891796844975083e-02 +5.833444919098154102e-01,6.911379000400387496e-02 +5.757446788982953922e-01,6.028876920560673203e-02 +5.657227103643933663e-01,6.860389717005260790e-02 +6.983794962446689958e-01,8.630605305424200735e-02 +6.871965245908775444e-01,9.302189824295935272e-02 +3.669476306280071709e-01,6.763834239407938431e-02 +3.726131050823088264e-01,5.285272808507935488e-02 +4.952671057878796357e-01,1.078650265236856809e-01 +4.833735195595171286e-01,1.015254058183816394e-01 +4.787493150978949785e-01,1.117866330576203493e-01 +4.906429013262574301e-01,1.181262537629243908e-01 +5.709628501763410746e-01,9.441148577006196196e-02 +5.809165006315200053e-01,8.610882735660524423e-02 +5.081671154570194249e-01,6.227529188678052746e-02 +5.089093619647432343e-01,7.835239799463307453e-02 +5.162184216548457716e-01,6.923443666712539302e-02 +5.411982896509192065e-01,6.004386196520770241e-02 +5.426402811237873713e-01,4.283572976821788114e-02 +5.333849813889888214e-01,5.163200434365542574e-02 +4.915420898655761262e-01,4.710745655458337816e-02 +5.004903598721928137e-01,3.679593532270890310e-02 +4.834741643587725513e-01,3.932883619085005000e-02 +5.092143355815673678e-01,1.127905886501966853e-01 +5.019645167806355834e-01,1.249467357895929637e-01 +5.141929222171246483e-01,1.322661735004599104e-01 +5.214427410180564326e-01,1.201100263610636182e-01 +5.778110006604879612e-01,1.197852844314770265e-01 +5.862515113196751226e-01,1.279470549369937094e-01 +5.951885461452627313e-01,1.192689419398011708e-01 +5.867480354860754588e-01,1.111071714342844741e-01 +4.327244633991988443e-01,8.333658543386684991e-02 +4.145461257182608272e-01,8.354197025839182889e-02 +5.960905019315547726e-01,1.030035598116954831e-01 +5.882565270170386773e-01,9.481689672718644768e-02 +5.789140605715592525e-01,1.029205083497754525e-01 +6.998959951635098653e-01,1.199873860388285529e-01 +6.878669386420627196e-01,1.246871629289302286e-01 +6.736849848276966757e-01,1.468240275485223900e-01 +6.612847908273846720e-01,1.474773308174451847e-01 +6.617228956129947992e-01,1.602398040172666738e-01 +6.739273175284583584e-01,1.595024661915638853e-01 +6.517486320290757362e-01,1.455768980932125867e-01 +6.380289413391907472e-01,1.410416921420634961e-01 +6.477805109042269471e-01,1.555536090744267796e-01 +3.556329053109165694e-01,7.172788701751346696e-02 +3.709801007326064548e-01,7.848316409360563128e-02 +6.556975000681050103e-01,5.707890998526838483e-02 +6.471261914483803501e-01,4.785983254622590971e-02 +6.385428352682118724e-01,5.559131764284085814e-02 +6.471141438879366437e-01,6.481039508188334020e-02 +3.370129340974703513e-01,3.285291954668396325e-02 +3.436004027909305147e-01,4.306974290792861537e-02 +3.516148908455674071e-01,3.605805779247096138e-02 +5.000482379531903110e-01,5.455256313369101495e-02 +4.831083237586486501e-01,5.712170508274187070e-02 +5.908582556661473584e-01,7.835225995508668384e-02 +5.981982820516660304e-01,8.706032932566791505e-02 +2.595257738232850109e-01,4.037118983251207494e-02 +2.612979968645631201e-01,2.693376013823964299e-02 +3.747140161700529548e-01,9.003157169081903166e-02 +3.881376868396403390e-01,8.586698119957217323e-02 +6.725263624952450003e-01,5.916245789704815267e-02 +6.640838543039480069e-01,4.991406332329473283e-02 +6.641400082594021148e-01,6.632730455902180466e-02 +3.701060406039921036e-01,1.159454015129539051e-01 +3.665232888428156532e-01,1.048633197674072176e-01 +7.199806652396278928e-01,5.248925690346924883e-02 +7.257978434486271890e-01,6.300518940052116101e-02 +6.589405729731849792e-01,1.748043017722012982e-01 +6.522943182561993236e-01,1.617576312977168917e-01 +5.236054423422176196e-01,7.681670236587562206e-02 +5.319113463738407432e-01,6.834168155363867792e-02 +5.245243256864688952e-01,6.075941585488845581e-02 +6.208916052838862054e-01,5.434533153643889697e-02 +6.123568945117605633e-01,4.482624000631261346e-02 +6.029714696906358640e-01,5.300893719931100423e-02 +6.115061804627615061e-01,6.252802872943728774e-02 +5.863057878357513797e-01,3.440329371208691867e-02 +5.689311445461202599e-01,3.390190844070117143e-02 +5.772928722647399091e-01,4.295166246069595517e-02 +5.517351590695899199e-01,3.383392338052101239e-02 +5.345690540270435775e-01,3.422624999924165495e-02 +6.583434435170814059e-01,1.875939951334334999e-01 +6.714756639775738556e-01,1.731483705269031559e-01 +6.384856592561205524e-01,7.249852712731019722e-02 +6.295670186311276284e-01,6.372263374965558835e-02 +6.198746720709654712e-01,7.343888469836448718e-02 +4.853660100147547674e-01,1.283628467784290184e-01 +4.966876254691329207e-01,1.351833288050975634e-01 +7.044075085260321778e-01,4.992915630958394413e-02 +7.112062463970387771e-01,5.812892028228744401e-02 +6.282674743773639658e-01,1.356104649734337364e-01 +6.194093776892204417e-01,1.271304725682835257e-01 +6.119310928554833051e-01,1.359052812695702994e-01 +3.450717051242203071e-01,7.502779495934119858e-02 +3.340673647114018596e-01,7.801686486968514855e-02 +6.353990289235207367e-01,2.101479864344373560e-01 +6.009821265124221101e-01,7.043483794711737078e-02 +6.093506181206260752e-01,8.134569391604462574e-02 +6.782943493317920014e-01,1.001484002398612821e-01 +6.706483349057443810e-01,1.053909702166826168e-01 +6.774446742350653805e-01,1.145819027028301546e-01 +6.853703727725970474e-01,1.602980920599825221e-01 +5.308026579654220312e-01,1.103862480858948114e-01 +5.326825342934149443e-01,1.302258901042890049e-01 +5.420424512407805429e-01,1.205021118291201704e-01 +4.740637934063481884e-01,1.477596079900304060e-01 +4.904760900091740261e-01,1.452636954802314084e-01 +4.803800004250012856e-01,1.379902834510903786e-01 +4.406288190406139060e-01,1.493494010023916352e-01 +4.573331478391047811e-01,1.490416405812063083e-01 +4.479483536943338340e-01,1.409098812632793574e-01 +3.859805943887860691e-01,1.217427675897232164e-01 +5.166478518179451473e-01,5.269534170953993346e-02 +5.085289743141159224e-01,4.497261295645042095e-02 +3.622811799433259816e-01,3.150835270633212115e-02 +3.685858520942033034e-01,4.268113283071305747e-02 +6.885549562821096092e-01,7.720747413592123076e-02 +6.806970676543512289e-01,6.825149268469586639e-02 +6.718810086518519631e-01,7.532798636135568104e-02 +6.797388972796103435e-01,8.428396781258108705e-02 +5.485139312616784668e-01,6.834157702704919679e-02 +6.440204902581572188e-01,1.051853533996778556e-01 +6.392257410866855061e-01,1.169187439353877311e-01 +6.555015418196606936e-01,1.101128838184100567e-01 +7.159347285362882563e-01,8.215451137225908418e-02 +6.886251148626363339e-01,4.572053249412029452e-02 +6.721484862631442736e-01,4.263210716405146233e-02 +6.806296653907286665e-01,5.239896191302147871e-02 +7.179175713014409599e-01,1.335273201672285415e-01 +7.288670167766240215e-01,1.369528611601846524e-01 +5.687959302807725770e-01,1.286156410380406845e-01 +5.603869103114231809e-01,1.376311430405311176e-01 +5.776835686325094699e-01,1.367494561213750959e-01 +6.630479454946762718e-01,8.253734091020901997e-02 +6.609475670456865792e-01,9.983196868203751684e-02 +6.708367220205249115e-01,9.141046980948301648e-02 +6.493831120810591440e-01,2.011644028138572515e-01 +6.373660182610967340e-01,2.006744614916302349e-01 +3.298942638469553046e-01,4.169566407848132594e-02 +6.553069451022264236e-01,7.353665910787514359e-02 +5.692621979539433941e-01,1.114345713608583394e-01 +5.602471275742280099e-01,1.202649279674219973e-01 +6.482081624144567789e-01,1.899154711365302894e-01 +6.030673742253765957e-01,9.550122637943724013e-02 +6.142197102943367515e-01,8.978659096981393695e-02 +6.552118789209224747e-01,4.022720155135958015e-02 +6.298674219209704495e-01,4.621401542962420145e-02 +6.381999356547636282e-01,3.831609689466326796e-02 +6.209105964709804582e-01,3.673233592858012736e-02 +5.613109875587252162e-01,1.029255487811448627e-01 +6.346498910710632879e-01,1.251485923819636858e-01 +3.188996124338191462e-01,6.864367205602074640e-02 +4.330364716736115338e-01,4.855646779597038581e-02 +2.700787670210598734e-01,4.926279671979338914e-02 +6.049273697404673467e-01,1.099969804438497012e-01 +6.119042420342890587e-01,1.024946470115914304e-01 +5.853498622289716735e-01,5.187222042758422164e-02 +5.934683627560901620e-01,6.119636799603454802e-02 +5.948529691635173755e-01,4.368478963086065009e-02 +6.036157298391939818e-01,3.539346365995722082e-02 +6.131046284356151954e-01,1.182988723735756698e-01 +6.033822916090074706e-01,1.275445311326234565e-01 +5.949624668346751299e-01,1.360818644512026554e-01 +4.625152973112086618e-01,1.160281321346255945e-01 +4.747340431369988512e-01,1.218801096803654033e-01 +4.665305692721047892e-01,1.059346555118805405e-01 +4.642672672264281930e-01,1.399233004804926739e-01 +4.697480335472454249e-01,1.315075463530267774e-01 +5.255085075204650735e-01,4.356793019830693114e-02 +5.432321551231004131e-01,1.025782971150981798e-01 +5.512396221877743363e-01,1.115005434133693046e-01 +5.073039551833268268e-01,1.422877290761220270e-01 +5.428224610316259025e-01,1.383802838066041097e-01 +5.510499566272342165e-01,1.292664963831728631e-01 +5.249130115418351172e-01,1.396753605150313216e-01 +5.174722335012866825e-01,3.515932391178473726e-02 +4.261681943096955472e-01,1.490950792059279884e-01 +4.338316754773041128e-01,1.421219004240454886e-01 +4.993359465305549083e-01,9.668142119395548018e-02 +7.043703875819991023e-01,6.326814055645436918e-02 +6.964274954861291445e-01,5.509390368105267916e-02 +6.888003705498348950e-01,6.148799670066912998e-02 +6.967432626457048528e-01,6.966223357607084776e-02 +7.387101970406024787e-01,1.227595727400560416e-01 +7.290652954363878724e-01,1.213722125644648292e-01 +3.968918493777631729e-01,1.198771496800674491e-01 +4.042292362717582188e-01,1.052750281740967297e-01 +6.700019121329054972e-01,1.358067303524339575e-01 +6.781592043471325049e-01,1.333637321480577176e-01 +4.232935301653878435e-01,1.387144744247940653e-01 +4.136046618386712281e-01,1.418029909620285578e-01 +4.407771478671460574e-01,5.550743495096892993e-02 +4.500108157240838569e-01,4.669246607476505023e-02 +4.427857966250146604e-01,9.158339939930652818e-02 +4.508421742395094522e-01,8.109600338986312773e-02 +4.407808410136936361e-01,7.284918942442344947e-02 +4.580819379861069685e-01,7.041370411348990555e-02 +4.609546435893051020e-01,8.838000646045610087e-02 +4.681944073359026182e-01,7.769770718408286481e-02 +5.163939789542335568e-01,8.281545267243385633e-02 +5.043523033562321567e-01,8.670534545939986848e-02 +2.686759969106474744e-01,3.790410098059792537e-02 +3.417025640599716252e-01,6.461559979862152581e-02 +7.185405921957255249e-01,1.211115983142942998e-01 +6.216150798625799112e-01,1.037103875669073971e-01 +3.980523145063800117e-01,8.452337665487136276e-02 +4.084663755591549372e-01,9.167702392147655810e-02 +4.746088290727251691e-01,4.995105156931249624e-02 +4.667395298726882968e-01,4.287287931814235536e-02 +4.494318605881360007e-01,6.321418175218276869e-02 +4.748931003129057693e-01,6.742165344600338506e-02 +4.663936056269823438e-01,6.025099993257403835e-02 +4.577435282290113205e-01,5.305147757126690150e-02 +4.002593137842483384e-01,1.309281804136642746e-01 +6.667347040306988992e-01,1.250911254411863627e-01 +6.619414599079814776e-01,1.378523844614108484e-01 +3.307403440779088100e-01,6.510461817221295522e-02 +3.406437749270108117e-01,5.547072027269916994e-02 +3.296815549449480520e-01,5.595973864629058547e-02 +4.778330992053120840e-01,8.471834729368193928e-02 +7.083610983350909773e-01,1.192931416204918021e-01 +7.065678026082642393e-01,7.876081249439162435e-02 +6.069124882574388202e-01,2.113607643451642093e-01 +6.650852578001450466e-01,1.159332035145608231e-01 +6.788180247750824625e-01,1.237270675770917872e-01 +3.816676252184217910e-01,5.023293710610497731e-02 +6.268950854166429609e-01,1.213318944078984052e-01 +6.202699174424788353e-01,1.122160878791201161e-01 +4.380040868263915810e-01,1.300730800334398418e-01 +4.554896988878209818e-01,1.343042937467674447e-01 +4.455454320198787288e-01,1.234674925169279291e-01 +7.194298724619518914e-01,7.312904835568072304e-02 +7.100629465339277635e-01,6.973534947781326321e-02 +7.168988053489673273e-01,6.459612920364633804e-02 +6.326151861891728956e-01,1.042558881376931534e-01 +6.315732378223832821e-01,1.128262593205619085e-01 +3.992494973972968708e-01,9.643558710062241635e-02 +3.362590996224044115e-01,4.703932185573212604e-02 +4.609704652086382137e-01,1.258885396193015482e-01 +4.470902641224492324e-01,1.136070850322519893e-01 +4.887590192772921505e-01,9.124481084259679353e-02 +4.550376133738727180e-01,9.931571970286987017e-02 +4.724475994875371176e-01,9.499894226946677123e-02 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad9/connectivity.csv b/src/pyvale/data/render/riley/rabbits/riley_quad9/connectivity.csv new file mode 100644 index 000000000..60f3af408 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad9/connectivity.csv @@ -0,0 +1,196 @@ +221,187,36,35,322,321,117,320,323 +276,314,315,306,327,326,325,324,328 +260,301,311,316,332,331,330,329,333 +174,217,270,183,337,336,335,334,338 +242,175,290,261,342,341,340,339,343 +190,219,260,236,347,346,345,344,348 +182,68,195,203,352,351,350,349,353 +184,190,4,3,356,355,85,354,357 +319,292,318,307,361,360,359,358,362 +245,188,38,37,365,364,119,363,366 +189,74,73,206,369,155,368,367,370 +187,44,43,245,373,125,372,371,374 +259,173,191,216,378,377,376,375,379 +176,256,297,223,383,382,381,380,384 +274,257,286,295,388,387,386,385,389 +274,244,185,257,392,391,390,388,393 +253,215,255,296,397,396,395,394,398 +252,308,319,287,402,401,400,399,403 +173,259,300,225,378,406,405,404,407 +216,191,234,249,376,410,409,408,411 +182,204,189,70,415,414,413,412,416 +34,33,32,199,115,114,418,417,419 +308,252,283,289,402,422,421,420,423 +217,174,222,262,337,426,425,424,427 +306,315,281,309,325,430,429,428,431 +250,177,238,299,435,434,433,432,436 +263,211,192,228,440,439,438,437,441 +201,199,32,31,443,418,113,442,444 +233,47,218,268,448,447,446,445,449 +47,233,49,48,448,450,130,129,451 +183,81,80,174,453,162,452,334,454 +173,27,26,191,456,108,455,377,457 +283,263,212,279,461,460,459,458,462 +236,260,316,302,345,329,464,463,465 +175,225,300,290,467,405,466,341,468 +264,210,282,284,472,471,470,469,473 +279,310,289,283,475,474,421,458,476 +265,278,296,255,479,478,395,477,480 +226,165,192,211,483,482,439,481,484 +170,22,21,232,487,103,486,485,488 +292,227,193,264,492,491,490,489,493 +251,288,229,197,497,496,495,494,498 +295,286,216,249,386,500,408,499,501 +288,251,310,312,497,504,503,502,505 +70,69,68,182,151,150,352,412,506 +270,217,311,301,336,508,331,507,509 +222,179,224,271,513,512,511,510,514 +224,67,66,177,517,148,516,515,518 +290,300,268,218,466,520,446,519,521 +254,293,167,231,525,524,523,522,526 +199,201,242,181,443,529,528,527,530 +215,170,232,255,532,485,531,396,533 +285,312,310,279,535,503,475,534,536 +41,40,39,202,122,121,538,537,539 +259,256,268,300,541,540,520,406,542 +213,254,231,180,545,522,544,543,546 +49,233,176,50,450,548,547,131,549 +8,7,6,208,89,88,551,550,552 +203,195,224,179,350,554,512,553,555 +278,265,226,287,479,558,557,556,559 +246,266,196,230,563,562,561,560,564 +166,228,17,16,567,566,98,565,568 +165,19,18,192,570,100,569,482,571 +179,78,77,203,573,159,572,553,574 +306,309,246,293,428,577,576,575,578 +264,193,164,210,490,580,579,472,581 +208,186,9,8,583,582,90,550,584 +66,65,171,243,147,587,586,585,588 +46,178,218,47,590,589,447,128,591 +189,204,75,74,414,592,156,369,593 +266,246,309,285,563,577,595,594,596 +311,317,305,316,599,598,597,330,600 +222,174,80,79,426,452,161,601,602 +267,198,227,292,605,604,492,603,606 +235,164,58,57,609,608,139,607,610 +239,200,56,55,613,612,137,611,614 +223,51,50,176,615,132,547,380,616 +255,232,194,265,531,618,617,477,619 +29,175,242,201,621,342,529,620,622 +302,294,213,273,626,625,624,623,627 +263,283,252,211,461,422,628,440,629 +314,299,238,303,632,433,631,630,633 +236,5,4,190,634,86,355,344,635 +205,180,11,10,638,637,92,636,639 +240,0,81,183,641,163,453,640,642 +197,63,62,169,645,144,644,643,646 +294,305,314,276,649,648,327,647,650 +204,241,76,75,652,651,157,592,653 +199,181,35,34,527,654,116,417,655 +294,276,254,213,647,656,545,625,657 +197,169,214,251,643,659,658,494,660 +222,79,78,179,601,160,573,513,661 +203,77,76,241,572,158,651,662,663 +309,313,312,285,665,664,535,595,666 +180,231,12,11,544,667,93,637,668 +293,246,230,167,576,560,669,524,670 +167,230,14,13,669,672,95,671,673 +310,251,214,289,504,658,674,474,675 +66,243,238,177,585,676,434,516,677 +231,167,13,12,523,671,94,667,678 +221,45,44,187,679,126,373,322,680 +234,191,26,25,410,455,107,681,682 +43,42,188,245,124,683,365,372,684 +256,176,233,268,383,548,445,540,685 +312,313,248,288,664,687,686,502,688 +166,196,266,212,691,562,690,689,692 +285,279,212,266,534,459,690,594,693 +230,196,15,14,561,694,96,672,695 +171,229,288,248,697,496,686,696,698 +65,64,229,171,146,699,697,587,700 +280,282,210,258,703,471,702,701,704 +229,64,63,197,699,145,645,495,705 +200,235,57,56,706,607,138,612,707 +235,258,210,164,708,702,579,609,709 +165,226,265,194,483,558,617,710,711 +308,289,214,267,420,674,713,712,714 +193,59,58,164,715,140,608,580,716 +198,169,62,61,718,644,143,717,719 +169,198,267,214,718,605,713,659,720 +228,192,18,17,438,569,99,566,721 +211,252,287,226,628,399,557,481,722 +319,308,267,292,401,712,603,361,723 +227,60,59,193,724,141,715,491,725 +194,20,19,165,726,101,570,710,727 +196,166,16,15,691,565,97,694,728 +227,198,61,60,604,717,142,724,729 +168,239,55,54,731,611,136,730,732 +292,264,284,318,489,469,733,360,734 +232,21,20,194,486,102,726,618,735 +220,273,205,186,739,738,737,736,740 +0,240,184,1,641,742,741,82,743 +297,257,185,223,745,390,744,381,746 +277,262,222,271,748,425,510,747,749 +54,53,244,168,135,751,750,730,752 +234,25,24,172,681,106,754,753,755 +228,166,212,263,567,689,460,437,756 +186,205,10,9,737,636,91,582,757 +295,249,269,291,499,760,759,758,761 +237,298,291,269,764,763,759,762,765 +318,296,278,307,767,478,766,359,768 +188,202,39,38,769,538,120,364,770 +290,218,178,261,519,589,771,340,772 +293,254,276,306,525,656,324,575,773 +273,213,180,205,624,543,638,738,774 +240,219,190,184,775,347,356,742,776 +309,281,248,313,429,777,687,665,778 +259,216,286,304,375,500,780,779,781 +287,319,307,278,400,358,766,556,782 +209,23,22,170,784,104,487,783,785 +1,184,3,2,741,354,84,83,786 +249,234,172,269,409,753,787,760,788 +237,209,170,215,790,783,532,789,791 +172,24,23,209,754,105,784,792,793 +223,185,52,51,744,794,133,615,795 +271,250,299,277,797,432,796,747,798 +45,221,178,46,679,799,590,127,800 +221,272,261,178,802,801,771,799,803 +298,237,215,253,764,789,397,804,805 +269,172,209,237,787,792,790,762,806 +31,30,29,201,112,111,620,442,807 +270,301,260,219,507,332,346,808,809 +273,220,236,302,739,810,463,623,811 +177,250,271,224,435,797,511,515,812 +206,71,70,189,813,152,413,367,814 +311,277,299,317,816,796,815,599,817 +53,52,185,244,134,794,391,751,818 +29,28,225,175,110,819,467,621,820 +248,275,243,171,822,821,586,696,823 +225,28,27,173,819,109,456,404,824 +244,274,239,168,392,825,731,750,826 +200,239,274,247,613,825,828,827,829 +42,41,202,188,123,537,769,683,830 +217,262,277,311,424,748,816,508,831 +203,241,204,182,662,652,415,349,832 +5,236,220,207,634,810,834,833,835 +187,245,37,36,371,363,118,321,836 +6,5,207,208,87,833,837,551,838 +219,240,183,270,775,640,335,808,839 +314,303,281,315,630,840,430,326,841 +305,294,302,316,649,626,464,597,842 +303,275,248,281,843,822,777,840,844 +224,195,68,67,554,351,149,517,845 +303,238,243,275,631,676,821,843,846 +73,72,71,206,154,153,813,368,847 +257,297,304,286,745,848,780,387,849 +299,314,305,317,632,648,598,815,850 +181,242,261,272,528,339,801,851,852 +220,186,208,207,736,583,837,834,853 +181,272,221,35,851,802,320,654,854 +235,200,247,258,706,827,855,708,856 +274,280,258,247,857,701,855,828,858 +318,284,253,296,733,859,394,767,860 +297,256,259,304,382,541,779,848,861 +291,280,274,295,862,857,385,758,863 +282,280,291,298,703,862,763,864,865 +284,282,298,253,470,864,804,859,866 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad9/coords.csv b/src/pyvale/data/render/riley/rabbits/riley_quad9/coords.csv new file mode 100644 index 000000000..3bf76f211 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad9/coords.csv @@ -0,0 +1,867 @@ +9.666871145982780522e-01,-1.724081868521550875e-01,0.000000000000000000e+00 +9.841929009245519167e-01,-2.017929291030048922e-01,0.000000000000000000e+00 +9.976439270529439129e-01,-2.332386390984700075e-01,0.000000000000000000e+00 +9.924119317133468510e-01,-2.655311829860224626e-01,0.000000000000000000e+00 +9.755018849787532309e-01,-2.945945167536855314e-01,0.000000000000000000e+00 +9.451398010667991789e-01,-3.098290933922658308e-01,0.000000000000000000e+00 +9.650757929404047974e-01,-3.311369431615200365e-01,0.000000000000000000e+00 +9.720362803971046572e-01,-3.588030751793025996e-01,0.000000000000000000e+00 +9.418457030768171423e-01,-3.731308529454813172e-01,0.000000000000000000e+00 +9.078825260786310691e-01,-3.766487297660107147e-01,0.000000000000000000e+00 +8.756485663530294561e-01,-3.880408943419599854e-01,0.000000000000000000e+00 +8.421470509781859848e-01,-3.950266037283122200e-01,0.000000000000000000e+00 +8.082908576719989302e-01,-4.000546493617718746e-01,0.000000000000000000e+00 +7.742963104336768598e-01,-4.040587046835342200e-01,0.000000000000000000e+00 +7.402339592123093892e-01,-4.074385666868749478e-01,0.000000000000000000e+00 +7.061149569609301846e-01,-4.101879452887756683e-01,0.000000000000000000e+00 +6.719439668430100543e-01,-4.121810490722303544e-01,0.000000000000000000e+00 +6.377307008877605154e-01,-4.132166219258782136e-01,0.000000000000000000e+00 +6.035016674329242159e-01,-4.133194976002663168e-01,0.000000000000000000e+00 +5.692800895571833442e-01,-4.125937005906505362e-01,0.000000000000000000e+00 +5.350908013195839752e-01,-4.109506357290486078e-01,0.000000000000000000e+00 +5.009969751064089483e-01,-4.079414253273769830e-01,0.000000000000000000e+00 +4.671590077713342337e-01,-4.028254701242599545e-01,0.000000000000000000e+00 +4.338383580034822495e-01,-3.950294971237843233e-01,0.000000000000000000e+00 +4.008770188255625366e-01,-3.858009600049835952e-01,0.000000000000000000e+00 +3.670027693026113313e-01,-3.821404024868028659e-01,0.000000000000000000e+00 +3.329071354166024399e-01,-3.850278610388791489e-01,0.000000000000000000e+00 +2.988804420953067864e-01,-3.819647576888076101e-01,0.000000000000000000e+00 +2.657273795052250698e-01,-3.735074230746696089e-01,0.000000000000000000e+00 +2.440624467365182237e-01,-3.931566912763511668e-01,0.000000000000000000e+00 +2.314398387946131896e-01,-4.248093514508480273e-01,0.000000000000000000e+00 +2.068826564949617919e-01,-4.482496541630766052e-01,0.000000000000000000e+00 +1.752607482986624499e-01,-4.632167195881881638e-01,0.000000000000000000e+00 +1.493445959490883601e-01,-4.457229014178835658e-01,0.000000000000000000e+00 +1.415916870446609632e-01,-4.132414066530994967e-01,0.000000000000000000e+00 +1.471046169815218574e-01,-3.798182780384875556e-01,0.000000000000000000e+00 +1.168741520587094629e-01,-3.954055054134312797e-01,0.000000000000000000e+00 +8.503010431598016783e-02,-4.080284723117099666e-01,0.000000000000000000e+00 +5.274383352573467493e-02,-4.195411934845423851e-01,0.000000000000000000e+00 +1.856936164092268249e-02,-4.253125249659439056e-01,0.000000000000000000e+00 +3.318338180847975425e-05,-4.042375629384905023e-01,0.000000000000000000e+00 +1.167350507476158129e-02,-3.728940077777831985e-01,0.000000000000000000e+00 +3.402358397268576834e-02,-3.475102531870659095e-01,0.000000000000000000e+00 +6.496696599983242670e-02,-3.326340310186904903e-01,0.000000000000000000e+00 +9.643426086379174034e-02,-3.191945516742675792e-01,0.000000000000000000e+00 +1.285127136982477936e-01,-3.071853021572662490e-01,0.000000000000000000e+00 +1.599900736759930497e-01,-2.937760065296424750e-01,0.000000000000000000e+00 +1.877122627188177739e-01,-2.768672019521384864e-01,0.000000000000000000e+00 +1.747709810914362394e-01,-2.506414530437688915e-01,0.000000000000000000e+00 +1.995174612912174739e-01,-2.277132555020902616e-01,0.000000000000000000e+00 +2.319459973806286546e-01,-2.168822162795010777e-01,0.000000000000000000e+00 +2.649948570954468452e-01,-2.079831179720713075e-01,0.000000000000000000e+00 +2.915479825880856191e-01,-1.883668647311448896e-01,0.000000000000000000e+00 +3.164562529713312866e-01,-1.654547057564766388e-01,0.000000000000000000e+00 +3.484315182648293763e-01,-1.534648252196653406e-01,0.000000000000000000e+00 +3.822908421721623595e-01,-1.489262502468556015e-01,0.000000000000000000e+00 +4.165114280247016465e-01,-1.488381954346469638e-01,0.000000000000000000e+00 +4.506414439572319353e-01,-1.513350941564599317e-01,0.000000000000000000e+00 +4.845191923719441296e-01,-1.562056583788258290e-01,0.000000000000000000e+00 +5.182591678416457182e-01,-1.619770975469639607e-01,0.000000000000000000e+00 +5.521332745184985846e-01,-1.668726418074336915e-01,0.000000000000000000e+00 +5.862616801231644859e-01,-1.694333480776104572e-01,0.000000000000000000e+00 +6.204456023473934323e-01,-1.712047341676575241e-01,0.000000000000000000e+00 +6.546085805170877014e-01,-1.733467309423580294e-01,0.000000000000000000e+00 +6.888115965924589412e-01,-1.747243208242392210e-01,0.000000000000000000e+00 +7.230376573405689067e-01,-1.751963334949809270e-01,0.000000000000000000e+00 +7.571826284115572570e-01,-1.752419500626133386e-01,0.000000000000000000e+00 +7.770898421115361998e-01,-1.493411194486596871e-01,0.000000000000000000e+00 +7.684743933379207803e-01,-1.241482576914536284e-01,0.000000000000000000e+00 +7.403955405492995689e-01,-1.064585312388976746e-01,0.000000000000000000e+00 +7.203317363297455644e-01,-7.971616508812653934e-02,0.000000000000000000e+00 +7.037216585636167920e-01,-4.957421463282798979e-02,0.000000000000000000e+00 +6.947149790961135718e-01,-1.693398101928518529e-02,0.000000000000000000e+00 +7.204140608845941429e-01,-5.914050911204128983e-04,0.000000000000000000e+00 +7.526737506581944182e-01,-1.163262498231052398e-02,0.000000000000000000e+00 +7.807259499725544005e-01,-3.109490144437643960e-02,0.000000000000000000e+00 +8.055721078023572179e-01,-5.463304158524849574e-02,0.000000000000000000e+00 +8.299839396214792053e-01,-7.854195611378056441e-02,0.000000000000000000e+00 +8.513319186532944949e-01,-1.053299414534128731e-01,0.000000000000000000e+00 +8.779860019362593082e-01,-1.264606071336524251e-01,0.000000000000000000e+00 +9.107981070150172886e-01,-1.360745299544253439e-01,0.000000000000000000e+00 +9.426037201770547380e-01,-1.484973130652706697e-01,0.000000000000000000e+00 +9.759303908112429982e-01,-1.868084400293397729e-01,0.000000000000000000e+00 +9.914479849146261570e-01,-2.172884032708378710e-01,0.000000000000000000e+00 +9.983780336208001316e-01,-2.497903186855467972e-01,0.000000000000000000e+00 +9.862697115140190984e-01,-2.814189344071686416e-01,0.000000000000000000e+00 +9.611313682359298172e-01,-3.038005660040052902e-01,0.000000000000000000e+00 +9.512759034546959258e-01,-3.211188871025933422e-01,0.000000000000000000e+00 +9.762470840694433827e-01,-3.436508102167301071e-01,0.000000000000000000e+00 +9.583833584822459839e-01,-3.688831617255557416e-01,0.000000000000000000e+00 +9.247903207480699939e-01,-3.744242939508435342e-01,0.000000000000000000e+00 +8.920073131179411252e-01,-3.830546533053230673e-01,0.000000000000000000e+00 +8.589559162933526615e-01,-3.918486941647253419e-01,0.000000000000000000e+00 +8.252529737945747401e-01,-3.977172513233777074e-01,0.000000000000000000e+00 +7.913039775207594273e-01,-4.021419727549646050e-01,0.000000000000000000e+00 +7.572728345806460926e-01,-4.058263063471898580e-01,0.000000000000000000e+00 +7.231788425029497258e-01,-4.088934737444642198e-01,0.000000000000000000e+00 +6.890173343357033353e-01,-4.112995895202221086e-01,0.000000000000000000e+00 +6.548410707772972517e-01,-4.128209373912495872e-01,0.000000000000000000e+00 +6.206150822987386295e-01,-4.133764447681529397e-01,0.000000000000000000e+00 +5.863886776816233937e-01,-4.130595424919457082e-01,0.000000000000000000e+00 +5.521792219117106493e-01,-4.119035142789551074e-01,0.000000000000000000e+00 +5.180287720089779002e-01,-4.096643755407736176e-01,0.000000000000000000e+00 +4.840312349517308932e-01,-4.056917069293387579e-01,0.000000000000000000e+00 +4.504096361348825517e-01,-3.992706841737689860e-01,0.000000000000000000e+00 +4.173523117650859704e-01,-3.903469262960459485e-01,0.000000000000000000e+00 +3.841076527251739980e-01,-3.825367671070094566e-01,0.000000000000000000e+00 +3.499614925937803989e-01,-3.838774468248402627e-01,0.000000000000000000e+00 +3.158118618805215161e-01,-3.844156686471849604e-01,0.000000000000000000e+00 +2.821922265294392607e-01,-3.781555223092172291e-01,0.000000000000000000e+00 +2.508036048142705532e-01,-3.775333950093502922e-01,0.000000000000000000e+00 +2.391764237372329960e-01,-4.091561249831959790e-01,0.000000000000000000e+00 +2.198008448641039225e-01,-4.377841048847768146e-01,0.000000000000000000e+00 +1.919702619554073120e-01,-4.569348045840735950e-01,0.000000000000000000e+00 +1.614080773175269323e-01,-4.600189904290286069e-01,0.000000000000000000e+00 +1.434848816896125423e-01,-4.289611381332603113e-01,0.000000000000000000e+00 +1.446757200442298497e-01,-3.961378279875865105e-01,0.000000000000000000e+00 +1.325050442305379106e-01,-3.885444713278957130e-01,0.000000000000000000e+00 +1.009589081529954913e-01,-4.017213971632421776e-01,0.000000000000000000e+00 +6.906937644174659940e-02,-4.141509180285322667e-01,0.000000000000000000e+00 +3.612202628274339272e-02,-4.231870956553620000e-01,0.000000000000000000e+00 +5.700649264691284857e-03,-4.225469952405838114e-01,0.000000000000000000e+00 +4.287090359358172037e-03,-3.869748180562313511e-01,0.000000000000000000e+00 +2.104892431314304632e-02,-3.582123853351783516e-01,0.000000000000000000e+00 +4.950509561972991912e-02,-3.399034006872174718e-01,0.000000000000000000e+00 +8.061551175956468973e-02,-3.256556606728094327e-01,0.000000000000000000e+00 +1.124725193311300331e-01,-3.131302861456925490e-01,0.000000000000000000e+00 +1.444322195262622288e-01,-3.009068994334663794e-01,0.000000000000000000e+00 +1.755670796318390681e-01,-2.867243311264983108e-01,0.000000000000000000e+00 +1.740515716484076492e-01,-2.667879548943814516e-01,0.000000000000000000e+00 +1.854607033134503813e-01,-2.373643224950482133e-01,0.000000000000000000e+00 +2.155183094194720594e-01,-2.216836703679199994e-01,0.000000000000000000e+00 +2.484102700339449743e-01,-2.122068068896430515e-01,0.000000000000000000e+00 +2.807266097376955316e-01,-2.014656919265665203e-01,0.000000000000000000e+00 +3.024955143912670952e-01,-1.752830923257850393e-01,0.000000000000000000e+00 +3.320924494582984110e-01,-1.585226532062637694e-01,0.000000000000000000e+00 +3.652451820203536648e-01,-1.502873578034631119e-01,0.000000000000000000e+00 +3.994154755548741664e-01,-1.485406674529208826e-01,0.000000000000000000e+00 +4.336013969461794959e-01,-1.497487143679470112e-01,0.000000000000000000e+00 +4.676123137626350679e-01,-1.535467208810512851e-01,0.000000000000000000e+00 +5.013884998273536731e-01,-1.590925545282008136e-01,0.000000000000000000e+00 +5.351641189501842311e-01,-1.646483146473916304e-01,0.000000000000000000e+00 +5.691770893757484018e-01,-1.684218065432686595e-01,0.000000000000000000e+00 +6.033577704019764676e-01,-1.702602841924786836e-01,0.000000000000000000e+00 +6.375264280087835633e-01,-1.722863455825408008e-01,0.000000000000000000e+00 +6.717012820923538019e-01,-1.742211754051362360e-01,0.000000000000000000e+00 +7.059249574063105603e-01,-1.749350915561320718e-01,0.000000000000000000e+00 +7.401204256312554630e-01,-1.758254083636300036e-01,0.000000000000000000e+00 +7.698882884267722604e-01,-1.650048030508437791e-01,0.000000000000000000e+00 +7.829823078411078940e-01,-1.348292261869506459e-01,0.000000000000000000e+00 +7.553461132457689464e-01,-1.188551206352861517e-01,0.000000000000000000e+00 +7.292421665463911795e-01,-9.275187905749178452e-02,0.000000000000000000e+00 +7.113098027270466917e-01,-6.494058255550116954e-02,0.000000000000000000e+00 +6.975224310249921178e-01,-3.362385905600494274e-02,0.000000000000000000e+00 +7.039358321312461086e-01,-3.237918658429719387e-03,0.000000000000000000e+00 +7.368595506935902151e-01,-5.215593979146808910e-03,0.000000000000000000e+00 +7.673075451910019718e-01,-2.044102804589473937e-02,0.000000000000000000e+00 +7.932232550078981426e-01,-4.272675812227511027e-02,0.000000000000000000e+00 +8.181183488398037218e-01,-6.630053290746984462e-02,0.000000000000000000e+00 +8.406782952478774051e-01,-9.192831192011374775e-02,0.000000000000000000e+00 +8.637046443466617207e-01,-1.171720876073229500e-01,0.000000000000000000e+00 +8.941883138803523590e-01,-1.318933718723508397e-01,0.000000000000000000e+00 +9.270535477452964690e-01,-1.414143057307035989e-01,0.000000000000000000e+00 +9.559763124113139776e-01,-1.590819916373930609e-01,0.000000000000000000e+00 +4.758643357732930679e-01,-1.903475291881132347e-01,0.000000000000000000e+00 +5.671825408068029706e-01,-3.773720392608747032e-01,0.000000000000000000e+00 +6.711220943331064337e-01,-3.770776914040966932e-01,0.000000000000000000e+00 +7.760017924503996856e-01,-3.695748019965913733e-01,0.000000000000000000e+00 +3.551473973405900875e-01,-1.777882657966591839e-01,0.000000000000000000e+00 +6.191170363064392168e-01,-2.058279870653624277e-01,0.000000000000000000e+00 +4.652633068382137083e-01,-3.667638034219364296e-01,0.000000000000000000e+00 +7.224126990544733617e-01,-2.088661494052036216e-01,0.000000000000000000e+00 +3.979140800997539862e-01,-3.543826845953919058e-01,0.000000000000000000e+00 +2.934207107828524785e-01,-3.482112213507245757e-01,0.000000000000000000e+00 +8.961941091941075799e-01,-1.707417168745701819e-01,0.000000000000000000e+00 +2.295694161634496411e-01,-3.630456531788731067e-01,0.000000000000000000e+00 +2.477565263145260210e-01,-2.467494892625835545e-01,0.000000000000000000e+00 +7.923308736971882427e-01,-1.879072968113708886e-01,0.000000000000000000e+00 +1.757970241079424567e-01,-3.213180202551493281e-01,0.000000000000000000e+00 +8.320669263890839717e-01,-1.296681232222450797e-01,0.000000000000000000e+00 +8.437198540015915516e-01,-3.613715178891810931e-01,0.000000000000000000e+00 +1.729108397743680248e-01,-3.803616697371632882e-01,0.000000000000000000e+00 +7.633227674156383147e-01,-8.893633101270602415e-02,0.000000000000000000e+00 +9.229620311976243219e-01,-1.860876070519127123e-01,0.000000000000000000e+00 +9.674789127723860682e-01,-2.346273340069784108e-01,0.000000000000000000e+00 +3.085674321158130562e-01,-2.154332028990514070e-01,0.000000000000000000e+00 +9.068062851853768702e-01,-3.506096437984659864e-01,0.000000000000000000e+00 +1.082539985235490831e-01,-3.571792675890832491e-01,0.000000000000000000e+00 +4.680526559621903115e-02,-3.830499499760290916e-01,0.000000000000000000e+00 +7.393955892670657226e-01,-4.436612074882604478e-02,0.000000000000000000e+00 +9.466744048896639230e-01,-2.625010391609032823e-01,0.000000000000000000e+00 +3.288833767430258681e-01,-3.487658860848344977e-01,0.000000000000000000e+00 +6.015114092848007354e-01,-3.782129438858518600e-01,0.000000000000000000e+00 +5.093240929167620612e-01,-1.964601968007389787e-01,0.000000000000000000e+00 +5.330980607454434139e-01,-3.752890035873041596e-01,0.000000000000000000e+00 +7.930145925642655413e-01,-1.257802938477953769e-01,0.000000000000000000e+00 +7.060759434115161381e-01,-3.751166895984072713e-01,0.000000000000000000e+00 +6.540258508002417814e-01,-2.072068840346183716e-01,0.000000000000000000e+00 +5.831597800220046368e-01,-2.046077839877559756e-01,0.000000000000000000e+00 +1.745951897452687751e-01,-4.146514510495146189e-01,0.000000000000000000e+00 +4.115203829661017720e-01,-1.826282952764902434e-01,0.000000000000000000e+00 +2.053509338350768265e-01,-4.076554131787060165e-01,0.000000000000000000e+00 +2.687798931048506965e-02,-3.925998151312731776e-01,0.000000000000000000e+00 +8.008467262189388203e-01,-9.886633629149035873e-02,0.000000000000000000e+00 +7.583217289756913893e-01,-5.665413006211751645e-02,0.000000000000000000e+00 +8.760154569655050905e-01,-3.560240314584461330e-01,0.000000000000000000e+00 +7.216343867576107129e-01,-3.302954689163566104e-02,0.000000000000000000e+00 +9.295387254263338672e-01,-3.247837469439823765e-01,0.000000000000000000e+00 +9.350323375556346406e-01,-3.439041159511139756e-01,0.000000000000000000e+00 +4.317565277429379900e-01,-3.604071344765167328e-01,0.000000000000000000e+00 +4.641128006102408499e-01,-2.236968405307501739e-01,0.000000000000000000e+00 +5.983838976391873121e-01,-3.437804590397174342e-01,0.000000000000000000e+00 +6.681266112539991919e-01,-3.424213266016949420e-01,0.000000000000000000e+00 +8.436560470091886144e-01,-3.290149535419582549e-01,0.000000000000000000e+00 +6.198873994817153399e-01,-2.405542920193709244e-01,0.000000000000000000e+00 +4.656980743580376170e-01,-3.317721297520744850e-01,0.000000000000000000e+00 +3.279003375265204800e-01,-3.137782109038944056e-01,0.000000000000000000e+00 +8.827989192544545283e-01,-1.999288805441601369e-01,0.000000000000000000e+00 +2.039343723539704945e-01,-3.057124403350255926e-01,0.000000000000000000e+00 +9.254499782470604341e-01,-2.356680606675141398e-01,0.000000000000000000e+00 +9.077342887658437220e-01,-3.233813565463941053e-01,0.000000000000000000e+00 +1.467040807912486644e-01,-3.453392628622513616e-01,0.000000000000000000e+00 +8.607599948713474669e-01,-1.599196160681705392e-01,0.000000000000000000e+00 +2.781004831365359586e-01,-2.324976146933141752e-01,0.000000000000000000e+00 +8.115604695896321275e-01,-1.576049060621117215e-01,0.000000000000000000e+00 +2.601447198689392781e-01,-3.525378442468009021e-01,0.000000000000000000e+00 +5.645516606181359975e-01,-3.430862481734711644e-01,0.000000000000000000e+00 +5.457692968961150859e-01,-2.019967820454419971e-01,0.000000000000000000e+00 +6.359521455294343539e-01,-3.780443307041958523e-01,0.000000000000000000e+00 +6.888234646787974036e-01,-2.084978924130858058e-01,0.000000000000000000e+00 +7.410215789622998095e-01,-3.725194685262837591e-01,0.000000000000000000e+00 +8.099420680125494210e-01,-3.659471274110429051e-01,0.000000000000000000e+00 +4.993771430599935335e-01,-3.717626345754508344e-01,0.000000000000000000e+00 +2.176387779039584136e-01,-2.611369641272491826e-01,0.000000000000000000e+00 +3.640036540461653036e-01,-3.505996112097617412e-01,0.000000000000000000e+00 +4.442018667056373826e-01,-1.852510149041703691e-01,0.000000000000000000e+00 +9.155813556222368588e-01,-2.887418191565107595e-01,0.000000000000000000e+00 +4.324569577738464066e-01,-3.256323961532492373e-01,0.000000000000000000e+00 +7.825995331609983952e-01,-2.167172480433695314e-01,0.000000000000000000e+00 +3.790345614922238093e-01,-1.813112421452115486e-01,0.000000000000000000e+00 +9.456773315296251869e-01,-2.073331584709635356e-01,0.000000000000000000e+00 +7.892029903465019869e-01,-6.886697489263868266e-02,0.000000000000000000e+00 +2.004710511897020431e-01,-3.744916102261892643e-01,0.000000000000000000e+00 +7.533746233891899236e-01,-2.100638342965812921e-01,0.000000000000000000e+00 +3.369519479300930875e-01,-1.949183226440833749e-01,0.000000000000000000e+00 +7.589534295223800131e-02,-3.702260097168440511e-01,0.000000000000000000e+00 +7.401581205553239284e-01,-3.371035251877894101e-01,0.000000000000000000e+00 +4.091498717411049535e-01,-2.076897346199615413e-01,0.000000000000000000e+00 +7.277140984455687800e-01,-2.455241774991213100e-01,0.000000000000000000e+00 +3.633674399753273887e-01,-3.159066252379092443e-01,0.000000000000000000e+00 +8.137463600625431948e-01,-1.959591333313698558e-01,0.000000000000000000e+00 +6.551174625480457037e-01,-2.410907846156699619e-01,0.000000000000000000e+00 +5.937656550879697459e-01,-3.099504803452091117e-01,0.000000000000000000e+00 +4.709477294588926277e-01,-2.975964490348347868e-01,0.000000000000000000e+00 +8.102301179943416365e-01,-3.327597020161534025e-01,0.000000000000000000e+00 +4.992314228850241453e-01,-3.370328086573093351e-01,0.000000000000000000e+00 +2.640290203934514413e-01,-2.759265113268629666e-01,0.000000000000000000e+00 +3.235075958783928396e-01,-2.459929335834832864e-01,0.000000000000000000e+00 +4.334070588731500639e-01,-2.162354356505730713e-01,0.000000000000000000e+00 +2.876803676942238375e-01,-3.078191707397314181e-01,0.000000000000000000e+00 +9.005159358472522024e-01,-2.537688625083081573e-01,0.000000000000000000e+00 +1.904801774034833306e-01,-3.472920895344513426e-01,0.000000000000000000e+00 +8.639304315158450320e-01,-1.898893803026149574e-01,0.000000000000000000e+00 +6.327651343241001980e-01,-3.434673777038448894e-01,0.000000000000000000e+00 +4.969368652648180618e-01,-2.312259357116186187e-01,0.000000000000000000e+00 +5.317987480425681035e-01,-3.409229943786196704e-01,0.000000000000000000e+00 +7.035421939117628698e-01,-3.398430085158586356e-01,0.000000000000000000e+00 +5.831468198103439970e-01,-2.408273344250011494e-01,0.000000000000000000e+00 +2.340748110565891993e-01,-2.911884594427929240e-01,0.000000000000000000e+00 +3.985650422362517209e-01,-3.198237927087647092e-01,0.000000000000000000e+00 +9.050269425175504479e-01,-2.145949116599452089e-01,0.000000000000000000e+00 +8.311630492357143796e-01,-1.805250514833566799e-01,0.000000000000000000e+00 +1.715688973733653921e-01,-3.578368212178256735e-01,0.000000000000000000e+00 +8.763484254971813936e-01,-3.250757251002138748e-01,0.000000000000000000e+00 +3.718093401425505151e-01,-2.259035495937066207e-01,0.000000000000000000e+00 +7.517780935308923107e-01,-2.325692653377189056e-01,0.000000000000000000e+00 +8.083824412264911663e-01,-3.002254016301318940e-01,0.000000000000000000e+00 +8.461547417567748530e-01,-2.038996830656017445e-01,0.000000000000000000e+00 +5.313831912811556313e-01,-3.092424345596003210e-01,0.000000000000000000e+00 +6.631139276498668744e-01,-3.082258879592723599e-01,0.000000000000000000e+00 +4.153189432870566522e-01,-2.470658966921946142e-01,0.000000000000000000e+00 +7.563546959000380099e-01,-2.669663498354982178e-01,0.000000000000000000e+00 +4.494414874443880548e-01,-2.565423268198447349e-01,0.000000000000000000e+00 +6.281052776643845093e-01,-3.092160227754364166e-01,0.000000000000000000e+00 +4.825789161961286933e-01,-2.646736203910355356e-01,0.000000000000000000e+00 +6.981317788803473867e-01,-3.055287853290714617e-01,0.000000000000000000e+00 +3.292674680733390091e-01,-2.792520780901429633e-01,0.000000000000000000e+00 +5.612977848997102726e-01,-3.106442737990984804e-01,0.000000000000000000e+00 +6.897146529399529324e-01,-2.418617179641145420e-01,0.000000000000000000e+00 +6.233654127794022726e-01,-2.750703795457774548e-01,0.000000000000000000e+00 +2.179717040970744202e-01,-3.344957423870991153e-01,0.000000000000000000e+00 +4.035459709719586008e-01,-2.829741238390200420e-01,0.000000000000000000e+00 +5.382752331757686415e-01,-2.450040750003640300e-01,0.000000000000000000e+00 +7.756656322162326367e-01,-3.350725199775784202e-01,0.000000000000000000e+00 +8.411427234346373627e-01,-2.968167345515643207e-01,0.000000000000000000e+00 +3.663930218449581999e-01,-2.779438394081222841e-01,0.000000000000000000e+00 +5.026110375549056597e-01,-3.045116874870671952e-01,0.000000000000000000e+00 +2.924611505996065342e-01,-2.602494197046547608e-01,0.000000000000000000e+00 +4.389477782121096183e-01,-2.907361423365004138e-01,0.000000000000000000e+00 +8.177761721389994465e-01,-2.234618528053904096e-01,0.000000000000000000e+00 +2.491181498581919729e-01,-3.220434664254004375e-01,0.000000000000000000e+00 +8.916457693479485913e-01,-2.328956924082251634e-01,0.000000000000000000e+00 +8.750354293149434914e-01,-2.932504906952229096e-01,0.000000000000000000e+00 +7.717024438815726084e-01,-2.433836049511995669e-01,0.000000000000000000e+00 +3.036217032007398342e-01,-2.812920086854000523e-01,0.000000000000000000e+00 +8.394858339922408597e-01,-2.647917988942800616e-01,0.000000000000000000e+00 +7.757734680203751676e-01,-3.020582189462165945e-01,0.000000000000000000e+00 +5.324998116329323627e-01,-2.866891010875259327e-01,0.000000000000000000e+00 +5.879106965496425641e-01,-2.761840382377800940e-01,0.000000000000000000e+00 +7.369605980068132389e-01,-2.962720269264106920e-01,0.000000000000000000e+00 +6.584307667128174169e-01,-2.745540152091699437e-01,0.000000000000000000e+00 +8.660924324585490552e-01,-2.286496424252739690e-01,0.000000000000000000e+00 +6.924252993167899772e-01,-2.734514274306238391e-01,0.000000000000000000e+00 +7.175758193902993520e-01,-2.718212401854461779e-01,0.000000000000000000e+00 +8.016517622698151602e-01,-2.631866533391820639e-01,0.000000000000000000e+00 +7.762493443856517406e-01,-2.784232080218305150e-01,0.000000000000000000e+00 +8.709237179968939424e-01,-2.619230280452982673e-01,0.000000000000000000e+00 +8.405498914093355589e-01,-2.404689654949395405e-01,0.000000000000000000e+00 +5.131852132949249468e-01,-2.758861038334453064e-01,0.000000000000000000e+00 +5.539276823173245878e-01,-2.790767273973124851e-01,0.000000000000000000e+00 +1.471084302243482467e-01,-3.625113098298492487e-01,0.000000000000000000e+00 +1.126107496049992968e-01,-3.762503086727627677e-01,0.000000000000000000e+00 +1.274566616205588809e-01,-3.512950204115504738e-01,0.000000000000000000e+00 +1.298089402882323107e-01,-3.697778245534685260e-01,0.000000000000000000e+00 +7.920779546234331114e-01,-3.011418102881742165e-01,0.000000000000000000e+00 +7.760114062030134541e-01,-2.902407134840235825e-01,0.000000000000000000e+00 +7.889505533277334504e-01,-2.708049306805062617e-01,0.000000000000000000e+00 +8.050171017481531077e-01,-2.817060274846570067e-01,0.000000000000000000e+00 +7.905142539755833919e-01,-2.859733704843402946e-01,0.000000000000000000e+00 +8.857198269220730724e-01,-2.578459452768032123e-01,0.000000000000000000e+00 +8.685257831789102712e-01,-2.453368025989940415e-01,0.000000000000000000e+00 +8.787457270718268543e-01,-2.307550438984988239e-01,0.000000000000000000e+00 +8.960808525976003969e-01,-2.433322774582666603e-01,0.000000000000000000e+00 +8.821042099883059651e-01,-2.444851870412732553e-01,0.000000000000000000e+00 +9.096129735289265605e-01,-1.784379064036034634e-01,0.000000000000000000e+00 +9.139944868575873294e-01,-2.003412593559289467e-01,0.000000000000000000e+00 +8.938415397551767727e-01,-2.072363493715408955e-01,0.000000000000000000e+00 +8.895042494790612597e-01,-1.851942920006882098e-01,0.000000000000000000e+00 +9.018047232256225509e-01,-1.927721654549063579e-01,0.000000000000000000e+00 +1.954756142965926868e-01,-3.608918498803203034e-01,0.000000000000000000e+00 +2.042259407502788893e-01,-3.408939159607752289e-01,0.000000000000000000e+00 +2.237705601302620306e-01,-3.487706977829860833e-01,0.000000000000000000e+00 +2.150202336765758560e-01,-3.687686317025311578e-01,0.000000000000000000e+00 +2.096230872134273726e-01,-3.548312738316531934e-01,0.000000000000000000e+00 +9.311278802559503909e-01,-2.756214291587070209e-01,0.000000000000000000e+00 +9.080486457347445306e-01,-2.712553408324094306e-01,0.000000000000000000e+00 +9.129829570471563738e-01,-2.447184615879111624e-01,0.000000000000000000e+00 +9.360621915683622341e-01,-2.490845499142086972e-01,0.000000000000000000e+00 +9.220554186515534933e-01,-2.601699453733090639e-01,0.000000000000000000e+00 +7.820516963472619043e-01,-9.393866525343556872e-02,0.000000000000000000e+00 +7.969509754300297955e-01,-1.121653961474641803e-01,0.000000000000000000e+00 +7.816175589360344622e-01,-1.246103382132522919e-01,0.000000000000000000e+00 +7.662504935051188681e-01,-1.066670627618061390e-01,0.000000000000000000e+00 +7.816274787472444752e-01,-1.092848066204265833e-01,0.000000000000000000e+00 +9.799454222428665151e-01,-2.500792584965004228e-01,0.000000000000000000e+00 +9.610881449342085769e-01,-2.785477779572944068e-01,0.000000000000000000e+00 +9.570766588310249956e-01,-2.485641865839408604e-01,0.000000000000000000e+00 +9.716731851725219915e-01,-2.649915604955547233e-01,0.000000000000000000e+00 +5.432137469751284753e-01,-2.828829142424191812e-01,0.000000000000000000e+00 +5.228425124639286548e-01,-2.812876024604856195e-01,0.000000000000000000e+00 +5.257302232353467941e-01,-2.604450894169046959e-01,0.000000000000000000e+00 +5.461014577465466147e-01,-2.620404011988382575e-01,0.000000000000000000e+00 +5.344719851052376347e-01,-2.716640018296619941e-01,0.000000000000000000e+00 +8.044222001039538772e-02,-3.891376164234359170e-01,0.000000000000000000e+00 +4.971881703336779312e-02,-4.013942765427315207e-01,0.000000000000000000e+00 +6.134240073773505192e-02,-3.766490651275694601e-01,0.000000000000000000e+00 +6.524949657948102277e-02,-3.954432941013160119e-01,0.000000000000000000e+00 +7.306340260984324209e-01,-3.875952760366716682e-02,0.000000000000000000e+00 +7.210242238211024279e-01,-1.681047599137803703e-02,0.000000000000000000e+00 +7.460761165139272455e-01,-2.791367710793213677e-02,0.000000000000000000e+00 +7.338566667708149582e-01,-2.178185791178478131e-02,0.000000000000000000e+00 +9.204338668777733989e-02,-3.636887740176958372e-01,0.000000000000000000e+00 +7.041468752207014070e-02,-3.514251291609492567e-01,0.000000000000000000e+00 +1.023142291724693370e-01,-3.382057455400079293e-01,0.000000000000000000e+00 +8.634351914620919111e-02,-3.446829288743002428e-01,0.000000000000000000e+00 +3.077903526103721310e-01,-3.107986908218128841e-01,0.000000000000000000e+00 +3.283918571347731463e-01,-3.312720484943644239e-01,0.000000000000000000e+00 +3.111520437629391456e-01,-3.484885537177795367e-01,0.000000000000000000e+00 +2.905505392385381302e-01,-3.280151960452279969e-01,0.000000000000000000e+00 +3.094711981866555828e-01,-3.296436222697962104e-01,0.000000000000000000e+00 +2.629285047255309760e-01,-2.396235519779488787e-01,0.000000000000000000e+00 +2.852808168680712742e-01,-2.463735171989844819e-01,0.000000000000000000e+00 +2.782450854965289877e-01,-2.680879655157588637e-01,0.000000000000000000e+00 +2.558927733539887450e-01,-2.613380002947232605e-01,0.000000000000000000e+00 +2.705867951110300096e-01,-2.538557587468538990e-01,0.000000000000000000e+00 +3.691011809937543298e-01,-2.519236945009144524e-01,0.000000000000000000e+00 +3.478302449591486045e-01,-2.785979587491326237e-01,0.000000000000000000e+00 +3.263875319758658966e-01,-2.626225058368131249e-01,0.000000000000000000e+00 +3.476584680104716774e-01,-2.359482415885949536e-01,0.000000000000000000e+00 +3.477443564848101687e-01,-2.572731001688637886e-01,0.000000000000000000e+00 +3.160375139971029479e-01,-2.307130682412673606e-01,0.000000000000000000e+00 +3.227596900229530719e-01,-2.051757627715674048e-01,0.000000000000000000e+00 +3.543806440363218013e-01,-2.104109361188949978e-01,0.000000000000000000e+00 +3.352090790167123746e-01,-2.205620021800811792e-01,0.000000000000000000e+00 +4.867793835068991437e-01,-3.010540682609509910e-01,0.000000000000000000e+00 +5.009212302199649303e-01,-3.207722480721882929e-01,0.000000000000000000e+00 +4.824647486215308811e-01,-3.344024692046919101e-01,0.000000000000000000e+00 +4.683229019084651501e-01,-3.146842893934546082e-01,0.000000000000000000e+00 +4.846220660642149847e-01,-3.177282687328214505e-01,0.000000000000000000e+00 +5.775317199938400092e-01,-3.102973770721537683e-01,0.000000000000000000e+00 +5.576127336085174857e-01,-2.948605005982054550e-01,0.000000000000000000e+00 +5.709191894334835204e-01,-2.776303828175462618e-01,0.000000000000000000e+00 +5.908381758188061550e-01,-2.930672592914945751e-01,0.000000000000000000e+00 +5.742254547136618203e-01,-2.939638799448500150e-01,0.000000000000000000e+00 +2.767827153258958783e-01,-3.503745327987627389e-01,0.000000000000000000e+00 +2.546314348635656533e-01,-3.372906553361006976e-01,0.000000000000000000e+00 +2.683992587762079052e-01,-3.149313185825659556e-01,0.000000000000000000e+00 +2.725909870510518918e-01,-3.326529256906644028e-01,0.000000000000000000e+00 +3.456338887509239344e-01,-3.148424180709018527e-01,0.000000000000000000e+00 +3.636855470107463462e-01,-3.332531182238355205e-01,0.000000000000000000e+00 +3.464435153945956136e-01,-3.496827486472980917e-01,0.000000000000000000e+00 +3.460387020727597740e-01,-3.322625833590999722e-01,0.000000000000000000e+00 +7.417346173153090971e-01,-8.427875864807138351e-02,0.000000000000000000e+00 +7.297232410268793545e-01,-6.197346876537799393e-02,0.000000000000000000e+00 +7.487352796173317726e-01,-5.047382190355233222e-02,0.000000000000000000e+00 +7.607881757675236667e-01,-7.289135284669494286e-02,0.000000000000000000e+00 +7.450590715804602526e-01,-6.759128375171170877e-02,0.000000000000000000e+00 +1.580779330703509511e-01,-4.138693690284174220e-01,0.000000000000000000e+00 +1.749767119303549667e-01,-4.389327951997624711e-01,0.000000000000000000e+00 +1.590143639782513607e-01,-4.363614118878089698e-01,0.000000000000000000e+00 +6.056380546645223628e-01,-2.756272088917787744e-01,0.000000000000000000e+00 +6.257353452218934464e-01,-2.921432011606069357e-01,0.000000000000000000e+00 +6.109354663761771276e-01,-3.095832515603227364e-01,0.000000000000000000e+00 +6.082867605203499117e-01,-2.926052302260507276e-01,0.000000000000000000e+00 +8.734571041279048931e-01,-1.949588182206617171e-01,0.000000000000000000e+00 +8.623389359421139710e-01,-1.747997674121995471e-01,0.000000000000000000e+00 +8.784908928795764904e-01,-1.654330912483017446e-01,0.000000000000000000e+00 +8.761075275592062894e-01,-1.798835178850938521e-01,0.000000000000000000e+00 +7.563670330135942033e-01,-2.991651229363136433e-01,0.000000000000000000e+00 +7.466576469534256244e-01,-2.816191883809544549e-01,0.000000000000000000e+00 +7.663020201428448752e-01,-2.726947789286643387e-01,0.000000000000000000e+00 +7.613345265782196503e-01,-2.859299509324889632e-01,0.000000000000000000e+00 +8.157934214878703738e-01,-2.098011911061957724e-01,0.000000000000000000e+00 +8.002407736789675097e-01,-2.199963580477819758e-01,0.000000000000000000e+00 +7.875276446525318885e-01,-2.023855115491677847e-01,0.000000000000000000e+00 +8.029641938881721952e-01,-1.918626930670940256e-01,0.000000000000000000e+00 +8.015009037528186830e-01,-2.062095053894533736e-01,0.000000000000000000e+00 +6.343586399267673315e-01,-3.607558542040203431e-01,0.000000000000000000e+00 +6.187317774071174892e-01,-3.781286372950238839e-01,0.000000000000000000e+00 +5.999476534619940793e-01,-3.609967014627846194e-01,0.000000000000000000e+00 +6.155745159816436995e-01,-3.436239183717811896e-01,0.000000000000000000e+00 +6.171531466943805944e-01,-3.608762778334025367e-01,0.000000000000000000e+00 +2.063803307409166621e-01,-4.279510147703345924e-01,0.000000000000000000e+00 +1.899055200433127089e-01,-4.111036445536799810e-01,0.000000000000000000e+00 +1.908133987572453727e-01,-4.340329865201705828e-01,0.000000000000000000e+00 +2.258567944802737926e-01,-2.761627117850210533e-01,0.000000000000000000e+00 +2.190045917052798607e-01,-2.984504498889092305e-01,0.000000000000000000e+00 +1.958233175363941481e-01,-2.912898211435820395e-01,0.000000000000000000e+00 +2.026755203113880799e-01,-2.690020830396938623e-01,0.000000000000000000e+00 +2.108400560083339703e-01,-2.837262664643015464e-01,0.000000000000000000e+00 +2.085781195975879299e-01,-2.444251098146697221e-01,0.000000000000000000e+00 +1.904730866840595449e-01,-2.547000164655849330e-01,0.000000000000000000e+00 +9.035164609948910241e-01,-1.533863785820736569e-01,0.000000000000000000e+00 +9.327828756873395299e-01,-1.672924600585916910e-01,0.000000000000000000e+00 +9.183859988708804600e-01,-1.598966425728463037e-01,0.000000000000000000e+00 +3.308952560798141818e-01,-3.668968735618568511e-01,0.000000000000000000e+00 +2.961505764390796047e-01,-3.650879895197660652e-01,0.000000000000000000e+00 +3.134819528217303031e-01,-3.664521111824822208e-01,0.000000000000000000e+00 +6.456096026571256363e-01,-3.087209553673543883e-01,0.000000000000000000e+00 +6.656202694519330887e-01,-3.253236072804836509e-01,0.000000000000000000e+00 +6.504458727890496395e-01,-3.429443521527699157e-01,0.000000000000000000e+00 +6.304352059942424091e-01,-3.263417002396406530e-01,0.000000000000000000e+00 +6.480277377230877489e-01,-3.258326537600621520e-01,0.000000000000000000e+00 +8.953083924685901751e-01,-2.909961549258668345e-01,0.000000000000000000e+00 +8.729795736559187169e-01,-2.775867593702605607e-01,0.000000000000000000e+00 +8.905141096953316238e-01,-2.744210501013349957e-01,0.000000000000000000e+00 +2.335449269776331827e-01,-3.282696044062497487e-01,0.000000000000000000e+00 +2.448570680161944457e-01,-3.577917487128370322e-01,0.000000000000000000e+00 +2.392009974969138419e-01,-3.430306765595434459e-01,0.000000000000000000e+00 +4.897578907304733775e-01,-2.479497780513270633e-01,0.000000000000000000e+00 +4.660102018202583740e-01,-2.606079736054401352e-01,0.000000000000000000e+00 +4.567771440273144523e-01,-2.401195836752974544e-01,0.000000000000000000e+00 +4.805248329375294558e-01,-2.274613881211843824e-01,0.000000000000000000e+00 +4.732675173788938872e-01,-2.440346808633122588e-01,0.000000000000000000e+00 +6.408980897461098447e-01,-2.748121973774736992e-01,0.000000000000000000e+00 +6.607723471813421456e-01,-2.913899515842211518e-01,0.000000000000000000e+00 +6.432538462016177405e-01,-2.917665763724140437e-01,0.000000000000000000e+00 +5.155150854637960967e-01,-3.389779015179644750e-01,0.000000000000000000e+00 +5.169971144180306455e-01,-3.068770610233337859e-01,0.000000000000000000e+00 +5.315909696618619229e-01,-3.250827144691099679e-01,0.000000000000000000e+00 +5.162560999409133711e-01,-3.229274812706491304e-01,0.000000000000000000e+00 +5.814677791286616548e-01,-3.434333536065943271e-01,0.000000000000000000e+00 +5.843469750458019085e-01,-3.777924915733632538e-01,0.000000000000000000e+00 +5.658671007124694841e-01,-3.602291437171729616e-01,0.000000000000000000e+00 +5.829073770872318372e-01,-3.606129225899787905e-01,0.000000000000000000e+00 +4.823202249491036486e-01,-3.692632189986936320e-01,0.000000000000000000e+00 +5.001870590832012686e-01,-3.898520299514138809e-01,0.000000000000000000e+00 +4.662111573047739710e-01,-3.847946367730982198e-01,0.000000000000000000e+00 +4.831757299504173542e-01,-3.874774629640161949e-01,0.000000000000000000e+00 +5.176060492202934071e-01,-2.381150053559913382e-01,0.000000000000000000e+00 +5.031304790907900060e-01,-2.138430662561787987e-01,0.000000000000000000e+00 +5.275466949064385735e-01,-1.992284894230904879e-01,0.000000000000000000e+00 +5.420222650359418637e-01,-2.235004285229030274e-01,0.000000000000000000e+00 +5.225763720633658238e-01,-2.186717473895408992e-01,0.000000000000000000e+00 +6.545716566741437425e-01,-2.241488343251441528e-01,0.000000000000000000e+00 +6.714246577395195370e-01,-2.078523882238521026e-01,0.000000000000000000e+00 +6.892690588093751680e-01,-2.251798051886001739e-01,0.000000000000000000e+00 +6.724160577439992625e-01,-2.414762512898922520e-01,0.000000000000000000e+00 +6.719203577417593998e-01,-2.246643197568721773e-01,0.000000000000000000e+00 +3.648802309101427666e-01,-2.969252323230157642e-01,0.000000000000000000e+00 +3.285839027999297723e-01,-2.965151444970186567e-01,0.000000000000000000e+00 +3.467320668550363250e-01,-2.967201884100172382e-01,0.000000000000000000e+00 +6.910699761283713993e-01,-2.576565726973691905e-01,0.000000000000000000e+00 +6.754280330148036970e-01,-2.740027213198968914e-01,0.000000000000000000e+00 +6.567741146304315603e-01,-2.578223999124199528e-01,0.000000000000000000e+00 +6.739220453794014798e-01,-2.577394863048945717e-01,0.000000000000000000e+00 +7.479957162227250933e-01,-1.007641532375175980e-01,0.000000000000000000e+00 +8.983363559327495196e-01,-2.237453020340851861e-01,0.000000000000000000e+00 +8.744086573405038809e-01,-2.142840807984588425e-01,0.000000000000000000e+00 +8.862331472421002276e-01,-2.188563390286119570e-01,0.000000000000000000e+00 +8.460039495521184394e-01,-1.702896961739949200e-01,0.000000000000000000e+00 +8.212861914230901172e-01,-1.690466987157890344e-01,0.000000000000000000e+00 +8.219031203776447914e-01,-1.434672039286393197e-01,0.000000000000000000e+00 +8.464213413365546668e-01,-1.448154171027000725e-01,0.000000000000000000e+00 +8.340229543766976006e-01,-1.568208800319896290e-01,0.000000000000000000e+00 +8.021756102577188852e-01,-1.727871613136354179e-01,0.000000000000000000e+00 +7.747906668967927679e-01,-1.817166830510665854e-01,0.000000000000000000e+00 +7.942515930671545377e-01,-1.533457755659067834e-01,0.000000000000000000e+00 +7.859972686847107592e-01,-1.689001134766671131e-01,0.000000000000000000e+00 +2.109530382255224712e-01,-3.201040913610623262e-01,0.000000000000000000e+00 +2.415964804573905722e-01,-3.066159629340966530e-01,0.000000000000000000e+00 +2.262747593414565217e-01,-3.133600271475794896e-01,0.000000000000000000e+00 +8.100860930034454732e-01,-3.493534147135981538e-01,0.000000000000000000e+00 +7.929719302314746088e-01,-3.677609647038171392e-01,0.000000000000000000e+00 +7.758337123333161056e-01,-3.523236609870848968e-01,0.000000000000000000e+00 +7.929478751052871921e-01,-3.339161109968659114e-01,0.000000000000000000e+00 +7.929599026683809004e-01,-3.508385378503415253e-01,0.000000000000000000e+00 +1.737608115476713400e-01,-3.975222295031195507e-01,0.000000000000000000e+00 +1.866673231901929686e-01,-3.772247946731457913e-01,0.000000000000000000e+00 +2.028605934098171859e-01,-3.911181369943926844e-01,0.000000000000000000e+00 +1.882975975255097578e-01,-3.943269717595217494e-01,0.000000000000000000e+00 +4.993042829725088394e-01,-3.543977216163800570e-01,0.000000000000000000e+00 +4.654806905981256904e-01,-3.492679665870054295e-01,0.000000000000000000e+00 +4.823924867853172649e-01,-3.518328441016926877e-01,0.000000000000000000e+00 +6.806228532651070751e-01,-3.068773366441719386e-01,0.000000000000000000e+00 +6.952785390985687375e-01,-2.894901063798476226e-01,0.000000000000000000e+00 +6.780254431399554971e-01,-2.904400289820343595e-01,0.000000000000000000e+00 +1.881473843892379760e-02,-3.827646552213337383e-01,0.000000000000000000e+00 +2.224306973160028802e-02,-4.090121738581113386e-01,0.000000000000000000e+00 +1.106826487613945913e-02,-4.017712325960993147e-01,0.000000000000000000e+00 +2.490519157250203341e-01,-2.835574853848279453e-01,0.000000000000000000e+00 +2.758546940438376671e-01,-2.918728410332971923e-01,0.000000000000000000e+00 +2.587255872506141197e-01,-2.992444019836969504e-01,0.000000000000000000e+00 +8.436879505053900274e-01,-3.451932357155697018e-01,0.000000000000000000e+00 +8.268309610070705418e-01,-3.636593226501120268e-01,0.000000000000000000e+00 +8.269430825017651809e-01,-3.308873277790558287e-01,0.000000000000000000e+00 +8.268870217544178614e-01,-3.472733252145839278e-01,0.000000000000000000e+00 +2.398512618475773239e-01,-2.318158527710423300e-01,0.000000000000000000e+00 +2.326976521092422034e-01,-2.539432266949163686e-01,0.000000000000000000e+00 +2.241079807643571176e-01,-2.378134485314182256e-01,0.000000000000000000e+00 +9.384390203162258359e-01,-3.585174844482976741e-01,0.000000000000000000e+00 +9.500540652480197190e-01,-3.375205295563170060e-01,0.000000000000000000e+00 +9.580642355654771514e-01,-3.525422461640957961e-01,0.000000000000000000e+00 +8.164759495198389283e-01,-1.142834136668458844e-01,0.000000000000000000e+00 +8.028600734808869488e-01,-1.412068403114767612e-01,0.000000000000000000e+00 +8.096458009306042314e-01,-1.278828818217576380e-01,0.000000000000000000e+00 +5.463404880904330074e-01,-3.099433541793493729e-01,0.000000000000000000e+00 +5.629247227589231350e-01,-3.268652609862848224e-01,0.000000000000000000e+00 +5.481752043303520505e-01,-3.420046212760454174e-01,0.000000000000000000e+00 +5.472578462103925290e-01,-3.259739877276974229e-01,0.000000000000000000e+00 +7.405898497588119245e-01,-3.548114968570366123e-01,0.000000000000000000e+00 +7.235487611869080293e-01,-3.738180790623455430e-01,0.000000000000000000e+00 +7.048090686616395040e-01,-3.574798490571329257e-01,0.000000000000000000e+00 +7.218501572335433991e-01,-3.384732668518239951e-01,0.000000000000000000e+00 +7.226994592102257142e-01,-3.561456729570847690e-01,0.000000000000000000e+00 +6.715330305880582440e-01,-3.946293702381635238e-01,0.000000000000000000e+00 +6.368414232085974902e-01,-3.956304763150370052e-01,0.000000000000000000e+00 +6.535371199312703938e-01,-3.775610110541463005e-01,0.000000000000000000e+00 +6.541890953542838227e-01,-3.951909742226978883e-01,0.000000000000000000e+00 +6.025065383588624757e-01,-3.957662207430591161e-01,0.000000000000000000e+00 +5.682313151819931019e-01,-3.949828699257625919e-01,0.000000000000000000e+00 +5.853678263637125401e-01,-3.954260170326544532e-01,0.000000000000000000e+00 +8.153595206581912835e-01,-8.867040268674179770e-02,0.000000000000000000e+00 +8.416773307268010651e-01,-1.175120939470729459e-01,0.000000000000000000e+00 +8.284798310049386050e-01,-1.031341270968250817e-01,0.000000000000000000e+00 +7.757195501183038466e-01,-3.185653694618975074e-01,0.000000000000000000e+00 +7.579118763857782826e-01,-3.360880225826838874e-01,0.000000000000000000e+00 +7.385593592810686392e-01,-3.166877760571000788e-01,0.000000000000000000e+00 +7.571394546996862429e-01,-3.176265727594987931e-01,0.000000000000000000e+00 +4.699885681917669311e-01,-2.070221848594316905e-01,0.000000000000000000e+00 +4.925942143450275923e-01,-1.934038629944261067e-01,0.000000000000000000e+00 +4.865595236412784685e-01,-2.104326255578052307e-01,0.000000000000000000e+00 +9.073444056320039142e-01,-3.636291867822383228e-01,0.000000000000000000e+00 +9.209193113705057554e-01,-3.472568798747899810e-01,0.000000000000000000e+00 +9.228548160592877636e-01,-3.608405869128167298e-01,0.000000000000000000e+00 +7.553122237520792925e-01,-1.926445773702374353e-01,0.000000000000000000e+00 +7.378198467647658632e-01,-2.095295887618701669e-01,0.000000000000000000e+00 +7.226942974924930319e-01,-1.919960851359434895e-01,0.000000000000000000e+00 +7.390048023285684664e-01,-1.926091972255530305e-01,0.000000000000000000e+00 +1.898656982309564756e-01,-3.135152302950874326e-01,0.000000000000000000e+00 +1.678935488919677532e-01,-3.075470133923958738e-01,0.000000000000000000e+00 +1.827163889313977996e-01,-3.001197807107928717e-01,0.000000000000000000e+00 +7.695321179425452796e-01,-4.392099706038916224e-02,0.000000000000000000e+00 +7.581243436856073270e-01,-3.535646652969803849e-02,0.000000000000000000e+00 +7.008369863960550727e-01,-3.226858969224650764e-01,0.000000000000000000e+00 +7.175461884435803128e-01,-3.009004061277410491e-01,0.000000000000000000e+00 +7.196981728385618560e-01,-3.196868364897825221e-01,0.000000000000000000e+00 +8.552047759945673455e-01,-2.633574134697891367e-01,0.000000000000000000e+00 +8.400004965436452808e-01,-2.527504238635012723e-01,0.000000000000000000e+00 +8.533551253855458096e-01,-2.345989443443313727e-01,0.000000000000000000e+00 +8.544167451105395550e-01,-2.490519342755775078e-01,0.000000000000000000e+00 +8.693486493563040707e-01,-1.431823802698445613e-01,0.000000000000000000e+00 +8.863456708551603613e-01,-1.486276751391642781e-01,0.000000000000000000e+00 +5.607110264930563748e-01,-2.429157047126825897e-01,0.000000000000000000e+00 +5.644645384590598614e-01,-2.033022830165989725e-01,0.000000000000000000e+00 +5.831532999161743724e-01,-2.227175592063785625e-01,0.000000000000000000e+00 +5.625877824760581181e-01,-2.231089938646407811e-01,0.000000000000000000e+00 +4.474216553314346312e-01,-1.682930545303151504e-01,0.000000000000000000e+00 +4.801917640726185987e-01,-1.732765937834695458e-01,0.000000000000000000e+00 +4.600331012394652253e-01,-1.877992720461418019e-01,0.000000000000000000e+00 +4.638227075010501466e-01,-1.706729964635965713e-01,0.000000000000000000e+00 +3.806627018321930844e-01,-1.651187461960335612e-01,0.000000000000000000e+00 +4.140159054954016815e-01,-1.657332453555686036e-01,0.000000000000000000e+00 +3.952774722291627629e-01,-1.819697687108509099e-01,0.000000000000000000e+00 +3.973464738920183814e-01,-1.652552180818858962e-01,0.000000000000000000e+00 +2.715476701159914019e-01,-2.202403663326927274e-01,0.000000000000000000e+00 +2.556693873797379890e-01,-2.259151794337959651e-01,0.000000000000000000e+00 +5.324484043940057587e-01,-3.581059989829619150e-01,0.000000000000000000e+00 +5.162376019027185015e-01,-3.735258190813774970e-01,0.000000000000000000e+00 +5.158763436832572991e-01,-3.562518602996709860e-01,0.000000000000000000e+00 +2.247337583411155304e-01,-4.005995128555653317e-01,0.000000000000000000e+00 +2.368159314499839185e-01,-3.781011722276121367e-01,0.000000000000000000e+00 +2.199073058510774004e-01,-3.847526285226094966e-01,0.000000000000000000e+00 +8.756919274060623870e-01,-3.091631078977183922e-01,0.000000000000000000e+00 +8.600022362531849485e-01,-3.270453393210860371e-01,0.000000000000000000e+00 +8.423993852219129330e-01,-3.129158440467613156e-01,0.000000000000000000e+00 +8.580890763747903716e-01,-2.950336126233936151e-01,0.000000000000000000e+00 +8.590456563139876600e-01,-3.110394759722399094e-01,0.000000000000000000e+00 +5.960747763635785290e-01,-3.268654696924632730e-01,0.000000000000000000e+00 +6.132549911789104691e-01,-3.266035849660519630e-01,0.000000000000000000e+00 +7.866327398157384465e-01,-2.533534225925789807e-01,0.000000000000000000e+00 +7.770288201325719069e-01,-2.299460037962345049e-01,0.000000000000000000e+00 +8.097719604977204888e-01,-2.433607695763433665e-01,0.000000000000000000e+00 +7.935579153936295205e-01,-2.367258766203259313e-01,0.000000000000000000e+00 +9.303605783445180188e-01,-2.992854562743882951e-01,0.000000000000000000e+00 +9.461296242459400485e-01,-2.897109975813561000e-01,0.000000000000000000e+00 +8.758320116592672733e-01,-3.720324629002030870e-01,0.000000000000000000e+00 +8.429334524898888237e-01,-3.781990608087466565e-01,0.000000000000000000e+00 +8.598676554835482655e-01,-3.586977746738135853e-01,0.000000000000000000e+00 +8.594117858884505745e-01,-3.752732344192695191e-01,0.000000000000000000e+00 +9.343196813636247544e-01,-1.967103827614381240e-01,0.000000000000000000e+00 +9.561822230639516196e-01,-1.898706726615593254e-01,0.000000000000000000e+00 +9.451479968874694215e-01,-1.778961871994156063e-01,0.000000000000000000e+00 +6.365714435533404991e-01,-2.065174355499904135e-01,0.000000000000000000e+00 +6.197813193269163801e-01,-1.885163606165099759e-01,0.000000000000000000e+00 +6.543172156586647414e-01,-1.902768074884881866e-01,0.000000000000000000e+00 +6.370489357810620312e-01,-1.894018905662656072e-01,0.000000000000000000e+00 +8.247625823305642090e-01,-2.985210680908481073e-01,0.000000000000000000e+00 +8.205687981310280099e-01,-2.639892261167310350e-01,0.000000000000000000e+00 +8.403142787134391112e-01,-2.808042667229221911e-01,0.000000000000000000e+00 +8.226656902307960539e-01,-2.812551471037896267e-01,0.000000000000000000e+00 +7.974322883069592249e-01,-6.170208509374244116e-02,0.000000000000000000e+00 +7.736408456798394839e-01,-6.270449344580418527e-02,0.000000000000000000e+00 +7.833688381103591780e-01,-5.258937916686547143e-02,0.000000000000000000e+00 +1.598666718613429572e-01,-3.799480328990545441e-01,0.000000000000000000e+00 +1.592321040508387353e-01,-3.969579844162629545e-01,0.000000000000000000e+00 +8.093062796104164569e-01,-3.164925518231426205e-01,0.000000000000000000e+00 +8.258528324161646950e-01,-3.147041979349519680e-01,0.000000000000000000e+00 +6.375024310148804663e-01,-2.408225383175204293e-01,0.000000000000000000e+00 +6.195022178940772228e-01,-2.231911395423666900e-01,0.000000000000000000e+00 +6.370369372841104827e-01,-2.236699869337554214e-01,0.000000000000000000e+00 +8.550721731213178911e-01,-1.310454323973511970e-01,0.000000000000000000e+00 +7.950714827784545191e-01,-8.392205282248117737e-02,0.000000000000000000e+00 +8.067086716868662188e-01,-7.519283639666103636e-02,0.000000000000000000e+00 +7.050005593535446646e-01,-2.726363338080349807e-01,0.000000000000000000e+00 +7.272682086985562400e-01,-2.840466335559284072e-01,0.000000000000000000e+00 +7.112733738985624887e-01,-2.867683699678880149e-01,0.000000000000000000e+00 +8.091164628422742311e-01,-3.830008883864073899e-01,0.000000000000000000e+00 +8.260419674008225854e-01,-3.806882869867448949e-01,0.000000000000000000e+00 +7.585116857063497475e-01,-3.710471352614375662e-01,0.000000000000000000e+00 +7.582117810460640150e-01,-3.535675789220606990e-01,0.000000000000000000e+00 +7.751490514420382727e-01,-3.868167533400628244e-01,0.000000000000000000e+00 +7.406277690873046549e-01,-3.899790176065793812e-01,0.000000000000000000e+00 +7.578922601434978645e-01,-3.884367208043136843e-01,0.000000000000000000e+00 +6.216264061305587507e-01,-2.578123357825741757e-01,0.000000000000000000e+00 +6.392002603804951555e-01,-2.578173678474970365e-01,0.000000000000000000e+00 +7.679585120941037069e-01,-2.135262241762713731e-01,0.000000000000000000e+00 +7.713599170188678578e-01,-1.974242175834326762e-01,0.000000000000000000e+00 +7.921379538761170735e-01,-3.849514687293908999e-01,0.000000000000000000e+00 +1.376083972447482151e-01,-3.262622825097588053e-01,0.000000000000000000e+00 +1.200164875494874189e-01,-3.322628030983740821e-01,0.000000000000000000e+00 +3.655032116743883175e-01,-3.663700068482823036e-01,0.000000000000000000e+00 +3.482025039941879507e-01,-3.667800977360691217e-01,0.000000000000000000e+00 +4.014631433528698112e-02,-3.652731710238590335e-01,0.000000000000000000e+00 +5.541129406343899000e-02,-3.582378860368103934e-01,0.000000000000000000e+00 +2.408747839171312410e-01,-2.687503560398721292e-01,0.000000000000000000e+00 +7.087143756927608562e-01,-2.436929477316179260e-01,0.000000000000000000e+00 +7.226449589179340105e-01,-2.586727088422837717e-01,0.000000000000000000e+00 +7.068574675231527049e-01,-2.581646407698264811e-01,0.000000000000000000e+00 +6.696243527935528128e-01,-3.597495090028958176e-01,0.000000000000000000e+00 +6.858344025828810864e-01,-3.411321675587767888e-01,0.000000000000000000e+00 +6.885990188723112304e-01,-3.760971905012520100e-01,0.000000000000000000e+00 +6.872167107275961584e-01,-3.586146790300144271e-01,0.000000000000000000e+00 +6.832286279239941917e-01,-3.240047521014743914e-01,0.000000000000000000e+00 +7.060954501862231059e-01,-3.926523174435914698e-01,0.000000000000000000e+00 +7.233638018449288776e-01,-3.913557764034048536e-01,0.000000000000000000e+00 +7.251515390992492316e-01,-2.271532125556603998e-01,0.000000000000000000e+00 +7.056065474471603371e-01,-2.086418175639277450e-01,0.000000000000000000e+00 +7.071859455461156907e-01,-2.262137732954360159e-01,0.000000000000000000e+00 +6.888184849666971754e-01,-1.916106630914767572e-01,0.000000000000000000e+00 +7.057599877005389377e-01,-1.917892019744918408e-01,0.000000000000000000e+00 +4.243630010801033858e-01,-2.316506661713838566e-01,0.000000000000000000e+00 +4.487599297416954292e-01,-2.199661380906616226e-01,0.000000000000000000e+00 +4.323802153657223535e-01,-2.518041117560196884e-01,0.000000000000000000e+00 +4.405700725537088358e-01,-2.358851249233406278e-01,0.000000000000000000e+00 +6.715619016295490962e-01,-1.910430537858338607e-01,0.000000000000000000e+00 +4.278611248358695773e-01,-1.839396550903303063e-01,0.000000000000000000e+00 +4.307312608910245366e-01,-1.668441847291386448e-01,0.000000000000000000e+00 +4.388044627893937233e-01,-2.007432252773717063e-01,0.000000000000000000e+00 +4.543965154905803550e-01,-2.038827050684016706e-01,0.000000000000000000e+00 +5.501403007761231923e-01,-3.763305214240894037e-01,0.000000000000000000e+00 +5.491577525532376214e-01,-3.591675713500674938e-01,0.000000000000000000e+00 +5.855287581799932806e-01,-2.585056863313905939e-01,0.000000000000000000e+00 +6.015171096460296685e-01,-2.406908132221860508e-01,0.000000000000000000e+00 +6.035775821552760156e-01,-2.581590110569823571e-01,0.000000000000000000e+00 +5.137916303792038342e-01,-1.792186471738514697e-01,0.000000000000000000e+00 +4.969913570861905772e-01,-1.762482087613134463e-01,0.000000000000000000e+00 +5.847107300725845613e-01,-1.870205660326832164e-01,0.000000000000000000e+00 +6.011384081642219268e-01,-2.052178855265592017e-01,0.000000000000000000e+00 +6.022480892830992527e-01,-1.877390848595189565e-01,0.000000000000000000e+00 +6.013277589051257976e-01,-2.229543493743726124e-01,0.000000000000000000e+00 +6.196734298529280593e-01,-3.957525410315884118e-01,0.000000000000000000e+00 +5.794997495612508320e-01,-3.268653653393740477e-01,0.000000000000000000e+00 +5.658151079632699476e-01,-2.602730437651143980e-01,0.000000000000000000e+00 +5.489512857073068908e-01,-1.844347119264378443e-01,0.000000000000000000e+00 +5.313554069283114023e-01,-1.819384020352410869e-01,0.000000000000000000e+00 +5.340944310325137501e-01,-3.931198196581763837e-01,0.000000000000000000e+00 +5.511597613439169763e-01,-3.941170178515222000e-01,0.000000000000000000e+00 +6.888081766040072829e-01,-3.936983900107370316e-01,0.000000000000000000e+00 +5.668208139174042426e-01,-1.858620447799338438e-01,0.000000000000000000e+00 +3.517894578027097596e-01,-1.656265455081622484e-01,0.000000000000000000e+00 +3.670909794164069484e-01,-1.795497539709353663e-01,0.000000000000000000e+00 +3.661680807183803621e-01,-1.649185558871992252e-01,0.000000000000000000e+00 +4.978820647455268200e-01,-2.702798621122404210e-01,0.000000000000000000e+00 +5.077440569829100303e-01,-2.541974337341158519e-01,0.000000000000000000e+00 +5.171331869558482008e-01,-3.915950973110755573e-01,0.000000000000000000e+00 +9.072702869756102961e-01,-3.369955001724300736e-01,0.000000000000000000e+00 +8.914108710754409248e-01,-3.533168376284560597e-01,0.000000000000000000e+00 +8.761819412313431865e-01,-3.405498782793300316e-01,0.000000000000000000e+00 +8.920413571315125578e-01,-3.242285408233039901e-01,0.000000000000000000e+00 +8.917261141034767968e-01,-3.387726892258799971e-01,0.000000000000000000e+00 +9.758359068484689924e-01,-2.182101315549916376e-01,0.000000000000000000e+00 +9.565781221510056831e-01,-2.209802462389709732e-01,0.000000000000000000e+00 +9.662542564811242851e-01,-2.038943431341553869e-01,0.000000000000000000e+00 +2.933339576261745352e-01,-2.239654087961827911e-01,0.000000000000000000e+00 +3.079843732389996869e-01,-2.531211766440690236e-01,0.000000000000000000e+00 +3.006591654325871388e-01,-2.385432927201259212e-01,0.000000000000000000e+00 +8.386379630798466156e-01,-1.921787430877635872e-01,0.000000000000000000e+00 +8.550494001996016280e-01,-1.969471569349001139e-01,0.000000000000000000e+00 +8.503630995595681252e-01,-1.833823818359212598e-01,0.000000000000000000e+00 +3.460496726353415875e-01,-1.863532942203712794e-01,0.000000000000000000e+00 +3.267041004507121871e-01,-1.801865142002800069e-01,0.000000000000000000e+00 +3.390710610468199993e-01,-1.724379737133175383e-01,0.000000000000000000e+00 +3.809588670729596727e-01,-3.524911479025768513e-01,0.000000000000000000e+00 +3.993955494626582614e-01,-3.700918223001877783e-01,0.000000000000000000e+00 +3.825332598990668354e-01,-3.675139575047930984e-01,0.000000000000000000e+00 +6.519914963601600721e-01,-3.602526816034581358e-01,0.000000000000000000e+00 +8.917090920966910250e-01,-3.681857454668895357e-01,0.000000000000000000e+00 +3.849694964084584003e-01,-2.804589816235711908e-01,0.000000000000000000e+00 +4.010555066041051608e-01,-3.013989582738924033e-01,0.000000000000000000e+00 +3.809662411057895826e-01,-3.178652089733369768e-01,0.000000000000000000e+00 +3.829678687571239637e-01,-2.991620952984541115e-01,0.000000000000000000e+00 +4.155110000050490360e-01,-3.227280944310069732e-01,0.000000000000000000e+00 +4.212468745920341373e-01,-2.868551330877602279e-01,0.000000000000000000e+00 +4.357023679929780124e-01,-3.081842692448748533e-01,0.000000000000000000e+00 +4.183789372985415866e-01,-3.047916137593835728e-01,0.000000000000000000e+00 +5.319415014570439970e-01,-2.979657678235630991e-01,0.000000000000000000e+00 +5.078981254249153032e-01,-2.901988956602562508e-01,0.000000000000000000e+00 +5.199198134409795946e-01,-2.940823317419096750e-01,0.000000000000000000e+00 +3.698101895195700373e-02,-3.877235562488933751e-01,0.000000000000000000e+00 +3.674813015575516262e-02,-4.058621877581257142e-01,0.000000000000000000e+00 +1.831386007557128937e-01,-3.343050548948003353e-01,0.000000000000000000e+00 +1.970458194906176685e-01,-3.272045731279313308e-01,0.000000000000000000e+00 +7.925129148643601518e-01,-3.175289606425200639e-01,0.000000000000000000e+00 +8.599349458683664960e-01,-3.428715569974498112e-01,0.000000000000000000e+00 +9.355636548883428105e-01,-2.215006095692388377e-01,0.000000000000000000e+00 +9.463201568596839586e-01,-2.350323980765898768e-01,0.000000000000000000e+00 +7.420343971728033949e-01,-2.562452636673097639e-01,0.000000000000000000e+00 +7.346513029356798175e-01,-2.701459486116191133e-01,0.000000000000000000e+00 +2.956510354474818358e-01,-2.945555897125657352e-01,0.000000000000000000e+00 +3.164445856370394217e-01,-2.802720433877715078e-01,0.000000000000000000e+00 +3.121174691237058596e-01,-2.955353671047921682e-01,0.000000000000000000e+00 +5.447771175327806858e-01,-2.964131342108842770e-01,0.000000000000000000e+00 +4.485099172905758769e-01,-3.635854689492266090e-01,0.000000000000000000e+00 +4.327974428732100920e-01,-3.777183158001505281e-01,0.000000000000000000e+00 +4.494597767127292420e-01,-3.814280765614977975e-01,0.000000000000000000e+00 +9.873717556975736276e-01,-2.338865347053193933e-01,0.000000000000000000e+00 +3.982395611680028535e-01,-3.371032386520783075e-01,0.000000000000000000e+00 +3.809625540893746276e-01,-3.351781784379569418e-01,0.000000000000000000e+00 +4.490775160659420395e-01,-3.287022629526618611e-01,0.000000000000000000e+00 +4.321067427583922260e-01,-3.430197653148829851e-01,0.000000000000000000e+00 +4.487937166782589582e-01,-3.461438659509442628e-01,0.000000000000000000e+00 +4.148353039213459881e-01,-3.573949095359543193e-01,0.000000000000000000e+00 +4.160938078432159237e-01,-3.738709179160001339e-01,0.000000000000000000e+00 +3.000577073519493654e-01,-2.019000338150981344e-01,0.000000000000000000e+00 +2.870302836819350056e-01,-2.127155503613746279e-01,0.000000000000000000e+00 +8.320046830804012084e-01,-2.135862385598661095e-01,0.000000000000000000e+00 +8.224645932246763547e-01,-1.881717521064098786e-01,0.000000000000000000e+00 +8.273850798188885358e-01,-2.010713631392777034e-01,0.000000000000000000e+00 +1.612505524495955744e-01,-3.333286415587003448e-01,0.000000000000000000e+00 +1.528413859879289016e-01,-3.171177704960833621e-01,0.000000000000000000e+00 +1.810245373884243614e-01,-3.525644553761385080e-01,0.000000000000000000e+00 +1.591364890823070422e-01,-3.515880420400385176e-01,0.000000000000000000e+00 +1.711375449190099818e-01,-3.429465484674193987e-01,0.000000000000000000e+00 +4.549477538355011230e-01,-2.941662956856676003e-01,0.000000000000000000e+00 +4.520126349507215813e-01,-3.114342793191647307e-01,0.000000000000000000e+00 +4.151731519631974843e-01,-3.400615019834806185e-01,0.000000000000000000e+00 +2.221761778782065933e-01,-4.186644606130013879e-01,0.000000000000000000e+00 +9.152384603823053855e-01,-2.251314861637296882e-01,0.000000000000000000e+00 +9.056596564899530577e-01,-2.342318818109981882e-01,0.000000000000000000e+00 +9.116578221940403459e-01,-3.060615878514524324e-01,0.000000000000000000e+00 +8.936748748000513665e-01,-3.076123478745854123e-01,0.000000000000000000e+00 +8.121389764232100905e-01,-1.802254182666855886e-01,0.000000000000000000e+00 +7.126780226606137525e-01,-4.130188076223182542e-02,0.000000000000000000e+00 +7.209715738882924718e-01,-5.203322052389994928e-02,0.000000000000000000e+00 +8.290597502805177044e-01,-2.319258783260110535e-01,0.000000000000000000e+00 +8.562083730976859375e-01,-2.162217180670367722e-01,0.000000000000000000e+00 +8.426496151703931625e-01,-2.239808435850412782e-01,0.000000000000000000e+00 +3.126276022071100558e-01,-1.902294275486762221e-01,0.000000000000000000e+00 +2.629360496870821740e-01,-3.630226336607352833e-01,0.000000000000000000e+00 +2.478303364152324995e-01,-3.676625718610936899e-01,0.000000000000000000e+00 +7.526099099132115278e-01,-2.212358452750362858e-01,0.000000000000000000e+00 +7.396351093453127357e-01,-2.391128722544817453e-01,0.000000000000000000e+00 +7.385571824676196995e-01,-2.241731222070250107e-01,0.000000000000000000e+00 +2.794874709276675695e-01,-3.642650275539899840e-01,0.000000000000000000e+00 +3.754219508173871622e-01,-2.036073958694590846e-01,0.000000000000000000e+00 +3.607358117263643749e-01,-1.949803450449151820e-01,0.000000000000000000e+00 +4.103351273536033350e-01,-1.951590149482259062e-01,0.000000000000000000e+00 +3.904796059418277343e-01,-2.167966421068340810e-01,0.000000000000000000e+00 +3.928785390854953041e-01,-1.993832054088424954e-01,0.000000000000000000e+00 +2.910453757945027226e-02,-3.726565619844968147e-01,0.000000000000000000e+00 +8.647845720556803784e-01,-2.058231118239047530e-01,0.000000000000000000e+00 +7.778005642146124110e-01,-7.843353590274536324e-02,0.000000000000000000e+00 +9.373392632465664676e-01,-3.173064201681241037e-01,0.000000000000000000e+00 +9.186365070960887946e-01,-3.240825517451882409e-01,0.000000000000000000e+00 +9.244985427203034067e-01,-3.116840040097882958e-01,0.000000000000000000e+00 +9.650060882490633929e-02,-3.826978660688735712e-01,0.000000000000000000e+00 +9.322855314909842539e-01,-3.343439314475481483e-01,0.000000000000000000e+00 +9.417807174728400899e-01,-3.277314092750707175e-01,0.000000000000000000e+00 +9.247790708729650699e-01,-2.109209344625838645e-01,0.000000000000000000e+00 +7.639981729492901774e-01,-2.551276860507122879e-01,0.000000000000000000e+00 +7.765721444981984467e-01,-2.627812301388301464e-01,0.000000000000000000e+00 +8.566469261846787475e-01,-2.791955130465913482e-01,0.000000000000000000e+00 +7.618094650587001748e-01,-2.379453845633603681e-01,0.000000000000000000e+00 +7.518026022173238676e-01,-2.473275680854758463e-01,0.000000000000000000e+00 +7.924880645983042315e-01,-1.378834452802558119e-01,0.000000000000000000e+00 +7.650274952228742764e-01,-2.255651718586388632e-01,0.000000000000000000e+00 +7.074589834934933430e-01,-2.245478032530494675e-02,0.000000000000000000e+00 +2.980414269001732119e-01,-2.707707141950274066e-01,0.000000000000000000e+00 +3.122144794380196098e-01,-2.666966100159202657e-01,0.000000000000000000e+00 +8.245952080951296503e-01,-2.480604728479336440e-01,0.000000000000000000e+00 +1.722675750484036761e-01,-3.691755286803717340e-01,0.000000000000000000e+00 +1.841807734522085682e-01,-3.651714529934059206e-01,0.000000000000000000e+00 +9.197779092332971640e-01,-3.356697158099891110e-01,0.000000000000000000e+00 +1.591615766855926928e-01,-3.658638367326063623e-01,0.000000000000000000e+00 +4.212784653071275365e-01,-2.119625851352673063e-01,0.000000000000000000e+00 +4.245697950714985014e-01,-1.979511201127988063e-01,0.000000000000000000e+00 +3.935641417148035837e-01,-2.364847231429506036e-01,0.000000000000000000e+00 +4.074213035109656156e-01,-2.242236541391089966e-01,0.000000000000000000e+00 +4.767633228275106605e-01,-2.811350347129351612e-01,0.000000000000000000e+00 +4.923307241262129819e-01,-2.856669651865956783e-01,0.000000000000000000e+00 +2.869480604720053840e-01,-2.813217776141622717e-01,0.000000000000000000e+00 +4.094324571295075987e-01,-2.650200102656073420e-01,0.000000000000000000e+00 +3.892668190616309642e-01,-2.584718523832608694e-01,0.000000000000000000e+00 +4.441946328282488365e-01,-2.736392345781725743e-01,0.000000000000000000e+00 +4.268135449788782454e-01,-2.693296224218899582e-01,0.000000000000000000e+00 +4.604789778278797763e-01,-2.773871346455538678e-01,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/rabbits/riley_quad9/uvs.csv b/src/pyvale/data/render/riley/rabbits/riley_quad9/uvs.csv new file mode 100644 index 000000000..01a4eb5ff --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_quad9/uvs.csv @@ -0,0 +1,867 @@ +7.341282703992835224e-01,1.456453312031494030e-01 +7.428956749299340245e-01,1.309286016863820123e-01 +7.496323381806995201e-01,1.151796798644597608e-01 +7.470120034645217899e-01,9.900663911615419088e-02 +7.385429625662061071e-01,8.445088027154971921e-02 +7.233367520545348484e-01,7.682096329700263682e-02 +7.333212738702347133e-01,6.614937533611248144e-02 +7.368072874731663724e-01,5.229337557252396185e-02 +7.216869724271879338e-01,4.511760972230256100e-02 +7.046772302574078051e-01,4.335575517891143704e-02 +6.885335301532378161e-01,3.765022939129299834e-02 +6.717550014881058518e-01,3.415158391589442205e-02 +6.547988398481263683e-01,3.163339311626441053e-02 +6.377733865540144986e-01,2.962804630608964138e-02 +6.207139750624774965e-01,2.793531357824934058e-02 +6.036261910952384069e-01,2.655834518839760017e-02 +5.865123700995473754e-01,2.556014111944409153e-02 +5.693773761407668887e-01,2.504149625770120055e-02 +5.522344853617728866e-01,2.498997314203456679e-02 +5.350953285526058867e-01,2.535347329403216110e-02 +5.179723433289054046e-01,2.617636773837601905e-02 +5.008971682503675638e-01,2.768346741488121251e-02 +4.839501347043065893e-01,3.024568587170619119e-02 +4.672621887706567834e-01,3.415013481968712933e-02 +4.507541959813770038e-01,3.877205334643243212e-02 +4.337889912653702940e-01,4.060536651337291053e-02 +4.167129108519506131e-01,3.915924368748511381e-02 +3.996713578689557456e-01,4.069333451258341089e-02 +3.830673444450645726e-01,4.492901250106275113e-02 +3.722169189815984769e-01,3.508809020002730955e-02 +3.658951515387737774e-01,1.923552173787738614e-02 +3.535962037885185816e-01,7.495939615218441369e-03 +3.377590368072247995e-01,0.000000000000000000e+00 +3.247794775179821958e-01,8.761410531699938276e-03 +3.208965963158747492e-01,2.502908334886747022e-02 +3.236576312105512998e-01,4.176835365542078821e-02 +3.085173392986054197e-01,3.396181898395313897e-02 +2.925689184022056688e-01,2.763987176538587956e-02 +2.763990194026181846e-01,2.187396774430718296e-02 +2.592834546372813076e-01,1.898351787619801528e-02 +2.500000000000000000e-01,2.953846891461340413e-02 +2.558298100551961163e-01,4.523622863822195084e-02 +2.670233765330388698e-01,5.794914771855813607e-02 +2.825207179675838232e-01,6.539959040117138134e-02 +2.982804501164632582e-01,7.213047068828142006e-02 +3.143462678681033240e-01,7.814505047708208973e-02 +3.301110409173207416e-01,8.486081388509372769e-02 +3.439951156617281347e-01,9.332923267518225541e-02 +3.375137472125977478e-01,1.064638468829339490e-01 +3.499075008308275558e-01,1.179469519123182847e-01 +3.661486504103782513e-01,1.233714498801278953e-01 +3.827004760179860687e-01,1.278283759139024200e-01 +3.959990498956808547e-01,1.376527633669105133e-01 +4.084738327211158149e-01,1.491278358176690577e-01 +4.244879711652834731e-01,1.551327150605184002e-01 +4.414457007009381373e-01,1.574057647846308916e-01 +4.585843606761698110e-01,1.574498651834998486e-01 +4.756776606137415042e-01,1.561993460261089095e-01 +4.926446176760242990e-01,1.537600264757551516e-01 +5.095425740593444441e-01,1.508695226750111085e-01 +5.265077072338901765e-01,1.484176923984799612e-01 +5.436002006726533553e-01,1.471352165738369355e-01 +5.607204984415283811e-01,1.462480551437845000e-01 +5.778303068216267269e-01,1.451752811548227828e-01 +5.949601673438618121e-01,1.444853442650038955e-01 +6.121015693052765938e-01,1.442489466561873157e-01 +6.292023592090931761e-01,1.442261005586582268e-01 +6.391724680824014682e-01,1.571979862791852145e-01 +6.348576019459392095e-01,1.698153007027409789e-01 +6.207948996733230196e-01,1.786748277731321499e-01 +6.107463657349994079e-01,1.920681788503522669e-01 +6.024275579792662816e-01,2.071641401547467121e-01 +5.979167521863846257e-01,2.235113139823720896e-01 +6.107875962551092552e-01,2.316961490743007501e-01 +6.269441827121224886e-01,2.261663865435745158e-01 +6.409935361532929088e-01,2.164191151185720086e-01 +6.534372112139971156e-01,2.046305331795569837e-01 +6.656633632361556030e-01,1.926562566944283461e-01 +6.763550490933545323e-01,1.792400582068919279e-01 +6.897041855548609046e-01,1.686572091667124795e-01 +7.061374375874140963e-01,1.638422783246936132e-01 +7.220666093332410718e-01,1.576205889415754069e-01 +7.387575706910375350e-01,1.384332675691568870e-01 +7.465292310044395752e-01,1.231680196770074120e-01 +7.500000000000000000e-01,1.068901196072427617e-01 +7.439358017903920928e-01,9.104959330310530286e-02 +7.313457917993196888e-01,7.984022432029402871e-02 +7.264098897516080289e-01,7.116670780220799020e-02 +7.389161798420360583e-01,5.988206847705751512e-02 +7.299695089682789462e-01,4.724497644278433106e-02 +7.131451432563036263e-01,4.446981702569447609e-02 +6.967264640683050736e-01,4.014748323872020103e-02 +6.801733678026828933e-01,3.574317301600653252e-02 +6.632939586031914025e-01,3.280402971434703829e-02 +6.462913185506642400e-01,3.058800113938735937e-02 +6.292475370697627746e-01,2.874278022632146407e-02 +6.121722789214714133e-01,2.720665400874237860e-02 +5.950632067611509868e-01,2.600160157862171570e-02 +5.779467446738146830e-01,2.523966652648853420e-02 +5.608053789070832629e-01,2.496145235191229994e-02 +5.436638047261166395e-01,2.512016618517911790e-02 +5.265307190184459474e-01,2.569913857769151599e-02 +5.094271851570966181e-01,2.682056407392433700e-02 +4.924002344751210458e-01,2.881019151101877132e-02 +4.755615645461883645e-01,3.202602557578740350e-02 +4.590054995943417815e-01,3.649530183618319296e-02 +4.423556120169411798e-01,4.040685563804175678e-02 +4.252542265972540925e-01,3.973540442681456480e-02 +4.081511030097062509e-01,3.946584735832472240e-02 +3.913134164412654381e-01,4.260110985628278585e-02 +3.755930860826450224e-01,4.291268921672021508e-02 +3.697698572282796525e-01,2.707511066544327633e-02 +3.600660064654441772e-01,1.273738963912273911e-02 +3.461276449353404283e-01,3.146164876100054388e-03 +3.308212181878272262e-01,1.601515327290995274e-03 +3.218447629962049028e-01,1.715618678592245941e-02 +3.224411693152900438e-01,3.359505064033924820e-02 +3.163457425643139698e-01,3.739802345973779196e-02 +3.005465244534624714e-01,3.079863757008650255e-02 +2.845753238690076348e-01,2.457357372450518287e-02 +2.680743371853401280e-01,2.004799439955219642e-02 +2.528384309697827015e-01,2.036857521620335718e-02 +2.521304797518268970e-01,3.818415125480209560e-02 +2.605252913992112118e-01,5.258921014510820058e-02 +2.747769657078305561e-01,6.175887964537052355e-02 +2.903579626611314524e-01,6.889456027265943028e-02 +3.063128742149593409e-01,7.516763040675110419e-02 +3.223192172073038320e-01,8.128945630153086577e-02 +3.379124564062256919e-01,8.839249705121417222e-02 +3.371534461388473458e-01,9.837721136478244643e-02 +3.428674695358286395e-01,1.131134181936600536e-01 +3.579211887485967969e-01,1.209667426853797412e-01 +3.743944347450072208e-01,1.257130302412319545e-01 +3.905793931268801700e-01,1.310924915368480159e-01 +4.014818907199515508e-01,1.442054953223203817e-01 +4.163048925413893597e-01,1.525996083963293559e-01 +4.329087406776915836e-01,1.567240827204214870e-01 +4.500222128042521419e-01,1.575988758092645159e-01 +4.671435118138687614e-01,1.569938509449919639e-01 +4.841771634665585911e-01,1.550916993426698087e-01 +5.010932551640481236e-01,1.523141853174199700e-01 +5.180090629206290931e-01,1.495316998276311204e-01 +5.350437430802060801e-01,1.476418258552388840e-01 +5.521624175632995346e-01,1.467210630302641650e-01 +5.692750703699062109e-01,1.457063528379007322e-01 +5.863908265514446994e-01,1.447373340553967380e-01 +6.035310338183845769e-01,1.443797841813101723e-01 +6.206571141586392226e-01,1.439338877521931237e-01 +6.355657215343324395e-01,1.493531601159439337e-01 +6.421235854884566052e-01,1.644659624991432201e-01 +6.282825792526238740e-01,1.724662569604411000e-01 +6.152089671169330698e-01,1.855395159508318181e-01 +6.062279202296516623e-01,1.994682182901752476e-01 +5.993228053794303900e-01,2.151525399411555461e-01 +6.025348223015984939e-01,2.303706984713974892e-01 +6.190239735975973101e-01,2.293802214231893122e-01 +6.342732106173119000e-01,2.217548833132650943e-01 +6.472525482733795243e-01,2.105935445879511814e-01 +6.597207319004828596e-01,1.987871157875464589e-01 +6.710194061024248313e-01,1.859519822129560018e-01 +6.825516682727921225e-01,1.733091686194536407e-01 +6.978187723833573219e-01,1.659363233238106694e-01 +7.142786328499468596e-01,1.611679640459150742e-01 +7.287639906194058881e-01,1.523194755188995719e-01 +4.883100149600493323e-01,1.366607892727414730e-01 +5.340448154208567999e-01,4.299350084630741003e-02 +5.861007525559166487e-01,4.314091877344328196e-02 +6.386275413164267389e-01,4.689858297419977062e-02 +4.278514778103836846e-01,1.429508319310711373e-01 +5.600551141103344843e-01,1.289077278563664497e-01 +4.830007128023121599e-01,4.830641243011474240e-02 +6.117885721049876047e-01,1.273861282111567461e-01 +4.492702704995661933e-01,5.450723513360273415e-02 +3.969369663853179464e-01,5.759808257133427339e-02 +6.988233327380659610e-01,1.464799476070833550e-01 +3.649583897421281864e-01,5.016856970080794953e-02 +3.740670209664604395e-01,1.084130550048838237e-01 +6.468056178812928714e-01,1.378829282842053694e-01 +3.380276192560407456e-01,7.106697615511814448e-02 +6.667065833054062196e-01,1.670507922618600094e-01 +6.725427067700178174e-01,5.100702511493226260e-02 +3.365821345956633848e-01,4.149620736321241177e-02 +6.322775185603990433e-01,1.874504528599931774e-01 +7.122294829261039961e-01,1.387942815901409832e-01 +7.345248258449887935e-01,1.144841812558497346e-01 +4.045228828796708642e-01,1.240971577255195885e-01 +7.041382176642159152e-01,5.639688318258235383e-02 +3.042001168813731060e-01,5.310662541792088992e-02 +2.734248126803147660e-01,4.014983880217748435e-02 +6.202940951256786795e-01,2.097725043300891212e-01 +7.241053260710670347e-01,1.005242228570798896e-01 +4.146976960328360717e-01,5.732029041666089619e-02 +5.512377064693656514e-01,4.257235146852684365e-02 +5.050676298941370046e-01,1.335993883894883161e-01 +5.169743211656903092e-01,4.403674540908143059e-02 +6.471480440814749713e-01,1.689979297532383795e-01 +6.036066519803701125e-01,4.412304524267882805e-02 +5.775384589112045886e-01,1.282171363393541652e-01 +5.420466793115639170e-01,1.295188408787426304e-01 +3.374257058178204982e-01,2.432289229871201566e-02 +4.560847008354819709e-01,1.405268050636653554e-01 +3.528290727418075257e-01,2.782671057810406912e-02 +2.634446558833103968e-01,3.536698989332701798e-02 +6.510706033318173214e-01,1.824772187733911255e-01 +6.297728537450550945e-01,2.036183135660711296e-01 +6.887172795923157675e-01,5.368520111266232575e-02 +6.113987707769813484e-01,2.154501886765734786e-01 +7.155232817708294668e-01,6.933123990726582087e-02 +7.182746417482890333e-01,5.975520563285932618e-02 +4.662195479136193033e-01,5.149001624391615073e-02 +4.824245059797410695e-01,1.199584887927752780e-01 +5.496713581054386566e-01,5.981713659357242030e-02 +5.846005279199153470e-01,6.049782946122087696e-02 +6.725107503812070009e-01,6.721212916263534509e-02 +5.604409342881476741e-01,1.115157891161128040e-01 +4.832184569614169645e-01,6.583125550487260724e-02 +4.142053615372607300e-01,7.484313093242279946e-02 +6.921146338669061926e-01,1.318621711631006721e-01 +3.521196177469891886e-01,7.888270231246144459e-02 +7.134755188268454562e-01,1.139629552184305977e-01 +7.046029887201514796e-01,7.003359761324914889e-02 +3.234570310921767167e-01,5.903644251669068477e-02 +6.810769025770461171e-01,1.518999689573256873e-01 +3.892641529067644157e-01,1.155508063369298788e-01 +6.564363561416447501e-01,1.530592427320663362e-01 +3.802713868984566314e-01,5.543118458260794246e-02 +5.327271944665155079e-01,6.016481749064925971e-02 +5.233204430231017668e-01,1.308265062318963723e-01 +5.684866241336321568e-01,4.265679783073107051e-02 +5.949661112250446138e-01,1.275705619727120210e-01 +6.211084378324321920e-01,4.542380873712754952e-02 +6.556258137841139977e-01,4.871542741661866183e-02 +5.000859094723872911e-01,4.580285308771028796e-02 +3.589831807466417057e-01,1.012073911196935266e-01 +4.322869475298173336e-01,5.640190779341790195e-02 +4.724525339202683138e-01,1.392132711544894486e-01 +7.085330269501852740e-01,8.738208064573589617e-02 +4.665703435483845585e-01,6.890621181749116697e-02 +6.419318808485129368e-01,1.234540707481035504e-01 +4.398148610771553946e-01,1.411864233964305326e-01 +7.236059628701649871e-01,1.281538944463775365e-01 +6.452390833567057671e-01,1.975017673508041582e-01 +3.503850862554713230e-01,4.443610308640304901e-02 +6.272952000639060444e-01,1.267862929482758971e-01 +4.187386700435377085e-01,1.343716035996366520e-01 +2.879939654881121802e-01,4.657243929744479816e-02 +6.206759928677643146e-01,6.316113834323319742e-02 +4.548974801950242397e-01,1.279753107891809794e-01 +6.144436663791886799e-01,1.090267266050172490e-01 +4.319683131067091342e-01,7.377715942292618900e-02 +6.575311133652572693e-01,1.338503354791883981e-01 +5.780851696732938194e-01,1.112470980940823972e-01 +5.473584085519291875e-01,7.676016919719121090e-02 +4.858476361972283164e-01,8.294742568848123554e-02 +6.557700775531529747e-01,6.533665072785467542e-02 +5.000129285906136367e-01,6.319655522872277831e-02 +3.822167570396369785e-01,9.380035777040879319e-02 +4.120053493635733588e-01,1.087919599889277389e-01 +4.670461816814085454e-01,1.236953763413968510e-01 +3.940620364013277532e-01,7.782759074244557929e-02 +7.009878286294957128e-01,1.048975496942467917e-01 +3.453813674583908200e-01,5.805841039095151895e-02 +6.826647490229603710e-01,1.368902434965943438e-01 +5.668904766678685148e-01,5.997393678931520200e-02 +4.988637477140573928e-01,1.161876999821423173e-01 +5.163235877530001350e-01,6.124823761062765659e-02 +6.023376768866703923e-01,6.178912579295388341e-02 +5.420401884624062028e-01,1.113790415756387570e-01 +3.672148219218809850e-01,8.615673236768525700e-02 +4.495962911808678020e-01,7.181532856362053685e-02 +7.032470713496932202e-01,1.245169982440065132e-01 +6.662538954625465415e-01,1.415801704376791759e-01 +3.359100509961529535e-01,5.277730352649979279e-02 +6.888840398713900193e-01,6.918500879475915355e-02 +4.361962610773939542e-01,1.188533050166341032e-01 +6.264956116962616672e-01,1.155149216201471069e-01 +6.548447075432770603e-01,8.163077012869757176e-02 +6.737621690402946228e-01,1.298734783178923935e-01 +5.161154648977998027e-01,7.711477902236299475e-02 +5.820900308692557035e-01,7.762389498569201296e-02 +4.579871298008066915e-01,1.082545890051166554e-01 +6.287877066412348448e-01,9.828786601428854408e-02 +4.750766876570739483e-01,1.035085184838025057e-01 +5.645566855642232262e-01,7.712800680841186418e-02 +4.916728712021726233e-01,9.943613128751242758e-02 +5.996279844241308998e-01,7.897468205568852762e-02 +4.148900600893147272e-01,9.213481767047042303e-02 +5.310975593170745856e-01,7.641269735230550586e-02 +5.954124441033792348e-01,1.108609923570417211e-01 +5.621828240253734510e-01,9.422913334874755131e-02 +3.591499198213393695e-01,6.446719145707759113e-02 +4.520908844742145272e-01,9.027070941770282131e-02 +5.195671989819508063e-01,1.092872089917560352e-01 +6.384591825403552745e-01,6.417832454383551322e-02 +6.712520051821159184e-01,8.333792927202944567e-02 +4.334836120882716859e-01,9.279002147189610583e-02 +5.017055374466979911e-01,7.948407409680578739e-02 +3.964563908692444461e-01,1.016518990581989218e-01 +4.698211343130734297e-01,8.638326586769991267e-02 +6.595493599037612897e-01,1.200761774478044108e-01 +3.747489614519249335e-01,7.070365171363009182e-02 +6.965453924827171850e-01,1.153514374941819604e-01 +6.882264533761406344e-01,8.512400742703155054e-02 +6.364743031002944029e-01,1.100987872999811684e-01 +4.020459186754236081e-01,9.111316137867468690e-02 +6.704221869875311990e-01,9.937694407218486403e-02 +6.385131898325833166e-01,8.071284216240118270e-02 +5.166747006926803998e-01,8.841014127453236671e-02 +5.444260758329666494e-01,9.367138083881271227e-02 +6.190745810170670271e-01,8.361073461830996478e-02 +5.797445683089348378e-01,9.448774355567350625e-02 +6.837475416783171944e-01,1.174779822356782216e-01 +5.967700142737407676e-01,9.503995143168054993e-02 +6.093661227564401983e-01,9.585639639295190362e-02 +6.514737886894037544e-01,1.001808474301847385e-01 +6.387515224914650513e-01,9.254993979391004655e-02 +6.861671893267164979e-01,1.008137075554116496e-01 +6.709550977431884000e-01,1.115585231094874258e-01 +5.070013907470319880e-01,9.382059501278450231e-02 +5.274063986021064743e-01,9.222263837330096914e-02 +3.236595409929403644e-01,5.043618431758888770e-02 +3.063821039374526323e-01,4.355529599547024872e-02 +3.138173664181503897e-01,5.605362673521328137e-02 +3.149954556661243021e-01,4.679690340083964700e-02 +6.466789486879301885e-01,8.117180614554939111e-02 +6.386323561620241840e-01,8.663139097815560075e-02 +6.451126555904342919e-01,9.636539361204740639e-02 +6.531592481163404074e-01,9.090580877944114124e-02 +6.458958021391822957e-01,8.876859987879837099e-02 +6.935775089781061054e-01,1.028556286248292206e-01 +6.849662341570625923e-01,1.091205693789256831e-01 +6.900846778944496052e-01,1.164235362330164891e-01 +6.987666105561064489e-01,1.101244935942143760e-01 +6.917667033567310719e-01,1.095470831018726804e-01 +7.055438884316254100e-01,1.426254731100241036e-01 +7.077382771378986082e-01,1.316556399170737413e-01 +6.976450978634294309e-01,1.282023792456928324e-01 +6.954728573419917126e-01,1.392416796265061874e-01 +7.016332906549980208e-01,1.354464612445993310e-01 +3.478832268569310715e-01,5.124725673867728398e-02 +3.522656436398651225e-01,6.126280092401455157e-02 +3.620541547817337502e-01,5.731788057894278421e-02 +3.576717379987997547e-01,4.730233639360551662e-02 +3.549686908193324109e-01,5.428256865881003063e-02 +7.163191765106261544e-01,9.395315175140789288e-02 +7.047604277898404934e-01,9.613981516999135779e-02 +7.072316737281705290e-01,1.094302524563386947e-01 +7.187904224489563010e-01,1.072435890377552437e-01 +7.117754251193983972e-01,1.016917021038733077e-01 +6.416575083140096947e-01,1.849451390701078446e-01 +6.491194985667771977e-01,1.758166646308069458e-01 +6.414400797315297220e-01,1.695838774016200923e-01 +6.337438085346397409e-01,1.785703891501159990e-01 +6.414450478601316785e-01,1.772593472501183265e-01 +7.407684146547552917e-01,1.067454101860019627e-01 +7.313241443186365709e-01,9.248755156431480440e-02 +7.293150759580278031e-01,1.075042020564647982e-01 +7.366254388742099479e-01,9.927689767978506441e-02 +5.220405496473934370e-01,9.031638982391668180e-02 +5.118380457198561384e-01,9.111536814365843451e-02 +5.132842948644913417e-01,1.015539020022702549e-01 +5.234867987920286403e-01,1.007549236825285022e-01 +5.176624222559425004e-01,9.593514591309344752e-02 +2.902711731368864956e-01,3.710095922617250019e-02 +2.748840035783552960e-01,3.096246904596998764e-02 +2.807054307643545576e-01,4.335558722013513333e-02 +2.826622174602596016e-01,3.394289331519464992e-02 +6.159060506706309779e-01,2.125804484707418673e-01 +6.110931835160453574e-01,2.235731688754371282e-01 +6.236398965515398407e-01,2.180123643528835420e-01 +6.175200424048554737e-01,2.210833569035435264e-01 +2.960813732268678389e-01,4.984647616836333783e-02 +2.852490946006348560e-01,5.598846450726788215e-02 +3.012253084523729418e-01,6.260911448496685183e-02 +2.932267145684875898e-01,5.936515357669865794e-02 +4.041336989692941861e-01,7.633536083743421019e-02 +4.144515287850483731e-01,6.608171067454185477e-02 +4.058173312090770368e-01,5.745918649399758826e-02 +3.954995013933227943e-01,6.771283665688992981e-02 +4.049755150891855560e-01,6.689727366571589229e-02 +3.816655869366123999e-01,1.119819306709068513e-01 +3.928602718880044309e-01,1.086013526975643934e-01 +3.893365739544406567e-01,9.772612841430385056e-02 +3.781418890030486812e-01,1.011067063876463085e-01 +3.855010804455265561e-01,1.048540295426053370e-01 +4.348399365828328200e-01,1.058216632442651045e-01 +4.241868360887932621e-01,9.246241957118327137e-02 +4.134477047264440430e-01,1.004633888296990879e-01 +4.241008052204836565e-01,1.138226325027809210e-01 +4.241438206546384593e-01,1.031425260369820962e-01 +4.082641161216221670e-01,1.164445588572236567e-01 +4.116307764616042864e-01,1.292343806625781133e-01 +4.274674655604658313e-01,1.266124543081353637e-01 +4.178657908410439714e-01,1.215285065826795102e-01 +4.937765868219631260e-01,8.121574989264350453e-02 +5.008592330186558694e-01,7.134031466276427591e-02 +4.916156927760153006e-01,6.451390536679769971e-02 +4.845330465793226682e-01,7.438934059667692833e-02 +4.926961397989891855e-01,7.286482762972060212e-02 +5.392279839345018866e-01,7.658643327474837226e-02 +5.292519789595906410e-01,8.431766786280325832e-02 +5.359162372175365618e-01,9.294700960605685458e-02 +5.458922421924479185e-01,8.521577501800198240e-02 +5.375721105760191687e-01,8.476672144040262036e-02 +3.886041766418872889e-01,5.651463357697111139e-02 +3.775101741751907825e-01,6.306741814811900326e-02 +3.844054989266263433e-01,7.426562122803782862e-02 +3.865048377842568161e-01,6.539012740250443878e-02 +4.230868373219849321e-01,7.431014517767448035e-02 +4.321276303182632339e-01,6.508953360817203160e-02 +4.234923217813267304e-01,5.686109910503941295e-02 +4.232895795516558035e-01,6.558562214135695012e-02 +6.214655480798775278e-01,1.897830999225386117e-01 +6.154499031423821265e-01,2.009542347650500604e-01 +6.249716824082846012e-01,2.067135907927156735e-01 +6.310081216944223303e-01,1.954862423780991398e-01 +6.231305310085495375e-01,1.981406704014992970e-01 +3.291533855514497398e-01,2.471458161373676909e-02 +3.376167831720007229e-01,1.216209227834070400e-02 +3.296223772569091270e-01,1.344991547457291894e-02 +5.533044499291699392e-01,9.395025709378013179e-02 +5.633697547947983386e-01,8.567857007857970775e-02 +5.559575470580762069e-01,7.694408800280155836e-02 +5.546309984936231841e-01,8.544717254829085895e-02 +6.874359824348317272e-01,1.343513222426643283e-01 +6.818676819707538694e-01,1.444475584298076376e-01 +6.899570495543076998e-01,1.491386609890363035e-01 +6.887633912108006573e-01,1.419014690341056650e-01 +6.287938854248251719e-01,8.216178839035558068e-02 +6.239311438291510470e-01,9.094930031629924749e-02 +6.337696145663499481e-01,9.541890290409930919e-02 +6.312817499955876155e-01,8.879034564722745881e-02 +6.585563409831676207e-01,1.269178322607302511e-01 +6.507671247593449504e-01,1.218117975377857598e-01 +6.444000217370815520e-01,1.306318192439118453e-01 +6.521310924347192284e-01,1.359019513428327275e-01 +6.513982343772036776e-01,1.287166524358844544e-01 +5.676885504007502803e-01,5.131536731002314666e-02 +5.598621653014987931e-01,4.261457464962894320e-02 +5.504545322874021540e-01,5.119474403104964932e-02 +5.582809173866536412e-01,5.989553669144379727e-02 +5.590715413440762172e-01,5.125505567053637024e-02 +3.533446245101135030e-01,1.766208580602754083e-02 +3.450935624178614880e-01,2.609973648986767605e-02 +3.455482543580840060e-01,1.461605829940994250e-02 +3.630990013342613176e-01,9.368206174368938488e-02 +3.596672198344351146e-01,8.251971734007336468e-02 +3.480573667043586616e-01,8.610596749382185000e-02 +3.514891482041849202e-01,9.726831189743788408e-02 +3.555781840193100174e-01,8.989401461875562438e-02 +3.544453407887346308e-01,1.095771715160059057e-01 +3.453778162208489544e-01,1.044312008384111201e-01 +7.024905784793699093e-01,1.551720034074122179e-01 +7.171480461296726450e-01,1.482074352658581673e-01 +7.099376734748665818e-01,1.519114747487958217e-01 +4.157053034423933147e-01,4.823976705207299459e-02 +3.983041621271368182e-01,4.914570854195885602e-02 +4.069842171093915884e-01,4.846251692616117268e-02 +5.733233582167394093e-01,7.737595089705193163e-02 +5.833452793945854697e-01,6.906086222345643455e-02 +5.757455022938918754e-01,6.023588312526803601e-02 +5.657235811160459260e-01,6.855097179886353309e-02 +5.745344302553156979e-01,6.880591701115998382e-02 +6.983797401631628432e-01,8.625304403638373030e-02 +6.871968213514285662e-01,9.296885749122162090e-02 +6.959786245706345298e-01,9.455433633060648935e-02 +3.669494406366321515e-01,6.758542158535385536e-02 +3.726148883202923812e-01,5.279987714170793212e-02 +3.697821644784622941e-01,6.019264936353086598e-02 +4.952683094581149525e-01,1.078119156348273794e-01 +4.833747794296232581e-01,1.014723248856574667e-01 +4.787505968184074812e-01,1.117335036382888919e-01 +4.906441268468991757e-01,1.180730943874588046e-01 +4.870094531382612169e-01,1.097727096365581356e-01 +5.709636961671540334e-01,9.435843845221052184e-02 +5.809172995890952151e-01,8.605581927068275960e-02 +5.721435271919468324e-01,8.586719467463123368e-02 +5.081682581718067748e-01,6.222239641967523827e-02 +5.089105011722488969e-01,7.829942655958437026e-02 +5.162195263253999133e-01,6.918150831649534649e-02 +5.085393796720278914e-01,7.026091148962980426e-02 +5.411992762859771933e-01,5.999097704211082266e-02 +5.426412609451112257e-01,4.278292615741714072e-02 +5.333860049436861539e-01,5.157915916847832100e-02 +5.419202686155442095e-01,5.138695159976398169e-02 +4.915433111373497255e-01,4.705463275891251518e-02 +5.004915388613774274e-01,3.674316025129576585e-02 +4.834754237533093746e-01,3.927604915091045118e-02 +4.919717728062354412e-01,3.793241213496564151e-02 +5.092154733480040996e-01,1.127374544869491763e-01 +5.019656888040971987e-01,1.248935441858153167e-01 +5.141940364586193857e-01,1.322129473106923303e-01 +5.214438210025262865e-01,1.200568576118261899e-01 +5.117047549033115761e-01,1.224752008988207602e-01 +5.778118142922491485e-01,1.197321172167182812e-01 +5.862522850681245457e-01,1.278938491560330792e-01 +5.951892776642119243e-01,1.192157771648768572e-01 +5.867488068883364161e-01,1.110540452255620592e-01 +5.865005459782305364e-01,1.194739471907975692e-01 +4.327259625974904100e-01,8.328359044741115436e-02 +4.145477108132877286e-01,8.348897430144662513e-02 +4.236368367053890971e-01,8.338628237442886892e-02 +5.960912291885600567e-01,1.029504718943611286e-01 +5.882572912913377472e-01,9.476384749367702809e-02 +5.789148689911143286e-01,1.028674208248779448e-01 +5.875030490898371927e-01,1.029089463596195436e-01 +6.246012876521892521e-01,1.815267371108809924e-01 +6.998962319162052026e-01,1.199342178690942368e-01 +6.879125478282281936e-01,1.246726713370324147e-01 +6.938345946534136832e-01,1.223827520626160903e-01 +6.736866479392340512e-01,1.467063326585348049e-01 +6.613072791654525107e-01,1.473288617665420852e-01 +6.616162550440815027e-01,1.601398132033258204e-01 +6.738956898270829221e-01,1.594645890191483950e-01 +6.676862187425728346e-01,1.534519056630837819e-01 +6.517361469255273931e-01,1.454555298226997417e-01 +6.380209745808358424e-01,1.409833668545161789e-01 +6.477675697406661826e-01,1.551923385732405236e-01 +6.436335651527385071e-01,1.474022758974843361e-01 +3.556347687841642791e-01,7.167494688476952480e-02 +3.709818916869029870e-01,7.843019204065768135e-02 +3.633083302355336053e-01,7.505256946271360308e-02 +6.556979456686335972e-01,5.702603907223666863e-02 +6.471266775502704238e-01,4.780700519540921622e-02 +6.385433619283908957e-01,5.553845375901764192e-02 +6.471146300467541801e-01,6.475748763584510126e-02 +6.471206537985123575e-01,5.628224641562715874e-02 +3.370078250637916217e-01,3.290170228721175233e-02 +3.434717796980204518e-01,4.306724519811813701e-02 +3.515818381691728778e-01,3.610905719428309651e-02 +3.442882682765544544e-01,3.450197985804957096e-02 +5.000494190315004639e-01,5.449970415821654701e-02 +4.831095848818646177e-01,5.706883396749368870e-02 +4.915795019566825408e-01,5.578426906285514908e-02 +5.908590076466933017e-01,7.829928852069024947e-02 +5.981989993489358337e-01,8.700731674368455959e-02 +5.895581494690156354e-01,8.653156800718367347e-02 +2.594063464406208275e-01,4.029272267373101152e-02 +2.611233539915966961e-01,2.714720555582618086e-02 +2.555266882438915199e-01,3.077367854272976960e-02 +3.747157894807590095e-01,8.997854506904702510e-02 +3.881393967204823658e-01,8.581397425642718624e-02 +3.795606442036926209e-01,8.212208314854242686e-02 +6.725267285756123536e-01,5.910957713878379344e-02 +6.640842602770660186e-01,4.986122626577545180e-02 +6.641404139671800433e-01,6.627438994524501026e-02 +6.641123371221229199e-01,5.806780810551023103e-02 +3.701078356884193177e-01,1.158922524425058526e-01 +3.665251008565510449e-01,1.048102230622886682e-01 +3.622231448025738931e-01,1.128884828738341839e-01 +7.199808070877384836e-01,5.243640767758092625e-02 +7.257979578092619288e-01,6.295229048448590381e-02 +7.298096829739382230e-01,5.542897997500474683e-02 +6.588981707786563113e-01,1.747559001470343210e-01 +6.520789459207865235e-01,1.612718687333470902e-01 +6.554774346534588680e-01,1.679448928324494827e-01 +5.236065121074371387e-01,7.676373818733427112e-02 +5.319123768917950468e-01,6.828875742147738626e-02 +5.245253911097578214e-01,6.070652755063846162e-02 +5.240659516085974801e-01,6.873513286898634556e-02 +6.208922153500983088e-01,5.429247354018035959e-02 +6.123575449064011522e-01,4.477342698990317144e-02 +6.029721644335201969e-01,5.295608551781637308e-02 +6.115068348772173534e-01,6.247513206809355429e-02 +6.119321898918093083e-01,5.362427952899836286e-02 +5.863065613277320676e-01,3.435052994644368501e-02 +5.689320001371995783e-01,3.384914704421614767e-02 +5.772936883447743472e-01,4.289885830208715889e-02 +5.776202165092945151e-01,3.406926241428787777e-02 +5.517360959155692690e-01,3.378116230528069308e-02 +5.345700719867312323e-01,3.417348707016979598e-02 +5.431525328356139326e-01,3.395154617129814145e-02 +6.583390308875753938e-01,1.875836374634398673e-01 +6.715197519892616151e-01,1.731388836023733113e-01 +6.649100621016925672e-01,1.803397855987155518e-01 +6.384861861864692401e-01,7.244558335311834796e-02 +6.295675877040598500e-01,6.366973144353436920e-02 +6.198752869424157819e-01,7.338593648077156029e-02 +6.291807365644425110e-01,7.291575991694496106e-02 +4.853672604698952009e-01,1.283096390327583824e-01 +4.966888224270932239e-01,1.351300888311149084e-01 +4.936664746369961998e-01,1.266015916092868565e-01 +7.044077239608117491e-01,4.987631918074690585e-02 +7.112064297062524743e-01,5.807604440772083654e-02 +7.121757864812779948e-01,5.127293071670767366e-02 +6.282656064131878493e-01,1.355103610506825651e-01 +6.195049176676477032e-01,1.270538585768176132e-01 +6.119296047541529227e-01,1.358351447334644468e-01 +6.200983777148042497e-01,1.355280804512864201e-01 +3.450736185015149671e-01,7.497483923378980841e-02 +3.340693300866807158e-01,7.796389502010594996e-02 +3.414930374538703850e-01,8.168366814250199726e-02 +6.353873410457959725e-01,2.099954351582144774e-01 +6.296739974780863891e-01,2.142847999646943502e-01 +6.009828306554005906e-01,7.038190392432119857e-02 +6.093512827205989080e-01,8.129270833699926702e-02 +6.104290587989081862e-01,7.188392020254641412e-02 +6.782946881571239039e-01,1.000953258137982776e-01 +6.706799448911660022e-01,1.054076132482196920e-01 +6.773683295904529000e-01,1.144983996206964255e-01 +6.779000194793423084e-01,1.072599238937037708e-01 +6.853783493581361297e-01,1.602824611364155605e-01 +6.938909497360452594e-01,1.575552998413900230e-01 +5.308036937221785045e-01,1.103331252836974030e-01 +5.326835611673328419e-01,1.301726735553195013e-01 +5.420434338869850599e-01,1.204489412271906867e-01 +5.317436274447555622e-01,1.202528994195084522e-01 +4.740650972670048535e-01,1.477063085902991790e-01 +4.904773163180368156e-01,1.452104078742482984e-01 +4.803812744401587675e-01,1.379370302136154192e-01 +4.822792189533586793e-01,1.465143647781426139e-01 +4.406302808890467659e-01,1.492960940905307121e-01 +4.573345307558258632e-01,1.489883351235826159e-01 +4.479497809563186550e-01,1.408566142300479440e-01 +4.489859968802853984e-01,1.492277450196562438e-01 +3.859823144623752422e-01,1.216895911254161494e-01 +3.780300108408097826e-01,1.188474804560694098e-01 +5.166489544593451111e-01,5.264249150985454012e-02 +5.085301153190388002e-01,4.491979924839585581e-02 +5.083491867454228430e-01,5.357109783403554704e-02 +3.625365523273428314e-01,3.136050970645715835e-02 +3.685876543618633039e-01,4.262832995041763301e-02 +3.601193252094372355e-01,3.929708809876432396e-02 +6.885552466237652158e-01,7.715450811089534511e-02 +6.806973951262984546e-01,6.819856897869726320e-02 +6.718813777816614596e-01,7.527502921733238150e-02 +6.797392292791282209e-01,8.423096834953050505e-02 +6.802183122027133377e-01,7.621476866411383555e-02 +5.485148833286839221e-01,6.828865289538181560e-02 +5.571192322223649240e-01,6.841981234712267435e-02 +6.439518274900839501e-01,1.051056140297465663e-01 +6.391419065089383178e-01,1.168287269354429392e-01 +6.555406190166004343e-01,1.101102239167227326e-01 +6.474201558819383528e-01,1.134331703687573856e-01 +7.159348895023600612e-01,8.210152197136927343e-02 +7.238324841549728106e-01,8.689668803585098855e-02 +6.886254048727766808e-01,4.566771525197764470e-02 +6.721488541290618901e-01,4.257930451541334232e-02 +6.806299931811667925e-01,5.234611311379730458e-02 +6.804016804919248429e-01,4.404464306490189079e-02 +7.179177228981346026e-01,1.334740880182592737e-01 +7.288671166347242547e-01,1.368996128247634558e-01 +7.233408567587702453e-01,1.428967817685793951e-01 +5.687967865107694809e-01,1.285624320978603075e-01 +5.603878062759315437e-01,1.375778915000754887e-01 +5.776843828664156577e-01,1.366962087470884879e-01 +5.690359284403379014e-01,1.371343924678805060e-01 +6.630483563626965449e-01,8.248434970036351566e-02 +6.609479878384674212e-01,9.977889575118481513e-02 +6.708370960848235587e-01,9.135743667210716179e-02 +6.619981721005818720e-01,9.113162272577413070e-02 +6.493605539880649147e-01,2.010901515635243608e-01 +6.374451108316123715e-01,2.005881164441856990e-01 +6.423171710361552655e-01,2.056540584763989488e-01 +3.300492377164425117e-01,4.170336866524633479e-02 +3.297314277881635558e-01,3.318429255986229259e-02 +6.553073925482151285e-01,7.348371042827614441e-02 +6.635943851649381831e-01,7.437936982280425602e-02 +5.692630519807206912e-01,1.113814436050976076e-01 +5.602480241992411347e-01,1.202117584862396338e-01 +5.690299192457450861e-01,1.199719378514789575e-01 +6.782282767997568351e-01,1.663609959581196784e-01 +6.481781942413603614e-01,1.899617485255262472e-01 +6.540064353073736791e-01,1.943335927954348286e-01 +6.030680685150905385e-01,9.544817391231624759e-02 +6.142203518867536127e-01,8.973356550563095502e-02 +6.062096756178447787e-01,8.837044112465775036e-02 +6.552123268161202940e-01,4.017441026644153618e-02 +6.636891094401287106e-01,4.133262799006123117e-02 +6.298679895744294654e-01,4.616119585566366007e-02 +6.297177886392446577e-01,5.491546364959902504e-02 +6.382004639352205633e-01,3.826331464014469386e-02 +6.209112064474548998e-01,3.667956115768843117e-02 +6.295577633220961200e-01,3.745198804099257595e-02 +5.613118791567605070e-01,1.028724612324301846e-01 +5.701133740739374733e-01,1.028699410286540855e-01 +6.345992336858667926e-01,1.250522278710327062e-01 +6.363027557323569505e-01,1.331165788760907409e-01 +6.467089980504674429e-01,3.919750316739827739e-02 +3.189016494801399926e-01,6.859074649688638725e-02 +3.100911118732952998e-01,6.558551208956769907e-02 +4.330379693975938138e-01,4.850363715339540971e-02 +4.243732741892903837e-01,4.829825176592701663e-02 +2.700898171327652530e-01,4.905296428427643324e-02 +2.777349608546453852e-01,5.257643865556431428e-02 +3.706204451686549994e-01,9.739438406566786055e-02 +6.049280552412839018e-01,1.099438594810294850e-01 +6.119048945678144946e-01,1.024415614989845624e-01 +6.039980618781872757e-01,1.026960166966728455e-01 +5.853506402379159423e-01,5.181937411733207599e-02 +5.934691024032928697e-01,6.114347762708737671e-02 +5.948537022681432695e-01,4.363198200806103766e-02 +5.941614023357181251e-01,5.238772981757419678e-02 +5.921640550249931412e-01,6.972138307388880962e-02 +6.036164215378042597e-01,3.534069521553821064e-02 +6.122649119139362828e-01,3.599004049932279237e-02 +6.131602624803724755e-01,1.182274376314041281e-01 +6.033715648938571263e-01,1.274984800909817195e-01 +6.041625731805113642e-01,1.186979360067898920e-01 +5.949636172410774915e-01,1.360281752501113495e-01 +6.034484122143706220e-01,1.359387578093480820e-01 +4.625166557411076740e-01,1.159749826732567463e-01 +4.747353438305748075e-01,1.218269325670860576e-01 +4.665319087289403477e-01,1.058815537444595667e-01 +4.706336262797575221e-01,1.138542431557728329e-01 +5.863210207810380936e-01,1.363124504209137777e-01 +4.642686173778751701e-01,1.398700381090773881e-01 +4.657060645958719380e-01,1.484319445270346760e-01 +4.697493578008384296e-01,1.314543237479431359e-01 +4.775583091353667875e-01,1.298819813903507869e-01 +5.255095682932735546e-01,4.351512312769443419e-02 +5.250174797015156880e-01,5.211082533916640280e-02 +5.432331321476864261e-01,1.025252112072257554e-01 +5.512405613752768829e-01,1.114474153458757805e-01 +5.522725056522235221e-01,1.026988362198279908e-01 +5.073051019767407244e-01,1.422344555322497262e-01 +4.988910387955706738e-01,1.437221370742674253e-01 +5.428234399921085807e-01,1.383270287262897968e-01 +5.510508967109492007e-01,1.292132843675545262e-01 +5.516066571371244232e-01,1.379671736989093456e-01 +5.511457290431129863e-01,1.203303498567151603e-01 +5.603337721042910280e-01,3.378801350077062504e-02 +5.402136301102394844e-01,6.828870515842960787e-02 +5.333599654698575332e-01,1.016400674448771357e-01 +5.249140751284959716e-01,1.396220993151881806e-01 +5.161015496896241839e-01,1.408723235691617115e-01 +5.174733322472978569e-01,3.510655657372872135e-02 +5.260201436558598065e-01,3.460713085269299938e-02 +5.949584545146471282e-01,3.481679179334139229e-02 +5.338636521237695165e-01,1.389072497052791788e-01 +4.261697244878335789e-01,1.490417734957947826e-01 +4.338331694437694841e-01,1.420686276637508350e-01 +4.333709550607305894e-01,1.493963551920861610e-01 +4.993371309746023057e-01,9.662836315014847188e-02 +5.042763021613031471e-01,1.046829088185488310e-01 +5.089786502380676536e-01,3.587018166116009987e-02 +7.043706031921836974e-01,6.321524039791573402e-02 +6.964277486282657303e-01,5.504104214762233632e-02 +6.888006597318527824e-01,6.143510495371072577e-02 +6.967435142957707495e-01,6.960930320400414428e-02 +6.965856314620182399e-01,6.232517267581325765e-02 +7.387102503874614090e-01,1.227063914711158804e-01 +7.290653943575768903e-01,1.213190378511136286e-01 +7.339114825243071571e-01,1.298761527101352509e-01 +3.968935178932176955e-01,1.198239820312247406e-01 +4.042308701164089024e-01,1.052219295235633373e-01 +4.005621940048132990e-01,1.125229557773940320e-01 +6.699975486913596345e-01,1.357436643438093560e-01 +6.782168714613555638e-01,1.333555046583083659e-01 +6.758698364468955777e-01,1.401491366862251953e-01 +4.232950739269606966e-01,1.386612177653538946e-01 +4.136062513823267617e-01,1.417497197086528271e-01 +4.197999832341750004e-01,1.456304130808416253e-01 +4.407786090146917912e-01,5.545457146351030764e-02 +4.500122332404715708e-01,4.663964424001756925e-02 +4.415671105158164855e-01,4.793071355077605650e-02 +5.765195953193331668e-01,5.156737071367758357e-02 +6.965771063482855130e-01,4.759426269317128255e-02 +4.427872482812431620e-01,9.153036544479944969e-02 +4.508435878275411923e-01,8.104301899066167214e-02 +4.407823021437884403e-01,7.279624399327336293e-02 +4.417847752125158012e-01,8.216330471903639243e-02 +4.580833173646261525e-01,7.036077019055585191e-02 +4.609560093936440062e-01,8.832698764270137393e-02 +4.681957389307289663e-01,7.764473884259552594e-02 +4.595196633791350793e-01,7.934387891662862680e-02 +5.163950827952401568e-01,8.276246014844769461e-02 +5.043534640968649896e-01,8.665233455479513791e-02 +5.103742734460525732e-01,8.470739735162141626e-02 +2.685045455792673397e-01,3.780916149425854467e-02 +2.683879081287180446e-01,2.872480977706875008e-02 +3.417044933572158105e-01,6.456269327303483518e-02 +3.486696310706900448e-01,6.811882007890218693e-02 +6.468967893673421843e-01,7.296464689069724618e-02 +6.806636941537325125e-01,6.027234104624728389e-02 +7.185407408485051661e-01,1.210584248324040602e-01 +7.239279084032665956e-01,1.142813134444344153e-01 +6.216156865102118179e-01,1.036572963096528965e-01 +6.179180191984827708e-01,9.669543090764190496e-02 +3.980539775383756806e-01,8.447037606056014003e-02 +4.084679893823691677e-01,9.162398952457255497e-02 +4.063008441758317324e-01,8.397967518100339646e-02 +5.228235308774152879e-01,8.354006400562546952e-02 +4.746101303579657316e-01,4.989821433701543268e-02 +4.667408683421380156e-01,4.282007553180163656e-02 +4.750858474520770480e-01,4.096211995640141462e-02 +7.444877374182919949e-01,1.148551949899725977e-01 +4.494332808402169976e-01,6.316128184861163897e-02 +4.407804555792401158e-01,6.412540772839181447e-02 +4.748944002549008170e-01,6.736873366118188711e-02 +4.663949457310019309e-01,6.019811403070365885e-02 +4.747522653064332743e-01,5.863347399909864949e-02 +4.577449092065927205e-01,5.299862568875944591e-02 +4.583752044004671955e-01,4.474696376247131596e-02 +4.002609663876758872e-01,1.308749605462150578e-01 +3.937364555100488772e-01,1.254582367840363921e-01 +6.666754100546663508e-01,1.250221709304973894e-01 +6.618974568987798790e-01,1.377504814172857694e-01 +6.643617790180527116e-01,1.312899828081228737e-01 +3.307423251741087311e-01,6.505170933590441462e-02 +3.265307711907062815e-01,7.317058281871764713e-02 +3.406457092272718867e-01,5.541785695872565587e-02 +3.296835410441648628e-01,5.590687302159524225e-02 +3.356940172006903089e-01,6.023478314731504912e-02 +4.778343852551508730e-01,8.466534577809058104e-02 +4.763643927550258450e-01,7.601703971963623407e-02 +4.579141132856094365e-01,6.167969793965766279e-02 +3.612556419974619626e-01,2.231306094508400673e-02 +7.083612950882692827e-01,1.192399767312185555e-01 +7.035639528221879768e-01,1.146822351627164588e-01 +7.065680078351683768e-01,7.870783912949252947e-02 +6.975616272294667963e-01,7.793117362019394423e-02 +6.567260891098869457e-01,1.417302354260443487e-01 +6.069131643781238150e-01,2.113071644156600815e-01 +6.110668149056410758e-01,2.059325988238712435e-01 +6.652005024617747564e-01,1.158371484596774775e-01 +6.787973186374024470e-01,1.237022465043135094e-01 +6.720067001832445985e-01,1.198162518421749395e-01 +4.065563335907779186e-01,1.367199379924492475e-01 +3.816693656717605743e-01,5.018009854183533291e-02 +3.741039872014687018e-01,4.785628317921405972e-02 +6.269122094190425765e-01,1.211910264550493666e-01 +6.204140537142313061e-01,1.122376938590200907e-01 +6.198741967312284551e-01,1.197199531424131685e-01 +3.899587965415763913e-01,4.955787171662694862e-02 +4.380055610772746189e-01,1.300198642065323040e-01 +4.306503175021176855e-01,1.343405409859431132e-01 +4.554910905152531053e-01,1.342510579264231674e-01 +4.455468706362091247e-01,1.234143079029075413e-01 +4.467483257962638898e-01,1.321354610664777218e-01 +2.645597757081045165e-01,4.535514836482220508e-02 +6.830925273300407774e-01,1.289101695184116658e-01 +6.395284182848320897e-01,1.927105566745450360e-01 +7.194300169126821576e-01,7.307610160213422190e-02 +7.100631352454904732e-01,6.968241876025747794e-02 +7.129990123739252672e-01,7.589197036581335487e-02 +2.983136790959580176e-01,4.032617261462276975e-02 +7.168989617595592501e-01,6.454322277006258046e-02 +7.216544257555836950e-01,6.785496528613529921e-02 +7.131395089932019982e-01,1.263570323747389146e-01 +6.326157812025563487e-01,1.042170115304655864e-01 +6.389131901318947371e-01,1.003838951046705924e-01 +6.790169587181259514e-01,9.216314708166439829e-02 +6.315196129346145604e-01,1.128224054898968876e-01 +6.265078863558773969e-01,1.081235363967826685e-01 +6.468843436347628817e-01,1.629363211670053213e-01 +6.331312955928682928e-01,1.190227743813464800e-01 +6.042993184881635393e-01,2.207463378798268649e-01 +3.992511547723340271e-01,9.638253021843680435e-02 +4.063494297493890350e-01,9.842295952406794612e-02 +6.629645305006235390e-01,1.077564764764143007e-01 +3.362599690003731379e-01,4.709855060869203025e-02 +3.422264436113019448e-01,4.910390761835020657e-02 +7.106347824758714182e-01,6.387923158398915724e-02 +3.296961056420989467e-01,4.875714179938760856e-02 +4.609718309382164203e-01,1.258353435652889429e-01 +4.626202241580457120e-01,1.328526908371831516e-01 +4.470916954391003229e-01,1.135539470108753862e-01 +4.540317631886583993e-01,1.196946452880821299e-01 +4.887602536997004421e-01,9.119177848799683850e-02 +4.965568588982827158e-01,8.892205652139599514e-02 +3.936952757464081687e-01,9.109825223743200917e-02 +4.550390071375106094e-01,9.926264921140973141e-02 +4.449394718601716869e-01,1.025421562278374249e-01 +4.724489109850736890e-01,9.494589217575120921e-02 +4.637439590612921769e-01,9.710427069358047725e-02 +4.806045823423871211e-01,9.306883533187401691e-02 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri3/connectivity.csv b/src/pyvale/data/render/riley/rabbits/riley_tri3/connectivity.csv new file mode 100644 index 000000000..006802905 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri3/connectivity.csv @@ -0,0 +1,323 @@ +67,68,69 +68,70,69 +71,72,73 +72,74,73 +75,76,77 +78,23,79 +80,16,81 +82,83,84 +85,79,86 +85,87,79 +82,88,83 +89,90,91 +90,92,91 +93,70,68 +93,20,70 +94,95,96 +67,97,68 +67,98,97 +95,45,96 +76,53,77 +77,53,52 +99,75,77 +99,100,75 +101,102,103 +102,100,103 +104,105,106 +107,108,109 +108,110,109 +111,112,113 +112,114,113 +113,115,111 +113,116,115 +117,112,111 +117,65,112 +118,119,120 +71,121,122 +123,99,124 +123,125,99 +106,70,104 +45,44,96 +103,125,126 +127,106,105 +128,129,130 +71,131,121 +132,133,80 +133,17,80 +134,103,126 +104,19,105 +134,101,103 +134,13,101 +121,123,135 +121,136,123 +99,77,137 +77,52,137 +138,134,126 +139,102,101 +138,126,140 +126,136,140 +122,72,71 +122,141,72 +71,73,131 +73,142,131 +138,14,134 +143,142,132 +123,124,144 +124,51,144 +72,141,145 +141,48,145 +143,132,81 +143,131,142 +146,147,127 +129,148,130 +121,135,149 +135,50,149 +80,81,132 +129,150,148 +145,128,130 +145,47,128 +147,74,127 +124,99,137 +145,130,72 +130,74,72 +122,149,141 +151,83,88 +151,42,83 +140,143,81 +140,136,143 +135,123,144 +133,132,147 +120,152,110 +153,129,128 +133,147,146 +122,121,149 +152,154,110 +141,149,49 +140,81,138 +147,73,74 +146,127,105 +107,8,155 +9,8,107 +156,154,157 +157,154,158 +91,159,160 +91,116,159 +160,159,108 +159,110,108 +160,161,91 +107,162,9 +94,96,163 +163,151,94 +94,151,98 +164,38,165 +166,167,168 +166,28,167 +169,161,170 +169,4,161 +171,172,173 +174,173,172 +171,173,37 +38,37,173 +166,172,28 +172,29,28 +162,10,9 +175,176,118 +139,177,102 +171,29,172 +139,12,177 +112,65,64 +178,175,114 +178,55,175 +112,178,114 +59,179,60 +59,58,179 +178,112,64 +177,157,102 +100,102,158 +157,158,102 +84,180,82 +84,165,180 +180,78,79 +87,180,79 +180,87,82 +100,158,75 +175,54,176 +2,89,3 +89,2,181 +89,4,3 +150,182,69 +183,152,119 +129,182,150 +88,82,87 +126,125,136 +174,184,173 +136,125,123 +185,171,36 +29,171,185 +151,88,98 +88,97,98 +88,85,97 +183,158,152 +54,53,76 +35,186,185 +185,186,30 +159,120,110 +116,120,159 +155,170,161 +161,160,155 +27,26,167 +167,25,168 +167,26,25 +187,117,92 +70,106,69 +175,118,114 +175,55,54 +116,91,115 +92,111,115 +115,91,92 +165,184,180 +66,117,187 +136,131,143 +131,136,121 +62,188,189 +189,188,56 +68,190,93 +68,97,190 +180,184,78 +21,93,190 +7,6,169 +187,0,66 +187,92,90 +169,6,5 +89,181,90 +164,165,84 +164,84,40 +23,86,79 +41,40,84 +177,156,157 +177,11,156 +42,41,83 +33,32,191 +172,166,174 +191,32,31 +168,192,166 +174,166,192 +168,24,192 +86,23,22 +24,23,192 +63,189,178 +178,189,55 +153,95,129 +153,46,95 +106,150,69 +152,158,154 +117,111,92 +117,66,65 +113,118,116 +114,118,113 +184,165,173 +173,165,38 +156,109,154 +152,120,119 +88,87,85 +170,155,8 +8,7,170 +85,86,190 +168,25,24 +190,97,85 +190,22,21 +190,86,22 +93,21,20 +103,100,125 +125,100,99 +184,174,192 +192,78,184 +23,78,192 +63,62,189 +56,55,189 +30,29,185 +36,35,185 +84,83,41 +151,163,42 +148,150,127 +2,1,181 +62,61,188 +57,56,188 +181,1,187 +187,90,181 +37,36,171 +187,1,0 +31,30,186 +35,34,186 +148,74,130 +15,14,138 +127,74,148 +13,12,139 +28,27,167 +76,75,183 +183,119,76 +104,20,19 +64,63,178 +142,147,132 +183,75,158 +138,81,15 +182,129,193 +135,144,50 +163,43,42 +44,163,96 +44,43,163 +155,160,108 +194,58,57 +194,188,61 +108,107,155 +57,188,194 +47,153,128 +18,133,146 +146,105,18 +14,13,134 +137,52,51 +177,12,11 +48,47,145 +95,94,193 +193,129,95 +124,137,51 +193,94,182 +81,16,15 +20,104,70 +95,46,45 +147,142,73 +13,139,101 +110,154,109 +179,194,61 +61,60,179 +58,194,179 +169,5,4 +169,170,7 +118,120,116 +144,51,50 +162,156,10 +191,186,34 +34,33,191 +31,186,191 +47,46,153 +49,48,141 +94,98,182 +156,11,10 +18,17,133 +162,107,109 +149,50,49 +109,156,162 +164,39,38 +80,17,16 +40,39,164 +105,19,18 +67,69,182 +182,98,67 +195,161,4 +195,89,91 +91,161,195 +4,89,195 +127,150,106 +176,76,119 +119,118,176 +54,76,176 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri3/coords.csv b/src/pyvale/data/render/riley/rabbits/riley_tri3/coords.csv new file mode 100644 index 000000000..b85a586dc --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri3/coords.csv @@ -0,0 +1,196 @@ +9.666871145982780522e-01,-1.724081868521550875e-01,0.000000000000000000e+00 +9.875626873210988643e-01,-2.086754016716984017e-01,0.000000000000000000e+00 +9.989313242002355597e-01,-2.480781802887241372e-01,0.000000000000000000e+00 +9.830811932877279169e-01,-2.863247401779739909e-01,0.000000000000000000e+00 +9.485316775493641828e-01,-3.087121385683131436e-01,0.000000000000000000e+00 +9.682139549050650107e-01,-3.337551516667011109e-01,0.000000000000000000e+00 +9.631564995182547717e-01,-3.664458033445872065e-01,0.000000000000000000e+00 +9.224917849690079663e-01,-3.745242142285154507e-01,0.000000000000000000e+00 +8.825387289394055479e-01,-3.861219319036093278e-01,0.000000000000000000e+00 +8.416436450950407488e-01,-3.951137646640466849e-01,0.000000000000000000e+00 +8.001806920103313736e-01,-4.010771500820467517e-01,0.000000000000000000e+00 +7.585437906606897762e-01,-4.056996907185270174e-01,0.000000000000000000e+00 +7.168146802566919273e-01,-4.093981271429288360e-01,0.000000000000000000e+00 +6.750061312796917790e-01,-4.120406104544501180e-01,0.000000000000000000e+00 +6.331330877058716222e-01,-4.132816631915201544e-01,0.000000000000000000e+00 +5.912412961141324530e-01,-4.131537683423346374e-01,0.000000000000000000e+00 +5.493725128787144696e-01,-4.117664532375950870e-01,0.000000000000000000e+00 +5.075987864335677058e-01,-4.086675438429257512e-01,0.000000000000000000e+00 +4.661554888266521979e-01,-4.026330853504866414e-01,0.000000000000000000e+00 +4.254763079108858648e-01,-3.926823613575226024e-01,0.000000000000000000e+00 +3.848505773728412294e-01,-3.826232054481610301e-01,0.000000000000000000e+00 +3.431118723176137530e-01,-3.845299713851917933e-01,0.000000000000000000e+00 +3.013932414655421388e-01,-3.824242646328802064e-01,0.000000000000000000e+00 +2.607294675654376337e-01,-3.724653919613657438e-01,0.000000000000000000e+00 +2.404248392496208808e-01,-4.053999269010765683e-01,0.000000000000000000e+00 +2.175855263784772786e-01,-4.397339082170978464e-01,0.000000000000000000e+00 +1.818717382951541284e-01,-4.610988513797951716e-01,0.000000000000000000e+00 +1.487404968255848503e-01,-4.445216487589970789e-01,0.000000000000000000e+00 +1.426422285878914953e-01,-4.037490772473002476e-01,0.000000000000000000e+00 +1.327661264837693145e-01,-3.884166130589347121e-01,0.000000000000000000e+00 +9.407030896021634225e-02,-4.044418286895216097e-01,0.000000000000000000e+00 +5.478478294323079617e-02,-4.189523313395626114e-01,0.000000000000000000e+00 +1.352967139378481905e-02,-4.255094163878403446e-01,0.000000000000000000e+00 +2.511158832073358878e-03,-3.914236773289563320e-01,0.000000000000000000e+00 +2.347788695594905939e-02,-3.553524025746587212e-01,0.000000000000000000e+00 +5.988330510655755917e-02,-3.349926989925601784e-01,0.000000000000000000e+00 +9.836071305761168171e-02,-3.184462802114093050e-01,0.000000000000000000e+00 +1.375719613908088779e-01,-3.036989614911078106e-01,0.000000000000000000e+00 +1.758148616483436177e-01,-2.866249598041877844e-01,0.000000000000000000e+00 +1.719652493461359399e-01,-2.593166205307119165e-01,0.000000000000000000e+00 +1.981480664756332111e-01,-2.284015566109994233e-01,0.000000000000000000e+00 +2.378355872201626531e-01,-2.151795552831950731e-01,0.000000000000000000e+00 +2.779164861542021137e-01,-2.032329097723156730e-01,0.000000000000000000e+00 +3.058089024223675789e-01,-1.724820592888211268e-01,0.000000000000000000e+00 +3.435092393463490823e-01,-1.548331749897237652e-01,0.000000000000000000e+00 +3.848432282595360965e-01,-1.488226068455789364e-01,0.000000000000000000e+00 +4.267184886704346591e-01,-1.493054679970216847e-01,0.000000000000000000e+00 +4.683705193327706851e-01,-1.536577234444534978e-01,0.000000000000000000e+00 +5.096959369002100892e-01,-1.605264515115975565e-01,0.000000000000000000e+00 +5.511180103011171783e-01,-1.667573777361482379e-01,0.000000000000000000e+00 +5.928954647855297910e-01,-1.697568424267852649e-01,0.000000000000000000e+00 +6.347222802884777693e-01,-1.721063534750245927e-01,0.000000000000000000e+00 +6.765510969807400077e-01,-1.744053024074360692e-01,0.000000000000000000e+00 +7.184379916321823600e-01,-1.750914554358342090e-01,0.000000000000000000e+00 +7.602046640440139891e-01,-1.745817696661829954e-01,0.000000000000000000e+00 +7.823340707170104436e-01,-1.402287734702625244e-01,0.000000000000000000e+00 +7.527502431814407924e-01,-1.171341502048230815e-01,0.000000000000000000e+00 +7.248252384307738438e-01,-8.626625823739389465e-02,0.000000000000000000e+00 +7.039300026665170629e-01,-5.004069248039264700e-02,0.000000000000000000e+00 +6.969936045224320864e-01,-1.018837011314539451e-02,0.000000000000000000e+00 +7.346692902066553899e-01,-4.433371291789331599e-03,0.000000000000000000e+00 +7.716806501505696358e-01,-2.359708773795140754e-02,0.000000000000000000e+00 +8.026195125545033671e-01,-5.181029718626375263e-02,0.000000000000000000e+00 +8.323482403008860553e-01,-8.128181412195124855e-02,0.000000000000000000e+00 +8.592982647812540398e-01,-1.132536732779350769e-01,0.000000000000000000e+00 +8.959261637708058057e-01,-1.323304755785866260e-01,0.000000000000000000e+00 +9.357735078899254155e-01,-1.450285272024768590e-01,0.000000000000000000e+00 +3.627581209751274960e-01,-2.913402041433653111e-01,0.000000000000000000e+00 +3.603631685902135562e-01,-3.220053742092267024e-01,0.000000000000000000e+00 +3.921425598980792238e-01,-3.012072888494959355e-01,0.000000000000000000e+00 +3.889483780560978876e-01,-3.404384087043012541e-01,0.000000000000000000e+00 +5.400444085943354455e-01,-2.585075615131401383e-01,0.000000000000000000e+00 +5.087035642244192024e-01,-2.420089607741084115e-01,0.000000000000000000e+00 +5.191325150602498217e-01,-2.822779244497684026e-01,0.000000000000000000e+00 +4.852832446413251066e-01,-2.814886754599540963e-01,0.000000000000000000e+00 +7.073325878790962529e-01,-2.456237254251615598e-01,0.000000000000000000e+00 +7.375369118133404678e-01,-2.139802147407200150e-01,0.000000000000000000e+00 +6.938997821810491962e-01,-2.123522873965803248e-01,0.000000000000000000e+00 +2.427411649200030275e-01,-3.401605243874153972e-01,0.000000000000000000e+00 +2.683760241417636472e-01,-3.289893906589277939e-01,0.000000000000000000e+00 +5.313667053985936528e-01,-3.807426187422415786e-01,0.000000000000000000e+00 +5.662322432029694985e-01,-3.725132518979026308e-01,0.000000000000000000e+00 +2.616348598652848967e-01,-2.701943402769945157e-01,0.000000000000000000e+00 +2.703923239345435436e-01,-2.417729782881266054e-01,0.000000000000000000e+00 +2.311304483321403591e-01,-2.596123003592368805e-01,0.000000000000000000e+00 +2.983907668813617908e-01,-3.150550789322429934e-01,0.000000000000000000e+00 +2.925028862173577049e-01,-3.471239018715346902e-01,0.000000000000000000e+00 +2.729294440869945437e-01,-2.963412213609859513e-01,0.000000000000000000e+00 +2.977897125547985246e-01,-2.725210462086907759e-01,0.000000000000000000e+00 +9.495256171237961285e-01,-2.640776617275701343e-01,0.000000000000000000e+00 +9.317217527003288646e-01,-2.321102835096443273e-01,0.000000000000000000e+00 +8.949210720023855758e-01,-2.609792119191511328e-01,0.000000000000000000e+00 +9.046240300321661820e-01,-2.122437527477015751e-01,0.000000000000000000e+00 +3.625969018746241779e-01,-3.529947705096422306e-01,0.000000000000000000e+00 +3.616010716564849181e-01,-2.209883427214400509e-01,0.000000000000000000e+00 +3.993478850836499894e-01,-1.924951785455493170e-01,0.000000000000000000e+00 +3.636144603180530011e-01,-1.814816618536826132e-01,0.000000000000000000e+00 +3.313119119370557808e-01,-3.027516127365493803e-01,0.000000000000000000e+00 +3.434443467728615640e-01,-2.619713320571007142e-01,0.000000000000000000e+00 +6.624302944037824270e-01,-2.577218369515890117e-01,0.000000000000000000e+00 +6.900885077852670912e-01,-2.870337359457587056e-01,0.000000000000000000e+00 +6.805546431565636656e-01,-3.626775406874472862e-01,0.000000000000000000e+00 +7.097692963949773226e-01,-3.304652194726849790e-01,0.000000000000000000e+00 +6.656270688263300483e-01,-3.241928025875585040e-01,0.000000000000000000e+00 +4.140944474806583786e-01,-3.577447107835617923e-01,0.000000000000000000e+00 +4.424088214592549750e-01,-3.583695695093511158e-01,0.000000000000000000e+00 +4.196426131201708709e-01,-3.260551024257200003e-01,0.000000000000000000e+00 +8.449027862846959502e-01,-3.569472810485856962e-01,0.000000000000000000e+00 +8.436889321871050562e-01,-3.187221038748149771e-01,0.000000000000000000e+00 +8.110069591458589633e-01,-3.340358993220302608e-01,0.000000000000000000e+00 +8.122812992436100332e-01,-2.934362403800123142e-01,0.000000000000000000e+00 +8.797176234074036705e-01,-1.920497140704130468e-01,0.000000000000000000e+00 +8.632575563305194821e-01,-1.585925709688427165e-01,0.000000000000000000e+00 +8.499739607738884262e-01,-1.973318329009246253e-01,0.000000000000000000e+00 +8.285217465712377827e-01,-1.711693836881311992e-01,0.000000000000000000e+00 +8.754965245890453662e-01,-2.198402825319575871e-01,0.000000000000000000e+00 +8.482459367293820884e-01,-2.365969010215974722e-01,0.000000000000000000e+00 +9.035980123114790707e-01,-1.726754376048678097e-01,0.000000000000000000e+00 +8.109218577426181573e-01,-2.089229982453318091e-01,0.000000000000000000e+00 +7.761501315148051638e-01,-2.322333798857493248e-01,0.000000000000000000e+00 +8.098160230730816478e-01,-2.537649069612160080e-01,0.000000000000000000e+00 +5.724530191602342777e-01,-2.505735672683310766e-01,0.000000000000000000e+00 +5.450835501031668917e-01,-2.301769036224022291e-01,0.000000000000000000e+00 +6.166290787931466566e-01,-2.552900517984831863e-01,0.000000000000000000e+00 +6.379455979586202696e-01,-2.198701646156493439e-01,0.000000000000000000e+00 +6.417954862446492159e-01,-2.932347410065356819e-01,0.000000000000000000e+00 +6.274936507536644781e-01,-3.354149777612715488e-01,0.000000000000000000e+00 +4.563335918141855907e-01,-3.174232805642182020e-01,0.000000000000000000e+00 +4.587867291862416375e-01,-2.026810252436695714e-01,0.000000000000000000e+00 +4.281046107493125530e-01,-2.334776085654605982e-01,0.000000000000000000e+00 +4.709027169841029092e-01,-2.400881953764314458e-01,0.000000000000000000e+00 +5.545801933155137808e-01,-2.882616339163600605e-01,0.000000000000000000e+00 +5.318654747381613701e-01,-3.480899770353003686e-01,0.000000000000000000e+00 +5.012273475207860152e-01,-3.691115070647268959e-01,0.000000000000000000e+00 +6.487277613572145496e-01,-3.704191921818523192e-01,0.000000000000000000e+00 +5.919902075714993384e-01,-2.176835390955415284e-01,0.000000000000000000e+00 +5.957067464828149639e-01,-2.982394367668606550e-01,0.000000000000000000e+00 +6.611098103625339117e-01,-2.072911889692558574e-01,0.000000000000000000e+00 +6.105519864211654824e-01,-3.749075584088664148e-01,0.000000000000000000e+00 +7.036429563182814428e-01,-3.762698797135294315e-01,0.000000000000000000e+00 +5.921961675498454980e-01,-3.419683352413372401e-01,0.000000000000000000e+00 +5.252814434205538285e-01,-2.001868301291630237e-01,0.000000000000000000e+00 +5.355403905707818435e-01,-3.160327160593361939e-01,0.000000000000000000e+00 +5.626868693100145480e-01,-3.275175584861828582e-01,0.000000000000000000e+00 +6.148365258849627368e-01,-2.069413903982263159e-01,0.000000000000000000e+00 +4.902901518403616765e-01,-1.998581978550065807e-01,0.000000000000000000e+00 +4.727504798929958452e-01,-3.536788766514448734e-01,0.000000000000000000e+00 +4.976271498441005581e-01,-3.208569407684412900e-01,0.000000000000000000e+00 +4.534384127339792236e-01,-2.716645442604280758e-01,0.000000000000000000e+00 +5.631369492336226745e-01,-2.058558435858819369e-01,0.000000000000000000e+00 +4.226811946006704956e-01,-2.849970334691691032e-01,0.000000000000000000e+00 +3.160468494806726869e-01,-2.298977178283268807e-01,0.000000000000000000e+00 +7.782255613252055948e-01,-2.677092855536165050e-01,0.000000000000000000e+00 +4.362656466265567579e-01,-1.863234007672398829e-01,0.000000000000000000e+00 +7.775964625133942043e-01,-3.101364749346094407e-01,0.000000000000000000e+00 +8.759721864611421660e-01,-3.385333841932887111e-01,0.000000000000000000e+00 +7.768915578591617521e-01,-3.583598649393739399e-01,0.000000000000000000e+00 +7.473996984924926590e-01,-3.304157509009821858e-01,0.000000000000000000e+00 +7.366711451914467190e-01,-2.863492943481064645e-01,0.000000000000000000e+00 +8.483461825306419790e-01,-2.787421737895980911e-01,0.000000000000000000e+00 +8.741266955802199368e-01,-3.037495622241518367e-01,0.000000000000000000e+00 +9.075097544193901911e-01,-3.131052736415845250e-01,0.000000000000000000e+00 +8.145662681073932987e-01,-3.691566018584233055e-01,0.000000000000000000e+00 +3.280828349000305955e-01,-1.938193110770952410e-01,0.000000000000000000e+00 +1.989278934972727175e-01,-2.648754406442915821e-01,0.000000000000000000e+00 +2.076337141121390450e-01,-2.943682167414737316e-01,0.000000000000000000e+00 +1.854572356269272027e-01,-3.866164538256169347e-01,0.000000000000000000e+00 +1.806892399653299564e-01,-4.231960729500711671e-01,0.000000000000000000e+00 +2.088840422118771745e-01,-4.031498707316520935e-01,0.000000000000000000e+00 +9.325429238103649654e-01,-3.413999607839972583e-01,0.000000000000000000e+00 +9.030662216742895154e-01,-3.525541523990861070e-01,0.000000000000000000e+00 +1.359235867595459946e-01,-3.436309894325554892e-01,0.000000000000000000e+00 +1.617494615608373321e-01,-3.667583078005529074e-01,0.000000000000000000e+00 +1.771792209136315299e-01,-3.247011410487476435e-01,0.000000000000000000e+00 +1.965283709932583445e-01,-3.534355721901624725e-01,0.000000000000000000e+00 +7.965883247021411373e-01,-1.709432942288051649e-01,0.000000000000000000e+00 +7.739372819873546749e-01,-1.997041594216326932e-01,0.000000000000000000e+00 +7.360700305034827418e-01,-3.667679008101361049e-01,0.000000000000000000e+00 +8.236103271506116652e-01,-1.310526808812899069e-01,0.000000000000000000e+00 +7.291958538425683534e-01,-2.801946680562754713e-02,0.000000000000000000e+00 +2.429624151794271825e-01,-3.027902254400218207e-01,0.000000000000000000e+00 +9.660572650567889053e-01,-2.275115207311400600e-01,0.000000000000000000e+00 +3.864253787496985670e-01,-2.601543759516088961e-01,0.000000000000000000e+00 +7.464631531472306625e-01,-2.493187143919789184e-01,0.000000000000000000e+00 +2.162912503191943003e-01,-3.298655847588213841e-01,0.000000000000000000e+00 +9.619346398829409228e-02,-3.612777850074184172e-01,0.000000000000000000e+00 +6.031339009413805297e-02,-3.770800344018474526e-01,0.000000000000000000e+00 +9.422891957014379871e-01,-1.958075871885262831e-01,0.000000000000000000e+00 +7.638968632105086476e-01,-7.126555668879173966e-02,0.000000000000000000e+00 +7.927998131170890250e-01,-9.694773399077162568e-02,0.000000000000000000e+00 +3.268718369239471677e-01,-3.435710689078878000e-01,0.000000000000000000e+00 +3.092337804383522154e-02,-3.936635724065730702e-01,0.000000000000000000e+00 +2.222500693401236183e-01,-3.694098222421257072e-01,0.000000000000000000e+00 +3.942457462866598705e-01,-2.270988217360070949e-01,0.000000000000000000e+00 +7.387057216666678139e-01,-5.183781240485896280e-02,0.000000000000000000e+00 +9.234075038579647732e-01,-2.858085054031033190e-01,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri3/uvs.csv b/src/pyvale/data/render/riley/rabbits/riley_tri3/uvs.csv new file mode 100644 index 000000000..989bfd9a2 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri3/uvs.csv @@ -0,0 +1,196 @@ +7.338199733793806523e-01,1.448639211456410336e-01 +7.442952595329419552e-01,1.266651651990754746e-01 +7.500000000000000000e-01,1.068929947901862826e-01 +7.420464621936614380e-01,8.770101071632004086e-02 +7.247096413728993936e-01,7.646709596406925380e-02 +7.345861362692208685e-01,6.390060344977185891e-02 +7.320483236262271820e-01,4.749655382588282432e-02 +7.116429183752095433e-01,4.344283674713252108e-02 +6.915946207703329573e-01,3.762314437327901606e-02 +6.710736170483465601e-01,3.311107553276382981e-02 +6.502676586154452210e-01,3.011867050862589851e-02 +6.293744135784695715e-01,2.779909649901505034e-02 +6.084348983747704942e-01,2.594323460814529705e-02 +5.874555211852530157e-01,2.461724613291962557e-02 +5.664437808425890619e-01,2.399449040185135454e-02 +5.454226328130022949e-01,2.405866757009356149e-02 +5.244130302925895659e-01,2.475481722310010971e-02 +5.034511269223822527e-01,2.630983863995608671e-02 +4.826550315364549482e-01,2.933790787328471525e-02 +4.622423671155497238e-01,3.433114483235779474e-02 +4.418565238989815014e-01,3.937879253107978705e-02 +4.209121941343356710e-01,3.842198434749276997e-02 +3.999779375315213326e-01,3.947862030564480013e-02 +3.795730042948079475e-01,4.447594624185505913e-02 +3.693842159595606134e-01,2.794951688785758670e-02 +3.579235321712588846e-01,1.072085045308336475e-02 +3.400024837397834787e-01,0.000000000000000000e+00 +3.233773477674861674e-01,8.318379734252501559e-03 +3.203172590370256811e-01,2.877790721512799021e-02 +3.153614670692501676e-01,3.647168174983966837e-02 +2.959440471552045038e-01,2.843028707138802597e-02 +2.762307136728024415e-01,2.114896983475843956e-02 +2.555290493632474402e-01,1.785864850437117804e-02 +2.500000000000000000e-01,3.496274788110842469e-02 +2.605210276009061188e-01,5.306318181851765736e-02 +2.787891334742739202e-01,6.327960672124728625e-02 +2.980969562624835589e-01,7.158253923718910228e-02 +3.177730174744268776e-01,7.898268991300998187e-02 +3.369631651584635845e-01,8.755036160430469672e-02 +3.350314437642135657e-01,1.012535865201642932e-01 +3.481698857786940660e-01,1.167666526915468461e-01 +3.680849387472705514e-01,1.234014046703564155e-01 +3.881973874547042236e-01,1.293961877579032638e-01 +4.021937000734174816e-01,1.448268522267082137e-01 +4.211115914581485820e-01,1.536829979132903479e-01 +4.418528361407643712e-01,1.566990790570937653e-01 +4.628656888841782280e-01,1.564567810947355420e-01 +4.837665257550108344e-01,1.542728352058926888e-01 +5.045034693676335724e-01,1.508261325467759040e-01 +5.252889145244977742e-01,1.476994765229847628e-01 +5.462526886111935820e-01,1.461943560954346022e-01 +5.672412318767213746e-01,1.450153800319728403e-01 +5.882307793317385070e-01,1.438617758535778723e-01 +6.092494700945684238e-01,1.435174667697966255e-01 +6.302078337766199301e-01,1.437732252276068823e-01 +6.413122892273082076e-01,1.610114332596711273e-01 +6.264672326117393109e-01,1.726002308714227607e-01 +6.124545672115218053e-01,1.880896263294241089e-01 +6.019694142155784800e-01,2.062674829285107425e-01 +5.984887549589875677e-01,2.262652327495023874e-01 +6.173942764416358031e-01,2.291530701404837778e-01 +6.359664416939513343e-01,2.195367872147556687e-01 +6.514914498578027180e-01,2.053795017497992426e-01 +6.664092168699740082e-01,1.905908021830867161e-01 +6.799326407312374920e-01,1.745474400216180666e-01 +6.983123866770746258e-01,1.649747702966918583e-01 +7.183076384313367146e-01,1.586029343658129642e-01 +4.307706099614856399e-01,8.518426921523943041e-02 +4.295688316012348240e-01,6.979659886709314864e-02 +4.455156140994210867e-01,8.023300214484403725e-02 +4.439127853164441806e-01,6.054696947592971834e-02 +5.197322216294426589e-01,1.016595693804533823e-01 +5.040055003831216407e-01,1.099385069774939522e-01 +5.092387098254342881e-01,8.973168806953797649e-02 +4.922532695486320220e-01,9.012773033024568115e-02 +6.036768190488206454e-01,1.081246312769165996e-01 +6.188332384911571227e-01,1.240032293745121778e-01 +5.969362862068925413e-01,1.248201173705204697e-01 +3.705465397216084478e-01,6.068641081129409059e-02 +3.834100184591593408e-01,6.629204491864881810e-02 +5.153777818572731206e-01,4.032246407210314521e-02 +5.328731813966298692e-01,4.445193030048799621e-02 +3.800273268443283836e-01,9.579518647751589233e-02 +3.844217903315375606e-01,1.100569221271384818e-01 +3.647203245408003336e-01,1.011052154620496052e-01 +3.984713067503834472e-01,7.328423165421948937e-02 +3.955167897360531426e-01,5.719221342040405748e-02 +3.856949079583338325e-01,8.267477703942982536e-02 +3.981696998843977653e-01,9.462765393824990046e-02 +7.252083966214268873e-01,9.886451343516751422e-02 +7.162744824744320393e-01,1.149056270782832928e-01 +6.978080352983323520e-01,1.004193042333215158e-01 +7.026769442019349388e-01,1.248745796609532638e-01 +4.306897108056341739e-01,5.424623297853978926e-02 +4.301900068389991061e-01,1.204865763478591839e-01 +4.491312199632929714e-01,1.347843420727042607e-01 +4.312003179163668154e-01,1.403108845267087845e-01 +4.149910171094818301e-01,7.945806605827716862e-02 +4.210790286017638273e-01,9.992146197137621866e-02 +5.811450121685759473e-01,1.020538430959300330e-01 +5.950238026340747277e-01,8.734523922933756790e-02 +5.902397441815940837e-01,4.938745426533128202e-02 +6.048995504830949610e-01,6.555147940971418896e-02 +5.827491418990127237e-01,6.869895529545608226e-02 +4.565309911188475400e-01,5.186273029613244767e-02 +4.707390405756420870e-01,5.154917846955010818e-02 +4.593150403745460686e-01,6.776446003788900996e-02 +6.727090421947510279e-01,5.226287762488580207e-02 +6.720999346416425269e-01,7.144413193021546815e-02 +6.557002399259245218e-01,6.375972530163370733e-02 +6.563396991330152641e-01,8.413248588653063353e-02 +6.901790003172084687e-01,1.350078745194666641e-01 +6.819193987711064109e-01,1.517965467404912283e-01 +6.752537390332171707e-01,1.323573265809070421e-01 +6.644890962910039445e-01,1.454855480491702990e-01 +6.880608683458433461e-01,1.210626687581619620e-01 +6.743866228785235784e-01,1.126542587961613662e-01 +7.021620922567679557e-01,1.447298156939443581e-01 +6.556575363525734002e-01,1.265409221426626596e-01 +6.382092111197307238e-01,1.148438577663086074e-01 +6.551026325539694994e-01,1.040394161141712653e-01 +5.359947440533663343e-01,1.056408187171112567e-01 +5.222608444353498136e-01,1.158757900448907363e-01 +5.581621294437402181e-01,1.032741040047441966e-01 +5.688586809118638676e-01,1.210476740376964649e-01 +5.707905407937874376e-01,8.423359753625431212e-02 +5.636139319755082422e-01,6.306770877729342417e-02 +4.777264394857121399e-01,7.209587672409811798e-02 +4.789574148600160841e-01,1.296731213988649711e-01 +4.635612398811643775e-01,1.142195083588216781e-01 +4.850371732887229781e-01,1.109023400393064213e-01 +5.270262253170374667e-01,8.672908451204133784e-02 +5.156280624903348819e-01,5.670744043138655627e-02 +5.002539621447968932e-01,4.615891343441465289e-02 +5.742691311282193123e-01,4.550272181837974189e-02 +5.457984338472428032e-01,1.221449147380088140e-01 +5.476633794999345994e-01,8.172225948114990313e-02 +5.804823980991584698e-01,1.273597580779395333e-01 +5.551126666853587466e-01,4.325047603742662727e-02 +6.018253754063429550e-01,4.256686818201973338e-02 +5.459017838121995592e-01,5.977925792702167701e-02 +5.123242196204071952e-01,1.309246993983853857e-01 +5.174721218341472584e-01,7.279365691422916285e-02 +5.310941257250472169e-01,6.703060492771943657e-02 +5.572626329409162693e-01,1.275352857233983950e-01 +4.947657172956055893e-01,1.310896058733737601e-01 +4.859643739682727448e-01,5.390295101497681596e-02 +4.984473960987578778e-01,7.037287857353660692e-02 +4.762736491966192975e-01,9.505744348789547937e-02 +5.313199741869969461e-01,1.280800091493555781e-01 +4.608397894643925796e-01,8.836724909393975369e-02 +4.073310645177241063e-01,1.160158844567557301e-01 +6.392506542190048435e-01,9.704217786214922037e-02 +4.676564178798096050e-01,1.378813176221849457e-01 +6.389349747327416340e-01,7.575236917721722696e-02 +6.882995537361180638e-01,6.150290381830057079e-02 +6.385812561515986641e-01,5.155404818732303024e-02 +6.237823488273113171e-01,6.557630255833268862e-02 +6.183987999621185505e-01,8.768868952342076528e-02 +6.744369258554925306e-01,9.150591483805380066e-02 +6.873734931519064340e-01,7.895729864996517411e-02 +7.041249901606183581e-01,7.426263682827477508e-02 +6.574862881640286538e-01,4.613628503162648525e-02 +4.133706780450712159e-01,1.341198972041800219e-01 +3.485612001301812146e-01,9.846419088828957389e-02 +3.529297491205810600e-01,8.366482355197868426e-02 +3.418016732064319552e-01,3.737499507883710465e-02 +3.394091103964272382e-01,1.901947579298512991e-02 +3.535571591947620496e-01,2.907858685634478330e-02 +7.166865431384856766e-01,6.006446615397981886e-02 +7.018952416571551112e-01,5.446733353725505267e-02 +3.169458691044148013e-01,5.894494412597374444e-02 +3.299051987621747228e-01,4.733974023116285096e-02 +3.376477956550693049e-01,6.844387291211163904e-02 +3.473571285008561493e-01,5.402504030508693128e-02 +6.484650218197200999e-01,1.455989989141688590e-01 +6.370988113083053683e-01,1.311669017966838602e-01 +6.180971628070024426e-01,4.733492649398820390e-02 +6.620245639625099709e-01,1.656159630092181867e-01 +6.146477260634302109e-01,2.173176535493695494e-01 +3.706575622937692827e-01,7.943869034469043522e-02 +7.335039171797068658e-01,1.172132694455998436e-01 +4.426467534786264757e-01,1.008332039094874816e-01 +6.233123937933744418e-01,1.062704993076724197e-01 +3.572740691714786920e-01,6.585237391923168260e-02 +2.970094385944139215e-01,5.008984655358433846e-02 +2.790049485503475757e-01,4.216033551815163982e-02 +7.215771867795002237e-01,1.331221875127586440e-01 +6.320605658342506317e-01,1.956169235831181075e-01 +6.465639605421955594e-01,1.827297008057214567e-01 +4.127630036833043192e-01,5.897501202641890899e-02 +2.642571478374606819e-01,3.383877671138147553e-02 +3.602641827942432151e-01,4.600921996785951873e-02 +4.465709853482574543e-01,1.174203602941579355e-01 +6.194197430069983135e-01,2.053656947135952537e-01 +7.121024227694319197e-01,8.796005544103209506e-02 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri6/connectivity.csv b/src/pyvale/data/render/riley/rabbits/riley_tri6/connectivity.csv new file mode 100644 index 000000000..866fc5fc7 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri6/connectivity.csv @@ -0,0 +1,323 @@ +134,135,136,265,264,263 +135,137,136,267,266,264 +138,139,140,270,269,268 +139,141,140,272,271,269 +142,143,144,275,274,273 +145,23,146,278,277,276 +147,16,148,281,280,279 +149,150,151,284,283,282 +152,146,153,287,286,285 +152,154,146,289,288,287 +149,155,150,291,290,284 +156,157,158,294,293,292 +157,159,158,296,295,293 +160,137,135,298,267,297 +160,20,137,300,299,298 +161,162,163,303,302,301 +134,164,135,305,304,265 +134,165,164,307,306,305 +162,45,163,309,308,302 +143,53,144,311,310,274 +144,53,52,310,119,312 +166,142,144,314,273,313 +166,167,142,316,315,314 +168,169,170,319,318,317 +169,167,170,321,320,318 +171,172,173,324,323,322 +174,175,176,327,326,325 +175,177,176,329,328,326 +178,179,180,332,331,330 +179,181,180,334,333,331 +180,182,178,336,335,330 +180,183,182,338,337,336 +184,179,178,340,332,339 +184,65,179,342,341,340 +185,186,187,345,344,343 +138,188,189,348,347,346 +190,166,191,351,350,349 +190,192,166,353,352,351 +173,137,171,355,354,322 +45,44,163,111,356,308 +170,192,193,359,358,357 +194,173,172,361,323,360 +195,196,197,364,363,362 +138,198,188,366,365,348 +199,200,147,369,368,367 +200,17,147,371,370,368 +201,170,193,373,357,372 +171,19,172,375,374,324 +201,168,170,376,317,373 +201,13,168,378,377,376 +188,190,202,381,380,379 +188,203,190,383,382,381 +166,144,204,313,385,384 +144,52,204,312,386,385 +205,201,193,388,372,387 +206,169,168,390,319,389 +205,193,207,387,392,391 +193,203,207,394,393,392 +189,139,138,395,270,346 +189,208,139,397,396,395 +138,140,198,268,398,366 +140,209,198,400,399,398 +205,14,201,402,401,388 +210,209,199,405,404,403 +190,191,211,349,407,406 +191,51,211,409,408,407 +139,208,212,396,411,410 +208,48,212,413,412,411 +210,199,148,403,415,414 +210,198,209,416,399,405 +213,214,194,419,418,417 +196,215,197,421,420,363 +188,202,216,379,423,422 +202,50,216,425,424,423 +147,148,199,279,415,367 +196,217,215,427,426,421 +212,195,197,429,362,428 +212,47,195,431,430,429 +214,141,194,433,432,418 +191,166,204,350,384,434 +212,197,139,428,435,410 +197,141,139,436,272,435 +189,216,208,438,437,397 +218,150,155,440,290,439 +218,42,150,442,441,440 +207,210,148,444,414,443 +207,203,210,393,445,444 +202,190,211,380,406,446 +200,199,214,369,448,447 +187,219,177,451,450,449 +220,196,195,453,364,452 +200,214,213,447,419,454 +189,188,216,347,422,438 +219,221,177,456,455,450 +208,216,49,437,458,457 +207,148,205,443,459,391 +214,140,141,460,271,433 +213,194,172,417,360,461 +174,8,222,464,463,462 +9,8,174,75,464,465 +223,221,224,468,467,466 +224,221,225,467,470,469 +158,226,227,473,472,471 +158,183,226,475,474,473 +227,226,175,472,477,476 +226,177,175,478,329,477 +227,228,158,480,479,471 +174,229,9,482,481,465 +161,163,230,301,484,483 +230,218,161,486,485,483 +161,218,165,485,488,487 +231,38,232,491,490,489 +233,234,235,494,493,492 +233,28,234,496,495,494 +236,228,237,499,498,497 +236,4,228,501,500,499 +238,239,240,504,503,502 +241,240,239,506,503,505 +238,240,37,502,508,507 +38,37,240,104,508,509 +233,239,28,511,510,496 +239,29,28,512,95,510 +229,10,9,513,76,481 +242,243,185,516,515,514 +206,244,169,518,517,390 +238,29,239,519,512,504 +206,12,244,521,520,518 +179,65,64,341,131,522 +245,242,181,525,524,523 +245,55,242,527,526,525 +179,245,181,528,523,334 +59,246,60,530,529,126 +59,58,246,125,531,530 +245,179,64,528,522,532 +244,224,169,534,533,517 +167,169,225,321,536,535 +224,225,169,469,536,533 +151,247,149,538,537,282 +151,232,247,540,539,538 +247,145,146,542,276,541 +154,247,146,543,541,288 +247,154,149,543,544,537 +167,225,142,535,545,315 +242,54,243,547,546,516 +2,156,3,549,548,69 +156,2,248,549,551,550 +156,4,3,552,70,548 +217,249,136,555,554,553 +250,219,186,558,557,556 +196,249,217,559,555,427 +155,149,154,291,544,560 +193,192,203,358,561,394 +241,251,240,563,562,506 +203,192,190,561,353,382 +252,238,36,566,565,564 +29,238,252,519,566,567 +218,155,165,439,568,488 +155,164,165,569,306,568 +155,152,164,571,570,569 +250,225,219,573,572,558 +54,53,143,120,311,574 +35,253,252,577,576,575 +252,253,30,576,579,578 +226,187,177,580,449,478 +183,187,226,581,580,474 +222,237,228,583,498,582 +228,227,222,480,584,582 +27,26,234,93,586,585 +234,25,235,588,587,493 +234,26,25,586,92,588 +254,184,159,591,590,589 +137,173,136,355,592,266 +242,185,181,514,593,524 +242,55,54,526,121,547 +183,158,182,475,594,337 +159,178,182,596,335,595 +182,158,159,594,295,595 +232,251,247,598,597,539 +66,184,254,600,591,599 +203,198,210,601,416,445 +198,203,188,601,383,365 +62,255,256,604,603,602 +256,255,56,603,606,605 +135,257,160,608,607,297 +135,164,257,304,609,608 +247,251,145,597,610,542 +21,160,257,612,607,611 +7,6,236,73,614,613 +254,0,66,615,133,599 +254,159,157,589,296,616 +236,6,5,614,72,617 +156,248,157,550,618,294 +231,232,151,489,540,619 +231,151,40,619,621,620 +23,153,146,622,286,277 +41,40,151,107,621,623 +244,223,224,624,466,534 +244,11,223,626,625,624 +42,41,150,108,627,441 +33,32,258,99,629,628 +239,233,241,511,630,505 +258,32,31,629,98,631 +235,259,233,633,632,492 +241,233,259,630,632,634 +235,24,259,636,635,633 +153,23,22,622,89,637 +24,23,259,90,638,635 +63,256,245,641,640,639 +245,256,55,640,642,527 +220,162,196,644,643,453 +220,46,162,646,645,644 +173,217,136,647,553,592 +219,225,221,572,470,456 +184,178,159,339,596,590 +184,66,65,600,132,342 +180,185,183,649,648,338 +181,185,180,593,649,333 +251,232,240,598,650,562 +240,232,38,650,490,509 +223,176,221,652,651,468 +219,187,186,451,344,557 +155,154,152,560,289,571 +237,222,8,583,463,653 +8,7,237,74,654,653 +152,153,257,285,656,655 +235,25,24,587,91,636 +257,164,152,609,570,655 +257,22,21,657,88,611 +257,153,22,656,637,657 +160,21,20,612,87,300 +170,167,192,320,658,359 +192,167,166,658,316,352 +251,241,259,563,634,659 +259,145,251,660,610,659 +23,145,259,278,660,638 +63,62,256,129,602,641 +56,55,256,122,642,605 +30,29,252,96,567,578 +36,35,252,102,575,564 +151,150,41,283,627,623 +218,230,42,486,661,442 +215,217,194,426,663,662 +2,1,248,68,664,551 +62,61,255,128,665,604 +57,56,255,123,606,666 +248,1,254,664,668,667 +254,157,248,616,618,667 +37,36,238,103,565,507 +254,1,0,668,67,615 +31,30,253,97,579,669 +35,34,253,101,670,577 +215,141,197,671,436,420 +15,14,205,81,402,672 +194,141,215,432,671,662 +13,12,206,79,521,673 +28,27,234,94,585,495 +143,142,250,275,675,674 +250,186,143,556,676,674 +171,20,19,677,86,375 +64,63,245,130,639,532 +209,214,199,678,448,404 +250,142,225,675,545,573 +205,148,15,459,679,672 +249,196,260,559,681,680 +202,211,50,446,682,425 +230,43,42,683,109,661 +44,230,163,684,484,356 +44,43,230,110,683,684 +222,227,175,584,476,685 +261,58,57,687,124,686 +261,255,61,689,665,688 +175,174,222,327,462,685 +57,255,261,666,689,686 +47,220,195,690,452,430 +18,200,213,692,454,691 +213,172,18,461,693,691 +14,13,201,80,378,401 +204,52,51,386,118,694 +244,12,11,520,78,626 +48,47,212,114,431,412 +162,161,260,303,696,695 +260,196,162,681,643,695 +191,204,51,434,694,409 +260,161,249,696,697,680 +148,16,15,280,82,679 +20,171,137,677,354,299 +162,46,45,645,112,309 +214,209,140,678,400,460 +13,206,168,673,389,377 +177,221,176,455,651,328 +246,261,61,699,688,698 +61,60,246,127,529,698 +58,261,246,687,699,531 +236,5,4,617,71,501 +236,237,7,497,654,613 +185,187,183,343,581,648 +211,51,50,408,117,682 +229,223,10,701,700,513 +258,253,34,703,670,702 +34,33,258,100,628,702 +31,253,258,669,703,631 +47,46,220,113,646,690 +49,48,208,115,413,457 +161,165,249,487,704,697 +223,11,10,625,77,700 +18,17,200,84,371,692 +229,174,176,482,325,705 +216,50,49,424,116,458 +176,223,229,652,701,705 +231,39,38,706,105,491 +147,17,16,370,83,281 +40,39,231,106,706,620 +172,19,18,374,85,693 +134,136,249,263,554,707 +249,165,134,704,307,707 +262,228,4,709,500,708 +262,156,158,711,292,710 +158,228,262,479,709,710 +4,156,262,552,711,708 +194,217,173,663,647,361 +243,143,186,713,676,712 +186,185,243,345,515,712 +54,143,243,574,713,546 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri6/coords.csv b/src/pyvale/data/render/riley/rabbits/riley_tri6/coords.csv new file mode 100644 index 000000000..bda718636 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri6/coords.csv @@ -0,0 +1,714 @@ +9.666871145982780522e-01,-1.724081868521550875e-01,0.000000000000000000e+00 +9.875626873210988643e-01,-2.086754016716984017e-01,0.000000000000000000e+00 +9.989313242002355597e-01,-2.480781802887241372e-01,0.000000000000000000e+00 +9.830811932877279169e-01,-2.863247401779739909e-01,0.000000000000000000e+00 +9.485316775493641828e-01,-3.087121385683131436e-01,0.000000000000000000e+00 +9.682139549050650107e-01,-3.337551516667011109e-01,0.000000000000000000e+00 +9.631564995182547717e-01,-3.664458033445872065e-01,0.000000000000000000e+00 +9.224917849690079663e-01,-3.745242142285154507e-01,0.000000000000000000e+00 +8.825387289394055479e-01,-3.861219319036093278e-01,0.000000000000000000e+00 +8.416436450950407488e-01,-3.951137646640466849e-01,0.000000000000000000e+00 +8.001806920103313736e-01,-4.010771500820467517e-01,0.000000000000000000e+00 +7.585437906606897762e-01,-4.056996907185270174e-01,0.000000000000000000e+00 +7.168146802566919273e-01,-4.093981271429288360e-01,0.000000000000000000e+00 +6.750061312796917790e-01,-4.120406104544501180e-01,0.000000000000000000e+00 +6.331330877058716222e-01,-4.132816631915201544e-01,0.000000000000000000e+00 +5.912412961141324530e-01,-4.131537683423346374e-01,0.000000000000000000e+00 +5.493725128787144696e-01,-4.117664532375950870e-01,0.000000000000000000e+00 +5.075987864335677058e-01,-4.086675438429257512e-01,0.000000000000000000e+00 +4.661554888266521979e-01,-4.026330853504866414e-01,0.000000000000000000e+00 +4.254763079108858648e-01,-3.926823613575226024e-01,0.000000000000000000e+00 +3.848505773728412294e-01,-3.826232054481610301e-01,0.000000000000000000e+00 +3.431118723176137530e-01,-3.845299713851917933e-01,0.000000000000000000e+00 +3.013932414655421388e-01,-3.824242646328802064e-01,0.000000000000000000e+00 +2.607294675654376337e-01,-3.724653919613657438e-01,0.000000000000000000e+00 +2.404248392496208808e-01,-4.053999269010765683e-01,0.000000000000000000e+00 +2.175855263784772786e-01,-4.397339082170978464e-01,0.000000000000000000e+00 +1.818717382951541284e-01,-4.610988513797951716e-01,0.000000000000000000e+00 +1.487404968255848503e-01,-4.445216487589970789e-01,0.000000000000000000e+00 +1.426422285878914953e-01,-4.037490772473002476e-01,0.000000000000000000e+00 +1.327661264837693145e-01,-3.884166130589347121e-01,0.000000000000000000e+00 +9.407030896021634225e-02,-4.044418286895216097e-01,0.000000000000000000e+00 +5.478478294323079617e-02,-4.189523313395626114e-01,0.000000000000000000e+00 +1.352967139378481905e-02,-4.255094163878403446e-01,0.000000000000000000e+00 +2.511158832073358878e-03,-3.914236773289563320e-01,0.000000000000000000e+00 +2.347788695594905939e-02,-3.553524025746587212e-01,0.000000000000000000e+00 +5.988330510655755917e-02,-3.349926989925601784e-01,0.000000000000000000e+00 +9.836071305761168171e-02,-3.184462802114093050e-01,0.000000000000000000e+00 +1.375719613908088779e-01,-3.036989614911078106e-01,0.000000000000000000e+00 +1.758148616483436177e-01,-2.866249598041877844e-01,0.000000000000000000e+00 +1.719652493461359399e-01,-2.593166205307119165e-01,0.000000000000000000e+00 +1.981480664756332111e-01,-2.284015566109994233e-01,0.000000000000000000e+00 +2.378355872201626531e-01,-2.151795552831950731e-01,0.000000000000000000e+00 +2.779164861542021137e-01,-2.032329097723156730e-01,0.000000000000000000e+00 +3.058089024223675789e-01,-1.724820592888211268e-01,0.000000000000000000e+00 +3.435092393463490823e-01,-1.548331749897237652e-01,0.000000000000000000e+00 +3.848432282595360965e-01,-1.488226068455789364e-01,0.000000000000000000e+00 +4.267184886704346591e-01,-1.493054679970216847e-01,0.000000000000000000e+00 +4.683705193327706851e-01,-1.536577234444534978e-01,0.000000000000000000e+00 +5.096959369002100892e-01,-1.605264515115975565e-01,0.000000000000000000e+00 +5.511180103011171783e-01,-1.667573777361482379e-01,0.000000000000000000e+00 +5.928954647855297910e-01,-1.697568424267852649e-01,0.000000000000000000e+00 +6.347222802884777693e-01,-1.721063534750245927e-01,0.000000000000000000e+00 +6.765510969807400077e-01,-1.744053024074360692e-01,0.000000000000000000e+00 +7.184379916321823600e-01,-1.750914554358342090e-01,0.000000000000000000e+00 +7.602046640440139891e-01,-1.745817696661829954e-01,0.000000000000000000e+00 +7.823340707170104436e-01,-1.402287734702625244e-01,0.000000000000000000e+00 +7.527502431814407924e-01,-1.171341502048230815e-01,0.000000000000000000e+00 +7.248252384307738438e-01,-8.626625823739389465e-02,0.000000000000000000e+00 +7.039300026665170629e-01,-5.004069248039264700e-02,0.000000000000000000e+00 +6.969936045224320864e-01,-1.018837011314539451e-02,0.000000000000000000e+00 +7.346692902066553899e-01,-4.433371291789331599e-03,0.000000000000000000e+00 +7.716806501505696358e-01,-2.359708773795140754e-02,0.000000000000000000e+00 +8.026195125545033671e-01,-5.181029718626375263e-02,0.000000000000000000e+00 +8.323482403008860553e-01,-8.128181412195124855e-02,0.000000000000000000e+00 +8.592982647812540398e-01,-1.132536732779350769e-01,0.000000000000000000e+00 +8.959261637708058057e-01,-1.323304755785866260e-01,0.000000000000000000e+00 +9.357735078899254155e-01,-1.450285272024768590e-01,0.000000000000000000e+00 +9.778622436656088102e-01,-1.901180830520642628e-01,0.000000000000000000e+00 +9.957852705523793091e-01,-2.279630430844982181e-01,0.000000000000000000e+00 +9.920448634591534365e-01,-2.675212377191734103e-01,0.000000000000000000e+00 +9.676691199802723853e-01,-3.003136759800775768e-01,0.000000000000000000e+00 +9.514632150378673492e-01,-3.212352887049222394e-01,0.000000000000000000e+00 +9.774174269528110859e-01,-3.514607917619930744e-01,0.000000000000000000e+00 +9.433616849532268089e-01,-3.728912464819770789e-01,0.000000000000000000e+00 +9.022237038527687325e-01,-3.789092664398640009e-01,0.000000000000000000e+00 +8.621979243711073160e-01,-3.911665914501159524e-01,0.000000000000000000e+00 +8.209412495737061777e-01,-3.983409871253664747e-01,0.000000000000000000e+00 +7.793751786167082418e-01,-4.035019037954636345e-01,0.000000000000000000e+00 +7.376949137972159676e-01,-4.076652142146280355e-01,0.000000000000000000e+00 +6.959093627655208447e-01,-4.108781016360967819e-01,0.000000000000000000e+00 +6.540781136345515945e-01,-4.128437447308987429e-01,0.000000000000000000e+00 +6.121855578415423826e-01,-4.133741711710034461e-01,0.000000000000000000e+00 +5.703011022952665376e-01,-4.126275291224508202e-01,0.000000000000000000e+00 +5.284735631828211266e-01,-4.104971005240447557e-01,0.000000000000000000e+00 +4.868111037958168241e-01,-4.061009870401813826e-01,0.000000000000000000e+00 +4.456605687865472509e-01,-3.981156849507463402e-01,0.000000000000000000e+00 +4.053123601636162143e-01,-3.869672295492027625e-01,0.000000000000000000e+00 +3.639623740897396931e-01,-3.823743635216022008e-01,0.000000000000000000e+00 +3.221700814924403078e-01,-3.848826098951625418e-01,0.000000000000000000e+00 +2.809583066799279383e-01,-3.778228426606007884e-01,0.000000000000000000e+00 +2.465389797645886893e-01,-3.853628687357680271e-01,0.000000000000000000e+00 +2.317280475612862878e-01,-4.243761988795529683e-01,0.000000000000000000e+00 +2.008276287683351535e-01,-4.522665245588389227e-01,0.000000000000000000e+00 +1.619875424356327087e-01,-4.604230994218685979e-01,0.000000000000000000e+00 +1.426112418449243247e-01,-4.245530363273828933e-01,0.000000000000000000e+00 +1.480949133661025596e-01,-3.835061678375943917e-01,0.000000000000000000e+00 +1.135683368955183042e-01,-3.967399579471875271e-01,0.000000000000000000e+00 +7.458052522258147576e-02,-4.120897924496964015e-01,0.000000000000000000e+00 +3.435274370373675445e-02,-4.234738266495128856e-01,0.000000000000000000e+00 +3.009710158313550822e-04,-4.120272614651127596e-01,0.000000000000000000e+00 +1.179189850958870141e-02,-3.726863579183096187e-01,0.000000000000000000e+00 +4.098939572185500424e-02,-3.440161266161657627e-01,0.000000000000000000e+00 +7.897070617804309578e-02,-3.263631778018770135e-01,0.000000000000000000e+00 +1.179746504327595230e-01,-3.111011226879187852e-01,0.000000000000000000e+00 +1.567678794049625068e-01,-2.953229101329285511e-01,0.000000000000000000e+00 +1.842441432565224690e-01,-2.746632487320875282e-01,0.000000000000000000e+00 +1.817072337037803909e-01,-2.411880235760521796e-01,0.000000000000000000e+00 +2.177138677895257279e-01,-2.210088339411925284e-01,0.000000000000000000e+00 +2.580632682991935156e-01,-2.097548895841633287e-01,0.000000000000000000e+00 +2.918239442919388638e-01,-1.879366767006200312e-01,0.000000000000000000e+00 +3.238031480941442886e-01,-1.618516801440687269e-01,0.000000000000000000e+00 +3.640040002820704168e-01,-1.504475160062363759e-01,0.000000000000000000e+00 +4.057640117058068929e-01,-1.485799015039800663e-01,0.000000000000000000e+00 +4.475942352051736073e-01,-1.510004427892231438e-01,0.000000000000000000e+00 +4.890540552825521914e-01,-1.569687649206959468e-01,0.000000000000000000e+00 +5.303647810862118783e-01,-1.639251887836987720e-01,0.000000000000000000e+00 +5.719800293469676777e-01,-1.686154088666166617e-01,0.000000000000000000e+00 +6.138217403799081096e-01,-1.708136802577505109e-01,0.000000000000000000e+00 +6.556328391759245200e-01,-1.734062832982055657e-01,0.000000000000000000e+00 +6.974924830032954715e-01,-1.748510182858180884e-01,0.000000000000000000e+00 +7.393981302425420843e-01,-1.758026910719771019e-01,0.000000000000000000e+00 +7.725468024602029082e-01,-1.587249511219713249e-01,0.000000000000000000e+00 +7.719571147345077877e-01,-1.251439006222591910e-01,0.000000000000000000e+00 +7.372412957043384951e-01,-1.031481443684741234e-01,0.000000000000000000e+00 +7.134198835032757868e-01,-6.870872906286862314e-02,0.000000000000000000e+00 +6.965960018220258565e-01,-3.040938366525559877e-02,0.000000000000000000e+00 +7.143195347045079302e-01,-2.305530669020581255e-05,0.000000000000000000e+00 +7.540693637144051387e-01,-1.232214051656540903e-02,0.000000000000000000e+00 +7.875128915640998706e-01,-3.729777591300732081e-02,0.000000000000000000e+00 +8.179175787964823030e-01,-6.610769554094150791e-02,0.000000000000000000e+00 +8.450679723243980090e-01,-9.790563644071645366e-02,0.000000000000000000e+00 +8.761411742985437678e-01,-1.255637314107881930e-01,0.000000000000000000e+00 +9.161790125558828546e-01,-1.376623488635798087e-01,0.000000000000000000e+00 +9.532555650117179313e-01,-1.563730058034752401e-01,0.000000000000000000e+00 +3.627581209751274960e-01,-2.913402041433653111e-01,0.000000000000000000e+00 +3.603631685902135562e-01,-3.220053742092267024e-01,0.000000000000000000e+00 +3.921425598980792238e-01,-3.012072888494959355e-01,0.000000000000000000e+00 +3.889483780560978876e-01,-3.404384087043012541e-01,0.000000000000000000e+00 +5.400444085943354455e-01,-2.585075615131401383e-01,0.000000000000000000e+00 +5.087035642244192024e-01,-2.420089607741084115e-01,0.000000000000000000e+00 +5.191325150602498217e-01,-2.822779244497684026e-01,0.000000000000000000e+00 +4.852832446413251066e-01,-2.814886754599540963e-01,0.000000000000000000e+00 +7.073325878790962529e-01,-2.456237254251615598e-01,0.000000000000000000e+00 +7.375369118133404678e-01,-2.139802147407200150e-01,0.000000000000000000e+00 +6.938997821810491962e-01,-2.123522873965803248e-01,0.000000000000000000e+00 +2.427411649200030275e-01,-3.401605243874153972e-01,0.000000000000000000e+00 +2.683760241417636472e-01,-3.289893906589277939e-01,0.000000000000000000e+00 +5.313667053985936528e-01,-3.807426187422415786e-01,0.000000000000000000e+00 +5.662322432029694985e-01,-3.725132518979026308e-01,0.000000000000000000e+00 +2.616348598652848967e-01,-2.701943402769945157e-01,0.000000000000000000e+00 +2.703923239345435436e-01,-2.417729782881266054e-01,0.000000000000000000e+00 +2.311304483321403591e-01,-2.596123003592368805e-01,0.000000000000000000e+00 +2.983907668813617908e-01,-3.150550789322429934e-01,0.000000000000000000e+00 +2.925028862173577049e-01,-3.471239018715346902e-01,0.000000000000000000e+00 +2.729294440869945437e-01,-2.963412213609859513e-01,0.000000000000000000e+00 +2.977897125547985246e-01,-2.725210462086907759e-01,0.000000000000000000e+00 +9.495256171237961285e-01,-2.640776617275701343e-01,0.000000000000000000e+00 +9.317217527003288646e-01,-2.321102835096443273e-01,0.000000000000000000e+00 +8.949210720023855758e-01,-2.609792119191511328e-01,0.000000000000000000e+00 +9.046240300321661820e-01,-2.122437527477015751e-01,0.000000000000000000e+00 +3.625969018746241779e-01,-3.529947705096422306e-01,0.000000000000000000e+00 +3.616010716564849181e-01,-2.209883427214400509e-01,0.000000000000000000e+00 +3.993478850836499894e-01,-1.924951785455493170e-01,0.000000000000000000e+00 +3.636144603180530011e-01,-1.814816618536826132e-01,0.000000000000000000e+00 +3.313119119370557808e-01,-3.027516127365493803e-01,0.000000000000000000e+00 +3.434443467728615640e-01,-2.619713320571007142e-01,0.000000000000000000e+00 +6.624302944037824270e-01,-2.577218369515890117e-01,0.000000000000000000e+00 +6.900885077852670912e-01,-2.870337359457587056e-01,0.000000000000000000e+00 +6.805546431565636656e-01,-3.626775406874472862e-01,0.000000000000000000e+00 +7.097692963949773226e-01,-3.304652194726849790e-01,0.000000000000000000e+00 +6.656270688263300483e-01,-3.241928025875585040e-01,0.000000000000000000e+00 +4.140944474806583786e-01,-3.577447107835617923e-01,0.000000000000000000e+00 +4.424088214592549750e-01,-3.583695695093511158e-01,0.000000000000000000e+00 +4.196426131201708709e-01,-3.260551024257200003e-01,0.000000000000000000e+00 +8.449027862846959502e-01,-3.569472810485856962e-01,0.000000000000000000e+00 +8.436889321871050562e-01,-3.187221038748149771e-01,0.000000000000000000e+00 +8.110069591458589633e-01,-3.340358993220302608e-01,0.000000000000000000e+00 +8.122812992436100332e-01,-2.934362403800123142e-01,0.000000000000000000e+00 +8.797176234074036705e-01,-1.920497140704130468e-01,0.000000000000000000e+00 +8.632575563305194821e-01,-1.585925709688427165e-01,0.000000000000000000e+00 +8.499739607738884262e-01,-1.973318329009246253e-01,0.000000000000000000e+00 +8.285217465712377827e-01,-1.711693836881311992e-01,0.000000000000000000e+00 +8.754965245890453662e-01,-2.198402825319575871e-01,0.000000000000000000e+00 +8.482459367293820884e-01,-2.365969010215974722e-01,0.000000000000000000e+00 +9.035980123114790707e-01,-1.726754376048678097e-01,0.000000000000000000e+00 +8.109218577426181573e-01,-2.089229982453318091e-01,0.000000000000000000e+00 +7.761501315148051638e-01,-2.322333798857493248e-01,0.000000000000000000e+00 +8.098160230730816478e-01,-2.537649069612160080e-01,0.000000000000000000e+00 +5.724530191602342777e-01,-2.505735672683310766e-01,0.000000000000000000e+00 +5.450835501031668917e-01,-2.301769036224022291e-01,0.000000000000000000e+00 +6.166290787931466566e-01,-2.552900517984831863e-01,0.000000000000000000e+00 +6.379455979586202696e-01,-2.198701646156493439e-01,0.000000000000000000e+00 +6.417954862446492159e-01,-2.932347410065356819e-01,0.000000000000000000e+00 +6.274936507536644781e-01,-3.354149777612715488e-01,0.000000000000000000e+00 +4.563335918141855907e-01,-3.174232805642182020e-01,0.000000000000000000e+00 +4.587867291862416375e-01,-2.026810252436695714e-01,0.000000000000000000e+00 +4.281046107493125530e-01,-2.334776085654605982e-01,0.000000000000000000e+00 +4.709027169841029092e-01,-2.400881953764314458e-01,0.000000000000000000e+00 +5.545801933155137808e-01,-2.882616339163600605e-01,0.000000000000000000e+00 +5.318654747381613701e-01,-3.480899770353003686e-01,0.000000000000000000e+00 +5.012273475207860152e-01,-3.691115070647268959e-01,0.000000000000000000e+00 +6.487277613572145496e-01,-3.704191921818523192e-01,0.000000000000000000e+00 +5.919902075714993384e-01,-2.176835390955415284e-01,0.000000000000000000e+00 +5.957067464828149639e-01,-2.982394367668606550e-01,0.000000000000000000e+00 +6.611098103625339117e-01,-2.072911889692558574e-01,0.000000000000000000e+00 +6.105519864211654824e-01,-3.749075584088664148e-01,0.000000000000000000e+00 +7.036429563182814428e-01,-3.762698797135294315e-01,0.000000000000000000e+00 +5.921961675498454980e-01,-3.419683352413372401e-01,0.000000000000000000e+00 +5.252814434205538285e-01,-2.001868301291630237e-01,0.000000000000000000e+00 +5.355403905707818435e-01,-3.160327160593361939e-01,0.000000000000000000e+00 +5.626868693100145480e-01,-3.275175584861828582e-01,0.000000000000000000e+00 +6.148365258849627368e-01,-2.069413903982263159e-01,0.000000000000000000e+00 +4.902901518403616765e-01,-1.998581978550065807e-01,0.000000000000000000e+00 +4.727504798929958452e-01,-3.536788766514448734e-01,0.000000000000000000e+00 +4.976271498441005581e-01,-3.208569407684412900e-01,0.000000000000000000e+00 +4.534384127339792236e-01,-2.716645442604280758e-01,0.000000000000000000e+00 +5.631369492336226745e-01,-2.058558435858819369e-01,0.000000000000000000e+00 +4.226811946006704956e-01,-2.849970334691691032e-01,0.000000000000000000e+00 +3.160468494806726869e-01,-2.298977178283268807e-01,0.000000000000000000e+00 +7.782255613252055948e-01,-2.677092855536165050e-01,0.000000000000000000e+00 +4.362656466265567579e-01,-1.863234007672398829e-01,0.000000000000000000e+00 +7.775964625133942043e-01,-3.101364749346094407e-01,0.000000000000000000e+00 +8.759721864611421660e-01,-3.385333841932887111e-01,0.000000000000000000e+00 +7.768915578591617521e-01,-3.583598649393739399e-01,0.000000000000000000e+00 +7.473996984924926590e-01,-3.304157509009821858e-01,0.000000000000000000e+00 +7.366711451914467190e-01,-2.863492943481064645e-01,0.000000000000000000e+00 +8.483461825306419790e-01,-2.787421737895980911e-01,0.000000000000000000e+00 +8.741266955802199368e-01,-3.037495622241518367e-01,0.000000000000000000e+00 +9.075097544193901911e-01,-3.131052736415845250e-01,0.000000000000000000e+00 +8.145662681073932987e-01,-3.691566018584233055e-01,0.000000000000000000e+00 +3.280828349000305955e-01,-1.938193110770952410e-01,0.000000000000000000e+00 +1.989278934972727175e-01,-2.648754406442915821e-01,0.000000000000000000e+00 +2.076337141121390450e-01,-2.943682167414737316e-01,0.000000000000000000e+00 +1.854572356269272027e-01,-3.866164538256169347e-01,0.000000000000000000e+00 +1.806892399653299564e-01,-4.231960729500711671e-01,0.000000000000000000e+00 +2.088840422118771745e-01,-4.031498707316520935e-01,0.000000000000000000e+00 +9.325429238103649654e-01,-3.413999607839972583e-01,0.000000000000000000e+00 +9.030662216742895154e-01,-3.525541523990861070e-01,0.000000000000000000e+00 +1.359235867595459946e-01,-3.436309894325554892e-01,0.000000000000000000e+00 +1.617494615608373321e-01,-3.667583078005529074e-01,0.000000000000000000e+00 +1.771792209136315299e-01,-3.247011410487476435e-01,0.000000000000000000e+00 +1.965283709932583445e-01,-3.534355721901624725e-01,0.000000000000000000e+00 +7.965883247021411373e-01,-1.709432942288051649e-01,0.000000000000000000e+00 +7.739372819873546749e-01,-1.997041594216326932e-01,0.000000000000000000e+00 +7.360700305034827418e-01,-3.667679008101361049e-01,0.000000000000000000e+00 +8.236103271506116652e-01,-1.310526808812899069e-01,0.000000000000000000e+00 +7.291958538425683534e-01,-2.801946680562754713e-02,0.000000000000000000e+00 +2.429624151794271825e-01,-3.027902254400218207e-01,0.000000000000000000e+00 +9.660572650567889053e-01,-2.275115207311400600e-01,0.000000000000000000e+00 +3.864253787496985670e-01,-2.601543759516088961e-01,0.000000000000000000e+00 +7.464631531472306625e-01,-2.493187143919789184e-01,0.000000000000000000e+00 +2.162912503191943003e-01,-3.298655847588213841e-01,0.000000000000000000e+00 +9.619346398829409228e-02,-3.612777850074184172e-01,0.000000000000000000e+00 +6.031339009413805297e-02,-3.770800344018474526e-01,0.000000000000000000e+00 +9.422891957014379871e-01,-1.958075871885262831e-01,0.000000000000000000e+00 +7.638968632105086476e-01,-7.126555668879173966e-02,0.000000000000000000e+00 +7.927998131170890250e-01,-9.694773399077162568e-02,0.000000000000000000e+00 +3.268718369239471677e-01,-3.435710689078878000e-01,0.000000000000000000e+00 +3.092337804383522154e-02,-3.936635724065730702e-01,0.000000000000000000e+00 +2.222500693401236183e-01,-3.694098222421257072e-01,0.000000000000000000e+00 +3.942457462866598705e-01,-2.270988217360070949e-01,0.000000000000000000e+00 +7.387057216666678139e-01,-5.183781240485896280e-02,0.000000000000000000e+00 +9.234075038579647732e-01,-2.858085054031033190e-01,0.000000000000000000e+00 +3.774503404366033599e-01,-2.962737464964306233e-01,0.000000000000000000e+00 +3.762528642441463900e-01,-3.116063315293613467e-01,0.000000000000000000e+00 +3.615606447826705261e-01,-3.066727891762960345e-01,0.000000000000000000e+00 +3.905454689770885279e-01,-3.208228487768985948e-01,0.000000000000000000e+00 +3.746557733231556941e-01,-3.312218914567639505e-01,0.000000000000000000e+00 +5.295884618272925781e-01,-2.703927429814542704e-01,0.000000000000000000e+00 +5.139180396423345121e-01,-2.621434426119383931e-01,0.000000000000000000e+00 +5.243739864093772685e-01,-2.502582611436242610e-01,0.000000000000000000e+00 +5.022078798507874087e-01,-2.818832999548612772e-01,0.000000000000000000e+00 +4.969934044328721545e-01,-2.617488181170312678e-01,0.000000000000000000e+00 +7.006161850300727245e-01,-2.289880064108709423e-01,0.000000000000000000e+00 +7.157183469971948320e-01,-2.131662510686501699e-01,0.000000000000000000e+00 +7.224347498462183603e-01,-2.298019700829407874e-01,0.000000000000000000e+00 +2.555585945308833651e-01,-3.345749575231715678e-01,0.000000000000000000e+00 +2.645527458536006682e-01,-3.507273913101467411e-01,0.000000000000000000e+00 +2.517353162427203306e-01,-3.563129581743905705e-01,0.000000000000000000e+00 +5.487994743007815757e-01,-3.766279353200721047e-01,0.000000000000000000e+00 +5.578023780408419841e-01,-3.921398525677488589e-01,0.000000000000000000e+00 +5.403696091386540612e-01,-3.962545359899183328e-01,0.000000000000000000e+00 +2.463826540987126279e-01,-2.649033203181156981e-01,0.000000000000000000e+00 +2.507613861333419791e-01,-2.506926393236817430e-01,0.000000000000000000e+00 +2.660135918999142479e-01,-2.559836592825605606e-01,0.000000000000000000e+00 +2.954468265493597201e-01,-3.310894904018888418e-01,0.000000000000000000e+00 +2.804394551795607038e-01,-3.380566462652312421e-01,0.000000000000000000e+00 +2.833833955115627190e-01,-3.220222347955853937e-01,0.000000000000000000e+00 +2.706527341143790677e-01,-3.126653060099569004e-01,0.000000000000000000e+00 +2.856601054841781950e-01,-3.056981501466145001e-01,0.000000000000000000e+00 +2.840910182446710341e-01,-2.571470122484086906e-01,0.000000000000000000e+00 +2.797122862100417384e-01,-2.713576932428426458e-01,0.000000000000000000e+00 +9.222233445630908522e-01,-2.625284368233606336e-01,0.000000000000000000e+00 +9.133214123513572202e-01,-2.465447477143977162e-01,0.000000000000000000e+00 +9.406236849120624965e-01,-2.480939726186072170e-01,0.000000000000000000e+00 +8.997725510172758234e-01,-2.366114823334263539e-01,0.000000000000000000e+00 +9.181728913662474678e-01,-2.221770181286729651e-01,0.000000000000000000e+00 +3.614800352324188948e-01,-3.375000723594344665e-01,0.000000000000000000e+00 +3.757726399653610327e-01,-3.467165896069717146e-01,0.000000000000000000e+00 +3.868994777144695307e-01,-3.615308070762311421e-01,0.000000000000000000e+00 +3.737237396237327314e-01,-3.678089879789016026e-01,0.000000000000000000e+00 +3.626077659872689596e-01,-2.012350022875613320e-01,0.000000000000000000e+00 +3.814811727008514675e-01,-1.869884201996159789e-01,0.000000000000000000e+00 +3.804744783700674260e-01,-2.067417606334946978e-01,0.000000000000000000e+00 +3.458375402636346685e-01,-3.123784934728880414e-01,0.000000000000000000e+00 +3.470350164560916384e-01,-2.970459084399573735e-01,0.000000000000000000e+00 +3.373781293549587001e-01,-2.823614723968250750e-01,0.000000000000000000e+00 +3.531012338739945022e-01,-2.766557681002330127e-01,0.000000000000000000e+00 +3.742288442887945488e-01,-1.651521343496307748e-01,0.000000000000000000e+00 +3.920955566715930152e-01,-1.706588926955641128e-01,0.000000000000000000e+00 +7.061688869066158336e-01,-1.937218714162072808e-01,0.000000000000000000e+00 +7.279874517227613584e-01,-1.945358350882770981e-01,0.000000000000000000e+00 +6.852254395808945464e-01,-1.933787949020082109e-01,0.000000000000000000e+00 +6.781650382924158116e-01,-2.350370621740846544e-01,0.000000000000000000e+00 +6.848814411414393399e-01,-2.516727811883752719e-01,0.000000000000000000e+00 +6.987105478321816721e-01,-2.663287306854601466e-01,0.000000000000000000e+00 +6.762594010945247591e-01,-2.723777864486738309e-01,0.000000000000000000e+00 +6.730908559914468015e-01,-3.434351716375029229e-01,0.000000000000000000e+00 +6.876981826106536300e-01,-3.273290110301217415e-01,0.000000000000000000e+00 +6.951619697757704941e-01,-3.465713800800661604e-01,0.000000000000000000e+00 +6.778577883057985698e-01,-3.056132692666586048e-01,0.000000000000000000e+00 +6.999289020901222624e-01,-3.087494777092218423e-01,0.000000000000000000e+00 +4.168685303004145970e-01,-3.418999066046408686e-01,0.000000000000000000e+00 +4.310257172897129507e-01,-3.422123359675355303e-01,0.000000000000000000e+00 +4.282516344699566768e-01,-3.580571401464564540e-01,0.000000000000000000e+00 +8.279548727152774568e-01,-3.454915901853079507e-01,0.000000000000000000e+00 +8.273479456664820653e-01,-3.263790015984225912e-01,0.000000000000000000e+00 +8.442958592359004477e-01,-3.378346924617003366e-01,0.000000000000000000e+00 +8.116441291947344983e-01,-3.137360698510213153e-01,0.000000000000000000e+00 +8.279851157153574892e-01,-3.060791721274136457e-01,0.000000000000000000e+00 +8.648457920906460483e-01,-1.946907734856688221e-01,0.000000000000000000e+00 +8.566157585522039541e-01,-1.779622019348836570e-01,0.000000000000000000e+00 +8.714875898689615763e-01,-1.753211425196278817e-01,0.000000000000000000e+00 +8.392478536725631599e-01,-1.842506082945279122e-01,0.000000000000000000e+00 +8.458896514508786879e-01,-1.648809773284869440e-01,0.000000000000000000e+00 +8.776070739982244628e-01,-2.059449983011853169e-01,0.000000000000000000e+00 +8.627352426814669517e-01,-2.085860577164411200e-01,0.000000000000000000e+00 +8.618712306592137828e-01,-2.282185917767775296e-01,0.000000000000000000e+00 +8.491099487516352573e-01,-2.169643669612610348e-01,0.000000000000000000e+00 +8.916578178594414261e-01,-1.823625758376404282e-01,0.000000000000000000e+00 +8.834277843209992209e-01,-1.656340042868552631e-01,0.000000000000000000e+00 +8.795918600506626994e-01,-1.454615232737146713e-01,0.000000000000000000e+00 +8.997620880411424382e-01,-1.525029565917272178e-01,0.000000000000000000e+00 +8.103689404078499026e-01,-2.313439526032738947e-01,0.000000000000000000e+00 +7.929830772939434613e-01,-2.429991434234826664e-01,0.000000000000000000e+00 +7.935359946287117161e-01,-2.205781890655405530e-01,0.000000000000000000e+00 +5.425639793487511131e-01,-2.443422325677711837e-01,0.000000000000000000e+00 +5.587682846317005847e-01,-2.403752354453666529e-01,0.000000000000000000e+00 +5.562487138772849171e-01,-2.545405643907355797e-01,0.000000000000000000e+00 +6.272873383758834631e-01,-2.375801082070662651e-01,0.000000000000000000e+00 +6.501879461812013483e-01,-2.387960007836191778e-01,0.000000000000000000e+00 +6.395296865984645418e-01,-2.565059443750360990e-01,0.000000000000000000e+00 +6.521128903242158215e-01,-2.754782889790623468e-01,0.000000000000000000e+00 +6.292122825188979363e-01,-2.742623964025094341e-01,0.000000000000000000e+00 +4.015214127683781609e-01,-3.490915597439315232e-01,0.000000000000000000e+00 +4.042954955881343793e-01,-3.332467555650105995e-01,0.000000000000000000e+00 +3.535618498322010694e-01,-1.681574184217031753e-01,0.000000000000000000e+00 +6.465603597899972632e-01,-3.298038901744150264e-01,0.000000000000000000e+00 +6.346445684991568470e-01,-3.143248593839036431e-01,0.000000000000000000e+00 +6.537112775354896321e-01,-3.087137717970470652e-01,0.000000000000000000e+00 +4.493712066367202551e-01,-3.378964250367846311e-01,0.000000000000000000e+00 +4.379881024671782308e-01,-3.217391914949691012e-01,0.000000000000000000e+00 +4.648447230851722733e-01,-2.213846103100505225e-01,0.000000000000000000e+00 +4.495036638667077034e-01,-2.367829019709460359e-01,0.000000000000000000e+00 +4.434456699677771230e-01,-2.180793169045650848e-01,0.000000000000000000e+00 +5.635166062378740293e-01,-2.694176005923455408e-01,0.000000000000000000e+00 +5.473123009549245577e-01,-2.733845977147500994e-01,0.000000000000000000e+00 +5.316160900683775115e-01,-3.644162978887709459e-01,0.000000000000000000e+00 +5.162970264596897785e-01,-3.749270629034842095e-01,0.000000000000000000e+00 +5.165464111294737481e-01,-3.586007420500136322e-01,0.000000000000000000e+00 +5.194827459160806793e-01,-3.947050812925836372e-01,0.000000000000000000e+00 +5.044130669771769160e-01,-3.888895254538263235e-01,0.000000000000000000e+00 +6.381107060554395138e-01,-3.529170849715619340e-01,0.000000000000000000e+00 +6.571774150917722990e-01,-3.473059973847054116e-01,0.000000000000000000e+00 +4.339425646850704199e-01,-3.755259654334368591e-01,0.000000000000000000e+00 +4.197853776957721217e-01,-3.752135360705421974e-01,0.000000000000000000e+00 +6.646412022568890521e-01,-3.665483664346498305e-01,0.000000000000000000e+00 +6.777803872181277223e-01,-3.873590755709487299e-01,0.000000000000000000e+00 +6.618669463184532198e-01,-3.912299013181512186e-01,0.000000000000000000e+00 +5.822216133658668635e-01,-2.341285531819363164e-01,0.000000000000000000e+00 +6.043096431823229420e-01,-2.364867954470123435e-01,0.000000000000000000e+00 +5.945410489766904671e-01,-2.529318095334071037e-01,0.000000000000000000e+00 +6.061679126379808658e-01,-2.767647442826719484e-01,0.000000000000000000e+00 +5.840798828215245653e-01,-2.744065020175958658e-01,0.000000000000000000e+00 +6.617700523831582249e-01,-2.325065129604224345e-01,0.000000000000000000e+00 +6.775047962717914984e-01,-2.098217381829181050e-01,0.000000000000000000e+00 +6.688304536716369597e-01,-1.908482456883459633e-01,0.000000000000000000e+00 +6.190228185874149247e-01,-3.551612680850689818e-01,0.000000000000000000e+00 +6.296398738891899605e-01,-3.726633752953593670e-01,0.000000000000000000e+00 +6.920987997374226097e-01,-3.694737102004883589e-01,0.000000000000000000e+00 +7.067061263566294382e-01,-3.533675495931072330e-01,0.000000000000000000e+00 +6.013740769855054902e-01,-3.584379468251018275e-01,0.000000000000000000e+00 +6.098449091517550436e-01,-3.386916565013043945e-01,0.000000000000000000e+00 +5.939514570163302309e-01,-3.201038860040989475e-01,0.000000000000000000e+00 +6.116001986182397765e-01,-3.168272072640661019e-01,0.000000000000000000e+00 +5.268935571637930471e-01,-2.360929321982553342e-01,0.000000000000000000e+00 +5.169925038224865155e-01,-2.210978954516357176e-01,0.000000000000000000e+00 +5.351824967618603601e-01,-2.151818668757826125e-01,0.000000000000000000e+00 +5.368563541878818013e-01,-2.852697791830642315e-01,0.000000000000000000e+00 +5.450602919431477567e-01,-3.021471749878481550e-01,0.000000000000000000e+00 +5.273364528155157771e-01,-2.991553202545522705e-01,0.000000000000000000e+00 +6.409304245315430304e-01,-3.918504276866862091e-01,0.000000000000000000e+00 +6.218425370635185523e-01,-3.940946108001932568e-01,0.000000000000000000e+00 +5.472761720240879590e-01,-3.378037677607416134e-01,0.000000000000000000e+00 +5.337029326544715513e-01,-3.320613465473182813e-01,0.000000000000000000e+00 +5.491136299403982513e-01,-3.217751372727595260e-01,0.000000000000000000e+00 +6.157328023390546967e-01,-2.311157210983547650e-01,0.000000000000000000e+00 +6.263910619217915032e-01,-2.134057775069378438e-01,0.000000000000000000e+00 +6.247794030867201975e-01,-1.895238719366254543e-01,0.000000000000000000e+00 +6.363339391235489639e-01,-1.959882590453369544e-01,0.000000000000000000e+00 +4.994968580323904117e-01,-2.209335793145574822e-01,0.000000000000000000e+00 +5.077857976304577248e-01,-2.000225139920848161e-01,0.000000000000000000e+00 +4.999930443702859106e-01,-1.801923246833020686e-01,0.000000000000000000e+00 +5.174886901603819034e-01,-1.803566408203802762e-01,0.000000000000000000e+00 +5.644595562564920233e-01,-3.500154051920427722e-01,0.000000000000000000e+00 +5.490488589705654343e-01,-3.603016144666014720e-01,0.000000000000000000e+00 +5.586335313127641644e-01,-3.078895962012714316e-01,0.000000000000000000e+00 +4.645420358535907179e-01,-3.355510786078315100e-01,0.000000000000000000e+00 +4.769803708291430744e-01,-3.191401106663297460e-01,0.000000000000000000e+00 +4.851888148685482016e-01,-3.372679087099430539e-01,0.000000000000000000e+00 +4.621705648590410664e-01,-2.558763698184297608e-01,0.000000000000000000e+00 +4.407715117416458606e-01,-2.525710764129443509e-01,0.000000000000000000e+00 +5.677949841969285316e-01,-2.282147054271065068e-01,0.000000000000000000e+00 +5.775635784025610064e-01,-2.117696913407117187e-01,0.000000000000000000e+00 +5.780162070095762328e-01,-1.878063430063335870e-01,0.000000000000000000e+00 +5.924428361785145647e-01,-1.937201907611633966e-01,0.000000000000000000e+00 +4.380598036673248874e-01,-2.783307888647985617e-01,0.000000000000000000e+00 +4.253929026749915243e-01,-2.592373210173148368e-01,0.000000000000000000e+00 +4.805964344122323206e-01,-2.199731966157190133e-01,0.000000000000000000e+00 +4.745384405133016292e-01,-2.012696115493380900e-01,0.000000000000000000e+00 +4.635786242595061335e-01,-1.781693743440615485e-01,0.000000000000000000e+00 +4.793303355865661808e-01,-1.767579606497300393e-01,0.000000000000000000e+00 +4.708084182277553209e-01,-2.994559780120861214e-01,0.000000000000000000e+00 +4.914551972427128046e-01,-3.011728081141976654e-01,0.000000000000000000e+00 +6.495277041605771462e-01,-2.135806767924526006e-01,0.000000000000000000e+00 +4.898031406042610558e-01,-2.410485780752699148e-01,0.000000000000000000e+00 +4.780929808127140079e-01,-2.607884354181927433e-01,0.000000000000000000e+00 +5.442091963270883070e-01,-2.030213368575224941e-01,0.000000000000000000e+00 +5.541102496683947276e-01,-2.180163736041420830e-01,0.000000000000000000e+00 +3.069182810177356058e-01,-2.512093820185088422e-01,0.000000000000000000e+00 +2.932195867076081153e-01,-2.358353480582267570e-01,0.000000000000000000e+00 +2.741544050443728286e-01,-2.225029440302211392e-01,0.000000000000000000e+00 +2.969816678174374003e-01,-2.165653138003212907e-01,0.000000000000000000e+00 +5.792142053764075538e-01,-3.572407935696199077e-01,0.000000000000000000e+00 +5.774415184299299675e-01,-3.347429468637600491e-01,0.000000000000000000e+00 +5.791968078964147004e-01,-3.128784976265217566e-01,0.000000000000000000e+00 +6.034133667282310931e-01,-2.123124647468839221e-01,0.000000000000000000e+00 +4.994272486824432589e-01,-3.449842239165841207e-01,0.000000000000000000e+00 +5.147463122911309918e-01,-3.344734589018708570e-01,0.000000000000000000e+00 +8.110486611583458405e-01,-2.736005736706141889e-01,0.000000000000000000e+00 +7.952534302844078695e-01,-2.805727629668144374e-01,0.000000000000000000e+00 +7.940207921991435658e-01,-2.607370962574162565e-01,0.000000000000000000e+00 +4.475261879063991977e-01,-1.945022130054547271e-01,0.000000000000000000e+00 +4.321851286879346832e-01,-2.099005046663502405e-01,0.000000000000000000e+00 +4.869889137068909024e-01,-3.613951918580858846e-01,0.000000000000000000e+00 +7.949388808785020633e-01,-3.017863576573108775e-01,0.000000000000000000e+00 +7.779110119192998996e-01,-2.889228802441129451e-01,0.000000000000000000e+00 +5.381997268608355034e-01,-1.834721039326556169e-01,0.000000000000000000e+00 +5.571274797673699819e-01,-1.863066106610150874e-01,0.000000000000000000e+00 +5.883921148120674349e-01,-3.737104051533844951e-01,0.000000000000000000e+00 +5.083798324521752177e-01,-3.015674326091048463e-01,0.000000000000000000e+00 +4.575796506761253823e-01,-3.560242230803979946e-01,0.000000000000000000e+00 +8.604374863729190581e-01,-3.477403326209371759e-01,0.000000000000000000e+00 +8.792554577002738014e-01,-3.623276580484490195e-01,0.000000000000000000e+00 +8.637207576120506936e-01,-3.715346064760974842e-01,0.000000000000000000e+00 +8.432732156898683495e-01,-3.760305228563162183e-01,0.000000000000000000e+00 +7.621456281758272056e-01,-3.443878079201780906e-01,0.000000000000000000e+00 +7.624980805029434316e-01,-3.202761129177957855e-01,0.000000000000000000e+00 +7.772440101862779782e-01,-3.342481699369916903e-01,0.000000000000000000e+00 +7.420354218419696890e-01,-3.083825226245443529e-01,0.000000000000000000e+00 +7.571338038524204617e-01,-2.982428846413579526e-01,0.000000000000000000e+00 +8.845238837913027563e-01,-2.823643870716514570e-01,0.000000000000000000e+00 +8.612364390554310134e-01,-2.912458680068749639e-01,0.000000000000000000e+00 +8.716336272665137219e-01,-2.698606928543746397e-01,0.000000000000000000e+00 +8.482960596300119782e-01,-2.576695374055977816e-01,0.000000000000000000e+00 +8.715835043658838321e-01,-2.487880564703743025e-01,0.000000000000000000e+00 +8.589078138836625520e-01,-3.112358330494834346e-01,0.000000000000000000e+00 +8.460175573588735176e-01,-2.987321388322065063e-01,0.000000000000000000e+00 +8.303137408871259506e-01,-2.860892070848052304e-01,0.000000000000000000e+00 +9.012154132108878279e-01,-2.870422427803678289e-01,0.000000000000000000e+00 +8.908182249998051194e-01,-3.084274179328682086e-01,0.000000000000000000e+00 +8.281049566012170793e-01,-3.821351832612349675e-01,0.000000000000000000e+00 +8.297345271960445690e-01,-3.630519414535045009e-01,0.000000000000000000e+00 +3.448419532782577290e-01,-2.074038268992676459e-01,0.000000000000000000e+00 +3.458486476090417705e-01,-1.876504864653889271e-01,0.000000000000000000e+00 +3.388239605685787748e-01,-2.254430302748834658e-01,0.000000000000000000e+00 +3.220648421903516412e-01,-2.118585144527110609e-01,0.000000000000000000e+00 +3.525227092146732133e-01,-2.414798373892703687e-01,0.000000000000000000e+00 +3.297455981267671254e-01,-2.459345249427137836e-01,0.000000000000000000e+00 +2.032808038047058674e-01,-2.796218286928826569e-01,0.000000000000000000e+00 +1.917242878802413175e-01,-2.904965882728307580e-01,0.000000000000000000e+00 +1.873713775728081676e-01,-2.757502002242396832e-01,0.000000000000000000e+00 +1.971706389194021747e-01,-3.948831622786345141e-01,0.000000000000000000e+00 +1.947866410886035515e-01,-4.131729718408616581e-01,0.000000000000000000e+00 +1.830732377961285795e-01,-4.049062633878440787e-01,0.000000000000000000e+00 +1.616657342766107397e-01,-4.134725750986857351e-01,0.000000000000000000e+00 +1.640497321074093628e-01,-3.951827655364585912e-01,0.000000000000000000e+00 +9.178045727423271849e-01,-3.469770565915416549e-01,0.000000000000000000e+00 +9.052879880468398532e-01,-3.328297130203353160e-01,0.000000000000000000e+00 +9.200263391148775227e-01,-3.272526172127908639e-01,0.000000000000000000e+00 +9.280207159843771869e-01,-3.109087061049488065e-01,0.000000000000000000e+00 +9.405373006798645186e-01,-3.250560496761552010e-01,0.000000000000000000e+00 +1.565514038365887761e-01,-3.341660652406515664e-01,0.000000000000000000e+00 +1.694643412372344171e-01,-3.457297244246502754e-01,0.000000000000000000e+00 +1.488365241601916633e-01,-3.551946486165541983e-01,0.000000000000000000e+00 +1.791389162770478383e-01,-3.600969399953576899e-01,0.000000000000000000e+00 +1.868537959534449233e-01,-3.390683566194550580e-01,0.000000000000000000e+00 +1.367477740751774362e-01,-3.236649754618316499e-01,0.000000000000000000e+00 +1.573755911522202178e-01,-3.142000512699277270e-01,0.000000000000000000e+00 +1.764970412809875877e-01,-3.056630504264676862e-01,0.000000000000000000e+00 +1.521958450743643998e-01,-3.852536925239266052e-01,0.000000000000000000e+00 +1.736033485938822674e-01,-3.766873808130849488e-01,0.000000000000000000e+00 +1.472577940223033233e-01,-3.775874604297437820e-01,0.000000000000000000e+00 +8.073734800588623362e-01,-3.851168759702350286e-01,0.000000000000000000e+00 +8.037550912223796473e-01,-1.899331462370684731e-01,0.000000000000000000e+00 +7.924295698649863606e-01,-2.043135788334822511e-01,0.000000000000000000e+00 +7.852628033447479616e-01,-1.853237268252189152e-01,0.000000000000000000e+00 +7.229196634492300877e-01,-3.486165601414105142e-01,0.000000000000000000e+00 +7.198564934108820923e-01,-3.715188902618327682e-01,0.000000000000000000e+00 +1.343448566216576545e-01,-3.660238012457450729e-01,0.000000000000000000e+00 +7.264423553800873901e-01,-3.880830139765324427e-01,0.000000000000000000e+00 +7.102288182874867406e-01,-3.928340034282291615e-01,0.000000000000000000e+00 +8.612779105558867609e-01,-1.359231221233888898e-01,0.000000000000000000e+00 +8.260660368609247239e-01,-1.511110322847105669e-01,0.000000000000000000e+00 +8.125550356366895155e-01,-1.710563389584681682e-01,0.000000000000000000e+00 +8.100993259263764568e-01,-1.509979875550475359e-01,0.000000000000000000e+00 +7.894611977095757904e-01,-1.555860338495338446e-01,0.000000000000000000e+00 +8.029721989338109989e-01,-1.356407271757762156e-01,0.000000000000000000e+00 +8.434339417405656292e-01,-1.448226259250663117e-01,0.000000000000000000e+00 +7.319325720246119271e-01,-1.622641904870843893e-02,0.000000000000000000e+00 +7.130947291825002754e-01,-1.910391845938647082e-02,0.000000000000000000e+00 +7.165629282545427081e-01,-3.903007964301009880e-02,0.000000000000000000e+00 +8.414542959659327970e-01,-1.221531770796124849e-01,0.000000000000000000e+00 +7.285844974437349908e-01,-3.304404851868335546e-01,0.000000000000000000e+00 +7.417348644979877559e-01,-3.485918258555591454e-01,0.000000000000000000e+00 +7.133798264883568496e-01,-2.866915151469325851e-01,0.000000000000000000e+00 +7.232202207932120208e-01,-3.084072569103957218e-01,0.000000000000000000e+00 +2.522986375223560396e-01,-2.864922828585081405e-01,0.000000000000000000e+00 +2.370464317557837708e-01,-2.812012628996293229e-01,0.000000000000000000e+00 +2.252980646457831138e-01,-2.985792210907477484e-01,0.000000000000000000e+00 +2.193820812221397021e-01,-2.769902585503553061e-01,0.000000000000000000e+00 +2.556692196605954148e-01,-3.158898080494748073e-01,0.000000000000000000e+00 +2.428517900497151050e-01,-3.214753749137185812e-01,0.000000000000000000e+00 +2.579459296332108353e-01,-2.995657234005039138e-01,0.000000000000000000e+00 +2.672821519761396925e-01,-2.832677808189902335e-01,0.000000000000000000e+00 +7.220018665352714304e-01,-2.659865098866340261e-01,0.000000000000000000e+00 +7.670709730156843875e-01,-1.871429645439078304e-01,0.000000000000000000e+00 +7.783964943730775632e-01,-1.727625319474940802e-01,0.000000000000000000e+00 +9.663034052057619672e-01,-2.752012009527720626e-01,0.000000000000000000e+00 +9.742284706620158996e-01,-2.560779210081471358e-01,0.000000000000000000e+00 +9.577914410902925724e-01,-2.457945912293550972e-01,0.000000000000000000e+00 +9.824942946285122325e-01,-2.377948505099320986e-01,0.000000000000000000e+00 +9.490286473365801001e-01,-2.863949001479416667e-01,0.000000000000000000e+00 +4.074118772493748875e-01,-2.931021611593325193e-01,0.000000000000000000e+00 +3.892839693238888676e-01,-2.806808324005524158e-01,0.000000000000000000e+00 +4.045532866751845313e-01,-2.725757047103889996e-01,0.000000000000000000e+00 +7.613066423310179687e-01,-2.407760471388641355e-01,0.000000000000000000e+00 +7.771878464200053793e-01,-2.499713327196829149e-01,0.000000000000000000e+00 +7.623443572362180731e-01,-2.585139999727977256e-01,0.000000000000000000e+00 +4.072649947495055600e-01,-2.468159922585347332e-01,0.000000000000000000e+00 +2.853595783208965342e-01,-2.844311337848383636e-01,0.000000000000000000e+00 +6.187511163637320344e-01,-2.957370888866981407e-01,0.000000000000000000e+00 +1.967352356164129290e-01,-3.272833629037845138e-01,0.000000000000000000e+00 +2.064098106562263224e-01,-3.416505784744919283e-01,0.000000000000000000e+00 +9.727708852295288700e-02,-3.398620326094138333e-01,0.000000000000000000e+00 +1.171421499085788381e-01,-3.310386348219823693e-01,0.000000000000000000e+00 +1.160585253739200434e-01,-3.524543872199869532e-01,0.000000000000000000e+00 +1.144797952360317034e-01,-3.748471990331765369e-01,0.000000000000000000e+00 +3.206170296638300443e-01,-2.672461891328957728e-01,0.000000000000000000e+00 +3.145508122459271805e-01,-2.876363294726200781e-01,0.000000000000000000e+00 +3.148513394092087858e-01,-3.089033458343961591e-01,0.000000000000000000e+00 +2.980902397180801300e-01,-2.937880625704668569e-01,0.000000000000000000e+00 +7.574483532583261569e-01,-2.770292899508615125e-01,0.000000000000000000e+00 +7.415671491693387463e-01,-2.678340043700426776e-01,0.000000000000000000e+00 +7.488707879286772284e-01,-1.942809922034515191e-01,0.000000000000000000e+00 +7.803838454742582920e-02,-3.481352419999892978e-01,0.000000000000000000e+00 +7.825342704121607262e-02,-3.691789097046329626e-01,0.000000000000000000e+00 +6.009834760034780954e-02,-3.560363666972038432e-01,0.000000000000000000e+00 +9.513188647425521727e-02,-3.828598068484699857e-01,0.000000000000000000e+00 +7.719184952717719761e-02,-3.907609315456845311e-01,0.000000000000000000e+00 +8.290811028018618689e-01,-2.662535403754070495e-01,0.000000000000000000e+00 +8.290309799012318681e-01,-2.451809039914067401e-01,0.000000000000000000e+00 +8.917409704402661230e-01,-3.258193289174365903e-01,0.000000000000000000e+00 +8.895192040677157852e-01,-3.455437682961873813e-01,0.000000000000000000e+00 +8.750494410206810514e-01,-3.211414732087202739e-01,0.000000000000000000e+00 +1.647148683954574033e-01,-4.338588608545341230e-01,0.000000000000000000e+00 +1.812804891302420285e-01,-4.421474621649331693e-01,0.000000000000000000e+00 +2.132347842951772265e-01,-4.214418894743749977e-01,0.000000000000000000e+00 +1.991373831719036036e-01,-4.314649905835845067e-01,0.000000000000000000e+00 +9.234566128668020291e-01,-2.040256699681139430e-01,0.000000000000000000e+00 +9.041110211718226264e-01,-1.924595951762846924e-01,0.000000000000000000e+00 +9.229436040064584734e-01,-1.842415123966970603e-01,0.000000000000000000e+00 +4.058925865091250751e-01,-3.136311956376079957e-01,0.000000000000000000e+00 +8.197218021569279145e-01,-1.900461909667315041e-01,0.000000000000000000e+00 +8.852087982957155265e-01,-2.404097472255543599e-01,0.000000000000000000e+00 +8.900602773106057741e-01,-2.160420176398295811e-01,0.000000000000000000e+00 +8.921708267197849818e-01,-2.021467334090573109e-01,0.000000000000000000e+00 +2.296268327493107275e-01,-3.163279050994216024e-01,0.000000000000000000e+00 +2.119624822156666588e-01,-3.121169007501475301e-01,0.000000000000000000e+00 +9.390313517956816458e-01,-1.704180571955015711e-01,0.000000000000000000e+00 +9.196857601007022431e-01,-1.588519824036723205e-01,0.000000000000000000e+00 +5.751434698991644279e-01,-2.932505353416103855e-01,0.000000000000000000e+00 +7.977096628357962516e-01,-7.437901558851768569e-02,0.000000000000000000e+00 +7.783483381637987808e-01,-8.410664533978168267e-02,0.000000000000000000e+00 +7.832581878825060073e-01,-6.153792693752774268e-02,0.000000000000000000e+00 +7.727750281492649087e-01,-1.070409420977973536e-01,0.000000000000000000e+00 +7.583235531959746645e-01,-9.419985344680741057e-02,0.000000000000000000e+00 +3.447343693992857006e-01,-3.482829197087650153e-01,0.000000000000000000e+00 +3.436175027570803620e-01,-3.327882215585572512e-01,0.000000000000000000e+00 +3.290918744305014743e-01,-3.231613408222185901e-01,0.000000000000000000e+00 +2.295162076195986778e-01,-3.350130545731183629e-01,0.000000000000000000e+00 +3.349918546207804604e-01,-3.640505201465398244e-01,0.000000000000000000e+00 +3.528543870961189377e-01,-3.687623709474170397e-01,0.000000000000000000e+00 +9.275173543896864103e-01,-3.579620875062563545e-01,0.000000000000000000e+00 +9.478497116643098686e-01,-3.539228820642922324e-01,0.000000000000000000e+00 +9.544881551498580752e-01,-1.841078870203406992e-01,0.000000000000000000e+00 +9.370054742008834259e-01,-2.139589353490853052e-01,0.000000000000000000e+00 +9.503784393577150436e-01,-3.375775562253491846e-01,0.000000000000000000e+00 +9.488895088785589405e-01,-2.298109021203921798e-01,0.000000000000000000e+00 +2.150291709147065244e-01,-2.622438705017642313e-01,0.000000000000000000e+00 +1.985379799864529504e-01,-2.466384986276455027e-01,0.000000000000000000e+00 +2.146392574038867851e-01,-2.440069284851181519e-01,0.000000000000000000e+00 +2.766161768913976693e-01,-3.597946469164502448e-01,0.000000000000000000e+00 +2.344830177761514922e-01,-2.373959278212159907e-01,0.000000000000000000e+00 +7.564807941813223024e-01,-3.625638828747550502e-01,0.000000000000000000e+00 +7.677176742599257642e-01,-3.820297778289504786e-01,0.000000000000000000e+00 +7.473069105820862035e-01,-3.862337957643315889e-01,0.000000000000000000e+00 +2.541139555773531122e-01,-2.284762667856608531e-01,0.000000000000000000e+00 +1.671726843795429129e-02,-3.925436248677647288e-01,0.000000000000000000e+00 +2.222652471881001943e-02,-4.095864943972067351e-01,0.000000000000000000e+00 +1.909928033100927736e-01,-3.700260130078897314e-01,0.000000000000000000e+00 +4.285408049353300886e-02,-4.063079518730678408e-01,0.000000000000000000e+00 +2.038536524835254105e-01,-3.780131380338713210e-01,0.000000000000000000e+00 +2.155670557760003825e-01,-3.862798464868889003e-01,0.000000000000000000e+00 +2.093892201666909814e-01,-3.614226972161440621e-01,0.000000000000000000e+00 +2.313374542948722357e-01,-3.874048745716011100e-01,0.000000000000000000e+00 +2.246544407307490276e-01,-4.042748988163643586e-01,0.000000000000000000e+00 +2.969480638414498941e-01,-3.647740832522074483e-01,0.000000000000000000e+00 +2.414897684527806399e-01,-3.709376071017457255e-01,0.000000000000000000e+00 +8.279792837257489158e-01,-1.061672475016205708e-01,0.000000000000000000e+00 +8.082050701338503451e-01,-1.140002074360307593e-01,0.000000000000000000e+00 +8.125740267089875957e-01,-8.911477405636143712e-02,0.000000000000000000e+00 +7.875669419170496788e-01,-1.185882537305170681e-01,0.000000000000000000e+00 +4.137262479164812712e-01,-2.129863935555049714e-01,0.000000000000000000e+00 +4.178067658551033459e-01,-1.894092896563945860e-01,0.000000000000000000e+00 +4.130331868770423243e-01,-1.709003232712855147e-01,0.000000000000000000e+00 +4.314920676484956807e-01,-1.678144343821307838e-01,0.000000000000000000e+00 +4.211619038604206833e-01,-3.055260679474445240e-01,0.000000000000000000e+00 +8.295838972360001229e-01,-2.227599496334646267e-01,0.000000000000000000e+00 +8.304479092582532918e-01,-2.031274155731282172e-01,0.000000000000000000e+00 +1.924064675128852875e-01,-3.095346788951106598e-01,0.000000000000000000e+00 +7.943017108296266393e-01,-3.220861871283198230e-01,0.000000000000000000e+00 +7.939492585025103022e-01,-3.461978821307021281e-01,0.000000000000000000e+00 +8.928024753068475317e-01,-3.693380421513476897e-01,0.000000000000000000e+00 +9.127790033216487409e-01,-3.635391833138007511e-01,0.000000000000000000e+00 +3.126313019026544793e-01,-3.293130739200653689e-01,0.000000000000000000e+00 +3.096873615706524641e-01,-3.453474853897112729e-01,0.000000000000000000e+00 +3.141325391947446533e-01,-3.629976667703840310e-01,0.000000000000000000e+00 +6.659419970149581536e-01,-2.901342384761471660e-01,0.000000000000000000e+00 +2.192706598296589593e-01,-3.496377035004735179e-01,0.000000000000000000e+00 +2.324956171300633367e-01,-3.547851733147705522e-01,0.000000000000000000e+00 +3.029996605271163546e-01,-1.985261104247054709e-01,0.000000000000000000e+00 +4.548860022740823794e-01,-2.945439124123231389e-01,0.000000000000000000e+00 +4.395073932074280432e-01,-3.012101570166936249e-01,0.000000000000000000e+00 +9.768099761889439403e-01,-2.180934612014192309e-01,0.000000000000000000e+00 +7.677887566805391417e-01,-4.743132221337157534e-02,0.000000000000000000e+00 +7.443610508206413012e-01,-7.876590746309281021e-02,0.000000000000000000e+00 +9.541732303791135017e-01,-2.116595539598331577e-01,0.000000000000000000e+00 +9.649259415112684257e-01,-2.022414944301123563e-01,0.000000000000000000e+00 +5.754908651868442804e-02,-3.980161828707050597e-01,0.000000000000000000e+00 +4.189563852504355618e-02,-3.662162184882530869e-01,0.000000000000000000e+00 +4.693608286876521651e-01,-2.765766098601910583e-01,0.000000000000000000e+00 +6.008966412676489677e-01,-3.940306633756005539e-01,0.000000000000000000e+00 +6.893245437989865554e-01,-3.941552450839898025e-01,0.000000000000000000e+00 +7.420000324802855651e-01,-2.316494645663494667e-01,0.000000000000000000e+00 +7.268978705131634577e-01,-2.474712199085702391e-01,0.000000000000000000e+00 +7.568435216640727603e-01,-2.231067973132346838e-01,0.000000000000000000e+00 +3.994725124267498040e-01,-3.701839581158614112e-01,0.000000000000000000e+00 +5.165837702074411730e-01,-3.184448284138887697e-01,0.000000000000000000e+00 +5.787367696585510313e-01,-3.928335101201186341e-01,0.000000000000000000e+00 +3.903355625181792465e-01,-2.436265988438079955e-01,0.000000000000000000e+00 +4.111751785179862395e-01,-2.302882151507338326e-01,0.000000000000000000e+00 +6.038659953352463194e-01,-1.883491164125057904e-01,0.000000000000000000e+00 +3.169458686611991149e-01,-1.831506851829581839e-01,0.000000000000000000e+00 +3.357960371231898389e-01,-1.743262430334094892e-01,0.000000000000000000e+00 +8.598305593241235556e-01,-3.286277440340518163e-01,0.000000000000000000e+00 +7.317654800487207734e-01,-6.905203532112642872e-02,0.000000000000000000e+00 +7.213178621665924384e-01,-5.093925244262580143e-02,0.000000000000000000e+00 +7.551931859086187249e-01,-3.771745007140518691e-02,0.000000000000000000e+00 +7.513012924385882307e-01,-6.155168454682535123e-02,0.000000000000000000e+00 +4.523180829796636937e-01,-1.699905621058466765e-01,0.000000000000000000e+00 +4.694529843598240215e-01,-3.781559810009657574e-01,0.000000000000000000e+00 +4.836914181737190788e-01,-3.858722962076067686e-01,0.000000000000000000e+00 +4.542821551429535587e-01,-3.805013274299188786e-01,0.000000000000000000e+00 +6.479160453255058405e-01,-1.896987712221402389e-01,0.000000000000000000e+00 +3.967968156851549022e-01,-2.097970001407782059e-01,0.000000000000000000e+00 +3.779234089715723943e-01,-2.240435822287235590e-01,0.000000000000000000e+00 +3.740132252030917703e-01,-2.405713593365244596e-01,0.000000000000000000e+00 +7.504382519965689946e-01,-2.580827727178947734e-02,0.000000000000000000e+00 +7.339507877546180836e-01,-3.992863960524325323e-02,0.000000000000000000e+00 +7.885361249347465629e-01,-3.797185075107103458e-01,0.000000000000000000e+00 +7.957289129832775254e-01,-3.637582333988986227e-01,0.000000000000000000e+00 +2.720063249989214046e-02,-3.745079874906158679e-01,0.000000000000000000e+00 +4.561838406898663378e-02,-3.853718034042102891e-01,0.000000000000000000e+00 +3.649348627612800655e-01,-2.610628540043548051e-01,0.000000000000000000e+00 +8.127866136266261865e-01,-3.515962505902268109e-01,0.000000000000000000e+00 +1.854465714217043426e-01,-2.620960305875017493e-01,0.000000000000000000e+00 +3.745917498624130593e-01,-2.757472900474871036e-01,0.000000000000000000e+00 +9.359695907036644780e-01,-2.972603219857082313e-01,0.000000000000000000e+00 +9.154586291386774821e-01,-2.994568895223439497e-01,0.000000000000000000e+00 +9.091642879301751190e-01,-2.733938586611271981e-01,0.000000000000000000e+00 +9.364665604908803953e-01,-2.749430835653366989e-01,0.000000000000000000e+00 +7.750437067510799194e-01,-2.159687696536909951e-01,0.000000000000000000e+00 +7.557370969003476269e-01,-2.068421870811763541e-01,0.000000000000000000e+00 diff --git a/src/pyvale/data/render/riley/rabbits/riley_tri6/uvs.csv b/src/pyvale/data/render/riley/rabbits/riley_tri6/uvs.csv new file mode 100644 index 000000000..14db15d21 --- /dev/null +++ b/src/pyvale/data/render/riley/rabbits/riley_tri6/uvs.csv @@ -0,0 +1,714 @@ +7.338557833240607620e-01,1.445433055419712842e-01 +7.443078853737598033e-01,1.263848274304781583e-01 +7.500000000000000000e-01,1.066564171676720740e-01 +7.420640651158032508e-01,8.750690916038474099e-02 +7.247656144787917309e-01,7.629785752333463622e-02 +7.346202505275251093e-01,6.375917741085281032e-02 +7.320880546200587702e-01,4.739143354364355742e-02 +7.117278110025999638e-01,4.334668822913952807e-02 +6.917238846738031910e-01,3.753987610986465884e-02 +6.712482984301246791e-01,3.303779346648993281e-02 +6.504883881427527825e-01,3.005201129044041131e-02 +6.296413844356899547e-01,2.773757100643540335e-02 +6.087482129679224752e-01,2.588581654463262272e-02 +5.878152677376466961e-01,2.456276277248609780e-02 +5.668500309809746396e-01,2.394138533632435631e-02 +5.458754073586524758e-01,2.400542046642915178e-02 +5.249123036927624275e-01,2.470002938769602294e-02 +5.039967936084055466e-01,2.625160920138164961e-02 +4.832467245389233113e-01,2.927297665391130621e-02 +4.628792378177107314e-01,3.425516248535206282e-02 +4.425385129396322559e-01,3.929163863355105563e-02 +4.216405375665964184e-01,3.833694807615385669e-02 +4.007526130612775184e-01,3.939124546737422794e-02 +3.803928404134518937e-01,4.437751122614967680e-02 +3.702266020996103912e-01,2.788765848199358660e-02 +3.587912833160813997e-01,1.069712286161210620e-02 +3.409098980920893807e-01,0.000000000000000000e+00 +3.243215571890107896e-01,8.299969336970971015e-03 +3.212682411055133302e-01,2.871421539993231076e-02 +3.163234173913985758e-01,3.639096192554802656e-02 +2.969489724828491273e-01,2.836736461574958928e-02 +2.772792689275180855e-01,2.110216252982744303e-02 +2.566234219377421244e-01,1.781912340160112657e-02 +2.511066095723979430e-01,3.488536765814328339e-02 +2.616043518335947615e-01,5.294574136863313546e-02 +2.798320263853045220e-01,6.313955508417667950e-02 +2.990971167304750100e-01,7.142411139091625616e-02 +3.187296305070498326e-01,7.880788391158703721e-02 +3.378773061888408202e-01,8.735659346786825430e-02 +3.359498601173629417e-01,1.010294901439986182e-01 +3.490592238804441916e-01,1.165082225003361838e-01 +3.689302004725210082e-01,1.231282903190452915e-01 +3.889981359234266356e-01,1.291098056378938985e-01 +4.029634716350956047e-01,1.445063186646795561e-01 +4.218394935804349322e-01,1.533428637600790512e-01 +4.425348333432321812e-01,1.563522696553527325e-01 +4.635011800386675818e-01,1.561105079514835403e-01 +4.843557587771953887e-01,1.539313956134930883e-01 +5.050468069892100065e-01,1.504923212626878837e-01 +5.257862494009200027e-01,1.473725852138677572e-01 +5.467036260614599463e-01,1.458707959476630844e-01 +5.676457170812111430e-01,1.446944292165962542e-01 +5.885888100679602664e-01,1.435433782170544015e-01 +6.095609818619952547e-01,1.431998311647291189e-01 +6.304729600923020261e-01,1.434550235730241152e-01 +6.415528389495943618e-01,1.606550796730498165e-01 +6.267406376975326321e-01,1.722182287360619346e-01 +6.127589853966485256e-01,1.876733427674943389e-01 +6.022970383420518381e-01,2.058109677863445008e-01 +5.988240825471642381e-01,2.257644582045795212e-01 +6.176877619677246800e-01,2.286459041785601221e-01 +6.362188229483434210e-01,2.190509041943050073e-01 +6.517094708669035619e-01,2.049249519045779622e-01 +6.665942215915258151e-01,1.901689829708731183e-01 +6.800877151521964592e-01,1.741611282856871112e-01 +6.984267826924297484e-01,1.646096449766629166e-01 +7.183777805727042942e-01,1.582519113150537560e-01 +7.394510113439660692e-01,1.356762126564824977e-01 +7.484248157299524529e-01,1.167277799797893645e-01 +7.465520471518201084e-01,9.692155512965680564e-02 +7.343474594376813158e-01,8.050284816950054045e-02 +7.262333935619905700e-01,7.002769454627529033e-02 +7.392282979488749017e-01,5.489421549635025571e-02 +7.221770727928458200e-01,4.416429193071499254e-02 +7.015798713512521045e-01,4.115115501839462092e-02 +6.815395334253977477e-01,3.501408689745971053e-02 +6.608829037396271033e-01,3.142196912716912344e-02 +6.400713638017245799e-01,2.883797162817454060e-02 +6.192026486226879234e-01,2.675346137576304836e-02 +5.982812181361968351e-01,2.514481438680282732e-02 +5.773369072620184728e-01,2.416064487476367664e-02 +5.563619010150006039e-01,2.389506790806458780e-02 +5.353909504461960012e-01,2.426890095157851687e-02 +5.144484971254719152e-01,2.533557621916507352e-02 +4.935886968729799040e-01,2.753664765157505870e-02 +4.729852098679785399e-01,3.153477471829786716e-02 +4.527834362616237618e-01,3.711664761350563779e-02 +4.320800869482261941e-01,3.941623024333205938e-02 +4.111552810558189996e-01,3.816038699484571028e-02 +3.905211321532258695e-01,4.169511193688746342e-02 +3.732878652063601477e-01,3.791992823096273363e-02 +3.658722423204375795e-01,1.838650927399815629e-02 +3.504008425705618102e-01,4.422220290416756759e-03 +3.309541643232752905e-01,3.383393844237534646e-04 +3.212527264844784458e-01,1.829796928156450508e-02 +3.239983227422389422e-01,3.884955193619712976e-02 +3.067113574700103817e-01,3.222358164228727312e-02 +2.871907152480843162e-01,2.453813804768704976e-02 +2.670492377781839011e-01,1.883831420219937713e-02 +2.500000000000000000e-01,2.456944642139322066e-02 +2.557533437958877665e-01,4.426687671747523561e-02 +2.703721149553874326e-01,5.862165334264041183e-02 +2.893888163479869657e-01,6.746023348292831678e-02 +3.089175359239250129e-01,7.510172718742619269e-02 +3.283407533579336679e-01,8.300165357394004295e-02 +3.420977274795115042e-01,9.334565189872662261e-02 +3.408275329852962221e-01,1.101062205362061952e-01 +3.588555420333531254e-01,1.202096534884055934e-01 +3.790579124004277434e-01,1.258443432017429253e-01 +3.959614022077875273e-01,1.367684117592276871e-01 +4.119729342527684857e-01,1.498287981541395752e-01 +4.321009285900799801e-01,1.555387007729950588e-01 +4.530095717584822212e-01,1.564737887644129244e-01 +4.739533691135193738e-01,1.552618582049599127e-01 +4.947117107487264409e-01,1.522736042867602613e-01 +5.153954030037881662e-01,1.487906218995234120e-01 +5.362315653175282470e-01,1.464422954802623300e-01 +5.571811143170739555e-01,1.453416522922578447e-01 +5.781153362054285427e-01,1.440435728616718258e-01 +5.990738638998301946e-01,1.433202146225568130e-01 +6.200554248475917962e-01,1.428437256078156081e-01 +6.366524930780723679e-01,1.513943068592009666e-01 +6.363572448294011474e-01,1.682078607395881553e-01 +6.189755285018989639e-01,1.792208227348077165e-01 +6.070484865663611229e-01,1.964641476526745034e-01 +5.986250085358755246e-01,2.156400846124740811e-01 +6.074989291141783543e-01,2.308540866011329906e-01 +6.274011025676209385e-01,2.246961097428008813e-01 +6.441458008151010883e-01,2.121911646864042267e-01 +6.593689948304987114e-01,1.977664481053059697e-01 +6.729628103205542722e-01,1.818456718148704909e-01 +6.885207201492814511e-01,1.679976574410451673e-01 +7.085670957324327057e-01,1.619400519345572664e-01 +7.271307976756022917e-01,1.525718923947278205e-01 +4.314771345591004170e-01,8.499573775977682655e-02 +4.302780159977243057e-01,6.964212369823885584e-02 +4.461895047715876417e-01,8.005542892845263214e-02 +4.445902233999591280e-01,6.041296576392621992e-02 +5.202418546849619796e-01,1.014345744752488537e-01 +5.045499401191881894e-01,1.096951889691010901e-01 +5.097715673221743238e-01,8.953309217960762900e-02 +4.928237195469755139e-01,8.992825791200179109e-02 +6.040006643142292742e-01,1.078853277729505400e-01 +6.191235392788894121e-01,1.237287830532440014e-01 +5.972750497486329913e-01,1.245438630971003741e-01 +3.713863533844556364e-01,6.055209848505758996e-02 +3.842213624245959247e-01,6.614532609568719856e-02 +5.158970522422610117e-01,4.023322162265342145e-02 +5.333537306284115154e-01,4.435354843732382257e-02 +3.808461574476078582e-01,9.558317073682456866e-02 +3.852308950240960206e-01,1.098133420400694005e-01 +3.655730328946273922e-01,1.008814474635502945e-01 +3.992493167842285917e-01,7.312203758971071166e-02 +3.963013387635180296e-01,5.706563451872877224e-02 +3.865011949625871135e-01,8.249179964009444033e-02 +3.989483774403329019e-01,9.441822220292665768e-02 +7.252632658726545500e-01,9.864570460129187812e-02 +7.163491244354877052e-01,1.146513157445888664e-01 +6.979235475538145828e-01,1.001970543066852543e-01 +7.027816804950175467e-01,1.245982048505493017e-01 +4.313964144508094511e-01,5.412617417717862506e-02 +4.308978164385600662e-01,1.202199131503952079e-01 +4.497971085073416697e-01,1.344860347864102468e-01 +4.319058914761091938e-01,1.400003457908510496e-01 +4.157324654040937539e-01,7.928220794526853743e-02 +4.218070027927872667e-01,9.970031387876518436e-02 +5.815187252603386536e-01,1.018279755765901240e-01 +5.953667989210726930e-01,8.715192507366842367e-02 +5.905933286383489023e-01,4.927814900603851717e-02 +6.052206895758842631e-01,6.540639962051492118e-02 +5.831193047001453911e-01,6.854690945236870114e-02 +4.571805023477075736e-01,5.174794670853966050e-02 +4.713571062774342124e-01,5.143508884086280680e-02 +4.599583898922933178e-01,6.761448243759639321e-02 +6.728801040222852636e-01,5.214720842356428132e-02 +6.722723445576743728e-01,7.128601040964419044e-02 +6.559089459602700511e-01,6.361861105692920293e-02 +6.565469899040013990e-01,8.394628225806730071e-02 +6.903113972989671776e-01,1.347090725068819661e-01 +6.820700760611354552e-01,1.514605877171312787e-01 +6.754191688889907841e-01,1.320643908117641874e-01 +6.646783506601814384e-01,1.451635566489367646e-01 +6.881979532178323922e-01,1.207947305419463241e-01 +6.745539718523715367e-01,1.124049302338509110e-01 +7.022679680300321081e-01,1.444094968950277447e-01 +6.558663368992849740e-01,1.262608593511763966e-01 +6.384566286338924090e-01,1.145896831416380046e-01 +6.553126612243918014e-01,1.038091540866140083e-01 +5.364683845829143483e-01,1.054070124346546400e-01 +5.227648810944651725e-01,1.156193315279450406e-01 +5.585867086915521362e-01,1.030455357805992594e-01 +5.692595863471833217e-01,1.207797690080832376e-01 +5.711871705998312621e-01,8.404717012555204536e-02 +5.640264451895833364e-01,6.292812611680910495e-02 +4.783290405424641678e-01,7.193631274947150100e-02 +4.795572914985028468e-01,1.293861263640195824e-01 +4.641951916288710178e-01,1.139667155562127665e-01 +4.856235940894596537e-01,1.106568888571287657e-01 +5.275197151439532384e-01,8.653713404178868529e-02 +5.161467789494341707e-01,5.658193443857144345e-02 +5.008067048571149815e-01,4.605675364349863521e-02 +5.746580620515380211e-01,4.540201432331098658e-02 +5.462503766628492574e-01,1.218745812742711987e-01 +5.481111947821185604e-01,8.154139021191025849e-02 +5.808575777010652752e-01,1.270778830230848699e-01 +5.555439950625289391e-01,4.315475325583906230e-02 +6.021533183222667063e-01,4.247265837442529279e-02 +5.463534978916850804e-01,5.964695332891591095e-02 +5.128502482077976765e-01,1.306349343471502333e-01 +5.179867569858027654e-01,7.263254859912689210e-02 +5.315786123969008514e-01,6.688225150960616650e-02 +5.576892029716089549e-01,1.272530221873983680e-01 +4.953306066964952015e-01,1.307994758479710806e-01 +4.865487426707143515e-01,5.378365197182947977e-02 +4.990041371376353618e-01,7.021712797140325368e-02 +4.768794655966524521e-01,9.484706053411272320e-02 +5.318039610067107903e-01,1.277965400210406000e-01 +4.614797643782632131e-01,8.817167300647210659e-02 +4.080894659660603274e-01,1.157591158801756087e-01 +6.394957667913609978e-01,9.682740225625202646e-02 +4.682813061011682487e-01,1.375761560503138692e-01 +6.391807859729803365e-01,7.558471258349057365e-02 +6.884361103450316044e-01,6.136678441410937240e-02 +6.388278502485731369e-01,5.143994778088311487e-02 +6.240616961492979620e-01,6.543116783006565351e-02 +6.186900622575204345e-01,8.749461523698547072e-02 +6.746041634978288126e-01,9.130339219547216334e-02 +6.875120993358342369e-01,7.878254884497171151e-02 +7.042265216106626813e-01,7.409827733870341659e-02 +6.576910412822201124e-01,4.603417532232473297e-02 +4.141157125051214694e-01,1.338230604799896806e-01 +3.494496721675169892e-01,9.824626805593877910e-02 +3.538085526016563342e-01,8.347965496274747932e-02 +3.427051055581651351e-01,3.729227602419197402e-02 +3.403178380139766368e-01,1.897738152503611331e-02 +3.544345740798494626e-01,2.901422957121071317e-02 +7.167602731189908205e-01,5.993153032756588783e-02 +7.020017080292753064e-01,5.434678539190442026e-02 +3.179043127976458605e-01,5.881448604714521744e-02 +3.308349606189034953e-01,4.723496701177357787e-02 +3.385604214481243712e-01,6.829239162223858794e-02 +3.482482654125736432e-01,5.390547105158534358e-02 +6.486897409772951484e-01,1.452767564223089169e-01 +6.373486863805880587e-01,1.308766006984638797e-01 +6.183890926915308617e-01,4.723016392845420797e-02 +6.622192728818199203e-01,1.652494185892023904e-01 +6.149472903073983643e-01,2.168366819580319904e-01 +3.714971302393342834e-01,7.926287511438205591e-02 +7.335404266260189265e-01,1.169538507936387361e-01 +4.433269935680427820e-01,1.006100379321639010e-01 +6.235927812288393213e-01,1.060352994040776736e-01 +3.581432577202461887e-01,6.570662818454339749e-02 +2.980120059773285757e-01,4.997898674623205834e-02 +2.800473638153200273e-01,4.206702545643185159e-02 +7.216400926938687510e-01,1.328275589387583056e-01 +6.323215916478726051e-01,1.951839804627978903e-01 +6.467928871649853972e-01,1.823252799335754182e-01 +4.135093830598859377e-01,5.884448740073747186e-02 +2.653322032173145995e-01,3.376388408292738119e-02 +3.611267535662956996e-01,4.590739148138953118e-02 +4.472425402525712079e-01,1.171604833047660832e-01 +6.197087457317076442e-01,2.049111754263708285e-01 +7.121862984128999319e-01,8.776538056235271001e-02 +4.388333196653440016e-01,8.252558334411472241e-02 +4.382337603846560015e-01,7.484877631334573012e-02 +4.308775752784123059e-01,7.731893072900783426e-02 +4.453898640857733571e-01,7.023419734618942256e-02 +4.374341196988417169e-01,6.502754473108254829e-02 +5.150067110035680962e-01,9.548383332742824137e-02 +5.071607537206812566e-01,9.961414057435437341e-02 +5.123958974020750290e-01,1.055648817221749858e-01 +5.012976434345748356e-01,8.973067504580470310e-02 +4.986868298330818794e-01,9.981172344055143364e-02 +6.006378570314311327e-01,1.162145954350254501e-01 +6.081992945137610906e-01,1.241363230751721808e-01 +6.115621017965593431e-01,1.158070554130972707e-01 +3.778038579045257528e-01,6.334871229037240814e-02 +3.823071014190239092e-01,5.526141866091845156e-02 +3.758895968989537373e-01,5.246480485560363338e-02 +5.246253914353362635e-01,4.229338502998862548e-02 +5.291330171605870270e-01,3.452678891250992449e-02 +5.204046779675117751e-01,3.246662550517472046e-02 +3.732095951711176252e-01,9.823230910018743156e-02 +3.754019639593617064e-01,1.053473947518098475e-01 +3.830385262358519394e-01,1.026982563884469846e-01 +3.977753277738732551e-01,6.509383605421974195e-02 +3.902613505940569771e-01,6.160548030720798540e-02 +3.917353396044122582e-01,6.963368184269895511e-02 +3.853612786935914913e-01,7.431856286789080557e-02 +3.928752558734078804e-01,7.780691861490256211e-02 +3.920896362322144890e-01,1.021157821214980221e-01 +3.898972674439703523e-01,9.500069646987560623e-02 +7.115934067132345664e-01,9.942137945398857313e-02 +7.071363359946511995e-01,1.074241850256370673e-01 +7.208061951540711831e-01,1.066485101729403862e-01 +7.003526140244160647e-01,1.123976295786172780e-01 +7.095654024652525704e-01,1.196247602975690771e-01 +4.308372152242668784e-01,6.188414893770874392e-02 +4.379933189253842896e-01,5.726956997055243637e-02 +4.435643681697956642e-01,4.985230219873863777e-02 +4.369674636952208813e-01,4.670890640536485422e-02 +4.314018539573346578e-01,1.301101294706231148e-01 +4.408514999917254040e-01,1.372431902886306343e-01 +4.403474624729508680e-01,1.273529739684027273e-01 +4.230052407009090576e-01,7.446216582175370358e-02 +4.236047999815970577e-01,8.213897285252266811e-02 +4.187697340984405381e-01,8.949126091201684008e-02 +4.266420686759437864e-01,9.234802581927099852e-02 +4.372203624096706598e-01,1.481763077231018910e-01 +4.461659709252868700e-01,1.454191522208815035e-01 +6.034180158053141785e-01,1.338718471309147395e-01 +6.143422605704422779e-01,1.334643071089865740e-01 +5.929319299082966843e-01,1.340436206570773670e-01 +5.893968875044859335e-01,1.131859193368452560e-01 +5.927596947872839639e-01,1.048566516747703320e-01 +5.996837316176508725e-01,9.751862642330948183e-02 +5.884427620907056733e-01,9.448995032512928771e-02 +5.868563166692470912e-01,5.891252922920359875e-02 +5.941699971380147716e-01,6.697665453644181810e-02 +5.979070091071165827e-01,5.734227431327670876e-02 +5.892430518106089865e-01,7.784941726301856935e-02 +6.002937442484785890e-01,7.627916234709167242e-02 +4.585694461200004457e-01,5.968121457306804767e-02 +4.656577480848638206e-01,5.952478563922961735e-02 +4.642688043125708930e-01,5.159151777470123018e-02 +6.643945249912777129e-01,5.788290974024675600e-02 +6.640906452589723230e-01,6.745231073328671056e-02 +6.725762242899797627e-01,6.171660941660424282e-02 +6.562279679321357806e-01,7.378244665749823794e-02 +6.644096672308379414e-01,7.761614633385574558e-02 +6.828652830939789808e-01,1.333867316593231045e-01 +6.787446224750630641e-01,1.417624892644477330e-01 +6.861907366800512609e-01,1.430848301120066224e-01 +6.700487597745861112e-01,1.386139737303504760e-01 +6.733742133606583913e-01,1.483120721830340216e-01 +6.892546752583997849e-01,1.277519015244141243e-01 +6.818085610534115881e-01,1.264295606768552627e-01 +6.813759625351019089e-01,1.165998303878986175e-01 +6.749865703706811049e-01,1.222346605228075700e-01 +6.962896826644997539e-01,1.395592847009548554e-01 +6.921690220455838372e-01,1.479350423060795117e-01 +6.902484293767826573e-01,1.580351163468970699e-01 +7.003473753612310393e-01,1.545095709358453306e-01 +6.555894990618383877e-01,1.150350067188952163e-01 +6.468846449291421052e-01,1.091994186141260065e-01 +6.471614827665888026e-01,1.204252712464072145e-01 +5.215033678897136316e-01,1.085269530015969541e-01 +5.296166328386897604e-01,1.105131719812998403e-01 +5.283551196339382194e-01,1.034207934549517677e-01 +5.639231475193677845e-01,1.119126523943412416e-01 +5.753891558037610432e-01,1.113038722923366808e-01 +5.700527169759455060e-01,1.024367556785946848e-01 +5.763529479300849578e-01,9.293757285107108468e-02 +5.648869396456916991e-01,9.354635295307564546e-02 +4.508853628738333508e-01,5.608045623623294368e-02 +4.522743066461262229e-01,6.401372410076132391e-02 +4.268726925282720908e-01,1.466716047754650365e-01 +5.735728749448643082e-01,6.573751778458890305e-02 +5.676068078947072992e-01,7.348764812118056822e-02 +5.771532376499882711e-01,7.629703978896039407e-02 +4.748430734099491346e-01,6.168570079516716431e-02 +4.691437152173787428e-01,6.977539759353394710e-02 +4.825904427939812225e-01,1.200215076105741602e-01 +4.749093928591653357e-01,1.123118022066707661e-01 +4.718762415636869045e-01,1.216764209601161606e-01 +5.319940498634336823e-01,9.597207323822166958e-02 +5.238807849144575535e-01,9.398585425851876951e-02 +5.160219155958476467e-01,4.840757803061244979e-02 +5.083518785496879966e-01,4.314498763307604567e-02 +5.084767419032745206e-01,5.131934404103503933e-02 +5.099469229253332792e-01,3.324241541201754940e-02 +5.024017492327601531e-01,3.615418142244014588e-02 +5.693422536205606788e-01,5.416507022006004923e-02 +5.788886833758417616e-01,5.697446188783984733e-02 +4.671181720475724441e-01,4.284512566310743481e-02 +4.600298700827091247e-01,4.300155459694586513e-02 +5.826256953449433507e-01,4.734008166467473799e-02 +5.892042981879977992e-01,3.692045588926229360e-02 +5.812366648945923586e-01,3.498238854789854219e-02 +5.413593806228818028e-01,1.136407968544629193e-01 +5.524185426772008078e-01,1.124600585274352360e-01 +5.475275466372332422e-01,1.042262741076269567e-01 +5.533489517368354038e-01,9.229346299625473815e-02 +5.422897896825163988e-01,9.347420132328244924e-02 +5.811881514807020199e-01,1.144529292998375108e-01 +5.890663137248490777e-01,1.258108730600926151e-01 +5.847231938845127708e-01,1.353106306200696496e-01 +5.597852201260560268e-01,5.304143968632408362e-02 +5.651010285570334801e-01,4.427838378957502097e-02 +5.963733234803076932e-01,4.587540369023190151e-02 +6.036870039490754847e-01,5.393952899747009311e-02 +5.509487464771070098e-01,5.140085329237748663e-02 +5.551899715406343194e-01,6.128753972286250795e-02 +5.472323463369017649e-01,7.059417177041307778e-02 +5.560688199858510039e-01,7.223475816435968866e-02 +5.136574106068267920e-01,1.126572602485230584e-01 +5.087000941634929330e-01,1.201650616581256548e-01 +5.178075646511313135e-01,1.231271329375476370e-01 +5.186456412330637811e-01,8.803511311069815715e-02 +5.227532360648778909e-01,7.958484132045777482e-02 +5.138791621539884336e-01,8.108282038936727443e-02 +5.707540465162562748e-01,3.467169982981768706e-02 +5.611970130217517339e-01,3.354806929608172145e-02 +5.238626956731675666e-01,6.173209297408880497e-02 +5.170667679676184125e-01,6.460724151884916777e-02 +5.247826846913518084e-01,6.975740005436652236e-02 +5.581379558315806566e-01,1.151492789839987929e-01 +5.634743946593960828e-01,1.240163955977407750e-01 +5.626674600264099935e-01,1.359737257019973111e-01 +5.684526517141972324e-01,1.327370991123397459e-01 +4.999402734078417510e-01,1.202473324085360923e-01 +5.040904274521463835e-01,1.307172050975606292e-01 +5.001887068428525485e-01,1.406458985553294683e-01 +5.089485275985037305e-01,1.405636278049190446e-01 +5.324661715126561834e-01,5.561789997346498066e-02 +5.247502547889228985e-01,5.046774143794764689e-02 +5.295491637704270449e-01,7.670969277569743283e-02 +4.824388916065892596e-01,6.285998236065050426e-02 +4.886665888400497648e-01,7.107672036043738428e-02 +4.927764399041748566e-01,6.200038997161638060e-02 +4.812515298430560806e-01,1.027519746956207375e-01 +4.705373286127617072e-01,1.044068880451627379e-01 +5.341361727948126248e-01,1.166017762278476200e-01 +5.390271688347800794e-01,1.248355606476559132e-01 +5.392537935340854238e-01,1.368336679843518422e-01 +5.464770013621547129e-01,1.338726886109671554e-01 +4.691796149874578603e-01,9.150936677029242183e-02 +4.628374780035671154e-01,1.010691942813424365e-01 +4.904771003929774276e-01,1.207281823525499231e-01 +4.874439490974989964e-01,1.300928011059953038e-01 +4.819565251378491455e-01,1.416587609887563215e-01 +4.898431827368452951e-01,1.423654357307320706e-01 +4.855763800447198131e-01,8.093228533073666686e-02 +4.959139283423054101e-01,8.007269294170253626e-02 +5.750585820241242985e-01,1.239288260155840538e-01 +4.950867671043239771e-01,1.101760389131149348e-01 +4.892236568182175560e-01,1.002925733845652922e-01 +5.223271046072541779e-01,1.292157371840954028e-01 +5.272844210505879259e-01,1.217079357744928203e-01 +4.035189217031965869e-01,1.050886690415511332e-01 +3.966601804950781740e-01,1.127862289601224977e-01 +3.871145154737613003e-01,1.194615738389816356e-01 +3.985438009447435093e-01,1.224344607590347467e-01 +5.398536142600482979e-01,5.200025088311988064e-02 +5.389660551442929659e-01,6.326460241926103178e-02 +5.398449035895096504e-01,7.421182086075821249e-02 +5.519697898172291062e-01,1.245638017308347695e-01 +4.999054209973751162e-01,5.813694080745093057e-02 +5.075754580435347663e-01,6.339953120498734163e-02 +6.559298255641965447e-01,9.387771817234064065e-02 +6.480213783476811429e-01,9.038684225715964971e-02 +6.474042140078763996e-01,1.003182781714330174e-01 +4.739192987998355200e-01,1.334811412071667258e-01 +4.662382488650196333e-01,1.257714358032633317e-01 +4.936777237639146110e-01,4.992020280766405749e-02 +6.478638879384908122e-01,7.976549742077893024e-02 +6.393382763821706671e-01,8.620605741987130699e-02 +5.193182488043588396e-01,1.390037597805089953e-01 +5.287951052038153410e-01,1.375845626174541647e-01 +5.444488628454701162e-01,4.375415084658145631e-02 +5.043878522299047873e-01,7.987511007550544828e-02 +4.789529244740742819e-01,5.260937040634613981e-02 +6.806581071836583785e-01,5.675699641883684421e-02 +6.900799975094173977e-01,4.945333026198701215e-02 +6.823019943480441718e-01,4.484354226671448396e-02 +6.720642012262050269e-01,4.259250094502709666e-02 +6.314447731989354384e-01,5.843555780547437378e-02 +6.316212410611391492e-01,7.050794020677812746e-02 +6.390043181107767367e-01,6.351233018218684079e-02 +6.213758792034091982e-01,7.646289153352554824e-02 +6.289354241152504965e-01,8.153966391023802218e-02 +6.927178234448243543e-01,8.948980157582848982e-02 +6.810581314168315803e-01,8.504297052022193049e-02 +6.862638555258215867e-01,9.575022325107869492e-02 +6.745790676751001191e-01,1.018541612146615372e-01 +6.862387597030930042e-01,1.063009922702680826e-01 +6.798922219467543604e-01,7.503427962730793710e-02 +6.734382540277517037e-01,8.129470130255819771e-02 +6.655755767009150503e-01,8.762483722676971121e-02 +7.010750345822385210e-01,8.714766582269432849e-02 +6.958693104732485146e-01,7.644041309183755017e-02 +6.644696698561723958e-01,3.953598439440735024e-02 +6.652855726522526325e-01,4.909069187294450715e-02 +4.225067644718407678e-01,1.270214868151924303e-01 +4.230108019906153594e-01,1.369117031354203651e-01 +4.194936412023101968e-01,1.179895145152854152e-01 +4.111025892355908984e-01,1.247910881800826377e-01 +4.263524096156736665e-01,1.099601135145801961e-01 +4.149482343794237971e-01,1.077297148794704035e-01 +3.516291123845866062e-01,9.086296150934312921e-02 +3.458429293952485772e-01,8.541812421530786681e-02 +3.436634891781789047e-01,9.280143076190351670e-02 +3.485698398190072989e-01,3.315325279770134359e-02 +3.473762060469130497e-01,2.399580554812339936e-02 +3.415114717860708859e-01,2.813482877461402978e-02 +3.307930395597450390e-01,2.384579846248419815e-02 +3.319866733318392882e-01,3.300324571206213892e-02 +7.093809905741330635e-01,5.713915785973516792e-02 +7.031141148199688828e-01,6.422253136530392537e-02 +7.104933973648266399e-01,6.701490383313467303e-02 +7.144960680447272061e-01,7.519806743101903335e-02 +7.207629437988911647e-01,6.811469392545026202e-02 +3.282323671228851159e-01,6.355343883469190269e-02 +3.346976910335138777e-01,5.776367931700608638e-02 +3.243696367082746779e-01,5.302472652945940113e-02 +3.395416130157385970e-01,5.057021903167946419e-02 +3.434043434303489795e-01,6.109893133691196576e-02 +3.183169716523478465e-01,6.881118497936612732e-02 +3.286450259775871019e-01,7.355013776691281258e-02 +3.382188638184825957e-01,7.782449254505344194e-02 +3.260516008622084128e-01,3.797459120585293391e-02 +3.367700330885343152e-01,4.226362151798276207e-02 +3.235791890051510356e-01,4.181296446866081956e-02 +6.540897147124864475e-01,3.804309330638257214e-02 +6.522780389382900612e-01,1.357688078867426706e-01 +6.466075116399365719e-01,1.285687300248201381e-01 +6.430192136789416590e-01,1.380766785603864122e-01 +6.118048911337076179e-01,5.631828177448457845e-02 +6.102712055068987285e-01,4.485141115143975038e-02 +3.171138650945222182e-01,4.760272398634663588e-02 +6.135686528297267239e-01,3.655799023654342922e-02 +6.054507656450945907e-01,3.417923745952894388e-02 +6.810788956066659017e-01,1.628108580014091811e-01 +6.634488117710006794e-01,1.552064876190695775e-01 +6.566840458187384044e-01,1.452201565356228408e-01 +6.554545069295576454e-01,1.552630875057556537e-01 +6.451212899634447551e-01,1.529659180476793667e-01 +6.518860559157071410e-01,1.629522491311261034e-01 +6.721446744714777433e-01,1.583550031531668345e-01 +6.163175261375615221e-01,2.227412930682960701e-01 +6.068856864272813567e-01,2.213005700813057419e-01 +6.086221643247251567e-01,2.113238248721882595e-01 +6.711534940170080787e-01,1.697052734374447647e-01 +6.146411928625911125e-01,6.541878372529030816e-02 +6.212253944204144673e-01,5.633066587925993074e-02 +6.070284305892965637e-01,8.732327015532695413e-02 +6.119553759167024598e-01,7.645050742875020289e-02 +3.761716438434710152e-01,8.742302292560333310e-02 +3.685350815669808378e-01,9.007216128896619600e-02 +3.626528414204952533e-01,8.137126503856478843e-02 +3.596907927481418632e-01,9.218055121314888689e-02 +3.778592463319651040e-01,7.270410060503462724e-02 +3.714417418118949321e-01,6.990748679971983681e-02 +3.789991626009606707e-01,8.087733737723823424e-02 +3.836736762050974581e-01,8.903748518845949755e-02 +6.113453632858748543e-01,9.768997150496799842e-02 +6.339108232364450979e-01,1.371658121357439974e-01 +6.395813505347985872e-01,1.443658899976665022e-01 +7.336636654942287894e-01,9.307630688083831649e-02 +7.376316329363272750e-01,1.026510608844819761e-01 +7.294018462493367938e-01,1.077997776974653071e-01 +7.417702133130095188e-01,1.118051339806554051e-01 +7.250144401757230295e-01,8.747178106231325023e-02 +4.538346345749254551e-01,8.411355096746236937e-02 +4.447582491698152118e-01,9.033273343030825964e-02 +4.524033789731529698e-01,9.439085546931799686e-02 +6.310247049313658652e-01,1.103124912728578322e-01 +6.389761977126267034e-01,1.057085426989450155e-01 +6.315442740101000485e-01,1.014313508301648431e-01 +4.537610925984568722e-01,1.072883767441883407e-01 +3.927247862014600077e-01,8.845501092151054900e-02 +5.596491826909748557e-01,8.279428016873116580e-02 +3.483518395841852522e-01,6.699950990339098578e-02 +3.531957615664099159e-01,5.980604961806437053e-02 +2.985545613539017928e-01,6.070154906857417459e-02 +3.085007147640604352e-01,6.511929871903075762e-02 +3.079581593874872181e-01,5.439673639668864136e-02 +3.071677116843635758e-01,4.318497433589005285e-02 +4.103776901165601121e-01,9.705926804084590021e-02 +4.073404214222133279e-01,8.685021507409759756e-02 +4.074908910941611451e-01,7.620212276748963842e-02 +3.990988471122807191e-01,8.377012989631869855e-02 +6.290929145244407161e-01,9.216100874661872777e-02 +6.211414217431798779e-01,9.676495732053157217e-02 +6.247982496855957191e-01,1.335919033131340306e-01 +2.889220161813165211e-01,5.655927091520436545e-02 +2.890296848963243015e-01,4.602300610133194109e-02 +2.799396951003123024e-01,5.260329027030424820e-02 +2.974804892300888515e-01,3.917317568099083769e-02 +2.884981681490845773e-01,3.521719503609072044e-02 +6.649584123611103070e-01,9.755627314104309278e-02 +6.649333165383817246e-01,1.081070421602324666e-01 +6.963313159778471428e-01,6.773253087640640491e-02 +6.952189091871534554e-01,5.785678490300691368e-02 +6.879741048404329762e-01,7.007466662954053849e-02 +3.323196976014937132e-01,1.363867543100354303e-02 +3.406138680530330087e-01,9.488690762518056654e-03 +3.566129286979654589e-01,1.985567621641139494e-02 +3.495545606650290460e-01,1.483725219332411062e-02 +7.122108865944432043e-01,1.287128818946537967e-01 +7.025248242625248274e-01,1.345038508727885163e-01 +7.119540303619504851e-01,1.386185279168929974e-01 +4.530739473319405075e-01,7.383495568302450573e-02 +6.602723437797332062e-01,1.357122080000565667e-01 +6.930607503858234875e-01,1.104958924243157892e-01 +6.954898168564249694e-01,1.226964676962478129e-01 +6.965465388969924732e-01,1.296536386787156547e-01 +3.648201939797902082e-01,7.248475164946271976e-02 +3.559759051609512337e-01,7.459314157364545228e-02 +7.200089366332864671e-01,1.455397351269060169e-01 +7.103228743013682012e-01,1.513307041050407642e-01 +5.378154549630358439e-01,8.403926212684945107e-02 +6.492511790159445351e-01,1.936251159190766902e-01 +6.395572394064290567e-01,1.887546301981866681e-01 +6.420155312573880835e-01,2.000544661836879123e-01 +6.367667624312590702e-01,1.772717543348186764e-01 +6.295311146727026186e-01,1.837011045994299263e-01 +4.224528987553476944e-01,5.648533078895805193e-02 +4.218936995288050662e-01,6.424330554948816385e-02 +4.146209242319898181e-01,6.906334767300301158e-02 +3.647648055523509125e-01,6.312936333480050066e-02 +4.175749603132411503e-01,4.859071773844565040e-02 +4.265184760087029625e-01,4.623156112666623047e-02 +7.142440420607953921e-01,5.163910927835271142e-02 +7.244241638695247953e-01,5.366148193560472263e-02 +7.277479380089648675e-01,1.386854322403647810e-01 +7.189946085646782281e-01,1.237394373416735721e-01 +7.256902618232580204e-01,6.184535386920934907e-02 +7.249447755307534269e-01,1.158025832691138013e-01 +3.575113525310721907e-01,9.956385775974453678e-02 +3.492544480239805349e-01,1.073772452781374814e-01 +3.573161283875357919e-01,1.086948349819432391e-01 +3.883470895884849616e-01,5.072157287243921064e-02 +3.672516166835742002e-01,1.120048688912977791e-01 +6.286084714700519438e-01,4.933505585466865101e-02 +6.342346173421316013e-01,3.958875939365925911e-02 +6.240152385636104082e-01,3.748386746744479525e-02 +3.770805477483085144e-01,1.164708161795573321e-01 +2.582194063948562990e-01,3.432462587053531494e-02 +2.609778125775283342e-01,2.579150374226423653e-02 +3.454766854853693614e-01,4.559887353788864839e-02 +2.713057360724163147e-01,2.743302330637741038e-02 +3.519159295622304451e-01,4.159983375279074913e-02 +3.577806638230726088e-01,3.746081052630011871e-02 +3.546875094894346714e-01,4.990643126648745126e-02 +3.656766778329530454e-01,3.689752498169156930e-02 +3.623305880897299547e-01,2.845094402660213601e-02 +3.985269759123977185e-01,4.822843999305150009e-02 +3.707597969898738244e-01,4.514245135376960399e-02 +6.644067472366729232e-01,1.777092007800377405e-01 +6.545060800234026033e-01,1.737873492613889181e-01 +6.566935543782556062e-01,1.862471314522242682e-01 +6.441728630572898240e-01,1.714901798033126035e-01 +4.569961500681063438e-01,1.242263751713114928e-01 +4.590392073042549592e-01,1.360310954183620580e-01 +4.566491442730046257e-01,1.452982713689468797e-01 +4.658912430699179152e-01,1.468433320008986909e-01 +4.607190771352782654e-01,7.789307772203427072e-02 +6.652101543758281998e-01,1.193328947925136746e-01 +6.656427528941378791e-01,1.291626250814703059e-01 +3.461844870248903527e-01,7.588602329249305445e-02 +6.475448659666253048e-01,6.960166182020989523e-02 +6.473683981044215940e-01,5.752927941890614849e-02 +6.968627963515392487e-01,4.594333075088455343e-02 +7.068647595159376351e-01,4.884673681052199151e-02 +4.063793499220572647e-01,6.598326249522411258e-02 +4.049053609117019836e-01,5.795506095973310817e-02 +4.071309980605817280e-01,4.911786643405583602e-02 +5.832769847604519775e-01,8.559954759961024839e-02 +3.596350056432709441e-01,5.580700983296647127e-02 +3.662565534753756680e-01,5.322974498322356057e-02 +4.015569242142740802e-01,1.314664330589417618e-01 +4.776042530695582822e-01,8.339168664179211210e-02 +4.699044024603636904e-01,8.005399287797181074e-02 +7.389241559998893649e-01,1.216693391120584472e-01 +6.342702072981081240e-01,2.071174423285514488e-01 +6.225402885222606209e-01,1.914286616151461284e-01 +7.275902596599439498e-01,1.248907048661985070e-01 +7.329739890338142771e-01,1.296061931846182180e-01 +2.786633163714190564e-01,3.158459399312963517e-02 +2.708258578244573944e-01,4.750638341253249353e-02 +4.848515925718139830e-01,9.238765922305726408e-02 +5.507097012105905964e-01,3.358008686113408969e-02 +5.949842930299567012e-01,3.351771057345567795e-02 +6.213581602538642557e-01,1.148820412286608306e-01 +6.137967227715341867e-01,1.069603135885140999e-01 +6.287900839563909106e-01,1.191592330974409891e-01 +4.498595076436698870e-01,4.551979267104536153e-02 +5.084954470617190081e-01,7.142483828526506595e-02 +5.396145689935319956e-01,3.417948445187649065e-02 +4.452847669103069950e-01,1.088852606184649852e-01 +4.557188659407210851e-01,1.155635994304894248e-01 +5.521964145165345617e-01,1.365619090675307123e-01 +4.085395920701085926e-01,1.391646895723346322e-01 +4.179776030427782008e-01,1.435829621200343520e-01 +6.803542274513529886e-01,6.632639741187679183e-02 +6.162338655641780294e-01,1.962922590969325976e-01 +6.110028920368797412e-01,2.053610716063576647e-01 +6.279637843400255326e-01,2.119810398103379179e-01 +6.260151686897901246e-01,2.000475779445843594e-01 +4.763185324391817632e-01,1.457537758319034926e-01 +4.848977336048188036e-01,4.152831431287039299e-02 +4.920267146980191186e-01,3.766486514870497071e-02 +4.773019154081787341e-01,4.035403274738705304e-02 +5.742516473911382091e-01,1.358861561198405621e-01 +4.485198243799564111e-01,1.258232590455881372e-01 +4.390701783455656093e-01,1.186901982275806455e-01 +4.371124050033014519e-01,1.104149755412795614e-01 +6.255830566278708371e-01,2.179437930761684850e-01 +6.173280180195529487e-01,2.108739286922014233e-01 +6.446581191956629597e-01,4.074597953566176656e-02 +6.482594457653966247e-01,4.873706155160392739e-02 +2.634682775254547082e-01,4.335481272578026873e-02 +2.726897835163173411e-01,3.791545476967959905e-02 +4.325669981804149966e-01,1.001551759054645357e-01 +6.567999936212451928e-01,5.482639318962695407e-02 +3.426997661424399655e-01,9.963787909996869863e-02 +4.374020640635716273e-01,9.280288784597036378e-02 +7.184759564458458314e-01,8.203161904284367312e-02 +7.082064100117813066e-01,8.093182895052804249e-02 +7.050549229833571463e-01,9.398121743451899601e-02 +7.187247821427771299e-01,9.320554258182231488e-02 +6.379026575072401783e-01,1.227331419200509560e-01 +6.282361128297386799e-01,1.273026918758539405e-01 diff --git a/src/pyvale/data/render/riley/textures/cal_target-simple.tiff b/src/pyvale/data/render/riley/textures/cal_target-simple.tiff new file mode 100644 index 000000000..b61fa5f84 Binary files /dev/null and b/src/pyvale/data/render/riley/textures/cal_target-simple.tiff differ diff --git a/src/pyvale/data/render/riley/textures/speckle.bmp b/src/pyvale/data/render/riley/textures/speckle.bmp new file mode 100644 index 000000000..8b26a1379 Binary files /dev/null and b/src/pyvale/data/render/riley/textures/speckle.bmp differ diff --git a/src/pyvale/data/case00_HEX20_out.e b/src/pyvale/data/simulation/exodus/case00_HEX20_out.e similarity index 100% rename from src/pyvale/data/case00_HEX20_out.e rename to src/pyvale/data/simulation/exodus/case00_HEX20_out.e diff --git a/src/pyvale/data/case00_HEX27_out.e b/src/pyvale/data/simulation/exodus/case00_HEX27_out.e similarity index 100% rename from src/pyvale/data/case00_HEX27_out.e rename to src/pyvale/data/simulation/exodus/case00_HEX27_out.e diff --git a/src/pyvale/data/case00_HEX8_out.e b/src/pyvale/data/simulation/exodus/case00_HEX8_out.e similarity index 100% rename from src/pyvale/data/case00_HEX8_out.e rename to src/pyvale/data/simulation/exodus/case00_HEX8_out.e diff --git a/src/pyvale/data/case00_TET10_out.e b/src/pyvale/data/simulation/exodus/case00_TET10_out.e similarity index 100% rename from src/pyvale/data/case00_TET10_out.e rename to src/pyvale/data/simulation/exodus/case00_TET10_out.e diff --git a/src/pyvale/data/case00_TET14_out.e b/src/pyvale/data/simulation/exodus/case00_TET14_out.e similarity index 100% rename from src/pyvale/data/case00_TET14_out.e rename to src/pyvale/data/simulation/exodus/case00_TET14_out.e diff --git a/src/pyvale/data/case00_TET4_out.e b/src/pyvale/data/simulation/exodus/case00_TET4_out.e similarity index 100% rename from src/pyvale/data/case00_TET4_out.e rename to src/pyvale/data/simulation/exodus/case00_TET4_out.e diff --git a/src/pyvale/data/case16_d_out.e b/src/pyvale/data/simulation/exodus/case16_d_out.e similarity index 100% rename from src/pyvale/data/case16_d_out.e rename to src/pyvale/data/simulation/exodus/case16_d_out.e diff --git a/src/pyvale/data/case16_out.e b/src/pyvale/data/simulation/exodus/case16_out.e similarity index 100% rename from src/pyvale/data/case16_out.e rename to src/pyvale/data/simulation/exodus/case16_out.e diff --git a/src/pyvale/data/case17_out.e b/src/pyvale/data/simulation/exodus/case17_out.e similarity index 100% rename from src/pyvale/data/case17_out.e rename to src/pyvale/data/simulation/exodus/case17_out.e diff --git a/src/pyvale/data/case18_d_out.e b/src/pyvale/data/simulation/exodus/case18_d_out.e similarity index 100% rename from src/pyvale/data/case18_d_out.e rename to src/pyvale/data/simulation/exodus/case18_d_out.e diff --git a/src/pyvale/data/case18_out.e b/src/pyvale/data/simulation/exodus/case18_out.e similarity index 100% rename from src/pyvale/data/case18_out.e rename to src/pyvale/data/simulation/exodus/case18_out.e diff --git a/src/pyvale/data/case26_out.e b/src/pyvale/data/simulation/exodus/case26_out.e similarity index 100% rename from src/pyvale/data/case26_out.e rename to src/pyvale/data/simulation/exodus/case26_out.e diff --git a/src/pyvale/simcases/case00_HEX20.i b/src/pyvale/data/simulation/simcases/case00_HEX20.i similarity index 100% rename from src/pyvale/simcases/case00_HEX20.i rename to src/pyvale/data/simulation/simcases/case00_HEX20.i diff --git a/src/pyvale/data/simulation/simcases/case00_HEX20_out.e b/src/pyvale/data/simulation/simcases/case00_HEX20_out.e new file mode 100644 index 000000000..c86f51991 Binary files /dev/null and b/src/pyvale/data/simulation/simcases/case00_HEX20_out.e differ diff --git a/src/pyvale/simcases/case00_HEX27.i b/src/pyvale/data/simulation/simcases/case00_HEX27.i similarity index 100% rename from src/pyvale/simcases/case00_HEX27.i rename to src/pyvale/data/simulation/simcases/case00_HEX27.i diff --git a/src/pyvale/simcases/case00_HEX8.i b/src/pyvale/data/simulation/simcases/case00_HEX8.i similarity index 100% rename from src/pyvale/simcases/case00_HEX8.i rename to src/pyvale/data/simulation/simcases/case00_HEX8.i diff --git a/src/pyvale/simcases/case00_TET10.i b/src/pyvale/data/simulation/simcases/case00_TET10.i similarity index 100% rename from src/pyvale/simcases/case00_TET10.i rename to src/pyvale/data/simulation/simcases/case00_TET10.i diff --git a/src/pyvale/simcases/case00_TET14.i b/src/pyvale/data/simulation/simcases/case00_TET14.i similarity index 100% rename from src/pyvale/simcases/case00_TET14.i rename to src/pyvale/data/simulation/simcases/case00_TET14.i diff --git a/src/pyvale/simcases/case00_TET4.i b/src/pyvale/data/simulation/simcases/case00_TET4.i similarity index 100% rename from src/pyvale/simcases/case00_TET4.i rename to src/pyvale/data/simulation/simcases/case00_TET4.i diff --git a/src/pyvale/simcases/case01.i b/src/pyvale/data/simulation/simcases/case01.i similarity index 100% rename from src/pyvale/simcases/case01.i rename to src/pyvale/data/simulation/simcases/case01.i diff --git a/src/pyvale/simcases/case02.i b/src/pyvale/data/simulation/simcases/case02.i similarity index 100% rename from src/pyvale/simcases/case02.i rename to src/pyvale/data/simulation/simcases/case02.i diff --git a/src/pyvale/simcases/case03.i b/src/pyvale/data/simulation/simcases/case03.i similarity index 100% rename from src/pyvale/simcases/case03.i rename to src/pyvale/data/simulation/simcases/case03.i diff --git a/src/pyvale/simcases/case04.i b/src/pyvale/data/simulation/simcases/case04.i similarity index 100% rename from src/pyvale/simcases/case04.i rename to src/pyvale/data/simulation/simcases/case04.i diff --git a/src/pyvale/simcases/case05.i b/src/pyvale/data/simulation/simcases/case05.i similarity index 100% rename from src/pyvale/simcases/case05.i rename to src/pyvale/data/simulation/simcases/case05.i diff --git a/src/pyvale/simcases/case06.i b/src/pyvale/data/simulation/simcases/case06.i similarity index 100% rename from src/pyvale/simcases/case06.i rename to src/pyvale/data/simulation/simcases/case06.i diff --git a/src/pyvale/simcases/case07.geo b/src/pyvale/data/simulation/simcases/case07.geo similarity index 100% rename from src/pyvale/simcases/case07.geo rename to src/pyvale/data/simulation/simcases/case07.geo diff --git a/src/pyvale/simcases/case07.i b/src/pyvale/data/simulation/simcases/case07.i similarity index 100% rename from src/pyvale/simcases/case07.i rename to src/pyvale/data/simulation/simcases/case07.i diff --git a/src/pyvale/simcases/case08.geo b/src/pyvale/data/simulation/simcases/case08.geo similarity index 100% rename from src/pyvale/simcases/case08.geo rename to src/pyvale/data/simulation/simcases/case08.geo diff --git a/src/pyvale/simcases/case08.i b/src/pyvale/data/simulation/simcases/case08.i similarity index 100% rename from src/pyvale/simcases/case08.i rename to src/pyvale/data/simulation/simcases/case08.i diff --git a/src/pyvale/simcases/case09.geo b/src/pyvale/data/simulation/simcases/case09.geo similarity index 100% rename from src/pyvale/simcases/case09.geo rename to src/pyvale/data/simulation/simcases/case09.geo diff --git a/src/pyvale/simcases/case09.i b/src/pyvale/data/simulation/simcases/case09.i similarity index 100% rename from src/pyvale/simcases/case09.i rename to src/pyvale/data/simulation/simcases/case09.i diff --git a/src/pyvale/simcases/case10.geo b/src/pyvale/data/simulation/simcases/case10.geo similarity index 100% rename from src/pyvale/simcases/case10.geo rename to src/pyvale/data/simulation/simcases/case10.geo diff --git a/src/pyvale/simcases/case10.i b/src/pyvale/data/simulation/simcases/case10.i similarity index 100% rename from src/pyvale/simcases/case10.i rename to src/pyvale/data/simulation/simcases/case10.i diff --git a/src/pyvale/simcases/case11.geo b/src/pyvale/data/simulation/simcases/case11.geo similarity index 100% rename from src/pyvale/simcases/case11.geo rename to src/pyvale/data/simulation/simcases/case11.geo diff --git a/src/pyvale/simcases/case11.i b/src/pyvale/data/simulation/simcases/case11.i similarity index 100% rename from src/pyvale/simcases/case11.i rename to src/pyvale/data/simulation/simcases/case11.i diff --git a/src/pyvale/simcases/case12.geo b/src/pyvale/data/simulation/simcases/case12.geo similarity index 100% rename from src/pyvale/simcases/case12.geo rename to src/pyvale/data/simulation/simcases/case12.geo diff --git a/src/pyvale/simcases/case12.i b/src/pyvale/data/simulation/simcases/case12.i similarity index 100% rename from src/pyvale/simcases/case12.i rename to src/pyvale/data/simulation/simcases/case12.i diff --git a/src/pyvale/simcases/case13.i b/src/pyvale/data/simulation/simcases/case13.i similarity index 100% rename from src/pyvale/simcases/case13.i rename to src/pyvale/data/simulation/simcases/case13.i diff --git a/src/pyvale/simcases/case14.i b/src/pyvale/data/simulation/simcases/case14.i similarity index 100% rename from src/pyvale/simcases/case14.i rename to src/pyvale/data/simulation/simcases/case14.i diff --git a/src/pyvale/simcases/case15.geo b/src/pyvale/data/simulation/simcases/case15.geo similarity index 100% rename from src/pyvale/simcases/case15.geo rename to src/pyvale/data/simulation/simcases/case15.geo diff --git a/src/pyvale/simcases/case15.i b/src/pyvale/data/simulation/simcases/case15.i similarity index 100% rename from src/pyvale/simcases/case15.i rename to src/pyvale/data/simulation/simcases/case15.i diff --git a/src/pyvale/simcases/case16.geo b/src/pyvale/data/simulation/simcases/case16.geo similarity index 100% rename from src/pyvale/simcases/case16.geo rename to src/pyvale/data/simulation/simcases/case16.geo diff --git a/src/pyvale/simcases/case16.i b/src/pyvale/data/simulation/simcases/case16.i similarity index 100% rename from src/pyvale/simcases/case16.i rename to src/pyvale/data/simulation/simcases/case16.i diff --git a/src/pyvale/simcases/case16_d.i b/src/pyvale/data/simulation/simcases/case16_d.i similarity index 100% rename from src/pyvale/simcases/case16_d.i rename to src/pyvale/data/simulation/simcases/case16_d.i diff --git a/src/pyvale/simcases/case16_u.i b/src/pyvale/data/simulation/simcases/case16_u.i similarity index 100% rename from src/pyvale/simcases/case16_u.i rename to src/pyvale/data/simulation/simcases/case16_u.i diff --git a/src/pyvale/simcases/case17.geo b/src/pyvale/data/simulation/simcases/case17.geo similarity index 100% rename from src/pyvale/simcases/case17.geo rename to src/pyvale/data/simulation/simcases/case17.geo diff --git a/src/pyvale/simcases/case17.i b/src/pyvale/data/simulation/simcases/case17.i similarity index 100% rename from src/pyvale/simcases/case17.i rename to src/pyvale/data/simulation/simcases/case17.i diff --git a/src/pyvale/data/simulation/simcases/case17.msh b/src/pyvale/data/simulation/simcases/case17.msh new file mode 100644 index 000000000..21cfd6496 --- /dev/null +++ b/src/pyvale/data/simulation/simcases/case17.msh @@ -0,0 +1,3190 @@ +$MeshFormat +4.1 0 8 +$EndMeshFormat +$PhysicalNames +3 +1 2 "bc-base" +1 3 "bc-top" +2 1 "plate" +$EndPhysicalNames +$Entities +18 26 8 0 +1 0 0 0 0 +2 0.05000000000000001 0 0 0 +3 0.05 0.02500000000000002 0 0 +4 0 0.02500000000000001 0 0 +5 0.1 0 0 0 +6 0.1 0.02500000000000001 0 0 +10 0.05 0.125 0 0 +11 0 0.125 0 0 +12 0.1 0.125 0 0 +13 0.05 0.15 0 0 +14 0 0.15 0 0 +15 0.1 0.15 0 0 +16 0 0.07500000000000001 0 0 +17 0.03750000000000001 0.07500000000000026 0 0 +18 0.05000000000000032 0.06250000000000001 0 0 +19 0.0625 0.07500000000000001 0 0 +20 0.1 0.07500000000000001 0 0 +21 0.05000000000000031 0.08750000000000001 0 0 +1 -9.999999999940612e-08 -1e-07 -1e-07 0.05000010000000001 1e-07 1e-07 1 2 2 1 -2 +2 0.0499999 -1.000000000011408e-07 -1.000000000017347e-07 0.05000010000000001 0.02500010000000001 1.000000000017347e-07 0 2 2 -3 +3 -9.999999999940612e-08 0.02499990000000001 -1e-07 0.05000010000000001 0.02500010000000001 1e-07 0 2 3 -4 +4 -1e-07 -9.999999999940612e-08 -1e-07 1e-07 0.02500010000000001 1e-07 0 2 4 -1 +5 0.0499999 -1e-07 -1e-07 0.1000001 1e-07 1e-07 1 2 2 2 -5 +6 0.0999999 -9.999999999940612e-08 -1e-07 0.1000001 0.02500010000000001 1e-07 0 2 5 -6 +7 0.0499999 0.02499990000000001 -1e-07 0.1000001 0.02500010000000001 1e-07 0 2 6 -3 +14 -9.999999999940612e-08 0.1249999 -1e-07 0.05000010000000001 0.1250001 1e-07 0 2 10 -11 +17 0.0499999 0.1249999 -1e-07 0.1000001 0.1250001 1e-07 0 2 12 -10 +18 0.0499999 0.1249999 -1e-07 0.05000010000000001 0.1500001 1e-07 0 2 10 -13 +19 -9.999999999940612e-08 0.1499999 -1e-07 0.05000010000000001 0.1500001 1e-07 1 3 2 13 -14 +20 -1e-07 0.1249999 -1e-07 1e-07 0.1500001 1e-07 0 2 14 -11 +21 0.0999999 0.1249999 -1e-07 0.1000001 0.1500001 1e-07 0 2 12 -15 +22 0.0499999 0.1499999 -1e-07 0.1000001 0.1500001 1e-07 1 3 2 15 -13 +23 -1e-07 0.02499990000000001 -1e-07 1e-07 0.07500010000000001 1e-07 0 2 16 -4 +24 -9.999999999940612e-08 0.07499990000000001 -1e-07 0.03750010000000001 0.07500010000000001 1e-07 0 2 17 -16 +25 0.0374999 0.06249990000000001 -1e-07 0.05000010000000032 0.07500010000000001 1e-07 0 2 17 -18 +26 0.0499999 0.02499990000000001 -1e-07 0.05000010000000001 0.06250010000000002 1e-07 0 2 3 -18 +27 0.04999990000000032 0.06249990000000001 -1e-07 0.0625001 0.07500010000000001 1e-07 0 2 18 -19 +28 0.0624999 0.07499990000000001 -1e-07 0.1000001 0.07500010000000001 1e-07 0 2 20 -19 +29 0.0999999 0.02499990000000001 -1e-07 0.1000001 0.07500010000000001 1e-07 0 2 6 -20 +30 -1e-07 0.07499990000000001 -1e-07 1e-07 0.1250001 1e-07 0 2 11 -16 +31 0.0499999 0.08749990000000001 -1e-07 0.05000010000000001 0.1250001 1e-07 0 2 21 -10 +32 0.0374999 0.07499990000000001 -1e-07 0.05000010000000031 0.08750010000000001 1e-07 0 2 21 -17 +33 0.04999990000000031 0.07499990000000001 -1e-07 0.0625001 0.08750010000000001 1e-07 0 2 19 -21 +34 0.0999999 0.07499990000000001 -1e-07 0.1000001 0.1250001 1e-07 0 2 20 -12 +1 -1.000000000028756e-07 -1.000000000011408e-07 -1.000000000017347e-07 0.05000010000000001 0.02500010000000001 1.000000000017347e-07 1 1 4 1 2 3 4 +5 0.0499999 -1.000000000011408e-07 -1.000000000017347e-07 0.1000001 0.02500010000000001 1.000000000017347e-07 1 1 4 5 6 7 -2 +9 -9.999999999940612e-08 0.02499990000000001 -1e-07 0.05000010000000032 0.07500010000000001 1e-07 1 1 5 -3 26 -25 24 23 +13 0.0499999 0.02499990000000001 -1e-07 0.1000001 0.07500010000000001 1e-07 1 1 5 -7 29 28 -27 -26 +17 -9.999999999940612e-08 0.07499990000000001 -1e-07 0.05000010000000031 0.1250001 1e-07 1 1 5 -24 -32 31 14 30 +21 0.0499999 0.07499990000000001 -1e-07 0.1000001 0.1250001 1e-07 1 1 5 -28 34 17 -31 -33 +25 -9.999999999940612e-08 0.1249999 -1e-07 0.05000010000000001 0.1500001 1e-07 1 1 4 -14 18 19 20 +29 0.0499999 0.1249999 -1e-07 0.1000001 0.1500001 1e-07 1 1 4 -17 21 22 -18 +$EndEntities +$Nodes +52 1360 1 1360 +0 1 0 1 +1 +0 0 0 +0 2 0 1 +2 +0.05000000000000001 0 0 +0 3 0 1 +3 +0.05 0.02500000000000002 0 +0 4 0 1 +4 +0 0.02500000000000001 0 +0 5 0 1 +5 +0.1 0 0 +0 6 0 1 +6 +0.1 0.02500000000000001 0 +0 10 0 1 +7 +0.05 0.125 0 +0 11 0 1 +8 +0 0.125 0 +0 12 0 1 +9 +0.1 0.125 0 +0 13 0 1 +10 +0.05 0.15 0 +0 14 0 1 +11 +0 0.15 0 +0 15 0 1 +12 +0.1 0.15 0 +0 16 0 1 +13 +0 0.07500000000000001 0 +0 17 0 1 +14 +0.03750000000000001 0.07500000000000026 0 +0 18 0 1 +15 +0.05000000000000032 0.06250000000000001 0 +0 19 0 1 +16 +0.0625 0.07500000000000001 0 +0 20 0 1 +17 +0.1 0.07500000000000001 0 +0 21 0 1 +18 +0.05000000000000031 0.08750000000000001 0 +1 1 0 7 +19 +20 +21 +22 +23 +24 +25 +0.01250000000000002 0 0 +0.02500000000000002 0 0 +0.03750000000000002 0 0 +0.006250000000000012 0 0 +0.01875000000000002 0 0 +0.03125000000000002 0 0 +0.04375000000000001 0 0 +1 2 0 7 +26 +27 +28 +29 +30 +31 +32 +0.05 0.006250000000000008 0 +0.05 0.01250000000000002 0 +0.05 0.01875000000000002 0 +0.05 0.003125000000000004 0 +0.05 0.009375000000000014 0 +0.05 0.01562500000000002 0 +0.05 0.02187500000000001 0 +1 3 0 7 +33 +34 +35 +36 +37 +38 +39 +0.03749999999999998 0.02500000000000001 0 +0.02499999999999998 0.02500000000000001 0 +0.01249999999999998 0.02500000000000001 0 +0.04374999999999999 0.02500000000000001 0 +0.03124999999999998 0.02500000000000001 0 +0.01874999999999998 0.02500000000000001 0 +0.006249999999999992 0.02500000000000001 0 +1 4 0 7 +40 +41 +42 +43 +44 +45 +46 +0 0.01875 0 +0 0.01249999999999999 0 +0 0.006249999999999992 0 +0 0.02187500000000001 0 +0 0.01562499999999999 0 +0 0.009374999999999991 0 +0 0.003124999999999996 0 +1 5 0 7 +47 +48 +49 +50 +51 +52 +53 +0.06250000000000003 0 0 +0.07500000000000002 0 0 +0.08750000000000002 0 0 +0.05625000000000002 0 0 +0.06875000000000003 0 0 +0.08125000000000002 0 0 +0.09375000000000001 0 0 +1 6 0 7 +54 +55 +56 +57 +58 +59 +60 +0.1 0.006250000000000008 0 +0.1 0.01250000000000002 0 +0.1 0.01875000000000002 0 +0.1 0.003125000000000004 0 +0.1 0.009375000000000014 0 +0.1 0.01562500000000002 0 +0.1 0.02187500000000001 0 +1 7 0 7 +61 +62 +63 +64 +65 +66 +67 +0.08749999999999998 0.02500000000000001 0 +0.07499999999999998 0.02500000000000001 0 +0.06249999999999999 0.02500000000000001 0 +0.09375 0.02500000000000001 0 +0.08124999999999999 0.02500000000000001 0 +0.06874999999999998 0.02500000000000001 0 +0.05624999999999999 0.02500000000000001 0 +1 14 0 7 +68 +69 +70 +71 +72 +73 +74 +0.03749999999999998 0.125 0 +0.02499999999999998 0.125 0 +0.01249999999999998 0.125 0 +0.04374999999999999 0.125 0 +0.03124999999999998 0.125 0 +0.01874999999999998 0.125 0 +0.006249999999999992 0.125 0 +1 17 0 7 +75 +76 +77 +78 +79 +80 +81 +0.08749999999999998 0.125 0 +0.07499999999999998 0.125 0 +0.06249999999999999 0.125 0 +0.09375 0.125 0 +0.08124999999999999 0.125 0 +0.06874999999999998 0.125 0 +0.05624999999999999 0.125 0 +1 18 0 7 +82 +83 +84 +85 +86 +87 +88 +0.05 0.13125 0 +0.05 0.1375 0 +0.05 0.14375 0 +0.05 0.128125 0 +0.05 0.134375 0 +0.05 0.140625 0 +0.05 0.146875 0 +1 19 0 7 +89 +90 +91 +92 +93 +94 +95 +0.03749999999999998 0.15 0 +0.02499999999999998 0.15 0 +0.01249999999999998 0.15 0 +0.04374999999999999 0.15 0 +0.03124999999999998 0.15 0 +0.01874999999999998 0.15 0 +0.006249999999999992 0.15 0 +1 20 0 7 +96 +97 +98 +99 +100 +101 +102 +0 0.14375 0 +0 0.1375 0 +0 0.13125 0 +0 0.146875 0 +0 0.140625 0 +0 0.134375 0 +0 0.128125 0 +1 21 0 7 +103 +104 +105 +106 +107 +108 +109 +0.1 0.13125 0 +0.1 0.1375 0 +0.1 0.14375 0 +0.1 0.128125 0 +0.1 0.134375 0 +0.1 0.140625 0 +0.1 0.146875 0 +1 22 0 7 +110 +111 +112 +113 +114 +115 +116 +0.08749999999999998 0.15 0 +0.07499999999999998 0.15 0 +0.06249999999999999 0.15 0 +0.09375 0.15 0 +0.08124999999999999 0.15 0 +0.06874999999999998 0.15 0 +0.05624999999999999 0.15 0 +1 23 0 7 +117 +118 +119 +120 +121 +122 +123 +0 0.06249999999999999 0 +0 0.04999999999999999 0 +0 0.03749999999999999 0 +0 0.06875000000000001 0 +0 0.05624999999999999 0 +0 0.04374999999999999 0 +0 0.03125 0 +1 24 0 15 +124 +125 +126 +127 +128 +129 +130 +131 +132 +133 +134 +135 +136 +137 +138 +0.03281250000000001 0.07500000000000001 0 +0.02812500000000002 0.07500000000000001 0 +0.02343750000000002 0.07500000000000001 0 +0.01875000000000002 0.07500000000000001 0 +0.01406250000000002 0.07500000000000001 0 +0.009375000000000008 0.07500000000000001 0 +0.004687500000000004 0.07500000000000001 0 +0.03515625000000001 0.07500000000000001 0 +0.03046875000000002 0.07500000000000001 0 +0.02578125000000002 0.07500000000000001 0 +0.02109375000000002 0.07500000000000001 0 +0.01640625000000002 0.07500000000000001 0 +0.01171875000000001 0.07500000000000001 0 +0.007031250000000003 0.07500000000000001 0 +0.002343750000000006 0.07500000000000001 0 +1 25 0 15 +139 +140 +141 +142 +143 +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 +0.03774018399495963 0.07256137097479837 0 +0.03845150584360894 0.07021645709543632 0 +0.03960662984621825 0.0680553720872549 0 +0.04116116523516825 0.06616116523516807 0 +0.04305537208725512 0.06460662984621809 0 +0.04521645709543659 0.06345150584360884 0 +0.04756137097479866 0.06274018399495958 0 +0.03756019091659754 0.07377478574588049 0 +0.03803824580334741 0.07137144153431918 0 +0.03897598419564561 0.06910754078967496 0 +0.04033736933296587 0.06707008394795434 0 +0.04207008394795456 0.06533736933296569 0 +0.0441075407896752 0.06397598419564549 0 +0.04637144153431946 0.06303824580334733 0 +0.04877478574588078 0.06256019091659752 0 +1 26 0 15 +154 +155 +156 +157 +158 +159 +160 +161 +162 +163 +164 +165 +166 +167 +168 +0.05 0.0296875 0 +0.05 0.03437499999999999 0 +0.05 0.03906249999999999 0 +0.05 0.04375 0 +0.05 0.04843749999999999 0 +0.05 0.05312500000000001 0 +0.05 0.05781250000000001 0 +0.05 0.02734375 0 +0.05 0.03203125 0 +0.05 0.03671874999999999 0 +0.05 0.04140624999999999 0 +0.05 0.04609375 0 +0.05 0.05078125 0 +0.05 0.05546875000000001 0 +0.05 0.06015625000000001 0 +1 27 0 15 +169 +170 +171 +172 +173 +174 +175 +176 +177 +178 +179 +180 +181 +182 +183 +0.05243862902520188 0.06274018399495969 0 +0.05478354290456385 0.06345150584360902 0 +0.0569446279127452 0.0646066298462183 0 +0.05883883476483195 0.06616116523516827 0 +0.06039337015378188 0.06805537208725508 0 +0.06154849415639112 0.07021645709543645 0 +0.06225981600504039 0.07256137097479845 0 +0.0512252142541198 0.06256019091659758 0 +0.05362855846568102 0.06303824580334746 0 +0.05589245921032516 0.06397598419564567 0 +0.0579299160520457 0.06533736933296591 0 +0.0596626306670343 0.06707008394795455 0 +0.06102401580435448 0.06910754078967511 0 +0.06196175419665263 0.07137144153431928 0 +0.06243980908340246 0.07377478574588053 0 +1 28 0 15 +184 +185 +186 +187 +188 +189 +190 +191 +192 +193 +194 +195 +196 +197 +198 +0.09531250000000001 0.07500000000000001 0 +0.09062500000000002 0.07500000000000001 0 +0.08593750000000003 0.07500000000000001 0 +0.08125000000000002 0.07500000000000001 0 +0.07656250000000002 0.07500000000000001 0 +0.07187500000000001 0.07500000000000001 0 +0.06718750000000001 0.07500000000000001 0 +0.09765625000000001 0.07500000000000001 0 +0.09296875000000002 0.07500000000000001 0 +0.08828125000000002 0.07500000000000001 0 +0.08359375000000002 0.07500000000000001 0 +0.07890625000000001 0.07500000000000001 0 +0.07421875000000001 0.07500000000000001 0 +0.06953125 0.07500000000000001 0 +0.06484375000000001 0.07500000000000001 0 +1 29 0 7 +199 +200 +201 +202 +203 +204 +205 +0.1 0.03750000000000003 0 +0.1 0.05000000000000003 0 +0.1 0.06250000000000003 0 +0.1 0.03125000000000002 0 +0.1 0.04375000000000003 0 +0.1 0.05625000000000003 0 +0.1 0.06875000000000002 0 +1 30 0 7 +206 +207 +208 +209 +210 +211 +212 +0 0.1125 0 +0 0.09999999999999999 0 +0 0.08749999999999999 0 +0 0.11875 0 +0 0.10625 0 +0 0.09375 0 +0 0.08125 0 +1 31 0 15 +213 +214 +215 +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +0.05 0.09218750000000001 0 +0.05 0.09687499999999999 0 +0.05 0.1015625 0 +0.05 0.10625 0 +0.05 0.1109375 0 +0.05 0.115625 0 +0.05 0.1203125 0 +0.05 0.08984375 0 +0.05 0.09453125 0 +0.05 0.09921874999999999 0 +0.05 0.10390625 0 +0.05 0.10859375 0 +0.05 0.11328125 0 +0.05 0.11796875 0 +0.05 0.12265625 0 +1 32 0 15 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +0.04756137097479866 0.08725981600504044 0 +0.04521645709543659 0.08654849415639118 0 +0.04305537208725514 0.08539337015378193 0 +0.04116116523516827 0.08383883476483196 0 +0.03960662984621825 0.08194462791274514 0 +0.03845150584360895 0.0797835429045637 0 +0.03774018399495963 0.07743862902520166 0 +0.04877478574588078 0.0874398090834025 0 +0.04637144153431946 0.0869617541966527 0 +0.04410754078967521 0.08602401580435455 0 +0.04207008394795457 0.08466263066703433 0 +0.04033736933296588 0.08292991605204569 0 +0.03897598419564561 0.08089245921032506 0 +0.03803824580334741 0.07862855846568084 0 +0.03756019091659754 0.07622521425411954 0 +1 33 0 15 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 +254 +255 +256 +257 +0.06225981600504039 0.07743862902520157 0 +0.06154849415639112 0.07978354290456356 0 +0.06039337015378189 0.08194462791274493 0 +0.05883883476483197 0.08383883476483174 0 +0.0569446279127452 0.08539337015378172 0 +0.05478354290456385 0.086548494156391 0 +0.05243862902520188 0.08725981600504035 0 +0.06243980908340246 0.0762252142541195 0 +0.06196175419665263 0.07862855846568073 0 +0.06102401580435449 0.0808924592103249 0 +0.05966263066703431 0.08292991605204547 0 +0.05792991605204571 0.08466263066703411 0 +0.05589245921032517 0.08602401580435434 0 +0.05362855846568103 0.08696175419665254 0 +0.0512252142541198 0.08743980908340244 0 +1 34 0 7 +258 +259 +260 +261 +262 +263 +264 +0.1 0.08750000000000002 0 +0.1 0.1 0 +0.1 0.1125 0 +0.1 0.08125000000000002 0 +0.1 0.09375000000000003 0 +0.1 0.10625 0 +0.1 0.11875 0 +2 1 0 49 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291 +292 +293 +294 +295 +296 +297 +298 +299 +300 +301 +302 +303 +304 +305 +306 +307 +308 +309 +310 +311 +312 +313 +0.01250000000000001 0.006249999999999994 0 +0.01250000000000001 0.0125 0 +0.01249999999999999 0.01875 0 +0.02500000000000001 0.006250000000000002 0 +0.025 0.0125 0 +0.02499999999999999 0.01875000000000001 0 +0.03750000000000001 0.006250000000000003 0 +0.0375 0.01250000000000001 0 +0.03749999999999999 0.01875000000000001 0 +0.01250000000000002 0.003124999999999998 0 +0.006250000000000006 0.006249999999999993 0 +0.006250000000000009 0.003124999999999998 0 +0.01250000000000001 0.009374999999999996 0 +0.006250000000000006 0.01249999999999999 0 +0.006250000000000006 0.009374999999999994 0 +0.0125 0.015625 0 +0.006249999999999995 0.01875 0 +0.006250000000000002 0.015625 0 +0.01249999999999999 0.02187500000000001 0 +0.006249999999999995 0.02187500000000001 0 +0.02500000000000002 0.003125000000000001 0 +0.01875000000000001 0.006249999999999999 0 +0.01875000000000002 0.003125000000000001 0 +0.025 0.009375000000000003 0 +0.01875 0.0125 0 +0.01875000000000001 0.009375 0 +0.025 0.01562500000000001 0 +0.01874999999999999 0.01875000000000001 0 +0.01875 0.015625 0 +0.02499999999999999 0.02187500000000001 0 +0.01874999999999999 0.02187500000000001 0 +0.03750000000000002 0.003125000000000001 0 +0.03125000000000001 0.006250000000000002 0 +0.03125000000000001 0.003124999999999999 0 +0.03750000000000001 0.009375000000000007 0 +0.03125 0.01250000000000001 0 +0.03125000000000001 0.009375000000000005 0 +0.03749999999999999 0.01562500000000001 0 +0.03124999999999999 0.01875000000000001 0 +0.03125 0.01562500000000001 0 +0.03749999999999998 0.02187500000000001 0 +0.03124999999999999 0.02187500000000001 0 +0.04375000000000001 0.006250000000000006 0 +0.04375000000000001 0.003125000000000003 0 +0.04375 0.01250000000000001 0 +0.04375 0.00937500000000001 0 +0.04375 0.01875000000000001 0 +0.04375 0.01562500000000001 0 +0.04375 0.02187500000000001 0 +2 5 0 49 +314 +315 +316 +317 +318 +319 +320 +321 +322 +323 +324 +325 +326 +327 +328 +329 +330 +331 +332 +333 +334 +335 +336 +337 +338 +339 +340 +341 +342 +343 +344 +345 +346 +347 +348 +349 +350 +351 +352 +353 +354 +355 +356 +357 +358 +359 +360 +361 +362 +0.06250000000000001 0.006250000000000006 0 +0.06250000000000001 0.01250000000000002 0 +0.0625 0.01875000000000002 0 +0.07500000000000001 0.006250000000000007 0 +0.075 0.01250000000000002 0 +0.075 0.01875000000000002 0 +0.08750000000000001 0.006250000000000008 0 +0.08749999999999999 0.01250000000000002 0 +0.08749999999999999 0.01875000000000002 0 +0.06250000000000003 0.003125000000000003 0 +0.05625000000000001 0.006250000000000007 0 +0.05625000000000001 0.003125000000000005 0 +0.06250000000000001 0.009375000000000012 0 +0.05625000000000001 0.01250000000000002 0 +0.05625000000000001 0.009375000000000014 0 +0.0625 0.01562500000000002 0 +0.05625 0.01875000000000002 0 +0.05625000000000001 0.01562500000000002 0 +0.06249999999999999 0.02187500000000001 0 +0.05624999999999999 0.02187500000000001 0 +0.07500000000000001 0.003125000000000003 0 +0.06875000000000002 0.006250000000000007 0 +0.06875000000000002 0.003125000000000003 0 +0.07500000000000001 0.009375000000000014 0 +0.06875000000000001 0.01250000000000002 0 +0.06875000000000001 0.009375000000000012 0 +0.075 0.01562500000000002 0 +0.06874999999999999 0.01875000000000002 0 +0.06875000000000001 0.01562500000000002 0 +0.075 0.02187500000000001 0 +0.06874999999999999 0.02187500000000001 0 +0.08750000000000002 0.003125000000000005 0 +0.08125000000000002 0.006250000000000007 0 +0.08125000000000002 0.003125000000000005 0 +0.08750000000000001 0.009375000000000015 0 +0.08125 0.01250000000000002 0 +0.08125 0.009375000000000014 0 +0.08749999999999999 0.01562500000000002 0 +0.08124999999999999 0.01875000000000002 0 +0.08125 0.01562500000000002 0 +0.08749999999999998 0.02187500000000001 0 +0.08124999999999999 0.02187500000000001 0 +0.09375 0.006250000000000008 0 +0.09375000000000001 0.003125000000000006 0 +0.09375 0.01250000000000002 0 +0.09375 0.009375000000000014 0 +0.09375 0.01875000000000002 0 +0.09375 0.01562500000000002 0 +0.09375 0.02187500000000001 0 +2 9 0 225 +363 +364 +365 +366 +367 +368 +369 +370 +371 +372 +373 +374 +375 +376 +377 +378 +379 +380 +381 +382 +383 +384 +385 +386 +387 +388 +389 +390 +391 +392 +393 +394 +395 +396 +397 +398 +399 +400 +401 +402 +403 +404 +405 +406 +407 +408 +409 +410 +411 +412 +413 +414 +415 +416 +417 +418 +419 +420 +421 +422 +423 +424 +425 +426 +427 +428 +429 +430 +431 +432 +433 +434 +435 +436 +437 +438 +439 +440 +441 +442 +443 +444 +445 +446 +447 +448 +449 +450 +451 +452 +453 +454 +455 +456 +457 +458 +459 +460 +461 +462 +463 +464 +465 +466 +467 +468 +469 +470 +471 +472 +473 +474 +475 +476 +477 +478 +479 +480 +481 +482 +483 +484 +485 +486 +487 +488 +489 +490 +491 +492 +493 +494 +495 +496 +497 +498 +499 +500 +501 +502 +503 +504 +505 +506 +507 +508 +509 +510 +511 +512 +513 +514 +515 +516 +517 +518 +519 +520 +521 +522 +523 +524 +525 +526 +527 +528 +529 +530 +531 +532 +533 +534 +535 +536 +537 +538 +539 +540 +541 +542 +543 +544 +545 +546 +547 +548 +549 +550 +551 +552 +553 +554 +555 +556 +557 +558 +559 +560 +561 +562 +563 +564 +565 +566 +567 +568 +569 +570 +571 +572 +573 +574 +575 +576 +577 +578 +579 +580 +581 +582 +583 +584 +585 +586 +587 +0.03302266099558965 0.07130369960294858 0 +0.02830513799621971 0.07004602823109878 0 +0.02358761499684976 0.06878835685924897 0 +0.01887009199747981 0.06753068548739918 0 +0.01415256899810986 0.06627301411554937 0 +0.009435045998739899 0.06501534274369958 0 +0.00471752299936995 0.06375767137184979 0 +0.03364506761315777 0.06768939995850679 0 +0.02883862938270667 0.06516234282157723 0 +0.02403219115225556 0.06263528568464768 0 +0.01922575292180445 0.06010822854771816 0 +0.01441931469135334 0.05758117141078861 0 +0.009612876460902219 0.05505411427385907 0 +0.004806438230451113 0.05252705713692953 0 +0.03465580111544087 0.06423595057634802 0 +0.02970497238466361 0.06041652906544117 0 +0.02475414365388634 0.05659710755453431 0 +0.01980331492310908 0.05277768604362744 0 +0.01485248619233181 0.04895826453272057 0 +0.00990165746155453 0.04513884302181371 0 +0.004950828730777269 0.04131942151090685 0 +0.03601601958077209 0.06101601958077206 0 +0.03087087392637609 0.05587087392637606 0 +0.02572572827198007 0.05072572827198004 0 +0.02058058261758406 0.04558058261758403 0 +0.01543543696318805 0.04043543696318802 0 +0.01029029130879202 0.03529029130879201 0 +0.005145145654396013 0.03014514565439601 0 +0.03923595057634807 0.05965580111544083 0 +0.0354165290654412 0.05470497238466357 0 +0.03159710755453433 0.04975414365388631 0 +0.02777768604362746 0.04480331492310904 0 +0.02395826453272059 0.03985248619233178 0 +0.02013884302181372 0.03490165746155451 0 +0.01631942151090685 0.02995082873077726 0 +0.0426893999585068 0.05864506761315774 0 +0.04016234282157726 0.05383862938270663 0 +0.03763528568464772 0.04903219115225552 0 +0.03510822854771817 0.04422575292180441 0 +0.03258117141078863 0.0394193146913533 0 +0.03005411427385907 0.0346128764609022 0 +0.02752705713692953 0.0298064382304511 0 +0.04630369960294858 0.05802266099558963 0 +0.04504602823109878 0.05330513799621969 0 +0.04378835685924899 0.04858761499684973 0 +0.04253068548739919 0.04387009199747978 0 +0.04127301411554938 0.03915256899810984 0 +0.04001534274369958 0.03443504599873988 0 +0.03875767137184978 0.02971752299936995 0 +0.03291758049779483 0.07315184980147429 0 +0.03538142249527464 0.07193253528887347 0 +0.03523888570719619 0.07346331777367739 0 +0.02821506899810986 0.0725230141155494 0 +0.03066389949590468 0.07067486391702368 0 +0.03056632474795235 0.07283743195851185 0 +0.02351255749842489 0.07189417842962449 0 +0.02594637649653474 0.06941719254517388 0 +0.02586381324826738 0.07220859627258694 0 +0.01881004599873991 0.0712653427436996 0 +0.02122885349716479 0.06815952117332408 0 +0.0211613017485824 0.07157976058666204 0 +0.01410753449905494 0.07063650705777469 0 +0.01651133049779484 0.06690184980147428 0 +0.01645879024889743 0.07095092490073715 0 +0.009405022999369954 0.07000767137184979 0 +0.01179380749842488 0.06564417842962447 0 +0.01175627874921245 0.07032208921481226 0 +0.004702511499684977 0.0693788356859249 0 +0.007076284499054925 0.06438650705777468 0 +0.007053767249527464 0.06969325352888735 0 +0.002358761499684975 0.06312883568592489 0 +0.00235125574984249 0.06906441784296245 0 +0.0333338643043737 0.06949654978072767 0 +0.03604828672838336 0.06895292852697155 0 +0.03568605505386056 0.07043399565752342 0 +0.02857188368946319 0.06760418552633801 0 +0.03124184849793222 0.06642587139004201 0 +0.03095287399691845 0.06855036765353284 0 +0.02380990307455266 0.06571182127194833 0 +0.02643541026748111 0.06389881425311246 0 +0.02619089338200792 0.06665800339914317 0 +0.01904792245964213 0.06381945701755867 0 +0.02162897203703 0.06137175711618292 0 +0.02142891276709739 0.0647656391447535 0 +0.0142859418447316 0.06192709276316899 0 +0.01682253380657889 0.05884469997925339 0 +0.01666693215218686 0.06287327489036383 0 +0.009523961229821059 0.06003472850877933 0 +0.01201609557612778 0.05631764284232384 0 +0.01190495153727633 0.06098091063597416 0 +0.004761980614910531 0.05814236425438966 0 +0.007209657345676666 0.0537905857053943 0 +0.007142970922365797 0.05908854638158449 0 +0.002403219115225556 0.05126352856846476 0 +0.002380990307455266 0.05719618212719482 0 +0.03415043436429932 0.06596267526742741 0 +0.03713121548082956 0.06614566133180147 0 +0.03656320927997246 0.06753510802855117 0 +0.02927180088368514 0.06278943594350921 0 +0.03218038675005224 0.0623262398208946 0 +0.03171111762399223 0.0643760556054683 0 +0.02439316740307095 0.059616196619591 0 +0.02722955801927497 0.05850681830998774 0 +0.02683248414337804 0.0612028162815501 0 +0.01951453392245676 0.05644295729567279 0 +0.02227872928849771 0.05468739679908087 0 +0.02195385066276385 0.0580295769576319 0 +0.01463590044184257 0.05326971797175459 0 +0.01732790055772044 0.05086797528817401 0 +0.01707521718214967 0.0548563376337137 0 +0.009757266961228375 0.05009647864783639 0 +0.01237707182694317 0.04704855377726714 0 +0.01219658370153547 0.05168309830979549 0 +0.004878633480614191 0.04692323932391819 0 +0.007426243096165901 0.04322913226636028 0 +0.007317950220921285 0.04850985898587729 0 +0.002475414365388635 0.03940971075545342 0 +0.002439316740307094 0.04533661966195909 0 +0.03533591034810648 0.06262598507856004 0 +0.03858859240797018 0.06358859240797007 0 +0.03783663984053617 0.0648480345132572 0 +0.03028792315551985 0.05814370149590861 0 +0.03344344675357409 0.05844344675357406 0 +0.03281191675181316 0.06038484328723433 0 +0.02523993596293321 0.05366141791325717 0 +0.02829830109917808 0.05329830109917805 0 +0.02776392955922653 0.0559025597045829 0 +0.02019194877034657 0.04917913433060574 0 +0.02315315544478206 0.04815315544478204 0 +0.02271594236663989 0.05142027612193145 0 +0.01514396157775993 0.04469685074795429 0 +0.01800800979038605 0.04300800979038603 0 +0.01766795517405325 0.04693799253928001 0 +0.01009597438517328 0.04021456716530286 0 +0.01286286413599004 0.03786286413599001 0 +0.0126199679814666 0.04245570895662858 0 +0.005047987192586641 0.03573228358265143 0 +0.00771771848159402 0.03271771848159401 0 +0.00757198078887996 0.03797342537397715 0 +0.002572572827198007 0.02757257282719801 0 +0.002523993596293319 0.03349114179132572 0 +0.03762598507856008 0.06033591034810645 0 +0.0411456613318016 0.06213121548082946 0 +0.03984803451325732 0.06283663984053607 0 +0.03314370149590865 0.05528792315551982 0 +0.03732623982089463 0.0571803867500522 0 +0.03538484328723436 0.05781191675181313 0 +0.0286614179132572 0.05023993596293318 0 +0.03350681830998777 0.05222955801927494 0 +0.03090255970458292 0.05276392955922649 0 +0.02417913433060576 0.04519194877034654 0 +0.02968739679908089 0.04727872928849768 0 +0.02642027612193148 0.04771594236663985 0 +0.01969685074795432 0.0401439615777599 0 +0.02586797528817402 0.04232790055772041 0 +0.02193799253928004 0.04266795517405322 0 +0.01521456716530287 0.03509597438517326 0 +0.02204855377726716 0.03737707182694315 0 +0.0174557089566286 0.03761996798146658 0 +0.01073228358265143 0.03004798719258664 0 +0.01822913226636029 0.03242624309616589 0 +0.01297342537397715 0.03257198078887995 0 +0.01440971075545342 0.02747541436538864 0 +0.00849114179132571 0.02752399359629332 0 +0.04096267526742744 0.05915043436429929 0 +0.0439529285269717 0.06104828672838329 0 +0.04253510802855132 0.06156320927997239 0 +0.03778943594350923 0.0542718008836851 0 +0.04142587139004204 0.05624184849793219 0 +0.03937605560546834 0.0567111176239922 0 +0.03461619661959103 0.04939316740307091 0 +0.03889881425311249 0.05143541026748107 0 +0.03620281628155013 0.05183248414337801 0 +0.03144295729567281 0.04451453392245673 0 +0.03637175711618294 0.04662897203702997 0 +0.03302957695763192 0.04695385066276382 0 +0.02826971797175461 0.03963590044184254 0 +0.0338446999792534 0.04182253380657886 0 +0.02985633763371371 0.04207521718214964 0 +0.0250964786478364 0.03475726696122836 0 +0.03131764284232385 0.03701609557612776 0 +0.0266830983097955 0.03719658370153545 0 +0.02192323932391819 0.02987863348061418 0 +0.0287905857053943 0.03220965734567665 0 +0.02350985898587729 0.03231795022092127 0 +0.02626352856846476 0.02740321911522556 0 +0.02033661966195908 0.0274393167403071 0 +0.04449654978072769 0.05833386430437368 0 +0.04693253528887362 0.0603814224952746 0 +0.04543399565752358 0.06068605505386051 0 +0.04260418552633802 0.05357188368946315 0 +0.04567486391702368 0.05566389949590465 0 +0.04355036765353286 0.05595287399691842 0 +0.04071182127194835 0.04880990307455262 0 +0.04441719254517389 0.0509463764965347 0 +0.04165800339914319 0.05119089338200789 0 +0.03881945701755868 0.0440479224596421 0 +0.04315952117332408 0.04622885349716475 0 +0.03976563914475351 0.04642891276709736 0 +0.036927092763169 0.03928594184473157 0 +0.04190184980147428 0.0415113304977948 0 +0.03787327489036384 0.04166693215218684 0 +0.03503472850877933 0.03452396122982104 0 +0.04064417842962448 0.03679380749842485 0 +0.03598091063597417 0.03690495153727631 0 +0.03314236425438966 0.02976198061491053 0 +0.03938650705777468 0.03207628449905492 0 +0.03408854638158449 0.03214297092236579 0 +0.03812883568592488 0.02735876149968498 0 +0.03219618212719481 0.02738099030745527 0 +0.04815184980147429 0.05791758049779482 0 +0.04846331777367746 0.06023888570719617 0 +0.04752301411554939 0.05321506899810984 0 +0.04783743195851184 0.05556632474795233 0 +0.0468941784296245 0.04851255749842486 0 +0.04720859627258694 0.05086381324826735 0 +0.0462653427436996 0.04381004599873989 0 +0.04657976058666205 0.04616130174858238 0 +0.04563650705777469 0.03910753449905491 0 +0.04595092490073714 0.0414587902488974 0 +0.04500767137184979 0.03440502299936993 0 +0.04532208921481224 0.03675627874921242 0 +0.04437883568592489 0.02970251149968497 0 +0.04469325352888734 0.03205376724952745 0 +0.04406441784296244 0.02735125574984249 0 +2 13 0 225 +588 +589 +590 +591 +592 +593 +594 +595 +596 +597 +598 +599 +600 +601 +602 +603 +604 +605 +606 +607 +608 +609 +610 +611 +612 +613 +614 +615 +616 +617 +618 +619 +620 +621 +622 +623 +624 +625 +626 +627 +628 +629 +630 +631 +632 +633 +634 +635 +636 +637 +638 +639 +640 +641 +642 +643 +644 +645 +646 +647 +648 +649 +650 +651 +652 +653 +654 +655 +656 +657 +658 +659 +660 +661 +662 +663 +664 +665 +666 +667 +668 +669 +670 +671 +672 +673 +674 +675 +676 +677 +678 +679 +680 +681 +682 +683 +684 +685 +686 +687 +688 +689 +690 +691 +692 +693 +694 +695 +696 +697 +698 +699 +700 +701 +702 +703 +704 +705 +706 +707 +708 +709 +710 +711 +712 +713 +714 +715 +716 +717 +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 +768 +769 +770 +771 +772 +773 +774 +775 +776 +777 +778 +779 +780 +781 +782 +783 +784 +785 +786 +787 +788 +789 +790 +791 +792 +793 +794 +795 +796 +797 +798 +799 +800 +801 +802 +803 +804 +805 +806 +807 +808 +809 +810 +811 +812 +0.05369630039705165 0.05802266099558973 0 +0.05495397176890141 0.05330513799621976 0 +0.05621164314075117 0.04858761499684979 0 +0.05746931451260093 0.04387009199747983 0 +0.0587269858844507 0.03915256899810987 0 +0.05998465725630046 0.03443504599873991 0 +0.06124232862815022 0.02971752299936996 0 +0.05731060004149335 0.05864506761315789 0 +0.05983765717842288 0.05383862938270676 0 +0.06236471431535241 0.04903219115225563 0 +0.06489177145228192 0.0442257529218045 0 +0.06741882858921144 0.03941931469135337 0 +0.06994588572614097 0.03461287646090224 0 +0.07247294286307047 0.02980643823045112 0 +0.06076404942365204 0.05965580111544102 0 +0.06458347093455889 0.05470497238466372 0 +0.06840289244546575 0.04975414365388643 0 +0.0722223139563726 0.04480331492310914 0 +0.07604173546727945 0.03985248619233185 0 +0.0798611569781863 0.03490165746155456 0 +0.08368057848909313 0.02995082873077728 0 +0.06398398041922797 0.06101601958077223 0 +0.06912912607362398 0.0558708739263762 0 +0.07427427172801999 0.05072572827198016 0 +0.07941941738241599 0.04558058261758412 0 +0.08456456303681201 0.04043543696318808 0 +0.08970970869120802 0.03529029130879205 0 +0.09485485434560401 0.03014514565439604 0 +0.06534419888455915 0.06423595057634819 0 +0.07029502761533642 0.06041652906544132 0 +0.07524585634611369 0.05659710755453443 0 +0.08019668507689096 0.05277768604362754 0 +0.08514751380766823 0.04895826453272066 0 +0.09009834253844549 0.04513884302181378 0 +0.09504917126922274 0.04131942151090691 0 +0.06635493238684223 0.0676893999585069 0 +0.07116137061729334 0.06516234282157735 0 +0.07596780884774447 0.06263528568464778 0 +0.08077424707819557 0.06010822854771823 0 +0.08558068530864668 0.05758117141078868 0 +0.09038712353909781 0.05505411427385912 0 +0.09519356176954891 0.05252705713692958 0 +0.06697733900441034 0.07130369960294863 0 +0.07169486200378029 0.07004602823109884 0 +0.07641238500315026 0.06878835685924903 0 +0.08112990800252021 0.06753068548739924 0 +0.08584743100189017 0.06627301411554942 0 +0.09056495400126012 0.06501534274369963 0 +0.09528247700063006 0.06375767137184982 0 +0.05184815019852583 0.05791758049779487 0 +0.05306746471112676 0.06038142249527471 0 +0.05153668222632281 0.06023888570719622 0 +0.0524769858844507 0.05321506899810988 0 +0.05432513608297652 0.05566389949590474 0 +0.05216256804148826 0.05556632474795237 0 +0.05310582157037559 0.0485125574984249 0 +0.05558280745482629 0.05094637649653478 0 +0.05279140372741314 0.05086381324826739 0 +0.05373465725630047 0.04381004599873992 0 +0.05684047882667605 0.04622885349716481 0 +0.05342023941333802 0.04616130174858241 0 +0.05436349294222535 0.03910753449905494 0 +0.05809815019852582 0.04151133049779485 0 +0.05404907509926291 0.04145879024889743 0 +0.05499232862815023 0.03440502299936995 0 +0.05935582157037558 0.03679380749842489 0 +0.05467791078518779 0.03675627874921244 0 +0.05562116431407511 0.02970251149968498 0 +0.06061349294222534 0.03207628449905493 0 +0.05530674647111267 0.03205376724952747 0 +0.06187116431407511 0.02735876149968498 0 +0.05593558215703755 0.02735125574984249 0 +0.05550345021927251 0.0583338643043738 0 +0.0560470714730286 0.06104828672838346 0 +0.05456600434247676 0.06068605505386064 0 +0.05739581447366214 0.05357188368946326 0 +0.05857412860995812 0.05624184849793232 0 +0.05644963234646733 0.05595287399691853 0 +0.05928817872805179 0.04880990307455271 0 +0.06110118574688764 0.05143541026748119 0 +0.05834199660085697 0.05119089338200798 0 +0.06118054298244142 0.04404792245964217 0 +0.06362824288381716 0.04662897203703006 0 +0.06023436085524661 0.04642891276709744 0 +0.06307290723683107 0.03928594184473162 0 +0.06615530002074668 0.04182253380657894 0 +0.06212672510963625 0.04166693215218689 0 +0.06496527149122071 0.03452396122982107 0 +0.0686823571576762 0.0370160955761278 0 +0.06401908936402589 0.03690495153727635 0 +0.06685763574561035 0.02976198061491054 0 +0.07120941429460571 0.03220965734567668 0 +0.06591145361841554 0.03214297092236581 0 +0.07373647143153522 0.02740321911522556 0 +0.06780381787280516 0.02738099030745527 0 +0.0590373247325727 0.05915043436429945 0 +0.05885433866819861 0.06213121548082966 0 +0.05746489197144893 0.06156320927997257 0 +0.06221056405649088 0.05427180088368525 0 +0.06267376017910546 0.05718038675005237 0 +0.0606239443945318 0.05671111762399235 0 +0.06538380338040908 0.04939316740307103 0 +0.06649318169001232 0.05222955801927508 0 +0.06379718371844999 0.05183248414337813 0 +0.06855704270432726 0.04451453392245682 0 +0.07031260320091917 0.04727872928849779 0 +0.06697042304236817 0.04695385066276393 0 +0.07173028202824544 0.03963590044184261 0 +0.07413202471182602 0.0423279005577205 0 +0.07014366236628636 0.04207521718214972 0 +0.07490352135216363 0.0347572669612284 0 +0.07795144622273288 0.03737707182694321 0 +0.07331690169020454 0.0371965837015355 0 +0.07807676067608181 0.0298786334806142 0 +0.08177086773363972 0.03242624309616592 0 +0.07649014101412271 0.03231795022092131 0 +0.08559028924454656 0.02747541436538865 0 +0.07966338033804089 0.02743931674030711 0 +0.06237401492144 0.06033591034810663 0 +0.06141140759202996 0.06358859240797025 0 +0.06015196548674285 0.06283663984053627 0 +0.06685629850409143 0.05528792315551996 0 +0.06655655324642597 0.05844344675357421 0 +0.06461515671276571 0.0578119167518133 0 +0.07133858208674287 0.0502399359629333 0 +0.07170169890082198 0.05329830109917818 0 +0.06909744029541716 0.05276392955922663 0 +0.07582086566939431 0.04519194877034663 0 +0.07684684455521799 0.04815315544478214 0 +0.07357972387806859 0.04771594236663997 0 +0.08030314925204574 0.04014396157775997 0 +0.08199199020961401 0.0430080097903861 0 +0.07806200746072001 0.0426679551740533 0 +0.08478543283469717 0.0350959743851733 0 +0.08713713586401001 0.03786286413599007 0 +0.08254429104337145 0.03761996798146663 0 +0.08926771641734857 0.03004798719258666 0 +0.09228228151840601 0.03271771848159404 0 +0.08702657462602287 0.03257198078887998 0 +0.09742742717280201 0.02757257282719802 0 +0.09150885820867428 0.02752399359629333 0 +0.06466408965189356 0.06262598507856021 0 +0.06286878451917051 0.06614566133180164 0 +0.06216336015946393 0.06484803451325738 0 +0.06971207684448019 0.05814370149590876 0 +0.06781961324994779 0.06232623982089475 0 +0.06718808324818688 0.06038484328723449 0 +0.07476006403706684 0.05366141791325729 0 +0.07277044198072505 0.05850681830998787 0 +0.07223607044077351 0.05590255970458302 0 +0.07980805122965348 0.04917913433060583 0 +0.07772127071150232 0.05468739679908098 0 +0.07728405763336016 0.05142027612193156 0 +0.08485603842224011 0.04469685074795438 0 +0.0826720994422796 0.0508679752881741 0 +0.0823320448259468 0.0469379925392801 0 +0.08990402561482676 0.04021456716530292 0 +0.08762292817305686 0.04704855377726722 0 +0.08738003201853344 0.04245570895662865 0 +0.09495201280741337 0.03573228358265147 0 +0.09257375690383413 0.04322913226636034 0 +0.09242801921112007 0.03797342537397719 0 +0.09752458563461137 0.03940971075545347 0 +0.0974760064037067 0.03349114179132574 0 +0.06584956563570069 0.06596267526742755 0 +0.06395171327161667 0.06895292852697167 0 +0.06343679072002759 0.06753510802855134 0 +0.07072819911631488 0.06278943594350933 0 +0.06875815150206778 0.06642587139004211 0 +0.06828888237600779 0.06437605560546844 0 +0.07560683259692907 0.0596161966195911 0 +0.07356458973251891 0.06389881425311256 0 +0.07316751585662198 0.06120281628155021 0 +0.08048546607754327 0.05644295729567288 0 +0.07837102796297002 0.06137175711618301 0 +0.07804614933723618 0.05802957695763199 0 +0.08536409955815746 0.05326971797175467 0 +0.08317746619342113 0.05884469997925346 0 +0.08292478281785036 0.05485633763371378 0 +0.09024273303877164 0.05009647864783645 0 +0.08798390442387224 0.05631764284232391 0 +0.08780341629846455 0.05168309830979556 0 +0.09512136651938582 0.04692323932391824 0 +0.09279034265432336 0.05379058570539436 0 +0.09268204977907873 0.04850985898587735 0 +0.09759678088477446 0.05126352856846481 0 +0.09756068325969292 0.04533661966195913 0 +0.06666613569562629 0.06949654978072776 0 +0.06461857750472537 0.07193253528887354 0 +0.06431394494613946 0.07043399565752352 0 +0.07142811631053682 0.0676041855263381 0 +0.06933610050409532 0.07067486391702374 0 +0.06904712600308155 0.06855036765353292 0 +0.07619009692544736 0.06571182127194841 0 +0.07405362350346528 0.06941719254517395 0 +0.07380910661799209 0.06665800339914325 0 +0.08095207754035789 0.06381945701755873 0 +0.07877114650283523 0.06815952117332413 0 +0.07857108723290263 0.06476563914475357 0 +0.08571405815526842 0.06192709276316906 0 +0.08348866950220518 0.06690184980147433 0 +0.08333306784781316 0.0628732748903639 0 +0.09047603877017896 0.06003472850877938 0 +0.08820619250157515 0.06564417842962453 0 +0.0880950484627237 0.06098091063597422 0 +0.09523801938508948 0.05814236425438971 0 +0.09292371550094508 0.06438650705777473 0 +0.09285702907763423 0.05908854638158454 0 +0.09764123850031503 0.06312883568592492 0 +0.09761900969254475 0.05719618212719486 0 +0.06708241950220517 0.07315184980147432 0 +0.06476111429280382 0.07346331777367743 0 +0.07178493100189015 0.07252301411554943 0 +0.06943367525204766 0.07283743195851188 0 +0.07648744250157515 0.07189417842962452 0 +0.07413618675173264 0.07220859627258697 0 +0.08118995400126011 0.07126534274369963 0 +0.07883869825141762 0.07157976058666207 0 +0.08589246550094509 0.07063650705777472 0 +0.0835412097511026 0.07095092490073718 0 +0.09059497700063007 0.07000767137184982 0 +0.08824372125078758 0.07032208921481227 0 +0.09529748850031504 0.06937883568592491 0 +0.09294623275047255 0.06969325352888736 0 +0.09764874425015752 0.06906441784296247 0 +2 17 0 225 +813 +814 +815 +816 +817 +818 +819 +820 +821 +822 +823 +824 +825 +826 +827 +828 +829 +830 +831 +832 +833 +834 +835 +836 +837 +838 +839 +840 +841 +842 +843 +844 +845 +846 +847 +848 +849 +850 +851 +852 +853 +854 +855 +856 +857 +858 +859 +860 +861 +862 +863 +864 +865 +866 +867 +868 +869 +870 +871 +872 +873 +874 +875 +876 +877 +878 +879 +880 +881 +882 +883 +884 +885 +886 +887 +888 +889 +890 +891 +892 +893 +894 +895 +896 +897 +898 +899 +900 +901 +902 +903 +904 +905 +906 +907 +908 +909 +910 +911 +912 +913 +914 +915 +916 +917 +918 +919 +920 +921 +922 +923 +924 +925 +926 +927 +928 +929 +930 +931 +932 +933 +934 +935 +936 +937 +938 +939 +940 +941 +942 +943 +944 +945 +946 +947 +948 +949 +950 +951 +952 +953 +954 +955 +956 +957 +958 +959 +960 +961 +962 +963 +964 +965 +966 +967 +968 +969 +970 +971 +972 +973 +974 +975 +976 +977 +978 +979 +980 +981 +982 +983 +984 +985 +986 +987 +988 +989 +990 +991 +992 +993 +994 +995 +996 +997 +998 +999 +1000 +1001 +1002 +1003 +1004 +1005 +1006 +1007 +1008 +1009 +1010 +1011 +1012 +1013 +1014 +1015 +1016 +1017 +1018 +1019 +1020 +1021 +1022 +1023 +1024 +1025 +1026 +1027 +1028 +1029 +1030 +1031 +1032 +1033 +1034 +1035 +1036 +1037 +0.03302266099558968 0.07869630039705144 0 +0.02830513799621974 0.07995397176890123 0 +0.02358761499684979 0.08121164314075102 0 +0.01887009199747983 0.08246931451260081 0 +0.01415256899810988 0.08372698588445061 0 +0.009435045998739917 0.0849846572563004 0 +0.004717522999369957 0.08624232862815021 0 +0.03364506761315784 0.08231060004149324 0 +0.02883862938270674 0.08483765717842276 0 +0.02403219115225561 0.0873647143153523 0 +0.01922575292180449 0.08989177145228183 0 +0.01441931469135338 0.09241882858921138 0 +0.009612876460902248 0.09494588572614092 0 +0.004806438230451123 0.09747294286307046 0 +0.03465580111544098 0.08576404942365198 0 +0.02970497238466371 0.08958347093455883 0 +0.02475414365388643 0.09340289244546568 0 +0.01980331492310915 0.09722231395637254 0 +0.01485248619233187 0.1010417354672794 0 +0.009901657461554575 0.1048611569781863 0 +0.004950828730777287 0.1086805784890931 0 +0.03601601958077225 0.08898398041922796 0 +0.03087087392637623 0.09412912607362395 0 +0.02572572827198019 0.09927427172801996 0 +0.02058058261758416 0.104419417382416 0 +0.01543543696318813 0.109564563036812 0 +0.01029029130879208 0.114709708691208 0 +0.005145145654396041 0.119854854345604 0 +0.03923595057634824 0.09034419888455919 0 +0.03541652906544136 0.09529502761533643 0 +0.03159710755453447 0.1002458563461137 0 +0.02777768604362758 0.105196685076891 0 +0.02395826453272068 0.1101475138076682 0 +0.02013884302181378 0.1150983425384455 0 +0.01631942151090688 0.1200491712692227 0 +0.04268939995850701 0.09135493238684228 0 +0.04016234282157745 0.09616137061729337 0 +0.03763528568464788 0.1009678088477445 0 +0.03510822854771829 0.1057742470781956 0 +0.03258117141078872 0.1105806853086467 0 +0.03005411427385914 0.1153871235390978 0 +0.02752705713692957 0.1201935617695489 0 +0.04630369960294882 0.09197733900441038 0 +0.045046028231099 0.09669486200378032 0 +0.04378835685924916 0.1014123850031503 0 +0.04253068548739933 0.1061299080025202 0 +0.0412730141155495 0.1108474310018902 0 +0.04001534274369965 0.1155649540012601 0 +0.03875767137184982 0.1202824770006301 0 +0.03538142249527466 0.07806746471112655 0 +0.03291758049779485 0.07684815019852573 0 +0.0352388857071962 0.07653668222632264 0 +0.03066389949590471 0.07932513608297634 0 +0.02821506899810988 0.07747698588445062 0 +0.03056632474795237 0.07716256804148817 0 +0.02594637649653476 0.08058280745482613 0 +0.02351255749842491 0.07810582157037552 0 +0.02586381324826739 0.07779140372741307 0 +0.02122885349716481 0.08184047882667592 0 +0.01881004599873993 0.07873465725630041 0 +0.02116130174858242 0.07842023941333798 0 +0.01651133049779486 0.08309815019852571 0 +0.01410753449905495 0.07936349294222531 0 +0.01645879024889743 0.07904907509926287 0 +0.0117938074984249 0.08435582157037551 0 +0.009405022999369963 0.0799923286281502 0 +0.01175627874921245 0.07967791078518777 0 +0.007076284499054938 0.0856134929422253 0 +0.00470251149968498 0.08062116431407511 0 +0.007053767249527471 0.08030674647111266 0 +0.002358761499684978 0.0868711643140751 0 +0.00235125574984249 0.08093558215703756 0 +0.03604828672838339 0.08104707147302848 0 +0.03333386430437376 0.08050345021927234 0 +0.03568605505386059 0.0795660043424766 0 +0.03124184849793229 0.083574128609958 0 +0.02857188368946324 0.082395814473662 0 +0.0309528739969185 0.08144963234646717 0 +0.02643541026748118 0.08610118574688753 0 +0.0238099030745527 0.08428817872805167 0 +0.02619089338200797 0.08334199660085684 0 +0.02162897203703005 0.08862824288381707 0 +0.01904792245964216 0.08618054298244132 0 +0.02142891276709743 0.08523436085524649 0 +0.01682253380657894 0.09115530002074661 0 +0.01428594184473163 0.08807290723683099 0 +0.0166669321521869 0.08712672510963616 0 +0.01201609557612781 0.09368235715767614 0 +0.009523961229821083 0.08996527149122066 0 +0.01190495153727636 0.08901908936402583 0 +0.007209657345676686 0.09620941429460568 0 +0.004761980614910538 0.09185763574561033 0 +0.007142970922365814 0.09091145361841549 0 +0.002403219115225563 0.09873647143153522 0 +0.002380990307455269 0.09280381787280516 0 +0.03713121548082962 0.08385433866819855 0 +0.03415043436429941 0.08403732473257261 0 +0.03656320927997251 0.08246489197144884 0 +0.03218038675005234 0.0876737601791054 0 +0.02927180088368522 0.0872105640564908 0 +0.03171111762399231 0.08562394439453171 0 +0.02722955801927507 0.09149318169001226 0 +0.02439316740307102 0.09038380338040899 0 +0.02683248414337812 0.0887971837184499 0 +0.02227872928849779 0.09531260320091911 0 +0.01951453392245682 0.09355704270432719 0 +0.02195385066276392 0.09197042304236809 0 +0.01732790055772051 0.09913202471182597 0 +0.01463590044184262 0.09673028202824539 0 +0.01707521718214972 0.09514366236628628 0 +0.01237707182694322 0.1029514462227328 0 +0.009757266961228412 0.09990352135216359 0 +0.01219658370153552 0.09831690169020449 0 +0.007426243096165932 0.1067708677336397 0 +0.004878633480614205 0.1030767606760818 0 +0.007317950220921306 0.1014901410141227 0 +0.002475414365388645 0.1105902892445466 0 +0.002439316740307104 0.1046633803380409 0 +0.03858859240797026 0.08641140759202996 0 +0.03533591034810661 0.08737401492143997 0 +0.03783663984053625 0.08515196548674282 0 +0.03344344675357423 0.09155655324642596 0 +0.03028792315551997 0.0918562985040914 0 +0.03281191675181329 0.08961515671276568 0 +0.02829830109917821 0.09670169890082195 0 +0.02523993596293331 0.09633858208674283 0 +0.02776392955922664 0.09409744029541711 0 +0.02315315544478217 0.101846844555218 0 +0.02019194877034666 0.1008208656693942 0 +0.02271594236663998 0.09857972387806853 0 +0.01800800979038614 0.106991990209614 0 +0.01514396157776 0.1053031492520457 0 +0.01766795517405333 0.10306200746072 0 +0.0128628641359901 0.11213713586401 0 +0.01009597438517333 0.1097854328346971 0 +0.01261996798146666 0.1075442910433714 0 +0.007717718481594062 0.117282281518406 0 +0.005047987192586666 0.1142677164173485 0 +0.007571980788879999 0.1120265746260228 0 +0.002572572827198021 0.122427427172802 0 +0.002523993596293329 0.1165088582086743 0 +0.04114566133180169 0.08786878451917056 0 +0.03762598507856024 0.08966408965189357 0 +0.03984803451325741 0.08716336015946395 0 +0.0373262398208948 0.09281961324994781 0 +0.0331437014959088 0.09471207684448019 0 +0.03538484328723452 0.09218808324818688 0 +0.03350681830998792 0.09777044198072506 0 +0.02866141791325733 0.09976006403706682 0 +0.03090255970458306 0.09723607044077351 0 +0.02968739679908102 0.1027212707115023 0 +0.02417913433060587 0.1048080512296534 0 +0.0264202761219316 0.1022840576333601 0 +0.02586797528817413 0.1076720994422796 0 +0.01969685074795441 0.1098560384222401 0 +0.02193799253928013 0.1073320448259468 0 +0.02204855377726723 0.1126229281730568 0 +0.01521456716530293 0.1149040256148267 0 +0.01745570895662867 0.1123800320185334 0 +0.01822913226636033 0.1175737569038341 0 +0.01073228358265146 0.1199520128074134 0 +0.01297342537397719 0.11742801921112 0 +0.01440971075545343 0.1225245856346114 0 +0.008491141791325724 0.1224760064037067 0 +0.0439529285269718 0.08895171327161673 0 +0.04096267526742763 0.09084956563570074 0 +0.04253510802855142 0.08843679072002764 0 +0.04142587139004223 0.09375815150206782 0 +0.03778943594350941 0.0957281991163149 0 +0.03937605560546852 0.09328888237600781 0 +0.03889881425311266 0.09856458973251891 0 +0.03461619661959117 0.1006068325969291 0 +0.03620281628155029 0.09816751585662199 0 +0.03637175711618309 0.10337102796297 0 +0.03144295729567294 0.1054854660775432 0 +0.03302957695763205 0.1030461493372362 0 +0.03384469997925351 0.1081774661934211 0 +0.0282697179717547 0.1103640995581574 0 +0.02985633763371382 0.1079247828178503 0 +0.03131764284232393 0.1129839044238722 0 +0.02509647864783646 0.1152427330387716 0 +0.02668309830979558 0.1128034162984645 0 +0.02879058570539435 0.1177903426543233 0 +0.02192323932391822 0.1201213665193858 0 +0.02350985898587734 0.1176820497790787 0 +0.02626352856846478 0.1225967808847745 0 +0.0203366196619591 0.1225606832596929 0 +0.04693253528887374 0.08961857750472541 0 +0.04449654978072792 0.09166613569562633 0 +0.04543399565752369 0.08931394494613951 0 +0.04567486391702391 0.09433610050409534 0 +0.04260418552633823 0.09642811631053684 0 +0.04355036765353307 0.09404712600308159 0 +0.04441719254517408 0.09905362350346528 0 +0.04071182127194852 0.1011900969254474 0 +0.04165800339914337 0.0988091066179921 0 +0.04315952117332424 0.1037711465028352 0 +0.03881945701755881 0.1059520775403579 0 +0.03976563914475367 0.1035710872329026 0 +0.04190184980147441 0.1084886695022052 0 +0.03692709276316911 0.1107140581552684 0 +0.03787327489036396 0.1083330678478131 0 +0.04064417842962458 0.1132061925015751 0 +0.03503472850877939 0.1154760387701789 0 +0.03598091063597425 0.1130950484627237 0 +0.03938650705777473 0.1179237155009451 0 +0.03314236425438969 0.1202380193850895 0 +0.03408854638158455 0.1178570290776342 0 +0.0381288356859249 0.122641238500315 0 +0.03219618212719483 0.1226190096925447 0 +0.04815184980147441 0.09208241950220519 0 +0.04846331777367759 0.08976111429280384 0 +0.0475230141155495 0.09678493100189015 0 +0.04783743195851196 0.09443367525204767 0 +0.04689417842962458 0.1014874425015751 0 +0.04720859627258704 0.09913618675173264 0 +0.04626534274369967 0.1061899540012601 0 +0.04657976058666212 0.1038386982514176 0 +0.04563650705777475 0.1108924655009451 0 +0.04595092490073721 0.1085412097511026 0 +0.04500767137184983 0.11559497700063 0 +0.04532208921481229 0.1132437212507875 0 +0.04437883568592491 0.120297488500315 0 +0.04469325352888737 0.1179462327504725 0 +0.04406441784296244 0.1226487442501575 0 +2 21 0 225 +1038 +1039 +1040 +1041 +1042 +1043 +1044 +1045 +1046 +1047 +1048 +1049 +1050 +1051 +1052 +1053 +1054 +1055 +1056 +1057 +1058 +1059 +1060 +1061 +1062 +1063 +1064 +1065 +1066 +1067 +1068 +1069 +1070 +1071 +1072 +1073 +1074 +1075 +1076 +1077 +1078 +1079 +1080 +1081 +1082 +1083 +1084 +1085 +1086 +1087 +1088 +1089 +1090 +1091 +1092 +1093 +1094 +1095 +1096 +1097 +1098 +1099 +1100 +1101 +1102 +1103 +1104 +1105 +1106 +1107 +1108 +1109 +1110 +1111 +1112 +1113 +1114 +1115 +1116 +1117 +1118 +1119 +1120 +1121 +1122 +1123 +1124 +1125 +1126 +1127 +1128 +1129 +1130 +1131 +1132 +1133 +1134 +1135 +1136 +1137 +1138 +1139 +1140 +1141 +1142 +1143 +1144 +1145 +1146 +1147 +1148 +1149 +1150 +1151 +1152 +1153 +1154 +1155 +1156 +1157 +1158 +1159 +1160 +1161 +1162 +1163 +1164 +1165 +1166 +1167 +1168 +1169 +1170 +1171 +1172 +1173 +1174 +1175 +1176 +1177 +1178 +1179 +1180 +1181 +1182 +1183 +1184 +1185 +1186 +1187 +1188 +1189 +1190 +1191 +1192 +1193 +1194 +1195 +1196 +1197 +1198 +1199 +1200 +1201 +1202 +1203 +1204 +1205 +1206 +1207 +1208 +1209 +1210 +1211 +1212 +1213 +1214 +1215 +1216 +1217 +1218 +1219 +1220 +1221 +1222 +1223 +1224 +1225 +1226 +1227 +1228 +1229 +1230 +1231 +1232 +1233 +1234 +1235 +1236 +1237 +1238 +1239 +1240 +1241 +1242 +1243 +1244 +1245 +1246 +1247 +1248 +1249 +1250 +1251 +1252 +1253 +1254 +1255 +1256 +1257 +1258 +1259 +1260 +1261 +1262 +0.06697733900441034 0.07869630039705137 0 +0.07169486200378029 0.07995397176890118 0 +0.07641238500315026 0.08121164314075099 0 +0.08112990800252021 0.0824693145126008 0 +0.08584743100189017 0.0837269858844506 0 +0.09056495400126012 0.08498465725630042 0 +0.09528247700063007 0.08624232862815022 0 +0.06635493238684223 0.08231060004149311 0 +0.07116137061729334 0.08483765717842266 0 +0.07596780884774446 0.08736471431535223 0 +0.08077424707819557 0.08989177145228178 0 +0.08558068530864668 0.09241882858921133 0 +0.09038712353909779 0.09494588572614091 0 +0.09519356176954891 0.09747294286307046 0 +0.06534419888455915 0.08576404942365182 0 +0.07029502761533642 0.08958347093455869 0 +0.07524585634611369 0.09340289244546558 0 +0.08019668507689096 0.09722231395637246 0 +0.08514751380766822 0.1010417354672793 0 +0.09009834253844549 0.1048611569781862 0 +0.09504917126922274 0.1086805784890931 0 +0.06398398041922798 0.08898398041922777 0 +0.06912912607362397 0.09412912607362378 0 +0.07427427172801998 0.09927427172801982 0 +0.07941941738241598 0.1044194173824158 0 +0.08456456303681199 0.1095645630368119 0 +0.08970970869120801 0.1147097086912079 0 +0.09485485434560401 0.119854854345604 0 +0.06076404942365204 0.090344198884559 0 +0.06458347093455889 0.09529502761533627 0 +0.06840289244546574 0.1002458563461136 0 +0.07222231395637259 0.1051966850768908 0 +0.07604173546727944 0.1101475138076681 0 +0.0798611569781863 0.1150983425384454 0 +0.08368057848909313 0.1200491712692227 0 +0.05731060004149336 0.09135493238684213 0 +0.05983765717842288 0.09616137061729324 0 +0.0623647143153524 0.1009678088477444 0 +0.06489177145228192 0.1057742470781955 0 +0.06741882858921143 0.1105806853086466 0 +0.06994588572614095 0.1153871235390977 0 +0.07247294286307046 0.1201935617695489 0 +0.05369630039705164 0.09197733900441028 0 +0.0549539717689014 0.09669486200378023 0 +0.05621164314075117 0.1014123850031502 0 +0.05746931451260093 0.1061299080025201 0 +0.0587269858844507 0.1108474310018901 0 +0.05998465725630046 0.1155649540012601 0 +0.06124232862815022 0.1202824770006301 0 +0.06708241950220517 0.0768481501985257 0 +0.06461857750472537 0.07806746471112647 0 +0.06476111429280382 0.07653668222632259 0 +0.07178493100189015 0.07747698588445059 0 +0.06933610050409532 0.07932513608297628 0 +0.06943367525204766 0.07716256804148815 0 +0.07648744250157513 0.0781058215703755 0 +0.07405362350346528 0.08058280745482609 0 +0.07413618675173264 0.07779140372741306 0 +0.08118995400126011 0.07873465725630041 0 +0.07877114650283523 0.08184047882667589 0 +0.07883869825141762 0.07842023941333795 0 +0.08589246550094509 0.07936349294222531 0 +0.08348866950220518 0.08309815019852571 0 +0.0835412097511026 0.07904907509926286 0 +0.09059497700063007 0.07999232862815021 0 +0.08820619250157515 0.08435582157037551 0 +0.08824372125078758 0.07967791078518777 0 +0.09529748850031504 0.08062116431407512 0 +0.09292371550094509 0.08561349294222531 0 +0.09294623275047256 0.08030674647111266 0 +0.09764123850031503 0.08687116431407513 0 +0.09764874425015752 0.08093558215703757 0 +0.06666613569562629 0.08050345021927224 0 +0.06395171327161667 0.08104707147302834 0 +0.06431394494613946 0.07956600434247649 0 +0.07142811631053682 0.08239581447366193 0 +0.06875815150206778 0.08357412860995789 0 +0.06904712600308155 0.08144963234646709 0 +0.07619009692544736 0.08428817872805161 0 +0.07356458973251891 0.08610118574688744 0 +0.07380910661799209 0.08334199660085677 0 +0.08095207754035789 0.08618054298244129 0 +0.07837102796297002 0.088628242883817 0 +0.07857108723290263 0.08523436085524645 0 +0.08571405815526842 0.08807290723683096 0 +0.08317746619342113 0.09115530002074655 0 +0.08333306784781316 0.08712672510963612 0 +0.09047603877017896 0.08996527149122066 0 +0.08798390442387224 0.09368235715767612 0 +0.08809504846272369 0.08901908936402581 0 +0.09523801938508948 0.09185763574561034 0 +0.09279034265432334 0.09620941429460568 0 +0.09285702907763423 0.0909114536184155 0 +0.09759678088477446 0.09873647143153523 0 +0.09761900969254475 0.09280381787280517 0 +0.06584956563570069 0.08403732473257247 0 +0.06286878451917052 0.08385433866819837 0 +0.06343679072002759 0.08246489197144868 0 +0.07072819911631488 0.08721056405649068 0 +0.06781961324994779 0.08767376017910526 0 +0.06828888237600779 0.08562394439453157 0 +0.07560683259692907 0.09038380338040891 0 +0.07277044198072505 0.09149318169001214 0 +0.07316751585662198 0.08879718371844979 0 +0.08048546607754326 0.09355704270432712 0 +0.07772127071150232 0.09531260320091903 0 +0.07804614933723616 0.09197042304236801 0 +0.08536409955815745 0.09673028202824534 0 +0.08267209944227959 0.0991320247118259 0 +0.08292478281785036 0.09514366236628623 0 +0.09024273303877164 0.09990352135216357 0 +0.08762292817305686 0.1029514462227328 0 +0.08780341629846455 0.09831690169020446 0 +0.09512136651938582 0.1030767606760818 0 +0.09257375690383413 0.1067708677336397 0 +0.09268204977907873 0.1014901410141227 0 +0.09752458563461137 0.1105902892445466 0 +0.09756068325969292 0.1046633803380409 0 +0.06466408965189356 0.08737401492143979 0 +0.06141140759202997 0.08641140759202975 0 +0.06216336015946394 0.08515196548674263 0 +0.06971207684448019 0.09185629850409124 0 +0.06655655324642598 0.09155655324642578 0 +0.06718808324818688 0.08961515671276551 0 +0.07476006403706684 0.0963385820867427 0 +0.07170169890082198 0.09670169890082181 0 +0.07223607044077351 0.09409744029541697 0 +0.07980805122965347 0.1008208656693942 0 +0.07684684455521798 0.1018468445552178 0 +0.07728405763336016 0.09857972387806843 0 +0.08485603842224011 0.1053031492520456 0 +0.08199199020961399 0.1069919902096139 0 +0.08233204482594679 0.1030620074607199 0 +0.08990402561482674 0.1097854328346971 0 +0.08713713586401001 0.1121371358640099 0 +0.08738003201853344 0.1075442910433713 0 +0.09495201280741337 0.1142677164173485 0 +0.09228228151840601 0.1172822815184059 0 +0.09242801921112007 0.1120265746260228 0 +0.09742742717280201 0.122427427172802 0 +0.09747600640370668 0.1165088582086743 0 +0.06237401492144001 0.08966408965189337 0 +0.05885433866819862 0.08786878451917035 0 +0.06015196548674286 0.08716336015946374 0 +0.06685629850409143 0.09471207684448003 0 +0.06267376017910548 0.09281961324994763 0 +0.06461515671276571 0.0921880832481867 0 +0.07133858208674286 0.09976006403706669 0 +0.06649318169001232 0.09777044198072492 0 +0.06909744029541715 0.09723607044077336 0 +0.07582086566939429 0.1048080512296534 0 +0.07031260320091917 0.1027212707115022 0 +0.07357972387806858 0.10228405763336 0 +0.08030314925204572 0.10985603842224 0 +0.07413202471182602 0.1076720994422795 0 +0.07806200746072001 0.1073320448259467 0 +0.08478543283469715 0.1149040256148267 0 +0.07795144622273287 0.1126229281730568 0 +0.08254429104337144 0.1123800320185333 0 +0.08926771641734857 0.1199520128074133 0 +0.08177086773363972 0.1175737569038341 0 +0.08702657462602285 0.11742801921112 0 +0.08559028924454656 0.1225245856346114 0 +0.09150885820867428 0.1224760064037067 0 +0.0590373247325727 0.09084956563570055 0 +0.0560470714730286 0.08895171327161656 0 +0.05746489197144893 0.08843679072002746 0 +0.06221056405649089 0.09572819911631475 0 +0.05857412860995812 0.09375815150206768 0 +0.0606239443945318 0.09328888237600766 0 +0.06538380338040907 0.100606832596929 0 +0.06110118574688764 0.0985645897325188 0 +0.06379718371844997 0.09816751585662185 0 +0.06855704270432726 0.1054854660775432 0 +0.06362824288381716 0.1033710279629699 0 +0.06697042304236817 0.1030461493372361 0 +0.07173028202824544 0.1103640995581574 0 +0.06615530002074668 0.108177466193421 0 +0.07014366236628634 0.1079247828178503 0 +0.07490352135216363 0.1152427330387716 0 +0.06868235715767619 0.1129839044238722 0 +0.07331690169020454 0.1128034162984645 0 +0.0780767606760818 0.1201213665193858 0 +0.07120941429460571 0.1177903426543233 0 +0.07649014101412271 0.1176820497790787 0 +0.07373647143153522 0.1225967808847744 0 +0.07966338033804089 0.1225606832596929 0 +0.0555034502192725 0.09166613569562621 0 +0.05306746471112676 0.08961857750472531 0 +0.05456600434247676 0.08931394494613937 0 +0.05739581447366214 0.09642811631053674 0 +0.05432513608297652 0.09433610050409526 0 +0.05644963234646732 0.09404712600308147 0 +0.05928817872805178 0.1011900969254473 0 +0.05558280745482629 0.09905362350346522 0 +0.05834199660085696 0.09880910661799201 0 +0.06118054298244142 0.1059520775403578 0 +0.05684047882667605 0.1037711465028352 0 +0.06023436085524661 0.1035710872329026 0 +0.06307290723683107 0.1107140581552684 0 +0.05809815019852582 0.1084886695022051 0 +0.06212672510963625 0.1083330678478131 0 +0.06496527149122071 0.1154760387701789 0 +0.05935582157037558 0.1132061925015751 0 +0.06401908936402588 0.1130950484627236 0 +0.06685763574561035 0.1202380193850895 0 +0.06061349294222534 0.1179237155009451 0 +0.06591145361841552 0.1178570290776342 0 +0.06187116431407511 0.122641238500315 0 +0.06780381787280516 0.1226190096925447 0 +0.05184815019852582 0.09208241950220514 0 +0.05153668222632281 0.08976111429280378 0 +0.0524769858844507 0.09678493100189012 0 +0.05216256804148826 0.09443367525204763 0 +0.05310582157037558 0.1014874425015751 0 +0.05279140372741314 0.09913618675173261 0 +0.05373465725630047 0.1061899540012601 0 +0.05342023941333802 0.1038386982514176 0 +0.05436349294222535 0.110892465500945 0 +0.05404907509926291 0.1085412097511026 0 +0.05499232862815023 0.11559497700063 0 +0.05467791078518779 0.1132437212507875 0 +0.05562116431407511 0.120297488500315 0 +0.05530674647111267 0.1179462327504725 0 +0.05593558215703755 0.1226487442501575 0 +2 25 0 49 +1263 +1264 +1265 +1266 +1267 +1268 +1269 +1270 +1271 +1272 +1273 +1274 +1275 +1276 +1277 +1278 +1279 +1280 +1281 +1282 +1283 +1284 +1285 +1286 +1287 +1288 +1289 +1290 +1291 +1292 +1293 +1294 +1295 +1296 +1297 +1298 +1299 +1300 +1301 +1302 +1303 +1304 +1305 +1306 +1307 +1308 +1309 +1310 +1311 +0.01249999999999998 0.13125 0 +0.01249999999999998 0.1375 0 +0.01249999999999998 0.14375 0 +0.02499999999999998 0.13125 0 +0.02499999999999998 0.1375 0 +0.02499999999999998 0.14375 0 +0.03749999999999998 0.13125 0 +0.03749999999999998 0.1375 0 +0.03749999999999998 0.14375 0 +0.01249999999999998 0.128125 0 +0.006249999999999992 0.13125 0 +0.006249999999999992 0.128125 0 +0.01249999999999998 0.134375 0 +0.006249999999999992 0.1375 0 +0.006249999999999992 0.134375 0 +0.01249999999999998 0.140625 0 +0.006249999999999992 0.14375 0 +0.006249999999999992 0.140625 0 +0.01249999999999998 0.146875 0 +0.006249999999999992 0.146875 0 +0.02499999999999998 0.128125 0 +0.01874999999999999 0.13125 0 +0.01874999999999998 0.128125 0 +0.02499999999999998 0.134375 0 +0.01874999999999998 0.1375 0 +0.01874999999999999 0.134375 0 +0.02499999999999998 0.140625 0 +0.01874999999999998 0.14375 0 +0.01874999999999998 0.140625 0 +0.02499999999999998 0.146875 0 +0.01874999999999998 0.146875 0 +0.03749999999999998 0.128125 0 +0.03124999999999998 0.13125 0 +0.03124999999999998 0.128125 0 +0.03749999999999998 0.134375 0 +0.03124999999999998 0.1375 0 +0.03124999999999998 0.134375 0 +0.03749999999999998 0.140625 0 +0.03124999999999998 0.14375 0 +0.03124999999999998 0.140625 0 +0.03749999999999998 0.146875 0 +0.03124999999999998 0.146875 0 +0.04374999999999999 0.13125 0 +0.04374999999999999 0.128125 0 +0.04374999999999999 0.1375 0 +0.04374999999999999 0.134375 0 +0.04374999999999999 0.14375 0 +0.04374999999999999 0.140625 0 +0.04374999999999999 0.146875 0 +2 29 0 49 +1312 +1313 +1314 +1315 +1316 +1317 +1318 +1319 +1320 +1321 +1322 +1323 +1324 +1325 +1326 +1327 +1328 +1329 +1330 +1331 +1332 +1333 +1334 +1335 +1336 +1337 +1338 +1339 +1340 +1341 +1342 +1343 +1344 +1345 +1346 +1347 +1348 +1349 +1350 +1351 +1352 +1353 +1354 +1355 +1356 +1357 +1358 +1359 +1360 +0.06249999999999999 0.13125 0 +0.06249999999999999 0.1375 0 +0.06249999999999999 0.14375 0 +0.07499999999999998 0.13125 0 +0.07499999999999998 0.1375 0 +0.07499999999999998 0.14375 0 +0.08749999999999998 0.13125 0 +0.08749999999999998 0.1375 0 +0.08749999999999998 0.14375 0 +0.06249999999999999 0.128125 0 +0.05624999999999999 0.13125 0 +0.05624999999999999 0.128125 0 +0.06249999999999999 0.134375 0 +0.05624999999999999 0.1375 0 +0.05624999999999999 0.134375 0 +0.06249999999999999 0.140625 0 +0.05624999999999999 0.14375 0 +0.05624999999999999 0.140625 0 +0.06249999999999999 0.146875 0 +0.05624999999999999 0.146875 0 +0.07499999999999998 0.128125 0 +0.06874999999999999 0.13125 0 +0.06874999999999998 0.128125 0 +0.07499999999999998 0.134375 0 +0.06874999999999999 0.1375 0 +0.06874999999999999 0.134375 0 +0.07499999999999998 0.140625 0 +0.06874999999999999 0.14375 0 +0.06874999999999999 0.140625 0 +0.07499999999999998 0.146875 0 +0.06874999999999999 0.146875 0 +0.08749999999999998 0.128125 0 +0.08124999999999999 0.13125 0 +0.08124999999999999 0.128125 0 +0.08749999999999998 0.134375 0 +0.08124999999999999 0.1375 0 +0.08124999999999999 0.134375 0 +0.08749999999999998 0.140625 0 +0.08124999999999999 0.14375 0 +0.08124999999999999 0.140625 0 +0.08749999999999998 0.146875 0 +0.08124999999999999 0.146875 0 +0.09375 0.13125 0 +0.09375 0.128125 0 +0.09375 0.1375 0 +0.09375 0.134375 0 +0.09375 0.14375 0 +0.09375 0.140625 0 +0.09375 0.146875 0 +$EndNodes +$Elements +12 336 1 336 +1 1 8 4 +1 1 19 22 +2 19 20 23 +3 20 21 24 +4 21 2 25 +1 5 8 4 +5 2 47 50 +6 47 48 51 +7 48 49 52 +8 49 5 53 +1 19 8 4 +9 10 89 92 +10 89 90 93 +11 90 91 94 +12 91 11 95 +1 22 8 4 +13 12 110 113 +14 110 111 114 +15 111 112 115 +16 112 10 116 +2 1 10 16 +17 1 19 265 42 22 274 275 46 276 +18 42 265 266 41 275 277 278 45 279 +19 41 266 267 40 278 280 281 44 282 +20 40 267 35 4 281 283 39 43 284 +21 19 20 268 265 23 285 286 274 287 +22 265 268 269 266 286 288 289 277 290 +23 266 269 270 267 289 291 292 280 293 +24 267 270 34 35 292 294 38 283 295 +25 20 21 271 268 24 296 297 285 298 +26 268 271 272 269 297 299 300 288 301 +27 269 272 273 270 300 302 303 291 304 +28 270 273 33 34 303 305 37 294 306 +29 21 2 26 271 25 29 307 296 308 +30 271 26 27 272 307 30 309 299 310 +31 272 27 28 273 309 31 311 302 312 +32 273 28 3 33 311 32 36 305 313 +2 5 10 16 +33 2 47 314 26 50 323 324 29 325 +34 26 314 315 27 324 326 327 30 328 +35 27 315 316 28 327 329 330 31 331 +36 28 316 63 3 330 332 67 32 333 +37 47 48 317 314 51 334 335 323 336 +38 314 317 318 315 335 337 338 326 339 +39 315 318 319 316 338 340 341 329 342 +40 316 319 62 63 341 343 66 332 344 +41 48 49 320 317 52 345 346 334 347 +42 317 320 321 318 346 348 349 337 350 +43 318 321 322 319 349 351 352 340 353 +44 319 322 61 62 352 354 65 343 355 +45 49 5 54 320 53 57 356 345 357 +46 320 54 55 321 356 58 358 348 359 +47 321 55 56 322 358 59 360 351 361 +48 322 56 6 61 360 60 64 354 362 +2 9 10 64 +49 14 124 363 139 131 412 413 146 414 +50 124 125 364 363 132 415 416 412 417 +51 125 126 365 364 133 418 419 415 420 +52 126 127 366 365 134 421 422 418 423 +53 127 128 367 366 135 424 425 421 426 +54 128 129 368 367 136 427 428 424 429 +55 129 130 369 368 137 430 431 427 432 +56 130 13 117 369 138 120 433 430 434 +57 139 363 370 140 413 435 436 147 437 +58 363 364 371 370 416 438 439 435 440 +59 364 365 372 371 419 441 442 438 443 +60 365 366 373 372 422 444 445 441 446 +61 366 367 374 373 425 447 448 444 449 +62 367 368 375 374 428 450 451 447 452 +63 368 369 376 375 431 453 454 450 455 +64 369 117 118 376 433 121 456 453 457 +65 140 370 377 141 436 458 459 148 460 +66 370 371 378 377 439 461 462 458 463 +67 371 372 379 378 442 464 465 461 466 +68 372 373 380 379 445 467 468 464 469 +69 373 374 381 380 448 470 471 467 472 +70 374 375 382 381 451 473 474 470 475 +71 375 376 383 382 454 476 477 473 478 +72 376 118 119 383 456 122 479 476 480 +73 141 377 384 142 459 481 482 149 483 +74 377 378 385 384 462 484 485 481 486 +75 378 379 386 385 465 487 488 484 489 +76 379 380 387 386 468 490 491 487 492 +77 380 381 388 387 471 493 494 490 495 +78 381 382 389 388 474 496 497 493 498 +79 382 383 390 389 477 499 500 496 501 +80 383 119 4 390 479 123 502 499 503 +81 142 384 391 143 482 504 505 150 506 +82 384 385 392 391 485 507 508 504 509 +83 385 386 393 392 488 510 511 507 512 +84 386 387 394 393 491 513 514 510 515 +85 387 388 395 394 494 516 517 513 518 +86 388 389 396 395 497 519 520 516 521 +87 389 390 397 396 500 522 523 519 524 +88 390 4 35 397 502 39 525 522 526 +89 143 391 398 144 505 527 528 151 529 +90 391 392 399 398 508 530 531 527 532 +91 392 393 400 399 511 533 534 530 535 +92 393 394 401 400 514 536 537 533 538 +93 394 395 402 401 517 539 540 536 541 +94 395 396 403 402 520 542 543 539 544 +95 396 397 404 403 523 545 546 542 547 +96 397 35 34 404 525 38 548 545 549 +97 144 398 405 145 528 550 551 152 552 +98 398 399 406 405 531 553 554 550 555 +99 399 400 407 406 534 556 557 553 558 +100 400 401 408 407 537 559 560 556 561 +101 401 402 409 408 540 562 563 559 564 +102 402 403 410 409 543 565 566 562 567 +103 403 404 411 410 546 568 569 565 570 +104 404 34 33 411 548 37 571 568 572 +105 145 405 160 15 551 573 168 153 574 +106 405 406 159 160 554 575 167 573 576 +107 406 407 158 159 557 577 166 575 578 +108 407 408 157 158 560 579 165 577 580 +109 408 409 156 157 563 581 164 579 582 +110 409 410 155 156 566 583 163 581 584 +111 410 411 154 155 569 585 162 583 586 +112 411 33 3 154 571 36 161 585 587 +2 13 10 64 +113 15 160 588 169 168 637 638 176 639 +114 160 159 589 588 167 640 641 637 642 +115 159 158 590 589 166 643 644 640 645 +116 158 157 591 590 165 646 647 643 648 +117 157 156 592 591 164 649 650 646 651 +118 156 155 593 592 163 652 653 649 654 +119 155 154 594 593 162 655 656 652 657 +120 154 3 63 594 161 67 658 655 659 +121 169 588 595 170 638 660 661 177 662 +122 588 589 596 595 641 663 664 660 665 +123 589 590 597 596 644 666 667 663 668 +124 590 591 598 597 647 669 670 666 671 +125 591 592 599 598 650 672 673 669 674 +126 592 593 600 599 653 675 676 672 677 +127 593 594 601 600 656 678 679 675 680 +128 594 63 62 601 658 66 681 678 682 +129 170 595 602 171 661 683 684 178 685 +130 595 596 603 602 664 686 687 683 688 +131 596 597 604 603 667 689 690 686 691 +132 597 598 605 604 670 692 693 689 694 +133 598 599 606 605 673 695 696 692 697 +134 599 600 607 606 676 698 699 695 700 +135 600 601 608 607 679 701 702 698 703 +136 601 62 61 608 681 65 704 701 705 +137 171 602 609 172 684 706 707 179 708 +138 602 603 610 609 687 709 710 706 711 +139 603 604 611 610 690 712 713 709 714 +140 604 605 612 611 693 715 716 712 717 +141 605 606 613 612 696 718 719 715 720 +142 606 607 614 613 699 721 722 718 723 +143 607 608 615 614 702 724 725 721 726 +144 608 61 6 615 704 64 727 724 728 +145 172 609 616 173 707 729 730 180 731 +146 609 610 617 616 710 732 733 729 734 +147 610 611 618 617 713 735 736 732 737 +148 611 612 619 618 716 738 739 735 740 +149 612 613 620 619 719 741 742 738 743 +150 613 614 621 620 722 744 745 741 746 +151 614 615 622 621 725 747 748 744 749 +152 615 6 199 622 727 202 750 747 751 +153 173 616 623 174 730 752 753 181 754 +154 616 617 624 623 733 755 756 752 757 +155 617 618 625 624 736 758 759 755 760 +156 618 619 626 625 739 761 762 758 763 +157 619 620 627 626 742 764 765 761 766 +158 620 621 628 627 745 767 768 764 769 +159 621 622 629 628 748 770 771 767 772 +160 622 199 200 629 750 203 773 770 774 +161 174 623 630 175 753 775 776 182 777 +162 623 624 631 630 756 778 779 775 780 +163 624 625 632 631 759 781 782 778 783 +164 625 626 633 632 762 784 785 781 786 +165 626 627 634 633 765 787 788 784 789 +166 627 628 635 634 768 790 791 787 792 +167 628 629 636 635 771 793 794 790 795 +168 629 200 201 636 773 204 796 793 797 +169 175 630 190 16 776 798 198 183 799 +170 630 631 189 190 779 800 197 798 801 +171 631 632 188 189 782 802 196 800 803 +172 632 633 187 188 785 804 195 802 805 +173 633 634 186 187 788 806 194 804 807 +174 634 635 185 186 791 808 193 806 809 +175 635 636 184 185 794 810 192 808 811 +176 636 201 17 184 796 205 191 810 812 +2 17 10 64 +177 14 234 813 124 242 862 863 131 864 +178 124 813 814 125 863 865 866 132 867 +179 125 814 815 126 866 868 869 133 870 +180 126 815 816 127 869 871 872 134 873 +181 127 816 817 128 872 874 875 135 876 +182 128 817 818 129 875 877 878 136 879 +183 129 818 819 130 878 880 881 137 882 +184 130 819 208 13 881 883 212 138 884 +185 234 233 820 813 241 885 886 862 887 +186 813 820 821 814 886 888 889 865 890 +187 814 821 822 815 889 891 892 868 893 +188 815 822 823 816 892 894 895 871 896 +189 816 823 824 817 895 897 898 874 899 +190 817 824 825 818 898 900 901 877 902 +191 818 825 826 819 901 903 904 880 905 +192 819 826 207 208 904 906 211 883 907 +193 233 232 827 820 240 908 909 885 910 +194 820 827 828 821 909 911 912 888 913 +195 821 828 829 822 912 914 915 891 916 +196 822 829 830 823 915 917 918 894 919 +197 823 830 831 824 918 920 921 897 922 +198 824 831 832 825 921 923 924 900 925 +199 825 832 833 826 924 926 927 903 928 +200 826 833 206 207 927 929 210 906 930 +201 232 231 834 827 239 931 932 908 933 +202 827 834 835 828 932 934 935 911 936 +203 828 835 836 829 935 937 938 914 939 +204 829 836 837 830 938 940 941 917 942 +205 830 837 838 831 941 943 944 920 945 +206 831 838 839 832 944 946 947 923 948 +207 832 839 840 833 947 949 950 926 951 +208 833 840 8 206 950 952 209 929 953 +209 231 230 841 834 238 954 955 931 956 +210 834 841 842 835 955 957 958 934 959 +211 835 842 843 836 958 960 961 937 962 +212 836 843 844 837 961 963 964 940 965 +213 837 844 845 838 964 966 967 943 968 +214 838 845 846 839 967 969 970 946 971 +215 839 846 847 840 970 972 973 949 974 +216 840 847 70 8 973 975 74 952 976 +217 230 229 848 841 237 977 978 954 979 +218 841 848 849 842 978 980 981 957 982 +219 842 849 850 843 981 983 984 960 985 +220 843 850 851 844 984 986 987 963 988 +221 844 851 852 845 987 989 990 966 991 +222 845 852 853 846 990 992 993 969 994 +223 846 853 854 847 993 995 996 972 997 +224 847 854 69 70 996 998 73 975 999 +225 229 228 855 848 236 1000 1001 977 1002 +226 848 855 856 849 1001 1003 1004 980 1005 +227 849 856 857 850 1004 1006 1007 983 1008 +228 850 857 858 851 1007 1009 1010 986 1011 +229 851 858 859 852 1010 1012 1013 989 1014 +230 852 859 860 853 1013 1015 1016 992 1017 +231 853 860 861 854 1016 1018 1019 995 1020 +232 854 861 68 69 1019 1021 72 998 1022 +233 228 18 213 855 235 220 1023 1000 1024 +234 855 213 214 856 1023 221 1025 1003 1026 +235 856 214 215 857 1025 222 1027 1006 1028 +236 857 215 216 858 1027 223 1029 1009 1030 +237 858 216 217 859 1029 224 1031 1012 1032 +238 859 217 218 860 1031 225 1033 1015 1034 +239 860 218 219 861 1033 226 1035 1018 1036 +240 861 219 7 68 1035 227 71 1021 1037 +2 21 10 64 +241 16 190 1038 243 198 1087 1088 250 1089 +242 190 189 1039 1038 197 1090 1091 1087 1092 +243 189 188 1040 1039 196 1093 1094 1090 1095 +244 188 187 1041 1040 195 1096 1097 1093 1098 +245 187 186 1042 1041 194 1099 1100 1096 1101 +246 186 185 1043 1042 193 1102 1103 1099 1104 +247 185 184 1044 1043 192 1105 1106 1102 1107 +248 184 17 258 1044 191 261 1108 1105 1109 +249 243 1038 1045 244 1088 1110 1111 251 1112 +250 1038 1039 1046 1045 1091 1113 1114 1110 1115 +251 1039 1040 1047 1046 1094 1116 1117 1113 1118 +252 1040 1041 1048 1047 1097 1119 1120 1116 1121 +253 1041 1042 1049 1048 1100 1122 1123 1119 1124 +254 1042 1043 1050 1049 1103 1125 1126 1122 1127 +255 1043 1044 1051 1050 1106 1128 1129 1125 1130 +256 1044 258 259 1051 1108 262 1131 1128 1132 +257 244 1045 1052 245 1111 1133 1134 252 1135 +258 1045 1046 1053 1052 1114 1136 1137 1133 1138 +259 1046 1047 1054 1053 1117 1139 1140 1136 1141 +260 1047 1048 1055 1054 1120 1142 1143 1139 1144 +261 1048 1049 1056 1055 1123 1145 1146 1142 1147 +262 1049 1050 1057 1056 1126 1148 1149 1145 1150 +263 1050 1051 1058 1057 1129 1151 1152 1148 1153 +264 1051 259 260 1058 1131 263 1154 1151 1155 +265 245 1052 1059 246 1134 1156 1157 253 1158 +266 1052 1053 1060 1059 1137 1159 1160 1156 1161 +267 1053 1054 1061 1060 1140 1162 1163 1159 1164 +268 1054 1055 1062 1061 1143 1165 1166 1162 1167 +269 1055 1056 1063 1062 1146 1168 1169 1165 1170 +270 1056 1057 1064 1063 1149 1171 1172 1168 1173 +271 1057 1058 1065 1064 1152 1174 1175 1171 1176 +272 1058 260 9 1065 1154 264 1177 1174 1178 +273 246 1059 1066 247 1157 1179 1180 254 1181 +274 1059 1060 1067 1066 1160 1182 1183 1179 1184 +275 1060 1061 1068 1067 1163 1185 1186 1182 1187 +276 1061 1062 1069 1068 1166 1188 1189 1185 1190 +277 1062 1063 1070 1069 1169 1191 1192 1188 1193 +278 1063 1064 1071 1070 1172 1194 1195 1191 1196 +279 1064 1065 1072 1071 1175 1197 1198 1194 1199 +280 1065 9 75 1072 1177 78 1200 1197 1201 +281 247 1066 1073 248 1180 1202 1203 255 1204 +282 1066 1067 1074 1073 1183 1205 1206 1202 1207 +283 1067 1068 1075 1074 1186 1208 1209 1205 1210 +284 1068 1069 1076 1075 1189 1211 1212 1208 1213 +285 1069 1070 1077 1076 1192 1214 1215 1211 1216 +286 1070 1071 1078 1077 1195 1217 1218 1214 1219 +287 1071 1072 1079 1078 1198 1220 1221 1217 1222 +288 1072 75 76 1079 1200 79 1223 1220 1224 +289 248 1073 1080 249 1203 1225 1226 256 1227 +290 1073 1074 1081 1080 1206 1228 1229 1225 1230 +291 1074 1075 1082 1081 1209 1231 1232 1228 1233 +292 1075 1076 1083 1082 1212 1234 1235 1231 1236 +293 1076 1077 1084 1083 1215 1237 1238 1234 1239 +294 1077 1078 1085 1084 1218 1240 1241 1237 1242 +295 1078 1079 1086 1085 1221 1243 1244 1240 1245 +296 1079 76 77 1086 1223 80 1246 1243 1247 +297 249 1080 213 18 1226 1248 220 257 1249 +298 1080 1081 214 213 1229 1250 221 1248 1251 +299 1081 1082 215 214 1232 1252 222 1250 1253 +300 1082 1083 216 215 1235 1254 223 1252 1255 +301 1083 1084 217 216 1238 1256 224 1254 1257 +302 1084 1085 218 217 1241 1258 225 1256 1259 +303 1085 1086 219 218 1244 1260 226 1258 1261 +304 1086 77 7 219 1246 81 227 1260 1262 +2 25 10 16 +305 8 70 1263 98 74 1272 1273 102 1274 +306 98 1263 1264 97 1273 1275 1276 101 1277 +307 97 1264 1265 96 1276 1278 1279 100 1280 +308 96 1265 91 11 1279 1281 95 99 1282 +309 70 69 1266 1263 73 1283 1284 1272 1285 +310 1263 1266 1267 1264 1284 1286 1287 1275 1288 +311 1264 1267 1268 1265 1287 1289 1290 1278 1291 +312 1265 1268 90 91 1290 1292 94 1281 1293 +313 69 68 1269 1266 72 1294 1295 1283 1296 +314 1266 1269 1270 1267 1295 1297 1298 1286 1299 +315 1267 1270 1271 1268 1298 1300 1301 1289 1302 +316 1268 1271 89 90 1301 1303 93 1292 1304 +317 68 7 82 1269 71 85 1305 1294 1306 +318 1269 82 83 1270 1305 86 1307 1297 1308 +319 1270 83 84 1271 1307 87 1309 1300 1310 +320 1271 84 10 89 1309 88 92 1303 1311 +2 29 10 16 +321 7 77 1312 82 81 1321 1322 85 1323 +322 82 1312 1313 83 1322 1324 1325 86 1326 +323 83 1313 1314 84 1325 1327 1328 87 1329 +324 84 1314 112 10 1328 1330 116 88 1331 +325 77 76 1315 1312 80 1332 1333 1321 1334 +326 1312 1315 1316 1313 1333 1335 1336 1324 1337 +327 1313 1316 1317 1314 1336 1338 1339 1327 1340 +328 1314 1317 111 112 1339 1341 115 1330 1342 +329 76 75 1318 1315 79 1343 1344 1332 1345 +330 1315 1318 1319 1316 1344 1346 1347 1335 1348 +331 1316 1319 1320 1317 1347 1349 1350 1338 1351 +332 1317 1320 110 111 1350 1352 114 1341 1353 +333 75 9 103 1318 78 106 1354 1343 1355 +334 1318 103 104 1319 1354 107 1356 1346 1357 +335 1319 104 105 1320 1356 108 1358 1349 1359 +336 1320 105 12 110 1358 109 113 1352 1360 +$EndElements diff --git a/src/pyvale/simcases/case18.i b/src/pyvale/data/simulation/simcases/case18.i similarity index 100% rename from src/pyvale/simcases/case18.i rename to src/pyvale/data/simulation/simcases/case18.i diff --git a/src/pyvale/simcases/case18_d.i b/src/pyvale/data/simulation/simcases/case18_d.i similarity index 100% rename from src/pyvale/simcases/case18_d.i rename to src/pyvale/data/simulation/simcases/case18_d.i diff --git a/src/pyvale/simcases/case18_u.i b/src/pyvale/data/simulation/simcases/case18_u.i similarity index 100% rename from src/pyvale/simcases/case18_u.i rename to src/pyvale/data/simulation/simcases/case18_u.i diff --git a/src/pyvale/simcases/case19.geo b/src/pyvale/data/simulation/simcases/case19.geo similarity index 100% rename from src/pyvale/simcases/case19.geo rename to src/pyvale/data/simulation/simcases/case19.geo diff --git a/src/pyvale/simcases/case19.i b/src/pyvale/data/simulation/simcases/case19.i similarity index 100% rename from src/pyvale/simcases/case19.i rename to src/pyvale/data/simulation/simcases/case19.i diff --git a/src/pyvale/simcases/case20.geo b/src/pyvale/data/simulation/simcases/case20.geo similarity index 100% rename from src/pyvale/simcases/case20.geo rename to src/pyvale/data/simulation/simcases/case20.geo diff --git a/src/pyvale/simcases/case20.i b/src/pyvale/data/simulation/simcases/case20.i similarity index 100% rename from src/pyvale/simcases/case20.i rename to src/pyvale/data/simulation/simcases/case20.i diff --git a/src/pyvale/simcases/case21.geo b/src/pyvale/data/simulation/simcases/case21.geo similarity index 100% rename from src/pyvale/simcases/case21.geo rename to src/pyvale/data/simulation/simcases/case21.geo diff --git a/src/pyvale/simcases/case21.i b/src/pyvale/data/simulation/simcases/case21.i similarity index 100% rename from src/pyvale/simcases/case21.i rename to src/pyvale/data/simulation/simcases/case21.i diff --git a/src/pyvale/simcases/case22.geo b/src/pyvale/data/simulation/simcases/case22.geo similarity index 100% rename from src/pyvale/simcases/case22.geo rename to src/pyvale/data/simulation/simcases/case22.geo diff --git a/src/pyvale/simcases/case22.i b/src/pyvale/data/simulation/simcases/case22.i similarity index 100% rename from src/pyvale/simcases/case22.i rename to src/pyvale/data/simulation/simcases/case22.i diff --git a/src/pyvale/simcases/case23.geo b/src/pyvale/data/simulation/simcases/case23.geo similarity index 100% rename from src/pyvale/simcases/case23.geo rename to src/pyvale/data/simulation/simcases/case23.geo diff --git a/src/pyvale/simcases/case23.i b/src/pyvale/data/simulation/simcases/case23.i similarity index 100% rename from src/pyvale/simcases/case23.i rename to src/pyvale/data/simulation/simcases/case23.i diff --git a/src/pyvale/simcases/case24.geo b/src/pyvale/data/simulation/simcases/case24.geo similarity index 100% rename from src/pyvale/simcases/case24.geo rename to src/pyvale/data/simulation/simcases/case24.geo diff --git a/src/pyvale/simcases/case24.i b/src/pyvale/data/simulation/simcases/case24.i similarity index 100% rename from src/pyvale/simcases/case24.i rename to src/pyvale/data/simulation/simcases/case24.i diff --git a/src/pyvale/simcases/case25.geo b/src/pyvale/data/simulation/simcases/case25.geo similarity index 100% rename from src/pyvale/simcases/case25.geo rename to src/pyvale/data/simulation/simcases/case25.geo diff --git a/src/pyvale/simcases/case25.i b/src/pyvale/data/simulation/simcases/case25.i similarity index 100% rename from src/pyvale/simcases/case25.i rename to src/pyvale/data/simulation/simcases/case25.i diff --git a/src/pyvale/simcases/case26.geo b/src/pyvale/data/simulation/simcases/case26.geo similarity index 100% rename from src/pyvale/simcases/case26.geo rename to src/pyvale/data/simulation/simcases/case26.geo diff --git a/src/pyvale/simcases/case26.i b/src/pyvale/data/simulation/simcases/case26.i similarity index 100% rename from src/pyvale/simcases/case26.i rename to src/pyvale/data/simulation/simcases/case26.i diff --git a/src/pyvale/simcases/cases_dictionary.yaml b/src/pyvale/data/simulation/simcases/cases_dictionary.yaml similarity index 100% rename from src/pyvale/simcases/cases_dictionary.yaml rename to src/pyvale/data/simulation/simcases/cases_dictionary.yaml diff --git a/src/pyvale/data/valid/DIC_SS_Bounds.csv b/src/pyvale/data/valid/DIC_SS_Bounds.csv new file mode 100644 index 000000000..cba4c8189 --- /dev/null +++ b/src/pyvale/data/valid/DIC_SS_Bounds.csv @@ -0,0 +1,3 @@ +,253,254,255 +First,297,302,293 +Last,694,694,694 diff --git a/src/pyvale/data/valid/HIVE_SS_Bounds.csv b/src/pyvale/data/valid/HIVE_SS_Bounds.csv new file mode 100644 index 000000000..e1a158d5c --- /dev/null +++ b/src/pyvale/data/valid/HIVE_SS_Bounds.csv @@ -0,0 +1,3 @@ +,253,254,255 +First,275,280,271 +Last,641,641,641 diff --git a/src/pyvale/data/valid/Pulse253_DIC.csv b/src/pyvale/data/valid/Pulse253_DIC.csv new file mode 100644 index 000000000..4c186338e --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_DIC.csv @@ -0,0 +1,1151 @@ +TC3,TC5,TC6,TC8,TC9,TC10 +147.014641330756,145.983916288214,147.135458499066,146.918315620191,146.330517686128,146.98160831135 +147.006198716648,145.982866199633,147.12285720068,146.924425853304,146.329236502582,146.970393850931 +147.011193343699,145.986473171761,147.123693848134,146.921566547317,146.330765650181,146.978853368964 +147.010168884034,145.989836205117,147.125672506268,146.91777022325,146.326277529982,146.984758876513 +147.002562891556,145.987313379482,147.130540827642,146.928874902563,146.328372946073,146.989395896282 +146.988388489385,145.986306422781,147.119137773754,146.919320798903,146.320437907375,146.980534532132 +146.993060696387,145.995594474678,147.119652021055,146.923761870812,146.322337556535,146.980355752936 +146.992293356705,145.990671337805,147.114495406614,146.932003278918,146.320646723039,146.99598935238 +146.994760012642,145.992675098849,147.121351432126,146.936779806782,146.32241985028,146.997994012049 +146.99097662423,146.00066913752,147.131428612697,146.937847383777,146.332031594587,146.996520616782 +146.999762602171,146.004140581242,147.127971393669,146.935776422091,146.329730259223,147.002765608097 +147.000969824776,146.006963553836,147.117397027684,146.934904666449,146.32608756298,146.998197821361 +146.994034756432,146.007420286069,147.122705249871,146.94090544423,146.321232949428,147.010897798651 +146.981765693951,146.009472270877,147.122217112201,146.947116188842,146.33136781817,147.006020662908 +146.994793032293,146.006792839696,147.11745724137,146.939584753865,146.325454962157,147.006574052521 +146.97429435993,146.008007520477,147.111742161434,146.937566022574,146.316047006315,147.001783253717 +146.989492037361,146.018811559377,147.115621138655,146.945602604029,146.323388573955,147.012823082297 +146.986802382075,146.023973648387,147.116858538249,146.954924746963,146.329244163233,147.018911467989 +146.984274450283,146.022370400145,147.116871594592,146.952627846238,146.327871626572,147.023775576327 +146.985107056358,146.013504880853,147.11470109128,146.942834668911,146.329396784125,147.016061108138 +146.97759655891,146.019851558015,147.110886347602,146.949645968236,146.316115215041,147.021024607134 +146.988300828372,146.042558116205,147.116970996612,146.972130946687,146.331204034959,147.034501126134 +146.988984775483,146.03446752268,147.115344860633,146.960572051594,146.328192877403,147.038650148518 +146.986255961108,146.034279777826,147.123935500327,146.968238116561,146.338166110244,147.036383282373 +146.989041005844,146.032676522468,147.118866277916,146.960397284949,146.335177043213,147.036165334553 +146.980062174701,146.039402761371,147.103418619675,146.960658401114,146.323660579878,147.028803338983 +146.982476606739,146.047126926146,147.128703397389,146.976701650592,146.332078525466,147.036530909859 +146.98195333959,146.041062231673,147.116860469296,146.973175414093,146.332479136623,147.044554794192 +146.98608921502,146.041963746441,147.115452293958,146.97430830131,146.335228225317,147.04961480518 +146.98908315888,146.051421696169,147.117522359188,146.987928163104,146.340992493817,147.052839838633 +146.987444065881,146.042856223531,147.123275573432,146.98166909707,146.326421689059,147.050969694007 +146.985072809578,146.057803649098,147.114204818587,146.970981926295,146.341371017026,147.05137043629 +146.984035322808,146.039910718558,147.112243225547,146.981032341707,146.338948231714,147.057725105783 +146.986785212229,146.060900765704,147.115686306598,146.991174197094,146.346085059675,147.061630117317 +146.99392007899,146.064338221322,147.116584240869,146.995999077308,146.341209362023,147.069227234304 +146.985010539926,146.05889592218,147.118069751909,146.983855546227,146.333457066374,147.06978868443 +146.990410895412,146.06706489892,147.116540047793,146.992258890961,146.345091043649,147.077268314647 +146.988017546554,146.074139621428,147.134244694316,147.004649543182,146.359094674764,147.077415963028 +146.994167155211,146.056272664899,147.112673114261,146.993936155491,146.341456366588,147.083796822959 +146.997056664712,146.074631554318,147.131040637643,147.001445669474,146.348732770129,147.086917455818 +147.00382498297,146.082320714643,147.141736602938,147.02369113168,146.356653810251,147.092068973716 +146.994035599735,146.082233376239,147.132639666163,147.016211681256,146.350100310053,147.089671500279 +146.990461145476,146.080738524603,147.126523846854,147.008479166764,146.352300217477,147.085403868114 +147.013421597,146.094453367006,147.137010869973,147.014576605769,146.370866376489,147.106979212878 +147.00055485266,146.08251551274,147.138928302799,147.027813061821,146.361005454106,147.090415782357 +147.00720164485,146.096317703104,147.150195807813,147.03561495342,146.372038135883,147.109306412053 +147.013507997864,146.106546937389,147.143796699601,147.036839289993,146.382268634823,147.117230134112 +147.003308804503,146.088270120991,147.145147646421,147.02987403656,146.364220493732,147.114422845747 +146.999381796614,146.094504605548,147.143299526369,147.036342140181,146.378307578617,147.108878565066 +147.00668644717,146.095571807151,147.145522301379,147.033251718807,146.366673436059,147.11156332973 +147.008847834797,146.103505012572,147.149300929295,147.033103093582,146.374145733646,147.125506455018 +147.009388182381,146.098965168808,147.141293750018,147.039880556917,146.361753540729,147.115189237854 +147.022254015766,146.11274942233,147.153467283073,147.046971428139,146.383622202232,147.13082783311 +147.014835829436,146.111568772523,147.157830473295,147.051565419333,146.381979535155,147.126181448283 +147.01809099025,146.119902633872,147.157158558287,147.067294986409,146.386619405243,147.146300817127 +147.011187051313,146.107921461984,147.153488417387,147.05854284661,146.378331782431,147.135700258981 +147.012381232384,146.117889709725,147.154682673317,147.047031735501,146.380911248353,147.138280591558 +147.018059896541,146.128877052732,147.158513561003,147.063798786988,146.386357382864,147.152045109362 +147.016690983793,146.124968666878,147.15529643376,147.055499656615,146.384988854074,147.141435508108 +147.023829984868,146.125870244074,147.167980282001,147.06564186904,146.387968973267,147.143261552378 +147.009982919963,146.122188733394,147.15274624225,147.065654927417,146.390060466577,147.143967656038 +147.035279730342,146.140548177978,147.169034941762,147.075012752888,146.393411088045,147.159563242859 +147.027146419489,146.145349164872,147.174762196152,147.081894813333,146.403986091389,147.151429486813 +147.032629254834,146.141593347574,147.171004660002,147.076058357135,146.399306083786,147.157836687652 +147.029861259661,146.139519185478,147.174936011976,147.07767946127,146.399310129609,147.158995817081 +147.028400937471,146.152606925341,147.171165417884,147.090772664644,146.399004909274,147.16538998162 +147.033090348371,146.14367064351,147.180937530106,147.088300904238,146.413392476034,147.175855123583 +147.040547771768,146.149970550424,147.188626458421,147.084670052383,146.40144889407,147.16783479689 +147.031656142937,146.145469777712,147.184585645983,147.085018591267,146.408263627812,147.167490296313 +147.03602314906,146.154684237842,147.182715426825,147.093774883509,146.42140516622,147.176246906348 +147.064096388297,146.176973570332,147.208480262125,147.109836206694,146.423836126105,147.18584026454 +147.049774008404,146.163118670491,147.196005133553,147.104753959149,146.411134393739,147.181681922124 +147.052728899614,146.174616252238,147.192953688146,147.113253199757,146.424711723741,147.18671615787 +147.041108402951,146.174776953676,147.185490815967,147.108100701377,146.429491274953,147.188494067533 +147.061632778472,146.181207490931,147.198392806224,147.104138391897,146.428994281662,147.195620561808 +147.052461888074,146.170192870885,147.193841760066,147.116451361204,146.432989631241,147.206778919453 +147.066243915081,146.175425597909,147.202773199375,147.118452114363,146.428061517092,147.20208013662 +147.061549482781,146.185973472195,147.208705451774,147.12415313382,146.442767558245,147.20524013108 +147.062848168476,146.174571265355,147.210697286729,147.110205041986,146.433673461777,147.207925027325 +147.063571369495,146.196076676337,147.214654842727,147.12548203687,146.441786627806,147.210496447659 +147.066962180547,146.189305808584,147.209267040976,147.125176728237,146.432243708209,147.205339676952 +147.07584494555,146.202803470327,147.220460588426,147.139835077623,146.453594930758,147.225543094563 +147.076376324723,146.210493126633,147.216371550047,147.143138648832,146.455049940973,147.228615766643 +147.076715877242,146.213603580871,147.221562598372,147.143016181517,146.467398545992,147.234499915295 +147.071184748367,146.209460088271,147.234975024363,147.144877361498,146.455864345157,147.232664783326 +147.089900507665,146.213620702402,147.236134214381,147.150425798479,146.454482745521,147.237751385325 +147.09606348185,146.223706922528,147.226818964906,147.154047759366,146.466879508348,147.242066559921 +147.099955547363,146.236603414997,147.243186572958,147.164870426774,146.475389414837,147.26213070613 +147.098351534474,146.233383565885,147.238579137448,147.161880266837,146.472169221796,147.255443994689 +147.086552061829,146.238907721236,147.249881393273,147.180112690831,146.468918006125,147.259584494708 +147.097696842927,146.236885716688,147.240003627162,147.170928280522,146.476133639904,147.257330547878 +147.107412355586,146.252832441665,147.257343609089,147.174868645888,146.488386901768,147.280908432833 +147.109443291933,146.245163829262,147.250826707596,147.180364920044,146.486953062115,147.277163804252 +147.110563244836,146.250670891527,147.250560574875,147.177557591815,146.481606175196,147.287293973378 +147.120008618472,146.261036355366,147.263240906675,147.188158340866,146.488508488116,147.283340351888 +147.122889333466,146.265070595416,147.272590578805,147.193118321016,146.504783433161,147.295924529752 +147.109634294944,146.24373829993,147.261644936267,147.193030972889,146.493841507768,147.287289069253 +147.11386188949,146.264359866616,147.261252270878,147.191945259664,146.496682255945,147.282275814433 +147.124026436706,146.26389801713,147.270262337228,147.203496281686,146.505227376062,147.290130814527 +147.120604509546,146.271561794056,147.269381493549,147.207004865869,146.506194427508,147.291098201705 +147.132438426704,146.272075868899,147.274054299405,147.209367326365,146.515946566689,147.307784663675 +145.666724717412,146.325385225029,146.87435918037403,147.1801688346555,146.5491449944875,147.469708454125 +147.33179619807197,146.35129535413301,148.554387658682,147.32460243571649,146.9063636356355,147.5312016882345 +148.211448783508,146.40975022652702,150.309554589382,147.3655178716035,146.95167436036047,147.61649415470148 +151.063251283587,146.46414496759598,154.278162296473,147.46867460612748,147.3469189864715,147.7453300732255 +152.65895765055,146.52786668482003,156.430683823967,147.57885445576048,147.5872387722555,147.81764072899048 +156.32285130493398,146.62963453377,160.143340498418,147.68319811586449,148.4121283303055,147.91577229531748 +158.07126489493098,146.66269359751703,162.29013568050402,147.6765279705715,148.91065938897748,147.95000679882548 +161.964130475114,146.761120332664,166.223596746485,147.8239707005385,150.21199493977946,148.02561177935948 +164.568329165727,146.81036347717298,168.306602400751,147.85659389316248,150.7773241578975,148.05639413567047 +169.01072396401,146.93635496524303,172.32064271164802,147.99117718975148,152.3415857214565,148.1461709762385 +171.26129745726598,146.98786870451698,174.279868712861,148.0676653813545,153.2413422618015,148.1732134807985 +175.318057094383,147.11003904613403,178.052093442973,148.1988908466405,155.0127470258705,148.2630911755945 +178.524154884881,147.17951952205402,180.00936699803503,148.3136928121275,156.0380652212275,148.29747455612548 +186.61548308855998,147.315043272502,184.19750119081203,148.47561471906948,157.61162426628147,148.39885766890748 +189.42521293397198,147.408310709724,185.093567555905,148.7903561166365,158.8320647409925,148.4605028582875 +188.51214338318098,147.574675815626,188.54811617559903,148.7875863328325,160.9391207795855,148.5804832252145 +192.95947562557498,147.65447723441304,190.64151433418903,148.96797863618548,161.9442022928655,148.6328116732415 +195.508342492962,147.83955649684003,194.80025674821502,149.18481305063148,163.9663977852145,148.8138139726595 +197.876668391002,147.94400754382502,196.339520827378,149.38017726868648,165.1156398941015,148.87808273083448 +202.526387466509,148.18402588056,199.447506871994,149.76368518704348,167.38844020144847,149.06641133442147 +203.98714747435798,148.33534415126502,201.078144328819,149.75112323985348,168.18231355071447,149.2827701122975 +207.35734664195598,148.51112673425303,204.417686030089,150.53183174606448,170.91531258437448,149.4960938426925 +210.400267727894,148.538769594675,206.77254169513503,150.34991989902048,171.50786014656148,149.5144985809485 +211.876666181293,148.925093071736,210.30707745806603,150.6023121246165,173.84035599510048,149.9518811545305 +216.284699848077,149.12441229902402,212.099486426253,151.4223086234865,175.4359171577525,150.05483195952849 +219.089340146692,149.50750610902003,214.035822912286,151.5127251960145,176.6228655153625,150.5160541085015 +219.04561805261298,149.413234136371,216.885785956208,152.0763689433085,178.70545224211747,150.5434332207855 +221.381257796341,149.641454331901,220.32233854034502,152.6627172379585,180.9415998188805,150.60610225151947 +222.30703277587799,150.16523779653699,221.70948046370603,152.18758072715448,180.8811495952035,151.2597072180775 +227.17679618016498,150.064109679752,223.32280261057804,153.57586117103648,183.02572222434048,151.6255789140175 +236.724830192149,150.53059473949202,225.406217912167,153.0609477940895,186.21419776252446,151.7497678043825 +235.139523841007,150.502557145487,229.66600684398702,154.4114630153645,187.53367750447148,152.22498368223847 +241.609448823376,150.973216067105,232.06096576865804,153.85531496910548,188.9932641784585,152.64503679661348 +240.943144112932,151.326850890946,233.71971562412904,154.3571067155585,190.6107452220465,152.3808860363815 +239.761610582404,151.385821429043,233.95248889846698,154.96063223499348,192.03786947727946,153.2262977623515 +243.178707928927,151.59500996022803,235.268304396619,155.1385654098935,193.4564677790645,153.2943555228765 +248.68839723963998,152.23916855347102,238.97108763022703,156.0690915381745,194.5359408667485,154.00382264031649 +246.566417702494,152.19616039797603,240.59773454084802,157.0311005176885,195.7244098207765,154.18296402237348 +255.624981464271,152.54903876120403,243.784992178751,157.08401086727048,198.5334090730455,154.60795166739348 +249.938451113747,152.67013591272303,243.342953401611,157.3152194192465,198.76065141060747,154.8855709849365 +254.39890463948998,153.32607709710203,247.719203509715,158.2394180411045,201.1063109897205,155.2393529322925 +255.49774542539498,153.31183541539804,249.05295184418003,158.0451392383335,201.7236299037595,155.5945750532035 +263.059379998774,153.75488920948902,251.28837164962698,159.3717837267215,203.83626670654746,155.81336400851148 +260.093553585848,154.149748196475,251.129578466358,159.01754355497349,204.1027291023505,156.08216918418648 +263.154634029274,154.460965764859,254.885982029631,159.7288914721915,206.02383051001647,156.6046202816485 +268.455189990102,154.54604601084299,255.564789702709,160.58942408543348,207.6354633138115,157.1271513897275 +270.46168742275,155.086598238217,257.193075071071,161.1486505882495,209.7224544613635,157.61856348552948 +267.89209029577,155.114308494446,258.174669806408,161.1787351276895,210.25272877161547,157.79777759836247 +273.61637898758795,155.44275168420802,260.594978010781,162.0667906423935,211.93192193305748,158.2761781745575 +272.80206827188397,155.65815892290402,261.36702940067903,162.3009824060905,212.8943401426455,158.58345182567749 +276.231450390007,156.091428350343,264.16033530402797,162.8484832838355,214.34516189575749,159.16568538402248 +275.29331236212,156.230937387464,265.282818060692,163.2575369241255,215.3142342068225,159.3886617012895 +279.510275141899,156.696035080294,267.354080707987,163.7642579270825,216.7825837172045,159.9271410659095 +280.103264234374,156.860386322061,268.343272443604,164.20966452069848,217.7319550324255,160.17199182062248 +281.084631134095,157.149802976356,269.894806469568,164.75186206927748,219.1436444302795,160.7055127382455 +281.089614641127,157.48606593801503,271.801733838136,164.92404741907148,220.13125510326648,160.96437008198848 +284.275808248958,157.71912638720602,272.735357759092,165.7359620315815,221.5948415248555,161.48310328776248 +286.696263449896,158.109568856336,274.484774757117,166.3155920535595,222.9508763500445,162.0043109121875 +288.296092992417,158.329023293357,275.837539280548,166.7024873565135,223.8842886527055,162.25236880949748 +289.703144571326,158.696754647489,277.382549235275,167.3277816833255,225.42906146809548,162.77224593137348 +290.314867952944,158.85859594527102,278.414473835638,167.7714115423795,225.93204672067446,163.03419147394348 +292.561611413706,159.224444918041,280.397539321698,168.1643837547505,227.29214326817748,163.5027361447935 +294.01328168099997,159.41577565508402,280.829173828546,168.5275909969975,227.99461522432847,163.75960686322048 +295.029897240403,159.753431238779,282.687549282209,169.1661335740345,229.5024454104945,164.26990436745248 +295.73135178226397,159.91490525492003,283.49487126792,169.4182556064965,230.1963199143845,164.5257203724685 +296.73838954018,160.26584513961103,285.009469509264,170.0150262459355,231.41082748619948,165.00287472005348 +298.077503578521,160.43191343914503,285.856257841752,170.30202157798948,232.0824432145355,165.26354503189148 +299.48026184530397,160.76955906551802,287.252638902186,170.8824863221935,233.3595896407785,165.75113366544048 +300.63968330591,160.920940202564,288.214594118795,171.1610649206725,233.9561663290525,165.9622414796885 +301.909241770746,161.26242461100298,289.539503237746,171.7312190027495,235.16540853333748,166.4664953343845 +303.793797272887,161.447808118894,290.316583428172,172.0073528619335,235.82681517399448,166.71724667882648 +304.883318840411,161.76453674117704,291.761509724718,172.5787960235395,237.01793280694147,167.17046333997848 +304.659844699649,161.89861193371502,291.996829916899,172.8205081705595,237.6213045091405,167.3882221185345 +306.490038577283,162.248839047049,293.609646558426,173.31520090257848,238.70735347338046,167.8326749884985 +307.198266866195,162.43718440633,294.140921744065,173.71795818620748,239.4134713160575,168.0875784989915 +308.366625338024,162.706432986035,295.436418864162,174.1373203171195,240.3516396188205,168.5198151039405 +309.116835918264,162.86648017628602,296.071971198909,174.4674931666605,240.89020779128447,168.72871129423447 +310.684874296119,163.16134433385503,297.563990911135,174.9637757020465,242.0256399376495,169.17917894488048 +311.426416847718,163.321981017886,298.008363057101,175.2288816232715,242.5660035952415,169.40984744017848 +312.521094555694,163.61604356178503,299.352432601939,175.6791908782995,243.5503532895085,169.7922849824795 +312.934022707711,163.779536486508,299.840256822233,175.91525551695648,244.14068675821346,170.0283812849055 +314.207160527435,164.05322251092502,301.077083899964,176.41106161992548,245.1648022413475,170.43929557904647 +315.063018756068,164.17818948038303,301.593686325249,176.7140324745995,245.5962626477015,170.64729378056848 +315.817972268713,164.465462956487,302.660502275938,177.14334097424148,246.45839612120346,171.0452985612665 +316.307005224169,164.61828648046202,303.300927725894,177.3433248782875,247.00786911934847,171.2525722763125 +317.714574686392,164.87568062623103,304.084404730598,177.81979362903448,247.8844528506795,171.64557228912147 +318.398948764412,165.182193603626,305.508044536054,178.3093834786555,248.75984302417146,172.0130435242985 +318.580825090398,165.294453642725,305.663979115913,178.5211310273185,249.2012198409475,172.18878217284148 +320.21132689947297,165.554127565753,307.056006174071,178.9334945237225,249.99744487909248,172.57360595937948 +320.76930605905,165.69437149268003,307.140287603263,179.1658310579125,250.4759733541925,172.7685261599865 +321.80251192712296,165.940080340684,308.144780632875,179.5730513083725,251.30947989520746,173.13238991496948 +321.356913531681,166.06972923910502,308.612382536221,179.7821880080035,251.7759274144285,173.3178681071465 +322.936031356881,166.308523378043,309.790408470287,180.1915638700325,252.5298731400065,173.6280124468895 +323.053400808365,166.43644577223,310.05593186553597,180.38755145761348,252.9477183150875,173.8329538668885 +323.938721377609,166.66388736252003,311.046823888588,180.77366519772448,253.6313533175715,174.1289381124245 +324.344361278691,166.778112698053,311.282650558259,180.9887806485725,254.02067098515647,174.3311125017265 +325.116858263687,166.99774364891204,312.20553684887,181.3686962623595,254.79226393896846,174.65747053202247 +325.414369365957,167.10250372085403,312.807543896322,181.54263576025548,255.1435240438335,174.8189652971775 +325.760035548089,167.33460886978798,313.58757748030797,181.92572413553148,255.8758192581045,175.13033747753948 +326.347304143428,167.423925061487,313.753253342349,182.0723030602205,256.2396029886555,175.2842879748375 +327.572166980055,167.634564399206,314.72933454605,182.4168675154395,256.8278827676405,175.58418224765748 +327.701066762984,167.73952329497,314.749559972585,182.62572263661448,257.2294576639555,175.7284115756585 +328.77445302207997,167.93578561313103,315.852443424912,182.9752196550925,257.8859714072615,176.0202000806475 +329.329082520435,168.030432903737,316.147928373763,183.14647661821948,258.0741873189695,176.15061078733947 +330.12099266066997,168.230275638759,316.487566884502,183.46296740863448,258.7697718661205,176.4310787092235 +330.47476826597,168.31083049743103,317.39185863402497,183.6194047152415,259.0567610569815,176.5767284711995 +330.71260585032496,168.521474139369,318.044971658638,183.9262002266055,259.5996019531915,176.8386619634805 +331.230804184448,168.59284658064803,318.260554498859,184.0664450327395,259.8790812484105,176.9720905343705 +331.76031048142397,168.778165335135,318.803620051887,184.3769948702745,260.4896745677855,177.2128582776395 +332.292107009878,168.86311447782703,319.068262835207,184.53643017549248,260.7629711081955,177.34194488668948 +333.06446703095696,169.04082235753702,319.68312017172,184.82163761953348,261.3018460346865,177.5846422136915 +333.36371957590796,169.12953384813198,320.18698541169,184.9901983763505,261.5395417880585,177.71283690303048 +333.305832846258,169.289774120331,320.463299117206,185.23343227925048,262.0968887966125,177.9387427642115 +334.38347782267397,169.373616861316,321.061278649453,185.3982782820555,262.2730245253375,178.0667218990725 +333.97700309751997,169.52295486786699,321.520792299495,185.6420056828635,262.8099574453845,178.2868370399005 +335.780636881067,169.692010244269,321.854246288627,185.9220236084745,263.2943435759875,178.51294799521148 +335.34164132616297,169.753661160082,322.219753502637,186.0350405242405,263.5488319363905,178.6133494464935 +335.961336937968,169.90885395475703,322.975280601395,186.2725025703285,263.9539564727195,178.8297735221305 +335.74202281900597,169.98627873497298,323.234191240101,186.4090049967995,264.2715837647135,178.9184754950475 +336.839663771559,170.121658250723,323.993746063049,186.6482917704775,264.7020272395965,179.13603032283748 +336.98619473059097,170.18716040150503,323.92789127976397,186.7572366323295,264.9394216091745,179.22793904788148 +337.363144613434,170.34674367573302,324.628522688515,186.99395507469748,265.3827038117915,179.4245250666705 +336.265326742049,170.40697058629502,324.556489687851,187.0799024344035,265.5284477433695,179.5097536458425 +337.920937554939,170.547542204337,325.008513611434,187.3320674113275,265.9268869454875,179.71293371921348 +337.665909846244,170.58819545264402,325.546020279061,187.4468862545225,266.1296444011275,179.79790470340748 +338.517335753588,170.723875323328,326.041736527712,187.6615202428585,266.4986468662065,179.9665951799365 +339.125432981653,170.80285297038301,326.016781863899,187.77113232113348,266.6437646748575,180.0677990352345 +339.059513922566,170.917459188417,326.373993266767,187.96256153271648,267.0593809009175,180.2517393859435 +339.785002390363,170.985280777637,326.74815405593097,188.0521441118425,267.2822044975025,180.31055029754648 +340.07360049728396,171.101651657998,327.114593934577,188.23811099238148,267.6278504778715,180.47994553222148 +339.803668919359,171.147609587501,327.168988842295,188.3370280562755,267.7933751519325,180.5786159447155 +340.489199527586,171.26942511454,327.497275216908,188.53939481623348,268.1151782407055,180.7173437214585 +340.29297018645497,171.325006648694,327.702764553665,188.6176493271885,268.2825637308645,180.7764816396915 +340.388992444164,171.43027311531904,328.24521031687897,188.7959847749425,268.6163139733695,180.93638943666548 +340.385561025124,171.48256675369004,328.247591619045,188.8739749767035,268.7731867603665,181.00132291334347 +341.326817271829,171.58479682702904,328.657288210517,189.0611514502885,269.1048121365165,181.16075350373848 +341.623181565748,171.628369281064,328.78977893079,189.1283111167825,269.2136312996355,181.2092661381725 +342.290217262068,171.72729461028604,329.211664182029,189.2772191847025,269.5215351035495,181.36748497512048 +342.16281611422,171.780188147854,329.44598204299,189.3581365124245,269.6523674710095,181.4148418655465 +342.09069714098297,171.882954753136,329.694187909708,189.53395704327448,269.9503380261795,181.5708464490175 +342.72856554389,171.91620777511702,329.87458272488,189.5870542702775,270.0302120779805,181.6043672042215 +343.116363277895,172.015520037148,330.095558664453,189.7703656397755,270.3206800371375,181.7466597250955 +342.75498073722497,172.05661395411704,330.200620708283,189.84715711887148,270.4254360434235,181.7987483719455 +342.842501838519,172.13657140007604,330.652405913129,189.9621526707945,270.6874541341035,181.92073323804848 +342.34506508116,172.228323481995,331.035760393465,190.1099260590785,270.9824973996025,182.0454360445695 +343.411772064648,172.268909362562,331.190318462727,190.1321431999025,271.0785595363925,182.08559680955148 +343.545091295948,172.34582995434403,331.430384514601,190.3028183617995,271.3157637083255,182.20151115149548 +343.548570758856,172.38088202672003,331.434975350532,190.3607415609995,271.4311487541435,182.25011417977348 +343.770746230662,172.46631240945902,331.778275316953,190.49658832138948,271.64326167461047,182.35287381881048 +343.915116250346,172.494692795493,331.99766426059,190.5438708677475,271.7303521853975,182.4113437913625 +345.518662752954,172.59122056014598,332.073244049531,190.6756758677575,271.9137813289275,182.51239370381847 +344.469348789856,172.612217415518,332.080428377103,190.7300146884515,272.0544564886965,182.5508887587375 +344.287905658036,172.680695005556,332.62591776154,190.81859473001148,272.2867390291105,182.64483371881948 +345.358817967182,172.72080498221402,332.449003207002,190.9114039904215,272.3196887620445,182.7113156292335 +345.136882518476,172.755437366465,332.747552742311,190.9798553554675,272.5257814482345,182.7753441277715 +344.81897738146097,172.811392622999,332.81658614834,191.0517051228025,272.6004667494435,182.83508138184348 +345.580788588349,172.86455886793703,333.062807978768,191.15338552756248,272.7701657179155,182.9034456061375 +345.616625454557,172.900272721904,333.235166120151,191.20847043341448,272.8335190573165,182.9711196989045 +345.33312216096897,172.95455545991,333.297233221301,191.3201213251885,273.0419258115505,183.0464270819245 +345.60382680486,172.99612995995903,333.57382315723,191.3857310336235,273.0937477580565,183.0857099556335 +345.602823473968,173.04677178717003,333.74931260901997,191.4513273060195,273.3176297391725,183.16226643153348 +345.848679169592,173.092036950023,333.827273638408,191.5162022687805,273.3938949949575,183.1947560096555 +345.10899724130996,173.12846806560003,334.068116393422,191.5687404218025,273.6125276440745,183.2631474115955 +345.99470996478897,173.165294796127,333.967086061798,191.6391501392315,273.6433939377505,183.29674518549447 +346.586735251733,173.21445740063,333.916919481373,191.7156134185635,273.8181872955815,183.3720533366115 +346.415898024075,173.231041254896,334.433004210931,191.76389961795948,273.8705959692815,183.40916006496948 +346.996793594069,173.28286222349902,334.440492448744,191.8320707033235,274.0055790204585,183.4645234214365 +346.849058417688,173.309774457162,334.581390733957,191.88673131131048,274.0401606604325,183.52012427682348 +346.687330282919,173.363783818939,334.768100032321,191.9722368178095,274.1720515248545,183.5790758042395 +346.669253814432,173.36892380135504,334.620661706084,191.9957882103295,274.2282710480665,183.59866915401048 +347.004509867813,173.43084139048904,334.876290515309,192.0689349423025,274.4258588653305,183.6676329461015 +347.005120928005,173.44358609197002,334.891623448203,192.0828537897475,274.4817691081575,183.6850497919455 +346.583169441278,173.47873630883203,335.136094193409,192.1653291441265,274.5914311250165,183.7451668010235 +347.676444857628,173.52783094334,335.096132679802,192.2393895191945,274.6881477373365,183.8110836758065 +347.598558234568,173.54535131741198,335.245636314903,192.2785913264975,274.8051149749305,183.8255896936885 +347.275890509384,173.58429347906701,335.143530859507,192.3501804268635,274.9091629448495,183.8736544284935 +347.817883789713,173.607542897256,335.370789596831,192.36995045120148,274.9277064459795,183.90111875739947 +347.50159421198697,173.650790901113,335.604704260058,192.4367603916225,275.0382037677745,183.9600180744995 +347.875803121241,173.658154153979,335.702087376118,192.4513515271815,275.0983789375645,183.9729807658205 +347.598701444847,173.693823887703,335.887468368512,192.50079159534448,275.1469009997165,184.0254603720955 +347.83944874355296,173.697553857204,336.177622896966,192.54390094602448,275.2087490291755,184.0331553261375 +348.034009510376,173.733469825854,336.056802166728,192.58962590584548,275.3127802148015,184.09799972381347 +347.626432132153,173.759294291257,336.023774061616,192.61103978292948,275.3213666498805,184.09960906671847 +348.396349865001,173.78741222273203,336.080589492101,192.66247516367648,275.4017247289215,184.14965719781148 +348.20679676463396,173.80024546337802,336.179411198718,192.7060720026695,275.4273462874535,184.1699587630125 +348.213676940876,173.82651391512002,336.260322836745,192.7381815517525,275.5813265529945,184.2058042101445 +348.701802896446,173.83211997314203,336.449003811302,192.76522667022348,275.6295871441485,184.2193385998395 +348.404864424096,173.879885885154,336.418704735525,192.81255550148148,275.6404887049975,184.2722713794145 +347.996662000756,173.872425737124,336.41579726215,192.8013629485775,275.7213365515025,184.2606101598515 +349.098874256217,173.906506124823,336.615462588761,192.8704128676865,275.8111041453485,184.3194219670615 +349.605572757612,173.92831994370903,336.424056850681,192.88315279879748,275.8375291470435,184.3275039258295 +348.976392219398,173.951306919312,336.56470759028497,192.9536837944815,275.8900065772625,184.3549377507695 +348.835881081502,173.96007642519004,336.640673737865,192.92960641104148,275.9408848188905,184.3779304450485 +348.360319759983,173.97990013358003,336.854551181278,192.9801965654215,275.9644669966825,184.4077915133145 +348.79241469766197,174.003462826962,336.75023475060897,193.0084325469995,276.1028748013265,184.4479199563815 +348.431537178822,174.01807587931603,336.786973376991,193.0328395105075,276.0681721095035,184.4362103525505 +348.960409886879,174.03057563377604,336.890590697765,193.0348617066915,276.1398842639315,184.4638684727095 +348.63042958011,174.05597502322303,337.017484233133,193.08963210016748,276.1799822034515,184.51725439272948 +349.043535402771,174.069072385509,336.996801838298,193.0838645142595,276.3068429861625,184.53502334083947 +349.196369961897,174.082477314708,337.034834540017,193.1061304579765,276.3216892144475,184.5454094473385 +349.153795678769,174.09838225735604,337.049395458343,193.1481389205215,276.2884720372315,184.55153911587848 +348.870382772808,174.122969077984,337.029903821721,193.1841554975915,276.4448390275385,184.5845354653545 +349.586197797381,174.138874114479,337.282599998456,193.2457346618435,276.4150198144205,184.5962583365485 +348.92561426310897,174.15286354569201,337.168232998039,193.21662882303048,276.5669618620245,184.6035004939385 +349.438185976213,174.160991847118,337.293967196675,193.2604085061685,276.6525216412355,184.63680466000147 +348.64455961335,174.16013072238002,337.263710860748,193.24836354338848,276.6027812595595,184.6312818509795 +349.316277094548,174.17424760293403,337.287261385481,193.2955719697645,276.7143113890685,184.67011326703448 +349.067972110052,174.203307448803,337.393569747157,193.30577503441148,276.7744849691015,184.6833487725495 +349.40197852553797,174.21800003374403,337.39492862187,193.33748316393948,276.7747327779685,184.7048114294145 +349.923634550913,174.22285067627104,337.40247150435397,193.34653003187148,276.7937110448025,184.7187548581685 +349.771231745534,174.233856987051,337.35169465217797,193.3491544886835,276.8329358450855,184.71392243882647 +349.530245588571,174.25306197348,337.535965926927,193.3818823561355,276.8672266012715,184.7338416846445 +349.482758752676,174.25336075676302,337.64416231839,193.43413679707749,276.8885705050245,184.73693730519147 +350.101744361591,174.26148918116104,337.719275938386,193.4112824122305,276.8665902107405,184.7513644673415 +349.956599664017,174.275171328343,337.604623873984,193.4177488904845,276.9210922520165,184.7487438184985 +350.199110254236,174.27783834432404,337.658233689824,193.4455794945365,276.9433796523755,184.77634930316248 +349.987799756799,174.29351531163002,337.609924410948,193.4680207304485,276.9199092211565,184.7747927990215 +349.56865531572,174.299881867878,337.582799640871,193.4904662402795,276.8690507036975,184.78862193328948 +349.878514759878,174.316200322391,337.67445044696,193.5186747577215,276.9435463839855,184.82662678754048 +349.785358575197,174.31612565907102,337.678837995678,193.4913411026345,276.9833155342355,184.8384376409245 +349.832130716628,174.33115240508602,337.894099741444,193.5184902318805,276.9974702015605,184.8383277824635 +349.557114576463,174.32230780209602,337.727117413168,193.49356554857948,276.9900042849485,184.8217856445605 +349.99097561684397,174.34060792993404,337.905604529139,193.5235236547945,277.0229603628095,184.86899824098748 +349.834312550194,174.351359513227,337.95513531139,193.5310186538035,277.0605756472385,184.8790589998335 +349.69882197488397,174.36324480708703,337.912785052209,193.5664407702845,277.0515296841415,184.8774365462735 +350.176314033259,174.37002443150902,337.91102676206697,193.56926292764348,277.0836990298215,184.8667426082705 +349.589062971569,174.37962060132799,338.05174762496,193.5753689161495,277.1007232776315,184.88287158982249 +350.22185691218897,174.37399213871703,337.866892611161,193.6049179199265,277.1468621016425,184.88283200563748 +350.332115595899,174.383302709002,337.84682354310297,193.60840834671248,277.1332764776805,184.9038022801135 +349.030111518794,174.409960030158,337.854285953799,193.64532920442548,277.2252831521575,184.93257753414647 +350.130990160283,174.41681880756101,338.145098335031,193.6170111563095,277.1871322177085,184.92219581128347 +350.300686442953,174.412921631497,338.109042225762,193.63431337714948,277.1749690266445,184.9294820857135 +349.978337085134,174.42569452528,338.131524880681,193.6645656366685,277.1982493319025,184.94879017572248 +350.305677005306,174.43070352102302,338.006125894438,193.6602577464625,277.2578946952395,184.9468114759485 +349.513512396899,174.438203937332,338.089104573643,193.6768477868805,277.2443609464425,184.97366083553447 +350.64513143741,174.449772954484,338.135180352849,193.66069752499848,277.2687339040895,184.9463191857945 +350.352338979128,174.44818239650203,338.17044145310797,193.6570094257165,277.2785052225155,184.9489223307665 +350.172183435643,174.47330214580603,338.20608099752,193.70800121964348,277.3246494991185,184.9789552374385 +349.978573336502,174.46506372009202,338.410865384848,193.6918378100765,277.3499142306495,184.98772327130249 +350.354423816422,174.47620659032202,338.16360652478,193.7062473927665,277.3568966274425,184.9932813768605 +350.854771698731,174.489669509779,338.21550735966997,193.7197163262105,277.3346727905325,184.9927714385595 +350.163908208921,174.497038147836,338.305267308988,193.72312760772948,277.3515672464465,184.99292106908848 +349.63456609090997,174.490662697699,338.397473627732,193.7169823011195,277.3492184927795,184.98863825832748 +351.09079143423696,174.52286989090703,338.44056475177,193.7380207825965,277.3823322169035,185.02716211776848 +349.937518468225,174.508396524361,338.465721068988,193.7247059271575,277.3666808759965,185.0164066654175 +351.229275331957,174.515778376301,338.509345845203,193.7518941680415,277.3763451802975,185.0193661125895 +350.787548961291,174.521758504143,338.456219854615,193.7781459593835,277.3694825268765,185.0388676981495 +350.20504648975196,174.541122550892,338.512874895542,193.7937907784305,277.4276848932925,185.0479920486765 +349.173318487126,174.523006482367,338.51515026536197,193.76471690471848,277.4514965642715,185.05759544064148 +350.508060089276,174.54242328283704,338.640512443737,193.7722603082035,277.4409446411325,185.06001410278648 +350.28295381585497,174.539035631733,338.46384151556197,193.7931008189535,277.4510057121815,185.05988662474547 +349.69791014782,174.554647331392,338.442895675712,193.8171064026005,277.5012592114085,185.08180240289448 +350.397527787395,174.55494614278803,338.47661958949,193.7952725514825,277.5124132212125,185.08629635731347 +351.120233456934,174.57641488617304,338.44144051820797,193.8144207154405,277.5052136339285,185.0917006150285 +350.77137126009296,174.58079579177803,338.469709382385,193.8341799230785,277.4974760281685,185.07254662755747 +350.303455442171,174.589302567296,338.728184010385,193.8319733912065,277.5057434611835,185.0973733116675 +350.477116774242,174.59094589963803,338.441083317332,193.8431694383335,277.5141302961245,185.0841025967265 +350.76849545892696,174.59339786022304,338.571830753189,193.8488840946765,277.5484247733925,185.0965775773465 +350.925709872708,174.60421156176602,338.525561294741,193.85644067148849,277.5329070039955,185.12301373752348 +349.37300255867,174.605081636207,338.642309469049,193.84030386862148,277.5274155418195,185.0956852714565 +350.012365578477,174.61792083096003,338.575688018038,193.83264654470648,277.5319720103235,185.11925433379048 +350.543965922591,174.61388726881302,338.678602077967,193.86332471067448,277.5638108124385,185.0958745413255 +350.79006046782797,174.61403683885004,338.631933901619,193.8741912167045,277.5881722988175,185.10604541985649 +349.46019866349496,174.608245757158,338.814079614658,193.86350523694048,277.5841285847385,185.1156314200485 +349.645616454035,174.61909455975803,338.525986808175,193.89043384692948,277.5609502457445,185.1435009972475 +350.73763833977,174.637817200396,338.71666541172897,193.8870315754075,277.6090194137445,185.1352035401315 +350.769090406182,174.64688214233604,338.804028286535,193.8867812357095,277.5981393526325,185.13961414232548 +349.870777882904,174.63694745584002,338.748377475314,193.87288188057548,277.6154162864775,185.1352653584325 +349.706037058937,174.64230403270602,338.593677910855,193.8931510771115,277.6385007008375,185.1278080722895 +349.805036523497,174.652664918798,338.791730957403,193.9046810773715,277.6019486279255,185.1412062557325 +349.56326036839897,174.65777092987202,338.771429909223,193.9302909250775,277.5987633355355,185.14841348396249 +349.771687625041,174.64977840086402,338.836446772072,193.8973668575535,277.6652271393665,185.14344473889747 +350.82446941265397,174.65436590103803,338.703973243914,193.9073146523765,277.6287226811725,185.15246358882348 +349.91251705490697,174.666752630092,338.800088446578,193.9241329280095,277.6652018651465,185.1753467289695 +351.133832436765,174.67560660571303,338.573170516743,193.9395137535725,277.6656588817315,185.1576393607405 +350.687836073491,174.67644166223,338.689661231508,193.9126251952805,277.6961169423065,185.1682631809025 +349.931533413368,174.68868787717304,338.662373840619,193.9027437545305,277.6358244794065,185.15301831843348 +350.480126373122,174.68164869641203,338.808105101421,193.9248235655015,277.6805829215695,185.16088926392348 +350.89968524806096,174.694426631721,338.73964365978,193.9387714966355,277.6979790565435,185.1881257246985 +350.791919856974,174.692827372983,339.15382003904597,193.9460246133235,277.7496068279885,185.1667159407345 +351.496497049463,174.67797163451002,338.766914466173,193.9353564568425,277.6928512599085,185.1842434521555 +351.53809100405,174.70205069845002,338.991910946098,193.9547856638605,277.6784571910305,185.18037397605949 +351.107218012457,174.700930395728,338.814969759153,193.96158602360748,277.6685423963915,185.1846130346375 +349.756114144952,174.69454615768103,338.993866923508,193.95030679701048,277.7118999678955,185.19197415839048 +350.675347536263,174.704164775504,338.73469865648,193.9382626639005,277.7386725410435,185.1864514671535 +350.569796495309,174.69393573183999,338.940232842434,193.9608788702285,277.6952389290625,185.18413869703548 +350.686119710434,174.72309003070802,338.671674545601,193.97769709258048,277.7462006742565,185.2042252507275 +351.62727433732397,174.728754237425,338.846505388078,193.9558726443635,277.7288481355565,185.18705454827747 +351.293045683745,174.721820538585,338.859707169584,193.9484702631035,277.7006110747605,185.19153532232448 +350.86129656986,174.72073981760502,338.601659722122,193.9506507498725,277.6721774454695,185.19884366141648 +350.426877398077,174.73041988554803,338.826032196007,193.9724492586735,277.7542286866275,185.2169206127575 +349.468159694884,174.74579922174104,338.867500921921,193.98480594650349,277.6852141306115,185.20481104885948 +350.414576692938,174.730859725933,338.993628745013,193.97615089928348,277.6967218447615,185.20128023247747 +350.016443259742,174.73395770086,338.902753363001,193.96107815312848,277.6841170668805,185.2088084311715 +351.670459706373,174.73027571154103,338.774403091027,193.99443748589448,277.7233111686275,185.2025602043205 +351.076183384377,174.74120391026003,338.97410693237,193.97927695227548,277.6898008923285,185.2067378443085 +350.25937249150496,174.73659902601003,338.877641695381,193.9814264968685,277.6957361910005,185.21611269926348 +350.986145340024,174.74855110854304,338.886629626094,193.9940821492805,277.6865304859915,185.22807344437348 +350.912725669042,174.73644577730204,338.779194316219,194.0041045475125,277.7465061410715,185.2031415175105 +350.64502210170997,174.749605922412,338.889199543301,194.0116784435505,277.7540895250155,185.21957391732448 +350.501119180703,174.74430694938803,338.90106818605,194.0133666027495,277.7211047575785,185.2231270571945 +351.049686620163,174.75617128411602,338.87787427895597,193.9986766256395,277.7459859784635,185.22847454197048 +351.110535489872,174.749571414221,338.825862094971,194.0104790586135,277.7551875074045,185.2160436143515 +350.447881585516,174.75513016339602,338.97874308411497,193.9985669943215,277.7682834732785,185.23325895192949 +351.460919620615,174.749831195463,338.853750791862,194.00444867581749,277.7773912507935,185.21467222440847 +350.88341526409397,174.76454697094704,338.921555149514,194.0051917587085,277.7778867526745,185.2370893317665 +350.770044742938,174.762222712283,338.832175787121,193.9998379578525,277.7496034068775,185.22893711106448 +350.96168684533797,174.75586486715804,338.684544387789,194.0069900858315,277.7626609553035,185.2167483883875 +350.547427087831,174.759323111975,338.493027851262,193.99111291324348,277.7232500201745,185.2239379540055 +350.313163124709,174.765242114304,338.777556319773,194.0189336382615,277.7382803521585,185.22566630715548 +350.67205108101297,174.75358934870303,339.09986085406,194.01822610438649,277.7649757826495,185.22216191801348 +351.633611219857,174.773327618593,338.905440341479,194.0030260574445,277.7418376576625,185.2290966169455 +350.668607067362,174.775845733648,338.95042440858,194.0216202498875,277.7309326582325,185.2337140087715 +350.876637421042,174.763529300625,338.895839113038,194.0167542223745,277.7325424343395,185.22931243762648 +350.720491517221,174.780147766116,338.777111570452,194.02406014372048,277.7314922851405,185.22403605922048 +350.458302937533,174.776250691752,338.84716295163497,194.0089788972555,277.7410572819545,185.23761502888448 +350.57760179559,174.78032845005401,338.842595628409,194.0163198315255,277.7217104186635,185.23330587541548 +350.65084999058297,174.79224969727102,338.719593788097,194.0091418660445,277.7477784027275,185.22868905020448 +350.515146609498,174.77757400853102,338.894347434561,194.0105356931855,277.6954978110965,185.2270536803805 +350.816140784476,174.783308342667,338.818030632503,194.0025268270845,277.7354687985645,185.2432794534295 +350.954312766923,174.776581699872,338.956032598617,194.0321413361485,277.7612936393385,185.23561576197048 +350.323917503273,174.78251793408504,338.858065469839,194.0140836717415,277.6950970557895,185.2347977813505 +350.12104423805397,174.785334932184,338.864773984384,194.0176006616295,277.7494322541875,185.22899390640148 +351.639765273129,174.78301069562002,338.86656160906597,194.02133282512548,277.7311060694905,185.24158328403348 +350.999731083878,174.78741370384904,338.739484843384,194.01455482830949,277.7822293658215,185.22851060818348 +350.954667371031,174.78929457307004,339.061148219998,194.0259882853165,277.7143555547535,185.23575301039148 +350.875946025892,174.80426114898,338.895371472295,194.0111400545435,277.7135105649515,185.23348452928548 +350.438938342734,174.77886820390404,338.88667009541797,194.00856876564848,277.7438271486705,185.22834880777248 +350.609453769077,174.78957688503704,338.820686991586,194.0230090907025,277.7125931326145,185.23417111448248 +350.680591683641,174.805351651926,338.682202874697,194.01689042296948,277.7200016215885,185.2399359949215 +350.689018347117,174.80250029425002,338.91174108384297,194.02126013462848,277.7629442953245,185.24057836349348 +350.849452374848,174.785697670425,338.88384495988697,194.0216910981705,277.6995448597895,185.23751370262949 +349.92955740996,174.79701266495402,338.700078577938,194.0288168833765,277.6575839308615,185.23368848921248 +350.815938270225,174.78100106896903,338.83254004532597,194.0039462361275,277.6777813716145,185.23211456777048 +351.09724190496,174.79322120899099,338.755297298625,194.0152391459205,277.7102505533885,185.22966125973147 +350.918583304591,174.79542272401,339.001927970002,194.0335165924655,277.6793488762685,185.2383897933575 +350.72074153033196,174.79554610005601,338.703801741902,194.03480487626948,277.7054942622095,185.24177597697448 +350.745780415298,174.79885068801502,338.73103890867,194.0059605125235,277.6654804853715,185.2273710343045 +350.910305622042,174.8037854698,338.754263614345,194.0157895931495,277.6044187404475,185.2360381766435 +350.815779609195,174.79527431229803,338.864702551565,194.0124006043875,277.6653997184655,185.2361438129205 +350.561222654073,174.80818457471503,338.697397405718,194.03044114734848,277.6960502794975,185.2334488934395 +350.601586563264,174.81001269619702,338.83467443050597,194.02667862183748,277.7086895460065,185.2408715566495 +351.021728882863,174.810834740933,338.691240585907,194.0039707447015,277.6133060328295,185.24402470361647 +350.692942198879,174.805896017632,338.689857041877,193.9973993374645,277.5987749996335,185.2327900561765 +350.680330690029,174.809737006668,338.729644749357,194.0231412146575,277.5438909897565,185.22777784561347 +350.12516959593,174.81176307109604,338.662482088908,194.02027562156348,277.5732447294275,185.24308928752248 +350.700350367027,174.81269460972203,338.773936381581,194.02190642894448,277.6438553455045,185.24122487664448 +350.948227121333,174.80586251042604,338.626295320431,194.0041220313805,277.6229582357625,185.2292607548325 +350.416329893514,174.816759947572,338.935419895514,194.0173533161675,277.6281166885945,185.2278142719465 +351.15350072532397,174.803257286227,338.769138629484,193.98264499970648,277.6100159908685,185.2310816388465 +350.6765423819,174.82231888701,338.465052215142,194.0101008555595,277.5905187880685,185.24153398217447 +350.434797192377,174.83416573592,338.65338648473,194.01612783961548,277.6022578412495,185.2370756915185 +350.403356093673,174.82394983106803,338.548201073145,194.0282734616545,277.6160932853715,185.2447974509195 +350.960271710771,174.82029430528104,338.72236294249797,194.00970631970148,277.6091461392485,185.22645707830648 +350.804823382304,174.821568955298,338.680561503402,194.00515713154448,277.6241900688135,185.2391521551065 +351.320978068034,174.83923329552903,338.703264849973,194.0067529924595,277.5963192599505,185.2430790678125 +350.610080882872,174.842397430904,338.519046592447,194.02762422509048,277.5661253517175,185.24531325096947 +350.522683089419,174.84878237993001,338.534743625072,194.0300510205315,277.5105443651225,185.2367874558255 +350.87819546816,174.843637160433,338.564816412867,194.0165168765295,277.4270080314525,185.23606655186748 +350.890217983533,174.85827869886003,338.709234360549,194.02953305343948,277.3387075270785,185.2395320319385 +350.745825419351,174.83709076063002,338.46737722733,193.9983193862505,277.3031764239165,185.23627397939248 +350.986802445614,174.84285624151204,338.504996155949,193.99080757195148,277.2972364287335,185.2357511798305 +351.426073323131,174.843181508359,338.697681740359,193.9911329610085,277.3267507292295,185.23444531875347 +351.509094069905,174.84761567145404,338.733578975183,194.0118768860505,277.3217802931925,185.23072583944648 +350.710656212835,174.87049129655298,338.552179401749,194.0256750749625,277.2903699303285,185.24266428587848 +350.62459566692996,174.85777575476902,338.493195711484,194.03415531300348,277.3198851065255,185.2485838366855 +350.450741668514,174.87688563090103,338.710325958044,193.99642695456149,277.3393632467605,185.25395722542348 +351.172303087353,174.88366189370004,338.443073186131,194.0213775929405,277.3065656515995,185.2530475840305 +350.65843240286,174.87445201047103,338.44651804836997,194.0207842981495,277.3141375731805,185.24499644448647 +350.70790449071,174.87926427900203,338.67827462968,194.01558052307948,277.3054604051055,185.26309604631447 +351.143865376842,174.88239739201504,338.618858338224,194.0042704849495,277.2815705534575,185.2466550585615 +351.05524376238697,174.874220812935,338.448080103034,194.0144957288535,277.2799613083625,185.24965916203448 +351.17138675463497,174.896911742214,338.62539493053697,194.0439511809695,277.2830018636355,185.25838303715148 +351.277978130374,174.89636294873202,338.671681047317,194.00892227521248,277.2684350549765,185.2545711374365 +351.441433150983,174.898569209423,338.729520108667,194.0344265905815,277.2735218468185,185.2586433643005 +350.955390528104,174.896477913007,338.560111784802,194.0295388634045,277.2714892903705,185.2577158507215 +350.654030698355,174.894545003911,338.64943317083197,194.03948683133348,277.2668945148015,185.26184091472447 +351.214484044755,174.90509092652303,338.506831167309,194.0470079546895,277.2513407039765,185.27309342253048 +351.105193338197,174.923318351925,338.759672973044,194.0573209212495,277.2781100417825,185.2733887000195 +351.204345934139,174.92059438737203,338.82438324715497,194.0385209103815,277.2754626002635,185.27252723501348 +350.866471828287,174.925955508512,338.601033113622,194.04807746262148,277.2815784911515,185.27183278115749 +350.913221322243,174.930024899768,338.509743425024,194.03933485808648,277.2762533966385,185.27473976816847 +350.810606699593,174.93589610735899,338.632393368087,194.0403157644005,277.2783381298485,185.2845769622685 +350.663739627138,174.934019801047,338.660467586509,194.0780439781045,277.2459577007125,185.2892247820995 +351.121208777936,174.94864838813703,338.546517363008,194.0647211977235,277.2581383069355,185.2880161034035 +350.841898718018,174.936876667337,338.640242193124,194.0445582853595,277.2645786518625,185.2881217743755 +350.87620117378697,174.947053978501,338.518910032802,194.0514776329895,277.2570413762765,185.3136875992505 +351.12091511367197,174.94810904040799,338.60685674327897,194.04997038086648,277.2630464371535,185.30355692832848 +351.001133346301,174.958418373681,338.690508087381,194.0814837883255,277.2266648197595,185.2956954442015 +350.973472709361,174.95540401662203,338.671573362656,194.0558701254685,277.23075194617047,185.3033993512095 +350.934624312875,174.958880378777,338.573921442029,194.0712292737525,277.2384313261685,185.3047806749855 +350.269310011607,174.969373594165,338.396714152157,194.05563337945648,277.2427447823995,185.3054930387705 +351.03532176813997,174.97197121099504,338.431747059335,194.0764036956875,277.2477592730735,185.3113551833705 +350.63979081340597,174.972841484904,338.681799264389,194.07075107594648,277.2456625763275,185.3208489670135 +351.121486132592,174.979679205448,338.536094446815,194.0412476120205,277.2387273341835,185.3181363301475 +350.902286575833,174.98801515724602,338.50484008646697,194.10456774472948,277.2348326681015,185.3302068922505 +350.57337450755597,175.00042058228604,338.40191088043497,194.07877022740348,277.2371566601265,185.3244428967525 +350.623903850488,175.00470501477201,338.512344385147,194.08142534952148,277.2413207505075,185.32243790315047 +350.104673727269,175.00370369938202,338.444956255936,194.07459940286648,277.3170786456615,185.3393808599615 +350.788138697348,175.017716739187,338.584094335635,194.0937426587515,277.2870134755075,185.34128490228647 +350.578926313961,175.01785820778503,338.465638157581,194.1206758113165,277.3258556052245,185.35098158040748 +351.387878239391,175.02712577249702,338.467598412377,194.09406905667748,277.3113230058155,185.3495351643015 +351.248140597376,175.031973147219,338.492746702488,194.0865706271305,277.2549209816235,185.34786043393248 +351.004937371977,175.029693310016,338.302641423707,194.10572333818348,277.3242300682165,185.3693502830455 +350.623241673039,175.04407130552403,338.469551524143,194.1082247247455,277.2759593588895,185.35414062066548 +350.688943556362,175.04974939462,338.46785306427,194.1229905893855,277.3645451527495,185.38079724535447 +350.710196711302,175.046308826013,338.547262143557,194.12211153273648,277.3971889003525,185.3831806043775 +350.142686715568,175.04895458782602,338.35273369320197,194.1301165062695,277.3404598113175,185.38629428525948 +350.809004060423,175.055326622983,338.452014147155,194.1255410834535,277.2909724877645,185.3831155763765 +350.77611706182597,175.06246335273,338.49473515257097,194.1287197166785,277.3732798865265,185.3830325959545 +350.471710148753,175.05666374909703,338.424537330544,194.1429536020365,277.3465940431145,185.3963392486515 +350.955438643595,175.056290381267,338.286859080596,194.10553781547048,277.3116010201045,185.37988506714248 +351.212485864643,175.06672721895103,338.257614199343,194.1290245174445,277.3824031342895,185.39079515299548 +350.567364256011,175.09103202114198,338.3435209884,194.1479790920645,277.2978336096645,185.40253175704947 +350.853128649204,175.089959974539,338.448828545173,194.1571573637825,277.3565457650915,185.4093827342035 +350.580369026918,175.09714956258404,338.279824008268,194.14943925324448,277.3284503910475,185.41051787456848 +350.815846193747,175.09740041596,338.307929879296,194.1680947947175,277.3354844059215,185.4030781962745 +350.351969839116,175.09381567474503,338.15023185088097,194.18733987282948,277.3605192855115,185.4134741112365 +351.00093541251897,175.10400172330003,338.165332569434,194.1602541507555,277.3697396018045,185.4201713124405 +350.6630013662,175.112342603664,338.488531904286,194.1604438206245,277.3067749903625,185.42152630702248 +350.59263845066,175.11344582068,338.381025728634,194.2002202914205,277.3623952040955,185.42682520119348 +350.948710639879,175.11913722847504,338.307781344251,194.18261663665248,277.3552514680185,185.4315882605535 +351.149562619334,175.1233293184,338.114055650161,194.1767924050605,277.2871226452655,185.43368572507347 +350.61088689329597,175.11921278671804,338.358903355793,194.1747712637085,277.3030401533165,185.4531046193715 +351.074171520196,175.13012396527,338.18966853912997,194.1786968921735,277.3589124559335,185.4379214012505 +350.853239663776,175.152724277915,338.211970665678,194.1714843933715,277.3666172241775,185.46240137726548 +350.916938055773,175.14909516578,338.21986623389097,194.21514682839648,277.3524523854245,185.4624986467245 +350.062159007005,175.14775539186803,338.482525441311,194.1974988183855,277.2954703370235,185.4525350592385 +350.667641931269,175.164462584055,338.258875191314,194.2041936537045,277.3295885171865,185.4657577202545 +350.79419602464696,175.157951084567,338.261782400585,194.2081636871435,277.3060582523995,185.45924184281048 +350.620664401486,175.17040494553703,338.233353317136,194.2059444532085,277.3027704177775,185.47030576261548 +351.245931542169,175.18198006424103,338.218350409904,194.2114660231475,277.2986285395395,185.4739648861575 +350.758210852012,175.166047112785,338.23274883396397,194.20181821387848,277.3474249320185,185.48738575621448 +350.128030681414,175.18271473623201,338.38067483377097,194.21103608214048,277.3341992103215,185.4863526332795 +350.54526635635,175.18022848943804,338.372499064708,194.2052874942485,277.3098278027685,185.49155542605348 +350.9606465807,175.18539180932999,338.21894100251,194.2204700791695,277.3076028756665,185.4971883074475 +350.628664560741,175.18061622753999,338.214369785838,194.23689312092048,277.3423450744905,185.5003332843105 +351.12078659562496,175.192279018869,338.159991991587,194.20988679747848,277.3631857382625,185.5113047269635 +350.613514204185,175.194617575468,338.267007263099,194.2464724149715,277.2531924833695,185.5043227793355 +350.734767411466,175.199574420411,338.295159209306,194.2267361740615,277.2820026422595,185.5036896950235 +350.877637043557,175.204967047926,338.283824444483,194.2102314375745,277.2897333640305,185.50559014603948 +350.723310280181,175.212305687529,338.111836253859,194.24972195484048,277.3163310261545,185.5154972459555 +350.575346500491,175.225590411518,338.242259999832,194.2348216166335,277.3670404758615,185.5292569119695 +351.219684790862,175.236334896284,338.25923239510297,194.2406770461445,277.2735917009795,185.5267245821965 +350.84166983626596,175.214478613653,338.136432456863,194.2463043173415,277.3032778484325,185.52536232530147 +350.712995531187,175.22785937966404,338.325799979672,194.2466429651585,277.3131132616855,185.51731123379648 +350.53674480058896,175.229793397737,338.122779561219,194.2567314430925,277.3011859386725,185.5383567759825 +351.552059589441,175.23178024316002,338.222102251222,194.24893424550748,277.2881781778725,185.53521780280448 +350.919492911822,175.248646112755,338.016650905925,194.2683678479395,277.3398787303775,185.5511626431015 +350.285741585844,175.24922237618,338.113510647791,194.2661486746485,277.3092036712265,185.5487096154395 +350.642926828827,175.26094293799304,338.289697651992,194.24269462890248,277.2900380140875,185.5466878717785 +351.17207543616297,175.266299593101,338.264952787145,194.2785716388265,277.2816632584485,185.5546116303305 +350.579537811469,175.26280256000103,338.175554822153,194.2848581891235,277.3332659606785,185.54155716968148 +350.969823271518,175.253192536936,338.07785160717697,194.2554430686815,277.2931438842895,185.5505849364885 +350.476857806687,175.26931177013904,338.27274039865,194.2536286142775,277.3183158407405,185.5615876727745 +350.629908440036,175.28369026509904,338.147172507631,194.2996949074115,277.3130504884365,185.5647891495195 +350.119072551906,175.277239970727,338.190488990389,194.26505368813548,277.2723774142155,185.56439395733148 +350.451680549948,175.28892097861302,338.151956444821,194.2886194694085,277.2721861304635,185.5765487486045 +350.255230752838,175.302860128926,338.19428003749897,194.31863737550248,277.3156103748405,185.58746736906647 +350.64853672552,175.310348991799,338.04695574428297,194.2867570301905,277.3253781358725,185.58540601242248 +351.21667946866097,175.28886107465604,338.091484223792,194.2759793218715,277.2861613232625,185.5711286153065 +350.539162447995,175.30987129325302,338.19251974655697,194.3046835759295,277.2574632955725,185.59588143365647 +350.16386559713,175.318154853975,338.065797391804,194.3024860249125,277.2786418659225,185.5899542523755 +350.574174779399,175.315896739319,338.158159725907,194.31769975367249,277.2689778824395,185.6084362687085 +351.002269956806,175.31756314076904,338.189850483536,194.3310149459305,277.2739925833945,185.59448929119247 +350.529243266412,175.33375694979503,338.024552074846,194.3208881863825,277.2806768410135,185.6069648347565 +350.99124724901196,175.33354210617802,338.193330144544,194.3281282023475,277.2071311336475,185.5939320045905 +350.588116380914,175.343254365022,338.119473177334,194.3261949028485,277.2242662145885,185.60807856645448 +350.606359271138,175.337836468101,338.011067964621,194.3321908154035,277.2366559772105,185.6152419407155 +350.581034233763,175.36194895387604,338.11552024039497,194.3239277970215,277.1783774845335,185.6195606826625 +350.557890348331,175.35549862960698,338.20186263651897,194.31910642205648,277.1994972531295,185.6291867493095 +350.916592733551,175.350657056717,338.142610205745,194.31542831370749,277.2079202323765,185.62993527710148 +350.319664913179,175.35425623682403,338.09544950544097,194.3367339419205,277.20077966799647,185.6230494633565 +351.093964245693,175.35782551356704,338.083706502443,194.3505547154175,277.2522347592475,185.63501091889648 +350.90610481864,175.363467970277,338.133917153631,194.3531701890505,277.2538705424725,185.64019092849747 +350.69963930217097,175.36973126299802,338.06010198309497,194.33707050420148,277.2210255989725,185.64855574150948 +350.79968832819,175.37352372820203,338.152459786503,194.3583364555305,277.2670385262855,185.6462913128865 +351.064369564128,175.383767914497,337.985032028163,194.35483849656248,277.2563968460125,185.63883017963548 +350.398479239771,175.399930601709,337.945660228007,194.3738011888135,277.3146573166545,185.66525755749348 +350.91957060937,175.392659209194,338.14112619980597,194.3690904347125,277.2666223344605,185.66147726140048 +350.304142682062,175.404203501584,338.068353277766,194.36433029496249,277.3113405728985,185.6660374278435 +350.55128187968,175.39681322745804,338.154019680918,194.3739444806115,277.2616055683335,185.6598076595445 +350.258227351257,175.394489086186,338.173642312348,194.38256906964548,277.2840185531555,185.6577150738965 +350.36005036818597,175.40501418396804,338.26664633775897,194.39076736445648,277.2686703087375,185.67710291021248 +350.583229519732,175.39591434725202,338.238764426569,194.38026727640448,277.2032392035215,185.6665989098685 +350.303822304399,175.412719486254,337.961246187807,194.3763430660305,277.2711790952765,185.69250387004948 +350.416205955156,175.420058356046,338.026903891164,194.3778597828215,277.2801221223935,185.68143635356847 +350.903558126895,175.40412997459703,338.126691641998,194.3787005958335,277.2458552974615,185.67948085774248 +350.816452344666,175.42781653910004,338.045699868847,194.39959793526248,277.2620847946095,185.69269528138747 +350.652876458786,175.42177917145904,338.226515489171,194.3721261741375,277.2679873989965,185.6917811881495 +350.67391599581197,175.44257016111203,338.230588155155,194.38010963854748,277.2585417033475,185.70442865688648 +350.565164652227,175.419451617402,338.04148281426,194.3728265420155,277.2516918408345,185.6931809715955 +350.63202955362397,175.44660536542403,337.98476486397,194.40394792288248,277.2613315817525,185.70217403609848 +350.222307580969,175.44225115878703,338.163626736317,194.4019222151295,277.2602688046615,185.69362211973348 +350.182552765513,175.445952681633,337.892288520322,194.38558974205048,277.2373834250445,185.69942346989248 +350.58153637326,175.44957834702,338.17599054623497,194.4071546504305,277.2472448127025,185.70957689700347 +350.079085725361,175.460034090225,338.025932116294,194.4236701972345,277.2506158179515,185.71048417182448 +349.885602048269,175.45915041492702,337.886417568852,194.4046150691095,277.2465881429265,185.70796857185448 +350.481944830565,175.48073763959002,338.053775341778,194.4047751691175,277.2148283957465,185.7174508042455 +350.871403999589,175.476778267638,338.06625974046,194.4187530355915,277.2372370526915,185.7281711877025 +350.624274390888,175.468790082797,338.088263829024,194.4086661016735,277.2215514261225,185.72087709067048 +349.942442313507,175.476067871696,337.993571115439,194.43691254912548,277.2132325830605,185.7332866368175 +350.706063332432,175.48496770507398,338.0740986447,194.4290412566625,277.2626247457935,185.73846327879448 +350.383926354558,175.47511137018301,338.087403561842,194.4240746352405,277.2188671722695,185.73232952882648 +350.767001731527,175.50197958382302,338.04334293006,194.44465968050548,277.2624079611705,185.7510579225515 +351.011919253228,175.497185992497,338.112991871415,194.43613745320448,277.2654451353575,185.7439307875645 +350.543534706583,175.50797553045498,337.852448967643,194.43085521297948,277.2329247969775,185.7430745402925 +350.402518140962,175.516171776816,338.066959759729,194.45722469416248,277.2497179120315,185.75593698364048 +350.56187589301896,175.514305178737,337.99227266926397,194.45093132160648,277.2431505512055,185.7708489423655 +350.562225703739,175.51490312002204,337.993513838094,194.45152941271448,277.2697616030055,185.7632904460715 +350.08081379486197,175.51936461131498,337.909500125093,194.44644051155748,277.2100407789135,185.76169539629947 +350.198998084035,175.53391539881198,338.035343807929,194.4609949203395,277.2495331594735,185.7667001949125 +350.42115262247796,175.524204364242,338.119904122104,194.44126403431048,277.2516392943965,185.7621102061255 +350.238629099158,175.54173008878104,337.851095272782,194.4473788980495,277.2306450276665,185.7635663450605 +350.34516987533397,175.538312447429,337.995633969374,194.46189860423348,277.2465632642755,185.77552798393347 +350.476141127828,175.545484620989,338.000492748421,194.4762943995205,277.1924188937275,185.77361562616647 +349.74451335401,175.53786146578102,337.84783800219,194.4761241951615,277.2746447039975,185.77484366792748 +350.398398994593,175.55449524644501,337.884271106935,194.45921534554049,277.2086455901295,185.78822512748548 +350.436679751369,175.55647742466,338.115125971013,194.4656243125985,277.2433927302025,185.7937043207655 +350.836565428318,175.558504195556,337.874063140773,194.4744075103865,277.2365348316635,185.79689761579448 +349.510377317855,175.576794801961,337.950650761565,194.47453142024548,277.2171891244115,185.8119368899865 +350.965344056318,175.56782705650102,338.047293684692,194.48932373730048,277.2030413493345,185.8048279781205 +350.246558333563,175.58493994032403,337.935484477027,194.4957244306155,277.2051860757975,185.8095997566305 +350.018741004309,175.58665453751104,337.820526409009,194.4757738897745,277.2355989271685,185.80595522598648 +350.22067594028,175.57819554995604,337.963807382938,194.4829213957645,277.2420908095635,185.80634695392848 +349.82570292375397,175.59299260172304,337.998927389906,194.5123986102785,277.2089377490455,185.82581422747248 +351.428745906027,175.59473363679103,337.895143122413,194.48967898914148,277.2242108269765,185.82825549703148 +350.41347042185697,175.596307843278,337.900885880967,194.5138509332665,277.1890717326475,185.8198094500445 +350.970187429405,175.583595410749,337.888494401456,194.50369808460948,277.2475649572405,185.83086041988747 +350.81546004244,175.60355609943304,337.81441049296,194.5054924133845,277.1929470642445,185.8424436138545 +350.08948418232,175.605503625239,337.89475106712797,194.52770810737348,277.1808058644635,185.84462539595248 +350.253105814896,175.612500808385,338.044352950801,194.5372694924675,277.2025454306395,185.85092774727647 +350.87333766263197,175.627157545434,337.953601320403,194.5465714751145,277.2342185191175,185.85300872290247 +350.11255742493097,175.61583755134603,337.919802870522,194.52406671081349,277.2157477117315,185.8484402541885 +350.57738048315997,175.62481198548204,338.109195489503,194.52535547099149,277.1846315177685,185.84623373359048 +350.944511649376,175.63622124759502,337.946448345627,194.5458528545425,277.2002467153205,185.8466965799855 +350.091995118758,175.65121169609102,337.89792779268697,194.52473762778348,277.1584530912895,185.85889960664647 +350.521033429773,175.636350160191,337.892174010076,194.54970918124948,277.2012774083175,185.8654697183375 +350.30209377070497,175.646150532563,337.846265051397,194.53784634380648,277.2060484911835,185.8666531906585 +350.049776219166,175.652110410543,337.959873912274,194.5321594812395,277.1591001637585,185.86515906392748 +350.859578540476,175.653091676469,337.851348619536,194.5552723241405,277.2078144763385,185.87406469327948 +350.761898736418,175.651770290895,337.617770673846,194.52273376687248,277.1732563601265,185.87880184570147 +350.60883156734997,175.65879721781602,337.865504863335,194.54280814756248,277.2063424758205,185.88629917910347 +350.36275417896996,175.66146995139502,337.888128127867,194.5103042224635,277.1806458513005,185.8836133556585 +350.088037780837,175.66571518935103,337.907574723334,194.5541539367525,277.1976737325695,185.88133573765847 +349.60032839759197,175.66761489568404,337.899583676108,194.5381160254215,277.2522595264885,185.88789764122848 +349.645309396912,175.68286977065202,337.824339424602,194.5545391020415,277.1772234502425,185.9019965614835 +350.985349719502,175.68722576418503,337.849465870852,194.5677485817235,277.2197103785595,185.90192722202949 +349.907506368149,175.69068977565001,337.962246191509,194.5616619434795,277.1332141593025,185.87789322487347 +350.396706152552,175.68781554804303,337.957042664164,194.58581056409648,277.1453604055785,185.9013521056115 +350.246084545011,175.699502523822,337.908258278964,194.5499760220775,277.1630565048575,185.9013935924775 +350.20171712919597,175.697692111874,338.002389579154,194.5644725087825,277.1526955060475,185.9019125996405 +349.83965018582,175.717245210802,337.776091756808,194.5702851375705,277.1472518654645,185.9268377408605 +350.722783960137,175.70574507111803,337.90866009623,194.5632087727205,277.1750085862195,185.9164958961325 +350.373001612443,175.70966171342303,337.886324847786,194.5724843692145,277.1575375876995,185.9124911500195 +349.82214388908596,175.71574884986603,337.845333308475,194.57787393351848,277.2078187299535,185.9118234689155 +350.244783768255,175.726094484879,337.672195939337,194.5942787547485,277.1592474542835,185.92567113468448 +350.56496876091,175.730410876267,337.747894749982,194.5848513831385,277.1521245511295,185.9302231831185 +350.977080584334,175.739385502588,337.907642288297,194.59941895861348,277.1379845453405,185.9366396490325 +350.73136675497597,175.74171964429604,337.77410317639897,194.60268543124948,277.1192016537945,185.94526759517748 +350.024899604598,175.741909735864,337.763806590842,194.60800068952648,277.1205181954735,185.94708916388248 +350.28968158093596,175.74988664030303,337.748924483736,194.60456420265348,277.1407203841715,185.95064288144448 +349.538216237518,175.750709378931,337.761528289172,194.5930402087165,277.1129987535415,185.9426101454495 +350.342556972291,175.757082350075,337.726383117755,194.6103636438505,277.0843328301345,185.9408301299155 +350.80721105277996,175.764971776052,337.736387516037,194.62314685443948,277.1386305403995,185.95501668574448 +350.635663595308,175.76645360374704,337.763890933197,194.62299826576748,277.0981941431615,185.96791893993048 +350.61524912769397,175.775894116218,337.784074922809,194.6189290265985,277.1358903921545,185.9629158894625 +350.263310929671,175.76056660094304,337.763160638365,194.6154793347725,277.0870400156585,185.95760042447748 +350.250298695707,175.776102496056,337.90221212287497,194.6242625680985,277.1204741524525,185.96615406741847 +349.778883840833,175.76563970145799,337.756646354508,194.6273093147135,277.0523567892695,185.9724647417065 +350.502873643381,175.779039737725,337.755427384518,194.6055351185105,277.0988818384765,185.97352104888847 +350.719645425761,175.78142679287203,337.679456915173,194.6382074529935,277.0989381374005,185.97054933829648 +350.345146177753,175.776088071841,337.742346355243,194.6356631704455,277.0948813850225,185.9770930695735 +350.981206900392,175.78421862617802,337.765958409482,194.6333121797515,277.0839952097675,185.97334283838148 +349.755504176027,175.80552958603602,337.819576547078,194.6196834401815,277.1074230722285,185.98301390035448 +350.588323647011,175.786226188106,337.67981496993497,194.66211047434348,277.0685163372895,185.99329658716348 +350.314794483368,175.806603557777,337.46588632640197,194.64242288356849,277.0428214238505,185.9854868211215 +349.30483528882996,175.80651297108602,337.54651066770697,194.6758783972075,277.0821208313785,185.99005721665148 +350.826597748998,175.81804472350103,337.638259123097,194.6634176260175,277.1318094589685,186.0004305540785 +350.07897689195397,175.812544248797,337.85794915586797,194.6725924958165,277.0682888727975,185.99492681686948 +350.36731385319797,175.81599013445702,337.610652707662,194.65460682041848,277.1012913459815,186.0079298704485 +350.042556904074,175.822987682279,337.661495761606,194.6550828757575,277.0883985757765,185.9913933337085 +350.38400503656896,175.82781783755303,337.707811200704,194.65641958204048,277.0546110438165,186.0120738702525 +350.476557684182,175.828905071927,337.696143744389,194.6693879394575,277.1043357705075,186.02691180328748 +350.485708666101,175.84381158257003,337.718215827897,194.6628650873885,277.0289564695455,186.02364907828948 +350.478053753997,175.82790423489104,337.61692940324497,194.6751427168685,277.0997413136205,186.0100628525735 +350.17487947578996,175.83249333871203,337.599249781064,194.6720450612715,277.0693414840025,186.0197818094975 +349.824088948653,175.861019762514,337.785965833992,194.6649342080155,277.0343625544055,186.0292147993485 +350.410819961814,175.85300504463999,337.66548154387,194.6725262202765,277.0942562145475,186.0372759406345 +349.84362058614397,175.858107807183,337.63647724718,194.6855505426035,277.1001208536775,186.0461105335175 +350.83182129974597,175.86658529977302,337.665772643296,194.67539293228248,277.0501844695305,186.0273259484365 +350.874845872536,175.870726915386,337.63896964759397,194.6914162116135,277.0480977506605,186.04195732434047 +350.15946633276997,175.87463867196203,337.59433306771297,194.6888058572005,276.9957602255175,186.04657052958848 +350.277884798953,175.86614490157,337.630347492086,194.71595312357948,277.0445500367025,186.05042352133648 +350.70287689749,175.862216882133,337.712646901812,194.7068993021615,277.0137946910045,186.0381033311715 +350.79924297605896,175.87497637867602,337.663326040411,194.69007546055448,277.0449840125625,186.05623050506648 +350.65994343182,175.87121516172,337.560956922886,194.7154333254525,277.0368012151855,186.06039084343448 +350.359025156462,175.87465296951,337.66680665097397,194.70139990952148,277.0224857099015,186.06429676998448 +349.511152697625,175.89156833916502,337.62012575407897,194.71365921039248,277.0260225947475,186.0656075668585 +350.450264514848,175.872040085984,337.463421898205,194.7169572747495,277.0086278241765,186.0600509925645 +350.359983305803,175.876584484692,337.636996272992,194.6767745135335,277.0771061354245,186.06273364032847 +350.040200029794,175.882716609409,337.663377752288,194.7206470107825,277.0488847386645,186.0718990276655 +350.455526738346,175.889177234535,337.669562007834,194.7266428899375,277.0227932361985,186.0620498066555 +349.786559917395,175.88405008264,337.703224759769,194.7203500214655,277.0198475241925,186.0760299019955 +350.157793968207,175.873359418534,337.509499705715,194.70989036239948,277.02054941423347,186.0623033056065 +350.54711912083,175.888797957129,337.677894073128,194.74629788689649,277.0525314139665,186.07728477562048 +349.719539929411,175.88679128602604,337.614661194939,194.70655170778448,277.0329245883165,186.0771413458445 +349.778867965848,175.886039643603,337.620184413544,194.72327177430049,277.0143109952065,186.0749909534875 +350.639480748049,175.887825749375,337.648871481274,194.75045056428948,277.0436637380775,186.09146036362648 +350.371054902567,175.89023425071304,337.718731192125,194.75192766593148,277.0025418491455,186.08384904687648 +350.202145388724,175.886332700506,337.598169495032,194.7203034752235,277.0168595030795,186.0780808027925 +349.984855436371,175.875276898295,337.748334852827,194.7160014375215,277.0081517585745,186.0665524267055 +350.138794131539,175.87798955788202,337.50033143332,194.73339092769348,276.9847555833465,186.09350405758448 +350.458471564864,175.864533374769,337.803597659616,194.7388018569505,276.9716774101935,186.07071791445549 +350.367926451827,175.84644239811104,337.540364683828,194.7064971148565,276.9769582065605,186.0675316088445 +350.562608451737,175.87351855041203,337.631386029802,194.7081858589815,276.9779200920715,186.07318291181048 +350.010770307905,175.847582684386,337.653379588077,194.7176548081315,276.9875740766075,186.0733336022135 +350.945834866163,175.847455568025,337.57901418276697,194.7072775162975,277.0064656516375,186.06644790989748 +349.915625718563,175.83518236328604,337.638611226934,194.6856836604845,277.0026866194185,186.0618581732525 +350.645945925907,175.83913894979503,337.761008302106,194.6770612333255,276.9546928594335,186.0646518369295 +350.311630396752,175.821236153891,337.54990252611697,194.6894396334495,276.9755499045075,186.04836981845548 +349.59720822418797,175.81295706129004,337.522357077917,194.68558515925048,276.9754263613165,186.0559333384315 +350.33665645384997,175.80519375909404,337.484826135112,194.6887694065515,276.9780678382145,186.04233913238647 +349.732590455742,175.79350033926102,337.517778337633,194.67451115932948,276.9399906107545,186.03436758418948 +350.20699731095,175.79543491375904,337.605245473579,194.6510535767265,276.9065560766985,186.03816772500048 +350.77925935119697,175.79356352833003,337.46276785837,194.69297809172548,276.9488806575545,186.02417653242148 +349.836250740888,175.766103351671,337.342390325001,194.6676091173005,276.9980263649715,186.0004287823725 +349.553653188186,175.751210203673,337.510293414561,194.6382694752175,276.9550284816955,185.99391656550648 +350.283122370173,175.750728227119,337.68775000965,194.6317304481515,276.9283004835015,185.9824808646925 +349.380381966332,175.74930945563403,337.39454081989,194.6536073373965,276.9970973360495,185.98828584657548 +350.23713164646597,175.719274189369,337.84268829262,194.6286909742025,276.6835648748275,185.98480038157948 +350.744015687064,175.720449055485,337.672365704151,194.6147236896075,276.6828957020865,185.96966233146247 +350.192652253933,175.715949548349,337.57285725505,194.6113880330295,276.6857667571775,185.9577024454255 +350.203300058086,175.70609825728098,337.608909907037,194.60665977470148,276.6755117057725,185.9587986237635 +350.09258019760097,175.706090191618,337.50522736915997,194.5819578885675,276.6365629058475,185.9462057552205 +349.851055493773,175.689317741725,337.534655066826,194.5749661596245,276.6671242614415,185.9399104529235 +349.89964688845697,175.69133973943804,337.49400561795,194.57628971519648,276.6822208920615,185.9330777110605 +350.426539757095,175.665145129326,337.528237166984,194.57897651567248,276.6375143080845,185.90034168283648 +350.443149996396,175.662913787621,337.639585524462,194.56928992866148,276.6170066116425,185.90859630935748 +350.265078985438,175.649915718817,337.447439383236,194.5574537653095,276.6308608395615,185.9032809936145 +350.149787218833,175.654451976264,337.480766737841,194.5489452011565,276.6327799481945,185.8894089360455 +350.52949536683997,175.63143885124703,337.495079081418,194.4958747065235,276.6792357385125,185.87430544738348 +350.069141650563,175.619679564899,337.567877234827,194.5316370038135,276.6501458331645,185.8816491684045 +350.86656502636697,175.612869445309,337.573843646846,194.5052564804235,276.6790708284585,185.8464025233545 +350.653393174479,175.60421734888803,337.514726977786,194.50615381807748,276.6779052940565,185.8517281900945 +350.372192295182,175.602843486521,337.400147725836,194.4637781614705,276.6564202255965,185.82681524286448 +350.530813587147,175.57808112064504,337.399184858212,194.4879321224395,276.6459336528775,185.8309359476125 +350.116223517602,175.56469674909704,337.220484301589,194.4677885937305,276.6243197411985,185.8149796746435 +350.40543847717,175.559278944678,337.379178705171,194.44862462228448,276.5884884415485,185.79114739711147 +349.802418398683,175.54121521812704,337.360325295777,194.4503583548275,276.5987768228505,185.78472497192448 +350.357166292231,175.541514261082,337.362172328011,194.4425037420405,276.6167271283935,185.7910835496515 +349.68957616407897,175.53271389696,337.26857423681497,194.41133662188648,276.5945880581845,185.76712930242948 +349.955761694598,175.516749235254,337.358977082638,194.4016579578835,276.5915212338765,185.76327330824648 +349.86245261926797,175.510923760653,337.310813729309,194.40654736992948,276.5906128423795,185.7597746852105 +350.406644954689,175.49695465756702,337.369235706628,194.4007284497425,276.6195977932695,185.75488579398848 +349.816904476973,175.468524263186,337.332431067319,194.39325750929348,276.5749801589905,185.73109843397748 +349.061552595033,175.49238632269902,337.076338288234,194.37239650530248,276.5132728443025,185.70953050523948 +350.052723241362,175.45977691042003,337.103761645879,194.35678499018348,276.5155342288045,185.69694287541748 +349.740454008057,175.46631664515803,337.382268489178,194.31859700069649,276.5196275837325,185.68460957031948 +350.2716304442,175.442478292379,337.546734627041,194.32573674258649,276.4810571551165,185.67170947726947 +349.996282313518,175.425108372828,337.23111176295697,194.29787858685748,276.4870390573225,185.66318442515848 +349.50537533925,175.440683596957,337.225732451161,194.3178844360325,276.5039917479765,185.66059156491448 +349.795697194642,175.41006470370104,337.267323758963,194.2821318505055,276.4783011630675,185.6278556076405 +350.56397314951397,175.404932837177,337.241451648928,194.2947040492505,276.4361794856005,185.6420637427305 +349.926259687629,175.39350460829303,337.313232090924,194.28816493714248,276.4232578911635,185.6147806421295 +349.379057711139,175.38133279459998,337.082844073135,194.2356862873155,276.4390481314495,185.61145694882248 +350.600154925617,175.37258557731002,337.328880051024,194.2590861367965,276.4366576722785,185.5943142182045 +349.395618209442,175.35971509546602,337.064377307057,194.23666027845348,276.4332021304585,185.58306676859348 +349.786863848062,175.348911493405,337.183582460405,194.2288821314185,276.4281332036365,185.56642986538148 +349.115772615702,175.34702183148204,337.203624592972,194.2251281730325,276.3391223304595,185.5547508037025 +350.753470525543,175.33088278681902,336.97812973947,194.1912787654735,276.4212478209225,185.5539826747735 +349.256341519642,175.31037160501103,336.926828564745,194.1968540077015,276.3854573366035,185.52273772659248 +349.775166973309,175.29548451316703,337.042573161808,194.1759052479985,276.3890980796005,185.51576464394049 +349.848288485703,175.291191726597,337.188079579976,194.1797650895365,276.3548098880715,185.52591824646848 +350.098218902168,175.28901872176402,336.86624752350497,194.1531296236965,276.3837177158045,185.50766324831048 +349.563895426578,175.27908345708,337.166230631723,194.1476177481195,276.3158663814665,185.48933159473748 +349.823177970141,175.26336267888502,337.141591923979,194.1153512235565,276.3266217088295,185.47546487560447 +348.89205983547697,175.26107862400903,336.972617957149,194.1244820116335,276.2985878573705,185.4827344319225 +350.117305747679,175.23999601212404,336.69800445469997,194.1213315362955,276.3177161449865,185.4518497119315 +349.495863167371,175.24048027619602,336.778967864785,194.0964221455935,276.3243005986165,185.4451096962265 +348.76482298566697,175.227104538466,336.786899153779,194.0998160792155,276.2870678939855,185.4387166372535 +349.36602183709897,175.220075196369,336.870255727233,194.07088520298848,276.3062734511125,185.43191567659147 +350.015895444999,175.20405551415502,337.097966980486,194.06720785441948,276.2637526155955,185.4072624200415 +348.920345902749,175.19439819360701,336.886477724735,194.0647695259965,276.2699872521195,185.41111564708447 +348.83392552021,175.17225713942503,337.017575839348,194.0517071416505,276.2962381156735,185.38849367148748 +350.039627128448,175.170592431903,336.690645242336,194.0411889515435,276.2515969047275,185.3842642802865 +350.005690695336,175.158241010587,336.677035012463,194.0211453546005,276.2604201816355,185.36491301840047 +349.002903015138,175.155218630016,336.820199978015,194.0034446877055,276.1956636567225,185.35792672953048 +349.921788362005,175.12473320044,337.046773183412,193.97597760997348,276.1440573950335,185.34233603554048 +349.775510815458,175.11045781193803,336.87077469772197,193.97963629198748,276.1793158901335,185.31826281746748 +349.705957272081,175.104034669822,337.010232441184,193.9678525556815,276.1585781536415,185.31579719280748 +348.443479245901,175.08895479961,336.63633827797497,193.95602910364948,276.1002111100375,185.28882144904148 +348.995385405945,175.09148219259504,336.785487059207,193.98674716127948,276.1298425074215,185.2906514073815 +349.285923395606,175.07479856387602,336.684330135923,193.9038930975255,276.1514372913795,185.28933780655848 +349.07192854394697,175.07141629139903,336.63493178932697,193.9114594431755,276.1067085952085,185.26427944429048 +349.430812805029,175.067581469686,336.667831069128,193.9027307947315,276.1267570392115,185.2739589850435 +349.59028686696,175.063939851126,336.716078605267,193.8879050827545,276.1098556698355,185.25143771530648 +350.101849942549,175.02940303820202,336.755928092438,193.8764204267365,276.0418528461505,185.2357543828695 +349.933040336716,175.03330130570703,336.582603527632,193.8691372828125,276.0990863628815,185.22497309597048 +349.055244773275,175.00906473695903,336.687619104283,193.8257878405295,276.0906921947825,185.19908847705148 +347.589531063983,174.99914306953804,336.287923985252,193.79658934882,276.123890622581,185.1609607556035 +346.996943775902,174.96292868124203,334.642660921218,193.745451720588,275.88753334382,185.222453989713 +346.238705833156,174.940277585071,333.093911252523,193.70601821589,275.777385431754,185.175316769368 +343.570515402416,174.966187714175,329.497265669143,193.645595606859,275.423222079746,185.108582106545 +341.822290143484,174.935192589106,327.58953639759,193.619947077379,275.104415402438,185.071272792651 +337.853445458003,174.885966390832,323.742195118196,193.56021767825,274.225021453546,185.015486292942 +335.727949164135,174.851570953869,321.816489534673,193.530235047539,273.660174400224,184.98409596828 +331.366688498642,174.799050534374,317.989680057046,193.457656929409,272.319107039985,184.929207294776 +329.14827938502,174.78079841051,316.109218923559,193.41982686361,271.561706657426,184.912806377503 +324.697289871646,174.69567534611,312.370657083307,193.309272070042,269.893663929052,184.839506798951 +322.495588097117,174.674602467873,310.526106996738,193.270250158568,269.021224782705,184.8044354209 +318.086584602943,174.570493314752,306.90984943998,193.112739551692,267.153530003518,184.731477582047 +315.930999898273,174.509964541078,305.115434361429,193.026786058871,266.192208472439,184.686750589828 +311.629873307491,174.385370448587,301.586209700802,192.81475793528,264.177531936928,184.576510298217 +309.517089909083,174.329122131396,299.847723350391,192.706522538747,263.157926606064,184.516023479514 +305.357578612216,174.172734719405,296.426751797032,192.452888767393,261.085818651247,184.369999980982 +303.321947428335,174.080855147439,294.723692301683,192.305035301705,260.019481667678,184.290398147649 +299.298986733068,173.8873832189,291.389303655852,191.986086889403,257.900235056888,184.114245981535 +295.380067946296,173.698287772213,288.120501804827,191.633991320554,255.774427457314,183.89073316725 +293.444857508977,173.57801278948,286.510515564362,191.438600515122,254.691021596111,183.763596218068 +289.681566466942,173.345658069722,283.344892716362,191.049482872741,252.550633992747,183.52637549613 +287.824332290547,173.21107289382,281.771739744983,190.818552309597,251.486432228422,183.376986864498 +284.183317117829,172.943490177096,278.694729637515,190.371313031733,249.339562400056,183.074898751032 +282.413542783168,172.810902718062,277.178651261404,190.142598762193,248.282263953664,182.935193984251 +278.933923476198,172.530291412799,274.186748076939,189.66713998533,246.180604205429,182.603506873035 +277.204090152393,172.378895356072,272.712656244876,189.410027932022,245.124212830059,182.411644451056 +273.858830646349,172.071778578408,269.815251825967,188.883299571257,243.04432320438,182.037565889864 +272.209697314233,171.915092649566,268.378546955626,188.612483806272,242.005658867329,181.846693264077 +268.979186092839,171.598249385224,265.56920072459,188.062231219632,239.957348259509,181.437930448204 +267.406582375785,171.444443089776,264.183261182048,187.783093996435,238.93583388507,181.237350798932 +264.312165000372,171.101438046282,261.468603325687,187.211970832575,236.938706871143,180.80168539057 +262.785571922889,170.923127538215,260.1170932058,186.907347584328,235.942584051966,180.575169236411 +259.815257106171,170.57851696603,257.484652684696,186.329918044115,233.984549348572,180.118776103144 +258.345759992434,170.396065943192,256.162826294649,186.015536509047,232.987755444067,179.878554753689 +255.494658986551,170.034662257785,253.612245009709,185.400047018125,231.079324117401,179.403239717669 +254.09268449347,169.856505457287,252.361270012137,185.092279241037,230.137609379123,179.162186436479 +251.340821958235,169.482925479741,249.872342897746,184.469223175739,228.247575715996,178.663719095934 +250.005293856025,169.311566826806,248.675979083388,184.177105351156,227.327554001322,178.43389505813 +247.365013718182,168.934497114602,246.259912332071,183.531415220706,225.507012484827,177.915850439916 +246.070328276179,168.745005333905,245.085332970084,183.225316303801,224.609915451423,177.664138620693 +243.541041512902,168.371148342615,242.76404363092,182.584684058665,222.829460298221,177.146044751594 +242.299095231377,168.201837124551,241.616153424198,182.265932187586,221.953231171925,176.889847045073 +239.863490203823,167.822373932021,239.373789222794,181.62805530996,220.222105426472,176.365672889538 +238.680101032903,167.627896267245,238.278078267687,181.315543068444,219.383769454641,176.11152713505 +236.342342565343,167.264413862108,236.103028149374,180.686438527131,217.692163738402,175.579599783738 +235.194576205996,167.067380579397,235.02589891802,180.360174558722,216.860112251546,175.322894692889 +232.940070828212,166.684422860816,232.923696091223,179.72343234248,215.227107985204,174.799881806084 +230.765955797752,166.310056908129,230.883441212429,179.085509623881,213.623711627455,174.282448522423 +229.683110219425,166.11559759744,229.868066802248,178.783021284521,212.839663198389,174.012021985709 +227.582267582774,165.752340531907,227.882672613952,178.148308738841,211.284149152811,173.488490910146 +226.54857826814,165.557003337187,226.900642119821,177.836786163366,210.520560605428,173.225339397615 +224.537403820129,165.199566793738,224.997970072443,177.229344735851,209.021277326325,172.719756224428 +223.560761645919,165.021988168012,224.048322955902,176.920013028728,208.281746143189,172.452278505641 +221.629378129571,164.663077297733,222.206625204159,176.317160982673,206.828530194728,171.944767611881 +220.663854045535,164.482754451135,221.294087101444,176.019760069049,206.111219058799,171.685491681337 +218.794664176616,164.116960038077,219.510547781605,175.399542479106,204.694827362069,171.177387021488 +217.883084269455,163.942332099396,218.629070162797,175.114144474941,203.999634137452,170.920797893696 +216.098496006127,163.585318399538,216.891494571044,174.516252701206,202.634460927778,170.429184287762 +215.224413587593,163.41855672483,216.049624704428,174.224774942851,201.963152338792,170.18537065991 +213.499743596228,163.071577582297,214.38430155979,173.649303332215,200.642187871894,169.702660672536 +212.663208611861,162.891926433937,213.559805299718,173.366806975574,199.991944373849,169.440596704274 +211.00462240059,162.55767307016,211.939227986207,172.792471208133,198.708201332337,168.959717000007 +210.18700096617,162.385646789065,211.152690979143,172.515998308426,198.069354289023,168.716702301156 +208.58523438774,162.042806675023,209.587313551375,171.938905953873,196.819943187502,168.232131280569 +207.817303736739,161.881900746137,208.832807686937,171.680109053306,196.226777858317,168.010035148037 +206.283514506619,161.541901569332,207.329818105955,171.122187983467,195.021833402982,167.539031593636 +205.534565820838,161.39176167263,206.60312426324,170.867444718423,194.443059853422,167.310517103377 +204.063534370059,161.069194060259,205.14380556436,170.324465735955,193.272358425512,166.857460358536 +203.345562255007,160.911768697021,204.438543169563,170.072908813997,192.705038085796,166.648405740615 +201.937002448008,160.608981146854,203.044222978074,169.560026180302,191.599188944904,166.209833076379 +201.231132441974,160.444878826084,202.355940026321,169.291787765995,191.032536985401,165.973175742688 +199.874500607907,160.134048223915,201.010261092516,168.795540968429,189.961106280062,165.54935845521 +199.20232315025,159.985448178021,200.336569475691,168.549835265626,189.430687054857,165.337771106591 +197.896276251651,159.68578896881,199.040278037069,168.044578409478,188.38247612957,164.90517285325 +197.260415880705,159.532501474008,198.398691989103,167.803962280297,187.86268336044,164.701455686576 +195.991251636149,159.230961705679,197.128772110235,167.313836957947,186.84862514287,164.282572164167 +194.780228752354,158.960392721532,195.921859037896,166.855703374771,185.877051840853,163.896114187238 +194.170690607369,158.801088431796,195.304936039765,166.623037927608,185.387291160115,163.681741822729 +193.000094360345,158.536217240144,194.138186745102,166.163673515301,184.442150924949,163.297992796716 +192.415427745152,158.395991272217,193.557534417985,165.943864688271,183.964083074313,163.102273024486 +191.285477165968,158.130943696158,192.416026158861,165.506447632873,183.059307529642,162.732078852864 +190.727063434267,157.993042807066,191.849030458908,165.274571811237,182.597557820608,162.536608246283 +189.649271874106,157.727400148613,190.771536290861,164.853562758742,181.717827430157,162.183029313286 +189.109731049353,157.607417445822,190.224565401163,164.641055507675,181.280845160346,161.99761555622 +188.048805988191,157.337554830671,189.155525861767,164.219569115832,180.4139109685,161.624967134884 +187.529335136597,157.213465830445,188.636769394281,164.020395280433,179.996121854936,161.448460293752 +186.530373068182,156.954543595963,187.612191934757,163.603628942645,179.17423454912,161.093291399252 +186.038761086135,156.837561725189,187.121051077318,163.402530507247,178.765705143781,160.928788185525 +185.052312610876,156.587649696808,186.138099504622,163.01411059804,177.963403171525,160.590323746975 +184.586964794017,156.483361302121,185.660163254562,162.818778035584,177.582099442013,160.442951084357 +183.659196517584,156.24917930182,184.714434950973,162.453350854633,176.822682723063,160.123969433788 +183.195626339273,156.125792388649,184.253416862414,162.264916611518,176.44085716495,159.957250724264 +182.296466511546,155.895256328581,183.329757865067,161.884356435625,175.690758789686,159.637063378019 +181.852801486211,155.778217191447,182.863237077741,161.697419667537,175.317441718174,159.465569478523 +180.976298948111,155.551881480064,181.988790200504,161.348735312758,174.617514988545,159.172118906833 +180.555606015134,155.446319157346,181.550597122294,161.171221339643,174.267176279744,159.023961310003 +179.7100339728,155.222896628692,180.698215453122,160.824785547204,173.573043074896,158.729496883639 +179.300574042124,155.126861779478,180.277310020876,160.647312071575,173.229055801855,158.56327526201 +178.493623433166,154.902406177359,179.450727434354,160.317513067195,172.561203818266,158.281714622663 +178.102275489054,154.811843858106,179.052824438373,160.157609012515,172.244872127478,158.137456184052 +177.325589030787,154.600052515723,178.263024539329,159.826360565832,171.595640764523,157.859540594302 +176.953346629318,154.496253624779,177.866985818132,159.665976676626,171.284906063078,157.733355583954 +176.201860268656,154.296255237971,177.104479294736,159.339372584011,170.658075974115,157.451718571244 +175.481880245753,154.119206732931,176.364161025176,159.056661207817,170.059939562775,157.1970107549 +175.111174353142,154.006915261485,175.998074261452,158.894287990361,169.75144582253,157.058622887271 +174.426376537789,153.829806728675,175.278032398494,158.601096016509,169.179856677892,156.819638327242 +174.089174381509,153.756826545919,174.943819742072,158.466045301095,168.901581349777,156.70136278398 +173.418601807116,153.558583304463,174.244292557867,158.17977981188,168.339785510968,156.450972345244 +173.086896028577,153.459761976188,173.906260137117,158.027440880253,168.054206904838,156.324225463063 +172.438320509665,153.285176848265,173.237814009594,157.758162906315,167.516247813826,156.079676605655 +172.106638756107,153.195371359638,172.903064139042,157.609993866609,167.239065799875,155.962656263664 +171.497875970016,153.039469136723,172.27047756075,157.355504522805,166.731108661939,155.749107849132 +171.182245430702,152.942201426706,171.956202848812,157.221674006423,166.473679862727,155.629027214757 +170.583801013348,152.786527309925,171.340221239732,156.964184516326,165.96788547168,155.412935848149 +170.293175258082,152.70784528476,171.041642814036,156.844801764788,165.729387082415,155.306133042171 +169.72170666921,152.550219833616,170.441936126658,156.595115661443,165.24077078524,155.100382171477 +169.422246580707,152.462939087049,170.147554903124,156.467129454171,165.001577290872,154.989843912861 +168.872695958964,152.301808628633,169.561860740974,156.233425655608,164.53670807412,154.784300850509 +168.583662469924,152.215370193377,169.275346960223,156.10003101457,164.30234480087,154.663719237593 +168.054078012437,152.077966994617,168.723819015237,155.874338818913,163.856713810855,154.483324051688 +167.790333529031,151.998367508842,168.443753341318,155.764955525142,163.628087376113,154.379092563391 +167.272493607679,151.858919070377,167.925841152028,155.52378646358,163.185581925983,154.173721614555 +167.00242227936,151.776688252588,167.649451289139,155.42197318922,162.981065984432,154.089333099495 +166.507878833677,151.636973270374,167.136696272079,155.196082302222,162.559032807814,153.892507865369 +166.257687055834,151.566390001093,166.871585288519,155.089482468311,162.361124443973,153.806111654873 +165.785262774325,151.432188362581,166.400256470476,154.889983458773,161.956762827678,153.636586458769 +165.541115934466,151.370825904971,166.154679126641,154.776633384584,161.756058804234,153.544366073704 +165.086246476803,151.236211352559,165.661846966871,154.582062364663,161.3682940775,153.376749867068 +164.851665932063,151.175542557955,165.432115422246,154.482621605555,161.183641159136,153.279206420399 +164.415599507048,151.048243289597,164.976925303836,154.293995278142,160.806985587138,153.119149283882 +164.190167255849,150.984153047519,164.738212304056,154.192293142965,160.621015025236,153.037638872717 +163.767794732916,150.8704252357,164.29834976784,154.004755545841,160.257332673342,152.880285488841 +163.334664780421,150.74640704525,163.858420706273,153.817578709569,159.909590928558,152.71333263293 +163.130214510359,150.677242465814,163.655568677481,153.721924851793,159.727392324585,152.62628574375 +162.717815674616,150.564088885385,163.224291759559,153.54192944584,159.382009428549,152.471138432427 +162.524436560959,150.500600023719,163.024613041112,153.461690344711,159.228736446615,152.413389451893 +162.138997404912,150.390871976922,162.61379937225,153.29138698571,158.893100730814,152.251720142232 +161.954773699199,150.343183665776,162.424905401886,153.212842432727,158.738293072044,152.188485887555 +161.573112155846,150.223515999096,162.02879259735,153.035376291801,158.413614394409,152.047664470211 +161.393084999612,150.176743060321,161.848509772086,152.959141904823,158.260673393225,151.986273948732 +161.026765444259,150.071610809828,161.465885888821,152.8078136619,157.953630350334,151.839400671746 +160.848883017952,150.021860205851,161.282871863284,152.721424138603,157.812105116348,151.775495403846 +160.495647278111,149.915602100596,160.924714848978,152.579163449455,157.521831390009,151.64555402399 +160.326092250142,149.869728565742,160.743993410941,152.481610251299,157.368207645245,151.574420888728 +159.987404088905,149.763808222281,160.398065779696,152.33969416828,157.086889644574,151.458244236188 +159.82451960364,149.717157105382,160.229125180906,152.267760391427,156.95731921448,151.392352485784 +159.496493749399,149.612334031914,159.8843458506,152.132272146754,156.683394578855,151.276118473995 +159.346311531192,149.578318245394,159.720915321287,152.063498282271,156.536596693532,151.209913390722 +159.029127991926,149.489575557422,159.406247671937,151.931379948793,156.287869792179,151.106533236076 +158.877285322267,149.440472739116,159.246264324545,151.853526177577,156.150539184702,151.039117688226 +158.57283117239,149.356743445491,158.934580888641,151.713007361265,155.885307496456,150.920394367137 +158.426072980801,149.313382275961,158.7845571305,151.643219155013,155.76696238327,150.865205014262 +158.138374324161,149.22434710459,158.486384333321,151.525632168362,155.523793926673,150.747423262626 +158.001506567983,149.181345627827,158.345788962438,151.458058222882,155.409994075994,150.707865204193 +157.711686427034,149.098022138575,158.050136507752,151.338554953077,155.172576740697,150.590711481607 +157.571392790536,149.055519412852,157.901476092501,151.264309079802,155.054190326382,150.526204496281 +157.307827312863,148.983765606645,157.626284000794,151.153613801311,154.836969163787,150.428265703236 +157.183038452715,148.944911467566,157.495451305377,151.112179526185,154.72619117363,150.400029603053 +156.928240438915,148.870307913156,157.221840694607,150.984289222595,154.501965748011,150.299009729066 +156.789230024129,148.823041054214,157.09765889532,150.922635254664,154.395511243216,150.236678959154 +156.545158485779,148.769504679878,156.841967034624,150.829718348569,154.197055224972,150.153503022822 +156.295271614151,148.693737683939,156.582316030652,150.715248529963,153.987222959299,150.054330623684 +156.198080812842,148.662713938495,156.473986095374,150.662682244865,153.885479718779,150.029765574216 +155.96578981736,148.591983332879,156.245614236171,150.561354457637,153.696234329086,149.929389187953 +155.833561326,148.566463894944,156.110590809125,150.508515269756,153.593993990869,149.879570391274 +155.613087376102,148.487843054585,155.879431853682,150.406003099943,153.415620744093,149.803450202324 +155.504443696927,148.468261123704,155.768691699283,150.361421630948,153.313085996285,149.758879782967 +155.276652557729,148.397113529856,155.532071259044,150.265466131492,153.125541934193,149.67034856855 +155.18378147048,148.36944251833,155.424589597227,150.225282259815,153.047333850405,149.637806188991 +154.963995636278,148.304407077626,155.20663889399,150.125499678297,152.859445555245,149.564410718158 +154.862150108204,148.277945369278,155.110346539547,150.087221151655,152.778056342577,149.518741062953 +154.666791138629,148.216450409917,154.901297608932,149.996535905559,152.622673846771,149.442645445359 +154.573087300717,148.199486533777,154.799011878931,149.963137460836,152.54293369104,149.419429245745 +154.365729684893,148.134324448457,154.595344530804,149.87156037634,152.371156292479,149.336428449339 +154.271272904284,148.107817511683,154.49717257689,149.83902067879,152.295291386334,149.298808957926 +154.093067743837,148.058081814227,154.302502922683,149.746231590903,152.138517240222,149.238411780207 +153.980545719647,148.0237128228,154.204567782339,149.706287592086,152.044134827362,149.188996279398 +153.81902487167,147.990373850786,154.022183941158,149.635228943831,151.907269604558,149.142461528801 +153.723992263818,147.96651035196,153.935946968483,149.599785866722,151.842628776183,149.116042978787 +153.559746939584,147.904324985306,153.754547372026,149.520213531742,151.695629846506,149.043191678747 +153.464736734649,147.886483842416,153.659993484068,149.492647710137,151.628461636448,149.009157741689 +153.290893404566,147.82441347399,153.486600602679,149.413191851917,151.480662429716,148.940815308498 +153.228236537918,147.819896908798,153.41027419424,149.379998693733,151.431935375113,148.927973626774 +153.061164014434,147.772887797013,153.245042890566,149.314228574708,151.28233585013,148.869845184167 +152.979410714918,147.749772327801,153.166757671451,149.28508597418,151.216838020294,148.8462564697 +152.843356317059,147.714985191908,153.013325505046,149.219754623478,151.09985220671,148.795270317545 +152.753823850805,147.680403376761,152.926102867837,149.194399293183,151.030974942439,148.75766716141 +152.608056647037,147.651625006161,152.767822215538,149.129070431633,150.905205337193,148.703908873708 +152.52664898571,147.615670904875,152.695671327351,149.08430765351,150.83796625124,148.671174836108 +152.380860490563,147.565139821776,152.549641780203,149.025652652411,150.721658316885,148.615072880696 +152.235948194386,147.532111960276,152.396616846284,148.966941117918,150.607611374094,148.569316362169 +152.174361177449,147.517547855631,152.3371095957,148.941964273653,150.554855515089,148.553358802987 +152.04825580871,147.486875990979,152.200115674874,148.895321489044,150.442943218287,148.505336808819 +151.97201881285,147.463461271807,152.124568632989,148.847386849513,150.392433057588,148.478675702926 +151.845150075401,147.421621219487,151.99144229448,148.802747694612,150.273740908359,148.434505841067 +151.783519851058,147.395453223969,151.912447879351,148.759919364829,150.224409395581,148.406246102075 +151.663611818917,147.369563701776,151.806190142565,148.720144217289,150.126088205981,148.367863777897 +151.60923980795,147.359416603278,151.736770223436,148.704905437703,150.073600340531,148.349160247238 +151.463206509563,147.302125598993,151.603690509831,148.639490369825,149.959575873355,148.290920138898 +151.409414684364,147.299253554019,151.547812713012,148.608414792212,149.925245039102,148.274410240803 +151.28926671205,147.249081029269,151.410069495037,148.554977664347,149.820433839911,148.228145577703 +151.244385299906,147.235925740479,151.360557437022,148.546438041892,149.794081304631,148.212211223875 +151.131489927318,147.225099305551,151.263855822794,148.504168685854,149.690734561342,148.179654900141 +151.071999231322,147.212834250175,151.204361973421,148.474329498406,149.653942547473,148.165766930005 +150.958927482325,147.160702692961,151.081334078893,148.426792290442,149.555042814768,148.118929352397 +150.917146660755,147.164729646755,151.034923320052,148.409787448482,149.513054775945,148.100077867379 +150.822200267338,147.139698821493,150.930022887633,148.370181357699,149.441056013696,148.069259136162 +150.765354123094,147.129605294876,150.88034702031,148.34806334501,149.396960223181,148.052459425543 +150.65089506373,147.082313690522,150.769353169667,148.302826877741,149.31008188429,148.018090524456 +150.615484399578,147.080221478333,150.725148923764,148.283398786733,149.262204599069,148.000051420686 +150.529566683557,147.060268309164,150.639921453667,148.248411940765,149.195526010082,147.976392658473 +150.463302663649,147.033141055211,150.578975531148,148.228204362769,149.152882358787,147.955725254836 +150.373781033906,147.006350202767,150.492919825917,148.190768012392,149.071270366844,147.916906743765 +150.329549867361,146.99221206948,150.445910443462,148.166453377238,149.036542435645,147.904611716347 +150.236597377347,146.971461609902,150.346013645604,148.134367651732,148.963522708177,147.871374174706 +150.194153451537,146.964187913455,150.29639674738,148.113223475578,148.92156365998,147.848614796917 +150.119261208866,146.952459650769,150.22103872935,148.093631561316,148.868905001016,147.844045637887 +150.070237620002,146.919902656755,150.16831209018,148.057360632844,148.827536022355,147.813786761454 +149.992037574444,146.911566108427,150.09219063462,148.027296072504,148.762784801488,147.786036165271 +149.906346785157,146.879576750614,150.010197061977,147.999682031864,148.689158895387,147.75126163137 +149.877514935618,146.871801974612,149.977431971804,147.985663745858,148.666814431151,147.758272765168 +149.808414412657,146.868851678199,149.902777699154,147.955442435603,148.61161868382,147.731982692428 +149.756661286436,146.842802839953,149.842233846632,147.93122996484,148.570293657845,147.706386135262 +149.687114840995,146.819770198839,149.782398487859,147.90957289998,148.508872219998,147.689583649103 +149.658377659295,146.81832406419,149.737933670566,147.89171860019,148.487777223293,147.681204873692 +149.57512418528,146.80215539803,149.672022253547,147.869302942498,148.423749657621,147.654632061017 +149.543600161035,146.778984129106,149.625696239936,147.849818211086,148.389467275177,147.638615117775 +149.473894378857,146.759713416571,149.556681834713,147.818984265983,148.335050322521,147.617026495495 +149.434033810253,146.746230354921,149.520057391797,147.817280137537,148.306534385981,147.60099667715 +149.380055270178,146.746130715222,149.471164310495,147.787139867837,148.257897533086,147.591885631068 +149.335256055822,146.740416602336,149.437000512549,147.772411067957,148.226293647355,147.582241380998 +149.269763291391,146.703406289043,149.356474666602,147.749248506712,148.181170113873,147.549376362888 +149.231235438547,146.707881227299,149.332050533835,147.735701600002,148.160918268962,147.550849235426 +149.190493490551,146.687970751912,149.267028023026,147.706539241748,148.113954813403,147.524692917652 +149.155545757122,146.688860656301,149.239709520036,147.702345968214,148.088498581731,147.520731029284 +149.090165389652,146.646184420215,149.171783454619,147.670279824409,148.034703137174,147.485432726379 +149.054420342831,146.660365208255,149.153147013641,147.662284425212,148.010067057511,147.479286362096 +149.002142251663,146.635394797488,149.085606955405,147.641924308902,147.962665310173,147.467014525384 +148.987350929359,146.627085576205,149.067809426037,147.632687149018,147.945800691798,147.456391789863 +148.917272482167,146.609737214612,149.002121396157,147.602853758234,147.88823227746,147.434185145623 +148.883986535106,146.600735210847,148.985249288209,147.592461454641,147.874372353629,147.424255693732 +148.837121454403,146.581400364382,148.920811531408,147.573349219013,147.828220788408,147.40306548943 +148.828904012167,146.579657768346,148.897104028459,147.560052978055,147.811687918822,147.409408712904 +148.767152626188,146.569469404861,148.852689705727,147.549167043893,147.781158968899,147.395288926304 +148.73706035888,146.56065368646,148.820284522501,147.538036968132,147.745995763565,147.380694011432 +148.695223649635,146.539411330886,148.76688745313,147.520482302948,147.709260445835,147.366606114023 +148.673136589873,146.54713785995,148.75196615401,147.512038461237,147.70405090954,147.357007657061 +148.628700199183,146.528609089617,148.699437294321,147.49096025063,147.659864106919,147.347020555918 +148.58672083052,146.512765383525,148.651446345044,147.473030379436,147.628300101826,147.325857343258 +148.552092056749,146.519507790439,148.644093929706,147.471226847621,147.610553103005,147.321974629285 +148.511976419207,146.502522535009,148.599353502362,147.447996210813,147.573919623123,147.314224618302 +148.502835510682,146.495699126104,148.579116613379,147.442325178522,147.549763720956,147.308553918064 +148.456532328614,146.479921316696,148.529344615606,147.42584764079,147.519422188953,147.288380868202 +148.425096612737,146.472992916635,148.503686694258,147.407826315419,147.493544400476,147.271977823114 +148.3855845663,146.460765928029,148.457932352114,147.40368070616,147.472301002736,147.268987598631 +148.363321862953,146.458845013556,148.443990175068,147.39482776832,147.449585000853,147.275151972925 +148.332672806993,146.460322610953,148.408717220271,147.383829821,147.417099721865,147.263923575149 +148.315429803859,146.449098261826,148.390780235349,147.368673243283,147.396628983732,147.239526787922 +148.271872143256,146.439293581555,148.352999567944,147.353319699684,147.381044213216,147.238035543462 +148.24490915284,146.421358906715,148.322106371189,147.342539849792,147.354091634995,147.222866797474 +148.218771271022,146.426649732908,148.296892146063,147.330736257942,147.33327763253,147.230238714989 +148.204838220602,146.412496681875,148.280185077814,147.33228780747,147.31380515577,147.214232447579 +148.162522516513,146.40531672911,148.248962023905,147.316325681178,147.278898728793,147.206818922537 +148.150748702312,146.40509892216,148.221240215567,147.310100950763,147.287690972823,147.207987166694 +148.115606161484,146.397002928567,148.191643489124,147.291836371263,147.24655494389,147.192726662963 +148.101177527755,146.390667983651,148.192699397271,147.29866762652,147.243682988403,147.195399253537 +148.082452142254,146.389738789193,148.155714982552,147.280410830539,147.218957991045,147.181532638194 +148.037008332858,146.370193405291,148.121825376599,147.271716022257,147.202870734484,147.160825307662 +148.037457400825,146.371104016079,148.112105494576,147.274244193597,147.182527843572,147.17120794574 +148.015363425896,146.368655649312,148.086313048779,147.255622947747,147.165986501852,147.162059212539 +147.984191051091,146.35228554979,148.05976185819,147.245484087269,147.141063052706,147.154692960005 +147.961312302186,146.352747417553,148.037344572687,147.240632561413,147.131591470342,147.148917565579 +147.945088429249,146.351314731285,148.01534259169,147.241509558935,147.108905139217,147.13870580731 +147.925524225139,146.341694327487,147.998551004627,147.221951352202,147.095816346037,147.130930150296 +147.906243843535,146.340209120577,147.976265727744,147.217000226991,147.073077827454,147.12297605422 +147.88570304463,146.339542587265,147.95341334025,147.214023212404,147.059936695542,147.126236509958 +147.864067244564,146.335703215843,147.935936608929,147.211568482696,147.053324024773,147.117775546794 +147.833556191479,146.326458264055,147.901958232975,147.192848102034,147.026288824427,147.100210990738 +147.808572913119,146.306572006006,147.879516193651,147.177112525734,147.000852363995,147.094871481461 +147.796661803141,146.312912157986,147.865987102311,147.178834751793,146.995875449168,147.091742436949 +147.795017956344,146.317966354861,147.864574293769,147.196134932497,146.991460183077,147.092871212299 +147.765510972358,146.305105404044,147.838763778183,147.166404647986,146.96542852496,147.092249317089 +147.736944041764,146.296647523426,147.822212246208,147.153323210515,146.956506168357,147.072931088589 +147.72152777918,146.288861641646,147.801711617529,147.151540769016,146.953106912094,147.075075842331 +147.7228802515,146.29644830895,147.794514137284,147.158206276,146.936672331524,147.081279107706 +147.696354065161,146.28748921028,147.767062814078,147.145316489335,146.92239784891,147.070930839195 +147.687229513342,146.286221835993,147.761173061909,147.148437921336,146.910042514216,147.073821161117 +147.670592542386,146.288531107473,147.738989747956,147.142200513152,146.885557585043,147.060884758595 +147.659401628509,146.274806834402,147.730802464688,147.132398268415,146.869981766398,147.05293090987 +147.630736349283,146.285185389661,147.721315299433,147.131230062674,146.870661592169,147.058461917324 +147.631356156636,146.270332774379,147.690740438727,147.125612371875,146.864120601294,147.04637625588 +147.607351878894,146.27105181473,147.679906444008,147.113857007493,146.847284923743,147.041551428058 +147.584568848024,146.267448934731,147.670986746441,147.114410990257,146.832593896526,147.047649510763 +147.574620169169,146.258429742535,147.658958088987,147.100768187663,146.828885032494,147.034700120938 +147.565635182611,146.256146766178,147.651128103366,147.103104568582,146.812742561179,147.038653463125 +147.53691083235,146.25145495307,147.617319294918,147.086398483265,146.794652742077,147.028877939813 +147.54336723498,146.247516126207,147.613840214893,147.098628863011,146.799721158272,147.028171793562 +147.524447049184,146.255624710742,147.609938435587,147.092417865416,146.791432168675,147.021267981236 +147.5158378453,146.247020337447,147.596014508479,147.098363897049,146.786983350331,147.020283744003 +147.500304814358,146.248353347533,147.580711993558,147.087684898335,146.755055993613,147.027854289439 +147.497947204681,146.233989086754,147.561718118845,147.07955249713,146.757087687331,147.019491100375 +147.487741573208,146.250345185943,147.567455138133,147.082285189115,146.750350002625,147.007208601267 +147.474624329788,146.240006189074,147.548792088976,147.070325315648,146.731924633067,147.01419118996 +147.461123902403,146.229976953483,147.534598060843,147.069070640204,146.728360418597,147.01663257491 +147.446746470277,146.232926403047,147.519758061354,147.069018092525,146.72507426541,146.997175942093 +147.442771599601,146.233572094979,147.524332026842,147.062502805671,146.710937921201,147.012374906933 +147.419462426078,146.226670722457,147.507953567293,147.060219013748,146.706575750535,147.005471143088 +147.427924515287,146.237206639148,147.492848731038,147.063597613148,146.704872472396,147.010004667363 +147.406377312519,146.232758922935,147.490477992242,147.06446141493,146.685641815995,147.005786422865 +147.40212659507,146.238670964421,147.49038601583,147.061828381401,146.68855246037,147.0015364535 +147.395439550578,146.239607785247,147.481157171537,147.066692662755,146.689489469305,146.997160585193 +147.377912281023,146.227400664538,147.452076906288,147.056329100382,146.666424459345,146.998116318964 +147.373430577872,146.224537689683,147.450598654343,147.053003058609,146.662406094016,146.993404364232 +147.370618704109,146.234889746205,147.450097144426,147.046264491528,146.662597655623,147.002142957985 +147.342668743553,146.218268903465,147.433467355207,147.043497893571,146.647821352059,146.995911412565 +147.352886867251,146.233331282809,147.435599312104,147.047708531229,146.641637863462,146.995963959551 +147.347743846162,146.239275049817,147.433690723277,147.052499422093,146.649199464659,147.008146766057 +147.3275310485,146.210297236299,147.404928616349,147.036678320019,146.626683275805,146.991863974443 +147.333551068809,146.217930714199,147.408176337876,147.046393648614,146.6352420254,146.997652106096 +147.313451181082,146.217699794251,147.398934686247,147.03091636281,146.630160845059,146.991877111264 +147.308730897318,146.216214678386,147.391210703233,147.031971747666,146.624287175591,146.99547347504 +147.302340851006,146.222990156415,147.39429306096,147.045217813344,146.607967749877,147.001789301592 +147.295039839986,146.213152524178,147.383526164246,147.045309773826,146.605519131665,146.994258256016 +147.302372594412,146.230873195013,147.381386582243,147.050793678435,146.615390222258,147.006903057777 +147.278728717109,146.216939165484,147.36074536486,147.034082520062,146.596372695048,146.985110243429 +147.287712575238,146.225918793169,147.368112281374,147.040755365708,146.601196570159,147.000329942134 +147.267321837671,146.214081665987,147.3537277599,147.030299967942,146.594900463767,146.994263721671 +147.267697389843,146.223001084265,147.353872290019,147.024900401991,146.592273440699,146.998104228076 +147.257301174301,146.224617528246,147.34208947084,147.035295554725,146.589732897661,147.004110239511 +147.269057278235,146.223205739688,147.345990792326,147.040813381041,146.587397046226,146.993688955706 +147.245828710413,146.214535837706,147.334313125983,147.030985308056,146.564868344148,146.997028050152 +147.24788713085,146.230217627342,147.346306131211,147.045286762767,146.578935888091,147.00047224702 +147.24339801089,146.222497645719,147.33026509442,147.037563982432,146.580222021922,146.998524616401 +147.243965170176,146.223295468616,147.320897837753,147.041827160768,146.573860303396,147.00694573614 +147.244618829729,146.2225633091,147.328251486052,147.045945834672,146.575206639708,147.008292330922 +147.221891973743,146.222015007642,147.317306426616,147.033154102977,146.559646111482,146.993421813817 +147.220810220027,146.223935699475,147.311372951206,147.039464566206,146.548864580411,147.005507181292 +147.219245615121,146.228375725742,147.297101570202,147.036514061448,146.559771989172,147.004173725416 +147.22743652994,146.227326182772,147.31014442834,147.043087284064,146.559646111482,147.01213286323 +147.210742680842,146.228651514035,147.305001510024,147.038868986509,146.560047818315,147.017154687445 +147.210795235057,146.230320493458,147.299047259892,147.047699716866,146.554557437524,147.010046183991 +147.213018956476,146.230926797565,147.303119315719,147.047382220566,146.548004242977,147.009035689114 +147.202121533041,146.236660438918,147.283673366454,147.042260699981,146.554662515642,147.016850332715 +147.194537272051,146.228617585703,147.27955426239,147.045996190062,146.537842288411,147.014579725845 +147.210068226985,146.240908967655,147.294392706127,147.052285884791,146.549904415116,147.023872367327 +147.197018275579,146.240796242192,147.300748783683,147.047553010513,146.547251179106,147.021680578824 +147.174107958658,146.224823259793,147.275065082225,147.041045461905,146.540052213558,147.01794512864 +147.189420893246,146.239436974655,147.268199939127,147.043190191878,146.541734560501,147.025633900529 +147.179124669008,146.233763519552,147.277078642651,147.046292883413,146.540910352902,147.02388550487 diff --git a/src/pyvale/data/valid/Pulse253_HIVE.csv b/src/pyvale/data/valid/Pulse253_HIVE.csv new file mode 100644 index 000000000..b87720ad1 --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_HIVE.csv @@ -0,0 +1,1069 @@ +TC2 +143.3 +143.44 +143.22 +143.44 +143.21 +143.43 +143.39 +143.33 +143.23 +143.5 +143.27 +143.17 +143.26 +143.41 +143.18 +143.35 +143.25 +143.42 +143.36 +143.19 +143.31 +143.41 +143.5 +143.42 +143.32 +143.29 +143.41 +143.38 +143.36 +143.16 +143.33 +143.39 +143.31 +143.31 +143.3 +143.39 +143.34 +143.4 +143.27 +143.22 +143.44 +143.3 +143.27 +143.33 +143.27 +143.34 +143.42 +143.2 +143.38 +143.4 +143.28 +143.25 +143.44 +143.38 +143.4 +143.34 +143.52 +143.39 +143.33 +143.32 +143.41 +143.39 +143.38 +143.43 +143.39 +143.46 +143.34 +143.39 +143.48 +143.37 +143.35 +143.49 +143.31 +143.42 +143.32 +143.41 +143.39 +143.38 +143.38 +143.48 +143.31 +143.36 +143.39 +143.45 +143.27 +143.46 +143.52 +143.39 +143.58 +143.35 +143.62 +143.4 +143.39 +143.48 +142.435 +145.40499999999997 +145.445 +145.685 +145.825 +146.245 +147.41499999999996 +147.60499999999996 +149.21499999999997 +147.865 +147.185 +148.385 +147.20499999999998 +148.265 +150.115 +149.53499999999997 +150.385 +154.365 +150.17499999999995 +152.58499999999998 +153.97499999999997 +152.72499999999997 +153.635 +157.02499999999998 +157.64499999999998 +155.96499999999997 +157.85499999999996 +157.46499999999997 +158.77499999999998 +159.60499999999996 +161.015 +163.245 +163.135 +163.72499999999997 +166.375 +169.72499999999997 +166.945 +167.625 +167.60499999999996 +168.70499999999998 +170.08499999999998 +171.66499999999996 +171.255 +171.555 +174.23499999999996 +173.79499999999996 +174.575 +175.79499999999996 +175.70499999999998 +177.84499999999997 +178.52499999999998 +182.015 +181.305 +180.635 +179.555 +179.825 +180.995 +181.91499999999996 +182.70499999999998 +183.39499999999998 +184.615 +184.885 +183.575 +189.17499999999995 +186.48499999999996 +187.315 +187.315 +187.79499999999996 +189.72499999999997 +193.89499999999998 +191.02499999999998 +190.79499999999996 +192.14499999999998 +192.79499999999996 +192.33499999999998 +196.35499999999996 +193.96499999999997 +193.125 +194.14499999999998 +193.505 +195.815 +201.385 +194.92499999999995 +196.945 +196.565 +196.91499999999996 +197.825 +203.53499999999997 +198.495 +198.115 +200.27499999999998 +201.95499999999998 +199.60499999999996 +201.015 +204.95499999999998 +201.47499999999997 +201.495 +202.245 +201.67499999999995 +202.40499999999997 +202.615 +207.09499999999997 +203.54499999999996 +203.325 +203.83499999999998 +205.09499999999997 +208.33499999999998 +203.58499999999998 +204.625 +206.075 +205.515 +207.39499999999998 +208.59499999999997 +204.71499999999997 +207.865 +206.695 +208.195 +212.635 +208.075 +206.575 +207.59499999999997 +213.375 +208.505 +208.21499999999997 +208.10499999999996 +210.995 +207.98499999999996 +208.84499999999997 +209.365 +211.27499999999998 +208.325 +210.10499999999996 +210.33499999999998 +214.03499999999997 +210.825 +210.995 +211.21499999999997 +214.945 +210.60499999999996 +210.135 +210.48499999999996 +211.03499999999997 +211.65499999999997 +212.21499999999997 +216.055 +210.89499999999998 +211.075 +210.495 +211.98499999999996 +211.615 +212.78499999999997 +212.015 +212.22499999999997 +217.53499999999997 +211.745 +212.54499999999996 +212.95499999999998 +212.85499999999996 +214.39499999999998 +213.64499999999998 +213.755 +212.71499999999997 +213.135 +216.04499999999996 +212.04499999999996 +213.20499999999998 +213.065 +217.075 +211.92499999999995 +212.325 +211.83499999999998 +216.15499999999997 +213.29499999999996 +213.17499999999995 +216.47499999999997 +213.065 +213.21499999999997 +212.28499999999997 +215.60499999999996 +214.22499999999997 +212.85499999999996 +214.365 +218.435 +213.125 +213.435 +213.72499999999997 +217.34499999999997 +212.445 +215.39499999999998 +213.325 +218.02499999999998 +213.22499999999997 +214.58499999999998 +214.60499999999996 +218.255 +214.39499999999998 +213.745 +214.64499999999998 +216.765 +214.20499999999998 +214.515 +214.815 +218.40499999999997 +213.73499999999996 +215.60499999999996 +215.115 +214.375 +215.435 +215.315 +218.41499999999996 +213.85499999999996 +214.78499999999997 +214.15499999999997 +215.15499999999997 +215.04499999999996 +214.89499999999998 +216.135 +214.60499999999996 +215.755 +215.495 +215.67499999999995 +214.765 +214.92499999999995 +214.635 +216.495 +217.73499999999996 +214.245 +214.625 +214.78499999999997 +213.635 +216.91499999999996 +215.625 +214.195 +214.47499999999997 +214.555 +218.315 +214.065 +214.065 +215.27499999999998 +220.115 +214.65499999999997 +216.02499999999998 +215.10499999999996 +215.245 +215.17499999999995 +215.185 +214.78499999999997 +215.755 +218.885 +213.875 +215.805 +214.015 +215.015 +217.805 +216.22499999999997 +216.555 +214.85499999999996 +214.92499999999995 +219.365 +215.48499999999996 +216.54499999999996 +215.865 +213.92499999999995 +218.70499999999998 +214.09499999999997 +215.09499999999997 +216.67499999999995 +215.21499999999997 +219.48499999999996 +214.48499999999996 +214.635 +216.14499999999998 +218.21499999999997 +213.70499999999998 +214.34499999999997 +215.03499999999997 +216.02499999999998 +215.075 +214.10499999999996 +215.83499999999998 +216.60499999999996 +213.84499999999997 +214.65499999999997 +215.28499999999997 +214.935 +215.98499999999996 +215.67499999999995 +215.115 +216.90499999999997 +216.505 +214.695 +216.54499999999996 +214.45499999999998 +214.66499999999996 +215.055 +215.445 +215.625 +215.79499999999996 +216.65499999999997 +214.79499999999996 +215.20499999999998 +214.95499999999998 +215.685 +216.015 +215.995 +215.70499999999998 +216.21499999999997 +215.65499999999997 +214.70499999999998 +216.445 +215.29499999999996 +213.83499999999998 +215.35499999999996 +215.255 +214.65499999999997 +215.28499999999997 +214.515 +216.40499999999997 +216.58499999999998 +215.28499999999997 +220.98499999999996 +215.73499999999996 +219.54499999999996 +214.02499999999998 +218.28499999999997 +214.27499999999998 +218.445 +216.625 +217.78499999999997 +215.635 +215.505 +215.84499999999997 +216.385 +214.48499999999996 +216.16499999999996 +216.08499999999998 +215.66499999999996 +215.54499999999996 +214.805 +215.21499999999997 +214.41499999999996 +214.865 +215.73499999999996 +215.53499999999997 +216.70499999999998 +216.14499999999998 +213.935 +216.35499999999996 +215.255 +217.15499999999997 +214.89499999999998 +218.995 +215.885 +219.125 +216.03499999999997 +219.54499999999996 +216.695 +218.98499999999996 +215.115 +215.46499999999997 +214.42499999999995 +215.45499999999998 +216.245 +216.245 +217.17499999999995 +214.39499999999998 +219.53499999999997 +215.70499999999998 +215.245 +215.04499999999996 +215.245 +217.805 +216.46499999999997 +216.39499999999998 +215.54499999999996 +215.27499999999998 +217.65499999999997 +215.135 +215.09499999999997 +216.03499999999997 +216.77499999999998 +219.15499999999997 +215.20499999999998 +220.70499999999998 +214.46499999999997 +220.755 +216.08499999999998 +219.54499999999996 +216.45499999999998 +219.78499999999997 +215.315 +218.64499999999998 +216.92499999999995 +215.95499999999998 +216.745 +216.08499999999998 +214.995 +216.445 +215.73499999999996 +215.72499999999997 +217.945 +217.41499999999996 +217.27499999999998 +216.40499999999997 +216.515 +214.45499999999998 +215.615 +214.08499999999998 +216.34499999999997 +219.96499999999997 +217.765 +216.89499999999998 +216.065 +218.265 +217.125 +218.67499999999995 +215.40499999999997 +220.03499999999997 +216.70499999999998 +215.565 +215.53499999999997 +215.125 +216.97499999999997 +216.265 +220.46499999999997 +215.435 +215.79499999999996 +215.055 +215.555 +217.10499999999996 +215.17499999999995 +216.625 +215.255 +217.565 +214.755 +216.815 +216.10499999999996 +220.03499999999997 +216.42499999999995 +216.245 +216.885 +216.92499999999995 +221.865 +216.115 +214.53499999999997 +215.935 +217.02499999999998 +219.495 +217.29499999999996 +217.97499999999997 +214.995 +215.58499999999998 +218.245 +216.71499999999997 +217.765 +214.885 +216.075 +217.77499999999998 +215.515 +218.04499999999996 +215.945 +215.27499999999998 +216.35499999999996 +216.35499999999996 +215.85499999999996 +214.60499999999996 +218.27499999999998 +214.505 +218.805 +214.64499999999998 +222.575 +216.22499999999997 +219.685 +215.255 +214.635 +216.495 +216.41499999999996 +216.20499999999998 +216.745 +215.075 +216.315 +216.02499999999998 +219.90499999999997 +215.075 +222.575 +216.95499999999998 +221.505 +217.04499999999996 +220.77499999999998 +214.765 +217.60499999999996 +215.48499999999996 +215.365 +215.125 +216.935 +221.29499999999996 +214.97499999999997 +222.92499999999995 +216.005 +216.60499999999996 +214.385 +216.78499999999997 +216.77499999999998 +214.495 +215.385 +216.71499999999997 +222.005 +214.755 +217.135 +214.635 +216.77499999999998 +221.27499999999998 +215.435 +216.755 +215.245 +217.245 +217.015 +215.85499999999996 +218.28499999999997 +215.33499999999998 +216.58499999999998 +217.15499999999997 +215.745 +218.375 +215.055 +222.46499999999997 +215.305 +219.96499999999997 +215.565 +215.65499999999997 +216.66499999999996 +217.91499999999996 +221.365 +215.325 +215.17499999999995 +215.40499999999997 +215.21499999999997 +218.055 +216.385 +216.805 +217.52499999999998 +219.135 +215.635 +216.52499999999998 +220.445 +215.71499999999997 +216.42499999999995 +222.495 +215.195 +217.195 +217.08499999999998 +215.48499999999996 +220.185 +216.055 +216.95499999999998 +217.865 +215.755 +219.66499999999996 +215.23499999999996 +216.885 +217.945 +216.29499999999996 +219.125 +215.04499999999996 +216.065 +218.60499999999996 +217.04499999999996 +217.58499999999998 +215.46499999999997 +215.365 +217.92499999999995 +216.47499999999997 +215.575 +218.84499999999997 +216.48499999999996 +215.91499999999996 +221.305 +216.515 +217.72499999999997 +218.805 +216.42499999999995 +221.565 +216.71499999999997 +217.96499999999997 +215.815 +215.625 +216.58499999999998 +216.565 +215.575 +215.84499999999997 +216.945 +215.40499999999997 +216.495 +217.23499999999996 +217.33499999999998 +215.755 +218.815 +215.71499999999997 +220.125 +215.435 +217.03499999999997 +215.055 +216.45499999999998 +221.745 +215.055 +215.755 +220.60499999999996 +216.96499999999997 +215.89499999999998 +221.35499999999996 +215.02499999999998 +215.59499999999997 +217.29499999999996 +215.28499999999997 +215.40499999999997 +215.135 +215.47499999999997 +215.78499999999997 +214.39499999999998 +218.945 +216.695 +218.375 +216.54499999999996 +221.565 +214.96499999999997 +218.635 +214.98499999999996 +216.58499999999998 +216.575 +217.48499999999996 +216.27499999999998 +215.79499999999996 +214.67499999999995 +214.315 +216.23499999999996 +214.185 +214.47499999999997 +215.67499999999995 +215.185 +214.92499999999995 +214.995 +215.625 +217.005 +214.52499999999998 +221.67499999999995 +215.77499999999998 +216.305 +215.26 +215.06 +214.98 +214.98 +214.87 +214.67 +214.49 +214.38 +214.25 +213.94 +213.55 +213.17 +212.66 +212.13 +211.44 +210.9 +210.12 +209.48 +208.76 +207.88 +206.97 +206.21 +205.32 +204.67 +203.55 +202.86 +201.82 +200.95 +200.2 +199.2 +198.24 +197.43 +196.64 +195.69 +194.87 +193.99 +193.19 +192.37 +191.52 +190.69 +189.85 +189.16 +188.33 +187.45 +186.66 +186.0 +185.23 +184.52 +183.73 +183.04 +182.37 +181.77 +180.96 +180.21 +179.52 +178.99 +178.35 +177.63 +177.04 +176.45 +175.96 +175.34 +174.64 +174.09 +173.51 +173.01 +172.45 +171.92 +171.27 +170.83 +170.28 +169.88 +169.36 +168.91 +168.45 +167.86 +167.38 +167.08 +166.41 +166.1 +165.65 +165.21 +164.87 +164.4 +164.02 +163.55 +163.47 +162.81 +162.58 +162.13 +161.9 +161.56 +161.05 +160.73 +160.49 +160.13 +159.69 +159.5 +159.14 +158.97 +158.68 +158.27 +158.07 +157.81 +157.51 +157.27 +156.95 +156.61 +156.37 +156.11 +155.99 +155.71 +155.47 +155.22 +155.0 +154.84 +154.56 +154.4 +154.17 +153.82 +153.84 +153.61 +153.26 +153.23 +153.02 +152.77 +152.63 +152.43 +152.14 +152.07 +151.96 +151.74 +151.63 +151.51 +151.24 +151.11 +150.97 +150.77 +150.74 +150.53 +150.2 +150.18 +150.0 +149.95 +149.97 +149.69 +149.65 +149.47 +149.34 +149.26 +149.09 +149.2 +148.9 +148.75 +148.77 +148.66 +148.5 +148.58 +148.18 +148.15 +148.13 +148.05 +147.92 +147.89 +147.91 +147.72 +147.55 +147.6 +147.36 +147.36 +147.37 +147.21 +147.16 +146.99 +146.93 +146.91 +146.84 +146.87 +146.69 +146.71 +146.59 +146.58 +146.39 +146.31 +146.33 +146.26 +146.36 +146.18 +146.15 +146.01 +145.93 +146.0 +145.91 +145.88 +145.9 +145.79 +145.67 +145.82 +145.62 +145.62 +145.63 +145.45 +145.57 +145.5 +145.33 +145.41 +145.37 +145.35 +145.46 +145.3 +145.17 +145.16 +145.2 +145.09 +145.18 +145.1 +144.95 +145.02 +144.93 +144.9 +144.87 +144.91 +144.97 +144.71 +144.8 +144.89 +144.81 +144.66 +144.74 +144.64 +144.53 +144.6 +144.71 +144.66 +144.63 +144.65 +144.57 +144.47 +144.55 +144.47 +144.44 +144.51 +144.4 +144.35 +144.41 +144.34 +144.34 +144.22 +144.44 +144.37 +144.27 +144.2 +144.25 +144.28 +144.21 +144.22 +144.19 +144.16 +144.04 +144.16 +144.15 +144.06 +144.13 +144.04 +144.17 +144.13 +144.1 +144.1 +143.94 +144.08 +144.01 +144.08 +144.01 +144.12 +144.13 +143.91 +143.96 +144.06 +143.96 +143.9 +143.91 +143.94 +143.89 +144.07 +143.89 +143.98 +144.03 +143.76 +143.8 +143.95 +143.87 +143.82 +143.91 +143.95 +143.88 +143.84 +143.84 +143.72 +143.94 +143.86 +143.8 +143.85 +143.76 +143.91 +143.84 +143.91 +143.86 +143.87 +143.85 +143.86 +143.79 +143.8 +143.84 +143.78 +143.83 +143.75 +143.79 +143.7 +143.84 +143.65 +143.68 +143.68 +143.76 +143.74 +143.77 +143.62 +143.78 diff --git a/src/pyvale/data/valid/Pulse253_SteadyDICData.csv b/src/pyvale/data/valid/Pulse253_SteadyDICData.csv new file mode 100755 index 000000000..064d98e0f --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_SteadyDICData.csv @@ -0,0 +1,435 @@ +Data Point Number,Timestamp,TC1,TC3,TC4,TC5,TC6,TC7,TC8,TC9,TC10 +362,260.996,,350.5439659,,174.6138873,338.6786021,,193.8633247,277.5638108,185.0958745 +363,261.995,,350.7900605,,174.6140368,338.6319339,,193.8741912,277.5881723,185.1060454 +364,262.995,,349.4601987,,174.6082458,338.8140796,,193.8635052,277.5841286,185.1156314 +365,263.995,,349.6456165,,174.6190946,338.5259868,,193.8904338,277.5609502,185.143501 +366,264.995,,350.7376383,,174.6378172,338.7166654,,193.8870316,277.6090194,185.1352035 +367,265.996,,350.7690904,,174.6468821,338.8040283,,193.8867812,277.5981394,185.1396141 +368,266.996,,349.8707779,,174.6369475,338.7483775,,193.8728819,277.6154163,185.1352654 +369,267.996,,349.7060371,,174.642304,338.5936779,,193.8931511,277.6385007,185.1278081 +370,268.995,,349.8050365,,174.6526649,338.791731,,193.9046811,277.6019486,185.1412063 +371,269.995,,349.5632604,,174.6577709,338.7714299,,193.9302909,277.5987633,185.1484135 +372,270.996,,349.7716876,,174.6497784,338.8364468,,193.8973669,277.6652271,185.1434447 +373,271.996,,350.8244694,,174.6543659,338.7039732,,193.9073147,277.6287227,185.1524636 +374,272.996,,349.9125171,,174.6667526,338.8000884,,193.9241329,277.6652019,185.1753467 +375,273.996,,351.1338324,,174.6756066,338.5731705,,193.9395138,277.6656589,185.1576394 +376,274.995,,350.6878361,,174.6764417,338.6896612,,193.9126252,277.6961169,185.1682632 +377,275.995,,349.9315334,,174.6886879,338.6623738,,193.9027438,277.6358245,185.1530183 +378,276.995,,350.4801264,,174.6816487,338.8081051,,193.9248236,277.6805829,185.1608893 +379,277.995,,350.8996852,,174.6944266,338.7396437,,193.9387715,277.6979791,185.1881257 +380,278.995,,350.7919199,,174.6928274,339.15382,,193.9460246,277.7496068,185.1667159 +381,279.995,,351.496497,,174.6779716,338.7669145,,193.9353565,277.6928513,185.1842435 +382,280.995,,351.538091,,174.7020507,338.9919109,,193.9547857,277.6784572,185.180374 +383,281.995,,351.107218,,174.7009304,338.8149698,,193.961586,277.6685424,185.184613 +384,282.995,,349.7561141,,174.6945462,338.9938669,,193.9503068,277.7119,185.1919742 +385,283.995,,350.6753475,,174.7041648,338.7346987,,193.9382627,277.7386725,185.1864515 +386,284.995,,350.5697965,,174.6939357,338.9402328,,193.9608789,277.6952389,185.1841387 +387,285.995,,350.6861197,,174.72309,338.6716745,,193.9776971,277.7462007,185.2042253 +388,286.995,,351.6272743,,174.7287542,338.8465054,,193.9558726,277.7288481,185.1870545 +389,287.995,,351.2930457,,174.7218205,338.8597072,,193.9484703,277.7006111,185.1915353 +390,288.995,,350.8612966,,174.7207398,338.6016597,,193.9506507,277.6721774,185.1988437 +391,289.995,,350.4268774,,174.7304199,338.8260322,,193.9724493,277.7542287,185.2169206 +392,290.995,,349.4681597,,174.7457992,338.8675009,,193.9848059,277.6852141,185.204811 +393,291.995,,350.4145767,,174.7308597,338.9936287,,193.9761509,277.6967218,185.2012802 +394,292.995,,350.0164433,,174.7339577,338.9027534,,193.9610782,277.6841171,185.2088084 +395,293.995,,351.6704597,,174.7302757,338.7744031,,193.9944375,277.7233112,185.2025602 +396,294.995,,351.0761834,,174.7412039,338.9741069,,193.979277,277.6898009,185.2067378 +397,295.995,,350.2593725,,174.736599,338.8776417,,193.9814265,277.6957362,185.2161127 +398,296.995,,350.9861453,,174.7485511,338.8866296,,193.9940821,277.6865305,185.2280734 +399,297.995,,350.9127257,,174.7364458,338.7791943,,194.0041045,277.7465061,185.2031415 +400,298.995,,350.6450221,,174.7496059,338.8891995,,194.0116784,277.7540895,185.2195739 +401,299.995,,350.5011192,,174.7443069,338.9010682,,194.0133666,277.7211048,185.2231271 +402,300.995,,351.0496866,,174.7561713,338.8778743,,193.9986766,277.745986,185.2284745 +403,301.995,,351.1105355,,174.7495714,338.8258621,,194.0104791,277.7551875,185.2160436 +404,302.995,,350.4478816,,174.7551302,338.9787431,,193.998567,277.7682835,185.233259 +405,303.995,,351.4609196,,174.7498312,338.8537508,,194.0044487,277.7773913,185.2146722 +406,304.995,,350.8834153,,174.764547,338.9215551,,194.0051918,277.7778868,185.2370893 +407,305.995,,350.7700447,,174.7622227,338.8321758,,193.999838,277.7496034,185.2289371 +408,306.995,,350.9616868,,174.7558649,338.6845444,,194.0069901,277.762661,185.2167484 +409,307.995,,350.5474271,,174.7593231,338.4930279,,193.9911129,277.72325,185.223938 +410,308.995,,350.3131631,,174.7652421,338.7775563,,194.0189336,277.7382804,185.2256663 +411,309.995,,350.6720511,,174.7535893,339.0998609,,194.0182261,277.7649758,185.2221619 +412,310.995,,351.6336112,,174.7733276,338.9054403,,194.0030261,277.7418377,185.2290966 +413,311.995,,350.6686071,,174.7758457,338.9504244,,194.0216202,277.7309327,185.233714 +414,312.995,,350.8766374,,174.7635293,338.8958391,,194.0167542,277.7325424,185.2293124 +415,313.995,,350.7204915,,174.7801478,338.7771116,,194.0240601,277.7314923,185.2240361 +416,314.995,,350.4583029,,174.7762507,338.847163,,194.0089789,277.7410573,185.237615 +417,315.994,,350.5776018,,174.7803285,338.8425956,,194.0163198,277.7217104,185.2333059 +418,316.995,,350.65085,,174.7922497,338.7195938,,194.0091419,277.7477784,185.2286891 +419,317.994,,350.5151466,,174.777574,338.8943474,,194.0105357,277.6954978,185.2270537 +420,318.994,,350.8161408,,174.7833083,338.8180306,,194.0025268,277.7354688,185.2432795 +421,319.994,,350.9543128,,174.7765817,338.9560326,,194.0321413,277.7612936,185.2356158 +422,320.994,,350.3239175,,174.7825179,338.8580655,,194.0140837,277.6950971,185.2347978 +423,321.994,,350.1210442,,174.7853349,338.864774,,194.0176007,277.7494323,185.2289939 +424,322.994,,351.6397653,,174.7830107,338.8665616,,194.0213328,277.7311061,185.2415833 +425,323.994,,350.9997311,,174.7874137,338.7394848,,194.0145548,277.7822294,185.2285106 +426,324.994,,350.9546674,,174.7892946,339.0611482,,194.0259883,277.7143556,185.235753 +427,325.994,,350.875946,,174.8042611,338.8953715,,194.0111401,277.7135106,185.2334845 +428,326.995,,350.4389383,,174.7788682,338.8866701,,194.0085688,277.7438271,185.2283488 +429,327.994,,350.6094538,,174.7895769,338.820687,,194.0230091,277.7125931,185.2341711 +430,328.994,,350.6805917,,174.8053517,338.6822029,,194.0168904,277.7200016,185.239936 +431,329.995,,350.6890183,,174.8025003,338.9117411,,194.0212601,277.7629443,185.2405784 +432,330.994,,350.8494524,,174.7856977,338.883845,,194.0216911,277.6995449,185.2375137 +433,331.994,,349.9295574,,174.7970127,338.7000786,,194.0288169,277.6575839,185.2336885 +434,332.994,,350.8159383,,174.7810011,338.83254,,194.0039462,277.6777814,185.2321146 +435,333.994,,351.0972419,,174.7932212,338.7552973,,194.0152391,277.7102506,185.2296613 +436,334.995,,350.9185833,,174.7954227,339.001928,,194.0335166,277.6793489,185.2383898 +437,335.994,,350.7207415,,174.7955461,338.7038017,,194.0348049,277.7054943,185.241776 +438,336.994,,350.7457804,,174.7988507,338.7310389,,194.0059605,277.6654805,185.227371 +439,337.994,,350.9103056,,174.8037855,338.7542636,,194.0157896,277.6044187,185.2360382 +440,338.994,,350.8157796,,174.7952743,338.8647026,,194.0124006,277.6653997,185.2361438 +441,339.994,,350.5612227,,174.8081846,338.6973974,,194.0304411,277.6960503,185.2334489 +442,340.994,,350.6015866,,174.8100127,338.8346744,,194.0266786,277.7086895,185.2408716 +443,341.994,,351.0217289,,174.8108347,338.6912406,,194.0039707,277.613306,185.2440247 +444,342.994,,350.6929422,,174.805896,338.689857,,193.9973993,277.598775,185.2327901 +445,343.994,,350.6803307,,174.809737,338.7296447,,194.0231412,277.543891,185.2277778 +446,344.994,,350.1251696,,174.8117631,338.6624821,,194.0202756,277.5732447,185.2430893 +447,345.994,,350.7003504,,174.8126946,338.7739364,,194.0219064,277.6438553,185.2412249 +448,346.994,,350.9482271,,174.8058625,338.6262953,,194.004122,277.6229582,185.2292608 +449,347.994,,350.4163299,,174.8167599,338.9354199,,194.0173533,277.6281167,185.2278143 +450,348.994,,351.1535007,,174.8032573,338.7691386,,193.982645,277.610016,185.2310816 +451,349.994,,350.6765424,,174.8223189,338.4650522,,194.0101009,277.5905188,185.241534 +452,350.994,,350.4347972,,174.8341657,338.6533865,,194.0161278,277.6022578,185.2370757 +453,351.994,,350.4033561,,174.8239498,338.5482011,,194.0282735,277.6160933,185.2447975 +454,352.994,,350.9602717,,174.8202943,338.7223629,,194.0097063,277.6091461,185.2264571 +455,353.994,,350.8048234,,174.821569,338.6805615,,194.0051571,277.6241901,185.2391522 +456,354.994,,351.3209781,,174.8392333,338.7032648,,194.006753,277.5963193,185.2430791 +457,355.995,,350.6100809,,174.8423974,338.5190466,,194.0276242,277.5661254,185.2453133 +458,356.994,,350.5226831,,174.8487824,338.5347436,,194.030051,277.5105444,185.2367875 +459,357.994,,350.8781955,,174.8436372,338.5648164,,194.0165169,277.427008,185.2360666 +460,358.994,,350.890218,,174.8582787,338.7092344,,194.0295331,277.3387075,185.239532 +461,359.994,,350.7458254,,174.8370908,338.4673772,,193.9983194,277.3031764,185.236274 +462,360.994,,350.9868024,,174.8428562,338.5049962,,193.9908076,277.2972364,185.2357512 +463,361.994,,351.4260733,,174.8431815,338.6976817,,193.991133,277.3267507,185.2344453 +464,362.994,,351.5090941,,174.8476157,338.733579,,194.0118769,277.3217803,185.2307258 +465,363.994,,350.7106562,,174.8704913,338.5521794,,194.0256751,277.2903699,185.2426643 +466,364.994,,350.6245957,,174.8577758,338.4931957,,194.0341553,277.3198851,185.2485838 +467,365.994,,350.4507417,,174.8768856,338.710326,,193.996427,277.3393632,185.2539572 +468,366.994,,351.1723031,,174.8836619,338.4430732,,194.0213776,277.3065657,185.2530476 +469,367.994,,350.6584324,,174.874452,338.446518,,194.0207843,277.3141376,185.2449964 +470,368.994,,350.7079045,,174.8792643,338.6782746,,194.0155805,277.3054604,185.263096 +471,369.994,,351.1438654,,174.8823974,338.6188583,,194.0042705,277.2815706,185.2466551 +472,370.994,,351.0552438,,174.8742208,338.4480801,,194.0144957,277.2799613,185.2496592 +473,371.994,,351.1713868,,174.8969117,338.6253949,,194.0439512,277.2830019,185.258383 +474,372.993,,351.2779781,,174.8963629,338.671681,,194.0089223,277.2684351,185.2545711 +475,373.994,,351.4414332,,174.8985692,338.7295201,,194.0344266,277.2735218,185.2586434 +476,374.993,,350.9553905,,174.8964779,338.5601118,,194.0295389,277.2714893,185.2577159 +477,375.994,,350.6540307,,174.894545,338.6494332,,194.0394868,277.2668945,185.2618409 +478,376.994,,351.214484,,174.9050909,338.5068312,,194.047008,277.2513407,185.2730934 +479,377.993,,351.1051933,,174.9233184,338.759673,,194.0573209,277.27811,185.2733887 +480,378.993,,351.2043459,,174.9205944,338.8243832,,194.0385209,277.2754626,185.2725272 +481,379.993,,350.8664718,,174.9259555,338.6010331,,194.0480775,277.2815785,185.2718328 +482,380.993,,350.9132213,,174.9300249,338.5097434,,194.0393349,277.2762534,185.2747398 +483,381.994,,350.8106067,,174.9358961,338.6323934,,194.0403158,277.2783381,185.284577 +484,382.993,,350.6637396,,174.9340198,338.6604676,,194.078044,277.2459577,185.2892248 +485,383.993,,351.1212088,,174.9486484,338.5465174,,194.0647212,277.2581383,185.2880161 +486,384.993,,350.8418987,,174.9368767,338.6402422,,194.0445583,277.2645787,185.2881218 +487,385.993,,350.8762012,,174.947054,338.51891,,194.0514776,277.2570414,185.3136876 +488,386.993,,351.1209151,,174.948109,338.6068567,,194.0499704,277.2630464,185.3035569 +489,387.993,,351.0011333,,174.9584184,338.6905081,,194.0814838,277.2266648,185.2956954 +490,388.993,,350.9734727,,174.955404,338.6715734,,194.0558701,277.2307519,185.3033994 +491,389.993,,350.9346243,,174.9588804,338.5739214,,194.0712293,277.2384313,185.3047807 +492,390.993,,350.26931,,174.9693736,338.3967142,,194.0556334,277.2427448,185.305493 +493,391.993,,351.0353218,,174.9719712,338.4317471,,194.0764037,277.2477593,185.3113552 +494,392.993,,350.6397908,,174.9728415,338.6817993,,194.0707511,277.2456626,185.320849 +495,393.993,,351.1214861,,174.9796792,338.5360944,,194.0412476,277.2387273,185.3181363 +496,394.993,,350.9022866,,174.9880152,338.5048401,,194.1045677,277.2348327,185.3302069 +497,395.993,,350.5733745,,175.0004206,338.4019109,,194.0787702,277.2371567,185.3244429 +498,396.993,,350.6239039,,175.004705,338.5123444,,194.0814253,277.2413208,185.3224379 +499,397.993,,350.1046737,,175.0037037,338.4449563,,194.0745994,277.3170786,185.3393809 +500,398.993,,350.7881387,,175.0177167,338.5840943,,194.0937427,277.2870135,185.3412849 +501,399.993,,350.5789263,,175.0178582,338.4656382,,194.1206758,277.3258556,185.3509816 +502,400.993,,351.3878782,,175.0271258,338.4675984,,194.0940691,277.311323,185.3495352 +503,401.993,,351.2481406,,175.0319731,338.4927467,,194.0865706,277.254921,185.3478604 +504,402.993,,351.0049374,,175.0296933,338.3026414,,194.1057233,277.3242301,185.3693503 +505,403.993,,350.6232417,,175.0440713,338.4695515,,194.1082247,277.2759594,185.3541406 +506,404.993,,350.6889436,,175.0497494,338.4678531,,194.1229906,277.3645452,185.3807972 +507,405.993,,350.7101967,,175.0463088,338.5472621,,194.1221115,277.3971889,185.3831806 +508,406.993,,350.1426867,,175.0489546,338.3527337,,194.1301165,277.3404598,185.3862943 +509,407.993,,350.8090041,,175.0553266,338.4520141,,194.1255411,277.2909725,185.3831156 +510,408.993,,350.7761171,,175.0624634,338.4947352,,194.1287197,277.3732799,185.3830326 +511,409.993,,350.4717101,,175.0566637,338.4245373,,194.1429536,277.346594,185.3963392 +512,410.993,,350.9554386,,175.0562904,338.2868591,,194.1055378,277.311601,185.3798851 +513,411.993,,351.2124859,,175.0667272,338.2576142,,194.1290245,277.3824031,185.3907952 +514,412.993,,350.5673643,,175.091032,338.343521,,194.1479791,277.2978336,185.4025318 +515,413.993,,350.8531286,,175.08996,338.4488285,,194.1571574,277.3565458,185.4093827 +516,414.993,,350.580369,,175.0971496,338.279824,,194.1494393,277.3284504,185.4105179 +517,415.993,,350.8158462,,175.0974004,338.3079299,,194.1680948,277.3354844,185.4030782 +518,416.993,,350.3519698,,175.0938157,338.1502319,,194.1873399,277.3605193,185.4134741 +519,417.993,,351.0009354,,175.1040017,338.1653326,,194.1602542,277.3697396,185.4201713 +520,418.993,,350.6630014,,175.1123426,338.4885319,,194.1604438,277.306775,185.4215263 +521,419.993,,350.5926385,,175.1134458,338.3810257,,194.2002203,277.3623952,185.4268252 +522,420.993,,350.9487106,,175.1191372,338.3077813,,194.1826166,277.3552515,185.4315883 +523,421.993,,351.1495626,,175.1233293,338.1140557,,194.1767924,277.2871226,185.4336857 +524,422.993,,350.6108869,,175.1192128,338.3589034,,194.1747713,277.3030402,185.4531046 +525,423.993,,351.0741715,,175.130124,338.1896685,,194.1786969,277.3589125,185.4379214 +526,424.993,,350.8532397,,175.1527243,338.2119707,,194.1714844,277.3666172,185.4624014 +527,425.993,,350.9169381,,175.1490952,338.2198662,,194.2151468,277.3524524,185.4624986 +528,426.992,,350.062159,,175.1477554,338.4825254,,194.1974988,277.2954703,185.4525351 +529,427.993,,350.6676419,,175.1644626,338.2588752,,194.2041937,277.3295885,185.4657577 +530,428.992,,350.794196,,175.1579511,338.2617824,,194.2081637,277.3060583,185.4592418 +531,429.993,,350.6206644,,175.1704049,338.2333533,,194.2059445,277.3027704,185.4703058 +532,430.993,,351.2459315,,175.1819801,338.2183504,,194.211466,277.2986285,185.4739649 +533,431.993,,350.7582109,,175.1660471,338.2327488,,194.2018182,277.3474249,185.4873858 +534,432.993,,350.1280307,,175.1827147,338.3806748,,194.2110361,277.3341992,185.4863526 +535,433.992,,350.5452664,,175.1802285,338.3724991,,194.2052875,277.3098278,185.4915554 +536,434.992,,350.9606466,,175.1853918,338.218941,,194.2204701,277.3076029,185.4971883 +537,435.992,,350.6286646,,175.1806162,338.2143698,,194.2368931,277.3423451,185.5003333 +538,436.992,,351.1207866,,175.192279,338.159992,,194.2098868,277.3631857,185.5113047 +539,437.992,,350.6135142,,175.1946176,338.2670073,,194.2464724,277.2531925,185.5043228 +540,438.992,,350.7347674,,175.1995744,338.2951592,,194.2267362,277.2820026,185.5036897 +541,439.992,,350.877637,,175.204967,338.2838244,,194.2102314,277.2897334,185.5055901 +542,440.992,,350.7233103,,175.2123057,338.1118363,,194.249722,277.316331,185.5154972 +543,441.992,,350.5753465,,175.2255904,338.24226,,194.2348216,277.3670405,185.5292569 +544,442.992,,351.2196848,,175.2363349,338.2592324,,194.240677,277.2735917,185.5267246 +545,443.992,,350.8416698,,175.2144786,338.1364325,,194.2463043,277.3032778,185.5253623 +546,444.992,,350.7129955,,175.2278594,338.3258,,194.246643,277.3131133,185.5173112 +547,445.992,,350.5367448,,175.2297934,338.1227796,,194.2567314,277.3011859,185.5383568 +548,446.993,,351.5520596,,175.2317802,338.2221023,,194.2489342,277.2881782,185.5352178 +549,447.992,,350.9194929,,175.2486461,338.0166509,,194.2683678,277.3398787,185.5511626 +550,448.992,,350.2857416,,175.2492224,338.1135106,,194.2661487,277.3092037,185.5487096 +551,449.993,,350.6429268,,175.2609429,338.2896977,,194.2426946,277.290038,185.5466879 +552,450.992,,351.1720754,,175.2662996,338.2649528,,194.2785716,277.2816633,185.5546116 +553,451.992,,350.5795378,,175.2628026,338.1755548,,194.2848582,277.333266,185.5415572 +554,452.992,,350.9698233,,175.2531925,338.0778516,,194.2554431,277.2931439,185.5505849 +555,453.992,,350.4768578,,175.2693118,338.2727404,,194.2536286,277.3183158,185.5615877 +556,454.992,,350.6299084,,175.2836903,338.1471725,,194.2996949,277.3130505,185.5647891 +557,455.992,,350.1190726,,175.27724,338.190489,,194.2650537,277.2723774,185.564394 +558,456.992,,350.4516805,,175.288921,338.1519564,,194.2886195,277.2721861,185.5765487 +559,457.992,,350.2552308,,175.3028601,338.19428,,194.3186374,277.3156104,185.5874674 +560,458.992,,350.6485367,,175.310349,338.0469557,,194.286757,277.3253781,185.585406 +561,459.992,,351.2166795,,175.2888611,338.0914842,,194.2759793,277.2861613,185.5711286 +562,460.992,,350.5391624,,175.3098713,338.1925197,,194.3046836,277.2574633,185.5958814 +563,461.992,,350.1638656,,175.3181549,338.0657974,,194.302486,277.2786419,185.5899543 +564,462.992,,350.5741748,,175.3158967,338.1581597,,194.3176998,277.2689779,185.6084363 +565,463.992,,351.00227,,175.3175631,338.1898505,,194.3310149,277.2739926,185.5944893 +566,464.992,,350.5292433,,175.3337569,338.0245521,,194.3208882,277.2806768,185.6069648 +567,465.992,,350.9912472,,175.3335421,338.1933301,,194.3281282,277.2071311,185.593932 +568,466.992,,350.5881164,,175.3432544,338.1194732,,194.3261949,277.2242662,185.6080786 +569,467.992,,350.6063593,,175.3378365,338.011068,,194.3321908,277.236656,185.6152419 +570,468.992,,350.5810342,,175.361949,338.1155202,,194.3239278,277.1783775,185.6195607 +571,469.992,,350.5578903,,175.3554986,338.2018626,,194.3191064,277.1994973,185.6291867 +572,470.992,,350.9165927,,175.3506571,338.1426102,,194.3154283,277.2079202,185.6299353 +573,471.992,,350.3196649,,175.3542562,338.0954495,,194.3367339,277.2007797,185.6230495 +574,472.992,,351.0939642,,175.3578255,338.0837065,,194.3505547,277.2522348,185.6350109 +575,473.992,,350.9061048,,175.363468,338.1339172,,194.3531702,277.2538705,185.6401909 +576,474.992,,350.6996393,,175.3697313,338.060102,,194.3370705,277.2210256,185.6485557 +577,475.992,,350.7996883,,175.3735237,338.1524598,,194.3583365,277.2670385,185.6462913 +578,476.992,,351.0643696,,175.3837679,337.985032,,194.3548385,277.2563968,185.6388302 +579,477.991,,350.3984792,,175.3999306,337.9456602,,194.3738012,277.3146573,185.6652576 +580,478.992,,350.9195706,,175.3926592,338.1411262,,194.3690904,277.2666223,185.6614773 +581,479.992,,350.3041427,,175.4042035,338.0683533,,194.3643303,277.3113406,185.6660374 +582,480.992,,350.5512819,,175.3968132,338.1540197,,194.3739445,277.2616056,185.6598077 +583,481.991,,350.2582274,,175.3944891,338.1736423,,194.3825691,277.2840186,185.6577151 +584,482.992,,350.3600504,,175.4050142,338.2666463,,194.3907674,277.2686703,185.6771029 +585,483.992,,350.5832295,,175.3959143,338.2387644,,194.3802673,277.2032392,185.6665989 +586,484.992,,350.3038223,,175.4127195,337.9612462,,194.3763431,277.2711791,185.6925039 +587,485.991,,350.416206,,175.4200584,338.0269039,,194.3778598,277.2801221,185.6814364 +588,486.991,,350.9035581,,175.40413,338.1266916,,194.3787006,277.2458553,185.6794809 +589,487.991,,350.8164523,,175.4278165,338.0456999,,194.3995979,277.2620848,185.6926953 +590,488.991,,350.6528765,,175.4217792,338.2265155,,194.3721262,277.2679874,185.6917812 +591,489.991,,350.673916,,175.4425702,338.2305882,,194.3801096,277.2585417,185.7044287 +592,490.991,,350.5651647,,175.4194516,338.0414828,,194.3728265,277.2516918,185.693181 +593,491.992,,350.6320296,,175.4466054,337.9847649,,194.4039479,277.2613316,185.702174 +594,492.991,,350.2223076,,175.4422512,338.1636267,,194.4019222,277.2602688,185.6936221 +595,493.991,,350.1825528,,175.4459527,337.8922885,,194.3855897,277.2373834,185.6994235 +596,494.991,,350.5815364,,175.4495783,338.1759905,,194.4071547,277.2472448,185.7095769 +597,495.991,,350.0790857,,175.4600341,338.0259321,,194.4236702,277.2506158,185.7104842 +598,496.991,,349.885602,,175.4591504,337.8864176,,194.4046151,277.2465881,185.7079686 +599,497.991,,350.4819448,,175.4807376,338.0537753,,194.4047752,277.2148284,185.7174508 +600,498.991,,350.871404,,175.4767783,338.0662597,,194.418753,277.2372371,185.7281712 +601,499.991,,350.6242744,,175.4687901,338.0882638,,194.4086661,277.2215514,185.7208771 +602,500.991,,349.9424423,,175.4760679,337.9935711,,194.4369125,277.2132326,185.7332866 +603,501.991,,350.7060633,,175.4849677,338.0740986,,194.4290413,277.2626247,185.7384633 +604,502.991,,350.3839264,,175.4751114,338.0874036,,194.4240746,277.2188672,185.7323295 +605,503.991,,350.7670017,,175.5019796,338.0433429,,194.4446597,277.262408,185.7510579 +606,504.991,,351.0119193,,175.497186,338.1129919,,194.4361375,277.2654451,185.7439308 +607,505.991,,350.5435347,,175.5079755,337.852449,,194.4308552,277.2329248,185.7430745 +608,506.991,,350.4025181,,175.5161718,338.0669598,,194.4572247,277.2497179,185.755937 +609,507.991,,350.5618759,,175.5143052,337.9922727,,194.4509313,277.2431506,185.7708489 +610,508.991,,350.5622257,,175.5149031,337.9935138,,194.4515294,277.2697616,185.7632904 +611,509.991,,350.0808138,,175.5193646,337.9095001,,194.4464405,277.2100408,185.7616954 +612,510.991,,350.1989981,,175.5339154,338.0353438,,194.4609949,277.2495332,185.7667002 +613,511.991,,350.4211526,,175.5242044,338.1199041,,194.441264,277.2516393,185.7621102 +614,512.991,,350.2386291,,175.5417301,337.8510953,,194.4473789,277.230645,185.7635663 +615,513.991,,350.3451699,,175.5383124,337.995634,,194.4618986,277.2465633,185.775528 +616,514.991,,350.4761411,,175.5454846,338.0004927,,194.4762944,277.1924189,185.7736156 +617,515.991,,349.7445134,,175.5378615,337.847838,,194.4761242,277.2746447,185.7748437 +618,516.991,,350.398399,,175.5544952,337.8842711,,194.4592153,277.2086456,185.7882251 +619,517.991,,350.4366798,,175.5564774,338.115126,,194.4656243,277.2433927,185.7937043 +620,518.991,,350.8365654,,175.5585042,337.8740631,,194.4744075,277.2365348,185.7968976 +621,519.991,,349.5103773,,175.5767948,337.9506508,,194.4745314,277.2171891,185.8119369 +622,520.991,,350.9653441,,175.5678271,338.0472937,,194.4893237,277.2030413,185.804828 +623,521.991,,350.2465583,,175.5849399,337.9354845,,194.4957244,277.2051861,185.8095998 +624,522.991,,350.018741,,175.5866545,337.8205264,,194.4757739,277.2355989,185.8059552 +625,523.991,,350.2206759,,175.5781955,337.9638074,,194.4829214,277.2420908,185.806347 +626,524.991,,349.8257029,,175.5929926,337.9989274,,194.5123986,277.2089377,185.8258142 +627,525.991,,351.4287459,,175.5947336,337.8951431,,194.489679,277.2242108,185.8282555 +628,526.991,,350.4134704,,175.5963078,337.9008859,,194.5138509,277.1890717,185.8198095 +629,527.991,,350.9701874,,175.5835954,337.8884944,,194.5036981,277.247565,185.8308604 +630,528.991,,350.81546,,175.6035561,337.8144105,,194.5054924,277.1929471,185.8424436 +631,529.991,,350.0894842,,175.6055036,337.8947511,,194.5277081,277.1808059,185.8446254 +632,530.991,,350.2531058,,175.6125008,338.044353,,194.5372695,277.2025454,185.8509277 +633,531.99,,350.8733377,,175.6271575,337.9536013,,194.5465715,277.2342185,185.8530087 +634,532.99,,350.1125574,,175.6158376,337.9198029,,194.5240667,277.2157477,185.8484403 +635,533.991,,350.5773805,,175.624812,338.1091955,,194.5253555,277.1846315,185.8462337 +636,534.99,,350.9445116,,175.6362212,337.9464483,,194.5458529,277.2002467,185.8466966 +637,535.991,,350.0919951,,175.6512117,337.8979278,,194.5247376,277.1584531,185.8588996 +638,536.991,,350.5210334,,175.6363502,337.892174,,194.5497092,277.2012774,185.8654697 +639,537.99,,350.3020938,,175.6461505,337.8462651,,194.5378463,277.2060485,185.8666532 +640,538.991,,350.0497762,,175.6521104,337.9598739,,194.5321595,277.1591002,185.8651591 +641,539.99,,350.8595785,,175.6530917,337.8513486,,194.5552723,277.2078145,185.8740647 +642,540.99,,350.7618987,,175.6517703,337.6177707,,194.5227338,277.1732564,185.8788018 +643,541.991,,350.6088316,,175.6587972,337.8655049,,194.5428081,277.2063425,185.8862992 +644,542.99,,350.3627542,,175.66147,337.8881281,,194.5103042,277.1806459,185.8836134 +645,543.99,,350.0880378,,175.6657152,337.9075747,,194.5541539,277.1976737,185.8813357 +646,544.99,,349.6003284,,175.6676149,337.8995837,,194.538116,277.2522595,185.8878976 +647,545.991,,349.6453094,,175.6828698,337.8243394,,194.5545391,277.1772235,185.9019966 +648,546.991,,350.9853497,,175.6872258,337.8494659,,194.5677486,277.2197104,185.9019272 +649,547.99,,349.9075064,,175.6906898,337.9622462,,194.5616619,277.1332142,185.8778932 +650,548.99,,350.3967062,,175.6878155,337.9570427,,194.5858106,277.1453604,185.9013521 +651,549.99,,350.2460845,,175.6995025,337.9082583,,194.549976,277.1630565,185.9013936 +652,550.99,,350.2017171,,175.6976921,338.0023896,,194.5644725,277.1526955,185.9019126 +653,551.99,,349.8396502,,175.7172452,337.7760918,,194.5702851,277.1472519,185.9268377 +654,552.991,,350.722784,,175.7057451,337.9086601,,194.5632088,277.1750086,185.9164959 +655,553.99,,350.3730016,,175.7096617,337.8863248,,194.5724844,277.1575376,185.9124912 +656,554.99,,349.8221439,,175.7157488,337.8453333,,194.5778739,277.2078187,185.9118235 +657,555.99,,350.2447838,,175.7260945,337.6721959,,194.5942788,277.1592475,185.9256711 +658,556.99,,350.5649688,,175.7304109,337.7478947,,194.5848514,277.1521246,185.9302232 +659,557.99,,350.9770806,,175.7393855,337.9076423,,194.599419,277.1379845,185.9366396 +660,558.99,,350.7313668,,175.7417196,337.7741032,,194.6026854,277.1192017,185.9452676 +661,559.99,,350.0248996,,175.7419097,337.7638066,,194.6080007,277.1205182,185.9470892 +662,560.99,,350.2896816,,175.7498866,337.7489245,,194.6045642,277.1407204,185.9506429 +663,561.99,,349.5382162,,175.7507094,337.7615283,,194.5930402,277.1129988,185.9426101 +664,562.99,,350.342557,,175.7570824,337.7263831,,194.6103636,277.0843328,185.9408301 +665,563.99,,350.8072111,,175.7649718,337.7363875,,194.6231469,277.1386305,185.9550167 +666,564.99,,350.6356636,,175.7664536,337.7638909,,194.6229983,277.0981941,185.9679189 +667,565.99,,350.6152491,,175.7758941,337.7840749,,194.618929,277.1358904,185.9629159 +668,566.99,,350.2633109,,175.7605666,337.7631606,,194.6154793,277.08704,185.9576004 +669,567.99,,350.2502987,,175.7761025,337.9022121,,194.6242626,277.1204742,185.9661541 +670,568.99,,349.7788838,,175.7656397,337.7566464,,194.6273093,277.0523568,185.9724647 +671,569.99,,350.5028736,,175.7790397,337.7554274,,194.6055351,277.0988818,185.973521 +672,570.99,,350.7196454,,175.7814268,337.6794569,,194.6382075,277.0989381,185.9705493 +673,571.99,,350.3451462,,175.7760881,337.7423464,,194.6356632,277.0948814,185.9770931 +674,572.99,,350.9812069,,175.7842186,337.7659584,,194.6333122,277.0839952,185.9733428 +675,573.99,,349.7555042,,175.8055296,337.8195765,,194.6196834,277.1074231,185.9830139 +676,574.99,,350.5883236,,175.7862262,337.679815,,194.6621105,277.0685163,185.9932966 +677,575.99,,350.3147945,,175.8066036,337.4658863,,194.6424229,277.0428214,185.9854868 +678,576.99,,349.3048353,,175.806513,337.5465107,,194.6758784,277.0821208,185.9900572 +679,577.99,,350.8265977,,175.8180447,337.6382591,,194.6634176,277.1318095,186.0004306 +680,578.99,,350.0789769,,175.8125442,337.8579492,,194.6725925,277.0682889,185.9949268 +681,579.99,,350.3673139,,175.8159901,337.6106527,,194.6546068,277.1012913,186.0079299 +682,580.99,,350.0425569,,175.8229877,337.6614958,,194.6550829,277.0883986,185.9913933 +683,581.99,,350.384005,,175.8278178,337.7078112,,194.6564196,277.054611,186.0120739 +684,582.99,,350.4765577,,175.8289051,337.6961437,,194.6693879,277.1043358,186.0269118 +685,583.99,,350.4857087,,175.8438116,337.7182158,,194.6628651,277.0289565,186.0236491 +686,584.99,,350.4780538,,175.8279042,337.6169294,,194.6751427,277.0997413,186.0100629 +687,585.989,,350.1748795,,175.8324933,337.5992498,,194.6720451,277.0693415,186.0197818 +688,586.989,,349.8240889,,175.8610198,337.7859658,,194.6649342,277.0343626,186.0292148 +689,587.99,,350.41082,,175.853005,337.6654815,,194.6725262,277.0942562,186.0372759 +690,588.989,,349.8436206,,175.8581078,337.6364772,,194.6855505,277.1001209,186.0461105 +691,589.989,,350.8318213,,175.8665853,337.6657726,,194.6753929,277.0501845,186.0273259 +692,590.989,,350.8748459,,175.8707269,337.6389696,,194.6914162,277.0480978,186.0419573 +693,591.989,,350.1594663,,175.8746387,337.5943331,,194.6888059,276.9957602,186.0465705 +694,592.989,,350.2778848,,175.8661449,337.6303475,,194.7159531,277.04455,186.0504235 +695,593.989,,350.7028769,,175.8622169,337.7126469,,194.7068993,277.0137947,186.0381033 +696,594.989,,350.799243,,175.8749764,337.663326,,194.6900755,277.044984,186.0562305 +697,595.989,,350.6599434,,175.8712152,337.5609569,,194.7154333,277.0368012,186.0603908 +698,596.989,,350.3590252,,175.874653,337.6668067,,194.7013999,277.0224857,186.0642968 +699,597.989,,349.5111527,,175.8915683,337.6201258,,194.7136592,277.0260226,186.0656076 +700,598.989,,350.4502645,,175.8720401,337.4634219,,194.7169573,277.0086278,186.060051 +701,599.989,,350.3599833,,175.8765845,337.6369963,,194.6767745,277.0771061,186.0627336 +702,600.989,,350.0402,,175.8827166,337.6633778,,194.720647,277.0488847,186.071899 +703,601.989,,350.4555267,,175.8891772,337.669562,,194.7266429,277.0227932,186.0620498 +704,602.989,,349.7865599,,175.8840501,337.7032248,,194.72035,277.0198475,186.0760299 +705,603.989,,350.157794,,175.8733594,337.5094997,,194.7098904,277.0205494,186.0623033 +706,604.989,,350.5471191,,175.888798,337.6778941,,194.7462979,277.0525314,186.0772848 +707,605.989,,349.7195399,,175.8867913,337.6146612,,194.7065517,277.0329246,186.0771413 +708,606.989,,349.778868,,175.8860396,337.6201844,,194.7232718,277.014311,186.074991 +709,607.989,,350.6394807,,175.8878257,337.6488715,,194.7504506,277.0436637,186.0914604 +710,608.989,,350.3710549,,175.8902343,337.7187312,,194.7519277,277.0025418,186.083849 +711,609.989,,350.2021454,,175.8863327,337.5981695,,194.7203035,277.0168595,186.0780808 +712,610.989,,349.9848554,,175.8752769,337.7483349,,194.7160014,277.0081518,186.0665524 +713,611.989,,350.1387941,,175.8779896,337.5003314,,194.7333909,276.9847556,186.0935041 +714,612.989,,350.4584716,,175.8645334,337.8035977,,194.7388019,276.9716774,186.0707179 +715,613.989,,350.3679265,,175.8464424,337.5403647,,194.7064971,276.9769582,186.0675316 +716,614.989,,350.5626085,,175.8735186,337.631386,,194.7081859,276.9779201,186.0731829 +717,615.989,,350.0107703,,175.8475827,337.6533796,,194.7176548,276.9875741,186.0733336 +718,616.989,,350.9458349,,175.8474556,337.5790142,,194.7072775,277.0064657,186.0664479 +719,617.989,,349.9156257,,175.8351824,337.6386112,,194.6856837,277.0026866,186.0618582 +720,618.989,,350.6459459,,175.8391389,337.7610083,,194.6770612,276.9546929,186.0646518 +721,619.989,,350.3116304,,175.8212362,337.5499025,,194.6894396,276.9755499,186.0483698 +722,620.989,,349.5972082,,175.8129571,337.5223571,,194.6855852,276.9754264,186.0559333 +723,621.989,,350.3366565,,175.8051938,337.4848261,,194.6887694,276.9780678,186.0423391 +724,622.989,,349.7325905,,175.7935003,337.5177783,,194.6745112,276.9399906,186.0343676 +725,623.989,,350.2069973,,175.7954349,337.6052455,,194.6510536,276.9065561,186.0381677 +726,624.989,,350.7792594,,175.7935635,337.4627679,,194.6929781,276.9488807,186.0241765 +727,625.989,,349.8362507,,175.7661034,337.3423903,,194.6676091,276.9980264,186.0004288 +728,626.989,,349.5536532,,175.7512102,337.5102934,,194.6382695,276.9550285,185.9939166 +729,627.989,,350.2831224,,175.7507282,337.68775,,194.6317304,276.9283005,185.9824809 +730,628.989,,349.380382,,175.7493095,337.3945408,,194.6536073,276.9970973,185.9882858 +731,629.989,,350.2371316,,175.7192742,337.8426883,,194.628691,276.6835649,185.9848004 +732,630.989,,350.7440157,,175.7204491,337.6723657,,194.6147237,276.6828957,185.9696623 +733,631.989,,350.1926523,,175.7159495,337.5728573,,194.611388,276.6857668,185.9577024 +734,632.989,,350.2033001,,175.7060983,337.6089099,,194.6066598,276.6755117,185.9587986 +735,633.989,,350.0925802,,175.7060902,337.5052274,,194.5819579,276.6365629,185.9462058 +736,634.989,,349.8510555,,175.6893177,337.5346551,,194.5749662,276.6671243,185.9399105 +737,635.989,,349.8996469,,175.6913397,337.4940056,,194.5762897,276.6822209,185.9330777 +738,636.989,,350.4265398,,175.6651451,337.5282372,,194.5789765,276.6375143,185.9003417 +739,637.989,,350.44315,,175.6629138,337.6395855,,194.5692899,276.6170066,185.9085963 +740,638.989,,350.265079,,175.6499157,337.4474394,,194.5574538,276.6308608,185.903281 +741,639.989,,350.1497872,,175.654452,337.4807667,,194.5489452,276.6327799,185.8894089 +742,640.988,,350.5294954,,175.6314389,337.4950791,,194.4958747,276.6792357,185.8743054 +743,641.989,,350.0691417,,175.6196796,337.5678772,,194.531637,276.6501458,185.8816492 +744,642.989,,350.866565,,175.6128694,337.5738436,,194.5052565,276.6790708,185.8464025 +745,643.988,,350.6533932,,175.6042173,337.514727,,194.5061538,276.6779053,185.8517282 +746,644.989,,350.3721923,,175.6028435,337.4001477,,194.4637782,276.6564202,185.8268152 +747,645.988,,350.5308136,,175.5780811,337.3991849,,194.4879321,276.6459337,185.8309359 +748,646.989,,350.1162235,,175.5646967,337.2204843,,194.4677886,276.6243197,185.8149797 +749,647.989,,350.4054385,,175.5592789,337.3791787,,194.4486246,276.5884884,185.7911474 +750,648.988,,349.8024184,,175.5412152,337.3603253,,194.4503584,276.5987768,185.784725 +751,649.988,,350.3571663,,175.5415143,337.3621723,,194.4425037,276.6167271,185.7910835 +752,650.989,,349.6895762,,175.5327139,337.2685742,,194.4113366,276.5945881,185.7671293 +753,651.989,,349.9557617,,175.5167492,337.3589771,,194.401658,276.5915212,185.7632733 +754,652.989,,349.8624526,,175.5109238,337.3108137,,194.4065474,276.5906128,185.7597747 +755,653.988,,350.406645,,175.4969547,337.3692357,,194.4007284,276.6195978,185.7548858 +756,654.988,,349.8169045,,175.4685243,337.3324311,,194.3932575,276.5749802,185.7310984 +757,655.988,,349.0615526,,175.4923863,337.0763383,,194.3723965,276.5132728,185.7095305 +758,656.989,,350.0527232,,175.4597769,337.1037616,,194.356785,276.5155342,185.6969429 +759,657.988,,349.740454,,175.4663166,337.3822685,,194.318597,276.5196276,185.6846096 +760,658.989,,350.2716304,,175.4424783,337.5467346,,194.3257367,276.4810572,185.6717095 +761,659.988,,349.9962823,,175.4251084,337.2311118,,194.2978786,276.4870391,185.6631844 +762,660.988,,349.5053753,,175.4406836,337.2257325,,194.3178844,276.5039917,185.6605916 +763,661.988,,349.7956972,,175.4100647,337.2673238,,194.2821319,276.4783012,185.6278556 +764,662.988,,350.5639731,,175.4049328,337.2414516,,194.294704,276.4361795,185.6420637 +765,663.988,,349.9262597,,175.3935046,337.3132321,,194.2881649,276.4232579,185.6147806 +766,664.988,,349.3790577,,175.3813328,337.0828441,,194.2356863,276.4390481,185.6114569 +767,665.988,,350.6001549,,175.3725856,337.3288801,,194.2590861,276.4366577,185.5943142 +768,666.988,,349.3956182,,175.3597151,337.0643773,,194.2366603,276.4332021,185.5830668 +769,667.988,,349.7868638,,175.3489115,337.1835825,,194.2288821,276.4281332,185.5664299 +770,668.988,,349.1157726,,175.3470218,337.2036246,,194.2251282,276.3391223,185.5547508 +771,669.988,,350.7534705,,175.3308828,336.9781297,,194.1912788,276.4212478,185.5539827 +772,670.988,,349.2563415,,175.3103716,336.9268286,,194.196854,276.3854573,185.5227377 +773,671.988,,349.775167,,175.2954845,337.0425732,,194.1759052,276.3890981,185.5157646 +774,672.988,,349.8482885,,175.2911917,337.1880796,,194.1797651,276.3548099,185.5259182 +775,673.988,,350.0982189,,175.2890187,336.8662475,,194.1531296,276.3837177,185.5076632 +776,674.988,,349.5638954,,175.2790835,337.1662306,,194.1476177,276.3158664,185.4893316 +777,675.988,,349.823178,,175.2633627,337.1415919,,194.1153512,276.3266217,185.4754649 +778,676.988,,348.8920598,,175.2610786,336.972618,,194.124482,276.2985879,185.4827344 +779,677.988,,350.1173057,,175.239996,336.6980045,,194.1213315,276.3177161,185.4518497 +780,678.988,,349.4958632,,175.2404803,336.7789679,,194.0964221,276.3243006,185.4451097 +781,679.988,,348.764823,,175.2271045,336.7868992,,194.0998161,276.2870679,185.4387166 +782,680.988,,349.3660218,,175.2200752,336.8702557,,194.0708852,276.3062735,185.4319157 +783,681.988,,350.0158954,,175.2040555,337.097967,,194.0672079,276.2637526,185.4072624 +784,682.988,,348.9203459,,175.1943982,336.8864777,,194.0647695,276.2699873,185.4111156 +785,683.988,,348.8339255,,175.1722571,337.0175758,,194.0517071,276.2962381,185.3884937 +786,684.988,,350.0396271,,175.1705924,336.6906452,,194.041189,276.2515969,185.3842643 +787,685.988,,350.0056907,,175.158241,336.677035,,194.0211454,276.2604202,185.364913 +788,686.988,,349.002903,,175.1552186,336.8202,,194.0034447,276.1956637,185.3579267 +789,687.988,,349.9217884,,175.1247332,337.0467732,,193.9759776,276.1440574,185.342336 +790,688.988,,349.7755108,,175.1104578,336.8707747,,193.9796363,276.1793159,185.3182628 +791,689.988,,349.7059573,,175.1040347,337.0102324,,193.9678526,276.1585782,185.3157972 +792,690.988,,348.4434792,,175.0889548,336.6363383,,193.9560291,276.1002111,185.2888214 +793,691.988,,348.9953854,,175.0914822,336.7854871,,193.9867472,276.1298425,185.2906514 +794,692.988,,349.2859234,,175.0747986,336.6843301,,193.9038931,276.1514373,185.2893378 +795,693.988,,349.0719285,,175.0714163,336.6349318,,193.9114594,276.1067086,185.2642794 diff --git a/src/pyvale/data/valid/Pulse253_SteadyHIVEData.csv b/src/pyvale/data/valid/Pulse253_SteadyHIVEData.csv new file mode 100755 index 000000000..8f7490e6c --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_SteadyHIVEData.csv @@ -0,0 +1,401 @@ +Data Point Number,Timestamp,TC2 +337,261.68,215.245 +338,262.73,215.175 +339,263.84,215.185 +340,264.89,214.785 +341,266,215.755 +342,267.07,218.885 +343,268.18,213.875 +344,269.28,215.805 +345,270.34,214.015 +346,271.45,215.015 +347,272.51,217.805 +348,273.61,216.225 +349,274.67,216.555 +350,275.77,214.855 +351,276.83,214.925 +352,277.93,219.365 +353,279.01,215.485 +354,280.099,216.545 +355,281.17,215.865 +356,282.27,213.925 +357,283.35,218.705 +358,284.43,214.095 +359,285.49,215.095 +360,286.59,216.675 +361,287.66,215.215 +362,288.75,219.485 +363,289.81,214.485 +364,290.91,214.635 +365,291.97,216.145 +366,293.08,218.215 +367,294.14,213.705 +368,295.239,214.345 +369,296.3,215.035 +370,297.4,216.025 +371,298.46,215.075 +372,299.57,214.105 +373,300.63,215.835 +374,301.73,216.605 +375,302.79,213.845 +376,303.9,214.655 +377,304.96,215.285 +378,306.05,214.935 +379,307.11,215.985 +380,308.22,215.675 +381,309.28,215.115 +382,310.39,216.905 +383,311.45,216.505 +384,312.55,214.695 +385,313.61,216.545 +386,314.72,214.455 +387,315.78,214.665 +388,316.869,215.055 +389,317.93,215.445 +390,319.03,215.625 +391,320.1,215.795 +392,321.2,216.655 +393,322.27,214.795 +394,323.36,215.205 +395,324.42,214.955 +396,325.53,215.685 +397,326.59,216.015 +398,327.69,215.995 +399,328.75,215.705 +400,329.85,216.215 +401,330.91,215.655 +402,332.01,214.705 +403,333.07,216.445 +404,334.169,215.295 +405,335.24,213.835 +406,336.34,215.355 +407,337.4,215.255 +408,338.5,214.655 +409,339.56,215.285 +410,340.659,214.515 +411,341.73,216.405 +412,342.83,216.585 +413,343.89,215.285 +414,344.99,220.985 +415,346.039,215.735 +416,347.15,219.545 +417,348.22,214.025 +418,349.32,218.285 +419,350.4,214.275 +420,351.49,218.445 +421,352.55,216.625 +422,353.66,217.785 +423,354.72,215.635 +424,355.819,215.505 +425,356.88,215.845 +426,357.989,216.385 +427,359.05,214.485 +428,360.15,216.165 +429,361.21,216.085 +430,362.31,215.665 +431,363.369,215.545 +432,364.47,214.805 +433,365.53,215.215 +434,366.63,214.415 +435,367.69,214.865 +436,368.8,215.735 +437,369.86,215.535 +438,370.96,216.705 +439,372.04,216.145 +440,373.13,213.935 +441,374.21,216.355 +442,375.29,215.255 +443,376.36,217.155 +444,377.46,214.895 +445,378.54,218.995 +446,379.63,215.885 +447,380.69,219.125 +448,381.78,216.035 +449,382.85,219.545 +450,383.95,216.695 +451,385.02,218.985 +452,386.11,215.115 +453,387.17,215.465 +454,388.26,214.425 +455,389.35,215.455 +456,390.43,216.245 +457,391.49,216.245 +458,392.58,217.175 +459,393.65,214.395 +460,394.76,219.535 +461,395.82,215.705 +462,396.931,215.245 +463,397.99,215.045 +464,399.09,215.245 +465,400.17,217.805 +466,401.26,216.465 +467,402.32,216.395 +468,403.41,215.545 +469,404.5,215.275 +470,405.58,217.655 +471,406.64,215.135 +472,407.74,215.095 +473,408.8,216.035 +474,409.9,216.775 +475,410.959,219.155 +476,412.06,215.205 +477,413.12,220.705 +478,414.22,214.465 +479,415.28,220.755 +480,416.38,216.085 +481,417.45,219.545 +482,418.55,216.455 +483,419.61,219.785 +484,420.7,215.315 +485,421.76,218.645 +486,422.869,216.925 +487,423.93,215.955 +488,425.02,216.745 +489,426.08,216.085 +490,427.19,214.995 +491,428.27,216.445 +492,429.35,215.735 +493,430.41,215.725 +494,431.51,217.945 +495,432.58,217.415 +496,433.67,217.275 +497,434.75,216.405 +498,435.84,216.515 +499,436.9,214.455 +500,438,215.615 +501,439.06,214.085 +502,440.16,216.345 +503,441.23,219.965 +504,442.33,217.765 +505,443.4,216.895 +506,444.5,216.065 +507,445.56,218.265 +508,446.65,217.125 +509,447.71,218.675 +510,448.81,215.405 +511,449.87,220.035 +512,450.97,216.705 +513,452.029,215.565 +514,453.13,215.535 +515,454.2,215.125 +516,455.3,216.975 +517,456.37,216.265 +518,457.47,220.465 +519,458.55,215.435 +520,459.63,215.795 +521,460.69,215.055 +522,461.789,215.555 +523,462.85,217.105 +524,463.95,215.175 +525,465.03,216.625 +526,466.11,215.255 +527,467.24,217.565 +528,468.35,214.755 +529,469.44,216.815 +530,470.59,216.105 +531,471.69,220.035 +532,472.75,216.425 +533,473.85,216.245 +534,474.91,216.885 +535,476.02,216.925 +536,477.08,221.865 +537,478.18,216.115 +538,479.24,214.535 +539,480.35,215.935 +540,481.43,217.025 +541,482.51,219.495 +542,483.57,217.295 +543,484.67,217.975 +544,485.73,214.995 +545,486.83,215.585 +546,487.89,218.245 +547,488.99,216.715 +548,490.049,217.765 +549,491.15,214.885 +550,492.23,216.075 +551,493.31,217.775 +552,494.37,215.515 +553,495.47,218.045 +554,496.53,215.945 +555,497.629,215.275 +556,498.7,216.355 +557,499.81,216.355 +558,500.87,215.855 +559,501.97,214.605 +560,503.05,218.275 +561,504.15,214.505 +562,505.21,218.805 +563,506.309,214.645 +564,507.38,222.575 +565,508.48,216.225 +566,509.54,219.685 +567,510.65,215.255 +568,511.73,214.635 +569,512.82,216.495 +570,513.88,216.415 +571,514.98,216.205 +572,516.04,216.745 +573,517.13,215.075 +574,518.22,216.315 +575,519.3,216.025 +576,520.38,219.905 +577,521.46,215.075 +578,522.52,222.575 +579,523.62,216.955 +580,524.69,221.505 +581,525.79,217.045 +582,526.85,220.775 +583,527.959,214.765 +584,529.02,217.605 +585,530.12,215.485 +586,531.18,215.365 +587,532.28,215.125 +588,533.35,216.935 +589,534.45,221.295 +590,535.509,214.975 +591,536.61,222.925 +592,537.67,216.005 +593,538.78,216.605 +594,539.85,214.385 +595,540.94,216.785 +596,542,216.775 +597,543.1,214.495 +598,544.17,215.385 +599,545.28,216.715 +600,546.34,222.005 +601,547.44,214.755 +602,548.52,217.135 +603,549.61,214.635 +604,550.68,216.775 +605,551.78,221.275 +606,552.84,215.435 +607,553.94,216.755 +608,555,215.245 +609,556.1,217.245 +610,557.18,217.015 +611,558.27,215.855 +612,559.34,218.285 +613,560.43,215.335 +614,561.49,216.585 +615,562.59,217.155 +616,563.65,215.745 +617,564.77,218.375 +618,565.86,215.055 +619,566.96,222.465 +620,568.03,215.305 +621,569.13,219.965 +622,570.19,215.565 +623,571.31,215.655 +624,572.38,216.665 +625,573.47,217.915 +626,574.55,221.365 +627,575.64,215.325 +628,576.7,215.175 +629,577.8,215.405 +630,578.87,215.215 +631,579.98,218.055 +632,581.03,216.385 +633,582.14,216.805 +634,583.2,217.525 +635,584.31,219.135 +636,585.39,215.635 +637,586.48,216.525 +638,587.56,220.445 +639,588.63,215.715 +640,589.69,216.425 +641,590.801,222.495 +642,591.88,215.195 +643,592.97,217.195 +644,594.05,217.085 +645,595.129,215.485 +646,596.2,220.185 +647,597.29,216.055 +648,598.38,216.955 +649,599.46,217.865 +650,600.52,215.755 +651,601.62,219.665 +652,602.68,215.235 +653,603.79,216.885 +654,604.85,217.945 +655,605.95,216.295 +656,607.01,219.125 +657,608.11,215.045 +658,609.17,216.065 +659,610.27,218.605 +660,611.33,217.045 +661,612.42,217.585 +662,613.49,215.465 +663,614.59,215.365 +664,615.66,217.925 +665,616.74,216.475 +666,617.82,215.575 +667,618.91,218.845 +668,619.97,216.485 +669,621.07,215.915 +670,622.13,221.305 +671,623.229,216.515 +672,624.29,217.725 +673,625.4,218.805 +674,626.45,216.425 +675,627.56,221.565 +676,628.63,216.715 +677,629.72,217.965 +678,630.77,215.815 +679,631.87,215.625 +680,632.93,216.585 +681,634.03,216.565 +682,635.1,215.575 +683,636.19,215.845 +684,637.25,216.945 +685,638.35,215.405 +686,639.41,216.495 +687,640.51,217.235 +688,641.57,217.335 +689,642.68,215.755 +690,643.74,218.815 +691,644.84,215.715 +692,645.9,220.125 +693,647.01,215.435 +694,648.08,217.035 +695,649.17,215.055 +696,650.23,216.455 +697,651.34,221.745 +698,652.39,215.055 +699,653.49,215.755 +700,654.57,220.605 +701,655.65,216.965 +702,656.73,215.895 +703,657.81,221.355 +704,658.88,215.025 +705,659.98,215.595 +706,661.03,217.295 +707,662.14,215.285 +708,663.22,215.405 +709,664.3,215.135 +710,665.38,215.475 +711,666.46,215.785 +712,667.52,214.395 +713,668.63,218.945 +714,669.69,216.695 +715,670.79,218.375 +716,671.86,216.545 +717,672.96,221.565 +718,674.02,214.965 +719,675.12,218.635 +720,676.19,214.985 +721,677.27,216.585 +722,678.34,216.575 +723,679.45,217.485 +724,680.51,216.275 +725,681.61,215.795 +726,682.67,214.675 +727,683.78,214.315 +728,684.84,216.235 +729,685.94,214.185 +730,686.99,214.475 +731,688.09,215.675 +732,689.16,215.185 +733,690.26,214.925 +734,691.32,214.995 +735,692.42,215.625 +736,693.48,217.005 diff --git a/src/pyvale/data/valid/Pulse253_SteadyPICOData.csv b/src/pyvale/data/valid/Pulse253_SteadyPICOData.csv new file mode 100755 index 000000000..391a80a46 --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_SteadyPICOData.csv @@ -0,0 +1,733 @@ +Timestamp,Coil RMS Voltage +261.261,84.9237 +261.861,84.92257 +262.461,84.92384 +263.061,84.92972 +263.861,84.92551 +264.461,84.9323 +265.061,84.90574 +265.661,84.92321 +266.261,84.91619 +266.661,84.92535 +267.261,84.91399 +267.861,84.91781 +268.461,84.92284 +269.061,84.92887 +269.661,84.93188 +270.261,84.9304 +270.661,84.93661 +271.261,84.91779 +271.661,84.93284 +272.261,84.93 +272.661,84.93034 +273.261,84.91847 +273.661,84.91707 +274.261,84.91215 +274.661,84.92216 +275.261,84.92155 +275.861,84.92653 +276.461,84.92526 +277.061,84.91726 +277.661,84.91969 +278.261,84.92761 +278.661,84.9165 +279.261,84.92159 +279.861,84.93499 +280.461,84.93143 +281.061,84.92036 +281.661,84.93062 +282.261,84.93358 +282.661,84.92676 +283.261,84.93407 +283.661,84.93028 +284.261,84.93628 +284.661,84.93006 +285.261,84.94672 +285.661,84.93433 +286.261,84.93684 +286.861,84.95369 +287.461,84.93769 +288.061,84.94603 +288.661,84.93037 +289.261,84.94201 +289.661,84.92358 +290.261,84.93673 +290.661,84.93212 +291.261,84.94006 +291.861,84.93113 +292.461,84.93283 +293.061,84.92497 +293.861,84.9256 +294.461,84.9333 +295.061,84.93643 +295.661,84.92244 +296.261,84.93369 +296.861,84.93232 +297.461,84.93678 +298.061,84.94774 +298.661,84.94258 +299.261,84.93427 +299.661,84.94894 +300.261,84.93366 +300.661,84.94419 +301.261,84.94559 +301.861,84.94053 +302.461,84.94692 +303.061,84.93608 +303.861,84.93516 +304.461,84.94215 +305.061,84.94154 +305.661,84.95078 +306.261,84.95272 +306.661,84.9392 +307.261,84.95131 +307.861,84.95033 +308.461,84.93717 +309.061,84.95453 +309.661,84.95672 +310.261,84.96788 +310.861,84.95428 +311.461,84.9464 +312.061,84.95039 +312.661,84.96128 +313.261,84.966 +313.661,84.9605 +314.261,84.95258 +314.661,84.96318 +315.261,84.94892 +315.861,84.96394 +316.461,84.94438 +317.061,84.95732 +317.661,84.96117 +318.261,84.95244 +318.861,84.9655 +319.461,84.95947 +320.061,84.96476 +320.661,84.94901 +321.261,84.96613 +321.661,84.95547 +322.261,84.94576 +322.661,84.96136 +323.261,84.96287 +323.661,84.96696 +324.261,84.96906 +324.861,84.96585 +325.461,84.96661 +326.061,84.96601 +326.861,84.97936 +327.461,84.96537 +328.061,84.98116 +328.661,84.96453 +329.261,84.95043 +329.661,84.96298 +330.261,84.96397 +330.661,84.96309 +331.261,84.94727 +331.861,84.95547 +332.461,84.95655 +333.061,84.96658 +333.661,84.96173 +334.261,84.94965 +334.661,84.95612 +335.261,84.96227 +335.661,84.94975 +336.261,84.96518 +336.661,84.95874 +337.261,84.96207 +337.861,84.94763 +338.461,84.96566 +339.061,84.95963 +339.661,84.97491 +340.261,84.96893 +340.661,84.96299 +341.261,84.97615 +341.861,84.95184 +342.461,84.96573 +343.061,84.95857 +343.661,84.95324 +344.261,84.95143 +344.861,84.98014 +345.461,84.97004 +346.061,84.97013 +346.861,84.97892 +347.461,84.9577 +348.061,84.9643 +348.861,84.96691 +349.461,84.97388 +350.061,84.98152 +350.861,84.97845 +351.461,84.96484 +352.061,84.98016 +352.661,84.97552 +353.261,84.97222 +353.661,84.97715 +354.261,84.98329 +354.661,84.98089 +355.261,84.97409 +355.861,84.97889 +356.461,84.97852 +356.861,84.9592 +357.461,84.9605 +357.861,84.96996 +358.261,84.98168 +358.861,84.96172 +359.461,84.9805 +360.061,84.94834 +360.861,84.96521 +361.461,84.96505 +362.061,84.97435 +362.661,84.98911 +363.261,84.98224 +363.661,84.98647 +364.261,84.98088 +364.861,84.97379 +365.461,84.97657 +366.061,84.98356 +366.661,84.99322 +367.261,84.98286 +367.861,84.9695 +368.461,84.97958 +369.061,84.98695 +369.861,84.9806 +370.461,84.98515 +371.061,84.98384 +371.861,84.99855 +372.461,84.98782 +373.061,84.97914 +373.661,84.99184 +374.261,84.99466 +374.661,84.99232 +375.261,84.9985 +375.661,84.99185 +376.261,84.99097 +376.861,84.9986 +377.461,84.99538 +378.061,84.98526 +378.861,84.99673 +379.461,84.99706 +380.061,84.99453 +380.661,84.99244 +381.261,84.99665 +381.861,84.97278 +382.461,84.99214 +383.061,84.99667 +383.861,84.98756 +384.461,84.9829 +385.061,84.99557 +385.861,84.9806 +386.461,84.98999 +387.061,84.99825 +387.661,85.00554 +388.261,84.98772 +388.861,84.98947 +389.461,85.00404 +390.061,85.00156 +390.661,85.00324 +391.261,84.99893 +391.661,84.99413 +392.261,84.99515 +392.861,85.00574 +393.461,85.00925 +394.061,84.99792 +394.661,85.00432 +395.261,85.00971 +395.861,84.99865 +396.461,84.98729 +397.061,85.00676 +397.661,85.00042 +398.261,85.00317 +398.861,85.0081 +399.461,84.99928 +400.061,85.01772 +400.861,84.9976 +401.461,85.00618 +402.061,85.01132 +402.861,85.0118 +403.461,85.005 +404.061,84.99845 +404.661,84.9907 +405.261,85.00773 +405.661,84.99301 +406.261,84.98663 +406.861,84.99715 +407.461,84.99384 +408.061,84.99294 +408.861,84.98941 +409.461,84.9959 +410.061,84.96563 +410.661,84.98701 +411.261,84.96464 +411.861,84.97576 +412.461,84.98808 +413.061,84.98829 +413.661,84.98283 +414.261,84.98441 +414.861,84.96713 +415.461,84.99736 +416.061,84.9851 +416.861,84.98605 +417.461,84.97961 +418.061,84.96149 +418.661,84.96098 +419.261,84.9832 +419.861,84.98882 +420.461,84.9992 +421.061,84.98855 +421.861,85.00455 +422.461,85.01309 +423.061,85.00368 +423.861,85.01452 +424.461,84.99641 +425.061,85.01048 +425.661,84.99877 +426.261,84.99733 +426.861,84.99543 +427.461,84.99171 +428.061,85.00078 +428.861,85.00476 +429.461,84.99467 +430.061,85.00908 +430.861,84.9965 +431.461,84.99912 +432.061,84.9986 +432.661,84.99694 +433.261,85.00558 +433.861,84.99107 +434.461,85.00584 +434.861,85.00765 +435.461,85.00742 +435.861,85.01192 +436.261,84.99948 +436.661,84.99662 +437.261,84.99627 +437.861,85.00299 +438.461,85.00328 +439.061,84.99805 +439.661,84.99484 +440.261,85.00404 +440.661,85.00089 +441.261,85.00402 +441.861,85.00848 +442.461,85.00622 +443.061,84.99767 +443.861,84.99669 +444.461,85.00247 +445.061,85.00321 +445.861,84.99334 +446.461,85.00912 +447.061,85.01153 +447.661,85.01842 +448.261,85.01508 +448.861,85.0137 +449.461,85.0097 +450.061,85.01202 +450.661,85.00979 +451.261,85.01527 +451.661,85.02189 +452.261,85.01108 +452.661,85.00035 +453.261,84.99241 +453.861,85.00693 +454.461,85.00395 +455.061,85.02645 +455.661,85.02621 +456.261,85.00153 +456.861,85.02344 +457.461,85.00819 +458.061,85.02793 +458.861,85.00372 +459.461,85.01757 +460.061,85.02143 +460.661,84.99914 +461.261,85.02084 +461.861,85.00932 +462.461,85.00534 +463.061,85.01109 +463.661,85.00313 +464.261,85.00675 +464.661,85.00724 +465.261,85.00894 +465.661,85.02464 +466.261,85.019 +466.861,85.02931 +467.461,85.01305 +468.061,85.0287 +468.661,85.01729 +469.261,85.01495 +469.661,85.02676 +470.261,85.02929 +470.861,85.00845 +471.461,85.01818 +472.061,85.0227 +472.661,85.0125 +473.261,85.02644 +473.661,85.03007 +474.261,84.99626 +474.861,85.01323 +475.461,85.02776 +476.061,85.02357 +476.661,85.02143 +477.261,85.01829 +477.861,85.02785 +478.461,85.01491 +479.061,85.02673 +479.861,85.02127 +480.461,85.01027 +481.061,85.01106 +481.861,85.03894 +482.461,85.04167 +483.061,85.02357 +483.661,85.03722 +484.261,85.01624 +484.861,85.02325 +485.461,85.02404 +486.061,85.01362 +486.861,85.03065 +487.461,85.00462 +488.061,85.02093 +488.661,85.02814 +489.261,85.03176 +489.861,85.01299 +490.461,85.03559 +491.061,85.06179 +491.661,85.04204 +492.261,85.04216 +492.861,85.04549 +493.461,85.03969 +494.061,85.03777 +494.861,85.05626 +495.461,85.03737 +496.061,85.02133 +496.661,85.04419 +497.261,85.0479 +497.661,85.04459 +498.261,85.05015 +498.861,85.04426 +499.461,85.04565 +500.061,85.03431 +500.661,85.04288 +501.261,85.03393 +501.661,85.02946 +502.261,85.03757 +502.661,85.01581 +503.261,85.02901 +503.661,85.032 +504.261,85.03386 +504.661,85.0266 +505.261,85.01529 +505.661,85.02259 +506.261,85.02297 +506.861,85.02586 +507.461,85.02857 +508.061,85.02849 +508.661,85.03566 +509.261,85.03566 +509.661,85.03024 +510.261,85.01331 +510.861,85.03578 +511.461,85.02573 +512.061,85.01804 +512.661,85.0357 +513.261,85.02909 +513.861,85.00656 +514.461,85.03392 +515.061,85.03642 +515.861,85.02869 +516.461,85.03415 +517.061,85.02608 +517.661,85.02126 +518.261,85.03252 +518.661,85.02912 +519.261,85.03058 +519.661,85.03231 +520.261,85.03316 +520.861,85.02302 +521.461,85.0372 +522.061,85.02769 +522.861,85.02402 +523.461,85.04018 +524.061,85.03542 +524.661,85.0432 +525.261,85.03249 +525.861,85.01761 +526.461,85.04244 +527.061,85.01484 +527.861,85.02694 +528.461,85.03187 +529.061,85.03004 +529.861,85.02522 +530.461,85.02483 +531.061,85.02219 +531.661,85.02263 +532.261,85.02357 +532.861,85.01797 +533.461,85.02026 +534.061,85.00476 +534.861,85.02533 +535.461,85.02599 +536.061,85.01534 +536.661,85.02137 +537.261,85.03514 +537.861,85.02946 +538.461,84.99738 +539.061,85.01894 +539.861,85.03199 +540.461,85.01651 +541.061,85.02811 +541.661,85.02059 +542.261,85.01435 +542.661,85.00489 +543.261,85.02304 +543.861,85.0378 +544.461,84.99723 +545.061,85.01653 +545.661,85.0199 +546.261,85.02839 +546.861,85.03281 +547.461,85.03111 +548.061,85.02441 +548.861,85.02762 +549.461,85.01855 +550.061,85.01917 +550.661,85.02381 +551.261,85.0243 +551.661,85.03455 +552.261,85.01414 +552.861,85.01533 +553.461,85.03156 +554.061,85.01783 +554.661,85.01588 +555.261,85.01789 +555.861,85.00382 +556.461,85.00986 +557.061,85.02308 +557.661,85.01482 +558.261,85.0305 +558.661,85.03031 +559.261,85.02223 +559.661,85.02685 +560.261,85.02299 +560.861,85.01679 +561.461,85.05107 +562.061,85.02413 +562.661,85.03208 +563.261,85.03127 +563.861,85.03588 +564.461,85.0395 +565.061,85.033 +565.661,85.04847 +566.261,85.03847 +566.661,85.04146 +567.261,85.03382 +567.861,85.04042 +568.461,85.02546 +569.061,85.04164 +569.861,85.03891 +570.461,85.05 +571.061,85.04822 +571.661,85.03759 +572.261,85.05089 +572.861,85.04828 +573.461,85.03516 +574.061,85.03701 +574.661,85.03646 +575.261,85.02757 +575.861,85.02771 +576.461,85.0389 +577.061,85.03362 +577.861,85.02424 +578.461,85.02244 +579.061,85.05154 +579.661,85.03136 +580.261,85.02419 +580.861,85.03032 +581.461,85.02436 +582.061,85.03638 +582.861,85.04034 +583.461,85.04063 +584.061,85.02179 +584.661,85.03764 +585.261,85.0361 +585.661,85.03679 +586.261,85.03478 +586.861,85.02847 +587.461,85.03831 +588.061,85.04733 +588.861,85.03276 +589.461,85.05131 +590.061,85.03669 +590.861,85.04155 +591.461,85.02986 +592.061,85.03864 +592.861,85.0474 +593.461,85.04251 +594.061,85.04327 +594.661,85.0415 +595.261,85.03138 +595.861,85.02427 +596.461,85.04103 +597.061,85.03427 +597.661,85.03434 +598.261,85.03676 +598.661,85.04629 +599.261,85.04363 +599.661,85.04793 +600.261,85.04392 +600.661,85.05597 +601.261,85.04097 +601.661,85.05651 +602.261,85.05564 +602.861,85.05879 +603.461,85.0473 +604.061,85.05443 +604.661,85.05949 +605.261,85.05003 +605.661,85.04977 +606.261,85.05202 +606.661,85.05088 +607.261,85.04565 +607.661,85.04556 +608.261,85.04387 +608.861,85.04649 +609.461,85.04808 +610.061,85.04099 +610.661,85.06267 +611.261,85.04624 +611.661,85.04185 +612.261,85.05281 +612.861,85.04178 +613.461,85.04961 +614.061,85.03757 +614.661,85.04599 +615.261,85.04873 +615.861,85.05151 +616.461,85.05923 +617.061,85.04423 +617.861,84.98773 +618.461,85.05965 +619.061,85.04366 +619.661,85.05489 +620.261,85.05643 +620.861,85.04218 +621.461,85.04556 +622.061,85.05886 +622.861,85.0629 +623.461,85.06684 +624.061,85.05593 +624.861,85.0641 +625.461,85.05646 +626.061,85.06918 +626.661,85.0545 +627.261,85.06692 +627.861,85.06137 +628.661,85.06651 +629.261,85.06705 +630.061,85.07507 +630.661,85.06174 +631.261,85.06172 +631.661,85.067 +632.261,85.0668 +632.861,85.05819 +633.461,85.06862 +634.061,85.07561 +634.861,85.06081 +635.461,85.04734 +636.061,85.06267 +636.661,85.05772 +637.261,85.05417 +637.661,85.06143 +638.261,85.06361 +638.861,85.05199 +639.461,85.05243 +640.061,85.06237 +640.661,85.05238 +641.261,85.06203 +641.661,85.0666 +642.261,85.05987 +642.661,85.04606 +643.261,85.06315 +643.661,85.06931 +644.261,85.06326 +644.861,85.05869 +645.461,85.05156 +646.061,85.06179 +646.661,85.06906 +647.261,85.06918 +647.661,85.06519 +648.261,85.07256 +648.661,85.06013 +649.261,85.06563 +649.861,85.05077 +650.461,85.07134 +651.061,85.07951 +651.661,85.07345 +652.261,85.06834 +652.861,85.07006 +653.461,85.04945 +654.061,85.05579 +654.861,85.0434 +655.461,85.04613 +656.061,85.04691 +656.861,85.03476 +657.461,85.0479 +658.061,85.06847 +658.661,85.05869 +659.261,85.06122 +659.661,85.06644 +660.261,85.04926 +660.661,85.06901 +661.261,85.06885 +661.861,85.0579 +662.461,85.0624 +663.061,85.06438 +663.861,85.0507 +664.461,85.07021 +665.061,85.07647 +665.661,85.07641 +666.261,85.06409 +666.661,85.07733 +667.261,85.07076 +667.661,85.06117 +668.261,85.06001 +668.861,85.07042 +669.461,85.07306 +670.061,85.08546 +670.861,85.08498 +671.461,85.07748 +672.061,85.08306 +672.661,85.08511 +673.261,85.07489 +673.861,85.08315 +674.461,85.06758 +675.061,85.07756 +675.661,85.07845 +676.261,85.0696 +676.861,85.07764 +677.461,85.0808 +678.061,85.07568 +678.661,85.08344 +679.261,85.08415 +679.861,85.08786 +680.461,85.07834 +681.061,85.07647 +681.861,85.05231 +682.461,85.06046 +683.061,85.07602 +683.861,85.06594 +684.461,85.0742 +685.061,85.0666 +685.661,85.07359 +686.261,85.04868 +686.861,85.0592 +687.461,85.05622 +688.061,85.05563 +688.861,85.06252 +689.461,85.04093 +690.061,85.06221 +690.661,85.05742 +691.261,85.06531 +691.661,85.05947 +692.261,85.05063 +692.661,85.05598 +693.261,85.06348 +693.861,85.04811 diff --git a/src/pyvale/data/valid/Pulse253_SteadySummary.csv b/src/pyvale/data/valid/Pulse253_SteadySummary.csv new file mode 100755 index 000000000..0e0de837a --- /dev/null +++ b/src/pyvale/data/valid/Pulse253_SteadySummary.csv @@ -0,0 +1,7 @@ +,Coil RMS Current,Coil Frequency,alpha_tb,beta_tb,gamma_tb,dx,dy,dz,Sample Inlet Temperature,Sample Outlet Temperature,Coil Inlet Temperature,Coil Outlet Temperature,Sample Inlet Pressure,Sample Outlet Pressure,Sample Flowrate,Coil RMS Voltage,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,TC9,TC10 +mean,1550.5077254098358,123.4764538,0.8986488137599092,0.14003367725953855,-3.957137308704624,-1.7249280017905035,0.8987147105514889,-0.15192399079766394,147.7978922354643,149.52686741021085,27.299024999999997,63.044425000000004,6.64756409,5.7828502,47.354563692499994,85.00913525956284,,216.5341,350.4694320010778,,175.2730710350351,338.09468204089177,,194.28412204376644,277.20062603439794,185.57505726960298 +std,0.22922159902626857,0.030005917242418783,0.07120327830568685,0.0438527632372607,0.1463162656403,0.1901602101986897,0.04958875380505318,0.2377437076914216,0.4850252541601981,0.5040313692040538,0.4453843479721154,0.33621760076274504,0.04568006641727459,0.038269336988951554,0.14556330162109898,0.04260300497180303,,1.8339843063914771,0.5252220371317963,,0.39210902843419937,0.5645188873443873,,0.2602857787788981,0.3856580874601825,0.30385198820199527 +ci95_low,1550.491119752623,123.47351322011025,0.8919497949648788,0.1359078772664648,-3.970903183491105,-1.7428188468821997,0.8940492512964245,-0.17429163459332694,147.7522595992852,149.4794466215066,27.25537733389873,63.011475675125254,6.643087443491107,5.7790998049750835,47.34029848894112,85.00604894090962,,216.35436953797364,350.4200175305361,,175.23618023711558,338.0415704043709,,194.25963357405536,277.16434216042717,185.54646995974437 +ci95_up,1550.5243310670485,123.47939437988975,0.9053478325549397,0.1441594772526123,-3.943371433918143,-1.7070371566988074,0.9033801698065532,-0.12955634700200094,147.8435248716434,149.5742881989151,27.342672666101265,63.077374324874754,6.652040736508893,5.786600595024917,47.368828896058865,85.01222157821606,,216.71383046202635,350.5188464716195,,175.3099618329546,338.14779367741266,,194.30861051347753,277.2369099083687,185.6036445794616 +epistemic lower,-94.2398595504098,-0.5,0.0,0.0,0.0,-0.025,-0.025,-0.025,-2.2,-2.2,-2.2,-2.2,0.0,0.0,0.0,-1.7443874555262295,-2.2,-3.245000000000002,-4.094234449300087,-2.2,-2.2259101291039913,-2.9354052343376824,-2.2,-2.229198491709508,-2.233198427798496,-2.2614932341094915 +epistemic upper,94.2398595504098,0.5,0.0,0.0,0.0,0.025,0.025,0.025,2.2,2.2,2.2,2.2,0.0,0.0,0.0,1.7443874555262295,2.2,3.245000000000002,4.094234449300087,2.2,2.2259101291039913,2.9354052343376824,2.2,2.229198491709508,2.233198427798496,2.2614932341094915 diff --git a/src/pyvale/data/valid/Pulse254_DIC.csv b/src/pyvale/data/valid/Pulse254_DIC.csv new file mode 100644 index 000000000..2dad66643 --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_DIC.csv @@ -0,0 +1,1151 @@ +TC3,TC5,TC6,TC8,TC9,TC10 +147.150317639742,146.278863765263,147.263749139562,147.08632721238,146.530356613186,147.077317874617 +147.144859759616,146.277102810707,147.24650866203,147.096578122664,146.537140702414,147.069550094599 +147.151084036272,146.285172104549,147.240257845683,147.089403680469,146.524194241113,147.067457890507 +147.142470777491,146.285337362663,147.245505724499,147.09211010299,146.528054745557,147.074322425205 +147.148548348692,146.289334274629,147.254124857255,147.093567337661,146.536440190773,147.085250998088 +147.15427667133,146.294829485024,147.252691627813,147.107380901421,146.541936007824,147.102067648638 +147.161913352056,146.294380763192,147.252704767353,147.100232702286,146.538715797786,147.09353340669 +147.158085696437,146.304179343812,147.259966216315,147.113961989396,146.541817789316,147.104952541989 +147.15364931823,146.29835907644,147.245595530056,147.107677606244,146.52722071484,147.093354951366 +147.155371542652,146.300311575689,147.247548849543,147.108706761533,146.528942461646,147.0893018872 +147.158282781228,146.300219637488,147.258546123076,147.113928058423,146.537626709669,147.094292129535 +147.15620912078,146.315004593347,147.248155436025,147.111854438445,146.535553618932,147.091756508096 +147.154578868717,146.311296582172,147.264776197195,147.117154575272,146.546626242995,147.105835002992 +147.15964043713,146.304347921592,147.26221410744,147.118288846655,146.538060180345,147.103966124861 +147.158537911195,146.311790195614,147.254642788606,147.1266578631,146.547581816256,147.106097779459 +147.158868552667,146.314430011133,147.261673215111,147.128605593293,146.548143322358,147.123061277999 +147.15296175688,146.321457508636,147.259462576803,147.134018532456,146.539466683704,147.114844453899 +147.165145424093,146.323244769097,147.26656420504,147.127027916788,146.542408885184,147.118018417562 +147.158582818145,146.327307427659,147.271090618112,147.137560416963,146.549705297996,147.124161625359 +147.16410094152,146.317812996679,147.257433734141,147.133606898548,146.556145753719,147.121825218789 +147.158966015665,146.320762555124,147.260846574946,147.141870858594,146.5450074045,147.125006843136 +147.16635855583,146.327459552569,147.266622253377,147.143487962541,146.559326581265,147.13286130052 +147.168390645005,146.32648877809,147.26934751506,147.146444092017,146.561127169201,147.14136176259 +147.165466256001,146.337652309881,147.280746740789,147.15299136331,146.561667894976,147.141671612511 +147.169863235203,146.346204469047,147.27867513118,147.158312383955,146.563523186047,147.140062158587 +147.177248161933,146.338345107026,147.280746740789,147.15114323688,146.56282267248,147.149526127487 +147.172389133836,146.342956115285,147.281201150519,147.169847938705,146.561429293939,147.15090457358 +147.172706635807,146.349739631769,147.277129122031,147.156304424023,146.560591933129,147.15260816728 +147.172930006454,146.343034923105,147.275966332238,147.168309652684,146.572132084126,147.157682874637 +147.169068402513,146.345409926683,147.278342317695,147.161906870331,146.567347682364,147.153128248748 +147.168790320621,146.347903145507,147.287074355261,147.175027801746,146.567069674507,147.163707941241 +147.165141107879,146.340329403215,147.281114662796,147.157286538957,146.559495191225,147.153590280618 +147.176631789693,146.353432419312,147.286137097225,147.17801789991,146.57329235901,147.163694801735 +147.18216309602,146.362887597547,147.290282490125,147.17962188997,146.576743575146,147.173384396247 +147.17259172027,146.340618366583,147.277014201224,147.175594954807,146.57040814939,147.170050524913 +147.176828883837,146.350627301577,147.284023907739,147.166664100509,146.566791667475,147.165277997211 +147.172723116393,146.358762534742,147.286155732547,147.186353213454,146.565689432313,147.172723116393 +147.182536503367,146.360258716397,147.29504548687,147.183922617181,146.583352730964,147.178840203989 +147.180701492713,146.362812134355,147.291593175273,147.195717758576,146.590987483409,147.183473718951 +147.18849044338,146.367827033702,147.295223955446,147.199810427202,146.580759652859,147.177632552633 +147.189929120138,146.385661675617,147.305210843182,147.202404215403,146.590281471792,147.20263523633 +147.189367459832,146.379326791802,147.305342248408,147.203459698604,146.583022178967,147.190060518715 +147.196403177604,146.384974359922,147.298978503864,147.206337072473,146.582665354652,147.206337072473 +147.182733600746,146.377544975143,147.289466843041,147.194053555927,146.587014144153,147.181347487655 +147.186093768289,146.377670830411,147.297447774443,147.211506028784,146.582982769934,147.185631729816 +147.199584904366,146.390464319403,147.303546560492,147.202357153611,146.593467842371,147.205822469916 +147.205439267407,146.389619379864,147.310787381669,147.2084425453,146.600244473857,147.215373201714 +147.196660477828,146.392852510181,147.310787381669,147.203591098366,146.592160909121,147.199201702908 +147.204798763887,146.392674113279,147.31453645772,147.227207926603,146.602837574838,147.210112256745 +147.20213163183,146.392779195743,147.316027777265,147.221537469162,146.594859092708,147.212527595542 +147.203496977784,146.399686575243,147.316238028887,147.220130552489,146.597840785589,147.210889662648 +147.21063236059,146.40935975288,147.330766838415,147.235813870709,146.613981711642,147.227497010879 +147.212104972002,146.405289290813,147.320687852834,147.224811211987,146.605753594817,147.224580188808 +147.197028398226,146.389063417871,147.315313899246,147.216203169723,146.603614772028,147.205576167975 +147.21479625738,146.418833802197,147.330310272358,147.234202202661,146.608675119067,147.239515764137 +147.221548471415,146.415884117139,147.340066279891,147.247192153118,146.630207074613,147.24742317859 +147.225812009345,146.425688721359,147.333240371968,147.241290622468,146.613682931315,147.238749350409 +147.213864531347,146.421135575819,147.342085392782,147.240432225435,146.622525142716,147.238353003414 +147.225197781732,146.426922243115,147.337477837004,147.254306894611,146.617457127954,147.243217664889 +147.225276624036,146.430465183778,147.333167029723,147.25276855517,146.630931737713,147.253230607267 +147.228319349357,146.434661549736,147.347299580969,147.258121581726,146.631894999016,147.254656185838 +147.224405092872,146.431210552803,147.332988559664,147.254900352648,146.617588496581,147.25882780214 +147.224806941692,146.424684009827,147.33985939421,147.247216301314,146.630693141252,147.245830148961 +147.235651916956,146.436217970284,147.351629060688,147.255520092505,146.634375407841,147.25713727721 +147.225796737026,146.436296785577,147.348242369816,147.26460898039,146.632375564748,147.257909200686 +147.237505617763,146.45123478826,147.366651958678,147.276087032195,146.641771737548,147.27423880583 +147.248529116391,146.454171382981,147.368665590909,147.27463515824,146.649558830279,147.279717785234 +147.239406376825,146.445282794525,147.354459566009,147.280298110431,146.642517177309,147.271750060262 +147.241782327974,146.447657910447,147.363535707271,147.277822499183,146.643737682275,147.2762052998 +147.243966678672,146.457000766438,147.364796024899,147.28139305757,146.648462062437,147.28416540638 +147.24034912375,146.459850921081,147.361409315346,147.27939264373,146.649233779245,147.294178530034 +147.251267509754,146.460372986097,147.367707522841,147.28153210012,146.64559853125,147.284073419889 +147.252210262047,146.453694232809,147.370729664056,147.287788538969,146.657858303844,147.28640236194 +147.263761589771,146.460160683175,147.374426274594,147.293333255514,146.657858303844,147.299571077742 +147.262071064037,146.47001802909,147.374815011381,147.30527351656,146.66355912746,147.296263311845 +147.257952005076,146.460819616699,147.375778589824,147.29745788767,146.656900538218,147.30069231773 +147.273761483142,146.478009199476,147.392050964438,147.309109064652,146.669934220039,147.311419383171 +147.266605131218,146.480786070805,147.389746074213,147.307959415958,146.670863594629,147.317431731982 +147.263013823178,146.472346134886,147.387078730688,147.305985262134,146.674202230691,147.31037486331 +147.266319421321,146.471955434364,147.385301635098,147.30143585649,146.659722554377,147.310446081638 +147.276531702093,146.494866261519,147.396207569832,147.326665423448,146.685637881278,147.327820591304 +147.293680435198,146.492147426674,147.405501777867,147.323021455772,146.688693020406,147.319093895709 +147.291976748149,146.492522877446,147.407263629729,147.322934978181,146.68583494694,147.333562527137 +147.288088665261,146.489790909076,147.404299515779,147.325515768449,146.678945324806,147.334295054395 +147.282735566896,146.494370464798,147.393401171833,147.321317746809,146.690916253016,147.333793561359 +147.30048545025,146.496178643793,147.404682747122,147.335602411475,146.689952965052,147.340223104499 +147.296886462055,146.503897432266,147.418642781224,147.342630959067,146.694438849779,147.343786135003 +147.301856380435,146.511175109495,147.415988547815,147.338359570518,146.705874604829,147.351066514188 +147.303129808907,146.508983839891,147.417262039932,147.344484755851,146.703221205372,147.351184789857 +147.301037388222,146.51174210495,147.420945583577,147.341006087037,146.709906206738,147.358102738411 +147.302772878667,146.513015088921,147.420370734078,147.351751996121,146.706097951145,147.35798997804 +147.310535958554,146.5219302152,147.425361690077,147.358360058718,146.719864243496,147.364367021349 +147.316073105084,146.530005904421,147.433440600968,147.361355912593,146.716623018892,147.363204209528 +147.317023518311,146.51987030538,147.432311664313,147.36692709174,146.714339582816,147.363230493339 +147.310066269547,146.524924962138,147.435982089795,147.365514582801,146.720087591886,147.36343524675 +147.322059190537,146.527213721326,147.437578635387,147.35925581409,146.721914605924,147.362259294608 +147.330006320152,146.54070093172,147.44367780331,147.378986021947,146.739329533417,147.378061866907 +147.32020330385,146.543603745411,147.439881460374,147.36733449357,146.731607825432,147.373572518051 +147.328084718229,146.540858578658,147.449842700342,147.377988533441,146.734636751817,147.374985032239 +147.325635342305,146.531481473918,147.447624239632,147.372997682356,146.73172607098,147.383625464327 +147.334018269726,146.553949649182,147.442144861193,147.388774045188,146.740337776985,147.385539490327 +146.8140620210075,146.613305777924,147.328247729223,147.610426712202,146.63356364378598,147.385572486505 +147.1310719230475,146.668267489622,148.13968153665,147.68411483228897,146.737523499427,147.50641235396802 +148.5936540463055,146.744752560223,151.176505291866,147.784646770748,146.888203111543,147.67028215303998 +149.8781965591415,146.784446582688,153.00605135641,147.843989645867,147.04945424542998,147.73033201628 +153.1925025330175,146.9313570391725,157.239965662,147.955808630288,147.527129042556,147.812595480928 +154.7563163234925,146.98632485033352,159.393321288774,148.06301180563798,147.766346185919,147.85441781948703 +158.8917175032865,147.06743077562453,162.71496582491,148.082909609791,148.981824323834,147.93001727823798 +160.9426014159085,147.1189499468395,165.244118402112,148.150618220281,149.524670471464,147.98479755450398 +165.3452657429335,147.2280058403805,169.275404337111,148.24422293417,150.809990890972,148.06524731417102 +167.6973716960605,147.27886948891648,171.428573117347,148.318209584442,151.418320267133,148.085857222127 +171.4579393772245,147.3916690056285,175.03499922431502,148.4486054276,153.15631141644698,148.170510401686 +174.4018558701285,147.4453011561895,176.782772897501,148.519586584149,153.95772632547798,148.207524640011 +178.7889403108175,147.58996220814748,178.858626631472,148.819611527883,155.803272883148,148.29746686172302 +181.3058442232795,147.64287954489748,183.048276335382,148.681400245178,156.641130168933,148.330989497798 +185.34816954078948,147.8091273673685,186.425644585443,148.95055592509,158.69824248877998,148.44459963434701 +187.3024130769125,147.8893962989925,187.992641129954,149.07777718191397,159.79372719036598,148.51703991924103 +191.3149778259835,148.04695346884148,191.25641598394,149.364159883358,161.73442446822298,148.635124908154 +192.7010853236035,148.1485715004075,193.372203020476,149.459807562499,162.89903077766,148.704182100131 +197.3004163601455,148.3395544605305,196.784561945016,149.74682494218797,164.89518860136,148.89708194206798 +199.5851441787485,148.45467784529149,198.332367089091,149.90801601097797,165.95081650174998,148.99698526788603 +203.5115322737445,148.67640938981452,202.013243725559,150.23808354809,168.033062720495,149.19381915677803 +205.5170816535855,148.79983972667748,203.591398735873,150.45293607983297,169.23387821444098,149.30341549082 +209.1765754647305,149.05138115539148,206.846300616513,150.891757747935,171.27155987511298,149.569146313138 +213.1938439469965,149.30381603412349,210.235525390947,151.273218137531,173.325701663102,149.81449392172203 +215.0518546990715,149.44067552575348,211.886244848438,151.48490668997897,174.419952280199,149.977073444678 +218.9352506539775,149.71847753112849,214.802846439646,151.925823456751,176.450852535663,150.277639406402 +220.3730202072795,149.86317907052353,216.432453434268,152.14353997800498,177.499556769994,150.44853355750598 +224.33316571126448,150.16386313381452,219.691790839272,152.68706041956597,179.746297523572,150.79583173862102 +225.2742326645615,150.31815434650252,221.161907938318,152.902605744241,180.839157913534,150.959898478225 +229.8374058218255,150.6293447690215,224.089957853759,153.41668485134,183.112940241103,151.32767404754003 +231.3017140576475,150.7914527146885,225.524324648357,153.68802506698898,184.144336707872,151.536367696835 +233.9965909324795,151.0962897177655,228.567455878127,154.25814912247097,186.24214340083398,151.93508165670698 +235.7597008363345,151.31207599837552,230.299553691998,154.524670658756,187.267211860917,152.14193345421 +239.2644729694515,151.6204877431685,232.778290952378,155.087133229755,189.39547752695898,152.580839301918 +240.6330970530935,151.79374369448152,234.174580083505,155.312268566829,190.320251149863,152.79701871452198 +243.8999114050335,152.13273858803052,237.053359672723,155.994229056675,192.109854306502,153.23461301845703 +245.3856404430715,152.25012460614153,237.864738999399,156.402922216815,193.17599621291598,153.452586045638 +247.8244940561435,152.67531032356248,241.265741512525,156.491830463226,195.096323330552,153.93546362796098 +248.8271635358555,152.7857087618275,242.029649338059,157.238836383325,196.18351650273698,154.227337563243 +252.7241871957265,153.27093490634752,244.688638788947,157.75167962375298,198.08686461492,154.68043059047102 +254.5922026192055,153.3754894223025,245.611162796872,158.08647887121901,199.069962105342,154.8446086252 +255.4902940288545,153.7771708693465,248.458010083459,158.73353101593597,201.134711560863,155.355253918929 +258.39183064334946,153.96117369778648,249.341624677559,158.722473992216,201.90788113847,155.697475766058 +259.2433964411295,154.39742457849349,252.142024271069,159.58868501332302,203.69500055646998,156.04269230136498 +261.96674104240446,154.4592726139885,253.03657309563602,159.814714477805,205.064971907245,156.451220334781 +265.7305222079465,154.87000568672352,255.149678803768,160.88285587982,206.586068185651,156.818450103119 +263.5823395877605,155.07716445262452,256.659199157018,161.102009584502,207.492900597171,157.024609826308 +269.6307878366335,155.63122652974448,257.995488244381,161.97942113902297,209.162807221948,157.512290510176 +270.1525754099235,155.49265119264152,260.604914973948,161.99501298617702,209.327572665774,157.983240392089 +272.03949524314146,155.75444744423748,261.825983000319,162.86820408035697,211.78393903722898,158.208855451616 +269.6385389915915,156.2679715927805,263.694175050025,163.337275160086,211.92724192411998,158.730042264531 +273.8202120692775,156.40834311629152,266.01479980298996,163.71260070236997,213.996038124553,159.032757179873 +275.78199015025547,156.67134291171948,267.173457011898,164.44509612017902,216.01373884260298,159.82661727770198 +276.2783537688935,157.13769288279047,267.12398102134205,164.40792680489102,216.059208901394,160.15302405216698 +276.6593077559865,157.63895945414748,270.86490580132,164.97901444765398,218.800841188282,160.24571917081403 +276.0933439169475,157.53216425272348,270.73934346959004,165.401947883707,218.209549074685,160.82328599149298 +284.94822086415445,157.8174984769725,271.562625372997,165.649777433772,220.47942554691198,161.407585516879 +281.64689881287046,157.92858486361348,273.122478519815,166.197236524811,220.67926661844098,161.62354929888198 +283.46573320165845,158.67931133055652,276.28819994000696,166.353678950522,223.05879948477,161.761250605749 +289.9378867425225,158.6250226221265,275.40978300796905,167.01194809405,222.819754170551,162.45927693966502 +291.7548605104225,159.2705957944715,278.566166358896,168.10525425388897,225.01723058768698,162.490187372168 +285.30273870917745,159.06446162939147,277.14105242665596,167.97494289045198,224.86477395952798,162.73917261476203 +294.7296836045515,159.32720682986752,279.77487340371397,168.76771364081202,227.39713405387198,163.51085450900302 +292.6846800483765,159.6404652696835,282.300836037894,168.74252947344598,227.90695521880298,163.85286448816703 +292.4400449810495,160.1151091108045,281.75731763099395,169.508358666528,228.718791430085,164.08523253787502 +296.5863986207585,160.4274883145875,283.578053316744,169.21466110125897,228.951018945546,164.60810054085698 +296.3541382351645,160.7833142203035,283.84998083997095,169.94002327656,230.985469373599,165.15846826034402 +297.9528106658985,160.78609279341651,285.909159338776,171.25273503674197,231.707351335479,165.21564897855 +298.87019372814547,161.29654209161248,287.995933579003,171.536529830826,232.08778916749398,165.43170273041602 +300.0758071041575,161.4713174175435,286.792443758187,171.30462835212097,233.372528004501,166.101695197977 +302.31624599683045,161.7067219164535,288.530688987071,171.409048437818,233.531276357538,166.208575885561 +296.9983290120825,161.8451542844315,288.86706151600197,171.63971658079402,233.92359382984299,166.35438726419403 +300.84341741798147,162.2216520604805,289.951571731679,172.912552143654,236.609305255655,167.018792961928 +302.1028702011055,162.44524849080648,291.18347724790704,173.21348163743397,235.66047842831898,166.991256959709 +308.18803457712545,162.3003473201585,292.68581781434705,173.068950774067,237.19351712255798,167.966572522415 +306.2289316187555,162.4722528182595,295.071235832709,174.349772912432,237.640033415594,167.67326215540703 +310.12547466837447,162.7738526678105,296.50116280185205,173.81639700028597,238.51722375108298,168.09041255472698 +306.2420291937545,162.85019712712648,297.47982870156204,175.290781347603,240.281234477038,168.82547645423 +308.35808950285247,163.42657230730453,295.76996161551904,175.80030020650497,241.143794984024,168.78099127849902 +309.3024395086585,163.35971579477751,298.154833658446,174.742839154615,240.597319926063,169.140521213258 +305.51277200267447,163.8257545381705,299.751041817693,175.41577270725497,242.757370153756,169.83757964625102 +305.22990275271746,164.3812213770405,300.324483488615,176.52397323374697,242.463906203617,170.17948050174402 +307.05144597082744,164.5322835654465,299.16203094623495,177.023125368541,244.25768545513998,170.313521515094 +311.26834201630845,164.5228072814685,300.53791925219605,177.183670069007,244.88763969705698,170.61519576448302 +312.46884070753646,164.5630953173585,303.06266061496706,176.79405555977598,244.182767347344,170.697199875511 +309.7458687983795,164.7031268748505,304.423348576547,178.15641941780297,246.24389728262298,171.37602791612198 +310.76740297803946,165.2329613324365,304.847837705669,177.50750814299397,246.34052593507198,171.222261961862 +311.21384054268145,165.58916425260452,305.625512709903,177.931301623784,246.639342614442,171.978384455021 +316.87264525082946,165.5514232470975,305.00515461643,178.11618946565198,246.816713215611,171.664508303123 +313.17333349335445,165.47540925138452,307.37147381664704,179.34092703347198,247.860964161917,172.51794768559 +317.1077723643125,165.64444007872748,306.367616348222,179.81204872276896,248.14809129965198,172.69397546988398 +321.56558328310746,166.32704575648648,308.84090259295203,179.63961433267997,250.166225583201,172.788014243445 +320.43132926057547,166.2288096424595,308.265583297367,180.05422898006998,249.930310137836,173.053556462639 +317.07084529372247,166.2375507046915,307.51568333984505,179.886610390942,251.10121609924198,173.08931799247898 +321.53573974651346,166.37500956889647,308.57110888284797,179.90528971439102,251.826538417581,173.300540635287 +319.42029101436145,166.6892074128475,310.97372728615005,181.038668079427,252.562160732515,174.071797785049 +324.9283120241155,167.20796142635947,309.759453229413,180.533430796247,251.479457208035,173.77668899350698 +324.0718202069735,167.43271221358452,310.07754518366403,180.76256175125798,253.026132255927,174.48841782203203 +321.86598222501345,167.5333065535175,310.713590845726,182.048705825401,252.630894219902,174.669951916968 +323.02065248078645,167.3594882314115,313.13387415079103,182.54567492277602,253.386937779611,174.96587225252 +324.6966570461915,167.84051874854453,312.955430880079,182.295906286839,254.686236788469,175.08841482752598 +325.01914143330845,167.94627898301547,314.228752208654,182.15065591233702,254.339309336675,174.946973832362 +329.0704565620805,168.17333322402249,315.50642890610595,182.83229797432597,255.079595308044,175.37856221457002 +325.0621493515875,168.32997146760152,316.15626021341996,183.27165702489197,256.209945995823,175.42057046459803 +323.72469246730844,168.07306165103853,314.23705664619797,182.61695995046898,256.741103956844,175.57186065014702 +326.2061464195735,168.2914071573685,316.064455150369,183.618937578542,257.415477906643,176.33739062919403 +330.4154658590045,168.26605145188552,316.933395933542,183.41805670524099,257.76369763560103,176.14475864358002 +325.3386834289325,168.91255284528648,316.95624787312204,183.416431111573,258.34798327118995,176.450601545376 +329.16561516054946,168.8524288827375,316.685792540242,183.67220933479098,258.76279190278603,176.58676858623699 +332.5035656812575,169.1545295010045,319.09113334120696,184.92657425153396,257.91042744471395,177.05113794515398 +330.0983488814635,168.9446437244215,318.24482194153495,185.088981065346,258.488027772294,177.29617468107102 +327.10187394883445,169.2042779664165,317.292182283712,184.975472839122,259.89019542138396,177.049931539155 +332.89828635034445,169.22927912004548,320.137604041072,184.962295153259,259.428851968044,177.251540318754 +330.7195816911015,169.4530692315505,319.750370819531,185.21091907325598,260.04299193361,177.578572477274 +329.1163928882685,169.57941222299752,319.69284606983,185.371255645413,260.979449155843,177.67524981481301 +334.3786586800825,169.95739453666852,321.68762630083097,185.961433633868,260.990704975163,178.00196179352002 +331.77008776043647,169.6916986801835,321.77513633694696,185.61049823258497,261.422266065485,178.16671264790898 +333.98754896005147,170.07610455238552,321.21290529923704,186.53151042830598,260.91417510168503,178.38313954989098 +332.29046439758946,170.24751008011452,321.66988726982595,186.70666495402702,262.280866703633,178.54402803029 +332.79080314910846,170.0170036830375,322.46947422219296,186.07589988023,261.86213428942096,178.43603135405402 +332.77512123613644,170.4903455041275,323.61810704378604,187.06241342463198,262.27277759850597,178.69557849752698 +333.5621285411955,170.57741646047248,323.626187981051,186.820072100816,262.85800852190994,178.75898254541 +337.0352557847955,170.72126940800848,324.78168067954505,187.23050206174298,263.542100018053,178.83775834569798 +332.7683142434155,170.37808755475453,322.60538708726904,187.41376713147997,262.96193736506893,179.10391919789203 +333.56077691649244,170.6844638387015,324.324685457819,187.569090474095,264.014308631611,179.34145167228803 +336.2983132192115,170.7027095571865,324.795820727674,187.901278981195,263.97639586083994,179.30170225588898 +338.1913837429915,170.7188002118245,324.602923435486,188.08705095558702,264.432200517325,179.63282472994803 +338.38923425695344,171.1512591360285,326.425477479845,188.249278795574,264.287289635737,179.49351742850303 +338.2760644379095,171.21859043614648,324.846015674187,188.35817816620897,265.204378857286,179.88642477042401 +334.76843311883846,171.2078497853035,325.01699357253597,188.26935310310898,264.997358023316,179.734472220613 +333.4751693052515,171.02633828223253,324.777160653534,188.378218338193,265.42681161159396,179.910422444417 +337.08348258915845,171.3656105299725,325.59587525414895,188.508411752607,265.57251050876096,180.06995242305402 +335.78910909919244,171.57688520673253,326.097106805732,188.47035133148097,265.415745301263,180.34250019854903 +334.3692285411545,171.6062933892315,326.05114524831504,188.162109535821,265.814016940958,180.39547357961402 +333.8019525318185,171.7508024873905,327.844666447898,188.237808397415,266.153673196706,180.594193043558 +334.62019327011745,171.6866840827065,326.264651003185,189.184796755785,267.04396360298597,180.52301734044403 +336.37207118897345,171.69177100454448,327.92070963467495,188.91839475123402,266.820965330788,180.674210421871 +335.55602385339245,171.8678812507905,327.52831870129705,189.072801978359,267.250641722154,180.855864029259 +339.8740782499585,171.96862778166752,327.30820702287303,189.090698910222,267.30377218363697,180.818300639477 +337.07045559447147,172.01569540761648,329.071833511417,189.262030225074,267.704194041321,181.00033465815 +335.68407536751647,171.8585285358555,329.36927058888705,189.29298491098,267.597818614459,180.995867470166 +340.8452417159885,172.0621918337485,328.225027742075,189.6916946842,267.82319001282497,181.32371011925602 +340.1881022152705,172.11012509011152,328.64225874060696,189.799337148417,267.88451257343297,181.33207820880602 +340.9728062946585,172.3628183433575,328.417887812015,189.48251873898602,268.048651000483,181.295606944908 +337.23001933670747,172.42024570133952,328.59271122231405,189.58195260421098,268.43997351825294,181.47239966626103 +342.3112503713095,172.2768752129295,329.729951824483,189.679627927389,268.577647975662,181.533252004725 +340.72230999714947,172.4123892392205,330.19733225551704,190.26247585308897,268.75459941537497,181.68917455356 +342.4479750697325,172.51888527910648,330.418255926044,190.243939349348,269.111466957855,181.61168204614103 +338.27498581139747,172.4248790603615,330.053457632251,190.200174656012,269.14057695952397,181.79069415554602 +341.5381593351745,172.50765591364149,330.234669491262,190.623025580638,269.302377529811,181.93134457992602 +339.4419443018345,172.56069535832148,330.82896956576997,190.18745067384697,269.83473309048395,181.90217582079902 +341.26361642545345,172.66509109193152,330.529671499859,190.49608328576102,269.71201421665796,182.027179663232 +341.28523685388944,172.6526784691215,330.53741509045904,190.731368597754,269.82567678014095,182.153876026146 +340.6090665686935,172.7242701446885,330.775079912297,190.62173168869998,270.380768125151,182.083852231611 +342.5697974161185,172.7616864838095,330.98152385415904,190.725362934234,270.14737980600603,182.20589575072398 +341.37742417917946,172.9230328236025,331.360586970354,190.933228268574,270.49282361638495,182.30307710780698 +342.0152390105525,172.90778042731148,331.462710385792,191.02864902664197,270.66631578230295,182.272197055226 +342.3974394172895,172.9891533764855,331.804122521889,190.91621741642797,270.81892488551296,182.44522920029902 +342.53393058927946,173.0141901517415,332.273180822761,191.14121079885098,270.95042796188704,182.482407188538 +342.4981814837845,173.0612409354565,332.143750553382,191.183641701988,271.018291727583,182.536492680508 +343.21855679366746,173.04973805438652,332.19365484706395,191.362041225038,271.140948389733,182.55014723541598 +341.27518312035846,173.18164925976953,332.68879381618603,191.268732601387,271.42149346616395,182.622754731145 +341.75778768286546,173.18031102858953,332.608955253211,191.33217303399,271.343055628495,182.66476046101502 +341.46245767303947,173.2027154504765,332.702960496376,191.446871753955,271.584029200063,182.76175781523898 +343.32661037884844,173.2309746979895,332.88157474044897,191.542729383581,271.61814061625194,182.80915201440598 +341.81113052940844,173.22095554408747,332.660188359451,191.47584565574198,271.694351153861,182.88721296255102 +342.78840961523247,173.3765528846195,332.87605204286695,191.710793065514,272.01763479118904,182.96907663650302 +342.5684690773655,173.35167195780252,333.222637884308,191.66585329401101,271.943953307897,182.984256575151 +343.33089908434647,173.39702721709648,333.57693289579504,191.72988524249297,272.07590842788204,183.028953207229 +343.55423544895547,173.44411293668452,333.716660080147,191.82920243775197,272.21861315296997,183.05860256994202 +343.53789972985345,173.5009043752915,333.36945014253,191.89512439248898,272.359196745787,183.13548567572502 +343.3287584924475,173.5254186714035,333.48286625260096,191.91220063495598,272.425478369346,183.145106742069 +344.1319645110005,173.55239398952648,333.861698327329,191.948749504693,272.470118068562,183.219180270344 +343.2940609419805,173.56168680437753,333.65439968837995,192.01723410087897,272.587785354317,183.22591772014698 +345.4997537276135,173.68034346859548,334.07220630267295,192.126656069918,272.72759751720594,183.288746543164 +344.7951404750315,173.6298827640005,334.03144117517604,192.10691657252102,272.70067985059995,183.312350268739 +344.14147039212446,173.68663598951252,334.24422385791195,192.18631210518902,272.80265287088093,183.378940216253 +344.1280929019265,173.67968290326053,334.23131500245995,192.175858977897,272.92466361294,183.39505252631 +344.6056896655465,173.7246824885505,334.306556923229,192.25607434933102,273.100198997829,183.45523856396403 +344.2141677909205,173.74585068791953,334.50776562950796,192.27516016018296,273.05574405339496,183.46267519452 +344.6500525572035,173.7583373485195,334.526644603676,192.32470350755,273.204829824587,183.51735359154202 +344.5733384291295,173.78690375510348,334.664662478932,192.37006585466298,273.28886079806796,183.515182330308 +345.1144097538765,173.8110196486685,334.853065758655,192.41889661491098,273.33296698860795,183.56332227112102 +344.77228242758645,173.82260906249252,334.77025455834405,192.43235784549097,273.38799905498,183.580281512174 +344.3907546248815,173.86628447696052,334.76525079773205,192.493071604114,273.556091736389,183.629819806613 +344.69821909040047,173.8781523317125,334.88570316055996,192.492132063589,273.51392457136194,183.64356197293603 +344.91263816484945,173.8978576197485,335.09619413405403,192.545402747203,273.60495860185495,183.68146131547599 +344.2209901537595,173.91804944118053,335.00333622801304,192.60079104467002,273.69691611341693,183.72264412975198 +345.2642074480885,173.95689428808248,335.03586389128,192.64711682419397,273.749458154698,183.745208029256 +345.5085940669145,173.95500495183052,335.15651476023595,192.63730423514198,273.759178119739,183.764990432922 +345.1181663984965,173.9779306465565,335.51215989450895,192.69985462490797,273.87328131302297,183.80121876201002 +345.46075242230347,174.0071302416535,335.23120634268196,192.71439349582397,273.86951882457197,183.807370835585 +345.7059058717365,174.00907835309852,335.408391146914,192.744768828524,273.939177865504,183.83542177632802 +345.62539370733646,174.0220254586235,335.45358080558606,192.76191795953298,273.983506428286,183.84581601690303 +345.14009841331347,174.0529480191035,335.393535791741,192.812431458336,274.05688578306695,183.87792916538103 +344.83030651307746,174.0640040673365,335.64657378763,192.838406144764,274.115008145625,183.90064660298202 +345.39374062756144,174.0735056941345,335.71812480098095,192.840224594103,274.12244207042,183.92507100518702 +344.80867655089247,174.1136482533675,335.691893831518,192.885983249915,274.23787357698404,183.94660244590398 +345.2326185601835,174.11398141306552,335.89160304347797,192.917771231997,274.268109022884,183.96441442635103 +345.75978586694947,174.12601627284948,335.71176936707695,192.94565700396498,274.324006524211,183.981586086165 +345.1580269512755,174.1189036985645,335.89453329020796,192.941802172272,274.323656529653,183.98868364288603 +345.91362305716746,174.15550810797748,336.041549621935,192.98099107673102,274.385333588821,184.01949147356703 +345.9217992960475,174.16309969394848,335.934186670076,192.982995193786,274.450953028802,184.02708918018203 +345.4540959639905,174.1766983812285,336.077901875611,193.00731958605098,274.45897368631404,184.03370738214602 +346.0305085422245,174.18537299668247,335.99856273082503,193.03533781560998,274.536747138882,184.06196498303103 +345.92262756437844,174.20308369314552,336.04028048191105,193.04467087440298,274.52656416370803,184.07829160166602 +346.3180456449465,174.22851114269452,336.14358168086403,193.07104480515198,274.601150653922,184.091620889585 +345.7623669830605,174.2141664965905,335.98242722155896,193.09932993794,274.569974270819,184.10802711890898 +345.7803528329655,174.22313455335848,336.034505648621,193.11878778836098,274.657318847925,184.10628213646498 +346.4533579520545,174.2449971011245,336.50414146773005,193.13343984469998,274.64279294252503,184.139581484244 +346.14263492241645,174.26104388440552,336.21198210309296,193.143903765412,274.691257156244,184.142124237271 +346.62407030112746,174.27557421346353,336.466300140323,193.162869038996,274.74232302526195,184.159695724678 +346.48605560544445,174.2872364173935,336.29103534670105,193.15519929678402,274.735997949056,184.16577400595202 +346.20040332705247,174.2895973269675,336.372464299615,193.17829785954598,274.767293933513,184.17745871694802 +345.8381694868145,174.3118122504165,336.08553577963903,193.21264055919397,274.780297735932,184.203419961591 +346.67473638129445,174.3153582509845,336.32934048801405,193.23412885149702,274.86960937671495,184.21745594059098 +346.5897669838455,174.30780627918148,336.59885473979705,193.241251234878,274.83620956550294,184.210830205977 +346.53383230147546,174.3214450137395,336.334946601806,193.242082849305,274.92695582485794,184.230305908057 +346.8329788278885,174.3380654985475,336.459021059502,193.25428548206298,274.916166599421,184.242511544313 +346.19736180420347,174.3295065231735,336.57057598062704,193.27228286954,274.90534815184697,184.24979314730098 +345.8273290005425,174.3505779927185,336.541248875635,193.29569554572998,274.947594902585,184.25573300561803 +346.32949969502044,174.33266634507748,336.56981094117396,193.29548158439502,274.959846385947,184.257383380328 +346.60045913285745,174.3587738435545,336.541292479606,193.295974093697,275.00427286813,184.274189424121 +346.5188259974815,174.38124836217452,336.614550048566,193.32894507960697,274.983094828787,184.28712651585 +346.3325361330185,174.3763506621725,336.607629981629,193.335461296059,275.034963295442,184.30250024073302 +346.04627495219245,174.38041545931748,336.589891783819,193.354672553216,275.015811400503,184.300508942308 +345.64967653925345,174.3854514998945,336.599620312889,193.346896819854,275.02569408030797,184.310909038509 +346.52549239860645,174.3982119437145,336.71084937011597,193.36478971203098,275.05147241086695,184.307832102644 +346.31906178859947,174.3907129217465,336.74759770811795,193.37942073578301,275.05641004283405,184.321767739057 +346.77585297171447,174.40564873230352,336.73826300452595,193.36081390880798,275.12326613822097,184.330888958127 +346.70063089928345,174.4124491642225,336.750572758011,193.378568366776,275.17133417732293,184.33885992251203 +346.8672886060935,174.4318227807065,336.662757345257,193.39888395497502,275.120864676486,184.343566480716 +346.03316139324147,174.4414954935595,336.80492258616005,193.425802769094,275.16062731717795,184.365365233226 +346.7183626577055,174.4239507941915,336.854572569987,193.41803457197398,275.177991763667,184.35876024963102 +346.03331400450946,174.44701057645852,336.781438118932,193.405458976374,275.20812387939395,184.361795664746 +346.27531676129445,174.44710338182352,337.03439077988605,193.420230093976,275.20277781781294,184.362820738278 +346.82806092813547,174.44867295027848,336.75983903382496,193.44556523571697,275.218801408084,184.37231519013 +346.60785964813044,174.4580067575755,336.76320211139796,193.436730741468,275.22538878187504,184.37559692617003 +346.30077898402146,174.4599094880715,336.81965638001,193.442362244249,275.21681999493603,184.38589089511498 +346.49254514938946,174.4875149530415,336.893586205111,193.459497211302,275.257035798879,184.39254317590803 +347.0173397630775,174.46089977577748,336.900210628168,193.484358818136,275.24451161959803,184.39620391559401 +346.49285034627445,174.48014842813052,336.983752897297,193.47006701198097,275.291774470359,184.407310669717 +346.60613478161747,174.4925361119175,337.067636612574,193.47500531981098,275.29906696366004,184.41551298283298 +346.70998502140844,174.4967203048485,337.06874433736505,193.49433576046602,275.298606678183,184.41457330093698 +346.6976556122685,174.5057550155655,336.847947089096,193.48962874593798,275.36968244050104,184.432470810861 +346.3831845357445,174.49994650106947,336.858217152626,193.50804796578296,275.29449651019104,184.42083161186298 +346.3139980286065,174.51956649241748,337.05449754599704,193.52092106751599,275.31969574486595,184.44629285496802 +346.37701222801945,174.51260686950752,336.965331078021,193.512327099297,275.35890635457804,184.420450911592 +346.63686495653945,174.51735710558052,337.03922631543605,193.52406927605097,275.37168059672,184.440819087521 +346.8369753280265,174.5187468593855,337.119713754381,193.531983329818,275.350155837441,184.43778196506003 +346.98941830499945,174.51538637580052,337.012588636174,193.520000695926,275.32038650745994,184.442109542528 +346.4068648325125,174.5374428898865,337.214317799314,193.52692395929097,275.38895166413204,184.46231849997702 +346.74602231075147,174.5305685891385,337.131479021323,193.52866677410196,275.35531212684793,184.44565088103002 +346.7531820625385,174.5373351329735,337.29002424345504,193.555473426961,275.39337680020003,184.455685275831 +346.88762644624546,174.5652723547705,337.05678756837506,193.56944508835699,275.39563450209494,184.468262470804 +347.01371464443747,174.55352843693748,337.199395340686,193.560957276791,275.401425873681,184.46489941869402 +347.1821421834505,174.5449519359085,336.98649119965,193.540028348936,275.380400323917,184.47426120610402 +347.0683599568335,174.55741350613948,337.27245892155304,193.554825848541,275.42694807336295,184.474147578342 +346.81898875480044,174.5633339287645,337.07388458419905,193.571233492337,275.36656937176303,184.479606396895 +346.9351685908605,174.55662619013953,337.127888365888,193.551475306454,275.442036852722,184.492003628406 +346.8351766030565,174.5713634752595,337.31970660915795,193.580198856371,275.42330237947294,184.49230302451298 +347.0286873757345,174.5677435812525,337.39806888370197,193.567490785097,275.463947691449,184.46887117515598 +346.9626117935505,174.58500851382348,337.274130754436,193.576143575343,275.501576276057,184.48265343545302 +347.03202302990445,174.58309828462552,337.30552399471696,193.60265661346398,275.42769441642895,184.49309338892 +347.07838668966247,174.5899916748735,337.14645711209005,193.572974640521,275.44980044421595,184.487407312745 +347.26303084602847,174.60368399196352,337.15867542994897,193.62465003198997,275.45360485662604,184.502275209981 +347.0079087504355,174.59870661880552,337.27587482127103,193.612447774084,275.461220922842,184.50288727415398 +347.2521445660595,174.59559223986753,337.109454417243,193.58626640267101,275.499186463461,184.512821324419 +347.15521521244045,174.6123517143335,337.21179202337305,193.59884013166698,275.473812489273,184.51094946147998 +346.8714037390475,174.59935634206948,337.066456479002,193.61868943712,275.50511220384794,184.50610103349902 +346.6823589303715,174.6092696522275,337.30248814203605,193.609036742454,275.47104141473994,184.51578876696 +347.09823272523545,174.62652143017448,337.168055377958,193.630723377001,275.490764503625,184.524896781903 +346.79526836732646,174.6254631358105,337.17975152997496,193.61731640744802,275.49743582213,184.530596134066 +346.6822484554515,174.6240584324575,337.34340369198696,193.61684297982902,275.458245915803,184.514508245029 +346.80538792959845,174.6392748648475,336.98360113777596,193.623213160153,275.504527054543,184.53229964158498 +347.1306771858075,174.6349695782705,337.49297901133104,193.62939015199197,275.508946369476,184.54477070822702 +347.3444649349525,174.6345759365745,337.074090885386,193.63971360213299,275.485008812881,184.53622003001402 +347.28702699722146,174.62591233300748,337.39668350401905,193.632909805196,275.46933510751296,184.543630354603 +347.0921798416635,174.63534667231852,337.157329678687,193.658657450316,275.495723891648,184.546313333998 +346.72174516896547,174.64381555275548,337.23857313531596,193.64103608041398,275.547898558866,184.54266997496302 +346.43631262804547,174.63847268239448,337.31350323633603,193.64291322007801,275.509409046221,184.53778920059102 +347.57951895651547,174.64821947706548,337.45951202850904,193.66128496709797,275.495560295092,184.561526283913 +346.81772346047546,174.64794518805547,337.28845871015506,193.65169119591496,275.49008430572394,184.55239589702603 +346.8666477244475,174.64679407144348,337.33328777483996,193.63399766985498,275.52067292831794,184.54634987332003 +347.1547972506955,174.6612854043875,337.307028499515,193.679715572693,275.53657844853797,184.55712324568202 +347.0659439140185,174.6506054596395,337.45265503075495,193.664371009866,275.48927428818297,184.554125960433 +347.2737503006675,174.6614370891515,337.450539685133,193.64561871687897,275.550088492329,184.57172413308803 +346.98880397117745,174.6561000252745,337.41711367339303,193.643540948493,275.55237187529804,184.563586482495 +346.9964155976905,174.6717217955005,337.338202611955,193.693185553786,275.49984591514897,184.56896572391298 +347.17457389871646,174.66979830255752,337.26612624097095,193.651653967735,275.53013621407297,184.57030349430602 +347.4861066805275,174.6660781076265,337.307826833125,193.685209436943,275.51632627654703,184.570309321063 +347.26718748472945,174.6669358687805,337.21054166773195,193.66393415912398,275.496097233141,184.55928218104998 +346.68160561593646,174.6583194597805,337.254912753981,193.682572843098,275.492699915432,184.56767197474903 +347.09918268910246,174.67967614558552,337.231881833139,193.68064102772098,275.505090671016,184.57785820076901 +347.2720664142615,174.67388658610753,337.18843341689603,193.672518970025,275.50693402731497,184.575560075677 +347.2848210579485,174.6829952887805,337.169060199921,193.685825560922,275.458717688804,184.57954846591701 +347.1805990226675,174.66630033128348,337.127433162049,193.674015574976,275.532396361918,184.576824056759 +347.2356381775785,174.67828311000852,337.230993995139,193.66014269557502,275.48697576215204,184.571570080635 +346.55027042506345,174.6799721219665,337.36126345969603,193.677442388457,275.565849789896,184.58421369450502 +347.3707950736465,174.6855537297315,337.39603875686305,193.69677256887996,275.54138245346996,184.569990217652 +347.0422362058475,174.6969116466895,337.20222921061804,193.66037407978502,275.50690511756795,184.57786082686198 +347.29082216650545,174.69414364670553,337.299915252383,193.69231935359397,275.497191965325,184.58604411583002 +347.18093374275446,174.67922468475751,337.265786897461,193.685780960337,275.506237005088,184.58136825163 +347.25747529855846,174.6952327026135,337.20396625338697,193.68805029234602,275.49598626514796,184.58806618032503 +346.6158624029655,174.71016920177652,337.174341946966,193.696470062856,275.50711561090304,184.584369766733 +346.84122398886245,174.7003941959955,337.30946729524203,193.70020363318298,275.484472516951,184.58297731010498 +346.77454646910945,174.69700713658852,337.13186115893905,193.692388351646,275.51900175421395,184.59963002899798 +346.8448539110005,174.69463115899953,337.29146331459197,193.71377555725599,275.44081708301303,184.58047269313602 +346.5872067136935,174.70031888358852,337.19523482351303,193.68288752909598,275.50229181796794,184.58663074012003 +347.1302470520385,174.69669894877052,337.252862834781,193.697438635656,275.511001500524,184.59885551240603 +347.2478933939475,174.70713121452252,337.446351592686,193.70880757528897,275.46882877535495,184.593448123528 +346.93027495081844,174.70312509681747,337.29045414349605,193.68196728856196,275.48169277111595,184.588040735851 +347.13513889417345,174.6955123118695,337.222963540582,193.694154609608,275.435785264673,184.58182060019902 +347.03040327933746,174.6992441913215,337.26154292907995,193.710702253023,275.448927519157,184.59277979743803 +347.3936347580005,174.69050838291753,337.49598694899805,193.69497297555097,275.479387657599,184.58799934815602 +347.1729429806415,174.70489214195948,337.147660905302,193.693986402637,275.46506567982703,184.597732788835 +346.82614525184147,174.6930552003975,337.143239522215,193.701947633545,275.51334638730305,184.589149759085 +346.4219620126815,174.7182913707755,337.15268621757195,193.69620852262597,275.51478838618505,184.617900393686 +346.85153387426647,174.71999368106248,337.15364720948,193.68323366039397,275.50058991335504,184.580684623205 +347.09561819479745,174.7192743763095,337.323084652862,193.706511293861,275.50260819370396,184.599540979028 +346.8447685823485,174.7050216550375,337.40888087427004,193.698309670791,275.509809869387,184.58970565065903 +346.54781115705845,174.7104765309045,337.029033020488,193.70050526068997,275.50129935854795,184.604719617125 +347.01042612407247,174.7058927053365,337.23869957500506,193.68939582435502,275.528549375996,184.592907845951 +346.8599343891965,174.71268439113948,337.11097282626895,193.70550991758898,275.457922327839,184.59877236471 +346.90196019216046,174.71854611970252,337.12884892540706,193.68877494174,275.51798045928,184.59391813512303 +346.7570683806845,174.7363037555835,337.09612795992496,193.702346903462,275.53275928406197,184.61192193837303 +346.81664299807846,174.7250651553935,337.115914904433,193.700422557161,275.51209032452005,184.599043691075 +347.29807753362047,174.70706572838748,337.10782282310197,193.70268450296896,275.49028155820395,184.57939959489403 +346.95492609030146,174.70670608135748,337.20068142620096,193.683220071547,275.467509341387,184.589759976403 +346.92389514579247,174.7137056666615,337.18686986664,193.686029141095,275.44260818778093,184.58371395228602 +347.21006939156047,174.7205519617935,337.32742939387106,193.69730522152798,275.44904026886695,184.589633112959 +347.8046948242675,174.7146828331435,337.310438747258,193.68188111796002,275.383763848512,184.586090141436 +346.76140364996246,174.71357736742448,337.18630108008404,193.702209604803,275.447466236899,184.585449957221 +347.01471294494445,174.7261984230355,337.22603370658,193.68501453111998,275.358271181771,184.61089809424402 +347.63261215048146,174.73852030402452,337.261689098755,193.700370754856,275.45066144132204,184.598059674144 +347.04988334250345,174.72607752639948,337.04196404766003,193.710055754162,275.43267103480696,184.61101015824602 +346.6173414229345,174.7315059118315,337.232230246257,193.672850665456,275.432514754317,184.59756550623501 +346.63790241285045,174.7226698149645,337.06211387949395,193.69942403262098,275.443852300412,184.607599927887 +346.8416880356275,174.7260288270815,337.072242380523,193.68717469148697,275.474298113657,184.601406374485 +346.6454694196785,174.73242264531848,337.062087028954,193.691241567431,275.45220523169303,184.60337696515 +346.8860293501415,174.7273184700005,336.98540055785395,193.68823193468097,275.455168237247,184.59896817103902 +346.8103481337035,174.7243234640535,336.955552091924,193.69874859849597,275.330852907623,184.596204002221 +347.0784651944655,174.7328264492345,337.02434438693297,193.683957105461,275.429722204276,184.59329381986402 +347.06563929684046,174.7194521749255,337.145324650528,193.696670903072,275.415355574537,184.582240165619 +346.9961309329025,174.73895936599348,337.004351000356,193.678676606417,275.457203732224,184.60665580804 +346.8686569300195,174.7401768154815,337.04699078874,193.673604051454,275.41195668725004,184.603679255658 +347.3414601844595,174.7322781046925,337.15225373447004,193.696688557477,275.38955217756404,184.603698417754 +347.0677679518445,174.73960344530548,336.980662843295,193.686310477672,275.39622379958996,184.59564786477802 +346.9942141914295,174.73463192146153,337.153392573505,193.703470112778,275.404751800502,184.597431123361 +346.6604026304645,174.7456641690115,337.06785328432295,193.69120901416898,275.39441754944494,184.596585954227 +347.23574547860545,174.74825824911647,336.972226236987,193.697299007085,275.36840180326203,184.618991191229 +347.44631312145947,174.7379909574965,336.74476072071195,193.699375204031,275.311982789461,184.60871633511698 +347.16630326804045,174.7354617163095,336.90445078497305,193.678905111596,275.338741686424,184.609447928113 +346.9633347384865,174.73177546114852,336.87706177489304,193.67824597397697,275.37094345306105,184.604826752904 +346.94159348518446,174.75335207980947,336.937635786855,193.691910881811,275.31378620764394,184.60497867111098 +347.48024784518446,174.7426396659535,336.925594707811,193.668845523578,275.351838614725,184.59961852226002 +346.79882753090146,174.7439823982125,336.95475320566004,193.707233200835,275.31599820263295,184.61191559177303 +347.1678509828285,174.73824003059548,337.09106964360205,193.67213235821401,275.321738207124,184.60407154263902 +347.6416895955145,174.73890476552748,336.97531125651506,193.692600980412,275.36519351612503,184.601474068299 +347.36631745432646,174.7323502775265,336.92064814544904,193.67462734774,275.308082021691,184.598643545031 +347.12337522547244,174.7368073912245,336.9735259998,193.668369234581,275.324195341851,184.59494719891802 +347.1063571231315,174.74584248482648,336.852846647403,193.68998951082597,275.33026504973,184.600959300218 +347.20728036730446,174.7374382332015,336.989069747921,193.662942786271,275.282678975717,184.56994301838603 +347.30906360078944,174.74087834548249,337.01198588551995,193.672907997119,275.286024967392,184.590398306598 +347.4554420289075,174.74145612848548,337.0863448215,193.658808069138,275.25714091146097,184.57932402049 +347.5906195699645,174.7336178620825,337.05565019467497,193.660984553143,275.26559915657504,184.577073174158 +347.2213030625165,174.75066368494748,336.76269311734495,193.649847048507,275.29169194834594,184.59110190234702 +346.88392027778247,174.7421194144805,336.878715849032,193.65970463925999,275.26729942504494,184.581619144142 +347.2446741116075,174.75500733143548,336.82014663669395,193.657687415915,275.321058742883,184.59428349260702 +346.9682255284455,174.76225901647751,336.987638768152,193.676591546731,275.30002538208,184.596879505098 +347.45811191453345,174.75122675829948,337.18377479604203,193.674640686519,275.30786848487594,184.598889937551 +346.95007041281445,174.7612597233005,336.81654499626404,193.66953423246798,275.35839716962903,184.598676077598 +346.98477629681145,174.75855803882752,336.729221974486,193.68477106283,275.335157869363,184.58595126295802 +346.5830638755655,174.7563147591875,336.820060607678,193.675537273288,275.29356428523795,184.59838848030398 +347.1895036519655,174.7708328571755,336.866072080108,193.655580308801,275.32784387102095,184.59613763674298 +346.87205939627347,174.7742317450825,337.01604904045905,193.65758281935098,275.357876853428,184.60583136351198 +346.52210514999945,174.7749628321465,336.9166303692,193.66693463301,275.32053560912505,184.592813039524 +346.9359579694475,174.76959925897052,336.931117245109,193.66389849262902,275.336383658429,184.60842003139402 +347.18089304499847,174.7748950688965,336.87040768293605,193.666167888391,275.33088884220103,184.60882567287302 +346.9162393856915,174.7974770565125,336.74106745866095,193.691089767216,275.355117357308,184.619305569956 +346.78404754534046,174.78911991144548,336.885366063275,193.67317659182402,275.367600655321,184.609077923247 +347.2114799399695,174.7900234738745,336.961822560669,193.676410391731,275.36123147634294,184.608583845942 +347.2102290604125,174.8080481120325,336.83882416798303,193.67836716865799,275.367890287009,184.60657933190498 +347.10981476834246,174.80114722873452,337.00034607923703,193.71456511509297,275.32108768671003,184.604567470375 +347.13002870769844,174.79521174876248,336.841250258752,193.69185223772,275.35744411372593,184.61657250905103 +347.2483450795225,174.82031569020052,336.79259378241295,193.69669772138099,275.364872759047,184.63097443397498 +346.4456915939345,174.81848510600452,336.726173781252,193.69393439987198,275.36830182201595,184.62797726897702 +346.8970467065405,174.8147251425495,336.73952082722997,193.695764377427,275.357396891241,184.626778121494 +346.6164298915705,174.8197483095625,337.009460143704,193.70451748095996,275.362508928054,184.62271599009102 +347.50849127248745,174.82891620005051,336.93305946548105,193.72091185018502,275.31933029702896,184.641212540651 +347.98170904351247,174.8259418165835,336.78058778732395,193.68764837845697,275.40182788234097,184.62961314607702 +347.29959005598647,174.83789102514453,336.920023471843,193.70309756745797,275.34572648796495,184.63970662107698 +346.85852797082447,174.8455893802335,336.68010055145703,193.72501122258598,275.37382539063503,184.65230460285102 +347.76212202106046,174.8442437647505,336.684163913862,193.72529590133098,275.35937968835003,184.63767415877703 +347.2044597797185,174.8318406531925,336.585319074479,193.71312037407097,275.378346872733,184.65416026993103 +347.6133972127405,174.8686890331315,336.713145956875,193.71527031319698,275.35257754903193,184.652582028596 +346.59451060467046,174.84486735069652,336.747421787485,193.71310571027198,275.36043918639893,184.65041680021403 +347.1131750366115,174.8530904897765,336.680816351987,193.735078386584,275.29708870662694,184.664472140628 +346.68555978631247,174.8592250267625,336.761615621689,193.73795381733999,275.339069328703,184.64427644649498 +346.3920260558665,174.86779453547052,336.793012008049,193.745828064735,275.314108162102,184.657280088893 +346.76198100397045,174.86741432430648,336.693639988422,193.71865470896898,275.368325269224,184.662259756555 +346.9316616138225,174.8792309316285,336.68666937024295,193.72977745214098,275.337235943828,184.66872472173202 +347.02616297051947,174.88694854448948,336.78481660906004,193.74821555265697,275.34247707853297,184.67458348281502 +346.8279930207375,174.8808199314435,336.55260926552796,193.730901168422,275.347841466299,184.68476397596498 +347.64284814301345,174.89288271336648,336.756604246546,193.73248490081,275.309290155598,184.676327010636 +346.9712853933295,174.89842478355752,336.561215969944,193.760861581798,275.284781711689,184.685135760177 +346.65631558781746,174.8971999761045,336.88940186638,193.77967268432798,275.353580085054,184.68437617455703 +346.71407934144247,174.9064283787065,336.78719063992105,193.74673527702498,275.342623488934,184.706428956068 +347.1975472721755,174.89915455992752,336.70574688778595,193.753670280707,275.22727861022304,184.702412626255 +346.8788469584215,174.9173121570555,336.656458315416,193.76321522409097,275.28503137980397,184.69867650359498 +346.8840219191115,174.90687220229353,336.67968781581,193.739257892752,275.298207452557,184.70640699709298 +347.0268022878035,174.9225477096245,336.67730411703803,193.760764579024,275.29125609252696,184.703682747402 +346.84106310192846,174.92565481502152,336.526634460633,193.76107720844698,275.288388944336,184.707258172234 +347.16563477771047,174.93015191686152,336.788276278592,193.77023583407998,275.334892656698,184.706631377613 +347.28437146227844,174.95336671103252,336.64816680382205,193.75152359652697,275.28816112508594,184.718909335736 +347.61164285768245,174.9274090383525,336.69935245276895,193.790789961126,275.262008191311,184.707848396472 +347.6484680760745,174.9471836330905,336.65696395764496,193.791468321431,275.312046128665,184.709226108324 +347.1507654883875,174.9579626815235,336.60261653650605,193.80924126366398,275.255483945832,184.72234331882703 +346.64735538649046,174.9509688310655,336.57852582723206,193.786634779812,275.25842146202694,184.729327518959 +346.8738901626885,174.96733712948452,336.71528527707596,193.791593763494,275.32575830375094,184.74500828721102 +347.4315396343385,174.95500018733952,336.60624673455004,193.782280476354,275.296771547935,184.742217653784 +347.3122117990455,174.9521246188255,336.750000129019,193.812254069066,275.25682749781697,184.737475638653 +347.36045393094145,174.9768164175385,336.47839627618805,193.792456646809,275.28039015944296,184.73398585790602 +346.57817750875245,174.9743210259935,336.715282725782,193.78530060061297,275.270488356913,184.75549288837203 +347.2473772780175,174.9762697014085,336.521134999732,193.81730464296896,275.25516901025696,184.749985330862 +346.5193321739695,174.9900497698265,336.539682112455,193.811985908729,275.24320270157796,184.753520924736 +347.5737580539015,174.99362865407852,336.380316998525,193.812537499715,275.250307768467,184.758034537093 +347.56571205882847,174.9987448545735,336.73287112598996,193.79808537653997,275.232859352884,184.75895943918698 +347.72218890623844,174.99472541602552,336.61975549529996,193.81410067011,275.21467964965996,184.765890535275 +347.23532812715445,175.0135421089945,336.550581139054,193.84597188879496,275.238191086804,184.778195072781 +347.42773125325147,175.0111130591385,336.46462986878805,193.83608648880397,275.256214458416,184.783221929026 +346.7071542234535,175.02217087933047,336.442436934812,193.828743299549,275.216231058724,184.798715483923 +346.95010411492046,175.0267815186205,336.67921637353595,193.82636637384002,275.2859502671,184.789579380615 +347.37622665028647,175.0205128239685,336.64801561149704,193.837801681837,275.24293235976904,184.793793556421 +347.3144825710735,175.02878330395652,336.646123019057,193.84770633968202,275.23081692663095,184.789718166598 +347.00986024294644,175.04461235789148,336.599286882524,193.85888209783099,275.183015429854,184.81115152387002 +346.37986055020144,175.0451444867295,336.636590783679,193.83238872453597,275.18398603172795,184.81937469369802 +347.36928867037847,175.04099102679453,336.55969368461797,193.845008198688,275.14732765567294,184.804964102005 +346.53857838741646,175.05599601886053,336.65277923191695,193.830663630105,275.18298835226403,184.80529740149 +346.6143645100795,175.0684114323355,336.530868974677,193.85310211700897,275.161539608668,184.81072995776998 +347.01600226671746,175.0621957961435,336.41720707280797,193.89021827822802,275.23364162820894,184.82362013499 +347.39564428814845,175.05962674797348,336.67298029061396,193.863884290974,275.18380154968304,184.8436552032 +347.0488504326545,175.07036614750052,336.60521513246704,193.86950236107498,275.16117567549895,184.83832159951402 +347.1286990087055,175.08958845142251,336.657070227845,193.867764006066,275.191877410849,184.826328489802 +347.33830194453145,175.08133716733948,336.534771876838,193.853452010846,275.19812239327996,184.840211281233 +347.81548554815646,175.07991928849452,336.702668318542,193.89629972677596,275.15166648797594,184.84158902389203 +347.1825191889335,175.0786413994465,336.554936510278,193.88663408066498,275.193008741727,184.84100939780802 +347.0691894822535,175.0834246146175,336.584492392999,193.865558417702,275.11339618850695,184.843931534205 +346.76772308292647,175.10232844116553,336.44627017524897,193.891458990505,275.159871543999,184.842340022097 +346.79742076377545,175.1109380790325,336.42150976696496,193.900770889059,275.18115707703294,184.87006577497903 +347.2425975040775,175.1096203718405,336.736235996083,193.892929253322,275.17579813533996,184.86804800391099 +347.1352227167915,175.10966618891848,336.49588987366803,193.90066340534798,275.152284861501,184.857839622541 +347.32919319738545,175.1156211476715,336.530805055716,193.90452384171698,275.17415965157204,184.875218183813 +347.04582648503344,175.1217088304665,336.529944221749,193.902692568632,275.171926140246,184.872920247043 +346.24462518102746,175.1367996057735,336.501132068346,193.927341237983,275.16463179301,184.885923972687 +347.18213828166347,175.11690378173353,336.40871285998696,193.89508992313802,275.14935763736,184.87603560305303 +347.5962773099745,175.1472989569835,336.491561469937,193.94227115295598,275.19681583859995,184.904354274914 +347.44542873718746,175.1464795799355,336.452197467784,193.911164230449,275.182201454356,184.89537755736802 +346.7630916537245,175.1547900233595,336.395929853098,193.92320548254497,275.18439500508,184.90182930457303 +347.12121315184146,175.15095032998948,336.404518440301,193.929615404267,275.18156647858996,184.913135275297 +346.8048556335365,175.16107683006948,336.395482645288,193.947666981973,275.13841065488793,184.909984831751 +346.86486369191647,175.1586742981575,336.444027154541,193.922897604343,275.134035163798,184.90944505805203 +346.8197165161555,175.1607365139855,336.39047365351405,193.962470120697,275.18814007163894,184.90754682509203 +346.68678128568547,175.1630183497935,336.53627238205695,193.959860269265,275.119912194384,184.925211579537 +347.40289396145647,175.19667419746952,336.544637743076,193.942972354757,275.129089230398,184.928826877608 +347.2645775281165,175.18238089875348,336.429931644519,193.954767324008,275.12130299510704,184.92547721442202 +346.98661782143745,175.18293233683448,336.472830289919,193.95718279216197,275.134524520778,184.93768157175003 +347.22450004960444,175.17738275608548,336.41511048963196,193.93415776696202,275.082009981791,184.94587819794202 +347.4212102199955,175.1894593271985,336.36891592653797,193.95602392323298,275.13498341634295,184.95003929194303 +346.89855301243244,175.20218875516548,336.39426238044905,193.973883562065,275.085297520821,184.934345191781 +347.4346725944375,175.1983755893425,336.64215566198095,193.964710501438,275.061880843861,184.94474553145 +347.01691929515044,175.2161610740285,336.49617381556504,194.01465338024497,275.053356125254,184.942267689642 +347.20774273220945,175.2064857712545,336.39993801813205,193.975386421218,275.11371504213696,184.955657847025 +346.35180739924544,175.2147830142025,336.49976031290396,193.97203781152098,275.06266251152397,184.95207513612598 +347.4887947481475,175.22966763646548,336.71404046384305,193.99415015813702,275.05380798839496,184.96347409474902 +347.0269992836315,175.21363060133552,336.44714330134605,193.959236077294,275.07264139327594,184.949523634838 +347.2190916560635,175.2183210290965,336.363770539813,193.983032406321,275.05794884806596,184.966568947167 +347.11165966354145,175.2401997057595,336.50759536887495,194.00771473286397,275.072660166167,184.962360748175 +347.24486852661346,175.2519566014795,336.780871801555,193.98499520624,275.12600234000695,184.99160440936203 +347.18891064457347,175.24576863114947,336.64739541607196,194.00746122994497,275.103674069064,184.97515801717998 +347.0030309935155,175.2519831485535,336.641081070763,193.992942998815,275.06577282258104,184.98673690385903 +347.48068268417546,175.27081377498848,336.504127868173,194.003859131691,275.068911325975,185.0186310785 +347.2368023434275,175.26706695128252,336.32637339418295,194.01059494674598,275.074781047394,184.992741886844 +347.3607880755115,175.26501675801848,336.42721621234705,193.99922493370798,275.030426210462,184.99465217986602 +346.7730354707215,175.2555211991425,336.52650302537097,194.00184079813397,275.07079982461494,184.988645985243 +346.7875967659735,175.2697735937715,336.42864898748905,193.980219764583,275.108220953697,185.00617069704998 +347.4656549508015,175.2754028801475,336.44630442293396,194.016138112127,275.054120173215,185.007841902623 +347.13282017619747,175.2825284932715,336.52114293960597,194.020703499996,275.14780930506697,185.01543840525903 +346.83315736812744,175.29352764579852,336.191365960951,194.01073860367,275.10663412700296,185.02341527242703 +347.0079339012295,175.2747959156955,336.27021653735096,194.038362657598,275.077768144067,185.02005233661401 +347.3095756572745,175.29312099139548,336.374514154224,194.03246461090697,275.090834994773,185.01671596741 +347.80012173468344,175.3189120437885,336.34033627374595,194.06245821292498,275.091002838798,185.047418337019 +347.4299864742795,175.31063399633052,336.212429810559,194.020162719933,275.10628320725993,185.04053306935998 +347.03983679015045,175.3194767971845,336.469105063524,194.06605184982698,275.073656664507,185.045886007315 +347.4198726321115,175.31010064449748,336.404153163557,194.05946816990797,275.06634914830704,185.044194280701 +347.66360808996546,175.31161025763151,336.499483024245,194.05142628105398,275.10745927821995,185.059921019968 +347.3438300014845,175.32721427187948,336.29520992540995,194.038845553798,275.05490544145596,185.05362863988 +346.98290445362045,175.30482251336252,336.591103386962,194.038578788013,275.07390082845995,185.040777029587 +348.1245612229375,175.32543679832952,336.440469421021,194.09251576343797,275.03482776103203,185.047188960068 +346.3721416367725,175.34707564609448,336.274978409601,194.04287136967798,275.03526087876594,185.05718964257 +347.44244342400145,175.3473809659215,336.433606017191,194.06041704048397,275.02491095228095,185.07753756265703 +347.14767550444145,175.3369139027535,336.374522329103,194.066487697691,275.031719762439,185.0614703177 +347.3487279699075,175.3511869606765,336.399562556923,194.090084648164,275.080487718227,185.07878252031702 +347.04591311732946,175.3649399797115,336.255287621217,194.096387094396,275.04312255089997,185.078561581237 +346.25595090190944,175.3325939033195,336.65426564079996,194.04632383160697,275.160487440519,185.085812734919 +347.16867275626447,175.37744283448149,336.43741446971296,194.09771132560996,275.065250672013,185.10179305386498 +346.89468926409245,175.4082312346565,336.32640130296795,194.03951322917897,275.02769160024104,185.09414827523602 +347.65983292599145,175.36403377605347,336.492367908559,194.121573806228,275.03884319424196,185.09000648977099 +347.2522579830655,175.36539738942452,336.48319250373197,194.101038214681,275.03948993548704,185.102790513883 +346.7456430162605,175.3816000567835,336.62938383874496,194.120041998339,275.01492728435994,185.11038099298702 +347.90451857102045,175.38401474359648,336.696810180518,194.11337146219302,274.968118266184,185.10976760684798 +347.4032643450395,175.37615654605048,336.60276410545396,194.111567999091,274.966138116832,185.10703134975398 +346.90593722376445,175.39201291917948,336.501764077697,194.13255508271197,274.986545041421,185.116372746065 +347.48495016324546,175.40009681758153,336.334891919647,194.09987102552697,274.9737934354,185.11583906863802 +347.0282724399245,175.40500095449448,336.28294345808297,194.15113877174798,274.960893827153,185.120979480007 +347.5014172135845,175.3967759298685,336.44076200222196,194.109595651186,274.91619424699104,185.127198224327 +347.24231979085346,175.42466948772147,336.46390239325797,194.17011476997897,274.98093110663103,185.14299142475198 +347.0788527290605,175.3848511024355,336.743324301881,194.108150745761,274.939935089114,185.12645200086 +347.0337065776285,175.41718903571348,336.38404028870195,194.09437028539202,274.884625268965,185.11849333130903 +347.0067412602345,175.42889428529452,336.42669203644004,194.12005789009498,274.97507293651597,185.115524016785 +347.08882395128245,175.41923808799248,336.44955864465305,194.143015005875,274.945292291941,185.139886980148 +347.51007895797346,175.4179203522345,336.236885410759,194.14216278977898,274.973007188313,185.132042945467 +347.1622406309835,175.4357135980115,336.497446397615,194.14155682866198,274.91827552570703,185.12421219613202 +347.45194785368045,175.4225047394175,336.596075611502,194.15630061657902,274.93397129755704,185.15527443843303 +347.30842603223846,175.4570462784995,336.49735632851105,194.09393583117998,274.918637107162,185.13064350279603 +347.43601526849545,175.44687835387953,336.45684620461805,194.103800480112,274.91078568158,185.145172390374 +347.4277458127805,175.4585161313695,336.301180878321,194.15155310948796,274.93365916917503,185.15844910605801 +347.3988875132525,175.46265522323353,336.37739877665206,194.1703708929,274.96509616960896,185.15932817149002 +346.94810303337846,175.47464541232648,336.251729167764,194.116666107171,274.930545191807,185.16899563352501 +347.81115635778644,175.4941487500625,336.176961946391,194.135942692519,274.929806916223,185.154020004605 +348.00060089709945,175.4583811183935,336.56330440439,194.095970031266,274.873041327671,185.18464880452103 +346.87085276354645,175.48631586317248,336.352999879816,194.19543683860996,274.938498772427,185.172982952668 +348.11288654370446,175.4900289967165,336.502846034124,194.17422295410302,274.99013600573403,185.19371123677598 +346.6306610752205,175.5123006355405,335.95303634341303,194.23098155737898,275.010892508878,185.169620034993 +347.14636057806746,175.48995429947848,336.40777518988796,194.15178271948497,274.94067858169603,185.206687367783 +347.2410821106595,175.49837247775952,336.224940115669,194.18070526003999,274.94796061023294,185.186911773078 +346.9325878032085,175.5036484263415,336.446532910786,194.150337833413,274.83755598349694,185.19289028156203 +347.26504000957544,175.4851624069625,336.393151644705,194.241110596385,274.94689141178094,185.17858723830602 +348.11086799022047,175.5163373936025,336.484996894161,194.15045016778197,274.884333507268,185.186011112548 +347.24906861516945,175.5518845381755,336.30494815699103,194.223517004627,275.0491668807,185.22973786173702 +347.02639276748647,175.4996940858125,336.40572788164195,194.15803096300198,274.983452974501,185.231581791697 +347.72872348449647,175.5010975789565,336.589709783967,194.22629829367497,274.882875777711,185.204087818292 +347.38790052675546,175.54505569067152,336.11999850777295,194.278190804218,275.04569632246194,185.24993860923303 +348.2815192295745,175.51198363598752,336.32071030075895,194.217850952273,274.981814507614,185.23036228927702 +346.9985319523565,175.54633251066753,336.259936076386,194.099379433661,275.00299133164197,185.22581364155002 +347.4285806819105,175.5248319538495,336.30023053858895,194.057603173428,274.98343792231003,185.26372740502 +347.88276320074544,175.5471772692145,336.45788331034396,194.231854789865,274.91795582460804,185.240642025973 +346.50828933048047,175.6206275909325,336.79981789402405,194.094019905459,275.197800411074,185.17733786275903 +347.75880871168647,175.5329425927805,336.61730155956104,194.142831213007,275.019869826191,185.228495687578 +347.4072238357195,175.5551938991925,336.32796474076304,194.14365576913798,274.866172915712,185.227223053241 +347.2692778282085,175.51729725913953,336.152294649322,194.113668431105,274.94530031286695,185.260848890673 +347.04482215793945,175.5601368827135,336.271816111508,194.163277654004,274.92240595744204,185.26572860193403 +347.69828701801845,175.53829107125648,336.14429733356803,194.270026328957,275.061996141623,185.26461038759203 +347.8194596529545,175.54449868266948,336.643306825683,194.26761583794,274.94162893085604,185.279910986113 +347.1455235779655,175.57478930965152,336.39333605936304,194.29721652677898,274.99963484703596,185.24380129635898 +347.6078742899095,175.5623054966435,336.53726178141596,194.246288648796,274.95577755425404,185.272326578726 +347.4864013213375,175.60097354795352,336.357749858896,194.27984273412,274.96484493257003,185.27932422827 +347.88674593487247,175.57229269107552,336.47880909964294,194.25581287609197,274.92041073423695,185.283951504754 +347.5729868200025,175.57739000346749,336.673906892565,194.24996200437397,274.97905800060494,185.27134015162 +347.4169181709205,175.59907551590652,336.191127470027,194.229019967149,274.946914699427,185.28767925847 +347.88990916675544,175.5993482546525,336.29865742424397,194.26843214727398,274.940157317087,185.282125882875 +347.49849616505946,175.5879686388135,336.52147072022706,194.28500581962197,274.890576791865,185.26491275773702 +348.2879868506445,175.61561780951848,336.228376580635,194.336426029486,274.99494608722,185.285587905231 +347.33859734178844,175.59471567249352,336.367145384305,194.332524766865,274.97212375572303,185.28448190682303 +347.0801423612345,175.61653508626648,336.57023025868705,194.192201972585,274.893669856427,185.334747427288 +347.1323814381765,175.5673719781155,336.39849924225496,194.207557761688,274.980187565449,185.31351927700803 +347.07272742791145,175.6104325722755,336.37639622107497,194.26414354964498,274.92103558417205,185.32537833134 +347.21571278628846,175.63285062572947,336.40455166796596,194.37463102707102,275.02031558943895,185.31867910009402 +348.31850241702045,175.6334757802265,336.596262257366,194.256674102849,274.94276935426694,185.33538520516402 +347.6139620430915,175.61337243376352,336.41444602942204,194.27593720113902,274.93816704805704,185.321794609812 +347.18384021922446,175.6524799925125,336.25452954669504,194.383549238113,275.036689297984,185.326202133062 +347.65707114216747,175.64203193318752,336.314773630026,194.32557233008197,274.92549277856904,185.310620374549 +348.2442213673715,175.6393698632445,336.505347067525,194.378356444575,274.99675424820794,185.303062547919 +347.4647018228525,175.6330742707645,336.42082216047004,194.31614618641697,274.94441765979104,185.33078851473198 +348.5580691645425,175.64908443960252,336.40426208212796,194.383647291496,275.021380609418,185.30322811944103 +346.66985218950646,175.6302589748875,336.390919893023,194.34524708291298,274.950740822503,185.33146721747403 +347.80756603252246,175.64388697107648,336.43429727924797,194.305062673426,274.927297113519,185.32506136191802 +348.1220234462095,175.6441923936855,336.46291114724795,194.30280549881996,274.93824150103,185.344011100962 +347.04687394126046,175.6754681321815,336.56644698979505,194.313355617693,274.91429292990597,185.34827246746 +346.98139256554447,175.66913267868148,336.18439185499096,194.36339728361298,275.022984184925,185.34869154672003 +347.1078035939525,175.6730982024655,336.312183544468,194.312149880525,274.81208142987,185.36734180137603 +346.9429594156185,175.67586651490348,336.038741699596,194.30583309249698,274.900861432096,185.356361801214 +347.93476956474046,175.6717600109535,336.334318133857,194.29007686462398,274.904116468834,185.363672256828 +347.3446639547445,175.6911770265515,336.46285146713603,194.268962263273,274.847337447574,185.39545313417 +346.52135129145046,175.6612649495715,336.35928130213995,194.29052849994798,274.849278988351,185.35503503553298 +347.7555988704375,175.70054640764653,336.342479444541,194.37198855100598,274.98421935179795,185.38478591171798 +347.48189862542745,175.70923648803353,336.46653981474196,194.270718749534,274.910891827609,185.36691351184203 +346.9639058860675,175.7233304347725,336.261933850492,194.33257570097697,274.90534455902593,185.361905969889 +346.82083538153245,175.6859253988555,336.297927560492,194.490854686261,274.777436000321,185.43005006105102 +347.5453622434455,175.6992674667195,336.323191184551,194.40239312734798,274.94537047083804,185.40121809803003 +347.76739931731345,175.7612995352515,336.48516833695703,194.38709583328802,274.96855369861294,185.402462071892 +348.0232966636175,175.66045795985252,335.879021103224,194.46351674635497,274.85619659280803,185.394778518446 +346.71854879112846,175.69035573957348,336.14829075014404,194.30378540547702,274.930359350805,185.39416523189203 +347.0500466057635,175.7269885261145,336.53705709023495,194.38236287548096,274.98116811292095,185.41101139128398 +348.2299308225175,175.7164607138365,336.09991460736705,194.288428712631,274.91225506612,185.44149414443302 +347.1881832378665,175.7662427265605,336.70041059751395,194.57352208791497,275.00938041603,185.33283179119803 +348.82619469014446,175.6642222748465,335.70152424413595,194.60403341226402,274.90561982111103,185.34237975875203 +347.7949264027745,175.7417996446905,336.330687445413,194.46823336617,275.01709442248693,185.409285000684 +347.70433146921346,175.6950517014875,336.52654874425104,194.499517442551,274.960072556363,185.39047426214103 +346.91804180568346,175.7828712104835,336.42375741845706,194.289392304567,274.91341859848194,185.463665770504 +347.64037738409945,175.7704198011665,336.781564689834,194.424640716974,275.05082050405804,185.45540165418203 +347.0282405464745,175.8353750068755,336.725568653722,194.479128719419,274.999825372582,185.377768878928 +346.89920411657545,175.72037115327748,336.637760074413,194.672310399227,274.85330621152593,185.389940717888 +347.9564853668775,175.74937737221347,336.465948165536,194.43015126929902,275.00792789593504,185.45835059955698 +346.49093668363446,175.7774459137305,336.910042146651,194.142550877328,275.03998492690596,185.53561031804202 +346.39578546599245,175.85127834546648,335.94867090914,194.600103724497,274.81593783056803,185.380630949676 +347.7432471248085,175.76172765434848,336.14325928215396,194.18041224776,274.770517297903,185.53922569501702 +346.8314157994475,175.78406647677252,336.228654314799,194.55244489967902,274.82305725111996,185.495624593807 +349.73240404427247,175.8814363013425,336.21127200816704,194.662650633532,275.28699854919796,185.514515072434 +348.85127763973446,175.6973777932045,336.396089231348,194.55868799713397,275.183424312688,185.375555983293 +347.96842048668844,175.78861127811552,336.042772826106,194.61406735448998,274.91447090085194,185.349620811583 +346.1107971754475,175.7672296548285,336.12332671124705,194.40444300483,274.912703312638,185.44218832615803 +348.08834254082046,175.78816488974252,336.91852046845304,194.38321621654399,274.79691264881103,185.512776413062 +348.4127519392285,175.82099801347448,336.204695109334,194.27394579161898,275.112471206255,185.429802874428 +346.4084956187395,175.8060713717615,336.141116254517,194.30351276610702,275.10746785891195,185.41696461026402 +347.7744617293205,175.8597337317555,336.722353987307,194.423585339848,274.951026149625,185.472290881741 +347.0584118861375,175.7401377925105,336.60851839846805,194.21682670862998,275.25309792571295,185.47544015800503 +347.6810271689085,175.8226008446415,336.07331197751796,194.28789654920797,274.989666309056,185.514373083792 +346.9809794066315,175.78748461719948,336.07648511711295,194.245315807574,275.13175041411796,185.430760682411 +348.1857283895875,175.7965875138325,336.81709827986697,194.75064125909,275.02937992007094,185.424720786862 +345.4032513825365,175.8016379889885,336.055692485902,194.311891626433,275.139172969191,185.41089716198803 +348.80084659239645,175.81012898763947,336.207891738124,194.308037396413,275.189110189453,185.437804418347 +347.6007265817425,175.8576294325485,336.640061623062,194.51117318031197,274.87286180811896,185.510503258475 +346.98864139620446,175.89609256989849,336.65481061722005,194.54079268140197,274.861566407759,185.56926503897898 +348.6012012911535,175.91418004708652,336.22411401776696,194.46569753816397,275.09300722031594,185.47852817594202 +347.5334342355085,175.90063743721453,336.593824177923,194.65529816165997,274.797796161297,185.579871975493 +346.8555514540645,175.74239140134551,336.94159254024805,194.497247323436,274.907120454439,185.47606379698698 +348.95745428083944,175.95721490574653,335.83801254163905,194.689290445243,275.349140269902,185.645805215336 +345.70289687741246,175.9631103240235,336.119091560278,194.686567471192,274.78674588762794,185.433101587578 +348.3500865191785,175.9191295385375,336.612867001802,194.514912009495,274.92497743281297,185.545938484486 +346.69797187880147,175.90390340969248,336.31106106644495,194.221283027014,275.17339427657896,185.47267337941003 +347.36598122150144,175.9717077444705,336.009569320663,194.665813307811,275.318160180714,185.568717273444 +345.85304093892745,175.9330900793595,336.63715992341804,194.45688884891,275.108453687894,185.448741672444 +347.6307933705615,175.95164346108652,335.817957552802,194.16163468143498,274.652117872825,185.48664935853503 +347.3353673674525,175.8475449690875,336.43037555107105,194.79951329885802,275.23637115588997,185.49388725155 +348.0093585043555,175.7756484144595,336.892489361579,194.61903967413298,274.82642304592,185.523091335714 +345.80028183406245,175.8310339307095,336.25734598957604,194.376473745466,275.15802198885694,185.492980672616 +348.32186362457145,175.87384969741652,336.34807274150296,194.381093284185,275.15277331193704,185.486648406097 +347.0184173870505,175.95765747316352,335.90668288810696,194.79712865018,275.354780167463,185.52902300191602 +348.70860847386444,175.95915504674753,335.40115299977595,194.15237407219502,274.770664800198,185.484843323914 +348.3483612966295,175.8097247996805,335.721312302249,194.319514626817,274.825133431056,185.47678571860303 +344.9840513576835,175.81857537489248,336.305406800043,194.28596675998597,274.58837919956295,185.416658386777 +349.12433558949846,175.8234195276055,336.96698931289404,194.22977348783797,275.095345329349,185.55551021635102 +348.38904015525947,176.0119389137625,337.140555053668,194.622418856767,274.97492215771194,185.63833663118203 +346.19336078246647,175.73406838148048,336.81834079895896,194.13410717629898,274.68448079867494,185.59195221019803 +347.05991100929145,175.9848605365715,335.22212345470496,194.73977218628102,275.414981981128,185.68069178389902 +346.0769825905635,175.8717179300445,336.59646334548404,194.519906804742,275.085008720951,185.49896456167698 +346.9481487328115,175.83127112566848,336.480356870593,194.64462308183602,274.72805767014904,185.580612415958 +347.7947165249815,175.90601529031449,336.26045272792305,194.87313821135098,275.373189392491,185.61997776371902 +347.16900846580546,175.89647206126352,335.658962234574,194.222702714261,274.621786282098,185.384601710421 +345.75177071951146,175.7117481914895,337.135011142851,194.269969546462,275.223675915011,185.46194827743102 +345.24315782506847,175.7393171344155,337.177012369645,194.42171918401397,275.151274453419,185.55618709836398 +348.20302113537144,175.8844996411845,335.77708065347497,194.639855647192,274.713679354335,185.517347201139 +349.35557089473247,175.7772740843995,337.14378254343103,194.65467853356802,275.122726009482,185.53963331472198 +347.0162314282655,175.7778992939095,336.864764322695,194.55373111895597,275.15821811731496,185.44773737754002 +349.60461562851646,175.94350531324648,335.384381720399,194.393688423804,275.185179647684,185.64490534001203 +345.4369899315325,175.85497827866152,335.566143932975,194.148581563589,274.93937816818004,185.62647385097603 +349.3093305833855,175.85223647876649,335.58872192021,194.057308395476,274.673686667472,185.44870853502198 +344.95500073162646,175.82322892593947,335.72242302145696,194.06999539654998,274.76735841368895,185.53527704815502 +349.2182602341505,175.9328302313475,335.57958318565295,194.271650722841,275.084189446487,185.53051587188202 +346.6433011501725,175.7520977441605,335.877116691403,194.389074159499,275.09982562944003,185.49952617962902 +348.2962831154585,175.90655711848348,335.36148898888996,194.48253441952198,275.28130311642394,185.60164272119601 +347.3879216884505,175.85600817337553,336.548641500465,194.265632397385,275.202243999375,185.54104215994 +344.1255141380075,175.6641244402615,336.50295783788897,194.084877448148,275.00610686720904,185.590015803648 +345.3495129800985,175.8641662506775,335.48974026589497,194.60321008474097,275.212216622019,185.403547850819 +345.2623036704315,175.7173528379455,336.26579971945705,194.282564906049,275.26287670076294,185.484103074396 +346.37176152532345,175.6773991682865,336.13454624654105,194.396360829275,275.27385244220795,185.428976156928 +348.60204448262544,175.67050497214552,335.84024484632596,194.654580960967,274.91558200677093,185.392480089667 +345.6192334640045,175.79203577194352,336.61137845958103,194.19209090743897,275.21591056555894,185.484488526743 +346.60297392627945,175.80786652547448,335.665558176281,194.75703060673402,275.108081171605,185.45907879658 +346.9935804475195,175.8213549255675,335.494243517203,194.65473950114,275.19187336447703,185.435753243362 +348.1853125523655,175.80500429674248,335.452935214239,194.698023772866,275.04617423546495,185.33596018516602 +346.07597246912746,175.6335642176225,335.28317488059497,194.87225840417096,275.189995779715,185.32638468783102 +346.02871810806045,175.53724846848849,336.46621675269796,194.038804826425,274.429345067678,185.388948845992 +345.66377730065847,175.77396006614651,335.57755198686004,194.15211061490498,275.131961536425,185.402312539464 +346.5039684963245,175.7866097653325,335.549741370078,194.647010044819,275.148794627127,185.36929187195403 +349.6059547684795,175.62581725667752,336.793637178955,194.28279430165696,274.52457239155103,185.289035299506 +348.19091143729946,175.58306211348952,335.860664267315,194.316674363353,275.21019259718696,185.40426202283203 +347.6626104736705,175.57747243490547,336.07855853785895,194.12097705695402,275.118226430499,185.357418649671 +346.43108229304545,175.55060182856352,335.304987421428,194.14581853892997,275.139661505159,185.47339152913798 +348.17825429666544,175.5314303533745,335.69769742943197,194.223325250424,275.25692457046193,185.517597809138 +345.31874637746046,175.5078869346105,336.181419395151,194.580679729827,275.192801821394,185.399653280959 +348.14547581246046,175.5591909080665,335.142352512343,194.58913205246097,274.83857095587496,185.286688861978 +345.5895288300335,175.67815190351348,336.26461512481796,194.125701243996,274.69012649733304,185.413182695609 +344.79740558817645,175.4288461626785,335.94694168215403,194.310581710539,275.179352148525,185.46691750321202 +343.79962472909745,175.72206412424453,335.16383573636006,194.437077261916,275.206980101501,185.42263060565398 +348.43300377904046,175.6686081045575,335.148106283591,194.041369394917,274.91215120005995,185.423442315182 +345.39914102400445,175.6373456517245,336.14168873755295,194.105384607617,274.49930870448895,185.31175743228698 +347.93133266166944,175.39078901509652,335.75638432444396,194.14577519906197,275.229546142868,185.445615024321 +347.48467095004645,175.4841151619795,335.13959780686196,194.436690189059,275.333901289393,185.28567517141903 +346.62382127718445,175.4376273247255,336.27604980937497,193.73738973139,274.58030429853704,185.414411830865 +348.54856954763846,175.60051226158248,335.02377685537795,194.08601313708897,274.463248995413,185.130875028128 +343.96105018765246,175.38302904567252,335.85690002197805,194.67267693271998,274.303322369336,185.325752101597 +347.44081722042347,175.5629803392585,334.73598235956695,194.11090700385898,274.85358428953793,185.28279001443798 +345.91410936481947,175.4275383279945,334.54869588185795,194.116604714914,274.408032415324,185.37588392585002 +347.3382387840315,175.58060041637953,336.44706918075497,194.58678482785797,275.089555489606,185.297391654131 +348.29188231917846,175.52256078772348,336.177183131918,194.39966508108898,274.660435846107,185.297424650309 +343.87161636244946,175.34223052406747,336.644983994826,193.89334525772898,274.47979376418994,185.418544857162 +348.71521760259947,175.489140980552,335.009823117745,193.87364124219602,274.56712193221995,185.327288018359 +345.4431809129725,175.516350777263,335.23976006100395,194.09529390921,275.17444819976004,185.173900517926 +344.923224664254,175.325018950298,335.125862929034,193.828889666928,275.067674066561,185.289606416818 +344.657409376851,175.318683796658,334.304249246172,193.803448770677,274.969739920945,185.24854247297 +343.221246273,175.271252515321,331.301061717196,193.75180850792,274.740489525142,185.175910315138 +341.903603369988,175.255987649979,329.49221642498,193.721628229274,274.571755985616,185.125444619912 +338.507982574143,175.208735669882,325.706235006505,193.668768744182,273.967499874918,185.062313622857 +336.567405028819,175.177201985229,323.778924122164,193.641417598352,273.536207780006,185.031923984814 +332.431742873114,175.133151601966,319.926578653497,193.578946319488,272.43084773055,184.985513279829 +330.282573157801,175.092681592415,318.014452499626,193.538461429615,271.760293824864,184.946180932079 +325.947287896218,175.026447822264,314.249663327643,193.460553606343,270.269054108379,184.890854957428 +323.760407826432,174.998354231101,312.379542504019,193.400297817441,269.448500406512,184.866470684988 +319.408651776188,174.910955212191,308.711454363468,193.282808713718,267.689274031423,184.781807062783 +315.112730930724,174.82299137614,305.124665726133,193.128406763391,265.841082679141,184.714289098558 +312.981582644996,174.750824573563,303.331821027141,193.035238824004,264.866265432116,184.654655000945 +308.783794802079,174.616806011564,299.839946226899,192.819377546032,262.867886046495,184.545707596638 +306.719024848577,174.545958723448,298.115434075173,192.70143040565,261.856668213095,184.487858288212 +302.65866629765,174.377991762697,294.719419662787,192.437380227616,259.785978575719,184.329784948254 +300.666229277799,174.29763907372,293.047483476678,192.292674696859,258.747679733524,184.259624210902 +296.730519152426,174.101275031759,289.744237037764,191.955925622213,256.638825342715,184.058211076167 +294.821440870027,174.009023120181,288.138871876141,191.796742280267,255.597946190852,183.967049975179 +291.020456201444,173.774992181542,284.931985238939,191.411795492267,253.458595315997,183.726766585451 +289.159232103859,173.659359910396,283.359411840424,191.205437418231,252.3969688645,183.601714693318 +285.504600856314,173.401045982841,280.250324298156,190.773793054216,250.274729224626,183.316143660507 +283.716281424457,173.272415016798,278.715035804261,190.550916527921,249.218320935313,183.171085357323 +280.199328942173,173.00185598513,275.704177154355,190.082518461934,247.117333035479,182.84970999724 +278.492816714676,172.857500330009,274.212240390964,189.838294780682,246.06762215181,182.67888616537 +275.127361259021,172.566026155795,271.300115977562,189.340772576373,244.00240433137,182.331903289688 +273.457018556993,172.406468529056,269.851061972861,189.076653476488,242.95605317187,182.130243027668 +270.214804715309,172.08730616308,267.038483046291,188.545552283428,240.914333027519,181.756696162688 +268.638565616265,171.926138433387,265.629618488063,188.263023012959,239.908959151627,181.559475859006 +265.512836319594,171.5929483103,262.870924637465,187.706887109088,237.891283082617,181.129694916098 +263.986567879261,171.414622519507,261.521138740254,187.407859184766,236.894160223554,180.914126048151 +260.987456910702,171.062290088654,258.850584071519,186.822730545535,234.91772682642,180.464935151568 +259.517040866493,170.893489519618,257.536549390357,186.528326639963,233.946822055548,180.236526029383 +256.632412305692,170.526202053747,254.957058098842,185.924456810656,232.020606941388,179.772349986388 +255.219605039648,170.343507701495,253.676531225141,185.622181623314,231.064127832378,179.536316141941 +252.469031032188,169.994041789574,251.194916008754,185.011887046127,229.19247804353,179.058517010361 +251.115868921764,169.808965986176,249.976817926282,184.700918450037,228.267257830115,178.809376557715 +248.456341651048,169.421276136419,247.534246335833,184.073751692718,226.409302363559,178.304015076665 +247.149806844004,169.249376774363,246.347158889102,183.760351663659,225.50987376455,178.051290060668 +244.605467057441,168.864867149971,244.009514816656,183.115601253132,223.730749901724,177.540951755307 +242.114442519333,168.488051000789,241.706553704354,182.490426269783,221.976698559092,177.022239848017 +240.884420699846,168.293167300558,240.586459049303,182.167967635401,221.114834618475,176.765134230616 +238.506606973418,167.916794669687,238.360937189963,181.532265064076,219.405794046669,176.249426608072 +237.345664483583,167.733789838668,237.279358051103,181.215173627662,218.568713755026,175.995596771014 +235.049633376364,167.349720829333,235.128672710757,180.584330178528,216.905566194257,175.475909135532 +233.930262645597,167.164014055539,234.072041112584,180.271051027947,216.07859101464,175.202839009658 +231.722247160683,166.774372374509,231.994272437304,179.631119179063,214.471513364798,174.674313469118 +230.639291836837,166.590084772091,230.980209193083,179.315997005293,213.67785703216,174.421298494222 +228.520566736927,166.225712043953,228.978629618511,178.692060339704,212.112554156358,173.893865981695 +227.474809323562,166.018555838665,227.992892181947,178.379651557735,211.347095804895,173.632855404737 +225.450583354346,165.665896032689,226.061992916838,177.754407648244,209.82667185068,173.113205627406 +224.45370656684,165.479278398043,225.097710995099,177.452561939267,209.094531852517,172.852278328739 +222.496883587851,165.110006952959,223.240840867537,176.823960325355,207.611965122517,172.342547690863 +221.542524985734,164.921535554582,222.312416843044,176.530276666691,206.90384958988,172.0795373995 +219.657844038451,164.560323495256,220.500019036328,175.906968474773,205.469754213623,171.569976728934 +218.735217240703,164.37551710227,219.617029138653,175.60974225159,204.755892547862,171.299006801191 +216.932374320756,164.030157759996,217.867068968786,175.023764840246,203.382144463163,170.814649893218 +216.044199788088,163.84044966763,217.016940649558,174.720236734626,202.711701367974,170.555305406782 +214.305152293782,163.492349970455,215.333134353428,174.139450113102,201.356301808214,170.070315218391 +213.453485883485,163.3089686286,214.505845909004,173.84855891381,200.703345465198,169.806844362732 +211.788759244793,162.97725439829,212.874556474567,173.270012418611,199.419292551285,169.319436732771 +210.972845004546,162.792351741774,212.069320487732,172.981100350679,198.781825749956,169.076092672088 +209.353833695013,162.459343321001,210.49721211028,172.412460382167,197.53054687462,168.600440512752 +208.563686684882,162.272130892689,209.735627663218,172.145223268125,196.912937593983,168.363399482017 +207.036608463082,161.959450741183,208.214536087154,171.592328850617,195.706635223447,167.893938335168 +206.276323040786,161.785774921008,207.484203186995,171.319348947098,195.113863934765,167.663484965387 +204.77468623984,161.453762982587,206.001780507508,170.779931298333,193.935659695104,167.199808649421 +204.047978255742,161.294702360632,205.286413220691,170.516026837392,193.362087346904,166.972141153402 +202.621485527558,160.964986292381,203.865603758665,169.98592208891,192.227672164294,166.517066633741 +201.246514582174,160.652457435635,202.498145946791,169.480741308614,191.130191728084,166.088520141798 +200.562999403588,160.499583514484,201.823150394658,169.221900626153,190.580389357923,165.866138759211 +199.214572480598,160.192655438067,200.491747614906,168.711197869381,189.515887542137,165.424160394197 +198.546637285764,160.042309381991,199.829989349867,168.456770283805,188.990234015038,165.214785503363 +197.267267231744,159.746134538855,198.548979064393,167.976652958352,187.959495513291,164.796387036824 +196.636622188029,159.584860582858,197.907258027808,167.73292416131,187.446363833235,164.586772427573 +195.398516556799,159.309011152789,196.670965531421,167.253206505035,186.45926824292,164.180849983127 +194.787762875923,159.155404165453,196.06006178242,167.018107610308,185.963593776331,163.973811234025 +193.610814738133,158.878312504926,194.861827882462,166.553694119929,185.006671487914,163.582472741305 +193.024459564195,158.740770541996,194.276934873354,166.325641719427,184.532242297509,163.382005833231 +191.871189565849,158.461474684161,193.113526871799,165.870681839918,183.597092060419,162.990808205906 +191.316171302298,158.324136388966,192.555760388888,165.655870898168,183.146866982965,162.81681058232 +190.199210484921,158.037533955668,191.440513888351,165.209664288083,182.233973639342,162.420177464871 +189.664263436169,157.911660820968,190.897911084815,164.998686494107,181.805290246911,162.255345655123 +188.604230564825,157.652150307258,189.810435591993,164.567341443321,180.928251670845,161.88470162732 +188.081398317525,157.514490368139,189.288556482727,164.34550060705,180.504051988712,161.693444999742 +187.058262531497,157.271831846723,188.251934514518,163.95152834605,179.665880321732,161.346666076602 +186.571552117823,157.149741066701,187.754979340217,163.757853431467,179.258505916769,161.17495796967 +185.567771802112,156.892297280884,186.741652939049,163.346773918905,178.445135274838,160.824774959193 +185.10350715845,156.776324415411,186.264570006908,163.151344513541,178.053717363434,160.652934223926 +184.152905515317,156.544219706916,185.312327104273,162.768706855596,177.282864528993,160.325821159682 +183.689003827503,156.42258318262,184.826043417318,162.576911875064,176.902558504623,160.161785921929 +182.781107471915,156.18821556545,183.903439220819,162.201794734578,176.153952602819,159.849604272019 +182.335942180721,156.081040752147,183.457092207272,162.010800005986,175.791701621315,159.687290821529 +181.456156591755,155.839381734668,182.54580656678,161.646989095001,175.04888165413,159.368987322278 +181.01986058988,155.7326703861,182.111118690325,161.478537607521,174.695982035198,159.222001680072 +180.183251805963,155.508895458427,181.263040700133,161.123845396293,173.992161998622,158.919995123085 +179.76397908187,155.410520337432,180.829991305936,160.954006023232,173.659783318529,158.780203318617 +178.953358081894,155.193081413762,179.993678778897,160.605225609237,172.987784172283,158.487804911197 +178.169582260253,154.979599037533,179.183043693497,160.287589412331,172.328425029725,158.199377993599 +177.792038541615,154.896265652614,178.787992920122,160.122163239377,172.011221940411,158.069554397399 +177.017000119171,154.678668683842,178.00402908387,159.790447927487,171.36387171613,157.785839603757 +176.655931957496,154.582262927497,177.619862138864,159.650936600565,171.060811493169,157.651984509089 +175.91584417365,154.391950335536,176.868982346515,159.334970753157,170.453515984306,157.38771125149 +175.561162644248,154.291900605249,176.505177926218,159.183928536562,170.153350810936,157.248360594924 +174.845412150728,154.110663595215,175.767685235996,158.868957361315,169.556182721925,156.988781403515 +174.490658982934,154.004018837349,175.410794377564,158.737309415998,169.269444148947,156.878549225236 +173.822717817664,153.824396229012,174.714825738779,158.442541923274,168.704922684648,156.62523679108 +173.479596752129,153.739939993301,174.36979905442,158.310156008371,168.432363376723,156.508466081232 +172.833225533556,153.55552390068,173.686787228627,158.015018169574,167.875202660017,156.258252731276 +172.496102267068,153.463790472586,173.341704016469,157.862595107797,167.595606986565,156.136058757619 +171.880065432489,153.288399394536,172.69997597111,157.606673942065,167.074334685803,155.912278559714 +171.569090906889,153.211754988248,172.389425544948,157.48537819085,166.822720765522,155.801716269041 +170.952724139178,153.02877831676,171.745971592804,157.219324173992,166.29646311285,155.574293331567 +170.655710346508,152.962972345788,171.446589186597,157.083148795345,166.062046654445,155.451406902448 +170.07290073259,152.79038009084,170.840655721735,156.83284656769,165.563262224125,155.244586278358 +169.792589014001,152.724480660509,170.552624296794,156.709111068082,165.329716632034,155.149193600813 +169.226293984706,152.561992189641,169.955763666955,156.469406879692,164.856256872773,154.935111912738 +168.937300582824,152.467270484686,169.655327452528,156.342553671426,164.612173309237,154.818523499272 +168.390250959298,152.331726505634,169.09610085591,156.099707251519,164.150724326492,154.618211467401 +168.136239154688,152.26089788718,168.84042380721,155.996092473634,163.93972332975,154.529248797149 +167.613935652249,152.12027192613,168.294780777865,155.764865733185,163.502752398006,154.329884653893 +167.352211225637,152.038721542301,168.017665822069,155.655620628649,163.29054597262,154.230889874527 +166.846049280968,151.885151532939,167.493055950391,155.425123187985,162.862484898265,154.041283636948 +166.595870085284,151.824546198543,167.245166353509,155.325963137448,162.648794959634,153.952829587185 +166.116779736585,151.685815333363,166.744378338625,155.117058984075,162.250786531773,153.779007601226 +165.878713235104,151.629824331949,166.497440909442,155.011633321038,162.049888105173,153.687994817312 +165.397983654118,151.48499440654,166.014548530288,154.807989980474,161.656034134772,153.51201299798 +164.948703701091,151.362171207804,165.536373899601,154.609009099183,161.2736164298,153.332813618377 +164.732905202133,151.290338353448,165.307990942718,154.506270518324,161.076608611784,153.256988613576 +164.294682959586,151.171749806586,164.852969936685,154.31455368298,160.708710587399,153.090603242901 +164.074610672906,151.109978233283,164.633098932703,154.227686018823,160.535754672972,152.998449235845 +163.651068269872,150.98928234905,164.194157018964,154.032248807416,160.177400218733,152.849182113692 +163.440327175164,150.937464826425,163.978041061955,153.952108193194,160.000061479361,152.767224851818 +163.037785903221,150.808930837423,163.555923811568,153.769451316245,159.663603501198,152.621464253549 +162.831572995043,150.757427640879,163.342944031822,153.673183610247,159.486604244818,152.544455571972 +162.43274161193,150.639472413158,162.927329718008,153.494641786289,159.160337595152,152.390994366515 +162.243685561671,150.57610784286,162.725238374528,153.416151750416,158.987941126054,152.309296311438 +161.870348399516,150.479557227569,162.347205340474,153.251635520894,158.673904417687,152.176102046796 +161.675416379085,150.413784049585,162.146904765688,153.169810993544,158.518836566434,152.109358346721 +161.314487015026,150.302474560457,161.771759526574,153.005349764028,158.204422806529,151.970658571365 +161.136305160057,150.242720439993,161.584729095417,152.928395780888,158.053090286195,151.901142556586 +160.778961923201,150.163848788035,161.222927077665,152.768858920362,157.764982918008,151.770601873792 +160.598135035454,150.096346219387,161.025125825286,152.687856779187,157.616336595512,151.685927960446 +160.269953076612,150.002067752566,160.685293262628,152.553193948123,157.342504300696,151.574462085899 +160.101589455768,149.946497442103,160.505996843453,152.472099086549,157.189604700007,151.510756078997 +159.76834411997,149.856150408053,160.175496329462,152.333274056305,156.913486405686,151.386100414214 +159.60509308536,149.807733666471,159.994583058404,152.25494476667,156.780299989767,151.318445633247 +159.303878912786,149.719426671239,159.673835632604,152.113769910531,156.515998662014,151.212034261951 +159.137634580909,149.668237497154,159.512214029907,152.046327175807,156.384221510208,151.141607338851 +158.833951785215,149.567256139723,159.199444651589,151.906592292838,156.125559982802,151.018582798849 +158.689536345319,149.533638269966,159.043177358859,151.839379501716,156.019758236104,150.971755799341 +158.379049478081,149.436012488649,158.732423377313,151.696296792563,155.735975554012,150.85070326501 +158.241177651819,149.396179397854,158.591751532131,151.644854537171,155.639486564052,150.805988182362 +157.980677678932,149.321748181862,158.307557215236,151.537027505073,155.407030449225,150.709996870172 +157.688872032026,149.231351697446,158.014328432068,151.403966108554,155.166468810407,150.593405631385 +157.559309187186,149.194918160105,157.868977468883,151.349217690402,155.055790372692,150.543533369101 +157.287039447493,149.096678550395,157.587865557352,151.219419198675,154.822687607346,150.431589957516 +157.154830028457,149.076087821915,157.475125976931,151.169884551406,154.717471424005,150.393637738515 +156.903666488385,148.988917275596,157.184044822436,151.049317763653,154.498034181526,150.29022675595 +156.767479204968,148.956946113602,157.063150678219,150.995800061352,154.394631122734,150.244821708642 +156.533904624844,148.886821926073,156.810073668362,150.893454718112,154.201564725364,150.153379194396 +156.399212097359,148.840835978092,156.666093193156,150.819202844924,154.081347560245,150.094415806879 +156.176901251731,148.775906646518,156.433096264791,150.723911313742,153.894200466195,150.012798976761 +156.049670377698,148.741507935844,156.317678499473,150.676991301163,153.787226932172,149.967280359639 +155.814206787299,148.663900490247,156.064573667435,150.56323060753,153.592721804172,149.881769341133 +155.698071842981,148.629919192569,155.956542303904,150.514416305956,153.493125374708,149.830655881109 +155.491663212703,148.575252730529,155.72762979857,150.42893887829,153.317222514968,149.753528272241 +155.369078271129,148.533902143445,155.605498194915,150.372519681763,153.230400403132,149.706375470099 +155.160733965652,148.453706208924,155.383461548477,150.264734672553,153.037504307837,149.619202105442 +155.065589127377,148.425149734119,155.289699734027,150.228291709691,152.958412428017,149.58646896143 +154.848898748273,148.369431648241,155.071369646462,150.139685305845,152.781487013481,149.504823530111 +154.744012824681,148.345248394212,154.969951410979,150.093972589051,152.692427030461,149.471378820185 +154.54911475623,148.278193688523,154.75997527969,150.004432695684,152.533797338803,149.389492881395 +154.44827165186,148.251792408565,154.657965848062,149.950950952493,152.451552473625,149.354754711402 +154.258703098456,148.189111494848,154.461200079053,149.86856593953,152.282267964195,149.279558160947 +154.178992689679,148.159977369976,154.367350577605,149.832472741674,152.207710274613,149.251104209465 +153.976827719192,148.105975693145,154.175365195077,149.743279332725,152.049216059312,149.176499062703 +153.902943318442,148.092584433583,154.092671994873,149.718315299765,151.989043375571,149.159633465618 +153.718297566254,148.024612597876,153.912182936862,149.638039767003,151.830225636656,149.084694466412 +153.619397532576,147.993420010268,153.802620182976,149.579306212412,151.737878181859,149.033604214453 +153.452552578886,147.951049901114,153.648503320801,149.508926254258,151.619989282545,148.988903291425 +153.370529867983,147.922591877436,153.550492717831,149.480449388837,151.552374024284,148.950260038727 +153.196368973311,147.856269005393,153.363350136274,149.404139254476,151.401247188457,148.862869932255 +153.034744822898,147.810303353639,153.197547133278,149.32045233202,151.264728751274,148.809486636315 +152.949837412081,147.775489292821,153.109855477629,149.288159347495,151.192376073141,148.778818855171 +152.803874668276,147.748374149169,152.968978330783,149.229349040133,151.069422026671,148.72325760575 +152.740508727523,147.72811863909,152.894956476827,149.19012072781,151.019519971529,148.69860136924 +152.566819375619,147.664540822589,152.714310406016,149.107543822288,150.870474355748,148.623901162081 +152.496553017402,147.646867317409,152.643345430015,149.081304690341,150.815757049703,148.592813040135 +152.36044502009,147.61177194329,152.499357760555,149.027691461975,150.704032630162,148.55007520895 +152.293379576639,147.582269049887,152.436224571734,148.997939449226,150.646728276843,148.527032666363 +152.151329444756,147.540308903226,152.295092585373,148.930060036589,150.526749019996,148.476965199221 +152.078270142889,147.52145472748,152.216936136544,148.899635068405,150.464610041526,148.452093590626 +151.94365241861,147.481357267218,152.078144296835,148.840325468929,150.356450691128,148.387247926809 +151.879130874948,147.462702067434,152.007832264667,148.806170183436,150.299603900663,148.37759980907 +151.754079544402,147.415971292356,151.879996946637,148.74299889695,150.197532011659,148.3190627189 +151.68779661273,147.396708779414,151.80838702416,148.72002659842,150.137998581914,148.291240837814 +151.56290074628,147.367683910417,151.679319044487,148.674572170671,150.035616793643,148.244870231754 +151.502620775641,147.348864499941,151.623665252585,148.637480084834,149.995496711256,148.228123774026 +151.391791279541,147.31631504899,151.508895988369,148.602369737869,149.893061168594,148.19140173263 +151.317345157647,147.284042825978,151.4184777248,148.547195063642,149.823054651795,148.154726022721 +151.210623218612,147.254893795945,151.312445738328,148.516412028835,149.736518107561,148.110312505914 +151.159482107877,147.235487674358,151.26593084615,148.485206658048,149.697896133769,148.099912480736 +151.029647666563,147.208669641246,151.144189992831,148.436877556049,149.599358821598,148.057831249831 +150.999268540784,147.196127832783,151.085347292892,148.427102789359,149.567841196028,148.037196118264 +150.876463016963,147.156683403492,150.975032449275,148.369377326901,149.470544595367,147.987337713755 +150.827800906447,147.149449036606,150.922203501819,148.345497332561,149.418441964963,147.968545795368 +150.723460198637,147.109028658423,150.809529380474,148.298815405568,149.333122721093,147.931577386044 +150.670160701558,147.096468025111,150.763400438894,148.280932298317,149.295808483732,147.913466015029 +150.579687505055,147.069657827749,150.668759345384,148.232382499547,149.21139832768,147.888957151757 +150.517454807517,147.056490442867,150.60467356636,148.218515081421,149.172553606185,147.855449330382 +150.431924489857,147.027680755324,150.508729684757,148.178828196146,149.085452458626,147.831713430299 +150.337501089632,146.991374018497,150.419161379536,148.13164084516,149.023449897938,147.7893858317 +150.284824762048,146.999293901466,150.374348565549,148.117377722346,148.987910975297,147.782057190151 +150.197504835208,146.971461640476,150.279391770793,148.082367483569,148.899944603572,147.738964385984 +150.155207911933,146.953246252979,150.236399470686,148.05536119166,148.862756651307,147.723284680897 +150.070787020254,146.92645712403,150.138791082954,148.026941440254,148.800805692189,147.702032216647 +150.027877571033,146.926338528829,150.100043935659,148.008334552236,148.764854312294,147.683890086282 +149.943071483271,146.890613988448,150.003207870077,147.962193707698,148.690264488595,147.653930330782 +149.910869481633,146.887327434408,149.977481298569,147.955670256308,148.664320892434,147.653877604993 +149.821957234131,146.858585783925,149.883478323288,147.920444550883,148.587937728045,147.604099589456 +149.789770038666,146.859239211069,149.857534934545,147.908619276479,148.565475805144,147.599438820268 +149.70226305032,146.830280111923,149.768637842976,147.872483117116,148.494887795867,147.568621839605 +149.678389806121,146.822373996956,149.738057064043,147.860875992698,148.474262763951,147.569031231474 +149.600659442407,146.799249543363,149.662174884674,147.824569208398,148.401194678131,147.533422215914 +149.556786765796,146.794926813677,149.62824527703,147.816085041163,148.379302309444,147.531408631239 +149.493701850209,146.77672602451,149.563539701274,147.783318044819,148.334046066627,147.50996721463 +149.450359574902,146.765077965304,149.519964913044,147.770047292969,148.295347660884,147.491845982047 +149.385565680128,146.742395892851,149.44846306587,147.751052432124,148.244221827425,147.468925604373 +149.355769616339,146.737809747969,149.412422731754,147.734217270049,148.212128956508,147.460872283327 +149.294724497908,146.712171832311,149.343051754617,147.713651722945,148.166829424322,147.428756964509 +149.262074937656,146.707274942718,149.309939072933,147.694657327326,148.144826800805,147.428248356164 +149.191604999676,146.689542996268,149.249641561706,147.665133204229,148.085945800823,147.401500154467 +149.166039195017,146.686408647406,149.216213609014,147.666849930067,148.063627530946,147.40645126276 +149.105448169547,146.659834278912,149.148222435122,147.633794286634,148.008611405728,147.367392388849 +149.074802933199,146.651855905716,149.121969666529,147.619342719594,147.986068982724,147.364263303192 +149.010712857309,146.638182525457,149.062733637753,147.591106677172,147.933794486409,147.350123552035 +148.997323414166,146.631504751849,149.041482954057,147.602448816278,147.923877604427,147.345522997606 +148.921953535978,146.610718212155,148.980445901643,147.568714106867,147.867722543986,147.318260980684 +148.895306837219,146.599341498471,148.950330615943,147.559181046586,147.83808376175,147.302029054709 +148.853501444962,146.600766781265,148.896964731275,147.534497624165,147.815477089686,147.295830764373 +148.784556399895,146.575308682767,148.837959309645,147.506487476281,147.754188247218,147.260430671394 +148.760335501312,146.570280339185,148.814200225933,147.501457067776,147.732519877531,147.272496814385 +148.713777183224,146.554483137368,148.769721438772,147.485884426914,147.695224923002,147.245605466322 +148.690203976599,146.548715476749,148.736669514367,147.470410357749,147.675821270365,147.243994491221 +148.637709682607,146.544769885691,148.696657340027,147.458607555412,147.643221426207,147.237506416028 +148.617063224829,146.531994616632,148.671618173658,147.449061773248,147.623739123707,147.226344394366 +148.576352629453,146.516494509952,148.614031742022,147.438176281521,147.586742899833,147.206219093959 +148.552609374483,146.512403274528,148.592830864058,147.423686407646,147.566475635727,147.196813135191 +148.481493524708,146.482228029032,148.543211117656,147.384257421014,147.517802058239,147.168476882878 +148.480093444837,146.495378886761,148.52354983181,147.393716873419,147.506929420418,147.181169700332 +148.431447201318,146.481185666687,148.489927375353,147.375590361073,147.474476962065,147.164199962845 +148.418952270287,146.477246393687,148.462176374978,147.367259811565,147.461987199044,147.157487299901 +148.375728964768,146.467315705438,148.421032556491,147.352704487843,147.436572148938,147.152635961634 +148.349240483892,146.453782171625,148.404944902814,147.341707038516,147.409401307066,147.141177448636 +148.315032619832,146.441773098568,148.345080041206,147.316293326127,147.379828137546,147.124313438324 +148.288505272367,146.453142037458,148.343514835598,147.315421915291,147.366942716255,147.135685817335 +148.259231071645,146.445830881091,148.309155035986,147.310187255052,147.336987106362,147.111508533506 +148.242834298306,146.44977009893,148.280045778746,147.303731552262,147.317824498402,147.108056539481 +148.192112916536,146.415947144855,148.248969210892,147.281216200675,147.29346076574,147.094321484359 +148.176627906375,146.415023383326,148.224007739895,147.280754142904,147.272668147063,147.085312114872 +148.145136246805,146.405726117248,148.185812957803,147.262674268461,147.238878608649,147.086176461345 +148.12932814464,146.412331147766,148.182716110673,147.268126667586,147.233241769671,147.08585320331 +148.089590047171,146.403568617234,148.127030189366,147.241571829789,147.208073467115,147.066692709712 +148.072078480487,146.388841257652,148.119918408418,147.236079956332,147.1965751381,147.06143226526 +148.040852691151,146.38281053864,148.089385305413,147.226812643283,147.169981598111,147.044542490848 +148.021017274675,146.38077162942,148.070473906471,147.21645615188,147.155005038625,147.039037915311 +147.994427365068,146.368518838302,148.03325259757,147.207202097823,147.116181486192,147.025395524209 +147.971753246322,146.368723425392,148.0179733825,147.205558590345,147.121468414731,147.025369168067 +147.94380990087,146.347496830484,147.996962495468,147.19310286031,147.080136900581,147.015686447516 +147.927065612181,146.361478416066,147.964040933336,147.186990916448,147.069174100502,147.010498986513 +147.898344229309,146.351713304407,147.955424420514,147.178377321568,147.050627694653,147.016670142561 +147.881170662967,146.341017531537,147.925771332302,147.172991032554,147.040621614526,147.007126214342 +147.862478869784,146.334808705713,147.918864895856,147.168628054082,147.014313614467,146.993061549809 +147.838445900064,146.328804480428,147.875419803258,147.150839777221,146.993523549095,146.990289556069 +147.816506108013,146.330203243527,147.879592587489,147.142767421669,146.994229726171,146.990533733366 +147.799029181309,146.325208002018,147.85402713769,147.145624880092,146.973525117039,146.989695008677 +147.790433441884,146.321929244375,147.841271653692,147.140265796121,146.969552422464,146.97971632305 +147.757382229584,146.320767619724,147.804060240089,147.128477107993,146.945983855102,146.971393427634 +147.7488130105,146.315436845541,147.795028685998,147.127071644318,146.932797806795,146.970681053185 +147.7299571272,146.30975581962,147.77894537175,147.114920225195,146.919492467977,146.970080306221 +147.71349819118,146.308548476688,147.764103628205,147.122259907146,146.89957452368,146.967486626248 +147.682461796921,146.28607560263,147.723592517435,147.092617597789,146.886335267378,146.947317113345 +147.673318288683,146.298644885082,147.719994595062,147.099878135809,146.872575200512,146.952267230308 +147.649274110686,146.28523790923,147.689479957096,147.091779604225,146.857778883161,146.941397292094 +147.646652526566,146.280770491245,147.684778699513,147.090082697699,146.854234267628,146.95356019115 +147.616687051733,146.264216686777,147.664517546039,147.073984955491,146.825896093813,146.935846461381 +147.617340695226,146.281496588738,147.655004248571,147.084571806321,146.821467898537,146.951514559711 +147.589712565994,146.276053546434,147.646091915153,147.075430690521,146.823876932642,146.937061114376 +147.591527709401,146.274634672505,147.63334999598,147.07516635217,146.802131370715,146.934486854542 +147.554525030421,146.262131395131,147.604433782833,147.054804411559,146.783388733805,146.921055935672 +147.542800876649,146.268195106271,147.609345781029,147.060408246316,146.790377769353,146.934744203651 +147.531379950579,146.255856919977,147.585216209563,147.056381918052,146.77226227713,146.919861441529 +147.526745690178,146.253303584895,147.580581840374,147.053365662658,146.757466617196,146.923082156253 +147.505165527016,146.252287674337,147.559925398575,147.052580396399,146.745594658808,146.9218349504 +147.509740046005,146.254550419856,147.55733725458,147.051378860955,146.746934004126,146.923636385278 +147.473538045132,146.234071138337,147.530376646753,147.037360429177,146.717211348856,146.901072089296 +147.475729136973,146.240879470357,147.536033610274,147.046250237877,146.720094626066,146.900028765847 +147.45748334427,146.238346294701,147.507852087338,147.031934941716,146.704395574506,146.900035736497 +147.443098795852,146.230435294578,147.499474539941,147.032568267851,146.69763777566,146.894894278343 +147.43991688722,146.234875497695,147.488898943918,147.036779051039,146.692147222401,146.909961363059 +147.411175226849,146.221158942582,147.4617739979,147.007811477718,146.668034356716,146.887232101695 +147.41185517255,146.235231951298,147.463609195134,147.017731369474,146.668945046117,146.88606398036 +147.401629647538,146.225011754573,147.456155996319,147.01074163238,146.659646732133,146.892933971389 +147.384466768028,146.218018276246,147.441996292846,147.009751735382,146.659118919893,146.881780619564 +147.375535333239,146.221792040905,147.423822881068,147.007289791999,146.64857359119,146.895719023546 +147.367323407112,146.21935730797,147.423235196945,147.008550224227,146.631125776313,146.882427082201 +147.345012099923,146.213914415211,147.404620003166,146.999871413309,146.630301127561,146.873517767475 +147.345487350963,146.202381641504,147.395853627434,146.977246673763,146.606756252332,146.868911201349 +147.342767648621,146.23037563184,147.390361383956,146.998089302792,146.619049873903,146.877972420397 +147.33099806695,146.214455296281,147.375819093478,146.997640480832,146.619986895507,146.877754610097 +147.323763154571,146.214844300225,147.371356493807,146.990637628385,146.59173692929,146.873292988539 +147.307042773296,146.21221817725,147.36341516184,146.995864581803,146.589572280564,146.875978805143 +147.291319503602,146.2085102967,147.346074254827,146.980143464439,146.584247069757,146.86210640998 +147.293101843553,146.20290237958,147.361718819085,146.9816945619,146.578638210815,146.865043345394 +147.291161343276,146.203502919286,147.335519518624,146.976520354122,146.561224258257,146.869108864163 +147.282566743064,146.210614916002,147.333855767978,146.983403799522,146.57364938952,146.868831376375 +147.271827023451,146.20149673043,147.320112377845,146.978902435934,146.5566772429,146.862713335969 +147.260506681643,146.198263877174,147.318957213891,146.972896491325,146.552520058046,146.869873922999 +147.26395193881,146.204016694562,147.320323262589,146.986505243406,146.564047671374,146.871701675972 +147.244222455755,146.203924478022,147.300131230001,146.971629110717,146.536471882702,146.860522072549 +147.229562479167,146.197122461564,147.302798160122,146.974988648613,146.538445053452,146.863881445444 +147.230869543183,146.201661780115,147.287702107931,146.969596636642,146.522430295794,146.863109420638 +147.217153133471,146.198804755398,147.283226501855,146.966276641238,146.520958568259,146.85655577965 +147.208427017313,146.201397549638,147.270803683939,146.964481379822,146.519394612603,146.858687362221 +147.20894177909,146.193368120558,147.270625376201,146.966151070373,146.52499014836,146.868672488553 +147.21014960605,146.200348348908,147.262592136275,146.967589765187,146.518576213636,146.865722371332 +147.197905488776,146.207044984977,147.253813126371,146.97220971034,146.508414392351,146.857406868315 +147.195073560099,146.191744735911,147.254677544667,146.969609060412,146.512280878299,146.864045789429 +147.182882242356,146.198494041495,147.24664436124,146.959959910856,146.5035574844,146.858785818236 +147.172136780434,146.188907861836,147.234743477036,146.966078213009,146.490736720058,146.851044697053 +147.186875465847,146.20479470425,147.250175645,146.965107725707,146.492075919068,146.872710904487 +147.168024215816,146.205117840329,147.226241351692,146.962659011248,146.48570160566,146.865180579908 +147.160334755973,146.19766258692,147.215317381648,146.963979098888,146.479631097817,146.862111867632 +147.150480138782,146.207209282943,147.219092819445,146.958052263938,146.483636253615,146.859650086943 +147.156657887425,146.195372795983,147.219726203467,146.95822358296,146.482421852435,146.859821398511 +147.158915333016,146.205480498581,147.227066221169,146.970875688347,146.486757152521,146.870394068689 +147.158671136969,146.206621918244,147.2228946235,146.973403482219,146.483048816273,146.87523162503 +147.157192781801,146.2072224569,147.21656475202,146.965457327978,146.480878061998,146.871905555924 +147.136295224527,146.201343354075,147.205138498505,146.963734175854,146.482157592795,146.859095122619 +147.126691867701,146.201904368729,147.204313636199,146.954824536631,146.465166750812,146.870743656946 +147.125939147635,146.190991579382,147.185541321185,146.964235704705,146.466492761213,146.863061420831 +147.13910693522,146.206001245891,147.195475168638,146.973013595554,146.46764748972,146.880385463332 +147.13217651119,146.203692059848,147.18762049497,146.970703620979,146.46325952456,146.878075583326 +147.122645286141,146.212176404575,147.190564067841,146.972260927167,146.46597120762,146.882173695645 +147.124156940506,146.209299980888,147.189303530642,146.976544454849,146.459861225513,146.871442834613 +147.11496915833,146.205657975302,147.182425672889,146.9782141555,146.453447478257,146.879118137439 +147.112685398029,146.209609944733,147.185917318539,146.971310580138,146.46340445631,146.884688212173 +147.111596236485,146.213601443721,147.183673026544,146.983157371689,146.458158598243,146.886833000782 diff --git a/src/pyvale/data/valid/Pulse254_HIVE.csv b/src/pyvale/data/valid/Pulse254_HIVE.csv new file mode 100644 index 000000000..8a40ebe76 --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_HIVE.csv @@ -0,0 +1,1070 @@ +TC2 +143.74 +143.79 +143.68 +143.9 +143.68 +143.78 +143.72 +143.76 +143.72 +143.74 +143.69 +143.62 +143.72 +143.69 +143.76 +143.71 +143.71 +143.81 +143.86 +143.75 +143.81 +143.66 +143.76 +143.88 +143.68 +143.75 +143.8 +143.68 +143.82 +143.73 +143.76 +143.71 +143.75 +143.8 +143.81 +143.78 +143.87 +143.81 +143.83 +143.68 +143.68 +143.66 +143.73 +143.84 +143.71 +143.75 +143.68 +143.84 +143.9 +143.8 +143.77 +143.78 +143.84 +143.73 +143.75 +143.82 +143.76 +143.62 +143.8 +143.82 +143.78 +143.8 +143.81 +143.8 +143.88 +143.89 +143.8 +143.82 +143.84 +143.72 +143.71 +143.75 +143.71 +143.89 +143.86 +143.82 +143.96 +143.83 +143.87 +143.83 +143.87 +143.78 +143.91 +143.81 +143.83 +143.89 +143.88 +143.98 +143.76 +143.97 +143.93 +143.82 +143.9 +143.95 +144.63 +143.3 +143.43 +149.8 +145.38 +145.58999999999997 +149.71999999999997 +145.25 +146.39999999999998 +146.06 +145.84999999999997 +147.19 +146.03999999999996 +148.69 +147.57999999999998 +149.07 +150.47999999999996 +148.62 +149.25 +154.95 +152.74 +151.66999999999996 +152.62 +154.45 +154.20999999999998 +155.47999999999996 +159.19 +157.63 +156.36 +160.36 +159.09999999999997 +159.41999999999996 +160.44 +161.47999999999996 +165.99 +164.20999999999998 +164.69 +165.18 +167.57 +166.87 +168.65999999999997 +169.90999999999997 +171.18 +169.65999999999997 +171.26 +172.39 +173.51999999999998 +172.82 +174.31 +174.82999999999998 +179.64 +176.38 +177.14 +176.64999999999998 +178.61 +181.91999999999996 +183.0 +180.13 +181.7 +182.07999999999998 +183.61 +183.77999999999997 +183.14 +184.25 +183.83999999999997 +190.78999999999996 +185.2 +187.94 +187.70999999999998 +191.52999999999997 +186.83999999999997 +188.18 +189.76 +194.89999999999998 +188.31 +190.32999999999998 +190.88 +195.19 +192.32 +191.63 +193.47999999999996 +197.64 +194.96999999999997 +193.7 +195.89999999999998 +195.52999999999997 +196.39999999999998 +195.89 +201.26 +198.33999999999997 +198.21999999999997 +196.52999999999997 +198.90999999999997 +198.95999999999998 +197.47999999999996 +199.25 +201.02999999999997 +198.61 +199.64999999999998 +202.86 +201.07999999999998 +202.27999999999997 +202.90999999999997 +202.57 +202.87 +205.99 +202.5 +203.38 +207.28999999999996 +204.47999999999996 +203.31 +203.76999999999998 +203.38 +203.24 +205.3 +204.11 +204.24 +209.36 +205.01 +206.01999999999998 +204.18 +209.97999999999996 +206.41999999999996 +206.15999999999997 +205.03999999999996 +208.19 +206.76999999999998 +207.40999999999997 +206.14 +207.45 +210.40999999999997 +207.13 +206.12 +206.87 +208.08999999999997 +207.5 +207.07999999999998 +208.97999999999996 +211.24 +211.14 +209.01999999999998 +209.34999999999997 +208.08999999999997 +208.53999999999996 +208.27999999999997 +211.33999999999997 +209.89 +208.64 +210.07999999999998 +209.61 +210.70999999999998 +209.64 +213.66999999999996 +209.24 +210.65999999999997 +213.76 +209.37 +209.71999999999997 +210.11 +211.33999999999997 +210.77999999999997 +210.28999999999996 +209.99 +214.65999999999997 +210.53999999999996 +211.45 +210.08999999999997 +211.62 +211.99 +210.26 +214.93 +210.57 +212.31 +210.08999999999997 +212.81 +210.83999999999997 +211.26 +210.90999999999997 +211.81 +210.25 +212.18 +211.69 +209.90999999999997 +214.49 +212.15999999999997 +212.12 +213.64999999999998 +212.39 +212.27999999999997 +212.87 +212.71999999999997 +212.95 +211.62 +212.22999999999996 +212.59999999999997 +212.46999999999997 +211.57999999999998 +213.20999999999998 +210.76999999999998 +216.64 +210.96999999999997 +211.53999999999996 +211.64 +211.46999999999997 +216.32 +213.27999999999997 +212.86 +211.11 +217.16999999999996 +211.45 +212.74 +214.25 +213.07999999999998 +212.39 +211.89999999999998 +211.41999999999996 +212.57999999999998 +212.24 +213.13 +214.27999999999997 +210.91999999999996 +218.18 +212.69 +215.32999999999998 +212.45 +215.86 +212.78999999999996 +218.57 +211.68 +213.25 +212.93 +211.31 +213.46999999999997 +212.14999999999998 +215.69 +212.89 +212.34999999999997 +212.86 +213.0 +218.52999999999997 +213.3 +213.84999999999997 +217.45 +212.74 +212.44 +215.51 +212.86 +211.75 +212.84999999999997 +212.96999999999997 +212.87 +211.45 +216.58999999999997 +213.76999999999998 +213.16999999999996 +216.99 +213.45999999999998 +211.84999999999997 +212.83999999999997 +214.70999999999998 +211.71999999999997 +212.16999999999996 +214.45999999999998 +213.88 +213.07 +214.33999999999997 +212.16999999999996 +212.32 +214.06 +211.8 +213.32 +212.63 +213.74 +211.82999999999998 +216.03999999999996 +213.70999999999998 +211.21999999999997 +214.53999999999996 +213.02999999999997 +212.64 +213.66999999999996 +216.26 +212.12 +212.81 +217.0 +212.59999999999997 +212.56 +219.18 +212.64 +213.16999999999996 +214.26999999999998 +212.64 +212.90999999999997 +212.24 +215.63 +213.25 +211.55 +212.36 +217.27999999999997 +212.14 +212.68 +212.91999999999996 +220.33999999999997 +212.71999999999997 +213.25 +212.96999999999997 +213.45999999999998 +217.28999999999996 +213.39 +211.89999999999998 +213.51999999999998 +213.49 +218.70999999999998 +213.02999999999997 +213.06 +212.95 +218.82999999999998 +213.08999999999997 +211.45999999999998 +211.83999999999997 +215.51 +211.44 +212.84999999999997 +211.89 +217.3 +212.84999999999997 +214.38 +213.86 +213.93 +212.65999999999997 +213.27999999999997 +214.93 +212.36 +212.57999999999998 +215.31 +213.87 +213.37 +211.81 +215.3 +212.63 +212.93 +213.0 +212.26 +213.68 +214.46999999999997 +217.40999999999997 +214.51999999999998 +212.64 +214.01999999999998 +212.2 +214.68 +214.0 +218.28999999999996 +213.26 +212.49 +212.31 +212.64 +215.49 +213.13 +214.95999999999998 +212.81 +212.05 +217.59999999999997 +213.07999999999998 +211.83999999999997 +218.2 +212.86 +214.32 +217.76 +212.95999999999998 +213.76 +218.27999999999997 +212.63 +214.09999999999997 +215.33999999999997 +213.3 +213.95999999999998 +213.40999999999997 +213.12 +213.84999999999997 +212.94 +216.19 +213.03999999999996 +216.51 +215.14 +213.96999999999997 +214.21999999999997 +213.70999999999998 +216.01 +214.25 +219.14999999999998 +214.11 +214.3 +212.32999999999998 +212.8 +212.5 +213.45999999999998 +214.82 +214.0 +215.38 +213.57 +217.19 +211.74 +214.84999999999997 +212.8 +214.40999999999997 +214.01999999999998 +218.56 +213.65999999999997 +218.45999999999998 +213.18 +214.71999999999997 +213.12 +215.16999999999996 +212.82 +216.24 +213.56 +214.57 +213.90999999999997 +213.20999999999998 +212.01999999999998 +212.24 +212.75 +213.20999999999998 +212.44 +213.01 +213.0 +212.74 +216.32 +214.27999999999997 +215.09999999999997 +214.76 +213.64999999999998 +213.33999999999997 +214.59999999999997 +214.76 +212.59999999999997 +215.95 +214.62 +213.5 +213.86 +212.24 +213.90999999999997 +212.7 +213.95999999999998 +213.62 +215.27999999999997 +213.21999999999997 +215.46999999999997 +214.19 +217.58999999999997 +213.57999999999998 +214.89999999999998 +215.89999999999998 +212.95 +214.05 +217.95999999999998 +214.49 +213.8 +213.57 +213.90999999999997 +215.22999999999996 +212.39 +215.3 +215.0 +212.72999999999996 +213.87 +212.77999999999997 +214.36 +214.22999999999996 +214.06 +214.08999999999997 +214.0 +213.25 +213.91999999999996 +218.46999999999997 +213.03999999999996 +217.11 +213.38 +215.61 +213.16999999999996 +217.89 +214.26 +216.51999999999998 +212.70999999999998 +213.74 +214.39 +213.70999999999998 +214.02999999999997 +215.27999999999997 +214.64999999999998 +217.96999999999997 +214.01999999999998 +216.08999999999997 +213.05 +213.87 +213.38 +213.07999999999998 +215.56 +213.02999999999997 +215.44 +214.14999999999998 +214.08999999999997 +214.21999999999997 +212.09999999999997 +216.57999999999998 +213.07 +218.21999999999997 +213.95999999999998 +214.38 +212.95 +212.97999999999996 +212.49 +215.11 +214.56 +214.65999999999997 +213.66999999999996 +214.65999999999997 +213.05 +213.89999999999998 +214.87 +217.08999999999997 +213.95 +216.34999999999997 +214.19 +213.49 +214.24 +214.86 +217.93 +213.81 +213.95999999999998 +214.16999999999996 +212.88 +217.47999999999996 +214.39 +213.09999999999997 +215.03999999999996 +213.14 +212.8 +212.40999999999997 +213.0 +217.8 +213.44 +215.55 +213.22999999999996 +213.59999999999997 +214.40999999999997 +214.45999999999998 +212.91999999999996 +213.91999999999996 +214.01999999999998 +214.78999999999996 +214.47999999999996 +214.32999999999998 +214.45 +213.27999999999997 +217.8 +214.76999999999998 +217.78999999999996 +212.32999999999998 +214.84999999999997 +213.39 +214.5 +212.68 +212.87 +215.08999999999997 +213.7 +216.3 +215.12 +217.07999999999998 +214.64999999999998 +213.97999999999996 +213.32999999999998 +214.87 +214.16999999999996 +214.88 +214.08999999999997 +212.65999999999997 +213.76999999999998 +213.09999999999997 +212.95 +212.65999999999997 +214.7 +214.75 +212.22999999999996 +214.82 +218.5 +214.96999999999997 +214.38 +214.19 +214.19 +217.94 +214.07 +213.38 +213.22999999999996 +214.2 +213.21999999999997 +214.47999999999996 +215.19 +212.99 +214.32999999999998 +213.15999999999997 +212.38 +213.37 +214.89999999999998 +215.5 +218.53999999999996 +213.95999999999998 +217.01 +213.51999999999998 +214.91999999999996 +214.07999999999998 +212.55 +214.09999999999997 +212.72999999999996 +216.19 +213.18 +219.14 +214.01999999999998 +215.49 +213.20999999999998 +213.22999999999996 +216.95999999999998 +213.71999999999997 +213.28999999999996 +214.20999999999998 +214.03999999999996 +213.99 +215.7 +212.77999999999997 +213.70999999999998 +219.09999999999997 +213.77999999999997 +213.57 +217.64999999999998 +213.51 +214.36 +215.14999999999998 +214.52999999999997 +218.28999999999996 +213.25 +214.16999999999996 +214.3 +213.61 +219.93 +212.33999999999997 +212.36 +213.95999999999998 +214.64 +214.62 +214.33 +214.53 +214.37 +214.07 +214.04 +213.82 +213.61 +213.29 +212.87 +212.3 +211.78 +211.21 +210.69 +209.85 +209.21 +208.55 +207.51 +206.79 +206.11 +205.26 +204.32 +203.46 +202.65 +201.83 +200.78 +200.17 +199.17 +198.32 +197.5 +196.75 +195.77 +194.86 +194.0 +193.29 +192.39 +191.61 +190.78 +189.94 +189.22 +188.43 +187.61 +186.79 +186.2 +185.27 +184.45 +183.92 +183.17 +182.46 +181.83 +181.17 +180.38 +179.62 +179.09 +178.62 +177.84 +177.16 +176.61 +176.07 +175.34 +174.8 +174.09 +173.52 +173.2 +172.57 +172.16 +171.51 +171.08 +170.61 +169.86 +169.42 +169.04 +168.55 +167.99 +167.68 +167.08 +166.84 +166.44 +165.96 +165.46 +165.06 +164.7 +164.32 +163.87 +163.48 +163.13 +162.67 +162.36 +161.95 +161.7 +161.23 +161.01 +160.64 +160.38 +160.15 +159.76 +159.49 +159.22 +158.83 +158.59 +158.35 +157.95 +157.7 +157.41 +157.17 +156.88 +156.72 +156.38 +156.18 +155.84 +155.67 +155.48 +155.17 +155.06 +154.79 +154.64 +154.41 +154.17 +153.94 +153.85 +153.51 +153.36 +153.17 +153.09 +152.88 +152.56 +152.52 +152.27 +152.17 +151.98 +151.72 +151.64 +151.54 +151.35 +151.14 +150.96 +150.86 +150.78 +150.57 +150.58 +150.39 +150.16 +150.07 +150.13 +149.86 +149.86 +149.6 +149.38 +149.47 +149.3 +149.03 +149.18 +149.0 +148.92 +148.62 +148.73 +148.61 +148.44 +148.34 +148.29 +148.07 +148.11 +147.84 +147.87 +147.83 +147.64 +147.53 +147.65 +147.37 +147.34 +147.27 +147.24 +147.2 +147.1 +146.97 +147.06 +146.96 +146.76 +146.73 +146.75 +146.64 +146.58 +146.55 +146.37 +146.42 +146.26 +146.37 +146.21 +146.23 +146.16 +146.06 +146.02 +146.07 +145.95 +145.73 +145.88 +145.71 +145.67 +145.73 +145.59 +145.64 +145.55 +145.55 +145.44 +145.45 +145.57 +145.4 +145.39 +145.32 +145.36 +145.33 +145.31 +145.18 +145.19 +145.15 +145.02 +145.0 +145.07 +144.92 +145.04 +144.94 +144.9 +144.9 +144.9 +144.84 +144.79 +144.81 +144.77 +144.75 +144.68 +144.68 +144.82 +144.76 +144.66 +144.6 +144.68 +144.61 +144.66 +144.54 +144.46 +144.57 +144.56 +144.46 +144.5 +144.51 +144.55 +144.51 +144.57 +144.43 +144.35 +144.26 +144.43 +144.48 +144.46 +144.37 +144.31 +144.24 +144.28 +144.09 +144.29 +144.2 +144.3 +144.15 +144.23 +144.15 +144.13 +144.07 +144.21 +144.15 +144.06 +144.18 +143.94 +143.96 +144.13 +144.02 +144.11 +144.07 +144.13 +144.1 +143.99 +143.96 +143.99 +144.09 +143.99 +144.01 +143.9 +144.07 +143.9 +144.22 +143.99 +144.0 +144.02 +143.9 +143.88 +143.81 +143.95 +143.92 +143.93 +143.87 +143.82 +143.87 +143.82 +143.96 +144.0 +143.86 +143.94 +143.82 +143.99 +143.97 +143.96 +143.88 +143.82 +143.78 +143.87 +143.85 +143.94 +143.94 +143.91 +143.77 +143.88 +143.86 +143.79 +143.77 +143.68 +143.81 +143.74 diff --git a/src/pyvale/data/valid/Pulse254_SteadyDICData.csv b/src/pyvale/data/valid/Pulse254_SteadyDICData.csv new file mode 100755 index 000000000..16081c623 --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_SteadyDICData.csv @@ -0,0 +1,444 @@ +Data Point Number,Timestamp,TC1,TC3,TC4,TC5,TC6,TC7,TC8,TC9,TC10 +353,251.995,,346.7460223,,174.5305686,337.131479,,193.5286668,275.3553121,184.4456509 +354,252.995,,346.7531821,,174.5373351,337.2900242,,193.5554734,275.3933768,184.4556853 +355,253.995,,346.8876264,,174.5652724,337.0567876,,193.5694451,275.3956345,184.4682625 +356,254.995,,347.0137146,,174.5535284,337.1993953,,193.5609573,275.4014259,184.4648994 +357,255.995,,347.1821422,,174.5449519,336.9864912,,193.5400283,275.3804003,184.4742612 +358,256.995,,347.06836,,174.5574135,337.2724589,,193.5548258,275.4269481,184.4741476 +359,257.995,,346.8189888,,174.5633339,337.0738846,,193.5712335,275.3665694,184.4796064 +360,258.995,,346.9351686,,174.5566262,337.1278884,,193.5514753,275.4420369,184.4920036 +361,259.995,,346.8351766,,174.5713635,337.3197066,,193.5801989,275.4233024,184.492303 +362,260.995,,347.0286874,,174.5677436,337.3980689,,193.5674908,275.4639477,184.4688712 +363,261.995,,346.9626118,,174.5850085,337.2741308,,193.5761436,275.5015763,184.4826534 +364,262.995,,347.032023,,174.5830983,337.305524,,193.6026566,275.4276944,184.4930934 +365,263.995,,347.0783867,,174.5899917,337.1464571,,193.5729746,275.4498004,184.4874073 +366,264.995,,347.2630308,,174.603684,337.1586754,,193.62465,275.4536049,184.5022752 +367,265.995,,347.0079088,,174.5987066,337.2758748,,193.6124478,275.4612209,184.5028873 +368,266.995,,347.2521446,,174.5955922,337.1094544,,193.5862664,275.4991865,184.5128213 +369,267.995,,347.1552152,,174.6123517,337.211792,,193.5988401,275.4738125,184.5109495 +370,268.995,,346.8714037,,174.5993563,337.0664565,,193.6186894,275.5051122,184.506101 +371,269.995,,346.6823589,,174.6092697,337.3024881,,193.6090367,275.4710414,184.5157888 +372,270.995,,347.0982327,,174.6265214,337.1680554,,193.6307234,275.4907645,184.5248968 +373,271.995,,346.7952684,,174.6254631,337.1797515,,193.6173164,275.4974358,184.5305961 +374,272.995,,346.6822485,,174.6240584,337.3434037,,193.616843,275.4582459,184.5145082 +375,273.995,,346.8053879,,174.6392749,336.9836011,,193.6232132,275.5045271,184.5322996 +376,274.995,,347.1306772,,174.6349696,337.492979,,193.6293902,275.5089464,184.5447707 +377,275.995,,347.3444649,,174.6345759,337.0740909,,193.6397136,275.4850088,184.53622 +378,276.995,,347.287027,,174.6259123,337.3966835,,193.6329098,275.4693351,184.5436304 +379,277.995,,347.0921798,,174.6353467,337.1573297,,193.6586575,275.4957239,184.5463133 +380,278.995,,346.7217452,,174.6438156,337.2385731,,193.6410361,275.5478986,184.54267 +381,279.995,,346.4363126,,174.6384727,337.3135032,,193.6429132,275.509409,184.5377892 +382,280.994,,347.579519,,174.6482195,337.459512,,193.661285,275.4955603,184.5615263 +383,281.995,,346.8177235,,174.6479452,337.2884587,,193.6516912,275.4900843,184.5523959 +384,282.995,,346.8666477,,174.6467941,337.3332878,,193.6339977,275.5206729,184.5463499 +385,283.994,,347.1547973,,174.6612854,337.3070285,,193.6797156,275.5365784,184.5571232 +386,284.995,,347.0659439,,174.6506055,337.452655,,193.664371,275.4892743,184.554126 +387,285.994,,347.2737503,,174.6614371,337.4505397,,193.6456187,275.5500885,184.5717241 +388,286.995,,346.988804,,174.6561,337.4171137,,193.6435409,275.5523719,184.5635865 +389,287.994,,346.9964156,,174.6717218,337.3382026,,193.6931856,275.4998459,184.5689657 +390,288.994,,347.1745739,,174.6697983,337.2661262,,193.651654,275.5301362,184.5703035 +391,289.994,,347.4861067,,174.6660781,337.3078268,,193.6852094,275.5163263,184.5703093 +392,290.994,,347.2671875,,174.6669359,337.2105417,,193.6639342,275.4960972,184.5592822 +393,291.994,,346.6816056,,174.6583195,337.2549128,,193.6825728,275.4926999,184.567672 +394,292.994,,347.0991827,,174.6796761,337.2318818,,193.680641,275.5050907,184.5778582 +395,293.995,,347.2720664,,174.6738866,337.1884334,,193.672519,275.506934,184.5755601 +396,294.995,,347.2848211,,174.6829953,337.1690602,,193.6858256,275.4587177,184.5795485 +397,295.994,,347.180599,,174.6663003,337.1274332,,193.6740156,275.5323964,184.5768241 +398,296.994,,347.2356382,,174.6782831,337.230994,,193.6601427,275.4869758,184.5715701 +399,297.994,,346.5502704,,174.6799721,337.3612635,,193.6774424,275.5658498,184.5842137 +400,298.994,,347.3707951,,174.6855537,337.3960388,,193.6967726,275.5413825,184.5699902 +401,299.994,,347.0422362,,174.6969116,337.2022292,,193.6603741,275.5069051,184.5778608 +402,300.994,,347.2908222,,174.6941436,337.2999153,,193.6923194,275.497192,184.5860441 +403,301.994,,347.1809337,,174.6792247,337.2657869,,193.685781,275.506237,184.5813683 +404,302.994,,347.2574753,,174.6952327,337.2039663,,193.6880503,275.4959863,184.5880662 +405,303.994,,346.6158624,,174.7101692,337.1743419,,193.6964701,275.5071156,184.5843698 +406,304.994,,346.841224,,174.7003942,337.3094673,,193.7002036,275.4844725,184.5829773 +407,305.994,,346.7745465,,174.6970071,337.1318612,,193.6923884,275.5190018,184.59963 +408,306.995,,346.8448539,,174.6946312,337.2914633,,193.7137756,275.4408171,184.5804727 +409,307.994,,346.5872067,,174.7003189,337.1952348,,193.6828875,275.5022918,184.5866307 +410,308.994,,347.1302471,,174.6966989,337.2528628,,193.6974386,275.5110015,184.5988555 +411,309.994,,347.2478934,,174.7071312,337.4463516,,193.7088076,275.4688288,184.5934481 +412,310.994,,346.930275,,174.7031251,337.2904541,,193.6819673,275.4816928,184.5880407 +413,311.994,,347.1351389,,174.6955123,337.2229635,,193.6941546,275.4357853,184.5818206 +414,312.994,,347.0304033,,174.6992442,337.2615429,,193.7107023,275.4489275,184.5927798 +415,313.994,,347.3936348,,174.6905084,337.4959869,,193.694973,275.4793877,184.5879993 +416,314.994,,347.172943,,174.7048921,337.1476609,,193.6939864,275.4650657,184.5977328 +417,315.994,,346.8261453,,174.6930552,337.1432395,,193.7019476,275.5133464,184.5891498 +418,316.994,,346.421962,,174.7182914,337.1526862,,193.6962085,275.5147884,184.6179004 +419,317.995,,346.8515339,,174.7199937,337.1536472,,193.6832337,275.5005899,184.5806846 +420,318.994,,347.0956182,,174.7192744,337.3230847,,193.7065113,275.5026082,184.599541 +421,319.994,,346.8447686,,174.7050217,337.4088809,,193.6983097,275.5098099,184.5897057 +422,320.994,,346.5478112,,174.7104765,337.029033,,193.7005053,275.5012994,184.6047196 +423,321.994,,347.0104261,,174.7058927,337.2386996,,193.6893958,275.5285494,184.5929078 +424,322.994,,346.8599344,,174.7126844,337.1109728,,193.7055099,275.4579223,184.5987724 +425,323.994,,346.9019602,,174.7185461,337.1288489,,193.6887749,275.5179805,184.5939181 +426,324.994,,346.7570684,,174.7363038,337.096128,,193.7023469,275.5327593,184.6119219 +427,325.994,,346.816643,,174.7250652,337.1159149,,193.7004226,275.5120903,184.5990437 +428,326.994,,347.2980775,,174.7070657,337.1078228,,193.7026845,275.4902816,184.5793996 +429,327.994,,346.9549261,,174.7067061,337.2006814,,193.6832201,275.4675093,184.58976 +430,328.994,,346.9238951,,174.7137057,337.1868699,,193.6860291,275.4426082,184.583714 +431,329.994,,347.2100694,,174.720552,337.3274294,,193.6973052,275.4490403,184.5896331 +432,330.994,,347.8046948,,174.7146828,337.3104387,,193.6818811,275.3837638,184.5860901 +433,331.994,,346.7614036,,174.7135774,337.1863011,,193.7022096,275.4474662,184.58545 +434,332.994,,347.0147129,,174.7261984,337.2260337,,193.6850145,275.3582712,184.6108981 +435,333.994,,347.6326122,,174.7385203,337.2616891,,193.7003708,275.4506614,184.5980597 +436,334.993,,347.0498833,,174.7260775,337.041964,,193.7100558,275.432671,184.6110102 +437,335.993,,346.6173414,,174.7315059,337.2322302,,193.6728507,275.4325148,184.5975655 +438,336.994,,346.6379024,,174.7226698,337.0621139,,193.699424,275.4438523,184.6075999 +439,337.994,,346.841688,,174.7260288,337.0722424,,193.6871747,275.4742981,184.6014064 +440,338.994,,346.6454694,,174.7324226,337.062087,,193.6912416,275.4522052,184.603377 +441,339.993,,346.8860294,,174.7273185,336.9854006,,193.6882319,275.4551682,184.5989682 +442,340.993,,346.8103481,,174.7243235,336.9555521,,193.6987486,275.3308529,184.596204 +443,341.993,,347.0784652,,174.7328264,337.0243444,,193.6839571,275.4297222,184.5932938 +444,342.993,,347.0656393,,174.7194522,337.1453247,,193.6966709,275.4153556,184.5822402 +445,343.994,,346.9961309,,174.7389594,337.004351,,193.6786766,275.4572037,184.6066558 +446,344.993,,346.8686569,,174.7401768,337.0469908,,193.6736041,275.4119567,184.6036793 +447,345.993,,347.3414602,,174.7322781,337.1522537,,193.6966886,275.3895522,184.6036984 +448,346.993,,347.067768,,174.7396034,336.9806628,,193.6863105,275.3962238,184.5956479 +449,347.993,,346.9942142,,174.7346319,337.1533926,,193.7034701,275.4047518,184.5974311 +450,348.993,,346.6604026,,174.7456642,337.0678533,,193.691209,275.3944175,184.596586 +451,349.993,,347.2357455,,174.7482582,336.9722262,,193.697299,275.3684018,184.6189912 +452,350.993,,347.4463131,,174.737991,336.7447607,,193.6993752,275.3119828,184.6087163 +453,351.993,,347.1663033,,174.7354617,336.9044508,,193.6789051,275.3387417,184.6094479 +454,352.993,,346.9633347,,174.7317755,336.8770618,,193.678246,275.3709435,184.6048268 +455,353.993,,346.9415935,,174.7533521,336.9376358,,193.6919109,275.3137862,184.6049787 +456,354.993,,347.4802478,,174.7426397,336.9255947,,193.6688455,275.3518386,184.5996185 +457,355.993,,346.7988275,,174.7439824,336.9547532,,193.7072332,275.3159982,184.6119156 +458,356.993,,347.167851,,174.73824,337.0910696,,193.6721324,275.3217382,184.6040715 +459,357.993,,347.6416896,,174.7389048,336.9753113,,193.692601,275.3651935,184.6014741 +460,358.993,,347.3663175,,174.7323503,336.9206481,,193.6746273,275.308082,184.5986435 +461,359.993,,347.1233752,,174.7368074,336.973526,,193.6683692,275.3241953,184.5949472 +462,360.993,,347.1063571,,174.7458425,336.8528466,,193.6899895,275.330265,184.6009593 +463,361.993,,347.2072804,,174.7374382,336.9890697,,193.6629428,275.282679,184.569943 +464,362.993,,347.3090636,,174.7408783,337.0119859,,193.672908,275.286025,184.5903983 +465,363.993,,347.455442,,174.7414561,337.0863448,,193.6588081,275.2571409,184.579324 +466,364.993,,347.5906196,,174.7336179,337.0556502,,193.6609846,275.2655992,184.5770732 +467,365.993,,347.2213031,,174.7506637,336.7626931,,193.649847,275.2916919,184.5911019 +468,366.993,,346.8839203,,174.7421194,336.8787158,,193.6597046,275.2672994,184.5816191 +469,367.993,,347.2446741,,174.7550073,336.8201466,,193.6576874,275.3210587,184.5942835 +470,368.993,,346.9682255,,174.762259,336.9876388,,193.6765915,275.3000254,184.5968795 +471,369.993,,347.4581119,,174.7512268,337.1837748,,193.6746407,275.3078685,184.5988899 +472,370.993,,346.9500704,,174.7612597,336.816545,,193.6695342,275.3583972,184.5986761 +473,371.993,,346.9847763,,174.758558,336.729222,,193.6847711,275.3351579,184.5859513 +474,372.993,,346.5830639,,174.7563148,336.8200606,,193.6755373,275.2935643,184.5983885 +475,373.993,,347.1895037,,174.7708329,336.8660721,,193.6555803,275.3278439,184.5961376 +476,374.993,,346.8720594,,174.7742317,337.016049,,193.6575828,275.3578769,184.6058314 +477,375.993,,346.5221051,,174.7749628,336.9166304,,193.6669346,275.3205356,184.592813 +478,376.993,,346.935958,,174.7695993,336.9311172,,193.6638985,275.3363837,184.60842 +479,377.993,,347.180893,,174.7748951,336.8704077,,193.6661679,275.3308888,184.6088257 +480,378.993,,346.9162394,,174.7974771,336.7410675,,193.6910898,275.3551174,184.6193056 +481,379.993,,346.7840475,,174.7891199,336.8853661,,193.6731766,275.3676007,184.6090779 +482,380.993,,347.2114799,,174.7900235,336.9618226,,193.6764104,275.3612315,184.6085838 +483,381.993,,347.2102291,,174.8080481,336.8388242,,193.6783672,275.3678903,184.6065793 +484,382.993,,347.1098148,,174.8011472,337.0003461,,193.7145651,275.3210877,184.6045675 +485,383.993,,347.1300287,,174.7952117,336.8412503,,193.6918522,275.3574441,184.6165725 +486,384.993,,347.2483451,,174.8203157,336.7925938,,193.6966977,275.3648728,184.6309744 +487,385.993,,346.4456916,,174.8184851,336.7261738,,193.6939344,275.3683018,184.6279773 +488,386.993,,346.8970467,,174.8147251,336.7395208,,193.6957644,275.3573969,184.6267781 +489,387.993,,346.6164299,,174.8197483,337.0094601,,193.7045175,275.3625089,184.622716 +490,388.993,,347.5084913,,174.8289162,336.9330595,,193.7209119,275.3193303,184.6412125 +491,389.993,,347.981709,,174.8259418,336.7805878,,193.6876484,275.4018279,184.6296131 +492,390.992,,347.2995901,,174.837891,336.9200235,,193.7030976,275.3457265,184.6397066 +493,391.993,,346.858528,,174.8455894,336.6801006,,193.7250112,275.3738254,184.6523046 +494,392.993,,347.762122,,174.8442438,336.6841639,,193.7252959,275.3593797,184.6376742 +495,393.993,,347.2044598,,174.8318407,336.5853191,,193.7131204,275.3783469,184.6541603 +496,394.992,,347.6133972,,174.868689,336.713146,,193.7152703,275.3525775,184.652582 +497,395.992,,346.5945106,,174.8448674,336.7474218,,193.7131057,275.3604392,184.6504168 +498,396.992,,347.113175,,174.8530905,336.6808164,,193.7350784,275.2970887,184.6644721 +499,397.992,,346.6855598,,174.859225,336.7616156,,193.7379538,275.3390693,184.6442764 +500,398.992,,346.3920261,,174.8677945,336.793012,,193.7458281,275.3141082,184.6572801 +501,399.993,,346.761981,,174.8674143,336.69364,,193.7186547,275.3683253,184.6622598 +502,400.992,,346.9316616,,174.8792309,336.6866694,,193.7297775,275.3372359,184.6687247 +503,401.992,,347.026163,,174.8869485,336.7848166,,193.7482156,275.3424771,184.6745835 +504,402.992,,346.827993,,174.8808199,336.5526093,,193.7309012,275.3478415,184.684764 +505,403.992,,347.6428481,,174.8928827,336.7566042,,193.7324849,275.3092902,184.676327 +506,404.992,,346.9712854,,174.8984248,336.561216,,193.7608616,275.2847817,184.6851358 +507,405.992,,346.6563156,,174.8972,336.8894019,,193.7796727,275.3535801,184.6843762 +508,406.992,,346.7140793,,174.9064284,336.7871906,,193.7467353,275.3426235,184.706429 +509,407.992,,347.1975473,,174.8991546,336.7057469,,193.7536703,275.2272786,184.7024126 +510,408.992,,346.878847,,174.9173122,336.6564583,,193.7632152,275.2850314,184.6986765 +511,409.992,,346.8840219,,174.9068722,336.6796878,,193.7392579,275.2982075,184.706407 +512,410.992,,347.0268023,,174.9225477,336.6773041,,193.7607646,275.2912561,184.7036827 +513,411.992,,346.8410631,,174.9256548,336.5266345,,193.7610772,275.2883889,184.7072582 +514,412.992,,347.1656348,,174.9301519,336.7882763,,193.7702358,275.3348927,184.7066314 +515,413.992,,347.2843715,,174.9533667,336.6481668,,193.7515236,275.2881611,184.7189093 +516,414.992,,347.6116429,,174.927409,336.6993525,,193.79079,275.2620082,184.7078484 +517,415.992,,347.6484681,,174.9471836,336.656964,,193.7914683,275.3120461,184.7092261 +518,416.992,,347.1507655,,174.9579627,336.6026165,,193.8092413,275.2554839,184.7223433 +519,417.992,,346.6473554,,174.9509688,336.5785258,,193.7866348,275.2584215,184.7293275 +520,418.992,,346.8738902,,174.9673371,336.7152853,,193.7915938,275.3257583,184.7450083 +521,419.992,,347.4315396,,174.9550002,336.6062467,,193.7822805,275.2967715,184.7422177 +522,420.992,,347.3122118,,174.9521246,336.7500001,,193.8122541,275.2568275,184.7374756 +523,421.992,,347.3604539,,174.9768164,336.4783963,,193.7924566,275.2803902,184.7339859 +524,422.992,,346.5781775,,174.974321,336.7152827,,193.7853006,275.2704884,184.7554929 +525,423.992,,347.2473773,,174.9762697,336.521135,,193.8173046,275.255169,184.7499853 +526,424.992,,346.5193322,,174.9900498,336.5396821,,193.8119859,275.2432027,184.7535209 +527,425.992,,347.5737581,,174.9936287,336.380317,,193.8125375,275.2503078,184.7580345 +528,426.992,,347.5657121,,174.9987449,336.7328711,,193.7980854,275.2328594,184.7589594 +529,427.992,,347.7221889,,174.9947254,336.6197555,,193.8141007,275.2146796,184.7658905 +530,428.992,,347.2353281,,175.0135421,336.5505811,,193.8459719,275.2381911,184.7781951 +531,429.992,,347.4277313,,175.0111131,336.4646299,,193.8360865,275.2562145,184.7832219 +532,430.992,,346.7071542,,175.0221709,336.4424369,,193.8287433,275.2162311,184.7987155 +533,431.992,,346.9501041,,175.0267815,336.6792164,,193.8263664,275.2859503,184.7895794 +534,432.992,,347.3762267,,175.0205128,336.6480156,,193.8378017,275.2429324,184.7937936 +535,433.992,,347.3144826,,175.0287833,336.646123,,193.8477063,275.2308169,184.7897182 +536,434.992,,347.0098602,,175.0446124,336.5992869,,193.8588821,275.1830154,184.8111515 +537,435.992,,346.3798606,,175.0451445,336.6365908,,193.8323887,275.183986,184.8193747 +538,436.992,,347.3692887,,175.040991,336.5596937,,193.8450082,275.1473277,184.8049641 +539,437.992,,346.5385784,,175.055996,336.6527792,,193.8306636,275.1829884,184.8052974 +540,438.992,,346.6143645,,175.0684114,336.530869,,193.8531021,275.1615396,184.81073 +541,439.991,,347.0160023,,175.0621958,336.4172071,,193.8902183,275.2336416,184.8236201 +542,440.992,,347.3956443,,175.0596267,336.6729803,,193.8638843,275.1838015,184.8436552 +543,441.992,,347.0488504,,175.0703661,336.6052151,,193.8695024,275.1611757,184.8383216 +544,442.991,,347.128699,,175.0895885,336.6570702,,193.867764,275.1918774,184.8263285 +545,443.992,,347.3383019,,175.0813372,336.5347719,,193.853452,275.1981224,184.8402113 +546,444.992,,347.8154855,,175.0799193,336.7026683,,193.8962997,275.1516665,184.841589 +547,445.991,,347.1825192,,175.0786414,336.5549365,,193.8866341,275.1930087,184.8410094 +548,446.992,,347.0691895,,175.0834246,336.5844924,,193.8655584,275.1133962,184.8439315 +549,447.992,,346.7677231,,175.1023284,336.4462702,,193.891459,275.1598715,184.84234 +550,448.992,,346.7974208,,175.1109381,336.4215098,,193.9007709,275.1811571,184.8700658 +551,449.991,,347.2425975,,175.1096204,336.736236,,193.8929293,275.1757981,184.868048 +552,450.991,,347.1352227,,175.1096662,336.4958899,,193.9006634,275.1522849,184.8578396 +553,451.992,,347.3291932,,175.1156211,336.5308051,,193.9045238,275.1741597,184.8752182 +554,452.991,,347.0458265,,175.1217088,336.5299442,,193.9026926,275.1719261,184.8729202 +555,453.991,,346.2446252,,175.1367996,336.5011321,,193.9273412,275.1646318,184.885924 +556,454.991,,347.1821383,,175.1169038,336.4087129,,193.8950899,275.1493576,184.8760356 +557,455.991,,347.5962773,,175.147299,336.4915615,,193.9422712,275.1968158,184.9043543 +558,456.991,,347.4454287,,175.1464796,336.4521975,,193.9111642,275.1822015,184.8953776 +559,457.991,,346.7630917,,175.15479,336.3959299,,193.9232055,275.184395,184.9018293 +560,458.991,,347.1212132,,175.1509503,336.4045184,,193.9296154,275.1815665,184.9131353 +561,459.991,,346.8048556,,175.1610768,336.3954826,,193.947667,275.1384107,184.9099848 +562,460.991,,346.8648637,,175.1586743,336.4440272,,193.9228976,275.1340352,184.9094451 +563,461.991,,346.8197165,,175.1607365,336.3904737,,193.9624701,275.1881401,184.9075468 +564,462.991,,346.6867813,,175.1630183,336.5362724,,193.9598603,275.1199122,184.9252116 +565,463.991,,347.402894,,175.1966742,336.5446377,,193.9429724,275.1290892,184.9288269 +566,464.991,,347.2645775,,175.1823809,336.4299316,,193.9547673,275.121303,184.9254772 +567,465.991,,346.9866178,,175.1829323,336.4728303,,193.9571828,275.1345245,184.9376816 +568,466.991,,347.2245,,175.1773828,336.4151105,,193.9341578,275.08201,184.9458782 +569,467.991,,347.4212102,,175.1894593,336.3689159,,193.9560239,275.1349834,184.9500393 +570,468.991,,346.898553,,175.2021888,336.3942624,,193.9738836,275.0852975,184.9343452 +571,469.991,,347.4346726,,175.1983756,336.6421557,,193.9647105,275.0618808,184.9447455 +572,470.991,,347.0169193,,175.2161611,336.4961738,,194.0146534,275.0533561,184.9422677 +573,471.991,,347.2077427,,175.2064858,336.399938,,193.9753864,275.113715,184.9556578 +574,472.991,,346.3518074,,175.214783,336.4997603,,193.9720378,275.0626625,184.9520751 +575,473.991,,347.4887947,,175.2296676,336.7140405,,193.9941502,275.053808,184.9634741 +576,474.991,,347.0269993,,175.2136306,336.4471433,,193.9592361,275.0726414,184.9495236 +577,475.991,,347.2190917,,175.218321,336.3637705,,193.9830324,275.0579488,184.9665689 +578,476.991,,347.1116597,,175.2401997,336.5075954,,194.0077147,275.0726602,184.9623607 +579,477.991,,347.2448685,,175.2519566,336.7808718,,193.9849952,275.1260023,184.9916044 +580,478.991,,347.1889106,,175.2457686,336.6473954,,194.0074612,275.1036741,184.975158 +581,479.991,,347.003031,,175.2519831,336.6410811,,193.992943,275.0657728,184.9867369 +582,480.991,,347.4806827,,175.2708138,336.5041279,,194.0038591,275.0689113,185.0186311 +583,481.991,,347.2368023,,175.267067,336.3263734,,194.0105949,275.074781,184.9927419 +584,482.991,,347.3607881,,175.2650168,336.4272162,,193.9992249,275.0304262,184.9946522 +585,483.991,,346.7730355,,175.2555212,336.526503,,194.0018408,275.0707998,184.988646 +586,484.991,,346.7875968,,175.2697736,336.428649,,193.9802198,275.108221,185.0061707 +587,485.991,,347.465655,,175.2754029,336.4463044,,194.0161381,275.0541202,185.0078419 +588,486.991,,347.1328202,,175.2825285,336.5211429,,194.0207035,275.1478093,185.0154384 +589,487.991,,346.8331574,,175.2935276,336.191366,,194.0107386,275.1066341,185.0234153 +590,488.991,,347.0079339,,175.2747959,336.2702165,,194.0383627,275.0777681,185.0200523 +591,489.991,,347.3095757,,175.293121,336.3745142,,194.0324646,275.090835,185.016716 +592,490.991,,347.8001217,,175.318912,336.3403363,,194.0624582,275.0910028,185.0474183 +593,491.991,,347.4299865,,175.310634,336.2124298,,194.0201627,275.1062832,185.0405331 +594,492.991,,347.0398368,,175.3194768,336.4691051,,194.0660518,275.0736567,185.045886 +595,493.991,,347.4198726,,175.3101006,336.4041532,,194.0594682,275.0663491,185.0441943 +596,494.99,,347.6636081,,175.3116103,336.499483,,194.0514263,275.1074593,185.059921 +597,495.991,,347.34383,,175.3272143,336.2952099,,194.0388456,275.0549054,185.0536286 +598,496.991,,346.9829045,,175.3048225,336.5911034,,194.0385788,275.0739008,185.040777 +599,497.99,,348.1245612,,175.3254368,336.4404694,,194.0925158,275.0348278,185.047189 +600,498.99,,346.3721416,,175.3470756,336.2749784,,194.0428714,275.0352609,185.0571896 +601,499.99,,347.4424434,,175.347381,336.433606,,194.060417,275.024911,185.0775376 +602,500.99,,347.1476755,,175.3369139,336.3745223,,194.0664877,275.0317198,185.0614703 +603,501.99,,347.348728,,175.351187,336.3995626,,194.0900846,275.0804877,185.0787825 +604,502.991,,347.0459131,,175.36494,336.2552876,,194.0963871,275.0431226,185.0785616 +605,503.99,,346.2559509,,175.3325939,336.6542656,,194.0463238,275.1604874,185.0858127 +606,504.991,,347.1686728,,175.3774428,336.4374145,,194.0977113,275.0652507,185.1017931 +607,505.991,,346.8946893,,175.4082312,336.3264013,,194.0395132,275.0276916,185.0941483 +608,506.99,,347.6598329,,175.3640338,336.4923679,,194.1215738,275.0388432,185.0900065 +609,507.99,,347.252258,,175.3653974,336.4831925,,194.1010382,275.0394899,185.1027905 +610,508.99,,346.745643,,175.3816001,336.6293838,,194.120042,275.0149273,185.110381 +611,509.99,,347.9045186,,175.3840147,336.6968102,,194.1133715,274.9681183,185.1097676 +612,510.99,,347.4032643,,175.3761565,336.6027641,,194.111568,274.9661381,185.1070313 +613,511.99,,346.9059372,,175.3920129,336.5017641,,194.1325551,274.986545,185.1163727 +614,512.99,,347.4849502,,175.4000968,336.3348919,,194.099871,274.9737934,185.1158391 +615,513.99,,347.0282724,,175.405001,336.2829435,,194.1511388,274.9608938,185.1209795 +616,514.99,,347.5014172,,175.3967759,336.440762,,194.1095957,274.9161942,185.1271982 +617,515.99,,347.2423198,,175.4246695,336.4639024,,194.1701148,274.9809311,185.1429914 +618,516.99,,347.0788527,,175.3848511,336.7433243,,194.1081507,274.9399351,185.126452 +619,517.99,,347.0337066,,175.417189,336.3840403,,194.0943703,274.8846253,185.1184933 +620,518.99,,347.0067413,,175.4288943,336.426692,,194.1200579,274.9750729,185.115524 +621,519.99,,347.088824,,175.4192381,336.4495586,,194.143015,274.9452923,185.139887 +622,520.99,,347.510079,,175.4179204,336.2368854,,194.1421628,274.9730072,185.1320429 +623,521.99,,347.1622406,,175.4357136,336.4974464,,194.1415568,274.9182755,185.1242122 +624,522.99,,347.4519479,,175.4225047,336.5960756,,194.1563006,274.9339713,185.1552744 +625,523.99,,347.308426,,175.4570463,336.4973563,,194.0939358,274.9186371,185.1306435 +626,524.99,,347.4360153,,175.4468784,336.4568462,,194.1038005,274.9107857,185.1451724 +627,525.99,,347.4277458,,175.4585161,336.3011809,,194.1515531,274.9336592,185.1584491 +628,526.99,,347.3988875,,175.4626552,336.3773988,,194.1703709,274.9650962,185.1593282 +629,527.99,,346.948103,,175.4746454,336.2517292,,194.1166661,274.9305452,185.1689956 +630,528.99,,347.8111564,,175.4941488,336.1769619,,194.1359427,274.9298069,185.15402 +631,529.99,,348.0006009,,175.4583811,336.5633044,,194.09597,274.8730413,185.1846488 +632,530.99,,346.8708528,,175.4863159,336.3529999,,194.1954368,274.9384988,185.172983 +633,531.99,,348.1128865,,175.490029,336.502846,,194.174223,274.990136,185.1937112 +634,532.99,,346.6306611,,175.5123006,335.9530363,,194.2309816,275.0108925,185.16962 +635,533.99,,347.1463606,,175.4899543,336.4077752,,194.1517827,274.9406786,185.2066874 +636,534.99,,347.2410821,,175.4983725,336.2249401,,194.1807053,274.9479606,185.1869118 +637,535.99,,346.9325878,,175.5036484,336.4465329,,194.1503378,274.837556,185.1928903 +638,536.99,,347.26504,,175.4851624,336.3931516,,194.2411106,274.9468914,185.1785872 +639,537.99,,348.110868,,175.5163374,336.4849969,,194.1504502,274.8843335,185.1860111 +640,538.99,,347.2490686,,175.5518845,336.3049482,,194.223517,275.0491669,185.2297379 +641,539.99,,347.0263928,,175.4996941,336.4057279,,194.158031,274.983453,185.2315818 +642,540.99,,347.7287235,,175.5010976,336.5897098,,194.2262983,274.8828758,185.2040878 +643,541.99,,347.3879005,,175.5450557,336.1199985,,194.2781908,275.0456963,185.2499386 +644,542.99,,348.2815192,,175.5119836,336.3207103,,194.217851,274.9818145,185.2303623 +645,543.99,,346.998532,,175.5463325,336.2599361,,194.0993794,275.0029913,185.2258136 +646,544.99,,347.4285807,,175.524832,336.3002305,,194.0576032,274.9834379,185.2637274 +647,545.99,,347.8827632,,175.5471773,336.4578833,,194.2318548,274.9179558,185.240642 +648,546.99,,346.5082893,,175.6206276,336.7998179,,194.0940199,275.1978004,185.1773379 +649,547.989,,347.7588087,,175.5329426,336.6173016,,194.1428312,275.0198698,185.2284957 +650,548.989,,347.4072238,,175.5551939,336.3279647,,194.1436558,274.8661729,185.2272231 +651,549.99,,347.2692778,,175.5172973,336.1522946,,194.1136684,274.9453003,185.2608489 +652,550.989,,347.0448222,,175.5601369,336.2718161,,194.1632777,274.922406,185.2657286 +653,551.989,,347.698287,,175.5382911,336.1442973,,194.2700263,275.0619961,185.2646104 +654,552.99,,347.8194597,,175.5444987,336.6433068,,194.2676158,274.9416289,185.279911 +655,553.99,,347.1455236,,175.5747893,336.3933361,,194.2972165,274.9996348,185.2438013 +656,554.989,,347.6078743,,175.5623055,336.5372618,,194.2462886,274.9557776,185.2723266 +657,555.989,,347.4864013,,175.6009735,336.3577499,,194.2798427,274.9648449,185.2793242 +658,556.989,,347.8867459,,175.5722927,336.4788091,,194.2558129,274.9204107,185.2839515 +659,557.989,,347.5729868,,175.57739,336.6739069,,194.249962,274.979058,185.2713402 +660,558.989,,347.4169182,,175.5990755,336.1911275,,194.22902,274.9469147,185.2876793 +661,559.989,,347.8899092,,175.5993483,336.2986574,,194.2684321,274.9401573,185.2821259 +662,560.989,,347.4984962,,175.5879686,336.5214707,,194.2850058,274.8905768,185.2649128 +663,561.99,,348.2879869,,175.6156178,336.2283766,,194.336426,274.9949461,185.2855879 +664,562.989,,347.3385973,,175.5947157,336.3671454,,194.3325248,274.9721238,185.2844819 +665,563.989,,347.0801424,,175.6165351,336.5702303,,194.192202,274.8936699,185.3347474 +666,564.99,,347.1323814,,175.567372,336.3984992,,194.2075578,274.9801876,185.3135193 +667,565.989,,347.0727274,,175.6104326,336.3763962,,194.2641435,274.9210356,185.3253783 +668,566.989,,347.2157128,,175.6328506,336.4045517,,194.374631,275.0203156,185.3186791 +669,567.989,,348.3185024,,175.6334758,336.5962623,,194.2566741,274.9427694,185.3353852 +670,568.989,,347.613962,,175.6133724,336.414446,,194.2759372,274.938167,185.3217946 +671,569.989,,347.1838402,,175.65248,336.2545295,,194.3835492,275.0366893,185.3262021 +672,570.989,,347.6570711,,175.6420319,336.3147736,,194.3255723,274.9254928,185.3106204 +673,571.989,,348.2442214,,175.6393699,336.5053471,,194.3783564,274.9967542,185.3030625 +674,572.989,,347.4647018,,175.6330743,336.4208222,,194.3161462,274.9444177,185.3307885 +675,573.989,,348.5580692,,175.6490844,336.4042621,,194.3836473,275.0213806,185.3032281 +676,574.989,,346.6698522,,175.630259,336.3909199,,194.3452471,274.9507408,185.3314672 +677,575.989,,347.807566,,175.643887,336.4342973,,194.3050627,274.9272971,185.3250614 +678,576.99,,348.1220234,,175.6441924,336.4629111,,194.3028055,274.9382415,185.3440111 +679,577.989,,347.0468739,,175.6754681,336.566447,,194.3133556,274.9142929,185.3482725 +680,578.989,,346.9813926,,175.6691327,336.1843919,,194.3633973,275.0229842,185.3486915 +681,579.989,,347.1078036,,175.6730982,336.3121835,,194.3121499,274.8120814,185.3673418 +682,580.989,,346.9429594,,175.6758665,336.0387417,,194.3058331,274.9008614,185.3563618 +683,581.989,,347.9347696,,175.67176,336.3343181,,194.2900769,274.9041165,185.3636723 +684,582.989,,347.344664,,175.691177,336.4628515,,194.2689623,274.8473374,185.3954531 +685,583.989,,346.5213513,,175.6612649,336.3592813,,194.2905285,274.849279,185.355035 +686,584.989,,347.7555989,,175.7005464,336.3424794,,194.3719886,274.9842194,185.3847859 +687,585.989,,347.4818986,,175.7092365,336.4665398,,194.2707187,274.9108918,185.3669135 +688,586.989,,346.9639059,,175.7233304,336.2619339,,194.3325757,274.9053446,185.361906 +689,587.989,,346.8208354,,175.6859254,336.2979276,,194.4908547,274.777436,185.4300501 +690,588.989,,347.5453622,,175.6992675,336.3231912,,194.4023931,274.9453705,185.4012181 +691,589.989,,347.7673993,,175.7612995,336.4851683,,194.3870958,274.9685537,185.4024621 +692,590.989,,348.0232967,,175.660458,335.8790211,,194.4635167,274.8561966,185.3947785 +693,591.989,,346.7185488,,175.6903557,336.1482908,,194.3037854,274.9303594,185.3941652 +694,592.989,,347.0500466,,175.7269885,336.5370571,,194.3823629,274.9811681,185.4110114 +695,593.989,,348.2299308,,175.7164607,336.0999146,,194.2884287,274.9122551,185.4414941 +696,594.989,,347.1881832,,175.7662427,336.7004106,,194.5735221,275.0093804,185.3328318 +697,595.989,,348.8261947,,175.6642223,335.7015242,,194.6040334,274.9056198,185.3423798 +698,596.989,,347.7949264,,175.7417996,336.3306874,,194.4682334,275.0170944,185.409285 +699,597.989,,347.7043315,,175.6950517,336.5265487,,194.4995174,274.9600726,185.3904743 +700,598.989,,346.9180418,,175.7828712,336.4237574,,194.2893923,274.9134186,185.4636658 +701,599.988,,347.6403774,,175.7704198,336.7815647,,194.4246407,275.0508205,185.4554017 +702,600.989,,347.0282405,,175.835375,336.7255687,,194.4791287,274.9998254,185.3777689 +703,601.989,,346.8992041,,175.7203712,336.6377601,,194.6723104,274.8533062,185.3899407 +704,602.989,,347.9564854,,175.7493774,336.4659482,,194.4301513,275.0079279,185.4583506 +705,603.989,,346.4909367,,175.7774459,336.9100421,,194.1425509,275.0399849,185.5356103 +706,604.988,,346.3957855,,175.8512783,335.9486709,,194.6001037,274.8159378,185.3806309 +707,605.989,,347.7432471,,175.7617277,336.1432593,,194.1804122,274.7705173,185.5392257 +708,606.988,,346.8314158,,175.7840665,336.2286543,,194.5524449,274.8230573,185.4956246 +709,607.988,,349.732404,,175.8814363,336.211272,,194.6626506,275.2869985,185.5145151 +710,608.988,,348.8512776,,175.6973778,336.3960892,,194.558688,275.1834243,185.375556 +711,609.988,,347.9684205,,175.7886113,336.0427728,,194.6140674,274.9144709,185.3496208 +712,610.988,,346.1107972,,175.7672297,336.1233267,,194.404443,274.9127033,185.4421883 +713,611.989,,348.0883425,,175.7881649,336.9185205,,194.3832162,274.7969126,185.5127764 +714,612.989,,348.4127519,,175.820998,336.2046951,,194.2739458,275.1124712,185.4298029 +715,613.988,,346.4084956,,175.8060714,336.1411163,,194.3035128,275.1074679,185.4169646 +716,614.988,,347.7744617,,175.8597337,336.722354,,194.4235853,274.9510261,185.4722909 +717,615.988,,347.0584119,,175.7401378,336.6085184,,194.2168267,275.2530979,185.4754402 +718,616.988,,347.6810272,,175.8226008,336.073312,,194.2878965,274.9896663,185.5143731 +719,617.988,,346.9809794,,175.7874846,336.0764851,,194.2453158,275.1317504,185.4307607 +720,618.988,,348.1857284,,175.7965875,336.8170983,,194.7506413,275.0293799,185.4247208 +721,619.988,,345.4032514,,175.801638,336.0556925,,194.3118916,275.139173,185.4108972 +722,620.989,,348.8008466,,175.810129,336.2078917,,194.3080374,275.1891102,185.4378044 +723,621.988,,347.6007266,,175.8576294,336.6400616,,194.5111732,274.8728618,185.5105033 +724,622.988,,346.9886414,,175.8960926,336.6548106,,194.5407927,274.8615664,185.569265 +725,623.988,,348.6012013,,175.91418,336.224114,,194.4656975,275.0930072,185.4785282 +726,624.988,,347.5334342,,175.9006374,336.5938242,,194.6552982,274.7977962,185.579872 +727,625.988,,346.8555515,,175.7423914,336.9415925,,194.4972473,274.9071205,185.4760638 +728,626.988,,348.9574543,,175.9572149,335.8380125,,194.6892904,275.3491403,185.6458052 +729,627.988,,345.7028969,,175.9631103,336.1190916,,194.6865675,274.7867459,185.4331016 +730,628.988,,348.3500865,,175.9191295,336.612867,,194.514912,274.9249774,185.5459385 +731,629.988,,346.6979719,,175.9039034,336.3110611,,194.221283,275.1733943,185.4726734 +732,630.988,,347.3659812,,175.9717077,336.0095693,,194.6658133,275.3181602,185.5687173 +733,631.988,,345.8530409,,175.9330901,336.6371599,,194.4568888,275.1084537,185.4487417 +734,632.988,,347.6307934,,175.9516435,335.8179576,,194.1616347,274.6521179,185.4866494 +735,633.988,,347.3353674,,175.847545,336.4303756,,194.7995133,275.2363712,185.4938873 +736,634.988,,348.0093585,,175.7756484,336.8924894,,194.6190397,274.826423,185.5230913 +737,635.988,,345.8002818,,175.8310339,336.257346,,194.3764737,275.158022,185.4929807 +738,636.988,,348.3218636,,175.8738497,336.3480727,,194.3810933,275.1527733,185.4866484 +739,637.988,,347.0184174,,175.9576575,335.9066829,,194.7971287,275.3547802,185.529023 +740,638.988,,348.7086085,,175.959155,335.401153,,194.1523741,274.7706648,185.4848433 +741,639.988,,348.3483613,,175.8097248,335.7213123,,194.3195146,274.8251334,185.4767857 +742,640.988,,344.9840514,,175.8185754,336.3054068,,194.2859668,274.5883792,185.4166584 +743,641.988,,349.1243356,,175.8234195,336.9669893,,194.2297735,275.0953453,185.5555102 +744,642.988,,348.3890402,,176.0119389,337.1405551,,194.6224189,274.9749222,185.6383366 +745,643.988,,346.1933608,,175.7340684,336.8183408,,194.1341072,274.6844808,185.5919522 +746,644.988,,347.059911,,175.9848605,335.2221235,,194.7397722,275.414982,185.6806918 +747,645.988,,346.0769826,,175.8717179,336.5964633,,194.5199068,275.0850087,185.4989646 +748,646.988,,346.9481487,,175.8312711,336.4803569,,194.6446231,274.7280577,185.5806124 +749,647.988,,347.7947165,,175.9060153,336.2604527,,194.8731382,275.3731894,185.6199778 +750,648.988,,347.1690085,,175.8964721,335.6589622,,194.2227027,274.6217863,185.3846017 +751,649.988,,345.7517707,,175.7117482,337.1350111,,194.2699695,275.2236759,185.4619483 +752,650.988,,345.2431578,,175.7393171,337.1770124,,194.4217192,275.1512745,185.5561871 +753,651.988,,348.2030211,,175.8844996,335.7770807,,194.6398556,274.7136794,185.5173472 +754,652.988,,349.3555709,,175.7772741,337.1437825,,194.6546785,275.122726,185.5396333 +755,653.987,,347.0162314,,175.7778993,336.8647643,,194.5537311,275.1582181,185.4477374 +756,654.988,,349.6046156,,175.9435053,335.3843817,,194.3936884,275.1851796,185.6449053 +757,655.988,,345.4369899,,175.8549783,335.5661439,,194.1485816,274.9393782,185.6264739 +758,656.987,,349.3093306,,175.8522365,335.5887219,,194.0573084,274.6736867,185.4487085 +759,657.988,,344.9550007,,175.8232289,335.722423,,194.0699954,274.7673584,185.535277 +760,658.988,,349.2182602,,175.9328302,335.5795832,,194.2716507,275.0841894,185.5305159 +761,659.988,,346.6433012,,175.7520977,335.8771167,,194.3890742,275.0998256,185.4995262 +762,660.987,,348.2962831,,175.9065571,335.361489,,194.4825344,275.2813031,185.6016427 +763,661.988,,347.3879217,,175.8560082,336.5486415,,194.2656324,275.202244,185.5410422 +764,662.988,,344.1255141,,175.6641244,336.5029578,,194.0848774,275.0061069,185.5900158 +765,663.987,,345.349513,,175.8641663,335.4897403,,194.6032101,275.2122166,185.4035479 +766,664.987,,345.2623037,,175.7173528,336.2657997,,194.2825649,275.2628767,185.4841031 +767,665.987,,346.3717615,,175.6773992,336.1345462,,194.3963608,275.2738524,185.4289762 +768,666.987,,348.6020445,,175.670505,335.8402448,,194.654581,274.915582,185.3924801 +769,667.987,,345.6192335,,175.7920358,336.6113785,,194.1920909,275.2159106,185.4844885 +770,668.987,,346.6029739,,175.8078665,335.6655582,,194.7570306,275.1080812,185.4590788 +771,669.987,,346.9935804,,175.8213549,335.4942435,,194.6547395,275.1918734,185.4357532 +772,670.987,,348.1853126,,175.8050043,335.4529352,,194.6980238,275.0461742,185.3359602 +773,671.988,,346.0759725,,175.6335642,335.2831749,,194.8722584,275.1899958,185.3263847 +774,672.987,,346.0287181,,175.5372485,336.4662168,,194.0388048,274.4293451,185.3889488 +775,673.987,,345.6637773,,175.7739601,335.577552,,194.1521106,275.1319615,185.4023125 +776,674.987,,346.5039685,,175.7866098,335.5497414,,194.64701,275.1487946,185.3692919 +777,675.987,,349.6059548,,175.6258173,336.7936372,,194.2827943,274.5245724,185.2890353 +778,676.987,,348.1909114,,175.5830621,335.8606643,,194.3166744,275.2101926,185.404262 +779,677.987,,347.6626105,,175.5774724,336.0785585,,194.1209771,275.1182264,185.3574186 +780,678.988,,346.4310823,,175.5506018,335.3049874,,194.1458185,275.1396615,185.4733915 +781,679.987,,348.1782543,,175.5314304,335.6976974,,194.2233253,275.2569246,185.5175978 +782,680.987,,345.3187464,,175.5078869,336.1814194,,194.5806797,275.1928018,185.3996533 +783,681.987,,348.1454758,,175.5591909,335.1423525,,194.5891321,274.838571,185.2866889 +784,682.987,,345.5895288,,175.6781519,336.2646151,,194.1257012,274.6901265,185.4131827 +785,683.987,,344.7974056,,175.4288462,335.9469417,,194.3105817,275.1793521,185.4669175 +786,684.987,,343.7996247,,175.7220641,335.1638357,,194.4370773,275.2069801,185.4226306 +787,685.987,,348.4330038,,175.6686081,335.1481063,,194.0413694,274.9121512,185.4234423 +788,686.987,,345.399141,,175.6373457,336.1416887,,194.1053846,274.4993087,185.3117574 +789,687.987,,347.9313327,,175.390789,335.7563843,,194.1457752,275.2295461,185.445615 +790,688.987,,347.484671,,175.4841152,335.1395978,,194.4366902,275.3339013,185.2856752 +791,689.987,,346.6238213,,175.4376273,336.2760498,,193.7373897,274.5803043,185.4144118 +792,690.987,,348.5485695,,175.6005123,335.0237769,,194.0860131,274.463249,185.130875 +793,691.987,,343.9610502,,175.383029,335.8569,,194.6726769,274.3033224,185.3257521 +794,692.987,,347.4408172,,175.5629803,334.7359824,,194.110907,274.8535843,185.28279 +795,693.987,,345.9141094,,175.4275383,334.5486959,,194.1166047,274.4080324,185.3758839 diff --git a/src/pyvale/data/valid/Pulse254_SteadyHIVEData.csv b/src/pyvale/data/valid/Pulse254_SteadyHIVEData.csv new file mode 100755 index 000000000..ad43bae49 --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_SteadyHIVEData.csv @@ -0,0 +1,409 @@ +Data Point Number,Timestamp,TC2 +329,253.05,212.89 +330,254.15,212.35 +331,255.21,212.86 +332,256.31,213 +333,257.38,218.53 +334,258.47,213.3 +335,259.53,213.85 +336,260.63,217.45 +337,261.69,212.74 +338,262.79,212.44 +339,263.85,215.51 +340,264.95,212.86 +341,266.07,211.75 +342,267.18,212.85 +343,268.22,212.97 +344,269.34,212.87 +345,270.39,211.45 +346,271.5,216.59 +347,272.55,213.77 +348,273.67,213.17 +349,274.721,216.99 +350,275.84,213.46 +351,276.9,211.85 +352,278.01,212.84 +353,279.06,214.71 +354,280.17,211.72 +355,281.22,212.17 +356,282.33,214.46 +357,283.39,213.88 +358,284.5,213.07 +359,285.55,214.34 +360,286.67,212.17 +361,287.71,212.32 +362,288.83,214.06 +363,289.87,211.8 +364,290.99,213.32 +365,292.04,212.63 +366,293.15,213.74 +367,294.19,211.83 +368,295.31,216.04 +369,296.36,213.71 +370,297.47,211.22 +371,298.52,214.54 +372,299.63,213.03 +373,300.67,212.64 +374,301.79,213.67 +375,302.91,216.26 +376,303.97,212.12 +377,305.08,212.81 +378,306.16,217 +379,307.24,212.6 +380,308.31,212.56 +381,309.41,219.18 +382,310.47,212.64 +383,311.57,213.17 +384,312.63,214.27 +385,313.73,212.64 +386,314.79,212.91 +387,315.89,212.24 +388,316.95,215.63 +389,318.04,213.25 +390,319.1,211.55 +391,320.2,212.36 +392,321.26,217.28 +393,322.36,212.14 +394,323.42,212.68 +395,324.519,212.92 +396,325.6,220.34 +397,326.69,212.72 +398,327.76,213.25 +399,328.86,212.97 +400,329.92,213.46 +401,331.02,217.29 +402,332.09,213.39 +403,333.179,211.9 +404,334.26,213.52 +405,335.34,213.49 +406,336.4,218.71 +407,337.499,213.03 +408,338.56,213.06 +409,339.66,212.95 +410,340.72,218.83 +411,341.82,213.09 +412,342.88,211.46 +413,344,211.84 +414,345.06,215.51 +415,346.16,211.44 +416,347.219,212.85 +417,348.33,211.89 +418,349.39,217.3 +419,350.49,212.85 +420,351.57,214.38 +421,352.65,213.86 +422,353.73,213.93 +423,354.82,212.66 +424,355.88,213.28 +425,356.98,214.93 +426,358.04,212.36 +427,359.14,212.58 +428,360.2,215.31 +429,361.3,213.87 +430,362.359,213.37 +431,363.45,211.81 +432,364.53,215.3 +433,365.63,212.63 +434,366.69,212.93 +435,367.79,213 +436,368.85,212.26 +437,369.95,213.68 +438,371.01,214.47 +439,372.11,217.41 +440,373.19,214.52 +441,374.27,212.64 +442,375.34,214.02 +443,376.44,212.2 +444,377.5,214.68 +445,378.59,214 +446,379.65,218.29 +447,380.75,213.26 +448,381.81,212.49 +449,382.91,212.31 +450,383.989,212.64 +451,385.07,215.49 +452,386.14,213.13 +453,387.23,214.96 +454,388.31,212.81 +455,389.4,212.05 +456,390.47,217.6 +457,391.56,213.08 +458,392.61,211.84 +459,393.699,218.2 +460,394.77,212.86 +461,395.87,214.32 +462,396.95,217.76 +463,398.03,212.96 +464,399.09,213.76 +465,400.19,218.28 +466,401.25,212.63 +467,402.36,214.1 +468,403.42,215.34 +469,404.52,213.3 +470,405.6,213.96 +471,406.68,213.41 +472,407.75,213.12 +473,408.84,213.85 +474,409.9,212.94 +475,411,216.19 +476,412.06,213.04 +477,413.17,216.51 +478,414.23,215.14 +479,415.32,213.97 +480,416.38,214.22 +481,417.48,213.71 +482,418.55,216.01 +483,419.65,214.25 +484,420.71,219.15 +485,421.81,214.11 +486,422.87,214.3 +487,423.97,212.33 +488,425.04,212.8 +489,426.14,212.5 +490,427.2,213.46 +491,428.3,214.82 +492,429.36,214 +493,430.46,215.38 +494,431.54,213.57 +495,432.62,217.19 +496,433.69,211.74 +497,434.79,214.85 +498,435.85,212.8 +499,436.939,214.41 +500,438.01,214.02 +501,439.11,218.56 +502,440.17,213.66 +503,441.27,218.46 +504,442.33,213.18 +505,443.43,214.72 +506,444.49,213.12 +507,445.6,215.17 +508,446.66,212.82 +509,447.76,216.24 +510,448.84,213.56 +511,449.909,214.57 +512,450.98,213.91 +513,452.08,213.21 +514,453.13,212.02 +515,454.23,212.24 +516,455.3,212.75 +517,456.4,213.21 +518,457.47,212.44 +519,458.54,213.01 +520,459.61,213 +521,460.7,212.74 +522,461.77,216.32 +523,462.87,214.28 +524,463.93,215.1 +525,465.02,214.76 +526,466.08,213.65 +527,467.18,213.34 +528,468.26,214.6 +529,469.34,214.76 +530,470.4,212.6 +531,471.5,215.95 +532,472.59,214.62 +533,473.67,213.5 +534,474.73,213.86 +535,475.83,212.24 +536,476.89,213.91 +537,478,212.7 +538,479.06,213.96 +539,480.16,213.62 +540,481.22,215.28 +541,482.32,213.22 +542,483.38,215.47 +543,484.48,214.19 +544,485.55,217.59 +545,486.65,213.58 +546,487.71,214.9 +547,488.81,215.9 +548,489.87,212.95 +549,490.96,214.05 +550,492.019,217.96 +551,493.13,214.49 +552,494.19,213.8 +553,495.29,213.57 +554,496.35,213.91 +555,497.45,215.23 +556,498.51,212.39 +557,499.61,215.3 +558,500.7,215 +559,501.77,212.73 +560,502.83,213.87 +561,503.94,212.78 +562,505,214.36 +563,506.1,214.23 +564,507.16,214.06 +565,508.26,214.09 +566,509.34,214 +567,510.42,213.25 +568,511.48,213.92 +569,512.58,218.47 +570,513.64,213.04 +571,514.74,217.11 +572,515.82,213.38 +573,516.9,215.61 +574,517.96,213.17 +575,519.05,217.89 +576,520.11,214.26 +577,521.22,216.52 +578,522.28,212.71 +579,523.38,213.74 +580,524.44,214.39 +581,525.55,213.71 +582,526.63,214.03 +583,527.7,215.28 +584,528.76,214.65 +585,529.85,217.97 +586,530.91,214.02 +587,532.02,216.09 +588,533.07,213.05 +589,534.17,213.87 +590,535.23,213.38 +591,536.33,213.08 +592,537.39,215.56 +593,538.49,213.03 +594,539.55,215.44 +595,540.64,214.15 +596,541.7,214.09 +597,542.8,214.22 +598,543.87,212.1 +599,544.97,216.58 +600,546.03,213.07 +601,547.13,218.22 +602,548.189,213.96 +603,549.28,214.38 +604,550.37,212.95 +605,551.44,212.98 +606,552.52,212.49 +607,553.61,215.11 +608,554.69,214.56 +609,555.77,214.66 +610,556.83,213.67 +611,557.93,214.66 +612,559,213.05 +613,560.09,213.9 +614,561.15,214.87 +615,562.25,217.09 +616,563.309,213.95 +617,564.41,216.35 +618,565.479,214.19 +619,566.58,213.49 +620,567.64,214.24 +621,568.75,214.86 +622,569.8,217.93 +623,570.91,213.81 +624,571.97,213.96 +625,573.07,214.17 +626,574.13,212.88 +627,575.23,217.48 +628,576.29,214.39 +629,577.39,213.1 +630,578.45,215.04 +631,579.55,213.14 +632,580.62,212.8 +633,581.71,212.41 +634,582.77,213 +635,583.87,217.8 +636,584.95,213.44 +637,586.04,215.55 +638,587.1,213.23 +639,588.19,213.6 +640,589.25,214.41 +641,590.36,214.46 +642,591.44,212.92 +643,592.55,213.92 +644,593.61,214.02 +645,594.71,214.79 +646,595.8,214.48 +647,596.89,214.33 +648,597.95,214.45 +649,599.049,213.28 +650,600.11,217.8 +651,601.219,214.77 +652,602.28,217.79 +653,603.37,212.33 +654,604.45,214.85 +655,605.54,213.39 +656,606.6,214.5 +657,607.7,212.68 +658,608.78,212.87 +659,609.87,215.09 +660,610.94,213.7 +661,612.03,216.3 +662,613.09,215.12 +663,614.19,217.08 +664,615.25,214.65 +665,616.35,213.98 +666,617.41,213.33 +667,618.52,214.87 +668,619.64,214.17 +669,620.74,214.88 +670,621.79,214.09 +671,622.9,212.66 +672,623.95,213.77 +673,625.06,213.1 +674,626.11,212.95 +675,627.22,212.66 +676,628.27,214.7 +677,629.38,214.75 +678,630.42,212.23 +679,631.53,214.82 +680,632.58,218.5 +681,633.69,214.97 +682,634.81,214.38 +683,635.88,214.19 +684,636.98,214.19 +685,638.04,217.94 +686,639.14,214.07 +687,640.21,213.38 +688,641.3,213.23 +689,642.349,214.2 +690,643.45,213.22 +691,644.53,214.48 +692,645.62,215.19 +693,646.68,212.99 +694,647.79,214.33 +695,648.85,213.16 +696,649.96,212.38 +697,651.01,213.37 +698,652.11,214.9 +699,653.17,215.5 +700,654.27,218.54 +701,655.34,213.96 +702,656.43,217.01 +703,657.49,213.52 +704,658.59,214.92 +705,659.65,214.08 +706,660.75,212.55 +707,661.83,214.1 +708,662.91,212.73 +709,663.98,216.19 +710,665.09,213.18 +711,666.16,219.14 +712,667.26,214.02 +713,668.35,215.49 +714,669.42,213.21 +715,670.48,213.23 +716,671.59,216.96 +717,672.66,213.72 +718,673.75,213.29 +719,674.81,214.21 +720,675.91,214.04 +721,676.99,213.99 +722,678.069,215.7 +723,679.13,212.78 +724,680.23,213.71 +725,681.29,219.1 +726,682.39,213.78 +727,683.45,213.57 +728,684.55,217.65 +729,685.61,213.51 +730,686.71,214.36 +731,687.77,215.15 +732,688.86,214.53 +733,689.92,218.29 +734,691.02,213.25 +735,692.08,214.17 +736,693.18,214.3 diff --git a/src/pyvale/data/valid/Pulse254_SteadyPICOData.csv b/src/pyvale/data/valid/Pulse254_SteadyPICOData.csv new file mode 100755 index 000000000..0121c8a31 --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_SteadyPICOData.csv @@ -0,0 +1,775 @@ +Timestamp,Coil RMS Voltage +252.181,84.93637 +252.781,84.93766 +253.181,84.9287 +253.781,84.9434 +254.381,84.94254 +254.981,84.92455 +255.581,84.94314 +256.181,84.92623 +256.781,84.92377 +257.381,84.92516 +257.981,84.92576 +258.581,84.93665 +259.181,84.92942 +259.781,84.93248 +260.381,84.93972 +260.981,84.92656 +261.581,84.93078 +262.381,84.92411 +262.981,84.94938 +263.581,84.94739 +264.181,84.94787 +264.781,84.95818 +265.181,84.94331 +265.581,84.9483 +265.981,84.94942 +266.581,84.94995 +266.981,84.94013 +267.581,84.96283 +268.181,84.95122 +268.781,84.95199 +269.181,84.95547 +269.781,84.95618 +270.181,84.94336 +270.781,84.94392 +271.181,84.94885 +271.781,84.95272 +272.381,84.96171 +272.981,84.94827 +273.581,84.94129 +274.181,84.95695 +274.781,84.92989 +275.181,84.94076 +275.781,84.94375 +276.381,84.95134 +276.981,84.95107 +277.581,84.96115 +278.181,84.9572 +278.781,84.95242 +279.381,84.96891 +279.981,84.9644 +280.581,84.96774 +281.181,84.96119 +281.781,84.95795 +282.381,84.94923 +282.981,84.95048 +283.581,84.949 +284.181,84.95689 +284.781,84.95066 +285.181,84.94845 +285.781,84.95379 +286.181,84.94383 +286.781,84.95399 +287.181,84.95274 +287.781,84.95565 +288.181,84.96215 +288.781,84.94666 +289.381,84.96041 +289.981,84.95914 +290.381,84.95205 +290.981,84.95511 +291.581,84.96211 +291.981,84.94559 +292.581,84.95429 +293.181,84.95975 +293.781,84.95186 +294.181,84.95854 +294.781,84.95275 +295.181,84.95715 +295.781,84.94836 +296.381,84.95371 +296.981,84.94433 +297.581,84.95216 +298.181,84.96249 +298.781,84.96443 +299.181,84.9737 +299.781,84.9577 +300.381,84.94863 +300.981,84.96135 +301.581,84.95527 +302.181,84.96065 +302.781,84.94252 +303.381,84.93993 +303.981,84.95627 +304.581,84.97203 +305.181,84.94528 +305.781,84.95708 +306.381,84.96628 +306.981,84.95555 +307.581,84.95406 +308.381,84.97226 +308.981,84.96772 +309.581,84.96336 +310.381,84.96986 +310.981,84.95496 +311.581,84.96294 +312.181,84.95869 +312.781,84.97424 +313.181,84.9752 +313.781,84.96605 +314.381,84.97251 +314.981,84.97234 +315.581,84.96387 +316.381,84.97604 +316.981,84.96328 +317.581,84.97565 +318.181,84.96707 +318.781,84.9744 +319.181,84.9768 +319.781,84.96626 +320.181,84.97989 +320.781,84.96999 +321.381,84.97891 +321.981,84.98788 +322.581,84.97243 +323.181,84.97966 +323.781,84.98038 +324.181,84.97483 +324.781,84.9753 +325.181,84.98182 +325.781,84.97565 +326.381,84.97922 +326.981,84.97587 +327.581,84.98597 +328.181,84.9948 +328.781,84.98875 +329.181,84.97176 +329.781,84.97456 +330.181,84.98056 +330.781,84.9695 +331.181,84.99127 +331.781,84.99906 +332.381,84.9936 +332.981,84.99271 +333.581,84.99422 +334.381,84.98729 +334.981,84.98277 +335.581,84.99876 +336.181,84.99348 +336.581,84.98102 +336.981,84.98946 +337.381,84.98776 +337.781,84.99203 +338.181,84.98298 +338.781,84.97836 +339.381,84.98253 +339.981,84.99208 +340.581,84.99434 +341.181,84.99187 +341.781,84.99533 +342.381,84.99188 +342.981,84.99121 +343.581,84.98853 +344.181,84.9822 +344.781,84.96415 +345.181,84.987 +345.781,84.98714 +346.181,84.99256 +346.781,84.98981 +347.181,84.97562 +347.781,84.9829 +348.381,84.98297 +348.981,84.99467 +349.581,84.98634 +350.181,84.98947 +350.781,85.00422 +351.181,84.9826 +351.781,84.99824 +352.181,84.99772 +352.781,85.00265 +353.381,84.98443 +353.981,84.98304 +354.581,84.99168 +355.381,84.99569 +355.981,84.98338 +356.581,84.99203 +357.181,85.00817 +357.781,84.99661 +358.181,84.98663 +358.781,84.98965 +359.381,85.00916 +359.981,84.9847 +360.581,84.98987 +361.381,84.99957 +361.981,84.99174 +362.581,84.99572 +363.381,84.99703 +363.981,84.98973 +364.381,84.99481 +364.981,84.99855 +365.581,85.00597 +365.981,84.99383 +366.581,84.98636 +367.181,85.00731 +367.781,84.99534 +368.181,84.98194 +368.781,84.99284 +369.181,85.00938 +369.781,85.0028 +370.381,84.98445 +370.981,84.99898 +371.581,84.99549 +372.381,84.99059 +372.981,85.00303 +373.581,84.99487 +374.181,85.00245 +374.781,84.99254 +375.181,85.00344 +375.781,84.98867 +376.181,84.99215 +376.781,84.99466 +377.181,85.00494 +377.781,84.98796 +378.181,84.98568 +378.781,84.99415 +379.181,85.00323 +379.781,84.99809 +380.381,84.98592 +380.981,84.9827 +381.581,84.98579 +382.381,85.00053 +382.981,84.98901 +383.581,84.99184 +384.181,84.99433 +384.781,85.00314 +385.381,84.99505 +385.981,85.00095 +386.581,84.99652 +387.381,84.98655 +387.981,84.99854 +388.581,84.99387 +389.181,84.98833 +389.781,84.9947 +390.381,85.00053 +390.981,84.99028 +391.581,84.98512 +392.181,85.00198 +392.781,84.9997 +393.381,84.99426 +393.981,84.99952 +394.581,85.00804 +395.181,84.99599 +395.781,85.00022 +396.381,85.01266 +396.981,84.99844 +397.581,84.99243 +398.381,84.99142 +398.981,85.00285 +399.581,84.98721 +400.381,84.99612 +400.981,85.00322 +401.581,84.99045 +402.181,85.00259 +402.781,85.00379 +403.381,85.01392 +403.981,85.00351 +404.581,84.99862 +405.381,85.00311 +405.981,84.99255 +406.581,84.99128 +407.181,84.99646 +407.781,85.0078 +408.181,84.99265 +408.781,84.99688 +409.381,85.01637 +409.981,84.99461 +410.581,85.00066 +411.181,85.01313 +411.781,85.00491 +412.181,84.98711 +412.781,85.00996 +413.381,85.00565 +413.981,85.00418 +414.581,85.00433 +415.381,84.99334 +415.981,85.00867 +416.581,84.99442 +417.181,85.00157 +417.781,85.02289 +418.181,84.99632 +418.781,84.99786 +419.181,85.01202 +419.781,85.00362 +420.181,84.99427 +420.781,84.99868 +421.381,85.00393 +421.981,84.99011 +422.581,85.00999 +423.181,85.01501 +423.781,85.00194 +424.181,84.99801 +424.781,85.01111 +425.181,85.00911 +425.781,85.02311 +426.181,85.00444 +426.781,84.99365 +427.181,85.01446 +427.781,85.00608 +428.181,85.00473 +428.781,85.00079 +429.181,85.00755 +429.781,85.00311 +430.181,84.99779 +430.781,85.00342 +431.181,85.00402 +431.781,84.99924 +432.381,85.0152 +432.981,84.99699 +433.581,84.99175 +434.181,84.99302 +434.781,85.018 +435.181,85.00472 +435.781,85.00679 +436.381,85.00846 +436.981,85.0047 +437.581,85.01086 +438.181,85.00816 +438.781,85.00478 +439.181,84.98791 +439.781,85.00256 +440.181,85.02126 +440.781,85.00368 +441.381,85.01871 +441.981,84.99959 +442.581,84.99396 +443.181,84.99614 +443.781,85.00609 +444.181,85.01533 +444.781,85.00203 +445.181,85.00315 +445.781,85.00327 +446.181,85.00992 +446.781,85.00844 +447.381,84.99772 +447.981,85.00359 +448.581,85.00378 +449.181,84.99905 +449.781,84.99487 +450.381,84.99807 +450.981,85.00974 +451.581,84.99153 +452.381,84.99999 +452.981,85.00178 +453.581,85.00151 +454.181,85.01093 +454.781,85.00854 +455.381,85.00193 +455.981,85.00525 +456.581,85.00138 +457.181,85.00459 +457.781,85.00757 +458.181,85.0229 +458.781,85.01363 +459.181,85.00335 +459.781,85.00774 +460.181,85.01099 +460.781,85.02225 +461.181,85.00586 +461.781,85.0051 +462.181,85.00397 +462.781,85.00926 +463.181,85.01376 +463.781,84.99918 +464.381,85.01012 +464.981,85.01395 +465.581,84.99899 +466.181,85.01015 +466.781,85.00415 +467.181,85.00235 +467.781,85.01659 +468.381,85.02459 +468.981,85.0085 +469.581,85.01219 +470.181,85.01537 +470.781,85.02074 +471.381,85.00687 +471.981,85.01424 +472.581,85.0052 +473.181,85.00861 +473.781,85.01241 +474.381,85.0109 +474.981,85.02228 +475.581,85.01535 +476.181,85.00568 +476.781,85.01819 +477.381,85.00993 +477.981,85.01807 +478.581,85.02003 +479.181,85.02692 +479.781,85.01084 +480.181,85.01224 +480.781,85.02137 +481.181,85.01054 +481.781,85.00311 +482.181,85.0267 +482.781,85.02916 +483.181,85.03535 +483.781,85.02824 +484.181,85.02174 +484.781,85.01351 +485.181,85.02275 +485.781,85.02026 +486.181,85.01601 +486.781,85.03506 +487.181,85.02274 +487.781,85.00722 +488.381,85.01759 +488.981,85.0276 +489.581,85.02161 +490.181,85.02695 +490.781,85.02363 +491.381,85.02862 +491.981,85.03078 +492.581,85.01687 +493.181,85.02689 +493.781,85.0284 +494.181,85.02358 +494.781,85.02682 +495.181,85.04208 +495.781,85.03197 +496.181,85.02402 +496.781,85.02188 +497.181,85.0363 +497.781,85.03761 +498.181,85.0209 +498.781,85.0129 +499.181,85.03422 +499.781,85.02084 +500.181,85.03247 +500.781,85.03425 +501.181,85.02481 +501.781,85.0268 +502.181,85.01845 +502.781,85.01035 +503.381,85.02831 +503.981,85.02257 +504.581,85.02852 +505.381,85.02418 +505.981,85.03165 +506.581,85.02322 +507.181,85.01906 +507.781,85.03026 +508.381,85.02987 +508.981,85.03586 +509.581,85.00842 +510.181,85.03323 +510.781,85.02182 +511.381,85.01577 +511.981,85.02522 +512.581,85.01569 +513.181,85.02738 +513.781,85.05283 +514.381,85.04476 +514.981,85.03549 +515.581,85.0223 +516.181,85.0285 +516.781,85.02968 +517.381,85.03079 +517.981,85.04562 +518.581,85.02769 +519.181,85.02748 +519.781,85.04532 +520.181,85.03944 +520.781,85.01661 +521.181,85.02239 +521.781,85.029 +522.181,85.03968 +522.781,85.02971 +523.181,85.02077 +523.781,85.04284 +524.181,85.03835 +524.781,85.0288 +525.181,85.02633 +525.781,85.02684 +526.181,85.02464 +526.781,85.02499 +527.381,85.04913 +527.981,85.02702 +528.581,85.03346 +529.181,85.03138 +529.781,85.03989 +530.181,85.03423 +530.781,85.03456 +531.181,85.03276 +531.781,85.03304 +532.181,85.05687 +532.781,85.05346 +533.381,85.02961 +533.981,85.02949 +534.581,85.02699 +535.181,85.03376 +535.781,85.02697 +536.181,85.02045 +536.781,85.05703 +537.181,85.02563 +537.781,85.0308 +538.181,85.01709 +538.781,85.01785 +539.381,85.03977 +539.981,85.02706 +540.581,85.01479 +541.181,85.03053 +541.781,85.02629 +542.181,85.03659 +542.781,85.02853 +543.181,85.01068 +543.781,85.04098 +544.381,85.01311 +544.981,85.0181 +545.581,85.01674 +546.181,85.02171 +546.781,85.0183 +547.181,85.01432 +547.581,85.03293 +547.981,85.01925 +548.381,85.04356 +548.781,85.03321 +549.381,85.02803 +549.981,85.0234 +550.581,85.03977 +551.181,85.02889 +551.781,85.03651 +552.181,85.02357 +552.781,85.01978 +553.181,85.01962 +553.781,85.02495 +554.181,85.03682 +554.781,85.02593 +555.181,85.03241 +555.781,85.03399 +556.181,85.02521 +556.781,85.01711 +557.181,85.04015 +557.781,85.04266 +558.381,85.04935 +558.981,85.03425 +559.581,85.02803 +560.181,85.03887 +560.781,85.03282 +561.181,85.04733 +561.781,85.0442 +562.181,85.03193 +562.781,85.02894 +563.381,85.05038 +563.981,85.03922 +564.581,85.03516 +565.381,85.0513 +565.981,85.04408 +566.581,85.03686 +567.381,85.04199 +567.981,85.04503 +568.581,85.03162 +569.181,85.0248 +569.781,85.05358 +570.181,85.03476 +570.781,85.04339 +571.381,85.03994 +571.981,85.04193 +572.581,85.0455 +573.181,85.04483 +573.781,85.04095 +574.381,85.0452 +574.981,85.03521 +575.581,85.02839 +576.181,85.05106 +576.781,85.05222 +577.181,85.03644 +577.781,85.0407 +578.381,85.02991 +578.981,85.05545 +579.581,85.05849 +580.181,85.04858 +580.781,85.06347 +581.381,85.04555 +581.981,85.03427 +582.581,85.02647 +583.181,85.03374 +583.781,85.03459 +584.181,85.02052 +584.781,85.04804 +585.381,85.03999 +585.981,85.02852 +586.581,85.02985 +587.181,85.03177 +587.781,85.03674 +588.181,85.05041 +588.781,85.03911 +589.181,85.04464 +589.781,85.04745 +590.381,85.04169 +590.981,85.04119 +591.581,85.03797 +592.181,85.03842 +592.781,85.04312 +593.181,85.03939 +593.781,85.0415 +594.181,85.05108 +594.781,85.05006 +595.181,85.04283 +595.781,85.03638 +596.181,85.03739 +596.781,85.05037 +597.181,85.04483 +597.781,85.02762 +598.181,85.04476 +598.781,85.03325 +599.181,85.04344 +599.781,85.03783 +600.181,85.03962 +600.781,85.03902 +601.181,85.03022 +601.781,85.03994 +602.381,85.05174 +602.981,85.0418 +603.581,85.05865 +604.381,85.04784 +604.981,85.04057 +605.581,85.05788 +606.181,85.03257 +606.781,85.03631 +607.381,85.04897 +607.981,85.04542 +608.581,85.04297 +609.181,85.04472 +609.781,85.04272 +610.381,85.03941 +610.981,85.05553 +611.581,85.05692 +612.381,85.05418 +612.981,85.04843 +613.581,85.04374 +614.381,85.04784 +614.981,85.04974 +615.581,85.05751 +616.381,85.05325 +616.981,85.05426 +617.581,85.06458 +618.181,85.0466 +618.781,85.05717 +619.181,85.05818 +619.781,85.05007 +620.381,85.04781 +620.981,85.04832 +621.581,85.05101 +622.181,85.05862 +622.781,85.05731 +623.381,85.05624 +623.981,85.05009 +624.581,85.05579 +625.381,85.0547 +625.981,85.04694 +626.581,85.04813 +627.181,85.05598 +627.781,85.04606 +628.381,85.05128 +628.981,85.06216 +629.581,85.05177 +630.381,85.06594 +630.981,85.04403 +631.381,85.0465 +631.981,85.06178 +632.581,85.06196 +632.981,85.04158 +633.581,85.04932 +634.381,85.0546 +634.981,85.04929 +635.581,85.05096 +636.181,85.05311 +636.781,85.04929 +637.381,85.07066 +637.981,85.07317 +638.581,85.04842 +639.181,85.04472 +639.781,85.05444 +640.181,85.06114 +640.781,85.07066 +641.381,85.04681 +641.981,85.04979 +642.581,85.0521 +643.181,85.05787 +643.781,85.05112 +644.181,85.05186 +644.581,85.04137 +644.981,85.05337 +645.581,85.05711 +645.981,85.06873 +646.581,85.05337 +647.181,85.05788 +647.781,85.05701 +648.381,85.0584 +648.981,85.05553 +649.581,85.0612 +650.381,85.04787 +650.981,85.06743 +651.581,85.06454 +652.381,85.05984 +652.981,85.04261 +653.581,85.06136 +654.181,85.05777 +654.781,85.07359 +655.381,85.03738 +655.981,85.05177 +656.581,85.07542 +657.181,85.05146 +657.781,85.05357 +658.381,85.07557 +658.981,85.05173 +659.581,85.06469 +660.181,85.07028 +660.781,85.05246 +661.381,85.05251 +662.181,85.06064 +662.781,85.06962 +663.581,85.05511 +664.181,85.05054 +664.781,85.04413 +665.381,85.0671 +665.981,85.06362 +666.581,85.07159 +667.181,85.05576 +667.781,85.07816 +668.181,85.04085 +668.781,85.05969 +669.181,85.05523 +669.781,85.05484 +670.381,85.06953 +670.981,85.03864 +671.581,85.04052 +672.181,85.06522 +672.781,85.04845 +673.181,85.06025 +673.781,85.0431 +674.181,85.06286 +674.781,85.06118 +675.181,85.07666 +675.781,85.05702 +676.381,85.06333 +676.981,85.06109 +677.581,85.06438 +678.381,85.07952 +678.981,85.07601 +679.581,85.0719 +680.381,85.07458 +680.981,85.08695 +681.581,85.08315 +682.181,85.10181 +682.781,85.0852 +683.381,85.09996 +683.981,85.08405 +684.581,85.08179 +685.381,85.08599 +685.981,85.09039 +686.581,85.09664 +687.381,85.09028 +687.981,85.06602 +688.581,85.07684 +689.181,85.09293 +689.781,85.07581 +690.381,85.09289 +690.981,85.08022 +691.581,85.08279 +692.181,85.07066 +692.781,85.08527 +693.381,85.07934 +693.981,85.06406 diff --git a/src/pyvale/data/valid/Pulse254_SteadySummary.csv b/src/pyvale/data/valid/Pulse254_SteadySummary.csv new file mode 100755 index 000000000..2bcb4846d --- /dev/null +++ b/src/pyvale/data/valid/Pulse254_SteadySummary.csv @@ -0,0 +1,7 @@ +,Coil RMS Current,Coil Frequency,alpha_tb,beta_tb,gamma_tb,dx,dy,dz,Sample Inlet Temperature,Sample Outlet Temperature,Coil Inlet Temperature,Coil Outlet Temperature,Sample Inlet Pressure,Sample Outlet Pressure,Sample Flowrate,Coil RMS Voltage,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,TC9,TC10 +mean,1549.540264857881,123.47600597303922,1.1530156852002234,-0.7117363864845035,-3.558679849825464,-1.2291273868478123,0.2073146012675705,-0.19025653877823054,147.86450396308754,149.60647475090232,27.35490196078431,63.1739705882353,6.61313500245098,5.752102928921568,47.21295624264706,85.0131618992248,,214.17387254901962,347.15643430573755,,175.21457055580942,336.60009373081743,,194.00426251464194,275.172250401499,184.982886640478 +std,0.1694916785943226,0.03696921830397044,0.03542081474839137,0.05976471452308931,0.129340770304851,0.12073366943263505,0.04326700443489509,0.242294363110904,0.5033352374053871,0.5454060943543712,0.42600479885183756,0.31406883409223546,0.049957403757542256,0.04382760020093862,0.15479950848398058,0.036277068364791915,,1.6964564031228968,0.7162093969003065,,0.43976011428423484,0.4922466455469067,,0.32161708802099737,0.23687154218493373,0.3622702809415109 +ci95_low,1549.5283240428257,123.47241868493361,1.1497172135568945,-0.7173018207503826,-3.5707243741032753,-1.2403703971469096,0.2032854735291476,-0.21281957386753556,147.81763217260325,149.55568522081654,27.313564815506126,63.143495088763906,6.608287412793746,5.747850141437523,47.197935356055076,85.0106061527263,,214.00925781936635,347.0897391604355,,175.17361903402377,336.5542545367336,,193.9743127562193,275.15019235256483,184.94915115874517 +ci95_up,1549.5522056729365,123.47959326114483,1.1563141568435522,-0.7061709522186245,-3.5466353255476526,-1.217884376548715,0.2113437290059934,-0.16769350368892552,147.91137575357183,149.6572642809881,27.396239106062495,63.20444608770669,6.617982592108214,5.756355716405613,47.227977129239044,85.0157176457233,,214.3384872786729,347.2231294510396,,175.25552207759506,336.6459329249013,,194.03421227306458,275.1943084504332,185.01662212221083 +epistemic lower,-94.181057298062,-0.5,0.0,0.0,0.0,-0.025,-0.025,-0.025,-2.2,-2.2,-2.2,-2.2,0.0,0.0,0.0,-1.7444700821720929,-2.2,-2.879999999999993,-3.123629506011525,-2.2,-2.34691045648452,-2.638397834951123,-2.2,-2.4216526670139986,-2.306774133199025,-2.200032996178007 +epistemic upper,94.181057298062,0.5,0.0,0.0,0.0,0.025,0.025,0.025,2.2,2.2,2.2,2.2,0.0,0.0,0.0,1.7444700821720929,2.2,2.879999999999993,3.123629506011525,2.2,2.34691045648452,2.638397834951123,2.2,2.4216526670139986,2.306774133199025,2.200032996178007 diff --git a/src/pyvale/data/valid/Pulse255_DIC.csv b/src/pyvale/data/valid/Pulse255_DIC.csv new file mode 100644 index 000000000..d28d67657 --- /dev/null +++ b/src/pyvale/data/valid/Pulse255_DIC.csv @@ -0,0 +1,1151 @@ +TC3,TC5,TC6,TC8,TC9,TC10 +147.083642518327,146.235768351829,147.156180454199,146.995629855271,146.44245293273,146.912009442075 +147.076481255403,146.231611763176,147.140471405403,146.976687944175,146.427903560683,146.906003674968 +147.070864214014,146.236850134816,147.141553623203,146.997174004034,146.435913700648,146.913091550837 +147.072640154259,146.241396483752,147.150953123724,147.000335888315,146.440229511602,146.904703758048 +147.072540941312,146.233676881948,147.146233598444,146.994923676684,146.435973357704,146.919387998719 +147.075847173546,146.245295086649,147.153236189697,147.006545816296,146.433736035308,146.928699818919 +147.08141773287,146.241164829692,147.150721376068,147.001490158486,146.440690665771,146.921565403028 +147.072177406902,146.246937896308,147.149566298027,146.997101153638,146.432607675991,146.929188162596 +147.073411523289,146.244245871028,147.140635789488,147.0020312347,146.42414188773,146.917717609175 +147.075833993938,146.258675474052,147.14513746678,147.012076667699,146.448272269306,146.931920545207 +147.075451055578,146.260140068602,147.144523501687,147.014003756469,146.43934453602,146.930382664743 +147.071761156342,146.261300914258,147.151460189531,147.010775959997,146.443276792008,146.938011679596 +147.078486747137,146.258787096599,147.149407409074,147.019349387607,146.439838997939,146.941502950162 +147.079245670916,146.263933309402,147.149473309821,147.018953280014,146.440828649759,146.939258902377 +147.073226280789,146.26322736037,147.144608808526,147.016630079219,146.438506044982,146.934625845558 +147.076783658456,146.265397908161,147.152786610828,147.026193438078,146.441369592015,146.955738619393 +147.073450336514,146.268993534488,147.144370841202,147.024939215335,146.446351162333,146.946630595986 +147.08158834357,146.268122533999,147.161287721531,147.034694074837,146.448944247562,146.954537152055 +147.068526327767,146.279543296675,147.145222049063,147.021632329036,146.438657208034,146.955797563858 +147.07434105733,146.288588967746,147.151267990678,147.028832957563,146.449782017115,146.961843000688 +147.061048077038,146.277378961622,147.138436588937,147.027783378296,146.441804403874,146.947164710077 +147.079106198913,146.29566172515,147.149102817992,147.039604109033,146.452929228721,146.967531893696 +147.083983740074,146.296842716169,147.146588009522,147.047946640817,146.459883919363,146.964786289723 +147.08388453099,146.298821895784,147.148336920349,147.047847433308,146.453318288449,146.975774955844 +147.077561271662,146.293424552035,147.145940736292,147.038059208679,146.447227740767,146.979153901686 +147.094966035519,146.309899537312,147.167504332892,147.052922605243,146.471786960925,146.991706916034 +147.087731888996,146.317216469848,147.15703572481,147.072716336631,146.471483186769,146.99163407124 +147.086207085752,146.312921029053,147.161055269499,147.067264418035,146.469035016263,146.99172632841 +147.075719439158,146.306593704357,147.157959790232,147.063014032549,146.459012129039,146.986090090645 +147.080510946258,146.31600217232,147.165523675145,147.064340406962,146.473502052281,146.994346401978 +147.088457511244,146.32371510904,147.170698323397,147.068590795302,146.46943725774,147.005064673505 +147.090959074657,146.326215823166,147.176665249244,147.081025684006,146.465702595919,146.997864119601 +147.088100934533,146.319201901624,147.155556651588,147.082325709392,146.473006862762,147.001474100915 +147.099215768633,146.329620147188,147.171985219471,147.086972248837,146.486197194757,147.011664504336 +147.103584846358,146.321979302455,147.162493383067,147.094806450086,146.473244043353,147.015109405816 +147.092034331998,146.331447482284,147.177278510359,147.089493226723,146.476708241095,147.02250147761 +147.102225142363,146.338632728491,147.184235433642,147.092984731708,146.481122586161,147.026685888539 +147.099994118685,146.344023237064,147.180849235536,147.107386467018,146.484896804551,147.026995971563 +147.106032998882,146.346365156317,147.185964253371,147.097023582927,146.490472142438,147.033265661213 +147.097380159539,146.346490680865,147.181238425386,147.103386433814,146.49775707839,147.029695167404 +147.112626886792,146.359422980777,147.190479194831,147.119788263704,146.49637138564,147.042400387414 +147.10191434405,146.348714018342,147.190855205863,147.109306698633,146.492590207327,147.044162402473 +147.121820893518,146.364688014541,147.198980454563,147.11858671761,146.508103330104,147.06014133241 +147.10230352151,146.359264164083,147.180617513351,147.112468017006,146.494826867436,147.048940666737 +147.114718472865,146.356664242131,147.199270440002,147.119800742705,146.503312333545,147.065051434501 +147.112652546455,146.367069486573,147.186808543049,147.121199999022,146.501939814498,147.055824355542 +147.120533322637,146.378642638447,147.193996515989,147.13000485891,146.499194778936,147.059777821985 +147.127093950267,146.384046421351,147.207256966564,147.136565513886,146.506446450013,147.06934136816 +147.132618155797,146.381947875173,147.202385401937,147.143706846543,146.510583435449,147.076944505734 +147.130796407763,146.380819543928,147.210728532791,147.145812344085,146.52030971885,147.083901122524 +147.127291663099,146.388631879334,147.206068558217,147.142307576265,146.508491707481,147.078086366245 +147.135469409113,146.397268823692,147.214939653943,147.164577374197,146.520824330735,147.090191093406 +147.14218825334,146.394516981906,147.219810550692,147.157435281254,146.525462779917,147.080277130551 +147.131522054361,146.400250914602,147.215843623979,147.156471672578,146.525192295797,147.08162363983 +147.130637542704,146.404678286587,147.219348505374,147.166906971294,146.530774675669,147.105226185992 +147.150075377809,146.403325248327,147.224694640969,147.16786364869,146.537273947202,147.108954972784 +147.142775158833,146.405034060871,147.229869428333,147.167493883168,146.537135237787,147.095186596137 +147.145310077756,146.407106271663,147.230094205864,147.177190387407,146.543364730929,147.111582120955 +147.142148020355,146.422882342884,147.225083844136,147.180727818544,146.543667817319,147.116736534908 +147.157665608271,146.415993650164,147.239677898686,147.188159973884,146.545554979997,147.119779238908 +147.145606311269,146.416409068735,147.236859124766,147.183031073092,146.543660885505,147.117653650368 +147.147507158467,146.407224176666,147.226977823827,147.179618517511,146.543944550289,147.121402574928 +147.156002016658,146.421720706018,147.242865767399,147.192502869717,146.551513321259,147.13290051369 +147.164311682651,146.433722741249,147.248403441859,147.199657565571,146.565363697125,147.131276484836 +147.16483962424,146.440255020247,147.244310894911,147.198337350587,146.566815322488,147.141507016723 +147.166186182766,146.433749095676,147.251202114506,147.214469297909,146.566544832517,147.145625741528 +147.18323504638,146.439707141697,147.254852053654,147.217657133214,146.573427057778,147.160133266724 +147.165704035548,146.447123680779,147.255571496618,147.22068679097,146.570912892225,147.144681568517 +147.174383503888,146.456031330825,147.249465615422,147.223359861989,146.571968499132,147.164218731489 +147.188198155493,146.450673152469,147.2734459373,147.23093715941,146.580236486176,147.157934805756 +147.170475634032,146.453741314166,147.257339937138,147.214369415488,146.573373667387,147.170475634032 +147.198079287205,146.468865093324,147.289565233722,147.240125402295,146.598891396135,147.178211612932 +147.186541474441,146.459409509507,147.271558166289,147.230666589533,146.580658866213,147.17637664771 +147.188792012579,146.466509176201,147.277274213458,147.241003026076,146.582215928471,147.173775792428 +147.19987404936,146.463730904581,147.279808600368,147.234065363678,146.598838007916,147.184164698769 +147.186177961926,146.468052982253,147.280897832381,147.233768428812,146.589995681058,147.178092301896 +147.203563456203,146.474347491728,147.285577399895,147.257854046347,146.608300432785,147.190626315096 +147.20844819383,146.470685631431,147.285379662431,147.262045819416,146.602097796896,147.198976330836 +147.205286060653,146.485076476685,147.296079205238,147.255418214774,146.607251060661,147.197431353121 +147.207866841717,146.482575588656,147.292422269413,147.256612893737,146.607059636394,147.203939480109 +147.206751281029,146.493007775083,147.2982375758,147.261272974043,146.614258947168,147.208368431103 +147.218771349077,146.494862286395,147.305406462735,147.271676133644,146.611725303195,147.215768057558 +147.228942621604,146.505954099359,147.305643750767,147.278613239036,146.621431923584,147.219239650701 +147.217906244201,146.500002127084,147.309161955095,147.273352316494,146.620329830853,147.221371584176 +147.234506635124,146.507128282092,147.31236311156,147.28741178507,146.631151766059,147.233582538618 +147.231080822233,146.514789173911,147.314944014214,147.2902236893,146.637658264404,147.237549498544 +147.230994804662,146.506619926879,147.309082192861,147.290137669496,146.643346357875,147.226374333007 +147.243806610038,146.526125218454,147.326746135901,147.30040846654,146.639987334861,147.246578913125 +147.238783715772,146.523644384028,147.338357496413,147.308785246898,146.643511426838,147.254493443233 +147.247179711778,146.537349635729,147.336819352185,147.312560854359,146.646593032911,147.246486635508 +147.250083844401,146.534017128,147.340185668684,147.316620232454,146.650420253172,147.249852818659 +147.256030869668,146.536497974742,147.343129469603,147.325801896932,146.655210877805,147.266658106836 +147.255912225975,146.530374603006,147.338621157423,147.31967638877,146.658325778507,147.256605305113 +147.2736548542,146.532175767059,147.350126451526,147.324481612086,146.672830186736,147.262796557351 +147.255456434698,146.537078486798,147.356879235138,147.328461913816,146.664337145977,147.265621614484 +147.262096555961,146.551337980498,147.357974764548,147.330943632842,146.668203935666,147.26325169111 +147.271152438055,146.555310006278,147.362410279951,147.348779129957,146.679798085145,147.287324447665 +147.278466244833,146.553383296424,147.358634588416,147.339689653662,146.67648546473,147.287476379226 +147.280802898207,146.555488246134,147.363512732135,147.343643615794,146.683440851482,147.292585400883 +147.272947930253,146.555719200952,147.360740286918,147.334633259558,146.67581892198,147.280340840519 +147.294373991638,146.571595509302,147.380318860315,147.354442645432,146.693081891699,147.300149755011 +145.958721049598,146.586607729532,145.7987946192645,147.34723288826598,147.057118296173,147.385170683238 +143.9781624253705,146.8096386354485,147.2080213516515,147.437229161196,147.317608965275,147.35436734086898 +144.27558645675754,146.8475047137385,148.4378568118725,147.515994679379,147.54263260852,147.45856552540903 +146.9650240181765,146.93379801817247,152.5892796050765,147.6281840757,148.4332031447445,147.580944941822 +147.8439723520625,146.9605983382575,154.2265867246495,147.655452981591,148.5771878657615,147.61884943528202 +151.34327178837452,147.06468187987048,158.3226640818355,147.793988659562,149.3572289593365,147.73777019007798 +153.4695579730265,147.1101224913465,160.3255986920895,147.833433425868,149.7490611086165,147.76173883217098 +157.3731326495875,147.20068251828047,164.1207400523765,147.945505878086,150.9228324934865,147.831308124703 +159.43973094117752,147.2486205464885,166.3535654740625,147.97312203575297,151.5957787530425,147.88481380764102 +163.4201893707475,147.3660113091795,170.0765557504315,148.058191004942,153.0837052365805,147.944706059758 +165.92373700399452,147.42669909904652,172.1944042880475,148.14477524793801,153.8056675553475,147.98970225792402 +170.6621092053445,147.5292463503685,175.7990024277375,148.278084679212,155.4720626285015,148.06155013571703 +171.51830931184952,147.59989995771048,178.6292555238465,148.335583619506,156.1587588040745,148.104263599979 +177.4661553020715,147.7311856914635,180.3212303061035,148.583853735246,158.3643030166405,148.19699720690102 +185.53982645607852,147.79975270906448,184.0080963289375,148.62655417657697,159.3934575785615,148.25102635229302 +185.7641254360625,147.9701427556755,187.2872633197375,148.900785150599,161.2367981311295,148.36807733916498 +185.04737492191055,148.0415364802625,188.8818478921775,148.940070321549,162.2467003503795,148.43302184712797 +189.4030488544405,148.2278314094985,192.0801912875525,149.242946627432,164.28275357958051,148.57984474315202 +190.7325456790495,148.3313652035905,194.1074933412055,149.383743751012,165.3762515524065,148.65913520783403 +194.96051835301654,148.5450706251305,197.6614140420455,149.704594862377,167.3965997012885,148.845389952159 +196.89124895690253,148.6544237476935,199.2819762385605,149.914592433571,168.4137030423435,148.95246195077698 +200.91980554222351,148.87779581294552,202.5029191491065,150.230816359093,170.5800630939645,149.169884764806 +202.41784077649754,149.0154881973575,204.2588699884795,150.435889601805,171.6793964357075,149.295590292317 +206.5578994110445,149.2640897847025,207.6939016108575,150.82481730805898,173.7850913661255,149.56507460358 +210.24295076854253,149.5298290880885,211.0881740940585,151.282529250655,175.9172976690465,149.84615426034003 +211.64286053426054,149.6697530031645,212.3771806529575,151.56231842405197,177.0166843195195,149.996758650422 +215.43988501592554,149.94591849536448,215.7556977323955,151.96782956215696,179.0296847348885,150.31325804404298 +217.2835029648935,150.1054078314565,217.20656477465351,152.24340931048698,180.1083183237175,150.48783432484902 +220.8592006496675,150.3984033777835,220.24865897124351,152.740373993145,182.1485080524265,150.839694399179 +222.25680053463452,150.57529290840552,221.7173400563075,152.97298874957198,183.2306320272295,151.03168405509598 +225.29264183665651,150.8784393673605,224.4699327109165,153.509378411287,185.2791693448445,151.410152006033 +227.57252880567853,151.03252870580252,226.1938429225565,153.759968242725,186.3621511336455,151.59392465486502 +230.5735990935475,151.36962993937647,229.0369598720585,154.33323291374097,188.4695766448085,152.017964151074 +232.49911031702953,151.53478531196652,229.9914146704505,154.644992858617,189.4221784000635,152.21675663531 +235.74369295376152,151.8846447886175,232.9966234927835,155.204963942492,191.4203304776505,152.651279342684 +236.9614237698275,152.0632066927725,234.2383395999145,155.47899238037797,192.4112000632245,152.88225741119498 +239.3098425313155,152.4143625177615,236.9971196975155,156.091354836866,194.4682293767235,153.32112569896702 +241.3315422523255,152.56767235994852,238.29670567521651,156.376544586149,195.2799074654595,153.553035917277 +244.1635566836975,152.94961459172947,241.0198181203745,156.976266258534,197.2613164593265,154.02761406346002 +245.5024701700845,153.1224609528905,241.9946688442135,157.270176542243,198.1291607059705,154.261954922622 +247.92714685290252,153.48537304625347,244.70240842975952,157.91519200659997,200.1470106314675,154.742330455932 +249.64732602179754,153.66867802526951,245.9737158011145,158.205483587895,201.1078578606815,154.980672640514 +252.30617647967654,154.03412042195748,248.29254063637651,158.76591629870597,202.8166003390675,155.46478839254098 +253.3899649960315,154.2124456439755,249.4198645476705,159.128301710269,203.8992570299165,155.71973058305798 +255.85737636663254,154.58814329137948,251.6196858404855,159.751551234006,205.6087654137825,156.22111666472603 +256.7532765907075,154.7464050049865,252.7014493481355,160.093913874598,206.4778918683565,156.45369232010302 +259.6902021790965,155.1398282234365,255.2341753666285,160.70067335818197,208.1688780144425,156.98446670874102 +260.2790445481765,155.32404590608047,255.9674728169285,161.041012068116,209.1518439457645,157.242119607618 +263.0771284634975,155.6814572837655,258.4564482171565,161.690971107594,210.7856514571995,157.72531158392098 +264.1567346991465,155.87239318542947,259.16192720517347,162.08014168176896,211.7110607994985,157.99389188668903 +266.3083882616605,156.24999748974847,261.3978993704115,162.626645140042,213.2583440436095,158.501288315112 +267.68417226241553,156.4207934173025,262.6625677904035,162.92647094355698,214.10400150400451,158.75739760553603 +269.76725688728754,156.79542867534047,264.6690025513755,163.55346741872899,215.6948157686035,159.266515234346 +271.8771685636795,157.17595576318848,266.4797109073045,164.13901798857796,217.1963659912415,159.77065251972 +272.66822621524454,157.34550054854947,267.4647859694835,164.470890830757,217.9036696467085,160.038092328711 +274.4194545969385,157.6817424347525,269.3286103957655,165.124399923106,219.4987425720895,160.56806721705 +275.8472919673685,157.85714143165148,270.4820998210095,165.449175607269,220.4018283186655,160.80169538131202 +277.6056052093245,158.2190789146075,272.6711497569225,166.161319999456,221.7294469591275,161.319136071576 +278.1618154980975,158.4277650930215,273.1231020771865,166.24769836607396,222.4157104306855,161.63929403370503 +280.9619852986235,158.73313386622448,274.6026524040005,167.05018509099,223.9097617591835,161.98912658006202 +281.22336290295056,158.92749434392448,275.5599359186985,167.194746575791,224.5886103499795,162.26871865274103 +282.94000477916853,159.2443228803245,277.0827403850485,167.826022918636,225.9967231982145,162.824495516441 +283.9533426398625,159.47059648597252,278.0838250735165,168.09583434951497,226.6582882857545,163.05823221693703 +285.61776199016253,159.8423694493365,280.1411705088265,168.91066515384097,227.7024165880055,163.47969184624202 +287.88182625322355,159.9190992986155,280.3210781832145,168.839842521028,228.3972148352135,163.923223135525 +287.2205033376765,160.27480614116251,282.0887786302655,169.714030484589,229.5650799891975,164.304700269737 +288.9432978499805,160.4202887062815,283.2016639426525,169.909179131156,230.5849871291255,164.407127848607 +290.80383412643056,160.7384440114265,284.0564089943985,170.564563585717,231.3417881269945,164.878153821132 +291.23238633213356,160.86528576281347,285.0142569038805,170.90557775310901,232.3694643483235,165.115805857385 +293.4323470924545,161.27804448872047,286.6242970497575,171.218524052193,233.5040499448705,165.64183637707498 +294.5294784084645,161.4652244330665,287.0977917390085,171.577673715353,234.2626931841185,165.849943272845 +293.81924252078653,161.8344188073845,288.8694775976335,171.92327144725698,235.3978523657485,166.353302350082 +295.19869688381056,161.87589171131947,289.4603756638695,172.35335146611698,236.0463862282335,166.608538434252 +298.0735230686555,162.14323535667847,290.7271083152945,173.02895681508596,237.2252607924045,167.11694156709598 +299.5568410799485,162.54433123855648,290.9295767664515,173.31084781193601,237.8874105163245,167.339006632752 +297.6850422564335,162.7470102851255,292.9157108770345,173.720512302644,238.5651989007445,167.71174484102698 +300.51964335351255,162.92448343251448,293.4769406215885,174.18921928838296,239.5463803824205,167.83780694332302 +299.2721011597805,163.2260381005995,294.1454052909825,174.53920157772097,240.2194519683735,168.35679314969298 +300.89596010708755,163.2580875261085,294.7241993161145,174.75016795739998,240.5434898563145,168.59058912761202 +302.6695364306945,163.64322623594552,296.4823453314105,175.066548725826,241.9451194789235,168.856417089802 +303.5157871478215,163.82237560510652,297.3406706422065,175.31549726418098,242.4826432234505,169.093500310423 +303.44463077150454,163.9611585482965,297.5878114803505,175.701691509841,243.2819891046785,169.59126889188798 +304.4511158203255,164.31256993801048,298.2143701505975,176.399992048659,244.5942209909625,170.026230664808 +305.7725193519465,164.47503676815847,299.8255803049725,176.53766256551,244.6532361892965,170.143301426672 +306.7000679376105,164.6959349098085,300.7224106539475,176.88016744030898,245.7777661229395,170.43663731013402 +307.2676149213315,164.80911489238548,300.6042736567045,177.149661850261,246.1317957787185,170.73150520521602 +308.4377470400605,165.21722800872152,302.6384630742005,177.497620505076,246.57587832365851,171.039608906786 +307.7277353861985,165.2299531879865,302.7832074456365,178.06830039332698,247.2900323071735,171.300942312749 +309.14579600887254,165.4441979254005,303.0628161459275,177.949869909008,247.8686808806095,171.556208480404 +308.79266735419856,165.5138661283125,304.9697921307995,178.75446692138297,248.87348627801651,171.84618438114103 +312.41600568643355,165.97711165593648,305.1528110077895,179.153461905761,249.7724600418225,172.29585075272 +311.4778246659245,166.14751687350952,305.0829168734555,179.179069992961,249.7623607802925,172.27511082773202 +312.59349439807255,166.25652496967547,306.6076462083765,179.456517787196,250.8808702439195,172.800069684783 +314.74033340869755,166.4165112137685,306.9750423820815,179.621954869438,251.1407474396855,172.77167841084298 +313.78561448049555,166.52838926346152,307.84576270459553,180.322382253853,251.6668298203015,173.08346980738202 +313.24205882381955,166.66202923482348,308.3103621062945,180.16573749296197,252.39108973087951,173.332308217263 +317.30371344599354,166.91287628362647,309.3781080610345,180.52612923009298,252.8836188895685,173.72622318861698 +316.5823332608745,167.17392409657947,309.3766526235645,181.304048204536,253.5575957695285,173.772448532152 +317.6177318615335,167.1205543543275,310.7223912413145,181.577967374242,254.1300879706265,174.17588926333502 +316.63205785763853,167.3188128771215,310.1924342976815,181.62049037298698,254.0149576477475,174.23305560180398 +320.04263817507956,167.56945138459048,311.8060824407645,182.190859435589,254.86990437476751,174.54642891770402 +317.6443176870445,167.7541397084795,312.4029531752485,182.084611433607,254.4488456526315,174.911610297479 +319.09301933536756,167.75887764978148,312.9264942643105,182.167656017983,255.3120220239195,174.848815560905 +320.38195479946654,168.19068340786652,312.5732859965735,182.65781562443198,256.5574970892115,175.184978038755 +320.39082176493355,168.1712500596605,313.9307967919045,182.86462457579097,256.9915346715295,175.40098669164098 +323.0447602277055,168.43678911384148,314.3876015118565,183.347833301704,256.9870847084615,175.39644821125302 +322.36008462686556,168.44565549166748,315.0996637122965,183.04490875029597,257.2353301696975,175.785671828663 +322.9528887946585,168.6856725244195,315.3348304966995,183.485760149815,257.8544477923305,175.877614862102 +319.0634838948295,168.73555038974348,315.8422829026805,183.499602735939,258.1022088968375,176.218011326841 +324.55628755595654,168.98700821342948,315.8523300889515,184.04186168150898,259.1302365899305,176.55596473460503 +324.8300239733845,169.2084253071855,316.1611231826185,184.23777987400996,258.9695389481195,176.60643906074102 +323.6367160569785,169.2644305736685,316.8326781551655,184.666986405285,259.6600397569275,176.780379371209 +324.92726799386554,169.37183028084849,316.8110915047035,184.712104698396,259.7190261707255,177.06052142820602 +325.46744717034153,169.47425951707152,317.4168241784895,184.499384892271,260.2340614785135,177.36038610108102 +321.65601040169554,169.80680312378547,317.3062571461445,184.71849014501396,260.2778848053825,177.41796658887802 +325.17267458907355,169.72819424954048,318.4079554295525,185.550518898346,261.4467957679595,177.48742835455 +326.2480123299345,169.90173476795547,319.4696548133415,185.388501657667,261.2534604486445,177.595009692244 +322.16398544187354,170.19249779794052,320.6806757453155,185.710232009209,262.4529446949895,177.917554296613 +327.8886809707335,170.20130082729048,319.1888801260775,185.51862393541097,261.7057380143425,177.95805115283798 +325.16879530692455,170.3257010308625,319.1796085404975,186.55304021466299,262.4867540409035,178.28947281283803 +328.4703450995485,170.41686533060448,320.6088954803635,186.43412373312998,263.0750924071395,178.34532739071 +329.39715211949056,170.3118111194865,322.0421185854305,186.54658772863297,263.4901777125075,178.54186271170403 +329.08952138327055,170.42665916875552,321.3146757134915,186.39359246355298,263.4358673525335,178.54920486950402 +326.1945118152335,170.7589366322025,322.9442417877435,187.074049542232,263.5615201636025,178.82244295686502 +329.28528925853453,170.69066013326852,322.2442631448265,187.322161775371,263.4464340204785,179.147145017588 +328.2222164968715,170.63638147379652,321.4744163408065,186.904015368719,263.7230590804365,179.324633994259 +330.7368885655885,170.8567443206955,323.9027236386195,186.77463838181097,264.2696806691815,179.080422394695 +328.4784088856645,171.0533759606585,323.5568605764755,187.51593922418397,265.1573200793195,179.29940345659003 +330.64909160569056,171.0513477048275,324.0652662232635,187.43350610274098,265.5421665001805,179.23003730721 +327.4404566038235,171.0698673646295,323.9867098290215,187.34950806426298,265.0314404242965,179.50347611855602 +332.01507539724156,171.2144433883235,323.4010437457975,187.33626411522897,266.1938859008765,179.46577014150103 +329.4147103149745,171.29123139271547,325.0311882050785,187.785330411776,265.7550448634685,179.786826234177 +331.8312521150525,171.64138985617348,325.6972000991915,187.748595395103,266.6538409798185,179.75033128684703 +328.54678537429254,171.39063129093847,323.8935259575415,187.77508957237598,267.0135222483145,179.93363295951298 +330.12568610575454,171.63605592996248,326.0967285645135,188.77029051315697,266.1534809361325,180.37271681445299 +328.89654726013754,171.4553914011745,324.2655332142775,188.810567093445,266.7263675213185,180.12638385743202 +328.41637788132454,171.7708096124685,326.7052898434885,188.917553498453,266.7962019052785,180.477785948968 +327.3914978789005,171.6183986548275,324.8447098826615,188.325907050372,267.9823420364305,180.29935087228102 +333.95184125720755,171.77527216272847,326.1412097275435,188.70039715692099,268.1882484662515,180.814069455116 +331.69092561768355,171.9643664228695,327.4903622742475,188.53198585362298,267.6014318200245,180.95978695359702 +332.26116307294456,172.2725683612025,326.5688990318785,188.61470986764897,268.3287710066015,180.97003303282702 +331.00513641581654,172.3588550406675,328.3624215862455,189.09050359430597,268.9381291737005,180.82338337249502 +332.3665571168875,172.44288139332747,328.09285504071653,188.68686044348897,268.6654571059185,181.23418801619198 +335.53763529298556,172.0227675402985,327.1939268142845,189.76823913994997,269.2296709985095,180.99914056584902 +335.26970676019255,172.12675572891948,326.6228798651135,189.107508739727,268.7865733112855,181.38146660403203 +329.9940798003555,172.5268553047635,328.82481548491353,188.961551309024,268.8224018377925,181.50582971638897 +330.8342196412875,172.6910888319415,329.2170106606165,189.23804452089,269.5224494719675,181.40946284974598 +331.28746615900855,172.6738945287005,328.1045382162765,189.57435283497097,269.0458791256485,181.59009284004702 +336.6617126417875,172.72115451030749,328.5842292540075,189.543125820503,270.2394800263775,181.292750260824 +335.66504928475655,172.47098319489749,329.5207809187635,189.78091618894297,270.1396535706325,181.474370981101 +331.83845060510953,172.6810515316065,330.0309887912615,189.61507425364198,270.0731932873155,181.86827096047 +335.16939722619253,172.63466305594648,329.7755374618935,189.70007252023197,270.2445857796975,181.859821744418 +337.1825865191585,172.6185994980935,328.5680358875825,190.451835449932,270.7686280591355,181.74447135039202 +336.66704298792655,172.62706022942052,329.8117806680285,189.90265996823598,270.8581540210675,181.65996127639198 +336.36380200980653,172.72193912959352,330.8054877005525,189.85291717765801,269.8201110701135,181.79128391944198 +334.29852324940555,173.16408459377948,328.4708953912935,191.026475947142,271.2719013702715,182.05580225289998 +331.15110072381754,172.7386812375595,330.8514483296415,190.19755294250598,270.0678659647625,181.79872075361197 +336.97623743894354,172.9523372756525,328.7666682840745,190.20214704620997,270.5528294782025,181.82405463141498 +339.11916389996355,173.2452740089625,330.3561173706535,191.39457992241398,271.8734931674415,182.48708448658903 +336.1180526029655,172.95070070957348,331.5686983966415,190.50437971493199,271.3410131329425,182.32040983486797 +336.96769837459556,173.23890106666448,330.6422007322005,190.39086128402698,271.9108513644335,182.504009562126 +331.30699979243855,173.40918655262448,329.0295291618525,190.291444222111,270.7737845435515,182.27432192569 +332.0707980248955,173.3393168257685,329.7216499363615,191.38989942352197,271.9669655126655,182.256591054943 +335.34962286470653,173.1734769396005,330.6310401129405,190.87112912081398,271.9448895973135,182.568095047839 +334.9604453251025,173.38092719197448,329.6974746270125,190.561671077984,271.3591385845005,182.342048749963 +332.46754485523553,173.0837932327775,332.5100858833115,191.473672134509,271.4895999755425,182.298191175569 +338.84963959412755,173.33573776089747,332.5596454468215,190.67723219653897,271.7104503467695,182.38910199238802 +332.32792688166955,173.4334008488185,332.4664800746185,191.58844869750897,272.9189464166015,182.996043030287 +331.85108867041356,173.3598188609185,330.9766370919585,191.733376237409,271.7761326388835,182.956419100581 +339.31610042927053,173.28063004853652,331.9360408998735,192.03160281238797,273.2432584368515,183.00579732651403 +332.97140004388956,173.7708920688675,330.9401411871425,192.12331460576996,272.2253072704865,182.53636153150597 +338.34140640974556,173.8033044011105,331.6541458538785,190.94453793419797,272.7126720826305,183.116212987555 +338.0017384535655,173.4584934018555,333.2981869444525,190.98604218348498,272.5053492437295,183.03607262911203 +338.9480192738315,173.55925848078448,331.1410346057055,191.28518731565998,273.2434138255755,183.01667691982902 +334.02313557239154,173.56496624854248,332.9671701899185,192.20477321977899,273.5095516083015,183.14916476377402 +339.2060132295155,173.8286376110845,331.3084044190845,191.69084778874497,273.5586251078655,182.76916720864102 +338.9494435951975,173.6890368900235,331.8383111570075,191.220727330381,272.7068317247575,183.206226860352 +338.9621304822595,173.6913053006465,331.8480725652725,191.975167603712,272.4449753806285,183.35018783188002 +336.79516823881954,173.8160437233505,333.6264793254265,191.931295342799,274.0141447918615,183.215655038271 +340.6656662369135,173.55523337160548,333.1470358961765,191.336850458644,273.4982579707975,183.462189132604 +340.4881655726965,173.5936119021855,333.7743144475165,191.687731948884,272.6195321254675,183.16664944321502 +338.2275619913305,173.9544025850915,333.3889397415755,192.05833142567099,273.1202645800535,183.48906229760098 +335.0892320862075,173.7191131711595,334.0493543410375,191.68726553781698,273.0729772227315,183.50036821661598 +333.67817420073953,174.0693323441995,333.4524239261635,191.580558490952,273.9868850894095,183.482903139992 +333.8113406843805,173.81478604190147,332.6400645612925,191.998541459188,273.5317554521315,183.465617892492 +334.5825795688795,173.7084620001595,332.1717925702015,191.628372792635,274.1510778561855,183.467801595391 +339.2500310043815,173.8865895169285,334.3761838861665,191.86860841261,274.3004789947865,183.513012343487 +337.20054304968954,173.94392388700652,332.3271484474415,192.65668282989498,273.8346141836415,183.208942778466 +335.26688469505655,174.1139871730665,334.3379472223775,192.240854804067,274.6256777132045,183.35863672870198 +342.5409811203525,173.82054682500848,334.0987900793245,192.713334352137,274.5773505835455,183.29403676158302 +341.5857180314835,174.04863444941947,334.3485068521685,191.909831074561,273.9417907666035,183.741610208679 +340.5922610882585,173.88041540374047,333.3303238349235,192.860381456185,274.0378272430505,183.473973677736 +338.47852653175653,174.2318000796825,333.1712634139885,191.82305764894397,274.8831506351895,183.27868894813702 +341.92400037489256,173.88609001780952,332.4009224923695,191.92100186761496,273.5488144062485,183.31698798238102 +343.17248621715953,174.26807326747547,333.3195706781125,192.491266056653,274.8332356679505,183.885486444523 +336.28456097192554,173.9915248700575,334.1853990923885,192.84923723933298,274.1435178283805,183.600323814084 +342.0499270696415,174.0648271955895,333.0661699184355,191.959121919508,275.0676224699075,183.37189289692702 +337.6046128629365,174.2418727448545,334.9760906413705,192.26862836452,274.5373187340665,183.853205805164 +341.11719422909255,174.25130685692852,333.8558547712195,192.739642505924,274.6802396729495,183.460409940776 +339.2935052878755,173.95352323230748,333.4391843344745,192.26855500811496,275.1621261304745,183.594450914329 +341.18873796557955,174.06365608812752,335.0471567816375,192.21821912292398,274.2142001999125,183.61891388402802 +340.20567817954554,174.0546879332565,334.5220337708055,192.505159076089,274.0741997048765,183.67635648913 +337.54465195029854,174.09864411432648,335.1353048663725,193.0589371919,275.1193453863735,183.64903650615202 +335.90357947444255,174.38976727566148,334.0513924693905,192.646349968861,274.1181768826655,183.78355102223298 +336.18318974111054,174.41018618786552,333.6569372785545,193.032349545694,275.1956916577305,183.957097802742 +341.65338452305855,174.21066223023348,335.1591799580115,192.42589834321097,274.21132398833953,183.77093305200202 +339.93406308830953,174.2477003740455,334.9417512902785,192.55662516689796,275.1504189814775,183.80939907631802 +338.84875544310154,174.18959165785049,334.6648531362035,193.231948659966,275.1949404532055,183.935817107731 +341.15981360307154,174.2214334537145,333.9664310948925,192.95626060388696,274.52648912004753,183.791733910434 +339.0915136320795,174.2493767592975,335.0428234331455,192.51636251715598,274.3911566952815,183.665189690185 +340.4928826366725,174.20859272265648,334.4316885627055,192.592753044812,274.8907066115935,183.93013046188202 +338.27257273335454,174.25834516068852,334.2003109800215,192.99296020853097,274.7913551708095,183.90581368977303 +338.22578362644754,174.36424443482548,333.8136936451825,192.959821662973,275.2722226828575,183.79366446252402 +338.7426489206765,174.4004385048935,334.9374942648035,192.59388460308196,275.2877295461075,183.98113444087602 +339.50612065661954,174.2697482105405,334.3753980349345,192.857583704709,274.7167768976255,183.988072292703 +337.92318669253956,174.23079388147647,334.7868375246155,192.595861506012,274.7946833262275,183.85143996745103 +339.07026649487653,174.45964641470852,334.3476256569075,193.12959918268098,275.4470905407915,183.887042957755 +338.5947126792825,174.29061921856947,334.4870598288275,192.74472708998496,275.2760359433025,183.88917347561897 +338.5533579438425,174.2442929936355,335.6411817890705,192.93649537703698,274.8391010058455,183.80971772932202 +339.5689082941515,174.4806908257445,333.9772138770965,192.549294671172,274.9363719180105,183.982445704822 +341.12523801388653,174.4257207118835,335.1182656781985,192.89411710581896,275.2219137164445,183.88315416792 +340.47048621586555,174.26955489078847,335.3163809018715,192.66936215637696,274.7403883156625,183.90374865292102 +338.8819355309435,174.3354551330085,334.8413576428865,192.95850965659798,275.07083904523853,183.97739167106698 +339.8874253422795,174.48717091715247,335.1873737396445,192.88197444774096,275.5203251430565,183.957702385005 +339.6507797740005,174.47096318776448,335.1343859967025,193.006719012541,275.3762999574615,183.924236691371 +340.1246006069645,174.41009817830047,334.9891194223075,192.85495354978298,275.3565010890215,183.91529422134101 +339.0298738872065,174.45599961610048,334.8363743359675,192.96006044098198,275.2099089158755,184.052352900772 +340.53468374794755,174.4694060723545,334.9036320719195,192.991414517188,275.1687933532655,184.05062158964802 +339.7837269229215,174.4420207338955,335.0266054935115,193.12640963052098,275.3608258331435,183.97147846958802 +339.8190851771905,174.45649842525552,334.9577307303265,192.981994862386,275.2067684361435,184.03234387148302 +340.6919718468245,174.42067673624348,334.8085658949395,192.961997389124,275.1791595731305,184.058252123228 +341.45134751069355,174.4206699198255,334.7869256858635,193.102950609287,275.3359701554425,184.06500369604902 +339.75803816128155,174.4653272997515,335.3910228897005,192.983139701166,275.3060060487105,184.055628542936 +339.8490012386395,174.4469106179925,335.2877525399645,193.08190810183999,275.4779775694805,184.04139248485097 +339.5176039988305,174.47126186840552,335.5755506454135,192.96787509667598,275.6494064316035,183.98046702156103 +340.5501753754605,174.4571366908765,335.3515128104825,193.11404068920297,275.3750820143765,184.04533417367497 +339.6092748761175,174.4945620469615,335.0140332230615,193.06527909115897,275.3908795300955,184.00821301498303 +340.20973100293355,174.47573274596152,335.3211521862785,193.21628963393397,275.3129592970475,184.02269508740102 +339.54441788362055,174.51549337941248,335.5643878604545,193.055466518189,275.6405565837615,184.021003703745 +340.5116553477615,174.43493415252152,334.8804304541055,192.964379873229,275.5406459068255,184.071821479599 +340.38492471203153,174.5371636042815,335.5338501953045,193.283809404569,275.2088979442905,184.151290952328 +340.3820635440785,174.4955262765215,335.3157997446595,193.080223291199,275.4269409107495,184.09214308570898 +340.83981571671956,174.50695666225852,335.0301408371295,193.06742857779597,275.4453146185495,184.090065452413 +340.79034738027354,174.45634435302048,335.4181008194825,193.309191368626,275.4053555228045,184.05735886544898 +340.48660312606455,174.46984422025048,335.3364755451345,193.102523882272,275.4565605122395,184.09533922199302 +340.73966513602255,174.4950537282745,335.4524938232975,193.14708471447,275.5302613067555,184.114508904743 +339.95695055309653,174.49695657504947,335.3140473820605,193.206070908325,275.3574062242735,184.147641700046 +340.85314204240456,174.51781494533247,335.5409665066045,193.19408853428797,275.6174384149425,184.10186425129598 +340.91285803922256,174.52368307911348,335.2491011109135,193.18691228247997,275.5846289802675,184.12894427597598 +340.49104093193455,174.5287264361575,335.3609737016615,193.05263006368,275.5056986196515,184.157762435035 +340.3382028740605,174.5255126380655,335.3021448426115,193.033338168302,275.54290454478553,184.13194047736698 +340.00318989634656,174.5586334668385,335.3066559010785,193.11493826223898,275.4928797412655,184.10612534394897 +340.72105704275555,174.5455262011285,335.2354528613705,193.11766762229297,275.5041446709115,184.10559270698798 +340.4713462991355,174.4916732474735,335.2641634785385,193.18307770523,275.5931353672705,184.18593438054103 +339.74399147081556,174.52218565513647,335.3431138322185,193.187045016843,275.6003923608435,184.15098359657998 +341.13918687496556,174.5136093621495,335.5744024586085,193.10647046661796,275.6217299141505,184.12865087199202 +341.9824467830035,174.60762935833952,335.4628465548325,193.16349298864196,275.5240130693385,184.10225637007602 +341.3376351172345,174.54971076228952,335.0962866241465,193.020503190885,275.7393291729555,184.142873325276 +340.07811725361154,174.55192628449947,335.5047255334995,193.227518218873,275.6601446342735,184.067718505558 +339.71781056410754,174.49165283792252,335.3433110730925,193.229655028426,275.5541427673455,184.168202262691 +340.55646376554256,174.5687128105975,335.5230302522475,193.160670199648,275.5400747472935,184.126932570426 +339.89601948173754,174.55597137939748,335.5445015653285,193.15188311962396,275.5677831190945,184.114647550055 +341.0865032766665,174.57863970280147,335.7185118278565,193.22069472742396,275.6695958965415,184.170659026578 +340.6510945437195,174.5583263887375,335.2307622814375,193.05848023177998,275.7060224785885,184.156622581874 +340.6962096432835,174.5813475757725,335.3962007516155,193.140692806763,275.4164122990095,184.17476724554803 +340.6948366030305,174.5556983138115,335.6323226912565,193.293965838855,275.5391939796665,184.19104722776598 +340.3464079875045,174.6339632209975,335.8988104716735,193.273948739582,275.6860384854815,184.186639118652 +340.59484864280154,174.57330995126148,335.4197240229595,193.293413233342,275.6752859024935,184.145982203446 +340.7575878280545,174.53608367755652,334.9706122630735,193.126393487369,275.7117966510195,184.146947521767 +341.5016040356225,174.5983268542775,335.7230921429975,193.260195670746,275.6726638836195,184.15633600445398 +340.65698185109653,174.62337723583352,335.3958625706515,193.30366437039999,275.7192410647325,184.172782489184 +340.04951725448154,174.6322796192445,335.6284995668925,193.23428729102096,275.6307014116525,184.148365629914 +339.35853321943154,174.55334242159347,335.3089481969435,193.26085442833096,275.4820664899405,184.242989896908 +341.84701739563354,174.57593094684051,335.1744739708345,193.158339419161,275.6302545799155,184.170744797181 +339.8518342490775,174.5455710964165,335.9321295992905,193.32670315942897,275.6689153095545,184.128476372992 +341.98861870002554,174.6059114755405,335.7843176358075,193.17272474697796,275.6152418508405,184.17371439534003 +341.40135926988154,174.58654288758947,335.2997090271735,193.33088332759598,275.7375539950345,184.17483942801903 +341.76164938509254,174.62528633840452,335.8588387575905,193.19117731760298,275.5962540477175,184.162108407188 +340.81274540359755,174.6366371524585,335.6311112540605,193.14079158242896,275.6895463993255,184.21728090311 +340.08942649627255,174.6142414182665,335.6761172702565,193.22346281397398,275.6541616035595,184.179953187919 +340.05391698626653,174.6249866897145,335.4449030230835,193.22372892665896,275.7570582813945,184.217973255091 +340.99092243428254,174.66277875403551,335.4802005856525,193.32654293052997,275.8053817147275,184.21547626450598 +341.9402925380915,174.60235132966852,335.7806856545185,193.27890035184396,275.5852676119845,184.17154985122897 +340.30201633449656,174.6666575503255,335.6045556225415,193.25237288710997,275.5939100301515,184.194887848066 +341.56139983093755,174.70512185490048,335.6607878302555,193.054371592675,275.8685533700065,184.1671949921 +340.19915814737254,174.6244671996535,335.5964893943185,193.20457009328896,275.5288405287295,184.222580446371 +340.94527379203555,174.6045001067875,335.2620457878775,193.08860119213597,275.91656386027853,184.117535574567 +340.73003268654753,174.6710818982665,335.60121046338253,193.102560539901,275.3924685712475,184.251984527454 +340.46393593600953,174.6220451048095,335.6777920318215,193.22078588674196,275.8880951934195,184.16492399571501 +341.08235738655554,174.6770166816895,335.5894999215565,193.23967124402498,275.6277803946795,184.17961936490002 +341.4327642396385,174.6511741291805,335.7616546449245,193.26786929670897,275.6812592281055,184.206892580506 +341.7410976562525,174.64462027758947,335.8095645897175,193.19747345176899,275.9610323376605,184.18751613645497 +338.92982382930956,174.7579243301165,335.64311357448753,193.24443066990597,275.7611032552485,184.29764176643903 +341.5298408248285,174.66571195557947,335.9040135822025,193.342757765417,275.5587755684005,184.281800956832 +342.06586055238154,174.71319843894548,335.7062068466585,193.39748932635297,275.5320186161825,184.23866681281902 +340.51202812357354,174.72641240781752,335.9793038434885,193.28699383851898,275.9554200725445,184.15447622270898 +340.89999458363553,174.59201730398547,335.7908590739025,193.56258815317,276.2068532173815,184.235317487972 +340.87235858817655,174.80610977614748,334.7439147894005,193.661219045142,276.2696783869195,184.32512121230099 +340.47785035871556,174.67263796435248,336.2397540989265,193.09945756811896,276.0224975676695,184.247482486129 +340.16589031333353,174.62753341899548,335.2247831315555,193.253536523268,275.5991201861115,184.19581873915098 +341.1722259235015,174.5911186891895,335.3553820986365,193.469893798815,275.5231293577265,184.261917959115 +342.1033002193095,174.61831811703752,334.9677423985875,193.373391401481,275.3948305319725,184.24206209541 +340.0561187474975,174.6978414346135,335.3710560251725,193.328771300122,275.8342831252135,184.24893377069702 +341.3003192669585,174.6079319361575,335.1223823759595,193.222974911213,275.8020915808105,184.226307946387 +340.8092506116045,174.66047479252347,335.7159284896455,193.324936819426,275.6739948681025,184.216433260877 +340.46500121556653,174.6625106909745,335.7194388798195,193.397102450183,275.6863981998235,184.18677606123498 +341.5776592173035,174.66012197600048,335.5142281273725,193.27192875877796,275.5510706312185,184.24264774345698 +341.04656743369253,174.59477766206948,335.3550949496985,193.39923246450797,275.4661893658255,184.24507140406303 +340.0561693526855,174.6804285083635,336.1067426000565,193.46558638103198,275.60187095029653,184.246656041912 +341.47373905512154,174.66709467500948,335.2310012262115,193.22322072987498,275.6541527581135,184.251723103441 +339.08083848444255,174.6278453738525,335.4723934369315,193.247557957735,275.8241842809025,184.230389092917 +339.5538212444595,174.7581622697545,334.9488995940705,193.299653779158,276.03524122925353,184.318621252213 +340.71600154363455,174.72329723928948,335.6097332518995,193.36355860018398,275.6612540997565,184.20356163590998 +340.75566248530953,174.68265039352048,335.8029435807765,193.237153107989,275.6541071298025,184.28034119248503 +340.38060232596655,174.7196575608715,336.0181004062505,193.26346067018898,275.8235624901145,184.226020721387 +340.78993370106554,174.6785384472505,335.4433331250965,193.370734472148,275.5214063075855,184.207010666195 +341.2911241750235,174.68195154482447,335.6591161597215,193.29050706292998,275.6169477794395,184.22440923474 +340.33349789992053,174.6929365836325,335.4185416322035,193.2465123294,275.6040714096325,184.212796729167 +340.32406540110753,174.6705339149055,335.7126272445055,193.532571682987,275.6423182307055,184.09902236542302 +342.37391268872756,174.6633148023065,335.9913557640545,193.43448557162998,275.5238143555995,184.36609629651002 +339.74917307101055,174.6505398602045,335.6294835429775,193.382330083637,275.7712708590675,184.21674502872503 +340.41414168611055,174.68706782183352,335.8546689264045,193.14208638619198,275.7311355882225,184.269846783219 +340.6380635330455,174.7177740559925,335.9618905775925,193.43212213528,275.68306953372553,184.198966558081 +340.41619159762155,174.7877104986705,335.9106754959815,193.107643763493,275.9738205796135,184.17480281749903 +340.4449478099875,174.62159005554452,335.5859295259475,193.52344500447998,275.5575368303255,184.198027602749 +342.19758410035854,174.67583640365052,336.0684538747655,193.09194002698598,275.9440516497465,184.171213700617 +340.7435738525005,174.6868214344995,335.3531440580395,193.375526607746,275.5061268969685,184.25748166736503 +340.73520217844356,174.6757696907145,335.4962085330275,193.478166189945,275.4020153250775,184.233603986996 +340.41802407851856,174.7204551977665,335.4232622544385,193.379121095092,275.7366571075965,184.24406456229002 +340.7714339447475,174.6820839176155,335.2174792934755,193.39664823143397,275.5080883677175,184.342231457629 +340.9990409656825,174.75553958455248,335.9008320164395,193.586163512145,275.8292450405555,184.18199352841702 +340.53163052543056,174.57008494922252,336.3696569554885,193.30533079010598,275.5806093911845,184.14089036498098 +341.0595851512645,174.7499304779995,335.5284218301705,193.17702089352497,275.8457645392245,184.286845430357 +341.07543942067053,174.67982147272352,335.4331887301275,193.10547969203498,275.8860791293495,184.17287125519903 +342.5873884185205,174.7740564353865,335.9622658058655,193.466529906039,275.6866228741235,184.281624975118 +343.17856509225254,174.8156019330345,334.77553142432953,193.052370859218,275.7981860873375,184.19222740509503 +339.7220910249935,174.64351946784848,335.0458477955725,193.20452670721096,275.7966130709035,184.19130852204398 +340.16601566518455,174.6842524577325,335.4209297758575,192.95870121446399,275.4114025538245,184.27005895472 +340.87848587418955,174.65693286179948,335.0943759267685,193.56206607736897,275.5808226560575,184.254138318255 +339.70496698351553,174.66294094557549,335.1926799189035,192.99702505417798,275.6714096403575,184.28322275271603 +340.29445125095054,174.7922139985995,335.6286733040845,193.297608466395,275.7781509226025,184.22382190753 +342.08174656922955,174.61611327739752,335.6049914033595,193.42337418875297,275.5902743156995,184.237292054073 +342.23825868433653,174.6306711342375,334.6709041232565,193.40741800375798,275.7272438884335,184.27493273444003 +339.31527768212953,174.72928367701252,335.8429133753535,193.52657926484596,275.3831611955525,184.331903207501 +340.6541736934635,174.73875180908448,335.8020308710475,193.41536610939596,275.4485709507515,184.30945061723997 +343.13656365289654,174.86286944086748,334.5694421016765,193.49783574961498,275.3058041366105,184.244889300112 +341.1708759467475,174.6789025208995,334.7639333909235,193.56983396683898,275.6332405498355,184.13979092576398 +339.56278063510456,174.64174229518449,336.2775086594745,193.345569988847,275.4330325183135,184.11192487317203 +342.93647745682455,174.82008585404947,334.5396185285045,193.31570779601196,275.9271560263525,184.361247177191 +340.3249897812755,174.6575245229035,335.1031940839045,193.191977934512,275.7046575304575,184.274539582944 +342.9338861404585,174.69908268202352,336.3221524043495,193.542262032378,275.5794626152155,184.212422034873 +339.9450131646555,174.64566780898247,335.5766516507775,193.329926546345,275.9038272817465,184.161763867231 +342.1040760943615,174.75838620941647,335.2191856867505,193.63211294239096,275.9606985087135,184.35030700022998 +341.3012932333895,174.77405552651447,335.7071717618545,193.42668867704697,275.5803558458325,184.20471794334202 +340.88296772903453,174.73286285124152,335.6563555173885,193.22984169965696,275.7688934019285,184.167456788006 +340.27726513504854,174.7922398965755,335.7972775449415,193.35425010781296,275.4145093709205,184.295626892126 +342.05319170457454,174.65830935385952,334.8786961427385,193.43833116812198,275.3483153505365,184.30771881987 +341.13003702359555,174.67500307843852,335.6107630792395,193.34063701221396,275.6373768161945,184.176905113869 +341.3175168204775,174.7064279470635,335.14913455757153,193.236944388153,275.2231413569355,184.10744336673002 +340.65235303039356,174.75921096797651,335.8969890097515,193.540910297911,275.5656857748205,184.106198087853 +338.91949634982154,174.8193601079335,335.7844461362975,193.052402981336,275.8793263852885,184.387554626527 +342.0593708501405,174.67732493423347,335.1888367894995,193.605066763308,275.5075364390965,184.12958937294297 +339.7667417052375,174.81625270201948,334.8669264988295,193.42883171314497,275.9469884904975,184.35974171973697 +341.6283861891665,174.6738649898635,335.0974332878005,193.128178066134,275.8043861948335,184.181825439595 +340.6242874167155,174.77607770068448,335.6785585051945,193.29544385148296,275.7710614668155,184.180174053592 +341.6154130936295,174.77026232922452,335.5940508638205,193.32597170493096,275.6840643246585,184.220031958964 +340.33325912686854,174.8033044444515,335.5378306722255,193.146311202032,275.8779796773575,184.18504802966498 +340.10586641442353,174.73616239902248,335.1785015485155,193.201922367051,275.8851582715335,184.135102352479 +342.1843936274955,174.7277588125055,335.08637786642953,193.07795170067396,275.6642355311645,184.235759313463 +339.13726697169955,174.70408526604052,335.1658471432755,193.122299774432,275.8138498351085,184.16755592546298 +341.8156850927005,174.70721907600847,334.9904357529065,193.413873729282,275.7867655617835,184.235246548041 +340.9230158902465,174.69215525668147,334.9601750309635,193.16068972274996,275.6712851700165,184.23974762625 +339.8184949897715,174.7476729263925,334.7508435879065,193.545908801417,276.0796338249845,184.35053912048102 +340.85877261419654,174.7640076702715,334.7633651522075,193.384950219676,275.9387545271555,184.26084857037102 +341.73945868367355,174.71743215218248,334.8374101563925,193.05736833515698,275.4971644022395,184.268539046115 +338.8825775930885,174.6698257214905,334.8895023448885,193.12786463862398,275.8623078786485,184.18430851673202 +340.6522054247905,174.88830526672848,334.4856289467965,193.487403307786,275.4701414135785,184.28642384109202 +342.16630865771754,174.8293065367015,335.6387699635045,193.46961655399798,275.4147737928455,184.30825044089602 +340.43263933314154,174.74592937291948,335.9714568440315,193.29417173813596,275.6175661405905,184.236697685342 +342.6307902925905,174.61064232922752,335.8164977560825,193.12992807709696,275.3014775461855,184.23205002234 +342.2582180250685,174.7972556254955,334.8942302442265,193.25279313184797,275.7492972435415,184.182956624697 +340.1226751118425,174.69522214908147,335.9349456228735,193.057747475285,275.3704114228785,184.32042212165902 +342.78428986138954,174.83958631685448,335.0792853838355,192.926785659774,275.3989439094405,184.25514836077798 +340.36861859615055,174.67782961656752,335.0015415469595,193.193653880755,275.6392206281015,184.27877949985202 +341.62498888050453,174.81377659867547,335.3377922877715,193.068717968204,275.8745741045375,184.21160817280702 +340.43903154724154,174.6922744684665,335.0220655590975,193.497940421674,275.5671736422055,184.21143497499202 +338.28477816218856,174.83297243276047,335.5158424144595,193.30996136610798,275.8914363802835,184.31145290582202 +343.01892382263753,174.89136554556848,334.5113100370705,193.00491804649198,275.2839051952345,184.19393629352402 +341.4638071907625,174.85352568770548,335.7277425945555,193.19003242062098,275.7673383303355,184.176344422103 +341.18931398456454,174.70626690179148,335.0236457397345,193.541295158816,275.4126563592095,184.27717466517203 +341.2939939043865,174.8449290179995,335.2610269660805,193.19913889732197,275.5743141953405,184.271914334904 +340.36550193187855,174.8150072810575,335.4857057161055,192.97255858648896,275.1994032374935,184.14152688383098 +340.42127174753455,174.82374355406347,334.8787838677405,193.01997584743498,275.1351589108535,184.156561810815 +341.98204316383755,174.8463728080875,335.0851153591765,193.50789192336197,275.5476221987935,184.186665017272 +343.0877120956025,174.82265227625652,335.3596718418475,193.65540261924497,275.7687946538095,184.23540543180098 +342.74229129252956,174.8020923931545,335.4914016458525,193.49830627928998,275.3395732471285,184.32319833371503 +342.03481134951755,174.7348638430085,335.4027176892345,193.17359645490296,275.9072302694575,184.37500844454001 +338.9754239581685,174.8363920704935,335.3701529030345,193.437097952055,275.6285450339115,184.19182521368202 +338.46862418510756,174.88400614490348,335.6015040556415,193.378958176271,275.5717761857705,184.20707989121098 +340.87212355177553,174.97097780521352,334.5311283366325,193.11998208146497,275.6865295564535,184.37801135597402 +338.32460807846155,174.7137651210415,335.8470076522375,193.369865030487,275.3687404487305,184.215929036047 +339.19154397320955,174.84911384515448,335.7422491342825,193.275319006367,275.7555692950465,184.24231010213202 +341.8509302179115,174.94911995747947,334.4948046459865,193.08669766046,275.8238628104735,184.201393424041 +342.21256283704156,174.78669549931152,334.9452251925375,193.443528147616,275.7025450267375,184.312917242264 +341.44751975387953,174.8975663938375,335.1189750645955,193.540935253037,275.9583534171095,184.42666533776497 +338.6010076700695,174.8041347838435,335.6276004489985,193.59377554766797,275.7018394156545,184.32827185771902 +338.78314093894454,174.82894633286952,335.4966003394945,193.74324222227898,275.5789296043195,184.140094856338 +340.43492469854755,174.97583487409952,334.7081862734345,193.53489753428897,275.3586207297155,184.27100826734699 +341.47626291311155,174.9105211618765,334.5263104921265,193.52826753128397,275.9072947052165,184.288613474751 +341.12626797435854,174.80078786495648,335.0780357758395,193.04966519165998,275.8105083250765,184.40346011044102 +344.04241107010654,174.76660798550847,336.0675139424725,193.575569561345,275.5946350918415,184.24201029983402 +340.01782587413055,175.1302318858555,336.0934680065485,193.177490339563,276.0111519598865,184.213205451906 +338.7212231265855,174.7970617220675,334.6948807410935,193.159403648646,275.7849063588785,184.51019676426102 +340.48402659937756,174.73938787108148,335.7426566378485,193.42089514833697,275.4804600534555,184.16046980613203 +337.09286754247853,175.08140515203849,335.0954244777745,193.55174536105096,275.0491297609915,184.24800953051601 +340.61094590800656,174.96012504732852,334.2530799689665,193.125899659423,276.0180776831245,184.520730569259 +342.7304124719295,174.77154486357347,336.1427000316335,193.199577586501,275.1829434974415,184.20104019547603 +341.29742188849355,175.07952205665651,336.0159301666575,193.124428466398,276.3050229861755,184.214663539777 +345.0826048224515,174.94804833339748,335.8806839775985,193.86518909067098,275.2139709597515,184.094517037748 +339.84940636421453,174.73912161641852,334.4125589661325,193.86445684747997,275.4960625255305,184.178614190997 +339.92235693386056,174.7282562435775,334.7712780848445,193.789285115555,275.8507326407555,184.17776188652698 +336.93011574963356,175.12365754825652,335.9839361238685,193.995901327694,275.1042980887855,184.33503657461102 +343.3627721279365,174.9177601910245,333.4917691375205,193.90431566613097,274.8964452053805,184.45759394646302 +337.34245652496355,174.97540209592051,336.3318584263125,192.79262623969896,275.6448388340125,184.239812727519 +337.74504344704053,174.7453093995145,333.8586147533685,193.959643853241,274.9058477683505,184.548363463589 +339.4205492248785,174.9861213905785,335.5558979839875,192.88163702111,275.8573675419925,184.533927683454 +342.64598678728254,174.76131802501249,334.3338937527015,193.17979330943598,275.9519965773135,184.56438396019303 +343.99664009652054,174.7812922975765,333.4886458920765,193.457926147311,275.9995201345865,184.258802831995 +339.63320416904355,174.87648677476147,334.7473054788245,193.80384939793197,275.0443896382135,184.353600491753 +339.1463553704695,175.1339045214625,336.0102472503225,193.224034494539,276.1578973346555,184.163512470915 +338.20658488188656,175.13393775781748,333.5364429945355,193.700986005856,276.2859173710465,184.369094897609 +343.4614666062245,174.8820958515945,334.3679370000365,193.929909511829,276.0167052016185,184.294892044201 +343.1896411725605,175.10125349175348,336.0461016184895,192.889179220723,275.6211383435545,184.240837946937 +343.28566547337255,175.1002953275335,333.6730885852045,194.018892279292,275.6471691750565,184.172528044361 +340.65132910328555,175.01920417831047,333.4840948122555,193.987627201331,275.3385040960125,184.147778271099 +343.6982930973355,175.13904127476252,335.4001619306575,193.20377769020098,275.9436010515875,184.531743480071 +343.65449725230155,174.9671510997835,334.1141551331405,193.97609162215497,275.3261507055145,184.24856845605302 +338.74648946617054,174.92700866984552,336.1107192107415,192.81993307186997,276.0597159888455,184.453332184589 +342.86100143438256,174.98872281297952,336.0578746003785,194.069194359103,275.7946482669625,184.166681782605 +338.87436701101154,174.84408292631247,334.5884737992045,193.88955135961896,274.8934143088235,184.629964030392 +341.1934056192885,174.9075463298895,335.6800154695775,193.56746123750997,276.3087698702965,184.45156763443703 +343.52522594909055,174.78113236002247,334.6602209849135,194.02157469260897,275.5643562999675,184.264702049319 +343.22929934183855,175.03291105132251,334.2505240039085,193.00929710102696,275.4325117877085,184.637847748301 +336.09807337606054,175.26033071215647,334.3985195344255,193.97233732694497,275.2307208339055,184.21265222309898 +337.14134941180254,175.2553135327185,334.9274337455165,194.097783273914,275.7551607277565,184.31809687331702 +338.3525151305295,174.84738976096247,334.7116331008665,194.11371852009097,275.8599241265455,184.28533016480702 +344.82647240717955,174.91379415286048,335.0221152915755,193.16528774941696,275.8388863320205,184.625382846717 +343.7026195481635,175.22716017386347,334.8893222844005,193.30684470127,274.9672808439345,184.55047388620397 +338.0801628975685,175.22655464948247,335.8920300919905,193.02432170138496,276.1039428750105,184.52120281159102 +337.7487493436635,175.0295574341285,334.2531113379465,193.83094104692498,275.4453371718205,184.37603953312498 +338.96119649989254,174.89097169963452,335.1119907562375,193.287606604848,276.1993198418085,184.62841246907698 +338.4280403904605,175.28515701947651,334.0339621271455,193.57431744265898,276.3111320205665,184.550014403447 +343.09379973124555,174.93169943567148,333.4692052885805,193.07439486618898,275.8449775430855,184.55031403579397 +338.44366151596955,175.16867792223252,335.5567641037795,193.87715689485697,275.0035171807455,184.47983309909398 +342.06321790742555,174.8708973054525,334.9524885364875,193.60931126611496,275.5791878356705,184.37923559197202 +341.54207990311653,174.8759474891935,336.3539185241815,192.922390609123,276.0986224185275,184.744584703511 +340.63282938436953,175.26751699923648,335.5138150150525,193.13682963885697,275.1792457723675,184.766344954396 +342.3358765521305,175.1525419645725,334.1817535409925,193.207964599246,275.7426345410565,184.39586863349803 +337.9321079254555,174.90306818122747,333.5963749978035,193.041556362961,276.0599876512145,184.354565629935 +342.44951085115855,175.3522771259195,334.2548319432445,193.37749270411098,275.6111361140535,184.74512402486903 +338.09754236536855,175.27562831639148,333.7625092779735,192.95016340836798,274.7329488464745,184.33469651270798 +343.75084985901054,175.2988777261885,335.5289023219485,193.15422397254798,276.0114101821555,184.283851847081 +337.7605516790575,174.89699328031747,336.0273523399835,194.147965139858,275.8257132579575,184.503930402347 +339.22293303093954,175.35177805486552,333.4867779525895,193.28193495417497,276.1432888226155,184.79845930730897 +339.5865002008055,174.9275074963905,334.9442558296865,193.165726996405,275.8105399748905,184.786160891664 +344.2438138908775,175.3578666052195,335.8373611222425,193.726966199507,274.9977022556475,184.74209435753403 +343.66993379059153,174.9154774547585,335.6601818898515,194.05206734855898,275.0986513238305,184.73753322730698 +337.2825366256295,174.99079860424848,334.7952244523715,193.390739582675,275.9921860611395,184.453078951178 +341.1775324563765,175.0491330831195,334.7618785143285,193.740325877962,276.0333008996325,184.38584083911599 +343.6007902760305,174.96424981487547,334.3638708701665,194.02654018114197,275.0960289051765,184.5141379867 +344.01712266210353,175.0213265125355,334.6864048994875,193.82620154921398,275.8447185752775,184.32865054875998 +339.19749023330854,175.1811142179115,335.9546618578895,192.974900609315,276.0422979227075,184.81085761204702 +341.7715499774445,175.01706138607648,335.2380877744225,193.74551798476398,276.02634276265053,184.72056716439903 +342.43385934546353,175.05439633418047,333.9722058051105,193.47416805647197,275.1663024057025,184.346828400253 +339.58746470504855,175.30416111080348,335.7687709981555,193.444452603513,275.29376474962453,184.77574688299302 +337.89477231046953,175.22004028266747,333.3918196005355,193.843501772634,276.1893525057145,184.380680488505 +342.7456411659575,175.0838798321965,335.4062146354015,194.108706216555,275.1317648651945,184.58933990920002 +344.1422071950955,175.1997388485945,334.5918574506695,193.08207025442698,275.8519879788905,184.852800127077 +342.0731828650805,175.02683596734147,333.9319778124745,193.32497768679497,275.5868011019095,184.791874017922 +339.86343792780656,174.9775375770825,336.0384693145465,192.968110595474,275.5635340177455,184.56029525567902 +342.9606066532135,175.46263040061848,333.9092761183875,194.13463260982496,275.9156053455405,184.54419481858503 +336.88058235098254,175.3652993759755,333.7440006680685,193.135165475617,275.7234990414105,184.725527870931 +340.8869112901965,175.4654451903865,335.8112529829485,193.96318472839,275.1685622376595,184.78542189145998 +340.5130630049865,174.9883168287385,335.2888380559705,193.37474357157396,276.3642275285345,184.69879369169598 +337.47522683399956,175.35468604702447,334.2392949356075,194.157583622586,275.6898367283845,184.66643300575402 +338.3948685205135,175.12554691628247,334.2332980299935,193.18911258851097,276.1178263938945,184.426185158777 +341.0026449360855,175.0953446732825,335.3632262235905,194.21080064177096,274.8929415546665,184.71430823763802 +335.8296769369445,175.0054239210595,334.3343842059965,193.718499226323,274.8595982070645,184.683518948879 +336.4915518755385,175.3010205241975,334.1022438269905,194.04286177578598,275.9185700889235,184.39249956931098 +338.0722654889485,175.17641000334652,336.0195037663755,193.98716782769998,275.9672658606225,184.87396792680602 +344.6417717086105,175.39025265702747,334.8722132547675,193.19950396847997,275.1835517551455,184.58969298251702 +340.94757213886555,175.08429920480347,336.0867273788275,193.08214364018,275.8525124600075,184.77223799227198 +340.4210536988105,175.26041065971248,334.8832498006385,193.704493927033,275.5115611389935,184.675568688974 +342.25806991406654,175.43172168909348,335.5071380606135,194.11815841672097,276.31686636995653,184.890574540841 +342.7316248831085,175.1780270198035,334.6431048190835,194.14138232032997,274.9239986896095,184.89306487361398 +343.94434737539154,175.26216737515648,333.55263870006553,193.20952921611496,274.8411100311755,184.619297081179 +340.53377909336155,175.0539175318425,336.6003304081925,194.22480556722599,276.3487535215345,184.914525561968 +340.4065829388915,175.31729663930747,334.4082444566455,193.80683146865397,276.4522495546435,184.948531053059 +343.9552654251825,175.37835511163752,333.9465601332955,193.78730128894898,276.1528294439605,184.86560488459003 +341.40266097005355,175.51758163143552,333.8985564737665,193.02352979312099,274.8562245416275,184.490813380619 +344.0087448194785,175.21497027875847,333.2988421413035,193.95049124688398,275.2425569417725,184.44295834467 +338.02050992710156,175.0784971793995,336.0651182587315,194.32767105423596,275.9062263014435,184.87549963193402 +337.7396949719325,175.56719626354152,333.1715375111115,193.15657428658,276.2905191057135,184.953658300237 +337.0368621296705,175.0876064719775,335.9902240684815,193.80141322744498,274.9443385675695,184.913047529381 +335.9292731802955,175.55880519060952,333.1708618738705,193.100417047058,274.8777564291445,184.458885700552 +343.78632403075954,175.30070142429452,335.6689044675845,193.588935807692,274.9334596772985,184.459764622712 +337.46142375483254,175.0887909096615,336.0522304591475,194.166037506438,275.6618063644175,184.670228782996 +340.6624533054105,175.1619113149565,336.0303725876765,194.358229770494,276.4291007426915,184.98530673188299 +337.8069628313965,175.24923882354352,334.1561474054615,194.131311636411,275.0266152144175,184.97364755679098 +339.47451731353254,175.22213019152952,334.5323387302985,194.280551883192,274.9741711821935,184.69179598499898 +340.01125394440254,175.4294064183465,333.9660116175355,193.71186314343197,276.2305747303095,184.662198671211 +340.56243289958155,175.56307081689647,334.1442172164825,193.98465887594597,274.9115983500855,184.938576808685 +344.8242400161415,175.1389951442705,334.3909365341685,194.17875120055697,275.2336673894895,184.789450927215 +342.43615797319154,175.29154563577947,335.95024120658053,193.53550993009497,276.0534380559695,184.547784464561 +344.3063701681745,175.6182753451115,333.4658660341885,193.24145573304696,274.9041255374615,184.501613950656 +342.8122261075735,175.5445586090795,335.7181981964875,194.25386060373296,274.9078620313235,184.62268015656002 +338.5180934770115,175.35309641427148,334.4630498504105,193.19471834578098,276.3185431740215,184.60751196242302 +339.2957353692755,175.4937598390735,333.8663715730815,194.302990316389,274.9828550327315,184.813521922726 +339.54383376940154,175.15996206456947,336.0347496257535,194.269849011485,275.6404177322005,184.77384342116898 +342.52706640016754,175.62387190631551,334.9857513038305,193.251481105908,276.2606963574505,184.634226296078 +341.04522853458053,175.1460087133945,335.7814629969445,193.86799187335697,275.5880967604145,184.582529126388 +340.8589568410025,175.16918457871247,335.9833759844635,193.951050978456,275.8600997505435,184.80148330473997 +342.41428945222253,175.31998560347648,335.9384490821775,193.34612050306498,275.7843176461695,184.966603193656 +340.3841620657535,175.2173131771935,336.1632392337695,194.40176830245997,276.3853589119665,185.03608577642098 +336.76117121474454,175.3455508860025,333.4730051296775,194.20389239372798,276.3660212045855,185.022948382511 +344.6096231077775,175.62199557675848,334.2488297893485,194.40307299426098,276.1596521336985,184.876818796909 +340.50018999714354,175.19637971311147,335.3808062380735,193.363421551842,275.7358903588895,184.878570035702 +339.30443578125653,175.36378339357248,333.8137085039145,194.07629105948797,276.3878312825145,184.896701437836 +340.38290417671755,175.6601386430255,334.0415600885805,194.30983328566498,275.0260007218875,184.75488011087202 +340.30982087672453,175.33757943161652,333.5148941597185,193.132364190374,275.1975644730805,184.92524693118202 +342.5392264657995,175.1856602618795,334.9691207727755,193.238301042434,275.0771551822535,184.887186428037 +343.60567985094553,175.66966121296247,336.1374322980495,193.885099379589,275.7402277449405,184.802162858776 +340.09505965336854,175.64877970860647,335.8587879371985,194.28146461058498,274.9372099093755,184.968174995641 +344.2166080761235,175.38026599003547,336.0046356762745,193.23820794285297,274.8202784933335,184.723957832772 +345.20498886090155,175.36494810617847,335.1512870499775,194.014786486942,275.3089490625325,184.93212541348703 +339.97177859781453,175.7082836329585,334.6091536818175,194.42322147406196,276.1973665913675,184.94475012859402 +338.92995938816154,175.5703847796725,335.4980792212535,194.356806339566,274.9624580315845,185.078268505837 +336.98090829932454,175.55406177478648,333.6312341870775,193.784373693406,276.3495508252595,185.01439256013703 +342.9687840847435,175.23034237842052,336.0604370122685,193.378060181833,275.2591010691555,185.10016213201698 +337.33447574317955,175.70560211325852,335.7388159033155,193.35630600653298,276.3553626600895,184.91013895349903 +342.28478589265455,175.32053196615652,336.0575957642265,193.205010705682,275.5616711616985,185.122828119227 +345.12545704621056,175.7247337355655,333.7251047814545,194.368854264126,276.0792582746125,184.698795366835 +340.97052878911154,175.36184097845052,335.9546636105545,193.22769722476096,275.1883123887995,185.097512181029 +336.44631069339056,175.33939657049547,334.0754274896095,194.455164655781,276.0943199898785,185.130752000242 +341.13879013843456,175.52601417007452,333.4883668612645,194.36181214939398,275.1223455012765,184.723445564636 +344.18192934105656,175.72931884375947,334.4196403984105,194.41607325668798,276.3489816586925,185.040840905793 +336.64738121521054,175.6595804145315,335.9353537984765,193.75875981768996,274.8878858699305,184.924215531558 +344.86267352082155,175.4133711915715,336.1498237545755,193.622200480667,274.9064386351905,184.656174076978 +340.7023525632395,175.78224211283447,333.76077771364453,193.93411151222801,276.3150560458915,184.84746201358803 +337.76356977678955,175.7704636056925,334.8917264734665,194.22752310777196,275.0213975750995,184.653663809212 +341.20655414618653,175.3325298238995,335.8949372447865,193.810654181701,275.5756098949355,185.14671967204703 +337.3754659292075,175.31415778486047,336.0093507557435,193.29206213136496,275.9576297425605,185.148144623255 +341.0260870126065,175.54061404897448,335.9456556567535,194.50361483185196,276.0641840692525,184.94896578008598 +339.67831230022153,175.7949723139385,334.0457800555835,194.26811306677598,275.4234692965125,184.66070875130902 +335.38585631558254,175.55961889873947,335.8938352311895,193.243121567422,275.2003690952845,185.10501695707103 +341.09320773273754,175.79851934261347,334.0705908140055,193.972293014963,274.8644377863915,184.74279593305403 +340.59222459015854,175.81817026617347,333.4703868283805,194.37238944130797,276.0219826060355,184.68951405196702 +337.10434131526256,175.5120940074395,333.4933262941845,193.82603098927797,276.3653624412775,185.087524946273 +344.23094650786754,175.33000822961247,335.6869304112725,193.41276253986598,274.9225438856235,184.797183389626 +344.2531640913135,175.54927837215547,335.5073060119045,193.7246057785,275.5034773987075,185.16015719197003 +342.16703736926553,175.37013294313948,334.9573210943035,193.57568471450497,276.3928742216085,184.993012903414 +341.18726575576954,175.3408413717865,335.6948499245655,194.32614911568498,275.7062756197015,185.210969146418 +341.1943083930805,175.3579625424685,333.7588344197445,194.519862882834,275.7093376406775,184.69418196636502 +338.34869701911254,175.4116618192175,335.9637875529595,194.489011936115,276.0085260841265,184.98982354290303 +343.1100644088915,175.77636696434547,334.7635635701685,194.50273689014,276.0864374324405,184.96090531375398 +337.53227692753956,175.4115288572885,333.7775726442975,193.38597631704596,275.4007257701195,185.077317733411 +338.16205980474854,175.4254961235465,334.9284879141725,193.46914527513496,274.8706421175435,184.74101870240202 +341.6244540841365,175.5489194167145,336.0178246216455,193.59727244525698,274.9576611518695,184.95424683696803 +337.22910608622556,175.47640781377748,334.8721969841975,193.536617373774,274.9496511118495,184.729739200356 +341.22689103005854,175.68257926168752,335.5116199384185,194.461575813774,275.2223389671955,184.99080938525202 +337.1686610989875,175.4381594042315,335.0795547709115,193.61111850278098,275.0058061851045,184.80799108799198 +344.22447094308154,175.84076330249752,334.7096990453375,194.56085824580498,276.3658551531775,185.118328546665 +341.38749399812855,175.8767512442945,333.0800883647315,194.49551556215596,276.3070773886905,184.854867685282 +336.71260356386955,175.6275675756075,333.4836899448225,194.05383473686697,275.8927653594495,185.22777620425597 +337.62089212402856,175.77304041390852,334.5917652667955,193.53024073292698,276.2700899213135,184.76321234288002 +337.1378505195625,175.40747714245748,335.5173736902935,193.80711435938696,275.4953534050195,184.98563609768001 +339.9627498499385,175.8791471102515,333.1522138592185,193.32138663954896,274.8554118135275,184.81694721582403 +339.7320740996805,175.47111827070552,334.9692759980555,194.155936497082,275.9893352193565,185.140675210727 +337.41389416990455,175.4079697589495,335.5653434998325,193.333721800969,274.8343203972105,184.757972278804 +337.1878088470525,175.8442507647605,333.6689236820355,193.39178856020698,276.2131741231565,184.875949225324 +343.47857943642254,175.87717094542649,335.1303898761425,194.005070595941,275.6171864056255,184.986728371016 +343.06008592718854,175.8174197233135,333.6918559704025,193.30204236923998,275.0369465710695,184.820669660234 +341.3960946411535,175.8370373331345,335.9123696495595,193.977506531146,275.9395202635975,184.80231194735302 +338.70534441918653,175.5777071369095,335.3101867859005,194.28049553598896,274.8981906930235,185.05017177556903 +342.44578707905356,175.80069046383147,334.3465791826055,193.435816355739,276.0135890756825,185.15164234878 +344.04685557481054,175.82904549764447,335.4397834986155,194.594565332037,276.3913807334525,185.23618016986 +334.97178437159255,175.4500979955805,335.8143978396265,194.540504843767,276.3220542770465,185.272289832428 +344.39189808645153,175.9180239666025,334.6257757512705,193.466051238131,274.9768751193985,184.97213982413 +343.0764696786615,175.9190488192035,333.0634904370605,193.709377340373,275.7551260360435,185.13443672589 +344.0688444563655,175.91719229123248,335.8127288950685,194.039744268015,275.0168607298285,185.24421071748702 +339.24804152193553,175.76967420774747,335.4518449244975,194.375366792921,276.0099258957575,185.03228054689902 +337.3988579051105,175.7877811883505,334.2318365915065,193.37187906577196,276.1634612674975,185.322602750251 +344.17554482792355,175.88173678115447,335.1818172739865,194.54383333493797,275.6200421044755,184.848203688098 +341.50509285641056,175.89637697375548,335.6440673936755,194.502099791097,275.5978047422415,184.836751001606 +341.5983630084695,175.9388600671325,335.6272092445635,193.875504227539,275.8360233085815,185.05474694366 +342.40246511088753,175.96840677053052,333.0076957476655,193.523205977926,274.9694677757065,184.984332300167 +340.8800517126625,175.7082006597995,334.8996816614115,193.825567538457,274.8495266761745,185.19822684635898 +341.20045292702355,175.96106685867352,334.0313093485135,194.28212062370096,275.7561236222925,185.14478490750201 +336.8420853417575,175.52644334338652,335.9140272503855,194.57353983968397,276.2449926500275,185.289723049948 +343.7979999245565,175.5147983321525,333.6908883839605,194.14581369746196,274.8297174143215,185.19720160207402 +339.49445063366755,175.94393132274348,332.9398524009835,193.468901205762,275.0725680738615,184.869884636064 +342.2671648683755,175.57698311834451,333.3377478036695,193.424281551862,275.4393407722205,185.321418297432 +341.6886759478575,175.7190346255565,335.0351702217815,194.61498733507898,274.9183182628005,185.10139785302601 +336.4807481291945,175.9051018911935,335.7030394894725,193.38113279840297,275.3244077459945,185.33092689725902 +343.2807182293485,175.80664111396152,334.5556925689275,194.404189082933,276.2703767093315,185.36268199608702 +343.8792908026225,176.0090210739495,333.1425333855425,193.38420181029596,274.9462086844465,185.340289173619 +340.29073038255956,176.0164012062155,335.7872971697875,193.67675500487098,276.0086390816845,185.05169833910003 +337.6843107615355,175.8856642452115,335.7044988839075,193.63754116597198,275.2227819373285,184.962599650242 +344.49464313410556,175.8852052056235,334.6202206444345,194.514221825446,275.9378911363685,185.142988067844 +343.0168477618655,175.6188530214945,335.6684702725935,194.469586059174,275.7322635487105,185.05032692701297 +344.94009593476153,175.98602291445548,333.3830867902435,193.60419848310698,274.7819458273075,184.88240372405 +337.77708233645654,175.56607088053147,336.0099407773325,194.57404014574,276.1523757149405,185.308401571709 +339.62067812063555,175.7735887823995,334.2905132643365,193.698302738804,276.0531522028625,184.88844318578202 +343.06296673100053,175.9133545166435,334.6427156390895,194.60481116618098,275.7421099717745,185.18210776845098 +342.45868972704955,175.71375867724748,335.8467454535465,194.67517199091196,276.3155004628655,185.37997532521098 +344.42916843597453,175.61708351892747,335.8025756288045,193.43504004423198,275.3405821900225,185.372031711523 +344.6868597497625,175.65271122732452,335.9120538308995,194.42005182872896,275.6392258366165,185.049715023114 +340.58081089889055,175.75992766973752,335.6541358469585,193.68999591076,276.1216452237305,184.92161687887102 +344.4264633799185,176.01696126890852,334.9883695408595,194.35480157162897,275.1563182895945,185.19721665831702 +337.6935966942255,175.6312177697805,334.1753554301095,194.636640872361,274.9028948387945,185.26475508656102 +342.0460972190335,175.71755227892652,335.1381219739775,194.53453058713598,275.5126554893695,184.93421522186497 +340.56220290158154,176.0565969936875,335.2937127899515,193.680850155148,274.7674406935165,184.965837006622 +341.5876013053625,175.94604285796447,335.6775693761515,194.535469232707,275.9370313986105,184.911616077485 +338.48511378388855,175.62710567861552,333.2416411373335,193.65218706841796,276.0685709994815,185.096106081576 +342.51423631084754,175.6128254867955,335.5034814276565,194.076829784871,275.5517068763805,185.01935908079702 +339.9520557833685,176.03872939544948,334.6969774672465,193.52155774139197,275.5468644531285,185.38516335942302 +343.7114778330395,175.62789788107847,333.2910344975805,194.30274419238498,274.8024306048765,185.205966830127 +343.72432362570953,175.91053428680647,333.8994877047755,194.27234529137098,274.9788793462995,184.997039751251 +340.31337791356754,175.7777427728675,335.1877269361465,194.354316617094,276.2379665093755,184.95389213312802 +339.81412571715555,175.74921504756452,335.4005898346085,194.425724002959,275.9689563721575,184.94166035772503 +339.5460187079405,175.7668428772805,334.7867825950115,194.701244953223,275.6569066717045,184.93319737555402 +338.8289276726395,175.78771813688252,334.1914036345325,193.53560387961198,275.4236627864085,185.40434078719198 +337.0674063685215,175.8360367357845,335.6025749568185,193.53967115637596,275.3560123149485,185.24107821940203 +340.2053286052275,175.90831228574052,334.4260001226395,194.663599049232,276.1289152791125,184.949138409704 +342.1757947285415,175.8660290952575,334.9074079366305,193.98274296103097,274.8886562865585,185.08161805927801 +344.1218670076485,175.9657353001685,334.9272762093775,193.71670378119398,276.0028551204545,185.36596099025098 +344.24359246997255,175.88376371660252,334.5896225644455,194.50602407896798,276.1227084318945,185.341503894192 +340.07144917821154,176.0122049322045,332.9418891755835,194.157146230683,275.8611494231175,185.456038873591 +340.13815011595455,175.6419729786415,335.54789086194353,194.79299785965696,276.2323171656775,185.26829253161998 +341.60913107134854,175.66337381295148,333.7854560995305,193.48297721492196,274.7995566281125,184.952015570737 +345.34104033709554,175.95334476788952,334.65357670800853,194.222444689283,275.9101508795925,185.460999888936 +337.31821229460354,175.71009479496047,333.7784518859955,193.556273898752,275.8495695348365,185.321775065088 +340.0623935090595,175.63686952760452,334.0663400926605,194.56658163754196,274.7928024393295,184.99471070652203 +344.02714336382553,176.06212920192752,335.4963664405185,193.73064997654097,275.2974837807345,185.47662798669 +337.6984619061025,175.6695894443015,333.9533564029105,193.99009927086098,276.0287921593695,185.26166790404898 +338.1232949935255,175.64550740471452,333.2847005809825,193.672458698164,275.4285135273735,185.237570626785 +344.0563619474385,175.76629214380648,335.2282782294475,193.82100581406098,275.0073664098985,185.22862138679898 +338.49409265742355,176.0638466478485,333.8455583622815,193.74797746778296,276.0760816546685,184.963069688568 +338.61781241131354,175.8638412054445,334.0263046720435,193.71729086224497,276.1250786094115,185.00182279794 +344.31034777780656,175.9065703827835,334.6159230067835,193.860678796976,276.0943731985745,184.97722599303802 +342.1065535796315,176.02396523854452,335.5690958670945,194.71777383677,274.9806948054505,185.357805725023 +341.61980685005955,176.0872184588775,333.0246759720995,193.50901931782,274.8833674106205,185.22067161913498 +338.22857380852156,175.96081253925547,333.3511315420145,193.540538617406,274.7322529769115,184.961119139047 +338.78152769180156,175.6791862619155,333.5909101268775,194.02113249541696,275.3162547721335,185.327669256508 +344.97976269469154,176.05604803738248,335.6091778568815,194.44864373117997,275.41325454556153,185.061770899412 +342.7092441895645,175.6756861965925,334.5852976911135,194.03766708733798,274.7133950353465,185.014441684489 +345.4520576737035,175.95013917695348,335.2780868036505,194.114401681493,275.6380969991935,185.30910541972003 +338.92763676189554,176.0076953624855,335.6547578232995,194.031257249087,275.0666229723625,185.390933195836 +341.86257806335254,175.8758472910485,333.9008421068115,193.600462446594,275.1735716435495,185.426104178101 +338.3425269415955,176.0256966869395,335.5665166732465,193.475903516997,275.7616709788415,185.425258765283 +339.93980970589655,175.60859728075548,335.4670982755815,193.505299407964,274.7174626778185,185.10718341458198 +344.99238891567853,175.74896576237148,335.6897996803215,193.52479687778896,276.0416618756865,184.95982194772802 +339.5725233084575,175.63957374817647,333.2308284161195,193.98896333811297,275.4163956989375,185.29152744858197 +339.1178249210805,175.64590210472647,333.5634914885965,194.08452220679897,275.0810439588995,184.98766847508102 +342.43078764512455,176.02332144066952,335.5334691892285,193.55111093506696,274.6319252014675,184.993368318055 +340.26107216645755,175.6147067200625,334.1512895063445,194.225017116179,275.6652422491095,185.298339601181 +336.83532983088753,175.6004596977915,335.8009307444665,194.74611684673198,276.1230742834285,185.393850786415 +336.92333958812253,176.0326052477905,335.4752354619775,193.879345895227,274.9113636546875,185.03901354925802 +338.1182051734945,175.78717008571152,333.2657912019765,194.213249103948,276.0126714984145,185.274914852213 +342.55774145268356,175.9635231223515,335.1633402214775,194.608398121299,275.3651583347095,185.048428888341 +338.06063554135756,175.68319413960052,333.2420476503405,193.60065684392498,275.8965803308875,184.93269578941 +341.56106654115456,175.96100787928248,335.6100590477365,194.630110284956,274.6678434427745,185.37684521022697 +344.8184971630445,175.9025074078055,333.5471503219565,193.82889044586096,275.9223239357655,185.01860554081497 +340.85300431047455,175.8283754294655,333.6604108413395,193.744485842274,275.5787795851805,185.127839935947 +338.36867934684255,176.0173002137725,334.4030120056345,194.235628182448,274.6553058866605,185.049335158642 +344.5899327148745,175.76030005663847,335.5198040025305,194.042395596868,275.0221595790935,184.96067595980497 +338.36960596925155,176.01756661081947,333.1654433529455,194.65266819854196,274.9225673739375,185.337420226833 +343.22938231392754,175.99207928488147,335.6730326698455,193.900081831301,275.6911314698695,185.05043414347102 +339.74596913391855,175.7958222508505,335.3493237739725,193.55442778171897,275.2303196607155,185.291263054097 +338.0395958100165,175.96895465051648,334.3029601999945,193.95872530232896,274.7664691973355,185.338885546702 +343.1222777851505,175.73762892788648,333.5543089557475,193.786742435465,275.1186275738785,185.31063984213603 +343.32912050890656,175.63398622560652,335.0788448955215,193.61387162423796,275.7383756080635,185.09413504930802 +340.40302020376754,175.77146740503247,333.3036233208035,194.367375866938,274.6658504161925,185.15363015752303 +344.2554085601025,175.9950747995515,335.57845292263653,194.10693000960197,275.5957100770705,185.286948928651 +339.7261252765495,175.6479809949305,335.0721740993785,193.57172251329098,275.2738823107225,185.29924087643502 +343.48769646959255,175.5694596599485,333.6263517446565,193.57774692509298,275.3606413584825,185.310394224238 +344.2361841766265,175.9258803429725,334.8743938863795,194.17819966529896,274.7488037841645,185.33750170979 +339.73387968834953,175.91458756142447,335.3787423795755,194.57366283105,274.6317339861405,185.28635031525403 +338.7905717912435,175.9354898645775,334.3958191658725,193.72442527467297,275.0312657290675,185.29328208006802 +339.27415231364256,175.91449471074452,333.6121709556095,194.50251637662296,275.1572394443525,184.95392623759602 +340.13237029560355,175.9198649944085,333.8249966216665,194.33759043671796,274.8943550939275,185.057414262311 +338.6059412044285,175.65676591929247,334.8624722955985,194.41805049076197,275.2735920373665,185.02184426500202 +338.34983393651953,175.7472930613855,333.5831965033055,193.51869695393498,275.7749650658805,184.943932098809 +341.20156153085253,175.77216769358847,334.6116718882565,194.17424682406,274.9004427473415,184.934097507717 +341.57585614374455,175.6067986484515,335.0369772416495,194.26649616926397,275.2018587517115,185.062735253702 +338.22824725012356,175.55474849302652,333.1866085543395,193.837713526541,274.5274639984355,184.92279150686198 +344.06364906123554,175.5312057282655,333.6256268076875,194.00683374213799,275.41803453466,185.12179739615 +341.24199129684655,175.52457149807452,333.3515709264105,193.999623984972,274.290999340072,185.256854134126 +338.71971816082254,175.66907110206552,334.2689320972285,194.167460150282,274.075306923469,185.226050791757 +340.9128201142435,175.57815248538452,334.7477164363155,193.968652875355,274.665426986017,185.195900778746 +344.0011416903045,175.801183391301,335.4530099078405,193.902848809048,274.58826927699,185.294374755905 +342.020583066077,175.550548267712,333.87148566679,193.856927309609,274.340294893067,185.211848423369 +341.498281703125,175.553961909363,332.47293600565,193.849858219159,274.251819838358,185.186831992287 +339.275610622047,175.514135763297,328.957353599759,193.785558325225,273.955326345013,185.110857824521 +337.689427813147,175.487378566427,327.05237187151,193.767180109276,273.69283029516,185.077791275642 +334.016750498383,175.435261843085,323.195147876647,193.711319715043,272.909230612927,185.028204803205 +332.019856920035,175.406076210319,321.256796182735,193.677465320482,272.388627693899,184.994805475689 +327.866837943543,175.371913426915,317.428803089872,193.629312908197,271.1353391157,184.962718036799 +325.748763014629,175.345116738315,315.518646003927,193.570123556422,270.404657556164,184.921221743239 +321.479471850603,175.280311498847,311.78139351564,193.497374742953,268.819702732396,184.873386677762 +319.337007293512,175.240812423271,309.936315729477,193.44201901626,267.964800502334,184.841086018149 +315.110664880898,175.15782903938,306.307771343368,193.312641609747,266.167630670905,184.780886029637 +310.916055483014,175.047112408882,302.730531484956,193.136179699003,264.245032980014,184.690835529227 +308.868242234612,174.998259006947,300.987650524082,193.043737501002,263.282104019118,184.64870688779 +304.785559311526,174.860922767412,297.52740436201,192.824794500572,261.257023338285,184.532015881529 +302.800365004204,174.798669923569,295.829952909108,192.695410831003,260.240755137204,184.467854349789 +298.854304640898,174.625460822161,292.482404549412,192.421694390785,258.177413657692,184.313163526048 +296.90564358451,174.540228371131,290.822737989114,192.256031954883,257.129274790969,184.224605336283 +293.108318547965,174.334729600478,287.58545327606,191.925293796938,255.042207392852,184.028272974391 +291.235403752158,174.238689044699,285.968865494492,191.734361124323,253.9815755571,183.909552621813 +287.563108330389,174.005209464744,282.809898167772,191.356496524116,251.874000333418,183.668663712133 +285.771987471397,173.875782044767,281.263824635601,191.142395154887,250.82968058287,183.543791994903 +282.219458009883,173.616036067388,278.193627157569,190.708858191144,248.728894807962,183.264952753501 +280.498011453974,173.499395443296,276.69141289389,190.494023438931,247.693451391159,183.120480442949 +277.082701238638,173.223512039612,273.715574050831,190.001894919744,245.609029720938,182.794018756476 +275.421176198309,173.077242700585,272.251655076136,189.754594680818,244.568470655972,182.618488290378 +272.15244932032,172.785212924131,269.38366761771,189.26794343819,242.523232299314,182.272125217309 +270.555077388985,172.624805289883,267.959678126757,188.990860228961,241.50068115164,182.062396203016 +267.405119656512,172.290034351304,265.161928143801,188.448571505275,239.48188011219,181.678364318736 +265.860297627093,172.132652306828,263.790936760661,188.173332347478,238.472758083453,181.478414925783 +262.845370695058,171.811475752,261.099513971492,187.613853086172,236.508177689615,181.05834310095 +261.357792170153,171.642547377615,259.767948587699,187.326104295043,235.529485505836,180.856616309944 +258.466488330585,171.302610294015,257.14955509291,186.749204921924,233.589407907305,180.409131129111 +257.032550268986,171.125603532704,255.844553609678,186.446358151103,232.638475357872,180.172281773422 +254.238969950887,170.768507489791,253.310249612567,185.842221336136,230.735262668672,179.707374997005 +252.876072353815,170.600607214503,252.080430074403,185.546145919863,229.808475060612,179.486161278787 +250.203363235822,170.241397247085,249.619826571779,184.94638560124,227.971349934439,179.005614783786 +248.876086287114,170.058114603172,248.402219185696,184.632094607095,227.03964824393,178.759910174767 +246.28713519099,169.682001370975,246.028388141561,184.011647563936,225.252074381813,178.261034621687 +245.045854014747,169.513722983346,244.859727092236,183.686968488386,224.366995315346,178.022428189453 +242.56419819151,169.132384238843,242.563049522193,183.085964646367,222.607711789511,177.509462384558 +240.155866590455,168.749924425824,240.310397287484,182.443039875572,220.885394550368,177.007950105173 +238.976773682344,168.581710210068,239.216730196846,182.137286627454,220.042383072829,176.760554690376 +236.651634576524,168.199678768746,237.038264668086,181.512483846756,218.364005703874,176.243862345146 +235.530236648529,168.016058390841,235.970022365574,181.199447545111,217.538112324266,175.9870981563 +233.304551628553,167.648300540892,233.878903895287,180.575182158027,215.917654845579,175.473519609322 +232.206203158523,167.470124197087,232.834539386863,180.252915952344,215.11467434921,175.210331138864 +230.074985404928,167.08532671477,230.804931856344,179.63580548511,213.547076387286,174.700887994975 +229.02325355005,166.897790467628,229.804055520599,179.317208412535,212.757884794401,174.438344483146 +226.956946327172,166.535538100452,227.841630172361,178.70404207877,211.231047664316,173.927263800285 +225.969503889429,166.35574539078,226.895183750214,178.399494387584,210.474187392529,173.679464531527 +223.982727562792,165.988522609119,224.990241742208,177.782050188481,208.993293941381,173.165279314246 +223.01832187812,165.807809576304,224.068742796041,177.50477065283,208.269253173552,172.911441248624 +221.120154903013,165.448113536419,222.234447757064,176.882761353876,206.828105011093,172.40690084316 +220.196320030028,165.272551477484,221.335264708917,176.590845964573,206.132567127708,172.157296474356 +218.360542722027,164.913732510869,219.561787302448,175.986732917818,204.726258409002,171.667382380625 +217.478045851183,164.748354243371,218.699549561366,175.693848924179,204.046411296755,171.416112631868 +215.715676897057,164.389801266375,216.989537092636,175.125419244005,202.707939184602,170.91856636222 +214.861991456871,164.232838041292,216.151938892668,174.827236799852,202.034384271211,170.68201819485 +213.1754957816,163.887219737982,214.504110202519,174.269223261618,200.736520820223,170.19534841735 +212.342001060181,163.709017559194,213.688555313729,173.972125866878,200.097554933364,169.958485476216 +210.73548204767,163.367190779119,212.095835237713,173.421423294815,198.837982096119,169.490988073542 +209.930201368963,163.193115970899,211.307551933497,173.131267582412,198.201089706346,169.234766065075 +208.378411929868,162.87562379129,209.782532622936,172.583554044692,196.990461230086,168.777232289378 +207.61025322046,162.711236172737,209.02577777428,172.309638410388,196.388730174147,168.544682645181 +206.103838778849,162.375806313954,207.534015279808,171.767257103139,195.203143317278,168.092935535669 +205.371999797268,162.209994529263,206.806117311981,171.504264880421,194.631993641864,167.856411522854 +203.941762442541,161.901646539107,205.3655939459,170.9799718235,193.492658571127,167.413196431605 +203.24270875847,161.749844969903,204.678594025121,170.723585320616,192.942211228377,167.200249951794 +201.841997932705,161.431850089081,203.284763317581,170.215256162349,191.827021510585,166.762513964798 +200.503882130342,161.128354075023,201.940456524687,169.713097899928,190.750505728051,166.325126819934 +199.824851205518,160.96398818285,201.280899116286,169.450429659645,190.201764450942,166.111940689395 +198.524859296599,160.661110771594,199.968618103079,168.958927994849,189.167919945324,165.688681969272 +197.880874224278,160.507287816724,199.326392350946,168.710563186966,188.643452151838,165.476065805216 +196.63342519954,160.219083655474,198.074520084194,168.230540330741,187.65500607757,165.077518828702 +196.018446249271,160.074838513017,197.458017528543,168.000396372282,187.158058850926,164.869623114359 +194.820327072475,159.786181359871,196.243319643919,167.542049297576,186.177486370064,164.479476494805 +194.245661938705,159.659489068461,195.64847254955,167.307181388548,185.702100684373,164.277083434223 +193.080793378947,159.376803727383,194.484220652016,166.855083181141,184.763378305171,163.891311501746 +192.526094482843,159.244106836459,193.919801710853,166.647936883704,184.319007183647,163.704763830152 +191.396479318029,158.972815650167,192.792166987654,166.192870193481,183.403131262141,163.330653812475 +190.851438553471,158.834964268862,192.234593588099,165.972436198793,182.957310038937,163.138258872947 +189.772476191116,158.561348226534,191.139869670248,165.549716546356,182.080350657407,162.770205945116 +189.258193562213,158.440491930076,190.617231363824,165.332843269383,181.660458963545,162.595302902915 +188.223900918301,158.184767463899,189.576700975644,164.919479992743,180.811042605989,162.24169932531 +187.71242375324,158.059087583477,189.04706743105,164.715690078501,180.385854551913,162.06708763765 +186.722302050392,157.806105794644,188.026911030814,164.306965732236,179.567188204294,161.708586390996 +186.242036254616,157.681594446836,187.535700056733,164.114820417558,179.171153740957,161.552340832351 +185.285339437476,157.450784647257,186.561297195135,163.728340982955,178.38179214189,161.205609324898 +184.8209361851,157.327460920539,186.082209631137,163.539490936636,178.0095728736,161.062867556082 +183.892811984573,157.088223432657,185.133563484669,163.154822405644,177.235096535482,160.722116030292 +183.443448681236,156.9664186676,184.674634258351,162.967275579965,176.863730716115,160.561862339668 +182.569130162079,156.75520908313,183.778380167418,162.601888150807,176.150312281955,160.266602921043 +182.124541238751,156.628409670161,183.316294259409,162.425612734609,175.780015973485,160.100428531239 +181.25657608266,156.40263063131,182.443391183404,162.067958162075,175.07159213684,159.789671912373 +180.861022592421,156.318347845712,182.021714714724,161.906414198337,174.734720006954,159.659106466639 +180.033449390244,156.083339307099,181.16542481453,161.545115924225,174.037356329052,159.344930508812 +179.645815809804,155.994628269535,180.765879068029,161.405392329774,173.728905904174,159.226650069806 +178.845813237736,155.770316282627,179.941579917692,161.056227633599,173.053999818619,158.922269690993 +178.070458111382,155.571187428039,179.165689858497,160.730681142746,172.419802923389,158.645662553925 +177.686555235322,155.467598831275,178.766839151419,160.570036001554,172.085295991259,158.514587622334 +176.952788496757,155.268762894175,177.998052436436,160.258040993788,171.480566564865,158.24594453266 +176.590631662224,155.170323905742,177.616055836686,160.107440379216,171.178504683822,158.107966599855 +175.876735733716,154.985168645872,176.883911602415,159.79942175959,170.587354716428,157.854423927198 +175.538099696943,154.886924774773,176.520545917104,159.648099200273,170.285526633755,157.724999579939 +174.832551584291,154.70282137418,175.810488888248,159.357868694746,169.708541176888,157.466724277456 +174.505278287596,154.614227146109,175.477818264995,159.220398864945,169.435522433229,157.358098188544 +173.841999456158,154.425766307457,174.785809323686,158.930233753701,168.876107302971,157.103591682131 +173.516041295644,154.339140073023,174.440247280107,158.796368782557,168.602076352176,156.982329688871 +172.869493796916,154.157986123279,173.781272296718,158.518414074072,168.070078168666,156.742570381674 +172.562799642532,154.076822381713,173.460565733979,158.384228552278,167.809477546935,156.632810973008 +171.952229857133,153.912166082902,172.826628756011,158.123743073493,167.288067866911,156.412589333402 +171.647091156236,153.831817575683,172.520748534272,157.99084771362,167.045299572408,156.311533854123 +171.052760497866,153.666567275789,171.899561208535,157.733033297162,166.549875912794,156.080062782983 +170.765370298777,153.587629133285,171.607473655966,157.611533980224,166.311346861001,155.982045955331 +170.194922430052,153.435648710995,171.017157012034,157.367257177959,165.820477616978,155.765026547359 +169.908388199944,153.346639255806,170.71312463456,157.235912415786,165.57629009721,155.660179044739 +169.356247189692,153.184085818956,170.138327285773,156.982456501374,165.118349947041,155.447654394329 +169.106486940101,153.116820632824,169.865259553045,156.884952622863,164.901367103414,155.360632322237 +168.566856251699,152.963636856474,169.318102448449,156.654807504818,164.451498620547,155.15818867014 +168.295733718352,152.889429919207,169.031350443974,156.529953359082,164.221072047021,155.047536697027 +167.789349304788,152.751667819205,168.522329907525,156.318974316791,163.811377375349,154.86470747927 +167.550395023978,152.674483341723,168.253330097304,156.19462483668,163.593098615679,154.769850958248 +167.057421039395,152.541898897308,167.745860158823,155.993016001441,163.181917885628,154.597539705032 +166.80855880172,152.466625839003,167.492773611287,155.89098805968,162.974648272048,154.502050314869 +166.326163486216,152.332927332707,166.994490002149,155.668571540342,162.574487291243,154.315887572386 +166.103749726326,152.264969504819,166.762042633481,155.583376834409,162.38759424205,154.243245124369 +165.651205203071,152.129905759603,166.274782802612,155.372586474511,162.00191197934,154.069159921135 +165.19854377585,152.009498761492,165.824146501098,155.178796573506,161.629808091995,153.89353065043 +164.983043895511,151.942819195493,165.583273123971,155.074493831676,161.447722063124,153.805955135644 +164.554403513061,151.818030069177,165.14596834779,154.890232669326,161.079399616853,153.654207693523 +164.345213453582,151.755753262595,164.92303297363,154.801234729194,160.916382522757,153.567334878228 +163.934914324975,151.634590180787,164.502214657936,154.61481994766,160.558478499256,153.425242193574 +163.724184152807,151.578619831654,164.280995287972,154.532139952908,160.384396163705,153.336345447879 +163.330733895977,151.467701277534,163.875171426695,154.352978851925,160.053529680798,153.19964470607 +163.137867902477,151.397326792604,163.661828910584,154.263528637471,159.881271414966,153.108380393506 +162.750506300469,151.293114103499,163.270927676675,154.091090310669,159.566689352315,152.966583719184 +162.560577336019,151.236979243819,163.068890453964,154.018446991307,159.405251862226,152.901612711961 +162.1843935021,151.113071241287,162.673372312001,153.84436994136,159.088594832828,152.75261634028 +162.008144955048,151.080952758113,162.502442660052,153.765657654076,158.937802855193,152.692228562823 +161.644713105963,150.9578986307,162.114106928658,153.598697858551,158.626913705554,152.540849394181 +161.475777382321,150.911985493812,161.94143245112,153.531428507742,158.493631941342,152.474996310542 +161.132211515068,150.814925942253,161.572971059093,153.383547598256,158.205827637344,152.340371323317 +160.966989484731,150.758808765645,161.40563783538,153.302824444439,158.067665726294,152.294406570611 +160.638619264531,150.66389040323,161.070027036602,153.158483095793,157.779490521278,152.164936947098 +160.473189191572,150.623277419566,160.906433370575,153.087493159582,157.652017924254,152.108789654312 +160.14587563305,150.519189854129,160.576987886897,152.939306485094,157.369992224076,151.975473710746 +159.987380865268,150.460250389199,160.388988411242,152.857386177544,157.225785383403,151.904231771295 +159.683803807899,150.383017419246,160.080267243223,152.736779940834,156.991353419775,151.806816579524 +159.537400517425,150.337498239916,159.918293779978,152.665516922592,156.858295919134,151.731181661769 +159.245296863125,150.24321071422,159.617799969168,152.536412259245,156.604475065382,151.634063870506 +159.091514071501,150.205816652708,159.455644007877,152.46263447354,156.486301005945,151.570958507382 +158.807612693754,150.119438369196,159.157089697894,152.334042702144,156.24159433826,151.456066216335 +158.660235577129,150.074532286578,159.008071832762,152.272196747536,156.118917752384,151.403267286197 +158.38477880081,149.98381699551,158.723766999433,152.146213927976,155.883104390758,151.293526806739 +158.258003515522,149.949255353424,158.588856910785,152.086621181615,155.770576368784,151.239970859696 +157.986367033824,149.863474186805,158.299558808017,151.968127384113,155.548308257743,151.149747966563 +157.721037879385,149.77817875257,158.030722673333,151.846418688666,155.32862731476,151.038954316459 +157.589677655269,149.74225888484,157.89563743975,151.780609942496,155.21707496766,150.996999799038 +157.334992207683,149.664539612186,157.631647935212,151.678292342864,155.00523936074,150.883607910161 +157.21539730608,149.623916838653,157.515056486506,151.622360755885,154.904743714408,150.845278604357 +156.974976472445,149.548368962339,157.266030163702,151.512035585555,154.703214058836,150.747250168004 +156.865930584062,149.515940827191,157.141898913935,151.470092706881,154.613255539804,150.707865146445 +156.630831619849,149.436194296864,156.900980450543,151.366445788029,154.414256132094,150.626922715741 +156.521513602315,149.403945996919,156.778434674035,151.299690489982,154.317766863426,150.574993692696 +156.292616427271,149.34284731765,156.551372255942,151.206841084161,154.127043285472,150.493969890266 +156.181953578456,149.304390444355,156.436062288003,151.151693645362,154.036157552895,150.447397849514 +155.965164079176,149.23592103838,156.220644722635,151.058875627506,153.854282321992,150.373344083674 +155.862965299496,149.205201970337,156.0982671973,151.015175558018,153.761195442271,150.321791024702 +155.640412032312,149.139054463357,155.879636431637,150.906866915309,153.596022681364,150.2465913785 +155.52788671474,149.104035658055,155.766638006412,150.862798837132,153.490298112333,150.200453291365 +155.34192657381,149.035294814985,155.556787669358,150.772259270706,153.327173565914,150.122428749535 +155.245835564171,149.020821650966,155.467179215845,150.73787815089,153.251765551856,150.092682841167 +155.041950400997,148.951059530022,155.254702598464,150.633594121092,153.06794613459,150.000453680946 +154.951729519022,148.919544751605,155.157522104512,150.598818415877,152.996085368325,149.967074743529 +154.764516597004,148.86408577217,154.956390838673,150.505611380296,152.840500347455,149.900720967096 +154.657959012911,148.826204847534,154.857009525434,150.464465841286,152.746754523468,149.853572291609 +154.483993159943,148.774004694777,154.679323600678,150.393029334388,152.617136688873,149.793023692123 +154.409154941138,148.752967611148,154.600309255412,150.364806791099,152.550917669276,149.762032830069 +154.227572790216,148.686680946496,154.405044415981,150.273723949109,152.390067804352,149.696180608817 +154.124259345686,148.662883866463,154.311686692658,150.227473149168,152.306736041421,149.650172091517 +153.959646865132,148.600800313699,154.136637602563,150.153089469955,152.173489299619,149.586675196224 +153.884717086225,148.582895189101,154.057301284675,150.118055888335,152.106712731486,149.560206212983 +153.721482568795,148.529571126298,153.8868751424,150.044574287051,151.971135107908,149.488591565255 +153.639961508145,148.508549457485,153.803959192284,149.99948432273,151.897538829159,149.467330139712 +153.491194816333,148.457168844512,153.647307972056,149.93928248046,151.781276369588,149.401360617506 +153.330703660461,148.403787818661,153.482406710201,149.868521836407,151.644267486447,149.343796062121 +153.25508414926,148.376163760133,153.40330875301,149.823997277384,151.5814267453,149.31246131827 +153.100390538525,148.343118106234,153.254164713924,149.767572661392,151.468028539362,149.255123831592 +153.036209983174,148.307490161377,153.172379723327,149.726835357539,151.390003116196,149.225262638007 +152.889561370867,148.252184827336,153.027344519283,149.665252728723,151.276309614637,149.167392366513 +152.815164706804,148.235015418605,152.961280391126,149.634891129014,151.220241316501,149.133568890844 +152.682057068886,148.189517700539,152.818439930303,149.569015934299,151.098092717402,149.083429613568 +152.616405459431,148.160733670852,152.74259669487,149.543915126701,151.05539007136,149.068506979824 +152.483228523517,148.12648260885,152.610802503477,149.474725591214,150.934789805618,149.011122459527 +152.415154468354,148.108218398521,152.542956622186,149.449282374614,150.879483229901,148.978979447978 +152.287385140194,148.055320807511,152.415875524357,149.394967231387,150.783489148335,148.942014542333 +152.218390253617,148.043990315759,152.336922119107,149.359119276074,150.71916272768,148.902474367531 +152.108779774013,148.011523676388,152.228464092832,149.314148002307,150.632290419914,148.865834448427 +152.040596425339,147.976733278359,152.165138998068,149.290206010411,150.577796873229,148.846058301893 +151.908309003378,147.939183484341,152.030067301701,149.222807437809,150.463862584698,148.779597066467 +151.861247665273,147.919005889488,151.970040816594,149.193832470251,150.417291134406,148.76634750583 +151.754787014575,147.886897394911,151.859640622336,149.147833612635,150.325234395968,148.722206336536 +151.685958523126,147.867862473234,151.79127221243,149.118152693998,150.280040283886,148.694611288542 +151.57259536335,147.831397468447,151.682996308128,149.071263876758,150.181545343609,148.655821677745 +151.52280902202,147.811497854139,151.63436503552,149.038175068965,150.141039321961,148.633372210371 +151.407952389045,147.758052991163,151.512328731786,148.979615783779,150.03966222484,148.577828033319 +151.35902183465,147.748710428469,151.462238979265,148.95709014071,150.003942668225,148.570331436367 +151.257826110556,147.708207017657,151.354790652528,148.917259323793,149.914598254482,148.524266014852 +151.210730232458,147.709474443509,151.30514734244,148.905118313029,149.883949287495,148.508659753575 +151.111768115698,147.664726226786,151.195999481922,148.849250222461,149.796835718293,148.464589564307 +151.064060913858,147.649898940157,151.148290669349,148.828866990393,149.754010821945,148.450219454159 +150.951373361688,147.611773345884,151.041384158427,148.775695464441,149.666822540246,148.395438517722 +150.856817721915,147.563792226224,150.94474262191,148.727690316678,149.579023050772,148.355299780532 +150.814086462884,147.546767093148,150.897613604023,148.709731965584,149.543945510586,148.333183860989 +150.729623439115,147.53265951391,150.80967713519,148.669264078212,149.467851365755,148.308439393176 +150.681387719077,147.5117526657,150.758894802347,148.649502815259,149.436058823499,148.2889123058 +150.591806715164,147.480976985414,150.674863621554,148.606922775704,149.362016475703,148.253503737128 +150.553389279939,147.473339155562,150.620944048698,148.592115267287,149.325930844804,148.247712357426 +150.458048957527,147.430569168671,150.529071300957,148.539384946779,149.245437149563,148.197301016217 +150.420321339966,147.420614800658,150.499439607483,148.512320496971,149.220214380009,148.176480730563 +150.324755539602,147.389860518103,150.407109409193,148.479933655971,149.145967705045,148.149414215087 +150.297379654744,147.379384416601,150.365390036191,148.465985400351,149.112593718307,148.133387905012 +150.206649141526,147.348141499769,150.288767707751,148.419241170094,149.038554472004,148.094508093564 +150.177596159022,147.33691332831,150.252542805523,148.404771808615,149.012058817453,148.077498549992 +150.107007607617,147.320470949592,150.174781369671,148.379076250866,148.966704830229,148.06081977023 +150.053377832017,147.290931644566,150.128783272329,148.350447935252,148.917493194708,148.028266598878 +149.981292271897,147.263749605954,150.051375539879,148.311696767149,148.862318374396,148.009164396737 +149.929734326065,147.233736447928,150.000741289749,148.287679324447,148.811709275142,147.975906110874 +149.858643754323,147.211241627743,149.939825399354,148.247146326926,148.750823681802,147.949013185904 +149.840372477643,147.20454200503,149.895418008245,148.239056938347,148.723776303543,147.935609650764 +149.764909836877,147.169822996192,149.819491089891,148.20108661677,148.668229329098,147.907812321355 +149.730450961978,147.171209788588,149.800064409882,148.19484703895,148.650199028818,147.89579625591 +149.662312789969,147.155586225709,149.72706758974,148.166505006829,148.589026582771,147.86999984958 +149.633755332377,147.135837906822,149.709841498586,148.15483706694,148.56949715774,147.860875361799 +149.559237415006,147.102519231006,149.627227086755,148.113645768669,148.500329120369,147.834709747723 +149.538808425189,147.09343119737,149.595928384635,148.099469281654,148.481989595619,147.803897035291 +149.45900129495,147.061756629354,149.523519363939,148.05876763123,148.409614609777,147.777527436731 +149.437766601405,147.05671414981,149.489565458052,148.046789773042,148.399021790732,147.775256321321 +149.380062568007,147.033026405844,149.440416138547,148.016852011363,148.345503552344,147.736310142562 +149.349275533924,147.028142630674,149.414021885223,148.007344096069,148.328366863699,147.737663878835 +149.282258361835,146.994225074948,149.338909733564,147.975260827672,148.263227712332,147.707432932565 +149.229195759672,146.985566080443,149.29971957274,147.949728040105,148.225211048809,147.686986639942 +149.199269388928,146.979923314861,149.264011669947,147.936456754531,148.194372959329,147.670481909197 +149.149366243408,146.949240411095,149.203239817712,147.915004709327,148.157202528686,147.653653664245 +149.109690317025,146.929005466343,149.164487855827,147.883668891054,148.121472277837,147.626480544199 +149.053540241978,146.903860759774,149.117353709823,147.872378943558,148.085452299906,147.609646360845 +149.032784800378,146.899293832256,149.090586275857,147.858566579037,148.059621061373,147.59675981535 +148.986194352897,146.889242306786,149.050468418483,147.83418354106,148.025067319166,147.580235547458 +148.961284935586,146.872670997438,149.010299017496,147.81529454414,147.999705920912,147.57798481518 +148.907443318114,146.859531196689,148.962929771673,147.796834449792,147.948428482224,147.551439643627 +148.882540993581,146.83580586148,148.937795669034,147.778876335478,147.93046918883,147.530710794961 +148.83121772456,146.820099033969,148.882078616809,147.76270085699,147.878704656435,147.518233906133 +148.810378589358,146.817756521446,148.86170140532,147.757353374063,147.879365214392,147.500641251483 +148.766105003743,146.807244105965,148.814652673697,147.728581704568,147.838806653286,147.482963138254 +148.738568640695,146.792203976092,148.799137085272,147.720236605459,147.823990805272,147.474849980427 +148.688239333483,146.771251071188,148.739559489752,147.695578028779,147.783386575446,147.452042409062 +148.660703881431,146.752977527819,148.722657358892,147.687233049337,147.757941518089,147.445084587956 +148.617998331818,146.738947933932,148.676945494893,147.650322032229,147.723802247566,147.425967753124 +148.59130896445,146.728679365605,148.653491778732,147.639587219844,147.689035680594,147.407609602528 +148.55774508544,146.716622914791,148.609062391998,147.624059984711,147.659181909159,147.394625382118 +148.53871095233,146.715619716662,148.604128626054,147.615662368538,147.657947228405,147.388307963736 +148.491992441845,146.70196673441,148.555328404697,147.591375185534,147.612632825756,147.371647435158 +148.493134963078,146.698258000971,148.53820967352,147.596445292315,147.604301371166,147.359851301568 +148.441291760608,146.684795717738,148.493762267759,147.565648299334,147.564261953875,147.348464409865 +148.416196666173,146.664339152167,148.473520717713,147.555581325114,147.535017377068,147.329157021784 +148.377622638623,146.651662495796,148.429167141833,147.532040117302,147.505700083062,147.315090450679 +148.358860791821,146.653239593246,148.414103155466,147.527148311757,147.495956265567,147.312509428844 +148.325564818366,146.643988524872,148.374565648718,147.519048946106,147.469604148429,147.296786804678 +148.315850251095,146.634050126426,148.363926327842,147.508875663581,147.453192826807,147.291697165018 +148.270357257082,146.610531691359,148.324210724749,147.480727172896,147.406792660193,147.264244431075 +148.246756583498,146.611891745521,148.306850053701,147.470997413115,147.397987377598,147.263756660282 +148.232770027999,146.605767810742,148.278995359241,147.461867542855,147.39232339848,147.261096361632 +148.179170000725,146.579920635264,148.235563729517,147.435779560855,147.341284294455,147.235703746422 +148.176462712533,146.582758217285,148.222918048968,147.440004483966,147.336036610295,147.226297881332 +148.139629506682,146.569277162575,148.190706506348,147.425132067884,147.317468346688,147.221591841263 +148.13021994429,146.562645534293,148.184532408909,147.41988419146,147.297896775493,147.217037500048 +148.089544206713,146.558488338387,148.154024825729,147.403249160232,147.282879835988,147.19901782409 +148.076925775621,146.549804589958,148.131236994034,147.397334658763,147.273269193733,147.198186297298 +148.036614347647,146.530767654652,148.09554683223,147.383142415561,147.22788933575,147.172444370513 +148.035729609664,146.54258590616,148.083799897572,147.385723518481,147.229777191814,147.1757182894 +148.015386236446,146.529184404697,148.06830936559,147.367234192186,147.212906283038,147.169936600095 +147.994969924167,146.524255105643,148.040266102609,147.362996179233,147.193883225636,147.164543868359 +147.95405223646,146.503918239423,147.994956697278,147.325555238283,147.157600144718,147.142353115699 +147.949655162205,146.499293015303,147.996568159648,147.335021386121,147.156207806204,147.13495441291 +147.9259978719,146.489969526101,147.967826228521,147.316453133627,147.136254925837,147.135099855148 +147.904261929976,146.489494411766,147.952560585218,147.325681228339,147.126077101927,147.131159397174 +147.872253213316,146.468590968266,147.920089013242,147.300380462992,147.084838880174,147.113484172834 +147.875072195367,146.480184182018,147.921290399758,147.308974528413,147.102210522597,147.122077532684 +147.838065605439,146.480613403379,147.892602311058,147.289997321451,147.072377651987,147.110956265568 +147.8376827928,146.454364898026,147.884362428257,147.284994009746,147.054669459021,147.102950204963 +147.821804115879,146.462745002792,147.872874107388,147.286677330698,147.046881380495,147.0993201449 +147.800392818216,146.457512577644,147.847071699429,147.27428111196,147.026401348915,147.088542011764 +147.780150341223,146.462454949999,147.829370736835,147.261667156829,147.014481774559,147.084476400961 +147.760409874313,146.448499517997,147.805008209947,147.246551659801,147.007221944173,147.077447354756 +147.753121222078,146.442138847268,147.803496448004,147.249429750005,146.991619698096,147.077322122323 +147.738207105692,146.440166106197,147.789506325939,147.23775325394,146.973938579742,147.064953489121 +147.702127002268,146.433897987727,147.761282033977,147.233793161107,146.959353097592,147.055218541125 +147.706596716967,146.439058033795,147.752118316081,147.230176116394,146.955274498436,147.063152089179 +147.683516102031,146.426151710166,147.730192615302,147.222578791844,146.934511417551,147.049318169795 +147.665572104568,146.417224320003,147.704853949172,147.206948621831,146.920962160732,147.035768226304 +147.660488620777,146.428309494403,147.710861819842,147.220347901141,146.917728271355,147.039233288526 +147.646512594522,146.40879849967,147.685331974103,147.214691346662,146.896365113503,147.033115177445 +147.640921113743,146.421916216861,147.693604588153,147.223193282476,146.892854376309,147.036072331071 +147.616124909854,146.417917902601,147.66441752758,147.202791001911,146.887700280349,147.028838878753 +147.603073400273,146.406258926594,147.649979346418,147.187893695882,146.876731832153,147.029650886879 +147.59148068274,146.407373968886,147.637000002732,147.186005872248,146.859599140514,147.02106411313 +147.577340145393,146.408020905784,147.636029836904,147.189425265916,146.851237769143,147.016167172137 +147.560578714733,146.40119847548,147.611642909904,147.180059265949,146.842335134766,147.021586000245 +147.561720775497,146.405573100576,147.604466765043,147.193676183889,146.829386834054,147.013256702506 +147.548009087558,146.397641865755,147.591216942043,147.170032925335,146.828152594259,147.01872141731 +147.531082942359,146.392964000618,147.588154030867,147.172977036969,146.819085173596,147.001799201814 +147.510281934432,146.384644021492,147.56665933188,147.169505544043,146.801524395599,147.010802013412 +147.505416621209,146.39155892973,147.560638613004,147.159096553946,146.796198639779,147.009402783172 +147.49927081183,146.383106772281,147.55287526047,147.160575214398,146.785435174612,147.010881346126 +147.498089107434,146.387237205941,147.547765575713,147.162627919339,146.78771851821,147.005310874251 +147.4776384736,146.394970899652,147.525466068965,147.160661551001,146.77235576569,147.002882640887 +147.467881546205,146.382447393953,147.523795793563,147.161994759075,146.766990416231,146.99751674426 +147.453965821787,146.378699531469,147.511497094122,147.142767552606,146.75977727262,146.997694855829 +147.455860868336,146.375513074059,147.502070649656,147.149975692981,146.749891996265,146.998434521573 +147.430663705583,146.367878972071,147.489580691734,147.13725664796,146.73763714626,147.00442731164 +147.432610855709,146.373058309005,147.480668559541,147.142668767613,146.7398146758,146.98720109731 +147.424815265193,146.376351287319,147.474259095472,147.14018749792,146.732021463991,146.999503967068 +147.411850419898,146.374708296322,147.467994346355,147.145705408774,146.730840158244,146.986310545207 +147.411566479219,146.370267639126,147.459854787979,147.136873957566,146.728477548657,146.998500632682 +147.389215405557,146.360859167826,147.449748645335,147.133699653731,146.709828730397,146.986779544049 +147.375188141327,146.362079934815,147.425555072499,147.129145495161,146.709201921726,146.985459661883 +147.369042684012,146.35663003493,147.434196272706,147.128082989873,146.70421311883,146.981625240742 +147.356784488929,146.361928311657,147.424479204202,147.115826091413,146.689879798678,146.971448109378 +147.36726050498,146.359929210716,147.413930581025,147.1279180922,146.6825681384,146.98608032716 +147.347101202648,146.352018354752,147.412716250141,147.121621628405,146.679506457822,146.983711230924 +147.340414405062,146.342101440707,147.394477212648,147.101074813392,146.659194625842,146.965475632059 +147.348098473576,146.368949684636,147.399157930055,147.133014400853,146.677038922997,146.977316393996 +147.326697821082,146.359105004968,147.390926041952,147.115080947521,146.663266467749,146.981790912357 +147.319997858956,146.34709643999,147.377756799102,147.11369487568,146.665114195558,146.968393040697 +147.320618617395,146.346331331158,147.379763806137,147.121014934765,146.65049106136,146.974557641926 +147.306103264115,146.340597663608,147.370561943556,147.101880635419,146.647066256961,146.968360378855 +147.317648647911,146.350521575309,147.37194195458,147.112038912608,146.655605734101,146.976439075765 +147.299667849462,146.340631105627,147.362740123756,147.107920375006,146.637630190405,146.963542896217 +147.279211997176,146.328728389666,147.335583698139,147.096937644759,146.635426323335,146.96156970721 +147.288103115464,146.345236544671,147.342395719241,147.10790715173,146.631380970841,146.966994625553 +147.285080292621,146.337827264973,147.328052147384,147.095644146763,146.622815936373,146.97067114271 +147.286030858768,146.340624892738,147.33639582339,147.111148320714,146.62977123996,146.973700555195 +147.26455223618,146.336475116055,147.322540805891,147.095908612955,146.612456131625,146.964698674107 +147.257231712427,146.329157602652,147.313833902264,147.097367004158,146.609987880383,146.963385020112 +147.268321010353,146.334699964757,147.309906358017,147.093670843291,146.605368676945,146.963616016717 +147.255271493294,146.332971478775,147.313490859145,147.093789853063,146.597635036523,146.962349040314 +147.25547607106,146.343106065973,147.30699551819,147.096766536786,146.599687228881,146.966942529609 +147.255602101246,146.331916360664,147.319366255369,147.096661547997,146.602584736617,146.959676652849 diff --git a/src/pyvale/data/valid/Pulse255_HIVE.csv b/src/pyvale/data/valid/Pulse255_HIVE.csv new file mode 100644 index 000000000..310c9fc21 --- /dev/null +++ b/src/pyvale/data/valid/Pulse255_HIVE.csv @@ -0,0 +1,1069 @@ +TC2 +143.8 +143.89 +143.85 +143.86 +143.68 +143.69 +143.65 +143.9 +143.73 +143.75 +143.86 +143.9 +143.73 +143.75 +143.79 +143.69 +143.82 +143.85 +143.86 +143.81 +143.75 +143.7 +143.91 +143.78 +143.72 +143.83 +143.85 +143.84 +143.81 +143.84 +143.87 +143.76 +143.81 +143.87 +143.81 +143.75 +143.86 +143.72 +143.79 +143.74 +143.98 +143.98 +144.03 +143.8 +143.82 +143.85 +143.96 +143.77 +143.91 +143.79 +143.83 +143.84 +143.93 +143.86 +143.94 +143.85 +143.81 +143.91 +143.86 +143.91 +143.89 +143.97 +143.8 +143.99 +143.89 +143.91 +143.96 +143.87 +144.0 +143.94 +144.02 +144.01 +143.91 +144.05 +143.86 +143.98 +144.03 +143.91 +143.97 +143.85 +143.89 +143.96 +143.91 +144.08 +144.04 +143.97 +144.01 +143.99 +143.99 +144.04 +143.92 +144.14 +143.98 +144.08 +143.97 +144.595 +144.075 +146.965 +145.26500000000001 +151.175 +145.955 +147.505 +145.675 +148.005 +145.805 +148.175 +151.455 +147.555 +149.085 +148.805 +149.645 +150.455 +149.705 +153.235 +151.595 +156.975 +154.185 +157.185 +153.79500000000002 +160.79500000000002 +156.115 +161.975 +157.495 +164.125 +158.955 +161.155 +160.735 +162.985 +162.035 +162.395 +164.945 +164.055 +165.455 +166.635 +167.745 +169.055 +168.635 +169.735 +174.155 +171.745 +176.955 +173.865 +178.825 +175.385 +180.555 +176.155 +178.435 +177.565 +178.495 +178.065 +178.825 +180.445 +179.985 +182.775 +182.475 +184.025 +184.435 +185.055 +184.575 +184.605 +189.465 +186.035 +188.01500000000001 +188.505 +188.985 +195.355 +188.945 +188.775 +194.76500000000001 +190.655 +191.965 +192.04500000000002 +194.205 +193.805 +192.235 +195.005 +193.805 +194.185 +196.005 +195.925 +195.845 +195.415 +197.405 +198.495 +197.755 +197.345 +199.465 +202.325 +198.645 +198.755 +198.985 +200.805 +200.675 +199.975 +204.825 +201.055 +202.405 +201.455 +202.185 +207.605 +202.605 +202.54500000000002 +201.715 +207.655 +203.915 +203.715 +204.415 +205.215 +204.655 +204.845 +205.865 +207.725 +205.54500000000002 +205.745 +205.595 +211.505 +206.51500000000001 +205.175 +205.655 +208.835 +206.925 +206.855 +207.915 +208.525 +206.885 +206.975 +206.555 +211.555 +207.975 +207.215 +208.535 +210.885 +209.085 +209.305 +207.435 +211.255 +207.155 +209.605 +208.825 +213.425 +209.415 +208.695 +209.405 +213.425 +210.445 +210.54500000000002 +210.905 +209.615 +213.125 +210.205 +210.105 +210.175 +214.525 +210.715 +210.925 +210.01500000000001 +215.915 +211.215 +210.01500000000001 +211.51500000000001 +213.535 +212.895 +211.635 +211.925 +210.825 +213.885 +215.335 +211.585 +210.335 +210.135 +212.075 +216.215 +211.79500000000002 +210.475 +211.145 +210.975 +218.245 +211.065 +212.185 +212.825 +213.735 +217.105 +210.525 +210.335 +212.79500000000002 +212.375 +217.235 +212.845 +211.285 +211.675 +213.375 +217.26500000000001 +210.995 +210.895 +211.825 +219.325 +211.425 +211.335 +212.175 +216.735 +211.335 +211.675 +211.925 +213.495 +213.355 +211.315 +211.345 +212.095 +211.76500000000001 +212.79500000000002 +216.535 +211.495 +211.125 +212.205 +212.005 +214.975 +211.335 +211.885 +212.025 +213.485 +217.025 +212.005 +211.565 +213.04500000000002 +217.315 +212.01500000000001 +212.555 +211.955 +215.635 +212.455 +212.575 +213.76500000000001 +211.575 +212.075 +216.325 +211.325 +212.205 +215.775 +213.195 +211.815 +213.885 +214.715 +212.975 +212.965 +215.575 +212.005 +213.26500000000001 +212.955 +212.375 +212.845 +213.895 +214.205 +211.935 +215.76500000000001 +213.125 +212.885 +215.26500000000001 +213.905 +212.26500000000001 +217.035 +212.505 +212.095 +216.395 +212.505 +212.715 +215.105 +213.065 +213.245 +216.885 +211.805 +212.335 +212.705 +212.225 +213.675 +213.625 +212.665 +216.665 +212.865 +212.875 +212.085 +211.665 +214.995 +212.185 +217.035 +212.085 +216.495 +213.685 +215.495 +212.805 +215.985 +213.215 +216.175 +212.675 +212.225 +212.335 +213.805 +215.455 +213.085 +213.355 +211.04500000000002 +213.365 +217.165 +212.405 +212.925 +217.425 +213.875 +212.885 +217.325 +213.095 +212.835 +214.485 +211.965 +213.025 +215.085 +212.755 +213.145 +213.505 +212.135 +213.175 +213.635 +213.725 +213.51500000000001 +213.755 +217.115 +211.945 +217.275 +212.555 +212.54500000000002 +214.485 +212.665 +217.805 +212.925 +212.005 +214.635 +213.635 +213.655 +213.01500000000001 +212.665 +218.855 +212.355 +212.845 +216.345 +212.925 +213.985 +212.965 +213.065 +216.175 +213.805 +219.255 +213.615 +217.735 +213.54500000000002 +216.285 +212.705 +215.185 +212.255 +215.585 +211.955 +216.915 +213.715 +217.705 +213.815 +214.505 +212.825 +215.595 +211.885 +219.615 +212.585 +213.065 +213.755 +213.935 +216.355 +213.415 +215.54500000000002 +211.625 +217.325 +212.665 +215.835 +213.26500000000001 +216.79500000000002 +214.01500000000001 +216.935 +213.495 +218.975 +213.055 +213.415 +213.175 +213.525 +213.275 +212.965 +215.76500000000001 +212.815 +218.305 +212.165 +212.645 +213.605 +214.165 +217.985 +213.79500000000002 +213.735 +214.025 +213.495 +214.355 +213.535 +212.565 +212.215 +212.095 +213.865 +213.735 +220.01500000000001 +212.175 +216.79500000000002 +213.665 +213.775 +214.875 +213.04500000000002 +216.075 +213.555 +211.755 +214.615 +214.305 +217.815 +212.025 +212.835 +213.555 +212.345 +214.555 +213.915 +218.415 +212.615 +218.575 +214.125 +218.945 +213.205 +219.01500000000001 +213.405 +217.635 +213.125 +213.225 +213.505 +214.075 +214.425 +214.855 +218.655 +214.565 +219.425 +213.105 +213.665 +213.645 +214.305 +217.475 +212.805 +214.075 +216.01500000000001 +213.315 +213.505 +212.655 +219.095 +213.605 +213.145 +213.565 +217.325 +213.645 +212.805 +212.615 +217.375 +213.305 +212.565 +212.225 +214.185 +212.825 +214.205 +216.685 +214.105 +213.725 +217.975 +214.01500000000001 +212.865 +212.895 +216.955 +213.235 +214.785 +213.04500000000002 +215.975 +214.925 +215.485 +213.125 +213.885 +215.695 +213.775 +213.565 +213.525 +215.775 +214.125 +213.79500000000002 +213.465 +213.555 +216.845 +212.76500000000001 +213.29500000000002 +213.125 +213.335 +213.775 +213.54500000000002 +219.125 +213.055 +214.635 +213.76500000000001 +214.055 +214.01500000000001 +213.715 +214.855 +213.905 +217.535 +218.605 +216.985 +216.745 +216.195 +215.825 +218.575 +215.54500000000002 +213.665 +212.855 +213.76500000000001 +213.155 +215.065 +213.535 +216.575 +214.155 +213.525 +213.825 +214.79500000000002 +214.655 +213.705 +214.605 +214.925 +213.075 +213.775 +215.195 +214.535 +213.125 +213.145 +214.115 +215.505 +213.785 +214.665 +213.395 +219.005 +214.205 +214.205 +214.455 +213.175 +217.005 +214.835 +214.315 +214.595 +214.785 +214.435 +219.185 +214.395 +212.785 +213.885 +214.135 +214.735 +219.705 +213.29500000000002 +214.725 +213.785 +212.985 +215.875 +217.485 +213.005 +215.01500000000001 +214.035 +214.435 +218.755 +214.725 +214.895 +214.365 +214.055 +214.635 +214.035 +212.825 +219.01500000000001 +214.275 +213.01500000000001 +219.04500000000002 +213.685 +214.155 +215.975 +214.095 +213.885 +215.615 +214.54500000000002 +213.085 +213.675 +214.335 +213.535 +216.76500000000001 +214.51500000000001 +214.375 +218.565 +213.085 +213.54500000000002 +214.465 +212.845 +215.075 +217.475 +214.225 +213.385 +218.185 +213.195 +215.675 +216.825 +215.285 +213.455 +216.615 +213.985 +213.855 +213.985 +217.125 +215.125 +213.555 +213.145 +217.955 +214.645 +213.815 +213.355 +214.395 +216.865 +213.695 +213.465 +213.76500000000001 +214.125 +218.175 +214.76500000000001 +212.735 +214.275 +214.935 +214.935 +218.01500000000001 +213.345 +213.97 +213.9 +213.79 +213.7 +213.75 +213.55 +213.4 +213.16 +212.95 +212.67 +212.37 +211.86 +211.25 +210.83 +210.07 +209.5 +208.87 +208.15 +207.43 +206.53 +205.85 +205.02 +204.24 +203.31 +202.5 +201.59 +200.83 +199.99 +199.01 +198.19 +197.38 +196.51 +195.75 +194.84 +194.09 +193.35 +192.33 +191.54 +190.91 +190.02 +189.27 +188.39 +187.81 +187.04 +186.31 +185.63 +184.68 +184.14 +183.38 +182.68 +182.11 +181.28 +180.74 +180.01 +179.48 +178.86 +178.26 +177.52 +177.0 +176.35 +175.77 +175.21 +174.73 +174.05 +173.68 +173.03 +172.41 +171.9 +171.52 +170.91 +170.41 +169.93 +169.48 +169.09 +168.63 +168.04 +167.71 +167.28 +166.83 +166.52 +165.85 +165.42 +165.23 +164.83 +164.37 +164.03 +163.7 +163.36 +162.87 +162.59 +162.49 +161.82 +161.54 +161.19 +161.06 +160.57 +160.31 +159.94 +159.78 +159.46 +159.2 +158.89 +158.64 +158.25 +158.04 +157.8 +157.48 +157.32 +157.15 +156.76 +156.5 +156.21 +156.14 +155.84 +155.67 +155.52 +155.18 +154.92 +154.93 +154.68 +154.53 +154.27 +154.06 +153.86 +153.74 +153.49 +153.3 +153.02 +153.0 +152.93 +152.67 +152.62 +152.33 +152.16 +152.12 +151.72 +151.7 +151.63 +151.36 +151.28 +151.3 +151.05 +151.05 +150.73 +150.65 +150.62 +150.5 +150.3 +150.26 +150.13 +149.99 +149.9 +149.77 +149.61 +149.53 +149.34 +149.37 +149.23 +149.06 +149.12 +148.95 +148.91 +148.79 +148.76 +148.67 +148.48 +148.47 +148.28 +148.34 +148.21 +148.02 +148.05 +147.88 +147.92 +147.87 +147.81 +147.84 +147.61 +147.46 +147.55 +147.44 +147.42 +147.31 +147.12 +147.13 +147.16 +146.97 +147.16 +146.88 +146.85 +146.92 +146.8 +146.72 +146.7 +146.56 +146.59 +146.6 +146.48 +146.34 +146.38 +146.37 +146.38 +146.17 +146.21 +146.28 +146.04 +145.97 +146.08 +145.87 +145.9 +145.99 +145.85 +145.95 +145.79 +145.74 +145.75 +145.69 +145.68 +145.69 +145.59 +145.53 +145.46 +145.47 +145.4 +145.46 +145.39 +145.27 +145.38 +145.26 +145.2 +145.36 +145.27 +145.15 +145.15 +145.12 +145.01 +145.09 +144.96 +144.99 +144.91 +144.99 +145.08 +145.01 +144.96 +144.87 +144.78 +144.78 +144.78 +144.76 +144.75 +144.87 +144.79 +144.7 +144.73 +144.71 +144.59 +144.69 +144.58 +144.51 +144.53 +144.59 +144.64 +144.4 +144.56 +144.5 +144.48 +144.3 +144.45 +144.42 +144.5 +144.43 +144.46 +144.27 +144.35 +144.25 +144.45 +144.36 +144.26 +144.32 +144.35 +144.37 +144.31 +144.36 +144.33 +144.17 +144.28 +144.21 +144.32 +144.27 +144.24 +144.23 +144.2 +144.24 +144.15 +144.13 +144.06 +144.09 +144.11 +144.19 +144.27 +144.18 +144.2 +144.13 +144.15 +144.36 +144.07 +144.21 +144.12 +144.06 +144.07 +144.16 +144.11 +144.08 +144.1 +144.02 +144.11 +144.16 +144.01 +144.04 +143.98 +144.02 +144.01 +143.99 +144.03 +144.13 +144.15 diff --git a/src/pyvale/data/valid/Pulse255_SteadyDICData.csv b/src/pyvale/data/valid/Pulse255_SteadyDICData.csv new file mode 100755 index 000000000..463dd57b0 --- /dev/null +++ b/src/pyvale/data/valid/Pulse255_SteadyDICData.csv @@ -0,0 +1,485 @@ +Data Point Number,Timestamp,TC1,TC3,TC4,TC5,TC6,TC7,TC8,TC9,TC10 +312,210.996,,338.2725727,,174.2583452,334.200311,,192.9929602,274.7913552,183.9058137 +313,211.997,,338.2257836,,174.3642444,333.8136936,,192.9598217,275.2722227,183.7936645 +314,212.996,,338.7426489,,174.4004385,334.9374943,,192.5938846,275.2877295,183.9811344 +315,213.996,,339.5061207,,174.2697482,334.375398,,192.8575837,274.7167769,183.9880723 +316,214.996,,337.9231867,,174.2307939,334.7868375,,192.5958615,274.7946833,183.85144 +317,215.996,,339.0702665,,174.4596464,334.3476257,,193.1295992,275.4470905,183.887043 +318,216.997,,338.5947127,,174.2906192,334.4870598,,192.7447271,275.2760359,183.8891735 +319,217.997,,338.5533579,,174.244293,335.6411818,,192.9364954,274.839101,183.8097177 +320,218.997,,339.5689083,,174.4806908,333.9772139,,192.5492947,274.9363719,183.9824457 +321,219.996,,341.125238,,174.4257207,335.1182657,,192.8941171,275.2219137,183.8831542 +322,220.996,,340.4704862,,174.2695549,335.3163809,,192.6693622,274.7403883,183.9037487 +323,221.997,,338.8819355,,174.3354551,334.8413576,,192.9585097,275.070839,183.9773917 +324,222.997,,339.8874253,,174.4871709,335.1873737,,192.8819744,275.5203251,183.9577024 +325,223.996,,339.6507798,,174.4709632,335.134386,,193.006719,275.3763,183.9242367 +326,224.997,,340.1246006,,174.4100982,334.9891194,,192.8549535,275.3565011,183.9152942 +327,225.996,,339.0298739,,174.4559996,334.8363743,,192.9600604,275.2099089,184.0523529 +328,226.996,,340.5346837,,174.4694061,334.9036321,,192.9914145,275.1687934,184.0506216 +329,227.996,,339.7837269,,174.4420207,335.0266055,,193.1264096,275.3608258,183.9714785 +330,228.996,,339.8190852,,174.4564984,334.9577307,,192.9819949,275.2067684,184.0323439 +331,229.996,,340.6919718,,174.4206767,334.8085659,,192.9619974,275.1791596,184.0582521 +332,230.996,,341.4513475,,174.4206699,334.7869257,,193.1029506,275.3359702,184.0650037 +333,231.996,,339.7580382,,174.4653273,335.3910229,,192.9831397,275.306006,184.0556285 +334,232.996,,339.8490012,,174.4469106,335.2877525,,193.0819081,275.4779776,184.0413925 +335,233.996,,339.517604,,174.4712619,335.5755506,,192.9678751,275.6494064,183.980467 +336,234.996,,340.5501754,,174.4571367,335.3515128,,193.1140407,275.375082,184.0453342 +337,235.996,,339.6092749,,174.494562,335.0140332,,193.0652791,275.3908795,184.008213 +338,236.996,,340.209731,,174.4757327,335.3211522,,193.2162896,275.3129593,184.0226951 +339,237.996,,339.5444179,,174.5154934,335.5643879,,193.0554665,275.6405566,184.0210037 +340,238.996,,340.5116553,,174.4349342,334.8804305,,192.9643799,275.5406459,184.0718215 +341,239.996,,340.3849247,,174.5371636,335.5338502,,193.2838094,275.2088979,184.151291 +342,240.996,,340.3820635,,174.4955263,335.3157997,,193.0802233,275.4269409,184.0921431 +343,241.996,,340.8398157,,174.5069567,335.0301408,,193.0674286,275.4453146,184.0900655 +344,242.996,,340.7903474,,174.4563444,335.4181008,,193.3091914,275.4053555,184.0573589 +345,243.996,,340.4866031,,174.4698442,335.3364755,,193.1025239,275.4565605,184.0953392 +346,244.996,,340.7396651,,174.4950537,335.4524938,,193.1470847,275.5302613,184.1145089 +347,245.996,,339.9569506,,174.4969566,335.3140474,,193.2060709,275.3574062,184.1476417 +348,246.996,,340.853142,,174.5178149,335.5409665,,193.1940885,275.6174384,184.1018643 +349,247.996,,340.912858,,174.5236831,335.2491011,,193.1869123,275.584629,184.1289443 +350,248.996,,340.4910409,,174.5287264,335.3609737,,193.0526301,275.5056986,184.1577624 +351,249.996,,340.3382029,,174.5255126,335.3021448,,193.0333382,275.5429045,184.1319405 +352,250.995,,340.0031899,,174.5586335,335.3066559,,193.1149383,275.4928797,184.1061253 +353,251.996,,340.721057,,174.5455262,335.2354529,,193.1176676,275.5041447,184.1055927 +354,252.996,,340.4713463,,174.4916732,335.2641635,,193.1830777,275.5931354,184.1859344 +355,253.996,,339.7439915,,174.5221857,335.3431138,,193.187045,275.6003924,184.1509836 +356,254.995,,341.1391869,,174.5136094,335.5744025,,193.1064705,275.6217299,184.1286509 +357,255.996,,341.9824468,,174.6076294,335.4628466,,193.163493,275.5240131,184.1022564 +358,256.996,,341.3376351,,174.5497108,335.0962866,,193.0205032,275.7393292,184.1428733 +359,257.996,,340.0781173,,174.5519263,335.5047255,,193.2275182,275.6601446,184.0677185 +360,258.996,,339.7178106,,174.4916528,335.3433111,,193.229655,275.5541428,184.1682023 +361,259.996,,340.5564638,,174.5687128,335.5230303,,193.1606702,275.5400747,184.1269326 +362,260.995,,339.8960195,,174.5559714,335.5445016,,193.1518831,275.5677831,184.1146476 +363,261.996,,341.0865033,,174.5786397,335.7185118,,193.2206947,275.6695959,184.170659 +364,262.995,,340.6510945,,174.5583264,335.2307623,,193.0584802,275.7060225,184.1566226 +365,263.995,,340.6962096,,174.5813476,335.3962008,,193.1406928,275.4164123,184.1747672 +366,264.996,,340.6948366,,174.5556983,335.6323227,,193.2939658,275.539194,184.1910472 +367,265.995,,340.346408,,174.6339632,335.8988105,,193.2739487,275.6860385,184.1866391 +368,266.996,,340.5948486,,174.57331,335.419724,,193.2934132,275.6752859,184.1459822 +369,267.995,,340.7575878,,174.5360837,334.9706123,,193.1263935,275.7117967,184.1469475 +370,268.996,,341.501604,,174.5983269,335.7230921,,193.2601957,275.6726639,184.156336 +371,269.995,,340.6569819,,174.6233772,335.3958626,,193.3036644,275.7192411,184.1727825 +372,270.995,,340.0495173,,174.6322796,335.6284996,,193.2342873,275.6307014,184.1483656 +373,271.996,,339.3585332,,174.5533424,335.3089482,,193.2608544,275.4820665,184.2429899 +374,272.995,,341.8470174,,174.5759309,335.174474,,193.1583394,275.6302546,184.1707448 +375,273.995,,339.8518342,,174.5455711,335.9321296,,193.3267032,275.6689153,184.1284764 +376,274.995,,341.9886187,,174.6059115,335.7843176,,193.1727247,275.6152419,184.1737144 +377,275.995,,341.4013593,,174.5865429,335.299709,,193.3308833,275.737554,184.1748394 +378,276.995,,341.7616494,,174.6252863,335.8588388,,193.1911773,275.596254,184.1621084 +379,277.995,,340.8127454,,174.6366372,335.6311113,,193.1407916,275.6895464,184.2172809 +380,278.995,,340.0894265,,174.6142414,335.6761173,,193.2234628,275.6541616,184.1799532 +381,279.995,,340.053917,,174.6249867,335.444903,,193.2237289,275.7570583,184.2179733 +382,280.995,,340.9909224,,174.6627788,335.4802006,,193.3265429,275.8053817,184.2154763 +383,281.995,,341.9402925,,174.6023513,335.7806857,,193.2789004,275.5852676,184.1715499 +384,282.995,,340.3020163,,174.6666576,335.6045556,,193.2523729,275.59391,184.1948878 +385,283.995,,341.5613998,,174.7051219,335.6607878,,193.0543716,275.8685534,184.167195 +386,284.995,,340.1991581,,174.6244672,335.5964894,,193.2045701,275.5288405,184.2225804 +387,285.995,,340.9452738,,174.6045001,335.2620458,,193.0886012,275.9165639,184.1175356 +388,286.995,,340.7300327,,174.6710819,335.6012105,,193.1025605,275.3924686,184.2519845 +389,287.995,,340.4639359,,174.6220451,335.677792,,193.2207859,275.8880952,184.164924 +390,288.995,,341.0823574,,174.6770167,335.5894999,,193.2396712,275.6277804,184.1796194 +391,289.995,,341.4327642,,174.6511741,335.7616546,,193.2678693,275.6812592,184.2068926 +392,290.995,,341.7410977,,174.6446203,335.8095646,,193.1974735,275.9610323,184.1875161 +393,291.995,,338.9298238,,174.7579243,335.6431136,,193.2444307,275.7611033,184.2976418 +394,292.995,,341.5298408,,174.665712,335.9040136,,193.3427578,275.5587756,184.281801 +395,293.995,,342.0658606,,174.7131984,335.7062068,,193.3974893,275.5320186,184.2386668 +396,294.995,,340.5120281,,174.7264124,335.9793038,,193.2869938,275.9554201,184.1544762 +397,295.995,,340.8999946,,174.5920173,335.7908591,,193.5625882,276.2068532,184.2353175 +398,296.995,,340.8723586,,174.8061098,334.7439148,,193.661219,276.2696784,184.3251212 +399,297.995,,340.4778504,,174.672638,336.2397541,,193.0994576,276.0224976,184.2474825 +400,298.995,,340.1658903,,174.6275334,335.2247831,,193.2535365,275.5991202,184.1958187 +401,299.995,,341.1722259,,174.5911187,335.3553821,,193.4698938,275.5231294,184.261918 +402,300.995,,342.1033002,,174.6183181,334.9677424,,193.3733914,275.3948305,184.2420621 +403,301.995,,340.0561187,,174.6978414,335.371056,,193.3287713,275.8342831,184.2489338 +404,302.995,,341.3003193,,174.6079319,335.1223824,,193.2229749,275.8020916,184.2263079 +405,303.995,,340.8092506,,174.6604748,335.7159285,,193.3249368,275.6739949,184.2164333 +406,304.994,,340.4650012,,174.6625107,335.7194389,,193.3971025,275.6863982,184.1867761 +407,305.995,,341.5776592,,174.660122,335.5142281,,193.2719288,275.5510706,184.2426477 +408,306.994,,341.0465674,,174.5947777,335.3550949,,193.3992325,275.4661894,184.2450714 +409,307.995,,340.0561694,,174.6804285,336.1067426,,193.4655864,275.601871,184.246656 +410,308.995,,341.4737391,,174.6670947,335.2310012,,193.2232207,275.6541528,184.2517231 +411,309.994,,339.0808385,,174.6278454,335.4723934,,193.247558,275.8241843,184.2303891 +412,310.994,,339.5538212,,174.7581623,334.9488996,,193.2996538,276.0352412,184.3186213 +413,311.994,,340.7160015,,174.7232972,335.6097333,,193.3635586,275.6612541,184.2035616 +414,312.995,,340.7556625,,174.6826504,335.8029436,,193.2371531,275.6541071,184.2803412 +415,313.994,,340.3806023,,174.7196576,336.0181004,,193.2634607,275.8235625,184.2260207 +416,314.994,,340.7899337,,174.6785384,335.4433331,,193.3707345,275.5214063,184.2070107 +417,315.994,,341.2911242,,174.6819515,335.6591162,,193.2905071,275.6169478,184.2244092 +418,316.994,,340.3334979,,174.6929366,335.4185416,,193.2465123,275.6040714,184.2127967 +419,317.995,,340.3240654,,174.6705339,335.7126272,,193.5325717,275.6423182,184.0990224 +420,318.994,,342.3739127,,174.6633148,335.9913558,,193.4344856,275.5238144,184.3660963 +421,319.994,,339.7491731,,174.6505399,335.6294835,,193.3823301,275.7712709,184.216745 +422,320.994,,340.4141417,,174.6870678,335.8546689,,193.1420864,275.7311356,184.2698468 +423,321.994,,340.6380635,,174.7177741,335.9618906,,193.4321221,275.6830695,184.1989666 +424,322.994,,340.4161916,,174.7877105,335.9106755,,193.1076438,275.9738206,184.1748028 +425,323.994,,340.4449478,,174.6215901,335.5859295,,193.523445,275.5575368,184.1980276 +426,324.994,,342.1975841,,174.6758364,336.0684539,,193.09194,275.9440516,184.1712137 +427,325.994,,340.7435739,,174.6868214,335.3531441,,193.3755266,275.5061269,184.2574817 +428,326.994,,340.7352022,,174.6757697,335.4962085,,193.4781662,275.4020153,184.233604 +429,327.994,,340.4180241,,174.7204552,335.4232623,,193.3791211,275.7366571,184.2440646 +430,328.994,,340.7714339,,174.6820839,335.2174793,,193.3966482,275.5080884,184.3422315 +431,329.994,,340.999041,,174.7555396,335.900832,,193.5861635,275.829245,184.1819935 +432,330.994,,340.5316305,,174.5700849,336.369657,,193.3053308,275.5806094,184.1408904 +433,331.994,,341.0595852,,174.7499305,335.5284218,,193.1770209,275.8457645,184.2868454 +434,332.994,,341.0754394,,174.6798215,335.4331887,,193.1054797,275.8860791,184.1728713 +435,333.994,,342.5873884,,174.7740564,335.9622658,,193.4665299,275.6866229,184.281625 +436,334.994,,343.1785651,,174.8156019,334.7755314,,193.0523709,275.7981861,184.1922274 +437,335.994,,339.722091,,174.6435195,335.0458478,,193.2045267,275.7966131,184.1913085 +438,336.994,,340.1660157,,174.6842525,335.4209298,,192.9587012,275.4114026,184.270059 +439,337.994,,340.8784859,,174.6569329,335.0943759,,193.5620661,275.5808227,184.2541383 +440,338.994,,339.704967,,174.6629409,335.1926799,,192.9970251,275.6714096,184.2832228 +441,339.994,,340.2944513,,174.792214,335.6286733,,193.2976085,275.7781509,184.2238219 +442,340.994,,342.0817466,,174.6161133,335.6049914,,193.4233742,275.5902743,184.2372921 +443,341.994,,342.2382587,,174.6306711,334.6709041,,193.407418,275.7272439,184.2749327 +444,342.994,,339.3152777,,174.7292837,335.8429134,,193.5265793,275.3831612,184.3319032 +445,343.994,,340.6541737,,174.7387518,335.8020309,,193.4153661,275.448571,184.3094506 +446,344.994,,343.1365637,,174.8628694,334.5694421,,193.4978357,275.3058041,184.2448893 +447,345.994,,341.1708759,,174.6789025,334.7639334,,193.569834,275.6332405,184.1397909 +448,346.994,,339.5627806,,174.6417423,336.2775087,,193.34557,275.4330325,184.1119249 +449,347.994,,342.9364775,,174.8200859,334.5396185,,193.3157078,275.927156,184.3612472 +450,348.994,,340.3249898,,174.6575245,335.1031941,,193.1919779,275.7046575,184.2745396 +451,349.994,,342.9338861,,174.6990827,336.3221524,,193.542262,275.5794626,184.212422 +452,350.994,,339.9450132,,174.6456678,335.5766517,,193.3299265,275.9038273,184.1617639 +453,351.994,,342.1040761,,174.7583862,335.2191857,,193.6321129,275.9606985,184.350307 +454,352.994,,341.3012932,,174.7740555,335.7071718,,193.4266887,275.5803558,184.2047179 +455,353.994,,340.8829677,,174.7328629,335.6563555,,193.2298417,275.7688934,184.1674568 +456,354.994,,340.2772651,,174.7922399,335.7972775,,193.3542501,275.4145094,184.2956269 +457,355.993,,342.0531917,,174.6583094,334.8786961,,193.4383312,275.3483154,184.3077188 +458,356.994,,341.130037,,174.6750031,335.6107631,,193.340637,275.6373768,184.1769051 +459,357.993,,341.3175168,,174.7064279,335.1491346,,193.2369444,275.2231414,184.1074434 +460,358.994,,340.652353,,174.759211,335.896989,,193.5409103,275.5656858,184.1061981 +461,359.994,,338.9194963,,174.8193601,335.7844461,,193.052403,275.8793264,184.3875546 +462,360.993,,342.0593709,,174.6773249,335.1888368,,193.6050668,275.5075364,184.1295894 +463,361.994,,339.7667417,,174.8162527,334.8669265,,193.4288317,275.9469885,184.3597417 +464,362.994,,341.6283862,,174.673865,335.0974333,,193.1281781,275.8043862,184.1818254 +465,363.993,,340.6242874,,174.7760777,335.6785585,,193.2954439,275.7710615,184.1801741 +466,364.993,,341.6154131,,174.7702623,335.5940509,,193.3259717,275.6840643,184.220032 +467,365.993,,340.3332591,,174.8033044,335.5378307,,193.1463112,275.8779797,184.185048 +468,366.994,,340.1058664,,174.7361624,335.1785015,,193.2019224,275.8851583,184.1351024 +469,367.993,,342.1843936,,174.7277588,335.0863779,,193.0779517,275.6642355,184.2357593 +470,368.993,,339.137267,,174.7040853,335.1658471,,193.1222998,275.8138498,184.1675559 +471,369.993,,341.8156851,,174.7072191,334.9904358,,193.4138737,275.7867656,184.2352465 +472,370.993,,340.9230159,,174.6921553,334.960175,,193.1606897,275.6712852,184.2397476 +473,371.993,,339.818495,,174.7476729,334.7508436,,193.5459088,276.0796338,184.3505391 +474,372.994,,340.8587726,,174.7640077,334.7633652,,193.3849502,275.9387545,184.2608486 +475,373.993,,341.7394587,,174.7174322,334.8374102,,193.0573683,275.4971644,184.268539 +476,374.994,,338.8825776,,174.6698257,334.8895023,,193.1278646,275.8623079,184.1843085 +477,375.994,,340.6522054,,174.8883053,334.4856289,,193.4874033,275.4701414,184.2864238 +478,376.994,,342.1663087,,174.8293065,335.63877,,193.4696166,275.4147738,184.3082504 +479,377.993,,340.4326393,,174.7459294,335.9714568,,193.2941717,275.6175661,184.2366977 +480,378.993,,342.6307903,,174.6106423,335.8164978,,193.1299281,275.3014775,184.23205 +481,379.993,,342.258218,,174.7972556,334.8942302,,193.2527931,275.7492972,184.1829566 +482,380.993,,340.1226751,,174.6952221,335.9349456,,193.0577475,275.3704114,184.3204221 +483,381.993,,342.7842899,,174.8395863,335.0792854,,192.9267857,275.3989439,184.2551484 +484,382.993,,340.3686186,,174.6778296,335.0015415,,193.1936539,275.6392206,184.2787795 +485,383.993,,341.6249889,,174.8137766,335.3377923,,193.068718,275.8745741,184.2116082 +486,384.993,,340.4390315,,174.6922745,335.0220656,,193.4979404,275.5671736,184.211435 +487,385.993,,338.2847782,,174.8329724,335.5158424,,193.3099614,275.8914364,184.3114529 +488,386.993,,343.0189238,,174.8913655,334.51131,,193.004918,275.2839052,184.1939363 +489,387.993,,341.4638072,,174.8535257,335.7277426,,193.1900324,275.7673383,184.1763444 +490,388.993,,341.189314,,174.7062669,335.0236457,,193.5412952,275.4126564,184.2771747 +491,389.993,,341.2939939,,174.844929,335.261027,,193.1991389,275.5743142,184.2719143 +492,390.993,,340.3655019,,174.8150073,335.4857057,,192.9725586,275.1994032,184.1415269 +493,391.993,,340.4212717,,174.8237436,334.8787839,,193.0199758,275.1351589,184.1565618 +494,392.993,,341.9820432,,174.8463728,335.0851154,,193.5078919,275.5476222,184.186665 +495,393.993,,343.0877121,,174.8226523,335.3596718,,193.6554026,275.7687947,184.2354054 +496,394.993,,342.7422913,,174.8020924,335.4914016,,193.4983063,275.3395732,184.3231983 +497,395.993,,342.0348113,,174.7348638,335.4027177,,193.1735965,275.9072303,184.3750084 +498,396.993,,338.975424,,174.8363921,335.3701529,,193.437098,275.628545,184.1918252 +499,397.993,,338.4686242,,174.8840061,335.6015041,,193.3789582,275.5717762,184.2070799 +500,398.993,,340.8721236,,174.9709778,334.5311283,,193.1199821,275.6865296,184.3780114 +501,399.993,,338.3246081,,174.7137651,335.8470077,,193.369865,275.3687404,184.215929 +502,400.993,,339.191544,,174.8491138,335.7422491,,193.275319,275.7555693,184.2423101 +503,401.993,,341.8509302,,174.94912,334.4948046,,193.0866977,275.8238628,184.2013934 +504,402.993,,342.2125628,,174.7866955,334.9452252,,193.4435281,275.702545,184.3129172 +505,403.993,,341.4475198,,174.8975664,335.1189751,,193.5409353,275.9583534,184.4266653 +506,404.993,,338.6010077,,174.8041348,335.6276004,,193.5937755,275.7018394,184.3282719 +507,405.993,,338.7831409,,174.8289463,335.4966003,,193.7432422,275.5789296,184.1400949 +508,406.993,,340.4349247,,174.9758349,334.7081863,,193.5348975,275.3586207,184.2710083 +509,407.993,,341.4762629,,174.9105212,334.5263105,,193.5282675,275.9072947,184.2886135 +510,408.993,,341.126268,,174.8007879,335.0780358,,193.0496652,275.8105083,184.4034601 +511,409.992,,344.0424111,,174.766608,336.0675139,,193.5755696,275.5946351,184.2420103 +512,410.993,,340.0178259,,175.1302319,336.093468,,193.1774903,276.011152,184.2132055 +513,411.993,,338.7212231,,174.7970617,334.6948807,,193.1594036,275.7849064,184.5101968 +514,412.992,,340.4840266,,174.7393879,335.7426566,,193.4208951,275.4804601,184.1604698 +515,413.993,,337.0928675,,175.0814052,335.0954245,,193.5517454,275.0491298,184.2480095 +516,414.993,,340.6109459,,174.960125,334.25308,,193.1258997,276.0180777,184.5207306 +517,415.993,,342.7304125,,174.7715449,336.1427,,193.1995776,275.1829435,184.2010402 +518,416.992,,341.2974219,,175.0795221,336.0159302,,193.1244285,276.305023,184.2146635 +519,417.993,,345.0826048,,174.9480483,335.880684,,193.8651891,275.213971,184.094517 +520,418.992,,339.8494064,,174.7391216,334.412559,,193.8644568,275.4960625,184.1786142 +521,419.992,,339.9223569,,174.7282562,334.7712781,,193.7892851,275.8507326,184.1777619 +522,420.992,,336.9301157,,175.1236575,335.9839361,,193.9959013,275.1042981,184.3350366 +523,421.992,,343.3627721,,174.9177602,333.4917691,,193.9043157,274.8964452,184.4575939 +524,422.992,,337.3424565,,174.9754021,336.3318584,,192.7926262,275.6448388,184.2398127 +525,423.992,,337.7450434,,174.7453094,333.8586148,,193.9596439,274.9058478,184.5483635 +526,424.992,,339.4205492,,174.9861214,335.555898,,192.881637,275.8573675,184.5339277 +527,425.993,,342.6459868,,174.761318,334.3338938,,193.1797933,275.9519966,184.564384 +528,426.992,,343.9966401,,174.7812923,333.4886459,,193.4579261,275.9995201,184.2588028 +529,427.992,,339.6332042,,174.8764868,334.7473055,,193.8038494,275.0443896,184.3536005 +530,428.992,,339.1463554,,175.1339045,336.0102473,,193.2240345,276.1578973,184.1635125 +531,429.992,,338.2065849,,175.1339378,333.536443,,193.700986,276.2859174,184.3690949 +532,430.992,,343.4614666,,174.8820959,334.367937,,193.9299095,276.0167052,184.294892 +533,431.992,,343.1896412,,175.1012535,336.0461016,,192.8891792,275.6211383,184.2408379 +534,432.993,,343.2856655,,175.1002953,333.6730886,,194.0188923,275.6471692,184.172528 +535,433.992,,340.6513291,,175.0192042,333.4840948,,193.9876272,275.3385041,184.1477783 +536,434.992,,343.6982931,,175.1390413,335.4001619,,193.2037777,275.9436011,184.5317435 +537,435.992,,343.6544973,,174.9671511,334.1141551,,193.9760916,275.3261507,184.2485685 +538,436.992,,338.7464895,,174.9270087,336.1107192,,192.8199331,276.059716,184.4533322 +539,437.992,,342.8610014,,174.9887228,336.0578746,,194.0691944,275.7946483,184.1666818 +540,438.992,,338.874367,,174.8440829,334.5884738,,193.8895514,274.8934143,184.629964 +541,439.992,,341.1934056,,174.9075463,335.6800155,,193.5674612,276.3087699,184.4515676 +542,440.992,,343.5252259,,174.7811324,334.660221,,194.0215747,275.5643563,184.264702 +543,441.992,,343.2292993,,175.0329111,334.250524,,193.0092971,275.4325118,184.6378477 +544,442.992,,336.0980734,,175.2603307,334.3985195,,193.9723373,275.2307208,184.2126522 +545,443.992,,337.1413494,,175.2553135,334.9274337,,194.0977833,275.7551607,184.3180969 +546,444.992,,338.3525151,,174.8473898,334.7116331,,194.1137185,275.8599241,184.2853302 +547,445.992,,344.8264724,,174.9137942,335.0221153,,193.1652877,275.8388863,184.6253828 +548,446.992,,343.7026195,,175.2271602,334.8893223,,193.3068447,274.9672808,184.5504739 +549,447.992,,338.0801629,,175.2265546,335.8920301,,193.0243217,276.1039429,184.5212028 +550,448.992,,337.7487493,,175.0295574,334.2531113,,193.830941,275.4453372,184.3760395 +551,449.992,,338.9611965,,174.8909717,335.1119908,,193.2876066,276.1993198,184.6284125 +552,450.992,,338.4280404,,175.285157,334.0339621,,193.5743174,276.311132,184.5500144 +553,451.992,,343.0937997,,174.9316994,333.4692053,,193.0743949,275.8449775,184.550314 +554,452.992,,338.4436615,,175.1686779,335.5567641,,193.8771569,275.0035172,184.4798331 +555,453.992,,342.0632179,,174.8708973,334.9524885,,193.6093113,275.5791878,184.3792356 +556,454.992,,341.5420799,,174.8759475,336.3539185,,192.9223906,276.0986224,184.7445847 +557,455.992,,340.6328294,,175.267517,335.513815,,193.1368296,275.1792458,184.766345 +558,456.992,,342.3358766,,175.152542,334.1817535,,193.2079646,275.7426345,184.3958686 +559,457.992,,337.9321079,,174.9030682,333.596375,,193.0415564,276.0599877,184.3545656 +560,458.992,,342.4495109,,175.3522771,334.2548319,,193.3774927,275.6111361,184.745124 +561,459.992,,338.0975424,,175.2756283,333.7625093,,192.9501634,274.7329488,184.3346965 +562,460.992,,343.7508499,,175.2988777,335.5289023,,193.154224,276.0114102,184.2838518 +563,461.992,,337.7605517,,174.8969933,336.0273523,,194.1479651,275.8257133,184.5039304 +564,462.992,,339.222933,,175.3517781,333.486778,,193.281935,276.1432888,184.7984593 +565,463.991,,339.5865002,,174.9275075,334.9442558,,193.165727,275.81054,184.7861609 +566,464.992,,344.2438139,,175.3578666,335.8373611,,193.7269662,274.9977023,184.7420944 +567,465.992,,343.6699338,,174.9154775,335.6601819,,194.0520673,275.0986513,184.7375332 +568,466.991,,337.2825366,,174.9907986,334.7952245,,193.3907396,275.9921861,184.453079 +569,467.992,,341.1775325,,175.0491331,334.7618785,,193.7403259,276.0333009,184.3858408 +570,468.991,,343.6007903,,174.9642498,334.3638709,,194.0265402,275.0960289,184.514138 +571,469.992,,344.0171227,,175.0213265,334.6864049,,193.8262015,275.8447186,184.3286505 +572,470.991,,339.1974902,,175.1811142,335.9546619,,192.9749006,276.0422979,184.8108576 +573,471.991,,341.77155,,175.0170614,335.2380878,,193.745518,276.0263428,184.7205672 +574,472.991,,342.4338593,,175.0543963,333.9722058,,193.4741681,275.1663024,184.3468284 +575,473.991,,339.5874647,,175.3041611,335.768771,,193.4444526,275.2937647,184.7757469 +576,474.991,,337.8947723,,175.2200403,333.3918196,,193.8435018,276.1893525,184.3806805 +577,475.991,,342.7456412,,175.0838798,335.4062146,,194.1087062,275.1317649,184.5893399 +578,476.991,,344.1422072,,175.1997388,334.5918575,,193.0820703,275.851988,184.8528001 +579,477.991,,342.0731829,,175.026836,333.9319778,,193.3249777,275.5868011,184.791874 +580,478.991,,339.8634379,,174.9775376,336.0384693,,192.9681106,275.563534,184.5602953 +581,479.991,,342.9606067,,175.4626304,333.9092761,,194.1346326,275.9156053,184.5441948 +582,480.991,,336.8805824,,175.3652994,333.7440007,,193.1351655,275.723499,184.7255279 +583,481.991,,340.8869113,,175.4654452,335.811253,,193.9631847,275.1685622,184.7854219 +584,482.991,,340.513063,,174.9883168,335.2888381,,193.3747436,276.3642275,184.6987937 +585,483.991,,337.4752268,,175.354686,334.2392949,,194.1575836,275.6898367,184.666433 +586,484.991,,338.3948685,,175.1255469,334.233298,,193.1891126,276.1178264,184.4261852 +587,485.991,,341.0026449,,175.0953447,335.3632262,,194.2108006,274.8929416,184.7143082 +588,486.991,,335.8296769,,175.0054239,334.3343842,,193.7184992,274.8595982,184.6835189 +589,487.991,,336.4915519,,175.3010205,334.1022438,,194.0428618,275.9185701,184.3924996 +590,488.991,,338.0722655,,175.17641,336.0195038,,193.9871678,275.9672659,184.8739679 +591,489.991,,344.6417717,,175.3902527,334.8722133,,193.199504,275.1835518,184.589693 +592,490.991,,340.9475721,,175.0842992,336.0867274,,193.0821436,275.8525125,184.772238 +593,491.991,,340.4210537,,175.2604107,334.8832498,,193.7044939,275.5115611,184.6755687 +594,492.991,,342.2580699,,175.4317217,335.5071381,,194.1181584,276.3168664,184.8905745 +595,493.991,,342.7316249,,175.178027,334.6431048,,194.1413823,274.9239987,184.8930649 +596,494.991,,343.9443474,,175.2621674,333.5526387,,193.2095292,274.84111,184.6192971 +597,495.991,,340.5337791,,175.0539175,336.6003304,,194.2248056,276.3487535,184.9145256 +598,496.991,,340.4065829,,175.3172966,334.4082445,,193.8068315,276.4522496,184.9485311 +599,497.991,,343.9552654,,175.3783551,333.9465601,,193.7873013,276.1528294,184.8656049 +600,498.991,,341.402661,,175.5175816,333.8985565,,193.0235298,274.8562245,184.4908134 +601,499.991,,344.0087448,,175.2149703,333.2988421,,193.9504912,275.2425569,184.4429583 +602,500.991,,338.0205099,,175.0784972,336.0651183,,194.3276711,275.9062263,184.8754996 +603,501.991,,337.739695,,175.5671963,333.1715375,,193.1565743,276.2905191,184.9536583 +604,502.991,,337.0368621,,175.0876065,335.9902241,,193.8014132,274.9443386,184.9130475 +605,503.991,,335.9292732,,175.5588052,333.1708619,,193.100417,274.8777564,184.4588857 +606,504.991,,343.786324,,175.3007014,335.6689045,,193.5889358,274.9334597,184.4597646 +607,505.991,,337.4614238,,175.0887909,336.0522305,,194.1660375,275.6618064,184.6702288 +608,506.991,,340.6624533,,175.1619113,336.0303726,,194.3582298,276.4291007,184.9853067 +609,507.991,,337.8069628,,175.2492388,334.1561474,,194.1313116,275.0266152,184.9736476 +610,508.991,,339.4745173,,175.2221302,334.5323387,,194.2805519,274.9741712,184.691796 +611,509.991,,340.0112539,,175.4294064,333.9660116,,193.7118631,276.2305747,184.6621987 +612,510.991,,340.5624329,,175.5630708,334.1442172,,193.9846589,274.9115984,184.9385768 +613,511.991,,344.82424,,175.1389951,334.3909365,,194.1787512,275.2336674,184.7894509 +614,512.991,,342.436158,,175.2915456,335.9502412,,193.5355099,276.0534381,184.5477845 +615,513.991,,344.3063702,,175.6182753,333.465866,,193.2414557,274.9041255,184.501614 +616,514.991,,342.8122261,,175.5445586,335.7181982,,194.2538606,274.907862,184.6226802 +617,515.991,,338.5180935,,175.3530964,334.4630499,,193.1947183,276.3185432,184.607512 +618,516.991,,339.2957354,,175.4937598,333.8663716,,194.3029903,274.982855,184.8135219 +619,517.991,,339.5438338,,175.1599621,336.0347496,,194.269849,275.6404177,184.7738434 +620,518.991,,342.5270664,,175.6238719,334.9857513,,193.2514811,276.2606964,184.6342263 +621,519.99,,341.0452285,,175.1460087,335.781463,,193.8679919,275.5880968,184.5825291 +622,520.991,,340.8589568,,175.1691846,335.983376,,193.951051,275.8600998,184.8014833 +623,521.991,,342.4142895,,175.3199856,335.9384491,,193.3461205,275.7843176,184.9666032 +624,522.99,,340.3841621,,175.2173132,336.1632392,,194.4017683,276.3853589,185.0360858 +625,523.99,,336.7611712,,175.3455509,333.4730051,,194.2038924,276.3660212,185.0229484 +626,524.99,,344.6096231,,175.6219956,334.2488298,,194.403073,276.1596521,184.8768188 +627,525.991,,340.50019,,175.1963797,335.3808062,,193.3634216,275.7358904,184.87857 +628,526.99,,339.3044358,,175.3637834,333.8137085,,194.0762911,276.3878313,184.8967014 +629,527.99,,340.3829042,,175.6601386,334.0415601,,194.3098333,275.0260007,184.7548801 +630,528.99,,340.3098209,,175.3375794,333.5148942,,193.1323642,275.1975645,184.9252469 +631,529.99,,342.5392265,,175.1856603,334.9691208,,193.238301,275.0771552,184.8871864 +632,530.991,,343.6056799,,175.6696612,336.1374323,,193.8850994,275.7402277,184.8021629 +633,531.991,,340.0950597,,175.6487797,335.8587879,,194.2814646,274.9372099,184.968175 +634,532.99,,344.2166081,,175.380266,336.0046357,,193.2382079,274.8202785,184.7239578 +635,533.99,,345.2049889,,175.3649481,335.151287,,194.0147865,275.3089491,184.9321254 +636,534.99,,339.9717786,,175.7082836,334.6091537,,194.4232215,276.1973666,184.9447501 +637,535.991,,338.9299594,,175.5703848,335.4980792,,194.3568063,274.962458,185.0782685 +638,536.99,,336.9809083,,175.5540618,333.6312342,,193.7843737,276.3495508,185.0143926 +639,537.99,,342.9687841,,175.2303424,336.060437,,193.3780602,275.2591011,185.1001621 +640,538.99,,337.3344757,,175.7056021,335.7388159,,193.356306,276.3553627,184.910139 +641,539.99,,342.2847859,,175.320532,336.0575958,,193.2050107,275.5616712,185.1228281 +642,540.99,,345.125457,,175.7247337,333.7251048,,194.3688543,276.0792583,184.6987954 +643,541.99,,340.9705288,,175.361841,335.9546636,,193.2276972,275.1883124,185.0975122 +644,542.99,,336.4463107,,175.3393966,334.0754275,,194.4551647,276.09432,185.130752 +645,543.99,,341.1387901,,175.5260142,333.4883669,,194.3618121,275.1223455,184.7234456 +646,544.99,,344.1819293,,175.7293188,334.4196404,,194.4160733,276.3489817,185.0408409 +647,545.99,,336.6473812,,175.6595804,335.9353538,,193.7587598,274.8878859,184.9242155 +648,546.99,,344.8626735,,175.4133712,336.1498238,,193.6222005,274.9064386,184.6561741 +649,547.99,,340.7023526,,175.7822421,333.7607777,,193.9341115,276.315056,184.847462 +650,548.99,,337.7635698,,175.7704636,334.8917265,,194.2275231,275.0213976,184.6536638 +651,549.99,,341.2065541,,175.3325298,335.8949372,,193.8106542,275.5756099,185.1467197 +652,550.99,,337.3754659,,175.3141578,336.0093508,,193.2920621,275.9576297,185.1481446 +653,551.99,,341.026087,,175.540614,335.9456557,,194.5036148,276.0641841,184.9489658 +654,552.99,,339.6783123,,175.7949723,334.0457801,,194.2681131,275.4234693,184.6607088 +655,553.99,,335.3858563,,175.5596189,335.8938352,,193.2431216,275.2003691,185.105017 +656,554.99,,341.0932077,,175.7985193,334.0705908,,193.972293,274.8644378,184.7427959 +657,555.99,,340.5922246,,175.8181703,333.4703868,,194.3723894,276.0219826,184.6895141 +658,556.99,,337.1043413,,175.512094,333.4933263,,193.826031,276.3653624,185.0875249 +659,557.99,,344.2309465,,175.3300082,335.6869304,,193.4127625,274.9225439,184.7971834 +660,558.99,,344.2531641,,175.5492784,335.507306,,193.7246058,275.5034774,185.1601572 +661,559.99,,342.1670374,,175.3701329,334.9573211,,193.5756847,276.3928742,184.9930129 +662,560.99,,341.1872658,,175.3408414,335.6948499,,194.3261491,275.7062756,185.2109691 +663,561.99,,341.1943084,,175.3579625,333.7588344,,194.5198629,275.7093376,184.694182 +664,562.99,,338.348697,,175.4116618,335.9637876,,194.4890119,276.0085261,184.9898235 +665,563.99,,343.1100644,,175.776367,334.7635636,,194.5027369,276.0864374,184.9609053 +666,564.99,,337.5322769,,175.4115289,333.7775726,,193.3859763,275.4007258,185.0773177 +667,565.99,,338.1620598,,175.4254961,334.9284879,,193.4691453,274.8706421,184.7410187 +668,566.99,,341.6244541,,175.5489194,336.0178246,,193.5972724,274.9576612,184.9542468 +669,567.99,,337.2291061,,175.4764078,334.872197,,193.5366174,274.9496511,184.7297392 +670,568.99,,341.226891,,175.6825793,335.5116199,,194.4615758,275.222339,184.9908094 +671,569.99,,337.1686611,,175.4381594,335.0795548,,193.6111185,275.0058062,184.8079911 +672,570.99,,344.2244709,,175.8407633,334.709699,,194.5608582,276.3658552,185.1183285 +673,571.989,,341.387494,,175.8767512,333.0800884,,194.4955156,276.3070774,184.8548677 +674,572.989,,336.7126036,,175.6275676,333.4836899,,194.0538347,275.8927654,185.2277762 +675,573.989,,337.6208921,,175.7730404,334.5917653,,193.5302407,276.2700899,184.7632123 +676,574.989,,337.1378505,,175.4074771,335.5173737,,193.8071144,275.4953534,184.9856361 +677,575.989,,339.9627498,,175.8791471,333.1522139,,193.3213866,274.8554118,184.8169472 +678,576.989,,339.7320741,,175.4711183,334.969276,,194.1559365,275.9893352,185.1406752 +679,577.989,,337.4138942,,175.4079698,335.5653435,,193.3337218,274.8343204,184.7579723 +680,578.989,,337.1878088,,175.8442508,333.6689237,,193.3917886,276.2131741,184.8759492 +681,579.989,,343.4785794,,175.8771709,335.1303899,,194.0050706,275.6171864,184.9867284 +682,580.989,,343.0600859,,175.8174197,333.691856,,193.3020424,275.0369466,184.8206697 +683,581.989,,341.3960946,,175.8370373,335.9123696,,193.9775065,275.9395203,184.8023119 +684,582.989,,338.7053444,,175.5777071,335.3101868,,194.2804955,274.8981907,185.0501718 +685,583.989,,342.4457871,,175.8006905,334.3465792,,193.4358164,276.0135891,185.1516423 +686,584.989,,344.0468556,,175.8290455,335.4397835,,194.5945653,276.3913807,185.2361802 +687,585.989,,334.9717844,,175.450098,335.8143978,,194.5405048,276.3220543,185.2722898 +688,586.989,,344.3918981,,175.918024,334.6257758,,193.4660512,274.9768751,184.9721398 +689,587.989,,343.0764697,,175.9190488,333.0634904,,193.7093773,275.755126,185.1344367 +690,588.989,,344.0688445,,175.9171923,335.8127289,,194.0397443,275.0168607,185.2442107 +691,589.989,,339.2480415,,175.7696742,335.4518449,,194.3753668,276.0099259,185.0322805 +692,590.989,,337.3988579,,175.7877812,334.2318366,,193.3718791,276.1634613,185.3226028 +693,591.989,,344.1755448,,175.8817368,335.1818173,,194.5438333,275.6200421,184.8482037 +694,592.989,,341.5050929,,175.896377,335.6440674,,194.5020998,275.5978047,184.836751 +695,593.989,,341.598363,,175.9388601,335.6272092,,193.8755042,275.8360233,185.0547469 +696,594.989,,342.4024651,,175.9684068,333.0076957,,193.523206,274.9694678,184.9843323 +697,595.989,,340.8800517,,175.7082007,334.8996817,,193.8255675,274.8495267,185.1982268 +698,596.989,,341.2004529,,175.9610669,334.0313093,,194.2821206,275.7561236,185.1447849 +699,597.989,,336.8420853,,175.5264433,335.9140273,,194.5735398,276.2449927,185.289723 +700,598.989,,343.7979999,,175.5147983,333.6908884,,194.1458137,274.8297174,185.1972016 +701,599.989,,339.4944506,,175.9439313,332.9398524,,193.4689012,275.0725681,184.8698846 +702,600.989,,342.2671649,,175.5769831,333.3377478,,193.4242816,275.4393408,185.3214183 +703,601.989,,341.6886759,,175.7190346,335.0351702,,194.6149873,274.9183183,185.1013979 +704,602.989,,336.4807481,,175.9051019,335.7030395,,193.3811328,275.3244077,185.3309269 +705,603.989,,343.2807182,,175.8066411,334.5556926,,194.4041891,276.2703767,185.362682 +706,604.989,,343.8792908,,176.0090211,333.1425334,,193.3842018,274.9462087,185.3402892 +707,605.989,,340.2907304,,176.0164012,335.7872972,,193.676755,276.0086391,185.0516983 +708,606.989,,337.6843108,,175.8856642,335.7044989,,193.6375412,275.2227819,184.9625997 +709,607.989,,344.4946431,,175.8852052,334.6202206,,194.5142218,275.9378911,185.1429881 +710,608.989,,343.0168478,,175.618853,335.6684703,,194.4695861,275.7322635,185.0503269 +711,609.989,,344.9400959,,175.9860229,333.3830868,,193.6041985,274.7819458,184.8824037 +712,610.989,,337.7770823,,175.5660709,336.0099408,,194.5740401,276.1523757,185.3084016 +713,611.989,,339.6206781,,175.7735888,334.2905133,,193.6983027,276.0531522,184.8884432 +714,612.989,,343.0629667,,175.9133545,334.6427156,,194.6048112,275.74211,185.1821078 +715,613.989,,342.4586897,,175.7137587,335.8467455,,194.675172,276.3155005,185.3799753 +716,614.989,,344.4291684,,175.6170835,335.8025756,,193.43504,275.3405822,185.3720317 +717,615.989,,344.6868597,,175.6527112,335.9120538,,194.4200518,275.6392258,185.049715 +718,616.989,,340.5808109,,175.7599277,335.6541358,,193.6899959,276.1216452,184.9216169 +719,617.989,,344.4264634,,176.0169613,334.9883695,,194.3548016,275.1563183,185.1972167 +720,618.989,,337.6935967,,175.6312178,334.1753554,,194.6366409,274.9028948,185.2647551 +721,619.989,,342.0460972,,175.7175523,335.138122,,194.5345306,275.5126555,184.9342152 +722,620.989,,340.5622029,,176.056597,335.2937128,,193.6808502,274.7674407,184.965837 +723,621.989,,341.5876013,,175.9460429,335.6775694,,194.5354692,275.9370314,184.9116161 +724,622.989,,338.4851138,,175.6271057,333.2416411,,193.6521871,276.068571,185.0961061 +725,623.989,,342.5142363,,175.6128255,335.5034814,,194.0768298,275.5517069,185.0193591 +726,624.989,,339.9520558,,176.0387294,334.6969775,,193.5215577,275.5468645,185.3851634 +727,625.989,,343.7114778,,175.6278979,333.2910345,,194.3027442,274.8024306,185.2059668 +728,626.989,,343.7243236,,175.9105343,333.8994877,,194.2723453,274.9788793,184.9970398 +729,627.989,,340.3133779,,175.7777428,335.1877269,,194.3543166,276.2379665,184.9538921 +730,628.988,,339.8141257,,175.749215,335.4005898,,194.425724,275.9689564,184.9416604 +731,629.989,,339.5460187,,175.7668429,334.7867826,,194.701245,275.6569067,184.9331974 +732,630.988,,338.8289277,,175.7877181,334.1914036,,193.5356039,275.4236628,185.4043408 +733,631.988,,337.0674064,,175.8360367,335.602575,,193.5396712,275.3560123,185.2410782 +734,632.988,,340.2053286,,175.9083123,334.4260001,,194.663599,276.1289153,184.9491384 +735,633.988,,342.1757947,,175.8660291,334.9074079,,193.982743,274.8886563,185.0816181 +736,634.988,,344.121867,,175.9657353,334.9272762,,193.7167038,276.0028551,185.365961 +737,635.988,,344.2435925,,175.8837637,334.5896226,,194.5060241,276.1227084,185.3415039 +738,636.989,,340.0714492,,176.0122049,332.9418892,,194.1571462,275.8611494,185.4560389 +739,637.988,,340.1381501,,175.641973,335.5478909,,194.7929979,276.2323172,185.2682925 +740,638.988,,341.6091311,,175.6633738,333.7854561,,193.4829772,274.7995566,184.9520156 +741,639.988,,345.3410403,,175.9533448,334.6535767,,194.2224447,275.9101509,185.4609999 +742,640.988,,337.3182123,,175.7100948,333.7784519,,193.5562739,275.8495695,185.3217751 +743,641.989,,340.0623935,,175.6368695,334.0663401,,194.5665816,274.7928024,184.9947107 +744,642.988,,344.0271434,,176.0621292,335.4963664,,193.73065,275.2974838,185.476628 +745,643.988,,337.6984619,,175.6695894,333.9533564,,193.9900993,276.0287922,185.2616679 +746,644.989,,338.123295,,175.6455074,333.2847006,,193.6724587,275.4285135,185.2375706 +747,645.988,,344.0563619,,175.7662921,335.2282782,,193.8210058,275.0073664,185.2286214 +748,646.988,,338.4940927,,176.0638466,333.8455584,,193.7479775,276.0760817,184.9630697 +749,647.988,,338.6178124,,175.8638412,334.0263047,,193.7172909,276.1250786,185.0018228 +750,648.988,,344.3103478,,175.9065704,334.615923,,193.8606788,276.0943732,184.977226 +751,649.988,,342.1065536,,176.0239652,335.5690959,,194.7177738,274.9806948,185.3578057 +752,650.988,,341.6198069,,176.0872185,333.024676,,193.5090193,274.8833674,185.2206716 +753,651.988,,338.2285738,,175.9608125,333.3511315,,193.5405386,274.732253,184.9611191 +754,652.988,,338.7815277,,175.6791863,333.5909101,,194.0211325,275.3162548,185.3276693 +755,653.988,,344.9797627,,176.056048,335.6091779,,194.4486437,275.4132545,185.0617709 +756,654.988,,342.7092442,,175.6756862,334.5852977,,194.0376671,274.713395,185.0144417 +757,655.988,,345.4520577,,175.9501392,335.2780868,,194.1144017,275.638097,185.3091054 +758,656.988,,338.9276368,,176.0076954,335.6547578,,194.0312572,275.066623,185.3909332 +759,657.988,,341.8625781,,175.8758473,333.9008421,,193.6004624,275.1735716,185.4261042 +760,658.988,,338.3425269,,176.0256967,335.5665167,,193.4759035,275.761671,185.4252588 +761,659.988,,339.9398097,,175.6085973,335.4670983,,193.5052994,274.7174627,185.1071834 +762,660.988,,344.9923889,,175.7489658,335.6897997,,193.5247969,276.0416619,184.9598219 +763,661.988,,339.5725233,,175.6395737,333.2308284,,193.9889633,275.4163957,185.2915274 +764,662.988,,339.1178249,,175.6459021,333.5634915,,194.0845222,275.081044,184.9876685 +765,663.988,,342.4307876,,176.0233214,335.5334692,,193.5511109,274.6319252,184.9933683 +766,664.988,,340.2610722,,175.6147067,334.1512895,,194.2250171,275.6652422,185.2983396 +767,665.988,,336.8353298,,175.6004597,335.8009307,,194.7461168,276.1230743,185.3938508 +768,666.988,,336.9233396,,176.0326052,335.4752355,,193.8793459,274.9113637,185.0390135 +769,667.988,,338.1182052,,175.7871701,333.2657912,,194.2132491,276.0126715,185.2749149 +770,668.988,,342.5577415,,175.9635231,335.1633402,,194.6083981,275.3651583,185.0484289 +771,669.988,,338.0606355,,175.6831941,333.2420477,,193.6006568,275.8965803,184.9326958 +772,670.988,,341.5610665,,175.9610079,335.610059,,194.6301103,274.6678434,185.3768452 +773,671.988,,344.8184972,,175.9025074,333.5471503,,193.8288904,275.9223239,185.0186055 +774,672.988,,340.8530043,,175.8283754,333.6604108,,193.7444858,275.5787796,185.1278399 +775,673.988,,338.3686793,,176.0173002,334.403012,,194.2356282,274.6553059,185.0493352 +776,674.988,,344.5899327,,175.7603001,335.519804,,194.0423956,275.0221596,184.960676 +777,675.988,,338.369606,,176.0175666,333.1654434,,194.6526682,274.9225674,185.3374202 +778,676.988,,343.2293823,,175.9920793,335.6730327,,193.9000818,275.6911315,185.0504341 +779,677.988,,339.7459691,,175.7958223,335.3493238,,193.5544278,275.2303197,185.2912631 +780,678.988,,338.0395958,,175.9689547,334.3029602,,193.9587253,274.7664692,185.3388855 +781,679.988,,343.1222778,,175.7376289,333.554309,,193.7867424,275.1186276,185.3106398 +782,680.988,,343.3291205,,175.6339862,335.0788449,,193.6138716,275.7383756,185.094135 +783,681.987,,340.4030202,,175.7714674,333.3036233,,194.3673759,274.6658504,185.1536302 +784,682.988,,344.2554086,,175.9950748,335.5784529,,194.10693,275.5957101,185.2869489 +785,683.988,,339.7261253,,175.647981,335.0721741,,193.5717225,275.2738823,185.2992409 +786,684.987,,343.4876965,,175.5694597,333.6263517,,193.5777469,275.3606414,185.3103942 +787,685.988,,344.2361842,,175.9258803,334.8743939,,194.1781997,274.7488038,185.3375017 +788,686.987,,339.7338797,,175.9145876,335.3787424,,194.5736628,274.631734,185.2863503 +789,687.987,,338.7905718,,175.9354899,334.3958192,,193.7244253,275.0312657,185.2932821 +790,688.988,,339.2741523,,175.9144947,333.612171,,194.5025164,275.1572394,184.9539262 +791,689.988,,340.1323703,,175.919865,333.8249966,,194.3375904,274.8943551,185.0574143 +792,690.987,,338.6059412,,175.6567659,334.8624723,,194.4180505,275.273592,185.0218443 +793,691.987,,338.3498339,,175.7472931,333.5831965,,193.518697,275.7749651,184.9439321 +794,692.987,,341.2015615,,175.7721677,334.6116719,,194.1742468,274.9004427,184.9340975 +795,693.987,,341.5758561,,175.6067986,335.0369772,,194.2664962,275.2018588,185.0627353 diff --git a/src/pyvale/data/valid/Pulse255_SteadyHIVEData.csv b/src/pyvale/data/valid/Pulse255_SteadyHIVEData.csv new file mode 100755 index 000000000..c5a464849 --- /dev/null +++ b/src/pyvale/data/valid/Pulse255_SteadyHIVEData.csv @@ -0,0 +1,448 @@ +Data Point Number,Timestamp,TC2 +291,211.121,217.265 +292,212.201,210.995 +293,213.271,210.895 +294,214.371,211.825 +295,215.441,219.325 +296,216.521,211.425 +297,217.591,211.335 +298,218.701,212.175 +299,219.761,216.735 +300,220.861,211.335 +301,221.951,211.675 +302,223.041,211.925 +303,224.101,213.495 +304,225.201,213.355 +305,226.271,211.315 +306,227.371,211.345 +307,228.431,212.095 +308,229.531,211.765 +309,230.611,212.795 +310,231.701,216.535 +311,232.761,211.495 +312,233.861,211.125 +313,234.921,212.205 +314,236.02,212.005 +315,237.081,214.975 +316,238.181,211.335 +317,239.241,211.885 +318,240.34,212.025 +319,241.421,213.485 +320,242.511,217.025 +321,243.591,212.005 +322,244.691,211.565 +323,245.751,213.045 +324,246.851,217.315 +325,247.921,212.015 +326,249.021,212.555 +327,250.081,211.955 +328,251.181,215.635 +329,252.261,212.455 +330,253.351,212.575 +331,254.411,213.765 +332,255.501,211.575 +333,256.561,212.075 +334,257.671,216.325 +335,258.741,211.325 +336,259.831,212.205 +337,260.891,215.775 +338,261.991,213.195 +339,263.051,211.815 +340,264.151,213.885 +341,265.241,214.715 +342,266.32,212.975 +343,267.381,212.965 +344,268.481,215.575 +345,269.531,212.005 +346,270.641,213.265 +347,271.7,212.955 +348,272.8,212.375 +349,273.861,212.845 +350,274.971,213.895 +351,276.031,214.205 +352,277.121,211.935 +353,278.181,215.765 +354,279.281,213.125 +355,280.341,212.885 +356,281.45,215.265 +357,282.521,213.905 +358,283.641,212.265 +359,284.69,217.035 +360,285.811,212.505 +361,286.851,212.095 +362,287.961,216.395 +363,289.011,212.505 +364,290.121,212.715 +365,291.171,215.105 +366,292.281,213.065 +367,293.331,213.245 +368,294.461,216.885 +369,295.501,211.805 +370,296.621,212.335 +371,297.671,212.705 +372,298.781,212.225 +373,299.831,213.675 +374,300.941,213.625 +375,301.991,212.665 +376,303.111,216.665 +377,304.201,212.865 +378,305.261,212.875 +379,306.351,212.085 +380,307.421,211.665 +381,308.521,214.995 +382,309.581,212.185 +383,310.681,217.035 +384,311.771,212.085 +385,312.851,216.495 +386,313.911,213.685 +387,315.011,215.495 +388,316.081,212.805 +389,317.151,215.985 +390,318.221,213.215 +391,319.321,216.175 +392,320.381,212.675 +393,321.481,212.225 +394,322.561,212.335 +395,323.641,213.805 +396,324.701,215.455 +397,325.801,213.085 +398,326.871,213.355 +399,327.971,211.045 +400,329.041,213.365 +401,330.141,217.165 +402,331.221,212.405 +403,332.291,212.925 +404,333.351,217.425 +405,334.461,213.875 +406,335.531,212.885 +407,336.611,217.325 +408,337.681,213.095 +409,338.781,212.835 +410,339.841,214.485 +411,340.941,211.965 +412,342.001,213.025 +413,343.101,215.085 +414,344.141,212.755 +415,345.251,213.145 +416,346.311,213.505 +417,347.411,212.135 +418,348.471,213.175 +419,349.581,213.635 +420,350.661,213.725 +421,351.741,213.515 +422,352.801,213.755 +423,353.891,217.115 +424,354.981,211.945 +425,356.061,217.275 +426,357.121,212.555 +427,358.221,212.545 +428,359.281,214.485 +429,360.381,212.665 +430,361.451,217.805 +431,362.551,212.925 +432,363.611,212.005 +433,364.711,214.635 +434,365.771,213.635 +435,366.871,213.655 +436,367.941,213.015 +437,369.041,212.665 +438,370.111,218.855 +439,371.221,212.355 +440,372.271,212.845 +441,373.371,216.345 +442,374.431,212.925 +443,375.531,213.985 +444,376.591,212.965 +445,377.691,213.065 +446,378.761,216.175 +447,379.87,213.805 +448,380.931,219.255 +449,382.041,213.615 +450,383.121,217.735 +451,384.201,213.545 +452,385.261,216.285 +453,386.361,212.705 +454,387.431,215.185 +455,388.531,212.255 +456,389.591,215.585 +457,390.681,211.955 +458,391.771,216.915 +459,392.851,213.715 +460,393.931,217.705 +461,395.011,213.815 +462,396.071,214.505 +463,397.171,212.825 +464,398.241,215.595 +465,399.341,211.885 +466,400.421,219.615 +467,401.501,212.585 +468,402.561,213.065 +469,403.661,213.755 +470,404.721,213.935 +471,405.831,216.355 +472,406.891,213.415 +473,407.991,215.545 +474,409.051,211.625 +475,410.161,217.325 +476,411.221,212.665 +477,412.321,215.835 +478,413.381,213.265 +479,414.481,216.795 +480,415.541,214.015 +481,416.631,216.935 +482,417.701,213.495 +483,418.801,218.975 +484,419.871,213.055 +485,420.961,213.415 +486,422.021,213.175 +487,423.111,213.525 +488,424.171,213.275 +489,425.281,212.965 +490,426.341,215.765 +491,427.441,212.815 +492,428.501,218.305 +493,429.591,212.165 +494,430.65,212.645 +495,431.762,213.605 +496,432.821,214.165 +497,433.911,217.985 +498,434.981,213.795 +499,436.081,213.735 +500,437.151,214.025 +501,438.251,213.495 +502,439.321,214.355 +503,440.421,213.535 +504,441.491,212.565 +505,442.591,212.215 +506,443.65,212.095 +507,444.751,213.865 +508,445.811,213.735 +509,446.911,220.015 +510,447.971,212.175 +511,449.071,216.795 +512,450.151,213.665 +513,451.231,213.775 +514,452.301,214.875 +515,453.401,213.045 +516,454.461,216.075 +517,455.56,213.555 +518,456.621,211.755 +519,457.721,214.615 +520,458.781,214.305 +521,459.881,217.815 +522,460.941,212.025 +523,462.041,212.835 +524,463.101,213.555 +525,464.201,212.345 +526,465.26,214.555 +527,466.361,213.915 +528,467.42,218.415 +529,468.521,212.615 +530,469.581,218.575 +531,470.681,214.125 +532,471.741,218.945 +533,472.841,213.205 +534,473.9,219.015 +535,474.991,213.405 +536,476.051,217.635 +537,477.151,213.125 +538,478.211,213.225 +539,479.311,213.505 +540,480.391,214.075 +541,481.471,214.425 +542,482.531,214.855 +543,483.631,218.655 +544,484.691,214.565 +545,485.791,219.425 +546,486.851,213.105 +547,487.951,213.665 +548,489.011,213.645 +549,490.111,214.305 +550,491.181,217.475 +551,492.291,212.805 +552,493.35,214.075 +553,494.451,216.015 +554,495.521,213.315 +555,496.611,213.505 +556,497.681,212.655 +557,498.781,219.095 +558,499.841,213.605 +559,500.941,213.145 +560,502.001,213.565 +561,503.111,217.325 +562,504.181,213.645 +563,505.28,212.805 +564,506.341,212.615 +565,507.431,217.375 +566,508.491,213.305 +567,509.591,212.565 +568,510.651,212.225 +569,511.761,214.185 +570,512.821,212.825 +571,513.911,214.205 +572,514.981,216.685 +573,516.081,214.105 +574,517.141,213.725 +575,518.241,217.975 +576,519.321,214.015 +577,520.411,212.865 +578,521.471,212.895 +579,522.571,216.955 +580,523.651,213.235 +581,524.731,214.785 +582,525.811,213.045 +583,526.901,215.975 +584,527.961,214.925 +585,529.061,215.485 +586,530.121,213.125 +587,531.231,213.885 +588,532.301,215.695 +589,533.411,213.775 +590,534.471,213.565 +591,535.571,213.525 +592,536.631,215.775 +593,537.741,214.125 +594,538.801,213.795 +595,539.901,213.465 +596,540.961,213.555 +597,542.061,216.845 +598,543.141,212.765 +599,544.221,213.295 +600,545.281,213.125 +601,546.381,213.335 +602,547.441,213.775 +603,548.541,213.545 +604,549.601,219.125 +605,550.691,213.055 +606,551.761,214.635 +607,552.851,213.765 +608,553.911,214.055 +609,555.021,214.015 +610,556.071,213.715 +611,557.171,214.855 +612,558.231,213.905 +613,559.331,217.535 +614,560.401,218.605 +615,561.5,216.985 +616,562.561,216.745 +617,563.66,216.195 +618,564.741,215.825 +619,565.881,218.575 +620,566.98,215.545 +621,568.041,213.665 +622,569.141,212.855 +623,570.211,213.765 +624,571.301,213.155 +625,572.371,215.065 +626,573.461,213.535 +627,574.52,216.575 +628,575.631,214.155 +629,576.701,213.525 +630,577.791,213.825 +631,578.861,214.795 +632,579.96,214.655 +633,581.031,213.705 +634,582.132,214.605 +635,583.191,214.925 +636,584.291,213.075 +637,585.341,213.775 +638,586.451,215.195 +639,587.51,214.535 +640,588.611,213.125 +641,589.671,213.145 +642,590.771,214.115 +643,591.821,215.505 +644,592.931,213.785 +645,593.991,214.665 +646,595.091,213.395 +647,596.151,219.005 +648,597.25,214.205 +649,598.311,214.205 +650,599.411,214.455 +651,600.471,213.175 +652,601.561,217.005 +653,602.621,214.835 +654,603.731,214.315 +655,604.801,214.595 +656,605.891,214.785 +657,606.951,214.435 +658,608.051,219.185 +659,609.11,214.395 +660,610.21,212.785 +661,611.271,213.885 +662,612.37,214.135 +663,613.451,214.735 +664,614.531,219.705 +665,615.591,213.295 +666,616.691,214.725 +667,617.751,213.785 +668,618.861,212.985 +669,619.911,215.875 +670,621.011,217.485 +671,622.071,213.005 +672,623.17,215.015 +673,624.231,214.035 +674,625.331,214.435 +675,626.411,218.755 +676,627.491,214.725 +677,628.551,214.895 +678,629.661,214.365 +679,630.721,214.055 +680,631.821,214.635 +681,632.881,214.035 +682,633.991,212.825 +683,635.051,219.015 +684,636.141,214.275 +685,637.201,213.015 +686,638.301,219.045 +687,639.36,213.685 +688,640.461,214.155 +689,641.521,215.975 +690,642.621,214.095 +691,643.701,213.885 +692,644.781,215.615 +693,645.861,214.545 +694,646.94,213.085 +695,648.011,213.675 +696,649.091,214.335 +697,650.171,213.535 +698,651.251,216.765 +699,652.321,214.515 +700,653.41,214.375 +701,654.471,218.565 +702,655.571,213.085 +703,656.631,213.545 +704,657.731,214.465 +705,658.791,212.845 +706,659.891,215.075 +707,660.961,217.475 +708,662.061,214.225 +709,663.12,213.385 +710,664.221,218.185 +711,665.282,213.195 +712,666.381,215.675 +713,667.461,216.825 +714,668.541,215.285 +715,669.601,213.455 +716,670.701,216.615 +717,671.761,213.985 +718,672.851,213.855 +719,673.931,213.985 +720,675.011,217.125 +721,676.071,215.125 +722,677.181,213.555 +723,678.241,213.145 +724,679.341,217.955 +725,680.391,214.645 +726,681.491,213.815 +727,682.551,213.355 +728,683.651,214.395 +729,684.711,216.865 +730,685.811,213.695 +731,686.871,213.465 +732,687.971,213.765 +733,689.031,214.125 +734,690.131,218.175 +735,691.181,214.765 +736,692.281,212.735 +737,693.341,214.275 diff --git a/src/pyvale/data/valid/Pulse255_SteadyPICOData.csv b/src/pyvale/data/valid/Pulse255_SteadyPICOData.csv new file mode 100755 index 000000000..078c0fbbf --- /dev/null +++ b/src/pyvale/data/valid/Pulse255_SteadyPICOData.csv @@ -0,0 +1,848 @@ +Timestamp,Coil RMS Voltage +211.122,84.95444 +211.722,84.94022 +212.122,84.92105 +212.722,84.92902 +213.122,84.9213 +213.722,84.91728 +214.122,84.91163 +214.722,84.91377 +215.122,84.89375 +215.722,84.90121 +216.322,84.8975 +216.922,84.93619 +217.522,84.88531 +218.322,84.8934 +218.922,84.88992 +219.522,84.92398 +220.122,84.88934 +220.722,84.91607 +221.122,84.90064 +221.722,84.90539 +222.122,84.92503 +222.722,84.90173 +223.122,84.90263 +223.722,84.89614 +224.122,84.90065 +224.722,84.92272 +225.322,84.8868 +225.922,84.90807 +226.522,84.91795 +227.322,84.89256 +227.922,84.91723 +228.522,84.88397 +229.122,84.92072 +229.722,84.89495 +230.322,84.89201 +230.922,84.89858 +231.522,84.89584 +232.322,84.88914 +232.922,84.92029 +233.522,84.88966 +234.322,84.88771 +234.922,84.90323 +235.522,84.90975 +236.122,84.9002 +236.722,84.89381 +237.122,84.91455 +237.722,84.89565 +238.322,84.90711 +238.922,84.8817 +239.522,84.89323 +240.322,84.90268 +240.922,84.8838 +241.522,84.89188 +242.122,84.89029 +242.722,84.88195 +243.122,84.92606 +243.722,84.89604 +244.122,84.91132 +244.722,84.9047 +245.122,84.9203 +245.722,84.93311 +246.122,84.91244 +246.722,84.90865 +247.322,84.91741 +247.922,84.9063 +248.522,84.91045 +249.122,84.89979 +249.722,84.90802 +250.122,84.91887 +250.722,84.89487 +251.122,84.91332 +251.722,84.93317 +252.122,84.90536 +252.722,84.91532 +253.122,84.89969 +253.722,84.92329 +254.322,84.92746 +254.922,84.90231 +255.522,84.91827 +256.322,84.92734 +256.922,84.93189 +257.522,84.92168 +258.122,84.91105 +258.722,84.90953 +259.122,84.92445 +259.722,84.94044 +260.322,84.90397 +260.922,84.91096 +261.522,84.93884 +262.322,84.91779 +262.922,84.9247 +263.522,84.92912 +264.122,84.91045 +264.722,84.92625 +265.322,84.91648 +265.922,84.90868 +266.522,84.9318 +267.122,84.93236 +267.722,84.9164 +268.122,84.93497 +268.722,84.9239 +269.122,84.93632 +269.722,84.94583 +270.122,84.94907 +270.722,84.93275 +271.122,84.93125 +271.722,84.9227 +272.122,84.92715 +272.722,84.92791 +273.322,84.9245 +273.922,84.93721 +274.522,84.93541 +275.322,84.93575 +275.922,84.92545 +276.522,84.92667 +277.122,84.92857 +277.722,84.93203 +278.322,84.93449 +278.922,84.93748 +279.522,84.93124 +280.122,84.94511 +280.722,84.94581 +281.122,84.93211 +281.722,84.95099 +282.122,84.92516 +282.722,84.94125 +283.122,84.94342 +283.722,84.9403 +284.122,84.93576 +284.722,84.93559 +285.322,84.92723 +285.922,84.91122 +286.522,84.93331 +287.322,84.92981 +287.922,84.93552 +288.522,84.93047 +289.122,84.93922 +289.722,84.93013 +290.122,84.97176 +290.722,84.93759 +291.122,84.94209 +291.722,84.95383 +292.122,84.95792 +292.722,84.94532 +293.122,84.95827 +293.722,84.92618 +294.122,84.95906 +294.722,84.92935 +295.322,84.94537 +295.922,84.91673 +296.522,84.94924 +297.122,84.93231 +297.722,84.91657 +298.122,84.93685 +298.722,84.92422 +299.122,84.93664 +299.722,84.93282 +300.322,84.95628 +300.922,84.94508 +301.522,84.92898 +302.122,84.92734 +302.722,84.93836 +303.322,84.94256 +303.922,84.92487 +304.522,84.92556 +305.122,84.93593 +305.722,84.93542 +306.122,84.94492 +306.722,84.93307 +307.122,84.91702 +307.722,84.92062 +308.122,84.94836 +308.722,84.94959 +309.322,84.94346 +309.922,84.93456 +310.522,84.93793 +311.122,84.95338 +311.722,84.94825 +312.122,84.92785 +312.722,84.91418 +313.122,84.94144 +313.722,84.96381 +314.122,84.93113 +314.722,84.94207 +315.322,84.93893 +315.922,84.93998 +316.522,84.95229 +317.322,84.93211 +317.922,84.94827 +318.522,84.93777 +319.122,84.95115 +319.722,84.92724 +320.122,84.94292 +320.722,84.94579 +321.122,84.94994 +321.722,84.96472 +322.122,84.93307 +322.722,84.94424 +323.322,84.94502 +323.922,84.94289 +324.522,84.94936 +325.122,84.94576 +325.722,84.94946 +326.122,84.96227 +326.722,84.93319 +327.122,84.95847 +327.722,84.94569 +328.122,84.94874 +328.722,84.95541 +329.122,84.94502 +329.722,84.94223 +330.322,84.92925 +330.922,84.94827 +331.522,84.93824 +332.122,84.94813 +332.722,84.93382 +333.322,84.9391 +333.922,84.95528 +334.522,84.94579 +335.122,84.95576 +335.722,84.93915 +336.322,84.9425 +336.922,84.9437 +337.522,84.92844 +338.122,84.93674 +338.722,84.93516 +339.322,84.92771 +339.922,84.92045 +340.522,84.90996 +341.122,84.94149 +341.722,84.94051 +342.322,84.93891 +342.922,84.93616 +343.522,84.9334 +344.122,84.92797 +344.722,84.92953 +345.122,84.94663 +345.522,84.93595 +345.922,84.94289 +346.522,84.93809 +346.922,84.93268 +347.522,84.92597 +348.122,84.93768 +348.722,84.95299 +349.122,84.94547 +349.722,84.94525 +350.322,84.95309 +350.922,84.95974 +351.522,84.95301 +352.122,84.9473 +352.722,84.93217 +353.122,84.93474 +353.722,84.94794 +354.122,84.95284 +354.722,84.94332 +355.322,84.94572 +355.922,84.95383 +356.522,84.95144 +357.122,84.94741 +357.722,84.95184 +358.322,84.95238 +358.922,84.93931 +359.522,84.95695 +360.322,84.95291 +360.922,84.95474 +361.522,84.9527 +362.122,84.95581 +362.722,84.95256 +363.122,84.95435 +363.722,84.94728 +364.322,84.95245 +364.922,84.94587 +365.522,84.95236 +366.322,84.96117 +366.922,84.94917 +367.522,84.9397 +368.122,84.95588 +368.722,84.97249 +369.322,84.94994 +369.922,84.94888 +370.522,84.96213 +371.122,84.94949 +371.722,84.95866 +372.122,84.95926 +372.722,84.96519 +373.122,84.95574 +373.722,84.9697 +374.322,84.956 +374.922,84.96453 +375.522,84.96513 +376.122,84.96679 +376.722,84.94713 +377.122,84.96442 +377.722,84.95094 +378.322,84.9572 +378.922,84.97213 +379.522,84.97517 +380.122,84.96976 +380.722,84.9693 +381.322,84.9648 +381.922,84.98018 +382.522,84.96246 +383.122,84.98504 +383.722,84.95681 +384.122,84.95999 +384.722,84.96474 +385.122,84.9733 +385.722,84.95155 +386.122,84.96349 +386.722,84.95537 +387.322,84.96717 +388.122,84.97669 +388.722,84.96252 +389.522,84.97563 +390.122,84.97586 +390.722,84.99138 +391.322,84.9764 +391.922,84.95891 +392.522,84.94839 +393.322,84.9752 +393.922,84.96855 +394.522,84.97651 +395.122,84.95177 +395.722,84.95667 +396.122,84.95545 +396.722,84.9605 +397.122,84.95882 +397.722,84.96378 +398.122,84.96917 +398.722,84.97795 +399.122,84.96962 +399.722,84.98653 +400.122,84.98015 +400.722,84.96793 +401.322,84.9774 +401.922,84.97905 +402.522,84.97391 +403.122,84.97777 +403.722,84.97103 +404.122,84.9721 +404.722,84.99507 +405.322,84.99643 +405.922,84.96339 +406.522,84.97166 +407.122,84.97352 +407.722,84.97246 +408.322,84.97707 +408.922,84.96722 +409.522,84.98282 +410.122,84.96951 +410.722,84.99666 +411.122,84.96289 +411.722,84.97122 +412.122,84.96381 +412.722,84.96989 +413.122,84.97228 +413.722,84.98076 +414.122,84.97523 +414.722,84.97741 +415.322,84.96388 +415.922,84.97375 +416.522,84.97754 +417.122,84.9837 +417.722,84.97771 +418.122,84.97831 +418.722,84.98601 +419.122,84.96662 +419.722,84.97477 +420.122,84.98667 +420.722,84.98247 +421.122,84.99481 +421.722,84.98382 +422.122,85.00007 +422.722,84.96825 +423.322,84.99232 +423.922,84.99051 +424.522,84.96734 +425.122,84.99352 +425.722,84.96915 +426.122,84.98356 +426.722,84.9838 +427.122,84.99179 +427.722,84.96196 +428.322,84.9784 +428.922,84.98281 +429.522,84.97283 +430.122,84.97446 +430.722,84.97144 +431.122,84.98515 +431.722,84.98522 +432.122,84.97182 +432.722,84.97035 +433.322,84.97504 +433.922,84.98199 +434.522,84.99377 +435.322,84.99181 +435.922,84.98276 +436.522,84.99287 +437.122,84.97683 +437.722,84.97487 +438.122,84.99117 +438.722,84.98574 +439.322,84.98866 +439.922,84.97794 +440.522,84.97793 +441.122,84.96314 +441.722,84.97891 +442.122,84.98892 +442.722,85.00155 +443.122,84.98538 +443.722,84.9834 +444.122,84.98469 +444.722,84.99232 +445.122,84.98931 +445.722,84.98577 +446.122,84.99 +446.722,84.9753 +447.322,84.97482 +447.922,84.9895 +448.522,85.00525 +449.122,85.00588 +449.722,84.98302 +450.122,84.97661 +450.722,84.98459 +451.122,85.00012 +451.722,84.98518 +452.122,84.99102 +452.722,84.9882 +453.322,85.00008 +453.922,84.97926 +454.522,84.97797 +455.122,84.99001 +455.722,84.98338 +456.122,84.96854 +456.722,84.98984 +457.122,85.00263 +457.722,84.9895 +458.122,84.98203 +458.722,84.99373 +459.122,84.97863 +459.722,84.98249 +460.322,84.99166 +460.922,85.00655 +461.522,84.97076 +462.122,84.98924 +462.722,85.00136 +463.122,84.97642 +463.722,84.99008 +464.122,84.98348 +464.722,84.98075 +465.122,84.98667 +465.722,84.96994 +466.122,84.99591 +466.522,85.00056 +466.922,84.98355 +467.522,85.00018 +467.922,84.99538 +468.522,84.98733 +469.122,84.98091 +469.722,85.01114 +470.322,84.98823 +470.922,84.98393 +471.522,84.99996 +472.322,84.99159 +472.922,84.9994 +473.522,84.98466 +474.122,84.98495 +474.722,85.00516 +475.322,84.99133 +475.922,85.00262 +476.522,84.99605 +477.122,84.99644 +477.722,85.00031 +478.122,85.0014 +478.722,84.9946 +479.322,85.00124 +479.922,84.98211 +480.522,84.9889 +481.322,84.976 +481.922,84.99477 +482.522,85.00216 +483.322,84.99537 +483.922,85.01411 +484.522,85.02107 +485.322,85.00916 +485.922,85.00497 +486.522,85.00546 +487.122,85.0042 +487.722,85.0027 +488.122,85.0053 +488.722,85.02793 +489.122,85.00384 +489.722,85.01086 +490.122,85.01756 +490.722,85.00927 +491.122,85.00933 +491.722,85.01839 +492.122,85.01122 +492.722,85.0142 +493.322,85.0256 +493.922,84.9978 +494.522,85.00594 +495.122,85.01338 +495.722,85.0091 +496.122,85.00668 +496.722,85.00485 +497.122,85.00732 +497.722,85.01736 +498.122,85.00644 +498.722,85.00857 +499.122,85.0104 +499.722,85.0084 +500.322,85.01879 +500.922,85.01117 +501.522,85.01431 +502.322,85.00703 +502.922,84.99995 +503.522,85.02143 +504.322,85.01827 +504.922,85.01998 +505.322,85.0097 +505.922,85.00912 +506.522,85.01191 +506.922,85.01021 +507.522,85.01308 +508.122,85.00985 +508.722,85.01637 +509.322,85.02344 +509.922,85.015 +510.522,85.01624 +511.122,85.00264 +511.722,85.02213 +512.122,85.00386 +512.722,85.00877 +513.122,85.01763 +513.722,85.01417 +514.122,85.01237 +514.722,85.02097 +515.322,85.00621 +515.922,85.01944 +516.522,85.00884 +517.322,85.004 +517.922,85.0043 +518.522,85.01304 +519.122,85.0126 +519.722,85.01357 +520.322,85.00533 +520.922,85.02008 +521.522,85.00958 +522.122,85.02618 +522.722,85.01342 +523.122,85.01622 +523.722,85.00546 +524.122,85.00838 +524.522,85.00195 +524.922,85.02338 +525.522,85.01455 +525.922,85.01381 +526.522,85.00522 +527.122,85.02296 +527.722,85.00285 +528.122,85.01823 +528.722,85.017 +529.322,85.02019 +529.922,85.00302 +530.522,85.00717 +531.322,85.02765 +531.922,85.01804 +532.522,85.0068 +533.122,85.01563 +533.722,85.01532 +534.322,85.00603 +534.922,85.01931 +535.522,85.0116 +536.122,85.00475 +536.722,85.00311 +537.322,85.00648 +537.922,85.02018 +538.522,85.01205 +539.322,85.00426 +539.922,85.00703 +540.522,85.00989 +541.122,85.00601 +541.722,85.01461 +542.122,85.01421 +542.722,85.01793 +543.122,85.01257 +543.722,85.01735 +544.122,85.0162 +544.722,85.0185 +545.122,85.01842 +545.722,85.01168 +546.122,85.01631 +546.722,85.01299 +547.122,85.01373 +547.722,85.01036 +548.122,85.0203 +548.722,85.01293 +549.322,85.00724 +549.922,85.00152 +550.522,85.01022 +551.122,85.01187 +551.722,85.0181 +552.122,85.01841 +552.722,85.00806 +553.122,85.01317 +553.722,85.01174 +554.122,85.02167 +554.722,85.01412 +555.322,85.01959 +555.922,85.00933 +556.522,85.00853 +557.122,85.0124 +557.722,85.01816 +558.122,85.01591 +558.722,85.0312 +559.122,85.01984 +559.722,85.01675 +560.322,85.01736 +560.922,85.01343 +561.522,85.00703 +562.322,85.01409 +562.922,85.01585 +563.522,85.01561 +564.322,85.02779 +564.922,85.0201 +565.522,85.02214 +566.122,85.02229 +566.722,85.01951 +567.122,85.02447 +567.722,85.01688 +568.122,85.01669 +568.722,85.02172 +569.322,85.02665 +569.922,85.01649 +570.522,85.02892 +571.122,85.02411 +571.722,85.02184 +572.322,85.01881 +572.922,85.02567 +573.522,85.01686 +574.122,85.02012 +574.722,85.02714 +575.322,85.02676 +575.922,85.0358 +576.522,85.02814 +577.322,85.02171 +577.922,85.04481 +578.522,85.01951 +579.322,85.02187 +579.922,85.02068 +580.322,85.0204 +580.922,85.02107 +581.522,85.01679 +581.922,85.02738 +582.322,85.02124 +582.922,85.01735 +583.522,85.0186 +583.922,85.01519 +584.522,85.0181 +585.122,85.01435 +585.722,85.03066 +586.122,85.01779 +586.722,85.01468 +587.322,85.01712 +587.922,85.02945 +588.322,85.00913 +588.922,85.02077 +589.522,85.01595 +589.922,85.00258 +590.522,85.00661 +591.122,85.00999 +591.722,85.00564 +592.122,85.0065 +592.722,85.01099 +593.122,84.99982 +593.722,85.00898 +594.122,85.00894 +594.722,84.97915 +595.322,84.98774 +595.922,84.98829 +596.322,84.99821 +596.922,85.00767 +597.322,84.99135 +597.722,85.0108 +598.322,84.98971 +598.922,85.02428 +599.522,85.00748 +600.122,85.00946 +600.722,84.99801 +601.122,85.00531 +601.722,85.01341 +602.122,85.00552 +602.722,84.99799 +603.122,85.01701 +603.722,85.01639 +604.322,85.00758 +604.922,85.01573 +605.522,85.00907 +606.122,85.00654 +606.722,85.01319 +607.122,85.01321 +607.722,85.01975 +608.122,85.01757 +608.722,85.0215 +609.322,85.02105 +609.922,85.01694 +610.522,85.03117 +611.122,85.03584 +611.722,85.02659 +612.122,85.03279 +612.722,85.00655 +613.122,85.02161 +613.722,85.02599 +614.322,85.02075 +614.922,85.03016 +615.522,85.02338 +616.122,85.01964 +616.722,85.02282 +617.322,85.02648 +617.922,85.02665 +618.522,85.01488 +619.322,85.02424 +619.922,85.02226 +620.522,85.02023 +621.122,85.01374 +621.722,85.0096 +622.322,85.02154 +622.922,85.01375 +623.522,85.0171 +624.122,85.0284 +624.722,85.01534 +625.322,85.00761 +625.922,85.02373 +626.522,85.02818 +627.322,85.01402 +627.922,85.01237 +628.522,85.02038 +629.122,85.02285 +629.722,85.02228 +630.322,85.02234 +630.922,85.01578 +631.522,85.01083 +632.122,85.0145 +632.722,85.01022 +633.322,85.00889 +633.922,85.00724 +634.522,85.02727 +635.322,85.01577 +635.922,85.02057 +636.522,85.0234 +637.322,85.0238 +637.922,85.00823 +638.522,85.01588 +639.122,85.024 +639.722,85.02084 +640.122,85.02493 +640.722,85.01917 +641.122,85.03593 +641.722,85.02663 +642.322,85.03232 +643.122,85.03127 +643.722,85.0243 +644.522,85.03542 +645.122,85.02826 +645.722,85.03658 +646.322,85.03945 +646.922,85.03516 +647.522,85.04234 +648.322,85.04433 +648.922,85.03227 +649.522,85.05293 +650.322,85.04131 +650.922,85.03656 +651.522,85.05397 +652.122,85.04293 +652.722,85.05753 +653.322,85.04322 +653.922,85.04423 +654.522,85.04348 +655.122,85.03989 +655.722,85.04783 +656.122,85.02934 +656.722,85.03864 +657.122,85.04591 +657.722,85.02915 +658.122,85.05667 +658.722,85.0534 +659.122,85.04105 +659.722,85.04693 +660.122,85.06192 +660.722,85.04108 +661.322,85.04604 +661.922,85.03384 +662.522,85.04395 +663.122,85.05264 +663.722,85.04142 +664.322,85.0466 +664.922,85.04241 +665.522,85.04411 +666.122,85.06313 +666.722,85.05498 +667.322,85.04539 +667.922,85.051 +668.522,85.05316 +669.122,85.04996 +669.722,85.04173 +670.322,85.04616 +670.922,85.03716 +671.522,85.03482 +672.322,85.03334 +672.922,85.04144 +673.522,85.04533 +674.322,85.0452 +674.922,85.02493 +675.522,85.0442 +676.122,85.03873 +676.722,85.0556 +677.322,85.04769 +677.922,85.02871 +678.522,85.03347 +679.122,85.03834 +679.722,85.03757 +680.322,85.04218 +680.922,85.05589 +681.522,85.03445 +682.322,85.04588 +682.922,85.02106 +683.522,85.04597 +684.322,85.05206 +684.922,85.04536 +685.522,85.04448 +686.122,85.04731 +686.722,85.04718 +687.322,85.03884 +687.922,85.05418 +688.522,85.06433 +689.122,85.04767 +689.722,85.0435 +690.122,85.06426 +690.722,85.0543 +691.122,85.04229 +691.722,85.03916 +692.122,85.04845 +692.722,85.04211 +693.322,85.0434 +693.922,85.047 diff --git a/src/pyvale/data/valid/SamplingResultsOnlyPointSensors.csv b/src/pyvale/data/valid/SamplingResultsOnlyPointSensors.csv new file mode 100755 index 000000000..963a0490a --- /dev/null +++ b/src/pyvale/data/valid/SamplingResultsOnlyPointSensors.csv @@ -0,0 +1,5001 @@ +"Temperature (degC), TC1","Temperature (degC), TC2","Temperature (degC), TC3","Temperature (degC), TC4","Temperature (degC), TC5","Temperature (degC), TC6","Temperature (degC), TC7","Temperature (degC), TC8","Temperature (degC), TC9","Temperature (degC), TC10",V_coil_rms (V) +388.2819145,210.3595581,298.9306994,199.0876623,170.7621448,314.1553744,363.0622069,183.2882427,260.7667953,190.866173,76.69362106 +387.2513659,211.4238955,299.1120532,203.8907602,172.2896104,328.6328478,370.2580004,184.3608017,263.8817573,193.3206754,76.61352058 +399.3586564,215.5840149,309.0816946,208.218737,175.0748771,345.9910479,394.9692635,188.483679,276.6691405,198.4162714,76.44981461 +371.0373361,205.8655809,289.0970062,196.4636975,170.1768238,310.1980417,358.4484753,182.1465823,257.3153183,189.7421857,76.77607159 +382.4023631,208.4861679,292.5647665,198.5221206,169.1349696,306.6014207,343.4783729,180.1621179,250.7188464,187.6605673,76.78804065 +362.6141013,205.271048,283.7995058,202.1464355,171.3691336,325.9914166,356.3613334,181.8215819,255.5309739,191.2917323,76.73770823 +393.268908,211.1905384,302.0510805,198.1041288,170.5019967,310.8124161,364.4832007,183.5466409,261.8844255,190.586568,76.69393843 +384.2674802,210.9331366,297.6836956,204.5086375,172.6395839,331.7703845,371.8875553,184.6072577,264.5051154,193.8800432,76.6062676 +400.8561796,213.2800635,305.9544182,199.6920006,170.762808,313.0705172,364.5655411,183.7870312,262.3873962,190.9975289,76.65860857 +386.3085761,210.3796316,298.1048797,200.7273059,171.2967708,319.2832967,365.406867,183.5529255,261.5604614,191.7055807,76.67109544 +374.891981,208.5769072,292.6244709,203.3326872,172.6392209,331.7503218,371.5665409,184.4206023,263.7838685,193.8392787,76.64256213 +385.6395999,210.441093,296.2494956,202.3840398,170.9029598,320.0308371,356.7329649,182.356351,257.4124261,190.7712424,76.68534192 +383.6226054,208.9412824,295.4850605,198.1675215,170.0076862,310.1130063,356.1599276,182.0305632,256.9924903,189.4592381,76.74257739 +395.8080364,213.3142907,304.9583047,203.2626183,172.5692957,327.63824,377.5127022,185.5878808,268.0294897,194.0795444,76.57705829 +382.5771186,209.7192102,295.5036595,201.707515,171.2922716,321.4950122,362.063121,183.1048066,259.8512582,191.5472351,76.67731427 +364.3696196,204.4648623,285.5342973,196.630519,170.4403691,312.9634147,359.289847,182.1822185,257.2980962,190.1258502,76.78386217 +368.9556951,205.0784542,285.1872786,196.6342031,168.8641952,304.6666684,341.2466187,179.5799697,248.8575075,187.12243,76.84123101 +395.605779,213.1456183,304.3168182,202.9401388,172.3061261,325.8251893,374.283944,185.1574246,266.511295,193.5733408,76.59339559 +381.546482,209.2393922,295.8094794,200.2704425,171.3802902,319.9362827,366.8495175,183.6295225,261.9197575,191.8580413,76.68003644 +374.783111,208.2017418,291.0920919,202.7166745,171.5656557,325.7082692,361.2995462,182.7468716,258.703916,191.8391337,76.68531537 +394.064982,212.1729477,302.1736847,201.2000774,171.2044739,318.543391,365.03979,183.7013534,261.993213,191.6007534,76.65055475 +374.488923,207.1721699,288.7933947,199.8115157,169.8028473,312.9204443,346.2338122,180.6118811,251.7535299,188.7186725,76.77685454 +366.8413059,205.226767,286.2924996,197.90199,170.2781755,313.7151705,355.5699681,181.5651295,255.4121003,189.7209065,76.77875794 +380.908626,207.3475818,293.1346492,194.7114628,168.9157744,300.2688157,349.2951252,181.0116497,253.7530681,187.6139918,76.81150154 +408.2310483,217.0081543,312.95729,206.3331457,173.788863,335.5930655,387.0811735,187.3889803,273.4965356,196.2906909,76.48301548 +369.8844402,207.2511996,289.5365107,202.6386079,172.4298138,330.8664095,369.390925,183.8987684,262.2410149,193.4049327,76.66672308 +386.8923967,210.3364824,298.1724008,200.1945529,171.0376426,317.251602,363.5973703,183.3229611,260.8189179,191.2662878,76.68182698 +378.8253124,207.2908505,291.9975136,196.2362372,169.2089744,304.1583562,349.618906,180.9431196,253.5723251,188.0180383,76.79781371 +394.6645518,212.6197067,302.8098102,202.2344483,171.6193635,321.932246,367.6122832,184.1550323,263.3057569,192.307795,76.62637691 +397.9887749,214.8039473,305.5994848,207.5907014,173.3432431,336.9034532,376.2196392,185.645977,267.5434892,195.1449765,76.53032267 +398.1057952,213.9508435,305.7535355,203.9795071,172.4943139,327.9206026,375.137443,185.3352258,267.0676737,193.8833149,76.57238411 +359.1983454,202.793035,280.8185379,195.5358696,169.1985653,306.3912444,345.9923341,180.0526978,250.5293846,187.751217,76.85442924 +379.5194314,209.0584253,292.9946756,202.2128123,171.0718257,321.4387322,357.2106926,182.2292063,257.0306981,190.9948399,76.69942439 +366.6340973,205.2132273,285.1411818,198.5846763,169.9710998,313.3056797,349.5726052,180.7777485,252.6093762,189.0331596,76.79220501 +386.7395712,210.5820721,298.8455622,200.8715803,171.6306899,321.155543,368.9561429,184.1727501,263.4462092,192.3459283,76.65325433 +377.1611688,208.9215145,292.945193,203.1822513,171.9602119,327.7062679,365.3007938,183.3939294,260.7562554,192.5838303,76.66146741 +367.9881516,204.8454839,286.0526939,195.768616,169.4097512,306.2358405,349.4910327,180.7924363,252.8397681,188.2560012,76.82158207 +375.099331,208.3071873,291.4148134,202.7226365,171.7277393,326.3054019,362.5187016,183.0203431,259.4028389,192.1418106,76.68158493 +385.6402769,210.7559793,297.8099477,202.7658857,171.9031084,325.5473365,367.2182685,183.9435399,262.4468706,192.6515907,76.64006065 +368.5241741,206.9148032,289.5026931,202.1393373,172.7351079,331.7832766,374.24917,184.5334069,264.4475455,194.0345004,76.65783365 +375.3831025,208.8867437,293.6718496,203.8071708,173.2131294,335.1312378,377.6513024,185.2350567,266.5600572,194.8934795,76.61325921 +391.2495482,211.9946534,302.672033,201.8701719,172.4239513,325.5234073,377.9683798,185.5254749,267.9531214,193.8726185,76.6022032 +393.3758292,211.9371834,301.9890789,200.7472673,171.2000679,317.8965862,365.8198492,183.8454148,262.4433851,191.6318732,76.65315992 +378.6963291,208.6771419,292.6727312,201.3634442,170.8951786,319.7357507,357.3550169,182.2192932,257.1242338,190.7409496,76.70805789 +371.5200431,206.2211657,290.1648755,197.0746432,170.7460834,313.8437448,364.2976191,183.0272895,260.1617892,190.8082527,76.74697975 +374.1326887,208.0953537,290.4508216,203.0664714,171.4696969,325.8603144,359.1227824,182.5383289,257.8360172,191.6279051,76.6907261 +375.1758546,207.6203423,292.3086791,199.3051178,171.3890824,319.7006676,366.7367204,183.5793898,261.5828561,191.853133,76.70311311 +377.0603092,207.2787053,291.9226046,197.1493399,169.9959507,309.535233,355.9456229,181.9741489,256.6420303,189.4144671,76.76339114 +375.7795921,207.9616727,292.4011162,200.3273601,171.4565488,321.3586019,365.5569111,183.3480518,260.8707206,191.8813636,76.69524622 +373.3504733,207.1239241,290.2212378,199.5931996,170.8310216,317.7198169,359.3432299,182.3707936,257.7620738,190.7118226,76.7308536 +406.5342497,214.9877448,309.2782676,201.3339216,171.2050765,316.7921286,367.3300343,184.348165,264.0609481,191.7707029,76.61763861 +387.1325467,210.442194,298.3474425,200.3818987,171.1041736,317.8575434,363.9948338,183.4201154,261.0817517,191.3824965,76.6767713 +408.959635,216.3151272,312.6886147,203.3135529,172.6343744,325.7099347,380.9041737,186.4687825,270.806615,194.3984917,76.53843705 +386.1355107,209.5079763,296.1045133,198.5850476,169.7802463,309.2523712,352.3447028,181.5780975,255.3612667,188.9840036,76.74497433 +400.2788678,213.3517846,305.1071354,200.7331619,170.7397969,314.5699158,361.9572832,183.3226711,260.8812035,190.8401741,76.65978083 +384.4373369,210.1766698,296.2935283,202.0359843,171.2280617,321.5075761,361.1885855,182.9326087,259.38886,191.4127488,76.67347871 +409.3203834,215.5975013,310.0252649,201.7765779,170.816746,315.0955798,362.6890547,183.6908042,261.970539,191.0257538,76.62660021 +373.1415918,206.3176288,289.2863593,196.9614667,169.7833091,308.8330599,352.7991985,181.3429085,254.6641382,188.9447205,76.78645844 +372.0757923,207.5787697,290.2897334,202.2415181,171.9423412,327.2328856,365.7492731,183.3627927,260.6685785,192.5572851,76.68034249 +375.0877917,206.608703,290.3651515,196.4894947,169.4761834,306.2571581,351.73709,181.1636182,254.3059691,188.4675081,76.7940045 +378.6498146,207.9035324,292.2313554,198.5411159,170.0020463,311.2796122,353.1951568,181.5762384,255.2780945,189.3007824,76.75529194 +381.8759199,209.4091088,295.5017435,200.8536064,171.3511918,320.5974588,364.449694,183.3568183,260.8226789,191.7205835,76.68059318 +371.4509606,206.1063901,288.4465116,197.5199492,169.9542692,310.8356023,353.0086859,181.4975726,254.9185528,189.2121203,76.78080346 +387.2140563,211.6227904,298.7231024,204.8717829,172.3990386,330.4706648,368.6412752,184.1583409,263.0309927,193.4103259,76.61083541 +394.6591806,213.1684961,301.2066734,205.2621389,171.4212669,324.9134154,358.8034815,182.829135,258.8127488,191.6320742,76.63204454 +376.7138691,209.0182962,293.9008518,203.307918,172.7448884,331.9787891,373.8935404,184.6002714,264.6948077,194.0591131,76.62926135 +392.5707044,212.8674364,302.1446988,204.7955931,172.5606457,330.1185401,371.8271812,184.8278717,265.1082917,193.8241192,76.58862879 +403.7347281,216.5710943,311.3665222,208.2284426,174.9229901,344.4250723,394.2345312,188.4155592,276.5328326,198.1823066,76.44490312 +386.0649187,210.9120472,297.0022669,203.6434469,171.4155565,324.2550588,360.4851989,182.8498092,259.0514256,191.646145,76.65738022 +380.2403796,208.7733856,293.1517181,200.5658878,170.496661,316.4203368,354.8246107,181.8383893,255.9950087,190.0720761,76.72430457 +383.8384562,209.9184672,295.9821611,201.4283011,171.2049988,320.3043069,361.2871818,182.9590488,259.3974152,191.3932352,76.68326938 +377.6962079,208.2531096,292.1941913,200.4482055,170.8056214,318.0293497,357.6434088,182.2237921,257.1710047,190.626569,76.72007847 +360.7133156,204.1464918,282.946769,198.9451633,170.8345166,319.0682478,356.7742719,181.7598354,255.6172534,190.5475705,76.77501891 +376.0337445,208.5763444,291.9322643,202.9782696,171.7646572,326.8680675,362.8145339,183.0498127,259.5478878,192.2029285,76.67439597 +414.3338501,218.5417172,316.4780626,206.9387126,173.7989121,335.3117226,387.6889557,187.6001944,274.2135409,196.366615,76.46478711 +387.4838454,210.8841824,297.6631952,202.310851,171.0809326,320.2247209,359.3830561,182.7096626,258.6652422,191.1438512,76.67427345 +399.2140924,214.1019456,305.8041043,203.8819639,172.1420137,325.9328905,371.5118109,184.7887015,265.3418484,193.2295897,76.58632185 +411.141852,217.0702007,313.6292234,204.5056536,172.7462386,327.5896254,379.9689337,186.3705987,270.4029938,194.5233826,76.52467959 +370.085796,207.1063338,288.3139064,202.5825917,171.5820418,326.4187011,359.894943,182.4994599,257.7397307,191.7871382,76.7028483 +403.9124002,215.2614893,308.8556898,204.0925976,172.4092902,326.8729321,375.0334037,185.4929267,267.5164169,193.7949399,76.5586846 +385.0777861,210.2159486,296.9978397,201.4585391,171.2451377,320.6085089,363.0064129,183.2468351,260.4423612,191.526937,76.67071047 +386.4871566,210.1181836,298.9922164,199.2166509,171.2155856,316.7210684,368.9938814,184.0303394,263.3901201,191.7513154,76.67734739 +406.498545,216.4192056,311.4788317,205.7584949,173.3502941,332.9317417,383.0697957,186.700482,271.376929,195.4846591,76.50957138 +395.488496,213.8248914,305.0205667,205.4021847,173.1108841,333.1419525,379.1935372,185.7880069,268.5787258,194.9068331,76.55135003 +356.1223756,202.6241455,279.5808714,197.3677231,169.9406933,313.2726722,349.366815,180.603067,251.9920763,188.9486042,76.8281847 +387.4867814,212.4282538,300.5062107,207.1959432,173.8840923,341.1697732,380.5819276,185.9917304,268.723483,196.0255318,76.5385985 +416.2501691,219.4097882,317.7025931,208.7482847,174.3503394,340.4726221,390.288005,188.1292004,275.6940585,197.265184,76.42505764 +375.4122029,207.4801286,291.6421878,198.9731642,170.8814076,316.7974406,361.3826062,182.7668195,258.9863916,190.8968993,76.72576897 +394.2054879,212.5511972,303.7495759,201.802206,172.072288,323.3734074,374.5416774,185.1033085,266.5680554,193.2428883,76.60850292 +395.2453514,213.1899245,303.2259649,203.9705605,171.9483876,325.7211433,368.4548464,184.2037942,263.5073509,192.7958135,76.60617864 +383.0186105,209.7469325,296.4075509,201.0762131,171.3642776,320.7214502,365.4354767,183.4070969,261.2163286,191.7744507,76.67544504 +360.4294164,204.0178268,283.2940361,198.3773829,170.9876378,319.0371755,359.8613307,182.2320779,257.1599516,190.9072923,76.77117847 +377.6159516,207.7131875,292.9384968,198.0450961,170.565967,313.5371586,361.171093,182.7134626,259.0665477,190.4463419,76.73353291 +374.8417154,207.8388263,290.9293861,201.2332744,171.1438657,321.4188708,359.4341653,182.5041285,257.9544847,191.1743144,76.70859837 +425.8541402,219.2818973,320.9800037,201.1946868,171.3196914,314.3200749,373.665287,185.7369305,268.6669489,192.3194696,76.56594439 +385.5912654,210.1739453,297.5918158,200.5721422,171.2583847,319.0648532,364.8532821,183.437197,261.1830388,191.6231397,76.6770404 +388.842505,212.0121441,299.6893396,204.986241,172.3815363,330.4083233,368.9674697,184.2757027,263.4106409,193.4100336,76.60288405 +363.7508535,205.3261669,283.8398048,201.584926,170.8780417,322.6224371,352.3587246,181.2253828,253.6898408,190.4245208,76.7558135 +357.3265699,202.7482989,280.1386655,196.8308098,169.738272,311.2875802,348.8600405,180.4128819,251.6186652,188.6201929,76.83326066 +407.1287222,216.317185,311.4081883,205.0610398,172.9348597,329.9223446,380.0886399,186.2903747,270.1041275,194.7702598,76.52530464 +406.4087571,216.1702172,311.1759882,203.9137466,173.3163637,326.706354,378.900337,186.9146021,269.956257,194.9914236,78.57889475 +405.2688868,217.3348973,311.3628461,209.1409119,174.9909151,342.1352397,386.5570759,188.0887789,273.2863099,197.6656723,78.49678689 +418.1690778,221.8765478,322.0137363,213.8715873,178.0143003,360.6247604,412.8952907,192.5586284,286.9910978,203.1820136,78.3301579 +388.1277301,211.3099971,300.6848766,201.0305718,172.6607347,322.4387152,373.9355153,185.6626467,266.2448603,193.7465254,78.66386487 +399.7858663,214.0568706,304.2033383,203.2345453,171.5179133,318.4750968,357.8507702,183.4841008,259.1023614,191.4628722,78.67361637 +378.8970806,210.6701308,294.8994052,207.1866122,173.9464578,339.1237824,371.7293954,185.3064079,264.3244803,195.4023167,78.62346887 +411.8018879,217.042149,314.5338936,202.8493374,173.0511508,323.2063919,380.3366523,187.1875611,271.0945924,194.7122659,78.57922326 +402.1338197,216.8394188,309.8592084,209.8215564,175.3698075,345.4662691,388.3633712,188.3659696,273.9917646,198.2734042,78.48927209 +419.5853282,219.2593981,318.5767675,204.5480985,173.3152295,325.528827,380.4205924,187.4345163,271.6329183,195.1241376,78.54291303 +404.1266381,216.1407335,310.2040828,205.6609247,173.8878058,332.1115549,381.290193,187.1798766,270.7464001,195.8764331,78.55618757 +392.1895846,214.3263244,304.4569976,208.545922,175.3558275,345.3975262,388.1090622,188.1673147,273.2653729,198.2157987,78.52662001 +403.4314853,216.2562029,308.2518256,207.483848,173.4727231,332.9077962,372.170755,185.9083347,266.3628746,194.8884655,78.56891555 +401.3908524,214.5822485,307.4525275,202.8838356,172.498701,322.35793,371.4154853,185.5342041,265.8388728,193.4647909,78.62858976 +414.4633382,219.371612,317.6399471,208.4865068,175.3084418,341.162411,394.2435313,189.4163625,277.7015431,198.5072081,78.46006802 +400.375281,215.5334421,307.5482642,206.7835616,173.9040709,334.529588,377.9463004,186.740321,269.0316117,195.7491838,78.56126845 +381.2774189,209.8841414,297.0005114,201.2651528,172.9620162,325.4615015,374.9790796,185.7354694,266.3088143,194.1946651,78.67154796 +385.6063447,210.4191325,296.367319,201.1913411,171.2124604,316.4132312,355.5450229,182.8560893,257.1537678,190.8704726,78.72820731 +414.0672807,219.1636118,316.8734139,208.1024156,175.0003598,339.1443349,390.8131364,188.9359659,276.0799468,197.9253004,78.47669521 +399.3206835,214.964612,307.8737694,205.204001,173.9980519,332.8885095,382.8821189,187.287088,271.1649254,196.0767373,78.56543521 +392.0790279,213.8781081,302.8265017,207.8632486,174.1989809,338.9802599,377.0419738,186.3452393,267.7597314,196.0569255,78.56978936 +412.5243514,218.1248509,314.6343399,206.2238094,173.8124691,331.407897,380.9964227,187.3705191,271.2602883,195.8069922,78.53451726 +391.5085367,212.7284948,300.2376143,204.6736518,172.2522681,325.2417685,361.006269,184.0016635,260.3131632,192.6319082,78.66185209 +383.6194598,210.6061364,297.6637928,202.5935648,172.7775951,326.1529772,370.813118,185.033078,264.1768865,193.729365,78.66625834 +398.5172589,212.8715608,304.939398,199.1042635,171.2825249,311.8106643,364.1430303,184.4185669,262.4050323,191.4300948,78.69905885 +427.3802379,223.2997069,326.0328419,211.7882463,176.6187789,349.5698716,404.3463033,191.3389707,283.4950485,200.8713225,78.36415533 +386.9954806,212.9073208,301.2224303,207.8093705,175.1340605,344.4864395,385.7549547,187.6083571,271.6055132,197.754643,78.55171325 +404.8422374,216.1254477,310.3265159,205.102623,173.612864,329.9784395,379.4290147,186.9448207,269.9890951,195.4157931,78.56682099 +396.1514794,212.7621823,303.6548374,200.740953,171.6023633,315.9182831,364.3888344,184.3296927,262.1524459,191.8601559,78.68495966 +413.2213692,218.6452653,315.350573,207.3701167,174.2706177,335.0450173,383.813187,187.8781956,272.7078464,196.5873348,78.50958947 +416.3762752,220.9395205,318.1450401,213.1150328,176.122129,350.8552193,392.8799417,189.4607897,277.1763315,199.6141475,78.41117887 +416.8080262,220.0541645,318.4527086,209.2544739,175.2220568,341.4282145,391.747846,189.1439773,276.6887486,198.287927,78.45483741 +375.6646419,208.0464658,291.9057368,200.0515042,171.6027055,318.3891111,360.7458166,183.4113567,259.0243843,191.6057318,78.74246362 +396.7050625,214.690728,304.6535664,207.2410026,173.6255081,334.2943006,372.5140909,185.7302646,265.8716892,195.0743899,78.58421631 +383.2975856,210.607035,296.3997421,203.3376378,172.4351575,325.6797244,364.484976,184.1806288,261.2056125,192.9725428,78.67896354 +404.8668587,216.4592805,311.1415948,205.8838426,174.2718115,334.2075331,385.2486156,187.892717,272.8654024,196.6140496,78.53767281 +394.4672015,214.6155216,304.7325435,208.3398077,174.6149147,341.0694735,381.2446157,187.0270728,269.9229481,196.8390128,78.545893 +384.8708343,210.2300796,297.4295835,200.2872994,171.8229359,318.190117,364.4521385,184.2023749,261.4889559,192.1355164,78.7093958 +392.2379811,213.9674515,303.0825936,207.8417693,174.3540021,339.5445587,378.3459222,186.6233563,268.5045729,196.3516536,78.56612257 +403.6116557,216.6517822,310.0035886,207.9386577,174.5686629,338.8437682,383.4263277,187.6503347,271.8092567,196.9456959,78.52367893 +385.7036968,212.5668533,301.2596232,207.2878596,175.4739261,345.5309365,390.9225855,188.3027278,273.9702418,198.4498234,78.54303069 +392.785632,214.6537572,305.6123264,209.0657913,175.9832576,349.0383141,394.4991085,189.0451839,276.1993079,199.3586627,78.49742688 +409.597212,217.9271671,315.1768173,206.9509802,175.1364299,338.8761158,394.6803934,189.3321688,277.5933683,198.2603689,78.48641371 +411.8703444,217.9007439,314.4747897,205.7452476,173.8087576,330.7422732,381.8920745,187.5355074,271.7767833,195.8466263,78.53706458 +396.1168911,214.3484668,304.4543259,206.3709212,173.4594948,332.5862853,372.7862681,185.7556528,266.0389245,194.8484857,78.59293081 +388.9485459,211.7667655,301.9774905,201.7546824,173.308242,326.4511495,380.2387635,186.6486898,269.3326404,194.9503115,78.63419988 +391.4024677,213.8013249,302.1540795,208.2556656,174.0977601,339.1433126,374.8404844,186.1316353,266.8803342,195.8380902,78.57448745 +392.7234581,213.3022177,304.228103,204.1946328,174.0056809,332.6650184,382.9390386,187.2603066,270.9080226,196.0816125,78.58896653 +394.6579845,212.8898584,303.7760039,201.8203785,172.4846929,321.8016699,371.3832967,185.504352,265.5813907,193.4281777,78.64981636 +393.1375652,213.5939858,304.2135138,205.2565918,174.0672313,334.3546336,381.5353944,186.9805965,270.0632862,196.0831656,78.58111449 +390.5485814,212.6883645,301.8829887,204.4541764,173.3860707,330.4628937,374.926268,185.9218681,266.7392165,194.8157086,78.61694649 +425.6454441,221.1227978,322.1478368,206.360354,173.8116568,329.538506,383.4106928,188.0588326,273.447213,195.986641,78.50074048 +405.1959065,216.2764874,310.565992,205.3304411,173.6942793,330.6616157,379.9218198,187.0663971,270.308312,195.5597084,78.56139287 +428.2974355,222.578007,325.8148092,208.5312426,175.3714657,339.0963327,397.8502037,190.3547175,280.6558105,198.8401208,78.42041586 +404.0219238,215.2136472,308.1115775,203.3445016,172.2467167,321.4285133,367.4102802,185.0509261,264.1289816,192.9451483,78.63039723 +418.769367,219.2768203,317.5754525,205.6464042,173.2833443,327.060955,377.528509,186.9113586,269.957831,194.9344329,78.54398615 +402.3530045,216.0068277,308.3954928,207.1402162,173.8407327,334.550267,376.9386102,186.5514255,268.5017166,195.6094237,78.55752897 +428.4635111,221.7387875,322.8797381,206.8174867,173.3881919,327.7031119,378.4137562,187.3347545,271.1721315,195.1721084,78.50912452 +390.1969654,211.7628239,300.8105576,201.5551643,172.226127,320.9236561,367.8647162,184.7799441,263.3782154,192.8678393,78.6738507 +389.1778426,213.20266,301.9528581,207.3379382,174.5962937,340.5867846,381.7874407,187.005012,269.8675067,196.8173506,78.56540724 +392.1756692,212.0210148,301.9058863,201.0081729,171.8914923,318.1532765,366.6357371,184.5658131,262.9317558,192.3435685,78.68137532 +396.0727046,213.4978636,303.9772514,203.2924007,172.4781359,323.5719029,368.3470712,185.0478049,264.0599122,193.2750841,78.6411889 +399.5612261,215.1518975,307.503844,205.8302867,173.9554623,333.5446783,380.3743674,186.9914805,270.017412,195.9126939,78.56563072 +388.6972125,211.6593469,300.0641469,202.2368192,172.4388152,323.1744218,368.3528754,184.9995274,263.7841917,193.212667,78.66695732 +404.9784427,217.4961908,310.8235277,210.1589895,175.0872145,343.9837778,384.7559535,187.8422511,272.3290057,197.7218817,78.49403489 +412.7341289,219.1149287,313.4070828,210.5598283,174.0296627,338.0450816,374.2093465,186.3909843,267.7651212,195.7971132,78.51422304 +394.1559664,214.7499665,305.8239845,208.5112371,175.4766927,345.6718142,390.3825243,188.3447664,274.1448417,198.4525546,78.5140507 +410.6741025,218.8580946,314.4816298,210.0902326,175.2647223,343.6317729,388.2270806,188.5742396,274.588799,198.1767506,78.47107822 +422.6106598,222.8552977,324.3400545,213.8405334,177.8388309,358.9243949,411.9573123,192.4499933,286.7516306,202.9017152,78.32561206 +403.8797481,216.7437739,309.0488662,208.8440474,174.0356867,337.4115425,376.0863881,186.439419,268.0781673,195.8397941,78.54081756 +397.701143,214.4260046,304.9351155,205.491843,173.0210744,329.030788,370.0409111,185.3324059,264.8049137,194.1141707,78.60952472 +401.392601,215.647979,307.894689,206.4161349,173.7771346,333.1406441,376.9364683,186.5353349,268.4505057,195.5222325,78.56805717 +394.9019742,213.845823,303.86197,205.3445348,173.3406049,330.7040969,373.0213716,185.7354505,266.0533769,194.6882535,78.6057975 +377.0102588,209.4717571,294.0534208,203.732144,173.3650334,331.8080781,372.2045913,185.2473073,264.4523464,194.6029152,78.66247027 +393.3585699,214.2844423,303.7015322,208.1453756,174.4087161,340.1916436,378.6783665,186.67154,268.675139,196.44213,78.55875912 +433.6282862,224.8673372,329.6544333,212.3999519,176.6219266,349.2291161,404.8606975,191.5332343,284.1709668,200.9309379,78.34548607 +405.1605133,216.6470994,309.6363879,207.3502652,173.6440881,333.0422851,374.8223793,186.2516287,267.6136802,195.2472855,78.55837408 +417.873683,220.1782763,318.4499649,209.1259055,174.834731,339.2747393,387.8311044,188.5398649,274.8079546,197.5691681,78.46893057 +430.4613597,223.3523788,326.7459081,209.8017811,175.4895886,341.0613415,396.8022346,190.2372023,280.1914691,198.964785,78.4061604 +386.9662801,212.6829812,299.7954087,207.6948487,174.1971832,339.6578582,375.5464262,186.0630556,266.7241186,195.97111,78.58784155 +423.0319944,221.4947155,321.7967203,209.4045067,175.1404254,340.349373,391.7113749,189.3308434,277.2075658,198.2134452,78.44042577 +403.1558392,216.0847332,309.2076284,206.5370511,173.8673492,333.6493957,378.9465524,186.9052618,269.6665208,195.750046,78.55462109 +404.5164752,215.8680638,311.2259657,204.0402976,173.8168661,329.4606924,385.0869911,187.7010631,272.6841953,195.9539757,78.56304581 +425.4193163,222.6173111,324.3901072,211.1330609,176.134909,346.6953675,400.0056444,190.5762387,281.184391,199.9820106,78.39134289 +413.7653917,219.8140956,317.5043574,210.7321749,175.876693,346.8947859,395.8412734,189.5885712,278.1739232,199.3571051,78.43409796 +372.3567317,207.8930864,290.5645895,202.0561535,172.4108155,325.7114401,364.4394806,184.0187386,260.6298133,192.906944,78.71550698 +405.4631549,218.4343346,312.8218212,212.7235998,176.7156339,355.4306582,397.5449065,189.8546645,278.4698534,200.5819604,78.4206795 +435.997558,225.9332124,331.1527806,214.4461351,177.2520637,354.8315612,407.8463408,192.167999,285.8905377,201.9664091,78.30395565 +392.8526878,213.1137748,303.457225,203.8101029,173.4460129,329.5220239,377.1845354,186.3670403,268.0997933,195.0307695,78.61190355 +412.7625692,218.5416777,316.3476661,206.8903611,174.7614691,336.6046854,391.0815752,188.8863856,276.1372399,197.5921816,78.49229494 +413.5941168,219.1684848,315.6616422,209.1994253,174.620249,339.012911,384.5198965,187.8966972,272.8134823,197.0892342,78.48911747 +400.6516571,215.4401485,308.3858798,206.0354697,173.9703052,333.6447134,381.2579044,187.0196793,270.3410611,195.9614125,78.56072776 +376.8703294,209.3778838,294.5029331,203.1449528,173.5419749,331.8391734,375.5818515,185.7788591,266.153056,195.0151584,78.6586969 +395.3145148,213.3605116,304.8936665,202.8069908,173.115679,326.1038229,376.9099958,186.3092928,268.1569653,194.5605153,78.61982579 +392.1160898,213.4855544,302.6399111,206.2485621,173.7317528,334.40348,375.0909338,186.0777764,266.9748738,195.3264606,78.59355538 +445.871085,225.6266955,334.4426292,206.1703471,173.9328015,326.8874869,389.9829292,189.5120609,278.2356256,196.5641497,78.44810531 +403.319988,215.9054052,309.6322229,205.486489,173.841064,331.853401,380.6686932,187.0485269,270.3283493,195.7785221,78.56252801 +406.9000193,217.977006,311.9576396,210.3273999,175.0900683,343.9992821,385.2222871,188.0004621,272.7990437,197.7622528,78.48539544 +380.1403921,210.7337423,294.9622904,206.5864319,173.4174106,335.5464521,367.4552145,184.6633568,262.3514996,194.4708197,78.64160552 +373.6130807,207.9821539,291.1486669,201.4515196,172.1876642,323.5739386,363.7587326,183.7976635,260.1686873,192.5407199,78.72129398 +426.229707,222.5537691,324.3960345,210.406024,175.6959112,343.5441545,396.9365537,190.1558879,279.8810443,199.2342472,78.40682385 +440.8247222,227.2939746,334.3764841,213.4108374,178.7282568,351.1102413,410.6462135,194.2282814,288.1647981,203.2129144,85.87178721 +439.6610048,228.5707565,334.719563,219.259761,180.6952783,368.5858637,419.1506453,195.555469,291.8476386,206.3305114,85.77972677 +454.2477229,233.6327679,346.8422969,224.4478601,184.1801931,389.1703165,448.8909331,200.6141895,307.2397378,212.6788725,85.59684386 +420.449591,221.8918624,322.6093476,210.290082,177.9945584,346.445772,404.9334835,192.810038,283.9683745,201.7962132,85.96349481 +432.8879387,224.9033805,326.3505288,212.682059,176.6277611,341.7060322,386.8587933,190.3495534,275.952062,199.1041614,85.97430213 +409.8095979,221.0307394,316.0885128,217.1628496,179.5037791,365.242971,402.4943764,192.3757144,281.6764775,203.6994002,85.91656362 +447.0887678,228.3523808,338.1108701,212.2249456,178.4144752,347.1955915,412.0326507,194.5030669,289.3828919,202.9066778,85.87130227 +436.0955241,227.9601941,333.0089011,219.9893385,181.1417182,372.2911921,421.2493039,195.8464663,292.5797973,207.0345843,85.77137695 +455.3683809,230.7542771,342.6364009,214.0772368,178.6937816,349.6814734,412.3142344,194.8417493,290.1155889,203.328265,85.83279638 +438.1988801,227.2696991,333.3758073,215.4151322,179.3952297,357.2824379,413.221011,194.5714116,289.118591,204.2271789,85.84540325 +424.8451016,225.0751935,326.8676048,218.5654621,181.1364294,372.1725088,421.1215809,195.5927359,291.7100782,206.9652838,85.81195689 +437.1549504,227.2744802,330.9872652,217.3469308,178.9214631,358.026392,403.027728,193.0584564,284.0026975,203.0978168,85.85949349 +435.3603067,225.6204414,330.2004143,212.3419659,177.7896497,346.2840957,402.056136,192.6711875,283.550254,201.4772568,85.92392 +450.1906529,230.925772,341.8170489,218.5364178,181.0529779,367.5097984,427.7088904,197.0553269,296.8260017,207.3070003,85.73995964 +433.9421227,226.4691213,330.2402549,216.5664849,179.4375326,359.9016883,409.5813002,193.9815363,286.9676583,204.1162228,85.85127587 +412.8996353,220.2259405,318.398303,210.5192864,178.3708781,349.8808242,406.1575423,192.8150156,283.8636693,202.3509524,85.97204441 +416.9873793,220.7938395,317.4920743,210.4334072,176.3012587,339.4597634,384.2707571,189.6077397,273.6753018,198.4415966,86.03348628 +449.3812628,230.6218654,340.9030634,218.0748151,180.6798715,365.1288768,424.0061023,196.5445808,295.0809282,206.5956051,85.7589435 +433.203764,226.0037117,330.7973849,214.9321198,179.5474349,358.2613189,414.9460326,194.6477907,289.490133,204.5060056,85.85499527 +424.9697082,224.7052693,325.0888845,217.8827767,179.7977142,365.0934296,408.4697593,193.5504308,285.5613758,204.4947687,85.85891971 +447.7494836,229.4950405,338.3049347,215.9819235,179.3037972,356.4003257,412.9903151,194.7408468,289.6179873,204.1667035,85.82297109 +423.5018616,223.2584843,321.7901095,214.2189308,177.5097197,349.3045399,390.5888203,190.8629759,277.1350105,200.477253,85.96108493 +415.6505731,221.179728,319.3197998,212.1169299,178.1475966,350.7329119,401.4094058,192.1075623,281.6607787,201.8085805,85.96412725 +431.8953271,223.6701007,327.235224,208.0802988,176.3567015,334.2684132,394.0510039,191.401704,279.709563,199.085219,86.00348447 +464.4069792,235.2943583,351.2991544,222.1751339,182.5407073,376.8313266,439.1626618,199.283506,303.4530317,209.9897741,85.63500464 +419.4169569,223.5859742,323.3415611,217.835195,180.8925593,371.3048347,418.41905,194.9534122,289.8411096,206.4598674,85.83963295 +439.0021305,227.2325382,333.4520937,214.7563516,179.0769987,354.8304714,411.1734197,194.2775692,288.2131026,203.70229,85.85774265 +429.1878075,223.5618118,325.8506373,209.9554423,176.7385966,338.9622774,394.1280555,191.3288158,279.442671,199.5924531,85.98583515 +448.5221168,230.0336118,339.1053613,217.2233221,179.8421497,360.4653551,416.2132032,195.2973421,291.1927951,205.0773373,85.7957526 +451.6294759,232.4893241,342.2866426,223.5760459,181.9765467,378.1739502,426.3448438,197.1310777,296.2525628,208.5277282,85.68557907 +452.5845028,231.6324604,342.6786606,219.3456456,180.944338,367.7108883,424.9988059,196.7546204,295.6992021,207.0379344,85.73478212 +406.4441945,218.1873864,312.5610882,209.1866846,176.7985894,341.8698242,390.113833,190.1737535,275.6436237,199.3699864,86.04884341 +429.6170719,225.5831487,327.0784821,217.1877105,179.091266,359.7048882,403.3533594,192.9237521,283.5985036,203.2808666,85.87497027 +414.8449058,221.0473647,317.7266928,212.8708578,177.7433894,350.0524088,394.3731358,191.1084723,278.2293975,200.9088955,85.97908777 +439.1991353,227.5801838,334.3913123,215.595397,179.8541328,359.5913719,417.7854703,195.3134416,291.3613638,205.1085993,85.82610717 +427.4785879,225.513947,327.2558635,218.4151945,180.2687461,367.4504447,413.1560038,194.3608186,288.070027,205.3705676,85.83255883 +416.6552063,220.642983,318.8237813,209.4426413,177.0251117,341.5702247,394.4444217,191.1238613,278.5707553,199.9395003,86.01396886 +424.7499734,224.7101086,325.2985111,217.8173588,179.9621702,365.618471,410.0224696,193.8785942,286.4270064,204.7922787,85.85529462 +437.7307013,227.7601878,333.1201698,217.8817982,180.2037275,364.7694525,415.8499179,195.0327188,290.1569358,205.4957889,85.81035572 +418.1132408,223.2167906,323.3940794,217.2575696,181.297191,372.5723573,424.0302266,195.719786,292.4337084,207.2794412,85.82968473 +425.7750262,225.5190348,328.3028348,219.2038306,181.8694,376.4293614,428.0873743,196.608155,295.0334965,208.2956263,85.77958305 +444.730146,229.3225016,339.0694224,216.8571765,180.8526739,364.9842072,428.1550522,196.9772144,296.7427753,207.0086421,85.76862422 +446.9447149,229.198587,338.0672729,215.404944,179.3019627,355.619833,414.0013779,194.9092036,290.1476609,204.2125105,85.82601388 +429.2773266,225.2328425,326.8535718,216.2038096,178.919671,357.8100323,403.7027793,192.9071717,283.6981062,203.0709202,85.88516572 +421.7965952,222.4273223,324.1038033,211.0797196,178.7627525,351.0430365,411.9553258,193.8601486,287.3033502,203.2286015,85.93102998 +423.9059548,224.4905391,324.1578336,218.2191392,179.682842,365.1260119,406.0601569,193.2522924,284.4304856,204.2377822,85.86438023 +425.7534499,224.0438843,326.6130743,213.7517474,179.5681199,357.9342257,415.2175171,194.5621399,289.0876965,204.5178403,85.88206942 +427.7416018,223.6102287,325.9702952,211.0817376,177.7883281,345.6271938,402.166348,192.5812412,283.1297883,201.441171,85.94916778 +426.1464766,224.4211789,326.682197,215.0014733,179.6332713,359.9103399,413.5195589,194.3057524,288.2531244,204.5044623,85.87231683 +423.1547118,223.3945705,323.9826922,214.0954885,178.8453785,355.4931826,406.0820573,193.0925255,284.4820862,203.0450844,85.91151248 +462.2245814,232.8334225,346.6657068,216.0726708,179.2705216,354.1679336,415.7364785,195.5334395,292.1232863,204.3378373,85.78696342 +439.4358492,227.3771823,333.6910677,214.9788144,179.177297,355.5771314,411.7618916,194.3882397,288.5106409,203.8809417,85.85209258 +465.3233957,234.4569767,350.8914308,218.4849,181.088152,364.9813449,431.8105615,198.1322905,300.1820022,207.6413768,85.69790046 +438.0260626,226.2419487,330.8397263,212.7895863,177.4871659,345.1264671,397.6485364,192.1114884,281.5947982,200.8553758,85.92752754 +454.3834429,230.7998379,341.5495901,215.3553229,178.6542491,351.4315424,409.0073252,194.2788756,288.2934893,203.1021033,85.83287229 +436.4425437,227.1021059,331.3133281,217.0304541,179.3627998,359.9975985,408.4376094,193.7875451,286.4362897,203.9673014,85.84717357 +465.0482304,233.4670653,347.3478059,216.5411991,178.7706969,352.0463689,409.9507458,194.7090283,289.5248082,203.3821439,85.7956167 +422.6187499,222.4065207,322.7292096,210.8874286,177.4798098,344.6788017,398.1671866,191.8307558,280.7987339,200.7673761,85.97433541 +421.6112043,223.9130786,324.1098291,217.301034,180.2592853,366.9246443,413.7936274,194.308159,287.9460498,205.3592196,85.85414292 +424.749532,222.7279986,323.921843,210.2756366,177.0859826,341.5552754,396.5677162,191.6070685,280.317839,200.1599024,85.98093042 +429.0300778,224.2705963,326.1923282,212.7435972,177.7704131,347.5947441,398.6744443,192.1068591,281.4869869,201.2380973,85.93879428 +433.1804855,226.1315444,330.3210708,215.588787,179.4899806,358.8955312,412.2703357,194.317408,288.2071907,204.2927829,85.8560197 +420.8626137,222.1322746,321.6790382,211.5104191,177.7511307,347.127204,398.8513221,191.9711795,281.0090451,201.2023018,85.96742829 +439.0942744,228.7218185,334.1240697,220.4050732,180.7898555,370.61614,417.1996883,195.3118007,290.8550727,206.3546227,85.7764399 +447.4456302,230.4915666,336.8353289,220.778793,179.5405857,363.7846671,405.197999,193.6476017,285.6608489,204.1089296,85.79870408 +427.6593821,225.7780248,328.681354,218.69418,181.2783922,372.770072,423.4853238,195.8595141,292.8624266,207.2598302,85.79757708 +445.2212955,230.1653477,338.1339875,220.2392682,180.9867053,370.080927,421.1658967,196.1294811,293.3682586,206.8671876,85.75179965 +459.1694498,234.7872206,349.5116208,224.4764765,183.9619071,387.3553171,447.7796761,200.5481263,307.1161595,212.332023,85.59190388 +437.9888599,227.9191117,332.0540868,218.9397075,179.5800852,363.2255473,407.371794,193.6907943,286.0025194,204.2127352,85.82762416 +431.038517,225.3539756,327.3913043,215.2387103,178.4008857,353.7794739,400.627533,192.4436656,282.3617723,202.2125532,85.90357997 +434.8894705,226.6422459,330.7133284,216.2344666,179.2636078,358.358408,408.4490491,193.8320696,286.5157211,203.8004529,85.85853554 +427.7689732,224.6778129,326.2121351,215.0949555,178.7686798,355.6925979,403.9900513,192.9261561,283.8164808,202.8541903,85.89934657 +407.8362955,219.7397816,315.1546047,213.3494345,178.8346407,357.0436478,403.1211486,192.3179023,281.876835,202.7915744,85.96072911 +426.3081219,225.127831,326.068702,218.1792701,180.0327914,366.391237,410.4193075,193.9215543,286.6061365,204.9223871,85.847497 +471.1763286,237.0488939,355.3100173,222.8564968,182.526467,376.4421963,439.6118595,199.5332372,304.2770839,210.0312887,85.61361208 +438.9844733,227.7618053,332.6296649,217.2598364,179.1014282,358.2470544,405.882115,193.521035,285.5714644,203.473891,85.84710532 +453.7083217,231.7878909,342.6610414,219.2198024,180.4873276,365.2811947,420.5970184,196.0876956,293.6332407,206.1975938,85.75010851 +467.6125318,235.3134921,351.9342984,219.9072507,181.2205211,367.1862363,430.6228195,198.0204687,299.7034652,207.7770278,85.68183659 +419.0393235,223.313173,321.6441952,217.6989668,179.7910931,365.8080861,406.8760778,193.2302545,284.396101,204.3703838,85.87872865 +459.5565617,233.2324242,346.3908908,219.4615278,180.8422029,366.3958515,425.0730502,196.9454676,296.2516484,206.9555213,85.72000413 +437.3114767,227.150801,332.1596982,216.3096214,179.3985776,358.9652407,410.6617773,194.1601657,287.674195,204.138811,85.84433932 +439.02793,227.0599076,334.5487834,213.6379021,179.3204314,354.3790852,417.3469878,195.1277738,291.2409853,204.3476869,85.85217372 +462.1240735,234.5440304,349.441354,221.4798246,181.9777521,373.6523371,434.2420923,198.4440383,300.9148938,208.953645,85.66427058 +449.3255535,231.4687354,341.7660982,221.1274433,181.7068441,374.0734275,429.4690057,197.3321164,297.5366806,208.2672125,85.7087257 +402.5394943,217.8949046,310.9852915,211.3888017,177.7480324,350.0980915,394.331145,190.8276482,277.3487159,200.8711388,86.01879247 +440.0186753,229.7982192,336.5116509,223.2673579,182.6955156,383.5385985,431.6225004,197.5665941,297.6988005,209.691235,85.69547038 +474.0923649,238.2121946,356.9829927,225.0479632,183.2733636,382.6099569,443.0501696,200.1721163,306.0064554,211.2761642,85.56898867 +425.817581,223.8587856,325.7407755,213.3480367,178.9114916,354.3778547,408.7893892,193.5749803,285.9965567,203.2945182,85.90731651 +448.2150049,229.9914662,340.321105,216.7502527,180.4131943,362.3557557,424.1669874,196.455963,295.0775831,206.2393231,85.77579143 +448.928085,230.6776374,339.5397969,219.3402147,180.2448907,365.0483241,416.8082857,195.3716802,291.4102517,205.6476235,85.7710644 +434.6206575,226.578104,331.4192408,215.9101026,179.5068419,359.1389527,413.1047463,194.3964942,288.679644,204.3580165,85.84839983 +407.7620268,219.607169,315.6203241,212.6593413,179.0477225,357.0670842,406.9577895,192.8851917,283.7219964,203.2834695,85.95712673 +428.7903714,224.2060988,327.3615186,212.2323755,178.5282542,350.5738741,408.307998,193.4959395,286.0346419,202.7689634,85.91567929 +424.7562711,224.207157,324.7688464,216.0392085,179.2478418,359.8533627,406.3221855,193.2409233,284.6703586,203.6327925,85.88589495 +484.5273833,237.8840597,360.2925575,215.814282,179.3573272,351.0552987,422.898138,197.1791517,297.5229852,204.94425,85.72904871 +437.3941512,227.048125,332.7948388,215.2637544,179.3381146,357.0109779,412.6072057,194.4381052,288.7036766,204.1109694,85.85247956 +441.3373917,229.2348982,335.340507,220.5359934,180.8052217,370.5847476,417.7362437,195.442642,291.2677711,206.4326047,85.76743539 +411.2947175,221.1396623,316.1574904,216.4990191,178.8871951,361.1820924,397.7234954,191.6407162,279.4587311,202.6300972,85.93692092 +404.3133623,218.1622387,311.8495238,210.8155937,177.4825106,347.7980564,393.4995996,190.6404165,276.9861937,200.4541736,86.02472929 +462.9579938,234.4237129,349.3400133,220.6025223,181.4724149,370.0345322,430.7620564,197.9273587,299.3425499,208.1023758,85.68201449 +420.9334882,222.4892382,321.6434897,209.5319943,177.6913692,337.2772864,392.7767205,192.0244679,278.9308439,200.3118649,80.91557478 +419.7127861,223.6860859,321.8488018,215.0104168,179.5130672,353.5202914,400.7947891,193.2745514,282.4297057,203.2104083,80.83073176 +433.2053678,228.3840523,333.0028141,219.9571468,182.7315678,372.9357638,428.456323,197.9342852,296.7670847,209.0761036,80.66069436 +401.8934656,217.458948,310.6991879,206.5626041,176.9931253,332.8153342,387.5055364,190.7072479,275.0209428,198.9769594,81.00243788 +413.7929864,220.2717676,314.2537361,208.7644948,175.7507647,328.4630502,370.6124926,188.4418253,267.5393534,196.5176428,81.01102079 +392.0571508,216.7418631,304.5748017,212.9638309,178.3935547,350.2587624,385.2264674,190.3551032,272.9991979,200.7667454,80.95933641 +426.6322256,223.4124741,325.1579107,208.4385282,177.3980325,333.6355466,394.1879412,192.2818627,280.0966606,200.0231257,80.91578176 +416.4299201,223.1565939,320.2669192,215.7110044,179.9164861,356.9968303,402.7206056,193.5520678,283.1532765,203.8521284,80.82281199 +434.5986953,225.6882089,329.3462428,210.1725059,177.6839806,336.023912,394.3571342,192.5832489,280.7008075,200.4480422,80.87908641 +418.4793584,222.4561521,320.6323661,211.3802562,178.3246568,342.9850942,395.2492274,192.3384911,279.782543,201.2771163,80.89231148 +406.0346178,220.5286796,314.5993294,214.3764947,179.8941409,356.89074,402.503649,193.3209332,282.36707,203.7686896,80.86094388 +417.6646581,222.5376398,318.5156426,213.2120559,177.8685065,343.7083127,385.7159644,190.9762141,275.1501714,200.2140826,80.90384861 +415.7011367,220.8609515,317.7482722,208.4786564,176.8179262,332.6990908,384.8331563,190.5790559,274.6140248,198.6998095,80.96566159 +429.3989622,225.821213,328.4404344,214.3539493,179.8465806,352.5613367,408.8198423,194.6518482,287.0509296,204.1119745,80.79379385 +414.5769264,221.7953567,317.8148193,212.5044159,178.3303444,345.4581672,391.8033596,191.8285908,277.937128,201.1342105,80.89630617 +394.8122213,215.9662826,306.8422288,206.8046625,177.3085835,335.9912117,388.6235224,190.738066,275.044196,199.4523336,81.00968669 +399.0202341,216.4904707,306.0596193,206.6462343,175.4214198,326.3054941,368.1958002,187.7616383,265.463445,195.8692027,81.06664136 +428.8725373,225.5842391,327.6079159,213.9198529,179.5130444,350.385211,405.2789777,194.1682087,285.3679617,203.4678199,80.81109306 +413.6024107,221.2549356,318.2324176,210.9326332,178.4429298,343.8434682,396.892531,192.4216532,280.1987896,201.5067205,80.90143015 +405.967959,220.100868,312.9171948,213.6780039,178.6634685,350.1672894,390.8059271,191.4341647,276.6192382,201.4913774,80.90466651 +427.307665,224.5177724,325.2574694,211.941651,178.2280881,342.216926,394.9732594,192.5065861,280.3051909,201.2021656,80.86985252 +405.1417675,218.8532619,310.0737365,210.2462513,176.5415037,335.5572247,374.0179527,188.9516004,268.769994,197.7630559,80.99835104 +397.2051847,216.7428358,307.5523846,208.2182055,177.1306675,336.7150134,384.2091143,190.0617821,272.8695993,198.98849,81.00405979 +412.6869109,219.0788187,315.0941834,204.4896671,175.4824303,321.5401464,377.2431606,189.388618,270.9929594,196.4652599,81.03835048 +442.7542107,229.8791912,337.1872405,217.7851232,181.2471956,361.3699296,419.4444649,196.6943471,293.143233,206.6248916,80.69615104 +400.7296182,219.089286,311.2667334,213.6473886,179.6602493,355.9719072,399.9956216,192.7331879,280.6310583,203.2917603,80.88665522 +419.2507426,222.4373782,320.75167,210.7805489,178.0206419,340.7224573,393.3144306,192.0730417,278.9743363,200.7768819,80.90303423 +410.1458956,218.9632373,313.7482474,206.2215855,175.84746,325.8783806,377.4416309,189.3241045,270.7434303,196.9549817,81.02342622 +428.0392631,225.0463983,326.0023508,213.1278059,178.7183875,346.0329536,397.9603738,193.0288533,281.8134175,202.0357073,80.84414031 +431.111844,227.3804652,328.8725637,219.1027249,180.7179666,362.605668,407.4680164,194.7277687,286.5099114,205.2722724,80.7429717 +431.7682486,226.5117473,329.2603763,215.1220938,179.7506678,352.7906955,406.2432631,194.373815,285.9959042,203.8684608,80.78830886 +388.8753252,214.055442,301.4656828,205.507461,175.8405337,328.4706264,373.6497487,188.2971695,267.391528,196.6745348,81.08114837 +410.5970027,220.925025,314.7760884,212.9979152,178.0449532,345.1917238,386.0364131,190.8309197,274.6666065,200.4134099,80.919976 +396.7353019,216.7054333,306.16144,208.936499,176.7538836,336.1253009,377.6081212,189.1583545,269.7317313,198.155132,81.01648878 +419.3537419,222.7810611,321.6218471,211.5998918,178.7235269,345.1847569,399.4537105,193.0413478,281.9700293,202.0580037,80.87313282 +408.3977921,220.8596196,314.9072765,214.1820928,179.1168324,352.3848814,395.2096607,192.172781,278.9043537,202.3249644,80.88072182 +398.452331,216.3240032,307.2490737,205.7461524,176.0773104,328.2605366,377.5971542,189.1549243,270.0165628,197.2330526,81.04831414 +406.0121426,220.1640819,313.1453007,213.6311625,178.8258636,350.7222238,392.2120295,191.7331231,277.3979332,201.7812486,80.90126017 +417.9890102,222.9660404,320.4108657,213.7274841,179.0444657,350.0062342,397.5799967,192.791373,280.8670588,202.4177372,80.85824635 +399.4504132,218.7440737,311.3312345,213.1309931,180.0267992,357.1359281,405.3565016,193.4460321,283.0901428,204.0405233,80.87788444 +406.7328828,220.8946558,315.8614241,214.9685711,180.5800192,360.8032085,409.1336741,194.2566521,285.4534238,205.0105789,80.83148916 +424.3272224,224.328307,325.8798369,212.7702176,179.6662265,350.1838835,409.2585486,194.5720963,286.9397727,203.8426619,80.82120432 +426.6308641,224.2752038,325.0817581,211.4298203,178.2195462,341.5170269,395.9277183,192.666393,280.8314518,201.2345894,80.87243132 +410.1228176,220.5873427,314.5975224,212.0992132,177.8623474,343.4187939,386.3383103,190.8250782,274.8246615,200.183254,80.9287021 +402.9061977,217.945548,312.0883958,207.3392973,177.681658,337.0845608,394.0940016,191.6978042,278.2252673,200.2769772,80.97182048 +405.186426,219.9836334,312.1551662,214.0376719,178.5437973,350.2714022,388.5360172,191.1796849,275.6575626,201.2383282,80.90886901 +406.7506576,219.5094172,314.4100683,209.8560957,178.4346726,343.5706942,397.0289196,192.3534322,279.8931535,201.4824045,80.92545112 +408.7241847,219.0856021,313.9006518,207.3423466,176.7905593,332.1010185,384.8707029,190.5124194,274.308399,198.6316367,80.9874658 +407.1064831,219.8206159,314.3981673,210.9838081,178.5195255,345.3614699,395.5130954,192.1068881,279.0448363,201.5042628,80.91748472 +404.3782764,218.8759522,311.9370905,210.1266557,177.7834185,341.2324436,388.5728234,190.9892516,275.5501936,200.1436299,80.95369459 +440.9330632,227.618848,333.0764913,212.0564669,178.2145557,340.2331626,397.5186093,193.2304258,282.6016505,201.3786393,80.83575091 +419.6473281,222.5894369,320.9989887,211.0084931,178.1035592,341.4337167,393.8498858,192.1839663,279.2955898,200.9292037,80.89726616 +443.7391456,229.1283663,336.9399341,214.3581043,179.8972072,350.3547027,412.6292352,195.6366943,290.1433949,204.4388217,80.75379618 +418.3748945,221.4945877,318.4002143,208.9135897,176.5392292,331.6620909,380.6750054,190.0704989,272.8164974,198.1253473,80.96740041 +433.6703985,225.7060112,328.2872011,211.3262703,177.6594339,337.6171926,391.2898631,192.0593148,278.9637144,200.2584358,80.87990918 +416.7027365,222.314259,318.7363551,212.9004058,178.2659425,345.4971502,390.7205989,191.6422312,277.4025654,201.0021564,80.89256451 +443.7531286,228.2369634,333.7862816,212.5040498,177.7615127,338.2712105,392.2297442,192.4777004,280.2089392,200.5084579,80.84380559 +403.9732149,217.9239757,310.8013752,207.0881292,176.5247276,331.1652939,381.1442819,189.7972538,272.0311625,198.0350817,81.01229428 +402.9204396,219.3926426,312.008856,213.1452519,179.0930686,351.8839305,395.7894098,192.1296318,278.8267279,202.2952314,80.90069498 +405.9944952,218.1935963,311.9307984,206.5204897,176.1697292,328.2650209,379.7813383,189.5819304,271.5639027,197.4833212,81.0197532 +410.0571756,219.7031683,314.078144,208.8692549,176.7961389,333.9309526,381.6633246,190.0716708,272.737587,198.4759491,80.97839279 +413.7616927,221.4256576,317.8118803,211.5515319,178.3932359,344.4746191,394.3195226,192.1181552,278.9993305,201.3146235,80.9015718 +402.4434993,217.7788764,309.9742079,207.7508164,176.7391587,333.4982307,381.7331783,189.9655247,272.3996156,198.3923353,81.00427738 +419.294204,223.8379036,321.2581867,216.0567445,179.6176467,355.416804,398.9215652,193.0422652,281.4442334,203.2593321,80.82799105 +427.2622487,225.4975681,323.8841959,216.4131855,178.4727462,349.0941181,387.8066082,191.5181275,276.6451627,201.1964043,80.84782735 +408.2368587,221.0341954,316.1229345,214.4213654,180.0438619,357.296186,404.793946,193.5487704,283.3401014,204.0638856,80.84872178 +425.1896096,225.2276699,325.0521481,215.9545185,179.7972201,355.0271568,402.6014664,193.7946144,283.7989913,203.7264336,80.80460849 +437.7898509,229.4132681,335.4395253,219.9438545,182.5556425,371.1900547,427.439731,197.8601042,296.5528621,208.7883434,80.65663959 +418.1978648,223.0693826,319.3953217,214.6732589,178.4858638,348.4927226,389.7928851,191.5540607,276.9745544,201.2584406,80.8751884 +411.7680052,220.6750734,315.0980139,211.1782491,177.3871054,339.666696,383.4477661,190.3861953,273.5385028,199.3924831,80.94582564 +415.5352441,221.9199651,318.1783732,212.1359574,178.2003974,343.997753,390.7238084,191.6621211,277.3707634,200.8830322,80.9040264 +408.8022515,220.065493,313.9782861,211.036594,177.7353004,341.4446437,386.5842315,190.8238692,274.8558759,199.9982011,80.94247044 +390.1848046,215.520451,303.7287537,209.3835483,177.7604021,342.6133907,385.74002,190.2779816,273.1337936,199.8984603,81.00013732 +407.2757107,220.5131197,313.8240541,213.9616359,178.8837556,351.4164639,392.5594463,191.775472,277.5793283,201.8909667,80.89363143 +449.1660056,231.4966982,340.9340456,218.4199499,181.2554052,361.0211981,419.9354175,196.9194297,293.8617298,206.6921576,80.67713366 +419.4022808,222.9521133,319.9751426,213.1000986,178.0633988,343.8922171,388.4470235,191.3789166,276.4971458,200.5997229,80.89375028 +432.8383442,226.6416472,329.2438703,214.9816415,179.3367772,350.5098538,402.1262078,193.7534809,284.0376177,203.1027824,80.80268727 +445.9215915,229.9240688,337.893171,215.6777507,180.0296424,352.4050087,411.525082,195.531626,289.671889,204.5790572,80.73905553 +400.5591831,218.843227,309.7225937,213.4919524,178.6586608,350.8369032,389.2631091,191.1405825,275.5263063,201.3817463,80.92318283 +438.2779754,228.0020986,332.74278,215.2530894,179.6489397,351.6256356,406.244125,194.5504662,286.5300398,203.7790789,80.77350732 +417.5661055,222.3879381,319.5804898,212.2631689,178.289127,344.5663337,392.8298614,191.9921414,278.6025004,201.1459242,80.88958757 +419.0271689,222.2009212,321.7352988,209.7266499,178.2437381,340.2616217,399.1675974,192.8544731,281.7894379,201.3713239,80.89943228 +440.6626328,229.1722728,335.4607346,217.1046172,180.7370755,358.356266,414.8733315,195.9142176,290.7382016,205.681644,80.72400359 +428.5539075,226.27905,328.284673,216.7226772,180.4798168,358.6047798,410.4692907,194.8912184,287.595294,205.0433135,80.76714577 +385.3500713,213.8625827,300.0271739,207.5911633,176.7160555,336.1540939,377.5736252,188.9273191,269.057964,198.0687231,81.05319852 +419.9163124,224.8203904,323.3930329,218.7671104,181.3646879,367.4816924,412.3539984,195.132618,287.8689891,206.3276785,80.75287315 +451.7515826,232.59855,342.5092415,220.5290422,181.9102737,366.8552613,423.1094403,197.5303199,295.6208187,207.7944762,80.63375288 +406.8406538,219.317836,313.5916742,209.4455269,177.8346708,340.2356813,390.9943479,191.4333682,276.9668157,200.3586112,80.94886907 +427.6209985,224.9607293,327.0851219,212.6805676,179.2555553,347.7614385,405.5053907,194.0939791,285.4087892,203.1233233,80.82697962 +428.3520241,225.5962889,326.3257608,215.0668003,179.1155188,350.2363483,398.6252449,193.0923145,281.9555281,202.6009148,80.82301718 +414.9141535,221.7502042,318.7544791,211.8076667,178.4241911,344.6327309,395.1728832,192.1763478,279.3666585,201.3959736,80.89653573 +390.1007571,215.4207061,304.2061125,208.7717212,177.9432827,342.6634476,389.3016781,190.8079626,274.8964497,200.3337089,80.99637645 +409.4880909,219.5939963,315.1138828,208.4112955,177.4761282,336.6778975,390.6379125,191.358525,277.0154671,199.864426,80.95691694 +405.95908,219.6790315,312.6952634,211.9701911,178.152983,345.3333901,388.7793329,191.1440598,275.7843904,200.6878291,80.92924836 +461.9009398,232.2803408,345.8504323,211.8514679,178.3292072,337.457596,404.324917,194.748921,287.5995394,201.9825548,80.78252746 +417.6533367,222.2219859,320.047962,211.2086099,178.2735534,342.7088698,394.6090121,192.2071844,279.3557037,201.1719757,80.89899446 +421.357879,224.3336944,322.4410761,216.2177716,179.6139413,355.4255918,399.4282439,193.1774828,281.912364,203.3056263,80.81874035 +393.3857189,216.8182227,304.6430072,212.3275081,177.8187776,346.4732815,380.7392856,189.6743943,270.9294616,199.7689354,80.97772163 +386.7472686,214.0005009,300.7034433,207.001535,176.4832629,333.9478814,376.8107398,188.7270601,268.6161669,197.6954905,81.05957262 +441.5237188,229.0974712,335.4503924,216.3190237,180.2579103,355.0226227,411.6633397,195.4494222,289.3490436,204.8762922,80.73951196 +402.5013635,215.3815359,308.7485946,203.4099883,173.3451164,324.0432997,375.6097585,186.6184471,268.1236518,194.5629778,79.82300165 +401.6708644,216.5578428,309.102895,208.5177234,175.0020622,339.3165152,383.1367608,187.7650818,271.3764324,197.2068714,79.73854685 +414.5196144,220.995708,319.7282848,213.0726996,177.9973351,357.5438316,409.1122509,192.1316782,284.769239,202.6670327,79.56964795 +384.3974712,210.622119,298.369908,200.6521983,172.717734,319.9022162,370.7254104,185.4019975,264.492058,193.3584091,79.90816039 +396.1593142,213.3938701,301.9890728,202.8013479,171.5758095,315.9943475,355.010223,183.3062879,257.5917746,191.0948514,79.91886648 +375.7097553,210.0409961,292.9541359,206.6601748,174.0036134,336.5167166,368.5401793,185.0488732,262.5605696,195.003302,79.86612576 +407.7831137,216.2424434,311.9602067,202.3945347,173.0662838,320.5171512,377.0670276,186.8838946,269.2945438,194.2798119,79.8227705 +398.5328871,216.034912,307.6095233,209.1495859,175.3813651,342.6070356,384.8600566,188.010626,271.9860425,197.8069157,79.73100309 +415.6035374,218.4620432,316.1156987,204.044844,173.3344079,322.8756891,377.1635734,187.1650261,269.869605,194.6889546,79.78693033 +400.495196,215.4306941,307.9668568,205.1738629,173.9199467,329.4696064,378.0266198,186.9274321,269.0079224,195.4530942,79.79909606 +388.6121441,213.5219801,302.2494277,207.8824294,175.3817977,342.572787,384.5692842,187.7885165,271.1813772,197.7581141,79.76892939 +399.7377914,215.4754145,305.9721494,206.8714676,173.4992925,330.1824806,368.9346099,185.6188058,264.5455422,194.4564389,79.8125577 +397.6939393,213.8913793,305.1019592,202.4833418,172.533597,319.7720461,368.3565231,185.2959864,264.203918,193.0646534,79.87216452 +410.6970939,218.5553104,315.2342956,207.8769837,175.3040736,338.2859505,390.7416267,189.0684195,275.7467532,198.0316516,79.70138037 +396.5708439,214.7077809,305.1848261,206.1543802,173.9271772,331.7512624,374.5526341,186.3982227,267.0722007,195.3037921,79.80479618 +377.4582479,209.1234116,294.5951624,200.8072268,173.0139915,322.8182833,371.6391621,185.3956367,264.3678689,193.7906882,79.91596805 +381.9840046,209.7719914,294.1787275,200.7881909,171.2902969,313.9752439,352.6476764,182.6623482,255.5735878,190.5214176,79.97397863 +410.313861,218.3654599,314.5506523,207.5010525,175.0102499,336.3510567,387.3666964,188.62196,274.1765876,197.4636173,79.71891966 +395.651408,214.2284998,305.5446806,204.7117695,174.022468,330.1802423,379.557209,186.9877659,269.3396364,195.6444228,79.80792581 +388.6241663,213.1503205,300.6405967,207.2816982,174.2260689,336.2313508,373.7598941,186.0355238,265.9062964,195.6231326,79.81210947 +408.685387,217.3209773,312.2180978,205.6612533,173.8248679,328.6584635,377.7004081,187.0617996,269.4152459,195.3594356,79.77782515 +387.8397546,211.984619,298.0180574,204.1164463,172.3080419,322.6468259,357.9393693,183.7382872,258.5553369,192.2395734,79.90714626 +380.2101828,209.9934181,295.5052645,202.2252277,172.8322246,323.6160681,367.7450681,184.7990886,262.5257691,193.3469808,79.90948068 +394.5788864,212.1643746,302.5011064,198.7699,171.3433402,309.3732199,361.1712438,184.1951176,260.7802274,191.0621831,79.94504001 +423.715241,222.4872385,323.7396194,211.1150249,176.6044648,346.6332519,400.795624,191.0065174,281.5435625,200.3781291,79.60438067 +383.5372722,212.1457771,299.0335473,207.1976303,175.1614114,341.6848226,382.3105883,187.2365587,269.5765102,197.3061331,79.79382406 +401.0733519,215.3696317,307.9947933,204.5910049,173.6425583,327.3118114,376.1432115,186.6662729,268.1922169,194.9883424,79.81031328 +392.4651761,212.1257723,301.3705062,200.414468,171.6619039,313.4729761,361.4452237,184.1453581,260.6235253,191.4956715,79.92960629 +409.3337313,217.7945503,312.9067909,206.7375904,174.2760916,332.2210676,380.4086185,187.5310805,270.7529575,196.1232427,79.75273648 +412.835745,220.1356805,315.98604,212.3803363,176.1236038,347.9610928,389.379464,189.1388104,275.2268168,199.1346504,79.65217535 +413.0274896,219.2234747,316.0720055,208.6065404,175.2190189,338.552719,388.2592655,188.8013471,274.7318821,197.8113286,79.69658427 +371.9577888,207.351364,289.5750679,199.6435299,171.6719264,315.845063,357.6766778,183.1302019,257.255199,191.2401719,79.98769944 +393.3580885,214.0473251,302.6258874,206.7345023,173.6711373,331.7059383,369.412944,185.5209065,264.2377396,194.6709292,79.82719389 +379.8246777,209.9543199,294.2534033,202.8919017,172.496496,323.1327549,361.4397184,183.940444,259.519138,192.5934862,79.92324864 +400.9876527,215.6301216,308.7200299,205.2954553,174.2899729,331.429928,381.7945846,187.5454354,270.8910321,196.1615868,79.78092225 +391.0586026,213.9131355,302.6143226,207.7733135,174.6452627,338.3517861,377.9211951,186.7419223,268.1013778,196.4060629,79.78781812 +381.1229072,209.5320117,295.1123908,199.8922086,171.8896252,315.6851139,361.3883628,183.9421987,259.7531733,191.7631815,79.95493686 +388.7750594,213.2412376,300.9627758,207.2515326,174.3914414,336.8378863,375.0260227,186.325921,266.6386774,195.9227156,79.80890315 +399.8972852,215.8331502,307.687173,207.2970628,174.5845993,336.0327653,380.0167585,187.3003189,269.8313116,196.4882822,79.76662737 +382.1384745,211.7775274,298.9754435,206.676181,175.4963688,342.683153,387.3417651,187.9007167,271.8635071,197.9931361,79.78461091 +389.2620705,213.8729517,303.4075607,208.4255541,176.0035967,346.1920957,390.8932073,188.6702599,274.1273302,198.8957093,79.73859606 +405.866005,217.1529008,312.813764,206.4101725,175.1445249,336.0800398,391.19719,189.0095114,275.6897287,197.8005886,79.72788146 +407.8902425,217.0523525,311.9855298,205.1541876,173.8216033,327.9724446,378.4987728,187.2002811,269.8475916,195.393822,79.78073646 +392.5827651,213.6353981,302.2498622,205.8375855,173.4942925,329.916055,369.6112477,185.4860662,264.2839155,194.4308272,79.83616356 +385.0957082,210.9987398,299.5013859,201.3109507,173.3438823,323.7652896,376.8870457,186.3066817,267.4160855,194.5320879,79.87778531 +387.7993911,213.000766,299.9008357,207.5907822,174.1240211,336.3369971,371.4689056,185.7789525,264.9020883,195.3950341,79.81750088 +388.8859208,212.4884806,301.814302,203.6417654,174.036141,329.9148285,379.4913329,186.8929255,268.8906332,195.6425233,79.83260227 +390.7020709,212.0999052,301.2970596,201.3435301,172.526861,319.1695126,368.1417888,185.1928275,263.7265219,193.0199943,79.89474219 +389.5614275,212.8793085,301.9790149,204.7598891,174.1033507,331.68041,378.2119709,186.6866689,268.2268458,195.6594269,79.82389738 +386.9545635,211.9804866,299.6386489,203.9700013,173.4286646,327.8225166,371.6874918,185.6409112,264.9453589,194.4053719,79.86033887 +421.6432121,220.2804377,319.6487674,205.7834802,173.8147539,326.7864466,380.0972943,187.7549782,271.6078723,195.5284459,79.74433846 +401.3345823,215.4744853,308.1651859,204.7747668,173.7184161,327.9423014,376.5724183,186.7536197,268.4279624,195.121565,79.8050352 +424.2904281,221.7016416,323.3121244,207.8837983,175.3602696,336.2065926,394.272446,190.0059165,278.6668174,198.3524982,79.66230036 +400.2098799,214.4755068,305.7285903,202.8817072,172.2841694,318.8358334,364.3534586,184.8043087,262.4563585,192.5435435,79.87498611 +415.049057,218.5597737,315.2752986,205.1768582,173.3060142,324.4490879,374.4237904,186.6944398,268.3411369,194.5120194,79.78738631 +398.6838442,215.2248949,306.0715031,206.5492635,173.8584731,331.7811863,373.6732611,186.2330975,266.6396863,195.1669729,79.80060754 +424.4403742,220.9009215,320.3809531,206.2319642,173.3920943,324.969803,375.1489672,187.0587939,269.4033278,194.7209168,79.75281792 +386.5829659,211.1135044,298.5832933,201.1836787,172.2873654,318.4348347,364.8199173,184.5614572,261.7418241,192.4925903,79.91842077 +385.7126103,212.4800861,299.7930326,206.7707134,174.6306108,337.8587383,378.4026417,186.6901769,267.9674598,196.384751,79.80762127 +388.5669221,211.408843,299.6766179,200.6902742,171.9534632,315.7073734,363.6274151,184.3856936,261.3957363,191.9793107,79.92543506 +392.3226134,212.7753462,301.6658784,202.8240721,172.5260337,320.9909722,365.2089482,184.7973291,262.3431598,192.8787001,79.88567907 +395.8898753,214.4015376,305.2245839,205.2948205,173.9859253,330.8483126,377.0571928,186.6950543,268.1737384,195.4817531,79.80878727 +384.7471175,210.8431218,297.610838,201.7023544,172.4865236,320.5159645,365.072958,184.6617131,261.8485756,192.8041,79.91227 +401.585424,216.7820595,308.7398972,209.5526723,175.1084444,341.2381711,381.4506786,187.5689388,270.5298285,197.2762866,79.73576029 +409.2650219,218.3893922,311.2712201,209.9367527,174.0463042,335.3138679,371.0677456,186.1536636,266.0851432,195.3593356,79.75669083 +390.8283748,214.0552276,303.6995356,207.96507,175.497458,342.9087842,387.0070569,188.0283839,272.2661961,198.0053391,79.75498839 +407.0494485,218.0671441,312.2876309,209.425565,175.2807264,340.8327395,384.7809543,188.2666299,272.6746337,197.7165279,79.71322102 +419.1136579,222.0557599,322.161774,213.1219868,177.826317,355.9356797,408.3294221,192.0966846,284.7261662,202.40207,79.56478259 +400.3963144,216.0175412,306.8595377,208.2581739,174.0546351,334.6707753,372.8883934,186.1669526,266.3243491,195.4027528,79.78317397 +394.1736014,213.7374079,302.7364306,205.0013323,173.0599053,326.4127339,366.9660837,185.0903301,263.1295332,193.7080434,79.85311729 +397.8363161,214.9407893,305.7399872,205.890754,173.8166617,330.5137216,373.7278339,186.2884365,266.7138845,195.1046458,79.8114835 +391.4469183,213.1880291,301.750819,204.8756489,173.3887338,328.129757,369.902273,185.5093756,264.3837539,194.2879089,79.84926076 +373.6496792,208.8319306,291.9928955,203.2835103,173.4303481,329.2483021,369.011953,184.9798362,262.6645544,194.2150633,79.90614284 +389.8997677,213.5452824,301.5360231,207.5455472,174.4368344,337.4401011,375.3781569,186.3546166,266.790344,196.0045901,79.80131454 +430.0468139,224.1025958,327.4279433,211.7644273,176.6069762,346.3340138,401.3828199,191.2527229,282.3511754,200.4446745,79.58512302 +401.6425613,215.9603334,307.5020862,206.8252146,173.6798221,330.4193121,371.6584821,186.0358248,265.9621735,194.8323416,79.80133805 +414.1731908,219.3860261,316.1213645,208.5136114,174.8351698,336.4524238,384.4620326,188.2334306,272.9553282,197.1035727,79.71082338 +426.5811589,222.5091445,324.3308257,209.1516623,175.4779014,338.1798343,393.2879802,189.9165023,278.2744736,198.4797365,79.64764061 +383.6193801,211.9872282,297.7193106,207.1244971,174.2375627,336.9653742,372.2986161,185.7681614,264.8854739,195.5495027,79.83051852 +419.100441,220.602155,319.3106903,208.7066969,175.1271802,337.4178699,388.1899622,188.9550184,275.1740159,197.7225772,79.6826513 +399.2922694,215.2414862,306.7609518,205.9130179,173.8809389,330.8335116,375.5541174,186.5481926,267.6968807,195.2973211,79.79796148 +400.7856152,215.1455915,308.8505532,203.6079983,173.8392119,326.7899617,381.7885437,187.4216213,270.9181523,195.5252504,79.8054436 +421.861973,221.8631269,322.1746492,210.5220702,176.1291918,343.8470314,396.5728598,190.2919442,279.3618713,199.505877,79.63168626 +410.4460403,219.1410912,315.4033611,210.1896975,175.8803308,344.1171212,392.5027316,189.3328797,276.4457363,198.8986486,79.6737889 +368.7169214,207.165318,288.2977279,201.5591757,172.4764868,323.0911136,361.2203438,183.6955151,258.7284069,192.5221465,79.96028781 +402.0995335,217.6672439,310.7103342,212.0271964,176.7189458,352.5253128,394.0249445,189.502249,276.4678959,200.1021923,79.6608473 +432.1948512,225.0257976,328.7279454,213.6421304,177.2130937,351.7076337,404.1469139,191.7665653,283.7703617,201.4401912,79.54350715 +389.1075828,212.3478412,301.1123531,203.2997636,173.4839901,326.8446602,373.8913436,186.04465,266.2054619,194.608913,79.85591704 +408.9292876,217.7309429,313.9152309,206.3206024,174.7652794,333.7882964,387.6200937,188.5518318,274.2145672,197.1286027,79.73434064 +410.0424935,218.4306091,313.4212438,208.6247106,174.6269,336.2388582,381.24029,187.6229351,271.0525846,196.6367814,79.7307187 +397.2213708,214.790182,306.219898,205.5940866,173.999058,331.0102032,378.0740847,186.7842519,268.6791742,195.542278,79.8025788 +373.3419604,208.6749016,292.3184221,202.6668177,173.6013671,329.2175734,372.2703862,185.459495,264.2377782,194.6136391,79.90257765 +391.468238,212.5866522,302.4353619,202.333484,173.146545,323.4164273,373.635475,185.9860464,266.2933934,194.139432,79.86362688 +388.504198,212.7321077,300.3946865,205.6773145,173.7674381,331.6917772,371.7892589,185.7673594,265.0994308,194.9007825,79.83688783 +441.7291212,224.7811244,331.8483118,205.6417871,173.9196082,324.1486346,386.6677082,189.2386234,276.4848781,196.0961803,79.69103339 +399.7985295,215.2311353,307.4583446,205.0313049,173.8762736,329.2461743,377.4924588,186.813271,268.6437142,195.3617388,79.80545508 +403.3100349,217.1780518,309.7182479,209.6515774,175.0987894,341.1508471,381.8015132,187.6665196,270.8570743,197.2971969,79.72732885 +376.9276862,210.1036486,292.9828626,206.0713395,173.473853,332.9480983,364.3689412,184.4133637,260.63113,194.077624,79.88475665 +370.1450654,207.3428962,288.9571701,201.0536176,172.2546801,321.0304565,360.7012613,183.5329975,258.439954,192.1715468,79.96551589 +422.4397329,221.7252875,322.0292212,209.748143,175.6855889,340.6498397,393.4164397,189.8317618,277.9560548,198.7495918,79.64794596 +398.4790473,214.2723915,305.9995237,202.5396783,173.2258495,321.0599368,371.8851345,186.2455629,266.4297257,194.0596592,77.30187183 +397.2905993,215.3621952,306.134029,207.5196076,174.8401878,335.9725497,379.3471956,187.3798401,269.6869362,196.6484254,77.22165553 +409.7339862,219.6646073,316.3899276,212.0492044,177.7555958,353.9585298,405.0173966,191.665796,282.9899528,201.981678,77.05902976 +380.7586914,209.6438952,295.8681268,199.814886,172.5979426,316.9141512,367.0415801,185.0429493,262.8166117,192.8553728,77.38580377 +392.2059092,212.2778434,299.3156639,201.8719183,171.4952008,313.0763469,351.4238739,182.9759525,255.9266541,190.6573478,77.39447192 +371.8006926,209.0001303,290.2477701,205.6657174,173.8467509,333.0514082,364.898746,184.7289727,261.0073335,194.4718715,77.34687332 +403.6702562,215.1258438,309.2621616,201.5281088,172.9551761,317.6457693,373.2662457,186.4915539,267.5252492,193.7756493,77.30145687 +394.2320313,214.8700867,304.6614615,208.1670293,175.2043441,339.2049293,381.0873161,187.6424575,270.369592,197.2319949,77.21453953 +411.3368828,217.2504732,313.1972661,203.1501809,173.2302565,319.95404,373.4171231,186.7572669,268.0754905,194.2006427,77.26639251 +396.30468,214.2627508,305.0754167,204.2226485,173.7907611,326.3056096,374.2671309,186.5211711,267.2234335,194.9356388,77.28019864 +384.607014,212.4576251,299.4397779,206.9556092,175.1931519,339.1563974,380.8088629,187.4474732,269.6546273,197.173522,77.25177239 +395.603161,214.3355486,303.1565665,205.9212632,173.373795,327.0381904,365.3295045,185.2915424,262.9739179,193.9600695,77.29202821 +393.6160998,212.7812088,302.4254805,201.55863,172.4295913,316.8123003,364.5841006,184.91673,262.4320084,192.5778866,77.35021971 +406.1733185,217.3177109,312.2079334,206.8972317,175.1396512,335.0327243,386.8384841,188.6442494,273.9620835,197.4558198,77.18529857 +392.5706156,213.626302,302.4473461,205.2556169,173.784365,328.6051551,370.9160679,186.0741621,265.5414742,194.7808439,77.28471818 +374.0114006,208.2434193,292.2559332,200.0176645,172.8711173,319.795984,367.977326,185.0888496,262.8579252,193.2624831,77.39310667 +378.4434871,208.7896474,291.7308693,199.9295183,171.2000755,311.0689726,349.1487158,182.3677112,254.0210994,190.0756681,77.4486577 +405.89423,217.1278076,311.493319,206.5408295,174.8574829,333.1256679,383.5341404,188.2006451,272.4005515,196.9101815,77.20213064 +391.5229807,213.1193642,302.7831464,203.7761064,173.8803645,327.0079504,375.7524459,186.6000537,267.6057188,195.1066684,77.28883033 +384.469149,212.0484065,297.8695005,206.2891722,174.0706134,332.8770379,370.0324337,185.6996366,264.3146823,195.0830364,77.29313518 +404.3738982,216.1325809,309.3270395,204.7274647,173.6976418,325.5923026,373.9211538,186.6816562,267.7035781,194.8443671,77.25793036 +384.1191502,210.9633126,295.4388351,203.2328571,172.1975603,319.6197542,354.4362885,183.464653,257.0993221,191.7742598,77.38347742 +376.334408,208.9662098,292.9335022,201.2896819,172.7052674,320.4679626,363.9804349,184.4390198,260.8157171,192.8360194,77.38797723 +390.9175766,211.1491854,300.0254104,197.9633117,171.2620517,306.6374718,357.5038715,183.8459533,259.0816671,190.610366,77.41944844 +418.7848218,221.0853006,320.3514709,210.0652316,176.4181675,343.2414887,396.753973,190.5153463,279.6167947,199.7646987,77.09180377 +379.4917645,211.0997018,296.2914915,206.2428797,174.9722404,338.2234868,378.4850182,186.9012177,268.0311483,196.7192532,77.27586534 +396.9744039,214.2349672,305.1808365,203.6781916,173.5174281,324.2292223,372.4226387,186.2845177,266.4761044,194.4784273,77.29029424 +388.6417539,211.0617816,298.7930758,199.5306661,171.5767636,310.6101909,357.7788792,183.7742671,258.8594871,191.037797,77.40596212 +405.0142892,216.6080241,309.9935551,205.8119159,174.1351706,329.1125318,376.6465069,187.1635307,269.1060151,195.592182,77.23355394 +408.1592199,218.8090332,312.7129073,211.3253828,175.9428994,344.4857824,385.5707094,188.7206638,273.4987488,198.5515802,77.13831444 +408.4899468,217.9656167,312.9973374,207.6255998,175.0595782,335.3068363,384.4164605,188.3892851,272.986584,197.2477928,77.1802247 +368.6175539,206.4939707,287.352166,198.8428866,171.5532615,312.916898,354.1036841,182.8611714,255.791765,190.751144,77.46229532 +389.1561713,212.8722872,299.7160779,205.7187567,173.5438633,328.4093925,365.7359795,185.1474396,262.5192519,194.1700181,77.30792239 +376.0791761,208.9509512,291.7117162,201.9800193,172.3760185,320.0148045,357.8174683,183.6293185,257.9463764,192.1041743,77.4003988 +396.9115926,214.5221343,305.9252856,204.4116344,174.1428641,328.3118029,378.0471287,187.1781267,269.2530146,195.6218552,77.26165448 +386.850094,212.7725021,299.7384112,206.7662017,174.4865587,334.9398855,374.1812937,186.3711974,266.4305224,195.8584916,77.27029069 +377.6169629,208.5940711,292.7192686,199.0773539,171.7803581,312.7761127,357.7626889,183.6348571,258.1917438,191.2837988,77.4300656 +384.7273159,212.144113,298.1474675,206.2849217,174.2351282,333.4788318,371.3451453,185.9839972,265.0535477,195.3850765,77.29026597 +395.6892035,214.6913491,304.8113011,206.3584409,174.4275852,332.7916996,376.2583723,186.9490429,268.2374025,195.942041,77.24791148 +378.1850558,210.773781,296.3127834,205.7533263,175.2953204,339.222932,383.5130991,187.5571607,270.3170898,197.3842017,77.26739027 +385.1334643,212.7798434,300.5450477,207.4646903,175.8015372,342.6706446,387.0588831,188.2916777,272.5051777,198.2840402,77.22317537 +401.4898729,215.9549314,309.847339,205.45375,174.9840161,332.8397688,387.2890148,188.5714158,273.8599242,197.2281509,77.2115879 +403.7308084,215.9072506,309.163858,204.2708162,173.6924041,324.9557964,374.7834491,186.8350662,268.1986999,194.8778208,77.26057832 +388.4724464,212.5199208,299.480812,204.8698789,173.3633768,326.7103553,365.9199455,185.1423659,262.6484157,193.9228343,77.3157439 +381.3985905,210.0511048,297.0615989,200.4877577,173.2003503,320.7464886,373.1105874,185.9600438,265.7911936,193.9923009,77.35601993 +383.8268378,211.9537111,297.2102492,206.6521453,173.9663526,333.0422377,367.8598391,185.489301,263.4628516,194.8606537,77.29775566 +385.0886332,211.494053,299.2235958,202.8002852,173.880342,326.7911238,375.7482731,186.5575732,267.3336422,195.0945954,77.31205835 +387.0357539,211.1225463,298.8267093,200.533845,172.4107248,316.2681111,364.5015857,184.8736245,262.1605125,192.526564,77.3711994 +385.5536182,211.8035217,299.2418671,203.8297119,173.9547998,328.4394017,374.4448586,186.313366,266.5410106,195.1194536,77.30466968 +383.056895,210.9376004,296.9941574,203.0557139,173.2932961,324.6565988,367.9914163,185.2943252,263.3113753,193.8875825,77.33958236 +417.1700471,219.014643,316.6271145,204.8607845,173.7000189,323.82081,376.3083459,187.3494854,269.8356553,195.0254578,77.22464829 +397.2767656,214.3616038,305.3910409,203.8842309,173.5882292,324.8782705,372.8729317,186.3911402,266.7772193,194.6066734,77.28477623 +419.6843647,220.3953714,320.1483578,206.9481933,175.207556,333.0956979,390.4017222,189.5566566,276.8430026,197.7882176,77.14654013 +396.2011149,213.3697784,303.0568427,201.982439,172.1876913,315.9202067,360.685504,184.4572837,260.7782348,192.0756436,77.35181886 +410.5937309,217.2877054,312.2528668,204.200042,173.2055893,321.4332858,370.6320596,186.269315,266.4694218,194.0293377,77.26748918 +394.452477,214.0853691,303.2613222,205.58826,173.7193162,328.5972309,369.9308974,185.8906795,265.0253076,194.6446522,77.28053046 +419.9672926,219.6202278,317.3626483,205.2961642,173.29296,322.0451787,371.4702249,186.6634686,267.6459096,194.2425897,77.23273038 +382.8180947,210.0823064,296.0076113,200.3018359,172.1811762,315.4467723,361.1452562,184.2058872,260.046276,192.0118683,77.39541763 +381.6895217,211.4111219,297.035793,205.8090006,174.4642453,334.4643429,374.67691,186.3393865,266.3623448,195.8281541,77.28949892 +384.7810668,210.358024,297.1011345,199.7980387,171.8605781,312.7773034,359.9807284,184.0054755,259.6209822,191.5104521,77.40290134 +388.4981579,211.72486,299.0532529,201.9431838,172.418447,318.0032899,361.6061456,184.4607254,260.7154908,192.4001473,77.36308578 +391.8111681,213.289566,302.4284252,204.3676791,173.8458575,327.6662697,373.3212659,186.3259671,266.5012837,194.9548532,77.28926447 +381.2571487,209.9250469,295.2273257,200.9172298,172.3625248,317.5890766,361.5195307,184.3866657,260.4172267,192.3100606,77.38827327 +397.0992585,215.5321086,305.6432914,208.5023017,174.948592,337.796576,377.6451364,187.1670286,268.7839265,196.7248386,77.21944181 +404.6863133,217.0940581,308.1717889,208.8660678,173.9216675,332.0313526,367.3923842,185.7796819,264.374358,194.8615276,77.23841053 +386.4479958,212.8903982,300.7650608,206.9286799,175.3129265,339.3796772,383.0575984,187.6233968,270.5109162,197.4127603,77.23898558 +402.6560874,216.8258202,309.1830727,208.4373253,175.1187832,337.4913836,381.0292375,187.8664033,270.9735486,197.1614441,77.19715953 +414.1209465,220.6411503,318.6874352,212.0352694,177.6002963,352.3205295,404.169574,191.5851864,282.7814857,201.7329764,77.05462833 +395.9874104,214.8081813,303.918421,207.2247592,173.9178876,331.3810932,369.1535291,185.8036393,264.6430707,194.8850508,77.26443955 +390.0422005,212.6064609,299.9646566,204.031829,172.9419736,323.2734757,363.258113,184.7387333,261.4504134,193.2158208,77.33186779 +393.6933816,213.7800287,302.8423988,204.9309337,173.6870012,327.3085925,370.0262514,185.9098445,265.0048025,194.5964482,77.29201369 +387.3797617,212.0626526,298.9437384,203.9098084,173.2640029,324.9260594,366.1990355,185.1390947,262.6720326,193.7865969,77.32894029 +369.9750842,207.863126,289.4362973,202.3744967,173.2821956,325.9677978,365.3381288,184.656511,261.0982194,193.6886632,77.38503154 +385.7360616,212.4336617,298.7183278,206.5596517,174.2770817,334.0718638,371.633034,186.0170201,265.2061431,195.4600738,77.28248594 +424.937279,222.6226437,323.9098119,210.6676469,176.4308461,342.935061,397.3178258,190.7221336,280.3002539,199.8398583,77.07369044 +397.3762993,214.7516704,304.545382,205.825943,173.5604253,327.2100006,368.0009926,185.6468009,264.2106868,194.3372309,77.28237505 +409.5656407,218.1001328,313.0175582,207.5035939,174.6892053,333.2211246,380.6177193,187.8169467,271.1693943,196.5593234,77.19391445 +421.8256,221.1483448,321.0660274,208.1633431,175.3260767,335.0022568,389.4053059,189.4549269,276.4074123,197.9174393,77.13260956 +379.5694458,210.9097383,294.9556712,206.1369183,174.0788556,333.5589173,368.5908678,185.440975,263.3205444,195.010699,77.31135078 +414.5064792,219.3262858,316.2177378,207.7504062,174.970459,334.259558,384.3522826,188.5569689,273.4789741,197.1629938,77.16564114 +395.2060683,214.1488359,304.0340554,205.0108009,173.7388361,327.7241012,371.8671368,186.2194272,266.144675,194.7703251,77.27764978 +396.604529,214.0099187,306.0611107,202.6820892,173.7082731,323.7115951,377.9279001,187.0006881,269.0833272,194.9938203,77.2864608 +416.9374444,220.4562203,318.7937074,209.448481,175.9589419,340.4580443,392.5532137,189.7946063,277.3853552,198.9160092,77.11857619 +405.5893685,217.7796847,312.1330694,209.0688895,175.709726,340.6114986,388.4792396,188.8452119,274.4612947,198.3115748,77.16070697 +365.4049165,206.329058,286.0419608,200.7509078,172.3358122,320.0139023,357.6888645,183.4489464,257.3638681,192.0118451,77.43636137 +397.4377685,216.3929144,307.5183199,210.9478293,176.5096814,348.872647,390.0589491,189.0820793,274.7297807,199.4767679,77.14760901 +427.0634433,223.5721488,325.265448,212.5791015,177.0082884,348.3174116,400.1189503,191.291496,281.9329926,200.7995305,77.03212632 +385.2633139,211.3274953,298.5003769,202.4315595,173.3445123,323.7478404,370.1577663,185.7088815,264.6143121,194.0850451,77.33441735 +404.5549313,216.5330289,310.9727031,205.3800037,174.6147749,330.6290306,383.7607759,188.1360431,272.439655,196.5728483,77.21691157 +405.4264884,217.1453316,310.3330145,207.578279,174.4854824,332.9562987,377.4024851,187.2058112,269.2415233,196.100615,77.213825 +392.8823306,213.5997062,303.3169316,204.5797998,173.8648658,327.7566177,374.2196644,186.3630938,266.8283491,195.0138897,77.28453535 +369.7919664,207.7595899,289.8516513,201.8117916,173.4439145,325.9904876,368.5877931,185.1500554,262.7300657,194.0731005,77.38119299 +387.6054349,211.5724406,299.8881426,201.4763277,173.0154498,320.4139094,369.8775976,185.6408119,264.6586806,193.6193345,77.34164095 +384.5665803,211.6792827,297.7086603,204.7535696,173.6232894,328.4704426,368.1386137,185.4441896,263.5488147,194.3777027,77.31660942 +436.9278894,223.3848602,328.6177506,204.7055156,173.8229143,321.3104137,382.7889212,188.7619205,274.5143681,195.6008416,77.17283526 +395.5292221,214.0417329,304.5279634,204.0548432,173.7476746,326.0544706,373.6635382,186.3975608,266.8175268,194.8443679,77.28638819 +398.8864939,215.9643877,306.7036026,208.6433794,174.9345104,337.7851692,378.042162,187.2973091,269.2209587,196.7407984,77.21045385 +372.9909233,209.0568261,290.3041677,205.0777237,173.3292498,329.5684601,360.7185752,184.1058657,259.0857959,193.5631257,77.36415245 +366.6069502,206.4351928,286.6132692,200.1826261,172.1244006,317.9361644,357.0527721,183.2406004,256.9131327,191.6661468,77.4418148 +417.6910948,220.3770323,318.7776441,208.7392503,175.5245282,337.3923197,389.5261382,189.375623,276.1053242,198.1765932,77.13335766 +396.0878763,213.0392617,304.1383857,201.4113847,172.1729917,319.0121936,370.3080746,185.1462752,264.9801636,192.8287724,78.27801847 +395.0597618,214.1374096,304.3683782,206.3444123,173.7678874,333.8955809,377.7125433,186.2605457,268.1940698,195.3908528,78.19586663 +407.634061,218.4324399,314.7287538,210.8115856,176.6709545,351.7664993,403.2713802,190.5208634,281.3918557,200.7071188,78.03145132 +378.3239007,208.4222414,293.9819454,198.740538,171.562846,314.9563998,365.4999301,183.9607435,261.4017796,191.6473617,78.36141082 +389.8544144,211.0809365,297.4786371,200.7815546,170.4617413,311.1272151,350.010586,181.9094926,254.5806774,189.4564962,78.37190678 +369.6060322,207.784463,288.5144737,204.5483272,172.8009456,331.1189274,363.3345244,183.6188519,259.526722,193.243304,78.32143193 +401.221833,213.9059428,307.3412762,200.4025133,171.8995345,315.5868694,371.7220905,185.4086332,266.133392,192.5461822,78.27696054 +392.0095152,213.6273385,302.9038046,206.9760993,174.1334987,337.1126974,379.4151216,186.5081366,268.8234381,195.972764,78.18877946 +408.9657728,216.0365339,311.3591912,202.0216443,172.1704748,317.8919637,371.8536092,185.6701691,266.6666872,192.9647061,78.2426996 +394.0130053,213.0600531,303.2927624,203.107113,172.730735,324.2938831,372.695053,185.4322878,265.8103658,193.6974777,78.25511086 +382.3680394,211.1950368,297.679065,205.7768389,174.1339864,337.0854875,379.1204872,186.3027219,268.0591543,195.9239682,78.22633062 +393.3049261,213.0966759,301.34885,204.7544042,172.3160322,324.9800838,363.7484165,184.1765457,261.4896717,192.7204875,78.26824541 +391.2410582,211.5879442,300.5537701,200.4637757,171.3816293,314.8285511,363.1151083,183.8482199,261.0882598,191.3591351,78.32563864 +403.9085862,216.0990959,310.4143031,205.7177176,174.0613082,332.9152961,385.1935143,187.5311213,272.4879351,196.1938456,78.15903442 +390.229684,212.3653632,300.6097177,204.0791073,172.7271704,326.5216867,369.2798868,184.9452251,264.0055667,193.5389317,78.2606423 +371.5357721,206.978651,290.3205502,198.9063626,171.8396457,317.7952691,366.3867208,183.9775995,261.3536261,192.0531345,78.36888137 +376.0301417,207.5728436,289.8615466,198.8567894,170.182259,309.1517934,347.7073229,181.2944693,252.6315066,188.8911484,78.42618714 +403.6395275,215.9081545,309.7334042,205.3775954,173.7854488,331.0320732,381.8942683,187.0900046,270.9225211,195.6547795,78.17677539 +389.1928156,211.9031638,300.9470073,202.6467703,172.8200567,324.9798334,374.1713994,185.5024286,266.1729094,193.867031,78.26320476 +382.2256833,210.8201874,296.0778611,205.1312493,173.0103818,330.8540156,368.4496749,184.5816167,262.8293151,193.8387471,78.26769002 +402.0514273,214.9071467,307.4962842,203.5713927,172.6335107,323.5104579,372.3450617,185.5765298,266.2523163,193.5999279,78.23363855 +381.7690418,209.713744,293.6032359,202.0990426,171.1642264,317.6206462,352.9155438,182.3552151,255.6132829,190.5636277,78.36110127 +374.0120147,207.7752222,291.0970636,200.217352,171.666004,318.547085,362.5027185,183.3645671,259.4448986,191.6240398,78.36261838 +388.4214613,209.9363546,298.0930274,196.9060624,170.2388803,304.6920404,356.0649639,182.7838979,257.7278168,189.4222075,78.39698332 +416.65579,219.8931525,318.6745827,208.8722858,175.3297735,341.0936207,395.0943639,189.4056817,278.1470666,198.4924254,78.06485115 +377.2624536,209.8499032,294.5106438,205.0779136,173.9144356,336.1853353,376.8487169,185.7634155,266.4720317,195.472713,78.25002082 +394.6327915,213.0128191,303.3576311,202.5493239,172.4603974,322.1935213,370.8413297,185.1870003,265.0354851,193.2426867,78.26586352 +386.223568,209.877239,296.9166819,198.4755794,170.5449351,308.6862777,356.3447028,182.7228928,257.5465011,189.8411463,78.38217799 +402.7012459,215.3640319,308.1679841,204.6287296,173.0680604,326.9934042,375.0224321,186.0411927,267.5990027,194.341031,78.20928529 +406.0457886,217.5911888,311.0529682,210.1196648,174.862229,342.3664195,383.8916002,187.5936327,271.9715666,197.282925,78.11234193 +406.2417397,216.7406035,311.2232976,206.4363006,173.9817289,333.1791554,382.7638705,187.2704253,271.4924462,195.9851519,78.15460532 +366.1309484,205.2464493,285.4007308,197.7528399,170.5374382,310.9712089,352.6178711,181.7692379,254.3468332,189.5651978,78.43890988 +386.9549395,211.6809483,297.9923362,204.6067253,172.4892457,326.4455429,364.2093624,184.0595677,261.1135399,192.9372678,78.28309757 +373.744752,207.7329999,289.8767472,200.8844689,171.3424922,318.073052,356.3260942,182.5388188,256.5217744,190.8963325,78.37642435 +394.5575638,213.2713115,304.0844279,203.2488033,173.0823406,326.2220189,376.4033532,186.0570304,267.7375951,194.377656,78.23709745 +384.6356372,211.5575534,297.9896359,205.6207173,173.4227607,332.9313729,372.5766319,185.2600484,264.9590294,194.6107922,78.24438042 +375.1668496,207.3590887,290.8107121,198.0004231,170.7583864,310.8265398,356.2759406,182.5480151,256.7618068,190.0908992,78.4070881 +382.4942831,210.9105932,296.3936938,205.1362908,173.1789258,331.463438,369.7334242,184.8637933,263.5437801,194.1439593,78.26525761 +393.4212339,213.4428504,303.0193791,205.1796996,173.3643757,330.6998313,374.6262579,185.8186086,266.7015002,194.6924167,78.22333727 +375.8959365,209.5125454,294.4893112,204.5802041,174.2357252,337.1679161,381.8296502,186.416274,268.7433785,196.1356984,78.24082561 +382.9049869,211.5326174,298.7888729,206.2887204,174.7343158,340.6085486,385.3549307,187.1540138,270.9381395,197.0272639,78.19642458 +399.201695,214.7442015,308.052315,204.3049728,173.9107301,330.7635471,385.6527817,187.4692214,272.4113657,195.9731889,78.18511773 +401.3552557,214.659668,307.3047006,203.1032696,172.6308608,322.8530072,373.1623073,185.7196327,266.7057442,193.6344861,78.23663844 +386.1931856,211.3011638,297.6788172,203.7337544,172.3087903,324.7017841,364.3769305,184.039893,261.2049781,192.6885699,78.29117006 +378.933572,208.8037604,295.121101,199.3717906,172.1584416,318.725781,371.5331475,184.8587991,264.330083,192.7735297,78.3310218 +381.5406217,210.6886254,295.3945755,205.463359,172.9103374,330.9757322,366.226581,184.3497069,261.9005738,193.6173078,78.27323509 +382.6950111,210.2286321,297.3450988,201.6516808,172.831159,324.7298707,374.1131757,185.4316976,265.7967871,193.8618105,78.28752642 +384.5557033,209.8674895,296.8911858,199.4123546,171.3733,314.2430606,362.9457503,183.7714383,260.694936,191.3135823,78.34790536 +383.2466869,210.5814138,297.4317658,202.7078293,172.8996499,326.4343951,372.8541505,185.2096901,265.082016,193.8835151,78.27924277 +380.717614,209.7117933,295.1576443,201.9378973,172.2450181,322.6643583,366.4295825,184.1939807,261.8620502,192.6606985,78.31477112 +414.8414507,217.7947248,314.8033245,203.6994942,172.6319922,321.7102553,374.7255735,186.2491291,268.3954424,193.7780078,78.20087723 +394.9112661,213.1204926,303.5444626,202.734833,172.5308229,322.8123563,371.265643,185.2809806,265.2978704,193.3684345,78.2606078 +417.393308,219.1717728,318.364307,205.757413,174.1274589,330.9321896,388.720329,188.4439597,275.3551105,196.5250239,78.12109682 +393.8046447,212.1533007,301.1777769,200.8677232,171.1426601,313.9127207,359.2004234,183.3753833,259.3911932,190.8583614,78.32852361 +408.3132054,216.1077465,310.4724705,203.0884467,172.142958,319.4103161,369.1294405,185.1983841,265.121353,192.7928255,78.24323326 +392.1647184,212.8516064,301.4388842,204.4223497,172.6579169,326.5314889,368.3607609,184.7748209,263.5473003,193.4007544,78.2560299 +417.6199082,218.4032989,315.53128,204.1298482,172.2241215,319.9384612,369.8927181,185.5693188,266.227077,192.9961635,78.20921591 +380.4360255,208.8793841,294.1552144,199.2347606,171.1478664,313.5116158,359.664569,183.1338041,258.66928,190.8081539,78.37151064 +379.4325349,210.1777139,295.2558031,204.6621835,173.4058491,332.452655,373.0502428,185.2192894,264.8559671,194.5847303,78.26369819 +382.3748466,209.1775079,295.2404352,198.7475246,170.8264952,310.8654898,358.5156607,182.9542379,258.3042825,190.3104589,78.37837944 +386.0989027,210.4979918,297.1871231,200.8325616,171.3767757,316.0114997,360.0763502,183.3711784,259.2933944,191.1842857,78.33950167 +389.5008416,212.061323,300.6193489,203.2308237,172.7884802,325.6324585,371.7271149,185.2187293,265.0328604,193.7162616,78.2644833 +378.7748195,208.6448658,293.2905358,199.7782231,171.3307239,315.5535855,359.9351678,183.2665163,258.890032,191.0996443,78.36548009 +394.9586386,214.330611,303.9538001,207.3470661,173.8776284,335.7618293,376.0476755,186.0578778,267.3210322,195.4694389,78.1936864 +402.5220549,215.8974679,306.4556219,207.6992908,172.8508472,329.9826197,365.8467383,184.6798454,262.9518818,193.6095977,78.21381026 +384.2831083,211.6878041,299.0304322,205.7873255,174.2436227,337.3704296,381.4609687,186.5114007,269.0447311,196.1582678,78.21192717 +400.4630417,215.5990481,307.4767023,207.2603417,174.0483218,335.4035693,379.3690789,186.7454192,269.4576171,195.904844,78.17197518 +412.0750522,219.4504377,317.0716365,210.832417,176.5112396,350.1766044,402.4888223,190.4668147,281.2779174,200.4582243,78.02663753 +393.7764061,213.6005572,302.1552685,206.0657738,172.8507442,329.3425991,367.6010475,184.6983481,263.2042492,193.636068,78.23935052 +387.7588998,211.4011044,298.1601859,202.9132859,171.8908751,321.283899,361.7593796,183.6489731,260.0462758,191.9882921,78.30760708 +391.439212,212.5691005,301.088838,203.8095002,172.6318921,325.3037748,368.4624758,184.8128713,263.5638802,193.3617284,78.26762705 +385.1189641,210.86308,297.1762563,202.8090044,172.2144672,322.9612543,364.6758125,184.0519376,261.2634042,192.5601306,78.30435806 +367.6842106,206.6395354,287.641077,201.285788,172.2471676,324.0386512,363.7875491,183.5538543,259.6259102,192.4744615,78.3601718 +383.5134642,211.2010613,296.9485236,205.4000815,173.2174627,332.0410368,370.0411711,184.8937408,263.6997959,194.215016,78.25733448 +422.848773,221.4622035,322.2727047,209.4915196,175.3378724,340.8081163,395.6871257,189.6331346,278.8971281,198.5664857,78.04620022 +395.1339264,213.5560814,302.8005693,204.7011004,172.5001274,325.2098018,366.4486285,184.5601121,262.8087191,193.0992331,78.25767352 +407.3407312,216.8924213,311.2573976,206.3298718,173.6118886,331.1195753,379.0115485,186.7099009,269.7184888,195.2993413,78.16845842 +419.5934719,219.9421066,319.3236355,206.9746424,174.2422493,332.8503634,387.7453656,188.3486737,274.9457391,196.6511626,78.10690198 +377.3579714,209.6823047,293.1990903,204.9944377,173.0253537,331.5680305,367.0137742,184.3219689,261.822309,193.7726551,78.2861602 +412.2416729,218.0867285,314.4233924,206.5387523,173.8924043,332.086382,382.6887935,187.4280115,271.9523179,195.8988998,78.14075438 +392.8456546,212.8895042,302.165865,203.8273887,172.6785379,325.6225518,370.2441875,185.0924233,264.6231864,193.5261588,78.25339942 +394.2517307,212.8117267,304.2158153,201.5736343,172.6474959,321.6918874,376.3690662,185.9203231,267.7001119,193.7571912,78.2606066 +414.820556,219.2833491,317.1290872,208.2826965,174.8718541,338.35656,390.935507,188.7001973,275.9680924,197.6472765,78.09160734 +403.4988834,216.6250433,310.4694708,207.928939,174.6239469,338.580013,386.8999347,187.7602389,273.0850513,197.0447458,78.13280912 +362.9678031,205.0581997,284.1285691,199.6313545,171.3141928,318.0414309,356.1275184,182.3305923,255.837186,190.8124283,78.4126856 +395.3577755,215.1794046,305.8546283,209.7535121,175.4291557,346.7880878,388.3957216,187.9499406,273.19706,198.2066368,78.12044345 +424.9456206,222.3609931,323.5742121,211.3259067,175.912684,346.0775369,398.4030639,190.1607023,280.3971023,199.5174412,78.00504815 +382.8929069,210.081039,296.6377467,201.3030021,172.2986968,321.7212611,368.5818268,184.5966916,263.124536,192.858814,78.31027125 +402.2408223,215.3106395,309.1524335,204.2169461,173.5426014,328.5290737,382.1292755,187.0284487,270.9771578,195.3187414,78.19121082 +403.2289495,215.9539543,308.5878044,206.4205632,173.4088919,330.8938231,375.8298328,186.108723,267.8273905,194.8428334,78.18799298 +390.6458417,212.4247321,301.5495984,203.4770261,172.8011083,325.7783093,372.6937779,185.2861473,265.4661267,193.7733258,78.25829655 +367.4418201,206.5093015,288.0106119,200.7063376,172.4097818,324.0228277,366.9964405,184.0334353,261.2104302,192.8575422,78.35649813 +385.1758343,210.3319066,297.9715878,200.3499745,171.9690182,318.3813855,368.323415,184.5404081,263.2100498,192.3960038,78.31719135 +382.2528055,210.434664,295.8872577,203.6030042,172.5709915,326.4418886,366.5406996,184.3254512,262.0459905,193.1426233,78.29207152 +434.6002736,222.2025457,326.8087669,203.5573549,172.7458852,319.1855199,381.2212785,187.688723,273.155252,194.3492111,78.14850137 +393.2816812,212.8545448,302.769764,202.9552828,172.689192,324.0657239,372.1336406,185.3157757,265.4299027,193.6087934,78.26126696 +396.6856529,214.7314464,304.9581008,207.4513929,173.8618295,335.6899289,376.3993395,186.1685415,267.6985588,195.4808666,78.18509525 +370.7845781,207.8439071,288.5501683,203.9615054,172.2865316,327.6328108,359.2010949,183.000402,257.6261687,192.3398588,78.33928822 +364.2188385,205.2110182,284.7238353,199.0992692,171.1007624,316.0152899,355.572879,182.1513277,255.486101,190.4700916,78.41738558 +415.481264,219.1706781,317.0455006,207.5479747,174.4398028,335.2486875,387.8632004,188.2659056,274.6362196,196.9084207,78.1072688 +375.9692971,208.1994162,291.8308833,197.7919093,170.7327774,305.7012701,353.048854,182.6791658,256.0859671,189.6706004,77.26302153 +375.5633933,209.3137006,292.3347023,202.3093858,172.1967295,319.3892508,359.8552091,183.7053734,259.0099996,192.0133604,77.18131183 +387.3622739,213.3198216,302.0356027,206.2755673,174.8910486,335.8625013,383.24205,187.5714964,270.8898008,196.9091314,77.01789061 +359.4170229,203.8979431,282.4149975,195.3555132,170.1773951,301.9739175,348.6661707,181.5965465,252.8402197,188.607478,77.34485702 +370.8353698,206.5606261,286.0727803,197.3441342,169.181342,298.6869491,334.8587016,179.8225712,246.9180331,186.6414237,77.35676002 +352.3896135,203.5507247,278.0700112,200.6668187,171.3368235,317.0929217,346.7057272,181.3138906,251.1512264,190.1006964,77.30496283 +380.4685176,208.882907,294.5014151,196.9418065,170.4559924,302.3840293,354.4892995,182.9172783,257.2144653,189.3847368,77.26273117 +372.6983507,208.8288193,291.0003895,202.8246229,172.5360936,322.3652385,361.2670898,183.8903447,259.4435313,192.5423846,77.1743555 +388.1280695,211.0528103,298.6150468,198.4219889,170.7370583,304.7454374,354.623708,183.2269777,257.8098213,189.812284,77.22808481 +374.5873555,208.3645067,291.3760131,199.408822,171.2600092,310.6667005,355.4221045,183.024304,257.0512943,190.5009091,77.23928484 +363.6635842,206.5564355,286.1965704,201.6461873,172.5460183,322.4011087,360.8281792,183.6523598,258.5854149,192.5033228,77.21128227 +373.9045464,208.3670805,289.5793186,200.8569292,170.8658398,311.2643539,347.0236861,181.7979201,252.8937682,189.573759,77.25405385 +371.6823263,206.8594408,288.5293146,197.0607789,169.9921632,301.8296521,346.7719219,181.5422227,252.7575426,188.3272117,77.31050485 +383.502991,211.0473737,297.6950193,201.7400749,172.4533963,318.3438039,366.7787861,184.8647141,262.9500388,192.7314907,77.14493047 +370.6758927,207.5809843,288.6821217,200.151938,171.2345445,312.5742106,351.8791712,182.4297044,254.9853284,190.2976518,77.2464393 +352.7387209,202.4205667,278.8031801,195.3817556,170.4134878,304.4202493,349.1935673,181.4872219,252.4660906,188.9348671,77.35309665 +357.744673,203.2495655,278.9528528,195.4840759,168.9271673,296.8249989,332.5246712,179.2032926,244.9558156,186.1221971,77.4102883 +383.4650347,210.9822049,297.2953302,201.4217112,172.2245035,316.7988688,363.734379,184.5014339,261.5811247,192.2731958,77.16199038 +369.7438945,207.141322,288.9106882,198.9539627,171.3167402,311.1083044,356.6829098,183.0102867,257.2170549,190.6134802,77.24788661 +363.6307296,206.2074258,284.6570054,201.1990829,171.4949266,316.5978172,351.3523852,182.1375428,254.0611565,190.585737,77.25279954 +381.7230748,209.9574124,295.0053373,199.7976749,171.1462952,309.8021697,354.9917371,183.0769713,257.2726853,190.3625058,77.21941747 +363.1529955,205.2403562,282.4895983,198.3835867,169.821516,304.6006702,337.0660918,180.1154196,247.483615,187.6218211,77.34636081 +355.8469942,203.3609568,279.9357328,196.7838933,170.2640202,305.2981059,346.1372235,181.0802045,251.1778559,188.5847158,77.34606543 +368.6597675,205.2887988,286.1263044,193.7534212,168.9645381,292.6334848,340.1997817,180.5456314,249.6000823,186.581414,77.3813231 +395.9385989,214.7598374,305.7487267,204.6614456,173.6507147,326.0462689,376.0503214,186.673278,268.3099982,194.8891476,77.05076217 +358.871573,205.2560911,283.1541183,201.0431289,172.3324566,321.501724,358.875435,183.1479839,257.1660024,192.0785481,77.23473306 +374.8965042,208.2459793,291.2770299,198.8567014,171.0027183,308.6716389,353.6007904,182.7502678,256.2156641,190.0634036,77.25060106 +367.0892577,205.3377902,285.2823879,195.2542548,169.2458587,296.3271798,340.613368,180.5569066,249.6177746,186.9790377,77.36614927 +382.2547792,210.358274,295.6058499,200.7010146,171.5421443,312.9693268,357.2854912,183.4578973,258.3545899,191.0254891,77.19554449 +386.3382016,212.7064329,298.9434621,205.7771061,173.231777,327.3881282,365.5580497,184.9880361,262.5465947,193.789067,77.09828167 +385.8051462,211.6996718,298.5699591,202.3868288,172.3884766,318.666863,364.4951009,184.6314853,262.0251625,192.5480554,77.14068861 +347.8967981,200.8526602,274.3523498,194.3839566,169.2165316,298.1924541,336.7494064,179.4957353,246.1893491,186.6700186,77.42331464 +368.5911852,207.2315539,286.8544204,200.8171387,171.0555184,312.8232581,347.7614253,181.8101332,252.8623002,189.8386431,77.26702594 +355.6795108,203.3675245,278.9439191,197.3272283,169.9783834,304.9374166,340.3417525,180.3036967,248.4110889,187.9275225,77.36040598 +374.5348356,208.389084,291.7773431,199.3990512,171.5625274,312.261476,358.4780724,183.4624391,258.4412854,191.0698916,77.22248115 +366.0946479,206.9840033,286.601875,201.6692309,171.8922621,318.6142409,355.1966907,182.8182773,256.129366,191.3251333,77.22880874 +356.4584923,202.9017026,279.4977823,194.6469935,169.4380325,298.2062814,340.1831388,180.2646172,248.5112641,187.1776805,77.39105932 +364.0704242,206.3896943,285.1681416,201.1710557,171.6753338,317.3155161,352.4695692,182.4268499,254.7344752,190.9010849,77.24974298 +373.8246175,208.6219196,291.0052357,201.1738081,171.8252614,316.4582429,356.8684069,183.2421748,257.478817,191.3608908,77.20899571 +357.2783901,204.8424361,282.9024196,200.5474291,172.617337,322.2665741,363.3551052,183.7117848,259.1574009,192.6695232,77.22564571 +364.1510102,206.8514665,287.1538776,202.1439649,173.096567,325.5840648,366.6603494,184.4592592,261.3050592,193.5199722,77.18105378 +379.1156793,209.807719,295.5309088,200.4598202,172.3258388,316.4187164,367.2510329,184.8391812,262.9619528,192.5516301,77.17002502 +380.8166455,209.6735122,294.7142101,199.3027479,171.1421642,309.1573756,355.5565679,183.1679633,257.5539126,190.3831821,77.22262828 +367.3339752,206.6933515,286.1710825,199.9573647,170.8591314,311.0014402,347.7228391,181.6877635,252.7046502,189.552238,77.27604874 +359.5363325,204.0709974,283.1058342,195.8733422,170.6942482,305.1955175,354.0786216,182.3183966,255.2939393,189.5836087,77.31563771 +362.8244987,206.0452142,283.9870068,201.4108562,171.3999646,316.6885449,349.047663,181.859216,252.9997164,190.3647239,77.25915361 +363.2916494,205.4857913,285.4118288,197.8854724,171.3264725,310.8304738,356.2750299,182.8290005,256.5229046,190.5860657,77.27242319 +364.8817066,205.1359512,284.8991622,195.9114759,169.9847589,301.2106763,346.1614888,181.3464027,252.0029044,188.260378,77.33301384 +364.3675436,205.9709033,285.8112899,198.9729251,171.404467,312.5420419,355.4086628,182.7403064,256.1803905,190.6468337,77.26329585 +361.9657734,205.1483871,283.6788218,198.2739157,170.7988908,309.0673554,349.5083886,181.801296,253.2292855,189.5225826,77.29902757 +393.6307461,212.6722531,301.7930002,199.93867,171.1504968,308.1962571,357.2167435,183.7271632,259.3086425,190.5340806,77.18713114 +374.9582521,208.2835733,291.3320015,198.9766013,171.0584088,309.1720536,353.8553727,182.7857072,256.3161368,190.1564361,77.24590669 +395.9895227,213.9435196,305.0981264,201.7544383,172.5273755,316.5831922,369.966369,185.7326562,265.6088429,193.0509008,77.10743638 +374.026483,207.4034628,289.1492699,197.3768312,169.7813969,301.0459167,343.0627673,181.0891452,251.1184057,187.8725125,77.31385946 +388.0576045,211.2463739,298.0785182,199.4973312,170.7198315,306.241861,352.400164,182.87162,256.6267011,189.6821115,77.22820399 +372.6457011,208.0476365,289.463999,200.5517609,171.1637725,312.5696151,351.2796906,182.3062256,254.7083509,190.1701403,77.24182986 +396.3542395,213.2810054,302.5450715,200.3737962,170.7763771,306.5948858,352.8302317,183.1398642,257.423039,189.8260366,77.19586343 +361.7242081,204.4170131,282.784142,195.8651683,169.8042286,300.7564527,343.4918854,180.8887731,250.4864616,187.8589291,77.35504133 +361.0189409,205.6303971,283.9393353,200.7276872,171.8721164,318.1154564,355.4841729,182.726064,255.8850156,191.2873574,77.24803483 +363.5858092,204.7097772,283.7862897,195.4972534,169.5055954,298.3206629,342.5604637,180.7796542,250.3200148,187.4121921,77.36186161 +366.8935978,205.8914708,285.5403492,197.287294,170.005977,302.9986868,343.7268505,181.0755792,250.9585825,188.1817578,77.32415628 +370.1863885,207.3600682,288.7809841,199.4494126,171.3030259,311.8240626,354.3558428,182.7516585,256.1328494,190.4913646,77.24912098 +359.5083973,203.9998269,281.6320293,196.1655388,169.9455947,302.4196491,343.2028627,180.8322856,250.184943,188.0544372,77.35086206 +376.0068229,209.6645677,292.3291578,203.2875399,172.3246173,321.328591,358.5166101,183.601865,258.4080597,192.1347528,77.178383 +383.1550606,211.1514278,294.6777604,203.690565,171.3723189,316.0103421,349.296064,182.3754941,254.5471008,190.4271405,77.19964216 +365.6889566,207.0465026,287.4482957,201.8208034,172.6400852,322.6325504,363.444729,183.9419413,259.8355309,192.7319778,77.19611104 +380.8859343,210.8080147,295.5066386,203.1276268,172.4828904,320.9708759,361.3496571,184.1975332,260.222594,192.5246387,77.15721676 +391.9025334,214.3975122,304.4306963,206.4198587,174.7571951,334.5009042,382.8594247,187.641911,271.1311473,196.7190352,77.01223306 +374.6191534,208.8779939,290.4172897,202.1390184,171.353883,315.276218,350.7689583,182.3176791,254.6046094,190.416691,77.22486472 +368.8366791,206.8061338,286.6334445,199.249748,170.478121,307.8950193,345.4500924,181.359962,251.7470733,188.9219421,77.29232773 +372.423948,207.9812056,289.5333283,200.0254518,171.1819206,311.7075479,351.5054844,182.4551476,254.9651359,190.2088664,77.25181266 +366.5543046,206.3819625,285.8863072,199.1400195,170.7941547,309.5360209,348.1126371,181.7628704,252.9068613,189.4752634,77.28812785 +350.1572056,202.3829021,276.9837157,197.6360038,170.8211284,310.4695691,347.0513031,181.2140855,251.150445,189.3826807,77.34315642 +364.9027655,206.5953192,285.5466368,201.4228806,171.695256,317.7573887,352.785917,182.4227475,254.8308937,190.9410111,77.24232138 +402.0708444,216.3330962,309.2978374,205.3290429,173.668141,325.8612091,376.8286307,186.9808882,269.2684347,194.9883241,77.03187005 +376.0439444,208.9451307,291.1987781,200.909715,171.0596027,311.6299102,349.7843464,182.2750577,254.4254079,189.9772031,77.24214908 +387.0352835,211.899083,298.7114307,202.3560442,172.0518536,316.8358556,361.201919,184.1623456,260.5423328,191.9327447,77.15435409 +398.3894223,214.7530411,306.1898814,202.92536,172.6398512,318.4213882,369.1991567,185.6940299,265.3630334,193.1836437,77.09317196 +359.3382168,205.2327863,282.2045923,201.0582732,171.5284083,317.3981154,350.0344343,181.9177177,253.1579503,190.5548359,77.27055745 +391.1974963,212.8959244,301.4140885,202.4422527,172.2961258,317.6051471,364.3195569,184.7295209,262.3191779,192.4441305,77.12772693 +372.9108453,207.9886924,289.9307672,199.9342862,171.1733105,311.6281172,352.7996316,182.542149,255.5288677,190.2617582,77.23966035 +374.4048934,207.9809573,291.8835236,198.0299954,171.1579736,308.0814794,358.8363423,183.4357958,258.750571,190.5218147,77.24512717 +394.4470405,214.2612299,304.4430171,204.1937696,173.2344374,323.6020549,372.379409,186.0840969,266.4886654,194.1321526,77.0768953 +384.0550202,211.7955624,298.3141224,203.9324024,172.9983829,323.815223,368.7727717,185.2360731,263.9271941,193.5768401,77.11742202 +345.131443,200.7163426,273.3423302,196.0216365,169.9345445,304.7240462,339.7467959,179.9708477,247.3942083,187.8060905,77.39716975 +376.279222,210.3789345,293.9933896,205.4195283,173.7449882,331.3937715,369.7225707,185.2622796,263.5671447,194.6211731,77.10576387 +403.4966023,216.9696028,310.1421537,206.8574805,174.1670019,330.4761373,378.905914,187.2867846,270.1437503,195.7875475,76.99289192 +363.7015873,205.4172169,284.8903559,197.6311314,170.8435748,308.1505137,351.3578671,182.1120938,254.2248374,189.6852646,77.29489205 +381.8185508,210.2980671,296.4685565,200.3661099,171.9790538,314.3280746,363.9497127,184.4063553,261.5794847,191.9341885,77.17679104 +383.4195124,211.0746001,296.3488343,202.4955709,171.8669422,316.6713958,358.4028889,183.6471771,258.9276584,191.5259652,77.17350698 +371.6359923,207.7763607,289.7864544,199.8266042,171.3119404,311.9916678,355.6033105,182.9119429,256.8470274,190.5621238,77.24234704 +349.5498823,202.1500117,277.0911873,197.0343999,170.9587179,310.3357321,349.8052675,181.5801148,252.4033245,189.7044249,77.33992468 +365.5384241,205.5498143,285.8680341,196.8019564,170.5219848,304.9433769,351.1981752,182.0547203,254.3421347,189.2406967,77.30228931 +363.4619742,205.8320664,284.4250728,199.7523385,171.0977558,312.5527435,349.483909,181.8905264,253.287174,189.9537894,77.27703037 +412.2152626,216.8298993,312.9855194,199.9291271,171.2594419,305.9105297,363.4548249,185.1539166,263.9732565,191.0820966,77.1351992 +374.0771281,208.2136227,290.9815143,199.3042731,171.2265743,310.5114429,355.0381492,182.9395472,256.779041,190.4309184,77.24506475 +377.1989267,209.9009311,292.9834799,203.3073599,172.2868976,321.0938271,358.5985482,183.6101604,258.5071516,192.0962804,77.17096778 +353.4116698,203.5774623,278.0308442,200.1495311,170.8562623,313.8491847,342.9964744,180.74151,249.4334244,189.2635216,77.32320506 +346.4929391,200.9016015,273.9270501,195.6600803,169.7389733,302.8972382,339.5764515,179.8843588,247.3323836,187.5110568,77.4011876 +394.6315305,214.0403261,304.1115828,203.447101,172.8208022,320.6235411,369.3004544,185.6095065,265.056684,193.4180816,77.09341818 +412.138523,217.527993,314.8108973,205.1082091,173.6523449,330.2600427,385.217071,187.6189463,272.9782324,195.7611181,81.87000206 +411.2317853,218.7283897,315.1793465,210.4007036,175.3799007,346.1442451,393.0155305,188.806699,276.345034,198.5202225,81.78403103 +424.739671,223.3615087,326.3479542,215.133782,178.5167841,365.0642007,420.183492,193.3909697,290.3654882,204.2503656,81.61327164 +393.2546843,212.5714305,303.9553128,202.2700858,173.0008343,325.9970197,380.0690259,186.3448205,269.1698353,194.4977316,81.95581956 +405.2526942,215.4136103,307.6178776,204.4704417,171.7937198,321.8189716,363.6253635,184.1296883,261.913378,192.1072632,81.96629847 +383.9981154,211.8748887,298.200177,208.5097438,174.3347955,343.2328829,377.7641214,185.9393757,267.071211,196.1929959,81.91283297 +417.6976454,218.4770058,318.187313,204.023852,173.3625156,326.6010714,386.650176,187.9026114,274.1980233,195.4695778,81.86917333 +407.9780333,218.1681512,313.622627,211.0638312,175.7805071,349.5627392,394.8519665,189.0634974,276.9791465,199.1527656,81.7765197 +425.7155182,220.7371724,322.478605,205.7477508,173.6327321,329.0070643,386.8192414,188.1883779,274.8033342,195.8850742,81.83345901 +409.9329442,217.5559292,313.9602718,206.9414491,174.2433402,335.8990328,387.6733221,187.9307492,273.8800757,196.6751079,81.8454417 +397.6459921,215.5281264,308.0108979,209.773722,175.7881173,349.5340069,394.6158464,188.8320575,276.1389511,199.1067093,81.81515005 +409.1075874,217.5688534,311.8409303,208.6868639,173.8098053,336.6019241,378.2216796,186.5520125,269.1863257,195.6390004,81.85902792 +407.0661304,216.002767,310.9746761,204.1289358,172.8015243,325.8152785,377.5379937,186.232205,268.8625917,194.1853753,81.91877835 +420.7354993,220.8552341,321.6313895,209.7277597,175.6979751,345.0905374,400.9284417,190.1816356,280.9324444,199.3928743,81.74640985 +405.9314974,216.7873738,311.0700626,207.9552731,174.2659911,338.2691307,384.1302658,187.3790923,271.8491059,196.5404474,81.85137489 +386.12999,211.0077451,300.039723,202.4370607,173.3243083,329.0620059,381.0649951,186.3421565,269.035375,194.9678658,81.96387957 +390.5113267,211.629754,299.4556577,202.4121605,171.5062094,319.7648812,361.1892311,183.4568474,259.8000078,191.5170906,82.0220263 +420.236093,220.6170332,320.875005,209.3498608,175.3865068,343.0470865,397.4654435,189.7095349,279.2940511,198.790429,81.76455833 +405.0190863,216.3397614,311.4808555,206.4577818,174.3594322,336.6775462,389.2504597,188.0015922,274.230058,196.8883138,81.85415319 +397.6298455,215.1727605,306.3191978,209.1272499,174.5726792,342.9491372,383.2200166,186.9910565,270.6081788,196.8609993,81.85826428 +418.5745496,219.5518962,318.4396038,207.4290094,174.1515477,335.045348,387.3775156,188.0804753,274.3209208,196.5939718,81.82414142 +396.6395981,213.9039926,303.4707993,205.8528126,172.5713049,328.7565696,366.7881564,184.5773261,262.9085396,193.3199023,81.95477443 +388.8602753,211.9236553,300.9506399,203.8976465,173.1175454,329.8602543,376.9014912,185.7071554,267.095534,194.4779858,81.95653086 +403.8370821,214.1978314,308.2445053,200.2973869,171.5635344,314.9948509,370.1306261,185.0871852,265.3075066,192.0969866,81.99319609 +434.1971453,224.9240652,330.4850824,213.0844968,177.0482777,353.7221282,411.4374141,192.2046797,286.9904315,201.8393553,81.6483486 +392.4227379,214.124601,304.6788254,209.0661962,175.5581534,348.6449489,392.2101795,188.2554508,274.4594209,198.6321782,81.84026061 +410.5848214,217.4988315,314.0025897,206.3336923,173.9586415,333.6544439,385.7397498,187.6618239,273.0344521,196.1977273,81.85694688 +401.5187867,214.142822,307.0296625,201.9966722,171.8883697,319.2485557,370.3235697,185.0242927,265.1147301,192.5361586,81.97688915 +419.2877137,220.0372627,319.1745533,208.5484443,174.6278234,338.7512846,390.2414497,188.5735924,275.7215692,197.4012867,81.79888388 +422.725697,222.4031848,322.3180724,214.3955135,176.5452199,355.0625033,399.56451,190.2350468,280.356123,200.5292449,81.6966415 +423.1071799,221.5257405,322.4820885,210.4833876,175.6076274,345.3396868,398.3782103,189.8991571,279.8709164,199.1607363,81.74175485 +380.2917576,209.1550925,294.7361171,201.2253832,171.9231197,321.7893233,366.4542537,183.9634255,261.5760799,192.2957163,82.03587736 +402.3416519,216.0648736,308.3058033,208.5647724,173.9771098,338.1909095,378.6569056,186.4392774,268.8511065,195.8389256,81.87360166 +388.366438,211.8339408,299.5903084,204.593858,172.7672571,329.3225386,370.3686932,184.7973464,263.9305221,193.687713,81.9707811 +410.6138254,217.7797357,314.8082392,207.0694767,174.644352,337.9564719,391.6853998,188.5894922,275.8660963,197.4408196,81.82743388 +400.0978292,215.9501681,308.3615131,209.6417676,175.0038996,345.1473653,387.5507796,187.7265052,272.901972,197.6704822,81.83371625 +389.8203558,211.422164,300.5218773,201.4884744,172.1419828,321.5962907,370.3791432,184.8156242,264.2133757,192.8352466,82.00327037 +397.6907987,215.2258134,306.6140585,209.1097638,174.742296,343.5540927,384.5876944,187.2891657,271.3700472,197.1678878,81.85535287 +409.4266053,217.9672399,313.7066472,209.1456932,174.9512477,342.7196799,389.8502759,188.3260976,274.7455151,197.7792291,81.81293473 +391.0364932,213.7615046,304.6524022,208.523348,175.9123562,349.7185681,397.4143829,188.9561102,276.8501847,199.3575551,81.83075571 +398.3624761,215.9182846,309.2540337,210.3349482,176.4335267,353.3298399,401.1315933,189.7556512,279.21526,200.2917509,81.78421942 +415.6854502,219.3924595,319.0965838,208.2166362,175.5286064,342.8095318,401.3868651,190.1183176,280.8711699,199.1444892,81.77325831 +417.7843809,219.2680626,318.2070091,206.906754,174.1529765,334.3391598,388.2428325,188.2287078,274.7777566,196.6376204,81.82722146 +401.6920209,215.6744588,307.9736843,207.6269854,173.8041377,336.3587964,378.895569,186.4161207,268.9193659,195.6089874,81.88275803 +394.1588912,213.0023606,305.2088378,202.9392822,173.6655667,330.0503705,386.4847852,187.3008382,272.2298408,195.7429627,81.92504341 +396.7562917,214.9875346,305.5254111,209.4456669,174.4732981,343.0364118,380.8892221,186.7197556,269.5459093,196.631902,81.86389372 +398.0621078,214.5109057,307.6068346,205.3708003,174.3874449,336.4167337,389.2942917,187.9096656,273.7738967,196.9044425,81.87978989 +399.8954278,214.1167562,307.0300787,202.9700007,172.8083177,325.21988,377.4261329,186.1302775,268.3762702,194.1577818,81.94242879 +398.6306105,214.9053454,307.7360148,206.5262443,174.4439086,338.2376685,387.8795747,187.6818252,273.0611626,196.9001949,81.87055383 +395.8866039,213.9649485,305.2699508,205.7030411,173.7406676,334.2174131,381.0689655,186.5855897,269.624161,195.5888742,81.90729638 +432.0414788,222.6357697,326.1855704,207.5431762,174.1372566,333.0671599,389.900874,188.807859,276.6233192,196.7706762,81.79045076 +410.9104831,217.6114818,314.1983394,206.5226437,174.0431905,334.3147031,386.215127,187.7566237,273.2845852,196.3459908,81.85170682 +434.858119,224.1211772,330.0497789,209.7271019,175.7541879,342.8867046,404.6607033,191.1646237,283.9949553,199.7307325,81.70721772 +409.6526141,216.5819899,311.6075505,204.5447315,172.5410832,324.8168061,373.4136744,185.713592,267.0328778,193.6408814,81.92211213 +425.0143171,220.8245075,321.5562045,206.9170326,173.594248,330.6218481,383.8977152,187.6857469,273.185078,195.6839349,81.83354224 +408.1506938,217.3529797,312.0126156,208.3569373,174.1901474,338.3028745,383.1676305,187.2070646,271.3995247,196.3923124,81.84699008 +434.8370087,223.2605217,326.8970688,207.9905942,173.6903617,331.150509,384.6847738,188.0701689,274.2945362,195.9170685,81.79868595 +395.4386594,213.0699611,304.1380615,202.8187071,172.5457232,324.4377626,373.899058,185.4585673,266.2862445,193.5828271,81.9660761 +394.5810775,214.4604303,305.4311626,208.6126215,174.9952121,344.6549755,388.0787833,187.6766317,272.7662918,197.6562959,81.85390559 +397.4417455,213.3889868,305.258099,202.2881664,172.1923288,321.5895519,372.5768597,185.2735756,265.915263,193.0395783,81.97246613 +401.4126348,214.7860801,307.3522345,204.5034633,172.7953525,327.0778487,374.3147955,185.7018439,266.9050627,193.9899199,81.93294905 +405.2026043,216.4831504,311.1161969,207.0724195,174.3201051,337.345384,386.7012312,187.6902667,273.0089664,196.7154873,81.85540178 +393.6659273,212.7752,303.1515082,203.3532754,172.7730581,326.6189359,374.2733198,185.5698066,266.3998443,193.9382447,81.96019246 +411.0108561,218.92505,314.746574,211.480388,175.4816418,348.1086469,391.2546066,188.5894283,275.4445239,198.5752309,81.78126554 +418.8952015,220.5860464,317.3304339,211.8448288,174.3660261,341.8945867,380.3653525,187.0978355,270.7695525,196.5614032,81.80213865 +400.0010514,216.1422032,309.5641664,209.852782,175.8977316,349.9266803,397.0266594,189.0833123,277.277187,199.3505715,81.8005869 +416.7174565,220.2530675,318.4575673,211.3485208,175.6672483,347.6715329,394.7933386,189.3262672,277.701247,199.0476286,81.7586902 +429.4201917,224.4624345,328.8525237,215.1804327,178.3256359,363.3924007,419.3074683,193.3447894,290.312495,203.9550448,81.60824354 +409.8123842,218.1551104,312.7880688,210.1203433,174.3847293,341.2836438,382.2891192,187.124998,271.0446305,196.6217566,81.8289513 +403.3274305,215.7885505,308.4727177,206.7575768,173.3478773,332.7045869,376.1255135,186.0028742,267.7171457,194.8495331,81.89990016 +407.0897378,217.0089042,311.5962128,207.6945241,174.1350663,336.959778,383.2275662,187.2544592,271.4700078,196.3063393,81.85815576 +400.4364093,215.1951532,307.4271561,206.6449485,173.688349,334.4970925,379.19938,186.4383161,269.0279427,195.4494143,81.89614871 +381.9445779,210.6467412,297.2372229,205.0256851,173.7447706,335.713162,378.3036983,185.8849213,267.2207391,195.3839405,81.95377741 +398.9474596,215.5707044,307.2500049,209.4082752,174.7925758,344.1919679,384.9492659,187.3244972,271.5366703,197.259782,81.84765754 +440.6642842,226.5945213,334.2816974,213.7428497,177.0413562,353.3908667,411.9867441,192.4527446,287.8167906,201.8949729,81.6284455 +410.9749301,218.0656894,313.4053834,208.6433764,173.9851593,336.8434051,380.9950882,186.9824277,270.6635766,196.0112839,81.8474271 +424.2365889,221.6902378,322.5055332,210.3809809,175.2013344,343.1406355,394.3949963,189.3001703,278.0081229,198.4117442,81.75606171 +437.1529892,224.9450123,331.0793054,211.0354922,175.8713734,344.9199382,403.6105815,191.0643823,283.5744031,199.8549157,81.69220503 +392.3428317,213.9289627,303.2299278,208.9803655,174.5826522,343.698283,381.7221278,186.7033884,269.5286041,196.7762513,81.87709018 +429.4897483,222.9723857,325.8837739,210.5817297,175.5175271,344.1466054,398.360467,190.067518,280.3485782,199.080444,81.72791731 +408.8456175,217.3764615,312.7543706,207.6960419,174.2204415,337.331869,385.1546674,187.5431913,272.5124805,196.540571,81.84441339 +410.3622866,217.3161723,314.9325006,205.3030143,174.1648369,333.1461489,391.5468455,188.4581523,275.8847669,196.7611428,81.85147621 +432.186824,224.2646375,328.8161354,212.4675158,176.5454429,350.823745,406.9971421,191.4501851,284.700887,200.9151729,81.67581309 +420.2921281,221.4384173,321.7368183,212.1262532,176.2839168,351.1388611,402.6883344,190.4416976,281.6393736,200.272141,81.717787 +376.8766,208.9185044,293.3763408,203.2228452,172.7651028,329.3218169,370.1926841,184.5456291,263.095073,193.6359959,82.00830035 +411.6884563,219.870183,316.8728012,214.0514523,177.1719919,359.8666548,404.3954073,190.6219808,281.6630909,201.5458384,81.70540641 +443.0934949,227.5818494,335.717118,215.6829518,177.6922745,358.9745023,414.9447923,193.0071776,289.317927,202.9676764,81.58650346 +398.2224436,214.3589296,306.8430275,205.0142869,173.8054859,333.2060831,383.4411667,187.0175192,270.9641581,195.814695,81.90331933 +418.8883628,219.9961204,320.2468134,208.115596,175.1348981,340.4122313,397.6825689,189.6419328,279.3348115,198.44709,81.77991222 +419.8803849,220.6896451,319.6613248,210.4938931,174.9796924,342.919973,390.9891056,188.6550946,276.005191,197.9142155,81.77583843 +406.5384577,216.9143162,312.1414039,207.3699015,174.3248541,337.5202271,387.6575128,187.7800663,273.5284721,196.7650829,81.84832671 +381.7171682,210.4950194,297.6109984,204.3863072,173.9318549,335.6998367,381.7428422,186.3959217,268.8796175,195.8150583,81.95038795 +400.7450046,214.647653,308.2534693,203.9916596,173.4547223,329.6545464,383.1127573,186.9624126,271.0587588,195.3281963,81.91075261 +397.4826569,214.7237094,306.0467754,207.4700871,174.0961445,338.2211382,381.206166,186.7126839,269.7725018,196.1092839,81.88364391 +452.8406242,227.3387066,338.8651713,207.3628817,174.2354029,330.2822832,396.6754971,190.354511,281.7041329,197.3533213,81.73608645 +409.2024753,217.3529211,313.4285274,206.8002012,174.1959799,335.6658499,387.1204562,187.811252,273.5033659,196.5760527,81.85196943 +412.907892,219.3541175,315.8052108,211.5736313,175.481423,348.024449,391.6553594,188.6999738,275.7954638,198.6151613,81.77278665 +385.2923955,211.9552081,298.2368082,207.8936327,173.7826692,339.5138521,373.4105083,185.2762268,265.0572861,195.2273999,81.93169263 +378.3807874,209.1439582,294.0916602,202.6940519,172.5258028,327.1855971,369.5813807,184.3797518,262.8068126,193.2595291,82.01329195 +432.8441146,224.1252935,328.680746,211.6575047,176.0888596,347.4981642,403.7337114,190.9741492,283.2366085,200.1362287,81.69240088 +394.5104244,213.3823242,303.6245112,201.6981993,172.8724985,318.2470506,368.5813132,185.7249108,264.6859248,193.3258708,77.02129244 +393.3488848,214.4537983,303.7590565,206.6073265,174.4602356,332.9546517,375.9471695,186.8407466,267.89361,195.8760637,76.94198268 +405.7701646,218.699625,313.9381221,211.0702773,177.3316864,350.6661734,401.2430087,191.0539472,280.9808695,201.1292494,76.77982114 +376.9156395,208.8042963,293.5812175,199.0131977,172.2557377,314.1907931,363.7772581,184.5399648,261.1136697,192.1405577,77.10454557 +388.3343853,211.4366817,297.0480651,201.0559286,171.178073,310.4455102,348.4843382,182.5205805,254.3729012,189.9930662,77.11375538 +368.1963154,208.1852814,288.0989872,204.7893698,173.490504,330.1551129,361.6649944,184.2280188,259.3094834,193.7415983,77.0657111 +399.5159988,214.2101109,306.7870158,200.6945411,172.6001028,314.8634086,369.9913685,185.9756347,265.8110726,193.0421286,77.02181423 +390.3729664,213.9691115,302.326026,207.2428467,174.8190462,336.1429039,377.6394125,187.0922351,268.5435166,196.4490133,76.93446717 +407.243805,216.3320594,310.7483759,202.3087494,172.8785469,317.153547,370.12291,186.2387022,266.3360116,193.4698632,76.98642171 +392.3555757,213.3754296,302.7097013,203.3674258,173.4314068,323.4412347,370.9334306,186.0034513,265.4769112,194.1950963,77.00010024 +380.916849,211.5900916,297.1965519,206.0460281,174.8094599,336.1089277,377.3164557,186.8900559,267.8012702,196.389046,76.97064964 +391.7412285,213.4575106,300.8557381,205.0359173,173.0205498,324.1635212,362.1422077,184.7855263,261.2796867,193.2331383,77.011606 +389.5791875,211.9026414,300.0384897,200.7338493,172.0869925,314.0862253,361.4382314,184.4285873,260.7917621,191.869717,77.07040828 +402.0710736,216.3740656,309.7276144,205.9870116,174.7508128,331.9952027,383.351739,188.0894276,272.1281871,196.6668593,76.90624089 +388.7309411,212.7463092,300.1444006,204.3693992,173.4212281,325.6876248,367.6124601,185.5466104,263.7854246,194.0334406,77.00395581 +370.2592256,207.4133341,290.0159477,199.196326,172.5201938,317.0123249,364.6779079,184.5708852,261.1254377,192.5321015,77.11129704 +374.7343695,207.9890777,289.5595435,199.135305,170.8882867,308.4740229,346.1900296,181.9123516,252.4589275,189.4170715,77.16686244 +401.8922746,216.2037216,309.0717374,205.6470352,174.4792095,330.1350305,380.0686557,187.652175,270.5704647,196.1358017,76.92236475 +387.5435971,212.2286586,300.4005109,202.9129481,173.5133741,324.1165309,372.4017681,186.0757365,265.854766,194.3548171,77.0089154 +380.6445978,211.1798279,295.5841348,205.3909772,173.7027312,329.9287655,366.7623397,185.1830763,262.5923831,194.3339321,77.01294545 +400.3377969,215.2185305,306.909517,203.8534338,173.3348032,322.7074923,370.619671,186.156713,265.957125,194.0983406,76.97808115 +380.4469609,210.1402492,293.2683805,202.3872515,171.8675976,316.8823729,351.3874571,182.9831255,255.4708152,191.0844989,77.10175751 +372.493228,208.1312815,290.659553,200.4675411,172.3601812,317.7184755,360.7952044,183.9503093,259.1624317,192.1236946,77.10742674 +386.9805911,210.3039592,297.7054592,197.1946805,170.9437627,304.0696421,354.4286789,183.3695501,257.4648048,189.9355678,77.1381661 +414.6482128,220.1102979,317.8255085,209.1254261,176.0152878,340.0959505,393.1400364,189.9393647,277.7083043,198.9507386,76.81327388 +375.7698291,210.2377772,294.0409637,205.3371062,174.5892769,335.1943543,375.0468517,186.3536665,266.215391,195.9395861,76.9950234 +393.0257283,213.3471372,302.8175699,202.8246887,173.1608149,321.3823923,369.1136867,185.7660024,264.7343579,193.7413491,77.0099444 +384.6905891,210.2163339,296.4702994,198.7447996,171.2538108,308.0017835,354.7169983,183.3069669,257.2649734,190.3606506,77.12541171 +401.0129494,215.6880396,307.5857517,204.9179369,173.7644634,326.1662645,373.2912244,186.6246697,267.3216017,194.8317357,76.95356049 +404.2464511,217.8787248,310.3333708,210.37573,175.5520844,341.3598692,382.0864874,188.1643967,271.6454451,197.7600192,76.85887731 +404.4310073,217.0249361,310.5426317,206.709974,174.6746512,332.2714196,380.9588314,187.8370017,271.1574602,196.4647709,76.90091645 +364.9102336,205.6948631,285.1727723,198.0425484,171.2261441,310.2636435,351.0444177,182.3845664,254.1846629,190.0659775,77.18034503 +385.3530951,212.0173259,297.4523906,204.8518463,173.1940332,325.5589631,362.5381156,184.653292,260.83873,193.4503998,77.02758187 +372.3552083,208.133221,289.512493,201.1494844,172.0403213,317.2788946,354.7150057,183.1485,256.3158514,191.4068027,77.11911232 +392.9837755,213.6231953,303.5574211,203.536201,173.7728083,325.3824387,374.6373525,186.6355151,267.4484329,194.8597815,76.98112618 +383.0243857,211.8999043,297.4432554,205.8703771,174.1154531,331.9699932,370.8383614,185.8483669,264.6758194,195.1023012,76.99016967 +373.8670778,207.7782086,290.5025581,198.2837571,171.4528745,310.1241418,354.6425571,183.1494784,256.5478116,190.5943012,77.14816412 +381.000869,211.2888069,295.9098955,205.3958315,173.870032,330.5346515,368.0231447,185.4615855,263.2981778,194.6363526,77.0094201 +391.8301978,213.7974972,302.4836198,205.4581507,174.0543432,329.8150607,372.8810497,186.4080559,266.4411507,195.1772834,76.9674286 +374.4132346,209.9022874,294.0268457,204.8459184,174.9039284,336.1597816,379.9966015,186.997601,268.4688455,196.5896642,76.98671505 +381.3502359,211.8946754,298.2420576,206.5459457,175.4067409,339.5676151,383.4898889,187.7261611,270.6268162,197.4827411,76.94273643 +397.4193921,215.0270903,307.3863852,204.5680283,174.5994306,329.8445156,383.7771734,188.0196271,272.0240124,196.4444223,76.9322339 +399.7250057,214.9954266,306.7591155,203.3991768,173.3292318,322.0680749,371.4468335,186.3022872,266.4283444,194.1283855,76.98032323 +384.6183018,211.6548341,297.1876387,203.9985962,173.009476,323.8533555,362.7197881,184.6401652,260.9621157,193.1958809,77.03539596 +377.4805833,209.18705,294.7206183,199.6578662,172.8405857,317.9320939,369.7744638,185.4358455,264.0485043,193.2492039,77.07518565 +380.0941554,211.0940765,294.9758711,205.7445442,173.6002059,330.0830802,364.6001592,184.9674119,261.7292041,194.1121602,77.0169058 +381.2680567,210.625808,296.9226001,201.9399708,173.5129013,323.8901517,372.3456187,186.0166178,265.5361286,194.335979,77.0308503 +383.1548627,210.265432,296.5201168,199.7116163,172.0683329,313.527816,361.2938873,184.3674583,260.4671676,191.8117727,77.08994151 +381.6978182,210.9359092,296.9293228,202.9688669,173.5898881,325.5448277,371.083693,185.7888649,264.7808267,194.3695893,77.02413508 +379.2258341,210.0840443,294.7107268,202.205496,172.9392258,321.8229978,364.7315098,184.7859165,261.6018981,193.1572855,77.0588343 +413.0351688,218.0739502,314.1454977,203.9903273,173.3384734,320.9493431,372.9875142,186.819427,268.0723457,194.2792856,76.94505402 +393.3364959,213.4697783,303.0294627,203.0213179,173.2285416,322.0090349,369.5521789,185.8656686,265.0217706,193.8636772,77.00429005 +415.5175035,219.4272591,317.617981,206.0438951,174.8207932,330.0693461,386.8626178,188.9910282,274.9695693,196.9977479,76.86738914 +392.2221445,212.4962184,300.7061852,201.1525679,171.8519615,313.2055069,357.5900804,183.9719895,259.1462481,191.3773634,77.0714624 +406.4972534,216.3745149,309.812169,203.3530458,172.8565765,318.6383953,367.4090809,185.7673046,264.7759466,193.3080959,76.98804541 +390.5279495,213.1945402,300.9164032,204.6981683,173.3556614,325.6855705,366.6811379,185.3725704,263.3042673,193.9005864,77.00046158 +415.8036977,218.6791012,314.8783555,204.424682,172.9394087,319.2061138,368.2419251,186.1501786,265.932629,193.5128194,76.9533856 +378.9823942,209.2482818,293.7380471,199.5002888,171.8487213,312.7650702,357.9945423,183.7217216,258.3983847,191.3164585,77.1143146 +377.9198968,210.5506933,294.7704051,204.9193838,174.0920036,331.4957841,371.3027523,185.8100251,264.5900251,195.0679223,77.00889409 +380.8559066,209.5177306,294.7896697,199.0093608,171.5329558,310.1405009,356.8682359,183.534324,258.0086034,190.8256656,77.12238854 +384.6324502,210.8724872,296.7637049,201.1141573,172.0808762,315.2662743,358.4577832,183.9702949,259.0578806,191.6969806,77.08218105 +387.9282766,212.4107177,300.0998876,203.5010197,173.4834639,324.7753506,369.9871563,185.8020514,264.7452322,194.2087499,77.00877289 +377.5133393,209.0893471,293.0008215,200.0858486,172.0215981,314.8342353,358.3294943,183.8794319,258.7217138,191.5968546,77.1063419 +393.2288439,214.636859,303.3110336,207.5911457,174.5732363,334.786405,374.2725317,186.6368801,267.0044903,195.9610382,76.93967393 +400.7369268,216.191731,305.8196107,207.9554846,173.5633751,329.1050739,364.2266756,185.2803383,262.6963233,194.131389,76.95907453 +382.5664141,212.0005373,298.4205418,206.0226366,174.9250637,336.337417,379.5911271,187.0792148,268.6985947,196.6279777,76.95930486 +398.7912117,215.9195908,306.8404513,207.5248742,174.7409506,334.4637767,377.5849124,187.3203418,269.144857,196.3887068,76.91702255 +410.0751411,219.6696335,316.1956697,211.0696535,177.1818371,349.0657198,400.4361706,190.9888434,280.8083493,200.8923067,76.77602637 +392.0550339,213.9157063,301.5736135,206.3236065,173.5544906,328.4523157,365.9352487,185.2956722,262.9450449,194.1450432,76.9848677 +386.1585381,211.743267,297.6618976,203.1760329,172.5958203,320.4723139,360.1122203,184.2472902,259.7946138,192.5023044,77.05158441 +389.8611976,212.9115745,300.5479231,204.0694236,173.3330014,324.4478513,366.7454012,185.3981675,263.2736215,193.8649748,77.01140233 +383.5629243,211.2107189,296.670805,203.061863,172.9161222,322.1123824,362.9794991,184.6410764,260.9818343,193.0675542,77.04831386 +366.3563417,207.056295,287.2770695,201.5376351,172.9326774,323.1519677,362.0739857,184.1520715,259.387356,192.964515,77.10329755 +381.9530378,211.5665157,296.4492225,205.6599448,173.9077808,331.1093464,368.3276424,185.4931383,263.4583737,194.70632,77.00200793 +420.7223191,221.6358691,321.3421707,209.7316748,176.030267,339.8042724,393.7238984,190.1559637,278.4133676,199.0320723,76.79580533 +393.4723321,213.8729648,302.2193477,204.9574001,173.2090359,324.3554858,364.7810887,185.1478287,262.5178678,193.6140723,77.00238195 +405.4880286,217.1629987,310.5622933,206.595947,174.3115089,330.2286034,377.2333299,187.2792484,269.3821643,195.790564,76.91479795 +417.6503367,220.1774495,318.5339173,207.2494164,174.9394206,331.9620857,385.8968863,188.8961987,274.551944,197.1297933,76.85380452 +375.8671912,210.0655496,292.7404356,205.2470683,173.7151665,330.6251689,365.3181632,184.9264806,261.5940056,194.2668866,77.03053858 +410.415744,218.3711273,313.7404252,206.8278189,174.5850654,331.220737,380.9013714,187.9980839,271.639277,196.3777655,76.88627931 +391.2746899,213.2526708,301.6792363,204.1212205,173.3725615,324.802071,368.5714569,185.6905872,264.3951804,194.0191451,76.99732187 +392.5275315,213.1062697,303.621244,201.8381982,173.3434551,320.8625451,374.561778,186.4778091,267.3340825,194.2447552,77.00691307 +412.8002432,219.4929061,316.2795596,208.5249417,175.5648424,337.3685104,389.0067199,189.2359943,275.5222289,198.1187317,76.84014767 +401.4925554,216.839398,309.657602,208.1509054,175.3178413,337.5442848,384.9918031,188.3030049,272.647137,197.5227099,76.88251422 +361.8202477,205.536756,283.9192533,199.9207897,171.9965792,317.2596937,354.5406735,182.9543696,255.7019009,191.3050589,77.15402638 +393.5583584,215.4722156,305.1521449,209.9918592,176.1061889,345.691992,386.4990247,188.5139248,272.8474797,198.6649411,76.86822247 +422.8540519,222.5631517,322.6878776,211.5947162,176.5922903,345.0740638,396.4821144,190.6990865,279.9949435,199.9654319,76.75414459 +381.4416112,210.4685031,296.2122636,201.5836208,172.987985,320.9087765,366.8531603,185.186822,262.8697904,193.3467986,77.0532715 +400.4680983,215.6012044,308.5078917,204.4924431,174.235036,327.6566425,380.3088347,187.5890608,270.6254744,195.7975082,76.93748475 +401.3643677,216.2199238,307.8973455,206.6741344,174.1118136,329.9859127,374.0745066,186.6818317,267.4928456,195.3417403,76.93490003 +388.8840346,212.7102873,300.9299146,203.7187523,173.5013213,324.8827309,370.9129725,185.8531653,265.1110096,194.2712952,77.00516885 +366.1730678,206.9472583,287.6828759,200.9733283,173.0884239,323.1508762,365.2590133,184.6301434,260.9804854,193.3359392,77.09918045 +383.6555585,210.6982681,297.5339501,200.6368606,172.6600558,317.6074205,366.6085575,185.1249878,262.9427681,192.8852345,77.06106773 +380.7838005,210.8220751,295.4482353,203.8775242,173.2642299,325.5792049,364.8732855,184.9287827,261.8236058,193.6393317,77.03575578 +432.5520446,222.3966148,325.9903029,203.8472791,173.4597301,318.464457,379.4267295,188.2293943,272.7416376,194.8516385,76.89438452 +391.5898263,213.1589631,302.1690135,203.204791,173.3898712,323.2048613,370.3460701,185.88359,265.0808428,194.1070127,77.00632566 +394.9899353,215.0566814,304.3531322,207.7174727,174.5544883,334.7464272,374.6613127,186.7570994,267.4263608,195.9684248,76.93063129 +369.3561142,208.2417999,288.1479424,204.2075634,172.9803197,326.7194782,357.5703813,183.6162571,257.4287429,192.8465728,77.08306352 +362.9083704,205.6344163,284.4339768,199.3668612,171.7885793,315.2268337,353.9508433,182.7606676,255.2921845,190.9688726,77.16028609 +413.5508722,219.4124662,316.2660701,207.8162128,175.1344538,334.3242946,386.0122147,188.8163622,274.249016,197.3845878,76.85457611 +413.1903424,218.7970379,315.9757976,206.4102728,174.7688717,331.6913245,385.4741253,188.6932551,273.7619097,197.0085734,82.43874992 +412.4968846,220.0647307,316.4701562,211.7645831,176.5221674,347.5674827,393.2486301,189.8989987,277.1091777,199.7913316,82.34958938 +426.0021862,224.7908021,327.6651668,216.499156,179.6874733,366.4166142,420.2116734,194.4827252,290.9765284,205.5409554,82.17453378 +394.3760628,213.7788547,305.1498647,203.5150513,174.102802,327.4137914,380.377767,187.4105302,269.9943243,195.737833,82.52607047 +406.4403679,216.68798,308.8898114,205.7862644,172.8896705,323.3042456,364.1092711,185.2143811,262.8570562,193.3412354,82.53780836 +385.4447372,213.2070698,299.655158,209.7996189,175.4542673,344.6636327,378.1212764,187.0211712,267.9278397,197.4484829,82.48142449 +418.6871321,219.663869,319.2290321,205.3667954,174.480053,328.030557,386.9414937,188.9742096,274.9739397,196.7217544,82.43741119 +409.2376647,219.5221725,314.9322431,212.4082091,176.9243947,350.9642099,395.0402372,190.1446331,277.700465,200.4233828,82.34215788 +426.735939,222.0283046,323.6260233,207.0799082,174.7518894,330.4675501,387.0783076,189.2802789,275.6164193,197.1333652,82.40134491 +411.155093,218.8635536,315.2385026,208.2637416,175.3682886,337.3522375,387.9582435,189.0323818,274.7256927,197.9324613,82.41251114 +398.8892231,216.8799523,309.3433311,211.0589507,176.9240044,350.9081282,394.7747455,189.893352,276.8275187,200.3690524,82.3820201 +410.2941531,218.8980976,313.1201514,210.025636,174.9324901,338.0388654,378.5259742,187.6301438,269.9914714,196.8911517,82.42765604 +408.2262009,217.2072037,312.1382464,205.4733269,173.9127015,327.269968,377.9477517,187.3168091,269.7336164,195.4360571,82.48776683 +421.9140221,222.1581987,322.8238698,211.1103053,176.8455787,346.5030179,401.1190678,191.274608,281.6587075,200.6687939,82.31082872 +407.0505785,218.0954582,312.300374,209.2657663,175.3907505,339.6704939,384.3550464,188.4407429,272.5813085,197.793299,82.41986573 +387.1951262,212.1929661,301.1914032,203.6635894,174.4275204,330.4280884,381.3223998,187.375136,269.7637531,196.2076233,82.5348916 +391.6744923,212.8754459,300.7344563,203.6550095,172.5902949,321.2102378,361.6376842,184.5176714,260.7111826,192.740875,82.59517405 +421.4110713,221.9676641,322.1319973,210.6938796,176.5259222,344.4760788,397.6519318,190.8081915,280.0573738,200.0561876,82.32993026 +406.2185648,217.5898449,312.6894143,207.7923804,175.4874188,338.1018452,389.5334726,189.0856722,275.0225915,198.1509452,82.42121498 +398.9533982,216.4738594,307.636438,210.4767831,175.7040802,344.3706622,383.5417984,188.0695852,271.4018776,198.1259955,82.42568628 +419.6862526,220.8446955,319.6213097,208.7855201,175.2797248,336.4834487,387.6494818,189.1635156,275.0987756,197.8517764,82.39153292 +397.7946836,215.213976,304.7716123,207.1248754,173.6712427,330.1849392,367.1560938,185.6325969,263.7421219,194.5521876,82.52663791 +390.1683829,213.1354552,302.2241364,205.1993073,174.2259632,331.2969972,377.3214306,186.7871119,267.9762173,195.7290225,82.52585493 +404.8214063,215.3830771,309.352495,201.5530966,172.6497742,316.4478564,370.5290572,186.1469576,266.1745093,193.3222186,82.56559517 +435.4557276,226.3263026,331.7728292,214.4877486,178.2097819,355.1445684,411.5783057,193.3258201,287.7289736,203.1243706,82.21015745 +393.7344176,215.4342565,306.0025038,210.3758336,176.6941339,350.0292246,392.4456631,189.3165101,275.1715339,199.899302,82.40730037 +411.7243494,218.7903529,315.2283319,207.6479502,175.0800539,335.0938762,386.008858,188.7481756,273.8443736,197.4505188,82.42491172 +402.6612092,215.3429964,308.2222935,203.2869111,172.9825975,320.7150495,370.7639574,186.1076292,266.0390436,193.7721107,82.54774052 +420.3770836,221.3524521,320.3580433,209.9009616,175.7607467,340.167877,390.4562231,189.6478065,276.4474747,198.6606296,82.36594646 +424.0411166,223.8492652,323.7082273,215.7723616,177.6985829,356.4891081,399.7295174,191.3450761,281.1128452,201.8045711,82.26028557 +424.2786956,222.8661004,323.7070719,211.8604015,176.7535923,346.7578033,398.5608735,190.9927311,280.6014701,200.432572,82.3065715 +381.4011714,210.3151146,295.9119708,202.454666,173.0102871,323.1721515,366.8513704,184.9920978,262.3821415,193.5249237,82.60908807 +403.7189575,217.4194112,309.7174064,209.8951354,175.0982901,339.666124,379.0318918,187.5477835,269.7633731,197.0939471,82.4413767 +389.635758,213.0897728,300.9009277,205.8717679,173.8697055,330.7540879,370.7790931,185.8646223,264.7997614,194.9291944,82.54167481 +411.6951225,219.0737642,315.9959803,208.3766903,175.772449,339.3579338,391.8722592,189.6578695,276.5862842,198.696877,82.39497094 +401.4539924,217.2831816,309.724756,210.9803599,176.1386268,346.5825035,387.8390908,188.8219114,273.7200757,198.9376408,82.40014971 +390.9118481,212.6301888,301.7184047,202.7205861,173.2321933,323.0107856,370.7513977,185.8622063,265.0422223,194.0640656,82.57574999 +399.0006687,216.5734966,307.9861772,210.4150509,175.8697887,344.9763806,384.8595598,188.3702231,272.1680611,198.4258729,82.42306004 +410.6054096,219.3040087,314.9707018,210.4758496,176.0844552,344.1264942,390.0690157,189.3970916,275.473129,199.0393491,82.38014716 +392.293226,215.0310086,305.9122473,209.8241052,177.0517242,351.0782564,397.5913883,190.0098134,277.5167965,200.6285822,82.39724048 +399.6571542,217.2530388,310.5806507,211.642084,177.5795042,354.7092491,401.2766937,190.8313721,279.9097689,201.5661256,82.34942371 +416.8723543,220.6796567,320.3008308,209.5677561,176.6708056,344.2276486,401.5806454,191.2157641,281.6260626,200.4171151,82.33799411 +418.8112425,220.5569363,319.3537648,208.2345669,175.2783957,335.7565084,388.4538233,189.2989761,275.5120714,197.8905759,82.39513355 +402.9623992,216.9729862,309.2742389,208.9635538,174.9259054,337.8010924,379.2483807,187.499949,269.757344,196.8648769,82.45118656 +395.22288,214.164777,306.3067401,204.21479,174.7780173,331.4297555,386.7520884,188.3465044,272.9606963,196.9928341,82.49447324 +397.9865716,216.3026394,306.8223447,210.7656821,175.6006403,344.4267082,381.1510936,187.7748955,270.2764493,197.8888002,82.43247059 +399.1450679,215.7622013,308.7840841,206.6409254,175.507892,337.7927123,389.4946336,188.9573781,274.47182,198.1557508,82.44864704 +400.8958548,215.3235485,308.1470305,204.2368525,173.911744,326.6236077,377.7172136,187.1764542,269.1400408,195.3957815,82.5134383 +399.8745857,216.1832583,309.0108443,207.8292779,175.5687956,339.6588697,388.1549027,188.7635044,273.8598193,198.1591624,82.43816491 +397.1104457,215.2248236,306.5327254,207.0003107,174.857403,335.6400108,381.3869605,187.6595227,270.4396867,196.8413405,82.47619547 +433.0649535,223.9496496,327.3257747,208.9091928,175.2655288,334.5193751,390.1384724,189.897921,277.3972473,198.0252964,82.3574372 +411.9982148,218.8987372,315.3911951,207.8346163,175.1656248,335.7361099,386.4527376,188.8303516,274.0498762,197.5981256,82.41992638 +435.9034697,225.4629062,331.2042776,211.0917447,176.8994299,344.2988091,404.7693229,192.2611342,284.6994886,200.998941,82.27147822 +410.749628,217.8232124,312.7796845,205.8726242,173.6483576,326.273511,373.8019696,186.7895539,267.8887513,194.8839514,82.49226886 +426.1884404,222.1352663,322.7898008,208.2857552,174.7163666,332.1141493,384.2499725,188.7995289,274.0780081,196.9382115,82.40071025 +409.3555973,218.6484773,313.2519258,209.7164175,175.3190903,339.7293542,383.4778298,188.2819659,272.1767007,197.6525124,82.41481936 +435.8535758,224.5753297,328.0382037,209.3705407,174.816213,332.618131,384.9475975,189.166304,275.101579,197.1696259,82.36598767 +396.6251462,214.3036923,305.3857454,204.0866981,173.644742,325.8847033,374.2888467,186.5351276,267.1711916,194.8210725,82.5367186 +395.8941272,215.7701219,306.7668958,209.9216986,176.1265465,346.0651288,388.3366237,188.7552807,273.5436414,198.9202319,82.42105824 +398.6305706,214.59098,306.4813,203.5691263,173.2891702,323.0488543,372.9922368,186.3623417,266.8423017,194.2787307,82.54266426 +402.539866,216.0411883,308.5744583,205.7918053,173.9011902,328.5170882,374.6589846,186.7741738,267.7499785,195.2311275,82.50326597 +406.3977858,217.7829345,312.3778277,208.3849458,175.445033,338.7725467,386.9665787,188.7721082,273.8019537,197.9718835,82.42316602 +394.6570127,214.0006699,304.2977162,204.5927317,173.8729449,327.9977614,374.5407078,186.5986991,267.1293643,195.1708201,82.53218403 +412.389735,220.3180451,316.1494507,212.8445878,176.6230682,349.5639237,391.5339642,189.7011015,276.2775716,199.8453609,82.3465432 +420.2343601,221.9743095,318.7020598,213.2499875,175.5004226,343.3763902,380.7254758,188.2123649,271.6509532,197.8247964,82.36855813 +401.4081019,217.4587865,310.9115988,211.2138929,177.0433439,351.3543434,397.3074369,190.1812426,278.0648116,200.6298498,82.36541237 +417.9629093,221.663133,319.8130231,212.6821698,176.807309,349.0999762,394.973265,190.4263428,278.4734616,200.311575,82.32412916 +430.7796007,225.9061469,330.2217693,216.5751216,179.4976234,364.7957315,419.4137982,194.4691292,291.0259084,205.2496546,82.16863784 +411.1335539,219.487112,314.1096043,211.5077362,175.5184532,342.7386967,382.6402114,188.2235066,271.8850815,197.8874888,82.39572266 +404.5953978,217.0776085,309.7661367,208.0979302,174.4646297,334.1631217,376.5231153,187.0913965,268.5905726,196.1020335,82.46878056 +408.3468682,218.3581015,312.9402045,209.0043356,175.2563247,338.4161755,383.529642,188.3519594,272.325566,197.5583393,82.42604581 +401.7415484,216.5108375,308.7770765,207.9535416,174.8045428,335.9579948,379.5612495,187.5347559,269.9148143,196.7005594,82.46466109 +383.2728374,211.9250514,298.6048764,206.2698061,174.8530023,337.1249671,378.6402814,186.951053,268.0536568,196.6296503,82.52371601 +400.2661717,216.899047,308.5901197,210.744902,175.9242811,345.6123731,385.2483513,188.4018693,272.3191812,198.5229394,82.41510069 +441.9774902,228.0108072,335.5997329,215.1706229,178.2048655,354.8421363,412.1621064,193.5983968,288.6210878,203.1831225,82.18918277 +412.2668479,219.4161395,314.7584673,209.984644,175.1089134,338.3194871,381.3294851,188.0942284,271.559898,197.2668724,82.41473897 +425.4516235,223.0327085,323.753481,211.7747788,176.3446198,344.5843031,394.6399116,190.4041083,278.7911078,199.6826432,82.32108091 +438.2787581,226.3139746,332.2889355,212.4241915,177.0202784,346.3516367,403.755814,192.1757381,284.3202277,201.1271247,82.25581275 +393.7132516,215.2583593,304.6169198,210.2971615,175.7090841,345.1224056,382.0487702,187.7811334,270.3400099,198.0360288,82.44512539 +430.5744766,224.3167631,327.0561153,211.9650832,176.6626968,345.5521101,398.5154009,191.1483483,281.0325495,200.3485801,82.29310545 +409.9386122,218.6525919,313.9263394,209.0324963,175.3479738,338.7309738,385.392938,188.6020966,273.22956,197.797251,82.41261995 +411.5218281,218.5394986,316.0932329,206.642695,175.2907033,334.5811016,391.8369555,189.5500608,276.6970536,198.0229856,82.41815643 +433.5013421,225.6619633,330.1368139,213.8766936,177.7026275,352.2768126,407.2009211,192.5846552,285.5071774,202.1984735,82.23789249 +421.7312595,222.8006258,323.0978983,213.5515983,177.4407388,352.6083857,402.9754521,191.5827439,282.4977176,201.5607738,82.27981495 +378.0273392,210.1256112,294.6155101,204.4393192,173.8603185,330.6816046,370.5186681,185.5678399,263.8507869,194.8692256,82.58088173 +413.1012554,221.2782843,318.2725534,215.4343963,178.3326227,361.2810467,404.5861586,191.7256219,282.3965777,202.8325236,82.2684123 +444.2917683,228.9921845,336.9452165,217.1242403,178.8638466,360.3546896,415.0196666,194.1115971,289.95961,204.2587505,82.14737071 +399.3533305,215.6155724,308.0536569,206.2953473,174.9206788,334.6102901,383.7173754,188.075112,271.7243696,197.0629522,82.47276369 +420.0167865,221.2801848,321.4159421,209.4740675,176.2739966,341.8289977,397.882849,190.730303,280.0744951,199.7154188,82.34542521 +421.1771843,222.0259473,320.9496004,211.9001888,176.1219809,344.3803524,391.2933382,189.7685169,276.8376308,199.1870965,82.34082113 +407.8745486,218.1928168,313.4354842,208.7348516,175.4548864,338.9844176,388.0175395,188.8922234,274.4101236,198.0322217,82.41439623 +382.9464209,211.7484848,298.9077418,205.6124103,175.0405374,337.0796653,382.0173867,187.4430136,269.6424921,197.0594359,82.52061915 +401.821778,215.8436709,309.374078,205.2958884,174.5689787,331.0578047,383.4133998,188.0177058,271.8178928,196.5784072,82.48013018 +398.7034746,216.0194313,307.3321249,208.7747516,175.2178088,339.6326513,381.491774,187.7801694,270.5524951,197.3631398,82.45239676 +453.7908443,228.6373663,339.925941,208.7663955,175.3667716,331.7604333,396.8981819,191.4665365,282.5039333,198.6106014,82.30133235 +410.4818904,218.6666502,314.7373923,208.1308662,175.3202253,337.1330281,387.4509321,188.9187443,274.3777544,197.8340687,82.41899211 +414.1780481,220.7229838,317.1238035,212.9409681,176.624543,349.4452258,391.8815243,189.7886976,276.5470507,199.8846878,82.33849923 +386.7210781,213.2715117,299.6653507,209.1981664,174.8977411,340.9504738,373.820671,186.3540505,265.9281955,196.4797992,82.50107015 +379.6350784,210.3299933,295.3486465,203.9504232,173.6219243,328.5842481,370.0043933,185.4267256,263.6450957,194.4989948,82.58500951 +434.0239599,225.4969657,329.9198766,213.0505329,177.240879,348.9265814,403.888156,192.0859888,283.9830715,201.4123203,82.25575249 +386.2220009,211.6194732,298.8234434,200.5573484,172.5501416,312.6409766,361.991835,184.9631128,261.2556816,192.1980331,78.70772932 +385.7223676,212.7506789,299.3039895,205.2493729,174.0917891,326.8538892,369.0551839,186.0318389,264.2932543,194.6616831,78.6267802 +397.9496681,216.8539424,309.3545405,209.3659382,176.9047775,343.9567338,393.4626108,190.0553941,276.6944318,199.7800928,78.46363377 +369.0665233,207.192312,289.0424578,198.0584468,171.9753799,308.7831113,357.3665942,183.8333325,257.8497591,191.0864711,78.79097389 +380.686302,209.9075762,292.7519715,200.0773525,170.9155061,305.2634105,342.9339897,181.9800804,251.6519178,189.0028755,78.7998451 +361.5221448,206.7594365,284.375112,203.5716823,173.1955581,324.4498864,355.3266728,183.5364502,256.0699675,192.6480475,78.75079646 +390.9916114,212.3787938,301.6589005,199.6593614,172.2574093,309.1778214,363.4199068,185.1969618,262.3990753,191.9031242,78.70786586 +382.7421779,212.2317214,297.9017133,205.7871739,174.4495053,329.9594403,370.5710232,186.226087,264.7595408,195.2183318,78.6195564 +398.7610252,214.5581286,305.8474085,201.1894412,172.5444823,311.6024427,363.6005561,185.5291201,263.0360785,192.3332235,78.67234368 +384.6659637,211.7714318,298.2971453,202.2442376,173.1041228,317.7680197,364.389661,185.3211591,262.2323204,193.0617939,78.68514801 +373.3503831,209.8600351,292.8786868,204.5789002,174.4632547,330.0181562,370.1732527,185.9789995,263.8797548,195.178138,78.65656606 +383.9296708,211.7520367,296.4057968,203.7229832,172.6924252,318.3936232,355.7150725,184.0440704,257.9193367,192.0975069,78.69750703 +381.7717523,210.2782162,295.4065571,199.7942745,171.7748058,308.5685862,355.3443081,183.7696856,257.7428705,190.7930279,78.75590707 +394.0561992,214.5741482,304.927042,204.6570818,174.3573424,325.7776532,376.242042,187.2334301,268.3927069,195.4157597,78.59087791 +380.683543,210.9508997,295.5125315,203.0056634,173.0843328,319.8013855,360.8260762,184.7053851,260.1232197,192.8668818,78.69034737 +362.2365414,205.669343,285.3157826,198.0925997,172.2308098,311.3879492,357.9908875,183.7193825,257.4857314,191.4461887,78.79872894 +367.1364212,206.4807461,285.3472203,198.174761,170.656987,303.3813896,340.5329852,181.3364153,249.6157139,188.4650372,78.85355777 +393.8991841,214.4633328,304.4534296,204.3246774,174.1130914,324.1550965,373.1039208,186.8608318,266.9754843,194.9222702,78.60735797 +379.7901193,210.5496381,295.8022474,201.779399,173.1708011,318.2627296,365.7091488,185.3041783,262.4102714,193.1971125,78.69421317 +373.3656397,209.5540221,291.3278288,204.1067993,173.3620536,323.9605124,360.196944,184.3982718,259.1303597,193.1724749,78.69823005 +392.175325,213.4392051,302.1210311,202.6280241,172.9831904,316.8861895,364.0079397,185.3759938,262.4899844,192.9270977,78.66396981 +372.7194823,208.5003162,288.9905475,201.164977,171.5970412,311.4728354,345.3663222,182.2883595,252.27807,190.044742,78.78875449 +365.3375832,206.6559025,286.4551169,199.5447859,172.0699888,312.2051536,354.6816102,183.29358,256.0974294,191.069267,78.79282182 +378.6568095,208.641875,292.910122,196.3620973,170.6895287,299.0302858,348.5565254,182.7351866,254.4750864,188.9486538,78.82539159 +406.7890352,218.3609907,313.2116316,207.6774492,175.6005105,333.7296114,385.8843127,189.1150875,273.9674938,197.6559754,78.49669174 +368.4714833,208.5589234,289.767984,203.9659742,174.2431358,329.0946103,368.0972121,185.452205,262.3898583,194.7408639,78.68092173 +385.0420731,211.6554412,298.2180255,201.6657853,172.8346652,315.7130488,362.5345966,185.036901,261.3780441,192.6079499,78.69570066 +376.9272612,208.6881426,291.995552,197.9247924,170.9879954,302.831618,348.9029009,182.744016,254.4603121,189.3656779,78.81114437 +392.7387489,213.8404711,302.7423998,203.5652359,173.4002058,320.1972451,366.4468228,185.7756406,263.6369504,193.6269422,78.6396561 +396.6966215,216.1856779,306.0657864,208.821732,175.1655759,335.1107302,375.0149744,187.3659185,267.9772577,196.5024924,78.54275852 +396.3761971,215.2213441,305.8029228,205.3187015,174.2867304,326.1021273,373.9000456,186.9946426,267.4415942,195.2189133,78.58576882 +357.1577879,204.0584308,280.668744,197.0505491,170.97429,304.884528,344.9830609,181.641064,250.9221156,189.0690141,78.86776294 +378.2927377,210.5654893,293.5173787,203.7025179,172.8885,319.9718811,356.3835165,184.0546157,257.8485536,192.3583496,78.71225278 +365.0686415,206.6186211,285.3694627,200.0993221,171.768239,311.8354524,348.6991182,182.486358,253.22744,190.3739755,78.80530458 +384.7539971,211.8052803,298.7675557,202.2331313,173.4255412,319.4855848,367.6813425,185.7809532,263.7245199,193.6737455,78.66739027 +375.8370484,210.3329016,293.3098125,204.5979002,173.7756317,326.0387876,364.1729342,185.1076449,261.2750126,193.936802,78.67482458 +365.982777,206.15472,285.9946315,197.317645,171.1989559,304.8736553,348.5820482,182.4471756,253.3546866,189.5882189,78.83556843 +373.6969459,209.6928313,291.790444,204.0787606,173.546936,324.6958024,361.3867957,184.7004867,259.8350299,193.4890692,78.69487349 +383.9450781,212.0250124,297.9253993,204.0695495,173.7017164,323.8280224,366.0292336,185.5529521,262.7271384,193.9795941,78.65348872 +366.9039652,208.1524438,289.5483456,203.4604888,174.5452375,329.9205857,372.7347926,186.0364448,264.459532,195.3664853,78.6725018 +373.9068934,210.1912932,293.909032,205.1081999,175.0421552,333.3296842,376.1703589,186.8175427,266.6935804,196.2449418,78.62774866 +389.4952837,213.2927256,302.6725913,203.3403048,174.2241664,323.7767331,376.7012023,187.2056315,268.3904569,195.2220277,78.61682414 +391.2665097,213.1381462,301.8252383,202.1153375,172.9800779,316.2417381,364.6358749,185.4727418,262.7980782,192.9510254,78.66670722 +377.1625262,210.0504354,292.8898943,202.8100474,172.689323,318.1244913,356.4006446,183.9295556,257.7108485,192.0786347,78.72094753 +369.3663934,207.409907,289.8393187,198.5932101,172.5221916,312.1768555,363.0262631,184.5797848,260.4169012,192.1272777,78.76197997 +372.5036206,209.3557398,290.6038786,204.3146404,173.2634063,324.0732014,357.8739919,184.1077517,258.0429558,192.9433419,78.70306738 +373.1583817,208.8186218,292.1736307,200.6805215,173.1847366,318.03557,365.4045028,185.1208176,261.7308617,193.1753,78.71783199 +374.8081318,208.47571,291.6537191,198.6136101,171.7724731,308.0112062,354.8355766,183.5740282,257.0066473,190.7309728,78.77729162 +374.1532185,209.3141074,292.5446581,201.8108039,173.2646144,319.7599434,364.4068056,185.02709,261.3378159,193.2290333,78.70967844 +371.659176,208.4681004,290.327833,201.0801908,172.6299319,316.1460167,358.2633611,184.048565,258.2614465,192.051719,78.74471241 +404.4823178,216.2309019,309.1554661,202.7548023,172.9776949,315.1926148,366.3345606,186.0507256,264.6113217,193.0954984,78.63095013 +385.1536818,211.696414,298.2924499,201.7875393,172.894872,316.2542699,362.8408338,185.0750711,261.4987448,192.7118262,78.69049351 +406.9443096,217.5354604,312.586541,204.6530448,174.4234441,323.9299232,379.5922438,188.1365931,271.1690606,195.7349315,78.55223845 +384.161917,210.811298,296.0275847,200.113092,171.5508838,307.7629119,351.5362554,183.302718,256.0561604,190.3114533,78.75778575 +398.576331,214.7521577,305.2467573,202.3031171,172.5248124,313.109651,361.2125784,185.155444,261.7735764,192.1902835,78.67298073 +382.7584537,211.4641422,296.3546985,203.4191904,173.0089749,319.7737865,360.1517338,184.5748876,259.8202377,192.7348202,78.68637392 +407.2228778,216.8471025,309.9036716,203.1901944,172.5828984,313.5010456,361.7244025,185.4352959,262.6268417,192.3478714,78.63894541 +371.3733347,207.718543,289.390999,198.5788031,171.5797224,307.479031,351.9582984,183.0962364,255.3888368,190.2942948,78.80048204 +370.6248127,208.9389912,290.5606161,203.6317626,173.7584607,325.5514207,364.504924,185.0124155,261.0322407,193.9035326,78.69416101 +373.2750345,208.0346596,290.4293582,198.1875905,171.2645904,304.9100665,350.9108626,182.9766648,255.1847583,189.8222077,78.80761383 +376.7293129,209.2277554,292.2496871,200.0378512,171.7915068,309.8167155,352.238479,183.2914928,255.8927907,190.6364178,78.76846788 +380.1620205,210.736704,295.6199744,202.2905023,173.154103,319.0034561,363.3367853,185.0398588,261.2975422,193.06232,78.6945223 +369.1938509,207.272852,288.2189218,198.88011,171.735944,309.290608,351.8150674,183.0402442,255.127977,190.5200967,78.79423803 +386.0297648,213.0755516,299.2234506,206.2610909,174.2199941,328.8242063,367.633457,185.9230206,263.6491208,194.7723423,78.62394036 +393.3768697,214.6092209,301.6445147,206.6430009,173.2143576,323.2541922,357.9895131,184.639373,259.6040397,192.9754467,78.64340407 +375.5289352,210.4318461,294.2410594,204.7739306,174.5618656,330.2310163,372.7521981,186.2772174,265.1402212,195.4186088,78.64367752 +391.0813836,214.2324367,302.5148697,206.0871171,174.3832875,328.4683962,370.6479826,186.5455542,265.5629548,195.1789758,78.60179579 +402.5707588,217.9672852,311.814469,209.5146824,176.7601513,342.5067064,392.9766786,190.1246225,276.9090342,199.5690277,78.45888224 +384.6844097,212.3027236,297.2902774,205.0586369,173.2053733,322.5413995,359.5553426,184.5839616,259.6838906,192.9835,78.66965303 +378.7112878,210.1744365,293.3725593,202.0720671,172.2862501,314.8772477,354.0103525,183.5869523,256.7050664,191.4128396,78.73715475 +382.3321325,211.341068,296.3311502,202.8816987,173.0206151,318.8417457,360.3466074,184.7303548,260.0677008,192.7499853,78.69679823 +376.2726587,209.7106775,292.5573392,201.9718682,172.6171799,316.5839318,356.7766767,184.0081085,257.9100397,191.9847249,78.73363024 +359.3102067,205.5784034,283.3028501,200.4436212,172.6566221,317.611161,355.7150837,183.436602,256.0893492,191.9006392,78.78943225 +374.6492215,209.935036,292.2304811,204.3387211,173.5696139,325.1626975,361.72077,184.6965757,259.941899,193.5399007,78.68755241 +413.0332997,219.9735174,316.8471764,208.3576436,175.6128836,333.4920385,386.6165234,189.4272738,274.9274461,197.7471436,78.47810979 +386.0340485,212.3381618,298.0454462,203.7853458,172.8899006,318.7296148,358.4898138,184.5385374,259.4799476,192.5025086,78.68696715 +397.6030438,215.4272259,305.9328698,205.2799878,173.9313869,324.1723459,370.4401369,186.5044794,265.8828538,194.5692299,78.59941859 +409.3432003,218.3577154,313.6825465,205.8612636,174.5394176,325.810773,378.7649723,188.095357,270.9003504,195.8689645,78.53800956 +368.8224029,208.5153978,288.7243813,203.9676838,173.3956787,324.7817537,358.8364064,184.1688462,258.1856362,193.1312604,78.71600145 +402.0111448,216.4591475,308.7763711,205.3642023,174.1870474,325.0077246,373.7769885,187.0983057,267.7711879,195.1132004,78.57178688 +383.0952428,211.4054306,296.8640794,202.777975,173.0209571,318.8295043,361.7731323,184.8211755,260.6905301,192.8365763,78.68377049 +384.6299375,211.4310129,298.8996419,200.8135455,172.9992647,315.0945181,367.9062868,185.7403066,263.9862882,193.0943925,78.6918885 +405.1840457,217.8441089,311.833124,207.191308,175.1642379,331.1690879,382.0161674,188.4998316,272.0494927,196.8583398,78.52321786 +394.4268039,215.3207425,305.4709095,206.9335264,174.9256853,331.3862408,378.2064354,187.6159513,269.3615122,196.2861708,78.56491289 +354.2133601,203.8754589,279.5603178,198.75546,171.732118,311.6905218,348.163598,182.1368004,252.1889948,190.2636406,78.84150759 +386.4008984,213.8239284,300.981622,208.4833623,175.7125694,339.3043043,379.3414742,187.6531438,269.0449301,197.3889812,78.55205648 +414.6758669,220.6500257,317.7935422,209.9348763,176.1389582,338.3334385,388.9047308,189.752254,275.8985756,198.6053432,78.43749324 +373.5293382,208.7474617,291.6133872,200.4121904,172.6757397,315.221577,360.259209,184.3745111,259.3262225,192.2255045,78.74010997 +392.3187805,213.8016521,303.6587555,203.2312788,173.8591598,321.6073175,373.2995202,186.756428,266.9645178,194.5775013,78.62260497 +393.816455,214.5789239,303.4621199,205.4263321,173.7393399,323.9827294,367.4798293,185.9662601,264.1818046,194.1423007,78.61899861 +381.6339764,211.1957507,296.6599754,202.6818448,173.16254,319.1257116,364.5181285,185.1996289,261.9961376,193.1337058,78.68928083 +358.7670616,205.3457429,283.4488143,199.8201384,172.803719,317.5103838,358.6348552,183.8184724,257.4153992,192.2465086,78.78603565 +375.5364002,208.9273338,292.6897655,199.5432644,172.3381419,311.8879262,360.0430705,184.3084982,259.4321281,191.7645527,78.74774408 +373.172744,209.1496228,291.0755822,202.6050105,172.9437787,319.7710552,358.2845862,184.1422678,258.3343862,192.5054484,78.72180289 +423.6517091,220.5258411,320.7372732,202.7156383,173.0753795,312.7478827,372.7343447,187.5159164,269.4136017,193.6483559,78.57916471 +384.1235782,211.6193554,297.8824936,202.1397586,173.0675993,317.5941411,363.9793722,185.2327009,261.9443611,192.9857596,78.69131452 +387.3695957,213.3351663,299.949341,206.2742135,174.1843199,328.6144001,367.7825667,185.9335051,263.7787711,194.746327,78.61560922 +362.6224968,206.8046559,284.3591,203.0286101,172.690169,321.0742585,351.4614764,182.9397753,254.2807009,191.7722273,78.76848351 +355.6612875,204.1087485,280.2086112,198.3856739,171.524112,309.7529238,347.895512,182.0469704,252.1017904,189.9508489,78.84682586 +405.4489503,217.6227223,311.5237536,206.4087504,174.7327938,328.1042413,378.8657442,188.0086798,270.5816609,196.1187631,78.53857823 +396.8748465,213.0017187,304.5565998,201.35805,171.9896155,319.9306531,370.8349902,184.9745076,265.1282954,192.7975377,78.06471049 +395.7434013,214.0924618,304.7277966,206.3199067,173.5767687,334.7939059,378.249145,186.0866733,268.3409736,195.3441763,77.98222837 +408.1922247,218.3895587,314.9986284,210.8024983,176.4541101,352.5797898,403.7304114,190.3409726,281.5194081,200.6094078,77.8165609 +379.1735405,208.3772808,294.4445548,198.6540553,171.3871267,315.8914238,366.0767466,183.7963102,261.5780747,191.6370553,78.14863208 +390.6408155,211.0257422,297.9040778,200.7369964,170.2924993,312.1129588,350.5483574,181.7297652,254.7242568,189.4537345,78.16017176 +370.2678858,207.7182072,288.8691062,204.5041841,172.6194589,332.0662837,363.9269247,183.4517568,259.7188934,193.2286435,78.10997798 +402.094087,213.8789597,307.8180934,200.3452537,171.7249348,316.5073257,372.265174,185.2443944,266.2739296,192.5214208,78.06266177 +392.6563379,213.5828652,303.2399904,206.9586953,173.9394433,338.0131853,379.9559736,186.3400057,268.9875788,195.923205,77.97560596 +409.7574907,215.9997068,311.7728748,201.9707412,171.9836476,318.786985,372.3444844,185.4842968,266.7787249,192.9228733,78.02864542 +394.7708977,213.0108423,303.6906303,203.0484095,172.5424527,325.1866665,373.2195131,185.246713,265.9381746,193.6596402,78.04134709 +382.9949827,211.1486162,298.0030267,205.7487099,173.9391344,337.9943259,379.6716226,186.1439457,268.2526347,195.8795907,78.01402251 +393.999647,213.0513387,301.7154693,204.7402227,172.1340355,325.9345822,364.2932531,184.0058243,261.6504447,192.6930387,78.05605817 +392.09109,211.5449863,301.0228794,200.4010848,171.2116977,315.7719522,363.6711948,183.6781816,261.2301083,191.3478084,78.1120728 +404.6374285,216.0632676,310.7996864,205.6860401,173.8686261,333.7878144,385.7125995,187.357099,272.6176994,196.1375388,77.94420565 +390.9332302,212.3269616,300.9816387,204.0590946,172.5427736,327.4662879,369.8352224,184.7847808,264.185938,193.5078806,78.04835597 +372.3600548,206.9420591,290.7764316,198.8375112,171.667136,318.7614302,366.9963601,183.836558,261.5757912,192.0489611,78.1569706 +376.833804,207.5163967,290.298736,198.7971851,170.01513,310.154623,348.2820195,181.1268491,252.8153082,188.8997313,78.21543804 +404.3389705,215.8653752,310.0912374,205.3398185,173.5879065,331.9006512,382.3891536,186.9048846,271.0439708,195.5959806,77.96254164 +389.980662,211.8617559,301.3743827,202.5914959,172.6383696,325.8897183,374.7306868,185.3346379,266.3265615,193.8375205,78.04936759 +382.9194783,210.7704332,296.4554571,205.105136,172.8301681,331.79839,369.0278501,184.4203946,263.0079841,193.8152257,78.05515224 +402.7990571,214.8692679,307.8943298,203.5380621,172.4493119,324.4277152,372.8628063,185.4035821,266.3896687,193.5620534,78.0199583 +382.4715763,209.6625797,293.9774421,202.074463,170.9895216,318.6200189,353.4748792,182.1924799,255.8040532,190.5568695,78.15057002 +374.8306422,207.7198808,291.5535782,200.139351,171.4959344,319.4948688,363.0936346,183.2003589,259.6177708,191.6211754,78.14979506 +389.3121826,209.8949791,298.5806963,196.8219105,170.0706954,305.652361,356.6055837,182.6159347,257.8849813,189.4207769,78.18452279 +417.2981737,219.847862,318.9937355,208.8460315,175.1205043,341.9088381,395.5415259,189.2079683,278.2302686,198.4049309,77.84916845 +377.9178734,209.8015105,294.8645712,205.0434999,173.7275487,337.1101008,377.4231271,185.6120774,266.6734803,195.4406334,78.03757464 +395.3983602,212.9698058,303.7619297,202.4984918,172.2749326,323.1049951,371.3719071,185.009769,265.1774733,193.2089134,78.05247914 +387.1040151,209.8274952,297.3985084,198.3943042,170.3767215,309.639029,356.9024749,182.5462952,257.6902252,189.8392665,78.16930514 +403.4100714,215.3289572,308.5413734,204.6088916,172.8802048,327.9100376,375.5393328,185.8728215,267.7477219,194.2966654,77.99583584 +406.6217092,217.5392667,311.3326457,210.1156375,174.6559248,343.2268617,384.371681,187.401378,272.0881868,197.2090392,77.89856877 +406.9341133,216.7024198,311.5824287,206.4148751,173.7866091,334.0578916,383.2697043,187.0923291,271.620273,195.9261184,77.94023992 +366.9779529,205.2022855,285.878338,197.6889202,170.3772729,311.9901877,353.2457226,181.6303782,254.5775532,189.5836732,78.22808628 +387.6460149,211.617453,298.3541964,204.5623508,172.3038148,327.3682191,364.7443811,183.8706934,261.2488728,192.90917,78.07049381 +374.5090618,207.6765483,290.2962674,200.8290852,171.1716552,319.0540344,356.9134562,182.3766878,256.7109093,190.8962513,78.16494997 +395.2937519,213.2358367,304.4723774,203.2102051,172.8936814,327.1318349,376.9380609,185.8915289,267.9001786,194.3369387,78.02380097 +385.3220277,211.5033562,298.3532854,205.5834776,173.2348169,333.8406338,373.1359113,185.0853894,265.1169688,194.5759625,78.03135887 +375.9926698,207.3120833,291.265321,197.9267547,170.5893983,311.8089234,356.8532371,182.3923904,256.9586701,190.0940809,78.19561825 +383.1548957,210.8562049,296.739265,205.1031095,172.9906985,332.3903598,370.2889485,184.6933448,263.7171552,194.1120216,78.0530696 +394.0878003,213.4005425,303.3689182,205.1580724,173.1748295,331.6211554,375.1559047,185.6532807,266.8678344,194.650585,78.01052047 +376.5950558,209.472566,294.8702086,204.5411889,174.0488091,338.0813367,382.4274103,186.2719882,268.9549997,196.1021363,78.02792319 +383.5632434,211.4870663,299.1325453,206.2518086,174.5371056,341.4874282,385.9147846,186.9913116,271.1190259,196.9765786,77.98311304 +399.9644794,214.7056232,308.4550139,204.2511916,173.7174154,331.6230848,386.175927,187.2911986,272.5385482,195.9196608,77.97016055 +402.1074486,214.6274432,307.7018958,203.0725155,172.4450545,323.7718465,373.686624,185.5515385,266.8566512,193.5952948,78.02325948 +386.9174674,211.2503478,298.0695275,203.698576,172.1298846,325.6501536,364.9359161,183.870138,261.3670473,192.6678578,78.07865701 +379.7901746,208.7721895,295.5985053,199.3019422,171.9862836,319.6702685,372.1314155,184.7143953,264.5281338,192.7626498,78.11789516 +382.2001844,210.6448286,295.748386,205.4570401,172.7296486,331.9453411,366.8131327,184.1986039,262.1058742,193.5949117,78.06171221 +383.4497339,210.1933365,297.7525631,201.6022619,172.6483264,325.6635939,374.6818046,185.2813481,265.9938944,193.8352891,78.07490589 +385.3841924,209.8338755,297.3443339,199.357678,171.2007149,315.2090791,363.5188631,183.6186668,260.8843766,191.3041007,78.13567451 +384.0001341,210.5336282,297.8363871,202.6490704,172.7152683,327.3468855,373.4156254,185.0411275,265.2471162,193.8550395,78.06603804 +381.4865569,209.6640342,295.5749738,201.8831905,172.0667647,323.6059027,367.0054637,184.0298049,262.0377672,192.6436643,78.10216871 +415.5902527,217.7604404,315.1935822,203.6683019,172.4432304,322.6054203,375.2048531,186.0661072,268.5061642,193.7283822,77.98665927 +395.6670182,213.0827495,303.944472,202.694681,172.3459033,323.7343533,371.8025096,185.1116046,265.4537645,193.334648,78.04748225 +418.1136828,219.1402877,318.7291448,205.7285862,173.9263657,331.7786897,389.1926098,188.2574398,275.4596624,196.4521558,77.90594586 +394.6177109,212.1115733,301.6201947,200.8219725,170.9707992,314.8746636,359.744558,183.2051937,259.5402036,190.8460659,78.11581497 +409.0859942,216.0596921,310.8779899,203.0367445,171.9578395,320.3060041,369.6155021,185.0027177,265.2140284,192.7536024,78.02899089 +392.877024,212.8091461,301.8244444,204.40071,172.4779311,327.4781614,368.9099747,184.6117325,263.7113818,193.3730795,78.04318415 +418.3823696,218.369666,315.9276156,204.1093982,172.0381586,320.8465716,370.3823417,185.3822457,266.3318287,192.950859,77.99519899 +381.2609064,208.8266195,294.604145,199.1556568,170.9744473,314.4610315,360.2258475,182.961775,258.8315843,190.8015801,78.15905081 +380.1289058,210.1270921,295.6276271,204.6210288,173.2194201,333.3717499,373.6273955,185.0550263,265.0371788,194.5546432,78.05104271 +383.257668,209.1254873,295.7220254,198.6600101,170.656121,311.8054709,359.0886285,182.7758127,258.4505544,190.3068436,78.16533585 +386.8969232,210.452831,297.6170016,200.7807569,171.201483,316.9695074,360.6385702,183.2019322,259.4588035,191.1719625,78.12724442 +390.2369429,212.0158524,301.0097194,203.1841608,172.6026281,326.5490482,372.2700622,185.0469442,265.189448,193.6834783,78.05138544 +379.5585015,208.6107567,293.7176606,199.7370569,171.158196,316.543459,360.5228574,183.1226045,259.1073208,191.0942857,78.15434 +395.5933918,214.2725671,304.2789905,207.3179546,173.6819131,336.6468819,376.5572604,185.8691683,267.4472034,195.4183438,77.98021619 +403.1707421,215.8416161,306.7920375,207.6936085,172.6639589,330.9093653,366.358234,184.4887803,263.0677509,193.5695351,78.00077798 +384.9679146,211.6339373,299.4000964,205.7379592,174.0530962,338.249582,382.0093887,186.3404816,269.1978322,196.1154067,77.99793628 +401.0884212,215.5489185,307.7859122,207.2380547,173.8465571,336.2788639,379.8614762,186.5568804,269.5860452,195.8430987,77.95861574 +412.6539938,219.3986176,317.3511877,210.8069911,176.2931079,350.9651165,402.9224268,190.2675896,281.3637043,200.3576379,77.81092184 +394.4643065,213.5492353,302.523676,206.0467303,172.6682724,330.2758049,368.1428429,184.5220072,263.3462756,193.6044086,78.02626728 +388.5034903,211.3482366,298.563654,202.8711119,171.7145045,322.2357565,362.3083669,183.4751541,260.1974487,191.9712915,78.09500117 +392.1404101,212.5139209,301.4518276,203.761965,172.4426174,326.2144629,368.9803655,184.6269128,263.7005905,193.3258547,78.05478847 +385.8501382,210.8044842,297.5643195,202.7521105,172.0316082,323.8877371,365.216428,183.8699441,261.4089559,192.5365278,78.09167617 +368.4127715,206.5790104,288.0361478,201.2158445,172.0683841,324.9881512,364.3784203,183.3927565,259.8267426,192.4654981,78.1485604 +384.17659,211.1493974,297.3037971,205.3738754,173.0331342,332.9781692,370.601042,184.7300626,263.8765909,194.1858077,78.04493451 +423.5044445,221.4119295,322.5945808,209.4587349,175.1263752,341.5998554,396.1152795,189.4196919,278.9459521,198.4731514,77.82981035 +395.8493286,213.4999916,303.1713464,204.6612692,172.3126212,326.120707,366.9721198,184.3673018,262.9296823,193.0639777,78.04455298 +408.0390326,216.8496946,311.6216493,206.3057008,173.4195451,332.0038303,379.5115808,186.5260723,269.8335763,195.2448181,77.95405913 +420.2902041,219.904488,319.673484,206.9500273,174.0398091,333.6919501,388.2075402,188.1539024,275.0347635,196.575477,77.89162406 +378.018361,209.6246982,293.5534319,204.9611686,172.842546,332.5121981,367.5867157,184.1579119,262.0071863,193.7501993,78.07421486 +412.9177472,218.0543381,314.7733434,206.5309662,173.69769,332.9754819,383.1809427,187.255191,272.0845069,195.8370674,77.92653039 +393.576953,212.856447,302.5601895,203.8099091,172.4979536,326.571594,370.8043657,184.9371951,264.8023854,193.4970649,78.04066692 +395.088445,212.7726615,304.669605,201.5028234,172.4661932,322.582365,376.914574,185.7465326,267.8331178,193.7253704,78.04597194 +415.484127,219.2326139,317.4614818,208.2458228,174.6654592,339.1725478,391.3858478,188.4953524,276.0390867,197.5665208,77.87586645 +404.1874963,216.5684249,310.8283652,207.8815405,174.424691,339.4049284,387.3905872,187.5596692,273.1667117,196.9786586,77.91712775 +363.7391482,205.0127273,284.5578589,199.5824663,171.1476931,319.0568923,356.7644695,182.1963286,256.0873346,190.8235403,78.2024001 +395.9392421,215.1253293,306.1509283,209.7356208,175.2254441,347.6426952,388.9011659,187.7704701,273.3348733,198.1380439,77.90639945 +425.546137,222.3246286,323.8721466,211.3354946,175.7029951,346.9061592,398.8538282,189.9742443,280.4938018,199.4212791,77.78935744 +383.6520043,210.0392597,297.04924,201.2499508,172.1191791,322.6657401,369.1427181,184.4397293,263.3097541,192.8386878,78.09780918 +403.0005492,215.2759795,309.5549612,204.1756767,173.3525355,329.409994,382.6521632,186.8549564,271.1102644,195.2690329,77.97661354 +403.9349945,215.9057135,308.9605195,206.3921824,173.2198166,331.7834645,376.3428821,185.9222733,267.939372,194.795149,77.97363661 +391.4199367,212.371319,301.9678979,203.4134461,172.6181856,326.6697046,373.2353837,185.1022916,265.5890753,193.7416081,78.04400035 +368.1822158,206.4582649,288.4137801,200.6386193,172.2309624,324.9762612,367.595292,183.8838858,261.4296604,192.8475804,78.1449458 +386.003885,210.2980169,298.4297644,200.2941097,171.7962693,319.3318448,368.9002482,184.3886692,263.3919015,192.3822468,78.10414666 +382.9660677,210.388263,296.2698604,203.5705076,172.3900531,327.3929689,367.1145614,184.1646737,262.2314243,193.1209397,78.07997096 +435.4049636,222.1730355,327.2224051,203.5146103,172.5539927,320.0322656,381.6599468,187.4890447,273.2138536,194.2851027,77.93256828 +394.0286037,212.7996743,303.1640623,202.8895056,172.5015671,324.9564308,372.6457291,185.1272694,265.5501296,193.5721555,78.047407 +397.3233471,214.6850039,305.2887302,207.4412138,173.6690538,336.5973517,376.9264315,185.9949403,267.8490179,195.4315643,77.97191293 +371.4577129,207.7783424,288.916701,203.9220269,172.1105414,328.6031954,359.7906028,182.8362064,257.818179,192.3324998,78.12802421 +365.0324994,205.1579531,285.1838962,199.0316114,170.9379417,317.015037,356.2000638,182.006079,255.7060293,190.4841664,78.20610798 +416.1648025,219.1308118,317.3904233,207.5254636,174.2375781,336.0932778,388.3369607,188.0735189,274.7325263,196.8342143,77.89211225 +425.996384,224.3338228,325.2262897,211.1251448,178.5297847,341.0755076,397.7071997,193.1959086,281.7548879,201.6454527,82.52747767 +424.8379964,225.5720666,325.5075718,216.738941,180.4097996,357.6772789,405.8507751,194.476454,285.2950233,204.6279385,82.44013732 +438.7561801,230.436826,337.0110837,221.7758153,183.7253532,377.4378632,434.0351586,199.2487982,299.8703825,210.6541795,82.26646754 +406.5246227,219.1504655,314.0207541,208.0812394,177.8106905,336.5547777,392.3187925,191.8444781,277.7744748,200.2760548,82.61463566 +418.6026602,222.0510767,317.6458789,210.3622984,176.5314011,332.0866422,375.171504,189.5291788,270.1809466,197.7500885,82.62515587 +396.5360211,218.42613,307.8535612,214.6404886,179.2548546,354.3891915,390.0043104,191.4656536,275.6530855,202.1124736,82.57035944 +431.798398,225.2590778,328.749299,210.0140589,178.2279693,337.3527729,399.121989,193.4673803,282.9648466,201.3524158,82.52731785 +421.4869519,225.0276057,323.900844,217.4440939,180.8260024,361.2118182,407.8038651,194.7482946,285.9918413,205.2856522,82.43229561 +439.9384055,227.6285539,333.1017504,211.786605,178.5192828,339.7860301,399.3280173,193.7827095,283.6003843,201.7828962,82.49043181 +423.5254029,224.3105338,324.2489922,213.0256298,179.181161,346.936721,400.2250235,193.532288,282.6603689,202.6378337,82.50241079 +410.8519372,222.3224191,318.1067645,216.0627119,180.802504,361.0950864,407.5912303,194.4941669,285.1483481,205.1958516,82.47111465 +422.6309897,224.3785911,322.0452029,214.8941015,178.7153785,347.6304277,390.5023781,192.1088244,277.8559034,201.546535,82.51609079 +420.6438035,222.6465198,321.2085732,210.0709504,177.6321097,336.4295102,389.6331256,191.7302864,277.4078288,199.9973802,82.57747409 +434.7569001,227.7657568,332.2261968,216.0711345,180.7530321,356.6890224,414.0158808,195.8964912,290.0259431,205.5558039,82.40231554 +419.4989008,223.6120578,321.3232004,214.1574087,179.1922044,349.4093646,396.6847425,192.9730468,280.6634389,202.4920785,82.50831471 +399.2820074,217.5955666,310.0413939,208.314439,178.1393806,339.7757445,393.4293617,191.8477586,277.7113196,200.7652909,82.62284646 +403.4798631,218.1551612,309.2515495,208.176861,176.1937845,329.8892712,372.681401,188.8142689,268.0177889,197.0842818,82.68149711 +434.1862916,227.5352709,331.4057599,215.6175478,180.4065951,354.4610767,410.4356145,195.4015522,288.3212739,204.8885709,82.42024048 +418.5675717,223.0590797,321.7574577,212.5691218,179.3062855,347.8150311,401.876744,193.6082859,283.0526429,202.8784213,82.5116488 +410.7811421,221.8748752,316.3504885,215.380875,179.5364408,354.2712485,395.6845067,192.5788682,279.3501115,202.8635826,82.5155301 +432.5456749,226.422539,328.9370632,213.6037084,179.0846024,346.1156055,399.9522014,193.6932299,283.1561571,202.5634038,82.48108972 +409.7621498,220.5843126,313.3786924,211.8515583,177.3487186,339.3007944,378.610561,190.0159239,271.3245625,199.0261566,82.61292606 +401.8065724,218.4212065,310.8320459,209.8024303,177.9556095,340.5718729,388.9937655,191.1915265,275.6054786,200.2952285,82.61552729 +417.4873683,220.8182783,318.4587261,205.9696868,176.2536707,325.019805,381.9233441,190.4985779,273.7049937,197.6956906,82.65274139 +448.4574355,231.9691827,341.2542465,219.5804679,182.1934321,365.6691252,424.8769251,198.0048148,296.273005,208.1358231,82.30242149 +405.478353,220.8387163,314.6898937,215.3358913,180.5628947,360.1924156,405.0476706,193.8949421,283.3932169,204.7097604,82.49704452 +424.2874696,224.2833995,324.3400036,212.4062426,178.86897,344.605634,398.2482884,193.2502938,281.8083401,202.1237901,82.51414777 +414.9040523,220.6987332,317.1124821,207.7528015,176.630084,329.4683429,382.1060678,190.445985,273.4799566,198.2021254,82.63622165 +433.3043747,226.9677292,329.7089313,214.8089796,179.5912448,349.9940953,402.982173,194.2183628,284.6550902,203.4198521,82.455305 +436.4931137,229.3916408,332.7575288,220.9125573,181.6491004,366.9186911,412.662443,195.968614,289.451696,206.7421738,82.35086824 +437.156616,228.481613,333.0781039,216.8521396,180.6539086,356.9072782,411.4023141,195.6083758,288.9409834,205.3038402,82.39734661 +393.1570608,215.6252743,304.5080263,206.999037,176.6301961,332.1014249,378.2027288,189.3457813,269.9238733,197.917803,82.69604797 +415.4627873,222.741971,318.2905327,214.6889313,178.8931949,349.2037817,390.8576159,191.9811977,277.4350176,201.7490953,82.53066508 +401.2540548,218.3795158,309.4008482,210.5255785,177.5675894,339.936977,382.2658797,190.2462344,272.3557164,199.4346921,82.6296273 +424.4219154,224.6344881,325.229341,213.2337791,179.5951799,349.1400474,404.483314,194.2275689,284.8075059,203.4403222,82.48415724 +413.2664113,222.6649701,318.4201564,215.8918575,180.0005772,356.547241,400.1657216,193.3463126,281.7079677,203.7167763,82.49039047 +402.9712993,217.9819251,310.4658163,207.2491364,176.8701165,331.8893282,382.2631862,190.2386056,272.6438209,198.4862829,82.6626884 +410.7915642,221.9482557,316.6120911,215.3169711,179.700407,354.8246196,397.1206258,192.8817154,280.138337,203.1544432,82.51206034 +423.0573368,224.8324338,324.0234432,215.4177945,179.9275819,354.0620918,402.6008771,193.9662335,283.6668965,203.8112274,82.46926846 +404.1594086,220.4683048,314.7267209,214.7978844,180.9408513,361.3814979,410.4539608,194.6232438,285.8831885,205.4797545,82.4876264 +411.6060492,222.6985816,319.4101237,216.6750054,181.5084969,365.1206203,414.3138802,195.465834,288.3214505,206.4739698,82.44004671 +429.5676476,226.2310601,329.6127395,214.4456944,180.5647073,354.2795587,414.4594599,195.8195911,289.9338354,205.2762436,82.42948911 +431.8249236,226.1677757,328.7405867,213.0647614,179.0758739,345.3828625,400.8984635,193.8472419,283.6604845,202.5948137,82.48408386 +414.97841,222.3777973,318.0547298,213.7665693,178.7090603,347.373053,391.1526522,191.9628226,277.555279,201.5176895,82.54035426 +407.5980197,219.6315124,315.4034972,208.8739152,178.5232884,340.8997488,399.0008957,192.846232,280.9916329,201.6148214,82.58384536 +409.9176148,221.7417218,315.5428036,215.7269607,179.4143168,354.330391,393.34755,192.294525,278.2985144,202.6004152,82.52097031 +411.5431315,221.2583484,317.8327255,211.4432826,179.2989737,347.5017522,402.0079168,193.508644,282.6570501,202.8494068,82.53733609 +413.4721285,220.8124704,317.2494985,208.875695,177.6050448,335.7864524,389.6358763,191.6290826,277.0002496,199.9224986,82.60114712 +411.9308388,221.5908968,317.8648188,212.6151617,179.3845676,349.3714009,400.4787604,193.2788785,281.859787,202.8733208,82.52797251 +409.1016349,220.611429,315.318614,211.7382575,178.6272913,345.1485377,393.4104641,192.1288841,278.2900142,201.4766768,82.56531285 +446.4414577,229.6166106,336.9247689,213.7193708,179.0680296,344.0688796,402.5546232,194.4421136,285.5178494,202.7413333,82.44685377 +424.6869671,224.4343686,324.577251,212.6335776,178.9558926,345.3148889,398.7825037,193.3538857,282.1023651,202.2807039,82.50884231 +449.3632832,231.1752434,340.9171891,216.05988,180.8015945,354.3932528,417.8943763,196.9088223,293.1849585,205.8858559,82.36228747 +423.3295416,223.3001118,321.8708518,210.5073174,177.3448315,335.346494,385.3989136,191.1971282,275.5430827,199.4037074,82.58061634 +439.0096936,227.6529228,332.0479698,212.986316,178.4937899,341.4376233,396.2310584,193.2595102,281.8736547,201.5902464,82.49054848 +421.7277615,224.1524364,322.2774518,214.5872885,179.1267381,349.4745665,395.6167101,192.7955898,280.1612699,202.3608478,82.50422439 +449.2462197,230.2381566,337.619006,214.1761715,178.6008405,342.0569349,397.1392399,193.6726578,283.0823333,201.846713,82.45524836 +408.6459102,219.63899,314.1398719,208.6342983,177.3284844,334.8755303,385.8780329,190.9185637,274.7538685,199.3098559,82.62497466 +407.658992,221.1479246,315.4386437,214.8213453,179.9767357,356.0286506,400.7421711,193.2904133,281.5953991,203.6855403,82.51087731 +410.6718045,219.9064331,315.269433,208.0541899,176.9619888,331.9183364,384.4640838,190.7126142,274.3166445,198.7453093,82.63165415 +414.8237949,221.4581444,317.4703636,210.4489105,177.6091622,337.6705768,386.3780078,191.1906837,275.4377539,199.7618457,82.59131963 +418.7080309,223.2438008,321.3509113,213.1948958,179.254271,348.4438475,399.2710193,193.2894244,281.8102838,202.6772909,82.51251244 +407.0242731,219.4627468,313.2271102,209.2819248,177.5544155,337.1956346,386.4313501,191.0488498,274.9972492,199.676066,82.61883438 +424.4265861,225.7461388,324.957285,217.8153013,180.5148004,359.6308523,403.9808423,194.2465093,284.3230156,204.6744876,82.43696405 +432.4787357,227.437241,327.5863765,218.1883668,179.3353871,353.1479873,392.6505371,192.6852132,279.4368415,202.5548273,82.45833833 +413.2150537,222.8566299,319.6935747,216.1517135,180.9566632,361.5904026,409.9534223,194.7628925,286.2453171,205.5068078,82.45701846 +430.4028525,227.1731231,328.8244105,217.6896466,180.6995278,359.1890422,407.709751,195.009504,286.6930191,205.1516858,82.41378041 +443.4560497,231.5056321,339.528444,221.782276,183.5416743,375.7001993,433.033841,199.1970377,299.7342517,210.3589175,82.26146807 +423.2629903,224.9360672,322.9827705,216.4096254,179.3518591,352.5520382,394.6730632,192.7171628,279.7577695,202.6236644,82.48579482 +416.6528725,222.4714926,318.5609465,212.83175,178.2187193,343.5459747,388.2300931,191.5204381,276.2732043,200.7056599,82.55782483 +420.5019007,223.7653012,321.7585854,213.7971176,179.0532459,347.9619563,395.6347106,192.8291015,280.1782611,202.2303731,82.51495382 +413.6291057,221.85444,317.4523619,212.6798176,178.57495,345.3759728,391.4213837,191.9722143,277.6263521,201.3241468,82.55370286 +394.6061867,217.1666813,306.9572996,210.9732536,178.602913,346.5804364,390.5394419,191.3876354,275.8014051,201.2218063,82.61206843 +412.1256571,222.3068462,317.2990113,215.6668311,179.7622122,355.5370406,397.4869778,192.9251994,280.3213985,203.2711081,82.5045562 +454.9879881,233.6325728,345.0893016,220.2367192,182.1997059,365.3268364,425.3812731,198.2527333,297.0589937,208.2044689,82.28224085 +424.4245741,224.8202529,323.5842242,214.7885222,178.9116553,347.858132,393.2939858,192.548288,279.3106631,201.9402911,82.50420863 +438.2433397,228.6169691,333.0617124,216.7193346,180.2268042,354.5909026,407.2310011,194.9806638,286.9754752,204.5174198,82.41191019 +451.5963541,231.9975892,341.9120502,217.4181349,180.9379422,356.4964059,416.7848831,196.8092274,292.727982,206.0309978,82.34700948 +405.2487876,220.588512,313.109868,215.1842994,179.5294433,354.9583538,394.1284728,192.2717422,278.2266295,202.7463554,82.53428501 +443.8041937,230.0151137,336.622775,216.9843433,180.5505312,355.6873988,411.4132452,195.7821515,289.4613337,205.2127161,82.38333299 +422.5732785,224.21658,323.1080538,213.9193898,179.1513443,348.5011299,397.729004,193.1440026,281.3482584,202.5077867,82.5016198 +424.099894,224.0296896,325.3216885,211.3376942,179.0987692,344.1584085,404.1970232,194.0636428,284.7128854,202.7382746,82.50910177 +446.3059002,231.2417528,339.4895415,218.8936045,181.6667403,362.6196721,420.2331964,197.2151976,293.8591363,207.166302,82.33028846 +433.9674092,228.2619023,332.1496851,218.5184932,181.4037437,362.926581,415.7459194,196.1719725,290.6736335,206.5150649,82.37300162 +389.5573117,215.4236182,303.0611439,209.1182896,177.5320433,339.9343275,382.1768326,189.9735775,271.5624074,199.3455186,82.66765064 +425.1606569,226.7636237,327.1758827,220.5835219,182.3174179,371.9421372,417.6534979,196.3810303,290.8302842,207.8307752,82.36005313 +457.6517486,234.7568328,346.670024,222.3813409,182.8802276,371.2138221,428.5764405,198.8489895,298.7393497,209.341943,82.23987911 +411.6277169,221.0676128,317.0011269,211.0353876,178.6804794,344.1097474,395.8939482,192.5741168,279.7082191,201.6959502,82.56123458 +432.906274,226.8767898,330.8210168,214.3540607,180.1426636,351.7859055,410.6407997,195.3238687,288.3572117,204.5376284,82.43630013 +433.6638461,227.540823,330.0817789,216.8152938,179.9990569,354.3353595,403.6695066,194.3092291,284.8743677,204.00336,82.43200816 +419.9397825,223.5836517,322.331342,213.4829289,179.2858879,348.6534735,400.1603724,193.3767636,282.2664967,202.7662868,82.50563095 +394.5076554,217.0519268,307.4150659,210.3342462,178.7923091,346.6094414,394.1490341,191.918796,277.5598465,201.6683688,82.60869219 +414.3188134,221.3363697,318.5090706,209.9813613,178.3119903,340.4771238,395.5099229,192.503978,279.7751687,201.1919132,82.56927293 +410.7075705,221.4357873,316.1000778,213.6180525,179.0091217,349.3130416,393.6124137,192.2748972,278.4859734,202.0343145,82.54110487 +467.8054217,234.3984159,349.942112,213.5135783,179.1798941,341.2196814,409.4758599,196.0182081,290.6733445,203.3564663,82.39200011 +422.7200906,224.0802847,323.6733839,212.8617336,179.1282659,346.6708346,399.6093408,193.4031344,282.2478982,202.5304544,82.50903931 +426.5137866,226.2415456,326.1242966,217.9706854,180.5141787,359.6034689,404.4681916,194.369554,284.7447636,204.7245454,82.4285331 +397.8938775,218.5049385,307.9059516,213.9990077,178.6640084,350.5172284,385.4554702,190.7683013,273.5503138,201.0897513,82.58967471 +391.0574417,215.5823983,303.782208,208.542075,177.291629,337.7246767,381.4371245,189.7961329,271.1961309,198.9673976,82.67308729 +447.1234266,231.1479787,339.4268756,218.0760275,181.1743141,359.1797392,416.9226768,196.7234159,292.3916323,206.3380642,82.34720119 +428.0750013,224.8802366,326.7866833,211.4800028,178.5724236,342.5264655,398.3330946,193.2770039,282.1795832,201.8459843,83.93966733 +427.2724653,226.1832792,327.2589703,217.1222959,180.4708408,359.2692974,406.4810942,194.5646447,285.7054232,204.8480997,83.85092899 +441.4068348,231.0968266,338.9558659,222.0980407,183.8431158,379.1307989,434.8574345,199.3967315,300.3321537,210.9669869,83.67283005 +408.4306595,219.6448422,315.4521697,208.4480377,177.8479982,337.9767047,392.8480076,191.9037144,278.1508861,200.4642393,84.02974675 +420.7789477,222.6585328,319.2843122,210.801417,176.5509952,333.5424149,375.8118381,189.6062183,270.6667287,197.9145972,84.03838875 +398.9123606,219.0164797,309.6106038,215.0568794,179.310424,356.0465358,390.5318745,191.5241627,276.0061903,202.3113705,83.98221668 +433.8313746,225.7836401,330.1746334,210.3788113,178.259037,338.7153414,399.7554975,193.5308518,283.3713445,201.5395181,83.94221797 +423.9127079,225.6237079,325.6725426,217.8008498,180.8990219,362.8318745,408.4186134,194.8285649,286.355553,205.5202834,83.84175253 +442.0856777,228.2220295,334.7246303,212.1607329,178.5542819,341.2312267,400.0090782,193.8961785,284.1201148,201.9793668,83.90223105 +425.7740601,224.9105025,325.9266874,213.4273123,179.2234691,348.4643991,400.852451,193.6424296,283.1595981,202.8366733,83.91503853 +413.1507893,222.8711277,319.8406805,216.3856044,180.8863024,362.7236783,408.187456,194.5599156,285.4543056,205.4418773,83.87981992 +424.9391054,224.9743274,323.7654569,215.2732843,178.7614207,349.1651853,391.0907768,192.1762311,278.2423242,201.7432604,83.92626487 +422.7896388,223.2100237,322.7104453,210.4933702,177.6552741,337.8379522,390.2717635,191.7967218,277.8509255,200.1685804,83.99324819 +437.1553438,228.3688923,333.9104023,216.4414223,180.8145227,358.2200038,414.6958615,195.9939174,290.4583187,205.7838577,83.81400453 +421.6955167,224.1579736,322.9657025,214.4913868,179.2497549,350.9265866,397.2466045,193.026279,280.9835913,202.7047185,83.91828192 +401.121736,218.0272181,311.3983681,208.6254106,178.1927734,341.1911751,393.9143129,191.8588873,277.9384142,200.9694077,84.03695328 +405.4521948,218.6975796,310.7896592,208.5788484,176.2213503,331.3269182,373.2199881,188.8643928,268.4101455,197.2559268,84.0949364 +436.541257,228.1536649,333.1634325,215.9849334,180.4674507,356.0194793,411.1216445,195.5238592,288.8136433,205.1170653,83.83042827 +420.7791927,223.6135248,323.3212162,212.9539856,179.3518014,349.3069605,402.4776429,193.6789276,283.4499418,203.0779765,83.92562641 +413.1817634,222.4583384,318.042745,215.7790782,179.5906545,355.857932,396.2679177,192.6280182,279.6850271,203.0657608,83.92760658 +434.8248485,227.0129574,330.5856777,213.9793006,179.1296198,347.5988941,400.6289179,193.777066,283.5910755,202.7669148,83.89275564 +411.8879712,221.1395193,315.0342265,212.2200245,177.3921705,340.8032928,379.1761162,190.060312,271.6691761,199.2159781,84.02294879 +403.9727792,218.9699485,312.3482184,210.2318467,177.9886802,342.0492976,389.5742912,191.2442549,275.9950058,200.472385,84.03188783 +419.3196362,221.3286153,319.8515148,206.3532164,176.275883,326.3745164,382.5537633,190.5620743,274.1427161,197.8698928,84.06785523 +451.0983305,232.6679684,343.170162,219.9685438,182.272759,367.2913795,425.7008354,198.1724869,296.8591713,208.3986227,83.71150024 +407.8360667,221.3837513,316.3711851,215.6896592,180.6401101,361.8190232,405.6595734,193.9383307,283.6720542,204.9429506,83.90803832 +426.459351,224.8557993,325.9654363,212.7817229,178.912137,346.0982801,398.8612793,193.3413295,282.2559802,202.3233862,83.9263123 +416.899136,221.2539139,318.5882494,208.1804741,176.6459837,330.8570101,382.6995113,190.5225793,273.9560689,198.3649563,84.05236327 +435.6056573,227.5526328,331.3878915,215.1568016,179.6475202,351.4977301,403.6481425,194.2966497,285.047966,203.638089,83.86540787 +439.1353335,230.0836481,334.74508,221.29638,181.7288872,368.6089331,413.372304,196.1112879,289.9626074,206.9941277,83.75779672 +439.5856776,229.1036396,334.8321246,217.2177538,180.7169931,358.4592845,412.086119,195.7140392,289.3878181,205.5342466,83.80749025 +395.0028829,216.0744187,305.8545158,207.3491686,176.6694536,333.4845123,378.6832279,189.3379208,270.1480276,198.1001364,84.11130423 +417.8797617,223.3891524,320.1010277,215.1331465,178.9338953,350.8129065,391.4787798,192.089265,277.9438569,201.9386037,83.9424099 +403.400163,218.9285029,310.983524,210.9301078,177.605415,341.4351486,382.8180281,190.2896059,272.7112771,199.6158766,84.04335852 +426.5772666,225.1762956,326.8348892,213.5626744,179.6542396,350.6364062,405.0920077,194.3012765,285.1760869,203.6609521,83.89497399 +415.6792757,223.2714358,320.1703984,216.2980153,180.0567353,358.1721003,400.7494789,193.4291781,282.1165226,203.9248924,83.90210593 +404.8584219,218.4705785,311.8972508,207.6127099,176.907583,333.2992949,382.825927,190.2738482,272.9786486,198.672321,84.07682755 +413.1324759,222.5359658,318.369328,215.6972249,179.7612862,356.44266,397.6990244,192.9569565,280.5171398,203.3680107,83.92235195 +425.3927597,225.4128214,325.7462491,215.76675,179.9929574,355.6242942,403.2515989,194.0388976,284.032216,204.0369446,83.87880426 +406.4064277,220.9693918,316.3030142,215.1230562,181.0222676,362.9780741,410.9984656,194.6540029,286.1100917,205.7189511,83.89957046 +413.9488566,223.2540813,321.1225876,217.0138703,181.5932596,366.7724423,414.8944652,195.5412693,288.6487362,206.7225833,83.85037648 +431.8613747,226.8148255,331.2498681,214.8182172,180.6221604,355.8021061,415.1147846,195.9255137,290.3918415,205.4990935,83.84228557 +433.9841572,226.7238703,330.3425175,213.4010298,179.1259153,346.8466537,401.523236,193.9223855,284.0505829,202.8053593,83.89487376 +417.2986544,222.9690186,319.7348621,214.1731016,178.7519517,348.9135977,391.7553066,192.0281546,277.9527691,201.708635,83.95268925 +409.516579,220.0817691,316.7433653,209.2043143,178.5717719,342.2951608,399.5401778,192.8680046,281.260494,201.8159436,83.99929175 +412.2259042,222.2907013,317.2282592,216.073179,179.4773242,355.9011907,393.8763284,192.3217721,278.5488722,202.8123315,83.93075277 +413.5800582,221.7432338,319.3350106,211.7540084,179.361977,348.979647,402.5759203,193.5486228,282.9381063,203.0701244,83.94918847 +415.3724264,221.2905563,318.6627951,209.2065065,177.6461932,337.1819486,390.1840175,191.6616071,277.3088217,200.1153721,84.01447078 +414.1357026,222.1434613,319.4720028,212.9950434,179.4361965,350.9073844,401.0616916,193.3516967,282.2496205,203.0785659,83.94110796 +411.2573678,221.1531316,316.8910428,212.1203866,178.6720565,346.6537895,393.965787,192.1851398,278.652974,201.6705322,83.97875657 +448.7227222,230.2338632,338.6100152,214.0884346,179.11044,345.5329681,403.2817494,194.5530425,286.0210073,202.9484544,83.85748516 +426.8305473,224.9865918,326.1786796,212.9831094,179.0043458,346.7963594,399.3813057,193.4288687,282.4965704,202.4865172,83.92026029 +451.7001942,231.7977678,342.6517389,216.3968887,180.8652374,355.893892,418.6042026,197.04242,293.6886955,206.1263384,83.77184839 +425.4471942,223.8647458,323.4175629,210.9059041,177.3714318,336.7698829,386.0270948,191.2611277,275.9712743,199.5793038,83.9942345 +441.3420488,228.3040211,333.7684972,213.4220087,178.5210277,342.9244412,396.9594532,193.3896079,282.4649708,201.7746248,83.9032577 +424.0797869,224.7369608,323.9468683,214.9711119,179.1763033,350.9985697,396.2575327,192.8518632,280.5245819,202.5626603,83.91582089 +451.5219618,230.8674204,339.3121977,214.5577559,178.6334445,343.5105459,397.8082887,193.7828193,283.593781,202.0392959,83.86591454 +410.6757811,220.1832008,315.6607617,209.040747,177.3584719,336.3205512,386.4624574,190.9893115,275.1872438,199.4881601,84.03981509 +409.9640388,221.7096229,317.1176366,215.1968967,180.038593,357.6339699,401.2893848,193.3525169,281.9367402,203.8994179,83.92267309 +412.6622206,220.4576295,316.7460932,208.4824388,176.9792281,333.322989,385.0016856,190.7927366,274.7868174,198.9083644,84.04818376 +416.8773564,222.0015685,319.0190888,210.8292437,177.642787,339.122728,386.9294008,191.25279,275.834601,199.9440719,84.00441178 +420.9316287,223.8120214,322.9978963,213.5679882,179.3050579,349.9722272,399.8771698,193.3694788,282.2190913,202.8836461,83.92439687 +408.8912953,219.9186915,314.6546107,209.5841534,177.6047422,338.6096036,386.9360934,191.0606586,275.2332539,199.8768731,84.03043884 +426.9929462,226.4139051,326.8476321,218.2382268,180.5755384,361.2974033,404.6689703,194.3681001,284.8293652,204.894527,83.84696194 +435.087351,228.1347069,329.4912172,218.6372816,179.3763641,354.7589178,393.3228091,192.7967024,279.9549576,202.7470188,83.86828323 +415.7224108,223.466189,321.4290232,216.5686421,181.0234723,363.2440046,410.6336115,194.8489499,286.6602655,205.7312838,83.86986294 +432.8439098,227.8167918,330.7030561,218.058402,180.7694697,360.8228712,408.3771497,195.139326,287.1853077,205.3888986,83.82172822 +446.2136857,232.2226558,341.5371013,222.1675211,183.6451588,377.4195459,433.9177826,199.3821828,300.3327556,210.6553713,83.66936719 +425.7677675,225.5772214,324.760492,216.8389315,179.3963205,354.1326026,395.3201385,192.7979375,280.1939614,202.8178692,83.89738921 +418.9668274,223.0744887,320.2336437,213.2569633,178.2539027,345.0636292,388.8671811,191.5931347,276.7110535,200.8881057,83.97086613 +422.8024472,224.3812874,323.5185955,214.1998635,179.1004306,349.5336941,396.2740659,192.9390922,280.673574,202.4330195,83.92587347 +415.9159528,222.4615826,319.1630438,213.1035766,178.6149269,346.9321328,392.0413083,192.0674823,278.1037106,201.5141129,83.96634836 +396.7511271,217.6991916,308.5652256,211.3603933,178.6561234,348.1433994,391.0731492,191.4383387,276.1377215,201.4217997,84.02529987 +414.5400679,222.8975858,319.0385314,216.055733,179.8226235,357.1450789,398.105058,192.9849571,280.6731022,203.4831235,83.9154972 +457.7072436,234.3783312,347.0627433,220.6645012,182.2699167,366.9580536,426.2312069,198.4530537,297.7483919,208.4586384,83.69196357 +426.7921175,225.4657311,325.3719796,215.21798,178.9492058,349.4299647,393.904667,192.6660353,279.8397712,202.1297999,83.91567848 +440.7269961,229.2648104,334.8428421,217.1182327,180.2800818,356.1450276,407.9411753,195.0935373,287.467481,204.7341236,83.82270734 +454.0584017,232.6626246,343.7307418,217.7876603,180.9993728,358.0347175,417.5231774,196.9588647,293.2834527,206.2685191,83.7564356 +407.6466932,221.1767159,314.8549051,215.5835676,179.5881966,356.5862434,394.7157778,192.328755,278.5748143,202.9531081,83.94556201 +446.2339123,230.6352161,338.3771721,217.3257121,180.617173,357.2093125,412.1305284,195.8801848,289.8806911,205.4502764,83.79227676 +424.7840911,224.7559482,324.6987768,214.2561904,179.2058521,349.9847482,398.3111064,193.1856902,281.6502387,202.7171089,83.91264641 +426.257608,224.5855041,326.8384518,211.732949,179.1358893,345.6023467,404.8262322,194.1498994,285.1644421,202.9313759,83.92433687 +448.9564877,231.9556434,341.4095413,219.3177017,181.732974,364.2475233,421.0486744,197.3904725,294.4932861,207.4094755,83.74054864 +436.655995,228.9699044,334.02059,218.9879609,181.4604487,364.5848554,416.514652,196.3265058,291.2810726,206.7372739,83.78559163 +391.4655556,215.8672396,304.48694,209.4403589,177.5860303,341.3857446,382.6139996,189.9584059,271.729271,199.54271,84.08065215 +427.8572442,227.4307294,329.1047357,220.9802315,182.4066175,373.6777368,418.396287,196.4992005,291.2810795,208.0908037,83.76893299 +460.4047917,235.4672625,348.6175255,222.7389092,182.9738878,372.817615,429.4005044,198.9984453,299.2428863,209.6263169,83.64711358 +413.7159869,221.5825145,318.5389868,211.3826487,178.7330902,345.5903974,396.4937642,192.6222526,280.0399609,201.9025208,83.97368807 +435.187341,227.4566222,332.4485587,214.7161373,180.1972556,353.2809065,411.296635,195.4171535,288.7883232,204.7563323,83.84848332 +436.1976537,228.2031761,331.8726875,217.2479774,180.04503,355.907301,404.3672386,194.4212927,285.3837463,204.2070113,83.843869 +422.3182966,224.2049082,324.0002204,213.9316444,179.3220189,350.1927257,400.8156109,193.4793855,282.7720902,202.9539085,83.92036368 +396.5351899,217.5344163,308.9377621,210.6760105,178.8535873,348.1344973,394.6647705,191.9497034,277.8264482,201.8795381,84.02152001 +416.3456901,221.8301847,319.9363009,210.3324091,178.3552513,341.8895518,396.0948182,192.5379242,280.0900539,201.3871765,83.98374002 +412.9312724,221.9853665,317.7401462,213.9822675,179.0625641,350.854042,394.1610104,192.3241252,278.8121695,202.237677,83.95252413 +470.1108718,235.0589577,351.6334958,213.9036207,179.2096096,342.6294732,410.2664928,196.1713737,291.3010168,203.5576081,83.80363887 +425.0434488,224.7021967,325.3859109,213.2889247,179.169097,348.2154977,400.3009209,193.521212,282.7836079,202.7275754,83.92212707 +429.0125925,226.8695043,327.9445446,218.3487852,180.5803635,361.2209547,405.1158871,194.4580902,285.1472086,204.9509009,83.83775212 +400.2847482,219.1003962,309.6457653,214.4260301,178.7129421,352.1370469,386.0212557,190.8167679,273.9019435,201.2799709,84.00196254 +393.0878017,216.0746384,305.2214662,208.9305243,177.331562,339.1738432,381.9455818,189.8027502,271.4586091,199.1482987,84.08885222 +449.6277403,231.8134776,341.2581576,218.4527528,181.2390698,360.7456358,417.6498681,196.8667515,292.9279675,206.5773745,83.75676497 +440.3922606,227.5246916,334.3330427,213.586257,178.7865931,350.9844356,409.9354153,194.3006561,287.9377918,203.3374867,85.21689122 +439.2116121,228.8288859,334.6719574,219.4881733,180.7630571,368.4133119,418.4357388,195.6440737,291.6248573,206.4630114,85.12577045 +453.8182413,233.990342,346.8045848,224.7386748,184.2668897,389.0300357,448.1105419,200.7320294,307.011517,212.8269809,84.94463246 +420.0165953,222.0480016,322.5579085,210.3853357,178.0311343,346.2607867,404.2363113,192.8645902,283.7410911,201.899417,85.30765016 +432.4267487,225.0809246,326.2905619,212.8352801,176.6711406,341.5497563,386.185796,190.3881085,275.7196517,199.2143973,85.31854013 +409.3592484,221.2307975,316.0426172,217.3121216,179.5395192,364.9808156,401.8124707,192.4329137,281.4641754,203.8035407,85.2616175 +446.6310295,228.5347384,338.0478927,212.4027102,178.4788714,347.0792872,411.3137559,194.5831718,289.1459724,203.0329081,85.21639551 +435.658484,228.2428671,332.9739004,220.2272012,181.2079627,372.1146417,420.5316466,195.9393419,292.3654115,207.166067,85.11780662 +454.9322301,230.9999985,342.5838093,214.2705383,178.7624625,349.5889081,411.6020467,194.9143986,289.8793539,203.4632725,85.17787165 +437.7581119,227.4881304,333.3182306,215.5800268,179.4529814,357.11786,412.5158929,194.6389162,288.884863,204.3519926,85.19025885 +424.42798,225.364407,326.847461,218.7757766,181.1913446,371.9822907,420.3989028,195.6818979,291.504769,207.0871454,85.15837533 +436.7139965,227.5331165,330.9516679,217.5716166,178.9810583,357.8739416,402.3408405,193.1308326,283.787953,203.2241314,85.20521484 +434.8845629,225.7656646,330.1249717,212.4905538,177.8422216,346.1215136,401.3524225,192.7327293,283.310084,201.5928071,85.26841959 +449.735522,231.1789796,341.7603441,218.7721118,181.1304129,367.36825,426.9732142,197.1549024,296.5940055,207.4466019,85.08614982 +433.5153353,226.7373406,330.2153822,216.7864445,179.4963089,359.7517637,408.8816005,194.0634938,286.7585745,204.2412529,85.1972828 +412.4738227,220.4006763,318.3680875,210.6377149,178.4048188,349.688637,405.4535354,192.8826372,283.6521392,202.4499902,85.31696301 +416.5482782,220.9546032,317.4466845,210.5417161,176.328237,339.2744283,383.6074775,189.6382803,273.4537132,198.5366768,85.37747947 +448.9484936,230.9011831,340.8561557,218.2943652,180.7520376,364.9968055,423.2798376,196.6313973,294.8506362,206.733703,85.10478834 +432.748361,226.1961506,330.738446,215.1025134,179.6047969,358.0826163,414.2318568,194.7261798,289.2599822,204.6273073,85.20016391 +424.5057502,224.9215267,325.0403068,218.0861663,179.8518801,364.8818446,407.7683257,193.62881,285.3446532,204.6135336,85.20463877 +447.2967792,229.7398283,338.2541017,216.1997469,179.3726114,356.2784183,412.2726543,194.8232957,289.3892971,204.299928,85.16858984 +423.0735113,223.4976594,321.7661244,214.3996829,177.5502529,349.1412139,389.9151779,190.9148658,276.9270972,200.5864571,85.30629632 +415.1745851,221.2987304,319.2461638,212.2214935,178.1839976,350.5042579,400.7103098,192.1608039,281.4273464,201.9093787,85.3083008 +431.4509668,223.8204953,327.1780135,208.180833,176.3953298,334.138245,393.3530397,191.4446405,279.4732458,199.1896707,85.3473456 +463.9566605,235.6035575,351.2361749,222.4399258,182.6302237,376.7105485,438.4037741,199.3861341,303.2088569,210.1419291,84.98162548 +418.9683673,223.8265931,323.305635,218.0311049,180.9438387,371.0859549,417.6916556,195.0418233,289.6309427,206.5758807,85.18576116 +438.5664234,227.4613122,333.4041124,214.9331026,179.1352158,354.6837187,410.4687793,194.3483725,287.985153,203.8271562,85.20282102 +428.7277943,223.6871124,325.7767008,210.0554237,176.7779192,338.7935337,393.4437766,191.3691107,279.2016791,199.6972577,85.3295452 +448.0796045,230.3120409,339.0671916,217.466336,179.9144098,360.3509702,415.4922943,195.3882438,290.9721216,205.2140654,85.14191853 +451.197577,232.8248566,342.2470325,223.8511761,182.0555977,378.0247401,425.6230736,197.2237011,296.028937,208.6729776,85.03235248 +452.1384799,231.9148237,342.6303762,219.5962099,181.0228692,367.5823092,424.270146,196.8514781,295.4714896,207.1801701,85.08110643 +405.9964645,218.3165612,312.5201688,209.2882061,176.8216531,341.6604261,389.4311013,190.2215476,275.4297009,199.4572667,85.39328122 +429.1647012,225.7997216,327.0202641,217.3561794,179.1413345,359.5026769,402.6686952,192.9784062,283.3695789,203.3994875,85.2197407 +414.3893588,221.2119145,317.6754335,212.9995506,177.7771109,349.8388932,393.6908237,191.1569664,278.0091718,201.0092902,85.32357852 +438.7734024,227.8421358,334.3584217,215.7996648,179.9168064,359.4555517,417.066852,195.3994664,291.1427531,205.236945,85.17191948 +427.028314,225.7409853,327.2053835,218.6050276,180.3237107,367.2355573,412.4556522,194.4357164,287.8484601,205.4919319,85.17804302 +416.2173339,220.8040464,318.7813137,209.5450818,177.0553315,341.39449,393.7513141,191.1703319,278.3495776,200.0363201,85.35821097 +424.3157639,224.9604435,325.2623931,218.0071299,180.0127762,365.4160708,409.3249002,193.9501048,286.2135179,204.9108181,85.20089114 +437.2932003,228.0403417,333.087574,218.1116536,180.2679501,364.6211361,415.1299193,195.1202283,289.9420708,205.6256905,85.15654624 +417.6732019,223.4460604,323.3616375,217.4480875,181.3488077,372.3460112,423.3018745,195.8162295,292.2251764,207.3943555,85.17593273 +425.3487774,225.7844138,328.2702615,219.406258,181.9272433,376.2156317,427.3598989,196.7024749,294.8204542,208.4188594,85.12587675 +444.2843101,229.5526914,339.0096537,217.0517774,180.9225534,364.8275323,427.4217306,197.0684124,296.5070837,207.1420863,85.11424167 +446.512827,229.4635095,338.0316851,215.625437,179.3697226,355.5097468,413.2880156,194.9944581,289.9266252,204.3454803,85.17182713 +428.8187946,225.4433827,326.8019036,216.3903786,178.9722415,357.6229668,403.0082225,192.9743926,283.4755706,203.1893334,85.23037846 +421.3502769,222.5864121,324.0565183,211.2134941,178.807257,350.8621798,411.237041,193.9372719,287.080513,203.3355183,85.27603014 +423.4665937,224.7502689,324.134089,218.4483141,179.7363896,364.9349438,405.3676639,193.3350803,284.2297523,204.3569754,85.21069141 +425.3281978,224.2770178,326.5854164,213.9247659,179.6186473,357.7703235,414.4971459,194.6452028,288.8752112,204.6336303,85.22771355 +427.3099339,223.8065832,325.9355734,211.2338965,177.8335491,345.4814568,401.4665637,192.6476963,282.9115125,201.5515628,85.29413307 +425.7030122,224.6244093,326.6317198,215.1569632,179.6834036,359.7142618,412.810173,194.3779562,288.0285311,204.6206315,85.21737306 +422.7079381,223.5840758,323.9336528,214.2466045,178.8908689,355.2964415,405.3847818,193.1581069,284.2601812,203.1565411,85.2564213 +461.7785412,233.1075327,346.6148648,216.3088363,179.3489421,354.0912169,415.0136122,195.6181937,291.8895113,204.4811209,85.13268536 +439.0050888,227.6230122,333.653013,215.1741792,179.2375557,355.4408337,411.0552389,194.4658134,288.2892699,204.0073165,85.19755965 +464.8939745,234.7621784,350.8446948,218.7386834,181.174418,364.897911,431.0725108,198.2327162,299.9482481,207.7915188,85.04426437 +437.5682634,226.4305648,330.7833532,212.9610409,177.5402356,344.9875927,396.9551793,192.1710005,281.363983,200.9733596,85.27226833 +453.9224589,231.019122,341.477112,215.5434867,178.7223314,351.3127893,408.2989694,194.3436026,288.0481107,203.2361673,85.17763192 +435.9804395,227.3374741,331.2662628,217.2529808,179.4251105,359.8379348,407.7278236,193.8693175,286.216074,204.0936588,85.19299271 +464.6045193,233.7388997,347.2974023,216.7876344,178.8500161,351.9707164,409.2507115,194.7889779,289.2926331,203.5267249,85.14126647 +422.1699938,222.5590493,322.6688913,210.9899822,177.5164367,344.4945243,397.4762943,191.8761561,280.5668585,200.8709436,85.31831711 +421.1702404,224.1377093,324.0684389,217.4795403,180.3090718,366.7042597,413.090727,194.3851805,287.7310007,205.47534,85.19969906 +424.2953913,222.8453092,323.8472866,210.3623202,177.122771,341.3641566,395.8901336,191.6471036,280.0781838,200.2627839,85.32453942 +428.5924165,224.4651521,326.146978,212.8949262,177.8157291,347.4309668,397.9912394,192.1628598,281.2636672,201.350286,85.28344769 +432.7420949,226.3624614,330.2761765,215.7686968,179.5457519,358.7277588,411.5626668,194.3912338,287.9838789,204.4150104,85.20130641 +420.4464009,222.3543635,321.6635508,211.673296,177.7911413,346.9747746,398.159596,192.0377384,280.8042404,201.3086555,85.31278386 +438.6429736,228.9879922,334.0702019,220.6230774,180.8549808,370.4302063,416.4873157,195.3890148,290.6267479,206.4866568,85.12217377 +446.9802633,230.7553498,336.7783902,221.0285574,179.6108294,363.6262581,404.5109277,193.7189014,285.4331753,204.2455804,85.14443088 +427.1883275,225.9890299,328.6175942,218.8804233,181.337385,372.5427946,422.7505611,195.9459387,292.6321576,207.3825728,85.1432337 +444.8020143,230.4793672,338.0996972,220.4748667,181.0561153,369.9341118,420.4520198,196.212384,293.1466046,207.0045733,85.09796122 +458.7233687,235.1161179,349.4512219,224.7449254,184.0498681,387.2052957,447.0002672,200.6550908,306.8708203,212.4820497,84.93895644 +437.5176778,228.1500653,331.9960546,219.1651689,179.6441609,363.0461012,406.6726916,193.7668825,285.7767399,204.3416372,85.17327967 +430.5718271,225.5480804,327.3312536,215.413229,178.4523372,353.5996299,399.9326981,192.5042529,282.1329548,202.3297426,85.24845667 +434.4552384,226.8859075,330.6662609,216.4089328,179.3177315,358.1910144,407.7507803,193.8941571,286.2888112,203.9233254,85.20353274 +427.319382,224.8792695,326.1548836,215.2439146,178.8156332,355.499773,403.2969113,192.9813064,283.5870976,202.9691354,85.24394062 +407.3962825,219.9171163,315.1101392,213.4572148,178.8641321,356.8028641,402.4275635,192.3710729,281.6613634,202.8893032,85.30529158 +425.8525752,225.3672384,326.025543,218.3857998,180.0875611,366.1903417,409.7110083,194.0001708,286.3908542,205.0428262,85.1933182 +470.7189661,237.3450223,355.2314864,223.1150503,182.6195936,376.3204118,438.8577534,199.6297544,304.0208546,210.1871629,84.95990698 +438.5412202,227.994037,332.5737461,217.4453224,179.159268,358.0747237,405.1988788,193.5809108,285.3405864,203.5999745,85.19201806 +453.2496656,232.0535959,342.6026627,219.4637928,180.5652279,365.1495271,419.8732621,196.1776292,293.4000185,206.3394225,85.09611067 +467.1735521,235.6183922,351.8793294,220.1682477,181.3088919,367.0941981,429.8879975,198.1177092,299.4651781,207.9293859,85.02815225 +418.5853183,223.5368958,321.6005057,217.8823084,179.8377091,365.582566,406.1771416,193.3001871,284.182405,204.4837855,85.22424618 +459.1106706,233.5425868,346.3502536,219.7418231,180.9271309,366.3028563,424.3370951,197.0494953,296.0280528,207.1033374,85.06678622 +436.8688703,227.4035482,332.1273299,216.5400022,179.4619181,358.8228608,409.9541046,194.2486605,287.4615448,204.26608,85.19045228 +438.568694,227.2315941,334.47738,213.7913497,179.3804227,354.2161255,416.6263441,195.2044807,291.0006418,204.4709388,85.19701072 +461.6662985,234.8258428,349.3681468,221.7215651,182.0632451,373.5162887,433.4943972,198.5365716,300.6653098,209.1028582,85.0103233 +448.8464942,231.6936091,341.6798951,221.3400395,181.7837196,373.8808307,428.7317214,197.4189194,297.2853979,208.4072524,85.05435285 +402.1095133,218.0687423,310.9627407,211.5139572,177.7718346,349.8749164,393.6502639,190.8846011,277.1488246,200.9608881,85.36386231 +439.5630765,230.0927745,336.4612353,223.5199049,182.7687754,383.3411426,430.8774418,197.6658947,297.4729711,209.8283508,85.04222667 +473.6341704,238.5605907,356.9282343,225.3811337,183.3762047,382.5179645,442.2852634,200.293873,305.770737,211.4380203,84.91682148 +425.3792663,224.0731898,325.7027032,213.5096352,178.9593154,354.2104278,408.0757291,193.647306,285.7783113,203.4080936,85.25253622 +447.767577,230.2340356,340.2668526,216.9649875,180.4857796,362.2205032,423.4376929,196.5488841,294.8459846,206.3751355,85.1216144 +448.4572739,230.9152694,339.4717915,219.5700285,180.3187474,364.8900345,416.0931477,195.455065,291.1736784,205.7854264,85.1167569 +434.1462038,226.7486035,331.3397883,216.0677372,179.5645909,358.9405854,412.3936972,194.4650793,288.4375317,204.4802904,85.19312796 +407.3345982,219.7988475,315.5885651,212.7753214,179.0784317,356.8422415,406.2541672,192.9481637,283.5127882,203.3815946,85.30206511 +428.3371256,224.3846155,327.3120965,212.3923927,178.5788018,350.411759,407.5936551,193.571628,285.8101196,202.8824165,85.2607964 +424.3172923,224.4369476,324.7333837,216.2271342,179.2975766,359.6641548,405.6275087,193.3135783,284.4579777,203.7489281,85.23142328 +484.071721,238.1493365,360.218149,216.055251,179.450052,351.0215509,422.1653467,197.2673255,297.2707856,205.1002472,85.07461447 +436.939119,227.2539225,332.7274472,215.4185643,179.3945842,356.8404354,411.8928903,194.5018535,288.4642408,204.2343306,85.19712835 +440.8910546,229.5215996,335.3004801,220.7875161,180.8752647,370.4217731,417.0226588,195.5327973,291.0503035,206.5679115,85.11383179 +410.8297802,221.3279828,316.1065847,216.6542328,178.9234184,360.93259,397.0400356,191.6954503,279.2439848,202.733637,85.28191466 +403.847331,218.2798863,311.7946882,210.9147092,177.5069325,347.5575969,392.8120349,190.6893426,276.7676864,200.5428524,85.36909175 +462.5151436,234.723004,349.2845552,220.8633076,181.5588081,369.9225984,430.0278868,198.0254497,299.1059697,208.2524863,85.02839623 +396.6989048,213.5068643,304.9601758,201.950925,172.3545037,319.7496234,370.5218095,185.3480068,265.1678394,193.155769,79.28560326 +395.8966256,214.6735302,305.3327208,206.9402645,173.9675204,334.6154234,377.9085977,186.4761987,268.3572583,195.7317321,79.20249082 +408.6303378,219.0912084,315.8355778,211.3960392,176.9128575,352.4772014,403.45177,190.768095,281.4825448,201.0941327,79.03717463 +378.8334925,208.7934268,294.7323361,199.2297568,171.7341479,315.6832749,365.7145114,184.147162,261.6015297,191.9707337,79.36911618 +390.5131112,211.5461933,298.3497608,201.3672631,170.622714,311.9096252,350.3439608,182.103639,254.8775931,189.7655361,79.37980878 +370.3559672,208.243923,289.4821744,205.0990313,172.9857525,331.9157726,363.5621612,183.7966554,259.6978691,193.5725091,79.32931004 +401.8335977,214.3255932,308.0702111,200.9650569,172.0768165,316.2419812,371.9481361,185.6191843,266.3361042,192.869976,79.28374658 +392.800031,214.1600074,303.8634983,207.551094,174.339181,337.8440427,379.573916,186.7086797,268.9265622,196.3179836,79.19601645 +409.6768978,216.5678678,312.2469759,202.59541,172.3511261,318.6397767,372.1003423,185.9009408,266.9249785,193.2913462,79.24936538 +394.7974784,213.5761515,304.2440118,203.6764452,172.9150749,325.0444568,372.9459416,185.6633772,266.0778511,194.0298818,79.26139312 +383.0345126,211.685204,298.5973186,206.2969224,174.3411372,337.8479479,379.2590606,186.4775426,268.102534,196.2714024,79.23469373 +393.9952929,213.6027445,302.2519517,205.3385565,172.499777,325.729028,363.9454519,184.3626423,261.6448054,193.0429123,79.27629429 +391.9373685,212.0100844,301.3549965,201.0472978,171.5511629,315.5165777,363.4158074,184.0599285,261.3585589,191.677788,79.33229891 +404.7659556,216.6378066,311.3435263,206.3177002,174.2650022,333.5843086,385.3925035,187.7647265,272.6599469,196.5407748,79.1648972 +390.8238433,212.8348802,301.4453078,204.6223713,172.9171894,327.2505406,369.4204947,185.1175856,264.0870515,193.8674722,79.26912404 +371.8943819,207.2860469,290.9590416,199.3605245,172.017945,318.4916468,366.5244237,184.120077,261.408537,192.3784315,79.37814138 +376.5080206,207.9618167,290.6459323,199.3711229,170.3405467,309.9359664,347.9768282,181.45539,252.8561518,189.1998725,79.43505976 +404.4741934,216.4818811,310.7237627,205.9570643,173.985719,331.7706129,382.1078736,187.3262798,271.1301032,195.9995347,79.18302696 +389.9141152,212.3520299,301.7926933,203.209847,173.0064442,325.670366,374.391723,185.7133291,266.368053,194.1997923,79.26984479 +382.9872528,211.2858873,296.9775967,205.7173102,173.2005515,331.5770849,368.6608688,184.7665834,262.966436,194.1693834,79.27528842 +402.7928861,215.4187943,308.3755047,204.1603969,172.8211999,324.2280297,372.5781983,185.7880373,266.4408443,193.9297964,79.24079866 +382.2828518,210.1567888,294.4343769,202.6333757,171.3365836,318.4142843,353.1328792,182.504843,255.7465769,190.8770555,79.37069562 +374.7040751,208.160675,291.9192435,200.7658644,171.8372764,319.2604789,362.7961042,183.5596443,259.6887948,191.9469349,79.3696671 +388.880165,210.3141132,298.7952056,197.417565,170.3985943,305.4547761,356.3603032,182.9684956,257.9786061,189.7351675,79.40518425 +417.7428983,220.5707226,319.8076916,209.5049774,175.5499717,341.8045703,395.3530503,189.6856302,278.3961343,198.8593602,79.06937384 +377.9703609,210.2991566,295.3934377,205.6177597,174.1179272,336.9273545,377.0324109,185.9340928,266.5279627,195.8173296,79.25831968 +395.3220989,213.5033457,304.2413954,203.1049365,172.6435943,322.9342469,371.0618003,185.3991207,265.2500425,193.5716341,79.27292691 +386.8341796,210.2810732,297.7114745,199.0234297,170.7038446,309.4184039,356.6556102,182.9304666,257.8599734,190.154238,79.38907587 +403.4180961,215.8873666,309.0472546,205.208741,173.262934,327.708944,375.2094396,186.2417087,267.7252148,194.6750845,79.21689704 +407.0372888,218.2564734,312.1963184,210.7417009,175.0770577,343.1370942,384.0931045,187.8363326,272.1599471,197.6381564,79.1183212 +407.0984428,217.3113948,312.1907024,207.038366,174.1855382,333.879241,382.9560727,187.5003938,271.6592039,196.3302934,79.16086498 +366.4640265,205.5211821,286.0137553,198.2232953,170.7013484,311.6690922,352.8138842,181.8951733,254.4385802,189.8778641,79.44860828 +387.8155982,212.2213468,299.0301721,205.2036423,172.6700851,327.2453014,364.5006036,184.2814885,261.4048094,193.2643985,79.28975458 +374.3432465,208.1322402,290.7024918,201.4186827,171.512676,318.828131,356.5831191,182.7069728,256.7117563,191.2139437,79.3848318 +395.1835293,213.7502755,304.9228647,203.7834065,173.275865,326.9417258,376.5630531,186.2509392,267.8528538,194.7134829,79.24484584 +385.4608159,212.0658102,298.9671248,206.2032013,173.6157387,333.6826865,372.7926175,185.4694455,265.1511166,194.9472741,79.25112804 +375.589505,207.7083314,291.5161391,198.4855077,170.9245746,311.5820598,356.5177804,182.702575,256.9218247,190.4072124,79.41623529 +383.2266332,211.4102567,297.3513011,205.6911377,173.3711124,332.2422185,369.9318198,185.0528222,263.6926926,194.4782285,79.27305228 +394.1369482,213.9573867,303.9286533,205.7439403,173.5626841,331.4435764,374.8129919,186.0076479,266.8047341,195.0300722,79.23135392 +376.5306355,209.9188732,295.2970978,205.0956722,174.4423054,337.8619976,381.9500372,186.5843993,268.7598881,196.4842346,79.24887448 +383.6518884,212.0237457,299.7233092,206.8218626,174.9459559,341.3417879,385.4913738,187.3512806,271.0158738,197.3821144,79.20359436 +400.0274958,215.2606255,308.9751761,204.8782329,174.1101509,331.446674,385.8626851,187.7097571,272.6218313,196.3199265,79.19070609 +401.9849968,215.1520659,308.1323291,203.6588798,172.8195844,323.5683735,373.3332692,185.9167714,266.8401264,193.9641278,79.24435943 +386.9299034,211.7763917,298.5807044,204.3163897,172.4903527,325.443626,364.6218222,184.2335889,261.400038,193.0131042,79.29871839 +379.3959583,209.1274708,295.7677907,199.8636216,172.3394586,319.380819,371.7035642,185.0271603,264.428222,193.1022605,79.33917494 +382.1569135,211.1382362,296.2405277,206.0171224,173.1024069,331.7015891,366.3585029,184.5020764,261.9365489,193.9449418,79.28218528 +383.1998009,210.6285773,298.0919672,202.1459549,173.0223643,325.4414393,374.257626,185.5966919,265.8545913,194.1962037,79.29623246 +384.9746686,210.2333899,297.5681231,199.9117556,171.5471179,314.9550933,363.1229141,183.9320153,260.8085719,191.6326437,79.35679237 +383.9454749,211.0327642,298.3074519,203.2488812,173.0870289,327.1661814,373.0689114,185.411238,265.2646531,194.2177085,79.28639646 +381.3536505,210.1347659,295.9901033,202.4759942,172.4251475,323.3925038,366.6437483,184.3804578,262.0360721,192.9869476,79.32245013 +415.6171009,218.360182,315.7165549,204.3000033,172.8203793,322.4428647,374.9666506,186.4789233,268.6164138,194.1085489,79.20764113 +395.5393248,213.5970448,304.3844969,203.2809111,172.7167637,323.5404526,371.4485209,185.4773962,265.4530695,193.6973371,79.26826886 +418.232346,219.7741511,319.3323084,206.3427719,174.333132,331.6221226,388.8946556,188.6933538,275.5431869,196.8743241,79.12680301 +394.4259281,212.5954017,301.9776835,201.4410469,171.3119783,314.6415993,359.4714993,183.5696026,259.6222143,191.1733899,79.33625903 +409.1913847,216.6742477,311.45936,203.7102691,172.3210224,320.1672054,369.457588,185.4504871,265.4668615,193.1186463,79.24900858 +392.8977427,213.3345705,302.310027,205.0151338,172.8463439,327.2465093,368.5845405,184.9635974,263.688828,193.728737,79.26384552 +418.388105,218.9741765,316.4466332,204.7475494,172.4062454,320.6638064,370.1134495,185.8007976,266.4697221,193.318978,79.21578036 +381.0344029,209.28757,294.9721617,199.76027,171.3146875,314.2682909,359.946088,183.327544,258.9253531,191.1271438,79.37910553 +380.1516199,210.6398314,296.1646505,205.2091599,173.5996185,333.1947457,373.2284524,185.4083589,264.9884348,194.9217831,79.27116512 +383.0000426,209.5769573,296.0534245,199.2851434,170.9864041,311.5865241,358.7973093,183.1671999,258.6215611,190.6255327,79.38481999 +386.6633635,210.9248325,297.9921557,201.3695264,171.5476461,316.7541067,360.2971089,183.5559804,259.4959832,191.5016259,79.34746339 +390.198875,212.5431194,301.5100567,203.7831718,172.9760292,326.3743362,371.9389188,185.420923,265.2129329,194.0484363,79.27183811 +379.0992275,208.993459,293.9427286,200.2523424,171.5063222,316.2798315,360.0649825,183.3974445,258.9265543,191.4171198,79.3755084 +395.9200281,214.927549,305.0458445,207.9638164,174.0773245,336.5470127,376.3133409,186.2929128,267.5640914,195.8125072,79.19988239 +403.4861498,216.5069735,307.5329221,208.3621595,173.0381843,330.7497535,366.1250284,184.9103937,263.2227223,193.9359969,79.22020602 +385.2081363,212.1967155,300.017634,206.382418,174.44728,338.106321,381.7266519,186.7344328,269.2385129,196.5079418,79.21808585 +401.3173508,216.2090358,308.541606,207.8419343,174.252573,336.1868104,379.5666433,186.9739749,269.6477324,196.2511565,79.17863434 +413.2383779,220.1577558,318.27994,211.458962,176.7474857,350.9121258,402.7651697,190.7539875,281.5115998,200.8440227,79.03093924 +394.6536353,214.1354948,303.1338203,206.6975484,173.0385691,330.0757023,367.8608214,184.9109899,263.4208554,193.9642197,79.2461454 +388.5152405,211.8789125,299.0667277,203.5052943,172.0672864,322.0328156,362.0488868,183.8500752,260.2864711,192.3096793,79.3149818 +392.2156897,213.1056925,302.0797663,204.3782379,172.8167509,326.1001315,368.7218141,185.0303923,263.8140727,193.6925581,79.27470138 +385.8908627,211.3600828,298.1375078,203.3780008,172.3930543,323.7453119,364.9600349,184.264132,261.5306284,192.8866489,79.3114028 +368.2949703,207.0408016,288.5042453,201.7866442,172.4269126,324.819277,364.0155537,183.7225858,259.7847695,192.8028738,79.3685655 +384.281103,211.6904313,297.8807308,205.9780197,173.4112706,332.7935203,370.2602169,185.0787868,263.8306424,194.5492368,79.26520024 +424.0618275,222.1861699,323.4881798,210.156674,175.5552554,341.5199929,395.9923057,189.9465695,279.2476594,198.933631,79.04935595 +395.9780384,214.1121958,303.8232867,205.3022401,172.6811463,325.9875021,366.7105689,184.7924752,263.1058517,193.4258525,79.26394773 +408.2579258,217.4764283,312.2572756,206.9567058,173.8100747,331.8328288,379.2534909,186.9493192,269.9410138,195.6395756,79.1744146 +420.5397555,220.5836129,320.3673412,207.591621,174.4484167,333.5531222,387.9565465,188.6130781,275.182704,197.0012857,79.11204279 +378.1127806,210.1565557,294.1417739,205.5605279,173.2154907,332.3407421,367.2402034,184.5017287,261.9656014,194.10464,79.29415344 +413.0620703,218.6679445,315.3605803,207.142189,174.0984838,332.7790275,382.8642014,187.6464799,272.0694908,196.2431536,79.14766641 +393.450547,213.3418144,302.9579909,204.3862754,172.8685766,326.3134931,370.3923826,185.2656828,264.6968933,193.8541059,79.26174149 +394.9980885,213.2621087,305.0556578,202.1407744,172.8302808,322.3654726,376.6192448,186.1515069,267.9516292,194.089727,79.26641875 +415.9522405,219.9612354,318.2903694,208.9307597,175.0837575,339.0857134,391.2362178,188.9914837,276.2871816,198.0074741,79.09566314 +404.6710166,217.2564172,311.615578,208.5954375,174.8296285,339.3020466,387.2293369,188.049459,273.4336399,197.3995804,79.13640386 +363.2933739,205.3506937,284.7805687,200.0872938,171.4873977,318.7572616,356.260165,182.4414236,255.8535983,191.1296562,79.42296843 +396.3845366,215.7927927,306.9629893,210.3724216,175.650769,347.5477058,388.6307526,188.1846894,273.3550265,198.5707805,79.12642555 +426.0391211,223.0589752,324.6796327,211.9808423,176.1442817,346.7251394,398.5890487,190.4256944,280.5387686,199.8901841,79.00988892 +383.4525438,210.4948318,297.4214322,201.8197931,172.482828,322.4558407,368.7859637,184.769016,263.2436398,193.1875866,79.31880293 +403.0208433,215.8231578,310.0407695,204.7956698,173.7394619,329.2079552,382.3263064,187.255915,271.1572321,195.6598891,79.19741353 +404.1978016,216.5314524,309.6104428,207.0656256,173.6025358,331.6091472,376.1030992,186.3538673,268.0923932,195.1795487,79.19353547 +391.5510686,212.9280027,302.5165011,204.0857061,172.9843421,326.4949761,373.0000273,185.5292629,265.775133,194.1059628,79.26366345 +367.9367388,206.8728559,288.7874814,201.1762411,172.5936079,324.7777555,367.1719666,184.1840055,261.292299,193.1882961,79.36558426 +385.7099279,210.7044346,298.6760638,200.8773095,172.1485787,319.0575484,368.5261675,184.7164928,263.3389699,192.7211168,79.32527042 +382.8817345,210.8809468,296.7392277,204.1471845,172.7568878,327.1796204,366.7184914,184.4988679,262.1638461,193.4698939,79.30033443 +435.5065916,222.8263702,327.7741991,204.1923091,172.9324116,319.8894306,381.5004623,187.9667498,273.4820871,194.6815983,79.15330796 +394.1378123,213.383894,303.7589981,203.5395745,172.8731037,324.8351712,372.4459084,185.5543796,265.734407,193.9423881,79.26740795 +397.5325329,215.2939636,305.9526792,208.0549889,174.0643662,336.4293702,376.5898807,186.3763904,267.8358762,195.8218722,79.19218776 +371.5296631,208.2935977,289.4911678,204.5271821,172.4665554,328.4187459,359.4643122,183.1720251,257.8039153,192.6636965,79.34748584 +364.7143192,205.52135,285.4337067,199.6004361,171.2685664,316.7224618,355.8095619,182.2965527,255.622198,190.7872879,79.4262403 +416.4460565,219.8051927,318.0976656,208.168966,174.6481586,335.9495231,388.0731157,188.5270043,274.862927,197.260439,79.11240386 +430.0096399,224.2781436,327.2640152,210.8327375,177.5490602,343.954337,402.1191741,192.5783835,283.4247105,201.1531267,82.8704131 +428.739536,225.504228,327.479386,216.537859,179.4377507,360.8996798,410.3702653,193.8572404,287.0047069,204.1514841,82.78247918 +442.6945014,230.3808219,339.0573988,221.6503336,182.7659367,380.9267516,438.9270424,198.7086616,301.8519774,210.2130837,82.6058516 +410.3320037,219.0511952,315.9314343,207.7558761,176.8394098,339.3966491,396.7087405,191.2241036,279.4075198,199.7946754,82.95820043 +422.4444169,221.9542092,319.5201653,210.0807679,175.5452209,334.8437784,379.180483,188.8316144,271.5875744,197.2319483,82.97024776 +399.9547287,218.2342075,309.484283,214.4590365,178.2899642,357.5942555,394.3439316,190.8139872,277.2306479,201.6414876,82.91370005 +436.0590159,225.2908578,330.9647866,209.6709397,177.2562756,340.2079787,403.5509095,192.8613918,284.6396149,200.8641263,82.87104839 +425.3068026,224.9379979,325.8231089,217.2729164,179.8589704,364.4990118,412.3864974,194.1496019,287.7557044,204.82077,82.77419338 +444.1029906,227.6028652,335.2310234,211.4778482,177.5265247,342.5825987,403.6906833,193.1430623,285.2319959,201.2712605,82.83320974 +427.4122791,224.2225744,326.2028702,212.7530816,178.1954431,349.907381,404.6244666,192.881804,284.2774653,202.1389993,82.84509379 +414.4809815,222.1805426,319.9121842,215.8975691,179.8419242,364.3727564,412.2253454,193.9218136,286.9620955,204.7453842,82.81258761 +426.4931442,224.2902481,323.9562558,214.6909027,177.7372954,350.6837878,394.8070427,191.4640374,279.4540769,201.0542176,82.85953262 +424.677704,222.6229338,323.2575229,209.7413718,176.6587654,339.2943095,393.8991753,191.0807809,278.9568664,199.5009889,82.92198389 +438.8784193,227.7609122,334.3638527,215.8314028,179.7827286,359.8818095,418.6353719,195.3001221,291.8036007,205.0821724,82.744336 +423.3698657,223.5287209,323.2605232,213.9501391,178.2222626,352.5019738,401.1410589,192.3700811,282.3717407,202.017651,82.85114359 +403.0499724,217.4991135,311.9364793,208.0256323,177.1871246,342.7506623,397.9317979,191.2786822,279.4497432,200.3138919,82.96638335 +407.1412442,218.0115829,311.0133311,207.8974226,175.2173409,332.6399617,376.7440919,188.1411787,269.4680272,196.5839116,83.02651011 +438.1780194,227.4731198,333.4415059,215.38358,179.4234343,357.5465547,414.9786798,194.783623,290.0519533,204.4001824,82.76186033 +422.5205066,223.0104378,323.7715623,212.2905967,178.3370405,350.8782519,406.3617645,192.9914991,284.7336679,202.4008245,82.85476373 +414.533729,221.7804749,318.2141314,215.181939,178.5742263,357.5025698,400.1023815,191.9530343,280.9981411,202.394735,82.85896391 +436.6273845,226.3945647,331.0203048,213.3399913,178.1061442,349.1078395,404.3660429,193.0716461,284.8263533,202.0720798,82.82408662 +413.4196093,220.4377402,315.1383383,211.6403029,176.3735465,342.2168043,382.7752283,189.3670219,272.8598038,198.5346234,82.95704574 +405.5368066,218.3235212,312.6882396,209.4975591,176.992364,343.5478117,393.3036251,190.5466717,277.1658631,199.8169674,82.95988049 +421.4773928,220.7592676,320.4662154,205.5989746,175.2738795,327.6154246,386.1009123,189.8583659,275.2428941,197.1919829,82.99730697 +452.5659145,231.9463508,343.3880952,219.3782576,181.2126661,368.925149,429.547627,197.3961109,298.0755439,207.6538291,82.64296729 +409.1178574,220.7163162,316.507361,215.1512908,179.611136,363.5121907,409.6490168,193.3201174,285.1787776,204.2659796,82.83936146 +428.2302606,224.2104963,326.3284172,212.1338657,177.8865878,347.5513224,402.6515859,192.6164586,283.451595,201.6293447,82.85701563 +418.8246093,220.6313603,319.0713527,207.401815,175.6491586,332.1714174,386.2583952,189.7731623,274.9551862,197.6935571,82.98102197 +437.3735273,226.9357866,331.7870785,214.5782079,178.6166387,353.0617271,407.4684234,193.6173211,286.3868872,202.938152,82.79782075 +440.3393012,229.2929591,334.6861444,220.7770099,180.6679483,370.2197964,417.2083223,195.3392232,291.181405,206.2589824,82.69185144 +441.239031,228.456021,335.1767916,216.6355393,179.6780188,360.0810876,415.9746855,195.0024698,290.6988831,204.8234667,82.73921786 +396.8654902,215.5219004,306.336834,206.7074199,175.6809724,334.9958749,382.4707276,188.7406711,271.5196604,197.4578454,83.04117417 +419.1206803,222.5952328,320.0672338,214.468261,177.9074491,352.240037,395.0966734,191.2932474,278.9421616,201.2452336,82.87395578 +404.8908612,218.2439572,311.1708923,210.2697135,176.6004056,342.9008265,386.4927808,189.595962,273.8917201,198.9525204,82.97404648 +428.3907289,224.5732495,327.2501404,212.9877251,178.6226357,352.1872817,409.0298834,193.6374661,286.567122,202.9656481,82.82640812 +416.97796,222.5471338,320.2577757,215.6907753,179.0287249,359.7591151,404.6134673,192.7059356,283.3516543,203.2388497,82.83312157 +406.7116012,217.8660725,312.3143107,206.9395844,175.9032055,334.680077,386.5200626,189.617698,274.2317346,198.0062337,83.00700403 +414.4181169,221.8005727,318.3880923,215.1297432,178.7285016,357.9941653,401.5465472,192.2511662,281.7926207,202.6786957,82.85464711 +426.9179539,224.7478542,325.9664077,215.2171829,178.9576305,357.2132386,407.1054984,193.368257,285.4060334,203.339485,82.81155161 +407.8811718,220.3744305,316.6130418,214.6021409,179.9966043,364.746351,415.1778135,194.0737523,287.7387184,205.048714,82.82976635 +415.3041995,222.5818393,321.2737515,216.4988142,180.5497905,368.477011,419.0320471,194.8922944,290.1572791,206.0270396,82.78137356 +433.6206931,226.2024222,331.7093283,214.1764677,179.5906271,357.4026241,419.0840855,195.216141,291.695941,204.7989622,82.77138983 +435.9183107,226.1365553,330.8314472,212.8066946,178.0984647,348.3563618,405.3685853,193.2446085,285.3796903,202.1086497,82.82676125 +418.7740702,222.2820218,319.9345762,213.5355777,177.7359661,350.4416423,395.4665047,191.3149133,279.139334,201.0307687,82.88405267 +411.5542735,219.5940563,317.4350916,208.5581744,177.5715837,343.894438,403.5423687,192.2777942,282.7417625,201.1609748,82.92745413 +413.6342223,221.633309,317.3756068,215.5655961,178.455616,357.5733298,397.7882127,191.6923219,279.9939099,202.1398159,82.86419618 +415.3905262,221.175777,319.7837656,211.189487,178.3392242,350.5689047,406.5849435,192.9426056,284.4462451,202.3930135,82.879909 +417.4253509,220.7534326,319.2450958,208.5763661,176.6383289,338.6476146,394.0136052,191.0306077,278.668032,199.4457235,82.94501661 +415.7155027,221.4905615,319.7640319,212.3576765,178.4143117,352.4493247,404.957973,192.6597594,283.5379039,202.3981481,82.87079773 +412.8774064,220.5108547,317.1995189,211.4781748,177.6585319,348.1788448,397.8026725,191.5013997,279.9214445,200.9989344,82.90882447 +450.6771409,229.615373,339.1043675,213.4394862,178.0792739,346.95857,406.9581343,193.8156998,287.1911894,202.2358396,82.78942858 +428.6628425,224.3725312,326.5890793,212.3751399,177.9784047,348.2929365,403.2268354,192.7399143,283.7901069,201.7944686,82.85165128 +453.6189121,231.1813202,343.1361306,215.8132049,179.8179216,357.4552291,422.5319067,196.3135873,294.9906037,205.3975402,82.70343468 +427.3443556,223.2560448,323.8873094,210.2081309,176.3655263,338.1734407,389.6089057,190.5447803,277.0825412,198.9011014,82.92505886 +443.0932123,227.6132219,334.1168465,212.6839625,177.4977967,344.2718891,400.4845754,192.5811817,283.4081109,201.0684268,82.83380407 +425.655863,224.0968814,324.2552917,214.3634718,178.1585124,352.5929292,400.0070557,192.1750973,281.8170886,201.8822994,82.84767684 +453.5223272,230.2454556,339.8056799,213.9046653,177.606925,344.9180575,401.4517492,193.0200817,284.6855432,201.3292272,82.79836464 +412.4176421,219.528504,316.0085377,208.317989,176.3513423,337.6820848,390.1204391,190.2651404,276.2932901,198.8145132,82.96907773 +411.3315339,221.022987,317.2594132,214.6184768,179.0122113,359.2513692,405.2521569,192.6756534,283.2917382,203.2206136,82.85352657 +414.5292626,219.8234471,317.1916094,207.7092614,175.9817457,334.6702956,388.6687252,190.0378051,275.8029394,198.2400587,82.9761912 +418.6847896,221.3680127,319.3865976,210.1699703,176.6308831,340.5396352,390.6437994,190.5434192,277.0023327,199.266252,82.93531529 +422.5566784,223.1527135,323.2824882,212.9469832,178.2785126,351.4852293,403.7133489,192.6657628,283.4792115,202.1940971,82.85527487 +410.8433319,219.3678191,315.1267567,209.0238091,176.5931241,340.1081627,390.8133623,190.463984,276.6871948,199.209471,82.96260432 +428.1744486,225.6270009,326.8156699,217.6296282,179.5332868,362.8359859,408.4049396,193.5923895,285.9561016,204.1846213,82.77907285 +436.3595169,227.3535922,329.5001138,218.0055932,178.3474516,356.2648919,396.8709861,191.9937902,280.9478442,202.0444035,82.80171198 +416.9608043,222.7625439,321.5842192,215.9336525,179.9944068,364.8976329,414.5296596,194.1503062,287.9693316,205.0449166,82.79928933 +434.2120693,227.056612,330.725075,217.5131401,179.7149945,362.3468081,412.2130553,194.3795336,288.3992982,204.6634988,82.75508494 +447.4089815,231.4464919,341.5758585,221.6245513,182.5687049,379.1189156,437.8157344,198.607039,301.6056429,209.8945907,82.60108409 +427.1340953,224.8637386,324.9109903,216.203399,178.3763098,355.7084996,398.993057,192.0587772,281.3372704,202.1323197,82.8293059 +420.4753262,222.3813051,320.4539534,212.5771058,177.2418838,346.5336662,392.470479,190.8581427,277.8101692,200.2097842,82.90187003 +424.2487837,223.6338821,323.6057041,213.5607181,178.0662121,350.9451746,399.9639022,192.1701247,281.7654273,201.7302043,82.85761703 +417.3321029,221.7212846,319.2703178,212.4263371,177.5925727,348.3500474,395.7006975,191.304711,279.1722362,200.8260236,82.89704521 +398.0771459,216.98518,308.639337,210.731916,177.6395674,349.6376749,394.9182669,190.7609001,277.4230278,200.7548169,82.95538123 +415.8299858,222.1923177,319.1326011,215.4771176,178.7971577,358.758149,401.920181,192.3046899,281.9900362,202.8019421,82.84752008 +459.1381955,233.6171844,347.243828,220.0196024,181.2094235,368.5421486,429.9878192,197.6085729,298.7881856,207.7055006,82.62280993 +428.2378105,224.7084719,325.4622891,214.555898,177.9202975,350.8487037,397.5582075,191.8615704,280.8338162,201.4290187,82.84732113 +442.3198569,228.5895711,335.1469264,216.4907014,179.2459702,357.718188,411.7046703,194.3488368,288.6603393,204.0255142,82.75424006 +455.8187215,231.995041,344.1018706,217.1852123,179.9501343,359.5885632,421.3644744,196.1898948,294.4817167,205.5347745,82.68824155 +408.8288198,220.4406987,314.8558373,214.9980829,178.5648795,358.1728403,398.5206576,191.6399712,279.8590654,202.2771215,82.87742777 +447.9880473,230.0153971,338.7879162,216.7741211,179.576892,358.8398122,415.9958187,195.1955014,291.2591885,204.735219,82.72513284 +426.5717634,224.1772327,325.1371908,213.6956584,178.1866856,351.6092137,402.2025965,192.5510784,283.0726734,202.0375557,82.84480468 +428.1632869,224.0099627,327.4164116,211.0133911,178.1250412,347.1238761,408.6806012,193.4417067,286.3823324,202.2521303,82.85221611 +450.3698497,231.2048447,341.5839059,218.6703999,180.679094,365.8127753,424.8050284,196.5740311,295.5744159,206.6706278,82.67129585 +437.9166569,228.2122652,334.167209,218.2856217,180.4220766,366.1794749,420.2690363,195.5114626,292.3247145,206.0223553,82.71481177 +393.1193387,215.2795494,304.7957269,208.8844433,176.5859153,342.9721537,386.5440976,189.3861521,273.2233409,198.8977971,83.01197181 +428.9219745,226.6648087,329.0754056,220.4410959,181.351979,375.3838991,422.3069733,195.7795405,292.6229866,207.3714578,82.70110801 +461.9227333,234.7922715,348.9169617,222.2311182,181.9127539,374.61924,433.3369945,198.2769255,300.6366708,208.8778416,82.58029801 +415.4467556,220.9753343,318.9200112,210.7698151,177.7147449,347.1095207,400.3421864,191.9775269,281.4090484,201.226019,82.90437211 +437.025485,226.8649199,332.9523901,214.0895906,179.1689869,354.8783797,415.2209992,194.7237082,290.1124521,204.0584685,82.77853854 +437.6759657,227.5023136,332.1183183,216.5840797,179.0178927,357.4763754,408.076651,193.6546569,286.495497,203.50696,82.77481666 +423.8274393,223.517723,324.2937945,213.1981869,178.307825,351.7030867,404.5419656,192.7154006,283.8477569,202.2717729,82.84891439 +398.0363272,216.8886377,309.1486654,210.089608,177.8363041,349.6820301,398.6328847,191.329884,279.2701325,201.2155637,82.95170464 +418.3144416,221.3033618,320.5503715,209.6795711,177.3518396,343.4480486,399.9581331,191.9124069,281.4710393,200.7236012,82.91307716 +414.452643,221.3258092,317.9540384,213.4045535,178.0419441,352.4261504,398.022244,191.6558677,280.1440377,201.5612574,82.88435687 +472.3327641,234.4707628,352.320795,213.1764024,178.1801024,343.9793339,413.8856123,195.376619,292.3298908,202.8310827,82.73430153 +426.5616816,223.9826992,325.600077,212.5795503,178.1420866,349.6291938,403.9675305,192.7441133,283.8379914,202.0292849,82.85182163 +430.3760224,226.1605605,328.0628801,217.8003543,179.5417932,362.8546742,408.9641724,193.750813,286.4549839,204.2483029,82.77074254 +401.3670864,218.3318268,309.5665226,213.806201,177.7002427,353.67669,389.7150633,190.1111973,275.0915389,200.6151721,82.93364597 +394.6795402,215.4620309,305.5596882,208.2631426,176.3422086,340.7187966,385.7225314,189.1758803,272.7752623,198.5075336,83.01801489 +451.2813711,231.1343753,341.576528,217.8586109,180.1902927,362.3420856,421.5157446,196.1046478,294.147726,205.8476299,82.68848032 +426.618147,224.0806724,325.4506318,210.9466783,178.2794129,341.5846052,398.033333,192.8577428,281.7519591,201.4040168,85.00776179 +425.8895478,225.3569003,325.964724,216.4986419,180.1543912,358.2623473,406.1125139,194.1144656,285.2251372,204.3721473,84.91597598 +439.906213,230.1565654,337.5898539,221.3500727,183.477657,377.8803064,434.2634904,198.8618059,299.6564251,210.4111221,84.73405274 +407.1186899,218.9447756,314.2213607,208.016879,177.5911556,337.171055,392.6374475,191.5254065,277.8015896,200.0741232,85.09840112 +419.4637462,221.9368906,318.0558791,210.3183931,176.2952775,332.7685169,375.7376116,189.266557,270.4107894,197.5359885,85.10964041 +397.7225049,218.2855243,308.4738347,214.5256252,179.0470799,355.2455873,390.3271036,191.1361919,275.6376251,201.9085256,85.05038143 +432.3914118,225.0203564,328.8190821,209.8670349,177.9625826,337.7778585,399.4758114,193.1133064,282.9713503,201.100913,85.00849059 +422.4943449,224.7666808,324.3588717,217.1513161,180.5806912,361.7956646,408.008944,194.3616427,285.8278903,205.037314,84.90714262 +440.5968527,227.4091371,333.3717963,211.6145309,178.2474644,340.2580361,399.698927,193.4789121,283.7040082,201.5205225,84.96976779 +424.4390371,224.1484913,324.68607,212.9000862,178.9289335,347.5532626,400.5696476,193.237679,282.7709614,202.3934491,84.98150109 +411.7280572,222.0113489,318.5366268,215.758209,180.5820463,361.7092107,407.7755236,194.090142,284.901623,204.9722409,84.94656328 +423.5043786,224.1424714,322.446011,214.6663009,178.4659899,348.2205326,390.8083915,191.7571383,277.8141773,201.2991776,84.99500625 +421.5026981,222.5110222,321.4690498,210.0214015,177.3810059,337.0091459,390.1127941,191.4218055,277.5445795,199.7644971,85.06038747 +435.7298267,227.5373224,332.5718777,215.8176336,180.4829239,357.154216,414.2786035,195.525532,289.9501261,205.2884677,84.87730079 +420.2105267,223.3058464,321.6075331,213.8803217,178.9507202,349.9418276,396.8964731,192.5816852,280.4929955,202.2508812,84.98657263 +399.7349905,217.2813518,310.0988403,208.1522613,177.9359624,340.3416971,393.652435,191.4479757,277.5119746,200.5753879,85.1061925 +404.1473593,217.997645,309.5804103,208.1386295,175.9885634,330.6032696,373.1475088,188.532488,268.1456879,196.9047817,85.1675888 +435.094873,227.3099418,331.8416561,215.3737556,180.1433406,354.9746247,410.7199348,195.0706563,288.3199406,204.6279359,84.89563036 +419.4506635,222.8608695,322.0560337,212.4241966,179.0580839,348.3904356,402.1858918,193.2588434,283.0389232,202.6378826,84.99115252 +411.8810085,221.678249,316.7959187,215.1935242,179.2999803,354.9496001,395.9973996,192.2039885,279.2610922,202.6285423,84.99416125 +433.3742172,226.1910469,329.2387246,213.3938486,178.8197961,346.608239,400.312194,193.3421229,283.1451948,202.3039738,84.95956089 +410.4699552,220.3364298,313.7424892,211.6705074,177.1308468,339.9557348,378.9936404,189.6759155,271.2928661,198.8185511,85.09518884 +402.8133436,218.3187797,311.2026955,209.7973251,177.7349606,341.296302,389.4458792,190.8818494,275.7037899,200.0928439,85.09919321 +417.9387616,220.6261494,318.5698156,205.9444007,176.0268009,325.5955135,382.4358986,190.209736,273.8513636,197.4970162,85.13894627 +449.6630479,231.7940498,341.8485984,219.2898619,181.9149328,366.1296207,425.2172365,197.686747,296.311947,207.8628802,84.77311966 +406.507635,220.5751026,315.1075589,215.0935437,180.345302,360.8617155,405.3165633,193.4815613,283.1660416,204.4915716,84.97419483 +425.0551549,224.0679172,324.6709567,212.2413175,178.6178925,345.1674034,398.5654368,192.927226,281.8422988,201.8800827,84.99371213 +415.6391603,220.5940701,317.3915485,207.7710033,176.3958891,330.1117673,382.6048495,190.1859712,273.7106113,197.9945751,85.12163181 +434.0938105,226.6851404,329.9991423,214.5269196,179.3280738,350.4504224,403.2696978,193.8373137,284.5415546,203.1579641,84.93219793 +437.6914964,229.1840285,333.4371065,220.5905031,181.3874262,367.4986318,412.9187312,195.6385718,289.4213498,206.4778984,84.82224353 +438.1183984,228.2414606,333.47694,216.5694991,180.3831806,357.3767273,411.6608315,195.2446252,288.8678331,205.0338447,84.87188507 +393.6916998,215.3822374,304.6048727,206.9140447,176.4393146,332.7407897,378.5651215,188.9749411,269.8244451,197.7514823,85.18261687 +416.6345325,222.6440593,318.9324775,214.5964565,178.6532735,349.9691823,391.2777145,191.7108588,277.6082054,201.5162871,85.01022961 +402.1483639,218.2211383,309.7913297,210.4536301,177.3554198,340.6640044,382.6842654,189.9249278,272.3945902,199.2382486,85.11332979 +425.0895966,224.3345964,325.4735357,212.9742189,179.3473755,349.6267189,404.7099751,193.8486338,284.6736999,203.1952321,84.96195725 +414.396238,222.4963809,318.9560057,215.7214689,179.7616101,357.2598162,400.4513755,193.0086857,281.6952462,203.4789095,84.96796302 +403.516703,217.7570995,310.6435415,207.1774212,176.6649721,332.5217,382.6841341,189.9074934,272.6465173,198.3032252,85.14815023 +411.7958416,221.7332066,317.1296081,215.1141545,179.4722017,355.5242355,397.3982345,192.5340493,280.0743752,202.9268203,84.99000847 +423.9357267,224.5537313,324.4043078,215.1395669,179.6823206,354.6041384,402.8840403,193.5814669,283.5221029,203.5655496,84.94592646 +405.0522933,220.1629905,315.0130411,214.5302791,180.7245921,362.0019796,410.6009344,194.1833124,285.574287,205.2631097,84.96449814 +412.5814716,222.4239461,319.847977,216.3959128,181.2824196,365.7585102,414.4594019,195.0685599,288.1032589,206.2457982,84.91479006 +430.4832887,226.0222465,329.9561108,214.246568,180.3023312,354.7878072,414.7211971,195.4744314,289.9168012,205.0190862,84.90567019 +432.4561716,225.8716985,328.9486794,212.8042351,178.8155202,345.8298036,401.1574533,193.4747787,283.5635605,202.3380791,84.96235436 +415.9819101,222.201833,318.4892399,213.6197758,178.4684354,348.0335455,391.5281184,191.6266274,277.5727872,201.2833453,85.02052245 +408.1469991,219.3472788,315.4359236,208.7250673,178.3000964,341.4158385,399.2662259,192.4487462,280.8393111,201.4056865,85.06634482 +410.8066078,221.4471349,315.9074139,215.4425679,179.1852757,354.9445547,393.5527319,191.8776721,278.0610004,202.3686038,84.99903564 +412.1299229,220.9301427,317.9921619,211.2028018,179.0739229,348.0211234,402.2268831,193.1014418,282.4416455,202.6293312,85.01697414 +413.9176161,220.5157933,317.3172349,208.7065302,177.3772042,336.3030641,389.9375446,191.2559737,276.9020102,199.7085917,85.08426274 +412.8251975,221.3894786,318.2348982,212.4716449,179.1509467,350.01306,400.7757886,192.9363758,281.8353994,202.6462474,85.00762463 +409.9462725,220.4100565,315.6516162,211.6094457,178.3982316,345.7971702,393.7271031,191.7853619,278.2691227,201.2567274,85.04654762 +447.1902242,229.3776273,337.214102,213.4849752,178.7864317,344.4898536,402.9276027,194.109996,285.55595,202.4653379,84.92431939 +425.3664634,224.1667962,324.8364496,212.4154596,178.705664,345.8302093,399.0514563,192.9977607,282.0425451,202.035504,84.98796857 +450.1392728,230.9077309,341.2423358,215.7455144,180.5182289,354.7499927,418.1132673,196.5605707,293.1354119,205.6057475,84.8357999 +424.0596695,223.1109476,322.1191189,210.3976249,177.095992,335.9126557,385.8500579,190.8798614,275.6355607,199.1705495,85.06349315 +439.9801674,227.5376401,332.5025241,212.889754,178.2181242,342.0026652,396.7259928,192.9978302,282.1190256,201.3261701,84.97004268 +422.6849708,223.9238671,322.6307385,214.3727659,178.8759188,350.0406446,395.9728665,192.4195791,280.0845595,202.1131046,84.98300529 +449.9781974,230.0122344,337.9131158,213.9467402,178.3116564,342.487714,397.4726905,193.3542973,283.1595062,201.5627234,84.93320151 +409.4075105,219.4956745,314.4633896,208.6087719,177.1058863,335.5481572,386.3223087,190.6324731,274.8890132,199.1076934,85.10928562 +408.6572599,220.9302498,315.8846979,214.629317,179.7498214,356.7229701,400.9744455,192.9238695,281.4894915,203.4596787,84.98902819 +411.441991,219.8144678,315.5827831,208.0819193,176.7304542,332.5902798,384.8863075,190.4572749,274.5409378,198.5384972,85.11661758 +415.5026419,221.2500916,317.7459315,210.329494,177.3749455,338.2816996,386.7251866,190.8715984,275.4829015,199.5412183,85.07400793 +419.5542419,223.0217849,321.7183836,213.014977,179.0118266,349.040474,399.5744967,192.9475435,281.7879788,202.4399987,84.9915693 +407.3941934,219.1104035,313.2870472,209.057139,177.341239,337.7220322,386.6728138,190.6459992,274.7908654,199.4736554,85.10166711 +425.6815251,225.6030788,325.6233442,217.6235891,180.2628412,360.324975,404.3465614,193.9382207,284.3910546,204.422965,84.91241393 +433.7390242,227.315106,328.2333136,218.0030013,179.0651835,353.8043684,393.0629205,192.3878241,279.5685258,202.2852675,84.93518196 +414.4983787,222.7089207,320.2339873,215.9976907,180.7184819,362.3054823,410.3176245,194.4088031,286.2149378,205.2711722,84.93339726 +431.3953758,226.9436654,329.3991853,217.4101743,180.446292,359.7735584,407.966355,194.6856964,286.6766995,204.8974037,84.88784288 +444.8177706,231.3369499,340.2502031,221.4613685,183.281414,376.2239646,433.3956542,198.879091,299.7442298,210.1066821,84.72969627 +424.4495331,224.7856511,323.5061568,216.2364354,179.093701,353.2003366,395.0623802,192.3819922,279.7961483,202.367522,84.9637552 +417.675127,222.3302071,319.0053665,212.7295955,177.9759307,344.2134619,388.6876278,191.208462,276.3712614,200.4733465,85.03909576 +421.4565196,223.59609,322.2825685,213.6523609,178.8108306,348.628971,396.0100946,192.5378815,280.2813743,201.9941948,84.99392179 +414.6510295,221.726924,317.9747306,212.5965608,178.3400102,346.0947916,391.8422144,191.6874633,277.762429,201.0993102,85.03449268 +395.5318048,216.99006,307.4068031,210.8896846,178.4042731,347.3586255,390.8794643,191.0558303,275.7730096,201.0339635,85.09432654 +413.214142,222.0956678,317.7837152,215.4594999,179.5286326,356.213075,397.8159531,192.5533665,280.2258222,203.0379669,84.98251557 +456.3285132,233.5340007,345.788752,220.001263,181.9086233,365.8153179,425.7738458,197.9867495,297.2533883,207.9217972,84.75248899 +425.4725865,224.6948906,324.1526975,214.6633965,178.6568748,348.540161,393.6579984,192.2775514,279.4836443,201.6917966,84.9830709 +439.3098232,228.4286889,333.5220515,216.4887736,179.9511881,355.1021611,407.5736329,194.6438835,286.9981296,204.2439854,84.88734033 +452.5453018,231.7823412,342.3578847,217.1280836,180.6497102,356.9000019,417.0565189,196.486525,292.7573907,205.7461966,84.81994736 +406.3755436,220.4026365,313.6468491,215.0138752,179.3073828,355.7083789,394.4651211,191.9145331,278.1590431,202.5260107,85.01318778 +444.67603,229.7267545,336.9514675,216.6417703,180.273828,356.0691263,411.6722207,195.3916551,289.3157252,204.9357856,84.85730575 +423.2950994,223.9090298,323.3174785,213.6422047,178.9018708,348.9859704,397.963579,192.7347458,281.1590726,202.2597985,84.98013704 +424.9437356,223.8598616,325.5825321,211.2372104,178.8407917,344.6942492,404.5456584,193.7389529,284.7804413,202.4919868,84.98904709 +447.5962979,231.1255668,340.1446549,218.6784176,181.3853256,363.1535516,420.6306712,196.932469,294.0129644,206.8909628,84.80236679 +435.4443213,228.213065,332.8450746,218.394399,181.1292337,363.5926019,416.1762863,195.8936911,290.8699868,206.2458864,84.84657479 +390.1191974,215.1246489,303.2224943,208.9520913,177.347087,340.592657,382.419988,189.5670144,271.3332947,199.1746469,85.15190907 +426.5235851,226.5765473,327.8482717,220.3014319,182.0713331,372.6016451,417.9656624,196.0185864,290.738215,207.5831778,84.83176423 +458.8591385,234.5204861,347.1976013,221.9661275,182.5927853,371.5354358,428.8226294,198.4705406,298.6024222,209.0587381,84.70780791 +412.3216256,220.8000576,317.2376889,210.8566059,178.4539519,344.6841772,396.2197673,192.2012442,279.6047877,201.4778289,85.04220186 +433.7505889,226.6381548,331.108374,214.12421,179.8757175,352.2487345,410.9050113,194.9617725,288.3023631,204.2749757,84.91286322 +434.8656403,227.4076518,330.6091012,216.6420343,179.7249279,354.9217577,404.0553558,193.9922152,284.9666182,203.7322653,84.90823854 +421.1124763,223.5006164,322.8270123,213.4257095,179.0302396,349.3286889,400.5900284,193.0869432,282.4332456,202.5203315,84.98496177 +395.2349699,216.7927719,307.7154587,210.1904792,178.5972693,347.3026068,394.4154514,191.5427595,277.4041706,201.4824074,85.0906276 +414.9560829,221.0746309,318.6175351,209.8251834,178.0765151,340.9948158,395.8387066,192.1218906,279.6801803,200.9689648,85.05130486 +411.5579451,221.1891065,316.4595911,213.4136644,178.7790898,349.9457516,393.8778255,191.9037124,278.3779199,201.8075545,85.02073709 +468.5592184,234.2153734,350.2249067,213.3134693,178.8669026,341.5482865,409.8862152,195.7307798,290.856551,203.0533671,84.86830401 +423.7669891,223.9628397,324.1830155,212.7796317,178.877818,347.3283594,400.0621064,193.1261184,282.422593,202.2900329,84.98852465 +427.5939127,226.0089343,326.6297371,217.6898775,180.2592711,360.1853788,404.7340109,193.9993628,284.6424634,204.4667696,84.9034957 +399.0948082,218.3758882,308.4978979,213.8993743,178.4534115,351.3490566,385.8645444,190.4376187,273.5588214,200.8860933,85.07084666 +391.8826179,215.4100646,304.0425877,208.4952248,177.097169,338.447156,381.839162,189.4421363,271.1520336,198.794068,85.1585814 +448.1502222,230.9411667,339.9068495,217.7891066,180.8911866,359.6209467,417.1882768,196.3937949,292.4027396,206.0574479,84.81992041 +387.0188542,212.929164,299.5142786,201.6913624,173.9803595,313.8182758,361.5398913,186.2701632,261.8718065,193.6602387,76.39341821 +386.0330624,214.0070388,299.7293066,206.4682595,175.538897,328.0397753,368.6865496,187.3681061,264.9807237,196.157023,76.31164476 +398.1421244,218.1634269,309.6135386,210.7833909,178.3289191,345.1122183,392.9496794,191.3916971,277.4481789,201.236855,76.14675255 +369.978121,208.4706621,289.8186257,199.0632814,173.3723357,309.9082761,356.9253704,185.1249142,258.450182,192.5060831,76.47690475 +381.2626172,211.0880665,293.2992397,201.0643285,172.3380373,306.3805797,342.3892192,183.2320567,252.1033003,190.4527032,76.48846798 +361.9525847,208.006843,284.8074876,204.6417697,174.5918951,325.3829881,354.9393789,184.860537,256.7592146,194.0907564,76.43674984 +391.6387357,213.6237263,302.4019798,200.7713446,173.7080571,310.5540278,363.004562,186.5119182,263.0064624,193.3858941,76.39348787 +383.1962721,213.5611593,298.3798817,207.0590403,175.8829416,331.0920847,370.2454478,187.5895478,265.5485875,196.7018248,76.30403184 +399.3796522,215.7969925,306.4071418,202.3170677,173.9966503,312.8123048,363.0814436,186.7933229,263.5169184,193.814736,76.35870102 +385.0904592,212.9645723,298.7324503,203.3264446,174.5418582,318.9038724,363.8866333,186.5828823,262.7132439,194.5324985,76.37104818 +374.1179681,211.2863852,293.4877689,205.8512417,175.862272,331.0293306,369.8269526,187.3616497,264.7585821,196.6233964,76.34059506 +384.5390966,213.0689878,296.9695595,204.9180704,174.1316337,319.5465756,355.3858103,185.3840908,258.6288903,193.5850873,76.38389315 +382.1869615,211.4280668,295.9950209,200.8016958,173.2161471,309.861094,354.8441258,185.050688,258.2463078,192.2659457,76.44251222 +394.3107925,215.8045262,305.3756,205.8952592,175.8176779,327.0924353,375.8401468,188.5642647,269.0522111,196.9188034,76.27517997 +381.5221951,212.353953,296.2224197,204.2516921,174.5105031,320.959332,360.5518611,186.0807218,260.9524923,194.3404094,76.3756939 +363.4519329,207.1027604,286.3268628,199.2050271,173.6095817,312.5320483,357.6955552,185.100716,258.3544254,192.855973,76.4835259 +368.0950402,207.7522967,286.0863104,199.1450692,172.0411803,304.4170792,340.0736154,182.6130852,250.1880638,189.8701323,76.54219581 +394.3113778,215.7170352,304.8655467,205.5381384,175.5596291,325.3255484,372.6226825,188.1528097,267.5491988,196.4055514,76.29237002 +380.2470375,211.7786266,296.3778883,202.8921728,174.6082203,319.5019364,365.3008791,186.6233428,263.0400619,194.6734164,76.37919524 +373.735992,210.821752,291.8416895,205.2690976,174.793072,325.1101406,359.8627121,185.7618357,259.8889675,194.6562515,76.38334841 +392.6766163,214.7054553,302.6834707,203.8076629,174.4350074,318.1334296,363.5609925,186.6975379,263.1201646,194.4196015,76.34938882 +373.7016476,209.8853963,289.7211453,202.2935286,172.9957408,312.4982058,344.9886284,183.627323,253.0174137,191.4821781,76.47625135 +365.7507432,207.8068027,287.0240197,200.5013671,173.4790331,313.3599813,354.1836597,184.583491,256.6519298,192.5096413,76.47886137 +379.6651988,209.8992809,293.7547399,197.3169716,172.0894437,300.1607682,347.9801057,183.9967544,254.9734051,190.360877,76.51297577 +406.7141743,219.5094153,313.343105,208.9529737,177.0642178,334.9725693,385.2898789,190.3797376,274.453094,199.1523348,76.18119267 +369.0385254,209.9234213,290.3703421,205.1811935,175.6454314,330.1486949,367.723673,186.8482671,263.2684952,196.1924632,76.36448484 +385.6671383,212.9197324,298.7901229,202.7888311,174.2695634,316.875102,362.089487,186.3305186,261.9543727,194.0775036,76.38152829 +377.5440941,209.8267402,292.6171605,198.8441622,172.4055353,304.01725,348.3619055,183.9783383,254.8712176,190.8013686,76.49912217 +393.3400771,215.1760705,303.3463566,204.8225137,174.8486378,321.4352207,366.0662578,187.1289243,264.3750146,195.1202035,76.32463014 +396.8473048,217.4321672,306.2510508,210.1228843,176.6136919,336.2015367,374.5753441,188.6643065,268.5923824,197.9960116,76.22815704 +396.6932713,216.4805904,306.2283175,206.5833917,175.7459996,327.3636283,373.5005371,188.3224417,268.1051125,196.7221285,76.27049289 +358.315934,205.4301746,281.6741807,198.0801057,172.3444731,306.0366627,344.6679407,183.0082018,251.7470296,190.4662413,76.55441929 +378.5398241,211.7189898,293.8092172,204.7488184,174.3179356,320.9953655,355.8659323,185.3072044,258.3064411,193.8266519,76.39913689 +365.7553566,207.876135,286.0145875,201.1193652,173.165988,312.9071865,348.2677257,183.8004887,253.8762821,191.8059236,76.49206559 +385.5526198,213.174788,299.4596299,203.4595812,174.8540747,320.6680717,367.3161374,187.1299431,264.4728356,195.1416422,76.3521131 +376.1379131,211.5590237,293.7057123,205.7373115,175.2067151,327.1240427,363.7868088,186.4261155,261.9189526,195.4151077,76.36012533 +367.0740228,207.4923869,286.8778344,198.3251631,172.5787302,305.9478482,348.1121252,183.7638192,254.0290278,190.989693,76.52223964 +374.2539721,211.0027134,292.2790872,205.2434542,174.960931,325.7128997,361.0023069,186.0331334,260.5443313,194.9487171,76.38033897 +384.5691908,213.3851687,298.5056128,205.3194797,175.1308038,324.961526,365.638297,186.9155948,263.5069354,195.4550644,76.3382104 +367.583998,209.5502155,290.2644137,204.706767,175.946191,331.0476511,372.4762459,187.4539882,265.4115617,196.8161655,76.35545097 +374.452436,211.5444278,294.4378749,206.362772,176.4519587,334.3921018,375.8417973,188.186626,267.5188619,197.700079,76.31124099 +389.818781,214.5026667,303.1302252,204.5136986,175.6735198,325.0398029,376.2503884,188.5061145,268.9713679,196.7072329,76.30119221 +392.0418357,214.4910693,302.520997,203.3441138,174.4230305,317.4763599,364.2756793,186.8158621,263.5165727,194.4342143,76.35202204 +377.6073589,211.2923927,293.4039946,203.9211954,174.1213757,319.2680464,355.9907004,185.2517724,258.3534934,193.5551671,76.40697755 +370.3068809,208.7633356,290.7682056,199.7024919,173.925786,313.4434964,362.6924938,185.9488092,261.2149121,193.5631221,76.44634613 +373.2385213,210.7678886,291.2841854,205.5740106,174.6823213,325.2018032,357.6713179,185.5205805,258.9787081,194.4194061,76.38827862 +374.1640183,210.248038,293.0273369,201.8831535,174.5872534,319.1849979,365.0666662,186.5033633,262.5859091,194.6160388,76.40198418 +375.9182306,209.8669547,292.5895646,199.7350492,173.1789295,309.2035307,354.490256,184.9274374,257.770075,192.168857,76.46312757 +374.7107999,210.5760979,293.114876,202.9148125,174.683721,320.8825067,363.9809238,186.3437117,261.9821203,194.6856865,76.39463161 +372.3062696,209.7432164,290.9654669,202.1670718,174.0455547,317.2812984,357.8748132,185.3735869,258.9314127,193.5053668,76.43031293 +404.9816618,217.4840849,309.6755196,203.9567307,174.4421868,316.4529119,365.8348743,187.3442171,265.1637412,194.5962861,76.31679063 +385.9159616,213.0283383,298.9621203,202.9685573,174.3281245,317.4387552,362.4643144,186.4045404,262.1831053,194.1835024,76.37598513 +407.371196,218.8003861,313.0291506,205.946003,175.8881442,325.2336885,379.1587502,189.4343089,271.7651162,197.2340014,76.23713743 +384.8156711,212.0508561,296.6918849,201.1779106,172.9868061,308.9868537,351.0767543,184.6003513,256.6231609,191.7804747,76.44477216 +398.7911445,215.8604332,305.578413,203.3560168,173.9878449,314.3170909,360.5943004,186.3797316,262.1138122,193.6839252,76.35991211 +383.2253803,212.7542871,296.9287792,204.6085305,174.4514461,320.9929337,359.7726044,185.9343738,260.5576386,194.2264735,76.37160619 +407.700089,218.0802541,310.4036937,204.3886201,174.0599009,314.7969643,361.3167867,186.7202203,263.1568635,193.8646463,76.32577583 +372.0885446,208.9291378,290.035832,199.5428152,172.9827837,308.5752538,351.4293291,184.3602367,255.8952597,191.7197834,76.48737374 +371.1477701,210.2379282,291.0968089,204.7912296,175.1738033,326.6240245,364.1694359,186.361341,261.7795919,195.365444,76.37894012 +373.8533261,209.1569057,291.0143639,199.0977093,172.6807741,306.0890994,350.422771,184.2050904,255.591992,191.2576594,76.49544274 +377.5397213,210.5128457,292.9467805,201.1074395,173.20993,310.9617205,351.8456133,184.5935836,256.5056161,192.0872063,76.45535151 +380.7643178,212.0220404,296.1887036,203.4320304,174.5813613,320.1360924,362.9123356,186.3565285,261.9417747,194.5282623,76.37984877 +370.5388119,208.7656046,289.2560483,200.0564677,173.1249275,310.4198717,351.5530592,184.4333841,256.0308904,191.9449695,76.48012925 +386.1378529,214.2587501,299.4438052,207.4220354,175.6619806,329.879567,367.119462,187.2055171,264.1837079,196.2589232,76.30944783 +393.4112757,215.7606158,301.8567673,207.8011535,174.6819892,324.4154344,357.5472916,185.9207971,260.1150118,194.4947002,76.33041106 +375.5995549,211.610483,294.5809509,205.9039581,175.9917536,331.3351266,372.2437045,187.6021606,265.7745241,196.8936249,76.32751114 +391.5162109,215.5214694,302.8526604,207.3339168,175.8184326,329.524239,370.1959965,187.8385729,266.1679696,196.6549211,76.28732584 +402.3927314,219.1196949,311.8436505,210.8223506,178.2016992,343.6475891,392.3013203,191.3861357,277.4073783,201.0381754,76.14265046 +384.8379671,213.4913949,297.6510526,206.2071957,174.6608727,323.7337557,359.1431178,185.9034297,260.2970472,194.4905879,76.35561385 +379.097785,211.3705466,293.8570511,203.1336523,173.7200387,316.0271633,353.5237003,184.8833672,257.2643069,192.8864755,76.4236515 +382.8279346,212.5746738,296.7482224,203.97885,174.4459129,319.8769064,359.823965,185.9969452,260.5769107,194.2101616,76.38307867 +376.6953169,210.8991021,292.9808536,203.0053231,174.0380017,317.6323464,356.2463341,185.2721435,258.4025247,193.4395499,76.4200892 +360.0428783,206.8694618,283.9255182,201.4712533,174.0351257,318.5696159,355.2666878,184.7556843,256.7770567,193.3127585,76.47495105 +375.0771993,211.2297186,292.727293,205.5169229,174.9932208,326.2504104,361.3302782,186.0551597,260.696501,195.0139095,76.37251463 +412.6795153,221.0043366,316.7920472,209.5759175,177.0923988,334.7578892,385.9510748,190.6332655,275.2310911,199.2552838,76.163487 +386.3326824,213.5013989,298.3637456,204.8678126,174.3346499,319.827689,358.0199494,185.7860494,259.9228724,193.9855355,76.37403055 +397.7644282,216.6210678,306.2733755,206.4897158,175.3985475,325.430416,369.9770654,187.8068931,266.4535645,196.0803831,76.28468465 +409.5411979,219.555383,313.9759918,207.1311924,176.0128433,327.1026156,378.2862588,189.368801,271.4150324,197.3779923,76.22333182 +369.2644098,209.7975363,289.2045623,205.1024195,174.8070167,325.8021903,358.4391921,185.5167245,258.9207382,194.5916149,76.40130968 +402.4377987,217.775187,309.2789389,206.6925274,175.649256,326.3081094,373.3956214,188.452991,268.5167546,196.6210027,76.25634282 +383.8513043,212.7905033,297.6071008,204.0318963,174.4584748,320.0852252,361.5118646,186.2126062,261.5432913,194.3234296,76.36870234 +385.0141611,212.5979637,299.4449619,201.877563,174.4449625,316.3893226,367.428293,187.0237147,264.5056952,194.572033,76.37713445 +404.9782064,218.9201045,311.8843959,208.3853748,176.6341748,332.3867603,381.3724517,189.7302963,272.4183015,198.3608898,76.20831526 +394.006874,216.3186298,305.4783494,208.0376043,176.3972231,332.5916803,377.5832278,188.8487542,269.7087692,197.7970903,76.25007002 +355.4618145,205.3362769,280.5637914,199.8711713,173.0956048,312.7659226,347.9426958,183.5445449,253.1493258,191.664428,76.52742629 +386.3983013,215.0473107,301.1814341,209.7502633,177.1477738,340.3717303,378.8459015,188.9839209,269.7254927,198.8712711,76.2359252 +414.577491,221.8578838,317.9741449,211.3538797,177.6138885,339.7185755,388.4750917,191.0801152,276.5861142,200.1203291,76.12169057 +374.3957296,210.1082188,292.3792461,201.5477753,174.0821136,316.3476115,359.8386996,185.7261816,260.0768318,193.6679757,76.42504456 +392.7367495,215.0517683,304.1872066,204.4377786,175.3134223,322.9032748,372.8911336,188.0785268,267.6045152,196.070998,76.30719316 +393.809692,215.7075819,303.7246204,206.5778014,175.209856,325.2328322,367.0015304,187.2525175,264.6916898,195.6588269,76.30466942 +381.6828821,212.274617,296.9764163,203.7032925,174.6120988,320.3290981,363.9763554,186.4567332,262.4271158,194.6205661,76.37506545 +359.7594236,206.7363056,284.2488699,200.9109313,174.1746258,318.5067281,358.253597,185.179946,258.2337985,193.6517695,76.47076575 +376.3492684,210.251939,293.5222495,200.6624062,173.7575787,313.1542361,359.6714557,185.6657986,260.1793696,193.2196289,76.43272417 +373.8803816,210.4921342,291.722993,203.7739563,174.3610457,320.8857763,357.9678046,185.501055,259.1090073,193.9686247,76.40729051 +423.8663289,221.643872,321.0928891,203.8829577,174.5705704,314.1262677,372.1477166,188.7429408,269.7610389,195.1713264,76.26579035 +384.3941755,212.760429,298.2353772,203.1753344,174.5031627,318.6982678,363.3584729,186.475583,262.3559079,194.4519176,76.37713782 +387.7031039,214.6256701,300.3557839,207.5346098,175.6298736,329.7656903,367.4220132,187.2823444,264.5111699,196.2434868,76.30062515 +363.0248438,208.0388984,284.8164358,204.0845474,174.0910388,322.0572362,351.0373902,184.2687653,254.9649998,193.2194635,76.45475304 +356.4624309,205.388674,281.013902,199.3814345,172.9029118,310.8764851,347.519502,183.3959516,252.85655,191.3615882,76.53304378 +405.5878202,218.8164399,311.796283,207.6782921,176.2036061,329.3837078,378.4053052,189.2923695,271.1231747,197.6279697,76.22368784 +430.8257463,222.9997936,327.2930235,209.6087807,175.8553937,343.6920075,401.3788867,190.851239,282.1112162,199.5979244,84.00609537 +429.7469446,224.2582443,327.6273818,215.2778799,177.7232334,360.6127699,409.6494524,192.1276891,285.6935417,202.5671381,83.91851722 +443.9275575,229.179414,339.4055736,220.3241223,181.0842346,380.6911172,438.6053555,197.0621811,300.7183066,208.7007063,83.74230336 +410.9324463,217.7347898,315.8069549,206.568304,175.1505381,339.1226153,395.8417538,189.4742746,278.0220398,198.2357053,84.09581401 +423.2443178,220.6939802,319.5381065,208.9268798,173.8430507,334.5951373,378.240569,187.0736396,270.2113048,195.6488977,84.10432348 +400.712431,216.9207687,309.4882628,213.2601754,176.5826566,357.3956186,393.4265056,189.0412941,275.7984598,200.0469032,84.05115401 +436.9203057,224.0467602,330.9613489,208.4370056,175.5552031,339.8328718,402.7693238,191.1296546,283.304349,199.2937483,84.0065094 +426.2710881,223.6626403,325.959082,215.9956779,178.1550112,364.2479241,411.6824717,192.4197942,286.4228688,203.2513793,83.91033003 +445.056057,226.3787582,335.3634955,210.2640526,175.8247703,342.3145364,403.0139375,191.4398432,284.0038664,199.7123695,83.96798991 +428.3186296,222.9836507,326.3075505,211.5489334,176.482042,349.6367398,403.8915652,191.1629013,283.0176439,200.5581966,83.98167187 +415.2881801,220.8481664,319.9688456,214.6236397,178.1587948,364.1855157,411.5398436,192.1893132,285.5952941,203.2022928,83.94956925 +427.3763459,223.0045941,324.0390326,213.452468,176.0315203,350.4335998,393.9510815,189.7109904,278.069782,199.4736364,83.993966 +425.5304793,221.3870037,323.2503098,208.5514642,174.9471121,338.9332034,393.0345308,189.3309326,277.5972019,197.9070023,84.05778631 +439.9597902,226.5492156,334.5366097,214.5558104,178.0697451,359.5359943,418.0061174,193.5917617,290.545348,203.5070179,83.88042694 +424.172456,222.2094931,323.2873767,212.6851829,176.5295485,352.2554483,400.3255099,190.6198529,280.968941,200.4574569,83.98633299 +403.5394792,216.1144679,311.7151063,206.7895056,175.5166928,342.4801826,397.0257185,189.5055475,277.9552089,198.7732126,84.10397615 +407.7089746,216.6832344,310.8943288,206.745965,173.5349634,332.4288946,375.7276634,186.3672208,268.0146364,195.0235569,84.16165555 +439.2087291,226.2470898,333.6395669,214.1340057,177.7174756,357.2861196,414.3812323,193.0882295,288.840203,202.8395692,83.89782188 +423.3865188,221.7509756,323.7938951,211.0576641,176.6258856,350.5460406,405.5775033,191.2505399,283.3906763,200.8151934,83.99170348 +415.4220361,220.495303,318.2538267,213.9382481,176.8612858,357.2151492,399.2411947,190.1851423,279.5752674,200.7969893,83.99526105 +437.6046895,225.1525068,331.134291,212.0985052,176.4010726,348.810676,403.6528195,191.3450679,283.5228393,200.5008979,83.95910945 +414.089483,219.0921429,315.1009269,210.4369223,174.6912509,342.0364572,381.837183,187.5956086,271.4039889,196.9777318,84.0912914 +406.2755108,217.0496751,312.6084388,208.3223898,175.2848786,343.226147,392.3925872,188.7789126,275.7533342,198.2213218,84.09761689 +422.1108148,219.467508,320.3542039,204.4445232,173.5972767,327.3681218,385.2439689,188.1148711,273.8764076,195.6494211,84.13271037 +453.8778953,230.8059019,343.7699674,218.1062129,179.500943,368.6301963,429.1480037,195.744371,296.9922521,206.0984971,83.77882871 +409.9454215,219.3933874,316.5192519,213.8866515,177.9195136,363.2786226,408.9114312,191.5651981,283.7627593,202.7018309,83.97692972 +429.0863098,222.9459535,326.3924602,210.9141023,176.1823926,347.2836808,401.8948145,190.8888973,282.1497105,200.0594521,83.99298682 +419.5413187,219.3778572,319.0127113,206.2540822,173.947326,331.8641064,385.3337301,188.0246722,273.5972302,196.1130339,84.11694757 +438.3540838,225.6759068,331.9138065,213.3099807,176.9189545,352.7839644,406.780558,191.8929569,285.070474,201.3792464,83.9325864 +441.5183296,228.0868083,335.0189758,219.5084066,178.9587205,370.0066824,416.6432291,193.654569,289.9929459,204.6959093,83.82693966 +442.332334,227.2383042,335.3854716,215.3608213,177.9683173,359.7777737,415.3514814,193.2975286,289.4499857,203.254844,83.87461515 +397.308049,214.1389706,306.0672966,205.5057839,174.011301,334.7145662,381.4126634,186.9400017,269.950063,195.9055176,84.17768096 +420.0445616,221.3529863,320.1971654,213.2891151,176.1879866,352.0138529,394.2752551,189.5557941,277.6423641,199.6466076,84.01007189 +405.5625495,216.926028,311.0883023,209.0861495,174.9043669,342.6506449,385.5339583,187.8180206,272.4367715,197.3722244,84.11046785 +429.2306612,223.2790371,327.2982035,211.725688,176.9312875,351.9261355,408.3228358,191.9109589,285.2374313,201.4153985,83.9623944 +417.8921264,221.2822255,320.3518117,214.4606249,177.3108364,359.4992797,403.8116031,190.960423,282.0070399,201.6426506,83.97001168 +407.2538583,216.5183428,312.1465944,205.7612597,174.2306283,334.4505517,385.6072561,187.8496564,272.7805319,196.4623048,84.14338505 +415.2504379,220.4986066,318.4555144,213.8993638,177.0259287,357.7868245,400.7480204,190.5044522,280.4260323,201.1032712,83.99114987 +427.8402983,223.4601953,326.0703904,213.9537733,177.2636889,356.9766722,406.4097869,191.6361348,284.0644063,201.7823648,83.94709454 +408.642389,219.0359659,316.5645537,213.3117977,178.3066301,364.4701003,414.4108398,192.3170753,286.2985729,203.4875118,83.96800215 +416.1648821,221.2788484,321.3434079,215.2183268,178.8526437,368.2412631,418.3532693,193.1641625,288.8176966,204.4673541,83.91935976 +434.6178262,224.9822774,331.8404188,212.9226608,177.8774684,357.0683641,418.4526037,193.5114183,290.4575665,203.2246203,83.90852542 +436.8071496,224.8607851,330.9039151,211.5472494,176.4041867,348.0808453,404.6421046,191.5180965,284.0546427,200.5543289,83.96166471 +419.6426695,221.0074316,319.9805952,212.318846,176.0246505,350.1662028,394.607187,189.5562024,277.7535395,199.4383297,84.01982721 +412.1783021,218.2602722,317.2659821,207.3137641,175.8883534,343.5528423,402.6874446,190.5163406,281.292829,199.6050533,84.06503255 +414.423988,220.2937577,317.378217,214.2924144,176.7596649,357.3262848,396.8897854,189.9164345,278.5109942,200.5647677,83.99954166 +416.0762052,219.8302135,319.7092629,209.928076,176.6604824,350.3127599,405.8211343,191.1947676,283.035668,200.85148,84.01685498 +418.0443587,219.4126663,319.1158496,207.3480108,174.9590797,338.3747762,393.1313642,189.2691144,277.2271953,197.8980213,84.080765 +416.5170845,220.2043936,319.77213,211.1346553,176.7094105,352.1750608,404.1743083,190.9167675,282.1879281,200.8208986,84.00823961 +413.6211583,219.2087065,317.1620505,210.2621971,175.9560371,347.9005327,396.9346474,189.7420658,278.5200573,199.4188985,84.04569363 +451.7457681,228.4071481,339.2990357,212.1992443,176.3772116,346.6781475,406.3315021,192.1157961,285.9657088,200.6778722,83.92351764 +429.4950708,223.0863357,326.631465,211.1324834,176.2813009,348.0269964,402.4628225,191.0063854,282.4533939,200.2334543,83.98723183 +454.745447,229.9873682,343.3924812,214.5313225,178.116444,357.1526327,422.0089519,194.6418993,293.8269863,203.8521755,83.8385012 +428.161721,221.9898687,323.8875897,209.0098928,174.6635218,337.8762375,388.7329056,188.7917854,275.706692,197.3227343,84.0597389 +444.157417,226.434449,334.3141769,211.5003442,175.7781084,343.9798475,399.7934237,190.8766701,282.2077125,199.4811605,83.96868773 +426.5912169,222.8255248,324.3251743,213.115136,176.451837,352.296906,399.2068661,190.4209805,280.4294522,200.2988132,83.98288557 +454.5875037,229.0431106,340.0054138,212.6675151,175.8950933,344.6204221,400.7228075,191.310694,283.4382251,199.7552274,83.93159487 +413.0994432,218.2402554,315.9409002,207.1558244,174.6561279,337.4220487,389.2410091,188.5138371,274.9229385,197.2443171,84.10582827 +412.1399779,219.718866,317.2802199,213.375973,177.3057919,359.00052,404.4320306,190.9213233,281.9006775,201.6378567,83.99089142 +415.2177943,218.5673607,317.1227586,206.5601485,174.2739451,334.3518628,387.7172431,188.2887374,274.4448359,196.6514898,84.11293867 +419.3936711,220.0663478,319.3448264,208.9699171,174.9329755,340.2763128,389.7348461,188.7865957,275.6073901,197.6939405,84.07087333 +423.4013873,221.8725192,323.3334059,211.7180182,176.5755577,351.2257155,402.9513833,190.9295969,282.1475054,200.6228384,83.99168306 +411.3691284,217.9778428,314.9548412,207.7806014,174.9263613,339.87971,389.8877561,188.6888954,275.1845598,197.6751275,84.09800674 +429.2510828,224.4075236,327.0447107,216.4058415,177.8141186,362.6070793,407.7370152,191.8778089,284.7132915,202.5962264,83.91522699 +437.4933959,226.1538143,329.7516946,216.7893442,176.6174825,355.9956115,396.0759345,190.261422,279.6631006,200.4343373,83.93568732 +417.9710987,221.5262415,321.6999223,214.6972838,178.2771111,364.6120072,413.8593736,192.4172014,286.6639912,203.4516563,83.93737865 +435.2350485,225.8128472,330.9605296,216.2640787,178.0125453,362.1502564,411.59941,192.6844546,287.1815018,203.1067979,83.89063099 +448.7577902,230.3066856,342.0010353,220.342374,180.8659587,378.8683939,437.5282023,196.9735517,300.563438,208.3565426,83.73789787 +428.1688863,223.6328708,325.0591436,214.975045,176.6519734,355.4095536,398.1777216,190.3095349,279.9916253,200.5249004,83.96445598 +421.3611488,221.1241218,320.5064723,211.381439,175.5294543,346.252805,391.6155986,189.1026074,276.4435736,198.6153322,84.03744357 +425.1383323,222.3744903,323.7254906,212.3638912,176.3602004,350.7358776,399.2256199,190.4475377,280.4911304,200.1574831,83.99366032 +418.180172,220.460357,319.3362666,211.2462897,175.8823191,348.1142,394.8905991,189.5649431,277.8551754,199.240054,84.03357805 +398.7046361,215.6462252,308.5502195,209.5444295,175.949635,349.4332274,394.0386015,188.994191,275.9925282,199.1867676,84.09355934 +416.7280425,220.9025341,319.2015526,214.2352647,177.0914907,358.5125178,401.1261404,190.5484345,280.5973943,201.2183882,83.98379998 +460.5491375,232.5304495,347.7018999,218.7717357,179.4828602,368.2231715,429.6051881,195.9737895,297.7808512,206.1336951,83.75856816 +429.1910502,223.4796077,325.6184075,213.3625686,176.1982194,350.5988749,396.7512057,190.135384,279.5642773,199.8327465,83.98281602 +443.4573478,227.3944585,335.3785432,215.2396937,177.5275406,357.4080069,411.0624415,192.6411458,287.4246759,202.4423677,83.88939616 +457.0307662,230.8304931,344.420154,215.9163345,178.2384363,359.2842514,420.8471978,194.5222516,293.3483866,203.9757196,83.82310603 +409.6652352,219.1376997,314.8939773,213.7737234,176.8594511,357.9491271,397.6790784,189.8754907,278.4461284,200.6898582,84.0141752 +449.1176183,228.7946958,339.0148427,215.4804777,177.8785629,358.5430334,415.410798,193.4951075,290.0024267,203.1836688,83.85951516 +427.419285,222.8723098,325.1552129,212.41932,176.4908936,351.3115545,401.3839821,190.7962128,281.6546378,200.4710673,83.97984294 +429.0591484,222.7828428,327.4532311,209.7959002,176.4108197,346.758574,407.9359416,191.7166552,285.0916233,200.6659219,83.98930751 +451.6813601,230.0799441,341.964423,217.4299172,178.9549104,365.5126269,424.3587017,194.9164942,294.5021693,205.094857,83.80738744 +439.1924367,227.0891047,334.4822914,217.0676592,178.6807877,365.8433387,419.7090385,193.8249233,291.1913924,204.4107454,83.85187643 +393.5432342,213.861603,304.5425915,207.6545715,174.9188376,342.7353972,385.4994918,187.5818528,271.6304991,197.3498057,84.14874953 +430.0913854,225.4507073,329.3470404,219.1693813,179.641651,375.1507739,421.7687018,194.0789403,291.3918372,205.8005019,83.83793848 +463.3431926,233.6608002,349.3462624,220.9035057,180.210055,374.2806722,432.9406978,196.6261827,299.5101021,207.3356229,83.7146442 +416.1660655,219.6506962,318.8661175,209.5390079,176.0292107,346.8582767,399.5532022,190.2256254,280.0091635,199.6723921,84.040983 +438.0246336,225.6356496,333.0780533,212.8265892,177.4600423,354.5442231,414.5611835,193.0114694,288.8432589,202.4877677,83.91468806 +438.8201125,226.3191851,332.3425666,215.3524894,177.2881299,357.1491069,407.3764139,191.9361122,285.2466733,201.902814,83.91024995 +424.8187313,222.3171589,324.4031345,212.0052679,176.5784826,351.3650698,403.7782496,190.984862,282.5723395,200.6611338,83.98604185 +398.5905628,215.5145241,309.0031419,208.872856,176.1595991,349.4727306,397.7737548,189.5616047,277.8081594,199.6667377,84.0899418 +419.0377847,219.9948051,320.4555691,208.4413192,175.6611186,343.1180596,399.1146368,190.1533891,280.0461109,199.1590085,84.0495213 +415.2204913,220.0067522,317.9471416,212.164041,176.3427074,352.1748178,397.1552162,189.8929534,278.720163,199.9859137,84.0204552 +473.5780729,233.3530317,352.6341962,211.9488261,176.4676514,343.6426639,413.3555149,193.7168601,291.2317065,201.2693993,83.86779816 +427.5198847,222.763008,325.7297978,211.3958018,176.4275051,349.3660932,403.2802795,191.0292258,282.6028616,200.4458102,83.9886623 +431.4138422,224.9088205,328.2460968,216.5334902,177.8320453,362.5992374,408.2576643,192.0223428,285.1390338,202.6707054,83.90607701 +402.1469835,217.0247908,309.562845,212.6132682,175.9937566,353.4576189,388.7783861,188.3299008,273.6379169,199.0178728,84.07039379 +395.2312448,214.1134898,305.3533782,207.0720607,174.6568993,340.4265702,384.6955575,187.3775458,271.2367274,196.9325031,84.15539785 +452.4890093,229.9639586,341.8851161,216.5870629,178.4753836,362.0342647,420.9784106,194.4292348,292.9937154,204.2816084,83.82368028 +434.5981268,226.797302,330.8742176,213.2456985,179.6363258,347.213459,404.6351305,194.6788938,285.6917343,203.4591375,84.53990691 +433.5718978,228.0841994,331.2610947,218.9874202,181.5787843,364.2836908,412.9643881,195.9932636,289.3075615,206.5329137,84.44935772 +447.8218527,233.0562199,343.0936905,224.0816359,185.0047559,384.5138084,441.9622077,200.912327,304.2755953,212.7593149,84.26998425 +414.6908624,221.502262,319.387823,210.1669677,178.9020901,342.5865073,399.064515,193.2863196,281.5946296,202.053666,84.63049831 +427.0163944,224.4849195,323.1284367,212.5048724,177.5670759,337.9756456,381.4903437,190.9170759,273.8451543,199.4282752,84.63999111 +404.5650098,220.765978,313.1823831,216.8766482,180.3937127,360.9322741,396.7014944,192.8979819,279.4138799,203.9379798,84.58357837 +440.6156458,227.7612769,334.4475394,212.1203084,179.3223367,343.3733549,406.0285048,194.9358345,286.8822328,203.1556615,84.54000926 +430.1027433,227.5074524,329.6074763,219.6903975,182.0131917,367.9066209,414.9812134,196.2692634,290.0054116,207.2171088,84.44100309 +448.8353642,230.1782579,338.9426409,213.9180451,179.6143236,345.873405,406.29869,195.2927533,287.6194859,203.5878737,84.50164238 +432.1452266,226.8009008,329.9467792,215.2129785,180.3042893,353.2520094,407.1987811,195.0400629,286.6611637,204.4722184,84.5142172 +419.126961,224.7093343,323.6374324,218.2678192,181.9972192,367.779636,414.8044119,196.0055239,289.1304396,207.1340043,84.4809161 +431.1673402,226.8348087,327.6531999,217.0902268,179.8281569,353.9475094,397.2148938,193.5559072,281.6674872,203.3522793,84.52707674 +429.2656543,225.115275,326.7823696,212.215522,178.7079895,342.4425299,396.3124924,193.16375,281.2209225,201.7553752,84.59159284 +443.7577064,230.3396514,338.1246327,218.303186,181.9309203,363.2556346,421.3318521,197.4472455,294.1499599,207.4912182,84.41075248 +427.9471689,226.0336981,326.8869168,216.3223758,180.3280799,355.7741583,403.5663826,194.4361806,284.5198699,204.3395987,84.51924331 +407.2598676,219.8745068,315.2640731,210.3789652,179.254377,345.8951017,400.2013492,193.2632937,281.4513354,202.5755262,84.63860171 +411.4645783,220.4746038,314.4883762,210.2682588,177.2304894,335.7291228,378.9184956,190.1748289,271.5947119,198.75599,84.69825523 +443.049436,230.0878844,337.2846248,217.8297558,181.5698926,360.9634231,417.7016988,196.9597478,292.4571846,206.797773,84.42911279 +427.1631361,225.5220361,327.3754513,214.7494421,180.441567,354.1585257,408.8673965,195.0936911,286.9973585,204.7318905,84.52384459 +419.2259055,224.3024189,321.8739047,217.6191383,180.6836921,360.7997226,402.528452,194.0296309,283.1767327,204.7184707,84.52698693 +441.3886774,228.9498586,334.7139021,215.7808561,180.2065818,352.3887368,406.9419152,195.186332,287.1213091,204.4029218,84.4917657 +417.8662254,222.9268381,318.7173357,213.983034,178.4239897,345.3843171,385.0426813,191.4015023,274.9617226,200.7599619,84.62662113 +410.0542805,220.8002796,316.197535,211.9643514,179.0518458,346.7319014,395.6617161,192.6124926,279.3707076,202.0709034,84.63117518 +425.830346,223.2110258,323.8811286,208.0056217,177.2874646,330.711538,388.4473716,191.905412,277.442889,199.3880222,84.66945059 +457.7649227,234.6557039,347.438335,221.8770575,183.4089247,372.455855,432.5370337,199.6441822,300.6374972,210.1422546,84.30761092 +413.7749159,223.2204634,320.1643759,217.5584211,181.7521642,366.8786666,412.1866436,195.3783669,287.3097047,206.6346315,84.50815657 +432.8825666,226.7555772,330.0019899,214.5642607,179.9848881,350.8479074,405.172918,194.7403397,285.7588572,203.9477968,84.5261269 +423.2809999,223.1168468,322.5648206,209.8524563,177.6721912,335.2876385,388.5792132,191.8570333,277.2227932,199.9010472,84.65238283 +442.1407053,229.4911115,335.5001518,216.9917295,180.7333002,356.3670443,410.0582508,195.7224747,288.6404961,205.2919461,84.46483244 +445.4126944,231.9811736,338.7273254,223.2181428,182.8505903,373.7424611,419.9931386,197.550289,293.6250778,208.7037061,84.35655539 +446.1489465,231.0597979,338.9983997,219.0869224,181.8267884,363.4717225,418.671916,197.1589814,293.0544008,207.2292701,84.40527592 +401.0002732,217.8741961,309.5913973,209.0569446,177.697376,338.0104744,384.5651853,190.6877818,273.4560603,199.639287,84.71373079 +423.9097992,225.2020067,323.8871809,216.9269671,180.0056003,355.5916142,397.5898026,193.4506856,281.313809,203.5478941,84.54273234 +409.3479223,220.7202158,314.7012286,212.6753956,178.6523777,346.0695775,388.7673262,191.6398745,276.0272975,201.1836685,84.64502813 +433.014559,227.0936437,330.8947454,215.3844326,180.7417221,355.4986993,411.5819456,195.7325801,288.7943446,205.3170146,84.49496906 +421.7329815,225.1145598,324.0149882,218.1422663,181.1578749,363.1420961,407.1226495,194.8357511,285.6398277,205.5906411,84.50131068 +411.0003097,220.2918798,315.7158215,209.3122029,177.9359546,337.7891113,388.7941048,191.6291668,276.3185701,200.215343,84.67947546 +419.094341,224.3530326,322.1305768,217.5363149,180.8508302,361.357248,404.028308,194.3573316,284.0248451,205.0144349,84.52332284 +431.658844,227.3000318,329.6992248,217.6179485,181.0857561,360.5545173,409.6868277,195.4652209,287.6287495,205.6991422,84.47910812 +412.4307068,222.8335092,320.1733132,217.0017825,182.1459665,368.103825,417.6691245,196.1151805,289.823418,207.4336618,84.49876464 +420.0041412,225.1201402,325.0077372,218.9117947,182.7242388,371.9355714,421.6478275,197.0042282,292.3831209,208.4488096,84.44952479 +438.4233486,228.7712362,335.4431669,216.6529232,181.7359729,360.7887224,421.7781533,197.3748405,294.0751263,207.200369,84.439253 +440.5694743,228.6639857,334.4731379,215.2073386,180.2008209,351.6299435,407.8990959,195.3406046,287.6188254,204.4405551,84.49470893 +423.4460121,224.8167217,323.5997617,215.9714225,179.823988,353.703825,397.888719,193.4074079,281.3705367,203.3244142,84.55271046 +415.8839441,221.9855034,320.7808524,210.9613115,179.6453799,347.0479327,405.9003043,194.2860385,284.8151546,203.4463242,84.59867888 +418.2023176,224.1191519,320.9883846,217.931808,180.5627451,360.8353689,400.1277727,193.7256984,282.0546174,204.4541362,84.53189548 +419.8403246,223.6271735,323.2912377,213.5610307,180.4457649,353.8253896,409.0445904,194.98016,286.5517407,204.7190502,84.55002987 +421.7573566,223.1756654,322.6478939,210.9457614,178.6924278,341.7837485,396.3270128,193.0479576,280.755424,201.695953,84.6158283 +420.3270939,224.0090202,323.3986244,214.7954366,180.5251838,355.765591,407.4552947,194.7625113,285.7892055,204.7282142,84.54065976 +417.4061242,223.0016921,320.767991,213.9001596,179.7446502,351.4241203,400.1920396,193.5749496,282.1125659,203.2893042,84.57896602 +455.5308167,232.2129591,342.8727707,215.882014,180.181257,350.2661369,409.628525,195.964942,289.5705217,204.5788836,84.45636435 +433.271574,226.8944895,330.222425,214.7802264,180.0782806,351.570788,405.7213478,194.8374528,286.0310999,204.1157234,84.52041037 +458.5498253,233.8072224,346.9900528,218.2557015,181.9730961,360.8633304,425.3265136,198.5021978,297.4233445,207.8252684,84.36931066 +431.9033539,225.7559952,327.4361678,212.636233,178.411085,341.3257612,391.9843606,192.6184733,279.3101295,201.1432317,84.594424 +447.9740818,230.2351044,337.9234686,215.1758958,179.582674,347.5774994,403.123564,194.7643571,285.8818521,203.3789295,84.50175308 +430.3778852,226.6264142,327.9149558,216.7937705,180.2570329,355.8522826,402.4872068,194.2537286,284.0180852,204.199888,84.51528651 +458.3472702,232.8419393,343.5644333,216.3450379,179.6940901,348.194019,404.013414,195.1725706,287.0633381,203.6479283,84.46470925 +416.8810601,222.0192573,319.5402642,210.7471785,178.3995498,340.8617762,392.4830129,192.3438558,278.5280068,201.0503691,84.64083699 +415.9619885,223.5445098,320.9299378,217.0401321,181.1397817,362.6080822,407.7130331,194.768741,285.4943178,205.5672375,84.52254223 +418.9650511,222.3089861,320.6914119,210.1651732,178.0160744,337.81401,390.9671651,192.1336844,278.081158,200.4608634,84.64782708 +423.1517774,223.8563631,322.9285397,212.5719626,178.6885073,343.7247548,392.9690382,192.6151743,279.2003658,201.5158615,84.60552873 +427.2107858,225.6906002,326.9582239,215.3723927,180.387383,354.7993554,406.2302966,194.7762422,285.7465216,204.5233878,84.52436083 +415.0784419,221.7631802,318.4987248,211.3415508,178.6473927,343.228179,393.0495388,192.4445513,278.6736534,201.4499754,84.6334285 +433.1415395,228.2746559,330.7466762,220.1000489,181.6809205,366.2953696,411.0857626,195.7777087,288.37266,206.5695225,84.44598208 +441.3416629,230.002358,333.4104902,220.4761269,180.4547931,359.6159403,399.4124031,194.1652937,283.3419776,204.3716503,84.4673563 +421.8318351,225.3395619,325.3594277,218.4294829,182.1483273,368.3365081,417.2067906,196.2884885,290.2949132,207.4430002,84.46741047 +439.1092027,229.6986148,334.6569056,219.931969,181.8728648,365.8136032,414.9178444,196.5646026,290.7997763,207.066534,84.42171706 +452.6938563,234.186419,345.7209953,224.1239172,184.8051263,382.7553765,440.9419339,200.8775883,304.203017,212.4397141,84.26535141 +431.9893551,227.4488863,328.6857698,218.6712414,180.4822079,359.0205678,401.497098,194.1851159,283.6372041,204.4579806,84.49612352 +425.1649041,224.9243785,324.1197508,215.0276545,179.3146261,349.7690067,394.9026224,192.9576421,280.0753999,202.4835155,84.57084307 +428.99269,226.2281371,327.4013603,215.9938964,180.1731304,354.3033207,402.5230207,194.3221836,284.1269377,204.0513926,84.52663412 +422.0230325,224.2896965,322.9987855,214.8748427,179.6815118,351.6583288,398.1841554,193.4365463,281.4989133,203.1182907,84.56686122 +402.534152,219.4687753,312.21413,213.1326069,179.7260511,352.9085269,397.2784483,192.8179237,279.5695769,203.0307742,84.62727436 +420.5591597,224.7351044,322.8484269,217.9021512,180.9163865,362.0922306,404.4151765,194.3918291,284.1906026,205.138682,84.51561356 +464.4518509,236.3761622,351.3833164,222.5611573,183.4062662,372.1032828,433.0322804,199.9108413,301.4827573,210.1994689,84.28688757 +433.0326667,227.3205223,329.2838015,217.0129708,180.0207403,354.1969569,400.0651721,194.0343864,283.2376961,203.7423126,84.51542797 +447.2839306,231.2126649,338.996665,218.9673881,181.3814517,361.0965243,414.3999324,196.5189779,291.0606473,206.4113462,84.42030068 +460.8624264,234.661905,348.0424898,219.6541344,182.1097778,363.026886,424.1932843,198.4082132,296.980626,207.9681937,84.35344995 +413.5061962,222.9763704,318.5604098,217.4184712,180.6770571,361.5052155,400.9617208,193.7220442,282.0459547,204.5958765,84.54630526 +452.9173256,232.6162699,342.6028766,219.2013152,181.7210236,362.1996721,418.7121567,197.3318971,293.5712606,207.1404303,84.39047841 +431.1670779,226.6649846,328.714411,216.0855864,180.2865383,354.8437938,404.6280071,194.6022636,285.2003377,204.3586829,84.51252083 +432.8210912,226.5266714,331.0110825,213.4984571,180.2219571,350.38961,411.2383959,195.5641123,288.7141518,204.5815756,84.52154714 +455.578255,233.9251681,345.6441883,221.1972967,182.8610971,369.3409337,427.7645992,198.8395685,298.18887,209.1342172,84.33649287 +443.0792795,230.9030052,338.1544103,220.8532184,182.5928214,369.6921228,423.1313443,197.7607758,294.910022,208.462182,84.38058713 +397.262411,217.6374383,308.1083398,211.2006061,178.632536,346.0573079,388.6484011,191.3285011,275.1153186,201.1139682,84.68396048 +433.9950194,229.3193004,333.0510224,222.9150743,183.5495741,378.9333162,425.1364336,197.9619467,295.0132019,209.8372909,84.36662925 +467.1919423,237.4965481,352.9669041,224.7050956,184.1206054,378.1093477,436.3074651,200.493449,303.1014497,211.3942331,84.24241935 +419.9454004,223.4492889,322.4591768,213.1631844,179.8032389,350.3458384,402.7902509,194.0278003,283.5572414,203.5235875,84.57469952 +441.8090329,229.4214899,336.657468,216.5473881,181.3003212,358.2174043,417.8678065,196.8594536,292.4421712,206.4405234,84.44596508 +442.6514566,230.1280794,335.9672832,219.0866326,181.1450441,360.847224,410.729473,195.8305045,288.9137527,205.8766258,84.44102186 +428.6395249,226.0952164,328.0230999,215.7149254,180.4128022,355.03005,407.1208933,194.8737018,286.2483862,204.6036828,84.51761734 +402.3882239,219.3257135,312.6353404,212.4574332,179.9275275,352.9276064,400.9843973,193.351135,281.3355909,203.5013909,84.62378101 +422.7594077,223.7373071,323.9816755,212.092873,179.4220325,346.6098793,402.3465646,193.9422544,283.5932179,203.0043196,84.58324579 +419.0109077,223.824613,321.5648309,215.7985902,180.1402932,355.6933763,400.4059662,193.7201006,282.2942041,203.8657702,84.55338512 +477.3397708,237.1192695,356.1671757,215.6708832,180.2800905,347.303471,416.6898554,197.5871403,294.8759937,205.1935612,84.40011932 +431.3739994,226.583115,329.3859161,215.0634221,180.2485883,352.9848883,406.6074443,194.9130039,286.2621711,204.3598787,84.52119586 +435.2523829,228.7575672,331.8955136,220.2313675,181.6864199,366.2497994,411.5683659,195.8840994,288.7421831,206.6324246,84.43692188 +405.9853668,220.8552082,313.2330078,216.2275226,179.7833749,356.9488468,392.0487752,192.1766339,277.2509715,202.8843129,84.60339158 +398.9705185,217.86031,308.9185147,210.6587802,178.3776772,343.8033997,387.8946307,191.158572,274.7853875,200.715723,84.69021988 +456.3285837,233.7972161,345.5171582,220.3328627,182.3564692,365.7926349,424.3301508,198.3181803,296.6290468,208.2869563,84.35362272 +410.6611214,218.3671742,314.3689773,205.9814835,175.0923486,330.1411438,383.4233413,188.8232577,272.8927919,197.0149931,79.7739985 +409.5338307,219.5372772,314.5884839,211.2763472,176.8249617,345.8723259,391.176713,190.0170656,276.2595201,199.7734377,79.69063015 +422.5879524,224.1037925,325.3935873,216.0348259,179.9156643,364.686535,417.9142977,194.5246124,290.1109802,205.4006277,79.52265722 +392.1612994,213.47115,303.756951,203.0969017,174.43001,325.8246208,378.3925104,187.5617694,269.1440365,195.7540538,79.85874563 +403.9211858,216.2461448,307.2951734,205.2966217,173.247968,321.7136295,362.0712985,185.3695989,261.9237069,193.407781,79.86936428 +382.7303196,212.7934608,297.8836899,209.3145995,175.7672181,342.8205283,376.166667,187.2059262,267.1761762,197.4688332,79.81787279 +416.2184815,219.2673583,317.7856273,204.9213341,174.8119676,326.5655656,384.83428,189.0892409,274.0469467,196.7292234,79.77382311 +406.295676,219.0134917,313.034596,211.9515713,177.2130025,349.257626,393.0061539,190.2844428,276.9446997,200.3907212,79.68335642 +424.0431963,221.5045141,321.8915644,206.6170058,175.0855514,328.9313017,384.9716262,189.3641966,274.6201966,197.1453159,79.73766899 +408.4063601,218.3597722,313.4467986,207.770033,175.6936026,335.6783909,385.8723295,189.1210624,273.7376646,197.9407536,79.75012689 +396.1354642,216.4482842,307.5207864,210.6530401,177.1986657,349.1891821,392.7696961,190.0674575,276.1799847,200.3251807,79.72125031 +407.560716,218.4260625,311.3677036,209.5734109,175.2585969,336.426552,376.5692089,187.8005685,269.223687,196.9165186,79.7642396 +405.6915335,216.7991199,310.6408946,204.9748632,174.2575235,325.7102302,375.8203448,187.4377376,268.7560972,195.4699471,79.82303885 +418.9224786,221.6110971,320.9716101,210.6219953,177.1430317,344.8848316,398.9596921,191.3564276,280.7384158,200.6291824,79.65342843 +404.4458869,217.6812431,310.6361659,208.863076,175.6996085,338.089191,382.4215408,188.6255202,271.90005,197.7933886,79.75665964 +385.1292179,211.9863635,299.9464797,203.3169928,174.7335789,328.8872682,379.4100038,187.5946491,269.1350919,196.2038333,79.86724245 +389.481275,212.5513067,299.3172752,203.2309866,172.9379507,319.6261588,359.7262423,184.7193211,259.9174195,192.7999696,79.92433923 +418.4518987,221.3944289,320.1877044,210.2178097,176.8281571,342.8271536,395.5218017,190.8840001,279.1119465,200.0275593,79.67050343 +403.5671458,217.1652644,311.0685319,207.3183818,175.8047197,336.4696934,387.4497809,189.2065119,274.1287829,198.1486228,79.75940712 +396.1505598,216.0383523,305.9140399,209.9936017,176.0157581,342.6550021,381.5179327,188.2425678,270.6434563,198.1329038,79.76424033 +416.8909533,220.3444042,317.8850572,208.317394,175.6009721,334.9190174,385.5379191,189.2837384,274.211475,197.853945,79.72930271 +395.3747693,214.8414251,303.1877571,206.7196246,174.0023296,328.5974005,365.2578605,185.8575673,263.0709332,194.5958355,79.85836211 +387.683979,212.7815559,300.7387341,204.7028265,174.5584262,329.6166165,375.2344501,186.9346835,267.0698475,195.7565515,79.86047372 +402.6780115,215.0566827,308.0390739,201.1292514,172.996347,314.9492093,368.4633666,186.2979615,265.2604592,193.3608221,79.89499931 +432.0267668,225.5916206,329.5243109,213.950877,178.4869739,353.4473768,409.2573499,193.326167,286.6433244,203.0454006,79.5564801 +390.9586709,215.0354526,304.2707841,209.9358695,176.9742457,348.2784859,390.3758955,189.5014851,274.507059,199.8638941,79.74625474 +409.0872668,218.327682,313.5303645,207.1913595,175.404302,333.4848486,383.9644076,188.8659439,272.9410617,197.4594246,79.76142191 +400.3414262,214.9665441,306.7897125,202.8059113,173.3382267,319.1484684,368.7093778,186.2311936,265.0385963,193.8230754,79.87974564 +417.5472002,220.8484775,318.5823223,209.4608818,176.0689311,338.6143089,388.3835488,189.7842928,275.6479394,198.6474467,79.7045695 +420.7216667,223.1634418,321.4619703,215.2635334,177.9825023,354.730662,397.6147609,191.4163305,280.2046459,201.7580684,79.60449202 +421.241139,222.288361,321.7750618,211.3805614,177.0524209,345.138523,396.4364025,191.0817849,279.7063374,200.3988704,79.6486074 +379.4306169,210.1375819,294.7671564,202.0915211,173.3363954,321.6515444,364.9606913,185.2435876,261.7573889,193.555168,79.93869784 +400.8395002,216.8867726,307.8129161,209.3643131,175.4308135,337.8906733,376.9789173,187.6614818,268.7997184,197.1265047,79.77837108 +387.2128709,212.744734,299.3863912,205.4202598,174.2022002,329.097082,368.8026928,186.0584295,264.0205345,194.9678052,79.87432224 +409.0686351,218.6380554,314.3189897,207.9668539,176.0756429,337.7851483,389.8476254,189.8002737,275.809041,198.6779185,79.73254213 +398.5826721,216.7949945,307.8801967,210.4798404,176.4486291,344.8061077,385.8067683,188.9536264,272.8674019,198.9377267,79.73968679 +388.7810044,212.3587742,300.3989323,202.3262274,173.561768,321.4604577,368.7715362,186.0649944,264.2930772,194.0928223,79.90551066 +396.2323911,216.1153051,306.1620984,209.9553824,176.1758149,343.2311812,382.8719594,188.5316257,271.402875,198.4268576,79.76071254 +407.7735869,218.8221724,313.1586071,210.0385339,176.3825364,342.4948889,388.0104087,189.552704,274.7290291,199.0205787,79.71864033 +389.662489,214.6883043,304.3045059,209.4152911,177.3232328,349.356667,395.5802376,190.1953522,276.8885387,200.5767078,79.73719546 +396.8322627,216.8039324,308.7447715,211.2049755,177.8501254,352.9324604,399.2397827,190.9702257,279.1786268,201.5085467,79.69101847 +414.0109784,220.1641001,318.4992429,209.0822854,176.9720559,342.5809002,399.423726,191.2835354,280.6524091,200.3812195,79.67952144 +416.1672321,220.0980121,317.6870448,207.8177434,175.5936649,334.2345715,386.430127,189.4385874,274.7087561,197.8860489,79.73222577 +400.236812,216.5250047,307.5680586,208.4796906,175.2527657,336.1317059,377.2163046,187.6571595,268.9237607,196.8893072,79.78770994 +393.0106279,213.9135469,305.0354669,203.8272678,175.0866367,329.9032442,384.7347514,188.5250487,272.2216978,196.9817992,79.82916463 +395.3259628,215.9152038,305.1507669,210.3538977,175.9041003,342.7824264,379.2554291,187.9987249,269.6932787,197.8927029,79.76989537 +396.7393064,215.436149,307.287382,206.2667218,175.8038183,336.2222951,387.4999748,189.142902,273.7994931,198.1336181,79.78428505 +398.7011374,215.0335493,306.8152994,203.8626842,174.2358207,325.1307033,375.7644751,187.3712307,268.4195323,195.4113452,79.84577416 +397.2511847,215.7697763,307.3501636,207.3679114,175.8805805,337.9713539,386.1057825,188.8987543,273.0085974,198.1561073,79.77532942 +394.5989632,214.8493755,304.963318,206.5511869,175.1788577,333.9887069,379.3877732,187.8214288,269.6305235,196.8560467,79.81167105 +430.1807343,223.3775444,325.4984391,208.4394788,175.5903888,332.9997082,387.9924564,189.9849877,276.4375872,198.0246071,79.69555025 +409.4066079,218.4620395,313.7391035,207.4091789,175.4833167,334.1669291,384.444728,188.9724851,273.2339066,197.6002353,79.75639605 +432.8854362,224.8439302,329.239277,210.6369623,177.1958722,342.7563231,402.6248012,192.3095736,283.7331058,200.9496181,79.6139755 +408.2546301,217.4108131,311.2566473,205.4112452,173.993388,324.7374424,371.75133,186.9399602,266.997651,194.9246472,79.82585584 +423.2788441,221.5464861,320.9253954,207.7471242,175.0609443,330.4993865,382.0592347,188.8567087,272.9628708,196.9658102,79.73809868 +406.5567155,218.1894257,311.5431689,209.2470414,175.6362171,338.1172727,381.4102985,188.4450072,271.3925113,197.6602832,79.75252856 +433.0046988,223.9966706,326.2244619,208.8940711,175.1559134,331.1129428,382.8940451,189.2576454,274.1351266,197.1915196,79.70396357 +394.2661856,213.938876,303.8952508,203.6264844,173.9839736,324.2666269,372.252336,186.6800223,266.2598695,194.8563854,79.86887206 +393.185198,215.3521156,305.0350611,209.4639855,176.4280215,344.314477,386.347842,188.9156102,272.7840694,198.9115169,79.75957118 +396.325624,214.2214944,305.0358619,203.0858158,173.6428998,321.4464137,370.9878572,186.4781629,265.8368044,194.3274477,79.87561187 +400.1517453,215.6651399,307.0587006,205.3584813,174.2387142,326.9393801,372.7052535,186.9385181,266.9196808,195.2667881,79.83654767 +403.7247009,217.3349863,310.6645278,207.930151,175.7599309,337.1238912,384.9243983,188.9070313,272.9553531,197.9727481,79.76020778 +392.5531742,213.7547898,302.9938092,204.2630428,174.1883027,326.5125311,372.680528,186.8416728,266.5558976,195.1850902,79.863579 +409.2406285,219.7111974,314.0737105,212.3077557,176.929289,347.7643111,389.3965874,189.7903024,275.3251286,199.8351192,79.68760333 +417.0699384,221.3439825,316.658358,212.6949274,175.8349557,341.6650277,378.6542374,188.3197249,270.6951447,197.8571686,79.70844603 +398.3746917,216.9505366,309.0333451,210.6794526,177.3346183,349.5259689,395.0973526,190.2854201,277.1552222,200.5963531,79.70714158 +414.9214187,221.0604491,317.7358235,212.208199,177.1028844,347.3838418,392.9072584,190.5180433,277.5868939,200.2840341,79.66503219 +427.1896418,225.1354474,327.8254074,216.029351,179.7440692,362.9877121,417.0031448,194.4516389,289.9392531,205.1275901,79.51730334 +408.138428,218.9506129,312.2440182,210.9790766,175.8443898,341.0416575,380.5571334,188.3555146,270.9982111,197.9077534,79.73506672 +401.8707244,216.6177208,308.0702033,207.5958041,174.8007479,332.5063756,374.443551,187.2362732,267.6927638,196.1367222,79.80436489 +405.5579818,217.8419875,311.0753684,208.5170098,175.5793026,336.7105073,381.4690991,188.4645787,271.3963121,197.5728207,79.76258724 +399.0230102,216.0351416,307.0042832,207.4513423,175.1352206,334.2374344,377.496238,187.6581559,268.9769499,196.7275462,79.80025937 +380.827693,211.5897053,297.0221447,205.8282941,175.1648532,335.3778428,376.6619404,187.1386652,267.3060869,196.6421747,79.85737319 +397.4160627,216.4411626,306.7942425,210.2695141,176.229145,343.8849786,383.1977737,188.571601,271.5670609,198.5211951,79.75340918 +438.4104705,227.2003019,333.2373878,214.5798255,178.4938305,353.1104648,409.7913211,193.5475049,287.3733335,203.1133607,79.53693437 +409.404762,218.8634959,312.8574118,209.465321,175.445215,336.6057082,379.3022479,188.1900627,270.5671934,197.2978832,79.75243541 +422.3509845,222.4284314,321.7914728,211.2579214,176.6565358,342.9449129,392.4767286,190.4822852,277.8249333,199.6674065,79.66264513 +435.0972346,225.6361967,330.20538,211.9264028,177.3212009,344.7591451,401.5744526,192.2045293,283.2846811,201.0839521,79.59933774 +390.9225839,214.8232707,302.8367114,209.8193732,176.016874,343.3492824,380.0302301,187.9607312,269.5952411,198.0434553,79.78248336 +427.5121863,223.7285785,325.1280265,211.5116774,176.9571651,344.0102338,396.3862744,191.2528422,280.2022846,200.3083627,79.63482792 +407.3156809,218.247199,312.3255488,208.6217284,175.6580933,337.1906174,383.4170428,188.7855966,272.5398574,197.7947095,79.7499715 +408.8906667,218.0994927,314.4951989,206.1514112,175.6155646,332.983121,389.6921622,189.6343622,275.6941439,198.021541,79.7565524 +430.075533,224.9204342,327.8878274,213.3022891,177.9969349,350.5364914,404.8718166,192.5722053,284.3365567,202.1445927,79.58344983 +418.3395768,222.1059885,320.9414616,212.92905,177.7456061,350.7741418,400.6498256,191.582561,281.3075336,201.5276597,79.62563127 +375.9874522,209.9478507,293.3706156,204.102725,174.1707217,329.1117139,368.7051142,185.8462938,263.3481852,194.8872793,79.91182065 +409.7535385,220.6455641,316.1013863,214.9031356,178.5998967,359.4300481,402.3600093,191.808289,281.5129269,202.7637477,79.61355131 +440.7165144,228.2253188,334.6611159,216.6126966,179.1229044,358.7528502,412.74337,194.1342475,289.00929,204.1526539,79.49641994 +396.8957573,215.2623069,306.5254959,205.8847719,175.2311064,333.0176921,381.6832645,188.2527942,270.9810731,197.0618878,79.80730529 +417.1824031,220.773093,319.6527736,209.0059328,176.5799712,340.241054,395.7566782,190.8205149,279.1567988,199.6885229,79.6860434 +418.0505062,221.4212756,318.988605,211.3472314,176.4433872,342.6900552,389.1234253,189.8430723,275.8251856,199.1875729,79.68248697 +404.9943526,217.6779863,311.6501419,208.178942,175.78504,337.2588323,385.84062,188.9668928,273.3500178,198.0453631,79.75381756 +380.6442135,211.4735333,297.4381622,205.2233539,175.3401883,335.4010766,380.0675342,187.6540589,268.9928974,197.0545432,79.85400946 +399.4552917,215.5262064,307.9909082,204.8815545,174.8873736,329.5311436,381.3689472,188.1892308,271.0416258,196.581468,79.81499559 +396.1141255,215.6272669,305.6902556,208.3439313,175.5313374,337.9812749,379.5402366,187.9661087,269.8365155,197.3730769,79.7886414 +450.752375,227.9603566,337.9983426,208.2524048,175.7038018,330.2913657,394.6503548,191.471515,281.3285913,198.6070135,79.64179382 +407.6302752,218.1360528,312.8929194,207.6043736,175.6467611,335.4234539,385.2699377,188.99509,273.3321325,197.843668,79.756388 +411.1341632,220.1692758,315.1656368,212.458596,176.9233703,347.7493528,389.8226968,189.9205928,275.7472927,199.8659608,79.67960195 +384.0058523,212.8624968,297.9405753,208.7065598,175.2189636,339.1575401,371.8258705,186.5502052,265.1744619,196.5116729,79.83644816 +377.4252202,210.0927048,294.0546854,203.5291088,173.9470488,326.9603861,368.0432487,185.6523405,262.9460982,194.5284654,79.91670167 +430.8157016,224.8278868,327.8291482,212.5437261,177.5378309,347.2958623,401.7099995,192.1223429,282.9679492,201.3665092,79.59983868 +401.9169634,216.5246497,309.2359679,204.5624822,174.8056942,323.9497361,375.5137473,188.0068754,268.8964173,195.8016798,80.43862598 +401.2485442,217.7129046,309.6759078,209.6305766,176.4814081,339.1420333,382.9906242,189.1551098,272.1180603,198.4675237,80.3554788 +414.1489022,222.1085683,320.3105717,214.0937069,179.4946191,357.3079745,408.8639034,193.4746865,285.358094,203.9437655,80.18769429 +383.8312717,211.7964945,298.8784473,201.8526058,174.1784855,319.8318975,370.5922701,186.7920007,265.267768,194.5965453,80.52376125 +395.6995731,214.6141086,302.6061392,203.9991208,173.0302803,315.9545324,355.1346711,184.7618025,258.5514719,192.3375947,80.53280014 +375.4419549,211.2714083,293.6870069,207.8024007,175.490626,336.4305701,368.4421028,186.4602961,263.3448777,196.2683967,80.48150611 +407.1026615,217.352778,312.3273356,203.5796407,174.5078758,320.3561232,376.9548042,188.2539532,270.0684889,195.5059126,80.43965076 +398.1131812,217.1776619,308.1924572,210.229537,176.8642386,342.4299088,384.6707992,189.378155,272.6647751,199.0661601,80.34763241 +415.0177596,219.6111341,316.6055035,205.2088477,174.7939731,322.7983271,377.1259463,188.5842276,270.7146404,195.932116,80.40262784 +400.0484702,216.6206086,308.5567716,206.3471153,175.3971136,329.379977,377.9502529,188.3594867,269.8531153,196.7141506,80.41537623 +388.1940872,214.6614646,302.8531103,208.94525,176.8671693,342.4315801,384.3418131,189.1279915,271.7910608,199.011956,80.38482478 +399.2661741,216.6373038,306.5554149,207.9808122,174.9667301,330.0546378,368.8763506,187.019193,265.3348865,195.7029501,80.42760411 +397.1618615,215.0652298,305.5913338,203.702,173.9826839,319.6433548,368.3401251,186.7083191,265.0721793,194.3032258,80.48858119 +410.1940413,219.6788088,315.7150021,209.000098,176.7751569,338.0729005,390.5629594,190.4423251,276.4651978,199.2866278,80.3193015 +396.0317541,215.8356843,305.7084188,207.2427466,175.3935662,331.6049266,374.3964548,187.7572793,267.7608473,196.5430931,80.42014187 +376.8240119,210.2479998,295.0373563,201.9537724,174.467286,322.693459,371.4098792,186.717172,264.9986083,195.0124882,80.5314496 +381.4857611,210.9891788,294.7918378,201.9774906,172.7453853,313.9549708,352.6888204,184.0892299,256.4552414,191.7569339,80.58717257 +409.848861,219.5183323,315.111688,208.6201338,176.4903579,336.218644,387.2410324,190.0259478,274.9439956,198.7250005,80.33558762 +395.1451564,215.3827835,306.0474133,205.8808912,175.4889606,330.0230337,379.4108018,188.3737262,270.1015449,196.8934176,80.42504446 +388.2331833,214.3215047,301.2343856,208.4098712,175.6989491,336.0612194,373.6382144,187.4161273,266.6473954,196.8762313,80.4285705 +408.153893,218.4609027,312.7155752,206.8002278,175.2854325,328.5153327,377.627148,188.4509502,270.1943165,196.6021214,80.39409579 +387.3614179,213.1654708,298.6380713,205.2315931,173.7692514,322.586857,357.9387206,185.1334166,259.35092,193.4750724,80.52035546 +379.7938094,211.2043735,296.082697,203.4497535,174.2938704,323.5072709,367.6805336,186.2073219,263.3577044,194.5945193,80.52589334 +393.9385176,213.3365296,302.9669747,199.9944775,172.7844798,309.3589232,361.1932858,185.6004308,261.6414214,192.2851469,80.55935618 +423.3392058,223.6398921,324.3241867,212.2175942,178.0938704,346.4398145,400.6738896,192.4192249,282.3157235,201.6567161,80.22248867 +383.1516594,213.2952571,299.6216658,208.2942908,176.6406457,341.5191672,382.1035444,188.5710362,270.1983916,198.557508,80.41048844 +400.555941,216.5333709,308.5342381,205.7460395,175.1115573,327.2122481,376.0508296,188.073811,268.9936412,196.2377984,80.4261903 +391.930128,213.3329029,301.9066972,201.6579102,173.1124532,313.4214484,361.470855,185.5864186,261.5496047,192.7351707,80.54476541 +408.7905816,218.9140089,313.3968254,207.8376041,175.7385841,332.0583964,380.2888685,188.8974058,271.4681545,197.3637696,80.36888006 +412.5141895,221.306332,316.6626919,213.4432871,177.6191086,347.8059651,389.2675491,190.5554238,275.9921639,200.4128649,80.26861091 +412.5435257,220.3539357,316.5914528,209.7095063,176.6930625,338.3633257,388.1098804,190.1849339,275.4627976,199.0676767,80.31374424 +371.3554856,208.5093739,290.0548892,200.8178055,173.113797,315.7331695,357.5634016,184.4748911,257.9706952,192.4561574,80.60214031 +393.0586494,215.2862707,303.3453737,207.903376,175.1555014,331.642305,369.421433,186.9828341,265.1466748,195.9414031,80.4426009 +379.3987884,211.162281,294.8708908,204.0693103,173.9598598,323.0505162,361.4031278,185.3451803,260.3358672,193.8367876,80.53804811 +400.4201214,216.7517497,309.2071073,206.4043632,175.7572691,331.2898828,381.6170417,188.9049203,271.5779479,197.4030779,80.39700996 +390.705701,215.1054848,303.2562094,208.9099879,176.1307591,338.2173422,377.7948467,188.151895,268.8817844,197.6730165,80.40438088 +380.5562704,210.7079317,295.6343623,201.0776943,173.3405665,315.6363393,361.3332884,185.3190343,260.5258952,192.9891339,80.56917126 +388.4066652,214.4279685,301.6202645,208.3637709,175.8756452,336.7310099,374.9061477,187.722158,267.3878614,197.1829298,80.42442842 +399.4328623,216.971368,308.2450379,208.3862175,176.056848,335.8848274,379.8826244,188.6629256,270.522746,197.7354339,80.38252093 +381.6639098,212.8949032,299.4834397,207.7677263,176.9731302,342.4776178,387.0316958,189.2095616,272.4232219,199.2403026,80.40203275 +388.8496287,215.0142928,303.9894364,209.50973,177.4951512,346.0208831,390.6171094,190.0187702,274.7456302,200.1600044,80.35582477 +405.3632841,218.2934771,313.3093086,207.5606509,176.6203629,335.9052114,391.0096168,190.397822,276.4329075,199.0599712,80.34580671 +407.284577,218.1676363,312.445328,206.2676462,175.2807543,327.8329182,378.3672034,188.5687477,270.5709865,196.6297982,80.3965757 +392.164721,214.821273,302.8499083,206.9884124,174.9635446,329.7907048,369.5575517,186.8935244,265.0947072,195.6822628,80.45192624 +384.4446244,212.1108203,299.8904207,202.4790673,174.7922107,323.5980188,376.6631198,187.6316683,268.0707381,195.7553466,80.49455291 +387.3394622,214.1380321,300.4717091,208.6625079,175.5929447,336.1598071,371.3006835,187.124892,265.5607778,196.6359928,80.4328808 +388.2997716,213.6030457,302.2805336,204.7540173,175.4988607,329.7725151,379.2701159,188.2195625,269.5145498,196.8745804,80.44856861 +390.0396384,213.224347,301.7286199,202.4944658,173.9747072,319.061983,368.0123523,186.5450838,264.4418934,194.2415539,80.50978963 +389.1075008,214.0528436,302.544574,205.9187896,175.5786334,331.5602811,378.063911,188.0769947,268.9800994,196.9134925,80.44041198 +386.4777348,213.1557666,300.1971771,205.1327157,174.8967023,327.7056161,371.5674988,187.0309344,265.7129233,195.6522282,80.4762647 +421.0722147,221.411417,320.1264421,206.918321,175.2721616,326.6668312,380.0567335,189.1571811,272.4170016,196.7696756,80.36036382 +400.7709766,216.6122817,308.6665434,205.903541,175.1831141,327.8210935,376.4454925,188.1348088,269.1731057,196.3632503,80.42077809 +423.7200866,222.8112024,323.7789679,208.9828277,176.8310473,336.0300471,394.1033723,191.3918403,279.3973456,199.6058123,80.27945552 +399.6489777,215.641647,306.2323318,204.063621,173.7342299,318.7379938,364.3606396,186.2148001,263.313419,193.7782062,80.4901777 +414.5954499,219.7557192,315.852753,206.3734161,174.7713414,324.3722138,374.4736816,188.1548334,269.2839378,195.7688722,80.40344777 +398.2140557,216.3731174,306.6074372,207.6737651,175.3210808,331.6128382,373.5906192,187.6089524,267.389104,196.4100479,80.41678729 +423.8477262,222.0360125,320.8611747,207.3678587,174.8476476,324.8468334,375.1281276,188.4817574,270.2606643,195.9629111,80.36851659 +386.0960459,212.3206948,299.1583062,202.3974401,173.7482216,318.3878707,364.7952049,185.9834883,262.6006831,193.735851,80.53349747 +385.3124637,213.653268,300.4006318,207.8949693,176.1132193,337.718644,378.2202631,188.0699799,268.6805335,197.6437232,80.42405349 +388.0536635,212.6244351,300.2317098,201.9368203,173.410893,315.6484789,363.6018154,185.8324248,262.3146319,193.2254695,80.5409666 +391.7779897,213.9499749,302.2063285,203.9925253,173.9860794,320.9094296,365.1526485,186.2053824,263.1659328,194.1186134,80.50055799 +395.4144186,215.5666802,305.7864419,206.4365056,175.4589267,330.7334986,376.9397041,188.0891003,268.9381421,196.7332591,80.42481662 +384.0852664,211.9575121,298.0629882,202.8127193,173.9355733,320.4096104,364.9153375,185.990578,262.5038603,194.0204414,80.52641928 +401.2973532,217.9882945,309.4348171,210.6792202,176.6001468,341.1227777,381.3943972,189.0037778,271.3595262,198.5526624,80.35221611 +408.9437334,219.5964725,311.951352,211.0669135,175.5237432,335.1828881,371.1056328,187.6111113,266.9953871,196.6264775,80.37241623 +390.5180298,215.2408156,304.3166154,209.1175783,176.9844974,342.7460225,386.8587503,189.4172557,273.006211,199.276006,80.37297802 +406.6655684,219.238738,312.9403691,210.5102542,176.7713161,340.7226112,384.6706301,189.6813116,273.445162,198.9860883,80.32902771 +418.8317155,223.2186344,322.8089254,214.1999057,179.331199,355.7381284,408.1817798,193.501698,285.4568604,203.6954754,80.18330493 +400.0285277,217.2040781,307.4765588,209.3988415,175.5271908,334.5125562,372.855282,187.5865149,267.15836,196.6617884,80.3995456 +393.7629422,214.9372851,303.342863,206.176234,174.5253563,326.3070499,366.9691328,186.514107,263.9906458,194.9588201,80.4687283 +397.4480399,216.1464327,306.3979235,207.0409812,175.297896,330.4546299,373.6950893,187.725166,267.5645945,196.3671408,80.42676803 +391.0798757,214.4097995,302.4130962,206.0549482,174.8663328,328.0676703,369.8847402,186.9502339,265.2558825,195.5490985,80.4647226 +373.2805897,210.0453558,292.6518396,204.4493459,174.9078151,329.1834474,368.8911701,186.3699532,263.4152285,195.4670054,80.52137522 +389.5312766,214.7195596,302.1579772,208.6605135,175.9138774,337.293952,375.2679837,187.7342181,267.5212795,197.25951,80.41740906 +429.719973,225.2840106,328.0523416,212.8977014,178.1008982,346.1523982,401.3154573,192.7105246,283.22323,201.7353223,80.20357602 +401.2651406,217.1768749,308.1682237,207.9875286,175.1609424,330.3420005,371.6483242,187.4993489,266.8742849,196.1002755,80.41687977 +413.7333236,220.5403378,316.6734192,209.6419726,176.3083779,336.2804653,384.3808143,189.6426868,273.7548942,198.3632254,80.32790288 +426.0859964,223.6437879,324.8536356,210.2596943,176.9541788,338.0062142,393.168372,191.3294927,279.0623175,199.7428643,80.26489655 +383.2931643,213.1838356,298.3867737,208.2498381,175.7183466,336.8446209,372.1975718,187.1584393,265.6350835,196.8078324,80.44627456 +418.5663541,221.7048201,319.78652,209.782488,176.5915984,337.2136997,388.0441531,190.3142916,275.8620502,198.9670901,80.29947 +398.7139123,216.3507962,307.2245367,207.0099248,175.3384537,330.6477439,375.3923092,187.8928243,268.3725505,196.5299943,80.41397475 +400.2460532,216.3000059,309.3202334,204.8092234,175.3008946,326.6400283,381.6585201,188.8200575,271.7198409,196.7734149,80.42298956 +421.5303222,223.0468161,322.7993156,211.6611117,177.6207207,343.6851344,396.5049404,191.7378378,280.214216,200.7902966,80.24975797 +410.1838173,220.3515678,316.0537398,211.3696499,177.3738552,343.9490468,392.438574,190.7900915,277.3320024,200.1887873,80.2925322 +368.1591173,208.3133395,288.8217104,202.6823804,173.9297858,322.9678559,361.0352441,185.0190322,259.366759,193.7426088,80.57453706 +401.8334541,218.8385102,311.3747821,213.1101726,178.2173413,352.3423753,393.8691246,190.8885577,277.1720618,201.3829509,80.27854745 +431.7643577,226.1273791,329.2409391,214.6843835,178.6915666,351.4159059,403.9623239,193.1327004,284.4407275,202.7070762,80.16191253 +388.5746499,213.4940539,301.625115,204.4401184,174.946096,326.7317138,373.757589,187.4020655,266.9093271,195.8447011,80.4715335 +408.3846356,218.855688,314.3822441,207.4564461,176.2327045,333.6051937,387.4506121,189.9288038,274.9460464,198.3783388,80.35179472 +409.6590636,219.6102828,314.0106045,209.7781446,176.1024268,336.0705689,381.1909482,189.0531451,271.903131,197.902478,80.34798365 +396.8483336,215.9977788,306.817572,206.8039115,175.4738486,330.8810599,378.020103,188.223992,269.5588285,196.8082084,80.42000254 +372.8791925,209.8460888,292.8999801,203.8071305,175.0727062,329.1269917,372.0773334,186.8070497,264.897957,195.8536593,80.51787211 +390.8520022,213.7104213,302.8583077,203.4971939,174.5954217,323.2594183,373.4866857,187.3333685,267.0020123,195.3661105,80.47999689 +388.0365578,213.8925538,300.9679717,206.7960417,175.2379691,331.5583546,371.6543856,187.1425677,265.8250521,196.1466584,80.4524113 +441.111393,225.906746,332.276089,206.8131562,175.369358,324.0263892,386.6590863,190.6706877,277.3749225,197.3391275,80.30791869 +399.4186961,216.4429348,308.0861155,206.2245379,175.3542875,329.1736021,377.4715436,188.2567538,269.5230908,196.6262333,80.42184403 +402.9144598,218.3321623,310.3207115,210.7378671,176.5791232,340.9791689,381.6752752,189.0528727,271.5871314,198.5571717,80.34373334 +376.6500143,211.3337171,293.6990302,207.222886,174.9515683,332.8533095,364.3273828,185.8239247,261.4376749,195.3354978,80.49991373 +369.6694077,208.5334437,289.5094497,202.2447323,173.706935,320.9123688,360.6008996,184.8989401,259.1885669,193.4021121,80.58078241 +421.9785963,222.8653537,322.5703848,210.8539346,177.1656787,340.4636685,393.2843225,191.2421551,278.7334452,200.0164551,80.26541804 +385.2248123,212.0560804,298.5341726,200.8665355,173.1537165,312.356767,360.6214011,185.47661,260.9759009,192.6519858,78.10006823 +384.7573716,213.1963725,299.0107966,205.5837253,174.7014256,326.5713844,367.6550516,186.5482697,264.0034621,195.1219407,78.01908552 +396.9291593,217.2938169,308.9906914,209.7220388,177.5037452,343.613312,391.7960071,190.5440072,276.2986516,200.2126562,77.85422914 +368.1671333,207.6316032,288.809738,198.3410595,172.5707663,308.4950726,356.0290328,184.3481127,257.5871779,191.5338152,78.1836196 +379.7617975,210.3592494,292.5255701,200.3757629,171.5251952,305.0193138,341.7773291,182.5122708,251.4566024,189.4767368,78.19316626 +360.8232223,207.2611433,284.241441,203.8771101,173.7962556,324.1310347,354.0281347,184.0687259,255.8447036,193.1076645,78.14188125 +389.8566481,212.767363,301.2976758,199.9733196,172.8647159,308.953193,362.0954345,185.7066121,262.1218517,192.3621017,78.10246874 +381.8569582,212.703971,297.6527923,206.1255966,175.0552815,329.6518441,369.1496865,186.7440991,264.474341,195.6734696,78.01078677 +397.6342801,214.9639703,305.4788385,201.5014101,173.1534805,311.3325,362.2108614,186.0360936,262.7309137,192.7914949,78.06543581 +383.6517942,212.1931203,297.976684,202.5500678,173.7109547,317.4841946,362.9856523,185.8309048,261.9266962,193.5186498,78.07796577 +372.5997296,210.367718,292.7075676,204.9060213,175.0589753,329.6669715,368.7170529,186.4973382,263.6000827,195.6213542,78.04620817 +383.0544188,212.2326733,296.1901023,204.0532477,173.3032505,318.118755,354.450183,184.5753227,257.6958833,192.5666852,78.08930039 +380.709458,210.676838,295.0865097,200.0970494,172.3835856,308.3493056,354.0854353,184.287382,257.4930838,191.2592863,78.15072655 +392.9509498,214.9786328,304.5496991,204.9943864,174.967244,325.5162304,374.7846362,187.7381108,268.0657069,195.8714636,77.98420097 +379.8408731,211.4398947,295.3135411,203.3362574,173.6889613,319.5057821,359.5028095,185.2322623,259.8852613,193.3254501,78.0814622 +361.4715982,206.1528284,285.1734455,198.3891011,172.8206715,311.0864209,356.6797145,184.2429932,257.2599599,191.8888177,78.19018382 +366.3637882,206.9661038,285.2116913,198.4588897,171.2563372,303.1050253,339.3813286,181.8717721,249.4405023,188.9278329,78.24574454 +392.8497407,214.889357,304.1046715,204.650713,174.7202591,323.8565222,371.6209841,187.3649734,266.64168,195.3744558,77.99942628 +378.7885203,210.9696134,295.4982198,202.0931304,173.7764662,318.0011603,364.337733,185.8175826,262.1250428,193.6539756,78.08761266 +372.5181139,210.0252169,291.1179052,204.4345615,173.9698002,323.6861165,358.9000442,184.9279582,258.8965299,193.63772,78.09050977 +391.1272508,213.8669277,301.8000655,202.9541601,173.593133,316.6244004,362.6491621,185.8915125,262.2113614,193.3889048,78.05683118 +372.0007305,209.0220484,288.8827577,201.4761566,172.1994366,311.1741773,344.1753505,182.8286113,252.103472,190.5095872,78.17941894 +364.4268063,207.0826865,286.213907,199.8340469,172.670945,311.9504433,353.4021893,183.8146184,255.8543236,191.5278785,78.18663012 +377.6679948,209.0663278,292.6515623,196.6395072,171.2874075,298.7648714,347.3057162,183.2525079,254.2408683,189.4024834,78.21877617 +405.5936656,218.7470479,312.7541254,208.0201096,176.2108646,333.4396711,384.2888985,189.6040852,273.5703349,198.1048467,77.88948393 +367.7009503,209.0512771,289.5930749,204.2906183,174.8403387,328.7695918,366.6883328,185.9746341,262.127274,195.1888251,78.07160926 +384.0546161,212.091353,297.9250176,201.9765471,173.4405722,315.4304067,361.1616531,185.550977,261.0936571,193.0648956,78.08818112 +375.9169563,209.0953945,291.70887,198.2060607,171.5921651,302.5946381,347.6726534,183.2620406,254.2217456,189.8283305,78.2056225 +391.7362645,214.2887695,302.4467257,203.9016133,174.0087339,319.9195105,365.0677992,186.29253,263.3602509,194.08599,78.0316532 +395.7209476,216.6426223,305.7450126,209.1685145,175.7759962,334.7933196,373.5264122,187.8745321,267.6485272,196.9591796,77.93386194 +395.3064521,215.6449929,305.4477045,205.6592495,174.8974559,325.8266556,372.4518306,187.5026955,267.1235173,195.67637,77.97832371 +356.4406755,204.5503475,280.5737955,197.3415242,171.5665527,304.6172996,343.8281151,182.1780603,250.7616846,189.5232539,78.26006221 +377.3954722,211.0203514,293.2666612,204.0089561,173.4976153,319.6827661,355.0626722,184.5769533,257.5856226,192.8244909,78.10455247 +364.2852848,207.0974121,285.2130044,200.3956164,172.3690187,311.5572082,347.4769631,183.0190921,253.0258586,190.8356601,78.19751324 +383.8109186,212.2611479,298.5009751,202.5563831,174.0278149,319.1856581,366.2682885,186.2947355,263.4378621,194.1240725,78.05893506 +374.9569525,210.7919408,293.0642176,204.9183649,174.3828121,325.7445735,362.8041134,185.6287239,261.0017754,194.3975178,78.06695154 +365.1778793,206.6289533,285.8382474,197.600938,171.7924684,304.5822209,347.3344106,182.9739046,253.1456725,190.0389626,78.22746415 +372.9045496,210.1836539,291.6017381,204.3969512,174.1499114,324.3770386,360.0250251,185.225258,259.5789342,193.945891,78.0857464 +383.055305,212.5009803,297.6884078,204.4016679,174.3060666,323.5224383,364.6355126,186.072972,262.4569067,194.4346706,78.0445108 +366.119877,208.6352509,289.363324,203.7878154,175.1402345,329.6022553,371.3077709,186.5549943,264.187215,195.8096315,78.06360806 +373.078539,210.6668468,293.680904,205.4360088,175.6399532,332.9927075,374.6763748,187.3292018,266.3840372,196.6876081,78.01851454 +388.3954662,213.6890601,302.2919894,203.6616886,174.830454,323.5026464,375.2110856,187.7053999,268.0457325,195.6721786,78.01018185 +390.2642508,213.5836719,301.5339504,202.4431778,173.5867642,315.9631785,363.2681762,185.9887952,262.5238689,193.4080746,78.05882221 +376.2721687,210.5111456,292.6602498,203.1276149,173.2978541,317.8555328,355.1198225,184.4572851,257.4753156,192.5451533,78.11345729 +368.4560089,207.8492483,289.6083884,198.8966111,173.1169916,311.9102003,361.6930489,185.0958929,260.1641457,192.5733464,78.15496516 +371.7704514,209.8725489,290.4697672,204.6523659,173.868274,323.7785582,356.6076328,184.6451769,257.841988,193.4066901,78.09387709 +372.3213633,209.2959151,291.9764201,200.994795,173.779821,317.7241296,364.0132419,185.6389101,261.4681512,193.6194403,78.10887841 +373.9297205,208.9405065,291.4536752,198.9183864,172.3709544,307.7344125,353.5629915,184.0984837,256.783302,191.1843679,78.16947376 +373.2459105,209.7605771,292.2913255,202.1177102,173.8662481,319.4659445,363.0178267,185.5426686,261.055845,193.6815189,78.10193991 +370.7897791,208.9258586,290.1088424,201.3861051,173.2322484,315.864734,356.9493502,184.5715919,258.0143438,192.5090317,78.13709986 +403.3316862,216.6392795,308.7741116,203.0832925,173.589642,314.9297445,364.9385068,186.559075,264.3070591,193.5566467,78.02391798 +384.1980593,212.1475648,298.0242872,202.106566,173.4999388,315.96877,361.4791089,185.5924091,261.2279367,193.1680842,78.0825316 +405.7672613,217.9336046,312.1635953,204.9920946,175.0327234,323.6495282,378.0714684,188.6321481,270.809344,196.1852692,77.94490757 +383.1696502,211.2456108,295.758307,200.4217896,172.1598998,307.5221202,350.3073583,183.8278769,255.8308215,190.7794088,78.15132397 +397.4166152,215.1408596,304.8516099,202.6124569,173.138998,312.8617724,359.8505961,185.6635479,261.4684832,192.6570429,78.06700426 +381.8277134,211.9225792,296.1061416,203.7506752,173.6186551,319.5118426,358.8528833,185.101539,259.5807473,193.20085,78.07882772 +406.0675762,217.25653,309.52453,203.5234973,173.2002929,313.2600628,360.4027814,185.9498161,262.3475604,192.8185749,78.032479 +370.4621095,208.1571177,289.1555093,198.8612885,172.1794168,307.2033052,350.6723629,183.6156917,255.1433423,190.750052,78.19342798 +369.8093749,209.4148029,290.3567166,203.9497819,174.3605359,325.2435873,363.131463,185.5348665,260.7685182,194.3582058,78.08568506 +372.2834623,208.4401157,290.1432729,198.466152,171.8679624,304.6680767,349.6575592,183.4926552,254.9346557,190.2829264,78.20212289 +375.8356675,209.6858065,292.0293177,200.3405495,172.3959459,309.5463457,350.9834043,183.8173322,255.6653314,191.0983097,78.16103634 +379.2365466,211.1886027,295.360418,202.6042942,173.758306,318.7105451,361.9589915,185.5568711,261.0202019,193.5178661,78.08653111 +368.4529784,207.7828762,288.1044015,199.189745,172.3308819,308.990097,350.5709758,183.5733043,254.9364792,190.9717815,78.18503981 +385.0770326,213.5238091,298.9260824,206.5867546,174.8299766,328.5209399,366.2070718,186.4373665,263.3439309,195.2332253,78.01582414 +392.3852081,215.0566928,301.3453626,206.9797033,173.8343313,323.0010105,356.7093847,185.1661901,259.3527148,193.454846,78.03630288 +374.5761835,210.8620262,293.9439118,205.0936312,175.1660706,329.9348893,371.2941332,186.7881221,264.8263678,195.8714941,78.03630133 +390.1453407,214.6967444,302.2261877,206.4179813,174.9896617,328.142082,369.1761959,187.0555707,265.245187,195.6321922,77.99260778 +401.4334339,218.3661945,311.3725588,209.8592782,177.3647209,342.180483,391.293343,190.6072227,276.4824265,200.0074171,77.85076528 +383.7233509,212.7490154,297.0128533,205.3904237,173.820414,322.288268,358.2641315,185.1105716,259.4358536,193.4567204,78.06268661 +377.7795833,210.6212917,293.1226236,202.3830526,172.895658,314.6194197,352.7460204,184.1134471,256.4695929,191.8812475,78.13016555 +381.4139663,211.7972626,296.0695553,203.1886283,173.6260898,318.5352025,358.9660951,185.2467452,259.7841649,193.2078078,78.08844724 +375.3676079,210.1603341,292.3082729,202.2712273,173.2224216,316.2935493,355.4424548,184.527935,257.6444108,192.4452252,78.12594622 +358.5913261,206.069028,283.1652542,200.7319245,173.2499754,317.285821,354.3814582,183.9619233,255.8506971,192.3491276,78.18043403 +373.8212315,210.4164899,292.0281822,204.6648125,174.1749798,324.8654691,360.3825856,185.2237918,259.6958787,194.0006181,78.07901751 +411.7396036,220.3263741,316.3217446,208.6963131,176.2279744,333.2208357,385.0108403,189.9101446,274.5054529,198.2006031,77.87202044 +385.0630522,212.7779676,297.7521121,204.0980067,173.5020924,318.4531999,357.15952,185.0572348,259.2043636,192.9700757,78.07969201 +396.5010207,215.8396296,305.5609795,205.616323,174.5454473,323.9113639,369.0236098,187.0142359,265.570641,195.0326693,77.9925583 +408.1430037,218.7486695,313.2402642,206.2020053,175.1524877,325.5381818,377.2520826,188.5913375,270.5370156,196.3244723,77.93102963 +368.0542644,209.00769,288.5553998,204.2852825,173.9988915,324.47451,357.515816,184.6987751,257.950292,193.5914316,78.10722742 +400.9273985,216.890385,308.423281,205.714374,174.7976864,324.7336838,372.3372063,187.6076509,267.4630436,195.5705048,77.96394151 +382.190197,211.8759334,296.6352451,203.114336,173.6278269,318.560453,360.4690169,185.3476722,260.4556732,193.2979506,78.07575445 +383.5210627,211.8145232,298.5297816,201.1192576,173.6054408,314.8494924,366.5071464,186.2447239,263.6743457,193.5495793,78.0863157 +403.9677693,218.217633,311.3624632,207.5240603,175.7773638,330.8898143,380.4486399,188.9900472,271.6547818,197.3125366,77.91666057 +393.2402496,215.6859059,305.0175986,207.2588665,175.5407172,331.1260404,376.6943966,188.1121703,268.9871573,196.7469098,77.95941022 +353.6116243,204.4069423,279.5229233,199.0564407,172.3223675,311.3875267,346.9695792,182.6776493,252.029865,190.714594,78.23220378 +385.4500517,214.2733482,300.6715854,208.8253333,176.318628,338.9816904,377.8172313,188.1603747,268.7081657,197.8398053,77.94346328 +413.4671023,221.0452239,317.3360655,210.3063706,176.7520768,338.065606,387.3427148,190.2449819,275.5228774,199.0575294,77.83028307 +372.6720713,209.2170444,291.4083361,200.719833,173.2737622,314.9222558,358.9099075,184.895505,259.0747765,192.6758213,78.13163744 +391.2258678,214.2085863,303.2944599,203.5596922,174.4672839,321.3426027,371.8575443,187.261787,266.6445217,195.0319686,78.01583156 +392.7187189,214.9846754,303.0913039,205.7582778,174.3557751,323.7353079,366.0995491,186.4790172,263.8795005,194.6111325,78.01278121 +380.5647391,211.5881935,296.3046892,202.9880671,173.7728905,318.8767146,363.1410563,185.7095343,261.6919648,193.5967821,78.08363224 +358.0746299,205.8479772,283.3320418,200.1131714,173.3930284,317.1762048,357.2796685,184.3429347,257.1778359,192.6884806,78.17649408 +374.5931534,209.3667228,292.4430509,199.8537372,172.9388535,311.6309325,358.7394569,184.8283607,259.1881091,192.2189861,78.14082778 +372.3650494,209.6362889,290.8938394,202.924958,173.547358,319.4778581,356.9820924,184.6712088,258.1037059,192.9650494,78.11327609 +422.2564434,220.8619682,320.2029669,203.0424774,173.6926194,312.5196155,371.2844852,188.0072872,269.0542786,194.1107681,77.97412501 +383.0893381,212.0319765,297.548855,202.4395394,173.6740158,317.3097923,362.5623102,185.7405432,261.6309733,193.4423631,78.08428487 +386.4457783,213.8011765,299.6820857,206.6156785,174.7944349,328.3215241,366.3933161,186.4538434,263.5014902,195.2081678,78.0071956 +361.9037251,207.3032257,284.2260917,203.335726,173.2929688,320.7767101,350.2157525,183.4763451,254.0770515,192.236994,78.16000379 +354.9214254,204.586873,280.0859464,198.6762925,172.118744,309.4859624,346.7038779,182.5814123,251.9203306,190.4072617,78.23946862 +404.2833666,218.0204403,311.0990291,206.7510613,175.3458652,327.8304367,377.3586701,188.5069894,270.2239597,196.574993,77.93155135 +403.2197616,214.586898,309.0356132,202.599834,172.1054809,323.6997371,376.1485724,185.5353932,267.7955958,193.4669308,80.27059731 +402.3527187,215.7653771,309.3910493,207.6953175,173.7464603,338.8919575,383.7160574,186.6856229,271.0648306,196.092539,80.18874697 +415.4599476,220.2693808,320.1905555,212.2527756,176.7657075,357.1653533,410.070956,191.1232434,284.6396817,201.6073688,80.02420262 +384.8576802,209.7676493,298.498218,199.8368609,171.4761842,319.5504696,371.1374694,184.2949448,264.0913555,192.2513727,80.35542745 +396.7056939,212.5625987,302.170833,202.0139211,170.3278491,315.6432294,355.2902282,182.1763328,257.1380497,189.9714893,80.36311417 +376.0081353,209.1384653,293.0018144,205.8550588,172.7461798,336.1524159,368.9031983,183.9149074,262.1000515,193.870108,80.31574983 +408.5452211,215.4824447,312.2753305,201.5581224,171.8214236,320.0769679,377.5625284,185.8115979,268.9737425,193.1729155,80.26925419 +399.188013,215.2241717,307.8786703,208.3285167,174.1320311,342.2183614,385.4684335,186.9324298,271.6696888,196.701846,80.1819992 +416.4838506,217.71854,316.5092051,203.2441707,172.0932192,322.5229197,377.7553404,186.0967816,269.595032,193.5959396,80.23400692 +401.1581393,214.6378444,308.2424678,204.3680891,172.6664043,329.078095,378.5681773,185.8415174,268.6949162,194.3408736,80.24782859 +389.1635768,212.6672615,302.4456057,207.0683062,174.1444506,342.2587256,385.1919355,186.7050729,270.8400093,196.6673159,80.22058547 +400.3647201,214.6515923,306.210909,206.0651304,172.2498814,329.8169377,369.373417,184.5121036,264.1511393,193.3412081,80.26022116 +398.29342,213.0956834,305.323287,201.65821,171.2788763,319.3188378,368.7352155,184.1951777,263.8187691,191.9369079,80.3181114 +411.51829,217.8111579,315.6086535,207.042018,174.0514207,337.8233927,391.4089362,188.0155043,275.5010101,196.9268373,80.15169336 +397.192377,213.8748045,305.4140146,205.3375574,172.6857381,331.4064155,375.0532475,185.302664,266.6953524,194.2019852,80.25345149 +377.8388348,208.2295856,294.6585181,199.974075,171.7818082,322.4862829,372.0368134,184.2846626,263.9248292,192.6916694,80.36385528 +382.3533235,208.8821844,294.243113,200.000386,170.0520057,313.6784811,352.8749757,181.5179166,255.0660723,189.40708,80.41840928 +411.1393213,217.6081233,314.9273882,206.6923212,173.7640437,335.9719517,388.0557815,187.5633452,273.9333016,196.3700694,80.16911186 +396.2540443,213.4238746,305.7752479,203.8796406,172.7676419,329.738099,380.0595826,185.9007612,268.9992118,194.525355,80.25673917 +389.1141604,212.3039491,300.8002964,206.4543362,172.9674803,335.8032436,374.1875197,184.9251958,265.4977021,194.4923404,80.26135282 +409.4727529,216.5520639,312.5537601,204.8444453,172.5782479,328.2637292,378.2597366,185.9848992,269.1040056,194.2547555,80.22581682 +388.3093645,211.1022766,298.142418,203.3275243,171.0717166,322.3710376,358.2685199,182.6052853,258.0765624,191.1326363,80.353247 +380.5886701,209.1362684,295.591325,201.4004122,171.5756277,323.1798454,368.0787726,183.6782099,262.089309,192.2122212,80.35684045 +395.177887,211.3431843,302.6960579,197.9721804,170.112855,309.0721654,361.5389052,183.0874583,260.3703613,189.9659013,80.38919245 +424.7265774,221.7987319,324.2502919,210.3024811,175.3562904,346.1962345,401.6580361,189.9854281,281.4105419,199.2934757,80.05648755 +384.0117556,211.2817434,299.1777312,206.3685336,173.9156955,341.3145311,382.8588118,186.1414428,269.1991191,196.1972893,80.24508208 +401.7518113,214.5709697,308.2687657,203.781768,172.3952654,326.9422224,376.6702182,185.5790714,267.8623906,193.882585,80.25846519 +392.9842072,211.3048544,301.5403474,199.6093742,170.4133066,313.081564,361.7571359,183.0298919,260.2042031,190.3738294,80.37433086 +410.145933,217.0222983,313.2552641,205.9196628,173.0346284,331.8479375,381.01229,186.4601835,270.4505808,195.0277468,80.2015042 +413.671734,219.378634,316.3852205,211.5832106,174.8751327,347.5861627,390.1084958,188.082612,274.9933216,198.0409665,80.10388427 +413.878839,218.4769598,316.4635447,207.7844191,173.9698551,338.1309387,388.9345152,187.7454237,274.4830329,196.7122018,80.1467543 +372.2173438,206.431258,289.5584723,198.8159002,170.4377761,315.5029009,357.8895874,181.9887065,256.7189119,190.12601,80.43306713 +393.889279,213.2169021,302.8244407,205.9436717,172.4114224,331.3244604,369.8469696,184.4075783,263.8559241,193.5428129,80.27561193 +380.183722,209.0680966,294.319742,202.0835409,171.2478389,322.773262,361.7370364,182.8052089,259.0403777,191.4677686,80.36999974 +401.6990044,214.8283051,309.006768,204.4759446,173.0509841,331.078872,382.3927385,186.4705506,270.5780075,195.0695968,80.23018648 +391.5804093,213.0795155,302.8063199,206.9568169,173.3847911,337.9365187,378.4130954,185.6405326,267.7370298,195.2795599,80.23789605 +381.540163,208.6504801,295.1957025,199.0871521,170.6577834,315.3903212,361.7238447,182.8174962,259.2899002,190.6614404,80.40071231 +389.2785248,212.3856473,301.1347743,206.4463142,173.1413258,336.4895361,375.5195159,185.2197911,266.2542758,194.8090295,80.25876721 +400.5892227,215.0228373,307.9640295,206.4835461,173.3431659,335.6843488,380.609142,186.2187178,269.5012963,195.3910171,80.21636246 +382.5892056,210.9123183,299.1065273,205.8284636,174.2506056,342.2794245,387.89684,186.8139379,271.4960903,196.885625,80.23636795 +389.8089638,213.0348756,303.6132735,207.5963239,174.7559389,345.8103001,391.5356387,187.5950319,273.8163729,197.794518,80.19110407 +406.6266261,216.3956217,313.1541033,205.5786741,173.8911782,335.6294093,391.859797,187.9534392,275.444921,196.6955372,80.17830175 +408.6805202,216.2727582,312.316963,204.3369743,172.5825152,327.614992,379.0736138,186.1259763,269.5349668,194.3006478,80.22882683 +393.1190075,212.8005105,302.4359009,205.0238328,172.2387756,329.515052,370.0235379,184.3740924,263.8795947,193.3046238,80.28411247 +385.5796344,210.1505999,299.6354471,200.4634439,172.1044831,323.35827,377.3257144,185.2131435,267.0210318,193.4260011,80.32574792 +388.2815737,212.1302672,300.0462338,206.7671307,172.8769389,335.9698913,371.8907698,184.6653851,264.4655914,194.2787036,80.26661532 +389.4453631,211.6398945,301.9963527,202.8135321,172.8018968,329.5798536,380.0304065,185.8048491,268.5242825,194.5503407,80.28190434 +391.2529092,211.2529193,301.4648741,200.5215823,171.2928608,318.8374319,368.5480656,184.0879064,263.3107652,191.9209534,80.34114395 +390.0899181,212.0445794,302.1632368,203.9390758,172.8516711,331.2872653,378.7140832,185.5905232,267.8678082,194.5444587,80.27328396 +387.4300639,211.1287987,299.783828,203.1496944,172.1777163,327.4343156,372.1042193,184.530626,264.5394519,193.2855491,80.30853812 +422.6104684,219.5580463,320.0942383,204.9778897,172.5743348,326.4184003,380.7384179,186.6966909,271.3544686,194.4382238,80.19192639 +402.0265755,214.6709774,308.44033,203.960103,172.4757469,327.5848971,377.1064687,185.6682339,268.0910136,194.0214864,80.25324556 +425.3106039,221.0002085,323.8084812,207.0666659,174.1204362,335.8092647,395.0555356,188.9757788,278.4913298,197.2742835,80.11242656 +400.8447326,213.6682659,305.9620272,202.0708909,171.0371796,318.4526228,364.7301071,183.6969071,262.0543035,191.4268787,80.32043241 +415.885456,217.8214012,315.6556046,204.3809671,172.0520726,324.0430775,374.9675972,185.6169117,268.055626,193.3991949,80.23433569 +399.3247908,214.4137003,306.3155644,205.7261835,172.6072894,331.3720447,374.1489317,185.136285,266.2647331,194.0491294,80.24887926 +425.3932496,220.1787918,320.8231456,205.4277709,172.1455904,324.5792371,375.7095835,185.9901453,269.1222135,193.6199168,80.19938827 +387.0535228,210.2650108,298.7197509,200.3811583,171.0420886,318.0828813,365.1857393,183.4443368,261.3225233,191.3774878,80.3647539 +386.1756672,211.6224595,299.9411025,205.947958,173.3762531,337.4666116,378.8886862,185.5865146,267.5838261,195.2647893,80.25792898 +389.0261474,210.5774553,299.8186271,199.8813316,170.6999968,315.2955929,363.9356751,183.2687635,260.9771683,190.8520276,80.37094704 +392.8537969,211.9335357,301.8393475,202.0164523,171.2802131,320.6366181,365.5806349,183.6825975,261.9246822,191.7645194,80.3320365 +396.5038139,213.5829243,305.4589732,204.4814795,172.7376476,330.4766865,377.5808223,185.6032218,267.827546,194.3732185,80.25771376 +385.2211299,209.9585362,297.7236026,200.8848182,171.2594357,320.23256,365.4518883,183.5456139,261.3906996,191.7113251,80.35888811 +402.2609462,215.9891951,309.0334058,208.7530087,173.8505148,340.8428343,382.0480871,186.4849968,270.2285372,196.1603932,80.18629559 +409.986096,217.6111225,311.5886806,209.1409871,172.7829523,334.8873243,371.5390357,185.0543183,265.7362214,194.2291025,80.20477565 +391.3908392,213.2437928,303.9161547,207.1355467,174.2363674,342.4573719,387.5973349,186.9458005,271.9519614,196.8812762,80.20650104 +407.8192007,217.2843361,312.635545,208.6321594,174.0364315,340.4961843,385.4608488,187.1989445,272.4095314,196.6250827,80.16401771 +420.0893483,221.3575163,322.6593346,212.311946,176.582046,355.51663,409.2853172,191.0869329,284.6254029,201.3276917,80.01898082 +401.0277108,215.2163914,307.1133789,207.4431008,172.7920647,334.2270297,373.3436004,185.0651292,265.9547338,194.2703687,80.23164732 +394.7283037,212.9120496,302.9323108,204.1928559,171.804236,326.0104006,367.3590056,183.9766321,262.7242248,192.5802622,80.30024655 +398.4635325,214.1247879,305.9895369,205.1004219,172.56782,330.175191,374.252551,185.1918287,266.3728044,193.9966162,80.26018832 +391.9750334,212.353863,301.9380079,204.0790278,172.1347649,327.7620469,370.3444908,184.3989505,264.0016823,193.1670114,80.29737501 +373.9538409,207.926121,292.0303391,202.4771876,172.1846183,328.9202857,369.4002395,183.852504,262.2136965,193.0982604,80.35515814 +390.426119,212.7002251,301.7167333,206.7283877,173.1840371,337.0544516,375.8625566,185.249849,266.4012522,194.8847102,80.25101827 +431.1073434,223.4445577,327.9842311,210.9584332,175.3504988,345.8568583,402.2497183,190.2366692,282.2497546,199.3516731,80.03698171 +402.2768439,215.1590127,307.7665997,206.0317267,172.4207281,330.0269556,372.127208,184.9348326,265.6145775,193.7093866,80.2494317 +415.0219584,218.6453525,316.5134801,207.6972392,173.5805432,336.0150958,385.0967349,187.1700908,272.6952488,195.9946585,80.16028371 +427.6081105,221.8169486,324.8406014,208.3404866,174.2315414,337.7610033,394.0633147,188.8839276,278.1037756,197.3931718,80.09783229 +384.0489595,211.1162039,297.8419889,206.3123421,172.9833522,336.5922503,372.7328989,184.650556,264.4642383,194.4244542,80.28016833 +420.0535927,219.8729223,319.7532582,207.8855669,173.8873728,337.0225025,388.9018682,187.9083149,274.9369108,196.6364935,80.13243857 +399.9509958,214.425674,307.0095768,205.0826257,172.6373363,330.4450998,376.0470729,185.4579544,267.3249713,194.1911721,80.24627074 +401.4568059,214.3716724,309.1273631,202.7751072,172.5839527,326.3254665,382.3182311,186.3467047,270.6138638,194.4079328,80.25377605 +422.8258492,221.1703771,322.661221,209.7152158,174.8726294,343.3915366,397.3758776,189.2589733,279.2102992,198.4071773,80.08316267 +411.2378243,218.4186445,315.7876566,209.3716942,174.6086545,343.5976876,393.188396,188.2780174,276.2366387,197.7713431,80.12516395 +368.9362786,206.2198012,288.2595234,200.733203,171.2434126,322.7796672,361.4787168,182.5530952,258.1893567,191.4118541,80.40739228 +402.8219009,216.8885832,311.0362368,211.2107559,175.4653031,352.1117293,394.7576311,188.4435782,276.2210597,198.998523,80.11383162 +433.3145788,224.3641035,329.3007653,212.8155702,175.9714365,351.2422423,405.042655,190.7616678,283.6505793,200.3651261,79.9958509 +389.653619,211.500617,301.2869442,202.4811748,172.2453943,326.5065134,374.3770458,184.9453909,265.8191141,193.5077182,80.30424563 +409.7283033,216.9763503,314.270443,205.489539,173.5155687,333.3508921,388.2571227,187.4929302,273.9527329,196.0260083,80.18391837 +410.8134094,217.6791643,313.7711411,207.8075977,173.3633197,335.7674339,381.8082418,186.5472345,270.764915,195.511871,80.17990369 +397.8254,214.0041627,306.4658385,204.7735375,172.7327299,330.5308088,378.5633513,185.6936792,268.3522156,194.407852,80.25135959 +373.6638481,207.7636934,292.3569163,201.8502956,172.3642434,328.9087937,372.6972774,184.3410104,263.7940446,193.5095036,80.35190868 +392.0286758,211.7575335,302.6179278,201.4960744,171.9040868,323.0129812,374.0716904,184.8904958,265.902832,193.0298409,80.31097525 +388.999703,211.873908,300.5508507,204.8594474,172.5190079,331.325415,372.2228366,184.6566732,264.6870934,193.7850069,80.28554779 +442.9262581,224.1448978,332.4496712,204.8368204,172.6771629,323.7306831,387.3961019,188.2120369,276.3263414,195.0108407,80.13796703 +400.4632195,214.4427078,307.7343652,204.2310312,172.6218032,328.8542664,378.0439315,185.7266906,268.3351753,194.2473385,80.25420862 +404.016947,216.383219,310.0196029,208.8371907,173.847012,340.7550292,382.3931627,186.586162,270.5405438,196.1880143,80.17761425 +377.2426189,209.2057805,293.0329583,205.2653161,172.2170492,332.5750394,364.6897539,183.2739374,260.1500826,192.9412411,80.3332727 +370.3784023,206.4278338,288.9365639,200.2248115,171.0094379,320.6452336,360.9330813,182.390887,257.9175114,191.0432334,80.41207642 +423.4080255,221.0193009,322.5057338,208.9331532,174.4355414,340.2161464,394.1737122,188.793997,277.7706911,197.6567712,80.09857399 +391.3947195,211.1244156,300.9519519,199.7635188,170.9796646,315.9233816,365.5090656,183.6409548,261.9493198,191.2889261,77.98039109 +390.4828552,212.2196968,301.2205903,204.5901484,172.5212498,330.4848778,372.7691944,184.7232852,265.0880339,193.7647044,77.89890693 +402.7614872,216.414627,311.3539717,208.9149102,175.3448241,347.952549,397.8056832,188.8891117,277.9884997,198.9332187,77.73465824 +373.9621371,206.5996935,290.9963227,197.1543107,170.3979455,311.96561,360.827335,182.488648,258.4619722,190.1620041,78.06414197 +385.4589063,209.2523828,294.5325403,199.2081272,169.327413,308.3147181,345.6974819,180.4940667,251.8333951,188.0313859,78.07444088 +365.5522374,206.0047847,285.732498,202.8557798,171.6016616,327.8982059,358.7053648,182.1533835,256.6377392,191.7139765,78.02536764 +396.4710837,211.9812505,304.0864245,198.7840545,170.7112514,312.4981522,366.9362554,183.8999446,263.0822554,191.0069662,77.97904485 +387.4354017,211.703899,299.7618668,205.1956464,172.8796715,333.6574892,374.4105177,184.9620836,265.6854209,194.33423,77.89211519 +404.1132672,214.0876439,308.0762937,200.3754211,170.9716852,314.8152034,367.038813,184.1594426,263.6260101,191.413264,77.94455813 +389.4887686,211.1803144,300.1956399,201.437723,171.517938,321.096274,367.8823125,183.9267817,262.797226,192.1317119,77.95763043 +377.8917456,209.2979263,294.6104111,204.0061052,172.8900316,333.6760733,374.0988716,184.7621594,264.9240852,194.3030107,77.93002711 +388.7431567,211.196055,298.2648657,203.0547765,171.1169415,321.8275865,359.0706502,182.6900552,258.5314918,191.1796006,77.97125069 +386.7807443,209.7359808,297.4958074,198.8708967,170.2118251,311.8120522,358.5368655,182.3796785,258.173096,189.8620021,78.02804204 +399.1515629,214.1394925,307.1261994,203.9634701,172.8017797,329.449637,380.1165919,185.9659087,269.288858,194.5365958,77.8616384 +385.6160902,210.4491559,297.4787192,202.3650407,171.5177309,323.3090287,364.4580388,183.4346127,260.9612245,191.9753508,77.96377597 +367.1682733,205.1428585,287.329417,197.2884001,170.6721184,314.7459947,361.6558451,182.4938279,258.363031,190.559378,78.07218616 +371.7908859,205.7876825,287.0228496,197.3056122,169.0658749,306.4010118,343.4124894,179.8925289,249.908029,187.4992361,78.12917306 +398.887415,213.9578581,306.4819459,203.637208,172.5373282,327.6666844,376.8650102,185.5403769,267.7745777,194.0219951,77.87927859 +384.6983143,210.0242932,297.8438801,200.9732289,171.6053578,321.7264184,369.3295458,183.9870245,263.1201158,192.2930937,77.96598564 +377.8809985,208.9620253,293.0886523,203.4132538,171.7931359,327.5500699,363.7043504,183.0814334,259.8332828,192.2676488,77.97118394 +397.3089669,212.9675006,304.2660672,201.8829209,171.4206527,320.3107728,367.515457,184.0578276,263.1910483,192.025436,77.93605455 +377.3711475,207.868336,290.6668178,200.4626265,170.0129302,314.7046274,348.4579243,180.9180708,252.7895805,189.1092509,78.06437478 +369.8575516,205.9933364,288.2254776,198.6203261,170.4962003,315.4860214,357.9399483,181.9062521,256.5628124,190.1343254,78.06569646 +383.8821861,208.090178,295.0372167,195.3866737,169.1162512,301.9559098,351.6047209,181.3460227,254.8838118,188.0050302,78.09907681 +411.7633055,217.8914146,315.2971693,207.0546944,174.0312729,337.46622,389.8371407,187.8084204,274.8650752,196.7685728,77.76722616 +372.9104103,207.9824668,291.5025286,203.3276224,172.6781747,332.7768248,371.9134153,184.2330072,263.3717951,193.8651514,77.9538189 +390.0286874,211.1144383,300.2208047,200.8841359,171.2568108,319.0429953,366.042446,183.6824075,262.0164816,191.6896018,77.96838961 +381.8642641,208.0671352,293.9526455,196.9385679,169.4077059,305.8508535,351.9102022,181.2899519,254.7330579,188.405325,78.08448585 +397.8920717,213.3993811,304.8973764,202.9028913,171.842031,323.7231235,370.1054064,184.5061674,264.4849074,192.7423119,77.91189633 +401.3329676,215.6285534,307.8329777,208.2925538,173.5827692,338.821304,378.8083008,186.0334587,268.8057593,195.6021086,77.81537655 +401.4405441,214.7693118,307.9293565,204.6711949,172.7245986,329.7443364,377.712863,185.7106633,268.3131573,194.3340006,77.85721589 +361.9360991,203.4626828,282.5488198,196.1911492,169.4139326,308.1154969,348.2001696,180.3424431,251.528726,188.1525364,78.14236506 +382.6540537,209.8510362,295.0622578,202.9318189,171.2888621,323.2859781,359.5879099,182.5906172,258.2239729,191.403108,77.98610083 +369.5515569,205.9397449,287.0238875,199.2736507,170.1862371,315.091648,351.8500571,181.0983155,253.6921662,189.4341542,78.07973331 +389.8492412,211.3365819,300.8725219,201.5406658,171.8608726,322.9685743,371.4545156,184.5234528,264.6209415,192.7885241,77.9398551 +380.2904206,209.7014765,294.9964442,203.8941571,172.1919592,329.5839564,367.7529608,183.7504696,261.9410883,193.0192297,77.94771542 +370.8272405,205.5455427,287.8766867,196.4370843,169.6241834,307.9827471,351.7825636,181.1074435,253.910772,188.6592791,78.1100045 +378.1330654,209.052875,293.4151042,203.4146005,171.960682,328.1912377,364.9408864,183.3638527,260.5466325,192.5743076,77.96871622 +388.7786476,211.5130656,299.8558072,203.4390823,172.1350576,327.3927606,369.7131035,184.2886674,263.6050048,193.0930976,77.9264117 +371.518641,207.6374524,291.4414424,202.822784,172.9897612,333.6878061,376.7894258,184.8679402,265.5792645,194.5081278,77.94467807 +378.4601704,209.6392001,295.7052725,204.503025,173.4692433,337.0722586,380.2388698,185.5940594,267.7516579,195.3702544,77.9000655 +394.5338884,212.8154104,304.8174567,202.5812414,172.6585326,327.3445179,380.5816393,185.9111719,269.2328787,194.3308104,77.88764726 +396.5419663,212.7039426,304.0386152,201.409722,171.4194872,319.6674563,368.279387,184.1943311,263.614795,192.0607078,77.93910666 +381.7968206,209.4439253,294.6778703,202.0581978,171.1124656,321.5395989,359.724697,182.5589199,258.266026,191.1539245,77.99425346 +374.4733521,206.943234,292.0409183,197.7478693,170.9750631,315.5959577,366.7334381,183.3556739,261.2848703,191.2473485,78.03398865 +377.1143649,208.8065246,292.3789728,203.7258013,171.6991807,327.7047078,361.4696841,182.8502502,258.8938847,192.055444,77.97699891 +378.1376167,208.3325538,294.2256398,199.9666717,171.6255525,321.5203707,369.2098287,183.9101508,262.7043714,192.3001288,77.99066532 +379.9903504,207.988958,293.7964559,197.8030229,170.2118864,311.2714121,358.2849607,182.293786,257.7314312,189.8287164,78.05065656 +378.8471669,208.7250967,294.4020076,201.0296283,171.6874424,323.1941677,368.0256061,183.7017631,262.0534151,192.3184861,77.98227658 +376.3611307,207.8707511,292.1716345,200.2853955,171.0543808,319.5243021,361.7287437,182.7093847,258.900601,191.1340555,78.0178704 +409.880304,215.8076576,311.4460207,202.0111938,171.415693,318.5396351,369.8411342,184.7193785,265.2997159,192.1929924,77.90278435 +390.2407554,211.2016447,300.3686877,201.0544026,171.325325,319.6457869,366.4329594,183.7685481,262.2489537,191.8093479,77.96324619 +412.3616211,217.1525473,314.92496,203.9961886,172.8639628,327.5085896,383.5429888,186.8634064,272.1042928,194.8562933,77.82318017 +389.2420334,210.2763652,298.0906637,199.2638739,169.9815093,310.9629419,354.6644266,181.9146104,256.4993579,189.3779309,78.03094016 +403.6210671,214.1956015,307.2842826,201.4466715,170.9433654,316.3170939,364.4220083,183.705505,262.1507875,191.2459163,77.94513587 +387.6027114,210.9462673,298.3235308,202.7177152,171.4475857,323.2991975,363.6086877,183.2694451,260.5297817,191.8353722,77.95902635 +412.6662889,216.4204082,312.1914403,202.4501238,171.0172883,316.8162483,365.1066216,184.0575005,263.1898896,191.4307876,77.91108274 +376.1198244,207.0700755,291.2173546,197.660576,169.9949758,310.5894299,355.1343757,181.6852854,255.8108298,189.3473759,78.07417769 +375.1088327,208.3270491,292.2750236,202.9399318,172.1799528,329.116501,368.1981052,183.7071259,261.8191936,192.9998776,77.9672291 +378.1011193,207.3858744,292.3176867,197.200912,169.6797091,307.9703434,354.0324711,181.5160622,255.4772147,188.860733,78.08084599 +381.6435491,208.6455823,294.1701044,199.2181132,170.2120117,313.0339173,355.499452,181.9101146,256.3988953,189.7020473,78.04224497 +384.9791438,210.1751977,297.5282587,201.5444277,171.5771749,322.4196669,366.9056706,183.7100148,262.0026432,192.1515032,77.96734639 +374.2563187,206.7725318,290.2460454,198.1515234,170.1747012,312.595572,355.2965198,181.7964106,255.9431513,189.6262649,78.06867754 +390.4798676,212.4384654,300.882807,205.592191,172.6303481,332.366522,371.1650521,184.5352903,264.2731234,193.8488244,77.89672314 +397.9768226,213.9938588,303.3716612,205.9699275,171.6296921,326.7268513,361.1826484,183.191148,260.0113708,192.0350296,77.91661526 +379.939036,209.8249241,295.9988586,204.0411601,172.9887466,333.8831814,376.4936181,184.9710604,265.9341603,194.5200346,77.9152521 +395.7929575,213.6613326,304.2987967,205.4878822,172.7958451,332.0125,374.368386,185.2053703,266.3441112,194.2708418,77.87488206 +407.2650506,217.4557352,313.7302556,208.9619611,175.1847713,346.3826787,397.0956075,188.8472805,277.9316658,198.6884803,77.72943106 +389.3065721,211.7149819,299.0966164,204.3493966,171.6315345,326.0660907,362.8930741,183.2010755,260.227987,192.0615392,77.94236518 +383.366845,209.5523367,295.1681154,201.2666702,170.7074608,318.1982763,357.1829751,182.1814343,257.1487914,190.4758109,78.01046828 +386.9619588,210.6983825,298.0483213,202.1301311,171.4264778,322.1465035,363.7217237,183.322582,260.5992026,191.8127933,77.97039086 +380.7853245,209.03135,294.2212546,201.1597309,171.0238572,319.8540245,360.0370461,182.5803509,258.3553353,191.0387279,78.00723783 +363.5753814,204.8605069,284.8234016,199.6450155,171.0678691,320.9348314,359.1446371,182.0895193,256.7227624,190.9738676,78.06377806 +379.1284384,209.3322318,293.9422537,203.6716942,171.99611,328.7343962,365.2546616,183.387774,260.6855064,192.6366867,77.96080634 +417.9711114,219.4686795,318.8989597,207.6835747,174.0349319,337.1724275,390.4555464,188.0416985,275.6436104,196.837545,77.74828462 +390.6731439,211.689077,299.7677988,203.021787,171.2939011,322.0432368,361.7675013,183.0786303,259.8793884,191.5515341,77.96035053 +402.5893792,214.9376018,308.0008971,204.5860001,172.3644982,327.7406635,374.0608694,185.1670986,266.5982198,193.6673583,77.87093641 +414.6098885,217.9315546,315.9147217,205.2037478,172.9731843,329.3983474,382.6060279,186.7738131,271.7235331,194.9764216,77.80898297 +373.1107599,207.8502849,290.2871459,203.281478,171.8141121,328.3020781,362.2970113,182.833207,258.8610911,192.2161497,77.98983677 +407.2753005,216.0734736,311.036321,204.763227,172.6371215,328.6725052,377.6129942,185.8600756,268.7400624,194.2451507,77.84324205 +388.1767774,210.9584052,298.9843797,202.1162642,171.4677291,322.3888984,365.4154187,183.5748833,261.5555919,191.9559146,77.95640813 +389.7015027,210.9286392,301.0663286,199.929818,171.4361,318.4747365,371.510697,184.4027334,264.6371427,192.1853416,77.96297256 +410.03683,217.3154922,313.824084,206.4973759,173.5851901,334.7963074,385.787345,187.1243687,272.7596853,195.9482468,77.79386812 +398.9848979,214.7228446,307.3180852,206.1666571,173.3441411,335.0137234,381.864912,186.2048289,269.9467876,195.3630471,77.83540477 +358.799921,203.2667053,281.2952537,198.0127064,170.1681939,315.0642642,351.5951643,180.8857533,252.9662953,189.3636518,78.11663688 +390.8168799,213.2506737,302.7059325,207.9183726,174.1373065,343.1302296,383.2541795,186.3758098,269.9892759,196.5038364,77.82386303 +419.8619199,220.2954653,320.0686308,209.4450533,174.5950673,342.3206713,393.0437725,188.5367706,277.0242512,197.7533004,77.7076138 +378.4013825,208.2072649,293.573073,199.6464622,171.1088362,318.6001389,363.8142218,183.0988965,260.1121168,191.3276876,78.01327736 +397.4882637,213.3616402,305.8791344,202.4965529,172.300537,325.1662426,377.1100507,185.476686,267.8139124,193.6916178,77.89368273 +398.6204226,214.0350745,305.4180459,204.6910739,172.1671969,327.5282164,370.9691881,184.5825454,264.7653242,193.225008,77.89058106 +386.2743363,210.5782561,298.5205975,201.8138725,171.5836446,322.5200621,367.9282847,183.7848435,262.4734014,192.200048,77.96094855 +363.2352794,204.7041293,285.1256232,199.0562461,171.2271532,320.8975279,362.2590044,182.5518162,258.24145,191.3455954,78.06016039 +380.646991,208.4534047,294.8647709,198.7184911,170.7865236,315.2787478,363.5845239,183.0439044,260.195154,190.8728323,78.01999237 +377.8421648,208.5701097,292.8782381,201.9097578,171.3700107,323.2472306,361.806446,182.8331229,259.0624693,191.5987274,77.99541977 +429.4190606,220.1729747,323.2938228,201.8887862,171.520256,316.0098509,376.2528602,186.1426835,270.0086004,192.7404825,77.84958645 +388.811104,210.9892767,299.7048623,201.2966106,171.4790705,320.8834059,367.3595297,183.8162231,262.4392706,192.0482654,77.96373343 +392.0738185,212.8000878,301.8030977,205.6761071,172.6132971,332.2742511,371.4652677,184.632223,264.5964709,193.8520825,77.88825691 +366.7105521,206.0622284,285.7641754,202.2894143,171.1024727,324.48755,354.6707965,181.548721,254.7782351,190.8351909,78.04311476 +360.1461274,203.4492433,281.9287967,197.5149549,169.9580288,313.0510424,351.1208673,180.7167332,252.6592552,189.0278187,78.12099021 +410.5800483,217.1749242,313.6816164,205.7648275,173.1654338,331.7503656,382.7246482,186.690825,271.4166036,195.2268153,77.80957667 +416.3063337,219.5640094,318.1025083,207.0649406,175.1811472,333.9032991,388.9934727,189.2586182,275.699023,197.617371,83.68518965 +415.6958587,220.8223875,318.6453125,212.418137,176.9619497,350.0241582,396.8224682,190.4635965,279.0560319,200.4415545,83.5972016 +429.3615746,225.5079925,329.9852109,217.0896263,180.1779372,369.141545,424.2445937,195.0950209,293.1064779,206.2863169,83.42159785 +397.2545579,214.5490238,307.1391895,204.2269121,174.5217294,329.5924064,383.7719349,187.9668607,271.8641469,196.3438643,83.77318006 +409.5040791,217.5047607,310.9815142,206.5102275,173.2802204,325.3987661,367.3582457,185.7723803,264.7022146,193.9057406,83.78338863 +388.2593937,213.9234286,301.6280153,210.5366879,175.9062124,347.1669446,381.4828219,187.5699488,269.742216,198.0898089,83.7280796 +421.9513393,220.4942098,321.3899086,206.0090433,174.8730587,330.1209114,390.4002261,189.5196853,276.8942156,197.310092,83.68577098 +412.3437697,220.2337241,317.0650145,213.0476905,177.3761418,353.4879127,398.642913,190.7039574,279.6285208,201.0879463,83.58916525 +430.0457374,222.8408237,325.875648,207.727682,175.1523841,332.6347718,390.6540075,189.8684193,277.6290413,197.7347733,83.64760764 +414.3143999,219.6600239,317.4155755,208.9566865,175.7933751,339.6647342,391.5048963,189.6212895,276.712649,198.56005,83.65964806 +401.7745567,217.5288194,311.3677319,211.7011076,177.3895558,353.469902,398.4033992,190.4464992,278.7208434,201.045047,83.62803959 +413.3680158,219.6325562,315.2230222,210.6816318,175.3502982,340.354126,381.9212875,188.1771724,271.8507498,197.4998762,83.67356461 +411.4174198,218.059069,314.2640221,206.1740967,174.3080191,329.3804474,381.3070393,187.8658141,271.6194958,196.018349,83.73610038 +425.2726429,222.9543425,325.074094,211.7393755,177.2790635,348.9010257,404.7881721,191.8452111,283.664037,201.3218903,83.55938565 +410.0429178,218.7923182,314.3535503,209.8979786,175.8189624,342.01618,387.8128315,188.9797587,274.4348839,198.4174106,83.66586614 +389.91336,212.8879261,303.0588721,204.3360031,174.856725,332.6593347,384.6807718,187.891248,271.5362822,196.8218768,83.78189248 +394.4603308,213.636966,302.6782978,204.3926883,172.9938572,323.3158611,364.8234994,185.0624189,262.4869573,193.3130191,83.84003704 +424.6839343,222.7376042,324.3812449,211.3366367,176.9623727,346.8798216,401.3543298,191.4032832,282.0970306,200.7099206,83.57675546 +409.3540121,218.3819297,314.8040125,208.4687565,175.9120846,340.4052654,393.0271489,189.6407012,276.9409712,198.7765583,83.66967337 +401.9939873,217.2186928,309.6921743,211.1582594,176.1400245,346.8012978,386.9510312,188.6032526,273.2364187,198.757497,83.67349559 +422.954831,221.6326289,321.818703,209.42719,175.6913841,338.7436476,391.1914089,189.7241896,277.044936,198.4649904,83.63864963 +400.6109365,215.9071778,306.7351035,207.8069894,174.0859614,332.4230144,370.437486,186.1662447,265.5170292,195.1425167,83.77082487 +393.1479726,213.9541176,304.2380851,205.943213,174.6459582,333.5330418,380.6558212,187.3322759,269.8155349,196.3346946,83.77437803 +407.8238543,216.1974797,311.3939427,202.2606342,173.0371081,318.4388928,373.8700427,186.7029081,268.0433769,193.8864346,83.81150208 +439.0112991,227.1439588,334.1937964,215.1149252,178.6630496,357.6760597,415.4991305,193.9517613,289.8951729,203.8197731,83.45791269 +396.6588313,216.1205365,308.0054269,211.0405843,177.1546746,352.5769741,396.0044959,189.8500804,277.0203878,200.5653792,83.65483883 +414.8470783,219.5641963,317.3706518,208.3181403,175.4991202,337.3635203,389.5224035,189.3209869,275.792352,198.0682106,83.67163263 +405.7168312,216.1953956,310.3026491,204.0231846,173.3743903,322.7551332,374.0533277,186.671791,267.9177874,194.3427946,83.7948215 +423.6162689,222.101965,322.5430858,210.5170774,176.18117,342.48821,394.0359887,190.2032988,278.384915,199.2868029,83.61258731 +427.3436299,224.5868644,326.003527,216.4086551,178.1567902,359.0866701,403.4779405,191.9505076,283.1664568,202.4898551,83.50628288 +427.6227601,223.6418477,325.9684179,212.4832503,177.1870973,349.1696817,402.2331658,191.5696237,282.6099646,201.0845537,83.55405204 +384.0724313,211.0432026,297.7333513,203.1625306,173.4226544,325.2933454,370.009279,185.4907421,264.0664854,194.1066044,83.8557234 +406.7990789,218.2046051,311.8583213,210.6239871,175.5281392,342.0489912,382.4709552,188.132514,271.6960137,197.7179264,83.68779892 +392.4877059,213.8464276,302.8647797,206.5995792,174.2900164,333.0028409,374.0547111,186.4017676,266.5890242,195.5281405,83.7882083 +414.7794042,219.7988392,318.1069859,209.0066477,176.2024726,341.6904295,395.4519833,190.2161364,278.5170058,199.3317735,83.64157215 +404.513945,218.035869,311.8292374,211.6755829,176.5835284,349.0621677,391.3311367,189.386043,275.6302126,199.5852497,83.64770058 +393.7027791,213.3745135,303.6424603,203.4315359,173.6432079,325.1398705,374.0595763,186.3974716,266.8355633,194.6513828,83.82157752 +401.9421767,217.2801783,310.0398087,211.1003875,176.3164693,347.4475825,388.3479492,188.9299071,274.0506383,199.0713136,83.66927232 +413.7029111,220.0162042,317.0899599,211.1101965,176.5216383,346.5438662,393.6523578,189.9507269,277.3852774,199.6820627,83.62646138 +395.1822926,215.7097244,307.8810361,210.4725428,177.5167512,353.627187,401.1417217,190.5345519,279.3557536,201.3026582,83.64567211 +402.6266394,217.9391053,312.6436634,212.2951078,178.0519959,357.3201233,404.9348462,191.3928415,281.8415978,202.2567974,83.59704942 +420.1538808,221.4805151,322.5238267,210.220489,177.107284,346.6089896,405.2578412,191.7986251,283.6514902,201.0719154,83.58663094 +421.9911032,221.3057406,321.5078743,208.8540668,175.6925867,338.0113777,391.9940571,189.8549781,277.4421197,198.5059015,83.64155575 +406.0260159,217.7404048,311.3588073,209.6549918,175.3479867,340.1255441,382.6419065,188.0482166,271.6190241,197.4778153,83.69826964 +398.1438885,214.9160151,308.2654715,204.8776256,175.1992923,333.6338766,390.1597046,188.8664968,274.7819284,197.6057814,83.74298802 +400.8859251,216.9746351,308.8079067,211.4094782,176.0386209,346.8592592,384.5235162,188.290434,272.0510671,198.5183867,83.67879008 +402.0447087,216.4544722,310.7711089,207.2814904,175.9440888,340.1240198,393.0133549,189.4920421,276.3275006,198.7903168,83.69547822 +403.8065733,216.0579583,310.1241705,204.8939934,174.319516,328.7667908,381.0749763,187.7044677,270.9556282,195.9869035,83.75985361 +402.8846966,216.9401888,311.078107,208.5204703,176.0052355,342.0249641,391.6579523,189.3242101,275.7688527,198.7954063,83.6858212 +400.0670635,215.980266,308.5577888,207.6962209,175.2841852,337.9419842,384.7859309,188.2062005,272.2945669,197.458927,83.72352996 +436.48131,224.7587123,329.6223174,209.5295993,175.6675602,336.7310373,393.7628155,190.4789185,279.4136082,198.6338677,83.60384971 +415.0921128,219.6449618,317.5059911,208.4802308,175.5851331,338.0103676,389.9594983,189.3890313,275.9677118,198.2159247,83.66641686 +439.3542391,226.2544149,333.5482436,211.6879287,177.3276614,346.6483075,408.5529829,192.8621891,286.7920203,201.6539865,83.51844245 +413.8800482,218.6302891,314.8862327,206.5537895,174.0417645,328.3858948,377.1418623,187.3365152,269.7535088,195.4601466,83.73900736 +429.5833304,222.9963175,325.0898242,208.9729251,175.115687,334.3038471,387.797683,189.3977564,276.1073945,197.5377042,83.64766965 +412.5078197,219.4072419,315.3667244,210.3698124,175.7391883,342.0580214,386.9286852,188.818988,274.0413388,198.268578,83.66215856 +439.2780407,225.3947167,330.34029,209.9930286,175.207703,334.784625,388.4610418,189.7438207,277.0919827,197.7613203,83.61224557 +399.5727039,215.1021235,307.4170457,204.8188246,174.0556248,328.0432447,377.6447623,187.0976359,269.0427897,195.4147762,83.78340492 +398.8360405,216.4886107,308.7986374,210.6075932,176.5764955,348.5461088,391.8164906,189.3054899,275.4144919,199.5710482,83.66850289 +401.6387334,215.4395352,308.5456169,204.3163647,173.689644,325.1331079,376.2773665,186.9317923,268.7266172,194.8604224,83.79013111 +405.507421,216.8065928,310.6134658,206.4833268,174.3097264,330.6971239,377.9920285,187.3250101,269.6012305,195.822812,83.74950376 +409.4607905,218.5344105,314.4822016,209.0575859,175.8748027,341.1137221,390.4825968,189.3361815,275.723879,198.6013897,83.67006632 +397.4035064,214.6711711,306.1870507,205.2372709,174.2892154,330.186818,377.8565316,187.1105626,268.8822894,195.7662247,83.77746087 +415.6064588,221.0874508,318.3700188,213.5325283,177.0697896,352.0831304,395.156192,190.2931433,278.275799,200.504186,83.5934325 +423.5502703,222.7753339,320.9554871,213.9310554,175.9178405,345.7577069,384.176093,188.7883308,273.5944362,198.4409763,83.6150829 +404.5757011,218.2382651,313.0523416,211.9112376,177.5001735,353.9076024,400.9396606,190.7475509,280.0208123,201.3011695,83.61447984 +421.1333219,222.3868444,322.0347462,213.3292892,177.2568192,351.6037176,398.6651335,191.0266565,280.4978465,200.9781524,83.56968429 +434.2892238,226.6961225,332.6390241,217.2089415,179.981179,367.5018339,423.4719792,195.1107456,293.2345053,205.9893259,83.41641371 +414.361534,220.2781876,316.2831896,212.1888932,175.9406972,345.1171879,386.0794907,188.7782465,273.7839139,198.5073851,83.64327662 +407.7046649,217.874255,311.8743368,208.8028803,174.87769,336.4261283,379.9038098,187.6454464,270.4647051,196.7031248,83.71586282 +411.4226447,219.1181073,315.0863429,209.7015104,175.686488,340.7734183,387.060475,188.9402902,274.2879978,198.1873932,83.67193458 +404.7816465,217.293654,310.8836724,208.6768963,175.2307473,338.2810814,383.0092289,188.1123055,271.836362,197.3194012,83.71125761 +386.016353,212.6415459,300.5331955,207.0059506,175.2986724,339.5126731,382.032299,187.4997207,269.8733021,197.2628013,83.77031111 +403.2925257,217.6247098,310.6573736,211.4216484,176.3659978,348.0748083,388.7279773,188.9453192,274.1795879,199.1634396,83.66218015 +445.6596939,228.8821367,338.1081439,215.8197354,178.6530382,357.3550169,416.0981324,194.2486231,290.8522309,203.8766378,83.43729761 +415.4286729,220.2115102,316.9491764,210.6893666,175.5305776,340.6524387,384.7881489,188.6852121,273.5250154,197.8855586,83.66111987 +428.8499344,223.8398771,326.0425201,212.4182124,176.7695361,346.9612235,398.2759119,190.985158,280.8043943,200.3218406,83.56870188 +441.7963368,227.1281872,334.6794327,213.0368311,177.4493227,348.7322831,407.5411354,192.7872625,286.4356535,201.7845437,83.50289464 +396.6454435,215.976996,306.6397385,210.9980332,176.1549347,347.6010394,385.4810435,188.3249271,272.1773175,198.6762811,83.69199201 +433.9746452,225.0798325,329.337605,212.5544182,177.0893095,347.9285328,402.2125424,191.7162812,283.0316757,200.9943536,83.54000645 +413.0212448,219.3754748,315.9995624,209.6536212,175.7681793,341.0358825,388.836969,189.1286647,275.0724898,198.413698,83.65960605 +414.7527769,219.3757703,318.2626969,207.324123,175.705708,336.8056993,395.3658714,190.1179998,278.6643495,198.6411076,83.66710723 +437.0642784,226.5094777,332.5642209,214.535467,178.1484508,354.7749769,411.0646338,193.216947,287.6767766,202.8802957,83.48590963 +425.2361526,223.6732734,325.4591506,214.2533709,177.8871724,355.1320199,406.7214019,192.1981446,284.609649,202.2353338,83.5292344 +380.586621,210.784447,296.3933239,205.1285879,174.2919221,332.9424843,373.7189832,186.0608136,265.5162691,195.4739872,83.82683573 +416.368254,222.0218683,320.5103742,216.0916102,178.8064665,363.9746982,408.3704139,192.3132514,284.4214624,203.5370126,83.51617845 +447.957441,229.7952682,339.4002146,217.6971796,179.3176303,362.9120826,418.9413564,194.7154904,292.09062,204.9621376,83.39519007 +402.2932185,216.3404646,310.0642919,206.9627544,175.3476539,336.8975976,387.1893931,188.6156733,273.5809897,197.6827228,83.71947776 +423.314715,222.0727271,323.6356168,210.1081697,176.7002155,344.1606386,401.514555,191.3002877,282.0674069,200.3552348,83.59359768 +424.5695659,222.8559765,323.2280207,212.571986,176.5452293,346.7605591,394.8648894,190.3481891,278.8346464,199.8203658,83.58898109 +411.1266976,219.0432125,315.6288603,209.4540983,175.8781707,341.3085808,391.5251775,189.471528,276.3831199,198.658002,83.66327952 +385.6270912,212.4274991,300.7882684,206.3156407,175.4886303,339.4569885,385.4370836,187.9763764,271.4394271,197.6965608,83.76713331 +404.8435117,216.6102464,311.3949184,205.9557398,174.9815341,333.2488027,386.8179086,188.5437644,273.654974,197.181266,83.72812343 +401.6351962,216.7331728,309.3482422,209.4459389,175.6502136,341.998211,384.895647,188.3181365,272.3842737,197.9874027,83.69899689 +457.5096344,229.537906,342.4042409,209.3774851,175.7503978,333.8681114,400.6159856,192.077796,284.6380196,199.2100239,83.54843336 +413.6860734,219.4851737,316.9375131,208.8429232,175.7454039,339.4517859,391.0307884,189.513809,276.3825584,198.4622355,83.6663327 +417.3707145,221.4572496,319.3037003,213.583115,177.0665567,351.9343433,395.4641073,190.3514815,278.483596,200.537226,83.58531118 +389.5824047,214.0069447,301.6436566,209.9345016,175.3372941,343.3809097,377.135961,186.8921455,267.7168594,197.1034353,83.74775978 +382.3808256,211.084899,297.2153691,204.683766,174.0441443,330.7991722,373.2073392,185.9364358,265.36124,195.0957812,83.8325724 +437.5060997,226.3039599,332.2859531,213.6712394,177.6766092,351.3551894,407.6584316,192.6922648,286.0807017,202.0767253,83.50316449 +436.0323865,227.261951,332.0549681,213.3964459,179.4732219,347.9341399,405.5267422,194.6595761,286.2383291,203.4508958,85.41772307 +435.1362181,228.5789994,332.520919,219.1895155,181.4349433,365.1340219,413.8770066,195.983997,289.8480592,206.5506427,85.32676476 +449.7010804,233.6429916,344.5715813,224.2921821,184.9112093,385.4491934,443.0541955,200.9668813,304.8920425,212.8578321,85.14455017 +415.8724765,221.8765643,320.4106831,210.2850304,178.7262342,343.2940079,399.8549164,193.2421935,282.0893323,202.0243897,85.50924247 +428.3626229,224.9474065,324.2708647,212.7029577,177.3854479,338.7007789,382.352756,190.8680621,274.3804432,199.3907358,85.51892637 +405.9199118,221.1783312,314.3383431,217.0766355,180.2347603,361.8281939,397.4884963,192.8389054,279.8533407,203.9252847,85.46073487 +441.9690898,228.2030406,335.5322483,212.2561894,179.1523325,344.0461815,406.9298475,194.9199725,287.4490317,203.138501,85.41996341 +431.6947532,228.0006365,330.8940607,219.8876962,181.8774372,368.7755127,415.8896988,196.255701,290.5156528,207.2443952,85.31747836 +450.3645116,230.6940923,340.1909032,214.0867806,179.4504317,346.5830035,407.2376156,195.296033,288.2324171,203.5834824,85.37951891 +433.5838323,227.273121,331.1489867,215.3927789,180.1421902,354.0377576,408.0814455,195.0324792,287.2378507,204.4675023,85.39210256 +420.6640153,225.167319,324.9041904,218.4392443,181.8639283,368.6465275,415.6873837,195.9775996,289.5908573,207.1613084,85.35629059 +432.6828585,227.3250511,328.8987866,217.2920131,179.6709479,354.738537,398.0882998,193.5190856,282.1692771,203.347318,85.40436864 +430.5568766,225.5409328,327.8395367,212.379715,178.5295826,343.1556915,397.1865005,193.1324855,281.7751264,201.7241953,85.47192782 +445.3461721,230.8460333,339.3763217,218.4886878,181.7900798,364.0669025,422.2923289,197.4589744,294.7361309,207.5176361,85.28883208 +429.4386043,226.5003141,328.109312,216.4926856,180.1772717,356.5527983,404.4307519,194.3990041,284.9958052,204.3429082,85.39608406 +408.4283694,220.2162774,316.256321,210.474533,179.0882171,346.6047053,400.9737145,193.196628,281.8647886,202.5534735,85.51687727 +412.6649782,220.8763254,315.5519408,210.4286694,177.0477623,336.4393315,379.7003023,190.1024417,272.0589151,198.7134519,85.57658105 +444.6680207,230.6134726,338.5990868,218.018702,181.4271031,361.7730842,418.6570345,196.9737041,293.0546254,206.8227318,85.30585142 +428.5332594,225.9536945,328.4920669,214.9103439,180.280468,354.935426,409.7361177,195.0722996,287.5313387,204.7248639,85.40277299 +420.6683163,224.7448191,323.0410935,217.81754,180.5296965,361.6530216,403.3846394,193.9860885,283.6501133,204.7150959,85.40513976 +442.9333033,229.4504035,335.9483892,215.9628654,180.0502983,353.145114,407.8808696,195.175187,287.6851217,204.4045383,85.36987531 +419.2634542,223.3759549,319.9056648,214.1656176,178.2578617,346.1393637,385.8721617,191.3335981,275.406142,200.7380247,85.5033726 +411.2523392,221.1747819,317.2023624,212.1219811,178.8746981,347.504249,396.4720413,192.5619072,279.8652174,202.0373022,85.51109576 +427.0506636,223.6211756,324.918799,208.1306186,177.1021336,331.3545178,389.3009474,191.8610449,277.9777071,199.347277,85.5487351 +459.5827574,235.2528251,348.8718265,222.1016004,183.2883215,373.3312474,433.6108023,199.7019285,301.3201301,210.2059954,85.18405446 +415.2460096,223.6468908,321.3509929,217.7321124,181.6121982,367.7592366,413.0638205,195.3376176,287.7550988,206.6497919,85.3850663 +434.3219102,227.2241551,331.1964233,214.7319095,179.8230071,351.604293,406.053484,194.7237747,286.3110316,203.9415925,85.4039153 +424.4710089,223.5241252,323.5919409,210.0037778,177.4840535,335.9715093,389.4029293,191.8171792,277.7721355,199.8571875,85.53239927 +443.7517675,230.0056308,336.7800554,217.1742008,180.5867098,357.138067,411.0056392,195.7120261,289.1846739,205.3062806,85.34208683 +447.2083804,232.5653338,340.1807778,223.46181,182.727772,374.6565243,420.9832243,197.574409,294.223147,208.7564131,85.23174573 +447.8048054,231.5933045,340.3128602,219.2848175,181.6883662,364.2887812,419.6399847,197.1708039,293.6398952,207.2591121,85.28250353 +402.0802689,218.2006972,310.5255566,209.1680767,177.5191563,338.702262,385.3132929,190.595934,273.8458227,199.5976123,85.59306027 +425.3679714,225.6814957,325.1193523,217.1474945,179.8419596,356.4396556,398.4505547,193.4251959,281.8607865,203.5368301,85.42023561 +410.605007,221.1161851,315.774537,212.8433652,178.4786124,346.8417606,389.5654404,191.5738852,276.4826464,201.152031,85.52354933 +434.5122338,227.5639843,332.1144959,215.5381473,180.592292,356.2608174,412.4792635,195.7158119,289.3158194,205.3266566,85.37201015 +423.1926373,225.5721516,325.2207916,218.3445627,181.0058899,364.0161376,407.9785915,194.8100135,286.1518232,205.5940786,85.37884734 +412.1959539,220.6685131,316.7438303,209.4370206,177.7587025,338.4830002,389.5985054,191.56246,276.7739637,200.1801152,85.55790331 +420.5687952,224.8113294,323.3639616,217.73046,180.7004734,362.2144427,404.8791925,194.3217924,284.5080387,205.0182085,85.39984587 +433.2474818,227.7943841,330.9783531,217.8040423,180.9429412,361.3703343,410.6118953,195.4442963,288.1376232,205.715855,85.35565376 +413.8223718,223.2279738,321.2964325,217.1482667,182.0081292,368.9692738,418.5113705,196.0757285,290.2551298,207.4519614,85.37614795 +421.5007583,225.5657188,326.2351473,219.0823557,182.5925282,372.8320549,422.5232016,196.9890034,292.8694891,208.4809136,85.32583028 +439.9166821,229.2478704,336.6473409,216.8196755,181.5884361,361.588145,422.7059759,197.3864483,294.6666207,207.2183294,85.31743487 +442.1011106,229.1571127,335.7081237,215.3691255,180.0471993,352.364361,408.8136677,195.3257767,288.1592215,204.4452529,85.3721526 +424.8706412,225.2703567,324.7719357,216.1662825,179.6612081,354.5099568,398.7499818,193.3676711,281.8745675,203.3113425,85.4309418 +417.0818681,222.3412616,321.7635154,211.0629898,179.4793411,347.7536494,406.7173592,194.2379308,285.2784938,203.4275024,85.47813703 +419.676322,224.5650927,322.1924175,218.1186472,180.4148678,361.6668916,400.9633471,193.6683351,282.4751363,204.4560904,85.40879399 +421.2159652,224.0381713,324.4198749,213.6872898,180.2933396,354.5785706,409.897687,194.9400861,287.0125978,204.7196159,85.42732082 +423.0338271,223.576413,323.7116135,211.0668275,178.5225976,342.4683764,397.1544345,192.9952005,281.2255267,201.672325,85.49428206 +421.6918054,224.4331984,324.5339252,214.9567164,180.3659695,356.567919,408.3025011,194.7338078,286.2992266,204.7223136,85.41868117 +418.7220482,223.4128306,321.8702584,214.0597242,179.5790271,352.2029798,401.0147273,193.5310636,282.5987249,203.2721577,85.45733573 +457.1822294,232.7640174,344.1837732,216.0684484,180.0270912,350.9963117,410.6164576,195.9747413,290.1875528,204.5880807,85.33401864 +434.7338494,227.3634167,331.423587,214.940867,179.9206868,352.319052,406.603548,194.8154037,286.5589566,204.113828,85.39792307 +460.2620777,234.3729548,348.3522992,218.4351151,181.8376718,361.6313937,426.3293939,198.53899,298.0623833,207.8653559,85.24606901 +433.2661263,226.2087361,328.5594881,212.8067702,178.235815,342.0334855,392.8609735,192.5800532,279.8455794,201.1152893,85.47363208 +449.5098099,230.7612482,339.1774833,215.3804018,179.4144988,348.3278919,404.0772832,194.7708339,286.5231778,203.3691599,85.38033684 +431.8885436,227.1012521,329.1201701,216.9875183,180.1022607,356.6498419,403.393917,194.2205325,284.5245211,204.198156,85.39347137 +459.9715246,233.3986023,344.8688171,216.5437135,179.5342236,348.9147009,404.9665713,195.1774194,287.6794968,203.6488314,85.34273465 +418.1133751,222.4216509,320.6014124,210.8965995,178.2200515,341.5851483,393.300954,192.2987051,279.0427931,201.0162651,85.51971657 +417.3663632,223.9715708,322.0968017,217.218029,180.9888385,363.4669645,408.5432718,194.731748,285.9672759,205.5697425,85.39988873 +420.1094677,222.6993736,321.6980628,210.3121311,177.8279858,338.5140247,391.7521845,192.0948398,278.6230827,200.4172482,85.52779771 +424.4596248,224.2844649,324.0404492,212.7304272,178.515253,344.4504044,393.79028,192.5696174,279.702758,201.4894875,85.48389685 +428.6524212,226.1476979,328.1502853,215.5435584,180.2301759,355.5884191,407.104212,194.752583,286.2709236,204.5213526,85.40191799 +416.3617496,222.1553193,319.578565,211.4601751,178.4826726,343.9230704,393.8508181,192.3741631,279.0873787,201.4293764,85.51079927 +434.7656072,228.7976713,332.0731082,220.3325041,181.5374705,367.193381,412.0214002,195.7770575,288.9459593,206.5894126,85.32267524 +442.9889342,230.5536011,334.7452397,220.7353461,180.3006045,360.4716301,400.342706,194.1536529,283.9187525,204.3750951,85.34493178 +423.3245469,225.792111,326.549599,218.6295448,182.0046494,369.2470211,418.124651,196.2767359,290.8303201,207.4594293,85.34550001 +440.7872041,230.2430529,336.0412467,220.1449279,181.7374953,366.6735281,415.8619914,196.5739043,291.3752392,207.0999152,85.2970755 +454.5701134,234.7907708,347.2030567,224.3593678,184.7025062,383.7101637,442.0572454,200.9481348,304.8908127,212.5298954,85.14076981 +433.5305734,227.945963,329.9243706,218.8985728,180.3261951,359.8641396,402.4030118,194.1605594,284.1746347,204.4561708,85.37440583 +426.5759231,225.3817478,325.2813805,215.2253769,179.145998,350.5561284,395.7776177,192.9196142,280.6007064,202.4634411,85.44952129 +430.4851934,226.7159001,328.6571186,216.1907355,180.0143012,355.113797,403.4091459,194.3054491,284.6814261,204.0488851,85.40349211 +423.4214625,224.744158,324.1809301,215.0676403,179.5146168,352.4656692,399.0403923,193.4067848,282.035401,203.102551,85.4446882 +403.7899871,219.8462924,313.2998718,213.2879564,179.5608611,353.7276174,398.0597147,192.7567485,280.0073578,203.0106844,85.50475056 +422.0596147,225.1946757,324.0663009,218.1024435,180.7670465,362.9532375,405.2954769,194.3534872,284.6702063,205.1425874,85.39291547 +466.2788782,236.9954398,352.8338428,222.8053116,183.2817254,372.9871861,434.1197087,199.9859944,302.224527,210.2620157,85.163772 +434.517046,227.8195985,330.5352524,217.2281649,179.8575225,355.012924,400.936038,194.0212551,283.8126941,203.7347974,85.39298908 +448.9351632,231.7527007,340.3070607,219.1809138,181.2362155,361.915173,415.37439,196.5299543,291.6644357,206.4318642,85.29803952 +462.6144132,235.2482998,349.4372688,219.8597244,181.9748423,363.8260718,425.2121412,198.4511975,297.6432923,208.0101332,85.23028091 +414.948169,223.4153015,319.7523674,217.6182257,180.5237379,362.3799002,401.806859,193.6736467,282.5060283,204.5925331,85.42352651 +454.6635564,233.1780035,343.9641241,219.3981988,181.5877024,362.9910686,419.7185899,197.3453226,294.1536187,207.1772884,85.26733536 +432.6545948,227.1281075,329.9054754,216.2528587,180.134807,355.6069309,405.5110086,194.5661747,285.6824665,204.3606795,85.39033573 +434.1609873,226.9590403,332.10386,213.649125,180.0552247,351.130556,412.1230535,195.55628,289.2915954,204.5702502,85.40114425 +457.3373648,234.5111971,347.0449417,221.4309683,182.7296225,370.218604,428.8147627,198.8936494,298.8852473,209.1825759,85.21354348 +444.7037992,231.4372434,339.4446673,221.0949856,182.4511255,370.6087566,424.1259789,197.7962766,295.5765789,208.4919555,85.25895452 +398.4105824,217.9692914,309.1029972,211.3176631,178.4651615,346.7973094,389.378265,191.2313924,275.462434,201.0843594,85.5617899 +435.7230236,229.8545604,334.4209832,223.1496298,183.4298593,379.9003859,426.132112,197.9767229,295.5808013,209.8911362,85.24272903 +469.1479583,238.1350452,354.463781,224.9432512,184.0169997,378.9870794,437.421287,200.5562349,303.7659998,211.4815412,85.11862238 +421.3138633,223.8682287,323.5867548,213.3065872,179.6430526,351.0992547,403.6501117,193.9846697,284.0351521,203.513625,85.45243777 +443.3368534,229.9108456,337.877178,216.7162868,181.1518231,358.9930317,418.8035763,196.864342,293.0213036,206.4557428,85.32413447 +444.2478612,230.6526064,337.2393768,219.3127795,180.9935536,361.6858472,411.6814912,195.8352107,289.5163217,205.8872044,85.31940527 +430.032903,226.5485591,329.1619119,215.9105339,180.2467394,355.8469941,408.0098485,194.8643284,286.832823,204.5923752,85.39697906 +403.6312989,219.6868413,313.7013509,212.5856353,179.7671663,353.7176732,401.7652555,193.2862559,281.7468447,203.4867119,85.50097676 +424.0513291,224.1351891,325.0305522,212.2226285,179.2555691,347.3236416,403.1995267,193.8988718,284.0808355,202.9859735,85.46253559 +420.4152484,224.2592446,322.7309471,215.9721546,179.9832457,356.4965488,401.239098,193.6727518,282.7573247,203.8586756,85.43082917 +479.0520418,237.7174778,357.5148414,215.8595956,180.1224393,347.9925271,417.7340568,197.6340837,295.5957513,205.2063584,85.27862053 +432.8333151,227.0608216,330.5949623,215.2541143,180.0851368,353.7852924,407.5201299,194.9077545,286.8549348,204.353576,85.39928647 +436.8958354,229.2773389,333.2147666,220.4482049,181.5480496,367.1152466,412.4994725,195.8733162,289.2731912,206.6568219,85.31357568 +407.3463075,221.2721923,314.3772935,216.4325042,179.6199881,357.8193917,392.8573586,192.1110227,277.6910756,202.8646071,85.48113413 +400.0881667,218.1942674,309.8723752,210.7938181,178.2010318,344.5542597,388.6529987,191.0741551,275.1916477,200.6765575,85.56976238 +458.0640104,234.372266,346.898357,220.5442162,182.2233745,366.6184951,425.3384119,198.3563957,297.2763119,208.330032,85.23052382 +422.9664532,220.6435486,321.997071,207.6126455,174.6893603,338.2596423,394.9520307,189.3243726,278.3489165,197.8535121,82.85648472 +421.9028084,221.885355,322.3182995,213.1806776,176.5037983,354.8018362,403.0333274,190.5684093,281.8409868,200.7405021,82.76920603 +435.8316762,226.7520754,333.8639305,218.1580808,179.7738472,374.4257357,431.1861802,195.3741292,296.4508008,206.7016844,82.59472379 +403.4607158,215.4513997,310.755216,204.5973584,173.9994484,333.8051945,389.6158459,187.9873986,274.392627,196.5297448,82.94356848 +415.6060109,218.3714604,314.4215516,206.9339283,172.7392997,329.4240358,372.4620057,185.636595,266.7623385,194.0287493,82.95499366 +393.535578,214.6863048,304.6031967,211.1698657,175.3904519,351.6824012,387.2473021,187.5533447,272.2027596,198.2956545,82.90004499 +428.8557729,221.6372845,325.5675849,206.4657348,174.4018437,334.5086951,396.3803788,189.6216733,279.5727539,197.5612593,82.85617511 +418.5209131,221.3170407,320.6975284,213.8904655,176.9207183,358.3466597,404.9857858,190.8502503,282.5405351,201.401642,82.7615132 +436.9435668,223.9660679,329.9049779,208.2675039,174.666635,336.9286118,396.5487972,189.8967155,280.1891313,197.972651,82.81911806 +420.5397971,220.6254895,321.0357342,209.5049308,175.3000157,344.0875633,397.4395923,189.6230283,279.2308776,198.7946905,82.83107107 +407.8067165,218.5722873,314.8618157,212.5384954,176.9192607,358.2783871,404.8052353,190.6219027,281.720698,201.3487755,82.80045961 +419.6427503,220.6703978,318.8289268,211.3985237,174.8601479,344.860765,387.7159938,188.2072028,274.4034202,197.7341682,82.84587798 +417.7157664,219.0155889,318.0184368,206.5589691,173.8097086,333.6543763,386.9083298,187.8583381,274.0008285,196.2167275,82.90659038 +431.8562174,224.1188897,329.0662204,212.4745033,176.8433301,353.7449913,411.1971451,192.0077299,286.5912621,201.6542016,82.73091917 +416.4748058,219.8913267,318.0903938,210.6441909,175.3394502,346.6186075,393.9054075,189.0965732,277.228889,198.6821559,82.83796466 +396.1886968,213.8709361,306.7543004,204.8224226,174.3487133,337.0580175,390.7447588,188.0263231,274.3374177,197.0406613,82.95236829 +400.4024509,214.4389596,305.978625,204.7779462,172.4321645,327.2869821,370.0099999,184.9474332,264.6245285,193.413502,83.01144277 +431.2122508,223.8490896,328.2137611,212.062123,176.501239,351.5456044,407.6169325,191.4985709,284.8881752,201.0077455,82.74880069 +415.6157225,219.3925026,318.5523923,209.019783,175.4364331,344.9687518,399.1086442,189.7249095,279.629672,199.0378488,82.84053581 +407.8408998,218.1769325,313.1396523,211.8529378,175.6625622,351.4894332,392.9069997,188.6791631,275.895647,199.0178349,82.84520146 +429.5856578,222.753903,325.744877,210.0652241,175.222039,343.2687742,397.1707817,189.8088967,279.7283089,198.7320983,82.81023565 +406.6861897,216.8410644,310.1132683,208.4292448,173.5541393,336.6584589,375.8897988,186.1409886,267.901427,195.306511,82.94322301 +398.8446529,214.7523138,307.6035994,206.3076387,174.1311795,337.8420214,386.28961,187.3145364,272.1992201,196.5189376,82.94471911 +414.4201025,217.1474472,315.2065959,202.5270985,172.4969078,322.337172,379.2621684,186.662248,270.3473481,194.0204961,82.98196728 +445.5780796,228.3251044,338.1268417,215.9713727,178.240929,362.6473844,422.0187491,194.0917568,292.8355776,204.1817812,82.63040331 +402.4818896,217.1098375,311.4529158,211.7986536,176.6865322,357.3962684,402.2846112,190.0241434,279.9633654,200.8629377,82.82657412 +421.280569,220.5922656,321.1183086,208.8898254,175.0074835,341.7777236,395.4742211,189.3583147,278.3856677,198.3052632,82.84308758 +411.911286,217.0487443,313.8902394,204.2937136,172.8385031,326.7568097,379.4124899,186.5756925,270.0922591,194.4774752,82.96527757 +430.329896,223.2831098,326.5133278,211.2637883,175.7230916,347.1372594,400.187982,190.3402172,281.2239708,199.5807331,82.78458549 +433.5588265,225.6901947,329.591197,217.3590441,177.709958,363.9963214,409.7973716,192.0403093,285.9859617,202.8164409,82.67967906 +434.2306565,224.8147386,329.9101592,213.274134,176.7452031,353.9799627,408.5739007,191.7106662,285.4983616,201.4088414,82.72612787 +390.0871001,211.9154427,301.2258187,203.5553872,172.8867668,329.4943134,375.562685,185.5269405,266.5525704,194.2562723,83.02617557 +412.4896829,219.0359486,315.0717276,211.2101021,175.0153585,346.4310977,388.0743402,188.0478057,273.9812444,197.914918,82.85988255 +398.2295782,214.6662187,306.1444444,207.0714191,173.7600997,337.2675988,379.5615703,186.3669814,268.9402214,195.691787,82.95943114 +421.3975613,220.9296292,322.0025903,209.6959812,175.7315641,346.2909933,401.7042931,190.3577011,281.3909561,199.6146197,82.81322357 +410.3123225,218.9604112,315.2073987,212.3625938,176.1012514,353.7246824,397.365235,189.42704,278.2505871,199.8451229,82.81955699 +399.8744236,214.2650198,307.1822155,203.8093503,173.1038905,329.2363719,379.6011678,186.4001018,269.272021,194.8018873,82.99234306 +407.7769797,218.2131539,313.3732985,211.8179887,175.8225332,352.0450554,394.3363131,188.9768301,276.6917711,199.3179275,82.84150629 +420.0555736,221.1175587,320.8053816,211.8877621,176.0545106,351.2354995,399.8127644,190.0845093,280.2324053,199.971104,82.79869067 +401.1688979,216.7503417,311.4905058,211.2322241,177.0610509,358.5487262,407.687646,190.7677925,282.4618101,201.6246072,82.81693772 +408.6116556,218.973177,316.1844458,213.1108926,177.5949839,362.2430806,411.5084944,191.579654,284.8857248,202.5825248,82.76895441 +426.6350624,222.576319,326.4327974,210.858797,176.6557942,351.3365953,411.6524587,191.9285164,286.5100874,201.3826257,82.75776948 +428.8206197,222.4808685,325.5300495,209.5306989,175.222586,342.5387734,398.1168247,189.9760856,280.240557,198.7795572,82.81326796 +412.0109868,218.6819424,314.8368785,210.2637057,174.8523782,344.6076654,388.3877221,188.0608823,274.1110846,197.7012082,82.86992468 +404.5805461,215.9537531,312.1582404,205.3396921,174.7143901,338.116779,396.3007423,189.023243,277.6148434,197.8533,82.91303512 +406.9206262,218.0112946,312.3111177,212.2200197,175.5605033,351.5841926,390.571036,188.4149823,274.8472085,198.7855208,82.85110834 +408.4813966,217.5355912,314.5741792,207.9189785,175.4630941,344.7059505,399.2707994,189.6656692,279.2598901,199.0610711,82.86666729 +410.4085415,217.1110475,313.9910094,205.3875021,173.8128776,333.0558671,386.93075,187.7907614,273.6129566,196.1942761,82.93071179 +408.9305159,217.8890459,314.6307371,209.0893823,175.5149869,346.555141,397.716173,189.3897797,278.4364461,199.0424498,82.85695509 +406.0950499,216.9086795,312.0780135,208.2337434,174.7823603,342.3825521,390.6664656,188.2458016,274.8680581,197.6789626,82.89463896 +443.4823159,225.9625203,333.7511358,210.1790903,175.2041512,341.1869784,399.7577077,190.5570832,282.0960277,198.9080086,82.77571781 +421.6694355,220.7361293,321.3518845,209.1122741,175.1017174,342.4918467,396.0089296,189.4749068,278.6810517,198.469356,82.83800561 +446.4210823,227.5233634,337.7614162,212.4705691,176.8932811,351.4105274,415.0563844,193.0221854,289.7626864,201.9924213,82.69053181 +420.3463922,219.6341791,318.6572509,207.0222489,173.5336241,332.6053327,382.669927,187.3217117,272.1291934,195.6466226,82.91014698 +436.0755135,224.0098365,328.8750705,209.4718464,174.62479,338.5857311,393.4452926,189.3465649,278.4442545,197.7562125,82.81921644 +418.7779994,220.4672346,319.0755744,211.0578438,175.2673217,346.6765903,392.8433274,188.9088274,276.7188509,198.5321356,82.83388609 +446.3081382,226.5933666,334.4565286,210.6464694,174.7381845,339.1886767,394.3266547,189.7729641,279.6433304,198.0160595,82.78427949 +405.6073506,215.9467567,310.8872189,205.1737316,173.5222177,332.1614039,383.1781683,187.0448803,271.3608366,195.5709703,82.95413841 +404.6680418,217.427561,312.2043879,211.2948486,176.0925676,353.2250584,397.9604706,189.3921561,278.151985,199.835135,82.84016199 +407.6817871,216.2524223,312.0439265,204.5870106,173.1540412,329.1868795,381.7567339,186.832533,270.9225746,195.0009487,82.9604893 +411.7923168,217.7587576,314.2265681,206.9749853,173.7912073,334.9382767,383.6448455,187.3105937,272.0228857,196.0052032,82.92078133 +415.701476,219.5397681,318.1226152,209.6750898,175.3868043,345.6254571,396.4976024,189.3979328,278.3824029,198.8499908,82.84161208 +403.915465,215.7262869,309.9438237,205.8180227,173.7762387,334.5134218,383.7331482,187.2204447,271.6084707,195.9711741,82.94885225 +421.4861235,222.0455255,321.7655682,214.2842924,176.5955764,356.769417,401.1564854,190.3122967,280.8600485,200.7773847,82.76591712 +429.5833982,223.7614759,324.4200031,214.6790703,175.4384364,350.3290725,389.8219025,188.7402231,275.9537154,198.6822383,82.7878434 +410.303895,219.1757619,316.4993501,212.5821525,177.0400622,358.7181679,407.1616344,190.8558314,282.8010537,201.6018032,82.78583454 +427.4054222,223.4539134,325.6212291,214.1621382,176.7872535,356.3059272,404.8752119,191.0929994,283.244284,201.2688285,82.74261944 +440.5744585,227.8446577,336.3997859,218.1632077,179.566779,372.6595511,430.1725168,195.2850604,296.3018623,206.3777588,82.58927893 +420.359205,221.2614081,319.8016384,212.8820012,175.4656617,349.7405122,391.8719968,188.7956504,276.2908671,198.7607144,82.81530399 +413.6918224,218.7879474,315.3475744,209.3401671,174.3734764,340.7944251,385.479401,187.6184871,272.8359489,196.9044726,82.88735251 +417.4824248,220.0493683,318.5274708,210.3092065,175.1810008,345.1612842,392.8537888,188.9155418,276.7428961,198.4052493,82.84399839 +410.6275209,218.1489534,314.219304,209.1987398,174.715664,342.6092831,388.6634265,188.0604513,274.1938567,197.5142866,82.8828532 +391.5420218,213.423608,303.6773566,207.5104419,174.7719919,343.8821293,387.8274051,187.5093564,272.3921929,197.4531687,82.94152237 +409.1543219,218.5915293,314.0781071,212.1479904,175.886402,352.7542201,394.7089004,189.0271316,276.8720607,199.4272247,82.83419073 +452.1552268,230.0169921,341.9905027,216.6245821,178.2287658,362.2717682,422.5034161,194.3161489,293.6130162,204.2260688,82.60980566 +421.4584372,221.1284125,320.3792335,211.2937555,175.0272948,345.0438094,390.4907481,188.6142217,275.8555554,198.0960986,82.83322526 +435.3397985,224.9614836,329.9024583,213.1521864,176.3193883,351.6789012,404.405373,191.0697643,283.5258105,200.6237104,82.74072451 +448.6866672,228.3532597,338.7721214,213.830338,177.0142612,353.5077278,413.9319458,192.9018695,289.2907023,202.1171977,82.67522322 +402.2617825,216.8606594,309.8743993,211.6863863,175.6600092,352.2111789,391.3618335,188.3691542,274.7774294,198.9158339,82.86398555 +440.8727777,226.3507833,333.4621101,213.4061927,176.658424,352.7640863,408.5894146,191.9033866,286.0269786,201.3348921,82.7123452 +419.5895231,220.5225437,319.8943846,210.383407,175.3026232,345.6936629,394.9552327,189.2778855,277.9165792,198.6937593,82.83130775 +421.1678152,220.3942798,322.1347466,207.7799613,175.2311992,341.2817443,401.4338279,190.1863045,281.3049018,198.8978328,82.83754625 +443.4389463,227.6045335,336.3616097,215.2984573,177.7115255,359.612416,417.3759028,193.2833192,290.4128883,203.2112707,82.65818793 +431.1494028,224.6402123,329.0246484,214.9227216,177.4425109,359.9498652,412.8971568,192.2261402,287.21228,202.5473281,82.70098433 +386.4592239,211.6751677,299.763596,205.6721416,173.7647958,337.3186223,379.5081245,186.1475736,268.1732978,195.6559997,82.9979579 +422.2561924,223.0692948,324.0064782,217.0019827,178.3695049,369.0203032,414.8134586,192.4644962,287.3717833,203.8859186,82.68884767 +454.8273291,231.1356753,343.5828177,218.743349,178.9317117,368.1706405,425.7008449,194.9594496,295.2989349,205.3792641,82.5682286 +408.5792189,217.3517797,313.7464775,207.5315967,174.8519066,341.3456572,393.1664801,188.7169215,276.3058042,197.9192678,82.89065787 +429.9701435,223.221839,327.6426388,210.7747576,176.2504525,348.8655766,407.8382295,191.4411395,284.9324533,200.6636594,82.76491247 +430.7900524,223.8946359,326.9281887,213.254169,176.0872202,351.4408157,400.8451771,190.3837072,281.4137694,200.1030265,82.76085301 +417.0426708,219.9393386,319.1518041,209.9405342,175.3945932,345.7985663,397.3788291,189.4607259,278.8281206,198.8972224,82.83422812 +391.4120348,213.300276,304.1225136,206.8585882,174.9728724,343.9017426,391.4464366,188.0681238,274.1661323,197.9124924,82.93821167 +411.3214055,217.6626916,315.2794255,206.4548483,174.4961837,337.6984744,392.7930273,188.662085,276.3808477,197.4214021,82.89863577 +407.6943758,217.7143481,312.8596332,210.1151575,175.157133,346.5523207,390.8492908,188.3893004,275.0493235,198.2272401,82.87076587 +464.9232839,230.8156204,346.8333592,209.945594,175.303993,338.2541507,406.6562866,192.1329397,287.2642388,199.4979805,82.72002808 +419.7465126,220.4005661,320.4637456,209.3470592,175.2482187,343.8314735,396.8369287,189.4912702,278.8223499,198.6875955,82.837667 +423.5697362,222.5411383,322.9349484,214.4243815,176.6098832,356.7446824,401.6441797,190.4604584,281.284213,200.8403257,82.75786158 +394.9082565,214.777121,304.6622731,210.5360631,174.8192643,347.8388699,382.7173928,186.8627007,270.103171,197.2949095,82.91963279 +388.0369134,211.8802093,300.5169971,205.0814823,173.5152266,335.0898012,378.7763786,185.9514779,267.8053487,195.2584494,83.00301556 +444.2234497,227.4991618,336.2852013,214.4843819,177.2428716,356.195576,414.0675319,192.8113842,288.9471001,202.4135437,82.67549861 +380.7176305,211.2115075,295.6306321,200.3704006,173.2095936,309.2487091,356.153933,185.2486835,258.9426449,192.3271773,76.78004772 +380.0623907,212.3163793,296.0129527,204.9969203,174.7198068,323.0560563,363.1057608,186.3163037,261.9534772,194.7453457,76.69750216 +392.0340301,216.3902491,305.7772382,209.123866,177.451491,339.6446467,386.7285779,190.220211,273.9921914,199.7109308,76.53253171 +363.9979254,206.8503586,286.1235741,197.8441261,172.6244542,305.4739289,351.651116,184.1348317,255.6197113,191.2133554,76.86373607 +375.33007,209.4912175,289.7134545,199.8160841,171.6160283,302.1217482,337.6791772,182.338753,249.5959784,189.2203048,76.8747771 +356.6884552,206.5024196,281.5866242,203.2412962,173.8139715,320.6189284,349.7139879,183.8805633,253.9641605,192.7513551,76.82282333 +385.102419,211.8504204,298.3054906,199.5066755,172.9323049,305.9893893,357.644178,185.4855475,260.0884077,192.0512119,76.77976612 +377.287956,211.868504,294.709814,205.5381639,175.0588684,326.0315475,364.5597907,186.5100988,262.4305133,195.2764851,76.68995662 +392.8740707,214.0481401,302.4115166,201.0069861,173.2238682,308.2928389,357.7241414,185.7922543,260.6370338,192.4813541,76.74527015 +379.0768126,211.3188718,295.0268745,201.9952357,173.7570386,314.2405525,358.4993971,185.5919302,259.8600601,193.1805455,76.75741502 +368.3696298,209.6273648,289.9348536,204.3367903,175.0493177,326.0117251,364.085583,186.2626766,261.576637,195.2082541,76.72692192 +378.5448546,211.3923818,293.3056752,203.4835563,173.3529197,314.8335393,350.1441282,184.3822603,255.7724875,192.245279,76.76994643 +376.0700365,209.7663203,292.1834178,199.5727902,172.4564252,305.3860917,349.7712869,184.0878542,255.5330974,190.9661498,76.82863812 +388.0356837,214.043464,301.4255754,204.4448545,174.9858869,322.0636585,370.1061025,187.4826848,265.9298294,195.4845409,76.66102561 +375.4440001,210.6435202,292.4820216,202.8004142,173.7226621,316.1653238,355.0849864,185.0270535,257.9316988,192.9770699,76.76194976 +357.4810795,205.4434383,282.6119309,197.9126517,172.8536907,307.9512831,352.2855198,184.0484509,255.3568184,191.5432602,76.87032076 +362.3260106,206.197641,282.6154502,197.9188117,171.3356909,300.2148165,335.314657,181.707178,247.6333709,188.659547,76.92884649 +388.105695,213.9952233,301.0269186,204.1000739,174.7459473,320.4384855,366.964161,187.1010405,264.4955922,194.9983999,76.67862788 +374.2024897,210.1005367,292.5927958,201.5543477,173.8133198,314.7357024,359.8422024,185.5939548,260.0977645,193.3045447,76.76533555 +368.0306123,209.1911094,288.2892237,203.8343237,173.9935145,320.2204464,354.51148,184.7351613,256.9722161,193.2815138,76.76914088 +386.3775142,212.9653849,298.7767496,202.4266374,173.6438807,313.4098718,358.161942,185.6661264,260.1714645,193.0561404,76.735589 +367.8931056,208.2731067,286.2277245,200.9229965,172.2600586,308.0457815,340.0142174,182.662081,250.2839969,190.2137227,76.86271921 +360.0916862,206.2466952,283.4933894,199.2737254,172.720088,308.8306828,349.0837424,183.6211757,253.9353689,191.2081364,76.86509548 +373.3757079,208.2379174,289.9064327,196.1767181,171.378203,296.0380035,343.0508354,183.0526752,252.3051385,189.1352849,76.89996514 +400.4470981,217.7510979,309.4244812,207.4287996,176.2092671,329.7908085,379.3971365,189.2957068,271.2779602,197.6766393,76.56698069 +363.3998852,208.2856423,286.8396619,203.7081014,174.8324138,325.128611,362.101096,185.7583452,260.147074,194.7827175,76.7506031 +379.5229026,211.2363672,295.005979,201.4471839,173.4907128,312.2382035,356.7043727,185.322294,259.058776,192.7335208,76.76797039 +371.5094364,208.2231698,288.912777,197.6897811,171.6795213,299.7867412,343.4656927,183.0655037,252.2921198,189.5591653,76.88563115 +387.0154089,213.4095689,299.4257614,203.3748486,174.0465854,316.5989266,360.5331375,186.0636011,261.3157533,193.7337618,76.71081072 +390.9030123,215.7382359,302.6011789,208.5389253,175.7756808,331.0652894,368.8538242,187.6066201,265.5028613,196.5489755,76.61391294 +390.4229441,214.7213749,302.3188715,205.1017261,174.9192534,322.3599642,367.8058961,187.2488702,264.999061,195.2952237,76.65641505 +352.5098156,203.8284037,278.0903341,196.8430803,171.622116,301.6589762,339.6792022,182.0247278,248.9879308,189.2215231,76.94099446 +372.9240196,210.1634199,290.3920432,203.3873858,173.5437082,316.3521213,350.7328422,184.3653849,255.6129741,192.4988636,76.78524961 +360.1232407,206.3159458,282.5647839,199.8295153,172.4219198,308.4219115,343.2635405,182.8442226,251.1761903,190.5273615,76.87842606 +379.3153088,211.4384874,295.5952671,202.046195,174.0583276,315.870073,361.7055269,186.0595149,261.3869493,193.7616193,76.7385721 +370.4640786,209.9516903,290.1927873,204.3074673,174.4020779,322.2304072,358.3444877,185.4108822,259.0060362,194.0301134,76.74605123 +361.1458766,205.8817374,283.2481634,197.1055147,171.8556074,301.6387675,343.0795273,182.7897718,251.2732806,189.7398732,76.90914477 +368.5979323,209.3981875,288.8121936,203.8004348,174.1694595,320.88402,355.5876075,185.0127292,257.6130642,193.5812344,76.76653467 +378.5358188,211.6764622,294.7754529,203.8474789,174.3275426,320.0705573,360.0904926,185.8475893,260.4374078,194.063883,76.72442879 +361.8290962,207.8781023,286.6258249,203.2302476,175.1224793,325.9435491,366.6733952,186.3323043,262.187913,195.3864522,76.74152181 +368.7000474,209.8840837,290.8394519,204.8532779,175.6199553,329.2576276,369.9747619,187.0802476,264.3075269,196.2556236,76.69734068 +383.6120702,212.7789675,299.2301294,203.1233933,174.8512041,320.1062217,370.5174416,187.4414262,265.8898969,195.287655,76.68730083 +385.6341199,212.7228526,298.5608353,201.9432864,173.6345876,312.7568395,358.7719543,185.7614851,260.4874117,193.0701708,76.73841013 +371.7883585,209.6651003,289.8159676,202.5467972,173.3431582,314.5710208,350.7880757,184.2624682,255.5445927,192.2184451,76.7930222 +364.1667842,207.0614983,286.8987832,198.4240873,173.1525759,308.7900856,357.22788,184.8888055,258.2016575,192.225326,76.8328605 +367.4644224,209.1028381,287.7214615,204.07366,173.8883788,320.2949171,352.2615629,184.4649815,255.9707089,193.0483116,76.7741948 +368.0806494,208.5407413,289.24051,200.4990976,173.8018595,314.4162299,359.4735819,185.4193555,259.4763871,193.2505027,76.78860961 +369.6831255,208.1606681,288.7401781,198.4461973,172.4297918,304.7266752,349.2297631,183.9047107,254.8651589,190.8728829,76.84981849 +368.8537122,208.9432278,289.4751127,201.5646751,173.8948499,316.1306777,358.5245519,185.3188725,259.0434645,193.3234774,76.78097817 +366.4641458,208.1193492,287.3494566,200.8372,173.2727773,312.6269046,352.5748768,184.3692611,256.0695615,192.1735188,76.81663679 +398.4052497,215.6932543,305.6181377,202.5784002,173.6518367,311.7904748,360.4004107,186.3139773,262.201199,193.2326922,76.70312362 +379.6909526,211.31061,295.1228405,201.5912359,173.5458025,312.7520622,357.0160098,185.3693972,259.2112843,192.8309045,76.76241688 +400.7639242,216.9802408,308.9214951,204.479496,175.0604246,320.2777652,373.3168627,188.3464882,268.5870485,195.8012638,76.62331565 +378.6204266,210.3690557,292.882809,199.9029824,172.2381561,304.5617422,346.0531497,183.6374224,253.9055663,190.4965204,76.83108458 +392.5366897,214.1764205,301.7356193,202.0640307,173.213419,309.7943551,355.4187476,185.4259361,259.3861699,192.3564673,76.74615527 +377.2067143,211.0574422,293.1886027,203.1880134,173.6583477,316.1855699,354.445652,184.9022376,257.6267753,192.8617529,76.75756086 +401.095855,216.2911059,306.3517338,203.0075086,173.2767167,310.1865073,356.0012367,185.7213653,260.2903159,192.5191987,76.71190091 +366.2121468,207.3428004,286.4318979,198.3330451,172.2456864,304.2222246,346.3837018,183.4137963,253.2067788,190.4515789,76.87405776 +365.4769705,208.6235153,287.5775205,203.3617942,174.3723046,321.7253841,358.6545237,185.3209201,258.7934213,193.9811264,76.76503814 +367.9291251,207.5794667,287.3722943,197.9384869,171.9471821,301.8003528,345.4360645,183.2908167,252.9945262,190.0022282,76.88190932 +371.5107865,208.8698023,289.2592472,199.8147091,172.4614609,306.503364,346.7225795,183.6238119,253.7478101,190.7992724,76.84182634 +374.775578,210.3580945,292.4898047,202.0571125,173.7946367,315.4053475,357.4818887,185.3327803,259.0038876,193.1694965,76.76620635 +364.4256612,207.0708582,285.5090772,198.7142759,172.3807005,305.9126259,346.2836416,183.3952084,253.0806184,190.6532462,76.86687801 +380.3984655,212.6375602,295.9114334,205.9566723,174.8482663,324.9468652,361.6607709,186.1961967,261.2724555,194.8582572,76.69535948 +387.5377157,214.1162802,298.2684599,206.3420685,173.8858482,319.6145694,352.3923278,184.9603916,257.3757697,193.1342923,76.71599966 +369.9478323,209.9919659,291.0151304,204.4795761,175.1644325,326.2975985,366.6432903,186.548446,262.7531273,195.4676979,76.71335833 +385.5403771,213.8431288,299.2022751,205.82801,175.004615,324.5848836,364.5635108,186.7968813,263.1324153,195.2463902,76.67351329 +396.3550167,217.3942135,308.0573492,209.2308116,177.3271041,338.2701283,386.2394089,190.2736473,274.1289845,199.5249021,76.52836099 +378.9900345,211.8425549,294.0309538,204.7779765,173.8619459,318.898977,353.8977936,184.9096383,257.4733577,193.1222143,76.74128579 +373.2540729,209.7534949,290.2600013,201.8057922,172.9531545,311.4374921,348.446912,183.9198623,254.539052,191.5718874,76.80975162 +376.9694217,210.9604441,293.1800077,202.6121487,173.6699108,315.2368544,354.5326083,185.0177918,257.7597485,192.8718606,76.76951539 +370.9678633,209.3225215,289.4782938,201.6868565,173.2712383,313.053532,351.0806673,184.3143909,255.6663556,192.1211145,76.80644978 +354.5991954,205.3427531,280.5822149,200.1577552,173.2754242,313.9603267,350.0158394,183.7639296,253.945535,191.998812,76.86155892 +369.380922,209.600108,289.1982605,204.0659723,174.1937678,321.3599208,355.9368778,185.0201522,257.7443442,193.6352332,76.75849309 +406.4216486,219.2693152,312.8873143,208.0828962,176.2358996,329.6117506,380.1309936,189.5905524,272.1695818,197.7833661,76.54909847 +380.4653954,211.891536,294.7915875,203.4997964,173.556144,315.1839474,352.8127319,184.8363095,257.195463,192.6505052,76.76013229 +391.5526271,214.8880599,302.4083661,205.0428914,174.5797361,320.5076862,364.4418324,186.7683278,263.4632258,194.6718939,76.67053354 +403.0437562,217.7630609,309.9442065,205.6546572,175.1812105,322.1221906,372.5204797,188.3055911,268.3104,195.9430618,76.60930973 +363.7515148,208.2192299,285.8054842,203.672257,174.0171584,320.9665003,353.1231932,184.502888,256.0318208,193.2300105,76.78734418 +395.9728374,215.9591064,305.2504976,205.1799846,174.8225968,321.2990883,367.6748706,187.3547706,265.3403617,195.1914748,76.64231034 +377.6483198,211.0433225,293.7512969,202.5898197,173.6645504,315.2570325,356.0438328,185.146728,258.5024936,192.9523591,76.75479356 +378.8230476,210.9054599,295.5558974,200.6028928,173.653338,311.7073172,361.9736057,186.0068283,261.5956691,193.2103038,76.76334308 +398.8219174,217.2079731,308.0457465,206.9176566,175.7897378,327.3159571,375.6383172,188.6905422,269.3835165,196.9080393,76.59409224 +388.1522414,214.677623,301.7956628,206.6171305,175.5534275,327.5286709,371.980481,187.8374042,266.7843808,196.3519721,76.6355443 +349.8168074,203.7423904,277.0922828,198.5383056,172.3557136,308.2116899,342.7652051,182.5231793,250.2627566,190.3832684,76.91398084 +380.6735725,213.3831844,297.5980499,208.1799088,176.2945355,335.1042608,373.0400633,187.8936291,266.5609103,197.3970552,76.62156452 +408.110169,220.010489,313.9006747,209.7116175,176.7365379,334.3073174,382.4265149,189.9398689,273.2411538,198.6064404,76.50701264 +368.3950176,208.4376084,288.6624514,200.2059369,173.3106533,311.6976995,354.4552753,184.6860014,257.1096604,192.3314686,76.81164319 +386.4128838,213.2957015,300.2239,203.0339803,174.4975783,318.0069321,367.2251762,187.0110569,264.5262714,194.6628596,76.69328532 +387.7699317,214.0212789,299.9628974,205.1576889,174.3943086,320.3371886,361.5887698,186.2448332,261.8046117,194.2612517,76.69033754 +375.8403744,210.6625613,293.3255415,202.4012424,173.816827,315.6043262,358.6690381,185.4803498,259.6409956,193.2584039,76.76099291 +354.1589367,205.15717,280.7894122,199.5774434,173.4104529,313.8462465,352.8501901,184.1423905,255.2667819,192.3240079,76.85752058 +370.1698965,208.5428168,289.6531539,199.363221,172.9861559,308.5277238,354.3234855,184.6267019,257.23353,191.8884189,76.81911009 +368.0532187,208.8487289,288.1318265,202.363061,173.5794437,316.1267392,352.6123211,184.4753396,256.1817431,192.61953,76.79349081 +416.9233743,219.7958053,316.793029,202.5632943,173.7733096,309.5294977,366.6621585,187.7297566,266.8293512,193.8003593,76.65200509 +378.4807569,211.142764,294.5867032,201.8706801,173.7208876,314.0670739,358.0547916,185.4990517,259.5539329,193.1056231,76.76352862 +381.7620531,212.9308592,296.6786541,206.0164762,174.8100318,324.751007,361.8577126,186.2258688,261.4687274,194.8292802,76.68644624 +357.7087097,206.5240787,281.5603212,202.7054227,173.3230707,317.3639765,345.9629101,183.3023301,252.2319613,191.9004499,76.84076609 +350.8883079,203.8349958,277.5537155,198.1330908,172.1636921,306.3919196,342.5042322,182.4204435,250.1189421,190.0907842,76.91939451 +399.2185288,217.0445173,307.8338193,206.1845821,175.36638,324.3392398,372.6308117,188.2261613,268.0137275,196.1843417,76.60954184 +433.0270512,224.7232969,328.958885,211.2888058,177.2776352,345.431312,404.4343881,192.5307247,284.4755349,201.2723745,83.45716305 +431.748948,225.9891544,329.2199566,217.0598994,179.1881639,362.4601947,412.7880001,193.8417064,288.1127442,204.3067467,83.36744675 +446.0370292,231.0531517,341.0790503,222.2774623,182.5931791,382.713283,441.8410466,198.8146236,303.2204299,210.5080481,83.19150137 +413.0511535,219.3618291,317.4276149,208.1379938,176.5374601,340.7904725,398.9095314,191.1328076,280.3797591,199.8617745,83.54511399 +425.2173381,222.2876558,321.0168722,210.4829478,175.218963,336.149744,381.0832308,188.6822887,272.4184863,197.2456708,83.55655618 +402.503258,218.5421844,310.9159846,214.9004457,177.9879246,359.0168893,396.4937432,190.7027205,278.1538603,201.7013365,83.50061114 +439.1138167,225.7193495,332.6712845,210.115943,176.9856717,341.6607465,405.8273222,192.8273472,285.6946619,200.9822532,83.45509966 +428.2962709,225.431397,327.5594876,217.80672,179.6168093,366.0797166,414.8461133,194.1397402,288.8716902,204.9888626,83.36020257 +447.2913608,228.1113132,337.0354201,211.9529335,177.2632225,344.0886076,406.0462525,193.1123193,286.3253947,201.4056323,83.41925753 +430.3759026,224.6618196,327.8926108,213.2167071,177.9222854,351.4106713,406.9777067,192.8369468,285.3546146,202.257195,83.43075456 +417.3531125,222.6372741,321.5738403,216.4111362,179.5963009,365.9411689,414.7078145,193.9009742,288.061677,204.9085468,83.40073028 +429.413085,224.7280429,325.597469,215.1781635,177.457641,352.1351011,396.9773392,191.3863637,280.4204605,201.1517992,83.44604108 +427.530817,222.9736174,324.8309789,210.1570216,176.3595523,340.675048,396.0163506,190.9971328,279.9190208,199.5663735,83.50582182 +442.0474455,228.2936692,336.2088933,216.3657906,179.5522783,361.4865872,421.1751281,195.3261662,292.9950278,205.2732509,83.32811829 +426.299759,223.9736051,324.9159024,214.4398648,177.9563808,353.9883288,403.4208438,192.3165839,283.3860063,202.1419128,83.43835659 +405.6960281,217.7911978,313.3831068,208.4179162,176.8932575,344.1414978,400.1266551,191.1902817,280.3977682,200.3913806,83.55421319 +409.7211463,218.270981,312.3817097,208.2571429,174.878195,333.9069142,378.6080963,187.966386,270.2501865,196.5765535,83.61458104 +441.3456234,228.0158779,335.2833652,215.908209,179.1854767,359.1468809,417.5149889,194.7915006,291.2298265,204.5805893,83.34772151 +425.4216703,223.4142666,325.4167514,212.7503307,178.066451,352.3662339,408.695081,192.9533587,285.7989455,202.5207903,83.43932062 +417.3091699,222.163102,319.7842852,215.6640109,178.2962973,358.9678635,402.3242743,191.8861496,281.985841,202.4954599,83.44408197 +439.7257947,226.8806717,332.7775114,213.8349962,177.8465518,350.6137032,406.7003911,193.0416209,285.8993283,202.2088839,83.40947642 +416.1352315,220.7867735,316.6160498,212.0710649,176.0631242,343.563786,384.7612015,189.2279849,273.6999023,198.5757022,83.54588912 +408.1476405,218.5930142,314.1220942,209.8859953,176.6804196,344.9102383,395.410459,190.4400093,278.0948913,199.8609575,83.54462625 +424.3062962,221.0816649,321.9823957,205.9622834,174.9573827,328.9394768,388.1421325,189.7380139,276.1432186,197.229185,83.5845156 +455.9579018,232.5986216,345.4131763,219.9700806,181.0132447,370.6453862,432.3135256,197.4715509,299.3974087,207.9029942,83.22692414 +411.8930199,221.1157973,318.0967895,215.6466616,179.3537646,365.0402066,412.0494393,193.2851408,286.2389575,204.4057718,83.42606303 +431.2099554,224.6514796,328.0140083,212.5968592,177.6137831,349.038249,404.9692756,192.5673324,284.5054511,201.7464382,83.44324332 +421.57025,220.930478,320.5582009,207.7685652,175.326141,333.4922004,388.2701899,189.6484201,275.8510975,197.7189578,83.56629715 +440.5129728,227.4548492,333.5799273,215.0981513,178.3702833,354.6017608,409.8611372,193.602511,287.483384,203.0976299,83.38387826 +443.5339417,229.8934923,336.5786297,221.3616199,180.4459762,371.8785275,419.7859468,195.3587139,292.3764836,206.4634787,83.27773795 +444.4403643,229.0127797,337.0404861,217.1811713,179.4475177,361.6878305,418.4965812,195.0206629,291.8759336,205.0136951,83.32400439 +399.3399463,215.7279714,307.6384836,207.0556737,175.3512866,336.2614654,384.3802647,188.5856426,272.3139077,197.4656018,83.62856853 +421.9224018,222.9880926,321.6524893,214.9281418,177.6132094,353.6892754,397.2868271,191.201976,279.9207262,201.3210393,83.45996361 +407.4824453,218.5232964,312.5803135,210.66623,176.2817855,344.2380863,388.5057613,189.4610639,274.7538541,198.9820917,83.56088428 +431.4258351,225.0498454,328.9810579,213.4787785,178.3704311,353.7214258,411.4510174,193.6171933,287.6662409,203.1185948,83.41327345 +419.7986417,222.9575788,321.8759614,216.1775742,178.7568836,361.2696671,406.9349508,192.6538815,284.3958752,203.3550443,83.41848645 +409.3599817,218.1448725,313.7340469,207.3081895,175.58545,336.0028278,388.5583053,189.4860101,275.1025284,198.0398046,83.59520951 +417.2144598,222.2089126,319.9817772,215.6116831,178.4536538,359.4874855,403.8420775,192.1851695,282.8065104,202.7888302,83.44181949 +429.9286142,225.2331902,327.6894959,215.7328895,178.7067468,358.7509438,409.4998214,193.3415273,286.4843867,203.4910673,83.39848477 +410.6485843,220.7662814,318.2053144,215.0929907,179.7473169,366.2956698,417.6350329,194.0582355,288.8325595,205.2045349,83.4157996 +418.1882079,223.0392923,322.9617409,217.0165984,180.3116692,370.0852982,421.592067,194.8950058,291.3123886,206.206243,83.36775042 +436.7205998,226.7006597,333.5119807,214.6806139,179.3513158,358.9970028,421.6399984,195.2345396,292.8917661,204.9784172,83.35555183 +439.0292156,226.6323594,332.5947623,213.3008001,177.8434453,349.8714719,407.7279637,193.2184767,286.4577948,202.2546048,83.41321124 +421.5858305,222.6645573,321.5096622,213.9962792,177.4469891,351.8740462,397.6331028,191.2311796,280.1034162,201.1132718,83.46969403 +414.3168811,219.9191216,318.962787,208.9681199,177.290156,345.3177648,405.8027284,192.2207462,283.7492532,201.2603579,83.51313904 +416.4086517,222.0311721,318.9386253,216.0584948,178.1815624,359.0322595,399.9823707,191.6182993,280.9495039,202.2451995,83.45111126 +418.253309,221.5773531,321.3949176,211.6473516,178.0752078,352.0576954,408.9496636,192.9017028,285.4956551,202.5241579,83.46748686 +420.2471993,221.1061455,320.7877305,208.9884917,176.3455608,340.0367799,396.1612271,190.9424297,279.6126078,199.5236483,83.53231412 +418.5367651,221.8763295,321.3635284,212.8101537,178.1385142,353.9349607,407.2917472,192.6076927,284.5862007,202.51005,83.45676288 +415.6266935,220.859239,318.733738,211.9106162,177.3674017,349.6066467,400.0073513,191.4198884,280.8979759,201.0809721,83.49494976 +453.9684016,230.1752099,340.9813954,213.9538789,177.8325562,348.5013668,409.3634063,193.8073,288.3154547,202.3966594,83.37504287 +431.6635971,224.8256788,328.2848471,212.849134,177.7118939,349.7856025,405.5494975,192.6963291,284.8417486,201.9211658,83.43826531 +457.0097244,231.8075739,345.1228123,216.3681195,179.6045898,359.1110505,425.1821599,196.3649534,296.2480332,205.6220374,83.28855539 +430.2399973,223.6342583,325.4756672,210.6352295,176.0653204,339.5489041,391.6803346,190.4466088,278.0103783,198.9634809,83.51066037 +446.2205309,228.0983254,335.8892273,213.1579718,177.2231028,345.7555772,402.7743133,192.5348558,284.4759145,201.1808747,83.41846212 +428.592946,224.5303926,325.9113058,214.8558625,177.8884483,354.0635254,402.2456308,192.1206237,282.8246949,201.9966409,83.43303588 +456.7946661,230.7962906,341.6631742,214.4143784,177.3491616,346.4285491,403.7468998,192.991246,285.7597881,201.4686354,83.38341204 +415.1281659,219.8348727,317.4890723,208.7003373,176.0374258,339.0406235,392.2188766,190.1497704,277.2158156,198.8574341,83.55574474 +414.0917523,221.4086163,318.8354917,215.0926957,178.7401028,360.7529951,407.5802539,192.6215251,284.3263083,203.3367025,83.4396896 +417.2191749,220.1080257,318.6587283,208.0715279,175.6588184,336.0049433,390.7159023,189.9170359,276.7157744,198.2677649,83.56121843 +421.4798961,221.7214762,320.9241013,210.5861843,176.327842,341.922667,392.7420323,190.4385092,277.928359,199.3263303,83.52202832 +425.471564,223.5789458,324.9358826,213.416463,178.0074552,352.9785891,406.0418768,192.616516,284.5288983,202.3133103,83.44164678 +413.5834601,219.7061856,316.6156192,209.4387739,176.2976895,341.4813081,392.9170233,190.3591838,277.587251,199.2804684,83.55142783 +431.166236,226.1183611,328.5549625,218.1546892,179.2777158,364.4024554,410.8231127,193.5646054,287.0618482,204.3299487,83.36458635 +439.3790946,227.8422987,331.2261833,218.5290652,178.0740239,357.7554142,399.0706049,191.9297362,281.9538082,202.1516755,83.38631936 +419.8311102,223.1893137,323.2506392,216.437415,179.7413026,366.4644489,417.0036273,194.1380638,289.0989331,205.1955178,83.38350923 +437.3220901,227.6062085,332.5428756,218.0543671,179.4756934,363.9529897,414.7246267,194.373172,289.5495491,204.8395692,83.34213207 +450.7797674,232.1181306,343.6191926,222.2418848,182.3864745,380.9049574,440.7220352,198.7078329,302.989793,210.1754399,83.18540951 +430.0579122,225.301938,326.5727997,216.705079,178.101447,357.1858722,401.2106787,191.9981591,282.3435757,202.2380899,83.41368499 +423.2923401,222.7533803,322.0205119,213.0236288,176.9447762,347.9393708,394.5909789,190.7633924,278.755476,200.27764,83.48728926 +427.1672283,224.071362,325.2636971,214.0304091,177.7874592,352.4324896,402.2625926,192.1045428,282.7992009,201.8360883,83.4446639 +420.1276517,222.0964418,320.8397839,212.8666449,177.2973576,349.7860915,397.9047804,191.2154449,280.1543481,200.9016449,83.48342266 +400.6264882,217.2684361,310.0515681,211.1356632,177.3342237,351.0373372,397.0965493,190.6502766,278.355681,200.8123407,83.54327397 +418.6476446,222.6008581,320.7341844,215.9695467,178.5258079,360.2468598,404.1991658,192.2452462,283.0011938,202.9153777,83.43366441 +462.5781389,234.2852556,349.3079724,220.6119181,181.007737,370.2716898,432.7606626,197.6873893,300.1323428,207.9521334,83.20550777 +431.162502,225.1456441,327.1254603,215.028312,177.6355373,352.3227563,399.7902834,191.7886463,281.8481846,201.5229244,83.43295225 +445.5034862,229.1314021,336.9914616,217.0273183,179.0045347,359.2959581,414.1572855,194.3506986,289.8073479,204.1953547,83.33849476 +459.2145016,232.6293843,346.0990847,217.7503896,179.734759,361.2482499,423.9976053,196.237676,295.7367472,205.7548288,83.27272472 +411.5318355,220.8059494,316.3835385,215.4693306,178.2805149,359.6317407,400.7430679,191.5580091,280.8307454,202.3676384,83.46399081 +451.2972998,230.6147571,340.709354,217.3393086,179.3569235,360.4550319,418.5292644,195.2244549,292.4426564,204.9414348,83.31044506 +429.5416295,224.6242837,326.8113291,214.1892701,177.9246032,353.0924294,404.4747943,192.5077641,284.0937821,202.1667999,83.43083923 +431.1305727,224.4229717,329.1007881,211.4612079,177.8557441,348.6151218,411.0507717,193.4157171,287.4815787,202.3766494,83.4359457 +453.6961674,231.8217799,343.5617681,219.2402344,180.4632459,367.4979769,427.4955936,196.6272299,296.8616272,206.8913127,83.25474548 +441.0406772,228.7412199,336.0164246,218.8272449,180.1855141,367.8140703,422.8504676,195.5371967,293.5532224,206.2049622,83.29671545 +395.5705049,215.5096369,306.1072238,209.26364,176.2689084,344.2850825,388.535426,189.2438041,274.0429643,198.928266,83.60057607 +431.9943136,227.2119753,330.9004004,221.0180298,181.1320088,377.0526073,424.9363916,195.8094336,293.8365388,207.5797902,83.2860239 +465.4473271,235.510921,351.0304176,222.8750726,181.7379284,376.3763319,436.1323418,198.3824227,301.9808086,209.1644759,83.16347355 +418.2755466,221.3542925,320.4969345,211.2125081,177.4353994,348.5565319,402.6110498,191.9114037,282.4118431,201.3288705,83.49168826 +440.161533,227.3733782,334.7623988,214.5989408,178.9280883,356.4510954,417.7140698,194.7336632,291.2755587,204.2321878,83.36298678 +440.7645233,228.0030888,333.9021772,217.106248,178.7630712,359.0225733,410.4542815,193.6373675,287.6054181,203.652206,83.35822849 +426.7129056,223.9164401,325.9388116,213.6565303,178.0285822,353.1863268,406.8542515,192.6687879,284.9141935,202.3767926,83.43225971 +400.6174353,217.183463,310.5785861,210.4983313,177.5422182,351.0989959,400.8695097,191.236448,280.2267812,201.2933595,83.54022814 +421.1539793,221.6623211,322.1216694,210.1083969,177.0695355,344.8688281,402.1762368,191.849421,282.463929,200.819609,83.49863272 +417.2342391,221.7072966,319.5155732,213.867362,177.7597367,353.8753936,400.2354381,191.5789837,281.1179145,201.6566832,83.47113719 +475.8626986,235.1058285,354.3549077,213.7024018,177.948472,345.5679331,416.3965612,195.4078667,293.5468373,203.0213135,83.31791463 +429.5145201,224.4138654,327.2814646,213.0398856,177.8657874,351.1254551,406.3192285,192.6957068,284.9145263,202.1414843,83.43732606 +433.4123606,226.6695135,329.8212588,218.3412631,179.296035,364.4214721,411.3721951,193.732992,287.5520103,204.4081033,83.35640851 +403.9186087,218.6277761,310.9808581,214.2406788,177.3903856,355.0584226,391.7778776,189.9850439,275.9724317,200.6582061,83.52024355 +397.1251438,215.6669352,306.8653753,208.6248168,176.0152178,342.0113599,387.6838116,189.0303283,273.6005219,198.5205798,83.60438597 +454.61784,231.7512117,343.5427926,218.4257563,179.9735233,364.0017437,424.1409186,196.1495291,295.394625,206.0646476,83.27270816 +393.1203384,212.6130196,302.6866471,201.1004368,172.0969543,317.2267261,367.3672926,184.910625,263.5486774,192.5037096,78.73339728 +392.4477675,213.7703766,303.0948794,206.0128275,173.6912816,332.0134015,374.6586678,186.0189927,266.6982576,195.0527998,78.65166319 +405.0457893,218.0837102,313.4789443,210.3894443,176.6056892,349.779068,399.8926898,190.2495891,279.6720876,200.3641851,78.48690987 +375.4420595,207.9856516,292.5664081,198.4460842,171.4843315,313.1807747,362.6005224,183.726811,260.0083611,191.3276409,78.81654289 +387.1297859,210.7322583,296.2174528,200.5421426,170.3911151,309.4468907,347.4895704,181.7293262,253.4096421,189.161528,78.82650975 +367.3318429,207.4805563,287.5033459,204.2329603,172.7270047,329.3159059,360.4683758,183.3920308,258.1390774,192.9215299,78.77511919 +398.1171655,213.4177003,305.714393,200.1249394,171.8162957,313.7602729,368.7980367,185.1651579,264.702319,192.2133702,78.73457623 +389.4226784,213.2627013,301.6670328,206.6128036,174.0593682,335.2138641,376.2928864,186.2487795,267.2589171,195.6332764,78.64393107 +405.929785,215.6242972,309.8753478,201.7317779,172.0950995,316.1400105,368.9473817,185.4604469,265.2992443,192.6427089,78.69838978 +391.287716,212.691126,301.9841364,202.8137329,172.6540499,322.5032863,369.7584415,185.2265826,264.4476861,193.3721807,78.71041498 +379.7936485,210.8254659,296.4868396,205.3838862,174.0626388,335.2011304,375.9571112,186.0235243,266.4364278,195.5865701,78.68026351 +390.6167492,212.7355732,300.0937868,204.4349259,172.2429048,323.1712785,360.8866333,183.9454673,260.0834213,192.3981095,78.72298139 +388.4092142,211.1623568,299.1069093,200.22244,171.2997699,313.0425919,360.3691531,183.6348876,259.7837544,191.0374318,78.78261477 +401.1206444,215.6860501,308.9845804,205.3896256,173.9816975,330.9983189,382.0609272,187.2812784,270.9476667,195.8488171,78.61612975 +387.4395897,211.9633572,299.2804758,203.7245996,172.6530012,324.6726533,366.2719474,184.6824586,262.4824627,193.2082013,78.71541031 +368.6208257,206.5004999,288.8689591,198.5627965,171.7610839,315.9512384,363.3889201,183.6911256,259.8096776,191.7248077,78.82396028 +373.2895763,207.2054532,288.6176784,198.586528,170.1131569,307.4666796,345.1276584,181.0918828,251.4004451,188.5998295,78.87968855 +400.8627254,215.5351076,308.3949641,205.0425292,173.7113089,329.1879721,378.809996,186.8626635,269.4438232,195.3212559,78.63218569 +386.4326092,211.4829441,299.5466805,202.3472144,172.7384906,323.1224083,371.1814678,185.2617321,264.7215385,193.53083,78.71973867 +379.7320323,210.4545527,294.86446,204.8159317,172.9321759,328.9845514,365.5195369,184.332287,261.3664206,193.5042845,78.72332735 +399.1837987,214.4988679,306.0733942,203.2668817,172.5564475,321.6871257,369.4108741,185.3404319,264.8116182,193.2691523,78.68978831 +379.0790173,209.3592872,292.4085425,201.780813,171.0965225,315.8846085,350.2088024,182.1244118,254.2613494,190.2592823,78.81423319 +371.4252146,207.3817515,289.8027777,199.962354,171.5844047,316.7505112,359.7249371,183.1432821,258.1164062,191.302143,78.81864055 +385.3318351,209.4867744,296.5763791,196.6548467,170.1650756,303.0202412,353.401597,182.5704999,256.4498507,189.1211347,78.85217406 +413.9885271,219.5514426,317.3623803,208.5314904,175.2579499,339.1852961,391.9129377,189.1871554,276.6323496,198.1539914,78.52121509 +374.7703795,209.4679337,293.3026639,204.7161927,173.8386049,334.2866683,373.7601925,185.4795513,264.8712127,195.1315314,78.70506911 +391.7985415,212.6167449,301.9875731,202.2425411,172.3841744,320.3978068,367.8998089,184.9634783,263.6307704,192.91712,78.72115093 +383.3615516,209.469481,295.5124475,198.2455678,170.4674098,306.9786921,353.6960145,182.5336397,256.3326724,189.5365849,78.83787818 +399.8295057,214.954746,306.7559651,204.291558,172.9927982,325.1400732,372.0034085,185.7864824,266.0803944,194.0064482,78.66508657 +403.5504431,217.2973686,309.9235558,209.7581497,174.7946705,340.4948355,380.7797207,187.3739533,270.4770779,196.9518272,78.56682044 +403.469337,216.3529208,309.8491673,206.0979173,173.9056923,331.2874167,379.6562927,187.0271357,269.9669967,195.6453269,78.61085625 +363.3052262,204.7919207,284.0132134,197.4504493,170.4610539,309.1755338,349.8766636,181.5038422,252.9363422,189.2546477,78.89382212 +384.5195399,211.3858471,296.89735,204.3280533,172.4163834,324.690413,361.427401,183.8750768,259.8424318,192.6225021,78.73732509 +371.1593097,207.3648898,288.6631873,200.5995664,171.2675367,316.3046688,353.598837,182.3135709,255.1913559,190.5844224,78.83088311 +391.6617827,212.8465024,302.6677133,202.8979503,173.0065361,324.3698393,373.321913,185.7962593,266.1960498,194.0427686,78.69241915 +382.1699864,211.2179311,296.8209053,205.3034458,173.3461469,331.083641,369.5946449,185.0319187,263.5263568,194.2783192,78.69949749 +372.2906617,206.9309031,289.4318302,197.7078293,170.6848438,309.0910442,353.5304303,182.3069163,255.3940312,189.783426,78.86142868 +379.9957096,210.5746524,295.2548321,204.7976575,173.1061888,329.6392358,366.7650589,184.6267313,262.0900848,193.8170525,78.71928419 +390.7146242,213.0616415,301.7271451,204.8275885,173.2910745,328.8437241,371.5943031,185.5587702,265.1650212,194.3586434,78.67826947 +373.2985071,209.0842899,293.1799777,204.2000439,174.1566861,335.216588,378.6140742,186.1128648,267.06779,195.7863708,78.69662064 +380.3600223,211.1527267,297.56101,205.9045285,174.6593473,338.685284,382.1145758,186.8790439,269.307176,196.6826239,78.65145496 +396.4001762,214.3281995,306.623753,203.9842019,173.8302559,328.8734028,382.5150376,187.2302351,270.9044229,195.6304064,78.64191357 +398.3739014,214.2288662,305.837157,202.768988,172.5549829,321.0227493,370.1495348,185.4675514,265.2051611,193.3028269,78.69230727 +383.5998686,210.9391501,296.4386483,203.4390302,172.2323531,322.8903764,361.5431599,183.8139155,259.827832,192.3643836,78.74643924 +375.9724293,208.303858,293.5767693,199.0523599,172.0753651,316.8516726,368.5180908,184.5770699,262.7924283,192.4371193,78.78771098 +378.9644976,210.310353,294.1814501,205.1028398,172.8357729,329.0943321,363.2436407,184.0745363,260.3565845,193.2840578,78.727878 +379.8154381,209.7770586,295.9221778,201.2909801,172.7541794,322.8641275,371.0282813,185.1466426,264.2084961,193.5257674,78.7426977 +381.5334681,209.4002467,295.3944833,199.094749,171.2965365,312.4475145,360.0569364,183.5100227,259.2348151,190.9919789,78.80325341 +380.5771726,210.1885374,296.1279753,202.3927637,172.8212617,324.5985663,369.8609051,184.9701725,263.6293353,193.5516052,78.73463983 +378.0321113,209.3148288,293.8525884,201.6322247,172.1669117,320.8452062,363.522886,183.9553086,260.4434815,192.3343577,78.77003606 +411.8306442,217.3862414,313.3178798,203.3973887,172.5569466,319.9209861,371.7845511,186.0260504,266.9738243,193.4502793,78.65698396 +392.0190646,212.7051189,302.1384894,202.407304,172.4549152,320.9934296,368.2802221,185.0372262,263.8307187,193.039576,78.71590769 +414.4030931,218.7606236,316.8770396,205.4073254,174.0524875,329.0516788,385.5329966,188.2063617,273.8133596,196.1861138,78.57739337 +390.9143513,211.7407207,299.7587406,200.6024911,171.0662821,312.1591292,356.4811104,183.1591462,258.0800496,190.544102,78.7843635 +405.5010699,215.746776,309.1080197,202.8396015,172.0668728,317.6726543,366.3491063,185.0200338,263.8636642,192.4749245,78.69920856 +389.4777881,212.4610021,300.115873,204.1112548,172.5807085,324.6799524,365.4594285,184.5256754,262.0880141,193.0686372,78.71197886 +414.6046617,218.0043397,314.0568764,203.8397354,172.1489723,318.1615949,367.009368,185.361701,264.8646846,192.6727859,78.66536761 +377.6659624,208.4861103,292.8260231,198.9696871,171.0719184,311.78056,356.920836,182.9253676,257.3759232,190.4982592,78.82636803 +376.9126794,209.8104667,294.0533148,204.3233631,173.3289565,330.5875992,370.0122787,184.968291,263.3575352,194.249676,78.71862898 +379.5757286,208.7766169,293.8698144,198.5104543,170.747122,309.1361014,355.7979085,182.7667744,257.0783325,190.0019196,78.83400957 +383.2678216,210.0969571,295.8353772,200.5405108,171.3015768,314.2491691,357.2765453,183.1496786,257.948849,190.8699141,78.79436391 +386.7704851,211.6741448,299.3047802,202.9112038,172.7123495,323.8113406,368.7557808,184.982921,263.5883374,193.3873009,78.71962168 +375.7973965,208.1863603,291.8602084,199.4275131,171.2572339,313.7499561,357.0274549,182.9861455,257.3770919,190.780056,78.81975355 +392.5288533,214.0311439,302.8355674,207.0334981,173.8052443,333.938358,373.0864569,185.8506645,265.9240779,195.1410731,78.64846742 +400.0501818,215.6065254,305.3196716,207.4193178,172.778113,328.1866064,363.065087,184.4920338,261.6580444,193.2890925,78.66899293 +381.8656489,211.3315409,297.8198283,205.4762582,174.1644848,335.4841931,378.4091409,186.2680885,267.5496412,195.8157687,78.66818174 +397.8498008,215.2789819,306.2962681,206.9045351,173.9795109,333.5742383,376.2967845,186.5249689,267.9880713,195.5773383,78.62600213 +409.5801616,219.140762,315.8691096,210.4629216,176.4445857,348.2387561,399.2261145,190.2421861,279.7070609,200.1205637,78.48248631 +391.2619247,213.2619562,300.9429944,205.7782442,172.7737902,327.5068433,364.7546091,184.4804523,261.831663,193.3069869,78.69520882 +385.1471037,211.0429278,296.9083515,202.6427107,171.8146061,319.5048896,359.0118342,183.4378534,258.731209,191.6696616,78.76300505 +388.8144477,212.2380666,299.8920969,203.5053623,172.5600837,323.543313,365.5870519,184.6105637,262.2189191,193.0439237,78.72173611 +382.5559776,210.5286677,295.9891362,202.5277839,172.1401786,321.2044333,361.8712851,183.8527418,259.9570704,192.243873,78.7588528 +365.1937441,206.2819359,286.4933075,200.9700098,172.1724375,322.2503773,360.9043877,183.3146569,258.2124361,192.1548483,78.81395993 +381.0247263,210.8490821,295.7679764,205.0720471,173.1422501,330.1883948,367.0948112,184.6441156,262.2226082,193.8827248,78.71231496 +420.2347453,221.1497031,320.9904084,209.1826864,175.2654246,338.9223636,392.5602794,189.4505699,277.4845138,198.2321154,78.5028709 +392.5499076,213.2391455,301.6160567,204.4180923,172.4265611,323.446232,363.6192373,184.3775916,261.5281432,192.7824435,78.7123044 +404.6255509,216.5246755,309.9159579,206.0220389,173.5352976,329.2598192,376.0078713,186.4867377,268.2740316,194.9637768,78.62483637 +416.7245224,219.5673087,317.9128332,206.6419529,174.1681224,330.9796474,384.6136858,188.131045,273.4630972,196.3151639,78.56318374 +374.9582319,209.3490838,292.0889364,204.6712615,172.9507826,329.7366505,364.1067421,184.0798504,260.3793607,193.4446864,78.74058238 +409.3610457,217.6822188,312.9897694,206.1861366,173.8179162,330.1894021,379.5723303,187.168789,270.3773381,195.5585942,78.59705964 +389.9966574,212.4581525,300.7517632,203.484301,172.6011736,323.7448293,367.2397875,184.8200621,263.0816688,193.1902041,78.70929845 +391.3913713,212.3730382,302.7345969,201.2977158,172.5636313,319.8505692,373.3899705,185.6930947,266.2880286,193.421191,78.7178062 +412.2195481,218.9611172,315.8572171,207.9757543,174.7981877,336.4885488,387.8475819,188.5064537,274.5495262,197.3123604,78.54798869 +401.0795205,216.3110353,309.253971,207.657952,174.5449773,336.7098223,383.8774339,187.572097,271.7164389,196.7058009,78.58986136 +360.2576617,204.6253903,282.8423493,199.2831877,171.2392888,316.2094219,353.2586091,182.0444212,254.3325998,190.4940967,78.86663447 +392.9945521,214.8665333,304.7278493,209.3970652,175.3579035,344.8736756,385.2404946,187.7047165,271.6343661,197.8654201,78.5758753 +422.2302338,221.9995187,322.2036677,210.9510744,175.8422421,344.0817063,395.1271029,189.9086429,278.7569903,199.1727787,78.46216911 +380.0795151,209.6564514,295.2642816,200.9754585,172.2224308,319.9014885,365.6333421,184.3355722,261.6344768,192.5308612,78.76533121 +399.3690896,214.8839426,307.6895275,203.8939634,173.4627439,326.6439327,379.0301447,186.7818924,269.4626277,194.9773656,78.64801411 +400.6322902,215.6057107,307.3029562,206.1382541,173.3305447,329.0441968,372.8976854,185.9005398,266.4465007,194.5088053,78.6445653 +388.0761789,212.0614869,300.2606745,203.2221215,172.7191946,323.9605857,369.8136283,185.0864164,264.1408035,193.4423332,78.71491211 +364.8087793,206.1051111,286.7662532,200.3603474,172.3344184,322.1986073,364.0128179,183.762844,259.6952582,192.5314419,78.8104512 +382.2457043,209.8609164,296.4674109,200.0442706,171.8878901,316.534753,365.3920443,184.2749038,261.7270114,192.0640541,78.77373153 +379.6077191,210.0517842,294.631822,203.2698176,172.4954527,324.6035871,363.5978229,184.0737603,260.5765583,192.8144205,78.74682172 +431.4230611,221.779669,325.1947063,203.2913433,172.6677795,317.4173585,378.2701713,187.4956114,271.7998009,194.0205023,78.60591472 +390.6374745,212.5043161,301.5015418,202.6821726,172.6128301,322.2968006,369.2650316,185.1200324,264.1073563,193.2859623,78.7166211 +394.116766,214.3851631,303.7390933,207.1070758,173.7883354,333.8131683,373.3597377,185.9242643,266.1906022,195.145261,78.64031965 +368.4845258,207.5336191,287.5115595,203.6645116,172.2123614,325.8399489,356.4360812,182.7748987,256.2724833,192.0216831,78.79332816 +361.6052978,204.7960985,283.4393,198.8128995,171.0220431,314.2068981,352.8247292,181.8987284,254.0994175,190.153987,78.87256886 +412.7003009,218.8042372,315.6768792,207.2132305,174.3653419,333.3602859,384.7233701,188.0444939,273.1427085,196.5705255,78.56358664 +409.210051,217.274358,313.087928,205.131445,174.1769811,328.6470192,382.074072,187.8367062,271.6833796,195.9759912,81.73158299 +408.5094384,218.4970414,313.5518113,210.3494846,175.891078,344.3278789,389.7560291,189.0124647,274.9975954,198.705695,81.64421805 +421.7361657,223.054986,324.5309949,214.9740558,178.9931285,363.0034711,416.4522802,193.506778,288.7222409,204.3591439,81.47207931 +390.6725122,212.402796,302.4338442,202.3452454,173.5342139,324.4217681,377.0432825,186.5859446,267.9583882,194.7345983,81.81820223 +402.651041,215.2425913,306.1344086,204.5199391,172.3386565,320.3404041,360.9222789,184.4355723,260.9004787,192.3749528,81.82860477 +381.8592163,211.803578,296.9758216,208.4746272,174.8613441,341.4597076,374.7929599,186.2114732,265.9386237,196.4184598,81.77407153 +414.6728593,218.1712113,316.3488582,204.1017489,173.8862438,325.0203745,383.5134201,188.1011873,272.8689339,195.6858955,81.73066685 +405.2701572,217.9445783,312.0166516,210.9814477,176.28668,347.6946747,391.5303173,189.2564387,275.5942452,199.328256,81.63666587 +422.601756,220.4409144,320.6434181,205.775424,174.1580884,327.4402049,383.6693512,188.4111522,273.5091949,196.0987937,81.69480553 +407.2239081,217.3494076,312.3581999,206.9546443,174.7686893,334.2388903,384.5427099,188.1706883,272.6301563,196.8884724,81.70651405 +395.0391969,215.3440628,306.4912768,209.6835321,176.2934554,347.6563742,391.2725525,189.0190947,274.7459211,199.2819147,81.67578871 +406.3765566,217.3542696,310.2602122,208.645496,174.3338429,334.9102415,375.184753,186.7963525,267.9707585,195.8567207,81.72009786 +404.381051,215.7800396,309.3573979,204.2166308,173.334957,324.2578067,374.6025397,186.4798727,267.6814297,194.4252407,81.78047191 +417.7928241,220.5589854,319.8335406,209.7002901,176.2031064,343.2777576,397.5467743,190.3541942,279.486525,199.563859,81.60637157 +403.135697,216.5575196,309.4403956,207.9087985,174.7831534,336.5321363,380.954865,187.5895286,270.5364845,196.7426977,81.71249453 +383.5510283,210.8327708,298.5201292,202.4812056,173.8488887,327.4005523,377.9625409,186.5496916,267.7486126,195.1911272,81.82628473 +388.0686244,211.5098344,298.0869686,202.4655482,172.0526105,318.2813042,358.4906276,183.7620714,258.7939946,191.7905759,81.88506709 +417.2973926,220.3504951,319.1287222,209.3081508,175.8972998,341.2879757,394.1328251,189.9076599,277.9088498,198.9708999,81.62491595 +402.3381833,216.1182348,309.8595447,206.4859213,174.8799572,334.9700819,386.0813738,188.214453,272.9231895,197.09533,81.71514218 +395.1613087,214.9993245,304.8532853,209.0970923,175.0913558,341.1565961,380.1325506,187.2211275,269.3589715,197.0687729,81.71895381 +415.6193419,219.2740528,316.6813798,207.4281776,174.6705119,333.3718459,384.2091548,188.2903698,273.0016716,196.7974976,81.68502588 +394.0623181,213.7491026,302.0336785,205.829287,173.105613,327.15611,363.9365747,184.8525883,261.8069416,193.5656331,81.81698982 +386.5381459,211.7927232,299.5602906,203.9771471,173.6511991,328.237159,373.987511,185.9676523,265.9520911,194.7201109,81.81839124 +401.0105584,213.9808034,306.6027871,200.4107685,172.1061394,313.5785799,367.2828159,185.3477731,264.1733753,192.3579953,81.8562877 +431.1398849,224.6075239,328.6284758,213.0016135,177.5426899,351.8368054,407.9126055,192.3701401,285.4872586,201.9829657,81.50749259 +389.9560623,213.9568049,303.2138933,209.0106878,176.0661207,346.7652966,388.947386,188.447255,273.0983513,198.8162014,81.70088188 +407.7758357,217.2700923,312.3481113,206.3441812,174.4833563,332.0076363,382.6069879,187.8911399,271.7641225,196.4116602,81.7182379 +398.9194722,213.9639366,305.5005726,202.1074698,172.4325585,317.7905493,367.5175113,185.3063229,264.0319998,192.7996061,81.83944889 +416.2726616,219.745908,317.3880036,208.5106119,175.1399616,337.018798,386.9857545,188.7650264,274.3449356,197.5904702,81.65954155 +419.890826,222.1564714,320.6537511,214.264782,177.0457811,353.1683804,396.1867005,190.4373162,278.967029,200.6895774,81.55610438 +420.1241861,221.2313212,320.6886094,210.4297778,176.1134887,343.5343396,395.0172382,190.0814825,278.4470621,199.3329867,81.60174999 +377.8898045,209.0205762,293.3417438,201.2971666,172.4592737,320.2153242,363.6263665,184.2167912,260.4487857,192.5522123,81.89892466 +399.9129423,215.9293384,306.905602,208.5493897,174.5079313,336.5171319,375.7036844,186.7227683,267.7330068,196.068386,81.73465997 +386.0141299,211.7145452,298.2348022,204.6262569,173.3032161,327.7057496,367.5181838,185.0729076,262.8318556,193.9363834,81.83292961 +407.6989657,217.5213821,313.0847336,207.0462659,175.1584045,336.2280345,388.403621,188.7802012,274.4859541,197.632638,81.68846954 +397.6342949,215.788111,306.904431,209.6050622,175.5226737,343.3526575,384.4079256,187.9632801,271.6487144,197.8733937,81.6942649 +387.2569497,211.2662867,299.0479975,201.5565321,172.6794501,320.0631539,367.497572,185.0723467,263.0711082,193.0874563,81.86618886 +395.2052572,215.0735554,305.1766311,209.0556311,175.2618134,341.7764141,381.4625543,187.5277603,270.1274918,197.3738067,81.716278 +406.6176899,217.7298001,312.0579473,209.086598,175.462564,340.9353902,386.6024594,188.5247728,273.3903078,197.9673644,81.67360485 +388.531046,213.5750941,303.136481,208.4772935,176.41583,347.8053596,394.0513036,189.1232928,275.4182337,199.5315877,81.69131227 +395.7991675,215.7295955,307.7208275,210.2582765,176.9359061,351.4058328,397.7155644,189.9329823,277.7829413,200.4578183,81.64441734 +412.8264489,219.1256523,317.3508279,208.2166091,176.0386898,341.0359936,398.0202933,190.3016394,279.4519512,199.3236477,81.63356795 +414.7399773,218.9779084,316.4090127,206.8930877,174.669946,332.6635803,385.0153914,188.4257839,273.419724,196.836559,81.68831885 +399.1423478,215.495362,306.4778128,207.6221246,174.3307623,334.6671174,375.8936998,186.6666993,267.7278123,195.8326488,81.74390949 +391.4735345,212.7818301,303.580926,203.0063885,174.1865294,328.3816189,383.3278116,187.491775,270.8940927,195.9573141,81.78694424 +394.1965797,214.8025869,304.0367617,209.374666,174.9887995,341.2262823,377.7697841,186.937895,268.2684927,196.8350885,81.72481064 +395.3054104,214.2899893,305.9771668,205.3651242,174.9025756,334.6804998,386.0446355,188.0958885,272.4020815,197.1024697,81.74129612 +397.0866323,213.8898875,305.384404,203.0157622,173.3372139,323.6339578,374.3873409,186.3510519,267.1218097,194.3886694,81.80473175 +396.0674773,214.7258291,306.2119912,206.5354427,174.9656889,336.5150429,384.7249763,187.9060123,271.7822502,197.1094102,81.73172426 +393.3600431,213.795719,303.7797932,205.7233459,174.2677231,332.538909,378.0209441,186.8248814,268.4026134,195.8127717,81.76883753 +428.8277755,222.3048177,324.28165,207.5397127,174.6547465,331.4396174,386.6823371,189.0111205,275.2720715,196.9686626,81.6512711 +408.0283611,217.3635709,312.502412,206.5173257,174.5641517,332.6433496,383.0401123,187.9700419,271.9739535,196.5533033,81.71297636 +431.5921388,223.7687623,328.086217,209.679727,176.2566249,341.122361,401.1840071,191.3273101,282.4985857,199.8923348,81.56726423 +406.8599836,216.3512823,309.9684372,204.5970895,173.0759409,323.2758793,370.5044283,185.9686583,265.8700601,193.8837794,81.78401293 +422.1000901,220.5658289,319.8309274,206.9533,174.1240221,329.055909,380.8626912,187.9389558,271.9781433,195.9077343,81.69458774 +405.4206776,217.1208402,310.3930026,208.3363018,174.7088503,336.5705064,380.0652823,187.4260868,270.1203154,196.5994541,81.70779723 +431.6283146,222.9297802,325.0037979,207.9864697,174.2130455,329.5581237,381.552925,188.2945762,273.0039948,196.1268783,81.65954737 +392.9157054,212.917148,302.6686912,202.8929362,173.0845588,322.9012042,371.0071564,185.7289965,265.162353,193.8332405,81.82846548 +392.1331286,214.3044718,303.9849234,208.5773988,175.5123224,342.8469358,384.9006499,187.8995306,271.4817724,197.8569539,81.71472358 +394.9447416,213.2332326,303.7825911,202.3961273,172.7357903,320.1007525,369.7337219,185.5569175,264.8268051,193.29978,81.83490635 +398.7485644,214.5969513,305.806089,204.5379112,173.3300358,325.5025273,371.3702429,185.96051,265.7431215,194.2309466,81.79499813 +402.5038014,216.276488,309.5260783,207.0653264,174.8415801,335.6410734,383.5478804,187.9146414,271.7272343,196.9236508,81.71652982 +390.9193044,212.5716545,301.573668,203.3629615,173.3001537,324.9982418,371.24174,185.7904278,265.1517351,194.1681113,81.82267646 +408.4167323,218.7369732,313.2220422,211.4157356,175.9963797,346.3036982,388.0676396,188.8263665,274.1748798,198.7669569,81.64136838 +416.2166199,220.3728707,315.7684701,211.787629,174.8891759,340.1762612,377.3641018,187.364995,269.6007061,196.7752453,81.66237346 +397.5476314,215.9651332,308.0707514,209.8288547,176.4075652,348.0618166,393.7633067,189.2882701,275.9338343,199.5338617,81.66065023 +413.8978348,220.0255633,316.8190809,211.2558591,176.1766055,345.8669755,391.4870554,189.5408288,276.3569698,199.2262516,81.61891575 +426.4887558,224.1735929,327.0693061,215.0542681,178.8096865,361.3876196,415.6686052,193.4941044,288.7529567,204.076505,81.46690228 +407.2054553,217.9495459,311.2429509,210.0904085,174.9061025,339.5405845,379.243339,187.3703282,269.8275421,196.8330704,81.68938959 +400.7695102,215.6093957,306.9733941,206.7763513,173.8791011,331.0688838,373.1950769,186.2663996,266.5672437,195.0836346,81.76125961 +404.4492834,216.8311204,310.0722609,207.6758618,174.6614912,335.2927087,380.158376,187.5103699,270.2682194,196.5240101,81.71933675 +397.9482172,215.0470542,305.9835403,206.656451,174.219889,332.8541193,376.2240088,186.7083313,267.8795264,195.6805629,81.75757445 +379.7038562,210.5607892,295.9478982,205.0374703,174.2740862,334.0147826,375.3120006,186.14301,266.0573777,195.6149716,81.81573436 +396.4402475,215.3975678,305.7769621,209.3611735,175.3093455,342.3918623,381.8254437,187.5509467,270.2709464,197.462139,81.70835048 +437.6224009,226.2791038,332.4252977,213.6748826,177.5390904,351.5373412,408.5021294,192.6386928,286.359984,202.0435087,81.48737097 +408.3566155,217.8843253,311.884507,208.6289969,174.5147307,335.190247,377.9849247,187.2550949,269.5057835,196.2356298,81.7083824 +421.3074395,221.4080349,320.7462697,210.3447045,175.7127957,341.3783369,391.1319963,189.5043279,276.6500154,198.5963132,81.61610921 +433.9577516,224.6061727,329.1584056,210.9799287,176.374963,343.1460731,400.178355,191.2434739,282.1190977,200.018559,81.55197487 +389.9893206,213.7984913,301.8616724,208.938199,175.1035488,341.9094339,378.6650573,186.9481855,268.3182565,196.9884912,81.73803002 +426.3168534,222.6330831,323.9840243,210.5129593,176.018934,342.3449234,394.9616416,190.2314428,278.8776991,199.2453525,81.58790087 +405.9822153,217.1156651,311.056473,207.6672526,174.7355869,335.5925786,381.9685192,187.739722,271.1696631,196.7400936,81.70538314 +407.5931042,217.0709255,313.2395602,205.3685665,174.687418,331.49536,388.3692214,188.6687521,274.5694008,196.9709258,81.71256432 +429.2446766,223.9780117,327.0305953,212.4124293,177.0482278,348.993948,403.5832829,191.6449523,283.2825998,201.075692,81.53512113 +417.6524987,221.2092103,320.1112974,212.1038335,176.7928018,349.3030207,399.3881924,190.658738,280.2980358,200.4476749,81.57709195 +374.5380788,208.8037817,292.0375706,203.2368407,173.2942675,327.6472265,367.2597407,184.7860825,261.9200108,193.8758769,81.87097386 +409.0581047,219.653147,315.2917741,213.9392631,177.6680585,357.8906352,400.9714958,190.8042633,280.2298046,201.697878,81.56465131 +439.8413321,227.1974714,333.7266748,215.5482244,178.1725827,356.9903918,411.3018028,193.1321672,287.7028647,203.0862776,81.44503307 +395.536364,214.1578501,305.2656599,205.0269618,174.3279961,331.5268829,380.3209483,187.2322754,269.6781412,196.0293257,81.76500799 +415.9295851,219.706115,318.4513545,208.1101935,175.6456275,338.6618825,394.3505828,189.8237947,277.9203229,198.6298021,81.64034011 +417.1143137,220.4408989,317.9941569,210.4728519,175.4959725,341.1681034,387.8164982,188.8808166,274.7130569,198.1099726,81.63587694 +404.0053461,216.7251828,310.6053063,207.4115069,174.8504031,335.8355334,384.5806539,188.0252759,272.3045844,196.9814976,81.70905198 +379.3569675,210.3794501,296.2439234,204.393102,174.455656,333.9770747,378.6517821,186.6232653,267.6350055,196.0348042,81.81244371 +397.9933643,214.4132532,306.6003838,204.0442778,173.9780869,328.0074366,380.0130791,187.1678521,269.7602365,195.5470357,81.7724778 +394.9176919,214.5462746,304.5502956,207.4441869,174.6183296,336.4877855,378.1198953,186.9443163,268.5267845,196.3235007,81.74490813 +449.3478101,226.9324249,336.7602074,207.3978262,174.7518179,328.7248958,393.3919853,190.5482521,280.3104076,197.5456478,81.59663532 +406.55707,217.1607207,311.8627858,206.8249087,174.7226853,334.0166924,384.0324221,188.0593918,272.2804078,196.7929054,81.71302381 +410.1603501,219.1207537,314.1819187,211.4914042,175.9903014,346.1873756,388.3987836,188.9065975,274.4501141,198.7969651,81.63286492 +383.1228077,211.8724662,296.9939638,207.8738139,174.3122666,337.7809434,370.5225178,185.5548997,263.9575625,195.4623348,81.79309568 +376.1427322,209.0394421,292.7789805,202.7602988,173.0602746,325.557749,366.7412126,184.6405313,261.6903469,193.5107137,81.87580881 +429.754354,223.8063157,326.8177418,211.5940025,176.5914498,345.686694,400.3045891,191.154476,281.7862832,200.2982431,81.55202877 +421.8608019,220.2399331,321.1102717,207.3121439,174.5663086,337.3036167,394.1950258,189.2225463,278.0536797,197.6754371,81.25755801 +420.6384087,221.4635866,321.3328765,212.8688543,176.3719555,353.7592388,402.2731954,190.4715321,281.5694491,200.5527811,81.17262233 +434.3856096,226.3239617,332.7394699,217.9043498,179.6278961,373.4402096,430.3696715,195.2780064,296.2234564,206.4948171,81.00260135 +402.4963205,215.065238,309.9461881,204.267854,173.8611424,332.7735811,388.8863281,187.8801608,274.092984,196.3306913,81.3432374 +414.486945,217.9207251,313.5044003,206.5676285,172.6135794,328.370236,371.6379509,185.5102422,266.3826994,193.8433539,81.35341272 +392.3961635,214.2861301,303.6489714,210.8147771,175.2347352,350.446485,386.5177353,187.4617409,271.9608379,198.0841769,81.30090941 +427.7563886,221.2228326,324.7458167,206.1593575,174.2882723,333.621166,395.5811552,189.5138357,279.2321688,197.3858784,81.25738817 +417.2869278,220.922464,319.7215001,213.601118,176.7822523,357.2914033,404.2544301,190.7707151,282.3292532,201.2098113,81.16518448 +435.7383734,223.5197367,328.9462532,207.9562551,174.5561115,336.0161987,395.7642035,189.7717844,279.8256162,197.8070165,81.22083312 +419.3349471,220.1814567,320.0531006,209.1636384,175.172531,343.0535543,396.6695474,189.4946947,278.8731925,198.6094453,81.23311216 +406.6736756,218.2215801,313.9286232,212.2686396,176.7686698,357.1915936,404.0994748,190.561604,281.5765835,201.1475435,81.20355711 +418.4819942,220.266676,317.8957487,211.092329,174.7327675,343.83219,386.9810259,188.1207219,274.1533337,197.5554159,81.24699419 +416.5812684,218.5721142,317.1518247,206.2020511,173.6876349,332.660766,386.0707659,187.7339492,273.6142739,196.0299581,81.30681628 +430.5591812,223.6849574,328.0913336,212.174077,176.7197487,352.7913585,410.4056317,191.9030981,286.2884293,201.4709951,81.13526104 +415.3859615,219.5261806,317.2136247,210.3708364,175.2072586,345.6180705,393.2050727,189.0292274,277.0401944,198.4995029,81.23950481 +395.3306742,213.5531671,306.0490758,204.542676,174.2010967,336.0355319,390.0537426,187.9657334,274.1637743,196.8350815,81.35180881 +399.4520807,214.03852,305.148721,204.4292636,172.2916103,326.2006347,369.2595431,184.8409093,264.3209178,193.2134387,81.40894932 +429.9271621,223.4114118,327.1881309,211.7595268,176.3763123,350.5677387,406.8462772,191.3841414,284.5761243,200.8276177,81.15259408 +414.465648,218.9784798,317.6615528,208.693684,175.3057982,343.950159,398.3340164,189.6192347,279.3191042,198.8466556,81.24251234 +406.6556743,217.7764745,312.2231719,211.5258006,175.5223151,350.3779116,392.1422556,188.5971737,275.65359,198.8209445,81.2469259 +428.3618495,222.327279,324.8070695,209.7593999,175.1033547,342.3165783,396.3744615,189.7078518,279.4238087,198.5577968,81.2121995 +405.6692066,216.4694778,309.2481173,208.1234411,173.4162157,335.5911675,375.1616046,186.066461,267.6871582,195.1180934,81.34209882 +397.7502583,214.3262238,306.7432156,205.9334704,173.9892123,336.7280643,385.4786847,187.1978205,271.8540422,196.3111054,81.34457195 +413.4464655,216.7355957,314.4109897,202.1900935,172.3713125,321.3653592,378.4549699,186.5438555,269.9904484,193.8329048,81.38005588 +444.0721211,227.8321225,336.9676548,215.6616011,178.1168003,361.6925314,421.1674302,193.9549463,292.4654626,203.996059,81.03707131 +401.3263106,216.7486655,310.5517009,211.5026831,176.5335873,356.2686866,401.5257758,189.9638884,279.7964714,200.6547433,81.2290048 +420.1328922,220.1735933,320.18852,208.5728115,174.8818097,340.7808559,394.7209573,189.2476431,278.0720759,198.1238377,81.24462163 +410.8620563,216.6015581,313.0307641,203.9212622,172.711996,325.734884,378.6055796,186.4363579,269.6818297,194.28545,81.36415648 +429.1103652,222.8778673,325.5776271,210.9851844,175.6020803,346.1978217,399.4220416,190.2567156,280.9778384,199.4070814,81.18711038 +432.1441765,225.2368473,328.4507389,217.0561893,177.5774055,362.9494823,409.0345833,191.929144,285.7036498,202.6307457,81.08511575 +432.9183584,224.3802257,328.9026354,212.9811559,176.6227981,353.0244015,407.7986665,191.6086586,285.2110569,201.2304282,81.13032664 +389.2596276,211.5793265,300.5449939,203.2449798,172.736909,328.4337051,374.8326373,185.4597802,266.3458468,194.0438745,81.42369465 +411.2380827,218.5767606,314.0346485,210.8382439,174.8798474,345.2882543,387.2926801,187.9180228,273.6223148,197.7228649,81.26119199 +397.1892704,214.2682815,305.2870177,206.7236087,173.6159232,336.147717,378.7968365,186.2709372,268.6618196,195.4882679,81.35843546 +420.2781813,220.5496886,321.1105238,209.421271,175.6024447,345.3276466,400.9777008,190.2754411,281.1613424,199.4323922,81.2154727 +409.0914795,218.5394451,314.226886,212.0237462,175.9604871,352.594402,396.6162316,189.3240573,277.968003,199.647755,81.22208464 +398.9509171,213.8957376,306.4098244,203.4876209,172.9622037,328.194031,378.8434389,186.3114807,269.012207,194.600928,81.39045966 +406.6136511,217.8188136,312.4096781,211.5000078,175.678598,350.9212554,393.609935,188.8890721,276.459133,199.12137,81.24338209 +418.8543584,220.7284454,319.8599736,211.6045438,175.9213237,350.2215948,399.0568816,190.0092203,280.0206115,199.7862431,81.2011687 +400.091244,216.4145321,310.6564791,210.9557389,176.9061772,357.4494759,406.9743229,190.714689,282.3194346,201.412341,81.21986899 +407.4433722,218.6040695,315.241472,212.8247137,177.4431136,361.1369211,410.7978728,191.5039653,284.6993839,202.3749352,81.17302078 +425.3886333,222.1427458,325.467149,210.545468,176.5288247,350.3601976,410.8715655,191.8111053,286.1790163,201.1947993,81.16177963 +427.6798334,222.0865823,324.6369068,209.255533,175.1029334,341.6160768,397.3777652,189.8897199,279.9882555,198.6073046,81.21517611 +410.8390502,218.2637718,313.9084734,209.9268055,174.7188524,343.5288389,387.6112099,187.9619883,273.8201601,197.5110588,81.27082883 +403.6368552,215.6062105,311.4344075,205.0483226,174.575642,337.1346739,395.5566278,188.9474962,277.3813095,197.6523788,81.31340259 +405.8307771,217.6608035,311.4433134,211.9400443,175.418436,350.5080562,389.874992,188.3649825,274.7053797,198.5930563,81.25250515 +407.4737237,217.1959224,313.7693436,207.6514515,175.3227994,343.7090153,398.555278,189.6031191,279.0829703,198.8666188,81.26790501 +409.4701642,216.7569131,313.2363087,205.102076,173.6813572,332.0896044,386.2036976,187.7145092,273.3814767,196.0063473,81.33009922 +407.8049405,217.4872257,313.7242732,208.7629677,175.3759407,345.4837741,396.9645397,189.2886372,278.1537285,198.8452264,81.25860969 +405.0202918,216.5147557,311.2096731,207.9061991,174.6437459,341.3113902,389.9213597,188.1501656,274.5942141,197.4821846,81.29526671 +442.1968067,225.5121722,332.7652441,209.8826203,175.0968137,340.3000458,398.9523209,190.4437763,281.7587119,198.7467764,81.17820595 +420.5556071,220.3420291,320.4584623,208.8203362,174.9759603,341.5202499,395.2757684,189.3828148,278.4180626,198.2899031,81.23954515 +445.0985155,227.0777011,336.7330099,212.1992791,176.78009,350.5470978,414.2928877,192.9071491,289.4482132,201.8233093,81.09550798 +419.2447096,219.2101522,317.7916955,206.6900875,173.4126793,331.6217684,381.8677254,187.21222,271.7909021,195.4668376,81.30973564 +434.7590376,223.5159247,327.8385023,209.1121361,174.5138268,337.6117576,392.5983786,189.1974648,278.0047144,197.5863486,81.22101899 +417.5774157,220.0606914,318.1628527,210.7476624,175.1387747,345.6561245,392.0540287,188.8259821,276.4631883,198.3482707,81.23540322 +445.0434207,226.1357235,333.4741224,210.3432871,174.63602,338.3047938,393.5552758,189.6540094,279.2902008,197.8606764,81.186437 +404.5636968,215.5261621,310.0198248,204.8171064,173.3865006,331.0995334,382.3979577,186.9241786,271.0150877,195.373751,81.35330614 +403.5330609,217.0419541,311.2849701,210.9769805,175.9461566,352.099435,397.2400586,189.3071178,277.9232248,199.6329228,81.24230984 +406.6480981,215.8070623,311.17922,204.2092668,173.0237826,328.1404666,380.9879798,186.689134,270.5139348,194.8047138,81.35983757 +410.7606592,217.3588912,313.3718457,206.6504697,173.6608979,333.9137926,382.9082084,187.2075545,271.7252079,195.8179765,81.32042881 +414.5528038,219.1341961,317.1961247,209.3605055,175.2540119,344.5903603,395.7465778,189.2985634,278.1030586,198.6617314,81.24330669 +403.0474749,215.4114441,309.2220924,205.5580402,173.637208,333.5276046,383.0519357,187.1702723,271.4592964,195.780105,81.34785968 +420.1271315,221.5867117,320.676367,213.9388861,176.4605506,355.6557746,400.3592069,190.1926011,280.5333687,200.5868637,81.16943314 +428.2083706,223.2824307,323.3382364,214.3241018,175.3176649,349.2599115,389.0200054,188.6180142,275.5999115,198.5075767,81.19026606 +408.9964495,218.7418184,315.5043052,212.2334478,176.8947694,357.5744639,406.3334404,190.7501896,282.4994115,201.3948831,81.18943356 +426.1087321,223.0239658,324.5473487,213.8621744,176.6549725,355.2686151,404.13636,190.9848082,282.9680203,201.0852431,81.14662919 +439.0154912,227.3535019,335.1868311,217.8545795,179.4267015,371.6368847,429.2909297,195.1472505,295.9471868,206.1729205,80.99726902 +419.0648659,220.8139339,318.8060962,212.5364678,175.3380802,348.6667822,391.068885,188.6897399,275.9752801,198.5766109,81.21739388 +412.5009768,218.3501612,314.4084282,208.9867858,174.2432662,339.7220968,384.6677192,187.5069263,272.5019521,196.7157932,81.28775642 +416.2722241,219.6131217,317.5180916,209.9704276,175.0486956,344.0871751,392.0878561,188.7960548,276.4164861,198.2188533,81.24556449 +409.4409905,217.7077928,313.2397645,208.8383318,174.5799492,341.5011043,387.879897,187.9373749,273.8493835,197.3210071,81.28364095 +390.5066371,213.044452,302.7986416,207.1683236,174.6163863,342.7094946,387.0950316,187.4195193,272.1537964,197.2400008,81.34142657 +407.9486866,218.1929925,313.1308217,211.82852,175.7446329,351.6417664,393.9387201,188.9469971,276.6421856,199.2309673,81.23608097 +450.5665384,229.4761879,340.7592564,216.2816771,178.1105356,361.3119534,421.6248477,194.1467322,293.1504692,204.0430565,81.01710032 +420.2115437,220.6663613,319.3460212,210.9368934,174.9008339,343.9675182,389.7306976,188.4800261,275.4842325,197.9138646,81.23501139 +433.9832414,224.5008146,328.8662559,212.8326717,176.2004914,350.7041662,403.595518,190.9539463,283.190026,200.447775,81.14449436 +447.2857898,227.8781399,337.6825698,213.5355128,176.901817,352.6131729,413.1422059,192.772586,288.9354009,201.9476815,81.08052604 +401.0854794,216.4639838,308.9275822,211.3532528,175.5121517,351.0471837,390.6033072,188.2863266,274.5463951,198.713187,81.26536144 +439.5475148,225.9260445,332.4669374,213.1405352,176.5415221,351.8691358,407.8095155,191.8167415,285.7778752,201.1644502,81.11651507 +418.4843202,220.1536884,319.0469845,210.1111686,175.1748935,344.7268019,394.2262392,189.2131022,277.7187928,198.5130143,81.23288081 +420.0005466,219.9573272,321.236354,207.4414045,175.1075887,340.3058592,400.632055,190.0609699,280.9334629,198.7105446,81.2397448 +441.9198831,227.0887494,335.1833828,214.9554474,177.5897763,358.6196225,416.5100435,193.1288223,289.9865792,203.0271987,81.06430157 +429.6455694,224.1179661,327.8794809,214.5380474,177.314698,358.8640353,412.0166491,192.067126,286.7609421,202.3538605,81.10665118 +385.637073,211.3719875,299.0648172,205.3877677,173.6078087,336.2229798,378.8366485,186.1045313,268.0507305,195.4427653,81.3963008 +420.8309213,222.6267598,322.9040286,216.6834753,178.2240319,367.8982223,413.9946094,192.3636265,287.1055131,203.6821676,81.09445636 +453.2764207,230.6557017,342.4383817,218.474646,178.8106361,367.2925776,424.869802,194.8495402,295.0062043,205.1964592,80.97604859 +407.5298282,216.9829507,312.9085744,207.2342317,174.7140182,340.3220562,392.4114577,188.6389177,276.0774114,197.7258417,81.29116783 +428.7369959,222.797336,326.7000827,210.4759684,176.1284384,347.923396,407.0617698,191.3355403,284.626401,200.4830396,81.16840634 +429.4175909,223.4175631,325.8819638,212.9053216,175.9665391,350.4166869,400.01918,190.2571754,281.0426292,199.9232145,81.16435439 +415.7646427,219.465919,318.1608725,209.5617157,175.2659451,344.721768,396.5462385,189.3210331,278.4202854,198.7047883,81.2365969 +390.4554308,212.9618996,303.313598,206.5534446,174.8162431,342.7794471,390.7409425,188.0008976,273.9898083,197.7000018,81.33819981 +410.3006923,217.2902667,314.5011644,206.154961,174.3645908,336.7226607,392.0220626,188.5799259,276.122571,197.2295761,81.29898089 +406.6082446,217.3385345,311.9795713,209.8106192,175.0176094,345.4805812,390.1294457,188.3124473,274.832434,198.033968,81.27177619 +463.519283,230.3030092,345.7736206,209.633107,175.2151488,337.4591631,405.8090314,191.9811159,286.81103,199.3508304,81.12387171 +418.4791228,219.9349987,319.4455222,208.9841711,175.1195786,342.7708053,396.0109191,189.3535681,278.4311811,198.4994534,81.23954851 +422.2784004,222.1232752,321.9240925,214.12278,176.4776582,355.6989118,400.8870331,190.3728294,281.0422821,200.6551829,81.16134927 +393.7566359,214.3692839,303.7232931,210.1761679,174.667567,346.625552,381.9466217,186.772496,269.8483243,197.0863174,81.31975777 +387.0950214,211.5118743,299.7609947,204.739721,173.3624465,333.964466,378.0134412,185.8707096,267.5624205,195.0414995,81.40134232 +442.8210281,227.0282585,335.1972488,214.1837057,177.1255482,355.2663849,413.2777281,192.6856502,288.602597,202.2384298,81.0809192 +411.5207475,218.9173363,314.9501149,206.4614106,175.6342429,330.5976078,384.5930051,189.4240056,273.7109262,197.5057823,80.44721606 +410.4853245,220.0884169,315.2213436,211.7486284,177.3802835,346.4568828,392.3667821,190.6167221,277.085414,200.2895052,80.36212046 +423.6490999,224.6239523,326.115134,216.4973517,180.4882776,365.3550947,419.2024403,195.1199736,290.9627353,205.9585489,80.1919391 +392.9434303,214.0448116,304.2901902,203.6205631,174.9751146,326.2982313,379.5287723,188.1656181,269.9458286,196.2379652,80.53258272 +404.7694834,216.8248581,307.8532465,205.7683896,173.7794402,322.1149606,363.1850903,185.9824899,262.7270922,193.8719062,80.5434577 +383.6522066,213.3704217,298.485938,209.8197351,176.3261588,343.4034714,377.2861888,187.809547,267.9525833,197.9669656,80.48930365 +417.033837,219.8279563,318.3365727,205.4020762,175.3464027,327.0309038,386.0250987,189.6844557,274.8898939,197.2197775,80.44776813 +407.2695928,219.5557988,313.6796122,212.4179062,177.7717256,349.8443571,394.1955457,190.8778841,277.7544408,200.9102213,80.35408771 +424.909988,222.0506104,322.4866364,207.087861,175.6236559,329.3763251,386.1533272,189.9734838,275.4622103,197.636052,80.4114181 +409.2795556,218.9211165,314.0449498,208.2696807,176.2441419,336.2120182,387.040818,189.7349879,274.571554,198.441887,80.42325018 +397.1010152,216.984992,308.1600672,211.1298039,177.760673,349.7558927,393.9493568,190.6542807,276.9621412,200.8417115,80.39150706 +408.4938431,218.9760043,311.9784535,210.0225325,175.802157,336.905457,377.7123747,188.398107,270.0201538,197.4072113,80.43619803 +406.5087013,217.3810217,311.1863848,205.4710642,174.7937166,326.1925176,376.9845679,188.0430816,269.5916521,195.953774,80.49719107 +419.8563518,222.1590799,321.6010089,211.0963802,177.6961297,345.4737754,400.185658,191.9543416,281.5904863,201.1522169,80.32534944 +405.3696537,218.2222964,311.2429722,209.317598,176.2465147,338.5741174,383.5773016,189.2140493,272.6885734,198.2903598,80.42819573 +385.9359988,212.5499005,300.4782361,203.8230048,175.2793792,329.3531785,380.5486208,188.1776511,269.9069489,196.6898025,80.53987389 +390.2898886,213.1317481,299.8497234,203.7214118,173.4729622,320.0131651,360.8107224,185.326324,260.68775,193.2593767,80.59817756 +419.3878833,221.9353437,320.8273614,210.6939174,177.3820537,343.3765937,396.7270723,191.4908848,279.9527955,200.5432117,80.34258831 +404.4303472,217.7317277,311.6478769,207.8174279,176.3542303,337.0230932,388.630812,189.807028,274.9587957,198.6531304,80.43222709 +397.0858847,216.6051916,306.5195942,210.4715451,176.568185,343.2268289,382.6788504,188.836649,271.4447212,198.6371584,80.43574569 +417.8019291,220.8947476,318.4917111,208.7804086,176.1429373,335.4070975,386.7274208,189.8824261,275.0418479,198.3523141,80.40203318 +396.273782,215.3962876,303.769031,207.1732039,174.5408938,328.9970679,366.3622316,186.4523618,263.8304808,195.066196,80.53057728 +388.5021503,213.377151,301.2801722,205.2303544,175.1048287,330.1525369,376.3786858,187.5408417,267.8822477,196.2446135,80.5340706 +403.4407038,215.6304575,308.5544952,201.6298968,173.5252143,315.3125656,369.5983111,186.903554,266.0677774,193.8232001,80.57002623 +433.0307017,226.1292096,330.2162849,214.4232509,179.0485792,354.0793912,410.5244153,193.938854,287.5250756,203.5865409,80.22785569 +391.9150905,215.5912687,304.8920424,210.4248631,177.5347687,348.8723581,391.5611822,190.0861991,275.2954239,200.3793802,80.41687468 +409.9597233,218.882376,314.1217424,207.6764734,175.9505569,333.9797551,385.1296755,189.4717957,273.7631473,197.9552724,80.43442478 +401.1098786,215.5548404,307.3124987,203.3177172,173.8723643,319.5838286,369.8364907,186.8459314,265.8601578,194.2931757,80.55468238 +418.4904925,221.3871344,319.2066689,209.910076,176.6131812,339.1045328,389.5776484,190.37622,276.4674663,199.1508868,80.3765093 +421.7537303,223.6951419,322.1583845,215.7159703,178.5443397,355.3358294,398.822055,192.0241906,281.0388177,202.286953,80.27493264 +422.2003782,222.8288377,322.4202174,211.8412371,177.6046062,345.7014441,397.6516224,191.6810899,280.5488884,200.9183396,80.3202805 +380.2174776,210.7213406,295.2726967,202.591355,173.8732476,322.070633,366.065942,185.8292903,262.5161097,194.0224312,80.61190964 +401.7537374,217.458347,308.424813,209.8574774,175.9825067,338.4341354,378.1157476,188.2795176,269.6144929,197.6212558,80.45099896 +388.0658216,213.3268123,299.9428926,205.9191095,174.7461973,329.5741562,369.9187553,186.6601761,264.8020338,195.4462376,80.54727414 +409.9710573,219.1783755,314.9244208,208.4385471,176.6244553,338.2849893,391.030816,190.3931153,276.6198332,199.1818579,80.4045941 +399.5117199,217.3591588,308.4973198,210.9723279,177.0068371,345.405584,386.9689317,189.5586686,273.6806883,199.4483696,80.41135324 +389.5816787,212.932791,300.9271116,202.8294426,174.0995301,321.8642393,369.8917165,186.6616572,265.0691455,194.5618866,80.57919301 +397.1707297,216.6702721,306.7829825,210.437989,176.7322999,343.7828529,384.0209759,189.131921,272.1939418,198.9303999,80.43207088 +408.7334934,219.3630896,313.7906775,210.4978436,176.9333225,343.0118859,389.1953388,190.1437838,275.5319369,199.5271243,80.38994073 +390.5866451,215.2419812,304.90877,209.9115702,177.8862858,349.9783174,396.770699,190.7748523,277.680237,201.0989967,80.40774021 +397.7809145,217.3491066,309.3798815,211.7002737,178.418093,353.5713271,400.435909,191.5623038,279.9842358,202.0377845,80.36146851 +414.9014337,220.7175501,319.1108879,209.580991,177.527841,343.1761478,400.64143,191.8880879,281.5067805,200.9027216,80.35198816 +417.0685391,220.6369519,318.2894038,208.2738921,176.1355859,334.69919,387.6109496,190.0319823,275.525465,198.3830936,80.40468951 +401.1432927,217.0928358,308.1622587,208.9582339,175.7994858,336.6502971,378.3659105,188.2589365,269.7298457,197.3825893,80.46011351 +393.8136953,214.4814488,305.5678305,204.3344385,175.6308763,330.4029585,385.905187,189.1097065,273.0256089,197.4755275,80.50220276 +396.2816326,216.463599,305.7637312,210.8048072,176.4543104,343.3033567,380.3990709,188.5807207,270.4633654,198.3916608,80.44054765 +397.616283,215.9833149,307.867938,206.7523718,176.3534765,336.7171993,388.6724965,189.7269988,274.5887708,198.6334076,80.45619483 +399.5210544,215.5909021,307.3569552,204.342711,174.7731781,325.5496521,376.9078638,187.9602976,269.2087585,195.8901548,80.51899213 +398.124902,216.3349,307.9368132,207.8739563,176.4344313,338.5252841,387.2718808,189.500992,273.8217847,198.6597273,80.44781261 +395.4594709,215.418978,305.534357,207.0500209,175.7275982,334.5076649,380.5341976,188.4214531,270.4319506,197.3494432,80.48435849 +431.0996011,223.9166688,326.1192098,208.8897141,176.1280281,333.4539917,389.1946702,190.5879538,277.2826926,198.5217165,80.36865151 +410.2921189,219.0088606,314.332939,207.8805288,176.0283043,334.6471358,385.6121288,189.5700058,274.0457706,198.0961738,80.42896313 +433.8267151,225.3718166,329.8893995,211.0950683,177.7457784,343.2906739,403.8577569,192.9128061,284.5928715,201.4710791,80.28609709 +409.0990128,217.9788057,311.8150353,205.8827739,174.5268983,325.1660576,372.8983261,187.5425783,267.8130295,195.4010759,80.49965699 +424.1608698,222.1093436,321.5287332,208.2273411,175.6003985,330.9830026,383.2402103,189.4760776,273.8196651,197.4576295,80.41209697 +407.4915446,218.7467082,312.1502651,209.7070385,176.1808414,338.6292899,382.5849565,189.0373261,272.2025408,198.1586166,80.42451975 +433.9124084,224.5367838,326.8376684,209.3323591,175.6900596,331.5558407,384.0720599,189.8636322,274.9786908,197.6825498,80.37726129 +395.0705599,214.5200632,304.4376271,204.1417635,174.5254646,324.7237837,373.3811768,187.290311,267.0646027,195.3335215,80.54294881 +394.1007361,215.9133577,305.6409293,209.9598486,176.9870154,344.9032594,387.5062847,189.5129727,273.5820101,199.421192,80.43099688 +397.0827302,214.812537,305.5569077,203.6111952,174.1822426,321.9196523,372.1070341,187.0957821,266.6584035,194.8030817,80.55040584 +400.9878422,216.2307757,307.6164919,205.8425614,174.778913,327.3866508,373.8324951,187.5419696,267.7182715,195.746008,80.50992519 +404.6180048,217.8909436,311.2634035,208.4171574,176.3101962,337.644879,386.0910541,189.5088288,273.7682401,198.4731737,80.43262809 +393.3962142,214.3031246,303.5414546,204.7292296,174.7267938,326.9100509,373.8052954,187.4221476,267.3148308,195.6606543,80.53591771 +410.2172077,220.2667414,314.7279653,212.7886998,177.4880767,348.3627476,390.580918,190.402535,276.1555689,200.3509392,80.35915378 +418.0505119,221.9021888,317.3036637,213.1429702,176.3809709,342.2019373,379.812391,188.9320207,271.5237386,198.3564742,80.38049087 +399.3177087,217.5206739,309.6583021,211.1903278,177.8981193,350.1855799,396.3070881,190.8878357,277.9897627,201.1217573,80.37866983 +415.8997849,221.5940293,318.4002309,212.6727945,177.6609744,347.9398366,394.0929811,191.1258268,278.4082584,200.8003414,80.33620886 +428.23468,225.6705477,328.5467027,216.5123792,180.3174709,363.6861554,418.2966512,195.0654404,290.8229676,205.685904,80.18763315 +409.0890115,219.5156397,312.8650076,211.4441218,176.3922536,341.595488,381.7248749,188.9592165,271.8211367,198.409703,80.40710143 +402.7622827,217.1917886,308.6559228,208.0781028,175.3437381,333.0044477,375.5925623,187.842578,268.5061223,196.6241593,80.47736924 +406.4662476,218.3986331,311.6895354,209.0046668,176.1299959,337.2209287,382.6217658,189.0775888,272.2104715,198.0689442,80.4351979 +399.9059492,216.6072095,307.5969639,207.9526795,175.6847051,334.755958,378.6385685,188.2720734,269.7893681,197.2191152,80.4732663 +381.6913022,212.1671311,297.593342,206.3508475,175.7199477,335.9084025,377.7858339,187.7398671,268.0803191,197.1330833,80.52967661 +398.3708567,217.0009856,307.4152307,210.7453392,176.7831,344.4450109,384.3642122,189.1660896,272.3643044,199.0264929,80.42469729 +439.4029611,227.7449999,333.9329306,215.0612296,179.055811,353.7673729,411.0610709,194.1734221,288.2804289,203.656651,80.20889061 +410.3080504,219.4261385,313.4693921,209.9477985,175.9942497,337.133995,380.4451897,188.8088203,271.3934853,197.793585,80.4253001 +423.3066419,222.9774257,322.4330171,211.7212156,177.2059725,343.5027203,393.6862927,191.0874742,278.6747592,200.1817294,80.33479408 +436.0582882,226.1692559,330.8688186,212.3845075,177.8724969,345.3157384,402.80761,192.8144497,284.1537029,201.6076108,80.27145549 +391.8658473,215.3899887,303.450046,210.3065272,176.5726588,343.9151701,381.1783974,188.5581642,270.3825741,198.5452831,80.45380732 +428.4975404,224.2582974,325.7836352,211.9492473,177.503851,344.5296255,397.611118,191.8440024,281.0388791,200.8247258,80.30625581 +408.235087,218.7921679,312.9243326,209.0722841,176.2016224,337.6795541,384.5881886,189.3696782,273.339022,198.2928154,80.42171447 +409.717362,218.6696333,315.061664,206.6620193,176.1622193,333.5311087,390.8853524,190.2402898,276.5448956,198.5252417,80.43019108 +431.0552115,225.468829,328.5665681,213.7873686,178.5573927,351.1734931,406.1235219,193.1933001,285.224742,202.6799462,80.25548535 +419.2913276,222.6751654,321.5931297,213.4366196,178.308629,351.4667366,401.88621,192.2053328,282.1954628,202.0625745,80.29787056 +376.8239217,210.5176667,293.905161,204.5931506,174.7152284,329.5594938,369.8057142,186.4250269,264.08606,195.3631937,80.58370202 +410.7857588,221.1922249,316.7883299,215.3820021,179.1688102,360.1063646,403.5935123,192.4098516,282.3499965,203.3036714,80.28369171 +441.7817478,228.7505489,335.3794776,217.0465276,179.6815448,359.3830508,414.028457,194.7317653,289.8856937,204.7016763,80.16662949 +397.7685337,215.8198549,307.1015939,206.373414,175.7774249,333.4969201,382.845658,188.8442764,271.774723,197.5540032,80.47978019 +418.0844722,221.3217166,320.2643889,209.4850586,177.1298941,340.7950471,396.9687348,191.4195075,280.0028932,200.2031223,80.35846865 +418.9953934,221.9824455,319.6206973,211.8207825,176.993544,343.2721163,390.3221694,190.4531062,276.6784337,199.7002573,80.35486403 +405.8637295,218.258804,312.2385096,208.6929913,176.3364504,337.8505098,387.0223334,189.5823422,274.2010794,198.5514803,80.42711489 +381.5015634,212.0399201,298.0032561,205.7389698,175.8946751,335.9132975,381.2018159,188.2441064,269.7579304,197.5472035,80.52595878 +400.2891971,216.0916025,308.5402753,205.3707052,175.4281847,330.0108283,382.5391223,188.7776746,271.8503832,197.0717065,80.48807313 +397.0210787,216.1846865,306.2844452,208.8197399,176.0810881,338.4959301,380.6848286,188.5595753,270.6240439,197.8688673,80.46041968 +451.6441979,228.4995082,338.6225432,208.7060139,176.2359833,330.7488785,395.8822875,192.0851761,282.2197428,199.1076105,80.31599666 +408.5130198,218.7050332,313.495378,208.1125049,176.1972344,335.9624824,386.4478046,189.6125064,274.1724994,198.3442618,80.42973725 +412.1224854,220.7131383,315.8173577,212.9144217,177.4780689,348.3181691,391.0100496,190.5174144,276.5628169,200.3810099,80.3505704 +384.9292063,213.444472,298.5354852,209.202153,175.7716462,339.7065595,372.9468186,187.1518158,265.9513893,197.0022483,80.50819845 +378.2395305,210.6868375,294.5782212,204.0439659,174.4902041,327.4461511,369.1586894,186.244504,263.7175115,195.0053559,80.5897125 +431.7850779,225.3645175,328.4943621,213.0055561,178.0922636,347.878829,402.9420342,192.7312503,283.8337191,201.8936702,80.27165286 +423.697415,220.8745853,322.2988124,208.1018966,175.1983263,339.0735087,395.6353988,189.6868625,278.746688,198.3793927,83.92954308 +422.776661,222.1212718,322.70896,213.6194963,177.0194187,355.6504033,403.6983938,190.922726,282.2209622,201.272165,83.83963334 +436.6023652,226.926402,334.2368006,218.4983483,180.2938193,375.2659135,431.8856969,195.6993933,296.7687476,207.2390613,83.6624183 +404.2785578,215.741962,311.110418,205.1597327,174.5241044,334.6461324,390.3311332,188.3664645,274.8227254,197.0764348,84.01772673 +416.4827856,218.6624946,314.8142198,207.4612125,173.2456015,330.243368,373.1763236,186.043419,267.2503246,194.5527576,84.02974064 +394.4693387,214.9772882,305.0748861,211.6619721,175.9269024,352.5964368,387.9637303,187.9396807,272.638848,198.8493137,83.97339476 +429.6854219,221.8888961,325.8597543,206.9890591,174.9019968,335.2835322,397.034524,189.9679637,279.9500364,198.0823558,83.9277034 +419.3083256,221.523155,321.0534709,214.3007258,177.4398396,359.1964382,405.6332365,191.1917722,282.8841018,201.9348999,83.83239637 +437.7109319,224.2043026,330.2309101,208.7530054,175.1661129,337.7381043,397.2470676,190.2734022,280.6249257,198.4888857,83.89127605 +421.4482836,220.9095995,321.4662628,210.0102166,175.8173642,344.9516522,398.1730455,190.0146295,279.6985862,199.3313023,83.90273917 +408.4804881,218.7586127,315.1795271,212.9480162,177.4478949,359.139905,405.4713008,190.9562925,282.0423999,201.890885,83.87296808 +420.3937313,220.8828604,319.1548804,211.8328739,175.3681021,345.6795741,388.3466792,188.5680084,274.7825775,198.2542,83.91887947 +418.6959381,219.3238865,318.4168142,207.1163089,174.3179053,334.4646595,387.6171945,188.2364268,274.4476062,196.7477533,83.97865275 +432.7463145,224.3538729,329.4352956,212.9220107,177.3524478,354.564443,411.8616909,192.349422,286.9556178,202.182007,83.80001484 +417.1304085,220.0757133,318.3569801,211.0688723,175.8513698,347.4286869,394.5159709,189.4345241,277.5553787,199.2062345,83.91110386 +396.8514861,214.1000786,306.9981178,205.3431882,174.8753019,337.8691298,391.3884051,188.3610363,274.6609064,197.5864802,84.02736274 +401.1769996,214.7232642,306.3311824,205.3191586,172.9501454,328.111529,370.7079724,185.3480127,265.0823944,193.9495807,84.08793791 +432.0258562,224.0792807,328.592118,212.5033512,177.0130286,352.388791,408.3205427,191.8648452,285.2991061,201.5360053,83.81937165 +416.5323348,219.6671681,318.9386324,209.5305933,175.9540438,345.8075985,399.7980294,190.0852465,280.0318443,199.5761824,83.91173078 +408.7460764,218.4299566,313.5333028,212.3186315,176.1834114,352.3425148,393.5659845,189.0317879,276.2680776,199.5552059,83.9169702 +430.3894343,222.981012,326.0701971,210.5283678,175.725292,344.0734451,397.8401265,190.1626237,280.112536,199.2514503,83.88189747 +407.3294994,217.0500055,310.3996313,208.8847078,174.0673478,337.4732195,376.5389269,186.5104096,268.2877224,195.8312553,84.01920755 +399.885888,215.0936541,308.0642914,206.8882995,174.6579842,338.7033335,387.0350895,187.7016193,272.6589895,197.0705144,84.01751813 +415.1788443,217.4285977,315.5062344,203.1025538,173.0051079,323.1360826,379.9882617,187.0482539,270.7964416,194.5501392,84.05745372 +446.5184603,228.5656184,338.577876,216.379783,178.7499728,363.491496,422.7564904,194.4570074,293.2584554,204.7100116,83.69784244 +403.2883725,217.3325701,311.8073129,212.246591,177.2172833,358.2635744,402.9656857,190.3552876,280.2892653,201.4103706,83.8987051 +422.0875294,220.8430544,321.4766457,209.3786839,175.5203243,342.6135137,396.168323,189.7322965,278.8086639,198.8354431,83.91550558 +412.8616289,217.3810954,314.3053802,204.8833058,173.3512122,327.5818281,380.1487483,186.9820941,270.5891578,195.0139012,84.03910478 +431.0446012,223.4726361,326.7942767,211.6871906,176.2258455,347.9324292,400.8236772,190.676976,281.5627098,200.0969952,83.85627892 +434.3866492,225.8979877,330.0153182,217.729062,178.2232149,364.8607247,410.4823043,192.4079848,286.3889371,203.3424356,83.74918506 +435.0558508,225.0292293,330.2644788,213.6951475,177.2518189,354.7986149,409.2309678,192.0567993,285.8641172,201.9311955,83.79588848 +390.8184295,212.1764342,301.4955522,204.1038532,173.4100176,330.2875787,376.2033825,185.8775743,266.9043411,194.7997922,84.10240471 +413.4672879,219.3391733,315.5682596,211.7065376,175.5370791,347.3255391,388.8225606,188.4589605,274.4843215,198.4541086,83.93228094 +399.1011532,214.9553345,306.5372498,207.6012675,174.2841449,338.1148019,380.2646972,186.7496301,269.3707078,196.2348096,84.03409298 +422.084039,221.1293613,322.2833109,210.1427645,176.2441682,347.1060647,402.3549028,190.6989424,281.7367553,200.1423857,83.8855654 +411.2504042,219.2328133,315.6546042,212.8341306,176.626796,354.6114359,398.062565,189.80156,278.6725581,200.3881025,83.89081195 +400.5989301,214.529137,307.4799295,204.357412,173.6244404,330.0512094,380.3040589,186.7713187,269.6768071,195.3419766,84.06841909 +408.5871341,218.4528989,313.7680403,212.2690114,176.3482283,352.9213371,395.0255901,189.3459005,277.0922492,199.8583061,83.91427306 +420.7738119,221.3114723,321.1140233,212.3079285,176.5677141,352.0604019,400.4702567,190.4245126,280.5742561,200.4976045,83.87090835 +401.9522133,216.9658903,311.8111596,211.6839779,177.5942516,359.4079056,408.3280772,191.0831374,282.751328,202.1760458,83.8884106 +409.4105659,219.1938703,316.5582835,213.5424064,178.1282233,363.1273993,412.1831018,191.9185897,285.2257265,203.1329188,83.83973879 +427.5534641,222.839975,326.8345803,211.3425147,177.1721338,352.1815171,412.3570619,192.2871735,286.9149452,201.9200285,83.82724704 +429.4960059,222.6734236,325.7891426,209.973259,175.7256771,343.3312059,398.7477428,190.3176103,280.5872616,199.2967162,83.88563628 +412.9003398,218.9459992,315.2320896,210.7485552,175.3686047,345.4521306,389.0709572,188.4326766,274.5261088,198.2341945,83.94251758 +405.3567251,216.2029463,312.4313975,205.8744763,175.234976,338.9187726,396.9526019,189.3542873,277.9473223,198.3959457,83.98612169 +407.6208162,218.1973374,312.5996999,212.6323212,176.0781354,352.4060427,391.1608542,188.7438986,275.1485275,199.314455,83.92426444 +409.1348797,217.7355899,314.8252922,208.3874706,175.983968,345.5216732,399.9196976,189.9940717,279.5753345,199.5984155,83.94016927 +411.0636383,217.3297352,314.2233416,205.8923494,174.3247825,333.844516,387.5674141,188.1351139,273.9605871,196.7233202,84.00542566 +409.8092207,218.1615742,315.0280913,209.595068,176.0401621,347.4193232,398.4257754,189.7584053,278.8493686,199.5872541,83.92913405 +406.9514416,217.1791997,312.4534856,208.7449525,175.3049452,343.2305971,391.3540747,188.6141235,275.2743744,198.2204862,83.96770497 +444.2347598,226.1732632,334.0543358,210.626402,175.6975841,341.9769791,400.4303483,190.9153978,282.4923547,199.4162559,83.8471021 +422.3913846,220.9532159,321.6513702,209.5760204,175.6119386,343.3072939,396.6638239,189.82947,279.055835,198.9949539,83.91070506 +447.1700347,227.7217458,338.0806256,212.8834447,177.3930387,352.2087665,415.7146543,193.3698303,290.1330034,202.5081633,83.75992123 +421.172965,219.8951199,318.987902,207.5372176,174.0375672,333.4040568,383.3458917,187.6955481,272.552086,196.1684982,83.9836757 +437.0340481,224.3020239,329.3144888,209.9823483,175.1263224,339.4211277,394.1952111,189.7488082,278.9468224,198.2768823,83.89045415 +419.605832,220.6934559,319.4103763,211.5117348,175.7764282,347.4897067,393.4927394,189.2540469,277.0781824,199.0564283,83.90591109 +447.0687791,226.8058019,334.7626775,211.0884481,175.226874,339.9720497,394.9597924,190.1396605,280.0503108,198.5181149,83.85564652 +406.4954284,216.2569443,311.2896125,205.7392016,174.0431634,333.0074127,383.9214053,187.4420814,271.8328483,196.1136623,84.02848479 +405.5280959,217.6811834,312.6031078,211.7652672,176.6218909,354.1038591,398.6390193,189.7514309,278.5353222,200.3816837,83.91218083 +408.6723291,216.6011861,312.4936501,205.1842701,173.6729036,330.0318405,382.4921348,187.2450237,271.4300388,195.5444864,84.03384218 +412.5739922,218.0176079,314.5624681,207.4860549,174.3049897,335.7612021,384.3160938,187.6888818,272.4443793,196.5363129,83.99491654 +416.5157938,219.7868149,318.4875647,210.1546385,175.9048172,346.4717232,397.190016,189.7642924,278.7870086,199.3850887,83.9140093 +404.4456867,215.9056117,310.1217212,206.2877163,174.2909373,335.2954523,384.333652,187.5512382,271.9119137,196.4994769,84.02480236 +422.4386898,222.3121787,322.2441963,214.7296259,177.1156025,357.6609681,401.8929829,190.6988829,281.3153161,201.3136397,83.83646225 +430.5396564,224.0198995,324.8748423,215.1127363,175.9426767,351.1779393,390.5023252,189.1304793,276.4109137,199.1996153,83.85873673 +411.3467372,219.4692522,316.9821448,213.0731979,177.5702768,359.6192055,407.9113193,191.2187796,283.2177098,202.1536712,83.85558882 +428.1695714,223.6656454,326.0126183,214.565252,177.3029819,357.1703905,405.5728343,191.4665441,283.6588979,201.7976483,83.81375175 +441.5378857,228.0857424,336.8924057,218.5503269,180.0874083,373.537368,430.9529639,195.6501748,296.7260815,206.9192571,83.65597364 +421.3180301,221.5246546,320.2297362,213.3420506,175.9763673,350.5851826,392.5486054,189.1664161,276.7091868,199.2872413,83.88633067 +414.6235689,219.0717543,315.763129,209.8469984,174.8871996,341.6360698,386.1896977,188.00194,273.281858,197.4363087,83.96013359 +418.3291239,220.314567,318.9499811,210.7890578,175.6996075,346.0337001,393.5917686,189.3112019,277.2112179,198.940129,83.91679017 +411.5604764,218.4477567,314.6752676,209.7144026,175.2377627,343.4874708,389.4136046,188.461944,274.6774749,198.0551924,83.95582286 +392.4020896,213.7145161,304.095804,208.0399044,175.3092671,344.772212,388.5655449,187.8908723,272.8205718,198.0100848,84.0160501 +410.009772,218.8305224,314.4641377,212.5993771,176.4081998,353.6130485,395.3882337,189.3810113,277.2464164,199.9643771,83.90637526 +453.2241444,230.2997133,342.5249208,217.0544303,178.7359875,363.1332382,423.2782647,194.709078,294.1065415,204.7546994,83.67604774 +422.3910005,221.4142902,320.8422793,211.7771303,175.5418339,345.9169024,391.2087067,189.0213804,276.3491069,198.627232,83.90510195 +436.2452007,225.2026613,330.3009576,213.5934665,176.8240963,352.5055842,405.0894173,191.4315592,283.9321624,201.1449473,83.8104383 +449.5231828,228.5731783,339.1507924,214.2440641,177.5139062,354.3212652,414.6125452,193.2645636,289.6978885,202.6331773,83.74398585 +403.1433596,217.1187113,310.29129,212.1540409,176.1878984,353.0914745,392.0583904,188.73493,275.1745586,199.4597116,83.9367701 +441.595535,226.5238585,333.7445048,213.7951595,177.1559946,353.5456158,409.2128523,192.229652,286.3448238,201.8456402,83.78246328 +420.2825725,220.7084467,320.1455632,210.8154664,175.8096207,346.4818941,395.549319,189.6027051,278.2214042,199.2141891,83.90376795 +422.1410286,220.694063,322.5436875,208.3222985,175.7454888,342.1148219,402.1509671,190.5562367,281.7388737,199.4357019,83.90808134 +444.4773094,227.8845767,336.8735693,215.7420634,178.2222299,360.4806132,418.1480025,193.6715412,290.8929912,203.7425231,83.7256654 +432.3559686,224.9745546,329.6129458,215.4147454,177.9616301,360.8543952,413.6878656,192.6239907,287.721264,203.090148,83.76791351 +387.1010119,211.8968642,300.0113278,206.1716859,174.2940835,338.1292655,380.1211956,186.4838731,268.4837305,196.2016562,84.0743217 +423.2006485,223.3071561,324.4684401,217.4060048,178.894726,369.9131537,415.5371147,192.8177077,287.7568091,204.4283233,83.75763375 +455.6807637,231.3168697,343.9498633,219.0826532,179.4291737,368.9518588,426.3363244,195.2834818,295.6171431,205.8928567,83.63461606 +409.3100931,217.5816206,314.0451311,208.0230652,175.3712281,342.169839,393.8490364,189.0652549,276.6687855,198.4558996,83.96447383 +430.8194773,223.4584071,327.9917779,211.2397344,176.7594411,349.682244,408.5070231,191.7882688,285.3069506,201.1913318,83.83496957 +431.8028017,224.1711795,327.3857553,213.7206711,176.5951693,352.2872751,401.5485169,190.7597247,281.8555607,200.6291164,83.83027058 +418.1502617,220.2749602,319.6636139,210.4824784,175.9141094,346.6752453,398.1380241,189.8559629,279.318713,199.4401478,83.90435921 +392.1496966,213.5503187,304.4559486,207.3700055,175.50909,344.764963,392.1470297,188.4227055,274.5326765,198.467226,84.01310353 +412.1082329,217.9062006,315.5635391,206.9712325,175.0096488,338.4946462,393.4466808,189.0008492,276.7302648,197.9548241,83.97164223 +408.4634069,217.9429195,313.1945235,210.5770413,175.6773045,347.3914884,391.4973257,188.7429944,275.4145099,198.7623731,83.943998 +465.776409,231.0567128,347.1806893,210.4164978,175.7848716,339.0293799,407.3519897,192.5061592,287.7104189,199.9969199,83.78930559 +420.7295783,220.7085719,320.9380798,209.8711203,175.7669871,344.7082228,397.6198445,189.8925433,279.3206084,199.2272447,83.90927226 +424.387624,222.7518306,323.3057365,214.8312808,177.1228845,357.5866732,402.2957796,190.8098536,281.6470534,201.3665768,83.82865819 +395.8535805,215.0687734,305.1194646,211.0343313,175.3498041,348.7280007,383.4322578,187.2460654,270.535753,197.8427071,83.99334274 +388.9241316,212.1811008,300.8841894,205.6431558,174.0444295,335.9219713,379.4620275,186.3156071,268.1959187,195.8098788,84.07798851 +445.0942195,227.7256087,336.6829484,214.8979854,177.7466317,357.0202924,414.7483138,193.1726647,289.3508596,202.9339998,83.74404306 +426.8615865,223.5893294,325.4748486,210.3106366,177.2505753,341.5352954,397.415021,191.9048559,281.0040679,200.5460745,84.61354205 +426.1168114,224.8940172,325.9811382,215.9248495,179.1178021,358.1980832,405.5159432,193.1718467,284.4898224,203.5002632,84.52226639 +440.2202198,229.7952331,337.6665135,220.8503278,182.4507077,377.8269897,433.7028771,197.9776082,298.9994691,209.5507665,84.34071942 +407.2751564,218.3685984,314.1782538,207.3024947,176.5497166,337.0871091,392.0063481,190.5528959,277.0328633,199.2041503,84.7043694 +419.6270185,221.3876741,318.0212796,209.6735109,175.2617459,332.7284547,375.0610393,188.2568111,269.5885876,196.6702457,84.71525302 +397.8431138,217.734113,308.4003118,213.8963033,177.990451,355.1500606,389.687669,190.1497022,274.8604568,201.0197482,84.65680269 +432.6225407,224.5105841,328.8492868,209.2106873,176.9445496,337.7315838,398.8813761,192.1764802,282.2262269,200.2476752,84.61439504 +422.7451282,224.3224006,324.3888794,216.59464,179.5443761,361.7386113,407.4250881,193.4305585,285.1144092,204.1687198,84.5134864 +440.8565632,226.9390993,333.408507,210.9924284,177.2228565,340.2115266,399.0665812,192.5193627,282.9411486,200.6645347,84.57540024 +424.6234149,223.6355808,324.6636365,212.2600739,177.8861459,347.4679463,399.9287196,192.2634897,281.9938326,201.5169597,84.58752498 +411.979957,221.5587006,318.5599409,215.1838776,179.5425353,361.6504383,407.1903806,193.1653956,284.2055989,204.1062195,84.55292762 +423.7504584,223.6749744,322.4718853,214.0961958,177.4343884,348.1886959,390.1941737,190.7941051,277.0592889,200.4366439,84.60091561 +421.6529154,221.9515148,321.4379056,209.3463056,176.3506273,336.9439293,389.4788463,190.4494066,276.7552942,198.8963231,84.66638894 +435.9776535,227.0866948,332.6107546,215.2355748,179.4552606,357.0926643,413.6995289,194.6037137,289.2316,204.4233577,84.48360531 +420.4833214,222.8483235,321.6523016,213.3025143,177.9214771,349.9105783,396.3088215,191.642666,279.7726197,201.3937578,84.5925626 +399.9374079,216.7283933,310.0928813,207.4624677,176.9023373,340.2839033,393.0666992,190.5089667,276.7918028,199.7169582,84.71227377 +404.2996521,217.4184092,309.5296595,207.4575805,174.9495965,330.5562327,372.4802995,187.5235576,267.3382597,196.039446,84.77327006 +435.3496436,226.8641046,331.872354,214.7894641,179.1095938,354.9106212,410.1074135,194.1274822,287.5836844,203.7614691,84.50169602 +419.6337141,222.3380513,322.0434673,211.7781483,178.0212328,348.31164,401.580939,192.3087934,282.2875492,201.7654085,84.59737954 +412.0625921,221.1712518,316.781746,214.5973439,178.2601192,354.8850973,395.395777,191.2500451,278.512936,201.7533153,84.60051835 +433.6244234,225.7246714,329.2758783,212.7977423,177.7952571,346.5690965,399.703845,192.3978108,282.4017802,201.4460179,84.56545488 +410.6981242,219.8347324,313.7476883,211.0690506,176.0977927,339.93546,378.3551168,188.6954989,270.5256677,197.9608592,84.70090814 +402.8986227,217.7134427,311.1183865,209.0907709,176.689485,341.1984982,388.8035554,189.8984806,274.9109278,199.2108368,84.70547279 +418.1216509,220.056704,318.5509082,205.229483,175.0006804,325.5489055,381.7789911,189.2269264,273.0622839,196.6435341,84.74445738 +449.9274047,231.3905655,341.8926822,218.7491447,180.8851663,366.0609188,424.6130248,196.7621736,295.5898013,206.9944391,84.37947431 +406.70893,220.0836276,315.1043062,214.4949593,179.3049328,360.7930215,404.731947,192.5549321,282.4591174,203.6203534,84.58068904 +425.2747131,223.570122,324.6758747,211.611147,177.582308,345.1040559,397.9402172,191.9645581,281.0822058,201.0132485,84.5996225 +415.7637233,219.999619,317.3308812,207.0568561,175.359212,330.0378561,381.9398555,189.1852681,272.8940857,197.1240654,84.72743657 +434.3825262,226.251179,330.0631407,213.9610489,178.3068199,350.4245036,402.6808856,192.9087121,283.8238923,202.3054647,84.5381233 +437.9645979,228.7870011,333.4772423,220.0826726,180.3512333,367.442779,412.3099017,194.6963198,288.6925354,205.6075711,84.42853447 +438.3900821,227.8125313,333.5282563,216.0109903,179.3561694,357.3279689,411.0737051,194.3169423,288.1478089,204.1717243,84.47805035 +393.8493182,214.7877436,304.5693724,206.2111037,175.4072848,332.6973495,377.9554704,188.0083151,269.0678124,196.8930376,84.78861818 +416.7779857,222.1166054,318.8766913,213.9775197,177.6028013,349.882253,390.6110463,190.7104295,276.8024293,200.6310637,84.61631111 +402.284594,217.6496178,309.7357344,209.787303,176.3122374,340.5983928,382.0404519,188.9367126,271.6086339,198.3644848,84.71936925 +425.3599767,223.8738056,325.5174752,212.3716192,178.3185513,349.5805168,404.1200764,192.9171703,283.9576854,202.3378388,84.56794736 +414.5674943,221.9891557,318.9262187,215.1167406,178.7135572,357.171801,399.832403,192.0429568,280.9343322,202.5956641,84.57433239 +403.6881209,217.1846115,310.6125567,206.4776329,175.6307481,332.4714647,382.0450041,188.9318126,271.8781199,197.4438957,84.75392302 +411.9946445,221.24007,317.114094,214.5183849,178.4264883,355.4541552,396.7768516,191.5704782,279.3243085,202.0509437,84.59622837 +424.1998419,224.1076511,324.4451829,214.5718655,178.65266,354.5663177,402.288791,192.6485534,282.8055624,202.7062137,84.55200372 +405.2656027,219.6681306,315.0203023,213.9183345,179.6852659,361.9245312,410.0468549,193.2731875,284.887526,204.3926262,84.5711344 +412.8050232,221.9541536,319.8540439,215.8051363,180.2372356,365.6711968,413.8830134,194.1449784,287.4026579,205.3695819,84.52137673 +430.6987721,225.5392353,329.9656857,213.6233704,179.2665257,354.7015397,414.1251309,194.5398373,289.1831039,204.1467669,84.51197853 +432.7454896,225.4225976,329.0099044,212.2132144,177.7935587,345.7999848,400.5655491,192.5405044,282.8400829,201.4866429,84.56817578 +416.162807,221.6858095,318.4708078,213.0061617,177.4295721,347.9736962,390.9013965,190.6554856,276.8020809,200.4105064,84.62661347 +408.3418297,218.7965652,315.4345651,208.0352288,177.2713473,341.3515324,398.6887954,191.519685,280.1174418,200.5463187,84.67252232 +411.0536724,220.9797566,315.9359352,214.8817668,178.1522937,354.9131199,392.9746452,190.9393228,277.3440475,201.5062653,84.60527155 +412.3773896,220.4371855,318.0200983,210.5693093,178.0433269,347.9714984,401.6464107,192.176544,281.7372689,201.7725243,84.62306163 +414.1541051,219.9933941,317.3387077,208.0462045,176.3515576,336.2673948,389.336607,190.3075777,276.1638619,198.8565949,84.69005034 +412.9994564,220.8613389,318.2080406,211.822542,178.1070868,349.927168,400.1585536,191.9775761,281.0819151,201.7699711,84.61384381 +410.1174529,219.8700768,315.6233551,210.9566354,177.3567341,345.7236354,393.1078325,190.8192846,277.5075401,200.3834741,84.6526783 +447.4820638,228.9447933,337.2803972,212.9047121,177.7693367,344.4626558,402.3131369,193.1680508,284.8134573,201.6155455,84.52999395 +425.6200443,223.6899709,324.8678667,211.803569,177.6756766,345.7838825,398.4463876,192.0501299,281.304243,201.1760264,84.59386055 +450.4559165,230.5059124,341.3230938,215.1849049,179.4979864,354.7062479,417.5289556,195.64174,292.425796,204.7521591,84.44179785 +424.2632508,222.5864559,322.1206409,209.7556843,176.0690876,335.8742673,385.2150341,189.9055068,274.8538716,198.3109625,84.66922246 +440.176208,227.0401052,332.495668,212.2647926,177.1863287,341.9388306,396.0648711,192.0155325,281.3195442,200.4574271,84.57580711 +422.912075,223.4449098,322.6529535,213.788458,177.8475125,350.0030235,395.3722602,191.4743798,279.3436301,201.2506952,84.58908292 +450.2745248,229.5801466,337.9814486,213.3781521,177.2944516,342.465501,396.8572771,192.3990296,282.400166,200.7115763,84.53881224 +409.542131,218.9144915,314.4053569,207.906551,176.0639931,335.4704215,385.6639452,189.6404213,274.0926981,198.2352882,84.71516113 +408.8394847,220.4189571,315.8618204,214.0132796,178.7028263,356.6388429,400.3708868,191.9699128,280.7481287,202.5804409,84.59542196 +411.5462746,219.2068619,315.5040416,207.3566277,175.6866323,332.496103,384.2246463,189.4527065,273.7221393,197.660079,84.72257792 +415.6993724,220.7164336,317.7332665,209.6774156,176.3390547,338.2281538,386.092196,189.8925815,274.7059279,198.6757743,84.67982503 +419.7648324,222.5227903,321.7172077,212.3921442,177.9734815,348.9741398,398.9566284,191.9903119,281.0374261,201.5704689,84.59762372 +407.657117,218.6049391,313.3230376,208.4196331,176.3160337,337.7026611,386.0829941,189.7035508,274.0708243,198.6264637,84.70745691 +425.8733531,225.1323191,325.6069362,217.0520871,179.2174295,360.2442006,403.708894,192.9703404,283.6246329,203.5416677,84.51867778 +433.9481733,226.8549426,328.2353864,217.460787,178.0291733,353.7562046,392.421032,191.405257,278.7787613,201.4110417,84.54120131 +414.6435369,222.1943577,320.1945707,215.3793695,179.6711481,362.200005,409.7062442,193.463232,285.4699683,204.3850741,84.54001632 +431.6591041,226.5176211,329.4279534,216.8604841,179.4076933,359.7132823,407.3453488,193.733892,285.9387406,204.0282891,84.49394649 +445.0720871,230.943816,340.283132,220.9356067,182.245409,376.1401445,432.7913444,197.9636946,299.0372498,209.2321731,84.33633557 +424.6400915,224.2978393,323.4997948,215.6606445,178.0572216,353.1436229,394.440228,191.4151401,279.0252284,201.4930383,84.56993698 +417.838384,221.7994133,318.975461,212.1011578,176.9379529,344.1532367,388.0437165,190.2270074,275.583364,199.6004337,84.64509064 +421.6504699,223.0965319,322.2617752,213.035703,177.7668442,348.5558736,395.3565534,191.5561325,279.501866,201.1193798,84.59985798 +414.7986403,221.1874675,317.9237104,211.950964,177.2926769,346.0109901,391.1821879,190.6958321,276.9675989,200.2191051,84.640512 +395.6551435,216.4159868,307.3348756,210.2100619,177.3515795,347.2656338,390.2390391,190.0763532,275.0052062,200.1530391,84.70057034 +413.4105331,221.604292,317.7763755,214.8722443,178.4887357,356.1529215,397.2069864,191.6015103,279.4839791,202.1651407,84.58879996 +456.5618056,233.1187447,345.8092758,219.4529522,180.8744715,365.7276109,425.1460912,197.0428729,296.4991043,207.0447872,84.3588764 +425.6531348,224.1905581,324.1241774,214.0554023,177.611612,348.4621733,393.0021522,191.2834009,278.6837043,200.8117511,84.5890455 +439.5530481,227.9833526,333.5542602,215.9227811,178.9222867,355.0488454,406.9657907,193.7003141,286.2531792,203.3776994,84.4934552 +452.8401883,231.3784797,342.4228159,216.5782426,179.6258677,356.8496089,416.4566389,195.5550754,292.0288663,204.8862793,84.42599313 +406.5414355,219.8867844,313.6130724,214.4096672,178.2609085,355.6356425,393.8432064,190.9492261,277.4036716,201.6471841,84.61951861 +444.9977889,229.3335557,337.0431484,216.1113833,179.258746,356.051002,411.1006012,194.4814008,288.6187015,204.0875017,84.46332402 +423.5700202,223.45067,323.3728123,213.0636967,177.8790563,348.9617886,397.3905827,191.807303,280.4457013,201.4064142,84.58615973 +425.1130461,223.3234871,325.5621215,210.5647056,177.805867,344.6056418,403.9318487,192.7865853,284.018088,201.6194314,84.59524112 +447.816146,230.6904322,340.1552415,218.1139889,180.3487205,363.0663785,420.0007772,195.98507,293.2576934,206.0134972,84.40869673 +435.585066,227.7221409,332.8034706,217.797428,180.0823252,363.4733713,415.5388534,194.9311205,290.089677,205.3531646,84.45318722 +390.3058842,214.5629471,303.2019286,208.2855255,176.3107018,340.5506874,381.8278699,188.6128332,270.6026902,198.3148203,84.75804749 +426.7424308,226.1428157,327.8576297,219.7639317,181.0296699,372.5213892,417.3677619,195.090291,290.0218627,206.7044714,84.4384014 +459.194782,234.1777424,347.3036495,221.4925262,181.5803006,371.5110966,428.2716436,197.5824177,297.9281257,208.2067333,84.31426467 +412.5364857,220.2862485,317.2423015,210.2128425,177.4208612,344.6319455,395.6117636,191.2552475,278.8706241,200.6168476,84.64819502 +433.9969507,226.1732049,331.1431121,213.520032,178.847634,352.1872221,410.3173591,194.0326522,287.5762503,203.4115588,84.51902418 +435.0634354,226.933173,330.6095274,216.0622035,178.6898671,354.852459,403.4337447,193.0329236,284.1981723,202.8567826,84.51445951 +421.2320819,222.951771,322.7683339,212.7695567,177.9846599,349.2230215,399.946939,192.1093069,281.6396539,201.6338272,84.5912857 +395.4007009,216.2379162,307.6758824,209.514699,177.5513827,347.2248925,393.8034103,190.5880018,276.6699404,200.6114074,84.69685897 +415.1640628,220.5444396,318.6265588,209.1641305,177.050169,340.9447623,395.2474631,191.1836104,278.9451693,200.1109872,84.65734391 +411.7701206,220.6875381,316.4597818,212.805651,177.7407913,349.8918392,393.2730889,190.9480021,277.6350488,200.9393203,84.62686546 +468.8575914,233.793189,350.3002878,212.7226793,177.8576996,341.5127398,409.264355,194.7894459,290.0995026,202.2063274,84.4739234 +423.9208152,223.4355486,324.1406644,212.1295541,177.8334463,347.236458,399.4022923,192.1452714,281.6329272,201.4104549,84.59455949 +427.8452344,225.5715133,326.6622269,217.146888,179.225619,360.1377435,404.1382554,193.0595582,283.9147868,203.5993568,84.50973234 +399.2135636,217.8202038,308.4287336,213.2716192,177.4026903,351.2704747,385.2206604,189.4494517,272.7753132,200.0023217,84.67716298 +391.9909932,214.8004172,303.9730744,207.7912821,176.0564386,338.3770666,381.2170219,188.4670849,270.3809235,197.922366,84.76481218 +448.4293844,230.5300165,339.9610372,217.241254,179.8638101,359.5642404,416.5913426,195.462162,291.6745894,205.1930961,84.42609061 +417.7890488,220.5262157,319.3380488,207.7609632,175.8729345,334.5115526,389.196725,190.0580966,276.20868,198.3494212,81.64201664 +416.8191771,221.7602625,319.685571,213.1751468,177.6621687,350.5729437,397.1332359,191.2947708,279.6580425,201.1961303,81.55779813 +430.474547,226.500262,330.9638,218.0274895,180.8855485,369.8432899,424.7577104,195.9733818,293.9308997,207.0671833,81.389003 +398.6908096,215.4710086,308.3421767,204.8269514,175.1809818,330.0897279,383.8970307,188.7345489,272.2951085,197.0235377,81.72897176 +410.7438953,218.3473218,312.0338852,207.0699324,173.9457597,325.8304971,367.214497,186.4921925,264.9458526,194.5807651,81.73590674 +389.2381531,214.8067362,302.4875061,211.1791632,176.5559823,347.450664,381.5994387,188.3596263,270.2318293,198.77001,81.68598691 +423.4004622,221.4383692,322.7362559,206.6744459,175.5748695,330.7990357,390.5939279,190.3217169,277.3823836,198.0501055,81.64223785 +413.5453345,221.2170726,318.1221626,213.8507763,178.0702232,354.0426925,399.0224611,191.5610305,280.3265208,201.841428,81.55007509 +431.4806435,223.7632531,327.0726522,208.4185284,175.8627921,333.278372,390.8321544,190.641501,278.0561557,198.4871354,81.6052092 +415.4936048,220.5391691,318.4363681,209.615407,176.4859731,340.1742224,391.6704072,190.3846888,277.1184881,199.289801,81.61892631 +403.1182465,218.5611555,312.4534516,212.5153021,178.0632394,353.9951696,398.7906489,191.3182681,279.4876809,201.7767459,81.58844644 +414.6817765,220.5921709,316.3311648,211.4109798,176.0396271,340.8920301,382.1276644,188.9937514,272.4006762,198.2333021,81.62987828 +412.5988263,218.9158512,315.4168129,206.7521536,174.9912355,329.9058271,381.3127036,188.622189,271.9595979,196.7243304,81.69171566 +426.4404795,223.8958948,326.2061964,212.5122796,177.9942718,349.560498,405.1478815,192.6836984,284.2855191,202.0957799,81.52116493 +411.5171744,219.8159216,315.5703308,210.6749036,176.5055212,342.6112903,388.1389894,189.8325287,275.1110021,199.1549966,81.62287418 +391.5435754,213.9197516,304.4198883,205.0157786,175.5049721,333.2080751,384.928341,188.7303231,272.1802343,197.499954,81.73661248 +395.8760181,214.5231696,303.7918847,204.9487324,173.6319524,323.7161685,364.7315053,185.7938571,262.7999266,193.9525954,81.79162249 +425.9289014,223.6736945,325.4428509,212.1017722,177.6716646,347.4967257,401.6630696,192.2117079,282.651422,201.4736942,81.53812494 +410.5574813,219.2996703,315.9429558,209.1420072,176.6012477,340.9500575,393.2468395,190.4457948,277.4526309,199.5063427,81.62842943 +403.0685018,218.14979,310.7301612,211.8607018,176.8182552,347.2539605,387.1568398,189.4352433,273.819827,199.4800582,81.63150524 +424.2700639,222.5781958,322.9999042,210.1489308,176.3966861,339.3696334,391.4010354,190.5393114,277.5806114,199.2183912,81.59638089 +402.0864133,216.8816463,307.87378,208.4856774,174.7425582,332.8906422,370.5012254,186.964197,266.0224588,195.8258541,81.72373136 +394.1860756,214.7902734,305.2704035,206.4893372,175.3016801,333.9214753,380.6436,188.0870043,270.1703045,197.0064581,81.73059002 +409.3937151,217.1005966,312.6898354,202.8116072,173.6973175,318.9647686,373.7999451,187.4384027,268.3546651,194.5550884,81.76376912 +439.9894848,228.0298707,335.1216393,215.9316444,179.3904679,358.3495384,415.8450284,194.7604713,290.4599693,204.6101946,81.4236855 +397.8340341,217.1152956,309.0808823,211.7989461,177.8223664,353.0436269,396.2980785,190.7212954,277.7488514,201.2856486,81.61432749 +416.1873942,220.4937434,318.5036411,209.0054477,176.1912404,337.9246163,389.7234152,190.1088391,276.2688454,198.8000947,81.62952695 +406.9834497,217.020476,311.4209965,204.5406628,174.0385776,323.2165466,373.9694259,187.3802584,268.1438744,195.0124518,81.74888391 +425.0113887,223.0968962,323.75893,211.3016028,176.8884694,343.1543515,394.3445723,191.05097,279.0324898,200.05095,81.5708587 +428.389562,225.5141112,326.8820012,217.2420833,178.867313,359.6528974,403.8433166,192.7716264,283.7803161,203.2633215,81.46994467 +428.836178,224.5950058,327.0744634,213.2785771,177.903454,349.8288375,402.5944762,192.4070612,283.2377175,201.861345,81.51540717 +385.6106107,212.0156044,299.0464492,203.7610771,174.0507178,325.7619113,370.0518588,186.292647,264.5793208,194.7434692,81.80706806 +407.7667177,219.0351594,312.7017016,211.2470081,176.2054006,342.4174316,382.5145357,188.8743869,272.0307019,198.4246567,81.6460961 +393.704551,214.7394802,303.9223073,207.1943859,174.9389297,333.3957663,374.0600595,187.1727786,267.0038635,196.1942441,81.7424785 +416.2612115,220.8088433,319.3445538,209.7772276,176.8968524,342.3281646,395.7919963,191.0587415,279.1691265,200.0786028,81.60010766 +405.5386034,218.935206,312.7750814,212.3721946,177.2656753,349.4873789,391.5581645,190.190114,276.1526005,200.3112852,81.60767346 +395.2331133,214.3211022,304.8910516,204.0246311,174.2866059,325.6173425,374.0689471,187.1730303,267.2773329,195.3080246,81.77422876 +403.1224335,218.2239526,311.0231868,211.8208219,176.9898739,347.8857895,388.5765283,189.7449169,274.6208628,199.7886568,81.6280273 +415.0327068,221.0141548,318.2242263,211.8939036,177.2138124,347.1312495,393.9492862,190.8029427,278.0573819,200.4298587,81.58517827 +396.4595443,216.7407696,309.0616405,211.2570734,178.1850666,354.1426528,401.5626583,191.426398,280.1574685,202.0264624,81.60595093 +403.8325652,218.9359763,313.6961085,213.0962124,178.7314838,357.8265035,405.3679285,192.2573751,282.5831461,202.9945162,81.55945081 +421.3319945,222.4003469,323.6314397,210.9516255,177.8147971,347.2255948,405.5860285,192.6106394,284.2037296,201.8312412,81.54867746 +423.5078229,222.3093875,322.7855138,209.619305,176.3962048,338.6843111,392.3042478,190.6909812,278.0607279,199.2614565,81.59898391 +407.1701677,218.6463916,312.4014366,210.3192947,176.0272814,340.590743,382.7607207,188.8439269,272.095229,198.1930226,81.65503458 +399.6506622,215.915479,309.6352431,205.5488756,175.865012,334.2275513,390.4040531,189.7019546,275.3923269,198.3053258,81.69898161 +402.2203488,217.9988673,309.9562551,212.1889172,176.7128538,347.3776872,384.8417297,189.1638392,272.7798333,199.2439908,81.63551747 +403.5984295,217.4968,312.0734933,208.0339227,176.6172353,340.7262809,393.3373629,190.3519307,277.0317506,199.5106747,81.65267703 +405.4528519,217.0674423,311.4941677,205.5727848,174.9879186,329.3619882,381.2603417,188.5235272,271.5194031,196.6862331,81.71370895 +404.0976594,217.864401,312.1580309,209.1943291,176.6822543,342.5103806,391.8682596,190.1258542,276.2876325,199.5110193,81.64454238 +401.3279887,216.9071828,309.6717261,208.3497146,175.9539284,338.4166934,384.947448,189.0037184,272.7930415,198.1609888,81.68032785 +437.8755422,225.7018467,330.8281086,210.2727218,176.3890455,337.426049,393.9884647,191.2829024,279.9243166,199.4075772,81.56203319 +416.5451206,220.6246208,318.7216684,209.2106616,176.2782664,338.617567,390.2267477,190.2077079,276.5375767,198.9546174,81.62382385 +440.7260501,227.2204496,334.7235309,212.5153361,178.05783,347.4154544,408.9832488,193.6903807,287.4167493,202.4477677,81.48087155 +415.242086,219.5386063,316.0881444,207.1773984,174.7244057,328.9309411,377.1734532,188.1070856,270.1442703,196.1685378,81.69307639 +430.7016825,223.8256756,326.1017736,209.5984555,175.8254374,334.8550149,387.8330819,190.1312307,276.395283,198.2818299,81.60584487 +413.7293061,220.3615105,316.5061455,211.0913757,176.4307604,342.6147759,387.1229687,189.6537891,274.6258824,199.007328,81.61915404 +440.6782262,226.3251343,331.5409885,210.7261693,175.9330886,335.4712973,388.6936642,190.5338679,277.5576613,198.5358254,81.56958271 +400.8601595,215.9687989,308.5134965,205.3792356,174.713856,328.4838591,377.6296137,187.8358861,269.3696515,196.0865008,81.73828799 +399.9924052,217.435367,309.8271458,211.3228218,177.2492559,348.9886949,392.0941802,190.1329276,276.0165044,200.2885142,81.62787515 +402.8509554,216.2528,309.6174497,204.8313139,174.3520616,325.5693438,376.2522343,187.6361036,268.9547745,195.5286163,81.74545269 +406.9203433,217.7345326,311.7867289,207.1204038,174.9810956,331.2044696,378.0981941,188.0990128,270.0306001,196.5193648,81.70426143 +410.7470553,219.4757678,315.5866314,209.7590364,176.560365,341.6438697,390.7019317,190.141672,276.2535025,199.3292109,81.6283338 +399.1705829,215.7381895,307.5877678,205.9593924,174.9458717,330.7755623,378.0927268,187.9585849,269.5462777,196.4566207,81.73042447 +416.5418156,221.9589284,319.2197659,214.2500976,177.7654485,352.5297589,395.3455719,191.0811585,278.7539654,201.2485247,81.55484732 +424.4897615,223.6281115,321.8364819,214.6272287,176.6237603,346.2341223,384.2923705,189.5627275,274.0023961,199.1916593,81.57369296 +405.4410397,219.1184137,313.9797218,212.6024009,178.1842393,354.3282613,401.1459603,191.5661223,280.5724772,202.0336615,81.57648419 +422.3460914,223.3318713,322.9931588,214.1235621,177.9579271,352.160002,398.9876686,191.8355868,281.0745766,201.7353298,81.53143273 +435.1470091,227.580279,333.4581291,218.0610054,180.6964778,368.123467,423.8311471,195.9266229,293.8463469,206.7689979,81.38475989 +415.3501628,221.1604467,317.2576854,212.8770926,176.6367436,345.5973587,386.2216851,189.5791317,274.2632547,199.2477303,81.60157194 +408.8110404,218.7459236,312.8983185,209.4263525,175.5562436,336.8793406,379.9295456,188.416386,270.8579569,197.4109246,81.6718973 +412.6107958,220.0090134,316.052069,210.3721506,176.3701023,341.2375509,387.1843097,189.7047067,274.7036047,198.9074792,81.63037084 +405.8748646,218.1494853,311.8271626,209.2923123,175.9039703,338.6895511,383.0547884,188.8626873,272.196918,198.0201114,81.66874627 +387.2081981,213.552133,301.5314072,207.6230081,175.9403626,339.8630039,382.1268412,188.2851163,270.3606639,197.9282157,81.72694258 +404.4023232,218.5684746,311.6738823,212.1430705,177.0437283,348.5322562,388.9326578,189.7794778,274.7808427,199.8880738,81.62053501 +446.4661005,229.6910818,338.9194834,216.5921238,179.389225,358.0000688,416.3802434,195.0112299,291.2742263,204.6704282,81.40440947 +416.5057438,221.0608788,317.8649287,211.3409682,176.2224606,341.1024181,384.9048655,189.429914,273.871505,198.6115062,81.61976162 +429.9479075,224.7450194,327.0833264,213.165843,177.4870363,347.5763617,398.5354891,191.7960259,281.3346679,201.0943691,81.52949461 +443.0037602,228.0469582,335.7437064,213.8437147,178.1825035,349.4557425,407.9151889,193.5947643,286.9909356,202.5793397,81.46598244 +397.7075597,216.9000057,307.5968159,211.6874402,176.8204491,347.986952,385.6412513,189.1432181,272.7371694,199.3821073,81.6499889 +435.3134204,226.076799,330.5350894,213.3961181,177.8123672,348.6702615,402.6091418,192.5805229,283.7409141,201.7842844,81.50050434 +414.476148,220.400357,317.2803744,210.4287169,176.4611767,341.6730475,389.1619177,189.9936927,275.7653869,199.1593807,81.61627864 +415.9423178,220.2586645,319.4124961,207.9616688,176.4022066,337.3818866,395.5495544,190.8974144,279.0974635,199.3745009,81.62638056 +437.9246524,227.3398257,333.4143802,215.2863875,178.8747502,355.3745833,411.3143279,193.9898096,288.118049,203.6624023,81.45128372 +425.869917,224.447312,326.2328604,214.9251926,178.6027867,355.5991032,406.8925246,192.9569547,284.980643,202.9997389,81.49449873 +382.1564293,211.8140709,297.6749873,205.8004873,174.919784,333.4025297,373.897158,186.9034316,266.1682798,196.1240394,81.77951739 +417.2427442,222.9379436,321.371932,216.8964742,179.5040658,364.4630606,408.6988387,193.1573102,285.0824465,204.2972438,81.48067427 +448.9986548,230.7414107,340.4291646,218.6157745,180.0559496,363.7207381,419.4461419,195.5833986,292.8459632,205.7758964,81.36132478 +403.7316235,217.3273828,311.2881371,207.6580463,176.018186,337.4427605,387.3801204,189.4420862,274.1691223,198.3917316,81.67567443 +424.5876823,223.02142,324.8133192,210.858601,177.4111839,344.8194054,401.8467064,192.1273058,282.6560833,201.1202358,81.55415975 +425.5128903,223.7127261,324.188314,213.2693239,177.2581385,347.3007965,395.0511116,191.1370604,279.2849592,200.5821759,81.54969163 +412.0186833,219.8527742,316.5646668,210.0544993,176.5702499,341.7539846,391.6046689,190.2233132,276.7235874,199.3832358,81.62330904 +387.0249789,213.4138561,301.9342768,206.9846506,176.1304501,339.8894276,385.633454,188.8014117,272.0516794,198.3692772,81.72348502 +406.2915533,217.5890197,312.7141257,206.6285482,175.6573321,333.8418686,387.00715,189.3697485,274.2224265,197.8923938,81.68366815 +402.9483835,217.7061759,310.4710953,210.1614839,176.3234298,342.4946021,385.1297908,189.1470299,272.9807162,198.702132,81.65585162 +458.8303139,230.412052,343.5919656,210.0955405,176.4986942,334.6457619,400.8366276,192.8418652,285.0292445,200.0108492,81.50859205 +414.7342443,220.3241317,317.8857848,209.4646582,176.4349971,339.9181315,391.0921701,190.2604808,276.7269267,199.185243,81.62564481 +418.5104573,222.4139517,320.3249192,214.3716525,177.7672588,352.488917,395.7831208,191.194788,279.1269379,201.2962227,81.5456562 +390.5530385,214.8813531,302.533041,210.5568627,175.986921,343.681861,377.1673879,187.6792068,268.1770347,197.7795968,81.70406057 +383.633454,211.9951319,298.3660741,205.2559213,174.6753148,331.1891518,373.2143218,186.725343,265.8270771,195.7377211,81.78585708 +438.6440375,227.2189595,333.3167939,214.4764175,178.4053573,352.0443044,408.034903,193.5055434,286.6504587,202.8671576,81.46658335 +384.16259,211.0889134,297.1749631,200.0865993,172.6284473,311.4576563,359.144545,184.7776877,259.924005,192.1308587,75.85605053 +383.1643592,212.1351955,297.3708438,204.7638796,174.1574676,325.584884,366.2358484,185.8550406,263.0147012,194.5865967,75.77761054 +395.1192572,216.2089169,307.1623286,208.9958057,176.9272027,342.6960834,390.5520695,189.8714726,275.5230845,199.641994,75.61770696 +367.224558,206.6992952,287.5374459,197.5275191,172.0306707,307.5203337,354.5334209,183.6410982,256.4971873,190.987574,75.9378408 +378.4916283,209.2803082,291.0059011,199.4927246,171.0046655,303.9863122,339.9710951,181.7558365,250.1438055,188.9496918,75.9476052 +359.1470455,206.1807452,282.4842572,203.014671,173.228382,322.8981159,352.5213559,183.373434,254.8148314,192.546641,75.89958301 +388.8749583,211.8320001,300.1208441,199.1621974,172.3534001,308.1641568,360.5180771,185.0054687,261.008336,191.8426776,75.85660734 +380.2812341,211.6692311,295.9973804,205.3506911,174.5006749,328.6491557,367.8093356,186.0823621,263.5999041,195.131635,75.77038694 +396.5189352,213.9433617,304.0607236,200.6949567,172.6445519,310.4695591,360.7047131,185.295842,261.5689537,192.287275,75.82163793 +382.2787757,211.1315705,296.4035986,201.6948777,173.1787959,316.4884142,361.5011072,185.0806923,260.7600794,192.9902227,75.83464051 +371.1689883,209.3941179,291.0916281,204.1836305,174.4889872,328.6199414,367.4338167,185.8711664,262.8408941,195.0672105,75.80621599 +381.6564355,211.1940729,294.611131,203.2591682,172.7710256,317.1360123,352.9526407,183.8921534,256.6784849,192.0457052,75.84692652 +379.4797247,209.6592923,293.7393693,199.2051711,171.8646209,307.4272692,352.3543451,183.5483403,256.2433173,190.7280833,75.90434636 +391.4556921,213.9427578,303.0272373,204.1818657,174.4326138,324.6506609,373.3695228,187.0408132,267.0700767,195.3395761,75.74224021 +378.6122529,210.4774372,293.8539529,202.6021476,173.1484199,318.5681624,358.1240715,184.5898418,259.0101865,192.7974282,75.8394138 +360.6456481,205.3170947,284.0283798,197.6633145,172.2661477,310.1457264,355.2594806,183.6222057,256.4017844,191.3308265,75.94495166 +365.3273112,205.9646926,283.8002938,197.6287046,170.7186292,302.0433175,337.6889552,181.1530826,248.2515194,188.3822796,76.00014334 +391.4076536,213.8311617,302.4852599,203.8530323,174.1853707,322.930482,370.2404998,186.6443453,265.6076448,194.8492174,75.75816429 +377.4684132,209.9706022,294.076501,201.2535548,173.2395191,317.0547825,362.8352386,185.1133334,261.0553421,193.1151952,75.8434259 +370.9140525,208.9824261,289.5158958,203.5950589,173.4189274,322.6256172,357.370186,184.2565811,257.9095401,193.0918373,75.8477261 +389.810356,212.8469107,300.3361453,202.1479406,173.0708603,315.7376116,361.1172838,185.1930334,261.1529682,192.8714844,75.81342939 +370.8181308,208.0283389,287.3715828,200.710491,171.6589825,310.132677,342.5960108,182.1634227,251.0957853,189.9774411,75.93628956 +363.0643163,206.057523,284.7767059,198.9267092,172.1266342,310.8895591,351.7119339,183.0869505,254.6608579,190.9708873,75.94045974 +376.9064996,208.1301527,291.4812874,195.8159843,170.7683598,297.8329229,345.5900528,182.5255764,253.0204849,188.8704062,75.97154064 +403.7864117,217.5937325,310.9395314,207.1884459,175.669942,332.5480739,382.8899826,188.851496,272.5003745,197.5679566,75.65028836 +366.1524177,208.0677344,288.012351,203.5135691,174.2686279,327.6866762,365.2619445,185.3487899,261.3148443,194.6250074,75.82990974 +382.8277015,211.0787389,296.4531966,201.1653649,172.9110731,314.4831902,359.6927212,184.8332595,260.0032278,192.5403267,75.84468343 +374.8582257,208.0764638,290.3721358,197.3100203,171.0720459,301.6191084,345.9399839,182.4938512,252.8946215,189.2928064,75.9586468 +390.4187508,213.2887152,300.9699141,203.14323,173.4808475,319.0515526,363.6285595,185.6262369,262.420704,193.5682071,75.78947479 +393.8782087,215.4898519,303.8248518,208.3653545,175.2259907,333.7746754,372.1988571,187.1543848,266.667363,196.4257498,75.69582828 +393.7898387,214.5901154,303.851572,204.8656981,174.3642495,324.9447045,371.0619629,186.8059333,266.1427677,195.1515786,75.73718885 +355.5731085,203.6760664,279.4153244,196.5689376,171.0153525,303.6336986,342.1950708,181.5403423,249.7787678,188.9581024,76.0134456 +375.7315054,209.877339,291.4775918,203.1074544,172.9567087,318.5436383,353.4794538,183.8133096,256.3601077,192.2896343,75.86186089 +362.9848125,206.0828452,283.7229092,199.5489882,171.8217474,310.4739887,345.8323987,182.3208298,251.9173161,190.2843775,75.95254922 +382.6509008,211.3079367,297.0938292,201.8165053,173.4901138,318.2912207,364.9080307,185.6325039,262.5294978,193.5955908,75.81650029 +373.3142358,209.7128103,291.3694629,204.0626467,173.8301096,324.6459093,361.3498492,184.9194477,259.956465,193.8522051,75.82494985 +364.283953,205.7103612,284.5863295,196.8114949,171.2504619,303.5864598,345.7124796,182.296491,252.0865991,189.4896215,75.9814021 +371.3764953,209.1370246,289.9171926,203.5909842,173.5937058,323.2762522,358.6022277,184.5414944,258.6094396,193.4017487,75.84426077 +381.6366603,211.4947664,296.1207137,203.6440969,173.7613908,322.5615857,363.2156455,185.4185209,261.5662945,193.9025605,75.80307431 +364.7249396,207.7122842,287.9235319,203.040264,174.5647583,328.5743629,369.9915207,185.948049,263.4450477,195.2388296,75.82168828 +371.5587211,209.6741146,292.0660652,204.6734165,175.066081,331.9337636,373.4190547,186.6790709,265.5754371,196.1239277,75.77819302 +386.9994306,212.6654059,300.7988365,202.8356431,174.2931538,322.6035701,373.8137924,186.9856779,266.9962266,195.1357551,75.76758007 +389.1406636,212.620135,300.157934,201.6976706,173.0628983,315.1131761,361.8555566,185.3180638,261.5658829,192.8929635,75.81592086 +374.7921147,209.4581891,291.0813987,202.2787435,172.7589091,316.8198266,353.5363195,183.754123,256.3844931,192.0096725,75.86989621 +367.5430304,206.9924895,288.4916006,198.1299929,172.5726392,311.0283954,360.2066907,184.4529683,259.2293816,192.0199609,75.90906805 +370.3403152,208.8941709,288.9229399,203.9051497,173.3143014,322.7615854,355.1979609,184.029668,257.0261084,192.865806,75.85231002 +371.2822988,208.4086654,290.6803848,200.276804,173.2291256,316.8020041,362.6413627,185.0139192,260.6412764,193.0744148,75.86555063 +373.0936777,208.0588066,290.279994,198.1744486,171.8381107,306.8421156,352.0556387,183.4462666,255.8132088,190.6497249,75.92414884 +371.9031053,208.7568704,290.7949351,201.2909527,173.3182519,318.4439732,361.5576637,184.8429939,260.0215508,193.1358574,75.85837451 +369.5137933,207.9341685,288.6583889,200.5614755,172.6876347,314.8461171,355.4362458,183.8792633,256.9665233,191.9647095,75.89286647 +402.0766541,215.6016809,307.3058792,202.2912838,173.0819248,314.1038668,363.428883,185.8405722,263.2101891,193.0563915,75.78097714 +383.043601,211.1735018,296.6120241,201.3382084,172.9692424,315.0587016,360.0540464,184.9090982,260.2340626,192.6447588,75.83937944 +404.438884,216.8969138,310.6357048,204.2372034,174.5111232,322.8720382,376.7686155,187.9185673,269.8187406,195.6720819,75.7041874 +382.0285205,210.2406691,294.3940817,199.5837075,171.6419122,306.5938202,348.6243738,183.1099903,254.6475557,190.2571036,75.90577177 +395.985867,214.0225671,303.2545424,201.7143797,172.6304695,311.9220769,358.1950972,184.8753465,260.1480237,192.148955,75.82290985 +380.3674864,210.8990451,294.5877014,202.937693,173.0834011,318.5551506,357.288934,184.4312609,258.5820106,192.6709598,75.83561686 +404.820919,216.199831,308.0462932,202.7179911,172.7010571,312.4377264,358.9000794,185.2164973,261.1959196,192.3274774,75.78944362 +369.341566,207.1528191,287.7556712,198.000161,171.6444184,306.1782178,349.0347886,182.8790234,253.9402848,190.2074123,75.94753133 +368.3123637,208.3974694,288.7596493,203.1371688,173.8004311,324.1585174,361.7321788,184.8603026,259.8232309,193.8055649,75.84351903 +371.1919934,207.4162934,288.778051,197.5619668,171.3427371,303.6715298,348.0098881,182.7172322,253.615815,189.7432496,75.95547502 +374.7414457,208.700137,290.639415,199.5283714,171.8653969,308.570114,349.4324346,183.1094217,254.5506015,190.5674676,75.91628254 +377.915343,210.1772524,293.8465362,201.7975194,173.2180657,317.7233915,360.5018714,184.8586843,259.9904658,192.9837424,75.84348556 +367.6641298,206.9354588,286.9231973,198.5011098,171.7879824,308.0760547,349.1318826,182.9646326,254.0958803,190.4330929,75.94078615 +383.2601925,212.374238,297.0709421,205.7154112,174.2822554,327.4207707,364.7197013,185.6973669,262.2374698,194.6964578,75.77507477 +390.5528823,213.8727819,299.4978532,206.0845746,173.309192,321.9564696,355.1075556,184.4144938,258.1508441,192.9407512,75.79474071 +372.7921983,209.7784153,292.2547221,204.2080777,174.6039601,328.8277875,369.771252,186.082162,263.7929341,195.3104979,75.7940121 +388.5650081,213.602665,300.4413631,205.6337809,174.4440555,327.1302073,367.8489699,186.339721,264.2533341,195.1035828,75.75317313 +399.4322197,217.1855392,309.4161504,209.0317801,176.7976042,341.2023027,389.9171794,189.8562172,275.468394,199.4420295,75.61335811 +382.0121584,211.6356602,295.3174856,204.5110494,173.2864478,321.2592119,356.6638106,184.3937015,258.3157798,192.9286657,75.82003216 +376.3055584,209.5491809,291.5475394,201.5062282,172.363139,313.585318,351.0722314,183.3873974,255.291376,191.3483721,75.88580019 +379.9660592,210.7149839,294.3914065,202.3480066,173.0877726,317.4757581,357.4673095,184.5066255,258.6473891,192.6786281,75.84602355 +373.8934668,209.0742058,290.6590348,201.3933361,172.6822753,315.2024874,353.85886,183.7809131,256.4548753,191.907855,75.88228066 +357.2452246,205.0694897,281.6144264,199.9031811,172.6847811,316.1345073,352.877193,183.2771774,254.8416722,191.7853278,75.93654103 +372.2097519,209.3696874,290.3753457,203.8444276,173.6208682,323.7904051,358.8735862,184.5554961,258.737568,193.4551854,75.83692962 +409.8003505,219.1001578,314.4066494,207.800811,175.6957832,332.3166413,383.5622245,189.0980295,273.2699014,197.6691152,75.63283464 +383.5150857,211.6500544,296.0265723,203.2168951,172.9723057,317.3958779,355.6375133,184.2878372,257.9743366,192.4475581,75.83714412 +394.8911277,214.7414427,303.9112595,204.7744837,174.0188238,322.9988167,367.5322664,186.2892999,264.4826976,194.512689,75.75076878 +406.6212439,217.6474798,311.583275,205.4017328,174.6315488,324.7170876,375.8937788,187.8489002,269.4640789,195.8115894,75.69065593 +366.4183663,207.9505655,286.86294,203.449605,173.4385982,323.3330914,355.9965688,184.0227911,256.9679367,193.0392134,75.8650051 +399.4791079,215.8597506,306.8783989,204.966436,174.2711457,323.9251409,370.9531204,186.9407293,266.5617852,195.0548255,75.72311759 +380.9647809,210.9270418,295.2555693,202.3706829,173.0929767,317.6777935,359.0345941,184.7134421,259.5763033,192.7709905,75.83283436 +382.27865,210.8133561,297.1669146,200.2537514,173.0791728,313.9538794,364.9676885,185.5099051,262.5122035,193.0163165,75.84129374 +402.1031931,217.0273014,309.5061471,206.635359,175.2424855,329.943707,378.9768674,188.2012486,270.4579648,196.7807467,75.67656555 +391.2344805,214.4753097,303.1566996,206.2920615,175.0003344,330.0788131,375.1319904,187.31192,267.7167072,196.2049899,75.71809627 +352.650468,203.5443013,278.2648214,198.3332394,171.7581044,310.3613363,345.4899899,182.0795765,251.2040997,190.1482183,75.98762615 +383.4743538,213.139182,298.7836807,207.9881039,175.7493346,337.8861625,376.4087136,187.4633732,267.7732736,197.2797954,75.70453965 +411.5916883,219.9057666,315.5452215,209.5315803,176.2111207,337.2939433,386.0167067,189.5464931,274.6231349,198.5202035,75.5925914 +371.5417176,208.2795406,290.0455998,199.951398,172.7288398,313.9568317,357.414644,184.238561,258.1273297,192.1338364,75.88756807 +389.8904683,213.201664,301.8462363,202.7580272,173.9372461,320.4849294,370.4408735,186.5619815,265.6291246,194.5046756,75.77308852 +390.9904963,213.8503316,301.3895227,204.8631111,173.8285273,322.7651264,364.5366386,185.7315639,262.7062839,194.0877289,75.77044822 +378.9596927,210.4809798,294.6958226,202.0517311,173.2400376,317.8474387,361.5181532,184.9403131,260.4337385,193.0592402,75.83936452 +356.9278602,204.9296594,281.9266384,199.3493989,172.8249491,316.0970011,355.8557897,183.7037227,256.3023346,192.1232573,75.93271047 +373.5614644,208.4581368,291.2300409,199.0682631,172.4037735,310.7435857,357.186344,184.1690622,258.194704,191.6780813,75.89529042 +371.0265186,208.6460444,289.3826842,202.1397594,172.9990722,318.4565238,355.528032,184.0094312,257.1560212,192.4244299,75.87045522 +421.0082457,219.7764108,318.7448319,202.2069627,173.2097522,311.7971089,369.748233,187.227412,267.7920796,193.6291536,75.73086248 +381.5930399,210.9344822,295.9113533,201.5461919,173.1409289,316.2745149,360.9731755,184.9731747,260.4005091,192.9104636,75.84054284 +384.7861849,212.7258199,297.9710469,205.8156575,174.2489881,327.3235306,364.9817009,185.7745183,262.5588768,194.6759995,75.76666871 +360.2272661,206.2187634,282.5023313,202.4620124,172.7321722,319.5749397,348.5909369,182.7828695,253.0086847,191.6794364,75.91684246 +353.7465788,203.6395676,278.7616364,197.8409793,171.5623806,308.4242632,345.0344159,181.9170707,250.8770868,189.8373743,75.99316623 +402.6781045,216.9119611,309.4079831,205.9391583,174.8176543,326.9727899,375.9966368,187.7699026,269.1665783,196.0544647,75.69134359 +413.9784551,218.2500383,316.3216595,205.8843926,174.0003598,332.007405,386.5639947,187.9944321,273.9155014,196.3511166,83.23135431 +413.3687779,219.5166051,316.8636609,211.214942,175.7517318,347.9563813,394.345594,189.1923917,277.2526022,199.1309376,83.14387679 +426.9913891,224.2308555,328.1641012,215.8830049,178.9413057,366.9221924,421.5982449,193.8179731,291.236213,204.9280657,82.96981308 +395.0044257,213.2237539,305.3986196,203.0296833,173.3425178,327.7166026,381.3868635,186.7046315,270.1055035,195.0862845,83.31882206 +407.2106088,216.1736426,309.2295814,205.3319915,172.1181276,323.5945172,365.0571605,184.5073918,262.9682652,192.6734123,83.32894809 +386.0618783,212.6149628,299.919397,209.3203418,174.6986183,345.1267583,379.0987974,186.2985364,267.9907092,196.7971343,83.2748088 +419.5814163,219.1657148,319.5931221,204.8281644,173.7009885,328.2427906,387.9764432,188.2676046,275.1111505,196.0477589,83.23102711 +410.0393347,218.9391371,315.2951854,211.8467831,176.1620212,351.3982456,396.1521004,189.435453,277.8265037,199.7729543,83.1363623 +427.6651023,221.5235376,324.0628416,206.5534762,173.974977,330.7580864,388.2140585,188.597682,275.8297971,196.4701461,83.19362075 +411.9994701,218.3422032,315.6334944,207.75622,174.596136,337.6949906,389.0637338,188.3430486,274.9161028,197.272729,83.20573492 +399.5292218,216.2461066,309.6283144,210.5033818,176.1762121,351.3945332,395.9102301,189.1829742,276.9308742,199.7356617,83.17574799 +411.0640481,218.3271641,313.4625298,209.4995857,174.16227,338.4042899,379.5281462,186.9128953,270.0856806,196.2260889,83.22021995 +409.0900777,216.7211802,312.4913958,204.9803181,173.1339879,327.501366,378.932092,186.6065884,269.8553967,194.7591672,83.28113072 +422.8941284,221.6436636,323.2629273,210.5382417,176.0709382,346.8357149,402.2709209,190.5773007,281.8398494,200.006999,83.10573377 +407.7514793,217.4945743,312.5984791,208.7166809,174.6277551,340.0493774,385.3857919,187.7212336,272.6633046,197.1377936,83.21279285 +387.6925145,211.5754181,301.3436697,203.1450164,173.6776705,330.7600628,382.289667,186.6456702,269.7924217,195.5632023,83.32804217 +392.2392785,212.3113962,300.9646968,203.2119224,171.8336744,321.5306191,362.5426579,183.8030317,260.7734838,192.0894355,83.38586096 +422.3285094,221.4340052,322.5752848,210.1426099,175.7568352,344.8544312,398.8485306,190.1257493,280.2749568,199.4051006,83.12352538 +407.0407577,217.0605383,313.0317438,207.2644836,174.7151951,338.4135124,390.5828975,188.3758462,275.1519808,197.4853451,83.2154916 +399.7157394,215.9067289,307.94671,209.9515977,174.9365159,344.7589328,384.533042,187.3405463,271.4669836,197.4602693,83.21991475 +420.5905247,220.3179617,320.0216665,208.2439176,174.5046661,336.7980473,388.7455077,188.46028,275.2523039,197.1855749,83.18483868 +398.3749911,214.6044125,305.016686,206.6359908,172.9147564,330.5697357,368.1095757,184.9095895,263.7906221,193.9004277,83.31763372 +390.8945911,212.6170149,302.5030605,204.7296377,173.4596121,331.5987071,378.286452,186.0694502,268.0627976,195.0645111,83.31963737 +405.5255762,214.8631608,309.6364042,201.0884622,171.8862565,316.699464,371.535931,185.4477409,266.3018126,192.6670433,83.35673891 +436.5914126,225.8419387,332.3458961,213.9094375,177.4401235,355.5435869,412.9090212,192.6656848,288.0294705,202.4814703,83.00493394 +394.4083334,214.8228063,306.2702716,209.831661,175.9419692,350.4885707,393.5298941,188.5912967,275.239729,199.2550863,83.20191937 +412.528947,218.2497324,315.5920254,207.1282023,174.3095994,335.4261929,387.0911286,188.0506016,274.0048646,196.7909602,83.21782373 +403.4276944,214.8537632,308.5460293,202.8326011,172.2104822,320.9504203,371.7247411,185.4078142,266.1710214,193.1051923,83.33975498 +421.2542534,220.7982858,320.7479357,209.3380324,174.9904812,340.5156831,391.5695938,188.9419588,276.5886109,198.0009222,83.15928589 +424.9964932,223.2995133,324.2005828,215.2099395,176.9350093,356.9620984,400.9515001,190.6664076,281.336211,201.1622199,83.05397387 +425.2451203,222.3375592,324.1568805,211.2895768,175.9807748,347.1184933,399.7236025,190.2987479,280.7883847,199.7742764,83.10077191 +381.8711384,209.7169884,296.0385987,201.9748409,172.2602195,323.467566,367.704822,184.2507437,262.3600262,192.8744642,83.40137954 +404.5235991,216.8879031,310.1018071,209.4186002,174.3287505,340.0629204,380.0788199,186.8507177,269.921765,196.4331593,83.23411909 +390.2578207,212.5227551,301.1452023,205.4014362,173.1096835,331.1029988,371.7165926,185.140897,264.8545006,194.2717255,83.33415359 +412.4603543,218.4968907,316.3301431,207.82162,175.0087299,339.7185248,392.9832361,188.9535843,276.7230825,198.0455358,83.18828954 +402.2380156,216.72619,310.074554,210.4626785,175.3714209,346.9958924,388.8888617,188.1111239,273.8430319,198.2780852,83.19424928 +391.4685586,212.0513157,301.9209727,202.2484845,172.478892,323.3288104,371.7221019,185.1448737,265.1056016,193.4171526,83.36742548 +399.6909848,215.9804221,308.2989546,209.8988086,175.1105838,345.4187258,385.917551,187.6588597,272.275456,197.7760219,83.21628146 +411.3896473,218.7191527,315.31936,209.9230072,175.3224813,344.5337636,391.1849735,188.6875598,275.5952772,198.3884889,83.1735405 +392.9355307,214.4122994,306.1474452,209.2593189,176.300336,351.5134435,398.6497222,189.2803608,277.5693819,199.9849626,83.1925948 +400.3656767,216.6478305,310.8917743,211.0805255,176.8266105,355.1808918,402.4145804,190.1235737,280.0334453,200.9280496,83.1443398 +417.8011652,220.1663909,320.7206036,209.0133989,175.898016,344.5578765,402.7430261,190.5256926,281.8266219,199.758935,83.13277807 +419.6395873,219.9997042,319.7175581,207.6787433,174.5082545,336.0813229,389.5444074,188.5944339,275.6518739,197.2309215,83.18805895 +403.7369836,216.4231465,309.6049811,208.4571976,174.1557334,338.1563869,380.2485002,186.7819819,269.8536058,196.1984436,83.24445041 +395.8701896,213.5941339,306.5220387,203.6819993,174.017928,331.7092344,387.7417303,187.6210972,273.0194636,196.3368141,83.28861894 +398.6316156,215.679827,307.078947,210.2197397,174.8408739,344.8425172,382.1158427,187.036799,270.2962953,197.2311108,83.22590597 +399.7745176,215.1524452,309.0250538,206.0930572,174.7531343,338.1621263,390.5624372,188.2390375,274.5530679,197.5104995,83.2421528 +401.5261062,214.7416682,308.3791505,203.717584,173.1504865,326.9189748,378.6973272,186.455261,269.2061563,194.739804,83.30582843 +400.6091684,215.6251721,309.3228469,207.313756,174.8043464,340.0250175,389.2177104,188.0553489,273.9853617,197.5036372,83.23202698 +397.8029098,214.6618795,306.8142513,206.4950766,174.0926317,335.9855507,382.3862799,186.9423665,270.5302138,196.1818854,83.26958219 +434.0682741,223.4460595,327.7957982,208.3588854,174.4871398,334.8203484,391.2988594,189.2114639,277.6061304,197.3603288,83.15012788 +412.7725399,218.3365059,315.7305742,207.2968808,174.397528,336.0735476,387.5238676,188.1250455,274.1836903,196.9400389,83.21284078 +436.9358253,224.9526879,331.7075774,210.5048346,176.1263749,344.6315822,406.0097322,191.5881709,284.9497669,200.3474927,83.06522693 +411.5551558,217.3025321,313.116962,205.3748684,172.8735143,326.5410319,374.7837852,186.0775215,267.9984144,194.2125389,83.28455907 +427.2013714,221.6689793,323.275359,207.7860677,173.9330365,332.3995168,385.3745324,188.1197637,274.3086978,196.2662599,83.19333399 +410.183252,218.0947652,313.5975855,209.179424,174.5476897,340.0757492,384.5063717,187.559818,272.2669982,196.9847708,83.20850017 +436.8639484,224.0800186,328.5155549,208.8258584,174.0312705,332.8931424,386.0337921,188.475536,275.2949165,196.4947582,83.15834244 +397.3120294,213.7714522,305.6733519,203.6234763,172.8809732,326.189171,375.289171,185.8316963,267.2919884,194.1647609,83.32894198 +396.5851705,215.183246,307.0588516,209.3965482,175.3659051,346.4868918,389.3730112,188.037166,273.6349884,198.2669844,83.21519325 +399.3704339,214.09857,306.7959609,203.1160469,172.5173576,323.2925116,373.9408369,185.6634877,266.9754823,193.6124848,83.3350749 +403.2300533,215.4862107,308.8647141,205.2980842,173.13377,328.827232,375.6316786,186.0620998,267.8486516,194.5693754,83.29541768 +407.1634333,217.2236943,312.7160588,207.861704,174.6786784,339.1372899,388.0439569,188.0673005,273.9388423,197.3155189,83.21647516 +395.1642864,213.36831,304.468464,204.0677548,173.1207576,328.3395617,375.4926964,185.8670038,267.1490637,194.5233586,83.32405001 +413.2909462,219.7824123,316.5884352,212.3241364,175.8546291,350.0033191,392.6830197,189.0098406,276.4684556,199.190595,83.14030707 +421.2028393,221.4630911,319.1672983,212.7376449,174.7194756,343.7489672,381.7700807,187.5101595,271.8096286,197.1499648,83.16156965 +402.2773683,216.9241655,311.285127,210.6853917,176.2781039,351.7781704,398.440982,189.4738842,278.2125864,199.974271,83.16086208 +418.814411,221.0968203,320.2471002,212.1365809,176.0453346,349.5500248,396.1683768,189.7451984,278.6827572,199.6693183,83.11714589 +431.8942058,225.4040354,330.7984951,215.9906182,178.741066,365.2794134,420.8312743,193.8193118,291.3518554,204.6271532,82.9640234 +412.0343037,218.9617663,314.509221,210.9882269,174.741071,343.0978161,383.6637859,187.5081702,272.003474,197.2134878,83.18952325 +405.4048193,216.5498799,310.1150727,207.6069793,173.6920004,334.493479,377.5262946,186.3782286,268.7024916,195.4329874,83.26174411 +409.1321168,217.8089732,313.3189728,208.5067739,174.4905371,338.8112891,384.6372647,187.6614888,272.5032268,196.9056966,83.21851869 +402.507625,215.9740189,309.128666,207.4745921,174.0374546,336.3297468,380.6144186,186.8358152,270.0647701,196.0425454,83.25739386 +383.8238609,211.3282832,298.8251384,205.7958052,174.1028156,337.54532,379.6473535,186.2339293,268.1251225,195.9868826,83.31674461 +401.0164041,216.3193399,308.9096604,210.218826,175.1613368,346.0336139,386.2939144,187.6803504,272.404971,197.8656208,83.20895816 +443.2189622,227.57265,336.2438086,214.6081074,177.4275442,355.2160602,413.5090185,192.9528489,288.975205,202.5341236,82.98397833 +413.1214817,218.8957197,315.1737819,209.4912453,174.3338947,338.6819303,382.3846668,187.4028178,271.7403037,196.601993,83.20737186 +426.4645976,222.5281237,324.2279941,211.2230058,175.5664617,344.9285717,395.7883935,189.7113024,278.987527,199.0168082,83.11511834 +439.3707003,225.8236293,332.8333081,211.8481997,176.2436299,346.6930363,405.0015058,191.5070928,284.5896901,200.4721267,83.04963208 +394.4028352,214.6706255,304.9093056,209.7902741,174.9495194,345.5626211,383.0679516,187.0579969,270.4132902,197.3813054,83.23876741 +431.5682334,223.7808144,327.5154227,211.375222,175.8914047,345.9064183,399.6969554,190.4528107,281.2112993,199.6923691,83.08697236 +410.7007239,218.0708117,314.2334795,208.4722084,174.5800679,339.06861,386.4068694,187.8761342,273.2993889,197.1338922,83.20616265 +412.4152552,218.046828,316.4738986,206.1203173,174.5135013,334.8431404,392.9138491,188.8518167,276.8661898,197.3538482,83.21248197 +434.6529053,225.199119,330.7201103,213.3247481,176.9268668,352.6594205,408.5025372,191.9256988,285.8173977,201.5466295,83.03252697 +422.860998,222.3521325,323.640928,213.0249108,176.6599228,352.9831904,404.1907106,190.9075398,282.7649064,200.8956588,83.07529283 +378.417982,209.476629,294.7143876,203.9397188,173.1164303,331.0520357,371.3877994,184.8201574,263.8065595,194.225762,83.37333282 +414.0407311,220.7277678,318.7215036,214.8730314,177.5732104,361.7795664,405.8173405,191.0337684,282.5886552,202.1915784,83.06360911 +445.4957787,228.501679,337.5384451,216.5009872,178.0957705,360.7449789,416.3307942,193.441597,290.2216875,203.6171588,82.94263627 +400.0189384,215.0296872,308.3171384,205.773483,174.1618875,334.9670994,384.7692337,187.3587556,271.814744,196.4120201,83.26585217 +420.9472367,220.759924,321.8300487,208.9122803,175.4996801,342.1445589,399.0177563,190.0333747,280.2519909,199.0533921,83.13979914 +422.1987607,221.5372096,321.4228618,211.3678589,175.3399727,344.7172511,392.4001502,189.0716503,277.024904,198.513874,83.13508578 +408.8053602,217.7123038,313.8485598,208.2379776,174.6758576,339.2968903,389.0880305,188.1946427,274.5869995,197.3599209,83.20877567 +383.4372141,211.121779,299.0838833,205.112896,174.2951541,337.4958477,383.0327499,186.7196989,269.6908749,196.421971,83.31378615 +402.5427282,215.2879723,309.6385739,204.766409,173.8028564,331.3380968,384.4102579,187.2945465,271.8915241,195.9157322,83.27381855 +399.3738716,215.4270007,307.6089009,208.251396,174.4554871,340.0174013,382.4893806,187.0567211,270.6216475,196.7059081,83.24561704 +455.0170088,228.2151316,340.5276701,208.2109557,174.5756795,331.9837672,398.1230589,190.80549,282.8032756,197.9367245,83.09413132 +411.3665715,218.1623941,315.1528035,207.6385261,174.548264,337.4825302,388.5886347,188.2335164,274.5850393,197.1748511,83.21228917 +415.0438853,220.1591628,317.5238046,212.3864491,175.856935,349.8646322,392.9886275,189.0812381,276.6835278,199.2278062,83.13239822 +387.3681931,212.6920463,299.932074,208.724059,174.1391674,341.3805623,374.7751719,185.6256494,265.9755197,195.8225966,83.2942371 +380.1782377,209.7542823,295.5165464,203.4795073,172.8682036,328.904872,370.8827141,184.6879408,263.6426759,193.8440336,83.37815498 +435.0958602,224.9997791,330.4489521,212.4758318,176.4652875,349.2843677,405.1183531,191.4119382,284.2365743,200.7571401,83.04993806 +404.1110783,217.0029529,310.4337663,205.0383676,174.8898411,325.5968278,377.5462228,188.2265412,269.9386967,196.155399,81.09121601 +403.5383493,218.2275518,310.9407718,210.1722321,176.5855763,340.9655958,385.0676092,189.3862123,273.1763604,198.8487648,81.00468299 +416.5341319,222.7031128,321.6964064,214.6871005,179.6336021,359.2640153,411.0709058,193.7527866,286.4895207,204.3836092,80.83296615 +385.9302836,212.2146917,300.0050969,202.291412,174.2539676,321.4492752,372.6331857,187.0024264,266.3077612,194.9377472,81.17723072 +397.8517838,215.0596868,303.7421485,204.4594404,173.089634,317.5202703,357.0423359,184.9402559,259.5257691,192.6464139,81.18805169 +377.5824763,211.7169096,294.8501015,208.3077309,175.5755008,338.1984892,370.4659104,186.6600451,264.3606427,196.6171229,81.13298921 +409.3441787,217.8216423,313.5258036,204.0563262,174.5963564,322.0165606,379.0099427,188.4803009,271.1208171,195.865858,81.09154887 +400.3802498,217.6954061,309.4553637,210.7753376,176.9722507,344.2617135,386.7557782,189.6114483,273.7213764,199.4537503,80.99678314 +417.2672507,220.1165658,317.8414419,205.6912274,174.8767471,324.4395615,379.144727,188.8068069,271.7631372,196.2836516,81.05489751 +402.2780755,217.1060537,309.7831226,206.8418246,175.4840793,331.1043211,380.0009992,188.581336,270.9111698,197.0709997,81.06635542 +390.3743021,215.1566566,304.0768468,209.4700832,176.9730024,344.2243637,386.4379939,189.3597883,272.8452141,199.3979576,81.03490986 +401.4824363,217.1302594,307.7608545,208.4936727,175.051485,331.7546498,370.8538661,187.2228254,266.3377012,196.0519574,81.07989622 +399.3761655,215.5113257,306.7610601,204.1761472,174.0614288,321.3029177,370.3613675,186.9173126,266.1041548,194.6451629,81.14103454 +412.5340507,220.2075031,317.0099892,209.5436526,176.8871891,339.9088459,392.6837789,190.6899257,277.5522357,199.682322,80.96754515 +398.2239227,216.3241424,306.9093068,207.7497923,175.4855727,333.3113524,376.4169081,187.9725876,268.7810569,196.9060163,81.07209291 +378.8882596,210.6568406,296.1397661,202.3988619,174.5510252,324.3215491,373.4663546,186.9297564,266.0276229,195.366226,81.1851165 +383.5346485,211.3971582,295.8701065,202.4072783,172.8003258,315.4771359,354.5985027,184.2620873,257.4212129,192.0608919,81.24358126 +412.1397396,220.0484086,316.3965533,209.1454832,176.5920757,337.9958851,389.3262629,190.2649941,276.020648,199.1056371,80.98511527 +397.3802207,215.8527087,307.2581909,206.3815922,175.5838381,331.7777956,381.4938959,188.6009507,271.1630279,197.2621748,81.07550065 +390.4632615,214.7962883,302.439163,208.938078,175.7950088,337.8561408,375.6853598,187.630111,267.6759722,197.2424927,81.07907083 +410.4237232,218.9656885,313.9542987,207.3101718,175.3778793,330.2262252,379.6662083,188.6748992,271.2381392,196.9663208,81.04539857 +389.4536177,213.6154101,299.7620337,205.7021887,173.8370368,324.1691543,359.8596082,185.3149219,260.3157397,193.7976977,81.175593 +381.9468702,211.6202685,297.2198332,203.9176251,174.3730249,325.2004314,369.7271987,186.4130521,264.3931356,194.9371382,81.17813876 +396.0300254,213.7544268,304.0701973,200.4090196,172.8448962,310.8529878,363.1608015,185.7956261,262.6493425,192.6020861,81.21539013 +425.7587287,224.2254934,325.7050595,212.7913325,178.2156182,348.3380017,402.8260282,192.6830852,283.4360061,202.068552,80.86881521 +385.3494111,213.7705163,300.8301093,208.8221533,176.7473717,343.3384601,384.2136922,188.8005541,271.2527089,198.9433278,81.06038362 +402.767751,217.0161342,309.7454276,206.2346313,175.1974287,328.9019198,378.0865096,188.2929978,270.0388555,196.5930951,81.0779897 +394.0659196,213.7527035,303.0314568,202.0940577,173.1756279,314.9935691,363.4464775,185.7807309,262.5636735,193.0540038,81.19916037 +411.063745,219.4333004,314.6486708,208.3596174,175.8370299,333.7874897,382.3348668,189.1258184,272.5114202,197.7374171,81.01982666 +414.8560177,221.8768983,317.997776,214.0167743,177.7306174,349.6748077,391.3406955,190.7947992,277.060164,200.8050834,80.9165152 +414.8762443,220.894489,317.8910343,210.2549217,176.8015886,340.1772727,390.1996332,190.4267608,276.5356134,199.4573332,80.96258171 +373.384673,208.8892372,291.1058038,201.246566,173.1824211,317.2957103,359.5443408,184.6615,258.9539533,192.7827999,81.25776115 +395.2705472,215.7653594,304.5545843,208.4098021,175.2352911,333.3766502,371.4186777,187.1853789,266.1710606,196.2827398,81.09413941 +381.5087755,211.5844716,295.9903993,204.5345635,174.0318145,324.6916364,363.3867103,185.5358172,261.3338754,194.1669015,81.19193991 +402.6348853,217.2468655,310.4304505,206.905154,175.8538565,333.0051281,383.6846005,189.1350547,272.6315214,197.7760905,81.04821537 +392.9424301,215.5911135,304.4838122,209.4373093,176.2271227,340.0309049,379.8572565,188.3717374,269.92954,198.0412936,81.05419734 +382.608862,211.1139624,296.7207244,201.5055668,173.4070566,317.1813256,363.3175145,185.5121312,261.5266939,193.3144393,81.22472677 +390.5918804,214.9089864,302.8258588,208.8783721,175.9671891,338.4914261,376.9434851,187.9355143,268.418844,197.5441573,81.07550994 +401.6683485,217.4794485,309.4821857,208.9106069,176.1562274,337.6359661,381.9382228,188.8887992,271.5642526,198.1101426,81.03335041 +383.8612078,213.3626882,300.6898628,208.2933454,177.0866842,344.3246335,389.1773205,189.4489319,273.4938732,199.6382505,81.0511461 +391.0781688,215.512547,305.2390521,210.0470937,177.6092862,347.8892298,392.7601602,190.2623138,275.8281728,200.5594915,81.00418038 +407.6633582,218.8023062,314.5843629,208.0826009,176.7276005,337.7209898,393.1433495,190.6454367,277.5309756,199.4500878,80.99434006 +409.5210694,218.6710113,313.6725458,206.7676968,175.3731215,329.5173158,380.4024593,188.7937285,271.6112253,196.9952932,81.04837148 +394.3751883,215.2915321,304.0418339,207.4943165,175.0486789,331.5142422,371.569075,187.0997287,266.1139122,196.0322944,81.10375576 +386.58545,212.5346106,301.0296195,202.9406996,174.8836762,325.2750616,378.7540586,187.8564141,269.1229653,196.1209069,81.14677658 +389.5233281,214.6161238,301.6585221,209.1871148,175.6880137,337.9129437,373.3162251,187.3331706,266.564418,197.0006703,81.08444179 +390.4475237,214.062519,303.4542269,205.236553,175.5940467,331.4668484,381.3506348,188.4461054,270.5624894,197.2459463,81.10054925 +392.1551683,213.6602333,302.8571772,202.9459379,174.0526639,320.654688,370.021179,186.7520732,265.4567149,194.5850652,81.16402819 +391.2996042,214.5156204,303.7410412,206.4129968,175.6705472,333.3056703,380.1402313,188.2996864,270.0361691,197.2779607,81.09134595 +388.6420749,213.6034322,301.3635799,205.6159899,174.9814433,329.408665,373.6064105,187.2418346,266.7453548,196.0042989,81.12835467 +423.3752949,221.943376,321.3964212,207.4270909,175.3634768,328.34753,382.0841111,189.3858004,273.4665484,197.1332708,81.0117978 +402.9783274,217.0988901,309.8752069,206.3959246,175.2720289,329.5069981,378.4801557,188.3552059,270.2121216,196.7232666,81.07273119 +426.0705942,223.3723321,325.1061896,209.5168025,176.9405591,337.8105376,396.2065169,191.6449063,280.4900838,200.0001919,80.92820057 +401.8386756,216.0990882,307.3954753,204.5346957,173.8075376,320.3502857,366.3334845,186.4142605,264.3196108,194.1112563,81.1439908 +416.8820487,220.2616936,317.1012917,206.8708665,174.8521105,326.0537048,376.4836789,188.3715837,270.3306692,196.1145282,81.05503782 +400.4642097,216.8635031,307.8240741,208.1955697,175.4148302,333.3551416,375.6205851,187.8246235,268.4146606,196.7736625,81.06806117 +426.1558799,222.5681197,322.1251707,207.8778822,174.9332693,326.5163363,377.1108634,188.699875,271.2890535,196.3156864,81.02033854 +388.2114629,212.7441554,300.2869606,202.841633,173.8169387,319.9898472,366.7950683,186.1824109,263.6217201,194.0640722,81.18753693 +387.5075027,214.1235434,301.604076,208.4107322,176.2105862,339.5153712,380.2953096,188.291035,269.7276949,198.0147815,81.07431161 +390.1837887,213.0392507,301.3585507,202.3745455,173.4763744,317.2530735,365.5956794,186.029931,263.3390048,193.5483373,81.19460045 +393.9198523,214.3960501,303.3540105,204.4559031,174.0590057,322.5285887,367.1328382,186.4041078,264.1740788,194.4521623,81.15436455 +397.6207108,216.0465539,306.9957083,206.9349013,175.549149,332.4562142,378.9903727,188.3094556,269.9840673,197.0946943,81.07617272 +386.1504672,212.3880055,299.1675001,203.2635102,174.0124275,321.9839311,366.9020234,186.1901025,263.4970257,194.3615334,81.18140824 +403.5882402,218.5111891,310.7123098,211.2247793,176.6992904,342.9519179,383.4544185,189.2292818,272.41681,198.925035,81.00141804 +411.2591895,220.1244085,313.2184367,211.615695,175.6119855,336.9603864,373.0792973,187.8169275,268.0083883,196.977857,81.02294802 +392.8013904,215.7327235,305.5725357,209.660873,177.0942865,344.6297916,388.9995752,189.6561333,274.0924055,199.6664452,81.0210457 +408.934251,219.7782127,314.2266398,211.0477445,176.8718758,342.5123669,386.7265585,189.912604,274.50405,199.3630503,80.9786382 +421.2600793,223.8170972,324.2160374,214.7941816,179.4648006,357.711991,410.386365,193.7779135,286.6015527,204.1263663,80.82807613 +402.3151084,217.7055769,308.716136,209.9370805,175.6198615,336.2988556,374.8732127,187.7986079,268.1842738,197.0216937,81.04994301 +395.9729846,215.4022507,304.527581,206.6725148,174.6050267,328.0000829,368.9662436,186.7160754,265.0062506,195.3002166,81.12112699 +399.6487475,216.6347251,307.6138702,207.5378747,175.3805152,332.1578226,375.7107811,187.937065,268.6010487,196.71576,81.07859045 +393.2634567,214.8736082,303.6015126,206.5425901,174.9450097,329.7654069,371.897345,187.1557523,266.2862508,195.8907572,81.11687994 +375.3657039,210.4662949,293.7805034,204.9168391,174.9877605,330.8726515,370.9314418,186.5732583,264.4413445,195.8118622,81.1741615 +391.7527237,215.2035176,303.3711112,209.188189,176.0102544,339.0783567,377.3176156,187.9502991,268.552955,197.6271055,81.06808303 +432.1798152,225.8799669,329.4578408,213.4763962,178.2203957,348.0700435,403.4629114,192.9746703,284.3532439,202.143058,80.84915616 +403.503643,217.6713382,309.3967704,208.4949748,175.2419797,332.068285,373.6423851,187.7067171,267.9038074,196.4444531,81.06822763 +416.0763672,221.0776224,317.9699957,210.1863538,176.4114425,338.0840396,386.4495992,189.8776023,274.8200061,198.7430458,80.97704508 +428.467274,224.215102,326.1990559,210.8072525,177.0634651,339.8149807,395.2619389,191.5800336,280.153797,200.1352763,80.91312502 +385.4783862,213.6509243,299.5770081,208.767943,175.8098521,338.6191903,374.2364325,187.367404,266.6591619,197.1674332,81.09738319 +420.911616,222.2611362,321.094837,210.3314329,176.701817,338.9988649,390.1206896,190.5574676,276.9257288,199.3593572,80.94879809 +400.9403881,216.8402786,308.432138,207.5232651,175.4344265,332.3686649,377.4260281,188.1124192,269.3973811,196.8986663,81.06555345 +402.4958255,216.7684713,310.5377547,205.2985696,175.394185,328.3771883,383.7556639,189.052654,272.7970306,197.1411539,81.07326719 +423.9423258,223.6190399,324.1667259,212.2265626,177.7348477,345.5726235,398.6382025,191.9935133,281.3291365,201.1893235,80.89641303 +412.5828616,220.8922003,317.3898712,211.9375496,177.4862863,345.878753,394.5799648,191.0387402,278.443442,200.5829451,80.93867426 +370.1761024,208.7063066,289.8856151,203.1301548,174.0057692,324.5769017,363.0304348,185.2093788,260.3501312,194.0804617,81.22939576 +404.1793583,219.3882024,312.7007393,213.6928828,178.3391885,354.28322,396.0130158,191.1381785,278.2643592,201.791612,80.92523499 +434.2489973,226.7473046,330.6589966,215.2928744,178.8268404,353.3567905,406.1144799,193.4044547,285.5525468,203.1381849,80.80722354 +390.7232161,213.947436,302.7894859,204.9172029,175.0331533,328.4006776,375.8067396,187.6183145,267.9442947,196.2020373,81.12421628 +410.6852348,219.3686515,315.6508952,207.9781474,176.3373301,335.3883487,389.5542243,190.1707768,276.0256742,198.7634577,81.0011442 +412.0023615,220.1350408,315.2961687,210.3243783,176.2023456,337.8909268,383.2515115,189.2817831,272.9632654,198.2757924,80.9969642 +399.1196438,216.4732894,308.0478524,207.3144032,175.5652585,332.6664819,380.0975933,188.447773,270.6263518,197.1698683,81.06970069 +374.9445054,210.2647509,294.0202299,204.2696081,175.1577429,330.8039046,374.13923,187.017618,265.9294207,196.2081589,81.17079106 +393.0258105,214.1535064,304.01627,203.9706982,174.683698,324.9288927,375.5434255,187.5519759,268.0402465,195.7250276,81.13247299 +390.2089108,214.3580762,302.1474452,207.2973445,175.3265841,333.2788041,373.6790521,187.3521893,266.8447628,196.5034641,81.10436187 +443.4971216,226.4664364,333.599012,207.3223771,175.4623679,325.7081503,388.7041581,190.9123034,278.4529213,197.7068935,80.95823325 +401.656582,216.9266471,309.3148069,206.7200478,175.440135,330.8997933,379.528339,188.4781283,270.5852613,196.9809448,81.0728097 +405.2062561,218.8599379,311.5931686,211.2892557,176.6835518,342.7988965,383.7319656,189.2805739,272.6325382,198.9377085,80.99316931 +378.7964536,211.7751316,294.8509802,207.7251778,175.0324273,334.5895246,366.3281874,186.0171004,262.439023,195.6768324,81.15217274 +371.7404602,208.9208196,290.5877751,202.6944074,173.7809365,322.5481827,362.6117514,185.0906611,260.1886552,193.7359583,81.23488358 +424.3604298,223.4327221,323.9140386,211.4096092,177.2775853,342.3028112,395.3867752,191.492606,279.8254078,200.4121842,80.91321501 +399.3799314,216.822985,308.0123951,205.0368837,175.7737145,322.2937028,372.9776963,188.7874937,268.2712755,196.4386167,79.84969542 +398.811651,218.0255407,308.4999633,210.0516606,177.4480965,337.2913532,380.3783213,189.9391695,271.4720412,199.0998894,79.76632035 +411.5903805,222.398771,319.0255141,214.4764735,180.4502265,355.3026628,405.9133495,194.1978662,284.5099496,204.5475811,79.59939082 +381.5221224,212.1398229,297.7866481,202.344355,175.1353771,318.1756085,368.099928,187.5759871,264.6768882,195.2200929,79.93477085 +393.3362571,214.9446773,301.5192757,204.4484701,173.9993687,314.3484872,352.9075301,185.5976219,258.1089563,192.9887867,79.94305841 +373.4716641,211.7034802,292.8147856,208.1974979,176.4442536,334.5182282,365.9969596,187.2777349,262.8247214,196.8893778,79.89145552 +404.3805563,217.5774249,310.9771321,204.0943041,175.4736166,318.7597125,374.4141818,189.0190989,269.4212082,196.1435226,79.85104389 +395.751818,217.517203,307.0637786,210.6342618,177.8256473,340.5246822,382.0167211,190.1535275,271.9985997,199.6896553,79.75828628 +412.3039287,219.8657486,315.273611,205.6893524,175.7727009,321.2104948,374.6030341,189.3716401,270.0894485,196.5835577,79.81413292 +397.6028747,216.9345153,307.3771963,206.8026805,176.3701561,327.6706137,375.4152623,189.1575759,269.2483087,197.3561143,79.82664442 +386.004547,215.0555281,301.8313232,209.3458762,177.8187786,340.4958583,381.6542396,189.8922959,271.112747,199.6206636,79.79526247 +396.8864999,216.9756442,305.4448719,208.3967538,175.9347311,328.284768,366.4409929,187.8273319,264.7848554,196.3442735,79.83781822 +394.6436324,215.3339852,304.3736375,204.1971603,174.9479005,318.0192403,365.9238208,187.5043804,264.5136018,194.9443237,79.89957591 +407.5492461,219.9298118,314.3962712,209.4521168,177.7429823,336.2740705,387.8606451,191.2028574,275.7501901,199.9182155,79.73073906 +393.6562997,216.1789452,304.5916659,207.6693495,176.3546568,329.8088484,371.8553416,188.5399538,267.1464042,197.1712873,79.83048376 +374.6020732,210.616769,294.0042003,202.4349268,175.409511,320.9470514,368.8612564,187.4782174,264.3734662,195.6165868,79.94185463 +379.3194171,211.3749995,293.8264532,202.4268229,173.7021592,312.3207511,350.4493579,184.9161133,256.0100324,192.390427,79.99724813 +407.2816844,219.8097493,313.8516738,209.0587238,177.4634098,334.453192,384.5819018,190.8022754,274.2621472,199.3623714,79.74701612 +392.6920744,215.6798075,304.8569754,206.351332,176.4520661,328.2734927,376.8341748,189.1523809,269.4660291,197.523514,79.8361089 +385.9771131,214.6724084,300.1814293,208.8283006,176.6567127,334.1839971,371.1285761,188.2123165,266.0670858,197.5025072,79.83873097 +405.5486225,218.7337502,311.447922,207.2590838,176.2558014,326.8116928,375.0824209,189.233293,269.5644274,197.243173,79.80504372 +385.1817456,213.5634397,297.6706098,205.6450867,174.7279107,320.8539043,355.6191463,185.9518832,258.8678752,194.1083984,79.93005239 +377.5620431,211.5450989,295.036851,203.9266966,175.2480272,321.7794191,365.2478952,187.0069532,262.8125016,195.2193518,79.93655573 +391.4463839,213.6355814,301.786085,200.5071129,173.7456364,307.8486937,358.8376523,186.3936559,261.1018331,192.9212878,79.97033997 +420.6118629,223.8791758,322.943076,212.6385082,179.0687646,344.6037886,397.878963,193.1785858,281.5530152,202.2916252,79.63454141 +380.9817532,213.6771826,298.6098271,208.7090432,177.5875523,339.5650782,379.4481428,189.3369764,269.5382928,199.1632453,79.82068976 +398.0787761,216.8435989,307.3432639,206.2055246,176.081762,325.5168643,373.5224709,188.8646627,268.3837685,196.8771407,79.83725087 +389.507813,213.6336057,300.7566489,202.1562497,174.0778923,311.8658813,359.1427869,186.3977035,261.0417356,193.3778604,79.95581997 +406.1967278,219.1971954,312.1377082,208.2799246,176.7060771,330.3055006,377.6940409,189.6701685,270.8099497,197.9991044,79.77969112 +410.0520418,221.6289206,315.4702409,213.8164693,178.5913788,345.8990187,386.6003972,191.3429539,275.3217808,201.0484588,79.67971901 +409.9169867,220.6213151,315.2942903,210.1433421,177.6638434,336.5634574,385.4388076,190.9545977,274.7679893,199.7034329,79.72500804 +369.2200778,208.8881065,289.0932221,201.2934571,174.051915,314.0251624,355.2046029,185.2623483,257.4505773,193.0638298,80.01201231 +390.8199445,215.6533401,302.3092335,208.3166663,176.1269875,329.8650995,367.013235,187.811935,264.6324103,196.5861951,79.85318673 +377.2560907,211.5457233,293.9019628,204.512354,174.9141527,321.3024992,359.0419043,186.157911,259.8341225,194.4631927,79.94811078 +397.9301509,217.0644346,308.0051866,206.8568228,176.7205177,329.5338458,378.9876451,189.6715116,270.9061246,198.0301519,79.80795452 +388.4515241,215.4630428,302.1962632,209.324761,177.0947922,336.347795,375.2481277,188.9528189,268.2883409,198.3036633,79.81499143 +378.3199897,211.0755433,294.6103096,201.5562785,174.2910724,313.9857583,358.9441357,186.1110008,259.9878549,193.6094235,79.9795169 +386.2240262,214.8170788,300.6142611,208.7681874,176.8364434,334.8639611,372.3771871,188.5220504,266.8042508,197.8094485,79.8347621 +397.0279094,217.3059239,307.101201,208.8073339,177.0185912,334.0549913,377.2794878,189.4388943,269.8752349,198.3619454,79.79304395 +379.4553917,213.260793,298.4366035,208.198326,177.915641,340.5125256,384.3030601,189.9574211,271.7164684,199.8379934,79.81247323 +386.6089238,215.3824935,302.9195047,209.9208857,178.4482102,344.058771,387.8680567,190.7778983,274.0350358,200.7679692,79.76665519 +402.7756635,218.5601067,312.0196381,208.0279447,177.5888749,334.1384322,388.3022024,191.1606029,275.7209862,199.6908612,79.75750504 +404.680753,218.4508954,311.1823028,206.7266783,176.2489177,326.1337905,375.7920179,189.3418415,269.9201539,197.2663494,79.80751855 +389.8510231,215.1630105,301.7685718,207.4205375,175.9276379,328.0100963,367.1138354,187.7007279,264.5452629,196.3184127,79.86226053 +382.0487695,212.420483,298.737189,202.9815006,175.738416,321.876675,374.0721116,188.3837888,267.4121674,196.3647774,79.90536249 +385.1334972,214.5167767,299.4618935,209.0614669,176.5461859,334.260598,368.7920326,187.9143249,264.9779532,197.25637,79.84263112 +385.9567282,213.9496337,301.1687566,205.2146407,176.4499568,327.9849524,376.6377799,188.9761074,268.8435162,197.4864214,79.85917103 +387.6241338,213.5481716,300.5895038,202.9778549,174.9298708,317.4020187,365.5376163,187.3209606,263.8465498,194.8656615,79.92032028 +386.7961964,214.3963153,301.4454354,206.37177,176.5393944,329.7732208,375.4927937,188.8617125,268.3592283,197.5390465,79.85126769 +384.1982895,213.505814,299.128407,205.5862261,175.8555753,325.94246,369.0750926,187.8242583,265.1336005,196.2791373,79.88681868 +418.2859962,221.6469191,318.7507939,207.3850963,176.25043,325.0356522,377.4966258,189.93705,271.7667413,197.4203552,79.77172792 +398.2793565,216.9223872,307.4707285,206.3593698,176.1499482,326.1066826,373.8952908,188.916363,268.5460969,196.9980808,79.83165233 +420.9033358,223.0383057,322.3589846,209.4369363,177.8071495,334.3133598,391.3638387,192.1468909,278.649038,200.2453787,79.69139889 +397.1435853,215.9332706,305.0419788,204.5374582,174.7018272,317.1169459,361.9880454,187.0192415,262.7786281,194.4228393,79.9007863 +411.938618,220.0115265,314.5524892,206.8422435,175.7540319,322.7668524,372.020903,188.9639908,268.7098808,196.4283004,79.81489614 +395.7816983,216.6848127,305.4513567,208.1087966,176.2838459,329.818996,371.084967,188.3984927,266.7932949,197.0434786,79.82711128 +421.0444796,222.2651604,319.4834477,207.8273083,175.831045,323.2416935,372.651125,189.2790898,269.6584997,196.623617,79.77977179 +383.8000165,212.665667,298.0854606,202.8755493,174.7093417,316.7476076,362.4008383,186.7886075,262.0676853,194.3689037,79.94428742 +383.1154754,214.028032,299.3749084,208.3154163,177.0701749,335.8323559,375.6403755,188.8581138,268.0667161,198.2640061,79.83452637 +385.6943862,212.9386928,299.1120307,202.4319277,174.3761375,314.0644831,361.2447012,186.6446159,261.7993222,193.8659851,79.95216377 +389.4194347,214.2869109,301.1039427,204.4530818,174.9505359,319.2427499,362.7530492,187.0106463,262.6280046,194.7561524,79.91111942 +393.0314525,215.8997241,304.6515186,206.8824979,176.4240767,328.9713605,374.3886807,188.8771361,268.3230269,197.3652325,79.83563292 +381.8063275,212.3264866,297.019488,203.2714864,174.8843706,318.6951166,362.453907,186.7667019,261.9225206,194.6365993,79.9364619 +398.9498889,218.3299142,308.3172715,211.0786136,177.5716853,339.2606896,378.8291038,189.8087743,270.754573,199.1915057,79.76307151 +406.4970481,219.9083614,310.7945577,211.461026,176.5026419,333.3933802,368.7037287,188.4416197,266.4740013,197.2832873,79.78288207 +388.2153117,215.5732878,303.2082751,209.5477353,177.94291,340.829586,384.1940278,190.1948989,272.3437833,199.8959932,79.78388618 +404.2502768,219.5800146,311.7830732,210.9075291,177.7432527,338.8874383,382.044126,190.4712915,272.7965035,199.6221727,79.74009582 +416.2228927,223.4889116,321.4882997,214.5928205,180.2982067,353.7852812,405.2874123,194.2485896,284.648887,204.3151075,79.59540492 +397.6273904,217.5187094,306.3384659,209.8156208,176.4968582,332.6990413,370.394889,188.3976384,266.6008568,197.3052517,79.8099647 +391.4146074,215.2671381,302.2426926,206.6191577,175.4917144,324.5769134,364.5705288,187.3276774,263.4625989,195.5999116,79.87914245 +395.1161818,216.5008058,305.3020125,207.4686016,176.269348,328.7109848,371.2104964,188.534752,266.9960341,197.0083653,79.83759824 +388.8112946,214.7686765,301.3554595,206.4922031,175.8342141,326.3281216,367.448692,187.7657159,264.7168249,196.1883372,79.87541103 +371.2656075,210.4683375,291.747089,204.8838892,175.8571899,327.3577399,366.4124358,187.1688081,262.8615161,196.0806847,79.93160913 +387.2917438,215.0842446,301.116176,209.0708789,176.8720532,335.4099128,372.7333767,188.5276769,266.9282832,197.884345,79.82758452 +426.9276419,225.4994027,326.6253934,213.3216007,179.0843264,344.3570744,398.5526828,193.4848554,282.4825159,202.3821268,79.61607443 +398.8843038,217.510145,307.0430753,208.4112792,176.138375,328.6131894,369.2194074,188.3240175,266.3387601,196.7518966,79.82777887 +411.1024426,220.8021277,315.3776399,210.0778819,177.2833273,334.5101212,381.7765205,190.4273612,273.1003914,199.0072261,79.73913272 +423.2823058,223.8705198,323.4414217,210.700289,177.9343644,336.274017,390.4630537,192.0983239,278.3402804,200.3887167,79.6768407 +381.1708667,213.5784349,297.4195178,208.6539795,176.6742022,334.9471876,369.7010434,187.961369,265.0727772,197.4305804,79.85630885 +415.8414302,221.9529178,318.436803,210.2157525,177.5608929,335.4314428,385.3606141,191.0730345,275.1468461,199.6018058,79.71061193 +396.2409992,216.65872,306.0440366,207.4520114,176.2981624,328.8637232,372.8399955,188.6667008,267.7417493,197.1577505,79.82434115 +397.6768445,216.5601349,308.0490432,205.3072485,176.2679761,324.9672612,379.0693619,189.5939671,271.068466,197.4086315,79.8345823 +418.8385897,223.290775,321.4421845,212.0886817,178.6008963,341.8851696,393.7826859,192.5163535,279.5005744,201.4344877,79.66185025 +407.6299681,220.6115169,314.7791536,211.8015499,178.3511451,342.1108783,389.7727836,191.582581,276.6646967,200.8326159,79.70442502 +366.1519718,208.7371868,287.9394858,203.1248259,174.8653903,321.1559216,358.6124958,185.8027275,258.8259454,194.3435196,79.98410849 +399.4703646,219.1698973,310.2284468,213.4930566,179.1786315,350.3443194,391.1245568,191.6590646,276.4640142,202.0023058,79.68952771 +428.9109876,226.3285324,327.7836285,215.0831891,179.6598853,349.5159016,401.1123498,193.8705485,283.6283758,203.3340811,79.5737574 +386.2454136,213.8411127,300.5288915,204.9007178,175.9012219,324.9801294,371.2134097,188.1772484,266.2903838,196.465094,79.88204243 +405.7472375,219.1131086,313.0728318,207.9222714,177.2013263,331.8591621,384.7817271,190.6923201,274.2475792,199.0118681,79.76324102 +407.09527,219.8799292,312.7561069,210.2119185,177.0783018,334.2915522,378.6416836,189.8521217,271.2883402,198.5500855,79.759128 +394.4154696,216.2904601,305.6362171,207.2678766,176.4444642,329.1426656,375.500095,189.0254581,268.9669362,197.449929,79.83129949 +370.8316175,210.2649157,291.9729125,204.2520566,176.0163093,327.2944498,369.5288416,187.583894,264.2961691,196.4577278,79.9280895 +388.3995231,214.0094898,301.6804181,203.9865258,175.5492006,321.5557748,370.9535114,188.1005534,266.375563,195.9875176,79.89068217 +385.7857299,214.2585965,299.9245541,207.2225424,176.1961391,329.7389738,369.1538976,187.93603,265.244493,196.7723954,79.86263057 +438.0142849,226.0515276,330.6936476,207.3143445,176.3591369,322.5171535,384.0638093,191.4439935,276.687053,198.004732,79.72034272 +396.9917827,216.7579653,306.9168456,206.6818563,176.3271333,327.4661574,374.9510056,189.0585476,268.928679,197.2687299,79.83310347 +400.5013641,218.6580938,309.1673132,211.1382213,177.5454973,339.1016285,379.0774064,189.8401271,270.9507113,199.1897149,79.75432216 +374.6378287,211.7506708,292.8087212,207.6246687,175.9048127,330.9743458,361.9395194,186.6452834,260.9421267,195.9595291,79.90965791 +367.590082,208.918462,288.5725992,202.7095818,174.6471108,319.1464621,358.2195696,185.6940666,258.670193,194.0115526,79.99071456 +419.2439847,223.1058902,321.1982902,211.2853846,178.1434219,338.6857578,390.5752061,192.0124999,278.0155724,200.6588921,79.67721592 +384.0475232,211.6716706,297.7039055,200.5801056,173.0354208,311.5568158,359.8595477,185.2873449,260.5124023,192.4044181,78.28335595 +383.5725718,212.7938641,298.1745459,205.2405318,174.5621803,325.6389393,366.8512304,186.3438149,263.5154018,194.8435916,78.20141375 +395.6250716,216.8212681,308.0569771,209.31526,177.3228545,342.4682064,390.7976618,190.2809225,275.675779,199.8638552,78.03551854 +367.1241833,207.3105701,288.0712404,198.1019822,172.4721322,307.7760714,355.3210148,184.1809159,257.169322,191.3166458,78.36747392 +378.6741592,210.0126539,291.7733573,200.106835,171.4338937,304.3519521,341.178319,182.3718475,251.1036082,189.2766257,78.37754223 +359.821021,206.927953,283.5354203,203.5703413,173.6867361,323.3183006,353.3362865,183.9036804,255.4409098,192.875789,78.32614922 +388.6644207,212.3939513,300.4577654,199.7013963,172.7467569,308.1623521,361.3501096,185.5184187,261.667352,192.1184645,78.28445672 +380.668109,212.2919574,296.8094738,205.7696102,174.9125341,328.694575,368.3214523,186.5319865,263.9679821,195.3883009,78.19345359 +396.4011176,214.5594432,304.6147813,201.2099837,173.0296251,310.5230025,361.4377643,185.8438255,262.2598625,192.5355707,78.24829083 +382.5186303,211.8229843,297.1804805,202.2576845,173.5887837,316.6538113,362.2240266,185.6456839,261.4735993,193.2654646,78.26092379 +371.4567625,209.9679868,291.889611,204.5619631,174.9222002,328.7316592,367.8803032,186.2845621,263.0878377,195.3426527,78.22981716 +381.8794509,211.833895,295.3664899,203.7228212,173.1824425,317.288487,353.7274796,184.3942526,257.256956,192.31838,78.2728977 +379.6095449,210.3381319,294.3171581,199.8359732,172.2784706,307.6101036,353.4156498,184.1237944,257.0949051,191.037518,78.3332965 +391.7150176,214.5644872,303.6752104,204.655821,174.8194126,324.5536415,373.9371455,187.5193902,267.546375,195.5794982,78.16553898 +378.6576298,211.0375577,294.4763952,203.0075395,173.5636051,318.6488326,358.7322165,185.0369066,259.4126618,193.0678489,78.26500283 +360.4183861,205.8219682,284.419856,198.132415,172.7194138,310.3389121,355.9535883,184.0654135,256.8224292,191.6675154,78.37426381 +365.3445722,206.6464405,284.5014047,198.2123047,171.1761136,302.4785242,338.7880096,181.7374087,249.0943781,188.7426466,78.43108656 +391.6237636,214.4718821,303.238934,204.3186338,174.577796,322.9278751,370.7780743,187.1520975,266.1280074,195.0882151,78.1818496 +377.6636471,210.6089181,294.703481,201.8010197,173.6536525,317.1574839,363.5775799,185.6283298,261.6690702,193.401578,78.26996721 +371.4121799,209.6569336,290.3380778,204.1075508,173.8465652,322.8193707,358.1717825,184.7444393,258.4585277,193.3864999,78.27345101 +389.9107723,213.4628034,300.9442963,202.6386068,173.464294,315.7696172,361.8792839,185.6952957,261.7391682,193.1271374,78.23939525 +370.8993515,208.651598,288.1109564,201.1757316,172.1003935,310.4499782,343.5211167,182.6701804,251.708838,190.2943749,78.36462391 +363.4313628,206.7807229,285.5138454,199.5838279,172.57269,311.219144,352.7443848,183.6587486,255.4717625,191.3154107,78.36987498 +376.5799544,208.7351165,291.8893534,196.4177219,171.2004762,298.131982,346.6597981,183.1001053,253.8542647,189.2053856,78.40303419 +404.2975842,218.2952853,311.8387145,207.6490057,176.0431624,332.3843097,383.3665922,189.3659537,273.0040679,197.7793942,78.07047712 +366.6005609,208.677269,288.8062181,203.958773,174.7093069,327.8538469,365.894104,185.7715311,261.6431803,194.9217993,78.25478038 +382.8965966,211.7115263,297.1099067,201.6820114,173.3200099,314.6114744,360.4020848,185.3638793,260.6362452,192.8143012,78.27134391 +374.8705451,208.7809283,290.9798958,197.9765862,171.5030461,301.9396042,347.0443184,183.1171294,253.8559925,189.63002,78.38927551 +390.4875614,213.8639703,301.5650618,203.5649331,173.8723647,319.023327,364.2636186,186.0846139,262.8617599,193.8115386,78.21429045 +394.4665174,216.1928394,304.861131,208.7805771,175.618329,333.7731092,372.6571276,187.6523025,267.1170783,196.6499073,78.11628911 +394.0495178,215.2152351,304.5601273,205.30874,174.7490646,324.8647256,371.6049535,187.2842835,266.6026722,195.3829022,78.16016823 +355.4430224,204.246871,279.8672558,197.1014569,171.4844348,303.9631321,343.2091936,182.0315534,250.3947929,189.335564,78.44475193 +376.316168,210.6618218,292.5141768,203.7032577,173.3830095,318.8756713,354.3643988,184.4104922,257.1767282,192.5851401,78.28827854 +363.2658423,206.7738077,284.4971774,200.1262248,172.2741959,310.8417031,346.8351265,182.8672143,252.6486992,190.62793,78.38190561 +382.6117856,211.8586555,297.6500261,202.2409759,173.8971293,318.3110136,365.4557627,186.0887344,262.9392727,193.8563929,78.24195657 +373.854375,210.4228739,292.2874596,204.5938835,174.2554665,324.8599603,362.0454909,185.4413306,260.5505228,194.1378264,78.24990322 +364.1413672,206.3062596,285.1061814,197.3609164,171.7043499,303.9157146,346.6809885,182.8192312,252.7558798,189.8393552,78.41225497 +371.8006764,209.8074306,290.8217003,204.0716842,174.0265761,323.5138742,359.2688813,185.0385904,259.125606,193.6909415,78.26954831 +381.8584105,212.0889146,296.8401777,204.061479,174.1715737,322.6196265,363.8341925,185.867294,261.9630871,194.162182,78.22767422 +365.0148712,208.2657015,288.5692908,203.4606999,175.0057948,328.6648499,370.4827526,186.3436886,263.6848179,195.5369772,78.24624937 +371.943761,210.2773554,292.8687715,205.0937923,175.4968359,332.0188058,373.8165376,187.1113077,265.8627835,196.399644,78.20118405 +387.2067684,213.298532,301.4497893,203.3490216,174.6893235,322.5736038,374.367971,187.492769,267.5359804,195.3891176,78.1917769 +389.0281802,213.1698669,300.6614634,202.1264517,173.4574498,315.1075703,362.4749603,185.7865822,262.0345805,193.1439405,78.24172125 +375.1632222,210.1460755,291.8822057,202.8197365,173.1825586,317.0441324,354.4169996,184.283668,257.0547902,192.3059044,78.29680659 +367.369082,207.5131961,288.832472,198.6373149,173.0075167,311.1293404,360.9507163,184.9108566,259.715416,192.3410286,78.3378336 +370.6305431,209.4811168,289.6623142,204.3079329,173.7444891,322.9081796,355.8654635,184.4558283,257.3882567,193.1534589,78.27754797 +371.1845685,208.9207696,291.1639895,200.6980953,173.6587275,316.8841565,363.2225689,185.4391855,260.9838064,193.3664173,78.29235768 +372.8044799,208.5823533,290.6574535,198.6514791,172.2675695,306.9982566,352.8528645,183.923192,256.3514359,190.9612905,78.35334847 +372.1541529,209.4060066,291.5182268,201.8262368,173.7466518,318.6303015,362.2585592,185.3562215,260.6027306,193.4324359,78.28504084 +369.7133317,208.5797988,289.3489142,201.102058,173.1216251,315.0742677,356.2332254,184.3970972,257.5880658,192.2752845,78.32057804 +402.0449511,216.2075293,307.8717572,202.7631117,173.454799,314.0655244,364.1399952,186.3546316,263.8131337,193.2844635,78.20632545 +383.0135834,211.7546356,297.188193,201.8012128,173.3766092,315.1350111,360.7062345,185.3988821,260.7570228,192.9131047,78.26573259 +404.4454367,217.4817241,311.2298232,204.6468283,174.8777767,322.675194,377.1722425,188.4007789,270.2533856,195.8792041,78.12649562 +382.029948,210.8825307,294.9622705,200.1455532,172.055672,306.7918787,349.6394972,183.6640736,255.4287238,190.558111,78.33473376 +396.2261633,214.7531841,304.0231541,202.3199669,173.0173135,312.0577686,359.1198712,185.4841114,261.03048,192.4069258,78.24958507 +380.6568711,211.5310905,295.281558,203.4237562,173.4933295,318.654863,358.115092,184.9126142,259.1294492,192.9462271,78.26165924 +404.7736194,216.8235027,308.6226833,203.1998333,173.0691972,312.4172005,359.6360244,185.7554833,261.8766334,192.5540862,78.21490754 +369.4261305,207.8366081,288.4283596,198.6182044,172.0852369,306.5101814,350.0100239,183.4609731,254.7548363,190.5416357,78.37752134 +368.7216891,209.0519187,289.5854804,203.6322715,174.2358929,324.3670043,362.3642774,185.3448387,260.310042,194.1016625,78.26891911 +371.2642435,208.1363844,289.4322416,198.2388978,171.777662,303.9993742,349.0160332,183.3469932,254.5661733,190.082134,78.38566753 +374.7337666,209.3329222,291.2566253,200.0669439,172.2934945,308.8132535,350.3002527,183.6533385,255.2583753,190.8776919,78.34499968 +378.0987531,210.8120875,294.5569094,202.3005262,173.635849,317.8700032,361.194796,185.367431,260.5596571,193.2643286,78.26975693 +367.3354129,207.4178746,287.3109678,198.9096957,172.2294365,308.2540304,349.8630774,183.3979672,254.5032179,190.7509487,78.36968943 +383.9210553,213.1255239,298.1142345,206.2415965,174.6920831,327.5946954,365.4189671,186.2406082,262.8711602,194.9563521,78.19862511 +391.1928507,214.6471761,300.5177782,206.6269206,173.7037654,322.1243986,355.9915111,184.9865579,258.9217239,193.1935353,78.21913343 +373.4780065,210.4975834,293.1653735,204.7688216,175.0290381,328.9965423,370.4962141,186.5865175,264.3482375,195.5964549,78.21832987 +388.9292474,214.2688958,301.3682655,206.0631577,174.845573,327.1958022,368.3352574,186.8443321,264.7338775,195.342824,78.17573767 +400.1547099,217.9102946,310.4642791,209.4681535,177.1864076,341.0548357,390.3237518,190.3560571,275.8871227,199.6636878,78.03168259 +382.5693354,212.3616918,296.2060642,205.0548529,173.6932728,321.4188545,357.5424426,184.9286266,259.0016053,193.2004894,78.24531098 +376.6796658,210.2642169,292.3537907,202.0882797,172.7856101,313.8417023,352.0687684,183.9477144,256.0661537,191.6507882,78.31356048 +380.2880842,211.4196353,295.2794288,202.8838859,173.5064776,317.7135427,358.2214682,185.0660767,259.3400267,192.9582211,78.27222236 +374.2950138,209.8105623,291.5569195,201.984382,173.1119441,315.5110753,354.7404495,184.3602368,257.2310003,192.2113964,78.30972305 +357.6046892,205.7515569,282.4650351,200.4619158,173.1487873,316.5253258,353.6844604,183.7971587,255.4419728,192.1280606,78.36498614 +372.7037477,210.0376336,291.2384068,204.3326164,174.0490403,323.9876479,359.6345653,185.0348107,259.243212,193.743539,78.26229284 +410.4458772,219.8793368,315.4140264,208.3298869,176.0590854,332.1661126,384.0977205,189.6779004,273.9522468,197.8741876,78.05256342 +383.9307443,212.4012597,296.9634008,203.7880134,173.3823643,317.6324152,356.4373009,184.8837051,258.7785075,192.7225742,78.26303815 +395.2607551,215.4191148,304.6896874,205.2728729,174.4019071,322.9772638,368.2127031,186.8064861,265.0751566,194.7481437,78.17440763 +406.8268977,218.2963961,312.314322,205.8481491,174.9957173,324.5529038,376.3661413,188.36421,269.992438,196.0166508,78.11247197 +366.985299,208.647662,287.8004964,203.9635553,173.8801113,323.6252334,356.7928167,184.5197411,257.518263,193.3453494,78.2909593 +399.6121368,216.4345829,307.4936603,205.3505752,174.645097,323.7603997,371.4750743,187.3807625,266.9234707,195.2704453,78.14580417 +380.9878425,211.472417,295.7845314,202.7857207,173.5004393,317.6956814,359.7015266,185.1498397,259.9818589,193.0388798,78.25865729 +382.3914031,211.4608511,297.7328319,200.846385,173.4835479,314.023138,365.743166,186.0559531,263.2180987,193.2985169,78.26820362 +402.7129416,217.7869059,310.4806905,207.1698227,175.6175934,329.8756049,379.5676079,188.7663733,271.1213181,197.0004555,78.09774895 +392.0736356,215.2967401,304.2006243,206.9204788,175.3898972,330.1404875,375.8680282,187.9050705,268.4965713,196.4513904,78.14022832 +352.6057823,204.0858448,278.8059185,198.7877063,172.2314683,310.6753816,346.3087101,182.5184895,251.6348842,190.5114411,78.4172431 +384.2568658,213.8518638,299.8249157,208.4453164,176.1600899,337.9363062,376.9445005,187.9346859,268.1751534,197.529748,78.12535762 +412.0791806,220.5503288,316.3540315,209.8905614,176.5691508,336.9317859,386.3804295,189.9880156,274.9187591,198.7101327,78.01055976 +371.5590806,208.8536701,290.617966,200.4330666,173.1601882,314.1237419,358.1657865,184.7099903,258.6225557,192.4358446,78.3153371 +390.0051797,213.804658,302.4309788,203.2400648,174.3275274,320.426304,371.0284306,187.0501842,266.1380133,194.7519499,78.19759036 +391.5230703,214.5845957,302.2547944,205.4221472,174.2175921,322.8217183,365.3256019,186.2831063,263.4129758,194.3365671,78.19455873 +379.4756141,211.2423762,295.5420113,202.7003091,173.6513687,318.0407457,362.4101859,185.5314182,261.2624781,193.347692,78.26572304 +357.0614619,205.5199649,282.6071037,199.8411662,173.2885575,316.3995727,356.5499489,184.1664644,256.7426355,192.4611087,78.36101206 +373.4722145,209.0131487,291.648358,199.5796388,172.8275199,310.8485726,358.0130152,184.6460335,258.7468388,191.9849043,78.32373926 +371.2527532,209.2654341,290.1077499,202.612126,173.4301102,318.6499098,356.2490826,184.4890539,257.661754,192.7209427,78.29695655 +420.9024645,220.4157773,319.2584607,202.7327074,173.54984,311.6424427,370.4554673,187.7956952,268.5429756,193.8265874,78.15531748 +381.9773939,211.6704647,296.7684878,202.1529847,173.5536293,316.4887272,361.8158519,185.5592361,261.187983,193.1922679,78.2672441 +385.2386189,213.3814633,298.8303418,206.2543701,174.6522757,327.3742562,365.586536,186.246718,263.0076466,194.9252063,78.1898329 +360.8958299,206.9709386,283.5184305,203.0324836,173.18821,319.9931599,349.5580627,183.3183956,253.6914378,192.0142433,78.3442865 +353.9538531,204.2929491,279.401787,198.4286738,172.031605,308.7975012,346.0806729,182.434216,251.5556634,190.2123176,78.42372306 +402.9889183,217.5747418,310.1875036,206.3921707,175.188494,326.8324951,376.4767532,188.2807074,269.6832951,196.2667312,78.11294126 +421.643901,222.3311717,322.0168472,209.4153455,177.2610993,338.3509112,393.6891167,191.5727987,278.9654256,200.0417844,83.43141946 +420.7888571,223.5782932,322.4362689,214.9182619,179.0967605,354.7990812,401.6703842,192.8086417,282.4016302,202.9494552,83.34195165 +434.4858981,228.3128647,333.8017952,219.7580594,182.3447563,374.195951,429.3372646,197.4781432,296.6383676,208.8488577,83.163747 +402.449998,217.2571279,310.9792184,206.4834244,176.5845484,333.9725112,388.4456169,190.2687171,275.0970578,198.7435032,83.51967622 +414.6148972,220.1896905,314.7107142,208.7730711,175.323079,329.6511364,371.7028998,188.0202814,267.7373608,196.2628118,83.53201922 +392.9955318,216.5870998,305.1586841,212.9410099,178.0089857,351.7895448,386.1607979,189.8826286,272.9791923,200.5477962,83.47406509 +427.4011483,223.266765,325.4309204,208.3381431,176.9583061,334.6120241,395.143894,191.8399281,280.1823118,199.7480341,83.43182376 +417.4182428,223.0054769,320.833405,215.5820341,179.5108162,358.2959578,403.5420687,193.0614524,283.0280806,203.5987313,83.33368664 +435.4623384,225.6088268,329.8267869,210.0735062,177.2345004,337.0418346,395.298451,192.1651221,280.8374349,200.1571927,83.39395828 +419.4502186,222.3751882,321.2073503,211.3243564,177.8980119,344.2086127,396.2023746,191.9247749,279.9265023,201.0152091,83.4052967 +406.8010695,220.2986387,315.0869756,214.2103383,179.5065439,358.2146902,403.3095155,192.8075421,282.1538202,203.5338269,83.37258717 +418.5110337,222.3921032,318.9933206,213.1218789,177.4441337,344.9144373,386.5804249,190.4916809,275.1022227,199.9425106,83.42020222 +416.6137565,220.7630288,318.1350569,208.4633478,176.3881526,333.8315306,385.9031988,190.1589862,274.7973366,198.4427838,83.48283014 +430.5212243,225.7333144,328.995769,214.2398729,179.4211203,353.715714,409.7139977,194.2010255,287.0556213,203.8438669,83.30349558 +415.262395,221.581507,318.1861918,212.3547095,177.9148125,346.619336,392.5981064,191.3198148,277.7866788,200.8698452,83.41184718 +395.1465085,215.6452793,306.9386916,206.6522944,176.9181014,337.1301912,389.4728012,190.2301149,274.9036369,199.2307807,83.52811742 +399.5396704,216.314659,306.3748256,206.6182327,175.0157779,327.5102139,369.2067758,187.3152242,265.5626748,195.6421907,83.58889049 +429.9103364,225.5042637,328.2318595,213.8024081,179.0855659,351.554352,406.1722585,193.7336683,285.4117396,203.1968215,83.32148232 +414.5178655,221.1167571,318.6633788,210.8580792,178.0249875,345.0491187,397.8308798,191.9738698,280.2499603,201.2536789,83.41489473 +406.9593615,219.9471349,313.4109163,213.6187845,178.259912,351.5284768,391.724145,190.9441781,276.5571015,201.2462645,83.41899694 +428.2485005,224.4070126,325.7255708,211.8430695,177.7931723,343.318009,395.9118355,192.0490855,280.3320388,200.9230756,83.38447553 +405.7009611,218.6422849,310.428868,210.1574235,176.1325149,336.7662839,374.9298884,188.4528611,268.6976743,197.5136353,83.51893755 +398.105099,216.6121585,307.9661377,208.222846,176.7290675,338.029847,385.2831573,189.6324335,273.0122081,198.7659594,83.52070952 +413.1880493,218.9136282,315.3106085,204.4341506,175.057135,322.5690159,378.311375,188.9667998,271.1613562,196.2182215,83.5597277 +444.1952607,229.9106914,338.046631,217.6776713,180.8226631,362.567245,420.4129223,196.2939261,293.2528686,206.3607773,83.20115112 +401.6111999,218.868948,311.7238753,213.5287976,179.2776869,357.3633947,400.8948717,192.2179251,280.4511902,203.0666878,83.39933731 +420.0790871,222.3099418,321.2186168,210.6899062,177.592789,341.8746185,394.22709,191.6325621,279.0406096,200.5102216,83.41761743 +410.8973354,218.8652423,314.1199082,206.2241454,175.4215865,327.0130322,378.5203068,188.9296664,270.997876,196.7109669,83.54261981 +428.931637,224.9045039,326.4570378,212.9866492,178.2881721,347.1230621,398.8260616,192.5447745,281.7370069,201.755749,83.35809038 +432.3804501,227.3479563,329.7090807,218.993724,180.302813,363.9243095,408.319813,194.2834771,286.4939246,205.0085616,83.25056942 +432.8714145,226.4289112,329.8576031,214.9979001,179.32226,353.9425118,407.1103231,193.9173964,285.9783694,203.5933221,83.29855256 +389.21186,213.7587794,301.5388108,205.4177914,175.4545088,329.6375122,374.6015108,187.795314,267.3174049,196.4673781,83.6035586 +411.6942477,220.8749869,315.4712684,213.0014081,177.6287003,346.5835792,387.0383439,190.4144804,274.8267219,200.1625121,83.43419028 +397.4617475,216.5303237,306.5472956,208.905583,176.3542661,337.4274814,378.6086604,188.6947057,269.7715866,197.9279352,83.53548591 +420.080402,222.5905189,322.0097121,211.4417842,178.3037857,346.2956479,400.2857322,192.5597615,281.8849075,201.7929688,83.38689147 +409.4515844,220.7462207,315.5128955,214.1307718,178.7111047,353.784631,396.1160868,191.7162255,278.9183759,202.0798547,83.39281876 +398.8890104,216.0886742,307.4509971,205.6666291,175.6757331,329.4046619,378.592466,188.6870551,270.0339319,197.0067274,83.56929818 +406.8988841,220.0043263,313.7026019,213.5470103,178.4247467,352.0894025,393.0899715,191.2555841,277.3407566,201.5377575,83.41488918 +418.8646384,222.7980294,320.8994515,213.5915389,178.6312958,351.212098,398.4499767,192.2959198,280.7486671,202.1558838,83.37177626 +400.2201828,218.4783137,311.6803525,212.9761849,179.6487715,358.489083,406.1698993,192.9221796,282.8625901,203.821693,83.38954872 +407.6360022,220.6972122,316.3902516,214.8225859,180.1942645,362.184394,409.9411987,193.765892,285.3006039,204.7828486,83.34069458 +425.3798867,224.2346448,326.4269707,212.6665943,179.2433118,351.3592912,410.1706415,194.1439964,287.0094522,203.5825416,83.33071874 +427.377884,224.1088494,325.4575226,211.2788553,177.7862062,342.5599891,396.7682505,192.1884508,280.7745653,200.953733,83.38742636 +411.0616073,220.4597762,315.0942352,212.0535638,177.4469798,344.7044845,387.2974774,190.3615525,274.8537001,199.9293982,83.44458177 +403.4329575,217.6767186,312.2222357,207.2074969,177.2800582,338.1885681,394.9993693,191.2121642,278.1610092,200.0452294,83.48859159 +405.9294957,219.7472574,312.5413563,213.9074275,178.1439706,351.5602671,389.3265717,190.641469,275.4298237,200.9885492,83.42470435 +407.2979625,219.2402477,314.6598484,209.6855588,178.0330053,344.7118342,397.8666695,191.8457602,279.7351642,201.2392858,83.44086675 +409.1588626,218.8308034,314.0555996,207.207225,176.375264,333.1545088,385.7565812,190.023361,274.2481499,198.3808525,83.50682624 +407.9606773,219.6622462,314.8581481,210.905433,178.1121179,346.6391915,396.4383099,191.6534317,279.0678302,201.2619866,83.43113178 +405.1489202,218.6995061,312.3321843,210.0562495,177.3756519,342.4897395,389.500169,190.5258822,275.5629269,199.9021195,83.4696095 +441.9141928,227.5530608,333.5954251,211.9411024,177.7629503,341.2353161,398.4519005,192.7922484,282.6743398,201.0794999,83.34981346 +420.3839072,222.4203908,321.3926228,210.8811125,177.6774773,342.5455049,394.709804,191.7151264,279.2705464,200.6598515,83.41237151 +444.7919577,229.0668642,337.5410327,214.1900188,179.4557088,351.3609571,413.4608936,195.2041579,290.165498,204.1506478,83.26275591 +419.1457809,221.3659285,318.7564144,208.862448,176.1065704,332.7621528,381.682172,189.6254819,272.9231933,197.8587507,83.48643893 +434.8126939,225.7111587,328.9322376,211.3098901,177.2093714,338.7476356,392.3501729,191.6744123,279.2279879,199.9722167,83.39410385 +417.6493103,222.1693441,319.1872172,212.8167394,177.8462971,346.707076,391.654992,191.1541922,277.3516114,200.7376454,83.40804581 +444.7247643,228.1859536,334.305596,212.4053189,177.3009177,339.2649114,393.1113187,192.0435505,280.3050201,200.1991375,83.35879922 +404.6816789,217.7831481,311.1853156,207.0605624,176.111567,332.3681848,382.1782035,189.3756079,272.1858799,197.7988679,83.5306196 +403.8048564,219.2140624,312.5060223,213.0578912,178.6967736,353.2628357,396.6530233,191.6488487,278.7573651,202.0594757,83.41353543 +406.7581837,218.0944259,312.330053,206.5255765,175.7480264,329.4455591,380.809419,189.194046,271.8210439,197.244821,83.53748319 +410.7078382,219.5341506,314.426108,208.7975761,176.3752011,335.0874956,382.587132,189.6185501,272.7940673,198.2217639,83.49672825 +414.6071899,221.277264,318.2854879,211.4581678,177.9765233,345.6944741,395.2269979,191.660332,279.0098824,201.0583166,83.41572201 +402.7160537,217.4591521,310.0684782,207.5787972,176.3353561,334.5701679,382.546428,189.4367562,272.2109271,198.1483595,83.52473221 +420.5417385,223.7992512,322.0315838,216.0160762,179.2032629,356.811051,399.8857962,192.610607,281.5233314,203.0029412,83.33838483 +428.5457736,225.4937356,324.6373417,216.4056208,178.0374196,350.4065496,388.768723,191.0824624,276.7561615,200.9144753,83.36139463 +409.4706463,220.9423914,316.7641485,214.3822212,179.6481199,358.7472334,405.808116,193.100008,283.3738991,203.8327667,83.35837906 +426.2303397,225.1439873,325.7644471,215.8357812,179.379414,356.2926312,403.450909,193.3489585,283.7933599,203.4614639,83.31461259 +439.3307246,229.4502139,336.4065668,219.8287416,182.1565261,372.5196285,428.4525766,197.464645,296.6400022,208.5552861,83.15863436 +419.3678154,223.0019361,320.0116589,214.6472843,178.0623563,349.8055822,390.7607924,191.0969332,277.0237522,200.991707,83.38912877 +412.7455215,220.5776254,315.6106619,211.1599871,176.9666338,340.9325339,384.4771585,189.9422453,273.6427042,199.1372471,83.4625956 +416.4779614,221.8292825,318.7933003,212.0806115,177.7802116,345.2747357,391.6804958,191.2339865,277.4733629,200.6245261,83.41809165 +409.7641764,219.9763137,314.5635388,211.0177908,177.3203009,342.7649937,387.593661,190.4008025,274.9954874,199.7509331,83.45767165 +390.8951152,215.3163969,304.1603984,209.3304209,177.376591,344.010485,386.6982314,189.8100908,273.1209565,199.6862841,83.51648415 +408.2552765,220.3585511,314.3565058,213.8873045,178.4820216,352.7776225,393.485464,191.2845357,277.5018819,201.6458148,83.4076261 +450.8002303,231.6146472,341.9301031,218.3633476,180.8204293,362.2404612,420.9580878,196.5669214,294.1234944,206.4222485,83.18052935 +420.4650125,222.9091579,320.6466768,213.0784069,177.6336859,345.1842619,389.3916812,190.9684549,276.6655783,200.33243,83.40747072 +434.0468941,226.6022698,329.8972824,214.9034485,178.9019694,351.6894251,403.0633137,193.3158831,284.1030135,202.8230099,83.31361278 +447.1434178,229.917817,338.6113831,215.5500044,179.5860505,353.473819,412.4020915,195.1178711,289.7599856,204.2900414,83.24722475 +401.51375,218.6835653,310.2690225,213.4377684,178.2645551,352.2674713,390.2004027,190.6542004,275.4663837,201.1476092,83.43769065 +439.3342771,227.9038262,333.290889,215.0911114,179.2152326,352.6801843,407.0883445,194.0710829,286.437113,203.4929749,83.28469762 +418.3005087,222.1774649,319.9021526,212.1163933,177.869509,345.6831683,393.6503699,191.4787821,278.4517637,200.8777993,83.40540891 +419.9849089,222.0991684,322.1755817,209.667504,177.8155771,341.3994882,400.1537084,192.4392431,281.939629,201.1123836,83.41227205 +442.1748657,229.2399488,336.3679818,217.0502094,180.3061475,359.6067064,415.8951248,195.5389259,290.951193,205.4136898,83.22953849 +430.1629395,226.3531016,329.1834657,216.7388899,180.0566772,360.0069431,411.5447337,194.5200767,287.8566404,204.7875596,83.27281152 +385.6462393,213.5187644,300.1328726,207.4589611,176.3394501,337.3913258,378.4149065,188.3881607,268.8452478,197.8611353,83.57405862 +421.2754028,224.7631801,324.1957656,218.6817528,180.9709166,368.9353366,413.2993859,194.6750453,287.8252026,206.0912003,83.25948598 +453.2370748,232.6174391,343.3307759,220.3688914,181.4879551,367.9592779,423.9741624,197.0864982,295.5672962,207.5264159,83.1380454 +407.483981,219.0961694,313.9038161,209.3264121,177.4279309,341.4093507,391.918382,190.946849,276.9010669,200.1139517,83.46551523 +428.6139529,224.8505077,327.576095,212.5611007,178.8264515,348.8741206,406.395528,193.6461561,285.4299059,202.8525151,83.33819563 +429.6550047,225.5839214,327.0214359,215.038048,178.6821079,351.4956134,399.6090017,192.6687739,282.0846481,202.3259665,83.3340493 +416.1233477,221.718299,319.3827199,211.8176996,178.0009306,345.9462714,396.2288019,191.7778114,279.5845342,201.1428804,83.40853678 +390.6252244,215.1439881,304.5002668,208.6579508,177.5632493,343.9758801,390.1941411,190.3088578,274.7743692,200.121597,83.513015 +410.1301981,219.3725733,315.331011,208.30033,177.0627657,337.7778399,391.5755605,190.8780928,276.9846731,199.6168982,83.47418311 +406.7102654,219.4790749,313.1015105,211.8690685,177.7470928,346.6013614,389.6405165,190.6495855,275.6944786,200.440085,83.44504517 +463.0956981,232.3255108,346.482709,211.757424,177.8513237,338.3367233,405.303173,194.3710681,287.8452438,201.6602726,83.29411871 +418.7458394,222.1764585,320.6887438,211.1879885,177.8487641,343.9762466,395.6635331,191.8084951,279.5593029,200.9149258,83.41199377 +422.4433958,224.2242426,323.0622724,216.1141808,179.1986799,356.7114471,400.2872894,192.6961664,281.8329649,203.0410999,83.33025325 +394.3426005,216.6722889,305.1945823,212.3200596,177.4296189,347.9586379,381.7375832,189.1981992,270.9260078,199.5462426,83.49430878 +387.3486254,213.7638889,300.9338208,206.9606773,176.1002694,335.2444833,377.8203959,188.2440864,268.6012389,197.4921499,83.57970861 +442.7787322,229.0849747,336.1807265,216.2017826,179.8215433,356.1530986,412.5424971,195.0293201,289.4196307,204.5952544,83.24728345 +413.8168434,219.2417469,316.6435782,206.6922109,175.1018039,332.2599347,386.0353989,189.0501113,274.1955838,197.3381566,82.26833161 +413.0158408,220.4869403,317.0724431,212.0574695,176.8577657,348.1425136,393.8291306,190.2553387,277.5492844,200.1254252,82.18086916 +426.5134984,225.1823019,328.2303387,216.7978831,180.0130882,366.9829008,420.8177094,194.8296705,291.4345386,205.857006,82.00681895 +394.9697792,214.2323484,305.8112855,203.7931208,174.4404643,327.9946145,380.9156057,187.7692861,270.4163484,196.0749179,82.35552739 +407.0176005,217.1369106,309.5428947,206.076062,173.2298772,323.8945792,364.6401269,185.5754451,263.2691626,193.6839648,82.36676584 +385.8838067,213.6266143,300.212741,210.1001388,175.79953,345.2829469,378.6675523,187.3823139,268.3486861,197.7980849,82.31203964 +419.3360791,220.1260249,319.9324311,205.6368314,174.810631,328.5767819,387.5089001,189.3312866,275.4142168,197.0497658,82.26758678 +409.7515398,219.9390101,315.5228697,212.7059554,177.2595415,351.5541076,395.629365,190.5017749,278.1488431,200.7564148,82.1733273 +427.387379,222.4706499,324.305155,207.3591776,175.0825288,331.0111917,387.6375148,189.6335034,276.0423308,197.4590943,82.23096007 +411.7105517,219.2944221,315.8644702,208.5482146,175.7048668,337.9103309,388.506599,189.3859946,275.1417433,198.2670751,82.24295013 +399.4045424,217.2945901,309.9250612,211.357899,177.2594432,351.51961,395.357911,190.251196,277.277767,200.7019124,82.21259321 +410.8496937,219.3299903,313.7436076,210.3240522,175.2698717,338.635985,379.1013686,187.9911085,270.4311856,197.2287463,82.2576281 +408.8067078,217.6643307,312.8076677,205.7474968,174.2494298,327.8300963,378.491284,187.6752965,270.1559128,195.7741274,82.31802297 +422.4727633,222.5870569,323.4545919,211.3936594,177.1764575,347.0527601,401.706033,191.6280283,282.1040782,200.9956307,82.14243363 +407.6273017,218.529544,312.9323296,209.5619025,175.7257941,340.2717248,384.9410667,188.8018978,273.0330097,198.126787,82.24980673 +387.7935926,212.6506948,301.8550184,203.9463945,174.7640404,331.0405186,381.8842914,187.7388287,270.2114811,196.5439282,82.36425347 +392.253283,213.3279366,301.3852368,203.9475923,172.9321374,321.8253247,362.1654398,184.8815316,261.1276809,193.0855031,82.42354973 +421.9815986,222.3884208,322.7534758,210.9821366,176.8577547,345.0313,398.2243917,191.1598353,280.4894529,200.382898,82.16070826 +406.7709867,218.0315665,313.3277254,208.0728238,175.8234381,338.667369,390.0958923,189.4428108,275.4554033,198.4863104,82.25210387 +399.442076,216.9041884,308.2328615,210.7710792,176.0440648,344.9716214,384.1136998,188.4312095,271.8423335,198.4684934,82.25673874 +420.2846633,221.2839385,320.2759324,209.0695927,175.6121774,337.0484939,388.2221677,189.5203074,275.5381368,198.1815942,82.22181278 +398.3643042,215.6523304,305.4004758,207.4260877,174.0109234,330.8127984,367.7127681,185.9970012,264.1769621,194.8934139,82.35530217 +390.6807753,213.5847552,302.8525637,205.4776175,174.5675377,331.8806416,377.8519217,187.1471317,268.3922403,196.0742925,82.35632809 +405.4904939,215.8509365,310.0622796,201.8259856,172.9843958,317.022306,371.0561367,186.5064644,266.5936327,193.6555648,82.39388824 +435.9919073,226.7302448,332.3686895,214.7760673,178.537598,355.6756016,412.1598636,193.6711544,288.1614037,203.4443971,82.04223403 +394.2220565,215.8576984,306.5863589,210.6692283,177.0316897,350.6421436,393.0220148,189.676754,275.6211585,200.237048,82.23832549 +412.311612,219.2277461,315.872856,207.9332088,175.4151735,335.6614805,386.5675722,189.1042684,274.271936,197.783296,82.25493706 +403.2585135,215.8029152,308.897772,203.5626521,173.3213199,321.2806302,371.2868768,186.4660504,266.4472345,194.11224,82.37706918 +420.9777395,221.7862792,321.0054923,210.1901295,176.0917769,340.7429437,391.0440133,190.0052509,276.8983723,198.988011,82.19623782 +424.5411574,224.2455957,324.272958,216.0764354,178.0316524,357.0602613,400.3165426,191.6956941,281.5482438,202.1330943,82.09173966 +424.8430957,223.289336,324.3315474,212.1497467,177.0845251,347.3155394,399.1499999,191.3463735,281.0467083,200.7590516,82.13778672 +381.9838516,210.7823788,296.5801037,202.7409705,173.3505846,323.8022668,367.3988043,185.3602312,262.823577,193.8688332,82.43797433 +404.2068266,217.8398061,310.3021534,210.190266,175.4401564,340.2485436,379.5702646,187.9036446,270.1702468,197.4375151,82.27181297 +390.1612669,213.5342973,301.5235855,206.162736,174.2120565,331.3662758,371.3184684,186.2278896,265.2231996,195.2751139,82.37126622 +412.2961292,219.5092915,316.6419186,208.6642675,176.1046588,339.9366746,392.4522229,190.0150951,277.033134,199.0251316,82.22508215 +401.9344727,217.704045,310.3071222,211.2749569,176.4788052,347.1683399,388.4020319,189.1793814,274.1476041,199.2788028,82.23133166 +391.5188164,213.0885368,302.3872318,203.0034754,173.5703489,323.6199082,371.287401,186.2252335,265.4705552,194.4029221,82.40433494 +399.4997333,216.9929955,308.5696366,210.7137938,176.2094644,345.5801144,385.4232975,188.7288957,272.5995624,198.7658764,82.25350394 +411.1621193,219.7294576,315.5870983,210.7698911,176.4182179,344.7200795,390.6513445,189.7552652,275.9214159,199.3706076,82.21050611 +392.7942687,215.4606132,306.5090745,210.1147068,177.3880177,351.6847145,398.179551,190.3702854,277.9754079,200.9643013,82.22862227 +400.1490984,217.6675751,311.157214,211.9372218,177.9154881,355.3014821,401.860211,191.1874157,280.3565416,201.8995611,82.18090292 +417.4317895,221.1100523,320.9320022,209.8471957,177.0030174,344.7704245,402.1516955,191.5675775,282.0593411,200.7451055,82.16943971 +419.4404066,220.9978545,320.0192474,208.5211316,175.609426,336.3281144,389.0368055,189.6567064,275.9601682,198.217598,82.2250121 +403.4857601,217.4079502,309.8899223,209.2554162,175.2654563,338.3933637,379.8070846,187.8603352,270.1872116,197.2061942,82.28157105 +395.8245346,214.6265304,306.9830274,204.4894725,175.1124008,332.015795,387.3171005,188.7077633,273.4081633,197.3266292,82.32459448 +398.5035195,216.7322112,307.423574,211.0685133,175.9391946,345.0518247,381.7421824,188.1395493,270.7338701,198.2289186,82.2628453 +399.7377689,216.2051103,309.4313049,206.9267577,175.8415847,338.3921123,390.0705358,189.3176954,274.9237739,198.4869118,82.27852469 +401.5331047,215.7831842,308.8320815,204.5195303,174.2463436,327.2190985,378.2809071,187.5391755,269.5847867,195.729225,82.3424976 +400.4082446,216.6178053,309.6292277,208.1147622,175.9067063,340.2392425,388.7104792,189.1209038,274.2882479,198.4966021,82.26875056 +397.6517822,215.666158,307.1607371,207.2874757,175.1965555,336.2312744,381.9415203,188.0197945,270.8699119,197.1814876,82.30639751 +433.7118085,224.387551,328.0001046,209.1910319,175.5941267,335.065142,390.7135981,190.2514706,277.834759,198.3485243,82.18739718 +412.6011452,219.3381386,316.0429415,208.1220021,175.4993868,336.3129461,387.0247943,189.1883046,274.4897736,197.9291055,82.24982655 +436.5300276,225.8872453,331.8560248,211.3767307,177.2254638,344.833067,405.3616393,192.6106382,285.1442573,201.3166224,82.10238713 +411.358127,218.2776232,313.4534187,206.1554528,173.9846155,326.8503715,374.3536839,187.1500872,268.3174265,195.2206042,82.32173154 +426.7795667,222.5713419,323.441411,208.5650834,175.0504453,332.6520119,384.7928945,189.1513356,274.4878115,197.2699378,82.23091202 +409.9028858,219.0852833,313.8811613,210.0068979,175.6550871,340.3199576,384.0541863,188.6426964,272.6216939,197.9888436,82.24535804 +436.5006071,225.015385,328.7158189,209.6564936,175.146409,333.1621662,385.5266583,189.5211727,275.5373566,197.4956891,82.19590829 +397.1992973,214.7539665,306.0371461,204.3674094,173.9841492,326.4676931,374.8159337,186.8940214,267.5839693,195.1614086,82.36605579 +396.3867406,216.195311,307.3559015,210.215985,176.466318,346.6630095,388.9041725,189.1145616,273.9794902,199.2607438,82.251993 +399.2036801,215.0468974,307.1420345,203.8459067,173.6294131,323.6116609,373.5146334,186.7199801,267.247018,194.6207513,82.37235611 +403.1294732,216.4895429,309.2292422,206.0797501,174.2394368,329.1057938,375.2100696,187.1350236,268.177197,195.5697423,82.33263726 +406.9549057,218.2160984,313.0040935,208.6731291,175.7813739,339.3525729,387.5285076,189.1293857,274.2335688,198.3067602,82.25344373 +395.2873612,214.4561624,304.9696587,204.8837626,174.2083861,328.6203685,375.1136228,186.9643725,267.5837666,195.505522,82.36082956 +412.8706412,220.7267026,316.7205108,213.1408231,176.9609365,350.1375885,392.0941047,190.0542108,276.6979276,200.1821896,82.17778382 +420.734493,222.3916048,319.2936358,213.5498714,175.839085,343.9515671,381.2918738,188.5687333,272.0732764,198.1646041,82.19945339 +401.8678878,217.878061,311.4877497,211.4993115,177.3814772,351.927474,397.8670965,190.5361178,278.4936104,200.968173,82.19740022 +418.4971273,222.0695924,320.3994961,212.9817329,177.1412118,349.67455,395.5477441,190.7782075,278.9036809,200.6410341,82.15479066 +431.2660338,226.2943318,330.7781725,216.8684178,179.8254423,365.3354303,419.9937995,194.8119003,291.4575162,205.5686399,82.0012885 +411.634663,219.9141179,314.7116702,211.8014888,175.8572404,343.3201071,383.2080593,188.5822541,272.3161373,198.2280094,82.22678431 +405.1277479,217.5163301,310.3911562,208.3863286,174.8042358,334.7489353,377.0707994,187.4510938,269.012927,196.4436728,82.29896555 +408.8870793,218.7811949,313.5474936,209.2964681,175.5942343,338.9944973,384.0758756,188.7066874,272.7407013,197.894886,82.25604645 +402.2617327,216.9405385,309.3845748,208.2428913,175.1449267,336.5399182,380.0978405,187.8913414,270.3258203,197.0418111,82.2947691 +383.7691711,212.3579415,299.1992456,206.5607446,175.1956291,337.7404222,379.1764937,187.3117325,268.4745442,196.9746378,82.35359363 +400.760271,217.3234977,309.1802294,211.0407052,176.2632623,346.2166374,385.818308,188.7621553,272.7585519,198.8631483,82.24588783 +442.4979485,228.4104273,336.1883531,215.456565,178.5333716,355.3499023,412.7310268,193.9397883,289.0363065,203.5038832,82.02165333 +412.7918037,219.8396034,315.3634293,210.2784525,175.4483061,338.8871109,381.877609,188.448894,271.9704549,197.6062227,82.24513978 +426.0043526,223.4568057,324.376121,212.0624284,176.6770867,345.1368595,395.2177235,190.7574001,279.2264097,200.011955,82.15229887 +438.8742119,226.7317618,332.9227903,212.711309,177.3478149,346.881707,404.342294,192.5239618,284.7564406,201.4472007,82.08704339 +394.1851536,215.681173,305.1939769,210.5948225,176.0506682,345.7348893,382.6087246,188.1420539,270.772346,198.3801811,82.27579682 +431.1763117,224.7425184,327.6984302,212.25509,176.9902006,346.1143433,399.117825,191.5029073,281.4907419,200.6702886,82.12396113 +410.5255821,219.0944732,314.5749316,209.323892,175.6816233,339.3253438,385.9849356,188.9640258,273.6878606,198.1296229,82.24286026 +412.098538,218.986625,316.7505335,206.9144954,175.6249135,335.1232408,392.3903449,189.9041752,277.1218889,198.3554679,82.24909802 +434.0200291,226.0671367,330.7281975,214.1623107,178.0332407,352.7997795,407.7658943,192.9292935,285.9243799,202.5229649,82.06998569 +422.1901793,223.2091742,323.6704896,213.8336778,177.7764414,353.132611,403.5284587,191.9294845,282.9064926,201.8944316,82.11257027 +378.5799541,210.5792563,295.2514092,204.7344559,174.2013839,331.3300061,371.0810351,185.9366642,264.3012418,195.2136148,82.40994161 +413.553856,221.6769034,318.8220968,215.7320125,178.6672849,361.8580719,405.1680026,192.0775905,282.8356635,203.1642602,82.10064776 +444.83945,229.3951872,337.5471533,217.419243,179.1873621,360.8963978,415.6391016,194.4593961,290.4218036,204.573484,81.97986505 +399.9349537,216.0595123,308.6988655,206.5804964,175.2563566,335.2078885,384.2785029,188.4355243,272.1648257,197.3975471,82.30247008 +420.6009649,221.7153011,322.06212,209.7552418,176.605134,342.3791819,398.4627646,191.0842968,280.5163093,200.0424489,82.17650528 +421.694958,222.4499257,321.5592997,212.1873433,176.4575032,344.9319531,391.8610754,190.1222131,277.2638059,199.5216882,82.172343 +408.3788952,218.6259614,314.0484499,209.0134482,175.7936232,339.5332841,388.558866,189.2459621,274.8210963,198.3718497,82.2457879 +383.4768999,212.1870007,299.5201691,205.9017968,175.3804059,337.7016953,382.5677023,187.80493,270.0781933,197.4001354,82.35029013 +402.4239857,216.3016353,310.0478256,205.5738559,174.9034859,331.6417549,383.9789633,188.3789879,272.2629443,196.9125182,82.31014425 +399.2381632,216.4536726,307.9473068,209.0698705,175.5565503,340.2384954,382.0621216,188.1419379,270.9935174,197.7026754,82.28257027 +454.4831359,229.0785209,340.6298005,209.0366253,175.6905901,332.2563811,397.4693937,191.8134126,282.930828,198.9263223,82.1316696 +411.0202537,219.0955694,315.3556046,208.4122579,175.6573291,337.6890625,387.9864448,189.2711787,274.785795,198.1697686,82.24949607 +414.6933235,221.13935,317.7164296,213.2394451,176.9597748,350.0314471,392.4683319,190.1456797,276.9916982,200.2182915,82.16959483 +387.1716938,213.6979504,300.2368676,209.4970639,175.242773,341.5734245,374.3649775,186.7169629,266.3509669,196.830061,82.33146328 +380.1587503,210.7872264,295.9842018,204.2361508,173.964602,329.207193,370.5441098,185.7929756,264.0770228,194.846773,82.41471514 +434.5914268,225.9122005,330.5394448,213.3395293,177.5699367,349.4630307,404.4752956,192.4350298,284.4199975,201.7349205,82.08727313 +376.9870321,209.9122155,292.9753082,199.4238677,172.718108,306.902361,353.503152,184.5308947,257.310317,191.5417826,76.64583077 +376.4361074,211.00211,293.4010344,203.9510776,174.2058946,320.5967109,360.3436952,185.5726685,260.2668925,193.9225219,76.56300684 +388.1306919,214.9714859,302.9945868,207.9572384,176.8964269,337.052939,383.6451122,189.3998226,272.1081691,198.8106304,76.398147 +360.5495392,205.6494104,283.6410236,196.9771169,172.1516884,303.1643111,349.1190472,183.4488369,254.0645383,190.4610203,76.72850395 +371.8440805,208.2639409,287.221015,198.9113008,171.1551052,299.8493357,335.3259067,181.6933901,248.1460085,188.4967907,76.74083399 +353.4297612,205.307204,279.2334685,202.2617225,173.3297748,318.2026133,347.2011788,183.2022495,252.4399897,191.985289,76.68771645 +381.4034457,210.5600553,295.6330861,198.5907312,172.4399941,303.6594195,354.9552507,184.7557881,258.4282938,191.2621361,76.64543541 +373.6223617,210.5401879,292.085782,204.4713062,174.5404492,323.5444005,361.7593405,185.7582569,260.7212444,194.4451462,76.55573451 +389.0463797,212.7198362,299.6906746,200.0484792,172.7296918,305.9674272,355.0656018,185.0718237,258.9983383,191.6917385,76.61110312 +375.5175905,210.0532697,292.4648243,201.030109,173.2632832,311.8742438,355.8738512,184.8826242,258.2550314,192.3936245,76.62226087 +364.7232789,208.316841,287.3464758,203.2905778,174.5357368,323.5279615,361.2994146,185.5163989,259.8766662,194.3840907,76.59272146 +374.8834454,210.0838194,290.7002625,202.4699868,172.8586911,312.4373604,347.5366009,183.6761288,254.1744974,191.4600392,76.63641202 +372.6095201,208.5399718,289.6621988,198.6762285,171.9780926,303.0761069,347.2339506,183.3959389,253.972002,190.2059196,76.69380808 +384.3098157,212.7036539,298.7315073,203.4045057,174.4633451,319.6048982,367.2455566,186.7132619,264.1775252,194.6432085,76.52639944 +371.7211442,209.3227555,289.8407917,201.7884888,173.2217261,313.7470754,352.3878717,184.2996036,256.2771287,192.1766454,76.62842188 +353.9703429,204.2204684,280.099435,197.0250972,172.3740623,305.5916612,349.6739587,183.3427265,253.750726,190.7766964,76.73587417 +358.9216332,205.0103424,280.1928626,197.0525385,170.8843498,297.9499206,332.9998456,181.0745421,246.2077793,187.9517919,76.79475219 +384.3389914,212.6552279,298.3369905,203.0656688,174.2313405,318.0106849,364.179638,186.3522038,262.7911249,194.172731,76.54404141 +370.6826148,208.8418421,290.0370925,200.5968178,173.315278,312.3436705,357.1553025,184.8678761,258.4527285,192.5077698,76.63029384 +364.5754785,207.9299319,285.7881895,202.8251412,173.4937664,317.7790747,351.8601863,184.0181134,255.3539755,192.485258,76.63470031 +382.625064,211.6386681,296.0926167,201.4331041,173.1415182,311.0240113,355.457051,184.9332503,258.5070319,192.2524847,76.60160635 +364.3023895,207.0086931,283.7004203,199.9676413,171.7881147,305.7074663,337.5633541,181.9956819,248.7778216,189.4691734,76.7295561 +356.8515674,205.083081,281.1176147,198.3922436,172.2471706,306.4989806,346.5949558,182.944069,252.4125121,190.4581297,76.72947047 +369.7846776,207.0157953,287.3481636,195.3486524,170.9197951,293.807726,340.6232383,182.3880447,250.7983287,188.4092794,76.76567248 +396.6113231,216.3642951,306.6667501,206.3204277,175.6707998,327.2922113,376.4581031,188.5085502,269.4818886,196.8080851,76.43208505 +359.8905802,207.0117276,284.3165393,202.6872187,174.322703,322.6452158,359.3464459,185.0170196,258.4653186,193.9655094,76.61605467 +375.8754449,209.9505028,292.3967251,200.4838715,172.9974478,309.8747654,354.064536,184.6084939,257.439574,191.9465696,76.63341446 +368.1139569,207.0374621,286.453044,196.8447546,171.2197041,297.5373283,341.063669,182.4091798,250.8125864,188.8332345,76.7505798 +383.175568,212.0509748,296.6955547,202.3463227,173.5358351,314.1782001,357.7623223,185.3151367,259.6107437,192.9146178,76.57725046 +387.130023,214.3636965,299.9154472,207.4091733,175.2469587,328.5599932,366.0251517,186.8493206,263.7805986,195.7018134,76.47972549 +386.627885,213.3607437,299.598338,204.0413874,174.3972278,319.9015304,364.9659845,186.484986,263.2589285,194.4561703,76.5222037 +349.1435719,202.6521811,275.6718401,195.9945782,171.1627783,299.3479936,337.2440825,181.361283,247.486642,188.4945992,76.80687866 +369.5150446,208.9286238,287.9368475,202.4041461,173.0586871,313.9801436,348.2301345,183.6873491,254.0896419,191.732269,76.65021469 +356.7745079,205.1222429,280.1541627,198.9209518,171.9528496,306.0853928,340.8221724,182.1798107,249.6803202,189.7865716,76.74382592 +375.5480532,210.1126941,292.9158704,201.0495804,173.5525639,313.4593781,358.9485174,185.3167981,259.6935513,192.9500464,76.60450437 +367.0195827,208.6944942,287.7006127,203.2925993,173.9003065,319.791607,355.6876441,184.6949304,257.3899556,193.2306294,76.61102786 +357.6619033,204.6773251,280.7664918,196.2480474,171.3930966,299.3487921,340.6328302,182.1229369,249.762848,189.0072887,76.7748398 +365.0848414,208.1294783,286.3012666,202.7870316,173.6717346,318.4538684,352.9553841,184.3035796,256.0092395,192.7889794,76.63203058 +374.7966581,210.3424797,292.1182626,202.8119242,173.8178077,317.6273839,357.3411193,185.1062263,258.7512446,193.2474071,76.59063992 +358.3208105,206.6058797,284.0898451,202.2161882,174.6077452,323.4431232,363.8468673,185.5744449,260.463316,194.5580138,76.60675356 +365.1368547,208.5894858,288.2764769,203.8041381,175.0995213,326.7503049,367.1358048,186.3212595,262.5800351,195.4186548,76.56236031 +379.9695552,211.4755283,296.5896228,202.121389,174.3359874,317.676504,367.6999503,186.6842149,264.1670269,194.4587807,76.55201866 +381.7943282,211.3780587,295.8351524,200.9481163,173.1312155,310.3691751,356.0359862,185.0223069,258.8023275,192.2634449,76.60476796 +368.2967114,208.4082474,287.3010544,201.5689803,172.8537046,312.1834938,348.2130392,183.5639066,253.9690523,191.4411877,76.65862901 +360.6455517,205.8272106,284.3499608,197.5308053,172.6647313,306.4234427,354.5509231,184.1646483,256.5543045,191.4429818,76.69811672 +363.8732491,207.8043955,285.1604913,203.0410069,173.3870858,317.8387521,349.5850057,183.7431388,254.3342525,192.2490144,76.64076436 +364.4115336,207.2526139,286.6269488,199.5387873,173.303149,312.0078268,356.7442337,184.6836978,257.7992202,192.4501333,76.65443831 +366.0302817,206.8958901,286.1400341,197.5433775,171.950596,302.3974482,346.6422073,183.2023115,253.2676713,190.1087478,76.71598054 +365.3708421,207.697991,286.9603514,200.6058902,173.400198,313.7341388,355.8736779,184.6034049,257.4235697,192.5336319,76.64583814 +363.0069695,206.8866158,284.8562103,199.8970858,172.7869768,310.2531056,349.9903766,183.6696628,254.4877912,191.400403,76.68183302 +394.4822908,214.3228472,302.8334896,201.5740478,173.1459422,309.4256104,357.6642652,185.5728591,260.5129587,192.4220931,76.56944672 +375.9666888,210.0011665,292.4705574,200.6134584,173.0484501,310.3716742,354.333255,184.6446011,257.5630357,192.0358066,76.62835299 +396.7953589,215.5815664,306.0959451,203.4219994,174.5339466,317.8410052,370.4135797,187.5677225,266.8036645,194.9519084,76.48915732 +375.0183578,209.1055148,290.3003936,198.9838514,171.7612742,302.2522518,343.5374006,182.9508792,252.3539252,189.7402666,76.69712357 +388.8757615,212.8831069,299.1040766,201.1025823,172.7229087,307.4717689,352.8333928,184.7231368,257.7983077,191.5764423,76.61145222 +373.5758614,209.7539833,290.5813453,202.1811671,173.1574605,313.7688622,351.7716022,184.1771192,255.9852495,192.0623844,76.62370716 +397.1913126,214.9225599,303.5769716,201.9999083,172.7756882,307.8365613,353.3174396,184.9940196,258.6365459,191.7194401,76.57845571 +362.8032095,206.1487745,283.9775719,197.4620181,171.77927,301.9315742,343.9365217,182.7474512,251.702869,189.7134922,76.73898649 +362.0249839,207.3712803,285.0871914,202.3608232,173.8714404,319.281465,355.9782688,184.6007202,257.163818,193.1816058,76.63012518 +364.6143834,206.4136205,284.9576048,197.0926323,171.48611,299.5394661,343.0241084,182.6343391,251.5152576,189.2740346,76.74635295 +367.9665638,207.6253977,286.7250464,198.8956882,171.9859893,304.180822,344.2135217,182.942328,252.2062321,190.0456255,76.70756647 +371.1779027,209.0789997,289.9121242,201.0790969,173.2980808,313.012304,354.8240128,184.6149195,257.3764425,192.3768426,76.63160818 +360.748396,205.7975639,282.9159174,197.7939064,171.9023961,303.5651246,343.703775,182.6963612,251.4890145,189.8912576,76.7336309 +376.8426359,211.3401685,293.3544579,204.9020146,174.3385728,322.4977653,358.9744297,185.4723112,259.6377137,194.0457638,76.56048246 +383.9411345,212.8033825,295.6847854,205.2849591,173.3851077,317.2019306,349.7981756,184.2571195,255.7931661,192.3408982,76.5819988 +366.537834,208.737816,288.5229459,203.4609301,174.6513287,323.8258817,363.8898096,185.8064815,261.0770435,194.6453968,76.57773983 +381.7886516,212.4970587,296.5423013,204.7550629,174.4893662,322.1327444,361.8091738,186.0580421,261.4526647,194.4222321,76.53922275 +392.5635124,216.0069513,305.329553,208.0830542,176.7775494,335.7116218,383.2334023,189.4716369,272.2974395,198.6365848,76.39310374 +375.461657,210.5557329,291.4798805,203.752215,173.3613143,316.4782727,351.2675674,184.1965277,255.8664883,192.3261908,76.60698676 +369.7821691,208.5086975,287.7559168,200.8507465,172.4701239,309.0812386,345.9232288,183.2328619,252.9922973,190.8065194,76.6752671 +373.3960122,209.688567,290.6313763,201.6287197,173.1793877,312.8657113,351.9563879,184.3212015,256.1855378,192.0927323,76.6348005 +367.5324641,208.0934851,287.0067393,200.7365431,172.789176,310.7001173,348.5668571,183.6326469,254.130838,191.357497,76.67138984 +351.2946818,204.1607317,278.2052869,199.2395317,172.7990431,311.5888166,347.5108862,183.0866284,252.4175729,191.2433254,76.72629171 +365.8654747,208.3234898,286.6720601,203.0457931,173.6918627,318.9141129,353.2726541,184.3002703,256.1173079,192.834983,76.62417012 +402.6478475,217.8963078,310.1555503,206.9767681,175.6991065,327.1329479,377.2277237,188.8132362,270.400922,196.9193654,76.41366297 +376.9436807,210.6256272,292.2615267,202.5077651,173.0666931,312.817468,350.2646303,184.1470585,255.6422646,191.8752199,76.62532136 +387.8174133,213.5444179,299.7212829,203.9952014,174.0637359,318.0729628,361.6669976,186.019523,261.7635702,193.8451355,76.53617452 +399.129069,216.3700672,307.1471991,204.5808912,174.6541698,319.6794971,369.6449764,187.5337841,266.548007,195.0947623,76.47497081 +360.3386771,206.9755604,283.3497177,202.6694093,173.5227075,318.5325308,350.5224228,183.8001121,254.4473015,192.4440756,76.65274677 +392.0196514,214.5539823,302.4396104,204.1022096,174.296178,318.8368306,364.7897443,186.5779625,263.5647642,194.3435442,76.50887671 +373.9103626,209.7155584,291.0837069,201.5816342,173.1604803,312.8340932,353.3121212,184.408354,256.8227366,192.1453081,76.62134883 +375.3022784,209.6550128,292.9873816,199.6747243,173.1575939,309.3494047,359.2867343,185.2803955,259.9488277,192.4162815,76.62790608 +395.1005719,215.8571492,305.3547894,205.8362654,175.2605108,324.8511361,372.786418,187.9249866,267.6446423,196.0575734,76.45873769 +384.6894715,213.3946397,299.2474706,205.5648953,175.0318682,325.0704804,369.1998472,187.0894628,265.096612,195.5164061,76.49944798 +346.4172937,202.5436008,274.6678928,197.6397627,171.8861571,305.8461865,340.2630643,181.8459332,248.7274878,189.6383271,76.78010845 +377.0599681,212.0484895,294.9917982,207.0643211,175.7613025,332.5619888,370.1664415,187.1234753,264.8125179,196.5400234,76.48668362 +404.1054473,218.5553576,311.0305763,208.5361166,176.18129,331.7445546,379.3534866,189.1185232,271.356594,197.7071819,76.37320879 +364.7925333,207.171019,286.0910527,199.2635539,172.8209462,309.3207082,351.817007,183.9716854,255.4876655,191.5491744,76.67736294 +382.6842092,211.9687584,297.5361323,202.0261801,173.9834412,315.5834767,364.4133526,186.2537633,262.8015902,193.8361038,76.55866244 +384.1741643,212.713512,297.3541085,204.1227707,173.8839765,317.9120962,358.8755373,185.5113925,260.1472708,193.4462076,76.55558191 +372.4643322,209.4369445,290.8486855,201.4459729,173.3228984,313.2311118,356.0552464,184.7725343,258.0472299,192.47159,76.6252203 +350.7518606,203.9507797,278.3522118,198.65841,172.9286554,311.4593197,350.2685929,183.4459894,253.6879317,191.5561396,76.72264652 +366.5903011,207.2850376,287.0721443,198.4465458,172.4978566,306.1662946,351.6727328,183.9075578,255.6005033,191.1073338,76.68477446 +364.5108876,207.5802055,285.5969074,201.3772964,173.0863839,313.7172684,349.9873753,183.7661893,254.5760292,191.8343283,76.65934039 +412.9071421,218.4025714,313.9261704,201.5701656,173.2630697,307.203301,363.8776375,186.9766072,265.1097587,192.9803871,76.51793378 +374.9731019,209.8919313,292.0545411,200.9148543,173.2294785,311.7097409,355.4599426,184.7959762,257.9669952,192.323322,76.62811963 +378.0737925,211.5928526,294.0402267,204.9424016,174.2934958,322.2768067,359.0914498,185.4811805,259.7788011,194.0027878,76.55244827 +354.4379478,205.327564,279.1979148,201.7377083,172.8435489,314.9661281,343.4877078,182.6308296,250.7253174,191.1431606,76.70601048 +347.6481313,202.680322,275.1999315,197.2667712,171.699515,304.0567793,340.0618378,181.7554279,248.6205353,189.3563276,76.78456529 +395.3695709,215.6636527,305.0739145,205.1026334,174.8378755,321.8771631,369.7536589,187.4542447,266.2533053,195.3339943,76.47506245 +400.916909,215.6796855,308.1592703,203.7200828,173.8985711,322.9747207,374.0872003,187.0875245,267.7637255,194.9178652,79.67536124 +400.0832331,216.8557913,308.513446,208.8021281,175.5490512,338.0579309,381.568949,188.235127,270.9959648,197.5506183,79.59084831 +412.9411304,221.2925784,319.09398,213.3375902,178.5251425,356.0584824,407.2835758,192.5528577,284.2195393,202.9681411,79.42211612 +382.8979349,210.9321454,297.8416179,200.960893,173.2699828,318.8908904,369.2181347,185.8749375,264.1579215,193.7155995,79.76063042 +394.6190086,213.7050515,301.4698162,203.1052358,172.1410218,315.0584345,353.7339956,183.8161159,257.3757004,191.4794351,79.77132233 +374.3578145,210.3926808,292.5323152,206.9238188,174.5529373,335.3287885,367.0712953,185.5340982,262.2492501,195.3568759,79.7188505 +406.0377425,216.4930605,311.2769517,202.7225881,173.6179802,319.4724305,375.5729062,187.3563364,268.9552435,194.6380126,79.67465908 +397.0108136,216.3485477,307.0518182,209.4233868,175.9244515,341.3085234,383.2551003,188.4699027,271.5773311,198.1424456,79.58339891 +413.9314857,218.7434445,315.4733522,204.3657269,173.8923267,321.8294559,375.6525545,187.6409601,269.5168232,195.0496673,79.63928174 +398.9185015,215.7323385,307.3900496,205.4766795,174.4748228,328.3496454,376.49283,187.4077804,268.6592604,195.8095814,79.65160422 +387.2272023,213.86576,301.7646819,208.1479794,175.9207439,341.2815287,382.9206534,188.2331296,270.7433262,198.0851805,79.62155245 +398.2084669,215.7919004,305.4341923,207.1563034,174.0541497,329.0457826,367.5014467,186.1028642,264.2311597,194.8167553,79.66494386 +396.0224535,214.1599831,304.4849435,202.8026419,173.0898713,318.7574273,366.9525605,185.7886878,263.9269157,193.4344539,79.72421913 +408.993678,218.8213013,314.5621904,208.1766589,175.8480694,337.0209968,389.1170096,189.5288404,275.3330962,198.3695832,79.55345494 +395.0664411,215.0264273,304.6458384,206.4384551,174.4757458,330.5805608,373.0342533,186.8631814,266.7049224,195.6513215,79.65716171 +376.0188156,209.4435397,294.0946386,201.1027546,173.5574542,321.7479014,370.1034974,185.8506799,264.0025382,194.134969,79.76828783 +380.5691476,210.1086223,293.7311411,201.0827126,171.8513783,313.0591942,351.34059,183.1609991,255.3398568,190.8992094,79.82663782 +408.7068936,218.6619538,313.9361082,207.7977685,175.5591003,335.1332157,385.7465425,189.0845314,273.7645457,197.8054628,79.57137785 +394.0340247,214.5123212,304.9420674,205.0151618,174.5712509,329.028112,378.0158596,187.4610091,268.9843739,195.9950844,79.66010391 +387.1045753,213.4604992,300.1088652,207.5597648,174.7735458,335.0136516,372.2785189,186.5150385,265.5768433,195.9741147,79.66435892 +407.037654,217.6045542,311.5931071,205.9673618,174.3771472,327.5266902,376.1929239,187.534948,269.0605581,195.7136524,79.63000065 +386.4558777,212.3342384,297.5762188,204.3962019,172.8650361,321.6163337,356.5808735,184.2242763,258.2766605,192.6063602,79.75978293 +378.6800403,210.2922825,294.9769747,202.5275037,173.3839061,322.5619351,366.3081778,185.2884841,262.2403571,193.7098291,79.76177518 +393.0137914,212.4605092,301.9420315,199.0965157,171.9031189,308.5028532,359.7867255,184.6791037,260.500389,191.4353731,79.79741211 +422.00568,222.7578044,323.0492053,211.4077345,177.1467728,345.2849881,399.0865926,191.4605661,281.0803129,200.7062097,79.45674699 +382.1106202,212.4742181,298.5348142,207.4670212,175.6994753,340.3982933,380.7065288,187.689086,269.1700987,197.6371489,79.64619858 +399.4978667,215.6712597,307.4161326,204.8946605,174.196655,326.209424,374.6223268,187.1416113,267.8407042,195.3441692,79.66273694 +390.8684637,212.4139338,300.8058794,200.7351462,172.223331,312.5570753,360.0823472,184.6449249,260.373709,191.873855,79.78196404 +407.7148423,218.086121,312.2906867,207.0347755,174.8246629,331.0380773,378.863,187.9939019,270.3674459,196.4692885,79.60493658 +411.2852593,220.4508341,315.4068756,212.6496194,176.6691338,346.6174988,387.7545749,189.60242,274.8051008,199.4695356,79.50481046 +411.3635027,219.5040303,315.424175,208.9006895,175.765246,337.2931794,386.6518389,189.2632657,274.3213349,198.1511743,79.54880379 +370.5290533,207.6722003,289.1070359,199.937501,172.2207283,314.8682893,356.3006169,183.6076664,256.9798294,191.6016271,79.83997544 +391.8744948,214.3748391,302.1254956,207.0189739,174.2291118,330.5808199,367.9742999,186.0181673,263.9442368,195.0360678,79.67988669 +378.3894933,210.2831117,293.7854001,203.1798404,173.0508214,322.0921101,360.0504732,184.430459,259.2452568,192.9590908,79.77574306 +399.4312435,215.9343913,308.1372568,205.5918896,174.8368627,330.2591226,380.2029859,188.0015901,270.4870197,196.5033961,79.63326829 +389.5513452,214.229766,302.0855612,208.0518113,175.1943647,337.1217724,376.3889646,187.2213429,267.7522782,196.7553574,79.64029393 +379.6896372,209.8583041,294.6322617,200.1949169,172.4431655,314.7276711,359.9716316,184.418377,259.4542668,192.1260108,79.80742667 +387.3523806,213.5799312,300.4804608,207.524256,174.9403653,335.6315372,373.4983211,186.7987834,266.281648,196.2703383,79.6615403 +398.3841538,216.1494003,307.1351325,207.5802706,175.1306098,334.8134083,378.4536312,187.760002,269.4380815,196.8295339,79.61901208 +380.6702657,212.0919013,298.4451964,206.9480647,176.0299268,341.3678409,385.6827158,188.3441787,271.4299634,198.3168011,79.63684158 +387.8002386,214.1958896,302.8768902,208.694515,176.5405883,344.8517147,389.2000111,189.1164725,273.6778466,199.2194909,79.59108609 +404.1945291,217.4256668,312.1606745,206.7149391,175.6899918,334.8516404,389.5498025,189.4705902,275.2745196,198.139789,79.58010075 +406.272859,217.3441255,311.3712903,205.4582221,174.3722517,326.8426371,376.9593207,187.663859,269.4686049,195.7433167,79.63297331 +391.0524848,213.9461543,301.7157197,206.1263387,174.0478748,328.7850347,368.1715769,185.9732478,263.9786202,194.7913944,79.68851251 +383.5242698,211.2845898,298.919887,201.6191317,173.8865579,322.6736339,375.3386457,186.7640094,267.0487869,194.8765106,79.72982186 +386.3533728,213.3307226,299.4062819,207.8577469,174.6694428,335.1122091,369.9853694,186.2476204,264.5546424,195.7411621,79.6698279 +387.4049157,212.8045434,301.2768966,203.9338974,174.5787428,328.7570017,377.8968523,187.3418174,268.4848262,195.980008,79.68492742 +389.1698909,212.4045297,300.747021,201.6501684,173.0779953,318.1495488,366.6746955,185.6606639,263.3933353,193.3766155,79.7469852 +388.0445248,213.1893952,301.4362906,205.0531823,174.651916,330.5220515,376.6569599,187.1573952,267.8638817,196.0077264,79.67631771 +385.4483461,212.2928123,299.1119061,204.2632588,173.9795651,326.7114505,370.1984049,186.1187377,264.6168206,194.7607672,79.7127216 +419.9351781,220.5537665,318.9798199,206.0998332,174.3696464,325.681112,378.5752511,188.2261223,271.2388496,195.883962,79.59654933 +399.7645749,215.7770169,307.5851248,205.0751797,174.2699921,326.8217494,375.0419957,187.221758,268.0621178,195.4731637,79.657384 +422.5641241,221.9690343,322.6117168,208.1908385,175.9066536,334.9717084,392.602604,190.4579645,278.2176428,198.6883745,79.51457065 +398.5935008,214.7645644,305.1447414,203.1936998,172.8431728,317.8382085,362.9768394,185.2960991,262.1811111,192.9153926,79.72718202 +413.3607338,218.8373529,314.6382773,205.4956293,173.8673814,323.3981881,372.9721822,187.1881674,268.033512,194.8814231,79.63974397 +397.1019486,215.5222437,305.4957616,206.8399303,174.4083235,330.610056,372.2039562,186.7098828,266.3059803,195.5206726,79.65275248 +422.7002452,221.1696995,319.7053255,206.5478968,173.9517117,323.8911043,373.6924958,187.5436086,269.0744578,195.0862887,79.60499709 +385.0828586,211.4264718,298.0678037,201.4911621,172.8445603,317.4553659,363.3939451,185.049202,261.4527076,192.8601739,79.77093814 +384.2496126,212.8042541,299.2847779,207.0466754,175.1761604,336.6276118,376.8422498,187.1593431,267.5986292,196.7281234,79.66009288 +386.9868904,211.7002109,299.1219066,201.0070112,172.5137246,314.7634298,362.2305415,184.8849239,261.1360227,192.3547221,79.7778671 +390.7966059,213.0868904,301.1336512,203.1254479,173.083313,319.9702535,363.7889672,185.2837124,262.0478515,193.2452291,79.73810537 +394.3584546,214.7121944,304.6717563,205.5889715,174.5367078,329.7007891,375.5206134,187.1665867,267.812696,195.8324425,79.66122159 +383.3165656,211.1730243,297.1208633,201.9942443,173.0353061,319.4771086,363.6109482,185.1232805,261.5084386,193.1565585,79.7646421 +400.0580278,217.0993325,308.1928068,209.8313524,175.6590943,339.9840656,379.9024116,188.0484046,270.1663691,197.6245039,79.58835278 +407.6611744,218.6924917,310.6987711,210.2202869,174.6050237,334.1321371,369.6661535,186.6554857,265.7987844,195.7263004,79.60909353 +389.2783115,214.354641,303.1334464,208.2479065,176.0395334,341.6139669,385.3978893,188.4959582,271.8766113,198.3428494,79.60729083 +405.5447251,218.3929251,311.7377355,209.7038083,175.8294941,339.5767636,383.1731745,188.7306698,272.2654383,198.0569053,79.56594202 +417.4754738,222.3416126,321.5036521,213.3979935,178.3611059,354.4851656,406.5376201,192.5375976,284.2157035,202.7148967,79.41731042 +398.8000756,216.3147668,306.2865023,208.5445443,174.6082298,333.480101,371.4490819,186.6586514,266.0187415,195.7629954,79.63541708 +392.6220709,214.0429025,302.1944148,205.2974807,173.6165027,325.330496,365.5628062,185.5841355,262.8466597,194.0749659,79.70545787 +396.3503169,215.2681417,305.2212305,206.181609,174.3724759,329.3932619,372.2260606,186.7702061,266.3753639,195.4622223,79.66418462 +389.9598445,213.5110297,301.2418302,205.1683221,173.945286,327.0391519,368.4428919,185.9989548,264.0763899,194.6507164,79.70188482 +372.3056601,209.1809044,291.5648098,203.5620932,173.9786741,328.137412,367.5089009,185.4536239,262.3318084,194.566042,79.75885713 +388.4238449,213.8680164,301.0232924,207.8207485,174.9837752,336.2148892,373.8692031,186.8278428,266.4401144,196.3517821,79.65370537 +428.275652,224.3602818,326.7077008,212.0637669,177.153581,344.9998991,399.6936957,191.7201278,281.9120478,200.7800312,79.43753584 +400.0889795,216.2733127,306.9548742,207.1176716,174.2393621,329.3022348,370.2059176,186.5320269,265.6589629,195.198318,79.65395331 +412.4906552,219.6632381,315.4724809,208.8119773,175.3855823,335.2277916,382.9088479,188.7076586,272.5804673,197.4522838,79.56303688 +424.8437134,222.7760176,323.6308602,209.4557377,176.0265456,336.9303346,391.6456132,190.3782989,277.8456303,198.8198348,79.49995093 +382.2005144,212.3232493,297.2474099,207.3948004,174.7854127,335.7567811,370.8083209,186.2458633,264.5514556,195.8992558,79.6830425 +417.4162642,220.8783498,318.6433999,209.0023725,175.6717931,336.1616372,386.5847863,189.4090406,274.7489879,198.0595469,79.53477399 +397.7105726,215.5382579,306.1757856,206.2041072,174.4280194,329.6593438,374.0465779,187.0131808,267.3342763,195.644961,79.65006479 +399.098754,215.4102822,308.2033546,203.9263507,174.3896883,325.6800877,380.2371414,187.8964289,270.5637542,195.8788287,79.65756047 +420.1480945,222.1338735,321.4939461,210.8200858,176.6767705,342.5442221,394.913468,190.760686,278.9386582,199.8443572,79.48410361 +408.7372788,219.4076487,314.7435687,210.4860576,176.4287498,342.8142608,390.8929358,189.8159495,276.0676034,199.2439899,79.52610137 +367.3823773,207.51136,287.8778693,201.8346625,173.0211495,322.0257871,359.7844549,184.1619421,258.4143187,192.8730244,79.81272822 +400.5619235,217.9762487,310.1365605,212.2929711,177.2572985,351.1200325,392.3542847,189.9578777,276.0269145,200.4275832,79.51330253 +430.4153246,225.2768328,327.9868567,213.9244188,177.7482053,350.2733947,402.4262013,192.2085414,283.2787399,201.7579536,79.39558257 +387.6225318,212.6645928,300.5846582,203.5954318,174.0317773,325.7370009,372.3657412,186.5076559,265.842511,194.9570782,79.70828049 +407.243766,218.0017358,313.2555168,206.6263592,175.3119236,332.582337,386.0129587,189.0138246,273.811899,197.4710173,79.58647109 +408.3592406,218.7066377,312.7842079,208.9221652,175.1796077,335.0240927,379.7307128,188.1092369,270.7123854,196.9921316,79.58292349 +395.5825567,215.070227,305.6168083,205.8996967,174.5526204,329.8672435,376.5719364,187.2749217,268.3604605,195.9020296,79.65485921 +372.0038492,209.0225429,291.8811531,202.9462936,174.1449728,328.0909268,370.7183486,185.9177637,263.8684236,194.9556511,79.75519468 +389.8727363,212.8718307,301.8456733,202.641777,173.6939285,322.3357088,372.1384763,186.4531556,265.950368,194.4913936,79.7156704 +387.032904,213.0560644,299.8861328,205.9586073,174.316733,330.5315523,370.2980714,186.2409127,264.7590794,195.2522128,79.68930028 +439.8423158,225.0104198,331.0653457,205.9820628,174.4775798,323.0792154,385.1236278,189.7138703,276.1113006,196.4559984,79.54310735 +398.229659,215.5335721,306.8884291,205.3361077,174.4316676,328.1360932,375.9720495,187.2967536,268.304588,195.7199345,79.65798265 +401.7575846,217.4871511,309.1489181,209.9280297,175.6455358,339.8744173,380.2463885,188.1350868,270.4746864,197.6398341,79.57969725 +375.5474797,210.447697,292.5503514,206.3398224,174.0250792,331.7996066,362.959553,184.9045444,260.3482723,194.4373979,79.73735088 +368.7144255,207.6628834,288.4919449,201.343113,172.8028124,319.9987259,359.3070547,184.0159977,258.1655314,192.5319765,79.81782162 +420.7223154,221.9958267,321.3439421,210.0459972,176.2327895,339.3701707,391.7731096,190.2943962,277.5291562,199.0880354,79.50024709 +443.4585838,228.1452964,336.2984693,213.9201585,178.6566754,352.8967335,413.0425202,194.4941383,289.5249696,203.5040706,85.23542927 +442.1787351,229.4491248,336.588952,219.902317,180.6522893,370.541641,421.6430019,195.852603,293.2623374,206.663523,85.14476424 +456.9670877,234.6725475,348.8567066,225.2511939,184.1925463,391.3980073,451.6685937,201.0193851,308.8887947,213.1016192,84.96331378 +422.8420231,222.5994031,324.3734328,210.668268,177.8887067,348.1144501,407.2564,193.035605,285.2592351,202.040792,85.32635326 +435.2828274,225.6427693,328.0888974,213.1419291,176.5172143,343.3234524,388.952453,190.5066608,277.082643,199.3268873,85.33704322 +411.9415536,221.7406981,317.6800237,217.7005015,179.4073338,367.0224467,404.7990482,192.5896704,282.9440802,203.9602896,85.27988363 +449.761723,229.1820227,340.088203,212.6984433,178.3513272,348.9840472,414.4273985,194.7840531,290.7441417,203.1999536,85.23596386 +438.626144,228.8651445,334.8852409,220.6668667,181.1016603,374.2830924,423.7892952,196.1616857,294.041342,207.3762311,85.13629538 +458.1039681,231.6444856,344.6153148,214.6009544,178.632908,351.4717063,414.7041186,195.1018398,291.4574799,203.6309549,85.19674605 +440.6729102,228.0731044,335.1904884,215.9262824,179.3243399,359.0835142,415.6074124,194.814931,290.4336934,204.5203901,85.20936023 +427.3233184,225.9616631,328.7006846,219.2137413,181.0825165,374.1325576,423.6717483,195.9118376,293.1965449,207.2948625,85.17606663 +439.693049,228.145479,332.8433307,217.9681473,178.8537727,359.8672047,405.3773862,193.308171,285.3270726,203.3912757,85.22341268 +437.7894068,226.353823,332.0076999,212.776375,177.7036767,347.9939733,404.3086747,192.8938471,284.7930644,201.7356455,85.28808709 +452.8352317,231.8362058,343.7864541,219.1696064,181.0269498,369.5094533,430.273319,197.3862052,298.2977187,207.6617835,85.10571708 +436.5389199,227.3618612,332.1449835,217.1866381,179.3755444,361.7816276,412.0292414,194.2694753,288.3777387,204.4233859,85.21523893 +415.3337132,220.9711491,320.2089096,210.9505974,178.2707602,351.6156189,408.5509921,193.0844453,285.2433612,202.6064554,85.33500703 +419.3003165,221.4819153,319.1690763,210.8365728,176.1689831,341.024601,386.3749898,189.7587511,274.8191195,198.6403076,85.39533245 +452.0271944,231.5374753,342.839261,218.6930567,180.6403162,367.0684002,426.5270213,196.8451673,296.5118524,206.9363514,85.12366071 +435.6659493,226.7941786,332.6356365,215.4435837,179.4819902,360.0993847,417.3704646,194.9222164,290.8533728,204.8043048,85.21956147 +427.3208618,225.5042187,326.8538828,218.4813854,179.7315153,366.9725109,410.8541874,193.8170585,286.9094841,204.7920104,85.2234524 +450.3979966,230.3832013,340.2522439,216.5639783,179.251526,358.2678581,415.4042736,195.0238399,290.9958381,204.4809207,85.18748809 +425.9437296,224.0681862,323.5583527,214.7672567,177.4065591,351.0116695,392.8064361,191.0673016,278.3833154,200.721553,85.32353431 +417.8432123,221.8253541,320.9735354,212.5116079,178.0433221,352.4162933,403.6522834,192.3146869,282.8894879,202.0481852,85.3277229 +434.420586,224.3985748,329.0689451,208.4239115,176.240431,335.8360622,396.2280559,191.5950119,280.9220032,199.3050917,85.36584011 +467.1110538,236.2748999,353.2911277,222.8850253,182.5386982,378.9292243,441.7924767,199.6263559,304.9565247,210.3824455,85.00123222 +421.7797028,224.4093572,325.1223102,218.4452954,180.8330752,373.2429591,420.9113492,195.2648002,291.292438,206.7764049,85.20403129 +441.5575246,228.0659226,335.3216909,215.2807162,179.0064971,356.6331549,413.5675482,194.5334555,289.5536826,203.9953653,85.22157062 +431.5536262,224.2373212,327.5859388,210.3086194,176.6242361,340.5485195,396.2898084,191.5010793,280.605818,199.8122007,85.34881142 +451.2342014,230.9734513,341.0962855,217.8635685,179.8006434,362.3954402,418.6946469,195.6071856,292.6319342,205.4099654,85.16041795 +454.2343735,233.4641744,344.1896314,224.33255,181.9561595,380.2309632,428.9056784,197.4406313,297.7063133,208.8971134,85.05089407 +455.2676743,232.5761323,344.6578142,220.0129357,180.918096,369.7112893,427.5501052,197.077773,297.1639252,207.3936628,85.10020005 +408.7479988,218.8578001,314.2767295,209.5751654,176.6729768,343.4961344,392.3219489,190.3827137,276.8933399,199.5796346,85.41130735 +431.9108084,226.3438643,328.7613665,217.7266368,179.0062843,361.4718493,405.6243161,193.1221947,284.8235703,203.5519562,85.23851715 +417.0979104,221.7441572,319.3961445,213.3241898,177.632563,351.7305548,396.5842806,191.3040216,279.4505796,201.1412918,85.34192293 +441.8519837,228.4766061,336.3384155,216.1790702,179.7994524,361.4818741,420.2881343,195.6190349,292.8061482,205.4282253,85.19027225 +429.8201851,226.3106786,328.9998724,219.0026172,180.2035516,369.3282071,415.5721704,194.6192775,289.4136949,205.6736699,85.19697 +419.0436305,221.3537862,320.5760995,209.8295115,176.9057512,343.1911212,396.6636663,191.3299626,279.821288,200.1615752,85.37615901 +427.1235857,225.5284871,327.0490533,218.4129097,179.8895064,367.4759657,412.4255659,194.1349153,287.7787112,205.0879963,85.21903278 +440.3175186,228.6693251,335.0257277,218.5254234,180.1541875,366.7006379,418.3269445,195.3366604,291.5935924,205.8219772,85.17468872 +420.5166662,224.0403485,325.2161681,217.8573963,181.2433305,374.5412479,426.6071105,196.057495,293.9396367,207.6053042,85.19449538 +428.21457,226.3795139,330.127159,219.8395275,181.8240001,378.4256187,430.6911607,196.937975,296.5350056,208.636888,85.144407 +447.3082369,230.1809426,340.9863695,217.4202034,180.8127032,366.9218439,430.7035971,197.2895561,298.1855987,207.3469856,85.13390226 +449.6769081,230.1189909,340.0629605,215.9971418,179.249642,357.4936964,416.4671227,195.2070822,291.5687702,204.530318,85.1902658 +431.6670286,226.0226074,328.6245163,216.75685,178.8420593,359.6134813,406.0178957,193.1438009,284.9893053,203.3499502,85.24910946 +424.2761331,223.1820211,325.9654628,211.5152328,178.6796527,352.8205764,414.3779461,194.1483292,288.6983113,203.502842,85.29497417 +426.3617471,225.3534067,325.9812199,218.8747221,179.6178499,367.0310918,408.48436,193.5371958,285.8300045,204.5399827,85.22853728 +428.3091612,224.8862558,328.5060436,214.2864847,179.4978668,359.7862953,417.7020602,194.8682052,290.5364725,204.8176859,85.24578798 +430.3158168,224.4116722,327.8599536,211.5459053,177.6963955,347.3515071,404.5081731,192.8373017,284.471486,201.7015907,85.31230081 +428.541617,225.1967649,328.4632119,215.5089628,179.5578051,361.7289182,415.9334245,194.5682425,289.6077917,204.7938847,85.23625889 +425.5299405,224.1505572,325.7463215,214.5873356,178.758615,357.2640216,408.4305954,193.3351874,285.7954319,203.3150777,85.27513415 +465.0327815,233.7839332,348.7050167,216.6724951,179.2292619,356.0435318,418.1730416,195.8233502,293.5162988,204.6666558,85.15154759 +442.0583874,228.2471415,335.6100545,215.5365966,179.1127181,357.4129999,414.192882,194.6652674,289.8946541,204.1829766,85.21601612 +468.186198,235.4565114,352.9773482,219.1457495,181.0724502,366.9926932,434.4305987,198.4731707,301.6905737,208.0135786,85.06337622 +440.5559599,227.034062,332.6934927,213.2719615,177.3992115,346.8344726,399.8891128,192.3304208,282.8429194,201.1128962,85.2910854 +456.9586969,231.633958,343.4249892,215.8707456,178.5895722,353.2039095,411.309112,194.5047531,289.552316,203.3945772,85.1970846 +438.9597099,227.9586355,333.1839652,217.6380407,179.304465,361.8776799,410.8202414,194.0649326,287.800265,204.2725943,85.21170256 +467.8642477,234.4166316,349.3830594,217.1528769,178.7256985,353.8973749,412.3465429,194.9760875,290.8704267,203.7014298,85.16023614 +424.9550127,223.0996271,324.4462798,211.2734561,177.3682258,346.3125855,400.3885458,192.0230742,282.0150995,200.9988834,85.33704352 +423.9572465,224.7053296,325.861094,217.87364,180.1893104,368.7989274,416.2397581,194.5807569,289.325292,205.6587251,85.21829925 +427.052387,223.3782525,325.6166147,210.6187584,176.9704024,343.1491105,398.7655524,191.7784635,281.4869271,200.380857,85.34398678 +431.4967939,225.042683,327.9947948,213.2171341,177.6739145,349.2971451,400.9520715,192.3224265,282.7490406,201.490387,85.30188802 +435.672665,226.9571476,332.1569153,216.133751,179.4206535,360.7282354,414.6822173,194.5824911,289.5672456,204.5896513,85.21993255 +423.4292448,222.9544078,323.5558989,212.0133203,177.6543507,348.8629601,401.2012523,192.2318611,282.3724931,201.4594909,85.33014187 +441.5090882,229.5763037,335.905519,221.0445625,180.7397768,372.5404789,419.6242455,195.5740367,292.2037513,206.6790693,85.14106495 +449.9175723,231.3641807,338.6471324,221.4459034,179.4875514,365.6677262,407.5100333,193.8770525,286.9280175,204.417959,85.16340297 +429.9653054,226.5641912,330.4309843,219.2735467,181.2277138,374.7092954,425.9598655,196.153672,294.2625204,207.5844315,85.16274997 +447.8139376,231.0990665,340.0173896,220.9150122,180.9451403,372.0389182,423.6768066,196.4179438,294.7875671,207.208507,85.11620436 +461.7983084,235.7735939,351.4585119,225.2290146,183.9689159,389.5309095,450.4735327,200.911959,308.6692219,212.7435585,84.95842639 +440.4120774,228.7513196,333.8556401,219.5610344,179.5223835,365.1050348,409.7163412,193.9412729,287.3091345,204.5169917,85.19239969 +433.4132379,226.1214566,329.148003,215.757281,178.3166201,355.5364839,402.8825139,192.6607366,283.6083157,202.4790518,85.26734701 +437.3326862,227.4590385,332.4925018,216.7785782,179.186517,360.1501629,410.7921939,194.0611183,287.8097439,204.0866412,85.22195958 +430.0965642,225.427499,327.9227887,215.5883894,178.6785728,357.4330026,406.2707299,193.1342264,285.0624228,203.1189765,85.26266744 +410.0219155,220.4267363,316.7814039,213.7970997,178.7260604,358.7596107,405.4251573,192.5359275,283.1597442,203.0374356,85.32341633 +428.6866859,225.951455,327.843075,218.792029,179.9684145,368.2810314,412.8183036,194.1935646,287.9724892,205.2256325,85.21176145 +473.8447967,238.0069441,357.2703792,223.5484917,182.525733,378.5216349,442.2063508,199.8504426,305.7216537,210.4223315,84.98013637 +441.4096898,228.568402,334.3966191,217.8158832,179.0266319,360.036171,408.1972827,193.7323331,286.8216129,203.7581468,85.21094011 +456.3362788,232.7024618,344.6000057,219.8656102,180.4548482,367.2403374,423.0742669,196.3845579,295.0363177,206.5407323,85.11544852 +470.418338,236.30325,353.979584,220.5847645,181.2068232,369.2048259,433.208357,198.3450172,301.1736283,208.1499468,85.04750544 +421.3152084,224.0905281,323.3431147,218.2810638,179.7130193,367.6517311,409.2320458,193.479064,285.722401,204.6555689,85.24256688 +462.3721765,234.2399879,348.4593376,220.171522,180.8263762,368.4295305,427.6479512,197.2915217,297.7606853,207.3244504,85.08552128 +439.9438418,228.0479676,334.1066523,216.9305302,179.3443632,360.8669425,413.1165494,194.4631973,289.0991946,204.4524886,85.20883041 +441.5203272,227.8342415,336.4073368,214.0991455,179.25536,356.1860067,419.7649722,195.397769,292.5887072,204.6440824,85.21691478 +464.7322541,235.4696696,351.3631457,222.1412959,181.9631814,375.6824932,436.7932125,198.7510008,302.340623,209.3262294,85.03025099 +451.7168158,232.2933326,343.5605557,221.7367141,181.6783977,376.0535182,431.9519124,197.6128378,298.8964534,208.6171784,85.07491374 +404.8378808,218.609361,312.6951668,211.8516174,177.631393,351.8002362,396.6261266,191.062918,278.6647697,201.1011122,85.38127026 +442.4716749,230.709913,338.348052,223.9918512,182.6749206,385.6220603,434.2049485,197.898187,299.1844695,210.0620442,85.06122983 +476.9536277,239.2930123,359.0996619,225.8804631,183.3008005,384.8473982,445.7800617,200.5684149,307.6127064,211.7062943,84.93631311 +428.3051407,224.6645319,327.5802597,213.8538238,178.8304547,356.1708385,411.1759547,193.8456308,287.3682745,203.5751488,85.27075155 +450.8681882,230.8829042,342.2865002,217.338068,180.3749863,364.2936027,426.6969728,196.7715472,296.5235413,206.5772913,85.14100462 +451.4358002,231.5380737,341.4014142,219.9606601,180.2038838,366.9727892,419.2259324,195.6430844,292.7550749,205.9760615,85.13644651 +436.9467304,227.316124,333.1610975,216.3986645,179.4375618,360.9429468,415.4508951,194.632978,289.9576007,204.6475795,85.21313888 +410.0470264,220.3325959,317.3219327,213.1193085,178.9455686,358.8188415,409.334748,193.1387001,285.078852,203.5411868,85.31987859 +431.3094478,224.9928746,329.2401695,212.7076746,178.4498557,352.3566254,410.6867647,193.7719362,287.3993236,203.0464792,85.27968555 +427.1855149,225.0211119,326.5657514,216.6095756,179.1711381,361.6844026,408.7072378,193.501155,286.0225403,203.918605,85.24964595 +487.4741403,238.860983,362.4209245,216.3878008,179.3328384,352.9324392,425.3624448,197.4730534,298.9097706,205.2907037,85.09446342 +439.8016318,227.8252818,334.5678416,215.7545412,179.264127,358.793297,414.9464239,194.6704032,289.9891798,204.3986416,85.21637297 +443.8841388,230.1506002,337.2227046,221.2277885,180.7666237,372.5668461,420.2272904,195.7434855,292.6930504,206.7723133,85.13240168 +413.4360209,221.8454486,317.7590798,217.0302571,178.7876656,362.9378523,399.9648466,191.8451099,280.6958438,202.8814435,85.30021644 +406.4878873,218.798909,313.4892466,211.2118229,177.3620044,349.4519772,395.7102011,190.8452229,278.2213154,200.6716702,85.38761456 +465.699019,235.3968024,351.3489659,221.2891843,181.4583976,372.0689903,433.3497939,198.2526458,300.8129894,208.475425,85.04781187 +442.3118358,228.8374213,335.9410882,214.7428119,180.1297477,353.1126771,412.3931931,195.7582523,289.8256374,204.7270874,84.70721036 +441.092769,230.1255489,336.2323721,220.6925898,182.1415426,370.8175109,420.9371495,197.1064822,293.5392348,207.9044064,84.61752609 +455.5535651,235.2143948,348.2788511,225.9707003,185.66105,391.7218506,450.6999372,202.1918523,309.013872,214.2954664,84.43600834 +421.962059,223.3949853,324.1837937,211.5439759,179.3697345,348.304882,406.6955285,194.3256611,285.6117207,203.2804722,84.7975723 +434.3716797,226.4184358,327.8891422,213.9818973,177.9998055,343.4979995,388.5189959,191.8422162,277.5198368,200.580032,84.8085815 +411.1942902,222.5596684,317.5602939,218.5262126,180.9115422,367.2470249,404.2804175,193.9157207,283.3627935,205.2346763,84.75037198 +448.6635495,229.8716,339.7358097,213.5513661,179.8183472,349.2149334,413.7577824,196.0183738,291.0021565,204.4186187,84.71003113 +437.5060795,229.5360498,334.5168562,221.4438845,182.5872902,374.5572578,423.0623309,197.4109647,294.3179337,208.6104848,84.60835667 +456.8494449,232.2887828,344.1814803,215.4083673,180.1046095,351.6954505,414.0342482,196.3600177,291.7340039,204.8499701,84.66912971 +439.6408691,228.7848095,334.8780625,216.7468721,180.8158494,359.324823,414.9715774,196.0942779,290.7423362,205.7665234,84.68139685 +426.2199203,226.6601561,328.3659528,219.9938113,182.5628406,374.3822229,422.9497045,197.1659175,293.4934236,208.5222059,84.64653588 +438.6162446,228.8491208,332.526827,218.7610251,180.3368537,360.0985734,404.7915805,194.5996985,285.6872193,204.632923,84.69511803 +436.8907089,227.1111124,331.7779963,213.6429433,179.1856116,348.2128842,403.744628,194.1720054,285.1244899,202.9818283,84.76170729 +451.6538112,232.4691722,343.3556256,219.9651265,182.5071253,369.8017057,429.485356,198.6023828,298.5040208,208.8861484,84.57970108 +435.4149516,228.0569145,331.8045947,217.9827919,180.8512986,362.0145839,411.3828602,195.5373741,288.7028705,205.6509671,84.68666313 +414.4378418,221.7721896,320.0256429,211.8228553,179.7404636,351.804674,407.9597902,194.3560759,285.591544,203.8321616,84.80589662 +418.4854229,222.3128881,319.0501631,211.698044,177.6485243,341.1706861,385.9798466,191.1066062,275.2912925,199.8906717,84.86548463 +450.7935662,232.1707818,342.3976825,219.4737007,182.1219394,367.3359178,425.7766113,198.0879615,296.7554555,208.1613444,84.59592743 +434.6981056,227.522939,332.3557726,216.2845656,180.968857,360.3506863,416.7103314,196.1796236,291.1406208,206.0468483,84.69263601 +426.4171531,226.2541296,326.6226689,219.2984128,181.224411,367.2255834,410.242851,195.0982968,287.2524264,206.0477187,84.69589166 +449.2205606,231.0449906,339.8585486,217.3680923,180.7265649,358.5117234,414.7220327,196.2758682,291.2746726,205.7065322,84.66031627 +424.9523284,224.8334215,323.3338702,215.5772148,178.8826562,351.1866468,392.3276801,192.3943322,278.824802,201.9619773,84.79341564 +417.1315462,222.655548,320.8643852,213.3953374,179.5363181,352.6282075,403.1276383,193.615852,283.2625714,203.3113167,84.80014997 +433.4287384,225.1693305,328.8338652,209.2995552,177.7045012,335.9819943,395.7197091,192.8928563,281.2961543,200.5287739,84.8372113 +465.7584683,236.8319507,352.7392613,223.6318876,184.0190522,379.246374,440.9123819,200.8281915,305.1108796,211.5973228,84.47495242 +420.8110591,225.1484314,324.861092,219.2530843,182.3180349,373.4951351,420.2152528,196.5210609,291.5972855,208.0155298,84.67543484 +440.4717604,228.7686749,334.9896855,216.0997409,180.4892509,356.8633573,412.9302725,195.8069105,289.8638637,205.2309179,84.69347106 +430.7181033,225.0356442,327.4149909,211.1909428,178.1067534,340.7273956,395.8129302,192.812343,280.9932695,201.0621178,84.82113298 +449.9806428,231.6103424,340.6609425,218.6477297,181.2708353,362.6464453,417.9742537,196.8479014,292.8969533,206.6263086,84.63291812 +452.9630747,234.065043,343.7143605,225.06213,183.4430927,380.5255142,428.1356001,198.6877595,297.957756,210.1273246,84.52292542 +454.0220651,233.193555,344.1993566,220.7886091,182.3968565,369.9954614,426.7765065,198.3052221,297.3894799,208.6158434,84.57344792 +408.0090611,219.7171693,314.2008251,210.4694175,178.1428718,343.6530354,391.8644775,191.6921876,277.32262,200.8180723,84.88231414 +431.0065723,227.0986706,328.5341598,218.5365217,180.5083724,361.7043762,405.0852074,194.4425214,285.2096385,204.8197806,84.70982087 +416.3124344,222.5670459,319.27052,214.1808941,179.1209498,351.9199048,396.1064637,192.6276037,279.8745279,202.3994835,84.81289698 +440.6680472,229.1484428,335.9515427,216.9822334,181.2724724,361.7222828,419.5774203,196.8648991,293.0793246,206.6467844,84.66204161 +428.8961998,227.049631,328.7479513,219.811977,181.7035058,369.588565,414.9435144,195.9044916,289.7451177,206.9334473,84.66900534 +418.1561518,222.1654361,320.4117462,210.7005193,178.376608,343.3463734,396.1650377,192.6383954,280.2256775,201.3948829,84.84655357 +426.1460701,226.2670225,326.7876492,219.2113532,181.3822034,367.7142545,411.8131048,195.4280722,288.1341364,206.3388061,84.68984108 +439.143627,229.3388554,334.6449867,219.3074692,181.6304262,366.948195,417.624143,196.59098,291.8853557,207.0469281,84.64626704 +419.5690651,224.7815121,324.9575006,218.6802171,182.7264101,374.8066817,425.8749441,197.2928682,294.2121066,208.839108,84.6665455 +427.1784829,227.0823687,329.8062714,220.6338648,183.3135014,378.7024154,429.9347925,198.1791865,296.7963981,209.8729095,84.61603224 +446.1940179,230.8440511,340.5977867,218.2352032,182.2981773,367.2038271,429.935962,198.5160314,298.4015844,208.5775719,84.6073981 +448.4385111,230.7705029,339.6444532,216.7965065,180.7183377,357.7293611,415.7718537,196.4535881,291.8443624,205.7452285,84.66251392 +430.7310427,226.7710627,328.3835493,217.5788121,180.3325913,359.8456399,405.4458603,194.4391926,285.35093,204.6037198,84.72116616 +423.3598028,223.9547517,325.7428401,212.3930945,180.1496671,353.0371614,413.733995,195.3939701,288.9935535,204.7275289,84.7675674 +425.3631235,226.0858891,325.715275,219.6707129,181.0999366,367.2705938,407.8738134,194.8170068,286.1897657,205.7809378,84.6999688 +427.2354654,225.6106831,328.2004122,215.1146747,180.9681525,360.0084193,417.0181016,196.117765,290.832414,206.0364929,84.71700437 +429.2906578,225.1627211,327.5970643,212.3986935,179.1628188,347.538729,403.9256744,194.1116874,284.8164604,202.9231893,84.78378708 +427.5996822,225.9461652,328.2124677,216.3442626,181.0481113,361.9676213,415.2963783,195.8429782,289.924592,206.0406087,84.70808581 +424.6348711,224.9230971,325.5348555,215.4321386,180.2468981,357.4859027,407.8504397,194.6244944,286.1480828,204.5643594,84.74685986 +463.6881104,234.3874789,348.2103898,217.4569538,180.6959717,356.2858374,417.4521974,197.0631422,293.7645539,205.87763,84.62446109 +440.9204175,228.9359117,335.2533138,216.3481412,180.5889223,357.6430233,413.535591,195.9284566,290.1969437,205.409402,84.68786578 +466.7742313,236.0180817,352.4163162,219.9119651,182.5406542,367.2769869,433.5950357,199.6780211,301.8665541,209.2155111,84.53668732 +439.548778,227.7702963,332.4221274,214.1138455,178.8754996,347.0347243,399.3462089,193.6219264,283.2029782,202.3509295,84.76356592 +455.8262861,232.3033616,343.0474757,216.6817609,180.0743731,353.4402271,410.6836268,195.7819409,289.8528246,204.635043,84.67005896 +437.9047518,228.6618846,332.8680455,218.4449936,180.7851965,362.1231492,410.1800298,195.331517,288.1179847,205.5106519,84.68436066 +466.5540068,235.0258685,348.9058763,217.936921,180.1967466,354.1402267,411.6800387,196.2316395,291.1480525,204.921068,84.63351672 +424.0991213,223.9003615,324.2730645,212.1414899,178.8527884,346.4952393,399.8804233,193.3344849,282.4024877,202.2478936,84.80825573 +423.0442861,225.4593353,325.6267854,218.6920023,181.684236,369.0493536,415.6041613,195.860276,289.6573808,206.9117519,84.6898682 +426.2821764,224.1934591,325.4759451,211.5072721,178.4605117,343.3397038,398.288815,193.0926351,281.8741313,201.6392481,84.81628876 +430.5420021,225.8050531,327.7620077,214.0604115,179.1557289,349.4939493,400.4228132,193.625785,283.1287261,202.7336037,84.77333787 +434.6298632,227.6738351,331.8509525,216.9503636,180.9059698,360.9643323,414.0388678,195.8561144,289.8824618,205.8289002,84.69163466 +422.3968189,223.7155033,323.3084728,212.8525835,179.1170055,349.0382387,400.6392327,193.5157561,282.7493323,202.6774521,84.80055261 +440.4460743,230.2596738,335.5634974,221.8201026,182.2376622,372.8114075,418.9508131,196.8525328,292.5097871,207.9319189,84.6130068 +448.8489478,232.0406334,338.3053561,222.2165471,180.9833508,365.931229,406.9194179,195.1750864,287.2781442,205.6761852,84.63614333 +429.0419877,227.2911872,330.1616089,220.089395,182.7263085,374.9905209,425.2427648,197.4068776,294.5321852,208.8390905,84.63566559 +446.5815913,231.7348968,339.585567,221.6684636,182.4305281,372.3041924,422.9550863,197.6802282,295.0689162,208.439048,84.58738108 +460.451177,236.3254428,350.9024024,225.958243,185.451332,389.8624014,449.5349418,202.1025801,308.8000127,213.9561239,84.43169061 +439.4226389,229.4607032,333.5628658,220.3604188,181.0163485,365.3659223,409.1060193,195.2255892,287.6439853,205.7733866,84.66539665 +432.4907111,226.8760562,328.9166117,216.587358,179.8064889,355.7584475,402.3353394,193.9630565,283.979223,203.7343328,84.73952623 +436.2845904,228.1754761,332.1879178,217.5797809,180.6772895,360.3770257,410.1912045,195.3595189,288.1578191,205.3339957,84.69286895 +429.1818615,226.1896112,327.6974269,216.4153473,180.1739714,357.6523628,405.7182516,194.4448099,285.4356616,204.3775833,84.73388678 +409.246759,221.2568212,316.660792,214.6490159,180.218923,358.9576281,404.8935979,193.8512748,283.5624676,204.2956341,84.79342277 +427.7140927,226.6845488,327.5781671,219.5943018,181.4583653,368.5285617,412.1862257,195.473736,288.3110367,206.4749076,84.68346812 +472.5206985,238.5573733,356.7161798,224.2960133,184.014266,378.8515855,441.3391913,201.0592734,305.8714199,211.6475892,84.45454699 +440.4117091,229.2862724,334.1063977,218.618965,180.524798,360.2771459,407.62826,195.0390957,287.1795369,205.0173073,84.68276532 +455.1366798,233.3323919,344.1666199,220.6464597,181.9384389,367.5206857,422.3399349,197.6264624,295.2823478,207.772709,84.58892431 +469.0363224,236.864395,353.4265769,221.3430323,182.6820829,369.4988435,432.3884062,199.5598945,301.3592214,209.3620032,84.52106927 +420.4335778,224.8600014,323.1388173,219.092927,181.208338,367.8881443,408.6467531,194.7783161,286.0952998,205.9147329,84.71370995 +460.9942464,234.8171165,347.9312785,220.9301002,182.2916739,368.708536,426.8418806,198.5030284,297.9684576,208.5286674,84.5587664 +438.8183268,228.7347537,333.7560817,217.7360382,180.8163243,361.1093083,412.4485162,195.7144806,289.3996899,205.6762193,84.68131165 +440.5386629,228.5526578,336.1083485,214.9533854,180.7403192,356.4382846,419.0889716,196.6445301,292.8492529,205.8831897,84.69065816 +463.474369,236.0571812,350.8646366,222.9024044,183.4533036,375.9946414,435.969428,199.974572,302.5248955,210.5573829,84.50405102 +450.6905048,232.9497217,343.1898614,222.529066,183.1838551,376.3713712,431.1910488,198.8552515,299.1150319,209.875203,84.54943718 +404.0613097,219.4575662,312.601121,212.7188286,179.1046872,351.9712063,396.1362517,192.3708776,279.0956129,202.3402064,84.85134374 +441.3363546,231.3519919,337.9444066,224.7464706,184.1671657,385.926851,433.4009414,199.131324,299.4148074,211.2999365,84.53383014 +475.4684388,239.7894541,358.4603632,226.5974333,184.7658014,385.1877454,444.8302108,201.7342687,307.7235515,212.8997777,84.41113023 +427.2845658,225.407684,327.30879,214.6880981,180.3054134,356.3812561,410.5475527,195.1166044,287.6967212,204.8044131,84.74195765 +449.6967238,231.5317434,341.8734432,218.1459152,181.8533935,364.5669532,425.9407292,197.9974504,296.7482357,207.8008218,84.61451684 +450.3564147,232.2021885,341.0330743,220.754409,181.6970114,367.2555935,418.5383679,196.901446,293.0272225,207.2245365,84.61025471 +436.0647323,228.0580314,332.9155046,217.2403182,180.9378028,361.2042406,414.8251971,195.9095819,290.2604523,205.9100928,84.68664805 +409.2002341,221.1466189,317.1662864,213.9711223,180.4279492,359.0150474,408.7552459,194.431534,285.4535299,204.7828412,84.78978239 +430.3332423,225.7409721,328.9817336,213.566492,179.921249,352.5741397,410.058084,195.0271617,287.7065337,204.273872,84.75238231 +426.2188223,225.7690432,326.316864,217.4273167,180.656862,361.9128803,408.111408,194.7882905,286.3790994,205.1633519,84.72101303 +486.0154138,239.4022722,361.8273483,217.1724805,180.7947215,353.1920674,424.5838569,198.6848245,299.0908739,206.4916289,84.56905801 +438.7955489,228.5452234,334.2701747,216.5776788,180.7572536,359.0312566,414.3156353,195.9540486,290.3011833,205.6486426,84.68838458 +442.7393585,230.8093056,336.8385463,221.9966577,182.2525611,372.8403596,419.5206056,197.0003477,292.9802252,208.0090803,84.60470802 +412.6899319,222.6672876,317.6455717,217.8612029,180.287412,363.1530607,399.4709941,193.1744158,281.1266664,204.1541738,84.77104235 +405.8273492,219.6694519,313.4415786,212.1045518,178.8447672,349.6322112,395.2422848,192.1588817,278.6452616,201.9270325,84.859001 +464.374884,235.9739371,350.8269801,222.049207,182.9383018,372.3695991,432.5350304,199.4705554,301.0053309,209.6941661,84.52143938 diff --git a/src/pyvale/dataio/__init__.py b/src/pyvale/dataio/__init__.py index 731dc44fd..4fcb76e1a 100644 --- a/src/pyvale/dataio/__init__.py +++ b/src/pyvale/dataio/__init__.py @@ -4,7 +4,7 @@ # Copyright (C) 2025 The Computer Aided Validation Team # ============================================================================== -from .simdata import SimData +from .simdata import EMeshType, SimData from .simdata import SimLoadConfig from .loadopts import (SimLoadOpts,ExpLoadOpts) from .loadtools import (str_to_path, @@ -16,17 +16,23 @@ load_connectivity, check_sim_data_consistency, inv_group_dict) -from .meshtools import (MeshConventionCheck, +from .meshconv import (MeshCheckCode, + EElementType, + ElementSpec, + ELEMENT_SPECS, + ELEMENT_SYMMETRIES, + MeshConvention, + MeshConvErr, + MeshConvCheck, check_mesh_convention, enforce_mesh_convention, - check_cw_winding, - check_ccw_winding, - enforce_cw_winding, - enforce_ccw_winding, + is_mesh_2d, + is_volume_mesh, extract_surf_mesh, extract_surf_between) from .simloaderbytime import SimLoaderByTime from .simloaderbyfield import SimLoaderByField +from .meshloader import MeshLoader from .simsaver import (ESaveArray, save_array, ESaveFieldOpt, diff --git a/src/pyvale/dataio/loadtools.py b/src/pyvale/dataio/loadtools.py index 3b8c50412..dc37b85c3 100644 --- a/src/pyvale/dataio/loadtools.py +++ b/src/pyvale/dataio/loadtools.py @@ -310,9 +310,9 @@ def load_connectivity(connect_dir: Path, """ connect = {} - connect_files= [] + connect_files = [] if isinstance(connect_pattern,str): - connect_files = list(connect_dir.glob(connect_pattern)) + connect_files = sorted(connect_dir.glob(connect_pattern)) elif isinstance(connect_pattern,list): for ff in connect_pattern: connect_files.append(connect_dir / ff) @@ -320,6 +320,11 @@ def load_connectivity(connect_dir: Path, raise SimLoadErr("Connectivity file pattern must be a string" + " or a list.") + if not connect_files: + raise FileNotFoundError( + "No connectivity files matched the supplied pattern or list." + ) + for ff in connect_files: file_key = ff.stem connect[file_key] = load_array( @@ -462,4 +467,3 @@ def inv_group_dict(dict_com: dict[str,str]) -> dict[str, str]: return dict_com_inv - diff --git a/src/pyvale/dataio/meshconv.py b/src/pyvale/dataio/meshconv.py new file mode 100644 index 000000000..c9ae750f2 --- /dev/null +++ b/src/pyvale/dataio/meshconv.py @@ -0,0 +1,254 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +"""PyVale ``SimData`` adapter for Riley's mesh-convention tools. + +Riley's public interface is :mod:`riley.python.meshconv`. Element metadata +is re-exported from Riley's implementation module, and the orientation +symmetries are derived from the public element-type API. +""" + +from __future__ import annotations + +from types import MappingProxyType + +import numpy as np + +from riley.python import meshconv as _core +from riley.python import _meshconv as _impl + +from pyvale.dataio.simdata import EMeshType as PyValeMeshType +from pyvale.dataio.simdata import SimData + + +MeshCheckCode = _core.MeshCheckCode +MeshConvCheck = _core.MeshConvCheck +MeshConvErr = _core.MeshConvErr +EElementType = _core.EElementType +ElementSpec = _impl.ElementSpec +ELEMENT_SPECS = _impl.ELEMENT_SPECS +MeshConvention = _core.MeshConvention + +ELEMENT_SYMMETRIES = MappingProxyType({ + element_type: element_type.calc_orient_preserving_perms() + for element_type in EElementType +}) + +# PyVale's historical Exodus fixtures use this documented source layout. It +# is adapter-owned metadata, not a Riley convention special case. +PYVALE_EXODUS_MESH_CONVENTION = MeshConvention({ + _core.EElementType.HEX20: ( + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 16, 17, 18, 19, 12, 13, 14, 15, + ), + _core.EElementType.HEX27: ( + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 16, 17, 18, 19, 12, 13, 14, 15, + 25, 24, 26, 23, 21, 22, 20, + ), +}) + + +def check_mesh_convention( + mesh_in: SimData, + source_convention: MeshConvention | None = None, +) -> MeshConventionCheck: + return _core.check_mesh_convention( + _to_riley_mesh(mesh_in), + _resolve_source_convention(mesh_in, source_convention), + ) + + +def enforce_mesh_convention( + mesh_in: SimData, + source_convention: MeshConvention | None = None, +) -> SimData: + mesh_out = _core.enforce_mesh_convention( + _to_riley_mesh(mesh_in), + _resolve_source_convention(mesh_in, source_convention), + ) + return _from_riley_mesh(mesh_out, mesh_in.num_spat_dims) + + +def is_mesh_2d(mesh_in: SimData) -> bool: + return _impl._check_mesh_2d(_to_riley_mesh(mesh_in)) + + +def is_volume_mesh(mesh_in: SimData) -> bool: + return _impl._check_vol_mesh(_to_riley_mesh(mesh_in)) + + +def extract_surf_mesh( + mesh_in: SimData, + enforce_convention: bool = True, +) -> SimData: + mesh_out = _core.extract_surf_mesh( + _to_riley_mesh(mesh_in), + enforce_convention=enforce_convention, + ) + if enforce_convention: + mesh_out = _copy_with_row_major_tables(mesh_out) + return _from_riley_mesh(mesh_out, mesh_in.num_spat_dims) + + +def extract_surf_between( + mesh_in: SimData, + point: np.ndarray | list[float] | tuple[float, ...], + normal: np.ndarray | list[float] | tuple[float, ...], + distance: float | None = None, + tolerance: float = 1.0e-6, + enforce_convention: bool = True, +) -> SimData: + mesh_out = _core.extract_surf_between( + _to_riley_mesh(mesh_in), + point, + normal, + distance=distance, + tolerance=tolerance, + enforce_convention=enforce_convention, + ) + if enforce_convention: + mesh_out = _copy_with_row_major_tables(mesh_out) + return _from_riley_mesh(mesh_out, mesh_in.num_spat_dims) + + +def _copy_with_row_major_tables(mesh_in: _core.SimData) -> _core.SimData: + """Return the mesh with every connectivity table in element-per-row form. + + Riley can emit extracted surface tables with faces as columns when the + input mesh declares an explicit volume type, so enforced outputs are + normalised here as well. + """ + if mesh_in.connect is None or mesh_in.coords is None: + return mesh_in + num_coords = mesh_in.coords.shape[0] + connect_out = {} + changed = False + for name, connect_raw in mesh_in.connect.items(): + connect = np.asarray(connect_raw) + if _table_prefers_transpose(connect, num_coords): + connect_out[name] = np.ascontiguousarray(connect.T) + changed = True + else: + connect_out[name] = connect + if not changed: + return mesh_in + return _core.SimData( + coords=mesh_in.coords, + connect=connect_out, + mesh_type=mesh_in.mesh_type, + time=mesh_in.time, + side_sets=mesh_in.side_sets, + node_vars=mesh_in.node_vars, + elem_vars=mesh_in.elem_vars, + glob_vars=mesh_in.glob_vars, + ) + + +def _table_prefers_transpose( + connect: np.ndarray, + num_coords: int, +) -> bool: + """Return whether a table most plausibly holds faces as columns. + + Extracted surface tables must have one face per row, so the orientation + whose row width is a surface-topology node count wins. Ambiguous or + already-plausible tables are left untouched. + """ + if connect.ndim != 2 or connect.shape[0] == 0 or connect.shape[1] == 0: + return False + surf_widths = { + spec.nodes_per_elem + for spec in ELEMENT_SPECS.values() + if spec.is_surf + } + width_as_is = int(connect.shape[1]) + width_transposed = int(connect.shape[0]) + as_is_is_surf = width_as_is in surf_widths + transposed_is_surf = width_transposed in surf_widths + if as_is_is_surf or transposed_is_surf == as_is_is_surf: + return False + return ( + int(np.min(connect)) >= 0 + and int(np.max(connect)) < num_coords + ) + + +def _to_riley_mesh(mesh_in: SimData) -> _core.SimData: + return _core.SimData( + coords=mesh_in.coords, + connect=mesh_in.connect, + mesh_type=_to_riley_mesh_type(mesh_in.mesh_type), + time=mesh_in.time, + side_sets=mesh_in.side_sets, + node_vars=mesh_in.node_vars, + elem_vars=mesh_in.elem_vars, + glob_vars=mesh_in.glob_vars, + ) + + +def _resolve_source_convention( + mesh_in: SimData, + source_convention: MeshConvention | None, +) -> MeshConvention | None: + if source_convention is not None: + return source_convention + if mesh_in.coords is None or mesh_in.connect is None: + return None + for connect in mesh_in.connect.values(): + connect_array = np.asarray(connect, dtype=np.int64) + if ( + _impl._check_transpose_needed(connect_array) + or int(connect_array.min()) == 1 + ): + return PYVALE_EXODUS_MESH_CONVENTION + return None + + +def _from_riley_mesh(mesh_in: _core.SimData, num_spat_dims: int) -> SimData: + return SimData( + num_spat_dims=num_spat_dims, + mesh_type=_to_pyvale_mesh_type(mesh_in.mesh_type), + time=mesh_in.time, + coords=mesh_in.coords, + connect=mesh_in.connect, + side_sets=mesh_in.side_sets, + node_vars=mesh_in.node_vars, + elem_vars=mesh_in.elem_vars, + glob_vars=mesh_in.glob_vars, + ) + + +def _to_riley_mesh_type( + mesh_type: PyValeMeshType | None, +) -> _core.EMeshType | None: + if mesh_type is PyValeMeshType.VOL: + return _core.EMeshType.VOL + if mesh_type is PyValeMeshType.SURF: + return _core.EMeshType.SURF + return None + + +def _to_pyvale_mesh_type( + mesh_type: _core.EMeshType | None, +) -> PyValeMeshType | None: + if mesh_type is _core.EMeshType.VOL: + return PyValeMeshType.VOL + if mesh_type is _core.EMeshType.SURF: + return PyValeMeshType.SURF + return None + + +__all__ = [ + "MeshCheckCode", + "MeshConvCheck", + "check_mesh_convention", + "enforce_mesh_convention", + "is_mesh_2d", + "is_volume_mesh", + "extract_surf_mesh", + "extract_surf_between", +] diff --git a/src/pyvale/dataio/meshloader.py b/src/pyvale/dataio/meshloader.py new file mode 100644 index 000000000..0c1894530 --- /dev/null +++ b/src/pyvale/dataio/meshloader.py @@ -0,0 +1,96 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Load mesh coordinates and connectivity into simulation data.""" + +from pathlib import Path + +from pyvale.dataio.exceptions import SimLoadErr +from pyvale.dataio.loadopts import SimLoadOpts +from pyvale.dataio.loadtools import ( + load_array, + load_connectivity, + str_to_path, +) +from pyvale.dataio.meshconv import enforce_mesh_convention +from pyvale.dataio.simdata import SimData + + +class MeshLoader: + """Load coordinates and connectivity without simulation fields. + + Parameters + ---------- + load_dir : Path + Directory containing the mesh files. + coords_file : str | Path + Coordinate file name relative to ``load_dir`` or its complete path. + connect_files : str | list[str] + Connectivity file pattern or an explicit list of file names. + load_opts : SimLoadOpts | None, optional + Text and array loading options. Default options are created when this + argument is ``None``. + enforce_convention : bool, optional + Convert supported legacy connectivity into the common PyVale mesh + convention, by default ``True``. + """ + + __slots__ = ( + "_connect_files", + "_coords_file", + "_enforce_convention", + "_load_dir", + "_load_opts", + ) + + def __init__( + self, + load_dir: Path, + coords_file: str | Path, + connect_files: str | list[str], + load_opts: SimLoadOpts | None = None, + enforce_convention: bool = True, + ) -> None: + if not load_dir.is_dir(): + raise SimLoadErr( + f"Load directory '{load_dir.resolve()}' is not a directory." + ) + + self._load_dir = load_dir + self._coords_file = coords_file + self._connect_files = connect_files + self._load_opts = SimLoadOpts() if load_opts is None else load_opts + self._enforce_convention = enforce_convention + + def load_mesh(self) -> SimData: + """Load and return mesh coordinates and connectivity. + + Returns + ------- + SimData + Simulation data containing only coordinates and connectivity. + """ + coords_path = str_to_path(self._load_dir, self._coords_file) + coords = load_array( + coords_path, + self._load_opts.coord_header, + self._load_opts.delimiter, + ) + connect = load_connectivity( + self._load_dir, + self._connect_files, + self._load_opts, + ) + mesh = SimData(coords=coords, connect=connect) + + if self._enforce_convention: + mesh = enforce_mesh_convention(mesh) + + mesh.refresh_mesh_type() + return mesh + + +__all__ = ["MeshLoader"] diff --git a/src/pyvale/dataio/meshtools.py b/src/pyvale/dataio/meshtools.py deleted file mode 100644 index 672cc8744..000000000 --- a/src/pyvale/dataio/meshtools.py +++ /dev/null @@ -1,1258 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -"""Shared mesh convention and surface-extraction tools for ``SimData``.""" - -from __future__ import annotations - -from dataclasses import dataclass -import numpy as np - -from pyvale.dataio.simdata import SimData - -_SURFACE_NODE_COUNTS = frozenset((3, 4, 6, 7, 8, 9)) -_VOLUME_NODE_COUNTS = frozenset((4, 8, 10, 20, 27)) -_SUPPORTED_NODE_COUNTS = _SURFACE_NODE_COUNTS | _VOLUME_NODE_COUNTS -_TOL = 1.0e-12 - - -@dataclass(slots=True) -class MeshConventionCheck: - """Structured report describing mesh convention compliance.""" - - is_zero_based: bool - has_ccw_winding: bool - is_right_handed: bool - has_valid_connectivity: bool - has_row_major_connectivity: bool - failed_checks: tuple[str, ...] - connectivity_failures: dict[str, tuple[str, ...]] - - @property - def is_valid(self) -> bool: - return not self.failed_checks - - -def check_mesh_convention(mesh_in: SimData) -> MeshConventionCheck: - """Checks a mesh against the shared pyvale mesh convention.""" - - if mesh_in.connect is None: - return MeshConventionCheck(True, True, True, True, True, tuple(), {}) - if mesh_in.coords is None: - raise ValueError("Mesh convention checks require 'coords' to be set.") - - zero_based = True - ccw = True - right_handed = True - valid_connectivity = True - row_major = True - per_table: dict[str, tuple[str, ...]] = {} - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - - for name, connect_raw in mesh_in.connect.items(): - connect = _coerce_connect_array(connect_raw, name) - failures: list[str] = [] - - if _should_transpose_connectivity(connect, name, mesh_in): - row_major = False - failures.append("row_major_connectivity") - connect = connect.T - - legacy_connect = _table_needs_zero_based_shift( - connect, - mesh_in.coords.shape[0], - shift_all, - ) - if legacy_connect: - zero_based = False - failures.append("zero_based_indexing") - - connect_check = connect - if legacy_connect: - connect_check = connect - 1 - - if not _check_indices_zero_based(connect_check, mesh_in.coords.shape[0]): - valid_connectivity = False - failures.append("connectivity_indices") - else: - connect_check = _normalise_legacy_connectivity_order( - connect_check, legacy_connect - ) - - if not _check_ccw_winding_table(connect_check, mesh_in.coords): - ccw = False - failures.append("ccw_winding") - - if not _check_right_handed_table(connect_check, mesh_in.coords): - right_handed = False - failures.append("right_handed_geometry") - - per_table[name] = tuple(failures) - - failed_checks: list[str] = [] - if not zero_based: - failed_checks.append("zero_based_indexing") - if not ccw: - failed_checks.append("ccw_winding") - if not right_handed: - failed_checks.append("right_handed_geometry") - if not valid_connectivity: - failed_checks.append("connectivity_indices") - if not row_major: - failed_checks.append("row_major_connectivity") - - return MeshConventionCheck( - is_zero_based=zero_based, - has_ccw_winding=ccw, - is_right_handed=right_handed, - has_valid_connectivity=valid_connectivity, - has_row_major_connectivity=row_major, - failed_checks=tuple(failed_checks), - connectivity_failures=per_table, - ) - - -def enforce_mesh_convention(mesh_in: SimData) -> SimData: - """Normalises a mesh to the pyvale mesh convention: - - 0-based indexing - - CCW node ordering when viewed from the outward/visible side - - Right-handed geometry conventions - - Check that all indices in the connectivity table map to a row in coords - """ - - report = check_mesh_convention(mesh_in) - if report.is_valid: - return mesh_in - - if mesh_in.connect is None: - return mesh_in - if mesh_in.coords is None: - raise ValueError("Mesh convention enforcement requires coords.") - - connect_out: dict[str, np.ndarray] = {} - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - - for name, connect_raw in mesh_in.connect.items(): - connect = _coerce_connect_array(connect_raw, name) - - if _should_transpose_connectivity(connect, name, mesh_in): - connect = connect.T - - legacy_connect = _table_needs_zero_based_shift( - connect, - mesh_in.coords.shape[0], - shift_all, - ) - if legacy_connect: - connect = connect - 1 - - if not _check_indices_zero_based(connect, mesh_in.coords.shape[0]): - raise ValueError( - "Connectivity table " - f"'{name}' contains indices outside the coordinate array after " - "0-based normalization." - ) - - connect = _normalise_legacy_connectivity_order(connect, legacy_connect) - connect = _enforce_ccw_winding_table(connect, mesh_in.coords) - connect = _enforce_right_handed_table(connect, mesh_in.coords) - - if not _check_indices_zero_based(connect, mesh_in.coords.shape[0]): - raise ValueError( - "Connectivity table " - f"'{name}' became invalid during mesh convention enforcement." - ) - - connect_out[name] = np.ascontiguousarray(connect, dtype=np.int64) - - return _copy_sim_data(mesh_in, connect=connect_out) - - -def check_cw_winding(mesh_in: SimData) -> bool: - """Checks whether all supported surface/2D elements are wound clockwise.""" - - if mesh_in.connect is None: - return True - if mesh_in.coords is None: - raise ValueError("Clockwise winding checks require 'coords' to be set.") - - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - for connect in mesh_in.connect.values(): - connect_row_major = _as_row_major_zero_based( - connect, - mesh_in.coords.shape[0], - shift_all=shift_all, - ) - if not _check_cw_winding_table(connect_row_major, mesh_in.coords): - return False - return True - - -def check_ccw_winding(mesh_in: SimData) -> bool: - """Checks whether all supported surface/2D elements are wound counter-clockwise.""" - - if mesh_in.connect is None: - return True - if mesh_in.coords is None: - raise ValueError("CCW winding checks require 'coords' to be set.") - - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - for connect in mesh_in.connect.values(): - connect_row_major = _as_row_major_zero_based( - connect, - mesh_in.coords.shape[0], - shift_all=shift_all, - ) - if not _check_ccw_winding_table(connect_row_major, mesh_in.coords): - return False - return True - - -def enforce_cw_winding(mesh_in: SimData) -> SimData: - """Returns a copy of ``mesh_in`` with supported 2D/surface elements wound CW.""" - - if mesh_in.connect is None: - return mesh_in - if mesh_in.coords is None: - raise ValueError("Clockwise winding enforcement requires 'coords' to be set.") - - connect_out: dict[str, np.ndarray] = {} - changed = False - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - - for name, connect in mesh_in.connect.items(): - connect_row_major = _as_row_major_zero_based( - connect, - mesh_in.coords.shape[0], - shift_all=shift_all, - ) - connect_out[name] = _enforce_cw_winding_table(connect_row_major, mesh_in.coords) - changed = changed or not np.array_equal(connect_out[name], connect_row_major) - - if not changed: - return mesh_in - - return _copy_sim_data(mesh_in, connect=connect_out) - - -def enforce_ccw_winding(mesh_in: SimData) -> SimData: - """Returns a copy of ``mesh_in`` with supported 2D/surface elements wound CCW.""" - - if mesh_in.connect is None: - return mesh_in - if mesh_in.coords is None: - raise ValueError("CCW winding enforcement requires 'coords' to be set.") - - connect_out: dict[str, np.ndarray] = {} - changed = False - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - - for name, connect in mesh_in.connect.items(): - connect_row_major = _as_row_major_zero_based( - connect, - mesh_in.coords.shape[0], - shift_all=shift_all, - ) - connect_out[name] = _enforce_ccw_winding_table(connect_row_major, mesh_in.coords) - changed = changed or not np.array_equal(connect_out[name], connect_row_major) - - if not changed: - return mesh_in - - return _copy_sim_data(mesh_in, connect=connect_out) - - -def is_mesh_2d(mesh_in: SimData) -> bool: - if mesh_in.coords is None or mesh_in.connect is None: - return False - - # 1. Check coordinate flatness - coord_ranges = np.ptp(mesh_in.coords, axis=0) - if np.any(coord_ranges < 1e-12): - return True - - # 2. Check elements in connectivity tables - for name, connect_raw in mesh_in.connect.items(): - connect = np.asarray(connect_raw, dtype=np.int64) - if _should_transpose_connectivity(connect, name, mesh_in): - connect = connect.T - - # Normalize 1-based indexing if present to avoid out-of-bounds errors - shift_all = _infer_mesh_zero_based_shift( - mesh_in, mesh_in.coords.shape[0] - ) - legacy_connect = _table_needs_zero_based_shift( - connect, - mesh_in.coords.shape[0], - shift_all, - ) - if legacy_connect: - connect = connect - 1 - - nodes_per_elem = connect.shape[1] - if nodes_per_elem in (3, 6, 7, 9): - return True - if nodes_per_elem in (10, 20, 27): - return False - - if nodes_per_elem == 4: - # Check if elements are TET4 (3D) or QUAD4 (2D) - try: - num_check = min(10, connect.shape[0]) - is_tet = False - for i in range(num_check): - elem = connect[i] - v = mesh_in.coords[elem] - vol = np.abs( - np.dot( - v[1] - v[0], - np.cross(v[2] - v[0], v[3] - v[0]), - ) - ) - if vol > 1e-10: - is_tet = True - break - if not is_tet: - return True - except IndexError: - pass - - if nodes_per_elem == 8: - # Check if elements are HEX8 (3D) or QUAD8 (2D) - try: - num_check = min(10, connect.shape[0]) - is_hex = False - for i in range(num_check): - elem = connect[i] - v = mesh_in.coords[elem] - vol = np.abs( - np.dot( - v[1] - v[0], - np.cross(v[2] - v[0], v[4] - v[0]), - ) - ) - if vol > 1e-10: - is_hex = True - break - if not is_hex: - return True - except IndexError: - pass - - return False - - -def extract_surf_mesh( - mesh_in: SimData, - enforce_convention: bool = True, -) -> SimData: - """Extracts the external surface mesh from supported 3D volume elements.""" - - if is_mesh_2d(mesh_in): - raise ValueError( - "Surface extraction is only supported for 3D meshes. " - "The provided mesh appears to be 2D." - ) - - if mesh_in.connect is None: - raise ValueError("Surface extraction requires connectivity tables.") - if mesh_in.coords is None: - raise ValueError("Surface extraction requires coords.") - - connect_norm: dict[str, np.ndarray] = {} - source_zero_based = True - source_row_major = True - shift_all = _infer_mesh_zero_based_shift(mesh_in, mesh_in.coords.shape[0]) - - for name, connect_raw in mesh_in.connect.items(): - connect = _coerce_connect_array(connect_raw, name) - if _should_transpose_connectivity(connect, name, mesh_in): - source_row_major = False - connect = connect.T - legacy_connect = _table_needs_zero_based_shift( - connect, - mesh_in.coords.shape[0], - shift_all, - ) - if legacy_connect: - source_zero_based = False - connect = connect - 1 - if not _check_indices_zero_based(connect, mesh_in.coords.shape[0]): - raise ValueError( - f"Connectivity table '{name}' contains invalid indices for surface extraction." - ) - connect = _normalise_legacy_connectivity_order(connect, legacy_connect) - connect_norm[name] = _enforce_right_handed_table( - _enforce_ccw_winding_table(connect, mesh_in.coords), - mesh_in.coords, - ) - - surf_connect_global: dict[str, np.ndarray] = {} - surf_elem_sources: dict[str, np.ndarray] = {} - surf_node_inds = np.array([], dtype=np.int64) - - for name, connect in connect_norm.items(): - (surf_faces, surf_parent_elem_inds) = _extract_surface_faces_from_table( - connect, - mesh_in.coords, - ) - surf_connect_global[name] = surf_faces - surf_elem_sources[name] = surf_parent_elem_inds - if surf_faces.size: - surf_node_inds = np.union1d(surf_node_inds, np.unique(surf_faces)) - - surf_coords = np.ascontiguousarray(mesh_in.coords[surf_node_inds], - dtype=mesh_in.coords.dtype) - coord_remap = np.full(mesh_in.coords.shape[0], -1, dtype=np.int64) - coord_remap[surf_node_inds] = np.arange(surf_node_inds.shape[0], dtype=np.int64) - - surf_connect_local: dict[str, np.ndarray] = {} - for name, surf_faces in surf_connect_global.items(): - surf_connect_local[name] = coord_remap[surf_faces] - - surf_mesh = _copy_sim_data(mesh_in) - surf_mesh.coords = surf_coords - surf_mesh.connect = surf_connect_local - - if mesh_in.node_vars is not None: - surf_mesh.node_vars = { - name: values[surf_node_inds, :] - for name, values in mesh_in.node_vars.items() - } - - if mesh_in.elem_vars is not None: - surf_mesh.elem_vars = {} - for (name, block_id), values in mesh_in.elem_vars.items(): - connect_key = f"connect{block_id}" - if connect_key in surf_elem_sources: - surf_mesh.elem_vars[(name, block_id)] = values[surf_elem_sources[connect_key], :] - - if not enforce_convention: - surf_mesh = _restore_source_connectivity_style( - surf_mesh, - one_based=not source_zero_based, - transposed=not source_row_major, - ) - return surf_mesh - - return surf_mesh - - -def _copy_sim_data(mesh_in: SimData, - connect: dict[str, np.ndarray] | None = None) -> SimData: - mesh_out = SimData( - num_spat_dims=mesh_in.num_spat_dims, - time=mesh_in.time, - coords=mesh_in.coords, - connect=mesh_in.connect if connect is None else connect, - side_sets=mesh_in.side_sets, - node_vars=mesh_in.node_vars, - elem_vars=mesh_in.elem_vars, - glob_vars=mesh_in.glob_vars, - ) - return mesh_out - - -def _coerce_connect_array(connect: np.ndarray, name: str) -> np.ndarray: - array = np.asarray(connect) - if array.ndim != 2: - raise ValueError( - f"Connectivity table '{name}' must be 2D, got shape {array.shape}." - ) - return np.ascontiguousarray(array, dtype=np.int64) - - -def _supported_nodes_per_elem(nodes_per_elem: int) -> None: - if nodes_per_elem not in _SUPPORTED_NODE_COUNTS: - raise NotImplementedError( - "Mesh convention tools do not support elements with " - f"{nodes_per_elem} nodes." - ) - - -def _should_transpose_connectivity( - connect: np.ndarray, - connect_name: str | None = None, - mesh_in: SimData | None = None, -) -> bool: - rows_supported = connect.shape[0] in _SUPPORTED_NODE_COUNTS - cols_supported = connect.shape[1] in _SUPPORTED_NODE_COUNTS - - if rows_supported and not cols_supported: - return True - if cols_supported and not rows_supported: - return False - if cols_supported and rows_supported: - block_rows = _get_elem_var_block_rows(connect_name, mesh_in) - if block_rows is not None: - row_match = connect.shape[0] in block_rows - col_match = connect.shape[1] in block_rows - if row_match and not col_match: - return False - if col_match and not row_match: - return True - if mesh_in is not None and mesh_in.coords is not None: - return _score_orientation(connect.T, mesh_in.coords) > _score_orientation( - connect, - mesh_in.coords, - ) - return False - raise NotImplementedError( - "Could not infer connectivity orientation from shape " - f"{connect.shape}. Expected a supported nodes-per-element dimension." - ) - - -def _needs_zero_based_shift(connect: np.ndarray, num_coords: int) -> bool: - if connect.size == 0: - return False - if np.any(connect < 0): - return False - if np.any(connect == 0): - return False - return bool(np.any(connect >= num_coords)) - - -def _is_ambiguously_positive(connect: np.ndarray, num_coords: int) -> bool: - if connect.size == 0: - return False - return bool( - np.all(connect >= 1) - and np.all(connect < num_coords) - and not np.any(connect == 0) - ) - - -def _infer_mesh_zero_based_shift(mesh_in: SimData, num_coords: int) -> bool: - any_zero_based = False - any_definitely_one_based = False - - for connect_name, connect_raw in mesh_in.connect.items(): - connect = np.asarray(connect_raw, dtype=np.int64) - if _should_transpose_connectivity(connect, connect_name, mesh_in): - connect = connect.T - if np.any(connect == 0): - any_zero_based = True - if _needs_zero_based_shift(connect, num_coords): - any_definitely_one_based = True - - if any_zero_based and any_definitely_one_based: - raise ValueError( - "Mixed zero-based and one-based connectivity tables detected in the same mesh." - ) - - return any_definitely_one_based and not any_zero_based - - -def _table_needs_zero_based_shift( - connect: np.ndarray, - num_coords: int, - shift_all: bool, -) -> bool: - if _needs_zero_based_shift(connect, num_coords): - return True - return shift_all and _is_ambiguously_positive(connect, num_coords) - - -def _get_elem_var_block_rows( - connect_name: str | None, - mesh_in: SimData | None, -) -> set[int] | None: - if connect_name is None or mesh_in is None or mesh_in.elem_vars is None: - return None - - try: - block_id = int(connect_name.replace("connect", "")) - except ValueError: - return None - - row_counts = { - values.shape[0] - for (_field_name, field_block), values in mesh_in.elem_vars.items() - if field_block == block_id - } - return row_counts or None - - -def _check_indices_zero_based(connect: np.ndarray, num_coords: int) -> bool: - if connect.size == 0: - return True - valid_mask = np.logical_and(connect >= 0, connect < num_coords) - return bool(np.all(valid_mask)) - - -def _as_row_major_zero_based( - connect: np.ndarray, - num_coords: int, - *, - shift_all: bool = False, -) -> np.ndarray: - connect_out = np.asarray(connect, dtype=np.int64) - if connect_out.ndim != 2: - raise ValueError(f"Connectivity table must be 2D, got shape {connect_out.shape}.") - if _should_transpose_connectivity(connect_out): - connect_out = connect_out.T - legacy_connect = _table_needs_zero_based_shift(connect_out, num_coords, shift_all) - if legacy_connect: - connect_out = connect_out - 1 - connect_out = _normalise_legacy_connectivity_order(connect_out, legacy_connect) - return np.ascontiguousarray(connect_out, dtype=np.int64) - - -def _score_orientation(connect_row_major: np.ndarray, coords: np.ndarray) -> int: - num_coords = coords.shape[0] - connect_eval = np.asarray(connect_row_major, dtype=np.int64) - - if connect_eval.ndim != 2 or connect_eval.shape[1] not in _SUPPORTED_NODE_COUNTS: - return -1 - - if _needs_zero_based_shift(connect_eval, num_coords): - connect_eval = connect_eval - 1 - - if not _check_indices_zero_based(connect_eval, num_coords): - return -1 - - score = 0 - for row in connect_eval: - if np.unique(row).shape[0] != row.shape[0]: - continue - - try: - metric = _handedness_metric(row, coords) - except ValueError: - continue - - if metric is not None and abs(metric) > _TOL: - score += 1 - - return score - - -def _normalise_legacy_connectivity_order( - connect: np.ndarray, - legacy_connect: bool, -) -> np.ndarray: - if not legacy_connect: - return connect - - nodes_per_elem = connect.shape[1] - if nodes_per_elem == 20: - perm = np.array((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 18, 19, 12, 13, 14, 15)) - return np.ascontiguousarray(connect[:, perm], dtype=np.int64) - if nodes_per_elem == 27: - perm = np.array((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 18, 19, 12, 13, 14, 15, 26, 24, 25, 20, 21, 22, 23)) - return np.ascontiguousarray(connect[:, perm], dtype=np.int64) - return connect - - -def _get_corner_indices(nodes_per_elem: int) -> np.ndarray: - _supported_nodes_per_elem(nodes_per_elem) - if nodes_per_elem in (3, 6, 7): - return np.array((0, 1, 2), dtype=np.int64) - if nodes_per_elem in (4, 8, 9): - return np.array((0, 1, 2, 3), dtype=np.int64) - if nodes_per_elem in (10,): - return np.array((0, 1, 2, 3), dtype=np.int64) - if nodes_per_elem in (20, 27): - return np.array((0, 1, 2, 3, 4, 5, 6, 7), dtype=np.int64) - return np.arange(nodes_per_elem, dtype=np.int64) - - -def _get_volume_corner_indices(nodes_per_elem: int) -> np.ndarray: - _supported_nodes_per_elem(nodes_per_elem) - if nodes_per_elem in (4, 10): - return np.array((0, 1, 2, 3), dtype=np.int64) - if nodes_per_elem in (8, 20, 27): - return np.array((0, 1, 2, 3, 4, 5, 6, 7), dtype=np.int64) - raise NotImplementedError( - f"Volume corner extraction is not implemented for {nodes_per_elem}-node elements." - ) - - -def _active_coord_axes(coords: np.ndarray) -> np.ndarray: - axis_range = np.ptp(coords, axis=0) - active = np.flatnonzero(axis_range > _TOL) - if active.shape[0] < 2: - raise ValueError("At least two active coordinate axes are required.") - return active[:2] - - -def _polygon_signed_area(coords_elem: np.ndarray) -> float: - axes = _active_coord_axes(coords_elem) - xy = coords_elem[:, axes] - rolled = np.roll(xy, -1, axis=0) - return 0.5 * np.sum(xy[:, 0] * rolled[:, 1] - rolled[:, 0] * xy[:, 1]) - - -def _is_coplanar(coords_elem: np.ndarray) -> bool: - centred = coords_elem - np.mean(coords_elem, axis=0) - return np.linalg.matrix_rank(centred, tol=_TOL) <= 2 - - -def _tet_signed_volume(coords_elem: np.ndarray) -> float: - return float( - np.linalg.det( - np.column_stack(( - coords_elem[1] - coords_elem[0], - coords_elem[2] - coords_elem[0], - coords_elem[3] - coords_elem[0], - )) - ) - ) - - -def _hex_signed_volume(coords_elem: np.ndarray) -> float: - return float( - np.linalg.det( - np.column_stack(( - coords_elem[1] - coords_elem[0], - coords_elem[3] - coords_elem[0], - coords_elem[4] - coords_elem[0], - )) - ) - ) - - -def _winding_metric(connect_row: np.ndarray, coords: np.ndarray) -> float | None: - nodes_per_elem = connect_row.shape[0] - if nodes_per_elem not in _SURFACE_NODE_COUNTS: - return None - corner_inds = _get_corner_indices(nodes_per_elem) - coords_elem = coords[connect_row[corner_inds]] - if not _is_coplanar(coords_elem): - return None - return _polygon_signed_area(coords_elem) - - -def _handedness_metric(connect_row: np.ndarray, coords: np.ndarray) -> float | None: - nodes_per_elem = connect_row.shape[0] - if nodes_per_elem in _SURFACE_NODE_COUNTS: - metric = _winding_metric(connect_row, coords) - if metric is not None: - return metric - corner_inds = _get_corner_indices(nodes_per_elem) - coords_elem = coords[connect_row[corner_inds]] - if nodes_per_elem in (4, 10): - return _tet_signed_volume(coords_elem) - if nodes_per_elem in (8, 20, 27): - return _hex_signed_volume(coords_elem) - raise NotImplementedError( - f"Handedness checks are not implemented for {nodes_per_elem}-node elements." - ) - - -def _check_ccw_winding_table(connect: np.ndarray, coords: np.ndarray) -> bool: - for row in connect: - metric = _winding_metric(row, coords) - if metric is None: - continue - if metric <= 0.0: - return False - return True - - -def _check_cw_winding_table(connect: np.ndarray, coords: np.ndarray) -> bool: - for row in connect: - metric = _winding_metric(row, coords) - if metric is None: - continue - if metric >= 0.0: - return False - return True - - -def _check_right_handed_table(connect: np.ndarray, coords: np.ndarray) -> bool: - for row in connect: - metric = _handedness_metric(row, coords) - if metric is None: - continue - if metric <= 0.0: - return False - return True - - -def _reverse_surface_row(connect_row: np.ndarray) -> np.ndarray: - nodes_per_elem = connect_row.shape[0] - perms = { - 3: np.array((0, 2, 1)), - 4: np.array((0, 3, 2, 1)), - 6: np.array((0, 2, 1, 5, 4, 3)), - 7: np.array((0, 2, 1, 5, 4, 3, 6)), - 8: np.array((0, 3, 2, 1, 7, 6, 5, 4)), - 9: np.array((0, 3, 2, 1, 7, 6, 5, 4, 8)), - } - _supported_nodes_per_elem(nodes_per_elem) - if nodes_per_elem not in perms: - raise NotImplementedError( - f"CCW/CW winding enforcement is not implemented for {nodes_per_elem}-node elements." - ) - return connect_row[perms[nodes_per_elem]] - - -def _reverse_handedness_row(connect_row: np.ndarray) -> np.ndarray: - nodes_per_elem = connect_row.shape[0] - perms = { - 4: np.array((0, 2, 1, 3)), - 10: np.array((0, 2, 1, 3, 6, 5, 4, 7, 9, 8)), - 8: np.array((0, 3, 2, 1, 4, 7, 6, 5)), - 20: np.array((0, 3, 2, 1, 4, 7, 6, 5, 11, 10, 9, 8, 15, 14, 13, 12, 16, 19, 18, 17)), - 27: np.array((0, 3, 2, 1, 4, 7, 6, 5, 11, 10, 9, 8, 15, 14, 13, 12, 16, 19, 18, 17, 20, 21, 22, 23, 24, 25, 26)), - } - if nodes_per_elem not in perms: - raise NotImplementedError( - f"Right-handed enforcement is not implemented for {nodes_per_elem}-node elements." - ) - return connect_row[perms[nodes_per_elem]] - - -def _get_face_corner_coords(face_coords: np.ndarray) -> np.ndarray: - nodes_per_face = face_coords.shape[0] - if nodes_per_face in (3, 6, 7): - return face_coords[:3, :] - if nodes_per_face in (4, 8, 9): - return face_coords[:4, :] - raise NotImplementedError( - f"Surface face corner extraction is not implemented for {nodes_per_face}-node faces." - ) - - -def _calc_face_normal(face_coords: np.ndarray) -> np.ndarray: - face_corners = _get_face_corner_coords(face_coords) - face_normal = np.cross( - face_corners[1] - face_corners[0], - face_corners[2] - face_corners[0], - ) - normal_mag = np.linalg.norm(face_normal) - - if normal_mag <= _TOL and face_corners.shape[0] == 4: - face_normal = np.cross( - face_corners[2] - face_corners[0], - face_corners[3] - face_corners[0], - ) - normal_mag = np.linalg.norm(face_normal) - - if normal_mag <= _TOL: - raise ValueError("Degenerate face detected while extracting the surface mesh.") - - return face_normal / normal_mag - - -def _orient_surface_face_outward( - face_connect: np.ndarray, - parent_connect: np.ndarray, - coords: np.ndarray, -) -> np.ndarray: - face_coords = coords[face_connect] - face_centroid = np.mean(_get_face_corner_coords(face_coords), axis=0) - - parent_corners = _get_volume_corner_indices(parent_connect.shape[0]) - parent_centroid = np.mean(coords[parent_connect[parent_corners]], axis=0) - - face_normal = _calc_face_normal(face_coords) - outward_dir = face_centroid - parent_centroid - - if np.dot(face_normal, outward_dir) < 0.0: - return _reverse_surface_row(face_connect) - return face_connect - - -def _normalise_surface_face_node_order( - face_connect: np.ndarray, - coords: np.ndarray, -) -> np.ndarray: - nodes_per_face = face_connect.shape[0] - face_out = np.copy(face_connect) - face_coords = coords[face_out] - - if nodes_per_face in (6, 7): - corner_inds = np.array((0, 1, 2), dtype=np.int64) - midside_pool = np.arange(3, nodes_per_face, dtype=np.int64) - edge_corner_pairs = ((0, 1), (1, 2), (2, 0)) - elif nodes_per_face in (8, 9): - corner_inds = np.array((0, 1, 2, 3), dtype=np.int64) - midside_pool = np.arange(4, nodes_per_face, dtype=np.int64) - edge_corner_pairs = ((0, 1), (1, 2), (2, 3), (3, 0)) - else: - return face_out - - face_centroid = np.mean(face_coords[corner_inds, :], axis=0) - mid_pool_coords = face_coords[midside_pool, :] - - if nodes_per_face in (7, 9): - centroid_dists = np.linalg.norm(mid_pool_coords - face_centroid, axis=1) - center_pool_ind = int(np.argmin(centroid_dists)) - center_local_ind = int(midside_pool[center_pool_ind]) - edge_pool_mask = np.ones(midside_pool.shape[0], dtype=bool) - edge_pool_mask[center_pool_ind] = False - edge_pool_local_inds = midside_pool[edge_pool_mask] - edge_pool_coords = face_coords[edge_pool_local_inds, :] - else: - center_local_ind = -1 - edge_pool_local_inds = midside_pool - edge_pool_coords = mid_pool_coords - - edge_midpoints = np.array( - [ - 0.5 * ( - face_coords[start_ind, :] + - face_coords[end_ind, :] - ) - for (start_ind, end_ind) in edge_corner_pairs - ], - dtype=np.float64, - ) - edge_dists = np.linalg.norm( - edge_pool_coords[:, None, :] - edge_midpoints[None, :, :], - axis=2, - ) - edge_order = np.argmin(edge_dists, axis=0) - reordered_edge_inds = edge_pool_local_inds[edge_order] - - if nodes_per_face == 6: - face_out[3:6] = face_out[reordered_edge_inds] - elif nodes_per_face == 7: - face_out[3:6] = face_out[reordered_edge_inds] - face_out[6] = face_out[center_local_ind] - elif nodes_per_face == 8: - face_out[4:8] = face_out[reordered_edge_inds] - elif nodes_per_face == 9: - face_out[4:8] = face_out[reordered_edge_inds] - face_out[8] = face_out[center_local_ind] - - return face_out - - -def _enforce_ccw_winding_table(connect: np.ndarray, coords: np.ndarray) -> np.ndarray: - connect_out = np.copy(connect) - for idx, row in enumerate(connect_out): - metric = _winding_metric(row, coords) - if metric is not None and metric < 0.0: - connect_out[idx, :] = _reverse_surface_row(row) - return np.ascontiguousarray(connect_out, dtype=np.int64) - - -def _enforce_cw_winding_table(connect: np.ndarray, coords: np.ndarray) -> np.ndarray: - connect_out = np.copy(connect) - for idx, row in enumerate(connect_out): - metric = _winding_metric(row, coords) - if metric is not None and metric > 0.0: - connect_out[idx, :] = _reverse_surface_row(row) - return np.ascontiguousarray(connect_out, dtype=np.int64) - - -def _enforce_right_handed_table(connect: np.ndarray, coords: np.ndarray) -> np.ndarray: - connect_out = np.copy(connect) - for idx, row in enumerate(connect_out): - metric = _handedness_metric(row, coords) - if metric is not None and metric < 0.0: - if row.shape[0] in _SURFACE_NODE_COUNTS and _is_coplanar(coords[row[_get_corner_indices(row.shape[0])]]): - connect_out[idx, :] = _reverse_surface_row(row) - else: - connect_out[idx, :] = _reverse_handedness_row(row) - return np.ascontiguousarray(connect_out, dtype=np.int64) - - -def _get_surface_map(nodes_per_elem: int) -> np.ndarray: - if nodes_per_elem == 4: # TET4 - return np.array(((0, 1, 2), - (0, 3, 1), - (0, 2, 3), - (1, 3, 2)), dtype=np.int64) - if nodes_per_elem == 8: # HEX8 - return np.array(((0, 1, 2, 3), - (0, 3, 7, 4), - (4, 7, 6, 5), - (1, 5, 6, 2), - (0, 4, 5, 1), - (2, 6, 7, 3)), dtype=np.int64) - if nodes_per_elem == 10: # TET10 - return np.array(((0, 1, 2, 4, 5, 6), - (0, 3, 1, 7, 8, 4), - (0, 2, 3, 6, 9, 7), - (1, 3, 2, 8, 9, 5)), dtype=np.int64) - if nodes_per_elem == 20: # HEX20 - return np.array(((0, 1, 2, 3, 8, 9, 10, 11), - (0, 3, 7, 4, 11, 15, 19, 16), - (4, 7, 6, 5, 15, 14, 13, 12), - (1, 5, 6, 2, 17, 13, 18, 9), - (0, 4, 5, 1, 16, 12, 17, 8), - (2, 6, 7, 3, 18, 14, 19, 10)), dtype=np.int64) - if nodes_per_elem == 27: # HEX27 - return np.array(((0, 1, 2, 3, 8, 9, 10, 11, 24), - (0, 3, 7, 4, 11, 15, 19, 16, 26), - (4, 7, 6, 5, 15, 14, 13, 12, 25), - (1, 5, 6, 2, 17, 13, 18, 9, 21), - (0, 4, 5, 1, 16, 12, 17, 8, 22), - (2, 6, 7, 3, 18, 14, 19, 10, 20)), dtype=np.int64) - raise NotImplementedError( - "Surface extraction is only implemented for tet and hex element families." - ) - - -def _extract_surface_faces_from_table( - connect: np.ndarray, - coords: np.ndarray, -) -> tuple[np.ndarray, np.ndarray]: - nodes_per_elem = connect.shape[1] - face_map = _get_surface_map(nodes_per_elem) - faces_wound = connect[:, face_map] - faces_flat_wound = faces_wound.reshape((-1, face_map.shape[1])) - faces_flat_sorted = np.sort(faces_flat_wound, axis=1) - - (_, unique_inds, unique_counts) = np.unique( - faces_flat_sorted, - axis=0, - return_index=True, - return_counts=True, - ) - ext_face_inds = unique_inds[unique_counts == 1] - ext_parent_elem_inds = np.ascontiguousarray( - ext_face_inds // face_map.shape[0], - dtype=np.int64, - ) - ext_faces = np.copy(faces_flat_wound[ext_face_inds]) - - for ff, parent_elem_ind in enumerate(ext_parent_elem_inds): - ext_faces[ff, :] = _orient_surface_face_outward( - ext_faces[ff, :], - connect[parent_elem_ind, :], - coords, - ) - ext_faces[ff, :] = _normalise_surface_face_node_order( - ext_faces[ff, :], - coords, - ) - - ext_faces = np.ascontiguousarray(ext_faces, dtype=np.int64) - return ext_faces, ext_parent_elem_inds - - -def _extract_parent_elem_inds(connect: np.ndarray) -> np.ndarray: - nodes_per_elem = connect.shape[1] - face_map = _get_surface_map(nodes_per_elem) - faces_per_elem = face_map.shape[0] - faces_wound = connect[:, face_map] - faces_flat_wound = faces_wound.reshape((-1, face_map.shape[1])) - faces_flat_sorted = np.sort(faces_flat_wound, axis=1) - - (_, unique_inds, unique_counts) = np.unique( - faces_flat_sorted, - axis=0, - return_index=True, - return_counts=True, - ) - ext_face_inds = unique_inds[unique_counts == 1] - return np.ascontiguousarray(ext_face_inds // faces_per_elem, dtype=np.int64) - - -def _restore_source_connectivity_style( - mesh_in: SimData, - *, - one_based: bool, - transposed: bool, -) -> SimData: - if mesh_in.connect is None: - return mesh_in - - connect_out: dict[str, np.ndarray] = {} - for name, connect in mesh_in.connect.items(): - connect_fmt = np.copy(connect) - if one_based: - connect_fmt = connect_fmt + 1 - if transposed: - connect_fmt = connect_fmt.T - connect_out[name] = np.ascontiguousarray(connect_fmt, dtype=np.int64) - - return _copy_sim_data(mesh_in, connect=connect_out) - - -def extract_surf_between( - mesh_in: SimData, - point: np.ndarray | list[float] | tuple[float, ...], - normal: np.ndarray | list[float] | tuple[float, ...], - distance: float | None = None, - tolerance: float = 1.0e-6, - enforce_convention: bool = True, -) -> SimData: - """Extracts a surface mesh between two planes defined by point, normal, - and distance. - - Parameters - ---------- - mesh_in : SimData - The input simulation data/mesh. - point : np.ndarray | list[float] | tuple[float, ...] - A point on the first plane. - normal : np.ndarray | list[float] | tuple[float, ...] - The normal vector of the planes. - distance : float | None, optional - The distance along the normal to the second plane. If None, the - surface is extracted at +/- tolerance about the first plane. - tolerance : float, optional - Numerical tolerance for checking if nodes lie between the planes. - Defaults to 1.0e-6. - enforce_convention : bool, optional - If True, normalizes the output mesh to the pyvale convention. - Defaults to True. - - Returns - ------- - SimData - The extracted surface mesh. - """ - if mesh_in.connect is None: - raise ValueError("Surface extraction requires connectivity tables.") - if mesh_in.coords is None: - raise ValueError("Surface extraction requires coords.") - - # Format point and normal to 3D arrays - point_arr = np.zeros(3, dtype=np.float64) - point_arr[:len(point)] = point - - normal_arr = np.zeros(3, dtype=np.float64) - normal_arr[:len(normal)] = normal - norm_val = np.linalg.norm(normal_arr) - if norm_val < _TOL: - raise ValueError("Normal vector cannot be zero.") - normal_arr = normal_arr / norm_val - - # Project coordinates along normal relative to point - diff = mesh_in.coords - point_arr - proj = diff @ normal_arr - - # Determine bounds - if distance is not None: - d = float(distance) - min_bound = min(0.0, d) - tolerance - max_bound = max(0.0, d) + tolerance - else: - min_bound = -tolerance - max_bound = tolerance - - connect_norm: dict[str, np.ndarray] = {} - source_zero_based = True - source_row_major = True - shift_all = _infer_mesh_zero_based_shift( - mesh_in, mesh_in.coords.shape[0] - ) - - for name, connect_raw in mesh_in.connect.items(): - connect = _coerce_connect_array(connect_raw, name) - if _should_transpose_connectivity(connect, name, mesh_in): - source_row_major = False - connect = connect.T - legacy_connect = _table_needs_zero_based_shift( - connect, - mesh_in.coords.shape[0], - shift_all, - ) - if legacy_connect: - source_zero_based = False - connect = connect - 1 - if not _check_indices_zero_based(connect, mesh_in.coords.shape[0]): - raise ValueError( - f"Connectivity table '{name}' contains invalid indices " - "for surface extraction." - ) - connect = _normalise_legacy_connectivity_order( - connect, legacy_connect - ) - connect_norm[name] = _enforce_right_handed_table( - _enforce_ccw_winding_table(connect, mesh_in.coords), - mesh_in.coords, - ) - - surf_connect_global: dict[str, np.ndarray] = {} - surf_elem_sources: dict[str, np.ndarray] = {} - surf_node_inds = np.array([], dtype=np.int64) - - for name, connect in connect_norm.items(): - nodes_per_elem = connect.shape[1] - is_vol = nodes_per_elem in (4, 8, 10, 20, 27) - if is_vol: - face_map = _get_surface_map(nodes_per_elem) - faces_per_elem = face_map.shape[0] - faces_wound = connect[:, face_map] - faces_flat_wound = faces_wound.reshape((-1, face_map.shape[1])) - faces_flat_sorted = np.sort(faces_flat_wound, axis=1) - - _, unique_inds = np.unique( - faces_flat_sorted, - axis=0, - return_index=True, - ) - candidate_faces = faces_flat_wound[unique_inds] - parent_inds = unique_inds // faces_per_elem - else: - candidate_faces = connect - parent_inds = np.arange(connect.shape[0], dtype=np.int64) - - if candidate_faces.size == 0: - continue - - face_projs = proj[candidate_faces] - in_bounds = np.all( - (face_projs >= min_bound) & (face_projs <= max_bound), - axis=1 - ) - - filtered_faces = candidate_faces[in_bounds] - filtered_parents = parent_inds[in_bounds] - - if filtered_faces.size > 0: - surf_connect_global[name] = filtered_faces - surf_elem_sources[name] = filtered_parents - surf_node_inds = np.union1d( - surf_node_inds, np.unique(filtered_faces) - ) - - if len(surf_connect_global) == 0 or surf_node_inds.size == 0: - raise ValueError( - "No elements/faces found between the specified planes." - ) - - surf_coords = np.ascontiguousarray( - mesh_in.coords[surf_node_inds], - dtype=mesh_in.coords.dtype - ) - coord_remap = np.full(mesh_in.coords.shape[0], -1, dtype=np.int64) - coord_remap[surf_node_inds] = np.arange( - surf_node_inds.shape[0], dtype=np.int64 - ) - - surf_connect_local: dict[str, np.ndarray] = {} - for name, surf_faces in surf_connect_global.items(): - surf_connect_local[name] = coord_remap[surf_faces] - - surf_mesh = _copy_sim_data(mesh_in) - surf_mesh.coords = surf_coords - surf_mesh.connect = surf_connect_local - surf_mesh.side_sets = None - - if mesh_in.node_vars is not None: - surf_mesh.node_vars = { - name: values[surf_node_inds, :] - for name, values in mesh_in.node_vars.items() - } - - if mesh_in.elem_vars is not None: - surf_mesh.elem_vars = {} - for (var_name, block_id), values in mesh_in.elem_vars.items(): - connect_key = f"connect{block_id}" - if connect_key in surf_elem_sources: - surf_mesh.elem_vars[(var_name, block_id)] = values[ - surf_elem_sources[connect_key], : - ] - - if not enforce_convention: - surf_mesh = _restore_source_connectivity_style( - surf_mesh, - one_based=not source_zero_based, - transposed=not source_row_major, - ) - return surf_mesh - - return enforce_mesh_convention(surf_mesh) diff --git a/src/pyvale/dataio/simdata.py b/src/pyvale/dataio/simdata.py index 69fff1d0c..2dfbb83df 100644 --- a/src/pyvale/dataio/simdata.py +++ b/src/pyvale/dataio/simdata.py @@ -6,9 +6,17 @@ from dataclasses import dataclass from collections.abc import Iterable +from enum import Enum import numpy as np +class EMeshType(Enum): + """Topological class of a finite-element mesh.""" + + VOL = "volume" + SURF = "surface" + + @dataclass(slots=True) class SimData: """Data class for simulation output. Allows for structured meshes with @@ -20,6 +28,15 @@ class SimData: 1D simulations using any combination of the [x,y,z] axes. """ + mesh_type: EMeshType | None = None + """Whether connectivity describes volume cells or surface elements. + + ``None`` is retained for point clouds and partially populated objects. + When coordinates and connectivity are supplied to the constructor, this is + inferred geometrically. Call :meth:`refresh_mesh_type` after assigning + either field later. + """ + time: np.ndarray | None = None """ Vector of time steps with dimensions [t]. Defaults to None. """ @@ -76,6 +93,29 @@ class SimData: Defaults to None. """ + def __post_init__(self) -> None: + if self.mesh_type is None and self.coords is not None: + if self.connect is not None: + self.refresh_mesh_type() + + def refresh_mesh_type(self) -> None: + """Infer and store the mesh type from the current mesh geometry.""" + if self.coords is None or self.connect is None: + self.mesh_type = None + return + + # Deferred import avoids a module cycle: meshconv operates on SimData. + from pyvale.dataio.meshconv import is_volume_mesh + + try: + self.mesh_type = ( + EMeshType.VOL if is_volume_mesh(self) else EMeshType.SURF + ) + except (NotImplementedError, ValueError): + # Preserve construction of malformed or unsupported meshes so the + # convention tools can provide their targeted diagnostic later. + self.mesh_type = None + @dataclass(slots=True) class SimLoadConfig: """Used to specify names of variables to be read into the SimData class. diff --git a/src/pyvale/dataio/simloaderbyfield.py b/src/pyvale/dataio/simloaderbyfield.py index fd6e70fc1..5d5208cad 100644 --- a/src/pyvale/dataio/simloaderbyfield.py +++ b/src/pyvale/dataio/simloaderbyfield.py @@ -9,7 +9,7 @@ import numpy as np import pandas as pd from pyvale.dataio.simdata import SimData, SimLoadConfig -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.dataio.loadtools import (str_to_path, load_array, load_connectivity, @@ -196,6 +196,8 @@ def load_sim_data(self, load_config: SimLoadConfig) -> SimData: and sim_data.coords is not None): sim_data = enforce_mesh_convention(sim_data) + sim_data.refresh_mesh_type() + return sim_data diff --git a/src/pyvale/dataio/simloaderbytime.py b/src/pyvale/dataio/simloaderbytime.py index a83d671c4..97a05be61 100644 --- a/src/pyvale/dataio/simloaderbytime.py +++ b/src/pyvale/dataio/simloaderbytime.py @@ -9,7 +9,7 @@ import numpy as np import pandas as pd from pyvale.dataio.simdata import SimData, SimLoadConfig -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.dataio.loadtools import (str_to_path, load_array, load_connectivity, @@ -178,6 +178,8 @@ def load_sim_data(self, load_config: SimLoadConfig) -> SimData: and sim_data.coords is not None): sim_data = enforce_mesh_convention(sim_data) + sim_data.refresh_mesh_type() + return sim_data diff --git a/src/pyvale/dataset/__init__.py b/src/pyvale/dataset/__init__.py deleted file mode 100644 index ddf6650a1..000000000 --- a/src/pyvale/dataset/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== - -from .dataset import * \ No newline at end of file diff --git a/src/pyvale/dic/cpp/diccoursefine.hpp b/src/pyvale/dic/cpp/diccoursefine.hpp deleted file mode 100644 index bf5e67f12..000000000 --- a/src/pyvale/dic/cpp/diccoursefine.hpp +++ /dev/null @@ -1,45 +0,0 @@ -// ================================================================================ -// pyvale: the python validation engine -// License: MIT -// Copyright (C) 2025 The Computer Aided Validation Team -// ================================================================================ - -#ifndef DICCOARSEFINE_H -#define DICCOARSEFINE_H - -#include -#include - -namespace coarsefine { - - // Downsample an image by factor 2 using simple averaging - std::vector downsample(const double* img, int width, int height); - - // Extract a subset patch centered at (cx, cy) from an image of given width - // Returns false if the patch would go out of bounds - bool extract_subset(const double* img, int img_w, int img_h, - int cx, int cy, int ss_size, - std::vector& patch); - - struct CoarseToFineResult { - double disp_x = 0.0; - double disp_y = 0.0; - double peak_val = 0.0; - bool success = false; - }; - - CoarseToFineResult coarse_to_fine_search( - const double* img_ref, - const double* img_def, - int img_w, - int img_h, - int center_x, // subset center in the reference image - int center_y, - int ss_size, // subset size at full resolution (e.g. 51) - int max_displacement, // max displacement at full resolution (e.g. 1000) - bool subpx = true, - const std::string& peak_method = "GAUSSIAN_2D" - ); - -} -#endif // DICCOARSEFINE_H diff --git a/src/pyvale/dic/dic3d.py b/src/pyvale/dic/dic3d.py index acc5b51c1..756454eb6 100644 --- a/src/pyvale/dic/dic3d.py +++ b/src/pyvale/dic/dic3d.py @@ -106,16 +106,16 @@ def calculate_3d(reference: list[np.ndarray] | list[str] | list[Path], Options include: * ``"MULTIWINDOW_RG"``: Multi-window Reliability-Guided DIC - (best overall approach). + (best overall approach). * ``"SINGLEWINDOW_RG"``: Uses a single window for the rigid estimate - for each subset. The size of the window is determined by the - ``max_displacement`` parameter. + for each subset. The size of the window is determined by the + ``max_displacement`` parameter. * ``"MULTIWINDOW"``: Uses only the multi-window FFT strategy. * ``"RASTER"``: No FFT initialization. Performs a raster scan of - the image. + the image. incremental : bool, optional If True, then references images will be updated depending on the diff --git a/src/pyvale/examples/basicsensorsim/ex0_quickstart.py b/src/pyvale/examples/basicsensorsim/ex0_quickstart.py index c8ce1d21f..59c64c516 100644 --- a/src/pyvale/examples/basicsensorsim/ex0_quickstart.py +++ b/src/pyvale/examples/basicsensorsim/ex0_quickstart.py @@ -31,7 +31,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/basicsensorsim/ex1_scalar_sensors.py b/src/pyvale/examples/basicsensorsim/ex1_scalar_sensors.py index f0e2b41e9..355466584 100644 --- a/src/pyvale/examples/basicsensorsim/ex1_scalar_sensors.py +++ b/src/pyvale/examples/basicsensorsim/ex1_scalar_sensors.py @@ -43,14 +43,14 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data # ------------------------------- # Here we load a MOOSE finite element simulation dataset that comes packaged -# with `pyvale` in exodus (*.e) format. `pyvale` loads simulations into a +# with `pyvale` in exodus (``*.e``) format. `pyvale` loads simulations into a # `SimData` object which contains the nodal coordinates, simulation time steps, # the nodal physics variables and optionally the element connectivity tables. # @@ -66,7 +66,7 @@ #%% # .. note:: -# You can load your own exodus (*.e) file here by changing the path or you can +# You can load your own exodus (``*.e``) file here by changing the path or you can # load your own simulation data from delimited plain text files or numpy npy # files. See the advanced example 'Bring your own simulation data'. @@ -136,7 +136,7 @@ # are resampled. However, if we call `.get_measurements()` then we are returned # the previously simulated values. Throughout `pyvale` methods prefixed with # `get` can be expected to return previous values if they exist whereas `sim` -# or `calc `methods will actually perform a simulation or calculation. +# or `calc` methods will actually perform a simulation or calculation. measurements: np.ndarray = sens_array.sim_measurements() truth: np.ndarray = sens_array.get_truth() diff --git a/src/pyvale/examples/basicsensorsim/ex2_vector_tensor_sensors.py b/src/pyvale/examples/basicsensorsim/ex2_vector_tensor_sensors.py index 2d003f274..dbd55d585 100644 --- a/src/pyvale/examples/basicsensorsim/ex2_vector_tensor_sensors.py +++ b/src/pyvale/examples/basicsensorsim/ex2_vector_tensor_sensors.py @@ -26,13 +26,13 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data # ------------------------------- # As we did in the last example we load a finite element simulation dataset that -# comes packaged with `pyvale` in exodus (*.e) format. We also convert the +# comes packaged with `pyvale` in exodus (``*.e``) format. We also convert the # length units of our simulation from meters to milli-meters as our # visualisation tools are based on unit scaling by default. diff --git a/src/pyvale/examples/basicsensorsim/ex3_experiment_simulator.py b/src/pyvale/examples/basicsensorsim/ex3_experiment_simulator.py index 3ef1dc645..0033f374c 100644 --- a/src/pyvale/examples/basicsensorsim/ex3_experiment_simulator.py +++ b/src/pyvale/examples/basicsensorsim/ex3_experiment_simulator.py @@ -20,7 +20,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/blenderimagedef/ex1_blender_scene2d.py b/src/pyvale/examples/blenderimagedef/ex1_blender_scene2d.py deleted file mode 100644 index 56481e40d..000000000 --- a/src/pyvale/examples/blenderimagedef/ex1_blender_scene2d.py +++ /dev/null @@ -1,176 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -Creating a scene for 2D DIC ---------------------------------------------- - -This example takes you through creating a scene and adding all the necessary -objects required to represent a 2D DIC setup (camera, lighting and sample). -This example will then show you how to render a single image of this scene. - -Test case: mechanical analysis of a plate with a hole loaded in tension. -""" - -import numpy as np -from scipy.spatial.transform import Rotation -from pathlib import Path - -#pyvale modules -import pyvale.sensorsim as sens -import pyvale.dataset as dataset -import pyvale.blender as blender -import pyvale.mooseherder as mh - -# %% -# Here we load in a pre-generated MOOSE finite element simulation dataset that -# comes packaged with pyvale. The simulation is purely mechanical test case in -# 3D of a plate with a hole loaded in tension. A mentioned in previous examples, -# this path can be replaced with your own MOOSE simulation output in exodus -# format (*.e). `mooseherder` is then used to convert the simulation output -# into a `SimData` object. - -data_path = dataset.render_mechanical_3d_path() -sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - -# %% -# This is then scaled to mm, as all lengths in Blender are to be set in mm. -# The `SimData` object is then converted into a `RenderMeshData` object, as -# this skins the mesh ready to be imported into Blender. The `disp_keys` are -# the expected direction of displacement. Since this is a 3D deformation test -# case, displacement is expected in the x, y and z directions. -disp_keys = ("disp_x","disp_y", "disp_z") -sim_data = sens.scale_length_units(scale=1000.0, - sim_data=sim_data, - disp_keys=disp_keys) - -render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=sens.EDim.THREED, - field_disp_keys=disp_keys) - -# %% -# We create our standard pyvale-output directory here so we can save the our -# rendered images to this location. All rendered images will be saved to -# Firstly, a save path must be set. -# In order to do this a base path must be set. Then all the generated files will -# be saved to a subfolder within this specified base directory -# (e.g. blenderimages). -# If no base directory is specified, it will be set as your home directory. - -base_dir = Path.cwd() / "pyvale-output" -if not base_dir.is_dir(): - base_dir.mkdir(parents=True, exist_ok=True) - -# %% -# Creating the scene -# ^^^^^^^^^^^^^^^^^^ -# In order to create a DIC setup in Blender, first a scene must be created. -# A scene is a holding space for all of your objects (e.g. camera(s), light(s) -# and sample(s)). -# A scene is initialised using the `blender.Scene` class. All the subsequent -# objects and actions necessary are then methods of this class. - -scene = blender.Scene() - -# %% -# The next thing that can be added to the scene is a sample. -# This is done by passing in the `RenderMeshData` object. -# It should be noted that the mesh will be centred on the origin to allow for -# the cameras to be centred on the mesh. -# Once the part is added to the Blender scene, it can be both moved and rotated. - -part = scene.add_part(render_mesh, sim_spat_dim=3) -# Set the part location -part_location = np.array([0, 0, 0]) -blender.Tools.move_blender_obj(part=part, pos_world=part_location) -# Set part rotation -part_rotation = Rotation.from_euler("xyz", [0, 0, 0], degrees=True) -blender.Tools.rotate_blender_obj(part=part, rot_world=part_rotation) - -# %% -# A camera can then be added to the scene. -# To initialise a camera, the camera parameters must be specified using the -# `CameraData` dataclass. Note that all lengths / distances inputted are in mm. -# This camera can then be added to the Blender scene. -# The camera can also be moved and rotated. - -cam_data = sens.CameraData(pixels_num=np.array([1540, 1040]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15.0) -camera = scene.add_camera(cam_data) -camera.location = (0, 0, 410) -camera.rotation_euler = (0, 0, 0) # NOTE: The default is an XYZ Euler angle - -# %% -# A light can the be added to the scene. -# Blender offers different light types: Point, Sun, Spot and Area. -# The light can also be moved and rotated like the camera. - -light_data = blender.LightData(type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", - [0, 0, 0]), - energy=1) -light = scene.add_light(light_data) -light.location = (0, 0, 410) -light.rotation_euler = (0, 0, 0) - -# %% -# A speckle pattern can then be applied to the sample. -# Firstly, the material properties of the sample must be specified, but these -# will all be defaulted if no inputs are provided. -#The speckle pattern can then be specified by providing a path to an image file -# with the pattern. -# The mm/px resolution of the camera must also be specified in order to -# correctly scale the speckle pattern. -# It should be noted that for a bigger camera or sample you may need to generate -# a larger speckle pattern. - -material_data = blender.MaterialData() -speckle_path = dataset.dic_pattern_5mpx_path() - -mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) -scene.add_speckle(part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution) - -# %% -# Rendering an image -# ^^^^^^^^^^^^^^^^^^ -# Once all the objects have been added to the scene, an image can be rendered. -# Firstly, all the rendering parameters must be set, including parameters such as -# the number of threads to use. - -render_data = blender.RenderData(cam_data=cam_data, - base_dir=base_dir, - dir_name="blender-scene", - threads=8) - -# %% -# A single image of the scene can then be rendered. -# If `stage_image` is set to True, the image will be saved to disk, converted to -# an array, deleted and the image array will be returned. This is due to the -# fact that an image cannot be saved directly as an array through Blender. - -scene.render_single_image(stage_image=False, - render_data=render_data) - -# %% -# The rendered image will be saved to this filepath: - -print("Save directory of the image:", (render_data.base_dir / render_data.dir_name)) - -# %% -# There is also the option to save the scene as a Blender project file. -# This file can be opened with the Blender GUI to view the scene. - -blender.Tools.save_blender_file(base_dir=base_dir,over_write=True) - diff --git a/src/pyvale/examples/blenderimagedef/ex2_blender_imagedef2d.py b/src/pyvale/examples/blenderimagedef/ex2_blender_imagedef2d.py deleted file mode 100644 index 909d4c528..000000000 --- a/src/pyvale/examples/blenderimagedef/ex2_blender_imagedef2d.py +++ /dev/null @@ -1,177 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -Deforming a sample for 2D DIC -=============================================== - -This example follows a similar workflow to the previous Blender example. -In this example, a deformation is applied to sample, and images are rendered at -each timestep. - -Test case: mechanical analysis of a plate with a hole loaded in tension. -""" - -import numpy as np -from scipy.spatial.transform import Rotation -from pathlib import Path - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.dataset as dataset -import pyvale.blender as blender -import pyvale.mooseherder as mh - -# %% -# The simulation results are loaded in here in the same way as the previous -# example. As mentioned this `data_path` can be replaced with your own MOOSE -# simulation output in exodus format (*.e). - -data_path = dataset.render_mechanical_3d_path() -sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - -# %% -# This is then scaled to mm, as all lengths in Blender are to be set in mm. -# The `SimData` object is then converted into a `RenderMeshData` object, as -# this skins the mesh ready to be imported into Blender. -# The `disp_comps` are the expected direction of displacement. Since this is a -# 3D deformation test case, displacement is expected in the x, y and z directions. - -disp_comps = ("disp_x","disp_y", "disp_z") -sim_data = sens.scale_length_units(scale=1000.0, - sim_data=sim_data, - disp_keys=disp_comps) - -render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=sens.EDim.THREED, - field_disp_keys=disp_comps) - -# %% -# Firstly, a save path must be set. -# In order to do this a base path must be set. Then all the generated files will -# be saved to a subfolder within this specified base directory -# (e.g. blenderimages). -# If no base directory is specified, it will be set as your home directory. - -base_dir = Path.cwd() / "pyvale-output" -if not base_dir.is_dir(): - base_dir.mkdir(parents=True, exist_ok=True) - -# %% -# Creating the scene -# ^^^^^^^^^^^^^^^^^^ -# In order to create a DIC setup in Blender, first a scene must be created. -# A scene is initialised using the `BlenderScene` class. All the subsequent -# objects and actions necessary are then methods of this class. - -scene = blender.Scene() - -# %% -# The next thing that can be added to the scene is a sample. -# This is done by passing in the `RenderMeshData` object. -# It should be noted that the mesh will be centred on the origin to allow for -# the cameras to be centred on the mesh. -# Once the part is added to the Blender scene, it can be both moved and rotated. - - -part = scene.add_part(render_mesh, sim_spat_dim=3) -# Set the part location -part_location = np.array([0, 0, 0]) -blender.Tools.move_blender_obj(part=part, pos_world=part_location) -part_rotation = Rotation.from_euler("xyz", [0, 0, 0], degrees=True) -blender.Tools.rotate_blender_obj(part=part, rot_world=part_rotation) - -# %% -# A camera can then be added to the scene. -# To initialise a camera, the camera parameters must be specified using the -# `CameraData` dataclass. Note that all lengths / distances inputted are in mm. -# This camera can then be added to the Blender scene. -# The camera can also be moved and rotated. - -cam_data = sens.CameraData(pixels_num=np.array([1540, 1040]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15.0) -camera = scene.add_camera(cam_data) -camera.location = (0, 0, 410) -camera.rotation_euler = (0, 0, 0) # NOTE: The default is an XYZ Euler angle - -# %% -# A light can the be added to the scene. -# Blender offers different light types: Point, Sun, Spot and Area. -# The light can also be moved and rotated like the camera. - -light_data = blender.LightData(type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", - [0, 0, 0]), - energy=1) -light = scene.add_light(light_data) -light.location = (0, 0, 410) -light.rotation_euler = (0, 0, 0) - -# %% -# A speckle pattern can then be applied to the sample. -# Firstly, the material properties of the sample must be specified, but these -# will all be defaulted if no inputs are provided. -#The speckle pattern can then be specified by providing a path to an image file -# with the pattern. -# The mm/px resolution of the camera must also be specified in order to -# correctly scale the speckle pattern. -# It should be noted that for a bigger camera or sample you may need to generate -# a larger speckle pattern. - -material_data = blender.MaterialData() -speckle_path = dataset.dic_pattern_5mpx_path() -mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) -scene.add_speckle(part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution) - -# %% -# Deforming the sample and rendering images -# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -# Once all the objects have been added to the scene, the sample can be deformed, -# and images can be rendered. -# Firstly, all the rendering parameters must be set, including parameters such as -# the number of threads to use. - -render_data = blender.RenderData(cam_data=cam_data, - base_dir=base_dir, - dir_name="blender-def", - threads=8) - -# %% -# A series of deformed images can then be rendered. -# This is done by passing in rendering parameters, as well as the -# `RenderMeshData` object, the part(sample) and the spatial dimension of the -# simulation. -# This will automatically deform the sample, and render subsequent images at -# each deformation timestep. -# If `stage_image` is set to True, the image will be saved to disk, converted to -# an array, deleted and the image array will be returned. This is due to the -# fact that an image cannot be saved directly as an array through Blender. - -scene.render_deformed_images(render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=False) - -# %% -# The rendered image will be saved to this filepath: - -print("Save directory of the image:", (render_data.base_dir / render_data.dir_name)) - -# %% -# There is also the option to save the scene as a Blender project file. -# This file can be opened with the Blender GUI to view the scene. - -blender.Tools.save_blender_file(base_dir=base_dir,over_write=True) diff --git a/src/pyvale/examples/blenderimagedef/ex3_blender_scenestereo.py b/src/pyvale/examples/blenderimagedef/ex3_blender_scenestereo.py deleted file mode 100644 index 387cfc0a8..000000000 --- a/src/pyvale/examples/blenderimagedef/ex3_blender_scenestereo.py +++ /dev/null @@ -1,205 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -Creating a scene for stereo DIC -------------------------------------------------- - -This example takes you through creating a scene and adding all the necessary -objects required to represent a stereo DIC setup (two cameras, lighting and -sample). This example will then show you how to render a static image of this -scene. - -Test case: mechanical analysis of a plate with a hole loaded in tension. -""" -import numpy as np -from scipy.spatial.transform import Rotation -from pathlib import Path - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.dataset as dataset -import pyvale.blender as blender -import pyvale.mooseherder as mh - -# %% -# The simulation results are loaded in here in the same way as the previous -# example. As mentioned this `data_path` can be replaced with your own MOOSE -# simulation output in exodus format (*.e). - -data_path = dataset.render_mechanical_3d_path() -sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - -# %% -# This is then scaled to mm, as all lengths in Blender are to be set in mm. -# The `SimData` object is then converted into a `RenderMeshData` object, as -# this skins the mesh ready to be imported into Blender. -# The `disp_comps` are the expected direction of displacement. Since this is a -# 3D deformation test case, displacement is expected in the x, y and z directions. - -disp_comps = ("disp_x","disp_y", "disp_z") -sim_data = sens.scale_length_units(scale=1000.0, - sim_data=sim_data, - disp_keys=disp_comps) - -render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=sens.EDim.THREED, - field_disp_keys=disp_comps) - -# %% -# Firstly, a save path must be set. -# In order to do this a base path must be set. Then all the generated files will -# be saved to a subfolder within this specified base directory -# (e.g. blenderimages). -# If no base directory is specified, it will be set as your home directory. - -base_dir = Path.cwd() / "pyvale-output" -if not base_dir.is_dir(): - base_dir.mkdir(parents=True, exist_ok=True) - -# %% -# Creating the scene -# ^^^^^^^^^^^^^^^^^^ -# In order to create a DIC setup in Blender, first a scene must be created. -# A scene is initialised using the `blender.Scene` class. All the subsequent -# objects and actions necessary are then methods of this class. -scene = blender.Scene() - -# %% -# The next thing that can be added to the scene is a sample. -# This is done by passing in the `RenderMeshData` object. -# It should be noted that the mesh will be centred on the origin to allow for -# the cameras to be centred on the mesh. -# Once the part is added to the Blender scene, it can be both moved and rotated. - -part = scene.add_part(render_mesh, sim_spat_dim=3) -# Set the part location -part_location = np.array([0, 0, 0]) -blender.Tools.move_blender_obj(part=part, pos_world=part_location) -# Set part rotation -part_rotation = Rotation.from_euler("xyz", [0, 0, 0], degrees=True) -blender.Tools.rotate_blender_obj(part=part, rot_world=part_rotation) - -# %% -# The cameras can then be initialised. A stereo camera system is defined by a -# `CameraStereo` object, which contains the intrinsic parameters of both cameras -# as well as the extrinsic parameters between them. -# There are two ways to initialise a `CameraStereo` object. -# One way is to specify the camera parameters separately for each camera, create -# a `CameraStereo` object, and then add the stereo system using the -# `add_stereo_system` method. -# The other method is to use a convenience function, as shown below. -# This requires you to first initialise one camera. Then you can choose between -# either a face-on or symmetric stereo system. Then, either of the -# `symmetric_stereo_cameras` or `faceon_stereo_cameras` functions can be used to -# initialise a `CameraStereo` object. The only input required to these functions -# are the camera parameters for the first camera, and the desired stereo angle -# between the two. The cameras can then be added to the Blender scene using the -# `add_stereo_system` method. - -cam_data_0 = sens.CameraData(pixels_num=np.array([1540, 1040]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=np.array([0, 0, 400]), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15.0) -# Set this to "symmetric" to get a symmetric stereo system or set this to -# "faceon" to get a face-on stereo system -stereo_setup = "faceon" -if stereo_setup == "symmetric": - stereo_system = sens.CameraTools.symmetric_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -elif stereo_setup == "faceon": - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -else: - raise ValueError(f"Unknown stereo_setup: {stereo_setup}") - -cam0, cam1 = scene.add_stereo_system(stereo_system) - -# %% -# Since this scene contains a stereo DIC system, a calibration file will be -# required to run the images through a DIC engine. -# A calibration file can be generated directly from the `CameraStereo` object. -# The calibration file will be saved in `YAML` format. However, if you wish to -# use MatchID to process the images, `save_calibration_mid` can be used instead -# to save the calibration in a format readable by MatchID. -# The calibration file will be saved to a sub-directory of the base directory -# called "calibration". -stereo_system.save_calibration(base_dir) - -# %% -# A light can the be added to the scene. -# Blender offers different light types: Point, Sun, Spot and Area. -# The light can also be moved and rotated like the camera. - -light_data = blender.LightData(type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", - [0, 0, 0]), - energy=1) -light = scene.add_light(light_data) -light.location = (0, 0, 410) -light.rotation_euler = (0, 0, 0) # NOTE: The default is an XYZ Euler angle - -# %% -# A speckle pattern can then be applied to the sample. -# Firstly, the material properties of the sample must be specified, but these -# will all be defaulted if no inputs are provided. -#The speckle pattern can then be specified by providing a path to an image file -# with the pattern. -# The mm/px resolution of the camera must also be specified in order to -# correctly scale the speckle pattern. -# It should be noted that for a bigger camera or sample you may need to generate -# a larger speckle pattern. - -material_data = blender.MaterialData() -speckle_path = dataset.dic_pattern_5mpx_path() - -mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data_0) -scene.add_speckle(part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution) - -# %% -# Rendering a set of images -# ^^^^^^^^^^^^^^^^^^^^^^^^^ -# Once all the objects have been added to the scene, a set of images can be -# rendered.Firstly, all the rendering parameters must be set, including -# parameters such as the number of threads to use. -# Differently to a 2D DIC system, both cameras' parameters must be specified in -# the `RenderData` object. - -render_data = blender.RenderData(cam_data=(stereo_system.cam_data_0, - stereo_system.cam_data_1), - base_dir=base_dir, - dir_name="blender-stereo-scene", - threads=8) - -# %% -# A single set of images of the scene can then be rendered. -# This will render a single image from each of the cameras. -# If `stage_image` is set to True, the image will be saved to disk, converted to -# an array, deleted and the image array will be returned. This is due to the -# fact that an image cannot be saved directly as an array through Blender. - -scene.render_single_image(stage_image=False, - render_data=render_data) - -# %% -# The rendered images will be saved to this filepath: - -print("Save directory of the image:", (render_data.base_dir / render_data.dir_name)) - -# %% -# There is also the option to save the scene as a Blender project file. -# This file can be opened with the Blender GUI to view the scene. - -blender.Tools.save_blender_file(base_dir=base_dir,over_write=True) diff --git a/src/pyvale/examples/blenderimagedef/ex4_blender_imagedefstereo.py b/src/pyvale/examples/blenderimagedef/ex4_blender_imagedefstereo.py deleted file mode 100644 index 3a8cfdc67..000000000 --- a/src/pyvale/examples/blenderimagedef/ex4_blender_imagedefstereo.py +++ /dev/null @@ -1,213 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -Deforming a sample for stereo DIC -=================================================== - -This example takes you through creating stereo DIC scene, applying deformation -to the sample, and rendering images at each deformation timestep. - -Test case: mechanical analysis of a plate with a hole loaded in tension. -""" - -import numpy as np -from scipy.spatial.transform import Rotation -from pathlib import Path - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.dataset as dataset -import pyvale.blender as blender -import pyvale.mooseherder as mh - -# %% -# The simulation results are loaded in here in the same way as the previous -# example. As mentioned this `data_path` can be replaced with your own MOOSE -# simulation output in exodus format (*.e). - -data_path = dataset.render_mechanical_3d_path() -sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - -# %% -# This is then scaled to mm, as all lengths in Blender are to be set in mm. -# The `SimData` object is then converted into a `RenderMeshData` object, as -# this skins the mesh ready to be imported into Blender. -# The `disp_comps` are the expected direction of displacement. Since this is a -# 3D deformation test case, displacement is expected in the x, y and z directions. - -disp_comps = ("disp_x","disp_y", "disp_z") -sim_data = sens.scale_length_units(scale=1000.0, - sim_data=sim_data, - disp_keys=disp_comps) - -render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=sens.EDim.THREED, - field_disp_keys=disp_comps) - -# %% -# Firstly, a save path must be set. -# In order to do this a base path must be set. Then all the generated files will -# be saved to a subfolder within this specified base directory -# (e.g. blenderimages). -# If no base directory is specified, it will be set as your home directory. - -base_dir = Path.cwd() / "pyvale-output" -if not base_dir.is_dir(): - base_dir.mkdir(parents=True, exist_ok=True) - -# %% -# Creating the scene -# ^^^^^^^^^^^^^^^^^^ -# In order to create a DIC setup in Blender, first a scene must be created. -# A scene is initialised using the `BlenderScene` class. All the subsequent -# objects and actions necessary are then methods of this class. -scene = blender.Scene() - -# %% -# The next thing that can be added to the scene is a sample. -# This is done by passing in the `RenderMeshData` object. -# It should be noted that the mesh will be centred on the origin to allow for -# the cameras to be centred on the mesh. -# Once the part is added to the Blender scene, it can be both moved and rotated. - -part = scene.add_part(render_mesh, sim_spat_dim=3) -# Set the part location -part_location = np.array([0, 0, 0]) -blender.Tools.move_blender_obj(part=part, pos_world=part_location) -# Set part rotation -part_rotation = Rotation.from_euler("xyz", [0, 0, 0], degrees=True) -blender.Tools.rotate_blender_obj(part=part, rot_world=part_rotation) - -# %% -# The cameras can then be initialised. A stereo camera system is defined by a -# `CameraStereo` object, which contains the intrinsic parameters of both cameras -# as well as the extrinsic parameters between them. -# There are two ways to initialise a `CameraStereo` object. -# One way is to specify the camera parameters separately for each camera, create -# a `CameraStereo` object, and then add the stereo system using the -# `add_stereo_system` method. -# The other method is to use a convenience function, as shown below. -# This requires you to first initialise one camera. Then you can choose between -# either a face-on or symmetric stereo system. Then, either of the -# `symmetric_stereo_cameras` or `faceon_stereo_cameras` functions can be used to -# initialise a `CameraStereo` object. The only input required to these functions -# are the camera parameters for the first camera, and the desired stereo angle -# between the two. The cameras can then be added to the Blender scene using the -# `add_stereo_system` method. - -cam_data_0 = sens.CameraData(pixels_num=np.array([1540, 1040]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=np.array([0, 0, 400]), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15.0) -# Set this to "symmetric" to get a symmetric stereo system or set this to -# "faceon" to get a face-on stereo system -stereo_setup = "faceon" -if stereo_setup == "symmetric": - stereo_system = sens.CameraTools.symmetric_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -elif stereo_setup == "faceon": - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -else: - raise ValueError(f"Unknown stereo_setup: {stereo_setup}") - -cam0, cam1 = scene.add_stereo_system(stereo_system) - -# %% -# Since this scene contains a stereo DIC system, a calibration file will be -# required to run the images through a DIC engine. -# A calibration file can be generated directly from the `CameraStereo` object. -# The calibration file will be saved in `YAML` format. However, if you wish to -# use MatchID to process the images, `save_calibration_mid` can be used instead -# to save the calibration in a format readable by MatchID. -# The calibration file will be saved to a sub-directory of the base directory -# called "calibration". -stereo_system.save_calibration(base_dir) - -# %% -# A light can the be added to the scene. -# Blender offers different light types: Point, Sun, Spot and Area. -# The light can also be moved and rotated like the camera. -light_data = blender.LightData(type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", - [0, 0, 0]), - energy=1) -light = scene.add_light(light_data) -light.location = (0, 0, 410) -light.rotation_euler = (0, 0, 0) # NOTE: The default is an XYZ Euler angle - -# Apply the speckle pattern -material_data = blender.MaterialData() -speckle_path = dataset.dic_pattern_5mpx_path() -# NOTE: If you wish to use a bigger camera, you will need to generate a -# bigger speckle pattern generator - -# %% -# A speckle pattern can then be applied to the sample. -# Firstly, the material properties of the sample must be specified, but these -# will all be defaulted if no inputs are provided. -#The speckle pattern can then be specified by providing a path to an image file -# with the pattern. -# The mm/px resolution of the camera must also be specified in order to -# correctly scale the speckle pattern. -# It should be noted that for a bigger camera or sample you may need to generate -# a larger speckle pattern. - -mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data_0) -scene.add_speckle(part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution) - -# %% -# Deforming the sample and rendering images -# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -# Once all the objects have been added to the scene, the sample can be deformed, -# and images can be rendered. -# Firstly, all the rendering parameters must be set, including parameters such as -# the number of threads to use. -# Differently to a 2D DIC system, both cameras' parameters must be specified in -# the `RenderData` object. -render_data = blender.RenderData(cam_data=(stereo_system.cam_data_0, - stereo_system.cam_data_1), - base_dir=base_dir, - dir_name="blender-stereo-def", - threads=8) - -# %% -# A series of deformed images can then be rendered. -# This is done by passing in rendering parameters, as well as the -# `RenderMeshData` object, the part(sample) and the spatial dimension of the -# simulation. -# This will automatically deform the sample, and render images from each camera -# at each deformation timestep. -# If `stage_image` is set to True, the image will be saved to disk, converted to -# an array, deleted and the image array will be returned. This is due to the -# fact that an image cannot be saved directly as an array through Blender. - -scene.render_deformed_images(render_mesh=render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=False) - -# %% -# The rendered image will be saved to this filepath: - -print("Save directory of the image:", (render_data.base_dir / render_data.dir_name)) - -# %% -# There is also the option to save the scene as a Blender project file. -# This file can be opened with the Blender GUI to view the scene. - -blender.Tools.save_blender_file(base_dir=base_dir,over_write=True) diff --git a/src/pyvale/examples/blenderimagedef/ex5_blender_calibstereo.py b/src/pyvale/examples/blenderimagedef/ex5_blender_calibstereo.py deleted file mode 100644 index 44860074a..000000000 --- a/src/pyvale/examples/blenderimagedef/ex5_blender_calibstereo.py +++ /dev/null @@ -1,190 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -Rendering calibration images ---------------------------------------------- - -This example takes you through how to render calibration images for a given DIC -setup using in-built tools for calibration target generation. - -Note that this example produces a significant number of images and will take a -long time to run. -""" -import numpy as np -from scipy.spatial.transform import Rotation -from pathlib import Path - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.blender as blender -import pyvale.dataset as dataset - -# %% -# Firstly, a save path must be set. -# In order to do this a base path must be set. Then all the generated files will -# be saved to a subfolder within this specified base directory -# (e.g. blenderimages). -# If no base directory is specified, it will be set as your home directory. - -base_dir = Path.cwd() / "pyvale-output" / "blender-calib" -if not base_dir.is_dir(): - base_dir.mkdir(parents=True, exist_ok=True) - - - -# %% -# Creating the scene -# ^^^^^^^^^^^^^^^^^^ -# In order to create a DIC setup in Blender, first a scene must be created. -# A scene is initialised using the `BlenderScene` class. All the subsequent -# objects and actions necessary are then methods of this class. -scene = blender.Scene() - -# %% -# The next thing to add to the scene is the calibration target. -# This is done by specifing the size of calibration target to add to the scene -# by passing in an array of (width, height, depth). -# The calibration target being simulated here is 12 x 9 with 10 mm spacing. - -target = scene.add_cal_target(target_size=np.array([150, 100, 10])) - -# %% -# The cameras can then be initialised. A stereo camera system is defined by a -# `CameraStereo` object, which contains the intrinsic parameters of both cameras -# as well as the extrinsic parameters between them. -# There are two ways to initialise a `CameraStereo` object. -# One way is to specify the camera parameters separately for each camera, create -# a `CameraStereo` object, and then add the stereo system using the -# `add_stereo_system` method. -# The other method is to use a convenience function, as shown below. -# This requires you to first initialise one camera. Then you can choose between -# either a face-on or symmetric stereo system. Then, either of the -# `symmetric_stereo_cameras` or `faceon_stereo_cameras` functions can be used to -# initialise a `CameraStereo` object. The only input required to these functions -# are the camera parameters for the first camera, and the desired stereo angle -# between the two. The cameras can then be added to the Blender scene using the -# `add_stereo_system` method. -cam_data_0 = sens.CameraData(pixels_num=np.array([1540, 1040]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=np.array([0, 0, 400]), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15.0) -# Set this to "symmetric" to get a symmetric stereo system or set this to -# "faceon" to get a face-on stereo system -stereo_setup = "faceon" -if stereo_setup == "symmetric": - stereo_system = sens.CameraTools.symmetric_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -elif stereo_setup == "faceon": - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, - stereo_angle=15.0) -else: - raise ValueError(f"Unknown stereo_setup: {stereo_setup}") - -scene.add_stereo_system(stereo_system) - -# %% -# Since this scene contains a stereo DIC system, a calibration file will be -# required to run the images through a DIC engine. -# A calibration file can be generated directly from the `CameraStereo` object. -# The calibration file will be saved in `YAML` format. However, if you wish to -# use MatchID to process the images, `save_calibration_mid` can be used instead -# to save the calibration in a format readable by MatchID. -# The calibration file will be saved to a sub-directory of the base directory -# called "calibration". -# This calibration file with "perfect" parameters can be used as a comparitive -# benchmark to the calibration gained from running the calibration files through -# a DIC engine. -stereo_system.save_calibration(base_dir) - -# %% -# A light can the be added to the scene. -# Blender offers different light types: Point, Sun, Spot and Area. -# The light can also be moved and rotated like the camera. - -light_data = blender.LightData(type=blender.LightType.POINT, - pos_world=(0, 0, 200), - rot_world=Rotation.from_euler("xyz", - [0, 0, 0]), - energy=1) -light = scene.add_light(light_data) -light.location = (0, 0, 210) -light.rotation_euler = (0, 0, 0) # NOTE: The default is an XYZ Euler angle - -# %% -# The calibration target pattern can then be added to the calibration target -# object. -# This is added in the same way that a speckle pattern is added to a sample. -# However, it is important to set the `cal` flag to True, as this means that the -# calibration target pattern will not be scaled in the same way as a speckle -# pattern. - -material_data = blender.MaterialData() -cal_target = dataset.cal_target() -mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data_0) -scene.add_speckle(part=target, - speckle_path=cal_target, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - cal=True) - -# %% -# Rendering a set of images -# ^^^^^^^^^^^^^^^^^^^^^^^^^ -# Once all the objects have been added to the scene, a set of images can be -# rendered.Firstly, all the rendering parameters must be set, including -# parameters such as the number of threads to use. - -render_data = blender.RenderData(cam_data=(stereo_system.cam_data_0, - stereo_system.cam_data_1), - base_dir=base_dir, - dir_name="blender-stereo-cal") - -# %% -# The parameters for the calibration target's movement can then be set. This is -# done by setting the minimum and maximum angle and plunge limits, as well as -# the step value that they should be increased by. The x and y limit of the -# calibration target's movement (from the origin) can also be set if you wish to -# perform a calibration for a constrained optical setup. If these limits are not -# passed in they will be initialised from the FOV to cover the whole FOV of the -# cameras. - -calibration_data = blender.CalibrationData(angle_lims=(-10, 10), - angle_step=20, - plunge_lims=(-5, 5), - plunge_step=10) - -# %% -# It is then possible to check the number of calibration images that will be -# rendered before rendering them. The only input that is needed is the -# `calibration_data` specified above. - -number_calibration_images = blender.Tools.number_calibration_images(calibration_data) -print("Number of calibration images to be rendered:", number_calibration_images) - -# %% -# The calibration images can then be rendered. This function will move the -# calibration target according to movement limits set above, and will also move -# the target rigidly across the FOV of the camera, in order to characterise the -# entire FOV of the cameras. -blender.Tools.render_calibration_images(render_data, - calibration_data, - target) - -# %% -# The rendered images will be saved to this filepath: - -print("Save directory of the images:", (render_data.base_dir / render_data.dir_name)) - -# %% -# There is also the option to save the scene as a Blender project file. -# This file can be opened with the Blender GUI to view the scene. - -blender.Tools.save_blender_file(base_dir=base_dir,over_write=True) diff --git a/src/pyvale/examples/dic/ex01_region_of_interest.py b/src/pyvale/examples/dic/ex01_region_of_interest.py index f6a1933f9..94dd05c6b 100644 --- a/src/pyvale/examples/dic/ex01_region_of_interest.py +++ b/src/pyvale/examples/dic/ex01_region_of_interest.py @@ -17,14 +17,14 @@ from pathlib import Path # pyvale modules -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dic as dic # %% # We'll begin by selecting our Region of Interest (ROI) using the interactive selection tool. # First, we create an instance of the ROI class. We pass a reference image to it, which is # displayed as the underlay during ROI selection. -ref_img = dataset.dic_plate_with_hole_ref() +ref_img = dataset.dic_plate_with_hole_cam0_ref() roi = dic.RegionOfInterest(ref_image=ref_img) roi.interactive_selection() @@ -98,4 +98,3 @@ # From there, you can manipulate `roi.mask` as you would any other 2D NumPy array. - diff --git a/src/pyvale/examples/dic/ex02_plate_with_hole.py b/src/pyvale/examples/dic/ex02_plate_with_hole.py index d3d086190..bdcf33a26 100644 --- a/src/pyvale/examples/dic/ex02_plate_with_hole.py +++ b/src/pyvale/examples/dic/ex02_plate_with_hole.py @@ -18,7 +18,7 @@ from pathlib import Path # pyvale modules -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dic as dic # %% diff --git a/src/pyvale/examples/dic/ex03_plate_with_hole_strain.py b/src/pyvale/examples/dic/ex03_plate_with_hole_strain.py index 49f92c6bb..9928c8aed 100644 --- a/src/pyvale/examples/dic/ex03_plate_with_hole_strain.py +++ b/src/pyvale/examples/dic/ex03_plate_with_hole_strain.py @@ -69,10 +69,18 @@ axes = axes.flatten() fig.suptitle('Deformation Gradient for ' + straindata.filenames[0]) -im1 = axes[0].pcolor(straindata.window_x, straindata.window_y, straindata.def_xx[1]) -im2 = axes[1].pcolor(straindata.window_x, straindata.window_y, straindata.def_xy[1]) -im3 = axes[2].pcolor(straindata.window_x, straindata.window_y, straindata.def_yx[1]) -im4 = axes[3].pcolor(straindata.window_x, straindata.window_y, straindata.def_yy[1]) +im1 = axes[0].pcolor( + straindata.window_x, straindata.window_y, straindata.def_00[1], +) +im2 = axes[1].pcolor( + straindata.window_x, straindata.window_y, straindata.def_01[1], +) +im3 = axes[2].pcolor( + straindata.window_x, straindata.window_y, straindata.def_10[1], +) +im4 = axes[3].pcolor( + straindata.window_x, straindata.window_y, straindata.def_11[1], +) # titles axes[0].set_title('deformation gradient xx') diff --git a/src/pyvale/examples/dic/ex04_dic_blender.py b/src/pyvale/examples/dic/ex04_dic_blender.py deleted file mode 100644 index 4dfecee67..000000000 --- a/src/pyvale/examples/dic/ex04_dic_blender.py +++ /dev/null @@ -1,97 +0,0 @@ -#================================================================================ -#Example: DIC with images generated by blender -# -#pyvale: the python validation engine -#License: MIT -#Copyright (C) 2024 The Computer Aided Validation Team -#================================================================================ - -""" -DIC with images generated from a virtual blender experiment ------------------------------------------------------------- - -This example looks at taking the virtual experiments conducted using the blender -module and taking it one step further and performing a DIC calculation on the -simulated data. For this to work, you'll need to complete the `2D image -deformation example `_ using the blender module first. - -**We'd recommend downloading both examples (links can be -found at the bottom of each example) and placing them within the same folder on -your device. That way the relative file paths below will not need to be -changed.** -""" - -import matplotlib.pyplot as plt -from pathlib import Path -import numpy as np -import os - -# pyvale imports -import pyvale.dic as dic - -#subset size -subset_size = 21 - -# rename the reference image so that that we can distinguish between reference -# and deformed images -if os.path.exists("./blenderimages/blenderimage_0.tiff"): - os.rename("./blenderimages/blenderimage_0.tiff", - "./blenderimages/reference.tiff") - -ref_img = "./blenderimages/reference.tiff" -def_img = "./blenderimages/blenderimage_*.tiff" - -# Interactive ROI selection -roi = dic.RegionOfInterest(ref_img) -roi.interactive_selection() - -#output_path -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -# DIC Calculation -dic.calculate_2d(reference=ref_img, - deformed=def_img, - roi_mask=roi.mask, - seed=roi.seed, - subset_size=subset_size, - subset_step=10, - shape_function="AFFINE", - max_displacement=20, - correlation_criteria="ZNSSD", - output_basepath=output_path, - output_prefix="blender_dic_") - -# Import the Results -data_path = output_path / "blender_dic_*.csv" -dicdata = dic.import_2d(data=data_path, delimiter=",", - layout='matrix', binary=False) - -# %% -# As an example we can plot the v-component of displacement for each of the -# eight deformation images - -# Setup plot -fig, axes = plt.subplots(2, 4, figsize=(15, 5)) -axes = axes.flatten() - -# Compute global min and max for consistent color scaling -vmin = np.nanmin(dicdata.v) -vmax = np.nanmax(dicdata.v) -print(vmin,vmax) - -# loop over images and add to subplots -for i in range(len(dicdata.filenames)): - im = axes[i].pcolor(dicdata.ss_x, dicdata.ss_y, dicdata.v[i], vmin=vmin, vmax=vmax) - axes[i].set_title(dicdata.filenames[i]) - fig.colorbar(im, ax=axes[i]) - -plt.tight_layout() -plt.show() - -# %% -# .. image:: ../../../../_static/dic_blender_plot.png -# :alt: DIC Comparison with ground truth -# :width: 800px -# :align: center diff --git a/src/pyvale/examples/dic/ex04_render_to_dic.py b/src/pyvale/examples/dic/ex04_render_to_dic.py new file mode 100644 index 000000000..8ee405b23 --- /dev/null +++ b/src/pyvale/examples/dic/ex04_render_to_dic.py @@ -0,0 +1,313 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render a known displacement and recover it with DIC +================================================================================ + +This example joins the pyvale render and digital image correlation workflows. +We render a speckled calibration plate in its reference position, translate it +by half a pixel in both image directions, and recover the known displacement +using two dimensional DIC. +""" + +from pathlib import Path + +import matplotlib.pyplot as plt +import numpy as np +import riley +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +import pyvale.dic as dic +from pyvale import render + + +SUBSET_SIZE = 21 +SPECKLE_SIZE_PX = 5.0 +TARGET_DISPLACEMENT_PX = 1.0 +ROI_SAFETY_PX = 10 + +# %% +# 1. Load the three dimensional calibration plate +# ------------------------------------------------------------ +# The calibration plate used by the Render UV examples is a rectangular target +# with front, back, and side faces. A face on camera gives it a rectangular +# image footprint, which lets us define a reproducible ROI without user input. +data_dir = dataset.riley_stereocal_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +mesh = render.mesh3d_from_simdata(simulation, shader=None) + +# %% +# 2. Create and position the face on camera +# ------------------------------------------------------------ +# The sensor has a 1.6 aspect ratio and uses four samples along each pixel axis +# to keep the target edges smooth. A ten percent border leaves room for the DIC +# subsets and makes the target boundary easy to identify. +camera = render.Camera( + pixels_num=np.array((1024, 640)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(mesh), + focal_length=50.0e-3, + subsample=4, +) + +camera = render.cam_frame_mesh( + camera, + mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +# %% +# 3. Scale the five pixel speckle pattern to the camera +# ------------------------------------------------------------ +# The standard 5 MPx DIC texture has a nominal speckle size of five texture +# pixels. We request the same five pixel feature size in the rendered image. +# A 21 pixel DIC subset therefore spans about four speckles. + +texture = render.image_load(dataset.dic_pattern_5mpx_path()) +image_leng_per_px = render.cam_calc_leng_per_px(camera) + +texture_px_per_leng = render.uv_calc_texture_px_per_leng_from_image( + texture_px_per_feature=SPECKLE_SIZE_PX, + image_px_per_feature=SPECKLE_SIZE_PX, + image_leng_per_px=image_leng_per_px, +) + +mapping = render.uv_map_planar_scaled( + mesh.coords, + texture, + texture_px_per_leng, + plane=render.EUVPlane.XY, +) + +mesh.shader = render.RileyTextureShader( + uvs=mapping.uvs, + texture=mapping.texture, +) + +# %% +# 4. Apply a known half pixel rigid displacement +# ------------------------------------------------------------ +# The requested image motion is half a pixel right and half a pixel down. Image +# rows increase downward while camera V and world Y increase upward, so the +# downward image motion requires a negative world Y displacement. The camera +# image scale converts the half pixel motion into simulation length units. + +displacement_leng = TARGET_DISPLACEMENT_PX * image_leng_per_px +mesh.displacements = np.zeros((2, mesh.coords.shape[0], 3)) +mesh.displacements[1, :, 0] = displacement_leng +mesh.displacements[1, :, 1] = -displacement_leng + +projected_reference = render.cam_project_points(camera, mesh.coords) +projected_deformed = render.cam_project_points( + camera, + mesh.coords + mesh.displacements[1], +) + +projected_shift = np.mean(projected_deformed - projected_reference, axis=0) + +np.testing.assert_allclose( + projected_shift, + np.array((TARGET_DISPLACEMENT_PX, -TARGET_DISPLACEMENT_PX)), + atol=0.01, +) + +# %% +# 5. Render the reference and deformed images with Riley +# ------------------------------------------------------------ +output_dir = Path.cwd() / "pyvale-output" / "dic_ex04_render_to_dic" +render_dir = output_dir / "render" + +config = riley.create_raster_config( + num_frames=2, + total_threads=4, + save_strategy=riley.SaveStrategy.both, +) +config.background_value = 128.0 +config.save_scaling = riley.ScaleStrategy.none + +result = render.Riley(config, render_dir).render( + render.Scene3D(meshes=[mesh], cameras=[camera]) +) +assert result.images is not None + +reference = result.images[0, 0, :, :, 0] +deformed = result.images[1, 0, :, :, 0] + +# %% +# 6. Program a rectangular region of interest +# ------------------------------------------------------------ +# Projecting the target corners gives its image bounds. We move inward by half +# the subset width plus a safety margin so every complete subset remains on the +# speckled target in both frames. + +subset_radius = SUBSET_SIZE // 2 +roi_inset = subset_radius + ROI_SAFETY_PX +target_min = np.floor(np.min(projected_reference, axis=0)).astype(int) +target_max = np.ceil(np.max(projected_reference, axis=0)).astype(int) + +roi_left = target_min[0] + roi_inset +roi_right = target_max[0] - roi_inset +roi_top = target_min[1] + roi_inset +roi_bottom = target_max[1] - roi_inset + +roi = dic.RegionOfInterest(reference) + +roi.rect_region( + x=roi_left, + y=roi_top, + size_x=roi_right - roi_left, + size_y=roi_bottom - roi_top, +) + +roi.seed = [ + (roi_left + roi_right) // 2, + (roi_top + roi_bottom) // 2, +] + +assert np.all(roi.mask[roi_top:roi_bottom, roi_left:roi_right]) +assert not np.any(roi.mask[:roi_top, :]) +assert not np.any(roi.mask[roi_bottom:, :]) +assert not np.any(roi.mask[:, :roi_left]) +assert not np.any(roi.mask[:, roi_right:]) + +# To choose the ROI interactively, comment out the programmed ROI above and +# uncomment the following lines. +# roi = dic.RegionOfInterest(reference) +# roi.interactive_selection() + +# %% +# 7. Calculate and import the DIC displacement +# ------------------------------------------------------------ +dic_dir = output_dir / "dic" +dic_dir.mkdir(parents=True, exist_ok=True) + +dic.calculate_2d( + reference=reference, + deformed=deformed, + roi_mask=roi.mask, + seed=roi.seed, + subset_size=SUBSET_SIZE, + subset_step=1, + shape_function="AFFINE", + correlation_criteria="ZNSSD", + max_displacement=4, + num_threads=4, + output_basepath=dic_dir, + output_prefix="render_to_dic_", + debug_level=0, +) + +dic_results = dic.import_2d( + data=dic_dir / "render_to_dic_*.csv", + delimiter=",", + layout="matrix", + binary=False, + debug_level=0, +) + +valid = np.asarray(dic_results.converged[0], dtype=bool) +valid &= np.isfinite(dic_results.u_px[0]) +valid &= np.isfinite(dic_results.v_px[0]) +assert np.all(valid) + +u_values = dic_results.u_px[0][valid] +v_values = dic_results.v_px[0][valid] +u_error = u_values - TARGET_DISPLACEMENT_PX +v_error = v_values - TARGET_DISPLACEMENT_PX + +np.testing.assert_allclose( + u_values, + TARGET_DISPLACEMENT_PX, + atol=0.05, +) +np.testing.assert_allclose( + v_values, + TARGET_DISPLACEMENT_PX, + atol=0.05, +) + +print( + f"ROI subsets={u_values.size}, " + f"mean displacement=({np.mean(u_values):.4f}, " + f"{np.mean(v_values):.4f}) px, " + f"maximum error=({np.max(np.abs(u_error)):.4f}, " + f"{np.max(np.abs(v_error)):.4f}) px" +) + +# %% +# 8. Plot the render, ROI, displacement, and error +# ------------------------------------------------------------ +figure, axes = plt.subplots(2, 3, figsize=(13, 7), constrained_layout=True) + +axes[0, 0].imshow(reference, cmap="gray") +axes[0, 0].set_title("Reference render") +axes[0, 1].imshow(deformed, cmap="gray") +axes[0, 1].set_title("Deformed render") +axes[0, 2].imshow(reference, cmap="gray") +axes[0, 2].imshow(roi.mask, cmap="Greens", alpha=0.25) +axes[0, 2].plot(roi.seed[0], roi.seed[1], "r+", markersize=10) +axes[0, 2].set_title("Programmed ROI and seed") + +u_plot = axes[1, 0].pcolormesh( + dic_results.ss_x, + dic_results.ss_y, + dic_results.u_px[0], + shading="auto", +) +axes[1, 0].set_title("Measured U displacement [px]") +figure.colorbar(u_plot, ax=axes[1, 0]) + +v_plot = axes[1, 1].pcolormesh( + dic_results.ss_x, + dic_results.ss_y, + dic_results.v_px[0], + shading="auto", +) +axes[1, 1].set_title("Measured V displacement [px]") +figure.colorbar(v_plot, ax=axes[1, 1]) + +error_magnitude = np.hypot( + dic_results.u_px[0] - TARGET_DISPLACEMENT_PX, + dic_results.v_px[0] - TARGET_DISPLACEMENT_PX, +) +error_plot = axes[1, 2].pcolormesh( + dic_results.ss_x, + dic_results.ss_y, + error_magnitude, + shading="auto", +) +axes[1, 2].set_title("Displacement error [px]") +figure.colorbar(error_plot, ax=axes[1, 2]) + +for axis in axes.flat: + axis.set_aspect("equal") + axis.set_xlabel("Image U [px]") + axis.set_ylabel("Image V [px]") + +figure_path = output_dir / "dic_ex04_render_to_dic.png" +figure.savefig(figure_path, dpi=150) +plt.close(figure) +print(f"Render and DIC outputs written to {output_dir}") + +# %% +# The top row shows the rendered image pair and the programmed rectangular ROI. +# The bottom row shows the recovered U and V displacement fields and their +# error relative to the analytic half pixel translation. +# +# .. image:: ../../../../_static/dic_ex04_render_to_dic.png +# :alt: Riley renders, programmed ROI, and recovered DIC displacement +# :width: 1000px +# :align: center diff --git a/src/pyvale/examples/dic/ex05_dic_challenge.py b/src/pyvale/examples/dic/ex05_dic_challenge.py index fb301a59c..c665d3831 100644 --- a/src/pyvale/examples/dic/ex05_dic_challenge.py +++ b/src/pyvale/examples/dic/ex05_dic_challenge.py @@ -27,7 +27,7 @@ from pathlib import Path # pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dic as dic @@ -96,7 +96,7 @@ plt.ylabel("Displacement [px]") plt.grid(True) plt.axhline(y=0.5, color='red', linestyle='--', linewidth=4) -plt.plot(dicdata.ss_x, dicdata.v[0,:]) +plt.plot(dicdata.ss_x[0], dicdata.v_px[0, 0]) plt.tight_layout() plt.show() diff --git a/src/pyvale/examples/dic/ex07_incremental.py b/src/pyvale/examples/dic/ex07_incremental.py index 017cbd551..9b36e4bf6 100644 --- a/src/pyvale/examples/dic/ex07_incremental.py +++ b/src/pyvale/examples/dic/ex07_incremental.py @@ -37,12 +37,12 @@ import numpy as np # pyvale modules -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dic as dic subset_size = 31 -ref_img = dataset.dic_plate_rigid_ref() -def_img = dataset.dic_plate_rigid_def() +ref_img = dataset.dic_plate_rigid_cam0_ref() +def_img = dataset.dic_plate_rigid_cam0_def() # create a directory for the the different outputs output_path = Path.cwd() / "pyvale-output" / "incremental" @@ -88,4 +88,3 @@ output_delimiter=",", output_prefix="results_inc_") - diff --git a/src/pyvale/examples/dic/ex08_calibration.py b/src/pyvale/examples/dic/ex08_calibration.py index 228cf9a80..90348f2d7 100644 --- a/src/pyvale/examples/dic/ex08_calibration.py +++ b/src/pyvale/examples/dic/ex08_calibration.py @@ -7,22 +7,21 @@ #================================================================================ """ Stereo Calibration + DIC ---------------------- +------------------------ This example detects a calibration-dot target in synchronised stereo images and uses the detected correspondences to calibrate the two cameras. -**The required calibration images are not distributed with the package to keep things lightweight. -** -`here `_. +The required calibration images are not distributed with the package to keep +things lightweight. You can download them `here `_. **Make sure to download/clone the repository and unzip the calibration images. For this example we'll assume you've cloned the images to your current working directory.** -Currently, the DIC module in pyvale only supports the below type of calibration targets (If there's -a specific type of calibration target you would like adding then please get in touch -and we'll see what we can do). +Currently, the DIC module in pyvale only supports the below type of calibration +targets (If there's a specific type of calibration target you would like adding +then please get in touch and we'll see what we can do). """ # %% diff --git a/src/pyvale/examples/dic/ex09_stereo.py b/src/pyvale/examples/dic/ex09_stereo.py index 326c2885b..4fd19996f 100644 --- a/src/pyvale/examples/dic/ex09_stereo.py +++ b/src/pyvale/examples/dic/ex09_stereo.py @@ -7,10 +7,11 @@ #================================================================================ """ Stereo DIC rigid body motion of a plate ---------------------- +--------------------------------------- This example demonstrates how to perform stereo DIC using pyvale. The example -uses synthetic images generated using `Riley `_ +uses synthetic images generated using +`Riley `_ from a known calibration and deformation field. The calibration parameters are loaded from a text file, and the DIC calculation is performed on the reference and deformed images. @@ -23,7 +24,7 @@ import pyvale.dic as dic import pyvale.calib as calib -import pyvale.dataset as dataset +import pyvale.data as dataset # %% # Load in the ground truth calibration parameters. These are the parameters diff --git a/src/pyvale/examples/dic/ex10_stereo_platehole.py b/src/pyvale/examples/dic/ex10_stereo_platehole.py index 2a061aa46..1784765fa 100644 --- a/src/pyvale/examples/dic/ex10_stereo_platehole.py +++ b/src/pyvale/examples/dic/ex10_stereo_platehole.py @@ -8,10 +8,11 @@ #================================================================================ """ Stereo DIC and strain calculation of a plate with a hole ---------------------- +-------------------------------------------------------- This example demonstrates how to perform stereo DIC using pyvale. The example -uses synthetic images generated using `Riley `_ +uses synthetic images generated using +`Riley `_ from a known calibration and deformation field. The calibration parameters are loaded from a text file, and the DIC calculation is performed on the reference and deformed images. @@ -24,7 +25,7 @@ import pyvale.dic as dic import pyvale.calib as calib import pyvale.strain as strain -import pyvale.dataset as dataset +import pyvale.data as dataset # %% # We can use the same calibration parameters as before: diff --git a/src/pyvale/examples/dic/ex11_dic_chal.py b/src/pyvale/examples/dic/ex11_dic_chal.py index a55eed9e9..9393ba88b 100644 --- a/src/pyvale/examples/dic/ex11_dic_chal.py +++ b/src/pyvale/examples/dic/ex11_dic_chal.py @@ -8,7 +8,7 @@ #================================================================================ """ Stereo Reconstruction from the DIC Challenge 1.0 ---------------------- +------------------------------------------------ For this exampe we'll reconstruct the bespoke sample used in the first iteration of the `Stereo DIC challenge `_. @@ -27,7 +27,7 @@ import pyvale.dic as dic import pyvale.calib as calib import pyvale.strain as strain -import pyvale.dataset as dataset +import pyvale.data as dataset # %% # Import the calibration parameters: diff --git a/src/pyvale/examples/extsensorsim/ex1_byosimdata.py b/src/pyvale/examples/extsensorsim/ex1_byosimdata.py index 8b109b7aa..3cd58c7db 100644 --- a/src/pyvale/examples/extsensorsim/ex1_byosimdata.py +++ b/src/pyvale/examples/extsensorsim/ex1_byosimdata.py @@ -25,7 +25,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex3a_scal2d.py b/src/pyvale/examples/extsensorsim/ex3a_scal2d.py index 3546af921..5342c7497 100644 --- a/src/pyvale/examples/extsensorsim/ex3a_scal2d.py +++ b/src/pyvale/examples/extsensorsim/ex3a_scal2d.py @@ -26,7 +26,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex3b_scal3d.py b/src/pyvale/examples/extsensorsim/ex3b_scal3d.py index 8e42f883f..657859620 100644 --- a/src/pyvale/examples/extsensorsim/ex3b_scal3d.py +++ b/src/pyvale/examples/extsensorsim/ex3b_scal3d.py @@ -26,7 +26,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex3c_vec2d.py b/src/pyvale/examples/extsensorsim/ex3c_vec2d.py index e4c4533d2..ee85284df 100644 --- a/src/pyvale/examples/extsensorsim/ex3c_vec2d.py +++ b/src/pyvale/examples/extsensorsim/ex3c_vec2d.py @@ -26,7 +26,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex3d_vec3d.py b/src/pyvale/examples/extsensorsim/ex3d_vec3d.py index 9ed247224..92ad2204a 100644 --- a/src/pyvale/examples/extsensorsim/ex3d_vec3d.py +++ b/src/pyvale/examples/extsensorsim/ex3d_vec3d.py @@ -25,7 +25,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex3e_tens2d.py b/src/pyvale/examples/extsensorsim/ex3e_tens2d.py index 353e5eecf..2461dc45b 100644 --- a/src/pyvale/examples/extsensorsim/ex3e_tens2d.py +++ b/src/pyvale/examples/extsensorsim/ex3e_tens2d.py @@ -26,7 +26,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex3f_tens3d.py b/src/pyvale/examples/extsensorsim/ex3f_tens3d.py index a470ee7dc..eba604dba 100644 --- a/src/pyvale/examples/extsensorsim/ex3f_tens3d.py +++ b/src/pyvale/examples/extsensorsim/ex3f_tens3d.py @@ -26,7 +26,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex4a_basicerrs_scal2d.py b/src/pyvale/examples/extsensorsim/ex4a_basicerrs_scal2d.py index 5087750ae..147603b66 100644 --- a/src/pyvale/examples/extsensorsim/ex4a_basicerrs_scal2d.py +++ b/src/pyvale/examples/extsensorsim/ex4a_basicerrs_scal2d.py @@ -53,7 +53,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex4b_fielderrs_scal3d.py b/src/pyvale/examples/extsensorsim/ex4b_fielderrs_scal3d.py index a1bbb1ff1..3e49f05e2 100644 --- a/src/pyvale/examples/extsensorsim/ex4b_fielderrs_scal3d.py +++ b/src/pyvale/examples/extsensorsim/ex4b_fielderrs_scal3d.py @@ -25,7 +25,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex4c_angleerrs_vec2d.py b/src/pyvale/examples/extsensorsim/ex4c_angleerrs_vec2d.py index 658ef37c1..dc8ae6ee9 100644 --- a/src/pyvale/examples/extsensorsim/ex4c_angleerrs_vec2d.py +++ b/src/pyvale/examples/extsensorsim/ex4c_angleerrs_vec2d.py @@ -24,7 +24,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex4d_fieldlockerrs_vec3d.py b/src/pyvale/examples/extsensorsim/ex4d_fieldlockerrs_vec3d.py index 3ea8be931..d48adda66 100644 --- a/src/pyvale/examples/extsensorsim/ex4d_fieldlockerrs_vec3d.py +++ b/src/pyvale/examples/extsensorsim/ex4d_fieldlockerrs_vec3d.py @@ -23,7 +23,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex4e_chainfielderrs_vec2d.py b/src/pyvale/examples/extsensorsim/ex4e_chainfielderrs_vec2d.py index ce883f6eb..c097971b7 100644 --- a/src/pyvale/examples/extsensorsim/ex4e_chainfielderrs_vec2d.py +++ b/src/pyvale/examples/extsensorsim/ex4e_chainfielderrs_vec2d.py @@ -29,7 +29,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex4f_caliberrs_scal2d.py b/src/pyvale/examples/extsensorsim/ex4f_caliberrs_scal2d.py index fa6aaf412..0e5f2d927 100644 --- a/src/pyvale/examples/extsensorsim/ex4f_caliberrs_scal2d.py +++ b/src/pyvale/examples/extsensorsim/ex4f_caliberrs_scal2d.py @@ -20,7 +20,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/examples/extsensorsim/ex4g_spatavgerrs_scal2d.py b/src/pyvale/examples/extsensorsim/ex4g_spatavgerrs_scal2d.py index f75d84b59..6fd997e0c 100644 --- a/src/pyvale/examples/extsensorsim/ex4g_spatavgerrs_scal2d.py +++ b/src/pyvale/examples/extsensorsim/ex4g_spatavgerrs_scal2d.py @@ -20,7 +20,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex5a_expsim_thermmech2d.py b/src/pyvale/examples/extsensorsim/ex5a_expsim_thermmech2d.py index 4d5775a61..044994db4 100644 --- a/src/pyvale/examples/extsensorsim/ex5a_expsim_thermmech2d.py +++ b/src/pyvale/examples/extsensorsim/ex5a_expsim_thermmech2d.py @@ -30,7 +30,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/extsensorsim/ex5b_expsim_thermmech3d.py b/src/pyvale/examples/extsensorsim/ex5b_expsim_thermmech3d.py index 0f64a8b6f..ddaa78d25 100644 --- a/src/pyvale/examples/extsensorsim/ex5b_expsim_thermmech3d.py +++ b/src/pyvale/examples/extsensorsim/ex5b_expsim_thermmech3d.py @@ -25,7 +25,7 @@ import pyvale.sensorsim as sens import pyvale.dataio as io import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% # 1. Load physics simulation data diff --git a/src/pyvale/examples/imagedef2d/ex_imagedef2d_todisk.py b/src/pyvale/examples/imagedef2d/ex_imagedef2d_todisk.py deleted file mode 100644 index 9d7e8d09f..000000000 --- a/src/pyvale/examples/imagedef2d/ex_imagedef2d_todisk.py +++ /dev/null @@ -1,84 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - - -from pathlib import Path -import numpy as np - -# Pyvale Imports -import pyvale.sensorsim as sens -import pyvale.mooseherder as mh -import pyvale.dataset as dataset - - -def main() -> None: - sim_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(sim_path).load_all_sim_data() - - image_path = dataset.dic_pattern_5mpx_path() - image_speckle = sens.ImageTools.load_image_greyscale(image_path) - - save_path = Path.cwd()/"pyvale-output" - if not save_path.is_dir(): - save_path.mkdir(parents=True, exist_ok=True) - - coords = sim_data.coords - connectivity = (sim_data.connect["connect1"]-1).T # Beware 0 indexing here - disp_x = sim_data.node_vars["disp_x"][:,:] - disp_y = sim_data.node_vars["disp_y"][:,:] - - print() - print(80*"-") - print(f"{coords.shape=}") - print(f"{connectivity.shape=}") - print(f"{disp_x.shape=}") - print(f"{disp_y.shape=}") - print(80*"-") - - - cam_data = sens.CameraData2D(pixels_count=np.array((1040,1540)), - leng_per_px=0.1e-3, - bits=8, - roi_cent_world=np.mean(coords,axis=0), - subsample=3) - id_opts = sens.ImageDefOpts(save_path=save_path, - crop_on=True, - add_static_ref=True) - - - - (upsampled_image, - image_mask, - image_input, - disp_x, - disp_y) = sens.ImageDef2D.preprocess(cam_data, - image_speckle, - coords, - connectivity, - disp_x, - disp_y, - id_opts, - print_on=True) - - ff = -1 - disp = np.array((disp_x[:,ff],disp_y[:,ff])).T - print(f"{disp.shape=}") - - - sens.ImageDef2D.deform_images_to_disk(cam_data, - upsampled_image, - coords, - connectivity, - disp_x, - disp_y, - image_mask, - id_opts, - print_on=True) - - -if __name__ == "__main__": - main() - diff --git a/src/pyvale/examples/mooseherder/ex1a_modify_moose_input.py b/src/pyvale/examples/mooseherder/ex1a_modify_moose_input.py index 3e2081a2b..9eb0c663c 100644 --- a/src/pyvale/examples/mooseherder/ex1a_modify_moose_input.py +++ b/src/pyvale/examples/mooseherder/ex1a_modify_moose_input.py @@ -17,7 +17,7 @@ from pathlib import Path # pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import InputModifier #%% diff --git a/src/pyvale/examples/mooseherder/ex1b_modify_gmsh_input.py b/src/pyvale/examples/mooseherder/ex1b_modify_gmsh_input.py index b8d54c3aa..3eed07d94 100644 --- a/src/pyvale/examples/mooseherder/ex1b_modify_gmsh_input.py +++ b/src/pyvale/examples/mooseherder/ex1b_modify_gmsh_input.py @@ -17,7 +17,7 @@ from pathlib import Path # pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import InputModifier #%% diff --git a/src/pyvale/examples/mooseherder/ex2a_run_moose_once.py b/src/pyvale/examples/mooseherder/ex2a_run_moose_once.py index 91fea74cc..d53dd9675 100644 --- a/src/pyvale/examples/mooseherder/ex2a_run_moose_once.py +++ b/src/pyvale/examples/mooseherder/ex2a_run_moose_once.py @@ -26,55 +26,70 @@ from pathlib import Path #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseConfig, MooseRunner) -#%% -# First we build our moose configuration which gives the location of our main -# moose build, our moose app and the name of the app to use when called on the -# command line. -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -#%% -# We can now build a runner object using our configuration. We can then set some -# options for the run including parallelisation and if we should redirect -# terminal output to file. For smaller simulations we are better off using -# threads for paralleisation as they reduce overhead compared to MPI tasks. -moose_runner = MooseRunner(moose_config) - -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 8, - redirect_out = False) - -#%% -# Let's grab a simple thermo-mechanical cube test case from pyvale's moose -# simulation library and we will set this as the input file to run with our -# 'runner'. -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_runner.set_input_file(moose_input) - -#%% -# Our moose runner will pass a list of strings which form the command line to -# run our moose simulation. We print the list of command line arguments here so -# we can check we are correctly calling our input file with the run options we -# want. -print(moose_runner.get_arg_list()) -print() - -#%% -# To run our moose simulation we just need to call 'run', here we will time our -# moose run and then print the solve time to the terminal -start_time = time.perf_counter() -moose_runner.run() -run_time = time.perf_counter() - start_time - -print() -print("-"*80) -print(f'MOOSE run time = {run_time:.3f} seconds') -print("-"*80) -print() +def main() -> None: + + + #%% + # First we build our moose configuration which gives the location of our main + # moose build, our moose app and the name of the app to use when called on the + # command line. + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + #%% + # We can now build a runner object using our configuration. We can then set some + # options for the run including parallelisation and if we should redirect + # terminal output to file. For smaller simulations we are better off using + # threads for paralleisation as they reduce overhead compared to MPI tasks. + moose_runner = MooseRunner(moose_config) + + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 8, + redirect_out = False) + + #%% + # Let's grab a simple thermo-mechanical cube test case from pyvale's moose + # simulation library and we will set this as the input file to run with our + # 'runner'. + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_runner.set_input_file(moose_input) + + #%% + # Our moose runner will pass a list of strings which form the command line to + # run our moose simulation. We print the list of command line arguments here so + # we can check we are correctly calling our input file with the run options we + # want. + print(moose_runner.get_arg_list()) + print() + + #%% + # To run our moose simulation we just need to call 'run', here we will time our + # moose run and then print the solve time to the terminal + start_time = time.perf_counter() + moose_runner.run() + run_time = time.perf_counter() - start_time + + print() + print("-"*80) + print(f'MOOSE run time = {run_time:.3f} seconds') + print("-"*80) + print() + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex2b_run_gmsh_once.py b/src/pyvale/examples/mooseherder/ex2b_run_gmsh_once.py index 4b3463347..4c1c7a588 100644 --- a/src/pyvale/examples/mooseherder/ex2b_run_gmsh_once.py +++ b/src/pyvale/examples/mooseherder/ex2b_run_gmsh_once.py @@ -21,44 +21,56 @@ from pathlib import Path #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import GmshRunner -#%% -# First we need to create a 'runner' for gmsh which needs to know the path to -# the gmsh executable. You will need to replace this path with the path to where -# you have install gmsh on your system. -gmsh_path = Path.home() / 'gmsh/bin/gmsh' -gmsh_runner = GmshRunner(gmsh_path) - -#%% -# Next we grab a gmsh file from pyvale simulation library and we set this as the -# input file for our runner. -gmsh_input = dataset.sim_case_gmsh_file_path(case_num=17) -gmsh_runner.set_input_file(gmsh_input) - -#%% -# Now we can run gmsh to generate our mesh using the run method, the parse only -# flag means we will run gmsh head less and not open the gmsh GUI but terminal -# output will still be written to stdout. -# -# We also use our performance timer to time how long our mesh generation takes -# and then we print this to the console. Note that parallelisation options for -# gmsh can be controlled in the gmsh .geo script file. -start_time = time.perf_counter() -gmsh_runner.run(gmsh_input,parse_only=True) -run_time = time.perf_counter() - start_time - -print() -print("-"*80) -print(f'Gmsh run time = {run_time :.3f} seconds') -print("-"*80) -print() - -#%% -# The GmshRunner and the MooseRunner implement the SimRunner abstract base -# class. Later on when we will see that we can use this to run a list of -# different sim runners in order using MooseHerd workflow manager. This allows -# us to first build our mesh with gmsh and then run a moose simulation using -# that mesh. We can also implement our own SimRunner's to add additional pre or -# post processing steps to our simulation chain. \ No newline at end of file + +def main() -> None: + + #%% + # First we need to create a 'runner' for gmsh which needs to know the path to + # the gmsh executable. You will need to replace this path with the path to where + # you have install gmsh on your system. + gmsh_path = Path.home() / 'gmsh/bin/gmsh' + gmsh_runner = GmshRunner(gmsh_path) + + #%% + # Next we grab a gmsh file from pyvale simulation library and we set this as the + # input file for our runner. + gmsh_input = dataset.sim_case_gmsh_file_path(case_num=17) + gmsh_runner.set_input_file(gmsh_input) + + #%% + # Now we can run gmsh to generate our mesh using the run method, the parse only + # flag means we will run gmsh head less and not open the gmsh GUI but terminal + # output will still be written to stdout. + # + # We also use our performance timer to time how long our mesh generation takes + # and then we print this to the console. Note that parallelisation options for + # gmsh can be controlled in the gmsh .geo script file. + start_time = time.perf_counter() + gmsh_runner.run(gmsh_input,parse_only=True) + run_time = time.perf_counter() - start_time + + print() + print("-"*80) + print(f'Gmsh run time = {run_time :.3f} seconds') + print("-"*80) + print() + + #%% + # The GmshRunner and the MooseRunner implement the SimRunner abstract base + # class. Later on when we will see that we can use this to run a list of + # different sim runners in order using MooseHerd workflow manager. This allows + # us to first build our mesh with gmsh and then run a moose simulation using + # that mesh. We can also implement our own SimRunner's to add additional pre or + # post processing steps to our simulation chain. + + +from pyvale.mooseherder import gmsh_availability + +if not gmsh_availability().available: + print("Gmsh is unavailable: skipping this example.") + print("Install Gmsh and make sure the 'gmsh' executable is on PATH.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex2c_run_both_once.py b/src/pyvale/examples/mooseherder/ex2c_run_both_once.py index 01da64551..08c994647 100644 --- a/src/pyvale/examples/mooseherder/ex2c_run_both_once.py +++ b/src/pyvale/examples/mooseherder/ex2c_run_both_once.py @@ -35,80 +35,97 @@ from pathlib import Path #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseConfig, GmshRunner, MooseRunner) -#%% -# We need to make sure the output .msh file from gmsh can be found by our moose -# input script so we are going to put them in our standard pyvale-output -# directory in our current working directory. First we grab the paths for the -# .geo and .i and then we copy them to the pyvale-output directory where we will -# run our simulation from. We then print the paths to we can see where the files -# are - try opening them with your text editor of choice so you can see how the -# name of the mesh is specified in the gmsh .geo as the .msh output and the then -# how the name is matched in the moose .i to read the .msh to run the sim. - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -gmsh_file = dataset.sim_case_gmsh_file_path(case_num=17) -gmsh_input = output_path / gmsh_file.name - -moose_file = dataset.sim_case_input_file_path(case_num=17) -moose_input = output_path / moose_file.name - -shutil.copyfile(moose_file,moose_input) -shutil.copyfile(gmsh_file,gmsh_input) - -print(f"\n{moose_input.resolve()=}") -print(f"{gmsh_input.resolve()=}\n") - -#%% -# We need to run gmsh first to generate our .msh file so we set it up and run it -# in exactly the same way as we have done in the previous example. We pass the -# path to the gmsh executable to our runner. We then set our input file and call -# run to generate the mesh. -gmsh_path = Path.home() / 'gmsh/bin/gmsh' -gmsh_runner = GmshRunner(gmsh_path) - -gmsh_runner.set_input_file(gmsh_input) - -gmsh_start = time.perf_counter() -gmsh_runner.run(parse_only=True) -gmsh_run_time = time.perf_counter()-gmsh_start - -#%% -# Now that we have our mesh we can run our moose simulation. We will setup and -# run moose in exactly the same was as in a previous example. First, we setup -# our moose configuration and pass this to our runner. We then set our run / -# parallelisation options before calling run to extecute the simulation. -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) - -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 4, - redirect_out = True) - -moose_runner.set_input_file(moose_input) - -moose_start = time.perf_counter() -moose_runner.run() -moose_run_time = time.perf_counter() - moose_start - -#%% -# Finally we print the execution times of both runners and print these to the -# console. -print("-"*80) -print(f'Gmsh run time = {gmsh_run_time:.2f} seconds') -print(f'MOOOSE run time = {moose_run_time:.2f} seconds') -print("-"*80) -print() - +def main() -> None: + + #%% + # We need to make sure the output .msh file from gmsh can be found by our moose + # input script so we are going to put them in our standard pyvale-output + # directory in our current working directory. First we grab the paths for the + # .geo and .i and then we copy them to the pyvale-output directory where we will + # run our simulation from. We then print the paths to we can see where the files + # are - try opening them with your text editor of choice so you can see how the + # name of the mesh is specified in the gmsh .geo as the .msh output and the then + # how the name is matched in the moose .i to read the .msh to run the sim. + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + gmsh_file = dataset.sim_case_gmsh_file_path(case_num=17) + gmsh_input = output_path / gmsh_file.name + + moose_file = dataset.sim_case_input_file_path(case_num=17) + moose_input = output_path / moose_file.name + + shutil.copyfile(moose_file,moose_input) + shutil.copyfile(gmsh_file,gmsh_input) + + print(f"\n{moose_input.resolve()=}") + print(f"{gmsh_input.resolve()=}\n") + + #%% + # We need to run gmsh first to generate our .msh file so we set it up and run it + # in exactly the same way as we have done in the previous example. We pass the + # path to the gmsh executable to our runner. We then set our input file and call + # run to generate the mesh. + gmsh_path = Path.home() / 'gmsh/bin/gmsh' + gmsh_runner = GmshRunner(gmsh_path) + + gmsh_runner.set_input_file(gmsh_input) + + gmsh_start = time.perf_counter() + gmsh_runner.run(parse_only=True) + gmsh_run_time = time.perf_counter()-gmsh_start + + #%% + # Now that we have our mesh we can run our moose simulation. We will setup and + # run moose in exactly the same was as in a previous example. First, we setup + # our moose configuration and pass this to our runner. We then set our run / + # parallelisation options before calling run to extecute the simulation. + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 4, + redirect_out = True) + + moose_runner.set_input_file(moose_input) + + moose_start = time.perf_counter() + moose_runner.run() + moose_run_time = time.perf_counter() - moose_start + + #%% + # Finally we print the execution times of both runners and print these to the + # console. + print("-"*80) + print(f'Gmsh run time = {gmsh_run_time:.2f} seconds') + print(f'MOOOSE run time = {moose_run_time:.2f} seconds') + print("-"*80) + print() + + +from pyvale.mooseherder import gmsh_availability, moose_availability + +missing = [] +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + missing.append("MOOSE") +if not gmsh_availability().available: + missing.append("Gmsh") +if missing: + print(f"{' and '.join(missing)} unavailable: " + "skipping this example.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex3_run_moose_seq_para.py b/src/pyvale/examples/mooseherder/ex3_run_moose_seq_para.py index 192b7bb30..b1d6f83e4 100644 --- a/src/pyvale/examples/mooseherder/ex3_run_moose_seq_para.py +++ b/src/pyvale/examples/mooseherder/ex3_run_moose_seq_para.py @@ -30,7 +30,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, InputModifier, @@ -38,120 +38,133 @@ MooseConfig, sweep_param_grid) -#%% -# First we are going to setup an input modifier and a runner for our moose -# simulation. Here we need to make sure that when we set our moose -# parallelisation options we leave enough threads for all the simulations that -# are running at once base on our CPU. It is also helpful to redirect stdout to -# file so that our terminal does not become a mess when we start running our -# simulations in parallel. -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_modifier = InputModifier(moose_input,'#','') - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -#%% -# Now we are going to create a directory manager which will be used to make sure -# our simulations are run in separate directories. We then create our herd -# workflow manager with our list of runners and corresponding input modifiers. -# In our case we are only running moose so our lists have a single item. The -# last thing we do is specify the number of simulations we want to run in -# parallel, for this case we match the number of directories. -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - -#%% -# We need somewhere to run our simulations and store the output so we create our -# standard pyvale output directory and then we set this as the base directory -# for our directory manager. We clear any old output directories and then create -# new ones ready to write our simulation output to. -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -#%% -# We now need to generate the parameter combinations we want to run using our -# 'herd'. This is given as a list of list of dictionaries where the outer list -# corresponds to the unique simulation chain, the inner list corresponds to each -# simulation runner in the chain, and the dicitionary contains key value pairs -# where the keys are the variables names to edit in the input file. For this -# case we only have moose in our simulation chain so our inner list will only -# have a length of one but in the next example we will see how we can combine -# a parameter sweep with gmsh->moose sweeping all possible combinations of -# variables for both simulation tools. -# -# For now we are going to use a helper function from mooseherder which will -# generate all possible combination for us in the correct data format. We just -# provide a dictionary of lists of unique parameters we want to analyse. Finally -# we print the unique combinations of parameters to the terminal as well as the -# total number of simulations to check everything is working as expected. - -moose_params = {"nElemX": (2,3,4), - "lengX": np.array([10e-3,15e-3]), - "PRatio":(0.3,)} -params = [moose_params,] -sweep_params = sweep_param_grid(params) - -print("\nParameter sweep variables by simulation:") -for ii,pp in enumerate(sweep_params): - print(f"Sim: {ii}, Params [moose,]: {pp}") - -print() -print(f"Total simulations = {len(sweep_params)}") -print() - -#%% -# The run once function of the herd allows us to run a particular single -# simulation chain from anywhere in the sweep. This is useful for debugging when -# you want to rerun a single case to see the output or what went wrong. The herd -# also stores the solution time for each single iteration so we will store this -# to estimate how long the whole sweep should take when solving sequentially. -herd.run_once(0,sweep_params[0]) -time_run_once = herd.get_iter_time() - - -#%% -# We can run the whole parameter sweep sequentially (one by one) using the run -# sequential function of the herd. We also store the total solution time -# for all simulation chains so that we can compare to a parallel run later. Note -# that it can be beneficial to run sequentially if you are using the herd within -# another loop or if one of the steps in your simulation chain is expensive and -# that step needs the computational resource. -herd.run_sequential(sweep_params) -time_run_seq = herd.get_sweep_time() - -#%% -# Finally, we can run our parameter sweep in parallel. We need a main guard here -# as we use the multi-processing package. We also store the sweep time for this -# case to compare our sequential to parallel run time. -if __name__ == "__main__": - herd.run_para(sweep_params) - time_run_para = herd.get_sweep_time() - -#%% -# Now that we have run all cases we can compare run times for a single -# simulation multiplied by the total number of simulations against runnning the -# sweep in parallel -print("-"*80) -print(f'Run time (one iter) = {time_run_once:.3f} seconds') -print(f'Est. time (one iter x num sims) = {(time_run_once*len(sweep_params)):.3f} seconds') -print() -print(f'Run time (seq) = {time_run_seq:.3f} seconds') -print(f'Run time (para) = {time_run_para:.3f} seconds') -print("-"*80) -print() - +def main() -> None: + + #%% + # First we are going to setup an input modifier and a runner for our moose + # simulation. Here we need to make sure that when we set our moose + # parallelisation options we leave enough threads for all the simulations that + # are running at once base on our CPU. It is also helpful to redirect stdout to + # file so that our terminal does not become a mess when we start running our + # simulations in parallel. + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_modifier = InputModifier(moose_input,'#','') + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + #%% + # Now we are going to create a directory manager which will be used to make sure + # our simulations are run in separate directories. We then create our herd + # workflow manager with our list of runners and corresponding input modifiers. + # In our case we are only running moose so our lists have a single item. The + # last thing we do is specify the number of simulations we want to run in + # parallel, for this case we match the number of directories. + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + #%% + # We need somewhere to run our simulations and store the output so we create our + # standard pyvale output directory and then we set this as the base directory + # for our directory manager. We clear any old output directories and then create + # new ones ready to write our simulation output to. + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + #%% + # We now need to generate the parameter combinations we want to run using our + # 'herd'. This is given as a list of list of dictionaries where the outer list + # corresponds to the unique simulation chain, the inner list corresponds to each + # simulation runner in the chain, and the dicitionary contains key value pairs + # where the keys are the variables names to edit in the input file. For this + # case we only have moose in our simulation chain so our inner list will only + # have a length of one but in the next example we will see how we can combine + # a parameter sweep with gmsh->moose sweeping all possible combinations of + # variables for both simulation tools. + # + # For now we are going to use a helper function from mooseherder which will + # generate all possible combination for us in the correct data format. We just + # provide a dictionary of lists of unique parameters we want to analyse. Finally + # we print the unique combinations of parameters to the terminal as well as the + # total number of simulations to check everything is working as expected. + + moose_params = {"nElemX": (2,3,4), + "lengX": np.array([10e-3,15e-3]), + "PRatio":(0.3,)} + params = [moose_params,] + sweep_params = sweep_param_grid(params) + + print("\nParameter sweep variables by simulation:") + for ii,pp in enumerate(sweep_params): + print(f"Sim: {ii}, Params [moose,]: {pp}") + + print() + print(f"Total simulations = {len(sweep_params)}") + print() + + #%% + # The run once function of the herd allows us to run a particular single + # simulation chain from anywhere in the sweep. This is useful for debugging when + # you want to rerun a single case to see the output or what went wrong. The herd + # also stores the solution time for each single iteration so we will store this + # to estimate how long the whole sweep should take when solving sequentially. + herd.run_once(0,sweep_params[0]) + time_run_once = herd.get_iter_time() + + + #%% + # We can run the whole parameter sweep sequentially (one by one) using the run + # sequential function of the herd. We also store the total solution time + # for all simulation chains so that we can compare to a parallel run later. Note + # that it can be beneficial to run sequentially if you are using the herd within + # another loop or if one of the steps in your simulation chain is expensive and + # that step needs the computational resource. + herd.run_sequential(sweep_params) + time_run_seq = herd.get_sweep_time() + + #%% + # Finally, we can run our parameter sweep in parallel. We need a main guard here + # as we use the multi-processing package. We also store the sweep time for this + # case to compare our sequential to parallel run time. + if __name__ == "__main__": + herd.run_para(sweep_params) + time_run_para = herd.get_sweep_time() + + #%% + # Now that we have run all cases we can compare run times for a single + # simulation multiplied by the total number of simulations against runnning the + # sweep in parallel + print("-"*80) + print(f'Run time (one iter) = {time_run_once:.3f} seconds') + print(f'Est. time (one iter x num sims) = {(time_run_once*len(sweep_params)):.3f} seconds') + print() + print(f'Run time (seq) = {time_run_seq:.3f} seconds') + print(f'Run time (para) = {time_run_para:.3f} seconds') + print("-"*80) + print() + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex4_run_gmsh-moose_seq_para.py b/src/pyvale/examples/mooseherder/ex4_run_gmsh-moose_seq_para.py index 7a8bb4167..6b73443a9 100644 --- a/src/pyvale/examples/mooseherder/ex4_run_gmsh-moose_seq_para.py +++ b/src/pyvale/examples/mooseherder/ex4_run_gmsh-moose_seq_para.py @@ -37,7 +37,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, MooseConfig, @@ -46,131 +46,150 @@ DirectoryManager, sweep_param_grid) -#%% -# First we setup our input modifer and runner for gmsh using the same 2D plate -# with a hole simulation test case from the pyvale simulation library. This is -# the same as we have seen in previous examples for the gmsh input modifier and -# running gmsh. -sim_case: int = 17 - -gmsh_input = dataset.sim_case_gmsh_file_path(case_num=sim_case) -gmsh_modifier = InputModifier(gmsh_input,"//",";") - -gmsh_path = Path.home() / "gmsh/bin/gmsh" -gmsh_runner = GmshRunner(gmsh_path) -gmsh_runner.set_input_file(gmsh_input) - - -#%% -# Next we setup our moose input modifier and runner in the same way as we have -# done in previous examples. We set our parallelisation options for moose here -# as well as redirecting stdout to file to save our terminal when we run in -# parallel. -moose_input = dataset.sim_case_input_file_path(case_num=sim_case) -moose_modifier = InputModifier(moose_input,"#","") - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -#%% -# We can now setup our 'herd' workflow manager making sure me place gmsh ahead -# of moose in the input modifier and runner lists so it is executed first to -# generate our mesh. We setup our directories and number of simulations to run -# in paralle as we have done previously. -num_para_sims: int = 4 - -sim_runners = [gmsh_runner,moose_runner] -input_modifiers = [gmsh_modifier,moose_modifier] -dir_manager = DirectoryManager(n_dirs=num_para_sims) - -herd = MooseHerd(sim_runners,input_modifiers,dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - - -#%% -# We need somewhere to run our simulations and store the output so we create our -# standard pyvale output directory and then we set this as the base directory -# for our directory manager. We clear any old output directories and then create -# new ones ready to write our simulation output to. -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.clear_dirs() -dir_manager.create_dirs() - -#%% -# We can now setup our grid parameter sweep to run simulations for all -# combinations of variables we are interested in. For now we will only change -# the parameters of our gmsh simulation so we set our moose parameters to None. -# For the gmsh simulation parameters we pass a dictionary keyed by the variable -# we want to change and then an iterable object (e.g. tuple, list, numpy array) -# for all values of the variable we want to run. We can also have an iterable of -# strings which will insert expressions into the input file for us as shown for -# the plate height below. If we only want to analyse a single value of a -# parameter we just pass an iterable with a single element. Note that the list -# of parameters that we pass to the sweep grid function should be in the same -# order we intend to call our simulation tools - so gmsh first in this case. -# -# After running this example replace the moose params with the following: -# ``moose_params = {"EMod": (70e9,100e9),"PRatio": (0.3,0.35)}``. This should -# demonstrate how all combinations of parameters between both gmsh and moose are -# generated using the sweep grid function. -gmsh_params = {"plate_width": np.array([150e-3,100e-3]), - "plate_height": ("plate_width + 100e-3", - "plate_width + 50e-3")} -moose_params = None -params = [gmsh_params,moose_params] -sweep_params = sweep_param_grid(params) - -print("\nParameter sweep variables by simulation:") -for ii,pp in enumerate(sweep_params): - print(f"Sim: {ii}, Params [gmsh,moose]: {pp}") - -#%% -# The run once function of the herd allows us to run a particular single -# simulation chain from anywhere in the sweep. This is useful for debugging when -# you want to rerun a single case to see the output or what went wrong. The herd -# also stores the solution time for each single iteration so we will store this -# to estimate how long the whole sweep should take when solving sequentially. -herd.run_once(0,sweep_params[0]) -time_run_once = herd.get_iter_time() - - -#%% -# We can run the whole parameter sweep sequentially (one by one) using the run -# sequential function of the herd. We also store the total solution time -# for all simulation chains so that we can compare to a parallel run later. Note -# that it can be beneficial to run sequentially if you are using the herd within -# another loop or if one of the steps in your simulation chain is expensive and -# that step needs the computational resource. -herd.run_sequential(sweep_params) -time_run_seq = herd.get_sweep_time() - -#%% -# Finally, we can run our parameter sweep in parallel. We need a main guard here -# as we use the multi-processing package. We also store the sweep time for this -# case to compare our sequential to parallel run time. -if __name__ == "__main__": - herd.run_para(sweep_params) - time_run_para = herd.get_sweep_time() - -#%% -# Now that we have run all cases we can compare run times for a single -# simulation multiplied by the total number of simulations against runnning the -# sweep in parallel -print("-"*80) -print(f'Run time (one iter) = {time_run_once:.3f} seconds') -print(f'Est. time (one iter x num sims) = {(time_run_once*len(sweep_params)):.3f} seconds') -print() -print(f'Run time (seq) = {time_run_seq:.3f} seconds') -print(f'Run time (para) = {time_run_para:.3f} seconds') -print("-"*80) -print() + +def main() -> None: + + #%% + # First we setup our input modifer and runner for gmsh using the same 2D plate + # with a hole simulation test case from the pyvale simulation library. This is + # the same as we have seen in previous examples for the gmsh input modifier and + # running gmsh. + sim_case: int = 17 + + gmsh_input = dataset.sim_case_gmsh_file_path(case_num=sim_case) + gmsh_modifier = InputModifier(gmsh_input,"//",";") + + gmsh_path = Path.home() / "gmsh/bin/gmsh" + gmsh_runner = GmshRunner(gmsh_path) + gmsh_runner.set_input_file(gmsh_input) + + + #%% + # Next we setup our moose input modifier and runner in the same way as we have + # done in previous examples. We set our parallelisation options for moose here + # as well as redirecting stdout to file to save our terminal when we run in + # parallel. + moose_input = dataset.sim_case_input_file_path(case_num=sim_case) + moose_modifier = InputModifier(moose_input,"#","") + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + #%% + # We can now setup our 'herd' workflow manager making sure me place gmsh ahead + # of moose in the input modifier and runner lists so it is executed first to + # generate our mesh. We setup our directories and number of simulations to run + # in paralle as we have done previously. + num_para_sims: int = 4 + + sim_runners = [gmsh_runner,moose_runner] + input_modifiers = [gmsh_modifier,moose_modifier] + dir_manager = DirectoryManager(n_dirs=num_para_sims) + + herd = MooseHerd(sim_runners,input_modifiers,dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + + #%% + # We need somewhere to run our simulations and store the output so we create our + # standard pyvale output directory and then we set this as the base directory + # for our directory manager. We clear any old output directories and then create + # new ones ready to write our simulation output to. + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.clear_dirs() + dir_manager.create_dirs() + + #%% + # We can now setup our grid parameter sweep to run simulations for all + # combinations of variables we are interested in. For now we will only change + # the parameters of our gmsh simulation so we set our moose parameters to None. + # For the gmsh simulation parameters we pass a dictionary keyed by the variable + # we want to change and then an iterable object (e.g. tuple, list, numpy array) + # for all values of the variable we want to run. We can also have an iterable of + # strings which will insert expressions into the input file for us as shown for + # the plate height below. If we only want to analyse a single value of a + # parameter we just pass an iterable with a single element. Note that the list + # of parameters that we pass to the sweep grid function should be in the same + # order we intend to call our simulation tools - so gmsh first in this case. + # + # After running this example replace the moose params with the following: + # ``moose_params = {"EMod": (70e9,100e9),"PRatio": (0.3,0.35)}``. This should + # demonstrate how all combinations of parameters between both gmsh and moose are + # generated using the sweep grid function. + gmsh_params = {"plate_width": np.array([150e-3,100e-3]), + "plate_height": ("plate_width + 100e-3", + "plate_width + 50e-3")} + moose_params = None + params = [gmsh_params,moose_params] + sweep_params = sweep_param_grid(params) + + print("\nParameter sweep variables by simulation:") + for ii,pp in enumerate(sweep_params): + print(f"Sim: {ii}, Params [gmsh,moose]: {pp}") + + #%% + # The run once function of the herd allows us to run a particular single + # simulation chain from anywhere in the sweep. This is useful for debugging when + # you want to rerun a single case to see the output or what went wrong. The herd + # also stores the solution time for each single iteration so we will store this + # to estimate how long the whole sweep should take when solving sequentially. + herd.run_once(0,sweep_params[0]) + time_run_once = herd.get_iter_time() + + + #%% + # We can run the whole parameter sweep sequentially (one by one) using the run + # sequential function of the herd. We also store the total solution time + # for all simulation chains so that we can compare to a parallel run later. Note + # that it can be beneficial to run sequentially if you are using the herd within + # another loop or if one of the steps in your simulation chain is expensive and + # that step needs the computational resource. + herd.run_sequential(sweep_params) + time_run_seq = herd.get_sweep_time() + + #%% + # Finally, we can run our parameter sweep in parallel. We need a main guard here + # as we use the multi-processing package. We also store the sweep time for this + # case to compare our sequential to parallel run time. + if __name__ == "__main__": + herd.run_para(sweep_params) + time_run_para = herd.get_sweep_time() + + #%% + # Now that we have run all cases we can compare run times for a single + # simulation multiplied by the total number of simulations against runnning the + # sweep in parallel + print("-"*80) + print(f'Run time (one iter) = {time_run_once:.3f} seconds') + print(f'Est. time (one iter x num sims) = {(time_run_once*len(sweep_params)):.3f} seconds') + print() + print(f'Run time (seq) = {time_run_seq:.3f} seconds') + print(f'Run time (para) = {time_run_para:.3f} seconds') + print("-"*80) + print() + + +from pyvale.mooseherder import gmsh_availability, moose_availability + +missing = [] +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + missing.append("MOOSE") +if not gmsh_availability().available: + missing.append("Gmsh") +if missing: + print(f"{' and '.join(missing)} unavailable: " + "skipping this example.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex5_run_moose_paramulti.py b/src/pyvale/examples/mooseherder/ex5_run_moose_paramulti.py index f64e96bb7..f8c4ee590 100644 --- a/src/pyvale/examples/mooseherder/ex5_run_moose_paramulti.py +++ b/src/pyvale/examples/mooseherder/ex5_run_moose_paramulti.py @@ -32,7 +32,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, MooseConfig, @@ -40,97 +40,104 @@ DirectoryManager, sweep_param_grid) -#%% -# First we setup an input modifier and runner for our moose simulation in -# exactly the same way as we have done in previous examples. - -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_modifier = InputModifier(moose_input,'#','') - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -#%% -# We use the moose input modifier and runner to create our herd workflow manager -# as we have seen in previous examples. -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - -#%% -# We need somewhere to run our simulations and store the output so we create our -# standard pyvale output directory as we have done in previous examples and then -# pass this to our directory manager. -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -#%% -# We generate a grid sweep of the variables we are interested in analysing as -# we have done previously and then print this to the console so we can check -# all combinations of variables that we want are present and that the total -# number of simulations makes sense. - -moose_params = {"nElemX": (2,3), - "lengX": np.array([10e-3,15e-3]), - "PRatio":(0.3,)} -params = [moose_params,] -sweep_params = sweep_param_grid(params) - -print("\nParameter sweep variables by simulation:") -for ii,pp in enumerate(sweep_params): - print(f"Sim: {ii}, Params [moose,]: {pp}") - -print() -print(f"Total simulations = {len(sweep_params)}") -print() - -#%% -# Here we are going to run the parameter sweep a certain number of times and -# while storing the total time to complete the parameter sweep each time. Once -# we have completed all the parameter sweeps we print the time taken for each -# sweep and the average sweep time to the console. -# -# Now if we inspect the simulation working directories in our pyvale-output -# directory we will see that all runs have been stored. If we need to clear -# the directories in between parallel sweeps we can call -# ``dir_manager.reset_dirs()`` and then we will only be left with one copy of -# the sweep output. Retaining all simulations is useful if we want to update -# the parameters we are passing to the ``run_para`` function every time it -# is called. - -num_para_runs: int = 3 - -if __name__ == '__main__': - sweep_times = np.zeros((num_para_runs,),dtype=np.float64) - for rr in range(num_para_runs): - herd.run_para(sweep_params) - sweep_times[rr] = herd.get_sweep_time() - - -print(80*"-") -for ii,ss in enumerate(sweep_times): - print(f"Sweep {ii} took: {ss:.3f}seconds") - -print(80*"-") -print(f"Average sweep time: {np.mean(sweep_times):.3f} seconds") -print(80*"-") - - - - - - - +def main() -> None: + + #%% + # First we setup an input modifier and runner for our moose simulation in + # exactly the same way as we have done in previous examples. + + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_modifier = InputModifier(moose_input,'#','') + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + #%% + # We use the moose input modifier and runner to create our herd workflow manager + # as we have seen in previous examples. + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + #%% + # We need somewhere to run our simulations and store the output so we create our + # standard pyvale output directory as we have done in previous examples and then + # pass this to our directory manager. + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + #%% + # We generate a grid sweep of the variables we are interested in analysing as + # we have done previously and then print this to the console so we can check + # all combinations of variables that we want are present and that the total + # number of simulations makes sense. + + moose_params = {"nElemX": (2,3), + "lengX": np.array([10e-3,15e-3]), + "PRatio":(0.3,)} + params = [moose_params,] + sweep_params = sweep_param_grid(params) + + print("\nParameter sweep variables by simulation:") + for ii,pp in enumerate(sweep_params): + print(f"Sim: {ii}, Params [moose,]: {pp}") + + print() + print(f"Total simulations = {len(sweep_params)}") + print() + + #%% + # Here we are going to run the parameter sweep a certain number of times and + # while storing the total time to complete the parameter sweep each time. Once + # we have completed all the parameter sweeps we print the time taken for each + # sweep and the average sweep time to the console. + # + # Now if we inspect the simulation working directories in our pyvale-output + # directory we will see that all runs have been stored. If we need to clear + # the directories in between parallel sweeps we can call + # ``dir_manager.reset_dirs()`` and then we will only be left with one copy of + # the sweep output. Retaining all simulations is useful if we want to update + # the parameters we are passing to the ``run_para`` function every time it + # is called. + + num_para_runs: int = 3 + + if __name__ == '__main__': + sweep_times = np.zeros((num_para_runs,),dtype=np.float64) + for rr in range(num_para_runs): + herd.run_para(sweep_params) + sweep_times[rr] = herd.get_sweep_time() + + + print(80*"-") + for ii,ss in enumerate(sweep_times): + print(f"Sweep {ii} took: {ss:.3f}seconds") + + print(80*"-") + print(f"Average sweep time: {np.mean(sweep_times):.3f} seconds") + print(80*"-") + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex6_read_moose_exodus.py b/src/pyvale/examples/mooseherder/ex6_read_moose_exodus.py index b3c426f4d..5e6d8f0ce 100644 --- a/src/pyvale/examples/mooseherder/ex6_read_moose_exodus.py +++ b/src/pyvale/examples/mooseherder/ex6_read_moose_exodus.py @@ -29,135 +29,149 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.sensorsim as sens from pyvale.mooseherder import (MooseRunner, MooseConfig, ExodusLoader) -#%% -# We also define a helper function that will print all attriubutes of a -# dataclas so we can see what it contains. This will be useful when we inspect -# what our ``SimData`` objects contain. -def print_attrs(in_obj: Any) -> None: - for field in dataclasses.fields(in_obj): - if not field.name.startswith('__'): - print(f" {field.name}: {field.type}") - -#%% -# We need to know where our simulation output is so we are going to create our -# standard pyvale-output directory, grab our simulation input file from the -# pyvale simulation library and then copy it to this directory to run. This -# means the output exodus will appear in the same directory as the input file. - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -moose_file = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_input = output_path / moose_file.name - -shutil.copyfile(moose_file,moose_input) - - -#%% -# We now create our moose runner with the same method we have used in previous -# examples. We run the simulation and time it, printing the solve time to the -# terminal. - -config = {"main_path": Path.home()/ "moose", - "app_path": Path.home() / "proteus", - "app_name": "proteus-opt"} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) - -moose_runner.set_run_opts(n_tasks=1, n_threads=4, redirect_out=True) - -moose_runner.set_input_file(moose_input) - -start_time = time.perf_counter() -moose_runner.run() -run_time = time.perf_counter() - start_time - -print("-"*80) -print(f"MOOSE run time = {run_time:.3f} seconds") -print("-"*80) - -#%% -# Now we create our exodus reader by giving it the path to the exodus file we -# want to read. By default moose creates an exodus output with the input file -# name with "_out.e" appended. -output_exodus = output_path / (moose_input.stem + "_out.e") -exodus_reader = ExodusLoader(output_exodus) - -print("\nReading exodus file with ExodusReader:") -print(output_exodus.resolve()) -print() - - -#%% -# We start with the simplest method which is to just read everything in the -# exodus file and return it as a ``SimData`` object. In some cases we will not -# want to read everything into memory so we will show how we can control this n -# next. -# -# We then use a helper function to print the sim data fields to the terminal so -# we can see the structure of the dataclass. The documentation for the -# ``SimData`` class provides descriptions of each of the fields and we -# recommend you check this out to understand the terminal output. -all_sim_data = exodus_reader.load_all_sim_data() -print("SimData from 'read_all':") -sens.simtools.print_sim_data(all_sim_data) - -#%% -# We are now going to read specific variables from the exodus output using a -# read configuration object. There are two ways to create this object. A good -# way to start is to use the exodus reader to return the read config that would -# extract all variables from the exodus as shown below. This is helpful as it -# will pre-populate the 'node', 'elem' and 'glob' variables with the appropriate -# dicitionary keys to read based on what is already in the exodus file. - -read_config = exodus_reader.get_read_config() -sens.simtools.print_dataclass_fields(read_config) - -#%% -# We set the 'node_vars' field to None to prevent the nodal variables being read -# from the exodus file. We then use the read function to return a ``SimData`` -# object and we print the 'node_vars' field to verify that it has not been read. -read_config.node_vars = None -sim_data = exodus_reader.load_sim_data(read_config) - -print("Read config without 'node_vars':") -print(f" {sim_data.node_vars=}") -print() - -#%% -# We can also turn off reading of the simulation time steps, nodal coordinates -# and the connectivity table by setting these flags to False in our read config. -read_config.time = False -read_config.coords = False -read_config.connect = False -sim_data = exodus_reader.load_sim_data(read_config) - -print("Read config without time, coords and connectivity:") -print(f" {sim_data.time=}") -print(f" {sim_data.coords=}") -print(f" {sim_data.connect=}") -print() - - -#%% -# We can also read specific keyed fields from 'node', 'elem' and 'glob' -# variables. Here we will read just the x displacement from the node variables. -# Note that for element variables you also need to specify the block number ( -# corresponding to the number X in the key for the connectivity table in the -# format "connectivityX" in the connectivity dictionary). - -read_config.node_vars = ("disp_x",) -sim_data = exodus_reader.load_sim_data(read_config) -print("Read config only extracting x displacement:") -print(f" {sim_data.node_vars.keys()=}") -print(f" {sim_data.node_vars['disp_x'].shape=}") -print() +def main() -> None: + + #%% + # We also define a helper function that will print all attriubutes of a + # dataclas so we can see what it contains. This will be useful when we inspect + # what our ``SimData`` objects contain. + def print_attrs(in_obj: Any) -> None: + for field in dataclasses.fields(in_obj): + if not field.name.startswith('__'): + print(f" {field.name}: {field.type}") + + #%% + # We need to know where our simulation output is so we are going to create our + # standard pyvale-output directory, grab our simulation input file from the + # pyvale simulation library and then copy it to this directory to run. This + # means the output exodus will appear in the same directory as the input file. + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + moose_file = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_input = output_path / moose_file.name + + shutil.copyfile(moose_file,moose_input) + + + #%% + # We now create our moose runner with the same method we have used in previous + # examples. We run the simulation and time it, printing the solve time to the + # terminal. + + config = {"main_path": Path.home()/ "moose", + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + + moose_runner.set_run_opts(n_tasks=1, n_threads=4, redirect_out=True) + + moose_runner.set_input_file(moose_input) + + start_time = time.perf_counter() + moose_runner.run() + run_time = time.perf_counter() - start_time + + print("-"*80) + print(f"MOOSE run time = {run_time:.3f} seconds") + print("-"*80) + + #%% + # Now we create our exodus reader by giving it the path to the exodus file we + # want to read. By default moose creates an exodus output with the input file + # name with "_out.e" appended. + output_exodus = output_path / (moose_input.stem + "_out.e") + exodus_reader = ExodusLoader(output_exodus) + + print("\nReading exodus file with ExodusReader:") + print(output_exodus.resolve()) + print() + + + #%% + # We start with the simplest method which is to just read everything in the + # exodus file and return it as a ``SimData`` object. In some cases we will not + # want to read everything into memory so we will show how we can control this n + # next. + # + # We then use a helper function to print the sim data fields to the terminal so + # we can see the structure of the dataclass. The documentation for the + # ``SimData`` class provides descriptions of each of the fields and we + # recommend you check this out to understand the terminal output. + all_sim_data = exodus_reader.load_all_sim_data() + print("SimData from 'read_all':") + sens.simtools.print_sim_data(all_sim_data) + + #%% + # We are now going to read specific variables from the exodus output using a + # read configuration object. There are two ways to create this object. A good + # way to start is to use the exodus reader to return the read config that would + # extract all variables from the exodus as shown below. This is helpful as it + # will pre-populate the 'node', 'elem' and 'glob' variables with the appropriate + # dicitionary keys to read based on what is already in the exodus file. + + read_config = exodus_reader.get_read_config() + sens.simtools.print_dataclass_fields(read_config) + + #%% + # We set the 'node_vars' field to None to prevent the nodal variables being read + # from the exodus file. We then use the read function to return a ``SimData`` + # object and we print the 'node_vars' field to verify that it has not been read. + read_config.node_vars = None + sim_data = exodus_reader.load_sim_data(read_config) + + print("Read config without 'node_vars':") + print(f" {sim_data.node_vars=}") + print() + + #%% + # We can also turn off reading of the simulation time steps, nodal coordinates + # and the connectivity table by setting these flags to False in our read config. + read_config.time = False + read_config.coords = False + read_config.connect = False + sim_data = exodus_reader.load_sim_data(read_config) + + print("Read config without time, coords and connectivity:") + print(f" {sim_data.time=}") + print(f" {sim_data.coords=}") + print(f" {sim_data.connect=}") + print() + + + #%% + # We can also read specific keyed fields from 'node', 'elem' and 'glob' + # variables. Here we will read just the x displacement from the node variables. + # Note that for element variables you also need to specify the block number ( + # corresponding to the number X in the key for the connectivity table in the + # format "connectivityX" in the connectivity dictionary). + + read_config.node_vars = ("disp_x",) + sim_data = exodus_reader.load_sim_data(read_config) + print("Read config only extracting x displacement:") + print(f" {sim_data.node_vars.keys()=}") + print(f" {sim_data.node_vars['disp_x'].shape=}") + print() + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex7a_read_moose_herd_results.py b/src/pyvale/examples/mooseherder/ex7a_read_moose_herd_results.py index d2c68faae..eb2ac3ea8 100644 --- a/src/pyvale/examples/mooseherder/ex7a_read_moose_herd_results.py +++ b/src/pyvale/examples/mooseherder/ex7a_read_moose_herd_results.py @@ -28,7 +28,7 @@ #pyvale imports import pyvale.sensorsim as sens -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, MooseConfig, @@ -37,117 +37,132 @@ SweepLoader, sweep_param_grid) -#%% -# In this first section we setup our herd workflow manager to run a parameter -# sweep of our moose simulation as we have done in previous examples. We run -# the parameter sweep and print the solve time to the terminal. The sweep -# output is in the standard pyvale-output directory we have used previously. -# In the next section we will read the output from the parameter sweep below. - -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_modifier = InputModifier(moose_input,'#','') - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -moose_params = {"nElemX": (2,3), - "lengX": np.array([10e-3,15e-3]), - "PRatio":(0.3,0.35)} -params = [moose_params,] -sweep_params = sweep_param_grid(params) - - -if __name__ == "__main__": - print('Running simulation parameter sweep in parallel.') - herd.run_para(sweep_params) - print(f'Run time (parallel) = {herd.get_sweep_time():.3f} seconds\n') - - -#%% -# To read the sweep output files we first create our sweep reader and pass it -# the same directory manager we used to run the sweep. We also set the number -# of simulation outputs to read in parallel when we call the read parallel -# function. We will see below that we can still read sequentially by calling -# read sequential functions and if the simulation output files are small it is -# likely to be faster to read them sequentially. -# -# We first use our sweep reader to inspect the output path keys to find the -# simulation output files that exist in the simulation working directories. - -sweep_reader = SweepLoader(dir_manager,num_para_read=4) -output_files = sweep_reader.read_all_output_file_keys() - -print('Sweep output files (from output_keys.json):') -for ff in output_files: - print(f" {ff}") -print() - -#%% -# Using the sweep reader we can read the results for a single simulation chain -# from the sweep. Our simulation chain only has a single moose simulation so -# the list of ``SimData`` objects we are returned only has a single element. -# We then use a helper function to print the contents of the ``SimData`` object -# to the terminal. -# -# We suggest you check out the documentation for the ``SimData`` object as it -# includes a detailed description of each of the relevant fields you might want -# to use for post-processing. -sim_data_list = sweep_reader.read_results_once(output_files[0]) -sens.simtools.print_sim_data(sim_data_list[0]) - -#%% -# We can use the sweep reader to read results for each simulation chain in the -# sweep sequentially with read sequential function. The sweep results we are -# returned is a list of list of data classes where the outer list corresponds to -# the unique simulation chain in the sweep and the inner list corresponds to the -# the results for the particular simulation tool in the chain. -# -# After reading the sweep results we print the inner and outer list lengths. We -# have 8 unique simulation chains with a single simulation tool (moose) in the -# chain. -start_time = time.perf_counter() -sweep_results_seq = sweep_reader.read_sequential() -read_time_seq = time.perf_counter() - start_time - -print("Outer list = unique simulation chain:") -print(f" {len(sweep_results_seq)=}") -print("Inner list = particular simulation tool in the chain:") -print(f" {len(sweep_results_seq[0])=}") -print("'SimData' object for the particular simulation tool:") -print(f" {type(sweep_results_seq[0][0])=}") -print() - -#%% -# Finally, we read the same sweep in parallel making sure we include a main -# guard as we will be using the multi-processing package to do this. We then -# print the read time to the console for the sequential and parallel reads. -if __name__ == '__main__': + +def main() -> None: + + #%% + # In this first section we setup our herd workflow manager to run a parameter + # sweep of our moose simulation as we have done in previous examples. We run + # the parameter sweep and print the solve time to the terminal. The sweep + # output is in the standard pyvale-output directory we have used previously. + # In the next section we will read the output from the parameter sweep below. + + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_modifier = InputModifier(moose_input,'#','') + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + moose_params = {"nElemX": (2,3), + "lengX": np.array([10e-3,15e-3]), + "PRatio":(0.3,0.35)} + params = [moose_params,] + sweep_params = sweep_param_grid(params) + + + if __name__ == "__main__": + print('Running simulation parameter sweep in parallel.') + herd.run_para(sweep_params) + print(f'Run time (parallel) = {herd.get_sweep_time():.3f} seconds\n') + + + #%% + # To read the sweep output files we first create our sweep reader and pass it + # the same directory manager we used to run the sweep. We also set the number + # of simulation outputs to read in parallel when we call the read parallel + # function. We will see below that we can still read sequentially by calling + # read sequential functions and if the simulation output files are small it is + # likely to be faster to read them sequentially. + # + # We first use our sweep reader to inspect the output path keys to find the + # simulation output files that exist in the simulation working directories. + + sweep_reader = SweepLoader(dir_manager,num_para_read=4) + output_files = sweep_reader.read_all_output_file_keys() + + print('Sweep output files (from output_keys.json):') + for ff in output_files: + print(f" {ff}") + print() + + #%% + # Using the sweep reader we can read the results for a single simulation chain + # from the sweep. Our simulation chain only has a single moose simulation so + # the list of ``SimData`` objects we are returned only has a single element. + # We then use a helper function to print the contents of the ``SimData`` object + # to the terminal. + # + # We suggest you check out the documentation for the ``SimData`` object as it + # includes a detailed description of each of the relevant fields you might want + # to use for post-processing. + sim_data_list = sweep_reader.read_results_once(output_files[0]) + sens.simtools.print_sim_data(sim_data_list[0]) + + #%% + # We can use the sweep reader to read results for each simulation chain in the + # sweep sequentially with read sequential function. The sweep results we are + # returned is a list of list of data classes where the outer list corresponds to + # the unique simulation chain in the sweep and the inner list corresponds to the + # the results for the particular simulation tool in the chain. + # + # After reading the sweep results we print the inner and outer list lengths. We + # have 8 unique simulation chains with a single simulation tool (moose) in the + # chain. start_time = time.perf_counter() - sweep_results_para = sweep_reader.read_results_para() - read_time_para = time.perf_counter() - start_time - -print() -print("-"*80) -print(f'Read time sequential = {read_time_seq:.6f} seconds') -print(f'Read time parallel = {read_time_para:.6f} seconds') -print("-"*80) -print() + sweep_results_seq = sweep_reader.read_sequential() + read_time_seq = time.perf_counter() - start_time + + print("Outer list = unique simulation chain:") + print(f" {len(sweep_results_seq)=}") + print("Inner list = particular simulation tool in the chain:") + print(f" {len(sweep_results_seq[0])=}") + print("'SimData' object for the particular simulation tool:") + print(f" {type(sweep_results_seq[0][0])=}") + print() + + #%% + # Finally, we read the same sweep in parallel making sure we include a main + # guard as we will be using the multi-processing package to do this. We then + # print the read time to the console for the sequential and parallel reads. + if __name__ == '__main__': + start_time = time.perf_counter() + sweep_results_para = sweep_reader.read_results_para() + read_time_para = time.perf_counter() - start_time + + print() + print("-"*80) + print(f'Read time sequential = {read_time_seq:.6f} seconds') + print(f'Read time parallel = {read_time_para:.6f} seconds') + print("-"*80) + print() + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex7b_read_multi_herd_results.py b/src/pyvale/examples/mooseherder/ex7b_read_multi_herd_results.py index 236343319..9dffc7c02 100644 --- a/src/pyvale/examples/mooseherder/ex7b_read_multi_herd_results.py +++ b/src/pyvale/examples/mooseherder/ex7b_read_multi_herd_results.py @@ -28,7 +28,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, MooseConfig, @@ -38,79 +38,93 @@ sweep_param_grid) -#%% -# The first part of this example is the same as our previous example called: -# 'Using multiple calls to run parallel sweeps'. For a detailed explanation of -# the code below head to that example. For now we use this to generate multiple -# sets of outputs and then use a sweep reader to read this all in below. - -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_modifier = InputModifier(moose_input,'#','') - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -moose_params = {"nElemX": (2,3), - "lengX": np.array([10e-3,15e-3]), - "PRatio":(0.3,)} -params = [moose_params,] -sweep_params = sweep_param_grid(params) - -print("\nParameter sweep variables by simulation:") -for ii,pp in enumerate(sweep_params): - print(f"Sim: {ii}, Params [moose,]: {pp}") - -num_para_runs: int = 3 -if __name__ == '__main__': - sweep_times = np.zeros((num_para_runs,),dtype=np.float64) - for rr in range(num_para_runs): - herd.run_para(sweep_params) - sweep_times[rr] = herd.get_sweep_time() - -print() -for ii,ss in enumerate(sweep_times): - print(f"Sweep {ii} took: {ss:.3f}seconds") -print() - -#%% -# Here we will just read all the results sequentially and verify that we have -# the number of simulation results we expect for the multiple calls above. -# Looking at our parameter sweep we have 4 unique combination of variables and -# we ran this 3 times so we expect to have a total of 12 simulation results in -# our outer list which we print below. Note that our inner list still has a -# single ``SimData`` object as we only have a single moose simulation in our -# simulation chain. -sweep_reader = SweepLoader(dir_manager) -start_time = time.perf_counter() -sweep_results_seq = sweep_reader.read_sequential() -read_time_seq = time.perf_counter() - start_time - -print("Outer list = unique simulation chain:") -print(f" {len(sweep_results_seq)=}") -print("Inner list = particular simulation tool in the chain:") -print(f" {len(sweep_results_seq[0])=}") -print("'SimData' object for the particular simulation tool:") -print(f" {type(sweep_results_seq[0][0])=}") -print() - -print(f'Read time (sequential) = {read_time_seq:.6f} seconds') - +def main() -> None: + + + #%% + # The first part of this example is the same as our previous example called: + # 'Using multiple calls to run parallel sweeps'. For a detailed explanation of + # the code below head to that example. For now we use this to generate multiple + # sets of outputs and then use a sweep reader to read this all in below. + + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_modifier = InputModifier(moose_input,'#','') + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + moose_params = {"nElemX": (2,3), + "lengX": np.array([10e-3,15e-3]), + "PRatio":(0.3,)} + params = [moose_params,] + sweep_params = sweep_param_grid(params) + + print("\nParameter sweep variables by simulation:") + for ii,pp in enumerate(sweep_params): + print(f"Sim: {ii}, Params [moose,]: {pp}") + + num_para_runs: int = 3 + if __name__ == '__main__': + sweep_times = np.zeros((num_para_runs,),dtype=np.float64) + for rr in range(num_para_runs): + herd.run_para(sweep_params) + sweep_times[rr] = herd.get_sweep_time() + + print() + for ii,ss in enumerate(sweep_times): + print(f"Sweep {ii} took: {ss:.3f}seconds") + print() + + #%% + # Here we will just read all the results sequentially and verify that we have + # the number of simulation results we expect for the multiple calls above. + # Looking at our parameter sweep we have 4 unique combination of variables and + # we ran this 3 times so we expect to have a total of 12 simulation results in + # our outer list which we print below. Note that our inner list still has a + # single ``SimData`` object as we only have a single moose simulation in our + # simulation chain. + sweep_reader = SweepLoader(dir_manager) + start_time = time.perf_counter() + sweep_results_seq = sweep_reader.read_sequential() + read_time_seq = time.perf_counter() - start_time + + print("Outer list = unique simulation chain:") + print(f" {len(sweep_results_seq)=}") + print("Inner list = particular simulation tool in the chain:") + print(f" {len(sweep_results_seq[0])=}") + print("'SimData' object for the particular simulation tool:") + print(f" {type(sweep_results_seq[0][0])=}") + print() + + print(f'Read time (sequential) = {read_time_seq:.6f} seconds') + + +from pyvale.mooseherder import moose_availability + +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + print("MOOSE is unavailable: skipping this example.") + print("This example requires the proteus MOOSE application " + "in ~/proteus.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex7c_read_multi_gmshmoose_results.py b/src/pyvale/examples/mooseherder/ex7c_read_multi_gmshmoose_results.py index e3960a188..1e9f3881f 100644 --- a/src/pyvale/examples/mooseherder/ex7c_read_multi_gmshmoose_results.py +++ b/src/pyvale/examples/mooseherder/ex7c_read_multi_gmshmoose_results.py @@ -33,7 +33,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, GmshRunner, @@ -43,85 +43,104 @@ SweepLoader, sweep_param_grid) -#%% -# The first part of this example is the same as the previous example we have -# seen running a parallel parameter sweep for gmsh+moose using the herd workflow -# manager. If you are not familiar with the code below go back to the example -# entitled 'Running a parameter sweep of a Gmsh and MOOSE simulation'. -# Otherwise you can skip down to the next code block where we will read the -# output of the sweep and compare it to what we have seen previously. -sim_case: int = 17 - -gmsh_input = dataset.sim_case_gmsh_file_path(case_num=sim_case) -gmsh_modifier = InputModifier(gmsh_input,"//",";") - -gmsh_runner = GmshRunner(gmsh_path=(Path.home() / "gmsh/bin/gmsh")) -gmsh_runner.set_input_file(gmsh_input) - -moose_input = dataset.sim_case_input_file_path(case_num=sim_case) -moose_modifier = InputModifier(moose_input,"#","") - -moose_config = MooseConfig({'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'}) -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([gmsh_runner,moose_runner], - [gmsh_modifier,moose_modifier], - dir_manager, - num_para_sims) - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -gmsh_params = {"plate_width": np.array([150e-3,100e-3]), - "plate_height": ("plate_width + 100e-3", - "plate_width + 50e-3")} -moose_params = None -sweep_params = sweep_param_grid([gmsh_params,moose_params]) - -if __name__ == "__main__": - herd.run_para(sweep_params) - time_run_para = herd.get_sweep_time() - - -print(f'Sweep run time (para) = {time_run_para:.3f} seconds\n') - -#%% -# We now pass the directory manager we used for the sweep to our sweep reader -# and then we read in the sweep results sequentially. As we have seen before -# our sweep results are given as a list of lists where the outer list is the -# unique simulation chain in our parameter sweep and the inner list corresponds -# to each simulation tool in the chain. In this case we have gmsh and moose so -# our inner list should have a length of 2. - -sweep_reader = SweepLoader(dir_manager,num_para_read=4) - -start_time = time.perf_counter() -sweep_results_seq = sweep_reader.read_sequential() -read_time_seq = time.perf_counter() - start_time - -print(f'Read time sequential = {read_time_seq:.6f} seconds\n') - -print("Outer list = unique simulation chain:") -print(f" {len(sweep_results_seq)=}") -print("Inner list = particular simulation tool in the chain:") -print(f" {len(sweep_results_seq[0])=}") -print() - -#%% -# As gmsh does not have any simulation output we can read as a ``SimData`` -# object we see that our inner sweep results list has 'None' in the position -# corresponding to gmsh (the 0 index). We also see we have our moose output as -# a ``SimData`` object at the 1 index of the inner list. -print(f"{type(sweep_results_seq[0][0])=}") -print(f"{type(sweep_results_seq[0][1])=}") + +def main() -> None: + + #%% + # The first part of this example is the same as the previous example we have + # seen running a parallel parameter sweep for gmsh+moose using the herd workflow + # manager. If you are not familiar with the code below go back to the example + # entitled 'Running a parameter sweep of a Gmsh and MOOSE simulation'. + # Otherwise you can skip down to the next code block where we will read the + # output of the sweep and compare it to what we have seen previously. + sim_case: int = 17 + + gmsh_input = dataset.sim_case_gmsh_file_path(case_num=sim_case) + gmsh_modifier = InputModifier(gmsh_input,"//",";") + + gmsh_runner = GmshRunner(gmsh_path=(Path.home() / "gmsh/bin/gmsh")) + gmsh_runner.set_input_file(gmsh_input) + + moose_input = dataset.sim_case_input_file_path(case_num=sim_case) + moose_modifier = InputModifier(moose_input,"#","") + + moose_config = MooseConfig({'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'}) + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([gmsh_runner,moose_runner], + [gmsh_modifier,moose_modifier], + dir_manager, + num_para_sims) + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + gmsh_params = {"plate_width": np.array([150e-3,100e-3]), + "plate_height": ("plate_width + 100e-3", + "plate_width + 50e-3")} + moose_params = None + sweep_params = sweep_param_grid([gmsh_params,moose_params]) + + if __name__ == "__main__": + herd.run_para(sweep_params) + time_run_para = herd.get_sweep_time() + + + print(f'Sweep run time (para) = {time_run_para:.3f} seconds\n') + + #%% + # We now pass the directory manager we used for the sweep to our sweep reader + # and then we read in the sweep results sequentially. As we have seen before + # our sweep results are given as a list of lists where the outer list is the + # unique simulation chain in our parameter sweep and the inner list corresponds + # to each simulation tool in the chain. In this case we have gmsh and moose so + # our inner list should have a length of 2. + + sweep_reader = SweepLoader(dir_manager,num_para_read=4) + + start_time = time.perf_counter() + sweep_results_seq = sweep_reader.read_sequential() + read_time_seq = time.perf_counter() - start_time + + print(f'Read time sequential = {read_time_seq:.6f} seconds\n') + + print("Outer list = unique simulation chain:") + print(f" {len(sweep_results_seq)=}") + print("Inner list = particular simulation tool in the chain:") + print(f" {len(sweep_results_seq[0])=}") + print() + + #%% + # As gmsh does not have any simulation output we can read as a ``SimData`` + # object we see that our inner sweep results list has 'None' in the position + # corresponding to gmsh (the 0 index). We also see we have our moose output as + # a ``SimData`` object at the 1 index of the inner list. + print(f"{type(sweep_results_seq[0][0])=}") + print(f"{type(sweep_results_seq[0][1])=}") + + +from pyvale.mooseherder import gmsh_availability, moose_availability + +missing = [] +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + missing.append("MOOSE") +if not gmsh_availability().available: + missing.append("Gmsh") +if missing: + print(f"{' and '.join(missing)} unavailable: " + "skipping this example.") +else: + main() diff --git a/src/pyvale/examples/mooseherder/ex7d_readconfig_multi_gmshmoose_results.py b/src/pyvale/examples/mooseherder/ex7d_readconfig_multi_gmshmoose_results.py index 6485aef82..7b127e432 100644 --- a/src/pyvale/examples/mooseherder/ex7d_readconfig_multi_gmshmoose_results.py +++ b/src/pyvale/examples/mooseherder/ex7d_readconfig_multi_gmshmoose_results.py @@ -31,7 +31,7 @@ import numpy as np #pyvale imports -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.mooseherder import (MooseHerd, MooseRunner, MooseConfig, @@ -41,103 +41,121 @@ SweepLoader, sweep_param_grid) -#%% -# The first part of this example is the same as our previous example called: -# 'Using multiple calls to run parallel sweeps'. For a detailed explanation of -# the code below head to that example. For now we use this to generate multiple -# sets of outputs and then use a sweep reader to read this all in below. - -moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) -moose_modifier = InputModifier(moose_input,'#','') - -config = {'main_path': Path.home()/ 'moose', - 'app_path': Path.home() / 'proteus', - 'app_name': 'proteus-opt'} -moose_config = MooseConfig(config) - -moose_runner = MooseRunner(moose_config) -moose_runner.set_run_opts(n_tasks = 1, - n_threads = 2, - redirect_out = True) - -num_para_sims: int = 4 -dir_manager = DirectoryManager(n_dirs=num_para_sims) -herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) -herd.set_num_para_sims(n_para=num_para_sims) - -output_path = Path.cwd() / "pyvale-output" -if not output_path.is_dir(): - output_path.mkdir(parents=True, exist_ok=True) - -dir_manager.set_base_dir(output_path) -dir_manager.reset_dirs() - -moose_params = {"nElemX": (2,3), - "lengX": np.array([10e-3,15e-3]), - "PRatio":(0.3,)} -params = [moose_params,] -sweep_params = sweep_param_grid(params) - -print("\nParameter sweep variables by simulation:") -for ii,pp in enumerate(sweep_params): - print(f"Sim: {ii}, Params [moose,]: {pp}") - -num_para_runs: int = 3 -if __name__ == '__main__': - sweep_times = np.zeros((num_para_runs,),dtype=np.float64) - for rr in range(num_para_runs): - herd.run_para(sweep_params) - sweep_times[rr] = herd.get_sweep_time() - -print() -for ii,ss in enumerate(sweep_times): - print(f"Sweep {ii} took: {ss:.3f}seconds") -print() - - -#%% -# Now we create a sweep reader as we have done before and we will use this to -# read the json keys containing the paths to all the output files. The output -# file paths have the same list of lists structure we get when we read the -# sweep data where the outer list corresponds to the unique simulation chain and -# the inner list corresponds to position of the specific simulation tool in the -# chain. -# - -sweep_reader = SweepLoader(dir_manager,num_para_read=4) -output_file_paths = sweep_reader.read_all_output_file_keys() - - -#%% -# When we used a read configuration with our exodus reader previously we saw -# that it can be simpler to get the read configuration that covers everything -# in our file and then edit it to extract what we want. Here we are use our -# exodus reader to extract the read configuration fo the first simulation. -# We also get the original sim data so we can compare to the case when we use -# a read configuration to control what we read. -# -# Now we want to edit the read configuration so that we only read every second -# time step from our simulation output files. We do this by getting the -# original time steps with our exodus reader and then using this to change the -# ``time_inds`` field of our read configuration to extract every second step. -exodus_reader = ExodusLoader(output_file_paths[0][0]) -sim_data_orig = exodus_reader.load_all_sim_data() - -read_config = exodus_reader.get_read_config() -sim_time = exodus_reader.get_time() -read_config.time_inds = np.arange(0,sim_time.shape[0],2) - -#%% -# Now we read the sweep results using our read configuration and then check -# extracted simulation data object to see that we have every second time step. -sweep_results_seq = sweep_reader.read_sequential(read_config=read_config) - -print("Comparison of time steps extracted:") -print() -print(f"{sim_data_orig.time.shape=}") -print(f"{sweep_results_seq[0][0].time.shape=}") -print() -print(f"{sim_data_orig.node_vars['disp_x'].shape=}") -print(f"{sweep_results_seq[0][0].node_vars['disp_x'].shape=}") -print() +def main() -> None: + + #%% + # The first part of this example is the same as our previous example called: + # 'Using multiple calls to run parallel sweeps'. For a detailed explanation of + # the code below head to that example. For now we use this to generate multiple + # sets of outputs and then use a sweep reader to read this all in below. + + moose_input = dataset.element_case_input_path(dataset.EElemTest.HEX20) + moose_modifier = InputModifier(moose_input,'#','') + + config = {'main_path': Path.home()/ 'moose', + 'app_path': Path.home() / 'proteus', + 'app_name': 'proteus-opt'} + moose_config = MooseConfig(config) + + moose_runner = MooseRunner(moose_config) + moose_runner.set_run_opts(n_tasks = 1, + n_threads = 2, + redirect_out = True) + + num_para_sims: int = 4 + dir_manager = DirectoryManager(n_dirs=num_para_sims) + herd = MooseHerd([moose_runner],[moose_modifier],dir_manager) + herd.set_num_para_sims(n_para=num_para_sims) + + output_path = Path.cwd() / "pyvale-output" + if not output_path.is_dir(): + output_path.mkdir(parents=True, exist_ok=True) + + dir_manager.set_base_dir(output_path) + dir_manager.reset_dirs() + + moose_params = {"nElemX": (2,3), + "lengX": np.array([10e-3,15e-3]), + "PRatio":(0.3,)} + params = [moose_params,] + sweep_params = sweep_param_grid(params) + + print("\nParameter sweep variables by simulation:") + for ii,pp in enumerate(sweep_params): + print(f"Sim: {ii}, Params [moose,]: {pp}") + + num_para_runs: int = 3 + if __name__ == '__main__': + sweep_times = np.zeros((num_para_runs,),dtype=np.float64) + for rr in range(num_para_runs): + herd.run_para(sweep_params) + sweep_times[rr] = herd.get_sweep_time() + + print() + for ii,ss in enumerate(sweep_times): + print(f"Sweep {ii} took: {ss:.3f}seconds") + print() + + + #%% + # Now we create a sweep reader as we have done before and we will use this to + # read the json keys containing the paths to all the output files. The output + # file paths have the same list of lists structure we get when we read the + # sweep data where the outer list corresponds to the unique simulation chain and + # the inner list corresponds to position of the specific simulation tool in the + # chain. + # + + sweep_reader = SweepLoader(dir_manager,num_para_read=4) + output_file_paths = sweep_reader.read_all_output_file_keys() + + + #%% + # When we used a read configuration with our exodus reader previously we saw + # that it can be simpler to get the read configuration that covers everything + # in our file and then edit it to extract what we want. Here we are use our + # exodus reader to extract the read configuration fo the first simulation. + # We also get the original sim data so we can compare to the case when we use + # a read configuration to control what we read. + # + # Now we want to edit the read configuration so that we only read every second + # time step from our simulation output files. We do this by getting the + # original time steps with our exodus reader and then using this to change the + # ``time_inds`` field of our read configuration to extract every second step. + exodus_reader = ExodusLoader(output_file_paths[0][0]) + sim_data_orig = exodus_reader.load_all_sim_data() + + read_config = exodus_reader.get_read_config() + sim_time = exodus_reader.get_time() + read_config.time_inds = np.arange(0,sim_time.shape[0],2) + + #%% + # Now we read the sweep results using our read configuration and then check + # extracted simulation data object to see that we have every second time step. + sweep_results_seq = sweep_reader.read_sequential(read_config=read_config) + + print("Comparison of time steps extracted:") + print() + print(f"{sim_data_orig.time.shape=}") + print(f"{sweep_results_seq[0][0].time.shape=}") + print() + print(f"{sim_data_orig.node_vars['disp_x'].shape=}") + print(f"{sweep_results_seq[0][0].node_vars['disp_x'].shape=}") + print() + + +from pyvale.mooseherder import gmsh_availability, moose_availability + +missing = [] +if not moose_availability({ + "app_path": Path.home() / "proteus", + "app_name": "proteus-opt"}).available: + missing.append("MOOSE") +if not gmsh_availability().available: + missing.append("Gmsh") +if missing: + print(f"{' and '.join(missing)} unavailable: " + "skipping this example.") +else: + main() diff --git a/src/pyvale/examples/rasterimagedef/ex_rastenp.py b/src/pyvale/examples/rasterimagedef/ex_rastenp.py deleted file mode 100644 index c6eecfd16..000000000 --- a/src/pyvale/examples/rasterimagedef/ex_rastenp.py +++ /dev/null @@ -1,194 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -from pathlib import Path -import copy -import time -import numpy as np -from scipy.spatial.transform import Rotation -import matplotlib.pyplot as plt - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.mooseherder as mh - -# TODO -# - Fix the image averaging function to use cython -# - Saving of the rendered images for post processing or analysis -# - Collapse image display functions into visual to simplify code -# -# CAMERA: -# - Need option to work camera rotation based on a given position -# - The z axis is easy as we can just do roi-cam_pos but what about x and y -# -# SCENE OBJECT: -# - Allow multiple objects in the scene with their own transformations -# - Allow multiple cameras in the scene - - -def main() -> None: - """Basics rasterisation field renderer - ---------------------------------------------------------------------------- - """ - # This a path to an exodus *.e output file from MOOSE, this can be - # replaced with a path to your own simulation file - sim_path = Path.home()/"pyvale"/"src"/"pyvale"/"simcases"/"case21_out.e" - #sim_path = sens.DataSet.render_mechanical_3d_path() - - disp_comps = ("disp_x","disp_y","disp_z") - - sim_data = mh.ExodusLoader(sim_path).load_all_sim_data() - - # Scale m -> mm - sim_data = sens.scale_length_units(1000.0,sim_data,disp_comps) - - # Extracts the surface mesh from a full 3d simulation for rendering - render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=3, - field_disp_keys=disp_comps) - - #=========================================================================== - # render_mesh.fields_render = render_mesh.fields_render[:,-2:-1,:] - # render_mesh.fields_disp = render_mesh.fields_disp[:,-2:-1,:] - # render_mesh.fields_disp = None - #=========================================================================== - - meshes = [render_mesh,copy.deepcopy(render_mesh)] - meshes[1].set_pos(np.array((0.0,12.5,0.0))) - meshes[1].set_rot(Rotation.from_euler("zyx",(0.0, 0.0, 0.0),degrees=True)) - meshes[1].fields_disp = None - coords_all = sens.get_all_coords_world(meshes) - - print() - print(80*"-") - print("MESH DATA:") - print(80*"-") - print("connectivity.shape=(num_elems,num_nodes_per_elem)") - print(f"{render_mesh.connectivity.shape=}") - print() - print("coords.shape=(num_nodes,coord[x,y,z])") - print(f"{render_mesh.coords.shape=}") - print() - print("fields.shape=(num_coords,num_time_steps,num_components)") - print(f"{render_mesh.fields_render.shape=}") - if render_mesh.fields_disp is not None: - print(f"{render_mesh.fields_disp.shape=}") - print(80*"-") - print() - - pixel_num = np.array((960,1280)) - pixel_size = np.array((5.3e-3,5.3e-3)) - focal_leng: float = 50 - cam_rot = Rotation.from_euler("zyx",(0.0, 0.0, -30.0),degrees=True) - fov_scale_factor: float = 1.0 - - (roi_pos_world, - cam_pos_world) = sens.CameraTools.pos_fill_frame( - coords_world=coords_all, - pixel_num=pixel_num, - pixel_size=pixel_size, - focal_leng=focal_leng, - cam_rot=cam_rot, - frame_fill=fov_scale_factor, - ) - - cam_data = sens.CameraData( - pixels_num=pixel_num, - pixels_size=pixel_size, - pos_world=cam_pos_world, - rot_world=cam_rot, - roi_cent_world=roi_pos_world, - focal_length=focal_leng, - sub_samp=2, - back_face_removal=True, - ) - - print(80*"-") - print("CAMERA DATA:") - print(80*"-") - print(f"{roi_pos_world=}") - print(f"{cam_pos_world=}") - print() - print("World to camera matrix:") - print(cam_data.world_to_cam_mat) - print(80*"-") - - scene = sens.RenderScene([cam_data,cam_data],meshes) - - frames_per_camera = (scene.meshes[0].fields_render.shape[1] - *scene.meshes[0].fields_render.shape[2]) - frames_total = frames_per_camera*len(scene.cameras) - - print(80*"-") - print("RENDER SCENE:") - print(f"Cameras #: {len(scene.cameras)}") - print(f"Meshes #: {len(scene.meshes)}") - print() - print(f"Time steps: {scene.meshes[0].fields_render.shape[1]}") - print(f"Field #: {scene.meshes[0].fields_render.shape[2]}") - print() - print(f"Frames per camera: {frames_per_camera}") - print(f"Frames total: {frames_total}") - print(80*"-") - - - #=========================================================================== - print() - print(80*"=") - print("IN MEM: Raster Loop start") - - raster_opts = sens.RasterOpts(parallel=8) - renderer = sens.RasterNumpy(raster_opts) - - time_start_loop = time.perf_counter() - - images = renderer.render_all(scene) - - time_end_loop = time.perf_counter() - time_inmem = time_end_loop - time_start_loop - - print(f"{images[0].shape=}") - print(f"{images[1].shape=}") - print("IN MEM: Raster Loop End") - print(80*"=") - - - print(80*"=") - print("TO DISK: Raster Loop start") - save_path = Path.cwd()/"pyvale-output" - if not save_path.is_dir(): - save_path.mkdir(parents=True, exist_ok=True) - - time_start_loop = time.perf_counter() - - renderer.render_all_to_disk(scene,save_path) - - time_end_loop = time.perf_counter() - time_to_disk = time_end_loop - time_start_loop - - print("TO DISK: Raster Loop End") - print(80*"=") - - - print("PERFORMANCE") - print(f"Total frames = {frames_total}") - print(f"IN MEM: Total render time = {time_inmem:.4f} s") - print(f"IN MEM: Time per frame = {(time_inmem/frames_total):.4f} s") - print(f"TO DISK: Total render time = {time_to_disk:.4f} s") - print(f"TO DISK: Time per frame = {(time_to_disk/frames_total):.4f} s") - print(80*"=") - - - plot_on = True - if plot_on: - (fig,ax) = sens.plot_field_image(images[1][:,:,-1,0], - title_str="Disp. y, [mm]") - - plt.show() - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/src/pyvale/examples/rasterimagedef/ex_rastercyth_oneframe.py b/src/pyvale/examples/rasterimagedef/ex_rastercyth_oneframe.py deleted file mode 100644 index f8f0ee9b3..000000000 --- a/src/pyvale/examples/rasterimagedef/ex_rastercyth_oneframe.py +++ /dev/null @@ -1,206 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== -from pathlib import Path -import time -import numpy as np -from scipy.spatial.transform import Rotation -import matplotlib.pyplot as plt - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.mooseherder as mh - -def main() -> None: - print() - print(80*"=") - print("RASTER CYTHON FILE (should be *.so on Linux):") - print(sens.rastercyth.__file__) - print(80*"=") - print() - - # This a path to an exodus *.e output file from MOOSE, this can be - # replaced with a path to your own simulation file - sim_path = Path.home()/"pyvale"/"src"/"pyvale"/"simcases"/"case26_out.e" - - #sim_path = sens.dataset.render_simple_block_path() - #sim_path = sens.dataSet.render_mechanical_3d_path() - sim_data = mh.ExodusLoader(sim_path).load_all_sim_data() - - disp_comps = ("disp_x","disp_y","disp_z") - - # Scale m -> mm - sim_data = sens.scale_length_units(1000.0,sim_data,disp_comps) - - print() - print(f"{np.max(np.abs(sim_data.node_vars['disp_x']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_y']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_z']))=}") - print() - - # Extracts the surface mesh from a full 3d simulation for rendering - render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x","disp_z"), - sim_spat_dim=3, - field_disp_keys=disp_comps) - - - pixel_num = np.array((960,1280),dtype=np.int32) - pixel_size = np.array((5.3e-3,5.3e-3),dtype=np.float64) - focal_leng: float = 50.0 - cam_rot = Rotation.from_euler("ZYX",(0.0,-30.0,-10.0),degrees=True) - fov_scale_factor: float = 1.1 - - (roi_pos_world, - cam_pos_world) = sens.CameraTools.pos_fill_frame( - coords_world=render_mesh.coords, - pixel_num=pixel_num, - pixel_size=pixel_size, - focal_leng=focal_leng, - cam_rot=cam_rot, - frame_fill=fov_scale_factor, - ) - - cam_data = sens.CameraData( - pixels_num=pixel_num, - pixels_size=pixel_size, - pos_world=cam_pos_world, - rot_world=cam_rot, - roi_cent_world=roi_pos_world, - focal_length=focal_leng, - sub_samp=2, - back_face_removal=True, - ) - - # case_ind = 0 - # (case_ident,render_mesh,cam_data) = ib.load_benchmark_by_index(case_ind) - # print(80*"=") - # print("BENCHMARK IDENTIFIER:") - # print(f"{case_ident}") - # print(80*"=") - - - print() - print(80*"-") - print("MESH DATA:") - print(80*"-") - print("connectivity.shape=(num_elems,num_nodes_per_elem)") - print(f"{render_mesh.connectivity.shape=}") - print() - print("coords.shape=(num_nodes,coord[x,y,z])") - print(f"{render_mesh.coords.shape=}") - print() - print("fields.shape=(num_coords,num_time_steps,num_components)") - print(f"{render_mesh.fields_render.shape=}") - if render_mesh.fields_disp is not None: - print(f"{render_mesh.fields_disp.shape=}") - print(80*"-") - print() - - print(80*"-") - print("CAMERA DATA:") - print(80*"-") - print(f"{cam_data.image_dist=}") - print(f"{cam_data.roi_cent_world=}") - print(f"{cam_data.pos_world=}") - print() - print("World to camera matrix:") - print(cam_data.world_to_cam_mat) - print(80*"-") - print() - - - print(80*"-") - total_frames = render_mesh.fields_render.shape[1]*render_mesh.fields_render.shape[2] - print(f"Time steps to render: {render_mesh.fields_render.shape[1]}") - print(f"Fields to render: {render_mesh.fields_render.shape[2]}") - print(f"Total frames to render: {total_frames}") - print(80*"-") - - print(80*"=") - print("RASTER ELEMENT LOOP START") - print(80*"=") - - num_loops = 1 - - loop_times = np.zeros((num_loops,),dtype=np.float64) - - frame = -1 - fields_render = render_mesh.fields_render[:,frame,:] - total_frames = fields_render.shape[1] - - print() - print("Running raster loop.") - for nn in range(num_loops): - print(f"Running loop {nn}") - loop_start = time.perf_counter() - - (image_buffer, - depth_buffer, - elems_in_image) = sens.rastercyth.raster_static_frame( - render_mesh.coords, - render_mesh.connectivity, - fields_render, - cam_data) - - loop_times[nn] = time.perf_counter() - loop_start - - print() - print(80*"=") - print("PERFORMANCE TIMERS") - print(f"Elements in image = {elems_in_image}") - print(f"Image buffer shape = {image_buffer.shape}") - print(f"Avg. total render time = {np.mean(loop_times):.4f} seconds") - print(f"Avg. render time per frame = {(np.mean(loop_times)/total_frames):.4f} seconds") - print(80*"=") - - - #=========================================================================== - # PLOTTING - plot_on = True - plot_field = 0 - - # depth_to_plot = np.copy(np.asarray(depth_buffer[:,:,plot_frame])) - # depth_to_plot[depth_buffer[:,:,plot_frame] > 10*cam_data.image_dist] = np.nan - # image_to_plot = np.copy(np.asarray(image_buffer[:,:,plot_frame,plot_field])) - # image_to_plot[depth_buffer[:,:,plot_frame] > 10*cam_data.image_dist] = np.nan - - if plot_on: - plot_opts = sens.PlotOptsGeneral() - - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(depth_buffer[:,:], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Depth buffer",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(image_buffer[:,:,plot_field], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Field Image",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - plt.show() - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_cypara.py b/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_cypara.py deleted file mode 100644 index 749c8ae7b..000000000 --- a/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_cypara.py +++ /dev/null @@ -1,189 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -from pathlib import Path -import time -import numpy as np -from scipy.spatial.transform import Rotation -import matplotlib.pyplot as plt - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.mooseherder as mh - -def main() -> None: - print() - print(80*"=") - print("RASTER CYTHON FILE (should be *.so on Linux):") - print(sens.rastercyth.__file__) - print(80*"=") - print() - - sim_path = sens.DataSet.render_mechanical_3d_path() - #sim_path = sens.DataSet.render_simple_block_path() - #sim_path = Path.home()/"pyvale"/"src"/"pyvale"/"simcases"/"case26_out.e" - sim_data = mh.ExodusLoader(sim_path).load_all_sim_data() - - disp_comps = ("disp_x","disp_y","disp_z") - - # Scale m -> mm - sim_data = sens.scale_length_units(1000.0,sim_data,disp_comps) - - print() - print(f"{np.max(np.abs(sim_data.node_vars['disp_x']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_y']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_z']))=}") - print() - - # Extracts the surface mesh from a full 3d simulation for rendering - render_mesh = sens.create_render_mesh(sim_data, - ("disp_y","disp_x"), - sim_spat_dim=3, - field_disp_keys=disp_comps) - - print() - print(80*"-") - print("MESH DATA:") - print(80*"-") - print("connectivity.shape=(num_elems,num_nodes_per_elem)") - print(f"{render_mesh.connectivity.shape=}") - print() - print("coords.shape=(num_nodes,coord[x,y,z])") - print(f"{render_mesh.coords.shape=}") - print() - print("fields.shape=(num_coords,num_time_steps,num_components)") - print(f"{render_mesh.fields_render.shape=}") - if render_mesh.fields_disp is not None: - print(f"{render_mesh.fields_disp.shape=}") - print(80*"-") - print() - - pixel_num = np.array((960,1280),dtype=np.int32) - pixel_size = np.array((5.3e-3,5.3e-3),dtype=np.float64) - focal_leng: float = 50.0 - cam_rot = Rotation.from_euler("zyx",(0.0,-30.0,-10.0),degrees=True) - fov_scale_factor: float = 1.1 - - (roi_pos_world, - cam_pos_world) = sens.CameraTools.pos_fill_frame( - coords_world=render_mesh.coords, - pixel_num=pixel_num, - pixel_size=pixel_size, - focal_leng=focal_leng, - cam_rot=cam_rot, - frame_fill=fov_scale_factor, - ) - - cam_data = sens.CameraData( - pixels_num=pixel_num, - pixels_size=pixel_size, - pos_world=cam_pos_world, - rot_world=cam_rot, - roi_cent_world=roi_pos_world, - focal_length=focal_leng, - sub_samp=2, - back_face_removal=True, - ) - - print(80*"-") - print("CAMERA DATA:") - print(80*"-") - print(f"{cam_data.image_dist=}") - print(f"{cam_data.roi_cent_world=}") - print(f"{cam_data.pos_world=}") - print() - print("World to camera matrix:") - print(cam_data.world_to_cam_mat) - print(80*"-") - print() - - print(80*"-") - total_frames = render_mesh.fields_render.shape[1]*render_mesh.fields_render.shape[2] - print(f"Time steps to render: {render_mesh.fields_render.shape[1]}") - print(f"Fields to render: {render_mesh.fields_render.shape[2]}") - print(f"Total frames to render: {total_frames}") - print(80*"-") - - print(80*"=") - print("RASTER ELEMENT LOOP START") - print(80*"=") - - num_loops = 1 - loop_times = np.zeros((num_loops,),dtype=np.float64) - - print() - print("Running raster loop.") - for nn in range(num_loops): - print(f"Running loop {nn}") - loop_start = time.perf_counter() - - (image_buffer, - depth_buffer, - elems_in_image) = sens.rastercyth.raster_static_mesh( - render_mesh, - cam_data, - 0) - - loop_times[nn] = time.perf_counter() - loop_start - - print() - print(80*"=") - print("PERFORMANCE TIMERS") - print(f"Elements in image = {elems_in_image}") - print(f"Image buffer shape = {image_buffer.shape}") - print(f"Avg. total render time = {np.mean(loop_times):.4f} seconds") - print(f"Avg. render time per frame = {(np.mean(loop_times)/total_frames):.4f} seconds") - print(80*"=") - - - #=========================================================================== - # PLOTTING - plot_on = True - plot_frames = (1,)#range(3) - plot_field = 0 - - # depth_to_plot = np.copy(np.asarray(depth_buffer[:,:,plot_frame])) - # depth_to_plot[depth_buffer[:,:,plot_frame] > 10*cam_data.image_dist] = np.nan - # image_to_plot = np.copy(np.asarray(image_buffer[:,:,plot_frame,plot_field])) - # image_to_plot[depth_buffer[:,:,plot_frame] > 10*cam_data.image_dist] = np.nan - - if plot_on: - plot_opts = sens.PlotOptsGeneral() - - for ff in plot_frames: - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(depth_buffer[:,:,ff], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Depth buffer: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(image_buffer[:,:,ff,plot_field], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Field Image: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - plt.show() - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_pypara.py b/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_pypara.py deleted file mode 100644 index 05c9e5725..000000000 --- a/src/pyvale/examples/rasterimagedef/ex_rastercyth_static_pypara.py +++ /dev/null @@ -1,219 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -from pathlib import Path -import time -import numpy as np -from scipy.spatial.transform import Rotation -import matplotlib.pyplot as plt - -# pyvale imports -import pyvale.sensorsim as sens -import pyvale.mooseherder as mh - - -def main() -> None: - print() - print(80*"=") - print("RASTER CYTHON FILE (should be *.so on Linux):") - print(sens.rastercyth.__file__) - print(80*"=") - print() - - # This a path to an exodus *.e output file from MOOSE, this can be - # replaced with a path to your own simulation file - #sim_path = sens.DataSet.render_mechanical_3d_path() - #sim_path = sens.DataSet.render_simple_block_path() - sim_path = Path.home()/"pyvale"/"src"/"pyvale"/"simcases"/"case26_out.e" - sim_data = mh.ExodusLoader(sim_path).load_all_sim_data() - - disp_comps = ("disp_x","disp_y","disp_z") - - # Scale m -> mm - sim_data = sens.scale_length_units(1000.0,sim_data,disp_comps) - - print() - print(f"{np.max(np.abs(sim_data.node_vars['disp_x']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_y']))=}") - print(f"{np.max(np.abs(sim_data.node_vars['disp_z']))=}") - print() - - # Extracts the surface mesh from a full 3d simulation for rendering - render_mesh = sens.create_render_mesh(sim_data, - ("disp_x","disp_y","disp_z"), - sim_spat_dim=3, - field_disp_keys=disp_comps) - - print() - print(80*"-") - print("MESH DATA:") - print(80*"-") - print("connectivity.shape=(num_elems,num_nodes_per_elem)") - print(f"{render_mesh.connectivity.shape=}") - print() - print("coords.shape=(num_nodes,coord[x,y,z])") - print(f"{render_mesh.coords.shape=}") - print() - print("fields.shape=(num_coords,num_time_steps,num_components)") - print(f"{render_mesh.fields_render.shape=}") - if render_mesh.fields_disp is not None: - print(f"{render_mesh.fields_disp.shape=}") - print(80*"-") - print() - - pixel_num = np.array((960,1280),dtype=np.int32) - pixel_size = np.array((5.3e-3,5.3e-3),dtype=np.float64) - focal_leng: float = 50.0 - #cam_rot = Rotation.from_euler("zyx",(0.0,-30.0,-10.0),degrees=True) - cam_rot = Rotation.from_euler("zyx",(0.0,0.0,0.0),degrees=True) - fov_scale_factor: float = 1.1 - - (roi_pos_world, - cam_pos_world) = sens.CameraTools.pos_fill_frame( - coords_world=render_mesh.coords, - pixel_num=pixel_num, - pixel_size=pixel_size, - focal_leng=focal_leng, - cam_rot=cam_rot, - frame_fill=fov_scale_factor, - ) - - cam_data = sens.CameraData( - pixels_num=pixel_num, - pixels_size=pixel_size, - pos_world=cam_pos_world, - rot_world=cam_rot, - roi_cent_world=roi_pos_world, - focal_length=focal_leng, - sub_samp=2, - back_face_removal=True, - ) - - print(80*"-") - print("CAMERA DATA:") - print(80*"-") - print(f"{cam_data.image_dist=}") - print(f"{cam_data.roi_cent_world=}") - print(f"{cam_data.pos_world=}") - print() - print("World to camera matrix:") - print(cam_data.world_to_cam_mat) - print(80*"-") - print() - - print(80*"-") - total_frames = render_mesh.fields_render.shape[1]*render_mesh.fields_render.shape[2] - print(f"Time steps to render: {render_mesh.fields_render.shape[1]}") - print(f"Fields to render: {render_mesh.fields_render.shape[2]}") - print(f"Total frames to render: {total_frames}") - print(80*"-") - - print(80*"=") - print("RASTER ELEMENT LOOP START") - print(80*"=") - - num_loops = 1 - loop_times = np.zeros((num_loops,),dtype=np.float64) - - print() - print("Running raster loop.") - for nn in range(num_loops): - print(f"Running loop {nn}") - loop_start = time.perf_counter() - - (image_buffer, - depth_buffer, - elems_in_images) = sens.RasterCY.raster_static_mesh(cam_data, - render_mesh, - 16) - - loop_times[nn] = time.perf_counter() - loop_start - - print() - print(80*"=") - print("PERFORMANCE TIMERS") - print(f"Elements in image = {elems_in_images}") - print(f"Image buffer shape = {image_buffer.shape}") - print(f"Avg. total render time = {np.mean(loop_times):.4f} seconds") - print(f"Avg. render time per frame = {(np.mean(loop_times)/total_frames):.4f} seconds") - print(80*"=") - - - #=========================================================================== - # PLOTTING - plot_on = True - plot_frames = (-1,)#range(3) - plot_field = 0 - - depth_to_plot = np.copy(np.asarray(depth_buffer[:,:,:])) - depth_to_plot[depth_buffer[:,:,:] > 10*cam_data.image_dist] = np.nan - image_to_plot = np.copy(np.asarray(image_buffer[:,:,:,:])) - image_to_plot[depth_buffer[:,:,:] > 10*cam_data.image_dist] = np.nan - - if plot_on: - plot_opts = sens.PlotOptsGeneral() - - for ff in plot_frames: - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(depth_to_plot[:,:,ff], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Depth buffer: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(image_to_plot[:,:,ff,0], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Field Image: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(image_to_plot[:,:,ff,1], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Field Image: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - - (fig, ax) = plt.subplots(figsize=plot_opts.single_fig_size_square, - layout='constrained') - fig.set_dpi(plot_opts.resolution) - cset = plt.imshow(image_to_plot[:,:,ff,2], - cmap=plt.get_cmap(plot_opts.cmap_seq)) - #origin='lower') - ax.set_aspect('equal','box') - fig.colorbar(cset) - ax.set_title(f"Field Image: {ff}",fontsize=plot_opts.font_head_size) - ax.set_xlabel(r"x ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - ax.set_ylabel(r"y ($px$)", - fontsize=plot_opts.font_ax_size, fontname=plot_opts.font_name) - plt.show() - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/src/pyvale/examples/render3d/README.md b/src/pyvale/examples/render3d/README.md new file mode 100644 index 000000000..13c6d58d7 --- /dev/null +++ b/src/pyvale/examples/render3d/README.md @@ -0,0 +1,6 @@ +# 3D rendering examples + +These examples use `pyvale.render` to render three-dimensional scenes. +Riley is the default 3D renderer, and the Blender examples use the same +public scene data. Install the Blender extra on Python 3.13 before running +the `ex2_*` examples. diff --git a/src/pyvale/examples/render3d/ex1a_riley_quickstart.py b/src/pyvale/examples/render3d/ex1a_riley_quickstart.py new file mode 100644 index 000000000..015d98640 --- /dev/null +++ b/src/pyvale/examples/render3d/ex1a_riley_quickstart.py @@ -0,0 +1,94 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +"""Riley: Rendering Quickstart +================================================================================ + +Here we render a single triangle with Riley through the unified pyvale render +module. + +The common workflow for a rendering simulation in pyvale is: +1. Load and/or create meshes assigning shaders and displacement fields +2. Create cameras and position them in the scene +3. Set render configuration and use this to build the render backend +4. Build the scene then render images to memory and/or disk + +Riley is the default rendering backend for digital image correlation (DIC) +uncertainty quantification with pyvale. Riley supports full 3D rendering for +stereo DIC but is also the default for 2D image simulation due to its +computation speed and verification suite independent of DIC. +""" + +from pathlib import Path + +import numpy as np +import riley +from scipy.spatial.transform import Rotation + +from pyvale import render + +# %% +# 1. Make the triangle mesh +# ------------------------------- + +coords = np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))) +connect = np.array(((0, 1, 2),)) + +shader = render.RileyFunctionShader( + builtin=riley.FuncShaderBuiltin.checker, + coord_mode=riley.FuncCoordMode.world_reference, +) +mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=connect, + shader=shader, +) + +# %% +# 2. Create and position a camera +# ------------------------------- + +camera = render.Camera( + pixels_num=np.array((512, 512)), + pixels_size=np.array((0.02, 0.02)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, +) + +camera = render.cam_frame_mesh(camera, mesh, fov_scale=1.0) + +# %% +# 3. Build renderer backend +# ------------------------------- + +config = riley.create_raster_config(1, save_strategy=riley.SaveStrategy.both) +config.report = 1 +config.background_value = 0.5 + +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex1a_riley_quickstart" + +renderer = render.Riley(config, output_dir) + +# %% +# 4. Render images from scene +# ------------------------------- + +scene = render.Scene3D([mesh], [camera]) +result = renderer.render(scene) + +assert result.images is not None +print(f"{result.images.shape=}") + +# %% +# The first rendered frame is shown below. +# +# .. image:: ../../../../_static/render3d_ex1a_riley_quickstart.png +# :alt: Riley checkerboard triangle quickstart render +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1b_riley_sphere200.py b/src/pyvale/examples/render3d/ex1b_riley_sphere200.py new file mode 100644 index 000000000..b043b1fc0 --- /dev/null +++ b/src/pyvale/examples/render3d/ex1b_riley_sphere200.py @@ -0,0 +1,106 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +""" +Riley: Speckle sphere +================================================================================ +Here we render a sphere mesh of TRI6 elements with a speckle pattern texture +shader. + +Texture shaders use a 2D image and wrap this around a 3D object using normalised +coordinates called UVs in computer graphics. The texture shader itself then +uses these UV coordinates to map into and interpolate the colour for a pixel. + +The quality of the reconstruction is dependent on the resolution of the texture +relative to the final camera image size, the texture sampling function and the +pixel integration parameters (i.e. pixel subsampling). + +It is common to want to map a speckle pattern onto a 3D surface using UV +coordinates for digital image correlation simulation. We provide a set of +examples on UV mapping for common cases in the "Render UVs" example gallery. +""" + +from pathlib import Path + +import numpy as np +import riley +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render + +# %% +# 1. Load the mesh and assign a texture shader +# ------------------------------------------------------------ +data_dir: Path = dataset.riley_sphere200_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +uvs = io.load_array(data_dir / "uvs.csv", header=None, delimiter=",") + +texture = render.image_load(dataset.riley_speckle_texture_path()) + +shader = render.RileyTextureShader(uvs=uvs, texture=texture) +mesh = render.mesh3d_from_simdata( + simulation, + shader=shader, +) + +# %% +# 2. Create and position the camera +# ------------------------------------------------------------ + +pixels_num = np.array((800, 500)) +pixels_size = np.array((5.3e-6, 5.3e-6)) +focal_length = 50.0e-3 +rotation = Rotation.identity() + +camera = render.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=np.zeros(3), + rot_world=rotation, + roi_cent_world=np.zeros(3), + focal_length=focal_length, + subsample=2, +) + +camera = render.cam_frame_mesh(camera, mesh, fov_scale=1.0) + +# %% +# 3. Configure and build the renderer +# ------------------------------------------------------------ + +config = riley.create_raster_config( + num_frames=1, + total_threads=4, + save_strategy=riley.SaveStrategy.disk, +) +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex1b_riley_sphere200" + +renderer = render.Riley(config, output_dir) + +# %% +# 4. Build the scene and render it +# ------------------------------------------------------------ +scene = render.Scene3D(meshes=[mesh], cameras=[camera]) +result = renderer.render(scene) + +print(f"Rendered sphere render output to {output_dir}") +print(f"{result.images=}") + +# %% +# The first rendered frame is shown below. +# +# .. image:: ../../../../_static/render3d_ex1b_riley_sphere200.png +# :alt: A sphere with a speckle pattern +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1c_riley_rabbits.py b/src/pyvale/examples/render3d/ex1c_riley_rabbits.py new file mode 100644 index 000000000..9114a963e --- /dev/null +++ b/src/pyvale/examples/render3d/ex1c_riley_rabbits.py @@ -0,0 +1,169 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + + +"""Riley: Multi Shader, Multi Element Rabbits +================================================================================ + +Here we render a series of rabbit meshes of all different element types cycling +through all supported shaders for Riley to show how to build a scene with mixed +element and shader types. +""" + +from pathlib import Path + +import numpy as np +import riley +from riley.python import sceneops +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render + + +def load_rabbit( + rabbit: str, + topology: render.EElementType, +) -> tuple[io.SimData, np.ndarray]: + """Load one static rabbit mesh and its UV coordinates.""" + data_dir = dataset.riley_rabbit_case_path(rabbit, topology) + + simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connectivity.csv", + load_opts=io.SimLoadOpts(coord_header=None), + ).load_mesh() + + uvs = io.load_array(data_dir / "uvs.csv", header=None, delimiter=",") + + return simulation, uvs + + +# %% +# 1. Load several mesh topologies and assign different shaders +# ------------------------------------------------------------ + +topologies = ( + render.EElementType.TRI3, + render.EElementType.TRI6, + render.EElementType.QUAD4, + render.EElementType.QUAD8, + render.EElementType.QUAD9, +) + +texture = render.image_load(dataset.riley_speckle_texture_path()) + +meshes: list[render.Mesh3D] = [] +mesh_groups: list[sceneops.MeshGroup] = [] + +for topology_index, element_type in enumerate(topologies): + pair_start = len(meshes) + for rabbit_name in ("riley", "feebs"): + simulation, uvs = load_rabbit(rabbit_name, element_type) + shader_index = len(meshes) % 3 + + if shader_index == 0: + shader = render.RileyTextureShader(uvs=uvs, texture=texture) + elif shader_index == 1: + nodal_field = 0.5 * (uvs[:, 0] + uvs[:, 1]) + shader = render.RileyNodalShader( + field=nodal_field.reshape((1, -1, 1)), + ) + else: + shader = render.RileyFunctionShader( + builtin=riley.FuncShaderBuiltin.checker, + coord_mode=riley.FuncCoordMode.uv, + parameters=riley.FuncShaderParams(coord_scale=(36.0, 36.0)), + uvs=uvs, + scaling=riley.ScaleStrategy.auto, + ) + + mesh = render.mesh3d_from_simdata(simulation, shader=shader) + + if mesh.element_type is not element_type: + raise ValueError( + f"Unexpected topology loaded for {element_type}." + ) + + meshes.append(mesh) + + sceneops.overlap_mesh_group_bounds( + meshes, + sceneops.mesh_group_single(pair_start), + sceneops.mesh_group_single(pair_start + 1), + sceneops.BoundsOverlapSpec( + overlap_frac=(0.85, 0.8, 0.0), + enabled_axes=(True, True, False), + direct=( + sceneops.EOverlapDirect.POSITIVE, + sceneops.EOverlapDirect.NEGATIVE, + sceneops.EOverlapDirect.CURRENT, + ), + ), + ) + + mesh_groups.append(sceneops.mesh_group_span(pair_start, 2)) + +sceneops.arrange_mesh_groups_grid( + meshes, + mesh_groups, + sceneops.GridSpec(gap=(0.18, 0.28, 0.0), max_divs=(3, 2, 1)), +) + +# %% +# 2. Create and position a camera around every mesh +# ------------------------------------------------------------ +pixels_num = np.array((1600, 800)) +pixels_size = np.array((5.3e-6, 5.3e-6)) +focal_length = 50.0e-3 + +camera = render.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=focal_length, + subsample=2, +) + +camera = render.cam_frame_scene(camera, meshes, fov_scale=1.01) + +# %% +# 3. Configure and build the renderer +# ------------------------------------------------------------ + +config = riley.create_raster_config( + num_frames=1, + total_threads=4, + save_strategy=riley.SaveStrategy.disk, +) +config.background_value = 127.5 +config.image_save_mode = riley.ImageSaveMode.grey +config.save_scaling = riley.ScaleStrategy.none + +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex1c_riley_rabbits" + +renderer = render.Riley(config, output_dir) + +# %% +# 4. Build the multi mesh scene and render it +# ------------------------------------------------------------ +scene = render.Scene3D(meshes=meshes, cameras=[camera]) +result = renderer.render(scene) + +print(f"Rendered the rabbit topology comparison to {output_dir}") +print(f"{result.images=}") + +# %% +# The first rendered frame containing all topology variants is shown below. +# +# .. image:: ../../../../_static/render3d_ex1c_riley_rabbits.png +# :alt: Riley rabbit meshes rendered with several element topologies +# :width: 700px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1d_riley_dicuq.py b/src/pyvale/examples/render3d/ex1d_riley_dicuq.py new file mode 100644 index 000000000..89a792b6d --- /dev/null +++ b/src/pyvale/examples/render3d/ex1d_riley_dicuq.py @@ -0,0 +1,165 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +""" +Riley: Digital Image Correlation UQ +================================================================================ +In this example we render stereo camera images of a speckle pattern applied to +a plate with a hole loaded in tension. For this case we specifically choose +parameters representative of typical stereo DIC setups. +""" + +import copy +from dataclasses import replace +from pathlib import Path + +import numpy as np +import riley +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render + +# %% +# 1. Load the deforming mesh and assign a speckle texture +# ------------------------------------------------------------ + +data_dir = dataset.riley_platehole_csv_case_path() + +simulation = io.SimLoaderByField( + load_dir=data_dir, + coords_file="coords.csv", + time_step_file=None, + node_field_files={ + "disp_x": "field_disp_x.csv", + "disp_y": "field_disp_y.csv", + "disp_z": "field_disp_z.csv", + }, + connect_files="connect.csv", + load_opts=io.SimLoadOpts( + coord_header=None, + node_field_header=None, + ), +).load_all_sim_data() + +uvs = io.load_array(data_dir / "uvs.csv", header=None, delimiter=",") +texture = render.image_load(dataset.riley_speckle_texture_path()) + +mesh = render.mesh3d_from_simdata( + simulation, + shader=render.RileyTextureShader(uvs=uvs, texture=texture), + displacement_keys=("disp_x", "disp_y", "disp_z"), +) + +# We only render the first and last frame to save time. If you want to render +# all frames comment this out. +frame_indices = render.first_last_frame_indices(mesh.displacements.shape[0]) +mesh.displacements = render.select_frames(mesh.displacements, frame_indices) + +# %% +# 2. Create and position a distorted stereo camera pair +# ------------------------------------------------------------ +pixels_num = (2464, 2056) +pixels_size = (3.45e-6, 3.45e-6) +focal_length = 50.0e-3 +roi_centre = tuple(render.mesh_center(mesh)) + +rot_world_0 = (0.0, 0.0, 0.0) +pos_world_0 = tuple( + render.cam_pos_frame_points( + mesh.coords, + pixels_num, + pixels_size, + focal_length, + rot_world_0, + fov_scale=0.65, + ) +) + +rot_world_1 = (0.0, float(np.deg2rad(20.0)), 0.0) +pos_world_1 = tuple( + render.cam_pos_frame_points( + mesh.coords, + pixels_num, + pixels_size, + focal_length, + rot_world_1, + fov_scale=0.65, + ) +) + +distortion_model = int(render.EDistortionModel.BROWN_CONRADY) + +camera_0 = riley.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=pos_world_0, + rot_world=rot_world_0, + roi_cent_world=roi_centre, + focal_length=focal_length, + sub_sample=2, + distortion_model=distortion_model, + distortion_k1=-0.2, + distortion_k2=0.1, + distortion_p1=0.0001, + distortion_p2=-0.0001, +) + +camera_1 = copy.deepcopy(camera_0) +camera_1.rot_world = rot_world_1 +camera_1.pos_world = pos_world_1 + +# %% +# 3. Configure and build the renderer +# ------------------------------------------------------------ + +config = riley.create_raster_config( + num_frames=mesh.displacements.shape[0], + total_threads=4, + save_strategy=riley.SaveStrategy.disk, +) +config.background_value = 128.0 +config.tile_size_max = 128 +config.save_scaling = riley.ScaleStrategy.none + +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex1d_riley_dicuq" + +renderer = render.Riley(config, output_dir) + +# %% +# 4. Build the scene and render the deforming specimen +# ------------------------------------------------------------ +scene = render.Scene3D(meshes=[mesh], cameras=[camera_0, camera_1]) +result = renderer.render(scene) + +# %% +# 5. Save the stereo pair in Riley's exchange format +# ------------------------------------------------------------ +# The calibration example loads its cameras from this file. +riley.save_stereo_pair( + str(output_dir), + "stereo_data_opengl.csv", + camera_0, + camera_1, +) + +riley.save_stereo_pair( + str(output_dir), + "stereo_data_opencv.csv", + replace(camera_0, coord_sys=riley.CameraCoordSys.opencv), + replace(camera_1, coord_sys=riley.CameraCoordSys.opencv), +) +print(f"Rendered the stereo DIC images to {output_dir}") +print(f"{result.images=}") + +# %% +# The first frame from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex1d_riley_dicuq.png +# :alt: Riley stereo DIC render from both cameras +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1e_riley_dic_from_exodus.py b/src/pyvale/examples/render3d/ex1e_riley_dic_from_exodus.py new file mode 100644 index 000000000..aafacd17e --- /dev/null +++ b/src/pyvale/examples/render3d/ex1e_riley_dic_from_exodus.py @@ -0,0 +1,171 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +""" +Riley: DIC UQ from Exodus +================================================================================ +Here we render the same plate with a hole in tension from the last example but +we load the data from an exodus file and generate the UVs using Riley's tools. +""" + +import copy +from dataclasses import replace +from pathlib import Path + +import numpy as np +import riley + +import pyvale.data as dataset +from pyvale import render +from pyvale.mooseherder import ExodusLoader + +# %% +# 1. Load Exodus data and build a textured surface mesh +# ------------------------------------------------------------ +simulation = ExodusLoader( + dataset.riley_platehole_exodus_path(), + enforce_convention=True, +).load_all_sim_data() + +texture = render.image_load(dataset.riley_speckle_texture_path()) + +surface_mesh = render.mesh3d_from_simdata( + simulation, + shader=None, + displacement_keys=("disp_x", "disp_y", "disp_z"), +) + +uv_plane = render.UVPlane( + normal=np.array((0.0, 0.0, -1.0), dtype=np.float64), + origin=np.array((0.0, 0.0, 0.0), dtype=np.float64), +) +uvs = render.uv_project_planar_centered( + surface_mesh.coords, + (2056, 2464), + span=0.8, + plane=uv_plane, +) +surface_mesh.shader = render.RileyTextureShader(uvs=uvs, texture=texture) + +# To save time we only render the first and last frame. If you want to render +# all frames comment this out. +frame_indices = render.first_last_frame_indices( + surface_mesh.displacements.shape[0] +) +surface_mesh.displacements = render.select_frames( + surface_mesh.displacements, frame_indices +) + +# %% +# 2. Create and position a distorted stereo camera pair +# ------------------------------------------------------------ +pixels_num = (2464, 2056) +pixels_size = (3.45e-6, 3.45e-6) +focal_length = 50.0e-3 +roi_centre = tuple(render.mesh_center(surface_mesh)) + +rot_world_0 = (0.0, 0.0, 0.0) +pos_world_0 = tuple( + render.cam_pos_frame_points( + surface_mesh.coords, + pixels_num, + pixels_size, + focal_length, + rot_world_0, + fov_scale=0.65, + ) +) + +rot_world_1 = (0.0, float(np.deg2rad(20.0)), 0.0) +pos_world_1 = tuple( + render.cam_pos_frame_points( + surface_mesh.coords, + pixels_num, + pixels_size, + focal_length, + rot_world_1, + fov_scale=0.65, + ) +) + +distortion_model = int(render.EDistortionModel.BROWN_CONRADY) + +camera_0 = riley.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=pos_world_0, + rot_world=rot_world_0, + roi_cent_world=roi_centre, + focal_length=focal_length, + sub_sample=2, + distortion_model=distortion_model, + distortion_k1=-0.2, + distortion_k2=0.1, + distortion_p1=0.0001, + distortion_p2=-0.0001, +) + +camera_1 = copy.deepcopy(camera_0) +camera_1.rot_world = rot_world_1 +camera_1.pos_world = pos_world_1 + +cameras = [camera_0, camera_1] + +# %% +# 3. Configure and build the renderer +# ------------------------------------------------------------ + +config = riley.create_raster_config( + num_frames=surface_mesh.displacements.shape[0], + total_threads=8, + save_strategy=riley.SaveStrategy.disk, +) + +config.background_value = 128.0 +config.tile_size_max = 128 +config.save_scaling = riley.ScaleStrategy.none + +output_dir = ( + Path.cwd() / "pyvale-output" + / "render3d_ex1e_riley_dic_from_exodus" +) + +renderer = render.Riley(config, output_dir) + +# %% +# 4. Build the scene and render the extracted surface +# ------------------------------------------------------------ +result = renderer.render( + render.Scene3D(meshes=[surface_mesh], cameras=cameras) +) + +# %% +# 5. Save the stereo pair in Riley's exchange format +# ------------------------------------------------------------ +riley.save_stereo_pair( + str(output_dir), + "stereo_data_opengl.csv", + cameras[0], + cameras[1], +) + +riley.save_stereo_pair( + str(output_dir), + "stereo_data_opencv.csv", + replace(cameras[0], coord_sys=riley.CameraCoordSys.opencv), + replace(cameras[1], coord_sys=riley.CameraCoordSys.opencv), +) + +print(f"Rendered Exodus driven DIC images to {output_dir}") +print(f"{result.images=}") + +# %% +# The first frame from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex1e_riley_dic_from_exodus.png +# :alt: Riley stereo DIC render loaded from Exodus data +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1f_riley_stereocal.py b/src/pyvale/examples/render3d/ex1f_riley_stereocal.py new file mode 100644 index 000000000..4fec9dded --- /dev/null +++ b/src/pyvale/examples/render3d/ex1f_riley_stereocal.py @@ -0,0 +1,151 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +""" +Riley: Stereo Calibration Target +================================================================================ +Here we render a series of images of a stereo calibration target with Riley. We +also show how to save and load camera configurations into Riley using the OpenCV +or OpenGL coordinate system convention. +""" + +import copy +from pathlib import Path + +import numpy as np +import riley + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render + +# %% +# Stereo Setup +# ------------------------------------------------------------ +# Stereo pair matching the DIC UQ specimen position and camera parameters. +# The camera positions are the calibrated values from Riley's own demo so +# this example is standalone: no other example needs to run first. +MATCHED_ROI = (0.0125, 0.0175, 0.0005) +MATCHED_CAM0_POS = (0.0125, 0.0175, 0.160864856482) +MATCHED_CAM1_POS = (0.067348011198, 0.0175, 0.151193672270) + +# %% +# 1. Load the moving calibration target and its texture +# ------------------------------------------------------------ +data_dir = dataset.riley_stereocal_case_path() + +simulation = io.SimLoaderByField( + load_dir=data_dir, + coords_file="coords.csv", + time_step_file=None, + node_field_files={ + "disp_x": "field_disp_x.csv", + "disp_y": "field_disp_y.csv", + "disp_z": "field_disp_z.csv", + }, + connect_files="connect.csv", + load_opts=io.SimLoadOpts( + coord_header=None, + node_field_header=None, + ), +).load_all_sim_data() + +uvs = io.load_array(data_dir / "uvs.csv", header=None, delimiter=",") +texture = render.image_load(dataset.riley_cal_target_texture_path()) + +shader = render.RileyTextureShader(uvs=uvs, texture=texture) +mesh = render.mesh3d_from_simdata( + simulation, + shader=shader, + displacement_keys=("disp_x", "disp_y", "disp_z"), +) + +frame_indices = render.evenly_spaced_frame_indices( + mesh.displacements.shape[0], + 8, +) +mesh.displacements = render.select_frames(mesh.displacements, frame_indices) + +# %% +# 2. Shift the target onto the DIC UQ specimen position +# ------------------------------------------------------------ +mesh = render.mesh_center_at(mesh, MATCHED_ROI) +roi_pos = render.mesh_center(mesh) + +# %% +# 3. Create the stereo pair and save it in Riley's exchange format +# ---------------------------------------------------------------------- +pixels_num = (2464, 2056) +pixels_size = (3.45e-6, 3.45e-6) +focal_length = 50.0e-3 +stereo_angle_deg = 20.0 + +rot_world_0 = (0.0, 0.0, 0.0) +rot_world_1 = (0.0, float(np.deg2rad(stereo_angle_deg)), 0.0) +roi_cent = tuple(roi_pos) +distortion_model = int(render.EDistortionModel.BROWN_CONRADY) + +camera_0 = riley.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=MATCHED_CAM0_POS, + rot_world=rot_world_0, + roi_cent_world=roi_cent, + focal_length=focal_length, + sub_sample=2, + distortion_model=distortion_model, + distortion_k1=-0.2, + distortion_k2=0.1, + distortion_k3=0.0, + distortion_p1=0.0001, + distortion_p2=-0.0001, +) + +camera_1 = copy.deepcopy(camera_0) +camera_1.pos_world = MATCHED_CAM1_POS +camera_1.rot_world = rot_world_1 + +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex1f_riley_stereocal" +output_dir.mkdir(parents=True, exist_ok=True) + +stereo_file_name = "stereo_data_opengl.csv" +riley.save_stereo_pair(str(output_dir), stereo_file_name, camera_0, camera_1) + +# %% +# 4. Load the saved cameras back and build the textured mesh +# ------------------------------------------------------------ +camera_0, camera_1 = riley.load_stereo_pair(str(output_dir), stereo_file_name) + +# %% +# 5. Configure and build the renderer +# ------------------------------------------------------------ + +config = riley.create_raster_config( + num_frames=mesh.displacements.shape[0], + total_threads=4, + save_strategy=riley.SaveStrategy.disk, +) +config.background_value = 128.0 + +renderer = render.Riley(config, output_dir) + +# %% +# 6. Build the scene and render every calibration target pose +# ------------------------------------------------------------ + +scene = render.Scene3D(meshes=[mesh], cameras=[camera_0, camera_1]) +result = renderer.render(scene) + +print(f"Rendered stereo calibration images to {output_dir}") +print(f"{result.images=}") + +# %% +# The first calibration pose from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex1f_riley_stereocal.png +# :alt: Riley stereo calibration target from both cameras +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/render3d/ex1g_riley_psf.py b/src/pyvale/examples/render3d/ex1g_riley_psf.py new file mode 100644 index 000000000..f37885075 --- /dev/null +++ b/src/pyvale/examples/render3d/ex1g_riley_psf.py @@ -0,0 +1,99 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2025 The Computer Aided Validation Team +# ============================================================================== + +""" +Riley: Point spread functions +================================================================================ +Compare Riley point spread function buffer modes through ``pyvale.render``. +""" + +from pathlib import Path + +import numpy as np +import riley +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render + +# %% +# 1. Load the mesh and assign a texture shader +# ------------------------------------------------------------ +data_dir = dataset.riley_sphere200_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +uvs = io.load_array(data_dir / "uvs.csv", header=None, delimiter=",") +texture = render.image_load(dataset.riley_speckle_texture_path()) + +shader = render.RileyTextureShader(uvs=uvs, texture=texture) +mesh = render.mesh3d_from_simdata( + simulation, + shader=shader, +) + +# %% +# 2. Create a camera with a Gaussian PSF +# ------------------------------------------------------------ +pixels_num = np.array((800, 500)) +pixels_size = np.array((5.3e-6, 5.3e-6)) +focal_length = 50.0e-3 +camera = render.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=focal_length, + subsample=2, + psf_type=render.EPSFType.GAUSSIAN, + psf_sigma_x=1.0, + psf_support_rad=3.0, +) +camera = render.cam_frame_mesh(camera, mesh, fov_scale=1.0) + +# %% +# 3. Configure the two renderer variants +# ------------------------------------------------------------ +output_root = Path.cwd() / "pyvale-output" / "render3d_ex1g_riley_psf" + +buffer_modes = ( + riley.BufferMode.global_subpx_full, + riley.BufferMode.global_subpx_stripe, +) + +# %% +# 4. Build and render the same scene with each configuration +# ------------------------------------------------------------ +scene = render.Scene3D(meshes=[mesh], cameras=[camera]) + +for buffer_mode in buffer_modes: + config = riley.create_raster_config( + num_frames=1, + total_threads=4, + save_strategy=riley.SaveStrategy.disk, + ) + + config.buffer_mode = buffer_mode + output_dir = output_root / buffer_mode.name + renderer = render.Riley(config, output_dir) + result = renderer.render(scene) + + print(f"Rendered {buffer_mode.name} output to {output_dir}") + print(f"{result.images=}") + +# %% +# The ``global_subpx_full`` result is used as the representative buffer mode. +# +# .. image:: ../../../../_static/render3d_ex1g_riley_psf.png +# :alt: Speckled sphere rendered with a Gaussian point spread function +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/render3d/ex2a_blender_scene.py b/src/pyvale/examples/render3d/ex2a_blender_scene.py new file mode 100644 index 000000000..f34136609 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2a_blender_scene.py @@ -0,0 +1,110 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== + +"""Blender: Scene for 2D DIC +================================================================================ + +This example demonstrates how to set up and render a single camera 2D DIC +scene with Blender using the unified pyvale render API. The test case for this +example is a solid mechanics finite element model of a plate with a hole loaded +in tension. + +Workflow: +1. Load simulation data, scale units, and create a textured surface mesh. +2. Create and position camera and lights. +3. Configure the Blender renderer backend. +4. Build the Scene3D, render the image, and save the Blender project file. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.render as render +from pyvale.mooseherder import ExodusLoader +from pyvale.sensorsim import scale_length_units + + +# %% +# 1. Load simulation data and build a textured surface mesh +# -------------------------------------------------------------------------- +# Load the mechanical plate with a hole simulation in Exodus format (``*.e``). +# All geometry and displacements are scaled to millimetres for Blender. +# Then convert the volumetric SimData into a surface Mesh3D. Volumetric meshes +# are skinned and conventions are enforced automatically. + +data_path = dataset.render_mechanical_3d_path() +sim_data = ExodusLoader(data_path).load_all_sim_data() + +disp_keys = ("disp_x", "disp_y", "disp_z") +sim_data = scale_length_units(1000.0, sim_data, disp_keys) + +surface_mesh = render.mesh3d_from_simdata( + sim_data, + shader=None, + displacement_keys=disp_keys, +) + +# %% +# 2. Create and position camera and lights +# -------------------------------------------------------------------------- +# Specify the physical sensor dimensions, sensor pixel grid, position, +# and focal length for a perspective camera. +camera = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +# Calculate camera resolution in mm/pixel to scale the speckle pattern. +resolution = render.blender_mm_per_pixel(camera) +surface_mesh.shader = render.BlenderTextureShader( + image_path=dataset.dic_pattern_5mpx_path(), + millimetres_per_pixel=resolution, +) + +# Add a point light to illuminate the scene. +light = render.Light( + light_type=render.ELightType.POINT, + pos_world=np.array((0.0, 0.0, 400.0)), + direction_world=np.zeros(3), + intensity=1.0, +) + +# %% +# 3. Configure and build the Blender renderer backend +# -------------------------------------------------------------------------- +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex2a_blender_scene" +config = render.BlenderConfig( + output_dir=output_dir, + samples=4, + threads=8, + save_images=True, + save_scene=True, +) +renderer = render.Blender(config) + +# %% +# 4. Build the Scene3D and render the image +# -------------------------------------------------------------------------- +scene = render.Scene3D([surface_mesh], [camera], [light]) +result = renderer.render(scene) + +print(f"Rendered {len(result.output_paths)} image to disk.") +print(f"Output saved to: {output_dir}") + +# %% +# The first rendered frame is shown below. +# +# .. image:: ../../../../_static/render3d_ex2a_blender_scene.png +# :alt: Blender render of a speckled plate with a hole +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/render3d/ex2b_blender_deformation.py b/src/pyvale/examples/render3d/ex2b_blender_deformation.py new file mode 100644 index 000000000..870d75ef5 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2b_blender_deformation.py @@ -0,0 +1,118 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== + +""" +Blender: 2D Deformation +================================================================================ + +This example demonstrates how to render a sequence of deformed 2D DIC images +using Blender and the unified pyvale render API. + +Test case: mechanical analysis of a plate with a hole loaded in tension. + +Workflow: +1. Load simulation data, scale units, and create a textured surface mesh. +2. Select a subset of deformation timesteps for demonstration. +3. Create and position camera and lights. +4. Configure Blender with render_deformed=True. +5. Build the Scene3D and render all selected deformation frames. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.render as render +from pyvale.mooseherder import ExodusLoader +from pyvale.sensorsim import scale_length_units + + +# %% +# 1. Load simulation data and build a textured surface mesh +# -------------------------------------------------------------------------- +# Load the mechanical plate with a hole simulation in Exodus format (``*.e``). +data_path = dataset.render_mechanical_3d_path() +sim_data = ExodusLoader(data_path).load_all_sim_data() + +disp_keys = ("disp_x", "disp_y", "disp_z") +sim_data = scale_length_units(1000.0, sim_data, disp_keys) + +surface_mesh = render.mesh3d_from_simdata( + sim_data, + shader=None, + displacement_keys=disp_keys, +) + +# %% +# 2. Select deformation timesteps +# -------------------------------------------------------------------------- +# The simulation contains 11 displacement timesteps. Here we select a +# 3 frame subset ([undeformed, mid load, peak load]) for fast tutorial +# execution. To render all simulation frames, omit this slice: +# surface_mesh.displacements = surface_mesh.displacements +if surface_mesh.displacements is not None: + surface_mesh.displacements = surface_mesh.displacements[[0, 5, -1]] + +# %% +# 3. Create and position camera and lights +# -------------------------------------------------------------------------- +camera = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +resolution = render.blender_mm_per_pixel(camera) +surface_mesh.shader = render.BlenderTextureShader( + image_path=dataset.dic_pattern_5mpx_path(), + millimetres_per_pixel=resolution, +) + +light = render.Light( + light_type=render.ELightType.POINT, + pos_world=np.array((0.0, 0.0, 400.0)), + direction_world=np.zeros(3), + intensity=1.0, +) + +# %% +# 4. Configure Blender backend for deformation rendering +# -------------------------------------------------------------------------- +output_dir = ( + Path.cwd() / "pyvale-output" + / "render3d_ex2b_blender_deformation" +) +config = render.BlenderConfig( + output_dir=output_dir, + samples=4, + threads=8, + render_deformed=True, + save_images=True, + save_scene=True, +) +renderer = render.Blender(config) + +# %% +# 5. Build Scene3D and render deformation frames +# -------------------------------------------------------------------------- +scene = render.Scene3D([surface_mesh], [camera], [light]) +result = renderer.render(scene) + +print(f"Rendered {len(result.output_paths)} deformation frames.") +print(f"Output saved to: {output_dir}") + +# %% +# The first deformation frame is shown below. +# +# .. image:: ../../../../_static/render3d_ex2b_blender_deformation.png +# :alt: Blender deformation render of a speckled plate with a hole +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/render3d/ex2c_blender_stereo.py b/src/pyvale/examples/render3d/ex2c_blender_stereo.py new file mode 100644 index 000000000..1bb3f3d30 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2c_blender_stereo.py @@ -0,0 +1,117 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== + +""" +Blender: Stereo Scene +================================================================================ + +This example demonstrates how to set up and render a convergent stereo camera +pair for 3D DIC using Blender and the unified pyvale render API. + +Test case: mechanical analysis of a plate with a hole loaded in tension. + +Workflow: +1. Load simulation data, scale units, and create a textured surface mesh. +2. Create base camera and generate convergent stereo cameras. +3. Add lighting to the scene. +4. Configure the Blender renderer backend. +5. Build Scene3D with both stereo cameras and render the stereo image pair. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.render as render +from pyvale.mooseherder import ExodusLoader +from pyvale.sensorsim import scale_length_units + + +# %% +# 1. Load simulation data and build a textured surface mesh +# -------------------------------------------------------------------------- +data_path = dataset.render_mechanical_3d_path() +sim_data = ExodusLoader(data_path).load_all_sim_data() + +disp_keys = ("disp_x", "disp_y", "disp_z") +sim_data = scale_length_units(1000.0, sim_data, disp_keys) + +surface_mesh = render.mesh3d_from_simdata( + sim_data, + shader=None, + displacement_keys=disp_keys, +) + +# %% +# 2. Create base camera and generate convergent stereo cameras +# -------------------------------------------------------------------------- +# Create the primary camera centered on the specimen ROI. +cam_base = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +resolution = render.blender_mm_per_pixel(cam_base) +surface_mesh.shader = render.BlenderTextureShader( + image_path=dataset.dic_pattern_5mpx_path(), + millimetres_per_pixel=resolution, +) + +# Pyvale provides convenience helpers to build convergent stereo rigs: +# - stereo_build_symmetric: both cameras rotated symmetrically about ROI +# - stereo_build_faceon: cam0 normal to specimen, cam1 angled +stereo_angle = 15.0 # degrees +stereo_cameras = render.stereo_build_symmetric(cam_base, stereo_angle) + +# %% +# 3. Create lighting +# -------------------------------------------------------------------------- +light = render.Light( + light_type=render.ELightType.POINT, + pos_world=np.array((0.0, 0.0, 400.0)), + direction_world=np.zeros(3), + intensity=1.0, +) + +# %% +# 4. Configure Blender renderer backend +# -------------------------------------------------------------------------- +output_dir = Path.cwd() / "pyvale-output" / "render3d_ex2c_blender_stereo" +config = render.BlenderConfig( + output_dir=output_dir, + samples=4, + threads=8, + save_images=True, + save_scene=True, +) +renderer = render.Blender(config) + +# %% +# 5. Build Scene3D with both stereo cameras and render +# -------------------------------------------------------------------------- +scene = render.Scene3D( + meshes=[surface_mesh], + cameras=stereo_cameras, + lights=[light], +) +result = renderer.render(scene) + +print(f"Rendered {len(result.output_paths)} stereo images.") +print(f"Output saved to: {output_dir}") + +# %% +# The first frame from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex2c_blender_stereo.png +# :alt: Blender stereo render from both cameras +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/render3d/ex2d_blender_calibration.py b/src/pyvale/examples/render3d/ex2d_blender_calibration.py new file mode 100644 index 000000000..6ad048069 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2d_blender_calibration.py @@ -0,0 +1,112 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== + +""" +Blender: Stereo Camera Calibration & Parameters +================================================================================ + +This tutorial demonstrates how to define a stereo camera system, export its +intrinsic and extrinsic calibration parameters in standard formats (YAML and +MatchID), and reload calibration data. + +Stereo calibration defines: +- Intrinsic parameters: focal length, pixel size, sensor grid, principal point. +- Extrinsic parameters: 3D rotation and translation vector between cameras. + +Workflow: +1. Define a base perspective camera and construct a convergent stereo system. +2. Export the ground truth stereo calibration to YAML and MatchID formats. +3. Reload calibration data to verify parameter fidelity. +4. Calculate calibration image counts for physical target pose sweeps. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +# %% +# 1. Define base camera and build convergent stereo system +# -------------------------------------------------------------------------- +cam_base = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +stereo_angle = 15.0 # degrees +stereo_cameras = render.stereo_build_faceon(cam_base, stereo_angle) +cam_0, cam_1 = stereo_cameras + +print( + "Stereo baseline distance (mm):", + render.stereo_calc_baseline(cam_0, cam_1), +) +print("Stereo rotation (Euler xyz deg):") +print(render.stereo_calc_angles(cam_0, cam_1).relative_euler_xyz_degrees) + +# %% +# 2. Export calibration in YAML and MatchID formats +# -------------------------------------------------------------------------- +output_dir = ( + Path.cwd() / "pyvale-output" + / "render3d_ex2d_blender_calibration" +) +output_dir.mkdir(parents=True, exist_ok=True) + +# Save standard Pyvale YAML calibration: +yaml_path = output_dir / "calibration" / "calibration.yaml" +render.stereo_save_calibration_yaml(cam_0, cam_1, yaml_path) +print(f"Saved Pyvale calibration to: {yaml_path}") + +# Save MatchID compatible calibration: +mid_path = output_dir / "calibration" / "calibration.caldat" +render.stereo_save_calibration_matchid(cam_0, cam_1, mid_path) +print(f"Saved MatchID calibration to: {mid_path}") + +# %% +# 3. Reload and inspect calibration parameters +# -------------------------------------------------------------------------- +reloaded_0, reloaded_1 = render.stereo_build_from_calibration( + calibration_path=yaml_path, + pos_world_0=cam_base.pos_world, + rot_world_0=cam_base.rot_world, + focal_length=cam_base.focal_length, +) +ext_reloaded = render.stereo_calc_extrinsics(reloaded_0, reloaded_1) +ext_original = render.stereo_calc_extrinsics(cam_0, cam_1) +assert np.allclose( + ext_reloaded.translation_cam1_in_cam0, + ext_original.translation_cam1_in_cam0, +) +print("Successfully verified round-trip calibration parameters.") + +# %% +# 4. Plan calibration target pose sweeps +# -------------------------------------------------------------------------- +# For experimental DIC calibration, targets are translated and rotated +# through the field of view. We can compute the total pose count: +cal_data = render.BlenderCalibrationData( + angle_lims=(-10.0, 10.0), + angle_step=5.0, + plunge_lims=(-5.0, 5.0), + plunge_step=5.0, +) +total_images = render.calibration_image_count(cal_data) +print(f"Standard calibration sweep image count: {total_images}") + +# %% +# The generated Pyvale calibration file is embedded below. +# +# .. literalinclude:: ../../_static/render3d_ex2d_blender_calibration.yaml +# :language: yaml +# :caption: Generated stereo camera calibration diff --git a/src/pyvale/examples/render3d/ex2e_blender_stereo_deformation.py b/src/pyvale/examples/render3d/ex2e_blender_stereo_deformation.py new file mode 100644 index 000000000..97fd80938 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2e_blender_stereo_deformation.py @@ -0,0 +1,121 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +""" +Blender: Stereo Image Deformation +================================================================================ + +This example demonstrates how to render a time sequence of deformed stereo +DIC image pairs using Blender and the unified pyvale render API. The test case +is a mechanical analysis of a plate with a hole loaded in tension. + +Workflow: +1. Load simulation data, scale units, and create a textured surface mesh. +2. Select a subset of deformation timesteps for demonstration. +3. Create convergent stereo cameras and lighting. +4. Configure Blender with render_deformed=True. +5. Build Scene3D and render stereo deformation image sequences. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.render as render +from pyvale.mooseherder import ExodusLoader +from pyvale.sensorsim import scale_length_units + + +# %% +# 1. Load simulation data and build a textured surface mesh +# -------------------------------------------------------------------------- +data_path = dataset.render_mechanical_3d_path() +sim_data = ExodusLoader(data_path).load_all_sim_data() + +disp_keys = ("disp_x", "disp_y", "disp_z") +sim_data = scale_length_units(1000.0, sim_data, disp_keys) + +surface_mesh = render.mesh3d_from_simdata( + sim_data, + shader=None, + displacement_keys=disp_keys, +) + +# %% +# 2. Select deformation timesteps +# -------------------------------------------------------------------------- +# Slicing a 3 frame subset ([undeformed, mid load, peak load]) for fast +# tutorial execution. To render all simulation frames, omit this slice: +# surface_mesh.displacements = surface_mesh.displacements +if surface_mesh.displacements is not None: + surface_mesh.displacements = surface_mesh.displacements[[0, 5, -1]] + +# %% +# 3. Create convergent stereo cameras and lighting +# -------------------------------------------------------------------------- +cam_base = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +resolution = render.blender_mm_per_pixel(cam_base) +surface_mesh.shader = render.BlenderTextureShader( + image_path=dataset.dic_pattern_5mpx_path(), + millimetres_per_pixel=resolution, +) + +stereo_angle = 15.0 # degrees +stereo_cameras = render.stereo_build_faceon(cam_base, stereo_angle) + +light = render.Light( + light_type=render.ELightType.POINT, + pos_world=np.array((0.0, 0.0, 400.0)), + direction_world=np.zeros(3), + intensity=1.0, +) + +# %% +# 4. Configure Blender backend for stereo deformation +# -------------------------------------------------------------------------- +output_dir = ( + Path.cwd() / "pyvale-output" + / "render3d_ex2e_blender_stereo_deformation" +) +config = render.BlenderConfig( + output_dir=output_dir, + samples=4, + threads=8, + render_deformed=True, + save_images=True, + save_scene=True, +) +renderer = render.Blender(config) + +# %% +# 5. Build Scene3D and render stereo deformation frames +# -------------------------------------------------------------------------- +scene = render.Scene3D( + meshes=[surface_mesh], + cameras=stereo_cameras, + lights=[light], +) +result = renderer.render(scene) + +print(f"Rendered {len(result.output_paths)} stereo deformation images.") +print(f"Output saved to: {output_dir}") + +# %% +# The first frame from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex2e_blender_stereo_deformation.png +# :alt: Blender stereo deformation render from both cameras +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/render3d/ex2f_blender_calibration_target.py b/src/pyvale/examples/render3d/ex2f_blender_calibration_target.py new file mode 100644 index 000000000..f771380e2 --- /dev/null +++ b/src/pyvale/examples/render3d/ex2f_blender_calibration_target.py @@ -0,0 +1,107 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +""" +Blender: Calibration Target Render +================================================================================ + +This example demonstrates how to render a physical calibration target swept +through multiple positions, rotations, and depths in Blender to generate +synthetic calibration images for stereo DIC systems. + +Workflow: +1. Define the physical calibration target dimensions, texture, and resolution. +2. Construct convergent stereo cameras and lighting. +3. Configure target movement sweep limits and Blender backend settings. +4. Render the calibration image stack and inspect the generated TIFF files. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.render as render + + +# %% +# 1. Define calibration target geometry and texture +# -------------------------------------------------------------------------- +# Specify the target physical dimensions (width, height, thickness in mm). +target_size = np.array((150.0, 100.0, 10.0)) +target = render.BlenderCalibrationTarget( + size=target_size, + image_path=dataset.cal_target(), + millimetres_per_pixel=0.1, +) + +# %% +# 2. Create convergent stereo cameras and illumination +# -------------------------------------------------------------------------- +cam_base = render.Camera( + pixels_num=np.array((1540, 1040)), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 400.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, +) + +stereo_angle = 15.0 # degrees +stereo_cameras = render.stereo_build_faceon(cam_base, stereo_angle) + +light = render.Light( + light_type=render.ELightType.POINT, + pos_world=np.array((0.0, 0.0, 200.0)), + direction_world=np.zeros(3), + intensity=1.0, +) + +# %% +# 3. Configure target pose sweep and Blender backend +# -------------------------------------------------------------------------- +output_dir = ( + Path.cwd() / "pyvale-output" + / "render3d_ex2f_blender_calibration_target" +) +config = render.BlenderConfig( + output_dir=output_dir, + samples=4, + threads=8, +) + +# Configure pose sweep limits. For this quick example, we cap at 10 images. +# To render a full calibration grid across FOV, omit max_images and specify +# broader angle and plunge limits (e.g. angle_lims=(-10, 10), step=5). +cal_data = render.BlenderCalibrationData( + angle_lims=(-5.0, 5.0), + angle_step=5.0, + plunge_lims=(-2.0, 2.0), + plunge_step=2.0, + max_images=10, +) + +# %% +# 4. Render calibration target images +# -------------------------------------------------------------------------- +result = render.render_calibration_images( + target=target, + cameras=stereo_cameras, + config=config, + data=cal_data, + lights=[light], +) + +print(f"Rendered {len(result.output_paths)} calibration TIFF images.") +print(f"Calibration images directory: {output_dir / 'calimages'}") + +# %% +# The first calibration pose from both cameras is combined side by side below. +# +# .. image:: ../../../../_static/render3d_ex2f_blender_calibration_target.png +# :alt: Blender calibration target render from both cameras +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/renderuvs/README.md b/src/pyvale/examples/renderuvs/README.md new file mode 100644 index 000000000..59c8cfe0d --- /dev/null +++ b/src/pyvale/examples/renderuvs/README.md @@ -0,0 +1,4 @@ +# Render UV examples + +These examples generate nodal UV coordinates with the backend-neutral +`pyvale.render` API and render the mapped textures with Riley. diff --git a/src/pyvale/examples/renderuvs/__init__.py b/src/pyvale/examples/renderuvs/__init__.py new file mode 100644 index 000000000..bc52d58c4 --- /dev/null +++ b/src/pyvale/examples/renderuvs/__init__.py @@ -0,0 +1,6 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== +"""Support code for the documented Render UV examples.""" diff --git a/src/pyvale/examples/renderuvs/ex1a_uv_planar_axes.py b/src/pyvale/examples/renderuvs/ex1a_uv_planar_axes.py new file mode 100644 index 000000000..70dcd2dd7 --- /dev/null +++ b/src/pyvale/examples/renderuvs/ex1a_uv_planar_axes.py @@ -0,0 +1,254 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render UVs: Intro and planar projection +================================================================================ + +This example maps a texture to a stereocalibration plate after orienting it in +the XY, YZ, and XZ planes. Then we map a speckle pattern onto the calibration +plate and scale it to the desired pixel/speckle resolution. + +UV coordinates are normalised to be between 0 and 1. UV=(0,0) indicates the +reference corner of the texture and UV=(1,1) is the far corner. The packaged +speckle texture is 2464x2056 pixels, so U=1 and V=1 address its far edges. + +For most DIC cases we have a component with a flat surface and want to project +a texture onto it. We generally know the feature size or pitch in the input +texture and either its required physical length or its desired size in the +final camera image. + +For off axis and stereo cameras the image scale is not constant over the field +of view. Here we use Riley's average scale on the camera normal plane through +the region of interest centre. + +The way to achieve this mapping and scaling is through specifying UVs which are +nodal attributes of the input mesh to be rendered. + +There are more advanced tools for mapping UVs to complex surfaces in Blender if +you need them. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render +from pyvale.examples.renderuvs.tools import render_uv_example + +# %% +# 1. Load the packaged three dimensional calibration plate +# ------------------------------------------------------------ +# The calibration plate is a TRI3 surface mesh with front, back, and side +# faces. + +data_dir = dataset.riley_stereocal_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +base_mesh = render.mesh3d_from_simdata(simulation, shader=None) +cal_texture = render.image_load(dataset.riley_cal_target_texture_path()) + +mesh_center = render.mesh_center(base_mesh) + +# %% +# 2. Orient the plate in each axis aligned projection plane +# ------------------------------------------------------------ +# Each rotation moves the plate face into the requested world plane. UVs are +# then generated from the same plane, while an off axis camera reveals +# the plate thickness and its physical orientation. + +yz_mesh_rotation = Rotation.from_euler( + "xyz", + (90.0, 0.0, 90.0), + degrees=True, +) + +yz_camera_rotation = yz_mesh_rotation * Rotation.from_euler( + "y", + 10.0, + degrees=True, +) + +xz_mesh_rotation = Rotation.from_euler("x", 90.0, degrees=True) +xz_camera_rotation = xz_mesh_rotation * Rotation.from_euler( + "x", + -10.0, + degrees=True, +) + +variants = ( + ( + "xy", + render.EUVPlane.XY, + Rotation.identity(), + Rotation.from_euler("y", 10.0, degrees=True), + ), + ( + "yz", + render.EUVPlane.YZ, + yz_mesh_rotation, + yz_camera_rotation, + ), + ( + "xz", + render.EUVPlane.XZ, + xz_mesh_rotation, + xz_camera_rotation, + ), +) + +# %% +# 3. Map a calibration target using its physical feature pitch +# ------------------------------------------------------------ +# The packaged target has a measured 177.1 texture pixels per dot pitch. We +# request a physical pitch of 1.25 mm in the simulation coordinate units. +# ``uv_map_planar_scaled`` therefore preserves the experimental target scale +# rather than fitting the texture arbitrarily to the mesh. + +output_dir = Path.cwd() / "pyvale-output" / "renderuvs_ex1a_uv_planar_axes" +texture_px_per_feature_pitch = 177.1 +feature_pitch = 1.25e-3 +texture_px_per_leng = render.uv_calc_texture_px_per_leng( + texture_px_per_feature_pitch, + feature_pitch, +) + +for variant_name, projection_plane, mesh_rotation, camera_rotation in variants: + oriented_mesh = render.mesh_rotate( + base_mesh, + mesh_rotation, + pivot=mesh_center, + ) + + camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=camera_rotation, + roi_cent_world=render.mesh_center(oriented_mesh), + focal_length=35.0e-3, + subsample=4, + ) + camera = render.cam_frame_mesh( + camera, + oriented_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), + ) + + mapping = render.uv_map_planar_scaled( + oriented_mesh.coords, + cal_texture, + texture_px_per_leng, + plane=projection_plane, + ) + + textured_mesh = render.Mesh3D( + element_type=oriented_mesh.element_type, + coords=oriented_mesh.coords, + connectivity=oriented_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=mapping.uvs, + texture=mapping.texture, + ), + ) + + render_uv_example(textured_mesh, camera, output_dir / variant_name) + +# %% +# The XY, YZ, and XZ projection cases are shown from left to right. Their +# matching physical dot pitch makes differences caused by the projection plane +# easy to compare. +# +# .. image:: ../../_static/renderuvs_ex1a_uv_planar_axes_axes.png +# :alt: Three dimensional calibration plate with XY, YZ, and XZ UV maps +# :width: 900px +# :align: center + +# %% +# 4. Map a speckle texture to a desired final feature size +# ------------------------------------------------------------ +# The packaged speckle pattern has a nominal feature size of five texture +# pixels. We also request five image pixels per feature in the rendered image. +# The camera scale at the ROI connects these two pixel spaces through physical +# simulation length. +speckle_texture = render.image_load(dataset.riley_speckle_texture_path()) + +speckle_mesh = base_mesh + +speckle_camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.from_euler("y", 10.0, degrees=True), + roi_cent_world=render.mesh_center(speckle_mesh), + focal_length=35.0e-3, + subsample=4, +) + +speckle_camera = render.cam_frame_mesh( + speckle_camera, + speckle_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +image_leng_per_px = render.cam_calc_leng_per_px(speckle_camera) +texture_px_per_feature_size = 5.0 +desired_image_px_per_feature_size = 5.0 + +speckle_texture_px_per_leng = render.uv_calc_texture_px_per_leng_from_image( + texture_px_per_feature_size, + desired_image_px_per_feature_size, + image_leng_per_px, +) + +speckle_mapping = render.uv_map_planar_scaled( + speckle_mesh.coords, + speckle_texture, + speckle_texture_px_per_leng, + bounds=render.EUVBounds.TILED, +) + +speckled_mesh = render.Mesh3D( + element_type=speckle_mesh.element_type, + coords=speckle_mesh.coords, + connectivity=speckle_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=speckle_mapping.uvs, + texture=speckle_mapping.texture, + ), +) + +render_uv_example(speckled_mesh, speckle_camera, output_dir / "speckle") + +feature_size = render.uv_calc_feature_leng( + desired_image_px_per_feature_size, + image_leng_per_px, +) + +print( + f"Speckle feature size={feature_size:.6g}, " + f"image scale={image_leng_per_px:.6g} length/px, " + f"target={desired_image_px_per_feature_size:.1f} px/feature" +) + +print(f"Rendered axis aligned UV projections to {output_dir}") + +# %% +# The speckle render is a separate experimental workflow: its scale comes from +# the requested five image pixels per feature rather than calibration dot +# pitch, so it is shown separately from the projection plane comparison. +# +# .. image:: ../../_static/renderuvs_ex1a_uv_planar_axes_speckle.png +# :alt: Camera scaled speckle texture on a calibration plate +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/renderuvs/ex1b_uv_texture_aspect.py b/src/pyvale/examples/renderuvs/ex1b_uv_texture_aspect.py new file mode 100644 index 000000000..2ca46558a --- /dev/null +++ b/src/pyvale/examples/renderuvs/ex1b_uv_texture_aspect.py @@ -0,0 +1,207 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render UVs: Texture aspect and fit modes +================================================================================ + +This example compares planar texture fitting when the mesh and UV axes are +aligned, then repeats the comparison after rotating the mesh while leaving the +UV axes fixed in the camera frame. This separates texture aspect effects from +the effect of projecting an oblique target onto fixed UV axes. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render +from pyvale.examples.renderuvs.tools import render_uv_example + +# %% +# 1. Load the packaged three dimensional calibration plate +# ------------------------------------------------------------ + +data_dir = dataset.riley_stereocal_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +base_mesh = render.mesh3d_from_simdata(simulation, shader=None) + +texture = render.image_load(dataset.riley_cal_target_texture_path()) + +# %% +# 2. Define the three aspect preserving fit modes +# ------------------------------------------------------------ +# ``CONTAIN`` preserves the complete projected target while respecting the +# texture aspect ratio. ``FIT_U`` spans the texture width and derives V from +# the same scale; ``FIT_V`` spans its height and derives U. The latter two can +# therefore extend outside the unit texture square when the projection and +# texture have different aspect ratios. + +fit_modes = ( + ("contain", render.EUVFit.CONTAIN), + ("fit_u", render.EUVFit.FIT_U), + ("fit_v", render.EUVFit.FIT_V), +) + +# %% +# 3. Build aligned and rotated target cases +# ------------------------------------------------------------ +# The aligned plate lies in the camera XY plane, so its physical axes and the +# planar UV axes coincide. The rotated plate is oblique, but UV projection is +# still performed in world XY (the camera frame), making the axis mismatch +# visible in the calibration grid. +aligned_mesh = base_mesh +rotated_mesh = render.mesh_rotate( + base_mesh, + Rotation.from_euler("xyz", (0.0, 24.0, 8.0), degrees=True), + pivot=render.mesh_center(base_mesh), +) + +# %% +# 4. Render both three mode comparisons +# ------------------------------------------------------------ +output_dir = Path.cwd() / "pyvale-output" / "renderuvs_ex1b_uv_texture_aspect" + +for orientation_name, mesh in ( + ("aligned", aligned_mesh), + ("rotated", rotated_mesh), +): + camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(mesh), + focal_length=35.0e-3, + subsample=4, + ) + camera = render.cam_frame_mesh( + camera, + mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), + ) + + for fit_name, fit_mode in fit_modes: + uvs = render.uv_project_planar( + mesh.coords, + texture_shape=texture.shape[:2], + fit=fit_mode, + ) + + textured_mesh = render.Mesh3D( + element_type=mesh.element_type, + coords=mesh.coords, + connectivity=mesh.connectivity, + shader=render.RileyTextureShader(uvs=uvs, texture=texture), + ) + + render_uv_example( + textured_mesh, + camera, + output_dir / orientation_name / fit_name, + ) + +# %% +# 5. Compare with a physically specified calibration dot pitch +# ------------------------------------------------------------ +# Unlike the automatic fit modes, this mapping fixes the experimental scale at +# 1.25 mm per dot pitch using the measured 177.1 texture pixels per pitch. Its +# oblique XY projection slightly exceeds the source texture, so the default +# ``SATURATE`` policy clips those UVs and emits an explicit warning. + +texture_px_per_leng = render.uv_calc_texture_px_per_leng( + texture_px_per_feature=177.1, + feature_leng=1.25e-3, +) + +physical_mapping = render.uv_map_planar_scaled( + rotated_mesh.coords, + texture, + texture_px_per_leng, +) + +physical_mesh = render.Mesh3D( + element_type=rotated_mesh.element_type, + coords=rotated_mesh.coords, + connectivity=rotated_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=physical_mapping.uvs, + texture=physical_mapping.texture, + ), +) + +physical_camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(rotated_mesh), + focal_length=35.0e-3, + subsample=4, +) + +physical_camera = render.cam_frame_mesh( + physical_camera, + rotated_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +render_uv_example( + physical_mesh, + physical_camera, + output_dir / "physical_pitch", +) + +image_leng_per_px = render.cam_calc_leng_per_px(physical_camera) + +image_px_per_feature_pitch = render.uv_calc_image_px_per_feature( + 1.25e-3, + image_leng_per_px, +) + +print( + "Physical pitch mapping predicts " + f"{image_px_per_feature_pitch:.2f} image px/dot pitch at the ROI" +) + +print(f"Rendered UV fit variants to {output_dir}") + +# %% +# For the aligned target, contain, fit U, and fit V are shown from left to +# right. The target and UV axes coincide, so this row isolates the behaviour of +# the three aspect preserving fit policies. +# +# .. image:: ../../_static/renderuvs_ex1b_uv_texture_aspect_aligned.png +# :alt: Contain, fit U, and fit V mappings on an axis aligned plate +# :width: 1000px +# :align: center + +# %% +# The same contain, fit U, and fit V order is repeated after rotating the +# physical target. The UV projection axes remain fixed in the camera frame, so +# the grid now exposes the mismatch between target and UV axes. +# +# .. image:: ../../_static/renderuvs_ex1b_uv_texture_aspect_rotated.png +# :alt: Contain, fit U, and fit V mappings on an oblique plate +# :width: 1000px +# :align: center + +# %% +# Finally, the physically scaled mapping fixes the dot pitch instead of fitting +# the source image to either projected extent. +# +# .. image:: ../../_static/renderuvs_ex1b_uv_texture_aspect_physical_pitch.png +# :alt: Physically pitched calibration texture on an oblique plate +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/renderuvs/ex1c_uv_pixel_region.py b/src/pyvale/examples/renderuvs/ex1c_uv_pixel_region.py new file mode 100644 index 000000000..ac69010b4 --- /dev/null +++ b/src/pyvale/examples/renderuvs/ex1c_uv_pixel_region.py @@ -0,0 +1,163 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render UVs: Compare texture boundary modes +================================================================================ + +Here we map a three dimensional plate with hole mesh beyond a source texture's +pixel bounds. We compare a seamless periodic texture, a non periodic texture +whose repeated edges form a seam, and the default saturated boundary mode. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render +from pyvale.examples.renderuvs.tools import render_uv_example + +# %% +# 1. Load and orient the packaged plate with hole mesh +# ------------------------------------------------------------ +# The native PyVale CSV loader provides the three dimensional surface mesh. +# Rotating about its centre makes the hole and exposed side edges legible. +data_dir = dataset.riley_platehole_csv_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +base_mesh = render.mesh3d_from_simdata(simulation, shader=None) + +oriented_mesh = render.mesh_rotate( + base_mesh, + Rotation.from_euler("xyz", (0.0, 22.0, 8.0), degrees=True), + pivot=render.mesh_center(base_mesh), +) + +# %% +# 2. Build the experimental camera and calculate its image scale +# ---------------------------------------------------------------------- +camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(oriented_mesh), + focal_length=35.0e-3, + subsample=4, +) + +camera = render.cam_frame_mesh( + camera, + oriented_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +image_leng_per_px = render.cam_calc_leng_per_px(camera) + +# %% +# 3. Build periodic and non periodic source textures +# ---------------------------------------------------------------------- +# A periodic checker repeats without a seam. A horizontal ramp is deliberately +# non periodic: its bright right edge meets its dark left edge when tiled, so +# the boundary is unmistakable in the rendered result. +tile_size = 128 +tile_columns, tile_rows = np.meshgrid( + np.arange(tile_size), + np.arange(tile_size), +) +checker = ((tile_columns // 16 + tile_rows // 16) % 2) * 190 + 32 +seamless_texture = checker.astype(np.uint8) +ramp = np.linspace(24, 232, 256, dtype=np.uint8) +nonperiodic_texture = np.tile(ramp, (tile_size, 1)) + +# %% +# 4. Define a physical feature size and cross the texture boundary +# ---------------------------------------------------------------------- +# The checker has 16 texture pixels per square. Requesting 16 image pixels per +# square and using the camera scale defines its physical size. Moving the +# mapping centre close to the right edge guarantees that the plate crosses a +# boundary in both the tiled and saturated cases. +texture_px_per_leng = render.uv_calc_texture_px_per_leng_from_image( + texture_px_per_feature=16.0, + image_px_per_feature=16.0, + image_leng_per_px=image_leng_per_px, +) +nonperiodic_height, nonperiodic_width = nonperiodic_texture.shape[:2] + +seamless_mapping = render.uv_map_planar_scaled( + oriented_mesh.coords, + seamless_texture, + texture_px_per_leng, + plane=render.EUVPlane.XY, + texture_center_px=np.array((0.90 * tile_size, 0.50 * tile_size)), + bounds=render.EUVBounds.TILED, +) + +seamed_mapping = render.uv_map_planar_scaled( + oriented_mesh.coords, + nonperiodic_texture, + texture_px_per_leng, + plane=render.EUVPlane.XY, + texture_center_px=np.array( + (0.90 * nonperiodic_width, 0.50 * nonperiodic_height) + ), + bounds=render.EUVBounds.TILED, +) + +saturated_mapping = render.uv_map_planar_scaled( + oriented_mesh.coords, + nonperiodic_texture, + texture_px_per_leng, + plane=render.EUVPlane.XY, + texture_center_px=np.array( + (0.90 * nonperiodic_width, 0.50 * nonperiodic_height) + ), +) + +# %% +# 5. Render the three texture boundary cases +# ---------------------------------------------------------------------- +output_dir = Path.cwd() / "pyvale-output" / "renderuvs_ex1c_uv_pixel_region" + +for variant_name, mapping in ( + ("seamless", seamless_mapping), + ("tiled_seam", seamed_mapping), + ("saturated", saturated_mapping), +): + textured_mesh = render.Mesh3D( + element_type=oriented_mesh.element_type, + coords=oriented_mesh.coords, + connectivity=oriented_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=mapping.uvs, + texture=mapping.texture, + ), + ) + render_uv_example(textured_mesh, camera, output_dir / variant_name) + +print(f"Rendered the texture boundary comparisons to {output_dir}") +print( + f"Image scale={image_leng_per_px:.6g} length/px, " + f"seamless tiles={seamless_mapping.tile_counts}, " + f"non periodic tiles={seamed_mapping.tile_counts}" +) + +# %% +# From left to right: a periodic texture tiles seamlessly, a non periodic source +# exposes its repeated edge, and saturation stretches the edge pixels wherever +# the requested mapping lies beyond the source image. +# +# .. image:: ../../_static/renderuvs_ex1c_uv_pixel_region.png +# :alt: Seamless, visibly seamed, and saturated texture boundary modes +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/renderuvs/ex1d_uv_arbitrary_plane.py b/src/pyvale/examples/renderuvs/ex1d_uv_arbitrary_plane.py new file mode 100644 index 000000000..472f1fa0e --- /dev/null +++ b/src/pyvale/examples/renderuvs/ex1d_uv_arbitrary_plane.py @@ -0,0 +1,122 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render UVs: Projection onto an arbitrary plane +================================================================================ + +This example rotates the packaged three dimensional calibration plate and +generates UVs from its rotated local surface plane. The plate thickness and an +oblique camera view make the arbitrary physical orientation clear. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render +from pyvale.examples.renderuvs.tools import render_uv_example + +# %% +# 1. Load and tilt the three dimensional calibration plate +# ------------------------------------------------------------ +data_dir = dataset.riley_stereocal_case_path() +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connect.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +base_mesh = render.mesh3d_from_simdata(simulation, shader=None) +plate_rotation = Rotation.from_euler("xyz", (28.0, -34.0, 12.0), degrees=True) + +oriented_mesh = render.mesh_rotate( + base_mesh, + plate_rotation, + pivot=render.mesh_center(base_mesh), +) + +# %% +# 2. Define the rotated surface plane and generate UV coordinates +# ---------------------------------------------------------------------- +# The original plate face lies in XY. Rotating its normal and local V axis +# provides the arbitrary plane definition without manually deriving a basis. +plane = render.UVPlane( + normal=plate_rotation.apply(np.array((0.0, 0.0, 1.0))), + origin=render.mesh_center(oriented_mesh), + up=plate_rotation.apply(np.array((0.0, 1.0, 0.0))), +) + +texture = render.image_load(dataset.riley_cal_target_texture_path()) + +texture_px_per_leng = render.uv_calc_texture_px_per_leng( + texture_px_per_feature=177.1, + feature_leng=1.25e-3, +) + +mapping = render.uv_map_planar_scaled( + oriented_mesh.coords, + texture, + texture_px_per_leng, + plane=plane, +) + +textured_mesh = render.Mesh3D( + element_type=oriented_mesh.element_type, + coords=oriented_mesh.coords, + connectivity=oriented_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=mapping.uvs, + texture=mapping.texture, + ), +) + +# %% +# 3. Render the arbitrary plane mapping +# ---------------------------------------------------------------------- + +output_dir = Path.cwd() / "pyvale-output" / "renderuvs_ex1d_uv_arbitrary_plane" + +camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(oriented_mesh), + focal_length=35.0e-3, + subsample=4, +) + +camera = render.cam_frame_mesh( + camera, + oriented_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +render_uv_example(textured_mesh, camera, output_dir / "tilted") + +image_leng_per_px = render.cam_calc_leng_per_px(camera) +image_px_per_feature_pitch = render.uv_calc_image_px_per_feature( + 1.25e-3, + image_leng_per_px, +) + +print(f"Rendered the arbitrary plane UV mapping to {output_dir}") +print( + f"The 1.25 mm feature pitch is approximately " + f"{image_px_per_feature_pitch:.2f} px at the ROI" +) + +# %% +# The tilted calibration plate is mapped using its rotated local surface plane. +# +# .. image:: ../../_static/renderuvs_ex1d_uv_arbitrary_plane.png +# :alt: Oblique three dimensional calibration plate with arbitrary plane UVs +# :width: 500px +# :align: center diff --git a/src/pyvale/examples/renderuvs/ex1e_uv_transform.py b/src/pyvale/examples/renderuvs/ex1e_uv_transform.py new file mode 100644 index 000000000..463636c39 --- /dev/null +++ b/src/pyvale/examples/renderuvs/ex1e_uv_transform.py @@ -0,0 +1,127 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Render UVs: Translate, rotate, and scale a mapping +================================================================================ + +Here we retain the asymmetric Riley rabbit mesh, generate a centred mapping, +and apply a combined UV transformation. The physical rabbit is rendered from +an oblique view so its three dimensional form remains visible. +""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +from pyvale import render +from pyvale.examples.renderuvs.tools import render_uv_example + +# %% +# 1. Load and orient the packaged Riley rabbit mesh +# ------------------------------------------------------------ +# The asymmetric rabbit makes UV rotations and translations easier to recognise +# than a rectangular plate, so it remains the best mesh for this comparison. + +data_dir = dataset.riley_rabbit_case_path("riley", render.EElementType.QUAD4) + +simulation = io.MeshLoader( + load_dir=data_dir, + coords_file="coords.csv", + connect_files="connectivity.csv", + load_opts=io.SimLoadOpts(coord_header=None), +).load_mesh() + +base_mesh = render.mesh3d_from_simdata(simulation, shader=None) + +oriented_mesh = render.mesh_rotate( + base_mesh, + Rotation.from_euler("xyz", (8.0, -24.0, 0.0), degrees=True), + pivot=render.mesh_center(base_mesh), +) + +texture = render.image_load(dataset.riley_cal_target_texture_path()) + +camera = render.Camera( + pixels_num=np.array((1792, 1120)), + pixels_size=np.array((5.5e-6, 5.5e-6)), + pos_world=np.zeros(3), + rot_world=Rotation.identity(), + roi_cent_world=render.mesh_center(oriented_mesh), + focal_length=35.0e-3, + subsample=4, +) + +camera = render.cam_frame_mesh( + camera, + oriented_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.90), +) + +# %% +# 2. Fit one calibration target over the rabbit +# ------------------------------------------------------------ +# ``CONTAIN`` preserves the calibration texture's aspect ratio and fits one +# complete target inside the rabbit's planar XY extent. This keeps the grid +# legible and avoids repeating the calibration image across the mesh. + +original_uvs = render.uv_project_planar( + oriented_mesh.coords, + texture_shape=texture.shape[:2], + fit=render.EUVFit.CONTAIN, +) + +# %% +# 3. Apply a combined transformation +# ------------------------------------------------------------ +# Scaling and rotation happen about the selected pivot. Translation is applied +# last, and transformed UVs are allowed to extend outside the texture bounds. + +transform = render.UVTransform( + translation=(0.08, -0.04), + rotation_degrees=18.0, + scale=(0.85, 0.85), + pivot=(0.5, 0.5), +) + +transformed_uvs = render.uv_transform(original_uvs, transform) + +# %% +# 4. Render the original and transformed mappings +# ------------------------------------------------------------ +output_dir = Path.cwd() / "pyvale-output" / "renderuvs_ex1e_uv_transform" + +for variant_name, uvs in ( + ("original", original_uvs), + ("transformed", transformed_uvs), +): + textured_mesh = render.Mesh3D( + element_type=oriented_mesh.element_type, + coords=oriented_mesh.coords, + connectivity=oriented_mesh.connectivity, + shader=render.RileyTextureShader( + uvs=uvs, + texture=texture, + ), + ) + render_uv_example(textured_mesh, camera, output_dir / variant_name) + +print(f"Rendered the original and combined UV transform to {output_dir}") +print( + "One complete calibration target is fitted to the rabbit; the transformed " + "grid makes the rotation, translation, and scale visually explicit" +) + +# %% +# The original mapping is on the left and the combined transformed variant is +# on the right. +# +# .. image:: ../../_static/renderuvs_ex1e_uv_transform.png +# :alt: Original and transformed UV mappings on a three dimensional rabbit +# :width: 900px +# :align: center diff --git a/src/pyvale/examples/renderuvs/tools.py b/src/pyvale/examples/renderuvs/tools.py new file mode 100644 index 000000000..4d9a79169 --- /dev/null +++ b/src/pyvale/examples/renderuvs/tools.py @@ -0,0 +1,33 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== +"""Shared rendering setup for documented Render UV examples.""" + +from pathlib import Path + +import riley + +from pyvale import render + + +def render_uv_example( + mesh: render.Mesh3D, + camera: render.Camera, + output_dir: Path, +) -> render.RenderResult: + """Render one prepared textured mesh and camera for the UV examples.""" + + config = riley.create_raster_config( + num_frames=1, + total_threads=4, + save_strategy=riley.SaveStrategy.disk, + ) + config.background_value = 128.0 + renderer = render.Riley(config, output_dir) + scene = render.Scene3D(meshes=[mesh], cameras=[camera]) + return renderer.render(scene) + + +__all__ = ["render_uv_example"] diff --git a/src/pyvale/examples/valid/ex1_load_exp_data.py b/src/pyvale/examples/valid/ex1_load_exp_data.py index 01a0ea0fc..0a2e84120 100644 --- a/src/pyvale/examples/valid/ex1_load_exp_data.py +++ b/src/pyvale/examples/valid/ex1_load_exp_data.py @@ -7,7 +7,7 @@ from pathlib import Path import numpy as np -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dataio as io import pyvale.valid as val diff --git a/src/pyvale/examples/valid/ex2_load_prob_sim_data.py b/src/pyvale/examples/valid/ex2_load_prob_sim_data.py index dc81aaa86..adb384868 100644 --- a/src/pyvale/examples/valid/ex2_load_prob_sim_data.py +++ b/src/pyvale/examples/valid/ex2_load_prob_sim_data.py @@ -7,7 +7,7 @@ from pathlib import Path import numpy as np -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dataio as io import pyvale.valid as val diff --git a/src/pyvale/examples/valid/ex3_cdfs.py b/src/pyvale/examples/valid/ex3_cdfs.py index e24814436..9289217c5 100644 --- a/src/pyvale/examples/valid/ex3_cdfs.py +++ b/src/pyvale/examples/valid/ex3_cdfs.py @@ -7,7 +7,7 @@ from pathlib import Path import numpy as np -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.dataio as io import pyvale.valid as val diff --git a/src/pyvale/examples/visualisation/ex1_visualisation_options.py b/src/pyvale/examples/visualisation/ex1_visualisation_options.py index 4ca915308..f29bec565 100644 --- a/src/pyvale/examples/visualisation/ex1_visualisation_options.py +++ b/src/pyvale/examples/visualisation/ex1_visualisation_options.py @@ -17,7 +17,7 @@ # Pyvale imports import pyvale.sensorsim as sens import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset #%% diff --git a/src/pyvale/mooseherder/__init__.py b/src/pyvale/mooseherder/__init__.py index 72f625e5e..6dba3eb0b 100644 --- a/src/pyvale/mooseherder/__init__.py +++ b/src/pyvale/mooseherder/__init__.py @@ -14,6 +14,7 @@ from .sweeploader import SweepLoader from .mooseconfig import MooseConfig from .sweeptools import sweep_param_grid +from .availability import BackendAvailability, gmsh_availability, moose_availability __all__ = [ "InputModifier", @@ -26,4 +27,7 @@ "SweepLoader", "MooseConfig", "sweep_param_grid", + "BackendAvailability", + "gmsh_availability", + "moose_availability", ] diff --git a/src/pyvale/mooseherder/availability.py b/src/pyvale/mooseherder/availability.py new file mode 100644 index 000000000..267ece4fe --- /dev/null +++ b/src/pyvale/mooseherder/availability.py @@ -0,0 +1,69 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Availability checks for optional MOOSE and Gmsh executables.""" + +from dataclasses import dataclass +import os +from pathlib import Path +import shutil + + +@dataclass(frozen=True, slots=True) +class BackendAvailability: + """Availability state and actionable diagnostic for one external backend. + + Parameters + ---------- + available : bool + Whether the executable is available and executable. + executable : pathlib.Path or None + Resolved executable path when one was found. + reason : str or None + Explanation supplied when ``available`` is ``False``. + """ + + available: bool + executable: Path | None + reason: str | None = None + + +def moose_availability(config: dict[str, Path | str]) -> BackendAvailability: + """Check that the MOOSE application configured for a runner is executable.""" + app_path = Path(config["app_path"]) + app_name = Path(str(config["app_name"])) + executable = app_name if app_name.is_absolute() else app_path / app_name + return _availability_for_path("MOOSE", executable) + + +def gmsh_availability(gmsh_path: Path | None = None) -> BackendAvailability: + """Find an explicit Gmsh executable or resolve ``gmsh`` from ``PATH``.""" + if gmsh_path is not None: + return _availability_for_path("Gmsh", gmsh_path) + resolved = shutil.which("gmsh") + if resolved is None: + return BackendAvailability( + False, + None, + "Gmsh was not found on PATH. Install Gmsh or configure its path.", + ) + return _availability_for_path("Gmsh", Path(resolved)) + + +def _availability_for_path(name: str, executable: Path) -> BackendAvailability: + """Return availability for one explicit executable path.""" + if not executable.is_file(): + return BackendAvailability( + False, + None, + f"{name} executable was not found: {executable}", + ) + if not os.access(executable, os.X_OK): + return BackendAvailability( + False, + executable, + f"{name} executable is not executable: {executable}", + ) + return BackendAvailability(True, executable) diff --git a/src/pyvale/mooseherder/exodusloader.py b/src/pyvale/mooseherder/exodusloader.py index a66d3ff81..ae3d7d6ed 100644 --- a/src/pyvale/mooseherder/exodusloader.py +++ b/src/pyvale/mooseherder/exodusloader.py @@ -25,7 +25,7 @@ import netCDF4 as nc import numpy as np from pyvale.dataio.simdata import SimData, SimLoadConfig -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.mooseherder.outputloader import IOutputLoader @@ -85,7 +85,12 @@ def get_names(self, key: str | None) -> np.ndarray | None: if key not in self._data.variables or key is None: return None - return nc.chartostring(np.array(self._data.variables[key][:])) + # netCDF4's chartostring triggers NumPy's deprecated in-place shape + # setting, so the character-to-string conversion is done here with a + # view and decode instead. + raw = np.array(self._data.variables[key][:]) + chars = raw.view(f"S{raw.shape[-1]}").reshape(raw.shape[:-1]) + return np.char.decode(chars, "utf-8") def get_var(self, key: str, time_inds: np.ndarray | None = None @@ -753,6 +758,8 @@ def load_sim_data(self, and data.coords is not None): data = enforce_mesh_convention(data) + data.refresh_mesh_type() + return data diff --git a/src/pyvale/mooseherder/gmshrunner.py b/src/pyvale/mooseherder/gmshrunner.py index 08d9a0706..3e37df50c 100644 --- a/src/pyvale/mooseherder/gmshrunner.py +++ b/src/pyvale/mooseherder/gmshrunner.py @@ -7,6 +7,7 @@ import subprocess from pathlib import Path from pyvale.mooseherder.simrunner import SimRunner +from pyvale.mooseherder.availability import BackendAvailability, gmsh_availability class GmshRunner(SimRunner): @@ -52,6 +53,19 @@ def set_gmsh_app(self, gmsh_app: Path) -> None: # type: ignore self._gmsh_app = gmsh_app + def availability(self) -> BackendAvailability: + """Return whether configured or PATH-resolved Gmsh is executable.""" + return gmsh_availability(self._gmsh_app) + + def verify_input(self) -> Path: + """Validate Gmsh and its ``.geo`` input before process creation.""" + availability = self.availability() + if not availability.available: + raise RuntimeError(availability.reason) + if self._input_path is None: + raise RuntimeError("Specify input *.geo file before running gmsh.") + return availability.executable # type: ignore + def get_input_file(self) -> Path | None: """get_input_path: the path to the input file to run gmsh with. @@ -59,7 +73,7 @@ def get_input_file(self) -> Path | None: Returns ------- Path | None - path to the gmsh *.geo file. + path to the gmsh ``*.geo`` file. """ return self._input_path @@ -71,7 +85,7 @@ def set_input_file(self, input_path: Path) -> None: Parameters ---------- input_file : Path - Full path to the gmsh *.geo input file. + Full path to the gmsh ``*.geo`` input file. Returns ------- @@ -121,13 +135,9 @@ def run(self, input_file: Path | None = None, parse_only: bool = True) -> None: if input_file is not None: self.set_input_file(input_file) - if self._gmsh_app is None: - raise RuntimeError("Specify the full path to the gmsh app before calling run.") + executable = self.verify_input() - if self._input_path is None: - raise RuntimeError("Specify input *.geo file before running gmsh.") - - arg_list = [str(self._gmsh_app)] + arg_list = [str(executable)] if parse_only is True: arg_list = arg_list+["-parse_and_exit"] @@ -155,4 +165,3 @@ def get_output_path(self) -> Path | None: """ return None - diff --git a/src/pyvale/mooseherder/inputmodifier.py b/src/pyvale/mooseherder/inputmodifier.py index 01dce85be..af2720222 100644 --- a/src/pyvale/mooseherder/inputmodifier.py +++ b/src/pyvale/mooseherder/inputmodifier.py @@ -26,7 +26,7 @@ def __init__( ) -> None: """Initialise the class by reading in the input file. Find and read any variables that are at the top of the file. Default comment_char - and end_char are set based on reading MOOSE *.i files. + and end_char are set based on reading MOOSE ``*.i`` files. Parameters diff --git a/src/pyvale/mooseherder/mooserunner.py b/src/pyvale/mooseherder/mooserunner.py index cacb63218..711e8f7ff 100644 --- a/src/pyvale/mooseherder/mooserunner.py +++ b/src/pyvale/mooseherder/mooserunner.py @@ -8,10 +8,11 @@ from pathlib import Path from pyvale.mooseherder.simrunner import SimRunner from pyvale.mooseherder.mooseconfig import MooseConfig +from pyvale.mooseherder.availability import BackendAvailability, moose_availability class MooseRunner(SimRunner): - """Used to run MOOSE models (*.i) from python.""" + """Used to run MOOSE models (``*.i``) from python.""" __slots__ = ("_config","_n_threads","_n_tasks","_redirect_stdout", "_arg_list","_input_path") @@ -46,8 +47,22 @@ def set_env_vars(self) -> None: os.environ['F77'] = 'mpif77' os.environ['FC'] = 'mpif90' os.environ['MOOSE_DIR'] = str(self._config['main_path']) - if str(self._config['app_path']) not in os.environ["PATH"]: - os.environ["PATH"] = os.environ["PATH"] + ':' + str(self._config['app_path']) + app_path = str(self._config['app_path']) + path_value = os.environ.get("PATH", "") + if app_path not in path_value: + os.environ["PATH"] = path_value + os.pathsep + app_path + + def availability(self) -> BackendAvailability: + """Return whether the configured MOOSE application can be executed.""" + return moose_availability(self._config) + + def verify_input(self) -> None: + """Validate executable and input-file state before launching MOOSE.""" + availability = self.availability() + if not availability.available: + raise RuntimeError(availability.reason) + if self._input_path is None: + raise RuntimeError("Set input path before calling run.") def set_threads(self, n_threads: int) -> None: """Sets the number of threads asked of MOOSE on the command line. @@ -151,7 +166,7 @@ def set_input_file(self, input_path: Path) -> None: Parameters ---------- input_file : Path - full path and name of *.i MOOSE input script. + full path and name of ``*.i`` MOOSE input script. Returns ------- @@ -260,7 +275,10 @@ def assemble_arg_list(self, input_file = None) -> list[str]: self.set_input_file(input_file) if self._input_path is None: - raise RuntimeError('No input file specified, set one using set_input_file or by passing on into this function.') + raise RuntimeError( + "No input file specified, set one using set_input_file or " + "by passing on into this function.", + ) arg_list = [] if self._n_tasks > 1: @@ -295,8 +313,7 @@ def run(self, input_file = None) -> None: if input_file is not None: self.set_input_file(input_file) - if self._input_path is None: - raise RuntimeError("Set input path before calling run.") + self.verify_input() self.set_env_vars() diff --git a/src/pyvale/render/__init__.py b/src/pyvale/render/__init__.py new file mode 100644 index 000000000..83a2eadc9 --- /dev/null +++ b/src/pyvale/render/__init__.py @@ -0,0 +1,267 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Unified rendering APIs for pyvale.""" + +from .blender import ( + Blender, + BlenderCalibrationData, + BlenderCalibrationTarget, + BlenderConfig, + BlenderImageShader, + BlenderMaterial, + BlenderTextureShader, + EBlenderDevice, + EBlenderEngine, + blender_available, + blender_camera_from_resolution, + blender_field_of_view, + blender_gpu_available, + blender_mm_per_pixel, + calibration_image_count, + focal_length_from_resolution, + raise_if_blender_unavailable, + render_calibration_images, +) +from .camera import Camera, EDistortionModel, EPSFType +from .cameratools import ( + EFrameFit, + StereoAngles, + StereoCameras, + StereoExtrinsics, + average_subpixel_image, + cam_calc_leng_per_px, + cam_calc_px_per_leng, + cam_coverage_to_fov_scale, + cam_fov_scale_to_coverage, + cam_frame_mesh, + cam_frame_points, + cam_frame_scene, + cam_look_at, + cam_pos_frame_points, + cam_project_points, + crop_image_rectangle, + pixel_grid_leng, + pixel_vec_leng, + stereo_build_faceon, + stereo_build_from_calibration, + stereo_build_symmetric, + stereo_calc_angles, + stereo_calc_baseline, + stereo_calc_extrinsics, + stereo_calc_stand_off, + stereo_save_calibration_matchid, + stereo_save_calibration_yaml, + subpixel_grid_leng, + subpixel_vec_leng, +) +from .capabilities import RenderCapabilities +from .errors import RenderInputError, ValidationIssue +from .feebee import ( + EFeebeeMaterialType, + EFeebeeShading, + EFeebeeTextureSampler, + Feebee, + FeebeeColourShader, + FeebeeConfig, + FeebeeMaterial, + FeebeeTextureShader, +) +from .imagetools import ( + EImageType, + image_crop, + image_grayscale, + image_load, + image_normalise, + image_resize, + image_save, +) +from .light import ELightType, Light +from .mesh import EElementType, Mesh3D +from .meshtools import ( + evenly_spaced_frame_indices, + first_last_frame_indices, + mesh3d_from_simdata, + mesh_bounds, + mesh_center, + mesh_center_at, + mesh_rotate, + mesh_scale, + mesh_transform, + mesh_translate, + select_frames, +) +from .rasterops import ( + calculate_edge_function, + calculate_elem_bound_box_high, + calculate_elem_bound_box_low, + format_image_number, +) +from .renderer3d import IRenderer3D +from .result import RenderResult +from .riley import ( + Riley, + RileyFunctionShader, + RileyNodalShader, + RileyTextureShader, + to_riley_camera, + to_riley_mesh, +) +from .scene import Scene3D +from .scenetools import ( + scene_arrange_circle, + scene_arrange_grid, + scene_arrange_line, + scene_arrange_points, + scene_bounds, + scene_center, + scene_rotate, + scene_translate, +) +from .uvtools import ( + EUVBounds, + EUVFit, + EUVOrigin, + EUVPlane, + UVMapping, + UVPlane, + UVTransform, + uv_calc_feature_leng, + uv_calc_image_px_per_feature, + uv_calc_texture_px_per_leng, + uv_calc_texture_px_per_leng_from_image, + uv_from_pixels, + uv_map_planar_scaled, + uv_project_planar, + uv_project_planar_centered, + uv_project_planar_pixels, + uv_to_pixels, + uv_transform, +) + +__all__ = [ + "Blender", + "BlenderCalibrationData", + "BlenderCalibrationTarget", + "BlenderConfig", + "BlenderImageShader", + "BlenderMaterial", + "BlenderTextureShader", + "Camera", + "EBlenderDevice", + "EBlenderEngine", + "EDistortionModel", + "EUVBounds", + "EFrameFit", + "EElementType", + "EFeebeeMaterialType", + "EFeebeeShading", + "EFeebeeTextureSampler", + "EImageType", + "ELightType", + "EPSFType", + "EUVFit", + "EUVOrigin", + "EUVPlane", + "Feebee", + "FeebeeColourShader", + "FeebeeConfig", + "FeebeeMaterial", + "FeebeeTextureShader", + "IRenderer3D", + "Light", + "Mesh3D", + "RenderCapabilities", + "RenderInputError", + "RenderResult", + "Riley", + "RileyFunctionShader", + "RileyNodalShader", + "RileyTextureShader", + "Scene3D", + "StereoAngles", + "StereoCameras", + "StereoExtrinsics", + "UVPlane", + "UVMapping", + "UVTransform", + "ValidationIssue", + "average_subpixel_image", + "blender_available", + "blender_camera_from_resolution", + "blender_field_of_view", + "blender_gpu_available", + "blender_mm_per_pixel", + "calculate_edge_function", + "calculate_elem_bound_box_high", + "calculate_elem_bound_box_low", + "calibration_image_count", + "cam_calc_leng_per_px", + "cam_calc_px_per_leng", + "cam_coverage_to_fov_scale", + "cam_fov_scale_to_coverage", + "cam_frame_mesh", + "cam_frame_points", + "cam_frame_scene", + "cam_look_at", + "cam_pos_frame_points", + "cam_project_points", + "crop_image_rectangle", + "evenly_spaced_frame_indices", + "first_last_frame_indices", + "focal_length_from_resolution", + "format_image_number", + "image_crop", + "image_grayscale", + "image_load", + "image_normalise", + "image_resize", + "image_save", + "mesh3d_from_simdata", + "mesh_bounds", + "mesh_center", + "mesh_center_at", + "mesh_rotate", + "mesh_scale", + "mesh_transform", + "mesh_translate", + "pixel_grid_leng", + "pixel_vec_leng", + "raise_if_blender_unavailable", + "render_calibration_images", + "scene_arrange_circle", + "scene_arrange_grid", + "scene_arrange_line", + "scene_arrange_points", + "scene_bounds", + "scene_center", + "scene_rotate", + "scene_translate", + "select_frames", + "stereo_build_faceon", + "stereo_build_from_calibration", + "stereo_build_symmetric", + "stereo_calc_angles", + "stereo_calc_baseline", + "stereo_calc_extrinsics", + "stereo_calc_stand_off", + "stereo_save_calibration_matchid", + "stereo_save_calibration_yaml", + "subpixel_grid_leng", + "subpixel_vec_leng", + "to_riley_camera", + "to_riley_mesh", + "uv_calc_feature_leng", + "uv_calc_image_px_per_feature", + "uv_calc_texture_px_per_leng", + "uv_calc_texture_px_per_leng_from_image", + "uv_from_pixels", + "uv_map_planar_scaled", + "uv_project_planar", + "uv_project_planar_centered", + "uv_project_planar_pixels", + "uv_to_pixels", + "uv_transform", +] diff --git a/src/pyvale/render/blender/__init__.py b/src/pyvale/render/blender/__init__.py new file mode 100644 index 000000000..c9fe08e43 --- /dev/null +++ b/src/pyvale/render/blender/__init__.py @@ -0,0 +1,43 @@ +"""Blender implementation of pyvale's unified renderer API.""" + +from .adapter import ( + Blender, + blender_available, + blender_gpu_available, + raise_if_blender_unavailable, +) +from .blendertools import ( + blender_camera_from_resolution, + blender_field_of_view, + blender_mm_per_pixel, + focal_length_from_resolution, +) +from .calibration import ( + BlenderCalibrationData, + BlenderCalibrationTarget, + calibration_image_count, + render_calibration_images, +) +from .config import BlenderConfig, EBlenderDevice, EBlenderEngine +from .shader import BlenderImageShader, BlenderMaterial, BlenderTextureShader + +__all__ = [ + "Blender", + "BlenderCalibrationData", + "BlenderCalibrationTarget", + "BlenderConfig", + "BlenderImageShader", + "BlenderMaterial", + "BlenderTextureShader", + "EBlenderDevice", + "EBlenderEngine", + "blender_available", + "blender_camera_from_resolution", + "blender_field_of_view", + "blender_gpu_available", + "blender_mm_per_pixel", + "calibration_image_count", + "focal_length_from_resolution", + "raise_if_blender_unavailable", + "render_calibration_images", +] diff --git a/src/pyvale/render/blender/adapter.py b/src/pyvale/render/blender/adapter.py new file mode 100644 index 000000000..e9ab68291 --- /dev/null +++ b/src/pyvale/render/blender/adapter.py @@ -0,0 +1,393 @@ +"""Unified Blender renderer adapter.""" + +import importlib +import sys +import warnings +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +from pyvale.sensorsim.simtools import centre_mesh_nodes + +from ..capabilities import RenderCapabilities +from ..errors import ValidationIssue +from ..light import ELightType, Light +from ..mesh import EElementType, Mesh3D +from ..renderer3d import IRenderer3D +from ..result import RenderResult +from ..scene import Scene3D +from ..verifyinput import raise_if_issues, verify_scene_3d +from .config import BlenderConfig, EBlenderDevice, EBlenderEngine +from .shader import BlenderImageShader, BlenderTextureShader + + +class Blender(IRenderer3D): + """Render common scene data and deformation frames in Blender.""" + + capabilities = RenderCapabilities( + element_types=frozenset((EElementType.TRI3,)), + supports_lights=True, + supports_camera_distortion=False, + supports_psf=False, + ) + + def __init__(self, config: BlenderConfig) -> None: + """Store configuration used by subsequent requests.""" + raise_if_blender_unavailable() + self.config = config + + def verify_input( + self, + scene: Scene3D, + ) -> None: + """Validate a complete Blender request before scene construction.""" + if not isinstance(scene, Scene3D): + raise TypeError("Blender requires a Scene3D.") + meshes = tuple( + mesh for mesh in scene.meshes if isinstance(mesh, Mesh3D) + ) + issues = list(verify_scene_3d(meshes, scene.cameras, scene.lights)) + if not isinstance(self.config, BlenderConfig): + issues.append( + ValidationIssue( + "config", + "TYPE", + "Expected BlenderConfig.", + ) + ) + elif ( + not isinstance(self.config.samples, int) + or not isinstance(self.config.max_bounces, int) + or not isinstance(self.config.threads, int) + or self.config.samples <= 0 + or self.config.max_bounces <= 0 + or self.config.threads <= 0 + ): + issues.append( + ValidationIssue( + "config", + "VALUE", + "Samples, bounces, and threads must be positive integers.", + ) + ) + elif not isinstance(self.config.engine, EBlenderEngine): + issues.append( + ValidationIssue( + "config.engine", + "VALUE", + "Unsupported Blender engine.", + ) + ) + elif not isinstance(self.config.device, EBlenderDevice): + issues.append( + ValidationIssue( + "config.device", + "VALUE", + "Unsupported Cycles device.", + ) + ) + elif ( + not isinstance(self.config.render_deformed, bool) + or not isinstance(self.config.save_images, bool) + or not isinstance(self.config.save_scene, bool) + or not isinstance(self.config.use_denoising, bool) + or not isinstance(self.config.use_adaptive_sampling, bool) + ): + issues.append( + ValidationIssue( + "config", + "TYPE", + "Blender output controls must be booleans.", + ) + ) + elif not isinstance(self.config.seed, int) or self.config.seed < 0: + issues.append( + ValidationIssue( + "config.seed", + "VALUE", + "Expected a non-negative integer.", + ) + ) + if len(scene.cameras) > 2: + issues.append( + ValidationIssue( + "cameras", + "COUNT", + "Blender currently supports at most two cameras.", + ) + ) + if ( + sum( + isinstance(mesh, Mesh3D) and mesh.displacements is not None + for mesh in scene.meshes + ) + > 1 + ): + issues.append( + ValidationIssue( + "meshes", + "DEFORMATION", + "Only one deformable mesh is currently supported.", + ) + ) + if scene.lights is not None and any( + light.light_type not in ELightType for light in scene.lights + ): + issues.append( + ValidationIssue( + "lights", + "TYPE", + "Unsupported Blender light.", + ) + ) + reason = _blender_unavailable_reason() + if reason is not None: + issues.append(ValidationIssue("blender", "UNAVAILABLE", reason)) + for mesh_index, mesh in enumerate(scene.meshes): + if not isinstance(mesh, Mesh3D): + issues.append( + ValidationIssue( + f"scene.meshes[{mesh_index}]", + "TYPE", + "Blender requires common render.Mesh3D objects.", + ) + ) + continue + if mesh.element_type is not EElementType.TRI3: + warnings.warn( + "Blender support is verified only for Tri3 meshes; " + f"received {mesh.element_type.value}.", + RuntimeWarning, + stacklevel=2, + ) + raise_if_issues(tuple(issues)) + + def _render(self, render_scene: Scene3D) -> RenderResult: + """Construct and render one validated Blender scene.""" + blender_module = importlib.import_module("pyvale.blender") + meshes = tuple( + _triangulate_mesh_for_blender(mesh) for mesh in render_scene.meshes + ) + scene = blender_module.Scene() + parts = [scene.add_part(mesh, 3) for mesh in meshes] + for mesh, part in zip(meshes, parts): + if isinstance(mesh.shader, BlenderTextureShader): + scene.add_speckle( + part, + mesh.shader.image_path, + blender_module.MaterialData( + roughness=mesh.shader.material.roughness, + metallic=mesh.shader.material.metallic, + interpolant=mesh.shader.material.interpolant, + ), + mesh.shader.millimetres_per_pixel, + ) + elif isinstance(mesh.shader, BlenderImageShader): + material = blender_module.MaterialData( + roughness=mesh.shader.material.roughness, + metallic=mesh.shader.material.metallic, + interpolant=mesh.shader.material.interpolant, + ) + blender_module.Tools.clear_material_nodes(part) + blender_module.Tools.add_image_texture( + material, + image_array=mesh.shader.image, + ) + blender_module.Tools.uv_unwrap_part( + part, + mesh.shader.millimetres_per_pixel, + ) + for camera in render_scene.cameras: + scene.add_camera(camera) + for light in render_scene.lights or (): + scene.add_light(_legacy_light(blender_module, light)) + self.config.output_dir.mkdir(parents=True, exist_ok=True) + camera_data = ( + render_scene.cameras[0] + if len(render_scene.cameras) == 1 + else tuple(render_scene.cameras) + ) + render_data = blender_module.RenderData( + cam_data=camera_data, + base_dir=self.config.output_dir, + samples=self.config.samples, + max_bounces=self.config.max_bounces, + threads=self.config.threads, + engine=blender_module.RenderEngine(self.config.engine.value), + device=self.config.device.value, + seed=self.config.seed, + use_denoising=self.config.use_denoising, + use_adaptive_sampling=self.config.use_adaptive_sampling, + ) + deformable = next( + (mesh for mesh in meshes if mesh.displacements is not None), None + ) + if not self.config.render_deformed: + deformable = None + if deformable is None: + image = scene.render_single_image( + render_data, + stage_image=not self.config.save_images, + ) + if self.config.save_scene: + blender_module.Tools.save_blender_file( + self.config.output_dir, over_write=True + ) + if image is None: + return RenderResult(None, _image_paths(self.config.output_dir)) + return RenderResult(_normalise_images(np.asarray(image))) + part = parts[meshes.index(deformable)] + deformation_mesh = Mesh3D( + deformable.element_type, + centre_mesh_nodes(deformable.coords.copy(), 3), + deformable.connectivity, + deformable.shader, + deformable.displacements, + ) + image = scene.render_deformed_images( + deformation_mesh, + 3, + render_data, + part, + stage_image=not self.config.save_images, + ) + if self.config.save_scene: + blender_module.Tools.save_blender_file( + self.config.output_dir, over_write=True + ) + if image is None: + return RenderResult(None, _image_paths(self.config.output_dir)) + return RenderResult( + _normalise_deformed_images( + np.asarray(image), + len(render_scene.cameras), + ) + ) + + +def _legacy_light(blender_module: object, light: Light) -> object: + """Convert common light data to the legacy Blender scene light container.""" + light_type = blender_module.LightType(light.light_type.value.upper()) + direction = np.asarray(light.direction_world, dtype=np.float64) + rotation = Rotation.identity() + if np.linalg.norm(direction) > 0.0: + rotation = Rotation.align_vectors( + np.asarray((0.0, 0.0, -1.0)), + direction[None, :], + )[0] + return blender_module.LightData( + light.pos_world, + rotation, + light.intensity, + light_type, + light.shadow_soft_size, + ) + + +def _triangulate_mesh_for_blender(mesh: Mesh3D) -> Mesh3D: + """Tessellate legacy surface cells for Blender's supported Tri3 path.""" + if mesh.element_type is EElementType.TRI3: + return mesh + + import pyvista as pv + + cell_types = { + EElementType.TRI6: pv.CellType.QUADRATIC_TRIANGLE, + EElementType.QUAD4: pv.CellType.QUAD, + EElementType.QUAD8: pv.CellType.QUADRATIC_QUAD, + EElementType.QUAD9: pv.CellType.BIQUADRATIC_QUAD, + } + nodes_per_element = mesh.connectivity.shape[1] + cells = np.column_stack( + ( + np.full( + mesh.connectivity.shape[0], + nodes_per_element, + dtype=np.uintp, + ), + mesh.connectivity, + ) + ).ravel() + grid = pv.UnstructuredGrid( + cells, + np.full(mesh.connectivity.shape[0], cell_types[mesh.element_type]), + mesh.coords, + ) + surface = grid.extract_surface(algorithm="dataset_surface").triangulate() + connectivity = np.asarray(surface.faces).reshape((-1, 4))[:, 1:] + return Mesh3D( + EElementType.TRI3, + np.asarray(surface.points), + connectivity, + mesh.shader, + mesh.displacements, + ) + + +def _image_paths(output_dir: Path) -> tuple[Path, ...]: + """Return persisted Blender TIFFs in deterministic lexical order.""" + return tuple(sorted((output_dir / "images").glob("*.tiff"))) + + +def _normalise_images(images: np.ndarray) -> np.ndarray: + """Normalise legacy single-frame image arrays to the common layout.""" + if images.ndim == 2: + return images[None, None, :, :, None] + return images.transpose(2, 0, 1)[None, :, :, :, None] + + +def _normalise_deformed_images( + images: np.ndarray, + camera_count: int, +) -> np.ndarray: + """Normalise legacy deformation stacks to + ``frame, camera, y, x, channel``. + """ + if images.ndim == 2: + return images[None, None, :, :, None] + frames = images.shape[2] // camera_count + return images.reshape( + images.shape[0], + images.shape[1], + frames, + camera_count, + ).transpose(2, 3, 0, 1)[:, :, :, :, None] + + +def raise_if_blender_unavailable() -> None: + """Raise RenderInputError if the optional Blender backend is missing.""" + reason = _blender_unavailable_reason() + if reason is not None: + raise_if_issues((ValidationIssue("blender", "UNAVAILABLE", reason),)) + + +def blender_available() -> bool: + """Return whether this interpreter can execute the Blender backend.""" + return _blender_unavailable_reason() is None + + +def blender_gpu_available() -> bool: + """Return whether Blender reports a supported Cycles GPU device. + + Returns + ------- + bool + ``True`` when Blender's Cycles preferences report a CUDA, OptiX, HIP, + Metal, or oneAPI device. ``False`` if Blender is unavailable. + """ + if _blender_unavailable_reason() is not None: + return False + blender_module = importlib.import_module("pyvale.blender") + return bool(blender_module.Tools.check_for_GPU()) + + +def _blender_unavailable_reason() -> str | None: + """Return an actionable reason when Blender cannot run here.""" + if sys.version_info[:2] != (3, 13): + return "Blender requires Python 3.13 and the pyvale blender extra." + try: + importlib.import_module("pyvale.blender") + except Exception as exception: # noqa: BLE001 + return f"Blender is not available: {exception}" + return None diff --git a/src/pyvale/render/blender/blendertools.py b/src/pyvale/render/blender/blendertools.py new file mode 100644 index 000000000..ea93fd5d9 --- /dev/null +++ b/src/pyvale/render/blender/blendertools.py @@ -0,0 +1,63 @@ +"""Camera helpers specific to the Blender rendering backend.""" + +import numpy as np +from scipy.spatial.transform import Rotation + +from ..camera import Camera + + +def blender_camera_from_resolution( + pixels_num: np.ndarray, + pixels_size: np.ndarray, + working_dist: float, + resolution: float, +) -> Camera: + """Create a perspective camera from working distance and resolution.""" + focal_length = focal_length_from_resolution( + pixels_size, + working_dist, + resolution, + ) + return Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=np.array((0.0, 0.0, working_dist)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=focal_length, + ) + + +def focal_length_from_resolution( + pixels_size: np.ndarray, + working_dist: float, + resolution: float, +) -> float: + """Calculate the focal length for a requested image resolution.""" + return working_dist * pixels_size[0] / resolution + + +def blender_field_of_view(camera: Camera) -> tuple[float, float]: + """Calculate Blender's perspective field of view for a camera.""" + image_distance = np.linalg.norm(camera.pos_world - camera.roi_cent_world) + field_x = ( + camera.pixels_num[0] + * camera.pixels_size[0] + * image_distance + / camera.focal_length + ) + field_y = camera.pixels_num[1] / camera.pixels_num[0] * field_x + return float(field_x), float(field_y) + + +def blender_mm_per_pixel(camera: Camera) -> float: + """Calculate the horizontal world length represented by one pixel.""" + return blender_field_of_view(camera)[0] / camera.pixels_num[0] + + +__all__ = [ + "blender_camera_from_resolution", + "blender_field_of_view", + "blender_mm_per_pixel", + "focal_length_from_resolution", +] diff --git a/src/pyvale/render/blender/calibration.py b/src/pyvale/render/blender/calibration.py new file mode 100644 index 000000000..d21b9fdff --- /dev/null +++ b/src/pyvale/render/blender/calibration.py @@ -0,0 +1,221 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Blender calibration-target configuration helpers.""" + +import importlib +from collections.abc import Sequence +from dataclasses import dataclass, field +from pathlib import Path +from types import SimpleNamespace + +import numpy as np + +from ..camera import Camera +from ..light import Light +from ..result import RenderResult +from .adapter import _legacy_light, raise_if_blender_unavailable +from .config import BlenderConfig +from .shader import BlenderMaterial + + +@dataclass(frozen=True, slots=True) +class BlenderCalibrationData: + """Describe the pose sweep used to render a camera calibration target. + + Parameters + ---------- + angle_lims : tuple[float, float], optional + Inclusive lower and upper target-angle limits in degrees. + angle_step : float, optional + Angular increment in degrees. + plunge_lims : tuple[float, float], optional + Inclusive lower and upper target-depth limits. + plunge_step : float, optional + Target-depth increment. + x_limit, y_limit : float or None, optional + Optional lateral target-position limits retained for calibration scene + generation. + max_images : int or None, optional + Maximum number of TIFF files to render. ``None`` renders every pose. + """ + + angle_lims: tuple[float, float] = (-10.0, 10.0) + angle_step: float = 5.0 + plunge_lims: tuple[float, float] = (-5.0, 5.0) + plunge_step: float = 5.0 + x_limit: float | None = None + y_limit: float | None = None + max_images: int | None = None + + +@dataclass(slots=True) +class BlenderCalibrationTarget: + """A textured planar target used to generate calibration images. + + Parameters + ---------- + size : numpy.ndarray + Target width, height, and thickness in world units. + image_path : pathlib.Path + Calibration-target texture image. + millimetres_per_pixel : float + Texture resolution used by Blender UV unwrapping. + material : BlenderMaterial, optional + Backend-owned material controls for the target. + """ + + size: np.ndarray + image_path: Path + millimetres_per_pixel: float + material: BlenderMaterial = field(default_factory=BlenderMaterial) + + def __post_init__(self) -> None: + """Normalise target array and texture path inputs.""" + self.size = np.asarray(self.size, dtype=np.float64) + self.image_path = Path(self.image_path) + + +def calibration_image_count(data: BlenderCalibrationData) -> int: + """Return the number of legacy Blender calibration-target images. + + Parameters + ---------- + data : BlenderCalibrationData + Calibration target pose-sweep configuration. + + Returns + ------- + int + Number of target poses in the historical nine-position lateral sweep. + """ + plunge_steps = ( + data.plunge_lims[1] - data.plunge_lims[0] + ) / data.plunge_step + angle_steps = (data.angle_lims[1] - data.angle_lims[0]) / data.angle_step + return int((plunge_steps + 1.0) * (angle_steps + 1.0) ** 2 * 9) + + +def render_calibration_images( + target: BlenderCalibrationTarget, + cameras: Sequence[Camera], + config: BlenderConfig, + data: BlenderCalibrationData | None = None, + lights: Sequence[Light] | None = None, +) -> RenderResult: + """Render a legacy-compatible Blender calibration-target pose sweep. + + Parameters + ---------- + target : BlenderCalibrationTarget + Textured physical calibration target. + cameras : Sequence[Camera] + Exactly two perspective cameras defining the calibration rig. + config : BlenderConfig + Blender engine, image output, and sampling controls. + data : BlenderCalibrationData, optional + Target translation and rotation sweep controls. + lights : Sequence[Light] or None, optional + Optional scene lights. ``None`` preserves Blender's dark default world. + + Returns + ------- + RenderResult + File-only result containing the calibration TIFF paths. + + Raises + ------ + RenderInputError + If input is invalid or the Blender backend is unavailable. + """ + raise_if_blender_unavailable() + if not isinstance(target, BlenderCalibrationTarget): + raise TypeError("target must be a BlenderCalibrationTarget.") + if not isinstance(config, BlenderConfig): + raise TypeError("config must be a BlenderConfig.") + if data is None: + data = BlenderCalibrationData() + elif not isinstance(data, BlenderCalibrationData): + raise TypeError("data must be a BlenderCalibrationData.") + if data.max_images is not None and data.max_images < 1: + raise ValueError("data.max_images must be positive when specified.") + if target.size.shape != (3,) or np.any(target.size <= 0.0): + raise ValueError("target.size must contain three positive dimensions.") + camera_data = tuple(cameras) + if len(camera_data) != 2 or not all( + isinstance(camera, Camera) for camera in camera_data + ): + raise ValueError("Calibration rendering requires exactly two Cameras.") + + blender = importlib.import_module("pyvale.blender") + scene = blender.Scene() + target_object = scene.add_cal_target(target.size) + for camera in camera_data: + scene.add_camera(camera) + for light in lights or (): + scene.add_light(_legacy_light(blender, light)) + scene.add_speckle( + target_object, + target.image_path, + blender.MaterialData( + roughness=target.material.roughness, + metallic=target.material.metallic, + interpolant=target.material.interpolant, + ), + target.millimetres_per_pixel, + cal=True, + ) + config.output_dir.mkdir(parents=True, exist_ok=True) + render_data = blender.RenderData( + cam_data=tuple( + _legacy_calibration_camera(camera) for camera in camera_data + ), + base_dir=config.output_dir, + samples=config.samples, + max_bounces=config.max_bounces, + threads=config.threads, + engine=blender.RenderEngine(config.engine.value), + device=config.device.value, + seed=config.seed, + use_denoising=config.use_denoising, + use_adaptive_sampling=config.use_adaptive_sampling, + ) + legacy_data = blender.CalibrationData( + angle_lims=data.angle_lims, + angle_step=data.angle_step, + plunge_lims=data.plunge_lims, + plunge_step=data.plunge_step, + x_limit=data.x_limit, + y_limit=data.y_limit, + max_images=data.max_images, + ) + blender.Tools.render_calibration_images( + render_data, legacy_data, target_object + ) + paths = tuple(sorted((config.output_dir / "calimages").glob("*.tiff"))) + return RenderResult(None, paths) + + +def _legacy_calibration_camera(camera: Camera) -> SimpleNamespace: + """Supply the derived camera data required by the legacy target loop.""" + values = { + field: getattr(camera, field) for field in camera.__dataclass_fields__ + } + values["pixels_num"] = camera.pixels_num + values["pixels_size"] = camera.pixels_size + values["image_dist"] = float( + np.linalg.norm( + camera.pos_world - camera.roi_cent_world, + ) + ) + return SimpleNamespace(**values) + + +__all__ = [ + "BlenderCalibrationData", + "BlenderCalibrationTarget", + "calibration_image_count", + "render_calibration_images", +] diff --git a/src/pyvale/render/blender/config.py b/src/pyvale/render/blender/config.py new file mode 100644 index 000000000..cfba5b0cb --- /dev/null +++ b/src/pyvale/render/blender/config.py @@ -0,0 +1,70 @@ +"""Blender-specific unified renderer configuration.""" + +from dataclasses import dataclass +from enum import Enum +from pathlib import Path + + +class EBlenderEngine(Enum): + """Blender render engines supported by the unified adapter.""" + + CYCLES = "CYCLES" + EEVEE = "BLENDER_EEVEE" + WORKBENCH = "BLENDER_WORKBENCH" + + +class EBlenderDevice(Enum): + """Cycles compute devices supported by the unified adapter.""" + + CPU = "CPU" + GPU = "GPU" + + +@dataclass(frozen=True, slots=True) +class BlenderConfig: + """Stable Blender controls accepted by the unified adapter. + + Parameters + ---------- + output_dir : pathlib.Path + Directory used for optional TIFF and Blender-project outputs. + engine : EBlenderEngine, optional + Blender render engine. + device : EBlenderDevice, optional + Cycles compute device. CPU is the reproducible regression default. + samples : int, optional + Per-pixel render samples. + max_bounces : int, optional + Cycles maximum light-bounce count. + threads : int, optional + Blender render worker count. + render_deformed : bool, optional + Render each nodal-displacement frame instead of a static scene. + save_images : bool, optional + Persist TIFFs and return their paths rather than retaining image arrays. + save_scene : bool, optional + Persist the constructed Blender scene as a ``.blend`` project file. + seed : int, optional + Fixed Cycles sampling seed used for reproducible rendering. + use_denoising : bool, optional + Enable Cycles image denoising. + use_adaptive_sampling : bool, optional + Enable Cycles adaptive sampling. + """ + + output_dir: Path + engine: EBlenderEngine = EBlenderEngine.CYCLES + device: EBlenderDevice = EBlenderDevice.CPU + samples: int = 2 + max_bounces: int = 12 + threads: int = 1 + render_deformed: bool = False + save_images: bool = False + save_scene: bool = False + seed: int = 0 + use_denoising: bool = True + use_adaptive_sampling: bool = True + + def __post_init__(self) -> None: + """Normalise the output directory to a path object.""" + object.__setattr__(self, "output_dir", Path(self.output_dir)) diff --git a/src/pyvale/render/blender/shader.py b/src/pyvale/render/blender/shader.py new file mode 100644 index 000000000..86da40f3f --- /dev/null +++ b/src/pyvale/render/blender/shader.py @@ -0,0 +1,75 @@ +"""Blender-owned mesh shader definitions.""" + +from dataclasses import dataclass +from pathlib import Path + +import numpy as np + + +@dataclass(frozen=True, slots=True) +class BlenderMaterial: + """Principled-material controls owned by the Blender backend. + + Parameters + ---------- + roughness : float, optional + Blender principled-BSDF roughness. + metallic : float, optional + Blender principled-BSDF metallic weight. + interpolant : str, optional + Blender image-texture interpolation mode. + """ + + roughness: float = 1.0 + metallic: float = 0.0 + interpolant: str = "Cubic" + + +@dataclass(frozen=True, slots=True) +class BlenderTextureShader: + """Image texture controls for a Blender mesh material. + + Parameters + ---------- + image_path : pathlib.Path + Speckle or surface texture image supplied to Blender. + millimetres_per_pixel : float + Texture scale used by Blender UV unwrapping. + material : BlenderMaterial, optional + Backend-owned principled material controls. + """ + + image_path: Path + millimetres_per_pixel: float + material: BlenderMaterial = BlenderMaterial() + + def __post_init__(self) -> None: + """Normalise the texture path.""" + object.__setattr__(self, "image_path", Path(self.image_path)) + + +@dataclass(slots=True) +class BlenderImageShader: + """In-memory texture-image controls for a Blender mesh material. + + Parameters + ---------- + image : numpy.ndarray + Greyscale or RGBA image texture supplied directly to Blender. + millimetres_per_pixel : float + Texture scale used by Blender UV unwrapping. + material : BlenderMaterial, optional + Backend-owned principled material controls. + """ + + image: np.ndarray + millimetres_per_pixel: float + material: BlenderMaterial = BlenderMaterial() + + def __post_init__(self) -> None: + """Store an immutable contiguous image representation.""" + image = np.asarray(self.image) + if np.issubdtype(image.dtype, np.floating): + upper = 1.0 if image.size and np.nanmax(image) <= 1.0 else 255.0 + image = np.clip(image * (255.0 / upper), 0.0, 255.0) + self.image = np.ascontiguousarray(image, dtype=np.uint8) diff --git a/src/pyvale/render/camera.py b/src/pyvale/render/camera.py new file mode 100644 index 000000000..56a079f8f --- /dev/null +++ b/src/pyvale/render/camera.py @@ -0,0 +1,132 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Camera data for three dimensional and planar rendering.""" + +from dataclasses import dataclass, field +from enum import IntEnum + +import numpy as np +from scipy.spatial.transform import Rotation + + +class EDistortionModel(IntEnum): + """Lens distortion models matching Riley's C backend. + + Values correspond to the ``distortion_model`` field in Riley's CCameraInput. + """ + + NONE = 0 + BROWN_CONRADY = 1 + BROWN_CONRADY_EXT = 2 + POLYNOMIAL = 3 + BROWN_CONRADY_POLYNOMIAL = 4 + BROWN_CONRADY_EXT_POLYNOMIAL = 5 + + +class EPSFType(IntEnum): + """Point spread function types matching Riley's PsfType enum. + + Values correspond to Riley's PsfType enum. + """ + + PIXEL_BOX = 0 + GAUSSIAN = 1 + ANISOTROPIC_GAUSSIAN = 2 + + +@dataclass(slots=True, kw_only=True) +class Camera: + """A perspective camera data structure. + + Parameters + ---------- + pixels_num : np.ndarray + Image pixel counts with shape ``(2,)`` and dtype ``int32`` in + ``(width, height)`` order. + pixels_size : np.ndarray + Physical pixel dimensions with shape ``(2,)`` and dtype ``float64`` + in ``(width, height)`` order, in world length units. + pos_world : np.ndarray + Camera position in world coordinates with shape ``(3,)`` and dtype + ``float64`` representing (X, Y, Z) coordinates. + rot_world : scipy.spatial.transform.Rotation + Camera orientation in world coordinates. + roi_cent_world : np.ndarray + Region of interest centre in world coordinates with shape ``(3,)`` + and dtype ``float64`` representing (X, Y, Z) coordinates. + focal_length : float + Camera focal length in the same units as world coordinates. + subsample : int, optional + Number of sub pixel samples per pixel direction. + distortion_model : EDistortionModel, optional + Lens distortion model identifier. + distortion_k1, distortion_k2, distortion_k3, distortion_k4 : float, optional + Radial distortion coefficients. + distortion_k5, distortion_k6 : float, optional + Additional radial distortion coefficients. + distortion_p1, distortion_p2 : float, optional + Tangential distortion coefficients. + c0, c1 : float or None, optional + Optical centre coordinates in pixels. ``None`` centres the coordinate + in the image. + fstop : float or None, optional + Lens f number. ``None`` leaves depth of field disabled. + psf_type : EPSFType, optional + Point spread function model identifier. + psf_sigma_x, psf_sigma_y : float, optional + Point spread function standard deviations in pixel coordinates. + psf_theta : float, optional + Point spread function rotation in radians. + psf_support_rad : float, optional + Point spread function support radius in pixels. + """ + + pixels_num: np.ndarray + pixels_size: np.ndarray + pos_world: np.ndarray + rot_world: Rotation + roi_cent_world: np.ndarray + focal_length: float + subsample: int = 1 + distortion_model: EDistortionModel = EDistortionModel.NONE + distortion_k1: float = 0.0 + distortion_k2: float = 0.0 + distortion_k3: float = 0.0 + distortion_k4: float = 0.0 + distortion_k5: float = 0.0 + distortion_k6: float = 0.0 + distortion_p1: float = 0.0 + distortion_p2: float = 0.0 + c0: float | None = None + c1: float | None = None + fstop: float | None = None + psf_type: EPSFType = EPSFType.PIXEL_BOX + psf_sigma_x: float = 0.0 + psf_sigma_y: float = 0.0 + psf_theta: float = 0.0 + psf_support_rad: float = 0.0 + + def __post_init__(self) -> None: + """Normalise arrays and supply an unset optical centre.""" + self.pixels_num = np.asarray(self.pixels_num, dtype=np.int32) + self.pixels_size = np.asarray(self.pixels_size, dtype=np.float64) + self.pos_world = np.asarray(self.pos_world, dtype=np.float64) + self.roi_cent_world = np.asarray(self.roi_cent_world, dtype=np.float64) + + if self.c0 is None: + self.c0 = float(self.pixels_num[0]) / 2.0 + + if self.c1 is None: + self.c1 = float(self.pixels_num[1]) / 2.0 + + if isinstance(self.distortion_model, int): + self.distortion_model = EDistortionModel(self.distortion_model) + + if isinstance(self.psf_type, int): + self.psf_type = EPSFType(self.psf_type) + + +__all__ = ["Camera", "EDistortionModel", "EPSFType"] diff --git a/src/pyvale/render/cameratools.py b/src/pyvale/render/cameratools.py new file mode 100644 index 000000000..7adfb8d10 --- /dev/null +++ b/src/pyvale/render/cameratools.py @@ -0,0 +1,1122 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Camera placement, orientation, projection, and stereo configuration +helpers. +""" + +from collections.abc import Sequence +from dataclasses import dataclass, replace +from enum import IntEnum +from pathlib import Path + +import numpy as np +import riley +import yaml +from scipy.signal import convolve2d +from scipy.spatial.transform import Rotation + +from .camera import Camera +from .mesh import Mesh3D + + +StereoCameras = tuple[Camera, Camera] +"""The ordered pair of cameras that defines a stereo rig.""" + + +class EFrameFit(IntEnum): + """Rule used to fit world coordinates within the camera field of view.""" + + CONTAIN = 0 + COVER = 1 + HORIZONTAL = 2 + VERTICAL = 3 + + +@dataclass(frozen=True, slots=True) +class StereoExtrinsics: + """Transform from camera zero coordinates to camera one coordinates. + + The relation is ``point_cam1 = rotation_cam1_from_cam0.apply(point_cam0) + + translation_cam1_in_cam0``. The camera rotations stored by + :class:`Camera` transform camera coordinates into world coordinates. + + Parameters + ---------- + rotation_cam1_from_cam0 : scipy.spatial.transform.Rotation + Relative rotation from camera zero frame to camera one frame. + translation_cam1_in_cam0 : np.ndarray + Translation vector array with shape ``(3,)`` and dtype ``float64`` + representing the position of camera zero in camera one frame. + """ + + rotation_cam1_from_cam0: Rotation + translation_cam1_in_cam0: np.ndarray + + +@dataclass(frozen=True, slots=True) +class StereoAngles: + """Relative orientation and optical axis convergence of a stereo pair. + + Parameters + ---------- + relative_euler_xyz_degrees : np.ndarray + Relative Euler angles (XYZ) in degrees with shape ``(3,)`` and dtype + ``float64``. + convergence_degrees : float + Optical axis convergence angle in degrees. + """ + + relative_euler_xyz_degrees: np.ndarray + convergence_degrees: float + + +def cam_look_at( + camera: Camera, + target: np.ndarray, + up: np.ndarray = np.array((0.0, 1.0, 0.0)), +) -> Camera: + """Orient a camera so its optical axis points towards a target location. + + Parameters + ---------- + camera : Camera + Camera to reorient. + target : np.ndarray + Target position array with shape ``(3,)`` and dtype ``float64`` + representing (X, Y, Z) world coordinates the camera should aim at. + up : np.ndarray, optional + Preferred upward world direction array with shape ``(3,)`` and dtype + ``float64`` (default is +Y: ``(0, 1, 0)``). + + Returns + ------- + Camera + A copy of the camera with updated rotation and ROI center. + + Raises + ------ + ValueError + If camera position and target are coincident. + """ + target_vec = np.asarray(target, dtype=np.float64) + pos_vec = np.asarray(camera.pos_world, dtype=np.float64) + view_dir = target_vec - pos_vec + dist = np.linalg.norm(view_dir) + + if dist < 1.0e-12: + raise ValueError("Camera position and look-at target are coincident.") + + forward = view_dir / dist + z_cam = -forward + + up_vec = np.asarray(up, dtype=np.float64) + up_norm = np.linalg.norm(up_vec) + if up_norm < 1.0e-12: + up_vec = np.array((0.0, 1.0, 0.0)) + else: + up_vec = up_vec / up_norm + + x_cam = np.cross(up_vec, z_cam) + x_norm = np.linalg.norm(x_cam) + if x_norm < 1.0e-6: + fallback_up = np.array((0.0, 0.0, 1.0)) + if abs(np.dot(fallback_up, z_cam)) > 0.9: + fallback_up = np.array((1.0, 0.0, 0.0)) + x_cam = np.cross(fallback_up, z_cam) + x_norm = np.linalg.norm(x_cam) + + x_cam = x_cam / x_norm + y_cam = np.cross(z_cam, x_cam) + y_cam = y_cam / np.linalg.norm(y_cam) + + rot_matrix = np.column_stack((x_cam, y_cam, z_cam)) + rot_world = Rotation.from_matrix(rot_matrix) + + return replace( + camera, + rot_world=rot_world, + roi_cent_world=target_vec.copy(), + ) + + +def cam_coverage_to_fov_scale(coverage: float) -> float: + """Convert target image coverage to Riley's field of view scale. + + Parameters + ---------- + coverage : float + Target image coverage fraction (e.g. 0.9 for 90% sensor coverage). + + Returns + ------- + float + Riley field of view scale parameter. + + Raises + ------ + ValueError + If coverage is not positive. + """ + if coverage <= 0.0: + raise ValueError("coverage must be positive.") + return riley.coverage_to_fov_scale(float(coverage)) + + +def cam_fov_scale_to_coverage(fov_scale: float) -> float: + """Convert Riley's field of view scale to target image coverage. + + Parameters + ---------- + fov_scale : float + Riley field of view scale parameter. + + Returns + ------- + float + Target image coverage fraction. + + Raises + ------ + ValueError + If fov_scale is not positive. + """ + if fov_scale <= 0.0: + raise ValueError("fov_scale must be positive.") + return riley.fov_scale_to_coverage(float(fov_scale)) + + +def cam_calc_leng_per_px( + camera: Camera, + target: np.ndarray | None = None, +) -> float: + """Calculate average simulation length per image pixel at a target. + + Riley evaluates the camera normal plane through the target and averages + its horizontal and vertical scaling. The camera ROI centre is used when + ``target`` is omitted. + + Parameters + ---------- + camera : Camera + Camera model. + target : np.ndarray or None, optional + Target position array with shape ``(3,)`` and dtype ``float64`` + representing (X, Y, Z) coordinates. If ``None``, uses + ``camera.roi_cent_world``. + + Returns + ------- + float + Average world length per pixel in simulation length units. + + Raises + ------ + ValueError + If target is not finite or has invalid shape. + """ + from .riley import to_riley_camera + + target_array = camera.roi_cent_world if target is None else target + target_array = np.asarray(target_array, dtype=np.float64) + if target_array.shape != (3,) or not np.isfinite(target_array).all(): + raise ValueError("target must be finite and have shape (3,).") + + return riley.calc_pixel_resolution( + to_riley_camera(camera), + tuple(float(value) for value in target_array), + ) + + +def cam_calc_px_per_leng( + camera: Camera, + target: np.ndarray | None = None, +) -> float: + """Calculate average image pixels per simulation length at a target. + + Parameters + ---------- + camera : Camera + Camera model. + target : np.ndarray or None, optional + Target position array with shape ``(3,)`` and dtype ``float64`` + representing (X, Y, Z) coordinates. If ``None``, uses + ``camera.roi_cent_world``. + + Returns + ------- + float + Average image pixels per world length unit. + """ + return 1.0 / cam_calc_leng_per_px(camera, target) + + +def cam_pos_frame_points( + points: np.ndarray, + pixels_num: tuple[int, int] | np.ndarray, + pixels_size: tuple[float, float] | np.ndarray, + focal_length: float, + rot_world: tuple[float, float, float] | np.ndarray | Rotation = ( + 0.0, + 0.0, + 0.0, + ), + fov_scale: float = 1.0, + fit_mode: EFrameFit = EFrameFit.CONTAIN, + target: np.ndarray | None = None, +) -> np.ndarray: + """Calculate a camera position that frames a set of world points. + + Parameters + ---------- + points : numpy.ndarray + Array of 3D point coordinates (e.g. mesh.coords) to frame. + pixels_num : tuple[int, int] or numpy.ndarray + Camera sensor resolution in pixels (num_x, num_y). + pixels_size : tuple[float, float] or numpy.ndarray + Pixel physical dimensions in metres. + focal_length : float + Camera focal length in metres. + rot_world : tuple, numpy.ndarray, or Rotation, optional + Euler angles in radians (xyz) or a scipy Rotation (default (0, 0, 0)). + fov_scale : float, optional + Scale applied to the fitted field of view. Values greater than one + leave a border and values below one crop the target (default 1.0). + fit_mode : EFrameFit, optional + Rule used to select the fitted sensor dimension. + target : numpy.ndarray or None, optional + Point placed at the image centre. The coordinate bounds centre is + used when omitted. + + Returns + ------- + numpy.ndarray + Camera world coordinates [x, y, z] to frame the points. + """ + pts = np.asarray(points, dtype=np.float64) + if pts.ndim != 2 or pts.shape[1] != 3: + raise ValueError("points must have shape (N, 3).") + if pts.shape[0] == 0: + raise ValueError("Cannot frame an empty set of points.") + + pixel_counts = np.asarray(pixels_num) + pixel_sizes = np.asarray(pixels_size, dtype=np.float64) + if ( + pixel_counts.shape != (2,) + or pixel_sizes.shape != (2,) + or np.any(pixel_counts <= 0.0) + or np.any(pixel_sizes <= 0.0) + or focal_length <= 0.0 + or fov_scale <= 0.0 + ): + raise ValueError( + "Camera dimensions, focal length, and fov_scale must be positive." + ) + + if isinstance(rot_world, Rotation): + rotation_xyz = rot_world.as_euler("xyz") + else: + rotation_xyz = np.asarray(rot_world, dtype=np.float64) + if rotation_xyz.shape != (3,): + raise ValueError("rot_world must have shape (3,).") + + target_tuple = None + if target is not None: + target_array = np.asarray(target, dtype=np.float64) + if target_array.shape != (3,): + raise ValueError("target must have shape (3,).") + target_tuple = tuple(float(value) for value in target_array) + + position = riley.pos_frame_coords( + pts, + tuple(int(value) for value in pixel_counts), + tuple(float(value) for value in pixel_sizes), + float(focal_length), + tuple(float(value) for value in rotation_xyz[::-1]), + fov_scale=float(fov_scale), + fit_mode=riley.FrameFitMode(int(fit_mode)), + target=target_tuple, + ) + return np.asarray(position, dtype=np.float64) + + +def cam_frame_points( + camera: Camera, + points: np.ndarray, + fov_scale: float = 1.0, + fit_mode: EFrameFit = EFrameFit.CONTAIN, + target: np.ndarray | None = None, +) -> Camera: + """Move a camera along its view direction to frame a set of points. + + Parameters + ---------- + camera : Camera + Camera to position. + points : numpy.ndarray + Array of 3D point coordinates to fit inside the sensor. + fov_scale : float, optional + Scale applied to the fitted field of view (default is 1.0). + fit_mode : EFrameFit, optional + Rule used to select the fitted sensor dimension. + target : numpy.ndarray or None, optional + Point placed at the image centre. The bounds centre is used when + omitted. + + Returns + ------- + Camera + A copy of the camera positioned to frame the points. + """ + + pts = np.asarray(points, dtype=np.float64) + if pts.size == 0: + raise ValueError("Cannot frame an empty set of points.") + + roi = np.asarray(riley.roi_cent_from_coords(pts), dtype=np.float64) + if target is not None: + roi = np.asarray(target, dtype=np.float64) + + pos = cam_pos_frame_points( + pts, + camera.pixels_num, + camera.pixels_size, + camera.focal_length, + camera.rot_world, + fov_scale=fov_scale, + fit_mode=fit_mode, + target=target, + ) + + return replace( + camera, + pos_world=pos, + roi_cent_world=roi, + ) + + +def cam_frame_mesh( + camera: Camera, + mesh: Mesh3D, + fov_scale: float = 1.0, + fit_mode: EFrameFit = EFrameFit.CONTAIN, + target: np.ndarray | None = None, +) -> Camera: + """Position a camera along its view direction to frame a mesh. + + Parameters + ---------- + camera : Camera + Camera to position. + mesh : Mesh3D + Surface mesh whose coordinates to fit inside the sensor. + fov_scale : float, optional + Scale applied to the fitted field of view (default is 1.0). + fit_mode : EFrameFit, optional + Rule used to select the fitted sensor dimension. Defaults to + ``EFrameFit.CONTAIN``. + target : np.ndarray or None, optional + Point array with shape ``(3,)`` placed at the image centre. The bounds + centre is used when omitted. + + Returns + ------- + Camera + A copy of the camera positioned to frame the mesh. + """ + return cam_frame_points( + camera, + mesh.coords, + fov_scale=fov_scale, + fit_mode=fit_mode, + target=target, + ) + + +def cam_frame_scene( + camera: Camera, + meshes: Sequence[Mesh3D], + fov_scale: float = 1.0, + fit_mode: EFrameFit = EFrameFit.CONTAIN, + target: np.ndarray | None = None, +) -> Camera: + """Position a camera along its view direction to frame all meshes. + + Parameters + ---------- + camera : Camera + Camera to position. + meshes : Sequence[Mesh3D] + Collection of surface meshes to frame. + fov_scale : float, optional + Scale applied to the fitted field of view (default is 1.0). + fit_mode : EFrameFit, optional + Rule used to select the fitted sensor dimension. Defaults to + ``EFrameFit.CONTAIN``. + target : np.ndarray or None, optional + Point array with shape ``(3,)`` placed at the image centre. The bounds + centre is used when omitted. + + Returns + ------- + Camera + A copy of the camera positioned to frame all meshes in the scene. + + Raises + ------ + ValueError + If no meshes provide valid coordinates. + """ + valid_coords = [mesh.coords for mesh in meshes if len(mesh.coords) > 0] + if not valid_coords: + raise ValueError("Cannot frame a scene with no mesh coordinates.") + + all_pts = np.concatenate(valid_coords, axis=0) + + return cam_frame_points( + camera, + all_pts, + fov_scale=fov_scale, + fit_mode=fit_mode, + target=target, + ) + + +def cam_project_points( + camera: Camera, + points: np.ndarray, +) -> np.ndarray: + """Project 3D world points to 2D image pixel coordinates. + + Parameters + ---------- + camera : Camera + Perspective camera model. + points : np.ndarray + Array of world coordinates with shape ``(N, 3)`` and dtype ``float64`` + representing (X, Y, Z) points. + + Returns + ------- + np.ndarray + Projected image coordinates array with shape ``(N, 2)`` and dtype + ``float64`` in pixel units ``(u, v)``. + """ + pts = np.asarray(points, dtype=np.float64) + if pts.ndim == 1: + pts = pts[None, :] + + pos = np.asarray(camera.pos_world, dtype=np.float64) + rel_pts = pts - pos + + rot_mat = camera.rot_world.as_matrix() + cam_pts = rel_pts @ rot_mat + + depth = -cam_pts[:, 2] + proj_x = camera.focal_length * (cam_pts[:, 0] / depth) + proj_y = camera.focal_length * (cam_pts[:, 1] / depth) + + cx = 0.5 * camera.pixels_num[0] + cy = 0.5 * camera.pixels_num[1] + + px_u = cx + proj_x / camera.pixels_size[0] + px_v = cy + proj_y / camera.pixels_size[1] + + return np.column_stack((px_u, px_v)) + + +def stereo_build_faceon( + camera: Camera, + convergence_degrees: float, + roi_pos: np.ndarray | None = None, +) -> StereoCameras: + """Build a pair with camera zero face on and camera one converging. + + Camera zero is retained unchanged. Camera one is translated along camera + zero's local positive X axis and aimed at ``roi_pos``. When no ROI is + supplied, ``camera.roi_cent_world`` is used. + + Parameters + ---------- + camera : Camera + Base camera for camera zero intrinsics and pose. + convergence_degrees : float + Convergence angle in degrees. + roi_pos : np.ndarray or None, optional + Region of interest target point array with shape ``(3,)`` and dtype + ``float64``. If ``None``, uses ``camera.roi_cent_world``. + + Returns + ------- + StereoCameras + Tuple of ``(camera_0, camera_1)`` representing the stereo rig. + """ + target = _stereo_target(camera, roi_pos) + stand_off = np.linalg.norm(camera.pos_world - target) + baseline = stand_off * np.tan(np.radians(convergence_degrees)) + baseline_dir = camera.rot_world.apply(np.array((1.0, 0.0, 0.0))) + + camera_1 = replace( + camera, + pos_world=camera.pos_world + baseline * baseline_dir, + roi_cent_world=target, + ) + + return camera, cam_look_at(camera_1, target) + + +def stereo_build_symmetric( + camera: Camera, + convergence_degrees: float, + roi_pos: np.ndarray | None = None, +) -> StereoCameras: + """Build a symmetric convergent pair centred on a reference camera. + + The reference camera supplies the midpoint pose and intrinsics. Both + returned cameras are placed on its local X axis and aimed at ``roi_pos``. + + Parameters + ---------- + camera : Camera + Reference central camera defining midpoint pose and intrinsics. + convergence_degrees : float + Total convergence angle between the two cameras in degrees. + roi_pos : np.ndarray or None, optional + Region of interest target point array with shape ``(3,)`` and dtype + ``float64``. If ``None``, uses ``camera.roi_cent_world``. + + Returns + ------- + StereoCameras + Tuple of ``(camera_0, camera_1)`` representing the symmetric stereo rig. + """ + target = _stereo_target(camera, roi_pos) + stand_off = np.linalg.norm(camera.pos_world - target) + half_angle = 0.5 * np.radians(convergence_degrees) + baseline = 2.0 * stand_off * np.tan(half_angle) + baseline_dir = camera.rot_world.apply(np.array((1.0, 0.0, 0.0))) + + camera_0 = replace( + camera, + pos_world=camera.pos_world - 0.5 * baseline * baseline_dir, + roi_cent_world=target, + ) + + camera_1 = replace( + camera, + pos_world=camera.pos_world + 0.5 * baseline * baseline_dir, + roi_cent_world=target, + ) + + return cam_look_at(camera_0, target), cam_look_at(camera_1, target) + + +def stereo_calc_extrinsics( + camera_0: Camera, + camera_1: Camera, +) -> StereoExtrinsics: + """Calculate the camera zero to camera one rigid transformation. + + Parameters + ---------- + camera_0 : Camera + First camera (reference frame 0). + camera_1 : Camera + Second camera (target frame 1). + + Returns + ------- + StereoExtrinsics + Rigid transformation containing rotation and translation. + """ + rotation = camera_1.rot_world.inv() * camera_0.rot_world + translation = camera_1.rot_world.inv().apply( + camera_0.pos_world - camera_1.pos_world + ) + + return StereoExtrinsics(rotation, translation) + + +def stereo_calc_baseline(camera_0: Camera, camera_1: Camera) -> float: + """Calculate the Euclidean distance between the camera centres. + + Parameters + ---------- + camera_0 : Camera + First camera. + camera_1 : Camera + Second camera. + + Returns + ------- + float + Distance between camera positions in world length units. + """ + return float(np.linalg.norm(camera_1.pos_world - camera_0.pos_world)) + + +def stereo_calc_stand_off( + camera_0: Camera, + camera_1: Camera, + roi_pos: np.ndarray, +) -> float: + """Calculate midpoint to ROI standoff distance for a stereo pair. + + Parameters + ---------- + camera_0 : Camera + First camera. + camera_1 : Camera + Second camera. + roi_pos : np.ndarray + Region of interest target coordinate array with shape ``(3,)`` and + dtype ``float64``. + + Returns + ------- + float + Euclidean distance from stereo midpoint to ROI in world units. + """ + midpoint = 0.5 * (camera_0.pos_world + camera_1.pos_world) + roi = np.asarray(roi_pos, dtype=np.float64) + + return float(np.linalg.norm(midpoint - roi)) + + +def stereo_calc_angles(camera_0: Camera, camera_1: Camera) -> StereoAngles: + """Calculate relative Euler angles and optical axis convergence. + + Parameters + ---------- + camera_0 : Camera + First camera. + camera_1 : Camera + Second camera. + + Returns + ------- + StereoAngles + Relative Euler angles (degrees) and convergence angle (degrees). + """ + extrinsics = stereo_calc_extrinsics(camera_0, camera_1) + + optical_0 = -camera_0.rot_world.as_matrix()[:, 2] + optical_1 = -camera_1.rot_world.as_matrix()[:, 2] + cosine = np.clip(np.dot(optical_0, optical_1), -1.0, 1.0) + + return StereoAngles( + extrinsics.rotation_cam1_from_cam0.as_euler("xyz", degrees=True), + float(np.degrees(np.arccos(cosine))), + ) + + +def stereo_build_from_calibration( + calibration_path: Path, + pos_world_0: np.ndarray, + rot_world_0: Rotation, + focal_length: float, +) -> StereoCameras: + """Build stereo cameras from a legacy PyVale YAML calibration file. + + Parameters + ---------- + calibration_path : pathlib.Path + Path to the calibration YAML file. + pos_world_0 : np.ndarray + World position array for camera 0 with shape ``(3,)`` and dtype + ``float64``. + rot_world_0 : scipy.spatial.transform.Rotation + World orientation for camera 0. + focal_length : float + Focal length in world length units. + + Returns + ------- + StereoCameras + Tuple of ``(camera_0, camera_1)`` configured according to calibration. + """ + parameters = yaml.safe_load(Path(calibration_path).read_text()) + + camera_0 = _camera_from_calibration( + parameters, + 0, + pos_world_0, + rot_world_0, + focal_length, + ) + + rotation = Rotation.from_euler( + "xyz", + ( + parameters["Theta [deg]"], + parameters["Phi [deg]"], + parameters["Psi [deg]"], + ), + degrees=True, + ) + + translation = np.array( + ( + parameters["Tx [mm]"], + parameters["Ty [mm]"], + parameters["Tz [mm]"], + ), + dtype=np.float64, + ) + + rot_world_1 = rot_world_0 * rotation.inv() + pos_world_1 = np.asarray(pos_world_0, dtype=np.float64) - rot_world_1.apply( + translation + ) + + camera_1 = _camera_from_calibration( + parameters, + 1, + pos_world_1, + rot_world_1, + focal_length, + ) + + return camera_0, camera_1 + + +def stereo_save_calibration_yaml( + camera_0: Camera, + camera_1: Camera, + calibration_path: Path, +) -> None: + """Save two cameras in PyVale's legacy YAML calibration format. + + Parameters + ---------- + camera_0 : Camera + Camera 0. + camera_1 : Camera + Camera 1. + calibration_path : pathlib.Path + Output path to save the YAML file. + """ + Path(calibration_path).parent.mkdir(parents=True, exist_ok=True) + Path(calibration_path).write_text( + yaml.safe_dump(_stereo_calibration_parameters(camera_0, camera_1)) + ) + + +def stereo_save_calibration_matchid( + camera_0: Camera, + camera_1: Camera, + calibration_path: Path, +) -> None: + """Save two cameras in the legacy MatchID ``.caldat`` format. + + Parameters + ---------- + camera_0 : Camera + Camera 0. + camera_1 : Camera + Camera 1. + calibration_path : pathlib.Path + Output path to save the MatchID calibration file. + """ + parameters = _stereo_calibration_parameters(camera_0, camera_1) + Path(calibration_path).parent.mkdir(parents=True, exist_ok=True) + Path(calibration_path).write_text( + "\n".join(f"{key};{value}" for key, value in parameters.items()) + ) + + +def _stereo_target( + camera: Camera, + roi_pos: np.ndarray | None, +) -> np.ndarray: + """Return a validated stereo convergence target.""" + + target = np.asarray( + camera.roi_cent_world if roi_pos is None else roi_pos, + dtype=np.float64, + ) + + if target.shape != (3,): + raise ValueError("roi_pos must contain exactly three coordinates.") + + if np.linalg.norm(camera.pos_world - target) < 1.0e-12: + raise ValueError("Camera position and stereo ROI are coincident.") + + return target + + +def _camera_from_calibration( + parameters: dict[str, float], + camera_index: int, + pos_world: np.ndarray, + rot_world: Rotation, + focal_length: float, +) -> Camera: + """Build one render camera from legacy calibration parameters.""" + + prefix = f"Cam{camera_index}" + + pixels_num = np.array( + ( + int(2.0 * parameters[f"{prefix}_Cx [pixels]"]), + int(2.0 * parameters[f"{prefix}_Cy [pixels]"]), + ), + ) + + pixels_size = np.array( + ( + focal_length / parameters[f"{prefix}_Fx [pixels]"], + focal_length / parameters[f"{prefix}_Fy [pixels]"], + ), + ) + + return Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=pos_world, + rot_world=rot_world, + roi_cent_world=np.zeros(3), + focal_length=focal_length, + distortion_k1=parameters[f"{prefix}_Kappa 1"], + distortion_k2=parameters[f"{prefix}_Kappa 2"], + distortion_k3=parameters[f"{prefix}_Kappa 3"], + distortion_p1=parameters[f"{prefix}_P1"], + distortion_p2=parameters[f"{prefix}_P2"], + c0=parameters[f"{prefix}_Cx [pixels]"], + c1=parameters[f"{prefix}_Cy [pixels]"], + ) + + +def _stereo_calibration_parameters( + camera_0: Camera, + camera_1: Camera, +) -> dict[str, float]: + """Format camera intrinsics and extrinsics for legacy serializers.""" + + extrinsics = stereo_calc_extrinsics(camera_0, camera_1) + rotation = extrinsics.rotation_cam1_from_cam0.as_euler("xyz", degrees=True) + parameters: dict[str, float] = {} + + for camera_index, camera in enumerate((camera_0, camera_1)): + prefix = f"Cam{camera_index}" + parameters.update( + { + f"{prefix}_Fx [pixels]": float( + camera.focal_length / camera.pixels_size[0] + ), + f"{prefix}_Fy [pixels]": float( + camera.focal_length / camera.pixels_size[1] + ), + f"{prefix}_Fs [pixels]": 0.0, + f"{prefix}_Kappa 1": camera.distortion_k1, + f"{prefix}_Kappa 2": camera.distortion_k2, + f"{prefix}_Kappa 3": camera.distortion_k3, + f"{prefix}_P1": camera.distortion_p1, + f"{prefix}_P2": camera.distortion_p2, + f"{prefix}_Cx [pixels]": float(camera.c0), + f"{prefix}_Cy [pixels]": float(camera.c1), + } + ) + + parameters.update( + { + "Tx [mm]": float(extrinsics.translation_cam1_in_cam0[0]), + "Ty [mm]": float(extrinsics.translation_cam1_in_cam0[1]), + "Tz [mm]": float(extrinsics.translation_cam1_in_cam0[2]), + "Theta [deg]": float(rotation[0]), + "Phi [deg]": float(rotation[1]), + "Psi [deg]": float(rotation[2]), + } + ) + return parameters + + +def pixel_vec_leng( + field_of_view: np.ndarray, + pixels_size: float, +) -> tuple[np.ndarray, np.ndarray]: + """Build pixel centre coordinate vectors for an orthographic camera. + + Parameters + ---------- + field_of_view : np.ndarray + Field of view dimensions with shape ``(2,)`` and dtype ``float64`` + representing ``(fov_x, fov_y)``. + pixels_size : float + Physical pixel size in length units. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of ``(px_vec_x, px_vec_y)`` coordinate vectors, each with 1D + shape and dtype ``float64``. + """ + return ( + np.arange(pixels_size / 2.0, field_of_view[0], pixels_size), + np.arange(pixels_size / 2.0, field_of_view[1], pixels_size), + ) + + +def pixel_grid_leng( + field_of_view: np.ndarray, + pixels_size: float, +) -> tuple[np.ndarray, np.ndarray]: + """Build pixel centre coordinate grids for an orthographic camera. + + Parameters + ---------- + field_of_view : np.ndarray + Field of view dimensions with shape ``(2,)`` and dtype ``float64`` + representing ``(fov_x, fov_y)``. + pixels_size : float + Physical pixel size in length units. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of 2D grid arrays ``(grid_x, grid_y)`` with dtype ``float64``. + """ + return np.meshgrid(*pixel_vec_leng(field_of_view, pixels_size)) + + +def subpixel_vec_leng( + field_of_view: np.ndarray, + pixels_size: float, + subsample: int, +) -> tuple[np.ndarray, np.ndarray]: + """Build sub pixel centre coordinate vectors. + + Parameters + ---------- + field_of_view : np.ndarray + Field of view dimensions with shape ``(2,)`` and dtype ``float64`` + representing ``(fov_x, fov_y)``. + pixels_size : float + Physical pixel size in length units. + subsample : int + Number of sub pixel samples per pixel dimension. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of ``(subpx_vec_x, subpx_vec_y)`` coordinate vectors with dtype + ``float64``. + """ + spacing = pixels_size / subsample + return ( + np.arange(spacing / 2.0, field_of_view[0], spacing), + np.arange(spacing / 2.0, field_of_view[1], spacing), + ) + + +def subpixel_grid_leng( + field_of_view: np.ndarray, + pixels_size: float, + subsample: int, +) -> tuple[np.ndarray, np.ndarray]: + """Build sub pixel centre coordinate grids. + + Parameters + ---------- + field_of_view : np.ndarray + Field of view dimensions with shape ``(2,)`` and dtype ``float64`` + representing ``(fov_x, fov_y)``. + pixels_size : float + Physical pixel size in length units. + subsample : int + Number of sub pixel samples per pixel dimension. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of 2D sub pixel grid arrays ``(subgrid_x, subgrid_y)`` with + dtype ``float64``. + """ + return np.meshgrid( + *subpixel_vec_leng(field_of_view, pixels_size, subsample), + ) + + +def crop_image_rectangle( + image: np.ndarray, + pixels_num: np.ndarray, +) -> np.ndarray: + """Crop an image to its camera extent from the upper left corner. + + Parameters + ---------- + image : np.ndarray + Input image array with shape ``(height, width)`` or + ``(height, width, channels)``. + pixels_num : np.ndarray + Target pixel resolution array with shape ``(2,)`` and dtype ``int32`` + representing ``(width, height)``. + + Returns + ------- + np.ndarray + Cropped image array with shape ``(pixels_num[1], pixels_num[0], ...)``. + """ + return image[: pixels_num[1], : pixels_num[0]] + + +def average_subpixel_image(image: np.ndarray, subsample: int) -> np.ndarray: + """Average square sub pixel blocks into output pixels. + + Parameters + ---------- + image : np.ndarray + Sub sampled image array with shape + ``(subsample * height, subsample * width)`` and float or int dtype. + subsample : int + Sub pixel factor per dimension. + + Returns + ------- + np.ndarray + Averaged image array with shape ``(height, width)`` and dtype + ``float64``. + """ + if subsample <= 1: + return image + + kernel = np.ones((subsample, subsample)) / (subsample**2) + convolved = convolve2d(image, kernel, mode="same") + start = round(subsample / 2.0) - 1 + + return convolved[start::subsample, start::subsample] + + +__all__ = [ + "EFrameFit", + "StereoAngles", + "StereoCameras", + "StereoExtrinsics", + "average_subpixel_image", + "cam_calc_leng_per_px", + "cam_calc_px_per_leng", + "cam_coverage_to_fov_scale", + "cam_fov_scale_to_coverage", + "cam_frame_mesh", + "cam_frame_points", + "cam_frame_scene", + "cam_look_at", + "cam_pos_frame_points", + "cam_project_points", + "crop_image_rectangle", + "pixel_grid_leng", + "pixel_vec_leng", + "subpixel_grid_leng", + "subpixel_vec_leng", + "stereo_build_faceon", + "stereo_build_from_calibration", + "stereo_build_symmetric", + "stereo_calc_angles", + "stereo_calc_baseline", + "stereo_calc_extrinsics", + "stereo_calc_stand_off", + "stereo_save_calibration_matchid", + "stereo_save_calibration_yaml", +] diff --git a/src/pyvale/render/capabilities.py b/src/pyvale/render/capabilities.py new file mode 100644 index 000000000..2c6a3079f --- /dev/null +++ b/src/pyvale/render/capabilities.py @@ -0,0 +1,35 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Immutable renderer capability declarations.""" + +from dataclasses import dataclass + +from .mesh import EElementType + + +@dataclass(frozen=True, slots=True) +class RenderCapabilities: + """Features advertised by a renderer before a render request. + + Parameters + ---------- + element_types : frozenset[EElementType] + Surface element topologies accepted by the renderer. + supports_lights : bool + Whether explicit :class:`~pyvale.render.Light` objects are supported. + supports_camera_distortion : bool + Whether camera distortion parameters are supported. + supports_psf : bool + Whether point spread function parameters are supported. + """ + + element_types: frozenset[EElementType] + supports_lights: bool + supports_camera_distortion: bool + supports_psf: bool + + +__all__ = ["RenderCapabilities"] diff --git a/src/pyvale/render/errors.py b/src/pyvale/render/errors.py new file mode 100644 index 000000000..0290df88a --- /dev/null +++ b/src/pyvale/render/errors.py @@ -0,0 +1,53 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Rendering validation errors.""" + +from dataclasses import dataclass + + +@dataclass(frozen=True, slots=True) +class ValidationIssue: + """One input problem found before rendering begins. + + Parameters + ---------- + path : str + Dotted path to the invalid input. + code : str + Stable, machine readable issue category. + message : str + Human readable explanation of the problem. + """ + + path: str + code: str + message: str + + +class RenderInputError(ValueError): + """Raised when a render request has one or more invalid inputs. + + Parameters + ---------- + issues : tuple[ValidationIssue, ...] + All validation issues detected for one render request. + + Attributes + ---------- + issues : tuple[ValidationIssue, ...] + All validation issues supplied at construction. + """ + + def __init__(self, issues: tuple[ValidationIssue, ...]) -> None: + """Create an error whose text combines all validation issues.""" + self.issues = issues + text = "\n".join( + f"{issue.path} [{issue.code}]: {issue.message}" for issue in issues + ) + super().__init__(text) + + +__all__ = ["RenderInputError", "ValidationIssue"] diff --git a/src/pyvale/render/feebee.py b/src/pyvale/render/feebee.py new file mode 100644 index 000000000..429ea93b8 --- /dev/null +++ b/src/pyvale/render/feebee.py @@ -0,0 +1,600 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Feebee ray tracer scene definitions and renderer scaffold. + +Feebee is pyvale's future ray tracing backend - these are stubs/placeholders +that will not be implemented until Feebee is merged. +""" + +from dataclasses import dataclass, field +from enum import Enum +from pathlib import Path + +import numpy as np + +from .capabilities import RenderCapabilities +from .errors import ValidationIssue +from .mesh import EElementType, Mesh3D +from .renderer3d import IRenderer3D +from .result import RenderResult +from .scene import Scene3D +from .verifyinput import raise_if_issues, verify_scene_3d + + +class EFeebeeMaterialType(Enum): + """Light transport models supplied by Feebee. + + ``UNLIT`` returns the shader colour without lighting. ``DIFFUSE``, + ``SPECULAR``, and ``REFRACTIVE`` use Feebee's ray tracing material paths. + """ + + DIFFUSE = "diffuse" + SPECULAR = "specular" + REFRACTIVE = "refractive" + UNLIT = "unlit" + + +class EFeebeeShading(Enum): + """Normal interpolation methods supported by Feebee. + + ``FLAT`` uses geometric normals. ``BLENDED`` uses the element specific + normal interpolation used by the original ray tracer. ``ANGLE_AVERAGED`` + uses angle averaged node normals for every supported surface topology. + """ + + FLAT = "flat" + BLENDED = "blended" + ANGLE_AVERAGED = "angle_averaged" + + +class EFeebeeTextureSampler(Enum): + """Texture filters planned for Feebee's texture shader.""" + + NEAREST_NEIGHBOUR = "nearest_neighbour" + LANCZOS_2 = "lanczos_2" + LANCZOS_3 = "lanczos_3" + CATMULL_ROM = "catmull_rom" + MITCHELL_NETRAVALI = "mitchell_netravali" + BSPLINE = "bspline" + QUINTIC_SPLINE = "quintic_spline" + + +@dataclass(slots=True) +class FeebeeMaterial: + """Material properties for one Feebee mesh shader. + + Parameters + ---------- + material_type : EFeebeeMaterialType, optional + Ray transport model for the mesh. Defaults to + ``EFeebeeMaterialType.DIFFUSE``. + colour : np.ndarray, optional + RGB multiplier or refractive tint array with shape ``(3,)`` and dtype + ``float64``. Values are linear and non negative; values exceeding 1.0 + are permitted. Defaults to ``np.ones(3)``. + refractive_index : float or None, optional + Material refractive index. Required for refractive materials. + priority : int, optional + Nesting priority used to resolve overlapping refractive volumes. + Defaults to 0. + is_shell : bool, optional + Whether the mesh represents a shell rather than a closed solid. + Defaults to ``False``. + thickness : float, optional + Physical shell thickness. Used only when ``is_shell`` is true. + Defaults to 1.0. + """ + + material_type: EFeebeeMaterialType = EFeebeeMaterialType.DIFFUSE + colour: np.ndarray = field( + default_factory=lambda: np.ones(3, dtype=np.float64), + ) + refractive_index: float | None = None + priority: int = 0 + is_shell: bool = False + thickness: float = 1.0 + + def __post_init__(self) -> None: + """Store the immutable colour vector as a float array.""" + self.colour = np.ascontiguousarray(self.colour, dtype=np.float64) + + +@dataclass(slots=True) +class FeebeeColourShader: + """Face colour shader with a Feebee material. + + Parameters + ---------- + colours : np.ndarray + RGB face colours array with shape + ``(num_frames, num_elements, 3)`` and dtype ``float64``. A single + frame can be used for a static mesh. + material : FeebeeMaterial, optional + Light transport properties applied to the face colours. + """ + + colours: np.ndarray + material: FeebeeMaterial = field(default_factory=FeebeeMaterial) + + def __post_init__(self) -> None: + """Store contiguous double precision face colour data.""" + self.colours = np.ascontiguousarray(self.colours, dtype=np.float64) + + +@dataclass(slots=True) +class FeebeeTextureShader: + """Texture shader with nodal UV coordinates and a Feebee material. + + Parameters + ---------- + uvs : np.ndarray + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64`` in the normalized range ``[0.0, 1.0]``. + texture : np.ndarray + Greyscale or RGB texture image array with shape ``(height, width)`` + or ``(height, width, num_channels)``. + material : FeebeeMaterial, optional + Light transport properties applied to sampled texture values. + """ + + uvs: np.ndarray + texture: np.ndarray + material: FeebeeMaterial = field(default_factory=FeebeeMaterial) + + def __post_init__(self) -> None: + """Store contiguous texture coordinate and image arrays.""" + self.uvs = np.ascontiguousarray(self.uvs) + self.texture = np.ascontiguousarray(self.texture) + + +@dataclass(slots=True) +class FeebeeConfig: + """Global options for a Feebee render request. + + Parameters + ---------- + background_colour : np.ndarray, optional + Linear RGB scene background array with shape ``(3,)`` and dtype + ``float64``. Defaults to ``(0.7, 0.7, 0.7)``. + scene_refractive_index : float, optional + Refractive index of the medium that fills the scene. Defaults to + 1.0003. + antialiasing_samples : int, optional + Number of samples evaluated for every pixel. Defaults to 1. + shading : EFeebeeShading, optional + Surface normal interpolation method. Defaults to + ``EFeebeeShading.FLAT``. + texture_sampler : EFeebeeTextureSampler, optional + Filter used by texture shaders. Defaults to + ``EFeebeeTextureSampler.NEAREST_NEIGHBOUR``. + max_depth : int or None, optional + Maximum secondary ray depth. ``None`` requests Feebee's automatic + depth selection. + min_refractive_depth : int or None, optional + Minimum deterministic depth before refractive paths may terminate. + output_dir : pathlib.Path or None, optional + Directory in which Feebee will write rendered image files. + """ + + background_colour: np.ndarray = field( + default_factory=lambda: np.full(3, 0.7, dtype=np.float64), + ) + scene_refractive_index: float = 1.0003 + antialiasing_samples: int = 1 + shading: EFeebeeShading = EFeebeeShading.FLAT + texture_sampler: EFeebeeTextureSampler = ( + EFeebeeTextureSampler.NEAREST_NEIGHBOUR + ) + max_depth: int | None = None + min_refractive_depth: int | None = None + output_dir: Path | None = None + + def __post_init__(self) -> None: + """Store background colour and output directory in normal form.""" + self.background_colour = np.ascontiguousarray( + self.background_colour, + dtype=np.float64, + ) + if self.output_dir is not None: + self.output_dir = Path(self.output_dir) + + +class Feebee(IRenderer3D): + """Prepare pyvale scenes for the forthcoming Feebee ray tracer. + + The class already validates Feebee specific shader, material, and scene + options before any costly scene expansion occurs. The compiled rendering + backend has not yet been migrated, so :meth:`render` currently raises + :class:`NotImplementedError` only after successful validation. + + Parameters + ---------- + config : FeebeeConfig, optional + Global options for the Feebee render request. + """ + + capabilities = RenderCapabilities( + element_types=frozenset(EElementType), + supports_lights=False, + supports_camera_distortion=False, + supports_psf=False, + ) + + def __init__(self, config: FeebeeConfig | None = None) -> None: + """Create a Feebee renderer with global render options.""" + self.config = FeebeeConfig() if config is None else config + + def verify_input( + self, + scene: Scene3D, + ) -> None: + """Validate a Feebee scene without expanding geometry or rendering. + + Parameters + ---------- + scene : Scene3D + Scene containing common meshes with a + :class:`FeebeeColourShader` or :class:`FeebeeTextureShader`. + + Raises + ------ + RenderInputError + If inputs are unsupported or invalid. + """ + if not isinstance(scene, Scene3D): + raise TypeError("Feebee requires a Scene3D.") + + meshes = tuple( + mesh for mesh in scene.meshes if isinstance(mesh, Mesh3D) + ) + issues = list(verify_scene_3d(meshes, scene.cameras, scene.lights)) + if isinstance(self.config, FeebeeConfig): + issues.extend(_verify_config(self.config)) + else: + issues.append( + ValidationIssue( + "config", + "TYPE", + "Expected render.FeebeeConfig.", + ) + ) + + if scene.lights: + issues.append( + ValidationIssue( + "lights", + "UNSUPPORTED", + "Feebee does not support explicit lights yet.", + ), + ) + + frame_count: int | None = None + for mesh_index, mesh in enumerate(scene.meshes): + if not isinstance(mesh, Mesh3D): + issues.append( + ValidationIssue( + f"scene.meshes[{mesh_index}]", + "TYPE", + "Feebee requires common render.Mesh3D objects.", + ) + ) + continue + path = f"meshes[{mesh_index}]" + issues.extend(_verify_mesh(mesh, path)) + + mesh_frame_count = _mesh_frame_count(mesh) + if mesh_frame_count is None or mesh_frame_count == 1: + continue + if frame_count is None: + frame_count = mesh_frame_count + elif frame_count != mesh_frame_count: + issues.append( + ValidationIssue( + path, + "FRAME_COUNT", + "All animated mesh data must have the same frame " + "count.", + ), + ) + + raise_if_issues(tuple(issues)) + + def _render(self, scene: Scene3D) -> RenderResult: + """Reject rendering until the compiled Feebee backend is migrated. + + Parameters + ---------- + scene : Scene3D + Previously validated Feebee scene. + + Raises + ------ + NotImplementedError + Always, until the Feebee C++ dispatch layer is integrated. + """ + raise NotImplementedError( + "Feebee's compiled rendering backend has not been migrated yet.", + ) + + +def _verify_config(config: FeebeeConfig) -> tuple[ValidationIssue, ...]: + """Return cheap validation issues for global Feebee options.""" + if not isinstance(config, FeebeeConfig): + return ( + ValidationIssue("config", "TYPE", "Expected render.FeebeeConfig."), + ) + + issues: list[ValidationIssue] = [] + if ( + config.background_colour.shape != (3,) + or not np.isfinite(config.background_colour).all() + or np.any(config.background_colour < 0.0) + ): + issues.append( + ValidationIssue( + "config.background_colour", + "VALUE", + "Expected three finite, non-negative RGB values.", + ), + ) + if not _is_positive_finite(config.scene_refractive_index): + issues.append( + ValidationIssue( + "config.scene_refractive_index", + "VALUE", + "Expected a positive finite refractive index.", + ), + ) + if config.antialiasing_samples <= 0: + issues.append( + ValidationIssue( + "config.antialiasing_samples", + "VALUE", + "Expected a positive sample count.", + ), + ) + if not isinstance(config.shading, EFeebeeShading): + issues.append( + ValidationIssue( + "config.shading", "TYPE", "Expected EFeebeeShading." + ), + ) + if not isinstance(config.texture_sampler, EFeebeeTextureSampler): + issues.append( + ValidationIssue( + "config.texture_sampler", + "TYPE", + "Expected EFeebeeTextureSampler.", + ), + ) + issues.extend(_verify_depths(config.max_depth, config.min_refractive_depth)) + return tuple(issues) + + +def _verify_depths( + max_depth: int | None, + min_refractive_depth: int | None, +) -> tuple[ValidationIssue, ...]: + """Validate ray depth options used by the original ray tracer.""" + issues: list[ValidationIssue] = [] + for path, value, minimum in ( + ("config.max_depth", max_depth, 1), + ("config.min_refractive_depth", min_refractive_depth, 0), + ): + if value is not None and ( + not isinstance(value, int) or value < minimum + ): + issues.append( + ValidationIssue( + path, "VALUE", f"Expected an integer >= {minimum}." + ), + ) + if ( + isinstance(max_depth, int) + and isinstance(min_refractive_depth, int) + and max_depth < min_refractive_depth + ): + issues.append( + ValidationIssue( + "config.max_depth", + "VALUE", + "Maximum depth must be at least the refractive depth.", + ), + ) + return tuple(issues) + + +def _verify_mesh(mesh: Mesh3D, path: str) -> tuple[ValidationIssue, ...]: + """Return Feebee specific validation issues for one mesh.""" + issues: list[ValidationIssue] = [] + nodes_per_element = { + EElementType.TRI3: 3, + EElementType.TRI6: 6, + EElementType.QUAD4: 4, + EElementType.QUAD8: 8, + EElementType.QUAD9: 9, + } + expected_nodes = nodes_per_element.get(mesh.element_type) + if expected_nodes is None: + issues.append( + ValidationIssue( + path + ".element_type", + "UNSUPPORTED", + "Unsupported Feebee element type.", + ), + ) + elif ( + mesh.connectivity.ndim == 2 + and mesh.connectivity.shape[1] != expected_nodes + ): + issues.append( + ValidationIssue( + path + ".connectivity", + "SHAPE", + f"Expected {expected_nodes} nodes per " + f"{mesh.element_type.value} element.", + ), + ) + + shader = mesh.shader + if not isinstance(shader, (FeebeeColourShader, FeebeeTextureShader)): + issues.append( + ValidationIssue( + path + ".shader", + "OWNERSHIP", + "Expected a render.feebee shader.", + ), + ) + return tuple(issues) + + issues.extend(_verify_material(shader.material, path + ".shader.material")) + if isinstance(shader, FeebeeColourShader): + expected_shape = (None, mesh.connectivity.shape[0], 3) + if ( + shader.colours.ndim != 3 + or shader.colours.shape[1:] != expected_shape[1:] + or not _is_finite_array(shader.colours) + or np.any(shader.colours < 0.0) + ): + issues.append( + ValidationIssue( + path + ".shader.colours", + "SHAPE", + "Expected finite non-negative shape (frames, elements, 3).", + ), + ) + if ( + mesh.displacements is not None + and shader.colours.ndim == 3 + and shader.colours.shape[0] not in (1, mesh.displacements.shape[0]) + ): + issues.append( + ValidationIssue( + path + ".shader.colours", + "FRAME_COUNT", + "Expected one colour frame or one per displacement frame.", + ), + ) + else: + if shader.uvs.shape != (mesh.coords.shape[0], 2): + issues.append( + ValidationIssue( + path + ".shader.uvs", + "SHAPE", + "Expected shape (nodes, 2).", + ), + ) + elif not np.isfinite(shader.uvs).all(): + issues.append( + ValidationIssue( + path + ".shader.uvs", + "FINITE", + "Texture coordinates must be finite.", + ), + ) + if shader.texture.ndim not in (2, 3) or not _is_finite_array( + shader.texture + ): + issues.append( + ValidationIssue( + path + ".shader.texture", + "SHAPE", + "Expected a finite greyscale or RGB texture image.", + ), + ) + return tuple(issues) + + +def _verify_material( + material: FeebeeMaterial, + path: str, +) -> tuple[ValidationIssue, ...]: + """Return validation issues for Feebee material properties.""" + issues: list[ValidationIssue] = [] + if not isinstance(material.material_type, EFeebeeMaterialType): + issues.append( + ValidationIssue( + path + ".material_type", + "TYPE", + "Expected EFeebeeMaterialType.", + ), + ) + if ( + material.colour.shape != (3,) + or not _is_finite_array(material.colour) + or np.any(material.colour < 0.0) + ): + issues.append( + ValidationIssue( + path + ".colour", + "VALUE", + "Expected three finite, non-negative RGB values.", + ), + ) + if material.material_type is EFeebeeMaterialType.REFRACTIVE and ( + material.refractive_index is None + or not _is_positive_finite(material.refractive_index) + ): + issues.append( + ValidationIssue( + path + ".refractive_index", + "VALUE", + "Refractive materials require a positive finite index.", + ), + ) + if not isinstance(material.priority, int): + issues.append( + ValidationIssue(path + ".priority", "TYPE", "Expected an integer."), + ) + if material.is_shell and (not _is_positive_finite(material.thickness)): + issues.append( + ValidationIssue( + path + ".thickness", + "VALUE", + "Shell materials require a positive finite thickness.", + ), + ) + return tuple(issues) + + +def _is_finite_array(values: np.ndarray) -> bool: + """Return whether an array can represent only finite numeric values.""" + try: + return bool(np.isfinite(values).all()) + except TypeError: + return False + + +def _is_positive_finite(value: float | np.number) -> bool: + """Return whether a scalar is finite and strictly positive.""" + try: + return bool(np.isfinite(value) and value > 0.0) + except TypeError: + return False + + +def _mesh_frame_count(mesh: Mesh3D) -> int | None: + """Return the animation frame count represented by one valid mesh.""" + if mesh.displacements is not None: + return mesh.displacements.shape[0] + if ( + isinstance(mesh.shader, FeebeeColourShader) + and mesh.shader.colours.ndim == 3 + ): + return mesh.shader.colours.shape[0] + return None + + +__all__ = [ + "EFeebeeMaterialType", + "EFeebeeShading", + "EFeebeeTextureSampler", + "Feebee", + "FeebeeColourShader", + "FeebeeConfig", + "FeebeeMaterial", + "FeebeeTextureShader", +] diff --git a/src/pyvale/render/imagetools.py b/src/pyvale/render/imagetools.py new file mode 100644 index 000000000..64e76be0a --- /dev/null +++ b/src/pyvale/render/imagetools.py @@ -0,0 +1,227 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""User facing image and texture loading, saving, and preparation helpers.""" + +from enum import Enum +from pathlib import Path + +import numpy as np +from PIL import Image + + +class EImageType(Enum): + """Image file formats supported by :func:`image_save`.""" + + TIFF = ".tiff" + BMP = ".bmp" + PNG = ".png" + + +def image_load(path: Path | str) -> np.ndarray: + """Load an image from disk as a numpy array. + + Parameters + ---------- + path : pathlib.Path or str + Filesystem path to the image. + + Returns + ------- + np.ndarray + Image array with shape ``(height, width)`` for greyscale or + ``(height, width, num_channels)`` for colour images. + """ + img_path = Path(path) + if not img_path.is_file(): + raise FileNotFoundError(f"Image file does not exist: {img_path}") + + with Image.open(img_path) as pil_img: + return np.asarray(pil_img) + + +def image_save( + path: Path | str, + image: np.ndarray, + image_type: EImageType = EImageType.TIFF, + bits: int = 8, +) -> None: + """Save an image in conventional top to bottom row orientation. + + Parameters + ---------- + path : pathlib.Path or str + Destination filesystem path. + image : np.ndarray + Image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + image_type : EImageType, optional + Format extension (default is ``EImageType.TIFF``). + bits : int, optional + Bit depth (8 or 16). Defaults to 8. + """ + out_path = Path(path) + if out_path.suffix != image_type.value: + out_path = out_path.with_suffix(image_type.value) + + dtype = np.uint8 if bits <= 8 else np.uint16 + img_arr = np.asarray(image, dtype=dtype) + + out_img = Image.fromarray(img_arr[::-1, :]) + out_img.save(out_path) + + +def image_crop( + image: np.ndarray, + x: int, + y: int, + width: int, + height: int, +) -> np.ndarray: + """Crop a rectangular region from an image (top left origin). + + Parameters + ---------- + image : np.ndarray + Input image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + x, y : int + Top left pixel coordinates of the crop rectangle. + width, height : int + Width and height of the crop region in pixels. + + Returns + ------- + np.ndarray + Cropped subarray with shape ``(height, width, ...)`` and matching + dtype. + + Raises + ------ + ValueError + If crop bounds are invalid or exceed image dimensions. + """ + img_h, img_w = image.shape[:2] + + if x < 0 or y < 0 or width <= 0 or height <= 0: + raise ValueError( + f"Invalid crop dimensions (x={x}, y={y}, w={width}, h={height})." + ) + + if x + width > img_w or y + height > img_h: + raise ValueError( + f"Crop bounds (x={x}+{width}, y={y}+{height}) exceed image shape " + f"({img_w}x{img_h})." + ) + + return image[y : y + height, x : x + width].copy() + + +def image_resize( + image: np.ndarray, + size: tuple[int, int], +) -> np.ndarray: + """Resize an image to ``(width, height)`` in pixels. + + Parameters + ---------- + image : np.ndarray + Input image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + size : tuple[int, int] + Target ``(width, height)`` dimensions in pixels. + + Returns + ------- + np.ndarray + Resized array with shape ``(size[1], size[0], ...)`` matching input + dtype. + """ + orig_dtype = image.dtype + with Image.fromarray(image) as pil_img: + resized = pil_img.resize(size, resample=Image.Resampling.BILINEAR) + return np.asarray(resized, dtype=orig_dtype) + + +def image_normalise( + image: np.ndarray, + lower: float = 0.0, + upper: float = 1.0, +) -> np.ndarray: + """Normalise finite pixel intensities onto the range ``[lower, upper]``. + + Parameters + ---------- + image : np.ndarray + Input image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + lower : float, optional + Target lower intensity value. Defaults to 0.0. + upper : float, optional + Target upper intensity value. Defaults to 1.0. + + Returns + ------- + np.ndarray + Normalised image array with shape identical to input and dtype + ``float64``. + """ + arr = np.asarray(image, dtype=np.float64) + min_val = np.nanmin(arr) + max_val = np.nanmax(arr) + + if np.isclose(min_val, max_val): + return np.full_like(arr, lower, dtype=np.float64) + + norm = (arr - min_val) / (max_val - min_val) + return lower + norm * (upper - lower) + + +def image_grayscale(image: np.ndarray) -> np.ndarray: + """Convert an RGB or RGBA image to greyscale using standard luminance. + + Parameters + ---------- + image : np.ndarray + Input image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + + Returns + ------- + np.ndarray + Greyscale image array with shape ``(height, width)`` and dtype + ``float64``. + + Raises + ------ + ValueError + If the input image array shape is unsupported. + """ + arr = np.asarray(image, dtype=np.float64) + if arr.ndim == 2: + return arr.copy() + + if arr.ndim == 3: + if arr.shape[2] >= 3: + return ( + 0.299 * arr[:, :, 0] + + 0.587 * arr[:, :, 1] + + 0.114 * arr[:, :, 2] + ) + + raise ValueError( + f"Unsupported image shape for grayscale conversion: {arr.shape}" + ) + + +__all__ = [ + "EImageType", + "image_crop", + "image_grayscale", + "image_load", + "image_normalise", + "image_resize", + "image_save", +] diff --git a/src/pyvale/render/light.py b/src/pyvale/render/light.py new file mode 100644 index 000000000..602de7003 --- /dev/null +++ b/src/pyvale/render/light.py @@ -0,0 +1,59 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Common three dimensional light data.""" + +from dataclasses import dataclass, field +from enum import Enum + +import numpy as np + + +class ELightType(Enum): + """Light geometries understood by compatible three dimensional backends.""" + + POINT = "point" + SUN = "sun" + SPOT = "spot" + AREA = "area" + + +@dataclass(slots=True) +class Light: + """A physical light source for a renderer that supports lights. + + Parameters + ---------- + light_type : ELightType + Geometry of the light source. + pos_world : np.ndarray + World position array of the source with shape ``(3,)`` and dtype + ``float64`` representing (X, Y, Z) coordinates. + direction_world : np.ndarray + World space direction vector array with shape ``(3,)`` and dtype + ``float64`` representing (X, Y, Z) components. Relevant to sun and + area lights. + intensity : float + Non negative backend independent light intensity. + shadow_soft_size : float, optional + Source radius used by backends that support soft shadows. + Defaults to 1.5. + """ + + light_type: ELightType + pos_world: np.ndarray + direction_world: np.ndarray + intensity: float + shadow_soft_size: float = 1.5 + + def __post_init__(self) -> None: + """Convert position and direction to double precision arrays.""" + self.pos_world = np.asarray(self.pos_world, dtype=np.float64) + self.direction_world = np.asarray( + self.direction_world, dtype=np.float64 + ) + + +__all__ = ["ELightType", "Light"] diff --git a/src/pyvale/render/mesh.py b/src/pyvale/render/mesh.py new file mode 100644 index 000000000..7048705b8 --- /dev/null +++ b/src/pyvale/render/mesh.py @@ -0,0 +1,75 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Renderer independent surface mesh data.""" + +from dataclasses import dataclass +from enum import Enum + +import numpy as np + + +class EElementType(Enum): + """Surface element topologies supported by the 3D render API.""" + + TRI3 = "tri3" + TRI6 = "tri6" + QUAD4 = "quad4" + QUAD8 = "quad8" + QUAD9 = "quad9" + + +_NODES_PER_ELEMENT = { + EElementType.TRI3: 3, + EElementType.TRI6: 6, + EElementType.QUAD4: 4, + EElementType.QUAD8: 8, + EElementType.QUAD9: 9, +} + + +@dataclass(slots=True) +class Mesh3D: + """A deformable surface mesh prepared for a three dimensional renderer. + + Parameters + ---------- + element_type : EElementType + Topology of every element in ``connectivity``. + coords : np.ndarray + World coordinates array with shape ``(num_nodes, 3)`` and dtype + ``float64`` representing (X, Y, Z) coordinates of each node. + connectivity : np.ndarray + Zero based element connectivity table with shape + ``(num_elements, nodes_per_element)`` and dtype ``uintp`` or ``int_``. + shader : object + Backend owned material or shader definition. + displacements : np.ndarray or None, optional + Nodal displacements array with shape + ``(num_frames, num_nodes, 3)`` and dtype ``float64`` representing + (dX, dY, dZ) displacements for each frame. + """ + + element_type: EElementType + coords: np.ndarray + connectivity: np.ndarray + shader: object + displacements: np.ndarray | None = None + + def __post_init__(self) -> None: + """Convert array data to contiguous arrays with renderer dtypes.""" + self.coords = np.ascontiguousarray(self.coords, dtype=np.float64) + self.connectivity = np.ascontiguousarray( + self.connectivity, + dtype=np.uintp, + ) + if self.displacements is not None: + self.displacements = np.ascontiguousarray( + self.displacements, + dtype=np.float64, + ) + + +__all__ = ["EElementType", "Mesh3D"] diff --git a/src/pyvale/render/meshtools.py b/src/pyvale/render/meshtools.py new file mode 100644 index 000000000..331f08f83 --- /dev/null +++ b/src/pyvale/render/meshtools.py @@ -0,0 +1,458 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Conversion and geometric transformations for render surface meshes.""" + +from collections.abc import Sequence +from dataclasses import replace + +import numpy as np +from scipy.spatial.transform import Rotation + +from pyvale.dataio.meshconv import ( + enforce_mesh_convention, + extract_surf_mesh, + is_mesh_2d, +) +from pyvale.dataio.simdata import SimData + +from .mesh import EElementType, Mesh3D + + +def mesh3d_from_simdata( + sim_data: SimData, + shader: object, + displacement_keys: Sequence[str] | None = None, +) -> Mesh3D: + """Build one surface :class:`Mesh3D` from simulation data. + + Parameters + ---------- + sim_data : pyvale.dataio.SimData + Simulation data containing coordinates, connectivity, and optionally + nodal displacement fields. + shader : object + Backend owned material or shader definition for the mesh. + displacement_keys : Sequence[str] or None, optional + Names of the three displacement components. ``None`` omits motion. + + Returns + ------- + Mesh3D + Renderer independent surface mesh data. + """ + prepared = enforce_mesh_convention(sim_data) + + if not is_mesh_2d(prepared): + prepared = extract_surf_mesh(prepared) + + coords, connectivity = _single_surface_table(prepared) + element_type = _element_type_from_nodes(connectivity.shape[1]) + displacements = _displacements_from_simdata(prepared, displacement_keys) + + return Mesh3D( + element_type=element_type, + coords=_coords3d(coords), + connectivity=np.ascontiguousarray(connectivity, dtype=np.uintp), + shader=shader, + displacements=displacements, + ) + + +def mesh_bounds(mesh: Mesh3D) -> tuple[np.ndarray, np.ndarray]: + """Calculate the axis aligned bounding box of a mesh. + + Parameters + ---------- + mesh : Mesh3D + Mesh to query. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of ``(coord_min, coord_max)`` arrays, each with shape ``(3,)`` + and dtype ``float64`` representing (X, Y, Z) minimum and maximum + extents. + """ + coords = np.asarray(mesh.coords, dtype=np.float64) + + if coords.size == 0: + return np.zeros(3), np.zeros(3) + + return np.min(coords, axis=0), np.max(coords, axis=0) + + +def mesh_center(mesh: Mesh3D) -> np.ndarray: + """Calculate the center of the axis aligned bounding box of a mesh. + + Parameters + ---------- + mesh : Mesh3D + Mesh to query. + + Returns + ------- + np.ndarray + Midpoint of the bounding box with shape ``(3,)`` and dtype + ``float64`` representing (X, Y, Z) center coordinates. + """ + lower, upper = mesh_bounds(mesh) + return 0.5 * (lower + upper) + + +def mesh_translate(mesh: Mesh3D, translation: np.ndarray) -> Mesh3D: + """Translate a mesh by an offset vector without mutating the original. + + Note that translation shifts nodal coordinates but preserves nodal + displacement vectors unchanged. + + Parameters + ---------- + mesh : Mesh3D + Source surface mesh to translate. + translation : np.ndarray + Translation vector array with shape ``(3,)`` or ``(2,)`` and dtype + ``float64`` representing (dX, dY, dZ) offsets. + + Returns + ------- + Mesh3D + New translated mesh instance. + """ + trans = np.asarray(translation, dtype=np.float64) + new_coords = np.asarray(mesh.coords, dtype=np.float64) + trans + return replace(mesh, coords=new_coords) + + +def mesh_rotate( + mesh: Mesh3D, + rotation: Rotation, + pivot: np.ndarray | None = None, +) -> Mesh3D: + """Rotate a mesh around a pivot point. + + Displacement vectors are rotated as vector fields to match coordinate + reorientation. + + Parameters + ---------- + mesh : Mesh3D + Source surface mesh to rotate. + rotation : scipy.spatial.transform.Rotation + Spatial rotation to apply. + pivot : np.ndarray or None, optional + Pivot center point array with shape ``(3,)`` and dtype ``float64``. + If ``None``, defaults to the origin ``(0, 0, 0)``. + + Returns + ------- + Mesh3D + New rotated mesh instance. + """ + coords = np.asarray(mesh.coords, dtype=np.float64) + p_vec = ( + np.zeros(3, dtype=np.float64) + if pivot is None + else np.asarray(pivot, dtype=np.float64) + ) + + rel_coords = coords - p_vec + new_coords = rotation.apply(rel_coords) + p_vec + + new_displacements = None + if getattr(mesh, "displacements", None) is not None: + disp = np.asarray(mesh.displacements, dtype=np.float64) + shape = disp.shape + flat_disp = disp.reshape(-1, 3) + rot_disp = rotation.apply(flat_disp) + new_displacements = rot_disp.reshape(shape) + + return replace(mesh, coords=new_coords, displacements=new_displacements) + + +def mesh_scale( + mesh: Mesh3D, + scale: float | np.ndarray, + pivot: np.ndarray | None = None, +) -> Mesh3D: + """Scale a mesh relative to a pivot point. + + Parameters + ---------- + mesh : Mesh3D + Source surface mesh to scale. + scale : float or np.ndarray + Uniform scale factor as a float or per axis scale array with shape + ``(3,)`` and dtype ``float64`` for (sX, sY, sZ) scaling. + pivot : np.ndarray or None, optional + Pivot center point array with shape ``(3,)`` and dtype ``float64``. + If ``None``, defaults to the origin ``(0, 0, 0)``. + + Returns + ------- + Mesh3D + New scaled mesh instance. + """ + coords = np.asarray(mesh.coords, dtype=np.float64) + p_vec = ( + np.zeros(3, dtype=np.float64) + if pivot is None + else np.asarray(pivot, dtype=np.float64) + ) + s_vec = np.broadcast_to(np.asarray(scale, dtype=np.float64), (3,)) + + new_coords = (coords - p_vec) * s_vec + p_vec + + new_displacements = None + if mesh.displacements is not None: + new_displacements = mesh.displacements * s_vec + + return replace( + mesh, + coords=new_coords, + displacements=new_displacements, + ) + + +def mesh_transform( + mesh: Mesh3D, + translation: np.ndarray | None = None, + rotation: Rotation | None = None, + scale: float | np.ndarray | None = None, + pivot: np.ndarray | None = None, +) -> Mesh3D: + """Apply affine scaling, rotation, and translation in canonical order. + + Order: 1. Scale about pivot, 2. Rotate about pivot, 3. Translate. + + Parameters + ---------- + mesh : Mesh3D + Source surface mesh to transform. + translation : np.ndarray or None, optional + Translation vector with shape ``(3,)`` and dtype ``float64``. + rotation : scipy.spatial.transform.Rotation or None, optional + Rotation to apply. + scale : float or np.ndarray or None, optional + Scaling factor or per axis scale array with shape ``(3,)``. + pivot : np.ndarray or None, optional + Pivot point array with shape ``(3,)`` and dtype ``float64``. + + Returns + ------- + Mesh3D + New transformed mesh instance. + """ + transformed = mesh + + if scale is not None: + transformed = mesh_scale(transformed, scale, pivot=pivot) + + if rotation is not None: + transformed = mesh_rotate(transformed, rotation, pivot=pivot) + + if translation is not None: + transformed = mesh_translate(transformed, translation) + + return transformed + + +def mesh_center_at( + mesh: Mesh3D, + target: np.ndarray = np.array((0.0, 0.0, 0.0)), +) -> Mesh3D: + """Translate a mesh so its bounding box center lies at ``target``. + + Parameters + ---------- + mesh : Mesh3D + Source surface mesh to re centre. + target : np.ndarray, optional + Target center point array with shape ``(3,)`` and dtype ``float64`` + representing (X, Y, Z) coordinates. Defaults to ``(0, 0, 0)``. + + Returns + ------- + Mesh3D + New translated mesh instance. + """ + current_center = mesh_center(mesh) + target_vec = np.asarray(target, dtype=np.float64)[:3] + delta = target_vec - current_center + + return mesh_translate(mesh, delta) + + +def evenly_spaced_frame_indices( + total_frames: int, + num_samples: int, +) -> np.ndarray: + """Return sample indices evenly distributed from 0 to total_frames - 1. + + Parameters + ---------- + total_frames : int + Total number of frames available. + num_samples : int + Desired number of evenly distributed frame samples. + + Returns + ------- + np.ndarray + Array of integer frame indices with shape ``(N,)`` and dtype ``intp``, + where ``N <= num_samples``. + """ + if total_frames <= 0 or num_samples <= 0: + return np.empty(0, dtype=np.intp) + + selected_num = min(total_frames, num_samples) + if selected_num == 1: + return np.array([0], dtype=np.intp) + + return np.array( + [ + frame * (total_frames - 1) // (selected_num - 1) + for frame in range(selected_num) + ], + dtype=np.intp, + ) + + +def first_last_frame_indices(total_frames: int) -> np.ndarray: + """Return indices for the first and last frame. + + Parameters + ---------- + total_frames : int + Total number of available frames. + + Returns + ------- + np.ndarray + Array of frame indices with shape ``(2,)`` (or ``(1,)``/``(0,)``) and + dtype ``intp``. + """ + if total_frames <= 0: + return np.empty(0, dtype=np.intp) + + if total_frames == 1: + return np.array([0], dtype=np.intp) + + return np.array([0, total_frames - 1], dtype=np.intp) + + +def select_frames( + frames: np.ndarray, + indices: Sequence[int] | np.ndarray, +) -> np.ndarray: + """Index a leading frame dimension with integer indices. + + Parameters + ---------- + frames : np.ndarray + Array whose leading dimension is frames, e.g. shape + ``(num_frames, ...)``. + indices : Sequence[int] or np.ndarray + Indices to slice along the leading dimension. + + Returns + ------- + np.ndarray + Sliced array containing only the selected frames. + """ + idx = np.asarray(indices, dtype=np.intp) + + return frames[idx] + + +def _single_surface_table(sim_data: SimData) -> tuple[np.ndarray, np.ndarray]: + """Return the one required surface connectivity table and coordinates.""" + if sim_data.coords is None or sim_data.connect is None: + raise ValueError("SimData must provide coordinates and connectivity.") + + if len(sim_data.connect) != 1: + raise ValueError("SimData must have exactly one connectivity table.") + + return sim_data.coords, next(iter(sim_data.connect.values())) + + +def _coords3d(coords: np.ndarray) -> np.ndarray: + """Return finite render coordinates padded to three dimensions.""" + coords_out = np.ascontiguousarray(coords, dtype=np.float64) + if coords_out.ndim != 2 or coords_out.shape[1] not in (2, 3): + raise ValueError("SimData coordinates must have two or three columns.") + + if coords_out.shape[1] == 2: + coords_out = np.pad(coords_out, ((0, 0), (0, 1))) + + return coords_out + + +def _element_type_from_nodes(nodes_per_element: int) -> EElementType: + """Map a connectivity width to the corresponding render topology.""" + mapping = { + 3: EElementType.TRI3, + 6: EElementType.TRI6, + 4: EElementType.QUAD4, + 8: EElementType.QUAD8, + 9: EElementType.QUAD9, + } + + if nodes_per_element not in mapping: + raise ValueError( + f"Unsupported surface connectivity with {nodes_per_element} " + "nodes per element.", + ) + + return mapping[nodes_per_element] + + +def _displacements_from_simdata( + sim_data: SimData, + displacement_keys: Sequence[str] | None, +) -> np.ndarray | None: + """Extract nodal displacement fields into renderer array order.""" + if displacement_keys is None: + return None + + if sim_data.node_vars is None or len(displacement_keys) not in (2, 3): + raise ValueError("Two or three displacement keys are required.") + + try: + fields = [ + np.asarray(sim_data.node_vars[key], dtype=np.float64) + for key in displacement_keys + ] + except KeyError as error: + raise ValueError( + f"Missing displacement field {error.args[0]!r}." + ) from error + + if any(field.ndim != 2 for field in fields): + raise ValueError( + "Displacement fields must have shape (nodes, frames)." + ) + + displacements = np.stack(fields, axis=2).transpose(1, 0, 2) + + if displacements.shape[2] == 2: + displacements = np.pad(displacements, ((0, 0), (0, 0), (0, 1))) + + return np.ascontiguousarray(displacements) + + +__all__ = [ + "evenly_spaced_frame_indices", + "first_last_frame_indices", + "mesh3d_from_simdata", + "mesh_bounds", + "mesh_center", + "mesh_center_at", + "mesh_rotate", + "mesh_scale", + "mesh_transform", + "mesh_translate", + "select_frames", +] diff --git a/src/pyvale/render/rasterops.py b/src/pyvale/render/rasterops.py new file mode 100644 index 000000000..d529e98a0 --- /dev/null +++ b/src/pyvale/render/rasterops.py @@ -0,0 +1,104 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Private rasterisation helpers used by 2D planar deformation renderers.""" + +import numpy as np + + +def calculate_edge_function( + point_a: np.ndarray, + point_b: np.ndarray, + point_c: np.ndarray, +) -> np.ndarray: + """Evaluate the signed two dimensional edge function. + + Parameters + ---------- + point_a : np.ndarray + First vertex coordinate array with shape ``(2,)`` and dtype + ``float64`` representing (X, Y). + point_b : np.ndarray + Second vertex coordinate array with shape ``(2,)`` and dtype + ``float64`` representing (X, Y). + point_c : np.ndarray + Evaluation point coordinate array with shape ``(2,)`` or ``(2, N)`` + and dtype ``float64`` representing (X, Y). + + Returns + ------- + np.ndarray + Signed edge function value(s) with dtype ``float64``. + """ + return (point_c[0] - point_a[0]) * (point_b[1] - point_a[1]) - ( + point_c[1] - point_a[1] + ) * (point_b[0] - point_a[0]) + + +def calculate_elem_bound_box_low(coord_min: np.ndarray) -> np.ndarray: + """Calculate non negative lower pixel bounds for an element. + + Parameters + ---------- + coord_min : np.ndarray + Minimum coordinate array with shape ``(2,)`` and dtype ``float64`` + representing (min_x, min_y). + + Returns + ------- + np.ndarray + Lower pixel bounding box array with shape ``(2,)`` and dtype ``int32`` + clamped to a minimum of 0. + """ + return np.maximum(np.floor(coord_min).astype(np.int32), 0) + + +def calculate_elem_bound_box_high( + coord_max: np.ndarray, + image_px: int, +) -> np.ndarray: + """Calculate upper pixel bounds for an element. + + Parameters + ---------- + coord_max : np.ndarray + Maximum coordinate array with shape ``(2,)`` and dtype ``float64`` + representing (max_x, max_y). + image_px : int + Maximum image dimension in pixels. + + Returns + ------- + np.ndarray + Upper pixel bounding box array with shape ``(2,)`` and dtype ``int32`` + clamped to ``image_px``. + """ + return np.minimum(np.ceil(coord_max).astype(np.int32), image_px) + + +def format_image_number(image_number: int, width: int) -> str: + """Format an image index with leading zeroes. + + Parameters + ---------- + image_number : int + Zero based image index. + width : int + Total character width for zero padding. + + Returns + ------- + str + Zero padded image number string. + """ + return str(image_number).zfill(width) + + +__all__ = [ + "calculate_edge_function", + "calculate_elem_bound_box_high", + "calculate_elem_bound_box_low", + "format_image_number", +] diff --git a/src/pyvale/render/renderer3d.py b/src/pyvale/render/renderer3d.py new file mode 100644 index 000000000..38fd9b9c2 --- /dev/null +++ b/src/pyvale/render/renderer3d.py @@ -0,0 +1,79 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""The interface for 3D renderers.""" + +from abc import ABC, abstractmethod + +from .result import RenderResult +from .scene import Scene3D + + +class IRenderer3D(ABC): + """Abstract interface for 3D renderers. + + The public :meth:`render` method always validates a concrete scene before + the backend may allocate image buffers or start rendering. + """ + + def render( + self, + scene: Scene3D, + ) -> RenderResult: + """Validate and render a three dimensional scene. + + Parameters + ---------- + scene : Scene3D + Complete rendering request. + + Returns + ------- + RenderResult + Images and optional output paths produced by the backend. + + Raises + ------ + RenderInputError + If the scene is not supported or contains invalid data. + """ + self.verify_input(scene) + return self._render(scene) + + @abstractmethod + def verify_input( + self, + scene: Scene3D, + ) -> None: + """Validate a render request without expensive preparation. + + Parameters + ---------- + scene : Scene3D + Complete rendering request to validate. + + Raises + ------ + RenderInputError + If the request is invalid or unavailable in this backend. + """ + + @abstractmethod + def _render(self, scene: Scene3D) -> RenderResult: + """Render a backend plan that has already passed validation. + + Parameters + ---------- + scene : Scene3D + Previously validated rendering request. + + Returns + ------- + RenderResult + Images and optional output paths generated by the backend. + """ + + +__all__ = ["IRenderer3D"] diff --git a/src/pyvale/render/result.py b/src/pyvale/render/result.py new file mode 100644 index 000000000..ac7619477 --- /dev/null +++ b/src/pyvale/render/result.py @@ -0,0 +1,33 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Renderer result containers.""" + +from dataclasses import dataclass +from pathlib import Path + +import numpy as np + + +@dataclass(frozen=True, slots=True) +class RenderResult: + """Output from a three dimensional renderer. + + Parameters + ---------- + images : np.ndarray or None + Image stack with shape + ``(num_frames, num_cameras, height, width, num_channels)`` + and dtype ``uint8`` or ``float32``. ``None`` is used by file only + backends. + output_paths : tuple[Path, ...], optional + Paths written by a backend that persists rendered images. + """ + + images: np.ndarray | None + output_paths: tuple[Path, ...] = () + + +__all__ = ["RenderResult"] diff --git a/src/pyvale/render/riley.py b/src/pyvale/render/riley.py new file mode 100644 index 000000000..3aaabd46c --- /dev/null +++ b/src/pyvale/render/riley.py @@ -0,0 +1,472 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Riley renderer adapter using Riley's native public mesh and shader API.""" + +from dataclasses import dataclass, field +from pathlib import Path + +import numpy as np +import riley + +from .camera import Camera +from .capabilities import RenderCapabilities +from .errors import ValidationIssue +from .mesh import EElementType, Mesh3D +from .renderer3d import IRenderer3D +from .result import RenderResult +from .scene import Scene3D +from .verifyinput import mesh_convention_issues, raise_if_issues + + +@dataclass(slots=True, kw_only=True) +class RileyFunctionShader: + """An analytic Riley shader evaluated from mesh coordinates. + + Parameters + ---------- + builtin : riley.FuncShaderBuiltin, optional + Built in function pattern identifier. Defaults to + ``riley.FuncShaderBuiltin.checker``. + coord_mode : riley.FuncCoordMode, optional + Coordinate space for function evaluation. Defaults to + ``riley.FuncCoordMode.world_reference``. + parameters : riley.FuncShaderParams, optional + Function evaluation parameters. + uvs : np.ndarray or None, optional + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + bits : int, optional + Output bit depth (8 or 16). Defaults to 8. + scaling : riley.ScaleStrategy, optional + Intensity scaling strategy. Defaults to ``riley.ScaleStrategy.none``. + """ + + builtin: riley.FuncShaderBuiltin = riley.FuncShaderBuiltin.checker + coord_mode: riley.FuncCoordMode = riley.FuncCoordMode.world_reference + parameters: riley.FuncShaderParams = field( + default_factory=riley.FuncShaderParams, + ) + uvs: np.ndarray | None = None + bits: int = 8 + scaling: riley.ScaleStrategy = riley.ScaleStrategy.none + + +@dataclass(slots=True, kw_only=True) +class RileyTextureShader: + """A Riley image texture and its nodal UV coordinates. + + Parameters + ---------- + uvs : np.ndarray + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64`` in the normalized range ``[0.0, 1.0]``. + texture : np.ndarray + Texture image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + sample : riley.TextureSample, optional + Texture filter/interpolation mode. Defaults to + ``riley.TextureSample.cubic_catmull_rom``. + sample_mode : riley.TextureSampleMode, optional + Texture sampling execution mode. Defaults to + ``riley.TextureSampleMode.lut_lerp``. + bits : int, optional + Output bit depth (8 or 16). Defaults to 8. + scaling : riley.ScaleStrategy, optional + Intensity scaling strategy. Defaults to ``riley.ScaleStrategy.none``. + """ + + uvs: np.ndarray + texture: np.ndarray + sample: riley.TextureSample = riley.TextureSample.cubic_catmull_rom + sample_mode: riley.TextureSampleMode = riley.TextureSampleMode.direct + bits: int = 8 + scaling: riley.ScaleStrategy = riley.ScaleStrategy.none + + +@dataclass(slots=True, kw_only=True) +class RileyNodalShader: + """A scalar or colour field defined at mesh nodes. + + Parameters + ---------- + field : np.ndarray + Nodal field array with shape ``(num_nodes, num_frames)`` or + ``(num_nodes, num_frames, num_channels)`` and dtype ``float64``. + bits : int, optional + Output bit depth (8 or 16). Defaults to 8. + scaling : riley.ScaleStrategy, optional + Intensity scaling strategy. Defaults to ``riley.ScaleStrategy.auto``. + scale_over : riley.ScaleOver, optional + Normalization domain (per frame or over all frames). Defaults to + ``riley.ScaleOver.over_frames``. + """ + + field: np.ndarray + bits: int = 8 + scaling: riley.ScaleStrategy = riley.ScaleStrategy.auto + scale_over: riley.ScaleOver = riley.ScaleOver.over_frames + + +class Riley(IRenderer3D): + """Render native Riley meshes through pyvale's common scene container. + + Riley owns its complete mesh and shader representation. Construct meshes + with :class:`riley.Mesh`, including its texture, nodal field, or analytic + function shader settings, then place them in :class:`Scene3D`. + + Parameters + ---------- + config : riley.RasterConfig + Actual Riley raster configuration passed directly to + :func:`riley.raster`. + output_dir : pathlib.Path or None, optional + Directory to which Riley writes requested output. ``None`` preserves + Riley's default output behaviour. + """ + + capabilities = RenderCapabilities( + element_types=frozenset(EElementType), + supports_lights=False, + supports_camera_distortion=True, + supports_psf=True, + ) + + def __init__( + self, + config: riley.RasterConfig, + output_dir: Path | None = None, + ) -> None: + """Create a renderer around a concrete Riley raster configuration.""" + self.config = config + self.output_dir = output_dir + + def verify_input(self, scene: Scene3D) -> None: + """Verify native Riley meshes and common cameras before rasterisation. + + Parameters + ---------- + scene : Scene3D + Scene containing native Riley meshes and no explicit lights. + + Raises + ------ + RenderInputError + If configuration, mesh, camera, or lighting input is unsupported. + """ + issues: list[ValidationIssue] = [] + + if not isinstance(scene, Scene3D): + issues.append( + ValidationIssue( + "scene", + "TYPE", + "Expected a Scene3D.", + ) + ) + raise_if_issues(tuple(issues)) + return + + if not isinstance(self.config, riley.RasterConfig): + issues.append( + ValidationIssue( + "config", + "TYPE", + "Expected riley.RasterConfig.", + ) + ) + + if not scene.meshes: + issues.append( + ValidationIssue( + "scene.meshes", + "EMPTY", + "At least one mesh is required.", + ) + ) + + if not scene.cameras: + issues.append( + ValidationIssue( + "scene.cameras", + "EMPTY", + "At least one camera is required.", + ) + ) + + if scene.lights: + issues.append( + ValidationIssue( + "scene.lights", + "UNSUPPORTED", + "Riley does not support lights yet.", + ) + ) + + for mesh_index, mesh in enumerate(scene.meshes): + if not isinstance(mesh, (Mesh3D, riley.Mesh)): + issues.append( + ValidationIssue( + f"scene.meshes[{mesh_index}]", + "TYPE", + "Riley requires render.Mesh3D or riley.Mesh objects.", + ) + ) + continue + + if isinstance(mesh, Mesh3D) and not isinstance( + mesh.shader, + (RileyFunctionShader, RileyNodalShader, RileyTextureShader), + ): + issues.append( + ValidationIssue( + f"scene.meshes[{mesh_index}].shader", + "TYPE", + "Expected a Riley shader description.", + ) + ) + + issues.extend( + mesh_convention_issues( + mesh.coords, + mesh.connectivity + if isinstance(mesh, Mesh3D) + else mesh.connect, + f"scene.meshes[{mesh_index}]", + ) + ) + + issues.extend(_verify_cameras(scene.cameras)) + raise_if_issues(tuple(issues)) + + def _render(self, scene: Scene3D) -> RenderResult: + """Rasterise a previously validated scene exactly once. + + Parameters + ---------- + scene : Scene3D + Validated scene containing native Riley meshes. + + Returns + ------- + RenderResult + Riley images in ``(frame, camera, height, width, channel)`` order. + """ + output_dir = None if self.output_dir is None else str(self.output_dir) + + if self.output_dir is not None: + self.output_dir.mkdir(parents=True, exist_ok=True) + + meshes = [to_riley_mesh(mesh) for mesh in scene.meshes] + cameras = [ + to_riley_camera(camera) for camera in scene.cameras + ] + images = riley.raster( + meshes, + cameras, + self.config, + out_dir=output_dir, + ) + + if images is not None: + images = np.ascontiguousarray(images.transpose(1, 0, 3, 4, 2)) + + return RenderResult(images=images) + + +def _verify_cameras( + cameras: tuple[Camera | riley.Camera, ...], +) -> tuple[ValidationIssue, ...]: + """Perform the common cheap camera checks without requiring common + meshes. + """ + + issues: list[ValidationIssue] = [] + for index, camera in enumerate(cameras): + path = f"scene.cameras[{index}]" + if not isinstance(camera, (Camera, riley.Camera)): + issues.append( + ValidationIssue( + path, + "TYPE", + "Expected a render.Camera or riley.Camera.", + ) + ) + continue + + if not isinstance(camera, Camera): + continue + + if camera.pixels_num.shape != (2,) or np.any(camera.pixels_num <= 0): + issues.append( + ValidationIssue( + path + ".pixels_num", + "VALUE", + "Expected two positive counts.", + ) + ) + + if camera.pixels_size.shape != (2,) or np.any( + camera.pixels_size <= 0.0 + ): + issues.append( + ValidationIssue( + path + ".pixels_size", + "VALUE", + "Expected two positive sizes.", + ) + ) + + if camera.focal_length <= 0.0 or camera.subsample <= 0: + issues.append( + ValidationIssue( + path, + "VALUE", + "Focal length and sub-sampling must be positive.", + ) + ) + + return tuple(issues) + + +def to_riley_camera(camera: Camera | riley.Camera) -> riley.Camera: + """Convert one common perspective camera to a Riley camera. + + Native :class:`riley.Camera` instances are returned unchanged so scenes + may mix cameras built through the render API with cameras loaded + directly from Riley. SciPy reports Euler angles in X, Y, Z order, whereas + Riley stores its camera angles in Z, Y, X order, so this adapter reverses + their storage order at the API boundary. + + Parameters + ---------- + camera : Camera or riley.Camera + Input camera to convert. + + Returns + ------- + riley.Camera + Native Riley camera instance. + """ + if isinstance(camera, riley.Camera): + return camera + + rotation_xyz = camera.rot_world.as_euler("xyz") + + return riley.Camera( + pixels_num=tuple(int(value) for value in camera.pixels_num), + pixels_size=tuple(float(value) for value in camera.pixels_size), + pos_world=tuple(float(value) for value in camera.pos_world), + rot_world=tuple(float(value) for value in rotation_xyz[::-1]), + roi_cent_world=tuple(float(value) for value in camera.roi_cent_world), + focal_length=camera.focal_length, + sub_sample=camera.subsample, + distortion_model=int(camera.distortion_model), + distortion_k1=camera.distortion_k1, + distortion_k2=camera.distortion_k2, + distortion_k3=camera.distortion_k3, + distortion_k4=camera.distortion_k4, + distortion_k5=camera.distortion_k5, + distortion_k6=camera.distortion_k6, + distortion_p1=camera.distortion_p1, + distortion_p2=camera.distortion_p2, + psf_type=int(camera.psf_type), + psf_sigma_x=camera.psf_sigma_x, + psf_sigma_y=camera.psf_sigma_y, + psf_theta=camera.psf_theta, + psf_support_rad=camera.psf_support_rad, + ) + + +_RILEY_MESH_TYPES = { + EElementType.TRI3: riley.MeshType.tri3, + EElementType.TRI6: riley.MeshType.tri6, + EElementType.QUAD4: riley.MeshType.quad4newton, + EElementType.QUAD8: riley.MeshType.quad8, + EElementType.QUAD9: riley.MeshType.quad9, +} + + +def to_riley_mesh(mesh: Mesh3D | riley.Mesh) -> riley.Mesh: + """Convert one common mesh to a native Riley mesh. + + Native :class:`riley.Mesh` instances are returned unchanged so scenes + may mix meshes built through the render API with meshes built directly + through Riley. + + Parameters + ---------- + mesh : Mesh3D or riley.Mesh + Input mesh to convert. + + Returns + ------- + riley.Mesh + Native Riley mesh instance. + + Raises + ------ + TypeError + If mesh shader is unsupported. + """ + if isinstance(mesh, riley.Mesh): + return mesh + + common = { + "mesh_type": _RILEY_MESH_TYPES[mesh.element_type], + "coords": mesh.coords, + "connect": mesh.connectivity, + "disp": mesh.displacements, + } + shader = mesh.shader + + if isinstance(shader, RileyTextureShader): + return riley.Mesh( + shader_type=riley.ShaderType.tex, + uvs=shader.uvs, + texture=shader.texture, + sample=shader.sample, + sample_mode=shader.sample_mode, + bits=shader.bits, + scaling_type=shader.scaling, + **common, + ) + + if isinstance(shader, RileyNodalShader): + return riley.Mesh( + shader_type=riley.ShaderType.nodal, + nodal_field=shader.field, + bits=shader.bits, + scaling_type=shader.scaling, + scale_over=shader.scale_over, + **common, + ) + + if isinstance(shader, RileyFunctionShader): + return riley.Mesh( + shader_type=riley.ShaderType.func, + uvs=shader.uvs, + func_shader_builtin=shader.builtin, + func_shader_coord_mode=shader.coord_mode, + func_shader_params=shader.parameters, + bits=shader.bits, + scaling_type=shader.scaling, + **common, + ) + + raise TypeError( + "Riley Mesh3D.shader must be RileyFunctionShader, " + "RileyTextureShader, or RileyNodalShader." + ) + + +__all__ = [ + "Riley", + "RileyFunctionShader", + "RileyNodalShader", + "RileyTextureShader", + "to_riley_camera", + "to_riley_mesh", +] diff --git a/src/pyvale/render/scene.py b/src/pyvale/render/scene.py new file mode 100644 index 000000000..b13e62f55 --- /dev/null +++ b/src/pyvale/render/scene.py @@ -0,0 +1,37 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Concrete scene input for three dimensional and planar renderers.""" + +from dataclasses import dataclass, field + +import riley + +from .camera import Camera +from .light import Light +from .mesh import Mesh3D + + +@dataclass(slots=True) +class Scene3D: + """A complete three dimensional rendering request. + + Parameters + ---------- + meshes : list[object] + Meshes accepted by the selected backend. + cameras : list[Camera | riley.Camera] + One or more common perspective cameras. Native ``riley.Camera`` + instances are passed through to the Riley renderer unchanged. + lights : list[Light] or None, optional + Explicit scene lights. ``None`` leaves lighting to the backend. + """ + + meshes: list[object] + cameras: list[Camera | riley.Camera] + lights: list[Light] | None = None + + +__all__ = ["Scene3D"] diff --git a/src/pyvale/render/scenetools.py b/src/pyvale/render/scenetools.py new file mode 100644 index 000000000..a6c95d638 --- /dev/null +++ b/src/pyvale/render/scenetools.py @@ -0,0 +1,361 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Spatial layout and multi object arrangement helpers for render scenes.""" + +from collections.abc import Sequence + +import numpy as np +from scipy.spatial.transform import Rotation + +from .mesh import Mesh3D +from .meshtools import ( + mesh_bounds, + mesh_center, + mesh_center_at, + mesh_rotate, + mesh_translate, +) + + +def scene_bounds( + meshes: Sequence[Mesh3D], +) -> tuple[np.ndarray, np.ndarray]: + """Calculate the bounding box enclosing all meshes in a scene. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to measure. + + Returns + ------- + tuple[np.ndarray, np.ndarray] + Tuple of ``(coord_min, coord_max)`` arrays, each with shape ``(3,)`` + and dtype ``float64`` representing (X, Y, Z) minimum and maximum + extents of the enclosing bounding box. + """ + if not meshes: + return np.zeros(3), np.zeros(3) + + lowers, uppers = zip( + *(mesh_bounds(mesh) for mesh in meshes), + strict=True, + ) + + return np.min(np.array(lowers), axis=0), np.max(np.array(uppers), axis=0) + + +def scene_center(meshes: Sequence[Mesh3D]) -> np.ndarray: + """Calculate the midpoint of the scene bounding box. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes. + + Returns + ------- + np.ndarray + Midpoint coordinates array with shape ``(3,)`` and dtype + ``float64`` representing (X, Y, Z) center of the scene. + """ + lower, upper = scene_bounds(meshes) + return 0.5 * (lower + upper) + + +def scene_translate( + meshes: Sequence[Mesh3D], + translation: np.ndarray, +) -> list[Mesh3D]: + """Translate every mesh in a sequence by the same offset vector. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to translate. + translation : np.ndarray + Translation offset array with shape ``(3,)`` or ``(2,)`` and dtype + ``float64`` representing (dX, dY, dZ) offsets. + + Returns + ------- + list[Mesh3D] + New list of translated meshes. + """ + return [mesh_translate(mesh, translation) for mesh in meshes] + + +def scene_rotate( + meshes: Sequence[Mesh3D], + rotation: Rotation, + pivot: np.ndarray | None = None, +) -> list[Mesh3D]: + """Rotate all meshes around a shared pivot (default: scene center). + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to rotate. + rotation : scipy.spatial.transform.Rotation + Spatial rotation to apply to all meshes. + pivot : np.ndarray or None, optional + Pivot center point array with shape ``(3,)`` and dtype ``float64``. + If ``None``, defaults to the scene center. + + Returns + ------- + list[Mesh3D] + New list of rotated meshes. + """ + p_vec = scene_center(meshes) if pivot is None else pivot + return [mesh_rotate(mesh, rotation, pivot=p_vec) for mesh in meshes] + + +def scene_arrange_points( + meshes: Sequence[Mesh3D], + positions: np.ndarray, +) -> list[Mesh3D]: + """Move each mesh so its bounding box center lies at the matching target. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to arrange. + positions : np.ndarray + Array of target center positions with shape ``(num_meshes, 3)`` and + dtype ``float64`` representing (X, Y, Z) coordinates for each mesh. + + Returns + ------- + list[Mesh3D] + New list of repositioned meshes. + + Raises + ------ + ValueError + If the number of meshes does not match the number of positions. + """ + if len(meshes) != len(positions): + raise ValueError( + f"Number of meshes ({len(meshes)}) must match number of " + f"positions ({len(positions)})." + ) + + return [ + mesh_center_at(mesh, position) + for mesh, position in zip(meshes, positions, strict=True) + ] + + +def scene_arrange_line( + meshes: Sequence[Mesh3D], + axis: int = 0, + spacing: float = 0.0, +) -> list[Mesh3D]: + """Arrange meshes in a line with a constant gap between bounding boxes. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to arrange. + axis : int, optional + Spatial axis index along which to align meshes (0 for X, 1 for Y, + 2 for Z). Defaults to 0. + spacing : float, optional + Clearance distance between successive bounding boxes. Defaults to 0.0. + + Returns + ------- + list[Mesh3D] + New list of arranged meshes. + """ + if not meshes: + return [] + + arranged: list[Mesh3D] = [] + current_edge: float | None = None + + for mesh in meshes: + low, high = mesh_bounds(mesh) + if current_edge is None: + arranged.append(mesh) + current_edge = high[axis] + else: + shift = (current_edge + spacing) - low[axis] + delta = np.zeros_like(low) + delta[axis] = shift + moved = mesh_translate(mesh, delta) + arranged.append(moved) + _, moved_high = mesh_bounds(moved) + current_edge = moved_high[axis] + + return arranged + + +def scene_arrange_grid( + meshes: Sequence[Mesh3D], + columns: int = 3, + spacing: np.ndarray = np.array((0.0, 0.0)), + plane: str = "xy", + center: bool = True, +) -> list[Mesh3D]: + """Arrange meshes in a 2D planar grid with defined gaps between boxes. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to arrange in a grid. + columns : int, optional + Number of grid columns. Defaults to 3. + spacing : np.ndarray, optional + Gaps between bounding boxes with shape ``(2,)`` and dtype ``float64`` + representing ``(gap_u, gap_v)``. Defaults to ``(0.0, 0.0)``. + plane : str, optional + Grid arrangement plane (``"xy"``, ``"xz"``, or ``"yz"``). Defaults + to ``"xy"``. + center : bool, optional + Whether to center the entire grid at the origin. Defaults to ``True``. + + Returns + ------- + list[Mesh3D] + New list of grid arranged meshes. + + Raises + ------ + ValueError + If columns is not positive or plane is unsupported. + """ + if not meshes: + return [] + + if columns <= 0: + raise ValueError("columns must be a positive integer.") + + plane_lower = plane.lower() + if plane_lower == "xy": + u_axis, v_axis = 0, 1 + elif plane_lower == "xz": + u_axis, v_axis = 0, 2 + elif plane_lower == "yz": + u_axis, v_axis = 1, 2 + else: + raise ValueError(f"Unsupported plane '{plane}'. Choose xy, xz, or yz.") + + gap_u = float(spacing[0]) + gap_v = float(spacing[1]) if len(spacing) > 1 else gap_u + + rows = (len(meshes) + columns - 1) // columns + col_widths = np.zeros(columns, dtype=np.float64) + row_heights = np.zeros(rows, dtype=np.float64) + + for ii, mesh in enumerate(meshes): + col = ii % columns + row = ii // columns + low, high = mesh_bounds(mesh) + width = high[u_axis] - low[u_axis] + height = high[v_axis] - low[v_axis] + col_widths[col] = max(col_widths[col], width) + row_heights[row] = max(row_heights[row], height) + + col_offsets = np.zeros(columns, dtype=np.float64) + for cc in range(1, columns): + col_offsets[cc] = col_offsets[cc - 1] + col_widths[cc - 1] + gap_u + + row_offsets = np.zeros(rows, dtype=np.float64) + for rr in range(1, rows): + row_offsets[rr] = row_offsets[rr - 1] + row_heights[rr - 1] + gap_v + + arranged: list[Mesh3D] = [] + for ii, mesh in enumerate(meshes): + col = ii % columns + row = ii // columns + low, high = mesh_bounds(mesh) + width = high[u_axis] - low[u_axis] + height = high[v_axis] - low[v_axis] + + target_u = col_offsets[col] + 0.5 * (col_widths[col] - width) + target_v = row_offsets[row] + 0.5 * (row_heights[row] - height) + + delta = np.zeros_like(low) + delta[u_axis] = target_u - low[u_axis] + delta[v_axis] = target_v - low[v_axis] + arranged.append(mesh_translate(mesh, delta)) + + if center and arranged: + sc = scene_center(arranged) + arranged = scene_translate(arranged, -sc) + + return arranged + + +def scene_arrange_circle( + meshes: Sequence[Mesh3D], + radius: float = 100.0, + plane: str = "xy", + center: np.ndarray = np.array((0.0, 0.0, 0.0)), +) -> list[Mesh3D]: + """Place mesh centers evenly spaced around a circle. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Collection of meshes to arrange in a circle. + radius : float, optional + Radius of the circle. Defaults to 100.0. + plane : str, optional + Circle plane (``"xy"``, ``"xz"``, or ``"yz"``). Defaults to ``"xy"``. + center : np.ndarray, optional + Center coordinates of the circle with shape ``(3,)`` and dtype + ``float64``. Defaults to ``(0.0, 0.0, 0.0)``. + + Returns + ------- + list[Mesh3D] + New list of circularly arranged meshes. + + Raises + ------ + ValueError + If plane is unsupported. + """ + if not meshes: + return [] + + plane_lower = plane.lower() + if plane_lower == "xy": + u_axis, v_axis = 0, 1 + elif plane_lower == "xz": + u_axis, v_axis = 0, 2 + elif plane_lower == "yz": + u_axis, v_axis = 1, 2 + else: + raise ValueError(f"Unsupported plane '{plane}'. Choose xy, xz, or yz.") + + c_vec = np.asarray(center, dtype=np.float64)[:3] + n = len(meshes) + angles = np.linspace(0.0, 2.0 * np.pi, n, endpoint=False) + + arranged: list[Mesh3D] = [] + for mesh, angle in zip(meshes, angles, strict=True): + pos = c_vec.copy() + pos[u_axis] += radius * np.cos(angle) + pos[v_axis] += radius * np.sin(angle) + arranged.append(mesh_center_at(mesh, pos)) + + return arranged + + +__all__ = [ + "scene_arrange_circle", + "scene_arrange_grid", + "scene_arrange_line", + "scene_arrange_points", + "scene_bounds", + "scene_center", + "scene_rotate", + "scene_translate", +] diff --git a/src/pyvale/render/uvtools.py b/src/pyvale/render/uvtools.py new file mode 100644 index 000000000..6adc61749 --- /dev/null +++ b/src/pyvale/render/uvtools.py @@ -0,0 +1,867 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================ +"""Renderer independent tools for generating and transforming nodal UVs. + +Texture shapes follow NumPy convention, ``(height, width)``. Pixel coordinates +refer to pixel centres, so the final pixel centres are at ``width - 1`` and +``height - 1``. UV arrays have shape ``(node_count, 2)``. +""" + +from __future__ import annotations + +from dataclasses import dataclass +from enum import Enum +import warnings + +import numpy as np + + +class EUVPlane(Enum): + """Axis aligned plane used for planar UV projection.""" + + XY = "xy" + YZ = "yz" + XZ = "xz" + + +class EUVFit(Enum): + """Rule used to fit projected coordinates into texture bounds.""" + + CONTAIN = "contain" + FIT_U = "fit_u" + FIT_V = "fit_v" + STRETCH = "stretch" + + +class EUVOrigin(Enum): + """Location of the texture space V origin.""" + + UPPER_LEFT = "upper_left" + LOWER_LEFT = "lower_left" + + +class EUVBounds(Enum): + """Handling for physically scaled UVs outside the source texture.""" + + SATURATE = "saturate" + TILED = "tiled" + + +@dataclass(frozen=True, slots=True) +class UVPlane: + """Arbitrary projection plane. + + Parameters + ---------- + normal : np.ndarray + Nonzero plane normal vector array with shape ``(3,)`` and dtype + ``float64`` representing (nx, ny, nz). + origin : np.ndarray + Point on the plane with shape ``(3,)`` and dtype ``float64`` + representing (x, y, z) coordinates. + up : np.ndarray or None, optional + Preferred positive V direction array with shape ``(3,)`` and dtype + ``float64``. Its component normal to the plane is removed. When + omitted, a deterministic basis is constructed. + """ + + normal: np.ndarray + origin: np.ndarray + up: np.ndarray | None = None + + +@dataclass(frozen=True, slots=True) +class UVTransform: + """Affine UV transform applied about a pivot before translation. + + Parameters + ---------- + translation : tuple[float, float], optional + Translation offset in UV space ``(du, dv)``. Defaults to (0.0, 0.0). + rotation_degrees : float, optional + Rotation angle in degrees about the pivot. Defaults to 0.0. + scale : tuple[float, float], optional + Scale factor in UV space ``(su, sv)``. Defaults to (1.0, 1.0). + pivot : tuple[float, float], optional + Pivot center point in UV space ``(pu, pv)``. Defaults to (0.5, 0.5). + """ + + translation: tuple[float, float] = (0.0, 0.0) + rotation_degrees: float = 0.0 + scale: tuple[float, float] = (1.0, 1.0) + pivot: tuple[float, float] = (0.5, 0.5) + + +@dataclass(frozen=True, slots=True) +class UVMapping: + """UV coordinates and the texture image they address. + + ``TILED`` mappings may contain an expanded texture assembled from the + supplied source image. ``tile_counts`` is in ``(U, V)`` order. + + Parameters + ---------- + uvs : np.ndarray + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64`` in the normalized range ``[0.0, 1.0]``. + texture : np.ndarray + Texture image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + tile_counts : tuple[int, int], optional + Number of tiles in U and V directions ``(tile_u, tile_v)``. + Defaults to (1, 1). + """ + + uvs: np.ndarray + texture: np.ndarray + tile_counts: tuple[int, int] = (1, 1) + + +def _finite_array( + values: object, + name: str, + shape: tuple[int, ...] | None = None, +) -> np.ndarray: + """Return finite contiguous float64 input with an optional exact shape.""" + array = np.ascontiguousarray(values, dtype=np.float64) + + if shape is not None and array.shape != shape: + raise ValueError(f"{name} must have shape {shape}; got {array.shape}.") + + if not np.isfinite(array).all(): + raise ValueError(f"{name} must contain only finite values.") + + return array + + +def _coords_array(coords: np.ndarray) -> np.ndarray: + """Validate three dimensional nodal coordinates.""" + array = _finite_array(coords, "coords") + + if array.ndim != 2 or array.shape[1] != 3 or array.shape[0] < 2: + raise ValueError("coords must have shape (node_count, 3).") + + return array + + +def _uv_array(uvs: np.ndarray) -> np.ndarray: + """Validate nodal UV coordinates.""" + array = _finite_array(uvs, "uvs") + + if array.ndim != 2 or array.shape[1] != 2: + raise ValueError("uvs must have shape (node_count, 2).") + + return array + + +def _texture_size(texture_shape: tuple[int, int]) -> tuple[float, float]: + """Return validated texture width and height from NumPy shape order.""" + shape = _finite_array(texture_shape, "texture_shape", (2,)) + + if np.any(shape < 2.0): + raise ValueError("Texture height and width must both be at least 2.") + + return float(shape[1]), float(shape[0]) + + +def _plane_basis( + plane: EUVPlane | UVPlane, +) -> tuple[np.ndarray, np.ndarray, np.ndarray]: + """Resolve a projection plane to an origin and orthonormal U/V basis.""" + zero = np.zeros(3, dtype=np.float64) + + if plane is EUVPlane.XY: + return zero, np.array((1.0, 0.0, 0.0)), np.array((0.0, 1.0, 0.0)) + + if plane is EUVPlane.YZ: + return zero, np.array((0.0, 1.0, 0.0)), np.array((0.0, 0.0, 1.0)) + + if plane is EUVPlane.XZ: + return zero, np.array((1.0, 0.0, 0.0)), np.array((0.0, 0.0, 1.0)) + + if not isinstance(plane, UVPlane): + raise ValueError(f"Unsupported UV projection plane: {plane!r}.") + + normal = _finite_array(plane.normal, "plane.normal", (3,)) + origin = _finite_array(plane.origin, "plane.origin", (3,)) + normal_norm = float(np.linalg.norm(normal)) + + if normal_norm == 0.0: + raise ValueError("plane.normal must be nonzero.") + + normal = normal / normal_norm + + if plane.up is not None: + up = _finite_array(plane.up, "plane.up", (3,)) + v_axis = up - np.dot(up, normal) * normal + v_norm = float(np.linalg.norm(v_axis)) + + if v_norm <= np.finfo(np.float64).eps: + raise ValueError("plane.up must not be parallel to plane.normal.") + + v_axis /= v_norm + u_axis = np.cross(v_axis, normal) + u_axis /= np.linalg.norm(u_axis) + + return origin, u_axis, v_axis + + if abs(normal[2]) < 0.999: + u_axis = np.cross(np.array((0.0, 0.0, 1.0)), normal) + else: + u_axis = np.cross(normal, np.array((0.0, 1.0, 0.0))) + + u_axis /= np.linalg.norm(u_axis) + v_axis = np.cross(normal, u_axis) + v_axis /= np.linalg.norm(v_axis) + + return origin, u_axis, v_axis + + +def _project(coords: np.ndarray, plane: EUVPlane | UVPlane) -> np.ndarray: + """Project coordinates onto the selected two dimensional plane.""" + + if plane is EUVPlane.XY: + return coords[:, :2] + + if plane is EUVPlane.YZ: + return coords[:, 1:3] + + if plane is EUVPlane.XZ: + return coords[:, (0, 2)] + + origin, u_axis, v_axis = _plane_basis(plane) + difference = coords - origin + + return np.column_stack((difference @ u_axis, difference @ v_axis)) + + +def _bounds(values: np.ndarray) -> tuple[np.ndarray, np.ndarray, np.ndarray]: + """Return projected bounds and reject a zero area projection.""" + lower = np.min(values, axis=0) + upper = np.max(values, axis=0) + extent = upper - lower + + if np.any(extent <= 0.0): + raise ValueError("Projected mesh has zero area in the chosen plane.") + + return lower, upper, extent + + + +def _fit_projected( + projected: np.ndarray, + pixel_bounds: tuple[float, float, float, float], + fit: EUVFit, +) -> np.ndarray: + """Fit projected coordinates into pixel bounds.""" + + lower, upper, extent = _bounds(projected) + bounds = _finite_array(pixel_bounds, "pixel_bounds", (4,)) + target_lower = bounds[:2] + target_upper = bounds[2:] + target_extent = target_upper - target_lower + + if np.any(target_extent <= 0.0): + raise ValueError("pixel_bounds upper bounds must exceed lower bounds.") + + scale_axes = target_extent / extent + + if fit is EUVFit.CONTAIN: + scale = np.repeat(np.min(scale_axes), 2) + elif fit is EUVFit.FIT_U: + scale = np.repeat(scale_axes[0], 2) + elif fit is EUVFit.FIT_V: + scale = np.repeat(scale_axes[1], 2) + elif fit is EUVFit.STRETCH: + scale = scale_axes + else: + raise ValueError(f"Unsupported UV fit mode: {fit!r}.") + + source_center = 0.5 * (lower + upper) + target_center = 0.5 * (target_lower + target_upper) + + return target_center + (projected - source_center) * scale + + +def uv_from_pixels( + pixel_coords: np.ndarray, + texture_shape: tuple[int, int], + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, +) -> np.ndarray: + """Convert pixel centre coordinates to normalized UV coordinates. + + Parameters + ---------- + pixel_coords : np.ndarray + Pixel coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64`` representing (px_x, px_y). + texture_shape : tuple[int, int] + Texture image shape ``(height, width)``. + origin : EUVOrigin, optional + Texture space vertical origin (``EUVOrigin.UPPER_LEFT`` or + ``EUVOrigin.LOWER_LEFT``). Defaults to ``EUVOrigin.UPPER_LEFT``. + + Returns + ------- + np.ndarray + Normalized UV coordinates array with shape ``(num_nodes, 2)`` and + dtype ``float64`` in the range ``[0.0, 1.0]``. + + Raises + ------ + ValueError + If origin is unsupported or input shapes are invalid. + """ + pixels = _uv_array(pixel_coords) + width, height = _texture_size(texture_shape) + uvs = np.empty_like(pixels) + uvs[:, 0] = pixels[:, 0] / (width - 1.0) + + if origin is EUVOrigin.UPPER_LEFT: + uvs[:, 1] = 1.0 - pixels[:, 1] / (height - 1.0) + elif origin is EUVOrigin.LOWER_LEFT: + uvs[:, 1] = pixels[:, 1] / (height - 1.0) + else: + raise ValueError(f"Unsupported UV origin: {origin!r}.") + + return np.ascontiguousarray(uvs) + + +def uv_to_pixels( + uvs: np.ndarray, + texture_shape: tuple[int, int], + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, +) -> np.ndarray: + """Convert normalized UV coordinates to pixel centre coordinates. + + Parameters + ---------- + uvs : np.ndarray + Normalized UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + texture_shape : tuple[int, int] + Texture image shape ``(height, width)``. + origin : EUVOrigin, optional + Texture space vertical origin. Defaults to ``EUVOrigin.UPPER_LEFT``. + + Returns + ------- + np.ndarray + Pixel coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + + Raises + ------ + ValueError + If origin is unsupported or input shapes are invalid. + """ + uv_coords = _uv_array(uvs) + width, height = _texture_size(texture_shape) + pixels = np.empty_like(uv_coords) + pixels[:, 0] = uv_coords[:, 0] * (width - 1.0) + + if origin is EUVOrigin.UPPER_LEFT: + pixels[:, 1] = (1.0 - uv_coords[:, 1]) * (height - 1.0) + elif origin is EUVOrigin.LOWER_LEFT: + pixels[:, 1] = uv_coords[:, 1] * (height - 1.0) + else: + raise ValueError(f"Unsupported UV origin: {origin!r}.") + + return np.ascontiguousarray(pixels) + + +def uv_project_planar_pixels( + coords: np.ndarray, + texture_shape: tuple[int, int], + pixel_bounds: tuple[float, float, float, float], + plane: EUVPlane | UVPlane = EUVPlane.XY, + fit: EUVFit = EUVFit.CONTAIN, + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, +) -> np.ndarray: + """Project mesh coordinates into a texture space pixel rectangle. + + Parameters + ---------- + coords : np.ndarray + Nodal coordinates array with shape ``(num_nodes, 3)`` and dtype + ``float64``. + texture_shape : tuple[int, int] + Texture image dimensions ``(height, width)``. + pixel_bounds : tuple[float, float, float, float] + Target pixel bounds ``(min_x, min_y, max_x, max_y)``. + plane : EUVPlane or UVPlane, optional + Projection plane (default is ``EUVPlane.XY``). + fit : EUVFit, optional + Fitting rule within the pixel bounds (default is ``EUVFit.CONTAIN``). + origin : EUVOrigin, optional + Vertical origin convention. Defaults to ``EUVOrigin.UPPER_LEFT``. + + Returns + ------- + np.ndarray + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + """ + coords_in = _coords_array(coords) + _texture_size(texture_shape) + projected = _project(coords_in, plane) + pixels = _fit_projected(projected, pixel_bounds, fit) + + return uv_from_pixels(pixels, texture_shape, origin) + + +def uv_project_planar( + coords: np.ndarray, + plane: EUVPlane | UVPlane = EUVPlane.XY, + uv_bounds: tuple[float, float, float, float] = (0.0, 0.0, 1.0, 1.0), + fit: EUVFit = EUVFit.CONTAIN, + texture_shape: tuple[int, int] | None = None, + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, +) -> np.ndarray: + """Project mesh coordinates into normalized UV bounds. + + When ``texture_shape`` is omitted, a square two pixel texture is assumed + for aspect fitting. Supply the actual image shape when its aspect ratio + should influence ``CONTAIN``, ``FIT_U``, or ``FIT_V``. + + Parameters + ---------- + coords : np.ndarray + Nodal coordinates array with shape ``(num_nodes, 3)`` and dtype + ``float64``. + plane : EUVPlane or UVPlane, optional + Projection plane (default is ``EUVPlane.XY``). + uv_bounds : tuple[float, float, float, float], optional + Normalized UV bounds ``(min_u, min_v, max_u, max_v)``. Defaults to + (0.0, 0.0, 1.0, 1.0). + fit : EUVFit, optional + Fitting mode (default is ``EUVFit.CONTAIN``). + texture_shape : tuple[int, int] or None, optional + Image shape ``(height, width)`` for aspect preservation. + origin : EUVOrigin, optional + Vertical origin convention. Defaults to ``EUVOrigin.UPPER_LEFT``. + + Returns + ------- + np.ndarray + Nodal UV coordinates array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + + Raises + ------ + ValueError + If UV bounds are inverted or origin is invalid. + """ + if texture_shape is None: + texture_shape = (2, 2) + + width, height = _texture_size(texture_shape) + bounds = _finite_array(uv_bounds, "uv_bounds", (4,)) + + if bounds[2] <= bounds[0] or bounds[3] <= bounds[1]: + raise ValueError("uv_bounds upper bounds must exceed lower bounds.") + + x_bounds = bounds[[0, 2]] * (width - 1.0) + if origin is EUVOrigin.UPPER_LEFT: + y_bounds = (1.0 - bounds[[3, 1]]) * (height - 1.0) + elif origin is EUVOrigin.LOWER_LEFT: + y_bounds = bounds[[1, 3]] * (height - 1.0) + else: + raise ValueError(f"Unsupported UV origin: {origin!r}.") + + pixel_bounds = (x_bounds[0], y_bounds[0], x_bounds[1], y_bounds[1]) + + return uv_project_planar_pixels( + coords, + texture_shape, + pixel_bounds, + plane=plane, + fit=fit, + origin=origin, + ) + + +def uv_project_planar_centered( + coords: np.ndarray, + texture_shape: tuple[int, int], + *, + span: float = 1.0, + plane: EUVPlane | UVPlane = EUVPlane.XY, + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, +) -> np.ndarray: + """Project coordinates into a centred aspect preserving UV region. + + Parameters + ---------- + coords : np.ndarray + Nodal coordinates array with shape ``(num_nodes, 3)`` and dtype + ``float64``. + texture_shape : tuple[int, int] + Texture image shape ``(height, width)``. + span : float, optional + Fraction of texture bounds to occupy (0 < span <= 1.0). Defaults + to 1.0. + plane : EUVPlane or UVPlane, optional + Projection plane. Defaults to ``EUVPlane.XY``. + origin : EUVOrigin, optional + Vertical origin convention. Defaults to ``EUVOrigin.UPPER_LEFT``. + + Returns + ------- + np.ndarray + Nodal UV coordinates array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + + Raises + ------ + ValueError + If span is not in the interval (0, 1]. + """ + if not np.isfinite(span) or not 0.0 < span <= 1.0: + raise ValueError("span must be finite and in the interval (0, 1].") + + margin = 0.5 * (1.0 - span) + + return uv_project_planar( + coords, + plane, + uv_bounds=(margin, margin, 1.0 - margin, 1.0 - margin), + fit=EUVFit.CONTAIN, + texture_shape=texture_shape, + origin=origin, + ) + + +def uv_calc_feature_leng( + image_px_per_feature: float, + image_leng_per_px: float, +) -> float: + """Calculate physical feature size or pitch from its rendered size. + + Parameters + ---------- + image_px_per_feature : float + Target feature size in rendered pixels. + image_leng_per_px : float + Physical length per image pixel at the specimen plane. + + Returns + ------- + float + Physical feature length in simulation length units. + + Raises + ------ + ValueError + If any input is not positive. + """ + values = _finite_array( + (image_px_per_feature, image_leng_per_px), + "feature scale inputs", + (2,), + ) + if np.any(values <= 0.0): + raise ValueError("Feature scale inputs must be positive.") + return float(values[0] * values[1]) + + +def uv_calc_image_px_per_feature( + feature_leng: float, + image_leng_per_px: float, +) -> float: + """Calculate rendered pixels per feature size or pitch. + + Parameters + ---------- + feature_leng : float + Physical feature dimension in simulation length units. + image_leng_per_px : float + Physical length per image pixel at the specimen plane. + + Returns + ------- + float + Rendered feature dimension in pixel units. + + Raises + ------ + ValueError + If any input is not positive. + """ + values = _finite_array( + (feature_leng, image_leng_per_px), + "feature scale inputs", + (2,), + ) + if np.any(values <= 0.0): + raise ValueError("Feature scale inputs must be positive.") + return float(values[0] / values[1]) + + +def uv_calc_texture_px_per_leng( + texture_px_per_feature: float, + feature_leng: float, +) -> float: + """Calculate texture pixels per simulation length unit. + + Parameters + ---------- + texture_px_per_feature : float + Feature dimension in texture pixels. + feature_leng : float + Feature physical dimension in simulation length units. + + Returns + ------- + float + Texture pixels per simulation length unit. + + Raises + ------ + ValueError + If any input is not positive. + """ + values = _finite_array( + (texture_px_per_feature, feature_leng), + "feature scale inputs", + (2,), + ) + if np.any(values <= 0.0): + raise ValueError("Feature scale inputs must be positive.") + return float(values[0] / values[1]) + + +def uv_calc_texture_px_per_leng_from_image( + texture_px_per_feature: float, + image_px_per_feature: float, + image_leng_per_px: float, +) -> float: + """Calculate texture scale for a desired rendered feature size. + + Parameters + ---------- + texture_px_per_feature : float + Feature dimension in source texture pixels. + image_px_per_feature : float + Desired feature dimension in rendered image pixels. + image_leng_per_px : float + Physical length per image pixel at the specimen plane. + + Returns + ------- + float + Required texture pixels per simulation length unit. + """ + feature_leng = uv_calc_feature_leng( + image_px_per_feature, + image_leng_per_px, + ) + return uv_calc_texture_px_per_leng( + texture_px_per_feature, + feature_leng, + ) + + +def uv_map_planar_scaled( + coords: np.ndarray, + texture: np.ndarray, + texture_px_per_leng: float | np.ndarray, + plane: EUVPlane | UVPlane = EUVPlane.XY, + texture_center_px: np.ndarray | None = None, + origin: EUVOrigin = EUVOrigin.UPPER_LEFT, + bounds: EUVBounds = EUVBounds.SATURATE, +) -> UVMapping: + """Map a planar surface using a fixed physical texture scale. + + The projected specimen centre is placed at ``texture_center_px``. When no + centre is supplied, the centre of the source texture is used. Texture + scale may be one isotropic value or independent ``(U, V)`` values. + + Parameters + ---------- + coords : np.ndarray + Nodal coordinates array with shape ``(num_nodes, 3)`` and dtype + ``float64``. + texture : np.ndarray + Source texture image array with shape ``(height, width)`` or + ``(height, width, num_channels)``. + texture_px_per_leng : float or np.ndarray + Physical texture resolution as a scalar or two element array with + shape ``(2,)`` and dtype ``float64`` for (scale_u, scale_v). + plane : EUVPlane or UVPlane, optional + Projection plane. Defaults to ``EUVPlane.XY``. + texture_center_px : np.ndarray or None, optional + Pixel coordinate array with shape ``(2,)`` and dtype ``float64`` + denoting the texture centre. + origin : EUVOrigin, optional + Vertical origin convention. Defaults to ``EUVOrigin.UPPER_LEFT``. + bounds : EUVBounds, optional + Out of bounds handling mode (``EUVBounds.SATURATE`` or + ``EUVBounds.TILED``). Defaults to ``EUVBounds.SATURATE``. + + Returns + ------- + UVMapping + Constructed mapping containing nodal UVs, texture image, and tile + counts. + + Raises + ------ + ValueError + If inputs are invalid or out of bounds. + """ + coords_in = _coords_array(coords) + texture_in = np.asarray(texture) + + if texture_in.ndim not in (2, 3): + raise ValueError("texture must have shape (height, width[, channels]).") + + texture_shape = (int(texture_in.shape[0]), int(texture_in.shape[1])) + width, height = _texture_size(texture_shape) + scale = np.asarray(texture_px_per_leng, dtype=np.float64) + + if scale.ndim == 0: + scale = np.repeat(scale, 2) + + if scale.shape != (2,) or not np.isfinite(scale).all(): + raise ValueError( + "texture_px_per_leng must be finite and scalar or shape (2,)." + ) + + if np.any(scale <= 0.0): + raise ValueError("texture_px_per_leng must be positive.") + + projected = _project(coords_in, plane) + projected_center = 0.5 * ( + np.min(projected, axis=0) + np.max(projected, axis=0) + ) + + if texture_center_px is None: + texture_center = np.array((0.5 * (width - 1.0), 0.5 * (height - 1.0))) + else: + texture_center = _finite_array( + texture_center_px, + "texture_center_px", + (2,), + ) + + pixels = texture_center + (projected - projected_center) * scale + raw_uvs = uv_from_pixels(pixels, texture_shape, origin) + outside = np.any((raw_uvs < 0.0) | (raw_uvs > 1.0)) + + if bounds is EUVBounds.SATURATE: + if outside: + warnings.warn( + "Physically scaled UVs exceed the texture bounds and were " + "saturated to [0, 1]. Use EUVBounds.TILED to preserve scale.", + UserWarning, + stacklevel=2, + ) + return UVMapping( + np.ascontiguousarray(np.clip(raw_uvs, 0.0, 1.0)), + texture_in, + ) + + if bounds is not EUVBounds.TILED: + raise ValueError(f"Unsupported UV bounds mode: {bounds!r}.") + + if not outside: + return UVMapping(np.ascontiguousarray(raw_uvs), texture_in) + + source_size = np.array((texture_in.shape[1], texture_in.shape[0])) + tile_lower = np.floor(np.min(pixels, axis=0) / source_size).astype(np.int64) + tile_upper = np.floor(np.max(pixels, axis=0) / source_size).astype(np.int64) + tile_counts_array = tile_upper - tile_lower + 1 + + tile_u, tile_v = (int(value) for value in tile_counts_array) + repetitions = (tile_v, tile_u) + (1,) * (texture_in.ndim - 2) + + tiled_texture = np.tile(texture_in, repetitions) + tiled_pixels = pixels - tile_lower * source_size + + tiled_uvs = uv_from_pixels( + tiled_pixels, + (int(tiled_texture.shape[0]), int(tiled_texture.shape[1])), + origin, + ) + + return UVMapping( + np.ascontiguousarray(np.clip(tiled_uvs, 0.0, 1.0)), + np.ascontiguousarray(tiled_texture), + (tile_u, tile_v), + ) + + +def uv_transform( + uvs: np.ndarray, + transform: UVTransform, +) -> np.ndarray: + """Scale and rotate UVs about a pivot, then apply translation. + + Parameters + ---------- + uvs : np.ndarray + Nodal UV coordinate array with shape ``(num_nodes, 2)`` and dtype + ``float64``. + transform : UVTransform + Affine transform specifying scale, rotation, translation, and pivot. + + Returns + ------- + np.ndarray + Transformed UV coordinate array with shape ``(num_nodes, 2)`` and + dtype ``float64``. + + Raises + ------ + ValueError + If rotation is not finite or UV coordinates have invalid shape. + """ + uv_coords = _uv_array(uvs) + translation = _finite_array( + transform.translation, "transform.translation", (2,), + ) + + scale = _finite_array(transform.scale, "transform.scale", (2,)) + pivot = _finite_array(transform.pivot, "transform.pivot", (2,)) + angle = float(transform.rotation_degrees) + + if not np.isfinite(angle): + raise ValueError("transform.rotation_degrees must be finite.") + + radians = np.deg2rad(angle) + rotation = np.array( + ((np.cos(radians), -np.sin(radians)), + (np.sin(radians), np.cos(radians))), + ) + + transformed = (uv_coords - pivot) * scale + transformed = transformed @ rotation.T + transformed += pivot + translation + + return np.ascontiguousarray(transformed, dtype=np.float64) + + +__all__ = [ + "EUVBounds", + "EUVFit", + "EUVOrigin", + "EUVPlane", + "UVPlane", + "UVMapping", + "UVTransform", + "uv_calc_feature_leng", + "uv_calc_image_px_per_feature", + "uv_calc_texture_px_per_leng", + "uv_calc_texture_px_per_leng_from_image", + "uv_from_pixels", + "uv_map_planar_scaled", + "uv_project_planar", + "uv_project_planar_centered", + "uv_project_planar_pixels", + "uv_to_pixels", + "uv_transform", +] diff --git a/src/pyvale/render/verifyinput.py b/src/pyvale/render/verifyinput.py new file mode 100644 index 000000000..1de4f0389 --- /dev/null +++ b/src/pyvale/render/verifyinput.py @@ -0,0 +1,308 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Cheap, non rendering validation helpers.""" + +from collections.abc import Sequence + +import numpy as np + +from pyvale.dataio import SimData, check_mesh_convention + +from .camera import Camera +from .errors import RenderInputError, ValidationIssue +from .light import Light +from .mesh import EElementType, Mesh3D + +_NODES_PER_ELEMENT = { + EElementType.TRI3: 3, + EElementType.TRI6: 6, + EElementType.QUAD4: 4, + EElementType.QUAD8: 8, + EElementType.QUAD9: 9, +} + + +def mesh_convention_issues( + coords: np.ndarray, + connectivity: np.ndarray, + path: str, +) -> tuple[ValidationIssue, ...]: + """Return shared convention issues for a render surface mesh. + + Two dimensional coordinates are padded onto the XY plane before invoking + the common DataIO checker. This keeps planar renderers aligned with the + same counter clockwise, right handed convention as 3D renderers. + + Parameters + ---------- + coords : np.ndarray + Nodal coordinates array with shape ``(num_nodes, 2)`` or + ``(num_nodes, 3)`` and dtype ``float64``. + connectivity : np.ndarray + Element connectivity table with shape + ``(num_elements, nodes_per_element)`` and integer dtype. + path : str + Dotted path identifier for error reporting. + + Returns + ------- + tuple[ValidationIssue, ...] + Tuple of validation issues detected, or an empty tuple if valid. + """ + coords_array = np.asarray(coords) + connectivity_array = np.asarray(connectivity) + if coords_array.ndim != 2 or coords_array.shape[1] not in (2, 3): + return () + if connectivity_array.ndim != 2 or connectivity_array.size == 0: + return () + + if coords_array.shape[1] == 2: + coords_array = np.pad(coords_array, ((0, 0), (0, 1))) + + try: + report = check_mesh_convention( + SimData( + coords=coords_array, + connect={"connect1": connectivity_array}, + ) + ) + except (IndexError, NotImplementedError, TypeError, ValueError) as error: + return ( + ValidationIssue( + path + ".connectivity", + "CONVENTION", + f"Could not check the shared mesh convention: {error}", + ), + ) + + if not report: + return () + + failed = "; ".join( + f"{table}: {', '.join(code.value for code in codes)}" + for table, codes in report.items() + ) + return ( + ValidationIssue( + path + ".connectivity", + "CONVENTION", + "Mesh must follow the shared Riley/VTK convention: " + failed, + ), + ) + + +def verify_scene_3d( + meshes: Sequence[Mesh3D], + cameras: Sequence[Camera], + lights: Sequence[Light] | None, +) -> tuple[ValidationIssue, ...]: + """Check common three dimensional scene constraints cheaply. + + Parameters + ---------- + meshes : Sequence[Mesh3D] + Surface meshes in the requested scene. + cameras : Sequence[Camera] + Cameras in the requested scene. + lights : Sequence[Light] or None + Explicit scene lights, if any. + + Returns + ------- + tuple[ValidationIssue, ...] + Every detected issue. An empty tuple denotes a valid common scene. + + Notes + ----- + This routine performs no scene construction, image allocation, or backend + calculation. Backends must add their own capability checks. + """ + issues: list[ValidationIssue] = [] + + if not meshes: + issues.append( + ValidationIssue( + "meshes", + "EMPTY", + "At least one mesh is required.", + ) + ) + + if not cameras: + issues.append( + ValidationIssue( + "cameras", + "EMPTY", + "At least one camera is required.", + ) + ) + + for mesh_index, mesh in enumerate(meshes): + path = f"meshes[{mesh_index}]" + + if mesh.coords.ndim != 2 or mesh.coords.shape[1] != 3: + issues.append( + ValidationIssue( + path + ".coords", + "SHAPE", + "Expected shape (nodes, 3).", + ) + ) + elif not np.isfinite(mesh.coords).all(): + issues.append( + ValidationIssue( + path + ".coords", + "FINITE", + "Values must be finite.", + ) + ) + + if mesh.connectivity.ndim != 2 or mesh.connectivity.shape[0] == 0: + issues.append( + ValidationIssue( + path + ".connectivity", + "SHAPE", + "Expected a non-empty rank-2 array.", + ) + ) + elif ( + mesh.connectivity.shape[1] != _NODES_PER_ELEMENT[mesh.element_type] + ): + issues.append( + ValidationIssue( + path + ".connectivity", + "TOPOLOGY", + "Node count does not match the element type.", + ) + ) + elif mesh.coords.ndim == 2 and np.any( + mesh.connectivity >= len(mesh.coords) + ): + issues.append( + ValidationIssue( + path + ".connectivity", + "INDEX", + "Indices exceed node count.", + ) + ) + else: + issues.extend( + mesh_convention_issues( + mesh.coords, + mesh.connectivity, + path, + ) + ) + + if mesh.displacements is not None: + expected = (mesh.displacements.shape[0], mesh.coords.shape[0], 3) + + if mesh.displacements.shape != expected: + issues.append( + ValidationIssue( + path + ".displacements", + "SHAPE", + "Expected shape (frames, nodes, 3).", + ) + ) + elif not np.isfinite(mesh.displacements).all(): + issues.append( + ValidationIssue( + path + ".displacements", + "FINITE", + "Values must be finite.", + ) + ) + + for camera_index, camera in enumerate(cameras): + path = f"cameras[{camera_index}]" + + if camera.pixels_num.shape != (2,) or np.any(camera.pixels_num <= 0): + issues.append( + ValidationIssue( + path + ".pixels_num", + "VALUE", + "Expected two positive counts.", + ) + ) + + if camera.pixels_size.shape != (2,) or np.any( + camera.pixels_size <= 0.0 + ): + issues.append( + ValidationIssue( + path + ".pixels_size", + "VALUE", + "Expected two positive sizes.", + ) + ) + + if camera.focal_length <= 0.0 or camera.subsample <= 0: + issues.append( + ValidationIssue( + path, + "VALUE", + "Focal length and sub-sampling must be positive.", + ) + ) + + vectors = ( + ("pos_world", camera.pos_world), + ("roi_cent_world", camera.roi_cent_world), + ) + for value_name, value in vectors: + if value.shape != (3,) or not np.isfinite(value).all(): + issues.append( + ValidationIssue( + path + "." + value_name, + "VALUE", + "Expected three finite values.", + ) + ) + + if lights is not None: + for light_index, light in enumerate(lights): + if not np.isfinite(light.intensity) or light.intensity < 0.0: + issues.append( + ValidationIssue( + f"lights[{light_index}].intensity", + "VALUE", + "Expected a non-negative finite value.", + ) + ) + if ( + not np.isfinite(light.shadow_soft_size) + or light.shadow_soft_size < 0.0 + ): + issues.append( + ValidationIssue( + f"lights[{light_index}].shadow_soft_size", + "VALUE", + "Expected a non-negative finite value.", + ) + ) + + return tuple(issues) + + +def raise_if_issues(issues: tuple[ValidationIssue, ...]) -> None: + """Raise an aggregated error when validation detected issues. + + Parameters + ---------- + issues : tuple[ValidationIssue, ...] + Issues returned by a verification routine. + + Raises + ------ + RenderInputError + If ``issues`` is not empty. + """ + if issues: + raise RenderInputError(issues) + + +__all__ = ["mesh_convention_issues", "raise_if_issues", "verify_scene_3d"] diff --git a/src/pyvale/sensorsim/__init__.py b/src/pyvale/sensorsim/__init__.py index e868f3ff9..c52079994 100644 --- a/src/pyvale/sensorsim/__init__.py +++ b/src/pyvale/sensorsim/__init__.py @@ -41,18 +41,7 @@ from .sensordata import * from .camera import * -from .cameradata import * -from .cameradata2d import * from .cameratools import * -from .camerastereo import * - -from .rastercy import * - -from .renderscene import * -from .rendermesh import * -from .rasternp import * - -from .imagedef2d import * from .errorintegrator import * from .errorrand import * @@ -82,5 +71,3 @@ from .enums import * from .exceptions import * - - diff --git a/src/pyvale/sensorsim/camera.py b/src/pyvale/sensorsim/camera.py index 8063dcb53..0385d1fee 100644 --- a/src/pyvale/sensorsim/camera.py +++ b/src/pyvale/sensorsim/camera.py @@ -14,7 +14,7 @@ from pyvale.sensorsim.errorintegrator import ErrIntegrator from pyvale.sensorsim.sensordescriptor import SensorDescriptor from pyvale.sensorsim.fieldsampler import sample_field_with_sensor_data -from pyvale.sensorsim.cameradata2d import CameraData2D +from pyvale.render.camera import Camera from pyvale.sensorsim.cameratools import CameraTools @@ -24,7 +24,7 @@ class CameraBasic2D(ISensorArray): "_sensor_data","_truth","_measurements") def __init__(self, - cam_data: CameraData2D, + cam_data: Camera, field: IField, descriptor: SensorDescriptor | None = None, ) -> None: @@ -37,7 +37,9 @@ def __init__(self, if descriptor is not None: self._descriptor = descriptor - self._sensor_data = CameraTools.build_sensor_data_from_camera_2d(self._cam_data) + self._sensor_data = ( + CameraTools.build_sensor_data_from_camera_2d(self._cam_data) + ) self._truth = None self._measurements = None @@ -144,4 +146,3 @@ def get_measurement_images(self) -> np.ndarray: return np.reshape(self._measurements,image_shape) - diff --git a/src/pyvale/sensorsim/cameradata.py b/src/pyvale/sensorsim/cameradata.py deleted file mode 100644 index c110ec9d7..000000000 --- a/src/pyvale/sensorsim/cameradata.py +++ /dev/null @@ -1,72 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: This module is a feature under developement. -""" - -from dataclasses import dataclass, field -import numpy as np -from scipy.spatial.transform import Rotation - - -@dataclass(slots=True) -class CameraData: - pixels_num: np.ndarray - pixels_size: np.ndarray - - pos_world: np.ndarray - rot_world: Rotation - roi_cent_world: np.ndarray - - focal_length: float | None = 50.0 - sub_samp: int = 2 - - bits: int = 16 - - back_face_removal: bool = True - - k1: float = 0.0 - k2: float = 0.0 - k3: float = 0.0 - p1: float = 0.0 - p2: float = 0.0 - c0: float | None = None - c1: float | None = None - - fstop: float | None = None - - sensor_size: np.ndarray = field(init=False) - image_dims: np.ndarray = field(init=False) - image_dist: float = field(init=False) - - cam_to_world_mat: np.ndarray = field(init=False) - world_to_cam_mat: np.ndarray = field(init=False) - - - def __post_init__(self) -> None: - relative_pos = np.subtract(self.pos_world, self.roi_cent_world) - self.image_dist = np.linalg.norm(relative_pos) - self.sensor_size = self.pixels_num*self.pixels_size - self.image_dims = (self.image_dist - *self.sensor_size/self.focal_length) - - self.cam_to_world_mat = np.zeros((4,4)) - self.cam_to_world_mat[0:3,0:3] = self.rot_world.as_matrix() - self.cam_to_world_mat[-1,-1] = 1.0 - self.cam_to_world_mat[0:3,-1] = self.pos_world - self.world_to_cam_mat = np.linalg.inv(self.cam_to_world_mat) - - if self.c0 is None: - self.c0 = self.pixels_num[0] / 2 - if self.c1 is None: - self.c1 = self.pixels_num[1] / 2 - - - - - - diff --git a/src/pyvale/sensorsim/cameradata2d.py b/src/pyvale/sensorsim/cameradata2d.py deleted file mode 100644 index 5cdc0648a..000000000 --- a/src/pyvale/sensorsim/cameradata2d.py +++ /dev/null @@ -1,84 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: This module is a feature under developement. -""" - -from dataclasses import dataclass, field -import numpy as np -from scipy.spatial.transform import Rotation - -@dataclass(slots=True) -class CameraData2D: - pixels_count: np.ndarray | None = None - leng_per_px: float = 1.0e-3 - bits: int = 8 - roi_cent_world: np.ndarray | None = None - - background: float = 0.5 - sample_times: np.ndarray | None = None - angle: Rotation | None = None - - subsample: int = 2 - - field_of_view: np.ndarray = field(init=False) - dynamic_range: int = field(init=False) - - world_to_cam: np.ndarray = field(init=False) - cam_to_world: np.ndarray = field(init=False) - - def __post_init__(self) -> None: - - if self.pixels_count is None: - self.pixels_count = np.array((1000,1000),dtype=np.int32) - - if self.roi_cent_world is None: - self.roi_cent_world = np.array((0.0,0.0,0.0),dtype=np.float64) - - self.field_of_view = self.leng_per_px*(self.pixels_count.astype(np.float64)) - self.dynamic_range = 2**self.bits - self.background = self.background*float(self.dynamic_range) - - self.world_to_cam = self.field_of_view/2 - self.roi_cent_world[:-1] - self.cam_to_world = -self.world_to_cam - - -#@dataclass(slots=True) -#class CameraData2D: -# #shape=(n_px_X,n_px_Y) -# num_pixels: np.ndarray - -# # Center location of the region of interest in world coords -# #shape=(3,) as (x,y,z) -# roi_center_world: np.ndarray - -# # Converts pixels to length units to align with global coords -# leng_per_px: float - -# #shape=(n_time_steps,) -# sample_times: np.ndarray | None = None - -# #TODO: this only works for flat surfaces aligned with the axis -# view_axes: tuple[int,int] = (0,1) - -# bits_sensor: int = 16 -# bits_file: int = 16 - -# angle: Rotation | None = None - -# field_of_view_center_local: np.ndarray = field(init=False) -# field_of_view_local: np.ndarray = field(init=False) -# roi_shift_world: np.ndarray = field(init=False) - -# def __post_init__(self) -> None: -# self.field_of_view_local = self.num_pixels*self.leng_per_px -# self.field_of_view_center_local = self.field_of_view_local/2 - -# self.roi_shift_world = np.zeros_like(self.roi_center_world) -# for ii,vv in enumerate(self.view_axes): -# self.roi_shift_world[vv] = self.roi_center_world[vv] - \ -# self.field_of_view_center_local[ii] \ No newline at end of file diff --git a/src/pyvale/sensorsim/camerasensor.py b/src/pyvale/sensorsim/camerasensor.py index 8063dcb53..0385d1fee 100644 --- a/src/pyvale/sensorsim/camerasensor.py +++ b/src/pyvale/sensorsim/camerasensor.py @@ -14,7 +14,7 @@ from pyvale.sensorsim.errorintegrator import ErrIntegrator from pyvale.sensorsim.sensordescriptor import SensorDescriptor from pyvale.sensorsim.fieldsampler import sample_field_with_sensor_data -from pyvale.sensorsim.cameradata2d import CameraData2D +from pyvale.render.camera import Camera from pyvale.sensorsim.cameratools import CameraTools @@ -24,7 +24,7 @@ class CameraBasic2D(ISensorArray): "_sensor_data","_truth","_measurements") def __init__(self, - cam_data: CameraData2D, + cam_data: Camera, field: IField, descriptor: SensorDescriptor | None = None, ) -> None: @@ -37,7 +37,9 @@ def __init__(self, if descriptor is not None: self._descriptor = descriptor - self._sensor_data = CameraTools.build_sensor_data_from_camera_2d(self._cam_data) + self._sensor_data = ( + CameraTools.build_sensor_data_from_camera_2d(self._cam_data) + ) self._truth = None self._measurements = None @@ -144,4 +146,3 @@ def get_measurement_images(self) -> np.ndarray: return np.reshape(self._measurements,image_shape) - diff --git a/src/pyvale/sensorsim/camerastereo.py b/src/pyvale/sensorsim/camerastereo.py deleted file mode 100644 index cbff3e755..000000000 --- a/src/pyvale/sensorsim/camerastereo.py +++ /dev/null @@ -1,217 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: This module is a feature under developement. -""" - -from typing import Self -from pathlib import Path -import numpy as np -import yaml -from scipy.spatial.transform import Rotation -from pyvale.sensorsim.cameradata import CameraData -from pyvale.blender.blenderexceptions import BlenderError - - -class CameraStereo: - __slots__ = ("cam_data_0","cam_data_1","stereo_dist","stereo_rotation") - - def __init__(self, cam_data_0: CameraData, cam_data_1: CameraData) -> None: - self.cam_data_0 = cam_data_0 - self.cam_data_1 = cam_data_1 - - cam0_rot_matrix = Rotation.as_matrix(self.cam_data_0.rot_world) - cam1_rot_matrix = Rotation.as_matrix(self.cam_data_1.rot_world) - (self.stereo_rotation, _) = Rotation.align_vectors(cam0_rot_matrix, - cam1_rot_matrix) - dist = self.cam_data_0.pos_world - self.cam_data_1.pos_world - dist_rot = self.cam_data_0.rot_world.apply(dist) - inverse = self.stereo_rotation.inv().as_quat() - inverse[3] *= -1 - inverse = Rotation.from_quat(inverse) - self.stereo_dist = inverse.apply(dist_rot) - - @classmethod - def from_calibration(cls, - calib_path: Path, - pos_world_0: np.ndarray, - rot_world_0: Rotation, - focal_length: float) -> Self: - """A method to initialise the CameraStereo using a calibration file and - some additional parameters. This creates an instance of the CameraStereo - class from the calibration parameters. - - Parameters - ---------- - calib_path : Path - The path to the calibration file (in yaml format). - pos_world_0 : np.ndarray - The position of camera 0 in world coordinates. - rot_world_0 : Rotation - The rotation of camera 0 in world coordinates. - focal_length : float - The focal length of camera 0. - - Returns - ------- - Self - An instance of the CameraStereo class, given the specified parameters. - """ - calib_params = yaml.safe_load(calib_path.read_text()) - pixels_num_cam0 = np.array([int(calib_params['Cam0_Cx [pixels]']*2), - int(calib_params['Cam0_Cy [pixels]']*2)]) - pixels_num_cam1 = np.array([int(calib_params['Cam1_Cx [pixels]']*2), - int(calib_params['Cam1_Cy [pixels]']*2)]) - pixels_size = focal_length / calib_params["Cam0_Fx [pixels]"] - stereo_rotation = Rotation.from_euler("xyz", ([calib_params['Theta [deg]'], - calib_params['Phi [deg]'], - calib_params['Psi [deg]']]), degrees=True) - stereo_dist = np.array([calib_params["Tx [mm]"], - calib_params["Ty [mm]"], - calib_params["Tz [mm]"]]) - - rot_world_1 = stereo_rotation * rot_world_0 - - inverse = stereo_rotation.inv().as_quat() - inverse[3] *= -1 - inverse = Rotation.from_quat(inverse) - - dist_rot = inverse.inv().apply(stereo_dist) - dist = rot_world_0.inv().apply(dist_rot) - pos_world_1 = pos_world_0 - dist - - cam_data_0 = CameraData(pixels_num=pixels_num_cam0, - pixels_size=np.array([pixels_size, pixels_size]), - pos_world=pos_world_0, - rot_world=rot_world_0, - roi_cent_world=np.array([0, 0, 0]), - focal_length=focal_length) - cam_data_1 = CameraData(pixels_num=pixels_num_cam1, - pixels_size=np.array([pixels_size, pixels_size]), - pos_world=pos_world_1, - rot_world=rot_world_1, - roi_cent_world=np.array([0, 0, 0]), - focal_length=focal_length) - camera_stereo = cls(cam_data_0, cam_data_1) - - return camera_stereo - - def save_calibration(self, base_dir: Path) -> None: - """A method to save a calibration file of the stereo system as a yaml. - This is so that the file can easily be read into python, but is also - user-readable. - - Parameters - ---------- - base_dir : Path - The base directory to which all files should be saved. The - calibration file will be saved in a sub-directory named "calibration" - within this directory. - - Raises - ------ - BlenderError - "The specified save directory does not exist" - """ - stereo_rotation = self.stereo_rotation.as_euler("xyz", degrees=True) - calib_params = { - "Cam0_Fx [pixels]": float(self.cam_data_0.focal_length / - self.cam_data_0.pixels_size[0]), - "Cam0_Fy [pixels]": float(self.cam_data_0.focal_length / - self.cam_data_0.pixels_size[1]), - "Cam0_Fs [pixels]": 0, - "Cam0_Kappa 1": self.cam_data_0.k1, - "Cam0_Kappa 2": self.cam_data_0.k2, - "Cam0_Kappa 3": self.cam_data_0.k3, - "Cam0_P1": self.cam_data_0.p1, - "Cam0_P2": self.cam_data_0.p2, - "Cam0_Cx [pixels]": float(self.cam_data_0.c0), - "Cam0_Cy [pixels]": float(self.cam_data_0.c1), - "Cam1_Fx [pixels]": float(self.cam_data_1.focal_length / - self.cam_data_1.pixels_size[0]), - "Cam1_Fy [pixels]": float(self.cam_data_1.focal_length / - self.cam_data_1.pixels_size[1]), - "Cam1_Fs [pixels]": 0, - "Cam1_Kappa 1": self.cam_data_1.k1, - "Cam1_Kappa 2": self.cam_data_1.k2, - "Cam1_Kappa 3": self.cam_data_1.k3, - "Cam1_P1": self.cam_data_1.p1, - "Cam1_P2": self.cam_data_1.p2, - "Cam1_Cx [pixels]": float(self.cam_data_1.c0), - "Cam1_Cy [pixels]": float(self.cam_data_1.c1), - "Tx [mm]": float(self.stereo_dist[0]), - "Ty [mm]": float(self.stereo_dist[1]), - "Tz [mm]": float(self.stereo_dist[2]), - "Theta [deg]": float(stereo_rotation[0]), - "Phi [deg]": float(stereo_rotation[1]), - "Psi [deg]": float(stereo_rotation[2]) - } - if not base_dir.is_dir(): - raise BlenderError("The specified save directory does not exist") - - save_dir = base_dir / "calibration" - if not save_dir.is_dir(): - save_dir.mkdir(parents=True, exist_ok=True) - - filepath = str(save_dir / "calibration.yaml") - calib_file = open(filepath, "w") - yaml.safe_dump(calib_params, calib_file) - calib_file.close() - print("Calibration file saved to:", (save_dir / "calibration.yaml")) - - def save_calibration_mid(self, base_dir: Path) -> None: - """A method to save a calibration file of the stereo system in a MatchID - accepted format. - - Parameters - ---------- - base_dir : Path - The base directory to which all files should be saved. The - calibration file will be saved in a sub-directory named "calibration" - within this directory. - - Raises - ------ - BlenderError - "The specified save directory does not exist" - """ - if not base_dir.is_dir(): - raise BlenderError("The specified save directory does not exist") - - save_dir = base_dir / "calibration" - if not save_dir.is_dir(): - save_dir.mkdir(parents=True, exist_ok=True) - - filepath = str(save_dir / "calibration.caldat") - with open(filepath, "w") as file: - file.write(f'Cam0_Fx [pixels]; {self.cam_data_0.focal_length/ self.cam_data_0.pixels_size[0]}\n') - file.write(f'Cam0_Fy [pixels]; {self.cam_data_0.focal_length/ self.cam_data_0.pixels_size[1]}\n') - file.write("Cam0_Fs [pixels];0\n") - file.write(f'Cam0_Kappa 1;{self.cam_data_0.k1}\n') - file.write(f'Cam0_Kappa 2;{self.cam_data_0.k2}\n') - file.write(f'Cam0_Kappa 3;{self.cam_data_0.k3}\n') - file.write(f'Cam0_P1;{self.cam_data_0.p1}\n') - file.write(f'Cam0_P2;{self.cam_data_0.p2}\n') - file.write(f'Cam0_Cx [pixels];{self.cam_data_0.c0}\n') - file.write(f'Cam0_Cy [pixels];{self.cam_data_0.c1}\n') - file.write(f'Cam1_Fx [pixels]; {self.cam_data_1.focal_length/ self.cam_data_1.pixels_size[0]}\n') - file.write(f'Cam1_Fy [pixels]; {self.cam_data_1.focal_length/ self.cam_data_1.pixels_size[1]}\n') - file.write("Cam1_Fs [pixels];0\n") - file.write(f'Cam1_Kappa 1;{self.cam_data_1.k1}\n') - file.write(f'Cam1_Kappa 2;{self.cam_data_1.k2}\n') - file.write(f'Cam1_Kappa 3;{self.cam_data_1.k3}\n') - file.write(f'Cam1_P1;{self.cam_data_1.p1}\n') - file.write(f'Cam1_P2;{self.cam_data_1.p2}\n') - file.write(f'Cam1_Cx [pixels];{self.cam_data_1.c0}\n') - file.write(f'Cam1_Cy [pixels];{self.cam_data_1.c1}\n') - file.write(f"Tx [mm];{self.stereo_dist[0]}\n") - file.write(f"Ty [mm];{self.stereo_dist[1]}\n") - file.write(f"Tz [mm];{self.stereo_dist[2]}\n") - stereo_rotation = self.stereo_rotation.as_euler("xyz", degrees=True) - file.write(f"Theta [deg];{stereo_rotation[0]}\n") - file.write(f"Phi [deg];{stereo_rotation[1]}\n") - file.write(f"Psi [deg];{stereo_rotation[2]}") diff --git a/src/pyvale/sensorsim/cameratools.py b/src/pyvale/sensorsim/cameratools.py index df7fb119b..e885c382c 100644 --- a/src/pyvale/sensorsim/cameratools.py +++ b/src/pyvale/sensorsim/cameratools.py @@ -12,14 +12,11 @@ from pathlib import Path import numpy as np from scipy.signal import convolve2d -import copy from scipy.spatial.transform import Rotation import matplotlib.image as mplim from PIL import Image -from pyvale.sensorsim.cameradata2d import CameraData2D from pyvale.sensorsim.sensordata import SensorData -from pyvale.sensorsim.cameradata import CameraData -from pyvale.sensorsim.camerastereo import CameraStereo +from pyvale.render.camera import Camera class CameraTools: @@ -175,7 +172,7 @@ def average_subpixel_image(subpx_image: np.ndarray, return avg_image @staticmethod - def build_sensor_data_from_camera_2d(cam_data: CameraData2D) -> SensorData: + def build_sensor_data_from_camera_2d(cam_data: Camera) -> SensorData: pixels_vectorised = CameraTools.vectorise_pixel_grid_leng(cam_data.field_of_view, cam_data.leng_per_px) @@ -290,7 +287,7 @@ def pos_fill_frame_all(coords_world_list: list[np.ndarray], # Blender camera tools @staticmethod - def calculate_FOV(cam_data: CameraData) -> tuple[float, float]: + def calculate_FOV(cam_data: Camera) -> tuple[float, float]: """A method to calulate the camera's field of view in mm Parameters @@ -312,7 +309,7 @@ def calculate_FOV(cam_data: CameraData) -> tuple[float, float]: return FOV_mm @staticmethod - def blender_FOV(cam_data: CameraData) -> tuple[float, float]: + def blender_FOV(cam_data: Camera) -> tuple[float, float]: """A method to calculate the camera's field of view in mm using Blender's method. This method differs due to one simplification. @@ -332,7 +329,7 @@ def blender_FOV(cam_data: CameraData) -> tuple[float, float]: return FOV_blender @staticmethod - def calculate_mm_px_resolution(cam_data: CameraData) -> float: + def calculate_mm_px_resolution(cam_data: Camera) -> float: """Function to calculate the mm/px resolution of a camera Parameters @@ -378,7 +375,7 @@ def focal_length_from_resolution(pixels_size: np.ndarray, def blender_camera_from_resolution(pixels_num: np.ndarray, pixels_size: np.ndarray, working_dist: float, - resolution: float) -> CameraData: + resolution: float) -> Camera: """A convenience function to create a camera object in Blender from its pixels, the pixel size, the working distance and desired resolution. @@ -400,85 +397,10 @@ def blender_camera_from_resolution(pixels_num: np.ndarray, """ focal_length = CameraTools.focal_length_from_resolution(pixels_size, working_dist, resolution) - cam_data = CameraData(pixels_num=pixels_num, + cam_data = Camera(pixels_num=pixels_num, pixels_size=pixels_size, pos_world=(0, 0, working_dist), rot_world=Rotation.from_euler("xyz", [0, 0, 0]), roi_cent_world=(0, 0, 0), focal_length=focal_length) return cam_data - - @staticmethod - def symmetric_stereo_cameras(cam_data_0: CameraData, - stereo_angle:float) -> CameraStereo: - """A convenience function to set up a symmetric stereo camera system, given - an initial CameraData dataclass and a stereo angle. This assumes the basic - camera parameters are the same. - - Parameters - ---------- - cam_data_0 : CameraData - A dataclass containing the camera parameters for a single camera, which - will be camera 0. - stereo_angle : float - The stereo angle between the two cameras. - - Returns - ------- - CameraStereo - An instance of the CameraStereo class. This class contains - information about each of the cameras, as well as the extrinsic - parameters between them. - """ - cam_data_1 = copy.deepcopy(cam_data_0) - base = 2 * cam_data_0.pos_world[2] * np.tan(np.radians(stereo_angle) / 2) - - cam_data_0.pos_world[0] -= base / 2 - cam_data_1.pos_world[0] += base / 2 - - cam_0_rot = (0, -np.radians(stereo_angle / 2), 0) - cam_0_rot = Rotation.from_euler("xyz", cam_0_rot, degrees=False) - cam_data_0.rot_world = cam_0_rot - - cam_1_rot = (0, np.radians(stereo_angle / 2), 0) - cam_1_rot = Rotation.from_euler("xyz", cam_1_rot, degrees=False) - cam_data_1.rot_world = cam_1_rot - - stereo_system = CameraStereo(cam_data_0, cam_data_1) - - return stereo_system - - @staticmethod - def faceon_stereo_cameras(cam_data_0: CameraData, - stereo_angle: float) -> CameraStereo: - # TODO: Correct docstring - """A convenience function to set up a face-on stereo camera system, given - an initial CameraData dataclass and a stereo angle. This assumes the basic - camera parameters are the same. - - Parameters - ---------- - cam_data_0 : CameraData - A dataclass containing the camera parameters for a single camera, which - will be camera 0. - stereo_angle : float - The stereo angle between the two cameras. - - Returns - ------- - CameraStereo - An instance of the CameraStereo class. This class contains - information about each of the cameras, as well as the extrinsic - parameters between them. - """ - cam_data_1 = copy.deepcopy(cam_data_0) - base = cam_data_0.pos_world[2] * np.tan(np.radians(stereo_angle)) - cam_data_1.pos_world[0] += base - - rotation_angle = (0, np.radians(stereo_angle), 0) - rotation_angle = Rotation.from_euler("xyz", rotation_angle, degrees=False) - cam_data_1.rot_world = rotation_angle - - stereo_system = CameraStereo(cam_data_0, cam_data_1) - - return stereo_system \ No newline at end of file diff --git a/src/pyvale/sensorsim/cython/rastercyth.c b/src/pyvale/sensorsim/cython/rastercyth.c deleted file mode 100644 index 6679b4997..000000000 --- a/src/pyvale/sensorsim/cython/rastercyth.c +++ /dev/null @@ -1,32404 +0,0 @@ -/* Generated by Cython 3.2.1 */ - -/* BEGIN: Cython Metadata -{ - "distutils": { - "depends": [], - "extra_compile_args": [ - "-fopenmp" - ], - "extra_link_args": [ - "-fopenmp" - ], - "include_dirs": [ - "/tmp/pip-build-env-enic_vzl/overlay/lib/python3.11/site-packages/numpy/core/include" - ], - "name": "pyvale.sensorsim.cython.rastercyth", - "sources": [ - "src/pyvale/sensorsim/cython/rastercyth.py" - ] - }, - "module_name": "pyvale.sensorsim.cython.rastercyth" -} -END: Cython Metadata */ - -#ifndef PY_SSIZE_T_CLEAN -#define PY_SSIZE_T_CLEAN -#endif /* PY_SSIZE_T_CLEAN */ -/* InitLimitedAPI */ -#if defined(Py_LIMITED_API) - #if !defined(CYTHON_LIMITED_API) - #define CYTHON_LIMITED_API 1 - #endif -#elif defined(CYTHON_LIMITED_API) - #ifdef _MSC_VER - #pragma message ("Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead.") - #else - #warning Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead. - #endif -#endif - -#include "Python.h" -#ifndef Py_PYTHON_H - #error Python headers needed to compile C extensions, please install development version of Python. -#elif PY_VERSION_HEX < 0x03080000 - #error Cython requires Python 3.8+. -#else -#define __PYX_ABI_VERSION "3_2_1" -#define CYTHON_HEX_VERSION 0x030201F0 -#define CYTHON_FUTURE_DIVISION 1 -/* CModulePreamble */ -#include -#ifndef offsetof - #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) -#endif -#if !defined(_WIN32) && !defined(WIN32) && !defined(MS_WINDOWS) - #ifndef __stdcall - #define __stdcall - #endif - #ifndef __cdecl - #define __cdecl - #endif - #ifndef __fastcall - #define __fastcall - #endif -#endif -#ifndef DL_IMPORT - #define DL_IMPORT(t) t -#endif -#ifndef DL_EXPORT - #define DL_EXPORT(t) t -#endif -#define __PYX_COMMA , -#ifndef PY_LONG_LONG - #define PY_LONG_LONG LONG_LONG -#endif -#ifndef Py_HUGE_VAL - #define Py_HUGE_VAL HUGE_VAL -#endif -#define __PYX_LIMITED_VERSION_HEX PY_VERSION_HEX -#if defined(GRAALVM_PYTHON) - /* For very preliminary testing purposes. Most variables are set the same as PyPy. - The existence of this section does not imply that anything works or is even tested */ - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #define CYTHON_COMPILING_IN_LIMITED_API 0 - #define CYTHON_COMPILING_IN_GRAAL 1 - #define CYTHON_COMPILING_IN_CPYTHON_FREETHREADING 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_TYPE_SPECS - #define CYTHON_USE_TYPE_SPECS 0 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - #define CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS 0 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_ASSUME_SAFE_SIZE - #define CYTHON_ASSUME_SAFE_SIZE 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_GIL - #define CYTHON_FAST_GIL 0 - #undef CYTHON_METH_FASTCALL - #define CYTHON_METH_FASTCALL 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #ifndef CYTHON_PEP487_INIT_SUBCLASS - #define CYTHON_PEP487_INIT_SUBCLASS 1 - #endif - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 1 - #undef CYTHON_USE_MODULE_STATE - #define CYTHON_USE_MODULE_STATE 0 - #undef CYTHON_USE_SYS_MONITORING - #define CYTHON_USE_SYS_MONITORING 0 - #undef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #undef CYTHON_USE_AM_SEND - #define CYTHON_USE_AM_SEND 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 1 - #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC - #define CYTHON_UPDATE_DESCRIPTOR_DOC 0 - #endif - #undef CYTHON_USE_FREELISTS - #define CYTHON_USE_FREELISTS 0 - #undef CYTHON_IMMORTAL_CONSTANTS - #define CYTHON_IMMORTAL_CONSTANTS 0 -#elif defined(PYPY_VERSION) - #define CYTHON_COMPILING_IN_PYPY 1 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #define CYTHON_COMPILING_IN_LIMITED_API 0 - #define CYTHON_COMPILING_IN_GRAAL 0 - #define CYTHON_COMPILING_IN_CPYTHON_FREETHREADING 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #ifndef CYTHON_USE_TYPE_SPECS - #define CYTHON_USE_TYPE_SPECS 0 - #endif - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #undef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 1 - #undef CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - #define CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS 1 - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #ifndef CYTHON_ASSUME_SAFE_SIZE - #define CYTHON_ASSUME_SAFE_SIZE 1 - #endif - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_GIL - #define CYTHON_FAST_GIL 0 - #undef CYTHON_METH_FASTCALL - #define CYTHON_METH_FASTCALL 0 - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #ifndef CYTHON_PEP487_INIT_SUBCLASS - #define CYTHON_PEP487_INIT_SUBCLASS 1 - #endif - #if PY_VERSION_HEX < 0x03090000 - #undef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 0 - #elif !defined(CYTHON_PEP489_MULTI_PHASE_INIT) - #define CYTHON_PEP489_MULTI_PHASE_INIT 1 - #endif - #undef CYTHON_USE_MODULE_STATE - #define CYTHON_USE_MODULE_STATE 0 - #undef CYTHON_USE_SYS_MONITORING - #define CYTHON_USE_SYS_MONITORING 0 - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE (PYPY_VERSION_NUM >= 0x07030C00) - #endif - #undef CYTHON_USE_AM_SEND - #define CYTHON_USE_AM_SEND 0 - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 - #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC - #define CYTHON_UPDATE_DESCRIPTOR_DOC (PYPY_VERSION_NUM >= 0x07031100) - #endif - #undef CYTHON_USE_FREELISTS - #define CYTHON_USE_FREELISTS 0 - #undef CYTHON_IMMORTAL_CONSTANTS - #define CYTHON_IMMORTAL_CONSTANTS 0 -#elif defined(CYTHON_LIMITED_API) - #ifdef Py_LIMITED_API - #undef __PYX_LIMITED_VERSION_HEX - #define __PYX_LIMITED_VERSION_HEX Py_LIMITED_API - #endif - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_CPYTHON 0 - #define CYTHON_COMPILING_IN_LIMITED_API 1 - #define CYTHON_COMPILING_IN_GRAAL 0 - #define CYTHON_COMPILING_IN_CPYTHON_FREETHREADING 0 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 0 - #undef CYTHON_USE_TYPE_SPECS - #define CYTHON_USE_TYPE_SPECS 1 - #undef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 0 - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #undef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 0 - #ifndef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #endif - #undef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 0 - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #ifndef CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - #define CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS 0 - #endif - #undef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 0 - #undef CYTHON_ASSUME_SAFE_SIZE - #define CYTHON_ASSUME_SAFE_SIZE 0 - #undef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 0 - #undef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 0 - #undef CYTHON_FAST_GIL - #define CYTHON_FAST_GIL 0 - #undef CYTHON_METH_FASTCALL - #define CYTHON_METH_FASTCALL (__PYX_LIMITED_VERSION_HEX >= 0x030C0000) - #undef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 0 - #ifndef CYTHON_PEP487_INIT_SUBCLASS - #define CYTHON_PEP487_INIT_SUBCLASS 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 1 - #endif - #ifndef CYTHON_USE_MODULE_STATE - #define CYTHON_USE_MODULE_STATE 0 - #endif - #undef CYTHON_USE_SYS_MONITORING - #define CYTHON_USE_SYS_MONITORING 0 - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 0 - #endif - #ifndef CYTHON_USE_AM_SEND - #define CYTHON_USE_AM_SEND (__PYX_LIMITED_VERSION_HEX >= 0x030A0000) - #endif - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #undef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 0 - #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC - #define CYTHON_UPDATE_DESCRIPTOR_DOC 0 - #endif - #ifndef CYTHON_USE_FREELISTS - #define CYTHON_USE_FREELISTS 1 - #endif - #undef CYTHON_IMMORTAL_CONSTANTS - #define CYTHON_IMMORTAL_CONSTANTS 0 -#else - #define CYTHON_COMPILING_IN_PYPY 0 - #define CYTHON_COMPILING_IN_CPYTHON 1 - #define CYTHON_COMPILING_IN_LIMITED_API 0 - #define CYTHON_COMPILING_IN_GRAAL 0 - #ifdef Py_GIL_DISABLED - #define CYTHON_COMPILING_IN_CPYTHON_FREETHREADING 1 - #else - #define CYTHON_COMPILING_IN_CPYTHON_FREETHREADING 0 - #endif - #if PY_VERSION_HEX < 0x030A0000 - #undef CYTHON_USE_TYPE_SLOTS - #define CYTHON_USE_TYPE_SLOTS 1 - #elif !defined(CYTHON_USE_TYPE_SLOTS) - #define CYTHON_USE_TYPE_SLOTS 1 - #endif - #ifndef CYTHON_USE_TYPE_SPECS - #define CYTHON_USE_TYPE_SPECS 0 - #endif - #ifndef CYTHON_USE_PYTYPE_LOOKUP - #define CYTHON_USE_PYTYPE_LOOKUP 1 - #endif - #ifndef CYTHON_USE_PYLONG_INTERNALS - #define CYTHON_USE_PYLONG_INTERNALS 1 - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - #undef CYTHON_USE_PYLIST_INTERNALS - #define CYTHON_USE_PYLIST_INTERNALS 0 - #elif !defined(CYTHON_USE_PYLIST_INTERNALS) - #define CYTHON_USE_PYLIST_INTERNALS 1 - #endif - #ifndef CYTHON_USE_UNICODE_INTERNALS - #define CYTHON_USE_UNICODE_INTERNALS 1 - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING || PY_VERSION_HEX >= 0x030B00A2 - #undef CYTHON_USE_UNICODE_WRITER - #define CYTHON_USE_UNICODE_WRITER 0 - #elif !defined(CYTHON_USE_UNICODE_WRITER) - #define CYTHON_USE_UNICODE_WRITER 1 - #endif - #ifndef CYTHON_AVOID_BORROWED_REFS - #define CYTHON_AVOID_BORROWED_REFS 0 - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - #undef CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - #define CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS 1 - #elif !defined(CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS) - #define CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS 0 - #endif - #ifndef CYTHON_ASSUME_SAFE_MACROS - #define CYTHON_ASSUME_SAFE_MACROS 1 - #endif - #ifndef CYTHON_ASSUME_SAFE_SIZE - #define CYTHON_ASSUME_SAFE_SIZE 1 - #endif - #ifndef CYTHON_UNPACK_METHODS - #define CYTHON_UNPACK_METHODS 1 - #endif - #ifndef CYTHON_FAST_THREAD_STATE - #define CYTHON_FAST_THREAD_STATE 1 - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - #undef CYTHON_FAST_GIL - #define CYTHON_FAST_GIL 0 - #elif !defined(CYTHON_FAST_GIL) - #define CYTHON_FAST_GIL (PY_VERSION_HEX < 0x030C00A6) - #endif - #ifndef CYTHON_METH_FASTCALL - #define CYTHON_METH_FASTCALL 1 - #endif - #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 - #endif - #ifndef CYTHON_PEP487_INIT_SUBCLASS - #define CYTHON_PEP487_INIT_SUBCLASS 1 - #endif - #ifndef CYTHON_PEP489_MULTI_PHASE_INIT - #define CYTHON_PEP489_MULTI_PHASE_INIT 1 - #endif - #ifndef CYTHON_USE_MODULE_STATE - #define CYTHON_USE_MODULE_STATE 0 - #endif - #ifndef CYTHON_USE_SYS_MONITORING - #define CYTHON_USE_SYS_MONITORING (PY_VERSION_HEX >= 0x030d00B1) - #endif - #ifndef CYTHON_USE_TP_FINALIZE - #define CYTHON_USE_TP_FINALIZE 1 - #endif - #ifndef CYTHON_USE_AM_SEND - #define CYTHON_USE_AM_SEND 1 - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - #undef CYTHON_USE_DICT_VERSIONS - #define CYTHON_USE_DICT_VERSIONS 0 - #elif !defined(CYTHON_USE_DICT_VERSIONS) - #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX < 0x030C00A5 && !CYTHON_USE_MODULE_STATE) - #endif - #ifndef CYTHON_USE_EXC_INFO_STACK - #define CYTHON_USE_EXC_INFO_STACK 1 - #endif - #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC - #define CYTHON_UPDATE_DESCRIPTOR_DOC 1 - #endif - #ifndef CYTHON_USE_FREELISTS - #define CYTHON_USE_FREELISTS (!CYTHON_COMPILING_IN_CPYTHON_FREETHREADING) - #endif - #if defined(CYTHON_IMMORTAL_CONSTANTS) && PY_VERSION_HEX < 0x030C0000 - #undef CYTHON_IMMORTAL_CONSTANTS - #define CYTHON_IMMORTAL_CONSTANTS 0 // definitely won't work - #elif !defined(CYTHON_IMMORTAL_CONSTANTS) - #define CYTHON_IMMORTAL_CONSTANTS (PY_VERSION_HEX >= 0x030C0000 && !CYTHON_USE_MODULE_STATE && CYTHON_COMPILING_IN_CPYTHON_FREETHREADING) - #endif -#endif -#ifndef CYTHON_COMPRESS_STRINGS - #define CYTHON_COMPRESS_STRINGS 1 -#endif -#ifndef CYTHON_FAST_PYCCALL -#define CYTHON_FAST_PYCCALL CYTHON_FAST_PYCALL -#endif -#ifndef CYTHON_VECTORCALL -#if CYTHON_COMPILING_IN_LIMITED_API -#define CYTHON_VECTORCALL (__PYX_LIMITED_VERSION_HEX >= 0x030C0000) -#else -#define CYTHON_VECTORCALL (CYTHON_FAST_PYCCALL) -#endif -#endif -#if CYTHON_USE_PYLONG_INTERNALS - #undef SHIFT - #undef BASE - #undef MASK - #ifdef SIZEOF_VOID_P - enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; - #endif -#endif -#ifndef __has_attribute - #define __has_attribute(x) 0 -#endif -#ifndef __has_cpp_attribute - #define __has_cpp_attribute(x) 0 -#endif -#ifndef CYTHON_RESTRICT - #if defined(__GNUC__) - #define CYTHON_RESTRICT __restrict__ - #elif defined(_MSC_VER) && _MSC_VER >= 1400 - #define CYTHON_RESTRICT __restrict - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_RESTRICT restrict - #else - #define CYTHON_RESTRICT - #endif -#endif -#ifndef CYTHON_UNUSED - #if defined(__cplusplus) - /* for clang __has_cpp_attribute(maybe_unused) is true even before C++17 - * but leads to warnings with -pedantic, since it is a C++17 feature */ - #if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L) - #if __has_cpp_attribute(maybe_unused) - #define CYTHON_UNUSED [[maybe_unused]] - #endif - #endif - #endif -#endif -#ifndef CYTHON_UNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) -# define CYTHON_UNUSED __attribute__ ((__unused__)) -# else -# define CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_UNUSED_VAR -# if defined(__cplusplus) - template void CYTHON_UNUSED_VAR( const T& ) { } -# else -# define CYTHON_UNUSED_VAR(x) (void)(x) -# endif -#endif -#ifndef CYTHON_MAYBE_UNUSED_VAR - #define CYTHON_MAYBE_UNUSED_VAR(x) CYTHON_UNUSED_VAR(x) -#endif -#ifndef CYTHON_NCP_UNUSED -# if CYTHON_COMPILING_IN_CPYTHON && !CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -# define CYTHON_NCP_UNUSED -# else -# define CYTHON_NCP_UNUSED CYTHON_UNUSED -# endif -#endif -#ifndef CYTHON_USE_CPP_STD_MOVE - #if defined(__cplusplus) && (\ - __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1600)) - #define CYTHON_USE_CPP_STD_MOVE 1 - #else - #define CYTHON_USE_CPP_STD_MOVE 0 - #endif -#endif -#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) -#include -typedef uintptr_t __pyx_uintptr_t; -#ifndef CYTHON_FALLTHROUGH - #if defined(__cplusplus) - /* for clang __has_cpp_attribute(fallthrough) is true even before C++17 - * but leads to warnings with -pedantic, since it is a C++17 feature */ - #if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201703L) || __cplusplus >= 201703L) - #if __has_cpp_attribute(fallthrough) - #define CYTHON_FALLTHROUGH [[fallthrough]] - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_cpp_attribute(clang::fallthrough) - #define CYTHON_FALLTHROUGH [[clang::fallthrough]] - #elif __has_cpp_attribute(gnu::fallthrough) - #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] - #endif - #endif - #endif - #ifndef CYTHON_FALLTHROUGH - #if __has_attribute(fallthrough) - #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) - #else - #define CYTHON_FALLTHROUGH - #endif - #endif - #if defined(__clang__) && defined(__apple_build_version__) - #if __apple_build_version__ < 7000000 - #undef CYTHON_FALLTHROUGH - #define CYTHON_FALLTHROUGH - #endif - #endif -#endif -#ifndef Py_UNREACHABLE - #define Py_UNREACHABLE() assert(0); abort() -#endif -#ifdef __cplusplus - template - struct __PYX_IS_UNSIGNED_IMPL {static const bool value = T(0) < T(-1);}; - #define __PYX_IS_UNSIGNED(type) (__PYX_IS_UNSIGNED_IMPL::value) -#else - #define __PYX_IS_UNSIGNED(type) (((type)-1) > 0) -#endif -#if CYTHON_COMPILING_IN_PYPY == 1 - #define __PYX_NEED_TP_PRINT_SLOT (PY_VERSION_HEX < 0x030A0000) -#else - #define __PYX_NEED_TP_PRINT_SLOT (PY_VERSION_HEX < 0x03090000) -#endif -#define __PYX_REINTERPRET_FUNCION(func_pointer, other_pointer) ((func_pointer)(void(*)(void))(other_pointer)) - -/* CInitCode */ -#ifndef CYTHON_INLINE - #if defined(__clang__) - #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) - #elif defined(__GNUC__) - #define CYTHON_INLINE __inline__ - #elif defined(_MSC_VER) - #define CYTHON_INLINE __inline - #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define CYTHON_INLINE inline - #else - #define CYTHON_INLINE - #endif -#endif - -/* PythonCompatibility */ -#define __PYX_BUILD_PY_SSIZE_T "n" -#define CYTHON_FORMAT_SSIZE_T "z" -#define __Pyx_BUILTIN_MODULE_NAME "builtins" -#define __Pyx_DefaultClassType PyType_Type -#if CYTHON_COMPILING_IN_LIMITED_API - #ifndef CO_OPTIMIZED - static int CO_OPTIMIZED; - #endif - #ifndef CO_NEWLOCALS - static int CO_NEWLOCALS; - #endif - #ifndef CO_VARARGS - static int CO_VARARGS; - #endif - #ifndef CO_VARKEYWORDS - static int CO_VARKEYWORDS; - #endif - #ifndef CO_ASYNC_GENERATOR - static int CO_ASYNC_GENERATOR; - #endif - #ifndef CO_GENERATOR - static int CO_GENERATOR; - #endif - #ifndef CO_COROUTINE - static int CO_COROUTINE; - #endif -#else - #ifndef CO_COROUTINE - #define CO_COROUTINE 0x80 - #endif - #ifndef CO_ASYNC_GENERATOR - #define CO_ASYNC_GENERATOR 0x200 - #endif -#endif -static int __Pyx_init_co_variables(void); -#if PY_VERSION_HEX >= 0x030900A4 || defined(Py_IS_TYPE) - #define __Pyx_IS_TYPE(ob, type) Py_IS_TYPE(ob, type) -#else - #define __Pyx_IS_TYPE(ob, type) (((const PyObject*)ob)->ob_type == (type)) -#endif -#if PY_VERSION_HEX >= 0x030A00B1 || defined(Py_Is) - #define __Pyx_Py_Is(x, y) Py_Is(x, y) -#else - #define __Pyx_Py_Is(x, y) ((x) == (y)) -#endif -#if PY_VERSION_HEX >= 0x030A00B1 || defined(Py_IsNone) - #define __Pyx_Py_IsNone(ob) Py_IsNone(ob) -#else - #define __Pyx_Py_IsNone(ob) __Pyx_Py_Is((ob), Py_None) -#endif -#if PY_VERSION_HEX >= 0x030A00B1 || defined(Py_IsTrue) - #define __Pyx_Py_IsTrue(ob) Py_IsTrue(ob) -#else - #define __Pyx_Py_IsTrue(ob) __Pyx_Py_Is((ob), Py_True) -#endif -#if PY_VERSION_HEX >= 0x030A00B1 || defined(Py_IsFalse) - #define __Pyx_Py_IsFalse(ob) Py_IsFalse(ob) -#else - #define __Pyx_Py_IsFalse(ob) __Pyx_Py_Is((ob), Py_False) -#endif -#define __Pyx_NoneAsNull(obj) (__Pyx_Py_IsNone(obj) ? NULL : (obj)) -#if PY_VERSION_HEX >= 0x030900F0 && !CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyObject_GC_IsFinalized(o) PyObject_GC_IsFinalized(o) -#else - #define __Pyx_PyObject_GC_IsFinalized(o) _PyGC_FINALIZED(o) -#endif -#ifndef Py_TPFLAGS_CHECKTYPES - #define Py_TPFLAGS_CHECKTYPES 0 -#endif -#ifndef Py_TPFLAGS_HAVE_INDEX - #define Py_TPFLAGS_HAVE_INDEX 0 -#endif -#ifndef Py_TPFLAGS_HAVE_NEWBUFFER - #define Py_TPFLAGS_HAVE_NEWBUFFER 0 -#endif -#ifndef Py_TPFLAGS_HAVE_FINALIZE - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif -#ifndef Py_TPFLAGS_SEQUENCE - #define Py_TPFLAGS_SEQUENCE 0 -#endif -#ifndef Py_TPFLAGS_MAPPING - #define Py_TPFLAGS_MAPPING 0 -#endif -#ifndef Py_TPFLAGS_IMMUTABLETYPE - #define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8) -#endif -#ifndef Py_TPFLAGS_DISALLOW_INSTANTIATION - #define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7) -#endif -#ifndef METH_STACKLESS - #define METH_STACKLESS 0 -#endif -#ifndef METH_FASTCALL - #ifndef METH_FASTCALL - #define METH_FASTCALL 0x80 - #endif - typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); - typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, - Py_ssize_t nargs, PyObject *kwnames); -#else - #if PY_VERSION_HEX >= 0x030d00A4 - # define __Pyx_PyCFunctionFast PyCFunctionFast - # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords - #else - # define __Pyx_PyCFunctionFast _PyCFunctionFast - # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords - #endif -#endif -#if CYTHON_METH_FASTCALL - #define __Pyx_METH_FASTCALL METH_FASTCALL - #define __Pyx_PyCFunction_FastCall __Pyx_PyCFunctionFast - #define __Pyx_PyCFunction_FastCallWithKeywords __Pyx_PyCFunctionFastWithKeywords -#else - #define __Pyx_METH_FASTCALL METH_VARARGS - #define __Pyx_PyCFunction_FastCall PyCFunction - #define __Pyx_PyCFunction_FastCallWithKeywords PyCFunctionWithKeywords -#endif -#if CYTHON_VECTORCALL - #define __pyx_vectorcallfunc vectorcallfunc - #define __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET PY_VECTORCALL_ARGUMENTS_OFFSET - #define __Pyx_PyVectorcall_NARGS(n) PyVectorcall_NARGS((size_t)(n)) -#else - #define __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET 0 - #define __Pyx_PyVectorcall_NARGS(n) ((Py_ssize_t)(n)) -#endif -#if PY_VERSION_HEX >= 0x030900B1 -#define __Pyx_PyCFunction_CheckExact(func) PyCFunction_CheckExact(func) -#else -#define __Pyx_PyCFunction_CheckExact(func) PyCFunction_Check(func) -#endif -#define __Pyx_CyOrPyCFunction_Check(func) PyCFunction_Check(func) -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_CyOrPyCFunction_GET_FUNCTION(func) (((PyCFunctionObject*)(func))->m_ml->ml_meth) -#elif !CYTHON_COMPILING_IN_LIMITED_API -#define __Pyx_CyOrPyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(func) -#endif -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_CyOrPyCFunction_GET_FLAGS(func) (((PyCFunctionObject*)(func))->m_ml->ml_flags) -static CYTHON_INLINE PyObject* __Pyx_CyOrPyCFunction_GET_SELF(PyObject *func) { - return (__Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_STATIC) ? NULL : ((PyCFunctionObject*)func)->m_self; -} -#endif -static CYTHON_INLINE int __Pyx__IsSameCFunction(PyObject *func, void (*cfunc)(void)) { -#if CYTHON_COMPILING_IN_LIMITED_API - return PyCFunction_Check(func) && PyCFunction_GetFunction(func) == (PyCFunction) cfunc; -#else - return PyCFunction_Check(func) && PyCFunction_GET_FUNCTION(func) == (PyCFunction) cfunc; -#endif -} -#define __Pyx_IsSameCFunction(func, cfunc) __Pyx__IsSameCFunction(func, cfunc) -#if PY_VERSION_HEX < 0x03090000 || (CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000) - #define __Pyx_PyType_FromModuleAndSpec(m, s, b) ((void)m, PyType_FromSpecWithBases(s, b)) - typedef PyObject *(*__Pyx_PyCMethod)(PyObject *, PyTypeObject *, PyObject *const *, size_t, PyObject *); -#else - #define __Pyx_PyType_FromModuleAndSpec(m, s, b) PyType_FromModuleAndSpec(m, s, b) - #define __Pyx_PyCMethod PyCMethod -#endif -#ifndef METH_METHOD - #define METH_METHOD 0x200 -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) - #define PyObject_Malloc(s) PyMem_Malloc(s) - #define PyObject_Free(p) PyMem_Free(p) - #define PyObject_Realloc(p) PyMem_Realloc(p) -#endif -#if CYTHON_COMPILING_IN_LIMITED_API - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) -#elif CYTHON_COMPILING_IN_GRAAL && defined(GRAALPY_VERSION_NUM) && GRAALPY_VERSION_NUM > 0x19000000 - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) GraalPyFrame_SetLineNumber((frame), (lineno)) -#elif CYTHON_COMPILING_IN_GRAAL - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) _PyFrame_SetLineNumber((frame), (lineno)) -#else - #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) - #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) -#endif -#if CYTHON_COMPILING_IN_LIMITED_API - #define __Pyx_PyThreadState_Current PyThreadState_Get() -#elif !CYTHON_FAST_THREAD_STATE - #define __Pyx_PyThreadState_Current PyThreadState_GET() -#elif PY_VERSION_HEX >= 0x030d00A1 - #define __Pyx_PyThreadState_Current PyThreadState_GetUnchecked() -#else - #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() -#endif -#if CYTHON_USE_MODULE_STATE -static CYTHON_INLINE void *__Pyx__PyModule_GetState(PyObject *op) -{ - void *result; - result = PyModule_GetState(op); - if (!result) - Py_FatalError("Couldn't find the module state"); - return result; -} -#define __Pyx_PyModule_GetState(o) (__pyx_mstatetype *)__Pyx__PyModule_GetState(o) -#else -#define __Pyx_PyModule_GetState(op) ((void)op,__pyx_mstate_global) -#endif -#define __Pyx_PyObject_GetSlot(obj, name, func_ctype) __Pyx_PyType_GetSlot(Py_TYPE((PyObject *) obj), name, func_ctype) -#define __Pyx_PyObject_TryGetSlot(obj, name, func_ctype) __Pyx_PyType_TryGetSlot(Py_TYPE(obj), name, func_ctype) -#define __Pyx_PyObject_GetSubSlot(obj, sub, name, func_ctype) __Pyx_PyType_GetSubSlot(Py_TYPE(obj), sub, name, func_ctype) -#define __Pyx_PyObject_TryGetSubSlot(obj, sub, name, func_ctype) __Pyx_PyType_TryGetSubSlot(Py_TYPE(obj), sub, name, func_ctype) -#if CYTHON_USE_TYPE_SLOTS - #define __Pyx_PyType_GetSlot(type, name, func_ctype) ((type)->name) - #define __Pyx_PyType_TryGetSlot(type, name, func_ctype) __Pyx_PyType_GetSlot(type, name, func_ctype) - #define __Pyx_PyType_GetSubSlot(type, sub, name, func_ctype) (((type)->sub) ? ((type)->sub->name) : NULL) - #define __Pyx_PyType_TryGetSubSlot(type, sub, name, func_ctype) __Pyx_PyType_GetSubSlot(type, sub, name, func_ctype) -#else - #define __Pyx_PyType_GetSlot(type, name, func_ctype) ((func_ctype) PyType_GetSlot((type), Py_##name)) - #define __Pyx_PyType_TryGetSlot(type, name, func_ctype)\ - ((__PYX_LIMITED_VERSION_HEX >= 0x030A0000 ||\ - (PyType_GetFlags(type) & Py_TPFLAGS_HEAPTYPE) || __Pyx_get_runtime_version() >= 0x030A0000) ?\ - __Pyx_PyType_GetSlot(type, name, func_ctype) : NULL) - #define __Pyx_PyType_GetSubSlot(obj, sub, name, func_ctype) __Pyx_PyType_GetSlot(obj, name, func_ctype) - #define __Pyx_PyType_TryGetSubSlot(obj, sub, name, func_ctype) __Pyx_PyType_TryGetSlot(obj, name, func_ctype) -#endif -#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) -#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) -#else -#define __Pyx_PyDict_NewPresized(n) PyDict_New() -#endif -#define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) -#define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) -#if CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_UNICODE_INTERNALS -#define __Pyx_PyDict_GetItemStrWithError(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) -static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStr(PyObject *dict, PyObject *name) { - PyObject *res = __Pyx_PyDict_GetItemStrWithError(dict, name); - if (res == NULL) PyErr_Clear(); - return res; -} -#elif !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM >= 0x07020000 -#define __Pyx_PyDict_GetItemStrWithError PyDict_GetItemWithError -#define __Pyx_PyDict_GetItemStr PyDict_GetItem -#else -static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict, PyObject *name) { -#if CYTHON_COMPILING_IN_PYPY - return PyDict_GetItem(dict, name); -#else - PyDictEntry *ep; - PyDictObject *mp = (PyDictObject*) dict; - long hash = ((PyStringObject *) name)->ob_shash; - assert(hash != -1); - ep = (mp->ma_lookup)(mp, name, hash); - if (ep == NULL) { - return NULL; - } - return ep->me_value; -#endif -} -#define __Pyx_PyDict_GetItemStr PyDict_GetItem -#endif -#if CYTHON_USE_TYPE_SLOTS - #define __Pyx_PyType_GetFlags(tp) (((PyTypeObject *)tp)->tp_flags) - #define __Pyx_PyType_HasFeature(type, feature) ((__Pyx_PyType_GetFlags(type) & (feature)) != 0) -#else - #define __Pyx_PyType_GetFlags(tp) (PyType_GetFlags((PyTypeObject *)tp)) - #define __Pyx_PyType_HasFeature(type, feature) PyType_HasFeature(type, feature) -#endif -#define __Pyx_PyObject_GetIterNextFunc(iterator) __Pyx_PyObject_GetSlot(iterator, tp_iternext, iternextfunc) -#if CYTHON_USE_TYPE_SPECS -#define __Pyx_PyHeapTypeObject_GC_Del(obj) {\ - PyTypeObject *type = Py_TYPE((PyObject*)obj);\ - assert(__Pyx_PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE));\ - PyObject_GC_Del(obj);\ - Py_DECREF(type);\ -} -#else -#define __Pyx_PyHeapTypeObject_GC_Del(obj) PyObject_GC_Del(obj) -#endif -#if CYTHON_COMPILING_IN_LIMITED_API - #define __Pyx_PyUnicode_READY(op) (0) - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_ReadChar(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((void)u, 1114111U) - #define __Pyx_PyUnicode_KIND(u) ((void)u, (0)) - #define __Pyx_PyUnicode_DATA(u) ((void*)u) - #define __Pyx_PyUnicode_READ(k, d, i) ((void)k, PyUnicode_ReadChar((PyObject*)(d), i)) - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GetLength(u)) -#else - #if PY_VERSION_HEX >= 0x030C0000 - #define __Pyx_PyUnicode_READY(op) (0) - #else - #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ - 0 : _PyUnicode_Ready((PyObject *)(op))) - #endif - #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) - #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) - #define __Pyx_PyUnicode_KIND(u) ((int)PyUnicode_KIND(u)) - #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) - #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) - #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, (Py_UCS4) ch) - #if PY_VERSION_HEX >= 0x030C0000 - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_LENGTH(u)) - #else - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x03090000 - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : ((PyCompactUnicodeObject *)(u))->wstr_length)) - #else - #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) - #endif - #endif -#endif -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) -#else - #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) - #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ - PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) -#endif -#if CYTHON_COMPILING_IN_PYPY - #if !defined(PyUnicode_DecodeUnicodeEscape) - #define PyUnicode_DecodeUnicodeEscape(s, size, errors) PyUnicode_Decode(s, size, "unicode_escape", errors) - #endif - #if !defined(PyUnicode_Contains) - #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) - #endif - #if !defined(PyByteArray_Check) - #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) - #endif - #if !defined(PyObject_Format) - #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) - #endif -#endif -#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - #define __Pyx_PySequence_ListKeepNew(obj)\ - (likely(PyList_CheckExact(obj) && PyUnstable_Object_IsUniquelyReferenced(obj)) ? __Pyx_NewRef(obj) : PySequence_List(obj)) -#elif CYTHON_COMPILING_IN_CPYTHON - #define __Pyx_PySequence_ListKeepNew(obj)\ - (likely(PyList_CheckExact(obj) && Py_REFCNT(obj) == 1) ? __Pyx_NewRef(obj) : PySequence_List(obj)) -#else - #define __Pyx_PySequence_ListKeepNew(obj) PySequence_List(obj) -#endif -#ifndef PySet_CheckExact - #define PySet_CheckExact(obj) __Pyx_IS_TYPE(obj, &PySet_Type) -#endif -#if PY_VERSION_HEX >= 0x030900A4 - #define __Pyx_SET_REFCNT(obj, refcnt) Py_SET_REFCNT(obj, refcnt) - #define __Pyx_SET_SIZE(obj, size) Py_SET_SIZE(obj, size) -#else - #define __Pyx_SET_REFCNT(obj, refcnt) Py_REFCNT(obj) = (refcnt) - #define __Pyx_SET_SIZE(obj, size) Py_SIZE(obj) = (size) -#endif -enum __Pyx_ReferenceSharing { - __Pyx_ReferenceSharing_DefinitelyUnique, // We created it so we know it's unshared - no need to check - __Pyx_ReferenceSharing_OwnStrongReference, - __Pyx_ReferenceSharing_FunctionArgument, - __Pyx_ReferenceSharing_SharedReference, // Never trust it to be unshared because it's a global or similar -}; -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING && PY_VERSION_HEX >= 0x030E0000 -#define __Pyx_IS_UNIQUELY_REFERENCED(o, sharing)\ - (sharing == __Pyx_ReferenceSharing_DefinitelyUnique ? 1 :\ - (sharing == __Pyx_ReferenceSharing_FunctionArgument ? PyUnstable_Object_IsUniqueReferencedTemporary(o) :\ - (sharing == __Pyx_ReferenceSharing_OwnStrongReference ? PyUnstable_Object_IsUniquelyReferenced(o) : 0))) -#elif (CYTHON_COMPILING_IN_CPYTHON && !CYTHON_COMPILING_IN_CPYTHON_FREETHREADING) || CYTHON_COMPILING_IN_LIMITED_API -#define __Pyx_IS_UNIQUELY_REFERENCED(o, sharing) (((void)sharing), Py_REFCNT(o) == 1) -#else -#define __Pyx_IS_UNIQUELY_REFERENCED(o, sharing) (((void)o), ((void)sharing), 0) -#endif -#if CYTHON_AVOID_BORROWED_REFS || CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - #if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - #define __Pyx_PyList_GetItemRef(o, i) PyList_GetItemRef(o, i) - #elif CYTHON_COMPILING_IN_LIMITED_API || !CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PyList_GetItemRef(o, i) (likely((i) >= 0) ? PySequence_GetItem(o, i) : (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) - #else - #define __Pyx_PyList_GetItemRef(o, i) PySequence_ITEM(o, i) - #endif -#elif CYTHON_COMPILING_IN_LIMITED_API || !CYTHON_ASSUME_SAFE_MACROS - #if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - #define __Pyx_PyList_GetItemRef(o, i) PyList_GetItemRef(o, i) - #else - #define __Pyx_PyList_GetItemRef(o, i) __Pyx_XNewRef(PyList_GetItem(o, i)) - #endif -#else - #define __Pyx_PyList_GetItemRef(o, i) __Pyx_NewRef(PyList_GET_ITEM(o, i)) -#endif -#if CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS && !CYTHON_COMPILING_IN_LIMITED_API && CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PyList_GetItemRefFast(o, i, unsafe_shared) (__Pyx_IS_UNIQUELY_REFERENCED(o, unsafe_shared) ?\ - __Pyx_NewRef(PyList_GET_ITEM(o, i)) : __Pyx_PyList_GetItemRef(o, i)) -#else - #define __Pyx_PyList_GetItemRefFast(o, i, unsafe_shared) __Pyx_PyList_GetItemRef(o, i) -#endif -#if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 -#define __Pyx_PyDict_GetItemRef(dict, key, result) PyDict_GetItemRef(dict, key, result) -#elif CYTHON_AVOID_BORROWED_REFS || CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS -static CYTHON_INLINE int __Pyx_PyDict_GetItemRef(PyObject *dict, PyObject *key, PyObject **result) { - *result = PyObject_GetItem(dict, key); - if (*result == NULL) { - if (PyErr_ExceptionMatches(PyExc_KeyError)) { - PyErr_Clear(); - return 0; - } - return -1; - } - return 1; -} -#else -static CYTHON_INLINE int __Pyx_PyDict_GetItemRef(PyObject *dict, PyObject *key, PyObject **result) { - *result = PyDict_GetItemWithError(dict, key); - if (*result == NULL) { - return PyErr_Occurred() ? -1 : 0; - } - Py_INCREF(*result); - return 1; -} -#endif -#if defined(CYTHON_DEBUG_VISIT_CONST) && CYTHON_DEBUG_VISIT_CONST - #define __Pyx_VISIT_CONST(obj) Py_VISIT(obj) -#else - #define __Pyx_VISIT_CONST(obj) -#endif -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PySequence_ITEM(o, i) PySequence_ITEM(o, i) - #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) - #define __Pyx_PyTuple_SET_ITEM(o, i, v) (PyTuple_SET_ITEM(o, i, v), (0)) - #define __Pyx_PyTuple_GET_ITEM(o, i) PyTuple_GET_ITEM(o, i) - #define __Pyx_PyList_SET_ITEM(o, i, v) (PyList_SET_ITEM(o, i, v), (0)) - #define __Pyx_PyList_GET_ITEM(o, i) PyList_GET_ITEM(o, i) -#else - #define __Pyx_PySequence_ITEM(o, i) PySequence_GetItem(o, i) - #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) - #define __Pyx_PyTuple_SET_ITEM(o, i, v) PyTuple_SetItem(o, i, v) - #define __Pyx_PyTuple_GET_ITEM(o, i) PyTuple_GetItem(o, i) - #define __Pyx_PyList_SET_ITEM(o, i, v) PyList_SetItem(o, i, v) - #define __Pyx_PyList_GET_ITEM(o, i) PyList_GetItem(o, i) -#endif -#if CYTHON_ASSUME_SAFE_SIZE - #define __Pyx_PyTuple_GET_SIZE(o) PyTuple_GET_SIZE(o) - #define __Pyx_PyList_GET_SIZE(o) PyList_GET_SIZE(o) - #define __Pyx_PySet_GET_SIZE(o) PySet_GET_SIZE(o) - #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_GET_SIZE(o) - #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_GET_SIZE(o) - #define __Pyx_PyUnicode_GET_LENGTH(o) PyUnicode_GET_LENGTH(o) -#else - #define __Pyx_PyTuple_GET_SIZE(o) PyTuple_Size(o) - #define __Pyx_PyList_GET_SIZE(o) PyList_Size(o) - #define __Pyx_PySet_GET_SIZE(o) PySet_Size(o) - #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o) - #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o) - #define __Pyx_PyUnicode_GET_LENGTH(o) PyUnicode_GetLength(o) -#endif -#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_InternFromString) - #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) -#endif -#define __Pyx_PyLong_FromHash_t PyLong_FromSsize_t -#define __Pyx_PyLong_AsHash_t __Pyx_PyIndex_AsSsize_t -#if __PYX_LIMITED_VERSION_HEX >= 0x030A0000 - #define __Pyx_PySendResult PySendResult -#else - typedef enum { - PYGEN_RETURN = 0, - PYGEN_ERROR = -1, - PYGEN_NEXT = 1, - } __Pyx_PySendResult; -#endif -#if CYTHON_COMPILING_IN_LIMITED_API || PY_VERSION_HEX < 0x030A00A3 - typedef __Pyx_PySendResult (*__Pyx_pyiter_sendfunc)(PyObject *iter, PyObject *value, PyObject **result); -#else - #define __Pyx_pyiter_sendfunc sendfunc -#endif -#if !CYTHON_USE_AM_SEND -#define __PYX_HAS_PY_AM_SEND 0 -#elif __PYX_LIMITED_VERSION_HEX >= 0x030A0000 -#define __PYX_HAS_PY_AM_SEND 1 -#else -#define __PYX_HAS_PY_AM_SEND 2 // our own backported implementation -#endif -#if __PYX_HAS_PY_AM_SEND < 2 - #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods -#else - typedef struct { - unaryfunc am_await; - unaryfunc am_aiter; - unaryfunc am_anext; - __Pyx_pyiter_sendfunc am_send; - } __Pyx_PyAsyncMethodsStruct; - #define __Pyx_SlotTpAsAsync(s) ((PyAsyncMethods*)(s)) -#endif -#if CYTHON_USE_AM_SEND && PY_VERSION_HEX < 0x030A00F0 - #define __Pyx_TPFLAGS_HAVE_AM_SEND (1UL << 21) -#else - #define __Pyx_TPFLAGS_HAVE_AM_SEND (0) -#endif -#if PY_VERSION_HEX >= 0x03090000 -#define __Pyx_PyInterpreterState_Get() PyInterpreterState_Get() -#else -#define __Pyx_PyInterpreterState_Get() PyThreadState_Get()->interp -#endif -#if CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x030A0000 -#ifdef __cplusplus -extern "C" -#endif -PyAPI_FUNC(void *) PyMem_Calloc(size_t nelem, size_t elsize); -#endif -#if CYTHON_COMPILING_IN_LIMITED_API -static int __Pyx_init_co_variable(PyObject *inspect, const char* name, int *write_to) { - int value; - PyObject *py_value = PyObject_GetAttrString(inspect, name); - if (!py_value) return 0; - value = (int) PyLong_AsLong(py_value); - Py_DECREF(py_value); - *write_to = value; - return value != -1 || !PyErr_Occurred(); -} -static int __Pyx_init_co_variables(void) { - PyObject *inspect; - int result; - inspect = PyImport_ImportModule("inspect"); - result = -#if !defined(CO_OPTIMIZED) - __Pyx_init_co_variable(inspect, "CO_OPTIMIZED", &CO_OPTIMIZED) && -#endif -#if !defined(CO_NEWLOCALS) - __Pyx_init_co_variable(inspect, "CO_NEWLOCALS", &CO_NEWLOCALS) && -#endif -#if !defined(CO_VARARGS) - __Pyx_init_co_variable(inspect, "CO_VARARGS", &CO_VARARGS) && -#endif -#if !defined(CO_VARKEYWORDS) - __Pyx_init_co_variable(inspect, "CO_VARKEYWORDS", &CO_VARKEYWORDS) && -#endif -#if !defined(CO_ASYNC_GENERATOR) - __Pyx_init_co_variable(inspect, "CO_ASYNC_GENERATOR", &CO_ASYNC_GENERATOR) && -#endif -#if !defined(CO_GENERATOR) - __Pyx_init_co_variable(inspect, "CO_GENERATOR", &CO_GENERATOR) && -#endif -#if !defined(CO_COROUTINE) - __Pyx_init_co_variable(inspect, "CO_COROUTINE", &CO_COROUTINE) && -#endif - 1; - Py_DECREF(inspect); - return result ? 0 : -1; -} -#else -static int __Pyx_init_co_variables(void) { - return 0; // It's a limited API-only feature -} -#endif - -/* MathInitCode */ -#if defined(_WIN32) || defined(WIN32) || defined(MS_WINDOWS) - #ifndef _USE_MATH_DEFINES - #define _USE_MATH_DEFINES - #endif -#endif -#include -#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) -#define __Pyx_truncl trunc -#else -#define __Pyx_truncl truncl -#endif - -#ifndef CYTHON_CLINE_IN_TRACEBACK_RUNTIME -#define CYTHON_CLINE_IN_TRACEBACK_RUNTIME 0 -#endif -#ifndef CYTHON_CLINE_IN_TRACEBACK -#define CYTHON_CLINE_IN_TRACEBACK CYTHON_CLINE_IN_TRACEBACK_RUNTIME -#endif -#if CYTHON_CLINE_IN_TRACEBACK -#define __PYX_MARK_ERR_POS(f_index, lineno) { __pyx_filename = __pyx_f[f_index]; (void) __pyx_filename; __pyx_lineno = lineno; (void) __pyx_lineno; __pyx_clineno = __LINE__; (void) __pyx_clineno; } -#else -#define __PYX_MARK_ERR_POS(f_index, lineno) { __pyx_filename = __pyx_f[f_index]; (void) __pyx_filename; __pyx_lineno = lineno; (void) __pyx_lineno; (void) __pyx_clineno; } -#endif -#define __PYX_ERR(f_index, lineno, Ln_error) \ - { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; } - -#ifdef CYTHON_EXTERN_C - #undef __PYX_EXTERN_C - #define __PYX_EXTERN_C CYTHON_EXTERN_C -#elif defined(__PYX_EXTERN_C) - #ifdef _MSC_VER - #pragma message ("Please do not define the '__PYX_EXTERN_C' macro externally. Use 'CYTHON_EXTERN_C' instead.") - #else - #warning Please do not define the '__PYX_EXTERN_C' macro externally. Use 'CYTHON_EXTERN_C' instead. - #endif -#else - #ifdef __cplusplus - #define __PYX_EXTERN_C extern "C" - #else - #define __PYX_EXTERN_C extern - #endif -#endif - -#define __PYX_HAVE__pyvale__sensorsim__cython__rastercyth -#define __PYX_HAVE_API__pyvale__sensorsim__cython__rastercyth -/* Early includes */ -#include -#include "pythread.h" -#include -#include -#ifdef _OPENMP -#include -#endif /* _OPENMP */ - -#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) -#define CYTHON_WITHOUT_ASSERTIONS -#endif - -#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 -#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 -#define __PYX_DEFAULT_STRING_ENCODING "" -#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString -#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize -#define __Pyx_uchar_cast(c) ((unsigned char)c) -#define __Pyx_long_cast(x) ((long)x) -#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ - (sizeof(type) < sizeof(Py_ssize_t)) ||\ - (sizeof(type) > sizeof(Py_ssize_t) &&\ - likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX) &&\ - (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ - v == (type)PY_SSIZE_T_MIN))) ||\ - (sizeof(type) == sizeof(Py_ssize_t) &&\ - (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ - v == (type)PY_SSIZE_T_MAX))) ) -static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { - return (size_t) i < (size_t) limit; -} -#if defined (__cplusplus) && __cplusplus >= 201103L - #include - #define __Pyx_sst_abs(value) std::abs(value) -#elif SIZEOF_INT >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) abs(value) -#elif SIZEOF_LONG >= SIZEOF_SIZE_T - #define __Pyx_sst_abs(value) labs(value) -#elif defined (_MSC_VER) - #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L - #define __Pyx_sst_abs(value) llabs(value) -#elif defined (__GNUC__) - #define __Pyx_sst_abs(value) __builtin_llabs(value) -#else - #define __Pyx_sst_abs(value) ((value<0) ? -value : value) -#endif -static CYTHON_INLINE Py_ssize_t __Pyx_ssize_strlen(const char *s); -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); -static CYTHON_INLINE PyObject* __Pyx_PyByteArray_FromString(const char*); -#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) -#define __Pyx_PyBytes_FromString PyBytes_FromString -#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); -#if CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) - #define __Pyx_PyByteArray_AsString(s) PyByteArray_AS_STRING(s) -#else - #define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AsString(s)) - #define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AsString(s)) - #define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AsString(s)) - #define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AsString(s)) - #define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AsString(s)) - #define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AsString(s)) - #define __Pyx_PyByteArray_AsString(s) PyByteArray_AsString(s) -#endif -#define __Pyx_PyObject_AsWritableString(s) ((char*)(__pyx_uintptr_t) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableSString(s) ((signed char*)(__pyx_uintptr_t) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*)(__pyx_uintptr_t) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) -#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) -#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) -#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) -#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) -#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o) -#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode -static CYTHON_INLINE PyObject *__Pyx_NewRef(PyObject *obj) { -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030a0000 || defined(Py_NewRef) - return Py_NewRef(obj); -#else - Py_INCREF(obj); - return obj; -#endif -} -static CYTHON_INLINE PyObject *__Pyx_XNewRef(PyObject *obj) { -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030a0000 || defined(Py_XNewRef) - return Py_XNewRef(obj); -#else - Py_XINCREF(obj); - return obj; -#endif -} -static CYTHON_INLINE PyObject *__Pyx_Owned_Py_None(int b); -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); -static CYTHON_INLINE PyObject* __Pyx_PyNumber_Long(PyObject* x); -#define __Pyx_PySequence_Tuple(obj)\ - (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); -static CYTHON_INLINE PyObject * __Pyx_PyLong_FromSize_t(size_t); -static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*); -#if CYTHON_ASSUME_SAFE_MACROS -#define __Pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) -#define __Pyx_PyFloat_AS_DOUBLE(x) PyFloat_AS_DOUBLE(x) -#else -#define __Pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) -#define __Pyx_PyFloat_AS_DOUBLE(x) PyFloat_AsDouble(x) -#endif -#define __Pyx_PyFloat_AsFloat(x) ((float) __Pyx_PyFloat_AsDouble(x)) -#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) -#if CYTHON_USE_PYLONG_INTERNALS - #if PY_VERSION_HEX >= 0x030C00A7 - #ifndef _PyLong_SIGN_MASK - #define _PyLong_SIGN_MASK 3 - #endif - #ifndef _PyLong_NON_SIZE_BITS - #define _PyLong_NON_SIZE_BITS 3 - #endif - #define __Pyx_PyLong_Sign(x) (((PyLongObject*)x)->long_value.lv_tag & _PyLong_SIGN_MASK) - #define __Pyx_PyLong_IsNeg(x) ((__Pyx_PyLong_Sign(x) & 2) != 0) - #define __Pyx_PyLong_IsNonNeg(x) (!__Pyx_PyLong_IsNeg(x)) - #define __Pyx_PyLong_IsZero(x) (__Pyx_PyLong_Sign(x) & 1) - #define __Pyx_PyLong_IsPos(x) (__Pyx_PyLong_Sign(x) == 0) - #define __Pyx_PyLong_CompactValueUnsigned(x) (__Pyx_PyLong_Digits(x)[0]) - #define __Pyx_PyLong_DigitCount(x) ((Py_ssize_t) (((PyLongObject*)x)->long_value.lv_tag >> _PyLong_NON_SIZE_BITS)) - #define __Pyx_PyLong_SignedDigitCount(x)\ - ((1 - (Py_ssize_t) __Pyx_PyLong_Sign(x)) * __Pyx_PyLong_DigitCount(x)) - #if defined(PyUnstable_Long_IsCompact) && defined(PyUnstable_Long_CompactValue) - #define __Pyx_PyLong_IsCompact(x) PyUnstable_Long_IsCompact((PyLongObject*) x) - #define __Pyx_PyLong_CompactValue(x) PyUnstable_Long_CompactValue((PyLongObject*) x) - #else - #define __Pyx_PyLong_IsCompact(x) (((PyLongObject*)x)->long_value.lv_tag < (2 << _PyLong_NON_SIZE_BITS)) - #define __Pyx_PyLong_CompactValue(x) ((1 - (Py_ssize_t) __Pyx_PyLong_Sign(x)) * (Py_ssize_t) __Pyx_PyLong_Digits(x)[0]) - #endif - typedef Py_ssize_t __Pyx_compact_pylong; - typedef size_t __Pyx_compact_upylong; - #else - #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0) - #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0) - #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0) - #define __Pyx_PyLong_IsPos(x) (Py_SIZE(x) > 0) - #define __Pyx_PyLong_CompactValueUnsigned(x) ((Py_SIZE(x) == 0) ? 0 : __Pyx_PyLong_Digits(x)[0]) - #define __Pyx_PyLong_DigitCount(x) __Pyx_sst_abs(Py_SIZE(x)) - #define __Pyx_PyLong_SignedDigitCount(x) Py_SIZE(x) - #define __Pyx_PyLong_IsCompact(x) (Py_SIZE(x) == 0 || Py_SIZE(x) == 1 || Py_SIZE(x) == -1) - #define __Pyx_PyLong_CompactValue(x)\ - ((Py_SIZE(x) == 0) ? (sdigit) 0 : ((Py_SIZE(x) < 0) ? -(sdigit)__Pyx_PyLong_Digits(x)[0] : (sdigit)__Pyx_PyLong_Digits(x)[0])) - typedef sdigit __Pyx_compact_pylong; - typedef digit __Pyx_compact_upylong; - #endif - #if PY_VERSION_HEX >= 0x030C00A5 - #define __Pyx_PyLong_Digits(x) (((PyLongObject*)x)->long_value.ob_digit) - #else - #define __Pyx_PyLong_Digits(x) (((PyLongObject*)x)->ob_digit) - #endif -#endif -#if __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 - #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) -#elif __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeASCII(c_str, size, NULL) -#else - #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) -#endif - - -/* Test for GCC > 2.95 */ -#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) - #define likely(x) __builtin_expect(!!(x), 1) - #define unlikely(x) __builtin_expect(!!(x), 0) -#else /* !__GNUC__ or GCC < 2.95 */ - #define likely(x) (x) - #define unlikely(x) (x) -#endif /* __GNUC__ */ -/* PretendToInitialize */ -#ifdef __cplusplus -#if __cplusplus > 201103L -#include -#endif -template -static void __Pyx_pretend_to_initialize(T* ptr) { -#if __cplusplus > 201103L - if ((std::is_trivially_default_constructible::value)) -#endif - *ptr = T(); - (void)ptr; -} -#else -static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } -#endif - - -#if !CYTHON_USE_MODULE_STATE -static PyObject *__pyx_m = NULL; -#endif -static int __pyx_lineno; -static int __pyx_clineno = 0; -static const char * const __pyx_cfilenm = __FILE__; -static const char *__pyx_filename; - -/* #### Code section: filename_table ### */ - -static const char* const __pyx_f[] = { - "src/pyvale/sensorsim/cython/rastercyth.py", - "", -}; -/* #### Code section: utility_code_proto_before_types ### */ -/* Atomics.proto (used by UnpackUnboundCMethod) */ -#include -#ifndef CYTHON_ATOMICS - #define CYTHON_ATOMICS 1 -#endif -#define __PYX_CYTHON_ATOMICS_ENABLED() CYTHON_ATOMICS -#define __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -#define __pyx_atomic_int_type int -#define __pyx_nonatomic_int_type int -#if CYTHON_ATOMICS && (defined(__STDC_VERSION__) &&\ - (__STDC_VERSION__ >= 201112L) &&\ - !defined(__STDC_NO_ATOMICS__)) - #include -#elif CYTHON_ATOMICS && (defined(__cplusplus) && (\ - (__cplusplus >= 201103L) ||\ - (defined(_MSC_VER) && _MSC_VER >= 1700))) - #include -#endif -#if CYTHON_ATOMICS && (defined(__STDC_VERSION__) &&\ - (__STDC_VERSION__ >= 201112L) &&\ - !defined(__STDC_NO_ATOMICS__) &&\ - ATOMIC_INT_LOCK_FREE == 2) - #undef __pyx_atomic_int_type - #define __pyx_atomic_int_type atomic_int - #define __pyx_atomic_ptr_type atomic_uintptr_t - #define __pyx_nonatomic_ptr_type uintptr_t - #define __pyx_atomic_incr_relaxed(value) atomic_fetch_add_explicit(value, 1, memory_order_relaxed) - #define __pyx_atomic_incr_acq_rel(value) atomic_fetch_add_explicit(value, 1, memory_order_acq_rel) - #define __pyx_atomic_decr_acq_rel(value) atomic_fetch_sub_explicit(value, 1, memory_order_acq_rel) - #define __pyx_atomic_sub(value, arg) atomic_fetch_sub(value, arg) - #define __pyx_atomic_int_cmp_exchange(value, expected, desired) atomic_compare_exchange_strong(value, expected, desired) - #define __pyx_atomic_load(value) atomic_load(value) - #define __pyx_atomic_store(value, new_value) atomic_store(value, new_value) - #define __pyx_atomic_pointer_load_relaxed(value) atomic_load_explicit(value, memory_order_relaxed) - #define __pyx_atomic_pointer_load_acquire(value) atomic_load_explicit(value, memory_order_acquire) - #define __pyx_atomic_pointer_exchange(value, new_value) atomic_exchange(value, (__pyx_nonatomic_ptr_type)new_value) - #define __pyx_atomic_pointer_cmp_exchange(value, expected, desired) atomic_compare_exchange_strong(value, expected, desired) - #if defined(__PYX_DEBUG_ATOMICS) && defined(_MSC_VER) - #pragma message ("Using standard C atomics") - #elif defined(__PYX_DEBUG_ATOMICS) - #warning "Using standard C atomics" - #endif -#elif CYTHON_ATOMICS && (defined(__cplusplus) && (\ - (__cplusplus >= 201103L) ||\ -\ - (defined(_MSC_VER) && _MSC_VER >= 1700)) &&\ - ATOMIC_INT_LOCK_FREE == 2) - #undef __pyx_atomic_int_type - #define __pyx_atomic_int_type std::atomic_int - #define __pyx_atomic_ptr_type std::atomic_uintptr_t - #define __pyx_nonatomic_ptr_type uintptr_t - #define __pyx_atomic_incr_relaxed(value) std::atomic_fetch_add_explicit(value, 1, std::memory_order_relaxed) - #define __pyx_atomic_incr_acq_rel(value) std::atomic_fetch_add_explicit(value, 1, std::memory_order_acq_rel) - #define __pyx_atomic_decr_acq_rel(value) std::atomic_fetch_sub_explicit(value, 1, std::memory_order_acq_rel) - #define __pyx_atomic_sub(value, arg) std::atomic_fetch_sub(value, arg) - #define __pyx_atomic_int_cmp_exchange(value, expected, desired) std::atomic_compare_exchange_strong(value, expected, desired) - #define __pyx_atomic_load(value) std::atomic_load(value) - #define __pyx_atomic_store(value, new_value) std::atomic_store(value, new_value) - #define __pyx_atomic_pointer_load_relaxed(value) std::atomic_load_explicit(value, std::memory_order_relaxed) - #define __pyx_atomic_pointer_load_acquire(value) std::atomic_load_explicit(value, std::memory_order_acquire) - #define __pyx_atomic_pointer_exchange(value, new_value) std::atomic_exchange(value, (__pyx_nonatomic_ptr_type)new_value) - #define __pyx_atomic_pointer_cmp_exchange(value, expected, desired) std::atomic_compare_exchange_strong(value, expected, desired) - #if defined(__PYX_DEBUG_ATOMICS) && defined(_MSC_VER) - #pragma message ("Using standard C++ atomics") - #elif defined(__PYX_DEBUG_ATOMICS) - #warning "Using standard C++ atomics" - #endif -#elif CYTHON_ATOMICS && (__GNUC__ >= 5 || (__GNUC__ == 4 &&\ - (__GNUC_MINOR__ > 1 ||\ - (__GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ >= 2)))) - #define __pyx_atomic_ptr_type void* - #define __pyx_nonatomic_ptr_type void* - #define __pyx_atomic_incr_relaxed(value) __sync_fetch_and_add(value, 1) - #define __pyx_atomic_incr_acq_rel(value) __sync_fetch_and_add(value, 1) - #define __pyx_atomic_decr_acq_rel(value) __sync_fetch_and_sub(value, 1) - #define __pyx_atomic_sub(value, arg) __sync_fetch_and_sub(value, arg) - static CYTHON_INLINE int __pyx_atomic_int_cmp_exchange(__pyx_atomic_int_type* value, __pyx_nonatomic_int_type* expected, __pyx_nonatomic_int_type desired) { - __pyx_nonatomic_int_type old = __sync_val_compare_and_swap(value, *expected, desired); - int result = old == *expected; - *expected = old; - return result; - } - #define __pyx_atomic_load(value) __sync_fetch_and_add(value, 0) - #define __pyx_atomic_store(value, new_value) __sync_lock_test_and_set(value, new_value) - #define __pyx_atomic_pointer_load_relaxed(value) __sync_fetch_and_add(value, 0) - #define __pyx_atomic_pointer_load_acquire(value) __sync_fetch_and_add(value, 0) - #define __pyx_atomic_pointer_exchange(value, new_value) __sync_lock_test_and_set(value, (__pyx_atomic_ptr_type)new_value) - static CYTHON_INLINE int __pyx_atomic_pointer_cmp_exchange(__pyx_atomic_ptr_type* value, __pyx_nonatomic_ptr_type* expected, __pyx_nonatomic_ptr_type desired) { - __pyx_nonatomic_ptr_type old = __sync_val_compare_and_swap(value, *expected, desired); - int result = old == *expected; - *expected = old; - return result; - } - #ifdef __PYX_DEBUG_ATOMICS - #warning "Using GNU atomics" - #endif -#elif CYTHON_ATOMICS && defined(_MSC_VER) - #include - #undef __pyx_atomic_int_type - #define __pyx_atomic_int_type long - #define __pyx_atomic_ptr_type void* - #undef __pyx_nonatomic_int_type - #define __pyx_nonatomic_int_type long - #define __pyx_nonatomic_ptr_type void* - #pragma intrinsic (_InterlockedExchangeAdd, _InterlockedExchange, _InterlockedCompareExchange, _InterlockedCompareExchangePointer, _InterlockedExchangePointer) - #define __pyx_atomic_incr_relaxed(value) _InterlockedExchangeAdd(value, 1) - #define __pyx_atomic_incr_acq_rel(value) _InterlockedExchangeAdd(value, 1) - #define __pyx_atomic_decr_acq_rel(value) _InterlockedExchangeAdd(value, -1) - #define __pyx_atomic_sub(value, arg) _InterlockedExchangeAdd(value, -arg) - static CYTHON_INLINE int __pyx_atomic_int_cmp_exchange(__pyx_atomic_int_type* value, __pyx_nonatomic_int_type* expected, __pyx_nonatomic_int_type desired) { - __pyx_nonatomic_int_type old = _InterlockedCompareExchange(value, desired, *expected); - int result = old == *expected; - *expected = old; - return result; - } - #define __pyx_atomic_load(value) _InterlockedExchangeAdd(value, 0) - #define __pyx_atomic_store(value, new_value) _InterlockedExchange(value, new_value) - #define __pyx_atomic_pointer_load_relaxed(value) *(void * volatile *)value - #define __pyx_atomic_pointer_load_acquire(value) _InterlockedCompareExchangePointer(value, 0, 0) - #define __pyx_atomic_pointer_exchange(value, new_value) _InterlockedExchangePointer(value, (__pyx_atomic_ptr_type)new_value) - static CYTHON_INLINE int __pyx_atomic_pointer_cmp_exchange(__pyx_atomic_ptr_type* value, __pyx_nonatomic_ptr_type* expected, __pyx_nonatomic_ptr_type desired) { - __pyx_atomic_ptr_type old = _InterlockedCompareExchangePointer(value, desired, *expected); - int result = old == *expected; - *expected = old; - return result; - } - #ifdef __PYX_DEBUG_ATOMICS - #pragma message ("Using MSVC atomics") - #endif -#else - #undef CYTHON_ATOMICS - #define CYTHON_ATOMICS 0 - #ifdef __PYX_DEBUG_ATOMICS - #warning "Not using atomics" - #endif -#endif - -/* CriticalSectionsDefinition.proto (used by CriticalSections) */ -#if !CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -#define __Pyx_PyCriticalSection void* -#define __Pyx_PyCriticalSection2 void* -#define __Pyx_PyCriticalSection_End(cs) -#define __Pyx_PyCriticalSection2_End(cs) -#else -#define __Pyx_PyCriticalSection PyCriticalSection -#define __Pyx_PyCriticalSection2 PyCriticalSection2 -#define __Pyx_PyCriticalSection_End PyCriticalSection_End -#define __Pyx_PyCriticalSection2_End PyCriticalSection2_End -#endif - -/* CriticalSections.proto (used by ParseKeywordsImpl) */ -#if !CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -#define __Pyx_PyCriticalSection_Begin(cs, arg) (void)(cs) -#define __Pyx_PyCriticalSection2_Begin(cs, arg1, arg2) (void)(cs) -#else -#define __Pyx_PyCriticalSection_Begin PyCriticalSection_Begin -#define __Pyx_PyCriticalSection2_Begin PyCriticalSection2_Begin -#endif -#if PY_VERSION_HEX < 0x030d0000 || CYTHON_COMPILING_IN_LIMITED_API -#define __Pyx_BEGIN_CRITICAL_SECTION(o) { -#define __Pyx_END_CRITICAL_SECTION() } -#else -#define __Pyx_BEGIN_CRITICAL_SECTION Py_BEGIN_CRITICAL_SECTION -#define __Pyx_END_CRITICAL_SECTION Py_END_CRITICAL_SECTION -#endif - -/* ForceInitThreads.proto */ -#ifndef __PYX_FORCE_INIT_THREADS - #define __PYX_FORCE_INIT_THREADS 0 -#endif - -/* NoFastGil.proto */ -#define __Pyx_PyGILState_Ensure PyGILState_Ensure -#define __Pyx_PyGILState_Release PyGILState_Release -#define __Pyx_FastGIL_Remember() -#define __Pyx_FastGIL_Forget() -#define __Pyx_FastGilFuncInit() - -/* IncludeStructmemberH.proto (used by FixUpExtensionType) */ -#include - -/* BufferFormatStructs.proto */ -struct __Pyx_StructField_; -#define __PYX_BUF_FLAGS_PACKED_STRUCT (1 << 0) -typedef struct { - const char* name; - const struct __Pyx_StructField_* fields; - size_t size; - size_t arraysize[8]; - int ndim; - char typegroup; - char is_unsigned; - int flags; -} __Pyx_TypeInfo; -typedef struct __Pyx_StructField_ { - const __Pyx_TypeInfo* type; - const char* name; - size_t offset; -} __Pyx_StructField; -typedef struct { - const __Pyx_StructField* field; - size_t parent_offset; -} __Pyx_BufFmt_StackElem; -typedef struct { - __Pyx_StructField root; - __Pyx_BufFmt_StackElem* head; - size_t fmt_offset; - size_t new_count, enc_count; - size_t struct_alignment; - int is_complex; - char enc_type; - char new_packmode; - char enc_packmode; - char is_valid_array; -} __Pyx_BufFmt_Context; - -/* MemviewSliceStruct.proto */ -struct __pyx_memoryview_obj; -typedef struct { - struct __pyx_memoryview_obj *memview; - char *data; - Py_ssize_t shape[8]; - Py_ssize_t strides[8]; - Py_ssize_t suboffsets[8]; -} __Pyx_memviewslice; -#define __Pyx_MemoryView_Len(m) (m.shape[0]) -#define __Pyx_MEMVIEW_DIRECT 1 -#define __Pyx_MEMVIEW_PTR 2 -#define __Pyx_MEMVIEW_FULL 4 -#define __Pyx_MEMVIEW_CONTIG 8 -#define __Pyx_MEMVIEW_STRIDED 16 -#define __Pyx_MEMVIEW_FOLLOW 32 -#define __Pyx_IS_C_CONTIG 1 -#define __Pyx_IS_F_CONTIG 2 -#define __Pyx_MEMSLICE_INIT { 0, 0, { 0 }, { 0 }, { 0 } } -#if CYTHON_ATOMICS - #define __pyx_add_acquisition_count(memview)\ - __pyx_atomic_incr_relaxed(__pyx_get_slice_count_pointer(memview)) - #define __pyx_sub_acquisition_count(memview)\ - __pyx_atomic_decr_acq_rel(__pyx_get_slice_count_pointer(memview)) -#else - #define __pyx_add_acquisition_count(memview)\ - __pyx_add_acquisition_count_locked(__pyx_get_slice_count_pointer(memview), memview->lock) - #define __pyx_sub_acquisition_count(memview)\ - __pyx_sub_acquisition_count_locked(__pyx_get_slice_count_pointer(memview), memview->lock) -#endif - -/* #### Code section: numeric_typedefs ### */ -/* #### Code section: complex_type_declarations ### */ -/* #### Code section: type_declarations ### */ - -/*--- Type declarations ---*/ -struct __pyx_array_obj; -struct __pyx_MemviewEnum_obj; -struct __pyx_memoryview_obj; -struct __pyx_memoryviewslice_obj; - -/* "View.MemoryView":110 - * - * - * @cython.collection_type("sequence") # <<<<<<<<<<<<<< - * @cname("__pyx_array") - * cdef class array: -*/ -struct __pyx_array_obj { - PyObject_HEAD - struct __pyx_vtabstruct_array *__pyx_vtab; - char *data; - Py_ssize_t len; - char *format; - int ndim; - Py_ssize_t *_shape; - Py_ssize_t *_strides; - Py_ssize_t itemsize; - PyObject *mode; - PyObject *_format; - void (*callback_free_data)(void *); - int free_data; - int dtype_is_object; -}; - - -/* "View.MemoryView":299 - * - * - * @cname('__pyx_MemviewEnum') # <<<<<<<<<<<<<< - * cdef class Enum(object): - * cdef object name -*/ -struct __pyx_MemviewEnum_obj { - PyObject_HEAD - PyObject *name; -}; - - -/* "View.MemoryView":334 - * - * - * @cname('__pyx_memoryview') # <<<<<<<<<<<<<< - * cdef class memoryview: - * -*/ -struct __pyx_memoryview_obj { - PyObject_HEAD - struct __pyx_vtabstruct_memoryview *__pyx_vtab; - PyObject *obj; - PyObject *_size; - void *_unused; - PyThread_type_lock lock; - __pyx_atomic_int_type acquisition_count; - Py_buffer view; - int flags; - int dtype_is_object; - __Pyx_TypeInfo const *typeinfo; -}; - - -/* "View.MemoryView":951 - * - * - * @cython.collection_type("sequence") # <<<<<<<<<<<<<< - * @cname('__pyx_memoryviewslice') - * cdef class _memoryviewslice(memoryview): -*/ -struct __pyx_memoryviewslice_obj { - struct __pyx_memoryview_obj __pyx_base; - __Pyx_memviewslice from_slice; - PyObject *from_object; - PyObject *(*to_object_func)(char *); - int (*to_dtype_func)(char *, PyObject *); -}; - - - -/* "View.MemoryView":110 - * - * - * @cython.collection_type("sequence") # <<<<<<<<<<<<<< - * @cname("__pyx_array") - * cdef class array: -*/ - -struct __pyx_vtabstruct_array { - PyObject *(*get_memview)(struct __pyx_array_obj *); -}; -static struct __pyx_vtabstruct_array *__pyx_vtabptr_array; - - -/* "View.MemoryView":334 - * - * - * @cname('__pyx_memoryview') # <<<<<<<<<<<<<< - * cdef class memoryview: - * -*/ - -struct __pyx_vtabstruct_memoryview { - char *(*get_item_pointer)(struct __pyx_memoryview_obj *, PyObject *); - PyObject *(*is_slice)(struct __pyx_memoryview_obj *, PyObject *); - PyObject *(*setitem_slice_assignment)(struct __pyx_memoryview_obj *, PyObject *, PyObject *); - PyObject *(*setitem_slice_assign_scalar)(struct __pyx_memoryview_obj *, struct __pyx_memoryview_obj *, PyObject *); - PyObject *(*setitem_indexed)(struct __pyx_memoryview_obj *, PyObject *, PyObject *); - PyObject *(*convert_item_to_object)(struct __pyx_memoryview_obj *, char *); - PyObject *(*assign_item_from_object)(struct __pyx_memoryview_obj *, char *, PyObject *); - PyObject *(*_get_base)(struct __pyx_memoryview_obj *); -}; -static struct __pyx_vtabstruct_memoryview *__pyx_vtabptr_memoryview; - - -/* "View.MemoryView":951 - * - * - * @cython.collection_type("sequence") # <<<<<<<<<<<<<< - * @cname('__pyx_memoryviewslice') - * cdef class _memoryviewslice(memoryview): -*/ - -struct __pyx_vtabstruct__memoryviewslice { - struct __pyx_vtabstruct_memoryview __pyx_base; -}; -static struct __pyx_vtabstruct__memoryviewslice *__pyx_vtabptr__memoryviewslice; -/* #### Code section: utility_code_proto ### */ - -/* --- Runtime support code (head) --- */ -/* Refnanny.proto */ -#ifndef CYTHON_REFNANNY - #define CYTHON_REFNANNY 0 -#endif -#if CYTHON_REFNANNY - typedef struct { - void (*INCREF)(void*, PyObject*, Py_ssize_t); - void (*DECREF)(void*, PyObject*, Py_ssize_t); - void (*GOTREF)(void*, PyObject*, Py_ssize_t); - void (*GIVEREF)(void*, PyObject*, Py_ssize_t); - void* (*SetupContext)(const char*, Py_ssize_t, const char*); - void (*FinishContext)(void**); - } __Pyx_RefNannyAPIStruct; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; - static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); - #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; - #define __Pyx_RefNannySetupContext(name, acquire_gil)\ - if (acquire_gil) {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), (__LINE__), (__FILE__));\ - PyGILState_Release(__pyx_gilstate_save);\ - } else {\ - __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), (__LINE__), (__FILE__));\ - } - #define __Pyx_RefNannyFinishContextNogil() {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __Pyx_RefNannyFinishContext();\ - PyGILState_Release(__pyx_gilstate_save);\ - } - #define __Pyx_RefNannyFinishContextNogil() {\ - PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ - __Pyx_RefNannyFinishContext();\ - PyGILState_Release(__pyx_gilstate_save);\ - } - #define __Pyx_RefNannyFinishContext()\ - __Pyx_RefNanny->FinishContext(&__pyx_refnanny) - #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), (__LINE__)) - #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), (__LINE__)) - #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), (__LINE__)) - #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), (__LINE__)) - #define __Pyx_XINCREF(r) do { if((r) == NULL); else {__Pyx_INCREF(r); }} while(0) - #define __Pyx_XDECREF(r) do { if((r) == NULL); else {__Pyx_DECREF(r); }} while(0) - #define __Pyx_XGOTREF(r) do { if((r) == NULL); else {__Pyx_GOTREF(r); }} while(0) - #define __Pyx_XGIVEREF(r) do { if((r) == NULL); else {__Pyx_GIVEREF(r);}} while(0) -#else - #define __Pyx_RefNannyDeclarations - #define __Pyx_RefNannySetupContext(name, acquire_gil) - #define __Pyx_RefNannyFinishContextNogil() - #define __Pyx_RefNannyFinishContext() - #define __Pyx_INCREF(r) Py_INCREF(r) - #define __Pyx_DECREF(r) Py_DECREF(r) - #define __Pyx_GOTREF(r) - #define __Pyx_GIVEREF(r) - #define __Pyx_XINCREF(r) Py_XINCREF(r) - #define __Pyx_XDECREF(r) Py_XDECREF(r) - #define __Pyx_XGOTREF(r) - #define __Pyx_XGIVEREF(r) -#endif -#define __Pyx_Py_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; Py_XDECREF(tmp);\ - } while (0) -#define __Pyx_XDECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_XDECREF(tmp);\ - } while (0) -#define __Pyx_DECREF_SET(r, v) do {\ - PyObject *tmp = (PyObject *) r;\ - r = v; __Pyx_DECREF(tmp);\ - } while (0) -#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) -#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) - -/* TupleAndListFromArray.proto (used by fastcall) */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyList_FromArray(PyObject *const *src, Py_ssize_t n); -#endif -#if CYTHON_COMPILING_IN_CPYTHON || CYTHON_METH_FASTCALL -static CYTHON_INLINE PyObject* __Pyx_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n); -#endif - -/* IncludeStringH.proto (used by BytesEquals) */ -#include - -/* BytesEquals.proto (used by UnicodeEquals) */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); - -/* UnicodeEquals.proto (used by fastcall) */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); - -/* fastcall.proto */ -#if CYTHON_AVOID_BORROWED_REFS - #define __Pyx_ArgRef_VARARGS(args, i) __Pyx_PySequence_ITEM(args, i) -#elif CYTHON_ASSUME_SAFE_MACROS - #define __Pyx_ArgRef_VARARGS(args, i) __Pyx_NewRef(__Pyx_PyTuple_GET_ITEM(args, i)) -#else - #define __Pyx_ArgRef_VARARGS(args, i) __Pyx_XNewRef(PyTuple_GetItem(args, i)) -#endif -#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds) -#define __Pyx_KwValues_VARARGS(args, nargs) NULL -#define __Pyx_GetKwValue_VARARGS(kw, kwvalues, s) __Pyx_PyDict_GetItemStrWithError(kw, s) -#define __Pyx_KwargsAsDict_VARARGS(kw, kwvalues) PyDict_Copy(kw) -#if CYTHON_METH_FASTCALL - #define __Pyx_ArgRef_FASTCALL(args, i) __Pyx_NewRef(args[i]) - #define __Pyx_NumKwargs_FASTCALL(kwds) __Pyx_PyTuple_GET_SIZE(kwds) - #define __Pyx_KwValues_FASTCALL(args, nargs) ((args) + (nargs)) - static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues, PyObject *s); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000 || CYTHON_COMPILING_IN_LIMITED_API - CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues); - #else - #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw) - #endif -#else - #define __Pyx_ArgRef_FASTCALL __Pyx_ArgRef_VARARGS - #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS - #define __Pyx_KwValues_FASTCALL __Pyx_KwValues_VARARGS - #define __Pyx_GetKwValue_FASTCALL __Pyx_GetKwValue_VARARGS - #define __Pyx_KwargsAsDict_FASTCALL __Pyx_KwargsAsDict_VARARGS -#endif -#define __Pyx_ArgsSlice_VARARGS(args, start, stop) PyTuple_GetSlice(args, start, stop) -#if CYTHON_METH_FASTCALL || (CYTHON_COMPILING_IN_CPYTHON && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) -#define __Pyx_ArgsSlice_FASTCALL(args, start, stop) __Pyx_PyTuple_FromArray(args + start, stop - start) -#else -#define __Pyx_ArgsSlice_FASTCALL(args, start, stop) PyTuple_GetSlice(args, start, stop) -#endif - -/* py_dict_items.proto (used by OwnedDictNext) */ -static CYTHON_INLINE PyObject* __Pyx_PyDict_Items(PyObject* d); - -/* CallCFunction.proto (used by CallUnboundCMethod0) */ -#define __Pyx_CallCFunction(cfunc, self, args)\ - ((PyCFunction)(void(*)(void))(cfunc)->func)(self, args) -#define __Pyx_CallCFunctionWithKeywords(cfunc, self, args, kwargs)\ - ((PyCFunctionWithKeywords)(void(*)(void))(cfunc)->func)(self, args, kwargs) -#define __Pyx_CallCFunctionFast(cfunc, self, args, nargs)\ - ((__Pyx_PyCFunctionFast)(void(*)(void))(PyCFunction)(cfunc)->func)(self, args, nargs) -#define __Pyx_CallCFunctionFastWithKeywords(cfunc, self, args, nargs, kwnames)\ - ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))(PyCFunction)(cfunc)->func)(self, args, nargs, kwnames) - -/* PyObjectCall.proto (used by PyObjectFastCall) */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); -#else -#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) -#endif - -/* PyObjectCallMethO.proto (used by PyObjectFastCall) */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); -#endif - -/* PyObjectFastCall.proto (used by PyObjectCallOneArg) */ -#define __Pyx_PyObject_FastCall(func, args, nargs) __Pyx_PyObject_FastCallDict(func, args, (size_t)(nargs), NULL) -static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObject * const*args, size_t nargs, PyObject *kwargs); - -/* PyObjectCallOneArg.proto (used by CallUnboundCMethod0) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); - -/* PyObjectGetAttrStr.proto (used by UnpackUnboundCMethod) */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); -#else -#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) -#endif - -/* UnpackUnboundCMethod.proto (used by CallUnboundCMethod0) */ -typedef struct { - PyObject *type; - PyObject **method_name; -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING && CYTHON_ATOMICS - __pyx_atomic_int_type initialized; -#endif - PyCFunction func; - PyObject *method; - int flag; -} __Pyx_CachedCFunction; -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -static CYTHON_INLINE int __Pyx_CachedCFunction_GetAndSetInitializing(__Pyx_CachedCFunction *cfunc) { -#if !CYTHON_ATOMICS - return 1; -#else - __pyx_nonatomic_int_type expected = 0; - if (__pyx_atomic_int_cmp_exchange(&cfunc->initialized, &expected, 1)) { - return 0; - } - return expected; -#endif -} -static CYTHON_INLINE void __Pyx_CachedCFunction_SetFinishedInitializing(__Pyx_CachedCFunction *cfunc) { -#if CYTHON_ATOMICS - __pyx_atomic_store(&cfunc->initialized, 2); -#endif -} -#else -#define __Pyx_CachedCFunction_GetAndSetInitializing(cfunc) 2 -#define __Pyx_CachedCFunction_SetFinishedInitializing(cfunc) -#endif - -/* CallUnboundCMethod0.proto */ -CYTHON_UNUSED -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self); -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self); -#else -#define __Pyx_CallUnboundCMethod0(cfunc, self) __Pyx__CallUnboundCMethod0(cfunc, self) -#endif - -/* py_dict_values.proto (used by OwnedDictNext) */ -static CYTHON_INLINE PyObject* __Pyx_PyDict_Values(PyObject* d); - -/* OwnedDictNext.proto (used by ParseKeywordsImpl) */ -#if CYTHON_AVOID_BORROWED_REFS -static int __Pyx_PyDict_NextRef(PyObject *p, PyObject **ppos, PyObject **pkey, PyObject **pvalue); -#else -CYTHON_INLINE -static int __Pyx_PyDict_NextRef(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue); -#endif - -/* RaiseDoubleKeywords.proto (used by ParseKeywordsImpl) */ -static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); - -/* ParseKeywordsImpl.export */ -static int __Pyx_ParseKeywordsTuple( - PyObject *kwds, - PyObject * const *kwvalues, - PyObject ** const argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs -); -static int __Pyx_ParseKeywordDictToDict( - PyObject *kwds, - PyObject ** const argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name -); -static int __Pyx_ParseKeywordDict( - PyObject *kwds, - PyObject ** const argnames[], - PyObject *values[], - Py_ssize_t num_pos_args, - Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs -); - -/* CallUnboundCMethod2.proto */ -CYTHON_UNUSED -static PyObject* __Pyx__CallUnboundCMethod2(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg1, PyObject* arg2); -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject *__Pyx_CallUnboundCMethod2(__Pyx_CachedCFunction *cfunc, PyObject *self, PyObject *arg1, PyObject *arg2); -#else -#define __Pyx_CallUnboundCMethod2(cfunc, self, arg1, arg2) __Pyx__CallUnboundCMethod2(cfunc, self, arg1, arg2) -#endif - -/* ParseKeywords.proto */ -static CYTHON_INLINE int __Pyx_ParseKeywords( - PyObject *kwds, PyObject *const *kwvalues, PyObject ** const argnames[], - PyObject *kwds2, PyObject *values[], - Py_ssize_t num_pos_args, Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs -); - -/* RaiseArgTupleInvalid.proto */ -static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, - Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); - -/* ArgTypeTestFunc.export */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); - -/* ArgTypeTest.proto */ -#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ - ((likely(__Pyx_IS_TYPE(obj, type) | (none_allowed && (obj == Py_None)))) ? 1 :\ - __Pyx__ArgTypeTest(obj, type, name, exact)) - -/* PyErrExceptionMatches.proto (used by PyObjectGetAttrStrNoError) */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) -static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); -#else -#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) -#endif - -/* PyThreadStateGet.proto (used by PyErrFetchRestore) */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; -#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; -#if PY_VERSION_HEX >= 0x030C00A6 -#define __Pyx_PyErr_Occurred() (__pyx_tstate->current_exception != NULL) -#define __Pyx_PyErr_CurrentExceptionType() (__pyx_tstate->current_exception ? (PyObject*) Py_TYPE(__pyx_tstate->current_exception) : (PyObject*) NULL) -#else -#define __Pyx_PyErr_Occurred() (__pyx_tstate->curexc_type != NULL) -#define __Pyx_PyErr_CurrentExceptionType() (__pyx_tstate->curexc_type) -#endif -#else -#define __Pyx_PyThreadState_declare -#define __Pyx_PyThreadState_assign -#define __Pyx_PyErr_Occurred() (PyErr_Occurred() != NULL) -#define __Pyx_PyErr_CurrentExceptionType() PyErr_Occurred() -#endif - -/* PyErrFetchRestore.proto (used by PyObjectGetAttrStrNoError) */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) -#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030C00A6 -#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) -#else -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#endif -#else -#define __Pyx_PyErr_Clear() PyErr_Clear() -#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) -#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) -#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) -#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) -#endif - -/* PyObjectGetAttrStrNoError.proto (used by GetBuiltinName) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStrNoError(PyObject* obj, PyObject* attr_name); - -/* GetBuiltinName.proto */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name); - -/* PyValueError_Check.proto */ -#define __Pyx_PyExc_ValueError_Check(obj) __Pyx_TypeCheck(obj, PyExc_ValueError) - -/* RaiseException.export */ -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); - -/* PyObjectFastCallMethod.proto */ -#if CYTHON_VECTORCALL && PY_VERSION_HEX >= 0x03090000 -#define __Pyx_PyObject_FastCallMethod(name, args, nargsf) PyObject_VectorcallMethod(name, args, nargsf, NULL) -#else -static PyObject *__Pyx_PyObject_FastCallMethod(PyObject *name, PyObject *const *args, size_t nargsf); -#endif - -/* RaiseUnexpectedTypeError.proto */ -static int __Pyx_RaiseUnexpectedTypeError(const char *expected, PyObject *obj); - -/* PyMemoryError_Check.proto */ -#define __Pyx_PyExc_MemoryError_Check(obj) __Pyx_TypeCheck(obj, PyExc_MemoryError) - -/* BuildPyUnicode.proto (used by COrdinalToPyUnicode) */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, const char* chars, int clength, - int prepend_sign, char padding_char); - -/* COrdinalToPyUnicode.proto (used by CIntToPyUnicode) */ -static CYTHON_INLINE int __Pyx_CheckUnicodeValue(int value); -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromOrdinal_Padded(int value, Py_ssize_t width, char padding_char); - -/* GCCDiagnostics.proto (used by CIntToPyUnicode) */ -#if !defined(__INTEL_COMPILER) && defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) -#define __Pyx_HAS_GCC_DIAGNOSTIC -#endif - -/* IncludeStdlibH.proto (used by CIntToPyUnicode) */ -#include - -/* CIntToPyUnicode.proto */ -#define __Pyx_PyUnicode_From_int(value, width, padding_char, format_char) (\ - ((format_char) == ('c')) ?\ - __Pyx_uchar___Pyx_PyUnicode_From_int(value, width, padding_char) :\ - __Pyx____Pyx_PyUnicode_From_int(value, width, padding_char, format_char)\ - ) -static CYTHON_INLINE PyObject* __Pyx_uchar___Pyx_PyUnicode_From_int(int value, Py_ssize_t width, char padding_char); -static CYTHON_INLINE PyObject* __Pyx____Pyx_PyUnicode_From_int(int value, Py_ssize_t width, char padding_char, char format_char); - -/* CIntToPyUnicode.proto */ -#define __Pyx_PyUnicode_From_Py_ssize_t(value, width, padding_char, format_char) (\ - ((format_char) == ('c')) ?\ - __Pyx_uchar___Pyx_PyUnicode_From_Py_ssize_t(value, width, padding_char) :\ - __Pyx____Pyx_PyUnicode_From_Py_ssize_t(value, width, padding_char, format_char)\ - ) -static CYTHON_INLINE PyObject* __Pyx_uchar___Pyx_PyUnicode_From_Py_ssize_t(Py_ssize_t value, Py_ssize_t width, char padding_char); -static CYTHON_INLINE PyObject* __Pyx____Pyx_PyUnicode_From_Py_ssize_t(Py_ssize_t value, Py_ssize_t width, char padding_char, char format_char); - -/* JoinPyUnicode.export */ -static PyObject* __Pyx_PyUnicode_Join(PyObject** values, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char); - -/* PyObjectFormatSimple.proto */ -#if CYTHON_COMPILING_IN_PYPY - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - PyObject_Format(s, f)) -#elif CYTHON_USE_TYPE_SLOTS - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - likely(PyLong_CheckExact(s)) ? PyLong_Type.tp_repr(s) :\ - likely(PyFloat_CheckExact(s)) ? PyFloat_Type.tp_repr(s) :\ - PyObject_Format(s, f)) -#else - #define __Pyx_PyObject_FormatSimple(s, f) (\ - likely(PyUnicode_CheckExact(s)) ? (Py_INCREF(s), s) :\ - PyObject_Format(s, f)) -#endif - -CYTHON_UNUSED static int __pyx_array_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/ -static PyObject *__pyx_array_get_memview(struct __pyx_array_obj *); /*proto*/ -/* GetAttr.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *, PyObject *); - -/* GetItemInt.proto */ -#define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck, has_gil, unsafe_shared)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck, unsafe_shared) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL) :\ - __Pyx_GetItemInt_Generic(o, to_py_func(i)))) -#define __Pyx_GetItemInt_List(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck, has_gil, unsafe_shared)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_List_Fast(o, (Py_ssize_t)i, wraparound, boundscheck, unsafe_shared) :\ - (PyErr_SetString(PyExc_IndexError, "list index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck, int unsafe_shared); -#define __Pyx_GetItemInt_Tuple(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck, has_gil, unsafe_shared)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_GetItemInt_Tuple_Fast(o, (Py_ssize_t)i, wraparound, boundscheck, unsafe_shared) :\ - (PyErr_SetString(PyExc_IndexError, "tuple index out of range"), (PyObject*)NULL)) -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck, int unsafe_shared); -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j); -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, - int is_list, int wraparound, int boundscheck, int unsafe_shared); - -/* ObjectGetItem.proto */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key); -#else -#define __Pyx_PyObject_GetItem(obj, key) PyObject_GetItem(obj, key) -#endif - -/* RejectKeywords.export */ -static void __Pyx_RejectKeywords(const char* function_name, PyObject *kwds); - -/* PyTypeError_Check.proto */ -#define __Pyx_PyExc_TypeError_Check(obj) __Pyx_TypeCheck(obj, PyExc_TypeError) - -/* DivInt[Py_ssize_t].proto */ -static CYTHON_INLINE Py_ssize_t __Pyx_div_Py_ssize_t(Py_ssize_t, Py_ssize_t, int b_is_constant); - -/* UnaryNegOverflows.proto */ -#define __Pyx_UNARY_NEG_WOULD_OVERFLOW(x)\ - (((x) < 0) & ((unsigned long)(x) == 0-(unsigned long)(x))) - -/* GetAttr3.proto */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); - -/* PyDictVersioning.proto (used by GetModuleGlobalName) */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) -#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ - (version_var) = __PYX_GET_DICT_VERSION(dict);\ - (cache_var) = (value); -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ - (VAR) = __Pyx_XNewRef(__pyx_dict_cached_value);\ - } else {\ - (VAR) = __pyx_dict_cached_value = (LOOKUP);\ - __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ - }\ -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); -#else -#define __PYX_GET_DICT_VERSION(dict) (0) -#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) -#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); -#endif - -/* GetModuleGlobalName.proto */ -#if CYTHON_USE_DICT_VERSIONS -#define __Pyx_GetModuleGlobalName(var, name) do {\ - static PY_UINT64_T __pyx_dict_version = 0;\ - static PyObject *__pyx_dict_cached_value = NULL;\ - (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_mstate_global->__pyx_d))) ?\ - (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ - __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} while(0) -#define __Pyx_GetModuleGlobalNameUncached(var, name) do {\ - PY_UINT64_T __pyx_dict_version;\ - PyObject *__pyx_dict_cached_value;\ - (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ -} while(0) -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); -#else -#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) -#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); -#endif - -/* AssertionsEnabled.proto */ -#if CYTHON_COMPILING_IN_LIMITED_API || PY_VERSION_HEX >= 0x030C0000 - static int __pyx_assertions_enabled_flag; - #define __pyx_assertions_enabled() (__pyx_assertions_enabled_flag) - static int __Pyx_init_assertions_enabled(void) { - PyObject *builtins, *debug, *debug_str; - int flag; - builtins = PyEval_GetBuiltins(); - if (!builtins) goto bad; - debug_str = PyUnicode_FromStringAndSize("__debug__", 9); - if (!debug_str) goto bad; - debug = PyObject_GetItem(builtins, debug_str); - Py_DECREF(debug_str); - if (!debug) goto bad; - flag = PyObject_IsTrue(debug); - Py_DECREF(debug); - if (flag == -1) goto bad; - __pyx_assertions_enabled_flag = flag; - return 0; - bad: - __pyx_assertions_enabled_flag = 1; - return -1; - } -#else - #define __Pyx_init_assertions_enabled() (0) - #define __pyx_assertions_enabled() (!Py_OptimizeFlag) -#endif - -/* PyAssertionError_Check.proto */ -#define __Pyx_PyExc_AssertionError_Check(obj) __Pyx_TypeCheck(obj, PyExc_AssertionError) - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* RaiseNoneIterError.proto */ -static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void); - -/* ExtTypeTest.proto */ -static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); - -/* GetTopmostException.proto (used by SaveResetException) */ -#if CYTHON_USE_EXC_INFO_STACK && CYTHON_FAST_THREAD_STATE -static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); -#endif - -/* SaveResetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); -#else -#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) -#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) -#endif - -/* GetException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* SwapException.proto */ -#if CYTHON_FAST_THREAD_STATE -#define __Pyx_ExceptionSwap(type, value, tb) __Pyx__ExceptionSwap(__pyx_tstate, type, value, tb) -static CYTHON_INLINE void __Pyx__ExceptionSwap(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); -#else -static CYTHON_INLINE void __Pyx_ExceptionSwap(PyObject **type, PyObject **value, PyObject **tb); -#endif - -/* HasAttr.proto (used by ImportImpl) */ -#if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 -#define __Pyx_HasAttr(o, n) PyObject_HasAttrWithError(o, n) -#else -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *, PyObject *); -#endif - -/* ImportImpl.export */ -static PyObject *__Pyx__Import(PyObject *name, PyObject *const *imported_names, Py_ssize_t len_imported_names, PyObject *qualname, PyObject *moddict, int level); - -/* Import.proto */ -static CYTHON_INLINE PyObject *__Pyx_Import(PyObject *name, PyObject *const *imported_names, Py_ssize_t len_imported_names, PyObject *qualname, int level); - -/* FastTypeChecks.proto */ -#if CYTHON_COMPILING_IN_CPYTHON -#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) -#define __Pyx_TypeCheck2(obj, type1, type2) __Pyx_IsAnySubtype2(Py_TYPE(obj), (PyTypeObject *)type1, (PyTypeObject *)type2) -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_IsAnySubtype2(PyTypeObject *cls, PyTypeObject *a, PyTypeObject *b); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); -#else -#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) -#define __Pyx_TypeCheck2(obj, type1, type2) (PyObject_TypeCheck(obj, (PyTypeObject *)type1) || PyObject_TypeCheck(obj, (PyTypeObject *)type2)) -#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) -static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2) { - return PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2); -} -#endif -#define __Pyx_PyErr_ExceptionMatches2(err1, err2) __Pyx_PyErr_GivenExceptionMatches2(__Pyx_PyErr_CurrentExceptionType(), err1, err2) -#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) -#ifdef PyExceptionInstance_Check - #define __Pyx_PyBaseException_Check(obj) PyExceptionInstance_Check(obj) -#else - #define __Pyx_PyBaseException_Check(obj) __Pyx_TypeCheck(obj, PyExc_BaseException) -#endif - -CYTHON_UNUSED static int __pyx_memoryview_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/ -/* ListCompAppend.proto */ -#if CYTHON_USE_PYLIST_INTERNALS && CYTHON_ASSUME_SAFE_MACROS -static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) { - PyListObject* L = (PyListObject*) list; - Py_ssize_t len = Py_SIZE(list); - if (likely(L->allocated > len)) { - Py_INCREF(x); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000 - L->ob_item[len] = x; - #else - PyList_SET_ITEM(list, len, x); - #endif - __Pyx_SET_SIZE(list, len + 1); - return 0; - } - return PyList_Append(list, x); -} -#else -#define __Pyx_ListComp_Append(L,x) PyList_Append(L,x) -#endif - -/* PySequenceMultiply.proto */ -#define __Pyx_PySequence_Multiply_Left(mul, seq) __Pyx_PySequence_Multiply(seq, mul) -static CYTHON_INLINE PyObject* __Pyx_PySequence_Multiply(PyObject *seq, Py_ssize_t mul); - -/* PyObjectFormatAndDecref.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f); -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f); - -/* PyObjectFormat.proto */ -#if CYTHON_USE_UNICODE_WRITER -static PyObject* __Pyx_PyObject_Format(PyObject* s, PyObject* f); -#else -#define __Pyx_PyObject_Format(s, f) PyObject_Format(s, f) -#endif - -/* SetItemInt.proto */ -#define __Pyx_SetItemInt(o, i, v, type, is_signed, to_py_func, is_list, wraparound, boundscheck, has_gil, unsafe_shared)\ - (__Pyx_fits_Py_ssize_t(i, type, is_signed) ?\ - __Pyx_SetItemInt_Fast(o, (Py_ssize_t)i, v, is_list, wraparound, boundscheck, unsafe_shared) :\ - (is_list ? (PyErr_SetString(PyExc_IndexError, "list assignment index out of range"), -1) :\ - __Pyx_SetItemInt_Generic(o, to_py_func(i), v))) -static int __Pyx_SetItemInt_Generic(PyObject *o, PyObject *j, PyObject *v); -static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v, - int is_list, int wraparound, int boundscheck, int unsafe_shared); - -/* RaiseUnboundLocalError.proto */ -static void __Pyx_RaiseUnboundLocalError(const char *varname); - -/* PyIndexError_Check.proto */ -#define __Pyx_PyExc_IndexError_Check(obj) __Pyx_TypeCheck(obj, PyExc_IndexError) - -/* DivInt[long].proto */ -static CYTHON_INLINE long __Pyx_div_long(long, long, int b_is_constant); - -/* PyObjectVectorCallKwBuilder.proto */ -CYTHON_UNUSED static int __Pyx_VectorcallBuilder_AddArg_Check(PyObject *key, PyObject *value, PyObject *builder, PyObject **args, int n); -#if CYTHON_VECTORCALL -#if PY_VERSION_HEX >= 0x03090000 -#define __Pyx_Object_Vectorcall_CallFromBuilder PyObject_Vectorcall -#else -#define __Pyx_Object_Vectorcall_CallFromBuilder _PyObject_Vectorcall -#endif -#define __Pyx_MakeVectorcallBuilderKwds(n) PyTuple_New(n) -static int __Pyx_VectorcallBuilder_AddArg(PyObject *key, PyObject *value, PyObject *builder, PyObject **args, int n); -static int __Pyx_VectorcallBuilder_AddArgStr(const char *key, PyObject *value, PyObject *builder, PyObject **args, int n); -#else -#define __Pyx_Object_Vectorcall_CallFromBuilder __Pyx_PyObject_FastCallDict -#define __Pyx_MakeVectorcallBuilderKwds(n) __Pyx_PyDict_NewPresized(n) -#define __Pyx_VectorcallBuilder_AddArg(key, value, builder, args, n) PyDict_SetItem(builder, key, value) -#define __Pyx_VectorcallBuilder_AddArgStr(key, value, builder, args, n) PyDict_SetItemString(builder, key, value) -#endif - -/* WriteUnraisableException.proto */ -static void __Pyx_WriteUnraisable(const char *name, int clineno, - int lineno, const char *filename, - int full_traceback, int nogil); - -/* AllocateExtensionType.proto */ -static PyObject *__Pyx_AllocateExtensionType(PyTypeObject *t, int is_final); - -/* CallTypeTraverse.proto */ -#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000) -#define __Pyx_call_type_traverse(o, always_call, visit, arg) 0 -#else -static int __Pyx_call_type_traverse(PyObject *o, int always_call, visitproc visit, void *arg); -#endif - -/* LimitedApiGetTypeDict.proto (used by SetItemOnTypeDict) */ -#if CYTHON_COMPILING_IN_LIMITED_API -static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp); -#endif - -/* SetItemOnTypeDict.proto (used by FixUpExtensionType) */ -static int __Pyx__SetItemOnTypeDict(PyTypeObject *tp, PyObject *k, PyObject *v); -#define __Pyx_SetItemOnTypeDict(tp, k, v) __Pyx__SetItemOnTypeDict((PyTypeObject*)tp, k, v) - -/* FixUpExtensionType.proto */ -static CYTHON_INLINE int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject *type); - -/* PyObjectCallNoArg.proto (used by PyObjectCallMethod0) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); - -/* PyObjectGetMethod.proto (used by PyObjectCallMethod0) */ -#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))) -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method); -#endif - -/* PyObjectCallMethod0.proto (used by PyType_Ready) */ -static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name); - -/* ValidateBasesTuple.proto (used by PyType_Ready) */ -#if CYTHON_COMPILING_IN_CPYTHON || CYTHON_COMPILING_IN_LIMITED_API || CYTHON_USE_TYPE_SPECS -static int __Pyx_validate_bases_tuple(const char *type_name, Py_ssize_t dictoffset, PyObject *bases); -#endif - -/* PyType_Ready.proto */ -CYTHON_UNUSED static int __Pyx_PyType_Ready(PyTypeObject *t); - -/* SetVTable.proto */ -static int __Pyx_SetVtable(PyTypeObject* typeptr , void* vtable); - -/* GetVTable.proto (used by MergeVTables) */ -static void* __Pyx_GetVtable(PyTypeObject *type); - -/* MergeVTables.proto */ -static int __Pyx_MergeVtables(PyTypeObject *type); - -/* DelItemOnTypeDict.proto (used by SetupReduce) */ -static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k); -#define __Pyx_DelItemOnTypeDict(tp, k) __Pyx__DelItemOnTypeDict((PyTypeObject*)tp, k) - -/* SetupReduce.proto */ -static int __Pyx_setup_reduce(PyObject* type_obj); - -/* ImportFrom.proto */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); - -/* dict_setdefault.proto (used by FetchCommonType) */ -static CYTHON_INLINE PyObject *__Pyx_PyDict_SetDefault(PyObject *d, PyObject *key, PyObject *default_value); - -/* AddModuleRef.proto (used by FetchSharedCythonModule) */ -#if ((CYTHON_COMPILING_IN_CPYTHON_FREETHREADING ) ||\ - __PYX_LIMITED_VERSION_HEX < 0x030d0000) - static PyObject *__Pyx_PyImport_AddModuleRef(const char *name); -#else - #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name) -#endif - -/* FetchSharedCythonModule.proto (used by FetchCommonType) */ -static PyObject *__Pyx_FetchSharedCythonABIModule(void); - -/* FetchCommonType.proto (used by CommonTypesMetaclass) */ -static PyTypeObject* __Pyx_FetchCommonTypeFromSpec(PyTypeObject *metaclass, PyObject *module, PyType_Spec *spec, PyObject *bases); - -/* CommonTypesMetaclass.proto (used by CythonFunctionShared) */ -static int __pyx_CommonTypesMetaclass_init(PyObject *module); -#define __Pyx_CommonTypesMetaclass_USED - -/* PyMethodNew.proto (used by CythonFunctionShared) */ -static PyObject *__Pyx_PyMethod_New(PyObject *func, PyObject *self, PyObject *typ); - -/* PyVectorcallFastCallDict.proto (used by CythonFunctionShared) */ -#if CYTHON_METH_FASTCALL && CYTHON_VECTORCALL -static CYTHON_INLINE PyObject *__Pyx_PyVectorcall_FastCallDict(PyObject *func, __pyx_vectorcallfunc vc, PyObject *const *args, size_t nargs, PyObject *kw); -#endif - -/* CythonFunctionShared.proto (used by CythonFunction) */ -#define __Pyx_CyFunction_USED -#define __Pyx_CYFUNCTION_STATICMETHOD 0x01 -#define __Pyx_CYFUNCTION_CLASSMETHOD 0x02 -#define __Pyx_CYFUNCTION_CCLASS 0x04 -#define __Pyx_CYFUNCTION_COROUTINE 0x08 -#define __Pyx_CyFunction_GetClosure(f)\ - (((__pyx_CyFunctionObject *) (f))->func_closure) -#if PY_VERSION_HEX < 0x030900B1 || CYTHON_COMPILING_IN_LIMITED_API - #define __Pyx_CyFunction_GetClassObj(f)\ - (((__pyx_CyFunctionObject *) (f))->func_classobj) -#else - #define __Pyx_CyFunction_GetClassObj(f)\ - ((PyObject*) ((PyCMethodObject *) (f))->mm_class) -#endif -#define __Pyx_CyFunction_SetClassObj(f, classobj)\ - __Pyx__CyFunction_SetClassObj((__pyx_CyFunctionObject *) (f), (classobj)) -#define __Pyx_CyFunction_Defaults(type, f)\ - ((type *)(((__pyx_CyFunctionObject *) (f))->defaults)) -#define __Pyx_CyFunction_SetDefaultsGetter(f, g)\ - ((__pyx_CyFunctionObject *) (f))->defaults_getter = (g) -typedef struct { -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject_HEAD - PyObject *func; -#elif PY_VERSION_HEX < 0x030900B1 - PyCFunctionObject func; -#else - PyCMethodObject func; -#endif -#if CYTHON_COMPILING_IN_LIMITED_API && CYTHON_METH_FASTCALL - __pyx_vectorcallfunc func_vectorcall; -#endif -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *func_weakreflist; -#endif -#if PY_VERSION_HEX < 0x030C0000 || CYTHON_COMPILING_IN_LIMITED_API - PyObject *func_dict; -#endif - PyObject *func_name; - PyObject *func_qualname; - PyObject *func_doc; - PyObject *func_globals; - PyObject *func_code; - PyObject *func_closure; -#if PY_VERSION_HEX < 0x030900B1 || CYTHON_COMPILING_IN_LIMITED_API - PyObject *func_classobj; -#endif - PyObject *defaults; - int flags; - PyObject *defaults_tuple; - PyObject *defaults_kwdict; - PyObject *(*defaults_getter)(PyObject *); - PyObject *func_annotations; - PyObject *func_is_coroutine; -} __pyx_CyFunctionObject; -#undef __Pyx_CyOrPyCFunction_Check -#define __Pyx_CyFunction_Check(obj) __Pyx_TypeCheck(obj, __pyx_mstate_global->__pyx_CyFunctionType) -#define __Pyx_CyOrPyCFunction_Check(obj) __Pyx_TypeCheck2(obj, __pyx_mstate_global->__pyx_CyFunctionType, &PyCFunction_Type) -#define __Pyx_CyFunction_CheckExact(obj) __Pyx_IS_TYPE(obj, __pyx_mstate_global->__pyx_CyFunctionType) -static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void (*cfunc)(void)); -#undef __Pyx_IsSameCFunction -#define __Pyx_IsSameCFunction(func, cfunc) __Pyx__IsSameCyOrCFunction(func, cfunc) -static PyObject *__Pyx_CyFunction_Init(__pyx_CyFunctionObject* op, PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *closure, - PyObject *module, PyObject *globals, - PyObject* code); -static CYTHON_INLINE void __Pyx__CyFunction_SetClassObj(__pyx_CyFunctionObject* f, PyObject* classobj); -static CYTHON_INLINE PyObject *__Pyx_CyFunction_InitDefaults(PyObject *func, - PyTypeObject *defaults_type); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *m, - PyObject *tuple); -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *m, - PyObject *dict); -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *m, - PyObject *dict); -static int __pyx_CyFunction_init(PyObject *module); -#if CYTHON_METH_FASTCALL -static PyObject * __Pyx_CyFunction_Vectorcall_NOARGS(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames); -static PyObject * __Pyx_CyFunction_Vectorcall_O(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames); -static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames); -static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames); -#if CYTHON_COMPILING_IN_LIMITED_API -#define __Pyx_CyFunction_func_vectorcall(f) (((__pyx_CyFunctionObject*)f)->func_vectorcall) -#else -#define __Pyx_CyFunction_func_vectorcall(f) (((PyCFunctionObject*)f)->vectorcall) -#endif -#endif - -/* CythonFunction.proto */ -static PyObject *__Pyx_CyFunction_New(PyMethodDef *ml, - int flags, PyObject* qualname, - PyObject *closure, - PyObject *module, PyObject *globals, - PyObject* code); - -/* CLineInTraceback.proto (used by AddTraceback) */ -#if CYTHON_CLINE_IN_TRACEBACK && CYTHON_CLINE_IN_TRACEBACK_RUNTIME -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); -#else -#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) -#endif - -/* CodeObjectCache.proto (used by AddTraceback) */ -#if CYTHON_COMPILING_IN_LIMITED_API -typedef PyObject __Pyx_CachedCodeObjectType; -#else -typedef PyCodeObject __Pyx_CachedCodeObjectType; -#endif -typedef struct { - __Pyx_CachedCodeObjectType* code_object; - int code_line; -} __Pyx_CodeObjectCacheEntry; -struct __Pyx_CodeObjectCache { - int count; - int max_count; - __Pyx_CodeObjectCacheEntry* entries; - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - __pyx_atomic_int_type accessor_count; - #endif -}; -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); -static __Pyx_CachedCodeObjectType *__pyx_find_code_object(int code_line); -static void __pyx_insert_code_object(int code_line, __Pyx_CachedCodeObjectType* code_object); - -/* AddTraceback.proto */ -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename); - -/* BufferStructDeclare.proto */ -typedef struct { - Py_ssize_t shape, strides, suboffsets; -} __Pyx_Buf_DimInfo; -typedef struct { - size_t refcount; - Py_buffer pybuffer; -} __Pyx_Buffer; -typedef struct { - __Pyx_Buffer *rcbuffer; - char *data; - __Pyx_Buf_DimInfo diminfo[8]; -} __Pyx_LocalBuf_ND; - -/* MemviewRefcount.proto */ -static CYTHON_INLINE int __pyx_add_acquisition_count_locked( - __pyx_atomic_int_type *acquisition_count, PyThread_type_lock lock); -static CYTHON_INLINE int __pyx_sub_acquisition_count_locked( - __pyx_atomic_int_type *acquisition_count, PyThread_type_lock lock); -#define __pyx_get_slice_count_pointer(memview) (&memview->acquisition_count) -#define __PYX_INC_MEMVIEW(slice, have_gil) __Pyx_INC_MEMVIEW(slice, have_gil, __LINE__) -#define __PYX_XCLEAR_MEMVIEW(slice, have_gil) __Pyx_XCLEAR_MEMVIEW(slice, have_gil, __LINE__) -static CYTHON_INLINE void __Pyx_INC_MEMVIEW(__Pyx_memviewslice *, int, int); -static CYTHON_INLINE void __Pyx_XCLEAR_MEMVIEW(__Pyx_memviewslice *, int, int); - -/* MemviewSliceIsContig.proto */ -static int __pyx_memviewslice_is_contig(const __Pyx_memviewslice mvs, char order, int ndim); - -/* OverlappingSlices.proto */ -static int __pyx_slices_overlap(__Pyx_memviewslice *slice1, - __Pyx_memviewslice *slice2, - int ndim, size_t itemsize); - -/* MemviewSliceInit.proto */ -static int __Pyx_init_memviewslice( - struct __pyx_memoryview_obj *memview, - int ndim, - __Pyx_memviewslice *memviewslice, - int memview_is_new_reference); - -/* IsLittleEndian.proto (used by BufferFormatCheck) */ -static CYTHON_INLINE int __Pyx_Is_Little_Endian(void); - -/* BufferFormatCheck.proto (used by MemviewSliceValidateAndInit) */ -static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts); -static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx, - __Pyx_BufFmt_StackElem* stack, - const __Pyx_TypeInfo* type); - -/* TypeInfoCompare.proto (used by MemviewSliceValidateAndInit) */ -static int __pyx_typeinfo_cmp(const __Pyx_TypeInfo *a, const __Pyx_TypeInfo *b); - -/* MemviewSliceValidateAndInit.export */ -static int __Pyx_ValidateAndInit_memviewslice( - int *axes_specs, - int c_or_f_flag, - int buf_flags, - int ndim, - const __Pyx_TypeInfo *dtype, - __Pyx_BufFmt_StackElem stack[], - __Pyx_memviewslice *memviewslice, - PyObject *original_obj); - -/* ObjectToMemviewSlice.proto */ -static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsds_double(PyObject *, int writable_flag); - -/* ObjectToMemviewSlice.proto */ -static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(PyObject *, int writable_flag); - -/* MemviewDtypeToObject.proto */ -static CYTHON_INLINE PyObject *__pyx_memview_get_double(const char *itemp); -static CYTHON_INLINE int __pyx_memview_set_double(char *itemp, PyObject *obj); - -/* ObjectToMemviewSlice.proto */ -static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_ds_int(PyObject *, int writable_flag); - -/* ObjectToMemviewSlice.proto */ -static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_ds_double(PyObject *, int writable_flag); - -/* ObjectToMemviewSlice.proto */ -static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(PyObject *, int writable_flag); - -/* MemviewSliceCopy.proto */ -static __Pyx_memviewslice -__pyx_memoryview_copy_new_contig(const __Pyx_memviewslice *from_mvs, - const char *mode, int ndim, - size_t sizeof_dtype, int contig_flag, - int dtype_is_object); - -/* CIntFromPy.proto */ -static CYTHON_INLINE int __Pyx_PyLong_As_int(PyObject *); - -/* CIntFromPy.proto */ -static CYTHON_INLINE size_t __Pyx_PyLong_As_size_t(PyObject *); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyLong_From_int(int value); - -/* PyObjectCall2Args.proto (used by PyObjectCallMethod1) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); - -/* PyObjectCallMethod1.proto (used by UpdateUnpickledDict) */ -static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg); - -/* UpdateUnpickledDict.proto */ -static int __Pyx_UpdateUnpickledDict(PyObject *obj, PyObject *state, Py_ssize_t index); - -/* CheckUnpickleChecksum.proto */ -static CYTHON_INLINE int __Pyx_CheckUnpickleChecksum(long checksum, long checksum1, long checksum2, long checksum3, const char *members); - -/* CIntFromPy.proto */ -static CYTHON_INLINE long __Pyx_PyLong_As_long(PyObject *); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyLong_From_long(long value); - -/* CIntFromPy.proto */ -static CYTHON_INLINE char __Pyx_PyLong_As_char(PyObject *); - -/* FormatTypeName.proto */ -#if CYTHON_COMPILING_IN_LIMITED_API -typedef PyObject *__Pyx_TypeName; -#define __Pyx_FMT_TYPENAME "%U" -#define __Pyx_DECREF_TypeName(obj) Py_XDECREF(obj) -#if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 -#define __Pyx_PyType_GetFullyQualifiedName PyType_GetFullyQualifiedName -#else -static __Pyx_TypeName __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp); -#endif -#else // !LIMITED_API -typedef const char *__Pyx_TypeName; -#define __Pyx_FMT_TYPENAME "%.200s" -#define __Pyx_PyType_GetFullyQualifiedName(tp) ((tp)->tp_name) -#define __Pyx_DECREF_TypeName(obj) -#endif - -/* GetRuntimeVersion.proto */ -#if __PYX_LIMITED_VERSION_HEX < 0x030b0000 -static unsigned long __Pyx_cached_runtime_version = 0; -static void __Pyx_init_runtime_version(void); -#else -#define __Pyx_init_runtime_version() -#endif -static unsigned long __Pyx_get_runtime_version(void); - -/* CheckBinaryVersion.proto */ -static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer); - -/* DecompressString.proto */ -static PyObject *__Pyx_DecompressString(const char *s, Py_ssize_t length, int algo); - -/* MultiPhaseInitModuleState.proto */ -#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE -static PyObject *__Pyx_State_FindModule(void*); -static int __Pyx_State_AddModule(PyObject* module, void*); -static int __Pyx_State_RemoveModule(void*); -#elif CYTHON_USE_MODULE_STATE -#define __Pyx_State_FindModule PyState_FindModule -#define __Pyx_State_AddModule PyState_AddModule -#define __Pyx_State_RemoveModule PyState_RemoveModule -#endif - -/* #### Code section: module_declarations ### */ -/* CythonABIVersion.proto */ -#if CYTHON_COMPILING_IN_LIMITED_API - #if CYTHON_METH_FASTCALL - #define __PYX_FASTCALL_ABI_SUFFIX "_fastcall" - #else - #define __PYX_FASTCALL_ABI_SUFFIX - #endif - #define __PYX_LIMITED_ABI_SUFFIX "limited" __PYX_FASTCALL_ABI_SUFFIX __PYX_AM_SEND_ABI_SUFFIX -#else - #define __PYX_LIMITED_ABI_SUFFIX -#endif -#if __PYX_HAS_PY_AM_SEND == 1 - #define __PYX_AM_SEND_ABI_SUFFIX -#elif __PYX_HAS_PY_AM_SEND == 2 - #define __PYX_AM_SEND_ABI_SUFFIX "amsendbackport" -#else - #define __PYX_AM_SEND_ABI_SUFFIX "noamsend" -#endif -#ifndef __PYX_MONITORING_ABI_SUFFIX - #define __PYX_MONITORING_ABI_SUFFIX -#endif -#if CYTHON_USE_TP_FINALIZE - #define __PYX_TP_FINALIZE_ABI_SUFFIX -#else - #define __PYX_TP_FINALIZE_ABI_SUFFIX "nofinalize" -#endif -#if CYTHON_USE_FREELISTS || !defined(__Pyx_AsyncGen_USED) - #define __PYX_FREELISTS_ABI_SUFFIX -#else - #define __PYX_FREELISTS_ABI_SUFFIX "nofreelists" -#endif -#define CYTHON_ABI __PYX_ABI_VERSION __PYX_LIMITED_ABI_SUFFIX __PYX_MONITORING_ABI_SUFFIX __PYX_TP_FINALIZE_ABI_SUFFIX __PYX_FREELISTS_ABI_SUFFIX __PYX_AM_SEND_ABI_SUFFIX -#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI -#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "." - -static PyObject *__pyx_array_get_memview(struct __pyx_array_obj *__pyx_v_self); /* proto*/ -static char *__pyx_memoryview_get_item_pointer(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index); /* proto*/ -static PyObject *__pyx_memoryview_is_slice(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_obj); /* proto*/ -static PyObject *__pyx_memoryview_setitem_slice_assignment(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_dst, PyObject *__pyx_v_src); /* proto*/ -static PyObject *__pyx_memoryview_setitem_slice_assign_scalar(struct __pyx_memoryview_obj *__pyx_v_self, struct __pyx_memoryview_obj *__pyx_v_dst, PyObject *__pyx_v_value); /* proto*/ -static PyObject *__pyx_memoryview_setitem_indexed(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value); /* proto*/ -static PyObject *__pyx_memoryview_convert_item_to_object(struct __pyx_memoryview_obj *__pyx_v_self, char *__pyx_v_itemp); /* proto*/ -static PyObject *__pyx_memoryview_assign_item_from_object(struct __pyx_memoryview_obj *__pyx_v_self, char *__pyx_v_itemp, PyObject *__pyx_v_value); /* proto*/ -static PyObject *__pyx_memoryview__get_base(struct __pyx_memoryview_obj *__pyx_v_self); /* proto*/ -static PyObject *__pyx_memoryviewslice_convert_item_to_object(struct __pyx_memoryviewslice_obj *__pyx_v_self, char *__pyx_v_itemp); /* proto*/ -static PyObject *__pyx_memoryviewslice_assign_item_from_object(struct __pyx_memoryviewslice_obj *__pyx_v_self, char *__pyx_v_itemp, PyObject *__pyx_v_value); /* proto*/ -static PyObject *__pyx_memoryviewslice__get_base(struct __pyx_memoryviewslice_obj *__pyx_v_self); /* proto*/ - -/* Module declarations from "cython.view" */ - -/* Module declarations from "cython.dataclasses" */ - -/* Module declarations from "cython" */ - -/* Module declarations from "libc.math" */ - -/* Module declarations from "pyvale.sensorsim.cython.rastercyth" */ -static PyObject *__pyx_collections_abc_Sequence = 0; -static PyObject *generic = 0; -static PyObject *strided = 0; -static PyObject *indirect = 0; -static PyObject *contiguous = 0; -static PyObject *indirect_contiguous = 0; -static int __pyx_memoryview_thread_locks_used; -static PyThread_type_lock __pyx_memoryview_thread_locks[8]; -static CYTHON_INLINE size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(double, double, double); /*proto*/ -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__Pyx_memviewslice); /*proto*/ -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__Pyx_memviewslice); /*proto*/ -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__Pyx_memviewslice, __Pyx_memviewslice); /*proto*/ -static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(double); /*proto*/ -static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(double, int); /*proto*/ -static CYTHON_INLINE __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_mult_mat44_by_vec3(__Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice); /*proto*/ -static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_world_to_raster_coords(__Pyx_memviewslice, __Pyx_memviewslice, double, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice); /*proto*/ -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice); /*proto*/ -static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__Pyx_memviewslice, int, int __pyx_skip_dispatch); /*proto*/ -static int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__Pyx_memviewslice, int, __Pyx_memviewslice); /*proto*/ -static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_static_frame(__Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, PyObject *, int __pyx_skip_dispatch); /*proto*/ -static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_deform_frame(__Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, PyObject *, __Pyx_memviewslice, int __pyx_skip_dispatch); /*proto*/ -static size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__raster_frame(__Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, double, int, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice, __Pyx_memviewslice); /*proto*/ -static int __pyx_array_allocate_buffer(struct __pyx_array_obj *); /*proto*/ -static struct __pyx_array_obj *__pyx_array_new(PyObject *, Py_ssize_t, char *, char const *, char *); /*proto*/ -static PyObject *__pyx_memoryview_new(PyObject *, int, int, __Pyx_TypeInfo const *); /*proto*/ -static CYTHON_INLINE int __pyx_memoryview_check(PyObject *); /*proto*/ -static PyObject *_unellipsify(PyObject *, int); /*proto*/ -static int assert_direct_dimensions(Py_ssize_t *, int); /*proto*/ -static struct __pyx_memoryview_obj *__pyx_memview_slice(struct __pyx_memoryview_obj *, PyObject *); /*proto*/ -static int __pyx_memoryview_slice_memviewslice(__Pyx_memviewslice *, Py_ssize_t, Py_ssize_t, Py_ssize_t, int, int, int *, Py_ssize_t, Py_ssize_t, Py_ssize_t, int, int, int, int); /*proto*/ -static char *__pyx_pybuffer_index(Py_buffer *, char *, Py_ssize_t, Py_ssize_t); /*proto*/ -static int __pyx_memslice_transpose(__Pyx_memviewslice *); /*proto*/ -static PyObject *__pyx_memoryview_fromslice(__Pyx_memviewslice, int, PyObject *(*)(char *), int (*)(char *, PyObject *), int); /*proto*/ -static __Pyx_memviewslice *__pyx_memoryview_get_slice_from_memoryview(struct __pyx_memoryview_obj *, __Pyx_memviewslice *); /*proto*/ -static void __pyx_memoryview_slice_copy(struct __pyx_memoryview_obj *, __Pyx_memviewslice *); /*proto*/ -static PyObject *__pyx_memoryview_copy_object(struct __pyx_memoryview_obj *); /*proto*/ -static PyObject *__pyx_memoryview_copy_object_from_slice(struct __pyx_memoryview_obj *, __Pyx_memviewslice *); /*proto*/ -static Py_ssize_t abs_py_ssize_t(Py_ssize_t); /*proto*/ -static char __pyx_get_best_slice_order(__Pyx_memviewslice *, int); /*proto*/ -static void _copy_strided_to_strided(char *, Py_ssize_t *, char *, Py_ssize_t *, Py_ssize_t *, Py_ssize_t *, int, size_t); /*proto*/ -static void copy_strided_to_strided(__Pyx_memviewslice *, __Pyx_memviewslice *, int, size_t); /*proto*/ -static Py_ssize_t __pyx_memoryview_slice_get_size(__Pyx_memviewslice *, int); /*proto*/ -static Py_ssize_t __pyx_fill_contig_strides_array(Py_ssize_t *, Py_ssize_t *, Py_ssize_t, int, char); /*proto*/ -static void *__pyx_memoryview_copy_data_to_temp(__Pyx_memviewslice *, __Pyx_memviewslice *, char, int); /*proto*/ -static int __pyx_memoryview_err_extents(int, Py_ssize_t, Py_ssize_t); /*proto*/ -static int __pyx_memoryview_err_dim(PyObject *, PyObject *, int); /*proto*/ -static int __pyx_memoryview_err(PyObject *, PyObject *); /*proto*/ -static int __pyx_memoryview_err_no_memory(void); /*proto*/ -static int __pyx_memoryview_copy_contents(__Pyx_memviewslice, __Pyx_memviewslice, int, int, int); /*proto*/ -static void __pyx_memoryview_broadcast_leading(__Pyx_memviewslice *, int, int); /*proto*/ -static void __pyx_memoryview_refcount_copying(__Pyx_memviewslice *, int, int, int); /*proto*/ -static void __pyx_memoryview_refcount_objects_in_slice_with_gil(char *, Py_ssize_t *, Py_ssize_t *, int, int); /*proto*/ -static void __pyx_memoryview_refcount_objects_in_slice(char *, Py_ssize_t *, Py_ssize_t *, int, int); /*proto*/ -static void __pyx_memoryview_slice_assign_scalar(__Pyx_memviewslice *, int, size_t, void *, int); /*proto*/ -static void __pyx_memoryview__slice_assign_scalar(char *, Py_ssize_t *, Py_ssize_t *, int, size_t, void *); /*proto*/ -static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *, PyObject *); /*proto*/ -/* #### Code section: typeinfo ### */ -static const __Pyx_TypeInfo __Pyx_TypeInfo_double = { "double", NULL, sizeof(double), { 0 }, 0, 'R', 0, 0 }; -static const __Pyx_TypeInfo __Pyx_TypeInfo_size_t = { "size_t", NULL, sizeof(size_t), { 0 }, 0, __PYX_IS_UNSIGNED(size_t) ? 'U' : 'I', __PYX_IS_UNSIGNED(size_t), 0 }; -static const __Pyx_TypeInfo __Pyx_TypeInfo_int = { "int", NULL, sizeof(int), { 0 }, 0, __PYX_IS_UNSIGNED(int) ? 'U' : 'I', __PYX_IS_UNSIGNED(int), 0 }; -/* #### Code section: before_global_var ### */ -#define __Pyx_MODULE_NAME "pyvale.sensorsim.cython.rastercyth" -extern int __pyx_module_is_main_pyvale__sensorsim__cython__rastercyth; -int __pyx_module_is_main_pyvale__sensorsim__cython__rastercyth = 0; - -/* Implementation of "pyvale.sensorsim.cython.rastercyth" */ -/* #### Code section: global_var ### */ -static PyObject *__pyx_builtin___import__; -static PyObject *__pyx_builtin_enumerate; -static PyObject *__pyx_builtin_Ellipsis; -static PyObject *__pyx_builtin_id; -/* #### Code section: string_decls ### */ -static const char __pyx_k_NOTE_this_module_is_a_feature_u[] = "\nNOTE: this module is a feature under developement.\n"; -/* #### Code section: decls ### */ -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array___cinit__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_shape, Py_ssize_t __pyx_v_itemsize, PyObject *__pyx_v_format, PyObject *__pyx_v_mode, int __pyx_v_allocate_buffer); /* proto */ -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array_2__getbuffer__(struct __pyx_array_obj *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /* proto */ -static void __pyx_array___pyx_pf_15View_dot_MemoryView_5array_4__dealloc__(struct __pyx_array_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_5array_7memview___get__(struct __pyx_array_obj *__pyx_v_self); /* proto */ -static Py_ssize_t __pyx_array___pyx_pf_15View_dot_MemoryView_5array_6__len__(struct __pyx_array_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_array___pyx_pf_15View_dot_MemoryView_5array_8__getattr__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_attr); /* proto */ -static PyObject *__pyx_array___pyx_pf_15View_dot_MemoryView_5array_10__getitem__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_item); /* proto */ -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array_12__setitem__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_item, PyObject *__pyx_v_value); /* proto */ -static PyObject *__pyx_pf___pyx_array___reduce_cython__(CYTHON_UNUSED struct __pyx_array_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_array_2__setstate_cython__(CYTHON_UNUSED struct __pyx_array_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state); /* proto */ -static int __pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum___init__(struct __pyx_MemviewEnum_obj *__pyx_v_self, PyObject *__pyx_v_name); /* proto */ -static PyObject *__pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum_2__repr__(struct __pyx_MemviewEnum_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_MemviewEnum___reduce_cython__(struct __pyx_MemviewEnum_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_MemviewEnum_2__setstate_cython__(struct __pyx_MemviewEnum_obj *__pyx_v_self, PyObject *__pyx_v___pyx_state); /* proto */ -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview___cinit__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_obj, int __pyx_v_flags, int __pyx_v_dtype_is_object); /* proto */ -static void __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_2__dealloc__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_4__getitem__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index); /* proto */ -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_6__setitem__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value); /* proto */ -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_8__getbuffer__(struct __pyx_memoryview_obj *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_1T___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4base___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_5shape___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_7strides___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_10suboffsets___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4ndim___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_8itemsize___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_6nbytes___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4size___get__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static Py_ssize_t __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_10__len__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_12__repr__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_14__str__(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_16is_c_contig(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_18is_f_contig(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_20copy(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_22copy_fortran(struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_memoryview___reduce_cython__(CYTHON_UNUSED struct __pyx_memoryview_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_memoryview_2__setstate_cython__(CYTHON_UNUSED struct __pyx_memoryview_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state); /* proto */ -static void __pyx_memoryviewslice___pyx_pf_15View_dot_MemoryView_16_memoryviewslice___dealloc__(struct __pyx_memoryviewslice_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_memoryviewslice___reduce_cython__(CYTHON_UNUSED struct __pyx_memoryviewslice_obj *__pyx_v_self); /* proto */ -static PyObject *__pyx_pf___pyx_memoryviewslice_2__setstate_cython__(CYTHON_UNUSED struct __pyx_memoryviewslice_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_pf_15View_dot_MemoryView___pyx_unpickle_Enum(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state); /* proto */ -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_average_image(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_image_subpx, int __pyx_v_sub_samp); /* proto */ -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_2raster_static_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data); /* proto */ -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_4raster_deform_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data, __Pyx_memviewslice __pyx_v_field_disp); /* proto */ -static PyObject *__pyx_tp_new_array(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static PyObject *__pyx_tp_new_Enum(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static PyObject *__pyx_tp_new_memoryview(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -static PyObject *__pyx_tp_new__memoryviewslice(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ -/* #### Code section: late_includes ### */ -/* #### Code section: module_state ### */ -/* SmallCodeConfig */ -#ifndef CYTHON_SMALL_CODE -#if defined(__clang__) - #define CYTHON_SMALL_CODE -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) - #define CYTHON_SMALL_CODE __attribute__((cold)) -#else - #define CYTHON_SMALL_CODE -#endif -#endif - -typedef struct { - PyObject *__pyx_d; - PyObject *__pyx_b; - PyObject *__pyx_cython_runtime; - PyObject *__pyx_empty_tuple; - PyObject *__pyx_empty_bytes; - PyObject *__pyx_empty_unicode; - PyObject *__pyx_type___pyx_array; - PyObject *__pyx_type___pyx_MemviewEnum; - PyObject *__pyx_type___pyx_memoryview; - PyObject *__pyx_type___pyx_memoryviewslice; - PyTypeObject *__pyx_array_type; - PyTypeObject *__pyx_MemviewEnum_type; - PyTypeObject *__pyx_memoryview_type; - PyTypeObject *__pyx_memoryviewslice_type; - __Pyx_CachedCFunction __pyx_umethod_PyDict_Type_items; - __Pyx_CachedCFunction __pyx_umethod_PyDict_Type_pop; - __Pyx_CachedCFunction __pyx_umethod_PyDict_Type_values; - PyObject *__pyx_slice[1]; - PyObject *__pyx_tuple[3]; - PyObject *__pyx_codeobj_tab[3]; - PyObject *__pyx_string_tab[144]; - PyObject *__pyx_number_tab[8]; -/* #### Code section: module_state_contents ### */ -/* CommonTypesMetaclass.module_state_decls */ -PyTypeObject *__pyx_CommonTypesMetaclassType; - -/* CachedMethodType.module_state_decls */ -#if CYTHON_COMPILING_IN_LIMITED_API -PyObject *__Pyx_CachedMethodType; -#endif - -/* CythonFunctionShared.module_state_decls */ -PyTypeObject *__pyx_CyFunctionType; - -/* CodeObjectCache.module_state_decls */ -struct __Pyx_CodeObjectCache __pyx_code_cache; - -/* #### Code section: module_state_end ### */ -} __pyx_mstatetype; - -#if CYTHON_USE_MODULE_STATE -#ifdef __cplusplus -namespace { -extern struct PyModuleDef __pyx_moduledef; -} /* anonymous namespace */ -#else -static struct PyModuleDef __pyx_moduledef; -#endif - -#define __pyx_mstate_global (__Pyx_PyModule_GetState(__Pyx_State_FindModule(&__pyx_moduledef))) - -#define __pyx_m (__Pyx_State_FindModule(&__pyx_moduledef)) -#else -static __pyx_mstatetype __pyx_mstate_global_static = -#ifdef __cplusplus - {}; -#else - {0}; -#endif -static __pyx_mstatetype * const __pyx_mstate_global = &__pyx_mstate_global_static; -#endif -/* #### Code section: constant_name_defines ### */ -#define __pyx_kp_u_ __pyx_string_tab[0] -#define __pyx_kp_u_All_dimensions_preceding_dimensi __pyx_string_tab[1] -#define __pyx_kp_u_Buffer_view_does_not_expose_stri __pyx_string_tab[2] -#define __pyx_kp_u_Can_only_create_a_buffer_that_is __pyx_string_tab[3] -#define __pyx_kp_u_Cannot_assign_to_read_only_memor __pyx_string_tab[4] -#define __pyx_kp_u_Cannot_create_writable_memory_vi __pyx_string_tab[5] -#define __pyx_kp_u_Cannot_index_with_type __pyx_string_tab[6] -#define __pyx_kp_u_Cannot_transpose_memoryview_with __pyx_string_tab[7] -#define __pyx_kp_u_Dimension_d_is_not_direct __pyx_string_tab[8] -#define __pyx_kp_u_Empty_shape_tuple_for_cython_arr __pyx_string_tab[9] -#define __pyx_kp_u_Index_out_of_bounds_axis_d __pyx_string_tab[10] -#define __pyx_kp_u_Indirect_dimensions_not_supporte __pyx_string_tab[11] -#define __pyx_kp_u_Invalid_mode_expected_c_or_fortr __pyx_string_tab[12] -#define __pyx_kp_u_Invalid_shape_in_axis __pyx_string_tab[13] -#define __pyx_kp_u_MemoryView_of __pyx_string_tab[14] -#define __pyx_kp_u_Note_that_Cython_is_deliberately __pyx_string_tab[15] -#define __pyx_kp_u_Out_of_bounds_on_buffer_access_a __pyx_string_tab[16] -#define __pyx_kp_u_Step_may_not_be_zero_axis_d __pyx_string_tab[17] -#define __pyx_kp_u_Unable_to_convert_item_to_object __pyx_string_tab[18] -#define __pyx_kp_u__2 __pyx_string_tab[19] -#define __pyx_kp_u__3 __pyx_string_tab[20] -#define __pyx_kp_u__4 __pyx_string_tab[21] -#define __pyx_kp_u__5 __pyx_string_tab[22] -#define __pyx_kp_u__6 __pyx_string_tab[23] -#define __pyx_kp_u_add_note __pyx_string_tab[24] -#define __pyx_kp_u_and __pyx_string_tab[25] -#define __pyx_kp_u_at_0x __pyx_string_tab[26] -#define __pyx_kp_u_collections_abc __pyx_string_tab[27] -#define __pyx_kp_u_contiguous_and_direct __pyx_string_tab[28] -#define __pyx_kp_u_contiguous_and_indirect __pyx_string_tab[29] -#define __pyx_kp_u_cython_double __pyx_string_tab[30] -#define __pyx_kp_u_cython_int __pyx_string_tab[31] -#define __pyx_kp_u_cython_size_t __pyx_string_tab[32] -#define __pyx_kp_u_disable __pyx_string_tab[33] -#define __pyx_kp_u_enable __pyx_string_tab[34] -#define __pyx_kp_u_gc __pyx_string_tab[35] -#define __pyx_kp_u_got __pyx_string_tab[36] -#define __pyx_kp_u_got_differing_extents_in_dimensi __pyx_string_tab[37] -#define __pyx_kp_u_isenabled __pyx_string_tab[38] -#define __pyx_kp_u_itemsize_0_for_cython_array __pyx_string_tab[39] -#define __pyx_kp_u_no_default___reduce___due_to_non __pyx_string_tab[40] -#define __pyx_kp_u_object __pyx_string_tab[41] -#define __pyx_kp_u_self_name_is_not_None __pyx_string_tab[42] -#define __pyx_kp_u_src_pyvale_sensorsim_cython_rast __pyx_string_tab[43] -#define __pyx_kp_u_strided_and_direct __pyx_string_tab[44] -#define __pyx_kp_u_strided_and_direct_or_indirect __pyx_string_tab[45] -#define __pyx_kp_u_strided_and_indirect __pyx_string_tab[46] -#define __pyx_kp_u_unable_to_allocate_array_data __pyx_string_tab[47] -#define __pyx_kp_u_unable_to_allocate_shape_and_str __pyx_string_tab[48] -#define __pyx_n_u_ASCII __pyx_string_tab[49] -#define __pyx_n_u_CameraData __pyx_string_tab[50] -#define __pyx_n_u_Ellipsis __pyx_string_tab[51] -#define __pyx_n_u_Pyx_PyDict_NextRef __pyx_string_tab[52] -#define __pyx_n_u_Sequence __pyx_string_tab[53] -#define __pyx_n_u_View_MemoryView __pyx_string_tab[54] -#define __pyx_n_u_abc __pyx_string_tab[55] -#define __pyx_n_u_allocate_buffer __pyx_string_tab[56] -#define __pyx_n_u_asarray __pyx_string_tab[57] -#define __pyx_n_u_asyncio_coroutines __pyx_string_tab[58] -#define __pyx_n_u_average_image __pyx_string_tab[59] -#define __pyx_n_u_base __pyx_string_tab[60] -#define __pyx_n_u_c __pyx_string_tab[61] -#define __pyx_n_u_cam_data __pyx_string_tab[62] -#define __pyx_n_u_class __pyx_string_tab[63] -#define __pyx_n_u_class_getitem __pyx_string_tab[64] -#define __pyx_n_u_cline_in_traceback __pyx_string_tab[65] -#define __pyx_n_u_connect __pyx_string_tab[66] -#define __pyx_n_u_coords __pyx_string_tab[67] -#define __pyx_n_u_count __pyx_string_tab[68] -#define __pyx_n_u_dict __pyx_string_tab[69] -#define __pyx_n_u_dtype __pyx_string_tab[70] -#define __pyx_n_u_dtype_is_object __pyx_string_tab[71] -#define __pyx_n_u_empty __pyx_string_tab[72] -#define __pyx_n_u_encode __pyx_string_tab[73] -#define __pyx_n_u_enumerate __pyx_string_tab[74] -#define __pyx_n_u_error __pyx_string_tab[75] -#define __pyx_n_u_field_disp __pyx_string_tab[76] -#define __pyx_n_u_fields_to_render __pyx_string_tab[77] -#define __pyx_n_u_flags __pyx_string_tab[78] -#define __pyx_n_u_float64 __pyx_string_tab[79] -#define __pyx_n_u_format __pyx_string_tab[80] -#define __pyx_n_u_fortran __pyx_string_tab[81] -#define __pyx_n_u_full __pyx_string_tab[82] -#define __pyx_n_u_func __pyx_string_tab[83] -#define __pyx_n_u_getstate __pyx_string_tab[84] -#define __pyx_n_u_id __pyx_string_tab[85] -#define __pyx_n_u_image_dims __pyx_string_tab[86] -#define __pyx_n_u_image_dist __pyx_string_tab[87] -#define __pyx_n_u_image_subpx __pyx_string_tab[88] -#define __pyx_n_u_import __pyx_string_tab[89] -#define __pyx_n_u_index __pyx_string_tab[90] -#define __pyx_n_u_is_coroutine __pyx_string_tab[91] -#define __pyx_n_u_items __pyx_string_tab[92] -#define __pyx_n_u_itemsize __pyx_string_tab[93] -#define __pyx_n_u_main __pyx_string_tab[94] -#define __pyx_n_u_memview __pyx_string_tab[95] -#define __pyx_n_u_mode __pyx_string_tab[96] -#define __pyx_n_u_module __pyx_string_tab[97] -#define __pyx_n_u_name __pyx_string_tab[98] -#define __pyx_n_u_name_2 __pyx_string_tab[99] -#define __pyx_n_u_ndim __pyx_string_tab[100] -#define __pyx_n_u_new __pyx_string_tab[101] -#define __pyx_n_u_np __pyx_string_tab[102] -#define __pyx_n_u_numpy __pyx_string_tab[103] -#define __pyx_n_u_obj __pyx_string_tab[104] -#define __pyx_n_u_pack __pyx_string_tab[105] -#define __pyx_n_u_pixels_num __pyx_string_tab[106] -#define __pyx_n_u_pop __pyx_string_tab[107] -#define __pyx_n_u_pyvale_sensorsim_cameradata __pyx_string_tab[108] -#define __pyx_n_u_pyvale_sensorsim_cython_rastercy __pyx_string_tab[109] -#define __pyx_n_u_pyx_checksum __pyx_string_tab[110] -#define __pyx_n_u_pyx_state __pyx_string_tab[111] -#define __pyx_n_u_pyx_type __pyx_string_tab[112] -#define __pyx_n_u_pyx_unpickle_Enum __pyx_string_tab[113] -#define __pyx_n_u_pyx_vtable __pyx_string_tab[114] -#define __pyx_n_u_qualname __pyx_string_tab[115] -#define __pyx_n_u_raster_deform_frame __pyx_string_tab[116] -#define __pyx_n_u_raster_static_frame __pyx_string_tab[117] -#define __pyx_n_u_reduce __pyx_string_tab[118] -#define __pyx_n_u_reduce_cython __pyx_string_tab[119] -#define __pyx_n_u_reduce_ex __pyx_string_tab[120] -#define __pyx_n_u_register __pyx_string_tab[121] -#define __pyx_n_u_set_name __pyx_string_tab[122] -#define __pyx_n_u_setdefault __pyx_string_tab[123] -#define __pyx_n_u_setstate __pyx_string_tab[124] -#define __pyx_n_u_setstate_cython __pyx_string_tab[125] -#define __pyx_n_u_shape __pyx_string_tab[126] -#define __pyx_n_u_size __pyx_string_tab[127] -#define __pyx_n_u_start __pyx_string_tab[128] -#define __pyx_n_u_step __pyx_string_tab[129] -#define __pyx_n_u_stop __pyx_string_tab[130] -#define __pyx_n_u_struct __pyx_string_tab[131] -#define __pyx_n_u_sub_samp __pyx_string_tab[132] -#define __pyx_n_u_test __pyx_string_tab[133] -#define __pyx_n_u_unpack __pyx_string_tab[134] -#define __pyx_n_u_update __pyx_string_tab[135] -#define __pyx_n_u_values __pyx_string_tab[136] -#define __pyx_n_u_world_to_cam_mat __pyx_string_tab[137] -#define __pyx_n_u_x __pyx_string_tab[138] -#define __pyx_n_u_zeros __pyx_string_tab[139] -#define __pyx_kp_b_iso88591_81_81_81_G6_0_aq_Jar_Jar_r_1Cz __pyx_string_tab[140] -#define __pyx_kp_b_iso88591__7 __pyx_string_tab[141] -#define __pyx_kp_b_iso88591_y_1_r_Q_c_a_1A_c_a_1A_r_D_b_F_1 __pyx_string_tab[142] -#define __pyx_n_b_O __pyx_string_tab[143] -#define __pyx_float_0_0 __pyx_number_tab[0] -#define __pyx_float_1_0e6 __pyx_number_tab[1] -#define __pyx_int_0 __pyx_number_tab[2] -#define __pyx_int_neg_1 __pyx_number_tab[3] -#define __pyx_int_1 __pyx_number_tab[4] -#define __pyx_int_2 __pyx_number_tab[5] -#define __pyx_int_4 __pyx_number_tab[6] -#define __pyx_int_136983863 __pyx_number_tab[7] -/* #### Code section: module_state_clear ### */ -#if CYTHON_USE_MODULE_STATE -static CYTHON_SMALL_CODE int __pyx_m_clear(PyObject *m) { - __pyx_mstatetype *clear_module_state = __Pyx_PyModule_GetState(m); - if (!clear_module_state) return 0; - Py_CLEAR(clear_module_state->__pyx_d); - Py_CLEAR(clear_module_state->__pyx_b); - Py_CLEAR(clear_module_state->__pyx_cython_runtime); - Py_CLEAR(clear_module_state->__pyx_empty_tuple); - Py_CLEAR(clear_module_state->__pyx_empty_bytes); - Py_CLEAR(clear_module_state->__pyx_empty_unicode); - #if CYTHON_PEP489_MULTI_PHASE_INIT - __Pyx_State_RemoveModule(NULL); - #endif - Py_CLEAR(clear_module_state->__pyx_array_type); - Py_CLEAR(clear_module_state->__pyx_type___pyx_array); - Py_CLEAR(clear_module_state->__pyx_MemviewEnum_type); - Py_CLEAR(clear_module_state->__pyx_type___pyx_MemviewEnum); - Py_CLEAR(clear_module_state->__pyx_memoryview_type); - Py_CLEAR(clear_module_state->__pyx_type___pyx_memoryview); - Py_CLEAR(clear_module_state->__pyx_memoryviewslice_type); - Py_CLEAR(clear_module_state->__pyx_type___pyx_memoryviewslice); - for (int i=0; i<1; ++i) { Py_CLEAR(clear_module_state->__pyx_slice[i]); } - for (int i=0; i<3; ++i) { Py_CLEAR(clear_module_state->__pyx_tuple[i]); } - for (int i=0; i<3; ++i) { Py_CLEAR(clear_module_state->__pyx_codeobj_tab[i]); } - for (int i=0; i<144; ++i) { Py_CLEAR(clear_module_state->__pyx_string_tab[i]); } - for (int i=0; i<8; ++i) { Py_CLEAR(clear_module_state->__pyx_number_tab[i]); } -/* #### Code section: module_state_clear_contents ### */ -/* CommonTypesMetaclass.module_state_clear */ -Py_CLEAR(clear_module_state->__pyx_CommonTypesMetaclassType); - -/* CythonFunctionShared.module_state_clear */ -Py_CLEAR(clear_module_state->__pyx_CyFunctionType); - -/* #### Code section: module_state_clear_end ### */ -return 0; -} -#endif -/* #### Code section: module_state_traverse ### */ -#if CYTHON_USE_MODULE_STATE -static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) { - __pyx_mstatetype *traverse_module_state = __Pyx_PyModule_GetState(m); - if (!traverse_module_state) return 0; - Py_VISIT(traverse_module_state->__pyx_d); - Py_VISIT(traverse_module_state->__pyx_b); - Py_VISIT(traverse_module_state->__pyx_cython_runtime); - __Pyx_VISIT_CONST(traverse_module_state->__pyx_empty_tuple); - __Pyx_VISIT_CONST(traverse_module_state->__pyx_empty_bytes); - __Pyx_VISIT_CONST(traverse_module_state->__pyx_empty_unicode); - Py_VISIT(traverse_module_state->__pyx_array_type); - Py_VISIT(traverse_module_state->__pyx_type___pyx_array); - Py_VISIT(traverse_module_state->__pyx_MemviewEnum_type); - Py_VISIT(traverse_module_state->__pyx_type___pyx_MemviewEnum); - Py_VISIT(traverse_module_state->__pyx_memoryview_type); - Py_VISIT(traverse_module_state->__pyx_type___pyx_memoryview); - Py_VISIT(traverse_module_state->__pyx_memoryviewslice_type); - Py_VISIT(traverse_module_state->__pyx_type___pyx_memoryviewslice); - for (int i=0; i<1; ++i) { __Pyx_VISIT_CONST(traverse_module_state->__pyx_slice[i]); } - for (int i=0; i<3; ++i) { __Pyx_VISIT_CONST(traverse_module_state->__pyx_tuple[i]); } - for (int i=0; i<3; ++i) { __Pyx_VISIT_CONST(traverse_module_state->__pyx_codeobj_tab[i]); } - for (int i=0; i<144; ++i) { __Pyx_VISIT_CONST(traverse_module_state->__pyx_string_tab[i]); } - for (int i=0; i<8; ++i) { __Pyx_VISIT_CONST(traverse_module_state->__pyx_number_tab[i]); } -/* #### Code section: module_state_traverse_contents ### */ -/* CommonTypesMetaclass.module_state_traverse */ -Py_VISIT(traverse_module_state->__pyx_CommonTypesMetaclassType); - -/* CythonFunctionShared.module_state_traverse */ -Py_VISIT(traverse_module_state->__pyx_CyFunctionType); - -/* #### Code section: module_state_traverse_end ### */ -return 0; -} -#endif -/* #### Code section: module_code ### */ - -/* "View.MemoryView":129 - * cdef bint dtype_is_object - * - * def __cinit__(array self, tuple shape, Py_ssize_t itemsize, format not None, # <<<<<<<<<<<<<< - * mode="c", bint allocate_buffer=True): - * -*/ - -/* Python wrapper */ -static int __pyx_array___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_array___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_shape = 0; - Py_ssize_t __pyx_v_itemsize; - PyObject *__pyx_v_format = 0; - PyObject *__pyx_v_mode = 0; - int __pyx_v_allocate_buffer; - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[5] = {0,0,0,0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__cinit__ (wrapper)", 0); - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return -1; - #endif - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_shape,&__pyx_mstate_global->__pyx_n_u_itemsize,&__pyx_mstate_global->__pyx_n_u_format,&__pyx_mstate_global->__pyx_n_u_mode,&__pyx_mstate_global->__pyx_n_u_allocate_buffer,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_VARARGS(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 129, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 5: - values[4] = __Pyx_ArgRef_VARARGS(__pyx_args, 4); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 4: - values[3] = __Pyx_ArgRef_VARARGS(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 3: - values[2] = __Pyx_ArgRef_VARARGS(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_VARARGS(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 129, __pyx_L3_error) - if (!values[3]) values[3] = __Pyx_NewRef(((PyObject *)__pyx_mstate_global->__pyx_n_u_c)); - for (Py_ssize_t i = __pyx_nargs; i < 3; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 3, 5, i); __PYX_ERR(1, 129, __pyx_L3_error) } - } - } else { - switch (__pyx_nargs) { - case 5: - values[4] = __Pyx_ArgRef_VARARGS(__pyx_args, 4); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 4: - values[3] = __Pyx_ArgRef_VARARGS(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(1, 129, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 3: - values[2] = __Pyx_ArgRef_VARARGS(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 129, __pyx_L3_error) - values[1] = __Pyx_ArgRef_VARARGS(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 129, __pyx_L3_error) - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 129, __pyx_L3_error) - break; - default: goto __pyx_L5_argtuple_error; - } - if (!values[3]) values[3] = __Pyx_NewRef(((PyObject *)__pyx_mstate_global->__pyx_n_u_c)); - } - __pyx_v_shape = ((PyObject*)values[0]); - __pyx_v_itemsize = __Pyx_PyIndex_AsSsize_t(values[1]); if (unlikely((__pyx_v_itemsize == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 129, __pyx_L3_error) - __pyx_v_format = values[2]; - __pyx_v_mode = values[3]; - if (values[4]) { - __pyx_v_allocate_buffer = __Pyx_PyObject_IsTrue(values[4]); if (unlikely((__pyx_v_allocate_buffer == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 130, __pyx_L3_error) - } else { - - /* "View.MemoryView":130 - * - * def __cinit__(array self, tuple shape, Py_ssize_t itemsize, format not None, - * mode="c", bint allocate_buffer=True): # <<<<<<<<<<<<<< - * - * cdef int idx -*/ - __pyx_v_allocate_buffer = ((int)1); - } - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 3, 5, __pyx_nargs); __PYX_ERR(1, 129, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.array.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_shape), (&PyTuple_Type), 1, "shape", 1))) __PYX_ERR(1, 129, __pyx_L1_error) - if (unlikely(((PyObject *)__pyx_v_format) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "format"); __PYX_ERR(1, 129, __pyx_L1_error) - } - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array___cinit__(((struct __pyx_array_obj *)__pyx_v_self), __pyx_v_shape, __pyx_v_itemsize, __pyx_v_format, __pyx_v_mode, __pyx_v_allocate_buffer); - - /* "View.MemoryView":129 - * cdef bint dtype_is_object - * - * def __cinit__(array self, tuple shape, Py_ssize_t itemsize, format not None, # <<<<<<<<<<<<<< - * mode="c", bint allocate_buffer=True): - * -*/ - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = -1; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - goto __pyx_L7_cleaned_up; - __pyx_L0:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __pyx_L7_cleaned_up:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array___cinit__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_shape, Py_ssize_t __pyx_v_itemsize, PyObject *__pyx_v_format, PyObject *__pyx_v_mode, int __pyx_v_allocate_buffer) { - int __pyx_v_idx; - Py_ssize_t __pyx_v_dim; - char __pyx_v_order; - int __pyx_r; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - size_t __pyx_t_6; - char *__pyx_t_7; - int __pyx_t_8; - Py_ssize_t __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11[5]; - PyObject *__pyx_t_12 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__cinit__", 0); - __Pyx_INCREF(__pyx_v_format); - - /* "View.MemoryView":135 - * cdef Py_ssize_t dim - * - * self.ndim = len(shape) # <<<<<<<<<<<<<< - * self.itemsize = itemsize - * -*/ - if (unlikely(__pyx_v_shape == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(1, 135, __pyx_L1_error) - } - __pyx_t_1 = __Pyx_PyTuple_GET_SIZE(__pyx_v_shape); if (unlikely(__pyx_t_1 == ((Py_ssize_t)-1))) __PYX_ERR(1, 135, __pyx_L1_error) - __pyx_v_self->ndim = ((int)__pyx_t_1); - - /* "View.MemoryView":136 - * - * self.ndim = len(shape) - * self.itemsize = itemsize # <<<<<<<<<<<<<< - * - * if not self.ndim: -*/ - __pyx_v_self->itemsize = __pyx_v_itemsize; - - /* "View.MemoryView":138 - * self.itemsize = itemsize - * - * if not self.ndim: # <<<<<<<<<<<<<< - * raise ValueError, "Empty shape tuple for cython.array" - * -*/ - __pyx_t_2 = (!(__pyx_v_self->ndim != 0)); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":139 - * - * if not self.ndim: - * raise ValueError, "Empty shape tuple for cython.array" # <<<<<<<<<<<<<< - * - * if itemsize <= 0: -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Empty_shape_tuple_for_cython_arr, 0, 0); - __PYX_ERR(1, 139, __pyx_L1_error) - - /* "View.MemoryView":138 - * self.itemsize = itemsize - * - * if not self.ndim: # <<<<<<<<<<<<<< - * raise ValueError, "Empty shape tuple for cython.array" - * -*/ - } - - /* "View.MemoryView":141 - * raise ValueError, "Empty shape tuple for cython.array" - * - * if itemsize <= 0: # <<<<<<<<<<<<<< - * raise ValueError, "itemsize <= 0 for cython.array" - * -*/ - __pyx_t_2 = (__pyx_v_itemsize <= 0); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":142 - * - * if itemsize <= 0: - * raise ValueError, "itemsize <= 0 for cython.array" # <<<<<<<<<<<<<< - * - * if not isinstance(format, bytes): -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_itemsize_0_for_cython_array, 0, 0); - __PYX_ERR(1, 142, __pyx_L1_error) - - /* "View.MemoryView":141 - * raise ValueError, "Empty shape tuple for cython.array" - * - * if itemsize <= 0: # <<<<<<<<<<<<<< - * raise ValueError, "itemsize <= 0 for cython.array" - * -*/ - } - - /* "View.MemoryView":144 - * raise ValueError, "itemsize <= 0 for cython.array" - * - * if not isinstance(format, bytes): # <<<<<<<<<<<<<< - * format = format.encode('ASCII') - * self._format = format # keep a reference to the byte string -*/ - __pyx_t_2 = PyBytes_Check(__pyx_v_format); - __pyx_t_3 = (!__pyx_t_2); - if (__pyx_t_3) { - - /* "View.MemoryView":145 - * - * if not isinstance(format, bytes): - * format = format.encode('ASCII') # <<<<<<<<<<<<<< - * self._format = format # keep a reference to the byte string - * self.format = self._format -*/ - __pyx_t_5 = __pyx_v_format; - __Pyx_INCREF(__pyx_t_5); - __pyx_t_6 = 0; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_n_u_ASCII}; - __pyx_t_4 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_encode, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 145, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - } - __Pyx_DECREF_SET(__pyx_v_format, __pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":144 - * raise ValueError, "itemsize <= 0 for cython.array" - * - * if not isinstance(format, bytes): # <<<<<<<<<<<<<< - * format = format.encode('ASCII') - * self._format = format # keep a reference to the byte string -*/ - } - - /* "View.MemoryView":146 - * if not isinstance(format, bytes): - * format = format.encode('ASCII') - * self._format = format # keep a reference to the byte string # <<<<<<<<<<<<<< - * self.format = self._format - * -*/ - __pyx_t_4 = __pyx_v_format; - __Pyx_INCREF(__pyx_t_4); - if (!(likely(PyBytes_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None) || __Pyx_RaiseUnexpectedTypeError("bytes", __pyx_t_4))) __PYX_ERR(1, 146, __pyx_L1_error) - __Pyx_GIVEREF(__pyx_t_4); - __Pyx_GOTREF(__pyx_v_self->_format); - __Pyx_DECREF(__pyx_v_self->_format); - __pyx_v_self->_format = ((PyObject*)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":147 - * format = format.encode('ASCII') - * self._format = format # keep a reference to the byte string - * self.format = self._format # <<<<<<<<<<<<<< - * - * -*/ - if (unlikely(__pyx_v_self->_format == Py_None)) { - PyErr_SetString(PyExc_TypeError, "expected bytes, NoneType found"); - __PYX_ERR(1, 147, __pyx_L1_error) - } - __pyx_t_7 = __Pyx_PyBytes_AsWritableString(__pyx_v_self->_format); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) __PYX_ERR(1, 147, __pyx_L1_error) - __pyx_v_self->format = __pyx_t_7; - - /* "View.MemoryView":150 - * - * - * self._shape = PyObject_Malloc(sizeof(Py_ssize_t)*self.ndim*2) # <<<<<<<<<<<<<< - * self._strides = self._shape + self.ndim - * -*/ - __pyx_v_self->_shape = ((Py_ssize_t *)PyObject_Malloc((((sizeof(Py_ssize_t)) * __pyx_v_self->ndim) * 2))); - - /* "View.MemoryView":151 - * - * self._shape = PyObject_Malloc(sizeof(Py_ssize_t)*self.ndim*2) - * self._strides = self._shape + self.ndim # <<<<<<<<<<<<<< - * - * if not self._shape: -*/ - __pyx_v_self->_strides = (__pyx_v_self->_shape + __pyx_v_self->ndim); - - /* "View.MemoryView":153 - * self._strides = self._shape + self.ndim - * - * if not self._shape: # <<<<<<<<<<<<<< - * raise MemoryError, "unable to allocate shape and strides." - * -*/ - __pyx_t_3 = (!(__pyx_v_self->_shape != 0)); - if (unlikely(__pyx_t_3)) { - - /* "View.MemoryView":154 - * - * if not self._shape: - * raise MemoryError, "unable to allocate shape and strides." # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_MemoryError))), __pyx_mstate_global->__pyx_kp_u_unable_to_allocate_shape_and_str, 0, 0); - __PYX_ERR(1, 154, __pyx_L1_error) - - /* "View.MemoryView":153 - * self._strides = self._shape + self.ndim - * - * if not self._shape: # <<<<<<<<<<<<<< - * raise MemoryError, "unable to allocate shape and strides." - * -*/ - } - - /* "View.MemoryView":157 - * - * - * for idx, dim in enumerate(shape): # <<<<<<<<<<<<<< - * if dim <= 0: - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." -*/ - __pyx_t_8 = 0; - __pyx_t_4 = __pyx_v_shape; __Pyx_INCREF(__pyx_t_4); - __pyx_t_1 = 0; - for (;;) { - { - Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_4); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 157, __pyx_L1_error) - #endif - if (__pyx_t_1 >= __pyx_temp) break; - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = __Pyx_NewRef(PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_1)); - #else - __pyx_t_5 = __Pyx_PySequence_ITEM(__pyx_t_4, __pyx_t_1); - #endif - ++__pyx_t_1; - if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 157, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_t_5); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 157, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __pyx_v_dim = __pyx_t_9; - __pyx_v_idx = __pyx_t_8; - __pyx_t_8 = (__pyx_t_8 + 1); - - /* "View.MemoryView":158 - * - * for idx, dim in enumerate(shape): - * if dim <= 0: # <<<<<<<<<<<<<< - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." - * self._shape[idx] = dim -*/ - __pyx_t_3 = (__pyx_v_dim <= 0); - if (unlikely(__pyx_t_3)) { - - /* "View.MemoryView":159 - * for idx, dim in enumerate(shape): - * if dim <= 0: - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." # <<<<<<<<<<<<<< - * self._shape[idx] = dim - * -*/ - __pyx_t_5 = __Pyx_PyUnicode_From_int(__pyx_v_idx, 0, ' ', 'd'); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 159, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_10 = __Pyx_PyUnicode_From_Py_ssize_t(__pyx_v_dim, 0, ' ', 'd'); if (unlikely(!__pyx_t_10)) __PYX_ERR(1, 159, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11[0] = __pyx_mstate_global->__pyx_kp_u_Invalid_shape_in_axis; - __pyx_t_11[1] = __pyx_t_5; - __pyx_t_11[2] = __pyx_mstate_global->__pyx_kp_u_; - __pyx_t_11[3] = __pyx_t_10; - __pyx_t_11[4] = __pyx_mstate_global->__pyx_kp_u__2; - __pyx_t_12 = __Pyx_PyUnicode_Join(__pyx_t_11, 5, 22 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5) + 2 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_10) + 1, 127); - if (unlikely(!__pyx_t_12)) __PYX_ERR(1, 159, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_t_12, 0, 0); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __PYX_ERR(1, 159, __pyx_L1_error) - - /* "View.MemoryView":158 - * - * for idx, dim in enumerate(shape): - * if dim <= 0: # <<<<<<<<<<<<<< - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." - * self._shape[idx] = dim -*/ - } - - /* "View.MemoryView":160 - * if dim <= 0: - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." - * self._shape[idx] = dim # <<<<<<<<<<<<<< - * - * cdef char order -*/ - (__pyx_v_self->_shape[__pyx_v_idx]) = __pyx_v_dim; - - /* "View.MemoryView":157 - * - * - * for idx, dim in enumerate(shape): # <<<<<<<<<<<<<< - * if dim <= 0: - * raise ValueError, f"Invalid shape in axis {idx}: {dim}." -*/ - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":163 - * - * cdef char order - * if mode == 'c': # <<<<<<<<<<<<<< - * order = b'C' - * self.mode = u'c' -*/ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_mode, __pyx_mstate_global->__pyx_n_u_c, Py_EQ)); if (unlikely((__pyx_t_3 < 0))) __PYX_ERR(1, 163, __pyx_L1_error) - if (__pyx_t_3) { - - /* "View.MemoryView":164 - * cdef char order - * if mode == 'c': - * order = b'C' # <<<<<<<<<<<<<< - * self.mode = u'c' - * elif mode == 'fortran': -*/ - __pyx_v_order = 'C'; - - /* "View.MemoryView":165 - * if mode == 'c': - * order = b'C' - * self.mode = u'c' # <<<<<<<<<<<<<< - * elif mode == 'fortran': - * order = b'F' -*/ - __Pyx_INCREF(__pyx_mstate_global->__pyx_n_u_c); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_n_u_c); - __Pyx_GOTREF(__pyx_v_self->mode); - __Pyx_DECREF(__pyx_v_self->mode); - __pyx_v_self->mode = __pyx_mstate_global->__pyx_n_u_c; - - /* "View.MemoryView":163 - * - * cdef char order - * if mode == 'c': # <<<<<<<<<<<<<< - * order = b'C' - * self.mode = u'c' -*/ - goto __pyx_L11; - } - - /* "View.MemoryView":166 - * order = b'C' - * self.mode = u'c' - * elif mode == 'fortran': # <<<<<<<<<<<<<< - * order = b'F' - * self.mode = u'fortran' -*/ - __pyx_t_3 = (__Pyx_PyUnicode_Equals(__pyx_v_mode, __pyx_mstate_global->__pyx_n_u_fortran, Py_EQ)); if (unlikely((__pyx_t_3 < 0))) __PYX_ERR(1, 166, __pyx_L1_error) - if (likely(__pyx_t_3)) { - - /* "View.MemoryView":167 - * self.mode = u'c' - * elif mode == 'fortran': - * order = b'F' # <<<<<<<<<<<<<< - * self.mode = u'fortran' - * else: -*/ - __pyx_v_order = 'F'; - - /* "View.MemoryView":168 - * elif mode == 'fortran': - * order = b'F' - * self.mode = u'fortran' # <<<<<<<<<<<<<< - * else: - * raise ValueError, f"Invalid mode, expected 'c' or 'fortran', got {mode}" -*/ - __Pyx_INCREF(__pyx_mstate_global->__pyx_n_u_fortran); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_n_u_fortran); - __Pyx_GOTREF(__pyx_v_self->mode); - __Pyx_DECREF(__pyx_v_self->mode); - __pyx_v_self->mode = __pyx_mstate_global->__pyx_n_u_fortran; - - /* "View.MemoryView":166 - * order = b'C' - * self.mode = u'c' - * elif mode == 'fortran': # <<<<<<<<<<<<<< - * order = b'F' - * self.mode = u'fortran' -*/ - goto __pyx_L11; - } - - /* "View.MemoryView":170 - * self.mode = u'fortran' - * else: - * raise ValueError, f"Invalid mode, expected 'c' or 'fortran', got {mode}" # <<<<<<<<<<<<<< - * - * self.len = fill_contig_strides_array(self._shape, self._strides, itemsize, self.ndim, order) -*/ - /*else*/ { - __pyx_t_4 = __Pyx_PyObject_FormatSimple(__pyx_v_mode, __pyx_mstate_global->__pyx_empty_unicode); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 170, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_12 = __Pyx_PyUnicode_Concat(__pyx_mstate_global->__pyx_kp_u_Invalid_mode_expected_c_or_fortr, __pyx_t_4); if (unlikely(!__pyx_t_12)) __PYX_ERR(1, 170, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_t_12, 0, 0); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __PYX_ERR(1, 170, __pyx_L1_error) - } - __pyx_L11:; - - /* "View.MemoryView":172 - * raise ValueError, f"Invalid mode, expected 'c' or 'fortran', got {mode}" - * - * self.len = fill_contig_strides_array(self._shape, self._strides, itemsize, self.ndim, order) # <<<<<<<<<<<<<< - * - * self.free_data = allocate_buffer -*/ - __pyx_v_self->len = __pyx_fill_contig_strides_array(__pyx_v_self->_shape, __pyx_v_self->_strides, __pyx_v_itemsize, __pyx_v_self->ndim, __pyx_v_order); - - /* "View.MemoryView":174 - * self.len = fill_contig_strides_array(self._shape, self._strides, itemsize, self.ndim, order) - * - * self.free_data = allocate_buffer # <<<<<<<<<<<<<< - * self.dtype_is_object = format == b'O' - * -*/ - __pyx_v_self->free_data = __pyx_v_allocate_buffer; - - /* "View.MemoryView":175 - * - * self.free_data = allocate_buffer - * self.dtype_is_object = format == b'O' # <<<<<<<<<<<<<< - * - * if allocate_buffer: -*/ - __pyx_t_12 = PyObject_RichCompare(__pyx_v_format, __pyx_mstate_global->__pyx_n_b_O, Py_EQ); __Pyx_XGOTREF(__pyx_t_12); if (unlikely(!__pyx_t_12)) __PYX_ERR(1, 175, __pyx_L1_error) - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_12); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 175, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_v_self->dtype_is_object = __pyx_t_3; - - /* "View.MemoryView":177 - * self.dtype_is_object = format == b'O' - * - * if allocate_buffer: # <<<<<<<<<<<<<< - * _allocate_buffer(self) - * -*/ - if (__pyx_v_allocate_buffer) { - - /* "View.MemoryView":178 - * - * if allocate_buffer: - * _allocate_buffer(self) # <<<<<<<<<<<<<< - * - * @cname('getbuffer') -*/ - __pyx_t_8 = __pyx_array_allocate_buffer(__pyx_v_self); if (unlikely(__pyx_t_8 == ((int)-1))) __PYX_ERR(1, 178, __pyx_L1_error) - - /* "View.MemoryView":177 - * self.dtype_is_object = format == b'O' - * - * if allocate_buffer: # <<<<<<<<<<<<<< - * _allocate_buffer(self) - * -*/ - } - - /* "View.MemoryView":129 - * cdef bint dtype_is_object - * - * def __cinit__(array self, tuple shape, Py_ssize_t itemsize, format not None, # <<<<<<<<<<<<<< - * mode="c", bint allocate_buffer=True): - * -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_AddTraceback("View.MemoryView.array.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_format); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":180 - * _allocate_buffer(self) - * - * @cname('getbuffer') # <<<<<<<<<<<<<< - * def __getbuffer__(self, Py_buffer *info, int flags): - * cdef int bufmode = -1 -*/ - -/* Python wrapper */ -CYTHON_UNUSED static int __pyx_array_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/ -CYTHON_UNUSED static int __pyx_array_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__getbuffer__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array_2__getbuffer__(((struct __pyx_array_obj *)__pyx_v_self), ((Py_buffer *)__pyx_v_info), ((int)__pyx_v_flags)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array_2__getbuffer__(struct __pyx_array_obj *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { - int __pyx_v_bufmode; - int __pyx_r; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - char *__pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - Py_ssize_t *__pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - if (unlikely(__pyx_v_info == NULL)) { - PyErr_SetString(PyExc_BufferError, "PyObject_GetBuffer: view==NULL argument is obsolete"); - return -1; - } - __Pyx_RefNannySetupContext("__getbuffer__", 0); - __pyx_v_info->obj = Py_None; __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(__pyx_v_info->obj); - - /* "View.MemoryView":182 - * @cname('getbuffer') - * def __getbuffer__(self, Py_buffer *info, int flags): - * cdef int bufmode = -1 # <<<<<<<<<<<<<< - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): - * if self.mode == u"c": -*/ - __pyx_v_bufmode = -1; - - /* "View.MemoryView":183 - * def __getbuffer__(self, Py_buffer *info, int flags): - * cdef int bufmode = -1 - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): # <<<<<<<<<<<<<< - * if self.mode == u"c": - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS -*/ - __pyx_t_1 = ((__pyx_v_flags & ((PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS) | PyBUF_ANY_CONTIGUOUS)) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":184 - * cdef int bufmode = -1 - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): - * if self.mode == u"c": # <<<<<<<<<<<<<< - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * elif self.mode == u"fortran": -*/ - __pyx_t_1 = (__Pyx_PyUnicode_Equals(__pyx_v_self->mode, __pyx_mstate_global->__pyx_n_u_c, Py_EQ)); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 184, __pyx_L1_error) - if (__pyx_t_1) { - - /* "View.MemoryView":185 - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): - * if self.mode == u"c": - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS # <<<<<<<<<<<<<< - * elif self.mode == u"fortran": - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS -*/ - __pyx_v_bufmode = (PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS); - - /* "View.MemoryView":184 - * cdef int bufmode = -1 - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): - * if self.mode == u"c": # <<<<<<<<<<<<<< - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * elif self.mode == u"fortran": -*/ - goto __pyx_L4; - } - - /* "View.MemoryView":186 - * if self.mode == u"c": - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * elif self.mode == u"fortran": # <<<<<<<<<<<<<< - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * if not (flags & bufmode): -*/ - __pyx_t_1 = (__Pyx_PyUnicode_Equals(__pyx_v_self->mode, __pyx_mstate_global->__pyx_n_u_fortran, Py_EQ)); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 186, __pyx_L1_error) - if (__pyx_t_1) { - - /* "View.MemoryView":187 - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * elif self.mode == u"fortran": - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS # <<<<<<<<<<<<<< - * if not (flags & bufmode): - * raise ValueError, "Can only create a buffer that is contiguous in memory." -*/ - __pyx_v_bufmode = (PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS); - - /* "View.MemoryView":186 - * if self.mode == u"c": - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * elif self.mode == u"fortran": # <<<<<<<<<<<<<< - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * if not (flags & bufmode): -*/ - } - __pyx_L4:; - - /* "View.MemoryView":188 - * elif self.mode == u"fortran": - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * if not (flags & bufmode): # <<<<<<<<<<<<<< - * raise ValueError, "Can only create a buffer that is contiguous in memory." - * info.buf = self.data -*/ - __pyx_t_1 = (!((__pyx_v_flags & __pyx_v_bufmode) != 0)); - if (unlikely(__pyx_t_1)) { - - /* "View.MemoryView":189 - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * if not (flags & bufmode): - * raise ValueError, "Can only create a buffer that is contiguous in memory." # <<<<<<<<<<<<<< - * info.buf = self.data - * info.len = self.len -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Can_only_create_a_buffer_that_is, 0, 0); - __PYX_ERR(1, 189, __pyx_L1_error) - - /* "View.MemoryView":188 - * elif self.mode == u"fortran": - * bufmode = PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS - * if not (flags & bufmode): # <<<<<<<<<<<<<< - * raise ValueError, "Can only create a buffer that is contiguous in memory." - * info.buf = self.data -*/ - } - - /* "View.MemoryView":183 - * def __getbuffer__(self, Py_buffer *info, int flags): - * cdef int bufmode = -1 - * if flags & (PyBUF_C_CONTIGUOUS | PyBUF_F_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS): # <<<<<<<<<<<<<< - * if self.mode == u"c": - * bufmode = PyBUF_C_CONTIGUOUS | PyBUF_ANY_CONTIGUOUS -*/ - } - - /* "View.MemoryView":190 - * if not (flags & bufmode): - * raise ValueError, "Can only create a buffer that is contiguous in memory." - * info.buf = self.data # <<<<<<<<<<<<<< - * info.len = self.len - * -*/ - __pyx_t_2 = __pyx_v_self->data; - __pyx_v_info->buf = __pyx_t_2; - - /* "View.MemoryView":191 - * raise ValueError, "Can only create a buffer that is contiguous in memory." - * info.buf = self.data - * info.len = self.len # <<<<<<<<<<<<<< - * - * if flags & PyBUF_STRIDES: -*/ - __pyx_t_3 = __pyx_v_self->len; - __pyx_v_info->len = __pyx_t_3; - - /* "View.MemoryView":193 - * info.len = self.len - * - * if flags & PyBUF_STRIDES: # <<<<<<<<<<<<<< - * info.ndim = self.ndim - * info.shape = self._shape -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_STRIDES) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":194 - * - * if flags & PyBUF_STRIDES: - * info.ndim = self.ndim # <<<<<<<<<<<<<< - * info.shape = self._shape - * info.strides = self._strides -*/ - __pyx_t_4 = __pyx_v_self->ndim; - __pyx_v_info->ndim = __pyx_t_4; - - /* "View.MemoryView":195 - * if flags & PyBUF_STRIDES: - * info.ndim = self.ndim - * info.shape = self._shape # <<<<<<<<<<<<<< - * info.strides = self._strides - * else: -*/ - __pyx_t_5 = __pyx_v_self->_shape; - __pyx_v_info->shape = __pyx_t_5; - - /* "View.MemoryView":196 - * info.ndim = self.ndim - * info.shape = self._shape - * info.strides = self._strides # <<<<<<<<<<<<<< - * else: - * info.ndim = 1 -*/ - __pyx_t_5 = __pyx_v_self->_strides; - __pyx_v_info->strides = __pyx_t_5; - - /* "View.MemoryView":193 - * info.len = self.len - * - * if flags & PyBUF_STRIDES: # <<<<<<<<<<<<<< - * info.ndim = self.ndim - * info.shape = self._shape -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":198 - * info.strides = self._strides - * else: - * info.ndim = 1 # <<<<<<<<<<<<<< - * info.shape = &self.len if flags & PyBUF_ND else NULL - * info.strides = NULL -*/ - /*else*/ { - __pyx_v_info->ndim = 1; - - /* "View.MemoryView":199 - * else: - * info.ndim = 1 - * info.shape = &self.len if flags & PyBUF_ND else NULL # <<<<<<<<<<<<<< - * info.strides = NULL - * -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_ND) != 0); - if (__pyx_t_1) { - __pyx_t_5 = (&__pyx_v_self->len); - } else { - __pyx_t_5 = NULL; - } - __pyx_v_info->shape = __pyx_t_5; - - /* "View.MemoryView":200 - * info.ndim = 1 - * info.shape = &self.len if flags & PyBUF_ND else NULL - * info.strides = NULL # <<<<<<<<<<<<<< - * - * info.suboffsets = NULL -*/ - __pyx_v_info->strides = NULL; - } - __pyx_L6:; - - /* "View.MemoryView":202 - * info.strides = NULL - * - * info.suboffsets = NULL # <<<<<<<<<<<<<< - * info.itemsize = self.itemsize - * info.readonly = 0 -*/ - __pyx_v_info->suboffsets = NULL; - - /* "View.MemoryView":203 - * - * info.suboffsets = NULL - * info.itemsize = self.itemsize # <<<<<<<<<<<<<< - * info.readonly = 0 - * info.format = self.format if flags & PyBUF_FORMAT else NULL -*/ - __pyx_t_3 = __pyx_v_self->itemsize; - __pyx_v_info->itemsize = __pyx_t_3; - - /* "View.MemoryView":204 - * info.suboffsets = NULL - * info.itemsize = self.itemsize - * info.readonly = 0 # <<<<<<<<<<<<<< - * info.format = self.format if flags & PyBUF_FORMAT else NULL - * info.obj = self -*/ - __pyx_v_info->readonly = 0; - - /* "View.MemoryView":205 - * info.itemsize = self.itemsize - * info.readonly = 0 - * info.format = self.format if flags & PyBUF_FORMAT else NULL # <<<<<<<<<<<<<< - * info.obj = self - * -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_FORMAT) != 0); - if (__pyx_t_1) { - __pyx_t_2 = __pyx_v_self->format; - } else { - __pyx_t_2 = NULL; - } - __pyx_v_info->format = __pyx_t_2; - - /* "View.MemoryView":206 - * info.readonly = 0 - * info.format = self.format if flags & PyBUF_FORMAT else NULL - * info.obj = self # <<<<<<<<<<<<<< - * - * def __dealloc__(array self): -*/ - __Pyx_INCREF((PyObject *)__pyx_v_self); - __Pyx_GIVEREF((PyObject *)__pyx_v_self); - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); - __pyx_v_info->obj = ((PyObject *)__pyx_v_self); - - /* "View.MemoryView":180 - * _allocate_buffer(self) - * - * @cname('getbuffer') # <<<<<<<<<<<<<< - * def __getbuffer__(self, Py_buffer *info, int flags): - * cdef int bufmode = -1 -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.array.__getbuffer__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - if (__pyx_v_info->obj != NULL) { - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; - } - goto __pyx_L2; - __pyx_L0:; - if (__pyx_v_info->obj == Py_None) { - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; - } - __pyx_L2:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":208 - * info.obj = self - * - * def __dealloc__(array self): # <<<<<<<<<<<<<< - * if self.callback_free_data != NULL: - * self.callback_free_data(self.data) -*/ - -/* Python wrapper */ -static void __pyx_array___dealloc__(PyObject *__pyx_v_self); /*proto*/ -static void __pyx_array___dealloc__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_array___pyx_pf_15View_dot_MemoryView_5array_4__dealloc__(((struct __pyx_array_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); -} - -static void __pyx_array___pyx_pf_15View_dot_MemoryView_5array_4__dealloc__(struct __pyx_array_obj *__pyx_v_self) { - int __pyx_t_1; - int __pyx_t_2; - - /* "View.MemoryView":209 - * - * def __dealloc__(array self): - * if self.callback_free_data != NULL: # <<<<<<<<<<<<<< - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: -*/ - __pyx_t_1 = (__pyx_v_self->callback_free_data != NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":210 - * def __dealloc__(array self): - * if self.callback_free_data != NULL: - * self.callback_free_data(self.data) # <<<<<<<<<<<<<< - * elif self.free_data and self.data is not NULL: - * if self.dtype_is_object: -*/ - __pyx_v_self->callback_free_data(__pyx_v_self->data); - - /* "View.MemoryView":209 - * - * def __dealloc__(array self): - * if self.callback_free_data != NULL: # <<<<<<<<<<<<<< - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":211 - * if self.callback_free_data != NULL: - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: # <<<<<<<<<<<<<< - * if self.dtype_is_object: - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) -*/ - if (__pyx_v_self->free_data) { - } else { - __pyx_t_1 = __pyx_v_self->free_data; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_2 = (__pyx_v_self->data != NULL); - __pyx_t_1 = __pyx_t_2; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "View.MemoryView":212 - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) - * free(self.data) -*/ - if (__pyx_v_self->dtype_is_object) { - - /* "View.MemoryView":213 - * elif self.free_data and self.data is not NULL: - * if self.dtype_is_object: - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) # <<<<<<<<<<<<<< - * free(self.data) - * PyObject_Free(self._shape) -*/ - __pyx_memoryview_refcount_objects_in_slice(__pyx_v_self->data, __pyx_v_self->_shape, __pyx_v_self->_strides, __pyx_v_self->ndim, 0); - - /* "View.MemoryView":212 - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) - * free(self.data) -*/ - } - - /* "View.MemoryView":214 - * if self.dtype_is_object: - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) - * free(self.data) # <<<<<<<<<<<<<< - * PyObject_Free(self._shape) - * -*/ - free(__pyx_v_self->data); - - /* "View.MemoryView":211 - * if self.callback_free_data != NULL: - * self.callback_free_data(self.data) - * elif self.free_data and self.data is not NULL: # <<<<<<<<<<<<<< - * if self.dtype_is_object: - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) -*/ - } - __pyx_L3:; - - /* "View.MemoryView":215 - * refcount_objects_in_slice(self.data, self._shape, self._strides, self.ndim, inc=False) - * free(self.data) - * PyObject_Free(self._shape) # <<<<<<<<<<<<<< - * - * @property -*/ - PyObject_Free(__pyx_v_self->_shape); - - /* "View.MemoryView":208 - * info.obj = self - * - * def __dealloc__(array self): # <<<<<<<<<<<<<< - * if self.callback_free_data != NULL: - * self.callback_free_data(self.data) -*/ - - /* function exit code */ -} - -/* "View.MemoryView":217 - * PyObject_Free(self._shape) - * - * @property # <<<<<<<<<<<<<< - * def memview(self): - * return self.get_memview() -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_5array_7memview_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_5array_7memview_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_5array_7memview___get__(((struct __pyx_array_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_5array_7memview___get__(struct __pyx_array_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":219 - * @property - * def memview(self): - * return self.get_memview() # <<<<<<<<<<<<<< - * - * @cname('get_memview') -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_array *)__pyx_v_self->__pyx_vtab)->get_memview(__pyx_v_self); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 219, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":217 - * PyObject_Free(self._shape) - * - * @property # <<<<<<<<<<<<<< - * def memview(self): - * return self.get_memview() -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.array.memview.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":221 - * return self.get_memview() - * - * @cname('get_memview') # <<<<<<<<<<<<<< - * cdef get_memview(self): - * flags = PyBUF_ANY_CONTIGUOUS|PyBUF_FORMAT|PyBUF_WRITABLE -*/ - -static PyObject *__pyx_array_get_memview(struct __pyx_array_obj *__pyx_v_self) { - int __pyx_v_flags; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - size_t __pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("get_memview", 0); - - /* "View.MemoryView":223 - * @cname('get_memview') - * cdef get_memview(self): - * flags = PyBUF_ANY_CONTIGUOUS|PyBUF_FORMAT|PyBUF_WRITABLE # <<<<<<<<<<<<<< - * return memoryview(self, flags, self.dtype_is_object) - * -*/ - __pyx_v_flags = ((PyBUF_ANY_CONTIGUOUS | PyBUF_FORMAT) | PyBUF_WRITABLE); - - /* "View.MemoryView":224 - * cdef get_memview(self): - * flags = PyBUF_ANY_CONTIGUOUS|PyBUF_FORMAT|PyBUF_WRITABLE - * return memoryview(self, flags, self.dtype_is_object) # <<<<<<<<<<<<<< - * - * def __len__(self): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = NULL; - __pyx_t_3 = __Pyx_PyLong_From_int(__pyx_v_flags); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 224, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyBool_FromLong(__pyx_v_self->dtype_is_object); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 224, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = 1; - { - PyObject *__pyx_callargs[4] = {__pyx_t_2, ((PyObject *)__pyx_v_self), __pyx_t_3, __pyx_t_4}; - __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_memoryview_type, __pyx_callargs+__pyx_t_5, (4-__pyx_t_5) | (__pyx_t_5*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 224, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_1); - } - __pyx_r = ((PyObject *)__pyx_t_1); - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":221 - * return self.get_memview() - * - * @cname('get_memview') # <<<<<<<<<<<<<< - * cdef get_memview(self): - * flags = PyBUF_ANY_CONTIGUOUS|PyBUF_FORMAT|PyBUF_WRITABLE -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("View.MemoryView.array.get_memview", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":226 - * return memoryview(self, flags, self.dtype_is_object) - * - * def __len__(self): # <<<<<<<<<<<<<< - * return self._shape[0] - * -*/ - -/* Python wrapper */ -static Py_ssize_t __pyx_array___len__(PyObject *__pyx_v_self); /*proto*/ -static Py_ssize_t __pyx_array___len__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - Py_ssize_t __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__len__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array_6__len__(((struct __pyx_array_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static Py_ssize_t __pyx_array___pyx_pf_15View_dot_MemoryView_5array_6__len__(struct __pyx_array_obj *__pyx_v_self) { - Py_ssize_t __pyx_r; - - /* "View.MemoryView":227 - * - * def __len__(self): - * return self._shape[0] # <<<<<<<<<<<<<< - * - * def __getattr__(self, attr): -*/ - __pyx_r = (__pyx_v_self->_shape[0]); - goto __pyx_L0; - - /* "View.MemoryView":226 - * return memoryview(self, flags, self.dtype_is_object) - * - * def __len__(self): # <<<<<<<<<<<<<< - * return self._shape[0] - * -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":229 - * return self._shape[0] - * - * def __getattr__(self, attr): # <<<<<<<<<<<<<< - * return getattr(self.memview, attr) - * -*/ - -/* Python wrapper */ -static PyObject *__pyx_array___getattr__(PyObject *__pyx_v_self, PyObject *__pyx_v_attr); /*proto*/ -static PyObject *__pyx_array___getattr__(PyObject *__pyx_v_self, PyObject *__pyx_v_attr) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__getattr__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array_8__getattr__(((struct __pyx_array_obj *)__pyx_v_self), ((PyObject *)__pyx_v_attr)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_array___pyx_pf_15View_dot_MemoryView_5array_8__getattr__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_attr) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__getattr__", 0); - - /* "View.MemoryView":230 - * - * def __getattr__(self, attr): - * return getattr(self.memview, attr) # <<<<<<<<<<<<<< - * - * def __getitem__(self, item): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_memview); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_GetAttr(__pyx_t_1, __pyx_v_attr); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 230, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":229 - * return self._shape[0] - * - * def __getattr__(self, attr): # <<<<<<<<<<<<<< - * return getattr(self.memview, attr) - * -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.array.__getattr__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":232 - * return getattr(self.memview, attr) - * - * def __getitem__(self, item): # <<<<<<<<<<<<<< - * return self.memview[item] - * -*/ - -/* Python wrapper */ -static PyObject *__pyx_array___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_item); /*proto*/ -static PyObject *__pyx_array___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_item) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__getitem__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array_10__getitem__(((struct __pyx_array_obj *)__pyx_v_self), ((PyObject *)__pyx_v_item)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_array___pyx_pf_15View_dot_MemoryView_5array_10__getitem__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_item) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__getitem__", 0); - - /* "View.MemoryView":233 - * - * def __getitem__(self, item): - * return self.memview[item] # <<<<<<<<<<<<<< - * - * def __setitem__(self, item, value): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_memview); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 233, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetItem(__pyx_t_1, __pyx_v_item); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 233, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":232 - * return getattr(self.memview, attr) - * - * def __getitem__(self, item): # <<<<<<<<<<<<<< - * return self.memview[item] - * -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.array.__getitem__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":235 - * return self.memview[item] - * - * def __setitem__(self, item, value): # <<<<<<<<<<<<<< - * self.memview[item] = value - * -*/ - -/* Python wrapper */ -static int __pyx_array___setitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_item, PyObject *__pyx_v_value); /*proto*/ -static int __pyx_array___setitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_item, PyObject *__pyx_v_value) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setitem__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_array___pyx_pf_15View_dot_MemoryView_5array_12__setitem__(((struct __pyx_array_obj *)__pyx_v_self), ((PyObject *)__pyx_v_item), ((PyObject *)__pyx_v_value)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_array___pyx_pf_15View_dot_MemoryView_5array_12__setitem__(struct __pyx_array_obj *__pyx_v_self, PyObject *__pyx_v_item, PyObject *__pyx_v_value) { - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setitem__", 0); - - /* "View.MemoryView":236 - * - * def __setitem__(self, item, value): - * self.memview[item] = value # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_memview); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 236, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (unlikely((PyObject_SetItem(__pyx_t_1, __pyx_v_item, __pyx_v_value) < 0))) __PYX_ERR(1, 236, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "View.MemoryView":235 - * return self.memview[item] - * - * def __setitem__(self, item, value): # <<<<<<<<<<<<<< - * self.memview[item] = value - * -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.array.__setitem__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_array_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_array_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("__reduce_cython__", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("__reduce_cython__", __pyx_kwds); return NULL;} - __pyx_r = __pyx_pf___pyx_array___reduce_cython__(((struct __pyx_array_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_array___reduce_cython__(CYTHON_UNUSED struct __pyx_array_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":2 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 2, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.array.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_array_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_array_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - CYTHON_UNUSED PyObject *__pyx_v___pyx_state = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[1] = {0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_pyx_state,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 3, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 1; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 1)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - } - __pyx_v___pyx_state = values[0]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, __pyx_nargs); __PYX_ERR(1, 3, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.array.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf___pyx_array_2__setstate_cython__(((struct __pyx_array_obj *)__pyx_v_self), __pyx_v___pyx_state); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_array_2__setstate_cython__(CYTHON_UNUSED struct __pyx_array_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":4 - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 4, __pyx_L1_error) - - /* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.array.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":245 - * pass - * - * @cname("__pyx_array_allocate_buffer") # <<<<<<<<<<<<<< - * cdef int _allocate_buffer(array self) except -1: - * -*/ - -static int __pyx_array_allocate_buffer(struct __pyx_array_obj *__pyx_v_self) { - Py_ssize_t __pyx_v_i; - PyObject **__pyx_v_p; - int __pyx_r; - int __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - - /* "View.MemoryView":252 - * cdef PyObject **p - * - * self.free_data = True # <<<<<<<<<<<<<< - * self.data = malloc(self.len) - * if not self.data: -*/ - __pyx_v_self->free_data = 1; - - /* "View.MemoryView":253 - * - * self.free_data = True - * self.data = malloc(self.len) # <<<<<<<<<<<<<< - * if not self.data: - * raise MemoryError, "unable to allocate array data." -*/ - __pyx_v_self->data = ((char *)malloc(__pyx_v_self->len)); - - /* "View.MemoryView":254 - * self.free_data = True - * self.data = malloc(self.len) - * if not self.data: # <<<<<<<<<<<<<< - * raise MemoryError, "unable to allocate array data." - * -*/ - __pyx_t_1 = (!(__pyx_v_self->data != 0)); - if (unlikely(__pyx_t_1)) { - - /* "View.MemoryView":255 - * self.data = malloc(self.len) - * if not self.data: - * raise MemoryError, "unable to allocate array data." # <<<<<<<<<<<<<< - * - * if self.dtype_is_object: -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_MemoryError))), __pyx_mstate_global->__pyx_kp_u_unable_to_allocate_array_data, 0, 0); - __PYX_ERR(1, 255, __pyx_L1_error) - - /* "View.MemoryView":254 - * self.free_data = True - * self.data = malloc(self.len) - * if not self.data: # <<<<<<<<<<<<<< - * raise MemoryError, "unable to allocate array data." - * -*/ - } - - /* "View.MemoryView":257 - * raise MemoryError, "unable to allocate array data." - * - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * p = self.data - * for i in range(self.len // self.itemsize): -*/ - if (__pyx_v_self->dtype_is_object) { - - /* "View.MemoryView":258 - * - * if self.dtype_is_object: - * p = self.data # <<<<<<<<<<<<<< - * for i in range(self.len // self.itemsize): - * p[i] = Py_None -*/ - __pyx_v_p = ((PyObject **)__pyx_v_self->data); - - /* "View.MemoryView":259 - * if self.dtype_is_object: - * p = self.data - * for i in range(self.len // self.itemsize): # <<<<<<<<<<<<<< - * p[i] = Py_None - * Py_INCREF(Py_None) -*/ - if (unlikely(__pyx_v_self->itemsize == 0)) { - PyErr_SetString(PyExc_ZeroDivisionError, "integer division or modulo by zero"); - __PYX_ERR(1, 259, __pyx_L1_error) - } - else if (sizeof(Py_ssize_t) == sizeof(long) && (!(((Py_ssize_t)-1) > 0)) && unlikely(__pyx_v_self->itemsize == (Py_ssize_t)-1) && unlikely(__Pyx_UNARY_NEG_WOULD_OVERFLOW(__pyx_v_self->len))) { - PyErr_SetString(PyExc_OverflowError, "value too large to perform division"); - __PYX_ERR(1, 259, __pyx_L1_error) - } - __pyx_t_2 = __Pyx_div_Py_ssize_t(__pyx_v_self->len, __pyx_v_self->itemsize, 0); - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":260 - * p = self.data - * for i in range(self.len // self.itemsize): - * p[i] = Py_None # <<<<<<<<<<<<<< - * Py_INCREF(Py_None) - * return 0 -*/ - (__pyx_v_p[__pyx_v_i]) = Py_None; - - /* "View.MemoryView":261 - * for i in range(self.len // self.itemsize): - * p[i] = Py_None - * Py_INCREF(Py_None) # <<<<<<<<<<<<<< - * return 0 - * -*/ - Py_INCREF(Py_None); - } - - /* "View.MemoryView":257 - * raise MemoryError, "unable to allocate array data." - * - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * p = self.data - * for i in range(self.len // self.itemsize): -*/ - } - - /* "View.MemoryView":262 - * p[i] = Py_None - * Py_INCREF(Py_None) - * return 0 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":245 - * pass - * - * @cname("__pyx_array_allocate_buffer") # <<<<<<<<<<<<<< - * cdef int _allocate_buffer(array self) except -1: - * -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView._allocate_buffer", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":265 - * - * - * @cname("__pyx_array_new") # <<<<<<<<<<<<<< - * cdef array array_cwrapper(tuple shape, Py_ssize_t itemsize, char *format, const char *c_mode, char *buf): - * cdef array result -*/ - -static struct __pyx_array_obj *__pyx_array_new(PyObject *__pyx_v_shape, Py_ssize_t __pyx_v_itemsize, char *__pyx_v_format, char const *__pyx_v_c_mode, char *__pyx_v_buf) { - struct __pyx_array_obj *__pyx_v_result = 0; - PyObject *__pyx_v_mode = 0; - struct __pyx_array_obj *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("array_cwrapper", 0); - - /* "View.MemoryView":268 - * cdef array array_cwrapper(tuple shape, Py_ssize_t itemsize, char *format, const char *c_mode, char *buf): - * cdef array result - * cdef str mode = "fortran" if c_mode[0] == b'f' else "c" # this often comes from a constant C string. # <<<<<<<<<<<<<< - * - * if buf is NULL: -*/ - __pyx_t_2 = ((__pyx_v_c_mode[0]) == 'f'); - if (__pyx_t_2) { - __Pyx_INCREF(__pyx_mstate_global->__pyx_n_u_fortran); - __pyx_t_1 = __pyx_mstate_global->__pyx_n_u_fortran; - } else { - __Pyx_INCREF(__pyx_mstate_global->__pyx_n_u_c); - __pyx_t_1 = __pyx_mstate_global->__pyx_n_u_c; - } - __pyx_v_mode = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":270 - * cdef str mode = "fortran" if c_mode[0] == b'f' else "c" # this often comes from a constant C string. - * - * if buf is NULL: # <<<<<<<<<<<<<< - * result = array.__new__(array, shape, itemsize, format, mode) - * else: -*/ - __pyx_t_2 = (__pyx_v_buf == NULL); - if (__pyx_t_2) { - - /* "View.MemoryView":271 - * - * if buf is NULL: - * result = array.__new__(array, shape, itemsize, format, mode) # <<<<<<<<<<<<<< - * else: - * result = array.__new__(array, shape, itemsize, format, mode, allocate_buffer=False) -*/ - __pyx_t_1 = PyLong_FromSsize_t(__pyx_v_itemsize); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyBytes_FromString(__pyx_v_format); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyTuple_New(4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 271, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_INCREF(__pyx_v_shape); - __Pyx_GIVEREF(__pyx_v_shape); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_shape) != (0)) __PYX_ERR(1, 271, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1) != (0)) __PYX_ERR(1, 271, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_3); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 2, __pyx_t_3) != (0)) __PYX_ERR(1, 271, __pyx_L1_error); - __Pyx_INCREF(__pyx_v_mode); - __Pyx_GIVEREF(__pyx_v_mode); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 3, __pyx_v_mode) != (0)) __PYX_ERR(1, 271, __pyx_L1_error); - __pyx_t_1 = 0; - __pyx_t_3 = 0; - __pyx_t_3 = ((PyObject *)__pyx_tp_new_array(((PyTypeObject *)__pyx_mstate_global->__pyx_array_type), __pyx_t_4, NULL)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 271, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_result = ((struct __pyx_array_obj *)__pyx_t_3); - __pyx_t_3 = 0; - - /* "View.MemoryView":270 - * cdef str mode = "fortran" if c_mode[0] == b'f' else "c" # this often comes from a constant C string. - * - * if buf is NULL: # <<<<<<<<<<<<<< - * result = array.__new__(array, shape, itemsize, format, mode) - * else: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":273 - * result = array.__new__(array, shape, itemsize, format, mode) - * else: - * result = array.__new__(array, shape, itemsize, format, mode, allocate_buffer=False) # <<<<<<<<<<<<<< - * result.data = buf - * -*/ - /*else*/ { - __pyx_t_3 = PyLong_FromSsize_t(__pyx_v_itemsize); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 273, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyBytes_FromString(__pyx_v_format); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 273, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 273, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_shape); - __Pyx_GIVEREF(__pyx_v_shape); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_shape) != (0)) __PYX_ERR(1, 273, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_3); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3) != (0)) __PYX_ERR(1, 273, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_4); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_4) != (0)) __PYX_ERR(1, 273, __pyx_L1_error); - __Pyx_INCREF(__pyx_v_mode); - __Pyx_GIVEREF(__pyx_v_mode); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_mode) != (0)) __PYX_ERR(1, 273, __pyx_L1_error); - __pyx_t_3 = 0; - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 273, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_allocate_buffer, Py_False) < (0)) __PYX_ERR(1, 273, __pyx_L1_error) - __pyx_t_3 = ((PyObject *)__pyx_tp_new_array(((PyTypeObject *)__pyx_mstate_global->__pyx_array_type), __pyx_t_1, __pyx_t_4)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 273, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_v_result = ((struct __pyx_array_obj *)__pyx_t_3); - __pyx_t_3 = 0; - - /* "View.MemoryView":274 - * else: - * result = array.__new__(array, shape, itemsize, format, mode, allocate_buffer=False) - * result.data = buf # <<<<<<<<<<<<<< - * - * return result -*/ - __pyx_v_result->data = __pyx_v_buf; - } - __pyx_L3:; - - /* "View.MemoryView":276 - * result.data = buf - * - * return result # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_XDECREF((PyObject *)__pyx_r); - __Pyx_INCREF((PyObject *)__pyx_v_result); - __pyx_r = __pyx_v_result; - goto __pyx_L0; - - /* "View.MemoryView":265 - * - * - * @cname("__pyx_array_new") # <<<<<<<<<<<<<< - * cdef array array_cwrapper(tuple shape, Py_ssize_t itemsize, char *format, const char *c_mode, char *buf): - * cdef array result -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("View.MemoryView.array_cwrapper", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_result); - __Pyx_XDECREF(__pyx_v_mode); - __Pyx_XGIVEREF((PyObject *)__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":302 - * cdef class Enum(object): - * cdef object name - * def __init__(self, name): # <<<<<<<<<<<<<< - * self.name = name - * def __repr__(self): -*/ - -/* Python wrapper */ -static int __pyx_MemviewEnum___init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_MemviewEnum___init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_name = 0; - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[1] = {0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return -1; - #endif - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_name,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_VARARGS(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 302, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 1: - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 302, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < (0)) __PYX_ERR(1, 302, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 1; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__init__", 1, 1, 1, i); __PYX_ERR(1, 302, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 1)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 302, __pyx_L3_error) - } - __pyx_v_name = values[0]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__init__", 1, 1, 1, __pyx_nargs); __PYX_ERR(1, 302, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.Enum.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum___init__(((struct __pyx_MemviewEnum_obj *)__pyx_v_self), __pyx_v_name); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum___init__(struct __pyx_MemviewEnum_obj *__pyx_v_self, PyObject *__pyx_v_name) { - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__init__", 0); - - /* "View.MemoryView":303 - * cdef object name - * def __init__(self, name): - * self.name = name # <<<<<<<<<<<<<< - * def __repr__(self): - * return self.name -*/ - __Pyx_INCREF(__pyx_v_name); - __Pyx_GIVEREF(__pyx_v_name); - __Pyx_GOTREF(__pyx_v_self->name); - __Pyx_DECREF(__pyx_v_self->name); - __pyx_v_self->name = __pyx_v_name; - - /* "View.MemoryView":302 - * cdef class Enum(object): - * cdef object name - * def __init__(self, name): # <<<<<<<<<<<<<< - * self.name = name - * def __repr__(self): -*/ - - /* function exit code */ - __pyx_r = 0; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":304 - * def __init__(self, name): - * self.name = name - * def __repr__(self): # <<<<<<<<<<<<<< - * return self.name - * -*/ - -/* Python wrapper */ -static PyObject *__pyx_MemviewEnum___repr__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_MemviewEnum___repr__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__repr__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum_2__repr__(((struct __pyx_MemviewEnum_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_MemviewEnum___pyx_pf_15View_dot_MemoryView_4Enum_2__repr__(struct __pyx_MemviewEnum_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__repr__", 0); - - /* "View.MemoryView":305 - * self.name = name - * def __repr__(self): - * return self.name # <<<<<<<<<<<<<< - * - * cdef generic = Enum("") -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_self->name); - __pyx_r = __pyx_v_self->name; - goto __pyx_L0; - - /* "View.MemoryView":304 - * def __init__(self, name): - * self.name = name - * def __repr__(self): # <<<<<<<<<<<<<< - * return self.name - * -*/ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_MemviewEnum_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_MemviewEnum_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("__reduce_cython__", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("__reduce_cython__", __pyx_kwds); return NULL;} - __pyx_r = __pyx_pf___pyx_MemviewEnum___reduce_cython__(((struct __pyx_MemviewEnum_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_MemviewEnum___reduce_cython__(struct __pyx_MemviewEnum_obj *__pyx_v_self) { - PyObject *__pyx_v_state = 0; - PyObject *__pyx_v__dict = 0; - int __pyx_v_use_setstate; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":5 - * cdef object _dict - * cdef bint use_setstate - * state = (self.name,) # <<<<<<<<<<<<<< - * _dict = getattr(self, '__dict__', None) - * if _dict is not None and _dict: -*/ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 5, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v_self->name); - __Pyx_GIVEREF(__pyx_v_self->name); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_self->name) != (0)) __PYX_ERR(1, 5, __pyx_L1_error); - __pyx_v_state = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "(tree fragment)":6 - * cdef bint use_setstate - * state = (self.name,) - * _dict = getattr(self, '__dict__', None) # <<<<<<<<<<<<<< - * if _dict is not None and _dict: - * state += (_dict,) -*/ - __pyx_t_1 = __Pyx_GetAttr3(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_dict, Py_None); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 6, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v__dict = __pyx_t_1; - __pyx_t_1 = 0; - - /* "(tree fragment)":7 - * state = (self.name,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None and _dict: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True -*/ - __pyx_t_3 = (__pyx_v__dict != Py_None); - if (__pyx_t_3) { - } else { - __pyx_t_2 = __pyx_t_3; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v__dict); if (unlikely((__pyx_t_3 < 0))) __PYX_ERR(1, 7, __pyx_L1_error) - __pyx_t_2 = __pyx_t_3; - __pyx_L4_bool_binop_done:; - if (__pyx_t_2) { - - /* "(tree fragment)":8 - * _dict = getattr(self, '__dict__', None) - * if _dict is not None and _dict: - * state += (_dict,) # <<<<<<<<<<<<<< - * use_setstate = True - * else: -*/ - __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(__pyx_v__dict); - __Pyx_GIVEREF(__pyx_v__dict); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v__dict) != (0)) __PYX_ERR(1, 8, __pyx_L1_error); - __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_state, __pyx_t_1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 8, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF_SET(__pyx_v_state, ((PyObject*)__pyx_t_4)); - __pyx_t_4 = 0; - - /* "(tree fragment)":9 - * if _dict is not None and _dict: - * state += (_dict,) - * use_setstate = True # <<<<<<<<<<<<<< - * else: - * use_setstate = ('self.name is not None',) -*/ - __pyx_v_use_setstate = 1; - - /* "(tree fragment)":7 - * state = (self.name,) - * _dict = getattr(self, '__dict__', None) - * if _dict is not None and _dict: # <<<<<<<<<<<<<< - * state += (_dict,) - * use_setstate = True -*/ - goto __pyx_L3; - } - - /* "(tree fragment)":11 - * use_setstate = True - * else: - * use_setstate = ('self.name is not None',) # <<<<<<<<<<<<<< - * if use_setstate: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state -*/ - /*else*/ { - __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_mstate_global->__pyx_tuple[0]); if (unlikely((__pyx_t_2 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 11, __pyx_L1_error) - __pyx_v_use_setstate = __pyx_t_2; - } - __pyx_L3:; - - /* "(tree fragment)":12 - * else: - * use_setstate = ('self.name is not None',) - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state - * else: -*/ - if (__pyx_v_use_setstate) { - - /* "(tree fragment)":13 - * use_setstate = ('self.name is not None',) - * if use_setstate: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state # <<<<<<<<<<<<<< - * else: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, state) -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_136983863); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_136983863); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_mstate_global->__pyx_int_136983863) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 2, Py_None) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 13, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_v_state) != (0)) __PYX_ERR(1, 13, __pyx_L1_error); - __pyx_t_4 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "(tree fragment)":12 - * else: - * use_setstate = ('self.name is not None',) - * if use_setstate: # <<<<<<<<<<<<<< - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state - * else: -*/ - } - - /* "(tree fragment)":15 - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state - * else: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, state) # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_Enum__set_state(self, __pyx_state) -*/ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_INCREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - __Pyx_GIVEREF(((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self)))) != (0)) __PYX_ERR(1, 15, __pyx_L1_error); - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_136983863); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_136983863); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_mstate_global->__pyx_int_136983863) != (0)) __PYX_ERR(1, 15, __pyx_L1_error); - __Pyx_INCREF(__pyx_v_state); - __Pyx_GIVEREF(__pyx_v_state); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_state) != (0)) __PYX_ERR(1, 15, __pyx_L1_error); - __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_GIVEREF(__pyx_t_5); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5) != (0)) __PYX_ERR(1, 15, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1) != (0)) __PYX_ERR(1, 15, __pyx_L1_error); - __pyx_t_5 = 0; - __pyx_t_1 = 0; - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - } - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * cdef tuple state - * cdef object _dict -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView.Enum.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_state); - __Pyx_XDECREF(__pyx_v__dict); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":16 - * else: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_Enum__set_state(self, __pyx_state) -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_MemviewEnum_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_MemviewEnum_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - PyObject *__pyx_v___pyx_state = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[1] = {0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_pyx_state,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 16, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 16, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 16, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 1; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 16, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 1)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 16, __pyx_L3_error) - } - __pyx_v___pyx_state = values[0]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, __pyx_nargs); __PYX_ERR(1, 16, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.Enum.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf___pyx_MemviewEnum_2__setstate_cython__(((struct __pyx_MemviewEnum_obj *)__pyx_v_self), __pyx_v___pyx_state); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_MemviewEnum_2__setstate_cython__(struct __pyx_MemviewEnum_obj *__pyx_v_self, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":17 - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, state) - * def __setstate_cython__(self, __pyx_state): - * __pyx_unpickle_Enum__set_state(self, __pyx_state) # <<<<<<<<<<<<<< -*/ - __pyx_t_1 = __pyx_v___pyx_state; - __Pyx_INCREF(__pyx_t_1); - if (!(likely(PyTuple_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None) || __Pyx_RaiseUnexpectedTypeError("tuple", __pyx_t_1))) __PYX_ERR(1, 17, __pyx_L1_error) - if (unlikely(__pyx_t_1 == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(1, 17, __pyx_L1_error) - } - __pyx_t_2 = __pyx_unpickle_Enum__set_state(__pyx_v_self, ((PyObject*)__pyx_t_1)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 17, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "(tree fragment)":16 - * else: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, state) - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * __pyx_unpickle_Enum__set_state(self, __pyx_state) -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.Enum.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":348 - * cdef const __Pyx_TypeInfo *typeinfo - * - * def __cinit__(memoryview self, object obj, int flags, bint dtype_is_object=False): # <<<<<<<<<<<<<< - * self.obj = obj - * self.flags = flags -*/ - -/* Python wrapper */ -static int __pyx_memoryview___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ -static int __pyx_memoryview___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { - PyObject *__pyx_v_obj = 0; - int __pyx_v_flags; - int __pyx_v_dtype_is_object; - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[3] = {0,0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__cinit__ (wrapper)", 0); - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return -1; - #endif - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_obj,&__pyx_mstate_global->__pyx_n_u_flags,&__pyx_mstate_global->__pyx_n_u_dtype_is_object,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_VARARGS(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 348, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 3: - values[2] = __Pyx_ArgRef_VARARGS(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 348, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_VARARGS(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 348, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 348, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 348, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 2; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 2, 3, i); __PYX_ERR(1, 348, __pyx_L3_error) } - } - } else { - switch (__pyx_nargs) { - case 3: - values[2] = __Pyx_ArgRef_VARARGS(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 348, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_VARARGS(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 348, __pyx_L3_error) - values[0] = __Pyx_ArgRef_VARARGS(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 348, __pyx_L3_error) - break; - default: goto __pyx_L5_argtuple_error; - } - } - __pyx_v_obj = values[0]; - __pyx_v_flags = __Pyx_PyLong_As_int(values[1]); if (unlikely((__pyx_v_flags == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 348, __pyx_L3_error) - if (values[2]) { - __pyx_v_dtype_is_object = __Pyx_PyObject_IsTrue(values[2]); if (unlikely((__pyx_v_dtype_is_object == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 348, __pyx_L3_error) - } else { - __pyx_v_dtype_is_object = ((int)0); - } - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 2, 3, __pyx_nargs); __PYX_ERR(1, 348, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.memoryview.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return -1; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview___cinit__(((struct __pyx_memoryview_obj *)__pyx_v_self), __pyx_v_obj, __pyx_v_flags, __pyx_v_dtype_is_object); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview___cinit__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_obj, int __pyx_v_flags, int __pyx_v_dtype_is_object) { - int __pyx_r; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - Py_intptr_t __pyx_t_4; - size_t __pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__cinit__", 0); - - /* "View.MemoryView":349 - * - * def __cinit__(memoryview self, object obj, int flags, bint dtype_is_object=False): - * self.obj = obj # <<<<<<<<<<<<<< - * self.flags = flags - * if type(self) is memoryview or obj is not None: -*/ - __Pyx_INCREF(__pyx_v_obj); - __Pyx_GIVEREF(__pyx_v_obj); - __Pyx_GOTREF(__pyx_v_self->obj); - __Pyx_DECREF(__pyx_v_self->obj); - __pyx_v_self->obj = __pyx_v_obj; - - /* "View.MemoryView":350 - * def __cinit__(memoryview self, object obj, int flags, bint dtype_is_object=False): - * self.obj = obj - * self.flags = flags # <<<<<<<<<<<<<< - * if type(self) is memoryview or obj is not None: - * PyObject_GetBuffer(obj, &self.view, flags) -*/ - __pyx_v_self->flags = __pyx_v_flags; - - /* "View.MemoryView":351 - * self.obj = obj - * self.flags = flags - * if type(self) is memoryview or obj is not None: # <<<<<<<<<<<<<< - * PyObject_GetBuffer(obj, &self.view, flags) - * if self.view.obj == NULL: -*/ - __pyx_t_2 = (((PyObject *)Py_TYPE(((PyObject *)__pyx_v_self))) == ((PyObject *)__pyx_mstate_global->__pyx_memoryview_type)); - if (!__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_2 = (__pyx_v_obj != Py_None); - __pyx_t_1 = __pyx_t_2; - __pyx_L4_bool_binop_done:; - if (__pyx_t_1) { - - /* "View.MemoryView":352 - * self.flags = flags - * if type(self) is memoryview or obj is not None: - * PyObject_GetBuffer(obj, &self.view, flags) # <<<<<<<<<<<<<< - * if self.view.obj == NULL: - * (<__pyx_buffer *> &self.view).obj = Py_None -*/ - __pyx_t_3 = PyObject_GetBuffer(__pyx_v_obj, (&__pyx_v_self->view), __pyx_v_flags); if (unlikely(__pyx_t_3 == ((int)-1))) __PYX_ERR(1, 352, __pyx_L1_error) - - /* "View.MemoryView":353 - * if type(self) is memoryview or obj is not None: - * PyObject_GetBuffer(obj, &self.view, flags) - * if self.view.obj == NULL: # <<<<<<<<<<<<<< - * (<__pyx_buffer *> &self.view).obj = Py_None - * Py_INCREF(Py_None) -*/ - __pyx_t_1 = (((PyObject *)__pyx_v_self->view.obj) == NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":354 - * PyObject_GetBuffer(obj, &self.view, flags) - * if self.view.obj == NULL: - * (<__pyx_buffer *> &self.view).obj = Py_None # <<<<<<<<<<<<<< - * Py_INCREF(Py_None) - * -*/ - ((Py_buffer *)(&__pyx_v_self->view))->obj = Py_None; - - /* "View.MemoryView":355 - * if self.view.obj == NULL: - * (<__pyx_buffer *> &self.view).obj = Py_None - * Py_INCREF(Py_None) # <<<<<<<<<<<<<< - * - * if not __PYX_CYTHON_ATOMICS_ENABLED(): -*/ - Py_INCREF(Py_None); - - /* "View.MemoryView":353 - * if type(self) is memoryview or obj is not None: - * PyObject_GetBuffer(obj, &self.view, flags) - * if self.view.obj == NULL: # <<<<<<<<<<<<<< - * (<__pyx_buffer *> &self.view).obj = Py_None - * Py_INCREF(Py_None) -*/ - } - - /* "View.MemoryView":351 - * self.obj = obj - * self.flags = flags - * if type(self) is memoryview or obj is not None: # <<<<<<<<<<<<<< - * PyObject_GetBuffer(obj, &self.view, flags) - * if self.view.obj == NULL: -*/ - } - - /* "View.MemoryView":357 - * Py_INCREF(Py_None) - * - * if not __PYX_CYTHON_ATOMICS_ENABLED(): # <<<<<<<<<<<<<< - * global __pyx_memoryview_thread_locks_used - * if (__pyx_memoryview_thread_locks_used < 8 and -*/ - __pyx_t_1 = (!__PYX_CYTHON_ATOMICS_ENABLED()); - if (__pyx_t_1) { - - /* "View.MemoryView":359 - * if not __PYX_CYTHON_ATOMICS_ENABLED(): - * global __pyx_memoryview_thread_locks_used - * if (__pyx_memoryview_thread_locks_used < 8 and # <<<<<<<<<<<<<< - * - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): -*/ - __pyx_t_2 = (__pyx_memoryview_thread_locks_used < 8); - if (__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L9_bool_binop_done; - } - - /* "View.MemoryView":361 - * if (__pyx_memoryview_thread_locks_used < 8 and - * - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): # <<<<<<<<<<<<<< - * self.lock = __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] - * __pyx_memoryview_thread_locks_used += 1 -*/ - __pyx_t_2 = (!__PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()); - __pyx_t_1 = __pyx_t_2; - __pyx_L9_bool_binop_done:; - - /* "View.MemoryView":359 - * if not __PYX_CYTHON_ATOMICS_ENABLED(): - * global __pyx_memoryview_thread_locks_used - * if (__pyx_memoryview_thread_locks_used < 8 and # <<<<<<<<<<<<<< - * - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): -*/ - if (__pyx_t_1) { - - /* "View.MemoryView":362 - * - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): - * self.lock = __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks_used += 1 - * if self.lock is NULL: -*/ - __pyx_v_self->lock = (__pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used]); - - /* "View.MemoryView":363 - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): - * self.lock = __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] - * __pyx_memoryview_thread_locks_used += 1 # <<<<<<<<<<<<<< - * if self.lock is NULL: - * self.lock = PyThread_allocate_lock() -*/ - __pyx_memoryview_thread_locks_used = (__pyx_memoryview_thread_locks_used + 1); - - /* "View.MemoryView":359 - * if not __PYX_CYTHON_ATOMICS_ENABLED(): - * global __pyx_memoryview_thread_locks_used - * if (__pyx_memoryview_thread_locks_used < 8 and # <<<<<<<<<<<<<< - * - * not __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING()): -*/ - } - - /* "View.MemoryView":364 - * self.lock = __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] - * __pyx_memoryview_thread_locks_used += 1 - * if self.lock is NULL: # <<<<<<<<<<<<<< - * self.lock = PyThread_allocate_lock() - * if self.lock is NULL: -*/ - __pyx_t_1 = (__pyx_v_self->lock == NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":365 - * __pyx_memoryview_thread_locks_used += 1 - * if self.lock is NULL: - * self.lock = PyThread_allocate_lock() # <<<<<<<<<<<<<< - * if self.lock is NULL: - * raise MemoryError -*/ - __pyx_v_self->lock = PyThread_allocate_lock(); - - /* "View.MemoryView":366 - * if self.lock is NULL: - * self.lock = PyThread_allocate_lock() - * if self.lock is NULL: # <<<<<<<<<<<<<< - * raise MemoryError - * -*/ - __pyx_t_1 = (__pyx_v_self->lock == NULL); - if (unlikely(__pyx_t_1)) { - - /* "View.MemoryView":367 - * self.lock = PyThread_allocate_lock() - * if self.lock is NULL: - * raise MemoryError # <<<<<<<<<<<<<< - * - * if flags & PyBUF_FORMAT: -*/ - PyErr_NoMemory(); __PYX_ERR(1, 367, __pyx_L1_error) - - /* "View.MemoryView":366 - * if self.lock is NULL: - * self.lock = PyThread_allocate_lock() - * if self.lock is NULL: # <<<<<<<<<<<<<< - * raise MemoryError - * -*/ - } - - /* "View.MemoryView":364 - * self.lock = __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] - * __pyx_memoryview_thread_locks_used += 1 - * if self.lock is NULL: # <<<<<<<<<<<<<< - * self.lock = PyThread_allocate_lock() - * if self.lock is NULL: -*/ - } - - /* "View.MemoryView":357 - * Py_INCREF(Py_None) - * - * if not __PYX_CYTHON_ATOMICS_ENABLED(): # <<<<<<<<<<<<<< - * global __pyx_memoryview_thread_locks_used - * if (__pyx_memoryview_thread_locks_used < 8 and -*/ - } - - /* "View.MemoryView":369 - * raise MemoryError - * - * if flags & PyBUF_FORMAT: # <<<<<<<<<<<<<< - * self.dtype_is_object = (self.view.format[0] == b'O' and self.view.format[1] == b'\0') - * else: -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_FORMAT) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":370 - * - * if flags & PyBUF_FORMAT: - * self.dtype_is_object = (self.view.format[0] == b'O' and self.view.format[1] == b'\0') # <<<<<<<<<<<<<< - * else: - * self.dtype_is_object = dtype_is_object -*/ - __pyx_t_2 = ((__pyx_v_self->view.format[0]) == 'O'); - if (__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L14_bool_binop_done; - } - __pyx_t_2 = ((__pyx_v_self->view.format[1]) == '\x00'); - __pyx_t_1 = __pyx_t_2; - __pyx_L14_bool_binop_done:; - __pyx_v_self->dtype_is_object = __pyx_t_1; - - /* "View.MemoryView":369 - * raise MemoryError - * - * if flags & PyBUF_FORMAT: # <<<<<<<<<<<<<< - * self.dtype_is_object = (self.view.format[0] == b'O' and self.view.format[1] == b'\0') - * else: -*/ - goto __pyx_L13; - } - - /* "View.MemoryView":372 - * self.dtype_is_object = (self.view.format[0] == b'O' and self.view.format[1] == b'\0') - * else: - * self.dtype_is_object = dtype_is_object # <<<<<<<<<<<<<< - * - * assert (&self.acquisition_count) % sizeof(__pyx_atomic_int_type) == 0 -*/ - /*else*/ { - __pyx_v_self->dtype_is_object = __pyx_v_dtype_is_object; - } - __pyx_L13:; - - /* "View.MemoryView":374 - * self.dtype_is_object = dtype_is_object - * - * assert (&self.acquisition_count) % sizeof(__pyx_atomic_int_type) == 0 # <<<<<<<<<<<<<< - * self.typeinfo = NULL - * -*/ - #ifndef CYTHON_WITHOUT_ASSERTIONS - if (unlikely(__pyx_assertions_enabled())) { - __pyx_t_4 = ((Py_intptr_t)((void *)(&__pyx_v_self->acquisition_count))); - __pyx_t_5 = (sizeof(__pyx_atomic_int_type)); - if (unlikely(__pyx_t_5 == 0)) { - PyErr_SetString(PyExc_ZeroDivisionError, "integer division or modulo by zero"); - __PYX_ERR(1, 374, __pyx_L1_error) - } - __pyx_t_1 = ((__pyx_t_4 % __pyx_t_5) == 0); - if (unlikely(!__pyx_t_1)) { - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_AssertionError))), 0, 0, 0); - __PYX_ERR(1, 374, __pyx_L1_error) - } - } - #else - if ((1)); else __PYX_ERR(1, 374, __pyx_L1_error) - #endif - - /* "View.MemoryView":375 - * - * assert (&self.acquisition_count) % sizeof(__pyx_atomic_int_type) == 0 - * self.typeinfo = NULL # <<<<<<<<<<<<<< - * - * def __dealloc__(memoryview self): -*/ - __pyx_v_self->typeinfo = NULL; - - /* "View.MemoryView":348 - * cdef const __Pyx_TypeInfo *typeinfo - * - * def __cinit__(memoryview self, object obj, int flags, bint dtype_is_object=False): # <<<<<<<<<<<<<< - * self.obj = obj - * self.flags = flags -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.memoryview.__cinit__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":377 - * self.typeinfo = NULL - * - * def __dealloc__(memoryview self): # <<<<<<<<<<<<<< - * if self.obj is not None: - * PyBuffer_Release(&self.view) -*/ - -/* Python wrapper */ -static void __pyx_memoryview___dealloc__(PyObject *__pyx_v_self); /*proto*/ -static void __pyx_memoryview___dealloc__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_2__dealloc__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); -} - -static void __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_2__dealloc__(struct __pyx_memoryview_obj *__pyx_v_self) { - int __pyx_v_i; - int __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - PyThread_type_lock __pyx_t_5; - PyThread_type_lock __pyx_t_6; - - /* "View.MemoryView":378 - * - * def __dealloc__(memoryview self): - * if self.obj is not None: # <<<<<<<<<<<<<< - * PyBuffer_Release(&self.view) - * elif (<__pyx_buffer *> &self.view).obj == Py_None: -*/ - __pyx_t_1 = (__pyx_v_self->obj != Py_None); - if (__pyx_t_1) { - - /* "View.MemoryView":379 - * def __dealloc__(memoryview self): - * if self.obj is not None: - * PyBuffer_Release(&self.view) # <<<<<<<<<<<<<< - * elif (<__pyx_buffer *> &self.view).obj == Py_None: - * -*/ - PyBuffer_Release((&__pyx_v_self->view)); - - /* "View.MemoryView":378 - * - * def __dealloc__(memoryview self): - * if self.obj is not None: # <<<<<<<<<<<<<< - * PyBuffer_Release(&self.view) - * elif (<__pyx_buffer *> &self.view).obj == Py_None: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":380 - * if self.obj is not None: - * PyBuffer_Release(&self.view) - * elif (<__pyx_buffer *> &self.view).obj == Py_None: # <<<<<<<<<<<<<< - * - * (<__pyx_buffer *> &self.view).obj = NULL -*/ - __pyx_t_1 = (((Py_buffer *)(&__pyx_v_self->view))->obj == Py_None); - if (__pyx_t_1) { - - /* "View.MemoryView":382 - * elif (<__pyx_buffer *> &self.view).obj == Py_None: - * - * (<__pyx_buffer *> &self.view).obj = NULL # <<<<<<<<<<<<<< - * Py_DECREF(Py_None) - * -*/ - ((Py_buffer *)(&__pyx_v_self->view))->obj = NULL; - - /* "View.MemoryView":383 - * - * (<__pyx_buffer *> &self.view).obj = NULL - * Py_DECREF(Py_None) # <<<<<<<<<<<<<< - * - * cdef int i -*/ - Py_DECREF(Py_None); - - /* "View.MemoryView":380 - * if self.obj is not None: - * PyBuffer_Release(&self.view) - * elif (<__pyx_buffer *> &self.view).obj == Py_None: # <<<<<<<<<<<<<< - * - * (<__pyx_buffer *> &self.view).obj = NULL -*/ - } - __pyx_L3:; - - /* "View.MemoryView":387 - * cdef int i - * global __pyx_memoryview_thread_locks_used - * if self.lock != NULL: # <<<<<<<<<<<<<< - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): - * if __pyx_memoryview_thread_locks[i] is self.lock: -*/ - __pyx_t_1 = (__pyx_v_self->lock != NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":388 - * global __pyx_memoryview_thread_locks_used - * if self.lock != NULL: - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): # <<<<<<<<<<<<<< - * if __pyx_memoryview_thread_locks[i] is self.lock: - * __pyx_memoryview_thread_locks_used -= 1 -*/ - __pyx_t_1 = __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING(); - if (__pyx_t_1) { - __pyx_t_2 = 0; - } else { - __pyx_t_2 = __pyx_memoryview_thread_locks_used; - } - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":389 - * if self.lock != NULL: - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): - * if __pyx_memoryview_thread_locks[i] is self.lock: # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks_used -= 1 - * if i != __pyx_memoryview_thread_locks_used: -*/ - __pyx_t_1 = ((__pyx_memoryview_thread_locks[__pyx_v_i]) == __pyx_v_self->lock); - if (__pyx_t_1) { - - /* "View.MemoryView":390 - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): - * if __pyx_memoryview_thread_locks[i] is self.lock: - * __pyx_memoryview_thread_locks_used -= 1 # <<<<<<<<<<<<<< - * if i != __pyx_memoryview_thread_locks_used: - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( -*/ - __pyx_memoryview_thread_locks_used = (__pyx_memoryview_thread_locks_used - 1); - - /* "View.MemoryView":391 - * if __pyx_memoryview_thread_locks[i] is self.lock: - * __pyx_memoryview_thread_locks_used -= 1 - * if i != __pyx_memoryview_thread_locks_used: # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( - * __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used], __pyx_memoryview_thread_locks[i]) -*/ - __pyx_t_1 = (__pyx_v_i != __pyx_memoryview_thread_locks_used); - if (__pyx_t_1) { - - /* "View.MemoryView":393 - * if i != __pyx_memoryview_thread_locks_used: - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( - * __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used], __pyx_memoryview_thread_locks[i]) # <<<<<<<<<<<<<< - * break - * else: -*/ - __pyx_t_5 = (__pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used]); - __pyx_t_6 = (__pyx_memoryview_thread_locks[__pyx_v_i]); - - /* "View.MemoryView":392 - * __pyx_memoryview_thread_locks_used -= 1 - * if i != __pyx_memoryview_thread_locks_used: - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used], __pyx_memoryview_thread_locks[i]) - * break -*/ - (__pyx_memoryview_thread_locks[__pyx_v_i]) = __pyx_t_5; - (__pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used]) = __pyx_t_6; - - /* "View.MemoryView":391 - * if __pyx_memoryview_thread_locks[i] is self.lock: - * __pyx_memoryview_thread_locks_used -= 1 - * if i != __pyx_memoryview_thread_locks_used: # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( - * __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used], __pyx_memoryview_thread_locks[i]) -*/ - } - - /* "View.MemoryView":394 - * __pyx_memoryview_thread_locks[i], __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used] = ( - * __pyx_memoryview_thread_locks[__pyx_memoryview_thread_locks_used], __pyx_memoryview_thread_locks[i]) - * break # <<<<<<<<<<<<<< - * else: - * PyThread_free_lock(self.lock) -*/ - goto __pyx_L6_break; - - /* "View.MemoryView":389 - * if self.lock != NULL: - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): - * if __pyx_memoryview_thread_locks[i] is self.lock: # <<<<<<<<<<<<<< - * __pyx_memoryview_thread_locks_used -= 1 - * if i != __pyx_memoryview_thread_locks_used: -*/ - } - } - /*else*/ { - - /* "View.MemoryView":396 - * break - * else: - * PyThread_free_lock(self.lock) # <<<<<<<<<<<<<< - * - * cdef char *get_item_pointer(memoryview self, object index) except NULL: -*/ - PyThread_free_lock(__pyx_v_self->lock); - } - __pyx_L6_break:; - - /* "View.MemoryView":387 - * cdef int i - * global __pyx_memoryview_thread_locks_used - * if self.lock != NULL: # <<<<<<<<<<<<<< - * for i in range(0 if __PYX_GET_CYTHON_COMPILING_IN_CPYTHON_FREETHREADING() else __pyx_memoryview_thread_locks_used): - * if __pyx_memoryview_thread_locks[i] is self.lock: -*/ - } - - /* "View.MemoryView":377 - * self.typeinfo = NULL - * - * def __dealloc__(memoryview self): # <<<<<<<<<<<<<< - * if self.obj is not None: - * PyBuffer_Release(&self.view) -*/ - - /* function exit code */ -} - -/* "View.MemoryView":398 - * PyThread_free_lock(self.lock) - * - * cdef char *get_item_pointer(memoryview self, object index) except NULL: # <<<<<<<<<<<<<< - * cdef Py_ssize_t dim - * cdef char *itemp = self.view.buf -*/ - -static char *__pyx_memoryview_get_item_pointer(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index) { - Py_ssize_t __pyx_v_dim; - char *__pyx_v_itemp; - PyObject *__pyx_v_idx = NULL; - char *__pyx_r; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t __pyx_t_3; - PyObject *(*__pyx_t_4)(PyObject *); - PyObject *__pyx_t_5 = NULL; - Py_ssize_t __pyx_t_6; - char *__pyx_t_7; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("get_item_pointer", 0); - - /* "View.MemoryView":400 - * cdef char *get_item_pointer(memoryview self, object index) except NULL: - * cdef Py_ssize_t dim - * cdef char *itemp = self.view.buf # <<<<<<<<<<<<<< - * - * for dim, idx in enumerate(index): -*/ - __pyx_v_itemp = ((char *)__pyx_v_self->view.buf); - - /* "View.MemoryView":402 - * cdef char *itemp = self.view.buf - * - * for dim, idx in enumerate(index): # <<<<<<<<<<<<<< - * itemp = pybuffer_index(&self.view, itemp, idx, dim) - * -*/ - __pyx_t_1 = 0; - if (likely(PyList_CheckExact(__pyx_v_index)) || PyTuple_CheckExact(__pyx_v_index)) { - __pyx_t_2 = __pyx_v_index; __Pyx_INCREF(__pyx_t_2); - __pyx_t_3 = 0; - __pyx_t_4 = NULL; - } else { - __pyx_t_3 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_v_index); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 402, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = (CYTHON_COMPILING_IN_LIMITED_API) ? PyIter_Next : __Pyx_PyObject_GetIterNextFunc(__pyx_t_2); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 402, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_4)) { - if (likely(PyList_CheckExact(__pyx_t_2))) { - { - Py_ssize_t __pyx_temp = __Pyx_PyList_GET_SIZE(__pyx_t_2); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 402, __pyx_L1_error) - #endif - if (__pyx_t_3 >= __pyx_temp) break; - } - __pyx_t_5 = __Pyx_PyList_GetItemRefFast(__pyx_t_2, __pyx_t_3, __Pyx_ReferenceSharing_OwnStrongReference); - ++__pyx_t_3; - } else { - { - Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_2); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 402, __pyx_L1_error) - #endif - if (__pyx_t_3 >= __pyx_temp) break; - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_5 = __Pyx_NewRef(PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_3)); - #else - __pyx_t_5 = __Pyx_PySequence_ITEM(__pyx_t_2, __pyx_t_3); - #endif - ++__pyx_t_3; - } - if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 402, __pyx_L1_error) - } else { - __pyx_t_5 = __pyx_t_4(__pyx_t_2); - if (unlikely(!__pyx_t_5)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) __PYX_ERR(1, 402, __pyx_L1_error) - PyErr_Clear(); - } - break; - } - } - __Pyx_GOTREF(__pyx_t_5); - __Pyx_XDECREF_SET(__pyx_v_idx, __pyx_t_5); - __pyx_t_5 = 0; - __pyx_v_dim = __pyx_t_1; - __pyx_t_1 = (__pyx_t_1 + 1); - - /* "View.MemoryView":403 - * - * for dim, idx in enumerate(index): - * itemp = pybuffer_index(&self.view, itemp, idx, dim) # <<<<<<<<<<<<<< - * - * return itemp -*/ - __pyx_t_6 = __Pyx_PyIndex_AsSsize_t(__pyx_v_idx); if (unlikely((__pyx_t_6 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 403, __pyx_L1_error) - __pyx_t_7 = __pyx_pybuffer_index((&__pyx_v_self->view), __pyx_v_itemp, __pyx_t_6, __pyx_v_dim); if (unlikely(__pyx_t_7 == ((void *)NULL))) __PYX_ERR(1, 403, __pyx_L1_error) - __pyx_v_itemp = __pyx_t_7; - - /* "View.MemoryView":402 - * cdef char *itemp = self.view.buf - * - * for dim, idx in enumerate(index): # <<<<<<<<<<<<<< - * itemp = pybuffer_index(&self.view, itemp, idx, dim) - * -*/ - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "View.MemoryView":405 - * itemp = pybuffer_index(&self.view, itemp, idx, dim) - * - * return itemp # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_itemp; - goto __pyx_L0; - - /* "View.MemoryView":398 - * PyThread_free_lock(self.lock) - * - * cdef char *get_item_pointer(memoryview self, object index) except NULL: # <<<<<<<<<<<<<< - * cdef Py_ssize_t dim - * cdef char *itemp = self.view.buf -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView.memoryview.get_item_pointer", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_idx); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":408 - * - * - * def __getitem__(memoryview self, object index): # <<<<<<<<<<<<<< - * if index is Ellipsis: - * return self -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_index); /*proto*/ -static PyObject *__pyx_memoryview___getitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_index) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__getitem__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_4__getitem__(((struct __pyx_memoryview_obj *)__pyx_v_self), ((PyObject *)__pyx_v_index)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_4__getitem__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index) { - PyObject *__pyx_v_have_slices = NULL; - PyObject *__pyx_v_indices = NULL; - char *__pyx_v_itemp; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - char *__pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__getitem__", 0); - - /* "View.MemoryView":409 - * - * def __getitem__(memoryview self, object index): - * if index is Ellipsis: # <<<<<<<<<<<<<< - * return self - * -*/ - __pyx_t_1 = (__pyx_v_index == __pyx_builtin_Ellipsis); - if (__pyx_t_1) { - - /* "View.MemoryView":410 - * def __getitem__(memoryview self, object index): - * if index is Ellipsis: - * return self # <<<<<<<<<<<<<< - * - * have_slices, indices = _unellipsify(index, self.view.ndim) -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF((PyObject *)__pyx_v_self); - __pyx_r = ((PyObject *)__pyx_v_self); - goto __pyx_L0; - - /* "View.MemoryView":409 - * - * def __getitem__(memoryview self, object index): - * if index is Ellipsis: # <<<<<<<<<<<<<< - * return self - * -*/ - } - - /* "View.MemoryView":412 - * return self - * - * have_slices, indices = _unellipsify(index, self.view.ndim) # <<<<<<<<<<<<<< - * - * cdef char *itemp -*/ - __pyx_t_2 = _unellipsify(__pyx_v_index, __pyx_v_self->view.ndim); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 412, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (likely(__pyx_t_2 != Py_None)) { - PyObject* sequence = __pyx_t_2; - Py_ssize_t size = __Pyx_PyTuple_GET_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(1, 412, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(sequence, 0); - __Pyx_INCREF(__pyx_t_3); - __pyx_t_4 = PyTuple_GET_ITEM(sequence, 1); - __Pyx_INCREF(__pyx_t_4); - #else - __pyx_t_3 = __Pyx_PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 412, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 412, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - } else { - __Pyx_RaiseNoneNotIterableError(); __PYX_ERR(1, 412, __pyx_L1_error) - } - __pyx_v_have_slices = __pyx_t_3; - __pyx_t_3 = 0; - __pyx_v_indices = __pyx_t_4; - __pyx_t_4 = 0; - - /* "View.MemoryView":415 - * - * cdef char *itemp - * if have_slices: # <<<<<<<<<<<<<< - * return memview_slice(self, indices) - * else: -*/ - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_have_slices); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 415, __pyx_L1_error) - if (__pyx_t_1) { - - /* "View.MemoryView":416 - * cdef char *itemp - * if have_slices: - * return memview_slice(self, indices) # <<<<<<<<<<<<<< - * else: - * itemp = self.get_item_pointer(indices) -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = ((PyObject *)__pyx_memview_slice(__pyx_v_self, __pyx_v_indices)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 416, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":415 - * - * cdef char *itemp - * if have_slices: # <<<<<<<<<<<<<< - * return memview_slice(self, indices) - * else: -*/ - } - - /* "View.MemoryView":418 - * return memview_slice(self, indices) - * else: - * itemp = self.get_item_pointer(indices) # <<<<<<<<<<<<<< - * return self.convert_item_to_object(itemp) - * -*/ - /*else*/ { - __pyx_t_5 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->get_item_pointer(__pyx_v_self, __pyx_v_indices); if (unlikely(__pyx_t_5 == ((void *)NULL))) __PYX_ERR(1, 418, __pyx_L1_error) - __pyx_v_itemp = __pyx_t_5; - - /* "View.MemoryView":419 - * else: - * itemp = self.get_item_pointer(indices) - * return self.convert_item_to_object(itemp) # <<<<<<<<<<<<<< - * - * def __setitem__(memoryview self, object index, object value): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->convert_item_to_object(__pyx_v_self, __pyx_v_itemp); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 419, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "View.MemoryView":408 - * - * - * def __getitem__(memoryview self, object index): # <<<<<<<<<<<<<< - * if index is Ellipsis: - * return self -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("View.MemoryView.memoryview.__getitem__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_have_slices); - __Pyx_XDECREF(__pyx_v_indices); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":421 - * return self.convert_item_to_object(itemp) - * - * def __setitem__(memoryview self, object index, object value): # <<<<<<<<<<<<<< - * if self.view.readonly: - * raise TypeError, "Cannot assign to read-only memoryview" -*/ - -/* Python wrapper */ -static int __pyx_memoryview___setitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value); /*proto*/ -static int __pyx_memoryview___setitem__(PyObject *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setitem__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_6__setitem__(((struct __pyx_memoryview_obj *)__pyx_v_self), ((PyObject *)__pyx_v_index), ((PyObject *)__pyx_v_value)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_6__setitem__(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value) { - PyObject *__pyx_v_have_slices = NULL; - PyObject *__pyx_v_obj = NULL; - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setitem__", 0); - __Pyx_INCREF(__pyx_v_index); - - /* "View.MemoryView":422 - * - * def __setitem__(memoryview self, object index, object value): - * if self.view.readonly: # <<<<<<<<<<<<<< - * raise TypeError, "Cannot assign to read-only memoryview" - * -*/ - if (unlikely(__pyx_v_self->view.readonly)) { - - /* "View.MemoryView":423 - * def __setitem__(memoryview self, object index, object value): - * if self.view.readonly: - * raise TypeError, "Cannot assign to read-only memoryview" # <<<<<<<<<<<<<< - * - * have_slices, index = _unellipsify(index, self.view.ndim) -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_Cannot_assign_to_read_only_memor, 0, 0); - __PYX_ERR(1, 423, __pyx_L1_error) - - /* "View.MemoryView":422 - * - * def __setitem__(memoryview self, object index, object value): - * if self.view.readonly: # <<<<<<<<<<<<<< - * raise TypeError, "Cannot assign to read-only memoryview" - * -*/ - } - - /* "View.MemoryView":425 - * raise TypeError, "Cannot assign to read-only memoryview" - * - * have_slices, index = _unellipsify(index, self.view.ndim) # <<<<<<<<<<<<<< - * - * if have_slices: -*/ - __pyx_t_1 = _unellipsify(__pyx_v_index, __pyx_v_self->view.ndim); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (likely(__pyx_t_1 != Py_None)) { - PyObject* sequence = __pyx_t_1; - Py_ssize_t size = __Pyx_PyTuple_GET_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(1, 425, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); - __Pyx_INCREF(__pyx_t_2); - __pyx_t_3 = PyTuple_GET_ITEM(sequence, 1); - __Pyx_INCREF(__pyx_t_3); - #else - __pyx_t_2 = __Pyx_PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 425, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } else { - __Pyx_RaiseNoneNotIterableError(); __PYX_ERR(1, 425, __pyx_L1_error) - } - __pyx_v_have_slices = __pyx_t_2; - __pyx_t_2 = 0; - __Pyx_DECREF_SET(__pyx_v_index, __pyx_t_3); - __pyx_t_3 = 0; - - /* "View.MemoryView":427 - * have_slices, index = _unellipsify(index, self.view.ndim) - * - * if have_slices: # <<<<<<<<<<<<<< - * obj = self.is_slice(value) - * if obj is not None: -*/ - __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_have_slices); if (unlikely((__pyx_t_4 < 0))) __PYX_ERR(1, 427, __pyx_L1_error) - if (__pyx_t_4) { - - /* "View.MemoryView":428 - * - * if have_slices: - * obj = self.is_slice(value) # <<<<<<<<<<<<<< - * if obj is not None: - * self.setitem_slice_assignment(self[index], obj) -*/ - __pyx_t_1 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->is_slice(__pyx_v_self, __pyx_v_value); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 428, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_obj = __pyx_t_1; - __pyx_t_1 = 0; - - /* "View.MemoryView":429 - * if have_slices: - * obj = self.is_slice(value) - * if obj is not None: # <<<<<<<<<<<<<< - * self.setitem_slice_assignment(self[index], obj) - * else: -*/ - __pyx_t_4 = (__pyx_v_obj != Py_None); - if (__pyx_t_4) { - - /* "View.MemoryView":430 - * obj = self.is_slice(value) - * if obj is not None: - * self.setitem_slice_assignment(self[index], obj) # <<<<<<<<<<<<<< - * else: - * self.setitem_slice_assign_scalar(self[index], value) -*/ - __pyx_t_1 = __Pyx_PyObject_GetItem(((PyObject *)__pyx_v_self), __pyx_v_index); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 430, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->setitem_slice_assignment(__pyx_v_self, __pyx_t_1, __pyx_v_obj); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 430, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - - /* "View.MemoryView":429 - * if have_slices: - * obj = self.is_slice(value) - * if obj is not None: # <<<<<<<<<<<<<< - * self.setitem_slice_assignment(self[index], obj) - * else: -*/ - goto __pyx_L5; - } - - /* "View.MemoryView":432 - * self.setitem_slice_assignment(self[index], obj) - * else: - * self.setitem_slice_assign_scalar(self[index], value) # <<<<<<<<<<<<<< - * else: - * self.setitem_indexed(index, value) -*/ - /*else*/ { - __pyx_t_3 = __Pyx_PyObject_GetItem(((PyObject *)__pyx_v_self), __pyx_v_index); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 432, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_mstate_global->__pyx_memoryview_type))))) __PYX_ERR(1, 432, __pyx_L1_error) - __pyx_t_1 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->setitem_slice_assign_scalar(__pyx_v_self, ((struct __pyx_memoryview_obj *)__pyx_t_3), __pyx_v_value); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 432, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } - __pyx_L5:; - - /* "View.MemoryView":427 - * have_slices, index = _unellipsify(index, self.view.ndim) - * - * if have_slices: # <<<<<<<<<<<<<< - * obj = self.is_slice(value) - * if obj is not None: -*/ - goto __pyx_L4; - } - - /* "View.MemoryView":434 - * self.setitem_slice_assign_scalar(self[index], value) - * else: - * self.setitem_indexed(index, value) # <<<<<<<<<<<<<< - * - * cdef is_slice(self, obj): -*/ - /*else*/ { - __pyx_t_1 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->setitem_indexed(__pyx_v_self, __pyx_v_index, __pyx_v_value); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 434, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - } - __pyx_L4:; - - /* "View.MemoryView":421 - * return self.convert_item_to_object(itemp) - * - * def __setitem__(memoryview self, object index, object value): # <<<<<<<<<<<<<< - * if self.view.readonly: - * raise TypeError, "Cannot assign to read-only memoryview" -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.memoryview.__setitem__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_have_slices); - __Pyx_XDECREF(__pyx_v_obj); - __Pyx_XDECREF(__pyx_v_index); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":436 - * self.setitem_indexed(index, value) - * - * cdef is_slice(self, obj): # <<<<<<<<<<<<<< - * if not isinstance(obj, memoryview): - * try: -*/ - -static PyObject *__pyx_memoryview_is_slice(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_obj) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - size_t __pyx_t_10; - int __pyx_t_11; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("is_slice", 0); - __Pyx_INCREF(__pyx_v_obj); - - /* "View.MemoryView":437 - * - * cdef is_slice(self, obj): - * if not isinstance(obj, memoryview): # <<<<<<<<<<<<<< - * try: - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, -*/ - __pyx_t_1 = __Pyx_TypeCheck(__pyx_v_obj, __pyx_mstate_global->__pyx_memoryview_type); - __pyx_t_2 = (!__pyx_t_1); - if (__pyx_t_2) { - - /* "View.MemoryView":438 - * cdef is_slice(self, obj): - * if not isinstance(obj, memoryview): - * try: # <<<<<<<<<<<<<< - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, - * self.dtype_is_object) -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_3, &__pyx_t_4, &__pyx_t_5); - __Pyx_XGOTREF(__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_4); - __Pyx_XGOTREF(__pyx_t_5); - /*try:*/ { - - /* "View.MemoryView":439 - * if not isinstance(obj, memoryview): - * try: - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, # <<<<<<<<<<<<<< - * self.dtype_is_object) - * except TypeError: -*/ - __pyx_t_7 = NULL; - __pyx_t_8 = __Pyx_PyLong_From_int(((__pyx_v_self->flags & (~PyBUF_WRITABLE)) | PyBUF_ANY_CONTIGUOUS)); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 439, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_8); - - /* "View.MemoryView":440 - * try: - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, - * self.dtype_is_object) # <<<<<<<<<<<<<< - * except TypeError: - * return None -*/ - __pyx_t_9 = __Pyx_PyBool_FromLong(__pyx_v_self->dtype_is_object); if (unlikely(!__pyx_t_9)) __PYX_ERR(1, 440, __pyx_L4_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_10 = 1; - { - PyObject *__pyx_callargs[4] = {__pyx_t_7, __pyx_v_obj, __pyx_t_8, __pyx_t_9}; - __pyx_t_6 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_memoryview_type, __pyx_callargs+__pyx_t_10, (4-__pyx_t_10) | (__pyx_t_10*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 439, __pyx_L4_error) - __Pyx_GOTREF((PyObject *)__pyx_t_6); - } - __Pyx_DECREF_SET(__pyx_v_obj, ((PyObject *)__pyx_t_6)); - __pyx_t_6 = 0; - - /* "View.MemoryView":438 - * cdef is_slice(self, obj): - * if not isinstance(obj, memoryview): - * try: # <<<<<<<<<<<<<< - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, - * self.dtype_is_object) -*/ - } - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - goto __pyx_L9_try_end; - __pyx_L4_error:; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0; - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "View.MemoryView":441 - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, - * self.dtype_is_object) - * except TypeError: # <<<<<<<<<<<<<< - * return None - * -*/ - __pyx_t_11 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(((PyTypeObject*)PyExc_TypeError)))); - if (__pyx_t_11) { - __Pyx_ErrRestore(0,0,0); - - /* "View.MemoryView":442 - * self.dtype_is_object) - * except TypeError: - * return None # <<<<<<<<<<<<<< - * - * return obj -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L7_except_return; - } - goto __pyx_L6_except_error; - - /* "View.MemoryView":438 - * cdef is_slice(self, obj): - * if not isinstance(obj, memoryview): - * try: # <<<<<<<<<<<<<< - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, - * self.dtype_is_object) -*/ - __pyx_L6_except_error:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_XGIVEREF(__pyx_t_5); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_4, __pyx_t_5); - goto __pyx_L1_error; - __pyx_L7_except_return:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_XGIVEREF(__pyx_t_5); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_4, __pyx_t_5); - goto __pyx_L0; - __pyx_L9_try_end:; - } - - /* "View.MemoryView":437 - * - * cdef is_slice(self, obj): - * if not isinstance(obj, memoryview): # <<<<<<<<<<<<<< - * try: - * obj = memoryview(obj, self.flags & ~PyBUF_WRITABLE | PyBUF_ANY_CONTIGUOUS, -*/ - } - - /* "View.MemoryView":444 - * return None - * - * return obj # <<<<<<<<<<<<<< - * - * cdef setitem_slice_assignment(self, dst, src): -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_obj); - __pyx_r = __pyx_v_obj; - goto __pyx_L0; - - /* "View.MemoryView":436 - * self.setitem_indexed(index, value) - * - * cdef is_slice(self, obj): # <<<<<<<<<<<<<< - * if not isinstance(obj, memoryview): - * try: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_AddTraceback("View.MemoryView.memoryview.is_slice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_obj); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":446 - * return obj - * - * cdef setitem_slice_assignment(self, dst, src): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice dst_slice - * cdef __Pyx_memviewslice src_slice -*/ - -static PyObject *__pyx_memoryview_setitem_slice_assignment(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_dst, PyObject *__pyx_v_src) { - __Pyx_memviewslice __pyx_v_dst_slice; - __Pyx_memviewslice __pyx_v_src_slice; - __Pyx_memviewslice __pyx_v_msrc; - __Pyx_memviewslice __pyx_v_mdst; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("setitem_slice_assignment", 0); - - /* "View.MemoryView":449 - * cdef __Pyx_memviewslice dst_slice - * cdef __Pyx_memviewslice src_slice - * cdef __Pyx_memviewslice msrc = get_slice_from_memview(src, &src_slice)[0] # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice mdst = get_slice_from_memview(dst, &dst_slice)[0] - * -*/ - if (!(likely(((__pyx_v_src) == Py_None) || likely(__Pyx_TypeTest(__pyx_v_src, __pyx_mstate_global->__pyx_memoryview_type))))) __PYX_ERR(1, 449, __pyx_L1_error) - __pyx_t_1 = __pyx_memoryview_get_slice_from_memoryview(((struct __pyx_memoryview_obj *)__pyx_v_src), (&__pyx_v_src_slice)); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 449, __pyx_L1_error) - __pyx_v_msrc = (__pyx_t_1[0]); - - /* "View.MemoryView":450 - * cdef __Pyx_memviewslice src_slice - * cdef __Pyx_memviewslice msrc = get_slice_from_memview(src, &src_slice)[0] - * cdef __Pyx_memviewslice mdst = get_slice_from_memview(dst, &dst_slice)[0] # <<<<<<<<<<<<<< - * - * memoryview_copy_contents(msrc, mdst, src.ndim, dst.ndim, self.dtype_is_object) -*/ - if (!(likely(((__pyx_v_dst) == Py_None) || likely(__Pyx_TypeTest(__pyx_v_dst, __pyx_mstate_global->__pyx_memoryview_type))))) __PYX_ERR(1, 450, __pyx_L1_error) - __pyx_t_1 = __pyx_memoryview_get_slice_from_memoryview(((struct __pyx_memoryview_obj *)__pyx_v_dst), (&__pyx_v_dst_slice)); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 450, __pyx_L1_error) - __pyx_v_mdst = (__pyx_t_1[0]); - - /* "View.MemoryView":452 - * cdef __Pyx_memviewslice mdst = get_slice_from_memview(dst, &dst_slice)[0] - * - * memoryview_copy_contents(msrc, mdst, src.ndim, dst.ndim, self.dtype_is_object) # <<<<<<<<<<<<<< - * - * cdef setitem_slice_assign_scalar(self, memoryview dst, value): -*/ - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_src, __pyx_mstate_global->__pyx_n_u_ndim); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 452, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyLong_As_int(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 452, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_dst, __pyx_mstate_global->__pyx_n_u_ndim); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 452, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = __Pyx_PyLong_As_int(__pyx_t_2); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 452, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_5 = __pyx_memoryview_copy_contents(__pyx_v_msrc, __pyx_v_mdst, __pyx_t_3, __pyx_t_4, __pyx_v_self->dtype_is_object); if (unlikely(__pyx_t_5 == ((int)-1))) __PYX_ERR(1, 452, __pyx_L1_error) - - /* "View.MemoryView":446 - * return obj - * - * cdef setitem_slice_assignment(self, dst, src): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice dst_slice - * cdef __Pyx_memviewslice src_slice -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.setitem_slice_assignment", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":454 - * memoryview_copy_contents(msrc, mdst, src.ndim, dst.ndim, self.dtype_is_object) - * - * cdef setitem_slice_assign_scalar(self, memoryview dst, value): # <<<<<<<<<<<<<< - * cdef int array[128] - * cdef void *tmp = NULL -*/ - -static PyObject *__pyx_memoryview_setitem_slice_assign_scalar(struct __pyx_memoryview_obj *__pyx_v_self, struct __pyx_memoryview_obj *__pyx_v_dst, PyObject *__pyx_v_value) { - int __pyx_v_array[128]; - void *__pyx_v_tmp; - void *__pyx_v_item; - __Pyx_memviewslice *__pyx_v_dst_slice; - __Pyx_memviewslice __pyx_v_tmp_slice; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice *__pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - int __pyx_t_4; - int __pyx_t_5; - char const *__pyx_t_6; - PyObject *__pyx_t_7 = NULL; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("setitem_slice_assign_scalar", 0); - - /* "View.MemoryView":456 - * cdef setitem_slice_assign_scalar(self, memoryview dst, value): - * cdef int array[128] - * cdef void *tmp = NULL # <<<<<<<<<<<<<< - * cdef void *item - * -*/ - __pyx_v_tmp = NULL; - - /* "View.MemoryView":461 - * cdef __Pyx_memviewslice *dst_slice - * cdef __Pyx_memviewslice tmp_slice - * dst_slice = get_slice_from_memview(dst, &tmp_slice) # <<<<<<<<<<<<<< - * - * if self.view.itemsize > sizeof(array): -*/ - __pyx_t_1 = __pyx_memoryview_get_slice_from_memoryview(__pyx_v_dst, (&__pyx_v_tmp_slice)); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 461, __pyx_L1_error) - __pyx_v_dst_slice = __pyx_t_1; - - /* "View.MemoryView":463 - * dst_slice = get_slice_from_memview(dst, &tmp_slice) - * - * if self.view.itemsize > sizeof(array): # <<<<<<<<<<<<<< - * tmp = PyMem_Malloc(self.view.itemsize) - * if tmp == NULL: -*/ - __pyx_t_2 = (((size_t)__pyx_v_self->view.itemsize) > (sizeof(__pyx_v_array))); - if (__pyx_t_2) { - - /* "View.MemoryView":464 - * - * if self.view.itemsize > sizeof(array): - * tmp = PyMem_Malloc(self.view.itemsize) # <<<<<<<<<<<<<< - * if tmp == NULL: - * raise MemoryError -*/ - __pyx_v_tmp = PyMem_Malloc(__pyx_v_self->view.itemsize); - - /* "View.MemoryView":465 - * if self.view.itemsize > sizeof(array): - * tmp = PyMem_Malloc(self.view.itemsize) - * if tmp == NULL: # <<<<<<<<<<<<<< - * raise MemoryError - * item = tmp -*/ - __pyx_t_2 = (__pyx_v_tmp == NULL); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":466 - * tmp = PyMem_Malloc(self.view.itemsize) - * if tmp == NULL: - * raise MemoryError # <<<<<<<<<<<<<< - * item = tmp - * else: -*/ - PyErr_NoMemory(); __PYX_ERR(1, 466, __pyx_L1_error) - - /* "View.MemoryView":465 - * if self.view.itemsize > sizeof(array): - * tmp = PyMem_Malloc(self.view.itemsize) - * if tmp == NULL: # <<<<<<<<<<<<<< - * raise MemoryError - * item = tmp -*/ - } - - /* "View.MemoryView":467 - * if tmp == NULL: - * raise MemoryError - * item = tmp # <<<<<<<<<<<<<< - * else: - * item = array -*/ - __pyx_v_item = __pyx_v_tmp; - - /* "View.MemoryView":463 - * dst_slice = get_slice_from_memview(dst, &tmp_slice) - * - * if self.view.itemsize > sizeof(array): # <<<<<<<<<<<<<< - * tmp = PyMem_Malloc(self.view.itemsize) - * if tmp == NULL: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":469 - * item = tmp - * else: - * item = array # <<<<<<<<<<<<<< - * - * try: -*/ - /*else*/ { - __pyx_v_item = ((void *)__pyx_v_array); - } - __pyx_L3:; - - /* "View.MemoryView":471 - * item = array - * - * try: # <<<<<<<<<<<<<< - * if self.dtype_is_object: - * ( item)[0] = value -*/ - /*try:*/ { - - /* "View.MemoryView":472 - * - * try: - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * ( item)[0] = value - * else: -*/ - if (__pyx_v_self->dtype_is_object) { - - /* "View.MemoryView":473 - * try: - * if self.dtype_is_object: - * ( item)[0] = value # <<<<<<<<<<<<<< - * else: - * self.assign_item_from_object( item, value) -*/ - (((PyObject **)__pyx_v_item)[0]) = ((PyObject *)__pyx_v_value); - - /* "View.MemoryView":472 - * - * try: - * if self.dtype_is_object: # <<<<<<<<<<<<<< - * ( item)[0] = value - * else: -*/ - goto __pyx_L8; - } - - /* "View.MemoryView":475 - * ( item)[0] = value - * else: - * self.assign_item_from_object( item, value) # <<<<<<<<<<<<<< - * - * -*/ - /*else*/ { - __pyx_t_3 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->assign_item_from_object(__pyx_v_self, ((char *)__pyx_v_item), __pyx_v_value); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 475, __pyx_L6_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - __pyx_L8:; - - /* "View.MemoryView":479 - * - * - * if self.view.suboffsets != NULL: # <<<<<<<<<<<<<< - * assert_direct_dimensions(self.view.suboffsets, self.view.ndim) - * slice_assign_scalar(dst_slice, dst.view.ndim, self.view.itemsize, -*/ - __pyx_t_2 = (__pyx_v_self->view.suboffsets != NULL); - if (__pyx_t_2) { - - /* "View.MemoryView":480 - * - * if self.view.suboffsets != NULL: - * assert_direct_dimensions(self.view.suboffsets, self.view.ndim) # <<<<<<<<<<<<<< - * slice_assign_scalar(dst_slice, dst.view.ndim, self.view.itemsize, - * item, self.dtype_is_object) -*/ - __pyx_t_4 = assert_direct_dimensions(__pyx_v_self->view.suboffsets, __pyx_v_self->view.ndim); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 480, __pyx_L6_error) - - /* "View.MemoryView":479 - * - * - * if self.view.suboffsets != NULL: # <<<<<<<<<<<<<< - * assert_direct_dimensions(self.view.suboffsets, self.view.ndim) - * slice_assign_scalar(dst_slice, dst.view.ndim, self.view.itemsize, -*/ - } - - /* "View.MemoryView":481 - * if self.view.suboffsets != NULL: - * assert_direct_dimensions(self.view.suboffsets, self.view.ndim) - * slice_assign_scalar(dst_slice, dst.view.ndim, self.view.itemsize, # <<<<<<<<<<<<<< - * item, self.dtype_is_object) - * finally: -*/ - __pyx_memoryview_slice_assign_scalar(__pyx_v_dst_slice, __pyx_v_dst->view.ndim, __pyx_v_self->view.itemsize, __pyx_v_item, __pyx_v_self->dtype_is_object); - } - - /* "View.MemoryView":484 - * item, self.dtype_is_object) - * finally: - * PyMem_Free(tmp) # <<<<<<<<<<<<<< - * - * cdef setitem_indexed(self, index, value): -*/ - /*finally:*/ { - /*normal exit:*/{ - PyMem_Free(__pyx_v_tmp); - goto __pyx_L7; - } - __pyx_L6_error:; - /*exception exit:*/{ - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __pyx_t_7 = 0; __pyx_t_8 = 0; __pyx_t_9 = 0; __pyx_t_10 = 0; __pyx_t_11 = 0; __pyx_t_12 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_ExceptionSwap(&__pyx_t_10, &__pyx_t_11, &__pyx_t_12); - if ( unlikely(__Pyx_GetException(&__pyx_t_7, &__pyx_t_8, &__pyx_t_9) < 0)) __Pyx_ErrFetch(&__pyx_t_7, &__pyx_t_8, &__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_7); - __Pyx_XGOTREF(__pyx_t_8); - __Pyx_XGOTREF(__pyx_t_9); - __Pyx_XGOTREF(__pyx_t_10); - __Pyx_XGOTREF(__pyx_t_11); - __Pyx_XGOTREF(__pyx_t_12); - __pyx_t_4 = __pyx_lineno; __pyx_t_5 = __pyx_clineno; __pyx_t_6 = __pyx_filename; - { - PyMem_Free(__pyx_v_tmp); - } - __Pyx_XGIVEREF(__pyx_t_10); - __Pyx_XGIVEREF(__pyx_t_11); - __Pyx_XGIVEREF(__pyx_t_12); - __Pyx_ExceptionReset(__pyx_t_10, __pyx_t_11, __pyx_t_12); - __Pyx_XGIVEREF(__pyx_t_7); - __Pyx_XGIVEREF(__pyx_t_8); - __Pyx_XGIVEREF(__pyx_t_9); - __Pyx_ErrRestore(__pyx_t_7, __pyx_t_8, __pyx_t_9); - __pyx_t_7 = 0; __pyx_t_8 = 0; __pyx_t_9 = 0; __pyx_t_10 = 0; __pyx_t_11 = 0; __pyx_t_12 = 0; - __pyx_lineno = __pyx_t_4; __pyx_clineno = __pyx_t_5; __pyx_filename = __pyx_t_6; - goto __pyx_L1_error; - } - __pyx_L7:; - } - - /* "View.MemoryView":454 - * memoryview_copy_contents(msrc, mdst, src.ndim, dst.ndim, self.dtype_is_object) - * - * cdef setitem_slice_assign_scalar(self, memoryview dst, value): # <<<<<<<<<<<<<< - * cdef int array[128] - * cdef void *tmp = NULL -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.memoryview.setitem_slice_assign_scalar", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":486 - * PyMem_Free(tmp) - * - * cdef setitem_indexed(self, index, value): # <<<<<<<<<<<<<< - * cdef char *itemp = self.get_item_pointer(index) - * self.assign_item_from_object(itemp, value) -*/ - -static PyObject *__pyx_memoryview_setitem_indexed(struct __pyx_memoryview_obj *__pyx_v_self, PyObject *__pyx_v_index, PyObject *__pyx_v_value) { - char *__pyx_v_itemp; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - char *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("setitem_indexed", 0); - - /* "View.MemoryView":487 - * - * cdef setitem_indexed(self, index, value): - * cdef char *itemp = self.get_item_pointer(index) # <<<<<<<<<<<<<< - * self.assign_item_from_object(itemp, value) - * -*/ - __pyx_t_1 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->get_item_pointer(__pyx_v_self, __pyx_v_index); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 487, __pyx_L1_error) - __pyx_v_itemp = __pyx_t_1; - - /* "View.MemoryView":488 - * cdef setitem_indexed(self, index, value): - * cdef char *itemp = self.get_item_pointer(index) - * self.assign_item_from_object(itemp, value) # <<<<<<<<<<<<<< - * - * cdef convert_item_to_object(self, char *itemp): -*/ - __pyx_t_2 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->assign_item_from_object(__pyx_v_self, __pyx_v_itemp, __pyx_v_value); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 488, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "View.MemoryView":486 - * PyMem_Free(tmp) - * - * cdef setitem_indexed(self, index, value): # <<<<<<<<<<<<<< - * cdef char *itemp = self.get_item_pointer(index) - * self.assign_item_from_object(itemp, value) -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.setitem_indexed", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":490 - * self.assign_item_from_object(itemp, value) - * - * cdef convert_item_to_object(self, char *itemp): # <<<<<<<<<<<<<< - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" -*/ - -static PyObject *__pyx_memoryview_convert_item_to_object(struct __pyx_memoryview_obj *__pyx_v_self, char *__pyx_v_itemp) { - PyObject *__pyx_v_struct = NULL; - PyObject *__pyx_v_bytesitem = 0; - PyObject *__pyx_v_result = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - size_t __pyx_t_7; - Py_ssize_t __pyx_t_8; - int __pyx_t_9; - PyObject *__pyx_t_10 = NULL; - int __pyx_t_11; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("convert_item_to_object", 0); - - /* "View.MemoryView":493 - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" - * import struct # <<<<<<<<<<<<<< - * cdef bytes bytesitem - * -*/ - __pyx_t_2 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_struct, 0, 0, NULL, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 493, __pyx_L1_error) - __pyx_t_1 = __pyx_t_2; - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_struct = __pyx_t_1; - __pyx_t_1 = 0; - - /* "View.MemoryView":496 - * cdef bytes bytesitem - * - * bytesitem = itemp[:self.view.itemsize] # <<<<<<<<<<<<<< - * try: - * result = struct.unpack(self.view.format, bytesitem) -*/ - __pyx_t_1 = __Pyx_PyBytes_FromStringAndSize(__pyx_v_itemp + 0, __pyx_v_self->view.itemsize - 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 496, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_bytesitem = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":497 - * - * bytesitem = itemp[:self.view.itemsize] - * try: # <<<<<<<<<<<<<< - * result = struct.unpack(self.view.format, bytesitem) - * except struct.error: -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_2, &__pyx_t_3, &__pyx_t_4); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_4); - /*try:*/ { - - /* "View.MemoryView":498 - * bytesitem = itemp[:self.view.itemsize] - * try: - * result = struct.unpack(self.view.format, bytesitem) # <<<<<<<<<<<<<< - * except struct.error: - * raise ValueError, "Unable to convert item to object" -*/ - __pyx_t_5 = __pyx_v_struct; - __Pyx_INCREF(__pyx_t_5); - __pyx_t_6 = __Pyx_PyBytes_FromString(__pyx_v_self->view.format); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 498, __pyx_L3_error) - __Pyx_GOTREF(__pyx_t_6); - __pyx_t_7 = 0; - { - PyObject *__pyx_callargs[3] = {__pyx_t_5, __pyx_t_6, __pyx_v_bytesitem}; - __pyx_t_1 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_unpack, __pyx_callargs+__pyx_t_7, (3-__pyx_t_7) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 498, __pyx_L3_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_result = __pyx_t_1; - __pyx_t_1 = 0; - - /* "View.MemoryView":497 - * - * bytesitem = itemp[:self.view.itemsize] - * try: # <<<<<<<<<<<<<< - * result = struct.unpack(self.view.format, bytesitem) - * except struct.error: -*/ - } - - /* "View.MemoryView":502 - * raise ValueError, "Unable to convert item to object" - * else: - * if len(self.view.format) == 1: # <<<<<<<<<<<<<< - * return result[0] - * return result -*/ - /*else:*/ { - __pyx_t_8 = __Pyx_ssize_strlen(__pyx_v_self->view.format); if (unlikely(__pyx_t_8 == ((Py_ssize_t)-1))) __PYX_ERR(1, 502, __pyx_L5_except_error) - __pyx_t_9 = (__pyx_t_8 == 1); - if (__pyx_t_9) { - - /* "View.MemoryView":503 - * else: - * if len(self.view.format) == 1: - * return result[0] # <<<<<<<<<<<<<< - * return result - * -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_result, 0, long, 1, __Pyx_PyLong_From_long, 0, 0, 1, 1, __Pyx_ReferenceSharing_OwnStrongReference); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 503, __pyx_L5_except_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L6_except_return; - - /* "View.MemoryView":502 - * raise ValueError, "Unable to convert item to object" - * else: - * if len(self.view.format) == 1: # <<<<<<<<<<<<<< - * return result[0] - * return result -*/ - } - - /* "View.MemoryView":504 - * if len(self.view.format) == 1: - * return result[0] - * return result # <<<<<<<<<<<<<< - * - * cdef assign_item_from_object(self, char *itemp, object value): -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_result); - __pyx_r = __pyx_v_result; - goto __pyx_L6_except_return; - } - __pyx_L3_error:; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - - /* "View.MemoryView":499 - * try: - * result = struct.unpack(self.view.format, bytesitem) - * except struct.error: # <<<<<<<<<<<<<< - * raise ValueError, "Unable to convert item to object" - * else: -*/ - __Pyx_ErrFetch(&__pyx_t_1, &__pyx_t_6, &__pyx_t_5); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_v_struct, __pyx_mstate_global->__pyx_n_u_error); if (unlikely(!__pyx_t_10)) __PYX_ERR(1, 499, __pyx_L5_except_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11 = __Pyx_PyErr_GivenExceptionMatches(__pyx_t_1, __pyx_t_10); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_ErrRestore(__pyx_t_1, __pyx_t_6, __pyx_t_5); - __pyx_t_1 = 0; __pyx_t_6 = 0; __pyx_t_5 = 0; - if (__pyx_t_11) { - __Pyx_AddTraceback("View.MemoryView.memoryview.convert_item_to_object", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_1) < 0) __PYX_ERR(1, 499, __pyx_L5_except_error) - __Pyx_XGOTREF(__pyx_t_5); - __Pyx_XGOTREF(__pyx_t_6); - __Pyx_XGOTREF(__pyx_t_1); - - /* "View.MemoryView":500 - * result = struct.unpack(self.view.format, bytesitem) - * except struct.error: - * raise ValueError, "Unable to convert item to object" # <<<<<<<<<<<<<< - * else: - * if len(self.view.format) == 1: -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Unable_to_convert_item_to_object, 0, 0); - __PYX_ERR(1, 500, __pyx_L5_except_error) - } - goto __pyx_L5_except_error; - - /* "View.MemoryView":497 - * - * bytesitem = itemp[:self.view.itemsize] - * try: # <<<<<<<<<<<<<< - * result = struct.unpack(self.view.format, bytesitem) - * except struct.error: -*/ - __pyx_L5_except_error:; - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_ExceptionReset(__pyx_t_2, __pyx_t_3, __pyx_t_4); - goto __pyx_L1_error; - __pyx_L6_except_return:; - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_4); - __Pyx_ExceptionReset(__pyx_t_2, __pyx_t_3, __pyx_t_4); - goto __pyx_L0; - } - - /* "View.MemoryView":490 - * self.assign_item_from_object(itemp, value) - * - * cdef convert_item_to_object(self, char *itemp): # <<<<<<<<<<<<<< - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_AddTraceback("View.MemoryView.memoryview.convert_item_to_object", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_struct); - __Pyx_XDECREF(__pyx_v_bytesitem); - __Pyx_XDECREF(__pyx_v_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":506 - * return result - * - * cdef assign_item_from_object(self, char *itemp, object value): # <<<<<<<<<<<<<< - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" -*/ - -static PyObject *__pyx_memoryview_assign_item_from_object(struct __pyx_memoryview_obj *__pyx_v_self, char *__pyx_v_itemp, PyObject *__pyx_v_value) { - PyObject *__pyx_v_struct = NULL; - char __pyx_v_c; - PyObject *__pyx_v_bytesvalue = 0; - Py_ssize_t __pyx_v_i; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_t_3; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - PyObject *__pyx_t_6 = NULL; - size_t __pyx_t_7; - Py_ssize_t __pyx_t_8; - PyObject *__pyx_t_9 = NULL; - char *__pyx_t_10; - char *__pyx_t_11; - Py_ssize_t __pyx_t_12; - char *__pyx_t_13; - char *__pyx_t_14; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("assign_item_from_object", 0); - - /* "View.MemoryView":509 - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" - * import struct # <<<<<<<<<<<<<< - * cdef char c - * cdef bytes bytesvalue -*/ - __pyx_t_2 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_struct, 0, 0, NULL, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 509, __pyx_L1_error) - __pyx_t_1 = __pyx_t_2; - __Pyx_GOTREF(__pyx_t_1); - __pyx_v_struct = __pyx_t_1; - __pyx_t_1 = 0; - - /* "View.MemoryView":514 - * cdef Py_ssize_t i - * - * if isinstance(value, tuple): # <<<<<<<<<<<<<< - * bytesvalue = struct.pack(self.view.format, *value) - * else: -*/ - __pyx_t_3 = PyTuple_Check(__pyx_v_value); - if (__pyx_t_3) { - - /* "View.MemoryView":515 - * - * if isinstance(value, tuple): - * bytesvalue = struct.pack(self.view.format, *value) # <<<<<<<<<<<<<< - * else: - * bytesvalue = struct.pack(self.view.format, value) -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_struct, __pyx_mstate_global->__pyx_n_u_pack); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyBytes_FromString(__pyx_v_self->view.format); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_GIVEREF(__pyx_t_4); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4) != (0)) __PYX_ERR(1, 515, __pyx_L1_error); - __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PySequence_Tuple(__pyx_v_value); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 = PyNumber_Add(__pyx_t_5, __pyx_t_4); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_6, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 515, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - if (!(likely(PyBytes_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None) || __Pyx_RaiseUnexpectedTypeError("bytes", __pyx_t_4))) __PYX_ERR(1, 515, __pyx_L1_error) - __pyx_v_bytesvalue = ((PyObject*)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":514 - * cdef Py_ssize_t i - * - * if isinstance(value, tuple): # <<<<<<<<<<<<<< - * bytesvalue = struct.pack(self.view.format, *value) - * else: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":517 - * bytesvalue = struct.pack(self.view.format, *value) - * else: - * bytesvalue = struct.pack(self.view.format, value) # <<<<<<<<<<<<<< - * - * for i, c in enumerate(bytesvalue): -*/ - /*else*/ { - __pyx_t_6 = __pyx_v_struct; - __Pyx_INCREF(__pyx_t_6); - __pyx_t_1 = __Pyx_PyBytes_FromString(__pyx_v_self->view.format); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 517, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_7 = 0; - { - PyObject *__pyx_callargs[3] = {__pyx_t_6, __pyx_t_1, __pyx_v_value}; - __pyx_t_4 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_pack, __pyx_callargs+__pyx_t_7, (3-__pyx_t_7) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 517, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - } - if (!(likely(PyBytes_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None) || __Pyx_RaiseUnexpectedTypeError("bytes", __pyx_t_4))) __PYX_ERR(1, 517, __pyx_L1_error) - __pyx_v_bytesvalue = ((PyObject*)__pyx_t_4); - __pyx_t_4 = 0; - } - __pyx_L3:; - - /* "View.MemoryView":519 - * bytesvalue = struct.pack(self.view.format, value) - * - * for i, c in enumerate(bytesvalue): # <<<<<<<<<<<<<< - * itemp[i] = c - * -*/ - __pyx_t_8 = 0; - if (unlikely(__pyx_v_bytesvalue == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' is not iterable"); - __PYX_ERR(1, 519, __pyx_L1_error) - } - __Pyx_INCREF(__pyx_v_bytesvalue); - __pyx_t_9 = __pyx_v_bytesvalue; - __pyx_t_11 = __Pyx_PyBytes_AsWritableString(__pyx_t_9); if (unlikely(__pyx_t_11 == ((char *)NULL))) __PYX_ERR(1, 519, __pyx_L1_error) - __pyx_t_12 = __Pyx_PyBytes_GET_SIZE(__pyx_t_9); if (unlikely(__pyx_t_12 == ((Py_ssize_t)-1))) __PYX_ERR(1, 519, __pyx_L1_error) - __pyx_t_13 = (__pyx_t_11 + __pyx_t_12); - for (__pyx_t_14 = __pyx_t_11; __pyx_t_14 < __pyx_t_13; __pyx_t_14++) { - __pyx_t_10 = __pyx_t_14; - __pyx_v_c = (__pyx_t_10[0]); - - /* "View.MemoryView":520 - * - * for i, c in enumerate(bytesvalue): - * itemp[i] = c # <<<<<<<<<<<<<< - * - * @cname('getbuffer') -*/ - __pyx_v_i = __pyx_t_8; - - /* "View.MemoryView":519 - * bytesvalue = struct.pack(self.view.format, value) - * - * for i, c in enumerate(bytesvalue): # <<<<<<<<<<<<<< - * itemp[i] = c - * -*/ - __pyx_t_8 = (__pyx_t_8 + 1); - - /* "View.MemoryView":520 - * - * for i, c in enumerate(bytesvalue): - * itemp[i] = c # <<<<<<<<<<<<<< - * - * @cname('getbuffer') -*/ - (__pyx_v_itemp[__pyx_v_i]) = __pyx_v_c; - } - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - - /* "View.MemoryView":506 - * return result - * - * cdef assign_item_from_object(self, char *itemp, object value): # <<<<<<<<<<<<<< - * """Only used if instantiated manually by the user, or if Cython doesn't - * know how to convert the type""" -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_AddTraceback("View.MemoryView.memoryview.assign_item_from_object", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_struct); - __Pyx_XDECREF(__pyx_v_bytesvalue); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":522 - * itemp[i] = c - * - * @cname('getbuffer') # <<<<<<<<<<<<<< - * def __getbuffer__(self, Py_buffer *info, int flags): - * if flags & PyBUF_WRITABLE and self.view.readonly: -*/ - -/* Python wrapper */ -CYTHON_UNUSED static int __pyx_memoryview_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/ -CYTHON_UNUSED static int __pyx_memoryview_getbuffer(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - int __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__getbuffer__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_8__getbuffer__(((struct __pyx_memoryview_obj *)__pyx_v_self), ((Py_buffer *)__pyx_v_info), ((int)__pyx_v_flags)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static int __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_8__getbuffer__(struct __pyx_memoryview_obj *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { - int __pyx_r; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_t_2; - Py_ssize_t *__pyx_t_3; - char *__pyx_t_4; - void *__pyx_t_5; - int __pyx_t_6; - Py_ssize_t __pyx_t_7; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - if (unlikely(__pyx_v_info == NULL)) { - PyErr_SetString(PyExc_BufferError, "PyObject_GetBuffer: view==NULL argument is obsolete"); - return -1; - } - __Pyx_RefNannySetupContext("__getbuffer__", 0); - __pyx_v_info->obj = Py_None; __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(__pyx_v_info->obj); - - /* "View.MemoryView":524 - * @cname('getbuffer') - * def __getbuffer__(self, Py_buffer *info, int flags): - * if flags & PyBUF_WRITABLE and self.view.readonly: # <<<<<<<<<<<<<< - * raise ValueError, "Cannot create writable memory view from read-only memoryview" - * -*/ - __pyx_t_2 = ((__pyx_v_flags & PyBUF_WRITABLE) != 0); - if (__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L4_bool_binop_done; - } - __pyx_t_1 = __pyx_v_self->view.readonly; - __pyx_L4_bool_binop_done:; - if (unlikely(__pyx_t_1)) { - - /* "View.MemoryView":525 - * def __getbuffer__(self, Py_buffer *info, int flags): - * if flags & PyBUF_WRITABLE and self.view.readonly: - * raise ValueError, "Cannot create writable memory view from read-only memoryview" # <<<<<<<<<<<<<< - * - * if flags & PyBUF_ND: -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Cannot_create_writable_memory_vi, 0, 0); - __PYX_ERR(1, 525, __pyx_L1_error) - - /* "View.MemoryView":524 - * @cname('getbuffer') - * def __getbuffer__(self, Py_buffer *info, int flags): - * if flags & PyBUF_WRITABLE and self.view.readonly: # <<<<<<<<<<<<<< - * raise ValueError, "Cannot create writable memory view from read-only memoryview" - * -*/ - } - - /* "View.MemoryView":527 - * raise ValueError, "Cannot create writable memory view from read-only memoryview" - * - * if flags & PyBUF_ND: # <<<<<<<<<<<<<< - * info.shape = self.view.shape - * else: -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_ND) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":528 - * - * if flags & PyBUF_ND: - * info.shape = self.view.shape # <<<<<<<<<<<<<< - * else: - * info.shape = NULL -*/ - __pyx_t_3 = __pyx_v_self->view.shape; - __pyx_v_info->shape = __pyx_t_3; - - /* "View.MemoryView":527 - * raise ValueError, "Cannot create writable memory view from read-only memoryview" - * - * if flags & PyBUF_ND: # <<<<<<<<<<<<<< - * info.shape = self.view.shape - * else: -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":530 - * info.shape = self.view.shape - * else: - * info.shape = NULL # <<<<<<<<<<<<<< - * - * if flags & PyBUF_STRIDES: -*/ - /*else*/ { - __pyx_v_info->shape = NULL; - } - __pyx_L6:; - - /* "View.MemoryView":532 - * info.shape = NULL - * - * if flags & PyBUF_STRIDES: # <<<<<<<<<<<<<< - * info.strides = self.view.strides - * else: -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_STRIDES) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":533 - * - * if flags & PyBUF_STRIDES: - * info.strides = self.view.strides # <<<<<<<<<<<<<< - * else: - * info.strides = NULL -*/ - __pyx_t_3 = __pyx_v_self->view.strides; - __pyx_v_info->strides = __pyx_t_3; - - /* "View.MemoryView":532 - * info.shape = NULL - * - * if flags & PyBUF_STRIDES: # <<<<<<<<<<<<<< - * info.strides = self.view.strides - * else: -*/ - goto __pyx_L7; - } - - /* "View.MemoryView":535 - * info.strides = self.view.strides - * else: - * info.strides = NULL # <<<<<<<<<<<<<< - * - * if flags & PyBUF_INDIRECT: -*/ - /*else*/ { - __pyx_v_info->strides = NULL; - } - __pyx_L7:; - - /* "View.MemoryView":537 - * info.strides = NULL - * - * if flags & PyBUF_INDIRECT: # <<<<<<<<<<<<<< - * info.suboffsets = self.view.suboffsets - * else: -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_INDIRECT) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":538 - * - * if flags & PyBUF_INDIRECT: - * info.suboffsets = self.view.suboffsets # <<<<<<<<<<<<<< - * else: - * info.suboffsets = NULL -*/ - __pyx_t_3 = __pyx_v_self->view.suboffsets; - __pyx_v_info->suboffsets = __pyx_t_3; - - /* "View.MemoryView":537 - * info.strides = NULL - * - * if flags & PyBUF_INDIRECT: # <<<<<<<<<<<<<< - * info.suboffsets = self.view.suboffsets - * else: -*/ - goto __pyx_L8; - } - - /* "View.MemoryView":540 - * info.suboffsets = self.view.suboffsets - * else: - * info.suboffsets = NULL # <<<<<<<<<<<<<< - * - * if flags & PyBUF_FORMAT: -*/ - /*else*/ { - __pyx_v_info->suboffsets = NULL; - } - __pyx_L8:; - - /* "View.MemoryView":542 - * info.suboffsets = NULL - * - * if flags & PyBUF_FORMAT: # <<<<<<<<<<<<<< - * info.format = self.view.format - * else: -*/ - __pyx_t_1 = ((__pyx_v_flags & PyBUF_FORMAT) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":543 - * - * if flags & PyBUF_FORMAT: - * info.format = self.view.format # <<<<<<<<<<<<<< - * else: - * info.format = NULL -*/ - __pyx_t_4 = __pyx_v_self->view.format; - __pyx_v_info->format = __pyx_t_4; - - /* "View.MemoryView":542 - * info.suboffsets = NULL - * - * if flags & PyBUF_FORMAT: # <<<<<<<<<<<<<< - * info.format = self.view.format - * else: -*/ - goto __pyx_L9; - } - - /* "View.MemoryView":545 - * info.format = self.view.format - * else: - * info.format = NULL # <<<<<<<<<<<<<< - * - * info.buf = self.view.buf -*/ - /*else*/ { - __pyx_v_info->format = NULL; - } - __pyx_L9:; - - /* "View.MemoryView":547 - * info.format = NULL - * - * info.buf = self.view.buf # <<<<<<<<<<<<<< - * info.ndim = self.view.ndim - * info.itemsize = self.view.itemsize -*/ - __pyx_t_5 = __pyx_v_self->view.buf; - __pyx_v_info->buf = __pyx_t_5; - - /* "View.MemoryView":548 - * - * info.buf = self.view.buf - * info.ndim = self.view.ndim # <<<<<<<<<<<<<< - * info.itemsize = self.view.itemsize - * info.len = self.view.len -*/ - __pyx_t_6 = __pyx_v_self->view.ndim; - __pyx_v_info->ndim = __pyx_t_6; - - /* "View.MemoryView":549 - * info.buf = self.view.buf - * info.ndim = self.view.ndim - * info.itemsize = self.view.itemsize # <<<<<<<<<<<<<< - * info.len = self.view.len - * info.readonly = self.view.readonly -*/ - __pyx_t_7 = __pyx_v_self->view.itemsize; - __pyx_v_info->itemsize = __pyx_t_7; - - /* "View.MemoryView":550 - * info.ndim = self.view.ndim - * info.itemsize = self.view.itemsize - * info.len = self.view.len # <<<<<<<<<<<<<< - * info.readonly = self.view.readonly - * info.obj = self -*/ - __pyx_t_7 = __pyx_v_self->view.len; - __pyx_v_info->len = __pyx_t_7; - - /* "View.MemoryView":551 - * info.itemsize = self.view.itemsize - * info.len = self.view.len - * info.readonly = self.view.readonly # <<<<<<<<<<<<<< - * info.obj = self - * -*/ - __pyx_t_1 = __pyx_v_self->view.readonly; - __pyx_v_info->readonly = __pyx_t_1; - - /* "View.MemoryView":552 - * info.len = self.view.len - * info.readonly = self.view.readonly - * info.obj = self # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_INCREF((PyObject *)__pyx_v_self); - __Pyx_GIVEREF((PyObject *)__pyx_v_self); - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); - __pyx_v_info->obj = ((PyObject *)__pyx_v_self); - - /* "View.MemoryView":522 - * itemp[i] = c - * - * @cname('getbuffer') # <<<<<<<<<<<<<< - * def __getbuffer__(self, Py_buffer *info, int flags): - * if flags & PyBUF_WRITABLE and self.view.readonly: -*/ - - /* function exit code */ - __pyx_r = 0; - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.memoryview.__getbuffer__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - if (__pyx_v_info->obj != NULL) { - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; - } - goto __pyx_L2; - __pyx_L0:; - if (__pyx_v_info->obj == Py_None) { - __Pyx_GOTREF(__pyx_v_info->obj); - __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; - } - __pyx_L2:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":555 - * - * - * @property # <<<<<<<<<<<<<< - * def T(self): - * cdef _memoryviewslice result = memoryview_copy(self) -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_1T_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_1T_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_1T___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_1T___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - struct __pyx_memoryviewslice_obj *__pyx_v_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":557 - * @property - * def T(self): - * cdef _memoryviewslice result = memoryview_copy(self) # <<<<<<<<<<<<<< - * transpose_memslice(&result.from_slice) - * return result -*/ - __pyx_t_1 = __pyx_memoryview_copy_object(__pyx_v_self); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 557, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_mstate_global->__pyx_memoryviewslice_type))))) __PYX_ERR(1, 557, __pyx_L1_error) - __pyx_v_result = ((struct __pyx_memoryviewslice_obj *)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":558 - * def T(self): - * cdef _memoryviewslice result = memoryview_copy(self) - * transpose_memslice(&result.from_slice) # <<<<<<<<<<<<<< - * return result - * -*/ - __pyx_t_2 = __pyx_memslice_transpose((&__pyx_v_result->from_slice)); if (unlikely(__pyx_t_2 == ((int)-1))) __PYX_ERR(1, 558, __pyx_L1_error) - - /* "View.MemoryView":559 - * cdef _memoryviewslice result = memoryview_copy(self) - * transpose_memslice(&result.from_slice) - * return result # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF((PyObject *)__pyx_v_result); - __pyx_r = ((PyObject *)__pyx_v_result); - goto __pyx_L0; - - /* "View.MemoryView":555 - * - * - * @property # <<<<<<<<<<<<<< - * def T(self): - * cdef _memoryviewslice result = memoryview_copy(self) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.memoryview.T.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":561 - * return result - * - * @property # <<<<<<<<<<<<<< - * def base(self): - * return self._get_base() -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4base_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4base_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_4base___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4base___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":563 - * @property - * def base(self): - * return self._get_base() # <<<<<<<<<<<<<< - * - * cdef _get_base(self): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = ((struct __pyx_vtabstruct_memoryview *)__pyx_v_self->__pyx_vtab)->_get_base(__pyx_v_self); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 563, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":561 - * return result - * - * @property # <<<<<<<<<<<<<< - * def base(self): - * return self._get_base() -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.memoryview.base.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":565 - * return self._get_base() - * - * cdef _get_base(self): # <<<<<<<<<<<<<< - * return self.obj - * -*/ - -static PyObject *__pyx_memoryview__get_base(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("_get_base", 0); - - /* "View.MemoryView":566 - * - * cdef _get_base(self): - * return self.obj # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_self->obj); - __pyx_r = __pyx_v_self->obj; - goto __pyx_L0; - - /* "View.MemoryView":565 - * return self._get_base() - * - * cdef _get_base(self): # <<<<<<<<<<<<<< - * return self.obj - * -*/ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":568 - * return self.obj - * - * @property # <<<<<<<<<<<<<< - * def shape(self): - * return tuple([length for length in self.view.shape[:self.view.ndim]]) -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_5shape_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_5shape_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_5shape___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_5shape___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - Py_ssize_t __pyx_7genexpr__pyx_v_length; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t *__pyx_t_2; - Py_ssize_t *__pyx_t_3; - Py_ssize_t *__pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":570 - * @property - * def shape(self): - * return tuple([length for length in self.view.shape[:self.view.ndim]]) # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - { /* enter inner scope */ - __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 570, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = (__pyx_v_self->view.shape + __pyx_v_self->view.ndim); - for (__pyx_t_4 = __pyx_v_self->view.shape; __pyx_t_4 < __pyx_t_3; __pyx_t_4++) { - __pyx_t_2 = __pyx_t_4; - __pyx_7genexpr__pyx_v_length = (__pyx_t_2[0]); - __pyx_t_5 = PyLong_FromSsize_t(__pyx_7genexpr__pyx_v_length); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 570, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_1, (PyObject*)__pyx_t_5))) __PYX_ERR(1, 570, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - } /* exit inner scope */ - __pyx_t_5 = PyList_AsTuple(((PyObject*)__pyx_t_1)); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 570, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_r = __pyx_t_5; - __pyx_t_5 = 0; - goto __pyx_L0; - - /* "View.MemoryView":568 - * return self.obj - * - * @property # <<<<<<<<<<<<<< - * def shape(self): - * return tuple([length for length in self.view.shape[:self.view.ndim]]) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView.memoryview.shape.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":572 - * return tuple([length for length in self.view.shape[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def strides(self): - * if self.view.strides == NULL: -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_7strides_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_7strides_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_7strides___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_7strides___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - Py_ssize_t __pyx_8genexpr1__pyx_v_stride; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t *__pyx_t_3; - Py_ssize_t *__pyx_t_4; - Py_ssize_t *__pyx_t_5; - PyObject *__pyx_t_6 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":574 - * @property - * def strides(self): - * if self.view.strides == NULL: # <<<<<<<<<<<<<< - * - * raise ValueError, "Buffer view does not expose strides" -*/ - __pyx_t_1 = (__pyx_v_self->view.strides == NULL); - if (unlikely(__pyx_t_1)) { - - /* "View.MemoryView":576 - * if self.view.strides == NULL: - * - * raise ValueError, "Buffer view does not expose strides" # <<<<<<<<<<<<<< - * - * return tuple([stride for stride in self.view.strides[:self.view.ndim]]) -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Buffer_view_does_not_expose_stri, 0, 0); - __PYX_ERR(1, 576, __pyx_L1_error) - - /* "View.MemoryView":574 - * @property - * def strides(self): - * if self.view.strides == NULL: # <<<<<<<<<<<<<< - * - * raise ValueError, "Buffer view does not expose strides" -*/ - } - - /* "View.MemoryView":578 - * raise ValueError, "Buffer view does not expose strides" - * - * return tuple([stride for stride in self.view.strides[:self.view.ndim]]) # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - { /* enter inner scope */ - __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 578, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = (__pyx_v_self->view.strides + __pyx_v_self->view.ndim); - for (__pyx_t_5 = __pyx_v_self->view.strides; __pyx_t_5 < __pyx_t_4; __pyx_t_5++) { - __pyx_t_3 = __pyx_t_5; - __pyx_8genexpr1__pyx_v_stride = (__pyx_t_3[0]); - __pyx_t_6 = PyLong_FromSsize_t(__pyx_8genexpr1__pyx_v_stride); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 578, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_2, (PyObject*)__pyx_t_6))) __PYX_ERR(1, 578, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - } /* exit inner scope */ - __pyx_t_6 = PyList_AsTuple(((PyObject*)__pyx_t_2)); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 578, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_6; - __pyx_t_6 = 0; - goto __pyx_L0; - - /* "View.MemoryView":572 - * return tuple([length for length in self.view.shape[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def strides(self): - * if self.view.strides == NULL: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("View.MemoryView.memoryview.strides.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":580 - * return tuple([stride for stride in self.view.strides[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def suboffsets(self): - * if self.view.suboffsets == NULL: -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_10suboffsets_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_10suboffsets_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_10suboffsets___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_10suboffsets___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - Py_ssize_t __pyx_8genexpr2__pyx_v_suboffset; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - Py_ssize_t *__pyx_t_3; - Py_ssize_t *__pyx_t_4; - Py_ssize_t *__pyx_t_5; - PyObject *__pyx_t_6 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":582 - * @property - * def suboffsets(self): - * if self.view.suboffsets == NULL: # <<<<<<<<<<<<<< - * return (-1,) * self.view.ndim - * -*/ - __pyx_t_1 = (__pyx_v_self->view.suboffsets == NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":583 - * def suboffsets(self): - * if self.view.suboffsets == NULL: - * return (-1,) * self.view.ndim # <<<<<<<<<<<<<< - * - * return tuple([suboffset for suboffset in self.view.suboffsets[:self.view.ndim]]) -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PySequence_Multiply(__pyx_mstate_global->__pyx_tuple[1], __pyx_v_self->view.ndim); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 583, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":582 - * @property - * def suboffsets(self): - * if self.view.suboffsets == NULL: # <<<<<<<<<<<<<< - * return (-1,) * self.view.ndim - * -*/ - } - - /* "View.MemoryView":585 - * return (-1,) * self.view.ndim - * - * return tuple([suboffset for suboffset in self.view.suboffsets[:self.view.ndim]]) # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - { /* enter inner scope */ - __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 585, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_4 = (__pyx_v_self->view.suboffsets + __pyx_v_self->view.ndim); - for (__pyx_t_5 = __pyx_v_self->view.suboffsets; __pyx_t_5 < __pyx_t_4; __pyx_t_5++) { - __pyx_t_3 = __pyx_t_5; - __pyx_8genexpr2__pyx_v_suboffset = (__pyx_t_3[0]); - __pyx_t_6 = PyLong_FromSsize_t(__pyx_8genexpr2__pyx_v_suboffset); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 585, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - if (unlikely(__Pyx_ListComp_Append(__pyx_t_2, (PyObject*)__pyx_t_6))) __PYX_ERR(1, 585, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; - } - } /* exit inner scope */ - __pyx_t_6 = PyList_AsTuple(((PyObject*)__pyx_t_2)); if (unlikely(!__pyx_t_6)) __PYX_ERR(1, 585, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_6); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_6; - __pyx_t_6 = 0; - goto __pyx_L0; - - /* "View.MemoryView":580 - * return tuple([stride for stride in self.view.strides[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def suboffsets(self): - * if self.view.suboffsets == NULL: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_6); - __Pyx_AddTraceback("View.MemoryView.memoryview.suboffsets.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":587 - * return tuple([suboffset for suboffset in self.view.suboffsets[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def ndim(self): - * return self.view.ndim -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4ndim_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4ndim_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_4ndim___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4ndim___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":589 - * @property - * def ndim(self): - * return self.view.ndim # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyLong_From_int(__pyx_v_self->view.ndim); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 589, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":587 - * return tuple([suboffset for suboffset in self.view.suboffsets[:self.view.ndim]]) - * - * @property # <<<<<<<<<<<<<< - * def ndim(self): - * return self.view.ndim -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.memoryview.ndim.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":591 - * return self.view.ndim - * - * @property # <<<<<<<<<<<<<< - * def itemsize(self): - * return self.view.itemsize -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_8itemsize_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_8itemsize_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_8itemsize___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_8itemsize___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":593 - * @property - * def itemsize(self): - * return self.view.itemsize # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyLong_FromSsize_t(__pyx_v_self->view.itemsize); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 593, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":591 - * return self.view.ndim - * - * @property # <<<<<<<<<<<<<< - * def itemsize(self): - * return self.view.itemsize -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.memoryview.itemsize.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":595 - * return self.view.itemsize - * - * @property # <<<<<<<<<<<<<< - * def nbytes(self): - * return self.size * self.view.itemsize -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_6nbytes_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_6nbytes_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_6nbytes___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_6nbytes___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":597 - * @property - * def nbytes(self): - * return self.size * self.view.itemsize # <<<<<<<<<<<<<< - * - * @property -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_size); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 597, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = PyLong_FromSsize_t(__pyx_v_self->view.itemsize); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 597, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyNumber_Multiply(__pyx_t_1, __pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 597, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_3; - __pyx_t_3 = 0; - goto __pyx_L0; - - /* "View.MemoryView":595 - * return self.view.itemsize - * - * @property # <<<<<<<<<<<<<< - * def nbytes(self): - * return self.size * self.view.itemsize -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.memoryview.nbytes.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":599 - * return self.size * self.view.itemsize - * - * @property # <<<<<<<<<<<<<< - * def size(self): - * if self._size is None: -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4size_1__get__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_pw_15View_dot_MemoryView_10memoryview_4size_1__get__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__get__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_pf_15View_dot_MemoryView_10memoryview_4size___get__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView_10memoryview_4size___get__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_v_result = NULL; - PyObject *__pyx_v_length = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - Py_ssize_t *__pyx_t_2; - Py_ssize_t *__pyx_t_3; - Py_ssize_t *__pyx_t_4; - PyObject *__pyx_t_5 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__get__", 0); - - /* "View.MemoryView":601 - * @property - * def size(self): - * if self._size is None: # <<<<<<<<<<<<<< - * result = 1 - * -*/ - __pyx_t_1 = (__pyx_v_self->_size == Py_None); - if (__pyx_t_1) { - - /* "View.MemoryView":602 - * def size(self): - * if self._size is None: - * result = 1 # <<<<<<<<<<<<<< - * - * for length in self.view.shape[:self.view.ndim]: -*/ - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_1); - __pyx_v_result = __pyx_mstate_global->__pyx_int_1; - - /* "View.MemoryView":604 - * result = 1 - * - * for length in self.view.shape[:self.view.ndim]: # <<<<<<<<<<<<<< - * result *= length - * -*/ - __pyx_t_3 = (__pyx_v_self->view.shape + __pyx_v_self->view.ndim); - for (__pyx_t_4 = __pyx_v_self->view.shape; __pyx_t_4 < __pyx_t_3; __pyx_t_4++) { - __pyx_t_2 = __pyx_t_4; - __pyx_t_5 = PyLong_FromSsize_t((__pyx_t_2[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 604, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_XDECREF_SET(__pyx_v_length, __pyx_t_5); - __pyx_t_5 = 0; - - /* "View.MemoryView":605 - * - * for length in self.view.shape[:self.view.ndim]: - * result *= length # <<<<<<<<<<<<<< - * - * self._size = result -*/ - __pyx_t_5 = PyNumber_InPlaceMultiply(__pyx_v_result, __pyx_v_length); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 605, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF_SET(__pyx_v_result, __pyx_t_5); - __pyx_t_5 = 0; - } - - /* "View.MemoryView":607 - * result *= length - * - * self._size = result # <<<<<<<<<<<<<< - * - * return self._size -*/ - __Pyx_INCREF(__pyx_v_result); - __Pyx_GIVEREF(__pyx_v_result); - __Pyx_GOTREF(__pyx_v_self->_size); - __Pyx_DECREF(__pyx_v_self->_size); - __pyx_v_self->_size = __pyx_v_result; - - /* "View.MemoryView":601 - * @property - * def size(self): - * if self._size is None: # <<<<<<<<<<<<<< - * result = 1 - * -*/ - } - - /* "View.MemoryView":609 - * self._size = result - * - * return self._size # <<<<<<<<<<<<<< - * - * def __len__(self): -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_self->_size); - __pyx_r = __pyx_v_self->_size; - goto __pyx_L0; - - /* "View.MemoryView":599 - * return self.size * self.view.itemsize - * - * @property # <<<<<<<<<<<<<< - * def size(self): - * if self._size is None: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView.memoryview.size.__get__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_result); - __Pyx_XDECREF(__pyx_v_length); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":611 - * return self._size - * - * def __len__(self): # <<<<<<<<<<<<<< - * if self.view.ndim >= 1: - * return self.view.shape[0] -*/ - -/* Python wrapper */ -static Py_ssize_t __pyx_memoryview___len__(PyObject *__pyx_v_self); /*proto*/ -static Py_ssize_t __pyx_memoryview___len__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - Py_ssize_t __pyx_r; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__len__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_10__len__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static Py_ssize_t __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_10__len__(struct __pyx_memoryview_obj *__pyx_v_self) { - Py_ssize_t __pyx_r; - int __pyx_t_1; - - /* "View.MemoryView":612 - * - * def __len__(self): - * if self.view.ndim >= 1: # <<<<<<<<<<<<<< - * return self.view.shape[0] - * -*/ - __pyx_t_1 = (__pyx_v_self->view.ndim >= 1); - if (__pyx_t_1) { - - /* "View.MemoryView":613 - * def __len__(self): - * if self.view.ndim >= 1: - * return self.view.shape[0] # <<<<<<<<<<<<<< - * - * return 0 -*/ - __pyx_r = (__pyx_v_self->view.shape[0]); - goto __pyx_L0; - - /* "View.MemoryView":612 - * - * def __len__(self): - * if self.view.ndim >= 1: # <<<<<<<<<<<<<< - * return self.view.shape[0] - * -*/ - } - - /* "View.MemoryView":615 - * return self.view.shape[0] - * - * return 0 # <<<<<<<<<<<<<< - * - * def __repr__(self): -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":611 - * return self._size - * - * def __len__(self): # <<<<<<<<<<<<<< - * if self.view.ndim >= 1: - * return self.view.shape[0] -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":617 - * return 0 - * - * def __repr__(self): # <<<<<<<<<<<<<< - * return "" % (self.base.__class__.__name__, - * id(self)) -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview___repr__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_memoryview___repr__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__repr__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_12__repr__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_12__repr__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4[5]; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__repr__", 0); - - /* "View.MemoryView":618 - * - * def __repr__(self): - * return "" % (self.base.__class__.__name__, # <<<<<<<<<<<<<< - * id(self)) - * -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_base); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 618, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_mstate_global->__pyx_n_u_class); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 618, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_name_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 618, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_FormatSimpleAndDecref(PyObject_Repr(__pyx_t_1), __pyx_mstate_global->__pyx_empty_unicode); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 618, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "View.MemoryView":619 - * def __repr__(self): - * return "" % (self.base.__class__.__name__, - * id(self)) # <<<<<<<<<<<<<< - * - * def __str__(self): -*/ - __pyx_t_1 = __Pyx_PyObject_CallOneArg(__pyx_builtin_id, ((PyObject *)__pyx_v_self)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 619, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_Format(__pyx_t_1, __pyx_mstate_global->__pyx_n_u_x); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 619, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_4[0] = __pyx_mstate_global->__pyx_kp_u_MemoryView_of; - __pyx_t_4[1] = __pyx_t_2; - __pyx_t_4[2] = __pyx_mstate_global->__pyx_kp_u_at_0x; - __pyx_t_4[3] = __pyx_t_3; - __pyx_t_4[4] = __pyx_mstate_global->__pyx_kp_u__3; - - /* "View.MemoryView":618 - * - * def __repr__(self): - * return "" % (self.base.__class__.__name__, # <<<<<<<<<<<<<< - * id(self)) - * -*/ - __pyx_t_1 = __Pyx_PyUnicode_Join(__pyx_t_4, 5, 15 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2) + 6 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_3) + 1, 127 | __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_2) | __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_3)); - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 618, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":617 - * return 0 - * - * def __repr__(self): # <<<<<<<<<<<<<< - * return "" % (self.base.__class__.__name__, - * id(self)) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.memoryview.__repr__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":621 - * id(self)) - * - * def __str__(self): # <<<<<<<<<<<<<< - * return "" % (self.base.__class__.__name__,) - * -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview___str__(PyObject *__pyx_v_self); /*proto*/ -static PyObject *__pyx_memoryview___str__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__str__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_14__str__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_14__str__(struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3[3]; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__str__", 0); - - /* "View.MemoryView":622 - * - * def __str__(self): - * return "" % (self.base.__class__.__name__,) # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_self), __pyx_mstate_global->__pyx_n_u_base); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 622, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_mstate_global->__pyx_n_u_class); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 622, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_name_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 622, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_2 = __Pyx_PyObject_FormatSimpleAndDecref(PyObject_Repr(__pyx_t_1), __pyx_mstate_global->__pyx_empty_unicode); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 622, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_3[0] = __pyx_mstate_global->__pyx_kp_u_MemoryView_of; - __pyx_t_3[1] = __pyx_t_2; - __pyx_t_3[2] = __pyx_mstate_global->__pyx_kp_u_object; - __pyx_t_1 = __Pyx_PyUnicode_Join(__pyx_t_3, 3, 15 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2) + 8, 127 | __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_2)); - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 622, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":621 - * id(self)) - * - * def __str__(self): # <<<<<<<<<<<<<< - * return "" % (self.base.__class__.__name__,) - * -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.__str__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":625 - * - * - * def is_c_contig(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview_is_c_contig(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_memoryview_is_c_contig(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("is_c_contig (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("is_c_contig", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("is_c_contig", __pyx_kwds); return NULL;} - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_16is_c_contig(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_16is_c_contig(struct __pyx_memoryview_obj *__pyx_v_self) { - __Pyx_memviewslice *__pyx_v_mslice; - __Pyx_memviewslice __pyx_v_tmp; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("is_c_contig", 0); - - /* "View.MemoryView":628 - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp - * mslice = get_slice_from_memview(self, &tmp) # <<<<<<<<<<<<<< - * return slice_is_contig(mslice[0], 'C', self.view.ndim) - * -*/ - __pyx_t_1 = __pyx_memoryview_get_slice_from_memoryview(__pyx_v_self, (&__pyx_v_tmp)); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 628, __pyx_L1_error) - __pyx_v_mslice = __pyx_t_1; - - /* "View.MemoryView":629 - * cdef __Pyx_memviewslice tmp - * mslice = get_slice_from_memview(self, &tmp) - * return slice_is_contig(mslice[0], 'C', self.view.ndim) # <<<<<<<<<<<<<< - * - * def is_f_contig(self): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyBool_FromLong(__pyx_memviewslice_is_contig((__pyx_v_mslice[0]), 'C', __pyx_v_self->view.ndim)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 629, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":625 - * - * - * def is_c_contig(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.is_c_contig", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":631 - * return slice_is_contig(mslice[0], 'C', self.view.ndim) - * - * def is_f_contig(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview_is_f_contig(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_memoryview_is_f_contig(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("is_f_contig (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("is_f_contig", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("is_f_contig", __pyx_kwds); return NULL;} - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_18is_f_contig(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_18is_f_contig(struct __pyx_memoryview_obj *__pyx_v_self) { - __Pyx_memviewslice *__pyx_v_mslice; - __Pyx_memviewslice __pyx_v_tmp; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice *__pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("is_f_contig", 0); - - /* "View.MemoryView":634 - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp - * mslice = get_slice_from_memview(self, &tmp) # <<<<<<<<<<<<<< - * return slice_is_contig(mslice[0], 'F', self.view.ndim) - * -*/ - __pyx_t_1 = __pyx_memoryview_get_slice_from_memoryview(__pyx_v_self, (&__pyx_v_tmp)); if (unlikely(__pyx_t_1 == ((void *)NULL))) __PYX_ERR(1, 634, __pyx_L1_error) - __pyx_v_mslice = __pyx_t_1; - - /* "View.MemoryView":635 - * cdef __Pyx_memviewslice tmp - * mslice = get_slice_from_memview(self, &tmp) - * return slice_is_contig(mslice[0], 'F', self.view.ndim) # <<<<<<<<<<<<<< - * - * def copy(self): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __Pyx_PyBool_FromLong(__pyx_memviewslice_is_contig((__pyx_v_mslice[0]), 'F', __pyx_v_self->view.ndim)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 635, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":631 - * return slice_is_contig(mslice[0], 'C', self.view.ndim) - * - * def is_f_contig(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *mslice - * cdef __Pyx_memviewslice tmp -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.is_f_contig", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":637 - * return slice_is_contig(mslice[0], 'F', self.view.ndim) - * - * def copy(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice mslice - * cdef int flags = self.flags & ~PyBUF_F_CONTIGUOUS -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview_copy(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_memoryview_copy(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("copy (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("copy", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("copy", __pyx_kwds); return NULL;} - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_20copy(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_20copy(struct __pyx_memoryview_obj *__pyx_v_self) { - __Pyx_memviewslice __pyx_v_mslice; - int __pyx_v_flags; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("copy", 0); - - /* "View.MemoryView":639 - * def copy(self): - * cdef __Pyx_memviewslice mslice - * cdef int flags = self.flags & ~PyBUF_F_CONTIGUOUS # <<<<<<<<<<<<<< - * - * slice_copy(self, &mslice) -*/ - __pyx_v_flags = (__pyx_v_self->flags & (~PyBUF_F_CONTIGUOUS)); - - /* "View.MemoryView":641 - * cdef int flags = self.flags & ~PyBUF_F_CONTIGUOUS - * - * slice_copy(self, &mslice) # <<<<<<<<<<<<<< - * mslice = slice_copy_contig(&mslice, "c", self.view.ndim, - * self.view.itemsize, -*/ - __pyx_memoryview_slice_copy(__pyx_v_self, (&__pyx_v_mslice)); - - /* "View.MemoryView":642 - * - * slice_copy(self, &mslice) - * mslice = slice_copy_contig(&mslice, "c", self.view.ndim, # <<<<<<<<<<<<<< - * self.view.itemsize, - * flags|PyBUF_C_CONTIGUOUS, -*/ - __pyx_t_1 = __pyx_memoryview_copy_new_contig((&__pyx_v_mslice), ((char const *)"c"), __pyx_v_self->view.ndim, __pyx_v_self->view.itemsize, (__pyx_v_flags | PyBUF_C_CONTIGUOUS), __pyx_v_self->dtype_is_object); if (unlikely(PyErr_Occurred())) __PYX_ERR(1, 642, __pyx_L1_error) - __pyx_v_mslice = __pyx_t_1; - - /* "View.MemoryView":647 - * self.dtype_is_object) - * - * return memoryview_copy_from_slice(self, &mslice) # <<<<<<<<<<<<<< - * - * def copy_fortran(self): -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __pyx_memoryview_copy_object_from_slice(__pyx_v_self, (&__pyx_v_mslice)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 647, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":637 - * return slice_is_contig(mslice[0], 'F', self.view.ndim) - * - * def copy(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice mslice - * cdef int flags = self.flags & ~PyBUF_F_CONTIGUOUS -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.copy", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":649 - * return memoryview_copy_from_slice(self, &mslice) - * - * def copy_fortran(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice src, dst - * cdef int flags = self.flags & ~PyBUF_C_CONTIGUOUS -*/ - -/* Python wrapper */ -static PyObject *__pyx_memoryview_copy_fortran(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_memoryview_copy_fortran(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("copy_fortran (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("copy_fortran", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("copy_fortran", __pyx_kwds); return NULL;} - __pyx_r = __pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_22copy_fortran(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_memoryview___pyx_pf_15View_dot_MemoryView_10memoryview_22copy_fortran(struct __pyx_memoryview_obj *__pyx_v_self) { - __Pyx_memviewslice __pyx_v_src; - __Pyx_memviewslice __pyx_v_dst; - int __pyx_v_flags; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("copy_fortran", 0); - - /* "View.MemoryView":651 - * def copy_fortran(self): - * cdef __Pyx_memviewslice src, dst - * cdef int flags = self.flags & ~PyBUF_C_CONTIGUOUS # <<<<<<<<<<<<<< - * - * slice_copy(self, &src) -*/ - __pyx_v_flags = (__pyx_v_self->flags & (~PyBUF_C_CONTIGUOUS)); - - /* "View.MemoryView":653 - * cdef int flags = self.flags & ~PyBUF_C_CONTIGUOUS - * - * slice_copy(self, &src) # <<<<<<<<<<<<<< - * dst = slice_copy_contig(&src, "fortran", self.view.ndim, - * self.view.itemsize, -*/ - __pyx_memoryview_slice_copy(__pyx_v_self, (&__pyx_v_src)); - - /* "View.MemoryView":654 - * - * slice_copy(self, &src) - * dst = slice_copy_contig(&src, "fortran", self.view.ndim, # <<<<<<<<<<<<<< - * self.view.itemsize, - * flags|PyBUF_F_CONTIGUOUS, -*/ - __pyx_t_1 = __pyx_memoryview_copy_new_contig((&__pyx_v_src), ((char const *)"fortran"), __pyx_v_self->view.ndim, __pyx_v_self->view.itemsize, (__pyx_v_flags | PyBUF_F_CONTIGUOUS), __pyx_v_self->dtype_is_object); if (unlikely(PyErr_Occurred())) __PYX_ERR(1, 654, __pyx_L1_error) - __pyx_v_dst = __pyx_t_1; - - /* "View.MemoryView":659 - * self.dtype_is_object) - * - * return memoryview_copy_from_slice(self, &dst) # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __pyx_memoryview_copy_object_from_slice(__pyx_v_self, (&__pyx_v_dst)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 659, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":649 - * return memoryview_copy_from_slice(self, &mslice) - * - * def copy_fortran(self): # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice src, dst - * cdef int flags = self.flags & ~PyBUF_C_CONTIGUOUS -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.memoryview.copy_fortran", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_memoryview_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_memoryview_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("__reduce_cython__", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("__reduce_cython__", __pyx_kwds); return NULL;} - __pyx_r = __pyx_pf___pyx_memoryview___reduce_cython__(((struct __pyx_memoryview_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_memoryview___reduce_cython__(CYTHON_UNUSED struct __pyx_memoryview_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":2 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 2, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.memoryview.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_memoryview_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_memoryview_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - CYTHON_UNUSED PyObject *__pyx_v___pyx_state = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[1] = {0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_pyx_state,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 3, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 1; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 1)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - } - __pyx_v___pyx_state = values[0]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, __pyx_nargs); __PYX_ERR(1, 3, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.memoryview.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf___pyx_memoryview_2__setstate_cython__(((struct __pyx_memoryview_obj *)__pyx_v_self), __pyx_v___pyx_state); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_memoryview_2__setstate_cython__(CYTHON_UNUSED struct __pyx_memoryview_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":4 - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 4, __pyx_L1_error) - - /* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.memoryview.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":662 - * - * - * @cname('__pyx_memoryview_new') # <<<<<<<<<<<<<< - * cdef memoryview_cwrapper(object o, int flags, bint dtype_is_object, const __Pyx_TypeInfo *typeinfo): - * cdef memoryview result = memoryview(o, flags, dtype_is_object) -*/ - -static PyObject *__pyx_memoryview_new(PyObject *__pyx_v_o, int __pyx_v_flags, int __pyx_v_dtype_is_object, __Pyx_TypeInfo const *__pyx_v_typeinfo) { - struct __pyx_memoryview_obj *__pyx_v_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - size_t __pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("memoryview_cwrapper", 0); - - /* "View.MemoryView":664 - * @cname('__pyx_memoryview_new') - * cdef memoryview_cwrapper(object o, int flags, bint dtype_is_object, const __Pyx_TypeInfo *typeinfo): - * cdef memoryview result = memoryview(o, flags, dtype_is_object) # <<<<<<<<<<<<<< - * result.typeinfo = typeinfo - * return result -*/ - __pyx_t_2 = NULL; - __pyx_t_3 = __Pyx_PyLong_From_int(__pyx_v_flags); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 664, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyBool_FromLong(__pyx_v_dtype_is_object); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 664, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = 1; - { - PyObject *__pyx_callargs[4] = {__pyx_t_2, __pyx_v_o, __pyx_t_3, __pyx_t_4}; - __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_memoryview_type, __pyx_callargs+__pyx_t_5, (4-__pyx_t_5) | (__pyx_t_5*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 664, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_1); - } - __pyx_v_result = ((struct __pyx_memoryview_obj *)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":665 - * cdef memoryview_cwrapper(object o, int flags, bint dtype_is_object, const __Pyx_TypeInfo *typeinfo): - * cdef memoryview result = memoryview(o, flags, dtype_is_object) - * result.typeinfo = typeinfo # <<<<<<<<<<<<<< - * return result - * -*/ - __pyx_v_result->typeinfo = __pyx_v_typeinfo; - - /* "View.MemoryView":666 - * cdef memoryview result = memoryview(o, flags, dtype_is_object) - * result.typeinfo = typeinfo - * return result # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_check') -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF((PyObject *)__pyx_v_result); - __pyx_r = ((PyObject *)__pyx_v_result); - goto __pyx_L0; - - /* "View.MemoryView":662 - * - * - * @cname('__pyx_memoryview_new') # <<<<<<<<<<<<<< - * cdef memoryview_cwrapper(object o, int flags, bint dtype_is_object, const __Pyx_TypeInfo *typeinfo): - * cdef memoryview result = memoryview(o, flags, dtype_is_object) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("View.MemoryView.memoryview_cwrapper", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":668 - * return result - * - * @cname('__pyx_memoryview_check') # <<<<<<<<<<<<<< - * cdef inline bint memoryview_check(object o) noexcept: - * return isinstance(o, memoryview) -*/ - -static CYTHON_INLINE int __pyx_memoryview_check(PyObject *__pyx_v_o) { - int __pyx_r; - int __pyx_t_1; - - /* "View.MemoryView":670 - * @cname('__pyx_memoryview_check') - * cdef inline bint memoryview_check(object o) noexcept: - * return isinstance(o, memoryview) # <<<<<<<<<<<<<< - * - * cdef tuple _unellipsify(object index, int ndim): -*/ - __pyx_t_1 = __Pyx_TypeCheck(__pyx_v_o, __pyx_mstate_global->__pyx_memoryview_type); - __pyx_r = __pyx_t_1; - goto __pyx_L0; - - /* "View.MemoryView":668 - * return result - * - * @cname('__pyx_memoryview_check') # <<<<<<<<<<<<<< - * cdef inline bint memoryview_check(object o) noexcept: - * return isinstance(o, memoryview) -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":672 - * return isinstance(o, memoryview) - * - * cdef tuple _unellipsify(object index, int ndim): # <<<<<<<<<<<<<< - * """ - * Replace all ellipses with full slices and fill incomplete indices with -*/ - -static PyObject *_unellipsify(PyObject *__pyx_v_index, int __pyx_v_ndim) { - Py_ssize_t __pyx_v_idx; - PyObject *__pyx_v_tup = NULL; - PyObject *__pyx_v_result = NULL; - int __pyx_v_have_slices; - int __pyx_v_seen_ellipsis; - PyObject *__pyx_v_item = NULL; - Py_ssize_t __pyx_v_nslices; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - PyObject *__pyx_t_6[3]; - PyObject *__pyx_t_7 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("_unellipsify", 0); - - /* "View.MemoryView":678 - * """ - * cdef Py_ssize_t idx - * tup = index if isinstance(index, tuple) else (index,) # <<<<<<<<<<<<<< - * - * result = [slice(None)] * ndim -*/ - __pyx_t_2 = PyTuple_Check(__pyx_v_index); - if (__pyx_t_2) { - __Pyx_INCREF(((PyObject*)__pyx_v_index)); - __pyx_t_1 = __pyx_v_index; - } else { - __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 678, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(__pyx_v_index); - __Pyx_GIVEREF(__pyx_v_index); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_index) != (0)) __PYX_ERR(1, 678, __pyx_L1_error); - __pyx_t_1 = __pyx_t_3; - __pyx_t_3 = 0; - } - __pyx_v_tup = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":680 - * tup = index if isinstance(index, tuple) else (index,) - * - * result = [slice(None)] * ndim # <<<<<<<<<<<<<< - * have_slices = False - * seen_ellipsis = False -*/ - __pyx_t_1 = PyList_New(1 * ((__pyx_v_ndim<0) ? 0:__pyx_v_ndim)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 680, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - { Py_ssize_t __pyx_temp; - for (__pyx_temp=0; __pyx_temp < __pyx_v_ndim; __pyx_temp++) { - __Pyx_INCREF(__pyx_mstate_global->__pyx_slice[0]); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_slice[0]); - if (__Pyx_PyList_SET_ITEM(__pyx_t_1, __pyx_temp, __pyx_mstate_global->__pyx_slice[0]) != (0)) __PYX_ERR(1, 680, __pyx_L1_error); - } - } - __pyx_v_result = ((PyObject*)__pyx_t_1); - __pyx_t_1 = 0; - - /* "View.MemoryView":681 - * - * result = [slice(None)] * ndim - * have_slices = False # <<<<<<<<<<<<<< - * seen_ellipsis = False - * idx = 0 -*/ - __pyx_v_have_slices = 0; - - /* "View.MemoryView":682 - * result = [slice(None)] * ndim - * have_slices = False - * seen_ellipsis = False # <<<<<<<<<<<<<< - * idx = 0 - * for item in tup: -*/ - __pyx_v_seen_ellipsis = 0; - - /* "View.MemoryView":683 - * have_slices = False - * seen_ellipsis = False - * idx = 0 # <<<<<<<<<<<<<< - * for item in tup: - * if item is Ellipsis: -*/ - __pyx_v_idx = 0; - - /* "View.MemoryView":684 - * seen_ellipsis = False - * idx = 0 - * for item in tup: # <<<<<<<<<<<<<< - * if item is Ellipsis: - * if not seen_ellipsis: -*/ - if (unlikely(__pyx_v_tup == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(1, 684, __pyx_L1_error) - } - __pyx_t_1 = __pyx_v_tup; __Pyx_INCREF(__pyx_t_1); - __pyx_t_4 = 0; - for (;;) { - { - Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_1); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 684, __pyx_L1_error) - #endif - if (__pyx_t_4 >= __pyx_temp) break; - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = __Pyx_NewRef(PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_4)); - #else - __pyx_t_3 = __Pyx_PySequence_ITEM(__pyx_t_1, __pyx_t_4); - #endif - ++__pyx_t_4; - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 684, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_XDECREF_SET(__pyx_v_item, __pyx_t_3); - __pyx_t_3 = 0; - - /* "View.MemoryView":685 - * idx = 0 - * for item in tup: - * if item is Ellipsis: # <<<<<<<<<<<<<< - * if not seen_ellipsis: - * idx += ndim - len(tup) -*/ - __pyx_t_2 = (__pyx_v_item == __pyx_builtin_Ellipsis); - if (__pyx_t_2) { - - /* "View.MemoryView":686 - * for item in tup: - * if item is Ellipsis: - * if not seen_ellipsis: # <<<<<<<<<<<<<< - * idx += ndim - len(tup) - * seen_ellipsis = True -*/ - __pyx_t_2 = (!__pyx_v_seen_ellipsis); - if (__pyx_t_2) { - - /* "View.MemoryView":687 - * if item is Ellipsis: - * if not seen_ellipsis: - * idx += ndim - len(tup) # <<<<<<<<<<<<<< - * seen_ellipsis = True - * have_slices = True -*/ - if (unlikely(__pyx_v_tup == Py_None)) { - PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); - __PYX_ERR(1, 687, __pyx_L1_error) - } - __pyx_t_5 = __Pyx_PyTuple_GET_SIZE(__pyx_v_tup); if (unlikely(__pyx_t_5 == ((Py_ssize_t)-1))) __PYX_ERR(1, 687, __pyx_L1_error) - __pyx_v_idx = (__pyx_v_idx + (__pyx_v_ndim - __pyx_t_5)); - - /* "View.MemoryView":688 - * if not seen_ellipsis: - * idx += ndim - len(tup) - * seen_ellipsis = True # <<<<<<<<<<<<<< - * have_slices = True - * else: -*/ - __pyx_v_seen_ellipsis = 1; - - /* "View.MemoryView":686 - * for item in tup: - * if item is Ellipsis: - * if not seen_ellipsis: # <<<<<<<<<<<<<< - * idx += ndim - len(tup) - * seen_ellipsis = True -*/ - } - - /* "View.MemoryView":689 - * idx += ndim - len(tup) - * seen_ellipsis = True - * have_slices = True # <<<<<<<<<<<<<< - * else: - * if isinstance(item, slice): -*/ - __pyx_v_have_slices = 1; - - /* "View.MemoryView":685 - * idx = 0 - * for item in tup: - * if item is Ellipsis: # <<<<<<<<<<<<<< - * if not seen_ellipsis: - * idx += ndim - len(tup) -*/ - goto __pyx_L5; - } - - /* "View.MemoryView":691 - * have_slices = True - * else: - * if isinstance(item, slice): # <<<<<<<<<<<<<< - * have_slices = True - * elif not PyIndex_Check(item): -*/ - /*else*/ { - __pyx_t_2 = PySlice_Check(__pyx_v_item); - if (__pyx_t_2) { - - /* "View.MemoryView":692 - * else: - * if isinstance(item, slice): - * have_slices = True # <<<<<<<<<<<<<< - * elif not PyIndex_Check(item): - * raise TypeError, f"Cannot index with type '{type(item)}'" -*/ - __pyx_v_have_slices = 1; - - /* "View.MemoryView":691 - * have_slices = True - * else: - * if isinstance(item, slice): # <<<<<<<<<<<<<< - * have_slices = True - * elif not PyIndex_Check(item): -*/ - goto __pyx_L7; - } - - /* "View.MemoryView":693 - * if isinstance(item, slice): - * have_slices = True - * elif not PyIndex_Check(item): # <<<<<<<<<<<<<< - * raise TypeError, f"Cannot index with type '{type(item)}'" - * result[idx] = item -*/ - __pyx_t_2 = (!(PyIndex_Check(__pyx_v_item) != 0)); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":694 - * have_slices = True - * elif not PyIndex_Check(item): - * raise TypeError, f"Cannot index with type '{type(item)}'" # <<<<<<<<<<<<<< - * result[idx] = item - * idx += 1 -*/ - __pyx_t_3 = __Pyx_PyObject_FormatSimple(((PyObject *)Py_TYPE(__pyx_v_item)), __pyx_mstate_global->__pyx_empty_unicode); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 694, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_6[0] = __pyx_mstate_global->__pyx_kp_u_Cannot_index_with_type; - __pyx_t_6[1] = __pyx_t_3; - __pyx_t_6[2] = __pyx_mstate_global->__pyx_kp_u__4; - __pyx_t_7 = __Pyx_PyUnicode_Join(__pyx_t_6, 3, 24 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_3) + 1, 127 | __Pyx_PyUnicode_MAX_CHAR_VALUE(__pyx_t_3)); - if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 694, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_t_7, 0, 0); - __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; - __PYX_ERR(1, 694, __pyx_L1_error) - - /* "View.MemoryView":693 - * if isinstance(item, slice): - * have_slices = True - * elif not PyIndex_Check(item): # <<<<<<<<<<<<<< - * raise TypeError, f"Cannot index with type '{type(item)}'" - * result[idx] = item -*/ - } - __pyx_L7:; - - /* "View.MemoryView":695 - * elif not PyIndex_Check(item): - * raise TypeError, f"Cannot index with type '{type(item)}'" - * result[idx] = item # <<<<<<<<<<<<<< - * idx += 1 - * -*/ - if (unlikely((__Pyx_SetItemInt(__pyx_v_result, __pyx_v_idx, __pyx_v_item, Py_ssize_t, 1, PyLong_FromSsize_t, 1, 1, 1, 1, __Pyx_ReferenceSharing_OwnStrongReference) < 0))) __PYX_ERR(1, 695, __pyx_L1_error) - } - __pyx_L5:; - - /* "View.MemoryView":696 - * raise TypeError, f"Cannot index with type '{type(item)}'" - * result[idx] = item - * idx += 1 # <<<<<<<<<<<<<< - * - * nslices = ndim - idx -*/ - __pyx_v_idx = (__pyx_v_idx + 1); - - /* "View.MemoryView":684 - * seen_ellipsis = False - * idx = 0 - * for item in tup: # <<<<<<<<<<<<<< - * if item is Ellipsis: - * if not seen_ellipsis: -*/ - } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - - /* "View.MemoryView":698 - * idx += 1 - * - * nslices = ndim - idx # <<<<<<<<<<<<<< - * return have_slices or nslices, tuple(result) - * -*/ - __pyx_v_nslices = (__pyx_v_ndim - __pyx_v_idx); - - /* "View.MemoryView":699 - * - * nslices = ndim - idx - * return have_slices or nslices, tuple(result) # <<<<<<<<<<<<<< - * - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: -*/ - __Pyx_XDECREF(__pyx_r); - if (!__pyx_v_have_slices) { - } else { - __pyx_t_7 = __Pyx_PyBool_FromLong(__pyx_v_have_slices); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 699, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_1 = __pyx_t_7; - __pyx_t_7 = 0; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_7 = PyLong_FromSsize_t(__pyx_v_nslices); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 699, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_1 = __pyx_t_7; - __pyx_t_7 = 0; - __pyx_L9_bool_binop_done:; - __pyx_t_7 = PyList_AsTuple(__pyx_v_result); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 699, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_7); - __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 699, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_GIVEREF(__pyx_t_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1) != (0)) __PYX_ERR(1, 699, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_7); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_7) != (0)) __PYX_ERR(1, 699, __pyx_L1_error); - __pyx_t_1 = 0; - __pyx_t_7 = 0; - __pyx_r = ((PyObject*)__pyx_t_3); - __pyx_t_3 = 0; - goto __pyx_L0; - - /* "View.MemoryView":672 - * return isinstance(o, memoryview) - * - * cdef tuple _unellipsify(object index, int ndim): # <<<<<<<<<<<<<< - * """ - * Replace all ellipses with full slices and fill incomplete indices with -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_7); - __Pyx_AddTraceback("View.MemoryView._unellipsify", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v_tup); - __Pyx_XDECREF(__pyx_v_result); - __Pyx_XDECREF(__pyx_v_item); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":701 - * return have_slices or nslices, tuple(result) - * - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: # <<<<<<<<<<<<<< - * for suboffset in suboffsets[:ndim]: - * if suboffset >= 0: -*/ - -static int assert_direct_dimensions(Py_ssize_t *__pyx_v_suboffsets, int __pyx_v_ndim) { - Py_ssize_t __pyx_v_suboffset; - int __pyx_r; - Py_ssize_t *__pyx_t_1; - Py_ssize_t *__pyx_t_2; - Py_ssize_t *__pyx_t_3; - int __pyx_t_4; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - - /* "View.MemoryView":702 - * - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: - * for suboffset in suboffsets[:ndim]: # <<<<<<<<<<<<<< - * if suboffset >= 0: - * raise ValueError, "Indirect dimensions not supported" -*/ - __pyx_t_2 = (__pyx_v_suboffsets + __pyx_v_ndim); - for (__pyx_t_3 = __pyx_v_suboffsets; __pyx_t_3 < __pyx_t_2; __pyx_t_3++) { - __pyx_t_1 = __pyx_t_3; - __pyx_v_suboffset = (__pyx_t_1[0]); - - /* "View.MemoryView":703 - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: - * for suboffset in suboffsets[:ndim]: - * if suboffset >= 0: # <<<<<<<<<<<<<< - * raise ValueError, "Indirect dimensions not supported" - * return 0 # return type just used as an error flag -*/ - __pyx_t_4 = (__pyx_v_suboffset >= 0); - if (unlikely(__pyx_t_4)) { - - /* "View.MemoryView":704 - * for suboffset in suboffsets[:ndim]: - * if suboffset >= 0: - * raise ValueError, "Indirect dimensions not supported" # <<<<<<<<<<<<<< - * return 0 # return type just used as an error flag - * -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_mstate_global->__pyx_kp_u_Indirect_dimensions_not_supporte, 0, 0); - __PYX_ERR(1, 704, __pyx_L1_error) - - /* "View.MemoryView":703 - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: - * for suboffset in suboffsets[:ndim]: - * if suboffset >= 0: # <<<<<<<<<<<<<< - * raise ValueError, "Indirect dimensions not supported" - * return 0 # return type just used as an error flag -*/ - } - } - - /* "View.MemoryView":705 - * if suboffset >= 0: - * raise ValueError, "Indirect dimensions not supported" - * return 0 # return type just used as an error flag # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":701 - * return have_slices or nslices, tuple(result) - * - * cdef int assert_direct_dimensions(Py_ssize_t *suboffsets, int ndim) except -1: # <<<<<<<<<<<<<< - * for suboffset in suboffsets[:ndim]: - * if suboffset >= 0: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView.assert_direct_dimensions", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":711 - * - * - * @cname('__pyx_memview_slice') # <<<<<<<<<<<<<< - * cdef memoryview memview_slice(memoryview memview, object indices): - * cdef int new_ndim = 0, suboffset_dim = -1, dim -*/ - -static struct __pyx_memoryview_obj *__pyx_memview_slice(struct __pyx_memoryview_obj *__pyx_v_memview, PyObject *__pyx_v_indices) { - int __pyx_v_new_ndim; - int __pyx_v_suboffset_dim; - int __pyx_v_dim; - __Pyx_memviewslice __pyx_v_src; - __Pyx_memviewslice __pyx_v_dst; - __Pyx_memviewslice *__pyx_v_p_src; - struct __pyx_memoryviewslice_obj *__pyx_v_memviewsliceobj = 0; - __Pyx_memviewslice *__pyx_v_p_dst; - int *__pyx_v_p_suboffset_dim; - Py_ssize_t __pyx_v_start; - Py_ssize_t __pyx_v_stop; - Py_ssize_t __pyx_v_step; - Py_ssize_t __pyx_v_cindex; - int __pyx_v_have_start; - int __pyx_v_have_stop; - int __pyx_v_have_step; - PyObject *__pyx_v_index = NULL; - struct __pyx_memoryview_obj *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - struct __pyx_memoryview_obj *__pyx_t_3; - char *__pyx_t_4; - int __pyx_t_5; - Py_ssize_t __pyx_t_6; - PyObject *(*__pyx_t_7)(PyObject *); - PyObject *__pyx_t_8 = NULL; - Py_ssize_t __pyx_t_9; - int __pyx_t_10; - Py_ssize_t __pyx_t_11; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("memview_slice", 0); - - /* "View.MemoryView":713 - * @cname('__pyx_memview_slice') - * cdef memoryview memview_slice(memoryview memview, object indices): - * cdef int new_ndim = 0, suboffset_dim = -1, dim # <<<<<<<<<<<<<< - * cdef bint negative_step - * cdef __Pyx_memviewslice src, dst -*/ - __pyx_v_new_ndim = 0; - __pyx_v_suboffset_dim = -1; - - /* "View.MemoryView":720 - * - * - * memset(&dst, 0, sizeof(dst)) # <<<<<<<<<<<<<< - * - * cdef _memoryviewslice memviewsliceobj -*/ - (void)(memset((&__pyx_v_dst), 0, (sizeof(__pyx_v_dst)))); - - /* "View.MemoryView":724 - * cdef _memoryviewslice memviewsliceobj - * - * assert memview.view.ndim > 0 # <<<<<<<<<<<<<< - * - * if isinstance(memview, _memoryviewslice): -*/ - #ifndef CYTHON_WITHOUT_ASSERTIONS - if (unlikely(__pyx_assertions_enabled())) { - __pyx_t_1 = (__pyx_v_memview->view.ndim > 0); - if (unlikely(!__pyx_t_1)) { - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_AssertionError))), 0, 0, 0); - __PYX_ERR(1, 724, __pyx_L1_error) - } - } - #else - if ((1)); else __PYX_ERR(1, 724, __pyx_L1_error) - #endif - - /* "View.MemoryView":726 - * assert memview.view.ndim > 0 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * memviewsliceobj = memview - * p_src = &memviewsliceobj.from_slice -*/ - __pyx_t_1 = __Pyx_TypeCheck(((PyObject *)__pyx_v_memview), __pyx_mstate_global->__pyx_memoryviewslice_type); - if (__pyx_t_1) { - - /* "View.MemoryView":727 - * - * if isinstance(memview, _memoryviewslice): - * memviewsliceobj = memview # <<<<<<<<<<<<<< - * p_src = &memviewsliceobj.from_slice - * else: -*/ - __pyx_t_2 = ((PyObject *)__pyx_v_memview); - __Pyx_INCREF(__pyx_t_2); - if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_mstate_global->__pyx_memoryviewslice_type))))) __PYX_ERR(1, 727, __pyx_L1_error) - __pyx_v_memviewsliceobj = ((struct __pyx_memoryviewslice_obj *)__pyx_t_2); - __pyx_t_2 = 0; - - /* "View.MemoryView":728 - * if isinstance(memview, _memoryviewslice): - * memviewsliceobj = memview - * p_src = &memviewsliceobj.from_slice # <<<<<<<<<<<<<< - * else: - * slice_copy(memview, &src) -*/ - __pyx_v_p_src = (&__pyx_v_memviewsliceobj->from_slice); - - /* "View.MemoryView":726 - * assert memview.view.ndim > 0 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * memviewsliceobj = memview - * p_src = &memviewsliceobj.from_slice -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":730 - * p_src = &memviewsliceobj.from_slice - * else: - * slice_copy(memview, &src) # <<<<<<<<<<<<<< - * p_src = &src - * -*/ - /*else*/ { - __pyx_memoryview_slice_copy(__pyx_v_memview, (&__pyx_v_src)); - - /* "View.MemoryView":731 - * else: - * slice_copy(memview, &src) - * p_src = &src # <<<<<<<<<<<<<< - * - * -*/ - __pyx_v_p_src = (&__pyx_v_src); - } - __pyx_L3:; - - /* "View.MemoryView":737 - * - * - * dst.memview = p_src.memview # <<<<<<<<<<<<<< - * dst.data = p_src.data - * -*/ - __pyx_t_3 = __pyx_v_p_src->memview; - __pyx_v_dst.memview = __pyx_t_3; - - /* "View.MemoryView":738 - * - * dst.memview = p_src.memview - * dst.data = p_src.data # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_4 = __pyx_v_p_src->data; - __pyx_v_dst.data = __pyx_t_4; - - /* "View.MemoryView":743 - * - * - * cdef __Pyx_memviewslice *p_dst = &dst # <<<<<<<<<<<<<< - * cdef int *p_suboffset_dim = &suboffset_dim - * cdef Py_ssize_t start, stop, step, cindex -*/ - __pyx_v_p_dst = (&__pyx_v_dst); - - /* "View.MemoryView":744 - * - * cdef __Pyx_memviewslice *p_dst = &dst - * cdef int *p_suboffset_dim = &suboffset_dim # <<<<<<<<<<<<<< - * cdef Py_ssize_t start, stop, step, cindex - * cdef bint have_start, have_stop, have_step -*/ - __pyx_v_p_suboffset_dim = (&__pyx_v_suboffset_dim); - - /* "View.MemoryView":748 - * cdef bint have_start, have_stop, have_step - * - * for dim, index in enumerate(indices): # <<<<<<<<<<<<<< - * if PyIndex_Check(index): - * cindex = index -*/ - __pyx_t_5 = 0; - if (likely(PyList_CheckExact(__pyx_v_indices)) || PyTuple_CheckExact(__pyx_v_indices)) { - __pyx_t_2 = __pyx_v_indices; __Pyx_INCREF(__pyx_t_2); - __pyx_t_6 = 0; - __pyx_t_7 = NULL; - } else { - __pyx_t_6 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_v_indices); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 748, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_7 = (CYTHON_COMPILING_IN_LIMITED_API) ? PyIter_Next : __Pyx_PyObject_GetIterNextFunc(__pyx_t_2); if (unlikely(!__pyx_t_7)) __PYX_ERR(1, 748, __pyx_L1_error) - } - for (;;) { - if (likely(!__pyx_t_7)) { - if (likely(PyList_CheckExact(__pyx_t_2))) { - { - Py_ssize_t __pyx_temp = __Pyx_PyList_GET_SIZE(__pyx_t_2); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 748, __pyx_L1_error) - #endif - if (__pyx_t_6 >= __pyx_temp) break; - } - __pyx_t_8 = __Pyx_PyList_GetItemRefFast(__pyx_t_2, __pyx_t_6, __Pyx_ReferenceSharing_OwnStrongReference); - ++__pyx_t_6; - } else { - { - Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_2); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely((__pyx_temp < 0))) __PYX_ERR(1, 748, __pyx_L1_error) - #endif - if (__pyx_t_6 >= __pyx_temp) break; - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_8 = __Pyx_NewRef(PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_6)); - #else - __pyx_t_8 = __Pyx_PySequence_ITEM(__pyx_t_2, __pyx_t_6); - #endif - ++__pyx_t_6; - } - if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 748, __pyx_L1_error) - } else { - __pyx_t_8 = __pyx_t_7(__pyx_t_2); - if (unlikely(!__pyx_t_8)) { - PyObject* exc_type = PyErr_Occurred(); - if (exc_type) { - if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) __PYX_ERR(1, 748, __pyx_L1_error) - PyErr_Clear(); - } - break; - } - } - __Pyx_GOTREF(__pyx_t_8); - __Pyx_XDECREF_SET(__pyx_v_index, __pyx_t_8); - __pyx_t_8 = 0; - __pyx_v_dim = __pyx_t_5; - __pyx_t_5 = (__pyx_t_5 + 1); - - /* "View.MemoryView":749 - * - * for dim, index in enumerate(indices): - * if PyIndex_Check(index): # <<<<<<<<<<<<<< - * cindex = index - * slice_memviewslice( -*/ - __pyx_t_1 = (PyIndex_Check(__pyx_v_index) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":750 - * for dim, index in enumerate(indices): - * if PyIndex_Check(index): - * cindex = index # <<<<<<<<<<<<<< - * slice_memviewslice( - * p_dst, p_src.shape[dim], p_src.strides[dim], p_src.suboffsets[dim], -*/ - __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_v_index); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 750, __pyx_L1_error) - __pyx_v_cindex = __pyx_t_9; - - /* "View.MemoryView":751 - * if PyIndex_Check(index): - * cindex = index - * slice_memviewslice( # <<<<<<<<<<<<<< - * p_dst, p_src.shape[dim], p_src.strides[dim], p_src.suboffsets[dim], - * dim, new_ndim, p_suboffset_dim, -*/ - __pyx_t_10 = __pyx_memoryview_slice_memviewslice(__pyx_v_p_dst, (__pyx_v_p_src->shape[__pyx_v_dim]), (__pyx_v_p_src->strides[__pyx_v_dim]), (__pyx_v_p_src->suboffsets[__pyx_v_dim]), __pyx_v_dim, __pyx_v_new_ndim, __pyx_v_p_suboffset_dim, __pyx_v_cindex, 0, 0, 0, 0, 0, 0); if (unlikely(__pyx_t_10 == ((int)-1))) __PYX_ERR(1, 751, __pyx_L1_error) - - /* "View.MemoryView":749 - * - * for dim, index in enumerate(indices): - * if PyIndex_Check(index): # <<<<<<<<<<<<<< - * cindex = index - * slice_memviewslice( -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":757 - * 0, 0, 0, # have_{start,stop,step} - * False) - * elif index is None: # <<<<<<<<<<<<<< - * p_dst.shape[new_ndim] = 1 - * p_dst.strides[new_ndim] = 0 -*/ - __pyx_t_1 = (__pyx_v_index == Py_None); - if (__pyx_t_1) { - - /* "View.MemoryView":758 - * False) - * elif index is None: - * p_dst.shape[new_ndim] = 1 # <<<<<<<<<<<<<< - * p_dst.strides[new_ndim] = 0 - * p_dst.suboffsets[new_ndim] = -1 -*/ - (__pyx_v_p_dst->shape[__pyx_v_new_ndim]) = 1; - - /* "View.MemoryView":759 - * elif index is None: - * p_dst.shape[new_ndim] = 1 - * p_dst.strides[new_ndim] = 0 # <<<<<<<<<<<<<< - * p_dst.suboffsets[new_ndim] = -1 - * new_ndim += 1 -*/ - (__pyx_v_p_dst->strides[__pyx_v_new_ndim]) = 0; - - /* "View.MemoryView":760 - * p_dst.shape[new_ndim] = 1 - * p_dst.strides[new_ndim] = 0 - * p_dst.suboffsets[new_ndim] = -1 # <<<<<<<<<<<<<< - * new_ndim += 1 - * else: -*/ - (__pyx_v_p_dst->suboffsets[__pyx_v_new_ndim]) = -1L; - - /* "View.MemoryView":761 - * p_dst.strides[new_ndim] = 0 - * p_dst.suboffsets[new_ndim] = -1 - * new_ndim += 1 # <<<<<<<<<<<<<< - * else: - * start = index.start or 0 -*/ - __pyx_v_new_ndim = (__pyx_v_new_ndim + 1); - - /* "View.MemoryView":757 - * 0, 0, 0, # have_{start,stop,step} - * False) - * elif index is None: # <<<<<<<<<<<<<< - * p_dst.shape[new_ndim] = 1 - * p_dst.strides[new_ndim] = 0 -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":763 - * new_ndim += 1 - * else: - * start = index.start or 0 # <<<<<<<<<<<<<< - * stop = index.stop or 0 - * step = index.step or 0 -*/ - /*else*/ { - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_start); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 763, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 763, __pyx_L1_error) - if (!__pyx_t_1) { - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else { - __pyx_t_11 = __Pyx_PyIndex_AsSsize_t(__pyx_t_8); if (unlikely((__pyx_t_11 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 763, __pyx_L1_error) - __pyx_t_9 = __pyx_t_11; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_9 = 0; - __pyx_L7_bool_binop_done:; - __pyx_v_start = __pyx_t_9; - - /* "View.MemoryView":764 - * else: - * start = index.start or 0 - * stop = index.stop or 0 # <<<<<<<<<<<<<< - * step = index.step or 0 - * -*/ - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_stop); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 764, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 764, __pyx_L1_error) - if (!__pyx_t_1) { - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else { - __pyx_t_11 = __Pyx_PyIndex_AsSsize_t(__pyx_t_8); if (unlikely((__pyx_t_11 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 764, __pyx_L1_error) - __pyx_t_9 = __pyx_t_11; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_9 = 0; - __pyx_L9_bool_binop_done:; - __pyx_v_stop = __pyx_t_9; - - /* "View.MemoryView":765 - * start = index.start or 0 - * stop = index.stop or 0 - * step = index.step or 0 # <<<<<<<<<<<<<< - * - * have_start = index.start is not None -*/ - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_step); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 765, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(1, 765, __pyx_L1_error) - if (!__pyx_t_1) { - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - } else { - __pyx_t_11 = __Pyx_PyIndex_AsSsize_t(__pyx_t_8); if (unlikely((__pyx_t_11 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 765, __pyx_L1_error) - __pyx_t_9 = __pyx_t_11; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - goto __pyx_L11_bool_binop_done; - } - __pyx_t_9 = 0; - __pyx_L11_bool_binop_done:; - __pyx_v_step = __pyx_t_9; - - /* "View.MemoryView":767 - * step = index.step or 0 - * - * have_start = index.start is not None # <<<<<<<<<<<<<< - * have_stop = index.stop is not None - * have_step = index.step is not None -*/ - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_start); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 767, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = (__pyx_t_8 != Py_None); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_have_start = __pyx_t_1; - - /* "View.MemoryView":768 - * - * have_start = index.start is not None - * have_stop = index.stop is not None # <<<<<<<<<<<<<< - * have_step = index.step is not None - * -*/ - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_stop); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 768, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = (__pyx_t_8 != Py_None); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_have_stop = __pyx_t_1; - - /* "View.MemoryView":769 - * have_start = index.start is not None - * have_stop = index.stop is not None - * have_step = index.step is not None # <<<<<<<<<<<<<< - * - * slice_memviewslice( -*/ - __pyx_t_8 = __Pyx_PyObject_GetAttrStr(__pyx_v_index, __pyx_mstate_global->__pyx_n_u_step); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 769, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_1 = (__pyx_t_8 != Py_None); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_v_have_step = __pyx_t_1; - - /* "View.MemoryView":771 - * have_step = index.step is not None - * - * slice_memviewslice( # <<<<<<<<<<<<<< - * p_dst, p_src.shape[dim], p_src.strides[dim], p_src.suboffsets[dim], - * dim, new_ndim, p_suboffset_dim, -*/ - __pyx_t_10 = __pyx_memoryview_slice_memviewslice(__pyx_v_p_dst, (__pyx_v_p_src->shape[__pyx_v_dim]), (__pyx_v_p_src->strides[__pyx_v_dim]), (__pyx_v_p_src->suboffsets[__pyx_v_dim]), __pyx_v_dim, __pyx_v_new_ndim, __pyx_v_p_suboffset_dim, __pyx_v_start, __pyx_v_stop, __pyx_v_step, __pyx_v_have_start, __pyx_v_have_stop, __pyx_v_have_step, 1); if (unlikely(__pyx_t_10 == ((int)-1))) __PYX_ERR(1, 771, __pyx_L1_error) - - /* "View.MemoryView":777 - * have_start, have_stop, have_step, - * True) - * new_ndim += 1 # <<<<<<<<<<<<<< - * - * if isinstance(memview, _memoryviewslice): -*/ - __pyx_v_new_ndim = (__pyx_v_new_ndim + 1); - } - __pyx_L6:; - - /* "View.MemoryView":748 - * cdef bint have_start, have_stop, have_step - * - * for dim, index in enumerate(indices): # <<<<<<<<<<<<<< - * if PyIndex_Check(index): - * cindex = index -*/ - } - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "View.MemoryView":779 - * new_ndim += 1 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * return memoryview_fromslice(dst, new_ndim, - * memviewsliceobj.to_object_func, -*/ - __pyx_t_1 = __Pyx_TypeCheck(((PyObject *)__pyx_v_memview), __pyx_mstate_global->__pyx_memoryviewslice_type); - if (__pyx_t_1) { - - /* "View.MemoryView":780 - * - * if isinstance(memview, _memoryviewslice): - * return memoryview_fromslice(dst, new_ndim, # <<<<<<<<<<<<<< - * memviewsliceobj.to_object_func, - * memviewsliceobj.to_dtype_func, -*/ - __Pyx_XDECREF((PyObject *)__pyx_r); - - /* "View.MemoryView":781 - * if isinstance(memview, _memoryviewslice): - * return memoryview_fromslice(dst, new_ndim, - * memviewsliceobj.to_object_func, # <<<<<<<<<<<<<< - * memviewsliceobj.to_dtype_func, - * memview.dtype_is_object) -*/ - if (unlikely(!__pyx_v_memviewsliceobj)) { __Pyx_RaiseUnboundLocalError("memviewsliceobj"); __PYX_ERR(1, 781, __pyx_L1_error) } - - /* "View.MemoryView":782 - * return memoryview_fromslice(dst, new_ndim, - * memviewsliceobj.to_object_func, - * memviewsliceobj.to_dtype_func, # <<<<<<<<<<<<<< - * memview.dtype_is_object) - * else: -*/ - if (unlikely(!__pyx_v_memviewsliceobj)) { __Pyx_RaiseUnboundLocalError("memviewsliceobj"); __PYX_ERR(1, 782, __pyx_L1_error) } - - /* "View.MemoryView":780 - * - * if isinstance(memview, _memoryviewslice): - * return memoryview_fromslice(dst, new_ndim, # <<<<<<<<<<<<<< - * memviewsliceobj.to_object_func, - * memviewsliceobj.to_dtype_func, -*/ - __pyx_t_2 = __pyx_memoryview_fromslice(__pyx_v_dst, __pyx_v_new_ndim, __pyx_v_memviewsliceobj->to_object_func, __pyx_v_memviewsliceobj->to_dtype_func, __pyx_v_memview->dtype_is_object); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 780, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_mstate_global->__pyx_memoryview_type))))) __PYX_ERR(1, 780, __pyx_L1_error) - __pyx_r = ((struct __pyx_memoryview_obj *)__pyx_t_2); - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":779 - * new_ndim += 1 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * return memoryview_fromslice(dst, new_ndim, - * memviewsliceobj.to_object_func, -*/ - } - - /* "View.MemoryView":785 - * memview.dtype_is_object) - * else: - * return memoryview_fromslice(dst, new_ndim, NULL, NULL, # <<<<<<<<<<<<<< - * memview.dtype_is_object) - * -*/ - /*else*/ { - __Pyx_XDECREF((PyObject *)__pyx_r); - - /* "View.MemoryView":786 - * else: - * return memoryview_fromslice(dst, new_ndim, NULL, NULL, - * memview.dtype_is_object) # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_2 = __pyx_memoryview_fromslice(__pyx_v_dst, __pyx_v_new_ndim, NULL, NULL, __pyx_v_memview->dtype_is_object); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 785, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - - /* "View.MemoryView":785 - * memview.dtype_is_object) - * else: - * return memoryview_fromslice(dst, new_ndim, NULL, NULL, # <<<<<<<<<<<<<< - * memview.dtype_is_object) - * -*/ - if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_mstate_global->__pyx_memoryview_type))))) __PYX_ERR(1, 785, __pyx_L1_error) - __pyx_r = ((struct __pyx_memoryview_obj *)__pyx_t_2); - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "View.MemoryView":711 - * - * - * @cname('__pyx_memview_slice') # <<<<<<<<<<<<<< - * cdef memoryview memview_slice(memoryview memview, object indices): - * cdef int new_ndim = 0, suboffset_dim = -1, dim -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_AddTraceback("View.MemoryView.memview_slice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_memviewsliceobj); - __Pyx_XDECREF(__pyx_v_index); - __Pyx_XGIVEREF((PyObject *)__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":793 - * - * - * @cname('__pyx_memoryview_slice_memviewslice') # <<<<<<<<<<<<<< - * cdef int slice_memviewslice( - * __Pyx_memviewslice *dst, -*/ - -static int __pyx_memoryview_slice_memviewslice(__Pyx_memviewslice *__pyx_v_dst, Py_ssize_t __pyx_v_shape, Py_ssize_t __pyx_v_stride, Py_ssize_t __pyx_v_suboffset, int __pyx_v_dim, int __pyx_v_new_ndim, int *__pyx_v_suboffset_dim, Py_ssize_t __pyx_v_start, Py_ssize_t __pyx_v_stop, Py_ssize_t __pyx_v_step, int __pyx_v_have_start, int __pyx_v_have_stop, int __pyx_v_have_step, int __pyx_v_is_slice) { - Py_ssize_t __pyx_v_new_shape; - int __pyx_v_negative_step; - int __pyx_r; - int __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - - /* "View.MemoryView":814 - * cdef bint negative_step - * - * if not is_slice: # <<<<<<<<<<<<<< - * - * if start < 0: -*/ - __pyx_t_1 = (!__pyx_v_is_slice); - if (__pyx_t_1) { - - /* "View.MemoryView":816 - * if not is_slice: - * - * if start < 0: # <<<<<<<<<<<<<< - * start += shape - * if not 0 <= start < shape: -*/ - __pyx_t_1 = (__pyx_v_start < 0); - if (__pyx_t_1) { - - /* "View.MemoryView":817 - * - * if start < 0: - * start += shape # <<<<<<<<<<<<<< - * if not 0 <= start < shape: - * _err_dim(PyExc_IndexError, "Index out of bounds (axis %d)", dim) -*/ - __pyx_v_start = (__pyx_v_start + __pyx_v_shape); - - /* "View.MemoryView":816 - * if not is_slice: - * - * if start < 0: # <<<<<<<<<<<<<< - * start += shape - * if not 0 <= start < shape: -*/ - } - - /* "View.MemoryView":818 - * if start < 0: - * start += shape - * if not 0 <= start < shape: # <<<<<<<<<<<<<< - * _err_dim(PyExc_IndexError, "Index out of bounds (axis %d)", dim) - * else: -*/ - __pyx_t_1 = (0 <= __pyx_v_start); - if (__pyx_t_1) { - __pyx_t_1 = (__pyx_v_start < __pyx_v_shape); - } - __pyx_t_2 = (!__pyx_t_1); - if (__pyx_t_2) { - - /* "View.MemoryView":819 - * start += shape - * if not 0 <= start < shape: - * _err_dim(PyExc_IndexError, "Index out of bounds (axis %d)", dim) # <<<<<<<<<<<<<< - * else: - * -*/ - __pyx_t_3 = __pyx_memoryview_err_dim(PyExc_IndexError, __pyx_mstate_global->__pyx_kp_u_Index_out_of_bounds_axis_d, __pyx_v_dim); if (unlikely(__pyx_t_3 == ((int)-1))) __PYX_ERR(1, 819, __pyx_L1_error) - - /* "View.MemoryView":818 - * if start < 0: - * start += shape - * if not 0 <= start < shape: # <<<<<<<<<<<<<< - * _err_dim(PyExc_IndexError, "Index out of bounds (axis %d)", dim) - * else: -*/ - } - - /* "View.MemoryView":814 - * cdef bint negative_step - * - * if not is_slice: # <<<<<<<<<<<<<< - * - * if start < 0: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":822 - * else: - * - * if have_step: # <<<<<<<<<<<<<< - * negative_step = step < 0 - * if step == 0: -*/ - /*else*/ { - __pyx_t_2 = (__pyx_v_have_step != 0); - if (__pyx_t_2) { - - /* "View.MemoryView":823 - * - * if have_step: - * negative_step = step < 0 # <<<<<<<<<<<<<< - * if step == 0: - * _err_dim(PyExc_ValueError, "Step may not be zero (axis %d)", dim) -*/ - __pyx_v_negative_step = (__pyx_v_step < 0); - - /* "View.MemoryView":824 - * if have_step: - * negative_step = step < 0 - * if step == 0: # <<<<<<<<<<<<<< - * _err_dim(PyExc_ValueError, "Step may not be zero (axis %d)", dim) - * else: -*/ - __pyx_t_2 = (__pyx_v_step == 0); - if (__pyx_t_2) { - - /* "View.MemoryView":825 - * negative_step = step < 0 - * if step == 0: - * _err_dim(PyExc_ValueError, "Step may not be zero (axis %d)", dim) # <<<<<<<<<<<<<< - * else: - * negative_step = False -*/ - __pyx_t_3 = __pyx_memoryview_err_dim(PyExc_ValueError, __pyx_mstate_global->__pyx_kp_u_Step_may_not_be_zero_axis_d, __pyx_v_dim); if (unlikely(__pyx_t_3 == ((int)-1))) __PYX_ERR(1, 825, __pyx_L1_error) - - /* "View.MemoryView":824 - * if have_step: - * negative_step = step < 0 - * if step == 0: # <<<<<<<<<<<<<< - * _err_dim(PyExc_ValueError, "Step may not be zero (axis %d)", dim) - * else: -*/ - } - - /* "View.MemoryView":822 - * else: - * - * if have_step: # <<<<<<<<<<<<<< - * negative_step = step < 0 - * if step == 0: -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":827 - * _err_dim(PyExc_ValueError, "Step may not be zero (axis %d)", dim) - * else: - * negative_step = False # <<<<<<<<<<<<<< - * step = 1 - * -*/ - /*else*/ { - __pyx_v_negative_step = 0; - - /* "View.MemoryView":828 - * else: - * negative_step = False - * step = 1 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_v_step = 1; - } - __pyx_L6:; - - /* "View.MemoryView":831 - * - * - * if have_start: # <<<<<<<<<<<<<< - * if start < 0: - * start += shape -*/ - __pyx_t_2 = (__pyx_v_have_start != 0); - if (__pyx_t_2) { - - /* "View.MemoryView":832 - * - * if have_start: - * if start < 0: # <<<<<<<<<<<<<< - * start += shape - * if start < 0: -*/ - __pyx_t_2 = (__pyx_v_start < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":833 - * if have_start: - * if start < 0: - * start += shape # <<<<<<<<<<<<<< - * if start < 0: - * start = 0 -*/ - __pyx_v_start = (__pyx_v_start + __pyx_v_shape); - - /* "View.MemoryView":834 - * if start < 0: - * start += shape - * if start < 0: # <<<<<<<<<<<<<< - * start = 0 - * elif start >= shape: -*/ - __pyx_t_2 = (__pyx_v_start < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":835 - * start += shape - * if start < 0: - * start = 0 # <<<<<<<<<<<<<< - * elif start >= shape: - * if negative_step: -*/ - __pyx_v_start = 0; - - /* "View.MemoryView":834 - * if start < 0: - * start += shape - * if start < 0: # <<<<<<<<<<<<<< - * start = 0 - * elif start >= shape: -*/ - } - - /* "View.MemoryView":832 - * - * if have_start: - * if start < 0: # <<<<<<<<<<<<<< - * start += shape - * if start < 0: -*/ - goto __pyx_L9; - } - - /* "View.MemoryView":836 - * if start < 0: - * start = 0 - * elif start >= shape: # <<<<<<<<<<<<<< - * if negative_step: - * start = shape - 1 -*/ - __pyx_t_2 = (__pyx_v_start >= __pyx_v_shape); - if (__pyx_t_2) { - - /* "View.MemoryView":837 - * start = 0 - * elif start >= shape: - * if negative_step: # <<<<<<<<<<<<<< - * start = shape - 1 - * else: -*/ - if (__pyx_v_negative_step) { - - /* "View.MemoryView":838 - * elif start >= shape: - * if negative_step: - * start = shape - 1 # <<<<<<<<<<<<<< - * else: - * start = shape -*/ - __pyx_v_start = (__pyx_v_shape - 1); - - /* "View.MemoryView":837 - * start = 0 - * elif start >= shape: - * if negative_step: # <<<<<<<<<<<<<< - * start = shape - 1 - * else: -*/ - goto __pyx_L11; - } - - /* "View.MemoryView":840 - * start = shape - 1 - * else: - * start = shape # <<<<<<<<<<<<<< - * else: - * if negative_step: -*/ - /*else*/ { - __pyx_v_start = __pyx_v_shape; - } - __pyx_L11:; - - /* "View.MemoryView":836 - * if start < 0: - * start = 0 - * elif start >= shape: # <<<<<<<<<<<<<< - * if negative_step: - * start = shape - 1 -*/ - } - __pyx_L9:; - - /* "View.MemoryView":831 - * - * - * if have_start: # <<<<<<<<<<<<<< - * if start < 0: - * start += shape -*/ - goto __pyx_L8; - } - - /* "View.MemoryView":842 - * start = shape - * else: - * if negative_step: # <<<<<<<<<<<<<< - * start = shape - 1 - * else: -*/ - /*else*/ { - if (__pyx_v_negative_step) { - - /* "View.MemoryView":843 - * else: - * if negative_step: - * start = shape - 1 # <<<<<<<<<<<<<< - * else: - * start = 0 -*/ - __pyx_v_start = (__pyx_v_shape - 1); - - /* "View.MemoryView":842 - * start = shape - * else: - * if negative_step: # <<<<<<<<<<<<<< - * start = shape - 1 - * else: -*/ - goto __pyx_L12; - } - - /* "View.MemoryView":845 - * start = shape - 1 - * else: - * start = 0 # <<<<<<<<<<<<<< - * - * if have_stop: -*/ - /*else*/ { - __pyx_v_start = 0; - } - __pyx_L12:; - } - __pyx_L8:; - - /* "View.MemoryView":847 - * start = 0 - * - * if have_stop: # <<<<<<<<<<<<<< - * if stop < 0: - * stop += shape -*/ - __pyx_t_2 = (__pyx_v_have_stop != 0); - if (__pyx_t_2) { - - /* "View.MemoryView":848 - * - * if have_stop: - * if stop < 0: # <<<<<<<<<<<<<< - * stop += shape - * if stop < 0: -*/ - __pyx_t_2 = (__pyx_v_stop < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":849 - * if have_stop: - * if stop < 0: - * stop += shape # <<<<<<<<<<<<<< - * if stop < 0: - * stop = 0 -*/ - __pyx_v_stop = (__pyx_v_stop + __pyx_v_shape); - - /* "View.MemoryView":850 - * if stop < 0: - * stop += shape - * if stop < 0: # <<<<<<<<<<<<<< - * stop = 0 - * elif stop > shape: -*/ - __pyx_t_2 = (__pyx_v_stop < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":851 - * stop += shape - * if stop < 0: - * stop = 0 # <<<<<<<<<<<<<< - * elif stop > shape: - * stop = shape -*/ - __pyx_v_stop = 0; - - /* "View.MemoryView":850 - * if stop < 0: - * stop += shape - * if stop < 0: # <<<<<<<<<<<<<< - * stop = 0 - * elif stop > shape: -*/ - } - - /* "View.MemoryView":848 - * - * if have_stop: - * if stop < 0: # <<<<<<<<<<<<<< - * stop += shape - * if stop < 0: -*/ - goto __pyx_L14; - } - - /* "View.MemoryView":852 - * if stop < 0: - * stop = 0 - * elif stop > shape: # <<<<<<<<<<<<<< - * stop = shape - * else: -*/ - __pyx_t_2 = (__pyx_v_stop > __pyx_v_shape); - if (__pyx_t_2) { - - /* "View.MemoryView":853 - * stop = 0 - * elif stop > shape: - * stop = shape # <<<<<<<<<<<<<< - * else: - * if negative_step: -*/ - __pyx_v_stop = __pyx_v_shape; - - /* "View.MemoryView":852 - * if stop < 0: - * stop = 0 - * elif stop > shape: # <<<<<<<<<<<<<< - * stop = shape - * else: -*/ - } - __pyx_L14:; - - /* "View.MemoryView":847 - * start = 0 - * - * if have_stop: # <<<<<<<<<<<<<< - * if stop < 0: - * stop += shape -*/ - goto __pyx_L13; - } - - /* "View.MemoryView":855 - * stop = shape - * else: - * if negative_step: # <<<<<<<<<<<<<< - * stop = -1 - * else: -*/ - /*else*/ { - if (__pyx_v_negative_step) { - - /* "View.MemoryView":856 - * else: - * if negative_step: - * stop = -1 # <<<<<<<<<<<<<< - * else: - * stop = shape -*/ - __pyx_v_stop = -1L; - - /* "View.MemoryView":855 - * stop = shape - * else: - * if negative_step: # <<<<<<<<<<<<<< - * stop = -1 - * else: -*/ - goto __pyx_L16; - } - - /* "View.MemoryView":858 - * stop = -1 - * else: - * stop = shape # <<<<<<<<<<<<<< - * - * -*/ - /*else*/ { - __pyx_v_stop = __pyx_v_shape; - } - __pyx_L16:; - } - __pyx_L13:; - - /* "View.MemoryView":862 - * - * with cython.cdivision(True): - * new_shape = (stop - start) // step # <<<<<<<<<<<<<< - * - * if (stop - start) - step * new_shape: -*/ - __pyx_v_new_shape = ((__pyx_v_stop - __pyx_v_start) / __pyx_v_step); - - /* "View.MemoryView":864 - * new_shape = (stop - start) // step - * - * if (stop - start) - step * new_shape: # <<<<<<<<<<<<<< - * new_shape += 1 - * -*/ - __pyx_t_2 = (((__pyx_v_stop - __pyx_v_start) - (__pyx_v_step * __pyx_v_new_shape)) != 0); - if (__pyx_t_2) { - - /* "View.MemoryView":865 - * - * if (stop - start) - step * new_shape: - * new_shape += 1 # <<<<<<<<<<<<<< - * - * if new_shape < 0: -*/ - __pyx_v_new_shape = (__pyx_v_new_shape + 1); - - /* "View.MemoryView":864 - * new_shape = (stop - start) // step - * - * if (stop - start) - step * new_shape: # <<<<<<<<<<<<<< - * new_shape += 1 - * -*/ - } - - /* "View.MemoryView":867 - * new_shape += 1 - * - * if new_shape < 0: # <<<<<<<<<<<<<< - * new_shape = 0 - * -*/ - __pyx_t_2 = (__pyx_v_new_shape < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":868 - * - * if new_shape < 0: - * new_shape = 0 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_v_new_shape = 0; - - /* "View.MemoryView":867 - * new_shape += 1 - * - * if new_shape < 0: # <<<<<<<<<<<<<< - * new_shape = 0 - * -*/ - } - - /* "View.MemoryView":871 - * - * - * dst.strides[new_ndim] = stride * step # <<<<<<<<<<<<<< - * dst.shape[new_ndim] = new_shape - * dst.suboffsets[new_ndim] = suboffset -*/ - (__pyx_v_dst->strides[__pyx_v_new_ndim]) = (__pyx_v_stride * __pyx_v_step); - - /* "View.MemoryView":872 - * - * dst.strides[new_ndim] = stride * step - * dst.shape[new_ndim] = new_shape # <<<<<<<<<<<<<< - * dst.suboffsets[new_ndim] = suboffset - * -*/ - (__pyx_v_dst->shape[__pyx_v_new_ndim]) = __pyx_v_new_shape; - - /* "View.MemoryView":873 - * dst.strides[new_ndim] = stride * step - * dst.shape[new_ndim] = new_shape - * dst.suboffsets[new_ndim] = suboffset # <<<<<<<<<<<<<< - * - * -*/ - (__pyx_v_dst->suboffsets[__pyx_v_new_ndim]) = __pyx_v_suboffset; - } - __pyx_L3:; - - /* "View.MemoryView":876 - * - * - * if suboffset_dim[0] < 0: # <<<<<<<<<<<<<< - * dst.data += start * stride - * else: -*/ - __pyx_t_2 = ((__pyx_v_suboffset_dim[0]) < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":877 - * - * if suboffset_dim[0] < 0: - * dst.data += start * stride # <<<<<<<<<<<<<< - * else: - * dst.suboffsets[suboffset_dim[0]] += start * stride -*/ - __pyx_v_dst->data = (__pyx_v_dst->data + (__pyx_v_start * __pyx_v_stride)); - - /* "View.MemoryView":876 - * - * - * if suboffset_dim[0] < 0: # <<<<<<<<<<<<<< - * dst.data += start * stride - * else: -*/ - goto __pyx_L19; - } - - /* "View.MemoryView":879 - * dst.data += start * stride - * else: - * dst.suboffsets[suboffset_dim[0]] += start * stride # <<<<<<<<<<<<<< - * - * if suboffset >= 0: -*/ - /*else*/ { - __pyx_t_3 = (__pyx_v_suboffset_dim[0]); - (__pyx_v_dst->suboffsets[__pyx_t_3]) = ((__pyx_v_dst->suboffsets[__pyx_t_3]) + (__pyx_v_start * __pyx_v_stride)); - } - __pyx_L19:; - - /* "View.MemoryView":881 - * dst.suboffsets[suboffset_dim[0]] += start * stride - * - * if suboffset >= 0: # <<<<<<<<<<<<<< - * if not is_slice: - * if new_ndim == 0: -*/ - __pyx_t_2 = (__pyx_v_suboffset >= 0); - if (__pyx_t_2) { - - /* "View.MemoryView":882 - * - * if suboffset >= 0: - * if not is_slice: # <<<<<<<<<<<<<< - * if new_ndim == 0: - * dst.data = ( dst.data)[0] + suboffset -*/ - __pyx_t_2 = (!__pyx_v_is_slice); - if (__pyx_t_2) { - - /* "View.MemoryView":883 - * if suboffset >= 0: - * if not is_slice: - * if new_ndim == 0: # <<<<<<<<<<<<<< - * dst.data = ( dst.data)[0] + suboffset - * else: -*/ - __pyx_t_2 = (__pyx_v_new_ndim == 0); - if (__pyx_t_2) { - - /* "View.MemoryView":884 - * if not is_slice: - * if new_ndim == 0: - * dst.data = ( dst.data)[0] + suboffset # <<<<<<<<<<<<<< - * else: - * _err_dim(PyExc_IndexError, "All dimensions preceding dimension %d " -*/ - __pyx_v_dst->data = ((((char **)__pyx_v_dst->data)[0]) + __pyx_v_suboffset); - - /* "View.MemoryView":883 - * if suboffset >= 0: - * if not is_slice: - * if new_ndim == 0: # <<<<<<<<<<<<<< - * dst.data = ( dst.data)[0] + suboffset - * else: -*/ - goto __pyx_L22; - } - - /* "View.MemoryView":886 - * dst.data = ( dst.data)[0] + suboffset - * else: - * _err_dim(PyExc_IndexError, "All dimensions preceding dimension %d " # <<<<<<<<<<<<<< - * "must be indexed and not sliced", dim) - * else: -*/ - /*else*/ { - - /* "View.MemoryView":887 - * else: - * _err_dim(PyExc_IndexError, "All dimensions preceding dimension %d " - * "must be indexed and not sliced", dim) # <<<<<<<<<<<<<< - * else: - * suboffset_dim[0] = new_ndim -*/ - __pyx_t_3 = __pyx_memoryview_err_dim(PyExc_IndexError, __pyx_mstate_global->__pyx_kp_u_All_dimensions_preceding_dimensi, __pyx_v_dim); if (unlikely(__pyx_t_3 == ((int)-1))) __PYX_ERR(1, 886, __pyx_L1_error) - } - __pyx_L22:; - - /* "View.MemoryView":882 - * - * if suboffset >= 0: - * if not is_slice: # <<<<<<<<<<<<<< - * if new_ndim == 0: - * dst.data = ( dst.data)[0] + suboffset -*/ - goto __pyx_L21; - } - - /* "View.MemoryView":889 - * "must be indexed and not sliced", dim) - * else: - * suboffset_dim[0] = new_ndim # <<<<<<<<<<<<<< - * - * return 0 -*/ - /*else*/ { - (__pyx_v_suboffset_dim[0]) = __pyx_v_new_ndim; - } - __pyx_L21:; - - /* "View.MemoryView":881 - * dst.suboffsets[suboffset_dim[0]] += start * stride - * - * if suboffset >= 0: # <<<<<<<<<<<<<< - * if not is_slice: - * if new_ndim == 0: -*/ - } - - /* "View.MemoryView":891 - * suboffset_dim[0] = new_ndim - * - * return 0 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":793 - * - * - * @cname('__pyx_memoryview_slice_memviewslice') # <<<<<<<<<<<<<< - * cdef int slice_memviewslice( - * __Pyx_memviewslice *dst, -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_AddTraceback("View.MemoryView.slice_memviewslice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_PyGILState_Release(__pyx_gilstate_save); - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":896 - * - * - * @cname('__pyx_pybuffer_index') # <<<<<<<<<<<<<< - * cdef char *pybuffer_index(Py_buffer *view, char *bufp, Py_ssize_t index, - * Py_ssize_t dim) except NULL: -*/ - -static char *__pyx_pybuffer_index(Py_buffer *__pyx_v_view, char *__pyx_v_bufp, Py_ssize_t __pyx_v_index, Py_ssize_t __pyx_v_dim) { - Py_ssize_t __pyx_v_shape; - Py_ssize_t __pyx_v_stride; - Py_ssize_t __pyx_v_suboffset; - Py_ssize_t __pyx_v_itemsize; - char *__pyx_v_resultp; - char *__pyx_r; - __Pyx_RefNannyDeclarations - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4[3]; - PyObject *__pyx_t_5 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("pybuffer_index", 0); - - /* "View.MemoryView":899 - * cdef char *pybuffer_index(Py_buffer *view, char *bufp, Py_ssize_t index, - * Py_ssize_t dim) except NULL: - * cdef Py_ssize_t shape, stride, suboffset = -1 # <<<<<<<<<<<<<< - * cdef Py_ssize_t itemsize = view.itemsize - * cdef char *resultp -*/ - __pyx_v_suboffset = -1L; - - /* "View.MemoryView":900 - * Py_ssize_t dim) except NULL: - * cdef Py_ssize_t shape, stride, suboffset = -1 - * cdef Py_ssize_t itemsize = view.itemsize # <<<<<<<<<<<<<< - * cdef char *resultp - * -*/ - __pyx_t_1 = __pyx_v_view->itemsize; - __pyx_v_itemsize = __pyx_t_1; - - /* "View.MemoryView":903 - * cdef char *resultp - * - * if view.ndim == 0: # <<<<<<<<<<<<<< - * shape = view.len // itemsize - * stride = itemsize -*/ - __pyx_t_2 = (__pyx_v_view->ndim == 0); - if (__pyx_t_2) { - - /* "View.MemoryView":904 - * - * if view.ndim == 0: - * shape = view.len // itemsize # <<<<<<<<<<<<<< - * stride = itemsize - * else: -*/ - if (unlikely(__pyx_v_itemsize == 0)) { - PyErr_SetString(PyExc_ZeroDivisionError, "integer division or modulo by zero"); - __PYX_ERR(1, 904, __pyx_L1_error) - } - else if (sizeof(Py_ssize_t) == sizeof(long) && (!(((Py_ssize_t)-1) > 0)) && unlikely(__pyx_v_itemsize == (Py_ssize_t)-1) && unlikely(__Pyx_UNARY_NEG_WOULD_OVERFLOW(__pyx_v_view->len))) { - PyErr_SetString(PyExc_OverflowError, "value too large to perform division"); - __PYX_ERR(1, 904, __pyx_L1_error) - } - __pyx_v_shape = __Pyx_div_Py_ssize_t(__pyx_v_view->len, __pyx_v_itemsize, 0); - - /* "View.MemoryView":905 - * if view.ndim == 0: - * shape = view.len // itemsize - * stride = itemsize # <<<<<<<<<<<<<< - * else: - * shape = view.shape[dim] -*/ - __pyx_v_stride = __pyx_v_itemsize; - - /* "View.MemoryView":903 - * cdef char *resultp - * - * if view.ndim == 0: # <<<<<<<<<<<<<< - * shape = view.len // itemsize - * stride = itemsize -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":907 - * stride = itemsize - * else: - * shape = view.shape[dim] # <<<<<<<<<<<<<< - * stride = view.strides[dim] - * if view.suboffsets != NULL: -*/ - /*else*/ { - __pyx_v_shape = (__pyx_v_view->shape[__pyx_v_dim]); - - /* "View.MemoryView":908 - * else: - * shape = view.shape[dim] - * stride = view.strides[dim] # <<<<<<<<<<<<<< - * if view.suboffsets != NULL: - * suboffset = view.suboffsets[dim] -*/ - __pyx_v_stride = (__pyx_v_view->strides[__pyx_v_dim]); - - /* "View.MemoryView":909 - * shape = view.shape[dim] - * stride = view.strides[dim] - * if view.suboffsets != NULL: # <<<<<<<<<<<<<< - * suboffset = view.suboffsets[dim] - * -*/ - __pyx_t_2 = (__pyx_v_view->suboffsets != NULL); - if (__pyx_t_2) { - - /* "View.MemoryView":910 - * stride = view.strides[dim] - * if view.suboffsets != NULL: - * suboffset = view.suboffsets[dim] # <<<<<<<<<<<<<< - * - * if index < 0: -*/ - __pyx_v_suboffset = (__pyx_v_view->suboffsets[__pyx_v_dim]); - - /* "View.MemoryView":909 - * shape = view.shape[dim] - * stride = view.strides[dim] - * if view.suboffsets != NULL: # <<<<<<<<<<<<<< - * suboffset = view.suboffsets[dim] - * -*/ - } - } - __pyx_L3:; - - /* "View.MemoryView":912 - * suboffset = view.suboffsets[dim] - * - * if index < 0: # <<<<<<<<<<<<<< - * index += view.shape[dim] - * if index < 0: -*/ - __pyx_t_2 = (__pyx_v_index < 0); - if (__pyx_t_2) { - - /* "View.MemoryView":913 - * - * if index < 0: - * index += view.shape[dim] # <<<<<<<<<<<<<< - * if index < 0: - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" -*/ - __pyx_v_index = (__pyx_v_index + (__pyx_v_view->shape[__pyx_v_dim])); - - /* "View.MemoryView":914 - * if index < 0: - * index += view.shape[dim] - * if index < 0: # <<<<<<<<<<<<<< - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * -*/ - __pyx_t_2 = (__pyx_v_index < 0); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":915 - * index += view.shape[dim] - * if index < 0: - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" # <<<<<<<<<<<<<< - * - * if index >= shape: -*/ - __pyx_t_3 = __Pyx_PyUnicode_From_Py_ssize_t(__pyx_v_dim, 0, ' ', 'd'); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 915, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4[0] = __pyx_mstate_global->__pyx_kp_u_Out_of_bounds_on_buffer_access_a; - __pyx_t_4[1] = __pyx_t_3; - __pyx_t_4[2] = __pyx_mstate_global->__pyx_kp_u__5; - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_4, 3, 37 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_3) + 1, 127); - if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 915, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_IndexError))), __pyx_t_5, 0, 0); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __PYX_ERR(1, 915, __pyx_L1_error) - - /* "View.MemoryView":914 - * if index < 0: - * index += view.shape[dim] - * if index < 0: # <<<<<<<<<<<<<< - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * -*/ - } - - /* "View.MemoryView":912 - * suboffset = view.suboffsets[dim] - * - * if index < 0: # <<<<<<<<<<<<<< - * index += view.shape[dim] - * if index < 0: -*/ - } - - /* "View.MemoryView":917 - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * - * if index >= shape: # <<<<<<<<<<<<<< - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * -*/ - __pyx_t_2 = (__pyx_v_index >= __pyx_v_shape); - if (unlikely(__pyx_t_2)) { - - /* "View.MemoryView":918 - * - * if index >= shape: - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" # <<<<<<<<<<<<<< - * - * resultp = bufp + index * stride -*/ - __pyx_t_5 = __Pyx_PyUnicode_From_Py_ssize_t(__pyx_v_dim, 0, ' ', 'd'); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 918, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __pyx_t_4[0] = __pyx_mstate_global->__pyx_kp_u_Out_of_bounds_on_buffer_access_a; - __pyx_t_4[1] = __pyx_t_5; - __pyx_t_4[2] = __pyx_mstate_global->__pyx_kp_u__5; - __pyx_t_3 = __Pyx_PyUnicode_Join(__pyx_t_4, 3, 37 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_5) + 1, 127); - if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 918, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_IndexError))), __pyx_t_3, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 918, __pyx_L1_error) - - /* "View.MemoryView":917 - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * - * if index >= shape: # <<<<<<<<<<<<<< - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * -*/ - } - - /* "View.MemoryView":920 - * raise IndexError, f"Out of bounds on buffer access (axis {dim})" - * - * resultp = bufp + index * stride # <<<<<<<<<<<<<< - * if suboffset >= 0: - * resultp = ( resultp)[0] + suboffset -*/ - __pyx_v_resultp = (__pyx_v_bufp + (__pyx_v_index * __pyx_v_stride)); - - /* "View.MemoryView":921 - * - * resultp = bufp + index * stride - * if suboffset >= 0: # <<<<<<<<<<<<<< - * resultp = ( resultp)[0] + suboffset - * -*/ - __pyx_t_2 = (__pyx_v_suboffset >= 0); - if (__pyx_t_2) { - - /* "View.MemoryView":922 - * resultp = bufp + index * stride - * if suboffset >= 0: - * resultp = ( resultp)[0] + suboffset # <<<<<<<<<<<<<< - * - * return resultp -*/ - __pyx_v_resultp = ((((char **)__pyx_v_resultp)[0]) + __pyx_v_suboffset); - - /* "View.MemoryView":921 - * - * resultp = bufp + index * stride - * if suboffset >= 0: # <<<<<<<<<<<<<< - * resultp = ( resultp)[0] + suboffset - * -*/ - } - - /* "View.MemoryView":924 - * resultp = ( resultp)[0] + suboffset - * - * return resultp # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_resultp; - goto __pyx_L0; - - /* "View.MemoryView":896 - * - * - * @cname('__pyx_pybuffer_index') # <<<<<<<<<<<<<< - * cdef char *pybuffer_index(Py_buffer *view, char *bufp, Py_ssize_t index, - * Py_ssize_t dim) except NULL: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView.pybuffer_index", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":929 - * - * - * @cname('__pyx_memslice_transpose') # <<<<<<<<<<<<<< - * cdef int transpose_memslice(__Pyx_memviewslice *memslice) except -1 nogil: - * cdef int ndim = memslice.memview.view.ndim -*/ - -static int __pyx_memslice_transpose(__Pyx_memviewslice *__pyx_v_memslice) { - int __pyx_v_ndim; - Py_ssize_t *__pyx_v_shape; - Py_ssize_t *__pyx_v_strides; - int __pyx_v_i; - int __pyx_v_j; - int __pyx_r; - int __pyx_t_1; - Py_ssize_t *__pyx_t_2; - long __pyx_t_3; - long __pyx_t_4; - Py_ssize_t __pyx_t_5; - Py_ssize_t __pyx_t_6; - int __pyx_t_7; - int __pyx_t_8; - int __pyx_t_9; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - - /* "View.MemoryView":931 - * @cname('__pyx_memslice_transpose') - * cdef int transpose_memslice(__Pyx_memviewslice *memslice) except -1 nogil: - * cdef int ndim = memslice.memview.view.ndim # <<<<<<<<<<<<<< - * - * cdef Py_ssize_t *shape = memslice.shape -*/ - __pyx_t_1 = __pyx_v_memslice->memview->view.ndim; - __pyx_v_ndim = __pyx_t_1; - - /* "View.MemoryView":933 - * cdef int ndim = memslice.memview.view.ndim - * - * cdef Py_ssize_t *shape = memslice.shape # <<<<<<<<<<<<<< - * cdef Py_ssize_t *strides = memslice.strides - * -*/ - __pyx_t_2 = __pyx_v_memslice->shape; - __pyx_v_shape = __pyx_t_2; - - /* "View.MemoryView":934 - * - * cdef Py_ssize_t *shape = memslice.shape - * cdef Py_ssize_t *strides = memslice.strides # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_2 = __pyx_v_memslice->strides; - __pyx_v_strides = __pyx_t_2; - - /* "View.MemoryView":938 - * - * cdef int i, j - * for i in range(ndim // 2): # <<<<<<<<<<<<<< - * j = ndim - 1 - i - * strides[i], strides[j] = strides[j], strides[i] -*/ - __pyx_t_3 = __Pyx_div_long(__pyx_v_ndim, 2, 1); - __pyx_t_4 = __pyx_t_3; - for (__pyx_t_1 = 0; __pyx_t_1 < __pyx_t_4; __pyx_t_1+=1) { - __pyx_v_i = __pyx_t_1; - - /* "View.MemoryView":939 - * cdef int i, j - * for i in range(ndim // 2): - * j = ndim - 1 - i # <<<<<<<<<<<<<< - * strides[i], strides[j] = strides[j], strides[i] - * shape[i], shape[j] = shape[j], shape[i] -*/ - __pyx_v_j = ((__pyx_v_ndim - 1) - __pyx_v_i); - - /* "View.MemoryView":940 - * for i in range(ndim // 2): - * j = ndim - 1 - i - * strides[i], strides[j] = strides[j], strides[i] # <<<<<<<<<<<<<< - * shape[i], shape[j] = shape[j], shape[i] - * -*/ - __pyx_t_5 = (__pyx_v_strides[__pyx_v_j]); - __pyx_t_6 = (__pyx_v_strides[__pyx_v_i]); - (__pyx_v_strides[__pyx_v_i]) = __pyx_t_5; - (__pyx_v_strides[__pyx_v_j]) = __pyx_t_6; - - /* "View.MemoryView":941 - * j = ndim - 1 - i - * strides[i], strides[j] = strides[j], strides[i] - * shape[i], shape[j] = shape[j], shape[i] # <<<<<<<<<<<<<< - * - * if memslice.suboffsets[i] >= 0 or memslice.suboffsets[j] >= 0: -*/ - __pyx_t_6 = (__pyx_v_shape[__pyx_v_j]); - __pyx_t_5 = (__pyx_v_shape[__pyx_v_i]); - (__pyx_v_shape[__pyx_v_i]) = __pyx_t_6; - (__pyx_v_shape[__pyx_v_j]) = __pyx_t_5; - - /* "View.MemoryView":943 - * shape[i], shape[j] = shape[j], shape[i] - * - * if memslice.suboffsets[i] >= 0 or memslice.suboffsets[j] >= 0: # <<<<<<<<<<<<<< - * _err(PyExc_ValueError, "Cannot transpose memoryview with indirect dimensions") - * -*/ - __pyx_t_8 = ((__pyx_v_memslice->suboffsets[__pyx_v_i]) >= 0); - if (!__pyx_t_8) { - } else { - __pyx_t_7 = __pyx_t_8; - goto __pyx_L6_bool_binop_done; - } - __pyx_t_8 = ((__pyx_v_memslice->suboffsets[__pyx_v_j]) >= 0); - __pyx_t_7 = __pyx_t_8; - __pyx_L6_bool_binop_done:; - if (__pyx_t_7) { - - /* "View.MemoryView":944 - * - * if memslice.suboffsets[i] >= 0 or memslice.suboffsets[j] >= 0: - * _err(PyExc_ValueError, "Cannot transpose memoryview with indirect dimensions") # <<<<<<<<<<<<<< - * - * return 0 -*/ - __pyx_t_9 = __pyx_memoryview_err(PyExc_ValueError, __pyx_mstate_global->__pyx_kp_u_Cannot_transpose_memoryview_with); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(1, 944, __pyx_L1_error) - - /* "View.MemoryView":943 - * shape[i], shape[j] = shape[j], shape[i] - * - * if memslice.suboffsets[i] >= 0 or memslice.suboffsets[j] >= 0: # <<<<<<<<<<<<<< - * _err(PyExc_ValueError, "Cannot transpose memoryview with indirect dimensions") - * -*/ - } - } - - /* "View.MemoryView":946 - * _err(PyExc_ValueError, "Cannot transpose memoryview with indirect dimensions") - * - * return 0 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":929 - * - * - * @cname('__pyx_memslice_transpose') # <<<<<<<<<<<<<< - * cdef int transpose_memslice(__Pyx_memviewslice *memslice) except -1 nogil: - * cdef int ndim = memslice.memview.view.ndim -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_AddTraceback("View.MemoryView.transpose_memslice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_PyGILState_Release(__pyx_gilstate_save); - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":964 - * cdef int (*to_dtype_func)(char *, object) except 0 - * - * def __dealloc__(self): # <<<<<<<<<<<<<< - * __PYX_XCLEAR_MEMVIEW(&self.from_slice, 1) - * -*/ - -/* Python wrapper */ -static void __pyx_memoryviewslice___dealloc__(PyObject *__pyx_v_self); /*proto*/ -static void __pyx_memoryviewslice___dealloc__(PyObject *__pyx_v_self) { - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0); - __pyx_kwvalues = __Pyx_KwValues_VARARGS(__pyx_args, __pyx_nargs); - __pyx_memoryviewslice___pyx_pf_15View_dot_MemoryView_16_memoryviewslice___dealloc__(((struct __pyx_memoryviewslice_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); -} - -static void __pyx_memoryviewslice___pyx_pf_15View_dot_MemoryView_16_memoryviewslice___dealloc__(struct __pyx_memoryviewslice_obj *__pyx_v_self) { - - /* "View.MemoryView":965 - * - * def __dealloc__(self): - * __PYX_XCLEAR_MEMVIEW(&self.from_slice, 1) # <<<<<<<<<<<<<< - * - * cdef convert_item_to_object(self, char *itemp): -*/ - __PYX_XCLEAR_MEMVIEW((&__pyx_v_self->from_slice), 1); - - /* "View.MemoryView":964 - * cdef int (*to_dtype_func)(char *, object) except 0 - * - * def __dealloc__(self): # <<<<<<<<<<<<<< - * __PYX_XCLEAR_MEMVIEW(&self.from_slice, 1) - * -*/ - - /* function exit code */ -} - -/* "View.MemoryView":967 - * __PYX_XCLEAR_MEMVIEW(&self.from_slice, 1) - * - * cdef convert_item_to_object(self, char *itemp): # <<<<<<<<<<<<<< - * if self.to_object_func != NULL: - * return self.to_object_func(itemp) -*/ - -static PyObject *__pyx_memoryviewslice_convert_item_to_object(struct __pyx_memoryviewslice_obj *__pyx_v_self, char *__pyx_v_itemp) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("convert_item_to_object", 0); - - /* "View.MemoryView":968 - * - * cdef convert_item_to_object(self, char *itemp): - * if self.to_object_func != NULL: # <<<<<<<<<<<<<< - * return self.to_object_func(itemp) - * else: -*/ - __pyx_t_1 = (__pyx_v_self->to_object_func != NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":969 - * cdef convert_item_to_object(self, char *itemp): - * if self.to_object_func != NULL: - * return self.to_object_func(itemp) # <<<<<<<<<<<<<< - * else: - * return memoryview.convert_item_to_object(self, itemp) -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __pyx_v_self->to_object_func(__pyx_v_itemp); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 969, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* "View.MemoryView":968 - * - * cdef convert_item_to_object(self, char *itemp): - * if self.to_object_func != NULL: # <<<<<<<<<<<<<< - * return self.to_object_func(itemp) - * else: -*/ - } - - /* "View.MemoryView":971 - * return self.to_object_func(itemp) - * else: - * return memoryview.convert_item_to_object(self, itemp) # <<<<<<<<<<<<<< - * - * cdef assign_item_from_object(self, char *itemp, object value): -*/ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __pyx_t_2 = __pyx_memoryview_convert_item_to_object(((struct __pyx_memoryview_obj *)__pyx_v_self), __pyx_v_itemp); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 971, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - } - - /* "View.MemoryView":967 - * __PYX_XCLEAR_MEMVIEW(&self.from_slice, 1) - * - * cdef convert_item_to_object(self, char *itemp): # <<<<<<<<<<<<<< - * if self.to_object_func != NULL: - * return self.to_object_func(itemp) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView._memoryviewslice.convert_item_to_object", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":973 - * return memoryview.convert_item_to_object(self, itemp) - * - * cdef assign_item_from_object(self, char *itemp, object value): # <<<<<<<<<<<<<< - * if self.to_dtype_func != NULL: - * self.to_dtype_func(itemp, value) -*/ - -static PyObject *__pyx_memoryviewslice_assign_item_from_object(struct __pyx_memoryviewslice_obj *__pyx_v_self, char *__pyx_v_itemp, PyObject *__pyx_v_value) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - int __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("assign_item_from_object", 0); - - /* "View.MemoryView":974 - * - * cdef assign_item_from_object(self, char *itemp, object value): - * if self.to_dtype_func != NULL: # <<<<<<<<<<<<<< - * self.to_dtype_func(itemp, value) - * else: -*/ - __pyx_t_1 = (__pyx_v_self->to_dtype_func != NULL); - if (__pyx_t_1) { - - /* "View.MemoryView":975 - * cdef assign_item_from_object(self, char *itemp, object value): - * if self.to_dtype_func != NULL: - * self.to_dtype_func(itemp, value) # <<<<<<<<<<<<<< - * else: - * memoryview.assign_item_from_object(self, itemp, value) -*/ - __pyx_t_2 = __pyx_v_self->to_dtype_func(__pyx_v_itemp, __pyx_v_value); if (unlikely(__pyx_t_2 == ((int)0))) __PYX_ERR(1, 975, __pyx_L1_error) - - /* "View.MemoryView":974 - * - * cdef assign_item_from_object(self, char *itemp, object value): - * if self.to_dtype_func != NULL: # <<<<<<<<<<<<<< - * self.to_dtype_func(itemp, value) - * else: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":977 - * self.to_dtype_func(itemp, value) - * else: - * memoryview.assign_item_from_object(self, itemp, value) # <<<<<<<<<<<<<< - * - * cdef _get_base(self): -*/ - /*else*/ { - __pyx_t_3 = __pyx_memoryview_assign_item_from_object(((struct __pyx_memoryview_obj *)__pyx_v_self), __pyx_v_itemp, __pyx_v_value); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 977, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - } - __pyx_L3:; - - /* "View.MemoryView":973 - * return memoryview.convert_item_to_object(self, itemp) - * - * cdef assign_item_from_object(self, char *itemp, object value): # <<<<<<<<<<<<<< - * if self.to_dtype_func != NULL: - * self.to_dtype_func(itemp, value) -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView._memoryviewslice.assign_item_from_object", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":979 - * memoryview.assign_item_from_object(self, itemp, value) - * - * cdef _get_base(self): # <<<<<<<<<<<<<< - * return self.from_object - * -*/ - -static PyObject *__pyx_memoryviewslice__get_base(struct __pyx_memoryviewslice_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("_get_base", 0); - - /* "View.MemoryView":980 - * - * cdef _get_base(self): - * return self.from_object # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v_self->from_object); - __pyx_r = __pyx_v_self->from_object; - goto __pyx_L0; - - /* "View.MemoryView":979 - * memoryview.assign_item_from_object(self, itemp, value) - * - * cdef _get_base(self): # <<<<<<<<<<<<<< - * return self.from_object - * -*/ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_memoryviewslice_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_memoryviewslice_1__reduce_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - if (unlikely(__pyx_nargs > 0)) { __Pyx_RaiseArgtupleInvalid("__reduce_cython__", 1, 0, 0, __pyx_nargs); return NULL; } - const Py_ssize_t __pyx_kwds_len = unlikely(__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len < 0)) return NULL; - if (unlikely(__pyx_kwds_len > 0)) {__Pyx_RejectKeywords("__reduce_cython__", __pyx_kwds); return NULL;} - __pyx_r = __pyx_pf___pyx_memoryviewslice___reduce_cython__(((struct __pyx_memoryviewslice_obj *)__pyx_v_self)); - - /* function exit code */ - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_memoryviewslice___reduce_cython__(CYTHON_UNUSED struct __pyx_memoryviewslice_obj *__pyx_v_self) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__reduce_cython__", 0); - - /* "(tree fragment)":2 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 2, __pyx_L1_error) - - /* "(tree fragment)":1 - * def __reduce_cython__(self): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView._memoryviewslice.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw___pyx_memoryviewslice_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_pw___pyx_memoryviewslice_3__setstate_cython__(PyObject *__pyx_v_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - CYTHON_UNUSED PyObject *__pyx_v___pyx_state = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[1] = {0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_pyx_state,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 3, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 1; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 1)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 3, __pyx_L3_error) - } - __pyx_v___pyx_state = values[0]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, __pyx_nargs); __PYX_ERR(1, 3, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView._memoryviewslice.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - __pyx_r = __pyx_pf___pyx_memoryviewslice_2__setstate_cython__(((struct __pyx_memoryviewslice_obj *)__pyx_v_self), __pyx_v___pyx_state); - - /* function exit code */ - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf___pyx_memoryviewslice_2__setstate_cython__(CYTHON_UNUSED struct __pyx_memoryviewslice_obj *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__setstate_cython__", 0); - - /* "(tree fragment)":4 - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" # <<<<<<<<<<<<<< -*/ - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_TypeError))), __pyx_mstate_global->__pyx_kp_u_no_default___reduce___due_to_non, 0, 0); - __PYX_ERR(1, 4, __pyx_L1_error) - - /* "(tree fragment)":3 - * def __reduce_cython__(self): - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" - * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< - * raise TypeError, "no default __reduce__ due to non-trivial __cinit__" -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView._memoryviewslice.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":999 - * pass # ignore failure, it's a minor issue - * - * @cname('__pyx_memoryview_fromslice') # <<<<<<<<<<<<<< - * cdef memoryview_fromslice(__Pyx_memviewslice memviewslice, - * int ndim, -*/ - -static PyObject *__pyx_memoryview_fromslice(__Pyx_memviewslice __pyx_v_memviewslice, int __pyx_v_ndim, PyObject *(*__pyx_v_to_object_func)(char *), int (*__pyx_v_to_dtype_func)(char *, PyObject *), int __pyx_v_dtype_is_object) { - struct __pyx_memoryviewslice_obj *__pyx_v_result = 0; - Py_ssize_t __pyx_v_suboffset; - PyObject *__pyx_v_length = NULL; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - __Pyx_TypeInfo const *__pyx_t_4; - Py_buffer __pyx_t_5; - Py_ssize_t *__pyx_t_6; - Py_ssize_t *__pyx_t_7; - Py_ssize_t *__pyx_t_8; - Py_ssize_t __pyx_t_9; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("memoryview_fromslice", 0); - - /* "View.MemoryView":1008 - * cdef _memoryviewslice result - * - * if memviewslice.memview == Py_None: # <<<<<<<<<<<<<< - * return None - * -*/ - __pyx_t_1 = (((PyObject *)__pyx_v_memviewslice.memview) == Py_None); - if (__pyx_t_1) { - - /* "View.MemoryView":1009 - * - * if memviewslice.memview == Py_None: - * return None # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - - /* "View.MemoryView":1008 - * cdef _memoryviewslice result - * - * if memviewslice.memview == Py_None: # <<<<<<<<<<<<<< - * return None - * -*/ - } - - /* "View.MemoryView":1014 - * - * - * result = _memoryviewslice.__new__(_memoryviewslice, None, 0, dtype_is_object) # <<<<<<<<<<<<<< - * - * result.from_slice = memviewslice -*/ - __pyx_t_2 = __Pyx_PyBool_FromLong(__pyx_v_dtype_is_object); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1014, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyTuple_New(3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1014, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_INCREF(Py_None); - __Pyx_GIVEREF(Py_None); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 0, Py_None) != (0)) __PYX_ERR(1, 1014, __pyx_L1_error); - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_0); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_0); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_mstate_global->__pyx_int_0) != (0)) __PYX_ERR(1, 1014, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_2); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_3, 2, __pyx_t_2) != (0)) __PYX_ERR(1, 1014, __pyx_L1_error); - __pyx_t_2 = 0; - __pyx_t_2 = ((PyObject *)__pyx_tp_new__memoryviewslice(((PyTypeObject *)__pyx_mstate_global->__pyx_memoryviewslice_type), __pyx_t_3, NULL)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1014, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_2); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_v_result = ((struct __pyx_memoryviewslice_obj *)__pyx_t_2); - __pyx_t_2 = 0; - - /* "View.MemoryView":1016 - * result = _memoryviewslice.__new__(_memoryviewslice, None, 0, dtype_is_object) - * - * result.from_slice = memviewslice # <<<<<<<<<<<<<< - * __PYX_INC_MEMVIEW(&memviewslice, 1) - * -*/ - __pyx_v_result->from_slice = __pyx_v_memviewslice; - - /* "View.MemoryView":1017 - * - * result.from_slice = memviewslice - * __PYX_INC_MEMVIEW(&memviewslice, 1) # <<<<<<<<<<<<<< - * - * result.from_object = ( memviewslice.memview)._get_base() -*/ - __PYX_INC_MEMVIEW((&__pyx_v_memviewslice), 1); - - /* "View.MemoryView":1019 - * __PYX_INC_MEMVIEW(&memviewslice, 1) - * - * result.from_object = ( memviewslice.memview)._get_base() # <<<<<<<<<<<<<< - * result.typeinfo = memviewslice.memview.typeinfo - * -*/ - __pyx_t_2 = ((struct __pyx_vtabstruct_memoryview *)((struct __pyx_memoryview_obj *)__pyx_v_memviewslice.memview)->__pyx_vtab)->_get_base(((struct __pyx_memoryview_obj *)__pyx_v_memviewslice.memview)); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1019, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_GIVEREF(__pyx_t_2); - __Pyx_GOTREF(__pyx_v_result->from_object); - __Pyx_DECREF(__pyx_v_result->from_object); - __pyx_v_result->from_object = __pyx_t_2; - __pyx_t_2 = 0; - - /* "View.MemoryView":1020 - * - * result.from_object = ( memviewslice.memview)._get_base() - * result.typeinfo = memviewslice.memview.typeinfo # <<<<<<<<<<<<<< - * - * result.view = memviewslice.memview.view -*/ - __pyx_t_4 = __pyx_v_memviewslice.memview->typeinfo; - __pyx_v_result->__pyx_base.typeinfo = __pyx_t_4; - - /* "View.MemoryView":1022 - * result.typeinfo = memviewslice.memview.typeinfo - * - * result.view = memviewslice.memview.view # <<<<<<<<<<<<<< - * result.view.buf = memviewslice.data - * result.view.ndim = ndim -*/ - __pyx_t_5 = __pyx_v_memviewslice.memview->view; - __pyx_v_result->__pyx_base.view = __pyx_t_5; - - /* "View.MemoryView":1023 - * - * result.view = memviewslice.memview.view - * result.view.buf = memviewslice.data # <<<<<<<<<<<<<< - * result.view.ndim = ndim - * (<__pyx_buffer *> &result.view).obj = Py_None -*/ - __pyx_v_result->__pyx_base.view.buf = ((void *)__pyx_v_memviewslice.data); - - /* "View.MemoryView":1024 - * result.view = memviewslice.memview.view - * result.view.buf = memviewslice.data - * result.view.ndim = ndim # <<<<<<<<<<<<<< - * (<__pyx_buffer *> &result.view).obj = Py_None - * Py_INCREF(Py_None) -*/ - __pyx_v_result->__pyx_base.view.ndim = __pyx_v_ndim; - - /* "View.MemoryView":1025 - * result.view.buf = memviewslice.data - * result.view.ndim = ndim - * (<__pyx_buffer *> &result.view).obj = Py_None # <<<<<<<<<<<<<< - * Py_INCREF(Py_None) - * -*/ - ((Py_buffer *)(&__pyx_v_result->__pyx_base.view))->obj = Py_None; - - /* "View.MemoryView":1026 - * result.view.ndim = ndim - * (<__pyx_buffer *> &result.view).obj = Py_None - * Py_INCREF(Py_None) # <<<<<<<<<<<<<< - * - * if (memviewslice.memview).flags & PyBUF_WRITABLE: -*/ - Py_INCREF(Py_None); - - /* "View.MemoryView":1028 - * Py_INCREF(Py_None) - * - * if (memviewslice.memview).flags & PyBUF_WRITABLE: # <<<<<<<<<<<<<< - * result.flags = PyBUF_RECORDS - * else: -*/ - __pyx_t_1 = ((((struct __pyx_memoryview_obj *)__pyx_v_memviewslice.memview)->flags & PyBUF_WRITABLE) != 0); - if (__pyx_t_1) { - - /* "View.MemoryView":1029 - * - * if (memviewslice.memview).flags & PyBUF_WRITABLE: - * result.flags = PyBUF_RECORDS # <<<<<<<<<<<<<< - * else: - * result.flags = PyBUF_RECORDS_RO -*/ - __pyx_v_result->__pyx_base.flags = PyBUF_RECORDS; - - /* "View.MemoryView":1028 - * Py_INCREF(Py_None) - * - * if (memviewslice.memview).flags & PyBUF_WRITABLE: # <<<<<<<<<<<<<< - * result.flags = PyBUF_RECORDS - * else: -*/ - goto __pyx_L4; - } - - /* "View.MemoryView":1031 - * result.flags = PyBUF_RECORDS - * else: - * result.flags = PyBUF_RECORDS_RO # <<<<<<<<<<<<<< - * - * result.view.shape = result.from_slice.shape -*/ - /*else*/ { - __pyx_v_result->__pyx_base.flags = PyBUF_RECORDS_RO; - } - __pyx_L4:; - - /* "View.MemoryView":1033 - * result.flags = PyBUF_RECORDS_RO - * - * result.view.shape = result.from_slice.shape # <<<<<<<<<<<<<< - * result.view.strides = result.from_slice.strides - * -*/ - __pyx_v_result->__pyx_base.view.shape = ((Py_ssize_t *)__pyx_v_result->from_slice.shape); - - /* "View.MemoryView":1034 - * - * result.view.shape = result.from_slice.shape - * result.view.strides = result.from_slice.strides # <<<<<<<<<<<<<< - * - * -*/ - __pyx_v_result->__pyx_base.view.strides = ((Py_ssize_t *)__pyx_v_result->from_slice.strides); - - /* "View.MemoryView":1037 - * - * - * result.view.suboffsets = NULL # <<<<<<<<<<<<<< - * for suboffset in result.from_slice.suboffsets[:ndim]: - * if suboffset >= 0: -*/ - __pyx_v_result->__pyx_base.view.suboffsets = NULL; - - /* "View.MemoryView":1038 - * - * result.view.suboffsets = NULL - * for suboffset in result.from_slice.suboffsets[:ndim]: # <<<<<<<<<<<<<< - * if suboffset >= 0: - * result.view.suboffsets = result.from_slice.suboffsets -*/ - __pyx_t_7 = (__pyx_v_result->from_slice.suboffsets + __pyx_v_ndim); - for (__pyx_t_8 = __pyx_v_result->from_slice.suboffsets; __pyx_t_8 < __pyx_t_7; __pyx_t_8++) { - __pyx_t_6 = __pyx_t_8; - __pyx_v_suboffset = (__pyx_t_6[0]); - - /* "View.MemoryView":1039 - * result.view.suboffsets = NULL - * for suboffset in result.from_slice.suboffsets[:ndim]: - * if suboffset >= 0: # <<<<<<<<<<<<<< - * result.view.suboffsets = result.from_slice.suboffsets - * break -*/ - __pyx_t_1 = (__pyx_v_suboffset >= 0); - if (__pyx_t_1) { - - /* "View.MemoryView":1040 - * for suboffset in result.from_slice.suboffsets[:ndim]: - * if suboffset >= 0: - * result.view.suboffsets = result.from_slice.suboffsets # <<<<<<<<<<<<<< - * break - * -*/ - __pyx_v_result->__pyx_base.view.suboffsets = ((Py_ssize_t *)__pyx_v_result->from_slice.suboffsets); - - /* "View.MemoryView":1041 - * if suboffset >= 0: - * result.view.suboffsets = result.from_slice.suboffsets - * break # <<<<<<<<<<<<<< - * - * result.view.len = result.view.itemsize -*/ - goto __pyx_L6_break; - - /* "View.MemoryView":1039 - * result.view.suboffsets = NULL - * for suboffset in result.from_slice.suboffsets[:ndim]: - * if suboffset >= 0: # <<<<<<<<<<<<<< - * result.view.suboffsets = result.from_slice.suboffsets - * break -*/ - } - } - __pyx_L6_break:; - - /* "View.MemoryView":1043 - * break - * - * result.view.len = result.view.itemsize # <<<<<<<<<<<<<< - * for length in result.view.shape[:ndim]: - * result.view.len *= length -*/ - __pyx_t_9 = __pyx_v_result->__pyx_base.view.itemsize; - __pyx_v_result->__pyx_base.view.len = __pyx_t_9; - - /* "View.MemoryView":1044 - * - * result.view.len = result.view.itemsize - * for length in result.view.shape[:ndim]: # <<<<<<<<<<<<<< - * result.view.len *= length - * -*/ - __pyx_t_7 = (__pyx_v_result->__pyx_base.view.shape + __pyx_v_ndim); - for (__pyx_t_8 = __pyx_v_result->__pyx_base.view.shape; __pyx_t_8 < __pyx_t_7; __pyx_t_8++) { - __pyx_t_6 = __pyx_t_8; - __pyx_t_2 = PyLong_FromSsize_t((__pyx_t_6[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1044, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_XDECREF_SET(__pyx_v_length, __pyx_t_2); - __pyx_t_2 = 0; - - /* "View.MemoryView":1045 - * result.view.len = result.view.itemsize - * for length in result.view.shape[:ndim]: - * result.view.len *= length # <<<<<<<<<<<<<< - * - * result.to_object_func = to_object_func -*/ - __pyx_t_2 = PyLong_FromSsize_t(__pyx_v_result->__pyx_base.view.len); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1045, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = PyNumber_InPlaceMultiply(__pyx_t_2, __pyx_v_length); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1045, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_t_3); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) __PYX_ERR(1, 1045, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_v_result->__pyx_base.view.len = __pyx_t_9; - } - - /* "View.MemoryView":1047 - * result.view.len *= length - * - * result.to_object_func = to_object_func # <<<<<<<<<<<<<< - * result.to_dtype_func = to_dtype_func - * -*/ - __pyx_v_result->to_object_func = __pyx_v_to_object_func; - - /* "View.MemoryView":1048 - * - * result.to_object_func = to_object_func - * result.to_dtype_func = to_dtype_func # <<<<<<<<<<<<<< - * - * return result -*/ - __pyx_v_result->to_dtype_func = __pyx_v_to_dtype_func; - - /* "View.MemoryView":1050 - * result.to_dtype_func = to_dtype_func - * - * return result # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_get_slice_from_memoryview') -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF((PyObject *)__pyx_v_result); - __pyx_r = ((PyObject *)__pyx_v_result); - goto __pyx_L0; - - /* "View.MemoryView":999 - * pass # ignore failure, it's a minor issue - * - * @cname('__pyx_memoryview_fromslice') # <<<<<<<<<<<<<< - * cdef memoryview_fromslice(__Pyx_memviewslice memviewslice, - * int ndim, -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.memoryview_fromslice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_result); - __Pyx_XDECREF(__pyx_v_length); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":1052 - * return result - * - * @cname('__pyx_memoryview_get_slice_from_memoryview') # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *get_slice_from_memview(memoryview memview, - * __Pyx_memviewslice *mslice) except NULL: -*/ - -static __Pyx_memviewslice *__pyx_memoryview_get_slice_from_memoryview(struct __pyx_memoryview_obj *__pyx_v_memview, __Pyx_memviewslice *__pyx_v_mslice) { - struct __pyx_memoryviewslice_obj *__pyx_v_obj = 0; - __Pyx_memviewslice *__pyx_r; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("get_slice_from_memview", 0); - - /* "View.MemoryView":1056 - * __Pyx_memviewslice *mslice) except NULL: - * cdef _memoryviewslice obj - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * obj = memview - * return &obj.from_slice -*/ - __pyx_t_1 = __Pyx_TypeCheck(((PyObject *)__pyx_v_memview), __pyx_mstate_global->__pyx_memoryviewslice_type); - if (__pyx_t_1) { - - /* "View.MemoryView":1057 - * cdef _memoryviewslice obj - * if isinstance(memview, _memoryviewslice): - * obj = memview # <<<<<<<<<<<<<< - * return &obj.from_slice - * else: -*/ - __pyx_t_2 = ((PyObject *)__pyx_v_memview); - __Pyx_INCREF(__pyx_t_2); - if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_mstate_global->__pyx_memoryviewslice_type))))) __PYX_ERR(1, 1057, __pyx_L1_error) - __pyx_v_obj = ((struct __pyx_memoryviewslice_obj *)__pyx_t_2); - __pyx_t_2 = 0; - - /* "View.MemoryView":1058 - * if isinstance(memview, _memoryviewslice): - * obj = memview - * return &obj.from_slice # <<<<<<<<<<<<<< - * else: - * slice_copy(memview, mslice) -*/ - __pyx_r = (&__pyx_v_obj->from_slice); - goto __pyx_L0; - - /* "View.MemoryView":1056 - * __Pyx_memviewslice *mslice) except NULL: - * cdef _memoryviewslice obj - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * obj = memview - * return &obj.from_slice -*/ - } - - /* "View.MemoryView":1060 - * return &obj.from_slice - * else: - * slice_copy(memview, mslice) # <<<<<<<<<<<<<< - * return mslice - * -*/ - /*else*/ { - __pyx_memoryview_slice_copy(__pyx_v_memview, __pyx_v_mslice); - - /* "View.MemoryView":1061 - * else: - * slice_copy(memview, mslice) - * return mslice # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_slice_copy') -*/ - __pyx_r = __pyx_v_mslice; - goto __pyx_L0; - } - - /* "View.MemoryView":1052 - * return result - * - * @cname('__pyx_memoryview_get_slice_from_memoryview') # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice *get_slice_from_memview(memoryview memview, - * __Pyx_memviewslice *mslice) except NULL: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView.get_slice_from_memview", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_obj); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":1063 - * return mslice - * - * @cname('__pyx_memoryview_slice_copy') # <<<<<<<<<<<<<< - * cdef void slice_copy(memoryview memview, __Pyx_memviewslice *dst) noexcept: - * cdef int dim -*/ - -static void __pyx_memoryview_slice_copy(struct __pyx_memoryview_obj *__pyx_v_memview, __Pyx_memviewslice *__pyx_v_dst) { - int __pyx_v_dim; - Py_ssize_t *__pyx_v_shape; - Py_ssize_t *__pyx_v_strides; - Py_ssize_t *__pyx_v_suboffsets; - Py_ssize_t *__pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - Py_ssize_t __pyx_t_5; - int __pyx_t_6; - - /* "View.MemoryView":1068 - * cdef (Py_ssize_t*) shape, strides, suboffsets - * - * shape = memview.view.shape # <<<<<<<<<<<<<< - * strides = memview.view.strides - * suboffsets = memview.view.suboffsets -*/ - __pyx_t_1 = __pyx_v_memview->view.shape; - __pyx_v_shape = __pyx_t_1; - - /* "View.MemoryView":1069 - * - * shape = memview.view.shape - * strides = memview.view.strides # <<<<<<<<<<<<<< - * suboffsets = memview.view.suboffsets - * -*/ - __pyx_t_1 = __pyx_v_memview->view.strides; - __pyx_v_strides = __pyx_t_1; - - /* "View.MemoryView":1070 - * shape = memview.view.shape - * strides = memview.view.strides - * suboffsets = memview.view.suboffsets # <<<<<<<<<<<<<< - * - * dst.memview = <__pyx_memoryview *> memview -*/ - __pyx_t_1 = __pyx_v_memview->view.suboffsets; - __pyx_v_suboffsets = __pyx_t_1; - - /* "View.MemoryView":1072 - * suboffsets = memview.view.suboffsets - * - * dst.memview = <__pyx_memoryview *> memview # <<<<<<<<<<<<<< - * dst.data = memview.view.buf - * -*/ - __pyx_v_dst->memview = ((struct __pyx_memoryview_obj *)__pyx_v_memview); - - /* "View.MemoryView":1073 - * - * dst.memview = <__pyx_memoryview *> memview - * dst.data = memview.view.buf # <<<<<<<<<<<<<< - * - * for dim in range(memview.view.ndim): -*/ - __pyx_v_dst->data = ((char *)__pyx_v_memview->view.buf); - - /* "View.MemoryView":1075 - * dst.data = memview.view.buf - * - * for dim in range(memview.view.ndim): # <<<<<<<<<<<<<< - * dst.shape[dim] = shape[dim] - * dst.strides[dim] = strides[dim] -*/ - __pyx_t_2 = __pyx_v_memview->view.ndim; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_dim = __pyx_t_4; - - /* "View.MemoryView":1076 - * - * for dim in range(memview.view.ndim): - * dst.shape[dim] = shape[dim] # <<<<<<<<<<<<<< - * dst.strides[dim] = strides[dim] - * dst.suboffsets[dim] = suboffsets[dim] if suboffsets else -1 -*/ - (__pyx_v_dst->shape[__pyx_v_dim]) = (__pyx_v_shape[__pyx_v_dim]); - - /* "View.MemoryView":1077 - * for dim in range(memview.view.ndim): - * dst.shape[dim] = shape[dim] - * dst.strides[dim] = strides[dim] # <<<<<<<<<<<<<< - * dst.suboffsets[dim] = suboffsets[dim] if suboffsets else -1 - * -*/ - (__pyx_v_dst->strides[__pyx_v_dim]) = (__pyx_v_strides[__pyx_v_dim]); - - /* "View.MemoryView":1078 - * dst.shape[dim] = shape[dim] - * dst.strides[dim] = strides[dim] - * dst.suboffsets[dim] = suboffsets[dim] if suboffsets else -1 # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_copy_object') -*/ - __pyx_t_6 = (__pyx_v_suboffsets != 0); - if (__pyx_t_6) { - __pyx_t_5 = (__pyx_v_suboffsets[__pyx_v_dim]); - } else { - __pyx_t_5 = -1L; - } - (__pyx_v_dst->suboffsets[__pyx_v_dim]) = __pyx_t_5; - } - - /* "View.MemoryView":1063 - * return mslice - * - * @cname('__pyx_memoryview_slice_copy') # <<<<<<<<<<<<<< - * cdef void slice_copy(memoryview memview, __Pyx_memviewslice *dst) noexcept: - * cdef int dim -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1080 - * dst.suboffsets[dim] = suboffsets[dim] if suboffsets else -1 - * - * @cname('__pyx_memoryview_copy_object') # <<<<<<<<<<<<<< - * cdef memoryview_copy(memoryview memview): - * "Create a new memoryview object" -*/ - -static PyObject *__pyx_memoryview_copy_object(struct __pyx_memoryview_obj *__pyx_v_memview) { - __Pyx_memviewslice __pyx_v_memviewslice; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("memoryview_copy", 0); - - /* "View.MemoryView":1084 - * "Create a new memoryview object" - * cdef __Pyx_memviewslice memviewslice - * slice_copy(memview, &memviewslice) # <<<<<<<<<<<<<< - * return memoryview_copy_from_slice(memview, &memviewslice) - * -*/ - __pyx_memoryview_slice_copy(__pyx_v_memview, (&__pyx_v_memviewslice)); - - /* "View.MemoryView":1085 - * cdef __Pyx_memviewslice memviewslice - * slice_copy(memview, &memviewslice) - * return memoryview_copy_from_slice(memview, &memviewslice) # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_copy_object_from_slice') -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __pyx_memoryview_copy_object_from_slice(__pyx_v_memview, (&__pyx_v_memviewslice)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1085, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* "View.MemoryView":1080 - * dst.suboffsets[dim] = suboffsets[dim] if suboffsets else -1 - * - * @cname('__pyx_memoryview_copy_object') # <<<<<<<<<<<<<< - * cdef memoryview_copy(memoryview memview): - * "Create a new memoryview object" -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.memoryview_copy", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":1087 - * return memoryview_copy_from_slice(memview, &memviewslice) - * - * @cname('__pyx_memoryview_copy_object_from_slice') # <<<<<<<<<<<<<< - * cdef memoryview_copy_from_slice(memoryview memview, __Pyx_memviewslice *memviewslice): - * """ -*/ - -static PyObject *__pyx_memoryview_copy_object_from_slice(struct __pyx_memoryview_obj *__pyx_v_memview, __Pyx_memviewslice *__pyx_v_memviewslice) { - PyObject *(*__pyx_v_to_object_func)(char *); - int (*__pyx_v_to_dtype_func)(char *, PyObject *); - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *(*__pyx_t_2)(char *); - int (*__pyx_t_3)(char *, PyObject *); - PyObject *__pyx_t_4 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("memoryview_copy_from_slice", 0); - - /* "View.MemoryView":1095 - * cdef int (*to_dtype_func)(char *, object) except 0 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * to_object_func = (<_memoryviewslice> memview).to_object_func - * to_dtype_func = (<_memoryviewslice> memview).to_dtype_func -*/ - __pyx_t_1 = __Pyx_TypeCheck(((PyObject *)__pyx_v_memview), __pyx_mstate_global->__pyx_memoryviewslice_type); - if (__pyx_t_1) { - - /* "View.MemoryView":1096 - * - * if isinstance(memview, _memoryviewslice): - * to_object_func = (<_memoryviewslice> memview).to_object_func # <<<<<<<<<<<<<< - * to_dtype_func = (<_memoryviewslice> memview).to_dtype_func - * else: -*/ - __pyx_t_2 = ((struct __pyx_memoryviewslice_obj *)__pyx_v_memview)->to_object_func; - __pyx_v_to_object_func = __pyx_t_2; - - /* "View.MemoryView":1097 - * if isinstance(memview, _memoryviewslice): - * to_object_func = (<_memoryviewslice> memview).to_object_func - * to_dtype_func = (<_memoryviewslice> memview).to_dtype_func # <<<<<<<<<<<<<< - * else: - * to_object_func = NULL -*/ - __pyx_t_3 = ((struct __pyx_memoryviewslice_obj *)__pyx_v_memview)->to_dtype_func; - __pyx_v_to_dtype_func = __pyx_t_3; - - /* "View.MemoryView":1095 - * cdef int (*to_dtype_func)(char *, object) except 0 - * - * if isinstance(memview, _memoryviewslice): # <<<<<<<<<<<<<< - * to_object_func = (<_memoryviewslice> memview).to_object_func - * to_dtype_func = (<_memoryviewslice> memview).to_dtype_func -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":1099 - * to_dtype_func = (<_memoryviewslice> memview).to_dtype_func - * else: - * to_object_func = NULL # <<<<<<<<<<<<<< - * to_dtype_func = NULL - * -*/ - /*else*/ { - __pyx_v_to_object_func = NULL; - - /* "View.MemoryView":1100 - * else: - * to_object_func = NULL - * to_dtype_func = NULL # <<<<<<<<<<<<<< - * - * return memoryview_fromslice(memviewslice[0], memview.view.ndim, -*/ - __pyx_v_to_dtype_func = NULL; - } - __pyx_L3:; - - /* "View.MemoryView":1102 - * to_dtype_func = NULL - * - * return memoryview_fromslice(memviewslice[0], memview.view.ndim, # <<<<<<<<<<<<<< - * to_object_func, to_dtype_func, - * memview.dtype_is_object) -*/ - __Pyx_XDECREF(__pyx_r); - - /* "View.MemoryView":1104 - * return memoryview_fromslice(memviewslice[0], memview.view.ndim, - * to_object_func, to_dtype_func, - * memview.dtype_is_object) # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_4 = __pyx_memoryview_fromslice((__pyx_v_memviewslice[0]), __pyx_v_memview->view.ndim, __pyx_v_to_object_func, __pyx_v_to_dtype_func, __pyx_v_memview->dtype_is_object); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 1102, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_r = __pyx_t_4; - __pyx_t_4 = 0; - goto __pyx_L0; - - /* "View.MemoryView":1087 - * return memoryview_copy_from_slice(memview, &memviewslice) - * - * @cname('__pyx_memoryview_copy_object_from_slice') # <<<<<<<<<<<<<< - * cdef memoryview_copy_from_slice(memoryview memview, __Pyx_memviewslice *memviewslice): - * """ -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("View.MemoryView.memoryview_copy_from_slice", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "View.MemoryView":1110 - * - * - * cdef Py_ssize_t abs_py_ssize_t(Py_ssize_t arg) noexcept nogil: # <<<<<<<<<<<<<< - * return -arg if arg < 0 else arg - * -*/ - -static Py_ssize_t abs_py_ssize_t(Py_ssize_t __pyx_v_arg) { - Py_ssize_t __pyx_r; - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - - /* "View.MemoryView":1111 - * - * cdef Py_ssize_t abs_py_ssize_t(Py_ssize_t arg) noexcept nogil: - * return -arg if arg < 0 else arg # <<<<<<<<<<<<<< - * - * @cname('__pyx_get_best_slice_order') -*/ - __pyx_t_2 = (__pyx_v_arg < 0); - if (__pyx_t_2) { - __pyx_t_1 = (-__pyx_v_arg); - } else { - __pyx_t_1 = __pyx_v_arg; - } - __pyx_r = __pyx_t_1; - goto __pyx_L0; - - /* "View.MemoryView":1110 - * - * - * cdef Py_ssize_t abs_py_ssize_t(Py_ssize_t arg) noexcept nogil: # <<<<<<<<<<<<<< - * return -arg if arg < 0 else arg - * -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1113 - * return -arg if arg < 0 else arg - * - * @cname('__pyx_get_best_slice_order') # <<<<<<<<<<<<<< - * cdef char get_best_order(__Pyx_memviewslice *mslice, int ndim) noexcept nogil: - * """ -*/ - -static char __pyx_get_best_slice_order(__Pyx_memviewslice *__pyx_v_mslice, int __pyx_v_ndim) { - int __pyx_v_i; - Py_ssize_t __pyx_v_c_stride; - Py_ssize_t __pyx_v_f_stride; - char __pyx_r; - int __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - - /* "View.MemoryView":1119 - * """ - * cdef int i - * cdef Py_ssize_t c_stride = 0 # <<<<<<<<<<<<<< - * cdef Py_ssize_t f_stride = 0 - * -*/ - __pyx_v_c_stride = 0; - - /* "View.MemoryView":1120 - * cdef int i - * cdef Py_ssize_t c_stride = 0 - * cdef Py_ssize_t f_stride = 0 # <<<<<<<<<<<<<< - * - * for i in range(ndim - 1, -1, -1): -*/ - __pyx_v_f_stride = 0; - - /* "View.MemoryView":1122 - * cdef Py_ssize_t f_stride = 0 - * - * for i in range(ndim - 1, -1, -1): # <<<<<<<<<<<<<< - * if mslice.shape[i] > 1: - * c_stride = mslice.strides[i] -*/ - for (__pyx_t_1 = (__pyx_v_ndim - 1); __pyx_t_1 > -1; __pyx_t_1-=1) { - __pyx_v_i = __pyx_t_1; - - /* "View.MemoryView":1123 - * - * for i in range(ndim - 1, -1, -1): - * if mslice.shape[i] > 1: # <<<<<<<<<<<<<< - * c_stride = mslice.strides[i] - * break -*/ - __pyx_t_2 = ((__pyx_v_mslice->shape[__pyx_v_i]) > 1); - if (__pyx_t_2) { - - /* "View.MemoryView":1124 - * for i in range(ndim - 1, -1, -1): - * if mslice.shape[i] > 1: - * c_stride = mslice.strides[i] # <<<<<<<<<<<<<< - * break - * -*/ - __pyx_v_c_stride = (__pyx_v_mslice->strides[__pyx_v_i]); - - /* "View.MemoryView":1125 - * if mslice.shape[i] > 1: - * c_stride = mslice.strides[i] - * break # <<<<<<<<<<<<<< - * - * for i in range(ndim): -*/ - goto __pyx_L4_break; - - /* "View.MemoryView":1123 - * - * for i in range(ndim - 1, -1, -1): - * if mslice.shape[i] > 1: # <<<<<<<<<<<<<< - * c_stride = mslice.strides[i] - * break -*/ - } - } - __pyx_L4_break:; - - /* "View.MemoryView":1127 - * break - * - * for i in range(ndim): # <<<<<<<<<<<<<< - * if mslice.shape[i] > 1: - * f_stride = mslice.strides[i] -*/ - __pyx_t_1 = __pyx_v_ndim; - __pyx_t_3 = __pyx_t_1; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":1128 - * - * for i in range(ndim): - * if mslice.shape[i] > 1: # <<<<<<<<<<<<<< - * f_stride = mslice.strides[i] - * break -*/ - __pyx_t_2 = ((__pyx_v_mslice->shape[__pyx_v_i]) > 1); - if (__pyx_t_2) { - - /* "View.MemoryView":1129 - * for i in range(ndim): - * if mslice.shape[i] > 1: - * f_stride = mslice.strides[i] # <<<<<<<<<<<<<< - * break - * -*/ - __pyx_v_f_stride = (__pyx_v_mslice->strides[__pyx_v_i]); - - /* "View.MemoryView":1130 - * if mslice.shape[i] > 1: - * f_stride = mslice.strides[i] - * break # <<<<<<<<<<<<<< - * - * if abs_py_ssize_t(c_stride) <= abs_py_ssize_t(f_stride): -*/ - goto __pyx_L7_break; - - /* "View.MemoryView":1128 - * - * for i in range(ndim): - * if mslice.shape[i] > 1: # <<<<<<<<<<<<<< - * f_stride = mslice.strides[i] - * break -*/ - } - } - __pyx_L7_break:; - - /* "View.MemoryView":1132 - * break - * - * if abs_py_ssize_t(c_stride) <= abs_py_ssize_t(f_stride): # <<<<<<<<<<<<<< - * return 'C' - * else: -*/ - __pyx_t_2 = (abs_py_ssize_t(__pyx_v_c_stride) <= abs_py_ssize_t(__pyx_v_f_stride)); - if (__pyx_t_2) { - - /* "View.MemoryView":1133 - * - * if abs_py_ssize_t(c_stride) <= abs_py_ssize_t(f_stride): - * return 'C' # <<<<<<<<<<<<<< - * else: - * return 'F' -*/ - __pyx_r = 'C'; - goto __pyx_L0; - - /* "View.MemoryView":1132 - * break - * - * if abs_py_ssize_t(c_stride) <= abs_py_ssize_t(f_stride): # <<<<<<<<<<<<<< - * return 'C' - * else: -*/ - } - - /* "View.MemoryView":1135 - * return 'C' - * else: - * return 'F' # <<<<<<<<<<<<<< - * - * @cython.cdivision(True) -*/ - /*else*/ { - __pyx_r = 'F'; - goto __pyx_L0; - } - - /* "View.MemoryView":1113 - * return -arg if arg < 0 else arg - * - * @cname('__pyx_get_best_slice_order') # <<<<<<<<<<<<<< - * cdef char get_best_order(__Pyx_memviewslice *mslice, int ndim) noexcept nogil: - * """ -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1137 - * return 'F' - * - * @cython.cdivision(True) # <<<<<<<<<<<<<< - * cdef void _copy_strided_to_strided(char *src_data, Py_ssize_t *src_strides, - * char *dst_data, Py_ssize_t *dst_strides, -*/ - -static void _copy_strided_to_strided(char *__pyx_v_src_data, Py_ssize_t *__pyx_v_src_strides, char *__pyx_v_dst_data, Py_ssize_t *__pyx_v_dst_strides, Py_ssize_t *__pyx_v_src_shape, Py_ssize_t *__pyx_v_dst_shape, int __pyx_v_ndim, size_t __pyx_v_itemsize) { - CYTHON_UNUSED Py_ssize_t __pyx_v_i; - CYTHON_UNUSED Py_ssize_t __pyx_v_src_extent; - Py_ssize_t __pyx_v_dst_extent; - Py_ssize_t __pyx_v_src_stride; - Py_ssize_t __pyx_v_dst_stride; - int __pyx_t_1; - int __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - - /* "View.MemoryView":1145 - * - * cdef Py_ssize_t i - * cdef Py_ssize_t src_extent = src_shape[0] # <<<<<<<<<<<<<< - * cdef Py_ssize_t dst_extent = dst_shape[0] - * cdef Py_ssize_t src_stride = src_strides[0] -*/ - __pyx_v_src_extent = (__pyx_v_src_shape[0]); - - /* "View.MemoryView":1146 - * cdef Py_ssize_t i - * cdef Py_ssize_t src_extent = src_shape[0] - * cdef Py_ssize_t dst_extent = dst_shape[0] # <<<<<<<<<<<<<< - * cdef Py_ssize_t src_stride = src_strides[0] - * cdef Py_ssize_t dst_stride = dst_strides[0] -*/ - __pyx_v_dst_extent = (__pyx_v_dst_shape[0]); - - /* "View.MemoryView":1147 - * cdef Py_ssize_t src_extent = src_shape[0] - * cdef Py_ssize_t dst_extent = dst_shape[0] - * cdef Py_ssize_t src_stride = src_strides[0] # <<<<<<<<<<<<<< - * cdef Py_ssize_t dst_stride = dst_strides[0] - * -*/ - __pyx_v_src_stride = (__pyx_v_src_strides[0]); - - /* "View.MemoryView":1148 - * cdef Py_ssize_t dst_extent = dst_shape[0] - * cdef Py_ssize_t src_stride = src_strides[0] - * cdef Py_ssize_t dst_stride = dst_strides[0] # <<<<<<<<<<<<<< - * - * if ndim == 1: -*/ - __pyx_v_dst_stride = (__pyx_v_dst_strides[0]); - - /* "View.MemoryView":1150 - * cdef Py_ssize_t dst_stride = dst_strides[0] - * - * if ndim == 1: # <<<<<<<<<<<<<< - * if (src_stride > 0 and dst_stride > 0 and - * src_stride == itemsize == dst_stride): -*/ - __pyx_t_1 = (__pyx_v_ndim == 1); - if (__pyx_t_1) { - - /* "View.MemoryView":1151 - * - * if ndim == 1: - * if (src_stride > 0 and dst_stride > 0 and # <<<<<<<<<<<<<< - * src_stride == itemsize == dst_stride): - * memcpy(dst_data, src_data, itemsize * dst_extent) -*/ - __pyx_t_2 = (__pyx_v_src_stride > 0); - if (__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L5_bool_binop_done; - } - __pyx_t_2 = (__pyx_v_dst_stride > 0); - if (__pyx_t_2) { - } else { - __pyx_t_1 = __pyx_t_2; - goto __pyx_L5_bool_binop_done; - } - - /* "View.MemoryView":1152 - * if ndim == 1: - * if (src_stride > 0 and dst_stride > 0 and - * src_stride == itemsize == dst_stride): # <<<<<<<<<<<<<< - * memcpy(dst_data, src_data, itemsize * dst_extent) - * else: -*/ - __pyx_t_2 = (((size_t)__pyx_v_src_stride) == __pyx_v_itemsize); - if (__pyx_t_2) { - __pyx_t_2 = (__pyx_v_itemsize == ((size_t)__pyx_v_dst_stride)); - } - __pyx_t_1 = __pyx_t_2; - __pyx_L5_bool_binop_done:; - - /* "View.MemoryView":1151 - * - * if ndim == 1: - * if (src_stride > 0 and dst_stride > 0 and # <<<<<<<<<<<<<< - * src_stride == itemsize == dst_stride): - * memcpy(dst_data, src_data, itemsize * dst_extent) -*/ - if (__pyx_t_1) { - - /* "View.MemoryView":1153 - * if (src_stride > 0 and dst_stride > 0 and - * src_stride == itemsize == dst_stride): - * memcpy(dst_data, src_data, itemsize * dst_extent) # <<<<<<<<<<<<<< - * else: - * for i in range(dst_extent): -*/ - (void)(memcpy(__pyx_v_dst_data, __pyx_v_src_data, (__pyx_v_itemsize * __pyx_v_dst_extent))); - - /* "View.MemoryView":1151 - * - * if ndim == 1: - * if (src_stride > 0 and dst_stride > 0 and # <<<<<<<<<<<<<< - * src_stride == itemsize == dst_stride): - * memcpy(dst_data, src_data, itemsize * dst_extent) -*/ - goto __pyx_L4; - } - - /* "View.MemoryView":1155 - * memcpy(dst_data, src_data, itemsize * dst_extent) - * else: - * for i in range(dst_extent): # <<<<<<<<<<<<<< - * memcpy(dst_data, src_data, itemsize) - * src_data += src_stride -*/ - /*else*/ { - __pyx_t_3 = __pyx_v_dst_extent; - __pyx_t_4 = __pyx_t_3; - for (__pyx_t_5 = 0; __pyx_t_5 < __pyx_t_4; __pyx_t_5+=1) { - __pyx_v_i = __pyx_t_5; - - /* "View.MemoryView":1156 - * else: - * for i in range(dst_extent): - * memcpy(dst_data, src_data, itemsize) # <<<<<<<<<<<<<< - * src_data += src_stride - * dst_data += dst_stride -*/ - (void)(memcpy(__pyx_v_dst_data, __pyx_v_src_data, __pyx_v_itemsize)); - - /* "View.MemoryView":1157 - * for i in range(dst_extent): - * memcpy(dst_data, src_data, itemsize) - * src_data += src_stride # <<<<<<<<<<<<<< - * dst_data += dst_stride - * else: -*/ - __pyx_v_src_data = (__pyx_v_src_data + __pyx_v_src_stride); - - /* "View.MemoryView":1158 - * memcpy(dst_data, src_data, itemsize) - * src_data += src_stride - * dst_data += dst_stride # <<<<<<<<<<<<<< - * else: - * for i in range(dst_extent): -*/ - __pyx_v_dst_data = (__pyx_v_dst_data + __pyx_v_dst_stride); - } - } - __pyx_L4:; - - /* "View.MemoryView":1150 - * cdef Py_ssize_t dst_stride = dst_strides[0] - * - * if ndim == 1: # <<<<<<<<<<<<<< - * if (src_stride > 0 and dst_stride > 0 and - * src_stride == itemsize == dst_stride): -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":1160 - * dst_data += dst_stride - * else: - * for i in range(dst_extent): # <<<<<<<<<<<<<< - * _copy_strided_to_strided(src_data, src_strides + 1, - * dst_data, dst_strides + 1, -*/ - /*else*/ { - __pyx_t_3 = __pyx_v_dst_extent; - __pyx_t_4 = __pyx_t_3; - for (__pyx_t_5 = 0; __pyx_t_5 < __pyx_t_4; __pyx_t_5+=1) { - __pyx_v_i = __pyx_t_5; - - /* "View.MemoryView":1161 - * else: - * for i in range(dst_extent): - * _copy_strided_to_strided(src_data, src_strides + 1, # <<<<<<<<<<<<<< - * dst_data, dst_strides + 1, - * src_shape + 1, dst_shape + 1, -*/ - _copy_strided_to_strided(__pyx_v_src_data, (__pyx_v_src_strides + 1), __pyx_v_dst_data, (__pyx_v_dst_strides + 1), (__pyx_v_src_shape + 1), (__pyx_v_dst_shape + 1), (__pyx_v_ndim - 1), __pyx_v_itemsize); - - /* "View.MemoryView":1165 - * src_shape + 1, dst_shape + 1, - * ndim - 1, itemsize) - * src_data += src_stride # <<<<<<<<<<<<<< - * dst_data += dst_stride - * -*/ - __pyx_v_src_data = (__pyx_v_src_data + __pyx_v_src_stride); - - /* "View.MemoryView":1166 - * ndim - 1, itemsize) - * src_data += src_stride - * dst_data += dst_stride # <<<<<<<<<<<<<< - * - * cdef void copy_strided_to_strided(__Pyx_memviewslice *src, -*/ - __pyx_v_dst_data = (__pyx_v_dst_data + __pyx_v_dst_stride); - } - } - __pyx_L3:; - - /* "View.MemoryView":1137 - * return 'F' - * - * @cython.cdivision(True) # <<<<<<<<<<<<<< - * cdef void _copy_strided_to_strided(char *src_data, Py_ssize_t *src_strides, - * char *dst_data, Py_ssize_t *dst_strides, -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1168 - * dst_data += dst_stride - * - * cdef void copy_strided_to_strided(__Pyx_memviewslice *src, # <<<<<<<<<<<<<< - * __Pyx_memviewslice *dst, - * int ndim, size_t itemsize) noexcept nogil: -*/ - -static void copy_strided_to_strided(__Pyx_memviewslice *__pyx_v_src, __Pyx_memviewslice *__pyx_v_dst, int __pyx_v_ndim, size_t __pyx_v_itemsize) { - - /* "View.MemoryView":1171 - * __Pyx_memviewslice *dst, - * int ndim, size_t itemsize) noexcept nogil: - * _copy_strided_to_strided(src.data, src.strides, dst.data, dst.strides, # <<<<<<<<<<<<<< - * src.shape, dst.shape, ndim, itemsize) - * -*/ - _copy_strided_to_strided(__pyx_v_src->data, __pyx_v_src->strides, __pyx_v_dst->data, __pyx_v_dst->strides, __pyx_v_src->shape, __pyx_v_dst->shape, __pyx_v_ndim, __pyx_v_itemsize); - - /* "View.MemoryView":1168 - * dst_data += dst_stride - * - * cdef void copy_strided_to_strided(__Pyx_memviewslice *src, # <<<<<<<<<<<<<< - * __Pyx_memviewslice *dst, - * int ndim, size_t itemsize) noexcept nogil: -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1174 - * src.shape, dst.shape, ndim, itemsize) - * - * @cname('__pyx_memoryview_slice_get_size') # <<<<<<<<<<<<<< - * cdef Py_ssize_t slice_get_size(__Pyx_memviewslice *src, int ndim) noexcept nogil: - * "Return the size of the memory occupied by the slice in number of bytes" -*/ - -static Py_ssize_t __pyx_memoryview_slice_get_size(__Pyx_memviewslice *__pyx_v_src, int __pyx_v_ndim) { - Py_ssize_t __pyx_v_shape; - Py_ssize_t __pyx_v_size; - Py_ssize_t __pyx_r; - Py_ssize_t __pyx_t_1; - Py_ssize_t *__pyx_t_2; - Py_ssize_t *__pyx_t_3; - Py_ssize_t *__pyx_t_4; - - /* "View.MemoryView":1177 - * cdef Py_ssize_t slice_get_size(__Pyx_memviewslice *src, int ndim) noexcept nogil: - * "Return the size of the memory occupied by the slice in number of bytes" - * cdef Py_ssize_t shape, size = src.memview.view.itemsize # <<<<<<<<<<<<<< - * - * for shape in src.shape[:ndim]: -*/ - __pyx_t_1 = __pyx_v_src->memview->view.itemsize; - __pyx_v_size = __pyx_t_1; - - /* "View.MemoryView":1179 - * cdef Py_ssize_t shape, size = src.memview.view.itemsize - * - * for shape in src.shape[:ndim]: # <<<<<<<<<<<<<< - * size *= shape - * -*/ - __pyx_t_3 = (__pyx_v_src->shape + __pyx_v_ndim); - for (__pyx_t_4 = __pyx_v_src->shape; __pyx_t_4 < __pyx_t_3; __pyx_t_4++) { - __pyx_t_2 = __pyx_t_4; - __pyx_v_shape = (__pyx_t_2[0]); - - /* "View.MemoryView":1180 - * - * for shape in src.shape[:ndim]: - * size *= shape # <<<<<<<<<<<<<< - * - * return size -*/ - __pyx_v_size = (__pyx_v_size * __pyx_v_shape); - } - - /* "View.MemoryView":1182 - * size *= shape - * - * return size # <<<<<<<<<<<<<< - * - * @cname('__pyx_fill_contig_strides_array') -*/ - __pyx_r = __pyx_v_size; - goto __pyx_L0; - - /* "View.MemoryView":1174 - * src.shape, dst.shape, ndim, itemsize) - * - * @cname('__pyx_memoryview_slice_get_size') # <<<<<<<<<<<<<< - * cdef Py_ssize_t slice_get_size(__Pyx_memviewslice *src, int ndim) noexcept nogil: - * "Return the size of the memory occupied by the slice in number of bytes" -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1184 - * return size - * - * @cname('__pyx_fill_contig_strides_array') # <<<<<<<<<<<<<< - * cdef Py_ssize_t fill_contig_strides_array( - * Py_ssize_t *shape, Py_ssize_t *strides, Py_ssize_t stride, -*/ - -static Py_ssize_t __pyx_fill_contig_strides_array(Py_ssize_t *__pyx_v_shape, Py_ssize_t *__pyx_v_strides, Py_ssize_t __pyx_v_stride, int __pyx_v_ndim, char __pyx_v_order) { - int __pyx_v_idx; - Py_ssize_t __pyx_r; - int __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - - /* "View.MemoryView":1194 - * cdef int idx - * - * if order == 'F': # <<<<<<<<<<<<<< - * for idx in range(ndim): - * strides[idx] = stride -*/ - __pyx_t_1 = (__pyx_v_order == 'F'); - if (__pyx_t_1) { - - /* "View.MemoryView":1195 - * - * if order == 'F': - * for idx in range(ndim): # <<<<<<<<<<<<<< - * strides[idx] = stride - * stride *= shape[idx] -*/ - __pyx_t_2 = __pyx_v_ndim; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_idx = __pyx_t_4; - - /* "View.MemoryView":1196 - * if order == 'F': - * for idx in range(ndim): - * strides[idx] = stride # <<<<<<<<<<<<<< - * stride *= shape[idx] - * else: -*/ - (__pyx_v_strides[__pyx_v_idx]) = __pyx_v_stride; - - /* "View.MemoryView":1197 - * for idx in range(ndim): - * strides[idx] = stride - * stride *= shape[idx] # <<<<<<<<<<<<<< - * else: - * for idx in range(ndim - 1, -1, -1): -*/ - __pyx_v_stride = (__pyx_v_stride * (__pyx_v_shape[__pyx_v_idx])); - } - - /* "View.MemoryView":1194 - * cdef int idx - * - * if order == 'F': # <<<<<<<<<<<<<< - * for idx in range(ndim): - * strides[idx] = stride -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":1199 - * stride *= shape[idx] - * else: - * for idx in range(ndim - 1, -1, -1): # <<<<<<<<<<<<<< - * strides[idx] = stride - * stride *= shape[idx] -*/ - /*else*/ { - for (__pyx_t_2 = (__pyx_v_ndim - 1); __pyx_t_2 > -1; __pyx_t_2-=1) { - __pyx_v_idx = __pyx_t_2; - - /* "View.MemoryView":1200 - * else: - * for idx in range(ndim - 1, -1, -1): - * strides[idx] = stride # <<<<<<<<<<<<<< - * stride *= shape[idx] - * -*/ - (__pyx_v_strides[__pyx_v_idx]) = __pyx_v_stride; - - /* "View.MemoryView":1201 - * for idx in range(ndim - 1, -1, -1): - * strides[idx] = stride - * stride *= shape[idx] # <<<<<<<<<<<<<< - * - * return stride -*/ - __pyx_v_stride = (__pyx_v_stride * (__pyx_v_shape[__pyx_v_idx])); - } - } - __pyx_L3:; - - /* "View.MemoryView":1203 - * stride *= shape[idx] - * - * return stride # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_copy_data_to_temp') -*/ - __pyx_r = __pyx_v_stride; - goto __pyx_L0; - - /* "View.MemoryView":1184 - * return size - * - * @cname('__pyx_fill_contig_strides_array') # <<<<<<<<<<<<<< - * cdef Py_ssize_t fill_contig_strides_array( - * Py_ssize_t *shape, Py_ssize_t *strides, Py_ssize_t stride, -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1205 - * return stride - * - * @cname('__pyx_memoryview_copy_data_to_temp') # <<<<<<<<<<<<<< - * cdef void *copy_data_to_temp(__Pyx_memviewslice *src, - * __Pyx_memviewslice *tmpslice, -*/ - -static void *__pyx_memoryview_copy_data_to_temp(__Pyx_memviewslice *__pyx_v_src, __Pyx_memviewslice *__pyx_v_tmpslice, char __pyx_v_order, int __pyx_v_ndim) { - int __pyx_v_i; - void *__pyx_v_result; - size_t __pyx_v_itemsize; - size_t __pyx_v_size; - void *__pyx_r; - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - struct __pyx_memoryview_obj *__pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - - /* "View.MemoryView":1217 - * cdef void *result - * - * cdef size_t itemsize = src.memview.view.itemsize # <<<<<<<<<<<<<< - * cdef size_t size = slice_get_size(src, ndim) - * -*/ - __pyx_t_1 = __pyx_v_src->memview->view.itemsize; - __pyx_v_itemsize = __pyx_t_1; - - /* "View.MemoryView":1218 - * - * cdef size_t itemsize = src.memview.view.itemsize - * cdef size_t size = slice_get_size(src, ndim) # <<<<<<<<<<<<<< - * - * result = malloc(size) -*/ - __pyx_v_size = __pyx_memoryview_slice_get_size(__pyx_v_src, __pyx_v_ndim); - - /* "View.MemoryView":1220 - * cdef size_t size = slice_get_size(src, ndim) - * - * result = malloc(size) # <<<<<<<<<<<<<< - * if not result: - * _err_no_memory() -*/ - __pyx_v_result = malloc(__pyx_v_size); - - /* "View.MemoryView":1221 - * - * result = malloc(size) - * if not result: # <<<<<<<<<<<<<< - * _err_no_memory() - * -*/ - __pyx_t_2 = (!(__pyx_v_result != 0)); - if (__pyx_t_2) { - - /* "View.MemoryView":1222 - * result = malloc(size) - * if not result: - * _err_no_memory() # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_3 = __pyx_memoryview_err_no_memory(); if (unlikely(__pyx_t_3 == ((int)-1))) __PYX_ERR(1, 1222, __pyx_L1_error) - - /* "View.MemoryView":1221 - * - * result = malloc(size) - * if not result: # <<<<<<<<<<<<<< - * _err_no_memory() - * -*/ - } - - /* "View.MemoryView":1225 - * - * - * tmpslice.data = result # <<<<<<<<<<<<<< - * tmpslice.memview = src.memview - * for i in range(ndim): -*/ - __pyx_v_tmpslice->data = ((char *)__pyx_v_result); - - /* "View.MemoryView":1226 - * - * tmpslice.data = result - * tmpslice.memview = src.memview # <<<<<<<<<<<<<< - * for i in range(ndim): - * tmpslice.shape[i] = src.shape[i] -*/ - __pyx_t_4 = __pyx_v_src->memview; - __pyx_v_tmpslice->memview = __pyx_t_4; - - /* "View.MemoryView":1227 - * tmpslice.data = result - * tmpslice.memview = src.memview - * for i in range(ndim): # <<<<<<<<<<<<<< - * tmpslice.shape[i] = src.shape[i] - * tmpslice.suboffsets[i] = -1 -*/ - __pyx_t_3 = __pyx_v_ndim; - __pyx_t_5 = __pyx_t_3; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_i = __pyx_t_6; - - /* "View.MemoryView":1228 - * tmpslice.memview = src.memview - * for i in range(ndim): - * tmpslice.shape[i] = src.shape[i] # <<<<<<<<<<<<<< - * tmpslice.suboffsets[i] = -1 - * -*/ - (__pyx_v_tmpslice->shape[__pyx_v_i]) = (__pyx_v_src->shape[__pyx_v_i]); - - /* "View.MemoryView":1229 - * for i in range(ndim): - * tmpslice.shape[i] = src.shape[i] - * tmpslice.suboffsets[i] = -1 # <<<<<<<<<<<<<< - * - * fill_contig_strides_array(&tmpslice.shape[0], &tmpslice.strides[0], itemsize, ndim, order) -*/ - (__pyx_v_tmpslice->suboffsets[__pyx_v_i]) = -1L; - } - - /* "View.MemoryView":1231 - * tmpslice.suboffsets[i] = -1 - * - * fill_contig_strides_array(&tmpslice.shape[0], &tmpslice.strides[0], itemsize, ndim, order) # <<<<<<<<<<<<<< - * - * -*/ - (void)(__pyx_fill_contig_strides_array((&(__pyx_v_tmpslice->shape[0])), (&(__pyx_v_tmpslice->strides[0])), __pyx_v_itemsize, __pyx_v_ndim, __pyx_v_order)); - - /* "View.MemoryView":1234 - * - * - * for i in range(ndim): # <<<<<<<<<<<<<< - * if tmpslice.shape[i] == 1: - * tmpslice.strides[i] = 0 -*/ - __pyx_t_3 = __pyx_v_ndim; - __pyx_t_5 = __pyx_t_3; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_i = __pyx_t_6; - - /* "View.MemoryView":1235 - * - * for i in range(ndim): - * if tmpslice.shape[i] == 1: # <<<<<<<<<<<<<< - * tmpslice.strides[i] = 0 - * -*/ - __pyx_t_2 = ((__pyx_v_tmpslice->shape[__pyx_v_i]) == 1); - if (__pyx_t_2) { - - /* "View.MemoryView":1236 - * for i in range(ndim): - * if tmpslice.shape[i] == 1: - * tmpslice.strides[i] = 0 # <<<<<<<<<<<<<< - * - * if slice_is_contig(src[0], order, ndim): -*/ - (__pyx_v_tmpslice->strides[__pyx_v_i]) = 0; - - /* "View.MemoryView":1235 - * - * for i in range(ndim): - * if tmpslice.shape[i] == 1: # <<<<<<<<<<<<<< - * tmpslice.strides[i] = 0 - * -*/ - } - } - - /* "View.MemoryView":1238 - * tmpslice.strides[i] = 0 - * - * if slice_is_contig(src[0], order, ndim): # <<<<<<<<<<<<<< - * memcpy(result, src.data, size) - * else: -*/ - __pyx_t_2 = __pyx_memviewslice_is_contig((__pyx_v_src[0]), __pyx_v_order, __pyx_v_ndim); - if (__pyx_t_2) { - - /* "View.MemoryView":1239 - * - * if slice_is_contig(src[0], order, ndim): - * memcpy(result, src.data, size) # <<<<<<<<<<<<<< - * else: - * copy_strided_to_strided(src, tmpslice, ndim, itemsize) -*/ - (void)(memcpy(__pyx_v_result, __pyx_v_src->data, __pyx_v_size)); - - /* "View.MemoryView":1238 - * tmpslice.strides[i] = 0 - * - * if slice_is_contig(src[0], order, ndim): # <<<<<<<<<<<<<< - * memcpy(result, src.data, size) - * else: -*/ - goto __pyx_L9; - } - - /* "View.MemoryView":1241 - * memcpy(result, src.data, size) - * else: - * copy_strided_to_strided(src, tmpslice, ndim, itemsize) # <<<<<<<<<<<<<< - * - * return result -*/ - /*else*/ { - copy_strided_to_strided(__pyx_v_src, __pyx_v_tmpslice, __pyx_v_ndim, __pyx_v_itemsize); - } - __pyx_L9:; - - /* "View.MemoryView":1243 - * copy_strided_to_strided(src, tmpslice, ndim, itemsize) - * - * return result # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_result; - goto __pyx_L0; - - /* "View.MemoryView":1205 - * return stride - * - * @cname('__pyx_memoryview_copy_data_to_temp') # <<<<<<<<<<<<<< - * cdef void *copy_data_to_temp(__Pyx_memviewslice *src, - * __Pyx_memviewslice *tmpslice, -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_AddTraceback("View.MemoryView.copy_data_to_temp", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __Pyx_PyGILState_Release(__pyx_gilstate_save); - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1247 - * - * - * @cname('__pyx_memoryview_err_extents') # <<<<<<<<<<<<<< - * cdef int _err_extents(int i, Py_ssize_t extent1, - * Py_ssize_t extent2) except -1 with gil: -*/ - -static int __pyx_memoryview_err_extents(int __pyx_v_i, Py_ssize_t __pyx_v_extent1, Py_ssize_t __pyx_v_extent2) { - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4[7]; - PyObject *__pyx_t_5 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_RefNannySetupContext("_err_extents", 0); - - /* "View.MemoryView":1250 - * cdef int _err_extents(int i, Py_ssize_t extent1, - * Py_ssize_t extent2) except -1 with gil: - * raise ValueError, f"got differing extents in dimension {i} (got {extent1} and {extent2})" # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_err_dim') -*/ - __pyx_t_1 = __Pyx_PyUnicode_From_int(__pyx_v_i, 0, ' ', 'd'); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyUnicode_From_Py_ssize_t(__pyx_v_extent1, 0, ' ', 'd'); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __pyx_t_3 = __Pyx_PyUnicode_From_Py_ssize_t(__pyx_v_extent2, 0, ' ', 'd'); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4[0] = __pyx_mstate_global->__pyx_kp_u_got_differing_extents_in_dimensi; - __pyx_t_4[1] = __pyx_t_1; - __pyx_t_4[2] = __pyx_mstate_global->__pyx_kp_u_got; - __pyx_t_4[3] = __pyx_t_2; - __pyx_t_4[4] = __pyx_mstate_global->__pyx_kp_u_and; - __pyx_t_4[5] = __pyx_t_3; - __pyx_t_4[6] = __pyx_mstate_global->__pyx_kp_u__5; - __pyx_t_5 = __Pyx_PyUnicode_Join(__pyx_t_4, 7, 35 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_1) + 6 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_2) + 5 + __Pyx_PyUnicode_GET_LENGTH(__pyx_t_3) + 1, 127); - if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1250, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_Raise(((PyObject *)(((PyTypeObject*)PyExc_ValueError))), __pyx_t_5, 0, 0); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __PYX_ERR(1, 1250, __pyx_L1_error) - - /* "View.MemoryView":1247 - * - * - * @cname('__pyx_memoryview_err_extents') # <<<<<<<<<<<<<< - * cdef int _err_extents(int i, Py_ssize_t extent1, - * Py_ssize_t extent2) except -1 with gil: -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_5); - __Pyx_AddTraceback("View.MemoryView._err_extents", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_RefNannyFinishContext(); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - return __pyx_r; -} - -/* "View.MemoryView":1252 - * raise ValueError, f"got differing extents in dimension {i} (got {extent1} and {extent2})" - * - * @cname('__pyx_memoryview_err_dim') # <<<<<<<<<<<<<< - * cdef int _err_dim(PyObject *error, str msg, int dim) except -1 with gil: - * raise error, msg % dim -*/ - -static int __pyx_memoryview_err_dim(PyObject *__pyx_v_error, PyObject *__pyx_v_msg, int __pyx_v_dim) { - int __pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_RefNannySetupContext("_err_dim", 0); - __Pyx_INCREF(__pyx_v_msg); - - /* "View.MemoryView":1254 - * @cname('__pyx_memoryview_err_dim') - * cdef int _err_dim(PyObject *error, str msg, int dim) except -1 with gil: - * raise error, msg % dim # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_err') -*/ - __pyx_t_1 = __Pyx_PyLong_From_int(__pyx_v_dim); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 1254, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyUnicode_FormatSafe(__pyx_v_msg, __pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 1254, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_Raise(((PyObject *)__pyx_v_error), __pyx_t_2, 0, 0); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __PYX_ERR(1, 1254, __pyx_L1_error) - - /* "View.MemoryView":1252 - * raise ValueError, f"got differing extents in dimension {i} (got {extent1} and {extent2})" - * - * @cname('__pyx_memoryview_err_dim') # <<<<<<<<<<<<<< - * cdef int _err_dim(PyObject *error, str msg, int dim) except -1 with gil: - * raise error, msg % dim -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("View.MemoryView._err_dim", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_XDECREF(__pyx_v_msg); - __Pyx_RefNannyFinishContext(); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - return __pyx_r; -} - -/* "View.MemoryView":1256 - * raise error, msg % dim - * - * @cname('__pyx_memoryview_err') # <<<<<<<<<<<<<< - * cdef int _err(PyObject *error, str msg) except -1 with gil: - * raise error, msg -*/ - -static int __pyx_memoryview_err(PyObject *__pyx_v_error, PyObject *__pyx_v_msg) { - int __pyx_r; - __Pyx_RefNannyDeclarations - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_RefNannySetupContext("_err", 0); - __Pyx_INCREF(__pyx_v_msg); - - /* "View.MemoryView":1258 - * @cname('__pyx_memoryview_err') - * cdef int _err(PyObject *error, str msg) except -1 with gil: - * raise error, msg # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_err_no_memory') -*/ - __Pyx_Raise(((PyObject *)__pyx_v_error), __pyx_v_msg, 0, 0); - __PYX_ERR(1, 1258, __pyx_L1_error) - - /* "View.MemoryView":1256 - * raise error, msg % dim - * - * @cname('__pyx_memoryview_err') # <<<<<<<<<<<<<< - * cdef int _err(PyObject *error, str msg) except -1 with gil: - * raise error, msg -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView._err", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_XDECREF(__pyx_v_msg); - __Pyx_RefNannyFinishContext(); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - return __pyx_r; -} - -/* "View.MemoryView":1260 - * raise error, msg - * - * @cname('__pyx_memoryview_err_no_memory') # <<<<<<<<<<<<<< - * cdef int _err_no_memory() except -1 with gil: - * raise MemoryError -*/ - -static int __pyx_memoryview_err_no_memory(void) { - int __pyx_r; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - - /* "View.MemoryView":1262 - * @cname('__pyx_memoryview_err_no_memory') - * cdef int _err_no_memory() except -1 with gil: - * raise MemoryError # <<<<<<<<<<<<<< - * - * -*/ - PyErr_NoMemory(); __PYX_ERR(1, 1262, __pyx_L1_error) - - /* "View.MemoryView":1260 - * raise error, msg - * - * @cname('__pyx_memoryview_err_no_memory') # <<<<<<<<<<<<<< - * cdef int _err_no_memory() except -1 with gil: - * raise MemoryError -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_AddTraceback("View.MemoryView._err_no_memory", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_PyGILState_Release(__pyx_gilstate_save); - return __pyx_r; -} - -/* "View.MemoryView":1265 - * - * - * @cname('__pyx_memoryview_copy_contents') # <<<<<<<<<<<<<< - * cdef int memoryview_copy_contents(__Pyx_memviewslice src, - * __Pyx_memviewslice dst, -*/ - -static int __pyx_memoryview_copy_contents(__Pyx_memviewslice __pyx_v_src, __Pyx_memviewslice __pyx_v_dst, int __pyx_v_src_ndim, int __pyx_v_dst_ndim, int __pyx_v_dtype_is_object) { - void *__pyx_v_tmpdata; - size_t __pyx_v_itemsize; - int __pyx_v_i; - char __pyx_v_order; - int __pyx_v_broadcasting; - int __pyx_v_direct_copy; - __Pyx_memviewslice __pyx_v_tmp; - int __pyx_v_ndim; - int __pyx_r; - Py_ssize_t __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - int __pyx_t_4; - int __pyx_t_5; - int __pyx_t_6; - void *__pyx_t_7; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - - /* "View.MemoryView":1274 - * Check for overlapping memory and verify the shapes. - * """ - * cdef void *tmpdata = NULL # <<<<<<<<<<<<<< - * cdef size_t itemsize = src.memview.view.itemsize - * cdef int i -*/ - __pyx_v_tmpdata = NULL; - - /* "View.MemoryView":1275 - * """ - * cdef void *tmpdata = NULL - * cdef size_t itemsize = src.memview.view.itemsize # <<<<<<<<<<<<<< - * cdef int i - * cdef char order = get_best_order(&src, src_ndim) -*/ - __pyx_t_1 = __pyx_v_src.memview->view.itemsize; - __pyx_v_itemsize = __pyx_t_1; - - /* "View.MemoryView":1277 - * cdef size_t itemsize = src.memview.view.itemsize - * cdef int i - * cdef char order = get_best_order(&src, src_ndim) # <<<<<<<<<<<<<< - * cdef bint broadcasting = False - * cdef bint direct_copy = False -*/ - __pyx_v_order = __pyx_get_best_slice_order((&__pyx_v_src), __pyx_v_src_ndim); - - /* "View.MemoryView":1278 - * cdef int i - * cdef char order = get_best_order(&src, src_ndim) - * cdef bint broadcasting = False # <<<<<<<<<<<<<< - * cdef bint direct_copy = False - * cdef __Pyx_memviewslice tmp -*/ - __pyx_v_broadcasting = 0; - - /* "View.MemoryView":1279 - * cdef char order = get_best_order(&src, src_ndim) - * cdef bint broadcasting = False - * cdef bint direct_copy = False # <<<<<<<<<<<<<< - * cdef __Pyx_memviewslice tmp - * -*/ - __pyx_v_direct_copy = 0; - - /* "View.MemoryView":1282 - * cdef __Pyx_memviewslice tmp - * - * if src_ndim < dst_ndim: # <<<<<<<<<<<<<< - * broadcast_leading(&src, src_ndim, dst_ndim) - * elif dst_ndim < src_ndim: -*/ - __pyx_t_2 = (__pyx_v_src_ndim < __pyx_v_dst_ndim); - if (__pyx_t_2) { - - /* "View.MemoryView":1283 - * - * if src_ndim < dst_ndim: - * broadcast_leading(&src, src_ndim, dst_ndim) # <<<<<<<<<<<<<< - * elif dst_ndim < src_ndim: - * broadcast_leading(&dst, dst_ndim, src_ndim) -*/ - __pyx_memoryview_broadcast_leading((&__pyx_v_src), __pyx_v_src_ndim, __pyx_v_dst_ndim); - - /* "View.MemoryView":1282 - * cdef __Pyx_memviewslice tmp - * - * if src_ndim < dst_ndim: # <<<<<<<<<<<<<< - * broadcast_leading(&src, src_ndim, dst_ndim) - * elif dst_ndim < src_ndim: -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":1284 - * if src_ndim < dst_ndim: - * broadcast_leading(&src, src_ndim, dst_ndim) - * elif dst_ndim < src_ndim: # <<<<<<<<<<<<<< - * broadcast_leading(&dst, dst_ndim, src_ndim) - * -*/ - __pyx_t_2 = (__pyx_v_dst_ndim < __pyx_v_src_ndim); - if (__pyx_t_2) { - - /* "View.MemoryView":1285 - * broadcast_leading(&src, src_ndim, dst_ndim) - * elif dst_ndim < src_ndim: - * broadcast_leading(&dst, dst_ndim, src_ndim) # <<<<<<<<<<<<<< - * - * cdef int ndim = max(src_ndim, dst_ndim) -*/ - __pyx_memoryview_broadcast_leading((&__pyx_v_dst), __pyx_v_dst_ndim, __pyx_v_src_ndim); - - /* "View.MemoryView":1284 - * if src_ndim < dst_ndim: - * broadcast_leading(&src, src_ndim, dst_ndim) - * elif dst_ndim < src_ndim: # <<<<<<<<<<<<<< - * broadcast_leading(&dst, dst_ndim, src_ndim) - * -*/ - } - __pyx_L3:; - - /* "View.MemoryView":1287 - * broadcast_leading(&dst, dst_ndim, src_ndim) - * - * cdef int ndim = max(src_ndim, dst_ndim) # <<<<<<<<<<<<<< - * - * for i in range(ndim): -*/ - __pyx_t_3 = __pyx_v_dst_ndim; - __pyx_t_4 = __pyx_v_src_ndim; - __pyx_t_2 = (__pyx_t_3 > __pyx_t_4); - if (__pyx_t_2) { - __pyx_t_5 = __pyx_t_3; - } else { - __pyx_t_5 = __pyx_t_4; - } - __pyx_v_ndim = __pyx_t_5; - - /* "View.MemoryView":1289 - * cdef int ndim = max(src_ndim, dst_ndim) - * - * for i in range(ndim): # <<<<<<<<<<<<<< - * if src.shape[i] != dst.shape[i]: - * if src.shape[i] == 1: -*/ - __pyx_t_5 = __pyx_v_ndim; - __pyx_t_3 = __pyx_t_5; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":1290 - * - * for i in range(ndim): - * if src.shape[i] != dst.shape[i]: # <<<<<<<<<<<<<< - * if src.shape[i] == 1: - * broadcasting = True -*/ - __pyx_t_2 = ((__pyx_v_src.shape[__pyx_v_i]) != (__pyx_v_dst.shape[__pyx_v_i])); - if (__pyx_t_2) { - - /* "View.MemoryView":1291 - * for i in range(ndim): - * if src.shape[i] != dst.shape[i]: - * if src.shape[i] == 1: # <<<<<<<<<<<<<< - * broadcasting = True - * src.strides[i] = 0 -*/ - __pyx_t_2 = ((__pyx_v_src.shape[__pyx_v_i]) == 1); - if (__pyx_t_2) { - - /* "View.MemoryView":1292 - * if src.shape[i] != dst.shape[i]: - * if src.shape[i] == 1: - * broadcasting = True # <<<<<<<<<<<<<< - * src.strides[i] = 0 - * else: -*/ - __pyx_v_broadcasting = 1; - - /* "View.MemoryView":1293 - * if src.shape[i] == 1: - * broadcasting = True - * src.strides[i] = 0 # <<<<<<<<<<<<<< - * else: - * _err_extents(i, dst.shape[i], src.shape[i]) -*/ - (__pyx_v_src.strides[__pyx_v_i]) = 0; - - /* "View.MemoryView":1291 - * for i in range(ndim): - * if src.shape[i] != dst.shape[i]: - * if src.shape[i] == 1: # <<<<<<<<<<<<<< - * broadcasting = True - * src.strides[i] = 0 -*/ - goto __pyx_L7; - } - - /* "View.MemoryView":1295 - * src.strides[i] = 0 - * else: - * _err_extents(i, dst.shape[i], src.shape[i]) # <<<<<<<<<<<<<< - * - * if src.suboffsets[i] >= 0: -*/ - /*else*/ { - __pyx_t_6 = __pyx_memoryview_err_extents(__pyx_v_i, (__pyx_v_dst.shape[__pyx_v_i]), (__pyx_v_src.shape[__pyx_v_i])); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(1, 1295, __pyx_L1_error) - } - __pyx_L7:; - - /* "View.MemoryView":1290 - * - * for i in range(ndim): - * if src.shape[i] != dst.shape[i]: # <<<<<<<<<<<<<< - * if src.shape[i] == 1: - * broadcasting = True -*/ - } - - /* "View.MemoryView":1297 - * _err_extents(i, dst.shape[i], src.shape[i]) - * - * if src.suboffsets[i] >= 0: # <<<<<<<<<<<<<< - * _err_dim(PyExc_ValueError, "Dimension %d is not direct", i) - * -*/ - __pyx_t_2 = ((__pyx_v_src.suboffsets[__pyx_v_i]) >= 0); - if (__pyx_t_2) { - - /* "View.MemoryView":1298 - * - * if src.suboffsets[i] >= 0: - * _err_dim(PyExc_ValueError, "Dimension %d is not direct", i) # <<<<<<<<<<<<<< - * - * if slices_overlap(&src, &dst, ndim, itemsize): -*/ - __pyx_t_6 = __pyx_memoryview_err_dim(PyExc_ValueError, __pyx_mstate_global->__pyx_kp_u_Dimension_d_is_not_direct, __pyx_v_i); if (unlikely(__pyx_t_6 == ((int)-1))) __PYX_ERR(1, 1298, __pyx_L1_error) - - /* "View.MemoryView":1297 - * _err_extents(i, dst.shape[i], src.shape[i]) - * - * if src.suboffsets[i] >= 0: # <<<<<<<<<<<<<< - * _err_dim(PyExc_ValueError, "Dimension %d is not direct", i) - * -*/ - } - } - - /* "View.MemoryView":1300 - * _err_dim(PyExc_ValueError, "Dimension %d is not direct", i) - * - * if slices_overlap(&src, &dst, ndim, itemsize): # <<<<<<<<<<<<<< - * - * if not slice_is_contig(src, order, ndim): -*/ - __pyx_t_2 = __pyx_slices_overlap((&__pyx_v_src), (&__pyx_v_dst), __pyx_v_ndim, __pyx_v_itemsize); - if (__pyx_t_2) { - - /* "View.MemoryView":1302 - * if slices_overlap(&src, &dst, ndim, itemsize): - * - * if not slice_is_contig(src, order, ndim): # <<<<<<<<<<<<<< - * order = get_best_order(&dst, ndim) - * -*/ - __pyx_t_2 = (!__pyx_memviewslice_is_contig(__pyx_v_src, __pyx_v_order, __pyx_v_ndim)); - if (__pyx_t_2) { - - /* "View.MemoryView":1303 - * - * if not slice_is_contig(src, order, ndim): - * order = get_best_order(&dst, ndim) # <<<<<<<<<<<<<< - * - * tmpdata = copy_data_to_temp(&src, &tmp, order, ndim) -*/ - __pyx_v_order = __pyx_get_best_slice_order((&__pyx_v_dst), __pyx_v_ndim); - - /* "View.MemoryView":1302 - * if slices_overlap(&src, &dst, ndim, itemsize): - * - * if not slice_is_contig(src, order, ndim): # <<<<<<<<<<<<<< - * order = get_best_order(&dst, ndim) - * -*/ - } - - /* "View.MemoryView":1305 - * order = get_best_order(&dst, ndim) - * - * tmpdata = copy_data_to_temp(&src, &tmp, order, ndim) # <<<<<<<<<<<<<< - * src = tmp - * -*/ - __pyx_t_7 = __pyx_memoryview_copy_data_to_temp((&__pyx_v_src), (&__pyx_v_tmp), __pyx_v_order, __pyx_v_ndim); if (unlikely(__pyx_t_7 == ((void *)NULL))) __PYX_ERR(1, 1305, __pyx_L1_error) - __pyx_v_tmpdata = __pyx_t_7; - - /* "View.MemoryView":1306 - * - * tmpdata = copy_data_to_temp(&src, &tmp, order, ndim) - * src = tmp # <<<<<<<<<<<<<< - * - * if not broadcasting: -*/ - __pyx_v_src = __pyx_v_tmp; - - /* "View.MemoryView":1300 - * _err_dim(PyExc_ValueError, "Dimension %d is not direct", i) - * - * if slices_overlap(&src, &dst, ndim, itemsize): # <<<<<<<<<<<<<< - * - * if not slice_is_contig(src, order, ndim): -*/ - } - - /* "View.MemoryView":1308 - * src = tmp - * - * if not broadcasting: # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_2 = (!__pyx_v_broadcasting); - if (__pyx_t_2) { - - /* "View.MemoryView":1311 - * - * - * if slice_is_contig(src, 'C', ndim): # <<<<<<<<<<<<<< - * direct_copy = slice_is_contig(dst, 'C', ndim) - * elif slice_is_contig(src, 'F', ndim): -*/ - __pyx_t_2 = __pyx_memviewslice_is_contig(__pyx_v_src, 'C', __pyx_v_ndim); - if (__pyx_t_2) { - - /* "View.MemoryView":1312 - * - * if slice_is_contig(src, 'C', ndim): - * direct_copy = slice_is_contig(dst, 'C', ndim) # <<<<<<<<<<<<<< - * elif slice_is_contig(src, 'F', ndim): - * direct_copy = slice_is_contig(dst, 'F', ndim) -*/ - __pyx_v_direct_copy = __pyx_memviewslice_is_contig(__pyx_v_dst, 'C', __pyx_v_ndim); - - /* "View.MemoryView":1311 - * - * - * if slice_is_contig(src, 'C', ndim): # <<<<<<<<<<<<<< - * direct_copy = slice_is_contig(dst, 'C', ndim) - * elif slice_is_contig(src, 'F', ndim): -*/ - goto __pyx_L12; - } - - /* "View.MemoryView":1313 - * if slice_is_contig(src, 'C', ndim): - * direct_copy = slice_is_contig(dst, 'C', ndim) - * elif slice_is_contig(src, 'F', ndim): # <<<<<<<<<<<<<< - * direct_copy = slice_is_contig(dst, 'F', ndim) - * -*/ - __pyx_t_2 = __pyx_memviewslice_is_contig(__pyx_v_src, 'F', __pyx_v_ndim); - if (__pyx_t_2) { - - /* "View.MemoryView":1314 - * direct_copy = slice_is_contig(dst, 'C', ndim) - * elif slice_is_contig(src, 'F', ndim): - * direct_copy = slice_is_contig(dst, 'F', ndim) # <<<<<<<<<<<<<< - * - * if direct_copy: -*/ - __pyx_v_direct_copy = __pyx_memviewslice_is_contig(__pyx_v_dst, 'F', __pyx_v_ndim); - - /* "View.MemoryView":1313 - * if slice_is_contig(src, 'C', ndim): - * direct_copy = slice_is_contig(dst, 'C', ndim) - * elif slice_is_contig(src, 'F', ndim): # <<<<<<<<<<<<<< - * direct_copy = slice_is_contig(dst, 'F', ndim) - * -*/ - } - __pyx_L12:; - - /* "View.MemoryView":1316 - * direct_copy = slice_is_contig(dst, 'F', ndim) - * - * if direct_copy: # <<<<<<<<<<<<<< - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) -*/ - if (__pyx_v_direct_copy) { - - /* "View.MemoryView":1318 - * if direct_copy: - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) # <<<<<<<<<<<<<< - * memcpy(dst.data, src.data, slice_get_size(&src, ndim)) - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) -*/ - __pyx_memoryview_refcount_copying((&__pyx_v_dst), __pyx_v_dtype_is_object, __pyx_v_ndim, 0); - - /* "View.MemoryView":1319 - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) - * memcpy(dst.data, src.data, slice_get_size(&src, ndim)) # <<<<<<<<<<<<<< - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) - * free(tmpdata) -*/ - (void)(memcpy(__pyx_v_dst.data, __pyx_v_src.data, __pyx_memoryview_slice_get_size((&__pyx_v_src), __pyx_v_ndim))); - - /* "View.MemoryView":1320 - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) - * memcpy(dst.data, src.data, slice_get_size(&src, ndim)) - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) # <<<<<<<<<<<<<< - * free(tmpdata) - * return 0 -*/ - __pyx_memoryview_refcount_copying((&__pyx_v_dst), __pyx_v_dtype_is_object, __pyx_v_ndim, 1); - - /* "View.MemoryView":1321 - * memcpy(dst.data, src.data, slice_get_size(&src, ndim)) - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) - * free(tmpdata) # <<<<<<<<<<<<<< - * return 0 - * -*/ - free(__pyx_v_tmpdata); - - /* "View.MemoryView":1322 - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) - * free(tmpdata) - * return 0 # <<<<<<<<<<<<<< - * - * if order == 'F' == get_best_order(&dst, ndim): -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":1316 - * direct_copy = slice_is_contig(dst, 'F', ndim) - * - * if direct_copy: # <<<<<<<<<<<<<< - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) -*/ - } - - /* "View.MemoryView":1308 - * src = tmp - * - * if not broadcasting: # <<<<<<<<<<<<<< - * - * -*/ - } - - /* "View.MemoryView":1324 - * return 0 - * - * if order == 'F' == get_best_order(&dst, ndim): # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_2 = (__pyx_v_order == 'F'); - if (__pyx_t_2) { - __pyx_t_2 = ('F' == __pyx_get_best_slice_order((&__pyx_v_dst), __pyx_v_ndim)); - } - if (__pyx_t_2) { - - /* "View.MemoryView":1327 - * - * - * transpose_memslice(&src) # <<<<<<<<<<<<<< - * transpose_memslice(&dst) - * -*/ - __pyx_t_5 = __pyx_memslice_transpose((&__pyx_v_src)); if (unlikely(__pyx_t_5 == ((int)-1))) __PYX_ERR(1, 1327, __pyx_L1_error) - - /* "View.MemoryView":1328 - * - * transpose_memslice(&src) - * transpose_memslice(&dst) # <<<<<<<<<<<<<< - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) -*/ - __pyx_t_5 = __pyx_memslice_transpose((&__pyx_v_dst)); if (unlikely(__pyx_t_5 == ((int)-1))) __PYX_ERR(1, 1328, __pyx_L1_error) - - /* "View.MemoryView":1324 - * return 0 - * - * if order == 'F' == get_best_order(&dst, ndim): # <<<<<<<<<<<<<< - * - * -*/ - } - - /* "View.MemoryView":1330 - * transpose_memslice(&dst) - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) # <<<<<<<<<<<<<< - * copy_strided_to_strided(&src, &dst, ndim, itemsize) - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) -*/ - __pyx_memoryview_refcount_copying((&__pyx_v_dst), __pyx_v_dtype_is_object, __pyx_v_ndim, 0); - - /* "View.MemoryView":1331 - * - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) - * copy_strided_to_strided(&src, &dst, ndim, itemsize) # <<<<<<<<<<<<<< - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) - * -*/ - copy_strided_to_strided((&__pyx_v_src), (&__pyx_v_dst), __pyx_v_ndim, __pyx_v_itemsize); - - /* "View.MemoryView":1332 - * refcount_copying(&dst, dtype_is_object, ndim, inc=False) - * copy_strided_to_strided(&src, &dst, ndim, itemsize) - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) # <<<<<<<<<<<<<< - * - * free(tmpdata) -*/ - __pyx_memoryview_refcount_copying((&__pyx_v_dst), __pyx_v_dtype_is_object, __pyx_v_ndim, 1); - - /* "View.MemoryView":1334 - * refcount_copying(&dst, dtype_is_object, ndim, inc=True) - * - * free(tmpdata) # <<<<<<<<<<<<<< - * return 0 - * -*/ - free(__pyx_v_tmpdata); - - /* "View.MemoryView":1335 - * - * free(tmpdata) - * return 0 # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_broadcast_leading') -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "View.MemoryView":1265 - * - * - * @cname('__pyx_memoryview_copy_contents') # <<<<<<<<<<<<<< - * cdef int memoryview_copy_contents(__Pyx_memviewslice src, - * __Pyx_memviewslice dst, -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __Pyx_AddTraceback("View.MemoryView.memoryview_copy_contents", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = -1; - __Pyx_PyGILState_Release(__pyx_gilstate_save); - __pyx_L0:; - return __pyx_r; -} - -/* "View.MemoryView":1337 - * return 0 - * - * @cname('__pyx_memoryview_broadcast_leading') # <<<<<<<<<<<<<< - * cdef void broadcast_leading(__Pyx_memviewslice *mslice, - * int ndim, -*/ - -static void __pyx_memoryview_broadcast_leading(__Pyx_memviewslice *__pyx_v_mslice, int __pyx_v_ndim, int __pyx_v_ndim_other) { - int __pyx_v_i; - int __pyx_v_offset; - int __pyx_t_1; - int __pyx_t_2; - int __pyx_t_3; - - /* "View.MemoryView":1342 - * int ndim_other) noexcept nogil: - * cdef int i - * cdef int offset = ndim_other - ndim # <<<<<<<<<<<<<< - * - * for i in range(ndim - 1, -1, -1): -*/ - __pyx_v_offset = (__pyx_v_ndim_other - __pyx_v_ndim); - - /* "View.MemoryView":1344 - * cdef int offset = ndim_other - ndim - * - * for i in range(ndim - 1, -1, -1): # <<<<<<<<<<<<<< - * mslice.shape[i + offset] = mslice.shape[i] - * mslice.strides[i + offset] = mslice.strides[i] -*/ - for (__pyx_t_1 = (__pyx_v_ndim - 1); __pyx_t_1 > -1; __pyx_t_1-=1) { - __pyx_v_i = __pyx_t_1; - - /* "View.MemoryView":1345 - * - * for i in range(ndim - 1, -1, -1): - * mslice.shape[i + offset] = mslice.shape[i] # <<<<<<<<<<<<<< - * mslice.strides[i + offset] = mslice.strides[i] - * mslice.suboffsets[i + offset] = mslice.suboffsets[i] -*/ - (__pyx_v_mslice->shape[(__pyx_v_i + __pyx_v_offset)]) = (__pyx_v_mslice->shape[__pyx_v_i]); - - /* "View.MemoryView":1346 - * for i in range(ndim - 1, -1, -1): - * mslice.shape[i + offset] = mslice.shape[i] - * mslice.strides[i + offset] = mslice.strides[i] # <<<<<<<<<<<<<< - * mslice.suboffsets[i + offset] = mslice.suboffsets[i] - * -*/ - (__pyx_v_mslice->strides[(__pyx_v_i + __pyx_v_offset)]) = (__pyx_v_mslice->strides[__pyx_v_i]); - - /* "View.MemoryView":1347 - * mslice.shape[i + offset] = mslice.shape[i] - * mslice.strides[i + offset] = mslice.strides[i] - * mslice.suboffsets[i + offset] = mslice.suboffsets[i] # <<<<<<<<<<<<<< - * - * for i in range(offset): -*/ - (__pyx_v_mslice->suboffsets[(__pyx_v_i + __pyx_v_offset)]) = (__pyx_v_mslice->suboffsets[__pyx_v_i]); - } - - /* "View.MemoryView":1349 - * mslice.suboffsets[i + offset] = mslice.suboffsets[i] - * - * for i in range(offset): # <<<<<<<<<<<<<< - * mslice.shape[i] = 1 - * mslice.strides[i] = mslice.strides[0] -*/ - __pyx_t_1 = __pyx_v_offset; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_i = __pyx_t_3; - - /* "View.MemoryView":1350 - * - * for i in range(offset): - * mslice.shape[i] = 1 # <<<<<<<<<<<<<< - * mslice.strides[i] = mslice.strides[0] - * mslice.suboffsets[i] = -1 -*/ - (__pyx_v_mslice->shape[__pyx_v_i]) = 1; - - /* "View.MemoryView":1351 - * for i in range(offset): - * mslice.shape[i] = 1 - * mslice.strides[i] = mslice.strides[0] # <<<<<<<<<<<<<< - * mslice.suboffsets[i] = -1 - * -*/ - (__pyx_v_mslice->strides[__pyx_v_i]) = (__pyx_v_mslice->strides[0]); - - /* "View.MemoryView":1352 - * mslice.shape[i] = 1 - * mslice.strides[i] = mslice.strides[0] - * mslice.suboffsets[i] = -1 # <<<<<<<<<<<<<< - * - * -*/ - (__pyx_v_mslice->suboffsets[__pyx_v_i]) = -1L; - } - - /* "View.MemoryView":1337 - * return 0 - * - * @cname('__pyx_memoryview_broadcast_leading') # <<<<<<<<<<<<<< - * cdef void broadcast_leading(__Pyx_memviewslice *mslice, - * int ndim, -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1359 - * - * - * @cname('__pyx_memoryview_refcount_copying') # <<<<<<<<<<<<<< - * cdef void refcount_copying(__Pyx_memviewslice *dst, bint dtype_is_object, int ndim, bint inc) noexcept nogil: - * -*/ - -static void __pyx_memoryview_refcount_copying(__Pyx_memviewslice *__pyx_v_dst, int __pyx_v_dtype_is_object, int __pyx_v_ndim, int __pyx_v_inc) { - - /* "View.MemoryView":1362 - * cdef void refcount_copying(__Pyx_memviewslice *dst, bint dtype_is_object, int ndim, bint inc) noexcept nogil: - * - * if dtype_is_object: # <<<<<<<<<<<<<< - * refcount_objects_in_slice_with_gil(dst.data, dst.shape, dst.strides, ndim, inc) - * -*/ - if (__pyx_v_dtype_is_object) { - - /* "View.MemoryView":1363 - * - * if dtype_is_object: - * refcount_objects_in_slice_with_gil(dst.data, dst.shape, dst.strides, ndim, inc) # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_refcount_objects_in_slice_with_gil') -*/ - __pyx_memoryview_refcount_objects_in_slice_with_gil(__pyx_v_dst->data, __pyx_v_dst->shape, __pyx_v_dst->strides, __pyx_v_ndim, __pyx_v_inc); - - /* "View.MemoryView":1362 - * cdef void refcount_copying(__Pyx_memviewslice *dst, bint dtype_is_object, int ndim, bint inc) noexcept nogil: - * - * if dtype_is_object: # <<<<<<<<<<<<<< - * refcount_objects_in_slice_with_gil(dst.data, dst.shape, dst.strides, ndim, inc) - * -*/ - } - - /* "View.MemoryView":1359 - * - * - * @cname('__pyx_memoryview_refcount_copying') # <<<<<<<<<<<<<< - * cdef void refcount_copying(__Pyx_memviewslice *dst, bint dtype_is_object, int ndim, bint inc) noexcept nogil: - * -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1365 - * refcount_objects_in_slice_with_gil(dst.data, dst.shape, dst.strides, ndim, inc) - * - * @cname('__pyx_memoryview_refcount_objects_in_slice_with_gil') # <<<<<<<<<<<<<< - * cdef void refcount_objects_in_slice_with_gil(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, -*/ - -static void __pyx_memoryview_refcount_objects_in_slice_with_gil(char *__pyx_v_data, Py_ssize_t *__pyx_v_shape, Py_ssize_t *__pyx_v_strides, int __pyx_v_ndim, int __pyx_v_inc) { - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - - /* "View.MemoryView":1369 - * Py_ssize_t *strides, int ndim, - * bint inc) noexcept with gil: - * refcount_objects_in_slice(data, shape, strides, ndim, inc) # <<<<<<<<<<<<<< - * - * @cname('__pyx_memoryview_refcount_objects_in_slice') -*/ - __pyx_memoryview_refcount_objects_in_slice(__pyx_v_data, __pyx_v_shape, __pyx_v_strides, __pyx_v_ndim, __pyx_v_inc); - - /* "View.MemoryView":1365 - * refcount_objects_in_slice_with_gil(dst.data, dst.shape, dst.strides, ndim, inc) - * - * @cname('__pyx_memoryview_refcount_objects_in_slice_with_gil') # <<<<<<<<<<<<<< - * cdef void refcount_objects_in_slice_with_gil(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, -*/ - - /* function exit code */ - __Pyx_PyGILState_Release(__pyx_gilstate_save); -} - -/* "View.MemoryView":1371 - * refcount_objects_in_slice(data, shape, strides, ndim, inc) - * - * @cname('__pyx_memoryview_refcount_objects_in_slice') # <<<<<<<<<<<<<< - * cdef void refcount_objects_in_slice(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, bint inc) noexcept: -*/ - -static void __pyx_memoryview_refcount_objects_in_slice(char *__pyx_v_data, Py_ssize_t *__pyx_v_shape, Py_ssize_t *__pyx_v_strides, int __pyx_v_ndim, int __pyx_v_inc) { - CYTHON_UNUSED Py_ssize_t __pyx_v_i; - Py_ssize_t __pyx_v_stride; - Py_ssize_t __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - int __pyx_t_4; - - /* "View.MemoryView":1375 - * Py_ssize_t *strides, int ndim, bint inc) noexcept: - * cdef Py_ssize_t i - * cdef Py_ssize_t stride = strides[0] # <<<<<<<<<<<<<< - * - * for i in range(shape[0]): -*/ - __pyx_v_stride = (__pyx_v_strides[0]); - - /* "View.MemoryView":1377 - * cdef Py_ssize_t stride = strides[0] - * - * for i in range(shape[0]): # <<<<<<<<<<<<<< - * if ndim == 1: - * if inc: -*/ - __pyx_t_1 = (__pyx_v_shape[0]); - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_i = __pyx_t_3; - - /* "View.MemoryView":1378 - * - * for i in range(shape[0]): - * if ndim == 1: # <<<<<<<<<<<<<< - * if inc: - * Py_INCREF(( data)[0]) -*/ - __pyx_t_4 = (__pyx_v_ndim == 1); - if (__pyx_t_4) { - - /* "View.MemoryView":1379 - * for i in range(shape[0]): - * if ndim == 1: - * if inc: # <<<<<<<<<<<<<< - * Py_INCREF(( data)[0]) - * else: -*/ - if (__pyx_v_inc) { - - /* "View.MemoryView":1380 - * if ndim == 1: - * if inc: - * Py_INCREF(( data)[0]) # <<<<<<<<<<<<<< - * else: - * Py_DECREF(( data)[0]) -*/ - Py_INCREF((((PyObject **)__pyx_v_data)[0])); - - /* "View.MemoryView":1379 - * for i in range(shape[0]): - * if ndim == 1: - * if inc: # <<<<<<<<<<<<<< - * Py_INCREF(( data)[0]) - * else: -*/ - goto __pyx_L6; - } - - /* "View.MemoryView":1382 - * Py_INCREF(( data)[0]) - * else: - * Py_DECREF(( data)[0]) # <<<<<<<<<<<<<< - * else: - * refcount_objects_in_slice(data, shape + 1, strides + 1, ndim - 1, inc) -*/ - /*else*/ { - Py_DECREF((((PyObject **)__pyx_v_data)[0])); - } - __pyx_L6:; - - /* "View.MemoryView":1378 - * - * for i in range(shape[0]): - * if ndim == 1: # <<<<<<<<<<<<<< - * if inc: - * Py_INCREF(( data)[0]) -*/ - goto __pyx_L5; - } - - /* "View.MemoryView":1384 - * Py_DECREF(( data)[0]) - * else: - * refcount_objects_in_slice(data, shape + 1, strides + 1, ndim - 1, inc) # <<<<<<<<<<<<<< - * - * data += stride -*/ - /*else*/ { - __pyx_memoryview_refcount_objects_in_slice(__pyx_v_data, (__pyx_v_shape + 1), (__pyx_v_strides + 1), (__pyx_v_ndim - 1), __pyx_v_inc); - } - __pyx_L5:; - - /* "View.MemoryView":1386 - * refcount_objects_in_slice(data, shape + 1, strides + 1, ndim - 1, inc) - * - * data += stride # <<<<<<<<<<<<<< - * - * -*/ - __pyx_v_data = (__pyx_v_data + __pyx_v_stride); - } - - /* "View.MemoryView":1371 - * refcount_objects_in_slice(data, shape, strides, ndim, inc) - * - * @cname('__pyx_memoryview_refcount_objects_in_slice') # <<<<<<<<<<<<<< - * cdef void refcount_objects_in_slice(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, bint inc) noexcept: -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1391 - * - * - * @cname('__pyx_memoryview_slice_assign_scalar') # <<<<<<<<<<<<<< - * cdef void slice_assign_scalar(__Pyx_memviewslice *dst, int ndim, - * size_t itemsize, void *item, -*/ - -static void __pyx_memoryview_slice_assign_scalar(__Pyx_memviewslice *__pyx_v_dst, int __pyx_v_ndim, size_t __pyx_v_itemsize, void *__pyx_v_item, int __pyx_v_dtype_is_object) { - - /* "View.MemoryView":1395 - * size_t itemsize, void *item, - * bint dtype_is_object) noexcept nogil: - * refcount_copying(dst, dtype_is_object, ndim, inc=False) # <<<<<<<<<<<<<< - * _slice_assign_scalar(dst.data, dst.shape, dst.strides, ndim, itemsize, item) - * refcount_copying(dst, dtype_is_object, ndim, inc=True) -*/ - __pyx_memoryview_refcount_copying(__pyx_v_dst, __pyx_v_dtype_is_object, __pyx_v_ndim, 0); - - /* "View.MemoryView":1396 - * bint dtype_is_object) noexcept nogil: - * refcount_copying(dst, dtype_is_object, ndim, inc=False) - * _slice_assign_scalar(dst.data, dst.shape, dst.strides, ndim, itemsize, item) # <<<<<<<<<<<<<< - * refcount_copying(dst, dtype_is_object, ndim, inc=True) - * -*/ - __pyx_memoryview__slice_assign_scalar(__pyx_v_dst->data, __pyx_v_dst->shape, __pyx_v_dst->strides, __pyx_v_ndim, __pyx_v_itemsize, __pyx_v_item); - - /* "View.MemoryView":1397 - * refcount_copying(dst, dtype_is_object, ndim, inc=False) - * _slice_assign_scalar(dst.data, dst.shape, dst.strides, ndim, itemsize, item) - * refcount_copying(dst, dtype_is_object, ndim, inc=True) # <<<<<<<<<<<<<< - * - * -*/ - __pyx_memoryview_refcount_copying(__pyx_v_dst, __pyx_v_dtype_is_object, __pyx_v_ndim, 1); - - /* "View.MemoryView":1391 - * - * - * @cname('__pyx_memoryview_slice_assign_scalar') # <<<<<<<<<<<<<< - * cdef void slice_assign_scalar(__Pyx_memviewslice *dst, int ndim, - * size_t itemsize, void *item, -*/ - - /* function exit code */ -} - -/* "View.MemoryView":1400 - * - * - * @cname('__pyx_memoryview__slice_assign_scalar') # <<<<<<<<<<<<<< - * cdef void _slice_assign_scalar(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, -*/ - -static void __pyx_memoryview__slice_assign_scalar(char *__pyx_v_data, Py_ssize_t *__pyx_v_shape, Py_ssize_t *__pyx_v_strides, int __pyx_v_ndim, size_t __pyx_v_itemsize, void *__pyx_v_item) { - CYTHON_UNUSED Py_ssize_t __pyx_v_i; - Py_ssize_t __pyx_v_stride; - Py_ssize_t __pyx_v_extent; - int __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - - /* "View.MemoryView":1405 - * size_t itemsize, void *item) noexcept nogil: - * cdef Py_ssize_t i - * cdef Py_ssize_t stride = strides[0] # <<<<<<<<<<<<<< - * cdef Py_ssize_t extent = shape[0] - * -*/ - __pyx_v_stride = (__pyx_v_strides[0]); - - /* "View.MemoryView":1406 - * cdef Py_ssize_t i - * cdef Py_ssize_t stride = strides[0] - * cdef Py_ssize_t extent = shape[0] # <<<<<<<<<<<<<< - * - * if ndim == 1: -*/ - __pyx_v_extent = (__pyx_v_shape[0]); - - /* "View.MemoryView":1408 - * cdef Py_ssize_t extent = shape[0] - * - * if ndim == 1: # <<<<<<<<<<<<<< - * for i in range(extent): - * memcpy(data, item, itemsize) -*/ - __pyx_t_1 = (__pyx_v_ndim == 1); - if (__pyx_t_1) { - - /* "View.MemoryView":1409 - * - * if ndim == 1: - * for i in range(extent): # <<<<<<<<<<<<<< - * memcpy(data, item, itemsize) - * data += stride -*/ - __pyx_t_2 = __pyx_v_extent; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":1410 - * if ndim == 1: - * for i in range(extent): - * memcpy(data, item, itemsize) # <<<<<<<<<<<<<< - * data += stride - * else: -*/ - (void)(memcpy(__pyx_v_data, __pyx_v_item, __pyx_v_itemsize)); - - /* "View.MemoryView":1411 - * for i in range(extent): - * memcpy(data, item, itemsize) - * data += stride # <<<<<<<<<<<<<< - * else: - * for i in range(extent): -*/ - __pyx_v_data = (__pyx_v_data + __pyx_v_stride); - } - - /* "View.MemoryView":1408 - * cdef Py_ssize_t extent = shape[0] - * - * if ndim == 1: # <<<<<<<<<<<<<< - * for i in range(extent): - * memcpy(data, item, itemsize) -*/ - goto __pyx_L3; - } - - /* "View.MemoryView":1413 - * data += stride - * else: - * for i in range(extent): # <<<<<<<<<<<<<< - * _slice_assign_scalar(data, shape + 1, strides + 1, ndim - 1, itemsize, item) - * data += stride -*/ - /*else*/ { - __pyx_t_2 = __pyx_v_extent; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_i = __pyx_t_4; - - /* "View.MemoryView":1414 - * else: - * for i in range(extent): - * _slice_assign_scalar(data, shape + 1, strides + 1, ndim - 1, itemsize, item) # <<<<<<<<<<<<<< - * data += stride - * -*/ - __pyx_memoryview__slice_assign_scalar(__pyx_v_data, (__pyx_v_shape + 1), (__pyx_v_strides + 1), (__pyx_v_ndim - 1), __pyx_v_itemsize, __pyx_v_item); - - /* "View.MemoryView":1415 - * for i in range(extent): - * _slice_assign_scalar(data, shape + 1, strides + 1, ndim - 1, itemsize, item) - * data += stride # <<<<<<<<<<<<<< - * -*/ - __pyx_v_data = (__pyx_v_data + __pyx_v_stride); - } - } - __pyx_L3:; - - /* "View.MemoryView":1400 - * - * - * @cname('__pyx_memoryview__slice_assign_scalar') # <<<<<<<<<<<<<< - * cdef void _slice_assign_scalar(char *data, Py_ssize_t *shape, - * Py_ssize_t *strides, int ndim, -*/ - - /* function exit code */ -} - -/* "(tree fragment)":4 - * int __Pyx_CheckUnpickleChecksum(long, long, long, long, const char*) except -1 - * int __Pyx_UpdateUnpickledDict(object, object, Py_ssize_t) except -1 - * def __pyx_unpickle_Enum(__pyx_type, long __pyx_checksum, tuple __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_result - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_15View_dot_MemoryView_1__pyx_unpickle_Enum(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyMethodDef __pyx_mdef_15View_dot_MemoryView_1__pyx_unpickle_Enum = {"__pyx_unpickle_Enum", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_15View_dot_MemoryView_1__pyx_unpickle_Enum, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_15View_dot_MemoryView_1__pyx_unpickle_Enum(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - PyObject *__pyx_v___pyx_type = 0; - long __pyx_v___pyx_checksum; - PyObject *__pyx_v___pyx_state = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[3] = {0,0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("__pyx_unpickle_Enum (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_pyx_type,&__pyx_mstate_global->__pyx_n_u_pyx_checksum,&__pyx_mstate_global->__pyx_n_u_pyx_state,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(1, 4, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 3: - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 4, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 4, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 4, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__pyx_unpickle_Enum", 0) < (0)) __PYX_ERR(1, 4, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 3; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_Enum", 1, 3, 3, i); __PYX_ERR(1, 4, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 3)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(1, 4, __pyx_L3_error) - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(1, 4, __pyx_L3_error) - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(1, 4, __pyx_L3_error) - } - __pyx_v___pyx_type = values[0]; - __pyx_v___pyx_checksum = __Pyx_PyLong_As_long(values[1]); if (unlikely((__pyx_v___pyx_checksum == (long)-1) && PyErr_Occurred())) __PYX_ERR(1, 4, __pyx_L3_error) - __pyx_v___pyx_state = ((PyObject*)values[2]); - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_Enum", 1, 3, 3, __pyx_nargs); __PYX_ERR(1, 4, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __Pyx_AddTraceback("View.MemoryView.__pyx_unpickle_Enum", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v___pyx_state), (&PyTuple_Type), 1, "__pyx_state", 1))) __PYX_ERR(1, 4, __pyx_L1_error) - __pyx_r = __pyx_pf_15View_dot_MemoryView___pyx_unpickle_Enum(__pyx_self, __pyx_v___pyx_type, __pyx_v___pyx_checksum, __pyx_v___pyx_state); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - goto __pyx_L7_cleaned_up; - __pyx_L0:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __pyx_L7_cleaned_up:; - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_15View_dot_MemoryView___pyx_unpickle_Enum(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v___pyx_type, long __pyx_v___pyx_checksum, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_v___pyx_result = 0; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - size_t __pyx_t_4; - int __pyx_t_5; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__pyx_unpickle_Enum", 0); - - /* "(tree fragment)":6 - * def __pyx_unpickle_Enum(__pyx_type, long __pyx_checksum, tuple __pyx_state): - * cdef object __pyx_result - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') # <<<<<<<<<<<<<< - * __pyx_result = Enum.__new__(__pyx_type) - * if __pyx_state is not None: -*/ - __pyx_t_1 = __Pyx_CheckUnpickleChecksum(__pyx_v___pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, ((char const *)"name")); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 6, __pyx_L1_error) - - /* "(tree fragment)":7 - * cdef object __pyx_result - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') - * __pyx_result = Enum.__new__(__pyx_type) # <<<<<<<<<<<<<< - * if __pyx_state is not None: - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) -*/ - __pyx_t_3 = ((PyObject *)__pyx_mstate_global->__pyx_MemviewEnum_type); - __Pyx_INCREF(__pyx_t_3); - __pyx_t_4 = 0; - { - PyObject *__pyx_callargs[2] = {__pyx_t_3, __pyx_v___pyx_type}; - __pyx_t_2 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_new, __pyx_callargs+__pyx_t_4, (2-__pyx_t_4) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 7, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - } - __pyx_v___pyx_result = __pyx_t_2; - __pyx_t_2 = 0; - - /* "(tree fragment)":8 - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') - * __pyx_result = Enum.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) - * return __pyx_result -*/ - __pyx_t_5 = (__pyx_v___pyx_state != ((PyObject*)Py_None)); - if (__pyx_t_5) { - - /* "(tree fragment)":9 - * __pyx_result = Enum.__new__(__pyx_type) - * if __pyx_state is not None: - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) # <<<<<<<<<<<<<< - * return __pyx_result - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): -*/ - if (unlikely(__pyx_v___pyx_state == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(1, 9, __pyx_L1_error) - } - __pyx_t_2 = __pyx_unpickle_Enum__set_state(((struct __pyx_MemviewEnum_obj *)__pyx_v___pyx_result), __pyx_v___pyx_state); if (unlikely(!__pyx_t_2)) __PYX_ERR(1, 9, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - - /* "(tree fragment)":8 - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') - * __pyx_result = Enum.__new__(__pyx_type) - * if __pyx_state is not None: # <<<<<<<<<<<<<< - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) - * return __pyx_result -*/ - } - - /* "(tree fragment)":10 - * if __pyx_state is not None: - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) - * return __pyx_result # <<<<<<<<<<<<<< - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): - * __pyx_result.name = __pyx_state[0] -*/ - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_v___pyx_result); - __pyx_r = __pyx_v___pyx_result; - goto __pyx_L0; - - /* "(tree fragment)":4 - * int __Pyx_CheckUnpickleChecksum(long, long, long, long, const char*) except -1 - * int __Pyx_UpdateUnpickledDict(object, object, Py_ssize_t) except -1 - * def __pyx_unpickle_Enum(__pyx_type, long __pyx_checksum, tuple __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_result - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_AddTraceback("View.MemoryView.__pyx_unpickle_Enum", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XDECREF(__pyx_v___pyx_result); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "(tree fragment)":11 - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): # <<<<<<<<<<<<<< - * __pyx_result.name = __pyx_state[0] - * __Pyx_UpdateUnpickledDict(__pyx_result, __pyx_state, 1) -*/ - -static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__pyx_v___pyx_result, PyObject *__pyx_v___pyx_state) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_t_2; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__pyx_unpickle_Enum__set_state", 0); - - /* "(tree fragment)":12 - * return __pyx_result - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): - * __pyx_result.name = __pyx_state[0] # <<<<<<<<<<<<<< - * __Pyx_UpdateUnpickledDict(__pyx_result, __pyx_state, 1) -*/ - __pyx_t_1 = __Pyx_GetItemInt_Tuple(__pyx_v___pyx_state, 0, long, 1, __Pyx_PyLong_From_long, 0, 0, 1, 1, __Pyx_ReferenceSharing_FunctionArgument); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 12, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __Pyx_GIVEREF(__pyx_t_1); - __Pyx_GOTREF(__pyx_v___pyx_result->name); - __Pyx_DECREF(__pyx_v___pyx_result->name); - __pyx_v___pyx_result->name = __pyx_t_1; - __pyx_t_1 = 0; - - /* "(tree fragment)":13 - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): - * __pyx_result.name = __pyx_state[0] - * __Pyx_UpdateUnpickledDict(__pyx_result, __pyx_state, 1) # <<<<<<<<<<<<<< -*/ - __pyx_t_2 = __Pyx_UpdateUnpickledDict(((PyObject *)__pyx_v___pyx_result), __pyx_v___pyx_state, 1); if (unlikely(__pyx_t_2 == ((int)-1))) __PYX_ERR(1, 13, __pyx_L1_error) - - /* "(tree fragment)":11 - * __pyx_unpickle_Enum__set_state( __pyx_result, __pyx_state) - * return __pyx_result - * cdef __pyx_unpickle_Enum__set_state(Enum __pyx_result, __pyx_state: tuple): # <<<<<<<<<<<<<< - * __pyx_result.name = __pyx_state[0] - * __Pyx_UpdateUnpickledDict(__pyx_result, __pyx_state, 1) -*/ - - /* function exit code */ - __pyx_r = Py_None; __Pyx_INCREF(Py_None); - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("View.MemoryView.__pyx_unpickle_Enum__set_state", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":19 - * # NOTE: This module is a feature under developement. - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(double __pyx_v_start, double __pyx_v_stop, double __pyx_v_step) { - size_t __pyx_r; - - /* "pyvale/sensorsim/cython/rastercyth.py":29 - * stop: cython.double, - * step: cython.double) -> cython.size_t: - * return int(ceil((stop - start) / step)) # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = ((size_t)ceil(((__pyx_v_stop - __pyx_v_start) / __pyx_v_step))); - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":19 - * # NOTE: This module is a feature under developement. - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":32 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_range_int(int __pyx_v_start, int __pyx_v_stop, int __pyx_v_step, __Pyx_memviewslice __pyx_v_vec_buffer) { - size_t __pyx_v_num_vals; - size_t __pyx_v_ii; - __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } }; - Py_ssize_t __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - size_t __pyx_t_5; - size_t __pyx_t_6; - __Pyx_memviewslice __pyx_t_7 = { 0, 0, { 0 }, { 0 }, { 0 } }; - int __pyx_t_8; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - - /* "pyvale/sensorsim/cython/rastercyth.py":44 - * vec_buffer: cython.long[:]) -> cython.long[:]: - * - * num_vals: cython.size_t = int(ceil((stop - start) / step)) # <<<<<<<<<<<<<< - * - * vec_buffer[0] = start -*/ - __pyx_v_num_vals = ((size_t)ceil(((__pyx_v_stop - __pyx_v_start) / __pyx_v_step))); - - /* "pyvale/sensorsim/cython/rastercyth.py":46 - * num_vals: cython.size_t = int(ceil((stop - start) / step)) - * - * vec_buffer[0] = start # <<<<<<<<<<<<<< - * ii: cython.size_t - * for ii in range(1,num_vals): -*/ - __pyx_t_1 = 0; - *((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_1 * __pyx_v_vec_buffer.strides[0]) )) = __pyx_v_start; - - /* "pyvale/sensorsim/cython/rastercyth.py":48 - * vec_buffer[0] = start - * ii: cython.size_t - * for ii in range(1,num_vals): # <<<<<<<<<<<<<< - * vec_buffer[ii] = vec_buffer[ii-1] + step - * -*/ - __pyx_t_2 = __pyx_v_num_vals; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 1; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_ii = __pyx_t_4; - - /* "pyvale/sensorsim/cython/rastercyth.py":49 - * ii: cython.size_t - * for ii in range(1,num_vals): - * vec_buffer[ii] = vec_buffer[ii-1] + step # <<<<<<<<<<<<<< - * - * return vec_buffer[0:num_vals] -*/ - __pyx_t_5 = (__pyx_v_ii - 1); - __pyx_t_6 = __pyx_v_ii; - *((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_6 * __pyx_v_vec_buffer.strides[0]) )) = ((*((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_5 * __pyx_v_vec_buffer.strides[0]) ))) + __pyx_v_step); - } - - /* "pyvale/sensorsim/cython/rastercyth.py":51 - * vec_buffer[ii] = vec_buffer[ii-1] + step - * - * return vec_buffer[0:num_vals] # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_7.data = __pyx_v_vec_buffer.data; - __pyx_t_7.memview = __pyx_v_vec_buffer.memview; - __PYX_INC_MEMVIEW(&__pyx_t_7, 0); - __pyx_t_8 = -1; - if (unlikely(__pyx_memoryview_slice_memviewslice( - &__pyx_t_7, - __pyx_v_vec_buffer.shape[0], __pyx_v_vec_buffer.strides[0], __pyx_v_vec_buffer.suboffsets[0], - 0, - 0, - &__pyx_t_8, - 0, - __pyx_v_num_vals, - 0, - 1, - 1, - 0, - 1) < 0)) -{ - __PYX_ERR(0, 51, __pyx_L1_error) -} - -__pyx_r = __pyx_t_7; - __pyx_t_7.memview = NULL; - __pyx_t_7.data = NULL; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":32 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_7, 1); - __pyx_r.data = NULL; - __pyx_r.memview = NULL; - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.vec_range_int", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - goto __pyx_L2; - __pyx_L0:; - if (unlikely(!__pyx_r.memview)) { - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized"); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - } - __pyx_L2:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":54 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__Pyx_memviewslice __pyx_v_vals) { - size_t __pyx_v_num_vals; - size_t __pyx_v_ii; - double __pyx_v_max_val; - double __pyx_r; - size_t __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - int __pyx_t_5; - - /* "pyvale/sensorsim/cython/rastercyth.py":63 - * def vec_max_double(vals: cython.double[:]) -> cython.double: - * - * num_vals: cython.size_t = vals.shape[0] # <<<<<<<<<<<<<< - * - * ii: cython.size_t = 0 -*/ - __pyx_v_num_vals = (__pyx_v_vals.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":65 - * num_vals: cython.size_t = vals.shape[0] - * - * ii: cython.size_t = 0 # <<<<<<<<<<<<<< - * max_val: cython.double = vals[ii] - * -*/ - __pyx_v_ii = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":66 - * - * ii: cython.size_t = 0 - * max_val: cython.double = vals[ii] # <<<<<<<<<<<<<< - * - * for ii in range(1,num_vals): -*/ - __pyx_t_1 = __pyx_v_ii; - __pyx_v_max_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_1 * __pyx_v_vals.strides[0]) ))); - - /* "pyvale/sensorsim/cython/rastercyth.py":68 - * max_val: cython.double = vals[ii] - * - * for ii in range(1,num_vals): # <<<<<<<<<<<<<< - * if vals[ii] > max_val: - * max_val = vals[ii] -*/ - __pyx_t_1 = __pyx_v_num_vals; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 1; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_ii = __pyx_t_3; - - /* "pyvale/sensorsim/cython/rastercyth.py":69 - * - * for ii in range(1,num_vals): - * if vals[ii] > max_val: # <<<<<<<<<<<<<< - * max_val = vals[ii] - * -*/ - __pyx_t_4 = __pyx_v_ii; - __pyx_t_5 = ((*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))) > __pyx_v_max_val); - if (__pyx_t_5) { - - /* "pyvale/sensorsim/cython/rastercyth.py":70 - * for ii in range(1,num_vals): - * if vals[ii] > max_val: - * max_val = vals[ii] # <<<<<<<<<<<<<< - * - * return max_val -*/ - __pyx_t_4 = __pyx_v_ii; - __pyx_v_max_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))); - - /* "pyvale/sensorsim/cython/rastercyth.py":69 - * - * for ii in range(1,num_vals): - * if vals[ii] > max_val: # <<<<<<<<<<<<<< - * max_val = vals[ii] - * -*/ - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":72 - * max_val = vals[ii] - * - * return max_val # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_max_val; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":54 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":75 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__Pyx_memviewslice __pyx_v_vals) { - size_t __pyx_v_num_vals; - size_t __pyx_v_ii; - double __pyx_v_min_val; - double __pyx_r; - size_t __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - int __pyx_t_5; - - /* "pyvale/sensorsim/cython/rastercyth.py":84 - * def vec_min_double(vals: cython.double[:]) -> cython.double: - * - * num_vals: cython.size_t = vals.shape[0] # <<<<<<<<<<<<<< - * - * ii: cython.size_t = 0 -*/ - __pyx_v_num_vals = (__pyx_v_vals.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":86 - * num_vals: cython.size_t = vals.shape[0] - * - * ii: cython.size_t = 0 # <<<<<<<<<<<<<< - * min_val: cython.double = vals[ii] - * -*/ - __pyx_v_ii = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":87 - * - * ii: cython.size_t = 0 - * min_val: cython.double = vals[ii] # <<<<<<<<<<<<<< - * - * for ii in range(1,num_vals): -*/ - __pyx_t_1 = __pyx_v_ii; - __pyx_v_min_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_1 * __pyx_v_vals.strides[0]) ))); - - /* "pyvale/sensorsim/cython/rastercyth.py":89 - * min_val: cython.double = vals[ii] - * - * for ii in range(1,num_vals): # <<<<<<<<<<<<<< - * if vals[ii] < min_val: - * min_val = vals[ii] -*/ - __pyx_t_1 = __pyx_v_num_vals; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 1; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_ii = __pyx_t_3; - - /* "pyvale/sensorsim/cython/rastercyth.py":90 - * - * for ii in range(1,num_vals): - * if vals[ii] < min_val: # <<<<<<<<<<<<<< - * min_val = vals[ii] - * -*/ - __pyx_t_4 = __pyx_v_ii; - __pyx_t_5 = ((*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))) < __pyx_v_min_val); - if (__pyx_t_5) { - - /* "pyvale/sensorsim/cython/rastercyth.py":91 - * for ii in range(1,num_vals): - * if vals[ii] < min_val: - * min_val = vals[ii] # <<<<<<<<<<<<<< - * - * return min_val -*/ - __pyx_t_4 = __pyx_v_ii; - __pyx_v_min_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))); - - /* "pyvale/sensorsim/cython/rastercyth.py":90 - * - * for ii in range(1,num_vals): - * if vals[ii] < min_val: # <<<<<<<<<<<<<< - * min_val = vals[ii] - * -*/ - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":93 - * min_val = vals[ii] - * - * return min_val # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_min_val; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":75 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":96 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__Pyx_memviewslice __pyx_v_vec0, __Pyx_memviewslice __pyx_v_vec1) { - size_t __pyx_v_vec0_len; - size_t __pyx_v_vec1_len; - size_t __pyx_v_ii; - double __pyx_v_dot; - double __pyx_r; - int __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - size_t __pyx_t_5; - size_t __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":105 - * def vec_dot_double(vec0: cython.double[:], vec1: cython.double[:] - * ) -> cython.double: - * vec0_len: cython.size_t = vec0.shape[0] # <<<<<<<<<<<<<< - * vec1_len: cython.size_t = vec1.shape[0] - * if vec0_len != vec1_len: -*/ - __pyx_v_vec0_len = (__pyx_v_vec0.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":106 - * ) -> cython.double: - * vec0_len: cython.size_t = vec0.shape[0] - * vec1_len: cython.size_t = vec1.shape[0] # <<<<<<<<<<<<<< - * if vec0_len != vec1_len: - * return 0.0 -*/ - __pyx_v_vec1_len = (__pyx_v_vec1.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":107 - * vec0_len: cython.size_t = vec0.shape[0] - * vec1_len: cython.size_t = vec1.shape[0] - * if vec0_len != vec1_len: # <<<<<<<<<<<<<< - * return 0.0 - * -*/ - __pyx_t_1 = (__pyx_v_vec0_len != __pyx_v_vec1_len); - if (__pyx_t_1) { - - /* "pyvale/sensorsim/cython/rastercyth.py":108 - * vec1_len: cython.size_t = vec1.shape[0] - * if vec0_len != vec1_len: - * return 0.0 # <<<<<<<<<<<<<< - * - * ii: cython.size_t = 0 -*/ - __pyx_r = 0.0; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":107 - * vec0_len: cython.size_t = vec0.shape[0] - * vec1_len: cython.size_t = vec1.shape[0] - * if vec0_len != vec1_len: # <<<<<<<<<<<<<< - * return 0.0 - * -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":110 - * return 0.0 - * - * ii: cython.size_t = 0 # <<<<<<<<<<<<<< - * dot: cython.double = 0.0 - * for ii in range(vec0_len): -*/ - __pyx_v_ii = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":111 - * - * ii: cython.size_t = 0 - * dot: cython.double = 0.0 # <<<<<<<<<<<<<< - * for ii in range(vec0_len): - * dot += vec0[ii]*vec1[ii] -*/ - __pyx_v_dot = 0.0; - - /* "pyvale/sensorsim/cython/rastercyth.py":112 - * ii: cython.size_t = 0 - * dot: cython.double = 0.0 - * for ii in range(vec0_len): # <<<<<<<<<<<<<< - * dot += vec0[ii]*vec1[ii] - * -*/ - __pyx_t_2 = __pyx_v_vec0_len; - __pyx_t_3 = __pyx_t_2; - for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { - __pyx_v_ii = __pyx_t_4; - - /* "pyvale/sensorsim/cython/rastercyth.py":113 - * dot: cython.double = 0.0 - * for ii in range(vec0_len): - * dot += vec0[ii]*vec1[ii] # <<<<<<<<<<<<<< - * - * return dot -*/ - __pyx_t_5 = __pyx_v_ii; - __pyx_t_6 = __pyx_v_ii; - __pyx_v_dot = (__pyx_v_dot + ((*((double *) ( /* dim=0 */ (__pyx_v_vec0.data + __pyx_t_5 * __pyx_v_vec0.strides[0]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec1.data + __pyx_t_6 * __pyx_v_vec1.strides[0]) ))))); - } - - /* "pyvale/sensorsim/cython/rastercyth.py":115 - * dot += vec0[ii]*vec1[ii] - * - * return dot # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_dot; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":96 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":118 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(double __pyx_v_min_val) { - int __pyx_v_min_ind; - int __pyx_r; - int __pyx_t_1; - - /* "pyvale/sensorsim/cython/rastercyth.py":126 - * @cython.exceptval(check=False) - * def bound_index_min(min_val: cython.double) -> cython.int: - * min_ind: cython.int = int(floor(min_val)) # <<<<<<<<<<<<<< - * if min_ind < 0: - * min_ind = 0 -*/ - __pyx_v_min_ind = ((int)floor(__pyx_v_min_val)); - - /* "pyvale/sensorsim/cython/rastercyth.py":127 - * def bound_index_min(min_val: cython.double) -> cython.int: - * min_ind: cython.int = int(floor(min_val)) - * if min_ind < 0: # <<<<<<<<<<<<<< - * min_ind = 0 - * return min_ind -*/ - __pyx_t_1 = (__pyx_v_min_ind < 0); - if (__pyx_t_1) { - - /* "pyvale/sensorsim/cython/rastercyth.py":128 - * min_ind: cython.int = int(floor(min_val)) - * if min_ind < 0: - * min_ind = 0 # <<<<<<<<<<<<<< - * return min_ind - * -*/ - __pyx_v_min_ind = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":127 - * def bound_index_min(min_val: cython.double) -> cython.int: - * min_ind: cython.int = int(floor(min_val)) - * if min_ind < 0: # <<<<<<<<<<<<<< - * min_ind = 0 - * return min_ind -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":129 - * if min_ind < 0: - * min_ind = 0 - * return min_ind # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_min_ind; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":118 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":132 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(double __pyx_v_max_val, int __pyx_v_num_pixels) { - int __pyx_v_max_ind; - int __pyx_r; - int __pyx_t_1; - - /* "pyvale/sensorsim/cython/rastercyth.py":141 - * def bound_index_max(max_val: cython.double, - * num_pixels: cython.int) -> cython.int: - * max_ind: cython.int = int(ceil(max_val)) # <<<<<<<<<<<<<< - * if max_ind > (num_pixels-1): - * max_ind = (num_pixels-1) -*/ - __pyx_v_max_ind = ((int)ceil(__pyx_v_max_val)); - - /* "pyvale/sensorsim/cython/rastercyth.py":142 - * num_pixels: cython.int) -> cython.int: - * max_ind: cython.int = int(ceil(max_val)) - * if max_ind > (num_pixels-1): # <<<<<<<<<<<<<< - * max_ind = (num_pixels-1) - * return max_ind -*/ - __pyx_t_1 = (__pyx_v_max_ind > (__pyx_v_num_pixels - 1)); - if (__pyx_t_1) { - - /* "pyvale/sensorsim/cython/rastercyth.py":143 - * max_ind: cython.int = int(ceil(max_val)) - * if max_ind > (num_pixels-1): - * max_ind = (num_pixels-1) # <<<<<<<<<<<<<< - * return max_ind - * -*/ - __pyx_v_max_ind = (__pyx_v_num_pixels - 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":142 - * num_pixels: cython.int) -> cython.int: - * max_ind: cython.int = int(ceil(max_val)) - * if max_ind > (num_pixels-1): # <<<<<<<<<<<<<< - * max_ind = (num_pixels-1) - * return max_ind -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":144 - * if max_ind > (num_pixels-1): - * max_ind = (num_pixels-1) - * return max_ind # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_max_ind; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":132 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":147 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static CYTHON_INLINE __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_mult_mat44_by_vec3(__Pyx_memviewslice __pyx_v_mat44, __Pyx_memviewslice __pyx_v_vec3_in, __Pyx_memviewslice __pyx_v_vec3_out) { - __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } }; - Py_ssize_t __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - Py_ssize_t __pyx_t_6; - Py_ssize_t __pyx_t_7; - Py_ssize_t __pyx_t_8; - Py_ssize_t __pyx_t_9; - Py_ssize_t __pyx_t_10; - Py_ssize_t __pyx_t_11; - Py_ssize_t __pyx_t_12; - - /* "pyvale/sensorsim/cython/rastercyth.py":157 - * vec3_out: cython.double[:]) -> cython.double[:]: - * - * vec3_out[0] = (mat44[0,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[0,1]*vec3_in[1] - * + mat44[0,2]*vec3_in[2] -*/ - __pyx_t_1 = 0; - __pyx_t_2 = 0; - __pyx_t_3 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":158 - * - * vec3_out[0] = (mat44[0,0]*vec3_in[0] - * + mat44[0,1]*vec3_in[1] # <<<<<<<<<<<<<< - * + mat44[0,2]*vec3_in[2] - * + mat44[0,3]) -*/ - __pyx_t_4 = 0; - __pyx_t_5 = 1; - __pyx_t_6 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":159 - * vec3_out[0] = (mat44[0,0]*vec3_in[0] - * + mat44[0,1]*vec3_in[1] - * + mat44[0,2]*vec3_in[2] # <<<<<<<<<<<<<< - * + mat44[0,3]) - * vec3_out[1] = (mat44[1,0]*vec3_in[0] -*/ - __pyx_t_7 = 0; - __pyx_t_8 = 2; - __pyx_t_9 = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":160 - * + mat44[0,1]*vec3_in[1] - * + mat44[0,2]*vec3_in[2] - * + mat44[0,3]) # <<<<<<<<<<<<<< - * vec3_out[1] = (mat44[1,0]*vec3_in[0] - * + mat44[1,1]*vec3_in[1] -*/ - __pyx_t_10 = 0; - __pyx_t_11 = 3; - - /* "pyvale/sensorsim/cython/rastercyth.py":157 - * vec3_out: cython.double[:]) -> cython.double[:]: - * - * vec3_out[0] = (mat44[0,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[0,1]*vec3_in[1] - * + mat44[0,2]*vec3_in[2] -*/ - __pyx_t_12 = 0; - *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_1 * __pyx_v_mat44.strides[0]) ) + __pyx_t_2 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_4 * __pyx_v_mat44.strides[0]) ) + __pyx_t_5 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_7 * __pyx_v_mat44.strides[0]) ) + __pyx_t_8 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_10 * __pyx_v_mat44.strides[0]) ) + __pyx_t_11 * __pyx_v_mat44.strides[1]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":161 - * + mat44[0,2]*vec3_in[2] - * + mat44[0,3]) - * vec3_out[1] = (mat44[1,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[1,1]*vec3_in[1] - * + mat44[1,2]*vec3_in[2] -*/ - __pyx_t_11 = 1; - __pyx_t_10 = 0; - __pyx_t_9 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":162 - * + mat44[0,3]) - * vec3_out[1] = (mat44[1,0]*vec3_in[0] - * + mat44[1,1]*vec3_in[1] # <<<<<<<<<<<<<< - * + mat44[1,2]*vec3_in[2] - * + mat44[1,3]) -*/ - __pyx_t_8 = 1; - __pyx_t_7 = 1; - __pyx_t_6 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":163 - * vec3_out[1] = (mat44[1,0]*vec3_in[0] - * + mat44[1,1]*vec3_in[1] - * + mat44[1,2]*vec3_in[2] # <<<<<<<<<<<<<< - * + mat44[1,3]) - * vec3_out[2] = (mat44[2,0]*vec3_in[0] -*/ - __pyx_t_5 = 1; - __pyx_t_4 = 2; - __pyx_t_3 = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":164 - * + mat44[1,1]*vec3_in[1] - * + mat44[1,2]*vec3_in[2] - * + mat44[1,3]) # <<<<<<<<<<<<<< - * vec3_out[2] = (mat44[2,0]*vec3_in[0] - * + mat44[2,1]*vec3_in[1] -*/ - __pyx_t_2 = 1; - __pyx_t_1 = 3; - - /* "pyvale/sensorsim/cython/rastercyth.py":161 - * + mat44[0,2]*vec3_in[2] - * + mat44[0,3]) - * vec3_out[1] = (mat44[1,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[1,1]*vec3_in[1] - * + mat44[1,2]*vec3_in[2] -*/ - __pyx_t_12 = 1; - *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_11 * __pyx_v_mat44.strides[0]) ) + __pyx_t_10 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_8 * __pyx_v_mat44.strides[0]) ) + __pyx_t_7 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_5 * __pyx_v_mat44.strides[0]) ) + __pyx_t_4 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_2 * __pyx_v_mat44.strides[0]) ) + __pyx_t_1 * __pyx_v_mat44.strides[1]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":165 - * + mat44[1,2]*vec3_in[2] - * + mat44[1,3]) - * vec3_out[2] = (mat44[2,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[2,1]*vec3_in[1] - * + mat44[2,2]*vec3_in[2] -*/ - __pyx_t_1 = 2; - __pyx_t_2 = 0; - __pyx_t_3 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":166 - * + mat44[1,3]) - * vec3_out[2] = (mat44[2,0]*vec3_in[0] - * + mat44[2,1]*vec3_in[1] # <<<<<<<<<<<<<< - * + mat44[2,2]*vec3_in[2] - * + mat44[2,3]) -*/ - __pyx_t_4 = 2; - __pyx_t_5 = 1; - __pyx_t_6 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":167 - * vec3_out[2] = (mat44[2,0]*vec3_in[0] - * + mat44[2,1]*vec3_in[1] - * + mat44[2,2]*vec3_in[2] # <<<<<<<<<<<<<< - * + mat44[2,3]) - * vec3_out[3] = (mat44[3,0]*vec3_in[0] -*/ - __pyx_t_7 = 2; - __pyx_t_8 = 2; - __pyx_t_9 = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":168 - * + mat44[2,1]*vec3_in[1] - * + mat44[2,2]*vec3_in[2] - * + mat44[2,3]) # <<<<<<<<<<<<<< - * vec3_out[3] = (mat44[3,0]*vec3_in[0] - * + mat44[3,1]*vec3_in[1] -*/ - __pyx_t_10 = 2; - __pyx_t_11 = 3; - - /* "pyvale/sensorsim/cython/rastercyth.py":165 - * + mat44[1,2]*vec3_in[2] - * + mat44[1,3]) - * vec3_out[2] = (mat44[2,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[2,1]*vec3_in[1] - * + mat44[2,2]*vec3_in[2] -*/ - __pyx_t_12 = 2; - *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_1 * __pyx_v_mat44.strides[0]) ) + __pyx_t_2 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_4 * __pyx_v_mat44.strides[0]) ) + __pyx_t_5 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_7 * __pyx_v_mat44.strides[0]) ) + __pyx_t_8 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_10 * __pyx_v_mat44.strides[0]) ) + __pyx_t_11 * __pyx_v_mat44.strides[1]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":169 - * + mat44[2,2]*vec3_in[2] - * + mat44[2,3]) - * vec3_out[3] = (mat44[3,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[3,1]*vec3_in[1] - * + mat44[3,2]*vec3_in[2] -*/ - __pyx_t_11 = 3; - __pyx_t_10 = 0; - __pyx_t_9 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":170 - * + mat44[2,3]) - * vec3_out[3] = (mat44[3,0]*vec3_in[0] - * + mat44[3,1]*vec3_in[1] # <<<<<<<<<<<<<< - * + mat44[3,2]*vec3_in[2] - * + mat44[3,3]) -*/ - __pyx_t_8 = 3; - __pyx_t_7 = 1; - __pyx_t_6 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":171 - * vec3_out[3] = (mat44[3,0]*vec3_in[0] - * + mat44[3,1]*vec3_in[1] - * + mat44[3,2]*vec3_in[2] # <<<<<<<<<<<<<< - * + mat44[3,3]) - * -*/ - __pyx_t_5 = 3; - __pyx_t_4 = 2; - __pyx_t_3 = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":172 - * + mat44[3,1]*vec3_in[1] - * + mat44[3,2]*vec3_in[2] - * + mat44[3,3]) # <<<<<<<<<<<<<< - * - * return vec3_out -*/ - __pyx_t_2 = 3; - __pyx_t_1 = 3; - - /* "pyvale/sensorsim/cython/rastercyth.py":169 - * + mat44[2,2]*vec3_in[2] - * + mat44[2,3]) - * vec3_out[3] = (mat44[3,0]*vec3_in[0] # <<<<<<<<<<<<<< - * + mat44[3,1]*vec3_in[1] - * + mat44[3,2]*vec3_in[2] -*/ - __pyx_t_12 = 3; - *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_11 * __pyx_v_mat44.strides[0]) ) + __pyx_t_10 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_8 * __pyx_v_mat44.strides[0]) ) + __pyx_t_7 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_5 * __pyx_v_mat44.strides[0]) ) + __pyx_t_4 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_2 * __pyx_v_mat44.strides[0]) ) + __pyx_t_1 * __pyx_v_mat44.strides[1]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":174 - * + mat44[3,3]) - * - * return vec3_out # <<<<<<<<<<<<<< - * - * -*/ - __PYX_INC_MEMVIEW(&__pyx_v_vec3_out, 0); - __pyx_r = __pyx_v_vec3_out; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":147 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L0:; - if (unlikely(!__pyx_r.memview)) { - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized"); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - } - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":177 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - -static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_world_to_raster_coords(__Pyx_memviewslice __pyx_v_coords_world, __Pyx_memviewslice __pyx_v_world_to_cam_mat, double __pyx_v_image_dist, __Pyx_memviewslice __pyx_v_image_dims, __Pyx_memviewslice __pyx_v_num_pixels, __Pyx_memviewslice __pyx_v_coords_raster) { - size_t __pyx_v_xx; - size_t __pyx_v_yy; - size_t __pyx_v_zz; - size_t __pyx_v_ww; - __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_1 = { 0, 0, { 0 }, { 0 }, { 0 } }; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyGILState_STATE __pyx_gilstate_save; - __PYX_INC_MEMVIEW(&__pyx_v_coords_raster, 0); - - /* "pyvale/sensorsim/cython/rastercyth.py":190 - * coords_raster: cython.double[:] - * ) -> cython.double[:]: - * xx: cython.size_t = 0 # <<<<<<<<<<<<<< - * yy: cython.size_t = 1 - * zz: cython.size_t = 2 -*/ - __pyx_v_xx = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":191 - * ) -> cython.double[:]: - * xx: cython.size_t = 0 - * yy: cython.size_t = 1 # <<<<<<<<<<<<<< - * zz: cython.size_t = 2 - * ww: cython.size_t = 3 -*/ - __pyx_v_yy = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":192 - * xx: cython.size_t = 0 - * yy: cython.size_t = 1 - * zz: cython.size_t = 2 # <<<<<<<<<<<<<< - * ww: cython.size_t = 3 - * -*/ - __pyx_v_zz = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":193 - * yy: cython.size_t = 1 - * zz: cython.size_t = 2 - * ww: cython.size_t = 3 # <<<<<<<<<<<<<< - * - * coords_raster = mult_mat44_by_vec3(world_to_cam_mat, -*/ - __pyx_v_ww = 3; - - /* "pyvale/sensorsim/cython/rastercyth.py":195 - * ww: cython.size_t = 3 - * - * coords_raster = mult_mat44_by_vec3(world_to_cam_mat, # <<<<<<<<<<<<<< - * coords_world, - * coords_raster) -*/ - __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_mult_mat44_by_vec3(__pyx_v_world_to_cam_mat, __pyx_v_coords_world, __pyx_v_coords_raster); if (unlikely(!__pyx_t_1.memview)) __PYX_ERR(0, 195, __pyx_L1_error) - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords_raster, 0); - __pyx_v_coords_raster = __pyx_t_1; - __pyx_t_1.memview = NULL; - __pyx_t_1.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":199 - * coords_raster) - * - * coords_raster[xx] = coords_raster[xx] / coords_raster[ww] # <<<<<<<<<<<<<< - * coords_raster[yy] = coords_raster[yy] / coords_raster[ww] - * coords_raster[zz] = coords_raster[zz] / coords_raster[ww] -*/ - __pyx_t_2 = __pyx_v_xx; - __pyx_t_3 = __pyx_v_ww; - __pyx_t_4 = __pyx_v_xx; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":200 - * - * coords_raster[xx] = coords_raster[xx] / coords_raster[ww] - * coords_raster[yy] = coords_raster[yy] / coords_raster[ww] # <<<<<<<<<<<<<< - * coords_raster[zz] = coords_raster[zz] / coords_raster[ww] - * -*/ - __pyx_t_3 = __pyx_v_yy; - __pyx_t_2 = __pyx_v_ww; - __pyx_t_4 = __pyx_v_yy; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":201 - * coords_raster[xx] = coords_raster[xx] / coords_raster[ww] - * coords_raster[yy] = coords_raster[yy] / coords_raster[ww] - * coords_raster[zz] = coords_raster[zz] / coords_raster[ww] # <<<<<<<<<<<<<< - * - * coords_raster[xx] = (image_dist * coords_raster[xx] -*/ - __pyx_t_2 = __pyx_v_zz; - __pyx_t_3 = __pyx_v_ww; - __pyx_t_4 = __pyx_v_zz; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":203 - * coords_raster[zz] = coords_raster[zz] / coords_raster[ww] - * - * coords_raster[xx] = (image_dist * coords_raster[xx] # <<<<<<<<<<<<<< - * / -coords_raster[zz]) - * coords_raster[yy] = (image_dist * coords_raster[yy] -*/ - __pyx_t_3 = __pyx_v_xx; - - /* "pyvale/sensorsim/cython/rastercyth.py":204 - * - * coords_raster[xx] = (image_dist * coords_raster[xx] - * / -coords_raster[zz]) # <<<<<<<<<<<<<< - * coords_raster[yy] = (image_dist * coords_raster[yy] - * / -coords_raster[zz]) -*/ - __pyx_t_2 = __pyx_v_zz; - - /* "pyvale/sensorsim/cython/rastercyth.py":203 - * coords_raster[zz] = coords_raster[zz] / coords_raster[ww] - * - * coords_raster[xx] = (image_dist * coords_raster[xx] # <<<<<<<<<<<<<< - * / -coords_raster[zz]) - * coords_raster[yy] = (image_dist * coords_raster[yy] -*/ - __pyx_t_4 = __pyx_v_xx; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((__pyx_v_image_dist * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))) / (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))))); - - /* "pyvale/sensorsim/cython/rastercyth.py":205 - * coords_raster[xx] = (image_dist * coords_raster[xx] - * / -coords_raster[zz]) - * coords_raster[yy] = (image_dist * coords_raster[yy] # <<<<<<<<<<<<<< - * / -coords_raster[zz]) - * -*/ - __pyx_t_2 = __pyx_v_yy; - - /* "pyvale/sensorsim/cython/rastercyth.py":206 - * / -coords_raster[zz]) - * coords_raster[yy] = (image_dist * coords_raster[yy] - * / -coords_raster[zz]) # <<<<<<<<<<<<<< - * - * coords_raster[xx] = 2*coords_raster[xx] / image_dims[xx] -*/ - __pyx_t_3 = __pyx_v_zz; - - /* "pyvale/sensorsim/cython/rastercyth.py":205 - * coords_raster[xx] = (image_dist * coords_raster[xx] - * / -coords_raster[zz]) - * coords_raster[yy] = (image_dist * coords_raster[yy] # <<<<<<<<<<<<<< - * / -coords_raster[zz]) - * -*/ - __pyx_t_4 = __pyx_v_yy; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((__pyx_v_image_dist * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))))); - - /* "pyvale/sensorsim/cython/rastercyth.py":208 - * / -coords_raster[zz]) - * - * coords_raster[xx] = 2*coords_raster[xx] / image_dims[xx] # <<<<<<<<<<<<<< - * coords_raster[yy] = 2*coords_raster[yy] / image_dims[yy] - * -*/ - __pyx_t_3 = __pyx_v_xx; - __pyx_t_2 = __pyx_v_xx; - __pyx_t_4 = __pyx_v_xx; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((2.0 * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))) / (*((double *) ( /* dim=0 */ (__pyx_v_image_dims.data + __pyx_t_2 * __pyx_v_image_dims.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":209 - * - * coords_raster[xx] = 2*coords_raster[xx] / image_dims[xx] - * coords_raster[yy] = 2*coords_raster[yy] / image_dims[yy] # <<<<<<<<<<<<<< - * - * coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx] -*/ - __pyx_t_2 = __pyx_v_yy; - __pyx_t_3 = __pyx_v_yy; - __pyx_t_4 = __pyx_v_yy; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((2.0 * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / (*((double *) ( /* dim=0 */ (__pyx_v_image_dims.data + __pyx_t_3 * __pyx_v_image_dims.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":211 - * coords_raster[yy] = 2*coords_raster[yy] / image_dims[yy] - * - * coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx] # <<<<<<<<<<<<<< - * coords_raster[yy] = (1-coords_raster[yy])/2 * num_pixels[yy] - * coords_raster[zz] = -coords_raster[zz] -*/ - __pyx_t_3 = __pyx_v_xx; - __pyx_t_2 = __pyx_v_xx; - __pyx_t_4 = __pyx_v_xx; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))) + 1.0) / 2.0) * (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_2 * __pyx_v_num_pixels.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":212 - * - * coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx] - * coords_raster[yy] = (1-coords_raster[yy])/2 * num_pixels[yy] # <<<<<<<<<<<<<< - * coords_raster[zz] = -coords_raster[zz] - * -*/ - __pyx_t_2 = __pyx_v_yy; - __pyx_t_3 = __pyx_v_yy; - __pyx_t_4 = __pyx_v_yy; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = (((1.0 - (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / 2.0) * (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_3 * __pyx_v_num_pixels.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":213 - * coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx] - * coords_raster[yy] = (1-coords_raster[yy])/2 * num_pixels[yy] - * coords_raster[zz] = -coords_raster[zz] # <<<<<<<<<<<<<< - * - * return coords_raster -*/ - __pyx_t_3 = __pyx_v_zz; - __pyx_t_2 = __pyx_v_zz; - *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )) = (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":215 - * coords_raster[zz] = -coords_raster[zz] - * - * return coords_raster # <<<<<<<<<<<<<< - * - * @cython.cfunc -*/ - __PYX_INC_MEMVIEW(&__pyx_v_coords_raster, 0); - __pyx_r = __pyx_v_coords_raster; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":177 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc # python+C or cython.cfunc for C only - * @cython.boundscheck(False) # Turn off array bounds checking -*/ - - /* function exit code */ - __pyx_L1_error:; - __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1); - __pyx_r.data = NULL; - __pyx_r.memview = NULL; - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.world_to_raster_coords", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - goto __pyx_L2; - __pyx_L0:; - if (unlikely(!__pyx_r.memview)) { - PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure(); - PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized"); - __Pyx_PyGILState_Release(__pyx_gilstate_save); - } - __pyx_L2:; - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords_raster, 0); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":217 - * return coords_raster - * - * @cython.cfunc # <<<<<<<<<<<<<< - * @cython.nogil - * @cython.boundscheck(False) -*/ - -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__Pyx_memviewslice __pyx_v_vert_0, __Pyx_memviewslice __pyx_v_vert_1, __Pyx_memviewslice __pyx_v_vert_2) { - double __pyx_v_edge_fun; - double __pyx_r; - Py_ssize_t __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - Py_ssize_t __pyx_t_6; - Py_ssize_t __pyx_t_7; - Py_ssize_t __pyx_t_8; - - /* "pyvale/sensorsim/cython/rastercyth.py":227 - * vert_2: cython.double[:]) -> cython.double: - * edge_fun: cython.double = ( - * (vert_2[0] - vert_0[0]) * (vert_1[1] - vert_0[1]) # <<<<<<<<<<<<<< - * - (vert_2[1] - vert_0[1]) * (vert_1[0] - vert_0[0])) - * return edge_fun -*/ - __pyx_t_1 = 0; - __pyx_t_2 = 0; - __pyx_t_3 = 1; - __pyx_t_4 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":228 - * edge_fun: cython.double = ( - * (vert_2[0] - vert_0[0]) * (vert_1[1] - vert_0[1]) - * - (vert_2[1] - vert_0[1]) * (vert_1[0] - vert_0[0])) # <<<<<<<<<<<<<< - * return edge_fun - * -*/ - __pyx_t_5 = 1; - __pyx_t_6 = 1; - __pyx_t_7 = 0; - __pyx_t_8 = 0; - __pyx_v_edge_fun = ((((*((double *) ( /* dim=0 */ (__pyx_v_vert_2.data + __pyx_t_1 * __pyx_v_vert_2.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_2 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_3 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_4 * __pyx_v_vert_0.strides[0]) ))))) - (((*((double *) ( /* dim=0 */ (__pyx_v_vert_2.data + __pyx_t_5 * __pyx_v_vert_2.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_6 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_7 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_8 * __pyx_v_vert_0.strides[0]) )))))); - - /* "pyvale/sensorsim/cython/rastercyth.py":229 - * (vert_2[0] - vert_0[0]) * (vert_1[1] - vert_0[1]) - * - (vert_2[1] - vert_0[1]) * (vert_1[0] - vert_0[0])) - * return edge_fun # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_edge_fun; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":217 - * return coords_raster - * - * @cython.cfunc # <<<<<<<<<<<<<< - * @cython.nogil - * @cython.boundscheck(False) -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":232 - * - * - * @cython.cfunc # <<<<<<<<<<<<<< - * @cython.nogil - * @cython.boundscheck(False) -*/ - -static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function_pt(__Pyx_memviewslice __pyx_v_vert_0, __Pyx_memviewslice __pyx_v_vert_1, double __pyx_v_vert_2_x, double __pyx_v_vert_2_y) { - double __pyx_v_edge_fun; - double __pyx_r; - Py_ssize_t __pyx_t_1; - Py_ssize_t __pyx_t_2; - Py_ssize_t __pyx_t_3; - Py_ssize_t __pyx_t_4; - Py_ssize_t __pyx_t_5; - Py_ssize_t __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":243 - * vert_2_y: cython.double) -> cython.double: - * edge_fun: cython.double = ( - * (vert_2_x - vert_0[0]) * (vert_1[1] - vert_0[1]) # <<<<<<<<<<<<<< - * - (vert_2_y - vert_0[1]) * (vert_1[0] - vert_0[0])) - * return edge_fun -*/ - __pyx_t_1 = 0; - __pyx_t_2 = 1; - __pyx_t_3 = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":244 - * edge_fun: cython.double = ( - * (vert_2_x - vert_0[0]) * (vert_1[1] - vert_0[1]) - * - (vert_2_y - vert_0[1]) * (vert_1[0] - vert_0[0])) # <<<<<<<<<<<<<< - * return edge_fun - * -*/ - __pyx_t_4 = 1; - __pyx_t_5 = 0; - __pyx_t_6 = 0; - __pyx_v_edge_fun = (((__pyx_v_vert_2_x - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_1 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_2 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_3 * __pyx_v_vert_0.strides[0]) ))))) - ((__pyx_v_vert_2_y - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_4 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_5 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_6 * __pyx_v_vert_0.strides[0]) )))))); - - /* "pyvale/sensorsim/cython/rastercyth.py":245 - * (vert_2_x - vert_0[0]) * (vert_1[1] - vert_0[1]) - * - (vert_2_y - vert_0[1]) * (vert_1[0] - vert_0[0])) - * return edge_fun # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = __pyx_v_edge_fun; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":232 - * - * - * @cython.cfunc # <<<<<<<<<<<<<< - * @cython.nogil - * @cython.boundscheck(False) -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":248 - * - * - * @cython.ccall # <<<<<<<<<<<<<< - * @cython.boundscheck(False) - * @cython.wraparound(False) -*/ - -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__Pyx_memviewslice __pyx_v_image_subpx, int __pyx_v_sub_samp, CYTHON_UNUSED int __pyx_skip_dispatch) { - size_t __pyx_v_px_num_y; - size_t __pyx_v_px_num_x; - PyObject *__pyx_v_image_buff_avg_np = NULL; - __Pyx_memviewslice __pyx_v_image_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } }; - size_t __pyx_v_num_subpx_y; - size_t __pyx_v_num_subpx_x; - double __pyx_v_subpx_per_px; - size_t __pyx_v_ss_size; - size_t __pyx_v_num_px_y; - size_t __pyx_v_num_px_x; - double __pyx_v_px_sum; - size_t __pyx_v_ix; - size_t __pyx_v_iy; - size_t __pyx_v_sx; - size_t __pyx_v_sy; - __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_RefNannyDeclarations - int __pyx_t_1; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - size_t __pyx_t_6; - __Pyx_memviewslice __pyx_t_7 = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - size_t __pyx_t_10; - size_t __pyx_t_11; - size_t __pyx_t_12; - size_t __pyx_t_13; - size_t __pyx_t_14; - size_t __pyx_t_15; - size_t __pyx_t_16; - size_t __pyx_t_17; - size_t __pyx_t_18; - size_t __pyx_t_19; - size_t __pyx_t_20; - size_t __pyx_t_21; - size_t __pyx_t_22; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("average_image", 0); - - /* "pyvale/sensorsim/cython/rastercyth.py":256 - * ) -> cython.double[:,:]: - * - * if sub_samp <= 1: # <<<<<<<<<<<<<< - * return np.asarray(image_subpx[:,:]) - * -*/ - __pyx_t_1 = (__pyx_v_sub_samp <= 1); - if (__pyx_t_1) { - - /* "pyvale/sensorsim/cython/rastercyth.py":257 - * - * if sub_samp <= 1: - * return np.asarray(image_subpx[:,:]) # <<<<<<<<<<<<<< - * - * px_num_y: cython.size_t = int(ceil(image_subpx.shape[0]/sub_samp)) -*/ - __pyx_t_3 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_asarray); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __pyx_memoryview_fromslice(__pyx_v_image_subpx, 2, (PyObject *(*)(char *)) __pyx_memview_get_double, (int (*)(char *, PyObject *)) __pyx_memview_set_double, 0);; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_6 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_5))) { - __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_5); - assert(__pyx_t_3); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_5); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_5, __pyx__function); - __pyx_t_6 = 0; - } - #endif - { - PyObject *__pyx_callargs[2] = {__pyx_t_3, __pyx_t_4}; - __pyx_t_2 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_5, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - } - __pyx_t_7 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_t_2, PyBUF_WRITABLE); if (unlikely(!__pyx_t_7.memview)) __PYX_ERR(0, 257, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; - __pyx_r = __pyx_t_7; - __pyx_t_7.memview = NULL; - __pyx_t_7.data = NULL; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":256 - * ) -> cython.double[:,:]: - * - * if sub_samp <= 1: # <<<<<<<<<<<<<< - * return np.asarray(image_subpx[:,:]) - * -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":259 - * return np.asarray(image_subpx[:,:]) - * - * px_num_y: cython.size_t = int(ceil(image_subpx.shape[0]/sub_samp)) # <<<<<<<<<<<<<< - * px_num_x: cython.size_t = int(ceil(image_subpx.shape[1]/sub_samp)) - * -*/ - __pyx_v_px_num_y = ((size_t)ceil(((__pyx_v_image_subpx.shape[0]) / ((Py_ssize_t)__pyx_v_sub_samp)))); - - /* "pyvale/sensorsim/cython/rastercyth.py":260 - * - * px_num_y: cython.size_t = int(ceil(image_subpx.shape[0]/sub_samp)) - * px_num_x: cython.size_t = int(ceil(image_subpx.shape[1]/sub_samp)) # <<<<<<<<<<<<<< - * - * image_buff_avg_np = np.full((px_num_y,px_num_x),0.0,dtype=np.float64) -*/ - __pyx_v_px_num_x = ((size_t)ceil(((__pyx_v_image_subpx.shape[1]) / ((Py_ssize_t)__pyx_v_sub_samp)))); - - /* "pyvale/sensorsim/cython/rastercyth.py":262 - * px_num_x: cython.size_t = int(ceil(image_subpx.shape[1]/sub_samp)) - * - * image_buff_avg_np = np.full((px_num_y,px_num_x),0.0,dtype=np.float64) # <<<<<<<<<<<<<< - * image_buff_avg: cython.double[:,:] = image_buff_avg_np - * -*/ - __pyx_t_5 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyLong_FromSize_t(__pyx_v_px_num_y); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_8 = __Pyx_PyLong_FromSize_t(__pyx_v_px_num_x); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_4); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_4) != (0)) __PYX_ERR(0, 262, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_8); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_8) != (0)) __PYX_ERR(0, 262, __pyx_L1_error); - __pyx_t_4 = 0; - __pyx_t_8 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_6 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_3))) { - __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); - assert(__pyx_t_5); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_3); - __Pyx_INCREF(__pyx_t_5); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_3, __pyx__function); - __pyx_t_6 = 0; - } - #endif - { - PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_5, __pyx_t_9, __pyx_mstate_global->__pyx_float_0_0}; - __pyx_t_8 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_8, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 262, __pyx_L1_error) - __pyx_t_2 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_3, __pyx_callargs+__pyx_t_6, (3-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_8); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 262, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - } - __pyx_v_image_buff_avg_np = __pyx_t_2; - __pyx_t_2 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":263 - * - * image_buff_avg_np = np.full((px_num_y,px_num_x),0.0,dtype=np.float64) - * image_buff_avg: cython.double[:,:] = image_buff_avg_np # <<<<<<<<<<<<<< - * - * num_subpx_y: cython.size_t = image_subpx.shape[0] -*/ - __pyx_t_7 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_image_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_7.memview)) __PYX_ERR(0, 263, __pyx_L1_error) - __pyx_v_image_buff_avg = __pyx_t_7; - __pyx_t_7.memview = NULL; - __pyx_t_7.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":265 - * image_buff_avg: cython.double[:,:] = image_buff_avg_np - * - * num_subpx_y: cython.size_t = image_subpx.shape[0] # <<<<<<<<<<<<<< - * num_subpx_x: cython.size_t = image_subpx.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) -*/ - __pyx_v_num_subpx_y = (__pyx_v_image_subpx.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":266 - * - * num_subpx_y: cython.size_t = image_subpx.shape[0] - * num_subpx_x: cython.size_t = image_subpx.shape[1] # <<<<<<<<<<<<<< - * subpx_per_px: cython.double = float(sub_samp*sub_samp) - * ss_size: cython.size_t = sub_samp -*/ - __pyx_v_num_subpx_x = (__pyx_v_image_subpx.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":267 - * num_subpx_y: cython.size_t = image_subpx.shape[0] - * num_subpx_x: cython.size_t = image_subpx.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) # <<<<<<<<<<<<<< - * ss_size: cython.size_t = sub_samp - * -*/ - __pyx_v_subpx_per_px = ((double)(__pyx_v_sub_samp * __pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":268 - * num_subpx_x: cython.size_t = image_subpx.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) - * ss_size: cython.size_t = sub_samp # <<<<<<<<<<<<<< - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) -*/ - __pyx_v_ss_size = __pyx_v_sub_samp; - - /* "pyvale/sensorsim/cython/rastercyth.py":270 - * ss_size: cython.size_t = sub_samp - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) # <<<<<<<<<<<<<< - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - * -*/ - __pyx_v_num_px_y = (__pyx_v_num_subpx_y / ((size_t)__pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":271 - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) # <<<<<<<<<<<<<< - * - * px_sum: cython.double = 0.0 -*/ - __pyx_v_num_px_x = (__pyx_v_num_subpx_x / ((size_t)__pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":273 - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - * - * px_sum: cython.double = 0.0 # <<<<<<<<<<<<<< - * - * ix: cython.size_t = 0 -*/ - __pyx_v_px_sum = 0.0; - - /* "pyvale/sensorsim/cython/rastercyth.py":275 - * px_sum: cython.double = 0.0 - * - * ix: cython.size_t = 0 # <<<<<<<<<<<<<< - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 -*/ - __pyx_v_ix = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":276 - * - * ix: cython.size_t = 0 - * iy: cython.size_t = 0 # <<<<<<<<<<<<<< - * sx: cython.size_t = 0 - * sy: cython.size_t = 0 -*/ - __pyx_v_iy = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":277 - * ix: cython.size_t = 0 - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 # <<<<<<<<<<<<<< - * sy: cython.size_t = 0 - * -*/ - __pyx_v_sx = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":278 - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 - * sy: cython.size_t = 0 # <<<<<<<<<<<<<< - * - * for iy in range(num_px_y): -*/ - __pyx_v_sy = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":280 - * sy: cython.size_t = 0 - * - * for iy in range(num_px_y): # <<<<<<<<<<<<<< - * for ix in range(num_px_x): - * px_sum = 0.0 -*/ - __pyx_t_6 = __pyx_v_num_px_y; - __pyx_t_10 = __pyx_t_6; - for (__pyx_t_11 = 0; __pyx_t_11 < __pyx_t_10; __pyx_t_11+=1) { - __pyx_v_iy = __pyx_t_11; - - /* "pyvale/sensorsim/cython/rastercyth.py":281 - * - * for iy in range(num_px_y): - * for ix in range(num_px_x): # <<<<<<<<<<<<<< - * px_sum = 0.0 - * for sy in range(ss_size): -*/ - __pyx_t_12 = __pyx_v_num_px_x; - __pyx_t_13 = __pyx_t_12; - for (__pyx_t_14 = 0; __pyx_t_14 < __pyx_t_13; __pyx_t_14+=1) { - __pyx_v_ix = __pyx_t_14; - - /* "pyvale/sensorsim/cython/rastercyth.py":282 - * for iy in range(num_px_y): - * for ix in range(num_px_x): - * px_sum = 0.0 # <<<<<<<<<<<<<< - * for sy in range(ss_size): - * for sx in range(ss_size): -*/ - __pyx_v_px_sum = 0.0; - - /* "pyvale/sensorsim/cython/rastercyth.py":283 - * for ix in range(num_px_x): - * px_sum = 0.0 - * for sy in range(ss_size): # <<<<<<<<<<<<<< - * for sx in range(ss_size): - * px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx] -*/ - __pyx_t_15 = __pyx_v_ss_size; - __pyx_t_16 = __pyx_t_15; - for (__pyx_t_17 = 0; __pyx_t_17 < __pyx_t_16; __pyx_t_17+=1) { - __pyx_v_sy = __pyx_t_17; - - /* "pyvale/sensorsim/cython/rastercyth.py":284 - * px_sum = 0.0 - * for sy in range(ss_size): - * for sx in range(ss_size): # <<<<<<<<<<<<<< - * px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx] - * -*/ - __pyx_t_18 = __pyx_v_ss_size; - __pyx_t_19 = __pyx_t_18; - for (__pyx_t_20 = 0; __pyx_t_20 < __pyx_t_19; __pyx_t_20+=1) { - __pyx_v_sx = __pyx_t_20; - - /* "pyvale/sensorsim/cython/rastercyth.py":285 - * for sy in range(ss_size): - * for sx in range(ss_size): - * px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx] # <<<<<<<<<<<<<< - * - * image_buff_avg[iy,ix] = px_sum / subpx_per_px -*/ - __pyx_t_21 = ((__pyx_v_ss_size * __pyx_v_iy) + __pyx_v_sy); - __pyx_t_22 = ((__pyx_v_ss_size * __pyx_v_ix) + __pyx_v_sx); - __pyx_v_px_sum = (__pyx_v_px_sum + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_subpx.data + __pyx_t_21 * __pyx_v_image_subpx.strides[0]) ) + __pyx_t_22 * __pyx_v_image_subpx.strides[1]) )))); - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":287 - * px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx] - * - * image_buff_avg[iy,ix] = px_sum / subpx_per_px # <<<<<<<<<<<<<< - * - * return image_buff_avg -*/ - __pyx_t_15 = __pyx_v_iy; - __pyx_t_16 = __pyx_v_ix; - *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_avg.data + __pyx_t_15 * __pyx_v_image_buff_avg.strides[0]) ) + __pyx_t_16 * __pyx_v_image_buff_avg.strides[1]) )) = (__pyx_v_px_sum / __pyx_v_subpx_per_px); - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":289 - * image_buff_avg[iy,ix] = px_sum / subpx_per_px - * - * return image_buff_avg # <<<<<<<<<<<<<< - * - * -*/ - __PYX_INC_MEMVIEW(&__pyx_v_image_buff_avg, 1); - __pyx_r = __pyx_v_image_buff_avg; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":248 - * - * - * @cython.ccall # <<<<<<<<<<<<<< - * @cython.boundscheck(False) - * @cython.wraparound(False) -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_2); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_7, 1); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); - __pyx_r.data = NULL; - __pyx_r.memview = NULL; - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename); - goto __pyx_L2; - __pyx_L0:; - if (unlikely(!__pyx_r.memview)) { - PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized"); - } - __pyx_L2:; - __Pyx_XDECREF(__pyx_v_image_buff_avg_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_avg, 1); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* Python wrapper */ -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_1average_image = {"average_image", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - __Pyx_memviewslice __pyx_v_image_subpx = { 0, 0, { 0 }, { 0 }, { 0 } }; - int __pyx_v_sub_samp; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[2] = {0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("average_image (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_image_subpx,&__pyx_mstate_global->__pyx_n_u_sub_samp,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 248, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 2: - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 248, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 248, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "average_image", 0) < (0)) __PYX_ERR(0, 248, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 2; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("average_image", 1, 2, 2, i); __PYX_ERR(0, 248, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 2)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 248, __pyx_L3_error) - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 248, __pyx_L3_error) - } - __pyx_v_image_subpx = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_image_subpx.memview)) __PYX_ERR(0, 252, __pyx_L3_error) - __pyx_v_sub_samp = __Pyx_PyLong_As_int(values[1]); if (unlikely((__pyx_v_sub_samp == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 253, __pyx_L3_error) - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("average_image", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 248, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_subpx, 1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(((PyObject *)__pyx_v_image_subpx.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "image_subpx"); __PYX_ERR(0, 252, __pyx_L1_error) - } - __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__pyx_self, __pyx_v_image_subpx, __pyx_v_sub_samp); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - goto __pyx_L7_cleaned_up; - __pyx_L0:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __pyx_L7_cleaned_up:; - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_subpx, 1); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_average_image(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_image_subpx, int __pyx_v_sub_samp) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_memviewslice __pyx_t_1 = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_t_2 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("average_image", 0); - __Pyx_XDECREF(__pyx_r); - if (unlikely(!__pyx_v_image_subpx.memview)) { __Pyx_RaiseUnboundLocalError("image_subpx"); __PYX_ERR(0, 248, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_image_subpx.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 248, __pyx_L1_error) - } - __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__pyx_v_image_subpx, __pyx_v_sub_samp, 1); if (unlikely(!__pyx_t_1.memview)) __PYX_ERR(0, 248, __pyx_L1_error) - __pyx_t_2 = __pyx_memoryview_fromslice(__pyx_t_1, 2, (PyObject *(*)(char *)) __pyx_memview_get_double, (int (*)(char *, PyObject *)) __pyx_memview_set_double, 0);; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 248, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_2); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1); - __pyx_t_1.memview = NULL; __pyx_t_1.data = NULL; - __pyx_r = __pyx_t_2; - __pyx_t_2 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1); - __Pyx_XDECREF(__pyx_t_2); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":292 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc - * @cython.boundscheck(False) -*/ - -static int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__Pyx_memviewslice __pyx_v_image_buff_subpx_in, int __pyx_v_sub_samp, __Pyx_memviewslice __pyx_v_image_buff_avg_out) { - size_t __pyx_v_num_subpx_y; - size_t __pyx_v_num_subpx_x; - double __pyx_v_subpx_per_px; - size_t __pyx_v_ss_size; - size_t __pyx_v_num_px_y; - size_t __pyx_v_num_px_x; - double __pyx_v_px_sum; - size_t __pyx_v_ix; - size_t __pyx_v_iy; - size_t __pyx_v_sx; - size_t __pyx_v_sy; - int __pyx_r; - size_t __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - size_t __pyx_t_5; - size_t __pyx_t_6; - size_t __pyx_t_7; - size_t __pyx_t_8; - size_t __pyx_t_9; - size_t __pyx_t_10; - size_t __pyx_t_11; - size_t __pyx_t_12; - size_t __pyx_t_13; - size_t __pyx_t_14; - - /* "pyvale/sensorsim/cython/rastercyth.py":303 - * ) -> cython.int: - * - * num_subpx_y: cython.size_t = image_buff_subpx_in.shape[0] # <<<<<<<<<<<<<< - * num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) -*/ - __pyx_v_num_subpx_y = (__pyx_v_image_buff_subpx_in.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":304 - * - * num_subpx_y: cython.size_t = image_buff_subpx_in.shape[0] - * num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1] # <<<<<<<<<<<<<< - * subpx_per_px: cython.double = float(sub_samp*sub_samp) - * ss_size: cython.size_t = sub_samp -*/ - __pyx_v_num_subpx_x = (__pyx_v_image_buff_subpx_in.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":305 - * num_subpx_y: cython.size_t = image_buff_subpx_in.shape[0] - * num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) # <<<<<<<<<<<<<< - * ss_size: cython.size_t = sub_samp - * -*/ - __pyx_v_subpx_per_px = ((double)(__pyx_v_sub_samp * __pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":306 - * num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1] - * subpx_per_px: cython.double = float(sub_samp*sub_samp) - * ss_size: cython.size_t = sub_samp # <<<<<<<<<<<<<< - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) -*/ - __pyx_v_ss_size = __pyx_v_sub_samp; - - /* "pyvale/sensorsim/cython/rastercyth.py":308 - * ss_size: cython.size_t = sub_samp - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) # <<<<<<<<<<<<<< - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - * -*/ - __pyx_v_num_px_y = (__pyx_v_num_subpx_y / ((size_t)__pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":309 - * - * num_px_y: cython.size_t = int(num_subpx_y/sub_samp) - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) # <<<<<<<<<<<<<< - * - * px_sum: cython.double = 0.0 -*/ - __pyx_v_num_px_x = (__pyx_v_num_subpx_x / ((size_t)__pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":311 - * num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - * - * px_sum: cython.double = 0.0 # <<<<<<<<<<<<<< - * - * ix: cython.size_t = 0 -*/ - __pyx_v_px_sum = 0.0; - - /* "pyvale/sensorsim/cython/rastercyth.py":313 - * px_sum: cython.double = 0.0 - * - * ix: cython.size_t = 0 # <<<<<<<<<<<<<< - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 -*/ - __pyx_v_ix = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":314 - * - * ix: cython.size_t = 0 - * iy: cython.size_t = 0 # <<<<<<<<<<<<<< - * sx: cython.size_t = 0 - * sy: cython.size_t = 0 -*/ - __pyx_v_iy = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":315 - * ix: cython.size_t = 0 - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 # <<<<<<<<<<<<<< - * sy: cython.size_t = 0 - * -*/ - __pyx_v_sx = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":316 - * iy: cython.size_t = 0 - * sx: cython.size_t = 0 - * sy: cython.size_t = 0 # <<<<<<<<<<<<<< - * - * for iy in range(num_px_y): -*/ - __pyx_v_sy = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":318 - * sy: cython.size_t = 0 - * - * for iy in range(num_px_y): # <<<<<<<<<<<<<< - * for ix in range(num_px_x): - * px_sum = 0.0 -*/ - __pyx_t_1 = __pyx_v_num_px_y; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_iy = __pyx_t_3; - - /* "pyvale/sensorsim/cython/rastercyth.py":319 - * - * for iy in range(num_px_y): - * for ix in range(num_px_x): # <<<<<<<<<<<<<< - * px_sum = 0.0 - * for sy in range(ss_size): -*/ - __pyx_t_4 = __pyx_v_num_px_x; - __pyx_t_5 = __pyx_t_4; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_ix = __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":320 - * for iy in range(num_px_y): - * for ix in range(num_px_x): - * px_sum = 0.0 # <<<<<<<<<<<<<< - * for sy in range(ss_size): - * for sx in range(ss_size): -*/ - __pyx_v_px_sum = 0.0; - - /* "pyvale/sensorsim/cython/rastercyth.py":321 - * for ix in range(num_px_x): - * px_sum = 0.0 - * for sy in range(ss_size): # <<<<<<<<<<<<<< - * for sx in range(ss_size): - * px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx] -*/ - __pyx_t_7 = __pyx_v_ss_size; - __pyx_t_8 = __pyx_t_7; - for (__pyx_t_9 = 0; __pyx_t_9 < __pyx_t_8; __pyx_t_9+=1) { - __pyx_v_sy = __pyx_t_9; - - /* "pyvale/sensorsim/cython/rastercyth.py":322 - * px_sum = 0.0 - * for sy in range(ss_size): - * for sx in range(ss_size): # <<<<<<<<<<<<<< - * px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx] - * -*/ - __pyx_t_10 = __pyx_v_ss_size; - __pyx_t_11 = __pyx_t_10; - for (__pyx_t_12 = 0; __pyx_t_12 < __pyx_t_11; __pyx_t_12+=1) { - __pyx_v_sx = __pyx_t_12; - - /* "pyvale/sensorsim/cython/rastercyth.py":323 - * for sy in range(ss_size): - * for sx in range(ss_size): - * px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx] # <<<<<<<<<<<<<< - * - * image_buff_avg_out[iy,ix] = px_sum / subpx_per_px -*/ - __pyx_t_13 = ((__pyx_v_ss_size * __pyx_v_iy) + __pyx_v_sy); - __pyx_t_14 = ((__pyx_v_ss_size * __pyx_v_ix) + __pyx_v_sx); - __pyx_v_px_sum = (__pyx_v_px_sum + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_subpx_in.data + __pyx_t_13 * __pyx_v_image_buff_subpx_in.strides[0]) ) + __pyx_t_14 * __pyx_v_image_buff_subpx_in.strides[1]) )))); - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":325 - * px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx] - * - * image_buff_avg_out[iy,ix] = px_sum / subpx_per_px # <<<<<<<<<<<<<< - * - * return 0 -*/ - __pyx_t_7 = __pyx_v_iy; - __pyx_t_8 = __pyx_v_ix; - *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_avg_out.data + __pyx_t_7 * __pyx_v_image_buff_avg_out.strides[0]) ) + __pyx_t_8 * __pyx_v_image_buff_avg_out.strides[1]) )) = (__pyx_v_px_sum / __pyx_v_subpx_per_px); - } - } - - /* "pyvale/sensorsim/cython/rastercyth.py":327 - * image_buff_avg_out[iy,ix] = px_sum / subpx_per_px - * - * return 0 # <<<<<<<<<<<<<< - * - * -*/ - __pyx_r = 0; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":292 - * - * - * @cython.nogil # <<<<<<<<<<<<<< - * @cython.cfunc - * @cython.boundscheck(False) -*/ - - /* function exit code */ - __pyx_L0:; - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":331 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_static_frame(__Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data, CYTHON_UNUSED int __pyx_skip_dispatch) { - __Pyx_memviewslice __pyx_v_world_to_cam_mat = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_pixels_num = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_image_dims = { 0, 0, { 0 }, { 0 }, { 0 } }; - double __pyx_v_image_dist; - int __pyx_v_sub_samp; - size_t __pyx_v_nodes_per_elem; - size_t __pyx_v_fields_num; - int __pyx_v_sub_pix_x; - int __pyx_v_sub_pix_y; - PyObject *__pyx_v_image_buff_avg_np = NULL; - __Pyx_memviewslice __pyx_v_image_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_depth_buff_avg_np = NULL; - __Pyx_memviewslice __pyx_v_depth_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_depth_buffer_np = NULL; - __Pyx_memviewslice __pyx_v_depth_buff_subpx = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_image_buffer_np = NULL; - __Pyx_memviewslice __pyx_v_image_buff_subpx = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_nodes_raster_np = NULL; - __Pyx_memviewslice __pyx_v_nodes_raster_buff = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_field_raster_np = NULL; - __Pyx_memviewslice __pyx_v_field_raster_buff = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_weights_np = NULL; - __Pyx_memviewslice __pyx_v_weights_buff = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_px_coord_np = NULL; - __Pyx_memviewslice __pyx_v_px_coord_buff = { 0, 0, { 0 }, { 0 }, { 0 } }; - size_t __pyx_v_elems_in_image; - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - __Pyx_memviewslice __pyx_t_2 = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_3 = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_4 = { 0, 0, { 0 }, { 0 }, { 0 } }; - double __pyx_t_5; - int __pyx_t_6; - Py_ssize_t __pyx_t_7; - PyObject *__pyx_t_8 = NULL; - PyObject *__pyx_t_9 = NULL; - PyObject *__pyx_t_10 = NULL; - PyObject *__pyx_t_11 = NULL; - PyObject *__pyx_t_12 = NULL; - PyObject *__pyx_t_13 = NULL; - size_t __pyx_t_14; - __Pyx_memviewslice __pyx_t_15 = { 0, 0, { 0 }, { 0 }, { 0 } }; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("raster_static_frame", 0); - - /* "pyvale/sensorsim/cython/rastercyth.py":342 - * - * - * world_to_cam_mat: cython.double[:,:] = cam_data.world_to_cam_mat # <<<<<<<<<<<<<< - * pixels_num: cython.int[:] = cam_data.pixels_num - * image_dims: cython.double[:] = cam_data.image_dims -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_world_to_cam_mat); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 342, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 342, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_world_to_cam_mat = __pyx_t_2; - __pyx_t_2.memview = NULL; - __pyx_t_2.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":343 - * - * world_to_cam_mat: cython.double[:,:] = cam_data.world_to_cam_mat - * pixels_num: cython.int[:] = cam_data.pixels_num # <<<<<<<<<<<<<< - * image_dims: cython.double[:] = cam_data.image_dims - * image_dist: cython.double = cam_data.image_dist -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_pixels_num); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 343, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_3 = __Pyx_PyObject_to_MemoryviewSlice_ds_int(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_3.memview)) __PYX_ERR(0, 343, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_pixels_num = __pyx_t_3; - __pyx_t_3.memview = NULL; - __pyx_t_3.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":344 - * world_to_cam_mat: cython.double[:,:] = cam_data.world_to_cam_mat - * pixels_num: cython.int[:] = cam_data.pixels_num - * image_dims: cython.double[:] = cam_data.image_dims # <<<<<<<<<<<<<< - * image_dist: cython.double = cam_data.image_dist - * sub_samp: cython.int = cam_data.sub_samp -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_image_dims); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 344, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 344, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_image_dims = __pyx_t_4; - __pyx_t_4.memview = NULL; - __pyx_t_4.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":345 - * pixels_num: cython.int[:] = cam_data.pixels_num - * image_dims: cython.double[:] = cam_data.image_dims - * image_dist: cython.double = cam_data.image_dist # <<<<<<<<<<<<<< - * sub_samp: cython.int = cam_data.sub_samp - * -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_image_dist); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_5 = __Pyx_PyFloat_AsDouble(__pyx_t_1); if (unlikely((__pyx_t_5 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 345, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_image_dist = __pyx_t_5; - - /* "pyvale/sensorsim/cython/rastercyth.py":346 - * image_dims: cython.double[:] = cam_data.image_dims - * image_dist: cython.double = cam_data.image_dist - * sub_samp: cython.int = cam_data.sub_samp # <<<<<<<<<<<<<< - * - * nodes_per_elem: cython.size_t = connect.shape[1] -*/ - __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_sub_samp); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 346, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_6 = __Pyx_PyLong_As_int(__pyx_t_1); if (unlikely((__pyx_t_6 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 346, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_v_sub_samp = __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":348 - * sub_samp: cython.int = cam_data.sub_samp - * - * nodes_per_elem: cython.size_t = connect.shape[1] # <<<<<<<<<<<<<< - * fields_num: cython.size_t = fields_to_render.shape[1] - * sub_pix_x: cython.int = pixels_num[0]*sub_samp -*/ - __pyx_v_nodes_per_elem = (__pyx_v_connect.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":349 - * - * nodes_per_elem: cython.size_t = connect.shape[1] - * fields_num: cython.size_t = fields_to_render.shape[1] # <<<<<<<<<<<<<< - * sub_pix_x: cython.int = pixels_num[0]*sub_samp - * sub_pix_y: cython.int = pixels_num[1]*sub_samp -*/ - __pyx_v_fields_num = (__pyx_v_fields_to_render.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":350 - * nodes_per_elem: cython.size_t = connect.shape[1] - * fields_num: cython.size_t = fields_to_render.shape[1] - * sub_pix_x: cython.int = pixels_num[0]*sub_samp # <<<<<<<<<<<<<< - * sub_pix_y: cython.int = pixels_num[1]*sub_samp - * -*/ - __pyx_t_7 = 0; - __pyx_v_sub_pix_x = ((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) ))) * __pyx_v_sub_samp); - - /* "pyvale/sensorsim/cython/rastercyth.py":351 - * fields_num: cython.size_t = fields_to_render.shape[1] - * sub_pix_x: cython.int = pixels_num[0]*sub_samp - * sub_pix_y: cython.int = pixels_num[1]*sub_samp # <<<<<<<<<<<<<< - * - * #--------------------------------------------------------------------------- -*/ - __pyx_t_7 = 1; - __pyx_v_sub_pix_y = ((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) ))) * __pyx_v_sub_samp); - - /* "pyvale/sensorsim/cython/rastercyth.py":355 - * #--------------------------------------------------------------------------- - * # Final image buffer memory allocation - * image_buff_avg_np = np.full((pixels_num[1],pixels_num[0],fields_num),0.0,dtype=np.float64) # <<<<<<<<<<<<<< - * image_buff_avg: cython.double[:,:,:] = image_buff_avg_np - * -*/ - __pyx_t_8 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __pyx_t_7 = 1; - __pyx_t_9 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __pyx_t_7 = 0; - __pyx_t_11 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_12 = __Pyx_PyLong_FromSize_t(__pyx_v_fields_num); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_13 = PyTuple_New(3); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_GIVEREF(__pyx_t_9); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_9) != (0)) __PYX_ERR(0, 355, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_11); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 1, __pyx_t_11) != (0)) __PYX_ERR(0, 355, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_12); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 2, __pyx_t_12) != (0)) __PYX_ERR(0, 355, __pyx_L1_error); - __pyx_t_9 = 0; - __pyx_t_11 = 0; - __pyx_t_12 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_10); - assert(__pyx_t_8); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_8); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_10, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_8, __pyx_t_13, __pyx_mstate_global->__pyx_float_0_0}; - __pyx_t_12 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_11, __pyx_t_12, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 355, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_10, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_12); - __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 355, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_image_buff_avg_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":356 - * # Final image buffer memory allocation - * image_buff_avg_np = np.full((pixels_num[1],pixels_num[0],fields_num),0.0,dtype=np.float64) - * image_buff_avg: cython.double[:,:,:] = image_buff_avg_np # <<<<<<<<<<<<<< - * - * depth_buff_avg_np = np.full((pixels_num[1],pixels_num[0]),0.0,dtype=np.float64) -*/ - __pyx_t_15 = __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(__pyx_v_image_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_15.memview)) __PYX_ERR(0, 356, __pyx_L1_error) - __pyx_v_image_buff_avg = __pyx_t_15; - __pyx_t_15.memview = NULL; - __pyx_t_15.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":358 - * image_buff_avg: cython.double[:,:,:] = image_buff_avg_np - * - * depth_buff_avg_np = np.full((pixels_num[1],pixels_num[0]),0.0,dtype=np.float64) # <<<<<<<<<<<<<< - * depth_buff_avg: cython.double[:,:] = depth_buff_avg_np - * -*/ - __pyx_t_10 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __pyx_t_7 = 1; - __pyx_t_12 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __pyx_t_7 = 0; - __pyx_t_13 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __pyx_t_8 = PyTuple_New(2); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __Pyx_GIVEREF(__pyx_t_12); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_12) != (0)) __PYX_ERR(0, 358, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_13); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_13) != (0)) __PYX_ERR(0, 358, __pyx_L1_error); - __pyx_t_12 = 0; - __pyx_t_13 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_11))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_11); - assert(__pyx_t_10); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_11); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_11, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_10, __pyx_t_8, __pyx_mstate_global->__pyx_float_0_0}; - __pyx_t_13 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_12, __pyx_t_13, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 358, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_11, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_13); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 358, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_depth_buff_avg_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":359 - * - * depth_buff_avg_np = np.full((pixels_num[1],pixels_num[0]),0.0,dtype=np.float64) - * depth_buff_avg: cython.double[:,:] = depth_buff_avg_np # <<<<<<<<<<<<<< - * - * #--------------------------------------------------------------------------- -*/ - __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_depth_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 359, __pyx_L1_error) - __pyx_v_depth_buff_avg = __pyx_t_2; - __pyx_t_2.memview = NULL; - __pyx_t_2.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":363 - * #--------------------------------------------------------------------------- - * # Per-thread scratch memory allocations - * depth_buffer_np = np.full((sub_pix_y,sub_pix_x),1.0e6,dtype=np.float64) # <<<<<<<<<<<<<< - * depth_buff_subpx: cython.double[:,:] = depth_buffer_np - * -*/ - __pyx_t_11 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __pyx_t_13 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_y); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __pyx_t_8 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_x); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_GIVEREF(__pyx_t_13); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_13) != (0)) __PYX_ERR(0, 363, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_8); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_t_8) != (0)) __PYX_ERR(0, 363, __pyx_L1_error); - __pyx_t_13 = 0; - __pyx_t_8 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_12); - assert(__pyx_t_11); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_11); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_12, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_11, __pyx_t_10, __pyx_mstate_global->__pyx_float_1_0e6}; - __pyx_t_8 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_13, __pyx_t_8, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 363, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_12, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_8); - __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 363, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_depth_buffer_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":364 - * # Per-thread scratch memory allocations - * depth_buffer_np = np.full((sub_pix_y,sub_pix_x),1.0e6,dtype=np.float64) - * depth_buff_subpx: cython.double[:,:] = depth_buffer_np # <<<<<<<<<<<<<< - * - * image_buffer_np = np.full((sub_pix_y,sub_pix_x,fields_num),0.0,dtype=np.float64) -*/ - __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_depth_buffer_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 364, __pyx_L1_error) - __pyx_v_depth_buff_subpx = __pyx_t_2; - __pyx_t_2.memview = NULL; - __pyx_t_2.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":366 - * depth_buff_subpx: cython.double[:,:] = depth_buffer_np - * - * image_buffer_np = np.full((sub_pix_y,sub_pix_x,fields_num),0.0,dtype=np.float64) # <<<<<<<<<<<<<< - * image_buff_subpx: cython.double[:,:,:] = image_buffer_np - * -*/ - __pyx_t_12 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __pyx_t_8 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_y); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_8); - __pyx_t_10 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_x); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_fields_num); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_9 = PyTuple_New(3); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_8); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_8) != (0)) __PYX_ERR(0, 366, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_10); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_10) != (0)) __PYX_ERR(0, 366, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_11); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_11) != (0)) __PYX_ERR(0, 366, __pyx_L1_error); - __pyx_t_8 = 0; - __pyx_t_10 = 0; - __pyx_t_11 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_13); - assert(__pyx_t_12); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_13, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_12, __pyx_t_9, __pyx_mstate_global->__pyx_float_0_0}; - __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_10, __pyx_t_11, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 366, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_13, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 366, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_image_buffer_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":367 - * - * image_buffer_np = np.full((sub_pix_y,sub_pix_x,fields_num),0.0,dtype=np.float64) - * image_buff_subpx: cython.double[:,:,:] = image_buffer_np # <<<<<<<<<<<<<< - * - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) -*/ - __pyx_t_15 = __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(__pyx_v_image_buffer_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_15.memview)) __PYX_ERR(0, 367, __pyx_L1_error) - __pyx_v_image_buff_subpx = __pyx_t_15; - __pyx_t_15.memview = NULL; - __pyx_t_15.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":370 - * - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) - * nodes_raster_np = np.empty((nodes_per_elem,4),dtype=np.float64) # <<<<<<<<<<<<<< - * nodes_raster_buff: cython.double[:,:] = nodes_raster_np - * -*/ - __pyx_t_13 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_11); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 370, __pyx_L1_error); - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_4); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_4); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_mstate_global->__pyx_int_4) != (0)) __PYX_ERR(0, 370, __pyx_L1_error); - __pyx_t_11 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_10))) { - __pyx_t_13 = PyMethod_GET_SELF(__pyx_t_10); - assert(__pyx_t_13); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_10); - __Pyx_INCREF(__pyx_t_13); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_10, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_13, __pyx_t_9}; - __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_12, __pyx_t_11, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 370, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_10, __pyx_callargs+__pyx_t_14, (2-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11); - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 370, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_nodes_raster_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":371 - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) - * nodes_raster_np = np.empty((nodes_per_elem,4),dtype=np.float64) - * nodes_raster_buff: cython.double[:,:] = nodes_raster_np # <<<<<<<<<<<<<< - * - * field_raster_np = np.empty((nodes_per_elem,),dtype=np.float64) -*/ - __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_nodes_raster_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 371, __pyx_L1_error) - __pyx_v_nodes_raster_buff = __pyx_t_2; - __pyx_t_2.memview = NULL; - __pyx_t_2.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":373 - * nodes_raster_buff: cython.double[:,:] = nodes_raster_np - * - * field_raster_np = np.empty((nodes_per_elem,),dtype=np.float64) # <<<<<<<<<<<<<< - * field_raster_buff: cython.double[:] = field_raster_np - * -*/ - __pyx_t_10 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_11); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 373, __pyx_L1_error); - __pyx_t_11 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_12))) { - __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_12); - assert(__pyx_t_10); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_12); - __Pyx_INCREF(__pyx_t_10); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_12, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_10, __pyx_t_9}; - __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_13, __pyx_t_11, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 373, __pyx_L1_error) - __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_12, __pyx_callargs+__pyx_t_14, (2-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11); - __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 373, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_field_raster_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":374 - * - * field_raster_np = np.empty((nodes_per_elem,),dtype=np.float64) - * field_raster_buff: cython.double[:] = field_raster_np # <<<<<<<<<<<<<< - * - * weights_np = np.zeros((nodes_per_elem,),np.float64) -*/ - __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_field_raster_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 374, __pyx_L1_error) - __pyx_v_field_raster_buff = __pyx_t_4; - __pyx_t_4.memview = NULL; - __pyx_t_4.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":376 - * field_raster_buff: cython.double[:] = field_raster_np - * - * weights_np = np.zeros((nodes_per_elem,),np.float64) # <<<<<<<<<<<<<< - * weights_buff: cython.double[:] = weights_np - * -*/ - __pyx_t_12 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_zeros); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_13); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_GIVEREF(__pyx_t_11); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 376, __pyx_L1_error); - __pyx_t_11 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_11); - __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_13))) { - __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_13); - assert(__pyx_t_12); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_13); - __Pyx_INCREF(__pyx_t_12); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_13, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3] = {__pyx_t_12, __pyx_t_9, __pyx_t_10}; - __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_13, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 376, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_weights_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":377 - * - * weights_np = np.zeros((nodes_per_elem,),np.float64) - * weights_buff: cython.double[:] = weights_np # <<<<<<<<<<<<<< - * - * # Only used for edge function in raster coords - need x,y -*/ - __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_weights_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 377, __pyx_L1_error) - __pyx_v_weights_buff = __pyx_t_4; - __pyx_t_4.memview = NULL; - __pyx_t_4.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":380 - * - * # Only used for edge function in raster coords - need x,y - * px_coord_np = np.zeros((2,),np.float64) # <<<<<<<<<<<<<< - * px_coord_buff: cython.double[:] = px_coord_np - * -*/ - __pyx_t_13 = NULL; - __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_9 = __Pyx_PyObject_GetAttrStr(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_zeros); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_10); - __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_12); - __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; - __pyx_t_14 = 1; - #if CYTHON_UNPACK_METHODS - if (unlikely(PyMethod_Check(__pyx_t_9))) { - __pyx_t_13 = PyMethod_GET_SELF(__pyx_t_9); - assert(__pyx_t_13); - PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_9); - __Pyx_INCREF(__pyx_t_13); - __Pyx_INCREF(__pyx__function); - __Pyx_DECREF_SET(__pyx_t_9, __pyx__function); - __pyx_t_14 = 0; - } - #endif - { - PyObject *__pyx_callargs[3] = {__pyx_t_13, __pyx_mstate_global->__pyx_tuple[2], __pyx_t_12}; - __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_9, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0; - __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; - __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; - if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - } - __pyx_v_px_coord_np = __pyx_t_1; - __pyx_t_1 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":381 - * # Only used for edge function in raster coords - need x,y - * px_coord_np = np.zeros((2,),np.float64) - * px_coord_buff: cython.double[:] = px_coord_np # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_px_coord_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 381, __pyx_L1_error) - __pyx_v_px_coord_buff = __pyx_t_4; - __pyx_t_4.memview = NULL; - __pyx_t_4.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":385 - * - * #--------------------------------------------------------------------------- - * elems_in_image: cython.size_t = _raster_frame(coords[:,:], # <<<<<<<<<<<<<< - * connect[:,:], - * fields_to_render[:,:], -*/ - if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 385, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":386 - * #--------------------------------------------------------------------------- - * elems_in_image: cython.size_t = _raster_frame(coords[:,:], - * connect[:,:], # <<<<<<<<<<<<<< - * fields_to_render[:,:], - * world_to_cam_mat[:,:], -*/ - if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 386, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":387 - * elems_in_image: cython.size_t = _raster_frame(coords[:,:], - * connect[:,:], - * fields_to_render[:,:], # <<<<<<<<<<<<<< - * world_to_cam_mat[:,:], - * pixels_num[:], -*/ - if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 387, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":388 - * connect[:,:], - * fields_to_render[:,:], - * world_to_cam_mat[:,:], # <<<<<<<<<<<<<< - * pixels_num[:], - * image_dims[:], -*/ - if (unlikely(((PyObject *) __pyx_v_world_to_cam_mat.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 388, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":389 - * fields_to_render[:,:], - * world_to_cam_mat[:,:], - * pixels_num[:], # <<<<<<<<<<<<<< - * image_dims[:], - * image_dist, -*/ - if (unlikely(((PyObject *) __pyx_v_pixels_num.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 389, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":390 - * world_to_cam_mat[:,:], - * pixels_num[:], - * image_dims[:], # <<<<<<<<<<<<<< - * image_dist, - * sub_samp, -*/ - if (unlikely(((PyObject *) __pyx_v_image_dims.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 390, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":393 - * image_dist, - * sub_samp, - * image_buff_avg[:,:,:], # <<<<<<<<<<<<<< - * depth_buff_avg[:,:], - * image_buff_subpx[:,:,:], -*/ - if (unlikely(((PyObject *) __pyx_v_image_buff_avg.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 393, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":394 - * sub_samp, - * image_buff_avg[:,:,:], - * depth_buff_avg[:,:], # <<<<<<<<<<<<<< - * image_buff_subpx[:,:,:], - * depth_buff_subpx[:,:], -*/ - if (unlikely(((PyObject *) __pyx_v_depth_buff_avg.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 394, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":395 - * image_buff_avg[:,:,:], - * depth_buff_avg[:,:], - * image_buff_subpx[:,:,:], # <<<<<<<<<<<<<< - * depth_buff_subpx[:,:], - * nodes_raster_buff[:,:], -*/ - if (unlikely(((PyObject *) __pyx_v_image_buff_subpx.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 395, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":396 - * depth_buff_avg[:,:], - * image_buff_subpx[:,:,:], - * depth_buff_subpx[:,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[:,:], - * field_raster_buff[:], -*/ - if (unlikely(((PyObject *) __pyx_v_depth_buff_subpx.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 396, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":397 - * image_buff_subpx[:,:,:], - * depth_buff_subpx[:,:], - * nodes_raster_buff[:,:], # <<<<<<<<<<<<<< - * field_raster_buff[:], - * px_coord_buff[:], -*/ - if (unlikely(((PyObject *) __pyx_v_nodes_raster_buff.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 397, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":398 - * depth_buff_subpx[:,:], - * nodes_raster_buff[:,:], - * field_raster_buff[:], # <<<<<<<<<<<<<< - * px_coord_buff[:], - * weights_buff[:]) -*/ - if (unlikely(((PyObject *) __pyx_v_field_raster_buff.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 398, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":399 - * nodes_raster_buff[:,:], - * field_raster_buff[:], - * px_coord_buff[:], # <<<<<<<<<<<<<< - * weights_buff[:]) - * -*/ - if (unlikely(((PyObject *) __pyx_v_px_coord_buff.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 399, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":400 - * field_raster_buff[:], - * px_coord_buff[:], - * weights_buff[:]) # <<<<<<<<<<<<<< - * - * return (image_buff_avg_np,depth_buff_avg_np,elems_in_image) -*/ - if (unlikely(((PyObject *) __pyx_v_weights_buff.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 400, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":385 - * - * #--------------------------------------------------------------------------- - * elems_in_image: cython.size_t = _raster_frame(coords[:,:], # <<<<<<<<<<<<<< - * connect[:,:], - * fields_to_render[:,:], -*/ - __pyx_v_elems_in_image = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__raster_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_world_to_cam_mat, __pyx_v_pixels_num, __pyx_v_image_dims, __pyx_v_image_dist, __pyx_v_sub_samp, __pyx_v_image_buff_avg, __pyx_v_depth_buff_avg, __pyx_v_image_buff_subpx, __pyx_v_depth_buff_subpx, __pyx_v_nodes_raster_buff, __pyx_v_field_raster_buff, __pyx_v_px_coord_buff, __pyx_v_weights_buff); - - /* "pyvale/sensorsim/cython/rastercyth.py":402 - * weights_buff[:]) - * - * return (image_buff_avg_np,depth_buff_avg_np,elems_in_image) # <<<<<<<<<<<<<< - * - * #/////////////////////////////////////////////////////////////////////////////// -*/ - __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = __Pyx_PyLong_FromSize_t(__pyx_v_elems_in_image); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 402, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_t_9 = PyTuple_New(3); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 402, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_9); - __Pyx_INCREF(__pyx_v_image_buff_avg_np); - __Pyx_GIVEREF(__pyx_v_image_buff_avg_np); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_v_image_buff_avg_np) != (0)) __PYX_ERR(0, 402, __pyx_L1_error); - __Pyx_INCREF(__pyx_v_depth_buff_avg_np); - __Pyx_GIVEREF(__pyx_v_depth_buff_avg_np); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_v_depth_buff_avg_np) != (0)) __PYX_ERR(0, 402, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_t_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_1) != (0)) __PYX_ERR(0, 402, __pyx_L1_error); - __pyx_t_1 = 0; - __pyx_r = ((PyObject*)__pyx_t_9); - __pyx_t_9 = 0; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":331 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_2, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_3, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_4, 1); - __Pyx_XDECREF(__pyx_t_8); - __Pyx_XDECREF(__pyx_t_9); - __Pyx_XDECREF(__pyx_t_10); - __Pyx_XDECREF(__pyx_t_11); - __Pyx_XDECREF(__pyx_t_12); - __Pyx_XDECREF(__pyx_t_13); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_15, 1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = 0; - __pyx_L0:; - __PYX_XCLEAR_MEMVIEW(&__pyx_v_world_to_cam_mat, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_pixels_num, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_dims, 1); - __Pyx_XDECREF(__pyx_v_image_buff_avg_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_avg, 1); - __Pyx_XDECREF(__pyx_v_depth_buff_avg_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_depth_buff_avg, 1); - __Pyx_XDECREF(__pyx_v_depth_buffer_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_depth_buff_subpx, 1); - __Pyx_XDECREF(__pyx_v_image_buffer_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_subpx, 1); - __Pyx_XDECREF(__pyx_v_nodes_raster_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_nodes_raster_buff, 1); - __Pyx_XDECREF(__pyx_v_field_raster_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_raster_buff, 1); - __Pyx_XDECREF(__pyx_v_weights_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_weights_buff, 1); - __Pyx_XDECREF(__pyx_v_px_coord_np); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_px_coord_buff, 1); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* Python wrapper */ -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame = {"raster_static_frame", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - __Pyx_memviewslice __pyx_v_coords = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_connect = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_fields_to_render = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_cam_data = 0; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[4] = {0,0,0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("raster_static_frame (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_coords,&__pyx_mstate_global->__pyx_n_u_connect,&__pyx_mstate_global->__pyx_n_u_fields_to_render,&__pyx_mstate_global->__pyx_n_u_cam_data,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 331, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 4: - values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 331, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 3: - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 331, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 331, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 331, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "raster_static_frame", 0) < (0)) __PYX_ERR(0, 331, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 4; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("raster_static_frame", 1, 4, 4, i); __PYX_ERR(0, 331, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 4)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 331, __pyx_L3_error) - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 331, __pyx_L3_error) - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 331, __pyx_L3_error) - values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 331, __pyx_L3_error) - } - __pyx_v_coords = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_coords.memview)) __PYX_ERR(0, 335, __pyx_L3_error) - __pyx_v_connect = __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(values[1], PyBUF_WRITABLE); if (unlikely(!__pyx_v_connect.memview)) __PYX_ERR(0, 336, __pyx_L3_error) - __pyx_v_fields_to_render = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[2], PyBUF_WRITABLE); if (unlikely(!__pyx_v_fields_to_render.memview)) __PYX_ERR(0, 337, __pyx_L3_error) - __pyx_v_cam_data = values[3]; - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("raster_static_frame", 1, 4, 4, __pyx_nargs); __PYX_ERR(0, 331, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(((PyObject *)__pyx_v_coords.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "coords"); __PYX_ERR(0, 335, __pyx_L1_error) - } - if (unlikely(((PyObject *)__pyx_v_connect.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "connect"); __PYX_ERR(0, 336, __pyx_L1_error) - } - if (unlikely(((PyObject *)__pyx_v_fields_to_render.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "fields_to_render"); __PYX_ERR(0, 337, __pyx_L1_error) - } - __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_2raster_static_frame(__pyx_self, __pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - goto __pyx_L7_cleaned_up; - __pyx_L0:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __pyx_L7_cleaned_up:; - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_2raster_static_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("raster_static_frame", 0); - __Pyx_XDECREF(__pyx_r); - if (unlikely(!__pyx_v_coords.memview)) { __Pyx_RaiseUnboundLocalError("coords"); __PYX_ERR(0, 331, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 331, __pyx_L1_error) - } - if (unlikely(!__pyx_v_connect.memview)) { __Pyx_RaiseUnboundLocalError("connect"); __PYX_ERR(0, 331, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 331, __pyx_L1_error) - } - if (unlikely(!__pyx_v_fields_to_render.memview)) { __Pyx_RaiseUnboundLocalError("fields_to_render"); __PYX_ERR(0, 331, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 331, __pyx_L1_error) - } - __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_static_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":405 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_deform_frame(CYTHON_UNUSED __Pyx_memviewslice __pyx_v_coords, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_connect, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_fields_to_render, CYTHON_UNUSED PyObject *__pyx_v_cam_data, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_field_disp, CYTHON_UNUSED int __pyx_skip_dispatch) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("raster_deform_frame", 0); - - /* "pyvale/sensorsim/cython/rastercyth.py":415 - * field_disp: cython.double[:,:], - * ) -> tuple[np.ndarray,np.ndarray,int]: - * pass # <<<<<<<<<<<<<< - * - * #/////////////////////////////////////////////////////////////////////////////// -*/ - - /* function exit code */ - __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":405 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - -/* Python wrapper */ -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -); /*proto*/ -static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame = {"raster_deform_frame", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}; -static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, -#if CYTHON_METH_FASTCALL -PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds -#else -PyObject *__pyx_args, PyObject *__pyx_kwds -#endif -) { - __Pyx_memviewslice __pyx_v_coords = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_connect = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_v_fields_to_render = { 0, 0, { 0 }, { 0 }, { 0 } }; - PyObject *__pyx_v_cam_data = 0; - __Pyx_memviewslice __pyx_v_field_disp = { 0, 0, { 0 }, { 0 }, { 0 } }; - #if !CYTHON_METH_FASTCALL - CYTHON_UNUSED Py_ssize_t __pyx_nargs; - #endif - CYTHON_UNUSED PyObject *const *__pyx_kwvalues; - PyObject* values[5] = {0,0,0,0,0}; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - PyObject *__pyx_r = 0; - __Pyx_RefNannyDeclarations - __Pyx_RefNannySetupContext("raster_deform_frame (wrapper)", 0); - #if !CYTHON_METH_FASTCALL - #if CYTHON_ASSUME_SAFE_SIZE - __pyx_nargs = PyTuple_GET_SIZE(__pyx_args); - #else - __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL; - #endif - #endif - __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs); - { - PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_coords,&__pyx_mstate_global->__pyx_n_u_connect,&__pyx_mstate_global->__pyx_n_u_fields_to_render,&__pyx_mstate_global->__pyx_n_u_cam_data,&__pyx_mstate_global->__pyx_n_u_field_disp,0}; - const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0; - if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 405, __pyx_L3_error) - if (__pyx_kwds_len > 0) { - switch (__pyx_nargs) { - case 5: - values[4] = __Pyx_ArgRef_FASTCALL(__pyx_args, 4); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(0, 405, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 4: - values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 405, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 3: - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 405, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 2: - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 405, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 1: - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 405, __pyx_L3_error) - CYTHON_FALLTHROUGH; - case 0: break; - default: goto __pyx_L5_argtuple_error; - } - const Py_ssize_t kwd_pos_args = __pyx_nargs; - if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "raster_deform_frame", 0) < (0)) __PYX_ERR(0, 405, __pyx_L3_error) - for (Py_ssize_t i = __pyx_nargs; i < 5; i++) { - if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("raster_deform_frame", 1, 5, 5, i); __PYX_ERR(0, 405, __pyx_L3_error) } - } - } else if (unlikely(__pyx_nargs != 5)) { - goto __pyx_L5_argtuple_error; - } else { - values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 405, __pyx_L3_error) - values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 405, __pyx_L3_error) - values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 405, __pyx_L3_error) - values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 405, __pyx_L3_error) - values[4] = __Pyx_ArgRef_FASTCALL(__pyx_args, 4); - if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(0, 405, __pyx_L3_error) - } - __pyx_v_coords = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_coords.memview)) __PYX_ERR(0, 409, __pyx_L3_error) - __pyx_v_connect = __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(values[1], PyBUF_WRITABLE); if (unlikely(!__pyx_v_connect.memview)) __PYX_ERR(0, 410, __pyx_L3_error) - __pyx_v_fields_to_render = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[2], PyBUF_WRITABLE); if (unlikely(!__pyx_v_fields_to_render.memview)) __PYX_ERR(0, 411, __pyx_L3_error) - __pyx_v_cam_data = values[3]; - __pyx_v_field_disp = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[4], PyBUF_WRITABLE); if (unlikely(!__pyx_v_field_disp.memview)) __PYX_ERR(0, 413, __pyx_L3_error) - } - goto __pyx_L6_skip; - __pyx_L5_argtuple_error:; - __Pyx_RaiseArgtupleInvalid("raster_deform_frame", 1, 5, 5, __pyx_nargs); __PYX_ERR(0, 405, __pyx_L3_error) - __pyx_L6_skip:; - goto __pyx_L4_argument_unpacking_done; - __pyx_L3_error:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_disp, 1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_deform_frame", __pyx_clineno, __pyx_lineno, __pyx_filename); - __Pyx_RefNannyFinishContext(); - return NULL; - __pyx_L4_argument_unpacking_done:; - if (unlikely(((PyObject *)__pyx_v_coords.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "coords"); __PYX_ERR(0, 409, __pyx_L1_error) - } - if (unlikely(((PyObject *)__pyx_v_connect.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "connect"); __PYX_ERR(0, 410, __pyx_L1_error) - } - if (unlikely(((PyObject *)__pyx_v_fields_to_render.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "fields_to_render"); __PYX_ERR(0, 411, __pyx_L1_error) - } - if (unlikely(((PyObject *)__pyx_v_field_disp.memview) == Py_None)) { - PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "field_disp"); __PYX_ERR(0, 413, __pyx_L1_error) - } - __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_4raster_deform_frame(__pyx_self, __pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, __pyx_v_field_disp); - - /* function exit code */ - goto __pyx_L0; - __pyx_L1_error:; - __pyx_r = NULL; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - goto __pyx_L7_cleaned_up; - __pyx_L0:; - for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) { - Py_XDECREF(values[__pyx_temp]); - } - __pyx_L7_cleaned_up:; - __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_disp, 1); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_4raster_deform_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data, __Pyx_memviewslice __pyx_v_field_disp) { - PyObject *__pyx_r = NULL; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("raster_deform_frame", 0); - __Pyx_XDECREF(__pyx_r); - if (unlikely(!__pyx_v_coords.memview)) { __Pyx_RaiseUnboundLocalError("coords"); __PYX_ERR(0, 405, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 405, __pyx_L1_error) - } - if (unlikely(!__pyx_v_connect.memview)) { __Pyx_RaiseUnboundLocalError("connect"); __PYX_ERR(0, 405, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 405, __pyx_L1_error) - } - if (unlikely(!__pyx_v_fields_to_render.memview)) { __Pyx_RaiseUnboundLocalError("fields_to_render"); __PYX_ERR(0, 405, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 405, __pyx_L1_error) - } - if (unlikely(!__pyx_v_field_disp.memview)) { __Pyx_RaiseUnboundLocalError("field_disp"); __PYX_ERR(0, 405, __pyx_L1_error) } - if (unlikely(((PyObject *) __pyx_v_field_disp.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 405, __pyx_L1_error) - } - __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_deform_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, __pyx_v_field_disp, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_r = __pyx_t_1; - __pyx_t_1 = 0; - goto __pyx_L0; - - /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_deform_frame", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "pyvale/sensorsim/cython/rastercyth.py":419 - * #/////////////////////////////////////////////////////////////////////////////// - * #@cython.nogil - * @cython.cfunc # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - -static size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__raster_frame(__Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, __Pyx_memviewslice __pyx_v_world_to_cam_mat, __Pyx_memviewslice __pyx_v_num_pixels, __Pyx_memviewslice __pyx_v_image_dims, double __pyx_v_image_dist, int __pyx_v_sub_samp, __Pyx_memviewslice __pyx_v_image_buff_avg, __Pyx_memviewslice __pyx_v_depth_buff_avg, __Pyx_memviewslice __pyx_v_image_buff_subpx, __Pyx_memviewslice __pyx_v_depth_buff_subpx, __Pyx_memviewslice __pyx_v_nodes_raster_buff, __Pyx_memviewslice __pyx_v_field_raster_buff, __Pyx_memviewslice __pyx_v_px_coord_buff, __Pyx_memviewslice __pyx_v_weights_buff) { - size_t __pyx_v_xx; - size_t __pyx_v_yy; - size_t __pyx_v_zz; - size_t __pyx_v_elem_count; - size_t __pyx_v_nodes_per_elem; - size_t __pyx_v_fields_num; - double __pyx_v_tol; - size_t __pyx_v_elems_in_image; - double __pyx_v_coord_step; - double __pyx_v_coord_offset; - size_t __pyx_v_ee; - size_t __pyx_v_nn; - CYTHON_UNUSED size_t __pyx_v_ii; - CYTHON_UNUSED size_t __pyx_v_jj; - size_t __pyx_v_ww; - size_t __pyx_v_ff; - double __pyx_v_elem_area; - double __pyx_v_x_min; - double __pyx_v_x_max; - double __pyx_v_y_min; - double __pyx_v_y_max; - size_t __pyx_v_xi_min; - size_t __pyx_v_xi_max; - size_t __pyx_v_yi_min; - size_t __pyx_v_yi_max; - size_t __pyx_v_num_bound_x; - size_t __pyx_v_num_bound_y; - double __pyx_v_bound_coord_x; - double __pyx_v_bound_coord_y; - size_t __pyx_v_bound_ind_x; - size_t __pyx_v_bound_ind_y; - double __pyx_v_weight_dot_nodes; - double __pyx_v_px_coord_z; - double __pyx_v_px_field; - size_t __pyx_r; - size_t __pyx_t_1; - size_t __pyx_t_2; - size_t __pyx_t_3; - size_t __pyx_t_4; - size_t __pyx_t_5; - size_t __pyx_t_6; - size_t __pyx_t_7; - size_t __pyx_t_8; - __Pyx_memviewslice __pyx_t_9 = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_10 = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_11 = { 0, 0, { 0 }, { 0 }, { 0 } }; - int __pyx_t_12; - int __pyx_t_13; - size_t __pyx_t_14; - size_t __pyx_t_15; - Py_ssize_t __pyx_t_16; - size_t __pyx_t_17; - size_t __pyx_t_18; - size_t __pyx_t_19; - size_t __pyx_t_20; - size_t __pyx_t_21; - size_t __pyx_t_22; - size_t __pyx_t_23; - size_t __pyx_t_24; - size_t __pyx_t_25; - size_t __pyx_t_26; - size_t __pyx_t_27; - size_t __pyx_t_28; - __Pyx_memviewslice __pyx_t_29 = { 0, 0, { 0 }, { 0 }, { 0 } }; - __Pyx_memviewslice __pyx_t_30 = { 0, 0, { 0 }, { 0 }, { 0 } }; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":490 - * """ - * - * xx: cython.size_t = 0 # <<<<<<<<<<<<<< - * yy: cython.size_t = 1 - * zz: cython.size_t = 2 -*/ - __pyx_v_xx = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":491 - * - * xx: cython.size_t = 0 - * yy: cython.size_t = 1 # <<<<<<<<<<<<<< - * zz: cython.size_t = 2 - * -*/ - __pyx_v_yy = 1; - - /* "pyvale/sensorsim/cython/rastercyth.py":492 - * xx: cython.size_t = 0 - * yy: cython.size_t = 1 - * zz: cython.size_t = 2 # <<<<<<<<<<<<<< - * - * elem_count: cython.size_t = connect.shape[0] -*/ - __pyx_v_zz = 2; - - /* "pyvale/sensorsim/cython/rastercyth.py":494 - * zz: cython.size_t = 2 - * - * elem_count: cython.size_t = connect.shape[0] # <<<<<<<<<<<<<< - * nodes_per_elem: cython.size_t = connect.shape[1] - * fields_num: cython.size_t = fields_to_render.shape[1] -*/ - __pyx_v_elem_count = (__pyx_v_connect.shape[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":495 - * - * elem_count: cython.size_t = connect.shape[0] - * nodes_per_elem: cython.size_t = connect.shape[1] # <<<<<<<<<<<<<< - * fields_num: cython.size_t = fields_to_render.shape[1] - * -*/ - __pyx_v_nodes_per_elem = (__pyx_v_connect.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":496 - * elem_count: cython.size_t = connect.shape[0] - * nodes_per_elem: cython.size_t = connect.shape[1] - * fields_num: cython.size_t = fields_to_render.shape[1] # <<<<<<<<<<<<<< - * - * # tolerance for floating point zero dot product -*/ - __pyx_v_fields_num = (__pyx_v_fields_to_render.shape[1]); - - /* "pyvale/sensorsim/cython/rastercyth.py":499 - * - * # tolerance for floating point zero dot product - * tol: cython.double = 1e-12 # <<<<<<<<<<<<<< - * - * #elem_count: cython.size_t = 1 -*/ - __pyx_v_tol = 1e-12; - - /* "pyvale/sensorsim/cython/rastercyth.py":502 - * - * #elem_count: cython.size_t = 1 - * elems_in_image: cython.size_t = 0 # <<<<<<<<<<<<<< - * - * # Lifted constants -*/ - __pyx_v_elems_in_image = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":505 - * - * # Lifted constants - * coord_step: cython.double = 1.0/float(sub_samp) # <<<<<<<<<<<<<< - * coord_offset: cython.double = 1.0/(2.0*float(sub_samp)) - * -*/ - __pyx_v_coord_step = (1.0 / ((double)__pyx_v_sub_samp)); - - /* "pyvale/sensorsim/cython/rastercyth.py":506 - * # Lifted constants - * coord_step: cython.double = 1.0/float(sub_samp) - * coord_offset: cython.double = 1.0/(2.0*float(sub_samp)) # <<<<<<<<<<<<<< - * - * ee: cython.size_t = 0 -*/ - __pyx_v_coord_offset = (1.0 / (2.0 * ((double)__pyx_v_sub_samp))); - - /* "pyvale/sensorsim/cython/rastercyth.py":508 - * coord_offset: cython.double = 1.0/(2.0*float(sub_samp)) - * - * ee: cython.size_t = 0 # <<<<<<<<<<<<<< - * nn: cython.size_t = 0 - * ii: cython.size_t = 0 -*/ - __pyx_v_ee = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":509 - * - * ee: cython.size_t = 0 - * nn: cython.size_t = 0 # <<<<<<<<<<<<<< - * ii: cython.size_t = 0 - * jj: cython.size_t = 0 -*/ - __pyx_v_nn = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":510 - * ee: cython.size_t = 0 - * nn: cython.size_t = 0 - * ii: cython.size_t = 0 # <<<<<<<<<<<<<< - * jj: cython.size_t = 0 - * ww: cython.size_t = 0 -*/ - __pyx_v_ii = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":511 - * nn: cython.size_t = 0 - * ii: cython.size_t = 0 - * jj: cython.size_t = 0 # <<<<<<<<<<<<<< - * ww: cython.size_t = 0 - * ff: cython.size_t = 0 -*/ - __pyx_v_jj = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":512 - * ii: cython.size_t = 0 - * jj: cython.size_t = 0 - * ww: cython.size_t = 0 # <<<<<<<<<<<<<< - * ff: cython.size_t = 0 - * -*/ - __pyx_v_ww = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":513 - * jj: cython.size_t = 0 - * ww: cython.size_t = 0 - * ff: cython.size_t = 0 # <<<<<<<<<<<<<< - * - * for ee in range(elem_count): -*/ - __pyx_v_ff = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":515 - * ff: cython.size_t = 0 - * - * for ee in range(elem_count): # <<<<<<<<<<<<<< - * - * for nn in range(nodes_per_elem): -*/ - __pyx_t_1 = __pyx_v_elem_count; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_ee = __pyx_t_3; - - /* "pyvale/sensorsim/cython/rastercyth.py":517 - * for ee in range(elem_count): - * - * for nn in range(nodes_per_elem): # <<<<<<<<<<<<<< - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) - * nodes_raster_buff[nn,:] = world_to_raster_coords(coords[connect[ee,nn],:], -*/ - __pyx_t_4 = __pyx_v_nodes_per_elem; - __pyx_t_5 = __pyx_t_4; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_nn = __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":519 - * for nn in range(nodes_per_elem): - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) - * nodes_raster_buff[nn,:] = world_to_raster_coords(coords[connect[ee,nn],:], # <<<<<<<<<<<<<< - * world_to_cam_mat, - * image_dist, -*/ - __pyx_t_7 = __pyx_v_ee; - __pyx_t_8 = __pyx_v_nn; - __pyx_t_9.data = __pyx_v_coords.data; - __pyx_t_9.memview = __pyx_v_coords.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - { - Py_ssize_t __pyx_tmp_idx = (*((size_t *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_connect.data + __pyx_t_7 * __pyx_v_connect.strides[0]) ) + __pyx_t_8 * __pyx_v_connect.strides[1]) ))); - Py_ssize_t __pyx_tmp_stride = __pyx_v_coords.strides[0]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_9.shape[0] = __pyx_v_coords.shape[1]; -__pyx_t_9.strides[0] = __pyx_v_coords.strides[1]; - __pyx_t_9.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 519, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":524 - * image_dims, - * num_pixels, - * nodes_raster_buff[nn,:]) # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = __pyx_v_nn; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 524, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":519 - * for nn in range(nodes_per_elem): - * # shape=(nodes_per_elem, coord[X,Y,Z,W]) - * nodes_raster_buff[nn,:] = world_to_raster_coords(coords[connect[ee,nn],:], # <<<<<<<<<<<<<< - * world_to_cam_mat, - * image_dist, -*/ - __pyx_t_11 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_world_to_raster_coords(__pyx_t_9, __pyx_v_world_to_cam_mat, __pyx_v_image_dist, __pyx_v_image_dims, __pyx_v_num_pixels, __pyx_t_10); if (unlikely(!__pyx_t_11.memview)) __PYX_ERR(0, 519, __pyx_L1_error) - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = __pyx_v_nn; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely((__pyx_memoryview_copy_contents(__pyx_t_11, __pyx_t_10, 1, 1, 0) < 0))) __PYX_ERR(0, 519, __pyx_L1_error) - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_11, 1); - __pyx_t_11.memview = NULL; __pyx_t_11.data = NULL; - } - - /* "pyvale/sensorsim/cython/rastercyth.py":527 - * - * - * elem_area: cython.double = edge_function(nodes_raster_buff[0,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[1,:], - * nodes_raster_buff[2,:]) -*/ - __pyx_t_11.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_11.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_11, 1); - { - Py_ssize_t __pyx_tmp_idx = 0; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_11.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_11.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_11.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_11.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_11.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 527, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":528 - * - * elem_area: cython.double = edge_function(nodes_raster_buff[0,:], - * nodes_raster_buff[1,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[2,:]) - * -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = 1; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 528, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":529 - * elem_area: cython.double = edge_function(nodes_raster_buff[0,:], - * nodes_raster_buff[1,:], - * nodes_raster_buff[2,:]) # <<<<<<<<<<<<<< - * - * if elem_area < -tol: # Backface culling -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - { - Py_ssize_t __pyx_tmp_idx = 2; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 529, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":527 - * - * - * elem_area: cython.double = edge_function(nodes_raster_buff[0,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[1,:], - * nodes_raster_buff[2,:]) -*/ - __pyx_v_elem_area = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_11, __pyx_t_10, __pyx_t_9); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_11, 1); - __pyx_t_11.memview = NULL; __pyx_t_11.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":531 - * nodes_raster_buff[2,:]) - * - * if elem_area < -tol: # Backface culling # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_t_12 = (__pyx_v_elem_area < (-__pyx_v_tol)); - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":532 - * - * if elem_area < -tol: # Backface culling - * continue # <<<<<<<<<<<<<< - * - * # print(f"{nodes_raster_buff[0,0]},{nodes_raster_buff[0,1]},{nodes_raster_buff[0,2]}") -*/ - goto __pyx_L3_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":531 - * nodes_raster_buff[2,:]) - * - * if elem_area < -tol: # Backface culling # <<<<<<<<<<<<<< - * continue - * -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":540 - * # print() - * - * x_min: cython.double = vec_min_double(nodes_raster_buff[:,xx]) # <<<<<<<<<<<<<< - * x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx]) - * -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.suboffsets[0] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_xx; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 540, __pyx_L1_error) - } - __pyx_v_x_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__pyx_t_9); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":541 - * - * x_min: cython.double = vec_min_double(nodes_raster_buff[:,xx]) - * x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx]) # <<<<<<<<<<<<<< - * - * if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.suboffsets[0] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_xx; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 541, __pyx_L1_error) - } - __pyx_v_x_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__pyx_t_9); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":543 - * x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx]) - * - * if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_t_4 = __pyx_v_xx; - __pyx_t_13 = (__pyx_v_x_min > ((*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))) - 1)); - if (!__pyx_t_13) { - } else { - __pyx_t_12 = __pyx_t_13; - goto __pyx_L9_bool_binop_done; - } - __pyx_t_13 = (__pyx_v_x_max < 0.0); - __pyx_t_12 = __pyx_t_13; - __pyx_L9_bool_binop_done:; - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":544 - * - * if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop - * continue # <<<<<<<<<<<<<< - * - * y_min: cython.double = vec_min_double(nodes_raster_buff[:,yy]) -*/ - goto __pyx_L3_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":543 - * x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx]) - * - * if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop # <<<<<<<<<<<<<< - * continue - * -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":546 - * continue - * - * y_min: cython.double = vec_min_double(nodes_raster_buff[:,yy]) # <<<<<<<<<<<<<< - * y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy]) - * -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.suboffsets[0] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_yy; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 546, __pyx_L1_error) - } - __pyx_v_y_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__pyx_t_9); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":547 - * - * y_min: cython.double = vec_min_double(nodes_raster_buff[:,yy]) - * y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy]) # <<<<<<<<<<<<<< - * - * if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.suboffsets[0] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_yy; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 547, __pyx_L1_error) - } - __pyx_v_y_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__pyx_t_9); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":549 - * y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy]) - * - * if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_t_4 = __pyx_v_yy; - __pyx_t_13 = (__pyx_v_y_min > ((*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))) - 1)); - if (!__pyx_t_13) { - } else { - __pyx_t_12 = __pyx_t_13; - goto __pyx_L12_bool_binop_done; - } - __pyx_t_13 = (__pyx_v_y_max < 0.0); - __pyx_t_12 = __pyx_t_13; - __pyx_L12_bool_binop_done:; - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":550 - * - * if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop - * continue # <<<<<<<<<<<<<< - * - * # print(f"Elem {ee}: x, min {x_min}") -*/ - goto __pyx_L3_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":549 - * y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy]) - * - * if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop # <<<<<<<<<<<<<< - * continue - * -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":557 - * # print(f"Elem {ee}: y, max {y_max}\n") - * - * elems_in_image += 1 # <<<<<<<<<<<<<< - * - * xi_min: cython.size_t = bound_index_min(x_min) -*/ - __pyx_v_elems_in_image = (__pyx_v_elems_in_image + 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":559 - * elems_in_image += 1 - * - * xi_min: cython.size_t = bound_index_min(x_min) # <<<<<<<<<<<<<< - * xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx]) - * yi_min: cython.size_t = bound_index_min(y_min) -*/ - __pyx_v_xi_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(__pyx_v_x_min); - - /* "pyvale/sensorsim/cython/rastercyth.py":560 - * - * xi_min: cython.size_t = bound_index_min(x_min) - * xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx]) # <<<<<<<<<<<<<< - * yi_min: cython.size_t = bound_index_min(y_min) - * yi_max: cython.size_t = bound_index_max(y_max,num_pixels[yy]) -*/ - __pyx_t_4 = __pyx_v_xx; - __pyx_v_xi_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(__pyx_v_x_max, (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":561 - * xi_min: cython.size_t = bound_index_min(x_min) - * xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx]) - * yi_min: cython.size_t = bound_index_min(y_min) # <<<<<<<<<<<<<< - * yi_max: cython.size_t = bound_index_max(y_max,num_pixels[yy]) - * -*/ - __pyx_v_yi_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(__pyx_v_y_min); - - /* "pyvale/sensorsim/cython/rastercyth.py":562 - * xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx]) - * yi_min: cython.size_t = bound_index_min(y_min) - * yi_max: cython.size_t = bound_index_max(y_max,num_pixels[yy]) # <<<<<<<<<<<<<< - * - * # print(f"Elem {ee}: xi, min {xi_min}") -*/ - __pyx_t_4 = __pyx_v_yy; - __pyx_v_yi_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(__pyx_v_y_max, (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) )))); - - /* "pyvale/sensorsim/cython/rastercyth.py":569 - * # print(f"Elem {ee}: yi, max {yi_max}\n") - * - * for nn in range(nodes_per_elem): # <<<<<<<<<<<<<< - * nodes_raster_buff[nn,zz] = 1/nodes_raster_buff[nn,zz] - * -*/ - __pyx_t_4 = __pyx_v_nodes_per_elem; - __pyx_t_5 = __pyx_t_4; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_nn = __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":570 - * - * for nn in range(nodes_per_elem): - * nodes_raster_buff[nn,zz] = 1/nodes_raster_buff[nn,zz] # <<<<<<<<<<<<<< - * - * num_bound_x: cython.size_t = range_len_double(float(xi_min), -*/ - __pyx_t_8 = __pyx_v_nn; - __pyx_t_7 = __pyx_v_zz; - __pyx_t_14 = __pyx_v_nn; - __pyx_t_15 = __pyx_v_zz; - *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_14 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_15 * __pyx_v_nodes_raster_buff.strides[1]) )) = (1.0 / (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_8 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_7 * __pyx_v_nodes_raster_buff.strides[1]) )))); - } - - /* "pyvale/sensorsim/cython/rastercyth.py":572 - * nodes_raster_buff[nn,zz] = 1/nodes_raster_buff[nn,zz] - * - * num_bound_x: cython.size_t = range_len_double(float(xi_min), # <<<<<<<<<<<<<< - * float(xi_max), - * coord_step) -*/ - __pyx_v_num_bound_x = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(((double)__pyx_v_xi_min), ((double)__pyx_v_xi_max), __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":575 - * float(xi_max), - * coord_step) - * num_bound_y: cython.size_t = range_len_double(float(yi_min), # <<<<<<<<<<<<<< - * float(yi_max), - * coord_step) -*/ - __pyx_v_num_bound_y = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(((double)__pyx_v_yi_min), ((double)__pyx_v_yi_max), __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":579 - * coord_step) - * - * bound_coord_x: cython.double = float(xi_min) + coord_offset # <<<<<<<<<<<<<< - * bound_coord_y: cython.double = float(yi_min) + coord_offset - * -*/ - __pyx_v_bound_coord_x = (((double)__pyx_v_xi_min) + __pyx_v_coord_offset); - - /* "pyvale/sensorsim/cython/rastercyth.py":580 - * - * bound_coord_x: cython.double = float(xi_min) + coord_offset - * bound_coord_y: cython.double = float(yi_min) + coord_offset # <<<<<<<<<<<<<< - * - * bound_ind_x: cython.size_t = sub_samp*xi_min -*/ - __pyx_v_bound_coord_y = (((double)__pyx_v_yi_min) + __pyx_v_coord_offset); - - /* "pyvale/sensorsim/cython/rastercyth.py":582 - * bound_coord_y: cython.double = float(yi_min) + coord_offset - * - * bound_ind_x: cython.size_t = sub_samp*xi_min # <<<<<<<<<<<<<< - * bound_ind_y: cython.size_t = sub_samp*yi_min - * -*/ - __pyx_v_bound_ind_x = (__pyx_v_sub_samp * __pyx_v_xi_min); - - /* "pyvale/sensorsim/cython/rastercyth.py":583 - * - * bound_ind_x: cython.size_t = sub_samp*xi_min - * bound_ind_y: cython.size_t = sub_samp*yi_min # <<<<<<<<<<<<<< - * - * # print(f"Elem {ee}: bound_coord_x={bound_coord_x}") -*/ - __pyx_v_bound_ind_y = (__pyx_v_sub_samp * __pyx_v_yi_min); - - /* "pyvale/sensorsim/cython/rastercyth.py":595 - * - * - * for jj in range(num_bound_y): # <<<<<<<<<<<<<< - * - * bound_coord_x = float(xi_min) + coord_offset -*/ - __pyx_t_4 = __pyx_v_num_bound_y; - __pyx_t_5 = __pyx_t_4; - for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { - __pyx_v_jj = __pyx_t_6; - - /* "pyvale/sensorsim/cython/rastercyth.py":597 - * for jj in range(num_bound_y): - * - * bound_coord_x = float(xi_min) + coord_offset # <<<<<<<<<<<<<< - * bound_ind_x: cython.size_t = sub_samp*xi_min - * -*/ - __pyx_v_bound_coord_x = (((double)__pyx_v_xi_min) + __pyx_v_coord_offset); - - /* "pyvale/sensorsim/cython/rastercyth.py":598 - * - * bound_coord_x = float(xi_min) + coord_offset - * bound_ind_x: cython.size_t = sub_samp*xi_min # <<<<<<<<<<<<<< - * - * for ii in range(num_bound_x): -*/ - __pyx_v_bound_ind_x = (__pyx_v_sub_samp * __pyx_v_xi_min); - - /* "pyvale/sensorsim/cython/rastercyth.py":600 - * bound_ind_x: cython.size_t = sub_samp*xi_min - * - * for ii in range(num_bound_x): # <<<<<<<<<<<<<< - * - * px_coord_buff[xx] = bound_coord_x -*/ - __pyx_t_7 = __pyx_v_num_bound_x; - __pyx_t_8 = __pyx_t_7; - for (__pyx_t_15 = 0; __pyx_t_15 < __pyx_t_8; __pyx_t_15+=1) { - __pyx_v_ii = __pyx_t_15; - - /* "pyvale/sensorsim/cython/rastercyth.py":602 - * for ii in range(num_bound_x): - * - * px_coord_buff[xx] = bound_coord_x # <<<<<<<<<<<<<< - * px_coord_buff[yy] = bound_coord_y - * -*/ - __pyx_t_14 = __pyx_v_xx; - *((double *) ( /* dim=0 */ (__pyx_v_px_coord_buff.data + __pyx_t_14 * __pyx_v_px_coord_buff.strides[0]) )) = __pyx_v_bound_coord_x; - - /* "pyvale/sensorsim/cython/rastercyth.py":603 - * - * px_coord_buff[xx] = bound_coord_x - * px_coord_buff[yy] = bound_coord_y # <<<<<<<<<<<<<< - * - * # Check the edge functions for each edge one at a time, as soon -*/ - __pyx_t_14 = __pyx_v_yy; - *((double *) ( /* dim=0 */ (__pyx_v_px_coord_buff.data + __pyx_t_14 * __pyx_v_px_coord_buff.strides[0]) )) = __pyx_v_bound_coord_y; - - /* "pyvale/sensorsim/cython/rastercyth.py":607 - * # Check the edge functions for each edge one at a time, as soon - * # as one is outside we don't need to do anymore work - * weights_buff[0] = edge_function(nodes_raster_buff[1,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[2,:], - * px_coord_buff) -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - { - Py_ssize_t __pyx_tmp_idx = 1; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 607, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":608 - * # as one is outside we don't need to do anymore work - * weights_buff[0] = edge_function(nodes_raster_buff[1,:], - * nodes_raster_buff[2,:], # <<<<<<<<<<<<<< - * px_coord_buff) - * if (weights_buff[0] < -tol): -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = 2; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 608, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":607 - * # Check the edge functions for each edge one at a time, as soon - * # as one is outside we don't need to do anymore work - * weights_buff[0] = edge_function(nodes_raster_buff[1,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[2,:], - * px_coord_buff) -*/ - __pyx_t_16 = 0; - *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_9, __pyx_t_10, __pyx_v_px_coord_buff); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":610 - * nodes_raster_buff[2,:], - * px_coord_buff) - * if (weights_buff[0] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - __pyx_t_16 = 0; - __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol)); - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":611 - * px_coord_buff) - * if (weights_buff[0] < -tol): - * bound_coord_x += coord_step # <<<<<<<<<<<<<< - * bound_ind_x += 1 - * continue -*/ - __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":612 - * if (weights_buff[0] < -tol): - * bound_coord_x += coord_step - * bound_ind_x += 1 # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":613 - * bound_coord_x += coord_step - * bound_ind_x += 1 - * continue # <<<<<<<<<<<<<< - * - * weights_buff[1] = edge_function(nodes_raster_buff[2,:], -*/ - goto __pyx_L18_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":610 - * nodes_raster_buff[2,:], - * px_coord_buff) - * if (weights_buff[0] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":615 - * continue - * - * weights_buff[1] = edge_function(nodes_raster_buff[2,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[0,:], - * px_coord_buff) -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = 2; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 615, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":616 - * - * weights_buff[1] = edge_function(nodes_raster_buff[2,:], - * nodes_raster_buff[0,:], # <<<<<<<<<<<<<< - * px_coord_buff) - * if (weights_buff[1] < -tol): -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - { - Py_ssize_t __pyx_tmp_idx = 0; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 616, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":615 - * continue - * - * weights_buff[1] = edge_function(nodes_raster_buff[2,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[0,:], - * px_coord_buff) -*/ - __pyx_t_16 = 1; - *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_10, __pyx_t_9, __pyx_v_px_coord_buff); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":618 - * nodes_raster_buff[0,:], - * px_coord_buff) - * if (weights_buff[1] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - __pyx_t_16 = 1; - __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol)); - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":619 - * px_coord_buff) - * if (weights_buff[1] < -tol): - * bound_coord_x += coord_step # <<<<<<<<<<<<<< - * bound_ind_x += 1 - * continue -*/ - __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":620 - * if (weights_buff[1] < -tol): - * bound_coord_x += coord_step - * bound_ind_x += 1 # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":621 - * bound_coord_x += coord_step - * bound_ind_x += 1 - * continue # <<<<<<<<<<<<<< - * - * -*/ - goto __pyx_L18_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":618 - * nodes_raster_buff[0,:], - * px_coord_buff) - * if (weights_buff[1] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":624 - * - * - * weights_buff[2] = edge_function(nodes_raster_buff[0,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[1,:], - * px_coord_buff) -*/ - __pyx_t_9.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_9, 1); - { - Py_ssize_t __pyx_tmp_idx = 0; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_9.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 624, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":625 - * - * weights_buff[2] = edge_function(nodes_raster_buff[0,:], - * nodes_raster_buff[1,:], # <<<<<<<<<<<<<< - * px_coord_buff) - * if (weights_buff[2] < -tol): -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - { - Py_ssize_t __pyx_tmp_idx = 1; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.suboffsets[0] = -1; - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 625, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":624 - * - * - * weights_buff[2] = edge_function(nodes_raster_buff[0,:], # <<<<<<<<<<<<<< - * nodes_raster_buff[1,:], - * px_coord_buff) -*/ - __pyx_t_16 = 2; - *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_9, __pyx_t_10, __pyx_v_px_coord_buff); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":627 - * nodes_raster_buff[1,:], - * px_coord_buff) - * if (weights_buff[2] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - __pyx_t_16 = 2; - __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol)); - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":628 - * px_coord_buff) - * if (weights_buff[2] < -tol): - * bound_coord_x += coord_step # <<<<<<<<<<<<<< - * bound_ind_x += 1 - * continue -*/ - __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":629 - * if (weights_buff[2] < -tol): - * bound_coord_x += coord_step - * bound_ind_x += 1 # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":630 - * bound_coord_x += coord_step - * bound_ind_x += 1 - * continue # <<<<<<<<<<<<<< - * - * # if (ee%6) == 0: -*/ - goto __pyx_L18_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":627 - * nodes_raster_buff[1,:], - * px_coord_buff) - * if (weights_buff[2] < -tol): # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":640 - * - * - * for ww in range(nodes_per_elem): # <<<<<<<<<<<<<< - * weights_buff[ww] = weights_buff[ww] / elem_area - * -*/ - __pyx_t_14 = __pyx_v_nodes_per_elem; - __pyx_t_17 = __pyx_t_14; - for (__pyx_t_18 = 0; __pyx_t_18 < __pyx_t_17; __pyx_t_18+=1) { - __pyx_v_ww = __pyx_t_18; - - /* "pyvale/sensorsim/cython/rastercyth.py":641 - * - * for ww in range(nodes_per_elem): - * weights_buff[ww] = weights_buff[ww] / elem_area # <<<<<<<<<<<<<< - * - * weight_dot_nodes: cython.double = vec_dot_double( -*/ - __pyx_t_19 = __pyx_v_ww; - __pyx_t_20 = __pyx_v_ww; - *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_20 * __pyx_v_weights_buff.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_19 * __pyx_v_weights_buff.strides[0]) ))) / __pyx_v_elem_area); - } - - /* "pyvale/sensorsim/cython/rastercyth.py":645 - * weight_dot_nodes: cython.double = vec_dot_double( - * weights_buff, - * nodes_raster_buff[:,zz]) # <<<<<<<<<<<<<< - * - * # Check the depth buffer, if the element is behind move on -*/ - __pyx_t_10.data = __pyx_v_nodes_raster_buff.data; - __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview; - __PYX_INC_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[0]; -__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[0]; - __pyx_t_10.suboffsets[0] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_zz; - Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1]; - __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 645, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":643 - * weights_buff[ww] = weights_buff[ww] / elem_area - * - * weight_dot_nodes: cython.double = vec_dot_double( # <<<<<<<<<<<<<< - * weights_buff, - * nodes_raster_buff[:,zz]) -*/ - __pyx_v_weight_dot_nodes = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__pyx_v_weights_buff, __pyx_t_10); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL; - - /* "pyvale/sensorsim/cython/rastercyth.py":648 - * - * # Check the depth buffer, if the element is behind move on - * px_coord_z: cython.double = 1/weight_dot_nodes # <<<<<<<<<<<<<< - * if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: - * bound_coord_x += coord_step -*/ - __pyx_v_px_coord_z = (1.0 / __pyx_v_weight_dot_nodes); - - /* "pyvale/sensorsim/cython/rastercyth.py":649 - * # Check the depth buffer, if the element is behind move on - * px_coord_z: cython.double = 1/weight_dot_nodes - * if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - __pyx_t_14 = __pyx_v_bound_ind_y; - __pyx_t_17 = __pyx_v_bound_ind_x; - __pyx_t_12 = (__pyx_v_px_coord_z >= (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_depth_buff_subpx.data + __pyx_t_14 * __pyx_v_depth_buff_subpx.strides[0]) ) + __pyx_t_17 * __pyx_v_depth_buff_subpx.strides[1]) )))); - if (__pyx_t_12) { - - /* "pyvale/sensorsim/cython/rastercyth.py":650 - * px_coord_z: cython.double = 1/weight_dot_nodes - * if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: - * bound_coord_x += coord_step # <<<<<<<<<<<<<< - * bound_ind_x += 1 - * continue -*/ - __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":651 - * if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: - * bound_coord_x += coord_step - * bound_ind_x += 1 # <<<<<<<<<<<<<< - * continue - * -*/ - __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1); - - /* "pyvale/sensorsim/cython/rastercyth.py":652 - * bound_coord_x += coord_step - * bound_ind_x += 1 - * continue # <<<<<<<<<<<<<< - * - * # We only need one depth buffer for all fields -*/ - goto __pyx_L18_continue; - - /* "pyvale/sensorsim/cython/rastercyth.py":649 - * # Check the depth buffer, if the element is behind move on - * px_coord_z: cython.double = 1/weight_dot_nodes - * if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: # <<<<<<<<<<<<<< - * bound_coord_x += coord_step - * bound_ind_x += 1 -*/ - } - - /* "pyvale/sensorsim/cython/rastercyth.py":655 - * - * # We only need one depth buffer for all fields - * depth_buff_subpx[bound_ind_y,bound_ind_x] = px_coord_z # <<<<<<<<<<<<<< - * - * for ff in range(fields_num): -*/ - __pyx_t_17 = __pyx_v_bound_ind_y; - __pyx_t_14 = __pyx_v_bound_ind_x; - *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_depth_buff_subpx.data + __pyx_t_17 * __pyx_v_depth_buff_subpx.strides[0]) ) + __pyx_t_14 * __pyx_v_depth_buff_subpx.strides[1]) )) = __pyx_v_px_coord_z; - - /* "pyvale/sensorsim/cython/rastercyth.py":657 - * depth_buff_subpx[bound_ind_y,bound_ind_x] = px_coord_z - * - * for ff in range(fields_num): # <<<<<<<<<<<<<< - * for nn in range(nodes_per_elem): - * -*/ - __pyx_t_14 = __pyx_v_fields_num; - __pyx_t_17 = __pyx_t_14; - for (__pyx_t_18 = 0; __pyx_t_18 < __pyx_t_17; __pyx_t_18+=1) { - __pyx_v_ff = __pyx_t_18; - - /* "pyvale/sensorsim/cython/rastercyth.py":658 - * - * for ff in range(fields_num): - * for nn in range(nodes_per_elem): # <<<<<<<<<<<<<< - * - * field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff] -*/ - __pyx_t_19 = __pyx_v_nodes_per_elem; - __pyx_t_20 = __pyx_t_19; - for (__pyx_t_21 = 0; __pyx_t_21 < __pyx_t_20; __pyx_t_21+=1) { - __pyx_v_nn = __pyx_t_21; - - /* "pyvale/sensorsim/cython/rastercyth.py":660 - * for nn in range(nodes_per_elem): - * - * field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff] # <<<<<<<<<<<<<< - * *nodes_raster_buff[nn,zz]) - * -*/ - __pyx_t_22 = __pyx_v_ee; - __pyx_t_23 = __pyx_v_nn; - __pyx_t_24 = (*((size_t *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_connect.data + __pyx_t_22 * __pyx_v_connect.strides[0]) ) + __pyx_t_23 * __pyx_v_connect.strides[1]) ))); - __pyx_t_25 = __pyx_v_ff; - - /* "pyvale/sensorsim/cython/rastercyth.py":661 - * - * field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff] - * *nodes_raster_buff[nn,zz]) # <<<<<<<<<<<<<< - * - * px_field: cython.double = (vec_dot_double(field_raster_buff, -*/ - __pyx_t_26 = __pyx_v_nn; - __pyx_t_27 = __pyx_v_zz; - - /* "pyvale/sensorsim/cython/rastercyth.py":660 - * for nn in range(nodes_per_elem): - * - * field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff] # <<<<<<<<<<<<<< - * *nodes_raster_buff[nn,zz]) - * -*/ - __pyx_t_28 = __pyx_v_nn; - *((double *) ( /* dim=0 */ (__pyx_v_field_raster_buff.data + __pyx_t_28 * __pyx_v_field_raster_buff.strides[0]) )) = ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_fields_to_render.data + __pyx_t_24 * __pyx_v_fields_to_render.strides[0]) ) + __pyx_t_25 * __pyx_v_fields_to_render.strides[1]) ))) * (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_26 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_27 * __pyx_v_nodes_raster_buff.strides[1]) )))); - } - - /* "pyvale/sensorsim/cython/rastercyth.py":665 - * px_field: cython.double = (vec_dot_double(field_raster_buff, - * weights_buff) - * *px_coord_z) # <<<<<<<<<<<<<< - * - * image_buff_subpx[bound_ind_y,bound_ind_x,ff] = px_field -*/ - __pyx_v_px_field = (__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__pyx_v_field_raster_buff, __pyx_v_weights_buff) * __pyx_v_px_coord_z); - - /* "pyvale/sensorsim/cython/rastercyth.py":667 - * *px_coord_z) - * - * image_buff_subpx[bound_ind_y,bound_ind_x,ff] = px_field # <<<<<<<<<<<<<< - * - * # end for(x) - increment the x coords -*/ - __pyx_t_19 = __pyx_v_bound_ind_y; - __pyx_t_20 = __pyx_v_bound_ind_x; - __pyx_t_21 = __pyx_v_ff; - *((double *) ( /* dim=2 */ (( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_subpx.data + __pyx_t_19 * __pyx_v_image_buff_subpx.strides[0]) ) + __pyx_t_20 * __pyx_v_image_buff_subpx.strides[1]) ) + __pyx_t_21 * __pyx_v_image_buff_subpx.strides[2]) )) = __pyx_v_px_field; - } - - /* "pyvale/sensorsim/cython/rastercyth.py":670 - * - * # end for(x) - increment the x coords - * bound_coord_x += coord_step # <<<<<<<<<<<<<< - * bound_ind_x += 1 - * -*/ - __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":671 - * # end for(x) - increment the x coords - * bound_coord_x += coord_step - * bound_ind_x += 1 # <<<<<<<<<<<<<< - * - * # end for(y) - increment the y coords -*/ - __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1); - __pyx_L18_continue:; - } - - /* "pyvale/sensorsim/cython/rastercyth.py":674 - * - * # end for(y) - increment the y coords - * bound_coord_y += coord_step # <<<<<<<<<<<<<< - * bound_ind_y += 1 - * -*/ - __pyx_v_bound_coord_y = (__pyx_v_bound_coord_y + __pyx_v_coord_step); - - /* "pyvale/sensorsim/cython/rastercyth.py":675 - * # end for(y) - increment the y coords - * bound_coord_y += coord_step - * bound_ind_y += 1 # <<<<<<<<<<<<<< - * - * _average_image(depth_buff_subpx,sub_samp,depth_buff_avg) -*/ - __pyx_v_bound_ind_y = (__pyx_v_bound_ind_y + 1); - } - __pyx_L3_continue:; - } - - /* "pyvale/sensorsim/cython/rastercyth.py":677 - * bound_ind_y += 1 - * - * _average_image(depth_buff_subpx,sub_samp,depth_buff_avg) # <<<<<<<<<<<<<< - * - * for ff in range(fields_num): -*/ - (void)(__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__pyx_v_depth_buff_subpx, __pyx_v_sub_samp, __pyx_v_depth_buff_avg)); - - /* "pyvale/sensorsim/cython/rastercyth.py":679 - * _average_image(depth_buff_subpx,sub_samp,depth_buff_avg) - * - * for ff in range(fields_num): # <<<<<<<<<<<<<< - * _average_image(image_buff_subpx[:,:,ff], - * sub_samp, -*/ - __pyx_t_1 = __pyx_v_fields_num; - __pyx_t_2 = __pyx_t_1; - for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) { - __pyx_v_ff = __pyx_t_3; - - /* "pyvale/sensorsim/cython/rastercyth.py":680 - * - * for ff in range(fields_num): - * _average_image(image_buff_subpx[:,:,ff], # <<<<<<<<<<<<<< - * sub_samp, - * image_buff_avg[:,:,ff]) -*/ - __pyx_t_29.data = __pyx_v_image_buff_subpx.data; - __pyx_t_29.memview = __pyx_v_image_buff_subpx.memview; - __PYX_INC_MEMVIEW(&__pyx_t_29, 1); - __pyx_t_29.shape[0] = __pyx_v_image_buff_subpx.shape[0]; -__pyx_t_29.strides[0] = __pyx_v_image_buff_subpx.strides[0]; - __pyx_t_29.suboffsets[0] = -1; - -__pyx_t_29.shape[1] = __pyx_v_image_buff_subpx.shape[1]; -__pyx_t_29.strides[1] = __pyx_v_image_buff_subpx.strides[1]; - __pyx_t_29.suboffsets[1] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_ff; - Py_ssize_t __pyx_tmp_stride = __pyx_v_image_buff_subpx.strides[2]; - __pyx_t_29.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_29.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 680, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":682 - * _average_image(image_buff_subpx[:,:,ff], - * sub_samp, - * image_buff_avg[:,:,ff]) # <<<<<<<<<<<<<< - * - * return elems_in_image -*/ - __pyx_t_30.data = __pyx_v_image_buff_avg.data; - __pyx_t_30.memview = __pyx_v_image_buff_avg.memview; - __PYX_INC_MEMVIEW(&__pyx_t_30, 1); - __pyx_t_30.shape[0] = __pyx_v_image_buff_avg.shape[0]; -__pyx_t_30.strides[0] = __pyx_v_image_buff_avg.strides[0]; - __pyx_t_30.suboffsets[0] = -1; - -__pyx_t_30.shape[1] = __pyx_v_image_buff_avg.shape[1]; -__pyx_t_30.strides[1] = __pyx_v_image_buff_avg.strides[1]; - __pyx_t_30.suboffsets[1] = -1; - -{ - Py_ssize_t __pyx_tmp_idx = __pyx_v_ff; - Py_ssize_t __pyx_tmp_stride = __pyx_v_image_buff_avg.strides[2]; - __pyx_t_30.data += __pyx_tmp_idx * __pyx_tmp_stride; -} - -if (unlikely(((PyObject *) __pyx_t_30.memview) == Py_None)) { - PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'"); - __PYX_ERR(0, 682, __pyx_L1_error) - } - - /* "pyvale/sensorsim/cython/rastercyth.py":680 - * - * for ff in range(fields_num): - * _average_image(image_buff_subpx[:,:,ff], # <<<<<<<<<<<<<< - * sub_samp, - * image_buff_avg[:,:,ff]) -*/ - (void)(__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__pyx_t_29, __pyx_v_sub_samp, __pyx_t_30)); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_29, 1); - __pyx_t_29.memview = NULL; __pyx_t_29.data = NULL; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_30, 1); - __pyx_t_30.memview = NULL; __pyx_t_30.data = NULL; - } - - /* "pyvale/sensorsim/cython/rastercyth.py":684 - * image_buff_avg[:,:,ff]) - * - * return elems_in_image # <<<<<<<<<<<<<< -*/ - __pyx_r = __pyx_v_elems_in_image; - goto __pyx_L0; - - /* "pyvale/sensorsim/cython/rastercyth.py":419 - * #/////////////////////////////////////////////////////////////////////////////// - * #@cython.nogil - * @cython.cfunc # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - - /* function exit code */ - __pyx_L1_error:; - __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_11, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_29, 1); - __PYX_XCLEAR_MEMVIEW(&__pyx_t_30, 1); - __Pyx_WriteUnraisable("pyvale.sensorsim.cython.rastercyth._raster_frame", __pyx_clineno, __pyx_lineno, __pyx_filename, 1, 0); - __pyx_r = 0; - __pyx_L0:; - return __pyx_r; -} -/* #### Code section: module_exttypes ### */ -static struct __pyx_vtabstruct_array __pyx_vtable_array; - -static PyObject *__pyx_tp_new_array(PyTypeObject *t, PyObject *a, PyObject *k) { - struct __pyx_array_obj *p; - PyObject *o; - o = __Pyx_AllocateExtensionType(t, 0); - if (unlikely(!o)) return 0; - p = ((struct __pyx_array_obj *)o); - p->__pyx_vtab = __pyx_vtabptr_array; - p->mode = ((PyObject*)Py_None); Py_INCREF(Py_None); - p->_format = ((PyObject*)Py_None); Py_INCREF(Py_None); - if (unlikely(__pyx_array___cinit__(o, a, k) < 0)) goto bad; - return o; - bad: - Py_DECREF(o); o = 0; - return NULL; -} - -static void __pyx_tp_dealloc_array(PyObject *o) { - struct __pyx_array_obj *p = (struct __pyx_array_obj *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(__Pyx_PyObject_GetSlot(o, tp_finalize, destructor)) && (!PyType_IS_GC(Py_TYPE(o)) || !__Pyx_PyObject_GC_IsFinalized(o))) { - if (__Pyx_PyObject_GetSlot(o, tp_dealloc, destructor) == __pyx_tp_dealloc_array) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - } - #endif - { - PyObject *etype, *eval, *etb; - PyErr_Fetch(&etype, &eval, &etb); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) + 1); - __pyx_array___dealloc__(o); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) - 1); - PyErr_Restore(etype, eval, etb); - } - Py_CLEAR(p->mode); - Py_CLEAR(p->_format); - PyTypeObject *tp = Py_TYPE(o); - #if CYTHON_USE_TYPE_SLOTS - (*tp->tp_free)(o); - #else - { - freefunc tp_free = (freefunc)PyType_GetSlot(tp, Py_tp_free); - if (tp_free) tp_free(o); - } - #endif - #if CYTHON_USE_TYPE_SPECS - Py_DECREF(tp); - #endif -} - -static PyObject *__pyx_sq_item_array(PyObject *o, Py_ssize_t i) { - PyObject *r; - PyObject *x = PyLong_FromSsize_t(i); if(!x) return 0; - #if CYTHON_USE_TYPE_SLOTS || (!CYTHON_USE_TYPE_SPECS && __PYX_LIMITED_VERSION_HEX < 0x030A0000) - r = Py_TYPE(o)->tp_as_mapping->mp_subscript(o, x); - #else - r = ((binaryfunc)PyType_GetSlot(Py_TYPE(o), Py_mp_subscript))(o, x); - #endif - Py_DECREF(x); - return r; -} - -static int __pyx_mp_ass_subscript_array(PyObject *o, PyObject *i, PyObject *v) { - if (v) { - return __pyx_array___setitem__(o, i, v); - } - else { - __Pyx_TypeName o_type_name; - o_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(o)); - PyErr_Format(PyExc_NotImplementedError, - "Subscript deletion not supported by " __Pyx_FMT_TYPENAME, o_type_name); - __Pyx_DECREF_TypeName(o_type_name); - return -1; - } -} - -static PyObject *__pyx_tp_getattro_array(PyObject *o, PyObject *n) { - PyObject *v = PyObject_GenericGetAttr(o, n); - if (!v && PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - v = __pyx_array___getattr__(o, n); - } - return v; -} - -static PyObject *__pyx_getprop___pyx_array_memview(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_5array_7memview_1__get__(o); -} - -static PyMethodDef __pyx_methods_array[] = { - {"__getattr__", (PyCFunction)__pyx_array___getattr__, METH_O|METH_COEXIST, 0}, - {"__reduce_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_array_1__reduce_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"__setstate_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_array_3__setstate_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {0, 0, 0, 0} -}; - -static struct PyGetSetDef __pyx_getsets_array[] = { - {"memview", __pyx_getprop___pyx_array_memview, 0, 0, 0}, - {0, 0, 0, 0, 0} -}; -#if CYTHON_USE_TYPE_SPECS -#if !CYTHON_COMPILING_IN_LIMITED_API - -static PyBufferProcs __pyx_tp_as_buffer_array = { - __pyx_array_getbuffer, /*bf_getbuffer*/ - 0, /*bf_releasebuffer*/ -}; -#endif -static PyType_Slot __pyx_type___pyx_array_slots[] = { - {Py_tp_dealloc, (void *)__pyx_tp_dealloc_array}, - {Py_sq_length, (void *)__pyx_array___len__}, - {Py_sq_item, (void *)__pyx_sq_item_array}, - {Py_mp_length, (void *)__pyx_array___len__}, - {Py_mp_subscript, (void *)__pyx_array___getitem__}, - {Py_mp_ass_subscript, (void *)__pyx_mp_ass_subscript_array}, - {Py_tp_getattro, (void *)__pyx_tp_getattro_array}, - #if defined(Py_bf_getbuffer) - {Py_bf_getbuffer, (void *)__pyx_array_getbuffer}, - #endif - {Py_tp_methods, (void *)__pyx_methods_array}, - {Py_tp_getset, (void *)__pyx_getsets_array}, - {Py_tp_new, (void *)__pyx_tp_new_array}, - {0, 0}, -}; -static PyType_Spec __pyx_type___pyx_array_spec = { - "pyvale.sensorsim.cython.rastercyth.array", - sizeof(struct __pyx_array_obj), - 0, - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_SEQUENCE, - __pyx_type___pyx_array_slots, -}; -#else - -static PySequenceMethods __pyx_tp_as_sequence_array = { - __pyx_array___len__, /*sq_length*/ - 0, /*sq_concat*/ - 0, /*sq_repeat*/ - __pyx_sq_item_array, /*sq_item*/ - 0, /*sq_slice*/ - 0, /*sq_ass_item*/ - 0, /*sq_ass_slice*/ - 0, /*sq_contains*/ - 0, /*sq_inplace_concat*/ - 0, /*sq_inplace_repeat*/ -}; - -static PyMappingMethods __pyx_tp_as_mapping_array = { - __pyx_array___len__, /*mp_length*/ - __pyx_array___getitem__, /*mp_subscript*/ - __pyx_mp_ass_subscript_array, /*mp_ass_subscript*/ -}; - -static PyBufferProcs __pyx_tp_as_buffer_array = { - __pyx_array_getbuffer, /*bf_getbuffer*/ - 0, /*bf_releasebuffer*/ -}; - -static PyTypeObject __pyx_type___pyx_array = { - PyVarObject_HEAD_INIT(0, 0) - "pyvale.sensorsim.cython.rastercyth.""array", /*tp_name*/ - sizeof(struct __pyx_array_obj), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_array, /*tp_dealloc*/ - 0, /*tp_vectorcall_offset*/ - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - 0, /*tp_as_async*/ - 0, /*tp_repr*/ - 0, /*tp_as_number*/ - &__pyx_tp_as_sequence_array, /*tp_as_sequence*/ - &__pyx_tp_as_mapping_array, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - 0, /*tp_str*/ - __pyx_tp_getattro_array, /*tp_getattro*/ - 0, /*tp_setattro*/ - &__pyx_tp_as_buffer_array, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_SEQUENCE, /*tp_flags*/ - 0, /*tp_doc*/ - 0, /*tp_traverse*/ - 0, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_array, /*tp_methods*/ - 0, /*tp_members*/ - __pyx_getsets_array, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - #if !CYTHON_USE_TYPE_SPECS - 0, /*tp_dictoffset*/ - #endif - 0, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_array, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if CYTHON_USE_TP_FINALIZE - 0, /*tp_finalize*/ - #else - NULL, /*tp_finalize*/ - #endif - #if !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM >= 0x07030800 - 0, /*tp_vectorcall*/ - #endif - #if __PYX_NEED_TP_PRINT_SLOT == 1 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030C0000 - 0, /*tp_watched*/ - #endif - #if PY_VERSION_HEX >= 0x030d00A4 - 0, /*tp_versions_used*/ - #endif - #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX >= 0x03090000 && PY_VERSION_HEX < 0x030a0000 - 0, /*tp_pypy_flags*/ - #endif -}; -#endif - -static PyObject *__pyx_tp_new_Enum(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) { - struct __pyx_MemviewEnum_obj *p; - PyObject *o; - o = __Pyx_AllocateExtensionType(t, 0); - if (unlikely(!o)) return 0; - p = ((struct __pyx_MemviewEnum_obj *)o); - p->name = Py_None; Py_INCREF(Py_None); - return o; -} - -static void __pyx_tp_dealloc_Enum(PyObject *o) { - struct __pyx_MemviewEnum_obj *p = (struct __pyx_MemviewEnum_obj *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(__Pyx_PyObject_GetSlot(o, tp_finalize, destructor)) && !__Pyx_PyObject_GC_IsFinalized(o)) { - if (__Pyx_PyObject_GetSlot(o, tp_dealloc, destructor) == __pyx_tp_dealloc_Enum) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - } - #endif - PyObject_GC_UnTrack(o); - Py_CLEAR(p->name); - PyTypeObject *tp = Py_TYPE(o); - #if CYTHON_USE_TYPE_SLOTS - (*tp->tp_free)(o); - #else - { - freefunc tp_free = (freefunc)PyType_GetSlot(tp, Py_tp_free); - if (tp_free) tp_free(o); - } - #endif - #if CYTHON_USE_TYPE_SPECS - Py_DECREF(tp); - #endif -} - -static int __pyx_tp_traverse_Enum(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_MemviewEnum_obj *p = (struct __pyx_MemviewEnum_obj *)o; - { - e = __Pyx_call_type_traverse(o, 1, v, a); - if (e) return e; - } - if (p->name) { - e = (*v)(p->name, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear_Enum(PyObject *o) { - PyObject* tmp; - struct __pyx_MemviewEnum_obj *p = (struct __pyx_MemviewEnum_obj *)o; - tmp = ((PyObject*)p->name); - p->name = Py_None; Py_INCREF(Py_None); - Py_XDECREF(tmp); - return 0; -} - -static PyMethodDef __pyx_methods_Enum[] = { - {"__reduce_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_MemviewEnum_1__reduce_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"__setstate_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_MemviewEnum_3__setstate_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {0, 0, 0, 0} -}; -#if CYTHON_USE_TYPE_SPECS -static PyType_Slot __pyx_type___pyx_MemviewEnum_slots[] = { - {Py_tp_dealloc, (void *)__pyx_tp_dealloc_Enum}, - {Py_tp_repr, (void *)__pyx_MemviewEnum___repr__}, - {Py_tp_traverse, (void *)__pyx_tp_traverse_Enum}, - {Py_tp_clear, (void *)__pyx_tp_clear_Enum}, - {Py_tp_methods, (void *)__pyx_methods_Enum}, - {Py_tp_init, (void *)__pyx_MemviewEnum___init__}, - {Py_tp_new, (void *)__pyx_tp_new_Enum}, - {0, 0}, -}; -static PyType_Spec __pyx_type___pyx_MemviewEnum_spec = { - "pyvale.sensorsim.cython.rastercyth.Enum", - sizeof(struct __pyx_MemviewEnum_obj), - 0, - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, - __pyx_type___pyx_MemviewEnum_slots, -}; -#else - -static PyTypeObject __pyx_type___pyx_MemviewEnum = { - PyVarObject_HEAD_INIT(0, 0) - "pyvale.sensorsim.cython.rastercyth.""Enum", /*tp_name*/ - sizeof(struct __pyx_MemviewEnum_obj), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_Enum, /*tp_dealloc*/ - 0, /*tp_vectorcall_offset*/ - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - 0, /*tp_as_async*/ - __pyx_MemviewEnum___repr__, /*tp_repr*/ - 0, /*tp_as_number*/ - 0, /*tp_as_sequence*/ - 0, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - 0, /*tp_str*/ - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - 0, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - 0, /*tp_doc*/ - __pyx_tp_traverse_Enum, /*tp_traverse*/ - __pyx_tp_clear_Enum, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_Enum, /*tp_methods*/ - 0, /*tp_members*/ - 0, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - #if !CYTHON_USE_TYPE_SPECS - 0, /*tp_dictoffset*/ - #endif - __pyx_MemviewEnum___init__, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_Enum, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if CYTHON_USE_TP_FINALIZE - 0, /*tp_finalize*/ - #else - NULL, /*tp_finalize*/ - #endif - #if !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM >= 0x07030800 - 0, /*tp_vectorcall*/ - #endif - #if __PYX_NEED_TP_PRINT_SLOT == 1 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030C0000 - 0, /*tp_watched*/ - #endif - #if PY_VERSION_HEX >= 0x030d00A4 - 0, /*tp_versions_used*/ - #endif - #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX >= 0x03090000 && PY_VERSION_HEX < 0x030a0000 - 0, /*tp_pypy_flags*/ - #endif -}; -#endif -static struct __pyx_vtabstruct_memoryview __pyx_vtable_memoryview; - -static PyObject *__pyx_tp_new_memoryview(PyTypeObject *t, PyObject *a, PyObject *k) { - struct __pyx_memoryview_obj *p; - PyObject *o; - o = __Pyx_AllocateExtensionType(t, 0); - if (unlikely(!o)) return 0; - p = ((struct __pyx_memoryview_obj *)o); - p->__pyx_vtab = __pyx_vtabptr_memoryview; - p->obj = Py_None; Py_INCREF(Py_None); - p->_size = Py_None; Py_INCREF(Py_None); - p->view.obj = NULL; - if (unlikely(__pyx_memoryview___cinit__(o, a, k) < 0)) goto bad; - return o; - bad: - Py_DECREF(o); o = 0; - return NULL; -} - -static void __pyx_tp_dealloc_memoryview(PyObject *o) { - struct __pyx_memoryview_obj *p = (struct __pyx_memoryview_obj *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(__Pyx_PyObject_GetSlot(o, tp_finalize, destructor)) && !__Pyx_PyObject_GC_IsFinalized(o)) { - if (__Pyx_PyObject_GetSlot(o, tp_dealloc, destructor) == __pyx_tp_dealloc_memoryview) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - } - #endif - PyObject_GC_UnTrack(o); - { - PyObject *etype, *eval, *etb; - PyErr_Fetch(&etype, &eval, &etb); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) + 1); - __pyx_memoryview___dealloc__(o); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) - 1); - PyErr_Restore(etype, eval, etb); - } - Py_CLEAR(p->obj); - Py_CLEAR(p->_size); - PyTypeObject *tp = Py_TYPE(o); - #if CYTHON_USE_TYPE_SLOTS - (*tp->tp_free)(o); - #else - { - freefunc tp_free = (freefunc)PyType_GetSlot(tp, Py_tp_free); - if (tp_free) tp_free(o); - } - #endif - #if CYTHON_USE_TYPE_SPECS - Py_DECREF(tp); - #endif -} - -static int __pyx_tp_traverse_memoryview(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_memoryview_obj *p = (struct __pyx_memoryview_obj *)o; - { - e = __Pyx_call_type_traverse(o, 1, v, a); - if (e) return e; - } - if (p->obj) { - e = (*v)(p->obj, a); if (e) return e; - } - if (p->_size) { - e = (*v)(p->_size, a); if (e) return e; - } - if (p->view.obj) { - e = (*v)(p->view.obj, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear_memoryview(PyObject *o) { - PyObject* tmp; - struct __pyx_memoryview_obj *p = (struct __pyx_memoryview_obj *)o; - tmp = ((PyObject*)p->obj); - p->obj = Py_None; Py_INCREF(Py_None); - Py_XDECREF(tmp); - tmp = ((PyObject*)p->_size); - p->_size = Py_None; Py_INCREF(Py_None); - Py_XDECREF(tmp); - Py_CLEAR(p->view.obj); - return 0; -} - -static PyObject *__pyx_sq_item_memoryview(PyObject *o, Py_ssize_t i) { - PyObject *r; - PyObject *x = PyLong_FromSsize_t(i); if(!x) return 0; - #if CYTHON_USE_TYPE_SLOTS || (!CYTHON_USE_TYPE_SPECS && __PYX_LIMITED_VERSION_HEX < 0x030A0000) - r = Py_TYPE(o)->tp_as_mapping->mp_subscript(o, x); - #else - r = ((binaryfunc)PyType_GetSlot(Py_TYPE(o), Py_mp_subscript))(o, x); - #endif - Py_DECREF(x); - return r; -} - -static int __pyx_mp_ass_subscript_memoryview(PyObject *o, PyObject *i, PyObject *v) { - if (v) { - return __pyx_memoryview___setitem__(o, i, v); - } - else { - __Pyx_TypeName o_type_name; - o_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(o)); - PyErr_Format(PyExc_NotImplementedError, - "Subscript deletion not supported by " __Pyx_FMT_TYPENAME, o_type_name); - __Pyx_DECREF_TypeName(o_type_name); - return -1; - } -} - -static PyObject *__pyx_getprop___pyx_memoryview_T(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_1T_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_base(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_4base_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_shape(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_5shape_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_strides(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_7strides_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_suboffsets(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_10suboffsets_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_ndim(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_4ndim_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_itemsize(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_8itemsize_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_nbytes(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_6nbytes_1__get__(o); -} - -static PyObject *__pyx_getprop___pyx_memoryview_size(PyObject *o, CYTHON_UNUSED void *x) { - return __pyx_pw_15View_dot_MemoryView_10memoryview_4size_1__get__(o); -} - -static PyMethodDef __pyx_methods_memoryview[] = { - {"is_c_contig", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_memoryview_is_c_contig, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"is_f_contig", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_memoryview_is_f_contig, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"copy", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_memoryview_copy, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"copy_fortran", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_memoryview_copy_fortran, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"__reduce_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_memoryview_1__reduce_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"__setstate_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_memoryview_3__setstate_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {0, 0, 0, 0} -}; - -static struct PyGetSetDef __pyx_getsets_memoryview[] = { - {"T", __pyx_getprop___pyx_memoryview_T, 0, 0, 0}, - {"base", __pyx_getprop___pyx_memoryview_base, 0, 0, 0}, - {"shape", __pyx_getprop___pyx_memoryview_shape, 0, 0, 0}, - {"strides", __pyx_getprop___pyx_memoryview_strides, 0, 0, 0}, - {"suboffsets", __pyx_getprop___pyx_memoryview_suboffsets, 0, 0, 0}, - {"ndim", __pyx_getprop___pyx_memoryview_ndim, 0, 0, 0}, - {"itemsize", __pyx_getprop___pyx_memoryview_itemsize, 0, 0, 0}, - {"nbytes", __pyx_getprop___pyx_memoryview_nbytes, 0, 0, 0}, - {"size", __pyx_getprop___pyx_memoryview_size, 0, 0, 0}, - {0, 0, 0, 0, 0} -}; -#if CYTHON_USE_TYPE_SPECS -#if !CYTHON_COMPILING_IN_LIMITED_API - -static PyBufferProcs __pyx_tp_as_buffer_memoryview = { - __pyx_memoryview_getbuffer, /*bf_getbuffer*/ - 0, /*bf_releasebuffer*/ -}; -#endif -static PyType_Slot __pyx_type___pyx_memoryview_slots[] = { - {Py_tp_dealloc, (void *)__pyx_tp_dealloc_memoryview}, - {Py_tp_repr, (void *)__pyx_memoryview___repr__}, - {Py_sq_length, (void *)__pyx_memoryview___len__}, - {Py_sq_item, (void *)__pyx_sq_item_memoryview}, - {Py_mp_length, (void *)__pyx_memoryview___len__}, - {Py_mp_subscript, (void *)__pyx_memoryview___getitem__}, - {Py_mp_ass_subscript, (void *)__pyx_mp_ass_subscript_memoryview}, - {Py_tp_str, (void *)__pyx_memoryview___str__}, - #if defined(Py_bf_getbuffer) - {Py_bf_getbuffer, (void *)__pyx_memoryview_getbuffer}, - #endif - {Py_tp_traverse, (void *)__pyx_tp_traverse_memoryview}, - {Py_tp_clear, (void *)__pyx_tp_clear_memoryview}, - {Py_tp_methods, (void *)__pyx_methods_memoryview}, - {Py_tp_getset, (void *)__pyx_getsets_memoryview}, - {Py_tp_new, (void *)__pyx_tp_new_memoryview}, - {0, 0}, -}; -static PyType_Spec __pyx_type___pyx_memoryview_spec = { - "pyvale.sensorsim.cython.rastercyth.memoryview", - sizeof(struct __pyx_memoryview_obj), - 0, - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, - __pyx_type___pyx_memoryview_slots, -}; -#else - -static PySequenceMethods __pyx_tp_as_sequence_memoryview = { - __pyx_memoryview___len__, /*sq_length*/ - 0, /*sq_concat*/ - 0, /*sq_repeat*/ - __pyx_sq_item_memoryview, /*sq_item*/ - 0, /*sq_slice*/ - 0, /*sq_ass_item*/ - 0, /*sq_ass_slice*/ - 0, /*sq_contains*/ - 0, /*sq_inplace_concat*/ - 0, /*sq_inplace_repeat*/ -}; - -static PyMappingMethods __pyx_tp_as_mapping_memoryview = { - __pyx_memoryview___len__, /*mp_length*/ - __pyx_memoryview___getitem__, /*mp_subscript*/ - __pyx_mp_ass_subscript_memoryview, /*mp_ass_subscript*/ -}; - -static PyBufferProcs __pyx_tp_as_buffer_memoryview = { - __pyx_memoryview_getbuffer, /*bf_getbuffer*/ - 0, /*bf_releasebuffer*/ -}; - -static PyTypeObject __pyx_type___pyx_memoryview = { - PyVarObject_HEAD_INIT(0, 0) - "pyvale.sensorsim.cython.rastercyth.""memoryview", /*tp_name*/ - sizeof(struct __pyx_memoryview_obj), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc_memoryview, /*tp_dealloc*/ - 0, /*tp_vectorcall_offset*/ - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - 0, /*tp_as_async*/ - __pyx_memoryview___repr__, /*tp_repr*/ - 0, /*tp_as_number*/ - &__pyx_tp_as_sequence_memoryview, /*tp_as_sequence*/ - &__pyx_tp_as_mapping_memoryview, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - __pyx_memoryview___str__, /*tp_str*/ - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - &__pyx_tp_as_buffer_memoryview, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - 0, /*tp_doc*/ - __pyx_tp_traverse_memoryview, /*tp_traverse*/ - __pyx_tp_clear_memoryview, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods_memoryview, /*tp_methods*/ - 0, /*tp_members*/ - __pyx_getsets_memoryview, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - #if !CYTHON_USE_TYPE_SPECS - 0, /*tp_dictoffset*/ - #endif - 0, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new_memoryview, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if CYTHON_USE_TP_FINALIZE - 0, /*tp_finalize*/ - #else - NULL, /*tp_finalize*/ - #endif - #if !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM >= 0x07030800 - 0, /*tp_vectorcall*/ - #endif - #if __PYX_NEED_TP_PRINT_SLOT == 1 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030C0000 - 0, /*tp_watched*/ - #endif - #if PY_VERSION_HEX >= 0x030d00A4 - 0, /*tp_versions_used*/ - #endif - #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX >= 0x03090000 && PY_VERSION_HEX < 0x030a0000 - 0, /*tp_pypy_flags*/ - #endif -}; -#endif -static struct __pyx_vtabstruct__memoryviewslice __pyx_vtable__memoryviewslice; - -static PyObject *__pyx_tp_new__memoryviewslice(PyTypeObject *t, PyObject *a, PyObject *k) { - struct __pyx_memoryviewslice_obj *p; - PyObject *o = __pyx_tp_new_memoryview(t, a, k); - if (unlikely(!o)) return 0; - p = ((struct __pyx_memoryviewslice_obj *)o); - p->__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_memoryview*)__pyx_vtabptr__memoryviewslice; - p->from_object = Py_None; Py_INCREF(Py_None); - p->from_slice.memview = NULL; - return o; -} - -static void __pyx_tp_dealloc__memoryviewslice(PyObject *o) { - struct __pyx_memoryviewslice_obj *p = (struct __pyx_memoryviewslice_obj *)o; - #if CYTHON_USE_TP_FINALIZE - if (unlikely(__Pyx_PyObject_GetSlot(o, tp_finalize, destructor)) && !__Pyx_PyObject_GC_IsFinalized(o)) { - if (__Pyx_PyObject_GetSlot(o, tp_dealloc, destructor) == __pyx_tp_dealloc__memoryviewslice) { - if (PyObject_CallFinalizerFromDealloc(o)) return; - } - } - #endif - PyObject_GC_UnTrack(o); - { - PyObject *etype, *eval, *etb; - PyErr_Fetch(&etype, &eval, &etb); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) + 1); - __pyx_memoryviewslice___dealloc__(o); - __Pyx_SET_REFCNT(o, Py_REFCNT(o) - 1); - PyErr_Restore(etype, eval, etb); - } - Py_CLEAR(p->from_object); - PyObject_GC_Track(o); - __pyx_tp_dealloc_memoryview(o); -} - -static int __pyx_tp_traverse__memoryviewslice(PyObject *o, visitproc v, void *a) { - int e; - struct __pyx_memoryviewslice_obj *p = (struct __pyx_memoryviewslice_obj *)o; - e = __pyx_tp_traverse_memoryview(o, v, a); if (e) return e; - if (p->from_object) { - e = (*v)(p->from_object, a); if (e) return e; - } - return 0; -} - -static int __pyx_tp_clear__memoryviewslice(PyObject *o) { - PyObject* tmp; - struct __pyx_memoryviewslice_obj *p = (struct __pyx_memoryviewslice_obj *)o; - __pyx_tp_clear_memoryview(o); - tmp = ((PyObject*)p->from_object); - p->from_object = Py_None; Py_INCREF(Py_None); - Py_XDECREF(tmp); - __PYX_XCLEAR_MEMVIEW(&p->from_slice, 1); - return 0; -} - -static PyMethodDef __pyx_methods__memoryviewslice[] = { - {"__reduce_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_memoryviewslice_1__reduce_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {"__setstate_cython__", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw___pyx_memoryviewslice_3__setstate_cython__, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0}, - {0, 0, 0, 0} -}; -#if CYTHON_USE_TYPE_SPECS -static PyType_Slot __pyx_type___pyx_memoryviewslice_slots[] = { - {Py_tp_dealloc, (void *)__pyx_tp_dealloc__memoryviewslice}, - {Py_tp_doc, (void *)PyDoc_STR("Internal class for passing memoryview slices to Python")}, - {Py_tp_traverse, (void *)__pyx_tp_traverse__memoryviewslice}, - {Py_tp_clear, (void *)__pyx_tp_clear__memoryviewslice}, - {Py_tp_methods, (void *)__pyx_methods__memoryviewslice}, - {Py_tp_new, (void *)__pyx_tp_new__memoryviewslice}, - {0, 0}, -}; -static PyType_Spec __pyx_type___pyx_memoryviewslice_spec = { - "pyvale.sensorsim.cython.rastercyth._memoryviewslice", - sizeof(struct __pyx_memoryviewslice_obj), - 0, - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC|Py_TPFLAGS_SEQUENCE, - __pyx_type___pyx_memoryviewslice_slots, -}; -#else - -static PyTypeObject __pyx_type___pyx_memoryviewslice = { - PyVarObject_HEAD_INIT(0, 0) - "pyvale.sensorsim.cython.rastercyth.""_memoryviewslice", /*tp_name*/ - sizeof(struct __pyx_memoryviewslice_obj), /*tp_basicsize*/ - 0, /*tp_itemsize*/ - __pyx_tp_dealloc__memoryviewslice, /*tp_dealloc*/ - 0, /*tp_vectorcall_offset*/ - 0, /*tp_getattr*/ - 0, /*tp_setattr*/ - 0, /*tp_as_async*/ - #if CYTHON_COMPILING_IN_PYPY || 0 - __pyx_memoryview___repr__, /*tp_repr*/ - #else - 0, /*tp_repr*/ - #endif - 0, /*tp_as_number*/ - 0, /*tp_as_sequence*/ - 0, /*tp_as_mapping*/ - 0, /*tp_hash*/ - 0, /*tp_call*/ - #if CYTHON_COMPILING_IN_PYPY || 0 - __pyx_memoryview___str__, /*tp_str*/ - #else - 0, /*tp_str*/ - #endif - 0, /*tp_getattro*/ - 0, /*tp_setattro*/ - 0, /*tp_as_buffer*/ - Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC|Py_TPFLAGS_SEQUENCE, /*tp_flags*/ - PyDoc_STR("Internal class for passing memoryview slices to Python"), /*tp_doc*/ - __pyx_tp_traverse__memoryviewslice, /*tp_traverse*/ - __pyx_tp_clear__memoryviewslice, /*tp_clear*/ - 0, /*tp_richcompare*/ - 0, /*tp_weaklistoffset*/ - 0, /*tp_iter*/ - 0, /*tp_iternext*/ - __pyx_methods__memoryviewslice, /*tp_methods*/ - 0, /*tp_members*/ - 0, /*tp_getset*/ - 0, /*tp_base*/ - 0, /*tp_dict*/ - 0, /*tp_descr_get*/ - 0, /*tp_descr_set*/ - #if !CYTHON_USE_TYPE_SPECS - 0, /*tp_dictoffset*/ - #endif - 0, /*tp_init*/ - 0, /*tp_alloc*/ - __pyx_tp_new__memoryviewslice, /*tp_new*/ - 0, /*tp_free*/ - 0, /*tp_is_gc*/ - 0, /*tp_bases*/ - 0, /*tp_mro*/ - 0, /*tp_cache*/ - 0, /*tp_subclasses*/ - 0, /*tp_weaklist*/ - 0, /*tp_del*/ - 0, /*tp_version_tag*/ - #if CYTHON_USE_TP_FINALIZE - 0, /*tp_finalize*/ - #else - NULL, /*tp_finalize*/ - #endif - #if !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM >= 0x07030800 - 0, /*tp_vectorcall*/ - #endif - #if __PYX_NEED_TP_PRINT_SLOT == 1 - 0, /*tp_print*/ - #endif - #if PY_VERSION_HEX >= 0x030C0000 - 0, /*tp_watched*/ - #endif - #if PY_VERSION_HEX >= 0x030d00A4 - 0, /*tp_versions_used*/ - #endif - #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX >= 0x03090000 && PY_VERSION_HEX < 0x030a0000 - 0, /*tp_pypy_flags*/ - #endif -}; -#endif - -static PyMethodDef __pyx_methods[] = { - {0, 0, 0, 0} -}; -/* #### Code section: initfunc_declarations ### */ -static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate); /*proto*/ -static CYTHON_SMALL_CODE int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate); /*proto*/ -/* #### Code section: init_module ### */ - -static int __Pyx_modinit_global_init_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); - /*--- Global init code ---*/ - __pyx_collections_abc_Sequence = Py_None; Py_INCREF(Py_None); - generic = Py_None; Py_INCREF(Py_None); - strided = Py_None; Py_INCREF(Py_None); - indirect = Py_None; Py_INCREF(Py_None); - contiguous = Py_None; Py_INCREF(Py_None); - indirect_contiguous = Py_None; Py_INCREF(Py_None); - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_export_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); - /*--- Variable export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_export_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); - /*--- Function export code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - PyObject *__pyx_t_1 = NULL; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); - /*--- Type init code ---*/ - __pyx_vtabptr_array = &__pyx_vtable_array; - __pyx_vtable_array.get_memview = (PyObject *(*)(struct __pyx_array_obj *))__pyx_array_get_memview; - #if CYTHON_USE_TYPE_SPECS - __pyx_mstate->__pyx_array_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_array_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_array_type)) __PYX_ERR(1, 110, __pyx_L1_error) - #if !CYTHON_COMPILING_IN_LIMITED_API - __pyx_mstate->__pyx_array_type->tp_as_buffer = &__pyx_tp_as_buffer_array; - if (!__pyx_mstate->__pyx_array_type->tp_as_buffer->bf_releasebuffer && __pyx_mstate->__pyx_array_type->tp_base->tp_as_buffer && __pyx_mstate->__pyx_array_type->tp_base->tp_as_buffer->bf_releasebuffer) { - __pyx_mstate->__pyx_array_type->tp_as_buffer->bf_releasebuffer = __pyx_mstate->__pyx_array_type->tp_base->tp_as_buffer->bf_releasebuffer; - } - #elif defined(Py_bf_getbuffer) && defined(Py_bf_releasebuffer) - /* PY_VERSION_HEX >= 0x03090000 || Py_LIMITED_API >= 0x030B0000 */ - #elif defined(_MSC_VER) - #pragma message ("The buffer protocol is not supported in the Limited C-API < 3.11.") - #else - #warning "The buffer protocol is not supported in the Limited C-API < 3.11." - #endif - if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_array_spec, __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error) - #else - __pyx_mstate->__pyx_array_type = &__pyx_type___pyx_array; - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - #endif - #if !CYTHON_USE_TYPE_SPECS - if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error) - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount((PyObject*)__pyx_mstate->__pyx_array_type); - #endif - if (__Pyx_SetVtable(__pyx_mstate->__pyx_array_type, __pyx_vtabptr_array) < (0)) __PYX_ERR(1, 110, __pyx_L1_error) - if (__Pyx_MergeVtables(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error) - #if CYTHON_USE_TYPE_SPECS - __pyx_mstate->__pyx_MemviewEnum_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_MemviewEnum_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_MemviewEnum_type)) __PYX_ERR(1, 299, __pyx_L1_error) - if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_MemviewEnum_spec, __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error) - #else - __pyx_mstate->__pyx_MemviewEnum_type = &__pyx_type___pyx_MemviewEnum; - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - #endif - #if !CYTHON_USE_TYPE_SPECS - if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error) - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount((PyObject*)__pyx_mstate->__pyx_MemviewEnum_type); - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_MemviewEnum_type->tp_dictoffset && __pyx_mstate->__pyx_MemviewEnum_type->tp_getattro == PyObject_GenericGetAttr)) { - __pyx_mstate->__pyx_MemviewEnum_type->tp_getattro = PyObject_GenericGetAttr; - } - #endif - if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error) - __pyx_vtabptr_memoryview = &__pyx_vtable_memoryview; - __pyx_vtable_memoryview.get_item_pointer = (char *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_get_item_pointer; - __pyx_vtable_memoryview.is_slice = (PyObject *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_is_slice; - __pyx_vtable_memoryview.setitem_slice_assignment = (PyObject *(*)(struct __pyx_memoryview_obj *, PyObject *, PyObject *))__pyx_memoryview_setitem_slice_assignment; - __pyx_vtable_memoryview.setitem_slice_assign_scalar = (PyObject *(*)(struct __pyx_memoryview_obj *, struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_setitem_slice_assign_scalar; - __pyx_vtable_memoryview.setitem_indexed = (PyObject *(*)(struct __pyx_memoryview_obj *, PyObject *, PyObject *))__pyx_memoryview_setitem_indexed; - __pyx_vtable_memoryview.convert_item_to_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *))__pyx_memoryview_convert_item_to_object; - __pyx_vtable_memoryview.assign_item_from_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *, PyObject *))__pyx_memoryview_assign_item_from_object; - __pyx_vtable_memoryview._get_base = (PyObject *(*)(struct __pyx_memoryview_obj *))__pyx_memoryview__get_base; - #if CYTHON_USE_TYPE_SPECS - __pyx_mstate->__pyx_memoryview_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_memoryview_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_memoryview_type)) __PYX_ERR(1, 334, __pyx_L1_error) - #if !CYTHON_COMPILING_IN_LIMITED_API - __pyx_mstate->__pyx_memoryview_type->tp_as_buffer = &__pyx_tp_as_buffer_memoryview; - if (!__pyx_mstate->__pyx_memoryview_type->tp_as_buffer->bf_releasebuffer && __pyx_mstate->__pyx_memoryview_type->tp_base->tp_as_buffer && __pyx_mstate->__pyx_memoryview_type->tp_base->tp_as_buffer->bf_releasebuffer) { - __pyx_mstate->__pyx_memoryview_type->tp_as_buffer->bf_releasebuffer = __pyx_mstate->__pyx_memoryview_type->tp_base->tp_as_buffer->bf_releasebuffer; - } - #elif defined(Py_bf_getbuffer) && defined(Py_bf_releasebuffer) - /* PY_VERSION_HEX >= 0x03090000 || Py_LIMITED_API >= 0x030B0000 */ - #elif defined(_MSC_VER) - #pragma message ("The buffer protocol is not supported in the Limited C-API < 3.11.") - #else - #warning "The buffer protocol is not supported in the Limited C-API < 3.11." - #endif - if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryview_spec, __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error) - #else - __pyx_mstate->__pyx_memoryview_type = &__pyx_type___pyx_memoryview; - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - #endif - #if !CYTHON_USE_TYPE_SPECS - if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error) - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount((PyObject*)__pyx_mstate->__pyx_memoryview_type); - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryview_type->tp_dictoffset && __pyx_mstate->__pyx_memoryview_type->tp_getattro == PyObject_GenericGetAttr)) { - __pyx_mstate->__pyx_memoryview_type->tp_getattro = PyObject_GenericGetAttr; - } - #endif - if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryview_type, __pyx_vtabptr_memoryview) < (0)) __PYX_ERR(1, 334, __pyx_L1_error) - if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error) - __pyx_vtabptr__memoryviewslice = &__pyx_vtable__memoryviewslice; - __pyx_vtable__memoryviewslice.__pyx_base = *__pyx_vtabptr_memoryview; - __pyx_vtable__memoryviewslice.__pyx_base.convert_item_to_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *))__pyx_memoryviewslice_convert_item_to_object; - __pyx_vtable__memoryviewslice.__pyx_base.assign_item_from_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *, PyObject *))__pyx_memoryviewslice_assign_item_from_object; - __pyx_vtable__memoryviewslice.__pyx_base._get_base = (PyObject *(*)(struct __pyx_memoryview_obj *))__pyx_memoryviewslice__get_base; - #if CYTHON_USE_TYPE_SPECS - __pyx_t_1 = PyTuple_Pack(1, (PyObject *)__pyx_mstate_global->__pyx_memoryview_type); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 951, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_1); - __pyx_mstate->__pyx_memoryviewslice_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_memoryviewslice_spec, __pyx_t_1); - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - if (unlikely(!__pyx_mstate->__pyx_memoryviewslice_type)) __PYX_ERR(1, 951, __pyx_L1_error) - if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryviewslice_spec, __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 951, __pyx_L1_error) - #else - __pyx_mstate->__pyx_memoryviewslice_type = &__pyx_type___pyx_memoryviewslice; - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - __pyx_mstate_global->__pyx_memoryviewslice_type->tp_base = __pyx_mstate_global->__pyx_memoryview_type; - #endif - #if !CYTHON_USE_TYPE_SPECS - if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 951, __pyx_L1_error) - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount((PyObject*)__pyx_mstate->__pyx_memoryviewslice_type); - #endif - #if !CYTHON_COMPILING_IN_LIMITED_API - if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryviewslice_type->tp_dictoffset && __pyx_mstate->__pyx_memoryviewslice_type->tp_getattro == PyObject_GenericGetAttr)) { - __pyx_mstate->__pyx_memoryviewslice_type->tp_getattro = PyObject_GenericGetAttr; - } - #endif - if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryviewslice_type, __pyx_vtabptr__memoryviewslice) < (0)) __PYX_ERR(1, 951, __pyx_L1_error) - if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 951, __pyx_L1_error) - if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 951, __pyx_L1_error) - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_RefNannyFinishContext(); - return -1; -} - -static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); - /*--- Type import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); - /*--- Variable import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); - /*--- Function import code ---*/ - __Pyx_RefNannyFinishContext(); - return 0; -} - -#if CYTHON_PEP489_MULTI_PHASE_INIT -static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ -static int __pyx_pymod_exec_rastercyth(PyObject* module); /*proto*/ -static PyModuleDef_Slot __pyx_moduledef_slots[] = { - {Py_mod_create, (void*)__pyx_pymod_create}, - {Py_mod_exec, (void*)__pyx_pymod_exec_rastercyth}, - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - {Py_mod_gil, Py_MOD_GIL_USED}, - #endif - #if PY_VERSION_HEX >= 0x030C0000 && CYTHON_USE_MODULE_STATE - {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED}, - #endif - {0, NULL} -}; -#endif - -#ifdef __cplusplus -namespace { - struct PyModuleDef __pyx_moduledef = - #else - static struct PyModuleDef __pyx_moduledef = - #endif - { - PyModuleDef_HEAD_INIT, - "rastercyth", - __pyx_k_NOTE_this_module_is_a_feature_u, /* m_doc */ - #if CYTHON_USE_MODULE_STATE - sizeof(__pyx_mstatetype), /* m_size */ - #else - (CYTHON_PEP489_MULTI_PHASE_INIT) ? 0 : -1, /* m_size */ - #endif - __pyx_methods /* m_methods */, - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_moduledef_slots, /* m_slots */ - #else - NULL, /* m_reload */ - #endif - #if CYTHON_USE_MODULE_STATE - __pyx_m_traverse, /* m_traverse */ - __pyx_m_clear, /* m_clear */ - NULL /* m_free */ - #else - NULL, /* m_traverse */ - NULL, /* m_clear */ - NULL /* m_free */ - #endif - }; - #ifdef __cplusplus -} /* anonymous namespace */ -#endif - -/* PyModInitFuncType */ -#ifndef CYTHON_NO_PYINIT_EXPORT - #define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC -#else - #ifdef __cplusplus - #define __Pyx_PyMODINIT_FUNC extern "C" PyObject * - #else - #define __Pyx_PyMODINIT_FUNC PyObject * - #endif -#endif - -__Pyx_PyMODINIT_FUNC PyInit_rastercyth(void) CYTHON_SMALL_CODE; /*proto*/ -__Pyx_PyMODINIT_FUNC PyInit_rastercyth(void) -#if CYTHON_PEP489_MULTI_PHASE_INIT -{ - return PyModuleDef_Init(&__pyx_moduledef); -} -/* ModuleCreationPEP489 */ -#if CYTHON_COMPILING_IN_LIMITED_API && (__PYX_LIMITED_VERSION_HEX < 0x03090000\ - || ((defined(_WIN32) || defined(WIN32) || defined(MS_WINDOWS)) && __PYX_LIMITED_VERSION_HEX < 0x030A0000)) -static PY_INT64_T __Pyx_GetCurrentInterpreterId(void) { - { - PyObject *module = PyImport_ImportModule("_interpreters"); // 3.13+ I think - if (!module) { - PyErr_Clear(); // just try the 3.8-3.12 version - module = PyImport_ImportModule("_xxsubinterpreters"); - if (!module) goto bad; - } - PyObject *current = PyObject_CallMethod(module, "get_current", NULL); - Py_DECREF(module); - if (!current) goto bad; - if (PyTuple_Check(current)) { - PyObject *new_current = PySequence_GetItem(current, 0); - Py_DECREF(current); - current = new_current; - if (!new_current) goto bad; - } - long long as_c_int = PyLong_AsLongLong(current); - Py_DECREF(current); - return as_c_int; - } - bad: - PySys_WriteStderr("__Pyx_GetCurrentInterpreterId failed. Try setting the C define CYTHON_PEP489_MULTI_PHASE_INIT=0\n"); - return -1; -} -#endif -#if !CYTHON_USE_MODULE_STATE -static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { - static PY_INT64_T main_interpreter_id = -1; -#if CYTHON_COMPILING_IN_GRAAL && defined(GRAALPY_VERSION_NUM) && GRAALPY_VERSION_NUM > 0x19000000 - PY_INT64_T current_id = GraalPyInterpreterState_GetIDFromThreadState(PyThreadState_Get()); -#elif CYTHON_COMPILING_IN_GRAAL - PY_INT64_T current_id = PyInterpreterState_GetIDFromThreadState(PyThreadState_Get()); -#elif CYTHON_COMPILING_IN_LIMITED_API && (__PYX_LIMITED_VERSION_HEX < 0x03090000\ - || ((defined(_WIN32) || defined(WIN32) || defined(MS_WINDOWS)) && __PYX_LIMITED_VERSION_HEX < 0x030A0000)) - PY_INT64_T current_id = __Pyx_GetCurrentInterpreterId(); -#elif CYTHON_COMPILING_IN_LIMITED_API - PY_INT64_T current_id = PyInterpreterState_GetID(PyInterpreterState_Get()); -#else - PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); -#endif - if (unlikely(current_id == -1)) { - return -1; - } - if (main_interpreter_id == -1) { - main_interpreter_id = current_id; - return 0; - } else if (unlikely(main_interpreter_id != current_id)) { - PyErr_SetString( - PyExc_ImportError, - "Interpreter change detected - this module can only be loaded into one interpreter per process."); - return -1; - } - return 0; -} -#endif -static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) -{ - PyObject *value = PyObject_GetAttrString(spec, from_name); - int result = 0; - if (likely(value)) { - if (allow_none || value != Py_None) { - result = PyDict_SetItemString(moddict, to_name, value); - } - Py_DECREF(value); - } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { - PyErr_Clear(); - } else { - result = -1; - } - return result; -} -static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def) { - PyObject *module = NULL, *moddict, *modname; - CYTHON_UNUSED_VAR(def); - #if !CYTHON_USE_MODULE_STATE - if (__Pyx_check_single_interpreter()) - return NULL; - #endif - if (__pyx_m) - return __Pyx_NewRef(__pyx_m); - modname = PyObject_GetAttrString(spec, "name"); - if (unlikely(!modname)) goto bad; - module = PyModule_NewObject(modname); - Py_DECREF(modname); - if (unlikely(!module)) goto bad; - moddict = PyModule_GetDict(module); - if (unlikely(!moddict)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; - if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; - return module; -bad: - Py_XDECREF(module); - return NULL; -} - - -static CYTHON_SMALL_CODE int __pyx_pymod_exec_rastercyth(PyObject *__pyx_pyinit_module) -#endif -{ - int stringtab_initialized = 0; - #if CYTHON_USE_MODULE_STATE - int pystate_addmodule_run = 0; - #endif - __pyx_mstatetype *__pyx_mstate = NULL; - PyObject *__pyx_t_1 = NULL; - PyObject *__pyx_t_2 = NULL; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - PyObject *__pyx_t_5 = NULL; - size_t __pyx_t_6; - static PyThread_type_lock __pyx_t_7[8]; - int __pyx_t_8; - Py_ssize_t __pyx_t_9; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannyDeclarations - #if CYTHON_PEP489_MULTI_PHASE_INIT - if (__pyx_m) { - if (__pyx_m == __pyx_pyinit_module) return 0; - PyErr_SetString(PyExc_RuntimeError, "Module 'rastercyth' has already been imported. Re-initialisation is not supported."); - return -1; - } - #else - if (__pyx_m) return __Pyx_NewRef(__pyx_m); - #endif - /*--- Module creation code ---*/ - #if CYTHON_PEP489_MULTI_PHASE_INIT - __pyx_t_1 = __pyx_pyinit_module; - Py_INCREF(__pyx_t_1); - #else - __pyx_t_1 = PyModule_Create(&__pyx_moduledef); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error) - #endif - #if CYTHON_USE_MODULE_STATE - { - int add_module_result = __Pyx_State_AddModule(__pyx_t_1, &__pyx_moduledef); - __pyx_t_1 = 0; /* transfer ownership from __pyx_t_1 to "rastercyth" pseudovariable */ - if (unlikely((add_module_result < 0))) __PYX_ERR(0, 1, __pyx_L1_error) - pystate_addmodule_run = 1; - } - #else - __pyx_m = __pyx_t_1; - #endif - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - PyUnstable_Module_SetGIL(__pyx_m, Py_MOD_GIL_USED); - #endif - __pyx_mstate = __pyx_mstate_global; - CYTHON_UNUSED_VAR(__pyx_t_1); - __pyx_mstate->__pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_mstate->__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) - Py_INCREF(__pyx_mstate->__pyx_d); - __pyx_mstate->__pyx_b = __Pyx_PyImport_AddModuleRef(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_mstate->__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_mstate->__pyx_cython_runtime = __Pyx_PyImport_AddModuleRef("cython_runtime"); if (unlikely(!__pyx_mstate->__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) - if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_mstate->__pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error) - /* ImportRefnannyAPI */ - #if CYTHON_REFNANNY - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); - if (!__Pyx_RefNanny) { - PyErr_Clear(); - __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); - if (!__Pyx_RefNanny) - Py_FatalError("failed to import 'refnanny' module"); - } - #endif - -__Pyx_RefNannySetupContext("PyInit_rastercyth", 0); - __Pyx_init_runtime_version(); - if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_mstate->__pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_mstate->__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_mstate->__pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) - __pyx_mstate->__pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) - /*--- Library function declarations ---*/ - /*--- Initialize various global constants etc. ---*/ - if (__Pyx_InitConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - stringtab_initialized = 1; - if (__Pyx_InitGlobals() < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - if (__pyx_module_is_main_pyvale__sensorsim__cython__rastercyth) { - if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_name_2, __pyx_mstate_global->__pyx_n_u_main) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - } - { - PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) - if (!PyDict_GetItemString(modules, "pyvale.sensorsim.cython.rastercyth")) { - if (unlikely((PyDict_SetItemString(modules, "pyvale.sensorsim.cython.rastercyth", __pyx_m) < 0))) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - /*--- Builtin init code ---*/ - if (__Pyx_InitCachedBuiltins(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - /*--- Constants init code ---*/ - if (__Pyx_InitCachedConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - if (__Pyx_CreateCodeObjects(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - /*--- Global type/function init code ---*/ - (void)__Pyx_modinit_global_init_code(__pyx_mstate); - (void)__Pyx_modinit_variable_export_code(__pyx_mstate); - (void)__Pyx_modinit_function_export_code(__pyx_mstate); - if (unlikely((__Pyx_modinit_type_init_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error) - (void)__Pyx_modinit_type_import_code(__pyx_mstate); - (void)__Pyx_modinit_variable_import_code(__pyx_mstate); - (void)__Pyx_modinit_function_import_code(__pyx_mstate); - /*--- Execution code ---*/ - - /* "View.MemoryView":100 - * - * cdef object __pyx_collections_abc_Sequence "__pyx_collections_abc_Sequence" - * try: # <<<<<<<<<<<<<< - * __pyx_collections_abc_Sequence = __import__("collections.abc").abc.Sequence - * except: -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_1); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_3); - /*try:*/ { - - /* "View.MemoryView":101 - * cdef object __pyx_collections_abc_Sequence "__pyx_collections_abc_Sequence" - * try: - * __pyx_collections_abc_Sequence = __import__("collections.abc").abc.Sequence # <<<<<<<<<<<<<< - * except: - * -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_collections_abc}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_builtin___import__, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 101, __pyx_L2_error) - __Pyx_GOTREF(__pyx_t_4); - } - __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_abc); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 101, __pyx_L2_error) - __Pyx_GOTREF(__pyx_t_5); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_Sequence); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 101, __pyx_L2_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - __Pyx_XGOTREF(__pyx_collections_abc_Sequence); - __Pyx_DECREF_SET(__pyx_collections_abc_Sequence, __pyx_t_4); - __Pyx_GIVEREF(__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":100 - * - * cdef object __pyx_collections_abc_Sequence "__pyx_collections_abc_Sequence" - * try: # <<<<<<<<<<<<<< - * __pyx_collections_abc_Sequence = __import__("collections.abc").abc.Sequence - * except: -*/ - } - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - goto __pyx_L7_try_end; - __pyx_L2_error:; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "View.MemoryView":102 - * try: - * __pyx_collections_abc_Sequence = __import__("collections.abc").abc.Sequence - * except: # <<<<<<<<<<<<<< - * - * __pyx_collections_abc_Sequence = None -*/ - /*except:*/ { - __Pyx_ErrRestore(0,0,0); - - /* "View.MemoryView":104 - * except: - * - * __pyx_collections_abc_Sequence = None # <<<<<<<<<<<<<< - * - * -*/ - __Pyx_INCREF(Py_None); - __Pyx_XGOTREF(__pyx_collections_abc_Sequence); - __Pyx_DECREF_SET(__pyx_collections_abc_Sequence, Py_None); - __Pyx_GIVEREF(Py_None); - goto __pyx_L3_exception_handled; - } - __pyx_L3_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); - __pyx_L7_try_end:; - } - - /* "View.MemoryView":239 - * - * - * try: # <<<<<<<<<<<<<< - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_3, &__pyx_t_2, &__pyx_t_1); - __Pyx_XGOTREF(__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_1); - /*try:*/ { - - /* "View.MemoryView":240 - * - * try: - * count = __pyx_collections_abc_Sequence.count # <<<<<<<<<<<<<< - * index = __pyx_collections_abc_Sequence.index - * except: -*/ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 240, __pyx_L10_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_4) < (0)) __PYX_ERR(1, 240, __pyx_L10_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":241 - * try: - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index # <<<<<<<<<<<<<< - * except: - * pass -*/ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 241, __pyx_L10_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_4) < (0)) __PYX_ERR(1, 241, __pyx_L10_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":239 - * - * - * try: # <<<<<<<<<<<<<< - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index -*/ - } - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - goto __pyx_L15_try_end; - __pyx_L10_error:; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "View.MemoryView":242 - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index - * except: # <<<<<<<<<<<<<< - * pass - * -*/ - /*except:*/ { - __Pyx_ErrRestore(0,0,0); - goto __pyx_L11_exception_handled; - } - __pyx_L11_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_2, __pyx_t_1); - __pyx_L15_try_end:; - } - - /* "View.MemoryView":307 - * return self.name - * - * cdef generic = Enum("") # <<<<<<<<<<<<<< - * cdef strided = Enum("") # default - * cdef indirect = Enum("") -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_strided_and_direct_or_indirect}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_MemviewEnum_type, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 307, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_4); - } - __Pyx_XGOTREF(generic); - __Pyx_DECREF_SET(generic, ((PyObject *)__pyx_t_4)); - __Pyx_GIVEREF((PyObject *)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":308 - * - * cdef generic = Enum("") - * cdef strided = Enum("") # default # <<<<<<<<<<<<<< - * cdef indirect = Enum("") - * -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_strided_and_direct}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_MemviewEnum_type, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 308, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_4); - } - __Pyx_XGOTREF(strided); - __Pyx_DECREF_SET(strided, ((PyObject *)__pyx_t_4)); - __Pyx_GIVEREF((PyObject *)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":309 - * cdef generic = Enum("") - * cdef strided = Enum("") # default - * cdef indirect = Enum("") # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_strided_and_indirect}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_MemviewEnum_type, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 309, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_4); - } - __Pyx_XGOTREF(indirect); - __Pyx_DECREF_SET(indirect, ((PyObject *)__pyx_t_4)); - __Pyx_GIVEREF((PyObject *)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":312 - * - * - * cdef contiguous = Enum("") # <<<<<<<<<<<<<< - * cdef indirect_contiguous = Enum("") - * -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_contiguous_and_direct}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_MemviewEnum_type, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 312, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_4); - } - __Pyx_XGOTREF(contiguous); - __Pyx_DECREF_SET(contiguous, ((PyObject *)__pyx_t_4)); - __Pyx_GIVEREF((PyObject *)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":313 - * - * cdef contiguous = Enum("") - * cdef indirect_contiguous = Enum("") # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_5 = NULL; - __pyx_t_6 = 1; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, __pyx_mstate_global->__pyx_kp_u_contiguous_and_indirect}; - __pyx_t_4 = __Pyx_PyObject_FastCall((PyObject*)__pyx_mstate_global->__pyx_MemviewEnum_type, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 313, __pyx_L1_error) - __Pyx_GOTREF((PyObject *)__pyx_t_4); - } - __Pyx_XGOTREF(indirect_contiguous); - __Pyx_DECREF_SET(indirect_contiguous, ((PyObject *)__pyx_t_4)); - __Pyx_GIVEREF((PyObject *)__pyx_t_4); - __pyx_t_4 = 0; - - /* "View.MemoryView":321 - * - * - * cdef int __pyx_memoryview_thread_locks_used = 0 # <<<<<<<<<<<<<< - * cdef PyThread_type_lock[8] __pyx_memoryview_thread_locks = [ - * PyThread_allocate_lock(), -*/ - __pyx_memoryview_thread_locks_used = 0; - - /* "View.MemoryView":322 - * - * cdef int __pyx_memoryview_thread_locks_used = 0 - * cdef PyThread_type_lock[8] __pyx_memoryview_thread_locks = [ # <<<<<<<<<<<<<< - * PyThread_allocate_lock(), - * PyThread_allocate_lock(), -*/ - __pyx_t_7[0] = PyThread_allocate_lock(); - __pyx_t_7[1] = PyThread_allocate_lock(); - __pyx_t_7[2] = PyThread_allocate_lock(); - __pyx_t_7[3] = PyThread_allocate_lock(); - __pyx_t_7[4] = PyThread_allocate_lock(); - __pyx_t_7[5] = PyThread_allocate_lock(); - __pyx_t_7[6] = PyThread_allocate_lock(); - __pyx_t_7[7] = PyThread_allocate_lock(); - memcpy(&(__pyx_memoryview_thread_locks[0]), __pyx_t_7, sizeof(__pyx_memoryview_thread_locks[0]) * (8)); - - /* "View.MemoryView":983 - * - * - * try: # <<<<<<<<<<<<<< - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_1); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_3); - /*try:*/ { - - /* "View.MemoryView":984 - * - * try: - * count = __pyx_collections_abc_Sequence.count # <<<<<<<<<<<<<< - * index = __pyx_collections_abc_Sequence.index - * except: -*/ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 984, __pyx_L18_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_4) < (0)) __PYX_ERR(1, 984, __pyx_L18_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":985 - * try: - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index # <<<<<<<<<<<<<< - * except: - * pass -*/ - __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 985, __pyx_L18_error) - __Pyx_GOTREF(__pyx_t_4); - if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_4) < (0)) __PYX_ERR(1, 985, __pyx_L18_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":983 - * - * - * try: # <<<<<<<<<<<<<< - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index -*/ - } - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - goto __pyx_L23_try_end; - __pyx_L18_error:; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "View.MemoryView":986 - * count = __pyx_collections_abc_Sequence.count - * index = __pyx_collections_abc_Sequence.index - * except: # <<<<<<<<<<<<<< - * pass - * -*/ - /*except:*/ { - __Pyx_ErrRestore(0,0,0); - goto __pyx_L19_exception_handled; - } - __pyx_L19_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); - __pyx_L23_try_end:; - } - - /* "View.MemoryView":989 - * pass - * - * try: # <<<<<<<<<<<<<< - * if __pyx_collections_abc_Sequence: - * -*/ - { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - __Pyx_ExceptionSave(&__pyx_t_3, &__pyx_t_2, &__pyx_t_1); - __Pyx_XGOTREF(__pyx_t_3); - __Pyx_XGOTREF(__pyx_t_2); - __Pyx_XGOTREF(__pyx_t_1); - /*try:*/ { - - /* "View.MemoryView":990 - * - * try: - * if __pyx_collections_abc_Sequence: # <<<<<<<<<<<<<< - * - * -*/ - __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_collections_abc_Sequence); if (unlikely((__pyx_t_8 < 0))) __PYX_ERR(1, 990, __pyx_L26_error) - if (__pyx_t_8) { - - /* "View.MemoryView":994 - * - * - * __pyx_collections_abc_Sequence.register(_memoryviewslice) # <<<<<<<<<<<<<< - * __pyx_collections_abc_Sequence.register(array) - * except: -*/ - __pyx_t_5 = __pyx_collections_abc_Sequence; - __Pyx_INCREF(__pyx_t_5); - __pyx_t_6 = 0; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, ((PyObject *)__pyx_mstate_global->__pyx_memoryviewslice_type)}; - __pyx_t_4 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_register, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 994, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_4); - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":995 - * - * __pyx_collections_abc_Sequence.register(_memoryviewslice) - * __pyx_collections_abc_Sequence.register(array) # <<<<<<<<<<<<<< - * except: - * pass # ignore failure, it's a minor issue -*/ - __pyx_t_5 = __pyx_collections_abc_Sequence; - __Pyx_INCREF(__pyx_t_5); - __pyx_t_6 = 0; - { - PyObject *__pyx_callargs[2] = {__pyx_t_5, ((PyObject *)__pyx_mstate_global->__pyx_array_type)}; - __pyx_t_4 = __Pyx_PyObject_FastCallMethod((PyObject*)__pyx_mstate_global->__pyx_n_u_register, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET)); - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 995, __pyx_L26_error) - __Pyx_GOTREF(__pyx_t_4); - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "View.MemoryView":990 - * - * try: - * if __pyx_collections_abc_Sequence: # <<<<<<<<<<<<<< - * - * -*/ - } - - /* "View.MemoryView":989 - * pass - * - * try: # <<<<<<<<<<<<<< - * if __pyx_collections_abc_Sequence: - * -*/ - } - __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; - __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; - goto __pyx_L31_try_end; - __pyx_L26_error:; - __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; - __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "View.MemoryView":996 - * __pyx_collections_abc_Sequence.register(_memoryviewslice) - * __pyx_collections_abc_Sequence.register(array) - * except: # <<<<<<<<<<<<<< - * pass # ignore failure, it's a minor issue - * -*/ - /*except:*/ { - __Pyx_ErrRestore(0,0,0); - goto __pyx_L27_exception_handled; - } - __pyx_L27_exception_handled:; - __Pyx_XGIVEREF(__pyx_t_3); - __Pyx_XGIVEREF(__pyx_t_2); - __Pyx_XGIVEREF(__pyx_t_1); - __Pyx_ExceptionReset(__pyx_t_3, __pyx_t_2, __pyx_t_1); - __pyx_L31_try_end:; - } - - /* "(tree fragment)":4 - * int __Pyx_CheckUnpickleChecksum(long, long, long, long, const char*) except -1 - * int __Pyx_UpdateUnpickledDict(object, object, Py_ssize_t) except -1 - * def __pyx_unpickle_Enum(__pyx_type, long __pyx_checksum, tuple __pyx_state): # <<<<<<<<<<<<<< - * cdef object __pyx_result - * __Pyx_CheckUnpickleChecksum(__pyx_checksum, 0x82a3537, 0x6ae9995, 0xb068931, b'name') -*/ - __pyx_t_4 = PyCFunction_NewEx(&__pyx_mdef_15View_dot_MemoryView_1__pyx_unpickle_Enum, NULL, __pyx_mstate_global->__pyx_n_u_View_MemoryView); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 4, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum, __pyx_t_4) < (0)) __PYX_ERR(1, 4, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":11 - * """ - * - * import numpy as np # <<<<<<<<<<<<<< - * import cython - * #from cython.parallel import prange, parallel, threadid -*/ - __pyx_t_1 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_numpy, 0, 0, NULL, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error) - __pyx_t_4 = __pyx_t_1; - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_4) < (0)) __PYX_ERR(0, 11, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":15 - * #from cython.parallel import prange, parallel, threadid - * from cython.cimports.libc.math import floor, ceil - * from pyvale.sensorsim.cameradata import CameraData # <<<<<<<<<<<<<< - * - * # NOTE: This module is a feature under developement. -*/ - { - PyObject* const __pyx_imported_names[] = {__pyx_mstate_global->__pyx_n_u_CameraData}; - __pyx_t_1 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cameradata, __pyx_imported_names, 1, NULL, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) - } - __pyx_t_4 = __pyx_t_1; - __Pyx_GOTREF(__pyx_t_4); - { - PyObject* const __pyx_imported_names[] = {__pyx_mstate_global->__pyx_n_u_CameraData}; - __pyx_t_9 = 0; { - __pyx_t_5 = __Pyx_ImportFrom(__pyx_t_4, __pyx_imported_names[__pyx_t_9]); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_imported_names[__pyx_t_9], __pyx_t_5) < (0)) __PYX_ERR(0, 15, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - } - } - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":248 - * - * - * @cython.ccall # <<<<<<<<<<<<<< - * @cython.boundscheck(False) - * @cython.wraparound(False) -*/ - __pyx_t_4 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 248, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_image_subpx, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 248, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_sub_samp, __pyx_mstate_global->__pyx_kp_u_cython_int) < (0)) __PYX_ERR(0, 248, __pyx_L1_error) - __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_1average_image, 0, __pyx_mstate_global->__pyx_n_u_average_image, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 248, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount(__pyx_t_5); - #endif - __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_5, __pyx_t_4); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_average_image, __pyx_t_5) < (0)) __PYX_ERR(0, 248, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":331 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - __pyx_t_5 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_coords, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 331, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_connect, __pyx_mstate_global->__pyx_kp_u_cython_size_t) < (0)) __PYX_ERR(0, 331, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_fields_to_render, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 331, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_cam_data, __pyx_mstate_global->__pyx_n_u_CameraData) < (0)) __PYX_ERR(0, 331, __pyx_L1_error) - __pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame, 0, __pyx_mstate_global->__pyx_n_u_raster_static_frame, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[1])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount(__pyx_t_4); - #endif - __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_4, __pyx_t_5); - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_raster_static_frame, __pyx_t_4) < (0)) __PYX_ERR(0, 331, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":405 - * - * #/////////////////////////////////////////////////////////////////////////////// - * @cython.ccall # python+C or cython.cfunc for C only # <<<<<<<<<<<<<< - * @cython.boundscheck(False) # Turn off array bounds checking - * @cython.wraparound(False) # Turn off negative indexing -*/ - __pyx_t_4 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_coords, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_connect, __pyx_mstate_global->__pyx_kp_u_cython_size_t) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_fields_to_render, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_cam_data, __pyx_mstate_global->__pyx_n_u_CameraData) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_field_disp, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame, 0, __pyx_mstate_global->__pyx_n_u_raster_deform_frame, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[2])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000 - PyUnstable_Object_EnableDeferredRefcount(__pyx_t_5); - #endif - __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_5, __pyx_t_4); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_raster_deform_frame, __pyx_t_5) < (0)) __PYX_ERR(0, 405, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /* "pyvale/sensorsim/cython/rastercyth.py":1 - * # ============================================================================== # <<<<<<<<<<<<<< - * # pyvale: the python validation engine - * # License: MIT -*/ - __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_5); - if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < (0)) __PYX_ERR(0, 1, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; - - /*--- Wrapped vars code ---*/ - - goto __pyx_L0; - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_4); - __Pyx_XDECREF(__pyx_t_5); - if (__pyx_m) { - if (__pyx_mstate->__pyx_d && stringtab_initialized) { - __Pyx_AddTraceback("init pyvale.sensorsim.cython.rastercyth", __pyx_clineno, __pyx_lineno, __pyx_filename); - } - #if !CYTHON_USE_MODULE_STATE - Py_CLEAR(__pyx_m); - #else - Py_DECREF(__pyx_m); - if (pystate_addmodule_run) { - PyObject *tp, *value, *tb; - PyErr_Fetch(&tp, &value, &tb); - PyState_RemoveModule(&__pyx_moduledef); - PyErr_Restore(tp, value, tb); - } - #endif - } else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_ImportError, "init pyvale.sensorsim.cython.rastercyth"); - } - __pyx_L0:; - __Pyx_RefNannyFinishContext(); - #if CYTHON_PEP489_MULTI_PHASE_INIT - return (__pyx_m != NULL) ? 0 : -1; - #else - return __pyx_m; - #endif -} -/* #### Code section: pystring_table ### */ -/* #### Code section: cached_builtins ### */ - -static int __Pyx_InitCachedBuiltins(__pyx_mstatetype *__pyx_mstate) { - CYTHON_UNUSED_VAR(__pyx_mstate); - __pyx_builtin___import__ = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_import); if (!__pyx_builtin___import__) __PYX_ERR(1, 101, __pyx_L1_error) - __pyx_builtin_enumerate = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_enumerate); if (!__pyx_builtin_enumerate) __PYX_ERR(1, 157, __pyx_L1_error) - __pyx_builtin_Ellipsis = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_Ellipsis); if (!__pyx_builtin_Ellipsis) __PYX_ERR(1, 409, __pyx_L1_error) - __pyx_builtin_id = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_id); if (!__pyx_builtin_id) __PYX_ERR(1, 619, __pyx_L1_error) - - /* Cached unbound methods */ - __pyx_mstate->__pyx_umethod_PyDict_Type_items.type = (PyObject*)&PyDict_Type; - __pyx_mstate->__pyx_umethod_PyDict_Type_items.method_name = &__pyx_mstate->__pyx_n_u_items; - __pyx_mstate->__pyx_umethod_PyDict_Type_pop.type = (PyObject*)&PyDict_Type; - __pyx_mstate->__pyx_umethod_PyDict_Type_pop.method_name = &__pyx_mstate->__pyx_n_u_pop; - __pyx_mstate->__pyx_umethod_PyDict_Type_values.type = (PyObject*)&PyDict_Type; - __pyx_mstate->__pyx_umethod_PyDict_Type_values.method_name = &__pyx_mstate->__pyx_n_u_values; - return 0; - __pyx_L1_error:; - return -1; -} -/* #### Code section: cached_constants ### */ - -static int __Pyx_InitCachedConstants(__pyx_mstatetype *__pyx_mstate) { - __Pyx_RefNannyDeclarations - CYTHON_UNUSED_VAR(__pyx_mstate); - __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); - - /* "(tree fragment)":11 - * use_setstate = True - * else: - * use_setstate = ('self.name is not None',) # <<<<<<<<<<<<<< - * if use_setstate: - * return __pyx_unpickle_Enum, (type(self), 0x82a3537, None), state -*/ - __pyx_mstate_global->__pyx_tuple[0] = PyTuple_Pack(1, __pyx_mstate_global->__pyx_kp_u_self_name_is_not_None); if (unlikely(!__pyx_mstate_global->__pyx_tuple[0])) __PYX_ERR(1, 11, __pyx_L1_error) - __Pyx_GOTREF(__pyx_mstate_global->__pyx_tuple[0]); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_tuple[0]); - - /* "View.MemoryView":583 - * def suboffsets(self): - * if self.view.suboffsets == NULL: - * return (-1,) * self.view.ndim # <<<<<<<<<<<<<< - * - * return tuple([suboffset for suboffset in self.view.suboffsets[:self.view.ndim]]) -*/ - __pyx_mstate_global->__pyx_tuple[1] = PyTuple_New(1); if (unlikely(!__pyx_mstate_global->__pyx_tuple[1])) __PYX_ERR(1, 583, __pyx_L1_error) - __Pyx_GOTREF(__pyx_mstate_global->__pyx_tuple[1]); - __Pyx_INCREF(__pyx_mstate_global->__pyx_int_neg_1); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_neg_1); - if (__Pyx_PyTuple_SET_ITEM(__pyx_mstate_global->__pyx_tuple[1], 0, __pyx_mstate_global->__pyx_int_neg_1) != (0)) __PYX_ERR(1, 583, __pyx_L1_error); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_tuple[1]); - - /* "View.MemoryView":680 - * tup = index if isinstance(index, tuple) else (index,) - * - * result = [slice(None)] * ndim # <<<<<<<<<<<<<< - * have_slices = False - * seen_ellipsis = False -*/ - __pyx_mstate_global->__pyx_slice[0] = PySlice_New(Py_None, Py_None, Py_None); if (unlikely(!__pyx_mstate_global->__pyx_slice[0])) __PYX_ERR(1, 680, __pyx_L1_error) - __Pyx_GOTREF(__pyx_mstate_global->__pyx_slice[0]); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_slice[0]); - - /* "pyvale/sensorsim/cython/rastercyth.py":380 - * - * # Only used for edge function in raster coords - need x,y - * px_coord_np = np.zeros((2,),np.float64) # <<<<<<<<<<<<<< - * px_coord_buff: cython.double[:] = px_coord_np - * -*/ - __pyx_mstate_global->__pyx_tuple[2] = PyTuple_Pack(1, __pyx_mstate_global->__pyx_int_2); if (unlikely(!__pyx_mstate_global->__pyx_tuple[2])) __PYX_ERR(0, 380, __pyx_L1_error) - __Pyx_GOTREF(__pyx_mstate_global->__pyx_tuple[2]); - __Pyx_GIVEREF(__pyx_mstate_global->__pyx_tuple[2]); - #if CYTHON_IMMORTAL_CONSTANTS - { - PyObject **table = __pyx_mstate->__pyx_tuple; - for (Py_ssize_t i=0; i<3; ++i) { - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - Py_SET_REFCNT(table[i], _Py_IMMORTAL_REFCNT_LOCAL); - #else - Py_SET_REFCNT(table[i], _Py_IMMORTAL_INITIAL_REFCNT); - #endif - } - } - #endif - #if CYTHON_IMMORTAL_CONSTANTS - { - PyObject **table = __pyx_mstate->__pyx_slice; - for (Py_ssize_t i=0; i<1; ++i) { - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - Py_SET_REFCNT(table[i], _Py_IMMORTAL_REFCNT_LOCAL); - #else - Py_SET_REFCNT(table[i], _Py_IMMORTAL_INITIAL_REFCNT); - #endif - } - } - #endif - __Pyx_RefNannyFinishContext(); - return 0; - __pyx_L1_error:; - __Pyx_RefNannyFinishContext(); - return -1; -} -/* #### Code section: init_constants ### */ - -static int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate) { - CYTHON_UNUSED_VAR(__pyx_mstate); - { - const struct { const unsigned int length: 9; } index[] = {{2},{68},{35},{54},{37},{60},{24},{52},{26},{34},{29},{33},{45},{22},{15},{179},{37},{30},{32},{1},{1},{1},{1},{1},{8},{5},{6},{15},{23},{25},{19},{10},{19},{7},{6},{2},{6},{35},{9},{30},{50},{8},{21},{41},{20},{32},{22},{30},{37},{5},{10},{8},{20},{8},{15},{3},{15},{7},{18},{13},{4},{1},{8},{9},{17},{18},{7},{6},{5},{8},{5},{15},{5},{6},{9},{5},{10},{16},{5},{7},{6},{7},{4},{8},{12},{2},{10},{10},{11},{10},{5},{13},{5},{8},{8},{7},{4},{10},{4},{8},{4},{7},{2},{5},{3},{4},{10},{3},{27},{34},{14},{11},{10},{19},{14},{12},{19},{19},{10},{17},{13},{8},{12},{10},{12},{19},{5},{4},{5},{4},{4},{6},{8},{8},{6},{6},{6},{16},{1},{5},{419},{19},{293},{1}}; - #if (CYTHON_COMPRESS_STRINGS) == 2 /* compression: bz2 (1775 bytes) */ -const char* const cstring = "BZh91AY&SY0^\331\206\000\001\021\177\377\377\314\377\377\177\377\375w\377\263\373\016\277\377\377\370@@@@@@@@@@@@@\000@\000`\006}\365\243k\234n\233\246\326\242e\264\305\301\004\252z\232M\n<\3042'\251\031?S4I\372\246\217S#\324\323F'\250\320h\310z\200\033Q\243\324\331\251\246\324\rM6\246\203D\320\232\t\344\3214hj\200\364F\324\000z\203M\000\000\000\000\001\240\000\032\000\340\000\000\000\032\000\000\000\000\320h\000\000\000\031\000h\000\r4\020\0212\206\212=OI\340\223\032\230F\2324=\010\r\000\000\000\000\000\007\223M \340\000\000\000\032\000\000\000\000\320h\000\000\000\031\000h\000\tBjd\310\020\324\304\323M553MG\2242h\320\r\001\352\000\0004\000\003F\232d\006I\n\022\023\334\t\3048\307\372\234c\270\275\307`\334HQ\335\307''y\023\274\204\022P\222AU\025P/D\254\357'v0.\241R$\214\371\3560g-\357fu\215Z\236\327\n&\t\200$(\305Fr\306\333O{\213H(J\255\340\213\343&\rf\003\241\n\004\022\357;!\312_\030\345W\032G\267\216yl\232\316\334\251\233\013\230g\263\306\304\311\363\005\332e\021\r\245\014\360\325E\202\376\253J\362\312\341Y\337\370\242\342qC\333\356\364\265\236\231\3732\210{\205_\353+\207\306\031[\215\330\346 rjY\310r\331c`\342\271\267,\340\362Vx-\350U\246\037C\025fA8\234>M:ayi;\251\2667\307E\207\000\352\363\327\241\321~\236\352\201!Q\322\265\255\351\201\247\352\222\205\243\330\036\275(\036\034\244\266\005ws\371~mW\006U\016v\302\303(\265`\303G\264\3202\246\321gg\014\341\246+UH \351\251\222\264(\271\235\n\354\211\241)\3651\224m&\244\017\345\217\264nrt#\3029\300\333Q\022\023\370\316\277\305\327\327IO\251;\036\235\217\340\312\0328\315\253\023\037\247\307\244\022\373\346I+p\325J\204\024\255\004p\037?v\204\372#my\301\303-n\275\r&U\236m\225b\200\354b:\262?\005\211\001\206\311^\301\345_\261\026\036 rJj\212\r^>\342Z\322\234\225f=/\242Q\271\326\032\240\007~\026Df\333`\207\232\343\250s\334\361(<\350\263,\310\021\316\352\253\002jg\331ZS\314V\361\345\222d\342\325v\346\2259\303H\271&j\256@\251\0232\005\000\257\022\201KT4\347\204\213\250\306\324#\1775\232\023C)_!\200o\307 \244j\236>T&c\350\376""\317\002\340\232\362B\030ixM\001X:L\341\232\255\311,*\307\034\241'\014\325\346\217\277\211\n\216\t9e\322h\3055\t\010\345\362rK\224\213D\026\"*\242\272\215\031\302\345\r\231\201\301\324\034e8W\2209,_Cf\033\373nm\33380L\231+\310\r7\256\2625T\265+\363Ph\361\177\2753p\337\216\032\334\265\020\270TUL2\216u\177\312\351\330\260\322\014\356\200\240\374\361*\024\263\r!G;|\350\254s\316\310\262\030\306Kx\004\006ee \223,!\031\030\202\302\322\014\023\305\2150\0335\327\264\177\257\010s+\036T\265\206y\220\261M\347\2579&\331\004\230\026\207\260z*,\216\350S\255\013M`!\254\332\nr\220\t\024\243]\326\330&\346\234\034\316\224\002\255Ir*4A\331\030\305\350\231\2160Q@9F\374yl\210\225$\242\247\213\312\312*Ti\203\032\\\275\364\225\313U\014\3621e\321I\344\221Zfk\260\212C\022\214\2062\rc\324\315\0005.\254\257\220\244\n-\276q\240I\311\333\327Pf-\321d\227\022\017\313\013\244t\243\004\232\026\202\246\362\242\032\361e\313\323\336\305\305C\014\345gt\222\t\225\354\233\n\214\013N\316\201Nh\371;\022\203\007\021\206:8\r\322D\025\224\2048\202`\364\036\013\300\272-y\347\252\276\250\361\275\303\205$\267\241\253.CC\204\252k@&\207\305:\365T\220\274\205c\263=\316\324\200\306IV\220\332](\364.\204\300\214\213\001\260\307]\302\024\n\341\031!\364\304\321\"%\203\263*L\324I\324\220U\266\031\235\000RL\207\014\206\315\206\203\017\300j\200\035\373$\225@\2209\342\243\tQ\202\000\310N\242*\252*\212FB\304&\201'\255\321\357X\351\260\253.\240\261Bj_q;\340\234f\205\327\020\205&C\300k\031\001\270\337\230\223\202\241\222\372\265\007L\370\226$\031\t\301\004\010\224\033\216\000\031\2030O\2527\t\355(J0\321\271\235\215\233\031\030\330\230TZ\233\006\244\242-s/\315\202\3628S\256T\317\336\334Ci.l\271\367\234\023{L\214\213j\234\003#Ql\301\215\340\320\305{\206\2636q\n\031\205\251c+D]\255\004\205\366\253\r *\241 ,*'SJi\032t\r\275U\033 \212\252\213\355\031,I\321\211b\031\345SN/\221o\r^y0\213f\026NX6hH\273\n\352AbQM\0270\2504\032\002k(\326\030\022e\000\033S\256\204,(\226\352\322\232|\225\n5\316\241O\004\020\037W \356(V\n&\366\013\236\242""\326\367\265R}5p\227\245g\016A!\036\252(\030\245\235I\272\241lH\235\003\"\n!\013R7\340<\357Z\300\241%\270\204\004\343ZFI\026\215{\203O|f\347\346\356\332\214\261\n+\341\321?\265\037\212\342\274\201\303\262\253K\305\332\233\373&\351\265y\224\336KM\335xA\264\225%wI\001\305\2431V\3532\250|-]\000P1\330b\n\257~)\333\206\006.\261w\t\264;E\000t\232QP}8%7\226\"\022#_u\313\247\357\355\371\336\177v\373\261\354\365o\307s\361{\177\017\000\216S\304\265\244$K@\227xh\022,\365(\367\251p:\207\024e\023\000cGB\350\367\313\262S\321\010\026\240:\351A\014\034\226\3617\2159\305\037\305xB\311I\263b2\360\337\022\026!(\270s\234\213V!\030$\271\222\342i\371OE4\263\203\177\304\326\220\361\320%\267\263\312\2262\352`\321\253\247\\,\375*\225\362\252\320/Ve\300fji\266\263\220\007\314\371\010\010_\360\223{\273\366\277\311\260\264\023\022\257\200\\x\306Ps\300)nK\013\305n\031\257\314)\266\206\2458\230\025\310Nm\000\2030\3550k\214\241\177\226\244\300\254\254h;/\301\236\232\237x\262u`\370\206m\tg4PZ\300W\206\320\321\303\026V\304\0170\326p\214Mt@k\030\000i\024(\013\251\332\023\022\224\003r1\352\005utMwU\237G\376\035\377\246:\233\303\347\336\375|\366\026\254.\314'O\322f^A\361x2\222Wn\305O\222\341j:z\0227\217+\267\343\337\222\245t2\255\302\301\021ZL\307R\222\356\344\225\033\321\3571\211e2\231T\317,\214\327k\321hT\213d|=i&k\311\247l2\273\225\375yx\371\360\303\321\326\373\243\367\037\362\312\375\004\034_=w\353v\346\036\314\035\216\036\202\307\273\311\244\361\364S\277\025]\210\336E\237\222\351t#\233;\030=\250\226\326W\006'\327\323\345L\037,\035N\035\002\366\007\311\333\177\307\n\273\261\250\025_LT:\227\215f`5\237\254\026V\260\177\204\232\351\225Tf\223y\345^R=\256L\366\247\372K\321\324\321\364|\362')?add_note and at 0xcollections.abccython.double[:, :]cython.intcython.size_t[:, :]disableenablegc (got got differing extents in dimension isenableditemsize <= 0 for cython.arrayno default __reduce__ due to non-trivial __cinit__ object>self.name is not Nonesrc/pyvale/sensorsim/cython/rastercyth.pyunable to allocate array data.unable to allocate shape and strides.ASCIICameraDataEllipsis__Pyx_PyDict_NextRefSequenceView.MemoryViewabcallocate_bufferasarrayasyncio.coroutinesaverage_imagebaseccam_data__class____class_getitem__cline_in_tracebackconnectcoordscount__dict__dtypedtype_is_objectemptyencodeenumerateerrorfield_dispfields_to_renderflagsfloat64formatfortranfull__func____getstate__idimage_dimsimage_distimage_subpx__import__index_is_coroutineitemsitemsize__main__memviewmode__module__name__name__ndim__new__npnumpyobjpackpixels_numpoppyvale.sensorsim.cameradatapyvale.sensorsim.cython.rastercyth__pyx_checksum__pyx_state__pyx_type__pyx_unpickle_Enum__pyx_vtable____qualname__raster_deform_frameraster_static_frame__reduce____reduce_cython____reduce_ex""__register__set_name__setdefault__setstate____setstate_cython__shapesizestartstepstopstructsub_samp__test__unpackupdatevaluesworld_to_cam_matxzeros\200\001\360\010\000!\"\330!\"\330*+\330\"#\360\010\000\005,\2508\2601\330\004 \240\010\250\001\330\004#\2408\2501\330\004 \240\010\250\001\330\004\033\2308\2401\340\004$\240G\2506\260\021\260!\330\004 \320 0\260\006\260a\260q\330\004\034\230J\240a\240r\250\021\250!\330\004\034\230J\240a\240r\250\021\250!\360\010\000\005\031\230\002\230%\230r\240\032\2501\250C\250z\270\021\270#\270\\\310\024\310V\320SU\320UV\330\004+\2501\340\004\030\230\002\230%\230r\240\032\2501\250C\250z\270\021\270$\270d\300&\310\002\310!\330\004)\250\021\360\010\000\005\027\220b\230\005\230R\230z\250\033\260F\270&\300\002\300!\330\004+\2501\340\004\026\220b\230\005\230R\230z\250\032\260<\270t\3006\310\022\3101\330\004-\250Q\360\006\000\005\027\220b\230\006\230b\240\017\250s\260&\270\002\270!\330\004,\250A\340\004\026\220b\230\006\230b\320 1\260\026\260r\270\021\330\004*\250!\340\004\021\220\022\2206\230\022\320\033,\250B\250a\330\004%\240Q\360\006\000\005\023\220\"\220F\230\"\230D\240\002\240!\330\004&\240a\360\010\000\005%\240M\260\021\260&\270\001\33029\270\021\3302B\300!\3302B\300!\3302<\270A\3302<\270A\33023\33023\3302@\300\001\3302@\300\001\3302B\300!\3302B\300!\3302C\3001\3302C\3001\3302?\270q\3302>\270a\340\004\014\320\014\036\320\0360\260\001\200\001\360\010\000!\"\330!\"\330*+\330\"#\330$%\200\001\360\010\000 !\330\034\035\360\006\000\005\010\200y\220\003\2201\330\010\017\210r\220\030\230\021\230+\240Q\340\004\036\230c\240\021\240$\240a\240{\260&\270\001\270\022\2701\270A\330\004\036\230c\240\021\240$\240a\240{\260&\270\001\270\022\2701\270A\340\004\030\230\002\230%\230r\240\031\250*\260D\270\006\270b\300\001\330\004)\250\021\340\004!\240\033\250F\260!\2601\330\004!\240\033\250F\260!\2601\330\004\"\240%\240q\250\010\260\001\260\021\330\004\035\230Q\340\004\036\230c\240\021\240+\250Q\250a\330\004\036\230c\240\021\240+\250Q\250a\340\004\034""\230A\340\004\030\230\001\330\004\030\230\001\330\004\030\230\001\330\004\030\230\001\340\004\010\210\006\210e\2201\220A\330\010\014\210F\220%\220q\230\001\330\014\025\220Q\330\014\020\220\006\220e\2301\230A\330\020\024\220F\230%\230q\240\001\330\024\036\230k\250\021\250'\260\021\260\"\260A\260S\270\007\270q\300\002\300!\3001\340\014\032\230!\2303\230f\240G\2502\250Q\340\004\013\2101O"; - PyObject *data = NULL; - CYTHON_UNUSED_VAR(__Pyx_DecompressString); - #endif - PyObject **stringtab = __pyx_mstate->__pyx_string_tab; - Py_ssize_t pos = 0; - for (int i = 0; i < 140; i++) { - Py_ssize_t bytes_length = index[i].length; - PyObject *string = PyUnicode_DecodeUTF8(bytes + pos, bytes_length, NULL); - if (likely(string) && i >= 49) PyUnicode_InternInPlace(&string); - if (unlikely(!string)) { - Py_XDECREF(data); - __PYX_ERR(0, 1, __pyx_L1_error) - } - stringtab[i] = string; - pos += bytes_length; - } - for (int i = 140; i < 144; i++) { - Py_ssize_t bytes_length = index[i].length; - PyObject *string = PyBytes_FromStringAndSize(bytes + pos, bytes_length); - stringtab[i] = string; - pos += bytes_length; - if (unlikely(!string)) { - Py_XDECREF(data); - __PYX_ERR(0, 1, __pyx_L1_error) - } - } - Py_XDECREF(data); - for (Py_ssize_t i = 0; i < 144; i++) { - if (unlikely(PyObject_Hash(stringtab[i]) == -1)) { - __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #if CYTHON_IMMORTAL_CONSTANTS - { - PyObject **table = stringtab + 140; - for (Py_ssize_t i=0; i<4; ++i) { - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - Py_SET_REFCNT(table[i], _Py_IMMORTAL_REFCNT_LOCAL); - #else - Py_SET_REFCNT(table[i], _Py_IMMORTAL_INITIAL_REFCNT); - #endif - } - } - #endif - } - { - PyObject **numbertab = __pyx_mstate->__pyx_number_tab; - double const c_constants[] = {0.0,1.0e6}; - for (int i = 0; i < 2; i++) { - numbertab[i] = PyFloat_FromDouble(c_constants[i]); - if (unlikely(!numbertab[i])) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - { - PyObject **numbertab = __pyx_mstate->__pyx_number_tab + 2; - int8_t const cint_constants_1[] = {0,-1,1,2,4}; - int32_t const cint_constants_4[] = {136983863L}; - for (int i = 0; i < 6; i++) { - numbertab[i] = PyLong_FromLong((i < 5 ? cint_constants_1[i - 0] : cint_constants_4[i - 5])); - if (unlikely(!numbertab[i])) __PYX_ERR(0, 1, __pyx_L1_error) - } - } - #if CYTHON_IMMORTAL_CONSTANTS - { - PyObject **table = __pyx_mstate->__pyx_number_tab; - for (Py_ssize_t i=0; i<8; ++i) { - #if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - Py_SET_REFCNT(table[i], _Py_IMMORTAL_REFCNT_LOCAL); - #else - Py_SET_REFCNT(table[i], _Py_IMMORTAL_INITIAL_REFCNT); - #endif - } - } - #endif - return 0; - __pyx_L1_error:; - return -1; -} -/* #### Code section: init_codeobjects ### */ -typedef struct { - unsigned int argcount : 3; - unsigned int num_posonly_args : 1; - unsigned int num_kwonly_args : 1; - unsigned int nlocals : 3; - unsigned int flags : 10; - unsigned int first_line : 9; -} __Pyx_PyCode_New_function_description; -/* NewCodeObj.proto */ -static PyObject* __Pyx_PyCode_New( - const __Pyx_PyCode_New_function_description descr, - PyObject * const *varnames, - PyObject *filename, - PyObject *funcname, - PyObject *line_table, - PyObject *tuple_dedup_map -); - - -static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) { - PyObject* tuple_dedup_map = PyDict_New(); - if (unlikely(!tuple_dedup_map)) return -1; - { - const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 248}; - PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_image_subpx, __pyx_mstate->__pyx_n_u_sub_samp}; - __pyx_mstate_global->__pyx_codeobj_tab[0] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_src_pyvale_sensorsim_cython_rast, __pyx_mstate->__pyx_n_u_average_image, __pyx_mstate->__pyx_kp_b_iso88591_y_1_r_Q_c_a_1A_c_a_1A_r_D_b_F_1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[0])) goto bad; - } - { - const __Pyx_PyCode_New_function_description descr = {4, 0, 0, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 331}; - PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_coords, __pyx_mstate->__pyx_n_u_connect, __pyx_mstate->__pyx_n_u_fields_to_render, __pyx_mstate->__pyx_n_u_cam_data}; - __pyx_mstate_global->__pyx_codeobj_tab[1] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_src_pyvale_sensorsim_cython_rast, __pyx_mstate->__pyx_n_u_raster_static_frame, __pyx_mstate->__pyx_kp_b_iso88591_81_81_81_G6_0_aq_Jar_Jar_r_1Cz, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[1])) goto bad; - } - { - const __Pyx_PyCode_New_function_description descr = {5, 0, 0, 5, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 405}; - PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_coords, __pyx_mstate->__pyx_n_u_connect, __pyx_mstate->__pyx_n_u_fields_to_render, __pyx_mstate->__pyx_n_u_cam_data, __pyx_mstate->__pyx_n_u_field_disp}; - __pyx_mstate_global->__pyx_codeobj_tab[2] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_src_pyvale_sensorsim_cython_rast, __pyx_mstate->__pyx_n_u_raster_deform_frame, __pyx_mstate->__pyx_kp_b_iso88591__7, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[2])) goto bad; - } - Py_DECREF(tuple_dedup_map); - return 0; - bad: - Py_DECREF(tuple_dedup_map); - return -1; -} -/* #### Code section: init_globals ### */ - -static int __Pyx_InitGlobals(void) { - /* PythonCompatibility.init */ - if (likely(__Pyx_init_co_variables() == 0)); else - - if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 1, __pyx_L1_error) - - /* AssertionsEnabled.init */ - if (likely(__Pyx_init_assertions_enabled() == 0)); else - - if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 1, __pyx_L1_error) - - /* CommonTypesMetaclass.init */ - if (likely(__pyx_CommonTypesMetaclass_init(__pyx_m) == 0)); else - - if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 1, __pyx_L1_error) - - /* CachedMethodType.init */ - #if CYTHON_COMPILING_IN_LIMITED_API - { - PyObject *typesModule=NULL; - typesModule = PyImport_ImportModule("types"); - if (typesModule) { - __pyx_mstate_global->__Pyx_CachedMethodType = PyObject_GetAttrString(typesModule, "MethodType"); - Py_DECREF(typesModule); - } - } // error handling follows - #endif - - if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 1, __pyx_L1_error) - - /* CythonFunctionShared.init */ - if (likely(__pyx_CyFunction_init(__pyx_m) == 0)); else - - if (unlikely(PyErr_Occurred())) __PYX_ERR(0, 1, __pyx_L1_error) - - return 0; - __pyx_L1_error:; - return -1; -} -/* #### Code section: cleanup_globals ### */ -/* #### Code section: cleanup_module ### */ -/* #### Code section: main_method ### */ -/* #### Code section: utility_code_pragmas ### */ -#ifdef _MSC_VER -#pragma warning( push ) -/* Warning 4127: conditional expression is constant - * Cython uses constant conditional expressions to allow in inline functions to be optimized at - * compile-time, so this warning is not useful - */ -#pragma warning( disable : 4127 ) -#endif - - - -/* #### Code section: utility_code_def ### */ - -/* --- Runtime support code --- */ -/* Refnanny */ -#if CYTHON_REFNANNY -static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { - PyObject *m = NULL, *p = NULL; - void *r = NULL; - m = PyImport_ImportModule(modname); - if (!m) goto end; - p = PyObject_GetAttrString(m, "RefNannyAPI"); - if (!p) goto end; - r = PyLong_AsVoidPtr(p); -end: - Py_XDECREF(p); - Py_XDECREF(m); - return (__Pyx_RefNannyAPIStruct *)r; -} -#endif - -/* TupleAndListFromArray (used by fastcall) */ -#if !CYTHON_COMPILING_IN_CPYTHON && CYTHON_METH_FASTCALL -static CYTHON_INLINE PyObject * -__Pyx_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n) -{ - PyObject *res; - Py_ssize_t i; - if (n <= 0) { - return __Pyx_NewRef(__pyx_mstate_global->__pyx_empty_tuple); - } - res = PyTuple_New(n); - if (unlikely(res == NULL)) return NULL; - for (i = 0; i < n; i++) { - if (unlikely(__Pyx_PyTuple_SET_ITEM(res, i, src[i]) < (0))) { - Py_DECREF(res); - return NULL; - } - Py_INCREF(src[i]); - } - return res; -} -#elif CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE void __Pyx_copy_object_array(PyObject *const *CYTHON_RESTRICT src, PyObject** CYTHON_RESTRICT dest, Py_ssize_t length) { - PyObject *v; - Py_ssize_t i; - for (i = 0; i < length; i++) { - v = dest[i] = src[i]; - Py_INCREF(v); - } -} -static CYTHON_INLINE PyObject * -__Pyx_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n) -{ - PyObject *res; - if (n <= 0) { - return __Pyx_NewRef(__pyx_mstate_global->__pyx_empty_tuple); - } - res = PyTuple_New(n); - if (unlikely(res == NULL)) return NULL; - __Pyx_copy_object_array(src, ((PyTupleObject*)res)->ob_item, n); - return res; -} -static CYTHON_INLINE PyObject * -__Pyx_PyList_FromArray(PyObject *const *src, Py_ssize_t n) -{ - PyObject *res; - if (n <= 0) { - return PyList_New(0); - } - res = PyList_New(n); - if (unlikely(res == NULL)) return NULL; - __Pyx_copy_object_array(src, ((PyListObject*)res)->ob_item, n); - return res; -} -#endif - -/* BytesEquals (used by UnicodeEquals) */ -static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_GRAAL ||\ - !(CYTHON_ASSUME_SAFE_SIZE && CYTHON_ASSUME_SAFE_MACROS) - return PyObject_RichCompareBool(s1, s2, equals); -#else - if (s1 == s2) { - return (equals == Py_EQ); - } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { - const char *ps1, *ps2; - Py_ssize_t length = PyBytes_GET_SIZE(s1); - if (length != PyBytes_GET_SIZE(s2)) - return (equals == Py_NE); - ps1 = PyBytes_AS_STRING(s1); - ps2 = PyBytes_AS_STRING(s2); - if (ps1[0] != ps2[0]) { - return (equals == Py_NE); - } else if (length == 1) { - return (equals == Py_EQ); - } else { - int result; -#if CYTHON_USE_UNICODE_INTERNALS && (PY_VERSION_HEX < 0x030B0000) - Py_hash_t hash1, hash2; - hash1 = ((PyBytesObject*)s1)->ob_shash; - hash2 = ((PyBytesObject*)s2)->ob_shash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - return (equals == Py_NE); - } -#endif - result = memcmp(ps1, ps2, (size_t)length); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { - return (equals == Py_NE); - } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { - return (equals == Py_NE); - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -#endif -} - -/* UnicodeEquals (used by fastcall) */ -static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { -#if CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_GRAAL - return PyObject_RichCompareBool(s1, s2, equals); -#else - int s1_is_unicode, s2_is_unicode; - if (s1 == s2) { - goto return_eq; - } - s1_is_unicode = PyUnicode_CheckExact(s1); - s2_is_unicode = PyUnicode_CheckExact(s2); - if (s1_is_unicode & s2_is_unicode) { - Py_ssize_t length, length2; - int kind; - void *data1, *data2; - #if !CYTHON_COMPILING_IN_LIMITED_API - if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) - return -1; - #endif - length = __Pyx_PyUnicode_GET_LENGTH(s1); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(length < 0)) return -1; - #endif - length2 = __Pyx_PyUnicode_GET_LENGTH(s2); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(length2 < 0)) return -1; - #endif - if (length != length2) { - goto return_ne; - } -#if CYTHON_USE_UNICODE_INTERNALS - { - Py_hash_t hash1, hash2; - hash1 = ((PyASCIIObject*)s1)->hash; - hash2 = ((PyASCIIObject*)s2)->hash; - if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { - goto return_ne; - } - } -#endif - kind = __Pyx_PyUnicode_KIND(s1); - if (kind != __Pyx_PyUnicode_KIND(s2)) { - goto return_ne; - } - data1 = __Pyx_PyUnicode_DATA(s1); - data2 = __Pyx_PyUnicode_DATA(s2); - if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { - goto return_ne; - } else if (length == 1) { - goto return_eq; - } else { - int result = memcmp(data1, data2, (size_t)(length * kind)); - return (equals == Py_EQ) ? (result == 0) : (result != 0); - } - } else if ((s1 == Py_None) & s2_is_unicode) { - goto return_ne; - } else if ((s2 == Py_None) & s1_is_unicode) { - goto return_ne; - } else { - int result; - PyObject* py_result = PyObject_RichCompare(s1, s2, equals); - if (!py_result) - return -1; - result = __Pyx_PyObject_IsTrue(py_result); - Py_DECREF(py_result); - return result; - } -return_eq: - return (equals == Py_EQ); -return_ne: - return (equals == Py_NE); -#endif -} - -/* fastcall */ -#if CYTHON_METH_FASTCALL -static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues, PyObject *s) -{ - Py_ssize_t i, n = __Pyx_PyTuple_GET_SIZE(kwnames); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(n == -1)) return NULL; - #endif - for (i = 0; i < n; i++) - { - PyObject *namei = __Pyx_PyTuple_GET_ITEM(kwnames, i); - #if !CYTHON_ASSUME_SAFE_MACROS - if (unlikely(!namei)) return NULL; - #endif - if (s == namei) return kwvalues[i]; - } - for (i = 0; i < n; i++) - { - PyObject *namei = __Pyx_PyTuple_GET_ITEM(kwnames, i); - #if !CYTHON_ASSUME_SAFE_MACROS - if (unlikely(!namei)) return NULL; - #endif - int eq = __Pyx_PyUnicode_Equals(s, namei, Py_EQ); - if (unlikely(eq != 0)) { - if (unlikely(eq < 0)) return NULL; - return kwvalues[i]; - } - } - return NULL; -} -#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000 || CYTHON_COMPILING_IN_LIMITED_API -CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) { - Py_ssize_t i, nkwargs; - PyObject *dict; -#if !CYTHON_ASSUME_SAFE_SIZE - nkwargs = PyTuple_Size(kwnames); - if (unlikely(nkwargs < 0)) return NULL; -#else - nkwargs = PyTuple_GET_SIZE(kwnames); -#endif - dict = PyDict_New(); - if (unlikely(!dict)) - return NULL; - for (i=0; itp_call; - if (unlikely(!call)) - return PyObject_Call(func, arg, kw); - if (unlikely(Py_EnterRecursiveCall(" while calling a Python object"))) - return NULL; - result = (*call)(func, arg, kw); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectCallMethO (used by PyObjectFastCall) */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { - PyObject *self, *result; - PyCFunction cfunc; - cfunc = __Pyx_CyOrPyCFunction_GET_FUNCTION(func); - self = __Pyx_CyOrPyCFunction_GET_SELF(func); - if (unlikely(Py_EnterRecursiveCall(" while calling a Python object"))) - return NULL; - result = cfunc(self, arg); - Py_LeaveRecursiveCall(); - if (unlikely(!result) && unlikely(!PyErr_Occurred())) { - PyErr_SetString( - PyExc_SystemError, - "NULL result without error in PyObject_Call"); - } - return result; -} -#endif - -/* PyObjectFastCall (used by PyObjectCallOneArg) */ -#if PY_VERSION_HEX < 0x03090000 || CYTHON_COMPILING_IN_LIMITED_API -static PyObject* __Pyx_PyObject_FastCall_fallback(PyObject *func, PyObject * const*args, size_t nargs, PyObject *kwargs) { - PyObject *argstuple; - PyObject *result = 0; - size_t i; - argstuple = PyTuple_New((Py_ssize_t)nargs); - if (unlikely(!argstuple)) return NULL; - for (i = 0; i < nargs; i++) { - Py_INCREF(args[i]); - if (__Pyx_PyTuple_SET_ITEM(argstuple, (Py_ssize_t)i, args[i]) != (0)) goto bad; - } - result = __Pyx_PyObject_Call(func, argstuple, kwargs); - bad: - Py_DECREF(argstuple); - return result; -} -#endif -#if CYTHON_VECTORCALL && !CYTHON_COMPILING_IN_LIMITED_API - #if PY_VERSION_HEX < 0x03090000 - #define __Pyx_PyVectorcall_Function(callable) _PyVectorcall_Function(callable) - #elif CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE vectorcallfunc __Pyx_PyVectorcall_Function(PyObject *callable) { - PyTypeObject *tp = Py_TYPE(callable); - #if defined(__Pyx_CyFunction_USED) - if (__Pyx_CyFunction_CheckExact(callable)) { - return __Pyx_CyFunction_func_vectorcall(callable); - } - #endif - if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) { - return NULL; - } - assert(PyCallable_Check(callable)); - Py_ssize_t offset = tp->tp_vectorcall_offset; - assert(offset > 0); - vectorcallfunc ptr; - memcpy(&ptr, (char *) callable + offset, sizeof(ptr)); - return ptr; -} - #else - #define __Pyx_PyVectorcall_Function(callable) PyVectorcall_Function(callable) - #endif -#endif -static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObject *const *args, size_t _nargs, PyObject *kwargs) { - Py_ssize_t nargs = __Pyx_PyVectorcall_NARGS(_nargs); -#if CYTHON_COMPILING_IN_CPYTHON - if (nargs == 0 && kwargs == NULL) { - if (__Pyx_CyOrPyCFunction_Check(func) && likely( __Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_NOARGS)) - return __Pyx_PyObject_CallMethO(func, NULL); - } - else if (nargs == 1 && kwargs == NULL) { - if (__Pyx_CyOrPyCFunction_Check(func) && likely( __Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_O)) - return __Pyx_PyObject_CallMethO(func, args[0]); - } -#endif - if (kwargs == NULL) { - #if CYTHON_VECTORCALL - #if CYTHON_COMPILING_IN_LIMITED_API - return PyObject_Vectorcall(func, args, _nargs, NULL); - #else - vectorcallfunc f = __Pyx_PyVectorcall_Function(func); - if (f) { - return f(func, args, _nargs, NULL); - } - #endif - #endif - } - if (nargs == 0) { - return __Pyx_PyObject_Call(func, __pyx_mstate_global->__pyx_empty_tuple, kwargs); - } - #if PY_VERSION_HEX >= 0x03090000 && !CYTHON_COMPILING_IN_LIMITED_API - return PyObject_VectorcallDict(func, args, (size_t)nargs, kwargs); - #else - return __Pyx_PyObject_FastCall_fallback(func, args, (size_t)nargs, kwargs); - #endif -} - -/* PyObjectCallOneArg (used by CallUnboundCMethod0) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { - PyObject *args[2] = {NULL, arg}; - return __Pyx_PyObject_FastCall(func, args+1, 1 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET); -} - -/* PyObjectGetAttrStr (used by UnpackUnboundCMethod) */ -#if CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro)) - return tp->tp_getattro(obj, attr_name); - return PyObject_GetAttr(obj, attr_name); -} -#endif - -/* UnpackUnboundCMethod (used by CallUnboundCMethod0) */ -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030C0000 -static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) { - PyObject *result; - PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args)); - if (unlikely(!selfless_args)) return NULL; - result = PyObject_Call(method, selfless_args, kwargs); - Py_DECREF(selfless_args); - return result; -} -#elif CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x03090000 -static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) { - return _PyObject_Vectorcall - (method, args ? args+1 : NULL, nargs ? nargs-1 : 0, kwnames); -} -#else -static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) { - return -#if PY_VERSION_HEX < 0x03090000 - _PyObject_Vectorcall -#else - PyObject_Vectorcall -#endif - (method, args ? args+1 : NULL, nargs ? (size_t) nargs-1 : 0, kwnames); -} -#endif -static PyMethodDef __Pyx_UnboundCMethod_Def = { - "CythonUnboundCMethod", - __PYX_REINTERPRET_FUNCION(PyCFunction, __Pyx_SelflessCall), -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030C0000 - METH_VARARGS | METH_KEYWORDS, -#else - METH_FASTCALL | METH_KEYWORDS, -#endif - NULL -}; -static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) { - PyObject *method, *result=NULL; - method = __Pyx_PyObject_GetAttrStr(target->type, *target->method_name); - if (unlikely(!method)) - return -1; - result = method; -#if CYTHON_COMPILING_IN_CPYTHON - if (likely(__Pyx_TypeCheck(method, &PyMethodDescr_Type))) - { - PyMethodDescrObject *descr = (PyMethodDescrObject*) method; - target->func = descr->d_method->ml_meth; - target->flag = descr->d_method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_STACKLESS); - } else -#endif -#if CYTHON_COMPILING_IN_PYPY -#else - if (PyCFunction_Check(method)) -#endif - { - PyObject *self; - int self_found; -#if CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_PYPY - self = PyObject_GetAttrString(method, "__self__"); - if (!self) { - PyErr_Clear(); - } -#else - self = PyCFunction_GET_SELF(method); -#endif - self_found = (self && self != Py_None); -#if CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_PYPY - Py_XDECREF(self); -#endif - if (self_found) { - PyObject *unbound_method = PyCFunction_New(&__Pyx_UnboundCMethod_Def, method); - if (unlikely(!unbound_method)) return -1; - Py_DECREF(method); - result = unbound_method; - } - } -#if !CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - if (unlikely(target->method)) { - Py_DECREF(result); - } else -#endif - target->method = result; - return 0; -} - -/* CallUnboundCMethod0 */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject* __Pyx_CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self) { - int was_initialized = __Pyx_CachedCFunction_GetAndSetInitializing(cfunc); - if (likely(was_initialized == 2 && cfunc->func)) { - if (likely(cfunc->flag == METH_NOARGS)) - return __Pyx_CallCFunction(cfunc, self, NULL); - if (likely(cfunc->flag == METH_FASTCALL)) - return __Pyx_CallCFunctionFast(cfunc, self, NULL, 0); - if (cfunc->flag == (METH_FASTCALL | METH_KEYWORDS)) - return __Pyx_CallCFunctionFastWithKeywords(cfunc, self, NULL, 0, NULL); - if (likely(cfunc->flag == (METH_VARARGS | METH_KEYWORDS))) - return __Pyx_CallCFunctionWithKeywords(cfunc, self, __pyx_mstate_global->__pyx_empty_tuple, NULL); - if (cfunc->flag == METH_VARARGS) - return __Pyx_CallCFunction(cfunc, self, __pyx_mstate_global->__pyx_empty_tuple); - return __Pyx__CallUnboundCMethod0(cfunc, self); - } -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - else if (unlikely(was_initialized == 1)) { - __Pyx_CachedCFunction tmp_cfunc = { -#ifndef __cplusplus - 0 -#endif - }; - tmp_cfunc.type = cfunc->type; - tmp_cfunc.method_name = cfunc->method_name; - return __Pyx__CallUnboundCMethod0(&tmp_cfunc, self); - } -#endif - PyObject *result = __Pyx__CallUnboundCMethod0(cfunc, self); - __Pyx_CachedCFunction_SetFinishedInitializing(cfunc); - return result; -} -#endif -static PyObject* __Pyx__CallUnboundCMethod0(__Pyx_CachedCFunction* cfunc, PyObject* self) { - PyObject *result; - if (unlikely(!cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; - result = __Pyx_PyObject_CallOneArg(cfunc->method, self); - return result; -} - -/* py_dict_items (used by OwnedDictNext) */ -static CYTHON_INLINE PyObject* __Pyx_PyDict_Items(PyObject* d) { - return __Pyx_CallUnboundCMethod0(&__pyx_mstate_global->__pyx_umethod_PyDict_Type_items, d); -} - -/* py_dict_values (used by OwnedDictNext) */ -static CYTHON_INLINE PyObject* __Pyx_PyDict_Values(PyObject* d) { - return __Pyx_CallUnboundCMethod0(&__pyx_mstate_global->__pyx_umethod_PyDict_Type_values, d); -} - -/* OwnedDictNext (used by ParseKeywordsImpl) */ -#if CYTHON_AVOID_BORROWED_REFS -static int __Pyx_PyDict_NextRef(PyObject *p, PyObject **ppos, PyObject **pkey, PyObject **pvalue) { - PyObject *next = NULL; - if (!*ppos) { - if (pvalue) { - PyObject *dictview = pkey ? __Pyx_PyDict_Items(p) : __Pyx_PyDict_Values(p); - if (unlikely(!dictview)) goto bad; - *ppos = PyObject_GetIter(dictview); - Py_DECREF(dictview); - } else { - *ppos = PyObject_GetIter(p); - } - if (unlikely(!*ppos)) goto bad; - } - next = PyIter_Next(*ppos); - if (!next) { - if (PyErr_Occurred()) goto bad; - return 0; - } - if (pkey && pvalue) { - *pkey = __Pyx_PySequence_ITEM(next, 0); - if (unlikely(*pkey)) goto bad; - *pvalue = __Pyx_PySequence_ITEM(next, 1); - if (unlikely(*pvalue)) goto bad; - Py_DECREF(next); - } else if (pkey) { - *pkey = next; - } else { - assert(pvalue); - *pvalue = next; - } - return 1; - bad: - Py_XDECREF(next); -#if !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x030d0000 - PyErr_FormatUnraisable("Exception ignored in __Pyx_PyDict_NextRef"); -#else - PyErr_WriteUnraisable(__pyx_mstate_global->__pyx_n_u_Pyx_PyDict_NextRef); -#endif - if (pkey) *pkey = NULL; - if (pvalue) *pvalue = NULL; - return 0; -} -#else // !CYTHON_AVOID_BORROWED_REFS -static int __Pyx_PyDict_NextRef(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue) { - int result = PyDict_Next(p, ppos, pkey, pvalue); - if (likely(result == 1)) { - if (pkey) Py_INCREF(*pkey); - if (pvalue) Py_INCREF(*pvalue); - } - return result; -} -#endif - -/* RaiseDoubleKeywords (used by ParseKeywordsImpl) */ -static void __Pyx_RaiseDoubleKeywordsError( - const char* func_name, - PyObject* kw_name) -{ - PyErr_Format(PyExc_TypeError, - "%s() got multiple values for keyword argument '%U'", func_name, kw_name); -} - -/* CallUnboundCMethod2 */ -#if CYTHON_COMPILING_IN_CPYTHON -static CYTHON_INLINE PyObject *__Pyx_CallUnboundCMethod2(__Pyx_CachedCFunction *cfunc, PyObject *self, PyObject *arg1, PyObject *arg2) { - int was_initialized = __Pyx_CachedCFunction_GetAndSetInitializing(cfunc); - if (likely(was_initialized == 2 && cfunc->func)) { - PyObject *args[2] = {arg1, arg2}; - if (cfunc->flag == METH_FASTCALL) { - return __Pyx_CallCFunctionFast(cfunc, self, args, 2); - } - if (cfunc->flag == (METH_FASTCALL | METH_KEYWORDS)) - return __Pyx_CallCFunctionFastWithKeywords(cfunc, self, args, 2, NULL); - } -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - else if (unlikely(was_initialized == 1)) { - __Pyx_CachedCFunction tmp_cfunc = { -#ifndef __cplusplus - 0 -#endif - }; - tmp_cfunc.type = cfunc->type; - tmp_cfunc.method_name = cfunc->method_name; - return __Pyx__CallUnboundCMethod2(&tmp_cfunc, self, arg1, arg2); - } -#endif - PyObject *result = __Pyx__CallUnboundCMethod2(cfunc, self, arg1, arg2); - __Pyx_CachedCFunction_SetFinishedInitializing(cfunc); - return result; -} -#endif -static PyObject* __Pyx__CallUnboundCMethod2(__Pyx_CachedCFunction* cfunc, PyObject* self, PyObject* arg1, PyObject* arg2){ - if (unlikely(!cfunc->func && !cfunc->method) && unlikely(__Pyx_TryUnpackUnboundCMethod(cfunc) < 0)) return NULL; -#if CYTHON_COMPILING_IN_CPYTHON - if (cfunc->func && (cfunc->flag & METH_VARARGS)) { - PyObject *result = NULL; - PyObject *args = PyTuple_New(2); - if (unlikely(!args)) return NULL; - Py_INCREF(arg1); - PyTuple_SET_ITEM(args, 0, arg1); - Py_INCREF(arg2); - PyTuple_SET_ITEM(args, 1, arg2); - if (cfunc->flag & METH_KEYWORDS) - result = __Pyx_CallCFunctionWithKeywords(cfunc, self, args, NULL); - else - result = __Pyx_CallCFunction(cfunc, self, args); - Py_DECREF(args); - return result; - } -#endif - { - PyObject *args[4] = {NULL, self, arg1, arg2}; - return __Pyx_PyObject_FastCall(cfunc->method, args+1, 3 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET); - } -} - -/* ParseKeywordsImpl (used by ParseKeywords) */ -static int __Pyx_ValidateDuplicatePosArgs( - PyObject *kwds, - PyObject ** const argnames[], - PyObject ** const *first_kw_arg, - const char* function_name) -{ - PyObject ** const *name = argnames; - while (name != first_kw_arg) { - PyObject *key = **name; - int found = PyDict_Contains(kwds, key); - if (unlikely(found)) { - if (found == 1) __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; - } - name++; - } - return 0; -bad: - return -1; -} -#if CYTHON_USE_UNICODE_INTERNALS -static CYTHON_INLINE int __Pyx_UnicodeKeywordsEqual(PyObject *s1, PyObject *s2) { - int kind; - Py_ssize_t len = PyUnicode_GET_LENGTH(s1); - if (len != PyUnicode_GET_LENGTH(s2)) return 0; - kind = PyUnicode_KIND(s1); - if (kind != PyUnicode_KIND(s2)) return 0; - const void *data1 = PyUnicode_DATA(s1); - const void *data2 = PyUnicode_DATA(s2); - return (memcmp(data1, data2, (size_t) len * (size_t) kind) == 0); -} -#endif -static int __Pyx_MatchKeywordArg_str( - PyObject *key, - PyObject ** const argnames[], - PyObject ** const *first_kw_arg, - size_t *index_found, - const char *function_name) -{ - PyObject ** const *name; - #if CYTHON_USE_UNICODE_INTERNALS - Py_hash_t key_hash = ((PyASCIIObject*)key)->hash; - if (unlikely(key_hash == -1)) { - key_hash = PyObject_Hash(key); - if (unlikely(key_hash == -1)) - goto bad; - } - #endif - name = first_kw_arg; - while (*name) { - PyObject *name_str = **name; - #if CYTHON_USE_UNICODE_INTERNALS - if (key_hash == ((PyASCIIObject*)name_str)->hash && __Pyx_UnicodeKeywordsEqual(name_str, key)) { - *index_found = (size_t) (name - argnames); - return 1; - } - #else - #if CYTHON_ASSUME_SAFE_SIZE - if (PyUnicode_GET_LENGTH(name_str) == PyUnicode_GET_LENGTH(key)) - #endif - { - int cmp = PyUnicode_Compare(name_str, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) { - *index_found = (size_t) (name - argnames); - return 1; - } - } - #endif - name++; - } - name = argnames; - while (name != first_kw_arg) { - PyObject *name_str = **name; - #if CYTHON_USE_UNICODE_INTERNALS - if (unlikely(key_hash == ((PyASCIIObject*)name_str)->hash)) { - if (__Pyx_UnicodeKeywordsEqual(name_str, key)) - goto arg_passed_twice; - } - #else - #if CYTHON_ASSUME_SAFE_SIZE - if (PyUnicode_GET_LENGTH(name_str) == PyUnicode_GET_LENGTH(key)) - #endif - { - if (unlikely(name_str == key)) goto arg_passed_twice; - int cmp = PyUnicode_Compare(name_str, key); - if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; - if (cmp == 0) goto arg_passed_twice; - } - #endif - name++; - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -bad: - return -1; -} -static int __Pyx_MatchKeywordArg_nostr( - PyObject *key, - PyObject ** const argnames[], - PyObject ** const *first_kw_arg, - size_t *index_found, - const char *function_name) -{ - PyObject ** const *name; - if (unlikely(!PyUnicode_Check(key))) goto invalid_keyword_type; - name = first_kw_arg; - while (*name) { - int cmp = PyObject_RichCompareBool(**name, key, Py_EQ); - if (cmp == 1) { - *index_found = (size_t) (name - argnames); - return 1; - } - if (unlikely(cmp == -1)) goto bad; - name++; - } - name = argnames; - while (name != first_kw_arg) { - int cmp = PyObject_RichCompareBool(**name, key, Py_EQ); - if (unlikely(cmp != 0)) { - if (cmp == 1) goto arg_passed_twice; - else goto bad; - } - name++; - } - return 0; -arg_passed_twice: - __Pyx_RaiseDoubleKeywordsError(function_name, key); - goto bad; -invalid_keyword_type: - PyErr_Format(PyExc_TypeError, - "%.200s() keywords must be strings", function_name); - goto bad; -bad: - return -1; -} -static CYTHON_INLINE int __Pyx_MatchKeywordArg( - PyObject *key, - PyObject ** const argnames[], - PyObject ** const *first_kw_arg, - size_t *index_found, - const char *function_name) -{ - return likely(PyUnicode_CheckExact(key)) ? - __Pyx_MatchKeywordArg_str(key, argnames, first_kw_arg, index_found, function_name) : - __Pyx_MatchKeywordArg_nostr(key, argnames, first_kw_arg, index_found, function_name); -} -static void __Pyx_RejectUnknownKeyword( - PyObject *kwds, - PyObject ** const argnames[], - PyObject ** const *first_kw_arg, - const char *function_name) -{ - #if CYTHON_AVOID_BORROWED_REFS - PyObject *pos = NULL; - #else - Py_ssize_t pos = 0; - #endif - PyObject *key = NULL; - __Pyx_BEGIN_CRITICAL_SECTION(kwds); - while ( - #if CYTHON_AVOID_BORROWED_REFS - __Pyx_PyDict_NextRef(kwds, &pos, &key, NULL) - #else - PyDict_Next(kwds, &pos, &key, NULL) - #endif - ) { - PyObject** const *name = first_kw_arg; - while (*name && (**name != key)) name++; - if (!*name) { - size_t index_found = 0; - int cmp = __Pyx_MatchKeywordArg(key, argnames, first_kw_arg, &index_found, function_name); - if (cmp != 1) { - if (cmp == 0) { - PyErr_Format(PyExc_TypeError, - "%s() got an unexpected keyword argument '%U'", - function_name, key); - } - #if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(key); - #endif - break; - } - } - #if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(key); - #endif - } - __Pyx_END_CRITICAL_SECTION(); - #if CYTHON_AVOID_BORROWED_REFS - Py_XDECREF(pos); - #endif - assert(PyErr_Occurred()); -} -static int __Pyx_ParseKeywordDict( - PyObject *kwds, - PyObject ** const argnames[], - PyObject *values[], - Py_ssize_t num_pos_args, - Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs) -{ - PyObject** const *name; - PyObject** const *first_kw_arg = argnames + num_pos_args; - Py_ssize_t extracted = 0; -#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments) - if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return -1; -#endif - name = first_kw_arg; - while (*name && num_kwargs > extracted) { - PyObject * key = **name; - PyObject *value; - int found = 0; - #if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - found = PyDict_GetItemRef(kwds, key, &value); - #else - value = PyDict_GetItemWithError(kwds, key); - if (value) { - Py_INCREF(value); - found = 1; - } else { - if (unlikely(PyErr_Occurred())) goto bad; - } - #endif - if (found) { - if (unlikely(found < 0)) goto bad; - values[name-argnames] = value; - extracted++; - } - name++; - } - if (num_kwargs > extracted) { - if (ignore_unknown_kwargs) { - if (unlikely(__Pyx_ValidateDuplicatePosArgs(kwds, argnames, first_kw_arg, function_name) == -1)) - goto bad; - } else { - __Pyx_RejectUnknownKeyword(kwds, argnames, first_kw_arg, function_name); - goto bad; - } - } - return 0; -bad: - return -1; -} -static int __Pyx_ParseKeywordDictToDict( - PyObject *kwds, - PyObject ** const argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - const char* function_name) -{ - PyObject** const *name; - PyObject** const *first_kw_arg = argnames + num_pos_args; - Py_ssize_t len; -#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments) - if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return -1; -#endif - if (PyDict_Update(kwds2, kwds) < 0) goto bad; - name = first_kw_arg; - while (*name) { - PyObject *key = **name; - PyObject *value; -#if !CYTHON_COMPILING_IN_LIMITED_API && (PY_VERSION_HEX >= 0x030d00A2 || defined(PyDict_Pop)) - int found = PyDict_Pop(kwds2, key, &value); - if (found) { - if (unlikely(found < 0)) goto bad; - values[name-argnames] = value; - } -#elif __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - int found = PyDict_GetItemRef(kwds2, key, &value); - if (found) { - if (unlikely(found < 0)) goto bad; - values[name-argnames] = value; - if (unlikely(PyDict_DelItem(kwds2, key) < 0)) goto bad; - } -#else - #if CYTHON_COMPILING_IN_CPYTHON - value = _PyDict_Pop(kwds2, key, kwds2); - #else - value = __Pyx_CallUnboundCMethod2(&__pyx_mstate_global->__pyx_umethod_PyDict_Type_pop, kwds2, key, kwds2); - #endif - if (value == kwds2) { - Py_DECREF(value); - } else { - if (unlikely(!value)) goto bad; - values[name-argnames] = value; - } -#endif - name++; - } - len = PyDict_Size(kwds2); - if (len > 0) { - return __Pyx_ValidateDuplicatePosArgs(kwds, argnames, first_kw_arg, function_name); - } else if (unlikely(len == -1)) { - goto bad; - } - return 0; -bad: - return -1; -} -static int __Pyx_ParseKeywordsTuple( - PyObject *kwds, - PyObject * const *kwvalues, - PyObject ** const argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs) -{ - PyObject *key = NULL; - PyObject** const * name; - PyObject** const *first_kw_arg = argnames + num_pos_args; - for (Py_ssize_t pos = 0; pos < num_kwargs; pos++) { -#if CYTHON_AVOID_BORROWED_REFS - key = __Pyx_PySequence_ITEM(kwds, pos); -#else - key = __Pyx_PyTuple_GET_ITEM(kwds, pos); -#endif -#if !CYTHON_ASSUME_SAFE_MACROS - if (unlikely(!key)) goto bad; -#endif - name = first_kw_arg; - while (*name && (**name != key)) name++; - if (*name) { - PyObject *value = kwvalues[pos]; - values[name-argnames] = __Pyx_NewRef(value); - } else { - size_t index_found = 0; - int cmp = __Pyx_MatchKeywordArg(key, argnames, first_kw_arg, &index_found, function_name); - if (cmp == 1) { - PyObject *value = kwvalues[pos]; - values[index_found] = __Pyx_NewRef(value); - } else { - if (unlikely(cmp == -1)) goto bad; - if (kwds2) { - PyObject *value = kwvalues[pos]; - if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; - } else if (!ignore_unknown_kwargs) { - goto invalid_keyword; - } - } - } - #if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(key); - key = NULL; - #endif - } - return 0; -invalid_keyword: - PyErr_Format(PyExc_TypeError, - "%s() got an unexpected keyword argument '%U'", - function_name, key); - goto bad; -bad: - #if CYTHON_AVOID_BORROWED_REFS - Py_XDECREF(key); - #endif - return -1; -} - -/* ParseKeywords */ -static int __Pyx_ParseKeywords( - PyObject *kwds, - PyObject * const *kwvalues, - PyObject ** const argnames[], - PyObject *kwds2, - PyObject *values[], - Py_ssize_t num_pos_args, - Py_ssize_t num_kwargs, - const char* function_name, - int ignore_unknown_kwargs) -{ - if (CYTHON_METH_FASTCALL && likely(PyTuple_Check(kwds))) - return __Pyx_ParseKeywordsTuple(kwds, kwvalues, argnames, kwds2, values, num_pos_args, num_kwargs, function_name, ignore_unknown_kwargs); - else if (kwds2) - return __Pyx_ParseKeywordDictToDict(kwds, argnames, kwds2, values, num_pos_args, function_name); - else - return __Pyx_ParseKeywordDict(kwds, argnames, values, num_pos_args, num_kwargs, function_name, ignore_unknown_kwargs); -} - -/* RaiseArgTupleInvalid */ -static void __Pyx_RaiseArgtupleInvalid( - const char* func_name, - int exact, - Py_ssize_t num_min, - Py_ssize_t num_max, - Py_ssize_t num_found) -{ - Py_ssize_t num_expected; - const char *more_or_less; - if (num_found < num_min) { - num_expected = num_min; - more_or_less = "at least"; - } else { - num_expected = num_max; - more_or_less = "at most"; - } - if (exact) { - more_or_less = "exactly"; - } - PyErr_Format(PyExc_TypeError, - "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", - func_name, more_or_less, num_expected, - (num_expected == 1) ? "" : "s", num_found); -} - -/* ArgTypeTestFunc (used by ArgTypeTest) */ -static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) -{ - __Pyx_TypeName type_name; - __Pyx_TypeName obj_type_name; - PyObject *extra_info = __pyx_mstate_global->__pyx_empty_unicode; - int from_annotation_subclass = 0; - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - else if (!exact) { - if (likely(__Pyx_TypeCheck(obj, type))) return 1; - } else if (exact == 2) { - if (__Pyx_TypeCheck(obj, type)) { - from_annotation_subclass = 1; - extra_info = __pyx_mstate_global->__pyx_kp_u_Note_that_Cython_is_deliberately; - } - } - type_name = __Pyx_PyType_GetFullyQualifiedName(type); - obj_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(obj)); - PyErr_Format(PyExc_TypeError, - "Argument '%.200s' has incorrect type (expected " __Pyx_FMT_TYPENAME - ", got " __Pyx_FMT_TYPENAME ")" -#if __PYX_LIMITED_VERSION_HEX < 0x030C0000 - "%s%U" -#endif - , name, type_name, obj_type_name -#if __PYX_LIMITED_VERSION_HEX < 0x030C0000 - , (from_annotation_subclass ? ". " : ""), extra_info -#endif - ); -#if __PYX_LIMITED_VERSION_HEX >= 0x030C0000 - if (exact == 2 && from_annotation_subclass) { - PyObject *res; - PyObject *vargs[2]; - vargs[0] = PyErr_GetRaisedException(); - vargs[1] = extra_info; - res = PyObject_VectorcallMethod(__pyx_mstate_global->__pyx_kp_u_add_note, vargs, 2, NULL); - Py_XDECREF(res); - PyErr_SetRaisedException(vargs[0]); - } -#endif - __Pyx_DECREF_TypeName(type_name); - __Pyx_DECREF_TypeName(obj_type_name); - return 0; -} - -/* PyErrExceptionMatches (used by PyObjectGetAttrStrNoError) */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(tuple); - for (i=0; i= 0x030C00A6 - PyObject *current_exception = tstate->current_exception; - if (unlikely(!current_exception)) return 0; - exc_type = (PyObject*) Py_TYPE(current_exception); - if (exc_type == err) return 1; -#else - exc_type = tstate->curexc_type; - if (exc_type == err) return 1; - if (unlikely(!exc_type)) return 0; -#endif - #if CYTHON_AVOID_BORROWED_REFS - Py_INCREF(exc_type); - #endif - if (unlikely(PyTuple_Check(err))) { - result = __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); - } else { - result = __Pyx_PyErr_GivenExceptionMatches(exc_type, err); - } - #if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(exc_type); - #endif - return result; -} -#endif - -/* PyErrFetchRestore (used by PyObjectGetAttrStrNoError) */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { -#if PY_VERSION_HEX >= 0x030C00A6 - PyObject *tmp_value; - assert(type == NULL || (value != NULL && type == (PyObject*) Py_TYPE(value))); - if (value) { - #if CYTHON_COMPILING_IN_CPYTHON - if (unlikely(((PyBaseExceptionObject*) value)->traceback != tb)) - #endif - PyException_SetTraceback(value, tb); - } - tmp_value = tstate->current_exception; - tstate->current_exception = value; - Py_XDECREF(tmp_value); - Py_XDECREF(type); - Py_XDECREF(tb); -#else - PyObject *tmp_type, *tmp_value, *tmp_tb; - tmp_type = tstate->curexc_type; - tmp_value = tstate->curexc_value; - tmp_tb = tstate->curexc_traceback; - tstate->curexc_type = type; - tstate->curexc_value = value; - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#endif -} -static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { -#if PY_VERSION_HEX >= 0x030C00A6 - PyObject* exc_value; - exc_value = tstate->current_exception; - tstate->current_exception = 0; - *value = exc_value; - *type = NULL; - *tb = NULL; - if (exc_value) { - *type = (PyObject*) Py_TYPE(exc_value); - Py_INCREF(*type); - #if CYTHON_COMPILING_IN_CPYTHON - *tb = ((PyBaseExceptionObject*) exc_value)->traceback; - Py_XINCREF(*tb); - #else - *tb = PyException_GetTraceback(exc_value); - #endif - } -#else - *type = tstate->curexc_type; - *value = tstate->curexc_value; - *tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; -#endif -} -#endif - -/* PyObjectGetAttrStrNoError (used by GetBuiltinName) */ -#if __PYX_LIMITED_VERSION_HEX < 0x030d0000 -static void __Pyx_PyObject_GetAttrStr_ClearAttributeError(void) { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (likely(__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - __Pyx_PyErr_Clear(); -} -#endif -static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStrNoError(PyObject* obj, PyObject* attr_name) { - PyObject *result; -#if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - (void) PyObject_GetOptionalAttr(obj, attr_name, &result); - return result; -#else -#if CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_TYPE_SLOTS - PyTypeObject* tp = Py_TYPE(obj); - if (likely(tp->tp_getattro == PyObject_GenericGetAttr)) { - return _PyObject_GenericGetAttrWithDict(obj, attr_name, NULL, 1); - } -#endif - result = __Pyx_PyObject_GetAttrStr(obj, attr_name); - if (unlikely(!result)) { - __Pyx_PyObject_GetAttrStr_ClearAttributeError(); - } - return result; -#endif -} - -/* GetBuiltinName */ -static PyObject *__Pyx_GetBuiltinName(PyObject *name) { - PyObject* result = __Pyx_PyObject_GetAttrStrNoError(__pyx_mstate_global->__pyx_b, name); - if (unlikely(!result) && !PyErr_Occurred()) { - PyErr_Format(PyExc_NameError, - "name '%U' is not defined", name); - } - return result; -} - -/* RaiseException */ -static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { - PyObject* owned_instance = NULL; - if (tb == Py_None) { - tb = 0; - } else if (tb && !PyTraceBack_Check(tb)) { - PyErr_SetString(PyExc_TypeError, - "raise: arg 3 must be a traceback or None"); - goto bad; - } - if (value == Py_None) - value = 0; - if (PyExceptionInstance_Check(type)) { - if (value) { - PyErr_SetString(PyExc_TypeError, - "instance exception may not have a separate value"); - goto bad; - } - value = type; - type = (PyObject*) Py_TYPE(value); - } else if (PyExceptionClass_Check(type)) { - PyObject *instance_class = NULL; - if (value && PyExceptionInstance_Check(value)) { - instance_class = (PyObject*) Py_TYPE(value); - if (instance_class != type) { - int is_subclass = PyObject_IsSubclass(instance_class, type); - if (!is_subclass) { - instance_class = NULL; - } else if (unlikely(is_subclass == -1)) { - goto bad; - } else { - type = instance_class; - } - } - } - if (!instance_class) { - PyObject *args; - if (!value) - args = PyTuple_New(0); - else if (PyTuple_Check(value)) { - Py_INCREF(value); - args = value; - } else - args = PyTuple_Pack(1, value); - if (!args) - goto bad; - owned_instance = PyObject_Call(type, args, NULL); - Py_DECREF(args); - if (!owned_instance) - goto bad; - value = owned_instance; - if (!PyExceptionInstance_Check(value)) { - PyErr_Format(PyExc_TypeError, - "calling %R should have returned an instance of " - "BaseException, not %R", - type, Py_TYPE(value)); - goto bad; - } - } - } else { - PyErr_SetString(PyExc_TypeError, - "raise: exception class must be a subclass of BaseException"); - goto bad; - } - if (cause) { - PyObject *fixed_cause; - if (cause == Py_None) { - fixed_cause = NULL; - } else if (PyExceptionClass_Check(cause)) { - fixed_cause = PyObject_CallObject(cause, NULL); - if (fixed_cause == NULL) - goto bad; - } else if (PyExceptionInstance_Check(cause)) { - fixed_cause = cause; - Py_INCREF(fixed_cause); - } else { - PyErr_SetString(PyExc_TypeError, - "exception causes must derive from " - "BaseException"); - goto bad; - } - PyException_SetCause(value, fixed_cause); - } - PyErr_SetObject(type, value); - if (tb) { -#if PY_VERSION_HEX >= 0x030C00A6 - PyException_SetTraceback(value, tb); -#elif CYTHON_FAST_THREAD_STATE - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject* tmp_tb = tstate->curexc_traceback; - if (tb != tmp_tb) { - Py_INCREF(tb); - tstate->curexc_traceback = tb; - Py_XDECREF(tmp_tb); - } -#else - PyObject *tmp_type, *tmp_value, *tmp_tb; - PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); - Py_INCREF(tb); - PyErr_Restore(tmp_type, tmp_value, tb); - Py_XDECREF(tmp_tb); -#endif - } -bad: - Py_XDECREF(owned_instance); - return; -} - -/* PyObjectFastCallMethod */ -#if !CYTHON_VECTORCALL || PY_VERSION_HEX < 0x03090000 -static PyObject *__Pyx_PyObject_FastCallMethod(PyObject *name, PyObject *const *args, size_t nargsf) { - PyObject *result; - PyObject *attr = PyObject_GetAttr(args[0], name); - if (unlikely(!attr)) - return NULL; - result = __Pyx_PyObject_FastCall(attr, args+1, nargsf - 1); - Py_DECREF(attr); - return result; -} -#endif - -/* RaiseUnexpectedTypeError */ -static int -__Pyx_RaiseUnexpectedTypeError(const char *expected, PyObject *obj) -{ - __Pyx_TypeName obj_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(obj)); - PyErr_Format(PyExc_TypeError, "Expected %s, got " __Pyx_FMT_TYPENAME, - expected, obj_type_name); - __Pyx_DECREF_TypeName(obj_type_name); - return 0; -} - -/* CIntToDigits (used by CIntToPyUnicode) */ -static const char DIGIT_PAIRS_10[2*10*10+1] = { - "00010203040506070809" - "10111213141516171819" - "20212223242526272829" - "30313233343536373839" - "40414243444546474849" - "50515253545556575859" - "60616263646566676869" - "70717273747576777879" - "80818283848586878889" - "90919293949596979899" -}; -static const char DIGIT_PAIRS_8[2*8*8+1] = { - "0001020304050607" - "1011121314151617" - "2021222324252627" - "3031323334353637" - "4041424344454647" - "5051525354555657" - "6061626364656667" - "7071727374757677" -}; -static const char DIGITS_HEX[2*16+1] = { - "0123456789abcdef" - "0123456789ABCDEF" -}; - -/* BuildPyUnicode (used by COrdinalToPyUnicode) */ -static PyObject* __Pyx_PyUnicode_BuildFromAscii(Py_ssize_t ulength, const char* chars, int clength, - int prepend_sign, char padding_char) { - PyObject *uval; - Py_ssize_t uoffset = ulength - clength; -#if CYTHON_USE_UNICODE_INTERNALS - Py_ssize_t i; - void *udata; - uval = PyUnicode_New(ulength, 127); - if (unlikely(!uval)) return NULL; - udata = PyUnicode_DATA(uval); - if (uoffset > 0) { - i = 0; - if (prepend_sign) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, 0, '-'); - i++; - } - for (; i < uoffset; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, i, padding_char); - } - } - for (i=0; i < clength; i++) { - __Pyx_PyUnicode_WRITE(PyUnicode_1BYTE_KIND, udata, uoffset+i, chars[i]); - } -#else - { - PyObject *sign = NULL, *padding = NULL; - uval = NULL; - if (uoffset > 0) { - prepend_sign = !!prepend_sign; - if (uoffset > prepend_sign) { - padding = PyUnicode_FromOrdinal(padding_char); - if (likely(padding) && uoffset > prepend_sign + 1) { - PyObject *tmp = PySequence_Repeat(padding, uoffset - prepend_sign); - Py_DECREF(padding); - padding = tmp; - } - if (unlikely(!padding)) goto done_or_error; - } - if (prepend_sign) { - sign = PyUnicode_FromOrdinal('-'); - if (unlikely(!sign)) goto done_or_error; - } - } - uval = PyUnicode_DecodeASCII(chars, clength, NULL); - if (likely(uval) && padding) { - PyObject *tmp = PyUnicode_Concat(padding, uval); - Py_DECREF(uval); - uval = tmp; - } - if (likely(uval) && sign) { - PyObject *tmp = PyUnicode_Concat(sign, uval); - Py_DECREF(uval); - uval = tmp; - } -done_or_error: - Py_XDECREF(padding); - Py_XDECREF(sign); - } -#endif - return uval; -} - -/* COrdinalToPyUnicode (used by CIntToPyUnicode) */ -static CYTHON_INLINE int __Pyx_CheckUnicodeValue(int value) { - return value <= 1114111; -} -static PyObject* __Pyx_PyUnicode_FromOrdinal_Padded(int value, Py_ssize_t ulength, char padding_char) { - Py_ssize_t padding_length = ulength - 1; - if (likely((padding_length <= 250) && (value < 0xD800 || value > 0xDFFF))) { - char chars[256]; - if (value <= 255) { - memset(chars, padding_char, (size_t) padding_length); - chars[ulength-1] = (char) value; - return PyUnicode_DecodeLatin1(chars, ulength, NULL); - } - char *cpos = chars + sizeof(chars); - if (value < 0x800) { - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0xc0 | (value & 0x1f)); - } else if (value < 0x10000) { - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0xe0 | (value & 0x0f)); - } else { - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0x80 | (value & 0x3f)); - value >>= 6; - *--cpos = (char) (0xf0 | (value & 0x07)); - } - cpos -= padding_length; - memset(cpos, padding_char, (size_t) padding_length); - return PyUnicode_DecodeUTF8(cpos, chars + sizeof(chars) - cpos, NULL); - } - if (value <= 127 && CYTHON_USE_UNICODE_INTERNALS) { - const char chars[1] = {(char) value}; - return __Pyx_PyUnicode_BuildFromAscii(ulength, chars, 1, 0, padding_char); - } - { - PyObject *uchar, *padding_uchar, *padding, *result; - padding_uchar = PyUnicode_FromOrdinal(padding_char); - if (unlikely(!padding_uchar)) return NULL; - padding = PySequence_Repeat(padding_uchar, padding_length); - Py_DECREF(padding_uchar); - if (unlikely(!padding)) return NULL; - uchar = PyUnicode_FromOrdinal(value); - if (unlikely(!uchar)) { - Py_DECREF(padding); - return NULL; - } - result = PyUnicode_Concat(padding, uchar); - Py_DECREF(padding); - Py_DECREF(uchar); - return result; - } -} - -/* CIntToPyUnicode */ -static CYTHON_INLINE PyObject* __Pyx_uchar___Pyx_PyUnicode_From_int(int value, Py_ssize_t width, char padding_char) { -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const int neg_one = (int) -1, const_zero = (int) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!(is_unsigned || value == 0 || value > 0) || - !(sizeof(value) <= 2 || value & ~ (int) 0x01fffff || __Pyx_CheckUnicodeValue((int) value)))) { - PyErr_SetString(PyExc_OverflowError, "%c arg not in range(0x110000)"); - return NULL; - } - if (width <= 1) { - return PyUnicode_FromOrdinal((int) value); - } - return __Pyx_PyUnicode_FromOrdinal_Padded((int) value, width, padding_char); -} -static CYTHON_INLINE PyObject* __Pyx____Pyx_PyUnicode_From_int(int value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(int)*3+2]; - char *dpos, *end = digits + sizeof(int)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - int remaining; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const int neg_one = (int) -1, const_zero = (int) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (int) (remaining / (8*8)); - dpos -= 2; - memcpy(dpos, DIGIT_PAIRS_8 + digit_pos * 2, 2); - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (int) (remaining / (10*10)); - dpos -= 2; - memcpy(dpos, DIGIT_PAIRS_10 + digit_pos * 2, 2); - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (int) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - assert(!last_one_off || *dpos == '0'); - dpos += last_one_off; - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* CIntToPyUnicode */ -static CYTHON_INLINE PyObject* __Pyx_uchar___Pyx_PyUnicode_From_Py_ssize_t(Py_ssize_t value, Py_ssize_t width, char padding_char) { -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const Py_ssize_t neg_one = (Py_ssize_t) -1, const_zero = (Py_ssize_t) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!(is_unsigned || value == 0 || value > 0) || - !(sizeof(value) <= 2 || value & ~ (Py_ssize_t) 0x01fffff || __Pyx_CheckUnicodeValue((int) value)))) { - PyErr_SetString(PyExc_OverflowError, "%c arg not in range(0x110000)"); - return NULL; - } - if (width <= 1) { - return PyUnicode_FromOrdinal((int) value); - } - return __Pyx_PyUnicode_FromOrdinal_Padded((int) value, width, padding_char); -} -static CYTHON_INLINE PyObject* __Pyx____Pyx_PyUnicode_From_Py_ssize_t(Py_ssize_t value, Py_ssize_t width, char padding_char, char format_char) { - char digits[sizeof(Py_ssize_t)*3+2]; - char *dpos, *end = digits + sizeof(Py_ssize_t)*3+2; - const char *hex_digits = DIGITS_HEX; - Py_ssize_t length, ulength; - int prepend_sign, last_one_off; - Py_ssize_t remaining; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const Py_ssize_t neg_one = (Py_ssize_t) -1, const_zero = (Py_ssize_t) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (format_char == 'X') { - hex_digits += 16; - format_char = 'x'; - } - remaining = value; - last_one_off = 0; - dpos = end; - do { - int digit_pos; - switch (format_char) { - case 'o': - digit_pos = abs((int)(remaining % (8*8))); - remaining = (Py_ssize_t) (remaining / (8*8)); - dpos -= 2; - memcpy(dpos, DIGIT_PAIRS_8 + digit_pos * 2, 2); - last_one_off = (digit_pos < 8); - break; - case 'd': - digit_pos = abs((int)(remaining % (10*10))); - remaining = (Py_ssize_t) (remaining / (10*10)); - dpos -= 2; - memcpy(dpos, DIGIT_PAIRS_10 + digit_pos * 2, 2); - last_one_off = (digit_pos < 10); - break; - case 'x': - *(--dpos) = hex_digits[abs((int)(remaining % 16))]; - remaining = (Py_ssize_t) (remaining / 16); - break; - default: - assert(0); - break; - } - } while (unlikely(remaining != 0)); - assert(!last_one_off || *dpos == '0'); - dpos += last_one_off; - length = end - dpos; - ulength = length; - prepend_sign = 0; - if (!is_unsigned && value <= neg_one) { - if (padding_char == ' ' || width <= length + 1) { - *(--dpos) = '-'; - ++length; - } else { - prepend_sign = 1; - } - ++ulength; - } - if (width > ulength) { - ulength = width; - } - if (ulength == 1) { - return PyUnicode_FromOrdinal(*dpos); - } - return __Pyx_PyUnicode_BuildFromAscii(ulength, dpos, (int) length, prepend_sign, padding_char); -} - -/* JoinPyUnicode */ -static PyObject* __Pyx_PyUnicode_Join(PyObject** values, Py_ssize_t value_count, Py_ssize_t result_ulength, - Py_UCS4 max_char) { -#if CYTHON_USE_UNICODE_INTERNALS && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - PyObject *result_uval; - int result_ukind, kind_shift; - Py_ssize_t i, char_pos; - void *result_udata; - if (max_char > 1114111) max_char = 1114111; - result_uval = PyUnicode_New(result_ulength, max_char); - if (unlikely(!result_uval)) return NULL; - result_ukind = (max_char <= 255) ? PyUnicode_1BYTE_KIND : (max_char <= 65535) ? PyUnicode_2BYTE_KIND : PyUnicode_4BYTE_KIND; - kind_shift = (result_ukind == PyUnicode_4BYTE_KIND) ? 2 : result_ukind - 1; - result_udata = PyUnicode_DATA(result_uval); - assert(kind_shift == 2 || kind_shift == 1 || kind_shift == 0); - if (unlikely((PY_SSIZE_T_MAX >> kind_shift) - result_ulength < 0)) - goto overflow; - char_pos = 0; - for (i=0; i < value_count; i++) { - int ukind; - Py_ssize_t ulength; - void *udata; - PyObject *uval = values[i]; - #if !CYTHON_COMPILING_IN_LIMITED_API - if (__Pyx_PyUnicode_READY(uval) == (-1)) - goto bad; - #endif - ulength = __Pyx_PyUnicode_GET_LENGTH(uval); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(ulength < 0)) goto bad; - #endif - if (unlikely(!ulength)) - continue; - if (unlikely((PY_SSIZE_T_MAX >> kind_shift) - ulength < char_pos)) - goto overflow; - ukind = __Pyx_PyUnicode_KIND(uval); - udata = __Pyx_PyUnicode_DATA(uval); - if (ukind == result_ukind) { - memcpy((char *)result_udata + (char_pos << kind_shift), udata, (size_t) (ulength << kind_shift)); - } else { - #if PY_VERSION_HEX >= 0x030d0000 - if (unlikely(PyUnicode_CopyCharacters(result_uval, char_pos, uval, 0, ulength) < 0)) goto bad; - #elif CYTHON_COMPILING_IN_CPYTHON || defined(_PyUnicode_FastCopyCharacters) - _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength); - #else - Py_ssize_t j; - for (j=0; j < ulength; j++) { - Py_UCS4 uchar = __Pyx_PyUnicode_READ(ukind, udata, j); - __Pyx_PyUnicode_WRITE(result_ukind, result_udata, char_pos+j, uchar); - } - #endif - } - char_pos += ulength; - } - return result_uval; -overflow: - PyErr_SetString(PyExc_OverflowError, "join() result is too long for a Python string"); -bad: - Py_DECREF(result_uval); - return NULL; -#else - Py_ssize_t i; - PyObject *result = NULL; - PyObject *value_tuple = PyTuple_New(value_count); - if (unlikely(!value_tuple)) return NULL; - CYTHON_UNUSED_VAR(max_char); - CYTHON_UNUSED_VAR(result_ulength); - for (i=0; i__pyx_empty_unicode, value_tuple); -bad: - Py_DECREF(value_tuple); - return result; -#endif -} - -/* GetAttr */ -static CYTHON_INLINE PyObject *__Pyx_GetAttr(PyObject *o, PyObject *n) { -#if CYTHON_USE_TYPE_SLOTS - if (likely(PyUnicode_Check(n))) - return __Pyx_PyObject_GetAttrStr(o, n); -#endif - return PyObject_GetAttr(o, n); -} - -/* GetItemInt */ -static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { - PyObject *r; - if (unlikely(!j)) return NULL; - r = PyObject_GetItem(o, j); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck, int unsafe_shared) { - CYTHON_MAYBE_UNUSED_VAR(unsafe_shared); -#if CYTHON_ASSUME_SAFE_SIZE - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyList_GET_SIZE(o); - } - if ((CYTHON_AVOID_BORROWED_REFS || CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS || !CYTHON_ASSUME_SAFE_MACROS)) { - return __Pyx_PyList_GetItemRefFast(o, wrapped_i, unsafe_shared); - } else - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyList_GET_SIZE(o)))) { - return __Pyx_NewRef(PyList_GET_ITEM(o, wrapped_i)); - } - return __Pyx_GetItemInt_Generic(o, PyLong_FromSsize_t(i)); -#else - (void)wraparound; - (void)boundscheck; - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i, - int wraparound, int boundscheck, int unsafe_shared) { - CYTHON_MAYBE_UNUSED_VAR(unsafe_shared); -#if CYTHON_ASSUME_SAFE_SIZE && CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - Py_ssize_t wrapped_i = i; - if (wraparound & unlikely(i < 0)) { - wrapped_i += PyTuple_GET_SIZE(o); - } - if ((!boundscheck) || likely(__Pyx_is_valid_index(wrapped_i, PyTuple_GET_SIZE(o)))) { - return __Pyx_NewRef(PyTuple_GET_ITEM(o, wrapped_i)); - } - return __Pyx_GetItemInt_Generic(o, PyLong_FromSsize_t(i)); -#else - (void)wraparound; - (void)boundscheck; - return PySequence_GetItem(o, i); -#endif -} -static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, - int wraparound, int boundscheck, int unsafe_shared) { - CYTHON_MAYBE_UNUSED_VAR(unsafe_shared); -#if CYTHON_ASSUME_SAFE_MACROS && CYTHON_ASSUME_SAFE_SIZE - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); - if ((CYTHON_AVOID_BORROWED_REFS || CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS)) { - return __Pyx_PyList_GetItemRefFast(o, n, unsafe_shared); - } else if ((!boundscheck) || (likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o))))) { - return __Pyx_NewRef(PyList_GET_ITEM(o, n)); - } - } else - #if !CYTHON_AVOID_BORROWED_REFS - if (PyTuple_CheckExact(o)) { - Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); - if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyTuple_GET_SIZE(o)))) { - return __Pyx_NewRef(PyTuple_GET_ITEM(o, n)); - } - } else - #endif -#endif -#if CYTHON_USE_TYPE_SLOTS && !CYTHON_COMPILING_IN_PYPY - { - PyMappingMethods *mm = Py_TYPE(o)->tp_as_mapping; - PySequenceMethods *sm = Py_TYPE(o)->tp_as_sequence; - if (!is_list && mm && mm->mp_subscript) { - PyObject *r, *key = PyLong_FromSsize_t(i); - if (unlikely(!key)) return NULL; - r = mm->mp_subscript(o, key); - Py_DECREF(key); - return r; - } - if (is_list || likely(sm && sm->sq_item)) { - if (wraparound && unlikely(i < 0) && likely(sm->sq_length)) { - Py_ssize_t l = sm->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return NULL; - PyErr_Clear(); - } - } - return sm->sq_item(o, i); - } - } -#else - if (is_list || !PyMapping_Check(o)) { - return PySequence_GetItem(o, i); - } -#endif - (void)wraparound; - (void)boundscheck; - return __Pyx_GetItemInt_Generic(o, PyLong_FromSsize_t(i)); -} - -/* ObjectGetItem */ -#if CYTHON_USE_TYPE_SLOTS -static PyObject *__Pyx_PyObject_GetIndex(PyObject *obj, PyObject *index) { - PyObject *runerr = NULL; - Py_ssize_t key_value; - key_value = __Pyx_PyIndex_AsSsize_t(index); - if (likely(key_value != -1 || !(runerr = PyErr_Occurred()))) { - return __Pyx_GetItemInt_Fast(obj, key_value, 0, 1, 1, 1); - } - if (PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { - __Pyx_TypeName index_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(index)); - PyErr_Clear(); - PyErr_Format(PyExc_IndexError, - "cannot fit '" __Pyx_FMT_TYPENAME "' into an index-sized integer", index_type_name); - __Pyx_DECREF_TypeName(index_type_name); - } - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem_Slow(PyObject *obj, PyObject *key) { - __Pyx_TypeName obj_type_name; - if (likely(PyType_Check(obj))) { - PyObject *meth = __Pyx_PyObject_GetAttrStrNoError(obj, __pyx_mstate_global->__pyx_n_u_class_getitem); - if (!meth) { - PyErr_Clear(); - } else { - PyObject *result = __Pyx_PyObject_CallOneArg(meth, key); - Py_DECREF(meth); - return result; - } - } - obj_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(obj)); - PyErr_Format(PyExc_TypeError, - "'" __Pyx_FMT_TYPENAME "' object is not subscriptable", obj_type_name); - __Pyx_DECREF_TypeName(obj_type_name); - return NULL; -} -static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key) { - PyTypeObject *tp = Py_TYPE(obj); - PyMappingMethods *mm = tp->tp_as_mapping; - PySequenceMethods *sm = tp->tp_as_sequence; - if (likely(mm && mm->mp_subscript)) { - return mm->mp_subscript(obj, key); - } - if (likely(sm && sm->sq_item)) { - return __Pyx_PyObject_GetIndex(obj, key); - } - return __Pyx_PyObject_GetItem_Slow(obj, key); -} -#endif - -/* RejectKeywords */ -static void __Pyx_RejectKeywords(const char* function_name, PyObject *kwds) { - PyObject *key = NULL; - if (CYTHON_METH_FASTCALL && likely(PyTuple_Check(kwds))) { - key = __Pyx_PySequence_ITEM(kwds, 0); - } else { -#if CYTHON_AVOID_BORROWED_REFS - PyObject *pos = NULL; -#else - Py_ssize_t pos = 0; -#endif -#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments) - if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return; -#endif - __Pyx_PyDict_NextRef(kwds, &pos, &key, NULL); -#if CYTHON_AVOID_BORROWED_REFS - Py_XDECREF(pos); -#endif - } - if (likely(key)) { - PyErr_Format(PyExc_TypeError, - "%s() got an unexpected keyword argument '%U'", - function_name, key); - Py_DECREF(key); - } -} - -/* DivInt[Py_ssize_t] */ -static CYTHON_INLINE Py_ssize_t __Pyx_div_Py_ssize_t(Py_ssize_t a, Py_ssize_t b, int b_is_constant) { - Py_ssize_t q = a / b; - Py_ssize_t r = a - q*b; - Py_ssize_t adapt_python = (b_is_constant ? - ((r != 0) & ((r < 0) ^ (b < 0))) : - ((r != 0) & ((r ^ b) < 0)) - ); - return q - adapt_python; -} - -/* GetAttr3 */ -#if __PYX_LIMITED_VERSION_HEX < 0x030d0000 -static PyObject *__Pyx_GetAttr3Default(PyObject *d) { - __Pyx_PyThreadState_declare - __Pyx_PyThreadState_assign - if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) - return NULL; - __Pyx_PyErr_Clear(); - Py_INCREF(d); - return d; -} -#endif -static CYTHON_INLINE PyObject *__Pyx_GetAttr3(PyObject *o, PyObject *n, PyObject *d) { - PyObject *r; -#if __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - int res = PyObject_GetOptionalAttr(o, n, &r); - return (res != 0) ? r : __Pyx_NewRef(d); -#else - #if CYTHON_USE_TYPE_SLOTS - if (likely(PyUnicode_Check(n))) { - r = __Pyx_PyObject_GetAttrStrNoError(o, n); - if (unlikely(!r) && likely(!PyErr_Occurred())) { - r = __Pyx_NewRef(d); - } - return r; - } - #endif - r = PyObject_GetAttr(o, n); - return (likely(r)) ? r : __Pyx_GetAttr3Default(d); -#endif -} - -/* PyDictVersioning (used by GetModuleGlobalName) */ -#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS -static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; -} -static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { - PyObject **dictptr = NULL; - Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; - if (offset) { -#if CYTHON_COMPILING_IN_CPYTHON - dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); -#else - dictptr = _PyObject_GetDictPtr(obj); -#endif - } - return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; -} -static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { - PyObject *dict = Py_TYPE(obj)->tp_dict; - if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) - return 0; - return obj_dict_version == __Pyx_get_object_dict_version(obj); -} -#endif - -/* GetModuleGlobalName */ -#if CYTHON_USE_DICT_VERSIONS -static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) -#else -static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) -#endif -{ - PyObject *result; -#if CYTHON_COMPILING_IN_LIMITED_API - if (unlikely(!__pyx_m)) { - if (!PyErr_Occurred()) - PyErr_SetNone(PyExc_NameError); - return NULL; - } - result = PyObject_GetAttr(__pyx_m, name); - if (likely(result)) { - return result; - } - PyErr_Clear(); -#elif CYTHON_AVOID_BORROWED_REFS || CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS - if (unlikely(__Pyx_PyDict_GetItemRef(__pyx_mstate_global->__pyx_d, name, &result) == -1)) PyErr_Clear(); - __PYX_UPDATE_DICT_CACHE(__pyx_mstate_global->__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return result; - } -#else - result = _PyDict_GetItem_KnownHash(__pyx_mstate_global->__pyx_d, name, ((PyASCIIObject *) name)->hash); - __PYX_UPDATE_DICT_CACHE(__pyx_mstate_global->__pyx_d, result, *dict_cached_value, *dict_version) - if (likely(result)) { - return __Pyx_NewRef(result); - } - PyErr_Clear(); -#endif - return __Pyx_GetBuiltinName(name); -} - -/* RaiseTooManyValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* RaiseNoneIterError */ -static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); -} - -/* ExtTypeTest */ -static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) { - __Pyx_TypeName obj_type_name; - __Pyx_TypeName type_name; - if (unlikely(!type)) { - PyErr_SetString(PyExc_SystemError, "Missing type object"); - return 0; - } - if (likely(__Pyx_TypeCheck(obj, type))) - return 1; - obj_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(obj)); - type_name = __Pyx_PyType_GetFullyQualifiedName(type); - PyErr_Format(PyExc_TypeError, - "Cannot convert " __Pyx_FMT_TYPENAME " to " __Pyx_FMT_TYPENAME, - obj_type_name, type_name); - __Pyx_DECREF_TypeName(obj_type_name); - __Pyx_DECREF_TypeName(type_name); - return 0; -} - -/* GetTopmostException (used by SaveResetException) */ -#if CYTHON_USE_EXC_INFO_STACK && CYTHON_FAST_THREAD_STATE -static _PyErr_StackItem * -__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) -{ - _PyErr_StackItem *exc_info = tstate->exc_info; - while ((exc_info->exc_value == NULL || exc_info->exc_value == Py_None) && - exc_info->previous_item != NULL) - { - exc_info = exc_info->previous_item; - } - return exc_info; -} -#endif - -/* SaveResetException */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - #if CYTHON_USE_EXC_INFO_STACK && PY_VERSION_HEX >= 0x030B00a4 - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - PyObject *exc_value = exc_info->exc_value; - if (exc_value == NULL || exc_value == Py_None) { - *value = NULL; - *type = NULL; - *tb = NULL; - } else { - *value = exc_value; - Py_INCREF(*value); - *type = (PyObject*) Py_TYPE(exc_value); - Py_INCREF(*type); - *tb = PyException_GetTraceback(exc_value); - } - #elif CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); - *type = exc_info->exc_type; - *value = exc_info->exc_value; - *tb = exc_info->exc_traceback; - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); - #else - *type = tstate->exc_type; - *value = tstate->exc_value; - *tb = tstate->exc_traceback; - Py_XINCREF(*type); - Py_XINCREF(*value); - Py_XINCREF(*tb); - #endif -} -static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { - #if CYTHON_USE_EXC_INFO_STACK && PY_VERSION_HEX >= 0x030B00a4 - _PyErr_StackItem *exc_info = tstate->exc_info; - PyObject *tmp_value = exc_info->exc_value; - exc_info->exc_value = value; - Py_XDECREF(tmp_value); - Py_XDECREF(type); - Py_XDECREF(tb); - #else - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = type; - exc_info->exc_value = value; - exc_info->exc_traceback = tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = type; - tstate->exc_value = value; - tstate->exc_traceback = tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); - #endif -} -#endif - -/* GetException */ -#if CYTHON_FAST_THREAD_STATE -static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) -#else -static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) -#endif -{ - PyObject *local_type = NULL, *local_value, *local_tb = NULL; -#if CYTHON_FAST_THREAD_STATE - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if PY_VERSION_HEX >= 0x030C0000 - local_value = tstate->current_exception; - tstate->current_exception = 0; - #else - local_type = tstate->curexc_type; - local_value = tstate->curexc_value; - local_tb = tstate->curexc_traceback; - tstate->curexc_type = 0; - tstate->curexc_value = 0; - tstate->curexc_traceback = 0; - #endif -#elif __PYX_LIMITED_VERSION_HEX > 0x030C0000 - local_value = PyErr_GetRaisedException(); -#else - PyErr_Fetch(&local_type, &local_value, &local_tb); -#endif -#if __PYX_LIMITED_VERSION_HEX > 0x030C0000 - if (likely(local_value)) { - local_type = (PyObject*) Py_TYPE(local_value); - Py_INCREF(local_type); - local_tb = PyException_GetTraceback(local_value); - } -#else - PyErr_NormalizeException(&local_type, &local_value, &local_tb); -#if CYTHON_FAST_THREAD_STATE - if (unlikely(tstate->curexc_type)) -#else - if (unlikely(PyErr_Occurred())) -#endif - goto bad; - if (local_tb) { - if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) - goto bad; - } -#endif // __PYX_LIMITED_VERSION_HEX > 0x030C0000 - Py_XINCREF(local_tb); - Py_XINCREF(local_type); - Py_XINCREF(local_value); - *type = local_type; - *value = local_value; - *tb = local_tb; -#if CYTHON_FAST_THREAD_STATE - #if CYTHON_USE_EXC_INFO_STACK - { - _PyErr_StackItem *exc_info = tstate->exc_info; - #if PY_VERSION_HEX >= 0x030B00a4 - tmp_value = exc_info->exc_value; - exc_info->exc_value = local_value; - tmp_type = NULL; - tmp_tb = NULL; - Py_XDECREF(local_type); - Py_XDECREF(local_tb); - #else - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = local_type; - exc_info->exc_value = local_value; - exc_info->exc_traceback = local_tb; - #endif - } - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = local_type; - tstate->exc_value = local_value; - tstate->exc_traceback = local_tb; - #endif - Py_XDECREF(tmp_type); - Py_XDECREF(tmp_value); - Py_XDECREF(tmp_tb); -#elif __PYX_LIMITED_VERSION_HEX >= 0x030b0000 - PyErr_SetHandledException(local_value); - Py_XDECREF(local_value); - Py_XDECREF(local_type); - Py_XDECREF(local_tb); -#else - PyErr_SetExcInfo(local_type, local_value, local_tb); -#endif - return 0; -#if __PYX_LIMITED_VERSION_HEX <= 0x030C0000 -bad: - *type = 0; - *value = 0; - *tb = 0; - Py_XDECREF(local_type); - Py_XDECREF(local_value); - Py_XDECREF(local_tb); - return -1; -#endif -} - -/* SwapException */ -#if CYTHON_FAST_THREAD_STATE -static CYTHON_INLINE void __Pyx__ExceptionSwap(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - #if CYTHON_USE_EXC_INFO_STACK && PY_VERSION_HEX >= 0x030B00a4 - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_value = exc_info->exc_value; - exc_info->exc_value = *value; - if (tmp_value == NULL || tmp_value == Py_None) { - Py_XDECREF(tmp_value); - tmp_value = NULL; - tmp_type = NULL; - tmp_tb = NULL; - } else { - tmp_type = (PyObject*) Py_TYPE(tmp_value); - Py_INCREF(tmp_type); - #if CYTHON_COMPILING_IN_CPYTHON - tmp_tb = ((PyBaseExceptionObject*) tmp_value)->traceback; - Py_XINCREF(tmp_tb); - #else - tmp_tb = PyException_GetTraceback(tmp_value); - #endif - } - #elif CYTHON_USE_EXC_INFO_STACK - _PyErr_StackItem *exc_info = tstate->exc_info; - tmp_type = exc_info->exc_type; - tmp_value = exc_info->exc_value; - tmp_tb = exc_info->exc_traceback; - exc_info->exc_type = *type; - exc_info->exc_value = *value; - exc_info->exc_traceback = *tb; - #else - tmp_type = tstate->exc_type; - tmp_value = tstate->exc_value; - tmp_tb = tstate->exc_traceback; - tstate->exc_type = *type; - tstate->exc_value = *value; - tstate->exc_traceback = *tb; - #endif - *type = tmp_type; - *value = tmp_value; - *tb = tmp_tb; -} -#else -static CYTHON_INLINE void __Pyx_ExceptionSwap(PyObject **type, PyObject **value, PyObject **tb) { - PyObject *tmp_type, *tmp_value, *tmp_tb; - PyErr_GetExcInfo(&tmp_type, &tmp_value, &tmp_tb); - PyErr_SetExcInfo(*type, *value, *tb); - *type = tmp_type; - *value = tmp_value; - *tb = tmp_tb; -} -#endif - -/* HasAttr (used by ImportImpl) */ -#if __PYX_LIMITED_VERSION_HEX < 0x030d0000 -static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) { - PyObject *r; - if (unlikely(!PyUnicode_Check(n))) { - PyErr_SetString(PyExc_TypeError, - "hasattr(): attribute name must be string"); - return -1; - } - r = __Pyx_PyObject_GetAttrStrNoError(o, n); - if (!r) { - return (unlikely(PyErr_Occurred())) ? -1 : 0; - } else { - Py_DECREF(r); - return 1; - } -} -#endif - -/* ImportImpl (used by Import) */ -static int __Pyx__Import_GetModule(PyObject *qualname, PyObject **module) { - PyObject *imported_module = PyImport_GetModule(qualname); - if (unlikely(!imported_module)) { - *module = NULL; - if (PyErr_Occurred()) { - return -1; - } - return 0; - } - *module = imported_module; - return 1; -} -static int __Pyx__Import_Lookup(PyObject *qualname, PyObject *const *imported_names, Py_ssize_t len_imported_names, PyObject **module) { - PyObject *imported_module; - PyObject *top_level_package_name; - Py_ssize_t i; - int status, module_found; - Py_ssize_t dot_index; - module_found = __Pyx__Import_GetModule(qualname, &imported_module); - if (unlikely(!module_found || module_found == -1)) { - *module = NULL; - return module_found; - } - if (imported_names) { - for (i = 0; i < len_imported_names; i++) { - PyObject *imported_name = imported_names[i]; -#if __PYX_LIMITED_VERSION_HEX < 0x030d0000 - int has_imported_attribute = PyObject_HasAttr(imported_module, imported_name); -#else - int has_imported_attribute = PyObject_HasAttrWithError(imported_module, imported_name); - if (unlikely(has_imported_attribute == -1)) goto error; -#endif - if (!has_imported_attribute) { - goto not_found; - } - } - *module = imported_module; - return 1; - } - dot_index = PyUnicode_FindChar(qualname, '.', 0, PY_SSIZE_T_MAX, 1); - if (dot_index == -1) { - *module = imported_module; - return 1; - } - if (unlikely(dot_index == -2)) goto error; - top_level_package_name = PyUnicode_Substring(qualname, 0, dot_index); - if (unlikely(!top_level_package_name)) goto error; - Py_DECREF(imported_module); - status = __Pyx__Import_GetModule(top_level_package_name, module); - Py_DECREF(top_level_package_name); - return status; -error: - Py_DECREF(imported_module); - *module = NULL; - return -1; -not_found: - Py_DECREF(imported_module); - *module = NULL; - return 0; -} -static PyObject *__Pyx__Import(PyObject *name, PyObject *const *imported_names, Py_ssize_t len_imported_names, PyObject *qualname, PyObject *moddict, int level) { - PyObject *module = 0; - PyObject *empty_dict = 0; - PyObject *from_list = 0; - int module_found; - if (!qualname) { - qualname = name; - } - module_found = __Pyx__Import_Lookup(qualname, imported_names, len_imported_names, &module); - if (likely(module_found == 1)) { - return module; - } else if (unlikely(module_found == -1)) { - return NULL; - } - empty_dict = PyDict_New(); - if (unlikely(!empty_dict)) - goto bad; - if (imported_names) { -#if CYTHON_COMPILING_IN_CPYTHON - from_list = __Pyx_PyList_FromArray(imported_names, len_imported_names); - if (unlikely(!from_list)) - goto bad; -#else - from_list = PyList_New(len_imported_names); - if (unlikely(!from_list)) goto bad; - for (Py_ssize_t i=0; i__pyx_d, level); -} - -/* FastTypeChecks */ -#if CYTHON_COMPILING_IN_CPYTHON -static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { - while (a) { - a = __Pyx_PyType_GetSlot(a, tp_base, PyTypeObject*); - if (a == b) - return 1; - } - return b == &PyBaseObject_Type; -} -static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (a == b) return 1; - mro = a->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(a, b); -} -static CYTHON_INLINE int __Pyx_IsAnySubtype2(PyTypeObject *cls, PyTypeObject *a, PyTypeObject *b) { - PyObject *mro; - if (cls == a || cls == b) return 1; - mro = cls->tp_mro; - if (likely(mro)) { - Py_ssize_t i, n; - n = PyTuple_GET_SIZE(mro); - for (i = 0; i < n; i++) { - PyObject *base = PyTuple_GET_ITEM(mro, i); - if (base == (PyObject *)a || base == (PyObject *)b) - return 1; - } - return 0; - } - return __Pyx_InBases(cls, a) || __Pyx_InBases(cls, b); -} -static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { - if (exc_type1) { - return __Pyx_IsAnySubtype2((PyTypeObject*)err, (PyTypeObject*)exc_type1, (PyTypeObject*)exc_type2); - } else { - return __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); - } -} -static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { - Py_ssize_t i, n; - assert(PyExceptionClass_Check(exc_type)); - n = PyTuple_GET_SIZE(tuple); - for (i=0; itp_as_sequence && type->tp_as_sequence->sq_repeat)) { - return type->tp_as_sequence->sq_repeat(seq, mul); - } else -#endif - { - return __Pyx_PySequence_Multiply_Generic(seq, mul); - } -} - -/* PyObjectFormatAndDecref */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatSimpleAndDecref(PyObject* s, PyObject* f) { - if (unlikely(!s)) return NULL; - if (likely(PyUnicode_CheckExact(s))) return s; - return __Pyx_PyObject_FormatAndDecref(s, f); -} -static CYTHON_INLINE PyObject* __Pyx_PyObject_FormatAndDecref(PyObject* s, PyObject* f) { - PyObject *result; - if (unlikely(!s)) return NULL; - result = PyObject_Format(s, f); - Py_DECREF(s); - return result; -} - -/* PyObjectFormat */ -#if CYTHON_USE_UNICODE_WRITER -static PyObject* __Pyx_PyObject_Format(PyObject* obj, PyObject* format_spec) { - int ret; - _PyUnicodeWriter writer; - if (likely(PyFloat_CheckExact(obj))) { - _PyUnicodeWriter_Init(&writer); - ret = _PyFloat_FormatAdvancedWriter( - &writer, - obj, - format_spec, 0, PyUnicode_GET_LENGTH(format_spec)); - } else if (likely(PyLong_CheckExact(obj))) { - _PyUnicodeWriter_Init(&writer); - ret = _PyLong_FormatAdvancedWriter( - &writer, - obj, - format_spec, 0, PyUnicode_GET_LENGTH(format_spec)); - } else { - return PyObject_Format(obj, format_spec); - } - if (unlikely(ret == -1)) { - _PyUnicodeWriter_Dealloc(&writer); - return NULL; - } - return _PyUnicodeWriter_Finish(&writer); -} -#endif - -/* SetItemInt */ -static int __Pyx_SetItemInt_Generic(PyObject *o, PyObject *j, PyObject *v) { - int r; - if (unlikely(!j)) return -1; - r = PyObject_SetItem(o, j, v); - Py_DECREF(j); - return r; -} -static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v, int is_list, - int wraparound, int boundscheck, int unsafe_shared) { - CYTHON_MAYBE_UNUSED_VAR(unsafe_shared); -#if CYTHON_ASSUME_SAFE_MACROS && CYTHON_ASSUME_SAFE_SIZE && !CYTHON_AVOID_BORROWED_REFS - if (is_list || PyList_CheckExact(o)) { - Py_ssize_t n = (!wraparound) ? i : ((likely(i >= 0)) ? i : i + PyList_GET_SIZE(o)); - if ((CYTHON_AVOID_THREAD_UNSAFE_BORROWED_REFS && !__Pyx_IS_UNIQUELY_REFERENCED(o, unsafe_shared))) { - Py_INCREF(v); - return PyList_SetItem(o, n, v); - } else if ((!boundscheck) || likely(__Pyx_is_valid_index(n, PyList_GET_SIZE(o)))) { - PyObject* old; - Py_INCREF(v); - old = PyList_GET_ITEM(o, n); - PyList_SET_ITEM(o, n, v); - Py_DECREF(old); - return 0; - } - } else -#endif -#if CYTHON_USE_TYPE_SLOTS && !CYTHON_COMPILING_IN_PYPY - { - PyMappingMethods *mm = Py_TYPE(o)->tp_as_mapping; - PySequenceMethods *sm = Py_TYPE(o)->tp_as_sequence; - if (!is_list && mm && mm->mp_ass_subscript) { - int r; - PyObject *key = PyLong_FromSsize_t(i); - if (unlikely(!key)) return -1; - r = mm->mp_ass_subscript(o, key, v); - Py_DECREF(key); - return r; - } - if (is_list || likely(sm && sm->sq_ass_item)) { - if (wraparound && unlikely(i < 0) && likely(sm->sq_length)) { - Py_ssize_t l = sm->sq_length(o); - if (likely(l >= 0)) { - i += l; - } else { - if (!PyErr_ExceptionMatches(PyExc_OverflowError)) - return -1; - PyErr_Clear(); - } - } - return sm->sq_ass_item(o, i, v); - } - } -#else - if (is_list || !PyMapping_Check(o)) { - return PySequence_SetItem(o, i, v); - } -#endif - (void)wraparound; - (void)boundscheck; - return __Pyx_SetItemInt_Generic(o, PyLong_FromSsize_t(i), v); -} - -/* RaiseUnboundLocalError */ -static void __Pyx_RaiseUnboundLocalError(const char *varname) { - PyErr_Format(PyExc_UnboundLocalError, "local variable '%s' referenced before assignment", varname); -} - -/* DivInt[long] */ -static CYTHON_INLINE long __Pyx_div_long(long a, long b, int b_is_constant) { - long q = a / b; - long r = a - q*b; - long adapt_python = (b_is_constant ? - ((r != 0) & ((r < 0) ^ (b < 0))) : - ((r != 0) & ((r ^ b) < 0)) - ); - return q - adapt_python; -} - -/* PyObjectVectorCallKwBuilder */ -#if CYTHON_VECTORCALL -static int __Pyx_VectorcallBuilder_AddArg(PyObject *key, PyObject *value, PyObject *builder, PyObject **args, int n) { - (void)__Pyx_PyObject_FastCallDict; - if (__Pyx_PyTuple_SET_ITEM(builder, n, key) != (0)) return -1; - Py_INCREF(key); - args[n] = value; - return 0; -} -CYTHON_UNUSED static int __Pyx_VectorcallBuilder_AddArg_Check(PyObject *key, PyObject *value, PyObject *builder, PyObject **args, int n) { - (void)__Pyx_VectorcallBuilder_AddArgStr; - if (unlikely(!PyUnicode_Check(key))) { - PyErr_SetString(PyExc_TypeError, "keywords must be strings"); - return -1; - } - return __Pyx_VectorcallBuilder_AddArg(key, value, builder, args, n); -} -static int __Pyx_VectorcallBuilder_AddArgStr(const char *key, PyObject *value, PyObject *builder, PyObject **args, int n) { - PyObject *pyKey = PyUnicode_FromString(key); - if (!pyKey) return -1; - return __Pyx_VectorcallBuilder_AddArg(pyKey, value, builder, args, n); -} -#else // CYTHON_VECTORCALL -CYTHON_UNUSED static int __Pyx_VectorcallBuilder_AddArg_Check(PyObject *key, PyObject *value, PyObject *builder, CYTHON_UNUSED PyObject **args, CYTHON_UNUSED int n) { - if (unlikely(!PyUnicode_Check(key))) { - PyErr_SetString(PyExc_TypeError, "keywords must be strings"); - return -1; - } - return PyDict_SetItem(builder, key, value); -} -#endif - -/* WriteUnraisableException */ -static void __Pyx_WriteUnraisable(const char *name, int clineno, - int lineno, const char *filename, - int full_traceback, int nogil) { - PyObject *old_exc, *old_val, *old_tb; - PyObject *ctx; - __Pyx_PyThreadState_declare - PyGILState_STATE state; - if (nogil) - state = PyGILState_Ensure(); - else state = (PyGILState_STATE)0; - CYTHON_UNUSED_VAR(clineno); - CYTHON_UNUSED_VAR(lineno); - CYTHON_UNUSED_VAR(filename); - CYTHON_MAYBE_UNUSED_VAR(nogil); - __Pyx_PyThreadState_assign - __Pyx_ErrFetch(&old_exc, &old_val, &old_tb); - if (full_traceback) { - Py_XINCREF(old_exc); - Py_XINCREF(old_val); - Py_XINCREF(old_tb); - __Pyx_ErrRestore(old_exc, old_val, old_tb); - PyErr_PrintEx(0); - } - ctx = PyUnicode_FromString(name); - __Pyx_ErrRestore(old_exc, old_val, old_tb); - if (!ctx) { - PyErr_WriteUnraisable(Py_None); - } else { - PyErr_WriteUnraisable(ctx); - Py_DECREF(ctx); - } - if (nogil) - PyGILState_Release(state); -} - -/* AllocateExtensionType */ -static PyObject *__Pyx_AllocateExtensionType(PyTypeObject *t, int is_final) { - if (is_final || likely(!__Pyx_PyType_HasFeature(t, Py_TPFLAGS_IS_ABSTRACT))) { - allocfunc alloc_func = __Pyx_PyType_GetSlot(t, tp_alloc, allocfunc); - return alloc_func(t, 0); - } else { - newfunc tp_new = __Pyx_PyType_TryGetSlot(&PyBaseObject_Type, tp_new, newfunc); - #if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000 - if (!tp_new) { - PyObject *new_str = PyUnicode_FromString("__new__"); - if (likely(new_str)) { - PyObject *o = PyObject_CallMethodObjArgs((PyObject *)&PyBaseObject_Type, new_str, t, NULL); - Py_DECREF(new_str); - return o; - } else - return NULL; - } else - #endif - return tp_new(t, __pyx_mstate_global->__pyx_empty_tuple, 0); - } -} - -/* CallTypeTraverse */ -#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000) -#else -static int __Pyx_call_type_traverse(PyObject *o, int always_call, visitproc visit, void *arg) { - #if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x03090000 - if (__Pyx_get_runtime_version() < 0x03090000) return 0; - #endif - if (!always_call) { - PyTypeObject *base = __Pyx_PyObject_GetSlot(o, tp_base, PyTypeObject*); - unsigned long flags = PyType_GetFlags(base); - if (flags & Py_TPFLAGS_HEAPTYPE) { - return 0; - } - } - Py_VISIT((PyObject*)Py_TYPE(o)); - return 0; -} -#endif - -/* LimitedApiGetTypeDict (used by SetItemOnTypeDict) */ -#if CYTHON_COMPILING_IN_LIMITED_API -static Py_ssize_t __Pyx_GetTypeDictOffset(void) { - PyObject *tp_dictoffset_o; - Py_ssize_t tp_dictoffset; - tp_dictoffset_o = PyObject_GetAttrString((PyObject*)(&PyType_Type), "__dictoffset__"); - if (unlikely(!tp_dictoffset_o)) return -1; - tp_dictoffset = PyLong_AsSsize_t(tp_dictoffset_o); - Py_DECREF(tp_dictoffset_o); - if (unlikely(tp_dictoffset == 0)) { - PyErr_SetString( - PyExc_TypeError, - "'type' doesn't have a dictoffset"); - return -1; - } else if (unlikely(tp_dictoffset < 0)) { - PyErr_SetString( - PyExc_TypeError, - "'type' has an unexpected negative dictoffset. " - "Please report this as Cython bug"); - return -1; - } - return tp_dictoffset; -} -static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) { - static Py_ssize_t tp_dictoffset = 0; - if (unlikely(tp_dictoffset == 0)) { - tp_dictoffset = __Pyx_GetTypeDictOffset(); - if (unlikely(tp_dictoffset == -1 && PyErr_Occurred())) { - tp_dictoffset = 0; // try again next time? - return NULL; - } - } - return *(PyObject**)((char*)tp + tp_dictoffset); -} -#endif - -/* SetItemOnTypeDict (used by FixUpExtensionType) */ -static int __Pyx__SetItemOnTypeDict(PyTypeObject *tp, PyObject *k, PyObject *v) { - int result; - PyObject *tp_dict; -#if CYTHON_COMPILING_IN_LIMITED_API - tp_dict = __Pyx_GetTypeDict(tp); - if (unlikely(!tp_dict)) return -1; -#else - tp_dict = tp->tp_dict; -#endif - result = PyDict_SetItem(tp_dict, k, v); - if (likely(!result)) { - PyType_Modified(tp); - if (unlikely(PyObject_HasAttr(v, __pyx_mstate_global->__pyx_n_u_set_name))) { - PyObject *setNameResult = PyObject_CallMethodObjArgs(v, __pyx_mstate_global->__pyx_n_u_set_name, (PyObject *) tp, k, NULL); - if (!setNameResult) return -1; - Py_DECREF(setNameResult); - } - } - return result; -} - -/* FixUpExtensionType */ -static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject *type) { -#if __PYX_LIMITED_VERSION_HEX > 0x030900B1 - CYTHON_UNUSED_VAR(spec); - CYTHON_UNUSED_VAR(type); - CYTHON_UNUSED_VAR(__Pyx__SetItemOnTypeDict); -#else - const PyType_Slot *slot = spec->slots; - int changed = 0; -#if !CYTHON_COMPILING_IN_LIMITED_API - while (slot && slot->slot && slot->slot != Py_tp_members) - slot++; - if (slot && slot->slot == Py_tp_members) { -#if !CYTHON_COMPILING_IN_CPYTHON - const -#endif // !CYTHON_COMPILING_IN_CPYTHON) - PyMemberDef *memb = (PyMemberDef*) slot->pfunc; - while (memb && memb->name) { - if (memb->name[0] == '_' && memb->name[1] == '_') { - if (strcmp(memb->name, "__weaklistoffset__") == 0) { - assert(memb->type == T_PYSSIZET); - assert(memb->flags == READONLY); - type->tp_weaklistoffset = memb->offset; - changed = 1; - } - else if (strcmp(memb->name, "__dictoffset__") == 0) { - assert(memb->type == T_PYSSIZET); - assert(memb->flags == READONLY); - type->tp_dictoffset = memb->offset; - changed = 1; - } -#if CYTHON_METH_FASTCALL - else if (strcmp(memb->name, "__vectorcalloffset__") == 0) { - assert(memb->type == T_PYSSIZET); - assert(memb->flags == READONLY); - type->tp_vectorcall_offset = memb->offset; - changed = 1; - } -#endif // CYTHON_METH_FASTCALL -#if !CYTHON_COMPILING_IN_PYPY - else if (strcmp(memb->name, "__module__") == 0) { - PyObject *descr; - assert(memb->type == T_OBJECT); - assert(memb->flags == 0 || memb->flags == READONLY); - descr = PyDescr_NewMember(type, memb); - if (unlikely(!descr)) - return -1; - int set_item_result = PyDict_SetItem(type->tp_dict, PyDescr_NAME(descr), descr); - Py_DECREF(descr); - if (unlikely(set_item_result < 0)) { - return -1; - } - changed = 1; - } -#endif // !CYTHON_COMPILING_IN_PYPY - } - memb++; - } - } -#endif // !CYTHON_COMPILING_IN_LIMITED_API -#if !CYTHON_COMPILING_IN_PYPY - slot = spec->slots; - while (slot && slot->slot && slot->slot != Py_tp_getset) - slot++; - if (slot && slot->slot == Py_tp_getset) { - PyGetSetDef *getset = (PyGetSetDef*) slot->pfunc; - while (getset && getset->name) { - if (getset->name[0] == '_' && getset->name[1] == '_' && strcmp(getset->name, "__module__") == 0) { - PyObject *descr = PyDescr_NewGetSet(type, getset); - if (unlikely(!descr)) - return -1; - #if CYTHON_COMPILING_IN_LIMITED_API - PyObject *pyname = PyUnicode_FromString(getset->name); - if (unlikely(!pyname)) { - Py_DECREF(descr); - return -1; - } - int set_item_result = __Pyx_SetItemOnTypeDict(type, pyname, descr); - Py_DECREF(pyname); - #else - CYTHON_UNUSED_VAR(__Pyx__SetItemOnTypeDict); - int set_item_result = PyDict_SetItem(type->tp_dict, PyDescr_NAME(descr), descr); - #endif - Py_DECREF(descr); - if (unlikely(set_item_result < 0)) { - return -1; - } - changed = 1; - } - ++getset; - } - } -#else - CYTHON_UNUSED_VAR(__Pyx__SetItemOnTypeDict); -#endif // !CYTHON_COMPILING_IN_PYPY - if (changed) - PyType_Modified(type); -#endif // PY_VERSION_HEX > 0x030900B1 - return 0; -} - -/* PyObjectCallNoArg (used by PyObjectCallMethod0) */ -static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { - PyObject *arg[2] = {NULL, NULL}; - return __Pyx_PyObject_FastCall(func, arg + 1, 0 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET); -} - -/* PyObjectGetMethod (used by PyObjectCallMethod0) */ -#if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))) -static int __Pyx_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) { - PyObject *attr; -#if CYTHON_UNPACK_METHODS && CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_PYTYPE_LOOKUP - __Pyx_TypeName type_name; - PyTypeObject *tp = Py_TYPE(obj); - PyObject *descr; - descrgetfunc f = NULL; - PyObject **dictptr, *dict; - int meth_found = 0; - assert (*method == NULL); - if (unlikely(tp->tp_getattro != PyObject_GenericGetAttr)) { - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; - } - if (unlikely(tp->tp_dict == NULL) && unlikely(PyType_Ready(tp) < 0)) { - return 0; - } - descr = _PyType_Lookup(tp, name); - if (likely(descr != NULL)) { - Py_INCREF(descr); -#if defined(Py_TPFLAGS_METHOD_DESCRIPTOR) && Py_TPFLAGS_METHOD_DESCRIPTOR - if (__Pyx_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR)) -#else - #ifdef __Pyx_CyFunction_USED - if (likely(PyFunction_Check(descr) || __Pyx_IS_TYPE(descr, &PyMethodDescr_Type) || __Pyx_CyFunction_Check(descr))) - #else - if (likely(PyFunction_Check(descr) || __Pyx_IS_TYPE(descr, &PyMethodDescr_Type))) - #endif -#endif - { - meth_found = 1; - } else { - f = Py_TYPE(descr)->tp_descr_get; - if (f != NULL && PyDescr_IsData(descr)) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - } - } - dictptr = _PyObject_GetDictPtr(obj); - if (dictptr != NULL && (dict = *dictptr) != NULL) { - Py_INCREF(dict); - attr = __Pyx_PyDict_GetItemStr(dict, name); - if (attr != NULL) { - Py_INCREF(attr); - Py_DECREF(dict); - Py_XDECREF(descr); - goto try_unpack; - } - Py_DECREF(dict); - } - if (meth_found) { - *method = descr; - return 1; - } - if (f != NULL) { - attr = f(descr, obj, (PyObject *)Py_TYPE(obj)); - Py_DECREF(descr); - goto try_unpack; - } - if (likely(descr != NULL)) { - *method = descr; - return 0; - } - type_name = __Pyx_PyType_GetFullyQualifiedName(tp); - PyErr_Format(PyExc_AttributeError, - "'" __Pyx_FMT_TYPENAME "' object has no attribute '%U'", - type_name, name); - __Pyx_DECREF_TypeName(type_name); - return 0; -#else - attr = __Pyx_PyObject_GetAttrStr(obj, name); - goto try_unpack; -#endif -try_unpack: -#if CYTHON_UNPACK_METHODS - if (likely(attr) && PyMethod_Check(attr) && likely(PyMethod_GET_SELF(attr) == obj)) { - PyObject *function = PyMethod_GET_FUNCTION(attr); - Py_INCREF(function); - Py_DECREF(attr); - *method = function; - return 1; - } -#endif - *method = attr; - return 0; -} -#endif - -/* PyObjectCallMethod0 (used by PyType_Ready) */ -static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) { -#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)) - PyObject *args[1] = {obj}; - (void) __Pyx_PyObject_CallOneArg; - (void) __Pyx_PyObject_CallNoArg; - return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); -#else - PyObject *method = NULL, *result = NULL; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_CallOneArg(method, obj); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) goto bad; - result = __Pyx_PyObject_CallNoArg(method); - Py_DECREF(method); -bad: - return result; -#endif -} - -/* ValidateBasesTuple (used by PyType_Ready) */ -#if CYTHON_COMPILING_IN_CPYTHON || CYTHON_COMPILING_IN_LIMITED_API || CYTHON_USE_TYPE_SPECS -static int __Pyx_validate_bases_tuple(const char *type_name, Py_ssize_t dictoffset, PyObject *bases) { - Py_ssize_t i, n; -#if CYTHON_ASSUME_SAFE_SIZE - n = PyTuple_GET_SIZE(bases); -#else - n = PyTuple_Size(bases); - if (unlikely(n < 0)) return -1; -#endif - for (i = 1; i < n; i++) - { - PyTypeObject *b; -#if CYTHON_AVOID_BORROWED_REFS - PyObject *b0 = PySequence_GetItem(bases, i); - if (!b0) return -1; -#elif CYTHON_ASSUME_SAFE_MACROS - PyObject *b0 = PyTuple_GET_ITEM(bases, i); -#else - PyObject *b0 = PyTuple_GetItem(bases, i); - if (!b0) return -1; -#endif - b = (PyTypeObject*) b0; - if (!__Pyx_PyType_HasFeature(b, Py_TPFLAGS_HEAPTYPE)) - { - __Pyx_TypeName b_name = __Pyx_PyType_GetFullyQualifiedName(b); - PyErr_Format(PyExc_TypeError, - "base class '" __Pyx_FMT_TYPENAME "' is not a heap type", b_name); - __Pyx_DECREF_TypeName(b_name); -#if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(b0); -#endif - return -1; - } - if (dictoffset == 0) - { - Py_ssize_t b_dictoffset = 0; -#if CYTHON_USE_TYPE_SLOTS - b_dictoffset = b->tp_dictoffset; -#else - PyObject *py_b_dictoffset = PyObject_GetAttrString((PyObject*)b, "__dictoffset__"); - if (!py_b_dictoffset) goto dictoffset_return; - b_dictoffset = PyLong_AsSsize_t(py_b_dictoffset); - Py_DECREF(py_b_dictoffset); - if (b_dictoffset == -1 && PyErr_Occurred()) goto dictoffset_return; -#endif - if (b_dictoffset) { - { - __Pyx_TypeName b_name = __Pyx_PyType_GetFullyQualifiedName(b); - PyErr_Format(PyExc_TypeError, - "extension type '%.200s' has no __dict__ slot, " - "but base type '" __Pyx_FMT_TYPENAME "' has: " - "either add 'cdef dict __dict__' to the extension type " - "or add '__slots__ = [...]' to the base type", - type_name, b_name); - __Pyx_DECREF_TypeName(b_name); - } -#if !CYTHON_USE_TYPE_SLOTS - dictoffset_return: -#endif -#if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(b0); -#endif - return -1; - } - } -#if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(b0); -#endif - } - return 0; -} -#endif - -/* PyType_Ready */ -CYTHON_UNUSED static int __Pyx_PyType_HasMultipleInheritance(PyTypeObject *t) { - while (t) { - PyObject *bases = __Pyx_PyType_GetSlot(t, tp_bases, PyObject*); - if (bases) { - return 1; - } - t = __Pyx_PyType_GetSlot(t, tp_base, PyTypeObject*); - } - return 0; -} -static int __Pyx_PyType_Ready(PyTypeObject *t) { -#if CYTHON_USE_TYPE_SPECS || !CYTHON_COMPILING_IN_CPYTHON || defined(PYSTON_MAJOR_VERSION) - (void)__Pyx_PyObject_CallMethod0; -#if CYTHON_USE_TYPE_SPECS - (void)__Pyx_validate_bases_tuple; -#endif - return PyType_Ready(t); -#else - int r; - if (!__Pyx_PyType_HasMultipleInheritance(t)) { - return PyType_Ready(t); - } - PyObject *bases = __Pyx_PyType_GetSlot(t, tp_bases, PyObject*); - if (bases && unlikely(__Pyx_validate_bases_tuple(t->tp_name, t->tp_dictoffset, bases) == -1)) - return -1; -#if !defined(PYSTON_MAJOR_VERSION) - { - int gc_was_enabled; - #if PY_VERSION_HEX >= 0x030A00b1 - gc_was_enabled = PyGC_Disable(); - (void)__Pyx_PyObject_CallMethod0; - #else - PyObject *ret, *py_status; - PyObject *gc = NULL; - #if (!CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM+0 >= 0x07030400) &&\ - !CYTHON_COMPILING_IN_GRAAL - gc = PyImport_GetModule(__pyx_mstate_global->__pyx_kp_u_gc); - #endif - if (unlikely(!gc)) gc = PyImport_Import(__pyx_mstate_global->__pyx_kp_u_gc); - if (unlikely(!gc)) return -1; - py_status = __Pyx_PyObject_CallMethod0(gc, __pyx_mstate_global->__pyx_kp_u_isenabled); - if (unlikely(!py_status)) { - Py_DECREF(gc); - return -1; - } - gc_was_enabled = __Pyx_PyObject_IsTrue(py_status); - Py_DECREF(py_status); - if (gc_was_enabled > 0) { - ret = __Pyx_PyObject_CallMethod0(gc, __pyx_mstate_global->__pyx_kp_u_disable); - if (unlikely(!ret)) { - Py_DECREF(gc); - return -1; - } - Py_DECREF(ret); - } else if (unlikely(gc_was_enabled == -1)) { - Py_DECREF(gc); - return -1; - } - #endif - t->tp_flags |= Py_TPFLAGS_HEAPTYPE; -#if PY_VERSION_HEX >= 0x030A0000 - t->tp_flags |= Py_TPFLAGS_IMMUTABLETYPE; -#endif -#else - (void)__Pyx_PyObject_CallMethod0; -#endif - r = PyType_Ready(t); -#if !defined(PYSTON_MAJOR_VERSION) - t->tp_flags &= ~Py_TPFLAGS_HEAPTYPE; - #if PY_VERSION_HEX >= 0x030A00b1 - if (gc_was_enabled) - PyGC_Enable(); - #else - if (gc_was_enabled) { - PyObject *tp, *v, *tb; - PyErr_Fetch(&tp, &v, &tb); - ret = __Pyx_PyObject_CallMethod0(gc, __pyx_mstate_global->__pyx_kp_u_enable); - if (likely(ret || r == -1)) { - Py_XDECREF(ret); - PyErr_Restore(tp, v, tb); - } else { - Py_XDECREF(tp); - Py_XDECREF(v); - Py_XDECREF(tb); - r = -1; - } - } - Py_DECREF(gc); - #endif - } -#endif - return r; -#endif -} - -/* SetVTable */ -static int __Pyx_SetVtable(PyTypeObject *type, void *vtable) { - PyObject *ob = PyCapsule_New(vtable, 0, 0); - if (unlikely(!ob)) - goto bad; -#if CYTHON_COMPILING_IN_LIMITED_API - if (unlikely(PyObject_SetAttr((PyObject *) type, __pyx_mstate_global->__pyx_n_u_pyx_vtable, ob) < 0)) -#else - if (unlikely(PyDict_SetItem(type->tp_dict, __pyx_mstate_global->__pyx_n_u_pyx_vtable, ob) < 0)) -#endif - goto bad; - Py_DECREF(ob); - return 0; -bad: - Py_XDECREF(ob); - return -1; -} - -/* GetVTable (used by MergeVTables) */ -static void* __Pyx_GetVtable(PyTypeObject *type) { - void* ptr; -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *ob = PyObject_GetAttr((PyObject *)type, __pyx_mstate_global->__pyx_n_u_pyx_vtable); -#else - PyObject *ob = PyObject_GetItem(type->tp_dict, __pyx_mstate_global->__pyx_n_u_pyx_vtable); -#endif - if (!ob) - goto bad; - ptr = PyCapsule_GetPointer(ob, 0); - if (!ptr && !PyErr_Occurred()) - PyErr_SetString(PyExc_RuntimeError, "invalid vtable found for imported type"); - Py_DECREF(ob); - return ptr; -bad: - Py_XDECREF(ob); - return NULL; -} - -/* MergeVTables */ -static int __Pyx_MergeVtables(PyTypeObject *type) { - int i=0; - Py_ssize_t size; - void** base_vtables; - __Pyx_TypeName tp_base_name = NULL; - __Pyx_TypeName base_name = NULL; - void* unknown = (void*)-1; - PyObject* bases = __Pyx_PyType_GetSlot(type, tp_bases, PyObject*); - int base_depth = 0; - { - PyTypeObject* base = __Pyx_PyType_GetSlot(type, tp_base, PyTypeObject*); - while (base) { - base_depth += 1; - base = __Pyx_PyType_GetSlot(base, tp_base, PyTypeObject*); - } - } - base_vtables = (void**) PyMem_Malloc(sizeof(void*) * (size_t)(base_depth + 1)); - base_vtables[0] = unknown; -#if CYTHON_COMPILING_IN_LIMITED_API - size = PyTuple_Size(bases); - if (size < 0) goto other_failure; -#else - size = PyTuple_GET_SIZE(bases); -#endif - for (i = 1; i < size; i++) { - PyObject *basei; - void* base_vtable; -#if CYTHON_AVOID_BORROWED_REFS - basei = PySequence_GetItem(bases, i); - if (unlikely(!basei)) goto other_failure; -#elif !CYTHON_ASSUME_SAFE_MACROS - basei = PyTuple_GetItem(bases, i); - if (unlikely(!basei)) goto other_failure; -#else - basei = PyTuple_GET_ITEM(bases, i); -#endif - base_vtable = __Pyx_GetVtable((PyTypeObject*)basei); -#if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(basei); -#endif - if (base_vtable != NULL) { - int j; - PyTypeObject* base = __Pyx_PyType_GetSlot(type, tp_base, PyTypeObject*); - for (j = 0; j < base_depth; j++) { - if (base_vtables[j] == unknown) { - base_vtables[j] = __Pyx_GetVtable(base); - base_vtables[j + 1] = unknown; - } - if (base_vtables[j] == base_vtable) { - break; - } else if (base_vtables[j] == NULL) { - goto bad; - } - base = __Pyx_PyType_GetSlot(base, tp_base, PyTypeObject*); - } - } - } - PyErr_Clear(); - PyMem_Free(base_vtables); - return 0; -bad: - { - PyTypeObject* basei = NULL; - PyTypeObject* tp_base = __Pyx_PyType_GetSlot(type, tp_base, PyTypeObject*); - tp_base_name = __Pyx_PyType_GetFullyQualifiedName(tp_base); -#if CYTHON_AVOID_BORROWED_REFS - basei = (PyTypeObject*)PySequence_GetItem(bases, i); - if (unlikely(!basei)) goto really_bad; -#elif !CYTHON_ASSUME_SAFE_MACROS - basei = (PyTypeObject*)PyTuple_GetItem(bases, i); - if (unlikely(!basei)) goto really_bad; -#else - basei = (PyTypeObject*)PyTuple_GET_ITEM(bases, i); -#endif - base_name = __Pyx_PyType_GetFullyQualifiedName(basei); -#if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(basei); -#endif - } - PyErr_Format(PyExc_TypeError, - "multiple bases have vtable conflict: '" __Pyx_FMT_TYPENAME "' and '" __Pyx_FMT_TYPENAME "'", tp_base_name, base_name); -#if CYTHON_AVOID_BORROWED_REFS || !CYTHON_ASSUME_SAFE_MACROS -really_bad: // bad has failed! -#endif - __Pyx_DECREF_TypeName(tp_base_name); - __Pyx_DECREF_TypeName(base_name); -#if CYTHON_COMPILING_IN_LIMITED_API || CYTHON_AVOID_BORROWED_REFS || !CYTHON_ASSUME_SAFE_MACROS -other_failure: -#endif - PyMem_Free(base_vtables); - return -1; -} - -/* DelItemOnTypeDict (used by SetupReduce) */ -static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k) { - int result; - PyObject *tp_dict; -#if CYTHON_COMPILING_IN_LIMITED_API - tp_dict = __Pyx_GetTypeDict(tp); - if (unlikely(!tp_dict)) return -1; -#else - tp_dict = tp->tp_dict; -#endif - result = PyDict_DelItem(tp_dict, k); - if (likely(!result)) PyType_Modified(tp); - return result; -} - -/* SetupReduce */ -static int __Pyx_setup_reduce_is_named(PyObject* meth, PyObject* name) { - int ret; - PyObject *name_attr; - name_attr = __Pyx_PyObject_GetAttrStrNoError(meth, __pyx_mstate_global->__pyx_n_u_name_2); - if (likely(name_attr)) { - ret = PyObject_RichCompareBool(name_attr, name, Py_EQ); - } else { - ret = -1; - } - if (unlikely(ret < 0)) { - PyErr_Clear(); - ret = 0; - } - Py_XDECREF(name_attr); - return ret; -} -static int __Pyx_setup_reduce(PyObject* type_obj) { - int ret = 0; - PyObject *object_reduce = NULL; - PyObject *object_getstate = NULL; - PyObject *object_reduce_ex = NULL; - PyObject *reduce = NULL; - PyObject *reduce_ex = NULL; - PyObject *reduce_cython = NULL; - PyObject *setstate = NULL; - PyObject *setstate_cython = NULL; - PyObject *getstate = NULL; -#if CYTHON_USE_PYTYPE_LOOKUP - getstate = _PyType_Lookup((PyTypeObject*)type_obj, __pyx_mstate_global->__pyx_n_u_getstate); -#else - getstate = __Pyx_PyObject_GetAttrStrNoError(type_obj, __pyx_mstate_global->__pyx_n_u_getstate); - if (!getstate && PyErr_Occurred()) { - goto __PYX_BAD; - } -#endif - if (getstate) { -#if CYTHON_USE_PYTYPE_LOOKUP - object_getstate = _PyType_Lookup(&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_getstate); -#else - object_getstate = __Pyx_PyObject_GetAttrStrNoError((PyObject*)&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_getstate); - if (!object_getstate && PyErr_Occurred()) { - goto __PYX_BAD; - } -#endif - if (object_getstate != getstate) { - goto __PYX_GOOD; - } - } -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce_ex = _PyType_Lookup(&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_reduce_ex); if (!object_reduce_ex) goto __PYX_BAD; -#else - object_reduce_ex = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_reduce_ex); if (!object_reduce_ex) goto __PYX_BAD; -#endif - reduce_ex = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_mstate_global->__pyx_n_u_reduce_ex); if (unlikely(!reduce_ex)) goto __PYX_BAD; - if (reduce_ex == object_reduce_ex) { -#if CYTHON_USE_PYTYPE_LOOKUP - object_reduce = _PyType_Lookup(&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_reduce); if (!object_reduce) goto __PYX_BAD; -#else - object_reduce = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_mstate_global->__pyx_n_u_reduce); if (!object_reduce) goto __PYX_BAD; -#endif - reduce = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_mstate_global->__pyx_n_u_reduce); if (unlikely(!reduce)) goto __PYX_BAD; - if (reduce == object_reduce || __Pyx_setup_reduce_is_named(reduce, __pyx_mstate_global->__pyx_n_u_reduce_cython)) { - reduce_cython = __Pyx_PyObject_GetAttrStrNoError(type_obj, __pyx_mstate_global->__pyx_n_u_reduce_cython); - if (likely(reduce_cython)) { - ret = __Pyx_SetItemOnTypeDict((PyTypeObject*)type_obj, __pyx_mstate_global->__pyx_n_u_reduce, reduce_cython); if (unlikely(ret < 0)) goto __PYX_BAD; - ret = __Pyx_DelItemOnTypeDict((PyTypeObject*)type_obj, __pyx_mstate_global->__pyx_n_u_reduce_cython); if (unlikely(ret < 0)) goto __PYX_BAD; - } else if (reduce == object_reduce || PyErr_Occurred()) { - goto __PYX_BAD; - } - setstate = __Pyx_PyObject_GetAttrStrNoError(type_obj, __pyx_mstate_global->__pyx_n_u_setstate); - if (!setstate) PyErr_Clear(); - if (!setstate || __Pyx_setup_reduce_is_named(setstate, __pyx_mstate_global->__pyx_n_u_setstate_cython)) { - setstate_cython = __Pyx_PyObject_GetAttrStrNoError(type_obj, __pyx_mstate_global->__pyx_n_u_setstate_cython); - if (likely(setstate_cython)) { - ret = __Pyx_SetItemOnTypeDict((PyTypeObject*)type_obj, __pyx_mstate_global->__pyx_n_u_setstate, setstate_cython); if (unlikely(ret < 0)) goto __PYX_BAD; - ret = __Pyx_DelItemOnTypeDict((PyTypeObject*)type_obj, __pyx_mstate_global->__pyx_n_u_setstate_cython); if (unlikely(ret < 0)) goto __PYX_BAD; - } else if (!setstate || PyErr_Occurred()) { - goto __PYX_BAD; - } - } - PyType_Modified((PyTypeObject*)type_obj); - } - } - goto __PYX_GOOD; -__PYX_BAD: - if (!PyErr_Occurred()) { - __Pyx_TypeName type_obj_name = - __Pyx_PyType_GetFullyQualifiedName((PyTypeObject*)type_obj); - PyErr_Format(PyExc_RuntimeError, - "Unable to initialize pickling for " __Pyx_FMT_TYPENAME, type_obj_name); - __Pyx_DECREF_TypeName(type_obj_name); - } - ret = -1; -__PYX_GOOD: -#if !CYTHON_USE_PYTYPE_LOOKUP - Py_XDECREF(object_reduce); - Py_XDECREF(object_reduce_ex); - Py_XDECREF(object_getstate); - Py_XDECREF(getstate); -#endif - Py_XDECREF(reduce); - Py_XDECREF(reduce_ex); - Py_XDECREF(reduce_cython); - Py_XDECREF(setstate); - Py_XDECREF(setstate_cython); - return ret; -} - -/* ImportFrom */ -static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { - PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); - if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { - const char* module_name_str = 0; - PyObject* module_name = 0; - PyObject* module_dot = 0; - PyObject* full_name = 0; - PyErr_Clear(); - module_name_str = PyModule_GetName(module); - if (unlikely(!module_name_str)) { goto modbad; } - module_name = PyUnicode_FromString(module_name_str); - if (unlikely(!module_name)) { goto modbad; } - module_dot = PyUnicode_Concat(module_name, __pyx_mstate_global->__pyx_kp_u__2); - if (unlikely(!module_dot)) { goto modbad; } - full_name = PyUnicode_Concat(module_dot, name); - if (unlikely(!full_name)) { goto modbad; } - #if (CYTHON_COMPILING_IN_PYPY && PYPY_VERSION_NUM < 0x07030400) ||\ - CYTHON_COMPILING_IN_GRAAL - { - PyObject *modules = PyImport_GetModuleDict(); - if (unlikely(!modules)) - goto modbad; - value = PyObject_GetItem(modules, full_name); - } - #else - value = PyImport_GetModule(full_name); - #endif - modbad: - Py_XDECREF(full_name); - Py_XDECREF(module_dot); - Py_XDECREF(module_name); - } - if (unlikely(!value)) { - PyErr_Format(PyExc_ImportError, "cannot import name %S", name); - } - return value; -} - -/* dict_setdefault (used by FetchCommonType) */ -static CYTHON_INLINE PyObject *__Pyx_PyDict_SetDefault(PyObject *d, PyObject *key, PyObject *default_value) { - PyObject* value; -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX >= 0x030C0000 - PyObject *args[] = {d, key, default_value}; - value = PyObject_VectorcallMethod(__pyx_mstate_global->__pyx_n_u_setdefault, args, 3 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); -#elif CYTHON_COMPILING_IN_LIMITED_API - value = PyObject_CallMethodObjArgs(d, __pyx_mstate_global->__pyx_n_u_setdefault, key, default_value, NULL); -#elif PY_VERSION_HEX >= 0x030d0000 - PyDict_SetDefaultRef(d, key, default_value, &value); -#else - value = PyDict_SetDefault(d, key, default_value); - if (unlikely(!value)) return NULL; - Py_INCREF(value); -#endif - return value; -} - -/* AddModuleRef (used by FetchSharedCythonModule) */ -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - static PyObject *__Pyx_PyImport_AddModuleObjectRef(PyObject *name) { - PyObject *module_dict = PyImport_GetModuleDict(); - PyObject *m; - if (PyMapping_GetOptionalItem(module_dict, name, &m) < 0) { - return NULL; - } - if (m != NULL && PyModule_Check(m)) { - return m; - } - Py_XDECREF(m); - m = PyModule_NewObject(name); - if (m == NULL) - return NULL; - if (PyDict_CheckExact(module_dict)) { - PyObject *new_m; - (void)PyDict_SetDefaultRef(module_dict, name, m, &new_m); - Py_DECREF(m); - return new_m; - } else { - if (PyObject_SetItem(module_dict, name, m) != 0) { - Py_DECREF(m); - return NULL; - } - return m; - } - } - static PyObject *__Pyx_PyImport_AddModuleRef(const char *name) { - PyObject *py_name = PyUnicode_FromString(name); - if (!py_name) return NULL; - PyObject *module = __Pyx_PyImport_AddModuleObjectRef(py_name); - Py_DECREF(py_name); - return module; - } -#elif __PYX_LIMITED_VERSION_HEX >= 0x030d0000 - #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name) -#else - static PyObject *__Pyx_PyImport_AddModuleRef(const char *name) { - PyObject *module = PyImport_AddModule(name); - Py_XINCREF(module); - return module; - } -#endif - -/* FetchSharedCythonModule (used by FetchCommonType) */ -static PyObject *__Pyx_FetchSharedCythonABIModule(void) { - return __Pyx_PyImport_AddModuleRef(__PYX_ABI_MODULE_NAME); -} - -/* FetchCommonType (used by CommonTypesMetaclass) */ -#if __PYX_LIMITED_VERSION_HEX < 0x030C0000 -static PyObject* __Pyx_PyType_FromMetaclass(PyTypeObject *metaclass, PyObject *module, PyType_Spec *spec, PyObject *bases) { - PyObject *result = __Pyx_PyType_FromModuleAndSpec(module, spec, bases); - if (result && metaclass) { - PyObject *old_tp = (PyObject*)Py_TYPE(result); - Py_INCREF((PyObject*)metaclass); -#if __PYX_LIMITED_VERSION_HEX >= 0x03090000 - Py_SET_TYPE(result, metaclass); -#else - result->ob_type = metaclass; -#endif - Py_DECREF(old_tp); - } - return result; -} -#else -#define __Pyx_PyType_FromMetaclass(me, mo, s, b) PyType_FromMetaclass(me, mo, s, b) -#endif -static int __Pyx_VerifyCachedType(PyObject *cached_type, - const char *name, - Py_ssize_t expected_basicsize) { - Py_ssize_t basicsize; - if (!PyType_Check(cached_type)) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s is not a type object", name); - return -1; - } - if (expected_basicsize == 0) { - return 0; // size is inherited, nothing useful to check - } -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *py_basicsize; - py_basicsize = PyObject_GetAttrString(cached_type, "__basicsize__"); - if (unlikely(!py_basicsize)) return -1; - basicsize = PyLong_AsSsize_t(py_basicsize); - Py_DECREF(py_basicsize); - py_basicsize = NULL; - if (unlikely(basicsize == (Py_ssize_t)-1) && PyErr_Occurred()) return -1; -#else - basicsize = ((PyTypeObject*) cached_type)->tp_basicsize; -#endif - if (basicsize != expected_basicsize) { - PyErr_Format(PyExc_TypeError, - "Shared Cython type %.200s has the wrong size, try recompiling", - name); - return -1; - } - return 0; -} -static PyTypeObject *__Pyx_FetchCommonTypeFromSpec(PyTypeObject *metaclass, PyObject *module, PyType_Spec *spec, PyObject *bases) { - PyObject *abi_module = NULL, *cached_type = NULL, *abi_module_dict, *new_cached_type, *py_object_name; - int get_item_ref_result; - const char* object_name = strrchr(spec->name, '.'); - object_name = object_name ? object_name+1 : spec->name; - py_object_name = PyUnicode_FromString(object_name); - if (!py_object_name) return NULL; - abi_module = __Pyx_FetchSharedCythonABIModule(); - if (!abi_module) goto done; - abi_module_dict = PyModule_GetDict(abi_module); - if (!abi_module_dict) goto done; - get_item_ref_result = __Pyx_PyDict_GetItemRef(abi_module_dict, py_object_name, &cached_type); - if (get_item_ref_result == 1) { - if (__Pyx_VerifyCachedType( - cached_type, - object_name, - spec->basicsize) < 0) { - goto bad; - } - goto done; - } else if (unlikely(get_item_ref_result == -1)) { - goto bad; - } - cached_type = __Pyx_PyType_FromMetaclass( - metaclass, - CYTHON_USE_MODULE_STATE ? module : abi_module, - spec, bases); - if (unlikely(!cached_type)) goto bad; - if (unlikely(__Pyx_fix_up_extension_type_from_spec(spec, (PyTypeObject *) cached_type) < 0)) goto bad; - new_cached_type = __Pyx_PyDict_SetDefault(abi_module_dict, py_object_name, cached_type); - if (unlikely(new_cached_type != cached_type)) { - if (unlikely(!new_cached_type)) goto bad; - Py_DECREF(cached_type); - cached_type = new_cached_type; - if (__Pyx_VerifyCachedType( - cached_type, - object_name, - spec->basicsize) < 0) { - goto bad; - } - goto done; - } else { - Py_DECREF(new_cached_type); - } -done: - Py_XDECREF(abi_module); - Py_DECREF(py_object_name); - assert(cached_type == NULL || PyType_Check(cached_type)); - return (PyTypeObject *) cached_type; -bad: - Py_XDECREF(cached_type); - cached_type = NULL; - goto done; -} - -/* CommonTypesMetaclass (used by CythonFunctionShared) */ -static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) { - return PyUnicode_FromString(__PYX_ABI_MODULE_NAME); -} -#if __PYX_LIMITED_VERSION_HEX < 0x030A0000 -static PyObject* __pyx_CommonTypesMetaclass_call(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED PyObject *args, CYTHON_UNUSED PyObject *kwds) { - PyErr_SetString(PyExc_TypeError, "Cannot instantiate Cython internal types"); - return NULL; -} -static int __pyx_CommonTypesMetaclass_setattr(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED PyObject *attr, CYTHON_UNUSED PyObject *value) { - PyErr_SetString(PyExc_TypeError, "Cython internal types are immutable"); - return -1; -} -#endif -static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = { - {"__module__", __pyx_CommonTypesMetaclass_get_module, NULL, NULL, NULL}, - {0, 0, 0, 0, 0} -}; -static PyType_Slot __pyx_CommonTypesMetaclass_slots[] = { - {Py_tp_getset, (void *)__pyx_CommonTypesMetaclass_getset}, - #if __PYX_LIMITED_VERSION_HEX < 0x030A0000 - {Py_tp_call, (void*)__pyx_CommonTypesMetaclass_call}, - {Py_tp_new, (void*)__pyx_CommonTypesMetaclass_call}, - {Py_tp_setattro, (void*)__pyx_CommonTypesMetaclass_setattr}, - #endif - {0, 0} -}; -static PyType_Spec __pyx_CommonTypesMetaclass_spec = { - __PYX_TYPE_MODULE_PREFIX "_common_types_metatype", - 0, - 0, - Py_TPFLAGS_IMMUTABLETYPE | - Py_TPFLAGS_DISALLOW_INSTANTIATION | - Py_TPFLAGS_DEFAULT, - __pyx_CommonTypesMetaclass_slots -}; -static int __pyx_CommonTypesMetaclass_init(PyObject *module) { - __pyx_mstatetype *mstate = __Pyx_PyModule_GetState(module); - PyObject *bases = PyTuple_Pack(1, &PyType_Type); - if (unlikely(!bases)) { - return -1; - } - mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases); - Py_DECREF(bases); - if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) { - return -1; - } - return 0; -} - -/* PyMethodNew (used by CythonFunctionShared) */ -#if CYTHON_COMPILING_IN_LIMITED_API -static PyObject *__Pyx_PyMethod_New(PyObject *func, PyObject *self, PyObject *typ) { - PyObject *result; - CYTHON_UNUSED_VAR(typ); - if (!self) - return __Pyx_NewRef(func); - #if __PYX_LIMITED_VERSION_HEX >= 0x030C0000 - { - PyObject *args[] = {func, self}; - result = PyObject_Vectorcall(__pyx_mstate_global->__Pyx_CachedMethodType, args, 2, NULL); - } - #else - result = PyObject_CallFunctionObjArgs(__pyx_mstate_global->__Pyx_CachedMethodType, func, self, NULL); - #endif - return result; -} -#else -static PyObject *__Pyx_PyMethod_New(PyObject *func, PyObject *self, PyObject *typ) { - CYTHON_UNUSED_VAR(typ); - if (!self) - return __Pyx_NewRef(func); - return PyMethod_New(func, self); -} -#endif - -/* PyVectorcallFastCallDict (used by CythonFunctionShared) */ -#if CYTHON_METH_FASTCALL && CYTHON_VECTORCALL -static PyObject *__Pyx_PyVectorcall_FastCallDict_kw(PyObject *func, __pyx_vectorcallfunc vc, PyObject *const *args, size_t nargs, PyObject *kw) -{ - PyObject *res = NULL; - PyObject *kwnames; - PyObject **newargs; - PyObject **kwvalues; - Py_ssize_t i; - #if CYTHON_AVOID_BORROWED_REFS - PyObject *pos; - #else - Py_ssize_t pos; - #endif - size_t j; - PyObject *key, *value; - unsigned long keys_are_strings; - #if !CYTHON_ASSUME_SAFE_SIZE - Py_ssize_t nkw = PyDict_Size(kw); - if (unlikely(nkw == -1)) return NULL; - #else - Py_ssize_t nkw = PyDict_GET_SIZE(kw); - #endif - newargs = (PyObject **)PyMem_Malloc((nargs + (size_t)nkw) * sizeof(args[0])); - if (unlikely(newargs == NULL)) { - PyErr_NoMemory(); - return NULL; - } - for (j = 0; j < nargs; j++) newargs[j] = args[j]; - kwnames = PyTuple_New(nkw); - if (unlikely(kwnames == NULL)) { - PyMem_Free(newargs); - return NULL; - } - kwvalues = newargs + nargs; - pos = 0; - i = 0; - keys_are_strings = Py_TPFLAGS_UNICODE_SUBCLASS; - while (__Pyx_PyDict_NextRef(kw, &pos, &key, &value)) { - keys_are_strings &= - #if CYTHON_COMPILING_IN_LIMITED_API - PyType_GetFlags(Py_TYPE(key)); - #else - Py_TYPE(key)->tp_flags; - #endif - #if !CYTHON_ASSUME_SAFE_MACROS - if (unlikely(PyTuple_SetItem(kwnames, i, key) < 0)) goto cleanup; - #else - PyTuple_SET_ITEM(kwnames, i, key); - #endif - kwvalues[i] = value; - i++; - } - if (unlikely(!keys_are_strings)) { - PyErr_SetString(PyExc_TypeError, "keywords must be strings"); - goto cleanup; - } - res = vc(func, newargs, nargs, kwnames); -cleanup: - #if CYTHON_AVOID_BORROWED_REFS - Py_DECREF(pos); - #endif - Py_DECREF(kwnames); - for (i = 0; i < nkw; i++) - Py_DECREF(kwvalues[i]); - PyMem_Free(newargs); - return res; -} -static CYTHON_INLINE PyObject *__Pyx_PyVectorcall_FastCallDict(PyObject *func, __pyx_vectorcallfunc vc, PyObject *const *args, size_t nargs, PyObject *kw) -{ - Py_ssize_t kw_size = - likely(kw == NULL) ? - 0 : -#if !CYTHON_ASSUME_SAFE_SIZE - PyDict_Size(kw); -#else - PyDict_GET_SIZE(kw); -#endif - if (kw_size == 0) { - return vc(func, args, nargs, NULL); - } -#if !CYTHON_ASSUME_SAFE_SIZE - else if (unlikely(kw_size == -1)) { - return NULL; - } -#endif - return __Pyx_PyVectorcall_FastCallDict_kw(func, vc, args, nargs, kw); -} -#endif - -/* CythonFunctionShared (used by CythonFunction) */ -#if CYTHON_COMPILING_IN_LIMITED_API -static CYTHON_INLINE int __Pyx__IsSameCyOrCFunctionNoMethod(PyObject *func, void (*cfunc)(void)) { - if (__Pyx_CyFunction_Check(func)) { - return PyCFunction_GetFunction(((__pyx_CyFunctionObject*)func)->func) == (PyCFunction) cfunc; - } else if (PyCFunction_Check(func)) { - return PyCFunction_GetFunction(func) == (PyCFunction) cfunc; - } - return 0; -} -static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void (*cfunc)(void)) { - if ((PyObject*)Py_TYPE(func) == __pyx_mstate_global->__Pyx_CachedMethodType) { - int result; - PyObject *newFunc = PyObject_GetAttr(func, __pyx_mstate_global->__pyx_n_u_func); - if (unlikely(!newFunc)) { - PyErr_Clear(); // It's only an optimization, so don't throw an error - return 0; - } - result = __Pyx__IsSameCyOrCFunctionNoMethod(newFunc, cfunc); - Py_DECREF(newFunc); - return result; - } - return __Pyx__IsSameCyOrCFunctionNoMethod(func, cfunc); -} -#else -static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void (*cfunc)(void)) { - if (PyMethod_Check(func)) { - func = PyMethod_GET_FUNCTION(func); - } - return __Pyx_CyOrPyCFunction_Check(func) && __Pyx_CyOrPyCFunction_GET_FUNCTION(func) == (PyCFunction) cfunc; -} -#endif -static CYTHON_INLINE void __Pyx__CyFunction_SetClassObj(__pyx_CyFunctionObject* f, PyObject* classobj) { -#if PY_VERSION_HEX < 0x030900B1 || CYTHON_COMPILING_IN_LIMITED_API - __Pyx_Py_XDECREF_SET( - __Pyx_CyFunction_GetClassObj(f), - ((classobj) ? __Pyx_NewRef(classobj) : NULL)); -#else - __Pyx_Py_XDECREF_SET( - ((PyCMethodObject *) (f))->mm_class, - (PyTypeObject*)((classobj) ? __Pyx_NewRef(classobj) : NULL)); -#endif -} -static PyObject * -__Pyx_CyFunction_get_doc_locked(__pyx_CyFunctionObject *op) -{ - if (unlikely(op->func_doc == NULL)) { -#if CYTHON_COMPILING_IN_LIMITED_API - op->func_doc = PyObject_GetAttrString(op->func, "__doc__"); - if (unlikely(!op->func_doc)) return NULL; -#else - if (((PyCFunctionObject*)op)->m_ml->ml_doc) { - op->func_doc = PyUnicode_FromString(((PyCFunctionObject*)op)->m_ml->ml_doc); - if (unlikely(op->func_doc == NULL)) - return NULL; - } else { - Py_INCREF(Py_None); - return Py_None; - } -#endif - } - Py_INCREF(op->func_doc); - return op->func_doc; -} -static PyObject * -__Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, void *closure) { - PyObject *result; - CYTHON_UNUSED_VAR(closure); - __Pyx_BEGIN_CRITICAL_SECTION(op); - result = __Pyx_CyFunction_get_doc_locked(op); - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static int -__Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value, void *context) -{ - CYTHON_UNUSED_VAR(context); - if (value == NULL) { - value = Py_None; - } - Py_INCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->func_doc, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_name_locked(__pyx_CyFunctionObject *op) -{ - if (unlikely(op->func_name == NULL)) { -#if CYTHON_COMPILING_IN_LIMITED_API - op->func_name = PyObject_GetAttrString(op->func, "__name__"); -#else - op->func_name = PyUnicode_InternFromString(((PyCFunctionObject*)op)->m_ml->ml_name); -#endif - if (unlikely(op->func_name == NULL)) - return NULL; - } - Py_INCREF(op->func_name); - return op->func_name; -} -static PyObject * -__Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op, void *context) -{ - PyObject *result = NULL; - CYTHON_UNUSED_VAR(context); - __Pyx_BEGIN_CRITICAL_SECTION(op); - result = __Pyx_CyFunction_get_name_locked(op); - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static int -__Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value, void *context) -{ - CYTHON_UNUSED_VAR(context); - if (unlikely(value == NULL || !PyUnicode_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "__name__ must be set to a string object"); - return -1; - } - Py_INCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->func_name, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op, void *context) -{ - CYTHON_UNUSED_VAR(context); - PyObject *result; - __Pyx_BEGIN_CRITICAL_SECTION(op); - Py_INCREF(op->func_qualname); - result = op->func_qualname; - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static int -__Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value, void *context) -{ - CYTHON_UNUSED_VAR(context); - if (unlikely(value == NULL || !PyUnicode_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "__qualname__ must be set to a string object"); - return -1; - } - Py_INCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->func_qualname, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000 -static PyObject * -__Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op, void *context) -{ - CYTHON_UNUSED_VAR(context); - if (unlikely(op->func_dict == NULL)) { - op->func_dict = PyDict_New(); - if (unlikely(op->func_dict == NULL)) - return NULL; - } - Py_INCREF(op->func_dict); - return op->func_dict; -} -#endif -static PyObject * -__Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op, void *context) -{ - CYTHON_UNUSED_VAR(context); - Py_INCREF(op->func_globals); - return op->func_globals; -} -static PyObject * -__Pyx_CyFunction_get_closure(__pyx_CyFunctionObject *op, void *context) -{ - CYTHON_UNUSED_VAR(op); - CYTHON_UNUSED_VAR(context); - Py_INCREF(Py_None); - return Py_None; -} -static PyObject * -__Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op, void *context) -{ - PyObject* result = (op->func_code) ? op->func_code : Py_None; - CYTHON_UNUSED_VAR(context); - Py_INCREF(result); - return result; -} -static int -__Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) { - int result = 0; - PyObject *res = op->defaults_getter((PyObject *) op); - if (unlikely(!res)) - return -1; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - op->defaults_tuple = PyTuple_GET_ITEM(res, 0); - Py_INCREF(op->defaults_tuple); - op->defaults_kwdict = PyTuple_GET_ITEM(res, 1); - Py_INCREF(op->defaults_kwdict); - #else - op->defaults_tuple = __Pyx_PySequence_ITEM(res, 0); - if (unlikely(!op->defaults_tuple)) result = -1; - else { - op->defaults_kwdict = __Pyx_PySequence_ITEM(res, 1); - if (unlikely(!op->defaults_kwdict)) result = -1; - } - #endif - Py_DECREF(res); - return result; -} -static int -__Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value, void *context) { - CYTHON_UNUSED_VAR(context); - if (!value) { - value = Py_None; - } else if (unlikely(value != Py_None && !PyTuple_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "__defaults__ must be set to a tuple object"); - return -1; - } - PyErr_WarnEx(PyExc_RuntimeWarning, "changes to cyfunction.__defaults__ will not " - "currently affect the values used in function calls", 1); - Py_INCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->defaults_tuple, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_defaults_locked(__pyx_CyFunctionObject *op) { - PyObject* result = op->defaults_tuple; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (unlikely(__Pyx_CyFunction_init_defaults(op) < 0)) return NULL; - result = op->defaults_tuple; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static PyObject * -__Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op, void *context) { - PyObject* result = NULL; - CYTHON_UNUSED_VAR(context); - __Pyx_BEGIN_CRITICAL_SECTION(op); - result = __Pyx_CyFunction_get_defaults_locked(op); - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static int -__Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value, void *context) { - CYTHON_UNUSED_VAR(context); - if (!value) { - value = Py_None; - } else if (unlikely(value != Py_None && !PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "__kwdefaults__ must be set to a dict object"); - return -1; - } - PyErr_WarnEx(PyExc_RuntimeWarning, "changes to cyfunction.__kwdefaults__ will not " - "currently affect the values used in function calls", 1); - Py_INCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->defaults_kwdict, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults_locked(__pyx_CyFunctionObject *op) { - PyObject* result = op->defaults_kwdict; - if (unlikely(!result)) { - if (op->defaults_getter) { - if (unlikely(__Pyx_CyFunction_init_defaults(op) < 0)) return NULL; - result = op->defaults_kwdict; - } else { - result = Py_None; - } - } - Py_INCREF(result); - return result; -} -static PyObject * -__Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op, void *context) { - PyObject* result; - CYTHON_UNUSED_VAR(context); - __Pyx_BEGIN_CRITICAL_SECTION(op); - result = __Pyx_CyFunction_get_kwdefaults_locked(op); - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static int -__Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value, void *context) { - CYTHON_UNUSED_VAR(context); - if (!value || value == Py_None) { - value = NULL; - } else if (unlikely(!PyDict_Check(value))) { - PyErr_SetString(PyExc_TypeError, - "__annotations__ must be set to a dict object"); - return -1; - } - Py_XINCREF(value); - __Pyx_BEGIN_CRITICAL_SECTION(op); - __Pyx_Py_XDECREF_SET(op->func_annotations, value); - __Pyx_END_CRITICAL_SECTION(); - return 0; -} -static PyObject * -__Pyx_CyFunction_get_annotations_locked(__pyx_CyFunctionObject *op) { - PyObject* result = op->func_annotations; - if (unlikely(!result)) { - result = PyDict_New(); - if (unlikely(!result)) return NULL; - op->func_annotations = result; - } - Py_INCREF(result); - return result; -} -static PyObject * -__Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, void *context) { - PyObject *result; - CYTHON_UNUSED_VAR(context); - __Pyx_BEGIN_CRITICAL_SECTION(op); - result = __Pyx_CyFunction_get_annotations_locked(op); - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static PyObject * -__Pyx_CyFunction_get_is_coroutine_value(__pyx_CyFunctionObject *op) { - int is_coroutine = op->flags & __Pyx_CYFUNCTION_COROUTINE; - if (is_coroutine) { - PyObject *is_coroutine_value, *module, *fromlist, *marker = __pyx_mstate_global->__pyx_n_u_is_coroutine; - fromlist = PyList_New(1); - if (unlikely(!fromlist)) return NULL; - Py_INCREF(marker); -#if CYTHON_ASSUME_SAFE_MACROS - PyList_SET_ITEM(fromlist, 0, marker); -#else - if (unlikely(PyList_SetItem(fromlist, 0, marker) < 0)) { - Py_DECREF(marker); - Py_DECREF(fromlist); - return NULL; - } -#endif - module = PyImport_ImportModuleLevelObject(__pyx_mstate_global->__pyx_n_u_asyncio_coroutines, NULL, NULL, fromlist, 0); - Py_DECREF(fromlist); - if (unlikely(!module)) goto ignore; - is_coroutine_value = __Pyx_PyObject_GetAttrStr(module, marker); - Py_DECREF(module); - if (likely(is_coroutine_value)) { - return is_coroutine_value; - } -ignore: - PyErr_Clear(); - } - return __Pyx_PyBool_FromLong(is_coroutine); -} -static PyObject * -__Pyx_CyFunction_get_is_coroutine(__pyx_CyFunctionObject *op, void *context) { - PyObject *result; - CYTHON_UNUSED_VAR(context); - if (op->func_is_coroutine) { - return __Pyx_NewRef(op->func_is_coroutine); - } - result = __Pyx_CyFunction_get_is_coroutine_value(op); - if (unlikely(!result)) - return NULL; - __Pyx_BEGIN_CRITICAL_SECTION(op); - if (op->func_is_coroutine) { - Py_DECREF(result); - result = __Pyx_NewRef(op->func_is_coroutine); - } else { - op->func_is_coroutine = __Pyx_NewRef(result); - } - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static void __Pyx_CyFunction_raise_argument_count_error(__pyx_CyFunctionObject *func, const char* message, Py_ssize_t size) { -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *py_name = __Pyx_CyFunction_get_name(func, NULL); - if (!py_name) return; - PyErr_Format(PyExc_TypeError, - "%.200S() %s (%" CYTHON_FORMAT_SSIZE_T "d given)", - py_name, message, size); - Py_DECREF(py_name); -#else - const char* name = ((PyCFunctionObject*)func)->m_ml->ml_name; - PyErr_Format(PyExc_TypeError, - "%.200s() %s (%" CYTHON_FORMAT_SSIZE_T "d given)", - name, message, size); -#endif -} -static void __Pyx_CyFunction_raise_type_error(__pyx_CyFunctionObject *func, const char* message) { -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *py_name = __Pyx_CyFunction_get_name(func, NULL); - if (!py_name) return; - PyErr_Format(PyExc_TypeError, - "%.200S() %s", - py_name, message); - Py_DECREF(py_name); -#else - const char* name = ((PyCFunctionObject*)func)->m_ml->ml_name; - PyErr_Format(PyExc_TypeError, - "%.200s() %s", - name, message); -#endif -} -#if CYTHON_COMPILING_IN_LIMITED_API -static PyObject * -__Pyx_CyFunction_get_module(__pyx_CyFunctionObject *op, void *context) { - CYTHON_UNUSED_VAR(context); - return PyObject_GetAttrString(op->func, "__module__"); -} -static int -__Pyx_CyFunction_set_module(__pyx_CyFunctionObject *op, PyObject* value, void *context) { - CYTHON_UNUSED_VAR(context); - return PyObject_SetAttrString(op->func, "__module__", value); -} -#endif -static PyGetSetDef __pyx_CyFunction_getsets[] = { - {"func_doc", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {"__doc__", (getter)__Pyx_CyFunction_get_doc, (setter)__Pyx_CyFunction_set_doc, 0, 0}, - {"func_name", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {"__name__", (getter)__Pyx_CyFunction_get_name, (setter)__Pyx_CyFunction_set_name, 0, 0}, - {"__qualname__", (getter)__Pyx_CyFunction_get_qualname, (setter)__Pyx_CyFunction_set_qualname, 0, 0}, -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000 - {"func_dict", (getter)__Pyx_CyFunction_get_dict, (setter)PyObject_GenericSetDict, 0, 0}, - {"__dict__", (getter)__Pyx_CyFunction_get_dict, (setter)PyObject_GenericSetDict, 0, 0}, -#else - {"func_dict", (getter)PyObject_GenericGetDict, (setter)PyObject_GenericSetDict, 0, 0}, - {"__dict__", (getter)PyObject_GenericGetDict, (setter)PyObject_GenericSetDict, 0, 0}, -#endif - {"func_globals", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {"__globals__", (getter)__Pyx_CyFunction_get_globals, 0, 0, 0}, - {"func_closure", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {"__closure__", (getter)__Pyx_CyFunction_get_closure, 0, 0, 0}, - {"func_code", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {"__code__", (getter)__Pyx_CyFunction_get_code, 0, 0, 0}, - {"func_defaults", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {"__defaults__", (getter)__Pyx_CyFunction_get_defaults, (setter)__Pyx_CyFunction_set_defaults, 0, 0}, - {"__kwdefaults__", (getter)__Pyx_CyFunction_get_kwdefaults, (setter)__Pyx_CyFunction_set_kwdefaults, 0, 0}, - {"__annotations__", (getter)__Pyx_CyFunction_get_annotations, (setter)__Pyx_CyFunction_set_annotations, 0, 0}, - {"_is_coroutine", (getter)__Pyx_CyFunction_get_is_coroutine, 0, 0, 0}, -#if CYTHON_COMPILING_IN_LIMITED_API - {"__module__", (getter)__Pyx_CyFunction_get_module, (setter)__Pyx_CyFunction_set_module, 0, 0}, -#endif - {0, 0, 0, 0, 0} -}; -static PyMemberDef __pyx_CyFunction_members[] = { -#if !CYTHON_COMPILING_IN_LIMITED_API - {"__module__", T_OBJECT, offsetof(PyCFunctionObject, m_module), 0, 0}, -#endif -#if PY_VERSION_HEX < 0x030C0000 || CYTHON_COMPILING_IN_LIMITED_API - {"__dictoffset__", T_PYSSIZET, offsetof(__pyx_CyFunctionObject, func_dict), READONLY, 0}, -#endif -#if CYTHON_METH_FASTCALL -#if CYTHON_COMPILING_IN_LIMITED_API - {"__vectorcalloffset__", T_PYSSIZET, offsetof(__pyx_CyFunctionObject, func_vectorcall), READONLY, 0}, -#else - {"__vectorcalloffset__", T_PYSSIZET, offsetof(PyCFunctionObject, vectorcall), READONLY, 0}, -#endif -#if CYTHON_COMPILING_IN_LIMITED_API - {"__weaklistoffset__", T_PYSSIZET, offsetof(__pyx_CyFunctionObject, func_weakreflist), READONLY, 0}, -#else - {"__weaklistoffset__", T_PYSSIZET, offsetof(PyCFunctionObject, m_weakreflist), READONLY, 0}, -#endif -#endif - {0, 0, 0, 0, 0} -}; -static PyObject * -__Pyx_CyFunction_reduce(__pyx_CyFunctionObject *m, PyObject *args) -{ - PyObject *result = NULL; - CYTHON_UNUSED_VAR(args); - __Pyx_BEGIN_CRITICAL_SECTION(m); - Py_INCREF(m->func_qualname); - result = m->func_qualname; - __Pyx_END_CRITICAL_SECTION(); - return result; -} -static PyMethodDef __pyx_CyFunction_methods[] = { - {"__reduce__", (PyCFunction)__Pyx_CyFunction_reduce, METH_VARARGS, 0}, - {0, 0, 0, 0} -}; -#if CYTHON_COMPILING_IN_LIMITED_API -#define __Pyx_CyFunction_weakreflist(cyfunc) ((cyfunc)->func_weakreflist) -#else -#define __Pyx_CyFunction_weakreflist(cyfunc) (((PyCFunctionObject*)cyfunc)->m_weakreflist) -#endif -static PyObject *__Pyx_CyFunction_Init(__pyx_CyFunctionObject *op, PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { -#if !CYTHON_COMPILING_IN_LIMITED_API - PyCFunctionObject *cf = (PyCFunctionObject*) op; -#endif - if (unlikely(op == NULL)) - return NULL; -#if CYTHON_COMPILING_IN_LIMITED_API - op->func = PyCFunction_NewEx(ml, (PyObject*)op, module); - if (unlikely(!op->func)) return NULL; -#endif - op->flags = flags; - __Pyx_CyFunction_weakreflist(op) = NULL; -#if !CYTHON_COMPILING_IN_LIMITED_API - cf->m_ml = ml; - cf->m_self = (PyObject *) op; -#endif - Py_XINCREF(closure); - op->func_closure = closure; -#if !CYTHON_COMPILING_IN_LIMITED_API - Py_XINCREF(module); - cf->m_module = module; -#endif -#if PY_VERSION_HEX < 0x030C0000 || CYTHON_COMPILING_IN_LIMITED_API - op->func_dict = NULL; -#endif - op->func_name = NULL; - Py_INCREF(qualname); - op->func_qualname = qualname; - op->func_doc = NULL; -#if PY_VERSION_HEX < 0x030900B1 || CYTHON_COMPILING_IN_LIMITED_API - op->func_classobj = NULL; -#else - ((PyCMethodObject*)op)->mm_class = NULL; -#endif - op->func_globals = globals; - Py_INCREF(op->func_globals); - Py_XINCREF(code); - op->func_code = code; - op->defaults = NULL; - op->defaults_tuple = NULL; - op->defaults_kwdict = NULL; - op->defaults_getter = NULL; - op->func_annotations = NULL; - op->func_is_coroutine = NULL; -#if CYTHON_METH_FASTCALL - switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS | METH_O | METH_KEYWORDS | METH_METHOD)) { - case METH_NOARGS: - __Pyx_CyFunction_func_vectorcall(op) = __Pyx_CyFunction_Vectorcall_NOARGS; - break; - case METH_O: - __Pyx_CyFunction_func_vectorcall(op) = __Pyx_CyFunction_Vectorcall_O; - break; - case METH_METHOD | METH_FASTCALL | METH_KEYWORDS: - __Pyx_CyFunction_func_vectorcall(op) = __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD; - break; - case METH_FASTCALL | METH_KEYWORDS: - __Pyx_CyFunction_func_vectorcall(op) = __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS; - break; - case METH_VARARGS | METH_KEYWORDS: - __Pyx_CyFunction_func_vectorcall(op) = NULL; - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags for CyFunction"); - Py_DECREF(op); - return NULL; - } -#endif - return (PyObject *) op; -} -static int -__Pyx_CyFunction_clear(__pyx_CyFunctionObject *m) -{ - Py_CLEAR(m->func_closure); -#if CYTHON_COMPILING_IN_LIMITED_API - Py_CLEAR(m->func); -#else - Py_CLEAR(((PyCFunctionObject*)m)->m_module); -#endif -#if PY_VERSION_HEX < 0x030C0000 || CYTHON_COMPILING_IN_LIMITED_API - Py_CLEAR(m->func_dict); -#elif PY_VERSION_HEX < 0x030d0000 - _PyObject_ClearManagedDict((PyObject*)m); -#else - PyObject_ClearManagedDict((PyObject*)m); -#endif - Py_CLEAR(m->func_name); - Py_CLEAR(m->func_qualname); - Py_CLEAR(m->func_doc); - Py_CLEAR(m->func_globals); - Py_CLEAR(m->func_code); -#if !CYTHON_COMPILING_IN_LIMITED_API -#if PY_VERSION_HEX < 0x030900B1 - Py_CLEAR(__Pyx_CyFunction_GetClassObj(m)); -#else - { - PyObject *cls = (PyObject*) ((PyCMethodObject *) (m))->mm_class; - ((PyCMethodObject *) (m))->mm_class = NULL; - Py_XDECREF(cls); - } -#endif -#endif - Py_CLEAR(m->defaults_tuple); - Py_CLEAR(m->defaults_kwdict); - Py_CLEAR(m->func_annotations); - Py_CLEAR(m->func_is_coroutine); - Py_CLEAR(m->defaults); - return 0; -} -static void __Pyx__CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - if (__Pyx_CyFunction_weakreflist(m) != NULL) - PyObject_ClearWeakRefs((PyObject *) m); - __Pyx_CyFunction_clear(m); - __Pyx_PyHeapTypeObject_GC_Del(m); -} -static void __Pyx_CyFunction_dealloc(__pyx_CyFunctionObject *m) -{ - PyObject_GC_UnTrack(m); - __Pyx__CyFunction_dealloc(m); -} -static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) -{ - { - int e = __Pyx_call_type_traverse((PyObject*)m, 1, visit, arg); - if (e) return e; - } - Py_VISIT(m->func_closure); -#if CYTHON_COMPILING_IN_LIMITED_API - Py_VISIT(m->func); -#else - Py_VISIT(((PyCFunctionObject*)m)->m_module); -#endif -#if PY_VERSION_HEX < 0x030C0000 || CYTHON_COMPILING_IN_LIMITED_API - Py_VISIT(m->func_dict); -#else - { - int e = -#if PY_VERSION_HEX < 0x030d0000 - _PyObject_VisitManagedDict -#else - PyObject_VisitManagedDict -#endif - ((PyObject*)m, visit, arg); - if (e != 0) return e; - } -#endif - __Pyx_VISIT_CONST(m->func_name); - __Pyx_VISIT_CONST(m->func_qualname); - Py_VISIT(m->func_doc); - Py_VISIT(m->func_globals); - __Pyx_VISIT_CONST(m->func_code); -#if !CYTHON_COMPILING_IN_LIMITED_API - Py_VISIT(__Pyx_CyFunction_GetClassObj(m)); -#endif - Py_VISIT(m->defaults_tuple); - Py_VISIT(m->defaults_kwdict); - Py_VISIT(m->func_is_coroutine); - Py_VISIT(m->defaults); - return 0; -} -static PyObject* -__Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) -{ - PyObject *repr; - __Pyx_BEGIN_CRITICAL_SECTION(op); - repr = PyUnicode_FromFormat("", - op->func_qualname, (void *)op); - __Pyx_END_CRITICAL_SECTION(); - return repr; -} -static PyObject * __Pyx_CyFunction_CallMethod(PyObject *func, PyObject *self, PyObject *arg, PyObject *kw) { -#if CYTHON_COMPILING_IN_LIMITED_API - PyObject *f = ((__pyx_CyFunctionObject*)func)->func; - PyCFunction meth; - int flags; - meth = PyCFunction_GetFunction(f); - if (unlikely(!meth)) return NULL; - flags = PyCFunction_GetFlags(f); - if (unlikely(flags < 0)) return NULL; -#else - PyCFunctionObject* f = (PyCFunctionObject*)func; - PyCFunction meth = f->m_ml->ml_meth; - int flags = f->m_ml->ml_flags; -#endif - Py_ssize_t size; - switch (flags & (METH_VARARGS | METH_KEYWORDS | METH_NOARGS | METH_O)) { - case METH_VARARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) - return (*meth)(self, arg); - break; - case METH_VARARGS | METH_KEYWORDS: - return (*(PyCFunctionWithKeywords)(void(*)(void))meth)(self, arg, kw); - case METH_NOARGS: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { -#if CYTHON_ASSUME_SAFE_SIZE - size = PyTuple_GET_SIZE(arg); -#else - size = PyTuple_Size(arg); - if (unlikely(size < 0)) return NULL; -#endif - if (likely(size == 0)) - return (*meth)(self, NULL); - __Pyx_CyFunction_raise_argument_count_error( - (__pyx_CyFunctionObject*)func, - "takes no arguments", size); - return NULL; - } - break; - case METH_O: - if (likely(kw == NULL || PyDict_Size(kw) == 0)) { -#if CYTHON_ASSUME_SAFE_SIZE - size = PyTuple_GET_SIZE(arg); -#else - size = PyTuple_Size(arg); - if (unlikely(size < 0)) return NULL; -#endif - if (likely(size == 1)) { - PyObject *result, *arg0; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - arg0 = PyTuple_GET_ITEM(arg, 0); - #else - arg0 = __Pyx_PySequence_ITEM(arg, 0); if (unlikely(!arg0)) return NULL; - #endif - result = (*meth)(self, arg0); - #if !(CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS) - Py_DECREF(arg0); - #endif - return result; - } - __Pyx_CyFunction_raise_argument_count_error( - (__pyx_CyFunctionObject*)func, - "takes exactly one argument", size); - return NULL; - } - break; - default: - PyErr_SetString(PyExc_SystemError, "Bad call flags for CyFunction"); - return NULL; - } - __Pyx_CyFunction_raise_type_error( - (__pyx_CyFunctionObject*)func, "takes no keyword arguments"); - return NULL; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject *kw) { - PyObject *self, *result; -#if CYTHON_COMPILING_IN_LIMITED_API - self = PyCFunction_GetSelf(((__pyx_CyFunctionObject*)func)->func); - if (unlikely(!self) && PyErr_Occurred()) return NULL; -#else - self = ((PyCFunctionObject*)func)->m_self; -#endif - result = __Pyx_CyFunction_CallMethod(func, self, arg, kw); - return result; -} -static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, PyObject *kw) { - PyObject *result; - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func; -#if CYTHON_METH_FASTCALL && CYTHON_VECTORCALL - __pyx_vectorcallfunc vc = __Pyx_CyFunction_func_vectorcall(cyfunc); - if (vc) { -#if CYTHON_ASSUME_SAFE_MACROS && CYTHON_ASSUME_SAFE_SIZE - return __Pyx_PyVectorcall_FastCallDict(func, vc, &PyTuple_GET_ITEM(args, 0), (size_t)PyTuple_GET_SIZE(args), kw); -#else - (void) &__Pyx_PyVectorcall_FastCallDict; - return PyVectorcall_Call(func, args, kw); -#endif - } -#endif - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - Py_ssize_t argc; - PyObject *new_args; - PyObject *self; -#if CYTHON_ASSUME_SAFE_SIZE - argc = PyTuple_GET_SIZE(args); -#else - argc = PyTuple_Size(args); - if (unlikely(argc < 0)) return NULL; -#endif - new_args = PyTuple_GetSlice(args, 1, argc); - if (unlikely(!new_args)) - return NULL; - self = PyTuple_GetItem(args, 0); - if (unlikely(!self)) { - Py_DECREF(new_args); - PyErr_Format(PyExc_TypeError, - "unbound method %.200S() needs an argument", - cyfunc->func_qualname); - return NULL; - } - result = __Pyx_CyFunction_CallMethod(func, self, new_args, kw); - Py_DECREF(new_args); - } else { - result = __Pyx_CyFunction_Call(func, args, kw); - } - return result; -} -#if CYTHON_METH_FASTCALL && CYTHON_VECTORCALL -static CYTHON_INLINE int __Pyx_CyFunction_Vectorcall_CheckArgs(__pyx_CyFunctionObject *cyfunc, Py_ssize_t nargs, PyObject *kwnames) -{ - int ret = 0; - if ((cyfunc->flags & __Pyx_CYFUNCTION_CCLASS) && !(cyfunc->flags & __Pyx_CYFUNCTION_STATICMETHOD)) { - if (unlikely(nargs < 1)) { - __Pyx_CyFunction_raise_type_error( - cyfunc, "needs an argument"); - return -1; - } - ret = 1; - } - if (unlikely(kwnames) && unlikely(__Pyx_PyTuple_GET_SIZE(kwnames))) { - __Pyx_CyFunction_raise_type_error( - cyfunc, "takes no keyword arguments"); - return -1; - } - return ret; -} -static PyObject * __Pyx_CyFunction_Vectorcall_NOARGS(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames) -{ - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *)func; - Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); - PyObject *self; -#if CYTHON_COMPILING_IN_LIMITED_API - PyCFunction meth = PyCFunction_GetFunction(cyfunc->func); - if (unlikely(!meth)) return NULL; -#else - PyCFunction meth = ((PyCFunctionObject*)cyfunc)->m_ml->ml_meth; -#endif - switch (__Pyx_CyFunction_Vectorcall_CheckArgs(cyfunc, nargs, kwnames)) { - case 1: - self = args[0]; - args += 1; - nargs -= 1; - break; - case 0: -#if CYTHON_COMPILING_IN_LIMITED_API - self = PyCFunction_GetSelf(((__pyx_CyFunctionObject*)cyfunc)->func); - if (unlikely(!self) && PyErr_Occurred()) return NULL; -#else - self = ((PyCFunctionObject*)cyfunc)->m_self; -#endif - break; - default: - return NULL; - } - if (unlikely(nargs != 0)) { - __Pyx_CyFunction_raise_argument_count_error( - cyfunc, "takes no arguments", nargs); - return NULL; - } - return meth(self, NULL); -} -static PyObject * __Pyx_CyFunction_Vectorcall_O(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames) -{ - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *)func; - Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); - PyObject *self; -#if CYTHON_COMPILING_IN_LIMITED_API - PyCFunction meth = PyCFunction_GetFunction(cyfunc->func); - if (unlikely(!meth)) return NULL; -#else - PyCFunction meth = ((PyCFunctionObject*)cyfunc)->m_ml->ml_meth; -#endif - switch (__Pyx_CyFunction_Vectorcall_CheckArgs(cyfunc, nargs, kwnames)) { - case 1: - self = args[0]; - args += 1; - nargs -= 1; - break; - case 0: -#if CYTHON_COMPILING_IN_LIMITED_API - self = PyCFunction_GetSelf(((__pyx_CyFunctionObject*)cyfunc)->func); - if (unlikely(!self) && PyErr_Occurred()) return NULL; -#else - self = ((PyCFunctionObject*)cyfunc)->m_self; -#endif - break; - default: - return NULL; - } - if (unlikely(nargs != 1)) { - __Pyx_CyFunction_raise_argument_count_error( - cyfunc, "takes exactly one argument", nargs); - return NULL; - } - return meth(self, args[0]); -} -static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames) -{ - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *)func; - Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); - PyObject *self; -#if CYTHON_COMPILING_IN_LIMITED_API - PyCFunction meth = PyCFunction_GetFunction(cyfunc->func); - if (unlikely(!meth)) return NULL; -#else - PyCFunction meth = ((PyCFunctionObject*)cyfunc)->m_ml->ml_meth; -#endif - switch (__Pyx_CyFunction_Vectorcall_CheckArgs(cyfunc, nargs, NULL)) { - case 1: - self = args[0]; - args += 1; - nargs -= 1; - break; - case 0: -#if CYTHON_COMPILING_IN_LIMITED_API - self = PyCFunction_GetSelf(((__pyx_CyFunctionObject*)cyfunc)->func); - if (unlikely(!self) && PyErr_Occurred()) return NULL; -#else - self = ((PyCFunctionObject*)cyfunc)->m_self; -#endif - break; - default: - return NULL; - } - return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))meth)(self, args, nargs, kwnames); -} -static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames) -{ - __pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *)func; - PyTypeObject *cls = (PyTypeObject *) __Pyx_CyFunction_GetClassObj(cyfunc); - Py_ssize_t nargs = PyVectorcall_NARGS(nargsf); - PyObject *self; -#if CYTHON_COMPILING_IN_LIMITED_API - PyCFunction meth = PyCFunction_GetFunction(cyfunc->func); - if (unlikely(!meth)) return NULL; -#else - PyCFunction meth = ((PyCFunctionObject*)cyfunc)->m_ml->ml_meth; -#endif - switch (__Pyx_CyFunction_Vectorcall_CheckArgs(cyfunc, nargs, NULL)) { - case 1: - self = args[0]; - args += 1; - nargs -= 1; - break; - case 0: -#if CYTHON_COMPILING_IN_LIMITED_API - self = PyCFunction_GetSelf(((__pyx_CyFunctionObject*)cyfunc)->func); - if (unlikely(!self) && PyErr_Occurred()) return NULL; -#else - self = ((PyCFunctionObject*)cyfunc)->m_self; -#endif - break; - default: - return NULL; - } - #if PY_VERSION_HEX < 0x030e00A6 - size_t nargs_value = (size_t) nargs; - #else - Py_ssize_t nargs_value = nargs; - #endif - return ((__Pyx_PyCMethod)(void(*)(void))meth)(self, cls, args, nargs_value, kwnames); -} -#endif -static PyType_Slot __pyx_CyFunctionType_slots[] = { - {Py_tp_dealloc, (void *)__Pyx_CyFunction_dealloc}, - {Py_tp_repr, (void *)__Pyx_CyFunction_repr}, - {Py_tp_call, (void *)__Pyx_CyFunction_CallAsMethod}, - {Py_tp_traverse, (void *)__Pyx_CyFunction_traverse}, - {Py_tp_clear, (void *)__Pyx_CyFunction_clear}, - {Py_tp_methods, (void *)__pyx_CyFunction_methods}, - {Py_tp_members, (void *)__pyx_CyFunction_members}, - {Py_tp_getset, (void *)__pyx_CyFunction_getsets}, - {Py_tp_descr_get, (void *)__Pyx_PyMethod_New}, - {0, 0}, -}; -static PyType_Spec __pyx_CyFunctionType_spec = { - __PYX_TYPE_MODULE_PREFIX "cython_function_or_method", - sizeof(__pyx_CyFunctionObject), - 0, -#ifdef Py_TPFLAGS_METHOD_DESCRIPTOR - Py_TPFLAGS_METHOD_DESCRIPTOR | -#endif -#if CYTHON_METH_FASTCALL -#if defined(Py_TPFLAGS_HAVE_VECTORCALL) - Py_TPFLAGS_HAVE_VECTORCALL | -#elif defined(_Py_TPFLAGS_HAVE_VECTORCALL) - _Py_TPFLAGS_HAVE_VECTORCALL | -#endif -#endif // CYTHON_METH_FASTCALL -#if PY_VERSION_HEX >= 0x030C0000 && !CYTHON_COMPILING_IN_LIMITED_API - Py_TPFLAGS_MANAGED_DICT | -#endif - Py_TPFLAGS_IMMUTABLETYPE | Py_TPFLAGS_DISALLOW_INSTANTIATION | - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE, - __pyx_CyFunctionType_slots -}; -static int __pyx_CyFunction_init(PyObject *module) { - __pyx_mstatetype *mstate = __Pyx_PyModule_GetState(module); - mstate->__pyx_CyFunctionType = __Pyx_FetchCommonTypeFromSpec( - mstate->__pyx_CommonTypesMetaclassType, module, &__pyx_CyFunctionType_spec, NULL); - if (unlikely(mstate->__pyx_CyFunctionType == NULL)) { - return -1; - } - return 0; -} -static CYTHON_INLINE PyObject *__Pyx_CyFunction_InitDefaults(PyObject *func, PyTypeObject *defaults_type) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults = PyObject_CallObject((PyObject*)defaults_type, NULL); // _PyObject_New(defaults_type); - if (unlikely(!m->defaults)) - return NULL; - return m->defaults; -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsTuple(PyObject *func, PyObject *tuple) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_tuple = tuple; - Py_INCREF(tuple); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetDefaultsKwDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->defaults_kwdict = dict; - Py_INCREF(dict); -} -static CYTHON_INLINE void __Pyx_CyFunction_SetAnnotationsDict(PyObject *func, PyObject *dict) { - __pyx_CyFunctionObject *m = (__pyx_CyFunctionObject *) func; - m->func_annotations = dict; - Py_INCREF(dict); -} - -/* CythonFunction */ -static PyObject *__Pyx_CyFunction_New(PyMethodDef *ml, int flags, PyObject* qualname, - PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) { - PyObject *op = __Pyx_CyFunction_Init( - PyObject_GC_New(__pyx_CyFunctionObject, __pyx_mstate_global->__pyx_CyFunctionType), - ml, flags, qualname, closure, module, globals, code - ); - if (likely(op)) { - PyObject_GC_Track(op); - } - return op; -} - -/* CLineInTraceback (used by AddTraceback) */ -#if CYTHON_CLINE_IN_TRACEBACK && CYTHON_CLINE_IN_TRACEBACK_RUNTIME -#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000 -#define __Pyx_PyProbablyModule_GetDict(o) __Pyx_XNewRef(PyModule_GetDict(o)) -#elif !CYTHON_COMPILING_IN_CPYTHON || CYTHON_COMPILING_IN_CPYTHON_FREETHREADING -#define __Pyx_PyProbablyModule_GetDict(o) PyObject_GenericGetDict(o, NULL); -#else -PyObject* __Pyx_PyProbablyModule_GetDict(PyObject *o) { - PyObject **dict_ptr = _PyObject_GetDictPtr(o); - return dict_ptr ? __Pyx_XNewRef(*dict_ptr) : NULL; -} -#endif -static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { - PyObject *use_cline = NULL; - PyObject *ptype, *pvalue, *ptraceback; - PyObject *cython_runtime_dict; - CYTHON_MAYBE_UNUSED_VAR(tstate); - if (unlikely(!__pyx_mstate_global->__pyx_cython_runtime)) { - return c_line; - } - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); - cython_runtime_dict = __Pyx_PyProbablyModule_GetDict(__pyx_mstate_global->__pyx_cython_runtime); - if (likely(cython_runtime_dict)) { - __PYX_PY_DICT_LOOKUP_IF_MODIFIED( - use_cline, cython_runtime_dict, - __Pyx_PyDict_SetDefault(cython_runtime_dict, __pyx_mstate_global->__pyx_n_u_cline_in_traceback, Py_False)) - } - if (use_cline == NULL || use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { - c_line = 0; - } - Py_XDECREF(use_cline); - Py_XDECREF(cython_runtime_dict); - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - return c_line; -} -#endif - -/* CodeObjectCache (used by AddTraceback) */ -static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { - int start = 0, mid = 0, end = count - 1; - if (end >= 0 && code_line > entries[end].code_line) { - return count; - } - while (start < end) { - mid = start + (end - start) / 2; - if (code_line < entries[mid].code_line) { - end = mid; - } else if (code_line > entries[mid].code_line) { - start = mid + 1; - } else { - return mid; - } - } - if (code_line <= entries[mid].code_line) { - return mid; - } else { - return mid + 1; - } -} -static __Pyx_CachedCodeObjectType *__pyx__find_code_object(struct __Pyx_CodeObjectCache *code_cache, int code_line) { - __Pyx_CachedCodeObjectType* code_object; - int pos; - if (unlikely(!code_line) || unlikely(!code_cache->entries)) { - return NULL; - } - pos = __pyx_bisect_code_objects(code_cache->entries, code_cache->count, code_line); - if (unlikely(pos >= code_cache->count) || unlikely(code_cache->entries[pos].code_line != code_line)) { - return NULL; - } - code_object = code_cache->entries[pos].code_object; - Py_INCREF(code_object); - return code_object; -} -static __Pyx_CachedCodeObjectType *__pyx_find_code_object(int code_line) { -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING && !CYTHON_ATOMICS - (void)__pyx__find_code_object; - return NULL; // Most implementation should have atomics. But otherwise, don't make it thread-safe, just miss. -#else - struct __Pyx_CodeObjectCache *code_cache = &__pyx_mstate_global->__pyx_code_cache; -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - __pyx_nonatomic_int_type old_count = __pyx_atomic_incr_acq_rel(&code_cache->accessor_count); - if (old_count < 0) { - __pyx_atomic_decr_acq_rel(&code_cache->accessor_count); - return NULL; - } -#endif - __Pyx_CachedCodeObjectType *result = __pyx__find_code_object(code_cache, code_line); -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - __pyx_atomic_decr_acq_rel(&code_cache->accessor_count); -#endif - return result; -#endif -} -static void __pyx__insert_code_object(struct __Pyx_CodeObjectCache *code_cache, int code_line, __Pyx_CachedCodeObjectType* code_object) -{ - int pos, i; - __Pyx_CodeObjectCacheEntry* entries = code_cache->entries; - if (unlikely(!code_line)) { - return; - } - if (unlikely(!entries)) { - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); - if (likely(entries)) { - code_cache->entries = entries; - code_cache->max_count = 64; - code_cache->count = 1; - entries[0].code_line = code_line; - entries[0].code_object = code_object; - Py_INCREF(code_object); - } - return; - } - pos = __pyx_bisect_code_objects(code_cache->entries, code_cache->count, code_line); - if ((pos < code_cache->count) && unlikely(code_cache->entries[pos].code_line == code_line)) { - __Pyx_CachedCodeObjectType* tmp = entries[pos].code_object; - entries[pos].code_object = code_object; - Py_INCREF(code_object); - Py_DECREF(tmp); - return; - } - if (code_cache->count == code_cache->max_count) { - int new_max = code_cache->max_count + 64; - entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( - code_cache->entries, ((size_t)new_max) * sizeof(__Pyx_CodeObjectCacheEntry)); - if (unlikely(!entries)) { - return; - } - code_cache->entries = entries; - code_cache->max_count = new_max; - } - for (i=code_cache->count; i>pos; i--) { - entries[i] = entries[i-1]; - } - entries[pos].code_line = code_line; - entries[pos].code_object = code_object; - code_cache->count++; - Py_INCREF(code_object); -} -static void __pyx_insert_code_object(int code_line, __Pyx_CachedCodeObjectType* code_object) { -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING && !CYTHON_ATOMICS - (void)__pyx__insert_code_object; - return; // Most implementation should have atomics. But otherwise, don't make it thread-safe, just fail. -#else - struct __Pyx_CodeObjectCache *code_cache = &__pyx_mstate_global->__pyx_code_cache; -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - __pyx_nonatomic_int_type expected = 0; - if (!__pyx_atomic_int_cmp_exchange(&code_cache->accessor_count, &expected, INT_MIN)) { - return; - } -#endif - __pyx__insert_code_object(code_cache, code_line, code_object); -#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING - __pyx_atomic_sub(&code_cache->accessor_count, INT_MIN); -#endif -#endif -} - -/* AddTraceback */ -#include "compile.h" -#include "frameobject.h" -#include "traceback.h" -#if PY_VERSION_HEX >= 0x030b00a6 && !CYTHON_COMPILING_IN_LIMITED_API && !defined(PYPY_VERSION) - #ifndef Py_BUILD_CORE - #define Py_BUILD_CORE 1 - #endif - #include "internal/pycore_frame.h" -#endif -#if CYTHON_COMPILING_IN_LIMITED_API -static PyObject *__Pyx_PyCode_Replace_For_AddTraceback(PyObject *code, PyObject *scratch_dict, - PyObject *firstlineno, PyObject *name) { - PyObject *replace = NULL; - if (unlikely(PyDict_SetItemString(scratch_dict, "co_firstlineno", firstlineno))) return NULL; - if (unlikely(PyDict_SetItemString(scratch_dict, "co_name", name))) return NULL; - replace = PyObject_GetAttrString(code, "replace"); - if (likely(replace)) { - PyObject *result = PyObject_Call(replace, __pyx_mstate_global->__pyx_empty_tuple, scratch_dict); - Py_DECREF(replace); - return result; - } - PyErr_Clear(); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyObject *code_object = NULL, *py_py_line = NULL, *py_funcname = NULL, *dict = NULL; - PyObject *replace = NULL, *getframe = NULL, *frame = NULL; - PyObject *exc_type, *exc_value, *exc_traceback; - int success = 0; - if (c_line) { - c_line = __Pyx_CLineForTraceback(__Pyx_PyThreadState_Current, c_line); - } - PyErr_Fetch(&exc_type, &exc_value, &exc_traceback); - code_object = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!code_object) { - code_object = Py_CompileString("_getframe()", filename, Py_eval_input); - if (unlikely(!code_object)) goto bad; - py_py_line = PyLong_FromLong(py_line); - if (unlikely(!py_py_line)) goto bad; - if (c_line) { - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - } else { - py_funcname = PyUnicode_FromString(funcname); - } - if (unlikely(!py_funcname)) goto bad; - dict = PyDict_New(); - if (unlikely(!dict)) goto bad; - { - PyObject *old_code_object = code_object; - code_object = __Pyx_PyCode_Replace_For_AddTraceback(code_object, dict, py_py_line, py_funcname); - Py_DECREF(old_code_object); - } - if (unlikely(!code_object)) goto bad; - __pyx_insert_code_object(c_line ? -c_line : py_line, code_object); - } else { - dict = PyDict_New(); - } - getframe = PySys_GetObject("_getframe"); - if (unlikely(!getframe)) goto bad; - if (unlikely(PyDict_SetItemString(dict, "_getframe", getframe))) goto bad; - frame = PyEval_EvalCode(code_object, dict, dict); - if (unlikely(!frame) || frame == Py_None) goto bad; - success = 1; - bad: - PyErr_Restore(exc_type, exc_value, exc_traceback); - Py_XDECREF(code_object); - Py_XDECREF(py_py_line); - Py_XDECREF(py_funcname); - Py_XDECREF(dict); - Py_XDECREF(replace); - if (success) { - PyTraceBack_Here( - (struct _frame*)frame); - } - Py_XDECREF(frame); -} -#else -static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( - const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = NULL; - PyObject *py_funcname = NULL; - if (c_line) { - py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); - if (!py_funcname) goto bad; - funcname = PyUnicode_AsUTF8(py_funcname); - if (!funcname) goto bad; - } - py_code = PyCode_NewEmpty(filename, funcname, py_line); - Py_XDECREF(py_funcname); - return py_code; -bad: - Py_XDECREF(py_funcname); - return NULL; -} -static void __Pyx_AddTraceback(const char *funcname, int c_line, - int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyFrameObject *py_frame = 0; - PyThreadState *tstate = __Pyx_PyThreadState_Current; - PyObject *ptype, *pvalue, *ptraceback; - if (c_line) { - c_line = __Pyx_CLineForTraceback(tstate, c_line); - } - py_code = __pyx_find_code_object(c_line ? -c_line : py_line); - if (!py_code) { - __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); - py_code = __Pyx_CreateCodeObjectForTraceback( - funcname, c_line, py_line, filename); - if (!py_code) { - /* If the code object creation fails, then we should clear the - fetched exception references and propagate the new exception */ - Py_XDECREF(ptype); - Py_XDECREF(pvalue); - Py_XDECREF(ptraceback); - goto bad; - } - __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); - __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); - } - py_frame = PyFrame_New( - tstate, /*PyThreadState *tstate,*/ - py_code, /*PyCodeObject *code,*/ - __pyx_mstate_global->__pyx_d, /*PyObject *globals,*/ - 0 /*PyObject *locals*/ - ); - if (!py_frame) goto bad; - __Pyx_PyFrame_SetLineNumber(py_frame, py_line); - PyTraceBack_Here(py_frame); -bad: - Py_XDECREF(py_code); - Py_XDECREF(py_frame); -} -#endif - -/* MemviewRefcount */ -#include -#ifndef _Py_NO_RETURN -#define _Py_NO_RETURN -#endif -_Py_NO_RETURN -static void __pyx_fatalerror(const char *fmt, ...) { - va_list vargs; - char msg[200]; -#if PY_VERSION_HEX >= 0x030A0000 || defined(HAVE_STDARG_PROTOTYPES) - va_start(vargs, fmt); -#else - va_start(vargs); -#endif - vsnprintf(msg, 200, fmt, vargs); - va_end(vargs); - Py_FatalError(msg); -} -static CYTHON_INLINE int -__pyx_add_acquisition_count_locked(__pyx_atomic_int_type *acquisition_count, - PyThread_type_lock lock) -{ - int result; - PyThread_acquire_lock(lock, 1); - result = (*acquisition_count)++; - PyThread_release_lock(lock); - return result; -} -static CYTHON_INLINE int -__pyx_sub_acquisition_count_locked(__pyx_atomic_int_type *acquisition_count, - PyThread_type_lock lock) -{ - int result; - PyThread_acquire_lock(lock, 1); - result = (*acquisition_count)--; - PyThread_release_lock(lock); - return result; -} -static CYTHON_INLINE void -__Pyx_INC_MEMVIEW(__Pyx_memviewslice *memslice, int have_gil, int lineno) -{ - __pyx_nonatomic_int_type old_acquisition_count; - struct __pyx_memoryview_obj *memview = memslice->memview; - if (unlikely(!memview || (PyObject *) memview == Py_None)) { - return; - } - old_acquisition_count = __pyx_add_acquisition_count(memview); - if (unlikely(old_acquisition_count <= 0)) { - if (likely(old_acquisition_count == 0)) { - if (have_gil) { - Py_INCREF((PyObject *) memview); - } else { - PyGILState_STATE _gilstate = PyGILState_Ensure(); - Py_INCREF((PyObject *) memview); - PyGILState_Release(_gilstate); - } - } else { - __pyx_fatalerror("Acquisition count is %d (line %d)", - old_acquisition_count+1, lineno); - } - } -} -static CYTHON_INLINE void __Pyx_XCLEAR_MEMVIEW(__Pyx_memviewslice *memslice, - int have_gil, int lineno) { - __pyx_nonatomic_int_type old_acquisition_count; - struct __pyx_memoryview_obj *memview = memslice->memview; - if (unlikely(!memview || (PyObject *) memview == Py_None)) { - memslice->memview = NULL; - return; - } - old_acquisition_count = __pyx_sub_acquisition_count(memview); - memslice->data = NULL; - if (likely(old_acquisition_count > 1)) { - memslice->memview = NULL; - } else if (likely(old_acquisition_count == 1)) { - if (have_gil) { - Py_CLEAR(memslice->memview); - } else { - PyGILState_STATE _gilstate = PyGILState_Ensure(); - Py_CLEAR(memslice->memview); - PyGILState_Release(_gilstate); - } - } else { - __pyx_fatalerror("Acquisition count is %d (line %d)", - old_acquisition_count-1, lineno); - } -} - -/* MemviewSliceIsContig */ -static int -__pyx_memviewslice_is_contig(const __Pyx_memviewslice mvs, char order, int ndim) -{ - int i, index, step, start; - Py_ssize_t itemsize = mvs.memview->view.itemsize; - if (order == 'F') { - step = 1; - start = 0; - } else { - step = -1; - start = ndim - 1; - } - for (i = 0; i < ndim; i++) { - index = start + step * i; - if (mvs.suboffsets[index] >= 0 || mvs.strides[index] != itemsize) - return 0; - itemsize *= mvs.shape[index]; - } - return 1; -} - -/* OverlappingSlices */ -static void -__pyx_get_array_memory_extents(__Pyx_memviewslice *slice, - void **out_start, void **out_end, - int ndim, size_t itemsize) -{ - char *start, *end; - int i; - start = end = slice->data; - for (i = 0; i < ndim; i++) { - Py_ssize_t stride = slice->strides[i]; - Py_ssize_t extent = slice->shape[i]; - if (extent == 0) { - *out_start = *out_end = start; - return; - } else { - if (stride > 0) - end += stride * (extent - 1); - else - start += stride * (extent - 1); - } - } - *out_start = start; - *out_end = end + itemsize; -} -static int -__pyx_slices_overlap(__Pyx_memviewslice *slice1, - __Pyx_memviewslice *slice2, - int ndim, size_t itemsize) -{ - void *start1, *end1, *start2, *end2; - __pyx_get_array_memory_extents(slice1, &start1, &end1, ndim, itemsize); - __pyx_get_array_memory_extents(slice2, &start2, &end2, ndim, itemsize); - return (start1 < end2) && (start2 < end1); -} - -/* MemviewSliceInit */ -static int -__Pyx_init_memviewslice(struct __pyx_memoryview_obj *memview, - int ndim, - __Pyx_memviewslice *memviewslice, - int memview_is_new_reference) -{ - __Pyx_RefNannyDeclarations - int i, retval=-1; - Py_buffer *buf = &memview->view; - __Pyx_RefNannySetupContext("init_memviewslice", 0); - if (unlikely(memviewslice->memview || memviewslice->data)) { - PyErr_SetString(PyExc_ValueError, - "memviewslice is already initialized!"); - goto fail; - } - if (buf->strides) { - for (i = 0; i < ndim; i++) { - memviewslice->strides[i] = buf->strides[i]; - } - } else { - Py_ssize_t stride = buf->itemsize; - for (i = ndim - 1; i >= 0; i--) { - memviewslice->strides[i] = stride; - stride *= buf->shape[i]; - } - } - for (i = 0; i < ndim; i++) { - memviewslice->shape[i] = buf->shape[i]; - if (buf->suboffsets) { - memviewslice->suboffsets[i] = buf->suboffsets[i]; - } else { - memviewslice->suboffsets[i] = -1; - } - } - memviewslice->memview = memview; - memviewslice->data = (char *)buf->buf; - if (__pyx_add_acquisition_count(memview) == 0 && !memview_is_new_reference) { - Py_INCREF((PyObject*)memview); - } - retval = 0; - goto no_fail; -fail: - memviewslice->memview = 0; - memviewslice->data = 0; - retval = -1; -no_fail: - __Pyx_RefNannyFinishContext(); - return retval; -} - -/* IsLittleEndian (used by BufferFormatCheck) */ -static CYTHON_INLINE int __Pyx_Is_Little_Endian(void) -{ - union { - uint32_t u32; - uint8_t u8[4]; - } S; - S.u32 = 0x01020304; - return S.u8[0] == 4; -} - -/* BufferFormatCheck (used by MemviewSliceValidateAndInit) */ -static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx, - __Pyx_BufFmt_StackElem* stack, - const __Pyx_TypeInfo* type) { - stack[0].field = &ctx->root; - stack[0].parent_offset = 0; - ctx->root.type = type; - ctx->root.name = "buffer dtype"; - ctx->root.offset = 0; - ctx->head = stack; - ctx->head->field = &ctx->root; - ctx->fmt_offset = 0; - ctx->head->parent_offset = 0; - ctx->new_packmode = '@'; - ctx->enc_packmode = '@'; - ctx->new_count = 1; - ctx->enc_count = 0; - ctx->enc_type = 0; - ctx->is_complex = 0; - ctx->is_valid_array = 0; - ctx->struct_alignment = 0; - while (type->typegroup == 'S') { - ++ctx->head; - ctx->head->field = type->fields; - ctx->head->parent_offset = 0; - type = type->fields->type; - } -} -static int __Pyx_BufFmt_ParseNumber(const char** ts) { - int count; - const char* t = *ts; - if (*t < '0' || *t > '9') { - return -1; - } else { - count = *t++ - '0'; - while (*t >= '0' && *t <= '9') { - count *= 10; - count += *t++ - '0'; - } - } - *ts = t; - return count; -} -static int __Pyx_BufFmt_ExpectNumber(const char **ts) { - int number = __Pyx_BufFmt_ParseNumber(ts); - if (number == -1) - PyErr_Format(PyExc_ValueError,\ - "Does not understand character buffer dtype format string ('%c')", **ts); - return number; -} -static void __Pyx_BufFmt_RaiseUnexpectedChar(char ch) { - PyErr_Format(PyExc_ValueError, - "Unexpected format string character: '%c'", ch); -} -static const char* __Pyx_BufFmt_DescribeTypeChar(char ch, int is_complex) { - switch (ch) { - case '?': return "'bool'"; - case 'c': return "'char'"; - case 'b': return "'signed char'"; - case 'B': return "'unsigned char'"; - case 'h': return "'short'"; - case 'H': return "'unsigned short'"; - case 'i': return "'int'"; - case 'I': return "'unsigned int'"; - case 'l': return "'long'"; - case 'L': return "'unsigned long'"; - case 'q': return "'long long'"; - case 'Q': return "'unsigned long long'"; - case 'f': return (is_complex ? "'complex float'" : "'float'"); - case 'd': return (is_complex ? "'complex double'" : "'double'"); - case 'g': return (is_complex ? "'complex long double'" : "'long double'"); - case 'T': return "a struct"; - case 'O': return "Python object"; - case 'P': return "a pointer"; - case 's': case 'p': return "a string"; - case 0: return "end"; - default: return "unparsable format string"; - } -} -static size_t __Pyx_BufFmt_TypeCharToStandardSize(char ch, int is_complex) { - switch (ch) { - case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; - case 'h': case 'H': return 2; - case 'i': case 'I': case 'l': case 'L': return 4; - case 'q': case 'Q': return 8; - case 'f': return (is_complex ? 8 : 4); - case 'd': return (is_complex ? 16 : 8); - case 'g': { - PyErr_SetString(PyExc_ValueError, "Python does not define a standard format string size for long double ('g').."); - return 0; - } - case 'O': case 'P': return sizeof(void*); - default: - __Pyx_BufFmt_RaiseUnexpectedChar(ch); - return 0; - } -} -static size_t __Pyx_BufFmt_TypeCharToNativeSize(char ch, int is_complex) { - switch (ch) { - case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; - case 'h': case 'H': return sizeof(short); - case 'i': case 'I': return sizeof(int); - case 'l': case 'L': return sizeof(long); - case 'q': case 'Q': return sizeof(PY_LONG_LONG); - case 'f': return sizeof(float) * (is_complex ? 2 : 1); - case 'd': return sizeof(double) * (is_complex ? 2 : 1); - case 'g': return sizeof(long double) * (is_complex ? 2 : 1); - case 'O': case 'P': return sizeof(void*); - default: { - __Pyx_BufFmt_RaiseUnexpectedChar(ch); - return 0; - } - } -} -typedef struct { char c; short x; } __Pyx_st_short; -typedef struct { char c; int x; } __Pyx_st_int; -typedef struct { char c; long x; } __Pyx_st_long; -typedef struct { char c; float x; } __Pyx_st_float; -typedef struct { char c; double x; } __Pyx_st_double; -typedef struct { char c; long double x; } __Pyx_st_longdouble; -typedef struct { char c; void *x; } __Pyx_st_void_p; -typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong; -static size_t __Pyx_BufFmt_TypeCharToAlignment(char ch, int is_complex) { - CYTHON_UNUSED_VAR(is_complex); - switch (ch) { - case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; - case 'h': case 'H': return sizeof(__Pyx_st_short) - sizeof(short); - case 'i': case 'I': return sizeof(__Pyx_st_int) - sizeof(int); - case 'l': case 'L': return sizeof(__Pyx_st_long) - sizeof(long); - case 'q': case 'Q': return sizeof(__Pyx_st_longlong) - sizeof(PY_LONG_LONG); - case 'f': return sizeof(__Pyx_st_float) - sizeof(float); - case 'd': return sizeof(__Pyx_st_double) - sizeof(double); - case 'g': return sizeof(__Pyx_st_longdouble) - sizeof(long double); - case 'P': case 'O': return sizeof(__Pyx_st_void_p) - sizeof(void*); - default: - __Pyx_BufFmt_RaiseUnexpectedChar(ch); - return 0; - } -} -/* These are for computing the padding at the end of the struct to align - on the first member of the struct. This will probably the same as above, - but we don't have any guarantees. - */ -typedef struct { short x; char c; } __Pyx_pad_short; -typedef struct { int x; char c; } __Pyx_pad_int; -typedef struct { long x; char c; } __Pyx_pad_long; -typedef struct { float x; char c; } __Pyx_pad_float; -typedef struct { double x; char c; } __Pyx_pad_double; -typedef struct { long double x; char c; } __Pyx_pad_longdouble; -typedef struct { void *x; char c; } __Pyx_pad_void_p; -typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong; -static size_t __Pyx_BufFmt_TypeCharToPadding(char ch, int is_complex) { - CYTHON_UNUSED_VAR(is_complex); - switch (ch) { - case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; - case 'h': case 'H': return sizeof(__Pyx_pad_short) - sizeof(short); - case 'i': case 'I': return sizeof(__Pyx_pad_int) - sizeof(int); - case 'l': case 'L': return sizeof(__Pyx_pad_long) - sizeof(long); - case 'q': case 'Q': return sizeof(__Pyx_pad_longlong) - sizeof(PY_LONG_LONG); - case 'f': return sizeof(__Pyx_pad_float) - sizeof(float); - case 'd': return sizeof(__Pyx_pad_double) - sizeof(double); - case 'g': return sizeof(__Pyx_pad_longdouble) - sizeof(long double); - case 'P': case 'O': return sizeof(__Pyx_pad_void_p) - sizeof(void*); - default: - __Pyx_BufFmt_RaiseUnexpectedChar(ch); - return 0; - } -} -static char __Pyx_BufFmt_TypeCharToGroup(char ch, int is_complex) { - switch (ch) { - case 'c': - return 'H'; - case 'b': case 'h': case 'i': - case 'l': case 'q': case 's': case 'p': - return 'I'; - case '?': case 'B': case 'H': case 'I': case 'L': case 'Q': - return 'U'; - case 'f': case 'd': case 'g': - return (is_complex ? 'C' : 'R'); - case 'O': - return 'O'; - case 'P': - return 'P'; - default: { - __Pyx_BufFmt_RaiseUnexpectedChar(ch); - return 0; - } - } -} -static void __Pyx_BufFmt_RaiseExpected(__Pyx_BufFmt_Context* ctx) { - if (ctx->head == NULL || ctx->head->field == &ctx->root) { - const char* expected; - const char* quote; - if (ctx->head == NULL) { - expected = "end"; - quote = ""; - } else { - expected = ctx->head->field->type->name; - quote = "'"; - } - PyErr_Format(PyExc_ValueError, - "Buffer dtype mismatch, expected %s%s%s but got %s", - quote, expected, quote, - __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex)); - } else { - const __Pyx_StructField* field = ctx->head->field; - const __Pyx_StructField* parent = (ctx->head - 1)->field; - PyErr_Format(PyExc_ValueError, - "Buffer dtype mismatch, expected '%s' but got %s in '%s.%s'", - field->type->name, __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex), - parent->type->name, field->name); - } -} -static int __Pyx_BufFmt_ProcessTypeChunk(__Pyx_BufFmt_Context* ctx) { - char group; - size_t size, offset, arraysize = 1; - if (ctx->enc_type == 0) return 0; - if (ctx->head->field->type->arraysize[0]) { - int i, ndim = 0; - if (ctx->enc_type == 's' || ctx->enc_type == 'p') { - ctx->is_valid_array = ctx->head->field->type->ndim == 1; - ndim = 1; - if (ctx->enc_count != ctx->head->field->type->arraysize[0]) { - PyErr_Format(PyExc_ValueError, - "Expected a dimension of size %zu, got %zu", - ctx->head->field->type->arraysize[0], ctx->enc_count); - return -1; - } - } - if (!ctx->is_valid_array) { - PyErr_Format(PyExc_ValueError, "Expected %d dimensions, got %d", - ctx->head->field->type->ndim, ndim); - return -1; - } - for (i = 0; i < ctx->head->field->type->ndim; i++) { - arraysize *= ctx->head->field->type->arraysize[i]; - } - ctx->is_valid_array = 0; - ctx->enc_count = 1; - } - group = __Pyx_BufFmt_TypeCharToGroup(ctx->enc_type, ctx->is_complex); - do { - const __Pyx_StructField* field = ctx->head->field; - const __Pyx_TypeInfo* type = field->type; - if (ctx->enc_packmode == '@' || ctx->enc_packmode == '^') { - size = __Pyx_BufFmt_TypeCharToNativeSize(ctx->enc_type, ctx->is_complex); - } else { - size = __Pyx_BufFmt_TypeCharToStandardSize(ctx->enc_type, ctx->is_complex); - } - if (ctx->enc_packmode == '@') { - size_t align_at = __Pyx_BufFmt_TypeCharToAlignment(ctx->enc_type, ctx->is_complex); - size_t align_mod_offset; - if (align_at == 0) return -1; - align_mod_offset = ctx->fmt_offset % align_at; - if (align_mod_offset > 0) ctx->fmt_offset += align_at - align_mod_offset; - if (ctx->struct_alignment == 0) - ctx->struct_alignment = __Pyx_BufFmt_TypeCharToPadding(ctx->enc_type, - ctx->is_complex); - } - if (type->size != size || type->typegroup != group) { - if (type->typegroup == 'C' && type->fields != NULL) { - size_t parent_offset = ctx->head->parent_offset + field->offset; - ++ctx->head; - ctx->head->field = type->fields; - ctx->head->parent_offset = parent_offset; - continue; - } - if ((type->typegroup == 'H' || group == 'H') && type->size == size) { - } else { - __Pyx_BufFmt_RaiseExpected(ctx); - return -1; - } - } - offset = ctx->head->parent_offset + field->offset; - if (ctx->fmt_offset != offset) { - PyErr_Format(PyExc_ValueError, - "Buffer dtype mismatch; next field is at offset %" CYTHON_FORMAT_SSIZE_T "d but %" CYTHON_FORMAT_SSIZE_T "d expected", - (Py_ssize_t)ctx->fmt_offset, (Py_ssize_t)offset); - return -1; - } - ctx->fmt_offset += size; - if (arraysize) - ctx->fmt_offset += (arraysize - 1) * size; - --ctx->enc_count; - while (1) { - if (field == &ctx->root) { - ctx->head = NULL; - if (ctx->enc_count != 0) { - __Pyx_BufFmt_RaiseExpected(ctx); - return -1; - } - break; - } - ctx->head->field = ++field; - if (field->type == NULL) { - --ctx->head; - field = ctx->head->field; - continue; - } else if (field->type->typegroup == 'S') { - size_t parent_offset = ctx->head->parent_offset + field->offset; - if (field->type->fields->type == NULL) continue; - field = field->type->fields; - ++ctx->head; - ctx->head->field = field; - ctx->head->parent_offset = parent_offset; - break; - } else { - break; - } - } - } while (ctx->enc_count); - ctx->enc_type = 0; - ctx->is_complex = 0; - return 0; -} -static int -__pyx_buffmt_parse_array(__Pyx_BufFmt_Context* ctx, const char** tsp) -{ - const char *ts = *tsp; - int i = 0, number, ndim; - ++ts; - if (ctx->new_count != 1) { - PyErr_SetString(PyExc_ValueError, - "Cannot handle repeated arrays in format string"); - return -1; - } - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return -1; - ndim = ctx->head->field->type->ndim; - while (*ts && *ts != ')') { - switch (*ts) { - case ' ': case '\f': case '\r': case '\n': case '\t': case '\v': continue; - default: break; - } - number = __Pyx_BufFmt_ExpectNumber(&ts); - if (number == -1) return -1; - if (i < ndim && (size_t) number != ctx->head->field->type->arraysize[i]) { - PyErr_Format(PyExc_ValueError, - "Expected a dimension of size %zu, got %d", - ctx->head->field->type->arraysize[i], number); - return -1; - } - if (*ts != ',' && *ts != ')') { - PyErr_Format(PyExc_ValueError, - "Expected a comma in format string, got '%c'", *ts); - return -1; - } - if (*ts == ',') ts++; - i++; - } - if (i != ndim) { - PyErr_Format(PyExc_ValueError, "Expected %d dimension(s), got %d", - ctx->head->field->type->ndim, i); - return -1; - } - if (!*ts) { - PyErr_SetString(PyExc_ValueError, - "Unexpected end of format string, expected ')'"); - return -1; - } - ctx->is_valid_array = 1; - ctx->new_count = 1; - *tsp = ++ts; - return 0; -} -static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts) { - int got_Z = 0; - while (1) { - switch(*ts) { - case 0: - if (ctx->enc_type != 0 && ctx->head == NULL) { - __Pyx_BufFmt_RaiseExpected(ctx); - return NULL; - } - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; - if (ctx->head != NULL) { - __Pyx_BufFmt_RaiseExpected(ctx); - return NULL; - } - return ts; - case ' ': - case '\r': - case '\n': - ++ts; - break; - case '<': - if (!__Pyx_Is_Little_Endian()) { - PyErr_SetString(PyExc_ValueError, "Little-endian buffer not supported on big-endian compiler"); - return NULL; - } - ctx->new_packmode = '='; - ++ts; - break; - case '>': - case '!': - if (__Pyx_Is_Little_Endian()) { - PyErr_SetString(PyExc_ValueError, "Big-endian buffer not supported on little-endian compiler"); - return NULL; - } - ctx->new_packmode = '='; - ++ts; - break; - case '=': - case '@': - case '^': - ctx->new_packmode = *ts++; - break; - case 'T': - { - const char* ts_after_sub; - size_t i, struct_count = ctx->new_count; - size_t struct_alignment = ctx->struct_alignment; - ctx->new_count = 1; - ++ts; - if (*ts != '{') { - PyErr_SetString(PyExc_ValueError, "Buffer acquisition: Expected '{' after 'T'"); - return NULL; - } - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; - ctx->enc_type = 0; - ctx->enc_count = 0; - ctx->struct_alignment = 0; - ++ts; - ts_after_sub = ts; - for (i = 0; i != struct_count; ++i) { - ts_after_sub = __Pyx_BufFmt_CheckString(ctx, ts); - if (!ts_after_sub) return NULL; - } - ts = ts_after_sub; - if (struct_alignment) ctx->struct_alignment = struct_alignment; - } - break; - case '}': - { - size_t alignment = ctx->struct_alignment; - ++ts; - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; - ctx->enc_type = 0; - if (alignment && ctx->fmt_offset % alignment) { - ctx->fmt_offset += alignment - (ctx->fmt_offset % alignment); - } - } - return ts; - case 'x': - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; - ctx->fmt_offset += ctx->new_count; - ctx->new_count = 1; - ctx->enc_count = 0; - ctx->enc_type = 0; - ctx->enc_packmode = ctx->new_packmode; - ++ts; - break; - case 'Z': - got_Z = 1; - ++ts; - if (*ts != 'f' && *ts != 'd' && *ts != 'g') { - __Pyx_BufFmt_RaiseUnexpectedChar('Z'); - return NULL; - } - CYTHON_FALLTHROUGH; - case '?': case 'c': case 'b': case 'B': case 'h': case 'H': case 'i': case 'I': - case 'l': case 'L': case 'q': case 'Q': - case 'f': case 'd': case 'g': - case 'O': case 'p': - if ((ctx->enc_type == *ts) && (got_Z == ctx->is_complex) && - (ctx->enc_packmode == ctx->new_packmode) && (!ctx->is_valid_array)) { - ctx->enc_count += ctx->new_count; - ctx->new_count = 1; - got_Z = 0; - ++ts; - break; - } - CYTHON_FALLTHROUGH; - case 's': - if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; - ctx->enc_count = ctx->new_count; - ctx->enc_packmode = ctx->new_packmode; - ctx->enc_type = *ts; - ctx->is_complex = got_Z; - ++ts; - ctx->new_count = 1; - got_Z = 0; - break; - case ':': - ++ts; - while(*ts != ':') ++ts; - ++ts; - break; - case '(': - if (__pyx_buffmt_parse_array(ctx, &ts) < 0) return NULL; - break; - default: - { - int number = __Pyx_BufFmt_ExpectNumber(&ts); - if (number == -1) return NULL; - ctx->new_count = (size_t)number; - } - } - } -} - -/* TypeInfoCompare (used by MemviewSliceValidateAndInit) */ - static int - __pyx_typeinfo_cmp(const __Pyx_TypeInfo *a, const __Pyx_TypeInfo *b) - { - int i; - if (!a || !b) - return 0; - if (a == b) - return 1; - if (a->size != b->size || a->typegroup != b->typegroup || - a->is_unsigned != b->is_unsigned || a->ndim != b->ndim) { - if (a->typegroup == 'H' || b->typegroup == 'H') { - return a->size == b->size; - } else { - return 0; - } - } - if (a->ndim) { - for (i = 0; i < a->ndim; i++) - if (a->arraysize[i] != b->arraysize[i]) - return 0; - } - if (a->typegroup == 'S') { - if (a->flags != b->flags) - return 0; - if (a->fields || b->fields) { - if (!(a->fields && b->fields)) - return 0; - for (i = 0; a->fields[i].type && b->fields[i].type; i++) { - const __Pyx_StructField *field_a = a->fields + i; - const __Pyx_StructField *field_b = b->fields + i; - if (field_a->offset != field_b->offset || - !__pyx_typeinfo_cmp(field_a->type, field_b->type)) - return 0; - } - return !a->fields[i].type && !b->fields[i].type; - } - } - return 1; - } - -/* MemviewSliceValidateAndInit (used by ObjectToMemviewSlice) */ - static int - __pyx_check_strides(Py_buffer *buf, int dim, int ndim, int spec) - { - if (buf->shape[dim] <= 1) - return 1; - if (buf->strides) { - if (spec & __Pyx_MEMVIEW_CONTIG) { - if (spec & (__Pyx_MEMVIEW_PTR|__Pyx_MEMVIEW_FULL)) { - if (unlikely(buf->strides[dim] != sizeof(void *))) { - PyErr_Format(PyExc_ValueError, - "Buffer is not indirectly contiguous " - "in dimension %d.", dim); - goto fail; - } - } else if (unlikely(buf->strides[dim] != buf->itemsize)) { - PyErr_SetString(PyExc_ValueError, - "Buffer and memoryview are not contiguous " - "in the same dimension."); - goto fail; - } - } - if (spec & __Pyx_MEMVIEW_FOLLOW) { - Py_ssize_t stride = buf->strides[dim]; - if (stride < 0) - stride = -stride; - if (unlikely(stride < buf->itemsize)) { - PyErr_SetString(PyExc_ValueError, - "Buffer and memoryview are not contiguous " - "in the same dimension."); - goto fail; - } - } - } else { - if (unlikely(spec & __Pyx_MEMVIEW_CONTIG && dim != ndim - 1)) { - PyErr_Format(PyExc_ValueError, - "C-contiguous buffer is not contiguous in " - "dimension %d", dim); - goto fail; - } else if (unlikely(spec & (__Pyx_MEMVIEW_PTR))) { - PyErr_Format(PyExc_ValueError, - "C-contiguous buffer is not indirect in " - "dimension %d", dim); - goto fail; - } else if (unlikely(buf->suboffsets)) { - PyErr_SetString(PyExc_ValueError, - "Buffer exposes suboffsets but no strides"); - goto fail; - } - } - return 1; - fail: - return 0; - } - static int - __pyx_check_suboffsets(Py_buffer *buf, int dim, int ndim, int spec) - { - CYTHON_UNUSED_VAR(ndim); - if (spec & __Pyx_MEMVIEW_DIRECT) { - if (unlikely(buf->suboffsets && buf->suboffsets[dim] >= 0)) { - PyErr_Format(PyExc_ValueError, - "Buffer not compatible with direct access " - "in dimension %d.", dim); - goto fail; - } - } - if (spec & __Pyx_MEMVIEW_PTR) { - if (unlikely(!buf->suboffsets || (buf->suboffsets[dim] < 0))) { - PyErr_Format(PyExc_ValueError, - "Buffer is not indirectly accessible " - "in dimension %d.", dim); - goto fail; - } - } - return 1; - fail: - return 0; - } - static int - __pyx_verify_contig(Py_buffer *buf, int ndim, int c_or_f_flag) - { - int i; - if (c_or_f_flag & __Pyx_IS_F_CONTIG) { - Py_ssize_t stride = 1; - for (i = 0; i < ndim; i++) { - if (unlikely(stride * buf->itemsize != buf->strides[i] && buf->shape[i] > 1)) { - PyErr_SetString(PyExc_ValueError, - "Buffer not fortran contiguous."); - goto fail; - } - stride = stride * buf->shape[i]; - } - } else if (c_or_f_flag & __Pyx_IS_C_CONTIG) { - Py_ssize_t stride = 1; - for (i = ndim - 1; i >- 1; i--) { - if (unlikely(stride * buf->itemsize != buf->strides[i] && buf->shape[i] > 1)) { - PyErr_SetString(PyExc_ValueError, - "Buffer not C contiguous."); - goto fail; - } - stride = stride * buf->shape[i]; - } - } - return 1; - fail: - return 0; - } - static int __Pyx_ValidateAndInit_memviewslice( - int *axes_specs, - int c_or_f_flag, - int buf_flags, - int ndim, - const __Pyx_TypeInfo *dtype, - __Pyx_BufFmt_StackElem stack[], - __Pyx_memviewslice *memviewslice, - PyObject *original_obj) - { - struct __pyx_memoryview_obj *memview, *new_memview; - __Pyx_RefNannyDeclarations - Py_buffer *buf; - int i, spec = 0, retval = -1; - __Pyx_BufFmt_Context ctx; - int from_memoryview = __pyx_memoryview_check(original_obj); - __Pyx_RefNannySetupContext("ValidateAndInit_memviewslice", 0); - if (from_memoryview && __pyx_typeinfo_cmp(dtype, ((struct __pyx_memoryview_obj *) - original_obj)->typeinfo)) { - memview = (struct __pyx_memoryview_obj *) original_obj; - new_memview = NULL; - } else { - memview = (struct __pyx_memoryview_obj *) __pyx_memoryview_new( - original_obj, buf_flags, 0, dtype); - new_memview = memview; - if (unlikely(!memview)) - goto fail; - } - buf = &memview->view; - if (unlikely(buf->ndim != ndim)) { - PyErr_Format(PyExc_ValueError, - "Buffer has wrong number of dimensions (expected %d, got %d)", - ndim, buf->ndim); - goto fail; - } - if (new_memview) { - __Pyx_BufFmt_Init(&ctx, stack, dtype); - if (unlikely(!__Pyx_BufFmt_CheckString(&ctx, buf->format))) goto fail; - } - if (unlikely((unsigned) buf->itemsize != dtype->size)) { - PyErr_Format(PyExc_ValueError, - "Item size of buffer (%" CYTHON_FORMAT_SSIZE_T "u byte%s) " - "does not match size of '%s' (%" CYTHON_FORMAT_SSIZE_T "u byte%s)", - buf->itemsize, - (buf->itemsize > 1) ? "s" : "", - dtype->name, - dtype->size, - (dtype->size > 1) ? "s" : ""); - goto fail; - } - if (buf->len > 0) { - for (i = 0; i < ndim; i++) { - spec = axes_specs[i]; - if (unlikely(!__pyx_check_strides(buf, i, ndim, spec))) - goto fail; - if (unlikely(!__pyx_check_suboffsets(buf, i, ndim, spec))) - goto fail; - } - if (unlikely(buf->strides && !__pyx_verify_contig(buf, ndim, c_or_f_flag))) - goto fail; - } - if (unlikely(__Pyx_init_memviewslice(memview, ndim, memviewslice, - new_memview != NULL) == -1)) { - goto fail; - } - retval = 0; - goto no_fail; - fail: - Py_XDECREF((PyObject*)new_memview); - retval = -1; - no_fail: - __Pyx_RefNannyFinishContext(); - return retval; - } - -/* ObjectToMemviewSlice */ - static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsds_double(PyObject *obj, int writable_flag) { - __Pyx_memviewslice result = __Pyx_MEMSLICE_INIT; - __Pyx_BufFmt_StackElem stack[1]; - int axes_specs[] = { (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED), (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED) }; - int retcode; - if (obj == Py_None) { - result.memview = (struct __pyx_memoryview_obj *) Py_None; - return result; - } - retcode = __Pyx_ValidateAndInit_memviewslice(axes_specs, 0, - PyBUF_RECORDS_RO | writable_flag, 2, - &__Pyx_TypeInfo_double, stack, - &result, obj); - if (unlikely(retcode == -1)) - goto __pyx_fail; - return result; - __pyx_fail: - result.memview = NULL; - result.data = NULL; - return result; - } - -/* CIntFromPyVerify */ - #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) - #define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ - __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) - #define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ - {\ - func_type value = func_value;\ - if (sizeof(target_type) < sizeof(func_type)) {\ - if (unlikely(value != (func_type) (target_type) value)) {\ - func_type zero = 0;\ - if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ - return (target_type) -1;\ - if (is_unsigned && unlikely(value < zero))\ - goto raise_neg_overflow;\ - else\ - goto raise_overflow;\ - }\ - }\ - return (target_type) value;\ - } - -/* ObjectToMemviewSlice */ - static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(PyObject *obj, int writable_flag) { - __Pyx_memviewslice result = __Pyx_MEMSLICE_INIT; - __Pyx_BufFmt_StackElem stack[1]; - int axes_specs[] = { (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED), (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED) }; - int retcode; - if (obj == Py_None) { - result.memview = (struct __pyx_memoryview_obj *) Py_None; - return result; - } - retcode = __Pyx_ValidateAndInit_memviewslice(axes_specs, 0, - PyBUF_RECORDS_RO | writable_flag, 2, - &__Pyx_TypeInfo_size_t, stack, - &result, obj); - if (unlikely(retcode == -1)) - goto __pyx_fail; - return result; - __pyx_fail: - result.memview = NULL; - result.data = NULL; - return result; - } - -/* MemviewDtypeToObject */ - static CYTHON_INLINE PyObject *__pyx_memview_get_double(const char *itemp) { - return (PyObject *) PyFloat_FromDouble(*(double const *) itemp); - } - static CYTHON_INLINE int __pyx_memview_set_double(char *itemp, PyObject *obj) { - double value = __Pyx_PyFloat_AsDouble(obj); - if (unlikely((value == (double)-1) && PyErr_Occurred())) - return 0; - *(double *) itemp = value; - return 1; - } - -/* ObjectToMemviewSlice */ - static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_ds_int(PyObject *obj, int writable_flag) { - __Pyx_memviewslice result = __Pyx_MEMSLICE_INIT; - __Pyx_BufFmt_StackElem stack[1]; - int axes_specs[] = { (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED) }; - int retcode; - if (obj == Py_None) { - result.memview = (struct __pyx_memoryview_obj *) Py_None; - return result; - } - retcode = __Pyx_ValidateAndInit_memviewslice(axes_specs, 0, - PyBUF_RECORDS_RO | writable_flag, 1, - &__Pyx_TypeInfo_int, stack, - &result, obj); - if (unlikely(retcode == -1)) - goto __pyx_fail; - return result; - __pyx_fail: - result.memview = NULL; - result.data = NULL; - return result; - } - -/* ObjectToMemviewSlice */ - static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_ds_double(PyObject *obj, int writable_flag) { - __Pyx_memviewslice result = __Pyx_MEMSLICE_INIT; - __Pyx_BufFmt_StackElem stack[1]; - int axes_specs[] = { (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED) }; - int retcode; - if (obj == Py_None) { - result.memview = (struct __pyx_memoryview_obj *) Py_None; - return result; - } - retcode = __Pyx_ValidateAndInit_memviewslice(axes_specs, 0, - PyBUF_RECORDS_RO | writable_flag, 1, - &__Pyx_TypeInfo_double, stack, - &result, obj); - if (unlikely(retcode == -1)) - goto __pyx_fail; - return result; - __pyx_fail: - result.memview = NULL; - result.data = NULL; - return result; - } - -/* ObjectToMemviewSlice */ - static CYTHON_INLINE __Pyx_memviewslice __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(PyObject *obj, int writable_flag) { - __Pyx_memviewslice result = __Pyx_MEMSLICE_INIT; - __Pyx_BufFmt_StackElem stack[1]; - int axes_specs[] = { (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED), (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED), (__Pyx_MEMVIEW_DIRECT | __Pyx_MEMVIEW_STRIDED) }; - int retcode; - if (obj == Py_None) { - result.memview = (struct __pyx_memoryview_obj *) Py_None; - return result; - } - retcode = __Pyx_ValidateAndInit_memviewslice(axes_specs, 0, - PyBUF_RECORDS_RO | writable_flag, 3, - &__Pyx_TypeInfo_double, stack, - &result, obj); - if (unlikely(retcode == -1)) - goto __pyx_fail; - return result; - __pyx_fail: - result.memview = NULL; - result.data = NULL; - return result; - } - -/* MemviewSliceCopy */ - static __Pyx_memviewslice - __pyx_memoryview_copy_new_contig(const __Pyx_memviewslice *from_mvs, - const char *mode, int ndim, - size_t sizeof_dtype, int contig_flag, - int dtype_is_object) - { - __Pyx_RefNannyDeclarations - int i; - __Pyx_memviewslice new_mvs = __Pyx_MEMSLICE_INIT; - struct __pyx_memoryview_obj *from_memview = from_mvs->memview; - Py_buffer *buf = &from_memview->view; - PyObject *shape_tuple = NULL; - PyObject *temp_int = NULL; - struct __pyx_array_obj *array_obj = NULL; - struct __pyx_memoryview_obj *memview_obj = NULL; - __Pyx_RefNannySetupContext("__pyx_memoryview_copy_new_contig", 0); - for (i = 0; i < ndim; i++) { - if (unlikely(from_mvs->suboffsets[i] >= 0)) { - PyErr_Format(PyExc_ValueError, "Cannot copy memoryview slice with " - "indirect dimensions (axis %d)", i); - goto fail; - } - } - shape_tuple = PyTuple_New(ndim); - if (unlikely(!shape_tuple)) { - goto fail; - } - __Pyx_GOTREF(shape_tuple); - for(i = 0; i < ndim; i++) { - temp_int = PyLong_FromSsize_t(from_mvs->shape[i]); - if(unlikely(!temp_int)) { - goto fail; - } else { - #if CYTHON_ASSUME_SAFE_MACROS - PyTuple_SET_ITEM(shape_tuple, i, temp_int); - #else - if (PyTuple_SetItem(shape_tuple, i, temp_int) < 0) { - goto fail; - } - #endif - temp_int = NULL; - } - } - array_obj = __pyx_array_new(shape_tuple, sizeof_dtype, buf->format, mode, NULL); - if (unlikely(!array_obj)) { - goto fail; - } - __Pyx_GOTREF(array_obj); - memview_obj = (struct __pyx_memoryview_obj *) __pyx_memoryview_new( - (PyObject *) array_obj, contig_flag, - dtype_is_object, - from_mvs->memview->typeinfo); - if (unlikely(!memview_obj)) - goto fail; - if (unlikely(__Pyx_init_memviewslice(memview_obj, ndim, &new_mvs, 1) < 0)) - goto fail; - if (unlikely(__pyx_memoryview_copy_contents(*from_mvs, new_mvs, ndim, ndim, - dtype_is_object) < 0)) - goto fail; - goto no_fail; - fail: - __Pyx_XDECREF((PyObject *) new_mvs.memview); - new_mvs.memview = NULL; - new_mvs.data = NULL; - no_fail: - __Pyx_XDECREF(shape_tuple); - __Pyx_XDECREF(temp_int); - __Pyx_XDECREF((PyObject *) array_obj); - __Pyx_RefNannyFinishContext(); - return new_mvs; - } - -/* CIntFromPy */ - static CYTHON_INLINE int __Pyx_PyLong_As_int(PyObject *x) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const int neg_one = (int) -1, const_zero = (int) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!PyLong_Check(x))) { - int val; - PyObject *tmp = __Pyx_PyNumber_Long(x); - if (!tmp) return (int) -1; - val = __Pyx_PyLong_As_int(tmp); - Py_DECREF(tmp); - return val; - } - if (is_unsigned) { - #if CYTHON_USE_PYLONG_INTERNALS - if (unlikely(__Pyx_PyLong_IsNeg(x))) { - goto raise_neg_overflow; - } else if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(int, __Pyx_compact_upylong, __Pyx_PyLong_CompactValueUnsigned(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_DigitCount(x)) { - case 2: - if ((8 * sizeof(int) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) >= 2 * PyLong_SHIFT)) { - return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 3: - if ((8 * sizeof(int) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) >= 3 * PyLong_SHIFT)) { - return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - case 4: - if ((8 * sizeof(int) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) >= 4 * PyLong_SHIFT)) { - return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); - } - } - break; - } - } - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030C00A7 - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } - #else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (int) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } - #endif - if ((sizeof(int) <= sizeof(unsigned long))) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) - } else if ((sizeof(int) <= sizeof(unsigned PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) - } - } else { - #if CYTHON_USE_PYLONG_INTERNALS - if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(int, __Pyx_compact_pylong, __Pyx_PyLong_CompactValue(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_SignedDigitCount(x)) { - case -2: - if ((8 * sizeof(int) - 1 > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 2 * PyLong_SHIFT)) { - return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 2: - if ((8 * sizeof(int) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 2 * PyLong_SHIFT)) { - return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -3: - if ((8 * sizeof(int) - 1 > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 3 * PyLong_SHIFT)) { - return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 3: - if ((8 * sizeof(int) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 3 * PyLong_SHIFT)) { - return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case -4: - if ((8 * sizeof(int) - 1 > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 4 * PyLong_SHIFT)) { - return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - case 4: - if ((8 * sizeof(int) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(int) - 1 > 4 * PyLong_SHIFT)) { - return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); - } - } - break; - } - } - #endif - if ((sizeof(int) <= sizeof(long))) { - __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) - } else if ((sizeof(int) <= sizeof(PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) - } - } - { - int val; - int ret = -1; - #if PY_VERSION_HEX >= 0x030d00A6 && !CYTHON_COMPILING_IN_LIMITED_API - Py_ssize_t bytes_copied = PyLong_AsNativeBytes( - x, &val, sizeof(val), Py_ASNATIVEBYTES_NATIVE_ENDIAN | (is_unsigned ? Py_ASNATIVEBYTES_UNSIGNED_BUFFER | Py_ASNATIVEBYTES_REJECT_NEGATIVE : 0)); - if (unlikely(bytes_copied == -1)) { - } else if (unlikely(bytes_copied > (Py_ssize_t) sizeof(val))) { - goto raise_overflow; - } else { - ret = 0; - } - #elif PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray) - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - ret = _PyLong_AsByteArray((PyLongObject *)x, - bytes, sizeof(val), - is_little, !is_unsigned); - #else - PyObject *v; - PyObject *stepval = NULL, *mask = NULL, *shift = NULL; - int bits, remaining_bits, is_negative = 0; - int chunk_size = (sizeof(long) < 8) ? 30 : 62; - if (likely(PyLong_CheckExact(x))) { - v = __Pyx_NewRef(x); - } else { - v = PyNumber_Long(x); - if (unlikely(!v)) return (int) -1; - assert(PyLong_CheckExact(v)); - } - { - int result = PyObject_RichCompareBool(v, Py_False, Py_LT); - if (unlikely(result < 0)) { - Py_DECREF(v); - return (int) -1; - } - is_negative = result == 1; - } - if (is_unsigned && unlikely(is_negative)) { - Py_DECREF(v); - goto raise_neg_overflow; - } else if (is_negative) { - stepval = PyNumber_Invert(v); - Py_DECREF(v); - if (unlikely(!stepval)) - return (int) -1; - } else { - stepval = v; - } - v = NULL; - val = (int) 0; - mask = PyLong_FromLong((1L << chunk_size) - 1); if (unlikely(!mask)) goto done; - shift = PyLong_FromLong(chunk_size); if (unlikely(!shift)) goto done; - for (bits = 0; bits < (int) sizeof(int) * 8 - chunk_size; bits += chunk_size) { - PyObject *tmp, *digit; - long idigit; - digit = PyNumber_And(stepval, mask); - if (unlikely(!digit)) goto done; - idigit = PyLong_AsLong(digit); - Py_DECREF(digit); - if (unlikely(idigit < 0)) goto done; - val |= ((int) idigit) << bits; - tmp = PyNumber_Rshift(stepval, shift); - if (unlikely(!tmp)) goto done; - Py_DECREF(stepval); stepval = tmp; - } - Py_DECREF(shift); shift = NULL; - Py_DECREF(mask); mask = NULL; - { - long idigit = PyLong_AsLong(stepval); - if (unlikely(idigit < 0)) goto done; - remaining_bits = ((int) sizeof(int) * 8) - bits - (is_unsigned ? 0 : 1); - if (unlikely(idigit >= (1L << remaining_bits))) - goto raise_overflow; - val |= ((int) idigit) << bits; - } - if (!is_unsigned) { - if (unlikely(val & (((int) 1) << (sizeof(int) * 8 - 1)))) - goto raise_overflow; - if (is_negative) - val = ~val; - } - ret = 0; - done: - Py_XDECREF(shift); - Py_XDECREF(mask); - Py_XDECREF(stepval); - #endif - if (unlikely(ret)) - return (int) -1; - return val; - } - raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to int"); - return (int) -1; - raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to int"); - return (int) -1; - } - -/* CIntFromPy */ - static CYTHON_INLINE size_t __Pyx_PyLong_As_size_t(PyObject *x) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const size_t neg_one = (size_t) -1, const_zero = (size_t) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!PyLong_Check(x))) { - size_t val; - PyObject *tmp = __Pyx_PyNumber_Long(x); - if (!tmp) return (size_t) -1; - val = __Pyx_PyLong_As_size_t(tmp); - Py_DECREF(tmp); - return val; - } - if (is_unsigned) { - #if CYTHON_USE_PYLONG_INTERNALS - if (unlikely(__Pyx_PyLong_IsNeg(x))) { - goto raise_neg_overflow; - } else if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(size_t, __Pyx_compact_upylong, __Pyx_PyLong_CompactValueUnsigned(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_DigitCount(x)) { - case 2: - if ((8 * sizeof(size_t) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) >= 2 * PyLong_SHIFT)) { - return (size_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - } - break; - case 3: - if ((8 * sizeof(size_t) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) >= 3 * PyLong_SHIFT)) { - return (size_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - } - break; - case 4: - if ((8 * sizeof(size_t) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) >= 4 * PyLong_SHIFT)) { - return (size_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - } - break; - } - } - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030C00A7 - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } - #else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (size_t) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } - #endif - if ((sizeof(size_t) <= sizeof(unsigned long))) { - __PYX_VERIFY_RETURN_INT_EXC(size_t, unsigned long, PyLong_AsUnsignedLong(x)) - } else if ((sizeof(size_t) <= sizeof(unsigned PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(size_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) - } - } else { - #if CYTHON_USE_PYLONG_INTERNALS - if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(size_t, __Pyx_compact_pylong, __Pyx_PyLong_CompactValue(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_SignedDigitCount(x)) { - case -2: - if ((8 * sizeof(size_t) - 1 > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 2 * PyLong_SHIFT)) { - return (size_t) (((size_t)-1)*(((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - case 2: - if ((8 * sizeof(size_t) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 2 * PyLong_SHIFT)) { - return (size_t) ((((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - case -3: - if ((8 * sizeof(size_t) - 1 > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 3 * PyLong_SHIFT)) { - return (size_t) (((size_t)-1)*(((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - case 3: - if ((8 * sizeof(size_t) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 3 * PyLong_SHIFT)) { - return (size_t) ((((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - case -4: - if ((8 * sizeof(size_t) - 1 > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 4 * PyLong_SHIFT)) { - return (size_t) (((size_t)-1)*(((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - case 4: - if ((8 * sizeof(size_t) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(size_t, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(size_t) - 1 > 4 * PyLong_SHIFT)) { - return (size_t) ((((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0]))); - } - } - break; - } - } - #endif - if ((sizeof(size_t) <= sizeof(long))) { - __PYX_VERIFY_RETURN_INT_EXC(size_t, long, PyLong_AsLong(x)) - } else if ((sizeof(size_t) <= sizeof(PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(size_t, PY_LONG_LONG, PyLong_AsLongLong(x)) - } - } - { - size_t val; - int ret = -1; - #if PY_VERSION_HEX >= 0x030d00A6 && !CYTHON_COMPILING_IN_LIMITED_API - Py_ssize_t bytes_copied = PyLong_AsNativeBytes( - x, &val, sizeof(val), Py_ASNATIVEBYTES_NATIVE_ENDIAN | (is_unsigned ? Py_ASNATIVEBYTES_UNSIGNED_BUFFER | Py_ASNATIVEBYTES_REJECT_NEGATIVE : 0)); - if (unlikely(bytes_copied == -1)) { - } else if (unlikely(bytes_copied > (Py_ssize_t) sizeof(val))) { - goto raise_overflow; - } else { - ret = 0; - } - #elif PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray) - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - ret = _PyLong_AsByteArray((PyLongObject *)x, - bytes, sizeof(val), - is_little, !is_unsigned); - #else - PyObject *v; - PyObject *stepval = NULL, *mask = NULL, *shift = NULL; - int bits, remaining_bits, is_negative = 0; - int chunk_size = (sizeof(long) < 8) ? 30 : 62; - if (likely(PyLong_CheckExact(x))) { - v = __Pyx_NewRef(x); - } else { - v = PyNumber_Long(x); - if (unlikely(!v)) return (size_t) -1; - assert(PyLong_CheckExact(v)); - } - { - int result = PyObject_RichCompareBool(v, Py_False, Py_LT); - if (unlikely(result < 0)) { - Py_DECREF(v); - return (size_t) -1; - } - is_negative = result == 1; - } - if (is_unsigned && unlikely(is_negative)) { - Py_DECREF(v); - goto raise_neg_overflow; - } else if (is_negative) { - stepval = PyNumber_Invert(v); - Py_DECREF(v); - if (unlikely(!stepval)) - return (size_t) -1; - } else { - stepval = v; - } - v = NULL; - val = (size_t) 0; - mask = PyLong_FromLong((1L << chunk_size) - 1); if (unlikely(!mask)) goto done; - shift = PyLong_FromLong(chunk_size); if (unlikely(!shift)) goto done; - for (bits = 0; bits < (int) sizeof(size_t) * 8 - chunk_size; bits += chunk_size) { - PyObject *tmp, *digit; - long idigit; - digit = PyNumber_And(stepval, mask); - if (unlikely(!digit)) goto done; - idigit = PyLong_AsLong(digit); - Py_DECREF(digit); - if (unlikely(idigit < 0)) goto done; - val |= ((size_t) idigit) << bits; - tmp = PyNumber_Rshift(stepval, shift); - if (unlikely(!tmp)) goto done; - Py_DECREF(stepval); stepval = tmp; - } - Py_DECREF(shift); shift = NULL; - Py_DECREF(mask); mask = NULL; - { - long idigit = PyLong_AsLong(stepval); - if (unlikely(idigit < 0)) goto done; - remaining_bits = ((int) sizeof(size_t) * 8) - bits - (is_unsigned ? 0 : 1); - if (unlikely(idigit >= (1L << remaining_bits))) - goto raise_overflow; - val |= ((size_t) idigit) << bits; - } - if (!is_unsigned) { - if (unlikely(val & (((size_t) 1) << (sizeof(size_t) * 8 - 1)))) - goto raise_overflow; - if (is_negative) - val = ~val; - } - ret = 0; - done: - Py_XDECREF(shift); - Py_XDECREF(mask); - Py_XDECREF(stepval); - #endif - if (unlikely(ret)) - return (size_t) -1; - return val; - } - raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to size_t"); - return (size_t) -1; - raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to size_t"); - return (size_t) -1; - } - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyLong_From_int(int value) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const int neg_one = (int) -1, const_zero = (int) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(int) < sizeof(long)) { - return PyLong_FromLong((long) value); - } else if (sizeof(int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); - #if !CYTHON_COMPILING_IN_PYPY - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); - #endif - } - } else { - if (sizeof(int) <= sizeof(long)) { - return PyLong_FromLong((long) value); - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); - } - } - { - unsigned char *bytes = (unsigned char *)&value; - #if !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x030d00A4 - if (is_unsigned) { - return PyLong_FromUnsignedNativeBytes(bytes, sizeof(value), -1); - } else { - return PyLong_FromNativeBytes(bytes, sizeof(value), -1); - } - #elif !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x030d0000 - int one = 1; int little = (int)*(unsigned char *)&one; - return _PyLong_FromByteArray(bytes, sizeof(int), - little, !is_unsigned); - #else - int one = 1; int little = (int)*(unsigned char *)&one; - PyObject *from_bytes, *result = NULL, *kwds = NULL; - PyObject *py_bytes = NULL, *order_str = NULL; - from_bytes = PyObject_GetAttrString((PyObject*)&PyLong_Type, "from_bytes"); - if (!from_bytes) return NULL; - py_bytes = PyBytes_FromStringAndSize((char*)bytes, sizeof(int)); - if (!py_bytes) goto limited_bad; - order_str = PyUnicode_FromString(little ? "little" : "big"); - if (!order_str) goto limited_bad; - { - PyObject *args[3+(CYTHON_VECTORCALL ? 1 : 0)] = { NULL, py_bytes, order_str }; - if (!is_unsigned) { - kwds = __Pyx_MakeVectorcallBuilderKwds(1); - if (!kwds) goto limited_bad; - if (__Pyx_VectorcallBuilder_AddArgStr("signed", __Pyx_NewRef(Py_True), kwds, args+3, 0) < 0) goto limited_bad; - } - result = __Pyx_Object_Vectorcall_CallFromBuilder(from_bytes, args+1, 2 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET, kwds); - } - limited_bad: - Py_XDECREF(kwds); - Py_XDECREF(order_str); - Py_XDECREF(py_bytes); - Py_XDECREF(from_bytes); - return result; - #endif - } - } - -/* PyObjectCall2Args (used by PyObjectCallMethod1) */ - static CYTHON_INLINE PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { - PyObject *args[3] = {NULL, arg1, arg2}; - return __Pyx_PyObject_FastCall(function, args+1, 2 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET); - } - -/* PyObjectCallMethod1 (used by UpdateUnpickledDict) */ - #if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))) - static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) { - PyObject *result = __Pyx_PyObject_CallOneArg(method, arg); - Py_DECREF(method); - return result; - } - #endif - static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) { - #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)) - PyObject *args[2] = {obj, arg}; - (void) __Pyx_PyObject_CallOneArg; - (void) __Pyx_PyObject_Call2Args; - return PyObject_VectorcallMethod(method_name, args, 2 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); - #else - PyObject *method = NULL, *result; - int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method); - if (likely(is_method)) { - result = __Pyx_PyObject_Call2Args(method, obj, arg); - Py_DECREF(method); - return result; - } - if (unlikely(!method)) return NULL; - return __Pyx__PyObject_CallMethod1(method, arg); - #endif - } - -/* UpdateUnpickledDict */ - static int __Pyx__UpdateUnpickledDict(PyObject *obj, PyObject *state, Py_ssize_t index) { - PyObject *state_dict = __Pyx_PySequence_ITEM(state, index); - if (unlikely(!state_dict)) { - return -1; - } - int non_empty = PyObject_IsTrue(state_dict); - if (non_empty == 0) { - Py_DECREF(state_dict); - return 0; - } else if (unlikely(non_empty == -1)) { - return -1; - } - PyObject *dict; - #if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030A0000 - dict = PyObject_GetAttrString(obj, "__dict__"); - #else - dict = PyObject_GenericGetDict(obj, NULL); - #endif - if (unlikely(!dict)) { - Py_DECREF(state_dict); - return -1; - } - int result; - if (likely(PyDict_CheckExact(dict))) { - result = PyDict_Update(dict, state_dict); - } else { - PyObject *obj_result = __Pyx_PyObject_CallMethod1(dict, __pyx_mstate_global->__pyx_n_u_update, state_dict); - if (likely(obj_result)) { - Py_DECREF(obj_result); - result = 0; - } else { - result = -1; - } - } - Py_DECREF(state_dict); - Py_DECREF(dict); - return result; - } - static int __Pyx_UpdateUnpickledDict(PyObject *obj, PyObject *state, Py_ssize_t index) { - Py_ssize_t state_size = __Pyx_PyTuple_GET_SIZE(state); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(state_size == -1)) return -1; - #endif - if (state_size <= index) { - return 0; - } - return __Pyx__UpdateUnpickledDict(obj, state, index); - } - -/* CheckUnpickleChecksum */ - static void __Pyx_RaiseUnpickleChecksumError(long checksum, long checksum1, long checksum2, long checksum3, const char *members) { - PyObject *pickle_module = PyImport_ImportModule("pickle"); - if (unlikely(!pickle_module)) return; - PyObject *pickle_error = PyObject_GetAttrString(pickle_module, "PickleError"); - Py_DECREF(pickle_module); - if (unlikely(!pickle_error)) return; - if (checksum2 == checksum1) { - PyErr_Format(pickle_error, "Incompatible checksums (0x%x vs (0x%x) = (%s))", - checksum, checksum1, members); - } else if (checksum3 == checksum2) { - PyErr_Format(pickle_error, "Incompatible checksums (0x%x vs (0x%x, 0x%x) = (%s))", - checksum, checksum1, checksum2, members); - } else { - PyErr_Format(pickle_error, "Incompatible checksums (0x%x vs (0x%x, 0x%x, 0x%x) = (%s))", - checksum, checksum1, checksum2, checksum3, members); - } - Py_DECREF(pickle_error); - } - static int __Pyx_CheckUnpickleChecksum(long checksum, long checksum1, long checksum2, long checksum3, const char *members) { - int found = 0; - found |= checksum1 == checksum; - found |= checksum2 == checksum; - found |= checksum3 == checksum; - if (likely(found)) - return 0; - __Pyx_RaiseUnpickleChecksumError(checksum, checksum1, checksum2, checksum3, members); - return -1; - } - -/* CIntFromPy */ - static CYTHON_INLINE long __Pyx_PyLong_As_long(PyObject *x) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const long neg_one = (long) -1, const_zero = (long) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!PyLong_Check(x))) { - long val; - PyObject *tmp = __Pyx_PyNumber_Long(x); - if (!tmp) return (long) -1; - val = __Pyx_PyLong_As_long(tmp); - Py_DECREF(tmp); - return val; - } - if (is_unsigned) { - #if CYTHON_USE_PYLONG_INTERNALS - if (unlikely(__Pyx_PyLong_IsNeg(x))) { - goto raise_neg_overflow; - } else if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(long, __Pyx_compact_upylong, __Pyx_PyLong_CompactValueUnsigned(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_DigitCount(x)) { - case 2: - if ((8 * sizeof(long) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) >= 2 * PyLong_SHIFT)) { - return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 3: - if ((8 * sizeof(long) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) >= 3 * PyLong_SHIFT)) { - return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - case 4: - if ((8 * sizeof(long) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) >= 4 * PyLong_SHIFT)) { - return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); - } - } - break; - } - } - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030C00A7 - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } - #else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (long) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } - #endif - if ((sizeof(long) <= sizeof(unsigned long))) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) - } else if ((sizeof(long) <= sizeof(unsigned PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) - } - } else { - #if CYTHON_USE_PYLONG_INTERNALS - if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(long, __Pyx_compact_pylong, __Pyx_PyLong_CompactValue(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_SignedDigitCount(x)) { - case -2: - if ((8 * sizeof(long) - 1 > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 2 * PyLong_SHIFT)) { - return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 2: - if ((8 * sizeof(long) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 2 * PyLong_SHIFT)) { - return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -3: - if ((8 * sizeof(long) - 1 > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 3 * PyLong_SHIFT)) { - return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 3: - if ((8 * sizeof(long) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 3 * PyLong_SHIFT)) { - return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case -4: - if ((8 * sizeof(long) - 1 > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 4 * PyLong_SHIFT)) { - return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - case 4: - if ((8 * sizeof(long) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(long) - 1 > 4 * PyLong_SHIFT)) { - return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); - } - } - break; - } - } - #endif - if ((sizeof(long) <= sizeof(long))) { - __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) - } else if ((sizeof(long) <= sizeof(PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) - } - } - { - long val; - int ret = -1; - #if PY_VERSION_HEX >= 0x030d00A6 && !CYTHON_COMPILING_IN_LIMITED_API - Py_ssize_t bytes_copied = PyLong_AsNativeBytes( - x, &val, sizeof(val), Py_ASNATIVEBYTES_NATIVE_ENDIAN | (is_unsigned ? Py_ASNATIVEBYTES_UNSIGNED_BUFFER | Py_ASNATIVEBYTES_REJECT_NEGATIVE : 0)); - if (unlikely(bytes_copied == -1)) { - } else if (unlikely(bytes_copied > (Py_ssize_t) sizeof(val))) { - goto raise_overflow; - } else { - ret = 0; - } - #elif PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray) - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - ret = _PyLong_AsByteArray((PyLongObject *)x, - bytes, sizeof(val), - is_little, !is_unsigned); - #else - PyObject *v; - PyObject *stepval = NULL, *mask = NULL, *shift = NULL; - int bits, remaining_bits, is_negative = 0; - int chunk_size = (sizeof(long) < 8) ? 30 : 62; - if (likely(PyLong_CheckExact(x))) { - v = __Pyx_NewRef(x); - } else { - v = PyNumber_Long(x); - if (unlikely(!v)) return (long) -1; - assert(PyLong_CheckExact(v)); - } - { - int result = PyObject_RichCompareBool(v, Py_False, Py_LT); - if (unlikely(result < 0)) { - Py_DECREF(v); - return (long) -1; - } - is_negative = result == 1; - } - if (is_unsigned && unlikely(is_negative)) { - Py_DECREF(v); - goto raise_neg_overflow; - } else if (is_negative) { - stepval = PyNumber_Invert(v); - Py_DECREF(v); - if (unlikely(!stepval)) - return (long) -1; - } else { - stepval = v; - } - v = NULL; - val = (long) 0; - mask = PyLong_FromLong((1L << chunk_size) - 1); if (unlikely(!mask)) goto done; - shift = PyLong_FromLong(chunk_size); if (unlikely(!shift)) goto done; - for (bits = 0; bits < (int) sizeof(long) * 8 - chunk_size; bits += chunk_size) { - PyObject *tmp, *digit; - long idigit; - digit = PyNumber_And(stepval, mask); - if (unlikely(!digit)) goto done; - idigit = PyLong_AsLong(digit); - Py_DECREF(digit); - if (unlikely(idigit < 0)) goto done; - val |= ((long) idigit) << bits; - tmp = PyNumber_Rshift(stepval, shift); - if (unlikely(!tmp)) goto done; - Py_DECREF(stepval); stepval = tmp; - } - Py_DECREF(shift); shift = NULL; - Py_DECREF(mask); mask = NULL; - { - long idigit = PyLong_AsLong(stepval); - if (unlikely(idigit < 0)) goto done; - remaining_bits = ((int) sizeof(long) * 8) - bits - (is_unsigned ? 0 : 1); - if (unlikely(idigit >= (1L << remaining_bits))) - goto raise_overflow; - val |= ((long) idigit) << bits; - } - if (!is_unsigned) { - if (unlikely(val & (((long) 1) << (sizeof(long) * 8 - 1)))) - goto raise_overflow; - if (is_negative) - val = ~val; - } - ret = 0; - done: - Py_XDECREF(shift); - Py_XDECREF(mask); - Py_XDECREF(stepval); - #endif - if (unlikely(ret)) - return (long) -1; - return val; - } - raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to long"); - return (long) -1; - raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to long"); - return (long) -1; - } - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyLong_From_long(long value) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const long neg_one = (long) -1, const_zero = (long) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(long) < sizeof(long)) { - return PyLong_FromLong((long) value); - } else if (sizeof(long) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); - #if !CYTHON_COMPILING_IN_PYPY - } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); - #endif - } - } else { - if (sizeof(long) <= sizeof(long)) { - return PyLong_FromLong((long) value); - } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); - } - } - { - unsigned char *bytes = (unsigned char *)&value; - #if !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x030d00A4 - if (is_unsigned) { - return PyLong_FromUnsignedNativeBytes(bytes, sizeof(value), -1); - } else { - return PyLong_FromNativeBytes(bytes, sizeof(value), -1); - } - #elif !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x030d0000 - int one = 1; int little = (int)*(unsigned char *)&one; - return _PyLong_FromByteArray(bytes, sizeof(long), - little, !is_unsigned); - #else - int one = 1; int little = (int)*(unsigned char *)&one; - PyObject *from_bytes, *result = NULL, *kwds = NULL; - PyObject *py_bytes = NULL, *order_str = NULL; - from_bytes = PyObject_GetAttrString((PyObject*)&PyLong_Type, "from_bytes"); - if (!from_bytes) return NULL; - py_bytes = PyBytes_FromStringAndSize((char*)bytes, sizeof(long)); - if (!py_bytes) goto limited_bad; - order_str = PyUnicode_FromString(little ? "little" : "big"); - if (!order_str) goto limited_bad; - { - PyObject *args[3+(CYTHON_VECTORCALL ? 1 : 0)] = { NULL, py_bytes, order_str }; - if (!is_unsigned) { - kwds = __Pyx_MakeVectorcallBuilderKwds(1); - if (!kwds) goto limited_bad; - if (__Pyx_VectorcallBuilder_AddArgStr("signed", __Pyx_NewRef(Py_True), kwds, args+3, 0) < 0) goto limited_bad; - } - result = __Pyx_Object_Vectorcall_CallFromBuilder(from_bytes, args+1, 2 | __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET, kwds); - } - limited_bad: - Py_XDECREF(kwds); - Py_XDECREF(order_str); - Py_XDECREF(py_bytes); - Py_XDECREF(from_bytes); - return result; - #endif - } - } - -/* CIntFromPy */ - static CYTHON_INLINE char __Pyx_PyLong_As_char(PyObject *x) { - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wconversion" - #endif - const char neg_one = (char) -1, const_zero = (char) 0; - #ifdef __Pyx_HAS_GCC_DIAGNOSTIC - #pragma GCC diagnostic pop - #endif - const int is_unsigned = neg_one > const_zero; - if (unlikely(!PyLong_Check(x))) { - char val; - PyObject *tmp = __Pyx_PyNumber_Long(x); - if (!tmp) return (char) -1; - val = __Pyx_PyLong_As_char(tmp); - Py_DECREF(tmp); - return val; - } - if (is_unsigned) { - #if CYTHON_USE_PYLONG_INTERNALS - if (unlikely(__Pyx_PyLong_IsNeg(x))) { - goto raise_neg_overflow; - } else if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(char, __Pyx_compact_upylong, __Pyx_PyLong_CompactValueUnsigned(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_DigitCount(x)) { - case 2: - if ((8 * sizeof(char) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) >= 2 * PyLong_SHIFT)) { - return (char) (((((char)digits[1]) << PyLong_SHIFT) | (char)digits[0])); - } - } - break; - case 3: - if ((8 * sizeof(char) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) >= 3 * PyLong_SHIFT)) { - return (char) (((((((char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0])); - } - } - break; - case 4: - if ((8 * sizeof(char) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) >= 4 * PyLong_SHIFT)) { - return (char) (((((((((char)digits[3]) << PyLong_SHIFT) | (char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0])); - } - } - break; - } - } - #endif - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030C00A7 - if (unlikely(Py_SIZE(x) < 0)) { - goto raise_neg_overflow; - } - #else - { - int result = PyObject_RichCompareBool(x, Py_False, Py_LT); - if (unlikely(result < 0)) - return (char) -1; - if (unlikely(result == 1)) - goto raise_neg_overflow; - } - #endif - if ((sizeof(char) <= sizeof(unsigned long))) { - __PYX_VERIFY_RETURN_INT_EXC(char, unsigned long, PyLong_AsUnsignedLong(x)) - } else if ((sizeof(char) <= sizeof(unsigned PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(char, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) - } - } else { - #if CYTHON_USE_PYLONG_INTERNALS - if (__Pyx_PyLong_IsCompact(x)) { - __PYX_VERIFY_RETURN_INT(char, __Pyx_compact_pylong, __Pyx_PyLong_CompactValue(x)) - } else { - const digit* digits = __Pyx_PyLong_Digits(x); - assert(__Pyx_PyLong_DigitCount(x) > 1); - switch (__Pyx_PyLong_SignedDigitCount(x)) { - case -2: - if ((8 * sizeof(char) - 1 > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 2 * PyLong_SHIFT)) { - return (char) (((char)-1)*(((((char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - case 2: - if ((8 * sizeof(char) > 1 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 2 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 2 * PyLong_SHIFT)) { - return (char) ((((((char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - case -3: - if ((8 * sizeof(char) - 1 > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 3 * PyLong_SHIFT)) { - return (char) (((char)-1)*(((((((char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - case 3: - if ((8 * sizeof(char) > 2 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 3 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 3 * PyLong_SHIFT)) { - return (char) ((((((((char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - case -4: - if ((8 * sizeof(char) - 1 > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 4 * PyLong_SHIFT)) { - return (char) (((char)-1)*(((((((((char)digits[3]) << PyLong_SHIFT) | (char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - case 4: - if ((8 * sizeof(char) > 3 * PyLong_SHIFT)) { - if ((8 * sizeof(unsigned long) > 4 * PyLong_SHIFT)) { - __PYX_VERIFY_RETURN_INT(char, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) - } else if ((8 * sizeof(char) - 1 > 4 * PyLong_SHIFT)) { - return (char) ((((((((((char)digits[3]) << PyLong_SHIFT) | (char)digits[2]) << PyLong_SHIFT) | (char)digits[1]) << PyLong_SHIFT) | (char)digits[0]))); - } - } - break; - } - } - #endif - if ((sizeof(char) <= sizeof(long))) { - __PYX_VERIFY_RETURN_INT_EXC(char, long, PyLong_AsLong(x)) - } else if ((sizeof(char) <= sizeof(PY_LONG_LONG))) { - __PYX_VERIFY_RETURN_INT_EXC(char, PY_LONG_LONG, PyLong_AsLongLong(x)) - } - } - { - char val; - int ret = -1; - #if PY_VERSION_HEX >= 0x030d00A6 && !CYTHON_COMPILING_IN_LIMITED_API - Py_ssize_t bytes_copied = PyLong_AsNativeBytes( - x, &val, sizeof(val), Py_ASNATIVEBYTES_NATIVE_ENDIAN | (is_unsigned ? Py_ASNATIVEBYTES_UNSIGNED_BUFFER | Py_ASNATIVEBYTES_REJECT_NEGATIVE : 0)); - if (unlikely(bytes_copied == -1)) { - } else if (unlikely(bytes_copied > (Py_ssize_t) sizeof(val))) { - goto raise_overflow; - } else { - ret = 0; - } - #elif PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray) - int one = 1; int is_little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&val; - ret = _PyLong_AsByteArray((PyLongObject *)x, - bytes, sizeof(val), - is_little, !is_unsigned); - #else - PyObject *v; - PyObject *stepval = NULL, *mask = NULL, *shift = NULL; - int bits, remaining_bits, is_negative = 0; - int chunk_size = (sizeof(long) < 8) ? 30 : 62; - if (likely(PyLong_CheckExact(x))) { - v = __Pyx_NewRef(x); - } else { - v = PyNumber_Long(x); - if (unlikely(!v)) return (char) -1; - assert(PyLong_CheckExact(v)); - } - { - int result = PyObject_RichCompareBool(v, Py_False, Py_LT); - if (unlikely(result < 0)) { - Py_DECREF(v); - return (char) -1; - } - is_negative = result == 1; - } - if (is_unsigned && unlikely(is_negative)) { - Py_DECREF(v); - goto raise_neg_overflow; - } else if (is_negative) { - stepval = PyNumber_Invert(v); - Py_DECREF(v); - if (unlikely(!stepval)) - return (char) -1; - } else { - stepval = v; - } - v = NULL; - val = (char) 0; - mask = PyLong_FromLong((1L << chunk_size) - 1); if (unlikely(!mask)) goto done; - shift = PyLong_FromLong(chunk_size); if (unlikely(!shift)) goto done; - for (bits = 0; bits < (int) sizeof(char) * 8 - chunk_size; bits += chunk_size) { - PyObject *tmp, *digit; - long idigit; - digit = PyNumber_And(stepval, mask); - if (unlikely(!digit)) goto done; - idigit = PyLong_AsLong(digit); - Py_DECREF(digit); - if (unlikely(idigit < 0)) goto done; - val |= ((char) idigit) << bits; - tmp = PyNumber_Rshift(stepval, shift); - if (unlikely(!tmp)) goto done; - Py_DECREF(stepval); stepval = tmp; - } - Py_DECREF(shift); shift = NULL; - Py_DECREF(mask); mask = NULL; - { - long idigit = PyLong_AsLong(stepval); - if (unlikely(idigit < 0)) goto done; - remaining_bits = ((int) sizeof(char) * 8) - bits - (is_unsigned ? 0 : 1); - if (unlikely(idigit >= (1L << remaining_bits))) - goto raise_overflow; - val |= ((char) idigit) << bits; - } - if (!is_unsigned) { - if (unlikely(val & (((char) 1) << (sizeof(char) * 8 - 1)))) - goto raise_overflow; - if (is_negative) - val = ~val; - } - ret = 0; - done: - Py_XDECREF(shift); - Py_XDECREF(mask); - Py_XDECREF(stepval); - #endif - if (unlikely(ret)) - return (char) -1; - return val; - } - raise_overflow: - PyErr_SetString(PyExc_OverflowError, - "value too large to convert to char"); - return (char) -1; - raise_neg_overflow: - PyErr_SetString(PyExc_OverflowError, - "can't convert negative value to char"); - return (char) -1; - } - -/* FormatTypeName */ - #if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030d0000 - static __Pyx_TypeName - __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp) - { - PyObject *module = NULL, *name = NULL, *result = NULL; - #if __PYX_LIMITED_VERSION_HEX < 0x030b0000 - name = __Pyx_PyObject_GetAttrStr((PyObject *)tp, - __pyx_mstate_global->__pyx_n_u_qualname); - #else - name = PyType_GetQualName(tp); - #endif - if (unlikely(name == NULL) || unlikely(!PyUnicode_Check(name))) goto bad; - module = __Pyx_PyObject_GetAttrStr((PyObject *)tp, - __pyx_mstate_global->__pyx_n_u_module); - if (unlikely(module == NULL) || unlikely(!PyUnicode_Check(module))) goto bad; - if (PyUnicode_CompareWithASCIIString(module, "builtins") == 0) { - result = name; - name = NULL; - goto done; - } - result = PyUnicode_FromFormat("%U.%U", module, name); - if (unlikely(result == NULL)) goto bad; - done: - Py_XDECREF(name); - Py_XDECREF(module); - return result; - bad: - PyErr_Clear(); - if (name) { - result = name; - name = NULL; - } else { - result = __Pyx_NewRef(__pyx_mstate_global->__pyx_kp_u__6); - } - goto done; - } - #endif - -/* GetRuntimeVersion */ - #if __PYX_LIMITED_VERSION_HEX < 0x030b0000 - void __Pyx_init_runtime_version(void) { - if (__Pyx_cached_runtime_version == 0) { - const char* rt_version = Py_GetVersion(); - unsigned long version = 0; - unsigned long factor = 0x01000000UL; - unsigned int digit = 0; - int i = 0; - while (factor) { - while ('0' <= rt_version[i] && rt_version[i] <= '9') { - digit = digit * 10 + (unsigned int) (rt_version[i] - '0'); - ++i; - } - version += factor * digit; - if (rt_version[i] != '.') - break; - digit = 0; - factor >>= 8; - ++i; - } - __Pyx_cached_runtime_version = version; - } - } - #endif - static unsigned long __Pyx_get_runtime_version(void) { - #if __PYX_LIMITED_VERSION_HEX >= 0x030b0000 - return Py_Version & ~0xFFUL; - #else - return __Pyx_cached_runtime_version; - #endif - } - -/* CheckBinaryVersion */ - static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer) { - const unsigned long MAJOR_MINOR = 0xFFFF0000UL; - if ((rt_version & MAJOR_MINOR) == (ct_version & MAJOR_MINOR)) - return 0; - if (likely(allow_newer && (rt_version & MAJOR_MINOR) > (ct_version & MAJOR_MINOR))) - return 1; - { - char message[200]; - PyOS_snprintf(message, sizeof(message), - "compile time Python version %d.%d " - "of module '%.100s' " - "%s " - "runtime version %d.%d", - (int) (ct_version >> 24), (int) ((ct_version >> 16) & 0xFF), - __Pyx_MODULE_NAME, - (allow_newer) ? "was newer than" : "does not match", - (int) (rt_version >> 24), (int) ((rt_version >> 16) & 0xFF) - ); - return PyErr_WarnEx(NULL, message, 1); - } - } - -/* NewCodeObj */ - #if CYTHON_COMPILING_IN_LIMITED_API - static PyObject* __Pyx__PyCode_New(int a, int p, int k, int l, int s, int f, - PyObject *code, PyObject *c, PyObject* n, PyObject *v, - PyObject *fv, PyObject *cell, PyObject* fn, - PyObject *name, int fline, PyObject *lnos) { - PyObject *exception_table = NULL; - PyObject *types_module=NULL, *code_type=NULL, *result=NULL; - #if __PYX_LIMITED_VERSION_HEX < 0x030b0000 - PyObject *version_info; - PyObject *py_minor_version = NULL; - #endif - long minor_version = 0; - PyObject *type, *value, *traceback; - PyErr_Fetch(&type, &value, &traceback); - #if __PYX_LIMITED_VERSION_HEX >= 0x030b0000 - minor_version = 11; - #else - if (!(version_info = PySys_GetObject("version_info"))) goto end; - if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end; - minor_version = PyLong_AsLong(py_minor_version); - Py_DECREF(py_minor_version); - if (minor_version == -1 && PyErr_Occurred()) goto end; - #endif - if (!(types_module = PyImport_ImportModule("types"))) goto end; - if (!(code_type = PyObject_GetAttrString(types_module, "CodeType"))) goto end; - if (minor_version <= 7) { - (void)p; - result = PyObject_CallFunction(code_type, "iiiiiOOOOOOiOOO", a, k, l, s, f, code, - c, n, v, fn, name, fline, lnos, fv, cell); - } else if (minor_version <= 10) { - result = PyObject_CallFunction(code_type, "iiiiiiOOOOOOiOOO", a,p, k, l, s, f, code, - c, n, v, fn, name, fline, lnos, fv, cell); - } else { - if (!(exception_table = PyBytes_FromStringAndSize(NULL, 0))) goto end; - result = PyObject_CallFunction(code_type, "iiiiiiOOOOOOOiOOOO", a,p, k, l, s, f, code, - c, n, v, fn, name, name, fline, lnos, exception_table, fv, cell); - } - end: - Py_XDECREF(code_type); - Py_XDECREF(exception_table); - Py_XDECREF(types_module); - if (type) { - PyErr_Restore(type, value, traceback); - } - return result; - } - #elif PY_VERSION_HEX >= 0x030B0000 - static PyCodeObject* __Pyx__PyCode_New(int a, int p, int k, int l, int s, int f, - PyObject *code, PyObject *c, PyObject* n, PyObject *v, - PyObject *fv, PyObject *cell, PyObject* fn, - PyObject *name, int fline, PyObject *lnos) { - PyCodeObject *result; - result = - #if PY_VERSION_HEX >= 0x030C0000 - PyUnstable_Code_NewWithPosOnlyArgs - #else - PyCode_NewWithPosOnlyArgs - #endif - (a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes); - #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1 - if (likely(result)) - result->_co_firsttraceable = 0; - #endif - return result; - } - #elif !CYTHON_COMPILING_IN_PYPY - #define __Pyx__PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_NewWithPosOnlyArgs(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #else - #define __Pyx__PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) - #endif - static PyObject* __Pyx_PyCode_New( - const __Pyx_PyCode_New_function_description descr, - PyObject * const *varnames, - PyObject *filename, - PyObject *funcname, - PyObject *line_table, - PyObject *tuple_dedup_map - ) { - PyObject *code_obj = NULL, *varnames_tuple_dedup = NULL, *code_bytes = NULL; - Py_ssize_t var_count = (Py_ssize_t) descr.nlocals; - PyObject *varnames_tuple = PyTuple_New(var_count); - if (unlikely(!varnames_tuple)) return NULL; - for (Py_ssize_t i=0; i < var_count; i++) { - Py_INCREF(varnames[i]); - if (__Pyx_PyTuple_SET_ITEM(varnames_tuple, i, varnames[i]) != (0)) goto done; - } - #if CYTHON_COMPILING_IN_LIMITED_API - varnames_tuple_dedup = PyDict_GetItem(tuple_dedup_map, varnames_tuple); - if (!varnames_tuple_dedup) { - if (unlikely(PyDict_SetItem(tuple_dedup_map, varnames_tuple, varnames_tuple) < 0)) goto done; - varnames_tuple_dedup = varnames_tuple; - } - #else - varnames_tuple_dedup = PyDict_SetDefault(tuple_dedup_map, varnames_tuple, varnames_tuple); - if (unlikely(!varnames_tuple_dedup)) goto done; - #endif - #if CYTHON_AVOID_BORROWED_REFS - Py_INCREF(varnames_tuple_dedup); - #endif - if (__PYX_LIMITED_VERSION_HEX >= (0x030b0000) && line_table != NULL && !CYTHON_COMPILING_IN_GRAAL) { - Py_ssize_t line_table_length = __Pyx_PyBytes_GET_SIZE(line_table); - #if !CYTHON_ASSUME_SAFE_SIZE - if (unlikely(line_table_length == -1)) goto done; - #endif - Py_ssize_t code_len = (line_table_length * 2 + 4) & ~3LL; - code_bytes = PyBytes_FromStringAndSize(NULL, code_len); - if (unlikely(!code_bytes)) goto done; - char* c_code_bytes = PyBytes_AsString(code_bytes); - if (unlikely(!c_code_bytes)) goto done; - memset(c_code_bytes, 0, (size_t) code_len); - } - code_obj = (PyObject*) __Pyx__PyCode_New( - (int) descr.argcount, - (int) descr.num_posonly_args, - (int) descr.num_kwonly_args, - (int) descr.nlocals, - 0, - (int) descr.flags, - code_bytes ? code_bytes : __pyx_mstate_global->__pyx_empty_bytes, - __pyx_mstate_global->__pyx_empty_tuple, - __pyx_mstate_global->__pyx_empty_tuple, - varnames_tuple_dedup, - __pyx_mstate_global->__pyx_empty_tuple, - __pyx_mstate_global->__pyx_empty_tuple, - filename, - funcname, - (int) descr.first_line, - (__PYX_LIMITED_VERSION_HEX >= (0x030b0000) && line_table) ? line_table : __pyx_mstate_global->__pyx_empty_bytes - ); - done: - Py_XDECREF(code_bytes); - #if CYTHON_AVOID_BORROWED_REFS - Py_XDECREF(varnames_tuple_dedup); - #endif - Py_DECREF(varnames_tuple); - return code_obj; - } - -/* DecompressString */ - static PyObject *__Pyx_DecompressString(const char *s, Py_ssize_t length, int algo) { - PyObject *module, *decompress, *compressed_bytes, *decompressed; - const char* module_name = algo == 3 ? "compression.zstd" : algo == 2 ? "bz2" : "zlib"; - PyObject *methodname = PyUnicode_FromString("decompress"); - if (unlikely(!methodname)) return NULL; - #if __PYX_LIMITED_VERSION_HEX >= 0x030e0000 - if (algo == 3) { - PyObject *fromlist = Py_BuildValue("[O]", methodname); - if (unlikely(!fromlist)) return NULL; - module = PyImport_ImportModuleLevel("compression.zstd", NULL, NULL, fromlist, 0); - Py_DECREF(fromlist); - } else - #endif - module = PyImport_ImportModule(module_name); - if (unlikely(!module)) goto import_failed; - decompress = PyObject_GetAttr(module, methodname); - if (unlikely(!decompress)) goto import_failed; - { - #ifdef __cplusplus - char *memview_bytes = const_cast(s); - #else - #if defined(__clang__) - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wcast-qual" - #elif !defined(__INTEL_COMPILER) && defined(__GNUC__) - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wcast-qual" - #endif - char *memview_bytes = (char*) s; - #if defined(__clang__) - #pragma clang diagnostic pop - #elif !defined(__INTEL_COMPILER) && defined(__GNUC__) - #pragma GCC diagnostic pop - #endif - #endif - #if CYTHON_COMPILING_IN_LIMITED_API && !defined(PyBUF_READ) - int memview_flags = 0x100; - #else - int memview_flags = PyBUF_READ; - #endif - compressed_bytes = PyMemoryView_FromMemory(memview_bytes, length, memview_flags); - } - if (unlikely(!compressed_bytes)) { - Py_DECREF(decompress); - goto bad; - } - decompressed = PyObject_CallFunctionObjArgs(decompress, compressed_bytes, NULL); - Py_DECREF(compressed_bytes); - Py_DECREF(decompress); - Py_DECREF(module); - Py_DECREF(methodname); - return decompressed; - import_failed: - PyErr_Format(PyExc_ImportError, - "Failed to import '%.20s.decompress' - cannot initialise module strings. " - "String compression was configured with the C macro 'CYTHON_COMPRESS_STRINGS=%d'.", - module_name, algo); - bad: - Py_XDECREF(module); - Py_DECREF(methodname); - return NULL; - } - -#include -static CYTHON_INLINE Py_ssize_t __Pyx_ssize_strlen(const char *s) { - size_t len = strlen(s); - if (unlikely(len > (size_t) PY_SSIZE_T_MAX)) { - PyErr_SetString(PyExc_OverflowError, "byte string is too long"); - return -1; - } - return (Py_ssize_t) len; -} -static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { - Py_ssize_t len = __Pyx_ssize_strlen(c_str); - if (unlikely(len < 0)) return NULL; - return __Pyx_PyUnicode_FromStringAndSize(c_str, len); -} -static CYTHON_INLINE PyObject* __Pyx_PyByteArray_FromString(const char* c_str) { - Py_ssize_t len = __Pyx_ssize_strlen(c_str); - if (unlikely(len < 0)) return NULL; - return PyByteArray_FromStringAndSize(c_str, len); -} -static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { - Py_ssize_t ignore; - return __Pyx_PyObject_AsStringAndSize(o, &ignore); -} -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 -static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { - if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; -#if CYTHON_COMPILING_IN_LIMITED_API - { - const char* result; - Py_ssize_t unicode_length; - CYTHON_MAYBE_UNUSED_VAR(unicode_length); // only for __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - #if __PYX_LIMITED_VERSION_HEX < 0x030A0000 - if (unlikely(PyArg_Parse(o, "s#", &result, length) < 0)) return NULL; - #else - result = PyUnicode_AsUTF8AndSize(o, length); - #endif - #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - unicode_length = PyUnicode_GetLength(o); - if (unlikely(unicode_length < 0)) return NULL; - if (unlikely(unicode_length != *length)) { - PyUnicode_AsASCIIString(o); - return NULL; - } - #endif - return result; - } -#else -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII - if (likely(PyUnicode_IS_ASCII(o))) { - *length = PyUnicode_GET_LENGTH(o); - return PyUnicode_AsUTF8(o); - } else { - PyUnicode_AsASCIIString(o); - return NULL; - } -#else - return PyUnicode_AsUTF8AndSize(o, length); -#endif -#endif -} -#endif -static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { -#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 - if (PyUnicode_Check(o)) { - return __Pyx_PyUnicode_AsStringAndSize(o, length); - } else -#endif - if (PyByteArray_Check(o)) { -#if (CYTHON_ASSUME_SAFE_SIZE && CYTHON_ASSUME_SAFE_MACROS) || (CYTHON_COMPILING_IN_PYPY && (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE))) - *length = PyByteArray_GET_SIZE(o); - return PyByteArray_AS_STRING(o); -#else - *length = PyByteArray_Size(o); - if (*length == -1) return NULL; - return PyByteArray_AsString(o); -#endif - } else - { - char* result; - int r = PyBytes_AsStringAndSize(o, &result, length); - if (unlikely(r < 0)) { - return NULL; - } else { - return result; - } - } -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { - int is_true = x == Py_True; - if (is_true | (x == Py_False) | (x == Py_None)) return is_true; - else return PyObject_IsTrue(x); -} -static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { - int retval; - if (unlikely(!x)) return -1; - retval = __Pyx_PyObject_IsTrue(x); - Py_DECREF(x); - return retval; -} -static PyObject* __Pyx_PyNumber_LongWrongResultType(PyObject* result) { - __Pyx_TypeName result_type_name = __Pyx_PyType_GetFullyQualifiedName(Py_TYPE(result)); - if (PyLong_Check(result)) { - if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, - "__int__ returned non-int (type " __Pyx_FMT_TYPENAME "). " - "The ability to return an instance of a strict subclass of int is deprecated, " - "and may be removed in a future version of Python.", - result_type_name)) { - __Pyx_DECREF_TypeName(result_type_name); - Py_DECREF(result); - return NULL; - } - __Pyx_DECREF_TypeName(result_type_name); - return result; - } - PyErr_Format(PyExc_TypeError, - "__int__ returned non-int (type " __Pyx_FMT_TYPENAME ")", - result_type_name); - __Pyx_DECREF_TypeName(result_type_name); - Py_DECREF(result); - return NULL; -} -static CYTHON_INLINE PyObject* __Pyx_PyNumber_Long(PyObject* x) { -#if CYTHON_USE_TYPE_SLOTS - PyNumberMethods *m; -#endif - PyObject *res = NULL; - if (likely(PyLong_Check(x))) - return __Pyx_NewRef(x); -#if CYTHON_USE_TYPE_SLOTS - m = Py_TYPE(x)->tp_as_number; - if (likely(m && m->nb_int)) { - res = m->nb_int(x); - } -#else - if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { - res = PyNumber_Long(x); - } -#endif - if (likely(res)) { - if (unlikely(!PyLong_CheckExact(res))) { - return __Pyx_PyNumber_LongWrongResultType(res); - } - } - else if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, - "an integer is required"); - } - return res; -} -static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { - Py_ssize_t ival; - PyObject *x; - if (likely(PyLong_CheckExact(b))) { - #if CYTHON_USE_PYLONG_INTERNALS - if (likely(__Pyx_PyLong_IsCompact(b))) { - return __Pyx_PyLong_CompactValue(b); - } else { - const digit* digits = __Pyx_PyLong_Digits(b); - const Py_ssize_t size = __Pyx_PyLong_SignedDigitCount(b); - switch (size) { - case 2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -2: - if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -3: - if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case 4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - case -4: - if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { - return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); - } - break; - } - } - #endif - return PyLong_AsSsize_t(b); - } - x = PyNumber_Index(b); - if (!x) return -1; - ival = PyLong_AsSsize_t(x); - Py_DECREF(x); - return ival; -} -static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject* o) { - if (sizeof(Py_hash_t) == sizeof(Py_ssize_t)) { - return (Py_hash_t) __Pyx_PyIndex_AsSsize_t(o); - } else { - Py_ssize_t ival; - PyObject *x; - x = PyNumber_Index(o); - if (!x) return -1; - ival = PyLong_AsLong(x); - Py_DECREF(x); - return ival; - } -} -static CYTHON_INLINE PyObject *__Pyx_Owned_Py_None(int b) { - CYTHON_UNUSED_VAR(b); - return __Pyx_NewRef(Py_None); -} -static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { - return __Pyx_NewRef(b ? Py_True: Py_False); -} -static CYTHON_INLINE PyObject * __Pyx_PyLong_FromSize_t(size_t ival) { - return PyLong_FromSize_t(ival); -} - - - /* MultiPhaseInitModuleState */ - #if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE - #ifndef CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - #if (CYTHON_COMPILING_IN_LIMITED_API || PY_VERSION_HEX >= 0x030C0000) - #define CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE 1 - #else - #define CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE 0 - #endif - #endif - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE && !CYTHON_ATOMICS - #error "Module state with PEP489 requires atomics. Currently that's one of\ - C11, C++11, gcc atomic intrinsics or MSVC atomic intrinsics" - #endif - #if !CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - #define __Pyx_ModuleStateLookup_Lock() - #define __Pyx_ModuleStateLookup_Unlock() - #elif !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x030d0000 - static PyMutex __Pyx_ModuleStateLookup_mutex = {0}; - #define __Pyx_ModuleStateLookup_Lock() PyMutex_Lock(&__Pyx_ModuleStateLookup_mutex) - #define __Pyx_ModuleStateLookup_Unlock() PyMutex_Unlock(&__Pyx_ModuleStateLookup_mutex) - #elif defined(__cplusplus) && __cplusplus >= 201103L - #include - static std::mutex __Pyx_ModuleStateLookup_mutex; - #define __Pyx_ModuleStateLookup_Lock() __Pyx_ModuleStateLookup_mutex.lock() - #define __Pyx_ModuleStateLookup_Unlock() __Pyx_ModuleStateLookup_mutex.unlock() - #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ > 201112L) && !defined(__STDC_NO_THREADS__) - #include - static mtx_t __Pyx_ModuleStateLookup_mutex; - static once_flag __Pyx_ModuleStateLookup_mutex_once_flag = ONCE_FLAG_INIT; - static void __Pyx_ModuleStateLookup_initialize_mutex(void) { - mtx_init(&__Pyx_ModuleStateLookup_mutex, mtx_plain); - } - #define __Pyx_ModuleStateLookup_Lock()\ - call_once(&__Pyx_ModuleStateLookup_mutex_once_flag, __Pyx_ModuleStateLookup_initialize_mutex);\ - mtx_lock(&__Pyx_ModuleStateLookup_mutex) - #define __Pyx_ModuleStateLookup_Unlock() mtx_unlock(&__Pyx_ModuleStateLookup_mutex) - #elif defined(HAVE_PTHREAD_H) - #include - static pthread_mutex_t __Pyx_ModuleStateLookup_mutex = PTHREAD_MUTEX_INITIALIZER; - #define __Pyx_ModuleStateLookup_Lock() pthread_mutex_lock(&__Pyx_ModuleStateLookup_mutex) - #define __Pyx_ModuleStateLookup_Unlock() pthread_mutex_unlock(&__Pyx_ModuleStateLookup_mutex) - #elif defined(_WIN32) - #include // synchapi.h on its own doesn't work - static SRWLOCK __Pyx_ModuleStateLookup_mutex = SRWLOCK_INIT; - #define __Pyx_ModuleStateLookup_Lock() AcquireSRWLockExclusive(&__Pyx_ModuleStateLookup_mutex) - #define __Pyx_ModuleStateLookup_Unlock() ReleaseSRWLockExclusive(&__Pyx_ModuleStateLookup_mutex) - #else - #error "No suitable lock available for CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE.\ - Requires C standard >= C11, or C++ standard >= C++11,\ - or pthreads, or the Windows 32 API, or Python >= 3.13." - #endif - typedef struct { - int64_t id; - PyObject *module; - } __Pyx_InterpreterIdAndModule; - typedef struct { - char interpreter_id_as_index; - Py_ssize_t count; - Py_ssize_t allocated; - __Pyx_InterpreterIdAndModule table[1]; - } __Pyx_ModuleStateLookupData; - #define __PYX_MODULE_STATE_LOOKUP_SMALL_SIZE 32 - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - static __pyx_atomic_int_type __Pyx_ModuleStateLookup_read_counter = 0; - #endif - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - static __pyx_atomic_ptr_type __Pyx_ModuleStateLookup_data = 0; - #else - static __Pyx_ModuleStateLookupData* __Pyx_ModuleStateLookup_data = NULL; - #endif - static __Pyx_InterpreterIdAndModule* __Pyx_State_FindModuleStateLookupTableLowerBound( - __Pyx_InterpreterIdAndModule* table, - Py_ssize_t count, - int64_t interpreterId) { - __Pyx_InterpreterIdAndModule* begin = table; - __Pyx_InterpreterIdAndModule* end = begin + count; - if (begin->id == interpreterId) { - return begin; - } - while ((end - begin) > __PYX_MODULE_STATE_LOOKUP_SMALL_SIZE) { - __Pyx_InterpreterIdAndModule* halfway = begin + (end - begin)/2; - if (halfway->id == interpreterId) { - return halfway; - } - if (halfway->id < interpreterId) { - begin = halfway; - } else { - end = halfway; - } - } - for (; begin < end; ++begin) { - if (begin->id >= interpreterId) return begin; - } - return begin; - } - static PyObject *__Pyx_State_FindModule(CYTHON_UNUSED void* dummy) { - int64_t interpreter_id = PyInterpreterState_GetID(__Pyx_PyInterpreterState_Get()); - if (interpreter_id == -1) return NULL; - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __Pyx_ModuleStateLookupData* data = (__Pyx_ModuleStateLookupData*)__pyx_atomic_pointer_load_relaxed(&__Pyx_ModuleStateLookup_data); - { - __pyx_atomic_incr_acq_rel(&__Pyx_ModuleStateLookup_read_counter); - if (likely(data)) { - __Pyx_ModuleStateLookupData* new_data = (__Pyx_ModuleStateLookupData*)__pyx_atomic_pointer_load_acquire(&__Pyx_ModuleStateLookup_data); - if (likely(data == new_data)) { - goto read_finished; - } - } - __pyx_atomic_decr_acq_rel(&__Pyx_ModuleStateLookup_read_counter); - __Pyx_ModuleStateLookup_Lock(); - __pyx_atomic_incr_relaxed(&__Pyx_ModuleStateLookup_read_counter); - data = (__Pyx_ModuleStateLookupData*)__pyx_atomic_pointer_load_relaxed(&__Pyx_ModuleStateLookup_data); - __Pyx_ModuleStateLookup_Unlock(); - } - read_finished:; - #else - __Pyx_ModuleStateLookupData* data = __Pyx_ModuleStateLookup_data; - #endif - __Pyx_InterpreterIdAndModule* found = NULL; - if (unlikely(!data)) goto end; - if (data->interpreter_id_as_index) { - if (interpreter_id < data->count) { - found = data->table+interpreter_id; - } - } else { - found = __Pyx_State_FindModuleStateLookupTableLowerBound( - data->table, data->count, interpreter_id); - } - end: - { - PyObject *result=NULL; - if (found && found->id == interpreter_id) { - result = found->module; - } - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __pyx_atomic_decr_acq_rel(&__Pyx_ModuleStateLookup_read_counter); - #endif - return result; - } - } - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - static void __Pyx_ModuleStateLookup_wait_until_no_readers(void) { - while (__pyx_atomic_load(&__Pyx_ModuleStateLookup_read_counter) != 0); - } - #else - #define __Pyx_ModuleStateLookup_wait_until_no_readers() - #endif - static int __Pyx_State_AddModuleInterpIdAsIndex(__Pyx_ModuleStateLookupData **old_data, PyObject* module, int64_t interpreter_id) { - Py_ssize_t to_allocate = (*old_data)->allocated; - while (to_allocate <= interpreter_id) { - if (to_allocate == 0) to_allocate = 1; - else to_allocate *= 2; - } - __Pyx_ModuleStateLookupData *new_data = *old_data; - if (to_allocate != (*old_data)->allocated) { - new_data = (__Pyx_ModuleStateLookupData *)realloc( - *old_data, - sizeof(__Pyx_ModuleStateLookupData)+(to_allocate-1)*sizeof(__Pyx_InterpreterIdAndModule)); - if (!new_data) { - PyErr_NoMemory(); - return -1; - } - for (Py_ssize_t i = new_data->allocated; i < to_allocate; ++i) { - new_data->table[i].id = i; - new_data->table[i].module = NULL; - } - new_data->allocated = to_allocate; - } - new_data->table[interpreter_id].module = module; - if (new_data->count < interpreter_id+1) { - new_data->count = interpreter_id+1; - } - *old_data = new_data; - return 0; - } - static void __Pyx_State_ConvertFromInterpIdAsIndex(__Pyx_ModuleStateLookupData *data) { - __Pyx_InterpreterIdAndModule *read = data->table; - __Pyx_InterpreterIdAndModule *write = data->table; - __Pyx_InterpreterIdAndModule *end = read + data->count; - for (; readmodule) { - write->id = read->id; - write->module = read->module; - ++write; - } - } - data->count = write - data->table; - for (; writeid = 0; - write->module = NULL; - } - data->interpreter_id_as_index = 0; - } - static int __Pyx_State_AddModule(PyObject* module, CYTHON_UNUSED void* dummy) { - int64_t interpreter_id = PyInterpreterState_GetID(__Pyx_PyInterpreterState_Get()); - if (interpreter_id == -1) return -1; - int result = 0; - __Pyx_ModuleStateLookup_Lock(); - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __Pyx_ModuleStateLookupData *old_data = (__Pyx_ModuleStateLookupData *) - __pyx_atomic_pointer_exchange(&__Pyx_ModuleStateLookup_data, 0); - #else - __Pyx_ModuleStateLookupData *old_data = __Pyx_ModuleStateLookup_data; - #endif - __Pyx_ModuleStateLookupData *new_data = old_data; - if (!new_data) { - new_data = (__Pyx_ModuleStateLookupData *)calloc(1, sizeof(__Pyx_ModuleStateLookupData)); - if (!new_data) { - result = -1; - PyErr_NoMemory(); - goto end; - } - new_data->allocated = 1; - new_data->interpreter_id_as_index = 1; - } - __Pyx_ModuleStateLookup_wait_until_no_readers(); - if (new_data->interpreter_id_as_index) { - if (interpreter_id < __PYX_MODULE_STATE_LOOKUP_SMALL_SIZE) { - result = __Pyx_State_AddModuleInterpIdAsIndex(&new_data, module, interpreter_id); - goto end; - } - __Pyx_State_ConvertFromInterpIdAsIndex(new_data); - } - { - Py_ssize_t insert_at = 0; - { - __Pyx_InterpreterIdAndModule* lower_bound = __Pyx_State_FindModuleStateLookupTableLowerBound( - new_data->table, new_data->count, interpreter_id); - assert(lower_bound); - insert_at = lower_bound - new_data->table; - if (unlikely(insert_at < new_data->count && lower_bound->id == interpreter_id)) { - lower_bound->module = module; - goto end; // already in table, nothing more to do - } - } - if (new_data->count+1 >= new_data->allocated) { - Py_ssize_t to_allocate = (new_data->count+1)*2; - new_data = - (__Pyx_ModuleStateLookupData*)realloc( - new_data, - sizeof(__Pyx_ModuleStateLookupData) + - (to_allocate-1)*sizeof(__Pyx_InterpreterIdAndModule)); - if (!new_data) { - result = -1; - new_data = old_data; - PyErr_NoMemory(); - goto end; - } - new_data->allocated = to_allocate; - } - ++new_data->count; - int64_t last_id = interpreter_id; - PyObject *last_module = module; - for (Py_ssize_t i=insert_at; icount; ++i) { - int64_t current_id = new_data->table[i].id; - new_data->table[i].id = last_id; - last_id = current_id; - PyObject *current_module = new_data->table[i].module; - new_data->table[i].module = last_module; - last_module = current_module; - } - } - end: - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __pyx_atomic_pointer_exchange(&__Pyx_ModuleStateLookup_data, new_data); - #else - __Pyx_ModuleStateLookup_data = new_data; - #endif - __Pyx_ModuleStateLookup_Unlock(); - return result; - } - static int __Pyx_State_RemoveModule(CYTHON_UNUSED void* dummy) { - int64_t interpreter_id = PyInterpreterState_GetID(__Pyx_PyInterpreterState_Get()); - if (interpreter_id == -1) return -1; - __Pyx_ModuleStateLookup_Lock(); - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __Pyx_ModuleStateLookupData *data = (__Pyx_ModuleStateLookupData *) - __pyx_atomic_pointer_exchange(&__Pyx_ModuleStateLookup_data, 0); - #else - __Pyx_ModuleStateLookupData *data = __Pyx_ModuleStateLookup_data; - #endif - if (data->interpreter_id_as_index) { - if (interpreter_id < data->count) { - data->table[interpreter_id].module = NULL; - } - goto done; - } - { - __Pyx_ModuleStateLookup_wait_until_no_readers(); - __Pyx_InterpreterIdAndModule* lower_bound = __Pyx_State_FindModuleStateLookupTableLowerBound( - data->table, data->count, interpreter_id); - if (!lower_bound) goto done; - if (lower_bound->id != interpreter_id) goto done; - __Pyx_InterpreterIdAndModule *end = data->table+data->count; - for (;lower_boundid = (lower_bound+1)->id; - lower_bound->module = (lower_bound+1)->module; - } - } - --data->count; - if (data->count == 0) { - free(data); - data = NULL; - } - done: - #if CYTHON_MODULE_STATE_LOOKUP_THREAD_SAFE - __pyx_atomic_pointer_exchange(&__Pyx_ModuleStateLookup_data, data); - #else - __Pyx_ModuleStateLookup_data = data; - #endif - __Pyx_ModuleStateLookup_Unlock(); - return 0; - } - #endif - -/* #### Code section: utility_code_pragmas_end ### */ -#ifdef _MSC_VER -#pragma warning( pop ) -#endif - - - -/* #### Code section: end ### */ -#endif /* Py_PYTHON_H */ diff --git a/src/pyvale/sensorsim/cython/rastercyth.html b/src/pyvale/sensorsim/cython/rastercyth.html deleted file mode 100644 index 6b07df498..000000000 --- a/src/pyvale/sensorsim/cython/rastercyth.html +++ /dev/null @@ -1,3392 +0,0 @@ - - - - - - Cython: rastercyth.py - - - -

Generated by Cython 3.2.1

-

- Yellow lines hint at Python interaction.
- Click on a line that starts with a "+" to see the C code that Cython generated for it. -

-

Raw output: rastercyth.c

-
+001: # ==============================================================================
-
  __pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 1, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_5);
-  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-
 002: # pyvale: the python validation engine
-
 003: # License: MIT
-
 004: # Copyright (C) 2025 The Computer Aided Validation Team
-
 005: # ==============================================================================
-
 006: 
-
 007: """
-
 008: NOTE: this module is a feature under developement.
-
 009: """
-
 010: 
-
+011: import numpy as np
-
  __pyx_t_1 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_numpy, 0, 0, NULL, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 11, __pyx_L1_error)
-  __pyx_t_4 = __pyx_t_1;
-  __Pyx_GOTREF(__pyx_t_4);
-  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_4) < (0)) __PYX_ERR(0, 11, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-
 012: import cython
-
 013: #from cython.parallel import prange, parallel, threadid
-
 014: from cython.cimports.libc.math import floor, ceil
-
+015: from pyvale.sensorsim.cameradata import CameraData
-
  {
-    PyObject* const __pyx_imported_names[] = {__pyx_mstate_global->__pyx_n_u_CameraData};
-    __pyx_t_1 = __Pyx_Import(__pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cameradata, __pyx_imported_names, 1, NULL, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error)
-  }
-  __pyx_t_4 = __pyx_t_1;
-  __Pyx_GOTREF(__pyx_t_4);
-  {
-    PyObject* const __pyx_imported_names[] = {__pyx_mstate_global->__pyx_n_u_CameraData};
-    __pyx_t_9 = 0; {
-      __pyx_t_5 = __Pyx_ImportFrom(__pyx_t_4, __pyx_imported_names[__pyx_t_9]); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error)
-      __Pyx_GOTREF(__pyx_t_5);
-      if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_imported_names[__pyx_t_9], __pyx_t_5) < (0)) __PYX_ERR(0, 15, __pyx_L1_error)
-      __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-    }
-  }
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-
 016: 
-
 017: # NOTE: This module is a feature under developement.
-
 018: 
-
+019: @cython.nogil
-
static CYTHON_INLINE size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(double __pyx_v_start, double __pyx_v_stop, double __pyx_v_step) {
-  size_t __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 020: @cython.cfunc # python+C or cython.cfunc for C only
-
 021: @cython.boundscheck(False) # Turn off array bounds checking
-
 022: @cython.wraparound(False)  # Turn off negative indexing
-
 023: @cython.cdivision(True)    # Turn off divide by zero check
-
 024: @cython.inline
-
 025: @cython.exceptval(check=False)
-
 026: def range_len_double(start: cython.double,
-
 027:                      stop: cython.double,
-
 028:                      step: cython.double) -> cython.size_t:
-
+029:     return int(ceil((stop - start) / step))
-
  __pyx_r = ((size_t)ceil(((__pyx_v_stop - __pyx_v_start) / __pyx_v_step)));
-  goto __pyx_L0;
-
 030: 
-
 031: 
-
+032: @cython.nogil
-
static CYTHON_INLINE __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_range_int(int __pyx_v_start, int __pyx_v_stop, int __pyx_v_step, __Pyx_memviewslice __pyx_v_vec_buffer) {
-  size_t __pyx_v_num_vals;
-  size_t __pyx_v_ii;
-  __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } };
-/* … */
-  /* function exit code */
-  __pyx_L1_error:;
-  __pyx_gilstate_save = __Pyx_PyGILState_Ensure();
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_7, 1);
-  __pyx_r.data = NULL;
-  __pyx_r.memview = NULL;
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.vec_range_int", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  goto __pyx_L2;
-  __pyx_L0:;
-  if (unlikely(!__pyx_r.memview)) {
-    PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure();
-    PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized");
-    __Pyx_PyGILState_Release(__pyx_gilstate_save);
-  }
-  __Pyx_PyGILState_Release(__pyx_gilstate_save);
-  __pyx_L2:;
-  return __pyx_r;
-}
-
 033: @cython.cfunc # python+C or cython.cfunc for C only
-
 034: @cython.boundscheck(False) # Turn off array bounds checking
-
 035: @cython.wraparound(False)  # Turn off negative indexing
-
 036: @cython.cdivision(True)    # Turn off divide by zero check
-
 037: @cython.inline
-
 038: @cython.exceptval(check=False)
-
 039: def vec_range_int(start: cython.int,
-
 040:                   stop: cython.int,
-
 041:                   step: cython.int,
-
 042:                   vec_buffer: cython.long[:]) -> cython.long[:]:
-
 043: 
-
+044:     num_vals: cython.size_t = int(ceil((stop - start) / step))
-
  __pyx_v_num_vals = ((size_t)ceil(((__pyx_v_stop - __pyx_v_start) / __pyx_v_step)));
-
 045: 
-
+046:     vec_buffer[0] = start
-
  __pyx_t_1 = 0;
-  *((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_1 * __pyx_v_vec_buffer.strides[0]) )) = __pyx_v_start;
-
 047:     ii: cython.size_t
-
+048:     for ii in range(1,num_vals):
-
  __pyx_t_2 = __pyx_v_num_vals;
-  __pyx_t_3 = __pyx_t_2;
-  for (__pyx_t_4 = 1; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) {
-    __pyx_v_ii = __pyx_t_4;
-
+049:         vec_buffer[ii] = vec_buffer[ii-1] + step
-
    __pyx_t_5 = (__pyx_v_ii - 1);
-    __pyx_t_6 = __pyx_v_ii;
-    *((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_6 * __pyx_v_vec_buffer.strides[0]) )) = ((*((long *) ( /* dim=0 */ (__pyx_v_vec_buffer.data + __pyx_t_5 * __pyx_v_vec_buffer.strides[0]) ))) + __pyx_v_step);
-  }
-
 050: 
-
+051:     return vec_buffer[0:num_vals]
-
  __pyx_t_7.data = __pyx_v_vec_buffer.data;
-  __pyx_t_7.memview = __pyx_v_vec_buffer.memview;
-  __PYX_INC_MEMVIEW(&__pyx_t_7, 0);
-  __pyx_t_8 = -1;
-  if (unlikely(__pyx_memoryview_slice_memviewslice(
-    &__pyx_t_7,
-    __pyx_v_vec_buffer.shape[0], __pyx_v_vec_buffer.strides[0], __pyx_v_vec_buffer.suboffsets[0],
-    0,
-    0,
-    &__pyx_t_8,
-    0,
-    __pyx_v_num_vals,
-    0,
-    1,
-    1,
-    0,
-    1) < 0))
-{
-    __PYX_ERR(0, 51, __pyx_L1_error)
-}
-
-__pyx_r = __pyx_t_7;
-  __pyx_t_7.memview = NULL;
-  __pyx_t_7.data = NULL;
-  goto __pyx_L0;
-
 052: 
-
 053: 
-
+054: @cython.nogil
-
static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__Pyx_memviewslice __pyx_v_vals) {
-  size_t __pyx_v_num_vals;
-  size_t __pyx_v_ii;
-  double __pyx_v_max_val;
-  double __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 055: @cython.cfunc # python+C or cython.cfunc for C only
-
 056: @cython.boundscheck(False) # Turn off array bounds checking
-
 057: @cython.wraparound(False)  # Turn off negative indexing
-
 058: @cython.cdivision(True)    # Turn off divide by zero check
-
 059: @cython.inline
-
 060: @cython.exceptval(check=False)
-
 061: def vec_max_double(vals: cython.double[:]) -> cython.double:
-
 062: 
-
+063:     num_vals: cython.size_t = vals.shape[0]
-
  __pyx_v_num_vals = (__pyx_v_vals.shape[0]);
-
 064: 
-
+065:     ii: cython.size_t = 0
-
  __pyx_v_ii = 0;
-
+066:     max_val: cython.double = vals[ii]
-
  __pyx_t_1 = __pyx_v_ii;
-  __pyx_v_max_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_1 * __pyx_v_vals.strides[0]) )));
-
 067: 
-
+068:     for ii in range(1,num_vals):
-
  __pyx_t_1 = __pyx_v_num_vals;
-  __pyx_t_2 = __pyx_t_1;
-  for (__pyx_t_3 = 1; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
-    __pyx_v_ii = __pyx_t_3;
-
+069:         if vals[ii] > max_val:
-
    __pyx_t_4 = __pyx_v_ii;
-    __pyx_t_5 = ((*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))) > __pyx_v_max_val);
-    if (__pyx_t_5) {
-/* … */
-    }
-  }
-
+070:             max_val = vals[ii]
-
      __pyx_t_4 = __pyx_v_ii;
-      __pyx_v_max_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) )));
-
 071: 
-
+072:     return max_val
-
  __pyx_r = __pyx_v_max_val;
-  goto __pyx_L0;
-
 073: 
-
 074: 
-
+075: @cython.nogil
-
static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__Pyx_memviewslice __pyx_v_vals) {
-  size_t __pyx_v_num_vals;
-  size_t __pyx_v_ii;
-  double __pyx_v_min_val;
-  double __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 076: @cython.cfunc # python+C or cython.cfunc for C only
-
 077: @cython.boundscheck(False) # Turn off array bounds checking
-
 078: @cython.wraparound(False)  # Turn off negative indexing
-
 079: @cython.cdivision(True)    # Turn off divide by zero check
-
 080: @cython.inline
-
 081: @cython.exceptval(check=False)
-
 082: def vec_min_double(vals: cython.double[:]) -> cython.double:
-
 083: 
-
+084:     num_vals: cython.size_t = vals.shape[0]
-
  __pyx_v_num_vals = (__pyx_v_vals.shape[0]);
-
 085: 
-
+086:     ii: cython.size_t = 0
-
  __pyx_v_ii = 0;
-
+087:     min_val: cython.double = vals[ii]
-
  __pyx_t_1 = __pyx_v_ii;
-  __pyx_v_min_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_1 * __pyx_v_vals.strides[0]) )));
-
 088: 
-
+089:     for ii in range(1,num_vals):
-
  __pyx_t_1 = __pyx_v_num_vals;
-  __pyx_t_2 = __pyx_t_1;
-  for (__pyx_t_3 = 1; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
-    __pyx_v_ii = __pyx_t_3;
-
+090:         if vals[ii] < min_val:
-
    __pyx_t_4 = __pyx_v_ii;
-    __pyx_t_5 = ((*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) ))) < __pyx_v_min_val);
-    if (__pyx_t_5) {
-/* … */
-    }
-  }
-
+091:             min_val = vals[ii]
-
      __pyx_t_4 = __pyx_v_ii;
-      __pyx_v_min_val = (*((double *) ( /* dim=0 */ (__pyx_v_vals.data + __pyx_t_4 * __pyx_v_vals.strides[0]) )));
-
 092: 
-
+093:     return min_val
-
  __pyx_r = __pyx_v_min_val;
-  goto __pyx_L0;
-
 094: 
-
 095: 
-
+096: @cython.nogil
-
static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__Pyx_memviewslice __pyx_v_vec0, __Pyx_memviewslice __pyx_v_vec1) {
-  size_t __pyx_v_vec0_len;
-  size_t __pyx_v_vec1_len;
-  size_t __pyx_v_ii;
-  double __pyx_v_dot;
-  double __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 097: @cython.cfunc # python+C or cython.cfunc for C only
-
 098: @cython.boundscheck(False) # Turn off array bounds checking
-
 099: @cython.wraparound(False)  # Turn off negative indexing
-
 100: @cython.cdivision(True)    # Turn off divide by zero check
-
 101: @cython.inline
-
 102: @cython.exceptval(check=False)
-
 103: def vec_dot_double(vec0: cython.double[:], vec1: cython.double[:]
-
 104:                    ) -> cython.double:
-
+105:     vec0_len: cython.size_t = vec0.shape[0]
-
  __pyx_v_vec0_len = (__pyx_v_vec0.shape[0]);
-
+106:     vec1_len: cython.size_t = vec1.shape[0]
-
  __pyx_v_vec1_len = (__pyx_v_vec1.shape[0]);
-
+107:     if vec0_len != vec1_len:
-
  __pyx_t_1 = (__pyx_v_vec0_len != __pyx_v_vec1_len);
-  if (__pyx_t_1) {
-/* … */
-  }
-
+108:         return 0.0
-
    __pyx_r = 0.0;
-    goto __pyx_L0;
-
 109: 
-
+110:     ii: cython.size_t = 0
-
  __pyx_v_ii = 0;
-
+111:     dot: cython.double = 0.0
-
  __pyx_v_dot = 0.0;
-
+112:     for ii in range(vec0_len):
-
  __pyx_t_2 = __pyx_v_vec0_len;
-  __pyx_t_3 = __pyx_t_2;
-  for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) {
-    __pyx_v_ii = __pyx_t_4;
-
+113:         dot += vec0[ii]*vec1[ii]
-
    __pyx_t_5 = __pyx_v_ii;
-    __pyx_t_6 = __pyx_v_ii;
-    __pyx_v_dot = (__pyx_v_dot + ((*((double *) ( /* dim=0 */ (__pyx_v_vec0.data + __pyx_t_5 * __pyx_v_vec0.strides[0]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec1.data + __pyx_t_6 * __pyx_v_vec1.strides[0]) )))));
-  }
-
 114: 
-
+115:     return dot
-
  __pyx_r = __pyx_v_dot;
-  goto __pyx_L0;
-
 116: 
-
 117: 
-
+118: @cython.nogil
-
static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(double __pyx_v_min_val) {
-  int __pyx_v_min_ind;
-  int __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 119: @cython.cfunc # python+C or cython.cfunc for C only
-
 120: @cython.boundscheck(False) # Turn off array bounds checking
-
 121: @cython.wraparound(False)  # Turn off negative indexing
-
 122: @cython.cdivision(True)    # Turn off divide by zero check
-
 123: @cython.inline
-
 124: @cython.exceptval(check=False)
-
 125: def bound_index_min(min_val: cython.double) -> cython.int:
-
+126:     min_ind: cython.int = int(floor(min_val))
-
  __pyx_v_min_ind = ((int)floor(__pyx_v_min_val));
-
+127:     if min_ind < 0:
-
  __pyx_t_1 = (__pyx_v_min_ind < 0);
-  if (__pyx_t_1) {
-/* … */
-  }
-
+128:         min_ind = 0
-
    __pyx_v_min_ind = 0;
-
+129:     return min_ind
-
  __pyx_r = __pyx_v_min_ind;
-  goto __pyx_L0;
-
 130: 
-
 131: 
-
+132: @cython.nogil
-
static CYTHON_INLINE int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(double __pyx_v_max_val, int __pyx_v_num_pixels) {
-  int __pyx_v_max_ind;
-  int __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 133: @cython.cfunc # python+C or cython.cfunc for C only
-
 134: @cython.boundscheck(False) # Turn off array bounds checking
-
 135: @cython.wraparound(False)  # Turn off negative indexing
-
 136: @cython.cdivision(True)    # Turn off divide by zero check
-
 137: @cython.inline
-
 138: @cython.exceptval(check=False)
-
 139: def bound_index_max(max_val: cython.double,
-
 140:                     num_pixels: cython.int) -> cython.int:
-
+141:     max_ind: cython.int = int(ceil(max_val))
-
  __pyx_v_max_ind = ((int)ceil(__pyx_v_max_val));
-
+142:     if max_ind > (num_pixels-1):
-
  __pyx_t_1 = (__pyx_v_max_ind > (__pyx_v_num_pixels - 1));
-  if (__pyx_t_1) {
-/* … */
-  }
-
+143:         max_ind = (num_pixels-1)
-
    __pyx_v_max_ind = (__pyx_v_num_pixels - 1);
-
+144:     return max_ind
-
  __pyx_r = __pyx_v_max_ind;
-  goto __pyx_L0;
-
 145: 
-
 146: 
-
+147: @cython.nogil
-
static CYTHON_INLINE __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_mult_mat44_by_vec3(__Pyx_memviewslice __pyx_v_mat44, __Pyx_memviewslice __pyx_v_vec3_in, __Pyx_memviewslice __pyx_v_vec3_out) {
-  __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } };
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  if (unlikely(!__pyx_r.memview)) {
-    PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure();
-    PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized");
-    __Pyx_PyGILState_Release(__pyx_gilstate_save);
-  }
-  return __pyx_r;
-}
-
 148: @cython.cfunc # python+C or cython.cfunc for C only
-
 149: @cython.boundscheck(False) # Turn off array bounds checking
-
 150: @cython.wraparound(False)  # Turn off negative indexing
-
 151: @cython.cdivision(True)    # Turn off divide by zero check
-
 152: @cython.inline
-
 153: @cython.exceptval(check=False)
-
 154: def mult_mat44_by_vec3(mat44: cython.double[:,:], vec3_in: cython.double[:],
-
 155:                        vec3_out: cython.double[:]) -> cython.double[:]:
-
 156: 
-
+157:     vec3_out[0] = (mat44[0,0]*vec3_in[0]
-
  __pyx_t_1 = 0;
-  __pyx_t_2 = 0;
-  __pyx_t_3 = 0;
-/* … */
-  __pyx_t_12 = 0;
-  *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_1 * __pyx_v_mat44.strides[0]) ) + __pyx_t_2 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_4 * __pyx_v_mat44.strides[0]) ) + __pyx_t_5 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_7 * __pyx_v_mat44.strides[0]) ) + __pyx_t_8 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_10 * __pyx_v_mat44.strides[0]) ) + __pyx_t_11 * __pyx_v_mat44.strides[1]) ))));
-
+158:                       + mat44[0,1]*vec3_in[1]
-
  __pyx_t_4 = 0;
-  __pyx_t_5 = 1;
-  __pyx_t_6 = 1;
-
+159:                       + mat44[0,2]*vec3_in[2]
-
  __pyx_t_7 = 0;
-  __pyx_t_8 = 2;
-  __pyx_t_9 = 2;
-
+160:                       + mat44[0,3])
-
  __pyx_t_10 = 0;
-  __pyx_t_11 = 3;
-
+161:     vec3_out[1] = (mat44[1,0]*vec3_in[0]
-
  __pyx_t_11 = 1;
-  __pyx_t_10 = 0;
-  __pyx_t_9 = 0;
-/* … */
-  __pyx_t_12 = 1;
-  *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_11 * __pyx_v_mat44.strides[0]) ) + __pyx_t_10 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_8 * __pyx_v_mat44.strides[0]) ) + __pyx_t_7 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_5 * __pyx_v_mat44.strides[0]) ) + __pyx_t_4 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_2 * __pyx_v_mat44.strides[0]) ) + __pyx_t_1 * __pyx_v_mat44.strides[1]) ))));
-
+162:                       + mat44[1,1]*vec3_in[1]
-
  __pyx_t_8 = 1;
-  __pyx_t_7 = 1;
-  __pyx_t_6 = 1;
-
+163:                       + mat44[1,2]*vec3_in[2]
-
  __pyx_t_5 = 1;
-  __pyx_t_4 = 2;
-  __pyx_t_3 = 2;
-
+164:                       + mat44[1,3])
-
  __pyx_t_2 = 1;
-  __pyx_t_1 = 3;
-
+165:     vec3_out[2] = (mat44[2,0]*vec3_in[0]
-
  __pyx_t_1 = 2;
-  __pyx_t_2 = 0;
-  __pyx_t_3 = 0;
-/* … */
-  __pyx_t_12 = 2;
-  *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_1 * __pyx_v_mat44.strides[0]) ) + __pyx_t_2 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_4 * __pyx_v_mat44.strides[0]) ) + __pyx_t_5 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_7 * __pyx_v_mat44.strides[0]) ) + __pyx_t_8 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_10 * __pyx_v_mat44.strides[0]) ) + __pyx_t_11 * __pyx_v_mat44.strides[1]) ))));
-
+166:                       + mat44[2,1]*vec3_in[1]
-
  __pyx_t_4 = 2;
-  __pyx_t_5 = 1;
-  __pyx_t_6 = 1;
-
+167:                       + mat44[2,2]*vec3_in[2]
-
  __pyx_t_7 = 2;
-  __pyx_t_8 = 2;
-  __pyx_t_9 = 2;
-
+168:                       + mat44[2,3])
-
  __pyx_t_10 = 2;
-  __pyx_t_11 = 3;
-
+169:     vec3_out[3] = (mat44[3,0]*vec3_in[0]
-
  __pyx_t_11 = 3;
-  __pyx_t_10 = 0;
-  __pyx_t_9 = 0;
-/* … */
-  __pyx_t_12 = 3;
-  *((double *) ( /* dim=0 */ (__pyx_v_vec3_out.data + __pyx_t_12 * __pyx_v_vec3_out.strides[0]) )) = (((((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_11 * __pyx_v_mat44.strides[0]) ) + __pyx_t_10 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_9 * __pyx_v_vec3_in.strides[0]) )))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_8 * __pyx_v_mat44.strides[0]) ) + __pyx_t_7 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_6 * __pyx_v_vec3_in.strides[0]) ))))) + ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_5 * __pyx_v_mat44.strides[0]) ) + __pyx_t_4 * __pyx_v_mat44.strides[1]) ))) * (*((double *) ( /* dim=0 */ (__pyx_v_vec3_in.data + __pyx_t_3 * __pyx_v_vec3_in.strides[0]) ))))) + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_mat44.data + __pyx_t_2 * __pyx_v_mat44.strides[0]) ) + __pyx_t_1 * __pyx_v_mat44.strides[1]) ))));
-
+170:                       + mat44[3,1]*vec3_in[1]
-
  __pyx_t_8 = 3;
-  __pyx_t_7 = 1;
-  __pyx_t_6 = 1;
-
+171:                       + mat44[3,2]*vec3_in[2]
-
  __pyx_t_5 = 3;
-  __pyx_t_4 = 2;
-  __pyx_t_3 = 2;
-
+172:                       + mat44[3,3])
-
  __pyx_t_2 = 3;
-  __pyx_t_1 = 3;
-
 173: 
-
+174:     return vec3_out
-
  __PYX_INC_MEMVIEW(&__pyx_v_vec3_out, 0);
-  __pyx_r = __pyx_v_vec3_out;
-  goto __pyx_L0;
-
 175: 
-
 176: 
-
+177: @cython.nogil
-
static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_world_to_raster_coords(__Pyx_memviewslice __pyx_v_coords_world, __Pyx_memviewslice __pyx_v_world_to_cam_mat, double __pyx_v_image_dist, __Pyx_memviewslice __pyx_v_image_dims, __Pyx_memviewslice __pyx_v_num_pixels, __Pyx_memviewslice __pyx_v_coords_raster) {
-  size_t __pyx_v_xx;
-  size_t __pyx_v_yy;
-  size_t __pyx_v_zz;
-  size_t __pyx_v_ww;
-  __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __PYX_INC_MEMVIEW(&__pyx_v_coords_raster, 0);
-/* … */
-  /* function exit code */
-  __pyx_L1_error:;
-  __pyx_gilstate_save = __Pyx_PyGILState_Ensure();
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1);
-  __pyx_r.data = NULL;
-  __pyx_r.memview = NULL;
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.world_to_raster_coords", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  goto __pyx_L2;
-  __pyx_L0:;
-  if (unlikely(!__pyx_r.memview)) {
-    PyGILState_STATE __pyx_gilstate_save = __Pyx_PyGILState_Ensure();
-    PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized");
-    __Pyx_PyGILState_Release(__pyx_gilstate_save);
-  }
-  __Pyx_PyGILState_Release(__pyx_gilstate_save);
-  __pyx_L2:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords_raster, 0);
-  return __pyx_r;
-}
-
 178: @cython.cfunc # python+C or cython.cfunc for C only
-
 179: @cython.boundscheck(False) # Turn off array bounds checking
-
 180: @cython.wraparound(False)  # Turn off negative indexing
-
 181: @cython.cdivision(True)    # Turn off divide by zero check
-
 182: @cython.exceptval(check=False)
-
 183: def world_to_raster_coords(coords_world: cython.double[:],
-
 184:                            world_to_cam_mat: cython.double[:,:],
-
 185:                            image_dist: cython.double,
-
 186:                            image_dims: cython.double[:],
-
 187:                            num_pixels: cython.int[:],
-
 188:                            coords_raster: cython.double[:]
-
 189:                            ) -> cython.double[:]:
-
+190:     xx: cython.size_t = 0
-
  __pyx_v_xx = 0;
-
+191:     yy: cython.size_t = 1
-
  __pyx_v_yy = 1;
-
+192:     zz: cython.size_t = 2
-
  __pyx_v_zz = 2;
-
+193:     ww: cython.size_t = 3
-
  __pyx_v_ww = 3;
-
 194: 
-
+195:     coords_raster = mult_mat44_by_vec3(world_to_cam_mat,
-
  __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_mult_mat44_by_vec3(__pyx_v_world_to_cam_mat, __pyx_v_coords_world, __pyx_v_coords_raster); if (unlikely(!__pyx_t_1.memview)) __PYX_ERR(0, 195, __pyx_L1_error)
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords_raster, 0);
-  __pyx_v_coords_raster = __pyx_t_1;
-  __pyx_t_1.memview = NULL;
-  __pyx_t_1.data = NULL;
-
 196:                                        coords_world,
-
 197:                                        coords_raster)
-
 198: 
-
+199:     coords_raster[xx] = coords_raster[xx] / coords_raster[ww]
-
  __pyx_t_2 = __pyx_v_xx;
-  __pyx_t_3 = __pyx_v_ww;
-  __pyx_t_4 = __pyx_v_xx;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))));
-
+200:     coords_raster[yy] = coords_raster[yy] / coords_raster[ww]
-
  __pyx_t_3 = __pyx_v_yy;
-  __pyx_t_2 = __pyx_v_ww;
-  __pyx_t_4 = __pyx_v_yy;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))));
-
+201:     coords_raster[zz] = coords_raster[zz] / coords_raster[ww]
-
  __pyx_t_2 = __pyx_v_zz;
-  __pyx_t_3 = __pyx_v_ww;
-  __pyx_t_4 = __pyx_v_zz;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) ))) / (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))));
-
 202: 
-
+203:     coords_raster[xx] = (image_dist * coords_raster[xx]
-
  __pyx_t_3 = __pyx_v_xx;
-/* … */
-  __pyx_t_4 = __pyx_v_xx;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((__pyx_v_image_dist * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))) / (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))));
-
+204:                         / -coords_raster[zz])
-
  __pyx_t_2 = __pyx_v_zz;
-
+205:     coords_raster[yy] = (image_dist * coords_raster[yy]
-
  __pyx_t_2 = __pyx_v_yy;
-/* … */
-  __pyx_t_4 = __pyx_v_yy;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((__pyx_v_image_dist * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))));
-
+206:                         / -coords_raster[zz])
-
  __pyx_t_3 = __pyx_v_zz;
-
 207: 
-
+208:     coords_raster[xx] = 2*coords_raster[xx] / image_dims[xx]
-
  __pyx_t_3 = __pyx_v_xx;
-  __pyx_t_2 = __pyx_v_xx;
-  __pyx_t_4 = __pyx_v_xx;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((2.0 * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) )))) / (*((double *) ( /* dim=0 */ (__pyx_v_image_dims.data + __pyx_t_2 * __pyx_v_image_dims.strides[0]) ))));
-
+209:     coords_raster[yy] = 2*coords_raster[yy] / image_dims[yy]
-
  __pyx_t_2 = __pyx_v_yy;
-  __pyx_t_3 = __pyx_v_yy;
-  __pyx_t_4 = __pyx_v_yy;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((2.0 * (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / (*((double *) ( /* dim=0 */ (__pyx_v_image_dims.data + __pyx_t_3 * __pyx_v_image_dims.strides[0]) ))));
-
 210: 
-
+211:     coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx]
-
  __pyx_t_3 = __pyx_v_xx;
-  __pyx_t_2 = __pyx_v_xx;
-  __pyx_t_4 = __pyx_v_xx;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = ((((*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))) + 1.0) / 2.0) * (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_2 * __pyx_v_num_pixels.strides[0]) ))));
-
+212:     coords_raster[yy] = (1-coords_raster[yy])/2 * num_pixels[yy]
-
  __pyx_t_2 = __pyx_v_yy;
-  __pyx_t_3 = __pyx_v_yy;
-  __pyx_t_4 = __pyx_v_yy;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_4 * __pyx_v_coords_raster.strides[0]) )) = (((1.0 - (*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )))) / 2.0) * (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_3 * __pyx_v_num_pixels.strides[0]) ))));
-
+213:     coords_raster[zz] = -coords_raster[zz]
-
  __pyx_t_3 = __pyx_v_zz;
-  __pyx_t_2 = __pyx_v_zz;
-  *((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_2 * __pyx_v_coords_raster.strides[0]) )) = (-(*((double *) ( /* dim=0 */ (__pyx_v_coords_raster.data + __pyx_t_3 * __pyx_v_coords_raster.strides[0]) ))));
-
 214: 
-
+215:     return coords_raster
-
  __PYX_INC_MEMVIEW(&__pyx_v_coords_raster, 0);
-  __pyx_r = __pyx_v_coords_raster;
-  goto __pyx_L0;
-
 216: 
-
+217: @cython.cfunc
-
static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__Pyx_memviewslice __pyx_v_vert_0, __Pyx_memviewslice __pyx_v_vert_1, __Pyx_memviewslice __pyx_v_vert_2) {
-  double __pyx_v_edge_fun;
-  double __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 218: @cython.nogil
-
 219: @cython.boundscheck(False)
-
 220: @cython.wraparound(False)
-
 221: @cython.inline
-
 222: @cython.exceptval(check=False)
-
 223: def edge_function(vert_0: cython.double[:],
-
 224:                   vert_1: cython.double[:],
-
 225:                   vert_2: cython.double[:]) -> cython.double:
-
 226:     edge_fun: cython.double = (
-
+227:         (vert_2[0] - vert_0[0]) * (vert_1[1] - vert_0[1])
-
  __pyx_t_1 = 0;
-  __pyx_t_2 = 0;
-  __pyx_t_3 = 1;
-  __pyx_t_4 = 1;
-
+228:         - (vert_2[1] - vert_0[1]) * (vert_1[0] - vert_0[0]))
-
  __pyx_t_5 = 1;
-  __pyx_t_6 = 1;
-  __pyx_t_7 = 0;
-  __pyx_t_8 = 0;
-  __pyx_v_edge_fun = ((((*((double *) ( /* dim=0 */ (__pyx_v_vert_2.data + __pyx_t_1 * __pyx_v_vert_2.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_2 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_3 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_4 * __pyx_v_vert_0.strides[0]) ))))) - (((*((double *) ( /* dim=0 */ (__pyx_v_vert_2.data + __pyx_t_5 * __pyx_v_vert_2.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_6 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_7 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_8 * __pyx_v_vert_0.strides[0]) ))))));
-
+229:     return edge_fun
-
  __pyx_r = __pyx_v_edge_fun;
-  goto __pyx_L0;
-
 230: 
-
 231: 
-
+232: @cython.cfunc
-
static CYTHON_INLINE double __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function_pt(__Pyx_memviewslice __pyx_v_vert_0, __Pyx_memviewslice __pyx_v_vert_1, double __pyx_v_vert_2_x, double __pyx_v_vert_2_y) {
-  double __pyx_v_edge_fun;
-  double __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 233: @cython.nogil
-
 234: @cython.boundscheck(False)
-
 235: @cython.wraparound(False)
-
 236: @cython.inline
-
 237: @cython.exceptval(check=False)
-
 238: def edge_function_pt(vert_0: cython.double[:],
-
 239:                      vert_1: cython.double[:],
-
 240:                      vert_2_x: cython.double,
-
 241:                      vert_2_y: cython.double) -> cython.double:
-
 242:     edge_fun: cython.double = (
-
+243:         (vert_2_x - vert_0[0]) * (vert_1[1] - vert_0[1])
-
  __pyx_t_1 = 0;
-  __pyx_t_2 = 1;
-  __pyx_t_3 = 1;
-
+244:         - (vert_2_y - vert_0[1]) * (vert_1[0] - vert_0[0]))
-
  __pyx_t_4 = 1;
-  __pyx_t_5 = 0;
-  __pyx_t_6 = 0;
-  __pyx_v_edge_fun = (((__pyx_v_vert_2_x - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_1 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_2 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_3 * __pyx_v_vert_0.strides[0]) ))))) - ((__pyx_v_vert_2_y - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_4 * __pyx_v_vert_0.strides[0]) )))) * ((*((double *) ( /* dim=0 */ (__pyx_v_vert_1.data + __pyx_t_5 * __pyx_v_vert_1.strides[0]) ))) - (*((double *) ( /* dim=0 */ (__pyx_v_vert_0.data + __pyx_t_6 * __pyx_v_vert_0.strides[0]) ))))));
-
+245:     return edge_fun
-
  __pyx_r = __pyx_v_edge_fun;
-  goto __pyx_L0;
-
 246: 
-
 247: 
-
+248: @cython.ccall
-
static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static __Pyx_memviewslice __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__Pyx_memviewslice __pyx_v_image_subpx, int __pyx_v_sub_samp, CYTHON_UNUSED int __pyx_skip_dispatch) {
-  size_t __pyx_v_px_num_y;
-  size_t __pyx_v_px_num_x;
-  PyObject *__pyx_v_image_buff_avg_np = NULL;
-  __Pyx_memviewslice __pyx_v_image_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } };
-  size_t __pyx_v_num_subpx_y;
-  size_t __pyx_v_num_subpx_x;
-  double __pyx_v_subpx_per_px;
-  size_t __pyx_v_ss_size;
-  size_t __pyx_v_num_px_y;
-  size_t __pyx_v_num_px_x;
-  double __pyx_v_px_sum;
-  size_t __pyx_v_ix;
-  size_t __pyx_v_iy;
-  size_t __pyx_v_sx;
-  size_t __pyx_v_sy;
-  __Pyx_memviewslice __pyx_r = { 0, 0, { 0 }, { 0 }, { 0 } };
-/* … */
-  /* function exit code */
-  __pyx_L1_error:;
-  __Pyx_XDECREF(__pyx_t_2);
-  __Pyx_XDECREF(__pyx_t_3);
-  __Pyx_XDECREF(__pyx_t_4);
-  __Pyx_XDECREF(__pyx_t_5);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_7, 1);
-  __Pyx_XDECREF(__pyx_t_8);
-  __Pyx_XDECREF(__pyx_t_9);
-  __pyx_r.data = NULL;
-  __pyx_r.memview = NULL;
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  goto __pyx_L2;
-  __pyx_L0:;
-  if (unlikely(!__pyx_r.memview)) {
-    PyErr_SetString(PyExc_TypeError, "Memoryview return value is not initialized");
-  }
-  __pyx_L2:;
-  __Pyx_XDECREF(__pyx_v_image_buff_avg_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_avg, 1);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-
-/* Python wrapper */
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_1average_image = {"average_image", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0};
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_1average_image(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-) {
-  __Pyx_memviewslice __pyx_v_image_subpx = { 0, 0, { 0 }, { 0 }, { 0 } };
-  int __pyx_v_sub_samp;
-  #if !CYTHON_METH_FASTCALL
-  CYTHON_UNUSED Py_ssize_t __pyx_nargs;
-  #endif
-  CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
-  PyObject *__pyx_r = 0;
-  __Pyx_RefNannyDeclarations
-  __Pyx_RefNannySetupContext("average_image (wrapper)", 0);
-  #if !CYTHON_METH_FASTCALL
-  #if CYTHON_ASSUME_SAFE_SIZE
-  __pyx_nargs = PyTuple_GET_SIZE(__pyx_args);
-  #else
-  __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL;
-  #endif
-  #endif
-  __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs);
-  {
-    PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_image_subpx,&__pyx_mstate_global->__pyx_n_u_sub_samp,0};
-  PyObject* values[2] = {0,0};
-    const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
-    if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 248, __pyx_L3_error)
-    if (__pyx_kwds_len > 0) {
-      switch (__pyx_nargs) {
-        case  2:
-        values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 248, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  1:
-        values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 248, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  0: break;
-        default: goto __pyx_L5_argtuple_error;
-      }
-      const Py_ssize_t kwd_pos_args = __pyx_nargs;
-      if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "average_image", 0) < (0)) __PYX_ERR(0, 248, __pyx_L3_error)
-      for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
-        if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("average_image", 1, 2, 2, i); __PYX_ERR(0, 248, __pyx_L3_error) }
-      }
-    } else if (unlikely(__pyx_nargs != 2)) {
-      goto __pyx_L5_argtuple_error;
-    } else {
-      values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 248, __pyx_L3_error)
-      values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 248, __pyx_L3_error)
-    }
-    __pyx_v_image_subpx = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_image_subpx.memview)) __PYX_ERR(0, 252, __pyx_L3_error)
-    __pyx_v_sub_samp = __Pyx_PyLong_As_int(values[1]); if (unlikely((__pyx_v_sub_samp == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 253, __pyx_L3_error)
-  }
-  goto __pyx_L6_skip;
-  __pyx_L5_argtuple_error:;
-  __Pyx_RaiseArgtupleInvalid("average_image", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 248, __pyx_L3_error)
-  __pyx_L6_skip:;
-  goto __pyx_L4_argument_unpacking_done;
-  __pyx_L3_error:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_subpx, 1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __Pyx_RefNannyFinishContext();
-  return NULL;
-  __pyx_L4_argument_unpacking_done:;
-  if (unlikely(((PyObject *)__pyx_v_image_subpx.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "image_subpx"); __PYX_ERR(0, 252, __pyx_L1_error)
-  }
-  __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__pyx_self, __pyx_v_image_subpx, __pyx_v_sub_samp);
-  int __pyx_lineno = 0;
-  const char *__pyx_filename = NULL;
-  int __pyx_clineno = 0;
-
-  /* function exit code */
-  goto __pyx_L0;
-  __pyx_L1_error:;
-  __pyx_r = NULL;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  goto __pyx_L7_cleaned_up;
-  __pyx_L0:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __pyx_L7_cleaned_up:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_subpx, 1);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-
-static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_average_image(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_image_subpx, int __pyx_v_sub_samp) {
-  PyObject *__pyx_r = NULL;
-  __Pyx_XDECREF(__pyx_r);
-  if (unlikely(!__pyx_v_image_subpx.memview)) { __Pyx_RaiseUnboundLocalError("image_subpx"); __PYX_ERR(0, 248, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_image_subpx.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 248, __pyx_L1_error)
-  }
-  __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_average_image(__pyx_v_image_subpx, __pyx_v_sub_samp, 1); if (unlikely(!__pyx_t_1.memview)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __pyx_t_2 = __pyx_memoryview_fromslice(__pyx_t_1, 2, (PyObject *(*)(char *)) __pyx_memview_get_double, (int (*)(char *, PyObject *)) __pyx_memview_set_double, 0);; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_2);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1);
-  __pyx_t_1.memview = NULL; __pyx_t_1.data = NULL;
-  __pyx_r = __pyx_t_2;
-  __pyx_t_2 = 0;
-  goto __pyx_L0;
-
-  /* function exit code */
-  __pyx_L1_error:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_1, 1);
-  __Pyx_XDECREF(__pyx_t_2);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.average_image", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __pyx_r = NULL;
-  __pyx_L0:;
-  __Pyx_XGIVEREF(__pyx_r);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-/* … */
-  __pyx_t_4 = __Pyx_PyDict_NewPresized(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_image_subpx, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 248, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_sub_samp, __pyx_mstate_global->__pyx_kp_u_cython_int) < (0)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_1average_image, 0, __pyx_mstate_global->__pyx_n_u_average_image, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_5);
-  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000
-  PyUnstable_Object_EnableDeferredRefcount(__pyx_t_5);
-  #endif
-  __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_5, __pyx_t_4);
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_average_image, __pyx_t_5) < (0)) __PYX_ERR(0, 248, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-
 249: @cython.boundscheck(False)
-
 250: @cython.wraparound(False)
-
 251: @cython.cdivision(True)
-
 252: def average_image(image_subpx: cython.double[:,:],
-
 253:                   sub_samp: cython.int,
-
 254:                   ) -> cython.double[:,:]:
-
 255: 
-
+256:     if sub_samp <= 1:
-
  __pyx_t_1 = (__pyx_v_sub_samp <= 1);
-  if (__pyx_t_1) {
-/* … */
-  }
-
+257:         return np.asarray(image_subpx[:,:])
-
    __pyx_t_3 = NULL;
-    __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 257, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_4);
-    __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_asarray); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 257, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_5);
-    __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-    __pyx_t_4 = __pyx_memoryview_fromslice(__pyx_v_image_subpx, 2, (PyObject *(*)(char *)) __pyx_memview_get_double, (int (*)(char *, PyObject *)) __pyx_memview_set_double, 0);; if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 257, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_4);
-    __pyx_t_6 = 1;
-    #if CYTHON_UNPACK_METHODS
-    if (unlikely(PyMethod_Check(__pyx_t_5))) {
-      __pyx_t_3 = PyMethod_GET_SELF(__pyx_t_5);
-      assert(__pyx_t_3);
-      PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_5);
-      __Pyx_INCREF(__pyx_t_3);
-      __Pyx_INCREF(__pyx__function);
-      __Pyx_DECREF_SET(__pyx_t_5, __pyx__function);
-      __pyx_t_6 = 0;
-    }
-    #endif
-    {
-      PyObject *__pyx_callargs[2] = {__pyx_t_3, __pyx_t_4};
-      __pyx_t_2 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_5, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
-      __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
-      __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-      __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-      if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 257, __pyx_L1_error)
-      __Pyx_GOTREF(__pyx_t_2);
-    }
-    __pyx_t_7 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_t_2, PyBUF_WRITABLE); if (unlikely(!__pyx_t_7.memview)) __PYX_ERR(0, 257, __pyx_L1_error)
-    __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
-    __pyx_r = __pyx_t_7;
-    __pyx_t_7.memview = NULL;
-    __pyx_t_7.data = NULL;
-    goto __pyx_L0;
-
 258: 
-
+259:     px_num_y: cython.size_t = int(ceil(image_subpx.shape[0]/sub_samp))
-
  __pyx_v_px_num_y = ((size_t)ceil(((__pyx_v_image_subpx.shape[0]) / ((Py_ssize_t)__pyx_v_sub_samp))));
-
+260:     px_num_x: cython.size_t = int(ceil(image_subpx.shape[1]/sub_samp))
-
  __pyx_v_px_num_x = ((size_t)ceil(((__pyx_v_image_subpx.shape[1]) / ((Py_ssize_t)__pyx_v_sub_samp))));
-
 261: 
-
+262:     image_buff_avg_np = np.full((px_num_y,px_num_x),0.0,dtype=np.float64)
-
  __pyx_t_5 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_3);
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-  __pyx_t_4 = __Pyx_PyLong_FromSize_t(__pyx_v_px_num_y); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  __pyx_t_8 = __Pyx_PyLong_FromSize_t(__pyx_v_px_num_x); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_GIVEREF(__pyx_t_4);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_4) != (0)) __PYX_ERR(0, 262, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_8);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_8) != (0)) __PYX_ERR(0, 262, __pyx_L1_error);
-  __pyx_t_4 = 0;
-  __pyx_t_8 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 262, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-  __pyx_t_6 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_3))) {
-    __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3);
-    assert(__pyx_t_5);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_3);
-    __Pyx_INCREF(__pyx_t_5);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_3, __pyx__function);
-    __pyx_t_6 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_5, __pyx_t_9, __pyx_mstate_global->__pyx_float_0_0};
-    __pyx_t_8 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 262, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_8);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_8, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 262, __pyx_L1_error)
-    __pyx_t_2 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_3, __pyx_callargs+__pyx_t_6, (3-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_8);
-    __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-    __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-    __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
-    if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 262, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_2);
-  }
-  __pyx_v_image_buff_avg_np = __pyx_t_2;
-  __pyx_t_2 = 0;
-
+263:     image_buff_avg: cython.double[:,:] = image_buff_avg_np
-
  __pyx_t_7 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_image_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_7.memview)) __PYX_ERR(0, 263, __pyx_L1_error)
-  __pyx_v_image_buff_avg = __pyx_t_7;
-  __pyx_t_7.memview = NULL;
-  __pyx_t_7.data = NULL;
-
 264: 
-
+265:     num_subpx_y: cython.size_t = image_subpx.shape[0]
-
  __pyx_v_num_subpx_y = (__pyx_v_image_subpx.shape[0]);
-
+266:     num_subpx_x: cython.size_t = image_subpx.shape[1]
-
  __pyx_v_num_subpx_x = (__pyx_v_image_subpx.shape[1]);
-
+267:     subpx_per_px: cython.double = float(sub_samp*sub_samp)
-
  __pyx_v_subpx_per_px = ((double)(__pyx_v_sub_samp * __pyx_v_sub_samp));
-
+268:     ss_size: cython.size_t = sub_samp
-
  __pyx_v_ss_size = __pyx_v_sub_samp;
-
 269: 
-
+270:     num_px_y: cython.size_t = int(num_subpx_y/sub_samp)
-
  __pyx_v_num_px_y = (__pyx_v_num_subpx_y / ((size_t)__pyx_v_sub_samp));
-
+271:     num_px_x: cython.size_t = int(num_subpx_x/sub_samp)
-
  __pyx_v_num_px_x = (__pyx_v_num_subpx_x / ((size_t)__pyx_v_sub_samp));
-
 272: 
-
+273:     px_sum: cython.double = 0.0
-
  __pyx_v_px_sum = 0.0;
-
 274: 
-
+275:     ix: cython.size_t = 0
-
  __pyx_v_ix = 0;
-
+276:     iy: cython.size_t = 0
-
  __pyx_v_iy = 0;
-
+277:     sx: cython.size_t = 0
-
  __pyx_v_sx = 0;
-
+278:     sy: cython.size_t = 0
-
  __pyx_v_sy = 0;
-
 279: 
-
+280:     for iy in range(num_px_y):
-
  __pyx_t_6 = __pyx_v_num_px_y;
-  __pyx_t_10 = __pyx_t_6;
-  for (__pyx_t_11 = 0; __pyx_t_11 < __pyx_t_10; __pyx_t_11+=1) {
-    __pyx_v_iy = __pyx_t_11;
-
+281:         for ix in range(num_px_x):
-
    __pyx_t_12 = __pyx_v_num_px_x;
-    __pyx_t_13 = __pyx_t_12;
-    for (__pyx_t_14 = 0; __pyx_t_14 < __pyx_t_13; __pyx_t_14+=1) {
-      __pyx_v_ix = __pyx_t_14;
-
+282:             px_sum = 0.0
-
      __pyx_v_px_sum = 0.0;
-
+283:             for sy in range(ss_size):
-
      __pyx_t_15 = __pyx_v_ss_size;
-      __pyx_t_16 = __pyx_t_15;
-      for (__pyx_t_17 = 0; __pyx_t_17 < __pyx_t_16; __pyx_t_17+=1) {
-        __pyx_v_sy = __pyx_t_17;
-
+284:                 for sx in range(ss_size):
-
        __pyx_t_18 = __pyx_v_ss_size;
-        __pyx_t_19 = __pyx_t_18;
-        for (__pyx_t_20 = 0; __pyx_t_20 < __pyx_t_19; __pyx_t_20+=1) {
-          __pyx_v_sx = __pyx_t_20;
-
+285:                     px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx]
-
          __pyx_t_21 = ((__pyx_v_ss_size * __pyx_v_iy) + __pyx_v_sy);
-          __pyx_t_22 = ((__pyx_v_ss_size * __pyx_v_ix) + __pyx_v_sx);
-          __pyx_v_px_sum = (__pyx_v_px_sum + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_subpx.data + __pyx_t_21 * __pyx_v_image_subpx.strides[0]) ) + __pyx_t_22 * __pyx_v_image_subpx.strides[1]) ))));
-        }
-      }
-
 286: 
-
+287:             image_buff_avg[iy,ix] = px_sum / subpx_per_px
-
      __pyx_t_15 = __pyx_v_iy;
-      __pyx_t_16 = __pyx_v_ix;
-      *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_avg.data + __pyx_t_15 * __pyx_v_image_buff_avg.strides[0]) ) + __pyx_t_16 * __pyx_v_image_buff_avg.strides[1]) )) = (__pyx_v_px_sum / __pyx_v_subpx_per_px);
-    }
-  }
-
 288: 
-
+289:     return image_buff_avg
-
  __PYX_INC_MEMVIEW(&__pyx_v_image_buff_avg, 1);
-  __pyx_r = __pyx_v_image_buff_avg;
-  goto __pyx_L0;
-
 290: 
-
 291: 
-
+292: @cython.nogil
-
static int __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__Pyx_memviewslice __pyx_v_image_buff_subpx_in, int __pyx_v_sub_samp, __Pyx_memviewslice __pyx_v_image_buff_avg_out) {
-  size_t __pyx_v_num_subpx_y;
-  size_t __pyx_v_num_subpx_x;
-  double __pyx_v_subpx_per_px;
-  size_t __pyx_v_ss_size;
-  size_t __pyx_v_num_px_y;
-  size_t __pyx_v_num_px_x;
-  double __pyx_v_px_sum;
-  size_t __pyx_v_ix;
-  size_t __pyx_v_iy;
-  size_t __pyx_v_sx;
-  size_t __pyx_v_sy;
-  int __pyx_r;
-/* … */
-  /* function exit code */
-  __pyx_L0:;
-  return __pyx_r;
-}
-
 293: @cython.cfunc
-
 294: @cython.boundscheck(False)
-
 295: @cython.wraparound(False)
-
 296: @cython.cdivision(True)
-
 297: @cython.exceptval(check=False)
-
 298: def _average_image(image_buff_subpx_in: cython.double[:,:],
-
 299:                    sub_samp: cython.int,
-
 300:                    image_buff_avg_out: cython.double[:,:]
-
 301:                    ) -> cython.int:
-
 302: 
-
+303:     num_subpx_y: cython.size_t = image_buff_subpx_in.shape[0]
-
  __pyx_v_num_subpx_y = (__pyx_v_image_buff_subpx_in.shape[0]);
-
+304:     num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1]
-
  __pyx_v_num_subpx_x = (__pyx_v_image_buff_subpx_in.shape[1]);
-
+305:     subpx_per_px: cython.double = float(sub_samp*sub_samp)
-
  __pyx_v_subpx_per_px = ((double)(__pyx_v_sub_samp * __pyx_v_sub_samp));
-
+306:     ss_size: cython.size_t = sub_samp
-
  __pyx_v_ss_size = __pyx_v_sub_samp;
-
 307: 
-
+308:     num_px_y: cython.size_t = int(num_subpx_y/sub_samp)
-
  __pyx_v_num_px_y = (__pyx_v_num_subpx_y / ((size_t)__pyx_v_sub_samp));
-
+309:     num_px_x: cython.size_t = int(num_subpx_x/sub_samp)
-
  __pyx_v_num_px_x = (__pyx_v_num_subpx_x / ((size_t)__pyx_v_sub_samp));
-
 310: 
-
+311:     px_sum: cython.double = 0.0
-
  __pyx_v_px_sum = 0.0;
-
 312: 
-
+313:     ix: cython.size_t = 0
-
  __pyx_v_ix = 0;
-
+314:     iy: cython.size_t = 0
-
  __pyx_v_iy = 0;
-
+315:     sx: cython.size_t = 0
-
  __pyx_v_sx = 0;
-
+316:     sy: cython.size_t = 0
-
  __pyx_v_sy = 0;
-
 317: 
-
+318:     for iy in range(num_px_y):
-
  __pyx_t_1 = __pyx_v_num_px_y;
-  __pyx_t_2 = __pyx_t_1;
-  for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
-    __pyx_v_iy = __pyx_t_3;
-
+319:         for ix in range(num_px_x):
-
    __pyx_t_4 = __pyx_v_num_px_x;
-    __pyx_t_5 = __pyx_t_4;
-    for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) {
-      __pyx_v_ix = __pyx_t_6;
-
+320:             px_sum = 0.0
-
      __pyx_v_px_sum = 0.0;
-
+321:             for sy in range(ss_size):
-
      __pyx_t_7 = __pyx_v_ss_size;
-      __pyx_t_8 = __pyx_t_7;
-      for (__pyx_t_9 = 0; __pyx_t_9 < __pyx_t_8; __pyx_t_9+=1) {
-        __pyx_v_sy = __pyx_t_9;
-
+322:                 for sx in range(ss_size):
-
        __pyx_t_10 = __pyx_v_ss_size;
-        __pyx_t_11 = __pyx_t_10;
-        for (__pyx_t_12 = 0; __pyx_t_12 < __pyx_t_11; __pyx_t_12+=1) {
-          __pyx_v_sx = __pyx_t_12;
-
+323:                     px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx]
-
          __pyx_t_13 = ((__pyx_v_ss_size * __pyx_v_iy) + __pyx_v_sy);
-          __pyx_t_14 = ((__pyx_v_ss_size * __pyx_v_ix) + __pyx_v_sx);
-          __pyx_v_px_sum = (__pyx_v_px_sum + (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_subpx_in.data + __pyx_t_13 * __pyx_v_image_buff_subpx_in.strides[0]) ) + __pyx_t_14 * __pyx_v_image_buff_subpx_in.strides[1]) ))));
-        }
-      }
-
 324: 
-
+325:             image_buff_avg_out[iy,ix] = px_sum / subpx_per_px
-
      __pyx_t_7 = __pyx_v_iy;
-      __pyx_t_8 = __pyx_v_ix;
-      *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_avg_out.data + __pyx_t_7 * __pyx_v_image_buff_avg_out.strides[0]) ) + __pyx_t_8 * __pyx_v_image_buff_avg_out.strides[1]) )) = (__pyx_v_px_sum / __pyx_v_subpx_per_px);
-    }
-  }
-
 326: 
-
+327:     return 0
-
  __pyx_r = 0;
-  goto __pyx_L0;
-
 328: 
-
 329: 
-
 330: #///////////////////////////////////////////////////////////////////////////////
-
+331: @cython.ccall # python+C or cython.cfunc for C only
-
static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_static_frame(__Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data, CYTHON_UNUSED int __pyx_skip_dispatch) {
-  __Pyx_memviewslice __pyx_v_world_to_cam_mat = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_pixels_num = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_image_dims = { 0, 0, { 0 }, { 0 }, { 0 } };
-  double __pyx_v_image_dist;
-  int __pyx_v_sub_samp;
-  size_t __pyx_v_nodes_per_elem;
-  size_t __pyx_v_fields_num;
-  int __pyx_v_sub_pix_x;
-  int __pyx_v_sub_pix_y;
-  PyObject *__pyx_v_image_buff_avg_np = NULL;
-  __Pyx_memviewslice __pyx_v_image_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_depth_buff_avg_np = NULL;
-  __Pyx_memviewslice __pyx_v_depth_buff_avg = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_depth_buffer_np = NULL;
-  __Pyx_memviewslice __pyx_v_depth_buff_subpx = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_image_buffer_np = NULL;
-  __Pyx_memviewslice __pyx_v_image_buff_subpx = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_nodes_raster_np = NULL;
-  __Pyx_memviewslice __pyx_v_nodes_raster_buff = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_field_raster_np = NULL;
-  __Pyx_memviewslice __pyx_v_field_raster_buff = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_weights_np = NULL;
-  __Pyx_memviewslice __pyx_v_weights_buff = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_px_coord_np = NULL;
-  __Pyx_memviewslice __pyx_v_px_coord_buff = { 0, 0, { 0 }, { 0 }, { 0 } };
-  size_t __pyx_v_elems_in_image;
-  PyObject *__pyx_r = NULL;
-/* … */
-  /* function exit code */
-  __pyx_L1_error:;
-  __Pyx_XDECREF(__pyx_t_1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_2, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_3, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_4, 1);
-  __Pyx_XDECREF(__pyx_t_8);
-  __Pyx_XDECREF(__pyx_t_9);
-  __Pyx_XDECREF(__pyx_t_10);
-  __Pyx_XDECREF(__pyx_t_11);
-  __Pyx_XDECREF(__pyx_t_12);
-  __Pyx_XDECREF(__pyx_t_13);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_t_15, 1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __pyx_r = 0;
-  __pyx_L0:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_world_to_cam_mat, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_pixels_num, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_dims, 1);
-  __Pyx_XDECREF(__pyx_v_image_buff_avg_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_avg, 1);
-  __Pyx_XDECREF(__pyx_v_depth_buff_avg_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_depth_buff_avg, 1);
-  __Pyx_XDECREF(__pyx_v_depth_buffer_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_depth_buff_subpx, 1);
-  __Pyx_XDECREF(__pyx_v_image_buffer_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_image_buff_subpx, 1);
-  __Pyx_XDECREF(__pyx_v_nodes_raster_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_nodes_raster_buff, 1);
-  __Pyx_XDECREF(__pyx_v_field_raster_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_raster_buff, 1);
-  __Pyx_XDECREF(__pyx_v_weights_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_weights_buff, 1);
-  __Pyx_XDECREF(__pyx_v_px_coord_np);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_px_coord_buff, 1);
-  __Pyx_XGIVEREF(__pyx_r);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-
-/* Python wrapper */
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame = {"raster_static_frame", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0};
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-) {
-  __Pyx_memviewslice __pyx_v_coords = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_connect = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_fields_to_render = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_cam_data = 0;
-  #if !CYTHON_METH_FASTCALL
-  CYTHON_UNUSED Py_ssize_t __pyx_nargs;
-  #endif
-  CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
-  PyObject *__pyx_r = 0;
-  __Pyx_RefNannyDeclarations
-  __Pyx_RefNannySetupContext("raster_static_frame (wrapper)", 0);
-  #if !CYTHON_METH_FASTCALL
-  #if CYTHON_ASSUME_SAFE_SIZE
-  __pyx_nargs = PyTuple_GET_SIZE(__pyx_args);
-  #else
-  __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL;
-  #endif
-  #endif
-  __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs);
-  {
-    PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_coords,&__pyx_mstate_global->__pyx_n_u_connect,&__pyx_mstate_global->__pyx_n_u_fields_to_render,&__pyx_mstate_global->__pyx_n_u_cam_data,0};
-  PyObject* values[4] = {0,0,0,0};
-    const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
-    if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 331, __pyx_L3_error)
-    if (__pyx_kwds_len > 0) {
-      switch (__pyx_nargs) {
-        case  4:
-        values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 331, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  3:
-        values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 331, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  2:
-        values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 331, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  1:
-        values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 331, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  0: break;
-        default: goto __pyx_L5_argtuple_error;
-      }
-      const Py_ssize_t kwd_pos_args = __pyx_nargs;
-      if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "raster_static_frame", 0) < (0)) __PYX_ERR(0, 331, __pyx_L3_error)
-      for (Py_ssize_t i = __pyx_nargs; i < 4; i++) {
-        if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("raster_static_frame", 1, 4, 4, i); __PYX_ERR(0, 331, __pyx_L3_error) }
-      }
-    } else if (unlikely(__pyx_nargs != 4)) {
-      goto __pyx_L5_argtuple_error;
-    } else {
-      values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 331, __pyx_L3_error)
-      values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 331, __pyx_L3_error)
-      values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 331, __pyx_L3_error)
-      values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 331, __pyx_L3_error)
-    }
-    __pyx_v_coords = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_coords.memview)) __PYX_ERR(0, 335, __pyx_L3_error)
-    __pyx_v_connect = __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(values[1], PyBUF_WRITABLE); if (unlikely(!__pyx_v_connect.memview)) __PYX_ERR(0, 336, __pyx_L3_error)
-    __pyx_v_fields_to_render = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[2], PyBUF_WRITABLE); if (unlikely(!__pyx_v_fields_to_render.memview)) __PYX_ERR(0, 337, __pyx_L3_error)
-    __pyx_v_cam_data = values[3];
-  }
-  goto __pyx_L6_skip;
-  __pyx_L5_argtuple_error:;
-  __Pyx_RaiseArgtupleInvalid("raster_static_frame", 1, 4, 4, __pyx_nargs); __PYX_ERR(0, 331, __pyx_L3_error)
-  __pyx_L6_skip:;
-  goto __pyx_L4_argument_unpacking_done;
-  __pyx_L3_error:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __Pyx_RefNannyFinishContext();
-  return NULL;
-  __pyx_L4_argument_unpacking_done:;
-  if (unlikely(((PyObject *)__pyx_v_coords.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "coords"); __PYX_ERR(0, 335, __pyx_L1_error)
-  }
-  if (unlikely(((PyObject *)__pyx_v_connect.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "connect"); __PYX_ERR(0, 336, __pyx_L1_error)
-  }
-  if (unlikely(((PyObject *)__pyx_v_fields_to_render.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "fields_to_render"); __PYX_ERR(0, 337, __pyx_L1_error)
-  }
-  __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_2raster_static_frame(__pyx_self, __pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data);
-  int __pyx_lineno = 0;
-  const char *__pyx_filename = NULL;
-  int __pyx_clineno = 0;
-
-  /* function exit code */
-  goto __pyx_L0;
-  __pyx_L1_error:;
-  __pyx_r = NULL;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  goto __pyx_L7_cleaned_up;
-  __pyx_L0:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __pyx_L7_cleaned_up:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-
-static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_2raster_static_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data) {
-  PyObject *__pyx_r = NULL;
-  __Pyx_XDECREF(__pyx_r);
-  if (unlikely(!__pyx_v_coords.memview)) { __Pyx_RaiseUnboundLocalError("coords"); __PYX_ERR(0, 331, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 331, __pyx_L1_error)
-  }
-  if (unlikely(!__pyx_v_connect.memview)) { __Pyx_RaiseUnboundLocalError("connect"); __PYX_ERR(0, 331, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 331, __pyx_L1_error)
-  }
-  if (unlikely(!__pyx_v_fields_to_render.memview)) { __Pyx_RaiseUnboundLocalError("fields_to_render"); __PYX_ERR(0, 331, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 331, __pyx_L1_error)
-  }
-  __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_static_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 331, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_r = __pyx_t_1;
-  __pyx_t_1 = 0;
-  goto __pyx_L0;
-
-  /* function exit code */
-  __pyx_L1_error:;
-  __Pyx_XDECREF(__pyx_t_1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_static_frame", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __pyx_r = NULL;
-  __pyx_L0:;
-  __Pyx_XGIVEREF(__pyx_r);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-/* … */
-  __pyx_t_5 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 331, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_5);
-  if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_coords, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 331, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_connect, __pyx_mstate_global->__pyx_kp_u_cython_size_t) < (0)) __PYX_ERR(0, 331, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_fields_to_render, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 331, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_cam_data, __pyx_mstate_global->__pyx_n_u_CameraData) < (0)) __PYX_ERR(0, 331, __pyx_L1_error)
-  __pyx_t_4 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_3raster_static_frame, 0, __pyx_mstate_global->__pyx_n_u_raster_static_frame, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[1])); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 331, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000
-  PyUnstable_Object_EnableDeferredRefcount(__pyx_t_4);
-  #endif
-  __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_4, __pyx_t_5);
-  __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_raster_static_frame, __pyx_t_4) < (0)) __PYX_ERR(0, 331, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-
 332: @cython.boundscheck(False) # Turn off array bounds checking
-
 333: @cython.wraparound(False)  # Turn off negative indexing
-
 334: @cython.cdivision(True)    # Turn off divide by zero check
-
 335: def raster_static_frame(coords: cython.double[:,:],
-
 336:                         connect: cython.size_t[:,:],
-
 337:                         fields_to_render: cython.double[:,:],
-
 338:                         cam_data: CameraData,
-
 339:                         ) -> tuple[np.ndarray,np.ndarray,int]:
-
 340: 
-
 341: 
-
+342:     world_to_cam_mat: cython.double[:,:] = cam_data.world_to_cam_mat
-
  __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_world_to_cam_mat); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 342, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 342, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
-  __pyx_v_world_to_cam_mat = __pyx_t_2;
-  __pyx_t_2.memview = NULL;
-  __pyx_t_2.data = NULL;
-
+343:     pixels_num: cython.int[:] = cam_data.pixels_num
-
  __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_pixels_num); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 343, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_3 = __Pyx_PyObject_to_MemoryviewSlice_ds_int(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_3.memview)) __PYX_ERR(0, 343, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
-  __pyx_v_pixels_num = __pyx_t_3;
-  __pyx_t_3.memview = NULL;
-  __pyx_t_3.data = NULL;
-
+344:     image_dims: cython.double[:] = cam_data.image_dims
-
  __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_image_dims); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 344, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_t_1, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 344, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
-  __pyx_v_image_dims = __pyx_t_4;
-  __pyx_t_4.memview = NULL;
-  __pyx_t_4.data = NULL;
-
+345:     image_dist: cython.double = cam_data.image_dist
-
  __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_image_dist); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 345, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_5 = __Pyx_PyFloat_AsDouble(__pyx_t_1); if (unlikely((__pyx_t_5 == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 345, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
-  __pyx_v_image_dist = __pyx_t_5;
-
+346:     sub_samp: cython.int = cam_data.sub_samp
-
  __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_cam_data, __pyx_mstate_global->__pyx_n_u_sub_samp); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 346, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_6 = __Pyx_PyLong_As_int(__pyx_t_1); if (unlikely((__pyx_t_6 == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 346, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
-  __pyx_v_sub_samp = __pyx_t_6;
-
 347: 
-
+348:     nodes_per_elem: cython.size_t = connect.shape[1]
-
  __pyx_v_nodes_per_elem = (__pyx_v_connect.shape[1]);
-
+349:     fields_num: cython.size_t = fields_to_render.shape[1]
-
  __pyx_v_fields_num = (__pyx_v_fields_to_render.shape[1]);
-
+350:     sub_pix_x: cython.int = pixels_num[0]*sub_samp
-
  __pyx_t_7 = 0;
-  __pyx_v_sub_pix_x = ((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) ))) * __pyx_v_sub_samp);
-
+351:     sub_pix_y: cython.int = pixels_num[1]*sub_samp
-
  __pyx_t_7 = 1;
-  __pyx_v_sub_pix_y = ((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) ))) * __pyx_v_sub_samp);
-
 352: 
-
 353:     #---------------------------------------------------------------------------
-
 354:     # Final image buffer memory allocation
-
+355:     image_buff_avg_np = np.full((pixels_num[1],pixels_num[0],fields_num),0.0,dtype=np.float64)
-
  __pyx_t_8 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_9, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_9, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-  __pyx_t_7 = 1;
-  __pyx_t_9 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __pyx_t_7 = 0;
-  __pyx_t_11 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_12 = __Pyx_PyLong_FromSize_t(__pyx_v_fields_num); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __pyx_t_13 = PyTuple_New(3); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __Pyx_GIVEREF(__pyx_t_9);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_9) != (0)) __PYX_ERR(0, 355, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_11);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 1, __pyx_t_11) != (0)) __PYX_ERR(0, 355, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_12);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_13, 2, __pyx_t_12) != (0)) __PYX_ERR(0, 355, __pyx_L1_error);
-  __pyx_t_9 = 0;
-  __pyx_t_11 = 0;
-  __pyx_t_12 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 355, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_10))) {
-    __pyx_t_8 = PyMethod_GET_SELF(__pyx_t_10);
-    assert(__pyx_t_8);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_10);
-    __Pyx_INCREF(__pyx_t_8);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_10, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_8, __pyx_t_13, __pyx_mstate_global->__pyx_float_0_0};
-    __pyx_t_12 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 355, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_12);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_11, __pyx_t_12, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 355, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_10, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_12);
-    __Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 355, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_image_buff_avg_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+356:     image_buff_avg: cython.double[:,:,:] = image_buff_avg_np
-
  __pyx_t_15 = __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(__pyx_v_image_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_15.memview)) __PYX_ERR(0, 356, __pyx_L1_error)
-  __pyx_v_image_buff_avg = __pyx_t_15;
-  __pyx_t_15.memview = NULL;
-  __pyx_t_15.data = NULL;
-
 357: 
-
+358:     depth_buff_avg_np = np.full((pixels_num[1],pixels_num[0]),0.0,dtype=np.float64)
-
  __pyx_t_10 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __pyx_t_11 = __Pyx_PyObject_GetAttrStr(__pyx_t_12, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-  __pyx_t_7 = 1;
-  __pyx_t_12 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __pyx_t_7 = 0;
-  __pyx_t_13 = __Pyx_PyLong_From_int((*((int *) ( /* dim=0 */ (__pyx_v_pixels_num.data + __pyx_t_7 * __pyx_v_pixels_num.strides[0]) )))); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __pyx_t_8 = PyTuple_New(2); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __Pyx_GIVEREF(__pyx_t_12);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_12) != (0)) __PYX_ERR(0, 358, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_13);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_13) != (0)) __PYX_ERR(0, 358, __pyx_L1_error);
-  __pyx_t_12 = 0;
-  __pyx_t_13 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 358, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_11))) {
-    __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_11);
-    assert(__pyx_t_10);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_11);
-    __Pyx_INCREF(__pyx_t_10);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_11, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_10, __pyx_t_8, __pyx_mstate_global->__pyx_float_0_0};
-    __pyx_t_13 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 358, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_13);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_12, __pyx_t_13, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 358, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_11, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_13);
-    __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0;
-    __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 358, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_depth_buff_avg_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+359:     depth_buff_avg: cython.double[:,:] = depth_buff_avg_np
-
  __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_depth_buff_avg_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 359, __pyx_L1_error)
-  __pyx_v_depth_buff_avg = __pyx_t_2;
-  __pyx_t_2.memview = NULL;
-  __pyx_t_2.data = NULL;
-
 360: 
-
 361:     #---------------------------------------------------------------------------
-
 362:     # Per-thread scratch memory allocations
-
+363:     depth_buffer_np = np.full((sub_pix_y,sub_pix_x),1.0e6,dtype=np.float64)
-
  __pyx_t_11 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_13, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-  __pyx_t_13 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_y); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __pyx_t_8 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_x); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __Pyx_GIVEREF(__pyx_t_13);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_13) != (0)) __PYX_ERR(0, 363, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_8);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_t_8) != (0)) __PYX_ERR(0, 363, __pyx_L1_error);
-  __pyx_t_13 = 0;
-  __pyx_t_8 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 363, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_12))) {
-    __pyx_t_11 = PyMethod_GET_SELF(__pyx_t_12);
-    assert(__pyx_t_11);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_12);
-    __Pyx_INCREF(__pyx_t_11);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_12, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_11, __pyx_t_10, __pyx_mstate_global->__pyx_float_1_0e6};
-    __pyx_t_8 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 363, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_8);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_13, __pyx_t_8, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 363, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_12, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_8);
-    __Pyx_XDECREF(__pyx_t_11); __pyx_t_11 = 0;
-    __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 363, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_depth_buffer_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+364:     depth_buff_subpx: cython.double[:,:] = depth_buffer_np
-
  __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_depth_buffer_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 364, __pyx_L1_error)
-  __pyx_v_depth_buff_subpx = __pyx_t_2;
-  __pyx_t_2.memview = NULL;
-  __pyx_t_2.data = NULL;
-
 365: 
-
+366:     image_buffer_np = np.full((sub_pix_y,sub_pix_x,fields_num),0.0,dtype=np.float64)
-
  __pyx_t_12 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_8, __pyx_mstate_global->__pyx_n_u_full); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
-  __pyx_t_8 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_y); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_8);
-  __pyx_t_10 = __Pyx_PyLong_From_int(__pyx_v_sub_pix_x); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_fields_num); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_9 = PyTuple_New(3); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_GIVEREF(__pyx_t_8);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_8) != (0)) __PYX_ERR(0, 366, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_10);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_10) != (0)) __PYX_ERR(0, 366, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_11);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_11) != (0)) __PYX_ERR(0, 366, __pyx_L1_error);
-  __pyx_t_8 = 0;
-  __pyx_t_10 = 0;
-  __pyx_t_11 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 366, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_13))) {
-    __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_13);
-    assert(__pyx_t_12);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_13);
-    __Pyx_INCREF(__pyx_t_12);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_13, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_12, __pyx_t_9, __pyx_mstate_global->__pyx_float_0_0};
-    __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 366, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_11);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_10, __pyx_t_11, __pyx_callargs+3, 0) < (0)) __PYX_ERR(0, 366, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_13, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11);
-    __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-    __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 366, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_image_buffer_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+367:     image_buff_subpx: cython.double[:,:,:] = image_buffer_np
-
  __pyx_t_15 = __Pyx_PyObject_to_MemoryviewSlice_dsdsds_double(__pyx_v_image_buffer_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_15.memview)) __PYX_ERR(0, 367, __pyx_L1_error)
-  __pyx_v_image_buff_subpx = __pyx_t_15;
-  __pyx_t_15.memview = NULL;
-  __pyx_t_15.data = NULL;
-
 368: 
-
 369:     # shape=(nodes_per_elem, coord[X,Y,Z,W])
-
+370:     nodes_raster_np = np.empty((nodes_per_elem,4),dtype=np.float64)
-
  __pyx_t_13 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_GIVEREF(__pyx_t_11);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 370, __pyx_L1_error);
-  __Pyx_INCREF(__pyx_mstate_global->__pyx_int_4);
-  __Pyx_GIVEREF(__pyx_mstate_global->__pyx_int_4);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_mstate_global->__pyx_int_4) != (0)) __PYX_ERR(0, 370, __pyx_L1_error);
-  __pyx_t_11 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 370, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_10))) {
-    __pyx_t_13 = PyMethod_GET_SELF(__pyx_t_10);
-    assert(__pyx_t_13);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_10);
-    __Pyx_INCREF(__pyx_t_13);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_10, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_13, __pyx_t_9};
-    __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 370, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_11);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_12, __pyx_t_11, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 370, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_10, __pyx_callargs+__pyx_t_14, (2-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11);
-    __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-    __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 370, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_nodes_raster_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+371:     nodes_raster_buff: cython.double[:,:] = nodes_raster_np
-
  __pyx_t_2 = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(__pyx_v_nodes_raster_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_2.memview)) __PYX_ERR(0, 371, __pyx_L1_error)
-  __pyx_v_nodes_raster_buff = __pyx_t_2;
-  __pyx_t_2.memview = NULL;
-  __pyx_t_2.data = NULL;
-
 372: 
-
+373:     field_raster_np = np.empty((nodes_per_elem,),dtype=np.float64)
-
  __pyx_t_10 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_GIVEREF(__pyx_t_11);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 373, __pyx_L1_error);
-  __pyx_t_11 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 373, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_12))) {
-    __pyx_t_10 = PyMethod_GET_SELF(__pyx_t_12);
-    assert(__pyx_t_10);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_12);
-    __Pyx_INCREF(__pyx_t_10);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_12, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_10, __pyx_t_9};
-    __pyx_t_11 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 373, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_11);
-    if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_13, __pyx_t_11, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 373, __pyx_L1_error)
-    __pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder((PyObject*)__pyx_t_12, __pyx_callargs+__pyx_t_14, (2-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_11);
-    __Pyx_XDECREF(__pyx_t_10); __pyx_t_10 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 373, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_field_raster_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+374:     field_raster_buff: cython.double[:] = field_raster_np
-
  __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_field_raster_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 374, __pyx_L1_error)
-  __pyx_v_field_raster_buff = __pyx_t_4;
-  __pyx_t_4.memview = NULL;
-  __pyx_t_4.data = NULL;
-
 375: 
-
+376:     weights_np = np.zeros((nodes_per_elem,),np.float64)
-
  __pyx_t_12 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_13 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_zeros); if (unlikely(!__pyx_t_13)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_13);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_11 = __Pyx_PyLong_FromSize_t(__pyx_v_nodes_per_elem); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_GIVEREF(__pyx_t_11);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_11) != (0)) __PYX_ERR(0, 376, __pyx_L1_error);
-  __pyx_t_11 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_11);
-  __pyx_t_10 = __Pyx_PyObject_GetAttrStr(__pyx_t_11, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 376, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_13))) {
-    __pyx_t_12 = PyMethod_GET_SELF(__pyx_t_13);
-    assert(__pyx_t_12);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_13);
-    __Pyx_INCREF(__pyx_t_12);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_13, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3] = {__pyx_t_12, __pyx_t_9, __pyx_t_10};
-    __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_13, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
-    __Pyx_XDECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-    __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 376, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_weights_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+377:     weights_buff: cython.double[:] = weights_np
-
  __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_weights_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 377, __pyx_L1_error)
-  __pyx_v_weights_buff = __pyx_t_4;
-  __pyx_t_4.memview = NULL;
-  __pyx_t_4.data = NULL;
-
 378: 
-
 379:     # Only used for edge function in raster coords - need x,y
-
+380:     px_coord_np = np.zeros((2,),np.float64)
-
  __pyx_t_13 = NULL;
-  __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 380, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __pyx_t_9 = __Pyx_PyObject_GetAttrStr(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_zeros); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 380, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-  __Pyx_GetModuleGlobalName(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 380, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_10);
-  __pyx_t_12 = __Pyx_PyObject_GetAttrStr(__pyx_t_10, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_12)) __PYX_ERR(0, 380, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_12);
-  __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
-  __pyx_t_14 = 1;
-  #if CYTHON_UNPACK_METHODS
-  if (unlikely(PyMethod_Check(__pyx_t_9))) {
-    __pyx_t_13 = PyMethod_GET_SELF(__pyx_t_9);
-    assert(__pyx_t_13);
-    PyObject* __pyx__function = PyMethod_GET_FUNCTION(__pyx_t_9);
-    __Pyx_INCREF(__pyx_t_13);
-    __Pyx_INCREF(__pyx__function);
-    __Pyx_DECREF_SET(__pyx_t_9, __pyx__function);
-    __pyx_t_14 = 0;
-  }
-  #endif
-  {
-    PyObject *__pyx_callargs[3] = {__pyx_t_13, __pyx_mstate_global->__pyx_tuple[2], __pyx_t_12};
-    __pyx_t_1 = __Pyx_PyObject_FastCall((PyObject*)__pyx_t_9, __pyx_callargs+__pyx_t_14, (3-__pyx_t_14) | (__pyx_t_14*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
-    __Pyx_XDECREF(__pyx_t_13); __pyx_t_13 = 0;
-    __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
-    __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
-    if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 380, __pyx_L1_error)
-    __Pyx_GOTREF(__pyx_t_1);
-  }
-  __pyx_v_px_coord_np = __pyx_t_1;
-  __pyx_t_1 = 0;
-
+381:     px_coord_buff: cython.double[:] = px_coord_np
-
  __pyx_t_4 = __Pyx_PyObject_to_MemoryviewSlice_ds_double(__pyx_v_px_coord_np, PyBUF_WRITABLE); if (unlikely(!__pyx_t_4.memview)) __PYX_ERR(0, 381, __pyx_L1_error)
-  __pyx_v_px_coord_buff = __pyx_t_4;
-  __pyx_t_4.memview = NULL;
-  __pyx_t_4.data = NULL;
-
 382: 
-
 383: 
-
 384:     #---------------------------------------------------------------------------
-
+385:     elems_in_image: cython.size_t = _raster_frame(coords[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 385, __pyx_L1_error)
-  }
-/* … */
-  __pyx_v_elems_in_image = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__raster_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_world_to_cam_mat, __pyx_v_pixels_num, __pyx_v_image_dims, __pyx_v_image_dist, __pyx_v_sub_samp, __pyx_v_image_buff_avg, __pyx_v_depth_buff_avg, __pyx_v_image_buff_subpx, __pyx_v_depth_buff_subpx, __pyx_v_nodes_raster_buff, __pyx_v_field_raster_buff, __pyx_v_px_coord_buff, __pyx_v_weights_buff);
-
+386:                                                   connect[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 386, __pyx_L1_error)
-  }
-
+387:                                                   fields_to_render[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 387, __pyx_L1_error)
-  }
-
+388:                                                   world_to_cam_mat[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_world_to_cam_mat.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 388, __pyx_L1_error)
-  }
-
+389:                                                   pixels_num[:],
-
  if (unlikely(((PyObject *) __pyx_v_pixels_num.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 389, __pyx_L1_error)
-  }
-
+390:                                                   image_dims[:],
-
  if (unlikely(((PyObject *) __pyx_v_image_dims.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 390, __pyx_L1_error)
-  }
-
 391:                                                   image_dist,
-
 392:                                                   sub_samp,
-
+393:                                                   image_buff_avg[:,:,:],
-
  if (unlikely(((PyObject *) __pyx_v_image_buff_avg.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 393, __pyx_L1_error)
-  }
-
+394:                                                   depth_buff_avg[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_depth_buff_avg.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 394, __pyx_L1_error)
-  }
-
+395:                                                   image_buff_subpx[:,:,:],
-
  if (unlikely(((PyObject *) __pyx_v_image_buff_subpx.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 395, __pyx_L1_error)
-  }
-
+396:                                                   depth_buff_subpx[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_depth_buff_subpx.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 396, __pyx_L1_error)
-  }
-
+397:                                                   nodes_raster_buff[:,:],
-
  if (unlikely(((PyObject *) __pyx_v_nodes_raster_buff.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 397, __pyx_L1_error)
-  }
-
+398:                                                   field_raster_buff[:],
-
  if (unlikely(((PyObject *) __pyx_v_field_raster_buff.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 398, __pyx_L1_error)
-  }
-
+399:                                                   px_coord_buff[:],
-
  if (unlikely(((PyObject *) __pyx_v_px_coord_buff.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 399, __pyx_L1_error)
-  }
-
+400:                                                   weights_buff[:])
-
  if (unlikely(((PyObject *) __pyx_v_weights_buff.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 400, __pyx_L1_error)
-  }
-
 401: 
-
+402:     return (image_buff_avg_np,depth_buff_avg_np,elems_in_image)
-
  __Pyx_XDECREF(__pyx_r);
-  __pyx_t_1 = __Pyx_PyLong_FromSize_t(__pyx_v_elems_in_image); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 402, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_t_9 = PyTuple_New(3); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 402, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_9);
-  __Pyx_INCREF(__pyx_v_image_buff_avg_np);
-  __Pyx_GIVEREF(__pyx_v_image_buff_avg_np);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_v_image_buff_avg_np) != (0)) __PYX_ERR(0, 402, __pyx_L1_error);
-  __Pyx_INCREF(__pyx_v_depth_buff_avg_np);
-  __Pyx_GIVEREF(__pyx_v_depth_buff_avg_np);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_v_depth_buff_avg_np) != (0)) __PYX_ERR(0, 402, __pyx_L1_error);
-  __Pyx_GIVEREF(__pyx_t_1);
-  if (__Pyx_PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_1) != (0)) __PYX_ERR(0, 402, __pyx_L1_error);
-  __pyx_t_1 = 0;
-  __pyx_r = ((PyObject*)__pyx_t_9);
-  __pyx_t_9 = 0;
-  goto __pyx_L0;
-
 403: 
-
 404: #///////////////////////////////////////////////////////////////////////////////
-
+405: @cython.ccall # python+C or cython.cfunc for C only
-
static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static PyObject *__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_deform_frame(CYTHON_UNUSED __Pyx_memviewslice __pyx_v_coords, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_connect, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_fields_to_render, CYTHON_UNUSED PyObject *__pyx_v_cam_data, CYTHON_UNUSED __Pyx_memviewslice __pyx_v_field_disp, CYTHON_UNUSED int __pyx_skip_dispatch) {
-  PyObject *__pyx_r = NULL;
-/* … */
-  /* function exit code */
-  __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
-  __Pyx_XGIVEREF(__pyx_r);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-/* … */
-/* Python wrapper */
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-); /*proto*/
-static PyMethodDef __pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame = {"raster_deform_frame", (PyCFunction)(void(*)(void))(__Pyx_PyCFunction_FastCallWithKeywords)__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame, __Pyx_METH_FASTCALL|METH_KEYWORDS, 0};
-static PyObject *__pyx_pw_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame(PyObject *__pyx_self, 
-#if CYTHON_METH_FASTCALL
-PyObject *const *__pyx_args, Py_ssize_t __pyx_nargs, PyObject *__pyx_kwds
-#else
-PyObject *__pyx_args, PyObject *__pyx_kwds
-#endif
-) {
-  __Pyx_memviewslice __pyx_v_coords = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_connect = { 0, 0, { 0 }, { 0 }, { 0 } };
-  __Pyx_memviewslice __pyx_v_fields_to_render = { 0, 0, { 0 }, { 0 }, { 0 } };
-  PyObject *__pyx_v_cam_data = 0;
-  __Pyx_memviewslice __pyx_v_field_disp = { 0, 0, { 0 }, { 0 }, { 0 } };
-  #if !CYTHON_METH_FASTCALL
-  CYTHON_UNUSED Py_ssize_t __pyx_nargs;
-  #endif
-  CYTHON_UNUSED PyObject *const *__pyx_kwvalues;
-  PyObject *__pyx_r = 0;
-  __Pyx_RefNannyDeclarations
-  __Pyx_RefNannySetupContext("raster_deform_frame (wrapper)", 0);
-  #if !CYTHON_METH_FASTCALL
-  #if CYTHON_ASSUME_SAFE_SIZE
-  __pyx_nargs = PyTuple_GET_SIZE(__pyx_args);
-  #else
-  __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL;
-  #endif
-  #endif
-  __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs);
-  {
-    PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_coords,&__pyx_mstate_global->__pyx_n_u_connect,&__pyx_mstate_global->__pyx_n_u_fields_to_render,&__pyx_mstate_global->__pyx_n_u_cam_data,&__pyx_mstate_global->__pyx_n_u_field_disp,0};
-  PyObject* values[5] = {0,0,0,0,0};
-    const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
-    if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 405, __pyx_L3_error)
-    if (__pyx_kwds_len > 0) {
-      switch (__pyx_nargs) {
-        case  5:
-        values[4] = __Pyx_ArgRef_FASTCALL(__pyx_args, 4);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(0, 405, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  4:
-        values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 405, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  3:
-        values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 405, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  2:
-        values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 405, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  1:
-        values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-        if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 405, __pyx_L3_error)
-        CYTHON_FALLTHROUGH;
-        case  0: break;
-        default: goto __pyx_L5_argtuple_error;
-      }
-      const Py_ssize_t kwd_pos_args = __pyx_nargs;
-      if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "raster_deform_frame", 0) < (0)) __PYX_ERR(0, 405, __pyx_L3_error)
-      for (Py_ssize_t i = __pyx_nargs; i < 5; i++) {
-        if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("raster_deform_frame", 1, 5, 5, i); __PYX_ERR(0, 405, __pyx_L3_error) }
-      }
-    } else if (unlikely(__pyx_nargs != 5)) {
-      goto __pyx_L5_argtuple_error;
-    } else {
-      values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 405, __pyx_L3_error)
-      values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 405, __pyx_L3_error)
-      values[2] = __Pyx_ArgRef_FASTCALL(__pyx_args, 2);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[2])) __PYX_ERR(0, 405, __pyx_L3_error)
-      values[3] = __Pyx_ArgRef_FASTCALL(__pyx_args, 3);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[3])) __PYX_ERR(0, 405, __pyx_L3_error)
-      values[4] = __Pyx_ArgRef_FASTCALL(__pyx_args, 4);
-      if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[4])) __PYX_ERR(0, 405, __pyx_L3_error)
-    }
-    __pyx_v_coords = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_coords.memview)) __PYX_ERR(0, 409, __pyx_L3_error)
-    __pyx_v_connect = __Pyx_PyObject_to_MemoryviewSlice_dsds_size_t(values[1], PyBUF_WRITABLE); if (unlikely(!__pyx_v_connect.memview)) __PYX_ERR(0, 410, __pyx_L3_error)
-    __pyx_v_fields_to_render = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[2], PyBUF_WRITABLE); if (unlikely(!__pyx_v_fields_to_render.memview)) __PYX_ERR(0, 411, __pyx_L3_error)
-    __pyx_v_cam_data = values[3];
-    __pyx_v_field_disp = __Pyx_PyObject_to_MemoryviewSlice_dsds_double(values[4], PyBUF_WRITABLE); if (unlikely(!__pyx_v_field_disp.memview)) __PYX_ERR(0, 413, __pyx_L3_error)
-  }
-  goto __pyx_L6_skip;
-  __pyx_L5_argtuple_error:;
-  __Pyx_RaiseArgtupleInvalid("raster_deform_frame", 1, 5, 5, __pyx_nargs); __PYX_ERR(0, 405, __pyx_L3_error)
-  __pyx_L6_skip:;
-  goto __pyx_L4_argument_unpacking_done;
-  __pyx_L3_error:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_disp, 1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_deform_frame", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __Pyx_RefNannyFinishContext();
-  return NULL;
-  __pyx_L4_argument_unpacking_done:;
-  if (unlikely(((PyObject *)__pyx_v_coords.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "coords"); __PYX_ERR(0, 409, __pyx_L1_error)
-  }
-  if (unlikely(((PyObject *)__pyx_v_connect.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "connect"); __PYX_ERR(0, 410, __pyx_L1_error)
-  }
-  if (unlikely(((PyObject *)__pyx_v_fields_to_render.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "fields_to_render"); __PYX_ERR(0, 411, __pyx_L1_error)
-  }
-  if (unlikely(((PyObject *)__pyx_v_field_disp.memview) == Py_None)) {
-    PyErr_Format(PyExc_TypeError, "Argument '%.200s' must not be None", "field_disp"); __PYX_ERR(0, 413, __pyx_L1_error)
-  }
-  __pyx_r = __pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_4raster_deform_frame(__pyx_self, __pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, __pyx_v_field_disp);
-  int __pyx_lineno = 0;
-  const char *__pyx_filename = NULL;
-  int __pyx_clineno = 0;
-
-  /* function exit code */
-  goto __pyx_L0;
-  __pyx_L1_error:;
-  __pyx_r = NULL;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  goto __pyx_L7_cleaned_up;
-  __pyx_L0:;
-  for (Py_ssize_t __pyx_temp=0; __pyx_temp < (Py_ssize_t)(sizeof(values)/sizeof(values[0])); ++__pyx_temp) {
-    Py_XDECREF(values[__pyx_temp]);
-  }
-  __pyx_L7_cleaned_up:;
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_coords, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_connect, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_fields_to_render, 1);
-  __PYX_XCLEAR_MEMVIEW(&__pyx_v_field_disp, 1);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-
-static PyObject *__pyx_pf_6pyvale_9sensorsim_6cython_10rastercyth_4raster_deform_frame(CYTHON_UNUSED PyObject *__pyx_self, __Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, PyObject *__pyx_v_cam_data, __Pyx_memviewslice __pyx_v_field_disp) {
-  PyObject *__pyx_r = NULL;
-  __Pyx_XDECREF(__pyx_r);
-  if (unlikely(!__pyx_v_coords.memview)) { __Pyx_RaiseUnboundLocalError("coords"); __PYX_ERR(0, 405, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_coords.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 405, __pyx_L1_error)
-  }
-  if (unlikely(!__pyx_v_connect.memview)) { __Pyx_RaiseUnboundLocalError("connect"); __PYX_ERR(0, 405, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_connect.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 405, __pyx_L1_error)
-  }
-  if (unlikely(!__pyx_v_fields_to_render.memview)) { __Pyx_RaiseUnboundLocalError("fields_to_render"); __PYX_ERR(0, 405, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_fields_to_render.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 405, __pyx_L1_error)
-  }
-  if (unlikely(!__pyx_v_field_disp.memview)) { __Pyx_RaiseUnboundLocalError("field_disp"); __PYX_ERR(0, 405, __pyx_L1_error) }
-  if (unlikely(((PyObject *) __pyx_v_field_disp.memview) == Py_None)) {
-    PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-    __PYX_ERR(0, 405, __pyx_L1_error)
-  }
-  __pyx_t_1 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_raster_deform_frame(__pyx_v_coords, __pyx_v_connect, __pyx_v_fields_to_render, __pyx_v_cam_data, __pyx_v_field_disp, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 405, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_1);
-  __pyx_r = __pyx_t_1;
-  __pyx_t_1 = 0;
-  goto __pyx_L0;
-
-  /* function exit code */
-  __pyx_L1_error:;
-  __Pyx_XDECREF(__pyx_t_1);
-  __Pyx_AddTraceback("pyvale.sensorsim.cython.rastercyth.raster_deform_frame", __pyx_clineno, __pyx_lineno, __pyx_filename);
-  __pyx_r = NULL;
-  __pyx_L0:;
-  __Pyx_XGIVEREF(__pyx_r);
-  __Pyx_RefNannyFinishContext();
-  return __pyx_r;
-}
-/* … */
-  __pyx_t_4 = __Pyx_PyDict_NewPresized(5); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 405, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_4);
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_coords, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_connect, __pyx_mstate_global->__pyx_kp_u_cython_size_t) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_fields_to_render, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_cam_data, __pyx_mstate_global->__pyx_n_u_CameraData) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_field_disp, __pyx_mstate_global->__pyx_kp_u_cython_double) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6pyvale_9sensorsim_6cython_10rastercyth_5raster_deform_frame, 0, __pyx_mstate_global->__pyx_n_u_raster_deform_frame, NULL, __pyx_mstate_global->__pyx_n_u_pyvale_sensorsim_cython_rastercy, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[2])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 405, __pyx_L1_error)
-  __Pyx_GOTREF(__pyx_t_5);
-  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030E0000
-  PyUnstable_Object_EnableDeferredRefcount(__pyx_t_5);
-  #endif
-  __Pyx_CyFunction_SetAnnotationsDict(__pyx_t_5, __pyx_t_4);
-  __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
-  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_raster_deform_frame, __pyx_t_5) < (0)) __PYX_ERR(0, 405, __pyx_L1_error)
-  __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
-
 406: @cython.boundscheck(False) # Turn off array bounds checking
-
 407: @cython.wraparound(False)  # Turn off negative indexing
-
 408: @cython.cdivision(True)    # Turn off divide by zero check
-
 409: def raster_deform_frame(coords: cython.double[:,:],
-
 410:                         connect: cython.size_t[:,:],
-
 411:                         fields_to_render: cython.double[:,:],
-
 412:                         cam_data: CameraData,
-
 413:                         field_disp: cython.double[:,:],
-
 414:                         ) -> tuple[np.ndarray,np.ndarray,int]:
-
 415:     pass
-
 416: 
-
 417: #///////////////////////////////////////////////////////////////////////////////
-
 418: #@cython.nogil
-
+419: @cython.cfunc # python+C or cython.cfunc for C only
-
static size_t __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__raster_frame(__Pyx_memviewslice __pyx_v_coords, __Pyx_memviewslice __pyx_v_connect, __Pyx_memviewslice __pyx_v_fields_to_render, __Pyx_memviewslice __pyx_v_world_to_cam_mat, __Pyx_memviewslice __pyx_v_num_pixels, __Pyx_memviewslice __pyx_v_image_dims, double __pyx_v_image_dist, int __pyx_v_sub_samp, __Pyx_memviewslice __pyx_v_image_buff_avg, __Pyx_memviewslice __pyx_v_depth_buff_avg, __Pyx_memviewslice __pyx_v_image_buff_subpx, __Pyx_memviewslice __pyx_v_depth_buff_subpx, __Pyx_memviewslice __pyx_v_nodes_raster_buff, __Pyx_memviewslice __pyx_v_field_raster_buff, __Pyx_memviewslice __pyx_v_px_coord_buff, __Pyx_memviewslice __pyx_v_weights_buff) {
-  size_t __pyx_v_xx;
-  size_t __pyx_v_yy;
-  size_t __pyx_v_zz;
-  size_t __pyx_v_elem_count;
-  size_t __pyx_v_nodes_per_elem;
-  size_t __pyx_v_fields_num;
-  double __pyx_v_tol;
-  size_t __pyx_v_elems_in_image;
-  double __pyx_v_coord_step;
-  double __pyx_v_coord_offset;
-  size_t __pyx_v_ee;
-  size_t __pyx_v_nn;
-  CYTHON_UNUSED size_t __pyx_v_ii;
-  CYTHON_UNUSED size_t __pyx_v_jj;
-  size_t __pyx_v_ww;
-  size_t __pyx_v_ff;
-  double __pyx_v_elem_area;
-  double __pyx_v_x_min;
-  double __pyx_v_x_max;
-  double __pyx_v_y_min;
-  double __pyx_v_y_max;
-  size_t __pyx_v_xi_min;
-  size_t __pyx_v_xi_max;
-  size_t __pyx_v_yi_min;
-  size_t __pyx_v_yi_max;
-  size_t __pyx_v_num_bound_x;
-  size_t __pyx_v_num_bound_y;
-  double __pyx_v_bound_coord_x;
-  double __pyx_v_bound_coord_y;
-  size_t __pyx_v_bound_ind_x;
-  size_t __pyx_v_bound_ind_y;
-  double __pyx_v_weight_dot_nodes;
-  double __pyx_v_px_coord_z;
-  double __pyx_v_px_field;
-  size_t __pyx_r;
-
 420: @cython.boundscheck(False) # Turn off array bounds checking
-
 421: @cython.wraparound(False)  # Turn off negative indexing
-
 422: @cython.cdivision(True)    # Turn off divide by zero check
-
 423: @cython.exceptval(check=False) # Turn off exceptions
-
 424: def _raster_frame(coords: cython.double[:,:],
-
 425:                  connect: cython.size_t[:,:],
-
 426:                  fields_to_render: cython.double[:,:],
-
 427:                  world_to_cam_mat: cython.double[:,:],
-
 428:                  num_pixels: cython.int[:],
-
 429:                  image_dims: cython.double[:],
-
 430:                  image_dist: cython.double,
-
 431:                  sub_samp: cython.int,
-
 432:                  # From here these are memory buffers that will be written into
-
 433:                  image_buff_avg: cython.double[:,:,:],
-
 434:                  depth_buff_avg: cython.double[:,:],
-
 435:                  image_buff_subpx: cython.double[:,:,:],
-
 436:                  depth_buff_subpx: cython.double[:,:],
-
 437:                  nodes_raster_buff: cython.double[:,:],
-
 438:                  field_raster_buff: cython.double[:],
-
 439:                  px_coord_buff: cython.double[:],
-
 440:                  weights_buff: cython.double[:],
-
 441:                  ) -> cython.size_t:
-
 442:     """Rasters a single frame and all associated fields into the image and depth
-
 443:     buffer provided as inputs to the function. This is a pure cython function
-
 444:     with the GIL released for parallelisation. All fields (textures) are
-
 445:     rendered in a sub-loop so that the depth buffer and inside/outside test is
-
 446:     only performed once for all fields to be rendered.
-
 447: 
-
 448:     Parameters
-
 449:     ----------
-
 450:     coords : cython.double[:,:]
-
 451:         Input. shape=(num_nodes,coords[x,y,z,w])
-
 452:     connect : cython.size_t[:,:]
-
 453:         Input. shape=(num_elems,nodes_per_elem)
-
 454:     fields_to_render : cython.double[:,:]
-
 455:         Input. shape=(num_nodes,num_fields)
-
 456:     world_to_cam_mat : cython.double[:,:]
-
 457:         Input. Homogeneous coordinate transformation matrix from world to camera
-
 458:          coordinates. shape=(4,4).
-
 459:     num_pixels : cython.int[:]
-
 460:         Input. shape=(2 [num_px_x,num_px_y],)
-
 461:     image_dims : cython.double[:]
-
 462:         Input. shape=(2 [fov_size_x,fov_size_y],)
-
 463:     image_dist : cython.double
-
 464:         Input.
-
 465:     sub_samp : cython.int
-
 466:         Number of subsamples per pixel for anti-aliasing.
-
 467:     image_buff_avg : cython.double[:,:,:]
-
 468:         Output buffer. shape=(num_px_y,num_px_x,num_fields)
-
 469:     depth_buff_avg : cython.double[:,:]
-
 470:         Output buffer. shape=(num_px_y,num_px_x)
-
 471:     image_buff_subpx : cython.double[:,:,:]
-
 472:         Processing buffer (output). shape=(num_subpx_y,num_subpx_x,num_fields)
-
 473:     depth_buff_subpx : cython.double[:,:]
-
 474:         Processing buffer (output). shape=(num_subpx_y,num_subpx_x)
-
 475:     nodes_raster_buff : cython.double[:,:]
-
 476:         Processing buffer. shape=(nodes_per_elem, 4 coord[x,y,z,w])
-
 477:     field_raster_buff : cython.double[:]
-
 478:         Processing buffer. shape=(nodes_per_elem,)
-
 479:     px_coord_buff : cython.double[:]
-
 480:         Processing buffer. shape=(2,)
-
 481:     weights_buff : cython.double[:]
-
 482:         Processing buffer. shape=(nodes_per_elem,)
-
 483: 
-
 484:     Returns
-
 485:     -------
-
 486:     cython.size_t
-
 487:         Number of rendered elements after backface culling and cropping.
-
 488:     """
-
 489: 
-
+490:     xx: cython.size_t = 0
-
  __pyx_v_xx = 0;
-
+491:     yy: cython.size_t = 1
-
  __pyx_v_yy = 1;
-
+492:     zz: cython.size_t = 2
-
  __pyx_v_zz = 2;
-
 493: 
-
+494:     elem_count: cython.size_t = connect.shape[0]
-
  __pyx_v_elem_count = (__pyx_v_connect.shape[0]);
-
+495:     nodes_per_elem: cython.size_t = connect.shape[1]
-
  __pyx_v_nodes_per_elem = (__pyx_v_connect.shape[1]);
-
+496:     fields_num: cython.size_t = fields_to_render.shape[1]
-
  __pyx_v_fields_num = (__pyx_v_fields_to_render.shape[1]);
-
 497: 
-
 498:     # tolerance for floating point zero dot product
-
+499:     tol: cython.double = 1e-12
-
  __pyx_v_tol = 1e-12;
-
 500: 
-
 501:     #elem_count: cython.size_t = 1
-
+502:     elems_in_image: cython.size_t = 0
-
  __pyx_v_elems_in_image = 0;
-
 503: 
-
 504:     # Lifted constants
-
+505:     coord_step: cython.double = 1.0/float(sub_samp)
-
  __pyx_v_coord_step = (1.0 / ((double)__pyx_v_sub_samp));
-
+506:     coord_offset: cython.double = 1.0/(2.0*float(sub_samp))
-
  __pyx_v_coord_offset = (1.0 / (2.0 * ((double)__pyx_v_sub_samp)));
-
 507: 
-
+508:     ee: cython.size_t = 0
-
  __pyx_v_ee = 0;
-
+509:     nn: cython.size_t = 0
-
  __pyx_v_nn = 0;
-
+510:     ii: cython.size_t = 0
-
  __pyx_v_ii = 0;
-
+511:     jj: cython.size_t = 0
-
  __pyx_v_jj = 0;
-
+512:     ww: cython.size_t = 0
-
  __pyx_v_ww = 0;
-
+513:     ff: cython.size_t = 0
-
  __pyx_v_ff = 0;
-
 514: 
-
+515:     for ee in range(elem_count):
-
  __pyx_t_1 = __pyx_v_elem_count;
-  __pyx_t_2 = __pyx_t_1;
-  for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
-    __pyx_v_ee = __pyx_t_3;
-
 516: 
-
+517:         for nn in range(nodes_per_elem):
-
    __pyx_t_4 = __pyx_v_nodes_per_elem;
-    __pyx_t_5 = __pyx_t_4;
-    for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) {
-      __pyx_v_nn = __pyx_t_6;
-
 518:             # shape=(nodes_per_elem, coord[X,Y,Z,W])
-
+519:             nodes_raster_buff[nn,:] = world_to_raster_coords(coords[connect[ee,nn],:],
-
      __pyx_t_7 = __pyx_v_ee;
-      __pyx_t_8 = __pyx_v_nn;
-      __pyx_t_9.data = __pyx_v_coords.data;
-      __pyx_t_9.memview = __pyx_v_coords.memview;
-      __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-      {
-    Py_ssize_t __pyx_tmp_idx = (*((size_t *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_connect.data + __pyx_t_7 * __pyx_v_connect.strides[0]) ) + __pyx_t_8 * __pyx_v_connect.strides[1]) )));
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_coords.strides[0];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_9.shape[0] = __pyx_v_coords.shape[1];
-__pyx_t_9.strides[0] = __pyx_v_coords.strides[1];
-    __pyx_t_9.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-        PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-        __PYX_ERR(0, 519, __pyx_L1_error)
-      }
-/* … */
-      __pyx_t_11 = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_world_to_raster_coords(__pyx_t_9, __pyx_v_world_to_cam_mat, __pyx_v_image_dist, __pyx_v_image_dims, __pyx_v_num_pixels, __pyx_t_10); if (unlikely(!__pyx_t_11.memview)) __PYX_ERR(0, 519, __pyx_L1_error)
-      __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-      __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-      __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-      __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-      __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-      __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-      __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-      {
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_nn;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely((__pyx_memoryview_copy_contents(__pyx_t_11, __pyx_t_10, 1, 1, 0) < 0))) __PYX_ERR(0, 519, __pyx_L1_error)
-      __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-      __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-      __PYX_XCLEAR_MEMVIEW(&__pyx_t_11, 1);
-      __pyx_t_11.memview = NULL; __pyx_t_11.data = NULL;
-    }
-
 520:                                                         world_to_cam_mat,
-
 521:                                                         image_dist,
-
 522:                                                         image_dims,
-
 523:                                                         num_pixels,
-
+524:                                                         nodes_raster_buff[nn,:])
-
      __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-      __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-      __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-      {
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_nn;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-        PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-        __PYX_ERR(0, 524, __pyx_L1_error)
-      }
-
 525: 
-
 526: 
-
+527:         elem_area: cython.double = edge_function(nodes_raster_buff[0,:],
-
    __pyx_t_11.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_11.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_11, 1);
-    {
-    Py_ssize_t __pyx_tmp_idx = 0;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_11.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_11.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_11.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_11.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_11.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 527, __pyx_L1_error)
-    }
-/* … */
-    __pyx_v_elem_area = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_11, __pyx_t_10, __pyx_t_9);
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_11, 1);
-    __pyx_t_11.memview = NULL; __pyx_t_11.data = NULL;
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-    __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
+528:                                                  nodes_raster_buff[1,:],
-
    __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-    {
-    Py_ssize_t __pyx_tmp_idx = 1;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 528, __pyx_L1_error)
-    }
-
+529:                                                  nodes_raster_buff[2,:])
-
    __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-    {
-    Py_ssize_t __pyx_tmp_idx = 2;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_9.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 529, __pyx_L1_error)
-    }
-
 530: 
-
+531:         if elem_area < -tol: # Backface culling
-
    __pyx_t_12 = (__pyx_v_elem_area < (-__pyx_v_tol));
-    if (__pyx_t_12) {
-/* … */
-    }
-
+532:             continue
-
      goto __pyx_L3_continue;
-
 533: 
-
 534:         # print(f"{nodes_raster_buff[0,0]},{nodes_raster_buff[0,1]},{nodes_raster_buff[0,2]}")
-
 535:         # print(f"{nodes_raster_buff[1,0]},{nodes_raster_buff[1,1]},{nodes_raster_buff[1,2]}")
-
 536:         # print(f"{nodes_raster_buff[2,0]},{nodes_raster_buff[2,1]},{nodes_raster_buff[2,2]}")
-
 537:         # print(f"{ee} ELEM AREA : {elem_area}")
-
 538:         # print()
-
 539: 
-
+540:         x_min: cython.double = vec_min_double(nodes_raster_buff[:,xx])
-
    __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0];
-    __pyx_t_9.suboffsets[0] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_xx;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 540, __pyx_L1_error)
-    }
-    __pyx_v_x_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__pyx_t_9);
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
+541:         x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx])
-
    __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0];
-    __pyx_t_9.suboffsets[0] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_xx;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 541, __pyx_L1_error)
-    }
-    __pyx_v_x_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__pyx_t_9);
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
 542: 
-
+543:         if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop
-
    __pyx_t_4 = __pyx_v_xx;
-    __pyx_t_13 = (__pyx_v_x_min > ((*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))) - 1));
-    if (!__pyx_t_13) {
-    } else {
-      __pyx_t_12 = __pyx_t_13;
-      goto __pyx_L9_bool_binop_done;
-    }
-    __pyx_t_13 = (__pyx_v_x_max < 0.0);
-    __pyx_t_12 = __pyx_t_13;
-    __pyx_L9_bool_binop_done:;
-    if (__pyx_t_12) {
-/* … */
-    }
-
+544:             continue
-
      goto __pyx_L3_continue;
-
 545: 
-
+546:         y_min: cython.double = vec_min_double(nodes_raster_buff[:,yy])
-
    __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0];
-    __pyx_t_9.suboffsets[0] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_yy;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 546, __pyx_L1_error)
-    }
-    __pyx_v_y_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_min_double(__pyx_t_9);
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
+547:         y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy])
-
    __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-    __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[0];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[0];
-    __pyx_t_9.suboffsets[0] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_yy;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 547, __pyx_L1_error)
-    }
-    __pyx_v_y_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_max_double(__pyx_t_9);
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-    __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
 548: 
-
+549:         if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop
-
    __pyx_t_4 = __pyx_v_yy;
-    __pyx_t_13 = (__pyx_v_y_min > ((*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))) - 1));
-    if (!__pyx_t_13) {
-    } else {
-      __pyx_t_12 = __pyx_t_13;
-      goto __pyx_L12_bool_binop_done;
-    }
-    __pyx_t_13 = (__pyx_v_y_max < 0.0);
-    __pyx_t_12 = __pyx_t_13;
-    __pyx_L12_bool_binop_done:;
-    if (__pyx_t_12) {
-/* … */
-    }
-
+550:             continue
-
      goto __pyx_L3_continue;
-
 551: 
-
 552:         # print(f"Elem {ee}: x, min {x_min}")
-
 553:         # print(f"Elem {ee}: x, max {x_max}")
-
 554:         # print(f"Elem {ee}: y, min {y_min}")
-
 555:         # print(f"Elem {ee}: y, max {y_max}\n")
-
 556: 
-
+557:         elems_in_image += 1
-
    __pyx_v_elems_in_image = (__pyx_v_elems_in_image + 1);
-
 558: 
-
+559:         xi_min: cython.size_t = bound_index_min(x_min)
-
    __pyx_v_xi_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(__pyx_v_x_min);
-
+560:         xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx])
-
    __pyx_t_4 = __pyx_v_xx;
-    __pyx_v_xi_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(__pyx_v_x_max, (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))));
-
+561:         yi_min: cython.size_t = bound_index_min(y_min)
-
    __pyx_v_yi_min = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_min(__pyx_v_y_min);
-
+562:         yi_max: cython.size_t = bound_index_max(y_max,num_pixels[yy])
-
    __pyx_t_4 = __pyx_v_yy;
-    __pyx_v_yi_max = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_bound_index_max(__pyx_v_y_max, (*((int *) ( /* dim=0 */ (__pyx_v_num_pixels.data + __pyx_t_4 * __pyx_v_num_pixels.strides[0]) ))));
-
 563: 
-
 564:         # print(f"Elem {ee}: xi, min {xi_min}")
-
 565:         # print(f"Elem {ee}: xi, max {xi_max}")
-
 566:         # print(f"Elem {ee}: yi, min {yi_min}")
-
 567:         # print(f"Elem {ee}: yi, max {yi_max}\n")
-
 568: 
-
+569:         for nn in range(nodes_per_elem):
-
    __pyx_t_4 = __pyx_v_nodes_per_elem;
-    __pyx_t_5 = __pyx_t_4;
-    for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) {
-      __pyx_v_nn = __pyx_t_6;
-
+570:             nodes_raster_buff[nn,zz] = 1/nodes_raster_buff[nn,zz]
-
      __pyx_t_8 = __pyx_v_nn;
-      __pyx_t_7 = __pyx_v_zz;
-      __pyx_t_14 = __pyx_v_nn;
-      __pyx_t_15 = __pyx_v_zz;
-      *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_14 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_15 * __pyx_v_nodes_raster_buff.strides[1]) )) = (1.0 / (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_8 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_7 * __pyx_v_nodes_raster_buff.strides[1]) ))));
-    }
-
 571: 
-
+572:         num_bound_x: cython.size_t = range_len_double(float(xi_min),
-
    __pyx_v_num_bound_x = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(((double)__pyx_v_xi_min), ((double)__pyx_v_xi_max), __pyx_v_coord_step);
-
 573:                                                       float(xi_max),
-
 574:                                                       coord_step)
-
+575:         num_bound_y: cython.size_t = range_len_double(float(yi_min),
-
    __pyx_v_num_bound_y = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_range_len_double(((double)__pyx_v_yi_min), ((double)__pyx_v_yi_max), __pyx_v_coord_step);
-
 576:                                                       float(yi_max),
-
 577:                                                       coord_step)
-
 578: 
-
+579:         bound_coord_x: cython.double = float(xi_min) + coord_offset
-
    __pyx_v_bound_coord_x = (((double)__pyx_v_xi_min) + __pyx_v_coord_offset);
-
+580:         bound_coord_y: cython.double = float(yi_min) + coord_offset
-
    __pyx_v_bound_coord_y = (((double)__pyx_v_yi_min) + __pyx_v_coord_offset);
-
 581: 
-
+582:         bound_ind_x: cython.size_t = sub_samp*xi_min
-
    __pyx_v_bound_ind_x = (__pyx_v_sub_samp * __pyx_v_xi_min);
-
+583:         bound_ind_y: cython.size_t = sub_samp*yi_min
-
    __pyx_v_bound_ind_y = (__pyx_v_sub_samp * __pyx_v_yi_min);
-
 584: 
-
 585:         # print(f"Elem {ee}: bound_coord_x={bound_coord_x}")
-
 586:         # print(f"Elem {ee}: bound_coord_y={bound_coord_y}")
-
 587:         # print(f"Elem {ee}: bound_ind_x={bound_ind_x}")
-
 588:         # print(f"Elem {ee}: bound_ind_y={bound_ind_y}")
-
 589:         # print(f"Elem {ee}: coord_step={coord_step}")
-
 590:         # print(f"Elem {ee}: num_bound_x={num_bound_x}")
-
 591:         # print(f"Elem {ee}: num_bound_x={num_bound_y}")
-
 592:         # print()
-
 593: 
-
 594: 
-
+595:         for jj in range(num_bound_y):
-
    __pyx_t_4 = __pyx_v_num_bound_y;
-    __pyx_t_5 = __pyx_t_4;
-    for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) {
-      __pyx_v_jj = __pyx_t_6;
-
 596: 
-
+597:             bound_coord_x = float(xi_min) + coord_offset
-
      __pyx_v_bound_coord_x = (((double)__pyx_v_xi_min) + __pyx_v_coord_offset);
-
+598:             bound_ind_x: cython.size_t = sub_samp*xi_min
-
      __pyx_v_bound_ind_x = (__pyx_v_sub_samp * __pyx_v_xi_min);
-
 599: 
-
+600:             for ii in range(num_bound_x):
-
      __pyx_t_7 = __pyx_v_num_bound_x;
-      __pyx_t_8 = __pyx_t_7;
-      for (__pyx_t_15 = 0; __pyx_t_15 < __pyx_t_8; __pyx_t_15+=1) {
-        __pyx_v_ii = __pyx_t_15;
-
 601: 
-
+602:                 px_coord_buff[xx] = bound_coord_x
-
        __pyx_t_14 = __pyx_v_xx;
-        *((double *) ( /* dim=0 */ (__pyx_v_px_coord_buff.data + __pyx_t_14 * __pyx_v_px_coord_buff.strides[0]) )) = __pyx_v_bound_coord_x;
-
+603:                 px_coord_buff[yy] = bound_coord_y
-
        __pyx_t_14 = __pyx_v_yy;
-        *((double *) ( /* dim=0 */ (__pyx_v_px_coord_buff.data + __pyx_t_14 * __pyx_v_px_coord_buff.strides[0]) )) = __pyx_v_bound_coord_y;
-
 604: 
-
 605:                 # Check the edge functions for each edge one at a time, as soon
-
 606:                 # as one is outside we don't need to do anymore work
-
+607:                 weights_buff[0] = edge_function(nodes_raster_buff[1,:],
-
        __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 1;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_9.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 607, __pyx_L1_error)
-        }
-/* … */
-        __pyx_t_16 = 0;
-        *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_9, __pyx_t_10, __pyx_v_px_coord_buff);
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-        __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-        __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-
+608:                                                 nodes_raster_buff[2,:],
-
        __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 2;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 608, __pyx_L1_error)
-        }
-
 609:                                                 px_coord_buff)
-
+610:                 if (weights_buff[0] < -tol):
-
        __pyx_t_16 = 0;
-        __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol));
-        if (__pyx_t_12) {
-/* … */
-        }
-
+611:                     bound_coord_x += coord_step
-
          __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step);
-
+612:                     bound_ind_x += 1
-
          __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1);
-
+613:                     continue
-
          goto __pyx_L18_continue;
-
 614: 
-
+615:                 weights_buff[1] = edge_function(nodes_raster_buff[2,:],
-
        __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 2;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 615, __pyx_L1_error)
-        }
-/* … */
-        __pyx_t_16 = 1;
-        *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_10, __pyx_t_9, __pyx_v_px_coord_buff);
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-        __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-        __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-
+616:                                                 nodes_raster_buff[0,:],
-
        __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 0;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_9.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 616, __pyx_L1_error)
-        }
-
 617:                                                 px_coord_buff)
-
+618:                 if (weights_buff[1] < -tol):
-
        __pyx_t_16 = 1;
-        __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol));
-        if (__pyx_t_12) {
-/* … */
-        }
-
+619:                     bound_coord_x += coord_step
-
          __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step);
-
+620:                     bound_ind_x += 1
-
          __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1);
-
+621:                     continue
-
          goto __pyx_L18_continue;
-
 622: 
-
 623: 
-
+624:                 weights_buff[2] = edge_function(nodes_raster_buff[0,:],
-
        __pyx_t_9.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_9.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_9, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 0;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_9.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_9.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_9.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_9.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_9.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 624, __pyx_L1_error)
-        }
-/* … */
-        __pyx_t_16 = 2;
-        *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) )) = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_edge_function(__pyx_t_9, __pyx_t_10, __pyx_v_px_coord_buff);
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_9, 1);
-        __pyx_t_9.memview = NULL; __pyx_t_9.data = NULL;
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-        __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-
+625:                                                 nodes_raster_buff[1,:],
-
        __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-        {
-    Py_ssize_t __pyx_tmp_idx = 1;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[0];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-__pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[1];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[1];
-    __pyx_t_10.suboffsets[0] = -1;
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 625, __pyx_L1_error)
-        }
-
 626:                                                 px_coord_buff)
-
+627:                 if (weights_buff[2] < -tol):
-
        __pyx_t_16 = 2;
-        __pyx_t_12 = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_16 * __pyx_v_weights_buff.strides[0]) ))) < (-__pyx_v_tol));
-        if (__pyx_t_12) {
-/* … */
-        }
-
+628:                     bound_coord_x += coord_step
-
          __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step);
-
+629:                     bound_ind_x += 1
-
          __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1);
-
+630:                     continue
-
          goto __pyx_L18_continue;
-
 631: 
-
 632:                 # if (ee%6) == 0:
-
 633:                 #     print(f"Elem: {ee}")
-
 634:                 #     print(f"x bound ind={bound_ind_x}, coord={bound_coord_x}")
-
 635:                 #     print(f"y bound ind={bound_ind_y}, coord={bound_coord_y}")
-
 636:                 #     print(f"weights=[{weights_buff[0]},{weights_buff[1]},{weights_buff[2]}]")
-
 637:                 #     print()
-
 638: 
-
 639: 
-
+640:                 for ww in range(nodes_per_elem):
-
        __pyx_t_14 = __pyx_v_nodes_per_elem;
-        __pyx_t_17 = __pyx_t_14;
-        for (__pyx_t_18 = 0; __pyx_t_18 < __pyx_t_17; __pyx_t_18+=1) {
-          __pyx_v_ww = __pyx_t_18;
-
+641:                     weights_buff[ww] = weights_buff[ww] / elem_area
-
          __pyx_t_19 = __pyx_v_ww;
-          __pyx_t_20 = __pyx_v_ww;
-          *((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_20 * __pyx_v_weights_buff.strides[0]) )) = ((*((double *) ( /* dim=0 */ (__pyx_v_weights_buff.data + __pyx_t_19 * __pyx_v_weights_buff.strides[0]) ))) / __pyx_v_elem_area);
-        }
-
 642: 
-
+643:                 weight_dot_nodes: cython.double = vec_dot_double(
-
        __pyx_v_weight_dot_nodes = __pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__pyx_v_weights_buff, __pyx_t_10);
-        __PYX_XCLEAR_MEMVIEW(&__pyx_t_10, 1);
-        __pyx_t_10.memview = NULL; __pyx_t_10.data = NULL;
-
 644:                                                     weights_buff,
-
+645:                                                     nodes_raster_buff[:,zz])
-
        __pyx_t_10.data = __pyx_v_nodes_raster_buff.data;
-        __pyx_t_10.memview = __pyx_v_nodes_raster_buff.memview;
-        __PYX_INC_MEMVIEW(&__pyx_t_10, 1);
-        __pyx_t_10.shape[0] = __pyx_v_nodes_raster_buff.shape[0];
-__pyx_t_10.strides[0] = __pyx_v_nodes_raster_buff.strides[0];
-    __pyx_t_10.suboffsets[0] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_zz;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_nodes_raster_buff.strides[1];
-        __pyx_t_10.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_10.memview) == Py_None)) {
-          PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-          __PYX_ERR(0, 645, __pyx_L1_error)
-        }
-
 646: 
-
 647:                 # Check the depth buffer, if the element is behind move on
-
+648:                 px_coord_z: cython.double = 1/weight_dot_nodes
-
        __pyx_v_px_coord_z = (1.0 / __pyx_v_weight_dot_nodes);
-
+649:                 if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]:
-
        __pyx_t_14 = __pyx_v_bound_ind_y;
-        __pyx_t_17 = __pyx_v_bound_ind_x;
-        __pyx_t_12 = (__pyx_v_px_coord_z >= (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_depth_buff_subpx.data + __pyx_t_14 * __pyx_v_depth_buff_subpx.strides[0]) ) + __pyx_t_17 * __pyx_v_depth_buff_subpx.strides[1]) ))));
-        if (__pyx_t_12) {
-/* … */
-        }
-
+650:                     bound_coord_x += coord_step
-
          __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step);
-
+651:                     bound_ind_x += 1
-
          __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1);
-
+652:                     continue
-
          goto __pyx_L18_continue;
-
 653: 
-
 654:                 # We only need one depth buffer for all fields
-
+655:                 depth_buff_subpx[bound_ind_y,bound_ind_x] = px_coord_z
-
        __pyx_t_17 = __pyx_v_bound_ind_y;
-        __pyx_t_14 = __pyx_v_bound_ind_x;
-        *((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_depth_buff_subpx.data + __pyx_t_17 * __pyx_v_depth_buff_subpx.strides[0]) ) + __pyx_t_14 * __pyx_v_depth_buff_subpx.strides[1]) )) = __pyx_v_px_coord_z;
-
 656: 
-
+657:                 for ff in range(fields_num):
-
        __pyx_t_14 = __pyx_v_fields_num;
-        __pyx_t_17 = __pyx_t_14;
-        for (__pyx_t_18 = 0; __pyx_t_18 < __pyx_t_17; __pyx_t_18+=1) {
-          __pyx_v_ff = __pyx_t_18;
-
+658:                     for nn in range(nodes_per_elem):
-
          __pyx_t_19 = __pyx_v_nodes_per_elem;
-          __pyx_t_20 = __pyx_t_19;
-          for (__pyx_t_21 = 0; __pyx_t_21 < __pyx_t_20; __pyx_t_21+=1) {
-            __pyx_v_nn = __pyx_t_21;
-
 659: 
-
+660:                         field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff]
-
            __pyx_t_22 = __pyx_v_ee;
-            __pyx_t_23 = __pyx_v_nn;
-            __pyx_t_24 = (*((size_t *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_connect.data + __pyx_t_22 * __pyx_v_connect.strides[0]) ) + __pyx_t_23 * __pyx_v_connect.strides[1]) )));
-            __pyx_t_25 = __pyx_v_ff;
-/* … */
-            __pyx_t_28 = __pyx_v_nn;
-            *((double *) ( /* dim=0 */ (__pyx_v_field_raster_buff.data + __pyx_t_28 * __pyx_v_field_raster_buff.strides[0]) )) = ((*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_fields_to_render.data + __pyx_t_24 * __pyx_v_fields_to_render.strides[0]) ) + __pyx_t_25 * __pyx_v_fields_to_render.strides[1]) ))) * (*((double *) ( /* dim=1 */ (( /* dim=0 */ (__pyx_v_nodes_raster_buff.data + __pyx_t_26 * __pyx_v_nodes_raster_buff.strides[0]) ) + __pyx_t_27 * __pyx_v_nodes_raster_buff.strides[1]) ))));
-          }
-
+661:                                                 *nodes_raster_buff[nn,zz])
-
            __pyx_t_26 = __pyx_v_nn;
-            __pyx_t_27 = __pyx_v_zz;
-
 662: 
-
 663:                     px_field: cython.double = (vec_dot_double(field_raster_buff,
-
 664:                                                               weights_buff)
-
+665:                                                               *px_coord_z)
-
          __pyx_v_px_field = (__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth_vec_dot_double(__pyx_v_field_raster_buff, __pyx_v_weights_buff) * __pyx_v_px_coord_z);
-
 666: 
-
+667:                     image_buff_subpx[bound_ind_y,bound_ind_x,ff] = px_field
-
          __pyx_t_19 = __pyx_v_bound_ind_y;
-          __pyx_t_20 = __pyx_v_bound_ind_x;
-          __pyx_t_21 = __pyx_v_ff;
-          *((double *) ( /* dim=2 */ (( /* dim=1 */ (( /* dim=0 */ (__pyx_v_image_buff_subpx.data + __pyx_t_19 * __pyx_v_image_buff_subpx.strides[0]) ) + __pyx_t_20 * __pyx_v_image_buff_subpx.strides[1]) ) + __pyx_t_21 * __pyx_v_image_buff_subpx.strides[2]) )) = __pyx_v_px_field;
-        }
-
 668: 
-
 669:                 # end for(x) - increment the x coords
-
+670:                 bound_coord_x += coord_step
-
        __pyx_v_bound_coord_x = (__pyx_v_bound_coord_x + __pyx_v_coord_step);
-
+671:                 bound_ind_x += 1
-
        __pyx_v_bound_ind_x = (__pyx_v_bound_ind_x + 1);
-        __pyx_L18_continue:;
-      }
-
 672: 
-
 673:             # end for(y) - increment the y coords
-
+674:             bound_coord_y += coord_step
-
      __pyx_v_bound_coord_y = (__pyx_v_bound_coord_y + __pyx_v_coord_step);
-
+675:             bound_ind_y += 1
-
      __pyx_v_bound_ind_y = (__pyx_v_bound_ind_y + 1);
-    }
-    __pyx_L3_continue:;
-  }
-
 676: 
-
+677:     _average_image(depth_buff_subpx,sub_samp,depth_buff_avg)
-
  (void)(__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__pyx_v_depth_buff_subpx, __pyx_v_sub_samp, __pyx_v_depth_buff_avg));
-
 678: 
-
+679:     for ff in range(fields_num):
-
  __pyx_t_1 = __pyx_v_fields_num;
-  __pyx_t_2 = __pyx_t_1;
-  for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
-    __pyx_v_ff = __pyx_t_3;
-
+680:         _average_image(image_buff_subpx[:,:,ff],
-
    __pyx_t_29.data = __pyx_v_image_buff_subpx.data;
-    __pyx_t_29.memview = __pyx_v_image_buff_subpx.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_29, 1);
-    __pyx_t_29.shape[0] = __pyx_v_image_buff_subpx.shape[0];
-__pyx_t_29.strides[0] = __pyx_v_image_buff_subpx.strides[0];
-    __pyx_t_29.suboffsets[0] = -1;
-
-__pyx_t_29.shape[1] = __pyx_v_image_buff_subpx.shape[1];
-__pyx_t_29.strides[1] = __pyx_v_image_buff_subpx.strides[1];
-    __pyx_t_29.suboffsets[1] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_ff;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_image_buff_subpx.strides[2];
-        __pyx_t_29.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_29.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 680, __pyx_L1_error)
-    }
-/* … */
-    (void)(__pyx_f_6pyvale_9sensorsim_6cython_10rastercyth__average_image(__pyx_t_29, __pyx_v_sub_samp, __pyx_t_30));
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_29, 1);
-    __pyx_t_29.memview = NULL; __pyx_t_29.data = NULL;
-    __PYX_XCLEAR_MEMVIEW(&__pyx_t_30, 1);
-    __pyx_t_30.memview = NULL; __pyx_t_30.data = NULL;
-  }
-
 681:                         sub_samp,
-
+682:                         image_buff_avg[:,:,ff])
-
    __pyx_t_30.data = __pyx_v_image_buff_avg.data;
-    __pyx_t_30.memview = __pyx_v_image_buff_avg.memview;
-    __PYX_INC_MEMVIEW(&__pyx_t_30, 1);
-    __pyx_t_30.shape[0] = __pyx_v_image_buff_avg.shape[0];
-__pyx_t_30.strides[0] = __pyx_v_image_buff_avg.strides[0];
-    __pyx_t_30.suboffsets[0] = -1;
-
-__pyx_t_30.shape[1] = __pyx_v_image_buff_avg.shape[1];
-__pyx_t_30.strides[1] = __pyx_v_image_buff_avg.strides[1];
-    __pyx_t_30.suboffsets[1] = -1;
-
-{
-    Py_ssize_t __pyx_tmp_idx = __pyx_v_ff;
-    Py_ssize_t __pyx_tmp_stride = __pyx_v_image_buff_avg.strides[2];
-        __pyx_t_30.data += __pyx_tmp_idx * __pyx_tmp_stride;
-}
-
-if (unlikely(((PyObject *) __pyx_t_30.memview) == Py_None)) {
-      PyErr_SetString(PyExc_TypeError, "cannot pass None into a C function argument that is declared 'not None'");
-      __PYX_ERR(0, 682, __pyx_L1_error)
-    }
-
 683: 
-
+684:     return elems_in_image
-
  __pyx_r = __pyx_v_elems_in_image;
-  goto __pyx_L0;
-
diff --git a/src/pyvale/sensorsim/cython/rastercyth.py b/src/pyvale/sensorsim/cython/rastercyth.py deleted file mode 100644 index 47235f93f..000000000 --- a/src/pyvale/sensorsim/cython/rastercyth.py +++ /dev/null @@ -1,684 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: this module is a feature under developement. -""" - -import numpy as np -import cython -#from cython.parallel import prange, parallel, threadid -from cython.cimports.libc.math import floor, ceil -from pyvale.sensorsim.cameradata import CameraData - -# NOTE: This module is a feature under developement. - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def range_len_double(start: cython.double, - stop: cython.double, - step: cython.double) -> cython.size_t: - return int(ceil((stop - start) / step)) - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def vec_range_int(start: cython.int, - stop: cython.int, - step: cython.int, - vec_buffer: cython.long[:]) -> cython.long[:]: - - num_vals: cython.size_t = int(ceil((stop - start) / step)) - - vec_buffer[0] = start - ii: cython.size_t - for ii in range(1,num_vals): - vec_buffer[ii] = vec_buffer[ii-1] + step - - return vec_buffer[0:num_vals] - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def vec_max_double(vals: cython.double[:]) -> cython.double: - - num_vals: cython.size_t = vals.shape[0] - - ii: cython.size_t = 0 - max_val: cython.double = vals[ii] - - for ii in range(1,num_vals): - if vals[ii] > max_val: - max_val = vals[ii] - - return max_val - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def vec_min_double(vals: cython.double[:]) -> cython.double: - - num_vals: cython.size_t = vals.shape[0] - - ii: cython.size_t = 0 - min_val: cython.double = vals[ii] - - for ii in range(1,num_vals): - if vals[ii] < min_val: - min_val = vals[ii] - - return min_val - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def vec_dot_double(vec0: cython.double[:], vec1: cython.double[:] - ) -> cython.double: - vec0_len: cython.size_t = vec0.shape[0] - vec1_len: cython.size_t = vec1.shape[0] - if vec0_len != vec1_len: - return 0.0 - - ii: cython.size_t = 0 - dot: cython.double = 0.0 - for ii in range(vec0_len): - dot += vec0[ii]*vec1[ii] - - return dot - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def bound_index_min(min_val: cython.double) -> cython.int: - min_ind: cython.int = int(floor(min_val)) - if min_ind < 0: - min_ind = 0 - return min_ind - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def bound_index_max(max_val: cython.double, - num_pixels: cython.int) -> cython.int: - max_ind: cython.int = int(ceil(max_val)) - if max_ind > (num_pixels-1): - max_ind = (num_pixels-1) - return max_ind - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.inline -@cython.exceptval(check=False) -def mult_mat44_by_vec3(mat44: cython.double[:,:], vec3_in: cython.double[:], - vec3_out: cython.double[:]) -> cython.double[:]: - - vec3_out[0] = (mat44[0,0]*vec3_in[0] - + mat44[0,1]*vec3_in[1] - + mat44[0,2]*vec3_in[2] - + mat44[0,3]) - vec3_out[1] = (mat44[1,0]*vec3_in[0] - + mat44[1,1]*vec3_in[1] - + mat44[1,2]*vec3_in[2] - + mat44[1,3]) - vec3_out[2] = (mat44[2,0]*vec3_in[0] - + mat44[2,1]*vec3_in[1] - + mat44[2,2]*vec3_in[2] - + mat44[2,3]) - vec3_out[3] = (mat44[3,0]*vec3_in[0] - + mat44[3,1]*vec3_in[1] - + mat44[3,2]*vec3_in[2] - + mat44[3,3]) - - return vec3_out - - -@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.exceptval(check=False) -def world_to_raster_coords(coords_world: cython.double[:], - world_to_cam_mat: cython.double[:,:], - image_dist: cython.double, - image_dims: cython.double[:], - num_pixels: cython.int[:], - coords_raster: cython.double[:] - ) -> cython.double[:]: - xx: cython.size_t = 0 - yy: cython.size_t = 1 - zz: cython.size_t = 2 - ww: cython.size_t = 3 - - coords_raster = mult_mat44_by_vec3(world_to_cam_mat, - coords_world, - coords_raster) - - coords_raster[xx] = coords_raster[xx] / coords_raster[ww] - coords_raster[yy] = coords_raster[yy] / coords_raster[ww] - coords_raster[zz] = coords_raster[zz] / coords_raster[ww] - - coords_raster[xx] = (image_dist * coords_raster[xx] - / -coords_raster[zz]) - coords_raster[yy] = (image_dist * coords_raster[yy] - / -coords_raster[zz]) - - coords_raster[xx] = 2*coords_raster[xx] / image_dims[xx] - coords_raster[yy] = 2*coords_raster[yy] / image_dims[yy] - - coords_raster[xx] = (coords_raster[xx] + 1)/2 * num_pixels[xx] - coords_raster[yy] = (1-coords_raster[yy])/2 * num_pixels[yy] - coords_raster[zz] = -coords_raster[zz] - - return coords_raster - -@cython.cfunc -@cython.nogil -@cython.boundscheck(False) -@cython.wraparound(False) -@cython.inline -@cython.exceptval(check=False) -def edge_function(vert_0: cython.double[:], - vert_1: cython.double[:], - vert_2: cython.double[:]) -> cython.double: - edge_fun: cython.double = ( - (vert_2[0] - vert_0[0]) * (vert_1[1] - vert_0[1]) - - (vert_2[1] - vert_0[1]) * (vert_1[0] - vert_0[0])) - return edge_fun - - -@cython.cfunc -@cython.nogil -@cython.boundscheck(False) -@cython.wraparound(False) -@cython.inline -@cython.exceptval(check=False) -def edge_function_pt(vert_0: cython.double[:], - vert_1: cython.double[:], - vert_2_x: cython.double, - vert_2_y: cython.double) -> cython.double: - edge_fun: cython.double = ( - (vert_2_x - vert_0[0]) * (vert_1[1] - vert_0[1]) - - (vert_2_y - vert_0[1]) * (vert_1[0] - vert_0[0])) - return edge_fun - - -@cython.ccall -@cython.boundscheck(False) -@cython.wraparound(False) -@cython.cdivision(True) -def average_image(image_subpx: cython.double[:,:], - sub_samp: cython.int, - ) -> cython.double[:,:]: - - if sub_samp <= 1: - return np.asarray(image_subpx[:,:]) - - px_num_y: cython.size_t = int(ceil(image_subpx.shape[0]/sub_samp)) - px_num_x: cython.size_t = int(ceil(image_subpx.shape[1]/sub_samp)) - - image_buff_avg_np = np.full((px_num_y,px_num_x),0.0,dtype=np.float64) - image_buff_avg: cython.double[:,:] = image_buff_avg_np - - num_subpx_y: cython.size_t = image_subpx.shape[0] - num_subpx_x: cython.size_t = image_subpx.shape[1] - subpx_per_px: cython.double = float(sub_samp*sub_samp) - ss_size: cython.size_t = sub_samp - - num_px_y: cython.size_t = int(num_subpx_y/sub_samp) - num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - - px_sum: cython.double = 0.0 - - ix: cython.size_t = 0 - iy: cython.size_t = 0 - sx: cython.size_t = 0 - sy: cython.size_t = 0 - - for iy in range(num_px_y): - for ix in range(num_px_x): - px_sum = 0.0 - for sy in range(ss_size): - for sx in range(ss_size): - px_sum += image_subpx[ss_size*iy+sy,ss_size*ix+sx] - - image_buff_avg[iy,ix] = px_sum / subpx_per_px - - return image_buff_avg - - -@cython.nogil -@cython.cfunc -@cython.boundscheck(False) -@cython.wraparound(False) -@cython.cdivision(True) -@cython.exceptval(check=False) -def _average_image(image_buff_subpx_in: cython.double[:,:], - sub_samp: cython.int, - image_buff_avg_out: cython.double[:,:] - ) -> cython.int: - - num_subpx_y: cython.size_t = image_buff_subpx_in.shape[0] - num_subpx_x: cython.size_t = image_buff_subpx_in.shape[1] - subpx_per_px: cython.double = float(sub_samp*sub_samp) - ss_size: cython.size_t = sub_samp - - num_px_y: cython.size_t = int(num_subpx_y/sub_samp) - num_px_x: cython.size_t = int(num_subpx_x/sub_samp) - - px_sum: cython.double = 0.0 - - ix: cython.size_t = 0 - iy: cython.size_t = 0 - sx: cython.size_t = 0 - sy: cython.size_t = 0 - - for iy in range(num_px_y): - for ix in range(num_px_x): - px_sum = 0.0 - for sy in range(ss_size): - for sx in range(ss_size): - px_sum += image_buff_subpx_in[ss_size*iy+sy,ss_size*ix+sx] - - image_buff_avg_out[iy,ix] = px_sum / subpx_per_px - - return 0 - - -#/////////////////////////////////////////////////////////////////////////////// -@cython.ccall # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -def raster_static_frame(coords: cython.double[:,:], - connect: cython.size_t[:,:], - fields_to_render: cython.double[:,:], - cam_data: CameraData, - ) -> tuple[np.ndarray,np.ndarray,int]: - - - world_to_cam_mat: cython.double[:,:] = cam_data.world_to_cam_mat - pixels_num: cython.int[:] = cam_data.pixels_num - image_dims: cython.double[:] = cam_data.image_dims - image_dist: cython.double = cam_data.image_dist - sub_samp: cython.int = cam_data.sub_samp - - nodes_per_elem: cython.size_t = connect.shape[1] - fields_num: cython.size_t = fields_to_render.shape[1] - sub_pix_x: cython.int = pixels_num[0]*sub_samp - sub_pix_y: cython.int = pixels_num[1]*sub_samp - - #--------------------------------------------------------------------------- - # Final image buffer memory allocation - image_buff_avg_np = np.full((pixels_num[1],pixels_num[0],fields_num),0.0,dtype=np.float64) - image_buff_avg: cython.double[:,:,:] = image_buff_avg_np - - depth_buff_avg_np = np.full((pixels_num[1],pixels_num[0]),0.0,dtype=np.float64) - depth_buff_avg: cython.double[:,:] = depth_buff_avg_np - - #--------------------------------------------------------------------------- - # Per-thread scratch memory allocations - depth_buffer_np = np.full((sub_pix_y,sub_pix_x),1.0e6,dtype=np.float64) - depth_buff_subpx: cython.double[:,:] = depth_buffer_np - - image_buffer_np = np.full((sub_pix_y,sub_pix_x,fields_num),0.0,dtype=np.float64) - image_buff_subpx: cython.double[:,:,:] = image_buffer_np - - # shape=(nodes_per_elem, coord[X,Y,Z,W]) - nodes_raster_np = np.empty((nodes_per_elem,4),dtype=np.float64) - nodes_raster_buff: cython.double[:,:] = nodes_raster_np - - field_raster_np = np.empty((nodes_per_elem,),dtype=np.float64) - field_raster_buff: cython.double[:] = field_raster_np - - weights_np = np.zeros((nodes_per_elem,),np.float64) - weights_buff: cython.double[:] = weights_np - - # Only used for edge function in raster coords - need x,y - px_coord_np = np.zeros((2,),np.float64) - px_coord_buff: cython.double[:] = px_coord_np - - - #--------------------------------------------------------------------------- - elems_in_image: cython.size_t = _raster_frame(coords[:,:], - connect[:,:], - fields_to_render[:,:], - world_to_cam_mat[:,:], - pixels_num[:], - image_dims[:], - image_dist, - sub_samp, - image_buff_avg[:,:,:], - depth_buff_avg[:,:], - image_buff_subpx[:,:,:], - depth_buff_subpx[:,:], - nodes_raster_buff[:,:], - field_raster_buff[:], - px_coord_buff[:], - weights_buff[:]) - - return (image_buff_avg_np,depth_buff_avg_np,elems_in_image) - -#/////////////////////////////////////////////////////////////////////////////// -@cython.ccall # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -def raster_deform_frame(coords: cython.double[:,:], - connect: cython.size_t[:,:], - fields_to_render: cython.double[:,:], - cam_data: CameraData, - field_disp: cython.double[:,:], - ) -> tuple[np.ndarray,np.ndarray,int]: - pass - -#/////////////////////////////////////////////////////////////////////////////// -#@cython.nogil -@cython.cfunc # python+C or cython.cfunc for C only -@cython.boundscheck(False) # Turn off array bounds checking -@cython.wraparound(False) # Turn off negative indexing -@cython.cdivision(True) # Turn off divide by zero check -@cython.exceptval(check=False) # Turn off exceptions -def _raster_frame(coords: cython.double[:,:], - connect: cython.size_t[:,:], - fields_to_render: cython.double[:,:], - world_to_cam_mat: cython.double[:,:], - num_pixels: cython.int[:], - image_dims: cython.double[:], - image_dist: cython.double, - sub_samp: cython.int, - # From here these are memory buffers that will be written into - image_buff_avg: cython.double[:,:,:], - depth_buff_avg: cython.double[:,:], - image_buff_subpx: cython.double[:,:,:], - depth_buff_subpx: cython.double[:,:], - nodes_raster_buff: cython.double[:,:], - field_raster_buff: cython.double[:], - px_coord_buff: cython.double[:], - weights_buff: cython.double[:], - ) -> cython.size_t: - """Rasters a single frame and all associated fields into the image and depth - buffer provided as inputs to the function. This is a pure cython function - with the GIL released for parallelisation. All fields (textures) are - rendered in a sub-loop so that the depth buffer and inside/outside test is - only performed once for all fields to be rendered. - - Parameters - ---------- - coords : cython.double[:,:] - Input. shape=(num_nodes,coords[x,y,z,w]) - connect : cython.size_t[:,:] - Input. shape=(num_elems,nodes_per_elem) - fields_to_render : cython.double[:,:] - Input. shape=(num_nodes,num_fields) - world_to_cam_mat : cython.double[:,:] - Input. Homogeneous coordinate transformation matrix from world to camera - coordinates. shape=(4,4). - num_pixels : cython.int[:] - Input. shape=(2 [num_px_x,num_px_y],) - image_dims : cython.double[:] - Input. shape=(2 [fov_size_x,fov_size_y],) - image_dist : cython.double - Input. - sub_samp : cython.int - Number of subsamples per pixel for anti-aliasing. - image_buff_avg : cython.double[:,:,:] - Output buffer. shape=(num_px_y,num_px_x,num_fields) - depth_buff_avg : cython.double[:,:] - Output buffer. shape=(num_px_y,num_px_x) - image_buff_subpx : cython.double[:,:,:] - Processing buffer (output). shape=(num_subpx_y,num_subpx_x,num_fields) - depth_buff_subpx : cython.double[:,:] - Processing buffer (output). shape=(num_subpx_y,num_subpx_x) - nodes_raster_buff : cython.double[:,:] - Processing buffer. shape=(nodes_per_elem, 4 coord[x,y,z,w]) - field_raster_buff : cython.double[:] - Processing buffer. shape=(nodes_per_elem,) - px_coord_buff : cython.double[:] - Processing buffer. shape=(2,) - weights_buff : cython.double[:] - Processing buffer. shape=(nodes_per_elem,) - - Returns - ------- - cython.size_t - Number of rendered elements after backface culling and cropping. - """ - - xx: cython.size_t = 0 - yy: cython.size_t = 1 - zz: cython.size_t = 2 - - elem_count: cython.size_t = connect.shape[0] - nodes_per_elem: cython.size_t = connect.shape[1] - fields_num: cython.size_t = fields_to_render.shape[1] - - # tolerance for floating point zero dot product - tol: cython.double = 1e-12 - - #elem_count: cython.size_t = 1 - elems_in_image: cython.size_t = 0 - - # Lifted constants - coord_step: cython.double = 1.0/float(sub_samp) - coord_offset: cython.double = 1.0/(2.0*float(sub_samp)) - - ee: cython.size_t = 0 - nn: cython.size_t = 0 - ii: cython.size_t = 0 - jj: cython.size_t = 0 - ww: cython.size_t = 0 - ff: cython.size_t = 0 - - for ee in range(elem_count): - - for nn in range(nodes_per_elem): - # shape=(nodes_per_elem, coord[X,Y,Z,W]) - nodes_raster_buff[nn,:] = world_to_raster_coords(coords[connect[ee,nn],:], - world_to_cam_mat, - image_dist, - image_dims, - num_pixels, - nodes_raster_buff[nn,:]) - - - elem_area: cython.double = edge_function(nodes_raster_buff[0,:], - nodes_raster_buff[1,:], - nodes_raster_buff[2,:]) - - if elem_area < -tol: # Backface culling - continue - - # print(f"{nodes_raster_buff[0,0]},{nodes_raster_buff[0,1]},{nodes_raster_buff[0,2]}") - # print(f"{nodes_raster_buff[1,0]},{nodes_raster_buff[1,1]},{nodes_raster_buff[1,2]}") - # print(f"{nodes_raster_buff[2,0]},{nodes_raster_buff[2,1]},{nodes_raster_buff[2,2]}") - # print(f"{ee} ELEM AREA : {elem_area}") - # print() - - x_min: cython.double = vec_min_double(nodes_raster_buff[:,xx]) - x_max: cython.double = vec_max_double(nodes_raster_buff[:,xx]) - - if ((x_min > num_pixels[xx]-1) or (x_max < 0)): # x crop - continue - - y_min: cython.double = vec_min_double(nodes_raster_buff[:,yy]) - y_max: cython.double = vec_max_double(nodes_raster_buff[:,yy]) - - if ((y_min > num_pixels[yy]-1) or (y_max < 0)): # y crop - continue - - # print(f"Elem {ee}: x, min {x_min}") - # print(f"Elem {ee}: x, max {x_max}") - # print(f"Elem {ee}: y, min {y_min}") - # print(f"Elem {ee}: y, max {y_max}\n") - - elems_in_image += 1 - - xi_min: cython.size_t = bound_index_min(x_min) - xi_max: cython.size_t = bound_index_max(x_max,num_pixels[xx]) - yi_min: cython.size_t = bound_index_min(y_min) - yi_max: cython.size_t = bound_index_max(y_max,num_pixels[yy]) - - # print(f"Elem {ee}: xi, min {xi_min}") - # print(f"Elem {ee}: xi, max {xi_max}") - # print(f"Elem {ee}: yi, min {yi_min}") - # print(f"Elem {ee}: yi, max {yi_max}\n") - - for nn in range(nodes_per_elem): - nodes_raster_buff[nn,zz] = 1/nodes_raster_buff[nn,zz] - - num_bound_x: cython.size_t = range_len_double(float(xi_min), - float(xi_max), - coord_step) - num_bound_y: cython.size_t = range_len_double(float(yi_min), - float(yi_max), - coord_step) - - bound_coord_x: cython.double = float(xi_min) + coord_offset - bound_coord_y: cython.double = float(yi_min) + coord_offset - - bound_ind_x: cython.size_t = sub_samp*xi_min - bound_ind_y: cython.size_t = sub_samp*yi_min - - # print(f"Elem {ee}: bound_coord_x={bound_coord_x}") - # print(f"Elem {ee}: bound_coord_y={bound_coord_y}") - # print(f"Elem {ee}: bound_ind_x={bound_ind_x}") - # print(f"Elem {ee}: bound_ind_y={bound_ind_y}") - # print(f"Elem {ee}: coord_step={coord_step}") - # print(f"Elem {ee}: num_bound_x={num_bound_x}") - # print(f"Elem {ee}: num_bound_x={num_bound_y}") - # print() - - - for jj in range(num_bound_y): - - bound_coord_x = float(xi_min) + coord_offset - bound_ind_x: cython.size_t = sub_samp*xi_min - - for ii in range(num_bound_x): - - px_coord_buff[xx] = bound_coord_x - px_coord_buff[yy] = bound_coord_y - - # Check the edge functions for each edge one at a time, as soon - # as one is outside we don't need to do anymore work - weights_buff[0] = edge_function(nodes_raster_buff[1,:], - nodes_raster_buff[2,:], - px_coord_buff) - if (weights_buff[0] < -tol): - bound_coord_x += coord_step - bound_ind_x += 1 - continue - - weights_buff[1] = edge_function(nodes_raster_buff[2,:], - nodes_raster_buff[0,:], - px_coord_buff) - if (weights_buff[1] < -tol): - bound_coord_x += coord_step - bound_ind_x += 1 - continue - - - weights_buff[2] = edge_function(nodes_raster_buff[0,:], - nodes_raster_buff[1,:], - px_coord_buff) - if (weights_buff[2] < -tol): - bound_coord_x += coord_step - bound_ind_x += 1 - continue - - # if (ee%6) == 0: - # print(f"Elem: {ee}") - # print(f"x bound ind={bound_ind_x}, coord={bound_coord_x}") - # print(f"y bound ind={bound_ind_y}, coord={bound_coord_y}") - # print(f"weights=[{weights_buff[0]},{weights_buff[1]},{weights_buff[2]}]") - # print() - - - for ww in range(nodes_per_elem): - weights_buff[ww] = weights_buff[ww] / elem_area - - weight_dot_nodes: cython.double = vec_dot_double( - weights_buff, - nodes_raster_buff[:,zz]) - - # Check the depth buffer, if the element is behind move on - px_coord_z: cython.double = 1/weight_dot_nodes - if px_coord_z >= depth_buff_subpx[bound_ind_y,bound_ind_x]: - bound_coord_x += coord_step - bound_ind_x += 1 - continue - - # We only need one depth buffer for all fields - depth_buff_subpx[bound_ind_y,bound_ind_x] = px_coord_z - - for ff in range(fields_num): - for nn in range(nodes_per_elem): - - field_raster_buff[nn] = (fields_to_render[connect[ee,nn],ff] - *nodes_raster_buff[nn,zz]) - - px_field: cython.double = (vec_dot_double(field_raster_buff, - weights_buff) - *px_coord_z) - - image_buff_subpx[bound_ind_y,bound_ind_x,ff] = px_field - - # end for(x) - increment the x coords - bound_coord_x += coord_step - bound_ind_x += 1 - - # end for(y) - increment the y coords - bound_coord_y += coord_step - bound_ind_y += 1 - - _average_image(depth_buff_subpx,sub_samp,depth_buff_avg) - - for ff in range(fields_num): - _average_image(image_buff_subpx[:,:,ff], - sub_samp, - image_buff_avg[:,:,ff]) - - return elems_in_image diff --git a/src/pyvale/sensorsim/fieldconverter.py b/src/pyvale/sensorsim/fieldconverter.py index 786ec3255..f8d6997a6 100644 --- a/src/pyvale/sensorsim/fieldconverter.py +++ b/src/pyvale/sensorsim/fieldconverter.py @@ -13,8 +13,8 @@ import pyvista as pv from pyvista import CellType from pyvale.dataio.simdata import SimData -from pyvale.dataio.meshtools import enforce_mesh_convention -from pyvale.dataio.meshtools import extract_surf_mesh as _extract_surf_mesh +from pyvale.dataio.meshconv import enforce_mesh_convention +from pyvale.dataio.meshconv import extract_surf_mesh as _extract_surf_mesh from pyvale.sensorsim.enums import EDim diff --git a/src/pyvale/sensorsim/fieldscalar.py b/src/pyvale/sensorsim/fieldscalar.py index 36de8be66..80f9c4d91 100644 --- a/src/pyvale/sensorsim/fieldscalar.py +++ b/src/pyvale/sensorsim/fieldscalar.py @@ -8,7 +8,7 @@ import pyvista as pv from scipy.spatial.transform import Rotation from pyvale.dataio.simdata import SimData -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.sensorsim.field import IField from pyvale.sensorsim.fieldconverter import simdata_to_pyvista_vis from pyvale.sensorsim.fieldinterpmesh import FieldInterpMesh diff --git a/src/pyvale/sensorsim/fieldtensor.py b/src/pyvale/sensorsim/fieldtensor.py index 026d3a345..6ac5be1c6 100644 --- a/src/pyvale/sensorsim/fieldtensor.py +++ b/src/pyvale/sensorsim/fieldtensor.py @@ -9,7 +9,7 @@ from scipy.spatial.transform import Rotation from pyvale.dataio.simdata import SimData -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.sensorsim.field import IField from pyvale.sensorsim.fieldconverter import (simdata_to_pyvista_vis, simdata_to_pyvista_interp) diff --git a/src/pyvale/sensorsim/fieldvector.py b/src/pyvale/sensorsim/fieldvector.py index c76775b96..f922c009f 100644 --- a/src/pyvale/sensorsim/fieldvector.py +++ b/src/pyvale/sensorsim/fieldvector.py @@ -9,7 +9,7 @@ from scipy.spatial.transform import Rotation from pyvale.dataio.simdata import SimData -from pyvale.dataio.meshtools import enforce_mesh_convention +from pyvale.dataio.meshconv import enforce_mesh_convention from pyvale.sensorsim.field import IField from pyvale.sensorsim.fieldconverter import (simdata_to_pyvista_interp, simdata_to_pyvista_vis) diff --git a/src/pyvale/sensorsim/imagedef2d.py b/src/pyvale/sensorsim/imagedef2d.py deleted file mode 100644 index 017595edc..000000000 --- a/src/pyvale/sensorsim/imagedef2d.py +++ /dev/null @@ -1,577 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: This module is a feature under developement. -""" - -# TODO -# - Update deformation functions to use pyvista a - -import time -import warnings -from dataclasses import dataclass -from pathlib import Path -import numpy as np -from scipy.interpolate import griddata -from scipy.interpolate import RectBivariateSpline -from scipy import ndimage - -from pyvale.sensorsim.rasternp import edge_function, RasterNP -from pyvale.sensorsim.cameradata2d import CameraData2D -from pyvale.sensorsim.cameratools import CameraTools -from pyvale.sensorsim.imagetools import ImageTools, EImageType - - -@dataclass(slots=True) -class ImageDefOpts: - save_path: Path | None = None - save_tag: str = "defimage" - - mask_input_image: bool = True - - crop_on: bool = False - crop_px: np.ndarray | None = None # only used to crop input image if above is true - - calc_res_from_fe: bool = False - calc_res_border_px: int = 5 - - add_static_ref: bool = False - - fe_interp: str = "linear" - fe_rescale: bool = True - fe_extrap_outside_fov: bool = True # forces displacements outside the - #subsample: int = 2 # MOVED TO CAMERA DATA - - image_def_order: int = 3 - image_def_extrap: str = "nearest" - image_def_extval: float = 0.0 # only used if above is "constant" - - def_complex_geom: bool = True - - def __post_init__(self) -> None: - if self.save_path is None: - self.save_path = Path.cwd() / "deformed_images" - - -class ImageDef2D: - - @staticmethod - def image_mask_from_sim(cam_data: CameraData2D, - image: np.ndarray, - coords: np.ndarray, - connectivity: np.ndarray - ) -> tuple[np.ndarray,np.ndarray]: - - # Here to allow for addition - #subsample: int = cam_data.subsample - subsample: int = 1 - - coords_raster = coords - cam_data.roi_cent_world - if coords_raster.shape[1] >= 3: - coords_raster = coords_raster[:,:-1] - - # Coords NDC: Convert to normalised device coords in the range [-1,1] - coords_raster[:,0] = 2*coords_raster[:,0] / cam_data.field_of_view[0] - coords_raster[:,1] = 2*coords_raster[:,1] / cam_data.field_of_view[1] - - # Coords Raster: Covert to pixel (raster) coords - # Shape = ([X,Y,Z],num_nodes) - coords_raster[:,0] = (coords_raster[:,0] + 1)/2 * cam_data.pixels_count[0] - coords_raster[:,1] = (1-coords_raster[:,1])/2 * cam_data.pixels_count[1] - - # shape=(num_elems,node_per_elem,coord[x,y]) - elem_coords = np.ascontiguousarray(coords_raster[connectivity,:]) - - #shape=(num_elems,coord[x,y,z]) - elem_coord_min = np.min(elem_coords,axis=1) - elem_coord_max = np.max(elem_coords,axis=1) - - # Check that min/max nodes are within the 4 edges of the camera image - #shape=(4_edges_to_check,num_elems) - crop_mask = np.zeros([elem_coords.shape[0],4],dtype=np.int8) - crop_mask[elem_coord_min[:,0] <= (cam_data.pixels_count[0]-1), 0] = 1 - crop_mask[elem_coord_min[:,1] <= (cam_data.pixels_count[1]-1), 1] = 1 - crop_mask[elem_coord_max[:,0] >= 0, 2] = 1 - crop_mask[elem_coord_max[:,1] >= 0, 3] = 1 - crop_mask = np.sum(crop_mask,axis=1) == 4 - - # Mask the element coords - elem_coords = np.ascontiguousarray(elem_coords[crop_mask,:,:]) - - # Get only the elements that are within the FOV - # Mask the elem coords and the max and min elem coords for processing - elem_coord_min = elem_coord_min[crop_mask,:] - elem_coord_max = elem_coord_max[crop_mask,:] - num_elems_in_image = elem_coord_min.shape[0] - - # Find the indices of the bounding box that each element lies within on - # the image, bounded by the upper and lower edges of the image - elem_bound_boxes_inds = np.zeros([num_elems_in_image,4],dtype=np.int32) - elem_bound_boxes_inds[:,0] = RasterNP.elem_bound_box_low( - elem_coord_min[:,0]) - elem_bound_boxes_inds[:,1] = RasterNP.elem_bound_box_high( - elem_coord_max[:,0], - cam_data.pixels_count[0]-1) - elem_bound_boxes_inds[:,2] = RasterNP.elem_bound_box_low( - elem_coord_min[:,1]) - elem_bound_boxes_inds[:,3] = RasterNP.elem_bound_box_high( - elem_coord_max[:,1], - cam_data.pixels_count[1]-1) - - num_edges: int = 3 - if elem_coords.shape[1] > 3: - num_edges = 4 - - mask_subpixel_buffer = np.full(subsample*cam_data.pixels_count,0.0).T - # Raster Loop - for ee in range(elem_coords.shape[0]): - # Create the subpixel coords inside the bounding box to test with the - # edge function. Use the pixel indices of the bounding box. - bound_subpx_x = np.arange(elem_bound_boxes_inds[ee,0], - elem_bound_boxes_inds[ee,1], - 1/subsample) + 1/(2*subsample) - bound_subpx_y = np.arange(elem_bound_boxes_inds[ee,2], - elem_bound_boxes_inds[ee,3], - 1/subsample) + 1/(2*subsample) - (bound_subpx_grid_x,bound_subpx_grid_y) = np.meshgrid(bound_subpx_x, - bound_subpx_y) - bound_coords_grid_shape = bound_subpx_grid_x.shape - # shape=(coord[x,y],num_subpx_in_box) - bound_subpx_coords_flat = np.vstack((bound_subpx_grid_x.flatten(), - bound_subpx_grid_y.flatten())) - - # Create the subpixel indices for buffer slicing later - subpx_inds_x = np.arange(subsample*elem_bound_boxes_inds[ee,0], - subsample*elem_bound_boxes_inds[ee,1]) - subpx_inds_y = np.arange(subsample*elem_bound_boxes_inds[ee,2], - subsample*elem_bound_boxes_inds[ee,3]) - (subpx_inds_grid_x,subpx_inds_grid_y) = np.meshgrid(subpx_inds_x, - subpx_inds_y) - - edge = np.zeros((num_edges,bound_subpx_coords_flat.shape[1]),dtype=np.float64) - - if num_edges == 4: - edge[0,:] = edge_function(elem_coords[ee,1,:], - elem_coords[ee,2,:], - bound_subpx_coords_flat) - edge[1,:] = edge_function(elem_coords[ee,2,:], - elem_coords[ee,3,:], - bound_subpx_coords_flat) - edge[2,:] = edge_function(elem_coords[ee,3,:], - elem_coords[ee,0,:], - bound_subpx_coords_flat) - edge[3,:] = edge_function(elem_coords[ee,0,:], - elem_coords[ee,1,:], - bound_subpx_coords_flat) - else: - edge[0,:] = edge_function(elem_coords[ee,1,:], - elem_coords[ee,2,:], - bound_subpx_coords_flat) - edge[1,:] = edge_function(elem_coords[ee,2,:], - elem_coords[ee,0,:], - bound_subpx_coords_flat) - edge[2,:] = edge_function(elem_coords[ee,0,:], - elem_coords[ee,1,:], - bound_subpx_coords_flat) - - - # Now we check where the edge function is above zero for all edges - edge_check = np.zeros_like(edge,dtype=np.int8) - edge_check[edge >= 0.0] = 1 - edge_check = np.sum(edge_check, axis=0) - # Create a mask with the check - edge_mask_flat = edge_check == num_edges - edge_mask_grid = np.reshape(edge_mask_flat,bound_coords_grid_shape) - - subpx_inds_grid_x = subpx_inds_grid_x[edge_mask_grid] - subpx_inds_grid_y = subpx_inds_grid_y[edge_mask_grid] - mask_subpixel_buffer[subpx_inds_grid_y,subpx_inds_grid_x] += 1.0 - - mask_subpixel_buffer[mask_subpixel_buffer>1.0] = 1.0 - - mask_buffer = CameraTools.average_subpixel_image(mask_subpixel_buffer, - subsample) - image[mask_buffer<1.0] = cam_data.background - return (image,mask_subpixel_buffer) - - - @staticmethod - def upsample_image(cam_data: CameraData2D, - input_im: np.ndarray): - # Get grid of pixel centroid locations - (px_vec_xm,px_vec_ym) = CameraTools.pixel_vec_leng(cam_data.field_of_view, - cam_data.leng_per_px) - - # Get grid of sub-pixel centroid locations - (subpx_vec_xm,subpx_vec_ym) = CameraTools.subpixel_vec_leng( - cam_data.field_of_view, - cam_data.leng_per_px, - cam_data.subsample) - - # NOTE: See Scipy transition from interp2d docs here: - # https://scipy.github.io/devdocs/tutorial/interpolate/interp_transition_guide.html - spline_interp = RectBivariateSpline(px_vec_xm, - px_vec_ym, - input_im.T) - upsampled_image_interp = lambda x_new, y_new: spline_interp(x_new, y_new).T - - # This function will flip the image regardless of the y vector input so flip it - # back to FE coords - upsampled_image = upsampled_image_interp(subpx_vec_xm,subpx_vec_ym) - - return upsampled_image - - - @staticmethod - def preprocess(cam_data: CameraData2D, - image_input: np.ndarray, - coords: np.ndarray, - connectivity: np.ndarray, - disp_x: np.ndarray, - disp_y: np.ndarray, - id_opts: ImageDefOpts, - print_on: bool = False - ) -> tuple[np.ndarray | None, - np.ndarray | None, - np.ndarray | None, - np.ndarray | None, - np.ndarray | None]: - - if print_on: - print("\n"+"="*80) - print("IMAGE DEF PRE-PROCESSING\n") - - if not id_opts.save_path.is_dir(): - id_opts.save_path.mkdir() - - # Make displacements a 2D column vector, allows addition of static frame - if disp_x.ndim == 1: - disp_x = np.atleast_2d(disp_x).T - if disp_y.ndim == 1: - disp_y = np.atleast_2d(disp_y).T - - if id_opts.add_static_ref: - num_nodes = coords.shape[0] # type: ignore - disp_x = np.hstack((np.zeros((num_nodes,1)),disp_x)) - disp_y = np.hstack((np.zeros((num_nodes,1)),disp_y)) - - image_input = CameraTools.crop_image_rectangle(image_input, - cam_data.pixels_count) - - if id_opts.mask_input_image or id_opts.def_complex_geom: - if print_on: - print('Image masking or complex geometry on, getting image mask.') - tic = time.perf_counter() - - (image_input, - image_mask) = ImageDef2D.image_mask_from_sim(cam_data, - image_input, - coords, - connectivity) - - - if print_on: - toc = time.perf_counter() - print(f'Calculating image mask took {toc-tic:.4f} seconds') - else: - image_mask = None - - - # Image upsampling - if print_on: - print('\n'+'-'*80) - print('GENERATE UPSAMPLED IMAGE\n') - print(f'Upsampling input image with a {cam_data.subsample}x{cam_data.subsample} subpixel') - tic = time.perf_counter() - - upsampled_image = ImageDef2D.upsample_image(cam_data,image_input) - - if print_on: - toc = time.perf_counter() - print(f'Upsampling image withtook {toc-tic:.4f} seconds') - - return (upsampled_image,image_mask,image_input,disp_x,disp_y) - - @staticmethod - def deform_one_image(upsampled_image: np.ndarray, - cam_data: CameraData2D, - id_opts: ImageDefOpts, - coords: np.ndarray, - disp: np.ndarray, - image_mask: np.ndarray | None = None, - print_on: bool = True - ) -> tuple[np.ndarray, - np.ndarray, - np.ndarray, - np.ndarray, - np.ndarray | None]: - - if image_mask is not None: - if (image_mask.shape[0] != cam_data.pixels_count[1]) or (image_mask.shape[1] != cam_data.pixels_count[0]): - if image_mask.size == 0: - warnings.warn('Image mask not specified, using default mask of whole image.') - else: - warnings.warn('Image mask size does not match camera, using default mask of whole image.') - image_mask = np.ones([cam_data.pixels_count[1],cam_data.pixels_count[0]]) - - (px_grid_xm, - px_grid_ym) = CameraTools.pixel_grid_leng(cam_data.field_of_view, - cam_data.leng_per_px) - - (subpx_grid_xm, - subpx_grid_ym) = CameraTools.subpixel_grid_leng(cam_data.field_of_view, - cam_data.leng_per_px, - cam_data.subsample) - - #-------------------------------------------------------------------------- - # Interpolate FE displacements onto the sub-pixel grid - if print_on: - print('Interpolating displacement onto sub-pixel grid.') - tic = time.perf_counter() - - (subpx_disp_x,subpx_disp_y) = _interp_sim_disp_to_subpx_grid( - coords, - disp, - cam_data, - id_opts, - subpx_grid_xm, - subpx_grid_ym) - - if print_on: - toc = time.perf_counter() - print('Interpolating displacement with NaN extrap took {:.4f} seconds'.format(toc-tic)) - - #-------------------------------------------------------------------------- - # Interpolate sub-pixel gray levels with ndimage toolbox - if print_on: - print('Deforming sub-pixel image.') - tic = time.perf_counter() - - def_image_subpx = _interp_subpx_image(upsampled_image, - subpx_grid_xm-subpx_disp_x, - subpx_grid_ym-subpx_disp_y, - cam_data, - id_opts) - - if print_on: - toc = time.perf_counter() - print('Deforming sub-pixel image with ndimage took {:.4f} seconds'.format(toc-tic)) - - #-------------------------------------------------------------------------- - # Average subpixel image - if print_on: - tic = time.perf_counter() - - def_image = CameraTools.average_subpixel_image(def_image_subpx, - cam_data.subsample) - - if print_on: - toc = time.perf_counter() - print('Averaging sub-pixel imagetook {:.4f} seconds'.format(toc-tic)) - - #-------------------------------------------------------------------------- - # DEFORMING IMAGE MASK - if id_opts.def_complex_geom: - if print_on: - print('Deforming image mask.') - tic = time.perf_counter() - - (def_image,def_mask) = _deform_image_mask(def_image, - image_mask, - px_grid_xm, - px_grid_ym, - subpx_disp_x, - subpx_disp_y, - cam_data) - - if print_on: - toc = time.perf_counter() - print('Deforming image mask with ndimage took {:.4f} seconds'.format(toc-tic)) - - else: - def_mask = None - - # Need to flip the image as all processing above is done with y axis down - # from the top left hand corner - def_image = def_image[::-1,:] - - return (def_image,def_image_subpx,subpx_disp_x,subpx_disp_y,def_mask) - - @staticmethod - def deform_images_to_disk(cam_data: CameraData2D, - upsampled_image: np.ndarray, - coords: np.ndarray, - connectivity: np.ndarray, - disp_x: np.ndarray, - disp_y: np.ndarray, - image_mask: np.ndarray | None, - id_opts: ImageDefOpts, - print_on: bool = False) -> None: - - #--------------------------------------------------------------------------- - # Image Deformation Loop - if print_on: - print('\n'+'='*80) - print('DEFORMING IMAGES') - - num_frames = disp_x.shape[1] - ticl = time.perf_counter() - - for ff in range(num_frames): - if print_on: - ticf = time.perf_counter() - print(f'\nDEFORMING FRAME: {ff}') - - disp = np.array((disp_x[:,ff],disp_y[:,ff])).T - (def_image, - _, - _, - _, - _) = ImageDef2D.deform_one_image(upsampled_image, - cam_data, - id_opts, - coords, - disp, - image_mask, - print_on=print_on) - - save_file = id_opts.save_path / str(f'{id_opts.save_tag}_'+ - f'{ImageTools.get_num_str(im_num=ff,width=4)}'+ - '.tiff') - ImageTools.save_image(save_file, - def_image, - EImageType.TIFF, - cam_data.bits) - - if print_on: - tocf = time.perf_counter() - print(f'DEFORMING FRAME: {ff} took {tocf-ticf:.4f} seconds') - - if print_on: - tocl = time.perf_counter() - print('\n'+'-'*50) - print(f'Deforming all images took {tocl-ticl:.4f} seconds') - print('-'*50) - - print('\n'+'='*80) - print('COMPLETE\n') - - - -def _interp_sim_disp_to_subpx_grid(coords: np.ndarray, - disp: np.ndarray, - cam_data: CameraData2D, - id_opts: ImageDefOpts, - subpx_grid_xm: np.ndarray, - subpx_grid_ym: np.ndarray - ) -> tuple[np.ndarray,np.ndarray]: - - # Interpolate displacements onto sub-pixel locations - nan extrapolation - subpx_disp_x = griddata((coords[:,0] + disp[:,0] + cam_data.world_to_cam[0], - coords[:,1] + disp[:,1] + cam_data.world_to_cam[1]), - disp[:,0], - (subpx_grid_xm,subpx_grid_ym), - method=id_opts.fe_interp, - fill_value=np.nan, - rescale=id_opts.fe_rescale) - - subpx_disp_y = griddata((coords[:,0] + disp[:,0] + cam_data.world_to_cam[0], - coords[:,1] + disp[:,1] + cam_data.world_to_cam[1]), - disp[:,1], - (subpx_grid_xm,subpx_grid_ym), - method=id_opts.fe_interp, - fill_value=np.nan, - rescale=id_opts.fe_rescale) - - # Ndimage interp can't handle nans so force everything outside the specimen - # to extrapolate outside the FOV - then use ndimage opts to control - if id_opts.fe_extrap_outside_fov: - subpx_disp_ext_vals = 2*cam_data.field_of_view - else: - subpx_disp_ext_vals = (0.0,0.0) - - # Set the nans to the extrapoltion value - subpx_disp_x[np.isnan(subpx_disp_x)] = subpx_disp_ext_vals[0] - subpx_disp_y[np.isnan(subpx_disp_y)] = subpx_disp_ext_vals[1] - - return (subpx_disp_x,subpx_disp_y) - - -def _interp_subpx_image(upsampled_image: np.ndarray, - def_subpx_x: np.ndarray, - def_subpx_y: np.ndarray, - cam_data: CameraData2D, - id_opts: ImageDefOpts, - ) -> np.ndarray: - - # Flip needed to be consistent with pixel coords of ndimage - def_subpx_x = def_subpx_x[::-1,:] - def_subpx_y = def_subpx_y[::-1,:] - - # NDIMAGE: IMAGE DEF - # NOTE: need to shift to pixel centroid co-ords from nodal so -0.5 makes the - # top left 0,0 in pixel co-ords - def_subpx_x_in_px = def_subpx_x*(cam_data.subsample/cam_data.leng_per_px)-0.5 - def_subpx_y_in_px = def_subpx_y*(cam_data.subsample/cam_data.leng_per_px)-0.5 - # NOTE: prefilter needs to be on to match griddata and interp2D! - # with prefilter on this exactly matches I2D but 10x faster! - def_image_subpx = ndimage.map_coordinates(upsampled_image, - [[def_subpx_y_in_px], - [def_subpx_x_in_px]], - prefilter=True, - order= id_opts.image_def_order, - mode= id_opts.image_def_extrap, - cval= id_opts.image_def_extval) - - def_image_subpx = def_image_subpx[0,:,:].squeeze() - - return def_image_subpx - - -def _deform_image_mask(def_image: np.ndarray, - image_mask: np.ndarray, - px_grid_xm: np.ndarray, - px_grid_ym: np.ndarray, - subpx_disp_x: np.ndarray, - subpx_disp_y: np.ndarray, - cam_data: CameraData2D, - ) -> tuple[np.ndarray,np.ndarray]: - - # This is slow - might be quicker to just deform an upsampled mask - # TODO: use cython image averaging it is way faster! - px_disp_x = CameraTools.average_subpixel_image(subpx_disp_x, - cam_data.subsample) - px_disp_y = CameraTools.average_subpixel_image(subpx_disp_y, - cam_data.subsample) - - def_px_x = px_grid_xm-px_disp_x - def_px_y = px_grid_ym-px_disp_y - # Flip needed to be consistent with pixel coords of ndimage - def_px_x = def_px_x[::-1,:] - def_px_y = def_px_y[::-1,:] - - # NDIMAGE: DEFORM IMAGE MASK - # NOTE: need to shift to pixel centroid co-ords from nodal so -0.5 makes the - # top left 0,0 in pixel co-ords - def_px_x_in_px = def_px_x*(1/cam_data.leng_per_px)-0.5 - def_px_y_in_px = def_px_y*(1/cam_data.leng_per_px)-0.5 - # NOTE: prefilter needs to be on to match griddata and interp2D! - # with prefilter on this exactly matches I2D but 10x faster! - def_mask = ndimage.map_coordinates(image_mask, - [[def_px_y_in_px], - [def_px_x_in_px]], - prefilter=True, - order=2, - mode='constant', - cval=0) - - def_mask = def_mask[0,:,:].squeeze() - # Use the deformed image mask to mask the deformed image - # Mask is 0-1 with 1 being definitely inside the sample 0 outside - def_image[def_mask<0.51] = cam_data.background # type: ignore - - return (def_image,image_mask) diff --git a/src/pyvale/sensorsim/imagetools.py b/src/pyvale/sensorsim/imagetools.py index 9665dbe6b..c56e83b4d 100644 --- a/src/pyvale/sensorsim/imagetools.py +++ b/src/pyvale/sensorsim/imagetools.py @@ -20,6 +20,28 @@ def __str__(self): class ImageTools: + @staticmethod + def edge_function(vert_a: np.ndarray, + vert_b: np.ndarray, + vert_c: np.ndarray) -> np.ndarray: + """Calculate the signed 2D edge function for a point or point array.""" + return ((vert_c[0] - vert_a[0]) * (vert_b[1] - vert_a[1]) + - (vert_c[1] - vert_a[1]) * (vert_b[0] - vert_a[0])) + + @staticmethod + def elem_bound_box_low(coord_min: np.ndarray) -> np.ndarray: + """Return lower integer element bounds clipped to image index zero.""" + return np.maximum(np.floor(coord_min).astype(np.int32), 0) + + @staticmethod + def elem_bound_box_high(coord_max: np.ndarray, + image_px: int) -> np.ndarray: + """Return upper integer element bounds clipped to the image extent.""" + return np.minimum( + np.ceil(coord_max).astype(np.int32), + image_px * np.ones_like(coord_max, dtype=np.int32), + ) + @staticmethod def load_image_rgb(im_path: Path) -> np.ndarray: return mplim.imread(im_path).astype(np.float64) @@ -134,4 +156,3 @@ def _image_to_uint(image: np.ndarray, bits: int) -> np.ndarray: warnings.warn(f"Number of bits={bits} should be between 0 and 32, defaulting to 16 bits.") return image.astype(np.uint16) - diff --git a/src/pyvale/sensorsim/raster.py b/src/pyvale/sensorsim/raster.py deleted file mode 100644 index f4b1de68a..000000000 --- a/src/pyvale/sensorsim/raster.py +++ /dev/null @@ -1,31 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: this module is a feature under developement. -""" - -from abc import ABC, abstractmethod -import numpy as np - -# NOTE: -# - Need to render a single frame static/deformed -# - Need to render all frames static/deformed -class IRaster(ABC): - @abstractmethod - def render_static_frame() -> None: - pass - - @abstractmethod - def render_deformed_frame() -> None: - pass - - -# NOTE: -# - Manages parallelisation/saving with different rendering backends -# - Uses multi-processing -class Raster: - pass diff --git a/src/pyvale/sensorsim/rastercy.py b/src/pyvale/sensorsim/rastercy.py deleted file mode 100644 index 3a6e67fa7..000000000 --- a/src/pyvale/sensorsim/rastercy.py +++ /dev/null @@ -1,107 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: this module is a feature under developement. -""" - -from pathlib import Path -from multiprocessing.pool import Pool -import numpy as np -from pyvale.sensorsim.cameradata import CameraData -from pyvale.sensorsim.rendermesh import RenderMesh -from pyvale.sensorsim.renderer import IRenderer -from pyvale.sensorsim.rasteropts import RasterOpts -import pyvale.sensorsim.cython.rastercyth as rastercyth - -# NOTE: This module is a feature under developement. - - -# class RasterCyth(IRenderEngine): -# __slots__ = ("opts",) - -# def __init__(self, opts: RasterOpts) -> None: -# self.opts = opts - - -# def one_frame(self, frame_ind: int = 0) -> list[np.ndarray]: -# pass - - -# def all_frames(self, para_by_frame: int = 1) -> list[np.ndarray]: -# pass - - -# def one_frame_to_disk(self, frame_ind: int = 0) -> None: -# pass - - -# def all_frames_to_disk(self, para_by_frame: int = 1) -> None: -# pass - - - - -class RasterCY: - @staticmethod - def raster_static_mesh(cam_data: CameraData, - render_mesh: RenderMesh, - workers: int | None = None, - ) -> tuple[np.ndarray,np.ndarray,np.ndarray] | None: - - frames_num = render_mesh.fields_render.shape[1] - field_num = render_mesh.fields_render.shape[2] - - images_out = np.empty((cam_data.pixels_num[1], - cam_data.pixels_num[0], - frames_num, - field_num)) - depths_out = np.empty((cam_data.pixels_num[1], - cam_data.pixels_num[0], - frames_num)) - elems_out = np.empty((frames_num,)) - - if workers is None: - for tt in range(frames_num): - (image_buffer, - depth_buffer, - elems_in_image) = rastercyth.raster_static_frame( - render_mesh.coords, - render_mesh.connectivity, - render_mesh.fields_render[:,tt,:], - cam_data) - - images_out[:,:,tt,:] = image_buffer - depths_out[:,:,tt] = depth_buffer - elems_out[tt] = elems_in_image - - else: - assert workers > 0, "Number of threads must be greater than 0." - - with Pool(workers) as pool: - processes_with_id = [] - - for tt in range(frames_num): - args = (render_mesh.coords, - render_mesh.connectivity, - render_mesh.fields_render[:,tt,:], - cam_data) - - process = pool.apply_async(rastercyth.raster_static_frame, args=args) - processes_with_id.append({"process": process, - "frame": tt}) - - for pp in processes_with_id: - (image,depth,elems) = pp["process"].get() - images_out[:,:,pp["frame"],:] = image - depths_out[:,:,pp["frame"]] = depth - elems_out = elems - - return (images_out,depths_out,elems_out) - - - - diff --git a/src/pyvale/sensorsim/rasternp.py b/src/pyvale/sensorsim/rasternp.py deleted file mode 100644 index 53a98de12..000000000 --- a/src/pyvale/sensorsim/rasternp.py +++ /dev/null @@ -1,622 +0,0 @@ -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== - -""" -NOTE: this module is a feature under developement -""" - -from pathlib import Path -import time -from multiprocessing.pool import Pool -import numpy as np -#import matplotlib.pyplot as plt -import pyvale.dataset as dataset -from pyvale.sensorsim.cameradata import CameraData -from pyvale.sensorsim.cameratools import CameraTools -from pyvale.sensorsim.rendermesh import RenderMesh -from pyvale.sensorsim.renderer import IRenderer, RenderScene -from pyvale.sensorsim.rasteropts import RasterOpts, save_raster -from pyvale.sensorsim.imagetools import ImageTools -#from pyvale.sensorsim.visualimages import plot_field_image -import pyvale.sensorsim.cython.rastercyth as rastercyth - - -# NOTE: This module is a feature under developement. - -#=============================================================================== -class RasterNumpy(IRenderer): - __slots__ = ("scene","opts",) - - def __init__(self, opts: RasterOpts) -> None: - self.opts = opts - - - def render(self, - scene: RenderScene, - cam_ind: int = 0, - frame_ind: int = 0, - field_ind: int = 0) -> np.ndarray: - - image = RasterNP.raster_frame( - cam_ind=cam_ind, - frame_ind=frame_ind, - field_ind=field_ind, - cam_data=scene.cameras[cam_ind], - meshes=scene.meshes, - opts=self.opts, - save_path=None, - ) - - return image - - - def render_to_disk(self, - scene: RenderScene, - cam_ind: int = 0, - frame_ind: int = 0, - field_ind: int = 0, - save_path: Path | None = None) -> None: - - if save_path is None: - save_path = DataSet.create_output_path() - - if not save_path.is_dir(): - raise FileExistsError(f"Save path for render images does not exist:\n{save_path}") - - RasterNP.raster_frame( - cam_ind=cam_ind, - frame_ind=frame_ind, - field_ind=field_ind, - cam_data=scene.cameras[cam_ind], - meshes=scene.meshes, - opts=self.opts, - save_path=save_path, - ) - - - def render_all(self, scene: RenderScene) -> list[np.ndarray]: - - images = RasterNP.raster_scene( - scene=scene, - opts=self.opts, - save_path=None, - ) - - return images - - - def render_all_to_disk(self, - scene: RenderScene, - save_path: Path | None = None) -> None: - - if save_path is None: - save_path = DataSet.create_output_path() - - if not save_path.is_dir(): - raise FileExistsError(f"Save path for render images does not exist:\n{save_path}") - - RasterNP.raster_scene(scene=scene,opts=self.opts,save_path=save_path) - - - -#=============================================================================== -class RasterNP: - @staticmethod - def world_to_raster_coords(world_to_cam_mat: np.ndarray, - pixels_num: np.ndarray, - image_dims: np.ndarray, - image_dist: float, - coords_world: np.ndarray) -> np.ndarray: - # coords_world.shape=(num_nodes,coord[X,Y,Z,W]) - - # Project onto camera coords - # coords_raster.shape=(num_nodes,coord[X,Y,Z,W]) - coords_raster = np.matmul(coords_world,world_to_cam_mat.T) - - # NOTE: w is not 1 when the matrix is a perspective projection! It is only 1 - # here when we have an affine transformation - coords_raster[:,0] = coords_raster[:,0] / coords_raster[:,3] - coords_raster[:,1] = coords_raster[:,1] / coords_raster[:,3] - coords_raster[:,2] = coords_raster[:,2] / coords_raster[:,3] - - # Coords Image: Perspective divide - coords_raster[:,0] = (image_dist * coords_raster[:,0] - / -coords_raster[:,2]) - coords_raster[:,1] = (image_dist * coords_raster[:,1] - / -coords_raster[:,2]) - - # Coords NDC: Convert to normalised device coords in the range [-1,1] - coords_raster[:,0] = 2*coords_raster[:,0] / image_dims[0] - coords_raster[:,1] = 2*coords_raster[:,1] / image_dims[1] - - # Coords Raster: Covert to pixel (raster) coords - # Shape = ([X,Y,Z],num_nodes) - coords_raster[:,0] = (coords_raster[:,0] + 1)/2 * pixels_num[0] - coords_raster[:,1] = (1-coords_raster[:,1])/2 * pixels_num[1] - coords_raster[:,2] = -coords_raster[:,2] - - return coords_raster - - - @staticmethod - def back_face_removal_mask(world_to_cam_mat: np.ndarray, - coords_world: np.ndarray, - connect: np.ndarray - ) -> np.ndarray: - coords_cam = np.matmul(coords_world,world_to_cam_mat.T) - - # shape=(num_elems,nodes_per_elem,coord[x,y,z,w]) - elem_cam_coords = coords_cam[connect,:] - - # Calculate the normal vectors for all of the elements, remove the w coord - # shape=(num_elems,coord[x,y,z]) - elem_cam_edge0 = elem_cam_coords[:,1,:-1] - elem_cam_coords[:,0,:-1] - elem_cam_edge1 = elem_cam_coords[:,2,:-1] - elem_cam_coords[:,0,:-1] - elem_cam_normals = np.cross(elem_cam_edge0,elem_cam_edge1, - axisa=1,axisb=1).T - elem_cam_normals = elem_cam_normals / np.linalg.norm(elem_cam_normals,axis=0) - - cam_normal = np.array([0,0,1]) - # shape=(num_elems,) - proj_elem_to_cam = np.dot(cam_normal,elem_cam_normals) - - # NOTE this should be a numerical precision tolerance (epsilon) - back_face_mask = proj_elem_to_cam > 1e-12 - - return back_face_mask - - @staticmethod - def crop_and_bound_by_connect(pixels_num: np.ndarray, - coords_raster: np.ndarray, - connectivity: np.ndarray, - ) -> tuple[np.ndarray,np.ndarray]: - - #shape=(num_elems,coord[x,y,z,w]) - if coords_raster.ndim == 2: - coords_by_elem = coords_raster[connectivity,:] - else: - coords_by_elem = coords_raster[connectivity,:,:] - - elem_raster_coord_min = np.min(coords_by_elem,axis=1) - elem_raster_coord_max = np.max(coords_by_elem,axis=1) - - # Check that min/max nodes are within the 4 edges of the camera image - #shape=(4_edges_to_check,num_elems) - crop_mask = np.zeros([connectivity.shape[0],4],dtype=np.int8) - crop_mask[elem_raster_coord_min[:,0] <= (pixels_num[0]-1), 0] = 1 - crop_mask[elem_raster_coord_min[:,1] <= (pixels_num[1]-1), 1] = 1 - crop_mask[elem_raster_coord_max[:,0] >= 0, 2] = 1 - crop_mask[elem_raster_coord_max[:,1] >= 0, 3] = 1 - crop_mask = np.sum(crop_mask,axis=1) == 4 - - # Get only the elements that are within the FOV - # Mask the elem coords and the max and min elem coords for processing - elem_raster_coord_min = elem_raster_coord_min[crop_mask,:] - elem_raster_coord_max = elem_raster_coord_max[crop_mask,:] - num_elems_in_image = elem_raster_coord_min.shape[0] - - - # Find the indices of the bounding box that each element lies within on - # the image, bounded by the upper and lower edges of the image - elem_bound_boxes_inds = np.zeros([num_elems_in_image,4],dtype=np.int32) - elem_bound_boxes_inds[:,0] = RasterNP.elem_bound_box_low( - elem_raster_coord_min[:,0]) - elem_bound_boxes_inds[:,1] = RasterNP.elem_bound_box_high( - elem_raster_coord_max[:,0], - pixels_num[0]-1) - elem_bound_boxes_inds[:,2] = RasterNP.elem_bound_box_low( - elem_raster_coord_min[:,1]) - elem_bound_boxes_inds[:,3] = RasterNP.elem_bound_box_high( - elem_raster_coord_max[:,1], - pixels_num[1]-1) - - return (crop_mask,elem_bound_boxes_inds) - - - @staticmethod - def elem_bound_box_low(coord_min: np.ndarray) -> np.ndarray: - bound_elem = np.floor(coord_min).astype(np.int32) - bound_low = np.zeros_like(coord_min,dtype=np.int32) - bound_mat = np.vstack((bound_elem,bound_low)) - return np.max(bound_mat,axis=0) - - - @staticmethod - def elem_bound_box_high(coord_max: np.ndarray,image_px: int) -> np.ndarray: - bound_elem = np.ceil(coord_max).astype(np.int32) - bound_high = image_px*np.ones_like(coord_max,dtype=np.int32) - bound_mat = np.vstack((bound_elem,bound_high)) - bound = np.min(bound_mat,axis=0) - return bound - - @staticmethod - def average_buffers(cam_data: CameraData, - image_buff_subpx: np.ndarray, - depth_buff_subpx: np.ndarray) -> tuple[np.ndarray,np.ndarray]: - - depth_buff_avg = np.empty((cam_data.pixels_num[1],cam_data.pixels_num[0]), - dtype=np.float64) - image_buff_avg = np.empty((cam_data.pixels_num[1],cam_data.pixels_num[0]), - dtype=np.float64) - - if Path(rastercyth.__file__).suffix in (".so",".dll",".dylib"): - depth_buff_avg = np.array( - rastercyth.average_image(depth_buff_subpx,cam_data.sub_samp)) - - - image_buff_avg = np.array( - rastercyth.average_image(image_buff_subpx,cam_data.sub_samp)) - - else: - depth_buff_avg = CameraTools.average_subpixel_image( - depth_buff_subpx,cam_data.sub_samp) - image_buff_avg = CameraTools.average_subpixel_image( - image_buff_subpx,cam_data.sub_samp) - - return (image_buff_avg,depth_buff_avg) - - - @staticmethod - def setup_frame(camera: CameraData, - mesh: RenderMesh, - frame_ind: int = 0, - ) -> tuple[np.ndarray,np.ndarray,np.ndarray]: - - connect_in_frame = np.copy(mesh.connectivity) - coords_deform = np.copy(mesh.coords) - - #----------------------------------------------------------------------- - # DEFORM MESH WITH DISPLACEMENT - if mesh.fields_disp is not None: - # Exclude w coord from mesh deformation - coords_deform[:,:-1] = (coords_deform[:,:-1] - + mesh.fields_disp[:,frame_ind,:]) - - #----------------------------------------------------------------------- - # Convert all meshes from local to world coords - coords_deform = np.matmul(coords_deform,mesh.mesh_to_world_mat.T) - - #----------------------------------------------------------------------- - # Convert world coords of all elements in the scene - # shape=(num_nodes,coord[x,y,z,w]) - coords_raster = RasterNP.world_to_raster_coords(camera.world_to_cam_mat, - camera.pixels_num, - camera.image_dims, - camera.image_dist, - coords_deform) - - # Convert to perspective correct hyperbolic interpolation for z interp - # shape=(num_nodes,coord[x,y,z,w]) - coords_raster[:,2] = 1/coords_raster[:,2] - # Remove w coord - coords_raster = coords_raster[:,:-1] - - #----------------------------------------------------------------------- - # BACKFACE REMOVAL - # shape=(num_elems,) - back_face_mask = RasterNP.back_face_removal_mask(camera.world_to_cam_mat, - coords_deform, - connect_in_frame) - connect_in_frame = connect_in_frame[back_face_mask,:] - - #----------------------------------------------------------------------- - # CROPPING & BOUNDING BOX OPERATIONS - (crop_mask, - elem_bound_box_inds) = RasterNP.crop_and_bound_by_connect( - camera.pixels_num, - coords_raster, - connect_in_frame, - ) - connect_in_frame = connect_in_frame[crop_mask,:] - - #----------------------------------------------------------------------- - # ELEMENT AREAS FOR INTERPOLATION - elem_raster_coords = coords_raster[connect_in_frame,:] - elem_areas = edge_function_slice(elem_raster_coords[:,0,:], - elem_raster_coords[:,1,:], - elem_raster_coords[:,2,:]) - - return (coords_raster,connect_in_frame,elem_bound_box_inds,elem_areas) - - - @staticmethod - def raster_elem(elem_raster_coords: np.ndarray, - elem_bound_box_inds: np.ndarray, - elem_area: float, - field_divide_z: np.ndarray, - sub_samp: int, - ) -> tuple[np.ndarray,np.ndarray,np.ndarray,np.ndarray]: - # elem_raster_coords.shape=() - # elem_bound_box_inds.shape=() - # field_divide_z.shape=() - - # Create the subpixel coords inside the bounding box to test with the - # edge function. Use the pixel indices of the bounding box. - bound_subpx_x = np.arange(elem_bound_box_inds[0], - elem_bound_box_inds[1], - 1/sub_samp) + 1/(2*sub_samp) - bound_subpx_y = np.arange(elem_bound_box_inds[2], - elem_bound_box_inds[3], - 1/sub_samp) + 1/(2*sub_samp) - (bound_subpx_grid_x,bound_subpx_grid_y) = np.meshgrid(bound_subpx_x, - bound_subpx_y) - bound_coords_grid_shape = bound_subpx_grid_x.shape - # shape=(coord[x,y],num_subpx_in_box) - bound_subpx_coords_flat = np.vstack((bound_subpx_grid_x.flatten(), - bound_subpx_grid_y.flatten())) - - # Create the subpixel indices for buffer slicing later - subpx_inds_x = np.arange(sub_samp*elem_bound_box_inds[0], - sub_samp*elem_bound_box_inds[1]) - subpx_inds_y = np.arange(sub_samp*elem_bound_box_inds[2], - sub_samp*elem_bound_box_inds[3]) - (subpx_inds_grid_x,subpx_inds_grid_y) = np.meshgrid(subpx_inds_x, - subpx_inds_y) - - - # We compute the edge function for all pixels in the box to determine if the - # pixel is inside the element or not - # NOTE: first axis of element_raster_coords is the node/vertex num. - # shape=(num_elems_in_bound,nodes_per_elem) - edge = np.zeros((3,bound_subpx_coords_flat.shape[1]),dtype=np.float64) - edge[0,:] = edge_function(elem_raster_coords[1,:], - elem_raster_coords[2,:], - bound_subpx_coords_flat) - edge[1,:] = edge_function(elem_raster_coords[2,:], - elem_raster_coords[0,:], - bound_subpx_coords_flat) - edge[2,:] = edge_function(elem_raster_coords[0,:], - elem_raster_coords[1,:], - bound_subpx_coords_flat) - - # Now we check where the edge function is above zero for all edges - edge_check = np.zeros_like(edge,dtype=np.int8) - edge_check[edge >= 0.0] = 1 - edge_check = np.sum(edge_check, axis=0) - # Create a mask with the check, TODO check the 3 here for non triangles - edge_mask_flat = edge_check == 3 - edge_mask_grid = np.reshape(edge_mask_flat,bound_coords_grid_shape) - - # Calculate the weights for the masked pixels - edge_masked = edge[:,edge_mask_flat] - interp_weights = edge_masked / elem_area - - # Compute the depth of all pixels using hyperbolic interp - # NOTE: second index on raster coords is Z - px_coord_z = 1/(elem_raster_coords[0,2] * interp_weights[0,:] - + elem_raster_coords[1,2] * interp_weights[1,:] - + elem_raster_coords[2,2] * interp_weights[2,:]) - - field_interp = ((field_divide_z[0] * interp_weights[0,:] - + field_divide_z[1] * interp_weights[1,:] - + field_divide_z[2] * interp_weights[2,:]) - * px_coord_z) - - return (px_coord_z, - field_interp, - subpx_inds_grid_x[edge_mask_grid], - subpx_inds_grid_y[edge_mask_grid]) - - - @staticmethod - def raster_one_mesh(connect_in_frame: np.ndarray, - coords_raster: np.ndarray, - elem_bound_box_inds: np.ndarray, - elem_areas: np.ndarray, - field_frame_div_z: np.ndarray, - sub_samp: int, - image_buff_subpx: np.ndarray, - depth_buff_subpx: np.ndarray, - ) -> tuple[np.ndarray,np.ndarray]: - #connect_in_frame.shape=(num_elems,nodes_per_elem) - #coords_raster.shape=(num_coords,coord[x,y,z,w]) - #elem_bound_box_inds.shape=(num_elems,[min_x,max_x,min_y,max_y]) - #elem_areas.shape=(num_elems,) - #field_frame_divide_z=(num_coords,) - - for ee in range(connect_in_frame.shape[0]): - cc = connect_in_frame[ee,:] - - (px_coord_z, - field_interp, - subpx_inds_x_in, - subpx_inds_y_in) = RasterNP.raster_elem(coords_raster[cc,:], - elem_bound_box_inds[ee,:], - elem_areas[ee], - field_frame_div_z[cc], - sub_samp) - - - # Build a mask to replace the depth information if there is already an - # element in front of the one we are rendering - px_coord_z_depth_mask = (px_coord_z - < depth_buff_subpx[subpx_inds_y_in,subpx_inds_x_in]) - - # Initialise the z coord to the value in the depth buffer - px_coord_z_masked = depth_buff_subpx[subpx_inds_y_in,subpx_inds_x_in] - # Use the depth mask to overwrite the depth buffer values if points are in - # front of the values in the depth buffer - px_coord_z_masked[px_coord_z_depth_mask] = px_coord_z[px_coord_z_depth_mask] - - # Push the masked values into the depth buffer - depth_buff_subpx[subpx_inds_y_in,subpx_inds_x_in] = px_coord_z_masked - - # Mask the image buffer using the depth mask - image_buffer_depth_masked = image_buff_subpx[subpx_inds_y_in,subpx_inds_x_in] - image_buffer_depth_masked[px_coord_z_depth_mask] = field_interp[px_coord_z_depth_mask] - - # Push the masked values into the image buffer - image_buff_subpx[subpx_inds_y_in,subpx_inds_x_in] = image_buffer_depth_masked - - #--------------------------------------------------------------------------- - # END RASTER LOOP - return (image_buff_subpx,depth_buff_subpx) - - @staticmethod - def raster_frame(cam_ind: int, - frame_ind: int, - field_ind: int, - cam_data: CameraData, - meshes: list[RenderMesh], - opts: RasterOpts, - save_path: Path | None - ) -> np.ndarray | None: - - depth_buff_subpx = 1e5*cam_data.image_dist*np.ones(cam_data.sub_samp*cam_data.pixels_num).T - image_buff_subpx = np.full(cam_data.sub_samp*cam_data.pixels_num,0.0).T - - for mm in meshes: - # coords_raster.shape=(num_coords,coord[x,y,z,w]) - # connect_in_frame.shape=(num_elems_in_scene,nodes_per_elem) - # elem_bound_box_inds.shape=(num_elems_in_scene,4[x_min,x_max,y_min,y_max]) - # elem_areas.shape=(num_elems,) - (coords_raster, - connect_in_frame, - elem_bound_box_inds, - elem_areas) = RasterNP.setup_frame( - cam_data, - mm, - frame_ind, - ) - - # NOTE: the z coord has already been inverted in setup so we multiply here - render_field_div_z = (mm.fields_render[:,frame_ind,field_ind] - *coords_raster[:,2]) - - # image_buffer.shape=(num_px_y,num_px_x) - # depth_buffer.shape=(num_px_y,num_px_x) - (image_buff_subpx, - depth_buff_subpx) = RasterNP.raster_one_mesh( - connect_in_frame, - coords_raster, - elem_bound_box_inds, - elem_areas, - render_field_div_z, - cam_data.sub_samp, - image_buff_subpx, - depth_buff_subpx - ) - - - # TODO: make this configurable - image_buff_subpx[depth_buff_subpx > 1000*cam_data.image_dist] = np.nan - depth_buff_subpx[depth_buff_subpx > 1000*cam_data.image_dist] = np.nan - - # Average buffers - (image_buff_avg, - depth_buff_avg) = RasterNP.average_buffers(cam_data, - image_buff_subpx, - depth_buff_subpx) - - if save_path is None: - return image_buff_avg - - save_name = ImageTools.get_save_name(cam_ind,frame_ind,field_ind) - image_save_file = save_path/save_name - save_raster(image_save_file,image_buff_avg,depth_buff_avg,opts) - return None - - - - @staticmethod - def raster_scene(scene: RenderScene, - opts: RasterOpts, - save_path: Path | None = None, - ) -> list[np.ndarray] | None: - - # TODO: we assume the number of frames and fields is the same per camera - # Fix this - frames_num = scene.meshes[0].fields_render.shape[1] - field_num = scene.meshes[0].fields_render.shape[2] - - (cam_inds, - frame_inds, - field_inds) = np.meshgrid(np.arange(0,len(scene.cameras)), - np.arange(0,frames_num), - np.arange(0,field_num)) - - cam_inds = cam_inds.flatten() - frame_inds = frame_inds.flatten() - field_inds = field_inds.flatten() - frames_total = cam_inds.shape[0] - - - if save_path is None: - images = [] - for cc in scene.cameras: - images.append(np.empty((cc.pixels_num[1], - cc.pixels_num[0], - frames_num, - field_num))) - else: - images = None - if not save_path.is_dir(): - save_path.mkdir() - - - if opts.parallel is None: - for ff in range(0,frames_total): - image = RasterNP.raster_frame( - cam_inds[ff], - frame_inds[ff], - field_inds[ff], - scene.cameras[cam_inds[ff]], - scene.meshes, - opts, - save_path, - ) - - if images is not None: - images[cam_inds[ff]][:,:,frame_inds[ff],field_inds[ff]] = image - - else: - with Pool(opts.parallel) as pool: - processes_with_id = [] - - for ff in range(0,frames_total): - args = (cam_inds[ff], - frame_inds[ff], - field_inds[ff], - scene.cameras[cam_inds[ff]], - scene.meshes, - opts, - save_path) - - process = pool.apply_async( - RasterNP.raster_frame, args=args - ) - processes_with_id.append({"process": process, - "camera": cam_inds[ff], - "frame": frame_inds[ff], - "field": field_inds[ff]}) - - for pp in processes_with_id: - image = pp["process"].get() - if images is not None: - images[cam_inds[ff]][:,:,pp["frame"],pp["field"]] = image - - if images is not None: - return images - - return None - - - -#------------------------------------------------------------------------------- -def edge_function(vert_a: np.ndarray, - vert_b: np.ndarray, - vert_c: np.ndarray) -> np.ndarray: - - return ((vert_c[0] - vert_a[0]) * (vert_b[1] - vert_a[1]) - - (vert_c[1] - vert_a[1]) * (vert_b[0] - vert_a[0])) - -def edge_function_slice(vert_a: np.ndarray, - vert_b: np.ndarray, - vert_c: np.ndarray) -> np.ndarray: - - return ((vert_c[:,0] - vert_a[:,0]) * (vert_b[:,1] - vert_a[:,1]) - - (vert_c[:,1] - vert_a[:,1]) * (vert_b[:,0] - vert_a[:,0])) -#------------------------------------------------------------------------------- diff --git a/src/pyvale/sensorsim/rasteropts.py b/src/pyvale/sensorsim/rasteropts.py deleted file mode 100644 index e7601d628..000000000 --- a/src/pyvale/sensorsim/rasteropts.py +++ /dev/null @@ -1,58 +0,0 @@ -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== -from pathlib import Path -from dataclasses import dataclass -import numpy as np -from pyvale.sensorsim.imagetools import EImageType, ImageTools - - -@dataclass(slots=True) -class RasterOpts: - - image_min_frac: float = 0.0 - image_max_frac: float = 1.0 - image_background_frac: float = 0.5 - image_bits: int = 16 - image_type: EImageType = EImageType.TIFF - - subsample: int = 2 - parallel: int = 4 - - force_static: bool = False - save_depth_array: bool = False - save_depth_image: EImageType | None = None - save_image_array: bool = False - - def __post_init__(self) -> None: - assert self.image_bits > 0, "Image bits must be greater than 0." - assert self.subsample > 0, "Subsampling must be larger than 0." - assert self.parallel > 0, "Number of parallel renders must be larger than 0" - -def save_raster(save_file: Path, - image_buff: np.ndarray, - depth_buff: np.ndarray, - opts: RasterOpts) -> None: - - ImageTools.scale_digitise_save(save_file, - image_buff, - opts.image_type, - opts.image_bits, - opts.image_min_frac, - opts.image_max_frac, - opts.image_background_frac) - - if opts.save_image_array: - np.save(save_file.with_suffix(".npy"),image_buff) - - if opts.save_depth_image is not None: - depth_path = save_file.with_stem(f"{save_file.stem}_depth") - ImageTools.scale_digitise_save(depth_path, - depth_buff, - opts.save_depth_image) - - if opts.save_depth_array: - depth_path = save_file.with_stem(f"{save_file.stem}_depth") - np.save(depth_path.with_suffix(".npy"),depth_buff) \ No newline at end of file diff --git a/src/pyvale/sensorsim/renderer.py b/src/pyvale/sensorsim/renderer.py deleted file mode 100644 index 07f123a7d..000000000 --- a/src/pyvale/sensorsim/renderer.py +++ /dev/null @@ -1,47 +0,0 @@ -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== -from abc import ABC, abstractmethod -from pathlib import Path -import numpy as np -from pyvale.sensorsim.renderscene import RenderScene - -# NOTE: This module is a feature under developement. - -class IRenderer(ABC): - @abstractmethod - def render(self, - scene: RenderScene, - cam_ind: int = 0, - frame_ind: int = 0, - field_ind: int = 0) -> np.ndarray: - pass - - @abstractmethod - def render_to_disk(self, - scene: RenderScene, - cam_ind: int = 0, - frame_ind: int = 0, - field_ind: int = 0, - save_path: Path | None = None, - ) -> None: - pass - - @abstractmethod - def render_all(self, scene: RenderScene) -> list[np.ndarray]: - pass - - @abstractmethod - def render_all_to_disk(self, - scene: RenderScene, - save_path: Path | None = None) -> None: - pass - - - - - - - diff --git a/src/pyvale/sensorsim/rendermesh.py b/src/pyvale/sensorsim/rendermesh.py deleted file mode 100644 index 9bdae3755..000000000 --- a/src/pyvale/sensorsim/rendermesh.py +++ /dev/null @@ -1,137 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -# ============================================================================== - -""" -NOTE: this module is a feature under developement. -""" - -import numpy as np -from scipy.spatial.transform import Rotation -from pyvale.dataio.simdata import SimData -from pyvale.sensorsim.fieldconverter import simdata_to_pyvista_interp -from pyvale.sensorsim.enums import EDim - -# TODO: -# - Store the render field keys and match them between meshes? - - -class RenderMesh: - __slots__ = ("coords","connectivity","fields_render","fields_disp", - "pos_world","rot_world","node_count","elem_count", - "nodes_per_elem","mesh_to_world_mat","world_to_mesh_mat") - - def __init__(self, - coords: np.ndarray, - connectivity: np.ndarray, - fields_render: np.ndarray, - fields_disp: np.ndarray | None = None, - pos_world: np.ndarray | None = None, - rot_world: Rotation | None = None) -> None: - - self.coords = coords - self.connectivity = connectivity - self.fields_render = fields_render - self.fields_disp = fields_disp - - self.node_count = self.coords.shape[0] - self.elem_count = self.connectivity.shape[0] - self.nodes_per_elem = self.connectivity.shape[1] - - if pos_world is None: - self.pos_world = np.array((0.0,0.0,0.0),dtype=np.float64) - - if rot_world is None: - self.rot_world = Rotation.from_euler("zyx",(0.0,0.0,0.0),degrees=True) - - self.mesh_to_world_mat = np.zeros((4,4),dtype=np.float64) - self.world_to_mesh_mat = np.zeros((4,4),dtype=np.float64) - self._build_transform_mats() - - def _build_transform_mats(self) -> None: - self.mesh_to_world_mat = np.zeros((4,4)) - self.mesh_to_world_mat[0:3,0:3] = self.rot_world.as_matrix() - self.mesh_to_world_mat[-1,-1] = 1.0 - self.mesh_to_world_mat[0:3,-1] = self.pos_world - self.world_to_mesh_mat = np.linalg.inv(self.mesh_to_world_mat) - - def set_pos(self, pos_world: np.ndarray) -> None: - self.pos_world = pos_world - self._build_transform_mats() - - def set_rot(self, rot_world: Rotation) -> None: - self.rot_world = rot_world - self._build_transform_mats() - - - -def create_render_mesh(sim_data: SimData, - field_render_keys: tuple[str,...], - sim_spat_dim: EDim, - field_disp_keys: tuple[str,...] | None = None, - pos_world: np.ndarray | None = None, - rot_world: Rotation | None = None - ) -> RenderMesh: - - extract_keys = field_render_keys - if field_disp_keys is not None: - extract_keys = field_render_keys+field_disp_keys - - pv_grid = simdata_to_pyvista_interp(sim_data, - extract_keys, - spatial_dims=sim_spat_dim) - - pv_surf = pv_grid.extract_surface(algorithm='dataset_surface') - faces = np.array(pv_surf.faces) - - first_elem_nodes_per_face = faces[0] - nodes_per_face_vec = faces[0::(first_elem_nodes_per_face+1)] - - # TODO: CHECKS - # - Number of displacement keys match the spat_dim parameter - assert np.all(nodes_per_face_vec == first_elem_nodes_per_face), \ - "Not all elements in the simdata object have the same number of nodes per element" - - nodes_per_face = first_elem_nodes_per_face - num_faces = int(faces.shape[0] / (nodes_per_face+1)) - - # Reshape the faces table and slice off the first column which is just the - # number of nodes per element and should be the same for all elements - connectivity = np.reshape(faces,(num_faces,nodes_per_face+1)) - # shape=(num_elems,nodes_per_elem), C format - connectivity = np.ascontiguousarray(connectivity[:,1:],dtype=np.uintp) - - # shape=(num_nodes,3), C format - coords_world = np.array(pv_surf.points) - - # Add w coord=1, shape=(num_nodes,3+1) - coords_world= np.hstack((coords_world,np.ones([coords_world.shape[0],1]))) - - # shape=(num_nodes,num_time_steps,num_components) - field_render_shape = np.array(pv_surf[field_render_keys[0]]).shape - fields_render_by_node = np.zeros(field_render_shape+(len(field_render_keys),), - dtype=np.float64) - for ii,cc in enumerate(field_render_keys): - fields_render_by_node[:,:,ii] = np.ascontiguousarray( - np.array(pv_surf[cc])) - - - field_disp_by_node = None - if field_disp_keys is not None: - field_disp_shape = np.array(pv_surf[field_disp_keys[0]]).shape - # shape=(num_nodes,num_time_steps,num_components) - field_disp_by_node = np.zeros(field_disp_shape+(len(field_disp_keys),), - dtype=np.float64) - for ii,cc in enumerate(field_disp_keys): - field_disp_by_node[:,:,ii] = np.ascontiguousarray( - np.array(pv_surf[cc])) - - return RenderMesh(coords=coords_world, - connectivity=connectivity, - fields_render=fields_render_by_node, - fields_disp=field_disp_by_node, - pos_world=pos_world, - rot_world=rot_world) - diff --git a/src/pyvale/sensorsim/renderscene.py b/src/pyvale/sensorsim/renderscene.py deleted file mode 100644 index 5e6217d98..000000000 --- a/src/pyvale/sensorsim/renderscene.py +++ /dev/null @@ -1,51 +0,0 @@ - -#=============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2025 The Computer Aided Validation Team -#=============================================================================== -import numpy as np -from pyvale.sensorsim.cameradata import CameraData -from pyvale.sensorsim.rendermesh import RenderMesh - -#=============================================================================== -# TODO -# - How do we match render fields between meshes? -# - How do we check displacement fields are the same between meshes? -# - Eventually this will need to take render times and do the field interpolations -# - Check all render meshes to see if any are deformable - - -class RenderScene: - __slots__ = ("cameras","meshes") - - def __init__(self, - cameras: list[CameraData] | None = None, - meshes: list[RenderMesh] | None = None, - ) -> None: - if cameras is None: - self.cameras = [] - else: - self.cameras = cameras - - if meshes is None: - self.meshes = [] - else: - self.meshes = meshes - - def is_deformable(self) -> bool: - for mm in self.meshes: - if mm.fields_disp is not None: - return True - - return False - -def get_all_coords_world(meshes: list[RenderMesh]) -> np.ndarray: - coords_all = [] - for mm in meshes: - coords_all.append(np.matmul(mm.coords,mm.mesh_to_world_mat.T)) - - return np.vstack(coords_all) - - - diff --git a/src/pyvale/sensorsim/sensordescriptor.py b/src/pyvale/sensorsim/sensordescriptor.py index 3f5b83c94..69b5a6911 100644 --- a/src/pyvale/sensorsim/sensordescriptor.py +++ b/src/pyvale/sensorsim/sensordescriptor.py @@ -37,7 +37,7 @@ class SensorDescriptor: """ symbol: str = r"m" - """Symbol for describing the field the sensor measures. For example 'T' for + r"""Symbol for describing the field the sensor measures. For example 'T' for temperature of r'\epsilon' for strain. Latex symbols can be used with a raw string. """ diff --git a/src/pyvale/sensorsim/simtools.py b/src/pyvale/sensorsim/simtools.py index 6e037aff2..67f9c072c 100644 --- a/src/pyvale/sensorsim/simtools.py +++ b/src/pyvale/sensorsim/simtools.py @@ -13,7 +13,7 @@ import numpy as np from pyvale.dataio.simdata import SimData -from pyvale.sensorsim.rendermesh import RenderMesh +from pyvale.render.mesh import Mesh3D from pyvale.sensorsim.exceptions import Collapse2Dto3DError @@ -147,8 +147,10 @@ def centre_mesh_nodes(nodes: np.ndarray, spat_dim: int) -> np.ndarray: return centred -def get_deformed_nodes(timestep: int, - render_mesh: RenderMesh) -> np.ndarray | None: +def get_deformed_nodes( + timestep: int, + render_mesh: Mesh3D, +) -> np.ndarray | None: """A method to obtain the deformed locations of all the nodes at a given timestep. @@ -156,8 +158,8 @@ def get_deformed_nodes(timestep: int, ---------- timestep : int The timestep at which to find the deformed nodes. - render_mesh: RenderMeshData - A dataclass containing the skinned mesh and simulation results. + render_mesh: render.Mesh3D + A common render mesh with optional frame-major displacements. Returns ------- @@ -165,15 +167,10 @@ def get_deformed_nodes(timestep: int, An array containing the deformed values of all the components at each node location. Returns None if there are no deformation values. """ - if render_mesh.fields_disp is None: + if render_mesh.displacements is None: return None - added_disp = render_mesh.fields_disp[:, timestep] - if added_disp.shape[1] == 2: - added_disp = np.hstack((added_disp,np.zeros([added_disp.shape[0],1]))) - coords = np.delete(render_mesh.coords, 3, axis=1) - deformed_nodes = coords + added_disp - return deformed_nodes + return render_mesh.coords + render_mesh.displacements[timestep] def scale_length_units(scale: float, @@ -296,6 +293,3 @@ def is_sim_2D(coords_3d: np.ndarray) -> bool: return True return False - - - diff --git a/src/pyvale/sensorsim/visualopts.py b/src/pyvale/sensorsim/visualopts.py index 44b5c72e9..a143a441c 100644 --- a/src/pyvale/sensorsim/visualopts.py +++ b/src/pyvale/sensorsim/visualopts.py @@ -169,7 +169,7 @@ def __post_init__(self) -> None: @dataclass(slots=True) class TraceOptsSensor: - """Dataclass for controlling the appearance of sensor trace plots including + r"""Dataclass for controlling the appearance of sensor trace plots including axis labels, line styles and time over which to plot the sensor traces. Note that latex symbols can be used in label strings by using a python raw string . For example: r"strain, $\epsilon$ [-]". diff --git a/src/pyvale/sensorsim/visualsimplotter.py b/src/pyvale/sensorsim/visualsimplotter.py index c085e3707..cd81088dc 100644 --- a/src/pyvale/sensorsim/visualsimplotter.py +++ b/src/pyvale/sensorsim/visualsimplotter.py @@ -9,6 +9,7 @@ import pyvista as pv import pyvale.mooseherder as mh +import pyvale.dataio as io from pyvale.sensorsim.sensorspoint import SensorsPoint from pyvale.sensorsim.fieldconverter import simdata_to_pyvista_vis diff --git a/src/pyvale/valid/validation.py b/src/pyvale/valid/validation.py index aa710c002..2c7aff329 100644 --- a/src/pyvale/valid/validation.py +++ b/src/pyvale/valid/validation.py @@ -64,9 +64,8 @@ def extract_val_data_by_key( # Allocate a numpy array based on how many sensors we want to extract # and analyse - - for ss in iter_list: - + + #TODO: extract the val_points for each sensor list here. def extract_val_data_by_slice( exp_data: ExpData, diff --git a/src/pyvale/valid/valmetrics.py b/src/pyvale/valid/valmetrics.py index 535060bb4..b039aeb22 100644 --- a/src/pyvale/valid/valmetrics.py +++ b/src/pyvale/valid/valmetrics.py @@ -1,10 +1,8 @@ -''' -================================================================================ -pyvale: the python validation engine -License: MIT -Copyright (C) 2024 The Computer Aided Validation Team -================================================================================ -''' +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2024 The Computer Aided Validation Team +# ============================================================================== from typing import Any from dataclasses import dataclass from pathlib import Path @@ -99,8 +97,8 @@ def load_exp_data(data_path: Path, csv_files.pop(0) if load_opts.threads_num is not None: - assert load_opts.threads_num > 0, ("Number of threads must be greater - + "than 0.") + assert load_opts.threads_num > 0, ( + "Number of threads must be greater than 0.") with Pool(load_opts.threads_num) as pool: processes_with_id = [] diff --git a/src/pyvale/verif/pointsensmech.py b/src/pyvale/verif/pointsensmech.py index 70c8c2149..4fcdf405c 100644 --- a/src/pyvale/verif/pointsensmech.py +++ b/src/pyvale/verif/pointsensmech.py @@ -9,7 +9,7 @@ import pyvale.dataio as io import pyvale.verif.pointsens as pointsens import pyvale.verif.pointsensconst as pointsensconst -import pyvale.dataset as dataset +import pyvale.data as dataset """ DEVELOPER VERIFICATION MODULE diff --git a/src/pyvale/verif/pointsensmultiphys.py b/src/pyvale/verif/pointsensmultiphys.py index da8da5aa6..80927b34a 100644 --- a/src/pyvale/verif/pointsensmultiphys.py +++ b/src/pyvale/verif/pointsensmultiphys.py @@ -6,6 +6,7 @@ from pathlib import Path import copy import numpy as np +import pyvale.dataio as io import pyvale.mooseherder as mh import pyvale.sensorsim as sens import pyvale.verif.pointsens as pointsens @@ -13,7 +14,7 @@ import pyvale.verif.pointsensvector as pointsensvector import pyvale.verif.pointsenstensor as pointsenstensor import pyvale.verif.pointsensmech as pointsensmech -import pyvale.dataset as dataset +import pyvale.data as dataset def load_simdata_list(data_paths: list[Path], diff --git a/src/pyvale/verif/pointsensscalar.py b/src/pyvale/verif/pointsensscalar.py index 3d82c380f..df0fbc8c8 100644 --- a/src/pyvale/verif/pointsensscalar.py +++ b/src/pyvale/verif/pointsensscalar.py @@ -12,7 +12,7 @@ import pyvale.verif.pointsens as pointsens import pyvale.verif.pointsensconst as pointsensconst import pyvale.verif.analyticsimdatafactory as asd -import pyvale.dataset as dataset +import pyvale.data as dataset """ DEVELOPER VERIFICATION MODULE diff --git a/src/pyvale/verif/renderconformance.py b/src/pyvale/verif/renderconformance.py new file mode 100644 index 000000000..4a00231b4 --- /dev/null +++ b/src/pyvale/verif/renderconformance.py @@ -0,0 +1,247 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Shared small-image conformance scenes for every render backend.""" + +from dataclasses import dataclass +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.render as render +import riley + + +IMAGE_SIZE = 32 +CASE_NAMES = ("tri3_deforming", "tri3_shared_edge", "tri3_clipping") + + +@dataclass(frozen=True, slots=True) +class RenderConformanceCase: + """Geometry and two-frame in-plane motion for one conformance case.""" + + name: str + coords: np.ndarray + connectivity: np.ndarray + displacements: np.ndarray + + +def conformance_cases() -> tuple[RenderConformanceCase, ...]: + """Return the three canonical 32-pixel render conformance cases.""" + return ( + _translation_case(), + _shared_edge_case(), + _clipping_case(), + ) + + +def render_backend_case( + backend: str, + case: RenderConformanceCase, + output_dir: Path, +) -> np.ndarray: + """Render one canonical case through the requested backend.""" + renderers = { + "blender": _render_blender, + "feebee": _render_feebee, + "riley": _render_riley, + } + return renderers[backend](case, output_dir) + + +def feebee_scene(case: RenderConformanceCase) -> render.Scene3D: + """Build a case for validation before the Feebee backend lands.""" + mesh = _common_mesh( + case, + render.FeebeeColourShader( + np.full((2, len(case.connectivity), 3), 0.65), + ), + ) + return render.Scene3D([mesh], [_camera_3d()]) + + +def preview_range(backend: str) -> tuple[float, float]: + """Return the fixed intensity range for an 8-bit preview.""" + if backend == "blender": + return 0.0, 255.0 + return 0.0, 1.0 + + +def _translation_case() -> RenderConformanceCase: + coords = np.array( + ( + (-1.05, -0.85), + (0.85, -0.65), + (-0.35, 1.05), + ) + ) + displacement = np.tile((0.30, 0.20), (3, 1)) + return _case("tri3_deforming", coords, ((0, 1, 2),), displacement) + + +def _shared_edge_case() -> RenderConformanceCase: + coords = np.array( + ( + (-0.95, -0.95), + (0.95, -0.95), + (0.95, 0.95), + (-0.95, 0.95), + ) + ) + displacement = np.column_stack( + ( + 0.18 + 0.12 * coords[:, 0], + 0.10 - 0.08 * coords[:, 0], + ) + ) + return _case( + "tri3_shared_edge", + coords, + ((0, 1, 2), (0, 2, 3)), + displacement, + ) + + +def _clipping_case() -> RenderConformanceCase: + coords = np.array( + ( + (0.35, -0.75), + (1.35, -0.55), + (0.80, 0.75), + ) + ) + displacement = np.tile((0.55, 0.45), (3, 1)) + return _case("tri3_clipping", coords, ((0, 1, 2),), displacement) + + +def _case( + name: str, + coords: np.ndarray, + connectivity: tuple[tuple[int, ...], ...], + displacement: np.ndarray, +) -> RenderConformanceCase: + displacements = np.zeros((2, len(coords), 2), dtype=np.float64) + displacements[1] = displacement + return RenderConformanceCase( + name, + np.ascontiguousarray(coords, dtype=np.float64), + np.asarray(connectivity, dtype=np.intp), + displacements, + ) + + +def _camera_3d() -> render.Camera: + return render.Camera( + pixels_num=np.array((IMAGE_SIZE, IMAGE_SIZE)), + pixels_size=np.array((0.1, 0.1)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=2.0, + ) + + +def _common_mesh(case: RenderConformanceCase, shader: object) -> render.Mesh3D: + return render.Mesh3D( + render.EElementType.TRI3, + np.pad(case.coords, ((0, 0), (0, 1))), + case.connectivity, + shader, + np.pad(case.displacements, ((0, 0), (0, 0), (0, 1))), + ) + + +def _render_blender( + case: RenderConformanceCase, + output_dir: Path, +) -> np.ndarray: + texture = np.linspace(80, 220, 64, dtype=np.uint8).reshape((8, 8)) + shader = render.BlenderImageShader(texture, 0.4) + mesh = _common_mesh(case, shader) + light = render.Light( + render.ELightType.POINT, + np.array((-0.8, 0.7, 2.5)), + np.array((0.0, 0.0, -1.0)), + 1.0, + ) + config = render.BlenderConfig( + output_dir, + device=render.EBlenderDevice.CPU, + samples=32, + max_bounces=2, + threads=1, + render_deformed=True, + seed=0, + use_denoising=False, + use_adaptive_sampling=False, + ) + result = render.Blender(config).render( + render.Scene3D([mesh], [_camera_3d()], [light]), + ) + assert result.images is not None + return result.images + + +def _render_feebee( + case: RenderConformanceCase, + output_dir: Path, +) -> np.ndarray: + del output_dir + mesh = _common_mesh( + case, + render.FeebeeColourShader( + np.full((2, len(case.connectivity), 3), 0.65), + ), + ) + result = render.Feebee().render(render.Scene3D([mesh], [_camera_3d()])) + assert result.images is not None + return result.images + + +def _render_riley( + case: RenderConformanceCase, + output_dir: Path, +) -> np.ndarray: + del output_dir + params = riley.FuncShaderParams( + linear_coeffs=(0.55, 0.12, -0.08), + ) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=np.pad(case.coords, ((0, 0), (0, 1))), + connectivity=case.connectivity, + displacements=np.pad( + case.displacements, + ((0, 0), (0, 0), (0, 1)), + ), + shader=render.RileyFunctionShader( + builtin=riley.FuncShaderBuiltin.linear, + coord_mode=riley.FuncCoordMode.world_reference, + parameters=params, + ), + ) + config = riley.create_raster_config( + 2, + total_threads=1, + save_strategy=riley.SaveStrategy.memory, + ) + config.background_value = 0.15 + result = render.Riley(config).render( + render.Scene3D([mesh], [_camera_3d()]), + ) + assert result.images is not None + return result.images + + +__all__ = [ + "CASE_NAMES", + "IMAGE_SIZE", + "RenderConformanceCase", + "conformance_cases", + "feebee_scene", + "preview_range", + "render_backend_case", +] diff --git a/src/pyvale/verif/renderverif.py b/src/pyvale/verif/renderverif.py new file mode 100644 index 000000000..76082ffb1 --- /dev/null +++ b/src/pyvale/verif/renderverif.py @@ -0,0 +1,218 @@ +#=============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +#=============================================================================== + +""" +DEVELOPER VERIFICATION MODULE +-------------------------------------------------------------------------------- +This module contains developer utility functions used for verification testing +of the render toolbox in pyvale. + +Specifically, this module contains hard-coded verification scenes, packaged- +case loaders shared between the gold generation scripts and the render tests, +and image-regression assertions. +""" + +from pathlib import Path +import re + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.dataio as io +import pyvale.mooseherder as mooseherder +import pyvale.render as render +import pyvale.sensorsim as sensorsim +import riley + + +def assert_render_allclose( + actual: np.ndarray, + reference: np.ndarray, + case_ident: str, + *, + rtol: float = 1.0e-9, + atol: float = 1.0e-9, +) -> None: + """Assert image equality and save useful diagnostics when it fails. + + Parameters + ---------- + actual, reference : numpy.ndarray + Rendered and trusted reference image arrays with matching shapes. + case_ident : str + Stable case identifier used for the failure output directory. + rtol, atol : float, optional + Relative and absolute tolerances passed to :func:`numpy.allclose`. + + Raises + ------ + AssertionError + If arrays differ. Raw NumPy diagnostics are saved to + ``render-fails/`` before the error is raised. Scaled TIFF + images are also saved when Pillow is installed. + """ + if np.allclose(actual, reference, rtol=rtol, atol=atol): + return + + directory = Path("render-fails") / _safe_case_ident(case_ident) + directory.mkdir(parents=True, exist_ok=True) + + difference = np.asarray(actual, dtype=np.float64) - np.asarray( + reference, dtype=np.float64, + ) + np.save(directory / "render.npy", actual) + np.save(directory / "reference.npy", reference) + np.save(directory / "difference.npy", difference) + + if _pil_image() is not None: + actual_image, reference_image, difference_image = _select_images( + actual, reference, difference, + ) + lower = min(np.nanmin(actual_image), np.nanmin(reference_image)) + upper = max(np.nanmax(actual_image), np.nanmax(reference_image)) + _save_tiff(directory / "render.tiff", actual_image, lower, upper) + _save_tiff(directory / "reference.tiff", reference_image, lower, upper) + _save_tiff( + directory / "difference.tiff", difference_image, + float(np.nanmin(difference_image)), float(np.nanmax(difference_image)), + ) + + maximum = float(np.nanmax(np.abs(difference))) + raise AssertionError( + f"Render mismatch for {case_ident}; maximum absolute difference " + f"is {maximum:.6e}. Diagnostics: {directory}", + ) + + +def _pil_image() -> object | None: + """Return the Pillow Image class or None when Pillow is not installed.""" + try: + from PIL import Image + except ImportError: + return None + return Image + + +def _safe_case_ident(case_ident: str) -> str: + """Return a portable directory name from a descriptive case identifier.""" + return re.sub(r"[^A-Za-z0-9_.-]+", "_", case_ident).strip("_") + + +def _select_images( + actual: np.ndarray, + reference: np.ndarray, + difference: np.ndarray, +) -> tuple[np.ndarray, np.ndarray, np.ndarray]: + """Select the two-dimensional plane containing the largest difference.""" + if difference.ndim == 2: + return actual, reference, difference + if difference.ndim < 2: + return actual.reshape(1, -1), reference.reshape(1, -1), difference.reshape(1, -1) + + image_shape = difference.shape[-2:] + difference_planes = difference.reshape((-1, *image_shape)) + plane_index = int(np.argmax(np.max(np.abs(difference_planes), axis=(1, 2)))) + return ( + actual.reshape((-1, *image_shape))[plane_index], + reference.reshape((-1, *image_shape))[plane_index], + difference_planes[plane_index], + ) + + +def _save_tiff(path: Path, image: np.ndarray, lower: float, upper: float) -> None: + """Save one array as a full-range unsigned 8-bit diagnostic TIFF.""" + image_class = _pil_image() + if image_class is None: + return + if not np.isfinite(lower) or not np.isfinite(upper) or upper <= lower: + scaled = np.zeros(image.shape, dtype=np.uint8) + else: + scaled = np.clip((image - lower) / (upper - lower), 0.0, 1.0) + scaled = np.rint(255.0 * scaled).astype(np.uint8) + image_class.fromarray(scaled).save(path) + + +def render_triangle(output_dir: Path) -> np.ndarray: + """Render the deterministic common-API Blender triangle scene.""" + mesh = render.Mesh3D( + render.EElementType.TRI3, + np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), + (0.0, 1.0, 0.0))), + np.array(((0, 1, 2),)), object(), + ) + camera = render.Camera( + pixels_num=np.array((32, 32)), + pixels_size=np.array((0.02, 0.02)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + result = render.Blender(render.BlenderConfig(output_dir, samples=1)).render( + render.Scene3D([mesh], [camera]), + ) + assert result.images is not None + return result.images + + +def riley_memory_config() -> riley.RasterConfig: + """Return a single-frame Riley raster configuration kept in memory.""" + return riley.create_raster_config( + 1, save_strategy=riley.SaveStrategy.memory, + ) + + +def riley_rabbit_scene() -> render.Scene3D: + """Build the committed multi-mesh rabbit regression scene. + + Returns + ------- + render.Scene3D + The packaged TRI3 rabbit meshes viewed by a camera filled from + their combined extent. + """ + meshes = dataset.riley_rabbit_meshes() + coords = np.concatenate([mesh.coords for mesh in meshes]) + pixels_num = np.array((320, 160)) + pixels_size = np.array((5.3e-6, 5.3e-6)) + focal_length = 50.0e-3 + rotation = Rotation.identity() + position = render.cam_pos_frame_points( + coords, + pixels_num, + pixels_size, + focal_length, + rotation, + fov_scale=1.1, + ) + camera = render.Camera( + pixels_num=pixels_num, + pixels_size=pixels_size, + pos_world=np.asarray(position), + rot_world=rotation, + roi_cent_world=np.mean(coords, axis=0), + focal_length=focal_length, + ) + return render.Scene3D(meshes, [camera]) + + +def scaled_mechanical_2d() -> io.SimData: + """Load the mechanical 2D case scaled to millimetres for Blender scenes.""" + sim_data = mooseherder.ExodusLoader( + dataset.mechanical_2d_path(), + ).load_all_sim_data() + sensorsim.scale_length_units(1000.0, sim_data, ("disp_x", "disp_y")) + return sim_data + + +__all__ = [ + "assert_render_allclose", + "render_triangle", + "riley_memory_config", + "riley_rabbit_scene", + "scaled_mechanical_2d", +] diff --git a/tests/blender/2D_gold/bounces_hundred.npy b/tests/blender/2D_gold/bounces_hundred.npy index 0a09d3d98..9f69e0b55 100644 Binary files a/tests/blender/2D_gold/bounces_hundred.npy and b/tests/blender/2D_gold/bounces_hundred.npy differ diff --git a/tests/blender/2D_gold/bounces_two.npy b/tests/blender/2D_gold/bounces_two.npy index 0a09d3d98..9f69e0b55 100644 Binary files a/tests/blender/2D_gold/bounces_two.npy and b/tests/blender/2D_gold/bounces_two.npy differ diff --git a/tests/blender/2D_gold/cam_from_resolution.npy b/tests/blender/2D_gold/cam_from_resolution.npy index 03f2787d6..2f1132af1 100644 Binary files a/tests/blender/2D_gold/cam_from_resolution.npy and b/tests/blender/2D_gold/cam_from_resolution.npy differ diff --git a/tests/blender/2D_gold/cycles_engine.npy b/tests/blender/2D_gold/cycles_engine.npy index 0a09d3d98..9f69e0b55 100644 Binary files a/tests/blender/2D_gold/cycles_engine.npy and b/tests/blender/2D_gold/cycles_engine.npy differ diff --git a/tests/blender/2D_gold/deformed_images.npy b/tests/blender/2D_gold/deformed_images.npy index 08ecde69b..83ebf4bb4 100644 Binary files a/tests/blender/2D_gold/deformed_images.npy and b/tests/blender/2D_gold/deformed_images.npy differ diff --git a/tests/blender/2D_gold/eevee_engine.npy b/tests/blender/2D_gold/eevee_engine.npy index 05b9c70ac..e90a50734 100644 Binary files a/tests/blender/2D_gold/eevee_engine.npy and b/tests/blender/2D_gold/eevee_engine.npy differ diff --git a/tests/blender/2D_gold/half_watt_lighting.npy b/tests/blender/2D_gold/half_watt_lighting.npy index f090fd058..4f687cef5 100644 Binary files a/tests/blender/2D_gold/half_watt_lighting.npy and b/tests/blender/2D_gold/half_watt_lighting.npy differ diff --git a/tests/blender/2D_gold/horizontal_cam.npy b/tests/blender/2D_gold/horizontal_cam.npy index 787593033..cf4de4874 100644 Binary files a/tests/blender/2D_gold/horizontal_cam.npy and b/tests/blender/2D_gold/horizontal_cam.npy differ diff --git a/tests/blender/2D_gold/samples_four.npy b/tests/blender/2D_gold/samples_four.npy index 25b03dccf..bf65d16e3 100644 Binary files a/tests/blender/2D_gold/samples_four.npy and b/tests/blender/2D_gold/samples_four.npy differ diff --git a/tests/blender/2D_gold/samples_twelve.npy b/tests/blender/2D_gold/samples_twelve.npy index b3ce9f482..c510050c9 100644 Binary files a/tests/blender/2D_gold/samples_twelve.npy and b/tests/blender/2D_gold/samples_twelve.npy differ diff --git a/tests/blender/2D_gold/three_watt_lighting.npy b/tests/blender/2D_gold/three_watt_lighting.npy index 34cb6e31f..7110e693a 100644 Binary files a/tests/blender/2D_gold/three_watt_lighting.npy and b/tests/blender/2D_gold/three_watt_lighting.npy differ diff --git a/tests/blender/2D_gold/vertical_cam.npy b/tests/blender/2D_gold/vertical_cam.npy index d98734fad..80d1b49e7 100644 Binary files a/tests/blender/2D_gold/vertical_cam.npy and b/tests/blender/2D_gold/vertical_cam.npy differ diff --git a/tests/blender/test_blenderregression_2D.py b/tests/blender/test_blenderregression_2D.py deleted file mode 100644 index c8e174e68..000000000 --- a/tests/blender/test_blenderregression_2D.py +++ /dev/null @@ -1,401 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2026 The Computer Aided Validation Team -# ============================================================================== -from pathlib import Path -import numpy as np -import numpy.testing as npt -import pytest -from scipy.spatial.transform import Rotation - -import pyvale.blender as blender -import pyvale.dataset as dataset -import pyvale.mooseherder as mh -import pyvale.sensorsim as sens - -GOLD_DIR = Path(__file__).parent / "2D_gold" - - -@pytest.fixture -def sample_scene(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - cam_data = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - camera = scene.add_camera(cam_data) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, - ) - light = scene.add_light(light_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - return render_mesh, part, cam_data, scene - - -@pytest.fixture -def sample_scene_no_light(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - cam_data = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - camera = scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - return cam_data, scene - - -@pytest.fixture -def sample_scene_no_cam(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=2, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, - ) - light = scene.add_light(light_data) - - return part, scene - - -# ------------------------------------------------------------------------------ -# Gold Fixtures loading from 2D_gold directory -# ------------------------------------------------------------------------------ -@pytest.fixture -def half_watt_lighting(): - return np.load(GOLD_DIR / "half_watt_lighting.npy") - - -@pytest.fixture -def three_watt_lighting(): - return np.load(GOLD_DIR / "three_watt_lighting.npy") - - -@pytest.fixture -def vertical_cam(): - return np.load(GOLD_DIR / "vertical_cam.npy") - - -@pytest.fixture -def horizontal_cam(): - return np.load(GOLD_DIR / "horizontal_cam.npy") - - -@pytest.fixture -def cam_from_resolution(): - return np.load(GOLD_DIR / "cam_from_resolution.npy") - - -@pytest.fixture -def samples_four(): - return np.load(GOLD_DIR / "samples_four.npy") - - -@pytest.fixture -def samples_twelve(): - return np.load(GOLD_DIR / "samples_twelve.npy") - - -@pytest.fixture -def bounces_two(): - return np.load(GOLD_DIR / "bounces_two.npy") - - -@pytest.fixture -def bounces_hundred(): - return np.load(GOLD_DIR / "bounces_hundred.npy") - - -@pytest.fixture -def cycles_engine(): - return np.load(GOLD_DIR / "cycles_engine.npy") - - -@pytest.fixture -def eevee_engine(): - return np.load(GOLD_DIR / "eevee_engine.npy") - - -@pytest.fixture -def deformed_images(): - return np.load(GOLD_DIR / "deformed_images.npy") - - -# ------------------------------------------------------------------------------ -# Regression test suites -# ------------------------------------------------------------------------------ -@pytest.mark.parametrize( - "energy, output", - [ - pytest.param(0.5, "half_watt_lighting", id="Normal lighting - 0.5W"), - pytest.param(3, "three_watt_lighting", id="Normal lighting - 3W"), - ], -) -def test_lighting_energy( - energy, output, sample_scene_no_light, request, tmp_path -): - cam_data, scene = sample_scene_no_light - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=energy, - ) - light = scene.add_light(light_data) - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) - - -@pytest.mark.parametrize( - "pixels_num, output", - [ - pytest.param( - np.array([10, 20]), - "vertical_cam", - id="Vertical camera orientation", - ), - pytest.param( - np.array([20, 10]), - "horizontal_cam", - id="Horizontal camera orientation", - ), - ], -) -def test_camera_shape( - pixels_num, output, request, sample_scene_no_cam, tmp_path -): - part, scene = sample_scene_no_cam - cam_data = sens.CameraData( - pixels_num=pixels_num, - pixels_size=np.array([0.00345, 0.00345]), - pos_world=(0, 0, 500), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - camera = scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) - - -def test_camera_from_resolution( - sample_scene_no_cam, cam_from_resolution, tmp_path -): - part, scene = sample_scene_no_cam - pixels_num = np.array([20, 20]) - pixels_size = np.array([0.00345, 0.00345]) - working_dist = 500 - resolution = 0.1 - cam_data = sens.CameraTools.blender_camera_from_resolution( - pixels_num, pixels_size, working_dist, resolution - ) - cam = scene.add_camera(cam_data) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - - npt.assert_allclose(image_array, cam_from_resolution, atol=2, rtol=0) - - -def test_deformation(sample_scene, deformed_images, tmp_path): - (render_mesh, part, cam_data, scene) = sample_scene - render_data = blender.RenderData(cam_data=cam_data, base_dir=tmp_path) - image_arrays = scene.render_deformed_images( - render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=True, - ) - - npt.assert_allclose(image_arrays[:, :, 10], deformed_images, atol=2, rtol=0) - - -@pytest.mark.parametrize( - "samples, output", - [ - pytest.param(4, "samples_four", id="Normal sample number - 4"), - pytest.param(12, "samples_twelve", id="Normal sample number - 12"), - ], -) -def test_samples_happy(samples, output, request, sample_scene, tmp_path): - (_, _, cam_data, scene) = sample_scene - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, samples=samples - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) - - -def test_samples_unhappy(sample_scene, tmp_path): - samples = 2.5 - (_, _, cam_data, scene) = sample_scene - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, samples=samples - ) - with pytest.raises(TypeError): - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - - -@pytest.mark.parametrize( - "bounces, output", - [ - pytest.param(2, "bounces_two", id="Normal bounces number - 2"), - pytest.param(100, "bounces_hundred", id="Normal bounces number -100"), - ], -) -def test_max_bounces_happy(bounces, output, request, sample_scene, tmp_path): - (_, _, cam_data, scene) = sample_scene - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, max_bounces=bounces - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) - - -def test_max_bounces_unhappy(sample_scene, tmp_path): - bounces = 2.5 - (_, _, cam_data, scene) = sample_scene - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, max_bounces=bounces - ) - with pytest.raises(TypeError): - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - - -@pytest.mark.parametrize( - "engine, output", - [ - pytest.param( - blender.RenderEngine.CYCLES, - "cycles_engine", - id="Cycles render engine", - ), - pytest.param( - blender.RenderEngine.EEVEE, - "eevee_engine", - id="Eevee render engine", - ), - ], -) -def test_render_engine(engine, output, request, sample_scene, tmp_path): - (_, _, cam_data, scene) = sample_scene - if engine == blender.RenderEngine.EEVEE: - gpu_present = blender.Tools.check_for_GPU() - if gpu_present is False: - pytest.skip("Unsupported hardware for EEVEE") - - render_data = blender.RenderData( - cam_data=cam_data, base_dir=tmp_path, engine=engine - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) diff --git a/tests/blender/test_blenderregression_3D.py b/tests/blender/test_blenderregression_3D.py deleted file mode 100644 index 69dc32806..000000000 --- a/tests/blender/test_blenderregression_3D.py +++ /dev/null @@ -1,199 +0,0 @@ -# ============================================================================== -# pyvale: the python validation engine -# License: MIT -# Copyright (C) 2026 The Computer Aided Validation Team -# ============================================================================== -from pathlib import Path -import numpy as np -import numpy.testing as npt -import pytest -import yaml -from scipy.spatial.transform import Rotation - -import pyvale.blender as blender -import pyvale.dataset as dataset -import pyvale.mooseherder as mh -import pyvale.sensorsim as sens - -GOLD_DIR = Path(__file__).parent / "3D_gold" - - -@pytest.fixture -def sample_scene_no_cam(): - data_path = dataset.mechanical_2d_path() - sim_data = mh.ExodusLoader(data_path).load_all_sim_data() - disp_comps = ("disp_x", "disp_y") - sim_data = sens.scale_length_units(1000.0, sim_data, disp_comps) - render_mesh = sens.create_render_mesh( - sim_data, - ("disp_y", "disp_x"), - sim_spat_dim=sens.EDim.TWOD, - field_disp_keys=disp_comps, - ) - - scene = blender.Scene() - part = scene.add_part(render_mesh, sim_spat_dim=3) - light_data = blender.LightData( - type=blender.LightType.POINT, - pos_world=(0, 0, 400), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - energy=1, - ) - light = scene.add_light(light_data) - cam_data_0 = sens.CameraData( - pixels_num=np.array([20, 20]), - pixels_size=np.array([0.00345, 0.00345]), - pos_world=np.array([0, 0, 500]), - rot_world=Rotation.from_euler("xyz", [0, 0, 0]), - roi_cent_world=(0, 0, 0), - focal_length=15, - ) - material_data = blender.MaterialData() - speckle_path = dataset.dic_pattern_5mpx_path() - mm_px_resolution = sens.CameraTools.calculate_mm_px_resolution(cam_data_0) - scene.add_speckle( - part=part, - speckle_path=speckle_path, - mat_data=material_data, - mm_px_resolution=mm_px_resolution, - ) - return cam_data_0, part, render_mesh, scene - - -@pytest.fixture -def sample_stereo_scene(sample_scene_no_cam): - cam_data_0, part, render_mesh, scene = sample_scene_no_cam - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 - ) - cam0, cam1 = scene.add_stereo_system(stereo_system) - return (stereo_system, part, render_mesh, scene) - - -# ------------------------------------------------------------------------------ -# Gold Fixtures loading from 3D_gold directory -# ------------------------------------------------------------------------------ -@pytest.fixture -def stereo_symmetric(): - return np.load(GOLD_DIR / "stereo_symmetric.npy") - - -@pytest.fixture -def stereo_faceon(): - return np.load(GOLD_DIR / "stereo_faceon.npy") - - -@pytest.fixture -def deformed_images(): - return np.load(GOLD_DIR / "deformed_images.npy") - - -@pytest.fixture -def calib_dict(): - yaml_path = GOLD_DIR / "calib_dict.yaml" - with open(yaml_path, "r") as f: - return yaml.safe_load(f) - - -# ------------------------------------------------------------------------------ -# Regression test suites -# ------------------------------------------------------------------------------ -@pytest.mark.parametrize( - "placement, output", - [ - pytest.param( - "symmetric", "stereo_symmetric", id="Symmetric convenience function" - ), - pytest.param( - "faceon", "stereo_faceon", id="Face-on convenience function" - ), - ], -) -def test_stereo_convenience_cameras( - placement, output, request, sample_scene_no_cam, tmp_path -): - (cam_data_0, _, _, scene) = sample_scene_no_cam - if placement == "symmetric": - stereo_system = sens.CameraTools.symmetric_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 - ) - elif placement == "faceon": - stereo_system = sens.CameraTools.faceon_stereo_cameras( - cam_data_0=cam_data_0, stereo_angle=15.0 - ) - cam0, cam1 = scene.add_stereo_system(stereo_system) - render_data = blender.RenderData( - cam_data=(stereo_system.cam_data_0, stereo_system.cam_data_1), - base_dir=tmp_path, - ) - image_array = scene.render_single_image( - stage_image=True, render_data=render_data - ) - output = request.getfixturevalue(output) - - npt.assert_allclose(image_array, output, atol=2, rtol=0) - - -def test_stereo_deformation(sample_stereo_scene, deformed_images, tmp_path): - (stereo_system, part, render_mesh, scene) = sample_stereo_scene - render_data = blender.RenderData( - cam_data=(stereo_system.cam_data_0, stereo_system.cam_data_1), - base_dir=tmp_path, - ) - image_arrays = scene.render_deformed_images( - render_mesh=render_mesh, - sim_spat_dim=3, - render_data=render_data, - part=part, - stage_image=True, - ) - image_array = image_arrays[:, :, 120:] - npt.assert_allclose(image_array, deformed_images, atol=2, rtol=0) - - -def test_cal_images(): - calibration_data = blender.CalibrationData( - angle_lims=(-10, 10), - angle_step=5, - plunge_lims=(-5, 5), - plunge_step=5, - ) - number_cal_images = blender.Tools.number_calibration_images( - calibration_data - ) - - assert number_cal_images == 675 - - -def test_calib_file(tmp_path, sample_stereo_scene, calib_dict): - (stereo_system, _, _, _) = sample_stereo_scene - - stereo_system.save_calibration(base_dir=tmp_path) - - output = tmp_path / "calibration/calibration.yaml" - output_dict = yaml.safe_load(output.read_text()) - - assert calib_dict == output_dict - - -def test_cameras_from_calib(tmp_path, sample_stereo_scene): - (stereo_system, _, _, _) = sample_stereo_scene - stereo_system.save_calibration(base_dir=tmp_path) - - output = tmp_path / "calibration/calibration.yaml" - - params = yaml.safe_load(output.read_text()) - - camerastereo = sens.CameraStereo.from_calibration( - calib_path=output, - pos_world_0=np.array([0, 0, 500]), - rot_world_0=Rotation.from_euler("xyz", [0, 0, 0]), - focal_length=15.0, - ) - - npt.assert_array_almost_equal( - camerastereo.stereo_dist, stereo_system.stereo_dist - ) - assert camerastereo.stereo_rotation.approx_equal( - stereo_system.stereo_rotation - ) diff --git a/tests/data/test_dataset.py b/tests/data/test_dataset.py new file mode 100644 index 000000000..3ebcfadfd --- /dev/null +++ b/tests/data/test_dataset.py @@ -0,0 +1,21 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Tests for the consolidated packaged-data namespace.""" + +import pyvale.data as dataset + + +def test_dataset_accessors_resolve_consolidated_resources() -> None: + """Public accessors resolve assets below the single data package.""" + paths = ( + dataset.mechanical_2d_path(), + dataset.sim_case_input_file_path(17), + dataset.sim_case_gmsh_file_path(17), + dataset.dic_plate_with_hole_cam0_ref(), + dataset.dic_pattern_5mpx_path(), + dataset.cal_target(), + ) + assert all(path is not None and path.exists() for path in paths) diff --git a/tests/dataio/meshtools_test.py b/tests/dataio/meshtools_test.py index 63a115748..766549f27 100644 --- a/tests/dataio/meshtools_test.py +++ b/tests/dataio/meshtools_test.py @@ -8,8 +8,22 @@ import pytest import pyvale.dataio as io +import pyvale.dataio.meshconv as meshconv import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset + + +_SUPPORTED_CUBE_ELEMENTS = ( + dataset.EElemTest.TET4, + dataset.EElemTest.TET10, + dataset.EElemTest.HEX8, + dataset.EElemTest.HEX20, + dataset.EElemTest.HEX27, +) + + +def test_meshconv_adapter_exposes_riley_element_symmetries() -> None: + assert len(meshconv.ELEMENT_SYMMETRIES[meshconv.EElementType.HEX27]) == 24 def _quad_coords() -> np.ndarray: @@ -134,9 +148,98 @@ def test_check_mesh_convention_passes_for_canonical_quad() -> None: check = io.check_mesh_convention(mesh) - assert check.is_valid - assert check.failed_checks == tuple() - assert check.connectivity_failures["connect1"] == tuple() + assert check == {} + assert io.check_mesh_convention is meshconv.check_mesh_convention + + +def test_element_specs_are_reexported_from_riley_adapter() -> None: + assert io.ELEMENT_SPECS is meshconv.ELEMENT_SPECS + assert ( + io.ELEMENT_SPECS[io.EElementType.TRI6].surf_reverse_perm + == (0, 2, 1, 5, 4, 3) + ) + + with pytest.raises(TypeError): + io.ELEMENT_SPECS[io.EElementType.TRI3] = ( + io.ELEMENT_SPECS[io.EElementType.TRI3] + ) + + +def test_mesh_convention_is_reexported_and_applied_by_adapter() -> None: + coords = np.array( + ((0.0, 0.0, 0.0), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0)), + dtype=np.float64, + ) + convention = io.MeshConvention({ + io.EElementType.TRI3: (1, 2, 0), + }) + mesh = io.SimData( + num_spat_dims=2, + mesh_type=io.EMeshType.SURF, + coords=coords, + connect={"connect1": np.array(((2, 0, 1),), dtype=np.int64)}, + ) + + mesh_out = io.enforce_mesh_convention(mesh, convention) + + assert mesh_out.connect is not None + assert np.array_equal( + mesh_out.connect["connect1"], + np.array(((0, 1, 2),), dtype=np.int64), + ) + + +def test_sim_data_classifies_quad4_as_a_surface_mesh() -> None: + mesh = io.SimData( + coords=_quad_coords(), + connect={"connect1": np.array(((0, 1, 2, 3),), dtype=np.int64)}, + ) + + assert mesh.mesh_type is io.EMeshType.SURF + assert not io.is_volume_mesh(mesh) + + +def test_sim_data_classifies_curved_quad8_as_a_surface_mesh() -> None: + coords = np.array( + ( + (0.0, 0.0, 0.0), + (1.0, 0.0, 0.0), + (1.0, 1.0, 0.0), + (0.0, 1.0, 0.0), + (0.5, 0.02, 0.0), + (1.0, 0.5, 0.02), + (0.5, 0.98, 0.0), + (0.0, 0.5, -0.02), + ), + dtype=np.float64, + ) + mesh = io.SimData( + coords=coords, + connect={"connect1": np.arange(8, dtype=np.int64).reshape(1, -1)}, + ) + + assert mesh.mesh_type is io.EMeshType.SURF + assert not io.is_volume_mesh(mesh) + + +@pytest.mark.parametrize( + "element_type", + (dataset.EElemTest.TET4, dataset.EElemTest.HEX8), +) +def test_exodus_loader_classifies_volume_meshes( + element_type: dataset.EElemTest, +) -> None: + mesh = mh.ExodusLoader( + dataset.element_case_output_path(element_type), + ).load_all_sim_data() + + assert mesh.mesh_type is io.EMeshType.VOL + assert io.is_volume_mesh(mesh) + + surface = io.extract_surf_mesh(mesh) + + assert surface.mesh_type is io.EMeshType.SURF + assert not io.is_volume_mesh(surface) def test_enforce_mesh_convention_corrects_legacy_connectivity() -> None: @@ -149,6 +252,7 @@ def test_enforce_mesh_convention_corrects_legacy_connectivity() -> None: mesh_out = io.enforce_mesh_convention(mesh) assert mesh_out is not mesh + assert mesh_out.mesh_type is io.EMeshType.SURF assert mesh_out.connect is not None assert mesh_out.connect["connect1"].shape == (1, 4) assert np.array_equal(mesh_out.connect["connect1"], np.array(((0, 1, 2, 3),))) @@ -163,10 +267,12 @@ def test_check_mesh_convention_reports_failed_checks() -> None: check = io.check_mesh_convention(mesh) - assert not check.is_valid - assert "zero_based_indexing" in check.failed_checks - assert "row_major_connectivity" in check.failed_checks - assert "ccw_winding" in check.failed_checks + assert check["connect1"] == [ + io.MeshCheckCode.ROW_MAJOR_CONNECTIVITY, + io.MeshCheckCode.ZERO_BASED_INDEXING, + io.MeshCheckCode.CCW_WINDING, + io.MeshCheckCode.RIGHT_HANDED_GEOMETRY, + ] def test_enforce_mesh_convention_raises_for_invalid_indices() -> None: @@ -187,12 +293,12 @@ def test_check_and_enforce_winding_for_quads() -> None: connect={"connect1": np.array(((0, 3, 2, 1),), dtype=np.int64)}, ) - assert io.check_cw_winding(mesh) - assert not io.check_ccw_winding(mesh) + check = io.check_mesh_convention(mesh) + assert io.MeshCheckCode.CCW_WINDING in check["connect1"] - mesh_out = io.enforce_ccw_winding(mesh) + mesh_out = io.enforce_mesh_convention(mesh) - assert io.check_ccw_winding(mesh_out) + assert not io.check_mesh_convention(mesh_out) assert np.array_equal(mesh_out.connect["connect1"], np.array(((0, 1, 2, 3),))) @@ -204,14 +310,78 @@ def test_enforce_mesh_convention_fixes_tet_handedness() -> None: ) check = io.check_mesh_convention(mesh) - assert not check.is_right_handed + assert io.MeshCheckCode.RIGHT_HANDED_GEOMETRY in check["connect1"] mesh_out = io.enforce_mesh_convention(mesh) - assert io.check_mesh_convention(mesh_out).is_valid + assert not io.check_mesh_convention(mesh_out) assert np.array_equal(mesh_out.connect["connect1"], np.array(((0, 1, 2, 3),))) +@pytest.mark.parametrize("element_type", _SUPPORTED_CUBE_ELEMENTS) +def test_cube_mesh_convention_is_valid_after_enforcement( + element_type: dataset.EElemTest, +) -> None: + """All supported raw cube meshes reach the shared convention.""" + mesh = mh.ExodusLoader( + dataset.element_case_output_path(element_type), + enforce_convention=False, + ).load_all_sim_data() + + raw_check = io.check_mesh_convention(mesh) + enforced = io.enforce_mesh_convention(mesh) + enforced_check = io.check_mesh_convention(enforced) + + assert io.MeshCheckCode.ZERO_BASED_INDEXING in raw_check["connect1"] + assert io.MeshCheckCode.ROW_MAJOR_CONNECTIVITY in raw_check["connect1"] + assert not enforced_check + + +@pytest.mark.parametrize("element_type", _SUPPORTED_CUBE_ELEMENTS) +def test_cube_mesh_convention_enforcement_is_idempotent( + element_type: dataset.EElemTest, +) -> None: + """Applying convention enforcement twice must not alter a cube mesh.""" + mesh = mh.ExodusLoader( + dataset.element_case_output_path(element_type), + enforce_convention=False, + ).load_all_sim_data() + + enforced_once = io.enforce_mesh_convention(mesh) + enforced_twice = io.enforce_mesh_convention(enforced_once) + + assert enforced_once.connect is not None + assert enforced_twice.connect is not None + assert tuple(enforced_once.connect) == tuple(enforced_twice.connect) + for key, connectivity in enforced_once.connect.items(): + assert np.array_equal(connectivity, enforced_twice.connect[key]) + + +def test_tet14_cube_is_explicitly_unsupported_by_convention_tools() -> None: + """TET14 remains a documented unsupported volume topology.""" + mesh = mh.ExodusLoader( + dataset.element_case_output_path(dataset.EElemTest.TET14), + enforce_convention=False, + ).load_all_sim_data() + + with pytest.raises(NotImplementedError, match="supported nodes-per-element"): + io.check_mesh_convention(mesh) + + +@pytest.mark.parametrize("element_type", _SUPPORTED_CUBE_ELEMENTS) +def test_extracted_cube_surface_passes_the_convention_checker( + element_type: dataset.EElemTest, +) -> None: + """Extracted cube faces validate against their local outward directions.""" + mesh = mh.ExodusLoader( + dataset.element_case_output_path(element_type), + enforce_convention=False, + ).load_all_sim_data() + surface = io.extract_surf_mesh(io.enforce_mesh_convention(mesh)) + + assert not io.check_mesh_convention(surface) + + def test_extract_surf_mesh_handles_multiple_connectivity_tables() -> None: coords = np.vstack((_tet_coords(0.0), _tet_coords(2.0))) mesh = io.SimData( @@ -420,4 +590,3 @@ def test_extract_surf_mesh_hex27() -> None: assert surf.coords.shape == (98, 3) _assert_extracted_surface_points_outward(surf) _assert_higher_order_surface_edge_order(surf) - diff --git a/tests/dataio/simio_test.py b/tests/dataio/simio_test.py index f78167888..e9ede95f8 100644 --- a/tests/dataio/simio_test.py +++ b/tests/dataio/simio_test.py @@ -9,7 +9,7 @@ import pytest import pyvale.mooseherder as mh import pyvale.dataio as io -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.verif.matchsimdata as verif TXT_GOLD_PATH: Path = Path(__file__).resolve().parent / "txt_gold" diff --git a/tests/dataio/test_meshloader.py b/tests/dataio/test_meshloader.py new file mode 100644 index 000000000..694b8a31b --- /dev/null +++ b/tests/dataio/test_meshloader.py @@ -0,0 +1,176 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Tests for loading coordinates and connectivity without fields.""" + +from pathlib import Path + +import numpy as np +import pytest + +import pyvale.dataio as io +from pyvale.dataio.exceptions import SimLoadErr + + +GOLD_DIR = Path(__file__).resolve().parent / "txt_gold" + + +@pytest.mark.parametrize("suffix", (".csv", ".npy")) +def test_mesh_loader_matches_field_loader(suffix: str) -> None: + """The focused loader must match the existing simulation loader.""" + coords_file = f"hex20_coords{suffix}" + connect_file = f"hex20_connect1{suffix}" + load_opts = io.SimLoadOpts() + + mesh = io.MeshLoader( + load_dir=GOLD_DIR, + coords_file=coords_file, + connect_files=connect_file, + load_opts=load_opts, + ).load_mesh() + simulation = io.SimLoaderByField( + load_dir=GOLD_DIR, + coords_file=coords_file, + time_step_file=None, + node_field_files=None, + connect_files=connect_file, + load_opts=load_opts, + ).load_all_sim_data() + + np.testing.assert_array_equal(mesh.coords, simulation.coords) + assert mesh.connect is not None + assert simulation.connect is not None + assert mesh.connect.keys() == simulation.connect.keys() + for connect_key in mesh.connect: + np.testing.assert_array_equal( + mesh.connect[connect_key], + simulation.connect[connect_key], + ) + + assert mesh.mesh_type is io.EMeshType.VOL + assert mesh.time is None + assert mesh.node_vars is None + assert mesh.elem_vars is None + assert mesh.glob_vars is None + assert not io.check_mesh_convention(mesh) + + +@pytest.mark.parametrize( + "connect_files", + ( + "hex20_connect1.npy", + "hex20_connect*.npy", + ["hex20_connect1.npy"], + ), +) +def test_mesh_loader_accepts_connectivity_selectors( + connect_files: str | list[str], +) -> None: + """A file name, pattern, or explicit list can select connectivity.""" + mesh = io.MeshLoader( + load_dir=GOLD_DIR, + coords_file="hex20_coords.npy", + connect_files=connect_files, + ).load_mesh() + + assert mesh.connect is not None + assert tuple(mesh.connect) == ("hex20_connect1",) + + +def test_mesh_loader_can_preserve_raw_connectivity() -> None: + """Convention conversion can be disabled for diagnostic workflows.""" + mesh = io.MeshLoader( + load_dir=GOLD_DIR, + coords_file="hex20_coords.npy", + connect_files="hex20_connect1.npy", + enforce_convention=False, + ).load_mesh() + + assert mesh.connect is not None + assert int(np.min(mesh.connect["hex20_connect1"])) == 1 + assert io.check_mesh_convention(mesh) + + +def test_mesh_loader_uses_text_options_and_infers_surface( + tmp_path: Path, +) -> None: + """Text options are shared with DataIO and surface type is inferred.""" + coords_path = tmp_path / "coords.txt" + connect_path = tmp_path / "connect.txt" + np.savetxt( + coords_path, + np.array( + ( + (0.0, 0.0, 0.0), + (1.0, 0.0, 0.0), + (1.0, 1.0, 0.0), + (0.0, 1.0, 0.0), + ) + ), + delimiter=";", + header="x;y;z", + comments="", + ) + np.savetxt( + connect_path, + np.array(((1, 2, 3, 4),), dtype=np.int64), + delimiter=";", + header="n0;n1;n2;n3", + comments="", + fmt="%d", + ) + + mesh = io.MeshLoader( + load_dir=tmp_path, + coords_file=coords_path, + connect_files=[connect_path.name], + load_opts=io.SimLoadOpts( + delimiter=";", + coord_header=0, + connect_header=0, + ), + ).load_mesh() + + assert mesh.mesh_type is io.EMeshType.SURF + assert mesh.connect is not None + np.testing.assert_array_equal( + mesh.connect["connect"], + np.array(((0, 1, 2, 3),)), + ) + + +def test_mesh_loader_rejects_missing_directory(tmp_path: Path) -> None: + """A missing load directory reports a focused error.""" + with pytest.raises(SimLoadErr, match="is not a directory"): + io.MeshLoader( + load_dir=tmp_path / "missing", + coords_file="coords.csv", + connect_files="connect.csv", + ) + + +def test_mesh_loader_rejects_missing_coordinates() -> None: + """A missing coordinate file is reported when loading starts.""" + loader = io.MeshLoader( + load_dir=GOLD_DIR, + coords_file="missing.npy", + connect_files="hex20_connect1.npy", + ) + + with pytest.raises(FileNotFoundError, match="missing.npy"): + loader.load_mesh() + + +def test_mesh_loader_rejects_empty_connectivity_match() -> None: + """A pattern that selects no connectivity must fail explicitly.""" + loader = io.MeshLoader( + load_dir=GOLD_DIR, + coords_file="hex20_coords.npy", + connect_files="missing_connect*.npy", + ) + + with pytest.raises(FileNotFoundError, match="No connectivity files"): + loader.load_mesh() diff --git a/tests/dic/test_dic.py b/tests/dic/test_dic.py index 3df3be6bc..0ffa78d94 100644 --- a/tests/dic/test_dic.py +++ b/tests/dic/test_dic.py @@ -16,7 +16,7 @@ import numpy as np import matplotlib.pyplot as plt import pyvale.dic as dic -import pyvale.dataset as dataset +import pyvale.data as dataset import pyvale.calib as calib diff --git a/tests/examples/README.md b/tests/examples/README.md new file mode 100644 index 000000000..953491199 --- /dev/null +++ b/tests/examples/README.md @@ -0,0 +1,36 @@ +# Documented example tests + +This directory smoke-tests the stable Sensorsim, 3D render, 2D render, and +DIC galleries in isolated subprocesses. Each test uses a temporary working +directory, so the examples write their normal `pyvale-output` directory +without modifying the repository. + +Run all documented example tests with: + +```bash +python -m pytest tests/examples +``` + +Run the examples belonging to one sub-module, such as `render3d` or +`render2d`, with: + +```bash +python -m pytest tests/examples --example-module=render3d +python -m pytest tests/examples --example-module=render2d +``` + +Run the render unit tests and only the matching examples together with: + +```bash +python -m pytest tests/render tests/examples --example-module=render3d +``` + +The Blender examples are included but skip automatically when its optional +backend is unavailable. Tests marked `example_slow` remain part of the normal +test set and can be selected with `-m example_slow` when needed. + +The suite intentionally excludes DIC examples that need user interaction or +unbundled local input: `ex01_region_of_interest.py`, `ex06_hrdic.py`, +`ex08_calibration.py`, `ex09_stereo.py`, `ex10_stereo_platehole.py`, and +`ex11_dic_chal.py`. Modules still under active development, including `valid`, +are not included. diff --git a/tests/examples/conftest.py b/tests/examples/conftest.py new file mode 100644 index 000000000..bbc5f2c8b --- /dev/null +++ b/tests/examples/conftest.py @@ -0,0 +1,138 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Shared helpers for documented-example smoke tests.""" + +from __future__ import annotations + +import os +from collections.abc import Callable, Generator, Sequence +from pathlib import Path +import shutil +import subprocess +import sys +import tempfile + +import pytest + + +PROJECT_ROOT = Path(__file__).resolve().parents[2] +SOURCE_ROOT = PROJECT_ROOT / "src" +EXAMPLES_ROOT = SOURCE_ROOT / "pyvale" / "examples" +EXAMPLE_TESTS_ROOT = Path(__file__).resolve().parent + + +def pytest_addoption(parser: pytest.Parser) -> None: + """Register filtering for one documented example sub-module.""" + parser.addoption( + "--example-module", + metavar="MODULE", + help="Run example tests whose script is in this sub-module.", + ) + + +def pytest_collection_modifyitems( + config: pytest.Config, + items: list[pytest.Item], +) -> None: + """Limit example smoke tests to the requested example sub-module.""" + requested_module = config.getoption("example_module") + if requested_module is None: + return + + module = requested_module.strip("/") + requested_prefix = f"{module}/" + selected: list[pytest.Item] = [] + deselected: list[pytest.Item] = [] + + for item in items: + if not item.path.is_relative_to(EXAMPLE_TESTS_ROOT): + selected.append(item) + continue + + callspec = getattr(item, "callspec", None) + relative_path = ( + callspec.params.get("example") if callspec is not None else None + ) + module_marker = item.get_closest_marker("example_module") + marker_module = ( + module_marker.args[0] if module_marker is not None else None + ) + + if ( + isinstance(relative_path, str) + and relative_path.startswith(requested_prefix) + ) or marker_module == module: + selected.append(item) + else: + deselected.append(item) + + if deselected: + config.hook.pytest_deselected(items=deselected) + items[:] = selected + + +@pytest.fixture +def run_example() -> Generator[Callable[..., Path], None, None]: + """Run an example script in an isolated working directory. + + The gallery examples write to ``pyvale-output`` relative to their current + directory. Running them in a temporary directory prevents example smoke + tests from changing the source tree and keeps independent tests isolated. + """ + + with tempfile.TemporaryDirectory(prefix="pyvale-example-") as directory: + work_dir = Path(directory) + + def _run( + relative_path: str, + expected_outputs: Sequence[str] = (), + support_files: Sequence[str] = (), + timeout: float = 180.0, + ) -> Path: + example_path = EXAMPLES_ROOT / relative_path + assert example_path.is_file(), ( + f"Example does not exist: {example_path}" + ) + + for support_file in support_files: + source_file = example_path.parent / support_file + target_file = work_dir / support_file + target_file.parent.mkdir(parents=True, exist_ok=True) + shutil.copy2(source_file, target_file) + + environment = os.environ.copy() + environment["MPLBACKEND"] = "Agg" + environment["PYVISTA_OFF_SCREEN"] = "true" + environment["QT_QPA_PLATFORM"] = "offscreen" + environment["PYTHONPATH"] = os.pathsep.join( + (str(SOURCE_ROOT), environment.get("PYTHONPATH", "")), + ).rstrip(os.pathsep) + + completed = subprocess.run( + (sys.executable, str(example_path)), + cwd=work_dir, + env=environment, + capture_output=True, + text=True, + timeout=timeout, + check=False, + ) + + assert completed.returncode == 0, ( + f"Example failed: {relative_path}\n" + f"stdout:\n{completed.stdout}\n" + f"stderr:\n{completed.stderr}" + ) + + for output in expected_outputs: + assert (work_dir / output).exists(), ( + f"Example did not create expected output: {output}" + ) + + return work_dir + + yield _run diff --git a/tests/examples/test_dic_examples.py b/tests/examples/test_dic_examples.py new file mode 100644 index 000000000..6e7c5d038 --- /dev/null +++ b/tests/examples/test_dic_examples.py @@ -0,0 +1,83 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Smoke tests for automated documented DIC examples.""" + +from __future__ import annotations + +from collections.abc import Callable +from pathlib import Path + +import numpy as np +import pytest + +_DIC_EXAMPLES = ( + pytest.param("dic/ex05_dic_challenge.py", "pyvale-output"), + pytest.param( + "dic/ex07_incremental.py", + "pyvale-output/incremental", + marks=pytest.mark.example_slow, + ), +) + + +@pytest.mark.example +@pytest.mark.example_module("dic") +def test_plate_with_hole_examples(run_example: Callable[..., Path]) -> None: + """The strain example runs against DIC output from the preceding example.""" + work_dir = run_example( + "dic/ex02_plate_with_hole.py", + ("pyvale-output/ex02",), + support_files=("ex10_roi.yaml",), + timeout=300.0, + ) + + run_example( + "dic/ex03_plate_with_hole_strain.py", + ("pyvale-output/ex03",), + timeout=300.0, + ) + + assert (work_dir / "pyvale-output/ex03").is_dir() + + +@pytest.mark.example +@pytest.mark.parametrize(("example", "output"), _DIC_EXAMPLES) +def test_dic_example( + run_example: Callable[..., Path], + example: str, + output: str, +) -> None: + """Each supported standalone DIC gallery example runs successfully.""" + run_example(example, (output,), timeout=300.0) + + +@pytest.mark.example +@pytest.mark.example_module("dic") +def test_render_to_dic_example(run_example: Callable[..., Path]) -> None: + """The Riley render produces an accurate analytic DIC displacement.""" + work_dir = run_example( + "dic/ex04_render_to_dic.py", + ( + "pyvale-output/dic_ex04_render_to_dic/" + "dic_ex04_render_to_dic.png", + ), + timeout=300.0, + ) + + dic_dir = ( + work_dir + / "pyvale-output" + / "dic_ex04_render_to_dic" + / "dic" + ) + result_files = sorted(dic_dir.glob("render_to_dic_*.csv")) + assert len(result_files) == 1 + + result = np.loadtxt(result_files[0], delimiter=",", skiprows=1) + assert np.all(result[:, 5].astype(bool)) + np.testing.assert_allclose(result[:, 2], 0.5, atol=0.05) + np.testing.assert_allclose(result[:, 3], 0.5, atol=0.05) diff --git a/tests/examples/test_example_navigation.py b/tests/examples/test_example_navigation.py new file mode 100644 index 000000000..bc6fc2115 --- /dev/null +++ b/tests/examples/test_example_navigation.py @@ -0,0 +1,85 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Regression tests for the hand-written example gallery navigation.""" + +from __future__ import annotations + +import subprocess +from pathlib import Path + + +REPO_ROOT = Path(__file__).resolve().parents[2] +EXAMPLES_ROOT = REPO_ROOT / "src" / "pyvale" / "examples" +DOCS_EXAMPLES_ROOT = REPO_ROOT / "docs" / "source" / "examples" + +GROUPS = ( + ("examples_basics_sensorsim", "basicsensorsim"), + ("examples_dic", "dic"), + ("examples_render3d", "render3d"), + ("examples_renderuvs", "renderuvs"), + ("examples_ext_sensorsim", "extsensorsim"), + ("examples_mooseherder", "mooseherder"), +) + + +def get_toctree_entries(path: Path, prefix: str) -> tuple[str, ...]: + """Return ordered, extension-free toctree entries with one prefix.""" + entries: list[str] = [] + for line in path.read_text(encoding="utf-8").splitlines(): + entry = line.strip() + if entry.startswith(prefix): + entries.append(entry) + return tuple(entries) + + +def test_example_groups_are_complete_and_ordered() -> None: + """Every public example appears in its explicit filename order.""" + for group_name, source_name in GROUPS: + group_path = DOCS_EXAMPLES_ROOT / f"{group_name}.rst" + documented = get_toctree_entries(group_path, f"{source_name}/ex") + source = tuple( + f"{source_name}/{path.stem}" + for path in sorted((EXAMPLES_ROOT / source_name).glob("ex*.py")) + ) + assert documented == source + + +def test_example_group_navigation_order() -> None: + """The examples landing page retains the intended module progression.""" + landing_page = DOCS_EXAMPLES_ROOT / "examples.rst" + documented = get_toctree_entries(landing_page, "examples_") + expected = tuple(group_name for group_name, _ in GROUPS) + assert documented == expected + + +def test_development_example_families_are_not_public() -> None: + """Supporting and in-development modules stay out of public navigation.""" + navigation = "\n".join( + path.read_text(encoding="utf-8") + for path in DOCS_EXAMPLES_ROOT.glob("examples*.rst") + ) + for source_name in ("genanalyticdata", "valid", "visualisation"): + assert source_name not in navigation + + +def test_gitignore_preserves_manual_navigation_only() -> None: + """Manual layouts are trackable while generated gallery pages are ignored.""" + for group_name in ("examples", *(name for name, _ in GROUPS)): + manual_path = DOCS_EXAMPLES_ROOT / f"{group_name}.rst" + completed = subprocess.run( + ("git", "check-ignore", "--quiet", str(manual_path)), + cwd=REPO_ROOT, + check=False, + ) + assert completed.returncode == 1 + + generated_path = DOCS_EXAMPLES_ROOT / "render3d" / "example.rst" + completed = subprocess.run( + ("git", "check-ignore", "--quiet", str(generated_path)), + cwd=REPO_ROOT, + check=False, + ) + assert completed.returncode == 0 diff --git a/tests/examples/test_render3d_examples.py b/tests/examples/test_render3d_examples.py new file mode 100644 index 000000000..07d655295 --- /dev/null +++ b/tests/examples/test_render3d_examples.py @@ -0,0 +1,125 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Smoke tests for the documented 3D render gallery examples.""" + +from __future__ import annotations + +from collections.abc import Callable +from pathlib import Path + +import pytest + +import pyvale.render as render + + +_RILEY_EXAMPLES = ( + pytest.param( + "render3d/ex1a_riley_quickstart.py", + "pyvale-output/render3d_ex1a_riley_quickstart/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1b_riley_sphere200.py", + "pyvale-output/render3d_ex1b_riley_sphere200/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1c_riley_rabbits.py", + "pyvale-output/render3d_ex1c_riley_rabbits/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1d_riley_dicuq.py", + "pyvale-output/render3d_ex1d_riley_dicuq/cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1e_riley_dic_from_exodus.py", + "pyvale-output/render3d_ex1e_riley_dic_from_exodus/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1f_riley_stereocal.py", + "pyvale-output/render3d_ex1f_riley_stereocal/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex1g_riley_psf.py", + "pyvale-output/render3d_ex1g_riley_psf/global_subpx_full/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "render3d/ex2d_blender_calibration.py", + "pyvale-output/render3d_ex2d_blender_calibration/calibration/" + "calibration.yaml", + ), +) + +_BLENDER_EXAMPLES = ( + pytest.param( + "render3d/ex2a_blender_scene.py", + "pyvale-output/render3d_ex2a_blender_scene/images/" + "blenderimage_0.tiff", + ), + pytest.param( + "render3d/ex2b_blender_deformation.py", + "pyvale-output/render3d_ex2b_blender_deformation/images/" + "blenderimage_0.tiff", + ), + pytest.param( + "render3d/ex2c_blender_stereo.py", + "pyvale-output/render3d_ex2c_blender_stereo/images/" + "blenderimage_0_1.tiff", + ), + pytest.param( + "render3d/ex2e_blender_stereo_deformation.py", + "pyvale-output/render3d_ex2e_blender_stereo_deformation/images/" + "blenderimage_0_1.tiff", + ), + pytest.param( + "render3d/ex2f_blender_calibration_target.py", + "pyvale-output/render3d_ex2f_blender_calibration_target/" + "calimages/blendercal_1_1.tiff", + ), +) + + +@pytest.mark.example +@pytest.mark.parametrize(("example", "output"), _RILEY_EXAMPLES) +def test_render3d_example( + run_example: Callable[..., Path], + example: str, + output: str, +) -> None: + """Each non-Blender 3D render gallery example runs and writes its result.""" + run_example(example, (output,), timeout=300.0) + + +@pytest.mark.example +@pytest.mark.blender +@pytest.mark.skipif( + not render.blender_available(), + reason="The optional Blender renderer backend is unavailable.", +) +@pytest.mark.parametrize(("example", "output"), _BLENDER_EXAMPLES) +def test_blender_render3d_example( + run_example: Callable[..., Path], + example: str, + output: str, +) -> None: + """Run each Blender gallery example when the optional backend is present.""" + work_dir = run_example(example, (output,), timeout=300.0) + + if example.endswith("ex2f_blender_calibration_target.py"): + images = tuple( + ( + work_dir + / "pyvale-output" + / "render3d_ex2f_blender_calibration_target" + / "calimages" + ).glob("*.tiff") + ) + assert len(images) == 10 diff --git a/tests/examples/test_renderuvs_examples.py b/tests/examples/test_renderuvs_examples.py new file mode 100644 index 000000000..17c2e69ae --- /dev/null +++ b/tests/examples/test_renderuvs_examples.py @@ -0,0 +1,77 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================ + +"""Smoke tests for the documented Render UV gallery examples.""" + +from __future__ import annotations + +from collections.abc import Callable +from pathlib import Path + +import numpy as np +import pytest +from PIL import Image + + +_RENDER_UV_EXAMPLES = ( + pytest.param( + "renderuvs/ex1a_uv_planar_axes.py", + "pyvale-output/renderuvs_ex1a_uv_planar_axes/xy/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "renderuvs/ex1b_uv_texture_aspect.py", + "pyvale-output/renderuvs_ex1b_uv_texture_aspect/aligned/contain/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "renderuvs/ex1c_uv_pixel_region.py", + "pyvale-output/renderuvs_ex1c_uv_pixel_region/tiled_seam/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "renderuvs/ex1d_uv_arbitrary_plane.py", + "pyvale-output/renderuvs_ex1d_uv_arbitrary_plane/tilted/" + "cam0_frame0_field0.bmp", + ), + pytest.param( + "renderuvs/ex1e_uv_transform.py", + "pyvale-output/renderuvs_ex1e_uv_transform/transformed/" + "cam0_frame0_field0.bmp", + ), +) + + +@pytest.mark.example +@pytest.mark.parametrize(("example", "output"), _RENDER_UV_EXAMPLES) +def test_renderuv_example( + run_example: Callable[..., Path], + example: str, + output: str, +) -> None: + """Each representative render is visible, centred, and uncropped.""" + work_dir = run_example(example, (output,), timeout=300.0) + with Image.open(work_dir / output) as output_image: + image = np.asarray(output_image) + + background = image[0, 0] + foreground = np.any(image != background, axis=2) + rows, columns = np.nonzero(foreground) + + assert rows.size > 0 + assert columns.min() > 0 + assert rows.min() > 0 + assert columns.max() < image.shape[1] - 1 + assert rows.max() < image.shape[0] - 1 + + object_center = np.array( + ( + 0.5 * (columns.min() + columns.max()), + 0.5 * (rows.min() + rows.max()), + ) + ) + image_center = 0.5 * np.array((image.shape[1] - 1, image.shape[0] - 1)) + assert np.all(np.abs(object_center - image_center) < 0.1 * image_center) diff --git a/tests/examples/test_sensorsim_examples.py b/tests/examples/test_sensorsim_examples.py new file mode 100644 index 000000000..f0bc3f402 --- /dev/null +++ b/tests/examples/test_sensorsim_examples.py @@ -0,0 +1,67 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================== + +"""Smoke tests for the basic and extended Sensorsim gallery examples.""" + +from __future__ import annotations + +from collections.abc import Callable +from pathlib import Path + +import pytest + + +_BASIC_EXAMPLES = ( + "basicsensorsim/ex0_quickstart.py", + "basicsensorsim/ex1_scalar_sensors.py", + "basicsensorsim/ex2_vector_tensor_sensors.py", + "basicsensorsim/ex3_experiment_simulator.py", +) + +_EXTENDED_EXAMPLES = ( + "extsensorsim/ex1_byosimdata.py", + "extsensorsim/ex2_meshfreesensors.py", + "extsensorsim/ex3a_scal2d.py", + "extsensorsim/ex3b_scal3d.py", + "extsensorsim/ex3c_vec2d.py", + "extsensorsim/ex3d_vec3d.py", + "extsensorsim/ex3e_tens2d.py", + "extsensorsim/ex3f_tens3d.py", + "extsensorsim/ex4a_basicerrs_scal2d.py", + "extsensorsim/ex4b_fielderrs_scal3d.py", + "extsensorsim/ex4c_angleerrs_vec2d.py", + "extsensorsim/ex4d_fieldlockerrs_vec3d.py", + "extsensorsim/ex4e_chainfielderrs_vec2d.py", + "extsensorsim/ex4f_caliberrs_scal2d.py", + "extsensorsim/ex4g_spatavgerrs_scal2d.py", + "extsensorsim/ex5a_expsim_thermmech2d.py", + "extsensorsim/ex5b_expsim_thermmech3d.py", +) + + +@pytest.mark.example +@pytest.mark.parametrize("example", _BASIC_EXAMPLES) +def test_basic_sensorsim_example( + run_example: Callable[..., Path], + example: str, +) -> None: + """Each basic Sensorsim gallery example runs without a GUI.""" + run_example(example, ("pyvale-output",), timeout=300.0) + + +@pytest.mark.example +@pytest.mark.example_slow +@pytest.mark.parametrize("example", _EXTENDED_EXAMPLES) +def test_extended_sensorsim_example( + run_example: Callable[..., Path], + example: str, +) -> None: + """Each extended Sensorsim gallery example runs without a GUI.""" + expected_outputs = () + if not example.endswith("ex2_meshfreesensors.py"): + expected_outputs = ("pyvale-output",) + + run_example(example, expected_outputs, timeout=300.0) diff --git a/tests/mooseherder/availability_test.py b/tests/mooseherder/availability_test.py new file mode 100644 index 000000000..b6952bfde --- /dev/null +++ b/tests/mooseherder/availability_test.py @@ -0,0 +1,29 @@ +"""Tests for optional external backend availability diagnostics.""" + +from pathlib import Path + +import pyvale.mooseherder as mooseherder + + +def test_missing_moose_reports_configured_executable(tmp_path: Path) -> None: + """MOOSE availability reports a missing application without executing it.""" + availability = mooseherder.moose_availability({ + "main_path": tmp_path, + "app_path": tmp_path, + "app_name": "missing-moose", + }) + + assert not availability.available + assert availability.executable is None + assert "missing-moose" in str(availability.reason) + + +def test_missing_gmsh_reports_path_lookup(monkeypatch) -> None: + """Gmsh availability gives an install/configuration diagnostic.""" + monkeypatch.setattr("pyvale.mooseherder.availability.shutil.which", lambda _: None) + + availability = mooseherder.gmsh_availability() + + assert not availability.available + assert availability.executable is None + assert "not found on PATH" in str(availability.reason) diff --git a/tests/mooseherder/gmshrunner_test.py b/tests/mooseherder/gmshrunner_test.py index 79edfa102..1acb51845 100644 --- a/tests/mooseherder/gmshrunner_test.py +++ b/tests/mooseherder/gmshrunner_test.py @@ -4,12 +4,11 @@ # Copyright (C) 2025 The Computer Aided Validation Team #=============================================================================== -import os from pathlib import Path import pytest +import shutil from pyvale.mooseherder.gmshrunner import GmshRunner -USER_DIR = Path.home() GMSH_INPUT_PATH = Path.cwd()/"tests"/"mooseherder"/"gmsh" def test_gmsh_exists(gmsh_path: Path): @@ -18,10 +17,10 @@ def test_gmsh_exists(gmsh_path: Path): @pytest.fixture() def gmsh_path() -> Path: - path = USER_DIR / 'gmsh/bin/gmsh' - if not path.is_file(): - pytest.skip("Gmsh app not installed at the expected path") - return path + path = shutil.which("gmsh") + if path is None: + pytest.skip("Gmsh is not installed or available on PATH") + return Path(path) @pytest.fixture() @@ -39,17 +38,15 @@ def setup_teardown(): # Setup here yield # Teardown here - remove output files - all_files = os.listdir(GMSH_INPUT_PATH) - for ff in all_files: - if '.msh' in ff: - os.remove(GMSH_INPUT_PATH/ff) + for output_file in GMSH_INPUT_PATH.glob("*.msh"): + output_file.unlink() def test_create_runner(runner: GmshRunner, gmsh_path: Path) -> None: assert runner._gmsh_app == gmsh_path def test_create_runner_err() -> None: - wrong_path = USER_DIR / 'wrong_dir' + wrong_path = Path("/nonexistent/gmsh") with pytest.raises(FileNotFoundError) as err_info: _ = GmshRunner(wrong_path) @@ -63,7 +60,7 @@ def test_set_gmsh_app(gmsh_path: Path) -> None: def test_set_gmsh_app_err() -> None: - wrong_path = USER_DIR / 'wrong_dir' + wrong_path = Path("/nonexistent/gmsh") with pytest.raises(FileNotFoundError) as err_info: check_runner = GmshRunner() check_runner.set_gmsh_app(wrong_path) @@ -104,12 +101,16 @@ def test_run_with_input(runner: GmshRunner, input_file: Path) -> None: assert (GMSH_INPUT_PATH/"gmsh-test.msh").is_file(), 'Output mesh *.msh file not generated by gmsh.' -def test_run_err_no_gmsh() -> None: +def test_run_err_no_gmsh(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setattr( + "pyvale.mooseherder.availability.shutil.which", + lambda _: None, + ) check_runner = GmshRunner() with pytest.raises(RuntimeError) as err_info: check_runner.run() msg, = err_info.value.args - assert msg == "Specify the full path to the gmsh app before calling run." + assert msg == "Gmsh was not found on PATH. Install Gmsh or configure its path." def test_run_err_no_geo(runner: GmshRunner) -> None: diff --git a/tests/mooseherder/herdchecker.py b/tests/mooseherder/herdchecker.py index 9effd2355..0b9ec5931 100644 --- a/tests/mooseherder/herdchecker.py +++ b/tests/mooseherder/herdchecker.py @@ -14,6 +14,7 @@ from pyvale.mooseherder.gmshrunner import GmshRunner from pyvale.mooseherder.mooseherd import MooseHerd from pyvale.mooseherder.directorymanager import DirectoryManager +from pyvale.mooseherder.availability import gmsh_availability NUM_DIRS = 4 @@ -26,7 +27,8 @@ MOOSE_APP_NAME = 'proteus-opt' MOOSE_INPUT = BASE_DIR/"moose"/"moose-test.i" -GMSH_APP_PATH = Path().home() / 'gmsh/bin/gmsh' +GMSH_AVAILABILITY = gmsh_availability() +GMSH_APP_PATH = GMSH_AVAILABILITY.executable GMSH_INPUT = BASE_DIR/"gmsh/gmsh-test.geo" moose_present = ( @@ -35,7 +37,7 @@ and (MOOSE_APP_PATH / MOOSE_APP_NAME).is_file() ) -gmsh_present = GMSH_APP_PATH.is_file() +gmsh_present = GMSH_AVAILABILITY.available OUTPUT_GOLD_PATH = BASE_DIR/"output_gold" TXT_GOLD_PATH = BASE_DIR/"txt_gold" @@ -207,4 +209,3 @@ def debug_print(to_print: Any) -> None: print('-'*80) print() - diff --git a/tests/render/gold_blender/tri3_clipping.npy b/tests/render/gold_blender/tri3_clipping.npy new file mode 100644 index 000000000..b208e7510 Binary files /dev/null and b/tests/render/gold_blender/tri3_clipping.npy differ diff --git a/tests/render/gold_blender/tri3_deforming.npy b/tests/render/gold_blender/tri3_deforming.npy new file mode 100644 index 000000000..b4239ac1d Binary files /dev/null and b/tests/render/gold_blender/tri3_deforming.npy differ diff --git a/tests/render/gold_blender/tri3_shared_edge.npy b/tests/render/gold_blender/tri3_shared_edge.npy new file mode 100644 index 000000000..91e932164 Binary files /dev/null and b/tests/render/gold_blender/tri3_shared_edge.npy differ diff --git a/tests/render/gold_blender/triangle.npy b/tests/render/gold_blender/triangle.npy new file mode 100644 index 000000000..5cdb9ebbf Binary files /dev/null and b/tests/render/gold_blender/triangle.npy differ diff --git a/tests/render/gold_riley/rabbits.npy b/tests/render/gold_riley/rabbits.npy new file mode 100644 index 000000000..3a9dd6cc4 Binary files /dev/null and b/tests/render/gold_riley/rabbits.npy differ diff --git a/tests/render/gold_riley/rabbits.sha256 b/tests/render/gold_riley/rabbits.sha256 new file mode 100644 index 000000000..fa25617a9 --- /dev/null +++ b/tests/render/gold_riley/rabbits.sha256 @@ -0,0 +1 @@ +542165aef4fa59ae550ada3540cacd3454b6236c767ac9d1e6ca58e8bd298add diff --git a/tests/render/gold_riley/tri3_clipping.npy b/tests/render/gold_riley/tri3_clipping.npy new file mode 100644 index 000000000..58b3c9547 Binary files /dev/null and b/tests/render/gold_riley/tri3_clipping.npy differ diff --git a/tests/render/gold_riley/tri3_deforming.npy b/tests/render/gold_riley/tri3_deforming.npy new file mode 100644 index 000000000..1c7ada213 Binary files /dev/null and b/tests/render/gold_riley/tri3_deforming.npy differ diff --git a/tests/render/gold_riley/tri3_shared_edge.npy b/tests/render/gold_riley/tri3_shared_edge.npy new file mode 100644 index 000000000..6b139e25f Binary files /dev/null and b/tests/render/gold_riley/tri3_shared_edge.npy differ diff --git a/tests/render/test_blender_availability.py b/tests/render/test_blender_availability.py new file mode 100644 index 000000000..14ae68b3c --- /dev/null +++ b/tests/render/test_blender_availability.py @@ -0,0 +1,127 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Tests for Blender's optional-backend boundary.""" + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.render as render +import pyvale.render.blender.adapter as blender_adapter + + +def make_camera() -> render.Camera: + """Create a small valid perspective camera.""" + return render.Camera( + pixels_num=np.array((16, 16)), + pixels_size=np.array((0.1, 0.1)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + + +def make_mesh() -> render.Mesh3D: + """Create a small valid triangle mesh.""" + return render.Mesh3D( + render.EElementType.TRI3, + np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))), + np.array(((0, 1, 2),)), + object(), + ) + + +def test_blender_reports_unavailable_at_construction( + monkeypatch, + tmp_path, +) -> None: + """An unavailable optional backend fails immediately on instantiation.""" + reason = "Blender requires Python 3.13 and the blender extra." + monkeypatch.setattr( + blender_adapter, + "_blender_unavailable_reason", + lambda: reason, + ) + with pytest.raises(render.RenderInputError, match="UNAVAILABLE"): + render.Blender(render.BlenderConfig(tmp_path)) + + +def test_render_calibration_images_reports_unavailable( + monkeypatch, + tmp_path, +) -> None: + """Calibration rendering fails immediately when Blender is unavailable.""" + reason = "Blender requires Python 3.13 and the blender extra." + monkeypatch.setattr( + blender_adapter, + "_blender_unavailable_reason", + lambda: reason, + ) + camera = make_camera() + stereo_cameras = render.stereo_build_faceon(camera, 15.0) + target = render.BlenderCalibrationTarget( + np.array((10.0, 10.0, 1.0)), + tmp_path / "dummy.tiff", + 0.1, + ) + with pytest.raises(render.RenderInputError, match="UNAVAILABLE"): + render.render_calibration_images( + target, + stereo_cameras, + render.BlenderConfig(tmp_path), + ) + + +def test_blender_available_reflects_backend_probe(monkeypatch) -> None: + """The public availability helper uses the same preflight probe.""" + monkeypatch.setattr( + blender_adapter, + "_blender_unavailable_reason", + lambda: None, + ) + + assert blender_adapter.blender_available() + + +def test_blender_gpu_probe_is_safe_when_backend_is_unavailable( + monkeypatch, +) -> None: + """The legacy GPU capability query returns false without Blender.""" + monkeypatch.setattr( + blender_adapter, + "_blender_unavailable_reason", + lambda: "Blender is unavailable.", + ) + + assert not blender_adapter.blender_gpu_available() + + +def test_blender_warns_for_non_tri3_meshes(monkeypatch, tmp_path) -> None: + """Blender retains legacy meshes but signals its Tri3-only guarantee.""" + monkeypatch.setattr( + blender_adapter, + "_blender_unavailable_reason", + lambda: None, + ) + mesh = render.Mesh3D( + render.EElementType.QUAD4, + np.array( + ( + (-1.0, -1.0, 0.0), + (1.0, -1.0, 0.0), + (1.0, 1.0, 0.0), + (-1.0, 1.0, 0.0), + ) + ), + np.array(((0, 1, 2, 3),)), + object(), + ) + + with pytest.warns(RuntimeWarning, match="Tri3"): + render.Blender(render.BlenderConfig(tmp_path)).verify_input( + render.Scene3D([mesh], [make_camera()]), + ) diff --git a/tests/render/test_blender_integration.py b/tests/render/test_blender_integration.py new file mode 100644 index 000000000..e5740260c --- /dev/null +++ b/tests/render/test_blender_integration.py @@ -0,0 +1,30 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Smoke test for the Blender unified-renderer adapter.""" + +from pathlib import Path + +import numpy as np +import pytest + +import pyvale.render as render +import pyvale.verif.renderverif as renderverif + +from pyvale.verif.renderverif import assert_render_allclose + + +pytestmark = pytest.mark.skipif( + not render.blender_available(), + reason="Blender requires Python 3.13 and the pyvale blender extra.", +) + + +def test_blender_adapter_renders_common_mesh_and_camera(tmp_path: Path) -> None: + """The Blender adapter accepts render.Mesh3D and normalises its result.""" + actual = renderverif.render_triangle(tmp_path) + reference = np.load(Path(__file__).parent / "gold_blender/triangle.npy") + assert actual.shape == (1, 1, 32, 32, 1) + assert_render_allclose(actual, reference, "blender_triangle", rtol=0.0, atol=0.0) diff --git a/tests/render/test_blender_legacy_regression.py b/tests/render/test_blender_legacy_regression.py new file mode 100644 index 000000000..b30624396 --- /dev/null +++ b/tests/render/test_blender_legacy_regression.py @@ -0,0 +1,553 @@ +"""Legacy Blender gold regressions through the unified renderer API.""" + +from pathlib import Path + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.data as dataset +import pyvale.blender as legacy_blender +import pyvale.render as render +import pyvale.verif.renderverif as renderverif +from pyvale.render.blender.adapter import _triangulate_mesh_for_blender +from pyvale.sensorsim.simtools import centre_mesh_nodes + +from pyvale.verif.renderverif import assert_render_allclose + + +pytestmark = [ + pytest.mark.skipif( + not render.blender_available(), + reason="Blender requires Python 3.13 and the optional Blender extra.", + ), + pytest.mark.filterwarnings( + "ignore:Blender support is verified only for Tri3 meshes", + ), +] + +_GOLD = Path(__file__).parents[1] / "blender" / "2D_gold" + + +def _camera(pixels: tuple[int, int] = (20, 20)) -> render.Camera: + return render.Camera( + pixels_num=np.asarray(pixels), + pixels_size=np.array((0.00345, 0.00345)), + pos_world=np.array((0.0, 0.0, 500.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=15.0, + ) + + +def _mesh(camera: render.Camera) -> render.Mesh3D: + sim_data = renderverif.scaled_mechanical_2d() + resolution = ( + camera.pixels_size[0] * camera.pos_world[2] / camera.focal_length + ) + shader = render.BlenderTextureShader( + dataset.dic_pattern_5mpx_path(), resolution + ) + return render.mesh3d_from_simdata(sim_data, shader, ("disp_x", "disp_y")) + + +def _render( + tmp_path: Path, + camera: render.Camera, + light_energy: float = 1.0, + samples: int = 2, + bounces: int = 12, + engine: render.EBlenderEngine = render.EBlenderEngine.CYCLES, +) -> np.ndarray: + renderer = render.Blender( + render.BlenderConfig( + tmp_path, + engine=engine, + samples=samples, + max_bounces=bounces, + threads=1, + ) + ) + result = renderer.render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + light_energy, + ), + ), + ) + ) + assert result.images is not None + return result.images[0, 0, :, :, 0] + + +@pytest.mark.parametrize( + ("energy", "gold"), + ((0.5, "half_watt_lighting"), (3.0, "three_watt_lighting")), +) +def test_legacy_lighting_gold(tmp_path: Path, energy: float, gold: str) -> None: + """Common lights reproduce legacy point-light intensity images.""" + assert_render_allclose( + _render(tmp_path, _camera(), light_energy=energy), + np.load(_GOLD / f"{gold}.npy"), + gold, + rtol=0.0, + atol=2.0, + ) + + +@pytest.mark.parametrize( + ("pixels", "gold"), + (((10, 20), "vertical_cam"), ((20, 10), "horizontal_cam")), +) +def test_legacy_camera_shape_gold( + tmp_path: Path, + pixels: tuple[int, int], + gold: str, +) -> None: + """Unified cameras retain legacy orientation and output shape.""" + assert_render_allclose( + _render(tmp_path, _camera(pixels)), + np.load(_GOLD / f"{gold}.npy"), + gold, + rtol=0.0, + atol=2.0, + ) + + +@pytest.mark.parametrize( + ("samples", "gold"), ((4, "samples_four"), (12, "samples_twelve")) +) +def test_legacy_samples_gold(tmp_path: Path, samples: int, gold: str) -> None: + """Blender sample counts retain legacy render behaviour.""" + assert_render_allclose( + _render(tmp_path, _camera(), samples=samples), + np.load(_GOLD / f"{gold}.npy"), + gold, + rtol=0.0, + atol=2.0, + ) + + +@pytest.mark.parametrize( + ("bounces", "gold"), ((2, "bounces_two"), (100, "bounces_hundred")) +) +def test_legacy_bounces_gold(tmp_path: Path, bounces: int, gold: str) -> None: + """Blender maximum bounces retain legacy render behaviour.""" + assert_render_allclose( + _render(tmp_path, _camera(), bounces=bounces), + np.load(_GOLD / f"{gold}.npy"), + gold, + rtol=0.0, + atol=2.0, + ) + + +@pytest.mark.parametrize( + ("engine", "gold"), + ( + (render.EBlenderEngine.CYCLES, "cycles_engine"), + (render.EBlenderEngine.EEVEE, "eevee_engine"), + ), +) +def test_legacy_engine_gold( + tmp_path: Path, + engine: render.EBlenderEngine, + gold: str, +) -> None: + """Blender engine selection retains the committed legacy image output.""" + assert_render_allclose( + _render(tmp_path, _camera(), engine=engine), + np.load(_GOLD / f"{gold}.npy"), + gold, + rtol=0.0, + atol=2.0, + ) + + +def test_legacy_workbench_engine(tmp_path: Path) -> None: + """The legacy Blender Workbench engine remains selectable.""" + image = _render(tmp_path, _camera(), engine=render.EBlenderEngine.WORKBENCH) + assert image.shape == (20, 20) + + +def test_camera_from_resolution_matches_legacy_gold(tmp_path: Path) -> None: + """The migrated resolution helper creates the legacy Blender camera.""" + camera = render.blender_camera_from_resolution( + np.array((20, 20)), + np.array((0.00345, 0.00345)), + 500.0, + 0.1, + ) + assert_render_allclose( + _render(tmp_path, camera), + np.load(_GOLD / "cam_from_resolution.npy"), + "camera_from_resolution", + rtol=0.0, + atol=2.0, + ) + assert render.blender_mm_per_pixel(camera) == pytest.approx(0.1) + + +@pytest.mark.parametrize("field", ("samples", "max_bounces", "threads", "seed")) +def test_blender_config_rejects_non_integral_controls( + tmp_path: Path, + field: str, +) -> None: + """Invalid legacy render controls fail before Blender scene construction.""" + values = {"samples": 2, "max_bounces": 12, "threads": 1, "seed": 0} + values[field] = 2.5 + renderer = render.Blender(render.BlenderConfig(tmp_path, **values)) + with pytest.raises(render.RenderInputError, match="VALUE"): + renderer.render(render.Scene3D((_mesh(_camera()),), (_camera(),))) + + +def test_blender_persisted_images_and_scene(tmp_path: Path) -> None: + """Legacy TIFF and Blender-project output remain available by configuration.""" + camera = _camera() + result = render.Blender( + render.BlenderConfig( + tmp_path, + threads=1, + save_images=True, + save_scene=True, + ) + ).render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ), + ), + ) + ) + assert result.images is None + assert len(result.output_paths) == 1 + assert result.output_paths[0].is_file() + assert (tmp_path / "blenderfiles" / "projectfile.blend").is_file() + + +def test_blender_supports_legacy_light_geometries(tmp_path: Path) -> None: + """The common light enum retains every geometry supported by Blender.""" + camera = _camera() + for light_type in ( + render.ELightType.SUN, + render.ELightType.SPOT, + render.ELightType.AREA, + ): + result = render.Blender( + render.BlenderConfig( + tmp_path / light_type.value, + threads=1, + ) + ).render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + light_type, + np.array((0.0, 0.0, 400.0)), + np.array((0.0, 0.0, -1.0)), + 1.0, + shadow_soft_size=2.0, + ), + ), + ) + ) + assert result.images is not None + + +def test_blender_in_memory_texture(tmp_path: Path) -> None: + """Legacy in-memory image textures are available through BlenderImageShader.""" + camera = _camera() + source_mesh = _mesh(camera) + mesh = render.Mesh3D( + source_mesh.element_type, + source_mesh.coords, + source_mesh.connectivity, + render.BlenderImageShader(np.indices((64, 64)).sum(axis=0) % 255, 0.1), + source_mesh.displacements, + ) + result = render.Blender(render.BlenderConfig(tmp_path, threads=1)).render( + render.Scene3D( + (mesh,), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ), + ), + ), + ) + assert result.images is not None + + +@pytest.mark.parametrize("placement", ("symmetric", "faceon")) +def test_legacy_stereo_gold( + tmp_path: Path, + placement: str, +) -> None: + """Unified stereo helpers render one image for each legacy camera view.""" + camera = _camera() + if placement == "symmetric": + stereo_cameras = render.stereo_build_symmetric(camera, 15.0) + else: + stereo_cameras = render.stereo_build_faceon(camera, 15.0) + renderer = render.Blender(render.BlenderConfig(tmp_path, threads=1)) + result = renderer.render( + render.Scene3D( + (_mesh(camera),), + stereo_cameras, + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ), + ), + ) + ) + assert result.images is not None + assert result.images.shape == (1, 2, 20, 20, 1) + assert not np.array_equal(result.images[0, 0], result.images[0, 1]) + + +def test_legacy_deformation_frames(tmp_path: Path) -> None: + """Unified deformation rendering preserves every simulation timestep.""" + camera = _camera() + renderer = render.Blender( + render.BlenderConfig( + tmp_path, + threads=1, + render_deformed=True, + ) + ) + result = renderer.render( + render.Scene3D( + (_mesh(camera),), + (camera,), + ( + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ), + ), + ) + ) + assert result.images is not None + assert result.images.shape == (61, 1, 20, 20, 1) + assert not np.array_equal(result.images[0], result.images[-1]) + assert_render_allclose( + result.images[10, 0, :, :, 0], + np.load(_GOLD / "deformed_images.npy"), + "deformed_images", + rtol=0.0, + atol=2.0, + ) + + +def test_legacy_calibration_round_trip(tmp_path: Path) -> None: + """Stereo calibration files retain the legacy format and values.""" + camera_0, camera_1 = render.stereo_build_faceon(_camera(), 15.0) + output = tmp_path / "calibration" / "calibration.yaml" + render.stereo_save_calibration_yaml(camera_0, camera_1, output) + rebuilt_0, rebuilt_1 = render.stereo_build_from_calibration( + output, + np.array((0.0, 0.0, 500.0)), + Rotation.identity(), + 15.0, + ) + assert output.read_text() + original = render.stereo_calc_extrinsics(camera_0, camera_1) + rebuilt = render.stereo_calc_extrinsics(rebuilt_0, rebuilt_1) + assert np.allclose( + rebuilt.translation_cam1_in_cam0, + original.translation_cam1_in_cam0, + ) + assert rebuilt.rotation_cam1_from_cam0.approx_equal( + original.rotation_cam1_from_cam0 + ) + matchid_path = tmp_path / "calibration" / "calibration.caldat" + render.stereo_save_calibration_matchid(camera_0, camera_1, matchid_path) + assert matchid_path.is_file() + + +def test_legacy_calibration_image_count() -> None: + """Blender calibration target-counting remains available in render.""" + data = render.BlenderCalibrationData() + assert render.calibration_image_count(data) == 675 + + +def test_unified_stereo_matches_legacy_scene(tmp_path: Path) -> None: + """The adapter reproduces Blender's tessellated legacy scene path.""" + camera = _camera() + stereo_cameras = render.stereo_build_faceon(camera, 15.0) + camera_0, camera_1 = stereo_cameras + mesh = _mesh(camera) + light = render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ) + unified = render.Blender( + render.BlenderConfig(tmp_path / "unified", threads=1) + ) + unified_result = unified.render( + render.Scene3D( + (mesh,), + stereo_cameras, + (light,), + ) + ) + assert unified_result.images is not None + + legacy_mesh = _triangulate_mesh_for_blender(mesh) + scene = legacy_blender.Scene() + part = scene.add_part(legacy_mesh, 3) + scene.add_speckle( + part, + mesh.shader.image_path, + legacy_blender.MaterialData(), + mesh.shader.millimetres_per_pixel, + ) + scene.add_camera(camera_0) + scene.add_camera(camera_1) + scene.add_light( + legacy_blender.LightData( + light.pos_world, + Rotation.identity(), + light.intensity, + legacy_blender.LightType.POINT, + ) + ) + legacy_dir = tmp_path / "legacy" + legacy_dir.mkdir() + legacy = scene.render_single_image( + legacy_blender.RenderData( + stereo_cameras, + legacy_dir, + threads=1, + ) + ) + expected = np.asarray(legacy).transpose(2, 0, 1)[None, :, :, :, None] + assert_render_allclose( + unified_result.images, + expected, + "legacy_stereo_adapter", + rtol=0.0, + atol=0.0, + ) + + +def test_unified_deformation_matches_legacy_scene(tmp_path: Path) -> None: + """The adapter's deformation stack matches Blender's active scene method.""" + camera = _camera() + mesh = _mesh(camera) + light = render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 400.0)), + np.zeros(3), + 1.0, + ) + unified_result = render.Blender( + render.BlenderConfig( + tmp_path / "unified", + threads=1, + render_deformed=True, + ) + ).render(render.Scene3D([mesh], [camera], [light])) + assert unified_result.images is not None + + legacy_mesh = _triangulate_mesh_for_blender(mesh) + scene = legacy_blender.Scene() + part = scene.add_part(legacy_mesh, 3) + scene.add_speckle( + part, + mesh.shader.image_path, + legacy_blender.MaterialData(), + mesh.shader.millimetres_per_pixel, + ) + scene.add_camera(camera) + scene.add_light( + legacy_blender.LightData( + light.pos_world, + Rotation.identity(), + light.intensity, + legacy_blender.LightType.POINT, + ) + ) + legacy_dir = tmp_path / "legacy" + legacy_dir.mkdir() + centred_mesh = render.Mesh3D( + legacy_mesh.element_type, + centre_mesh_nodes(legacy_mesh.coords.copy(), 3), + legacy_mesh.connectivity, + legacy_mesh.shader, + legacy_mesh.displacements, + ) + legacy = scene.render_deformed_images( + centred_mesh, + 3, + legacy_blender.RenderData(camera, legacy_dir, threads=1), + part, + ) + expected = np.asarray(legacy).transpose(2, 0, 1)[:, None, :, :, None] + assert_render_allclose( + unified_result.images, + expected, + "legacy_deformation_adapter", + rtol=0.0, + atol=0.0, + ) + + +def test_calibration_target_rendering(tmp_path: Path) -> None: + """The migrated calibration target workflow writes stereo TIFF pairs.""" + camera = _camera() + stereo_cameras = render.stereo_build_faceon(camera, 15.0) + result = render.render_calibration_images( + render.BlenderCalibrationTarget( + np.array((15.0, 10.0, 1.0)), + dataset.cal_target(), + 0.1, + ), + stereo_cameras, + render.BlenderConfig(tmp_path, threads=1), + render.BlenderCalibrationData( + angle_lims=(0.0, 0.0), + angle_step=1.0, + plunge_lims=(0.0, 0.0), + plunge_step=1.0, + x_limit=0.0, + y_limit=0.0, + ), + [ + render.Light( + render.ELightType.POINT, + np.array((0.0, 0.0, 200.0)), + np.zeros(3), + 1.0, + ) + ], + ) + assert result.images is None + assert len(result.output_paths) == 18 + assert all(path.is_file() for path in result.output_paths) diff --git a/tests/render/test_cameratools.py b/tests/render/test_cameratools.py new file mode 100644 index 000000000..7acd9c421 --- /dev/null +++ b/tests/render/test_cameratools.py @@ -0,0 +1,309 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Analytic tests for camera placement, orientation, projection, and framing.""" + +import numpy as np +import pytest +import riley +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +def _make_test_camera( + pos=(0.0, 0.0, 2.0), + pixels_num=(512, 512), + pixels_size=(0.02, 0.02), + focal_length=1.0, +) -> render.Camera: + return render.Camera( + pixels_num=np.array(pixels_num), + pixels_size=np.array(pixels_size), + pos_world=np.array(pos, dtype=np.float64), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=focal_length, + ) + + +def test_cam_look_at_optical_axis_alignment() -> None: + """Verify camera basis points towards target and basis is orthonormal.""" + cam = _make_test_camera(pos=(0.0, 0.0, 10.0)) + oriented = render.cam_look_at(cam, target=np.zeros(3)) + + # Look along -Z: rot_world should be identity + rot_mat = oriented.rot_world.as_matrix() + np.testing.assert_allclose(rot_mat, np.eye(3), atol=1.0e-12) + assert np.isclose(np.linalg.det(rot_mat), 1.0) + + +def test_cam_look_at_arbitrary_target() -> None: + """Look from (1, 2, 3) to (4, 6, 3) with view vector (3, 4, 0).""" + cam = _make_test_camera(pos=(1.0, 2.0, 3.0)) + oriented = render.cam_look_at(cam, target=np.array((4.0, 6.0, 3.0))) + + rot_mat = oriented.rot_world.as_matrix() + # Camera forward is -Z in camera coords, which must equal (3, 4, 0) / 5 + z_cam = rot_mat[:, 2] + expected_forward = np.array([3.0, 4.0, 0.0]) / 5.0 + np.testing.assert_allclose(-z_cam, expected_forward, atol=1.0e-12) + + +def test_cam_look_at_degeneracy_raises() -> None: + """Coincident camera position and target raises ValueError.""" + cam = _make_test_camera(pos=(1.0, 2.0, 3.0)) + with pytest.raises(ValueError, match="coincident"): + render.cam_look_at(cam, target=np.array((1.0, 2.0, 3.0))) + + +def test_cam_project_points_optical_axis_centers() -> None: + """A point on optical axis projects to image center (cx, cy).""" + cam = _make_test_camera( + pos=(0.0, 0.0, 2.0), + pixels_num=(512, 512), + pixels_size=(0.02, 0.02), + focal_length=1.0, + ) + # Point at (0, 0, 0) lies on optical axis at depth 2.0 + px = render.cam_project_points(cam, np.array([[0.0, 0.0, 0.0]])) + np.testing.assert_allclose(px[0], np.array([256.0, 256.0]), atol=1.0e-12) + + +def test_cam_project_points_perspective_depth_scaling() -> None: + """Projected offset from center scales inversely with depth (1/z).""" + cam = _make_test_camera( + pos=(0.0, 0.0, 10.0), + pixels_num=(512, 512), + pixels_size=(0.02, 0.02), + focal_length=1.0, + ) + # Point 1 at depth = 2.0 (z=8.0), offset x=1.0 + p1 = np.array([[1.0, 0.0, 8.0]]) + # Point 2 at depth = 4.0 (z=6.0), offset x=1.0 + p2 = np.array([[1.0, 0.0, 6.0]]) + + px1 = render.cam_project_points(cam, p1)[0] + px2 = render.cam_project_points(cam, p2)[0] + + offset1 = px1[0] - 256.0 + offset2 = px2[0] - 256.0 + + # offset1 / offset2 should be depth2 / depth1 = 4.0 / 2.0 = 2.0 + assert np.isclose(offset1 / offset2, 2.0) + + +def test_cam_frame_mesh_and_scene() -> None: + """Framing a mesh and framing a scene produce valid camera positions.""" + coords = np.array([[-1.0, -1.0, 0.0], [1.0, -1.0, 0.0], [0.0, 1.0, 0.0]]) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 1, 2]], dtype=np.uintp), + shader=None, + ) + cam = _make_test_camera(pos=(0.0, 0.0, 2.0)) + + fov_scale = render.cam_coverage_to_fov_scale(0.9) + framed_mesh = render.cam_frame_mesh(cam, mesh, fov_scale=fov_scale) + assert framed_mesh.pos_world[2] > 0.0 + + framed_scene = render.cam_frame_scene( + cam, + [mesh], + fov_scale=fov_scale, + ) + np.testing.assert_allclose(framed_scene.pos_world, framed_mesh.pos_world) + + +def test_cam_frame_mesh_matches_riley_for_oblique_camera() -> None: + """PyVale delegates oblique framing to Riley with converted angles.""" + coords = np.array( + ( + (-2.0, -1.0, -0.2), + (2.0, -1.0, -0.2), + (2.0, 1.0, 0.2), + (-2.0, 1.0, 0.2), + ) + ) + mesh = render.Mesh3D( + element_type=render.EElementType.QUAD4, + coords=coords, + connectivity=np.array(((0, 1, 2, 3),), dtype=np.uintp), + shader=None, + ) + camera = _make_test_camera(pixels_num=(640, 480)) + camera.rot_world = Rotation.from_euler( + "xyz", + (12.0, -20.0, 4.0), + degrees=True, + ) + + fov_scale = render.cam_coverage_to_fov_scale(0.8) + framed = render.cam_frame_mesh(camera, mesh, fov_scale=fov_scale) + rotation_xyz = camera.rot_world.as_euler("xyz") + expected = riley.pos_frame_coords( + coords, + tuple(camera.pixels_num), + tuple(camera.pixels_size), + camera.focal_length, + tuple(rotation_xyz[::-1]), + fov_scale=fov_scale, + fit_mode=riley.FrameFitMode.contain, + ) + + np.testing.assert_allclose(framed.pos_world, expected) + + +def test_cam_frame_mesh_fov_scale_controls_camera_distance() -> None: + """A larger field-of-view scale moves the camera away from the target.""" + coords = np.array( + ((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0)) + ) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array(((0, 1, 2),), dtype=np.uintp), + shader=None, + ) + camera = _make_test_camera() + + framed_full = render.cam_frame_mesh(camera, mesh, fov_scale=1.0) + framed_border = render.cam_frame_mesh( + camera, + mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.9), + ) + + assert framed_border.pos_world[2] > framed_full.pos_world[2] + + +def test_cam_coverage_and_fov_scale_round_trip() -> None: + """Coverage conversion follows Riley's reciprocal convention.""" + fov_scale = render.cam_coverage_to_fov_scale(0.8) + + assert fov_scale == pytest.approx(1.25) + assert render.cam_fov_scale_to_coverage(fov_scale) == pytest.approx(0.8) + + +def test_cam_image_scale_matches_analytic_pinhole_reference() -> None: + """ROI image scale equals distance times pixel pitch over focal length.""" + camera = _make_test_camera( + pos=(0.0, 0.0, 20.0), + pixels_size=(0.1, 0.1), + focal_length=10.0, + ) + + leng_per_px = render.cam_calc_leng_per_px(camera) + + assert leng_per_px == pytest.approx(0.2) + assert render.cam_calc_px_per_leng(camera) == pytest.approx(5.0) + + +@pytest.mark.parametrize("fit_mode", tuple(render.EFrameFit)) +def test_cam_pos_frame_points_fit_modes_match_riley( + fit_mode: render.EFrameFit, +) -> None: + """Every public fit mode maps directly to Riley's native mode.""" + coords = np.array( + ((-2.0, -1.0, 0.0), (2.0, -1.0, 0.0), (2.0, 1.0, 0.0)) + ) + rotation = Rotation.from_euler("xyz", (4.0, 8.0, 12.0), degrees=True) + target = np.array((0.0, 0.0, 0.0)) + + position = render.cam_pos_frame_points( + coords, + np.array((640, 480)), + np.array((0.02, 0.02)), + 1.0, + rotation, + fov_scale=1.1, + fit_mode=fit_mode, + target=target, + ) + expected = riley.pos_frame_coords( + coords, + (640, 480), + (0.02, 0.02), + 1.0, + tuple(rotation.as_euler("xyz")[::-1]), + fov_scale=1.1, + fit_mode=riley.FrameFitMode(int(fit_mode)), + target=tuple(target), + ) + + np.testing.assert_allclose(position, expected) + + +def test_stereo_build_symmetric_and_faceon() -> None: + """Verify stereo baseline and symmetric / face-on angles.""" + cam = _make_test_camera(pos=(0.0, 0.0, 10.0)) + angle = 20.0 + + cam_0_sym, cam_1_sym = render.stereo_build_symmetric(cam, angle) + half_angle_rad = np.radians(angle / 2.0) + expected_baseline = 2.0 * 10.0 * np.tan(half_angle_rad) + actual_baseline = ( + cam_1_sym.pos_world[0] - cam_0_sym.pos_world[0] + ) + assert np.isclose(actual_baseline, expected_baseline) + + cam_0_faceon, cam_1_faceon = render.stereo_build_faceon(cam, angle) + expected_faceon_base = 10.0 * np.tan(np.radians(angle)) + actual_faceon_base = ( + cam_1_faceon.pos_world[0] - cam_0_faceon.pos_world[0] + ) + assert np.isclose(actual_faceon_base, expected_faceon_base) + + +def test_stereo_geometry_helpers_use_documented_pose_convention() -> None: + """Stereo geometry is reported from camera zero to camera one.""" + cam_0 = _make_test_camera(pos=(0.0, 0.0, 10.0)) + cam_1 = _make_test_camera(pos=(2.0, 0.0, 10.0)) + + extrinsics = render.stereo_calc_extrinsics(cam_0, cam_1) + angles = render.stereo_calc_angles(cam_0, cam_1) + + np.testing.assert_allclose( + extrinsics.translation_cam1_in_cam0, + np.array((-2.0, 0.0, 0.0)), + ) + assert extrinsics.rotation_cam1_from_cam0.approx_equal(Rotation.identity()) + assert np.isclose(render.stereo_calc_baseline(cam_0, cam_1), 2.0) + assert np.isclose( + render.stereo_calc_stand_off(cam_0, cam_1, np.array((1.0, 0.0, 0.0))), + 10.0, + ) + np.testing.assert_allclose(angles.relative_euler_xyz_degrees, np.zeros(3)) + assert np.isclose(angles.convergence_degrees, 0.0) + + +def test_cam_pos_frame_points() -> None: + """Verify point framing with tuple and Rotation inputs.""" + coords = np.array([[-1.0, -1.0, 0.0], [1.0, -1.0, 0.0], [0.0, 1.0, 0.0]]) + pixels_num = (512, 512) + pixels_size = (0.02, 0.02) + focal_length = 1.0 + + pos_tuple = render.cam_pos_frame_points( + coords, + pixels_num, + pixels_size, + focal_length, + (0.0, 0.0, 0.0), + 1.0, + ) + assert pos_tuple.shape == (3,) + assert pos_tuple[2] > 0.0 + + pos_rot = render.cam_pos_frame_points( + coords, + pixels_num, + pixels_size, + focal_length, + Rotation.identity(), + 1.0, + ) + np.testing.assert_allclose(pos_tuple, pos_rot, atol=1.0e-12) diff --git a/tests/render/test_feebee.py b/tests/render/test_feebee.py new file mode 100644 index 000000000..3908d7c70 --- /dev/null +++ b/tests/render/test_feebee.py @@ -0,0 +1,123 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Contract tests for the Feebee renderer scaffold.""" + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +def make_camera() -> render.Camera: + """Create a small valid perspective camera.""" + return render.Camera( + pixels_num=np.array((16, 16)), + pixels_size=np.array((0.1, 0.1)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + + +def make_mesh(shader: object) -> render.Mesh3D: + """Create a valid front-facing triangular render mesh.""" + return render.Mesh3D( + render.EElementType.TRI3, + np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))), + np.array(((0, 1, 2),)), + shader, + ) + + +def test_feebee_validates_scene_before_backend_dispatch() -> None: + """Valid input reaches the intentional unavailable-backend boundary.""" + shader = render.FeebeeColourShader(np.ones((1, 1, 3))) + renderer = render.Feebee() + + scene = render.Scene3D([make_mesh(shader)], [make_camera()]) + renderer.verify_input(scene) + + with pytest.raises(NotImplementedError, match="compiled rendering backend"): + renderer._render(scene) + + +def test_feebee_aggregates_unsupported_scene_features() -> None: + """Feebee rejects invalid material and explicit lights before rendering.""" + material = render.FeebeeMaterial( + material_type=render.EFeebeeMaterialType.REFRACTIVE, + ) + shader = render.FeebeeColourShader(np.ones((1, 1, 3)), material) + light = render.Light( + render.ELightType.POINT, + np.zeros(3), + np.array((0.0, 0.0, -1.0)), + 1.0, + ) + + with pytest.raises(render.RenderInputError) as exception: + render.Feebee().verify_input( + render.Scene3D( + (make_mesh(shader),), + (make_camera(),), + (light,), + ) + ) + + assert {issue.code for issue in exception.value.issues} == { + "UNSUPPORTED", + "VALUE", + } + + +def test_feebee_checks_higher_order_connectivity() -> None: + """Feebee detects topology data that disagrees with its element type.""" + mesh = make_mesh(render.FeebeeColourShader(np.ones((1, 1, 3)))) + mesh.element_type = render.EElementType.QUAD9 + + with pytest.raises(render.RenderInputError, match="9 nodes"): + render.Feebee().verify_input(render.Scene3D([mesh], [make_camera()])) + + +def test_feebee_texture_shader_accepts_nodal_uvs() -> None: + """Feebee accepts its backend-owned texture shader representation.""" + shader = render.FeebeeTextureShader( + np.array(((0.0, 0.0), (1.0, 0.0), (0.5, 1.0))), + np.ones((4, 4)), + ) + + render.Feebee().verify_input( + render.Scene3D( + (make_mesh(shader),), + (make_camera(),), + ) + ) + + +def test_feebee_uses_a_static_colour_field_with_an_animated_mesh() -> None: + """A single colour frame remains valid for every displacement frame.""" + mesh = make_mesh(render.FeebeeColourShader(np.ones((1, 1, 3)))) + mesh.displacements = np.zeros((2, 3, 3)) + + render.Feebee().verify_input(render.Scene3D([mesh], [make_camera()])) + + +def test_feebee_reports_non_numeric_material_data_cleanly() -> None: + """A malformed material is a validation issue rather than a type error.""" + material = render.FeebeeMaterial( + material_type=render.EFeebeeMaterialType.REFRACTIVE, + refractive_index="invalid", # type: ignore[arg-type] + ) + shader = render.FeebeeColourShader(np.ones((1, 1, 3)), material) + + with pytest.raises(render.RenderInputError, match="refractive_index"): + render.Feebee().verify_input( + render.Scene3D( + (make_mesh(shader),), + (make_camera(),), + ) + ) diff --git a/tests/render/test_imagetools.py b/tests/render/test_imagetools.py new file mode 100644 index 000000000..ab306d110 --- /dev/null +++ b/tests/render/test_imagetools.py @@ -0,0 +1,70 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Analytic tests for image loading, saving, cropping, normalisation.""" + +from pathlib import Path + +import numpy as np +import pytest + +import pyvale.render as render + + +def test_image_crop_analytic() -> None: + """Cropping a grid subarray extracts exact pixel values.""" + img = np.arange(25, dtype=np.uint8).reshape(5, 5) + cropped = render.image_crop(img, x=1, y=2, width=3, height=2) + + expected = np.array([ + [11, 12, 13], + [16, 17, 18], + ], dtype=np.uint8) + np.testing.assert_array_equal(cropped, expected) + + +def test_image_crop_out_of_bounds_raises() -> None: + """Out-of-bounds crops raise ValueError.""" + img = np.zeros((10, 10), dtype=np.uint8) + with pytest.raises(ValueError, match="exceed image shape"): + render.image_crop(img, x=8, y=8, width=5, height=5) + + +def test_image_normalise() -> None: + """Min-max intensity scaling maps to specified range.""" + img = np.array([0.0, 5.0, 10.0]) + norm = render.image_normalise(img, lower=0.0, upper=1.0) + np.testing.assert_allclose(norm, np.array([0.0, 0.5, 1.0])) + + custom_norm = render.image_normalise(img, lower=100.0, upper=200.0) + np.testing.assert_allclose(custom_norm, np.array([100.0, 150.0, 200.0])) + + +def test_image_normalise_constant_image() -> None: + """Constant image normalises to lower bound.""" + img = np.full((4, 4), 42.0) + norm = render.image_normalise(img, lower=0.0, upper=1.0) + np.testing.assert_allclose(norm, np.zeros((4, 4))) + + +def test_image_grayscale() -> None: + """RGB to grayscale uses standard luminance formula.""" + rgb = np.zeros((1, 1, 3), dtype=np.uint8) + rgb[0, 0] = [255, 0, 0] # pure red + grey = render.image_grayscale(rgb) + assert np.isclose(grey[0, 0], 0.299 * 255.0) + + +def test_image_save_and_load_roundtrip(tmp_path: Path) -> None: + """Image save and load round-trip preserves values.""" + img = np.arange(100, dtype=np.uint8).reshape(10, 10) + out_file = tmp_path / "test_roundtrip.tiff" + + render.image_save(out_file, img, render.EImageType.TIFF, bits=8) + loaded = render.image_load(out_file) + + # Note: image_save flips vertically for standard image orientation + # image_load loads standard orientation + np.testing.assert_array_equal(loaded, img[::-1, :]) diff --git a/tests/render/test_meshtools.py b/tests/render/test_meshtools.py new file mode 100644 index 000000000..091d9123f --- /dev/null +++ b/tests/render/test_meshtools.py @@ -0,0 +1,173 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Analytic tests for mesh transformation and frame helpers.""" + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +def _make_sample_mesh3d() -> render.Mesh3D: + coords = np.array([ + [-2.0, -3.0, -4.0], + [5.0, 7.0, 11.0], + [1.0, 2.0, 3.0], + ]) + connect = np.array([[0, 1, 2]], dtype=np.uintp) + return render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=connect, + shader=None, + ) + + +def test_mesh_bounds_and_center_analytic() -> None: + """Verify exact min/max bounds and bounding box center.""" + mesh = _make_sample_mesh3d() + lower, upper = render.mesh_bounds(mesh) + np.testing.assert_allclose(lower, np.array([-2.0, -3.0, -4.0])) + np.testing.assert_allclose(upper, np.array([5.0, 7.0, 11.0])) + + center = render.mesh_center(mesh) + np.testing.assert_allclose(center, np.array([1.5, 2.0, 3.5])) + + +def test_mesh_translate_preserves_purity_and_vectors() -> None: + """Translation shifts coordinates without modifying displacements.""" + mesh = _make_sample_mesh3d() + mesh.displacements = np.ones((1, 3, 3)) + + offset = np.array((10.0, -2.0, 5.0)) + moved = render.mesh_translate(mesh, offset) + + expected_coords = mesh.coords + np.array(offset) + np.testing.assert_allclose(moved.coords, expected_coords) + np.testing.assert_allclose(moved.displacements, mesh.displacements) + # Check original was not mutated + assert not np.array_equal(mesh.coords, moved.coords) + + +def test_mesh_rotate_z_axis_90_degrees() -> None: + """Rotate (1, 0, 0) by 90 deg about Z -> (0, 1, 0).""" + coords = np.array([[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 1, 0]], dtype=np.uintp), + shader=None, + ) + rot = Rotation.from_euler("z", 90.0, degrees=True) + rotated = render.mesh_rotate(mesh, rot) + + expected = np.array([[0.0, 1.0, 0.0], [-1.0, 0.0, 0.0]]) + np.testing.assert_allclose(rotated.coords, expected, atol=1.0e-12) + + +def test_mesh_rotate_with_pivot() -> None: + """Rotate (2, 0, 0) around pivot (1, 0, 0) by 180 deg -> (0, 0, 0).""" + coords = np.array([[2.0, 0.0, 0.0]]) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 0, 0]], dtype=np.uintp), + shader=None, + ) + rot = Rotation.from_euler("z", 180.0, degrees=True) + rotated = render.mesh_rotate(mesh, rot, pivot=np.array((1.0, 0.0, 0.0))) + + expected = np.array([[0.0, 0.0, 0.0]]) + np.testing.assert_allclose(rotated.coords, expected, atol=1.0e-12) + + +def test_mesh_rotate_rotates_displacement_vectors() -> None: + """Displacement vector (1, 0, 0) rotated by 90 deg about Z -> (0, 1, 0).""" + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=np.array([[0.0, 0.0, 0.0]]), + connectivity=np.array([[0, 0, 0]], dtype=np.uintp), + shader=None, + displacements=np.array([[[1.0, 0.0, 0.0]]]), + ) + rot = Rotation.from_euler("z", 90.0, degrees=True) + rotated = render.mesh_rotate(mesh, rot) + + expected_disp = np.array([[[0.0, 1.0, 0.0]]]) + np.testing.assert_allclose( + rotated.displacements, expected_disp, atol=1.0e-12 + ) + + +def test_mesh_scale_uniform_and_axes() -> None: + """Scale coordinates uniformly and along axes.""" + coords = np.array([[1.0, 2.0, 3.0]]) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 0, 0]], dtype=np.uintp), + shader=None, + ) + scaled_uniform = render.mesh_scale(mesh, 2.0) + np.testing.assert_allclose( + scaled_uniform.coords, np.array([[2.0, 4.0, 6.0]]) + ) + + scaled_axes = render.mesh_scale(mesh, np.array((2.0, 3.0, 4.0))) + np.testing.assert_allclose(scaled_axes.coords, np.array([[2.0, 6.0, 12.0]])) + + +def test_mesh_center_at() -> None: + """Centering a mesh translates its center to the target.""" + mesh = _make_sample_mesh3d() + centered = render.mesh_center_at(mesh, np.zeros(3)) + np.testing.assert_allclose( + render.mesh_center(centered), np.zeros(3), atol=1.0e-12 + ) + + offset_target = np.array((10.0, 20.0, 30.0)) + placed = render.mesh_center_at(mesh, offset_target) + np.testing.assert_allclose( + render.mesh_center(placed), offset_target, atol=1.0e-12 + ) + + +def test_mesh_transform_composite() -> None: + """Scale, rotate, and translate in canonical order.""" + coords = np.array([[1.0, 0.0, 0.0]]) + mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 0, 0]], dtype=np.uintp), + shader=None, + ) + # 1. Scale by 2 -> (2, 0, 0) + # 2. Rotate 90 deg about Z -> (0, 2, 0) + # 3. Translate by (10, 0, 0) -> (10, 2, 0) + transformed = render.mesh_transform( + mesh, + translation=np.array((10.0, 0.0, 0.0)), + rotation=Rotation.from_euler("z", 90.0, degrees=True), + scale=2.0, + ) + expected = np.array([[10.0, 2.0, 0.0]]) + np.testing.assert_allclose(transformed.coords, expected, atol=1.0e-12) + + +def test_frame_index_helpers() -> None: + """Verify deterministic frame sampling and selection.""" + indices = render.evenly_spaced_frame_indices(10, 4) + np.testing.assert_array_equal(indices, np.array([0, 3, 6, 9])) + + fl_indices = render.first_last_frame_indices(10) + np.testing.assert_array_equal(fl_indices, np.array([0, 9])) + + frames = np.arange(50).reshape(10, 5) + selected = render.select_frames(frames, [0, 9]) + assert selected.shape == (2, 5) + np.testing.assert_array_equal(selected[0], frames[0]) + np.testing.assert_array_equal(selected[1], frames[9]) diff --git a/tests/render/test_rasterops.py b/tests/render/test_rasterops.py new file mode 100644 index 000000000..fe4258744 --- /dev/null +++ b/tests/render/test_rasterops.py @@ -0,0 +1,58 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Analytic tests for low-level raster operations.""" + +import numpy as np +import pytest + +from pyvale.render.rasterops import ( + calculate_edge_function, + calculate_elem_bound_box_high, + calculate_elem_bound_box_low, + format_image_number, +) + + +def test_edge_function_signs_and_zero() -> None: + """Verify positive, negative, and collinear points for 2D edge function.""" + point_a = np.array([0.0, 0.0]) + point_b = np.array([2.0, 0.0]) + + # Counter-clockwise / left side + point_left = np.array([1.0, 1.0]) + val_left = calculate_edge_function(point_a, point_b, point_left) + assert val_left < 0.0 + + # Clockwise / right side + point_right = np.array([1.0, -1.0]) + val_right = calculate_edge_function(point_a, point_b, point_right) + assert val_right > 0.0 + + # Collinear / exactly on the edge + point_on = np.array([1.0, 0.0]) + val_on = calculate_edge_function(point_a, point_b, point_on) + assert np.isclose(val_on, 0.0) + + +def test_elem_bound_box_low() -> None: + """Lower pixel bound floors coordinates and clips negative values to 0.""" + coords = np.array([[-1.5, 0.0, 2.3, 5.9]]) + low = calculate_elem_bound_box_low(coords) + np.testing.assert_array_equal(low, np.array([[0, 0, 2, 5]])) + + +def test_elem_bound_box_high() -> None: + """Upper pixel bound ceils coordinates and clips to image dimension.""" + coords = np.array([[1.2, 3.0, 10.5, 12.0]]) + high = calculate_elem_bound_box_high(coords, image_px=10) + np.testing.assert_array_equal(high, np.array([[2, 3, 10, 10]])) + + +def test_format_image_number() -> None: + """Verify zero-padding format.""" + assert format_image_number(0, width=4) == "0000" + assert format_image_number(42, width=4) == "0042" + assert format_image_number(1234, width=4) == "1234" diff --git a/tests/render/test_render_api.py b/tests/render/test_render_api.py new file mode 100644 index 000000000..f49ab83c0 --- /dev/null +++ b/tests/render/test_render_api.py @@ -0,0 +1,165 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Contract tests for the unified render public API.""" + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +def make_camera() -> render.Camera: + """Create a small valid perspective camera.""" + return render.Camera( + pixels_num=np.array((16, 16)), + pixels_size=np.array((0.1, 0.1)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + + +def make_mesh(shader: object) -> render.Mesh3D: + """Create a valid front-facing triangle mesh.""" + return render.Mesh3D( + render.EElementType.TRI3, + np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))), + np.array(((0, 1, 2))), + shader, + ) + + +def test_render_utilities_are_available_at_the_render_package_level() -> None: + """Public helpers require no utility class or nested module lookup.""" + functions = ( + render.average_subpixel_image, + render.blender_camera_from_resolution, + render.calculate_edge_function, + render.cam_calc_leng_per_px, + render.cam_calc_px_per_leng, + render.cam_coverage_to_fov_scale, + render.cam_fov_scale_to_coverage, + render.cam_pos_frame_points, + render.uv_calc_texture_px_per_leng, + render.uv_map_planar_scaled, + render.stereo_build_faceon, + render.image_save, + ) + + assert all(callable(function) for function in functions) + + +def test_scene3d_keeps_mutable_scene_lists() -> None: + """Scene collections remain the caller's ordinary mutable lists.""" + meshes: list[object] = [] + cameras = [make_camera()] + + scene = render.Scene3D(meshes, cameras) + + assert scene.meshes is meshes + assert scene.cameras is cameras + + +class _FakeRenderer(render.IRenderer3D): + """Renderer spy used to enforce the template-method lifecycle.""" + + def __init__(self) -> None: + self.rendered = False + + def verify_input(self, scene: render.Scene3D) -> None: + if not scene.meshes: + raise render.RenderInputError(()) + + def _render(self, scene: render.Scene3D): + self.rendered = True + return render.RenderResult(np.zeros((1, 1, 1, 1, 1))) + + +def test_renderer_lifecycle_blocks_backend_after_validation_failure() -> None: + """The ABC must never invoke backend work when verification fails.""" + renderer = _FakeRenderer() + with pytest.raises(render.RenderInputError): + renderer.render(render.Scene3D([], [make_camera()])) + assert not renderer.rendered + + +def test_riley_rejects_lights_before_backend_call(monkeypatch) -> None: + """Unsupported lights fail before Riley mesh/camera conversion or rasterising.""" + import pyvale.render.riley as riley_adapter + + renderer = render.Riley(riley_adapter.riley.RasterConfig()) + light = render.Light( + render.ELightType.POINT, + np.zeros(3), + np.array((0.0, 0.0, -1.0)), + 1.0, + ) + with pytest.raises(render.RenderInputError, match="UNSUPPORTED"): + renderer.render(render.Scene3D([], [make_camera()], [light])) + + +def test_riley_rejects_meshes_outside_the_shared_convention() -> None: + """Native Riley input must obey the common winding convention.""" + import riley + + mesh = riley.Mesh( + riley.MeshType.tri3, + np.array(((0.0, 0.0, 0.0), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0))), + np.array(((0, 2, 1),)), + ) + + with pytest.raises(render.RenderInputError, match="CONVENTION"): + render.Riley(riley.RasterConfig()).verify_input( + render.Scene3D([mesh], [make_camera()]), + ) + + +def test_mesh3d_from_simdata_normalises_displacement_layout() -> None: + """SimData displacement fields become frame-major renderer displacements.""" + from pyvale.dataio import SimData + + sim_data = SimData( + coords=np.array(((0.0, 0.0, 0.0), (1.0, 0.0, 0.0), (0.0, 1.0, 0.0))), + connect={"connect1": np.array(((0, 1, 2),))}, + node_vars={ + "x": np.array(((0.0, 1.0), (0.0, 1.0), (0.0, 1.0))), + "y": np.zeros((3, 2)), + "z": np.zeros((3, 2)), + }, + ) + mesh = render.mesh3d_from_simdata( + sim_data, + object(), + displacement_keys=("x", "y", "z"), + ) + assert mesh.displacements is not None + assert mesh.displacements.shape == (2, 3, 3) + assert mesh.displacements[1, 0, 0] == 1.0 + + +def test_mesh3d_from_simdata_extracts_a_volume_surface() -> None: + """A render Mesh3D is always a surface, even from volume SimData.""" + from pyvale.dataio import SimData + + sim_data = SimData( + coords=np.array( + ( + (0.0, 0.0, 0.0), + (1.0, 0.0, 0.0), + (0.0, 1.0, 0.0), + (0.0, 0.0, 1.0), + ) + ), + connect={"connect1": np.array(((0, 1, 2, 3),))}, + ) + + mesh = render.mesh3d_from_simdata(sim_data, object()) + + assert mesh.element_type is render.EElementType.TRI3 + assert mesh.coords.shape == (4, 3) + assert mesh.connectivity.shape == (4, 3) diff --git a/tests/render/test_render_checks.py b/tests/render/test_render_checks.py new file mode 100644 index 000000000..3e8b7205d --- /dev/null +++ b/tests/render/test_render_checks.py @@ -0,0 +1,26 @@ +"""Tests for render image-regression failure diagnostics.""" + +import numpy as np +import pytest + +from pyvale.verif.renderverif import assert_render_allclose + + +def test_failed_image_comparison_writes_all_diagnostics( + monkeypatch: pytest.MonkeyPatch, + tmp_path, +) -> None: + """A mismatch creates scaled TIFF and raw NumPy diagnostic images.""" + monkeypatch.chdir(tmp_path) + reference = np.zeros((4, 4)) + actual = np.ones((4, 4)) + + with pytest.raises(AssertionError, match="Render mismatch"): + assert_render_allclose(actual, reference, "test mismatch") + + directory = tmp_path / "render-fails/test_mismatch" + for name in ( + "render.npy", "reference.npy", "difference.npy", "render.tiff", + "reference.tiff", "difference.tiff", + ): + assert (directory / name).is_file() diff --git a/tests/render/test_render_conformance.py b/tests/render/test_render_conformance.py new file mode 100644 index 000000000..c61f35b3a --- /dev/null +++ b/tests/render/test_render_conformance.py @@ -0,0 +1,74 @@ +"""Cross-backend rendering conformance gold regressions.""" + +from pathlib import Path + +import numpy as np +import pytest + +import pyvale.render as render +from pyvale.verif.renderconformance import ( + IMAGE_SIZE, + RenderConformanceCase, + conformance_cases, + feebee_scene, + render_backend_case, +) +from pyvale.verif.renderverif import assert_render_allclose + + +GOLD_ROOT = Path(__file__).parent +BACKENDS = ( + "blender", + "riley", +) + + +@pytest.mark.parametrize( + "case", + conformance_cases(), + ids=lambda case: case.name, +) +@pytest.mark.parametrize("backend", BACKENDS) +def test_render_backend_conformance_gold( + backend: str, + case: RenderConformanceCase, + tmp_path: Path, +) -> None: + """Every functioning backend renders the canonical deforming Tri3 cases.""" + if backend == "blender" and not render.blender_available(): + pytest.skip("The optional Blender renderer backend is unavailable.") + + actual = render_backend_case(backend, case, tmp_path / backend / case.name) + expected = np.load( + GOLD_ROOT / f"gold_{backend}" / f"{case.name}.npy", + ) + + assert actual.shape == (2, 1, IMAGE_SIZE, IMAGE_SIZE, 1) + assert np.isfinite(actual).all() + assert not np.array_equal(actual[0], actual[1]) + + tolerance = 2.0 if backend == "blender" else 1.0e-9 + assert_render_allclose( + actual, + expected, + f"{backend}_{case.name}", + rtol=0.0, + atol=tolerance, + ) + + +@pytest.mark.parametrize( + "case", + conformance_cases(), + ids=lambda case: case.name, +) +def test_feebee_conformance_scene_reaches_backend_boundary( + case: RenderConformanceCase, +) -> None: + """Feebee accepts every case while its compiled backend is unavailable.""" + renderer = render.Feebee() + scene = feebee_scene(case) + + renderer.verify_input(scene) + with pytest.raises(NotImplementedError, match="compiled rendering backend"): + renderer._render(scene) diff --git a/tests/render/test_render_helpers_integration.py b/tests/render/test_render_helpers_integration.py new file mode 100644 index 000000000..bed882905 --- /dev/null +++ b/tests/render/test_render_helpers_integration.py @@ -0,0 +1,117 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Integration tests for consolidated render setup helper workflows.""" + +import numpy as np + +from scipy.spatial.transform import Rotation + +import pyvale.render as render +from pyvale.dataio.simdata import SimData + + +def _make_quad_simdata() -> SimData: + coords = np.array([ + [-10.0, -5.0, 0.0], + [10.0, -5.0, 0.0], + [10.0, 5.0, 0.0], + [-10.0, 5.0, 0.0], + ]) + connect = {"surf": np.array([[0, 1, 2, 3]], dtype=np.uintp)} + return SimData(coords=coords, connect=connect) + + +def test_workflow_single_planar_specimen() -> None: + """SimData -> mesh3d -> center_at -> UVs -> cam_look_at -> cam_frame.""" + sim = _make_quad_simdata() + mesh = render.mesh3d_from_simdata(sim, shader=None) + centered_mesh = render.mesh_center_at(mesh, np.zeros(3)) + + np.testing.assert_allclose( + render.mesh_center(centered_mesh), np.zeros(3), atol=1.0e-12 + ) + + uvs = render.uv_project_planar( + centered_mesh.coords, + plane=render.EUVPlane.XY, + texture_shape=(512, 512), + ) + assert uvs.shape == (4, 2) + assert np.all(uvs >= 0.0) and np.all(uvs <= 1.0) + + cam = render.Camera( + pixels_num=np.array([512, 512]), + pixels_size=np.array([0.02, 0.02]), + pos_world=np.array([0.0, 0.0, 50.0]), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=50.0e-3, + ) + + cam = render.cam_look_at(cam, target=render.mesh_center(centered_mesh)) + cam = render.cam_frame_mesh( + cam, + centered_mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.9), + ) + + scene = render.Scene3D(meshes=[centered_mesh], cameras=[cam]) + assert len(scene.meshes) == 1 + assert len(scene.cameras) == 1 + + +def test_workflow_multi_specimen_grid() -> None: + """scene_arrange_grid -> scene_bounds -> cam_frame_scene.""" + sim = _make_quad_simdata() + meshes = [render.mesh3d_from_simdata(sim, shader=None) for _ in range(4)] + + grid_meshes = render.scene_arrange_grid( + meshes, columns=2, spacing=np.array((5.0, 5.0)), center=True + ) + low, high = render.scene_bounds(grid_meshes) + assert low[0] < high[0] + assert low[1] < high[1] + + cam = render.Camera( + pixels_num=np.array([1024, 1024]), + pixels_size=np.array([0.02, 0.02]), + pos_world=np.array([0.0, 0.0, 100.0]), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=50.0e-3, + ) + cam = render.cam_frame_scene( + cam, + grid_meshes, + fov_scale=render.cam_coverage_to_fov_scale(0.95), + ) + assert cam.pos_world[2] > 0.0 + + +def test_workflow_stereo_setup() -> None: + """cam_frame_mesh -> stereo_build_symmetric.""" + sim = _make_quad_simdata() + mesh = render.mesh3d_from_simdata(sim, shader=None) + + cam = render.Camera( + pixels_num=np.array([512, 512]), + pixels_size=np.array([0.02, 0.02]), + pos_world=np.array([0.0, 0.0, 50.0]), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=50.0e-3, + ) + cam = render.cam_frame_mesh( + cam, + mesh, + fov_scale=render.cam_coverage_to_fov_scale(0.8), + ) + cam_0, cam_1 = render.stereo_build_symmetric(cam, convergence_degrees=15.0) + + assert cam_0.pos_world[0] < cam_1.pos_world[0] + assert np.isclose( + cam_0.pos_world[2], cam_1.pos_world[2] + ) diff --git a/tests/render/test_riley_integration.py b/tests/render/test_riley_integration.py new file mode 100644 index 000000000..161cfe94e --- /dev/null +++ b/tests/render/test_riley_integration.py @@ -0,0 +1,128 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================ +"""Real Riley integration and golden-regression tests.""" + +from pathlib import Path + +import numpy as np +from scipy.spatial.transform import Rotation + +import pyvale.render as render +import pyvale.verif.renderverif as renderverif +import riley + +from pyvale.verif.renderverif import assert_render_allclose + + +def test_common_camera_reorders_scipy_angles_for_riley() -> None: + """Riley receives its native Z-Y-X angle storage order.""" + camera = render.Camera( + pixels_num=np.array((32, 32)), + pixels_size=np.array((0.02, 0.02)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.from_euler( + "xyz", + (10.0, 20.0, 30.0), + degrees=True, + ), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + + native = render.to_riley_camera(camera) + + np.testing.assert_allclose( + native.rot_world, + np.radians((30.0, 20.0, 10.0)), + ) + + +def test_riley_returns_canonical_image_layout() -> None: + """Riley's field-major buffer is normalised by the pyvale adapter.""" + mesh = riley.Mesh( + riley.MeshType.tri3, + np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))), + np.array(((0, 1, 2),)), + shader_type=riley.ShaderType.func, + func_shader_builtin=riley.FuncShaderBuiltin.constant, + func_shader_coord_mode=riley.FuncCoordMode.world_reference, + ) + camera = render.Camera( + pixels_num=np.array((32, 32)), + pixels_size=np.array((0.02, 0.02)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + config = riley.create_raster_config( + 1, save_strategy=riley.SaveStrategy.memory + ) + result = render.Riley(config).render(render.Scene3D([mesh], [camera])) + assert result.images is not None + assert result.images.shape == (1, 1, 32, 32, 1) + + +def test_common_mesh_matches_native_riley_mesh() -> None: + """Mesh3D conversion preserves native Riley rendering exactly.""" + coords = np.array(((-1.0, -1.0, 0.0), (1.0, -1.0, 0.0), (0.0, 1.0, 0.0))) + connectivity = np.array(((0, 1, 2),)) + native_mesh = riley.Mesh( + riley.MeshType.tri3, + coords, + connectivity, + shader_type=riley.ShaderType.func, + func_shader_builtin=riley.FuncShaderBuiltin.checker, + func_shader_coord_mode=riley.FuncCoordMode.world_reference, + ) + common_mesh = render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=connectivity, + shader=render.RileyFunctionShader( + builtin=riley.FuncShaderBuiltin.checker, + coord_mode=riley.FuncCoordMode.world_reference, + ), + ) + camera = render.Camera( + pixels_num=np.array((32, 32)), + pixels_size=np.array((0.02, 0.02)), + pos_world=np.array((0.0, 0.0, 2.0)), + rot_world=Rotation.identity(), + roi_cent_world=np.zeros(3), + focal_length=1.0, + ) + + def render_mesh(mesh: object) -> np.ndarray: + config = riley.create_raster_config( + 1, + total_threads=1, + save_strategy=riley.SaveStrategy.memory, + ) + result = render.Riley(config).render(render.Scene3D([mesh], [camera])) + assert result.images is not None + return result.images + + np.testing.assert_array_equal( + render_mesh(common_mesh), + render_mesh(native_mesh), + ) + + +def test_riley_rabbit_multimesh_golden_regression() -> None: + """The Riley rabbit multi-mesh scene remains deterministic end-to-end.""" + result = render.Riley(renderverif.riley_memory_config()).render( + renderverif.riley_rabbit_scene(), + ) + assert result.images is not None + golden_path = Path(__file__).parent / "gold_riley" / "rabbits.npy" + assert_render_allclose( + result.images, + np.load(golden_path), + "riley_rabbit_multimesh", + rtol=0.0, + atol=0.0, + ) diff --git a/tests/render/test_scenetools.py b/tests/render/test_scenetools.py new file mode 100644 index 000000000..5bc4e6fee --- /dev/null +++ b/tests/render/test_scenetools.py @@ -0,0 +1,139 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== +"""Analytic tests for multi-object scene placement and spatial layout.""" + +import numpy as np +import pytest +from scipy.spatial.transform import Rotation + +import pyvale.render as render + + +def _make_unit_box(center: tuple[float, float, float]) -> render.Mesh3D: + cx, cy, cz = center + coords = np.array([ + [cx - 0.5, cy - 0.5, cz - 0.5], + [cx + 0.5, cy - 0.5, cz - 0.5], + [cx + 0.5, cy + 0.5, cz + 0.5], + ]) + return render.Mesh3D( + element_type=render.EElementType.TRI3, + coords=coords, + connectivity=np.array([[0, 1, 2]], dtype=np.uintp), + shader=None, + ) + + +def test_scene_bounds_and_center() -> None: + """Scene bounds compute componentwise min/max over all meshes.""" + m1 = _make_unit_box((-2.0, 0.0, 0.0)) # x in [-2.5, -1.5] + m2 = _make_unit_box((3.0, 0.0, 0.0)) # x in [2.5, 3.5] + + lower, upper = render.scene_bounds([m1, m2]) + np.testing.assert_allclose(lower, np.array([-2.5, -0.5, -0.5])) + np.testing.assert_allclose(upper, np.array([3.5, 0.5, 0.5])) + + sc = render.scene_center([m1, m2]) + np.testing.assert_allclose(sc, np.array([0.5, 0.0, 0.0])) + + +def test_scene_translate_and_rotate() -> None: + """Scene transforms move all meshes while preserving relative distances.""" + m1 = _make_unit_box((-1.0, 0.0, 0.0)) + m2 = _make_unit_box((1.0, 0.0, 0.0)) + + translated = render.scene_translate( + [m1, m2], + np.array((5.0, 10.0, 0.0)), + ) + np.testing.assert_allclose( + render.mesh_center(translated[0]), np.array([4.0, 10.0, 0.0]) + ) + np.testing.assert_allclose( + render.mesh_center(translated[1]), np.array([6.0, 10.0, 0.0]) + ) + + rot = Rotation.from_euler("z", 90.0, degrees=True) + rotated = render.scene_rotate( + [m1, m2], + rot, + pivot=np.zeros(3), + ) + np.testing.assert_allclose( + render.mesh_center(rotated[0]), np.array([0.0, -1.0, 0.0]), atol=1.0e-12 + ) + np.testing.assert_allclose( + render.mesh_center(rotated[1]), np.array([0.0, 1.0, 0.0]), atol=1.0e-12 + ) + + +def test_scene_arrange_points() -> None: + """Placing meshes at explicit points aligns bounding-box centers.""" + meshes = [_make_unit_box((0, 0, 0)) for _ in range(3)] + targets = np.array( + ((10.0, 0.0, 0.0), (20.0, 5.0, 0.0), (30.0, -5.0, 0.0)) + ) + + arranged = render.scene_arrange_points(meshes, targets) + for mesh, target in zip(arranged, targets, strict=True): + np.testing.assert_allclose( + render.mesh_center(mesh), target, atol=1.0e-12 + ) + + +def test_scene_arrange_line_spacing() -> None: + """Verify gap spacing between adjacent mesh bounding boxes.""" + # Two unit boxes (width=1.0) with spacing=2.0 -> center-to-center = 3.0 + m1 = _make_unit_box((0, 0, 0)) + m2 = _make_unit_box((0, 0, 0)) + + arranged = render.scene_arrange_line([m1, m2], axis=0, spacing=2.0) + c1 = render.mesh_center(arranged[0]) + c2 = render.mesh_center(arranged[1]) + + assert np.isclose(c2[0] - c1[0], 3.0) + + +def test_scene_arrange_grid_2x2() -> None: + """Verify 2x2 grid layout and centering.""" + meshes = [_make_unit_box((0, 0, 0)) for _ in range(4)] + arranged = render.scene_arrange_grid( + meshes, columns=2, spacing=np.array((1.0, 1.0)), center=True + ) + + centers = [render.mesh_center(m) for m in arranged] + # In a 2x2 grid of unit boxes with gap 1.0, centers should be at +/-1.0 + np.testing.assert_allclose(centers[0][:2], np.array([-1.0, -1.0])) + np.testing.assert_allclose(centers[1][:2], np.array([1.0, -1.0])) + np.testing.assert_allclose(centers[2][:2], np.array([-1.0, 1.0])) + np.testing.assert_allclose(centers[3][:2], np.array([1.0, 1.0])) + + # Scene center must be at origin + np.testing.assert_allclose( + render.scene_center(arranged), np.zeros(3), atol=1.0e-12 + ) + + +def test_scene_arrange_circle() -> None: + """Verify 4 objects arranged on circle of radius R.""" + radius = 50.0 + meshes = [_make_unit_box((0, 0, 0)) for _ in range(4)] + arranged = render.scene_arrange_circle(meshes, radius=radius, plane="xy") + + centers = [render.mesh_center(m) for m in arranged] + # Angles: 0, 90, 180, 270 deg + np.testing.assert_allclose( + centers[0], np.array([radius, 0.0, 0.0]), atol=1.0e-12 + ) + np.testing.assert_allclose( + centers[1], np.array([0.0, radius, 0.0]), atol=1.0e-12 + ) + np.testing.assert_allclose( + centers[2], np.array([-radius, 0.0, 0.0]), atol=1.0e-12 + ) + np.testing.assert_allclose( + centers[3], np.array([0.0, -radius, 0.0]), atol=1.0e-12 + ) diff --git a/tests/render/test_uvtools.py b/tests/render/test_uvtools.py new file mode 100644 index 000000000..5cf5dbe1f --- /dev/null +++ b/tests/render/test_uvtools.py @@ -0,0 +1,250 @@ +# ============================================================================ +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 The Computer Aided Validation Team +# ============================================================================ + +"""Tests for renderer-independent UV generation and transforms.""" + +from __future__ import annotations + +import numpy as np +import pytest +import riley + +from pyvale import render + + +RECTANGLE = np.array( + ((0.0, 0.0, 0.0), (2.0, 0.0, 0.0), + (2.0, 1.0, 0.0), (0.0, 1.0, 0.0)), +) + + +def test_pixel_uv_round_trip_for_both_origins() -> None: + pixels = np.array(((0.0, 0.0), (200.0, 100.0), (81.5, 22.25))) + for origin in render.EUVOrigin: + uvs = render.uv_from_pixels(pixels, (101, 201), origin) + actual = render.uv_to_pixels(uvs, (101, 201), origin) + assert np.allclose(actual, pixels) + assert actual.flags.c_contiguous + assert actual.dtype == np.float64 + + +@pytest.mark.parametrize( + ("plane", "coords"), + ( + (render.EUVPlane.XY, RECTANGLE), + (render.EUVPlane.YZ, RECTANGLE[:, (2, 0, 1)]), + (render.EUVPlane.XZ, RECTANGLE[:, (0, 2, 1)]), + ), +) +def test_axis_aligned_projection(plane: render.EUVPlane, + coords: np.ndarray) -> None: + uvs = render.uv_project_planar_centered( + coords, (101, 201), span=0.8, plane=plane, + ) + assert uvs.shape == (4, 2) + assert np.all((uvs >= 0.0) & (uvs <= 1.0)) + assert np.isclose(np.ptp(uvs[:, 0]), 0.8) + assert np.isclose(np.ptp(uvs[:, 1]), 0.8) + + +def test_stretch_fills_requested_uv_bounds() -> None: + uvs = render.uv_project_planar( + RECTANGLE, + uv_bounds=(0.2, 0.1, 0.7, 0.9), + fit=render.EUVFit.STRETCH, + texture_shape=(101, 201), + ) + assert np.allclose(np.min(uvs, axis=0), (0.2, 0.1)) + assert np.allclose(np.max(uvs, axis=0), (0.7, 0.9)) + + +def test_custom_plane_with_up_controls_orientation() -> None: + angle = np.deg2rad(30.0) + axis_u = np.array((np.cos(angle), 0.0, -np.sin(angle))) + axis_v = np.array((0.0, 1.0, 0.0)) + normal = np.cross(axis_u, axis_v) + coords = RECTANGLE[:, [0]] * axis_u + RECTANGLE[:, [1]] * axis_v + plane = render.UVPlane(normal, np.zeros(3), up=axis_v) + uvs = render.uv_project_planar_centered( + coords, (101, 201), plane=plane, + ) + assert np.allclose(np.ptp(uvs, axis=0), (1.0, 1.0)) + + +def test_uv_transform_uses_scale_rotate_translate_order() -> None: + uvs = np.array(((0.5, 0.0), (1.0, 0.5))) + transformed = render.uv_transform( + uvs, + render.UVTransform( + translation=(0.1, -0.2), + rotation_degrees=90.0, + scale=(2.0, 1.0), + pivot=(0.5, 0.5), + ), + ) + assert np.allclose(transformed, ((1.1, 0.3), (0.6, 1.3))) + + +def test_feature_scale_conversions_match_analytic_reference() -> None: + """Texture, physical, and image feature scales remain consistent.""" + image_leng_per_px = 0.2 + image_px_per_feature = 5.0 + texture_px_per_feature = 10.0 + + feature_leng = render.uv_calc_feature_leng( + image_px_per_feature, + image_leng_per_px, + ) + texture_px_per_leng = render.uv_calc_texture_px_per_leng_from_image( + texture_px_per_feature, + image_px_per_feature, + image_leng_per_px, + ) + + assert feature_leng == pytest.approx(1.0) + assert texture_px_per_leng == pytest.approx(10.0) + assert render.uv_calc_image_px_per_feature( + feature_leng, + image_leng_per_px, + ) == pytest.approx(image_px_per_feature) + + +def test_scaled_planar_mapping_has_requested_texture_scale() -> None: + """A unit world displacement maps to the requested texture pixels.""" + texture = np.zeros((101, 201), dtype=np.uint8) + mapping = render.uv_map_planar_scaled( + RECTANGLE, + texture, + texture_px_per_leng=20.0, + ) + pixels = render.uv_to_pixels(mapping.uvs, texture.shape) + + assert np.ptp(pixels[:, 0]) == pytest.approx(40.0) + assert np.ptp(pixels[:, 1]) == pytest.approx(20.0) + assert mapping.texture is texture + assert mapping.tile_counts == (1, 1) + + +def test_scaled_planar_mapping_saturates_with_warning() -> None: + """The default bounds policy clips a mapping that exceeds its texture.""" + texture = np.zeros((11, 11), dtype=np.uint8) + with pytest.warns(UserWarning, match="saturated"): + mapping = render.uv_map_planar_scaled( + RECTANGLE, + texture, + texture_px_per_leng=20.0, + ) + + assert np.all((mapping.uvs >= 0.0) & (mapping.uvs <= 1.0)) + assert np.any((mapping.uvs == 0.0) | (mapping.uvs == 1.0)) + + +def test_scaled_planar_mapping_tiles_without_changing_scale() -> None: + """Tiling expands the texture and retains texture pixels per length.""" + texture = np.arange(121, dtype=np.uint8).reshape(11, 11) + mapping = render.uv_map_planar_scaled( + RECTANGLE, + texture, + texture_px_per_leng=20.0, + bounds=render.EUVBounds.TILED, + ) + pixels = render.uv_to_pixels(mapping.uvs, mapping.texture.shape[:2]) + + assert mapping.tile_counts == (5, 3) + assert mapping.texture.shape == (33, 55) + assert np.ptp(pixels[:, 0]) == pytest.approx(40.0) + assert np.ptp(pixels[:, 1]) == pytest.approx(20.0) + assert np.array_equal(mapping.texture[:11, :11], texture) + + +def test_riley_centered_projection_parity() -> None: + expected = riley.project_uvs_planar_centered( + RECTANGLE, + (201, 101), + uv_span_max=0.8, + proj_plane=riley.EProjPlane.XY, + ) + actual = render.uv_project_planar_centered( + RECTANGLE, + (101, 201), + span=0.8, + plane=render.EUVPlane.XY, + ) + assert np.allclose(actual, expected) + + +def test_riley_pixel_bounds_projection_parity() -> None: + expected = riley.project_uvs_planar_bbox( + RECTANGLE, + (201, 101), + (20.0, 10.0, 180.0, 90.0), + riley.EProjPlane.XY, + riley.EPlanarProjMode.FIT_X, + ) + actual = render.uv_project_planar_pixels( + RECTANGLE, + (101, 201), + (20.0, 10.0, 180.0, 90.0), + plane=render.EUVPlane.XY, + fit=render.EUVFit.FIT_U, + ) + assert np.allclose(actual, expected) + + +def test_riley_arbitrary_plane_projection_parity() -> None: + normal = np.array((0.2, -0.4, 1.0)) + origin = np.array((0.5, -0.25, 0.75)) + axis_u = np.cross(np.array((0.0, 0.0, 1.0)), normal) + axis_u /= np.linalg.norm(axis_u) + axis_v = np.cross(normal / np.linalg.norm(normal), axis_u) + coords = origin + RECTANGLE[:, [0]] * axis_u + RECTANGLE[:, [1]] * axis_v + expected = riley.project_uvs_planar_centered( + coords, + (201, 101), + uv_span_max=0.75, + proj_plane=(normal, origin), + ) + actual = render.uv_project_planar_centered( + coords, + (101, 201), + span=0.75, + plane=render.UVPlane(normal, origin), + ) + assert np.allclose(actual, expected) + + +def test_lower_left_origin_reverses_v_axis() -> None: + upper = render.uv_project_planar_centered( + RECTANGLE, (101, 201), origin=render.EUVOrigin.UPPER_LEFT, + ) + lower = render.uv_project_planar_centered( + RECTANGLE, (101, 201), origin=render.EUVOrigin.LOWER_LEFT, + ) + assert np.allclose(lower[:, 0], upper[:, 0]) + assert np.allclose(lower[:, 1], 1.0 - upper[:, 1]) + + +@pytest.mark.parametrize( + ("call", "message"), + ( + (lambda: render.uv_project_planar_centered( + RECTANGLE, (1, 10)), "at least 2"), + (lambda: render.uv_project_planar_centered( + RECTANGLE[:2], (10, 10)), "zero area"), + (lambda: render.uv_project_planar_centered( + RECTANGLE, (10, 10), span=0.0), "span"), + (lambda: render.uv_project_planar_centered( + RECTANGLE, (10, 10), plane=render.UVPlane( + np.zeros(3), np.zeros(3))), "nonzero"), + (lambda: render.uv_project_planar_centered( + RECTANGLE, (10, 10), plane=render.UVPlane( + np.array((0.0, 0.0, 1.0)), np.zeros(3), + np.array((0.0, 0.0, 2.0)))), "parallel"), + ), +) +def test_invalid_inputs(call: object, message: str) -> None: + with pytest.raises(ValueError, match=message): + call() diff --git a/tests/riley/test_pydemo_parity.py b/tests/riley/test_pydemo_parity.py new file mode 100644 index 000000000..8d6104f37 --- /dev/null +++ b/tests/riley/test_pydemo_parity.py @@ -0,0 +1,133 @@ +# ============================================================================== +# pyvale: the python validation engine +# License: MIT +# Copyright (C) 2026 Sceptical Rabbit (Lloyd Fletcher) +# ============================================================================== + +"""Byte-level parity checks between pyvale examples and native Riley demos. + +Each case renders one packaged Riley demo natively and then runs the matching +documented pyvale example, which rebuilds the same scene through the public +render API. The rendered output trees must contain identical files with +identical contents. +""" + +from __future__ import annotations + +import importlib +import runpy +import shutil +from collections.abc import Iterator +from pathlib import Path + +import pytest + + +_ROOT = Path(__file__).resolve().parents[2] +_EXAMPLES = _ROOT / "src" / "pyvale" / "examples" / "render3d" + +_CASES = ( + pytest.param( + "demo_sphere200", + "ex1b_riley_sphere200.py", + "out-riley-py/demo-sphere200", + "pyvale-output/render3d_ex1b_riley_sphere200", + id="sphere200", + ), + pytest.param( + "demo_rabbits", + "ex1c_riley_rabbits.py", + "out-riley-py/demo-rabbits", + "pyvale-output/render3d_ex1c_riley_rabbits", + id="rabbits", + ), + pytest.param( + "demo_dicuq", + "ex1d_riley_dicuq.py", + "out-riley-py/demo-dicuq", + "pyvale-output/render3d_ex1d_riley_dicuq", + id="dicuq", + ), + pytest.param( + "demo_dic_from_exodus", + "ex1e_riley_dic_from_exodus.py", + "out-riley-py/demo-dicuq-from-exodus", + "pyvale-output/render3d_ex1e_riley_dic_from_exodus", + id="dicuq-from-exodus", + ), + pytest.param( + "demo_stereocal", + "ex1f_riley_stereocal.py", + "out-riley-py/demo-stereocal", + "pyvale-output/render3d_ex1f_riley_stereocal", + id="stereocal", + ), + pytest.param( + "demo_psf", + "ex1g_riley_psf.py", + "out-riley-py/demo-psf", + "pyvale-output/render3d_ex1g_riley_psf", + id="psf", + ), +) + + +@pytest.fixture +def demo_directories(tmp_path: Path) -> Iterator[tuple[Path, Path]]: + """Provide isolated native and pyvale roots, then remove renders.""" + native_dir = tmp_path / "native" + pyvale_dir = tmp_path / "pyvale" + native_dir.mkdir() + pyvale_dir.mkdir() + yield native_dir, pyvale_dir + shutil.rmtree(native_dir, ignore_errors=True) + shutil.rmtree(pyvale_dir, ignore_errors=True) + + +@pytest.mark.riley +@pytest.mark.parametrize( + ("demo", "example", "native_out", "pyvale_out"), + _CASES, +) +def test_packaged_demo_matches_pyvale_example( + demo_directories: tuple[Path, Path], + monkeypatch: pytest.MonkeyPatch, + demo: str, + example: str, + native_out: str, + pyvale_out: str, +) -> None: + """Render one demo natively and through the documented pyvale example.""" + native_dir, pyvale_dir = demo_directories + + monkeypatch.chdir(native_dir) + importlib.import_module(f"riley.pydemos.{demo}").main() + + monkeypatch.chdir(pyvale_dir) + runpy.run_path(str(_EXAMPLES / example)) + + _assert_same_tree( + native_dir / native_out, + pyvale_dir / pyvale_out, + ) + + +def _assert_same_tree(native: Path, pyvale: Path) -> None: + """Require byte-identical render outputs in both output trees.""" + assert native.is_dir(), f"native render output missing: {native}" + assert pyvale.is_dir(), f"pyvale render output missing: {pyvale}" + + native_paths = sorted( + path.relative_to(native) for path in native.rglob("*") + ) + pyvale_paths = sorted( + path.relative_to(pyvale) for path in pyvale.rglob("*") + ) + assert native_paths == pyvale_paths + for relative_path in native_paths: + native_path = native / relative_path + if native_path.is_file(): + assert ( + native_path.read_bytes() + == (pyvale / relative_path).read_bytes() + ), f"render output differs: {relative_path}" diff --git a/tests/sensorsim/test_traceplotter.py b/tests/sensorsim/test_traceplotter.py index bec6028ef..c4383564d 100644 --- a/tests/sensorsim/test_traceplotter.py +++ b/tests/sensorsim/test_traceplotter.py @@ -4,7 +4,7 @@ import matplotlib.pyplot as plt import pyvale.mooseherder as mh -import pyvale.dataset as dataset +import pyvale.data as dataset from pyvale.sensorsim.visualopts import TraceOptsSensor diff --git a/tests/strain/test_strain.py b/tests/strain/test_strain.py index 771e40464..68346bf08 100644 --- a/tests/strain/test_strain.py +++ b/tests/strain/test_strain.py @@ -3,18 +3,13 @@ import numpy as np import pytest import scipy.linalg -import os -import glob from pathlib import Path #pyvale stuff import pyvale.dic as dic import pyvale.calib as calib import pyvale.strain as strain -import pyvale.dataset as dataset - - -TEST_DATA_DIR = Path(__file__).parent / "test" +import pyvale.data as dataset def generate_affine_displacement_grid(F, nx=100, ny=100): @@ -78,14 +73,15 @@ def reference_strain(F, formulation): [np.sin(np.pi/12), np.cos(np.pi/12)]])), ]) -def test_strain_deformations(strain_formulation, deformation_type, F): +def test_strain_deformations( + strain_formulation, + deformation_type, + F, + tmp_path: Path, +): # Generate displacement field X, Y, Ux, Uy = generate_affine_displacement_grid(F) - TEST_DATA_DIR.mkdir(exist_ok=True) - np.savetxt(TEST_DATA_DIR / f"u_{strain_formulation}_{deformation_type}.txt", Ux[0]) - np.savetxt(TEST_DATA_DIR / f"v_{strain_formulation}_{deformation_type}.txt", Uy[0]) - input_data = dic.Results(ss_x=X, ss_y=Y, u_px=Ux, v_px=Uy) # Compute strain @@ -95,6 +91,7 @@ def test_strain_deformations(strain_formulation, deformation_type, F): window_element=9, strain_formulation=strain_formulation, output_prefix=f"strain_{strain_formulation}_{deformation_type}_", + output_basepath=tmp_path, debug_level=2 ) @@ -104,7 +101,9 @@ def test_strain_deformations(strain_formulation, deformation_type, F): print(F.shape) print(expected.shape) - strainresults = strain.import_2d(f"./strain_{strain_formulation}_{deformation_type}_*.csv") + strainresults = strain.import_2d( + tmp_path / f"strain_{strain_formulation}_{deformation_type}_*.csv", + ) # Map of deformation gradient and strain components checks = { @@ -128,12 +127,7 @@ def test_strain_deformations(strain_formulation, deformation_type, F): err_msg=f"{attr} incorrect for {strain_formulation} / {deformation_type}" ) - for file_path in glob.glob(f"./strain_{strain_formulation}_{deformation_type}_*.csv"): - os.remove(file_path) - - - -def run_strain_test(window_element): +def run_strain_test(window_element: int, output_path: Path): ref0 = dataset.dic_plate_with_hole_cam0_ref() ref1 = dataset.dic_plate_with_hole_cam1_ref() def0 = dataset.dic_plate_with_hole_cam0_def() @@ -150,7 +144,7 @@ def run_strain_test(window_element): subset_size=21, subset_step=10, max_displacement=10, - output_basepath="./", + output_basepath=output_path, output_delimiter=",", ) @@ -162,10 +156,10 @@ def run_strain_test(window_element): ) strain.calculate_2d( - data="dic_2d_*csv", + data=output_path / "dic_2d_*csv", window_size=5, window_element=window_element, - output_basepath="./", + output_basepath=output_path, output_prefix="strain_2d_", strain_formulation="ALMANSI", ) @@ -179,23 +173,23 @@ def run_strain_test(window_element): ) strain.calculate_3d( - data="dic_3d_*csv", + data=output_path / "dic_3d_*csv", window_size=5, window_element=window_element, - output_basepath="./", + output_basepath=output_path, output_prefix="strain_3d_", strain_formulation="ALMANSI", ) return ( - strain.import_2d("strain_2d_*"), - strain.import_3d("strain_3d_*"), + strain.import_2d(output_path / "strain_2d_*"), + strain.import_3d(output_path / "strain_3d_*"), ) @pytest.mark.parametrize("window_element", [4, 9]) -def test_strain_3d(window_element): - strain_2d, strain_3d = run_strain_test(window_element) +def test_strain_3d(window_element: int, tmp_path: Path): + strain_2d, strain_3d = run_strain_test(window_element, tmp_path) for field, atol in [ ("eps_xx", 4e-5), @@ -209,8 +203,3 @@ def test_strain_3d(window_element): atol=atol, err_msg=f"mismatch for {field}", ) - - - output_files = sorted(glob.glob("*dic*.csv")) - for files in output_files: - os.remove(files)